diff --git a/.changeset/fair-phones-wink.md b/.changeset/fair-phones-wink.md new file mode 100644 index 000000000..9092c22e9 --- /dev/null +++ b/.changeset/fair-phones-wink.md @@ -0,0 +1,5 @@ +--- +'layerchart': patch +--- + +refactor: Rename simplified charts `renderContext` prop to `layer` diff --git a/.changeset/flat-cases-enter.md b/.changeset/flat-cases-enter.md new file mode 100644 index 000000000..6f4f9633c --- /dev/null +++ b/.changeset/flat-cases-enter.md @@ -0,0 +1,5 @@ +--- +'layerchart': patch +--- + +refactor: Move contexts to separate `$lib/contexts` module diff --git a/.changeset/four-lizards-win.md b/.changeset/four-lizards-win.md new file mode 100644 index 000000000..1cf12426b --- /dev/null +++ b/.changeset/four-lizards-win.md @@ -0,0 +1,5 @@ +--- +'layerchart': patch +--- + +feat(Layer): Allow `type` to be optional, fallbacking back to `settings.layer` type diff --git a/.changeset/full-times-guess.md b/.changeset/full-times-guess.md new file mode 100644 index 000000000..513e967a7 --- /dev/null +++ b/.changeset/full-times-guess.md @@ -0,0 +1,5 @@ +--- +'layerchart': patch +--- + +feat: Support global settings (layer type, debug, etc) diff --git a/.changeset/icy-llamas-jump.md b/.changeset/icy-llamas-jump.md new file mode 100644 index 000000000..939058469 --- /dev/null +++ b/.changeset/icy-llamas-jump.md @@ -0,0 +1,5 @@ +--- +'layerchart': patch +--- + +feat(Chart): Support passing explicit `width` and `height` instead of requiring parent dimensions diff --git a/.changeset/twenty-bushes-hope.md b/.changeset/twenty-bushes-hope.md new file mode 100644 index 000000000..b17071a78 --- /dev/null +++ b/.changeset/twenty-bushes-hope.md @@ -0,0 +1,5 @@ +--- +'layerchart': patch +--- + +feat(Layer): Support showing chart and full frame boundaries with `settings.debug` diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 219ffa361..d1e72d3b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,6 +27,8 @@ jobs: - run: pnpm install --frozen-lockfile + - run: pnpm --filter docs exec playwright install chromium + - run: pnpm check:packages - run: pnpm lint:packages diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 000000000..0f7fc9912 --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,27 @@ +test-results +node_modules + +# Output +.output +.vercel +.netlify +.wrangler +/.svelte-kit +/build + +# OS +.DS_Store +Thumbs.db + +# Env +.env +.env.* +!.env.example +!.env.test + +# Vite +vite.config.js.timestamp-* +vite.config.ts.timestamp-* + +# Content Collections +.content-collections \ No newline at end of file diff --git a/docs/.npmrc b/docs/.npmrc new file mode 100644 index 000000000..b6f27f135 --- /dev/null +++ b/docs/.npmrc @@ -0,0 +1 @@ +engine-strict=true diff --git a/docs/.prettierignore b/docs/.prettierignore new file mode 100644 index 000000000..7d74fe246 --- /dev/null +++ b/docs/.prettierignore @@ -0,0 +1,9 @@ +# Package Managers +package-lock.json +pnpm-lock.yaml +yarn.lock +bun.lock +bun.lockb + +# Miscellaneous +/static/ diff --git a/docs/.prettierrc b/docs/.prettierrc new file mode 100644 index 000000000..3f7802c37 --- /dev/null +++ b/docs/.prettierrc @@ -0,0 +1,15 @@ +{ + "useTabs": true, + "singleQuote": true, + "trailingComma": "none", + "printWidth": 100, + "plugins": ["prettier-plugin-svelte"], + "overrides": [ + { + "files": "*.svelte", + "options": { + "parser": "svelte" + } + } + ] +} diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 000000000..75842c404 --- /dev/null +++ b/docs/README.md @@ -0,0 +1,38 @@ +# sv + +Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli). + +## Creating a project + +If you're seeing this, you've probably already done this step. Congrats! + +```sh +# create a new project in the current directory +npx sv create + +# 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: + +```sh +npm run dev + +# or start the server and open the app in a new browser tab +npm run dev -- --open +``` + +## Building + +To create a production version of your app: + +```sh +npm run build +``` + +You can preview the production build with `npm run preview`. + +> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment. diff --git a/docs/content-collections.ts b/docs/content-collections.ts new file mode 100644 index 000000000..f002044d7 --- /dev/null +++ b/docs/content-collections.ts @@ -0,0 +1,51 @@ +import { defineCollection, defineConfig } from '@content-collections/core'; +// import { compileMarkdown } from '@content-collections/markdown'; +import { toPascalCase } from '@layerstack/utils'; +import { z } from 'zod'; +import { readFileSync } from 'fs'; +import { join } from 'path'; + +const components = defineCollection({ + name: 'components', + directory: 'src/content/components', + include: '**/*.md', + schema: z.object({ + description: z.string().optional(), + section: z.string().optional(), + layers: z.array(z.string()).default([]), + related: z.array(z.string()).default([]) + }), + transform: async (doc) => { + const { filePath, fileName, directory, path } = doc._meta; + + // Read the source file from the layerchart package + const sourcePath = join( + process.cwd(), + `../packages/layerchart/src/lib/components/${doc.section === 'charts' ? 'charts/' : ''}${path}.svelte` + ); + + let source = ''; + let sourceUrl = ''; + try { + source = readFileSync(sourcePath, 'utf-8'); + sourceUrl = `https://github.com/techniq/layerchart/blob/next/packages/layerchart/src/lib/components/${path}.svelte`; + } catch (error) { + // console.warn( + // `Could not read source file for ${filePath}: ${error instanceof Error ? error.message : String(error)}` + // ); + } + + return { + ...doc, + name: toPascalCase(fileName.replace('.md', '')), + slug: path, + source, + sourceUrl + // html: await compileMarkdown(context, doc) + }; + } +}); + +export default defineConfig({ + collections: [components] +}); diff --git a/docs/e2e/demo.test.ts b/docs/e2e/demo.test.ts new file mode 100644 index 000000000..9985ce113 --- /dev/null +++ b/docs/e2e/demo.test.ts @@ -0,0 +1,6 @@ +import { expect, test } from '@playwright/test'; + +test('home page has expected h1', async ({ page }) => { + await page.goto('/'); + await expect(page.locator('h1')).toBeVisible(); +}); diff --git a/docs/eslint.config.js b/docs/eslint.config.js new file mode 100644 index 000000000..1baf87baf --- /dev/null +++ b/docs/eslint.config.js @@ -0,0 +1,45 @@ +import prettier from 'eslint-config-prettier'; +import { fileURLToPath } from 'node:url'; +import { includeIgnoreFile } from '@eslint/compat'; +import js from '@eslint/js'; +import svelte from 'eslint-plugin-svelte'; +import { defineConfig } from 'eslint/config'; +import globals from 'globals'; +import ts from 'typescript-eslint'; +import svelteConfig from './svelte.config.js'; + +const gitignorePath = fileURLToPath(new URL('./.gitignore', import.meta.url)); + +export default defineConfig( + includeIgnoreFile(gitignorePath), + js.configs.recommended, + ...ts.configs.recommended, + ...svelte.configs.recommended, + prettier, + ...svelte.configs.prettier, + { + languageOptions: { + globals: { ...globals.browser, ...globals.node } + }, + rules: { + // typescript-eslint strongly recommend that you do not use the no-undef lint rule on TypeScript projects. + // see: https://typescript-eslint.io/troubleshooting/faqs/eslint/#i-get-errors-from-the-no-undef-rule-about-global-variables-not-being-defined-even-though-there-are-no-typescript-errors + 'no-undef': 'off', + '@typescript-eslint/no-unused-vars': 'off', + '@typescript-eslint/no-explicit-any': 'off', + 'svelte/require-each-key': 'off', + 'svelte/no-navigation-without-resolve': 'off' + } + }, + { + files: ['**/*.svelte', '**/*.svelte.ts', '**/*.svelte.js'], + languageOptions: { + parserOptions: { + projectService: true, + extraFileExtensions: ['.svelte'], + parser: ts.parser, + svelteConfig + } + } + } +); diff --git a/docs/mdsx.config.js b/docs/mdsx.config.js new file mode 100644 index 000000000..351f65000 --- /dev/null +++ b/docs/mdsx.config.js @@ -0,0 +1,123 @@ +import { defineConfig } from 'mdsx'; + +import rehypeSlug from 'rehype-slug'; +import remarkGfm from 'remark-gfm'; +import rehypePrettyCode from 'rehype-pretty-code'; + +import { readFileSync } from 'node:fs'; +import path, { resolve } from 'node:path'; +import process from 'node:process'; +// import { fileURLToPath } from "node:url"; +// import prettier from "@prettier/sync"; +// import { getHighlighter } from 'shiki'; +// import { createHighlighter } from 'shiki'; +import { u } from 'unist-builder'; +import { visit } from 'unist-util-visit'; +// import { codeBlockPrettierConfig } from "./other/code-block-prettier.js"; +// import { rehypeCustomHighlight } from '@mdsx/rehype-custom-highlighter'; + +/** + * @type {import('rehype-pretty-code').Options} + */ +const prettyCodeOptions = { + theme: 'github-dark' + // TODO: Why does this not work? + // theme: { + // light: 'github-light', + // dark: 'github-dark' + // } +}; + +export const mdsxConfig = defineConfig({ + extensions: ['.md'], + remarkPlugins: [remarkGfm], + rehypePlugins: [rehypeSlug, rehypeComponentExample, [rehypePrettyCode, prettyCodeOptions]], + blueprints: { + default: { + path: 'src/lib/markdown/blueprints/default/blueprint.svelte' + } + } +}); + +/** + * Adds the source code to component examples. + * + * @returns {HastTransformer} - unified transformer + */ +function rehypeComponentExample() { + return async (tree) => { + const componentRegex = /component="([^"]+)"/; + const nameRegex = /name="([^"]+)"/; + + visit(tree, (node, index, parent) => { + if (node?.type === 'raw' && node?.value?.startsWith(' + + + + + %sveltekit.head% + + +
%sveltekit.body%
+ + diff --git a/docs/src/content/components/Arc.md b/docs/src/content/components/Arc.md new file mode 100644 index 000000000..3a5c09ab7 --- /dev/null +++ b/docs/src/content/components/Arc.md @@ -0,0 +1,20 @@ +--- +# description: +section: primitives +layers: [svg, canvas] +related: [components/Pie, examples/Arc] +--- + + + +## Examples + +### Playground + + + +### Label direction + + diff --git a/docs/src/content/components/ArcChart.md b/docs/src/content/components/ArcChart.md new file mode 100644 index 000000000..0a1eeea37 --- /dev/null +++ b/docs/src/content/components/ArcChart.md @@ -0,0 +1,82 @@ +--- +description: Streamlined Chart configuration for Arc charts +section: charts +layers: [svg, canvas] +related: [components/Chart, components/Pie, examples/Arc] +--- + + + +## Examples + +### Basic + + + +### Gradient with text + + + +### Color + + + +### Track size + + + +### Radius (offset) + +> If a `*radius` property is negative (ex. `-20`), the value will be applied as an offset from the charts `width` / `height`. + + + +### Radius (percent) + +> If a `*radius` property is `>0` and `<1` (ex: `0.8`), the value will be applied as an offset from the charts `width` / `height`. + + + +### Radius (fixed) + +> If a `*radius` property is `>=1` (ex: `80`), the value will be applied as a discrete value. + + + +### Series + + + +### Series (arc) + + + +### Series (90° starting angle) + + + +### Series (180° starting angle) + + + +### Series (track color) + + + +### Series (individual tracks, max value, and color) + + + +### Series (labels) + + + +### Motion (tween) + + + +### Motion (spring) + + diff --git a/docs/src/content/components/AreaChart.md b/docs/src/content/components/AreaChart.md new file mode 100644 index 000000000..cdb2728aa --- /dev/null +++ b/docs/src/content/components/AreaChart.md @@ -0,0 +1,176 @@ +--- +description: Streamlined Chart configuration for Area charts +section: charts +layers: [svg, canvas] +related: [components/Chart, components/Area, examples/Area] +--- + + + +## Examples + +### Basic + + + +### Default series label + + + +### Gradient + + + +### Threshold Gradient + + + +### Curve + + + +### Series + + + +### Series (separate data) + + + +### Series (point click) + + + +### Series (individual tooltip with highlight) + + + +### Stack series + + + +### Stack series (expand) + + + +### Stack series (diverging) + + + +### Stack series with gradient + + + +### Stack series (separate data) + + + +### Legend + + + +### Legend (placement) + + + +### Legend (custom labels) + + + +### Threshold + + + +### Labels + + + +### Points + + + +### Radial + + + +### Funnel + + + +### Null gaps + + + +### Sparkline + + + +### Single axis (x) + + + +### Single axis (y) + + + +### Tooltip click + + + +### Markers + + + +### Custom tooltip + + + +### Locking and clickable tooltip + + + +### Fixed tooltip below chart with hide delay + + + +### Externally access tooltip data + + + +### Point annotations + + + +### Line annotation + + + +### Range annotation + + + +### Series point annotations + + + +### Brushing + + + +### Brush syncing + + + +### Point scale + + + +### Band scale + + + +### Custom + + diff --git a/docs/src/content/components/Axis.md b/docs/src/content/components/Axis.md new file mode 100644 index 000000000..4bd2c2e5f --- /dev/null +++ b/docs/src/content/components/Axis.md @@ -0,0 +1,183 @@ +--- +section: common +layers: [svg, canvas, html] +related: [components/Grid, components/Rule] +--- + + + +## Examples + +### Placement (bottom / left) + + + +### Placement (top / right) + + + +### Placement (bottom / left with rule) + + + +### Placement (top / right with rule) + + + +### Grid + + + +### Grid (dashed) + + + +### Multiple axis grids with single rule + + + +> Axis with rule should be rendered last + +### Multiple axis grids and rules + + + +> Top-most axis must have separate rule due to SVG rendering order + +### Multiple axis grids and rules (separate grid) + + + +### Arrow markers + + + +### Tick label styling + + + +### Rotate labels + + + +### Remove tick marks + + + +### Show first/last ticks only with alignment + + + +### Integer-only ticks (via filter) + + + +### Integer-only ticks (via format) + + + +### Hide `0` (via filter) + + + +### Hide `0` (via format) + + + +### Explicit ticks + + + +### Inject tick value + + + +### Tick count + + + +### Tick spacing + + + +### Label next to hash + + + +### Override axis ticks with custom scale + + + +### Axis label placements (top / bottom) + + + +### Axis label placements (left / right) + + + +### Multiline tick labels with format (`\n`) + + + +### Multiple time axis with same placement (bottom) + + + +### Multiple time axis with same placement (right) + + + +### Radial rule + + + +### Radial grid + + + +### Log scale + + + +### Time scale (auto) + + + +### Time scale (auto) with multiline ticks + +Provides a compact multiline representation of dates. Also useful to see boundary changes (years, months, etc) + + + +### Time scale (auto) with format (filtering) + +Useful when you want to keep all ticks at the same resolution (ex. day) while still allowing tickSpacing/count to reduce ticks + + + +### Time scale (explicit) + +Specify explicit time intervals such as every day, every 6 months, etc. + +> Note: `tickSpacing` / `count` have no effect + + + +### Time scale (explicit) with multiline ticks + +Specify explicit time intervals such as every day, every 6 months, etc with compact multiline representtion. + +> Note: `tickSpacing` / `count` have no effect + + + +### Time scale (brush) + + + +### Time scale (brush) with multiline ticks + + diff --git a/docs/src/content/components/BarChart.md b/docs/src/content/components/BarChart.md new file mode 100644 index 000000000..7e6f74284 --- /dev/null +++ b/docs/src/content/components/BarChart.md @@ -0,0 +1,20 @@ +--- +description: Streamlined Chart configuration for Bar charts +section: charts +layers: [svg, canvas] +related: [components/Chart, components/Bar, examples/Bar] +--- + + + +## Examples + +### Basic + + + +### Tooltip and bar highlight + + diff --git a/docs/src/content/components/Frame.md b/docs/src/content/components/Frame.md new file mode 100644 index 000000000..81681bbcb --- /dev/null +++ b/docs/src/content/components/Frame.md @@ -0,0 +1,32 @@ +--- +description: Rectangle of the Chart bounding box, respects padding or full size +section: common +layers: [svg, canvas, html] +related: [components/Rect] +--- + + + +## Examples + +### Basic + +Inset based (respect padding) + + + +### Full + +Full bounds (ignore padding) + + + +### Border + + + +### Gradient + + diff --git a/docs/src/content/components/Grid.md b/docs/src/content/components/Grid.md new file mode 100644 index 000000000..c9393345a --- /dev/null +++ b/docs/src/content/components/Grid.md @@ -0,0 +1,70 @@ +--- +description: Draw x and/or y axis lines respecting scales +section: common +layers: [svg, canvas, html] +related: [components/Axis, components/Rule] +--- + + + +## Examples + +### Basic + + + +### Padding + +Respects padding + + + +### Single axis (x) + + + +### Single axis (y) + + + +### Dashed lines + + + +### Band scale (align center / default) + + + +### Band scale (align between) + + + +### Radial + + + +### Radial (linear) + + + +### Integer-only ticks + + + +### Explicit ticks + + + +### Inject tick value + + + +### Tick count + + + +### Remove default tick count + + diff --git a/docs/src/content/components/Legend.md b/docs/src/content/components/Legend.md new file mode 100644 index 000000000..02192c7cd --- /dev/null +++ b/docs/src/content/components/Legend.md @@ -0,0 +1,88 @@ +--- +# description: +section: common +layers: [html] +related: [] +--- + + + +## Examples + +### scaleSequential + + + +### scaleSequentialSqrt + + + +### scaleDiverging + + + +### scaleDivergingSqrt + + + +### scaleSequentialLog + + + +### scaleSequentialQuantile + + + +### scaleSqrt + + + +### scaleQuantize + + + +### scaleQuantile + + + +### scaleThreshold + + + +### scaleOrdinal + + + +### Chart integration + + + +### Chart placement + + + +### Square swatch + + + +### Vertical orientation + + + +### Styling + + + +### Responsive swatches + + + +### Click handler + + + +### Children override + + diff --git a/docs/src/content/components/LineChart.md b/docs/src/content/components/LineChart.md new file mode 100644 index 000000000..ecd8b913a --- /dev/null +++ b/docs/src/content/components/LineChart.md @@ -0,0 +1,190 @@ +--- +description: Streamlined Chart configuration for Line charts +section: charts +layers: [svg, canvas] +related: [components/Chart, components/Spline, examples/Line] +--- + + + +## Examples + +### Basic + + + +### Default series label + + + +### Override color + + + +### Curve + + + +### Vertical + + + +### Series + + + +### Series (with nulls) + + + +### Series (separate data) + + + +### Series (separate data with different length) + + + +### Series (vertical) + + + +### Series (individual tooltip with highlight) + + + +### Series (point click) + + + +### Series (custom highlight point) + + + +### Series (labels on point hover) + + + +### Labels + + + +### Points + + + +### Labels with points + + + +### Points within labels + + + +### Radar (linear grid) + + + +### Radar (rounded grid) + + + +### Radar with series data + + + +### Gradient encoding + + + +### Gradient threshold + + + +### Large series + + + +### Large radial series + + + +### Dynamic data (move over chart) + + + +### Null gaps + + + +### Null with dashed lines + + + +### Sparkline + + + +### Single axis (x) + + + +### Single axis (y) + + + +### Axis labels inside + + + +### Legend + + + +### Tooltip click + + + +### Custom tooltip + + + +### Point annotations + + + +> See also: [AnnotationPoint](/components/AnnotationPoint) for more examples + +### Line annotation + + + +> See also: [AnnotationLine](/components/AnnotationLine) for more examples + +### Range annotation + + + +> See also: [AnnotationRange](/components/AnnotationRange) for more examples + +### Series point annotations + + + +### Brushing + + + +### Brush with series point events + + + +### Draw + + + +### Custom + + diff --git a/docs/src/content/components/PieChart.md b/docs/src/content/components/PieChart.md new file mode 100644 index 000000000..9918d2ee9 --- /dev/null +++ b/docs/src/content/components/PieChart.md @@ -0,0 +1,130 @@ +--- +description: Streamlined Chart configuration for Pie charts +section: charts +layers: [svg, canvas] +related: [components/Chart, components/Pie, examples/Arc] +--- + + + +## Examples + +### Basic + + + +### onTooltipClick + + + +### Radius (offset) + +> If a `*radius` property is negative (ex. `-20`), the value will be applied as an offset from the charts `width` / `height`. + + + +### Radius (percent) + +> If a `*radius` property is `>0` and `<1` (ex: `0.8`), the value will be applied as an offset from the charts `width` / `height`. + + + +### Radius (fixed) + +> If a `*radius` property is `>=1` (ex: `80`), the value will be applied as a discrete value. + + + +### Donut (innerRadius) + + + +### Donut with inner text + + + +### Arc (range) + + + +### Segments + + + +### Series + + + +### Series (props) + + + +### Series (arc click) + + + +### Arc props + + + +### Legend + + + +### Legend (placement) + + + +### Legend (with padding) + + + +### Legend (responsive) + + + +### Legend (custom label) + + + +### Placement (left) + + + +### Placement (right) + + + +### Placement (custom) + + + +### Colors (CSS variables) + + + +### Colors (scheme) + + + +### Colors (interpolator) + + + +### Colors (data prop) + + + +### Offset slice + + + +### Motion (tween) + + + +### Motion (spring) + + diff --git a/docs/src/content/components/Rule.md b/docs/src/content/components/Rule.md new file mode 100644 index 000000000..8a4096957 --- /dev/null +++ b/docs/src/content/components/Rule.md @@ -0,0 +1,59 @@ +--- +# description: +section: common +layers: [svg, canvas, html] +related: + [ + components/Axis, + components/Line, + components/AnnotationLine, + examples/Candlestick, + examples/Duration + ] +--- + + + +## Examples + +### Baseline (x / y) + + + +### Baseline (top / right) + + + +### Baseline (x with negative values) + + + +### Baseline (y with negative values) + + + +### Annotation (x) + + + +### Annotation (y) + + + +### Data driven (x date) + + + +### Data driven (x band) + + + +### Data driven (x range) + + + +### Data driven (y range) + + diff --git a/docs/src/content/components/ScatterChart.md b/docs/src/content/components/ScatterChart.md new file mode 100644 index 000000000..975c264d4 --- /dev/null +++ b/docs/src/content/components/ScatterChart.md @@ -0,0 +1,114 @@ +--- +description: Streamlined Chart configuration for Scatter charts +section: charts +layers: [svg, canvas, html] +related: [components/Chart, components/Points, examples/Scatter] +--- + + + +## Examples + +### Basic + + + +### Domain nice + + + +### Domain padding + + + +### Domain 0 (zero) baseline + + + +### Radius scale + + + +### Labels + + + +### Series + + + +### Series (with radius) + + + +### Series (legend) + + + +### Series (tween) + + + +### Series (custom labels) + + + +### Single axis (x) + + + +### Single axis (y) + + + +### Single dimension + + + +### Date series (with color scale) + + + +### Tooltip click + + + +### Point annotations + + + +> See also: [AnnotationPoint](/components/AnnotationPoint) for more examples + +### Line annotation + + + +> See also: [AnnotationLine](/components/AnnotationLine) for more examples + +### Range annotation (vertical) + + + +> See also: [AnnotationRange](/components/AnnotationRange) for more examples + +### Range annotation (horizontal) + + + +> See also: [AnnotationRange](/components/AnnotationRange) for more examples + +### Range annotation (both) + + + +> See also: [AnnotationRange](/components/AnnotationRange) for more examples + +### Brush + + + +### Custom + + diff --git a/docs/src/content/components/async.md b/docs/src/content/components/async.md new file mode 100644 index 000000000..8d0fda698 --- /dev/null +++ b/docs/src/content/components/async.md @@ -0,0 +1,28 @@ +--- +description: Use `experimental.async` to load each example and source +section: examples +--- + + + +```svelte + + + + +``` + +## Example + + + +## Issues + +- Issue with initial page load (SSR?, but is disabled 🤔) +- Issue with build (`pnpm build && pnpm preview`) + - [set_context_after_init](https://svelte.dev/docs/svelte/runtime-errors#Client-errors-set_context_after_init) +- Need to determine how to load contents for search index diff --git a/docs/src/content/components/direct.md b/docs/src/content/components/direct.md new file mode 100644 index 000000000..dccdd1a05 --- /dev/null +++ b/docs/src/content/components/direct.md @@ -0,0 +1,39 @@ +--- +description: Directly import each component and source +section: examples +--- + + + +```svelte + + + + + +``` + +## Example + + + + +## Benefits + +- Most straightforward +- Should be easier to build search index + +## Issues + +- Very verbose - import each example and source and instantiate each diff --git a/docs/src/content/components/promise.md b/docs/src/content/components/promise.md new file mode 100644 index 000000000..bef297f43 --- /dev/null +++ b/docs/src/content/components/promise.md @@ -0,0 +1,30 @@ +--- +description: Use `{#await}` to load each example and source +section: examples +--- + + + +```svelte + + + + +``` + +## Example + + + +## Benefits + +- Concise examples (single line, no imports) + +## Issues + +- Lazy loads each example +- Need to determine how to load contents for search index diff --git a/docs/src/content/components/source-plugin.md b/docs/src/content/components/source-plugin.md new file mode 100644 index 000000000..7514450d1 --- /dev/null +++ b/docs/src/content/components/source-plugin.md @@ -0,0 +1,41 @@ +--- +description: Use rehype plugin and wrapper component to populate source +section: examples +--- + + + +```svelte + + + + + + +``` + +## Example + + + + + +## Benefits + +- Improvement over direct by not requiring source imports +- Should be easier to build search index + +## Issues + +- Verbose - still needs to load each example (but not source) +- Disconnect between displayed component and loaded source (no match guarantee) +- Less (direct) control over Code component (add copy button, expand/collapse, etc) diff --git a/docs/src/demo.spec.ts b/docs/src/demo.spec.ts new file mode 100644 index 000000000..e07cbbd72 --- /dev/null +++ b/docs/src/demo.spec.ts @@ -0,0 +1,7 @@ +import { describe, it, expect } from 'vitest'; + +describe('sum test', () => { + it('adds 1 + 2 to equal 3', () => { + expect(1 + 2).toBe(3); + }); +}); diff --git a/docs/src/examples/Arc/label-direction.svelte b/docs/src/examples/Arc/label-direction.svelte new file mode 100644 index 000000000..fefae2368 --- /dev/null +++ b/docs/src/examples/Arc/label-direction.svelte @@ -0,0 +1,100 @@ + + +
+ {#each labelExamples as example} +
+ + + + {#snippet children({ gradient })} + + {#snippet children({ getArcTextProps, getTrackTextProps })} + + + + + + + + {/snippet} + + {/snippet} + + + +
+ {/each} +
diff --git a/docs/src/examples/Arc/playground.svelte b/docs/src/examples/Arc/playground.svelte new file mode 100644 index 000000000..9df20bc8a --- /dev/null +++ b/docs/src/examples/Arc/playground.svelte @@ -0,0 +1,107 @@ + + +
+ + + + + + + + + + + + + + + + + +
+ + + + {#key spring} + + {#snippet children({ gradient })} + + {#snippet children({ value, getArcTextProps })} + + + + + + {/snippet} + + {/snippet} + + {/key} + + diff --git a/docs/src/examples/ArcChart/basic.svelte b/docs/src/examples/ArcChart/basic.svelte new file mode 100644 index 000000000..f3ed4d4e5 --- /dev/null +++ b/docs/src/examples/ArcChart/basic.svelte @@ -0,0 +1,16 @@ + + + diff --git a/docs/src/examples/ArcChart/color.svelte b/docs/src/examples/ArcChart/color.svelte new file mode 100644 index 000000000..b75e766cf --- /dev/null +++ b/docs/src/examples/ArcChart/color.svelte @@ -0,0 +1,21 @@ + + + diff --git a/docs/src/examples/ArcChart/gradient-with-text.svelte b/docs/src/examples/ArcChart/gradient-with-text.svelte new file mode 100644 index 000000000..57ffff46a --- /dev/null +++ b/docs/src/examples/ArcChart/gradient-with-text.svelte @@ -0,0 +1,33 @@ + + + + {#snippet marks()} + + {#snippet children({ gradient })} + + + {#snippet children({ value })} + + {/snippet} + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/ArcChart/radius-fixed.svelte b/docs/src/examples/ArcChart/radius-fixed.svelte new file mode 100644 index 000000000..4e6e4b9e9 --- /dev/null +++ b/docs/src/examples/ArcChart/radius-fixed.svelte @@ -0,0 +1,19 @@ + + + diff --git a/docs/src/examples/ArcChart/radius-offset.svelte b/docs/src/examples/ArcChart/radius-offset.svelte new file mode 100644 index 000000000..a15edb0de --- /dev/null +++ b/docs/src/examples/ArcChart/radius-offset.svelte @@ -0,0 +1,18 @@ + + + diff --git a/docs/src/examples/ArcChart/radius-percent.svelte b/docs/src/examples/ArcChart/radius-percent.svelte new file mode 100644 index 000000000..c5f851917 --- /dev/null +++ b/docs/src/examples/ArcChart/radius-percent.svelte @@ -0,0 +1,18 @@ + + + diff --git a/docs/src/examples/ArcChart/series-arc.svelte b/docs/src/examples/ArcChart/series-arc.svelte new file mode 100644 index 000000000..0c3724c8a --- /dev/null +++ b/docs/src/examples/ArcChart/series-arc.svelte @@ -0,0 +1,19 @@ + + + diff --git a/docs/src/examples/ArcChart/series-individual.svelte b/docs/src/examples/ArcChart/series-individual.svelte new file mode 100644 index 000000000..68c998959 --- /dev/null +++ b/docs/src/examples/ArcChart/series-individual.svelte @@ -0,0 +1,27 @@ + + + { + return { + key: d.key, + data: [d], + maxValue: d.maxValue, + color: d.color + }; + })} + outerRadius={-25} + innerRadius={-20} + cornerRadius={10} + height={180} +/> diff --git a/docs/src/examples/ArcChart/series-labels.svelte b/docs/src/examples/ArcChart/series-labels.svelte new file mode 100644 index 000000000..07ddb2fda --- /dev/null +++ b/docs/src/examples/ArcChart/series-labels.svelte @@ -0,0 +1,40 @@ + + + { + return { + key: d.key, + data: [d], + maxValue: d.maxValue, + color: d.color + }; + })} + outerRadius={-25} + innerRadius={-20} + cornerRadius={10} + height={180} +> + {#snippet arc({ props, seriesIndex, visibleSeries })} + + {#snippet children({ getArcTextProps })} + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/ArcChart/series-motion-spring.svelte b/docs/src/examples/ArcChart/series-motion-spring.svelte new file mode 100644 index 000000000..396087b02 --- /dev/null +++ b/docs/src/examples/ArcChart/series-motion-spring.svelte @@ -0,0 +1,38 @@ + + + + + + +
+ {#if show} + { + return { + key: d.key, + data: [d], + maxValue: d.maxValue, + color: d.color + }; + })} + props={{ arc: { motion: 'spring' } }} + outerRadius={-25} + innerRadius={-20} + cornerRadius={10} + /> + {/if} +
diff --git a/docs/src/examples/ArcChart/series-motion-tween.svelte b/docs/src/examples/ArcChart/series-motion-tween.svelte new file mode 100644 index 000000000..60b34ddbd --- /dev/null +++ b/docs/src/examples/ArcChart/series-motion-tween.svelte @@ -0,0 +1,38 @@ + + + + + + +
+ {#if show} + { + return { + key: d.key, + data: [d], + maxValue: d.maxValue, + color: d.color + }; + })} + props={{ arc: { motion: 'tween' } }} + outerRadius={-25} + innerRadius={-20} + cornerRadius={10} + /> + {/if} +
diff --git a/docs/src/examples/ArcChart/series-start-180.svelte b/docs/src/examples/ArcChart/series-start-180.svelte new file mode 100644 index 000000000..dbddff452 --- /dev/null +++ b/docs/src/examples/ArcChart/series-start-180.svelte @@ -0,0 +1,18 @@ + + + diff --git a/docs/src/examples/ArcChart/series-start-90.svelte b/docs/src/examples/ArcChart/series-start-90.svelte new file mode 100644 index 000000000..69af3cfed --- /dev/null +++ b/docs/src/examples/ArcChart/series-start-90.svelte @@ -0,0 +1,18 @@ + + + diff --git a/docs/src/examples/ArcChart/series-track-color.svelte b/docs/src/examples/ArcChart/series-track-color.svelte new file mode 100644 index 000000000..e67a28979 --- /dev/null +++ b/docs/src/examples/ArcChart/series-track-color.svelte @@ -0,0 +1,22 @@ + + + diff --git a/docs/src/examples/ArcChart/series.svelte b/docs/src/examples/ArcChart/series.svelte new file mode 100644 index 000000000..b494cf3d6 --- /dev/null +++ b/docs/src/examples/ArcChart/series.svelte @@ -0,0 +1,17 @@ + + + diff --git a/docs/src/examples/ArcChart/track-size.svelte b/docs/src/examples/ArcChart/track-size.svelte new file mode 100644 index 000000000..a15edb0de --- /dev/null +++ b/docs/src/examples/ArcChart/track-size.svelte @@ -0,0 +1,18 @@ + + + diff --git a/docs/src/examples/AreaChart/band-scale.svelte b/docs/src/examples/AreaChart/band-scale.svelte new file mode 100644 index 000000000..992a77d2a --- /dev/null +++ b/docs/src/examples/AreaChart/band-scale.svelte @@ -0,0 +1,19 @@ + + + diff --git a/docs/src/examples/AreaChart/basic.svelte b/docs/src/examples/AreaChart/basic.svelte new file mode 100644 index 000000000..b51b06ac2 --- /dev/null +++ b/docs/src/examples/AreaChart/basic.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/AreaChart/brush-sync.svelte b/docs/src/examples/AreaChart/brush-sync.svelte new file mode 100644 index 000000000..fe0f527de --- /dev/null +++ b/docs/src/examples/AreaChart/brush-sync.svelte @@ -0,0 +1,58 @@ + + +
+
+ (xDomain = e.xDomain) }} + props={{ + area: { motion: { type: 'tween', duration: 200 } }, + xAxis: { + motion: { type: 'tween', duration: 200 }, + tickMultiline: true + } + }} + height={300} + /> +
+ +
+ (xDomain = e.xDomain) }} + props={{ + area: { motion: { type: 'tween', duration: 200 } }, + xAxis: { + motion: { type: 'tween', duration: 200 }, + tickMultiline: true + } + }} + height={300} + /> +
+
diff --git a/docs/src/examples/AreaChart/brush.svelte b/docs/src/examples/AreaChart/brush.svelte new file mode 100644 index 000000000..288395d77 --- /dev/null +++ b/docs/src/examples/AreaChart/brush.svelte @@ -0,0 +1,25 @@ + + + diff --git a/docs/src/examples/AreaChart/curve.svelte b/docs/src/examples/AreaChart/curve.svelte new file mode 100644 index 000000000..9b4e14c63 --- /dev/null +++ b/docs/src/examples/AreaChart/curve.svelte @@ -0,0 +1,10 @@ + + + diff --git a/docs/src/examples/AreaChart/custom-tooltip.svelte b/docs/src/examples/AreaChart/custom-tooltip.svelte new file mode 100644 index 000000000..d5dbcc945 --- /dev/null +++ b/docs/src/examples/AreaChart/custom-tooltip.svelte @@ -0,0 +1,38 @@ + + + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {context.y(data)} + {/snippet} + + + + {#snippet children({ data })} + {format(context.x(data), 'day')} + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/AreaChart/custom.svelte b/docs/src/examples/AreaChart/custom.svelte new file mode 100644 index 000000000..04b21483a --- /dev/null +++ b/docs/src/examples/AreaChart/custom.svelte @@ -0,0 +1,28 @@ + + + + {#snippet children({ context })} + + + + + + + + + {#snippet children({ data })} + {format(context.x(data), 'day')} + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/AreaChart/default-series-label.svelte b/docs/src/examples/AreaChart/default-series-label.svelte new file mode 100644 index 000000000..f6aa3e00f --- /dev/null +++ b/docs/src/examples/AreaChart/default-series-label.svelte @@ -0,0 +1,14 @@ + + + diff --git a/docs/src/examples/AreaChart/funnel.svelte b/docs/src/examples/AreaChart/funnel.svelte new file mode 100644 index 000000000..1586e0165 --- /dev/null +++ b/docs/src/examples/AreaChart/funnel.svelte @@ -0,0 +1,93 @@ + + + d.value, (d) => -d.value]} + axis={false} + yPadding={[20, 20]} + props={{ + grid: { + x: { class: 'stroke-2 stroke-surface-content/20' }, + y: false, + xTicks: funnelSegments.map((d) => d.index) + } + }} + tooltip={false} + height={400} +> + {#snippet marks({ context })} + {@const segmentWidth = context.width / (funnelSegments.length - 1)} + {@const areas = [ + { padding: 0, opacity: 1 }, + { padding: 10, opacity: 0.2 }, + { padding: 20, opacity: 0.1 } + ]} + + + {#snippet children({ gradient })} + {#each areas as a} + d.value + a.padding} + y1={(d) => -(d.value + a.padding)} + fill={gradient} + curve={curveBasis} + /> + {/each} + {/snippet} + + + {#each funnelSegments.slice(0, -1) as s} + + {/each} + {/snippet} + diff --git a/docs/src/examples/AreaChart/gradient.svelte b/docs/src/examples/AreaChart/gradient.svelte new file mode 100644 index 000000000..649deb0a4 --- /dev/null +++ b/docs/src/examples/AreaChart/gradient.svelte @@ -0,0 +1,17 @@ + + + + {#snippet marks()} + + {#snippet children({ gradient })} + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/AreaChart/labels.svelte b/docs/src/examples/AreaChart/labels.svelte new file mode 100644 index 000000000..750088c86 --- /dev/null +++ b/docs/src/examples/AreaChart/labels.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/AreaChart/line-annotation.svelte b/docs/src/examples/AreaChart/line-annotation.svelte new file mode 100644 index 000000000..3c1827403 --- /dev/null +++ b/docs/src/examples/AreaChart/line-annotation.svelte @@ -0,0 +1,27 @@ + + + diff --git a/docs/src/examples/AreaChart/markers.svelte b/docs/src/examples/AreaChart/markers.svelte new file mode 100644 index 000000000..0b67ccbaf --- /dev/null +++ b/docs/src/examples/AreaChart/markers.svelte @@ -0,0 +1,63 @@ + + + { + if (markerPoints.includes(detail.data)) { + markerPoints = markerPoints.filter((d) => d !== detail.data); + } else { + markerPoints = [...markerPoints, detail.data]; + } + }} + height={300} +> + {#snippet aboveMarks({ context })} + {#each markerPoints as p} + + + {/each} + {/snippet} + + {#snippet aboveContext({ context })} + + {#each markerPoints as p} + + {/each} + + {/snippet} + + +
Click to add/remove markers
diff --git a/docs/src/examples/AreaChart/null-gaps.svelte b/docs/src/examples/AreaChart/null-gaps.svelte new file mode 100644 index 000000000..1219012b2 --- /dev/null +++ b/docs/src/examples/AreaChart/null-gaps.svelte @@ -0,0 +1,14 @@ + + + diff --git a/docs/src/examples/AreaChart/point-annotations.svelte b/docs/src/examples/AreaChart/point-annotations.svelte new file mode 100644 index 000000000..d076d3fc4 --- /dev/null +++ b/docs/src/examples/AreaChart/point-annotations.svelte @@ -0,0 +1,60 @@ + + + { + return { + type: 'point', + label: a.label, + details: a.details, + x: a.date, + r: 6, + props: { + circle: { class: 'fill-secondary' }, + label: { class: 'text-[10px] fill-secondary-content font-bold' } + } + }; + })} + height={300} +> + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {#if data.annotation} + +
+ {data.annotation.details} +
+ {:else} + + {format(context.x(data), 'day')} + + + + {/if} + {/snippet} +
+ {/snippet} +
diff --git a/docs/src/examples/AreaChart/point-scale.svelte b/docs/src/examples/AreaChart/point-scale.svelte new file mode 100644 index 000000000..0e250ca16 --- /dev/null +++ b/docs/src/examples/AreaChart/point-scale.svelte @@ -0,0 +1,10 @@ + + + diff --git a/docs/src/examples/AreaChart/points.svelte b/docs/src/examples/AreaChart/points.svelte new file mode 100644 index 000000000..d46e4a22f --- /dev/null +++ b/docs/src/examples/AreaChart/points.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/AreaChart/radial.svelte b/docs/src/examples/AreaChart/radial.svelte new file mode 100644 index 000000000..5866ac5ba --- /dev/null +++ b/docs/src/examples/AreaChart/radial.svelte @@ -0,0 +1,47 @@ + + + [height / 5, height / 2]} + radial + rule={{ class: 'stroke-surface-content/20' }} + props={{ + area: { line: false, fillOpacity: 1 }, + xAxis: { format: 'month', tickMarks: false }, + yAxis: { ticks: 4, format: (v) => v + '° F' }, + highlight: { points: false }, + tooltip: { + context: { mode: 'bisect-x' } + } + }} + series={[ + { + key: 'min_max', + label: 'min/max', + value: ['min', 'max'], + color: 'var(--color-primary)', + props: { opacity: 0.2, line: { opacity: 0.2 } } + }, + { + key: 'minmin_maxmax', + label: 'minmin/maxmax', + value: ['minmin', 'maxmax'], + color: 'var(--color-primary)', + props: { opacity: 0.2, line: { opacity: 0.2 } } + } + ]} + height={500} +> + {#snippet belowMarks()} + + {/snippet} + diff --git a/docs/src/examples/AreaChart/range-annotation.svelte b/docs/src/examples/AreaChart/range-annotation.svelte new file mode 100644 index 000000000..1d2cf56ed --- /dev/null +++ b/docs/src/examples/AreaChart/range-annotation.svelte @@ -0,0 +1,30 @@ + + + diff --git a/docs/src/examples/AreaChart/series-individual-tooltip.svelte b/docs/src/examples/AreaChart/series-individual-tooltip.svelte new file mode 100644 index 000000000..7ff87e889 --- /dev/null +++ b/docs/src/examples/AreaChart/series-individual-tooltip.svelte @@ -0,0 +1,72 @@ + + + + {#snippet marks({ series, context })} + {#each series as s} + {@const activeSeries = + context.tooltip?.data == null || context.tooltip?.data?.fruit === s.key} + + + + + {/each} + {/snippet} + + {#snippet highlight({ series, context })} + {@const activeSeries = series.find((s) => s.key === context.tooltip?.data?.fruit)} + + {/snippet} + + {#snippet tooltip({ series, context })} + {@const activeSeries = series.find((s) => s.key === context.tooltip?.data?.fruit)} + + {#snippet children({ data })} + {format(context.x(data))} + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/AreaChart/series-point-annotations.svelte b/docs/src/examples/AreaChart/series-point-annotations.svelte new file mode 100644 index 000000000..a2562b5b9 --- /dev/null +++ b/docs/src/examples/AreaChart/series-point-annotations.svelte @@ -0,0 +1,60 @@ + + + { + const lastDataPoint = s.data?.[s.data.length - 1] ?? null; + return { + type: 'point', + seriesKey: s.key, + label: s.key, + labelPlacement: 'right', + labelXOffset: 4, + x: lastDataPoint.date, + y: lastDataPoint.value, + props: { + circle: { fill: s.color }, + label: { fill: s.color } + } + }; + })} + padding={{ ...defaultChartPadding(), right: 60 }} + height={300} +/> diff --git a/docs/src/examples/AreaChart/series-point-click.svelte b/docs/src/examples/AreaChart/series-point-click.svelte new file mode 100644 index 000000000..4edcbfece --- /dev/null +++ b/docs/src/examples/AreaChart/series-point-click.svelte @@ -0,0 +1,34 @@ + + + { + console.log(e, detail); + alert(JSON.stringify(detail)); + }} + height={300} +/> diff --git a/docs/src/examples/AreaChart/series-separate-data.svelte b/docs/src/examples/AreaChart/series-separate-data.svelte new file mode 100644 index 000000000..c55a24852 --- /dev/null +++ b/docs/src/examples/AreaChart/series-separate-data.svelte @@ -0,0 +1,41 @@ + + + diff --git a/docs/src/examples/AreaChart/series-stack-diverging.svelte b/docs/src/examples/AreaChart/series-stack-diverging.svelte new file mode 100644 index 000000000..fb4a864ad --- /dev/null +++ b/docs/src/examples/AreaChart/series-stack-diverging.svelte @@ -0,0 +1,31 @@ + + + -d.apples, color: 'var(--color-danger)' }, + { + key: 'bananas', + color: 'var(--color-success)' + }, + { + key: 'oranges', + color: 'var(--color-warning)' + } + ]} + seriesLayout="stackDiverging" + height={300} +/> diff --git a/docs/src/examples/AreaChart/series-stack-expand.svelte b/docs/src/examples/AreaChart/series-stack-expand.svelte new file mode 100644 index 000000000..1309bb1a5 --- /dev/null +++ b/docs/src/examples/AreaChart/series-stack-expand.svelte @@ -0,0 +1,31 @@ + + + diff --git a/docs/src/examples/AreaChart/series-stack-gradient.svelte b/docs/src/examples/AreaChart/series-stack-gradient.svelte new file mode 100644 index 000000000..e68a8558e --- /dev/null +++ b/docs/src/examples/AreaChart/series-stack-gradient.svelte @@ -0,0 +1,47 @@ + + + + {#snippet marks({ series, getAreaProps })} + {#each series as s, i (s.key)} + + + {#snippet children({ gradient })} + + {/snippet} + + {/each} + {/snippet} + diff --git a/docs/src/examples/AreaChart/series-stack-legend-labels.svelte b/docs/src/examples/AreaChart/series-stack-legend-labels.svelte new file mode 100644 index 000000000..302baee27 --- /dev/null +++ b/docs/src/examples/AreaChart/series-stack-legend-labels.svelte @@ -0,0 +1,34 @@ + + + diff --git a/docs/src/examples/AreaChart/series-stack-legend-placement.svelte b/docs/src/examples/AreaChart/series-stack-legend-placement.svelte new file mode 100644 index 000000000..f4fcc07c5 --- /dev/null +++ b/docs/src/examples/AreaChart/series-stack-legend-placement.svelte @@ -0,0 +1,32 @@ + + + diff --git a/docs/src/examples/AreaChart/series-stack-legend.svelte b/docs/src/examples/AreaChart/series-stack-legend.svelte new file mode 100644 index 000000000..1c2805e5a --- /dev/null +++ b/docs/src/examples/AreaChart/series-stack-legend.svelte @@ -0,0 +1,32 @@ + + + diff --git a/docs/src/examples/AreaChart/series-stack-separate-data.svelte b/docs/src/examples/AreaChart/series-stack-separate-data.svelte new file mode 100644 index 000000000..8e8b839d1 --- /dev/null +++ b/docs/src/examples/AreaChart/series-stack-separate-data.svelte @@ -0,0 +1,42 @@ + + + diff --git a/docs/src/examples/AreaChart/series-stack.svelte b/docs/src/examples/AreaChart/series-stack.svelte new file mode 100644 index 000000000..02504a9c5 --- /dev/null +++ b/docs/src/examples/AreaChart/series-stack.svelte @@ -0,0 +1,31 @@ + + + diff --git a/docs/src/examples/AreaChart/series-tooltip-click.svelte b/docs/src/examples/AreaChart/series-tooltip-click.svelte new file mode 100644 index 000000000..c61d36501 --- /dev/null +++ b/docs/src/examples/AreaChart/series-tooltip-click.svelte @@ -0,0 +1,18 @@ + + + { + console.log(e, detail); + alert(JSON.stringify(detail)); + }} +/> diff --git a/docs/src/examples/AreaChart/series.svelte b/docs/src/examples/AreaChart/series.svelte new file mode 100644 index 000000000..86ac8166e --- /dev/null +++ b/docs/src/examples/AreaChart/series.svelte @@ -0,0 +1,30 @@ + + + diff --git a/docs/src/examples/AreaChart/single-axis-x.svelte b/docs/src/examples/AreaChart/single-axis-x.svelte new file mode 100644 index 000000000..64d262e56 --- /dev/null +++ b/docs/src/examples/AreaChart/single-axis-x.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/AreaChart/single-axis-y.svelte b/docs/src/examples/AreaChart/single-axis-y.svelte new file mode 100644 index 000000000..b82363b9a --- /dev/null +++ b/docs/src/examples/AreaChart/single-axis-y.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/AreaChart/sparkline.svelte b/docs/src/examples/AreaChart/sparkline.svelte new file mode 100644 index 000000000..bf6f6cd3e --- /dev/null +++ b/docs/src/examples/AreaChart/sparkline.svelte @@ -0,0 +1,20 @@ + + + diff --git a/docs/src/examples/AreaChart/threshold-gradient.svelte b/docs/src/examples/AreaChart/threshold-gradient.svelte new file mode 100644 index 000000000..255466519 --- /dev/null +++ b/docs/src/examples/AreaChart/threshold-gradient.svelte @@ -0,0 +1,59 @@ + + + + {#snippet marks({ context })} + {@const thresholdValue = 0} + {@const thresholdOffset = + context.yScale(thresholdValue) / (context.height + context.padding.bottom)} + + {#snippet children({ gradient })} + thresholdValue} + line={{ stroke: gradient }} + fill={gradient} + fillOpacity={0.2} + /> + {/snippet} + + {/snippet} + + {#snippet highlight({ context })} + {@const value = context.tooltip?.data && context.y(context.tooltip?.data)} + + {/snippet} + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {@const value = context.y(data)} + {format(context.x(data), 'day')} + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/AreaChart/threshold.svelte b/docs/src/examples/AreaChart/threshold.svelte new file mode 100644 index 000000000..0bf58e63f --- /dev/null +++ b/docs/src/examples/AreaChart/threshold.svelte @@ -0,0 +1,63 @@ + + + + + + {#snippet marks()} + + {#snippet above({ curve })} + + {/snippet} + + {#snippet below({ curve })} + + {/snippet} + + {#snippet children({ curve })} + + + {/snippet} + + {/snippet} + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {format(data.date)} + + + + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/AreaChart/tooltip-external.svelte b/docs/src/examples/AreaChart/tooltip-external.svelte new file mode 100644 index 000000000..933a1274e --- /dev/null +++ b/docs/src/examples/AreaChart/tooltip-external.svelte @@ -0,0 +1,27 @@ + + +
+ {#if context && context.tooltip.data} + date: {format(context.tooltip.data.date, 'day', { variant: 'short' })} + value: {context.tooltip.data.value} + {:else} + [hover chart] + {/if} +
+ + diff --git a/docs/src/examples/AreaChart/tooltip-fixed-with-hide-delay.svelte b/docs/src/examples/AreaChart/tooltip-fixed-with-hide-delay.svelte new file mode 100644 index 000000000..f2ea2ef36 --- /dev/null +++ b/docs/src/examples/AreaChart/tooltip-fixed-with-hide-delay.svelte @@ -0,0 +1,51 @@ + + + + {#snippet tooltip({ context, setHighlightKey, series })} + + {#snippet children({ data })} + + {format(context.x(data), 'day')} + + + + {#each series as s} + {@const valueAccessor = accessor(s.value ?? s.key)} + {@const value = valueAccessor(data)} + setHighlightKey(s.key)} + onpointerleave={() => setHighlightKey(null)} + > + {format(value)} + + {/each} + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/AreaChart/tooltip-locking.svelte b/docs/src/examples/AreaChart/tooltip-locking.svelte new file mode 100644 index 000000000..2ab6c1711 --- /dev/null +++ b/docs/src/examples/AreaChart/tooltip-locking.svelte @@ -0,0 +1,92 @@ + + + + {#snippet tooltip({ context, setHighlightKey, series })} + + {#snippet children({ data })} + + {format(context.x(data), 'day')} + + + + {#each series as s} + {@const valueAccessor = accessor(s.value ?? s.key)} + {@const value = Math.abs(valueAccessor(data))} + setHighlightKey(s.key)} + onpointerleave={() => setHighlightKey(null)} + > + {format(value)} + + + + {/each} + + + + +
+ Lock position with and view console +
+ {/snippet} +
+ {/snippet} +
+ + { + if (e.metaKey) { + lockedTooltip = true; + } + }} + onkeyup={(e) => { + if (!e.metaKey) { + lockedTooltip = false; + } + }} +/> diff --git a/docs/src/examples/Axis/arrow-markers.svelte b/docs/src/examples/Axis/arrow-markers.svelte new file mode 100644 index 000000000..83f9a006d --- /dev/null +++ b/docs/src/examples/Axis/arrow-markers.svelte @@ -0,0 +1,20 @@ + + + + + + + + diff --git a/docs/src/examples/Axis/axis-label-placement-left-right.svelte b/docs/src/examples/Axis/axis-label-placement-left-right.svelte new file mode 100644 index 000000000..d7c01eeb8 --- /dev/null +++ b/docs/src/examples/Axis/axis-label-placement-left-right.svelte @@ -0,0 +1,15 @@ + + + + + + + + + + + + + diff --git a/docs/src/examples/Axis/axis-label-placement-top-bottom.svelte b/docs/src/examples/Axis/axis-label-placement-top-bottom.svelte new file mode 100644 index 000000000..6fb2410b2 --- /dev/null +++ b/docs/src/examples/Axis/axis-label-placement-top-bottom.svelte @@ -0,0 +1,23 @@ + + + + + + + + + + + + + diff --git a/docs/src/examples/Axis/explicit-ticks.svelte b/docs/src/examples/Axis/explicit-ticks.svelte new file mode 100644 index 000000000..b9d814faf --- /dev/null +++ b/docs/src/examples/Axis/explicit-ticks.svelte @@ -0,0 +1,9 @@ + + + + + + + diff --git a/docs/src/examples/Axis/extent-ticks-only.svelte b/docs/src/examples/Axis/extent-ticks-only.svelte new file mode 100644 index 000000000..b2cfab8a2 --- /dev/null +++ b/docs/src/examples/Axis/extent-ticks-only.svelte @@ -0,0 +1,28 @@ + + + + + scale.domain()} + format={{ type: 'day', options: { variant: 'long' } }} + > + {#snippet tickLabel({ props, index })} + + {/snippet} + + scale.domain()} /> + + diff --git a/docs/src/examples/Axis/grid-dashed.svelte b/docs/src/examples/Axis/grid-dashed.svelte new file mode 100644 index 000000000..0f020ab81 --- /dev/null +++ b/docs/src/examples/Axis/grid-dashed.svelte @@ -0,0 +1,20 @@ + + + + + + + + diff --git a/docs/src/examples/Axis/grid.svelte b/docs/src/examples/Axis/grid.svelte new file mode 100644 index 000000000..43c55169e --- /dev/null +++ b/docs/src/examples/Axis/grid.svelte @@ -0,0 +1,20 @@ + + + + + + + + diff --git a/docs/src/examples/Axis/hide-zero-filter.svelte b/docs/src/examples/Axis/hide-zero-filter.svelte new file mode 100644 index 000000000..aec9f0263 --- /dev/null +++ b/docs/src/examples/Axis/hide-zero-filter.svelte @@ -0,0 +1,9 @@ + + + + + scale.ticks?.().filter((d) => d !== 0)} /> + + diff --git a/docs/src/examples/Axis/hide-zero-format.svelte b/docs/src/examples/Axis/hide-zero-format.svelte new file mode 100644 index 000000000..a736bef4e --- /dev/null +++ b/docs/src/examples/Axis/hide-zero-format.svelte @@ -0,0 +1,9 @@ + + + + + v || ''} /> + + diff --git a/docs/src/examples/Axis/inject-ticks.svelte b/docs/src/examples/Axis/inject-ticks.svelte new file mode 100644 index 000000000..f6364592b --- /dev/null +++ b/docs/src/examples/Axis/inject-ticks.svelte @@ -0,0 +1,9 @@ + + + + + [45, ...(scale.ticks?.() ?? [])]} /> + + diff --git a/docs/src/examples/Axis/integer-only-filter.svelte b/docs/src/examples/Axis/integer-only-filter.svelte new file mode 100644 index 000000000..ee63de0ec --- /dev/null +++ b/docs/src/examples/Axis/integer-only-filter.svelte @@ -0,0 +1,9 @@ + + + + + scale.ticks?.().filter(Number.isInteger)} /> + + diff --git a/docs/src/examples/Axis/integer-only-format.svelte b/docs/src/examples/Axis/integer-only-format.svelte new file mode 100644 index 000000000..efa408818 --- /dev/null +++ b/docs/src/examples/Axis/integer-only-format.svelte @@ -0,0 +1,9 @@ + + + + + + + diff --git a/docs/src/examples/Axis/labels-next-hash.svelte b/docs/src/examples/Axis/labels-next-hash.svelte new file mode 100644 index 000000000..855f55b7b --- /dev/null +++ b/docs/src/examples/Axis/labels-next-hash.svelte @@ -0,0 +1,20 @@ + + + + + scale.ticks?.().slice(0, -1)} + tickLength={22} + /> + + diff --git a/docs/src/examples/Axis/log-scale.svelte b/docs/src/examples/Axis/log-scale.svelte new file mode 100644 index 000000000..642857d16 --- /dev/null +++ b/docs/src/examples/Axis/log-scale.svelte @@ -0,0 +1,10 @@ + + + + + + + diff --git a/docs/src/examples/Axis/multiline-tick-labels.svelte b/docs/src/examples/Axis/multiline-tick-labels.svelte new file mode 100644 index 000000000..46e189382 --- /dev/null +++ b/docs/src/examples/Axis/multiline-tick-labels.svelte @@ -0,0 +1,19 @@ + + + + + + 'Q' + (d.getMonth() / 3 + 1) + (d.getMonth() === 0 ? '\n' + d.getFullYear() : '')} + rule + /> + + diff --git a/docs/src/examples/Axis/multiple-axis-grid-and-rules-separate-grid.svelte b/docs/src/examples/Axis/multiple-axis-grid-and-rules-separate-grid.svelte new file mode 100644 index 000000000..f88bd1837 --- /dev/null +++ b/docs/src/examples/Axis/multiple-axis-grid-and-rules-separate-grid.svelte @@ -0,0 +1,21 @@ + + + + + + + + + diff --git a/docs/src/examples/Axis/multiple-axis-grid-and-rules.svelte b/docs/src/examples/Axis/multiple-axis-grid-and-rules.svelte new file mode 100644 index 000000000..2b269653e --- /dev/null +++ b/docs/src/examples/Axis/multiple-axis-grid-and-rules.svelte @@ -0,0 +1,21 @@ + + + + + + + + + diff --git a/docs/src/examples/Axis/multiple-axis-grid-with-single-rule.svelte b/docs/src/examples/Axis/multiple-axis-grid-with-single-rule.svelte new file mode 100644 index 000000000..955584510 --- /dev/null +++ b/docs/src/examples/Axis/multiple-axis-grid-with-single-rule.svelte @@ -0,0 +1,20 @@ + + + + + + + + diff --git a/docs/src/examples/Axis/multiple-axis-same-placement-bottom.svelte b/docs/src/examples/Axis/multiple-axis-same-placement-bottom.svelte new file mode 100644 index 000000000..50608ebef --- /dev/null +++ b/docs/src/examples/Axis/multiple-axis-same-placement-bottom.svelte @@ -0,0 +1,24 @@ + + + + + 'Q' + (d.getMonth() / 3 + 1)} + rule + /> + + + diff --git a/docs/src/examples/Axis/multiple-axis-same-placement-right.svelte b/docs/src/examples/Axis/multiple-axis-same-placement-right.svelte new file mode 100644 index 000000000..c5b763cb4 --- /dev/null +++ b/docs/src/examples/Axis/multiple-axis-same-placement-right.svelte @@ -0,0 +1,28 @@ + + + + {#snippet children({ context })} + + + x * (9 / 5) + 32)} + placement="right" + rule + x={50} + labelProps={{ dx: -50 }} + /> + + {/snippet} + diff --git a/docs/src/examples/Axis/override-axis-ticks-scale.svelte b/docs/src/examples/Axis/override-axis-ticks-scale.svelte new file mode 100644 index 000000000..1a5b074e2 --- /dev/null +++ b/docs/src/examples/Axis/override-axis-ticks-scale.svelte @@ -0,0 +1,18 @@ + + + + + scaleTime(scale.domain(), scale.range()).ticks(scale.range()[1] / 80)} + /> + + diff --git a/docs/src/examples/Axis/placement-bottom-left-rule.svelte b/docs/src/examples/Axis/placement-bottom-left-rule.svelte new file mode 100644 index 000000000..c0ea9919f --- /dev/null +++ b/docs/src/examples/Axis/placement-bottom-left-rule.svelte @@ -0,0 +1,20 @@ + + + + + + + + diff --git a/docs/src/examples/Axis/placement-bottom-left.svelte b/docs/src/examples/Axis/placement-bottom-left.svelte new file mode 100644 index 000000000..375262e86 --- /dev/null +++ b/docs/src/examples/Axis/placement-bottom-left.svelte @@ -0,0 +1,20 @@ + + + + + + + + diff --git a/docs/src/examples/Axis/placement-top-right-rule.svelte b/docs/src/examples/Axis/placement-top-right-rule.svelte new file mode 100644 index 000000000..4ac357818 --- /dev/null +++ b/docs/src/examples/Axis/placement-top-right-rule.svelte @@ -0,0 +1,20 @@ + + + + + + + + diff --git a/docs/src/examples/Axis/placement-top-right.svelte b/docs/src/examples/Axis/placement-top-right.svelte new file mode 100644 index 000000000..828c21640 --- /dev/null +++ b/docs/src/examples/Axis/placement-top-right.svelte @@ -0,0 +1,20 @@ + + + + + + + + diff --git a/docs/src/examples/Axis/radial-grid.svelte b/docs/src/examples/Axis/radial-grid.svelte new file mode 100644 index 000000000..69ead96d2 --- /dev/null +++ b/docs/src/examples/Axis/radial-grid.svelte @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/docs/src/examples/Axis/radial-rule.svelte b/docs/src/examples/Axis/radial-rule.svelte new file mode 100644 index 000000000..b933fe018 --- /dev/null +++ b/docs/src/examples/Axis/radial-rule.svelte @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/docs/src/examples/Axis/remove-tick-marks.svelte b/docs/src/examples/Axis/remove-tick-marks.svelte new file mode 100644 index 000000000..026506bac --- /dev/null +++ b/docs/src/examples/Axis/remove-tick-marks.svelte @@ -0,0 +1,13 @@ + + + + + + + diff --git a/docs/src/examples/Axis/rotate-labels.svelte b/docs/src/examples/Axis/rotate-labels.svelte new file mode 100644 index 000000000..9f24db0fa --- /dev/null +++ b/docs/src/examples/Axis/rotate-labels.svelte @@ -0,0 +1,20 @@ + + + + + + + diff --git a/docs/src/examples/Axis/tick-count.svelte b/docs/src/examples/Axis/tick-count.svelte new file mode 100644 index 000000000..d11f2a9be --- /dev/null +++ b/docs/src/examples/Axis/tick-count.svelte @@ -0,0 +1,9 @@ + + + + + + + diff --git a/docs/src/examples/Axis/tick-label-styling.svelte b/docs/src/examples/Axis/tick-label-styling.svelte new file mode 100644 index 000000000..754902201 --- /dev/null +++ b/docs/src/examples/Axis/tick-label-styling.svelte @@ -0,0 +1,21 @@ + + + + + + + diff --git a/docs/src/examples/Axis/tick-spacing.svelte b/docs/src/examples/Axis/tick-spacing.svelte new file mode 100644 index 000000000..a8d40dcb5 --- /dev/null +++ b/docs/src/examples/Axis/tick-spacing.svelte @@ -0,0 +1,9 @@ + + + + + + + diff --git a/docs/src/examples/Axis/time-scale-auto-format-filtering.svelte b/docs/src/examples/Axis/time-scale-auto-format-filtering.svelte new file mode 100644 index 000000000..ac53caf92 --- /dev/null +++ b/docs/src/examples/Axis/time-scale-auto-format-filtering.svelte @@ -0,0 +1,131 @@ + + + + +
+ {#each examples as example} +
+
{example.label}
+
+ + + + + +
+
+ {/each} +
diff --git a/docs/src/examples/Axis/time-scale-auto-multiline.svelte b/docs/src/examples/Axis/time-scale-auto-multiline.svelte new file mode 100644 index 000000000..5a9cc379f --- /dev/null +++ b/docs/src/examples/Axis/time-scale-auto-multiline.svelte @@ -0,0 +1,132 @@ + + + + +
+ {#each examples as example} +
+
{example.label}
+
+ + + + + + +
+
+ {/each} +
diff --git a/docs/src/examples/Axis/time-scale-auto.svelte b/docs/src/examples/Axis/time-scale-auto.svelte new file mode 100644 index 000000000..041697cc3 --- /dev/null +++ b/docs/src/examples/Axis/time-scale-auto.svelte @@ -0,0 +1,131 @@ + + + + +
+ {#each examples as example} +
+
{example.label}
+
+ + + + + +
+
+ {/each} +
diff --git a/docs/src/examples/Axis/time-scale-brush-multiline.svelte b/docs/src/examples/Axis/time-scale-brush-multiline.svelte new file mode 100644 index 000000000..4c32983f1 --- /dev/null +++ b/docs/src/examples/Axis/time-scale-brush-multiline.svelte @@ -0,0 +1,59 @@ + + + + + { + xDomain = e.xDomain; + } + }} + height={200} +> + + + + + + + { + xDomain = e.xDomain; + } + }} + height={80} +> + + + + diff --git a/docs/src/examples/Axis/time-scale-brush.svelte b/docs/src/examples/Axis/time-scale-brush.svelte new file mode 100644 index 000000000..9649eaf31 --- /dev/null +++ b/docs/src/examples/Axis/time-scale-brush.svelte @@ -0,0 +1,59 @@ + + + + + { + xDomain = e.xDomain; + } + }} + height={200} +> + + + + + + + { + xDomain = e.xDomain; + } + }} + height={80} +> + + + + diff --git a/docs/src/examples/Axis/time-scale-explicit-multiline.svelte b/docs/src/examples/Axis/time-scale-explicit-multiline.svelte new file mode 100644 index 000000000..a90ce6684 --- /dev/null +++ b/docs/src/examples/Axis/time-scale-explicit-multiline.svelte @@ -0,0 +1,124 @@ + + +
+ {#each examples as example} +
+
{example.label}
+
+ + + + + +
+
+ {/each} +
diff --git a/docs/src/examples/Axis/time-scale-explicit.svelte b/docs/src/examples/Axis/time-scale-explicit.svelte new file mode 100644 index 000000000..9c69fb09d --- /dev/null +++ b/docs/src/examples/Axis/time-scale-explicit.svelte @@ -0,0 +1,118 @@ + + +
+ {#each examples as example} +
+
{example.label}
+
+ + + + + +
+
+ {/each} +
diff --git a/docs/src/examples/BarChart/basic.svelte b/docs/src/examples/BarChart/basic.svelte new file mode 100644 index 000000000..847fb5c7e --- /dev/null +++ b/docs/src/examples/BarChart/basic.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/BarChart/tooltip-bar-highlight.svelte b/docs/src/examples/BarChart/tooltip-bar-highlight.svelte new file mode 100644 index 000000000..f7a311b47 --- /dev/null +++ b/docs/src/examples/BarChart/tooltip-bar-highlight.svelte @@ -0,0 +1,37 @@ + + + + {#snippet children({ context })} + + + + + + + + {#snippet children({ data })} + + + + + {/snippet} + + {/snippet} + \ No newline at end of file diff --git a/docs/src/examples/Frame/basic.svelte b/docs/src/examples/Frame/basic.svelte new file mode 100644 index 000000000..5e26452de --- /dev/null +++ b/docs/src/examples/Frame/basic.svelte @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/docs/src/examples/Frame/border.svelte b/docs/src/examples/Frame/border.svelte new file mode 100644 index 000000000..e160a852c --- /dev/null +++ b/docs/src/examples/Frame/border.svelte @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/docs/src/examples/Frame/full.svelte b/docs/src/examples/Frame/full.svelte new file mode 100644 index 000000000..ed0938090 --- /dev/null +++ b/docs/src/examples/Frame/full.svelte @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/docs/src/examples/Frame/gradient.svelte b/docs/src/examples/Frame/gradient.svelte new file mode 100644 index 000000000..feca507af --- /dev/null +++ b/docs/src/examples/Frame/gradient.svelte @@ -0,0 +1,20 @@ + + + + + + {#snippet children({ gradient })} + + {/snippet} + + + + + diff --git a/docs/src/examples/Grid/band-scale-between.svelte b/docs/src/examples/Grid/band-scale-between.svelte new file mode 100644 index 000000000..c5ae459e1 --- /dev/null +++ b/docs/src/examples/Grid/band-scale-between.svelte @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/docs/src/examples/Grid/band-scale-default.svelte b/docs/src/examples/Grid/band-scale-default.svelte new file mode 100644 index 000000000..e7f1a6e3d --- /dev/null +++ b/docs/src/examples/Grid/band-scale-default.svelte @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/docs/src/examples/Grid/basic.svelte b/docs/src/examples/Grid/basic.svelte new file mode 100644 index 000000000..ad5742c63 --- /dev/null +++ b/docs/src/examples/Grid/basic.svelte @@ -0,0 +1,9 @@ + + + + + + + diff --git a/docs/src/examples/Grid/dashed-lines.svelte b/docs/src/examples/Grid/dashed-lines.svelte new file mode 100644 index 000000000..925b2a64d --- /dev/null +++ b/docs/src/examples/Grid/dashed-lines.svelte @@ -0,0 +1,9 @@ + + + + + + + diff --git a/docs/src/examples/Grid/explicit-ticks.svelte b/docs/src/examples/Grid/explicit-ticks.svelte new file mode 100644 index 000000000..e587799f1 --- /dev/null +++ b/docs/src/examples/Grid/explicit-ticks.svelte @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/docs/src/examples/Grid/inject-tick-value.svelte b/docs/src/examples/Grid/inject-tick-value.svelte new file mode 100644 index 000000000..c7b1d83b2 --- /dev/null +++ b/docs/src/examples/Grid/inject-tick-value.svelte @@ -0,0 +1,10 @@ + + + + + [45, ...(scale.ticks?.() ?? [])]} /> + [45, ...(scale.ticks?.() ?? [])]} /> + + diff --git a/docs/src/examples/Grid/integer-only.svelte b/docs/src/examples/Grid/integer-only.svelte new file mode 100644 index 000000000..286f56c27 --- /dev/null +++ b/docs/src/examples/Grid/integer-only.svelte @@ -0,0 +1,15 @@ + + + + + scale.ticks?.().filter(Number.isInteger)} /> + scale.ticks?.().filter(Number.isInteger)} + format="integer" + /> + + diff --git a/docs/src/examples/Grid/padding.svelte b/docs/src/examples/Grid/padding.svelte new file mode 100644 index 000000000..0f6650ef3 --- /dev/null +++ b/docs/src/examples/Grid/padding.svelte @@ -0,0 +1,14 @@ + + + + + + + diff --git a/docs/src/examples/Grid/radial-linear.svelte b/docs/src/examples/Grid/radial-linear.svelte new file mode 100644 index 000000000..ce9fc6b7d --- /dev/null +++ b/docs/src/examples/Grid/radial-linear.svelte @@ -0,0 +1,9 @@ + + + + + scale.ticks?.().splice(1)} y radialY="linear" /> + + diff --git a/docs/src/examples/Grid/radial.svelte b/docs/src/examples/Grid/radial.svelte new file mode 100644 index 000000000..46aac2d3d --- /dev/null +++ b/docs/src/examples/Grid/radial.svelte @@ -0,0 +1,9 @@ + + + + + scale.ticks?.().splice(1)} y /> + + diff --git a/docs/src/examples/Grid/tick-count-null.svelte b/docs/src/examples/Grid/tick-count-null.svelte new file mode 100644 index 000000000..1b7d7be15 --- /dev/null +++ b/docs/src/examples/Grid/tick-count-null.svelte @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/docs/src/examples/Grid/tick-count-responsive.svelte b/docs/src/examples/Grid/tick-count-responsive.svelte new file mode 100644 index 000000000..5a22438f4 --- /dev/null +++ b/docs/src/examples/Grid/tick-count-responsive.svelte @@ -0,0 +1,19 @@ + + + + + diff --git a/docs/src/examples/Grid/tick-count.svelte b/docs/src/examples/Grid/tick-count.svelte new file mode 100644 index 000000000..4492c8d3e --- /dev/null +++ b/docs/src/examples/Grid/tick-count.svelte @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/docs/src/examples/Grid/x-only.svelte b/docs/src/examples/Grid/x-only.svelte new file mode 100644 index 000000000..5be6e83a5 --- /dev/null +++ b/docs/src/examples/Grid/x-only.svelte @@ -0,0 +1,9 @@ + + + + + + + diff --git a/docs/src/examples/Grid/y-only.svelte b/docs/src/examples/Grid/y-only.svelte new file mode 100644 index 000000000..61e0f6e42 --- /dev/null +++ b/docs/src/examples/Grid/y-only.svelte @@ -0,0 +1,9 @@ + + + + + + + diff --git a/docs/src/examples/Legend/chart-integration.svelte b/docs/src/examples/Legend/chart-integration.svelte new file mode 100644 index 000000000..11f503e2b --- /dev/null +++ b/docs/src/examples/Legend/chart-integration.svelte @@ -0,0 +1,14 @@ + + + + + diff --git a/docs/src/examples/Legend/chart-placement.svelte b/docs/src/examples/Legend/chart-placement.svelte new file mode 100644 index 000000000..3b8cff14b --- /dev/null +++ b/docs/src/examples/Legend/chart-placement.svelte @@ -0,0 +1,22 @@ + + + + + + + + + + + + + diff --git a/docs/src/examples/Legend/children-override.svelte b/docs/src/examples/Legend/children-override.svelte new file mode 100644 index 000000000..01381e365 --- /dev/null +++ b/docs/src/examples/Legend/children-override.svelte @@ -0,0 +1,24 @@ + + + + {#snippet children({ scale, values })} +
+ {#each values as value} +
+
+
{value}
+
+ {/each} +
+ {/snippet} +
diff --git a/docs/src/examples/Legend/click-handler.svelte b/docs/src/examples/Legend/click-handler.svelte new file mode 100644 index 000000000..f02a3e405 --- /dev/null +++ b/docs/src/examples/Legend/click-handler.svelte @@ -0,0 +1,15 @@ + + + console.log(d)} +/> diff --git a/docs/src/examples/Legend/diverging-sqrt.svelte b/docs/src/examples/Legend/diverging-sqrt.svelte new file mode 100644 index 000000000..86e45fc1e --- /dev/null +++ b/docs/src/examples/Legend/diverging-sqrt.svelte @@ -0,0 +1,19 @@ + + +
+ + +
diff --git a/docs/src/examples/Legend/diverging.svelte b/docs/src/examples/Legend/diverging.svelte new file mode 100644 index 000000000..980ffa049 --- /dev/null +++ b/docs/src/examples/Legend/diverging.svelte @@ -0,0 +1,19 @@ + + +
+ + +
diff --git a/docs/src/examples/Legend/ordinal.svelte b/docs/src/examples/Legend/ordinal.svelte new file mode 100644 index 000000000..aba9704fd --- /dev/null +++ b/docs/src/examples/Legend/ordinal.svelte @@ -0,0 +1,24 @@ + + +
+ + +
diff --git a/docs/src/examples/Legend/quantile.svelte b/docs/src/examples/Legend/quantile.svelte new file mode 100644 index 000000000..16286141a --- /dev/null +++ b/docs/src/examples/Legend/quantile.svelte @@ -0,0 +1,24 @@ + + +
+ + + +
diff --git a/docs/src/examples/Legend/quantize.svelte b/docs/src/examples/Legend/quantize.svelte new file mode 100644 index 000000000..11ee60aec --- /dev/null +++ b/docs/src/examples/Legend/quantize.svelte @@ -0,0 +1,15 @@ + + +
+ + + +
diff --git a/docs/src/examples/Legend/responsive-swatches.svelte b/docs/src/examples/Legend/responsive-swatches.svelte new file mode 100644 index 000000000..5051addef --- /dev/null +++ b/docs/src/examples/Legend/responsive-swatches.svelte @@ -0,0 +1,19 @@ + + + diff --git a/docs/src/examples/Legend/sequential-log.svelte b/docs/src/examples/Legend/sequential-log.svelte new file mode 100644 index 000000000..0326b82a0 --- /dev/null +++ b/docs/src/examples/Legend/sequential-log.svelte @@ -0,0 +1,20 @@ + + +
+ + + +
diff --git a/docs/src/examples/Legend/sequential-quantile.svelte b/docs/src/examples/Legend/sequential-quantile.svelte new file mode 100644 index 000000000..9be4ee882 --- /dev/null +++ b/docs/src/examples/Legend/sequential-quantile.svelte @@ -0,0 +1,22 @@ + + +
+ + +
diff --git a/docs/src/examples/Legend/sequential-sqrt.svelte b/docs/src/examples/Legend/sequential-sqrt.svelte new file mode 100644 index 000000000..f21c9cc79 --- /dev/null +++ b/docs/src/examples/Legend/sequential-sqrt.svelte @@ -0,0 +1,14 @@ + + +
+ + +
diff --git a/docs/src/examples/Legend/sequential.svelte b/docs/src/examples/Legend/sequential.svelte new file mode 100644 index 000000000..81d07902b --- /dev/null +++ b/docs/src/examples/Legend/sequential.svelte @@ -0,0 +1,15 @@ + + +
+ + + +
diff --git a/docs/src/examples/Legend/sqrt.svelte b/docs/src/examples/Legend/sqrt.svelte new file mode 100644 index 000000000..585c19ebe --- /dev/null +++ b/docs/src/examples/Legend/sqrt.svelte @@ -0,0 +1,13 @@ + + +
+ + +
diff --git a/docs/src/examples/Legend/square-swatch.svelte b/docs/src/examples/Legend/square-swatch.svelte new file mode 100644 index 000000000..49f332268 --- /dev/null +++ b/docs/src/examples/Legend/square-swatch.svelte @@ -0,0 +1,17 @@ + + +
+ +
diff --git a/docs/src/examples/Legend/styling.svelte b/docs/src/examples/Legend/styling.svelte new file mode 100644 index 000000000..909a4bdd6 --- /dev/null +++ b/docs/src/examples/Legend/styling.svelte @@ -0,0 +1,19 @@ + + + value + '°'} + classes={{ + root: 'border px-3 py-2 bg-surface-200 rounded-sm', + title: 'text-lg text-center', + label: 'fill-surface-content/50', + tick: 'stroke-surface-100' + }} +/> diff --git a/docs/src/examples/Legend/threshold.svelte b/docs/src/examples/Legend/threshold.svelte new file mode 100644 index 000000000..eb5a11b1b --- /dev/null +++ b/docs/src/examples/Legend/threshold.svelte @@ -0,0 +1,19 @@ + + +
+ + + +
diff --git a/docs/src/examples/Legend/vertical-orientation.svelte b/docs/src/examples/Legend/vertical-orientation.svelte new file mode 100644 index 000000000..b37ef804e --- /dev/null +++ b/docs/src/examples/Legend/vertical-orientation.svelte @@ -0,0 +1,17 @@ + + +
+ +
diff --git a/docs/src/examples/LineChart/axis-labels-inside.svelte b/docs/src/examples/LineChart/axis-labels-inside.svelte new file mode 100644 index 000000000..690bb538d --- /dev/null +++ b/docs/src/examples/LineChart/axis-labels-inside.svelte @@ -0,0 +1,28 @@ + + + diff --git a/docs/src/examples/LineChart/basic.svelte b/docs/src/examples/LineChart/basic.svelte new file mode 100644 index 000000000..19e613f0f --- /dev/null +++ b/docs/src/examples/LineChart/basic.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/LineChart/brush.svelte b/docs/src/examples/LineChart/brush.svelte new file mode 100644 index 000000000..71ef7eae2 --- /dev/null +++ b/docs/src/examples/LineChart/brush.svelte @@ -0,0 +1,19 @@ + + + diff --git a/docs/src/examples/LineChart/curve.svelte b/docs/src/examples/LineChart/curve.svelte new file mode 100644 index 000000000..1d836b1a9 --- /dev/null +++ b/docs/src/examples/LineChart/curve.svelte @@ -0,0 +1,10 @@ + + + diff --git a/docs/src/examples/LineChart/custom-tooltip.svelte b/docs/src/examples/LineChart/custom-tooltip.svelte new file mode 100644 index 000000000..cae0ee067 --- /dev/null +++ b/docs/src/examples/LineChart/custom-tooltip.svelte @@ -0,0 +1,38 @@ + + + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {context.y(data)} + {/snippet} + + + + {#snippet children({ data })} + {format(context.x(data), 'day')} + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/LineChart/custom.svelte b/docs/src/examples/LineChart/custom.svelte new file mode 100644 index 000000000..d6f6b38cf --- /dev/null +++ b/docs/src/examples/LineChart/custom.svelte @@ -0,0 +1,28 @@ + + + + {#snippet children({ context })} + + + + + + + + + {#snippet children({ data })} + {format(context.x(data), 'day')} + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/LineChart/default-series-label.svelte b/docs/src/examples/LineChart/default-series-label.svelte new file mode 100644 index 000000000..969fe2792 --- /dev/null +++ b/docs/src/examples/LineChart/default-series-label.svelte @@ -0,0 +1,14 @@ + + + diff --git a/docs/src/examples/LineChart/draw.svelte b/docs/src/examples/LineChart/draw.svelte new file mode 100644 index 000000000..ae583c566 --- /dev/null +++ b/docs/src/examples/LineChart/draw.svelte @@ -0,0 +1,21 @@ + + + + + + +{#if show} +
+ +
+{/if} diff --git a/docs/src/examples/LineChart/dynamic-data.svelte b/docs/src/examples/LineChart/dynamic-data.svelte new file mode 100644 index 000000000..623995623 --- /dev/null +++ b/docs/src/examples/LineChart/dynamic-data.svelte @@ -0,0 +1,41 @@ + + + +
{ + const x = e.clientX; + const y = e.clientY; + data = data.slice(-200).concat(Math.atan2(x, y)); + }} +> + ({ x: i, y: d }))} + x="x" + y="y" + yBaseline={undefined} + tooltip={false} + props={{ + yAxis: { motion: 'tween' }, + grid: { motion: 'tween' } + // spline: { + // draw: { + // // easing function to only draw the last data point + // easing: (t) => { + // const totalDataPoints = data.length; + // const percentage = (totalDataPoints - 10) / totalDataPoints; + // const minT = 1 * percentage; + // return minT + t * (1 - minT); + // }, + // duration: 300, + // }, + // }, + }} + height={300} + /> +
diff --git a/docs/src/examples/LineChart/gradient-encoding.svelte b/docs/src/examples/LineChart/gradient-encoding.svelte new file mode 100644 index 000000000..600962165 --- /dev/null +++ b/docs/src/examples/LineChart/gradient-encoding.svelte @@ -0,0 +1,43 @@ + + + + {#snippet marks()} + + {#snippet children({ gradient })} + + {/snippet} + + {/snippet} + + {#snippet highlight({ context })} + {#if context.tooltip.data} + + {/if} + {/snippet} + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {@const value = context.y(data)} + {format(context.x(data))} + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/LineChart/gradient-threshold.svelte b/docs/src/examples/LineChart/gradient-threshold.svelte new file mode 100644 index 000000000..e40b23707 --- /dev/null +++ b/docs/src/examples/LineChart/gradient-threshold.svelte @@ -0,0 +1,54 @@ + + + + {#snippet marks({ context })} + {@const thresholdOffset = + context.yScale(50) / (context.height + context.padding.top + context.padding.bottom)} + + {#snippet children({ gradient })} + + {/snippet} + + {/snippet} + + {#snippet highlight({ context })} + {#if context.tooltip.data} + 50 ? 'var(--color-danger)' : 'var(--color-info)' + }} + /> + {/if} + {/snippet} + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {@const value = context.y(data)} + {format(context.x(data))} + + 50 ? 'var(--color-danger)' : 'var(--color-info)'} + /> + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/LineChart/labels-with-points.svelte b/docs/src/examples/LineChart/labels-with-points.svelte new file mode 100644 index 000000000..7d233a204 --- /dev/null +++ b/docs/src/examples/LineChart/labels-with-points.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/LineChart/labels-within-points.svelte b/docs/src/examples/LineChart/labels-within-points.svelte new file mode 100644 index 000000000..9d4496438 --- /dev/null +++ b/docs/src/examples/LineChart/labels-within-points.svelte @@ -0,0 +1,21 @@ + + + diff --git a/docs/src/examples/LineChart/labels.svelte b/docs/src/examples/LineChart/labels.svelte new file mode 100644 index 000000000..06ee42b7e --- /dev/null +++ b/docs/src/examples/LineChart/labels.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/LineChart/large-radial-series.svelte b/docs/src/examples/LineChart/large-radial-series.svelte new file mode 100644 index 000000000..a2743daf6 --- /dev/null +++ b/docs/src/examples/LineChart/large-radial-series.svelte @@ -0,0 +1,39 @@ + + + [height / 5, height / 2]} + yNice={false} + yPadding={[0, 20]} + radial + rule={{ y: '$top', class: 'stroke-surface-content/20' }} + props={{ + spline: { class: 'stroke' }, + xAxis: { format: 'month', tickMarks: false }, + yAxis: { ticks: 4, format: (v) => v + '° F' }, + highlight: { points: false }, + tooltip: { + context: { + mode: 'manual' + } + } + }} + series={flatGroup(data, (d) => d.year).map(([year, data]) => { + return { + key: year.toString(), + data, + color: year >= 2023 ? 'var(--color-primary)' : 'var(--color-surface-content)', + props: { opacity: year === 2024 ? 1 : year === 2023 ? 0.5 : 0.1 } + }; + })} + height={500} +/> diff --git a/docs/src/examples/LineChart/large-series.svelte b/docs/src/examples/LineChart/large-series.svelte new file mode 100644 index 000000000..7a205531e --- /dev/null +++ b/docs/src/examples/LineChart/large-series.svelte @@ -0,0 +1,34 @@ + + + v + '° F' }, + highlight: { points: false }, + tooltip: { + context: { + mode: 'manual' + } + } + }} + series={flatGroup(data, (d) => d.year).map(([year, data]) => { + return { + key: year.toString(), + data, + color: year >= 2023 ? 'var(--color-primary)' : 'var(--color-surface-content)', + props: { opacity: year === 2024 ? 1 : year === 2023 ? 0.5 : 0.1 } + }; + })} + height={500} +/> diff --git a/docs/src/examples/LineChart/legend.svelte b/docs/src/examples/LineChart/legend.svelte new file mode 100644 index 000000000..d94bf2f03 --- /dev/null +++ b/docs/src/examples/LineChart/legend.svelte @@ -0,0 +1,31 @@ + + + diff --git a/docs/src/examples/LineChart/line-annotation.svelte b/docs/src/examples/LineChart/line-annotation.svelte new file mode 100644 index 000000000..380b8fa59 --- /dev/null +++ b/docs/src/examples/LineChart/line-annotation.svelte @@ -0,0 +1,27 @@ + + + diff --git a/docs/src/examples/LineChart/null-dashed-gaps.svelte b/docs/src/examples/LineChart/null-dashed-gaps.svelte new file mode 100644 index 000000000..18a25010d --- /dev/null +++ b/docs/src/examples/LineChart/null-dashed-gaps.svelte @@ -0,0 +1,25 @@ + + + + {#snippet belowMarks({ series })} + {#each series as s} + d.value !== null)} + y={s.value} + class="[stroke-dasharray:3,3]" + stroke={s.color} + /> + {/each} + {/snippet} + diff --git a/docs/src/examples/LineChart/null-gaps.svelte b/docs/src/examples/LineChart/null-gaps.svelte new file mode 100644 index 000000000..84a924c3b --- /dev/null +++ b/docs/src/examples/LineChart/null-gaps.svelte @@ -0,0 +1,14 @@ + + + diff --git a/docs/src/examples/LineChart/override-color.svelte b/docs/src/examples/LineChart/override-color.svelte new file mode 100644 index 000000000..0878dea29 --- /dev/null +++ b/docs/src/examples/LineChart/override-color.svelte @@ -0,0 +1,19 @@ + + + diff --git a/docs/src/examples/LineChart/point-annotations.svelte b/docs/src/examples/LineChart/point-annotations.svelte new file mode 100644 index 000000000..b3ad5bc1d --- /dev/null +++ b/docs/src/examples/LineChart/point-annotations.svelte @@ -0,0 +1,60 @@ + + + { + return { + type: 'point', + label: a.label, + details: a.details, + x: a.date, + r: 6, + props: { + circle: { class: 'fill-secondary' }, + label: { class: 'text-[10px] fill-secondary-content font-bold' } + } + }; + })} + height={300} +> + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {#if data.annotation} + +
+ {data.annotation.details} +
+ {:else} + + {format(context.x(data), 'day')} + + + + {/if} + {/snippet} +
+ {/snippet} +
diff --git a/docs/src/examples/LineChart/points.svelte b/docs/src/examples/LineChart/points.svelte new file mode 100644 index 000000000..7f73b6e97 --- /dev/null +++ b/docs/src/examples/LineChart/points.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/LineChart/radar-rounded.svelte b/docs/src/examples/LineChart/radar-rounded.svelte new file mode 100644 index 000000000..9db3334b2 --- /dev/null +++ b/docs/src/examples/LineChart/radar-rounded.svelte @@ -0,0 +1,47 @@ + + + '' + }, + grid: { + yTicks: [0, 5, 10] + }, + highlight: { + lines: false + }, + tooltip: { + context: { + mode: 'voronoi' + } + } + }} + height={300} +/> diff --git a/docs/src/examples/LineChart/radar-series.svelte b/docs/src/examples/LineChart/radar-series.svelte new file mode 100644 index 000000000..d4fdd0419 --- /dev/null +++ b/docs/src/examples/LineChart/radar-series.svelte @@ -0,0 +1,81 @@ + + + diff --git a/docs/src/examples/LineChart/radar.svelte b/docs/src/examples/LineChart/radar.svelte new file mode 100644 index 000000000..4cf013467 --- /dev/null +++ b/docs/src/examples/LineChart/radar.svelte @@ -0,0 +1,49 @@ + + + '' + }, + grid: { + yTicks: [0, 5, 10], + radialY: 'linear' + }, + highlight: { + lines: false + }, + tooltip: { + context: { + mode: 'voronoi' + } + } + }} + height={300} +/> diff --git a/docs/src/examples/LineChart/range-annotation.svelte b/docs/src/examples/LineChart/range-annotation.svelte new file mode 100644 index 000000000..4f2d9f546 --- /dev/null +++ b/docs/src/examples/LineChart/range-annotation.svelte @@ -0,0 +1,30 @@ + + + diff --git a/docs/src/examples/LineChart/series-brush.svelte b/docs/src/examples/LineChart/series-brush.svelte new file mode 100644 index 000000000..478d12298 --- /dev/null +++ b/docs/src/examples/LineChart/series-brush.svelte @@ -0,0 +1,35 @@ + + + { + console.log(e, detail); + alert(JSON.stringify(detail)); + }} + brush + height={300} +/> diff --git a/docs/src/examples/LineChart/series-custom-highlight-point.svelte b/docs/src/examples/LineChart/series-custom-highlight-point.svelte new file mode 100644 index 000000000..d2bd36a19 --- /dev/null +++ b/docs/src/examples/LineChart/series-custom-highlight-point.svelte @@ -0,0 +1,31 @@ + + + diff --git a/docs/src/examples/LineChart/series-individual-tooltip.svelte b/docs/src/examples/LineChart/series-individual-tooltip.svelte new file mode 100644 index 000000000..4e80d3477 --- /dev/null +++ b/docs/src/examples/LineChart/series-individual-tooltip.svelte @@ -0,0 +1,61 @@ + + + + {#snippet marks({ context, visibleSeries, highlightKey })} + {#each visibleSeries as s} + {@const active = + (context.tooltip.data == null || s.key === context.tooltip.data?.fruit) && + (highlightKey === null || s.key === highlightKey)} + + {/each} + {/snippet} + + {#snippet highlight({ series, context })} + {@const activeSeriesColor = series.find((s) => s.key === context.tooltip.data?.fruit)?.color} + + {/snippet} + + {#snippet tooltip({ context, series })} + {@const activeSeriesColor = series.find((s) => s.key === context.tooltip.data?.fruit)?.color} + + {#snippet children({ data })} + {format(context.x(data))} + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/LineChart/series-labels-hover.svelte b/docs/src/examples/LineChart/series-labels-hover.svelte new file mode 100644 index 000000000..0f453e2c7 --- /dev/null +++ b/docs/src/examples/LineChart/series-labels-hover.svelte @@ -0,0 +1,37 @@ + + + + {#snippet aboveMarks({ getLabelsProps, series, highlightKey })} + {#if highlightKey} + {@const activeSeriesIndex = series.findIndex((s) => s.key === highlightKey)} + + {/if} + {/snippet} + diff --git a/docs/src/examples/LineChart/series-point-annotations.svelte b/docs/src/examples/LineChart/series-point-annotations.svelte new file mode 100644 index 000000000..1cb6ed296 --- /dev/null +++ b/docs/src/examples/LineChart/series-point-annotations.svelte @@ -0,0 +1,60 @@ + + + { + const lastDataPoint = s.data?.[s.data.length - 1] ?? null; + return { + type: 'point', + seriesKey: s.key, + label: s.key, + labelPlacement: 'right', + labelXOffset: 4, + x: lastDataPoint.date, + y: lastDataPoint.value, + props: { + circle: { fill: s.color }, + label: { fill: s.color } + } + }; + })} + padding={{ ...defaultChartPadding(), right: 60 }} + height={300} +/> diff --git a/docs/src/examples/LineChart/series-point-click.svelte b/docs/src/examples/LineChart/series-point-click.svelte new file mode 100644 index 000000000..a744d934d --- /dev/null +++ b/docs/src/examples/LineChart/series-point-click.svelte @@ -0,0 +1,34 @@ + + + { + console.log(e, detail); + alert(JSON.stringify(detail)); + }} + height={300} +/> diff --git a/docs/src/examples/LineChart/series-separate-data-diff-length.svelte b/docs/src/examples/LineChart/series-separate-data-diff-length.svelte new file mode 100644 index 000000000..f17fd8998 --- /dev/null +++ b/docs/src/examples/LineChart/series-separate-data-diff-length.svelte @@ -0,0 +1,41 @@ + + + Math.random() > 0.3), + color: 'var(--color-danger)' + }, + { + key: 'bananas', + data: dataByFruit.get('bananas')?.filter((d, i) => Math.random() > 0.3), + color: 'var(--color-success)' + }, + { + key: 'oranges', + data: dataByFruit.get('oranges')?.filter((d, i) => Math.random() > 0.3), + color: 'var(--color-warning)' + } + ]} + height={300} +/> diff --git a/docs/src/examples/LineChart/series-separate-data.svelte b/docs/src/examples/LineChart/series-separate-data.svelte new file mode 100644 index 000000000..5dc015873 --- /dev/null +++ b/docs/src/examples/LineChart/series-separate-data.svelte @@ -0,0 +1,41 @@ + + + diff --git a/docs/src/examples/LineChart/series-vertical.svelte b/docs/src/examples/LineChart/series-vertical.svelte new file mode 100644 index 000000000..9501ce4a3 --- /dev/null +++ b/docs/src/examples/LineChart/series-vertical.svelte @@ -0,0 +1,32 @@ + + + diff --git a/docs/src/examples/LineChart/series-with-nulls.svelte b/docs/src/examples/LineChart/series-with-nulls.svelte new file mode 100644 index 000000000..568b3b732 --- /dev/null +++ b/docs/src/examples/LineChart/series-with-nulls.svelte @@ -0,0 +1,47 @@ + + + + {#snippet belowMarks({ visibleSeries, highlightKey })} + {#each visibleSeries as s} + d[s.key] !== null)} + y={s.key} + stroke={s.color} + class={cls( + '[stroke-dasharray:3,3] transition-opacity', + highlightKey && highlightKey !== s.key && 'opacity-10' + )} + /> + {/each} + {/snippet} + diff --git a/docs/src/examples/LineChart/series.svelte b/docs/src/examples/LineChart/series.svelte new file mode 100644 index 000000000..97d4074e1 --- /dev/null +++ b/docs/src/examples/LineChart/series.svelte @@ -0,0 +1,30 @@ + + + diff --git a/docs/src/examples/LineChart/single-axis-x.svelte b/docs/src/examples/LineChart/single-axis-x.svelte new file mode 100644 index 000000000..e2749f8ec --- /dev/null +++ b/docs/src/examples/LineChart/single-axis-x.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/LineChart/single-axis-y.svelte b/docs/src/examples/LineChart/single-axis-y.svelte new file mode 100644 index 000000000..5828d4a9b --- /dev/null +++ b/docs/src/examples/LineChart/single-axis-y.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/LineChart/sparkline.svelte b/docs/src/examples/LineChart/sparkline.svelte new file mode 100644 index 000000000..35c8de0b5 --- /dev/null +++ b/docs/src/examples/LineChart/sparkline.svelte @@ -0,0 +1,20 @@ + + + diff --git a/docs/src/examples/LineChart/tooltip-click.svelte b/docs/src/examples/LineChart/tooltip-click.svelte new file mode 100644 index 000000000..e987fa762 --- /dev/null +++ b/docs/src/examples/LineChart/tooltip-click.svelte @@ -0,0 +1,18 @@ + + + { + console.log(e, detail); + alert(JSON.stringify(detail)); + }} +/> diff --git a/docs/src/examples/LineChart/vertical.svelte b/docs/src/examples/LineChart/vertical.svelte new file mode 100644 index 000000000..b962ea18d --- /dev/null +++ b/docs/src/examples/LineChart/vertical.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/PieChart/arc-props.svelte b/docs/src/examples/PieChart/arc-props.svelte new file mode 100644 index 000000000..04fa03119 --- /dev/null +++ b/docs/src/examples/PieChart/arc-props.svelte @@ -0,0 +1,15 @@ + + + diff --git a/docs/src/examples/PieChart/arc.svelte b/docs/src/examples/PieChart/arc.svelte new file mode 100644 index 000000000..752fa4911 --- /dev/null +++ b/docs/src/examples/PieChart/arc.svelte @@ -0,0 +1,20 @@ + + + diff --git a/docs/src/examples/PieChart/basic.svelte b/docs/src/examples/PieChart/basic.svelte new file mode 100644 index 000000000..3f9a0cac4 --- /dev/null +++ b/docs/src/examples/PieChart/basic.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/PieChart/colors-data-prop.svelte b/docs/src/examples/PieChart/colors-data-prop.svelte new file mode 100644 index 000000000..e20f59a89 --- /dev/null +++ b/docs/src/examples/PieChart/colors-data-prop.svelte @@ -0,0 +1,21 @@ + + + diff --git a/docs/src/examples/PieChart/colors-interpolator.svelte b/docs/src/examples/PieChart/colors-interpolator.svelte new file mode 100644 index 000000000..561758def --- /dev/null +++ b/docs/src/examples/PieChart/colors-interpolator.svelte @@ -0,0 +1,11 @@ + + + diff --git a/docs/src/examples/PieChart/colors-scheme.svelte b/docs/src/examples/PieChart/colors-scheme.svelte new file mode 100644 index 000000000..a9394687a --- /dev/null +++ b/docs/src/examples/PieChart/colors-scheme.svelte @@ -0,0 +1,10 @@ + + + diff --git a/docs/src/examples/PieChart/colors-variables.svelte b/docs/src/examples/PieChart/colors-variables.svelte new file mode 100644 index 000000000..123bc4bb9 --- /dev/null +++ b/docs/src/examples/PieChart/colors-variables.svelte @@ -0,0 +1,20 @@ + + + diff --git a/docs/src/examples/PieChart/donut-with-text.svelte b/docs/src/examples/PieChart/donut-with-text.svelte new file mode 100644 index 000000000..0ec8eef3b --- /dev/null +++ b/docs/src/examples/PieChart/donut-with-text.svelte @@ -0,0 +1,36 @@ + + + + {#snippet aboveMarks()} + d.value))} + textAnchor="middle" + verticalAnchor="middle" + class="text-4xl" + dy={4} + /> + + {/snippet} + diff --git a/docs/src/examples/PieChart/donut.svelte b/docs/src/examples/PieChart/donut.svelte new file mode 100644 index 000000000..638658d08 --- /dev/null +++ b/docs/src/examples/PieChart/donut.svelte @@ -0,0 +1,17 @@ + + + diff --git a/docs/src/examples/PieChart/legend-custom-label.svelte b/docs/src/examples/PieChart/legend-custom-label.svelte new file mode 100644 index 000000000..6d4f11312 --- /dev/null +++ b/docs/src/examples/PieChart/legend-custom-label.svelte @@ -0,0 +1,27 @@ + + + { + switch (d.fruit) { + case 'apples': + return 'Apples 🍎'; + case 'bananas': + return 'Bananas 🍌'; + case 'cherries': + return 'Cherries 🍒'; + case 'grapes': + return 'Grapes 🍇'; + } + }} + height={300} + legend +/> diff --git a/docs/src/examples/PieChart/legend-placement.svelte b/docs/src/examples/PieChart/legend-placement.svelte new file mode 100644 index 000000000..b25a1534b --- /dev/null +++ b/docs/src/examples/PieChart/legend-placement.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/PieChart/legend-responsive.svelte b/docs/src/examples/PieChart/legend-responsive.svelte new file mode 100644 index 000000000..d2be01d03 --- /dev/null +++ b/docs/src/examples/PieChart/legend-responsive.svelte @@ -0,0 +1,23 @@ + + + diff --git a/docs/src/examples/PieChart/legend-with-padding.svelte b/docs/src/examples/PieChart/legend-with-padding.svelte new file mode 100644 index 000000000..4922baba1 --- /dev/null +++ b/docs/src/examples/PieChart/legend-with-padding.svelte @@ -0,0 +1,16 @@ + + + diff --git a/docs/src/examples/PieChart/legend.svelte b/docs/src/examples/PieChart/legend.svelte new file mode 100644 index 000000000..b25a1534b --- /dev/null +++ b/docs/src/examples/PieChart/legend.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/PieChart/motion-spring.svelte b/docs/src/examples/PieChart/motion-spring.svelte new file mode 100644 index 000000000..ccde7a8a1 --- /dev/null +++ b/docs/src/examples/PieChart/motion-spring.svelte @@ -0,0 +1,20 @@ + + + + + + +
+ {#if show} + + {/if} +
diff --git a/docs/src/examples/PieChart/motion-tween.svelte b/docs/src/examples/PieChart/motion-tween.svelte new file mode 100644 index 000000000..c2838d627 --- /dev/null +++ b/docs/src/examples/PieChart/motion-tween.svelte @@ -0,0 +1,20 @@ + + + + + + +
+ {#if show} + + {/if} +
diff --git a/docs/src/examples/PieChart/offset-slice.svelte b/docs/src/examples/PieChart/offset-slice.svelte new file mode 100644 index 000000000..e619c9062 --- /dev/null +++ b/docs/src/examples/PieChart/offset-slice.svelte @@ -0,0 +1,13 @@ + + + + {#snippet arc({ index, props })} + + {/snippet} + diff --git a/docs/src/examples/PieChart/placement-custom.svelte b/docs/src/examples/PieChart/placement-custom.svelte new file mode 100644 index 000000000..e39b9dda1 --- /dev/null +++ b/docs/src/examples/PieChart/placement-custom.svelte @@ -0,0 +1,17 @@ + + + diff --git a/docs/src/examples/PieChart/placement-left.svelte b/docs/src/examples/PieChart/placement-left.svelte new file mode 100644 index 000000000..552eaa46f --- /dev/null +++ b/docs/src/examples/PieChart/placement-left.svelte @@ -0,0 +1,16 @@ + + + diff --git a/docs/src/examples/PieChart/placement-right.svelte b/docs/src/examples/PieChart/placement-right.svelte new file mode 100644 index 000000000..8aa5fbb02 --- /dev/null +++ b/docs/src/examples/PieChart/placement-right.svelte @@ -0,0 +1,16 @@ + + + diff --git a/docs/src/examples/PieChart/radius-fixed.svelte b/docs/src/examples/PieChart/radius-fixed.svelte new file mode 100644 index 000000000..053165616 --- /dev/null +++ b/docs/src/examples/PieChart/radius-fixed.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/PieChart/radius-offset.svelte b/docs/src/examples/PieChart/radius-offset.svelte new file mode 100644 index 000000000..ac3f2bd7c --- /dev/null +++ b/docs/src/examples/PieChart/radius-offset.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/PieChart/radius-percent.svelte b/docs/src/examples/PieChart/radius-percent.svelte new file mode 100644 index 000000000..e38820895 --- /dev/null +++ b/docs/src/examples/PieChart/radius-percent.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/PieChart/segments.svelte b/docs/src/examples/PieChart/segments.svelte new file mode 100644 index 000000000..d41ab0ad2 --- /dev/null +++ b/docs/src/examples/PieChart/segments.svelte @@ -0,0 +1,48 @@ + + + + {#snippet aboveMarks()} + + {/snippet} + + +
+ + +
diff --git a/docs/src/examples/PieChart/series-click.svelte b/docs/src/examples/PieChart/series-click.svelte new file mode 100644 index 000000000..1c8ea4839 --- /dev/null +++ b/docs/src/examples/PieChart/series-click.svelte @@ -0,0 +1,26 @@ + + + ({ + key: key.toString(), + data + }))} + outerRadius={-25} + innerRadius={-20} + cornerRadius={5} + padAngle={0.01} + height={300} + onArcClick={(e, detail) => { + console.log(e, detail); + alert(JSON.stringify(detail)); + }} +/> diff --git a/docs/src/examples/PieChart/series-props.svelte b/docs/src/examples/PieChart/series-props.svelte new file mode 100644 index 000000000..fbd21bf76 --- /dev/null +++ b/docs/src/examples/PieChart/series-props.svelte @@ -0,0 +1,18 @@ + + + diff --git a/docs/src/examples/PieChart/series.svelte b/docs/src/examples/PieChart/series.svelte new file mode 100644 index 000000000..b9f82ad60 --- /dev/null +++ b/docs/src/examples/PieChart/series.svelte @@ -0,0 +1,22 @@ + + + ({ + key: key.toString(), + data + }))} + outerRadius={-25} + innerRadius={-20} + cornerRadius={5} + padAngle={0.01} + height={300} +/> diff --git a/docs/src/examples/PieChart/tooltip-click.svelte b/docs/src/examples/PieChart/tooltip-click.svelte new file mode 100644 index 000000000..046704494 --- /dev/null +++ b/docs/src/examples/PieChart/tooltip-click.svelte @@ -0,0 +1,18 @@ + + + { + console.log(e, detail); + alert(JSON.stringify(detail)); + }} +/> diff --git a/docs/src/examples/Rule/annotation-x.svelte b/docs/src/examples/Rule/annotation-x.svelte new file mode 100644 index 000000000..d56ccae4c --- /dev/null +++ b/docs/src/examples/Rule/annotation-x.svelte @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/docs/src/examples/Rule/annotation-y.svelte b/docs/src/examples/Rule/annotation-y.svelte new file mode 100644 index 000000000..ba28c2cf2 --- /dev/null +++ b/docs/src/examples/Rule/annotation-y.svelte @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/docs/src/examples/Rule/baseline-top-right.svelte b/docs/src/examples/Rule/baseline-top-right.svelte new file mode 100644 index 000000000..a47f76aff --- /dev/null +++ b/docs/src/examples/Rule/baseline-top-right.svelte @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/docs/src/examples/Rule/baseline-x-negative.svelte b/docs/src/examples/Rule/baseline-x-negative.svelte new file mode 100644 index 000000000..13b179cb9 --- /dev/null +++ b/docs/src/examples/Rule/baseline-x-negative.svelte @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/docs/src/examples/Rule/baseline-x-y.svelte b/docs/src/examples/Rule/baseline-x-y.svelte new file mode 100644 index 000000000..48aaf8ca4 --- /dev/null +++ b/docs/src/examples/Rule/baseline-x-y.svelte @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/docs/src/examples/Rule/baseline-y-negative.svelte b/docs/src/examples/Rule/baseline-y-negative.svelte new file mode 100644 index 000000000..7edc5b13e --- /dev/null +++ b/docs/src/examples/Rule/baseline-y-negative.svelte @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/docs/src/examples/Rule/data-x-band.svelte b/docs/src/examples/Rule/data-x-band.svelte new file mode 100644 index 000000000..a2a67b450 --- /dev/null +++ b/docs/src/examples/Rule/data-x-band.svelte @@ -0,0 +1,52 @@ + + + + + + + + + diff --git a/docs/src/examples/Rule/data-x-date.svelte b/docs/src/examples/Rule/data-x-date.svelte new file mode 100644 index 000000000..dd32db21b --- /dev/null +++ b/docs/src/examples/Rule/data-x-date.svelte @@ -0,0 +1,22 @@ + + + + + + + + + diff --git a/docs/src/examples/Rule/data-x-range.svelte b/docs/src/examples/Rule/data-x-range.svelte new file mode 100644 index 000000000..61c2d2661 --- /dev/null +++ b/docs/src/examples/Rule/data-x-range.svelte @@ -0,0 +1,21 @@ + + + + + + + + + diff --git a/docs/src/examples/Rule/data-y-range.svelte b/docs/src/examples/Rule/data-y-range.svelte new file mode 100644 index 000000000..165a297f8 --- /dev/null +++ b/docs/src/examples/Rule/data-y-range.svelte @@ -0,0 +1,22 @@ + + + + + + + + + diff --git a/docs/src/examples/ScatterChart/basic.svelte b/docs/src/examples/ScatterChart/basic.svelte new file mode 100644 index 000000000..f47ba7b57 --- /dev/null +++ b/docs/src/examples/ScatterChart/basic.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/ScatterChart/brush.svelte b/docs/src/examples/ScatterChart/brush.svelte new file mode 100644 index 000000000..02dffb4e8 --- /dev/null +++ b/docs/src/examples/ScatterChart/brush.svelte @@ -0,0 +1,20 @@ + + + diff --git a/docs/src/examples/ScatterChart/custom-tooltip.svelte b/docs/src/examples/ScatterChart/custom-tooltip.svelte new file mode 100644 index 000000000..feb6970e1 --- /dev/null +++ b/docs/src/examples/ScatterChart/custom-tooltip.svelte @@ -0,0 +1,38 @@ + + + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {format(context.y(data), 'integer')} + {/snippet} + + + + {#snippet children({ data })} + {format(context.x(data), 'integer')} + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/ScatterChart/custom.svelte b/docs/src/examples/ScatterChart/custom.svelte new file mode 100644 index 000000000..37a7f6a0b --- /dev/null +++ b/docs/src/examples/ScatterChart/custom.svelte @@ -0,0 +1,28 @@ + + + + {#snippet children({ context })} + + + + + + + + + {#snippet children({ data })} + {format(context.x(data), 'integer')} + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/ScatterChart/date-series-color-scale.svelte b/docs/src/examples/ScatterChart/date-series-color-scale.svelte new file mode 100644 index 000000000..20ef3f8b6 --- /dev/null +++ b/docs/src/examples/ScatterChart/date-series-color-scale.svelte @@ -0,0 +1,20 @@ + + + diff --git a/docs/src/examples/ScatterChart/domain-baseline.svelte b/docs/src/examples/ScatterChart/domain-baseline.svelte new file mode 100644 index 000000000..a101111cd --- /dev/null +++ b/docs/src/examples/ScatterChart/domain-baseline.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/ScatterChart/domain-nice.svelte b/docs/src/examples/ScatterChart/domain-nice.svelte new file mode 100644 index 000000000..c98c1048e --- /dev/null +++ b/docs/src/examples/ScatterChart/domain-nice.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/ScatterChart/domain-padding.svelte b/docs/src/examples/ScatterChart/domain-padding.svelte new file mode 100644 index 000000000..5cae5b856 --- /dev/null +++ b/docs/src/examples/ScatterChart/domain-padding.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/ScatterChart/labels.svelte b/docs/src/examples/ScatterChart/labels.svelte new file mode 100644 index 000000000..3cf44208c --- /dev/null +++ b/docs/src/examples/ScatterChart/labels.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/ScatterChart/line-annotation.svelte b/docs/src/examples/ScatterChart/line-annotation.svelte new file mode 100644 index 000000000..8aecb69de --- /dev/null +++ b/docs/src/examples/ScatterChart/line-annotation.svelte @@ -0,0 +1,27 @@ + + + diff --git a/docs/src/examples/ScatterChart/point-annotations.svelte b/docs/src/examples/ScatterChart/point-annotations.svelte new file mode 100644 index 000000000..cccb3896e --- /dev/null +++ b/docs/src/examples/ScatterChart/point-annotations.svelte @@ -0,0 +1,44 @@ + + + diff --git a/docs/src/examples/ScatterChart/radius-scale.svelte b/docs/src/examples/ScatterChart/radius-scale.svelte new file mode 100644 index 000000000..76c647175 --- /dev/null +++ b/docs/src/examples/ScatterChart/radius-scale.svelte @@ -0,0 +1,24 @@ + + + diff --git a/docs/src/examples/ScatterChart/range-annotation-both.svelte b/docs/src/examples/ScatterChart/range-annotation-both.svelte new file mode 100644 index 000000000..b426a8e85 --- /dev/null +++ b/docs/src/examples/ScatterChart/range-annotation-both.svelte @@ -0,0 +1,32 @@ + + + diff --git a/docs/src/examples/ScatterChart/range-annotation-horizontal.svelte b/docs/src/examples/ScatterChart/range-annotation-horizontal.svelte new file mode 100644 index 000000000..268f97f87 --- /dev/null +++ b/docs/src/examples/ScatterChart/range-annotation-horizontal.svelte @@ -0,0 +1,31 @@ + + + diff --git a/docs/src/examples/ScatterChart/range-annotation-vertical.svelte b/docs/src/examples/ScatterChart/range-annotation-vertical.svelte new file mode 100644 index 000000000..8aecb69de --- /dev/null +++ b/docs/src/examples/ScatterChart/range-annotation-vertical.svelte @@ -0,0 +1,27 @@ + + + diff --git a/docs/src/examples/ScatterChart/series-custom-labels.svelte b/docs/src/examples/ScatterChart/series-custom-labels.svelte new file mode 100644 index 000000000..d8a6230d3 --- /dev/null +++ b/docs/src/examples/ScatterChart/series-custom-labels.svelte @@ -0,0 +1,35 @@ + + + { + const color = ['var(--color-primary)', 'var(--color-secondary)', 'var(--color-success)'][i]; + return { + key: species, + label: species + ' 🐧', + data, + color, + props: { + stroke: color, + fillOpacity: 0.3 + } + }; + })} + height={400} + legend +/> diff --git a/docs/src/examples/ScatterChart/series-legend.svelte b/docs/src/examples/ScatterChart/series-legend.svelte new file mode 100644 index 000000000..bb3c6968a --- /dev/null +++ b/docs/src/examples/ScatterChart/series-legend.svelte @@ -0,0 +1,34 @@ + + + { + const color = ['var(--color-primary)', 'var(--color-secondary)', 'var(--color-success)'][i]; + return { + key: species, + data, + color, + props: { + stroke: color, + fillOpacity: 0.3 + } + }; + })} + height={400} + legend +/> diff --git a/docs/src/examples/ScatterChart/series-tween.svelte b/docs/src/examples/ScatterChart/series-tween.svelte new file mode 100644 index 000000000..435fc9d41 --- /dev/null +++ b/docs/src/examples/ScatterChart/series-tween.svelte @@ -0,0 +1,40 @@ + + + { + const color = ['var(--color-primary)', 'var(--color-secondary)', 'var(--color-success)'][i]; + return { + key: species, + data, + color, + props: { + stroke: color, + fillOpacity: 0.3 + } + }; + })} + height={400} + legend + props={{ + xAxis: { motion: { type: 'tween', duration: 200 } }, + yAxis: { motion: { type: 'tween', duration: 200 } }, + grid: { motion: { type: 'tween', duration: 200 } }, + points: { motion: { type: 'tween', duration: 200 } } + }} +/> diff --git a/docs/src/examples/ScatterChart/series-with-radius.svelte b/docs/src/examples/ScatterChart/series-with-radius.svelte new file mode 100644 index 000000000..49d4c9973 --- /dev/null +++ b/docs/src/examples/ScatterChart/series-with-radius.svelte @@ -0,0 +1,35 @@ + + + { + const color = ['var(--color-primary)', 'var(--color-secondary)', 'var(--color-success)'][i]; + return { + key: species, + data, + color, + props: { + stroke: color, + fillOpacity: 0.3 + } + }; + })} + height={400} +/> diff --git a/docs/src/examples/ScatterChart/series.svelte b/docs/src/examples/ScatterChart/series.svelte new file mode 100644 index 000000000..1e2ef3e9b --- /dev/null +++ b/docs/src/examples/ScatterChart/series.svelte @@ -0,0 +1,33 @@ + + + { + const color = ['var(--color-primary)', 'var(--color-secondary)', 'var(--color-success)'][i]; + return { + key: species, + data, + color, + props: { + stroke: color, + fillOpacity: 0.3 + } + }; + })} + height={400} +/> diff --git a/docs/src/examples/ScatterChart/single-axis-x.svelte b/docs/src/examples/ScatterChart/single-axis-x.svelte new file mode 100644 index 000000000..db49f3686 --- /dev/null +++ b/docs/src/examples/ScatterChart/single-axis-x.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/ScatterChart/single-axis-y.svelte b/docs/src/examples/ScatterChart/single-axis-y.svelte new file mode 100644 index 000000000..9d3616137 --- /dev/null +++ b/docs/src/examples/ScatterChart/single-axis-y.svelte @@ -0,0 +1,9 @@ + + + diff --git a/docs/src/examples/ScatterChart/single-dimension.svelte b/docs/src/examples/ScatterChart/single-dimension.svelte new file mode 100644 index 000000000..33c02c6b7 --- /dev/null +++ b/docs/src/examples/ScatterChart/single-dimension.svelte @@ -0,0 +1,30 @@ + + + 0} + axis={false} + grid={false} + props={{ + points: { opacity: 0.3 }, + highlight: { lines: false } + }} + height={48} +> + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {format(context.x(data))} + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/ScatterChart/tooltip-click.svelte b/docs/src/examples/ScatterChart/tooltip-click.svelte new file mode 100644 index 000000000..4c4ff624d --- /dev/null +++ b/docs/src/examples/ScatterChart/tooltip-click.svelte @@ -0,0 +1,18 @@ + + + { + console.log(e, detail); + alert(JSON.stringify(detail)); + }} +/> diff --git a/docs/src/lib/assets/favicon.svg b/docs/src/lib/assets/favicon.svg new file mode 100644 index 000000000..cc5dc66a3 --- /dev/null +++ b/docs/src/lib/assets/favicon.svg @@ -0,0 +1 @@ +svelte-logo \ No newline at end of file diff --git a/docs/src/lib/components/AsyncExample.svelte b/docs/src/lib/components/AsyncExample.svelte new file mode 100644 index 000000000..6f609b2f8 --- /dev/null +++ b/docs/src/lib/components/AsyncExample.svelte @@ -0,0 +1,11 @@ + + + + diff --git a/docs/src/lib/components/Code.svelte b/docs/src/lib/components/Code.svelte new file mode 100644 index 000000000..528cfd840 --- /dev/null +++ b/docs/src/lib/components/Code.svelte @@ -0,0 +1,81 @@ + + + + +
+ {#if source} +
+      
+        {#await highlighter}
+					
Loading...
+ {:then h} + + {@html h.codeToHtml(source, { + lang: language, + themes: { + light: 'github-light-default', + dark: 'github-dark-default' + } + })} + {:catch error} +
Error loading code highlighting: {error.message}
+ {/await} + +
+
+ +
+ +
+ {/if} +
+ + diff --git a/docs/src/lib/components/CurveMenuField.svelte b/docs/src/lib/components/CurveMenuField.svelte new file mode 100644 index 000000000..6f2510626 --- /dev/null +++ b/docs/src/lib/components/CurveMenuField.svelte @@ -0,0 +1,44 @@ + + + diff --git a/docs/src/lib/components/DocsMenu.svelte b/docs/src/lib/components/DocsMenu.svelte new file mode 100644 index 000000000..51f166e98 --- /dev/null +++ b/docs/src/lib/components/DocsMenu.svelte @@ -0,0 +1,52 @@ + + + diff --git a/docs/src/lib/components/Example.svelte b/docs/src/lib/components/Example.svelte new file mode 100644 index 000000000..d119a96f0 --- /dev/null +++ b/docs/src/lib/components/Example.svelte @@ -0,0 +1,125 @@ + + +
+ {#if example} +
+
+ +
+
+ + {#if showCode} +
+ +
+ {/if} + +
+ {#if example.source} + + {/if} + + {#if data} + + + + +
+
+
Chart data
+
+ + + getDataAsString(data)} + variant="fill-light" + color="primary" + /> + +
+ + + +
+ +
+
+
+ {/if} + + {#if page.params.example == null} + + {/if} +
+ {:else} +
+ Example `{name}` not found. +
+ {/if} +
diff --git a/docs/src/lib/components/Json.svelte b/docs/src/lib/components/Json.svelte new file mode 100644 index 000000000..7d6335c01 --- /dev/null +++ b/docs/src/lib/components/Json.svelte @@ -0,0 +1,36 @@ + + +
+ +
diff --git a/docs/src/lib/components/PromiseExample.svelte b/docs/src/lib/components/PromiseExample.svelte new file mode 100644 index 000000000..accf681dc --- /dev/null +++ b/docs/src/lib/components/PromiseExample.svelte @@ -0,0 +1,24 @@ + + +{#await componentPromise} +

Loading component...

+{:then module} + +{:catch error} +

Error loading component: {error.message}

+{/await} + +{#await sourcePromise} +

Loading source...

+{:then source} + +{:catch error} +

Error loading source: {error.message}

+{/await} diff --git a/docs/src/lib/components/SourceExample.svelte b/docs/src/lib/components/SourceExample.svelte new file mode 100644 index 000000000..db7ad32c3 --- /dev/null +++ b/docs/src/lib/components/SourceExample.svelte @@ -0,0 +1,7 @@ + + +{@render children?.()} diff --git a/docs/src/lib/components/ViewSourceButton.svelte b/docs/src/lib/components/ViewSourceButton.svelte new file mode 100644 index 000000000..1cbf4018b --- /dev/null +++ b/docs/src/lib/components/ViewSourceButton.svelte @@ -0,0 +1,53 @@ + + +{#if source} + + + +
+
+
{label}
+
{href}
+
+ + {#if href} + + {/if} +
+ +
+ +
+ +
+ +
+
+
+{:else if href} + + + +{/if} diff --git a/docs/src/lib/context.ts b/docs/src/lib/context.ts new file mode 100644 index 000000000..b1a6ce7a2 --- /dev/null +++ b/docs/src/lib/context.ts @@ -0,0 +1,4 @@ +import { Context } from 'runed'; +import type { Examples } from './types'; + +export const examples = new Context<{ readonly current: Examples }>('examples'); diff --git a/docs/src/lib/data.remote.ts b/docs/src/lib/data.remote.ts new file mode 100644 index 000000000..f9e0de01d --- /dev/null +++ b/docs/src/lib/data.remote.ts @@ -0,0 +1,75 @@ +import { celsiusToFahrenheit } from 'layerchart'; +import { parse } from '@layerstack/utils'; +import { ascending, flatGroup, max, mean, min } from 'd3-array'; +import { csvParse, autoType } from 'd3-dsv'; + +import { prerender, getRequestEvent } from '$app/server'; + +import type { PenguinsData } from '$static/data/examples/penguins.js'; +import type { AppleStockData } from '$static/data/examples/date/apple-stock.js'; + +export const getAppleStock = prerender(async () => { + const { fetch } = getRequestEvent(); + const data = await fetch('/data/examples/date/apple-stock.json').then(async (r) => + parse(await r.text()) + ); + return data; +}); + +export const getDailyTemperature = prerender(async () => { + const { fetch } = getRequestEvent(); + const data = await fetch('/data/examples/date/daily-temperature.json').then(async (r) => + parse<{ date: Date; value: number }[]>(await r.text()) + ); + return data; +}); + +export const getDailyTemperatures = prerender(async () => { + const { fetch } = getRequestEvent(); + const data = await fetch('/data/examples/dailyTemperatures.csv').then(async (r) => { + return csvParse<{ dayOfYear: number; year: number; value: number | 'NA' }>( + await r.text(), + // @ts-expect-error - autoType + autoType + ) + .filter((d) => d.value !== 'NA' && d.dayOfYear <= 365 /* Ignore 366th day */) + .map((d) => { + const origDate = new Date(d.year, 0, d.dayOfYear); + return { + ...d, + date: new Date(Date.UTC(2000, origDate.getUTCMonth(), origDate.getUTCDate())), + value: d.value !== 'NA' ? celsiusToFahrenheit(d.value) : 'NA' + }; + }); + }); + return data; +}); + +export const getSfoTemperatures = prerender(async () => { + const { fetch } = getRequestEvent(); + const data = await fetch('/data/examples/sfoTemperatures.csv').then(async (r) => { + return flatGroup( + // @ts-expect-error - autoType + csvParse<{ date: Date; tavg: number; tmax: number; tmin: number }>(await r.text(), autoType), + (d) => new Date(Date.UTC(2000, d.date.getUTCMonth(), d.date.getUTCDate())) // group by day of year + ) + .sort(([a], [b]) => ascending(a, b)) // sort chronologically + .map(([date, v]) => ({ + date, + avg: mean(v, (d) => d.tavg || NaN), + min: mean(v, (d) => d.tmin || NaN), + max: mean(v, (d) => d.tmax || NaN), + minmin: min(v, (d) => d.tmin || NaN), + maxmax: max(v, (d) => d.tmax || NaN) + })); + }); + return data; +}); + +export const getPenguins = prerender(async () => { + const { fetch } = getRequestEvent(); + const data = (await fetch('/data/examples/penguins.csv').then(async (r) => + csvParse(await r.text(), autoType) + )) as PenguinsData; + return data; +}); diff --git a/docs/src/lib/markdown/blueprints/default/blueprint.svelte b/docs/src/lib/markdown/blueprints/default/blueprint.svelte new file mode 100644 index 000000000..0e62d6b15 --- /dev/null +++ b/docs/src/lib/markdown/blueprints/default/blueprint.svelte @@ -0,0 +1,28 @@ + + + + +{@render children()} diff --git a/docs/src/lib/markdown/components/a.svelte b/docs/src/lib/markdown/components/a.svelte new file mode 100644 index 000000000..330459c91 --- /dev/null +++ b/docs/src/lib/markdown/components/a.svelte @@ -0,0 +1,20 @@ + + + + {@render children?.()} + diff --git a/docs/src/lib/markdown/components/blockquote.svelte b/docs/src/lib/markdown/components/blockquote.svelte new file mode 100644 index 000000000..3420fb3bc --- /dev/null +++ b/docs/src/lib/markdown/components/blockquote.svelte @@ -0,0 +1,17 @@ + + +
a]:font-medium [&>a]:underline [&>a]:decoration-dashed [&>a]:decoration-primary/50 [&>a]:underline-offset-2' + )} +> + + {@render children()} +
diff --git a/docs/src/lib/markdown/components/code.svelte b/docs/src/lib/markdown/components/code.svelte new file mode 100644 index 000000000..47ee3100e --- /dev/null +++ b/docs/src/lib/markdown/components/code.svelte @@ -0,0 +1,10 @@ + + + + {@render children?.()} + diff --git a/docs/src/lib/markdown/components/h1.svelte b/docs/src/lib/markdown/components/h1.svelte new file mode 100644 index 000000000..91ba71c7b --- /dev/null +++ b/docs/src/lib/markdown/components/h1.svelte @@ -0,0 +1,10 @@ + + +

+ {@render children?.()} +

diff --git a/docs/src/lib/markdown/components/h2.svelte b/docs/src/lib/markdown/components/h2.svelte new file mode 100644 index 000000000..ed7349b84 --- /dev/null +++ b/docs/src/lib/markdown/components/h2.svelte @@ -0,0 +1,13 @@ + + +

+ {@render children?.()} +

diff --git a/docs/src/lib/markdown/components/h3.svelte b/docs/src/lib/markdown/components/h3.svelte new file mode 100644 index 000000000..1224e81a1 --- /dev/null +++ b/docs/src/lib/markdown/components/h3.svelte @@ -0,0 +1,13 @@ + + +

+ {@render children?.()} +

diff --git a/docs/src/lib/markdown/components/img.svelte b/docs/src/lib/markdown/components/img.svelte new file mode 100644 index 000000000..153b39114 --- /dev/null +++ b/docs/src/lib/markdown/components/img.svelte @@ -0,0 +1,8 @@ + + + diff --git a/docs/src/lib/markdown/components/index.ts b/docs/src/lib/markdown/components/index.ts new file mode 100644 index 000000000..ac328e9b3 --- /dev/null +++ b/docs/src/lib/markdown/components/index.ts @@ -0,0 +1,16 @@ +export { default as a } from './a.svelte'; +export { default as blockquote } from './blockquote.svelte'; +export { default as code } from './code.svelte'; +export { default as h1 } from './h1.svelte'; +export { default as h2 } from './h2.svelte'; +export { default as h3 } from './h3.svelte'; +export { default as img } from './img.svelte'; +export { default as li } from './li.svelte'; +export { default as ol } from './ol.svelte'; +export { default as p } from './p.svelte'; +export { default as pre } from './pre.svelte'; +export { default as table } from './table.svelte'; +export { default as td } from './td.svelte'; +export { default as th } from './th.svelte'; +export { default as tr } from './tr.svelte'; +export { default as ul } from './ul.svelte'; diff --git a/docs/src/lib/markdown/components/li.svelte b/docs/src/lib/markdown/components/li.svelte new file mode 100644 index 000000000..e62ca17b4 --- /dev/null +++ b/docs/src/lib/markdown/components/li.svelte @@ -0,0 +1,10 @@ + + +
  • + {@render children?.()} +
  • diff --git a/docs/src/lib/markdown/components/ol.svelte b/docs/src/lib/markdown/components/ol.svelte new file mode 100644 index 000000000..b229521bc --- /dev/null +++ b/docs/src/lib/markdown/components/ol.svelte @@ -0,0 +1,10 @@ + + +
      + {@render children?.()} +
    diff --git a/docs/src/lib/markdown/components/p.svelte b/docs/src/lib/markdown/components/p.svelte new file mode 100644 index 000000000..937fc20be --- /dev/null +++ b/docs/src/lib/markdown/components/p.svelte @@ -0,0 +1,13 @@ + + +

    &:not(:first-child)]:mt-6', className)} + {...restProps} +> + {@render children?.()} +

    diff --git a/docs/src/lib/markdown/components/pre.svelte b/docs/src/lib/markdown/components/pre.svelte new file mode 100644 index 000000000..c15053c64 --- /dev/null +++ b/docs/src/lib/markdown/components/pre.svelte @@ -0,0 +1,10 @@ + + +
    +	{@render children?.()}
    +
    diff --git a/docs/src/lib/markdown/components/table.svelte b/docs/src/lib/markdown/components/table.svelte new file mode 100644 index 000000000..d218982d2 --- /dev/null +++ b/docs/src/lib/markdown/components/table.svelte @@ -0,0 +1,12 @@ + + +
    + + {@render children?.()} +
    +
    diff --git a/docs/src/lib/markdown/components/td.svelte b/docs/src/lib/markdown/components/td.svelte new file mode 100644 index 000000000..b33be48f4 --- /dev/null +++ b/docs/src/lib/markdown/components/td.svelte @@ -0,0 +1,16 @@ + + + + {@render children?.()} + diff --git a/docs/src/lib/markdown/components/th.svelte b/docs/src/lib/markdown/components/th.svelte new file mode 100644 index 000000000..afb87c65a --- /dev/null +++ b/docs/src/lib/markdown/components/th.svelte @@ -0,0 +1,16 @@ + + + + {@render children?.()} + diff --git a/docs/src/lib/markdown/components/tr.svelte b/docs/src/lib/markdown/components/tr.svelte new file mode 100644 index 000000000..2ac46d0b7 --- /dev/null +++ b/docs/src/lib/markdown/components/tr.svelte @@ -0,0 +1,10 @@ + + + + {@render children?.()} + diff --git a/docs/src/lib/markdown/components/ul.svelte b/docs/src/lib/markdown/components/ul.svelte new file mode 100644 index 000000000..4a92b6470 --- /dev/null +++ b/docs/src/lib/markdown/components/ul.svelte @@ -0,0 +1,10 @@ + + +
      + {@render children?.()} +
    diff --git a/docs/src/lib/markdown/utils.ts b/docs/src/lib/markdown/utils.ts new file mode 100644 index 000000000..a125899b0 --- /dev/null +++ b/docs/src/lib/markdown/utils.ts @@ -0,0 +1,37 @@ +import type { Component } from 'svelte'; +import { error } from '@sveltejs/kit'; + +import { allComponents, type Component as ComponentMetadata } from 'content-collections'; + +export function getComponentMetadata(slug: string) { + return allComponents.find((c) => c.slug === slug); +} + +function slugFromPath(path: string) { + return path.replace('/src/content/components/', '').replace('.md', ''); +} + +export type DocResolver = () => Promise<{ default: Component; metadata: ComponentMetadata }>; + +export async function getComponentDoc(slug: string = 'index') { + const modules = import.meta.glob('/src/content/**/*.md'); + + let match: { path?: string; resolver?: DocResolver } = {}; + + for (const [path, resolver] of Object.entries(modules)) { + if (slugFromPath(path) === slug) { + match = { path, resolver: resolver as unknown as DocResolver }; + break; + } + } + const doc = await match?.resolver?.(); + const metadata = getComponentMetadata(slug); + if (!doc || !metadata) { + error(404, 'Could not find the document.'); + } + + return { + PageComponent: doc.default, + metadata + }; +} diff --git a/docs/src/lib/types.ts b/docs/src/lib/types.ts new file mode 100644 index 000000000..eed1c5b04 --- /dev/null +++ b/docs/src/lib/types.ts @@ -0,0 +1,3 @@ +import type { Component } from 'svelte'; + +export type Examples = Record; diff --git a/docs/src/lib/utils/data.ts b/docs/src/lib/utils/data.ts new file mode 100644 index 000000000..2b935831d --- /dev/null +++ b/docs/src/lib/utils/data.ts @@ -0,0 +1,242 @@ +import { timeMinute, timeDay } from 'd3-time'; +import { cumsum } from 'd3-array'; +import { randomNormal } from 'd3-random'; + +import { degreesToRadians, radiansToDegrees } from 'layerchart'; + +/** + * Get random number between min (inclusive) and max (exclusive) + * see: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random#getting_a_random_number_between_0_inclusive_and_1_exclusive + */ +export function getRandomNumber(min: number, max: number) { + return Math.random() * (max - min) + min; +} + +/** + * Get random integer between min (inclusive) and max (inclusive by default) + * see: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random#getting_a_random_integer_between_two_values_inclusive + */ +export function getRandomInteger(min: number, max: number, includeMax = true) { + min = Math.ceil(min); + max = Math.floor(max); + return Math.floor(Math.random() * (max - min + (includeMax ? 1 : 0)) + min); +} + +/** + * @see: https://observablehq.com/@d3/d3-cumsum + */ +export function randomWalk(options?: { count?: number }) { + const random = randomNormal(); + // @ts-expect-error shh + return Array.from(cumsum({ length: options?.count ?? 100 }, random)); +} + +export function createSeries(options: { + count?: number; + min: number; + max: number; + keys?: TKey[]; + value?: 'number' | 'integer'; +}) { + const count = options.count ?? 10; + const min = options.min; + const max = options.max; + const keys = options.keys ?? ['y']; + + return Array.from({ length: count }).map((_, i) => { + return { + x: options.value === 'integer' ? getRandomInteger(min, max) : getRandomNumber(min, max), + ...Object.fromEntries( + keys.map((key) => { + return [ + key, + options.value === 'integer' ? getRandomInteger(min, max) : getRandomNumber(min, max) + ]; + }) + ) + } as { x: number } & { [K in TKey]: number }; + }); +} + +export function createDateSeries( + options: { + count?: number; + min?: number; + max?: number; + keys?: TKey[]; + value?: 'number' | 'integer'; + } = {} +) { + const now = timeDay.floor(new Date()); + + const count = options.count ?? 10; + const min = options.min ?? 0; + const max = options.max ?? 100; + const keys = options.keys ?? ['value']; + const valueType = options.value ?? 'number'; + + return Array.from({ length: count }).map((_, i) => { + return { + date: timeDay.offset(now, -count + i), + ...Object.fromEntries( + keys.map((key) => { + return [ + key, + valueType === 'integer' ? getRandomInteger(min, max) : getRandomNumber(min, max) + ]; + }) + ) + } as { date: Date } & { [K in TKey]: number }; + }); +} + +export function createTimeSeries( + options: { + count?: number; + min?: number; + max?: number; + keys?: TKey[]; + value?: 'number' | 'integer'; + } = {} +) { + const count = options.count ?? 10; + const min = options.min ?? 0; + const max = options.max ?? 100; + const keys = options.keys ?? ['value']; + const valueType = options.value ?? 'number'; + + let lastStartDate = timeDay.floor(new Date()); + + const timeSeries = Array.from({ length: count }).map((_, i) => { + const startDate = timeMinute.offset(lastStartDate, getRandomInteger(0, 60)); + const endDate = timeMinute.offset(startDate, getRandomInteger(5, 60)); + lastStartDate = startDate; + return { + name: `item ${i + 1}`, + startDate, + endDate, + ...Object.fromEntries( + keys.map((key) => { + return [ + key, + valueType === 'integer' ? getRandomInteger(min, max) : getRandomNumber(min, max) + ]; + }) + ) + } as { name: string; startDate: Date; endDate: Date } & { [K in TKey]: number }; + }); + + return timeSeries; +} + +export const wideData = [ + { year: 2019, apples: 3840, bananas: 1920, cherries: 960, grapes: 400 }, + { year: 2018, apples: 1600, bananas: 1440, cherries: 960, grapes: 400 }, + { year: 2017, apples: 820, bananas: 1000, cherries: 640, grapes: 400 }, + { year: 2016, apples: 820, bananas: 560, cherries: 720, grapes: 400 } +]; + +export const longData = [ + { year: 2019, basket: 1, fruit: 'apples', value: 3840 }, + { year: 2019, basket: 1, fruit: 'bananas', value: 1920 }, + { year: 2019, basket: 2, fruit: 'cherries', value: 960 }, + { year: 2019, basket: 2, fruit: 'grapes', value: 400 }, + + { year: 2018, basket: 1, fruit: 'apples', value: 1600 }, + { year: 2018, basket: 1, fruit: 'bananas', value: 1440 }, + { year: 2018, basket: 2, fruit: 'cherries', value: 960 }, + { year: 2018, basket: 2, fruit: 'grapes', value: 400 }, + + { year: 2017, basket: 1, fruit: 'apples', value: 820 }, + { year: 2017, basket: 1, fruit: 'bananas', value: 1000 }, + { year: 2017, basket: 2, fruit: 'cherries', value: 640 }, + { year: 2017, basket: 2, fruit: 'grapes', value: 400 }, + + { year: 2016, basket: 1, fruit: 'apples', value: 820 }, + { year: 2016, basket: 1, fruit: 'bananas', value: 560 }, + { year: 2016, basket: 2, fruit: 'cherries', value: 720 }, + { year: 2016, basket: 2, fruit: 'grapes', value: 400 } +]; + +export function getPhyllotaxis({ + radius, + count, + width, + height +}: { + radius: number; + count: number; + width: number; + height: number; +}) { + // Phyllotaxis: https://www.youtube.com/watch?v=KWoJgHFYWxY + const rads = Math.PI * (3 - Math.sqrt(5)); // ~2.4 rads or ~137.5 degrees + return getSpiral({ angle: radiansToDegrees(rads), radius, count, width, height }); +} + +export function getSpiral({ + angle, + radius, + count, + width, + height +}: { + angle: number; + radius: number; + count: number; + width: number; + height: number; +}) { + return Array.from({ length: count }, (_, i) => { + const r = radius * Math.sqrt(i); + const a = degreesToRadians(angle * i); + return { + x: width / 2 + r * Math.cos(a), + y: height / 2 + r * Math.sin(a) + }; + }); +} + +interface SineWaveOptions { + numPoints: number; + frequency?: number; + amplitude?: number; + noiseLevel?: number; + phase?: number; + xMin?: number; + xMax?: number; +} + +export function generateSineWave(options: SineWaveOptions) { + const { + numPoints, + frequency = 1, + amplitude = 1, + noiseLevel = 0, + phase = 0, + xMin = 0, + xMax = 2 * Math.PI + } = options; + + if (numPoints <= 0) { + throw new Error('Number of points must be greater than 0'); + } + + const points: { x: number; y: number }[] = []; + const xStep = (xMax - xMin) / (numPoints - 1); + + for (let i = 0; i < numPoints; i++) { + const x = xMin + i * xStep; + + // Generate base sine wave + const sineValue = amplitude * Math.sin(frequency * x + phase); + + // Add random noise if specified + const noise = noiseLevel > 0 ? (Math.random() - 0.5) * 2 * noiseLevel : 0; + const y = sineValue + noise; + + points.push({ x, y }); + } + + return points; +} diff --git a/docs/src/routes/+layout.server.ts b/docs/src/routes/+layout.server.ts new file mode 100644 index 000000000..58c9af57f --- /dev/null +++ b/docs/src/routes/+layout.server.ts @@ -0,0 +1,10 @@ +import { getThemeNames } from '@layerstack/tailwind'; +import themeCss from '@layerstack/tailwind/themes/all.css?raw'; +// import { env } from '$env/dynamic/private'; + +export async function load() { + return { + themes: getThemeNames(themeCss) + // pr_id: env.VERCEL_GIT_PULL_REQUEST_ID, // TODO: Re-add once SvelteKit updated to `2.3.2+` - https://github.com/sveltejs/kit/releases/tag/%40sveltejs%2Fkit%402.3.2 + }; +} diff --git a/docs/src/routes/+layout.svelte b/docs/src/routes/+layout.svelte new file mode 100644 index 000000000..622edaa77 --- /dev/null +++ b/docs/src/routes/+layout.svelte @@ -0,0 +1,397 @@ + + + + + + {#if page.url.origin.includes('https')} + + + + {/if} + + +
    + + + LayerChart + +
    + +
    + +
    +
    + +
    + + + { + window.open(e.detail.value, '_blank'); + }} + class="inline-block md:hidden" + > + + +
    +
    + +
    + + + + + + (showDrawer = false)} /> + + +
    + + + {@render children()} + + + +
    + +
    +
    + + + {#if page.data.meta?.tableOfContents} + + {/if} +
    + + { + if (e[env.getModifierKey()] && e.key === 'k') { + searchInput?.focus(); + } + }} +/> diff --git a/docs/src/routes/+layout.ts b/docs/src/routes/+layout.ts new file mode 100644 index 000000000..4c03437d5 --- /dev/null +++ b/docs/src/routes/+layout.ts @@ -0,0 +1,17 @@ +import posthog from 'posthog-js'; + +import { browser, dev } from '$app/environment'; + +// Disable server-side rendering until AppLayout shift is fixed (issue #22) +export const ssr = false; + +export const load = async () => { + // Setup Posthog + if (browser && !dev) { + posthog.init('phc_EjObiSURIW3vFLwJYNXQ1DumcnVPI28mO5nbTRVPjs0', { + api_host: 'https://app.posthog.com', + capture_pageview: false, + capture_pageleave: false + }); + } +}; diff --git a/docs/src/routes/+page.svelte b/docs/src/routes/+page.svelte new file mode 100644 index 000000000..cc88df0ea --- /dev/null +++ b/docs/src/routes/+page.svelte @@ -0,0 +1,2 @@ +

    Welcome to SvelteKit

    +

    Visit svelte.dev/docs/kit to read the documentation

    diff --git a/docs/src/routes/components/[name]/+layout.svelte b/docs/src/routes/components/[name]/+layout.svelte new file mode 100644 index 000000000..263febeaf --- /dev/null +++ b/docs/src/routes/components/[name]/+layout.svelte @@ -0,0 +1,133 @@ + + +{#if page.params.example} + +{/if} + +
    +
    + {metadata.section} +
    + + {#if page.params.example} + + {metadata.name} + {/if} +
    + +
    +

    + {page.params.example?.replaceAll('-', ' ') ?? metadata.name} +

    + + {#if metadata.layers} + + {#each metadata.layers as layer} + {toTitleCase(layer)} + {/each} + + {/if} + + + + + + + +
    + +{#if page.params.example == null} +
    {metadata.description}
    + +
    + {#if metadata.source} + + {/if} + + + + +
    +{/if} + + + {@render children()} + {#snippet pending()} + loading... + {/snippet} + diff --git a/docs/src/routes/components/[name]/+layout.ts b/docs/src/routes/components/[name]/+layout.ts new file mode 100644 index 000000000..5e4072e94 --- /dev/null +++ b/docs/src/routes/components/[name]/+layout.ts @@ -0,0 +1,37 @@ +import type { Examples } from '$lib/types.js'; +import { getComponentDoc } from '$lib/markdown/utils.js'; +import type { Component } from 'svelte'; + +export const load = async ({ params }) => { + const allExamples = import.meta.glob('/src/examples/**/*', { + import: 'default' + }); + + const allSources = import.meta.glob('/src/examples/**/*', { + import: 'default', + query: '?raw' + }); + + const examples: Examples = {}; + for (const path in allExamples) { + if (path.includes(`/src/examples/${params.name}/`)) { + const component = (await allExamples[path]()) as Component; + const source = (await allSources[path]()) as string; + const name = path.split('/')?.pop()?.replace('.svelte', '') ?? 'unknown'; + + // Remove `export { data };` + // TODO: Also remove blank lines left behind + const cleanupSource = source.replace(/^.*export .*;.*$/gm, ''); + + examples[name] = { component, source: cleanupSource }; + } + } + + return { + ...(await getComponentDoc(params.name)), + examples, + meta: { + tableOfContents: true + } + }; +}; diff --git a/docs/src/routes/components/[name]/+page.svelte b/docs/src/routes/components/[name]/+page.svelte new file mode 100644 index 000000000..66fa8920f --- /dev/null +++ b/docs/src/routes/components/[name]/+page.svelte @@ -0,0 +1,22 @@ + + + + + +{#if metadata.related.length} +

    Related

    +
    + {#each metadata.related as related} + + {/each} +
    +{/if} diff --git a/docs/src/routes/components/[name]/[example]/+page.svelte b/docs/src/routes/components/[name]/[example]/+page.svelte new file mode 100644 index 000000000..a8718758f --- /dev/null +++ b/docs/src/routes/components/[name]/[example]/+page.svelte @@ -0,0 +1,8 @@ + + + diff --git a/docs/src/routes/components/[name]/[example]/+page.ts b/docs/src/routes/components/[name]/[example]/+page.ts new file mode 100644 index 000000000..9a8b48c80 --- /dev/null +++ b/docs/src/routes/components/[name]/[example]/+page.ts @@ -0,0 +1,7 @@ +export async function load() { + return { + meta: { + tableOfContents: false + } + }; +} diff --git a/docs/src/routes/page.svelte.spec.ts b/docs/src/routes/page.svelte.spec.ts new file mode 100644 index 000000000..3c6adf306 --- /dev/null +++ b/docs/src/routes/page.svelte.spec.ts @@ -0,0 +1,13 @@ +import { page } from '@vitest/browser/context'; +import { describe, expect, it } from 'vitest'; +import { render } from 'vitest-browser-svelte'; +import Page from './+page.svelte'; + +describe('/+page.svelte', () => { + it('should render h1', async () => { + render(Page); + + const heading = page.getByRole('heading', { level: 1 }); + await expect.element(heading).toBeInTheDocument(); + }); +}); diff --git a/docs/static/audio/yakko_world.mp3 b/docs/static/audio/yakko_world.mp3 new file mode 100644 index 000000000..9ca45a2c1 Binary files /dev/null and b/docs/static/audio/yakko_world.mp3 differ diff --git a/docs/static/data/examples/alphabet.csv b/docs/static/data/examples/alphabet.csv new file mode 100644 index 000000000..67b9434ac --- /dev/null +++ b/docs/static/data/examples/alphabet.csv @@ -0,0 +1,27 @@ +letter,frequency +E,0.12702 +T,0.09056 +A,0.08167 +O,0.07507 +I,0.06966 +N,0.06749 +S,0.06327 +H,0.06094 +R,0.05987 +D,0.04253 +L,0.04025 +C,0.02782 +U,0.02758 +M,0.02406 +W,0.0236 +F,0.02288 +G,0.02015 +Y,0.01974 +P,0.01929 +B,0.01492 +V,0.00978 +K,0.00772 +J,0.00153 +X,0.0015 +Q,0.00095 +Z,0.00074 diff --git a/docs/static/data/examples/alphabet.d.ts b/docs/static/data/examples/alphabet.d.ts new file mode 100644 index 000000000..67050d7e5 --- /dev/null +++ b/docs/static/data/examples/alphabet.d.ts @@ -0,0 +1,4 @@ +export type AlphabetData = { + letter: string; + frequency: number; +}; diff --git a/docs/static/data/examples/bench/dimension_arrays/convert.js b/docs/static/data/examples/bench/dimension_arrays/convert.js new file mode 100644 index 000000000..9c560b909 --- /dev/null +++ b/docs/static/data/examples/bench/dimension_arrays/convert.js @@ -0,0 +1,38 @@ +import fs from 'node:fs'; +import { round } from '@layerstack/utils'; + +function prepData(packed) { + // epoch,idl,recv,send,read,writ,used,free + const numFields = packed[0]; + packed = packed.slice(numFields + 1); + + let data = [ + Array(packed.length / numFields), // date + Array(packed.length / numFields), // cpu + Array(packed.length / numFields), // ram + Array(packed.length / numFields), // tcp + ]; + + for (let i = 0, j = 0; i < packed.length; i += numFields, j++) { + data[0][j] = packed[i] * 60 * 1000; + data[1][j] = round(100 - packed[i + 1], 3); + data[2][j] = round((100 * packed[i + 5]) / (packed[i + 5] + packed[i + 6]), 2); + data[3][j] = packed[i + 3]; + } + + return { date: data[0], cpu: data[1], ram: data[2], tcp: data[3] }; +} + +try { + const inputFile = '../packedData.json'; + const outputFile = 'data.json'; + + const packedData = JSON.parse(fs.readFileSync(inputFile, 'utf8')); + const data = prepData(packedData); + fs.writeFileSync(outputFile, JSON.stringify(data)); + + console.log(`Successfully transformed data from ${inputFile} to ${outputFile}`); +} catch (error) { + console.error('Error processing file:', error.message); + process.exit(1); +} diff --git a/docs/static/data/examples/bench/dimension_arrays/data.json b/docs/static/data/examples/bench/dimension_arrays/data.json new file mode 100644 index 000000000..724b6c4eb --- /dev/null +++ b/docs/static/data/examples/bench/dimension_arrays/data.json @@ -0,0 +1 @@ +{"date":[1566453600000,1566453660000,1566453720000,1566453780000,1566453840000,1566453900000,1566453960000,1566454020000,1566454080000,1566454140000,1566454200000,1566454260000,1566454320000,1566454380000,1566454440000,1566454500000,1566454560000,1566454620000,1566454680000,1566454740000,1566454800000,1566454860000,1566454920000,1566454980000,1566455040000,1566455100000,1566455160000,1566455220000,1566455280000,1566455340000,1566455400000,1566455460000,1566455520000,1566455580000,1566455640000,1566455700000,1566455760000,1566455820000,1566455880000,1566455940000,1566456000000,1566456060000,1566456120000,1566456180000,1566456240000,1566456300000,1566456360000,1566456420000,1566456480000,1566456540000,1566456600000,1566456660000,1566456720000,1566456780000,1566456840000,1566456900000,1566456960000,1566457020000,1566457080000,1566457140000,1566457200000,1566457260000,1566457320000,1566457380000,1566457440000,1566457500000,1566457560000,1566457620000,1566457680000,1566457740000,1566457800000,1566457860000,1566457920000,1566457980000,1566458040000,1566458100000,1566458160000,1566458220000,1566458280000,1566458340000,1566458400000,1566458460000,1566458520000,1566458580000,1566458640000,1566458700000,1566458760000,1566458820000,1566458880000,1566458940000,1566459000000,1566459060000,1566459120000,1566459180000,1566459240000,1566459300000,1566459360000,1566459420000,1566459480000,1566459540000,1566459600000,1566459660000,1566459720000,1566459780000,1566459840000,1566459900000,1566459960000,1566460020000,1566460080000,1566460140000,1566460200000,1566460260000,1566460320000,1566460380000,1566460440000,1566460500000,1566460560000,1566460620000,1566460680000,1566460740000,1566460800000,1566460860000,1566460920000,1566460980000,1566461040000,1566461100000,1566461160000,1566461220000,1566461280000,1566461340000,1566461400000,1566461460000,1566461520000,1566461580000,1566461640000,1566461700000,1566461760000,1566461820000,1566461880000,1566461940000,1566462000000,1566462060000,1566462120000,1566462180000,1566462240000,1566462300000,1566462360000,1566462420000,1566462480000,1566462540000,1566462600000,1566462660000,1566462720000,1566462780000,1566462840000,1566462900000,1566462960000,1566463020000,1566463080000,1566463140000,1566463200000,1566463260000,1566463320000,1566463380000,1566463440000,1566463500000,1566463560000,1566463620000,1566463680000,1566463740000,1566463800000,1566463860000,1566463920000,1566463980000,1566464040000,1566464100000,1566464160000,1566464220000,1566464280000,1566464340000,1566464400000,1566464460000,1566464520000,1566464580000,1566464640000,1566464700000,1566464760000,1566464820000,1566464880000,1566464940000,1566465000000,1566465060000,1566465120000,1566465180000,1566465240000,1566465300000,1566465360000,1566465420000,1566465480000,1566465540000,1566465600000,1566465660000,1566465720000,1566465780000,1566465840000,1566465900000,1566465960000,1566466020000,1566466080000,1566466140000,1566466200000,1566466260000,1566466320000,1566466380000,1566466440000,1566466500000,1566466560000,1566466620000,1566466680000,1566466740000,1566466800000,1566466860000,1566466920000,1566466980000,1566467040000,1566467100000,1566467160000,1566467220000,1566467280000,1566467340000,1566467400000,1566467460000,1566467520000,1566467580000,1566467640000,1566467700000,1566467760000,1566467820000,1566467880000,1566467940000,1566468000000,1566468060000,1566468120000,1566468180000,1566468240000,1566468300000,1566468360000,1566468420000,1566468480000,1566468540000,1566468600000,1566468660000,1566468720000,1566468780000,1566468840000,1566468900000,1566468960000,1566469020000,1566469080000,1566469140000,1566469200000,1566469260000,1566469320000,1566469380000,1566469440000,1566469500000,1566469560000,1566469620000,1566469680000,1566469740000,1566469800000,1566469860000,1566469920000,1566469980000,1566470040000,1566470100000,1566470160000,1566470220000,1566470280000,1566470340000,1566470400000,1566470460000,1566470520000,1566470580000,1566470640000,1566470700000,1566470760000,1566470820000,1566470880000,1566470940000,1566471000000,1566471060000,1566471120000,1566471180000,1566471240000,1566471300000,1566471360000,1566471420000,1566471480000,1566471540000,1566471600000,1566471660000,1566471720000,1566471780000,1566471840000,1566471900000,1566471960000,1566472020000,1566472080000,1566472140000,1566472200000,1566472260000,1566472320000,1566472380000,1566472440000,1566472500000,1566472560000,1566472620000,1566472680000,1566472740000,1566472800000,1566472860000,1566472920000,1566472980000,1566473040000,1566473100000,1566473160000,1566473220000,1566473280000,1566473340000,1566473400000,1566473460000,1566473520000,1566473580000,1566473640000,1566473700000,1566473760000,1566473820000,1566473880000,1566473940000,1566474000000,1566474060000,1566474120000,1566474180000,1566474240000,1566474300000,1566474360000,1566474420000,1566474480000,1566474540000,1566474600000,1566474660000,1566474720000,1566474780000,1566474840000,1566474900000,1566474960000,1566475020000,1566475080000,1566475140000,1566475200000,1566475260000,1566475320000,1566475380000,1566475440000,1566475500000,1566475560000,1566475620000,1566475680000,1566475740000,1566475800000,1566475860000,1566475920000,1566475980000,1566476040000,1566476100000,1566476160000,1566476220000,1566476280000,1566476340000,1566476400000,1566476460000,1566476520000,1566476580000,1566476640000,1566476700000,1566476760000,1566476820000,1566476880000,1566476940000,1566477000000,1566477060000,1566477120000,1566477180000,1566477240000,1566477300000,1566477360000,1566477420000,1566477480000,1566477540000,1566477600000,1566477660000,1566477720000,1566477780000,1566477840000,1566477900000,1566477960000,1566478020000,1566478080000,1566478140000,1566478200000,1566478260000,1566478320000,1566478380000,1566478440000,1566478500000,1566478560000,1566478620000,1566478680000,1566478740000,1566478800000,1566478860000,1566478920000,1566478980000,1566479040000,1566479100000,1566479160000,1566479220000,1566479280000,1566479340000,1566479400000,1566479460000,1566479520000,1566479580000,1566479640000,1566479700000,1566479760000,1566479820000,1566479880000,1566479940000,1566480000000,1566480060000,1566480120000,1566480180000,1566480240000,1566480300000,1566480360000,1566480420000,1566480480000,1566480540000,1566480600000,1566480660000,1566480720000,1566480780000,1566480840000,1566480900000,1566480960000,1566481020000,1566481080000,1566481140000,1566481200000,1566481260000,1566481320000,1566481380000,1566481440000,1566481500000,1566481560000,1566481620000,1566481680000,1566481740000,1566481800000,1566481860000,1566481920000,1566481980000,1566482040000,1566482100000,1566482160000,1566482220000,1566482280000,1566482340000,1566482400000,1566482460000,1566482520000,1566482580000,1566482640000,1566482700000,1566482760000,1566482820000,1566482880000,1566482940000,1566483000000,1566483060000,1566483120000,1566483180000,1566483240000,1566483300000,1566483360000,1566483420000,1566483480000,1566483540000,1566483600000,1566483660000,1566483720000,1566483780000,1566483840000,1566483900000,1566483960000,1566484020000,1566484080000,1566484140000,1566484200000,1566484260000,1566484320000,1566484380000,1566484440000,1566484500000,1566484560000,1566484620000,1566484680000,1566484740000,1566484800000,1566484860000,1566484920000,1566484980000,1566485040000,1566485100000,1566485160000,1566485220000,1566485280000,1566485340000,1566485400000,1566485460000,1566485520000,1566485580000,1566485640000,1566485700000,1566485760000,1566485820000,1566485880000,1566485940000,1566486000000,1566486060000,1566486120000,1566486180000,1566486240000,1566486300000,1566486360000,1566486420000,1566486480000,1566486540000,1566486600000,1566486660000,1566486720000,1566486780000,1566486840000,1566486900000,1566486960000,1566487020000,1566487080000,1566487140000,1566487200000,1566487260000,1566487320000,1566487380000,1566487440000,1566487500000,1566487560000,1566487620000,1566487680000,1566487740000,1566487800000,1566487860000,1566487920000,1566487980000,1566488040000,1566488100000,1566488160000,1566488220000,1566488280000,1566488340000,1566488400000,1566488460000,1566488520000,1566488580000,1566488640000,1566488700000,1566488760000,1566488820000,1566488880000,1566488940000,1566489000000,1566489060000,1566489120000,1566489180000,1566489240000,1566489300000,1566489360000,1566489420000,1566489480000,1566489540000,1566489600000,1566489660000,1566489720000,1566489780000,1566489840000,1566489900000,1566489960000,1566490020000,1566490080000,1566490140000,1566490200000,1566490260000,1566490320000,1566490380000,1566490440000,1566490500000,1566490560000,1566490620000,1566490680000,1566490740000,1566490800000,1566490860000,1566490920000,1566490980000,1566491040000,1566491100000,1566491160000,1566491220000,1566491280000,1566491340000,1566491400000,1566491460000,1566491520000,1566491580000,1566491640000,1566491700000,1566491760000,1566491820000,1566491880000,1566491940000,1566492000000,1566492060000,1566492120000,1566492180000,1566492240000,1566492300000,1566492360000,1566492420000,1566492480000,1566492540000,1566492600000,1566492660000,1566492720000,1566492780000,1566492840000,1566492900000,1566492960000,1566493020000,1566493080000,1566493140000,1566493200000,1566493260000,1566493320000,1566493380000,1566493440000,1566493500000,1566493560000,1566493620000,1566493680000,1566493740000,1566493800000,1566493860000,1566493920000,1566493980000,1566494040000,1566494100000,1566494160000,1566494220000,1566494280000,1566494340000,1566494400000,1566494460000,1566494520000,1566494580000,1566494640000,1566494700000,1566494760000,1566494820000,1566494880000,1566494940000,1566495000000,1566495060000,1566495120000,1566495180000,1566495240000,1566495300000,1566495360000,1566495420000,1566495480000,1566495540000,1566495600000,1566495660000,1566495720000,1566495780000,1566495840000,1566495900000,1566495960000,1566496020000,1566496080000,1566496140000,1566496200000,1566496260000,1566496320000,1566496380000,1566496440000,1566496500000,1566496560000,1566496620000,1566496680000,1566496740000,1566496800000,1566496860000,1566496920000,1566496980000,1566497040000,1566497100000,1566497160000,1566497220000,1566497280000,1566497340000,1566497400000,1566497460000,1566497520000,1566497580000,1566497640000,1566497700000,1566497760000,1566497820000,1566497880000,1566497940000,1566498000000,1566498060000,1566498120000,1566498180000,1566498240000,1566498300000,1566498360000,1566498420000,1566498480000,1566498540000,1566498600000,1566498660000,1566498720000,1566498780000,1566498840000,1566498900000,1566498960000,1566499020000,1566499080000,1566499140000,1566499200000,1566499260000,1566499320000,1566499380000,1566499440000,1566499500000,1566499560000,1566499620000,1566499680000,1566499740000,1566499800000,1566499860000,1566499920000,1566499980000,1566500040000,1566500100000,1566500160000,1566500220000,1566500280000,1566500340000,1566500400000,1566500460000,1566500520000,1566500580000,1566500640000,1566500700000,1566500760000,1566500820000,1566500880000,1566500940000,1566501000000,1566501060000,1566501120000,1566501180000,1566501240000,1566501300000,1566501360000,1566501420000,1566501480000,1566501540000,1566501600000,1566501660000,1566501720000,1566501780000,1566501840000,1566501900000,1566501960000,1566502020000,1566502080000,1566502140000,1566502200000,1566502260000,1566502320000,1566502380000,1566502440000,1566502500000,1566502560000,1566502620000,1566502680000,1566502740000,1566502800000,1566502860000,1566502920000,1566502980000,1566503040000,1566503100000,1566503160000,1566503220000,1566503280000,1566503340000,1566503400000,1566503460000,1566503520000,1566503580000,1566503640000,1566503700000,1566503760000,1566503820000,1566503880000,1566503940000,1566504000000,1566504060000,1566504120000,1566504180000,1566504240000,1566504300000,1566504360000,1566504420000,1566504480000,1566504540000,1566504600000,1566504660000,1566504720000,1566504780000,1566504840000,1566504900000,1566504960000,1566505020000,1566505080000,1566505140000,1566505200000,1566505260000,1566505320000,1566505380000,1566505440000,1566505500000,1566505560000,1566505620000,1566505680000,1566505740000,1566505800000,1566505860000,1566505920000,1566505980000,1566506040000,1566506100000,1566506160000,1566506220000,1566506280000,1566506340000,1566506400000,1566506460000,1566506520000,1566506580000,1566506640000,1566506700000,1566506760000,1566506820000,1566506880000,1566506940000,1566507000000,1566507060000,1566507120000,1566507180000,1566507240000,1566507300000,1566507360000,1566507420000,1566507480000,1566507540000,1566507600000,1566507660000,1566507720000,1566507780000,1566507840000,1566507900000,1566507960000,1566508020000,1566508080000,1566508140000,1566508200000,1566508260000,1566508320000,1566508380000,1566508440000,1566508500000,1566508560000,1566508620000,1566508680000,1566508740000,1566508800000,1566508860000,1566508920000,1566508980000,1566509040000,1566509100000,1566509160000,1566509220000,1566509280000,1566509340000,1566509400000,1566509460000,1566509520000,1566509580000,1566509640000,1566509700000,1566509760000,1566509820000,1566509880000,1566509940000,1566510000000,1566510060000,1566510120000,1566510180000,1566510240000,1566510300000,1566510360000,1566510420000,1566510480000,1566510540000,1566510600000,1566510660000,1566510720000,1566510780000,1566510840000,1566510900000,1566510960000,1566511020000,1566511080000,1566511140000,1566511200000,1566511260000,1566511320000,1566511380000,1566511440000,1566511500000,1566511560000,1566511620000,1566511680000,1566511740000,1566511800000,1566511860000,1566511920000,1566511980000,1566512040000,1566512100000,1566512160000,1566512220000,1566512280000,1566512340000,1566512400000,1566512460000,1566512520000,1566512580000,1566512640000,1566512700000,1566512760000,1566512820000,1566512880000,1566512940000,1566513000000,1566513060000,1566513120000,1566513180000,1566513240000,1566513300000,1566513360000,1566513420000,1566513480000,1566513540000,1566513600000,1566513660000,1566513720000,1566513780000,1566513840000,1566513900000,1566513960000,1566514020000,1566514080000,1566514140000,1566514200000,1566514260000,1566514320000,1566514380000,1566514440000,1566514500000,1566514560000,1566514620000,1566514680000,1566514740000,1566514800000,1566514860000,1566514920000,1566514980000,1566515040000,1566515100000,1566515160000,1566515220000,1566515280000,1566515340000,1566515400000,1566515460000,1566515520000,1566515580000,1566515640000,1566515700000,1566515760000,1566515820000,1566515880000,1566515940000,1566516000000,1566516060000,1566516120000,1566516180000,1566516240000,1566516300000,1566516360000,1566516420000,1566516480000,1566516540000,1566516600000,1566516660000,1566516720000,1566516780000,1566516840000,1566516900000,1566516960000,1566517020000,1566517080000,1566517140000,1566517200000,1566517260000,1566517320000,1566517380000,1566517440000,1566517500000,1566517560000,1566517620000,1566517680000,1566517740000,1566517800000,1566517860000,1566517920000,1566517980000,1566518040000,1566518100000,1566518160000,1566518220000,1566518280000,1566518340000,1566518400000,1566518460000,1566518520000,1566518580000,1566518640000,1566518700000,1566518760000,1566518820000,1566518880000,1566518940000,1566519000000,1566519060000,1566519120000,1566519180000,1566519240000,1566519300000,1566519360000,1566519420000,1566519480000,1566519540000,1566519600000,1566519660000,1566519720000,1566519780000,1566519840000,1566519900000,1566519960000,1566520020000,1566520080000,1566520140000,1566520200000,1566520260000,1566520320000,1566520380000,1566520440000,1566520500000,1566520560000,1566520620000,1566520680000,1566520740000,1566520800000,1566520860000,1566520920000,1566520980000,1566521040000,1566521100000,1566521160000,1566521220000,1566521280000,1566521340000,1566521400000,1566521460000,1566521520000,1566521580000,1566521640000,1566521700000,1566521760000,1566521820000,1566521880000,1566521940000,1566522000000,1566522060000,1566522120000,1566522180000,1566522240000,1566522300000,1566522360000,1566522420000,1566522480000,1566522540000,1566522600000,1566522660000,1566522720000,1566522780000,1566522840000,1566522900000,1566522960000,1566523020000,1566523080000,1566523140000,1566523200000,1566523260000,1566523320000,1566523380000,1566523440000,1566523500000,1566523560000,1566523620000,1566523680000,1566523740000,1566523800000,1566523860000,1566523920000,1566523980000,1566524040000,1566524100000,1566524160000,1566524220000,1566524280000,1566524340000,1566524400000,1566524460000,1566524520000,1566524580000,1566524640000,1566524700000,1566524760000,1566524820000,1566524880000,1566524940000,1566525000000,1566525060000,1566525120000,1566525180000,1566525240000,1566525300000,1566525360000,1566525420000,1566525480000,1566525540000,1566525600000,1566525660000,1566525720000,1566525780000,1566525840000,1566525900000,1566525960000,1566526020000,1566526080000,1566526140000,1566526200000,1566526260000,1566526320000,1566526380000,1566526440000,1566526500000,1566526560000,1566526620000,1566526680000,1566526740000,1566526800000,1566526860000,1566526920000,1566526980000,1566527040000,1566527100000,1566527160000,1566527220000,1566527280000,1566527340000,1566527400000,1566527460000,1566527520000,1566527580000,1566527640000,1566527700000,1566527760000,1566527820000,1566527880000,1566527940000,1566528000000,1566528060000,1566528120000,1566528180000,1566528240000,1566528300000,1566528360000,1566528420000,1566528480000,1566528540000,1566528600000,1566528660000,1566528720000,1566528780000,1566528840000,1566528900000,1566528960000,1566529020000,1566529080000,1566529140000,1566529200000,1566529260000,1566529320000,1566529380000,1566529440000,1566529500000,1566529560000,1566529620000,1566529680000,1566529740000,1566529800000,1566529860000,1566529920000,1566529980000,1566530040000,1566530100000,1566530160000,1566530220000,1566530280000,1566530340000,1566530400000,1566530460000,1566530520000,1566530580000,1566530640000,1566530700000,1566530760000,1566530820000,1566530880000,1566530940000,1566531000000,1566531060000,1566531120000,1566531180000,1566531240000,1566531300000,1566531360000,1566531420000,1566531480000,1566531540000,1566531600000,1566531660000,1566531720000,1566531780000,1566531840000,1566531900000,1566531960000,1566532020000,1566532080000,1566532140000,1566532200000,1566532260000,1566532320000,1566532380000,1566532440000,1566532500000,1566532560000,1566532620000,1566532680000,1566532740000,1566532800000,1566532860000,1566532920000,1566532980000,1566533040000,1566533100000,1566533160000,1566533220000,1566533280000,1566533340000,1566533400000,1566533460000,1566533520000,1566533580000,1566533640000,1566533700000,1566533760000,1566533820000,1566533880000,1566533940000,1566534000000,1566534060000,1566534120000,1566534180000,1566534240000,1566534300000,1566534360000,1566534420000,1566534480000,1566534540000,1566534600000,1566534660000,1566534720000,1566534780000,1566534840000,1566534900000,1566534960000,1566535020000,1566535080000,1566535140000,1566535200000,1566535260000,1566535320000,1566535380000,1566535440000,1566535500000,1566535560000,1566535620000,1566535680000,1566535740000,1566535800000,1566535860000,1566535920000,1566535980000,1566536040000,1566536100000,1566536160000,1566536220000,1566536280000,1566536340000,1566536400000,1566536460000,1566536520000,1566536580000,1566536640000,1566536700000,1566536760000,1566536820000,1566536880000,1566536940000,1566537000000,1566537060000,1566537120000,1566537180000,1566537240000,1566537300000,1566537360000,1566537420000,1566537480000,1566537540000,1566537600000,1566537660000,1566537720000,1566537780000,1566537840000,1566537900000,1566537960000,1566538020000,1566538080000,1566538140000,1566538200000,1566538260000,1566538320000,1566538380000,1566538440000,1566538500000,1566538560000,1566538620000,1566538680000,1566538740000,1566538800000,1566538860000,1566538920000,1566538980000,1566539040000,1566539100000,1566539160000,1566539220000,1566539280000,1566539340000,1566539400000,1566539460000,1566539520000,1566539580000,1566539640000,1566539700000,1566539760000,1566539820000,1566539880000,1566539940000,1566540000000,1566540060000,1566540120000,1566540180000,1566540240000,1566540300000,1566540360000,1566540420000,1566540480000,1566540540000,1566540600000,1566540660000,1566540720000,1566540780000,1566540840000,1566540900000,1566540960000,1566541020000,1566541080000,1566541140000,1566541200000,1566541260000,1566541320000,1566541380000,1566541440000,1566541500000,1566541560000,1566541620000,1566541680000,1566541740000,1566541800000,1566541860000,1566541920000,1566541980000,1566542040000,1566542100000,1566542160000,1566542220000,1566542280000,1566542340000,1566542400000,1566542460000,1566542520000,1566542580000,1566542640000,1566542700000,1566542760000,1566542820000,1566542880000,1566542940000,1566543000000,1566543060000,1566543120000,1566543180000,1566543240000,1566543300000,1566543360000,1566543420000,1566543480000,1566543540000,1566543600000,1566543660000,1566543720000,1566543780000,1566543840000,1566543900000,1566543960000,1566544020000,1566544080000,1566544140000,1566544200000,1566544260000,1566544320000,1566544380000,1566544440000,1566544500000,1566544560000,1566544620000,1566544680000,1566544740000,1566544800000,1566544860000,1566544920000,1566544980000,1566545040000,1566545100000,1566545160000,1566545220000,1566545280000,1566545340000,1566545400000,1566545460000,1566545520000,1566545580000,1566545640000,1566545700000,1566545760000,1566545820000,1566545880000,1566545940000,1566546000000,1566546060000,1566546120000,1566546180000,1566546240000,1566546300000,1566546360000,1566546420000,1566546480000,1566546540000,1566546600000,1566546660000,1566546720000,1566546780000,1566546840000,1566546900000,1566546960000,1566547020000,1566547080000,1566547140000,1566547200000,1566547260000,1566547320000,1566547380000,1566547440000,1566547500000,1566547560000,1566547620000,1566547680000,1566547740000,1566547800000,1566547860000,1566547920000,1566547980000,1566548040000,1566548100000,1566548160000,1566548220000,1566548280000,1566548340000,1566548400000,1566548460000,1566548520000,1566548580000,1566548640000,1566548700000,1566548760000,1566548820000,1566548880000,1566548940000,1566549000000,1566549060000,1566549120000,1566549180000,1566549240000,1566549300000,1566549360000,1566549420000,1566549480000,1566549540000,1566549600000,1566549660000,1566549720000,1566549780000,1566549840000,1566549900000,1566549960000,1566550020000,1566550080000,1566550140000,1566550200000,1566550260000,1566550320000,1566550380000,1566550440000,1566550500000,1566550560000,1566550620000,1566550680000,1566550740000,1566550800000,1566550860000,1566550920000,1566550980000,1566551040000,1566551100000,1566551160000,1566551220000,1566551280000,1566551340000,1566551400000,1566551460000,1566551520000,1566551580000,1566551640000,1566551700000,1566551760000,1566551820000,1566551880000,1566551940000,1566552000000,1566552060000,1566552120000,1566552180000,1566552240000,1566552300000,1566552360000,1566552420000,1566552480000,1566552540000,1566552600000,1566552660000,1566552720000,1566552780000,1566552840000,1566552900000,1566552960000,1566553020000,1566553080000,1566553140000,1566553200000,1566553260000,1566553320000,1566553380000,1566553440000,1566553500000,1566553560000,1566553620000,1566553680000,1566553740000,1566553800000,1566553860000,1566553920000,1566553980000,1566554040000,1566554100000,1566554160000,1566554220000,1566554280000,1566554340000,1566554400000,1566554460000,1566554520000,1566554580000,1566554640000,1566554700000,1566554760000,1566554820000,1566554880000,1566554940000,1566555000000,1566555060000,1566555120000,1566555180000,1566555240000,1566555300000,1566555360000,1566555420000,1566555480000,1566555540000,1566555600000,1566555660000,1566555720000,1566555780000,1566555840000,1566555900000,1566555960000,1566556020000,1566556080000,1566556140000,1566556200000,1566556260000,1566556320000,1566556380000,1566556440000,1566556500000,1566556560000,1566556620000,1566556680000,1566556740000,1566556800000,1566556860000,1566556920000,1566556980000,1566557040000,1566557100000,1566557160000,1566557220000,1566557280000,1566557340000,1566557400000,1566557460000,1566557520000,1566557580000,1566557640000,1566557700000,1566557760000,1566557820000,1566557880000,1566557940000,1566558000000,1566558060000,1566558120000,1566558180000,1566558240000,1566558300000,1566558360000,1566558420000,1566558480000,1566558540000,1566558600000,1566558660000,1566558720000,1566558780000,1566558840000,1566558900000,1566558960000,1566559020000,1566559080000,1566559140000,1566559200000,1566559260000,1566559320000,1566559380000,1566559440000,1566559500000,1566559560000,1566559620000,1566559680000,1566559740000,1566559800000,1566559860000,1566559920000,1566559980000,1566560040000,1566560100000,1566560160000,1566560220000,1566560280000,1566560340000,1566560400000,1566560460000,1566560520000,1566560580000,1566560640000,1566560700000,1566560760000,1566560820000,1566560880000,1566560940000,1566561000000,1566561060000,1566561120000,1566561180000,1566561240000,1566561300000,1566561360000,1566561420000,1566561480000,1566561540000,1566561600000,1566561660000,1566561720000,1566561780000,1566561840000,1566561900000,1566561960000,1566562020000,1566562080000,1566562140000,1566562200000,1566562260000,1566562320000,1566562380000,1566562440000,1566562500000,1566562560000,1566562620000,1566562680000,1566562740000,1566562800000,1566562860000,1566562920000,1566562980000,1566563040000,1566563100000,1566563160000,1566563220000,1566563280000,1566563340000,1566563400000,1566563460000,1566563520000,1566563580000,1566563640000,1566563700000,1566563760000,1566563820000,1566563880000,1566563940000,1566564000000,1566564060000,1566564120000,1566564180000,1566564240000,1566564300000,1566564360000,1566564420000,1566564480000,1566564540000,1566564600000,1566564660000,1566564720000,1566564780000,1566564840000,1566564900000,1566564960000,1566565020000,1566565080000,1566565140000,1566565200000,1566565260000,1566565320000,1566565380000,1566565440000,1566565500000,1566565560000,1566565620000,1566565680000,1566565740000,1566565800000,1566565860000,1566565920000,1566565980000,1566566040000,1566566100000,1566566160000,1566566220000,1566566280000,1566566340000,1566566400000,1566566460000,1566566520000,1566566580000,1566566640000,1566566700000,1566566760000,1566566820000,1566566880000,1566566940000,1566567000000,1566567060000,1566567120000,1566567180000,1566567240000,1566567300000,1566567360000,1566567420000,1566567480000,1566567540000,1566567600000,1566567660000,1566567720000,1566567780000,1566567840000,1566567900000,1566567960000,1566568020000,1566568080000,1566568140000,1566568200000,1566568260000,1566568320000,1566568380000,1566568440000,1566568500000,1566568560000,1566568620000,1566568680000,1566568740000,1566568800000,1566568860000,1566568920000,1566568980000,1566569040000,1566569100000,1566569160000,1566569220000,1566569280000,1566569340000,1566569400000,1566569460000,1566569520000,1566569580000,1566569640000,1566569700000,1566569760000,1566569820000,1566569880000,1566569940000,1566570000000,1566570060000,1566570120000,1566570180000,1566570240000,1566570300000,1566570360000,1566570420000,1566570480000,1566570540000,1566570600000,1566570660000,1566570720000,1566570780000,1566570840000,1566570900000,1566570960000,1566571020000,1566571080000,1566571140000,1566571200000,1566571260000,1566571320000,1566571380000,1566571440000,1566571500000,1566571560000,1566571620000,1566571680000,1566571740000,1566571800000,1566571860000,1566571920000,1566571980000,1566572040000,1566572100000,1566572160000,1566572220000,1566572280000,1566572340000,1566572400000,1566572460000,1566572520000,1566572580000,1566572640000,1566572700000,1566572760000,1566572820000,1566572880000,1566572940000,1566573000000,1566573060000,1566573120000,1566573180000,1566573240000,1566573300000,1566573360000,1566573420000,1566573480000,1566573540000,1566573600000,1566573660000,1566573720000,1566573780000,1566573840000,1566573900000,1566573960000,1566574020000,1566574080000,1566574140000,1566574200000,1566574260000,1566574320000,1566574380000,1566574440000,1566574500000,1566574560000,1566574620000,1566574680000,1566574740000,1566574800000,1566574860000,1566574920000,1566574980000,1566575040000,1566575100000,1566575160000,1566575220000,1566575280000,1566575340000,1566575400000,1566575460000,1566575520000,1566575580000,1566575640000,1566575700000,1566575760000,1566575820000,1566575880000,1566575940000,1566576000000,1566576060000,1566576120000,1566576180000,1566576240000,1566576300000,1566576360000,1566576420000,1566576480000,1566576540000,1566576600000,1566576660000,1566576720000,1566576780000,1566576840000,1566576900000,1566576960000,1566577020000,1566577080000,1566577140000,1566577200000,1566577260000,1566577320000,1566577380000,1566577440000,1566577500000,1566577560000,1566577620000,1566577680000,1566577740000,1566577800000,1566577860000,1566577920000,1566577980000,1566578040000,1566578100000,1566578160000,1566578220000,1566578280000,1566578340000,1566578400000,1566578460000,1566578520000,1566578580000,1566578640000,1566578700000,1566578760000,1566578820000,1566578880000,1566578940000,1566579000000,1566579060000,1566579120000,1566579180000,1566579240000,1566579300000,1566579360000,1566579420000,1566579480000,1566579540000,1566579600000,1566579660000,1566579720000,1566579780000,1566579840000,1566579900000,1566579960000,1566580020000,1566580080000,1566580140000,1566580200000,1566580260000,1566580320000,1566580380000,1566580440000,1566580500000,1566580560000,1566580620000,1566580680000,1566580740000,1566580800000,1566580860000,1566580920000,1566580980000,1566581040000,1566581100000,1566581160000,1566581220000,1566581280000,1566581340000,1566581400000,1566581460000,1566581520000,1566581580000,1566581640000,1566581700000,1566581760000,1566581820000,1566581880000,1566581940000,1566582000000,1566582060000,1566582120000,1566582180000,1566582240000,1566582300000,1566582360000,1566582420000,1566582480000,1566582540000,1566582600000,1566582660000,1566582720000,1566582780000,1566582840000,1566582900000,1566582960000,1566583020000,1566583080000,1566583140000,1566583200000,1566583260000,1566583320000,1566583380000,1566583440000,1566583500000,1566583560000,1566583620000,1566583680000,1566583740000,1566583800000,1566583860000,1566583920000,1566583980000,1566584040000,1566584100000,1566584160000,1566584220000,1566584280000,1566584340000,1566584400000,1566584460000,1566584520000,1566584580000,1566584640000,1566584700000,1566584760000,1566584820000,1566584880000,1566584940000,1566585000000,1566585060000,1566585120000,1566585180000,1566585240000,1566585300000,1566585360000,1566585420000,1566585480000,1566585540000,1566585600000,1566585660000,1566585720000,1566585780000,1566585840000,1566585900000,1566585960000,1566586020000,1566586080000,1566586140000,1566586200000,1566586260000,1566586320000,1566586380000,1566586440000,1566586500000,1566586560000,1566586620000,1566586680000,1566586740000,1566586800000,1566586860000,1566586920000,1566586980000,1566587040000,1566587100000,1566587160000,1566587220000,1566587280000,1566587340000,1566587400000,1566587460000,1566587520000,1566587580000,1566587640000,1566587700000,1566587760000,1566587820000,1566587880000,1566587940000,1566588000000,1566588060000,1566588120000,1566588180000,1566588240000,1566588300000,1566588360000,1566588420000,1566588480000,1566588540000,1566588600000,1566588660000,1566588720000,1566588780000,1566588840000,1566588900000,1566588960000,1566589020000,1566589080000,1566589140000,1566589200000,1566589260000,1566589320000,1566589380000,1566589440000,1566589500000,1566589560000,1566589620000,1566589680000,1566589740000,1566589800000,1566589860000,1566589920000,1566589980000,1566590040000,1566590100000,1566590160000,1566590220000,1566590280000,1566590340000,1566590400000,1566590460000,1566590520000,1566590580000,1566590640000,1566590700000,1566590760000,1566590820000,1566590880000,1566590940000,1566591000000,1566591060000,1566591120000,1566591180000,1566591240000,1566591300000,1566591360000,1566591420000,1566591480000,1566591540000,1566591600000,1566591660000,1566591720000,1566591780000,1566591840000,1566591900000,1566591960000,1566592020000,1566592080000,1566592140000,1566592200000,1566592260000,1566592320000,1566592380000,1566592440000,1566592500000,1566592560000,1566592620000,1566592680000,1566592740000,1566592800000,1566592860000,1566592920000,1566592980000,1566593040000,1566593100000,1566593160000,1566593220000,1566593280000,1566593340000,1566593400000,1566593460000,1566593520000,1566593580000,1566593640000,1566593700000,1566593760000,1566593820000,1566593880000,1566593940000,1566594000000,1566594060000,1566594120000,1566594180000,1566594240000,1566594300000,1566594360000,1566594420000,1566594480000,1566594540000,1566594600000,1566594660000,1566594720000,1566594780000,1566594840000,1566594900000,1566594960000,1566595020000,1566595080000,1566595140000,1566595200000,1566595260000,1566595320000,1566595380000,1566595440000,1566595500000,1566595560000,1566595620000,1566595680000,1566595740000,1566595800000,1566595860000,1566595920000,1566595980000,1566596040000,1566596100000,1566596160000,1566596220000,1566596280000,1566596340000,1566596400000,1566596460000,1566596520000,1566596580000,1566596640000,1566596700000,1566596760000,1566596820000,1566596880000,1566596940000,1566597000000,1566597060000,1566597120000,1566597180000,1566597240000,1566597300000,1566597360000,1566597420000,1566597480000,1566597540000,1566597600000,1566597660000,1566597720000,1566597780000,1566597840000,1566597900000,1566597960000,1566598020000,1566598080000,1566598140000,1566598200000,1566598260000,1566598320000,1566598380000,1566598440000,1566598500000,1566598560000,1566598620000,1566598680000,1566598740000,1566598800000,1566598860000,1566598920000,1566598980000,1566599040000,1566599100000,1566599160000,1566599220000,1566599280000,1566599340000,1566599400000,1566599460000,1566599520000,1566599580000,1566599640000,1566599700000,1566599760000,1566599820000,1566599880000,1566599940000,1566600000000,1566600060000,1566600120000,1566600180000,1566600240000,1566600300000,1566600360000,1566600420000,1566600480000,1566600540000,1566600600000,1566600660000,1566600720000,1566600780000,1566600840000,1566600900000,1566600960000,1566601020000,1566601080000,1566601140000,1566601200000,1566601260000,1566601320000,1566601380000,1566601440000,1566601500000,1566601560000,1566601620000,1566601680000,1566601740000,1566601800000,1566601860000,1566601920000,1566601980000,1566602040000,1566602100000,1566602160000,1566602220000,1566602280000,1566602340000,1566602400000,1566602460000,1566602520000,1566602580000,1566602640000,1566602700000,1566602760000,1566602820000,1566602880000,1566602940000,1566603000000,1566603060000,1566603120000,1566603180000,1566603240000,1566603300000,1566603360000,1566603420000,1566603480000,1566603540000,1566603600000,1566603660000,1566603720000,1566603780000,1566603840000,1566603900000,1566603960000,1566604020000,1566604080000,1566604140000,1566604200000,1566604260000,1566604320000,1566604380000,1566604440000,1566604500000,1566604560000,1566604620000,1566604680000,1566604740000,1566604800000,1566604860000,1566604920000,1566604980000,1566605040000,1566605100000,1566605160000,1566605220000,1566605280000,1566605340000,1566605400000,1566605460000,1566605520000,1566605580000,1566605640000,1566605700000,1566605760000,1566605820000,1566605880000,1566605940000,1566606000000,1566606060000,1566606120000,1566606180000,1566606240000,1566606300000,1566606360000,1566606420000,1566606480000,1566606540000,1566606600000,1566606660000,1566606720000,1566606780000,1566606840000,1566606900000,1566606960000,1566607020000,1566607080000,1566607140000,1566607200000,1566607260000,1566607320000,1566607380000,1566607440000,1566607500000,1566607560000,1566607620000,1566607680000,1566607740000,1566607800000,1566607860000,1566607920000,1566607980000,1566608040000,1566608100000,1566608160000,1566608220000,1566608280000,1566608340000,1566608400000,1566608460000,1566608520000,1566608580000,1566608640000,1566608700000,1566608760000,1566608820000,1566608880000,1566608940000,1566609000000,1566609060000,1566609120000,1566609180000,1566609240000,1566609300000,1566609360000,1566609420000,1566609480000,1566609540000,1566609600000,1566609660000,1566609720000,1566609780000,1566609840000,1566609900000,1566609960000,1566610020000,1566610080000,1566610140000,1566610200000,1566610260000,1566610320000,1566610380000,1566610440000,1566610500000,1566610560000,1566610620000,1566610680000,1566610740000,1566610800000,1566610860000,1566610920000,1566610980000,1566611040000,1566611100000,1566611160000,1566611220000,1566611280000,1566611340000,1566611400000,1566611460000,1566611520000,1566611580000,1566611640000,1566611700000,1566611760000,1566611820000,1566611880000,1566611940000,1566612000000,1566612060000,1566612120000,1566612180000,1566612240000,1566612300000,1566612360000,1566612420000,1566612480000,1566612540000,1566612600000,1566612660000,1566612720000,1566612780000,1566612840000,1566612900000,1566612960000,1566613020000,1566613080000,1566613140000,1566613200000,1566613260000,1566613320000,1566613380000,1566613440000,1566613500000,1566613560000,1566613620000,1566613680000,1566613740000,1566613800000,1566613860000,1566613920000,1566613980000,1566614040000,1566614100000,1566614160000,1566614220000,1566614280000,1566614340000,1566614400000,1566614460000,1566614520000,1566614580000,1566614640000,1566614700000,1566614760000,1566614820000,1566614880000,1566614940000,1566615000000,1566615060000,1566615120000,1566615180000,1566615240000,1566615300000,1566615360000,1566615420000,1566615480000,1566615540000,1566615600000,1566615660000,1566615720000,1566615780000,1566615840000,1566615900000,1566615960000,1566616020000,1566616080000,1566616140000,1566616200000,1566616260000,1566616320000,1566616380000,1566616440000,1566616500000,1566616560000,1566616620000,1566616680000,1566616740000,1566616800000,1566616860000,1566616920000,1566616980000,1566617040000,1566617100000,1566617160000,1566617220000,1566617280000,1566617340000,1566617400000,1566617460000,1566617520000,1566617580000,1566617640000,1566617700000,1566617760000,1566617820000,1566617880000,1566617940000,1566618000000,1566618060000,1566618120000,1566618180000,1566618240000,1566618300000,1566618360000,1566618420000,1566618480000,1566618540000,1566618600000,1566618660000,1566618720000,1566618780000,1566618840000,1566618900000,1566618960000,1566619020000,1566619080000,1566619140000,1566619200000,1566619260000,1566619320000,1566619380000,1566619440000,1566619500000,1566619560000,1566619620000,1566619680000,1566619740000,1566619800000,1566619860000,1566619920000,1566619980000,1566620040000,1566620100000,1566620160000,1566620220000,1566620280000,1566620340000,1566620400000,1566620460000,1566620520000,1566620580000,1566620640000,1566620700000,1566620760000,1566620820000,1566620880000,1566620940000,1566621000000,1566621060000,1566621120000,1566621180000,1566621240000,1566621300000,1566621360000,1566621420000,1566621480000,1566621540000,1566621600000,1566621660000,1566621720000,1566621780000,1566621840000,1566621900000,1566621960000,1566622020000,1566622080000,1566622140000,1566622200000,1566622260000,1566622320000,1566622380000,1566622440000,1566622500000,1566622560000,1566622620000,1566622680000,1566622740000,1566622800000,1566622860000,1566622920000,1566622980000,1566623040000,1566623100000,1566623160000,1566623220000,1566623280000,1566623340000,1566623400000,1566623460000,1566623520000,1566623580000,1566623640000,1566623700000,1566623760000,1566623820000,1566623880000,1566623940000,1566624000000,1566624060000,1566624120000,1566624180000,1566624240000,1566624300000,1566624360000,1566624420000,1566624480000,1566624540000,1566624600000,1566624660000,1566624720000,1566624780000,1566624840000,1566624900000,1566624960000,1566625020000,1566625080000,1566625140000,1566625200000,1566625260000,1566625320000,1566625380000,1566625440000,1566625500000,1566625560000,1566625620000,1566625680000,1566625740000,1566625800000,1566625860000,1566625920000,1566625980000,1566626040000,1566626100000,1566626160000,1566626220000,1566626280000,1566626340000,1566626400000,1566626460000,1566626520000,1566626580000,1566626640000,1566626700000,1566626760000,1566626820000,1566626880000,1566626940000,1566627000000,1566627060000,1566627120000,1566627180000,1566627240000,1566627300000,1566627360000,1566627420000,1566627480000,1566627540000,1566627600000,1566627660000,1566627720000,1566627780000,1566627840000,1566627900000,1566627960000,1566628020000,1566628080000,1566628140000,1566628200000,1566628260000,1566628320000,1566628380000,1566628440000,1566628500000,1566628560000,1566628620000,1566628680000,1566628740000,1566628800000,1566628860000,1566628920000,1566628980000,1566629040000,1566629100000,1566629160000,1566629220000,1566629280000,1566629340000,1566629400000,1566629460000,1566629520000,1566629580000,1566629640000,1566629700000,1566629760000,1566629820000,1566629880000,1566629940000,1566630000000,1566630060000,1566630120000,1566630180000,1566630240000,1566630300000,1566630360000,1566630420000,1566630480000,1566630540000,1566630600000,1566630660000,1566630720000,1566630780000,1566630840000,1566630900000,1566630960000,1566631020000,1566631080000,1566631140000,1566631200000,1566631260000,1566631320000,1566631380000,1566631440000,1566631500000,1566631560000,1566631620000,1566631680000,1566631740000,1566631800000,1566631860000,1566631920000,1566631980000,1566632040000,1566632100000,1566632160000,1566632220000,1566632280000,1566632340000,1566632400000,1566632460000,1566632520000,1566632580000,1566632640000,1566632700000,1566632760000,1566632820000,1566632880000,1566632940000,1566633000000,1566633060000,1566633120000,1566633180000,1566633240000,1566633300000,1566633360000,1566633420000,1566633480000,1566633540000,1566633600000,1566633660000,1566633720000,1566633780000,1566633840000,1566633900000,1566633960000,1566634020000,1566634080000,1566634140000,1566634200000,1566634260000,1566634320000,1566634380000,1566634440000,1566634500000,1566634560000,1566634620000,1566634680000,1566634740000,1566634800000,1566634860000,1566634920000,1566634980000,1566635040000,1566635100000,1566635160000,1566635220000,1566635280000,1566635340000,1566635400000,1566635460000,1566635520000,1566635580000,1566635640000,1566635700000,1566635760000,1566635820000,1566635880000,1566635940000,1566636000000,1566636060000,1566636120000,1566636180000,1566636240000,1566636300000,1566636360000,1566636420000,1566636480000,1566636540000,1566636600000,1566636660000,1566636720000,1566636780000,1566636840000,1566636900000,1566636960000,1566637020000,1566637080000,1566637140000,1566637200000,1566637260000,1566637320000,1566637380000,1566637440000,1566637500000,1566637560000,1566637620000,1566637680000,1566637740000,1566637800000,1566637860000,1566637920000,1566637980000,1566638040000,1566638100000,1566638160000,1566638220000,1566638280000,1566638340000,1566638400000,1566638460000,1566638520000,1566638580000,1566638640000,1566638700000,1566638760000,1566638820000,1566638880000,1566638940000,1566639000000,1566639060000,1566639120000,1566639180000,1566639240000,1566639300000,1566639360000,1566639420000,1566639480000,1566639540000,1566639600000,1566639660000,1566639720000,1566639780000,1566639840000,1566639900000,1566639960000,1566640020000,1566640080000,1566640140000,1566640200000,1566640260000,1566640320000,1566640380000,1566640440000,1566640500000,1566640560000,1566640620000,1566640680000,1566640740000,1566640800000,1566640860000,1566640920000,1566640980000,1566641040000,1566641100000,1566641160000,1566641220000,1566641280000,1566641340000,1566641400000,1566641460000,1566641520000,1566641580000,1566641640000,1566641700000,1566641760000,1566641820000,1566641880000,1566641940000,1566642000000,1566642060000,1566642120000,1566642180000,1566642240000,1566642300000,1566642360000,1566642420000,1566642480000,1566642540000,1566642600000,1566642660000,1566642720000,1566642780000,1566642840000,1566642900000,1566642960000,1566643020000,1566643080000,1566643140000,1566643200000,1566643260000,1566643320000,1566643380000,1566643440000,1566643500000,1566643560000,1566643620000,1566643680000,1566643740000,1566643800000,1566643860000,1566643920000,1566643980000,1566644040000,1566644100000,1566644160000,1566644220000,1566644280000,1566644340000,1566644400000,1566644460000,1566644520000,1566644580000,1566644640000,1566644700000,1566644760000,1566644820000,1566644880000,1566644940000,1566645000000,1566645060000,1566645120000,1566645180000,1566645240000,1566645300000,1566645360000,1566645420000,1566645480000,1566645540000,1566645600000,1566645660000,1566645720000,1566645780000,1566645840000,1566645900000,1566645960000,1566646020000,1566646080000,1566646140000,1566646200000,1566646260000,1566646320000,1566646380000,1566646440000,1566646500000,1566646560000,1566646620000,1566646680000,1566646740000,1566646800000,1566646860000,1566646920000,1566646980000,1566647040000,1566647100000,1566647160000,1566647220000,1566647280000,1566647340000,1566647400000,1566647460000,1566647520000,1566647580000,1566647640000,1566647700000,1566647760000,1566647820000,1566647880000,1566647940000,1566648000000,1566648060000,1566648120000,1566648180000,1566648240000,1566648300000,1566648360000,1566648420000,1566648480000,1566648540000,1566648600000,1566648660000,1566648720000,1566648780000,1566648840000,1566648900000,1566648960000,1566649020000,1566649080000,1566649140000,1566649200000,1566649260000,1566649320000,1566649380000,1566649440000,1566649500000,1566649560000,1566649620000,1566649680000,1566649740000,1566649800000,1566649860000,1566649920000,1566649980000,1566650040000,1566650100000,1566650160000,1566650220000,1566650280000,1566650340000,1566650400000,1566650460000,1566650520000,1566650580000,1566650640000,1566650700000,1566650760000,1566650820000,1566650880000,1566650940000,1566651000000,1566651060000,1566651120000,1566651180000,1566651240000,1566651300000,1566651360000,1566651420000,1566651480000,1566651540000,1566651600000,1566651660000,1566651720000,1566651780000,1566651840000,1566651900000,1566651960000,1566652020000,1566652080000,1566652140000,1566652200000,1566652260000,1566652320000,1566652380000,1566652440000,1566652500000,1566652560000,1566652620000,1566652680000,1566652740000,1566652800000,1566652860000,1566652920000,1566652980000,1566653040000,1566653100000,1566653160000,1566653220000,1566653280000,1566653340000,1566653400000,1566653460000,1566653520000,1566653580000,1566653640000,1566653700000,1566653760000,1566653820000,1566653880000,1566653940000,1566654000000,1566654060000,1566654120000,1566654180000,1566654240000,1566654300000,1566654360000,1566654420000,1566654480000,1566654540000,1566654600000,1566654660000,1566654720000,1566654780000,1566654840000,1566654900000,1566654960000,1566655020000,1566655080000,1566655140000,1566655200000,1566655260000,1566655320000,1566655380000,1566655440000,1566655500000,1566655560000,1566655620000,1566655680000,1566655740000,1566655800000,1566655860000,1566655920000,1566655980000,1566656040000,1566656100000,1566656160000,1566656220000,1566656280000,1566656340000,1566656400000,1566656460000,1566656520000,1566656580000,1566656640000,1566656700000,1566656760000,1566656820000,1566656880000,1566656940000,1566657000000,1566657060000,1566657120000,1566657180000,1566657240000,1566657300000,1566657360000,1566657420000,1566657480000,1566657540000,1566657600000,1566657660000,1566657720000,1566657780000,1566657840000,1566657900000,1566657960000,1566658020000,1566658080000,1566658140000,1566658200000,1566658260000,1566658320000,1566658380000,1566658440000,1566658500000,1566658560000,1566658620000,1566658680000,1566658740000,1566658800000,1566658860000,1566658920000,1566658980000,1566659040000,1566659100000,1566659160000,1566659220000,1566659280000,1566659340000,1566659400000,1566659460000,1566659520000,1566659580000,1566659640000,1566659700000,1566659760000,1566659820000,1566659880000,1566659940000,1566660000000,1566660060000,1566660120000,1566660180000,1566660240000,1566660300000,1566660360000,1566660420000,1566660480000,1566660540000,1566660600000,1566660660000,1566660720000,1566660780000,1566660840000,1566660900000,1566660960000,1566661020000,1566661080000,1566661140000,1566661200000,1566661260000,1566661320000,1566661380000,1566661440000,1566661500000,1566661560000,1566661620000,1566661680000,1566661740000,1566661800000,1566661860000,1566661920000,1566661980000,1566662040000,1566662100000,1566662160000,1566662220000,1566662280000,1566662340000,1566662400000,1566662460000,1566662520000,1566662580000,1566662640000,1566662700000,1566662760000,1566662820000,1566662880000,1566662940000,1566663000000,1566663060000,1566663120000,1566663180000,1566663240000,1566663300000,1566663360000,1566663420000,1566663480000,1566663540000,1566663600000,1566663660000,1566663720000,1566663780000,1566663840000,1566663900000,1566663960000,1566664020000,1566664080000,1566664140000,1566664200000,1566664260000,1566664320000,1566664380000,1566664440000,1566664500000,1566664560000,1566664620000,1566664680000,1566664740000,1566664800000,1566664860000,1566664920000,1566664980000,1566665040000,1566665100000,1566665160000,1566665220000,1566665280000,1566665340000,1566665400000,1566665460000,1566665520000,1566665580000,1566665640000,1566665700000,1566665760000,1566665820000,1566665880000,1566665940000,1566666000000,1566666060000,1566666120000,1566666180000,1566666240000,1566666300000,1566666360000,1566666420000,1566666480000,1566666540000,1566666600000,1566666660000,1566666720000,1566666780000,1566666840000,1566666900000,1566666960000,1566667020000,1566667080000,1566667140000,1566667200000,1566667260000,1566667320000,1566667380000,1566667440000,1566667500000,1566667560000,1566667620000,1566667680000,1566667740000,1566667800000,1566667860000,1566667920000,1566667980000,1566668040000,1566668100000,1566668160000,1566668220000,1566668280000,1566668340000,1566668400000,1566668460000,1566668520000,1566668580000,1566668640000,1566668700000,1566668760000,1566668820000,1566668880000,1566668940000,1566669000000,1566669060000,1566669120000,1566669180000,1566669240000,1566669300000,1566669360000,1566669420000,1566669480000,1566669540000,1566669600000,1566669660000,1566669720000,1566669780000,1566669840000,1566669900000,1566669960000,1566670020000,1566670080000,1566670140000,1566670200000,1566670260000,1566670320000,1566670380000,1566670440000,1566670500000,1566670560000,1566670620000,1566670680000,1566670740000,1566670800000,1566670860000,1566670920000,1566670980000,1566671040000,1566671100000,1566671160000,1566671220000,1566671280000,1566671340000,1566671400000,1566671460000,1566671520000,1566671580000,1566671640000,1566671700000,1566671760000,1566671820000,1566671880000,1566671940000,1566672000000,1566672060000,1566672120000,1566672180000,1566672240000,1566672300000,1566672360000,1566672420000,1566672480000,1566672540000,1566672600000,1566672660000,1566672720000,1566672780000,1566672840000,1566672900000,1566672960000,1566673020000,1566673080000,1566673140000,1566673200000,1566673260000,1566673320000,1566673380000,1566673440000,1566673500000,1566673560000,1566673620000,1566673680000,1566673740000,1566673800000,1566673860000,1566673920000,1566673980000,1566674040000,1566674100000,1566674160000,1566674220000,1566674280000,1566674340000,1566674400000,1566674460000,1566674520000,1566674580000,1566674640000,1566674700000,1566674760000,1566674820000,1566674880000,1566674940000,1566675000000,1566675060000,1566675120000,1566675180000,1566675240000,1566675300000,1566675360000,1566675420000,1566675480000,1566675540000,1566675600000,1566675660000,1566675720000,1566675780000,1566675840000,1566675900000,1566675960000,1566676020000,1566676080000,1566676140000,1566676200000,1566676260000,1566676320000,1566676380000,1566676440000,1566676500000,1566676560000,1566676620000,1566676680000,1566676740000,1566676800000,1566676860000,1566676920000,1566676980000,1566677040000,1566677100000,1566677160000,1566677220000,1566677280000,1566677340000,1566677400000,1566677460000,1566677520000,1566677580000,1566677640000,1566677700000,1566677760000,1566677820000,1566677880000,1566677940000,1566678000000,1566678060000,1566678120000,1566678180000,1566678240000,1566678300000,1566678360000,1566678420000,1566678480000,1566678540000,1566678600000,1566678660000,1566678720000,1566678780000,1566678840000,1566678900000,1566678960000,1566679020000,1566679080000,1566679140000,1566679200000,1566679260000,1566679320000,1566679380000,1566679440000,1566679500000,1566679560000,1566679620000,1566679680000,1566679740000,1566679800000,1566679860000,1566679920000,1566679980000,1566680040000,1566680100000,1566680160000,1566680220000,1566680280000,1566680340000,1566680400000,1566680460000,1566680520000,1566680580000,1566680640000,1566680700000,1566680760000,1566680820000,1566680880000,1566680940000,1566681000000,1566681060000,1566681120000,1566681180000,1566681240000,1566681300000,1566681360000,1566681420000,1566681480000,1566681540000,1566681600000,1566681660000,1566681720000,1566681780000,1566681840000,1566681900000,1566681960000,1566682020000,1566682080000,1566682140000,1566682200000,1566682260000,1566682320000,1566682380000,1566682440000,1566682500000,1566682560000,1566682620000,1566682680000,1566682740000,1566682800000,1566682860000,1566682920000,1566682980000,1566683040000,1566683100000,1566683160000,1566683220000,1566683280000,1566683340000,1566683400000,1566683460000,1566683520000,1566683580000,1566683640000,1566683700000,1566683760000,1566683820000,1566683880000,1566683940000,1566684000000,1566684060000,1566684120000,1566684180000,1566684240000,1566684300000,1566684360000,1566684420000,1566684480000,1566684540000,1566684600000,1566684660000,1566684720000,1566684780000,1566684840000,1566684900000,1566684960000,1566685020000,1566685080000,1566685140000,1566685200000,1566685260000,1566685320000,1566685380000,1566685440000,1566685500000,1566685560000,1566685620000,1566685680000,1566685740000,1566685800000,1566685860000,1566685920000,1566685980000,1566686040000,1566686100000,1566686160000,1566686220000,1566686280000,1566686340000,1566686400000,1566686460000,1566686520000,1566686580000,1566686640000,1566686700000,1566686760000,1566686820000,1566686880000,1566686940000,1566687000000,1566687060000,1566687120000,1566687180000,1566687240000,1566687300000,1566687360000,1566687420000,1566687480000,1566687540000,1566687600000,1566687660000,1566687720000,1566687780000,1566687840000,1566687900000,1566687960000,1566688020000,1566688080000,1566688140000,1566688200000,1566688260000,1566688320000,1566688380000,1566688440000,1566688500000,1566688560000,1566688620000,1566688680000,1566688740000,1566688800000,1566688860000,1566688920000,1566688980000,1566689040000,1566689100000,1566689160000,1566689220000,1566689280000,1566689340000,1566689400000,1566689460000,1566689520000,1566689580000,1566689640000,1566689700000,1566689760000,1566689820000,1566689880000,1566689940000,1566690000000,1566690060000,1566690120000,1566690180000,1566690240000,1566690300000,1566690360000,1566690420000,1566690480000,1566690540000,1566690600000,1566690660000,1566690720000,1566690780000,1566690840000,1566690900000,1566690960000,1566691020000,1566691080000,1566691140000,1566691200000,1566691260000,1566691320000,1566691380000,1566691440000,1566691500000,1566691560000,1566691620000,1566691680000,1566691740000,1566691800000,1566691860000,1566691920000,1566691980000,1566692040000,1566692100000,1566692160000,1566692220000,1566692280000,1566692340000,1566692400000,1566692460000,1566692520000,1566692580000,1566692640000,1566692700000,1566692760000,1566692820000,1566692880000,1566692940000,1566693000000,1566693060000,1566693120000,1566693180000,1566693240000,1566693300000,1566693360000,1566693420000,1566693480000,1566693540000,1566693600000,1566693660000,1566693720000,1566693780000,1566693840000,1566693900000,1566693960000,1566694020000,1566694080000,1566694140000,1566694200000,1566694260000,1566694320000,1566694380000,1566694440000,1566694500000,1566694560000,1566694620000,1566694680000,1566694740000,1566694800000,1566694860000,1566694920000,1566694980000,1566695040000,1566695100000,1566695160000,1566695220000,1566695280000,1566695340000,1566695400000,1566695460000,1566695520000,1566695580000,1566695640000,1566695700000,1566695760000,1566695820000,1566695880000,1566695940000,1566696000000,1566696060000,1566696120000,1566696180000,1566696240000,1566696300000,1566696360000,1566696420000,1566696480000,1566696540000,1566696600000,1566696660000,1566696720000,1566696780000,1566696840000,1566696900000,1566696960000,1566697020000,1566697080000,1566697140000,1566697200000,1566697260000,1566697320000,1566697380000,1566697440000,1566697500000,1566697560000,1566697620000,1566697680000,1566697740000,1566697800000,1566697860000,1566697920000,1566697980000,1566698040000,1566698100000,1566698160000,1566698220000,1566698280000,1566698340000,1566698400000,1566698460000,1566698520000,1566698580000,1566698640000,1566698700000,1566698760000,1566698820000,1566698880000,1566698940000,1566699000000,1566699060000,1566699120000,1566699180000,1566699240000,1566699300000,1566699360000,1566699420000,1566699480000,1566699540000,1566699600000,1566699660000,1566699720000,1566699780000,1566699840000,1566699900000,1566699960000,1566700020000,1566700080000,1566700140000,1566700200000,1566700260000,1566700320000,1566700380000,1566700440000,1566700500000,1566700560000,1566700620000,1566700680000,1566700740000,1566700800000,1566700860000,1566700920000,1566700980000,1566701040000,1566701100000,1566701160000,1566701220000,1566701280000,1566701340000,1566701400000,1566701460000,1566701520000,1566701580000,1566701640000,1566701700000,1566701760000,1566701820000,1566701880000,1566701940000,1566702000000,1566702060000,1566702120000,1566702180000,1566702240000,1566702300000,1566702360000,1566702420000,1566702480000,1566702540000,1566702600000,1566702660000,1566702720000,1566702780000,1566702840000,1566702900000,1566702960000,1566703020000,1566703080000,1566703140000,1566703200000,1566703260000,1566703320000,1566703380000,1566703440000,1566703500000,1566703560000,1566703620000,1566703680000,1566703740000,1566703800000,1566703860000,1566703920000,1566703980000,1566704040000,1566704100000,1566704160000,1566704220000,1566704280000,1566704340000,1566704400000,1566704460000,1566704520000,1566704580000,1566704640000,1566704700000,1566704760000,1566704820000,1566704880000,1566704940000,1566705000000,1566705060000,1566705120000,1566705180000,1566705240000,1566705300000,1566705360000,1566705420000,1566705480000,1566705540000,1566705600000,1566705660000,1566705720000,1566705780000,1566705840000,1566705900000,1566705960000,1566706020000,1566706080000,1566706140000,1566706200000,1566706260000,1566706320000,1566706380000,1566706440000,1566706500000,1566706560000,1566706620000,1566706680000,1566706740000,1566706800000,1566706860000,1566706920000,1566706980000,1566707040000,1566707100000,1566707160000,1566707220000,1566707280000,1566707340000,1566707400000,1566707460000,1566707520000,1566707580000,1566707640000,1566707700000,1566707760000,1566707820000,1566707880000,1566707940000,1566708000000,1566708060000,1566708120000,1566708180000,1566708240000,1566708300000,1566708360000,1566708420000,1566708480000,1566708540000,1566708600000,1566708660000,1566708720000,1566708780000,1566708840000,1566708900000,1566708960000,1566709020000,1566709080000,1566709140000,1566709200000,1566709260000,1566709320000,1566709380000,1566709440000,1566709500000,1566709560000,1566709620000,1566709680000,1566709740000,1566709800000,1566709860000,1566709920000,1566709980000,1566710040000,1566710100000,1566710160000,1566710220000,1566710280000,1566710340000,1566710400000,1566710460000,1566710520000,1566710580000,1566710640000,1566710700000,1566710760000,1566710820000,1566710880000,1566710940000,1566711000000,1566711060000,1566711120000,1566711180000,1566711240000,1566711300000,1566711360000,1566711420000,1566711480000,1566711540000,1566711600000,1566711660000,1566711720000,1566711780000,1566711840000,1566711900000,1566711960000,1566712020000,1566712080000,1566712140000,1566712200000,1566712260000,1566712320000,1566712380000,1566712440000,1566712500000,1566712560000,1566712620000,1566712680000,1566712740000,1566712800000,1566712860000,1566712920000,1566712980000,1566713040000,1566713100000,1566713160000,1566713220000,1566713280000,1566713340000,1566713400000,1566713460000,1566713520000,1566713580000,1566713640000,1566713700000,1566713760000,1566713820000,1566713880000,1566713940000,1566714000000,1566714060000,1566714120000,1566714180000,1566714240000,1566714300000,1566714360000,1566714420000,1566714480000,1566714540000,1566714600000,1566714660000,1566714720000,1566714780000,1566714840000,1566714900000,1566714960000,1566715020000,1566715080000,1566715140000,1566715200000,1566715260000,1566715320000,1566715380000,1566715440000,1566715500000,1566715560000,1566715620000,1566715680000,1566715740000,1566715800000,1566715860000,1566715920000,1566715980000,1566716040000,1566716100000,1566716160000,1566716220000,1566716280000,1566716340000,1566716400000,1566716460000,1566716520000,1566716580000,1566716640000,1566716700000,1566716760000,1566716820000,1566716880000,1566716940000,1566717000000,1566717060000,1566717120000,1566717180000,1566717240000,1566717300000,1566717360000,1566717420000,1566717480000,1566717540000,1566717600000,1566717660000,1566717720000,1566717780000,1566717840000,1566717900000,1566717960000,1566718020000,1566718080000,1566718140000,1566718200000,1566718260000,1566718320000,1566718380000,1566718440000,1566718500000,1566718560000,1566718620000,1566718680000,1566718740000,1566718800000,1566718860000,1566718920000,1566718980000,1566719040000,1566719100000,1566719160000,1566719220000,1566719280000,1566719340000,1566719400000,1566719460000,1566719520000,1566719580000,1566719640000,1566719700000,1566719760000,1566719820000,1566719880000,1566719940000,1566720000000,1566720060000,1566720120000,1566720180000,1566720240000,1566720300000,1566720360000,1566720420000,1566720480000,1566720540000,1566720600000,1566720660000,1566720720000,1566720780000,1566720840000,1566720900000,1566720960000,1566721020000,1566721080000,1566721140000,1566721200000,1566721260000,1566721320000,1566721380000,1566721440000,1566721500000,1566721560000,1566721620000,1566721680000,1566721740000,1566721800000,1566721860000,1566721920000,1566721980000,1566722040000,1566722100000,1566722160000,1566722220000,1566722280000,1566722340000,1566722400000,1566722460000,1566722520000,1566722580000,1566722640000,1566722700000,1566722760000,1566722820000,1566722880000,1566722940000,1566723000000,1566723060000,1566723120000,1566723180000,1566723240000,1566723300000,1566723360000,1566723420000,1566723480000,1566723540000,1566723600000,1566723660000,1566723720000,1566723780000,1566723840000,1566723900000,1566723960000,1566724020000,1566724080000,1566724140000,1566724200000,1566724260000,1566724320000,1566724380000,1566724440000,1566724500000,1566724560000,1566724620000,1566724680000,1566724740000,1566724800000,1566724860000,1566724920000,1566724980000,1566725040000,1566725100000,1566725160000,1566725220000,1566725280000,1566725340000,1566725400000,1566725460000,1566725520000,1566725580000,1566725640000,1566725700000,1566725760000,1566725820000,1566725880000,1566725940000,1566726000000,1566726060000,1566726120000,1566726180000,1566726240000,1566726300000,1566726360000,1566726420000,1566726480000,1566726540000,1566726600000,1566726660000,1566726720000,1566726780000,1566726840000,1566726900000,1566726960000,1566727020000,1566727080000,1566727140000,1566727200000,1566727260000,1566727320000,1566727380000,1566727440000,1566727500000,1566727560000,1566727620000,1566727680000,1566727740000,1566727800000,1566727860000,1566727920000,1566727980000,1566728040000,1566728100000,1566728160000,1566728220000,1566728280000,1566728340000,1566728400000,1566728460000,1566728520000,1566728580000,1566728640000,1566728700000,1566728760000,1566728820000,1566728880000,1566728940000,1566729000000,1566729060000,1566729120000,1566729180000,1566729240000,1566729300000,1566729360000,1566729420000,1566729480000,1566729540000,1566729600000,1566729660000,1566729720000,1566729780000,1566729840000,1566729900000,1566729960000,1566730020000,1566730080000,1566730140000,1566730200000,1566730260000,1566730320000,1566730380000,1566730440000,1566730500000,1566730560000,1566730620000,1566730680000,1566730740000,1566730800000,1566730860000,1566730920000,1566730980000,1566731040000,1566731100000,1566731160000,1566731220000,1566731280000,1566731340000,1566731400000,1566731460000,1566731520000,1566731580000,1566731640000,1566731700000,1566731760000,1566731820000,1566731880000,1566731940000,1566732000000,1566732060000,1566732120000,1566732180000,1566732240000,1566732300000,1566732360000,1566732420000,1566732480000,1566732540000,1566732600000,1566732660000,1566732720000,1566732780000,1566732840000,1566732900000,1566732960000,1566733020000,1566733080000,1566733140000,1566733200000,1566733260000,1566733320000,1566733380000,1566733440000,1566733500000,1566733560000,1566733620000,1566733680000,1566733740000,1566733800000,1566733860000,1566733920000,1566733980000,1566734040000,1566734100000,1566734160000,1566734220000,1566734280000,1566734340000,1566734400000,1566734460000,1566734520000,1566734580000,1566734640000,1566734700000,1566734760000,1566734820000,1566734880000,1566734940000,1566735000000,1566735060000,1566735120000,1566735180000,1566735240000,1566735300000,1566735360000,1566735420000,1566735480000,1566735540000,1566735600000,1566735660000,1566735720000,1566735780000,1566735840000,1566735900000,1566735960000,1566736020000,1566736080000,1566736140000,1566736200000,1566736260000,1566736320000,1566736380000,1566736440000,1566736500000,1566736560000,1566736620000,1566736680000,1566736740000,1566736800000,1566736860000,1566736920000,1566736980000,1566737040000,1566737100000,1566737160000,1566737220000,1566737280000,1566737340000,1566737400000,1566737460000,1566737520000,1566737580000,1566737640000,1566737700000,1566737760000,1566737820000,1566737880000,1566737940000,1566738000000,1566738060000,1566738120000,1566738180000,1566738240000,1566738300000,1566738360000,1566738420000,1566738480000,1566738540000,1566738600000,1566738660000,1566738720000,1566738780000,1566738840000,1566738900000,1566738960000,1566739020000,1566739080000,1566739140000,1566739200000,1566739260000,1566739320000,1566739380000,1566739440000,1566739500000,1566739560000,1566739620000,1566739680000,1566739740000,1566739800000,1566739860000,1566739920000,1566739980000,1566740040000,1566740100000,1566740160000,1566740220000,1566740280000,1566740340000,1566740400000,1566740460000,1566740520000,1566740580000,1566740640000,1566740700000,1566740760000,1566740820000,1566740880000,1566740940000,1566741000000,1566741060000,1566741120000,1566741180000,1566741240000,1566741300000,1566741360000,1566741420000,1566741480000,1566741540000,1566741600000,1566741660000,1566741720000,1566741780000,1566741840000,1566741900000,1566741960000,1566742020000,1566742080000,1566742140000,1566742200000,1566742260000,1566742320000,1566742380000,1566742440000,1566742500000,1566742560000,1566742620000,1566742680000,1566742740000,1566742800000,1566742860000,1566742920000,1566742980000,1566743040000,1566743100000,1566743160000,1566743220000,1566743280000,1566743340000,1566743400000,1566743460000,1566743520000,1566743580000,1566743640000,1566743700000,1566743760000,1566743820000,1566743880000,1566743940000,1566744000000,1566744060000,1566744120000,1566744180000,1566744240000,1566744300000,1566744360000,1566744420000,1566744480000,1566744540000,1566744600000,1566744660000,1566744720000,1566744780000,1566744840000,1566744900000,1566744960000,1566745020000,1566745080000,1566745140000,1566745200000,1566745260000,1566745320000,1566745380000,1566745440000,1566745500000,1566745560000,1566745620000,1566745680000,1566745740000,1566745800000,1566745860000,1566745920000,1566745980000,1566746040000,1566746100000,1566746160000,1566746220000,1566746280000,1566746340000,1566746400000,1566746460000,1566746520000,1566746580000,1566746640000,1566746700000,1566746760000,1566746820000,1566746880000,1566746940000,1566747000000,1566747060000,1566747120000,1566747180000,1566747240000,1566747300000,1566747360000,1566747420000,1566747480000,1566747540000,1566747600000,1566747660000,1566747720000,1566747780000,1566747840000,1566747900000,1566747960000,1566748020000,1566748080000,1566748140000,1566748200000,1566748260000,1566748320000,1566748380000,1566748440000,1566748500000,1566748560000,1566748620000,1566748680000,1566748740000,1566748800000,1566748860000,1566748920000,1566748980000,1566749040000,1566749100000,1566749160000,1566749220000,1566749280000,1566749340000,1566749400000,1566749460000,1566749520000,1566749580000,1566749640000,1566749700000,1566749760000,1566749820000,1566749880000,1566749940000,1566750000000,1566750060000,1566750120000,1566750180000,1566750240000,1566750300000,1566750360000,1566750420000,1566750480000,1566750540000,1566750600000,1566750660000,1566750720000,1566750780000,1566750840000,1566750900000,1566750960000,1566751020000,1566751080000,1566751140000,1566751200000,1566751260000,1566751320000,1566751380000,1566751440000,1566751500000,1566751560000,1566751620000,1566751680000,1566751740000,1566751800000,1566751860000,1566751920000,1566751980000,1566752040000,1566752100000,1566752160000,1566752220000,1566752280000,1566752340000,1566752400000,1566752460000,1566752520000,1566752580000,1566752640000,1566752700000,1566752760000,1566752820000,1566752880000,1566752940000,1566753000000,1566753060000,1566753120000,1566753180000,1566753240000,1566753300000,1566753360000,1566753420000,1566753480000,1566753540000,1566753600000,1566753660000,1566753720000,1566753780000,1566753840000,1566753900000,1566753960000,1566754020000,1566754080000,1566754140000,1566754200000,1566754260000,1566754320000,1566754380000,1566754440000,1566754500000,1566754560000,1566754620000,1566754680000,1566754740000,1566754800000,1566754860000,1566754920000,1566754980000,1566755040000,1566755100000,1566755160000,1566755220000,1566755280000,1566755340000,1566755400000,1566755460000,1566755520000,1566755580000,1566755640000,1566755700000,1566755760000,1566755820000,1566755880000,1566755940000,1566756000000,1566756060000,1566756120000,1566756180000,1566756240000,1566756300000,1566756360000,1566756420000,1566756480000,1566756540000,1566756600000,1566756660000,1566756720000,1566756780000,1566756840000,1566756900000,1566756960000,1566757020000,1566757080000,1566757140000,1566757200000,1566757260000,1566757320000,1566757380000,1566757440000,1566757500000,1566757560000,1566757620000,1566757680000,1566757740000,1566757800000,1566757860000,1566757920000,1566757980000,1566758040000,1566758100000,1566758160000,1566758220000,1566758280000,1566758340000,1566758400000,1566758460000,1566758520000,1566758580000,1566758640000,1566758700000,1566758760000,1566758820000,1566758880000,1566758940000,1566759000000,1566759060000,1566759120000,1566759180000,1566759240000,1566759300000,1566759360000,1566759420000,1566759480000,1566759540000,1566759600000,1566759660000,1566759720000,1566759780000,1566759840000,1566759900000,1566759960000,1566760020000,1566760080000,1566760140000,1566760200000,1566760260000,1566760320000,1566760380000,1566760440000,1566760500000,1566760560000,1566760620000,1566760680000,1566760740000,1566760800000,1566760860000,1566760920000,1566760980000,1566761040000,1566761100000,1566761160000,1566761220000,1566761280000,1566761340000,1566761400000,1566761460000,1566761520000,1566761580000,1566761640000,1566761700000,1566761760000,1566761820000,1566761880000,1566761940000,1566762000000,1566762060000,1566762120000,1566762180000,1566762240000,1566762300000,1566762360000,1566762420000,1566762480000,1566762540000,1566762600000,1566762660000,1566762720000,1566762780000,1566762840000,1566762900000,1566762960000,1566763020000,1566763080000,1566763140000,1566763200000,1566763260000,1566763320000,1566763380000,1566763440000,1566763500000,1566763560000,1566763620000,1566763680000,1566763740000,1566763800000,1566763860000,1566763920000,1566763980000,1566764040000,1566764100000,1566764160000,1566764220000,1566764280000,1566764340000,1566764400000,1566764460000,1566764520000,1566764580000,1566764640000,1566764700000,1566764760000,1566764820000,1566764880000,1566764940000,1566765000000,1566765060000,1566765120000,1566765180000,1566765240000,1566765300000,1566765360000,1566765420000,1566765480000,1566765540000,1566765600000,1566765660000,1566765720000,1566765780000,1566765840000,1566765900000,1566765960000,1566766020000,1566766080000,1566766140000,1566766200000,1566766260000,1566766320000,1566766380000,1566766440000,1566766500000,1566766560000,1566766620000,1566766680000,1566766740000,1566766800000,1566766860000,1566766920000,1566766980000,1566767040000,1566767100000,1566767160000,1566767220000,1566767280000,1566767340000,1566767400000,1566767460000,1566767520000,1566767580000,1566767640000,1566767700000,1566767760000,1566767820000,1566767880000,1566767940000,1566768000000,1566768060000,1566768120000,1566768180000,1566768240000,1566768300000,1566768360000,1566768420000,1566768480000,1566768540000,1566768600000,1566768660000,1566768720000,1566768780000,1566768840000,1566768900000,1566768960000,1566769020000,1566769080000,1566769140000,1566769200000,1566769260000,1566769320000,1566769380000,1566769440000,1566769500000,1566769560000,1566769620000,1566769680000,1566769740000,1566769800000,1566769860000,1566769920000,1566769980000,1566770040000,1566770100000,1566770160000,1566770220000,1566770280000,1566770340000,1566770400000,1566770460000,1566770520000,1566770580000,1566770640000,1566770700000,1566770760000,1566770820000,1566770880000,1566770940000,1566771000000,1566771060000,1566771120000,1566771180000,1566771240000,1566771300000,1566771360000,1566771420000,1566771480000,1566771540000,1566771600000,1566771660000,1566771720000,1566771780000,1566771840000,1566771900000,1566771960000,1566772020000,1566772080000,1566772140000,1566772200000,1566772260000,1566772320000,1566772380000,1566772440000,1566772500000,1566772560000,1566772620000,1566772680000,1566772740000,1566772800000,1566772860000,1566772920000,1566772980000,1566773040000,1566773100000,1566773160000,1566773220000,1566773280000,1566773340000,1566773400000,1566773460000,1566773520000,1566773580000,1566773640000,1566773700000,1566773760000,1566773820000,1566773880000,1566773940000,1566774000000,1566774060000,1566774120000,1566774180000,1566774240000,1566774300000,1566774360000,1566774420000,1566774480000,1566774540000,1566774600000,1566774660000,1566774720000,1566774780000,1566774840000,1566774900000,1566774960000,1566775020000,1566775080000,1566775140000,1566775200000,1566775260000,1566775320000,1566775380000,1566775440000,1566775500000,1566775560000,1566775620000,1566775680000,1566775740000,1566775800000,1566775860000,1566775920000,1566775980000,1566776040000,1566776100000,1566776160000,1566776220000,1566776280000,1566776340000,1566776400000,1566776460000,1566776520000,1566776580000,1566776640000,1566776700000,1566776760000,1566776820000,1566776880000,1566776940000,1566777000000,1566777060000,1566777120000,1566777180000,1566777240000,1566777300000,1566777360000,1566777420000,1566777480000,1566777540000,1566777600000,1566777660000,1566777720000,1566777780000,1566777840000,1566777900000,1566777960000,1566778020000,1566778080000,1566778140000,1566778200000,1566778260000,1566778320000,1566778380000,1566778440000,1566778500000,1566778560000,1566778620000,1566778680000,1566778740000,1566778800000,1566778860000,1566778920000,1566778980000,1566779040000,1566779100000,1566779160000,1566779220000,1566779280000,1566779340000,1566779400000,1566779460000,1566779520000,1566779580000,1566779640000,1566779700000,1566779760000,1566779820000,1566779880000,1566779940000,1566780000000,1566780060000,1566780120000,1566780180000,1566780240000,1566780300000,1566780360000,1566780420000,1566780480000,1566780540000,1566780600000,1566780660000,1566780720000,1566780780000,1566780840000,1566780900000,1566780960000,1566781020000,1566781080000,1566781140000,1566781200000,1566781260000,1566781320000,1566781380000,1566781440000,1566781500000,1566781560000,1566781620000,1566781680000,1566781740000,1566781800000,1566781860000,1566781920000,1566781980000,1566782040000,1566782100000,1566782160000,1566782220000,1566782280000,1566782340000,1566782400000,1566782460000,1566782520000,1566782580000,1566782640000,1566782700000,1566782760000,1566782820000,1566782880000,1566782940000,1566783000000,1566783060000,1566783120000,1566783180000,1566783240000,1566783300000,1566783360000,1566783420000,1566783480000,1566783540000,1566783600000,1566783660000,1566783720000,1566783780000,1566783840000,1566783900000,1566783960000,1566784020000,1566784080000,1566784140000,1566784200000,1566784260000,1566784320000,1566784380000,1566784440000,1566784500000,1566784560000,1566784620000,1566784680000,1566784740000,1566784800000,1566784860000,1566784920000,1566784980000,1566785040000,1566785100000,1566785160000,1566785220000,1566785280000,1566785340000,1566785400000,1566785460000,1566785520000,1566785580000,1566785640000,1566785700000,1566785760000,1566785820000,1566785880000,1566785940000,1566786000000,1566786060000,1566786120000,1566786180000,1566786240000,1566786300000,1566786360000,1566786420000,1566786480000,1566786540000,1566786600000,1566786660000,1566786720000,1566786780000,1566786840000,1566786900000,1566786960000,1566787020000,1566787080000,1566787140000,1566787200000,1566787260000,1566787320000,1566787380000,1566787440000,1566787500000,1566787560000,1566787620000,1566787680000,1566787740000,1566787800000,1566787860000,1566787920000,1566787980000,1566788040000,1566788100000,1566788160000,1566788220000,1566788280000,1566788340000,1566788400000,1566788460000,1566788520000,1566788580000,1566788640000,1566788700000,1566788760000,1566788820000,1566788880000,1566788940000,1566789000000,1566789060000,1566789120000,1566789180000,1566789240000,1566789300000,1566789360000,1566789420000,1566789480000,1566789540000,1566789600000,1566789660000,1566789720000,1566789780000,1566789840000,1566789900000,1566789960000,1566790020000,1566790080000,1566790140000,1566790200000,1566790260000,1566790320000,1566790380000,1566790440000,1566790500000,1566790560000,1566790620000,1566790680000,1566790740000,1566790800000,1566790860000,1566790920000,1566790980000,1566791040000,1566791100000,1566791160000,1566791220000,1566791280000,1566791340000,1566791400000,1566791460000,1566791520000,1566791580000,1566791640000,1566791700000,1566791760000,1566791820000,1566791880000,1566791940000,1566792000000,1566792060000,1566792120000,1566792180000,1566792240000,1566792300000,1566792360000,1566792420000,1566792480000,1566792540000,1566792600000,1566792660000,1566792720000,1566792780000,1566792840000,1566792900000,1566792960000,1566793020000,1566793080000,1566793140000,1566793200000,1566793260000,1566793320000,1566793380000,1566793440000,1566793500000,1566793560000,1566793620000,1566793680000,1566793740000,1566793800000,1566793860000,1566793920000,1566793980000,1566794040000,1566794100000,1566794160000,1566794220000,1566794280000,1566794340000,1566794400000,1566794460000,1566794520000,1566794580000,1566794640000,1566794700000,1566794760000,1566794820000,1566794880000,1566794940000,1566795000000,1566795060000,1566795120000,1566795180000,1566795240000,1566795300000,1566795360000,1566795420000,1566795480000,1566795540000,1566795600000,1566795660000,1566795720000,1566795780000,1566795840000,1566795900000,1566795960000,1566796020000,1566796080000,1566796140000,1566796200000,1566796260000,1566796320000,1566796380000,1566796440000,1566796500000,1566796560000,1566796620000,1566796680000,1566796740000,1566796800000,1566796860000,1566796920000,1566796980000,1566797040000,1566797100000,1566797160000,1566797220000,1566797280000,1566797340000,1566797400000,1566797460000,1566797520000,1566797580000,1566797640000,1566797700000,1566797760000,1566797820000,1566797880000,1566797940000,1566798000000,1566798060000,1566798120000,1566798180000,1566798240000,1566798300000,1566798360000,1566798420000,1566798480000,1566798540000,1566798600000,1566798660000,1566798720000,1566798780000,1566798840000,1566798900000,1566798960000,1566799020000,1566799080000,1566799140000,1566799200000,1566799260000,1566799320000,1566799380000,1566799440000,1566799500000,1566799560000,1566799620000,1566799680000,1566799740000,1566799800000,1566799860000,1566799920000,1566799980000,1566800040000,1566800100000,1566800160000,1566800220000,1566800280000,1566800340000,1566800400000,1566800460000,1566800520000,1566800580000,1566800640000,1566800700000,1566800760000,1566800820000,1566800880000,1566800940000,1566801000000,1566801060000,1566801120000,1566801180000,1566801240000,1566801300000,1566801360000,1566801420000,1566801480000,1566801540000,1566801600000,1566801660000,1566801720000,1566801780000,1566801840000,1566801900000,1566801960000,1566802020000,1566802080000,1566802140000,1566802200000,1566802260000,1566802320000,1566802380000,1566802440000,1566802500000,1566802560000,1566802620000,1566802680000,1566802740000,1566802800000,1566802860000,1566802920000,1566802980000,1566803040000,1566803100000,1566803160000,1566803220000,1566803280000,1566803340000,1566803400000,1566803460000,1566803520000,1566803580000,1566803640000,1566803700000,1566803760000,1566803820000,1566803880000,1566803940000,1566804000000,1566804060000,1566804120000,1566804180000,1566804240000,1566804300000,1566804360000,1566804420000,1566804480000,1566804540000,1566804600000,1566804660000,1566804720000,1566804780000,1566804840000,1566804900000,1566804960000,1566805020000,1566805080000,1566805140000,1566805200000,1566805260000,1566805320000,1566805380000,1566805440000,1566805500000,1566805560000,1566805620000,1566805680000,1566805740000,1566805800000,1566805860000,1566805920000,1566805980000,1566806040000,1566806100000,1566806160000,1566806220000,1566806280000,1566806340000,1566806400000,1566806460000,1566806520000,1566806580000,1566806640000,1566806700000,1566806760000,1566806820000,1566806880000,1566806940000,1566807000000,1566807060000,1566807120000,1566807180000,1566807240000,1566807300000,1566807360000,1566807420000,1566807480000,1566807540000,1566807600000,1566807660000,1566807720000,1566807780000,1566807840000,1566807900000,1566807960000,1566808020000,1566808080000,1566808140000,1566808200000,1566808260000,1566808320000,1566808380000,1566808440000,1566808500000,1566808560000,1566808620000,1566808680000,1566808740000,1566808800000,1566808860000,1566808920000,1566808980000,1566809040000,1566809100000,1566809160000,1566809220000,1566809280000,1566809340000,1566809400000,1566809460000,1566809520000,1566809580000,1566809640000,1566809700000,1566809760000,1566809820000,1566809880000,1566809940000,1566810000000,1566810060000,1566810120000,1566810180000,1566810240000,1566810300000,1566810360000,1566810420000,1566810480000,1566810540000,1566810600000,1566810660000,1566810720000,1566810780000,1566810840000,1566810900000,1566810960000,1566811020000,1566811080000,1566811140000,1566811200000,1566811260000,1566811320000,1566811380000,1566811440000,1566811500000,1566811560000,1566811620000,1566811680000,1566811740000,1566811800000,1566811860000,1566811920000,1566811980000,1566812040000,1566812100000,1566812160000,1566812220000,1566812280000,1566812340000,1566812400000,1566812460000,1566812520000,1566812580000,1566812640000,1566812700000,1566812760000,1566812820000,1566812880000,1566812940000,1566813000000,1566813060000,1566813120000,1566813180000,1566813240000,1566813300000,1566813360000,1566813420000,1566813480000,1566813540000,1566813600000,1566813660000,1566813720000,1566813780000,1566813840000,1566813900000,1566813960000,1566814020000,1566814080000,1566814140000,1566814200000,1566814260000,1566814320000,1566814380000,1566814440000,1566814500000,1566814560000,1566814620000,1566814680000,1566814740000,1566814800000,1566814860000,1566814920000,1566814980000,1566815040000,1566815100000,1566815160000,1566815220000,1566815280000,1566815340000,1566815400000,1566815460000,1566815520000,1566815580000,1566815640000,1566815700000,1566815760000,1566815820000,1566815880000,1566815940000,1566816000000,1566816060000,1566816120000,1566816180000,1566816240000,1566816300000,1566816360000,1566816420000,1566816480000,1566816540000,1566816600000,1566816660000,1566816720000,1566816780000,1566816840000,1566816900000,1566816960000,1566817020000,1566817080000,1566817140000,1566817200000,1566817260000,1566817320000,1566817380000,1566817440000,1566817500000,1566817560000,1566817620000,1566817680000,1566817740000,1566817800000,1566817860000,1566817920000,1566817980000,1566818040000,1566818100000,1566818160000,1566818220000,1566818280000,1566818340000,1566818400000,1566818460000,1566818520000,1566818580000,1566818640000,1566818700000,1566818760000,1566818820000,1566818880000,1566818940000,1566819000000,1566819060000,1566819120000,1566819180000,1566819240000,1566819300000,1566819360000,1566819420000,1566819480000,1566819540000,1566819600000,1566819660000,1566819720000,1566819780000,1566819840000,1566819900000,1566819960000,1566820020000,1566820080000,1566820140000,1566820200000,1566820260000,1566820320000,1566820380000,1566820440000,1566820500000,1566820560000,1566820620000,1566820680000,1566820740000,1566820800000,1566820860000,1566820920000,1566820980000,1566821040000,1566821100000,1566821160000,1566821220000,1566821280000,1566821340000,1566821400000,1566821460000,1566821520000,1566821580000,1566821640000,1566821700000,1566821760000,1566821820000,1566821880000,1566821940000,1566822000000,1566822060000,1566822120000,1566822180000,1566822240000,1566822300000,1566822360000,1566822420000,1566822480000,1566822540000,1566822600000,1566822660000,1566822720000,1566822780000,1566822840000,1566822900000,1566822960000,1566823020000,1566823080000,1566823140000,1566823200000,1566823260000,1566823320000,1566823380000,1566823440000,1566823500000,1566823560000,1566823620000,1566823680000,1566823740000,1566823800000,1566823860000,1566823920000,1566823980000,1566824040000,1566824100000,1566824160000,1566824220000,1566824280000,1566824340000,1566824400000,1566824460000,1566824520000,1566824580000,1566824640000,1566824700000,1566824760000,1566824820000,1566824880000,1566824940000,1566825000000,1566825060000,1566825120000,1566825180000,1566825240000,1566825300000,1566825360000,1566825420000,1566825480000,1566825540000,1566825600000,1566825660000,1566825720000,1566825780000,1566825840000,1566825900000,1566825960000,1566826020000,1566826080000,1566826140000,1566826200000,1566826260000,1566826320000,1566826380000,1566826440000,1566826500000,1566826560000,1566826620000,1566826680000,1566826740000,1566826800000,1566826860000,1566826920000,1566826980000,1566827040000,1566827100000,1566827160000,1566827220000,1566827280000,1566827340000,1566827400000,1566827460000,1566827520000,1566827580000,1566827640000,1566827700000,1566827760000,1566827820000,1566827880000,1566827940000,1566828000000,1566828060000,1566828120000,1566828180000,1566828240000,1566828300000,1566828360000,1566828420000,1566828480000,1566828540000,1566828600000,1566828660000,1566828720000,1566828780000,1566828840000,1566828900000,1566828960000,1566829020000,1566829080000,1566829140000,1566829200000,1566829260000,1566829320000,1566829380000,1566829440000,1566829500000,1566829560000,1566829620000,1566829680000,1566829740000,1566829800000,1566829860000,1566829920000,1566829980000,1566830040000,1566830100000,1566830160000,1566830220000,1566830280000,1566830340000,1566830400000,1566830460000,1566830520000,1566830580000,1566830640000,1566830700000,1566830760000,1566830820000,1566830880000,1566830940000,1566831000000,1566831060000,1566831120000,1566831180000,1566831240000,1566831300000,1566831360000,1566831420000,1566831480000,1566831540000,1566831600000,1566831660000,1566831720000,1566831780000,1566831840000,1566831900000,1566831960000,1566832020000,1566832080000,1566832140000,1566832200000,1566832260000,1566832320000,1566832380000,1566832440000,1566832500000,1566832560000,1566832620000,1566832680000,1566832740000,1566832800000,1566832860000,1566832920000,1566832980000,1566833040000,1566833100000,1566833160000,1566833220000,1566833280000,1566833340000,1566833400000,1566833460000,1566833520000,1566833580000,1566833640000,1566833700000,1566833760000,1566833820000,1566833880000,1566833940000,1566834000000,1566834060000,1566834120000,1566834180000,1566834240000,1566834300000,1566834360000,1566834420000,1566834480000,1566834540000,1566834600000,1566834660000,1566834720000,1566834780000,1566834840000,1566834900000,1566834960000,1566835020000,1566835080000,1566835140000,1566835200000,1566835260000,1566835320000,1566835380000,1566835440000,1566835500000,1566835560000,1566835620000,1566835680000,1566835740000,1566835800000,1566835860000,1566835920000,1566835980000,1566836040000,1566836100000,1566836160000,1566836220000,1566836280000,1566836340000,1566836400000,1566836460000,1566836520000,1566836580000,1566836640000,1566836700000,1566836760000,1566836820000,1566836880000,1566836940000,1566837000000,1566837060000,1566837120000,1566837180000,1566837240000,1566837300000,1566837360000,1566837420000,1566837480000,1566837540000,1566837600000,1566837660000,1566837720000,1566837780000,1566837840000,1566837900000,1566837960000,1566838020000,1566838080000,1566838140000,1566838200000,1566838260000,1566838320000,1566838380000,1566838440000,1566838500000,1566838560000,1566838620000,1566838680000,1566838740000,1566838800000,1566838860000,1566838920000,1566838980000,1566839040000,1566839100000,1566839160000,1566839220000,1566839280000,1566839340000,1566839400000,1566839460000,1566839520000,1566839580000,1566839640000,1566839700000,1566839760000,1566839820000,1566839880000,1566839940000,1566840000000,1566840060000,1566840120000,1566840180000,1566840240000,1566840300000,1566840360000,1566840420000,1566840480000,1566840540000,1566840600000,1566840660000,1566840720000,1566840780000,1566840840000,1566840900000,1566840960000,1566841020000,1566841080000,1566841140000,1566841200000,1566841260000,1566841320000,1566841380000,1566841440000,1566841500000,1566841560000,1566841620000,1566841680000,1566841740000,1566841800000,1566841860000,1566841920000,1566841980000,1566842040000,1566842100000,1566842160000,1566842220000,1566842280000,1566842340000,1566842400000,1566842460000,1566842520000,1566842580000,1566842640000,1566842700000,1566842760000,1566842820000,1566842880000,1566842940000,1566843000000,1566843060000,1566843120000,1566843180000,1566843240000,1566843300000,1566843360000,1566843420000,1566843480000,1566843540000,1566843600000,1566843660000,1566843720000,1566843780000,1566843840000,1566843900000,1566843960000,1566844020000,1566844080000,1566844140000,1566844200000,1566844260000,1566844320000,1566844380000,1566844440000,1566844500000,1566844560000,1566844620000,1566844680000,1566844740000,1566844800000,1566844860000,1566844920000,1566844980000,1566845040000,1566845100000,1566845160000,1566845220000,1566845280000,1566845340000,1566845400000,1566845460000,1566845520000,1566845580000,1566845640000,1566845700000,1566845760000,1566845820000,1566845880000,1566845940000,1566846000000,1566846060000,1566846120000,1566846180000,1566846240000,1566846300000,1566846360000,1566846420000,1566846480000,1566846540000,1566846600000,1566846660000,1566846720000,1566846780000,1566846840000,1566846900000,1566846960000,1566847020000,1566847080000,1566847140000,1566847200000,1566847260000,1566847320000,1566847380000,1566847440000,1566847500000,1566847560000,1566847620000,1566847680000,1566847740000,1566847800000,1566847860000,1566847920000,1566847980000,1566848040000,1566848100000,1566848160000,1566848220000,1566848280000,1566848340000,1566848400000,1566848460000,1566848520000,1566848580000,1566848640000,1566848700000,1566848760000,1566848820000,1566848880000,1566848940000,1566849000000,1566849060000,1566849120000,1566849180000,1566849240000,1566849300000,1566849360000,1566849420000,1566849480000,1566849540000,1566849600000,1566849660000,1566849720000,1566849780000,1566849840000,1566849900000,1566849960000,1566850020000,1566850080000,1566850140000,1566850200000,1566850260000,1566850320000,1566850380000,1566850440000,1566850500000,1566850560000,1566850620000,1566850680000,1566850740000,1566850800000,1566850860000,1566850920000,1566850980000,1566851040000,1566851100000,1566851160000,1566851220000,1566851280000,1566851340000,1566851400000,1566851460000,1566851520000,1566851580000,1566851640000,1566851700000,1566851760000,1566851820000,1566851880000,1566851940000,1566852000000,1566852060000,1566852120000,1566852180000,1566852240000,1566852300000,1566852360000,1566852420000,1566852480000,1566852540000,1566852600000,1566852660000,1566852720000,1566852780000,1566852840000,1566852900000,1566852960000,1566853020000,1566853080000,1566853140000,1566853200000,1566853260000,1566853320000,1566853380000,1566853440000,1566853500000,1566853560000,1566853620000,1566853680000,1566853740000,1566853800000,1566853860000,1566853920000,1566853980000,1566854040000,1566854100000,1566854160000,1566854220000,1566854280000,1566854340000,1566854400000,1566854460000,1566854520000,1566854580000,1566854640000,1566854700000,1566854760000,1566854820000,1566854880000,1566854940000,1566855000000,1566855060000,1566855120000,1566855180000,1566855240000,1566855300000,1566855360000,1566855420000,1566855480000,1566855540000,1566855600000,1566855660000,1566855720000,1566855780000,1566855840000,1566855900000,1566855960000,1566856020000,1566856080000,1566856140000,1566856200000,1566856260000,1566856320000,1566856380000,1566856440000,1566856500000,1566856560000,1566856620000,1566856680000,1566856740000,1566856800000,1566856860000,1566856920000,1566856980000,1566857040000,1566857100000,1566857160000,1566857220000,1566857280000,1566857340000,1566857400000,1566857460000,1566857520000,1566857580000,1566857640000,1566857700000,1566857760000,1566857820000,1566857880000,1566857940000,1566858000000,1566858060000,1566858120000,1566858180000,1566858240000,1566858300000,1566858360000,1566858420000,1566858480000,1566858540000,1566858600000,1566858660000,1566858720000,1566858780000,1566858840000,1566858900000,1566858960000,1566859020000,1566859080000,1566859140000,1566859200000,1566859260000,1566859320000,1566859380000,1566859440000,1566859500000,1566859560000,1566859620000,1566859680000,1566859740000,1566859800000,1566859860000,1566859920000,1566859980000,1566860040000,1566860100000,1566860160000,1566860220000,1566860280000,1566860340000,1566860400000,1566860460000,1566860520000,1566860580000,1566860640000,1566860700000,1566860760000,1566860820000,1566860880000,1566860940000,1566861000000,1566861060000,1566861120000,1566861180000,1566861240000,1566861300000,1566861360000,1566861420000,1566861480000,1566861540000,1566861600000,1566861660000,1566861720000,1566861780000,1566861840000,1566861900000,1566861960000,1566862020000,1566862080000,1566862140000,1566862200000,1566862260000,1566862320000,1566862380000,1566862440000,1566862500000,1566862560000,1566862620000,1566862680000,1566862740000,1566862800000,1566862860000,1566862920000,1566862980000,1566863040000,1566863100000,1566863160000,1566863220000,1566863280000,1566863340000,1566863400000,1566863460000,1566863520000,1566863580000,1566863640000,1566863700000,1566863760000,1566863820000,1566863880000,1566863940000,1566864000000,1566864060000,1566864120000,1566864180000,1566864240000,1566864300000,1566864360000,1566864420000,1566864480000,1566864540000,1566864600000,1566864660000,1566864720000,1566864780000,1566864840000,1566864900000,1566864960000,1566865020000,1566865080000,1566865140000,1566865200000,1566865260000,1566865320000,1566865380000,1566865440000,1566865500000,1566865560000,1566865620000,1566865680000,1566865740000,1566865800000,1566865860000,1566865920000,1566865980000,1566866040000,1566866100000,1566866160000,1566866220000,1566866280000,1566866340000,1566866400000,1566866460000,1566866520000,1566866580000,1566866640000,1566866700000,1566866760000,1566866820000,1566866880000,1566866940000,1566867000000,1566867060000,1566867120000,1566867180000,1566867240000,1566867300000,1566867360000,1566867420000,1566867480000,1566867540000,1566867600000,1566867660000,1566867720000,1566867780000,1566867840000,1566867900000,1566867960000,1566868020000,1566868080000,1566868140000,1566868200000,1566868260000,1566868320000,1566868380000,1566868440000,1566868500000,1566868560000,1566868620000,1566868680000,1566868740000,1566868800000,1566868860000,1566868920000,1566868980000,1566869040000,1566869100000,1566869160000,1566869220000,1566869280000,1566869340000,1566869400000,1566869460000,1566869520000,1566869580000,1566869640000,1566869700000,1566869760000,1566869820000,1566869880000,1566869940000,1566870000000,1566870060000,1566870120000,1566870180000,1566870240000,1566870300000,1566870360000,1566870420000,1566870480000,1566870540000,1566870600000,1566870660000,1566870720000,1566870780000,1566870840000,1566870900000,1566870960000,1566871020000,1566871080000,1566871140000,1566871200000,1566871260000,1566871320000,1566871380000,1566871440000,1566871500000,1566871560000,1566871620000,1566871680000,1566871740000,1566871800000,1566871860000,1566871920000,1566871980000,1566872040000,1566872100000,1566872160000,1566872220000,1566872280000,1566872340000,1566872400000,1566872460000,1566872520000,1566872580000,1566872640000,1566872700000,1566872760000,1566872820000,1566872880000,1566872940000,1566873000000,1566873060000,1566873120000,1566873180000,1566873240000,1566873300000,1566873360000,1566873420000,1566873480000,1566873540000,1566873600000,1566873660000,1566873720000,1566873780000,1566873840000,1566873900000,1566873960000,1566874020000,1566874080000,1566874140000,1566874200000,1566874260000,1566874320000,1566874380000,1566874440000,1566874500000,1566874560000,1566874620000,1566874680000,1566874740000,1566874800000,1566874860000,1566874920000,1566874980000,1566875040000,1566875100000,1566875160000,1566875220000,1566875280000,1566875340000,1566875400000,1566875460000,1566875520000,1566875580000,1566875640000,1566875700000,1566875760000,1566875820000,1566875880000,1566875940000,1566876000000,1566876060000,1566876120000,1566876180000,1566876240000,1566876300000,1566876360000,1566876420000,1566876480000,1566876540000,1566876600000,1566876660000,1566876720000,1566876780000,1566876840000,1566876900000,1566876960000,1566877020000,1566877080000,1566877140000,1566877200000,1566877260000,1566877320000,1566877380000,1566877440000,1566877500000,1566877560000,1566877620000,1566877680000,1566877740000,1566877800000,1566877860000,1566877920000,1566877980000,1566878040000,1566878100000,1566878160000,1566878220000,1566878280000,1566878340000,1566878400000,1566878460000,1566878520000,1566878580000,1566878640000,1566878700000,1566878760000,1566878820000,1566878880000,1566878940000,1566879000000,1566879060000,1566879120000,1566879180000,1566879240000,1566879300000,1566879360000,1566879420000,1566879480000,1566879540000,1566879600000,1566879660000,1566879720000,1566879780000,1566879840000,1566879900000,1566879960000,1566880020000,1566880080000,1566880140000,1566880200000,1566880260000,1566880320000,1566880380000,1566880440000,1566880500000,1566880560000,1566880620000,1566880680000,1566880740000,1566880800000,1566880860000,1566880920000,1566880980000,1566881040000,1566881100000,1566881160000,1566881220000,1566881280000,1566881340000,1566881400000,1566881460000,1566881520000,1566881580000,1566881640000,1566881700000,1566881760000,1566881820000,1566881880000,1566881940000,1566882000000,1566882060000,1566882120000,1566882180000,1566882240000,1566882300000,1566882360000,1566882420000,1566882480000,1566882540000,1566882600000,1566882660000,1566882720000,1566882780000,1566882840000,1566882900000,1566882960000,1566883020000,1566883080000,1566883140000,1566883200000,1566883260000,1566883320000,1566883380000,1566883440000,1566883500000,1566883560000,1566883620000,1566883680000,1566883740000,1566883800000,1566883860000,1566883920000,1566883980000,1566884040000,1566884100000,1566884160000,1566884220000,1566884280000,1566884340000,1566884400000,1566884460000,1566884520000,1566884580000,1566884640000,1566884700000,1566884760000,1566884820000,1566884880000,1566884940000,1566885000000,1566885060000,1566885120000,1566885180000,1566885240000,1566885300000,1566885360000,1566885420000,1566885480000,1566885540000,1566885600000,1566885660000,1566885720000,1566885780000,1566885840000,1566885900000,1566885960000,1566886020000,1566886080000,1566886140000,1566886200000,1566886260000,1566886320000,1566886380000,1566886440000,1566886500000,1566886560000,1566886620000,1566886680000,1566886740000,1566886800000,1566886860000,1566886920000,1566886980000,1566887040000,1566887100000,1566887160000,1566887220000,1566887280000,1566887340000,1566887400000,1566887460000,1566887520000,1566887580000,1566887640000,1566887700000,1566887760000,1566887820000,1566887880000,1566887940000,1566888000000,1566888060000,1566888120000,1566888180000,1566888240000,1566888300000,1566888360000,1566888420000,1566888480000,1566888540000,1566888600000,1566888660000,1566888720000,1566888780000,1566888840000,1566888900000,1566888960000,1566889020000,1566889080000,1566889140000,1566889200000,1566889260000,1566889320000,1566889380000,1566889440000,1566889500000,1566889560000,1566889620000,1566889680000,1566889740000,1566889800000,1566889860000,1566889920000,1566889980000,1566890040000,1566890100000,1566890160000,1566890220000,1566890280000,1566890340000,1566890400000,1566890460000,1566890520000,1566890580000,1566890640000,1566890700000,1566890760000,1566890820000,1566890880000,1566890940000,1566891000000,1566891060000,1566891120000,1566891180000,1566891240000,1566891300000,1566891360000,1566891420000,1566891480000,1566891540000,1566891600000,1566891660000,1566891720000,1566891780000,1566891840000,1566891900000,1566891960000,1566892020000,1566892080000,1566892140000,1566892200000,1566892260000,1566892320000,1566892380000,1566892440000,1566892500000,1566892560000,1566892620000,1566892680000,1566892740000,1566892800000,1566892860000,1566892920000,1566892980000,1566893040000,1566893100000,1566893160000,1566893220000,1566893280000,1566893340000,1566893400000,1566893460000,1566893520000,1566893580000,1566893640000,1566893700000,1566893760000,1566893820000,1566893880000,1566893940000,1566894000000,1566894060000,1566894120000,1566894180000,1566894240000,1566894300000,1566894360000,1566894420000,1566894480000,1566894540000,1566894600000,1566894660000,1566894720000,1566894780000,1566894840000,1566894900000,1566894960000,1566895020000,1566895080000,1566895140000,1566895200000,1566895260000,1566895320000,1566895380000,1566895440000,1566895500000,1566895560000,1566895620000,1566895680000,1566895740000,1566895800000,1566895860000,1566895920000,1566895980000,1566896040000,1566896100000,1566896160000,1566896220000,1566896280000,1566896340000,1566896400000,1566896460000,1566896520000,1566896580000,1566896640000,1566896700000,1566896760000,1566896820000,1566896880000,1566896940000,1566897000000,1566897060000,1566897120000,1566897180000,1566897240000,1566897300000,1566897360000,1566897420000,1566897480000,1566897540000,1566897600000,1566897660000,1566897720000,1566897780000,1566897840000,1566897900000,1566897960000,1566898020000,1566898080000,1566898140000,1566898200000,1566898260000,1566898320000,1566898380000,1566898440000,1566898500000,1566898560000,1566898620000,1566898680000,1566898740000,1566898800000,1566898860000,1566898920000,1566898980000,1566899040000,1566899100000,1566899160000,1566899220000,1566899280000,1566899340000,1566899400000,1566899460000,1566899520000,1566899580000,1566899640000,1566899700000,1566899760000,1566899820000,1566899880000,1566899940000,1566900000000,1566900060000,1566900120000,1566900180000,1566900240000,1566900300000,1566900360000,1566900420000,1566900480000,1566900540000,1566900600000,1566900660000,1566900720000,1566900780000,1566900840000,1566900900000,1566900960000,1566901020000,1566901080000,1566901140000,1566901200000,1566901260000,1566901320000,1566901380000,1566901440000,1566901500000,1566901560000,1566901620000,1566901680000,1566901740000,1566901800000,1566901860000,1566901920000,1566901980000,1566902040000,1566902100000,1566902160000,1566902220000,1566902280000,1566902340000,1566902400000,1566902460000,1566902520000,1566902580000,1566902640000,1566902700000,1566902760000,1566902820000,1566902880000,1566902940000,1566903000000,1566903060000,1566903120000,1566903180000,1566903240000,1566903300000,1566903360000,1566903420000,1566903480000,1566903540000,1566903600000,1566903660000,1566903720000,1566903780000,1566903840000,1566903900000,1566903960000,1566904020000,1566904080000,1566904140000,1566904200000,1566904260000,1566904320000,1566904380000,1566904440000,1566904500000,1566904560000,1566904620000,1566904680000,1566904740000,1566904800000,1566904860000,1566904920000,1566904980000,1566905040000,1566905100000,1566905160000,1566905220000,1566905280000,1566905340000,1566905400000,1566905460000,1566905520000,1566905580000,1566905640000,1566905700000,1566905760000,1566905820000,1566905880000,1566905940000,1566906000000,1566906060000,1566906120000,1566906180000,1566906240000,1566906300000,1566906360000,1566906420000,1566906480000,1566906540000,1566906600000,1566906660000,1566906720000,1566906780000,1566906840000,1566906900000,1566906960000,1566907020000,1566907080000,1566907140000,1566907200000,1566907260000,1566907320000,1566907380000,1566907440000,1566907500000,1566907560000,1566907620000,1566907680000,1566907740000,1566907800000,1566907860000,1566907920000,1566907980000,1566908040000,1566908100000,1566908160000,1566908220000,1566908280000,1566908340000,1566908400000,1566908460000,1566908520000,1566908580000,1566908640000,1566908700000,1566908760000,1566908820000,1566908880000,1566908940000,1566909000000,1566909060000,1566909120000,1566909180000,1566909240000,1566909300000,1566909360000,1566909420000,1566909480000,1566909540000,1566909600000,1566909660000,1566909720000,1566909780000,1566909840000,1566909900000,1566909960000,1566910020000,1566910080000,1566910140000,1566910200000,1566910260000,1566910320000,1566910380000,1566910440000,1566910500000,1566910560000,1566910620000,1566910680000,1566910740000,1566910800000,1566910860000,1566910920000,1566910980000,1566911040000,1566911100000,1566911160000,1566911220000,1566911280000,1566911340000,1566911400000,1566911460000,1566911520000,1566911580000,1566911640000,1566911700000,1566911760000,1566911820000,1566911880000,1566911940000,1566912000000,1566912060000,1566912120000,1566912180000,1566912240000,1566912300000,1566912360000,1566912420000,1566912480000,1566912540000,1566912600000,1566912660000,1566912720000,1566912780000,1566912840000,1566912900000,1566912960000,1566913020000,1566913080000,1566913140000,1566913200000,1566913260000,1566913320000,1566913380000,1566913440000,1566913500000,1566913560000,1566913620000,1566913680000,1566913740000,1566913800000,1566913860000,1566913920000,1566913980000,1566914040000,1566914100000,1566914160000,1566914220000,1566914280000,1566914340000,1566914400000,1566914460000,1566914520000,1566914580000,1566914640000,1566914700000,1566914760000,1566914820000,1566914880000,1566914940000,1566915000000,1566915060000,1566915120000,1566915180000,1566915240000,1566915300000,1566915360000,1566915420000,1566915480000,1566915540000,1566915600000,1566915660000,1566915720000,1566915780000,1566915840000,1566915900000,1566915960000,1566916020000,1566916080000,1566916140000,1566916200000,1566916260000,1566916320000,1566916380000,1566916440000,1566916500000,1566916560000,1566916620000,1566916680000,1566916740000,1566916800000,1566916860000,1566916920000,1566916980000,1566917040000,1566917100000,1566917160000,1566917220000,1566917280000,1566917340000,1566917400000,1566917460000,1566917520000,1566917580000,1566917640000,1566917700000,1566917760000,1566917820000,1566917880000,1566917940000,1566918000000,1566918060000,1566918120000,1566918180000,1566918240000,1566918300000,1566918360000,1566918420000,1566918480000,1566918540000,1566918600000,1566918660000,1566918720000,1566918780000,1566918840000,1566918900000,1566918960000,1566919020000,1566919080000,1566919140000,1566919200000,1566919260000,1566919320000,1566919380000,1566919440000,1566919500000,1566919560000,1566919620000,1566919680000,1566919740000,1566919800000,1566919860000,1566919920000,1566919980000,1566920040000,1566920100000,1566920160000,1566920220000,1566920280000,1566920340000,1566920400000,1566920460000,1566920520000,1566920580000,1566920640000,1566920700000,1566920760000,1566920820000,1566920880000,1566920940000,1566921000000,1566921060000,1566921120000,1566921180000,1566921240000,1566921300000,1566921360000,1566921420000,1566921480000,1566921540000,1566921600000,1566921660000,1566921720000,1566921780000,1566921840000,1566921900000,1566921960000,1566922020000,1566922080000,1566922140000,1566922200000,1566922260000,1566922320000,1566922380000,1566922440000,1566922500000,1566922560000,1566922620000,1566922680000,1566922740000,1566922800000,1566922860000,1566922920000,1566922980000,1566923040000,1566923100000,1566923160000,1566923220000,1566923280000,1566923340000,1566923400000,1566923460000,1566923520000,1566923580000,1566923640000,1566923700000,1566923760000,1566923820000,1566923880000,1566923940000,1566924000000,1566924060000,1566924120000,1566924180000,1566924240000,1566924300000,1566924360000,1566924420000,1566924480000,1566924540000,1566924600000,1566924660000,1566924720000,1566924780000,1566924840000,1566924900000,1566924960000,1566925020000,1566925080000,1566925140000,1566925200000,1566925260000,1566925320000,1566925380000,1566925440000,1566925500000,1566925560000,1566925620000,1566925680000,1566925740000,1566925800000,1566925860000,1566925920000,1566925980000,1566926040000,1566926100000,1566926160000,1566926220000,1566926280000,1566926340000,1566926400000,1566926460000,1566926520000,1566926580000,1566926640000,1566926700000,1566926760000,1566926820000,1566926880000,1566926940000,1566927000000,1566927060000,1566927120000,1566927180000,1566927240000,1566927300000,1566927360000,1566927420000,1566927480000,1566927540000,1566927600000,1566927660000,1566927720000,1566927780000,1566927840000,1566927900000,1566927960000,1566928020000,1566928080000,1566928140000,1566928200000,1566928260000,1566928320000,1566928380000,1566928440000,1566928500000,1566928560000,1566928620000,1566928680000,1566928740000,1566928800000,1566928860000,1566928920000,1566928980000,1566929040000,1566929100000,1566929160000,1566929220000,1566929280000,1566929340000,1566929400000,1566929460000,1566929520000,1566929580000,1566929640000,1566929700000,1566929760000,1566929820000,1566929880000,1566929940000,1566930000000,1566930060000,1566930120000,1566930180000,1566930240000,1566930300000,1566930360000,1566930420000,1566930480000,1566930540000,1566930600000,1566930660000,1566930720000,1566930780000,1566930840000,1566930900000,1566930960000,1566931020000,1566931080000,1566931140000,1566931200000,1566931260000,1566931320000,1566931380000,1566931440000,1566931500000,1566931560000,1566931620000,1566931680000,1566931740000,1566931800000,1566931860000,1566931920000,1566931980000,1566932040000,1566932100000,1566932160000,1566932220000,1566932280000,1566932340000,1566932400000,1566932460000,1566932520000,1566932580000,1566932640000,1566932700000,1566932760000,1566932820000,1566932880000,1566932940000,1566933000000,1566933060000,1566933120000,1566933180000,1566933240000,1566933300000,1566933360000,1566933420000,1566933480000,1566933540000,1566933600000,1566933660000,1566933720000,1566933780000,1566933840000,1566933900000,1566933960000,1566934020000,1566934080000,1566934140000,1566934200000,1566934260000,1566934320000,1566934380000,1566934440000,1566934500000,1566934560000,1566934620000,1566934680000,1566934740000,1566934800000,1566934860000,1566934920000,1566934980000,1566935040000,1566935100000,1566935160000,1566935220000,1566935280000,1566935340000,1566935400000,1566935460000,1566935520000,1566935580000,1566935640000,1566935700000,1566935760000,1566935820000,1566935880000,1566935940000,1566936000000,1566936060000,1566936120000,1566936180000,1566936240000,1566936300000,1566936360000,1566936420000,1566936480000,1566936540000,1566936600000,1566936660000,1566936720000,1566936780000,1566936840000,1566936900000,1566936960000,1566937020000,1566937080000,1566937140000,1566937200000,1566937260000,1566937320000,1566937380000,1566937440000,1566937500000,1566937560000,1566937620000,1566937680000,1566937740000,1566937800000,1566937860000,1566937920000,1566937980000,1566938040000,1566938100000,1566938160000,1566938220000,1566938280000,1566938340000,1566938400000,1566938460000,1566938520000,1566938580000,1566938640000,1566938700000,1566938760000,1566938820000,1566938880000,1566938940000,1566939000000,1566939060000,1566939120000,1566939180000,1566939240000,1566939300000,1566939360000,1566939420000,1566939480000,1566939540000,1566939600000,1566939660000,1566939720000,1566939780000,1566939840000,1566939900000,1566939960000,1566940020000,1566940080000,1566940140000,1566940200000,1566940260000,1566940320000,1566940380000,1566940440000,1566940500000,1566940560000,1566940620000,1566940680000,1566940740000,1566940800000,1566940860000,1566940920000,1566940980000,1566941040000,1566941100000,1566941160000,1566941220000,1566941280000,1566941340000,1566941400000,1566941460000,1566941520000,1566941580000,1566941640000,1566941700000,1566941760000,1566941820000,1566941880000,1566941940000,1566942000000,1566942060000,1566942120000,1566942180000,1566942240000,1566942300000,1566942360000,1566942420000,1566942480000,1566942540000,1566942600000,1566942660000,1566942720000,1566942780000,1566942840000,1566942900000,1566942960000,1566943020000,1566943080000,1566943140000,1566943200000,1566943260000,1566943320000,1566943380000,1566943440000,1566943500000,1566943560000,1566943620000,1566943680000,1566943740000,1566943800000,1566943860000,1566943920000,1566943980000,1566944040000,1566944100000,1566944160000,1566944220000,1566944280000,1566944340000,1566944400000,1566944460000,1566944520000,1566944580000,1566944640000,1566944700000,1566944760000,1566944820000,1566944880000,1566944940000,1566945000000,1566945060000,1566945120000,1566945180000,1566945240000,1566945300000,1566945360000,1566945420000,1566945480000,1566945540000,1566945600000,1566945660000,1566945720000,1566945780000,1566945840000,1566945900000,1566945960000,1566946020000,1566946080000,1566946140000,1566946200000,1566946260000,1566946320000,1566946380000,1566946440000,1566946500000,1566946560000,1566946620000,1566946680000,1566946740000,1566946800000,1566946860000,1566946920000,1566946980000,1566947040000,1566947100000,1566947160000,1566947220000,1566947280000,1566947340000,1566947400000,1566947460000,1566947520000,1566947580000,1566947640000,1566947700000,1566947760000,1566947820000,1566947880000,1566947940000,1566948000000,1566948060000,1566948120000,1566948180000,1566948240000,1566948300000,1566948360000,1566948420000,1566948480000,1566948540000,1566948600000,1566948660000,1566948720000,1566948780000,1566948840000,1566948900000,1566948960000,1566949020000,1566949080000,1566949140000,1566949200000,1566949260000,1566949320000,1566949380000,1566949440000,1566949500000,1566949560000,1566949620000,1566949680000,1566949740000,1566949800000,1566949860000,1566949920000,1566949980000,1566950040000,1566950100000,1566950160000,1566950220000,1566950280000,1566950340000,1566950400000,1566950460000,1566950520000,1566950580000,1566950640000,1566950700000,1566950760000,1566950820000,1566950880000,1566950940000,1566951000000,1566951060000,1566951120000,1566951180000,1566951240000,1566951300000,1566951360000,1566951420000,1566951480000,1566951540000,1566951600000,1566951660000,1566951720000,1566951780000,1566951840000,1566951900000,1566951960000,1566952020000,1566952080000,1566952140000,1566952200000,1566952260000,1566952320000,1566952380000,1566952440000,1566952500000,1566952560000,1566952620000,1566952680000,1566952740000,1566952800000,1566952860000,1566952920000,1566952980000,1566953040000,1566953100000,1566953160000,1566953220000,1566953280000,1566953340000,1566953400000,1566953460000,1566953520000,1566953580000,1566953640000,1566953700000,1566953760000,1566953820000,1566953880000,1566953940000,1566954000000,1566954060000,1566954120000,1566954180000,1566954240000,1566954300000,1566954360000,1566954420000,1566954480000,1566954540000,1566954600000,1566954660000,1566954720000,1566954780000,1566954840000,1566954900000,1566954960000,1566955020000,1566955080000,1566955140000,1566955200000,1566955260000,1566955320000,1566955380000,1566955440000,1566955500000,1566955560000,1566955620000,1566955680000,1566955740000,1566955800000,1566955860000,1566955920000,1566955980000,1566956040000,1566956100000,1566956160000,1566956220000,1566956280000,1566956340000,1566956400000,1566956460000,1566956520000,1566956580000,1566956640000,1566956700000,1566956760000,1566956820000,1566956880000,1566956940000,1566957000000,1566957060000,1566957120000,1566957180000,1566957240000,1566957300000,1566957360000,1566957420000,1566957480000,1566957540000,1566957600000,1566957660000,1566957720000,1566957780000,1566957840000,1566957900000,1566957960000,1566958020000,1566958080000,1566958140000,1566958200000,1566958260000,1566958320000,1566958380000,1566958440000,1566958500000,1566958560000,1566958620000,1566958680000,1566958740000,1566958800000,1566958860000,1566958920000,1566958980000,1566959040000,1566959100000,1566959160000,1566959220000,1566959280000,1566959340000,1566959400000,1566959460000,1566959520000,1566959580000,1566959640000,1566959700000,1566959760000,1566959820000,1566959880000,1566959940000,1566960000000,1566960060000,1566960120000,1566960180000,1566960240000,1566960300000,1566960360000,1566960420000,1566960480000,1566960540000,1566960600000,1566960660000,1566960720000,1566960780000,1566960840000,1566960900000,1566960960000,1566961020000,1566961080000,1566961140000,1566961200000,1566961260000,1566961320000,1566961380000,1566961440000,1566961500000,1566961560000,1566961620000,1566961680000,1566961740000,1566961800000,1566961860000,1566961920000,1566961980000,1566962040000,1566962100000,1566962160000,1566962220000,1566962280000,1566962340000,1566962400000,1566962460000,1566962520000,1566962580000,1566962640000,1566962700000,1566962760000,1566962820000,1566962880000,1566962940000,1566963000000,1566963060000,1566963120000,1566963180000,1566963240000,1566963300000,1566963360000,1566963420000,1566963480000,1566963540000,1566963600000,1566963660000,1566963720000,1566963780000,1566963840000,1566963900000,1566963960000,1566964020000,1566964080000,1566964140000,1566964200000,1566964260000,1566964320000,1566964380000,1566964440000,1566964500000,1566964560000,1566964620000,1566964680000,1566964740000,1566964800000,1566964860000,1566964920000,1566964980000,1566965040000,1566965100000,1566965160000,1566965220000,1566965280000,1566965340000,1566965400000,1566965460000,1566965520000,1566965580000,1566965640000,1566965700000,1566965760000,1566965820000,1566965880000,1566965940000,1566966000000,1566966060000,1566966120000,1566966180000,1566966240000,1566966300000,1566966360000,1566966420000,1566966480000,1566966540000,1566966600000,1566966660000,1566966720000,1566966780000,1566966840000,1566966900000,1566966960000,1566967020000,1566967080000,1566967140000,1566967200000,1566967260000,1566967320000,1566967380000,1566967440000,1566967500000,1566967560000,1566967620000,1566967680000,1566967740000,1566967800000,1566967860000,1566967920000,1566967980000,1566968040000,1566968100000,1566968160000,1566968220000,1566968280000,1566968340000,1566968400000,1566968460000,1566968520000,1566968580000,1566968640000,1566968700000,1566968760000,1566968820000,1566968880000,1566968940000,1566969000000,1566969060000,1566969120000,1566969180000,1566969240000,1566969300000,1566969360000,1566969420000,1566969480000,1566969540000,1566969600000,1566969660000,1566969720000,1566969780000,1566969840000,1566969900000,1566969960000,1566970020000,1566970080000,1566970140000,1566970200000,1566970260000,1566970320000,1566970380000,1566970440000,1566970500000,1566970560000,1566970620000,1566970680000,1566970740000,1566970800000,1566970860000,1566970920000,1566970980000,1566971040000,1566971100000,1566971160000,1566971220000,1566971280000,1566971340000,1566971400000,1566971460000,1566971520000,1566971580000,1566971640000,1566971700000,1566971760000,1566971820000,1566971880000,1566971940000,1566972000000,1566972060000,1566972120000,1566972180000,1566972240000,1566972300000,1566972360000,1566972420000,1566972480000,1566972540000,1566972600000,1566972660000,1566972720000,1566972780000,1566972840000,1566972900000,1566972960000,1566973020000,1566973080000,1566973140000,1566973200000,1566973260000,1566973320000,1566973380000,1566973440000,1566973500000,1566973560000,1566973620000,1566973680000,1566973740000,1566973800000,1566973860000,1566973920000,1566973980000,1566974040000,1566974100000,1566974160000,1566974220000,1566974280000,1566974340000,1566974400000,1566974460000,1566974520000,1566974580000,1566974640000,1566974700000,1566974760000,1566974820000,1566974880000,1566974940000,1566975000000,1566975060000,1566975120000,1566975180000,1566975240000,1566975300000,1566975360000,1566975420000,1566975480000,1566975540000,1566975600000,1566975660000,1566975720000,1566975780000,1566975840000,1566975900000,1566975960000,1566976020000,1566976080000,1566976140000,1566976200000,1566976260000,1566976320000,1566976380000,1566976440000,1566976500000,1566976560000,1566976620000,1566976680000,1566976740000,1566976800000,1566976860000,1566976920000,1566976980000,1566977040000,1566977100000,1566977160000,1566977220000,1566977280000,1566977340000,1566977400000,1566977460000,1566977520000,1566977580000,1566977640000,1566977700000,1566977760000,1566977820000,1566977880000,1566977940000,1566978000000,1566978060000,1566978120000,1566978180000,1566978240000,1566978300000,1566978360000,1566978420000,1566978480000,1566978540000,1566978600000,1566978660000,1566978720000,1566978780000,1566978840000,1566978900000,1566978960000,1566979020000,1566979080000,1566979140000,1566979200000,1566979260000,1566979320000,1566979380000,1566979440000,1566979500000,1566979560000,1566979620000,1566979680000,1566979740000,1566979800000,1566979860000,1566979920000,1566979980000,1566980040000,1566980100000,1566980160000,1566980220000,1566980280000,1566980340000,1566980400000,1566980460000,1566980520000,1566980580000,1566980640000,1566980700000,1566980760000,1566980820000,1566980880000,1566980940000,1566981000000,1566981060000,1566981120000,1566981180000,1566981240000,1566981300000,1566981360000,1566981420000,1566981480000,1566981540000,1566981600000,1566981660000,1566981720000,1566981780000,1566981840000,1566981900000,1566981960000,1566982020000,1566982080000,1566982140000,1566982200000,1566982260000,1566982320000,1566982380000,1566982440000,1566982500000,1566982560000,1566982620000,1566982680000,1566982740000,1566982800000,1566982860000,1566982920000,1566982980000,1566983040000,1566983100000,1566983160000,1566983220000,1566983280000,1566983340000,1566983400000,1566983460000,1566983520000,1566983580000,1566983640000,1566983700000,1566983760000,1566983820000,1566983880000,1566983940000,1566984000000,1566984060000,1566984120000,1566984180000,1566984240000,1566984300000,1566984360000,1566984420000,1566984480000,1566984540000,1566984600000,1566984660000,1566984720000,1566984780000,1566984840000,1566984900000,1566984960000,1566985020000,1566985080000,1566985140000,1566985200000,1566985260000,1566985320000,1566985380000,1566985440000,1566985500000,1566985560000,1566985620000,1566985680000,1566985740000,1566985800000,1566985860000,1566985920000,1566985980000,1566986040000,1566986100000,1566986160000,1566986220000,1566986280000,1566986340000,1566986400000,1566986460000,1566986520000,1566986580000,1566986640000,1566986700000,1566986760000,1566986820000,1566986880000,1566986940000,1566987000000,1566987060000,1566987120000,1566987180000,1566987240000,1566987300000,1566987360000,1566987420000,1566987480000,1566987540000,1566987600000,1566987660000,1566987720000,1566987780000,1566987840000,1566987900000,1566987960000,1566988020000,1566988080000,1566988140000,1566988200000,1566988260000,1566988320000,1566988380000,1566988440000,1566988500000,1566988560000,1566988620000,1566988680000,1566988740000,1566988800000,1566988860000,1566988920000,1566988980000,1566989040000,1566989100000,1566989160000,1566989220000,1566989280000,1566989340000,1566989400000,1566989460000,1566989520000,1566989580000,1566989640000,1566989700000,1566989760000,1566989820000,1566989880000,1566989940000,1566990000000,1566990060000,1566990120000,1566990180000,1566990240000,1566990300000,1566990360000,1566990420000,1566990480000,1566990540000,1566990600000,1566990660000,1566990720000,1566990780000,1566990840000,1566990900000,1566990960000,1566991020000,1566991080000,1566991140000,1566991200000,1566991260000,1566991320000,1566991380000,1566991440000,1566991500000,1566991560000,1566991620000,1566991680000,1566991740000,1566991800000,1566991860000,1566991920000,1566991980000,1566992040000,1566992100000,1566992160000,1566992220000,1566992280000,1566992340000,1566992400000,1566992460000,1566992520000,1566992580000,1566992640000,1566992700000,1566992760000,1566992820000,1566992880000,1566992940000,1566993000000,1566993060000,1566993120000,1566993180000,1566993240000,1566993300000,1566993360000,1566993420000,1566993480000,1566993540000,1566993600000,1566993660000,1566993720000,1566993780000,1566993840000,1566993900000,1566993960000,1566994020000,1566994080000,1566994140000,1566994200000,1566994260000,1566994320000,1566994380000,1566994440000,1566994500000,1566994560000,1566994620000,1566994680000,1566994740000,1566994800000,1566994860000,1566994920000,1566994980000,1566995040000,1566995100000,1566995160000,1566995220000,1566995280000,1566995340000,1566995400000,1566995460000,1566995520000,1566995580000,1566995640000,1566995700000,1566995760000,1566995820000,1566995880000,1566995940000,1566996000000,1566996060000,1566996120000,1566996180000,1566996240000,1566996300000,1566996360000,1566996420000,1566996480000,1566996540000,1566996600000,1566996660000,1566996720000,1566996780000,1566996840000,1566996900000,1566996960000,1566997020000,1566997080000,1566997140000,1566997200000,1566997260000,1566997320000,1566997380000,1566997440000,1566997500000,1566997560000,1566997620000,1566997680000,1566997740000,1566997800000,1566997860000,1566997920000,1566997980000,1566998040000,1566998100000,1566998160000,1566998220000,1566998280000,1566998340000,1566998400000,1566998460000,1566998520000,1566998580000,1566998640000,1566998700000,1566998760000,1566998820000,1566998880000,1566998940000,1566999000000,1566999060000,1566999120000,1566999180000,1566999240000,1566999300000,1566999360000,1566999420000,1566999480000,1566999540000,1566999600000,1566999660000,1566999720000,1566999780000,1566999840000,1566999900000,1566999960000,1567000020000,1567000080000,1567000140000,1567000200000,1567000260000,1567000320000,1567000380000,1567000440000,1567000500000,1567000560000,1567000620000,1567000680000,1567000740000,1567000800000,1567000860000,1567000920000,1567000980000,1567001040000,1567001100000,1567001160000,1567001220000,1567001280000,1567001340000,1567001400000,1567001460000,1567001520000,1567001580000,1567001640000,1567001700000,1567001760000,1567001820000,1567001880000,1567001940000,1567002000000,1567002060000,1567002120000,1567002180000,1567002240000,1567002300000,1567002360000,1567002420000,1567002480000,1567002540000,1567002600000,1567002660000,1567002720000,1567002780000,1567002840000,1567002900000,1567002960000,1567003020000,1567003080000,1567003140000,1567003200000,1567003260000,1567003320000,1567003380000,1567003440000,1567003500000,1567003560000,1567003620000,1567003680000,1567003740000,1567003800000,1567003860000,1567003920000,1567003980000,1567004040000,1567004100000,1567004160000,1567004220000,1567004280000,1567004340000,1567004400000,1567004460000,1567004520000,1567004580000,1567004640000,1567004700000,1567004760000,1567004820000,1567004880000,1567004940000,1567005000000,1567005060000,1567005120000,1567005180000,1567005240000,1567005300000,1567005360000,1567005420000,1567005480000,1567005540000,1567005600000,1567005660000,1567005720000,1567005780000,1567005840000,1567005900000,1567005960000,1567006020000,1567006080000,1567006140000,1567006200000,1567006260000,1567006320000,1567006380000,1567006440000,1567006500000,1567006560000,1567006620000,1567006680000,1567006740000,1567006800000,1567006860000,1567006920000,1567006980000,1567007040000,1567007100000,1567007160000,1567007220000,1567007280000,1567007340000,1567007400000,1567007460000,1567007520000,1567007580000,1567007640000,1567007700000,1567007760000,1567007820000,1567007880000,1567007940000,1567008000000,1567008060000,1567008120000,1567008180000,1567008240000,1567008300000,1567008360000,1567008420000,1567008480000,1567008540000,1567008600000,1567008660000,1567008720000,1567008780000,1567008840000,1567008900000,1567008960000,1567009020000,1567009080000,1567009140000,1567009200000,1567009260000,1567009320000,1567009380000,1567009440000,1567009500000,1567009560000,1567009620000,1567009680000,1567009740000,1567009800000,1567009860000,1567009920000,1567009980000,1567010040000,1567010100000,1567010160000,1567010220000,1567010280000,1567010340000,1567010400000,1567010460000,1567010520000,1567010580000,1567010640000,1567010700000,1567010760000,1567010820000,1567010880000,1567010940000,1567011000000,1567011060000,1567011120000,1567011180000,1567011240000,1567011300000,1567011360000,1567011420000,1567011480000,1567011540000,1567011600000,1567011660000,1567011720000,1567011780000,1567011840000,1567011900000,1567011960000,1567012020000,1567012080000,1567012140000,1567012200000,1567012260000,1567012320000,1567012380000,1567012440000,1567012500000,1567012560000,1567012620000,1567012680000,1567012740000,1567012800000,1567012860000,1567012920000,1567012980000,1567013040000,1567013100000,1567013160000,1567013220000,1567013280000,1567013340000,1567013400000,1567013460000,1567013520000,1567013580000,1567013640000,1567013700000,1567013760000,1567013820000,1567013880000,1567013940000,1567014000000,1567014060000,1567014120000,1567014180000,1567014240000,1567014300000,1567014360000,1567014420000,1567014480000,1567014540000,1567014600000,1567014660000,1567014720000,1567014780000,1567014840000,1567014900000,1567014960000,1567015020000,1567015080000,1567015140000,1567015200000,1567015260000,1567015320000,1567015380000,1567015440000,1567015500000,1567015560000,1567015620000,1567015680000,1567015740000,1567015800000,1567015860000,1567015920000,1567015980000,1567016040000,1567016100000,1567016160000,1567016220000,1567016280000,1567016340000,1567016400000,1567016460000,1567016520000,1567016580000,1567016640000,1567016700000,1567016760000,1567016820000,1567016880000,1567016940000,1567017000000,1567017060000,1567017120000,1567017180000,1567017240000,1567017300000,1567017360000,1567017420000,1567017480000,1567017540000,1567017600000,1567017660000,1567017720000,1567017780000,1567017840000,1567017900000,1567017960000,1567018020000,1567018080000,1567018140000,1567018200000,1567018260000,1567018320000,1567018380000,1567018440000,1567018500000,1567018560000,1567018620000,1567018680000,1567018740000,1567018800000,1567018860000,1567018920000,1567018980000,1567019040000,1567019100000,1567019160000,1567019220000,1567019280000,1567019340000,1567019400000,1567019460000,1567019520000,1567019580000,1567019640000,1567019700000,1567019760000,1567019820000,1567019880000,1567019940000,1567020000000,1567020060000,1567020120000,1567020180000,1567020240000,1567020300000,1567020360000,1567020420000,1567020480000,1567020540000,1567020600000,1567020660000,1567020720000,1567020780000,1567020840000,1567020900000,1567020960000,1567021020000,1567021080000,1567021140000,1567021200000,1567021260000,1567021320000,1567021380000,1567021440000,1567021500000,1567021560000,1567021620000,1567021680000,1567021740000,1567021800000,1567021860000,1567021920000,1567021980000,1567022040000,1567022100000,1567022160000,1567022220000,1567022280000,1567022340000,1567022400000,1567022460000,1567022520000,1567022580000,1567022640000,1567022700000,1567022760000,1567022820000,1567022880000,1567022940000,1567023000000,1567023060000,1567023120000,1567023180000,1567023240000,1567023300000,1567023360000,1567023420000,1567023480000,1567023540000,1567023600000,1567023660000,1567023720000,1567023780000,1567023840000,1567023900000,1567023960000,1567024020000,1567024080000,1567024140000,1567024200000,1567024260000,1567024320000,1567024380000,1567024440000,1567024500000,1567024560000,1567024620000,1567024680000,1567024740000,1567024800000,1567024860000,1567024920000,1567024980000,1567025040000,1567025100000,1567025160000,1567025220000,1567025280000,1567025340000,1567025400000,1567025460000,1567025520000,1567025580000,1567025640000,1567025700000,1567025760000,1567025820000,1567025880000,1567025940000,1567026000000,1567026060000,1567026120000,1567026180000,1567026240000,1567026300000,1567026360000,1567026420000,1567026480000,1567026540000,1567026600000,1567026660000,1567026720000,1567026780000,1567026840000,1567026900000,1567026960000,1567027020000,1567027080000,1567027140000,1567027200000,1567027260000,1567027320000,1567027380000,1567027440000,1567027500000,1567027560000,1567027620000,1567027680000,1567027740000,1567027800000,1567027860000,1567027920000,1567027980000,1567028040000,1567028100000,1567028160000,1567028220000,1567028280000,1567028340000,1567028400000,1567028460000,1567028520000,1567028580000,1567028640000,1567028700000,1567028760000,1567028820000,1567028880000,1567028940000,1567029000000,1567029060000,1567029120000,1567029180000,1567029240000,1567029300000,1567029360000,1567029420000,1567029480000,1567029540000,1567029600000,1567029660000,1567029720000,1567029780000,1567029840000,1567029900000,1567029960000,1567030020000,1567030080000,1567030140000,1567030200000,1567030260000,1567030320000,1567030380000,1567030440000,1567030500000,1567030560000,1567030620000,1567030680000,1567030740000,1567030800000,1567030860000,1567030920000,1567030980000,1567031040000,1567031100000,1567031160000,1567031220000,1567031280000,1567031340000,1567031400000,1567031460000,1567031520000,1567031580000,1567031640000,1567031700000,1567031760000,1567031820000,1567031880000,1567031940000,1567032000000,1567032060000,1567032120000,1567032180000,1567032240000,1567032300000,1567032360000,1567032420000,1567032480000,1567032540000,1567032600000,1567032660000,1567032720000,1567032780000,1567032840000,1567032900000,1567032960000,1567033020000,1567033080000,1567033140000,1567033200000,1567033260000,1567033320000,1567033380000,1567033440000,1567033500000,1567033560000,1567033620000,1567033680000,1567033740000,1567033800000,1567033860000,1567033920000,1567033980000,1567034040000,1567034100000,1567034160000,1567034220000,1567034280000,1567034340000,1567034400000,1567034460000,1567034520000,1567034580000,1567034640000,1567034700000,1567034760000,1567034820000,1567034880000,1567034940000,1567035000000,1567035060000,1567035120000,1567035180000,1567035240000,1567035300000,1567035360000,1567035420000,1567035480000,1567035540000,1567035600000,1567035660000,1567035720000,1567035780000,1567035840000,1567035900000,1567035960000,1567036020000,1567036080000,1567036140000,1567036200000,1567036260000,1567036320000,1567036380000,1567036440000,1567036500000,1567036560000,1567036620000,1567036680000,1567036740000,1567036800000,1567036860000,1567036920000,1567036980000,1567037040000,1567037100000,1567037160000,1567037220000,1567037280000,1567037340000,1567037400000,1567037460000,1567037520000,1567037580000,1567037640000,1567037700000,1567037760000,1567037820000,1567037880000,1567037940000,1567038000000,1567038060000,1567038120000,1567038180000,1567038240000,1567038300000,1567038360000,1567038420000,1567038480000,1567038540000,1567038600000,1567038660000,1567038720000,1567038780000,1567038840000,1567038900000,1567038960000,1567039020000,1567039080000,1567039140000,1567039200000,1567039260000,1567039320000,1567039380000,1567039440000,1567039500000,1567039560000,1567039620000,1567039680000,1567039740000,1567039800000,1567039860000,1567039920000,1567039980000,1567040040000,1567040100000,1567040160000,1567040220000,1567040280000,1567040340000,1567040400000,1567040460000,1567040520000,1567040580000,1567040640000,1567040700000,1567040760000,1567040820000,1567040880000,1567040940000,1567041000000,1567041060000,1567041120000,1567041180000,1567041240000,1567041300000,1567041360000,1567041420000,1567041480000,1567041540000,1567041600000,1567041660000,1567041720000,1567041780000,1567041840000,1567041900000,1567041960000,1567042020000,1567042080000,1567042140000,1567042200000,1567042260000,1567042320000,1567042380000,1567042440000,1567042500000,1567042560000,1567042620000,1567042680000,1567042740000,1567042800000,1567042860000,1567042920000,1567042980000,1567043040000,1567043100000,1567043160000,1567043220000,1567043280000,1567043340000,1567043400000,1567043460000,1567043520000,1567043580000,1567043640000,1567043700000,1567043760000,1567043820000,1567043880000,1567043940000,1567044000000,1567044060000,1567044120000,1567044180000,1567044240000,1567044300000,1567044360000,1567044420000,1567044480000,1567044540000,1567044600000,1567044660000,1567044720000,1567044780000,1567044840000,1567044900000,1567044960000,1567045020000,1567045080000,1567045140000,1567045200000,1567045260000,1567045320000,1567045380000,1567045440000,1567045500000,1567045560000,1567045620000,1567045680000,1567045740000,1567045800000,1567045860000,1567045920000,1567045980000,1567046040000,1567046100000,1567046160000,1567046220000,1567046280000,1567046340000,1567046400000,1567046460000,1567046520000,1567046580000,1567046640000,1567046700000,1567046760000,1567046820000,1567046880000,1567046940000,1567047000000,1567047060000,1567047120000,1567047180000,1567047240000,1567047300000,1567047360000,1567047420000,1567047480000,1567047540000,1567047600000,1567047660000,1567047720000,1567047780000,1567047840000,1567047900000,1567047960000,1567048020000,1567048080000,1567048140000,1567048200000,1567048260000,1567048320000,1567048380000,1567048440000,1567048500000,1567048560000,1567048620000,1567048680000,1567048740000,1567048800000,1567048860000,1567048920000,1567048980000,1567049040000,1567049100000,1567049160000,1567049220000,1567049280000,1567049340000,1567049400000,1567049460000,1567049520000,1567049580000,1567049640000,1567049700000,1567049760000,1567049820000,1567049880000,1567049940000,1567050000000,1567050060000,1567050120000,1567050180000,1567050240000,1567050300000,1567050360000,1567050420000,1567050480000,1567050540000,1567050600000,1567050660000,1567050720000,1567050780000,1567050840000,1567050900000,1567050960000,1567051020000,1567051080000,1567051140000,1567051200000,1567051260000,1567051320000,1567051380000,1567051440000,1567051500000,1567051560000,1567051620000,1567051680000,1567051740000,1567051800000,1567051860000,1567051920000,1567051980000,1567052040000,1567052100000,1567052160000,1567052220000,1567052280000,1567052340000,1567052400000,1567052460000,1567052520000,1567052580000,1567052640000,1567052700000,1567052760000,1567052820000,1567052880000,1567052940000,1567053000000,1567053060000,1567053120000,1567053180000,1567053240000,1567053300000,1567053360000,1567053420000,1567053480000,1567053540000,1567053600000,1567053660000,1567053720000,1567053780000,1567053840000,1567053900000,1567053960000,1567054020000,1567054080000,1567054140000,1567054200000,1567054260000,1567054320000,1567054380000,1567054440000,1567054500000,1567054560000,1567054620000,1567054680000,1567054740000,1567054800000,1567054860000,1567054920000,1567054980000,1567055040000,1567055100000,1567055160000,1567055220000,1567055280000,1567055340000,1567055400000,1567055460000,1567055520000,1567055580000,1567055640000,1567055700000,1567055760000,1567055820000,1567055880000,1567055940000,1567056000000,1567056060000,1567056120000,1567056180000,1567056240000,1567056300000,1567056360000,1567056420000,1567056480000,1567056540000,1567056600000,1567056660000,1567056720000,1567056780000,1567056840000,1567056900000,1567056960000,1567057020000,1567057080000,1567057140000,1567057200000,1567057260000,1567057320000,1567057380000,1567057440000,1567057500000,1567057560000,1567057620000,1567057680000,1567057740000,1567057800000,1567057860000,1567057920000,1567057980000,1567058040000,1567058100000,1567058160000,1567058220000,1567058280000,1567058340000,1567058400000,1567058460000,1567058520000,1567058580000,1567058640000,1567058700000,1567058760000,1567058820000,1567058880000,1567058940000,1567059000000,1567059060000,1567059120000,1567059180000,1567059240000,1567059300000,1567059360000,1567059420000,1567059480000,1567059540000,1567059600000,1567059660000,1567059720000,1567059780000,1567059840000,1567059900000,1567059960000,1567060020000,1567060080000,1567060140000,1567060200000,1567060260000,1567060320000,1567060380000,1567060440000,1567060500000,1567060560000,1567060620000,1567060680000,1567060740000,1567060800000,1567060860000,1567060920000,1567060980000,1567061040000,1567061100000,1567061160000,1567061220000,1567061280000,1567061340000,1567061400000,1567061460000,1567061520000,1567061580000,1567061640000,1567061700000,1567061760000,1567061820000,1567061880000,1567061940000,1567062000000,1567062060000,1567062120000,1567062180000,1567062240000,1567062300000,1567062360000,1567062420000,1567062480000,1567062540000,1567062600000,1567062660000,1567062720000,1567062780000,1567062840000,1567062900000,1567062960000,1567063020000,1567063080000,1567063140000,1567063200000,1567063260000,1567063320000,1567063380000,1567063440000,1567063500000,1567063560000,1567063620000,1567063680000,1567063740000,1567063800000,1567063860000,1567063920000,1567063980000,1567064040000,1567064100000,1567064160000,1567064220000,1567064280000,1567064340000,1567064400000,1567064460000,1567064520000,1567064580000,1567064640000,1567064700000,1567064760000,1567064820000,1567064880000,1567064940000,1567065000000,1567065060000,1567065120000,1567065180000,1567065240000,1567065300000,1567065360000,1567065420000,1567065480000,1567065540000,1567065600000,1567065660000,1567065720000,1567065780000,1567065840000,1567065900000,1567065960000,1567066020000,1567066080000,1567066140000,1567066200000,1567066260000,1567066320000,1567066380000,1567066440000,1567066500000,1567066560000,1567066620000,1567066680000,1567066740000,1567066800000,1567066860000,1567066920000,1567066980000,1567067040000,1567067100000,1567067160000,1567067220000,1567067280000,1567067340000,1567067400000,1567067460000,1567067520000,1567067580000,1567067640000,1567067700000,1567067760000,1567067820000,1567067880000,1567067940000,1567068000000,1567068060000,1567068120000,1567068180000,1567068240000,1567068300000,1567068360000,1567068420000,1567068480000,1567068540000,1567068600000,1567068660000,1567068720000,1567068780000,1567068840000,1567068900000,1567068960000,1567069020000,1567069080000,1567069140000,1567069200000,1567069260000,1567069320000,1567069380000,1567069440000,1567069500000,1567069560000,1567069620000,1567069680000,1567069740000,1567069800000,1567069860000,1567069920000,1567069980000,1567070040000,1567070100000,1567070160000,1567070220000,1567070280000,1567070340000,1567070400000,1567070460000,1567070520000,1567070580000,1567070640000,1567070700000,1567070760000,1567070820000,1567070880000,1567070940000,1567071000000,1567071060000,1567071120000,1567071180000,1567071240000,1567071300000,1567071360000,1567071420000,1567071480000,1567071540000,1567071600000,1567071660000,1567071720000,1567071780000,1567071840000,1567071900000,1567071960000,1567072020000,1567072080000,1567072140000,1567072200000,1567072260000,1567072320000,1567072380000,1567072440000,1567072500000,1567072560000,1567072620000,1567072680000,1567072740000,1567072800000,1567072860000,1567072920000,1567072980000,1567073040000,1567073100000,1567073160000,1567073220000,1567073280000,1567073340000,1567073400000,1567073460000,1567073520000,1567073580000,1567073640000,1567073700000,1567073760000,1567073820000,1567073880000,1567073940000,1567074000000,1567074060000,1567074120000,1567074180000,1567074240000,1567074300000,1567074360000,1567074420000,1567074480000,1567074540000,1567074600000,1567074660000,1567074720000,1567074780000,1567074840000,1567074900000,1567074960000,1567075020000,1567075080000,1567075140000,1567075200000,1567075260000,1567075320000,1567075380000,1567075440000,1567075500000,1567075560000,1567075620000,1567075680000,1567075740000,1567075800000,1567075860000,1567075920000,1567075980000,1567076040000,1567076100000,1567076160000,1567076220000,1567076280000,1567076340000,1567076400000,1567076460000,1567076520000,1567076580000,1567076640000,1567076700000,1567076760000,1567076820000,1567076880000,1567076940000,1567077000000,1567077060000,1567077120000,1567077180000,1567077240000,1567077300000,1567077360000,1567077420000,1567077480000,1567077540000,1567077600000,1567077660000,1567077720000,1567077780000,1567077840000,1567077900000,1567077960000,1567078020000,1567078080000,1567078140000,1567078200000,1567078260000,1567078320000,1567078380000,1567078440000,1567078500000,1567078560000,1567078620000,1567078680000,1567078740000,1567078800000,1567078860000,1567078920000,1567078980000,1567079040000,1567079100000,1567079160000,1567079220000,1567079280000,1567079340000,1567079400000,1567079460000,1567079520000,1567079580000,1567079640000,1567079700000,1567079760000,1567079820000,1567079880000,1567079940000,1567080000000,1567080060000,1567080120000,1567080180000,1567080240000,1567080300000,1567080360000,1567080420000,1567080480000,1567080540000,1567080600000,1567080660000,1567080720000,1567080780000,1567080840000,1567080900000,1567080960000,1567081020000,1567081080000,1567081140000,1567081200000,1567081260000,1567081320000,1567081380000,1567081440000,1567081500000,1567081560000,1567081620000,1567081680000,1567081740000,1567081800000,1567081860000,1567081920000,1567081980000,1567082040000,1567082100000,1567082160000,1567082220000,1567082280000,1567082340000,1567082400000,1567082460000,1567082520000,1567082580000,1567082640000,1567082700000,1567082760000,1567082820000,1567082880000,1567082940000,1567083000000,1567083060000,1567083120000,1567083180000,1567083240000,1567083300000,1567083360000,1567083420000,1567083480000,1567083540000,1567083600000,1567083660000,1567083720000,1567083780000,1567083840000,1567083900000,1567083960000,1567084020000,1567084080000,1567084140000,1567084200000,1567084260000,1567084320000,1567084380000,1567084440000,1567084500000,1567084560000,1567084620000,1567084680000,1567084740000,1567084800000,1567084860000,1567084920000,1567084980000,1567085040000,1567085100000,1567085160000,1567085220000,1567085280000,1567085340000,1567085400000,1567085460000,1567085520000,1567085580000,1567085640000,1567085700000,1567085760000,1567085820000,1567085880000,1567085940000,1567086000000,1567086060000,1567086120000,1567086180000,1567086240000,1567086300000,1567086360000,1567086420000,1567086480000,1567086540000,1567086600000,1567086660000,1567086720000,1567086780000,1567086840000,1567086900000,1567086960000,1567087020000,1567087080000,1567087140000,1567087200000,1567087260000,1567087320000,1567087380000,1567087440000,1567087500000,1567087560000,1567087620000,1567087680000,1567087740000,1567087800000,1567087860000,1567087920000,1567087980000,1567088040000,1567088100000,1567088160000,1567088220000,1567088280000,1567088340000,1567088400000,1567088460000,1567088520000,1567088580000,1567088640000,1567088700000,1567088760000,1567088820000,1567088880000,1567088940000,1567089000000,1567089060000,1567089120000,1567089180000,1567089240000,1567089300000,1567089360000,1567089420000,1567089480000,1567089540000,1567089600000,1567089660000,1567089720000,1567089780000,1567089840000,1567089900000,1567089960000,1567090020000,1567090080000,1567090140000,1567090200000,1567090260000,1567090320000,1567090380000,1567090440000,1567090500000,1567090560000,1567090620000,1567090680000,1567090740000,1567090800000,1567090860000,1567090920000,1567090980000,1567091040000,1567091100000,1567091160000,1567091220000,1567091280000,1567091340000,1567091400000,1567091460000,1567091520000,1567091580000,1567091640000,1567091700000,1567091760000,1567091820000,1567091880000,1567091940000,1567092000000,1567092060000,1567092120000,1567092180000,1567092240000,1567092300000,1567092360000,1567092420000,1567092480000,1567092540000,1567092600000,1567092660000,1567092720000,1567092780000,1567092840000,1567092900000,1567092960000,1567093020000,1567093080000,1567093140000,1567093200000,1567093260000,1567093320000,1567093380000,1567093440000,1567093500000,1567093560000,1567093620000,1567093680000,1567093740000,1567093800000,1567093860000,1567093920000,1567093980000,1567094040000,1567094100000,1567094160000,1567094220000,1567094280000,1567094340000,1567094400000,1567094460000,1567094520000,1567094580000,1567094640000,1567094700000,1567094760000,1567094820000,1567094880000,1567094940000,1567095000000,1567095060000,1567095120000,1567095180000,1567095240000,1567095300000,1567095360000,1567095420000,1567095480000,1567095540000,1567095600000,1567095660000,1567095720000,1567095780000,1567095840000,1567095900000,1567095960000,1567096020000,1567096080000,1567096140000,1567096200000,1567096260000,1567096320000,1567096380000,1567096440000,1567096500000,1567096560000,1567096620000,1567096680000,1567096740000,1567096800000,1567096860000,1567096920000,1567096980000,1567097040000,1567097100000,1567097160000,1567097220000,1567097280000,1567097340000,1567097400000,1567097460000,1567097520000,1567097580000,1567097640000,1567097700000,1567097760000,1567097820000,1567097880000,1567097940000,1567098000000,1567098060000,1567098120000,1567098180000,1567098240000,1567098300000,1567098360000,1567098420000,1567098480000,1567098540000,1567098600000,1567098660000,1567098720000,1567098780000,1567098840000,1567098900000,1567098960000,1567099020000,1567099080000,1567099140000,1567099200000,1567099260000,1567099320000,1567099380000,1567099440000,1567099500000,1567099560000,1567099620000,1567099680000,1567099740000,1567099800000,1567099860000,1567099920000,1567099980000,1567100040000,1567100100000,1567100160000,1567100220000,1567100280000,1567100340000,1567100400000,1567100460000,1567100520000,1567100580000,1567100640000,1567100700000,1567100760000,1567100820000,1567100880000,1567100940000,1567101000000,1567101060000,1567101120000,1567101180000,1567101240000,1567101300000,1567101360000,1567101420000,1567101480000,1567101540000,1567101600000,1567101660000,1567101720000,1567101780000,1567101840000,1567101900000,1567101960000,1567102020000,1567102080000,1567102140000,1567102200000,1567102260000,1567102320000,1567102380000,1567102440000,1567102500000,1567102560000,1567102620000,1567102680000,1567102740000,1567102800000,1567102860000,1567102920000,1567102980000,1567103040000,1567103100000,1567103160000,1567103220000,1567103280000,1567103340000,1567103400000,1567103460000,1567103520000,1567103580000,1567103640000,1567103700000,1567103760000,1567103820000,1567103880000,1567103940000,1567104000000,1567104060000,1567104120000,1567104180000,1567104240000,1567104300000,1567104360000,1567104420000,1567104480000,1567104540000,1567104600000,1567104660000,1567104720000,1567104780000,1567104840000,1567104900000,1567104960000,1567105020000,1567105080000,1567105140000,1567105200000,1567105260000,1567105320000,1567105380000,1567105440000,1567105500000,1567105560000,1567105620000,1567105680000,1567105740000,1567105800000,1567105860000,1567105920000,1567105980000,1567106040000,1567106100000,1567106160000,1567106220000,1567106280000,1567106340000,1567106400000,1567106460000,1567106520000,1567106580000,1567106640000,1567106700000,1567106760000,1567106820000,1567106880000,1567106940000,1567107000000,1567107060000,1567107120000,1567107180000,1567107240000,1567107300000,1567107360000,1567107420000,1567107480000,1567107540000,1567107600000,1567107660000,1567107720000,1567107780000,1567107840000,1567107900000,1567107960000,1567108020000,1567108080000,1567108140000,1567108200000,1567108260000,1567108320000,1567108380000,1567108440000,1567108500000,1567108560000,1567108620000,1567108680000,1567108740000,1567108800000,1567108860000,1567108920000,1567108980000,1567109040000,1567109100000,1567109160000,1567109220000,1567109280000,1567109340000,1567109400000,1567109460000,1567109520000,1567109580000,1567109640000,1567109700000,1567109760000,1567109820000,1567109880000,1567109940000,1567110000000,1567110060000,1567110120000,1567110180000,1567110240000,1567110300000,1567110360000,1567110420000,1567110480000,1567110540000,1567110600000,1567110660000,1567110720000,1567110780000,1567110840000,1567110900000,1567110960000,1567111020000,1567111080000,1567111140000,1567111200000,1567111260000,1567111320000,1567111380000,1567111440000,1567111500000,1567111560000,1567111620000,1567111680000,1567111740000,1567111800000,1567111860000,1567111920000,1567111980000,1567112040000,1567112100000,1567112160000,1567112220000,1567112280000,1567112340000,1567112400000,1567112460000,1567112520000,1567112580000,1567112640000,1567112700000,1567112760000,1567112820000,1567112880000,1567112940000,1567113000000,1567113060000,1567113120000,1567113180000,1567113240000,1567113300000,1567113360000,1567113420000,1567113480000,1567113540000,1567113600000,1567113660000,1567113720000,1567113780000,1567113840000,1567113900000,1567113960000,1567114020000,1567114080000,1567114140000,1567114200000,1567114260000,1567114320000,1567114380000,1567114440000,1567114500000,1567114560000,1567114620000,1567114680000,1567114740000,1567114800000,1567114860000,1567114920000,1567114980000,1567115040000,1567115100000,1567115160000,1567115220000,1567115280000,1567115340000,1567115400000,1567115460000,1567115520000,1567115580000,1567115640000,1567115700000,1567115760000,1567115820000,1567115880000,1567115940000,1567116000000,1567116060000,1567116120000,1567116180000,1567116240000,1567116300000,1567116360000,1567116420000,1567116480000,1567116540000,1567116600000,1567116660000,1567116720000,1567116780000,1567116840000,1567116900000,1567116960000,1567117020000,1567117080000,1567117140000,1567117200000,1567117260000,1567117320000,1567117380000,1567117440000,1567117500000,1567117560000,1567117620000,1567117680000,1567117740000,1567117800000,1567117860000,1567117920000,1567117980000,1567118040000,1567118100000,1567118160000,1567118220000,1567118280000,1567118340000,1567118400000,1567118460000,1567118520000,1567118580000,1567118640000,1567118700000,1567118760000,1567118820000,1567118880000,1567118940000,1567119000000,1567119060000,1567119120000,1567119180000,1567119240000,1567119300000,1567119360000,1567119420000,1567119480000,1567119540000,1567119600000,1567119660000,1567119720000,1567119780000,1567119840000,1567119900000,1567119960000,1567120020000,1567120080000,1567120140000,1567120200000,1567120260000,1567120320000,1567120380000,1567120440000,1567120500000,1567120560000,1567120620000,1567120680000,1567120740000,1567120800000,1567120860000,1567120920000,1567120980000,1567121040000,1567121100000,1567121160000,1567121220000,1567121280000,1567121340000,1567121400000,1567121460000,1567121520000,1567121580000,1567121640000,1567121700000,1567121760000,1567121820000,1567121880000,1567121940000,1567122000000,1567122060000,1567122120000,1567122180000,1567122240000,1567122300000,1567122360000,1567122420000,1567122480000,1567122540000,1567122600000,1567122660000,1567122720000,1567122780000,1567122840000,1567122900000,1567122960000,1567123020000,1567123080000,1567123140000,1567123200000,1567123260000,1567123320000,1567123380000,1567123440000,1567123500000,1567123560000,1567123620000,1567123680000,1567123740000,1567123800000,1567123860000,1567123920000,1567123980000,1567124040000,1567124100000,1567124160000,1567124220000,1567124280000,1567124340000,1567124400000,1567124460000,1567124520000,1567124580000,1567124640000,1567124700000,1567124760000,1567124820000,1567124880000,1567124940000,1567125000000,1567125060000,1567125120000,1567125180000,1567125240000,1567125300000,1567125360000,1567125420000,1567125480000,1567125540000,1567125600000,1567125660000,1567125720000,1567125780000,1567125840000,1567125900000,1567125960000,1567126020000,1567126080000,1567126140000,1567126200000,1567126260000,1567126320000,1567126380000,1567126440000,1567126500000,1567126560000,1567126620000,1567126680000,1567126740000,1567126800000,1567126860000,1567126920000,1567126980000,1567127040000,1567127100000,1567127160000,1567127220000,1567127280000,1567127340000,1567127400000,1567127460000,1567127520000,1567127580000,1567127640000,1567127700000,1567127760000,1567127820000,1567127880000,1567127940000,1567128000000,1567128060000,1567128120000,1567128180000,1567128240000,1567128300000,1567128360000,1567128420000,1567128480000,1567128540000,1567128600000,1567128660000,1567128720000,1567128780000,1567128840000,1567128900000,1567128960000,1567129020000,1567129080000,1567129140000,1567129200000,1567129260000,1567129320000,1567129380000,1567129440000,1567129500000,1567129560000,1567129620000,1567129680000,1567129740000,1567129800000,1567129860000,1567129920000,1567129980000,1567130040000,1567130100000,1567130160000,1567130220000,1567130280000,1567130340000,1567130400000,1567130460000,1567130520000,1567130580000,1567130640000,1567130700000,1567130760000,1567130820000,1567130880000,1567130940000,1567131000000,1567131060000,1567131120000,1567131180000,1567131240000,1567131300000,1567131360000,1567131420000,1567131480000,1567131540000,1567131600000,1567131660000,1567131720000,1567131780000,1567131840000,1567131900000,1567131960000,1567132020000,1567132080000,1567132140000,1567132200000,1567132260000,1567132320000,1567132380000,1567132440000,1567132500000,1567132560000,1567132620000,1567132680000,1567132740000,1567132800000,1567132860000,1567132920000,1567132980000,1567133040000,1567133100000,1567133160000,1567133220000,1567133280000,1567133340000,1567133400000,1567133460000,1567133520000,1567133580000,1567133640000,1567133700000,1567133760000,1567133820000,1567133880000,1567133940000,1567134000000,1567134060000,1567134120000,1567134180000,1567134240000,1567134300000,1567134360000,1567134420000,1567134480000,1567134540000,1567134600000,1567134660000,1567134720000,1567134780000,1567134840000,1567134900000,1567134960000,1567135020000,1567135080000,1567135140000,1567135200000,1567135260000,1567135320000,1567135380000,1567135440000,1567135500000,1567135560000,1567135620000,1567135680000,1567135740000,1567135800000,1567135860000,1567135920000,1567135980000,1567136040000,1567136100000,1567136160000,1567136220000,1567136280000,1567136340000,1567136400000,1567136460000,1567136520000,1567136580000,1567136640000,1567136700000,1567136760000,1567136820000,1567136880000,1567136940000,1567137000000,1567137060000,1567137120000,1567137180000,1567137240000,1567137300000,1567137360000,1567137420000,1567137480000,1567137540000,1567137600000,1567137660000,1567137720000,1567137780000,1567137840000,1567137900000,1567137960000,1567138020000,1567138080000,1567138140000,1567138200000,1567138260000,1567138320000,1567138380000,1567138440000,1567138500000,1567138560000,1567138620000,1567138680000,1567138740000,1567138800000,1567138860000,1567138920000,1567138980000,1567139040000,1567139100000,1567139160000,1567139220000,1567139280000,1567139340000,1567139400000,1567139460000,1567139520000,1567139580000,1567139640000,1567139700000,1567139760000,1567139820000,1567139880000,1567139940000,1567140000000,1567140060000,1567140120000,1567140180000,1567140240000,1567140300000,1567140360000,1567140420000,1567140480000,1567140540000,1567140600000,1567140660000,1567140720000,1567140780000,1567140840000,1567140900000,1567140960000,1567141020000,1567141080000,1567141140000,1567141200000,1567141260000,1567141320000,1567141380000,1567141440000,1567141500000,1567141560000,1567141620000,1567141680000,1567141740000,1567141800000,1567141860000,1567141920000,1567141980000,1567142040000,1567142100000,1567142160000,1567142220000,1567142280000,1567142340000,1567142400000,1567142460000,1567142520000,1567142580000,1567142640000,1567142700000,1567142760000,1567142820000,1567142880000,1567142940000,1567143000000,1567143060000,1567143120000,1567143180000,1567143240000,1567143300000,1567143360000,1567143420000,1567143480000,1567143540000,1567143600000,1567143660000,1567143720000,1567143780000,1567143840000,1567143900000,1567143960000,1567144020000,1567144080000,1567144140000,1567144200000,1567144260000,1567144320000,1567144380000,1567144440000,1567144500000,1567144560000,1567144620000,1567144680000,1567144740000,1567144800000,1567144860000,1567144920000,1567144980000,1567145040000,1567145100000,1567145160000,1567145220000,1567145280000,1567145340000,1567145400000,1567145460000,1567145520000,1567145580000,1567145640000,1567145700000,1567145760000,1567145820000,1567145880000,1567145940000,1567146000000,1567146060000,1567146120000,1567146180000,1567146240000,1567146300000,1567146360000,1567146420000,1567146480000,1567146540000,1567146600000,1567146660000,1567146720000,1567146780000,1567146840000,1567146900000,1567146960000,1567147020000,1567147080000,1567147140000,1567147200000,1567147260000,1567147320000,1567147380000,1567147440000,1567147500000,1567147560000,1567147620000,1567147680000,1567147740000,1567147800000,1567147860000,1567147920000,1567147980000,1567148040000,1567148100000,1567148160000,1567148220000,1567148280000,1567148340000,1567148400000,1567148460000,1567148520000,1567148580000,1567148640000,1567148700000,1567148760000,1567148820000,1567148880000,1567148940000,1567149000000,1567149060000,1567149120000,1567149180000,1567149240000,1567149300000,1567149360000,1567149420000,1567149480000,1567149540000,1567149600000,1567149660000,1567149720000,1567149780000,1567149840000,1567149900000,1567149960000,1567150020000,1567150080000,1567150140000,1567150200000,1567150260000,1567150320000,1567150380000,1567150440000,1567150500000,1567150560000,1567150620000,1567150680000,1567150740000,1567150800000,1567150860000,1567150920000,1567150980000,1567151040000,1567151100000,1567151160000,1567151220000,1567151280000,1567151340000,1567151400000,1567151460000,1567151520000,1567151580000,1567151640000,1567151700000,1567151760000,1567151820000,1567151880000,1567151940000,1567152000000,1567152060000,1567152120000,1567152180000,1567152240000,1567152300000,1567152360000,1567152420000,1567152480000,1567152540000,1567152600000,1567152660000,1567152720000,1567152780000,1567152840000,1567152900000,1567152960000,1567153020000,1567153080000,1567153140000,1567153200000,1567153260000,1567153320000,1567153380000,1567153440000,1567153500000,1567153560000,1567153620000,1567153680000,1567153740000,1567153800000,1567153860000,1567153920000,1567153980000,1567154040000,1567154100000,1567154160000,1567154220000,1567154280000,1567154340000,1567154400000,1567154460000,1567154520000,1567154580000,1567154640000,1567154700000,1567154760000,1567154820000,1567154880000,1567154940000,1567155000000,1567155060000,1567155120000,1567155180000,1567155240000,1567155300000,1567155360000,1567155420000,1567155480000,1567155540000,1567155600000,1567155660000,1567155720000,1567155780000,1567155840000,1567155900000,1567155960000,1567156020000,1567156080000,1567156140000,1567156200000,1567156260000,1567156320000,1567156380000,1567156440000,1567156500000,1567156560000,1567156620000,1567156680000,1567156740000,1567156800000,1567156860000,1567156920000,1567156980000,1567157040000,1567157100000,1567157160000,1567157220000,1567157280000,1567157340000,1567157400000,1567157460000,1567157520000,1567157580000,1567157640000,1567157700000,1567157760000,1567157820000,1567157880000,1567157940000,1567158000000,1567158060000,1567158120000,1567158180000,1567158240000,1567158300000,1567158360000,1567158420000,1567158480000,1567158540000,1567158600000,1567158660000,1567158720000,1567158780000,1567158840000,1567158900000,1567158960000,1567159020000,1567159080000,1567159140000,1567159200000,1567159260000,1567159320000,1567159380000,1567159440000,1567159500000,1567159560000,1567159620000,1567159680000,1567159740000,1567159800000,1567159860000,1567159920000,1567159980000,1567160040000,1567160100000,1567160160000,1567160220000,1567160280000,1567160340000,1567160400000,1567160460000,1567160520000,1567160580000,1567160640000,1567160700000,1567160760000,1567160820000,1567160880000,1567160940000,1567161000000,1567161060000,1567161120000,1567161180000,1567161240000,1567161300000,1567161360000,1567161420000,1567161480000,1567161540000,1567161600000,1567161660000,1567161720000,1567161780000,1567161840000,1567161900000,1567161960000,1567162020000,1567162080000,1567162140000,1567162200000,1567162260000,1567162320000,1567162380000,1567162440000,1567162500000,1567162560000,1567162620000,1567162680000,1567162740000,1567162800000,1567162860000,1567162920000,1567162980000,1567163040000,1567163100000,1567163160000,1567163220000,1567163280000,1567163340000,1567163400000,1567163460000,1567163520000,1567163580000,1567163640000,1567163700000,1567163760000,1567163820000,1567163880000,1567163940000,1567164000000,1567164060000,1567164120000,1567164180000,1567164240000,1567164300000,1567164360000,1567164420000,1567164480000,1567164540000,1567164600000,1567164660000,1567164720000,1567164780000,1567164840000,1567164900000,1567164960000,1567165020000,1567165080000,1567165140000,1567165200000,1567165260000,1567165320000,1567165380000,1567165440000,1567165500000,1567165560000,1567165620000,1567165680000,1567165740000,1567165800000,1567165860000,1567165920000,1567165980000,1567166040000,1567166100000,1567166160000,1567166220000,1567166280000,1567166340000,1567166400000,1567166460000,1567166520000,1567166580000,1567166640000,1567166700000,1567166760000,1567166820000,1567166880000,1567166940000,1567167000000,1567167060000,1567167120000,1567167180000,1567167240000,1567167300000,1567167360000,1567167420000,1567167480000,1567167540000,1567167600000,1567167660000,1567167720000,1567167780000,1567167840000,1567167900000,1567167960000,1567168020000,1567168080000,1567168140000,1567168200000,1567168260000,1567168320000,1567168380000,1567168440000,1567168500000,1567168560000,1567168620000,1567168680000,1567168740000,1567168800000,1567168860000,1567168920000,1567168980000,1567169040000,1567169100000,1567169160000,1567169220000,1567169280000,1567169340000,1567169400000,1567169460000,1567169520000,1567169580000,1567169640000,1567169700000,1567169760000,1567169820000,1567169880000,1567169940000,1567170000000,1567170060000,1567170120000,1567170180000,1567170240000,1567170300000,1567170360000,1567170420000,1567170480000,1567170540000,1567170600000,1567170660000,1567170720000,1567170780000,1567170840000,1567170900000,1567170960000,1567171020000,1567171080000,1567171140000,1567171200000,1567171260000,1567171320000,1567171380000,1567171440000,1567171500000,1567171560000,1567171620000,1567171680000,1567171740000,1567171800000,1567171860000,1567171920000,1567171980000,1567172040000,1567172100000,1567172160000,1567172220000,1567172280000,1567172340000,1567172400000,1567172460000,1567172520000,1567172580000,1567172640000,1567172700000,1567172760000,1567172820000,1567172880000,1567172940000,1567173000000,1567173060000,1567173120000,1567173180000,1567173240000,1567173300000,1567173360000,1567173420000,1567173480000,1567173540000,1567173600000,1567173660000,1567173720000,1567173780000,1567173840000,1567173900000,1567173960000,1567174020000,1567174080000,1567174140000,1567174200000,1567174260000,1567174320000,1567174380000,1567174440000,1567174500000,1567174560000,1567174620000,1567174680000,1567174740000,1567174800000,1567174860000,1567174920000,1567174980000,1567175040000,1567175100000,1567175160000,1567175220000,1567175280000,1567175340000,1567175400000,1567175460000,1567175520000,1567175580000,1567175640000,1567175700000,1567175760000,1567175820000,1567175880000,1567175940000,1567176000000,1567176060000,1567176120000,1567176180000,1567176240000,1567176300000,1567176360000,1567176420000,1567176480000,1567176540000,1567176600000,1567176660000,1567176720000,1567176780000,1567176840000,1567176900000,1567176960000,1567177020000,1567177080000,1567177140000,1567177200000,1567177260000,1567177320000,1567177380000,1567177440000,1567177500000,1567177560000,1567177620000,1567177680000,1567177740000,1567177800000,1567177860000,1567177920000,1567177980000,1567178040000,1567178100000,1567178160000,1567178220000,1567178280000,1567178340000,1567178400000,1567178460000,1567178520000,1567178580000,1567178640000,1567178700000,1567178760000,1567178820000,1567178880000,1567178940000,1567179000000,1567179060000,1567179120000,1567179180000,1567179240000,1567179300000,1567179360000,1567179420000,1567179480000,1567179540000,1567179600000,1567179660000,1567179720000,1567179780000,1567179840000,1567179900000,1567179960000,1567180020000,1567180080000,1567180140000,1567180200000,1567180260000,1567180320000,1567180380000,1567180440000,1567180500000,1567180560000,1567180620000,1567180680000,1567180740000,1567180800000,1567180860000,1567180920000,1567180980000,1567181040000,1567181100000,1567181160000,1567181220000,1567181280000,1567181340000,1567181400000,1567181460000,1567181520000,1567181580000,1567181640000,1567181700000,1567181760000,1567181820000,1567181880000,1567181940000,1567182000000,1567182060000,1567182120000,1567182180000,1567182240000,1567182300000,1567182360000,1567182420000,1567182480000,1567182540000,1567182600000,1567182660000,1567182720000,1567182780000,1567182840000,1567182900000,1567182960000,1567183020000,1567183080000,1567183140000,1567183200000,1567183260000,1567183320000,1567183380000,1567183440000,1567183500000,1567183560000,1567183620000,1567183680000,1567183740000,1567183800000,1567183860000,1567183920000,1567183980000,1567184040000,1567184100000,1567184160000,1567184220000,1567184280000,1567184340000,1567184400000,1567184460000,1567184520000,1567184580000,1567184640000,1567184700000,1567184760000,1567184820000,1567184880000,1567184940000,1567185000000,1567185060000,1567185120000,1567185180000,1567185240000,1567185300000,1567185360000,1567185420000,1567185480000,1567185540000,1567185600000,1567185660000,1567185720000,1567185780000,1567185840000,1567185900000,1567185960000,1567186020000,1567186080000,1567186140000,1567186200000,1567186260000,1567186320000,1567186380000,1567186440000,1567186500000,1567186560000,1567186620000,1567186680000,1567186740000,1567186800000,1567186860000,1567186920000,1567186980000,1567187040000,1567187100000,1567187160000,1567187220000,1567187280000,1567187340000,1567187400000,1567187460000,1567187520000,1567187580000,1567187640000,1567187700000,1567187760000,1567187820000,1567187880000,1567187940000,1567188000000,1567188060000,1567188120000,1567188180000,1567188240000,1567188300000,1567188360000,1567188420000,1567188480000,1567188540000,1567188600000,1567188660000,1567188720000,1567188780000,1567188840000,1567188900000,1567188960000,1567189020000,1567189080000,1567189140000,1567189200000,1567189260000,1567189320000,1567189380000,1567189440000,1567189500000,1567189560000,1567189620000,1567189680000,1567189740000,1567189800000,1567189860000,1567189920000,1567189980000,1567190040000,1567190100000,1567190160000,1567190220000,1567190280000,1567190340000,1567190400000,1567190460000,1567190520000,1567190580000,1567190640000,1567190700000,1567190760000,1567190820000,1567190880000,1567190940000,1567191000000,1567191060000,1567191120000,1567191180000,1567191240000,1567191300000,1567191360000,1567191420000,1567191480000,1567191540000,1567191600000,1567191660000,1567191720000,1567191780000,1567191840000,1567191900000,1567191960000,1567192020000,1567192080000,1567192140000,1567192200000,1567192260000,1567192320000,1567192380000,1567192440000,1567192500000,1567192560000,1567192620000,1567192680000,1567192740000,1567192800000,1567192860000,1567192920000,1567192980000,1567193040000,1567193100000,1567193160000,1567193220000,1567193280000,1567193340000,1567193400000,1567193460000,1567193520000,1567193580000,1567193640000,1567193700000,1567193760000,1567193820000,1567193880000,1567193940000,1567194000000,1567194060000,1567194120000,1567194180000,1567194240000,1567194300000,1567194360000,1567194420000,1567194480000,1567194540000,1567194600000,1567194660000,1567194720000,1567194780000,1567194840000,1567194900000,1567194960000,1567195020000,1567195080000,1567195140000,1567195200000,1567195260000,1567195320000,1567195380000,1567195440000,1567195500000,1567195560000,1567195620000,1567195680000,1567195740000,1567195800000,1567195860000,1567195920000,1567195980000,1567196040000,1567196100000,1567196160000,1567196220000,1567196280000,1567196340000,1567196400000,1567196460000,1567196520000,1567196580000,1567196640000,1567196700000,1567196760000,1567196820000,1567196880000,1567196940000,1567197000000,1567197060000,1567197120000,1567197180000,1567197240000,1567197300000,1567197360000,1567197420000,1567197480000,1567197540000,1567197600000,1567197660000,1567197720000,1567197780000,1567197840000,1567197900000,1567197960000,1567198020000,1567198080000,1567198140000,1567198200000,1567198260000,1567198320000,1567198380000,1567198440000,1567198500000,1567198560000,1567198620000,1567198680000,1567198740000,1567198800000,1567198860000,1567198920000,1567198980000,1567199040000,1567199100000,1567199160000,1567199220000,1567199280000,1567199340000,1567199400000,1567199460000,1567199520000,1567199580000,1567199640000,1567199700000,1567199760000,1567199820000,1567199880000,1567199940000,1567200000000,1567200060000,1567200120000,1567200180000,1567200240000,1567200300000,1567200360000,1567200420000,1567200480000,1567200540000,1567200600000,1567200660000,1567200720000,1567200780000,1567200840000,1567200900000,1567200960000,1567201020000,1567201080000,1567201140000,1567201200000,1567201260000,1567201320000,1567201380000,1567201440000,1567201500000,1567201560000,1567201620000,1567201680000,1567201740000,1567201800000,1567201860000,1567201920000,1567201980000,1567202040000,1567202100000,1567202160000,1567202220000,1567202280000,1567202340000,1567202400000,1567202460000,1567202520000,1567202580000,1567202640000,1567202700000,1567202760000,1567202820000,1567202880000,1567202940000,1567203000000,1567203060000,1567203120000,1567203180000,1567203240000,1567203300000,1567203360000,1567203420000,1567203480000,1567203540000,1567203600000,1567203660000,1567203720000,1567203780000,1567203840000,1567203900000,1567203960000,1567204020000,1567204080000,1567204140000,1567204200000,1567204260000,1567204320000,1567204380000,1567204440000,1567204500000,1567204560000,1567204620000,1567204680000,1567204740000,1567204800000,1567204860000,1567204920000,1567204980000,1567205040000,1567205100000,1567205160000,1567205220000,1567205280000,1567205340000,1567205400000,1567205460000,1567205520000,1567205580000,1567205640000,1567205700000,1567205760000,1567205820000,1567205880000,1567205940000,1567206000000,1567206060000,1567206120000,1567206180000,1567206240000,1567206300000,1567206360000,1567206420000,1567206480000,1567206540000,1567206600000,1567206660000,1567206720000,1567206780000,1567206840000,1567206900000,1567206960000,1567207020000,1567207080000,1567207140000,1567207200000,1567207260000,1567207320000,1567207380000,1567207440000,1567207500000,1567207560000,1567207620000,1567207680000,1567207740000,1567207800000,1567207860000,1567207920000,1567207980000,1567208040000,1567208100000,1567208160000,1567208220000,1567208280000,1567208340000,1567208400000,1567208460000,1567208520000,1567208580000,1567208640000,1567208700000,1567208760000,1567208820000,1567208880000,1567208940000,1567209000000,1567209060000,1567209120000,1567209180000,1567209240000,1567209300000,1567209360000,1567209420000,1567209480000,1567209540000,1567209600000,1567209660000,1567209720000,1567209780000,1567209840000,1567209900000,1567209960000,1567210020000,1567210080000,1567210140000,1567210200000,1567210260000,1567210320000,1567210380000,1567210440000,1567210500000,1567210560000,1567210620000,1567210680000,1567210740000,1567210800000,1567210860000,1567210920000,1567210980000,1567211040000,1567211100000,1567211160000,1567211220000,1567211280000,1567211340000,1567211400000,1567211460000,1567211520000,1567211580000,1567211640000,1567211700000,1567211760000,1567211820000,1567211880000,1567211940000,1567212000000,1567212060000,1567212120000,1567212180000,1567212240000,1567212300000,1567212360000,1567212420000,1567212480000,1567212540000,1567212600000,1567212660000,1567212720000,1567212780000,1567212840000,1567212900000,1567212960000,1567213020000,1567213080000,1567213140000,1567213200000,1567213260000,1567213320000,1567213380000,1567213440000,1567213500000,1567213560000,1567213620000,1567213680000,1567213740000,1567213800000,1567213860000,1567213920000,1567213980000,1567214040000,1567214100000,1567214160000,1567214220000,1567214280000,1567214340000,1567214400000,1567214460000,1567214520000,1567214580000,1567214640000,1567214700000,1567214760000,1567214820000,1567214880000,1567214940000,1567215000000,1567215060000,1567215120000,1567215180000,1567215240000,1567215300000,1567215360000,1567215420000,1567215480000,1567215540000,1567215600000,1567215660000,1567215720000,1567215780000,1567215840000,1567215900000,1567215960000,1567216020000,1567216080000,1567216140000,1567216200000,1567216260000,1567216320000,1567216380000,1567216440000,1567216500000,1567216560000,1567216620000,1567216680000,1567216740000,1567216800000,1567216860000,1567216920000,1567216980000,1567217040000,1567217100000,1567217160000,1567217220000,1567217280000,1567217340000,1567217400000,1567217460000,1567217520000,1567217580000,1567217640000,1567217700000,1567217760000,1567217820000,1567217880000,1567217940000,1567218000000,1567218060000,1567218120000,1567218180000,1567218240000,1567218300000,1567218360000,1567218420000,1567218480000,1567218540000,1567218600000,1567218660000,1567218720000,1567218780000,1567218840000,1567218900000,1567218960000,1567219020000,1567219080000,1567219140000,1567219200000,1567219260000,1567219320000,1567219380000,1567219440000,1567219500000,1567219560000,1567219620000,1567219680000,1567219740000,1567219800000,1567219860000,1567219920000,1567219980000,1567220040000,1567220100000,1567220160000,1567220220000,1567220280000,1567220340000,1567220400000,1567220460000,1567220520000,1567220580000,1567220640000,1567220700000,1567220760000,1567220820000,1567220880000,1567220940000,1567221000000,1567221060000,1567221120000,1567221180000,1567221240000,1567221300000,1567221360000,1567221420000,1567221480000,1567221540000,1567221600000,1567221660000,1567221720000,1567221780000,1567221840000,1567221900000,1567221960000,1567222020000,1567222080000,1567222140000,1567222200000,1567222260000,1567222320000,1567222380000,1567222440000,1567222500000,1567222560000,1567222620000,1567222680000,1567222740000,1567222800000,1567222860000,1567222920000,1567222980000,1567223040000,1567223100000,1567223160000,1567223220000,1567223280000,1567223340000,1567223400000,1567223460000,1567223520000,1567223580000,1567223640000,1567223700000,1567223760000,1567223820000,1567223880000,1567223940000,1567224000000,1567224060000,1567224120000,1567224180000,1567224240000,1567224300000,1567224360000,1567224420000,1567224480000,1567224540000,1567224600000,1567224660000,1567224720000,1567224780000,1567224840000,1567224900000,1567224960000,1567225020000,1567225080000,1567225140000,1567225200000,1567225260000,1567225320000,1567225380000,1567225440000,1567225500000,1567225560000,1567225620000,1567225680000,1567225740000,1567225800000,1567225860000,1567225920000,1567225980000,1567226040000,1567226100000,1567226160000,1567226220000,1567226280000,1567226340000,1567226400000,1567226460000,1567226520000,1567226580000,1567226640000,1567226700000,1567226760000,1567226820000,1567226880000,1567226940000,1567227000000,1567227060000,1567227120000,1567227180000,1567227240000,1567227300000,1567227360000,1567227420000,1567227480000,1567227540000,1567227600000,1567227660000,1567227720000,1567227780000,1567227840000,1567227900000,1567227960000,1567228020000,1567228080000,1567228140000,1567228200000,1567228260000,1567228320000,1567228380000,1567228440000,1567228500000,1567228560000,1567228620000,1567228680000,1567228740000,1567228800000,1567228860000,1567228920000,1567228980000,1567229040000,1567229100000,1567229160000,1567229220000,1567229280000,1567229340000,1567229400000,1567229460000,1567229520000,1567229580000,1567229640000,1567229700000,1567229760000,1567229820000,1567229880000,1567229940000,1567230000000,1567230060000,1567230120000,1567230180000,1567230240000,1567230300000,1567230360000,1567230420000,1567230480000,1567230540000,1567230600000,1567230660000,1567230720000,1567230780000,1567230840000,1567230900000,1567230960000,1567231020000,1567231080000,1567231140000,1567231200000,1567231260000,1567231320000,1567231380000,1567231440000,1567231500000,1567231560000,1567231620000,1567231680000,1567231740000,1567231800000,1567231860000,1567231920000,1567231980000,1567232040000,1567232100000,1567232160000,1567232220000,1567232280000,1567232340000,1567232400000,1567232460000,1567232520000,1567232580000,1567232640000,1567232700000,1567232760000,1567232820000,1567232880000,1567232940000,1567233000000,1567233060000,1567233120000,1567233180000,1567233240000,1567233300000,1567233360000,1567233420000,1567233480000,1567233540000,1567233600000,1567233660000,1567233720000,1567233780000,1567233840000,1567233900000,1567233960000,1567234020000,1567234080000,1567234140000,1567234200000,1567234260000,1567234320000,1567234380000,1567234440000,1567234500000,1567234560000,1567234620000,1567234680000,1567234740000,1567234800000,1567234860000,1567234920000,1567234980000,1567235040000,1567235100000,1567235160000,1567235220000,1567235280000,1567235340000,1567235400000,1567235460000,1567235520000,1567235580000,1567235640000,1567235700000,1567235760000,1567235820000,1567235880000,1567235940000,1567236000000,1567236060000,1567236120000,1567236180000,1567236240000,1567236300000,1567236360000,1567236420000,1567236480000,1567236540000,1567236600000,1567236660000,1567236720000,1567236780000,1567236840000,1567236900000,1567236960000,1567237020000,1567237080000,1567237140000,1567237200000,1567237260000,1567237320000,1567237380000,1567237440000,1567237500000,1567237560000,1567237620000,1567237680000,1567237740000,1567237800000,1567237860000,1567237920000,1567237980000,1567238040000,1567238100000,1567238160000,1567238220000,1567238280000,1567238340000,1567238400000,1567238460000,1567238520000,1567238580000,1567238640000,1567238700000,1567238760000,1567238820000,1567238880000,1567238940000,1567239000000,1567239060000,1567239120000,1567239180000,1567239240000,1567239300000,1567239360000,1567239420000,1567239480000,1567239540000,1567239600000,1567239660000,1567239720000,1567239780000,1567239840000,1567239900000,1567239960000,1567240020000,1567240080000,1567240140000,1567240200000,1567240260000,1567240320000,1567240380000,1567240440000,1567240500000,1567240560000,1567240620000,1567240680000,1567240740000,1567240800000,1567240860000,1567240920000,1567240980000,1567241040000,1567241100000,1567241160000,1567241220000,1567241280000,1567241340000,1567241400000,1567241460000,1567241520000,1567241580000,1567241640000,1567241700000,1567241760000,1567241820000,1567241880000,1567241940000,1567242000000,1567242060000,1567242120000,1567242180000,1567242240000,1567242300000,1567242360000,1567242420000,1567242480000,1567242540000,1567242600000,1567242660000,1567242720000,1567242780000,1567242840000,1567242900000,1567242960000,1567243020000,1567243080000,1567243140000,1567243200000,1567243260000,1567243320000,1567243380000,1567243440000,1567243500000,1567243560000,1567243620000,1567243680000,1567243740000,1567243800000,1567243860000,1567243920000,1567243980000,1567244040000,1567244100000,1567244160000,1567244220000,1567244280000,1567244340000,1567244400000,1567244460000,1567244520000,1567244580000,1567244640000,1567244700000,1567244760000,1567244820000,1567244880000,1567244940000,1567245000000,1567245060000,1567245120000,1567245180000,1567245240000,1567245300000,1567245360000,1567245420000,1567245480000,1567245540000,1567245600000,1567245660000,1567245720000,1567245780000,1567245840000,1567245900000,1567245960000,1567246020000,1567246080000,1567246140000,1567246200000,1567246260000,1567246320000,1567246380000,1567246440000,1567246500000,1567246560000,1567246620000,1567246680000,1567246740000,1567246800000,1567246860000,1567246920000,1567246980000,1567247040000,1567247100000,1567247160000,1567247220000,1567247280000,1567247340000,1567247400000,1567247460000,1567247520000,1567247580000,1567247640000,1567247700000,1567247760000,1567247820000,1567247880000,1567247940000,1567248000000,1567248060000,1567248120000,1567248180000,1567248240000,1567248300000,1567248360000,1567248420000,1567248480000,1567248540000,1567248600000,1567248660000,1567248720000,1567248780000,1567248840000,1567248900000,1567248960000,1567249020000,1567249080000,1567249140000,1567249200000,1567249260000,1567249320000,1567249380000,1567249440000,1567249500000,1567249560000,1567249620000,1567249680000,1567249740000,1567249800000,1567249860000,1567249920000,1567249980000,1567250040000,1567250100000,1567250160000,1567250220000,1567250280000,1567250340000,1567250400000,1567250460000,1567250520000,1567250580000,1567250640000,1567250700000,1567250760000,1567250820000,1567250880000,1567250940000,1567251000000,1567251060000,1567251120000,1567251180000,1567251240000,1567251300000,1567251360000,1567251420000,1567251480000,1567251540000,1567251600000,1567251660000,1567251720000,1567251780000,1567251840000,1567251900000,1567251960000,1567252020000,1567252080000,1567252140000,1567252200000,1567252260000,1567252320000,1567252380000,1567252440000,1567252500000,1567252560000,1567252620000,1567252680000,1567252740000,1567252800000,1567252860000,1567252920000,1567252980000,1567253040000,1567253100000,1567253160000,1567253220000,1567253280000,1567253340000,1567253400000,1567253460000,1567253520000,1567253580000,1567253640000,1567253700000,1567253760000,1567253820000,1567253880000,1567253940000,1567254000000,1567254060000,1567254120000,1567254180000,1567254240000,1567254300000,1567254360000,1567254420000,1567254480000,1567254540000,1567254600000,1567254660000,1567254720000,1567254780000,1567254840000,1567254900000,1567254960000,1567255020000,1567255080000,1567255140000,1567255200000,1567255260000,1567255320000,1567255380000,1567255440000,1567255500000,1567255560000,1567255620000,1567255680000,1567255740000,1567255800000,1567255860000,1567255920000,1567255980000,1567256040000,1567256100000,1567256160000,1567256220000,1567256280000,1567256340000,1567256400000,1567256460000,1567256520000,1567256580000,1567256640000,1567256700000,1567256760000,1567256820000,1567256880000,1567256940000,1567257000000,1567257060000,1567257120000,1567257180000,1567257240000,1567257300000,1567257360000,1567257420000,1567257480000,1567257540000,1567257600000,1567257660000,1567257720000,1567257780000,1567257840000,1567257900000,1567257960000,1567258020000,1567258080000,1567258140000,1567258200000,1567258260000,1567258320000,1567258380000,1567258440000,1567258500000,1567258560000,1567258620000,1567258680000,1567258740000,1567258800000,1567258860000,1567258920000,1567258980000,1567259040000,1567259100000,1567259160000,1567259220000,1567259280000,1567259340000,1567259400000,1567259460000,1567259520000,1567259580000,1567259640000,1567259700000,1567259760000,1567259820000,1567259880000,1567259940000,1567260000000,1567260060000,1567260120000,1567260180000,1567260240000,1567260300000,1567260360000,1567260420000,1567260480000,1567260540000,1567260600000,1567260660000,1567260720000,1567260780000,1567260840000,1567260900000,1567260960000,1567261020000,1567261080000,1567261140000,1567261200000,1567261260000,1567261320000,1567261380000,1567261440000,1567261500000,1567261560000,1567261620000,1567261680000,1567261740000,1567261800000,1567261860000,1567261920000,1567261980000,1567262040000,1567262100000,1567262160000,1567262220000,1567262280000,1567262340000,1567262400000,1567262460000,1567262520000,1567262580000,1567262640000,1567262700000,1567262760000,1567262820000,1567262880000,1567262940000,1567263000000,1567263060000,1567263120000,1567263180000,1567263240000,1567263300000,1567263360000,1567263420000,1567263480000,1567263540000,1567263600000,1567263660000,1567263720000,1567263780000,1567263840000,1567263900000,1567263960000,1567264020000,1567264080000,1567264140000,1567264200000,1567264260000,1567264320000,1567264380000,1567264440000,1567264500000,1567264560000,1567264620000,1567264680000,1567264740000,1567264800000,1567264860000,1567264920000,1567264980000,1567265040000,1567265100000,1567265160000,1567265220000,1567265280000,1567265340000,1567265400000,1567265460000,1567265520000,1567265580000,1567265640000,1567265700000,1567265760000,1567265820000,1567265880000,1567265940000,1567266000000,1567266060000,1567266120000,1567266180000,1567266240000,1567266300000,1567266360000,1567266420000,1567266480000,1567266540000,1567266600000,1567266660000,1567266720000,1567266780000,1567266840000,1567266900000,1567266960000,1567267020000,1567267080000,1567267140000,1567267200000,1567267260000,1567267320000,1567267380000,1567267440000,1567267500000,1567267560000,1567267620000,1567267680000,1567267740000,1567267800000,1567267860000,1567267920000,1567267980000,1567268040000,1567268100000,1567268160000,1567268220000,1567268280000,1567268340000,1567268400000,1567268460000,1567268520000,1567268580000,1567268640000,1567268700000,1567268760000,1567268820000,1567268880000,1567268940000,1567269000000,1567269060000,1567269120000,1567269180000,1567269240000,1567269300000,1567269360000,1567269420000,1567269480000,1567269540000,1567269600000,1567269660000,1567269720000,1567269780000,1567269840000,1567269900000,1567269960000,1567270020000,1567270080000,1567270140000,1567270200000,1567270260000,1567270320000,1567270380000,1567270440000,1567270500000,1567270560000,1567270620000,1567270680000,1567270740000,1567270800000,1567270860000,1567270920000,1567270980000,1567271040000,1567271100000,1567271160000,1567271220000,1567271280000,1567271340000,1567271400000,1567271460000,1567271520000,1567271580000,1567271640000,1567271700000,1567271760000,1567271820000,1567271880000,1567271940000,1567272000000,1567272060000,1567272120000,1567272180000,1567272240000,1567272300000,1567272360000,1567272420000,1567272480000,1567272540000,1567272600000,1567272660000,1567272720000,1567272780000,1567272840000,1567272900000,1567272960000,1567273020000,1567273080000,1567273140000,1567273200000,1567273260000,1567273320000,1567273380000,1567273440000,1567273500000,1567273560000,1567273620000,1567273680000,1567273740000,1567273800000,1567273860000,1567273920000,1567273980000,1567274040000,1567274100000,1567274160000,1567274220000,1567274280000,1567274340000,1567274400000,1567274460000,1567274520000,1567274580000,1567274640000,1567274700000,1567274760000,1567274820000,1567274880000,1567274940000,1567275000000,1567275060000,1567275120000,1567275180000,1567275240000,1567275300000,1567275360000,1567275420000,1567275480000,1567275540000,1567275600000,1567275660000,1567275720000,1567275780000,1567275840000,1567275900000,1567275960000,1567276020000,1567276080000,1567276140000,1567276200000,1567276260000,1567276320000,1567276380000,1567276440000,1567276500000,1567276560000,1567276620000,1567276680000,1567276740000,1567276800000,1567276860000,1567276920000,1567276980000,1567277040000,1567277100000,1567277160000,1567277220000,1567277280000,1567277340000,1567277400000,1567277460000,1567277520000,1567277580000,1567277640000,1567277700000,1567277760000,1567277820000,1567277880000,1567277940000,1567278000000,1567278060000,1567278120000,1567278180000,1567278240000,1567278300000,1567278360000,1567278420000,1567278480000,1567278540000,1567278600000,1567278660000,1567278720000,1567278780000,1567278840000,1567278900000,1567278960000,1567279020000,1567279080000,1567279140000,1567279200000,1567279260000,1567279320000,1567279380000,1567279440000,1567279500000,1567279560000,1567279620000,1567279680000,1567279740000,1567279800000,1567279860000,1567279920000,1567279980000,1567280040000,1567280100000,1567280160000,1567280220000,1567280280000,1567280340000,1567280400000,1567280460000,1567280520000,1567280580000,1567280640000,1567280700000,1567280760000,1567280820000,1567280880000,1567280940000,1567281000000,1567281060000,1567281120000,1567281180000,1567281240000,1567281300000,1567281360000,1567281420000,1567281480000,1567281540000,1567281600000,1567281660000,1567281720000,1567281780000,1567281840000,1567281900000,1567281960000,1567282020000,1567282080000,1567282140000,1567282200000,1567282260000,1567282320000,1567282380000,1567282440000,1567282500000,1567282560000,1567282620000,1567282680000,1567282740000,1567282800000,1567282860000,1567282920000,1567282980000,1567283040000,1567283100000,1567283160000,1567283220000,1567283280000,1567283340000,1567283400000,1567283460000,1567283520000,1567283580000,1567283640000,1567283700000,1567283760000,1567283820000,1567283880000,1567283940000,1567284000000,1567284060000,1567284120000,1567284180000,1567284240000,1567284300000,1567284360000,1567284420000,1567284480000,1567284540000,1567284600000,1567284660000,1567284720000,1567284780000,1567284840000,1567284900000,1567284960000,1567285020000,1567285080000,1567285140000,1567285200000,1567285260000,1567285320000,1567285380000,1567285440000,1567285500000,1567285560000,1567285620000,1567285680000,1567285740000,1567285800000,1567285860000,1567285920000,1567285980000,1567286040000,1567286100000,1567286160000,1567286220000,1567286280000,1567286340000,1567286400000,1567286460000,1567286520000,1567286580000,1567286640000,1567286700000,1567286760000,1567286820000,1567286880000,1567286940000,1567287000000,1567287060000,1567287120000,1567287180000,1567287240000,1567287300000,1567287360000,1567287420000,1567287480000,1567287540000,1567287600000,1567287660000,1567287720000,1567287780000,1567287840000,1567287900000,1567287960000,1567288020000,1567288080000,1567288140000,1567288200000,1567288260000,1567288320000,1567288380000,1567288440000,1567288500000,1567288560000,1567288620000,1567288680000,1567288740000,1567288800000,1567288860000,1567288920000,1567288980000,1567289040000,1567289100000,1567289160000,1567289220000,1567289280000,1567289340000,1567289400000,1567289460000,1567289520000,1567289580000,1567289640000,1567289700000,1567289760000,1567289820000,1567289880000,1567289940000,1567290000000,1567290060000,1567290120000,1567290180000,1567290240000,1567290300000,1567290360000,1567290420000,1567290480000,1567290540000,1567290600000,1567290660000,1567290720000,1567290780000,1567290840000,1567290900000,1567290960000,1567291020000,1567291080000,1567291140000,1567291200000,1567291260000,1567291320000,1567291380000,1567291440000,1567291500000,1567291560000,1567291620000,1567291680000,1567291740000,1567291800000,1567291860000,1567291920000,1567291980000,1567292040000,1567292100000,1567292160000,1567292220000,1567292280000,1567292340000,1567292400000,1567292460000,1567292520000,1567292580000,1567292640000,1567292700000,1567292760000,1567292820000,1567292880000,1567292940000,1567293000000,1567293060000,1567293120000,1567293180000,1567293240000,1567293300000,1567293360000,1567293420000,1567293480000,1567293540000,1567293600000,1567293660000,1567293720000,1567293780000,1567293840000,1567293900000,1567293960000,1567294020000,1567294080000,1567294140000,1567294200000,1567294260000,1567294320000,1567294380000,1567294440000,1567294500000,1567294560000,1567294620000,1567294680000,1567294740000,1567294800000,1567294860000,1567294920000,1567294980000,1567295040000,1567295100000,1567295160000,1567295220000,1567295280000,1567295340000,1567295400000,1567295460000,1567295520000,1567295580000,1567295640000,1567295700000,1567295760000,1567295820000,1567295880000,1567295940000,1567296000000,1567296060000,1567296120000,1567296180000,1567296240000,1567296300000,1567296360000,1567296420000,1567296480000,1567296540000,1567296600000,1567296660000,1567296720000,1567296780000,1567296840000,1567296900000,1567296960000,1567297020000,1567297080000,1567297140000,1567297200000,1567297260000,1567297320000,1567297380000,1567297440000,1567297500000,1567297560000,1567297620000,1567297680000,1567297740000,1567297800000,1567297860000,1567297920000,1567297980000,1567298040000,1567298100000,1567298160000,1567298220000,1567298280000,1567298340000,1567298400000,1567298460000,1567298520000,1567298580000,1567298640000,1567298700000,1567298760000,1567298820000,1567298880000,1567298940000,1567299000000,1567299060000,1567299120000,1567299180000,1567299240000,1567299300000,1567299360000,1567299420000,1567299480000,1567299540000,1567299600000,1567299660000,1567299720000,1567299780000,1567299840000,1567299900000,1567299960000,1567300020000,1567300080000,1567300140000,1567300200000,1567300260000,1567300320000,1567300380000,1567300440000,1567300500000,1567300560000,1567300620000,1567300680000,1567300740000,1567300800000,1567300860000,1567300920000,1567300980000,1567301040000,1567301100000,1567301160000,1567301220000,1567301280000,1567301340000,1567301400000,1567301460000,1567301520000,1567301580000,1567301640000,1567301700000,1567301760000,1567301820000,1567301880000,1567301940000,1567302000000,1567302060000,1567302120000,1567302180000,1567302240000,1567302300000,1567302360000,1567302420000,1567302480000,1567302540000,1567302600000,1567302660000,1567302720000,1567302780000,1567302840000,1567302900000,1567302960000,1567303020000,1567303080000,1567303140000,1567303200000,1567303260000,1567303320000,1567303380000,1567303440000,1567303500000,1567303560000,1567303620000,1567303680000,1567303740000,1567303800000,1567303860000,1567303920000,1567303980000,1567304040000,1567304100000,1567304160000,1567304220000,1567304280000,1567304340000,1567304400000,1567304460000,1567304520000,1567304580000,1567304640000,1567304700000,1567304760000,1567304820000,1567304880000,1567304940000,1567305000000,1567305060000,1567305120000,1567305180000,1567305240000,1567305300000,1567305360000,1567305420000,1567305480000,1567305540000,1567305600000,1567305660000,1567305720000,1567305780000,1567305840000,1567305900000,1567305960000,1567306020000,1567306080000,1567306140000,1567306200000,1567306260000,1567306320000,1567306380000,1567306440000,1567306500000,1567306560000,1567306620000,1567306680000,1567306740000,1567306800000,1567306860000,1567306920000,1567306980000,1567307040000,1567307100000,1567307160000,1567307220000,1567307280000,1567307340000,1567307400000,1567307460000,1567307520000,1567307580000,1567307640000,1567307700000,1567307760000,1567307820000,1567307880000,1567307940000,1567308000000,1567308060000,1567308120000,1567308180000,1567308240000,1567308300000,1567308360000,1567308420000,1567308480000,1567308540000,1567308600000,1567308660000,1567308720000,1567308780000,1567308840000,1567308900000,1567308960000,1567309020000,1567309080000,1567309140000,1567309200000,1567309260000,1567309320000,1567309380000,1567309440000,1567309500000,1567309560000,1567309620000,1567309680000,1567309740000,1567309800000,1567309860000,1567309920000,1567309980000,1567310040000,1567310100000,1567310160000,1567310220000,1567310280000,1567310340000,1567310400000,1567310460000,1567310520000,1567310580000,1567310640000,1567310700000,1567310760000,1567310820000,1567310880000,1567310940000,1567311000000,1567311060000,1567311120000,1567311180000,1567311240000,1567311300000,1567311360000,1567311420000,1567311480000,1567311540000,1567311600000,1567311660000,1567311720000,1567311780000,1567311840000,1567311900000,1567311960000,1567312020000,1567312080000,1567312140000,1567312200000,1567312260000,1567312320000,1567312380000,1567312440000,1567312500000,1567312560000,1567312620000,1567312680000,1567312740000,1567312800000,1567312860000,1567312920000,1567312980000,1567313040000,1567313100000,1567313160000,1567313220000,1567313280000,1567313340000,1567313400000,1567313460000,1567313520000,1567313580000,1567313640000,1567313700000,1567313760000,1567313820000,1567313880000,1567313940000,1567314000000,1567314060000,1567314120000,1567314180000,1567314240000,1567314300000,1567314360000,1567314420000,1567314480000,1567314540000,1567314600000,1567314660000,1567314720000,1567314780000,1567314840000,1567314900000,1567314960000,1567315020000,1567315080000,1567315140000,1567315200000,1567315260000,1567315320000,1567315380000,1567315440000,1567315500000,1567315560000,1567315620000,1567315680000,1567315740000,1567315800000,1567315860000,1567315920000,1567315980000,1567316040000,1567316100000,1567316160000,1567316220000,1567316280000,1567316340000,1567316400000,1567316460000,1567316520000,1567316580000,1567316640000,1567316700000,1567316760000,1567316820000,1567316880000,1567316940000,1567317000000,1567317060000,1567317120000,1567317180000,1567317240000,1567317300000,1567317360000,1567317420000,1567317480000,1567317540000,1567317600000,1567317660000,1567317720000,1567317780000,1567317840000,1567317900000,1567317960000,1567318020000,1567318080000,1567318140000,1567318200000,1567318260000,1567318320000,1567318380000,1567318440000,1567318500000,1567318560000,1567318620000,1567318680000,1567318740000,1567318800000,1567318860000,1567318920000,1567318980000,1567319040000,1567319100000,1567319160000,1567319220000,1567319280000,1567319340000,1567319400000,1567319460000,1567319520000,1567319580000,1567319640000,1567319700000,1567319760000,1567319820000,1567319880000,1567319940000,1567320000000,1567320060000,1567320120000,1567320180000,1567320240000,1567320300000,1567320360000,1567320420000,1567320480000,1567320540000,1567320600000,1567320660000,1567320720000,1567320780000,1567320840000,1567320900000,1567320960000,1567321020000,1567321080000,1567321140000,1567321200000,1567321260000,1567321320000,1567321380000,1567321440000,1567321500000,1567321560000,1567321620000,1567321680000,1567321740000,1567321800000,1567321860000,1567321920000,1567321980000,1567322040000,1567322100000,1567322160000,1567322220000,1567322280000,1567322340000,1567322400000,1567322460000,1567322520000,1567322580000,1567322640000,1567322700000,1567322760000,1567322820000,1567322880000,1567322940000,1567323000000,1567323060000,1567323120000,1567323180000,1567323240000,1567323300000,1567323360000,1567323420000,1567323480000,1567323540000,1567323600000,1567323660000,1567323720000,1567323780000,1567323840000,1567323900000,1567323960000,1567324020000,1567324080000,1567324140000,1567324200000,1567324260000,1567324320000,1567324380000,1567324440000,1567324500000,1567324560000,1567324620000,1567324680000,1567324740000,1567324800000,1567324860000,1567324920000,1567324980000,1567325040000,1567325100000,1567325160000,1567325220000,1567325280000,1567325340000,1567325400000,1567325460000,1567325520000,1567325580000,1567325640000,1567325700000,1567325760000,1567325820000,1567325880000,1567325940000,1567326000000,1567326060000,1567326120000,1567326180000,1567326240000,1567326300000,1567326360000,1567326420000,1567326480000,1567326540000,1567326600000,1567326660000,1567326720000,1567326780000,1567326840000,1567326900000,1567326960000,1567327020000,1567327080000,1567327140000,1567327200000,1567327260000,1567327320000,1567327380000,1567327440000,1567327500000,1567327560000,1567327620000,1567327680000,1567327740000,1567327800000,1567327860000,1567327920000,1567327980000,1567328040000,1567328100000,1567328160000,1567328220000,1567328280000,1567328340000,1567328400000,1567328460000,1567328520000,1567328580000,1567328640000,1567328700000,1567328760000,1567328820000,1567328880000,1567328940000,1567329000000,1567329060000,1567329120000,1567329180000,1567329240000,1567329300000,1567329360000,1567329420000,1567329480000,1567329540000,1567329600000,1567329660000,1567329720000,1567329780000,1567329840000,1567329900000,1567329960000,1567330020000,1567330080000,1567330140000,1567330200000,1567330260000,1567330320000,1567330380000,1567330440000,1567330500000,1567330560000,1567330620000,1567330680000,1567330740000,1567330800000,1567330860000,1567330920000,1567330980000,1567331040000,1567331100000,1567331160000,1567331220000,1567331280000,1567331340000,1567331400000,1567331460000,1567331520000,1567331580000,1567331640000,1567331700000,1567331760000,1567331820000,1567331880000,1567331940000,1567332000000,1567332060000,1567332120000,1567332180000,1567332240000,1567332300000,1567332360000,1567332420000,1567332480000,1567332540000,1567332600000,1567332660000,1567332720000,1567332780000,1567332840000,1567332900000,1567332960000,1567333020000,1567333080000,1567333140000,1567333200000,1567333260000,1567333320000,1567333380000,1567333440000,1567333500000,1567333560000,1567333620000,1567333680000,1567333740000,1567333800000,1567333860000,1567333920000,1567333980000,1567334040000,1567334100000,1567334160000,1567334220000,1567334280000,1567334340000,1567334400000,1567334460000,1567334520000,1567334580000,1567334640000,1567334700000,1567334760000,1567334820000,1567334880000,1567334940000,1567335000000,1567335060000,1567335120000,1567335180000,1567335240000,1567335300000,1567335360000,1567335420000,1567335480000,1567335540000,1567335600000,1567335660000,1567335720000,1567335780000,1567335840000,1567335900000,1567335960000,1567336020000,1567336080000,1567336140000,1567336200000,1567336260000,1567336320000,1567336380000,1567336440000,1567336500000,1567336560000,1567336620000,1567336680000,1567336740000,1567336800000,1567336860000,1567336920000,1567336980000,1567337040000,1567337100000,1567337160000,1567337220000,1567337280000,1567337340000,1567337400000,1567337460000,1567337520000,1567337580000,1567337640000,1567337700000,1567337760000,1567337820000,1567337880000,1567337940000,1567338000000,1567338060000,1567338120000,1567338180000,1567338240000,1567338300000,1567338360000,1567338420000,1567338480000,1567338540000,1567338600000,1567338660000,1567338720000,1567338780000,1567338840000,1567338900000,1567338960000,1567339020000,1567339080000,1567339140000,1567339200000,1567339260000,1567339320000,1567339380000,1567339440000,1567339500000,1567339560000,1567339620000,1567339680000,1567339740000,1567339800000,1567339860000,1567339920000,1567339980000,1567340040000,1567340100000,1567340160000,1567340220000,1567340280000,1567340340000,1567340400000,1567340460000,1567340520000,1567340580000,1567340640000,1567340700000,1567340760000,1567340820000,1567340880000,1567340940000,1567341000000,1567341060000,1567341120000,1567341180000,1567341240000,1567341300000,1567341360000,1567341420000,1567341480000,1567341540000,1567341600000,1567341660000,1567341720000,1567341780000,1567341840000,1567341900000,1567341960000,1567342020000,1567342080000,1567342140000,1567342200000,1567342260000,1567342320000,1567342380000,1567342440000,1567342500000,1567342560000,1567342620000,1567342680000,1567342740000,1567342800000,1567342860000,1567342920000,1567342980000,1567343040000,1567343100000,1567343160000,1567343220000,1567343280000,1567343340000,1567343400000,1567343460000,1567343520000,1567343580000,1567343640000,1567343700000,1567343760000,1567343820000,1567343880000,1567343940000,1567344000000,1567344060000,1567344120000,1567344180000,1567344240000,1567344300000,1567344360000,1567344420000,1567344480000,1567344540000,1567344600000,1567344660000,1567344720000,1567344780000,1567344840000,1567344900000,1567344960000,1567345020000,1567345080000,1567345140000,1567345200000,1567345260000,1567345320000,1567345380000,1567345440000,1567345500000,1567345560000,1567345620000,1567345680000,1567345740000,1567345800000,1567345860000,1567345920000,1567345980000,1567346040000,1567346100000,1567346160000,1567346220000,1567346280000,1567346340000,1567346400000,1567346460000,1567346520000,1567346580000,1567346640000,1567346700000,1567346760000,1567346820000,1567346880000,1567346940000,1567347000000,1567347060000,1567347120000,1567347180000,1567347240000,1567347300000,1567347360000,1567347420000,1567347480000,1567347540000,1567347600000,1567347660000,1567347720000,1567347780000,1567347840000,1567347900000,1567347960000,1567348020000,1567348080000,1567348140000,1567348200000,1567348260000,1567348320000,1567348380000,1567348440000,1567348500000,1567348560000,1567348620000,1567348680000,1567348740000,1567348800000,1567348860000,1567348920000,1567348980000,1567349040000,1567349100000,1567349160000,1567349220000,1567349280000,1567349340000,1567349400000,1567349460000,1567349520000,1567349580000,1567349640000,1567349700000,1567349760000,1567349820000,1567349880000,1567349940000,1567350000000,1567350060000,1567350120000,1567350180000,1567350240000,1567350300000,1567350360000,1567350420000,1567350480000,1567350540000,1567350600000,1567350660000,1567350720000,1567350780000,1567350840000,1567350900000,1567350960000,1567351020000,1567351080000,1567351140000,1567351200000,1567351260000,1567351320000,1567351380000,1567351440000,1567351500000,1567351560000,1567351620000,1567351680000,1567351740000,1567351800000,1567351860000,1567351920000,1567351980000,1567352040000,1567352100000,1567352160000,1567352220000,1567352280000,1567352340000,1567352400000,1567352460000,1567352520000,1567352580000,1567352640000,1567352700000,1567352760000,1567352820000,1567352880000,1567352940000,1567353000000,1567353060000,1567353120000,1567353180000,1567353240000,1567353300000,1567353360000,1567353420000,1567353480000,1567353540000,1567353600000,1567353660000,1567353720000,1567353780000,1567353840000,1567353900000,1567353960000,1567354020000,1567354080000,1567354140000,1567354200000,1567354260000,1567354320000,1567354380000,1567354440000,1567354500000,1567354560000,1567354620000,1567354680000,1567354740000,1567354800000,1567354860000,1567354920000,1567354980000,1567355040000,1567355100000,1567355160000,1567355220000,1567355280000,1567355340000,1567355400000,1567355460000,1567355520000,1567355580000,1567355640000,1567355700000,1567355760000,1567355820000,1567355880000,1567355940000,1567356000000,1567356060000,1567356120000,1567356180000,1567356240000,1567356300000,1567356360000,1567356420000,1567356480000,1567356540000,1567356600000,1567356660000,1567356720000,1567356780000,1567356840000,1567356900000,1567356960000,1567357020000,1567357080000,1567357140000,1567357200000,1567357260000,1567357320000,1567357380000,1567357440000,1567357500000,1567357560000,1567357620000,1567357680000,1567357740000,1567357800000,1567357860000,1567357920000,1567357980000,1567358040000,1567358100000,1567358160000,1567358220000,1567358280000,1567358340000,1567358400000,1567358460000,1567358520000,1567358580000,1567358640000,1567358700000,1567358760000,1567358820000,1567358880000,1567358940000,1567359000000,1567359060000,1567359120000,1567359180000,1567359240000,1567359300000,1567359360000,1567359420000,1567359480000,1567359540000,1567359600000,1567359660000,1567359720000,1567359780000,1567359840000,1567359900000,1567359960000,1567360020000,1567360080000,1567360140000,1567360200000,1567360260000,1567360320000,1567360380000,1567360440000,1567360500000,1567360560000,1567360620000,1567360680000,1567360740000,1567360800000,1567360860000,1567360920000,1567360980000,1567361040000,1567361100000,1567361160000,1567361220000,1567361280000,1567361340000,1567361400000,1567361460000,1567361520000,1567361580000,1567361640000,1567361700000,1567361760000,1567361820000,1567361880000,1567361940000,1567362000000,1567362060000,1567362120000,1567362180000,1567362240000,1567362300000,1567362360000,1567362420000,1567362480000,1567362540000,1567362600000,1567362660000,1567362720000,1567362780000,1567362840000,1567362900000,1567362960000,1567363020000,1567363080000,1567363140000,1567363200000,1567363260000,1567363320000,1567363380000,1567363440000,1567363500000,1567363560000,1567363620000,1567363680000,1567363740000,1567363800000,1567363860000,1567363920000,1567363980000,1567364040000,1567364100000,1567364160000,1567364220000,1567364280000,1567364340000,1567364400000,1567364460000,1567364520000,1567364580000,1567364640000,1567364700000,1567364760000,1567364820000,1567364880000,1567364940000,1567365000000,1567365060000,1567365120000,1567365180000,1567365240000,1567365300000,1567365360000,1567365420000,1567365480000,1567365540000,1567365600000,1567365660000,1567365720000,1567365780000,1567365840000,1567365900000,1567365960000,1567366020000,1567366080000,1567366140000,1567366200000,1567366260000,1567366320000,1567366380000,1567366440000,1567366500000,1567366560000,1567366620000,1567366680000,1567366740000,1567366800000,1567366860000,1567366920000,1567366980000,1567367040000,1567367100000,1567367160000,1567367220000,1567367280000,1567367340000,1567367400000,1567367460000,1567367520000,1567367580000,1567367640000,1567367700000,1567367760000,1567367820000,1567367880000,1567367940000,1567368000000,1567368060000,1567368120000,1567368180000,1567368240000,1567368300000,1567368360000,1567368420000,1567368480000,1567368540000,1567368600000,1567368660000,1567368720000,1567368780000,1567368840000,1567368900000,1567368960000,1567369020000,1567369080000,1567369140000,1567369200000,1567369260000,1567369320000,1567369380000,1567369440000,1567369500000,1567369560000,1567369620000,1567369680000,1567369740000,1567369800000,1567369860000,1567369920000,1567369980000,1567370040000,1567370100000,1567370160000,1567370220000,1567370280000,1567370340000,1567370400000,1567370460000,1567370520000,1567370580000,1567370640000,1567370700000,1567370760000,1567370820000,1567370880000,1567370940000,1567371000000,1567371060000,1567371120000,1567371180000,1567371240000,1567371300000,1567371360000,1567371420000,1567371480000,1567371540000,1567371600000,1567371660000,1567371720000,1567371780000,1567371840000,1567371900000,1567371960000,1567372020000,1567372080000,1567372140000,1567372200000,1567372260000,1567372320000,1567372380000,1567372440000,1567372500000,1567372560000,1567372620000,1567372680000,1567372740000,1567372800000,1567372860000,1567372920000,1567372980000,1567373040000,1567373100000,1567373160000,1567373220000,1567373280000,1567373340000,1567373400000,1567373460000,1567373520000,1567373580000,1567373640000,1567373700000,1567373760000,1567373820000,1567373880000,1567373940000,1567374000000,1567374060000,1567374120000,1567374180000,1567374240000,1567374300000,1567374360000,1567374420000,1567374480000,1567374540000,1567374600000,1567374660000,1567374720000,1567374780000,1567374840000,1567374900000,1567374960000,1567375020000,1567375080000,1567375140000,1567375200000,1567375260000,1567375320000,1567375380000,1567375440000,1567375500000,1567375560000,1567375620000,1567375680000,1567375740000,1567375800000,1567375860000,1567375920000,1567375980000,1567376040000,1567376100000,1567376160000,1567376220000,1567376280000,1567376340000,1567376400000,1567376460000,1567376520000,1567376580000,1567376640000,1567376700000,1567376760000,1567376820000,1567376880000,1567376940000,1567377000000,1567377060000,1567377120000,1567377180000,1567377240000,1567377300000,1567377360000,1567377420000,1567377480000,1567377540000,1567377600000,1567377660000,1567377720000,1567377780000,1567377840000,1567377900000,1567377960000,1567378020000,1567378080000,1567378140000,1567378200000,1567378260000,1567378320000,1567378380000,1567378440000,1567378500000,1567378560000,1567378620000,1567378680000,1567378740000,1567378800000,1567378860000,1567378920000,1567378980000,1567379040000,1567379100000,1567379160000,1567379220000,1567379280000,1567379340000,1567379400000,1567379460000,1567379520000,1567379580000,1567379640000,1567379700000,1567379760000,1567379820000,1567379880000,1567379940000,1567380000000,1567380060000,1567380120000,1567380180000,1567380240000,1567380300000,1567380360000,1567380420000,1567380480000,1567380540000,1567380600000,1567380660000,1567380720000,1567380780000,1567380840000,1567380900000,1567380960000,1567381020000,1567381080000,1567381140000,1567381200000,1567381260000,1567381320000,1567381380000,1567381440000,1567381500000,1567381560000,1567381620000,1567381680000,1567381740000,1567381800000,1567381860000,1567381920000,1567381980000,1567382040000,1567382100000,1567382160000,1567382220000,1567382280000,1567382340000,1567382400000,1567382460000,1567382520000,1567382580000,1567382640000,1567382700000,1567382760000,1567382820000,1567382880000,1567382940000,1567383000000,1567383060000,1567383120000,1567383180000,1567383240000,1567383300000,1567383360000,1567383420000,1567383480000,1567383540000,1567383600000,1567383660000,1567383720000,1567383780000,1567383840000,1567383900000,1567383960000,1567384020000,1567384080000,1567384140000,1567384200000,1567384260000,1567384320000,1567384380000,1567384440000,1567384500000,1567384560000,1567384620000,1567384680000,1567384740000,1567384800000,1567384860000,1567384920000,1567384980000,1567385040000,1567385100000,1567385160000,1567385220000,1567385280000,1567385340000,1567385400000,1567385460000,1567385520000,1567385580000,1567385640000,1567385700000,1567385760000,1567385820000,1567385880000,1567385940000,1567386000000,1567386060000,1567386120000,1567386180000,1567386240000,1567386300000,1567386360000,1567386420000,1567386480000,1567386540000,1567386600000,1567386660000,1567386720000,1567386780000,1567386840000,1567386900000,1567386960000,1567387020000,1567387080000,1567387140000,1567387200000,1567387260000,1567387320000,1567387380000,1567387440000,1567387500000,1567387560000,1567387620000,1567387680000,1567387740000,1567387800000,1567387860000,1567387920000,1567387980000,1567388040000,1567388100000,1567388160000,1567388220000,1567388280000,1567388340000,1567388400000,1567388460000,1567388520000,1567388580000,1567388640000,1567388700000,1567388760000,1567388820000,1567388880000,1567388940000,1567389000000,1567389060000,1567389120000,1567389180000,1567389240000,1567389300000,1567389360000,1567389420000,1567389480000,1567389540000,1567389600000,1567389660000,1567389720000,1567389780000,1567389840000,1567389900000,1567389960000,1567390020000,1567390080000,1567390140000,1567390200000,1567390260000,1567390320000,1567390380000,1567390440000,1567390500000,1567390560000,1567390620000,1567390680000,1567390740000,1567390800000,1567390860000,1567390920000,1567390980000,1567391040000,1567391100000,1567391160000,1567391220000,1567391280000,1567391340000,1567391400000,1567391460000,1567391520000,1567391580000,1567391640000,1567391700000,1567391760000,1567391820000,1567391880000,1567391940000,1567392000000,1567392060000,1567392120000,1567392180000,1567392240000,1567392300000,1567392360000,1567392420000,1567392480000,1567392540000,1567392600000,1567392660000,1567392720000,1567392780000,1567392840000,1567392900000,1567392960000,1567393020000,1567393080000,1567393140000,1567393200000,1567393260000,1567393320000,1567393380000,1567393440000,1567393500000,1567393560000,1567393620000,1567393680000,1567393740000,1567393800000,1567393860000,1567393920000,1567393980000,1567394040000,1567394100000,1567394160000,1567394220000,1567394280000,1567394340000,1567394400000,1567394460000,1567394520000,1567394580000,1567394640000,1567394700000,1567394760000,1567394820000,1567394880000,1567394940000,1567395000000,1567395060000,1567395120000,1567395180000,1567395240000,1567395300000,1567395360000,1567395420000,1567395480000,1567395540000,1567395600000,1567395660000,1567395720000,1567395780000,1567395840000,1567395900000,1567395960000,1567396020000,1567396080000,1567396140000,1567396200000,1567396260000,1567396320000,1567396380000,1567396440000,1567396500000,1567396560000,1567396620000,1567396680000,1567396740000,1567396800000,1567396860000,1567396920000,1567396980000,1567397040000,1567397100000,1567397160000,1567397220000,1567397280000,1567397340000,1567397400000,1567397460000,1567397520000,1567397580000,1567397640000,1567397700000,1567397760000,1567397820000,1567397880000,1567397940000,1567398000000,1567398060000,1567398120000,1567398180000,1567398240000,1567398300000,1567398360000,1567398420000,1567398480000,1567398540000,1567398600000,1567398660000,1567398720000,1567398780000,1567398840000,1567398900000,1567398960000,1567399020000,1567399080000,1567399140000,1567399200000,1567399260000,1567399320000,1567399380000,1567399440000,1567399500000,1567399560000,1567399620000,1567399680000,1567399740000,1567399800000,1567399860000,1567399920000,1567399980000,1567400040000,1567400100000,1567400160000,1567400220000,1567400280000,1567400340000,1567400400000,1567400460000,1567400520000,1567400580000,1567400640000,1567400700000,1567400760000,1567400820000,1567400880000,1567400940000,1567401000000,1567401060000,1567401120000,1567401180000,1567401240000,1567401300000,1567401360000,1567401420000,1567401480000,1567401540000,1567401600000,1567401660000,1567401720000,1567401780000,1567401840000,1567401900000,1567401960000,1567402020000,1567402080000,1567402140000,1567402200000,1567402260000,1567402320000,1567402380000,1567402440000,1567402500000,1567402560000,1567402620000,1567402680000,1567402740000,1567402800000,1567402860000,1567402920000,1567402980000,1567403040000,1567403100000,1567403160000,1567403220000,1567403280000,1567403340000,1567403400000,1567403460000,1567403520000,1567403580000,1567403640000,1567403700000,1567403760000,1567403820000,1567403880000,1567403940000,1567404000000,1567404060000,1567404120000,1567404180000,1567404240000,1567404300000,1567404360000,1567404420000,1567404480000,1567404540000,1567404600000,1567404660000,1567404720000,1567404780000,1567404840000,1567404900000,1567404960000,1567405020000,1567405080000,1567405140000,1567405200000,1567405260000,1567405320000,1567405380000,1567405440000,1567405500000,1567405560000,1567405620000,1567405680000,1567405740000,1567405800000,1567405860000,1567405920000,1567405980000,1567406040000,1567406100000,1567406160000,1567406220000,1567406280000,1567406340000,1567406400000,1567406460000,1567406520000,1567406580000,1567406640000,1567406700000,1567406760000,1567406820000,1567406880000,1567406940000,1567407000000,1567407060000,1567407120000,1567407180000,1567407240000,1567407300000,1567407360000,1567407420000,1567407480000,1567407540000,1567407600000,1567407660000,1567407720000,1567407780000,1567407840000,1567407900000,1567407960000,1567408020000,1567408080000,1567408140000,1567408200000,1567408260000,1567408320000,1567408380000,1567408440000,1567408500000,1567408560000,1567408620000,1567408680000,1567408740000,1567408800000,1567408860000,1567408920000,1567408980000,1567409040000,1567409100000,1567409160000,1567409220000,1567409280000,1567409340000,1567409400000,1567409460000,1567409520000,1567409580000,1567409640000,1567409700000,1567409760000,1567409820000,1567409880000,1567409940000,1567410000000,1567410060000,1567410120000,1567410180000,1567410240000,1567410300000,1567410360000,1567410420000,1567410480000,1567410540000,1567410600000,1567410660000,1567410720000,1567410780000,1567410840000,1567410900000,1567410960000,1567411020000,1567411080000,1567411140000,1567411200000,1567411260000,1567411320000,1567411380000,1567411440000,1567411500000,1567411560000,1567411620000,1567411680000,1567411740000,1567411800000,1567411860000,1567411920000,1567411980000,1567412040000,1567412100000,1567412160000,1567412220000,1567412280000,1567412340000,1567412400000,1567412460000,1567412520000,1567412580000,1567412640000,1567412700000,1567412760000,1567412820000,1567412880000,1567412940000,1567413000000,1567413060000,1567413120000,1567413180000,1567413240000,1567413300000,1567413360000,1567413420000,1567413480000,1567413540000,1567413600000,1567413660000,1567413720000,1567413780000,1567413840000,1567413900000,1567413960000,1567414020000,1567414080000,1567414140000,1567414200000,1567414260000,1567414320000,1567414380000,1567414440000,1567414500000,1567414560000,1567414620000,1567414680000,1567414740000,1567414800000,1567414860000,1567414920000,1567414980000,1567415040000,1567415100000,1567415160000,1567415220000,1567415280000,1567415340000,1567415400000,1567415460000,1567415520000,1567415580000,1567415640000,1567415700000,1567415760000,1567415820000,1567415880000,1567415940000,1567416000000,1567416060000,1567416120000,1567416180000,1567416240000,1567416300000,1567416360000,1567416420000,1567416480000,1567416540000,1567416600000,1567416660000,1567416720000,1567416780000,1567416840000,1567416900000,1567416960000,1567417020000,1567417080000,1567417140000,1567417200000,1567417260000,1567417320000,1567417380000,1567417440000,1567417500000,1567417560000,1567417620000,1567417680000,1567417740000,1567417800000,1567417860000,1567417920000,1567417980000,1567418040000,1567418100000,1567418160000,1567418220000,1567418280000,1567418340000,1567418400000,1567418460000,1567418520000,1567418580000,1567418640000,1567418700000,1567418760000,1567418820000,1567418880000,1567418940000,1567419000000,1567419060000,1567419120000,1567419180000,1567419240000,1567419300000,1567419360000,1567419420000,1567419480000,1567419540000,1567419600000,1567419660000,1567419720000,1567419780000,1567419840000,1567419900000,1567419960000,1567420020000,1567420080000,1567420140000,1567420200000,1567420260000,1567420320000,1567420380000,1567420440000,1567420500000,1567420560000,1567420620000,1567420680000,1567420740000,1567420800000,1567420860000,1567420920000,1567420980000,1567421040000,1567421100000,1567421160000,1567421220000,1567421280000,1567421340000,1567421400000,1567421460000,1567421520000,1567421580000,1567421640000,1567421700000,1567421760000,1567421820000,1567421880000,1567421940000,1567422000000,1567422060000,1567422120000,1567422180000,1567422240000,1567422300000,1567422360000,1567422420000,1567422480000,1567422540000,1567422600000,1567422660000,1567422720000,1567422780000,1567422840000,1567422900000,1567422960000,1567423020000,1567423080000,1567423140000,1567423200000,1567423260000,1567423320000,1567423380000,1567423440000,1567423500000,1567423560000,1567423620000,1567423680000,1567423740000,1567423800000,1567423860000,1567423920000,1567423980000,1567424040000,1567424100000,1567424160000,1567424220000,1567424280000,1567424340000,1567424400000,1567424460000,1567424520000,1567424580000,1567424640000,1567424700000,1567424760000,1567424820000,1567424880000,1567424940000,1567425000000,1567425060000,1567425120000,1567425180000,1567425240000,1567425300000,1567425360000,1567425420000,1567425480000,1567425540000,1567425600000,1567425660000,1567425720000,1567425780000,1567425840000,1567425900000,1567425960000,1567426020000,1567426080000,1567426140000,1567426200000,1567426260000,1567426320000,1567426380000,1567426440000,1567426500000,1567426560000,1567426620000,1567426680000,1567426740000,1567426800000,1567426860000,1567426920000,1567426980000,1567427040000,1567427100000,1567427160000,1567427220000,1567427280000,1567427340000,1567427400000,1567427460000,1567427520000,1567427580000,1567427640000,1567427700000,1567427760000,1567427820000,1567427880000,1567427940000,1567428000000,1567428060000,1567428120000,1567428180000,1567428240000,1567428300000,1567428360000,1567428420000,1567428480000,1567428540000,1567428600000,1567428660000,1567428720000,1567428780000,1567428840000,1567428900000,1567428960000,1567429020000,1567429080000,1567429140000,1567429200000,1567429260000,1567429320000,1567429380000,1567429440000,1567429500000,1567429560000,1567429620000,1567429680000,1567429740000,1567429800000,1567429860000,1567429920000,1567429980000,1567430040000,1567430100000,1567430160000,1567430220000,1567430280000,1567430340000,1567430400000,1567430460000,1567430520000,1567430580000,1567430640000,1567430700000,1567430760000,1567430820000,1567430880000,1567430940000,1567431000000,1567431060000,1567431120000,1567431180000,1567431240000,1567431300000,1567431360000,1567431420000,1567431480000,1567431540000,1567431600000,1567431660000,1567431720000,1567431780000,1567431840000,1567431900000,1567431960000,1567432020000,1567432080000,1567432140000,1567432200000,1567432260000,1567432320000,1567432380000,1567432440000,1567432500000,1567432560000,1567432620000,1567432680000,1567432740000,1567432800000,1567432860000,1567432920000,1567432980000,1567433040000,1567433100000,1567433160000,1567433220000,1567433280000,1567433340000,1567433400000,1567433460000,1567433520000,1567433580000,1567433640000,1567433700000,1567433760000,1567433820000,1567433880000,1567433940000,1567434000000,1567434060000,1567434120000,1567434180000,1567434240000,1567434300000,1567434360000,1567434420000,1567434480000,1567434540000,1567434600000,1567434660000,1567434720000,1567434780000,1567434840000,1567434900000,1567434960000,1567435020000,1567435080000,1567435140000,1567435200000,1567435260000,1567435320000,1567435380000,1567435440000,1567435500000,1567435560000,1567435620000,1567435680000,1567435740000,1567435800000,1567435860000,1567435920000,1567435980000,1567436040000,1567436100000,1567436160000,1567436220000,1567436280000,1567436340000,1567436400000,1567436460000,1567436520000,1567436580000,1567436640000,1567436700000,1567436760000,1567436820000,1567436880000,1567436940000,1567437000000,1567437060000,1567437120000,1567437180000,1567437240000,1567437300000,1567437360000,1567437420000,1567437480000,1567437540000,1567437600000,1567437660000,1567437720000,1567437780000,1567437840000,1567437900000,1567437960000,1567438020000,1567438080000,1567438140000,1567438200000,1567438260000,1567438320000,1567438380000,1567438440000,1567438500000,1567438560000,1567438620000,1567438680000,1567438740000,1567438800000,1567438860000,1567438920000,1567438980000,1567439040000,1567439100000,1567439160000,1567439220000,1567439280000,1567439340000,1567439400000,1567439460000,1567439520000,1567439580000,1567439640000,1567439700000,1567439760000,1567439820000,1567439880000,1567439940000,1567440000000,1567440060000,1567440120000,1567440180000,1567440240000,1567440300000,1567440360000,1567440420000,1567440480000,1567440540000,1567440600000,1567440660000,1567440720000,1567440780000,1567440840000,1567440900000,1567440960000,1567441020000,1567441080000,1567441140000,1567441200000,1567441260000,1567441320000,1567441380000,1567441440000,1567441500000,1567441560000,1567441620000,1567441680000,1567441740000,1567441800000,1567441860000,1567441920000,1567441980000,1567442040000,1567442100000,1567442160000,1567442220000,1567442280000,1567442340000,1567442400000,1567442460000,1567442520000,1567442580000,1567442640000,1567442700000,1567442760000,1567442820000,1567442880000,1567442940000,1567443000000,1567443060000,1567443120000,1567443180000,1567443240000,1567443300000,1567443360000,1567443420000,1567443480000,1567443540000,1567443600000,1567443660000,1567443720000,1567443780000,1567443840000,1567443900000,1567443960000,1567444020000,1567444080000,1567444140000,1567444200000,1567444260000,1567444320000,1567444380000,1567444440000,1567444500000,1567444560000,1567444620000,1567444680000,1567444740000,1567444800000,1567444860000,1567444920000,1567444980000,1567445040000,1567445100000,1567445160000,1567445220000,1567445280000,1567445340000,1567445400000,1567445460000,1567445520000,1567445580000,1567445640000,1567445700000,1567445760000,1567445820000,1567445880000,1567445940000,1567446000000,1567446060000,1567446120000,1567446180000,1567446240000,1567446300000,1567446360000,1567446420000,1567446480000,1567446540000,1567446600000,1567446660000,1567446720000,1567446780000,1567446840000,1567446900000,1567446960000,1567447020000,1567447080000,1567447140000,1567447200000,1567447260000,1567447320000,1567447380000,1567447440000,1567447500000,1567447560000,1567447620000,1567447680000,1567447740000,1567447800000,1567447860000,1567447920000,1567447980000,1567448040000,1567448100000,1567448160000,1567448220000,1567448280000,1567448340000,1567448400000,1567448460000,1567448520000,1567448580000,1567448640000,1567448700000,1567448760000,1567448820000,1567448880000,1567448940000,1567449000000,1567449060000,1567449120000,1567449180000,1567449240000,1567449300000,1567449360000,1567449420000,1567449480000,1567449540000,1567449600000,1567449660000,1567449720000,1567449780000,1567449840000,1567449900000,1567449960000,1567450020000,1567450080000,1567450140000,1567450200000,1567450260000,1567450320000,1567450380000,1567450440000,1567450500000,1567450560000,1567450620000,1567450680000,1567450740000,1567450800000,1567450860000,1567450920000,1567450980000,1567451040000,1567451100000,1567451160000,1567451220000,1567451280000,1567451340000,1567451400000,1567451460000,1567451520000,1567451580000,1567451640000,1567451700000,1567451760000,1567451820000,1567451880000,1567451940000,1567452000000,1567452060000,1567452120000,1567452180000,1567452240000,1567452300000,1567452360000,1567452420000,1567452480000,1567452540000,1567452600000,1567452660000,1567452720000,1567452780000,1567452840000,1567452900000,1567452960000,1567453020000,1567453080000,1567453140000,1567453200000,1567453260000,1567453320000,1567453380000,1567453440000,1567453500000,1567453560000,1567453620000,1567453680000,1567453740000,1567453800000,1567453860000,1567453920000,1567453980000,1567454040000,1567454100000,1567454160000,1567454220000,1567454280000,1567454340000,1567454400000,1567454460000,1567454520000,1567454580000,1567454640000,1567454700000,1567454760000,1567454820000,1567454880000,1567454940000,1567455000000,1567455060000,1567455120000,1567455180000,1567455240000,1567455300000,1567455360000,1567455420000,1567455480000,1567455540000,1567455600000,1567455660000,1567455720000,1567455780000,1567455840000,1567455900000,1567455960000,1567456020000,1567456080000,1567456140000,1567456200000,1567456260000,1567456320000,1567456380000,1567456440000,1567456500000,1567456560000,1567456620000,1567456680000,1567456740000,1567456800000,1567456860000,1567456920000,1567456980000,1567457040000,1567457100000,1567457160000,1567457220000,1567457280000,1567457340000,1567457400000,1567457460000,1567457520000,1567457580000,1567457640000,1567457700000,1567457760000,1567457820000,1567457880000,1567457940000,1567458000000,1567458060000,1567458120000,1567458180000,1567458240000,1567458300000,1567458360000,1567458420000,1567458480000,1567458540000,1567458600000,1567458660000,1567458720000,1567458780000,1567458840000,1567458900000,1567458960000,1567459020000,1567459080000,1567459140000,1567459200000,1567459260000,1567459320000,1567459380000,1567459440000,1567459500000,1567459560000,1567459620000,1567459680000,1567459740000,1567459800000,1567459860000,1567459920000,1567459980000,1567460040000,1567460100000,1567460160000,1567460220000,1567460280000,1567460340000,1567460400000,1567460460000,1567460520000,1567460580000,1567460640000,1567460700000,1567460760000,1567460820000,1567460880000,1567460940000,1567461000000,1567461060000,1567461120000,1567461180000,1567461240000,1567461300000,1567461360000,1567461420000,1567461480000,1567461540000,1567461600000,1567461660000,1567461720000,1567461780000,1567461840000,1567461900000,1567461960000,1567462020000,1567462080000,1567462140000,1567462200000,1567462260000,1567462320000,1567462380000,1567462440000,1567462500000,1567462560000,1567462620000,1567462680000,1567462740000,1567462800000,1567462860000,1567462920000,1567462980000,1567463040000,1567463100000,1567463160000,1567463220000,1567463280000,1567463340000,1567463400000,1567463460000,1567463520000,1567463580000,1567463640000,1567463700000,1567463760000,1567463820000,1567463880000,1567463940000,1567464000000,1567464060000,1567464120000,1567464180000,1567464240000,1567464300000,1567464360000,1567464420000,1567464480000,1567464540000,1567464600000,1567464660000,1567464720000,1567464780000,1567464840000,1567464900000,1567464960000,1567465020000,1567465080000,1567465140000,1567465200000,1567465260000,1567465320000,1567465380000,1567465440000,1567465500000,1567465560000,1567465620000,1567465680000,1567465740000,1567465800000,1567465860000,1567465920000,1567465980000,1567466040000,1567466100000,1567466160000,1567466220000,1567466280000,1567466340000,1567466400000,1567466460000,1567466520000,1567466580000,1567466640000,1567466700000,1567466760000,1567466820000,1567466880000,1567466940000,1567467000000,1567467060000,1567467120000,1567467180000,1567467240000,1567467300000,1567467360000,1567467420000,1567467480000,1567467540000,1567467600000,1567467660000,1567467720000,1567467780000,1567467840000,1567467900000,1567467960000,1567468020000,1567468080000,1567468140000,1567468200000,1567468260000,1567468320000,1567468380000,1567468440000,1567468500000,1567468560000,1567468620000,1567468680000,1567468740000,1567468800000,1567468860000,1567468920000,1567468980000,1567469040000,1567469100000,1567469160000,1567469220000,1567469280000,1567469340000,1567469400000,1567469460000,1567469520000,1567469580000,1567469640000,1567469700000,1567469760000,1567469820000,1567469880000,1567469940000,1567470000000,1567470060000,1567470120000,1567470180000,1567470240000,1567470300000,1567470360000,1567470420000,1567470480000,1567470540000,1567470600000,1567470660000,1567470720000,1567470780000,1567470840000,1567470900000,1567470960000,1567471020000,1567471080000,1567471140000,1567471200000,1567471260000,1567471320000,1567471380000,1567471440000,1567471500000,1567471560000,1567471620000,1567471680000,1567471740000,1567471800000,1567471860000,1567471920000,1567471980000,1567472040000,1567472100000,1567472160000,1567472220000,1567472280000,1567472340000,1567472400000,1567472460000,1567472520000,1567472580000,1567472640000,1567472700000,1567472760000,1567472820000,1567472880000,1567472940000,1567473000000,1567473060000,1567473120000,1567473180000,1567473240000,1567473300000,1567473360000,1567473420000,1567473480000,1567473540000,1567473600000,1567473660000,1567473720000,1567473780000,1567473840000,1567473900000,1567473960000,1567474020000,1567474080000,1567474140000,1567474200000,1567474260000,1567474320000,1567474380000,1567474440000,1567474500000,1567474560000,1567474620000,1567474680000,1567474740000,1567474800000,1567474860000,1567474920000,1567474980000,1567475040000,1567475100000,1567475160000,1567475220000,1567475280000,1567475340000,1567475400000,1567475460000,1567475520000,1567475580000,1567475640000,1567475700000,1567475760000,1567475820000,1567475880000,1567475940000,1567476000000,1567476060000,1567476120000,1567476180000,1567476240000,1567476300000,1567476360000,1567476420000,1567476480000,1567476540000,1567476600000,1567476660000,1567476720000,1567476780000,1567476840000,1567476900000,1567476960000,1567477020000,1567477080000,1567477140000,1567477200000,1567477260000,1567477320000,1567477380000,1567477440000,1567477500000,1567477560000,1567477620000,1567477680000,1567477740000,1567477800000,1567477860000,1567477920000,1567477980000,1567478040000,1567478100000,1567478160000,1567478220000,1567478280000,1567478340000,1567478400000,1567478460000,1567478520000,1567478580000,1567478640000,1567478700000,1567478760000,1567478820000,1567478880000,1567478940000,1567479000000,1567479060000,1567479120000,1567479180000,1567479240000,1567479300000,1567479360000,1567479420000,1567479480000,1567479540000,1567479600000,1567479660000,1567479720000,1567479780000,1567479840000,1567479900000,1567479960000,1567480020000,1567480080000,1567480140000,1567480200000,1567480260000,1567480320000,1567480380000,1567480440000,1567480500000,1567480560000,1567480620000,1567480680000,1567480740000,1567480800000,1567480860000,1567480920000,1567480980000,1567481040000,1567481100000,1567481160000,1567481220000,1567481280000,1567481340000,1567481400000,1567481460000,1567481520000,1567481580000,1567481640000,1567481700000,1567481760000,1567481820000,1567481880000,1567481940000,1567482000000,1567482060000,1567482120000,1567482180000,1567482240000,1567482300000,1567482360000,1567482420000,1567482480000,1567482540000,1567482600000,1567482660000,1567482720000,1567482780000,1567482840000,1567482900000,1567482960000,1567483020000,1567483080000,1567483140000,1567483200000,1567483260000,1567483320000,1567483380000,1567483440000,1567483500000,1567483560000,1567483620000,1567483680000,1567483740000,1567483800000,1567483860000,1567483920000,1567483980000,1567484040000,1567484100000,1567484160000,1567484220000,1567484280000,1567484340000,1567484400000,1567484460000,1567484520000,1567484580000,1567484640000,1567484700000,1567484760000,1567484820000,1567484880000,1567484940000,1567485000000,1567485060000,1567485120000,1567485180000,1567485240000,1567485300000,1567485360000,1567485420000,1567485480000,1567485540000,1567485600000,1567485660000,1567485720000,1567485780000,1567485840000,1567485900000,1567485960000,1567486020000,1567486080000,1567486140000,1567486200000,1567486260000,1567486320000,1567486380000,1567486440000,1567486500000,1567486560000,1567486620000,1567486680000,1567486740000,1567486800000,1567486860000,1567486920000,1567486980000,1567487040000,1567487100000,1567487160000,1567487220000,1567487280000,1567487340000,1567487400000,1567487460000,1567487520000,1567487580000,1567487640000,1567487700000,1567487760000,1567487820000,1567487880000,1567487940000,1567488000000,1567488060000,1567488120000,1567488180000,1567488240000,1567488300000,1567488360000,1567488420000,1567488480000,1567488540000,1567488600000,1567488660000,1567488720000,1567488780000,1567488840000,1567488900000,1567488960000,1567489020000,1567489080000,1567489140000,1567489200000,1567489260000,1567489320000,1567489380000,1567489440000,1567489500000,1567489560000,1567489620000,1567489680000,1567489740000,1567489800000,1567489860000,1567489920000,1567489980000,1567490040000,1567490100000,1567490160000,1567490220000,1567490280000,1567490340000,1567490400000,1567490460000,1567490520000,1567490580000,1567490640000,1567490700000,1567490760000,1567490820000,1567490880000,1567490940000,1567491000000,1567491060000,1567491120000,1567491180000,1567491240000,1567491300000,1567491360000,1567491420000,1567491480000,1567491540000,1567491600000,1567491660000,1567491720000,1567491780000,1567491840000,1567491900000,1567491960000,1567492020000,1567492080000,1567492140000,1567492200000,1567492260000,1567492320000,1567492380000,1567492440000,1567492500000,1567492560000,1567492620000,1567492680000,1567492740000,1567492800000,1567492860000,1567492920000,1567492980000,1567493040000,1567493100000,1567493160000,1567493220000,1567493280000,1567493340000,1567493400000,1567493460000,1567493520000,1567493580000,1567493640000,1567493700000,1567493760000,1567493820000,1567493880000,1567493940000,1567494000000,1567494060000,1567494120000,1567494180000,1567494240000,1567494300000,1567494360000,1567494420000,1567494480000,1567494540000,1567494600000,1567494660000,1567494720000,1567494780000,1567494840000,1567494900000,1567494960000,1567495020000,1567495080000,1567495140000,1567495200000,1567495260000,1567495320000,1567495380000,1567495440000,1567495500000,1567495560000,1567495620000,1567495680000,1567495740000,1567495800000,1567495860000,1567495920000,1567495980000,1567496040000,1567496100000,1567496160000,1567496220000,1567496280000,1567496340000,1567496400000,1567496460000,1567496520000,1567496580000,1567496640000,1567496700000,1567496760000,1567496820000,1567496880000,1567496940000,1567497000000,1567497060000,1567497120000,1567497180000,1567497240000,1567497300000,1567497360000,1567497420000,1567497480000,1567497540000,1567497600000,1567497660000,1567497720000,1567497780000,1567497840000,1567497900000,1567497960000,1567498020000,1567498080000,1567498140000,1567498200000,1567498260000,1567498320000,1567498380000,1567498440000,1567498500000,1567498560000,1567498620000,1567498680000,1567498740000,1567498800000,1567498860000,1567498920000,1567498980000,1567499040000,1567499100000,1567499160000,1567499220000,1567499280000,1567499340000,1567499400000,1567499460000,1567499520000,1567499580000,1567499640000,1567499700000,1567499760000,1567499820000,1567499880000,1567499940000,1567500000000,1567500060000,1567500120000,1567500180000,1567500240000,1567500300000,1567500360000,1567500420000,1567500480000,1567500540000,1567500600000,1567500660000,1567500720000,1567500780000,1567500840000,1567500900000,1567500960000,1567501020000,1567501080000,1567501140000,1567501200000,1567501260000,1567501320000,1567501380000,1567501440000,1567501500000,1567501560000,1567501620000,1567501680000,1567501740000,1567501800000,1567501860000,1567501920000,1567501980000,1567502040000,1567502100000,1567502160000,1567502220000,1567502280000,1567502340000,1567502400000,1567502460000,1567502520000,1567502580000,1567502640000,1567502700000,1567502760000,1567502820000,1567502880000,1567502940000,1567503000000,1567503060000,1567503120000,1567503180000,1567503240000,1567503300000,1567503360000,1567503420000,1567503480000,1567503540000,1567503600000,1567503660000,1567503720000,1567503780000,1567503840000,1567503900000,1567503960000,1567504020000,1567504080000,1567504140000,1567504200000,1567504260000,1567504320000,1567504380000,1567504440000,1567504500000,1567504560000,1567504620000,1567504680000,1567504740000,1567504800000,1567504860000,1567504920000,1567504980000,1567505040000,1567505100000,1567505160000,1567505220000,1567505280000,1567505340000,1567505400000,1567505460000,1567505520000,1567505580000,1567505640000,1567505700000,1567505760000,1567505820000,1567505880000,1567505940000,1567506000000,1567506060000,1567506120000,1567506180000,1567506240000,1567506300000,1567506360000,1567506420000,1567506480000,1567506540000,1567506600000,1567506660000,1567506720000,1567506780000,1567506840000,1567506900000,1567506960000,1567507020000,1567507080000,1567507140000,1567507200000,1567507260000,1567507320000,1567507380000,1567507440000,1567507500000,1567507560000,1567507620000,1567507680000,1567507740000,1567507800000,1567507860000,1567507920000,1567507980000,1567508040000,1567508100000,1567508160000,1567508220000,1567508280000,1567508340000,1567508400000,1567508460000,1567508520000,1567508580000,1567508640000,1567508700000,1567508760000,1567508820000,1567508880000,1567508940000,1567509000000,1567509060000,1567509120000,1567509180000,1567509240000,1567509300000,1567509360000,1567509420000,1567509480000,1567509540000,1567509600000,1567509660000,1567509720000,1567509780000,1567509840000,1567509900000,1567509960000,1567510020000,1567510080000,1567510140000,1567510200000,1567510260000,1567510320000,1567510380000,1567510440000,1567510500000,1567510560000,1567510620000,1567510680000,1567510740000,1567510800000,1567510860000,1567510920000,1567510980000,1567511040000,1567511100000,1567511160000,1567511220000,1567511280000,1567511340000,1567511400000,1567511460000,1567511520000,1567511580000,1567511640000,1567511700000,1567511760000,1567511820000,1567511880000,1567511940000,1567512000000,1567512060000,1567512120000,1567512180000,1567512240000,1567512300000,1567512360000,1567512420000,1567512480000,1567512540000,1567512600000,1567512660000,1567512720000,1567512780000,1567512840000,1567512900000,1567512960000,1567513020000,1567513080000,1567513140000,1567513200000,1567513260000,1567513320000,1567513380000,1567513440000,1567513500000,1567513560000,1567513620000,1567513680000,1567513740000,1567513800000,1567513860000,1567513920000,1567513980000,1567514040000,1567514100000,1567514160000,1567514220000,1567514280000,1567514340000,1567514400000,1567514460000,1567514520000,1567514580000,1567514640000,1567514700000,1567514760000,1567514820000,1567514880000,1567514940000,1567515000000,1567515060000,1567515120000,1567515180000,1567515240000,1567515300000,1567515360000,1567515420000,1567515480000,1567515540000,1567515600000,1567515660000,1567515720000,1567515780000,1567515840000,1567515900000,1567515960000,1567516020000,1567516080000,1567516140000,1567516200000,1567516260000,1567516320000,1567516380000,1567516440000,1567516500000,1567516560000,1567516620000,1567516680000,1567516740000,1567516800000,1567516860000,1567516920000,1567516980000,1567517040000,1567517100000,1567517160000,1567517220000,1567517280000,1567517340000,1567517400000,1567517460000,1567517520000,1567517580000,1567517640000,1567517700000,1567517760000,1567517820000,1567517880000,1567517940000,1567518000000,1567518060000,1567518120000,1567518180000,1567518240000,1567518300000,1567518360000,1567518420000,1567518480000,1567518540000,1567518600000,1567518660000,1567518720000,1567518780000,1567518840000,1567518900000,1567518960000,1567519020000,1567519080000,1567519140000,1567519200000,1567519260000,1567519320000,1567519380000,1567519440000,1567519500000,1567519560000,1567519620000,1567519680000,1567519740000,1567519800000,1567519860000,1567519920000,1567519980000,1567520040000,1567520100000,1567520160000,1567520220000,1567520280000,1567520340000,1567520400000,1567520460000,1567520520000,1567520580000,1567520640000,1567520700000,1567520760000,1567520820000,1567520880000,1567520940000,1567521000000,1567521060000,1567521120000,1567521180000,1567521240000,1567521300000,1567521360000,1567521420000,1567521480000,1567521540000,1567521600000,1567521660000,1567521720000,1567521780000,1567521840000,1567521900000,1567521960000,1567522020000,1567522080000,1567522140000,1567522200000,1567522260000,1567522320000,1567522380000,1567522440000,1567522500000,1567522560000,1567522620000,1567522680000,1567522740000,1567522800000,1567522860000,1567522920000,1567522980000,1567523040000,1567523100000,1567523160000,1567523220000,1567523280000,1567523340000,1567523400000,1567523460000,1567523520000,1567523580000,1567523640000,1567523700000,1567523760000,1567523820000,1567523880000,1567523940000,1567524000000,1567524060000,1567524120000,1567524180000,1567524240000,1567524300000,1567524360000,1567524420000,1567524480000,1567524540000,1567524600000,1567524660000,1567524720000,1567524780000,1567524840000,1567524900000,1567524960000,1567525020000,1567525080000,1567525140000,1567525200000,1567525260000,1567525320000,1567525380000,1567525440000,1567525500000,1567525560000,1567525620000,1567525680000,1567525740000,1567525800000,1567525860000,1567525920000,1567525980000,1567526040000,1567526100000,1567526160000,1567526220000,1567526280000,1567526340000,1567526400000,1567526460000,1567526520000,1567526580000,1567526640000,1567526700000,1567526760000,1567526820000,1567526880000,1567526940000,1567527000000,1567527060000,1567527120000,1567527180000,1567527240000,1567527300000,1567527360000,1567527420000,1567527480000,1567527540000,1567527600000,1567527660000,1567527720000,1567527780000,1567527840000,1567527900000,1567527960000,1567528020000,1567528080000,1567528140000,1567528200000,1567528260000,1567528320000,1567528380000,1567528440000,1567528500000,1567528560000,1567528620000,1567528680000,1567528740000,1567528800000,1567528860000,1567528920000,1567528980000,1567529040000,1567529100000,1567529160000,1567529220000,1567529280000,1567529340000,1567529400000,1567529460000,1567529520000,1567529580000,1567529640000,1567529700000,1567529760000,1567529820000,1567529880000,1567529940000,1567530000000,1567530060000,1567530120000,1567530180000,1567530240000,1567530300000,1567530360000,1567530420000,1567530480000,1567530540000,1567530600000,1567530660000,1567530720000,1567530780000,1567530840000,1567530900000,1567530960000,1567531020000,1567531080000,1567531140000,1567531200000,1567531260000,1567531320000,1567531380000,1567531440000,1567531500000,1567531560000,1567531620000,1567531680000,1567531740000,1567531800000,1567531860000,1567531920000,1567531980000,1567532040000,1567532100000,1567532160000,1567532220000,1567532280000,1567532340000,1567532400000,1567532460000,1567532520000,1567532580000,1567532640000,1567532700000,1567532760000,1567532820000,1567532880000,1567532940000,1567533000000,1567533060000,1567533120000,1567533180000,1567533240000,1567533300000,1567533360000,1567533420000,1567533480000,1567533540000,1567533600000,1567533660000,1567533720000,1567533780000,1567533840000,1567533900000,1567533960000,1567534020000,1567534080000,1567534140000,1567534200000,1567534260000,1567534320000,1567534380000,1567534440000,1567534500000,1567534560000,1567534620000,1567534680000,1567534740000,1567534800000,1567534860000,1567534920000,1567534980000,1567535040000,1567535100000,1567535160000,1567535220000,1567535280000,1567535340000,1567535400000,1567535460000,1567535520000,1567535580000,1567535640000,1567535700000,1567535760000,1567535820000,1567535880000,1567535940000,1567536000000,1567536060000,1567536120000,1567536180000,1567536240000,1567536300000,1567536360000,1567536420000,1567536480000,1567536540000,1567536600000,1567536660000,1567536720000,1567536780000,1567536840000,1567536900000,1567536960000,1567537020000,1567537080000,1567537140000,1567537200000,1567537260000,1567537320000,1567537380000,1567537440000,1567537500000,1567537560000,1567537620000,1567537680000,1567537740000,1567537800000,1567537860000,1567537920000,1567537980000,1567538040000,1567538100000,1567538160000,1567538220000,1567538280000,1567538340000,1567538400000,1567538460000,1567538520000,1567538580000,1567538640000,1567538700000,1567538760000,1567538820000,1567538880000,1567538940000,1567539000000,1567539060000,1567539120000,1567539180000,1567539240000,1567539300000,1567539360000,1567539420000,1567539480000,1567539540000,1567539600000,1567539660000,1567539720000,1567539780000,1567539840000,1567539900000,1567539960000,1567540020000,1567540080000,1567540140000,1567540200000,1567540260000,1567540320000,1567540380000,1567540440000,1567540500000,1567540560000,1567540620000,1567540680000,1567540740000,1567540800000,1567540860000,1567540920000,1567540980000,1567541040000,1567541100000,1567541160000,1567541220000,1567541280000,1567541340000,1567541400000,1567541460000,1567541520000,1567541580000,1567541640000,1567541700000,1567541760000,1567541820000,1567541880000,1567541940000,1567542000000,1567542060000,1567542120000,1567542180000,1567542240000,1567542300000,1567542360000,1567542420000,1567542480000,1567542540000,1567542600000,1567542660000,1567542720000,1567542780000,1567542840000,1567542900000,1567542960000,1567543020000,1567543080000,1567543140000,1567543200000,1567543260000,1567543320000,1567543380000,1567543440000,1567543500000,1567543560000,1567543620000,1567543680000,1567543740000,1567543800000,1567543860000,1567543920000,1567543980000,1567544040000,1567544100000,1567544160000,1567544220000,1567544280000,1567544340000,1567544400000,1567544460000,1567544520000,1567544580000,1567544640000,1567544700000,1567544760000,1567544820000,1567544880000,1567544940000,1567545000000,1567545060000,1567545120000,1567545180000,1567545240000,1567545300000,1567545360000,1567545420000,1567545480000,1567545540000,1567545600000,1567545660000,1567545720000,1567545780000,1567545840000,1567545900000,1567545960000,1567546020000,1567546080000,1567546140000,1567546200000,1567546260000,1567546320000,1567546380000,1567546440000,1567546500000,1567546560000,1567546620000,1567546680000,1567546740000,1567546800000,1567546860000,1567546920000,1567546980000,1567547040000,1567547100000,1567547160000,1567547220000,1567547280000,1567547340000,1567547400000,1567547460000,1567547520000,1567547580000,1567547640000,1567547700000,1567547760000,1567547820000,1567547880000,1567547940000,1567548000000,1567548060000,1567548120000,1567548180000,1567548240000,1567548300000,1567548360000,1567548420000,1567548480000,1567548540000,1567548600000,1567548660000,1567548720000,1567548780000,1567548840000,1567548900000,1567548960000,1567549020000,1567549080000,1567549140000,1567549200000,1567549260000,1567549320000,1567549380000,1567549440000,1567549500000,1567549560000,1567549620000,1567549680000,1567549740000,1567549800000,1567549860000,1567549920000,1567549980000,1567550040000,1567550100000,1567550160000,1567550220000,1567550280000,1567550340000,1567550400000,1567550460000,1567550520000,1567550580000,1567550640000,1567550700000,1567550760000,1567550820000,1567550880000,1567550940000,1567551000000,1567551060000,1567551120000,1567551180000,1567551240000,1567551300000,1567551360000,1567551420000,1567551480000,1567551540000,1567551600000,1567551660000,1567551720000,1567551780000,1567551840000,1567551900000,1567551960000,1567552020000,1567552080000,1567552140000,1567552200000,1567552260000,1567552320000,1567552380000,1567552440000,1567552500000,1567552560000,1567552620000,1567552680000,1567552740000,1567552800000,1567552860000,1567552920000,1567552980000,1567553040000,1567553100000,1567553160000,1567553220000,1567553280000,1567553340000,1567553400000,1567553460000,1567553520000,1567553580000,1567553640000,1567553700000,1567553760000,1567553820000,1567553880000,1567553940000,1567554000000,1567554060000,1567554120000,1567554180000,1567554240000,1567554300000,1567554360000,1567554420000,1567554480000,1567554540000,1567554600000,1567554660000,1567554720000,1567554780000,1567554840000,1567554900000,1567554960000,1567555020000,1567555080000,1567555140000,1567555200000,1567555260000,1567555320000,1567555380000,1567555440000,1567555500000,1567555560000,1567555620000,1567555680000,1567555740000,1567555800000,1567555860000,1567555920000,1567555980000,1567556040000,1567556100000,1567556160000,1567556220000,1567556280000,1567556340000,1567556400000,1567556460000,1567556520000,1567556580000,1567556640000,1567556700000,1567556760000,1567556820000,1567556880000,1567556940000,1567557000000,1567557060000,1567557120000,1567557180000,1567557240000,1567557300000,1567557360000,1567557420000,1567557480000,1567557540000,1567557600000,1567557660000,1567557720000,1567557780000,1567557840000,1567557900000,1567557960000,1567558020000,1567558080000,1567558140000,1567558200000,1567558260000,1567558320000,1567558380000,1567558440000,1567558500000,1567558560000,1567558620000,1567558680000,1567558740000,1567558800000,1567558860000,1567558920000,1567558980000,1567559040000,1567559100000,1567559160000,1567559220000,1567559280000,1567559340000,1567559400000,1567559460000,1567559520000,1567559580000,1567559640000,1567559700000,1567559760000,1567559820000,1567559880000,1567559940000,1567560000000,1567560060000,1567560120000,1567560180000,1567560240000,1567560300000,1567560360000,1567560420000,1567560480000,1567560540000,1567560600000,1567560660000,1567560720000,1567560780000,1567560840000,1567560900000,1567560960000,1567561020000,1567561080000,1567561140000,1567561200000,1567561260000,1567561320000,1567561380000,1567561440000,1567561500000,1567561560000,1567561620000,1567561680000,1567561740000,1567561800000,1567561860000,1567561920000,1567561980000,1567562040000,1567562100000,1567562160000,1567562220000,1567562280000,1567562340000,1567562400000,1567562460000,1567562520000,1567562580000,1567562640000,1567562700000,1567562760000,1567562820000,1567562880000,1567562940000,1567563000000,1567563060000,1567563120000,1567563180000,1567563240000,1567563300000,1567563360000,1567563420000,1567563480000,1567563540000,1567563600000,1567563660000,1567563720000,1567563780000,1567563840000,1567563900000,1567563960000,1567564020000,1567564080000,1567564140000,1567564200000,1567564260000,1567564320000,1567564380000,1567564440000,1567564500000,1567564560000,1567564620000,1567564680000,1567564740000,1567564800000,1567564860000,1567564920000,1567564980000,1567565040000,1567565100000,1567565160000,1567565220000,1567565280000,1567565340000,1567565400000,1567565460000,1567565520000,1567565580000,1567565640000,1567565700000,1567565760000,1567565820000,1567565880000,1567565940000,1567566000000,1567566060000,1567566120000,1567566180000,1567566240000,1567566300000,1567566360000,1567566420000,1567566480000,1567566540000,1567566600000,1567566660000,1567566720000,1567566780000,1567566840000,1567566900000,1567566960000,1567567020000,1567567080000,1567567140000,1567567200000,1567567260000,1567567320000,1567567380000,1567567440000,1567567500000,1567567560000,1567567620000,1567567680000,1567567740000,1567567800000,1567567860000,1567567920000,1567567980000,1567568040000,1567568100000,1567568160000,1567568220000,1567568280000,1567568340000,1567568400000,1567568460000,1567568520000,1567568580000,1567568640000,1567568700000,1567568760000,1567568820000,1567568880000,1567568940000,1567569000000,1567569060000,1567569120000,1567569180000,1567569240000,1567569300000,1567569360000,1567569420000,1567569480000,1567569540000,1567569600000,1567569660000,1567569720000,1567569780000,1567569840000,1567569900000,1567569960000,1567570020000,1567570080000,1567570140000,1567570200000,1567570260000,1567570320000,1567570380000,1567570440000,1567570500000,1567570560000,1567570620000,1567570680000,1567570740000,1567570800000,1567570860000,1567570920000,1567570980000,1567571040000,1567571100000,1567571160000,1567571220000,1567571280000,1567571340000,1567571400000,1567571460000,1567571520000,1567571580000,1567571640000,1567571700000,1567571760000,1567571820000,1567571880000,1567571940000,1567572000000,1567572060000,1567572120000,1567572180000,1567572240000,1567572300000,1567572360000,1567572420000,1567572480000,1567572540000,1567572600000,1567572660000,1567572720000,1567572780000,1567572840000,1567572900000,1567572960000,1567573020000,1567573080000,1567573140000,1567573200000,1567573260000,1567573320000,1567573380000,1567573440000,1567573500000,1567573560000,1567573620000,1567573680000,1567573740000,1567573800000,1567573860000,1567573920000,1567573980000,1567574040000,1567574100000,1567574160000,1567574220000,1567574280000,1567574340000,1567574400000,1567574460000,1567574520000,1567574580000,1567574640000,1567574700000,1567574760000,1567574820000,1567574880000,1567574940000,1567575000000,1567575060000,1567575120000,1567575180000,1567575240000,1567575300000,1567575360000,1567575420000,1567575480000,1567575540000,1567575600000,1567575660000,1567575720000,1567575780000,1567575840000,1567575900000,1567575960000,1567576020000,1567576080000,1567576140000,1567576200000,1567576260000,1567576320000,1567576380000,1567576440000,1567576500000,1567576560000,1567576620000,1567576680000,1567576740000,1567576800000,1567576860000,1567576920000,1567576980000,1567577040000,1567577100000,1567577160000,1567577220000,1567577280000,1567577340000,1567577400000,1567577460000,1567577520000,1567577580000,1567577640000,1567577700000,1567577760000,1567577820000,1567577880000,1567577940000,1567578000000,1567578060000,1567578120000,1567578180000,1567578240000,1567578300000,1567578360000,1567578420000,1567578480000,1567578540000,1567578600000,1567578660000,1567578720000,1567578780000,1567578840000,1567578900000,1567578960000,1567579020000,1567579080000,1567579140000,1567579200000,1567579260000,1567579320000,1567579380000,1567579440000,1567579500000,1567579560000,1567579620000,1567579680000,1567579740000,1567579800000,1567579860000,1567579920000,1567579980000,1567580040000,1567580100000,1567580160000,1567580220000,1567580280000,1567580340000,1567580400000,1567580460000,1567580520000,1567580580000,1567580640000,1567580700000,1567580760000,1567580820000,1567580880000,1567580940000,1567581000000,1567581060000,1567581120000,1567581180000,1567581240000,1567581300000,1567581360000,1567581420000,1567581480000,1567581540000,1567581600000,1567581660000,1567581720000,1567581780000,1567581840000,1567581900000,1567581960000,1567582020000,1567582080000,1567582140000,1567582200000,1567582260000,1567582320000,1567582380000,1567582440000,1567582500000,1567582560000,1567582620000,1567582680000,1567582740000,1567582800000,1567582860000,1567582920000,1567582980000,1567583040000,1567583100000,1567583160000,1567583220000,1567583280000,1567583340000,1567583400000,1567583460000,1567583520000,1567583580000,1567583640000,1567583700000,1567583760000,1567583820000,1567583880000,1567583940000,1567584000000,1567584060000,1567584120000,1567584180000,1567584240000,1567584300000,1567584360000,1567584420000,1567584480000,1567584540000,1567584600000,1567584660000,1567584720000,1567584780000,1567584840000,1567584900000,1567584960000,1567585020000,1567585080000,1567585140000,1567585200000,1567585260000,1567585320000,1567585380000,1567585440000,1567585500000,1567585560000,1567585620000,1567585680000,1567585740000,1567585800000,1567585860000,1567585920000,1567585980000,1567586040000,1567586100000,1567586160000,1567586220000,1567586280000,1567586340000,1567586400000,1567586460000,1567586520000,1567586580000,1567586640000,1567586700000,1567586760000,1567586820000,1567586880000,1567586940000,1567587000000,1567587060000,1567587120000,1567587180000,1567587240000,1567587300000,1567587360000,1567587420000,1567587480000,1567587540000,1567587600000,1567587660000,1567587720000,1567587780000,1567587840000,1567587900000,1567587960000,1567588020000,1567588080000,1567588140000,1567588200000,1567588260000,1567588320000,1567588380000,1567588440000,1567588500000,1567588560000,1567588620000,1567588680000,1567588740000,1567588800000,1567588860000,1567588920000,1567588980000,1567589040000,1567589100000,1567589160000,1567589220000,1567589280000,1567589340000,1567589400000,1567589460000,1567589520000,1567589580000,1567589640000,1567589700000,1567589760000,1567589820000,1567589880000,1567589940000,1567590000000,1567590060000,1567590120000,1567590180000,1567590240000,1567590300000,1567590360000,1567590420000,1567590480000,1567590540000,1567590600000,1567590660000,1567590720000,1567590780000,1567590840000,1567590900000,1567590960000,1567591020000,1567591080000,1567591140000,1567591200000,1567591260000,1567591320000,1567591380000,1567591440000,1567591500000,1567591560000,1567591620000,1567591680000,1567591740000,1567591800000,1567591860000,1567591920000,1567591980000,1567592040000,1567592100000,1567592160000,1567592220000,1567592280000,1567592340000,1567592400000,1567592460000,1567592520000,1567592580000,1567592640000,1567592700000,1567592760000,1567592820000,1567592880000,1567592940000,1567593000000,1567593060000,1567593120000,1567593180000,1567593240000,1567593300000,1567593360000,1567593420000,1567593480000,1567593540000,1567593600000,1567593660000,1567593720000,1567593780000,1567593840000,1567593900000,1567593960000,1567594020000,1567594080000,1567594140000,1567594200000,1567594260000,1567594320000,1567594380000,1567594440000,1567594500000,1567594560000,1567594620000,1567594680000,1567594740000,1567594800000,1567594860000,1567594920000,1567594980000,1567595040000,1567595100000,1567595160000,1567595220000,1567595280000,1567595340000,1567595400000,1567595460000,1567595520000,1567595580000,1567595640000,1567595700000,1567595760000,1567595820000,1567595880000,1567595940000,1567596000000,1567596060000,1567596120000,1567596180000,1567596240000,1567596300000,1567596360000,1567596420000,1567596480000,1567596540000,1567596600000,1567596660000,1567596720000,1567596780000,1567596840000,1567596900000,1567596960000,1567597020000,1567597080000,1567597140000,1567597200000,1567597260000,1567597320000,1567597380000,1567597440000,1567597500000,1567597560000,1567597620000,1567597680000,1567597740000,1567597800000,1567597860000,1567597920000,1567597980000,1567598040000,1567598100000,1567598160000,1567598220000,1567598280000,1567598340000,1567598400000,1567598460000,1567598520000,1567598580000,1567598640000,1567598700000,1567598760000,1567598820000,1567598880000,1567598940000,1567599000000,1567599060000,1567599120000,1567599180000,1567599240000,1567599300000,1567599360000,1567599420000,1567599480000,1567599540000,1567599600000,1567599660000,1567599720000,1567599780000,1567599840000,1567599900000,1567599960000,1567600020000,1567600080000,1567600140000,1567600200000,1567600260000,1567600320000,1567600380000,1567600440000,1567600500000,1567600560000,1567600620000,1567600680000,1567600740000,1567600800000,1567600860000,1567600920000,1567600980000,1567601040000,1567601100000,1567601160000,1567601220000,1567601280000,1567601340000,1567601400000,1567601460000,1567601520000,1567601580000,1567601640000,1567601700000,1567601760000,1567601820000,1567601880000,1567601940000,1567602000000,1567602060000,1567602120000,1567602180000,1567602240000,1567602300000,1567602360000,1567602420000,1567602480000,1567602540000,1567602600000,1567602660000,1567602720000,1567602780000,1567602840000,1567602900000,1567602960000,1567603020000,1567603080000,1567603140000,1567603200000,1567603260000,1567603320000,1567603380000,1567603440000,1567603500000,1567603560000,1567603620000,1567603680000,1567603740000,1567603800000,1567603860000,1567603920000,1567603980000,1567604040000,1567604100000,1567604160000,1567604220000,1567604280000,1567604340000,1567604400000,1567604460000,1567604520000,1567604580000,1567604640000,1567604700000,1567604760000,1567604820000,1567604880000,1567604940000,1567605000000,1567605060000,1567605120000,1567605180000,1567605240000,1567605300000,1567605360000,1567605420000,1567605480000,1567605540000,1567605600000,1567605660000,1567605720000,1567605780000,1567605840000,1567605900000,1567605960000,1567606020000,1567606080000,1567606140000,1567606200000,1567606260000,1567606320000,1567606380000,1567606440000,1567606500000,1567606560000,1567606620000,1567606680000,1567606740000,1567606800000,1567606860000,1567606920000,1567606980000,1567607040000,1567607100000,1567607160000,1567607220000,1567607280000,1567607340000,1567607400000,1567607460000,1567607520000,1567607580000,1567607640000,1567607700000,1567607760000,1567607820000,1567607880000,1567607940000,1567608000000,1567608060000,1567608120000,1567608180000,1567608240000,1567608300000,1567608360000,1567608420000,1567608480000,1567608540000,1567608600000,1567608660000,1567608720000,1567608780000,1567608840000,1567608900000,1567608960000,1567609020000,1567609080000,1567609140000,1567609200000,1567609260000,1567609320000,1567609380000,1567609440000,1567609500000,1567609560000,1567609620000,1567609680000,1567609740000,1567609800000,1567609860000,1567609920000,1567609980000,1567610040000,1567610100000,1567610160000,1567610220000,1567610280000,1567610340000,1567610400000,1567610460000,1567610520000,1567610580000,1567610640000,1567610700000,1567610760000,1567610820000,1567610880000,1567610940000,1567611000000,1567611060000,1567611120000,1567611180000,1567611240000,1567611300000,1567611360000,1567611420000,1567611480000,1567611540000,1567611600000,1567611660000,1567611720000,1567611780000,1567611840000,1567611900000,1567611960000,1567612020000,1567612080000,1567612140000,1567612200000,1567612260000,1567612320000,1567612380000,1567612440000,1567612500000,1567612560000,1567612620000,1567612680000,1567612740000,1567612800000,1567612860000,1567612920000,1567612980000,1567613040000,1567613100000,1567613160000,1567613220000,1567613280000,1567613340000,1567613400000,1567613460000,1567613520000,1567613580000,1567613640000,1567613700000,1567613760000,1567613820000,1567613880000,1567613940000,1567614000000,1567614060000,1567614120000,1567614180000,1567614240000,1567614300000,1567614360000,1567614420000,1567614480000,1567614540000,1567614600000,1567614660000,1567614720000,1567614780000,1567614840000,1567614900000,1567614960000,1567615020000,1567615080000,1567615140000,1567615200000,1567615260000,1567615320000,1567615380000,1567615440000,1567615500000,1567615560000,1567615620000,1567615680000,1567615740000,1567615800000,1567615860000,1567615920000,1567615980000,1567616040000,1567616100000,1567616160000,1567616220000,1567616280000,1567616340000,1567616400000,1567616460000,1567616520000,1567616580000,1567616640000,1567616700000,1567616760000,1567616820000,1567616880000,1567616940000,1567617000000,1567617060000,1567617120000,1567617180000,1567617240000,1567617300000,1567617360000,1567617420000,1567617480000,1567617540000,1567617600000,1567617660000,1567617720000,1567617780000,1567617840000,1567617900000,1567617960000,1567618020000,1567618080000,1567618140000,1567618200000,1567618260000,1567618320000,1567618380000,1567618440000,1567618500000,1567618560000,1567618620000,1567618680000,1567618740000,1567618800000,1567618860000,1567618920000,1567618980000,1567619040000,1567619100000,1567619160000,1567619220000,1567619280000,1567619340000,1567619400000,1567619460000,1567619520000,1567619580000,1567619640000,1567619700000,1567619760000,1567619820000,1567619880000,1567619940000,1567620000000,1567620060000,1567620120000,1567620180000,1567620240000,1567620300000,1567620360000,1567620420000,1567620480000,1567620540000,1567620600000,1567620660000,1567620720000,1567620780000,1567620840000,1567620900000,1567620960000,1567621020000,1567621080000,1567621140000,1567621200000,1567621260000,1567621320000,1567621380000,1567621440000,1567621500000,1567621560000,1567621620000,1567621680000,1567621740000,1567621800000,1567621860000,1567621920000,1567621980000,1567622040000,1567622100000,1567622160000,1567622220000,1567622280000,1567622340000,1567622400000,1567622460000,1567622520000,1567622580000,1567622640000,1567622700000,1567622760000,1567622820000,1567622880000,1567622940000,1567623000000,1567623060000,1567623120000,1567623180000,1567623240000,1567623300000,1567623360000,1567623420000,1567623480000,1567623540000,1567623600000,1567623660000,1567623720000,1567623780000,1567623840000,1567623900000,1567623960000,1567624020000,1567624080000,1567624140000,1567624200000,1567624260000,1567624320000,1567624380000,1567624440000,1567624500000,1567624560000,1567624620000,1567624680000,1567624740000,1567624800000,1567624860000,1567624920000,1567624980000,1567625040000,1567625100000,1567625160000,1567625220000,1567625280000,1567625340000,1567625400000,1567625460000,1567625520000,1567625580000,1567625640000,1567625700000,1567625760000,1567625820000,1567625880000,1567625940000,1567626000000,1567626060000,1567626120000,1567626180000,1567626240000,1567626300000,1567626360000,1567626420000,1567626480000,1567626540000,1567626600000,1567626660000,1567626720000,1567626780000,1567626840000,1567626900000,1567626960000,1567627020000,1567627080000,1567627140000,1567627200000,1567627260000,1567627320000,1567627380000,1567627440000,1567627500000,1567627560000,1567627620000,1567627680000,1567627740000,1567627800000,1567627860000,1567627920000,1567627980000,1567628040000,1567628100000,1567628160000,1567628220000,1567628280000,1567628340000,1567628400000,1567628460000,1567628520000,1567628580000,1567628640000,1567628700000,1567628760000,1567628820000,1567628880000,1567628940000,1567629000000,1567629060000,1567629120000,1567629180000,1567629240000,1567629300000,1567629360000,1567629420000,1567629480000,1567629540000,1567629600000,1567629660000,1567629720000,1567629780000,1567629840000,1567629900000,1567629960000,1567630020000,1567630080000,1567630140000,1567630200000,1567630260000,1567630320000,1567630380000,1567630440000,1567630500000,1567630560000,1567630620000,1567630680000,1567630740000,1567630800000,1567630860000,1567630920000,1567630980000,1567631040000,1567631100000,1567631160000,1567631220000,1567631280000,1567631340000,1567631400000,1567631460000,1567631520000,1567631580000,1567631640000,1567631700000,1567631760000,1567631820000,1567631880000,1567631940000,1567632000000,1567632060000,1567632120000,1567632180000,1567632240000,1567632300000,1567632360000,1567632420000,1567632480000,1567632540000,1567632600000,1567632660000,1567632720000,1567632780000,1567632840000,1567632900000,1567632960000,1567633020000,1567633080000,1567633140000,1567633200000,1567633260000,1567633320000,1567633380000,1567633440000,1567633500000,1567633560000,1567633620000,1567633680000,1567633740000,1567633800000,1567633860000,1567633920000,1567633980000,1567634040000,1567634100000,1567634160000,1567634220000,1567634280000,1567634340000,1567634400000,1567634460000,1567634520000,1567634580000,1567634640000,1567634700000,1567634760000,1567634820000,1567634880000,1567634940000,1567635000000,1567635060000,1567635120000,1567635180000,1567635240000,1567635300000,1567635360000,1567635420000,1567635480000,1567635540000,1567635600000,1567635660000,1567635720000,1567635780000,1567635840000,1567635900000,1567635960000,1567636020000,1567636080000,1567636140000,1567636200000,1567636260000,1567636320000,1567636380000,1567636440000,1567636500000,1567636560000,1567636620000,1567636680000,1567636740000,1567636800000,1567636860000,1567636920000,1567636980000,1567637040000,1567637100000,1567637160000,1567637220000,1567637280000,1567637340000,1567637400000,1567637460000,1567637520000,1567637580000,1567637640000,1567637700000,1567637760000,1567637820000,1567637880000,1567637940000,1567638000000,1567638060000,1567638120000,1567638180000,1567638240000,1567638300000,1567638360000,1567638420000,1567638480000,1567638540000,1567638600000,1567638660000,1567638720000,1567638780000,1567638840000,1567638900000,1567638960000,1567639020000,1567639080000,1567639140000,1567639200000,1567639260000,1567639320000,1567639380000,1567639440000,1567639500000,1567639560000,1567639620000,1567639680000,1567639740000,1567639800000,1567639860000,1567639920000,1567639980000,1567640040000,1567640100000,1567640160000,1567640220000,1567640280000,1567640340000,1567640400000,1567640460000,1567640520000,1567640580000,1567640640000,1567640700000,1567640760000,1567640820000,1567640880000,1567640940000,1567641000000,1567641060000,1567641120000,1567641180000,1567641240000,1567641300000,1567641360000,1567641420000,1567641480000,1567641540000,1567641600000,1567641660000,1567641720000,1567641780000,1567641840000,1567641900000,1567641960000,1567642020000,1567642080000,1567642140000,1567642200000,1567642260000,1567642320000,1567642380000,1567642440000,1567642500000,1567642560000,1567642620000,1567642680000,1567642740000,1567642800000,1567642860000,1567642920000,1567642980000,1567643040000,1567643100000,1567643160000,1567643220000,1567643280000,1567643340000,1567643400000,1567643460000,1567643520000,1567643580000,1567643640000,1567643700000,1567643760000,1567643820000,1567643880000,1567643940000,1567644000000,1567644060000,1567644120000,1567644180000,1567644240000,1567644300000,1567644360000,1567644420000,1567644480000,1567644540000,1567644600000,1567644660000,1567644720000,1567644780000,1567644840000,1567644900000,1567644960000,1567645020000,1567645080000,1567645140000,1567645200000,1567645260000,1567645320000,1567645380000,1567645440000,1567645500000,1567645560000,1567645620000,1567645680000,1567645740000,1567645800000,1567645860000,1567645920000,1567645980000,1567646040000,1567646100000,1567646160000,1567646220000,1567646280000,1567646340000,1567646400000,1567646460000,1567646520000,1567646580000,1567646640000,1567646700000,1567646760000,1567646820000,1567646880000,1567646940000,1567647000000,1567647060000,1567647120000,1567647180000,1567647240000,1567647300000,1567647360000,1567647420000,1567647480000,1567647540000,1567647600000,1567647660000,1567647720000,1567647780000,1567647840000,1567647900000,1567647960000,1567648020000,1567648080000,1567648140000,1567648200000,1567648260000,1567648320000,1567648380000,1567648440000,1567648500000,1567648560000,1567648620000,1567648680000,1567648740000,1567648800000,1567648860000,1567648920000,1567648980000,1567649040000,1567649100000,1567649160000,1567649220000,1567649280000,1567649340000,1567649400000,1567649460000,1567649520000,1567649580000,1567649640000,1567649700000,1567649760000,1567649820000,1567649880000,1567649940000,1567650000000,1567650060000,1567650120000,1567650180000,1567650240000,1567650300000,1567650360000,1567650420000,1567650480000,1567650540000,1567650600000,1567650660000,1567650720000,1567650780000,1567650840000,1567650900000,1567650960000,1567651020000,1567651080000,1567651140000,1567651200000,1567651260000,1567651320000,1567651380000,1567651440000,1567651500000,1567651560000,1567651620000,1567651680000,1567651740000,1567651800000,1567651860000,1567651920000,1567651980000,1567652040000,1567652100000,1567652160000,1567652220000,1567652280000,1567652340000,1567652400000,1567652460000,1567652520000,1567652580000,1567652640000,1567652700000,1567652760000,1567652820000,1567652880000,1567652940000,1567653000000,1567653060000,1567653120000,1567653180000,1567653240000,1567653300000,1567653360000,1567653420000,1567653480000,1567653540000,1567653600000,1567653660000,1567653720000,1567653780000,1567653840000,1567653900000,1567653960000,1567654020000,1567654080000,1567654140000,1567654200000,1567654260000,1567654320000,1567654380000,1567654440000,1567654500000,1567654560000,1567654620000,1567654680000,1567654740000,1567654800000,1567654860000,1567654920000,1567654980000,1567655040000,1567655100000,1567655160000,1567655220000,1567655280000,1567655340000,1567655400000,1567655460000,1567655520000,1567655580000,1567655640000,1567655700000,1567655760000,1567655820000,1567655880000,1567655940000,1567656000000,1567656060000,1567656120000,1567656180000,1567656240000,1567656300000,1567656360000,1567656420000,1567656480000,1567656540000,1567656600000,1567656660000,1567656720000,1567656780000,1567656840000,1567656900000,1567656960000,1567657020000,1567657080000,1567657140000,1567657200000,1567657260000,1567657320000,1567657380000,1567657440000,1567657500000,1567657560000,1567657620000,1567657680000,1567657740000,1567657800000,1567657860000,1567657920000,1567657980000,1567658040000,1567658100000,1567658160000,1567658220000,1567658280000,1567658340000,1567658400000,1567658460000,1567658520000,1567658580000,1567658640000,1567658700000,1567658760000,1567658820000,1567658880000,1567658940000,1567659000000,1567659060000,1567659120000,1567659180000,1567659240000,1567659300000,1567659360000,1567659420000,1567659480000,1567659540000,1567659600000,1567659660000,1567659720000,1567659780000,1567659840000,1567659900000,1567659960000,1567660020000,1567660080000,1567660140000,1567660200000,1567660260000,1567660320000,1567660380000,1567660440000,1567660500000,1567660560000,1567660620000,1567660680000,1567660740000,1567660800000,1567660860000,1567660920000,1567660980000,1567661040000,1567661100000,1567661160000,1567661220000,1567661280000,1567661340000,1567661400000,1567661460000,1567661520000,1567661580000,1567661640000,1567661700000,1567661760000,1567661820000,1567661880000,1567661940000,1567662000000,1567662060000,1567662120000,1567662180000,1567662240000,1567662300000,1567662360000,1567662420000,1567662480000,1567662540000,1567662600000,1567662660000,1567662720000,1567662780000,1567662840000,1567662900000,1567662960000,1567663020000,1567663080000,1567663140000,1567663200000,1567663260000,1567663320000,1567663380000,1567663440000,1567663500000,1567663560000,1567663620000,1567663680000,1567663740000,1567663800000,1567663860000,1567663920000,1567663980000,1567664040000,1567664100000,1567664160000,1567664220000,1567664280000,1567664340000,1567664400000,1567664460000,1567664520000,1567664580000,1567664640000,1567664700000,1567664760000,1567664820000,1567664880000,1567664940000,1567665000000,1567665060000,1567665120000,1567665180000,1567665240000,1567665300000,1567665360000,1567665420000,1567665480000,1567665540000,1567665600000,1567665660000,1567665720000,1567665780000,1567665840000,1567665900000,1567665960000,1567666020000,1567666080000,1567666140000,1567666200000,1567666260000,1567666320000,1567666380000,1567666440000,1567666500000,1567666560000,1567666620000,1567666680000,1567666740000,1567666800000,1567666860000,1567666920000,1567666980000,1567667040000,1567667100000,1567667160000,1567667220000,1567667280000,1567667340000,1567667400000,1567667460000,1567667520000,1567667580000,1567667640000,1567667700000,1567667760000,1567667820000,1567667880000,1567667940000,1567668000000,1567668060000,1567668120000,1567668180000,1567668240000,1567668300000,1567668360000,1567668420000,1567668480000,1567668540000,1567668600000,1567668660000,1567668720000,1567668780000,1567668840000,1567668900000,1567668960000,1567669020000,1567669080000,1567669140000,1567669200000,1567669260000,1567669320000,1567669380000,1567669440000,1567669500000,1567669560000,1567669620000,1567669680000,1567669740000,1567669800000,1567669860000,1567669920000,1567669980000,1567670040000,1567670100000,1567670160000,1567670220000,1567670280000,1567670340000,1567670400000,1567670460000,1567670520000,1567670580000,1567670640000,1567670700000,1567670760000,1567670820000,1567670880000,1567670940000,1567671000000,1567671060000,1567671120000,1567671180000,1567671240000,1567671300000,1567671360000,1567671420000,1567671480000,1567671540000,1567671600000,1567671660000,1567671720000,1567671780000,1567671840000,1567671900000,1567671960000,1567672020000,1567672080000,1567672140000,1567672200000,1567672260000,1567672320000,1567672380000,1567672440000,1567672500000,1567672560000,1567672620000,1567672680000,1567672740000,1567672800000,1567672860000,1567672920000,1567672980000,1567673040000,1567673100000,1567673160000,1567673220000,1567673280000,1567673340000,1567673400000,1567673460000,1567673520000,1567673580000,1567673640000,1567673700000,1567673760000,1567673820000,1567673880000,1567673940000,1567674000000,1567674060000,1567674120000,1567674180000,1567674240000,1567674300000,1567674360000,1567674420000,1567674480000,1567674540000,1567674600000,1567674660000,1567674720000,1567674780000,1567674840000,1567674900000,1567674960000,1567675020000,1567675080000,1567675140000,1567675200000,1567675260000,1567675320000,1567675380000,1567675440000,1567675500000,1567675560000,1567675620000,1567675680000,1567675740000,1567675800000,1567675860000,1567675920000,1567675980000,1567676040000,1567676100000,1567676160000,1567676220000,1567676280000,1567676340000,1567676400000,1567676460000,1567676520000,1567676580000,1567676640000,1567676700000,1567676760000,1567676820000,1567676880000,1567676940000,1567677000000,1567677060000,1567677120000,1567677180000,1567677240000,1567677300000,1567677360000,1567677420000,1567677480000,1567677540000,1567677600000,1567677660000,1567677720000,1567677780000,1567677840000,1567677900000,1567677960000,1567678020000,1567678080000,1567678140000,1567678200000,1567678260000,1567678320000,1567678380000,1567678440000,1567678500000,1567678560000,1567678620000,1567678680000,1567678740000,1567678800000,1567678860000,1567678920000,1567678980000,1567679040000,1567679100000,1567679160000,1567679220000,1567679280000,1567679340000,1567679400000,1567679460000,1567679520000,1567679580000,1567679640000,1567679700000,1567679760000,1567679820000,1567679880000,1567679940000,1567680000000,1567680060000,1567680120000,1567680180000,1567680240000,1567680300000,1567680360000,1567680420000,1567680480000,1567680540000,1567680600000,1567680660000,1567680720000,1567680780000,1567680840000,1567680900000,1567680960000,1567681020000,1567681080000,1567681140000,1567681200000,1567681260000,1567681320000,1567681380000,1567681440000,1567681500000,1567681560000,1567681620000,1567681680000,1567681740000,1567681800000,1567681860000,1567681920000,1567681980000,1567682040000,1567682100000,1567682160000,1567682220000,1567682280000,1567682340000,1567682400000,1567682460000,1567682520000,1567682580000,1567682640000,1567682700000,1567682760000,1567682820000,1567682880000,1567682940000,1567683000000,1567683060000,1567683120000,1567683180000,1567683240000,1567683300000,1567683360000,1567683420000,1567683480000,1567683540000,1567683600000,1567683660000,1567683720000,1567683780000,1567683840000,1567683900000,1567683960000,1567684020000,1567684080000,1567684140000,1567684200000,1567684260000,1567684320000,1567684380000,1567684440000,1567684500000,1567684560000,1567684620000,1567684680000,1567684740000,1567684800000,1567684860000,1567684920000,1567684980000,1567685040000,1567685100000,1567685160000,1567685220000,1567685280000,1567685340000,1567685400000,1567685460000,1567685520000,1567685580000,1567685640000,1567685700000,1567685760000,1567685820000,1567685880000,1567685940000,1567686000000,1567686060000,1567686120000,1567686180000,1567686240000,1567686300000,1567686360000,1567686420000,1567686480000,1567686540000,1567686600000,1567686660000,1567686720000,1567686780000,1567686840000,1567686900000,1567686960000,1567687020000,1567687080000,1567687140000,1567687200000,1567687260000,1567687320000,1567687380000,1567687440000,1567687500000,1567687560000,1567687620000,1567687680000,1567687740000,1567687800000,1567687860000,1567687920000,1567687980000,1567688040000,1567688100000,1567688160000,1567688220000,1567688280000,1567688340000,1567688400000,1567688460000,1567688520000,1567688580000,1567688640000,1567688700000,1567688760000,1567688820000,1567688880000,1567688940000,1567689000000,1567689060000,1567689120000,1567689180000,1567689240000,1567689300000,1567689360000,1567689420000,1567689480000,1567689540000,1567689600000,1567689660000,1567689720000,1567689780000,1567689840000,1567689900000,1567689960000,1567690020000,1567690080000,1567690140000,1567690200000,1567690260000,1567690320000,1567690380000,1567690440000,1567690500000,1567690560000,1567690620000,1567690680000,1567690740000,1567690800000,1567690860000,1567690920000,1567690980000,1567691040000,1567691100000,1567691160000,1567691220000,1567691280000,1567691340000,1567691400000,1567691460000,1567691520000,1567691580000,1567691640000,1567691700000,1567691760000,1567691820000,1567691880000,1567691940000,1567692000000,1567692060000,1567692120000,1567692180000,1567692240000,1567692300000,1567692360000,1567692420000,1567692480000,1567692540000,1567692600000,1567692660000,1567692720000,1567692780000,1567692840000,1567692900000,1567692960000,1567693020000,1567693080000,1567693140000,1567693200000,1567693260000,1567693320000,1567693380000,1567693440000,1567693500000,1567693560000,1567693620000,1567693680000,1567693740000,1567693800000,1567693860000,1567693920000,1567693980000,1567694040000,1567694100000,1567694160000,1567694220000,1567694280000,1567694340000,1567694400000,1567694460000,1567694520000,1567694580000,1567694640000,1567694700000,1567694760000,1567694820000,1567694880000,1567694940000,1567695000000,1567695060000,1567695120000,1567695180000,1567695240000,1567695300000,1567695360000,1567695420000,1567695480000,1567695540000,1567695600000,1567695660000,1567695720000,1567695780000,1567695840000,1567695900000,1567695960000,1567696020000,1567696080000,1567696140000,1567696200000,1567696260000,1567696320000,1567696380000,1567696440000,1567696500000,1567696560000,1567696620000,1567696680000,1567696740000,1567696800000,1567696860000,1567696920000,1567696980000,1567697040000,1567697100000,1567697160000,1567697220000,1567697280000,1567697340000,1567697400000,1567697460000,1567697520000,1567697580000,1567697640000,1567697700000,1567697760000,1567697820000,1567697880000,1567697940000,1567698000000,1567698060000,1567698120000,1567698180000,1567698240000,1567698300000,1567698360000,1567698420000,1567698480000,1567698540000,1567698600000,1567698660000,1567698720000,1567698780000,1567698840000,1567698900000,1567698960000,1567699020000,1567699080000,1567699140000,1567699200000,1567699260000,1567699320000,1567699380000,1567699440000,1567699500000,1567699560000,1567699620000,1567699680000,1567699740000,1567699800000,1567699860000,1567699920000,1567699980000,1567700040000,1567700100000,1567700160000,1567700220000,1567700280000,1567700340000,1567700400000,1567700460000,1567700520000,1567700580000,1567700640000,1567700700000,1567700760000,1567700820000,1567700880000,1567700940000,1567701000000,1567701060000,1567701120000,1567701180000,1567701240000,1567701300000,1567701360000,1567701420000,1567701480000,1567701540000,1567701600000,1567701660000,1567701720000,1567701780000,1567701840000,1567701900000,1567701960000,1567702020000,1567702080000,1567702140000,1567702200000,1567702260000,1567702320000,1567702380000,1567702440000,1567702500000,1567702560000,1567702620000,1567702680000,1567702740000,1567702800000,1567702860000,1567702920000,1567702980000,1567703040000,1567703100000,1567703160000,1567703220000,1567703280000,1567703340000,1567703400000,1567703460000,1567703520000,1567703580000,1567703640000,1567703700000,1567703760000,1567703820000,1567703880000,1567703940000,1567704000000,1567704060000,1567704120000,1567704180000,1567704240000,1567704300000,1567704360000,1567704420000,1567704480000,1567704540000,1567704600000,1567704660000,1567704720000,1567704780000,1567704840000,1567704900000,1567704960000,1567705020000,1567705080000,1567705140000,1567705200000,1567705260000,1567705320000,1567705380000,1567705440000,1567705500000,1567705560000,1567705620000,1567705680000,1567705740000,1567705800000,1567705860000,1567705920000,1567705980000,1567706040000,1567706100000,1567706160000,1567706220000,1567706280000,1567706340000,1567706400000,1567706460000,1567706520000,1567706580000,1567706640000,1567706700000,1567706760000,1567706820000,1567706880000,1567706940000,1567707000000,1567707060000,1567707120000,1567707180000,1567707240000,1567707300000,1567707360000,1567707420000,1567707480000,1567707540000,1567707600000,1567707660000,1567707720000,1567707780000,1567707840000,1567707900000,1567707960000,1567708020000,1567708080000,1567708140000,1567708200000,1567708260000,1567708320000,1567708380000,1567708440000,1567708500000,1567708560000,1567708620000,1567708680000,1567708740000,1567708800000,1567708860000,1567708920000,1567708980000,1567709040000,1567709100000,1567709160000,1567709220000,1567709280000,1567709340000,1567709400000,1567709460000,1567709520000,1567709580000,1567709640000,1567709700000,1567709760000,1567709820000,1567709880000,1567709940000,1567710000000,1567710060000,1567710120000,1567710180000,1567710240000,1567710300000,1567710360000,1567710420000,1567710480000,1567710540000,1567710600000,1567710660000,1567710720000,1567710780000,1567710840000,1567710900000,1567710960000,1567711020000,1567711080000,1567711140000,1567711200000,1567711260000,1567711320000,1567711380000,1567711440000,1567711500000,1567711560000,1567711620000,1567711680000,1567711740000,1567711800000,1567711860000,1567711920000,1567711980000,1567712040000,1567712100000,1567712160000,1567712220000,1567712280000,1567712340000,1567712400000,1567712460000,1567712520000,1567712580000,1567712640000,1567712700000,1567712760000,1567712820000,1567712880000,1567712940000,1567713000000,1567713060000,1567713120000,1567713180000,1567713240000,1567713300000,1567713360000,1567713420000,1567713480000,1567713540000,1567713600000,1567713660000,1567713720000,1567713780000,1567713840000,1567713900000,1567713960000,1567714020000,1567714080000,1567714140000,1567714200000,1567714260000,1567714320000,1567714380000,1567714440000,1567714500000,1567714560000,1567714620000,1567714680000,1567714740000,1567714800000,1567714860000,1567714920000,1567714980000,1567715040000,1567715100000,1567715160000,1567715220000,1567715280000,1567715340000,1567715400000,1567715460000,1567715520000,1567715580000,1567715640000,1567715700000,1567715760000,1567715820000,1567715880000,1567715940000,1567716000000,1567716060000,1567716120000,1567716180000,1567716240000,1567716300000,1567716360000,1567716420000,1567716480000,1567716540000,1567716600000,1567716660000,1567716720000,1567716780000,1567716840000,1567716900000,1567716960000,1567717020000,1567717080000,1567717140000,1567717200000,1567717260000,1567717320000,1567717380000,1567717440000,1567717500000,1567717560000,1567717620000,1567717680000,1567717740000,1567717800000,1567717860000,1567717920000,1567717980000,1567718040000,1567718100000,1567718160000,1567718220000,1567718280000,1567718340000,1567718400000,1567718460000,1567718520000,1567718580000,1567718640000,1567718700000,1567718760000,1567718820000,1567718880000,1567718940000,1567719000000,1567719060000,1567719120000,1567719180000,1567719240000,1567719300000,1567719360000,1567719420000,1567719480000,1567719540000,1567719600000,1567719660000,1567719720000,1567719780000,1567719840000,1567719900000,1567719960000,1567720020000,1567720080000,1567720140000,1567720200000,1567720260000,1567720320000,1567720380000,1567720440000,1567720500000,1567720560000,1567720620000,1567720680000,1567720740000,1567720800000,1567720860000,1567720920000,1567720980000,1567721040000,1567721100000,1567721160000,1567721220000,1567721280000,1567721340000,1567721400000,1567721460000,1567721520000,1567721580000,1567721640000,1567721700000,1567721760000,1567721820000,1567721880000,1567721940000,1567722000000,1567722060000,1567722120000,1567722180000,1567722240000,1567722300000,1567722360000,1567722420000,1567722480000,1567722540000,1567722600000,1567722660000,1567722720000,1567722780000,1567722840000,1567722900000,1567722960000,1567723020000,1567723080000,1567723140000,1567723200000,1567723260000,1567723320000,1567723380000,1567723440000,1567723500000,1567723560000,1567723620000,1567723680000,1567723740000,1567723800000,1567723860000,1567723920000,1567723980000,1567724040000,1567724100000,1567724160000,1567724220000,1567724280000,1567724340000,1567724400000,1567724460000,1567724520000,1567724580000,1567724640000,1567724700000,1567724760000,1567724820000,1567724880000,1567724940000,1567725000000,1567725060000,1567725120000,1567725180000,1567725240000,1567725300000,1567725360000,1567725420000,1567725480000,1567725540000,1567725600000,1567725660000,1567725720000,1567725780000,1567725840000,1567725900000,1567725960000,1567726020000,1567726080000,1567726140000,1567726200000,1567726260000,1567726320000,1567726380000,1567726440000,1567726500000,1567726560000,1567726620000,1567726680000,1567726740000,1567726800000,1567726860000,1567726920000,1567726980000,1567727040000,1567727100000,1567727160000,1567727220000,1567727280000,1567727340000,1567727400000,1567727460000,1567727520000,1567727580000,1567727640000,1567727700000,1567727760000,1567727820000,1567727880000,1567727940000,1567728000000,1567728060000,1567728120000,1567728180000,1567728240000,1567728300000,1567728360000,1567728420000,1567728480000,1567728540000,1567728600000,1567728660000,1567728720000,1567728780000,1567728840000,1567728900000,1567728960000,1567729020000,1567729080000,1567729140000,1567729200000,1567729260000,1567729320000,1567729380000,1567729440000,1567729500000,1567729560000,1567729620000,1567729680000,1567729740000,1567729800000,1567729860000,1567729920000,1567729980000,1567730040000,1567730100000,1567730160000,1567730220000,1567730280000,1567730340000,1567730400000,1567730460000,1567730520000,1567730580000,1567730640000,1567730700000,1567730760000,1567730820000,1567730880000,1567730940000,1567731000000,1567731060000,1567731120000,1567731180000,1567731240000,1567731300000,1567731360000,1567731420000,1567731480000,1567731540000,1567731600000,1567731660000,1567731720000,1567731780000,1567731840000,1567731900000,1567731960000,1567732020000,1567732080000,1567732140000,1567732200000,1567732260000,1567732320000,1567732380000,1567732440000,1567732500000,1567732560000,1567732620000,1567732680000,1567732740000,1567732800000,1567732860000,1567732920000,1567732980000,1567733040000,1567733100000,1567733160000,1567733220000,1567733280000,1567733340000,1567733400000,1567733460000,1567733520000,1567733580000,1567733640000,1567733700000,1567733760000,1567733820000,1567733880000,1567733940000,1567734000000,1567734060000,1567734120000,1567734180000,1567734240000,1567734300000,1567734360000,1567734420000,1567734480000,1567734540000,1567734600000,1567734660000,1567734720000,1567734780000,1567734840000,1567734900000,1567734960000,1567735020000,1567735080000,1567735140000,1567735200000,1567735260000,1567735320000,1567735380000,1567735440000,1567735500000,1567735560000,1567735620000,1567735680000,1567735740000,1567735800000,1567735860000,1567735920000,1567735980000,1567736040000,1567736100000,1567736160000,1567736220000,1567736280000,1567736340000,1567736400000,1567736460000,1567736520000,1567736580000,1567736640000,1567736700000,1567736760000,1567736820000,1567736880000,1567736940000,1567737000000,1567737060000,1567737120000,1567737180000,1567737240000,1567737300000,1567737360000,1567737420000,1567737480000,1567737540000,1567737600000,1567737660000,1567737720000,1567737780000,1567737840000,1567737900000,1567737960000,1567738020000,1567738080000,1567738140000,1567738200000,1567738260000,1567738320000,1567738380000,1567738440000,1567738500000,1567738560000,1567738620000,1567738680000,1567738740000,1567738800000,1567738860000,1567738920000,1567738980000,1567739040000,1567739100000,1567739160000,1567739220000,1567739280000,1567739340000,1567739400000,1567739460000,1567739520000,1567739580000,1567739640000,1567739700000,1567739760000,1567739820000,1567739880000,1567739940000,1567740000000,1567740060000,1567740120000,1567740180000,1567740240000,1567740300000,1567740360000,1567740420000,1567740480000,1567740540000,1567740600000,1567740660000,1567740720000,1567740780000,1567740840000,1567740900000,1567740960000,1567741020000,1567741080000,1567741140000,1567741200000,1567741260000,1567741320000,1567741380000,1567741440000,1567741500000,1567741560000,1567741620000,1567741680000,1567741740000,1567741800000,1567741860000,1567741920000,1567741980000,1567742040000,1567742100000,1567742160000,1567742220000,1567742280000,1567742340000,1567742400000,1567742460000,1567742520000,1567742580000,1567742640000,1567742700000,1567742760000,1567742820000,1567742880000,1567742940000,1567743000000,1567743060000,1567743120000,1567743180000,1567743240000,1567743300000,1567743360000,1567743420000,1567743480000,1567743540000,1567743600000,1567743660000,1567743720000,1567743780000,1567743840000,1567743900000,1567743960000,1567744020000,1567744080000,1567744140000,1567744200000,1567744260000,1567744320000,1567744380000,1567744440000,1567744500000,1567744560000,1567744620000,1567744680000,1567744740000,1567744800000,1567744860000,1567744920000,1567744980000,1567745040000,1567745100000,1567745160000,1567745220000,1567745280000,1567745340000,1567745400000,1567745460000,1567745520000,1567745580000,1567745640000,1567745700000,1567745760000,1567745820000,1567745880000,1567745940000,1567746000000,1567746060000,1567746120000,1567746180000,1567746240000,1567746300000,1567746360000,1567746420000,1567746480000,1567746540000,1567746600000,1567746660000,1567746720000,1567746780000,1567746840000,1567746900000,1567746960000,1567747020000,1567747080000,1567747140000,1567747200000,1567747260000,1567747320000,1567747380000,1567747440000,1567747500000,1567747560000,1567747620000,1567747680000,1567747740000,1567747800000,1567747860000,1567747920000,1567747980000,1567748040000,1567748100000,1567748160000,1567748220000,1567748280000,1567748340000,1567748400000,1567748460000,1567748520000,1567748580000,1567748640000,1567748700000,1567748760000,1567748820000,1567748880000,1567748940000,1567749000000,1567749060000,1567749120000,1567749180000,1567749240000,1567749300000,1567749360000,1567749420000,1567749480000,1567749540000,1567749600000,1567749660000,1567749720000,1567749780000,1567749840000,1567749900000,1567749960000,1567750020000,1567750080000,1567750140000,1567750200000,1567750260000,1567750320000,1567750380000,1567750440000,1567750500000,1567750560000,1567750620000,1567750680000,1567750740000,1567750800000,1567750860000,1567750920000,1567750980000,1567751040000,1567751100000,1567751160000,1567751220000,1567751280000,1567751340000,1567751400000,1567751460000,1567751520000,1567751580000,1567751640000,1567751700000,1567751760000,1567751820000,1567751880000,1567751940000,1567752000000,1567752060000,1567752120000,1567752180000,1567752240000,1567752300000,1567752360000,1567752420000,1567752480000,1567752540000,1567752600000,1567752660000,1567752720000,1567752780000,1567752840000,1567752900000,1567752960000,1567753020000,1567753080000,1567753140000,1567753200000,1567753260000,1567753320000,1567753380000,1567753440000,1567753500000,1567753560000,1567753620000,1567753680000,1567753740000,1567753800000,1567753860000,1567753920000,1567753980000,1567754040000,1567754100000,1567754160000,1567754220000,1567754280000,1567754340000,1567754400000,1567754460000,1567754520000,1567754580000,1567754640000,1567754700000,1567754760000,1567754820000,1567754880000,1567754940000,1567755000000,1567755060000,1567755120000,1567755180000,1567755240000,1567755300000,1567755360000,1567755420000,1567755480000,1567755540000,1567755600000,1567755660000,1567755720000,1567755780000,1567755840000,1567755900000,1567755960000,1567756020000,1567756080000,1567756140000,1567756200000,1567756260000,1567756320000,1567756380000,1567756440000,1567756500000,1567756560000,1567756620000,1567756680000,1567756740000,1567756800000,1567756860000,1567756920000,1567756980000,1567757040000,1567757100000,1567757160000,1567757220000,1567757280000,1567757340000,1567757400000,1567757460000,1567757520000,1567757580000,1567757640000,1567757700000,1567757760000,1567757820000,1567757880000,1567757940000,1567758000000,1567758060000,1567758120000,1567758180000,1567758240000,1567758300000,1567758360000,1567758420000,1567758480000,1567758540000,1567758600000,1567758660000,1567758720000,1567758780000,1567758840000,1567758900000,1567758960000,1567759020000,1567759080000,1567759140000,1567759200000,1567759260000,1567759320000,1567759380000,1567759440000,1567759500000,1567759560000,1567759620000,1567759680000,1567759740000,1567759800000,1567759860000,1567759920000,1567759980000,1567760040000,1567760100000,1567760160000,1567760220000,1567760280000,1567760340000,1567760400000,1567760460000,1567760520000,1567760580000,1567760640000,1567760700000,1567760760000,1567760820000,1567760880000,1567760940000,1567761000000,1567761060000,1567761120000,1567761180000,1567761240000,1567761300000,1567761360000,1567761420000,1567761480000,1567761540000,1567761600000,1567761660000,1567761720000,1567761780000,1567761840000,1567761900000,1567761960000,1567762020000,1567762080000,1567762140000,1567762200000,1567762260000,1567762320000,1567762380000,1567762440000,1567762500000,1567762560000,1567762620000,1567762680000,1567762740000,1567762800000,1567762860000,1567762920000,1567762980000,1567763040000,1567763100000,1567763160000,1567763220000,1567763280000,1567763340000,1567763400000,1567763460000,1567763520000,1567763580000,1567763640000,1567763700000,1567763760000,1567763820000,1567763880000,1567763940000,1567764000000,1567764060000,1567764120000,1567764180000,1567764240000,1567764300000,1567764360000,1567764420000,1567764480000,1567764540000,1567764600000,1567764660000,1567764720000,1567764780000,1567764840000,1567764900000,1567764960000,1567765020000,1567765080000,1567765140000,1567765200000,1567765260000,1567765320000,1567765380000,1567765440000,1567765500000,1567765560000,1567765620000,1567765680000,1567765740000,1567765800000,1567765860000,1567765920000,1567765980000,1567766040000,1567766100000,1567766160000,1567766220000,1567766280000,1567766340000,1567766400000,1567766460000,1567766520000,1567766580000,1567766640000,1567766700000,1567766760000,1567766820000,1567766880000,1567766940000,1567767000000,1567767060000,1567767120000,1567767180000,1567767240000,1567767300000,1567767360000,1567767420000,1567767480000,1567767540000,1567767600000,1567767660000,1567767720000,1567767780000,1567767840000,1567767900000,1567767960000,1567768020000,1567768080000,1567768140000,1567768200000,1567768260000,1567768320000,1567768380000,1567768440000,1567768500000,1567768560000,1567768620000,1567768680000,1567768740000,1567768800000,1567768860000,1567768920000,1567768980000,1567769040000,1567769100000,1567769160000,1567769220000,1567769280000,1567769340000,1567769400000,1567769460000,1567769520000,1567769580000,1567769640000,1567769700000,1567769760000,1567769820000,1567769880000,1567769940000,1567770000000,1567770060000,1567770120000,1567770180000,1567770240000,1567770300000,1567770360000,1567770420000,1567770480000,1567770540000,1567770600000,1567770660000,1567770720000,1567770780000,1567770840000,1567770900000,1567770960000,1567771020000,1567771080000,1567771140000,1567771200000,1567771260000,1567771320000,1567771380000,1567771440000,1567771500000,1567771560000,1567771620000,1567771680000,1567771740000,1567771800000,1567771860000,1567771920000,1567771980000,1567772040000,1567772100000,1567772160000,1567772220000,1567772280000,1567772340000,1567772400000,1567772460000,1567772520000,1567772580000,1567772640000,1567772700000,1567772760000,1567772820000,1567772880000,1567772940000,1567773000000,1567773060000,1567773120000,1567773180000,1567773240000,1567773300000,1567773360000,1567773420000,1567773480000,1567773540000,1567773600000,1567773660000,1567773720000,1567773780000,1567773840000,1567773900000,1567773960000,1567774020000,1567774080000,1567774140000,1567774200000,1567774260000,1567774320000,1567774380000,1567774440000,1567774500000,1567774560000,1567774620000,1567774680000,1567774740000,1567774800000,1567774860000,1567774920000,1567774980000,1567775040000,1567775100000,1567775160000,1567775220000,1567775280000,1567775340000,1567775400000,1567775460000,1567775520000,1567775580000,1567775640000,1567775700000,1567775760000,1567775820000,1567775880000,1567775940000,1567776000000,1567776060000,1567776120000,1567776180000,1567776240000,1567776300000,1567776360000,1567776420000,1567776480000,1567776540000,1567776600000,1567776660000,1567776720000,1567776780000,1567776840000,1567776900000,1567776960000,1567777020000,1567777080000,1567777140000,1567777200000,1567777260000,1567777320000,1567777380000,1567777440000,1567777500000,1567777560000,1567777620000,1567777680000,1567777740000,1567777800000,1567777860000,1567777920000,1567777980000,1567778040000,1567778100000,1567778160000,1567778220000,1567778280000,1567778340000,1567778400000,1567778460000,1567778520000,1567778580000,1567778640000,1567778700000,1567778760000,1567778820000,1567778880000,1567778940000,1567779000000,1567779060000,1567779120000,1567779180000,1567779240000,1567779300000,1567779360000,1567779420000,1567779480000,1567779540000,1567779600000,1567779660000,1567779720000,1567779780000,1567779840000,1567779900000,1567779960000,1567780020000,1567780080000,1567780140000,1567780200000,1567780260000,1567780320000,1567780380000,1567780440000,1567780500000,1567780560000,1567780620000,1567780680000,1567780740000,1567780800000,1567780860000,1567780920000,1567780980000,1567781040000,1567781100000,1567781160000,1567781220000,1567781280000,1567781340000,1567781400000,1567781460000,1567781520000,1567781580000,1567781640000,1567781700000,1567781760000,1567781820000,1567781880000,1567781940000,1567782000000,1567782060000,1567782120000,1567782180000,1567782240000,1567782300000,1567782360000,1567782420000,1567782480000,1567782540000,1567782600000,1567782660000,1567782720000,1567782780000,1567782840000,1567782900000,1567782960000,1567783020000,1567783080000,1567783140000,1567783200000,1567783260000,1567783320000,1567783380000,1567783440000,1567783500000,1567783560000,1567783620000,1567783680000,1567783740000,1567783800000,1567783860000,1567783920000,1567783980000,1567784040000,1567784100000,1567784160000,1567784220000,1567784280000,1567784340000,1567784400000,1567784460000,1567784520000,1567784580000,1567784640000,1567784700000,1567784760000,1567784820000,1567784880000,1567784940000,1567785000000,1567785060000,1567785120000,1567785180000,1567785240000,1567785300000,1567785360000,1567785420000,1567785480000,1567785540000,1567785600000,1567785660000,1567785720000,1567785780000,1567785840000,1567785900000,1567785960000,1567786020000,1567786080000,1567786140000,1567786200000,1567786260000,1567786320000,1567786380000,1567786440000,1567786500000,1567786560000,1567786620000,1567786680000,1567786740000,1567786800000,1567786860000,1567786920000,1567786980000,1567787040000,1567787100000,1567787160000,1567787220000,1567787280000,1567787340000,1567787400000,1567787460000,1567787520000,1567787580000,1567787640000,1567787700000,1567787760000,1567787820000,1567787880000,1567787940000,1567788000000,1567788060000,1567788120000,1567788180000,1567788240000,1567788300000,1567788360000,1567788420000,1567788480000,1567788540000,1567788600000,1567788660000,1567788720000,1567788780000,1567788840000,1567788900000,1567788960000,1567789020000,1567789080000,1567789140000,1567789200000,1567789260000,1567789320000,1567789380000,1567789440000,1567789500000,1567789560000,1567789620000,1567789680000,1567789740000,1567789800000,1567789860000,1567789920000,1567789980000,1567790040000,1567790100000,1567790160000,1567790220000,1567790280000,1567790340000,1567790400000,1567790460000,1567790520000,1567790580000,1567790640000,1567790700000,1567790760000,1567790820000,1567790880000,1567790940000,1567791000000,1567791060000,1567791120000,1567791180000,1567791240000,1567791300000,1567791360000,1567791420000,1567791480000,1567791540000,1567791600000,1567791660000,1567791720000,1567791780000,1567791840000,1567791900000,1567791960000,1567792020000,1567792080000,1567792140000,1567792200000,1567792260000,1567792320000,1567792380000,1567792440000,1567792500000,1567792560000,1567792620000,1567792680000,1567792740000,1567792800000,1567792860000,1567792920000,1567792980000,1567793040000,1567793100000,1567793160000,1567793220000,1567793280000,1567793340000,1567793400000,1567793460000,1567793520000,1567793580000,1567793640000,1567793700000,1567793760000,1567793820000,1567793880000,1567793940000,1567794000000,1567794060000,1567794120000,1567794180000,1567794240000,1567794300000,1567794360000,1567794420000,1567794480000,1567794540000,1567794600000,1567794660000,1567794720000,1567794780000,1567794840000,1567794900000,1567794960000,1567795020000,1567795080000,1567795140000,1567795200000,1567795260000,1567795320000,1567795380000,1567795440000,1567795500000,1567795560000,1567795620000,1567795680000,1567795740000,1567795800000,1567795860000,1567795920000,1567795980000,1567796040000,1567796100000,1567796160000,1567796220000,1567796280000,1567796340000,1567796400000,1567796460000,1567796520000,1567796580000,1567796640000,1567796700000,1567796760000,1567796820000,1567796880000,1567796940000,1567797000000,1567797060000,1567797120000,1567797180000,1567797240000,1567797300000,1567797360000,1567797420000,1567797480000,1567797540000,1567797600000,1567797660000,1567797720000,1567797780000,1567797840000,1567797900000,1567797960000,1567798020000,1567798080000,1567798140000,1567798200000,1567798260000,1567798320000,1567798380000,1567798440000,1567798500000,1567798560000,1567798620000,1567798680000,1567798740000,1567798800000,1567798860000,1567798920000,1567798980000,1567799040000,1567799100000,1567799160000,1567799220000,1567799280000,1567799340000,1567799400000,1567799460000,1567799520000,1567799580000,1567799640000,1567799700000,1567799760000,1567799820000,1567799880000,1567799940000,1567800000000,1567800060000,1567800120000,1567800180000,1567800240000,1567800300000,1567800360000,1567800420000,1567800480000,1567800540000,1567800600000,1567800660000,1567800720000,1567800780000,1567800840000,1567800900000,1567800960000,1567801020000,1567801080000,1567801140000,1567801200000,1567801260000,1567801320000,1567801380000,1567801440000,1567801500000,1567801560000,1567801620000,1567801680000,1567801740000,1567801800000,1567801860000,1567801920000,1567801980000,1567802040000,1567802100000,1567802160000,1567802220000,1567802280000,1567802340000,1567802400000,1567802460000,1567802520000,1567802580000,1567802640000,1567802700000,1567802760000,1567802820000,1567802880000,1567802940000,1567803000000,1567803060000,1567803120000,1567803180000,1567803240000,1567803300000,1567803360000,1567803420000,1567803480000,1567803540000,1567803600000,1567803660000,1567803720000,1567803780000,1567803840000,1567803900000,1567803960000,1567804020000,1567804080000,1567804140000,1567804200000,1567804260000,1567804320000,1567804380000,1567804440000,1567804500000,1567804560000,1567804620000,1567804680000,1567804740000,1567804800000,1567804860000,1567804920000,1567804980000,1567805040000,1567805100000,1567805160000,1567805220000,1567805280000,1567805340000,1567805400000,1567805460000,1567805520000,1567805580000,1567805640000,1567805700000,1567805760000,1567805820000,1567805880000,1567805940000,1567806000000,1567806060000,1567806120000,1567806180000,1567806240000,1567806300000,1567806360000,1567806420000,1567806480000,1567806540000,1567806600000,1567806660000,1567806720000,1567806780000,1567806840000,1567806900000,1567806960000,1567807020000,1567807080000,1567807140000,1567807200000,1567807260000,1567807320000,1567807380000,1567807440000,1567807500000,1567807560000,1567807620000,1567807680000,1567807740000,1567807800000,1567807860000,1567807920000,1567807980000,1567808040000,1567808100000,1567808160000,1567808220000,1567808280000,1567808340000,1567808400000,1567808460000,1567808520000,1567808580000,1567808640000,1567808700000,1567808760000,1567808820000,1567808880000,1567808940000,1567809000000,1567809060000,1567809120000,1567809180000,1567809240000,1567809300000,1567809360000,1567809420000,1567809480000,1567809540000,1567809600000,1567809660000,1567809720000,1567809780000,1567809840000,1567809900000,1567809960000,1567810020000,1567810080000,1567810140000,1567810200000,1567810260000,1567810320000,1567810380000,1567810440000,1567810500000,1567810560000,1567810620000,1567810680000,1567810740000,1567810800000,1567810860000,1567810920000,1567810980000,1567811040000,1567811100000,1567811160000,1567811220000,1567811280000,1567811340000,1567811400000,1567811460000,1567811520000,1567811580000,1567811640000,1567811700000,1567811760000,1567811820000,1567811880000,1567811940000,1567812000000,1567812060000,1567812120000,1567812180000,1567812240000,1567812300000,1567812360000,1567812420000,1567812480000,1567812540000,1567812600000,1567812660000,1567812720000,1567812780000,1567812840000,1567812900000,1567812960000,1567813020000,1567813080000,1567813140000,1567813200000,1567813260000,1567813320000,1567813380000,1567813440000,1567813500000,1567813560000,1567813620000,1567813680000,1567813740000,1567813800000,1567813860000,1567813920000,1567813980000,1567814040000,1567814100000,1567814160000,1567814220000,1567814280000,1567814340000,1567814400000,1567814460000,1567814520000,1567814580000,1567814640000,1567814700000,1567814760000,1567814820000,1567814880000,1567814940000,1567815000000,1567815060000,1567815120000,1567815180000,1567815240000,1567815300000,1567815360000,1567815420000,1567815480000,1567815540000,1567815600000,1567815660000,1567815720000,1567815780000,1567815840000,1567815900000,1567815960000,1567816020000,1567816080000,1567816140000,1567816200000,1567816260000,1567816320000,1567816380000,1567816440000,1567816500000,1567816560000,1567816620000,1567816680000,1567816740000,1567816800000,1567816860000,1567816920000,1567816980000,1567817040000,1567817100000,1567817160000,1567817220000,1567817280000,1567817340000,1567817400000,1567817460000,1567817520000,1567817580000,1567817640000,1567817700000,1567817760000,1567817820000,1567817880000,1567817940000,1567818000000,1567818060000,1567818120000,1567818180000,1567818240000,1567818300000,1567818360000,1567818420000,1567818480000,1567818540000,1567818600000,1567818660000,1567818720000,1567818780000,1567818840000,1567818900000,1567818960000,1567819020000,1567819080000,1567819140000,1567819200000,1567819260000,1567819320000,1567819380000,1567819440000,1567819500000,1567819560000,1567819620000,1567819680000,1567819740000,1567819800000,1567819860000,1567819920000,1567819980000,1567820040000,1567820100000,1567820160000,1567820220000,1567820280000,1567820340000,1567820400000,1567820460000,1567820520000,1567820580000,1567820640000,1567820700000,1567820760000,1567820820000,1567820880000,1567820940000,1567821000000,1567821060000,1567821120000,1567821180000,1567821240000,1567821300000,1567821360000,1567821420000,1567821480000,1567821540000,1567821600000,1567821660000,1567821720000,1567821780000,1567821840000,1567821900000,1567821960000,1567822020000,1567822080000,1567822140000,1567822200000,1567822260000,1567822320000,1567822380000,1567822440000,1567822500000,1567822560000,1567822620000,1567822680000,1567822740000,1567822800000,1567822860000,1567822920000,1567822980000,1567823040000,1567823100000,1567823160000,1567823220000,1567823280000,1567823340000,1567823400000,1567823460000,1567823520000,1567823580000,1567823640000,1567823700000,1567823760000,1567823820000,1567823880000,1567823940000,1567824000000,1567824060000,1567824120000,1567824180000,1567824240000,1567824300000,1567824360000,1567824420000,1567824480000,1567824540000,1567824600000,1567824660000,1567824720000,1567824780000,1567824840000,1567824900000,1567824960000,1567825020000,1567825080000,1567825140000,1567825200000,1567825260000,1567825320000,1567825380000,1567825440000,1567825500000,1567825560000,1567825620000,1567825680000,1567825740000,1567825800000,1567825860000,1567825920000,1567825980000,1567826040000,1567826100000,1567826160000,1567826220000,1567826280000,1567826340000,1567826400000,1567826460000,1567826520000,1567826580000,1567826640000,1567826700000,1567826760000,1567826820000,1567826880000,1567826940000,1567827000000,1567827060000,1567827120000,1567827180000,1567827240000,1567827300000,1567827360000,1567827420000,1567827480000,1567827540000,1567827600000,1567827660000,1567827720000,1567827780000,1567827840000,1567827900000,1567827960000,1567828020000,1567828080000,1567828140000,1567828200000,1567828260000,1567828320000,1567828380000,1567828440000,1567828500000,1567828560000,1567828620000,1567828680000,1567828740000,1567828800000,1567828860000,1567828920000,1567828980000,1567829040000,1567829100000,1567829160000,1567829220000,1567829280000,1567829340000,1567829400000,1567829460000,1567829520000,1567829580000,1567829640000,1567829700000,1567829760000,1567829820000,1567829880000,1567829940000,1567830000000,1567830060000,1567830120000,1567830180000,1567830240000,1567830300000,1567830360000,1567830420000,1567830480000,1567830540000,1567830600000,1567830660000,1567830720000,1567830780000,1567830840000,1567830900000,1567830960000,1567831020000,1567831080000,1567831140000,1567831200000,1567831260000,1567831320000,1567831380000,1567831440000,1567831500000,1567831560000,1567831620000,1567831680000,1567831740000,1567831800000,1567831860000,1567831920000,1567831980000,1567832040000,1567832100000,1567832160000,1567832220000,1567832280000,1567832340000,1567832400000,1567832460000,1567832520000,1567832580000,1567832640000,1567832700000,1567832760000,1567832820000,1567832880000,1567832940000,1567833000000,1567833060000,1567833120000,1567833180000,1567833240000,1567833300000,1567833360000,1567833420000,1567833480000,1567833540000,1567833600000,1567833660000,1567833720000,1567833780000,1567833840000,1567833900000,1567833960000,1567834020000,1567834080000,1567834140000,1567834200000,1567834260000,1567834320000,1567834380000,1567834440000,1567834500000,1567834560000,1567834620000,1567834680000,1567834740000,1567834800000,1567834860000,1567834920000,1567834980000,1567835040000,1567835100000,1567835160000,1567835220000,1567835280000,1567835340000,1567835400000,1567835460000,1567835520000,1567835580000,1567835640000,1567835700000,1567835760000,1567835820000,1567835880000,1567835940000,1567836000000,1567836060000,1567836120000,1567836180000,1567836240000,1567836300000,1567836360000,1567836420000,1567836480000,1567836540000,1567836600000,1567836660000,1567836720000,1567836780000,1567836840000,1567836900000,1567836960000,1567837020000,1567837080000,1567837140000,1567837200000,1567837260000,1567837320000,1567837380000,1567837440000,1567837500000,1567837560000,1567837620000,1567837680000,1567837740000,1567837800000,1567837860000,1567837920000,1567837980000,1567838040000,1567838100000,1567838160000,1567838220000,1567838280000,1567838340000,1567838400000,1567838460000,1567838520000,1567838580000,1567838640000,1567838700000,1567838760000,1567838820000,1567838880000,1567838940000,1567839000000,1567839060000,1567839120000,1567839180000,1567839240000,1567839300000,1567839360000,1567839420000,1567839480000,1567839540000,1567839600000,1567839660000,1567839720000,1567839780000,1567839840000,1567839900000,1567839960000,1567840020000,1567840080000,1567840140000,1567840200000,1567840260000,1567840320000,1567840380000,1567840440000,1567840500000,1567840560000,1567840620000,1567840680000,1567840740000,1567840800000,1567840860000,1567840920000,1567840980000,1567841040000,1567841100000,1567841160000,1567841220000,1567841280000,1567841340000,1567841400000,1567841460000,1567841520000,1567841580000,1567841640000,1567841700000,1567841760000,1567841820000,1567841880000,1567841940000,1567842000000,1567842060000,1567842120000,1567842180000,1567842240000,1567842300000,1567842360000,1567842420000,1567842480000,1567842540000,1567842600000,1567842660000,1567842720000,1567842780000,1567842840000,1567842900000,1567842960000,1567843020000,1567843080000,1567843140000,1567843200000,1567843260000,1567843320000,1567843380000,1567843440000,1567843500000,1567843560000,1567843620000,1567843680000,1567843740000,1567843800000,1567843860000,1567843920000,1567843980000,1567844040000,1567844100000,1567844160000,1567844220000,1567844280000,1567844340000,1567844400000,1567844460000,1567844520000,1567844580000,1567844640000,1567844700000,1567844760000,1567844820000,1567844880000,1567844940000,1567845000000,1567845060000,1567845120000,1567845180000,1567845240000,1567845300000,1567845360000,1567845420000,1567845480000,1567845540000,1567845600000,1567845660000,1567845720000,1567845780000,1567845840000,1567845900000,1567845960000,1567846020000,1567846080000,1567846140000,1567846200000,1567846260000,1567846320000,1567846380000,1567846440000,1567846500000,1567846560000,1567846620000,1567846680000,1567846740000,1567846800000,1567846860000,1567846920000,1567846980000,1567847040000,1567847100000,1567847160000,1567847220000,1567847280000,1567847340000,1567847400000,1567847460000,1567847520000,1567847580000,1567847640000,1567847700000,1567847760000,1567847820000,1567847880000,1567847940000,1567848000000,1567848060000,1567848120000,1567848180000,1567848240000,1567848300000,1567848360000,1567848420000,1567848480000,1567848540000,1567848600000,1567848660000,1567848720000,1567848780000,1567848840000,1567848900000,1567848960000,1567849020000,1567849080000,1567849140000,1567849200000,1567849260000,1567849320000,1567849380000,1567849440000,1567849500000,1567849560000,1567849620000,1567849680000,1567849740000,1567849800000,1567849860000,1567849920000,1567849980000,1567850040000,1567850100000,1567850160000,1567850220000,1567850280000,1567850340000,1567850400000,1567850460000,1567850520000,1567850580000,1567850640000,1567850700000,1567850760000,1567850820000,1567850880000,1567850940000,1567851000000,1567851060000,1567851120000,1567851180000,1567851240000,1567851300000,1567851360000,1567851420000,1567851480000,1567851540000,1567851600000,1567851660000,1567851720000,1567851780000,1567851840000,1567851900000,1567851960000,1567852020000,1567852080000,1567852140000,1567852200000,1567852260000,1567852320000,1567852380000,1567852440000,1567852500000,1567852560000,1567852620000,1567852680000,1567852740000,1567852800000,1567852860000,1567852920000,1567852980000,1567853040000,1567853100000,1567853160000,1567853220000,1567853280000,1567853340000,1567853400000,1567853460000,1567853520000,1567853580000,1567853640000,1567853700000,1567853760000,1567853820000,1567853880000,1567853940000,1567854000000,1567854060000,1567854120000,1567854180000,1567854240000,1567854300000,1567854360000,1567854420000,1567854480000,1567854540000,1567854600000,1567854660000,1567854720000,1567854780000,1567854840000,1567854900000,1567854960000,1567855020000,1567855080000,1567855140000,1567855200000,1567855260000,1567855320000,1567855380000,1567855440000,1567855500000,1567855560000,1567855620000,1567855680000,1567855740000,1567855800000,1567855860000,1567855920000,1567855980000,1567856040000,1567856100000,1567856160000,1567856220000,1567856280000,1567856340000,1567856400000,1567856460000,1567856520000,1567856580000,1567856640000,1567856700000,1567856760000,1567856820000,1567856880000,1567856940000,1567857000000,1567857060000,1567857120000,1567857180000,1567857240000,1567857300000,1567857360000,1567857420000,1567857480000,1567857540000,1567857600000,1567857660000,1567857720000,1567857780000,1567857840000,1567857900000,1567857960000,1567858020000,1567858080000,1567858140000,1567858200000,1567858260000,1567858320000,1567858380000,1567858440000,1567858500000,1567858560000,1567858620000,1567858680000,1567858740000,1567858800000,1567858860000,1567858920000,1567858980000,1567859040000,1567859100000,1567859160000,1567859220000,1567859280000,1567859340000,1567859400000,1567859460000,1567859520000,1567859580000,1567859640000,1567859700000,1567859760000,1567859820000,1567859880000,1567859940000,1567860000000,1567860060000,1567860120000,1567860180000,1567860240000,1567860300000,1567860360000,1567860420000,1567860480000,1567860540000,1567860600000,1567860660000,1567860720000,1567860780000,1567860840000,1567860900000,1567860960000,1567861020000,1567861080000,1567861140000,1567861200000,1567861260000,1567861320000,1567861380000,1567861440000,1567861500000,1567861560000,1567861620000,1567861680000,1567861740000,1567861800000,1567861860000,1567861920000,1567861980000,1567862040000,1567862100000,1567862160000,1567862220000,1567862280000,1567862340000,1567862400000,1567862460000,1567862520000,1567862580000,1567862640000,1567862700000,1567862760000,1567862820000,1567862880000,1567862940000,1567863000000,1567863060000,1567863120000,1567863180000,1567863240000,1567863300000,1567863360000,1567863420000,1567863480000,1567863540000,1567863600000,1567863660000,1567863720000,1567863780000,1567863840000,1567863900000,1567863960000,1567864020000,1567864080000,1567864140000,1567864200000,1567864260000,1567864320000,1567864380000,1567864440000,1567864500000,1567864560000,1567864620000,1567864680000,1567864740000,1567864800000,1567864860000,1567864920000,1567864980000,1567865040000,1567865100000,1567865160000,1567865220000,1567865280000,1567865340000,1567865400000,1567865460000,1567865520000,1567865580000,1567865640000,1567865700000,1567865760000,1567865820000,1567865880000,1567865940000,1567866000000,1567866060000,1567866120000,1567866180000,1567866240000,1567866300000,1567866360000,1567866420000,1567866480000,1567866540000,1567866600000,1567866660000,1567866720000,1567866780000,1567866840000,1567866900000,1567866960000,1567867020000,1567867080000,1567867140000,1567867200000,1567867260000,1567867320000,1567867380000,1567867440000,1567867500000,1567867560000,1567867620000,1567867680000,1567867740000,1567867800000,1567867860000,1567867920000,1567867980000,1567868040000,1567868100000,1567868160000,1567868220000,1567868280000,1567868340000,1567868400000,1567868460000,1567868520000,1567868580000,1567868640000,1567868700000,1567868760000,1567868820000,1567868880000,1567868940000,1567869000000,1567869060000,1567869120000,1567869180000,1567869240000,1567869300000,1567869360000,1567869420000,1567869480000,1567869540000,1567869600000,1567869660000,1567869720000,1567869780000,1567869840000,1567869900000,1567869960000,1567870020000,1567870080000,1567870140000,1567870200000,1567870260000,1567870320000,1567870380000,1567870440000,1567870500000,1567870560000,1567870620000,1567870680000,1567870740000,1567870800000,1567870860000,1567870920000,1567870980000,1567871040000,1567871100000,1567871160000,1567871220000,1567871280000,1567871340000,1567871400000,1567871460000,1567871520000,1567871580000,1567871640000,1567871700000,1567871760000,1567871820000,1567871880000,1567871940000,1567872000000,1567872060000,1567872120000,1567872180000,1567872240000,1567872300000,1567872360000,1567872420000,1567872480000,1567872540000,1567872600000,1567872660000,1567872720000,1567872780000,1567872840000,1567872900000,1567872960000,1567873020000,1567873080000,1567873140000,1567873200000,1567873260000,1567873320000,1567873380000,1567873440000,1567873500000,1567873560000,1567873620000,1567873680000,1567873740000,1567873800000,1567873860000,1567873920000,1567873980000,1567874040000,1567874100000,1567874160000,1567874220000,1567874280000,1567874340000,1567874400000,1567874460000,1567874520000,1567874580000,1567874640000,1567874700000,1567874760000,1567874820000,1567874880000,1567874940000,1567875000000,1567875060000,1567875120000,1567875180000,1567875240000,1567875300000,1567875360000,1567875420000,1567875480000,1567875540000,1567875600000,1567875660000,1567875720000,1567875780000,1567875840000,1567875900000,1567875960000,1567876020000,1567876080000,1567876140000,1567876200000,1567876260000,1567876320000,1567876380000,1567876440000,1567876500000,1567876560000,1567876620000,1567876680000,1567876740000,1567876800000,1567876860000,1567876920000,1567876980000,1567877040000,1567877100000,1567877160000,1567877220000,1567877280000,1567877340000,1567877400000,1567877460000,1567877520000,1567877580000,1567877640000,1567877700000,1567877760000,1567877820000,1567877880000,1567877940000,1567878000000,1567878060000,1567878120000,1567878180000,1567878240000,1567878300000,1567878360000,1567878420000,1567878480000,1567878540000,1567878600000,1567878660000,1567878720000,1567878780000,1567878840000,1567878900000,1567878960000,1567879020000,1567879080000,1567879140000,1567879200000,1567879260000,1567879320000,1567879380000,1567879440000,1567879500000,1567879560000,1567879620000,1567879680000,1567879740000,1567879800000,1567879860000,1567879920000,1567879980000,1567880040000,1567880100000,1567880160000,1567880220000,1567880280000,1567880340000,1567880400000,1567880460000,1567880520000,1567880580000,1567880640000,1567880700000,1567880760000,1567880820000,1567880880000,1567880940000,1567881000000,1567881060000,1567881120000,1567881180000,1567881240000,1567881300000,1567881360000,1567881420000,1567881480000,1567881540000,1567881600000,1567881660000,1567881720000,1567881780000,1567881840000,1567881900000,1567881960000,1567882020000,1567882080000,1567882140000,1567882200000,1567882260000,1567882320000,1567882380000,1567882440000,1567882500000,1567882560000,1567882620000,1567882680000,1567882740000,1567882800000,1567882860000,1567882920000,1567882980000,1567883040000,1567883100000,1567883160000,1567883220000,1567883280000,1567883340000,1567883400000,1567883460000,1567883520000,1567883580000,1567883640000,1567883700000,1567883760000,1567883820000,1567883880000,1567883940000,1567884000000,1567884060000,1567884120000,1567884180000,1567884240000,1567884300000,1567884360000,1567884420000,1567884480000,1567884540000,1567884600000,1567884660000,1567884720000,1567884780000,1567884840000,1567884900000,1567884960000,1567885020000,1567885080000,1567885140000,1567885200000,1567885260000,1567885320000,1567885380000,1567885440000,1567885500000,1567885560000,1567885620000,1567885680000,1567885740000,1567885800000,1567885860000,1567885920000,1567885980000,1567886040000,1567886100000,1567886160000,1567886220000,1567886280000,1567886340000,1567886400000,1567886460000,1567886520000,1567886580000,1567886640000,1567886700000,1567886760000,1567886820000,1567886880000,1567886940000,1567887000000,1567887060000,1567887120000,1567887180000,1567887240000,1567887300000,1567887360000,1567887420000,1567887480000,1567887540000,1567887600000,1567887660000,1567887720000,1567887780000,1567887840000,1567887900000,1567887960000,1567888020000,1567888080000,1567888140000,1567888200000,1567888260000,1567888320000,1567888380000,1567888440000,1567888500000,1567888560000,1567888620000,1567888680000,1567888740000,1567888800000,1567888860000,1567888920000,1567888980000,1567889040000,1567889100000,1567889160000,1567889220000,1567889280000,1567889340000,1567889400000,1567889460000,1567889520000,1567889580000,1567889640000,1567889700000,1567889760000,1567889820000,1567889880000,1567889940000,1567890000000,1567890060000,1567890120000,1567890180000,1567890240000,1567890300000,1567890360000,1567890420000,1567890480000,1567890540000,1567890600000,1567890660000,1567890720000,1567890780000,1567890840000,1567890900000,1567890960000,1567891020000,1567891080000,1567891140000,1567891200000,1567891260000,1567891320000,1567891380000,1567891440000,1567891500000,1567891560000,1567891620000,1567891680000,1567891740000,1567891800000,1567891860000,1567891920000,1567891980000,1567892040000,1567892100000,1567892160000,1567892220000,1567892280000,1567892340000,1567892400000,1567892460000,1567892520000,1567892580000,1567892640000,1567892700000,1567892760000,1567892820000,1567892880000,1567892940000,1567893000000,1567893060000,1567893120000,1567893180000,1567893240000,1567893300000,1567893360000,1567893420000,1567893480000,1567893540000,1567893600000,1567893660000,1567893720000,1567893780000,1567893840000,1567893900000,1567893960000,1567894020000,1567894080000,1567894140000,1567894200000,1567894260000,1567894320000,1567894380000,1567894440000,1567894500000,1567894560000,1567894620000,1567894680000,1567894740000,1567894800000,1567894860000,1567894920000,1567894980000,1567895040000,1567895100000,1567895160000,1567895220000,1567895280000,1567895340000,1567895400000,1567895460000,1567895520000,1567895580000,1567895640000,1567895700000,1567895760000,1567895820000,1567895880000,1567895940000,1567896000000,1567896060000,1567896120000,1567896180000,1567896240000,1567896300000,1567896360000,1567896420000,1567896480000,1567896540000,1567896600000,1567896660000,1567896720000,1567896780000,1567896840000,1567896900000,1567896960000,1567897020000,1567897080000,1567897140000,1567897200000,1567897260000,1567897320000,1567897380000,1567897440000,1567897500000,1567897560000,1567897620000,1567897680000,1567897740000,1567897800000,1567897860000,1567897920000,1567897980000,1567898040000,1567898100000,1567898160000,1567898220000,1567898280000,1567898340000,1567898400000,1567898460000,1567898520000,1567898580000,1567898640000,1567898700000,1567898760000,1567898820000,1567898880000,1567898940000,1567899000000,1567899060000,1567899120000,1567899180000,1567899240000,1567899300000,1567899360000,1567899420000,1567899480000,1567899540000,1567899600000,1567899660000,1567899720000,1567899780000,1567899840000,1567899900000,1567899960000,1567900020000,1567900080000,1567900140000,1567900200000,1567900260000,1567900320000,1567900380000,1567900440000,1567900500000,1567900560000,1567900620000,1567900680000,1567900740000,1567900800000,1567900860000,1567900920000,1567900980000,1567901040000,1567901100000,1567901160000,1567901220000,1567901280000,1567901340000,1567901400000,1567901460000,1567901520000,1567901580000,1567901640000,1567901700000,1567901760000,1567901820000,1567901880000,1567901940000,1567902000000,1567902060000,1567902120000,1567902180000,1567902240000,1567902300000,1567902360000,1567902420000,1567902480000,1567902540000,1567902600000,1567902660000,1567902720000,1567902780000,1567902840000,1567902900000,1567902960000,1567903020000,1567903080000,1567903140000,1567903200000,1567903260000,1567903320000,1567903380000,1567903440000,1567903500000,1567903560000,1567903620000,1567903680000,1567903740000,1567903800000,1567903860000,1567903920000,1567903980000,1567904040000,1567904100000,1567904160000,1567904220000,1567904280000,1567904340000,1567904400000,1567904460000,1567904520000,1567904580000,1567904640000,1567904700000,1567904760000,1567904820000,1567904880000,1567904940000,1567905000000,1567905060000,1567905120000,1567905180000,1567905240000,1567905300000,1567905360000,1567905420000,1567905480000,1567905540000,1567905600000,1567905660000,1567905720000,1567905780000,1567905840000,1567905900000,1567905960000,1567906020000,1567906080000,1567906140000,1567906200000,1567906260000,1567906320000,1567906380000,1567906440000,1567906500000,1567906560000,1567906620000,1567906680000,1567906740000,1567906800000,1567906860000,1567906920000,1567906980000,1567907040000,1567907100000,1567907160000,1567907220000,1567907280000,1567907340000,1567907400000,1567907460000,1567907520000,1567907580000,1567907640000,1567907700000,1567907760000,1567907820000,1567907880000,1567907940000,1567908000000,1567908060000,1567908120000,1567908180000,1567908240000,1567908300000,1567908360000,1567908420000,1567908480000,1567908540000,1567908600000,1567908660000,1567908720000,1567908780000,1567908840000,1567908900000,1567908960000,1567909020000,1567909080000,1567909140000,1567909200000,1567909260000,1567909320000,1567909380000,1567909440000,1567909500000,1567909560000,1567909620000,1567909680000,1567909740000,1567909800000,1567909860000,1567909920000,1567909980000,1567910040000,1567910100000,1567910160000,1567910220000,1567910280000,1567910340000,1567910400000,1567910460000,1567910520000,1567910580000,1567910640000,1567910700000,1567910760000,1567910820000,1567910880000,1567910940000,1567911000000,1567911060000,1567911120000,1567911180000,1567911240000,1567911300000,1567911360000,1567911420000,1567911480000,1567911540000,1567911600000,1567911660000,1567911720000,1567911780000,1567911840000,1567911900000,1567911960000,1567912020000,1567912080000,1567912140000,1567912200000,1567912260000,1567912320000,1567912380000,1567912440000,1567912500000,1567912560000,1567912620000,1567912680000,1567912740000,1567912800000,1567912860000,1567912920000,1567912980000,1567913040000,1567913100000,1567913160000,1567913220000,1567913280000,1567913340000,1567913400000,1567913460000,1567913520000,1567913580000,1567913640000,1567913700000,1567913760000,1567913820000,1567913880000,1567913940000,1567914000000,1567914060000,1567914120000,1567914180000,1567914240000,1567914300000,1567914360000,1567914420000,1567914480000,1567914540000,1567914600000,1567914660000,1567914720000,1567914780000,1567914840000,1567914900000,1567914960000,1567915020000,1567915080000,1567915140000,1567915200000,1567915260000,1567915320000,1567915380000,1567915440000,1567915500000,1567915560000,1567915620000,1567915680000,1567915740000,1567915800000,1567915860000,1567915920000,1567915980000,1567916040000,1567916100000,1567916160000,1567916220000,1567916280000,1567916340000,1567916400000,1567916460000,1567916520000,1567916580000,1567916640000,1567916700000,1567916760000,1567916820000,1567916880000,1567916940000,1567917000000,1567917060000,1567917120000,1567917180000,1567917240000,1567917300000,1567917360000,1567917420000,1567917480000,1567917540000,1567917600000,1567917660000,1567917720000,1567917780000,1567917840000,1567917900000,1567917960000,1567918020000,1567918080000,1567918140000,1567918200000,1567918260000,1567918320000,1567918380000,1567918440000,1567918500000,1567918560000,1567918620000,1567918680000,1567918740000,1567918800000,1567918860000,1567918920000,1567918980000,1567919040000,1567919100000,1567919160000,1567919220000,1567919280000,1567919340000,1567919400000,1567919460000,1567919520000,1567919580000,1567919640000,1567919700000,1567919760000,1567919820000,1567919880000,1567919940000,1567920000000,1567920060000,1567920120000,1567920180000,1567920240000,1567920300000,1567920360000,1567920420000,1567920480000,1567920540000,1567920600000,1567920660000,1567920720000,1567920780000,1567920840000,1567920900000,1567920960000,1567921020000,1567921080000,1567921140000,1567921200000,1567921260000,1567921320000,1567921380000,1567921440000,1567921500000,1567921560000,1567921620000,1567921680000,1567921740000,1567921800000,1567921860000,1567921920000,1567921980000,1567922040000,1567922100000,1567922160000,1567922220000,1567922280000,1567922340000,1567922400000,1567922460000,1567922520000,1567922580000,1567922640000,1567922700000,1567922760000,1567922820000,1567922880000,1567922940000,1567923000000,1567923060000,1567923120000,1567923180000,1567923240000,1567923300000,1567923360000,1567923420000,1567923480000,1567923540000,1567923600000,1567923660000,1567923720000,1567923780000,1567923840000,1567923900000,1567923960000,1567924020000,1567924080000,1567924140000,1567924200000,1567924260000,1567924320000,1567924380000,1567924440000,1567924500000,1567924560000,1567924620000,1567924680000,1567924740000,1567924800000,1567924860000,1567924920000,1567924980000,1567925040000,1567925100000,1567925160000,1567925220000,1567925280000,1567925340000,1567925400000,1567925460000,1567925520000,1567925580000,1567925640000,1567925700000,1567925760000,1567925820000,1567925880000,1567925940000,1567926000000,1567926060000,1567926120000,1567926180000,1567926240000,1567926300000,1567926360000,1567926420000,1567926480000,1567926540000,1567926600000,1567926660000,1567926720000,1567926780000,1567926840000,1567926900000,1567926960000,1567927020000,1567927080000,1567927140000,1567927200000,1567927260000,1567927320000,1567927380000,1567927440000,1567927500000,1567927560000,1567927620000,1567927680000,1567927740000,1567927800000,1567927860000,1567927920000,1567927980000,1567928040000,1567928100000,1567928160000,1567928220000,1567928280000,1567928340000,1567928400000,1567928460000,1567928520000,1567928580000,1567928640000,1567928700000,1567928760000,1567928820000,1567928880000,1567928940000,1567929000000,1567929060000,1567929120000,1567929180000,1567929240000,1567929300000,1567929360000,1567929420000,1567929480000,1567929540000,1567929600000,1567929660000,1567929720000,1567929780000,1567929840000,1567929900000,1567929960000,1567930020000,1567930080000,1567930140000,1567930200000,1567930260000,1567930320000,1567930380000,1567930440000,1567930500000,1567930560000,1567930620000,1567930680000,1567930740000,1567930800000,1567930860000,1567930920000,1567930980000,1567931040000,1567931100000,1567931160000,1567931220000,1567931280000,1567931340000,1567931400000,1567931460000,1567931520000,1567931580000,1567931640000,1567931700000,1567931760000,1567931820000,1567931880000,1567931940000,1567932000000,1567932060000,1567932120000,1567932180000,1567932240000,1567932300000,1567932360000,1567932420000,1567932480000,1567932540000,1567932600000,1567932660000,1567932720000,1567932780000,1567932840000,1567932900000,1567932960000,1567933020000,1567933080000,1567933140000,1567933200000,1567933260000,1567933320000,1567933380000,1567933440000,1567933500000,1567933560000,1567933620000,1567933680000,1567933740000,1567933800000,1567933860000,1567933920000,1567933980000,1567934040000,1567934100000,1567934160000,1567934220000,1567934280000,1567934340000,1567934400000,1567934460000,1567934520000,1567934580000,1567934640000,1567934700000,1567934760000,1567934820000,1567934880000,1567934940000,1567935000000,1567935060000,1567935120000,1567935180000,1567935240000,1567935300000,1567935360000,1567935420000,1567935480000,1567935540000,1567935600000,1567935660000,1567935720000,1567935780000,1567935840000,1567935900000,1567935960000,1567936020000,1567936080000,1567936140000,1567936200000,1567936260000,1567936320000,1567936380000,1567936440000,1567936500000,1567936560000,1567936620000,1567936680000,1567936740000,1567936800000,1567936860000,1567936920000,1567936980000,1567937040000,1567937100000,1567937160000,1567937220000,1567937280000,1567937340000,1567937400000,1567937460000,1567937520000,1567937580000,1567937640000,1567937700000,1567937760000,1567937820000,1567937880000,1567937940000,1567938000000,1567938060000,1567938120000,1567938180000,1567938240000,1567938300000,1567938360000,1567938420000,1567938480000,1567938540000,1567938600000,1567938660000,1567938720000,1567938780000,1567938840000,1567938900000,1567938960000,1567939020000,1567939080000,1567939140000,1567939200000,1567939260000,1567939320000,1567939380000,1567939440000,1567939500000,1567939560000,1567939620000,1567939680000,1567939740000,1567939800000,1567939860000,1567939920000,1567939980000,1567940040000,1567940100000,1567940160000,1567940220000,1567940280000,1567940340000,1567940400000,1567940460000,1567940520000,1567940580000,1567940640000,1567940700000,1567940760000,1567940820000,1567940880000,1567940940000,1567941000000,1567941060000,1567941120000,1567941180000,1567941240000,1567941300000,1567941360000,1567941420000,1567941480000,1567941540000,1567941600000,1567941660000,1567941720000,1567941780000,1567941840000,1567941900000,1567941960000,1567942020000,1567942080000,1567942140000,1567942200000,1567942260000,1567942320000,1567942380000,1567942440000,1567942500000,1567942560000,1567942620000,1567942680000,1567942740000,1567942800000,1567942860000,1567942920000,1567942980000,1567943040000,1567943100000,1567943160000,1567943220000,1567943280000,1567943340000,1567943400000,1567943460000,1567943520000,1567943580000,1567943640000,1567943700000,1567943760000,1567943820000,1567943880000,1567943940000,1567944000000,1567944060000,1567944120000,1567944180000,1567944240000,1567944300000,1567944360000,1567944420000,1567944480000,1567944540000,1567944600000,1567944660000,1567944720000,1567944780000,1567944840000,1567944900000,1567944960000,1567945020000,1567945080000,1567945140000,1567945200000,1567945260000,1567945320000,1567945380000,1567945440000,1567945500000,1567945560000,1567945620000,1567945680000,1567945740000,1567945800000,1567945860000,1567945920000,1567945980000,1567946040000,1567946100000,1567946160000,1567946220000,1567946280000,1567946340000,1567946400000,1567946460000,1567946520000,1567946580000,1567946640000,1567946700000,1567946760000,1567946820000,1567946880000,1567946940000,1567947000000,1567947060000,1567947120000,1567947180000,1567947240000,1567947300000,1567947360000,1567947420000,1567947480000,1567947540000,1567947600000,1567947660000,1567947720000,1567947780000,1567947840000,1567947900000,1567947960000,1567948020000,1567948080000,1567948140000,1567948200000,1567948260000,1567948320000,1567948380000,1567948440000,1567948500000,1567948560000,1567948620000,1567948680000,1567948740000,1567948800000,1567948860000,1567948920000,1567948980000,1567949040000,1567949100000,1567949160000,1567949220000,1567949280000,1567949340000,1567949400000,1567949460000,1567949520000,1567949580000,1567949640000,1567949700000,1567949760000,1567949820000,1567949880000,1567949940000,1567950000000,1567950060000,1567950120000,1567950180000,1567950240000,1567950300000,1567950360000,1567950420000,1567950480000,1567950540000,1567950600000,1567950660000,1567950720000,1567950780000,1567950840000,1567950900000,1567950960000,1567951020000,1567951080000,1567951140000,1567951200000,1567951260000,1567951320000,1567951380000,1567951440000,1567951500000,1567951560000,1567951620000,1567951680000,1567951740000,1567951800000,1567951860000,1567951920000,1567951980000,1567952040000,1567952100000,1567952160000,1567952220000,1567952280000,1567952340000,1567952400000,1567952460000,1567952520000,1567952580000,1567952640000,1567952700000,1567952760000,1567952820000,1567952880000,1567952940000,1567953000000,1567953060000,1567953120000,1567953180000,1567953240000,1567953300000,1567953360000,1567953420000,1567953480000,1567953540000,1567953600000,1567953660000,1567953720000,1567953780000,1567953840000,1567953900000,1567953960000,1567954020000,1567954080000,1567954140000,1567954200000,1567954260000,1567954320000,1567954380000,1567954440000,1567954500000,1567954560000,1567954620000,1567954680000,1567954740000,1567954800000,1567954860000,1567954920000,1567954980000,1567955040000,1567955100000,1567955160000,1567955220000,1567955280000,1567955340000,1567955400000,1567955460000,1567955520000,1567955580000,1567955640000,1567955700000,1567955760000,1567955820000,1567955880000,1567955940000,1567956000000,1567956060000,1567956120000,1567956180000,1567956240000,1567956300000,1567956360000,1567956420000,1567956480000,1567956540000,1567956600000,1567956660000,1567956720000,1567956780000,1567956840000,1567956900000,1567956960000,1567957020000,1567957080000,1567957140000,1567957200000,1567957260000,1567957320000,1567957380000,1567957440000,1567957500000,1567957560000,1567957620000,1567957680000,1567957740000,1567957800000,1567957860000,1567957920000,1567957980000,1567958040000,1567958100000,1567958160000,1567958220000,1567958280000,1567958340000,1567958400000,1567958460000,1567958520000,1567958580000,1567958640000,1567958700000,1567958760000,1567958820000,1567958880000,1567958940000,1567959000000,1567959060000,1567959120000,1567959180000,1567959240000,1567959300000,1567959360000,1567959420000,1567959480000,1567959540000,1567959600000,1567959660000,1567959720000,1567959780000,1567959840000,1567959900000,1567959960000,1567960020000,1567960080000,1567960140000,1567960200000,1567960260000,1567960320000,1567960380000,1567960440000,1567960500000,1567960560000,1567960620000,1567960680000,1567960740000,1567960800000,1567960860000,1567960920000,1567960980000,1567961040000,1567961100000,1567961160000,1567961220000,1567961280000,1567961340000,1567961400000,1567961460000,1567961520000,1567961580000,1567961640000,1567961700000,1567961760000,1567961820000,1567961880000,1567961940000,1567962000000,1567962060000,1567962120000,1567962180000,1567962240000,1567962300000,1567962360000,1567962420000,1567962480000,1567962540000,1567962600000,1567962660000,1567962720000,1567962780000,1567962840000,1567962900000,1567962960000,1567963020000,1567963080000,1567963140000,1567963200000,1567963260000,1567963320000,1567963380000,1567963440000,1567963500000,1567963560000,1567963620000,1567963680000,1567963740000,1567963800000,1567963860000,1567963920000,1567963980000,1567964040000,1567964100000,1567964160000,1567964220000,1567964280000,1567964340000,1567964400000,1567964460000,1567964520000,1567964580000,1567964640000,1567964700000,1567964760000,1567964820000,1567964880000,1567964940000,1567965000000,1567965060000,1567965120000,1567965180000,1567965240000,1567965300000,1567965360000,1567965420000,1567965480000,1567965540000,1567965600000,1567965660000,1567965720000,1567965780000,1567965840000,1567965900000,1567965960000,1567966020000,1567966080000,1567966140000,1567966200000,1567966260000,1567966320000,1567966380000,1567966440000,1567966500000,1567966560000,1567966620000,1567966680000,1567966740000,1567966800000,1567966860000,1567966920000,1567966980000,1567967040000,1567967100000,1567967160000,1567967220000,1567967280000,1567967340000,1567967400000,1567967460000,1567967520000,1567967580000,1567967640000,1567967700000,1567967760000,1567967820000,1567967880000,1567967940000,1567968000000,1567968060000,1567968120000,1567968180000,1567968240000,1567968300000,1567968360000,1567968420000,1567968480000,1567968540000,1567968600000,1567968660000,1567968720000,1567968780000,1567968840000,1567968900000,1567968960000,1567969020000,1567969080000,1567969140000,1567969200000,1567969260000,1567969320000,1567969380000,1567969440000,1567969500000,1567969560000,1567969620000,1567969680000,1567969740000,1567969800000,1567969860000,1567969920000,1567969980000,1567970040000,1567970100000,1567970160000,1567970220000,1567970280000,1567970340000,1567970400000,1567970460000,1567970520000,1567970580000,1567970640000,1567970700000,1567970760000,1567970820000,1567970880000,1567970940000,1567971000000,1567971060000,1567971120000,1567971180000,1567971240000,1567971300000,1567971360000,1567971420000,1567971480000,1567971540000,1567971600000,1567971660000,1567971720000,1567971780000,1567971840000,1567971900000,1567971960000,1567972020000,1567972080000,1567972140000,1567972200000,1567972260000,1567972320000,1567972380000,1567972440000,1567972500000,1567972560000,1567972620000,1567972680000,1567972740000,1567972800000,1567972860000,1567972920000,1567972980000,1567973040000,1567973100000,1567973160000,1567973220000,1567973280000,1567973340000,1567973400000,1567973460000,1567973520000,1567973580000,1567973640000,1567973700000,1567973760000,1567973820000,1567973880000,1567973940000,1567974000000,1567974060000,1567974120000,1567974180000,1567974240000,1567974300000,1567974360000,1567974420000,1567974480000,1567974540000,1567974600000,1567974660000,1567974720000,1567974780000,1567974840000,1567974900000,1567974960000,1567975020000,1567975080000,1567975140000,1567975200000,1567975260000,1567975320000,1567975380000,1567975440000,1567975500000,1567975560000,1567975620000,1567975680000,1567975740000,1567975800000,1567975860000,1567975920000,1567975980000,1567976040000,1567976100000,1567976160000,1567976220000,1567976280000,1567976340000,1567976400000,1567976460000,1567976520000,1567976580000,1567976640000,1567976700000,1567976760000,1567976820000,1567976880000,1567976940000,1567977000000,1567977060000,1567977120000,1567977180000,1567977240000,1567977300000,1567977360000,1567977420000,1567977480000,1567977540000,1567977600000,1567977660000,1567977720000,1567977780000,1567977840000,1567977900000,1567977960000,1567978020000,1567978080000,1567978140000,1567978200000,1567978260000,1567978320000,1567978380000,1567978440000,1567978500000,1567978560000,1567978620000,1567978680000,1567978740000,1567978800000,1567978860000,1567978920000,1567978980000,1567979040000,1567979100000,1567979160000,1567979220000,1567979280000,1567979340000,1567979400000,1567979460000,1567979520000,1567979580000,1567979640000,1567979700000,1567979760000,1567979820000,1567979880000,1567979940000,1567980000000,1567980060000,1567980120000,1567980180000,1567980240000,1567980300000,1567980360000,1567980420000,1567980480000,1567980540000,1567980600000,1567980660000,1567980720000,1567980780000,1567980840000,1567980900000,1567980960000,1567981020000,1567981080000,1567981140000,1567981200000,1567981260000,1567981320000,1567981380000,1567981440000,1567981500000,1567981560000,1567981620000,1567981680000,1567981740000,1567981800000,1567981860000,1567981920000,1567981980000,1567982040000,1567982100000,1567982160000,1567982220000,1567982280000,1567982340000,1567982400000,1567982460000,1567982520000,1567982580000,1567982640000,1567982700000,1567982760000,1567982820000,1567982880000,1567982940000,1567983000000,1567983060000,1567983120000,1567983180000,1567983240000,1567983300000,1567983360000,1567983420000,1567983480000,1567983540000,1567983600000,1567983660000,1567983720000,1567983780000,1567983840000,1567983900000,1567983960000,1567984020000,1567984080000,1567984140000,1567984200000,1567984260000,1567984320000,1567984380000,1567984440000,1567984500000,1567984560000,1567984620000,1567984680000,1567984740000,1567984800000,1567984860000,1567984920000,1567984980000,1567985040000,1567985100000,1567985160000,1567985220000,1567985280000,1567985340000,1567985400000,1567985460000,1567985520000,1567985580000,1567985640000,1567985700000,1567985760000,1567985820000,1567985880000,1567985940000,1567986000000,1567986060000,1567986120000,1567986180000,1567986240000,1567986300000,1567986360000,1567986420000,1567986480000,1567986540000,1567986600000,1567986660000,1567986720000,1567986780000,1567986840000,1567986900000,1567986960000,1567987020000,1567987080000,1567987140000,1567987200000,1567987260000,1567987320000,1567987380000,1567987440000,1567987500000,1567987560000,1567987620000,1567987680000,1567987740000,1567987800000,1567987860000,1567987920000,1567987980000,1567988040000,1567988100000,1567988160000,1567988220000,1567988280000,1567988340000,1567988400000,1567988460000,1567988520000,1567988580000,1567988640000,1567988700000,1567988760000,1567988820000,1567988880000,1567988940000,1567989000000,1567989060000,1567989120000,1567989180000,1567989240000,1567989300000,1567989360000,1567989420000,1567989480000,1567989540000,1567989600000,1567989660000,1567989720000,1567989780000,1567989840000,1567989900000,1567989960000,1567990020000,1567990080000,1567990140000,1567990200000,1567990260000,1567990320000,1567990380000,1567990440000,1567990500000,1567990560000,1567990620000,1567990680000,1567990740000,1567990800000,1567990860000,1567990920000,1567990980000,1567991040000,1567991100000,1567991160000,1567991220000,1567991280000,1567991340000,1567991400000,1567991460000,1567991520000,1567991580000,1567991640000,1567991700000,1567991760000,1567991820000,1567991880000,1567991940000,1567992000000,1567992060000,1567992120000,1567992180000,1567992240000,1567992300000,1567992360000,1567992420000,1567992480000,1567992540000,1567992600000,1567992660000,1567992720000,1567992780000,1567992840000,1567992900000,1567992960000,1567993020000,1567993080000,1567993140000,1567993200000,1567993260000,1567993320000,1567993380000,1567993440000,1567993500000,1567993560000,1567993620000,1567993680000,1567993740000,1567993800000,1567993860000,1567993920000,1567993980000,1567994040000,1567994100000,1567994160000,1567994220000,1567994280000,1567994340000,1567994400000,1567994460000,1567994520000,1567994580000,1567994640000,1567994700000,1567994760000,1567994820000,1567994880000,1567994940000,1567995000000,1567995060000,1567995120000,1567995180000,1567995240000,1567995300000,1567995360000,1567995420000,1567995480000,1567995540000,1567995600000,1567995660000,1567995720000,1567995780000,1567995840000,1567995900000,1567995960000,1567996020000,1567996080000,1567996140000,1567996200000,1567996260000,1567996320000,1567996380000,1567996440000,1567996500000,1567996560000,1567996620000,1567996680000,1567996740000,1567996800000,1567996860000,1567996920000,1567996980000,1567997040000,1567997100000,1567997160000,1567997220000,1567997280000,1567997340000,1567997400000,1567997460000,1567997520000,1567997580000,1567997640000,1567997700000,1567997760000,1567997820000,1567997880000,1567997940000,1567998000000,1567998060000,1567998120000,1567998180000,1567998240000,1567998300000,1567998360000,1567998420000,1567998480000,1567998540000,1567998600000,1567998660000,1567998720000,1567998780000,1567998840000,1567998900000,1567998960000,1567999020000,1567999080000,1567999140000,1567999200000,1567999260000,1567999320000,1567999380000,1567999440000,1567999500000,1567999560000,1567999620000,1567999680000,1567999740000,1567999800000,1567999860000,1567999920000,1567999980000,1568000040000,1568000100000,1568000160000,1568000220000,1568000280000,1568000340000,1568000400000,1568000460000,1568000520000,1568000580000,1568000640000,1568000700000,1568000760000,1568000820000,1568000880000,1568000940000,1568001000000,1568001060000,1568001120000,1568001180000,1568001240000,1568001300000,1568001360000,1568001420000,1568001480000,1568001540000,1568001600000,1568001660000,1568001720000,1568001780000,1568001840000,1568001900000,1568001960000,1568002020000,1568002080000,1568002140000,1568002200000,1568002260000,1568002320000,1568002380000,1568002440000,1568002500000,1568002560000,1568002620000,1568002680000,1568002740000,1568002800000,1568002860000,1568002920000,1568002980000,1568003040000,1568003100000,1568003160000,1568003220000,1568003280000,1568003340000,1568003400000,1568003460000,1568003520000,1568003580000,1568003640000,1568003700000,1568003760000,1568003820000,1568003880000,1568003940000,1568004000000,1568004060000,1568004120000,1568004180000,1568004240000,1568004300000,1568004360000,1568004420000,1568004480000,1568004540000,1568004600000,1568004660000,1568004720000,1568004780000,1568004840000,1568004900000,1568004960000,1568005020000,1568005080000,1568005140000,1568005200000,1568005260000,1568005320000,1568005380000,1568005440000,1568005500000,1568005560000,1568005620000,1568005680000,1568005740000,1568005800000,1568005860000,1568005920000,1568005980000,1568006040000,1568006100000,1568006160000,1568006220000,1568006280000,1568006340000,1568006400000,1568006460000,1568006520000,1568006580000,1568006640000,1568006700000,1568006760000,1568006820000,1568006880000,1568006940000,1568007000000,1568007060000,1568007120000,1568007180000,1568007240000,1568007300000,1568007360000,1568007420000,1568007480000,1568007540000,1568007600000,1568007660000,1568007720000,1568007780000,1568007840000,1568007900000,1568007960000,1568008020000,1568008080000,1568008140000,1568008200000,1568008260000,1568008320000,1568008380000,1568008440000,1568008500000,1568008560000,1568008620000,1568008680000,1568008740000,1568008800000,1568008860000,1568008920000,1568008980000,1568009040000,1568009100000,1568009160000,1568009220000,1568009280000,1568009340000,1568009400000,1568009460000,1568009520000,1568009580000,1568009640000,1568009700000,1568009760000,1568009820000,1568009880000,1568009940000,1568010000000,1568010060000,1568010120000,1568010180000,1568010240000,1568010300000,1568010360000,1568010420000,1568010480000,1568010540000,1568010600000,1568010660000,1568010720000,1568010780000,1568010840000,1568010900000,1568010960000,1568011020000,1568011080000,1568011140000,1568011200000,1568011260000,1568011320000,1568011380000,1568011440000,1568011500000,1568011560000,1568011620000,1568011680000,1568011740000,1568011800000,1568011860000,1568011920000,1568011980000,1568012040000,1568012100000,1568012160000,1568012220000,1568012280000,1568012340000,1568012400000,1568012460000,1568012520000,1568012580000,1568012640000,1568012700000,1568012760000,1568012820000,1568012880000,1568012940000,1568013000000,1568013060000,1568013120000,1568013180000,1568013240000,1568013300000,1568013360000,1568013420000,1568013480000,1568013540000,1568013600000,1568013660000,1568013720000,1568013780000,1568013840000,1568013900000,1568013960000,1568014020000,1568014080000,1568014140000,1568014200000,1568014260000,1568014320000,1568014380000,1568014440000,1568014500000,1568014560000,1568014620000,1568014680000,1568014740000,1568014800000,1568014860000,1568014920000,1568014980000,1568015040000,1568015100000,1568015160000,1568015220000,1568015280000,1568015340000,1568015400000,1568015460000,1568015520000,1568015580000,1568015640000,1568015700000,1568015760000,1568015820000,1568015880000,1568015940000,1568016000000,1568016060000,1568016120000,1568016180000,1568016240000,1568016300000,1568016360000,1568016420000,1568016480000,1568016540000,1568016600000,1568016660000,1568016720000,1568016780000,1568016840000,1568016900000,1568016960000,1568017020000,1568017080000,1568017140000,1568017200000,1568017260000,1568017320000,1568017380000,1568017440000,1568017500000,1568017560000,1568017620000,1568017680000,1568017740000,1568017800000,1568017860000,1568017920000,1568017980000,1568018040000,1568018100000,1568018160000,1568018220000,1568018280000,1568018340000,1568018400000,1568018460000,1568018520000,1568018580000,1568018640000,1568018700000,1568018760000,1568018820000,1568018880000,1568018940000,1568019000000,1568019060000,1568019120000,1568019180000,1568019240000,1568019300000,1568019360000,1568019420000,1568019480000,1568019540000,1568019600000,1568019660000,1568019720000,1568019780000,1568019840000,1568019900000,1568019960000,1568020020000,1568020080000,1568020140000,1568020200000,1568020260000,1568020320000,1568020380000,1568020440000,1568020500000,1568020560000,1568020620000,1568020680000,1568020740000,1568020800000,1568020860000,1568020920000,1568020980000,1568021040000,1568021100000,1568021160000,1568021220000,1568021280000,1568021340000,1568021400000,1568021460000,1568021520000,1568021580000,1568021640000,1568021700000,1568021760000,1568021820000,1568021880000,1568021940000,1568022000000,1568022060000,1568022120000,1568022180000,1568022240000,1568022300000,1568022360000,1568022420000,1568022480000,1568022540000,1568022600000,1568022660000,1568022720000,1568022780000,1568022840000,1568022900000,1568022960000,1568023020000,1568023080000,1568023140000,1568023200000,1568023260000,1568023320000,1568023380000,1568023440000,1568023500000,1568023560000,1568023620000,1568023680000,1568023740000,1568023800000,1568023860000,1568023920000,1568023980000,1568024040000,1568024100000,1568024160000,1568024220000,1568024280000,1568024340000,1568024400000,1568024460000,1568024520000,1568024580000,1568024640000,1568024700000,1568024760000,1568024820000,1568024880000,1568024940000,1568025000000,1568025060000,1568025120000,1568025180000,1568025240000,1568025300000,1568025360000,1568025420000,1568025480000,1568025540000,1568025600000,1568025660000,1568025720000,1568025780000,1568025840000,1568025900000,1568025960000,1568026020000,1568026080000,1568026140000,1568026200000,1568026260000,1568026320000,1568026380000,1568026440000,1568026500000,1568026560000,1568026620000,1568026680000,1568026740000,1568026800000,1568026860000,1568026920000,1568026980000,1568027040000,1568027100000,1568027160000,1568027220000,1568027280000,1568027340000,1568027400000,1568027460000,1568027520000,1568027580000,1568027640000,1568027700000,1568027760000,1568027820000,1568027880000,1568027940000,1568028000000,1568028060000,1568028120000,1568028180000,1568028240000,1568028300000,1568028360000,1568028420000,1568028480000,1568028540000,1568028600000,1568028660000,1568028720000,1568028780000,1568028840000,1568028900000,1568028960000,1568029020000,1568029080000,1568029140000,1568029200000,1568029260000,1568029320000,1568029380000,1568029440000,1568029500000,1568029560000,1568029620000,1568029680000,1568029740000,1568029800000,1568029860000,1568029920000,1568029980000,1568030040000,1568030100000,1568030160000,1568030220000,1568030280000,1568030340000,1568030400000,1568030460000,1568030520000,1568030580000,1568030640000,1568030700000,1568030760000,1568030820000,1568030880000,1568030940000,1568031000000,1568031060000,1568031120000,1568031180000,1568031240000,1568031300000,1568031360000,1568031420000,1568031480000,1568031540000,1568031600000,1568031660000,1568031720000,1568031780000,1568031840000,1568031900000,1568031960000,1568032020000,1568032080000,1568032140000,1568032200000,1568032260000,1568032320000,1568032380000,1568032440000,1568032500000,1568032560000,1568032620000,1568032680000,1568032740000,1568032800000,1568032860000,1568032920000,1568032980000,1568033040000,1568033100000,1568033160000,1568033220000,1568033280000,1568033340000,1568033400000,1568033460000,1568033520000,1568033580000,1568033640000,1568033700000,1568033760000,1568033820000,1568033880000,1568033940000,1568034000000,1568034060000,1568034120000,1568034180000,1568034240000,1568034300000,1568034360000,1568034420000,1568034480000,1568034540000,1568034600000,1568034660000,1568034720000,1568034780000,1568034840000,1568034900000,1568034960000,1568035020000,1568035080000,1568035140000,1568035200000,1568035260000,1568035320000,1568035380000,1568035440000,1568035500000,1568035560000,1568035620000,1568035680000,1568035740000,1568035800000,1568035860000,1568035920000,1568035980000,1568036040000,1568036100000,1568036160000,1568036220000,1568036280000,1568036340000,1568036400000,1568036460000,1568036520000,1568036580000,1568036640000,1568036700000,1568036760000,1568036820000,1568036880000,1568036940000,1568037000000,1568037060000,1568037120000,1568037180000,1568037240000,1568037300000,1568037360000,1568037420000,1568037480000,1568037540000,1568037600000,1568037660000,1568037720000,1568037780000,1568037840000,1568037900000,1568037960000,1568038020000,1568038080000,1568038140000,1568038200000,1568038260000,1568038320000,1568038380000,1568038440000,1568038500000,1568038560000,1568038620000,1568038680000,1568038740000,1568038800000,1568038860000,1568038920000,1568038980000,1568039040000,1568039100000,1568039160000,1568039220000,1568039280000,1568039340000,1568039400000,1568039460000,1568039520000,1568039580000,1568039640000,1568039700000,1568039760000,1568039820000,1568039880000,1568039940000,1568040000000,1568040060000,1568040120000,1568040180000,1568040240000,1568040300000,1568040360000,1568040420000,1568040480000,1568040540000,1568040600000,1568040660000,1568040720000,1568040780000,1568040840000,1568040900000,1568040960000,1568041020000,1568041080000,1568041140000,1568041200000,1568041260000,1568041320000,1568041380000,1568041440000,1568041500000,1568041560000,1568041620000,1568041680000,1568041740000,1568041800000,1568041860000,1568041920000,1568041980000,1568042040000,1568042100000,1568042160000,1568042220000,1568042280000,1568042340000,1568042400000,1568042460000,1568042520000,1568042580000,1568042640000,1568042700000,1568042760000,1568042820000,1568042880000,1568042940000,1568043000000,1568043060000,1568043120000,1568043180000,1568043240000,1568043300000,1568043360000,1568043420000,1568043480000,1568043540000,1568043600000,1568043660000,1568043720000,1568043780000,1568043840000,1568043900000,1568043960000,1568044020000,1568044080000,1568044140000,1568044200000,1568044260000,1568044320000,1568044380000,1568044440000,1568044500000,1568044560000,1568044620000,1568044680000,1568044740000,1568044800000,1568044860000,1568044920000,1568044980000,1568045040000,1568045100000,1568045160000,1568045220000,1568045280000,1568045340000,1568045400000,1568045460000,1568045520000,1568045580000,1568045640000,1568045700000,1568045760000,1568045820000,1568045880000,1568045940000,1568046000000,1568046060000,1568046120000,1568046180000,1568046240000,1568046300000,1568046360000,1568046420000,1568046480000,1568046540000,1568046600000,1568046660000,1568046720000,1568046780000,1568046840000,1568046900000,1568046960000,1568047020000,1568047080000,1568047140000,1568047200000,1568047260000,1568047320000,1568047380000,1568047440000,1568047500000,1568047560000,1568047620000,1568047680000,1568047740000,1568047800000,1568047860000,1568047920000,1568047980000,1568048040000,1568048100000,1568048160000,1568048220000,1568048280000,1568048340000,1568048400000,1568048460000,1568048520000,1568048580000,1568048640000,1568048700000,1568048760000,1568048820000,1568048880000,1568048940000,1568049000000,1568049060000,1568049120000,1568049180000,1568049240000,1568049300000,1568049360000,1568049420000,1568049480000,1568049540000,1568049600000,1568049660000,1568049720000,1568049780000,1568049840000,1568049900000,1568049960000,1568050020000,1568050080000,1568050140000,1568050200000,1568050260000,1568050320000,1568050380000,1568050440000,1568050500000,1568050560000,1568050620000,1568050680000,1568050740000,1568050800000,1568050860000,1568050920000,1568050980000,1568051040000,1568051100000,1568051160000,1568051220000,1568051280000,1568051340000,1568051400000,1568051460000,1568051520000,1568051580000,1568051640000,1568051700000,1568051760000,1568051820000,1568051880000,1568051940000,1568052000000,1568052060000,1568052120000,1568052180000,1568052240000,1568052300000,1568052360000,1568052420000,1568052480000,1568052540000,1568052600000,1568052660000,1568052720000,1568052780000,1568052840000,1568052900000,1568052960000,1568053020000,1568053080000,1568053140000,1568053200000,1568053260000,1568053320000,1568053380000,1568053440000,1568053500000,1568053560000,1568053620000,1568053680000,1568053740000,1568053800000,1568053860000,1568053920000,1568053980000,1568054040000,1568054100000,1568054160000,1568054220000,1568054280000,1568054340000,1568054400000,1568054460000,1568054520000,1568054580000,1568054640000,1568054700000,1568054760000,1568054820000,1568054880000,1568054940000,1568055000000,1568055060000,1568055120000,1568055180000,1568055240000,1568055300000,1568055360000,1568055420000,1568055480000,1568055540000,1568055600000,1568055660000,1568055720000,1568055780000,1568055840000,1568055900000,1568055960000,1568056020000,1568056080000,1568056140000,1568056200000,1568056260000,1568056320000,1568056380000,1568056440000,1568056500000,1568056560000,1568056620000,1568056680000,1568056740000,1568056800000,1568056860000,1568056920000,1568056980000,1568057040000,1568057100000,1568057160000,1568057220000,1568057280000,1568057340000,1568057400000,1568057460000,1568057520000,1568057580000,1568057640000,1568057700000,1568057760000,1568057820000,1568057880000,1568057940000,1568058000000,1568058060000,1568058120000,1568058180000,1568058240000,1568058300000,1568058360000,1568058420000,1568058480000,1568058540000,1568058600000,1568058660000,1568058720000,1568058780000,1568058840000,1568058900000,1568058960000,1568059020000,1568059080000,1568059140000,1568059200000,1568059260000,1568059320000,1568059380000,1568059440000,1568059500000,1568059560000,1568059620000,1568059680000,1568059740000,1568059800000,1568059860000,1568059920000,1568059980000,1568060040000,1568060100000,1568060160000,1568060220000,1568060280000,1568060340000,1568060400000,1568060460000,1568060520000,1568060580000,1568060640000,1568060700000,1568060760000,1568060820000,1568060880000,1568060940000,1568061000000,1568061060000,1568061120000,1568061180000,1568061240000,1568061300000,1568061360000,1568061420000,1568061480000,1568061540000,1568061600000,1568061660000,1568061720000,1568061780000,1568061840000,1568061900000,1568061960000,1568062020000,1568062080000,1568062140000,1568062200000,1568062260000,1568062320000,1568062380000,1568062440000,1568062500000,1568062560000,1568062620000,1568062680000,1568062740000,1568062800000,1568062860000,1568062920000,1568062980000,1568063040000,1568063100000,1568063160000,1568063220000,1568063280000,1568063340000,1568063400000,1568063460000,1568063520000,1568063580000,1568063640000,1568063700000,1568063760000,1568063820000,1568063880000,1568063940000,1568064000000,1568064060000,1568064120000,1568064180000,1568064240000,1568064300000,1568064360000,1568064420000,1568064480000,1568064540000,1568064600000,1568064660000,1568064720000,1568064780000,1568064840000,1568064900000,1568064960000,1568065020000,1568065080000,1568065140000,1568065200000,1568065260000,1568065320000,1568065380000,1568065440000,1568065500000,1568065560000,1568065620000,1568065680000,1568065740000,1568065800000,1568065860000,1568065920000,1568065980000,1568066040000,1568066100000,1568066160000,1568066220000,1568066280000,1568066340000,1568066400000,1568066460000,1568066520000,1568066580000,1568066640000,1568066700000,1568066760000,1568066820000,1568066880000,1568066940000,1568067000000,1568067060000,1568067120000,1568067180000,1568067240000,1568067300000,1568067360000,1568067420000,1568067480000,1568067540000,1568067600000,1568067660000,1568067720000,1568067780000,1568067840000,1568067900000,1568067960000,1568068020000,1568068080000,1568068140000,1568068200000,1568068260000,1568068320000,1568068380000,1568068440000,1568068500000,1568068560000,1568068620000,1568068680000,1568068740000,1568068800000,1568068860000,1568068920000,1568068980000,1568069040000,1568069100000,1568069160000,1568069220000,1568069280000,1568069340000,1568069400000,1568069460000,1568069520000,1568069580000,1568069640000,1568069700000,1568069760000,1568069820000,1568069880000,1568069940000,1568070000000,1568070060000,1568070120000,1568070180000,1568070240000,1568070300000,1568070360000,1568070420000,1568070480000,1568070540000,1568070600000,1568070660000,1568070720000,1568070780000,1568070840000,1568070900000,1568070960000,1568071020000,1568071080000,1568071140000,1568071200000,1568071260000,1568071320000,1568071380000,1568071440000,1568071500000,1568071560000,1568071620000,1568071680000,1568071740000,1568071800000,1568071860000,1568071920000,1568071980000,1568072040000,1568072100000,1568072160000,1568072220000,1568072280000,1568072340000,1568072400000,1568072460000,1568072520000,1568072580000,1568072640000,1568072700000,1568072760000,1568072820000,1568072880000,1568072940000,1568073000000,1568073060000,1568073120000,1568073180000,1568073240000,1568073300000,1568073360000,1568073420000,1568073480000,1568073540000,1568073600000,1568073660000,1568073720000,1568073780000,1568073840000,1568073900000,1568073960000,1568074020000,1568074080000,1568074140000,1568074200000,1568074260000,1568074320000,1568074380000,1568074440000,1568074500000,1568074560000,1568074620000,1568074680000,1568074740000,1568074800000,1568074860000,1568074920000,1568074980000,1568075040000,1568075100000,1568075160000,1568075220000,1568075280000,1568075340000,1568075400000,1568075460000,1568075520000,1568075580000,1568075640000,1568075700000,1568075760000,1568075820000,1568075880000,1568075940000,1568076000000,1568076060000,1568076120000,1568076180000,1568076240000,1568076300000,1568076360000,1568076420000,1568076480000,1568076540000,1568076600000,1568076660000,1568076720000,1568076780000,1568076840000,1568076900000,1568076960000,1568077020000,1568077080000,1568077140000,1568077200000,1568077260000,1568077320000,1568077380000,1568077440000,1568077500000,1568077560000,1568077620000,1568077680000,1568077740000,1568077800000,1568077860000,1568077920000,1568077980000,1568078040000,1568078100000,1568078160000,1568078220000,1568078280000,1568078340000,1568078400000,1568078460000,1568078520000,1568078580000,1568078640000,1568078700000,1568078760000,1568078820000,1568078880000,1568078940000,1568079000000,1568079060000,1568079120000,1568079180000,1568079240000,1568079300000,1568079360000,1568079420000,1568079480000,1568079540000,1568079600000,1568079660000,1568079720000,1568079780000,1568079840000,1568079900000,1568079960000,1568080020000,1568080080000,1568080140000,1568080200000,1568080260000,1568080320000,1568080380000,1568080440000,1568080500000,1568080560000,1568080620000,1568080680000,1568080740000,1568080800000,1568080860000,1568080920000,1568080980000,1568081040000,1568081100000,1568081160000,1568081220000,1568081280000,1568081340000,1568081400000,1568081460000,1568081520000,1568081580000,1568081640000,1568081700000,1568081760000,1568081820000,1568081880000,1568081940000,1568082000000,1568082060000,1568082120000,1568082180000,1568082240000,1568082300000,1568082360000,1568082420000,1568082480000,1568082540000,1568082600000,1568082660000,1568082720000,1568082780000,1568082840000,1568082900000,1568082960000,1568083020000,1568083080000,1568083140000,1568083200000,1568083260000,1568083320000,1568083380000,1568083440000,1568083500000,1568083560000,1568083620000,1568083680000,1568083740000,1568083800000,1568083860000,1568083920000,1568083980000,1568084040000,1568084100000,1568084160000,1568084220000,1568084280000,1568084340000,1568084400000,1568084460000,1568084520000,1568084580000,1568084640000,1568084700000,1568084760000,1568084820000,1568084880000,1568084940000,1568085000000,1568085060000,1568085120000,1568085180000,1568085240000,1568085300000,1568085360000,1568085420000,1568085480000,1568085540000,1568085600000,1568085660000,1568085720000,1568085780000,1568085840000,1568085900000,1568085960000,1568086020000,1568086080000,1568086140000,1568086200000,1568086260000,1568086320000,1568086380000,1568086440000,1568086500000,1568086560000,1568086620000,1568086680000,1568086740000,1568086800000,1568086860000,1568086920000,1568086980000,1568087040000,1568087100000,1568087160000,1568087220000,1568087280000,1568087340000,1568087400000,1568087460000,1568087520000,1568087580000,1568087640000,1568087700000,1568087760000,1568087820000,1568087880000,1568087940000,1568088000000,1568088060000,1568088120000,1568088180000,1568088240000,1568088300000,1568088360000,1568088420000,1568088480000,1568088540000,1568088600000,1568088660000,1568088720000,1568088780000,1568088840000,1568088900000,1568088960000,1568089020000,1568089080000,1568089140000,1568089200000,1568089260000,1568089320000,1568089380000,1568089440000,1568089500000,1568089560000,1568089620000,1568089680000,1568089740000,1568089800000,1568089860000,1568089920000,1568089980000,1568090040000,1568090100000,1568090160000,1568090220000,1568090280000,1568090340000,1568090400000,1568090460000,1568090520000,1568090580000,1568090640000,1568090700000,1568090760000,1568090820000,1568090880000,1568090940000,1568091000000,1568091060000,1568091120000,1568091180000,1568091240000,1568091300000,1568091360000,1568091420000,1568091480000,1568091540000,1568091600000,1568091660000,1568091720000,1568091780000,1568091840000,1568091900000,1568091960000,1568092020000,1568092080000,1568092140000,1568092200000,1568092260000,1568092320000,1568092380000,1568092440000,1568092500000,1568092560000,1568092620000,1568092680000,1568092740000,1568092800000,1568092860000,1568092920000,1568092980000,1568093040000,1568093100000,1568093160000,1568093220000,1568093280000,1568093340000,1568093400000,1568093460000,1568093520000,1568093580000,1568093640000,1568093700000,1568093760000,1568093820000,1568093880000,1568093940000,1568094000000,1568094060000,1568094120000,1568094180000,1568094240000,1568094300000,1568094360000,1568094420000,1568094480000,1568094540000,1568094600000,1568094660000,1568094720000,1568094780000,1568094840000,1568094900000,1568094960000,1568095020000,1568095080000,1568095140000,1568095200000,1568095260000,1568095320000,1568095380000,1568095440000,1568095500000,1568095560000,1568095620000,1568095680000,1568095740000,1568095800000,1568095860000,1568095920000,1568095980000,1568096040000,1568096100000,1568096160000,1568096220000,1568096280000,1568096340000,1568096400000,1568096460000,1568096520000,1568096580000,1568096640000,1568096700000,1568096760000,1568096820000,1568096880000,1568096940000,1568097000000,1568097060000,1568097120000,1568097180000,1568097240000,1568097300000,1568097360000,1568097420000,1568097480000,1568097540000,1568097600000,1568097660000,1568097720000,1568097780000,1568097840000,1568097900000,1568097960000,1568098020000,1568098080000,1568098140000,1568098200000,1568098260000,1568098320000,1568098380000,1568098440000,1568098500000,1568098560000,1568098620000,1568098680000,1568098740000,1568098800000,1568098860000,1568098920000,1568098980000,1568099040000,1568099100000,1568099160000,1568099220000,1568099280000,1568099340000,1568099400000,1568099460000,1568099520000,1568099580000,1568099640000,1568099700000,1568099760000,1568099820000,1568099880000,1568099940000,1568100000000,1568100060000,1568100120000,1568100180000,1568100240000,1568100300000,1568100360000,1568100420000,1568100480000,1568100540000,1568100600000,1568100660000,1568100720000,1568100780000,1568100840000,1568100900000,1568100960000,1568101020000,1568101080000,1568101140000,1568101200000,1568101260000,1568101320000,1568101380000,1568101440000,1568101500000,1568101560000,1568101620000,1568101680000,1568101740000,1568101800000,1568101860000,1568101920000,1568101980000,1568102040000,1568102100000,1568102160000,1568102220000,1568102280000,1568102340000,1568102400000,1568102460000,1568102520000,1568102580000,1568102640000,1568102700000,1568102760000,1568102820000,1568102880000,1568102940000,1568103000000,1568103060000,1568103120000,1568103180000,1568103240000,1568103300000,1568103360000,1568103420000,1568103480000,1568103540000,1568103600000,1568103660000,1568103720000,1568103780000,1568103840000,1568103900000,1568103960000,1568104020000,1568104080000,1568104140000,1568104200000,1568104260000,1568104320000,1568104380000,1568104440000,1568104500000,1568104560000,1568104620000,1568104680000,1568104740000,1568104800000,1568104860000,1568104920000,1568104980000,1568105040000,1568105100000,1568105160000,1568105220000,1568105280000,1568105340000,1568105400000,1568105460000,1568105520000,1568105580000,1568105640000,1568105700000,1568105760000,1568105820000,1568105880000,1568105940000,1568106000000,1568106060000,1568106120000,1568106180000,1568106240000,1568106300000,1568106360000,1568106420000,1568106480000,1568106540000,1568106600000,1568106660000,1568106720000,1568106780000,1568106840000,1568106900000,1568106960000,1568107020000,1568107080000,1568107140000,1568107200000,1568107260000,1568107320000,1568107380000,1568107440000,1568107500000,1568107560000,1568107620000,1568107680000,1568107740000,1568107800000,1568107860000,1568107920000,1568107980000,1568108040000,1568108100000,1568108160000,1568108220000,1568108280000,1568108340000,1568108400000,1568108460000,1568108520000,1568108580000,1568108640000,1568108700000,1568108760000,1568108820000,1568108880000,1568108940000,1568109000000,1568109060000,1568109120000,1568109180000,1568109240000,1568109300000,1568109360000,1568109420000,1568109480000,1568109540000,1568109600000,1568109660000,1568109720000,1568109780000,1568109840000,1568109900000,1568109960000,1568110020000,1568110080000,1568110140000,1568110200000,1568110260000,1568110320000,1568110380000,1568110440000,1568110500000,1568110560000,1568110620000,1568110680000,1568110740000,1568110800000,1568110860000,1568110920000,1568110980000,1568111040000,1568111100000,1568111160000,1568111220000,1568111280000,1568111340000,1568111400000,1568111460000,1568111520000,1568111580000,1568111640000,1568111700000,1568111760000,1568111820000,1568111880000,1568111940000,1568112000000,1568112060000,1568112120000,1568112180000,1568112240000,1568112300000,1568112360000,1568112420000,1568112480000,1568112540000,1568112600000,1568112660000,1568112720000,1568112780000,1568112840000,1568112900000,1568112960000,1568113020000,1568113080000,1568113140000,1568113200000,1568113260000,1568113320000,1568113380000,1568113440000,1568113500000,1568113560000,1568113620000,1568113680000,1568113740000,1568113800000,1568113860000,1568113920000,1568113980000,1568114040000,1568114100000,1568114160000,1568114220000,1568114280000,1568114340000,1568114400000,1568114460000,1568114520000,1568114580000,1568114640000,1568114700000,1568114760000,1568114820000,1568114880000,1568114940000,1568115000000,1568115060000,1568115120000,1568115180000,1568115240000,1568115300000,1568115360000,1568115420000,1568115480000,1568115540000,1568115600000,1568115660000,1568115720000,1568115780000,1568115840000,1568115900000,1568115960000,1568116020000,1568116080000,1568116140000,1568116200000,1568116260000,1568116320000,1568116380000,1568116440000,1568116500000,1568116560000,1568116620000,1568116680000,1568116740000,1568116800000,1568116860000,1568116920000,1568116980000,1568117040000,1568117100000,1568117160000,1568117220000,1568117280000,1568117340000,1568117400000,1568117460000,1568117520000,1568117580000,1568117640000,1568117700000,1568117760000,1568117820000,1568117880000,1568117940000,1568118000000,1568118060000,1568118120000,1568118180000,1568118240000,1568118300000,1568118360000,1568118420000,1568118480000,1568118540000,1568118600000,1568118660000,1568118720000,1568118780000,1568118840000,1568118900000,1568118960000,1568119020000,1568119080000,1568119140000,1568119200000,1568119260000,1568119320000,1568119380000,1568119440000,1568119500000,1568119560000,1568119620000,1568119680000,1568119740000,1568119800000,1568119860000,1568119920000,1568119980000,1568120040000,1568120100000,1568120160000,1568120220000,1568120280000,1568120340000,1568120400000,1568120460000,1568120520000,1568120580000,1568120640000,1568120700000,1568120760000,1568120820000,1568120880000,1568120940000,1568121000000,1568121060000,1568121120000,1568121180000,1568121240000,1568121300000,1568121360000,1568121420000,1568121480000,1568121540000,1568121600000,1568121660000,1568121720000,1568121780000,1568121840000,1568121900000,1568121960000,1568122020000,1568122080000,1568122140000,1568122200000,1568122260000,1568122320000,1568122380000,1568122440000,1568122500000,1568122560000,1568122620000,1568122680000,1568122740000,1568122800000,1568122860000,1568122920000,1568122980000,1568123040000,1568123100000,1568123160000,1568123220000,1568123280000,1568123340000,1568123400000,1568123460000,1568123520000,1568123580000,1568123640000,1568123700000,1568123760000,1568123820000,1568123880000,1568123940000,1568124000000,1568124060000,1568124120000,1568124180000,1568124240000,1568124300000,1568124360000,1568124420000,1568124480000,1568124540000,1568124600000,1568124660000,1568124720000,1568124780000,1568124840000,1568124900000,1568124960000,1568125020000,1568125080000,1568125140000,1568125200000,1568125260000,1568125320000,1568125380000,1568125440000,1568125500000,1568125560000,1568125620000,1568125680000,1568125740000,1568125800000,1568125860000,1568125920000,1568125980000,1568126040000,1568126100000,1568126160000,1568126220000,1568126280000,1568126340000,1568126400000,1568126460000,1568126520000,1568126580000,1568126640000,1568126700000,1568126760000,1568126820000,1568126880000,1568126940000,1568127000000,1568127060000,1568127120000,1568127180000,1568127240000,1568127300000,1568127360000,1568127420000,1568127480000,1568127540000,1568127600000,1568127660000,1568127720000,1568127780000,1568127840000,1568127900000,1568127960000,1568128020000,1568128080000,1568128140000,1568128200000,1568128260000,1568128320000,1568128380000,1568128440000,1568128500000,1568128560000,1568128620000,1568128680000,1568128740000,1568128800000,1568128860000,1568128920000,1568128980000,1568129040000,1568129100000,1568129160000,1568129220000,1568129280000,1568129340000,1568129400000,1568129460000,1568129520000,1568129580000,1568129640000,1568129700000,1568129760000,1568129820000,1568129880000,1568129940000,1568130000000,1568130060000,1568130120000,1568130180000,1568130240000,1568130300000,1568130360000,1568130420000,1568130480000,1568130540000,1568130600000,1568130660000,1568130720000,1568130780000,1568130840000,1568130900000,1568130960000,1568131020000,1568131080000,1568131140000,1568131200000,1568131260000,1568131320000,1568131380000,1568131440000,1568131500000,1568131560000,1568131620000,1568131680000,1568131740000,1568131800000,1568131860000,1568131920000,1568131980000,1568132040000,1568132100000,1568132160000,1568132220000,1568132280000,1568132340000,1568132400000,1568132460000,1568132520000,1568132580000,1568132640000,1568132700000,1568132760000,1568132820000,1568132880000,1568132940000,1568133000000,1568133060000,1568133120000,1568133180000,1568133240000,1568133300000,1568133360000,1568133420000,1568133480000,1568133540000,1568133600000,1568133660000,1568133720000,1568133780000,1568133840000,1568133900000,1568133960000,1568134020000,1568134080000,1568134140000,1568134200000,1568134260000,1568134320000,1568134380000,1568134440000,1568134500000,1568134560000,1568134620000,1568134680000,1568134740000,1568134800000,1568134860000,1568134920000,1568134980000,1568135040000,1568135100000,1568135160000,1568135220000,1568135280000,1568135340000,1568135400000,1568135460000,1568135520000,1568135580000,1568135640000,1568135700000,1568135760000,1568135820000,1568135880000,1568135940000,1568136000000,1568136060000,1568136120000,1568136180000,1568136240000,1568136300000,1568136360000,1568136420000,1568136480000,1568136540000,1568136600000,1568136660000,1568136720000,1568136780000,1568136840000,1568136900000,1568136960000,1568137020000,1568137080000,1568137140000,1568137200000,1568137260000,1568137320000,1568137380000,1568137440000,1568137500000,1568137560000,1568137620000,1568137680000,1568137740000,1568137800000,1568137860000,1568137920000,1568137980000,1568138040000,1568138100000,1568138160000,1568138220000,1568138280000,1568138340000,1568138400000,1568138460000,1568138520000,1568138580000,1568138640000,1568138700000,1568138760000,1568138820000,1568138880000,1568138940000,1568139000000,1568139060000,1568139120000,1568139180000,1568139240000,1568139300000,1568139360000,1568139420000,1568139480000,1568139540000,1568139600000,1568139660000,1568139720000,1568139780000,1568139840000,1568139900000,1568139960000,1568140020000,1568140080000,1568140140000,1568140200000,1568140260000,1568140320000,1568140380000,1568140440000,1568140500000,1568140560000,1568140620000,1568140680000,1568140740000,1568140800000,1568140860000,1568140920000,1568140980000,1568141040000,1568141100000,1568141160000,1568141220000,1568141280000,1568141340000,1568141400000,1568141460000,1568141520000,1568141580000,1568141640000,1568141700000,1568141760000,1568141820000,1568141880000,1568141940000,1568142000000,1568142060000,1568142120000,1568142180000,1568142240000,1568142300000,1568142360000,1568142420000,1568142480000,1568142540000,1568142600000,1568142660000,1568142720000,1568142780000,1568142840000,1568142900000,1568142960000,1568143020000,1568143080000,1568143140000,1568143200000,1568143260000,1568143320000,1568143380000,1568143440000,1568143500000,1568143560000,1568143620000,1568143680000,1568143740000,1568143800000,1568143860000,1568143920000,1568143980000,1568144040000,1568144100000,1568144160000,1568144220000,1568144280000,1568144340000,1568144400000,1568144460000,1568144520000,1568144580000,1568144640000,1568144700000,1568144760000,1568144820000,1568144880000,1568144940000,1568145000000,1568145060000,1568145120000,1568145180000,1568145240000,1568145300000,1568145360000,1568145420000,1568145480000,1568145540000,1568145600000,1568145660000,1568145720000,1568145780000,1568145840000,1568145900000,1568145960000,1568146020000,1568146080000,1568146140000,1568146200000,1568146260000,1568146320000,1568146380000,1568146440000,1568146500000,1568146560000,1568146620000,1568146680000,1568146740000,1568146800000,1568146860000,1568146920000,1568146980000,1568147040000,1568147100000,1568147160000,1568147220000,1568147280000,1568147340000,1568147400000,1568147460000,1568147520000,1568147580000,1568147640000,1568147700000,1568147760000,1568147820000,1568147880000,1568147940000,1568148000000,1568148060000,1568148120000,1568148180000,1568148240000,1568148300000,1568148360000,1568148420000,1568148480000,1568148540000,1568148600000,1568148660000,1568148720000,1568148780000,1568148840000,1568148900000,1568148960000,1568149020000,1568149080000,1568149140000,1568149200000,1568149260000,1568149320000,1568149380000,1568149440000,1568149500000,1568149560000,1568149620000,1568149680000,1568149740000,1568149800000,1568149860000,1568149920000,1568149980000,1568150040000,1568150100000,1568150160000,1568150220000,1568150280000,1568150340000,1568150400000,1568150460000,1568150520000,1568150580000,1568150640000,1568150700000,1568150760000,1568150820000,1568150880000,1568150940000,1568151000000,1568151060000,1568151120000,1568151180000,1568151240000,1568151300000,1568151360000,1568151420000,1568151480000,1568151540000,1568151600000,1568151660000,1568151720000,1568151780000,1568151840000,1568151900000,1568151960000,1568152020000,1568152080000,1568152140000,1568152200000,1568152260000,1568152320000,1568152380000,1568152440000,1568152500000,1568152560000,1568152620000,1568152680000,1568152740000,1568152800000,1568152860000,1568152920000,1568152980000,1568153040000,1568153100000,1568153160000,1568153220000,1568153280000,1568153340000,1568153400000,1568153460000,1568153520000,1568153580000,1568153640000,1568153700000,1568153760000,1568153820000,1568153880000,1568153940000,1568154000000,1568154060000,1568154120000,1568154180000,1568154240000,1568154300000,1568154360000,1568154420000,1568154480000,1568154540000,1568154600000,1568154660000,1568154720000,1568154780000,1568154840000,1568154900000,1568154960000,1568155020000,1568155080000,1568155140000,1568155200000,1568155260000,1568155320000,1568155380000,1568155440000,1568155500000,1568155560000,1568155620000,1568155680000,1568155740000,1568155800000,1568155860000,1568155920000,1568155980000,1568156040000,1568156100000,1568156160000,1568156220000,1568156280000,1568156340000,1568156400000,1568156460000,1568156520000,1568156580000,1568156640000,1568156700000,1568156760000,1568156820000,1568156880000,1568156940000,1568157000000,1568157060000,1568157120000,1568157180000,1568157240000,1568157300000,1568157360000,1568157420000,1568157480000,1568157540000,1568157600000,1568157660000,1568157720000,1568157780000,1568157840000,1568157900000,1568157960000,1568158020000,1568158080000,1568158140000,1568158200000,1568158260000,1568158320000,1568158380000,1568158440000,1568158500000,1568158560000,1568158620000,1568158680000,1568158740000,1568158800000,1568158860000,1568158920000,1568158980000,1568159040000,1568159100000,1568159160000,1568159220000,1568159280000,1568159340000,1568159400000,1568159460000,1568159520000,1568159580000,1568159640000,1568159700000,1568159760000,1568159820000,1568159880000,1568159940000,1568160000000,1568160060000,1568160120000,1568160180000,1568160240000,1568160300000,1568160360000,1568160420000,1568160480000,1568160540000,1568160600000,1568160660000,1568160720000,1568160780000,1568160840000,1568160900000,1568160960000,1568161020000,1568161080000,1568161140000,1568161200000,1568161260000,1568161320000,1568161380000,1568161440000,1568161500000,1568161560000,1568161620000,1568161680000,1568161740000,1568161800000,1568161860000,1568161920000,1568161980000,1568162040000,1568162100000,1568162160000,1568162220000,1568162280000,1568162340000,1568162400000,1568162460000,1568162520000,1568162580000,1568162640000,1568162700000,1568162760000,1568162820000,1568162880000,1568162940000,1568163000000,1568163060000,1568163120000,1568163180000,1568163240000,1568163300000,1568163360000,1568163420000,1568163480000,1568163540000,1568163600000,1568163660000,1568163720000,1568163780000,1568163840000,1568163900000,1568163960000,1568164020000,1568164080000,1568164140000,1568164200000,1568164260000,1568164320000,1568164380000,1568164440000,1568164500000,1568164560000,1568164620000,1568164680000,1568164740000,1568164800000,1568164860000,1568164920000,1568164980000,1568165040000,1568165100000,1568165160000,1568165220000,1568165280000,1568165340000,1568165400000,1568165460000,1568165520000,1568165580000,1568165640000,1568165700000,1568165760000,1568165820000,1568165880000,1568165940000,1568166000000,1568166060000,1568166120000,1568166180000,1568166240000,1568166300000,1568166360000,1568166420000,1568166480000,1568166540000,1568166600000,1568166660000,1568166720000,1568166780000,1568166840000,1568166900000,1568166960000,1568167020000,1568167080000,1568167140000,1568167200000,1568167260000,1568167320000,1568167380000,1568167440000,1568167500000,1568167560000,1568167620000,1568167680000,1568167740000,1568167800000,1568167860000,1568167920000,1568167980000,1568168040000,1568168100000,1568168160000,1568168220000,1568168280000,1568168340000,1568168400000,1568168460000,1568168520000,1568168580000,1568168640000,1568168700000,1568168760000,1568168820000,1568168880000,1568168940000,1568169000000,1568169060000,1568169120000,1568169180000,1568169240000,1568169300000,1568169360000,1568169420000,1568169480000,1568169540000,1568169600000,1568169660000,1568169720000,1568169780000,1568169840000,1568169900000,1568169960000,1568170020000,1568170080000,1568170140000,1568170200000,1568170260000,1568170320000,1568170380000,1568170440000,1568170500000,1568170560000,1568170620000,1568170680000,1568170740000,1568170800000,1568170860000,1568170920000,1568170980000,1568171040000,1568171100000,1568171160000,1568171220000,1568171280000,1568171340000,1568171400000,1568171460000,1568171520000,1568171580000,1568171640000,1568171700000,1568171760000,1568171820000,1568171880000,1568171940000,1568172000000,1568172060000,1568172120000,1568172180000,1568172240000,1568172300000,1568172360000,1568172420000,1568172480000,1568172540000,1568172600000,1568172660000,1568172720000,1568172780000,1568172840000,1568172900000,1568172960000,1568173020000,1568173080000,1568173140000,1568173200000,1568173260000,1568173320000,1568173380000,1568173440000,1568173500000,1568173560000,1568173620000,1568173680000,1568173740000,1568173800000,1568173860000,1568173920000,1568173980000,1568174040000,1568174100000,1568174160000,1568174220000,1568174280000,1568174340000,1568174400000,1568174460000,1568174520000,1568174580000,1568174640000,1568174700000,1568174760000,1568174820000,1568174880000,1568174940000,1568175000000,1568175060000,1568175120000,1568175180000,1568175240000,1568175300000,1568175360000,1568175420000,1568175480000,1568175540000,1568175600000,1568175660000,1568175720000,1568175780000,1568175840000,1568175900000,1568175960000,1568176020000,1568176080000,1568176140000,1568176200000,1568176260000,1568176320000,1568176380000,1568176440000,1568176500000,1568176560000,1568176620000,1568176680000,1568176740000,1568176800000,1568176860000,1568176920000,1568176980000,1568177040000,1568177100000,1568177160000,1568177220000,1568177280000,1568177340000,1568177400000,1568177460000,1568177520000,1568177580000,1568177640000,1568177700000,1568177760000,1568177820000,1568177880000,1568177940000,1568178000000,1568178060000,1568178120000,1568178180000,1568178240000,1568178300000,1568178360000,1568178420000,1568178480000,1568178540000,1568178600000,1568178660000,1568178720000,1568178780000,1568178840000,1568178900000,1568178960000,1568179020000,1568179080000,1568179140000,1568179200000,1568179260000,1568179320000,1568179380000,1568179440000,1568179500000,1568179560000,1568179620000,1568179680000,1568179740000,1568179800000,1568179860000,1568179920000,1568179980000,1568180040000,1568180100000,1568180160000,1568180220000,1568180280000,1568180340000,1568180400000,1568180460000,1568180520000,1568180580000,1568180640000,1568180700000,1568180760000,1568180820000,1568180880000,1568180940000,1568181000000,1568181060000,1568181120000,1568181180000,1568181240000,1568181300000,1568181360000,1568181420000,1568181480000,1568181540000,1568181600000,1568181660000,1568181720000,1568181780000,1568181840000,1568181900000,1568181960000,1568182020000,1568182080000,1568182140000,1568182200000,1568182260000,1568182320000,1568182380000,1568182440000,1568182500000,1568182560000,1568182620000,1568182680000,1568182740000,1568182800000,1568182860000,1568182920000,1568182980000,1568183040000,1568183100000,1568183160000,1568183220000,1568183280000,1568183340000,1568183400000,1568183460000,1568183520000,1568183580000,1568183640000,1568183700000,1568183760000,1568183820000,1568183880000,1568183940000,1568184000000,1568184060000,1568184120000,1568184180000,1568184240000,1568184300000,1568184360000,1568184420000,1568184480000,1568184540000,1568184600000,1568184660000,1568184720000,1568184780000,1568184840000,1568184900000,1568184960000,1568185020000,1568185080000,1568185140000,1568185200000,1568185260000,1568185320000,1568185380000,1568185440000,1568185500000,1568185560000,1568185620000,1568185680000,1568185740000,1568185800000,1568185860000,1568185920000,1568185980000,1568186040000,1568186100000,1568186160000,1568186220000,1568186280000,1568186340000,1568186400000,1568186460000,1568186520000,1568186580000,1568186640000,1568186700000,1568186760000,1568186820000,1568186880000,1568186940000,1568187000000,1568187060000,1568187120000,1568187180000,1568187240000,1568187300000,1568187360000,1568187420000,1568187480000,1568187540000,1568187600000,1568187660000,1568187720000,1568187780000,1568187840000,1568187900000,1568187960000,1568188020000,1568188080000,1568188140000,1568188200000,1568188260000,1568188320000,1568188380000,1568188440000,1568188500000,1568188560000,1568188620000,1568188680000,1568188740000,1568188800000,1568188860000,1568188920000,1568188980000,1568189040000,1568189100000,1568189160000,1568189220000,1568189280000,1568189340000,1568189400000,1568189460000,1568189520000,1568189580000,1568189640000,1568189700000,1568189760000,1568189820000,1568189880000,1568189940000,1568190000000,1568190060000,1568190120000,1568190180000,1568190240000,1568190300000,1568190360000,1568190420000,1568190480000,1568190540000,1568190600000,1568190660000,1568190720000,1568190780000,1568190840000,1568190900000,1568190960000,1568191020000,1568191080000,1568191140000,1568191200000,1568191260000,1568191320000,1568191380000,1568191440000,1568191500000,1568191560000,1568191620000,1568191680000,1568191740000,1568191800000,1568191860000,1568191920000,1568191980000,1568192040000,1568192100000,1568192160000,1568192220000,1568192280000,1568192340000,1568192400000,1568192460000,1568192520000,1568192580000,1568192640000,1568192700000,1568192760000,1568192820000,1568192880000,1568192940000,1568193000000,1568193060000,1568193120000,1568193180000,1568193240000,1568193300000,1568193360000,1568193420000,1568193480000,1568193540000,1568193600000,1568193660000,1568193720000,1568193780000,1568193840000,1568193900000,1568193960000,1568194020000,1568194080000,1568194140000,1568194200000,1568194260000,1568194320000,1568194380000,1568194440000,1568194500000,1568194560000,1568194620000,1568194680000,1568194740000,1568194800000,1568194860000,1568194920000,1568194980000,1568195040000,1568195100000,1568195160000,1568195220000,1568195280000,1568195340000,1568195400000,1568195460000,1568195520000,1568195580000,1568195640000,1568195700000,1568195760000,1568195820000,1568195880000,1568195940000,1568196000000,1568196060000,1568196120000,1568196180000,1568196240000,1568196300000,1568196360000,1568196420000,1568196480000,1568196540000,1568196600000,1568196660000,1568196720000,1568196780000,1568196840000,1568196900000,1568196960000,1568197020000,1568197080000,1568197140000,1568197200000,1568197260000,1568197320000,1568197380000,1568197440000,1568197500000,1568197560000,1568197620000,1568197680000,1568197740000,1568197800000,1568197860000,1568197920000,1568197980000,1568198040000,1568198100000,1568198160000,1568198220000,1568198280000,1568198340000,1568198400000,1568198460000,1568198520000,1568198580000,1568198640000,1568198700000,1568198760000,1568198820000,1568198880000,1568198940000,1568199000000,1568199060000,1568199120000,1568199180000,1568199240000,1568199300000,1568199360000,1568199420000,1568199480000,1568199540000,1568199600000,1568199660000,1568199720000,1568199780000,1568199840000,1568199900000,1568199960000,1568200020000,1568200080000,1568200140000,1568200200000,1568200260000,1568200320000,1568200380000,1568200440000,1568200500000,1568200560000,1568200620000,1568200680000,1568200740000,1568200800000,1568200860000,1568200920000,1568200980000,1568201040000,1568201100000,1568201160000,1568201220000,1568201280000,1568201340000,1568201400000,1568201460000,1568201520000,1568201580000,1568201640000,1568201700000,1568201760000,1568201820000,1568201880000,1568201940000,1568202000000,1568202060000,1568202120000,1568202180000,1568202240000,1568202300000,1568202360000,1568202420000,1568202480000,1568202540000,1568202600000,1568202660000,1568202720000,1568202780000,1568202840000,1568202900000,1568202960000,1568203020000,1568203080000,1568203140000,1568203200000,1568203260000,1568203320000,1568203380000,1568203440000,1568203500000,1568203560000,1568203620000,1568203680000,1568203740000,1568203800000,1568203860000,1568203920000,1568203980000,1568204040000,1568204100000,1568204160000,1568204220000,1568204280000,1568204340000,1568204400000,1568204460000,1568204520000,1568204580000,1568204640000,1568204700000,1568204760000,1568204820000,1568204880000,1568204940000,1568205000000,1568205060000,1568205120000,1568205180000,1568205240000,1568205300000,1568205360000,1568205420000,1568205480000,1568205540000,1568205600000,1568205660000,1568205720000,1568205780000,1568205840000,1568205900000,1568205960000,1568206020000,1568206080000,1568206140000,1568206200000,1568206260000,1568206320000,1568206380000,1568206440000,1568206500000,1568206560000,1568206620000,1568206680000,1568206740000,1568206800000,1568206860000,1568206920000,1568206980000,1568207040000,1568207100000,1568207160000,1568207220000,1568207280000,1568207340000,1568207400000,1568207460000,1568207520000,1568207580000,1568207640000,1568207700000,1568207760000,1568207820000,1568207880000,1568207940000,1568208000000,1568208060000,1568208120000,1568208180000,1568208240000,1568208300000,1568208360000,1568208420000,1568208480000,1568208540000,1568208600000,1568208660000,1568208720000,1568208780000,1568208840000,1568208900000,1568208960000,1568209020000,1568209080000,1568209140000,1568209200000,1568209260000,1568209320000,1568209380000,1568209440000,1568209500000,1568209560000,1568209620000,1568209680000,1568209740000,1568209800000,1568209860000,1568209920000,1568209980000,1568210040000,1568210100000,1568210160000,1568210220000,1568210280000,1568210340000,1568210400000,1568210460000,1568210520000,1568210580000,1568210640000,1568210700000,1568210760000,1568210820000,1568210880000,1568210940000,1568211000000,1568211060000,1568211120000,1568211180000,1568211240000,1568211300000,1568211360000,1568211420000,1568211480000,1568211540000,1568211600000,1568211660000,1568211720000,1568211780000,1568211840000,1568211900000,1568211960000,1568212020000,1568212080000,1568212140000,1568212200000,1568212260000,1568212320000,1568212380000,1568212440000,1568212500000,1568212560000,1568212620000,1568212680000,1568212740000,1568212800000,1568212860000,1568212920000,1568212980000,1568213040000,1568213100000,1568213160000,1568213220000,1568213280000,1568213340000,1568213400000,1568213460000,1568213520000,1568213580000,1568213640000,1568213700000,1568213760000,1568213820000,1568213880000,1568213940000,1568214000000,1568214060000,1568214120000,1568214180000,1568214240000,1568214300000,1568214360000,1568214420000,1568214480000,1568214540000,1568214600000,1568214660000,1568214720000,1568214780000,1568214840000,1568214900000,1568214960000,1568215020000,1568215080000,1568215140000,1568215200000,1568215260000,1568215320000,1568215380000,1568215440000,1568215500000,1568215560000,1568215620000,1568215680000,1568215740000,1568215800000,1568215860000,1568215920000,1568215980000,1568216040000,1568216100000,1568216160000,1568216220000,1568216280000,1568216340000,1568216400000,1568216460000,1568216520000,1568216580000,1568216640000,1568216700000,1568216760000,1568216820000,1568216880000,1568216940000,1568217000000,1568217060000,1568217120000,1568217180000,1568217240000,1568217300000,1568217360000,1568217420000,1568217480000,1568217540000,1568217600000,1568217660000,1568217720000,1568217780000,1568217840000,1568217900000,1568217960000,1568218020000,1568218080000,1568218140000,1568218200000,1568218260000,1568218320000,1568218380000,1568218440000,1568218500000,1568218560000,1568218620000,1568218680000,1568218740000,1568218800000,1568218860000,1568218920000,1568218980000,1568219040000,1568219100000,1568219160000,1568219220000,1568219280000,1568219340000,1568219400000,1568219460000,1568219520000,1568219580000,1568219640000,1568219700000,1568219760000,1568219820000,1568219880000,1568219940000,1568220000000,1568220060000,1568220120000,1568220180000,1568220240000,1568220300000,1568220360000,1568220420000,1568220480000,1568220540000,1568220600000,1568220660000,1568220720000,1568220780000,1568220840000,1568220900000,1568220960000,1568221020000,1568221080000,1568221140000,1568221200000,1568221260000,1568221320000,1568221380000,1568221440000,1568221500000,1568221560000,1568221620000,1568221680000,1568221740000,1568221800000,1568221860000,1568221920000,1568221980000,1568222040000,1568222100000,1568222160000,1568222220000,1568222280000,1568222340000,1568222400000,1568222460000,1568222520000,1568222580000,1568222640000,1568222700000,1568222760000,1568222820000,1568222880000,1568222940000,1568223000000,1568223060000,1568223120000,1568223180000,1568223240000,1568223300000,1568223360000,1568223420000,1568223480000,1568223540000,1568223600000,1568223660000,1568223720000,1568223780000,1568223840000,1568223900000,1568223960000,1568224020000,1568224080000,1568224140000,1568224200000,1568224260000,1568224320000,1568224380000,1568224440000,1568224500000,1568224560000,1568224620000,1568224680000,1568224740000,1568224800000,1568224860000,1568224920000,1568224980000,1568225040000,1568225100000,1568225160000,1568225220000,1568225280000,1568225340000,1568225400000,1568225460000,1568225520000,1568225580000,1568225640000,1568225700000,1568225760000,1568225820000,1568225880000,1568225940000,1568226000000,1568226060000,1568226120000,1568226180000,1568226240000,1568226300000,1568226360000,1568226420000,1568226480000,1568226540000,1568226600000,1568226660000,1568226720000,1568226780000,1568226840000,1568226900000,1568226960000,1568227020000,1568227080000,1568227140000,1568227200000,1568227260000,1568227320000,1568227380000,1568227440000,1568227500000,1568227560000,1568227620000,1568227680000,1568227740000,1568227800000,1568227860000,1568227920000,1568227980000,1568228040000,1568228100000,1568228160000,1568228220000,1568228280000,1568228340000,1568228400000,1568228460000,1568228520000,1568228580000,1568228640000,1568228700000,1568228760000,1568228820000,1568228880000,1568228940000,1568229000000,1568229060000,1568229120000,1568229180000,1568229240000,1568229300000,1568229360000,1568229420000,1568229480000,1568229540000,1568229600000,1568229660000,1568229720000,1568229780000,1568229840000,1568229900000,1568229960000,1568230020000,1568230080000,1568230140000,1568230200000,1568230260000,1568230320000,1568230380000,1568230440000,1568230500000,1568230560000,1568230620000,1568230680000,1568230740000,1568230800000,1568230860000,1568230920000,1568230980000,1568231040000,1568231100000,1568231160000,1568231220000,1568231280000,1568231340000,1568231400000,1568231460000,1568231520000,1568231580000,1568231640000,1568231700000,1568231760000,1568231820000,1568231880000,1568231940000,1568232000000,1568232060000,1568232120000,1568232180000,1568232240000,1568232300000,1568232360000,1568232420000,1568232480000,1568232540000,1568232600000,1568232660000,1568232720000,1568232780000,1568232840000,1568232900000,1568232960000,1568233020000,1568233080000,1568233140000,1568233200000,1568233260000,1568233320000,1568233380000,1568233440000,1568233500000,1568233560000,1568233620000,1568233680000,1568233740000,1568233800000,1568233860000,1568233920000,1568233980000,1568234040000,1568234100000,1568234160000,1568234220000,1568234280000,1568234340000,1568234400000,1568234460000,1568234520000,1568234580000,1568234640000,1568234700000,1568234760000,1568234820000,1568234880000,1568234940000,1568235000000,1568235060000,1568235120000,1568235180000,1568235240000,1568235300000,1568235360000,1568235420000,1568235480000,1568235540000,1568235600000,1568235660000,1568235720000,1568235780000,1568235840000,1568235900000,1568235960000,1568236020000,1568236080000,1568236140000,1568236200000,1568236260000,1568236320000,1568236380000,1568236440000,1568236500000,1568236560000,1568236620000,1568236680000,1568236740000,1568236800000,1568236860000,1568236920000,1568236980000,1568237040000,1568237100000,1568237160000,1568237220000,1568237280000,1568237340000,1568237400000,1568237460000,1568237520000,1568237580000,1568237640000,1568237700000,1568237760000,1568237820000,1568237880000,1568237940000,1568238000000,1568238060000,1568238120000,1568238180000,1568238240000,1568238300000,1568238360000,1568238420000,1568238480000,1568238540000,1568238600000,1568238660000,1568238720000,1568238780000,1568238840000,1568238900000,1568238960000,1568239020000,1568239080000,1568239140000,1568239200000,1568239260000,1568239320000,1568239380000,1568239440000,1568239500000,1568239560000,1568239620000,1568239680000,1568239740000,1568239800000,1568239860000,1568239920000,1568239980000,1568240040000,1568240100000,1568240160000,1568240220000,1568240280000,1568240340000,1568240400000,1568240460000,1568240520000,1568240580000,1568240640000,1568240700000,1568240760000,1568240820000,1568240880000,1568240940000,1568241000000,1568241060000,1568241120000,1568241180000,1568241240000,1568241300000,1568241360000,1568241420000,1568241480000,1568241540000,1568241600000,1568241660000,1568241720000,1568241780000,1568241840000,1568241900000,1568241960000,1568242020000,1568242080000,1568242140000,1568242200000,1568242260000,1568242320000,1568242380000,1568242440000,1568242500000,1568242560000,1568242620000,1568242680000,1568242740000,1568242800000,1568242860000,1568242920000,1568242980000,1568243040000,1568243100000,1568243160000,1568243220000,1568243280000,1568243340000,1568243400000,1568243460000,1568243520000,1568243580000,1568243640000,1568243700000,1568243760000,1568243820000,1568243880000,1568243940000,1568244000000,1568244060000,1568244120000,1568244180000,1568244240000,1568244300000,1568244360000,1568244420000,1568244480000,1568244540000,1568244600000,1568244660000,1568244720000,1568244780000,1568244840000,1568244900000,1568244960000,1568245020000,1568245080000,1568245140000,1568245200000,1568245260000,1568245320000,1568245380000,1568245440000,1568245500000,1568245560000,1568245620000,1568245680000,1568245740000,1568245800000,1568245860000,1568245920000,1568245980000,1568246040000,1568246100000,1568246160000,1568246220000,1568246280000,1568246340000,1568246400000,1568246460000,1568246520000,1568246580000,1568246640000,1568246700000,1568246760000,1568246820000,1568246880000,1568246940000,1568247000000,1568247060000,1568247120000,1568247180000,1568247240000,1568247300000,1568247360000,1568247420000,1568247480000,1568247540000,1568247600000,1568247660000,1568247720000,1568247780000,1568247840000,1568247900000,1568247960000,1568248020000,1568248080000,1568248140000,1568248200000,1568248260000,1568248320000,1568248380000,1568248440000,1568248500000,1568248560000,1568248620000,1568248680000,1568248740000,1568248800000,1568248860000,1568248920000,1568248980000,1568249040000,1568249100000,1568249160000,1568249220000,1568249280000,1568249340000,1568249400000,1568249460000,1568249520000,1568249580000,1568249640000,1568249700000,1568249760000,1568249820000,1568249880000,1568249940000,1568250000000,1568250060000,1568250120000,1568250180000,1568250240000,1568250300000,1568250360000,1568250420000,1568250480000,1568250540000,1568250600000,1568250660000,1568250720000,1568250780000,1568250840000,1568250900000,1568250960000,1568251020000,1568251080000,1568251140000,1568251200000,1568251260000,1568251320000,1568251380000,1568251440000,1568251500000,1568251560000,1568251620000,1568251680000,1568251740000,1568251800000,1568251860000,1568251920000,1568251980000,1568252040000,1568252100000,1568252160000,1568252220000,1568252280000,1568252340000,1568252400000,1568252460000,1568252520000,1568252580000,1568252640000,1568252700000,1568252760000,1568252820000,1568252880000,1568252940000,1568253000000,1568253060000,1568253120000,1568253180000,1568253240000,1568253300000,1568253360000,1568253420000,1568253480000,1568253540000,1568253600000,1568253660000,1568253720000,1568253780000,1568253840000,1568253900000,1568253960000,1568254020000,1568254080000,1568254140000,1568254200000,1568254260000,1568254320000,1568254380000,1568254440000,1568254500000,1568254560000,1568254620000,1568254680000,1568254740000,1568254800000,1568254860000,1568254920000,1568254980000,1568255040000,1568255100000,1568255160000,1568255220000,1568255280000,1568255340000,1568255400000,1568255460000,1568255520000,1568255580000,1568255640000,1568255700000,1568255760000,1568255820000,1568255880000,1568255940000,1568256000000,1568256060000,1568256120000,1568256180000,1568256240000,1568256300000,1568256360000,1568256420000,1568256480000,1568256540000,1568256600000,1568256660000,1568256720000,1568256780000,1568256840000,1568256900000,1568256960000,1568257020000,1568257080000,1568257140000,1568257200000,1568257260000,1568257320000,1568257380000,1568257440000,1568257500000,1568257560000,1568257620000,1568257680000,1568257740000,1568257800000,1568257860000,1568257920000,1568257980000,1568258040000,1568258100000,1568258160000,1568258220000,1568258280000,1568258340000,1568258400000,1568258460000,1568258520000,1568258580000,1568258640000,1568258700000,1568258760000,1568258820000,1568258880000,1568258940000,1568259000000,1568259060000,1568259120000,1568259180000,1568259240000,1568259300000,1568259360000,1568259420000,1568259480000,1568259540000,1568259600000,1568259660000,1568259720000,1568259780000,1568259840000,1568259900000,1568259960000,1568260020000,1568260080000,1568260140000,1568260200000,1568260260000,1568260320000,1568260380000,1568260440000,1568260500000,1568260560000,1568260620000,1568260680000,1568260740000,1568260800000,1568260860000,1568260920000,1568260980000,1568261040000,1568261100000,1568261160000,1568261220000,1568261280000,1568261340000,1568261400000,1568261460000,1568261520000,1568261580000,1568261640000,1568261700000,1568261760000,1568261820000,1568261880000,1568261940000,1568262000000,1568262060000,1568262120000,1568262180000,1568262240000,1568262300000,1568262360000,1568262420000,1568262480000,1568262540000,1568262600000,1568262660000,1568262720000,1568262780000,1568262840000,1568262900000,1568262960000,1568263020000,1568263080000,1568263140000,1568263200000,1568263260000,1568263320000,1568263380000,1568263440000,1568263500000,1568263560000,1568263620000,1568263680000,1568263740000,1568263800000,1568263860000,1568263920000,1568263980000,1568264040000,1568264100000,1568264160000,1568264220000,1568264280000,1568264340000,1568264400000,1568264460000,1568264520000,1568264580000,1568264640000,1568264700000,1568264760000,1568264820000,1568264880000,1568264940000,1568265000000,1568265060000,1568265120000,1568265180000,1568265240000,1568265300000,1568265360000,1568265420000,1568265480000,1568265540000,1568265600000,1568265660000,1568265720000,1568265780000,1568265840000,1568265900000,1568265960000,1568266020000,1568266080000,1568266140000,1568266200000,1568266260000,1568266320000,1568266380000,1568266440000,1568266500000,1568266560000,1568266620000,1568266680000,1568266740000,1568266800000,1568266860000,1568266920000,1568266980000,1568267040000,1568267100000,1568267160000,1568267220000,1568267280000,1568267340000,1568267400000,1568267460000,1568267520000,1568267580000,1568267640000,1568267700000,1568267760000,1568267820000,1568267880000,1568267940000,1568268000000,1568268060000,1568268120000,1568268180000,1568268240000,1568268300000,1568268360000,1568268420000,1568268480000,1568268540000,1568268600000,1568268660000,1568268720000,1568268780000,1568268840000,1568268900000,1568268960000,1568269020000,1568269080000,1568269140000,1568269200000,1568269260000,1568269320000,1568269380000,1568269440000,1568269500000,1568269560000,1568269620000,1568269680000,1568269740000,1568269800000,1568269860000,1568269920000,1568269980000,1568270040000,1568270100000,1568270160000,1568270220000,1568270280000,1568270340000,1568270400000,1568270460000,1568270520000,1568270580000,1568270640000,1568270700000,1568270760000,1568270820000,1568270880000,1568270940000,1568271000000,1568271060000,1568271120000,1568271180000,1568271240000,1568271300000,1568271360000,1568271420000,1568271480000,1568271540000,1568271600000,1568271660000,1568271720000,1568271780000,1568271840000,1568271900000,1568271960000,1568272020000,1568272080000,1568272140000,1568272200000,1568272260000,1568272320000,1568272380000,1568272440000,1568272500000,1568272560000,1568272620000,1568272680000,1568272740000,1568272800000,1568272860000,1568272920000,1568272980000,1568273040000,1568273100000,1568273160000,1568273220000,1568273280000,1568273340000,1568273400000,1568273460000,1568273520000,1568273580000,1568273640000,1568273700000,1568273760000,1568273820000,1568273880000,1568273940000,1568274000000,1568274060000,1568274120000,1568274180000,1568274240000,1568274300000,1568274360000,1568274420000,1568274480000,1568274540000,1568274600000,1568274660000,1568274720000,1568274780000,1568274840000,1568274900000,1568274960000,1568275020000,1568275080000,1568275140000,1568275200000,1568275260000,1568275320000,1568275380000,1568275440000,1568275500000,1568275560000,1568275620000,1568275680000,1568275740000,1568275800000,1568275860000,1568275920000,1568275980000,1568276040000,1568276100000,1568276160000,1568276220000,1568276280000,1568276340000,1568276400000,1568276460000,1568276520000,1568276580000,1568276640000,1568276700000,1568276760000,1568276820000,1568276880000,1568276940000,1568277000000,1568277060000,1568277120000,1568277180000,1568277240000,1568277300000,1568277360000,1568277420000,1568277480000,1568277540000,1568277600000,1568277660000,1568277720000,1568277780000,1568277840000,1568277900000,1568277960000,1568278020000,1568278080000,1568278140000,1568278200000,1568278260000,1568278320000,1568278380000,1568278440000,1568278500000,1568278560000,1568278620000,1568278680000,1568278740000,1568278800000,1568278860000,1568278920000,1568278980000,1568279040000,1568279100000,1568279160000,1568279220000,1568279280000,1568279340000,1568279400000,1568279460000,1568279520000,1568279580000,1568279640000,1568279700000,1568279760000,1568279820000,1568279880000,1568279940000,1568280000000,1568280060000,1568280120000,1568280180000,1568280240000,1568280300000,1568280360000,1568280420000,1568280480000,1568280540000,1568280600000,1568280660000,1568280720000,1568280780000,1568280840000,1568280900000,1568280960000,1568281020000,1568281080000,1568281140000,1568281200000,1568281260000,1568281320000,1568281380000,1568281440000,1568281500000,1568281560000,1568281620000,1568281680000,1568281740000,1568281800000,1568281860000,1568281920000,1568281980000,1568282040000,1568282100000,1568282160000,1568282220000,1568282280000,1568282340000,1568282400000,1568282460000,1568282520000,1568282580000,1568282640000,1568282700000,1568282760000,1568282820000,1568282880000,1568282940000,1568283000000,1568283060000,1568283120000,1568283180000,1568283240000,1568283300000,1568283360000,1568283420000,1568283480000,1568283540000,1568283600000,1568283660000,1568283720000,1568283780000,1568283840000,1568283900000,1568283960000,1568284020000,1568284080000,1568284140000,1568284200000,1568284260000,1568284320000,1568284380000,1568284440000,1568284500000,1568284560000,1568284620000,1568284680000,1568284740000,1568284800000,1568284860000,1568284920000,1568284980000,1568285040000,1568285100000,1568285160000,1568285220000,1568285280000,1568285340000,1568285400000,1568285460000,1568285520000,1568285580000,1568285640000,1568285700000,1568285760000,1568285820000,1568285880000,1568285940000,1568286000000,1568286060000,1568286120000,1568286180000,1568286240000,1568286300000,1568286360000,1568286420000,1568286480000,1568286540000,1568286600000,1568286660000,1568286720000,1568286780000,1568286840000,1568286900000,1568286960000,1568287020000,1568287080000,1568287140000,1568287200000,1568287260000,1568287320000,1568287380000,1568287440000,1568287500000,1568287560000,1568287620000,1568287680000,1568287740000,1568287800000,1568287860000,1568287920000,1568287980000,1568288040000,1568288100000,1568288160000,1568288220000,1568288280000,1568288340000,1568288400000,1568288460000,1568288520000,1568288580000,1568288640000,1568288700000,1568288760000,1568288820000,1568288880000,1568288940000,1568289000000,1568289060000,1568289120000,1568289180000,1568289240000,1568289300000,1568289360000,1568289420000,1568289480000,1568289540000,1568289600000,1568289660000,1568289720000,1568289780000,1568289840000,1568289900000,1568289960000,1568290020000,1568290080000,1568290140000,1568290200000,1568290260000,1568290320000,1568290380000,1568290440000,1568290500000,1568290560000,1568290620000,1568290680000,1568290740000,1568290800000,1568290860000,1568290920000,1568290980000,1568291040000,1568291100000,1568291160000,1568291220000,1568291280000,1568291340000,1568291400000,1568291460000,1568291520000,1568291580000,1568291640000,1568291700000,1568291760000,1568291820000,1568291880000,1568291940000,1568292000000,1568292060000,1568292120000,1568292180000,1568292240000,1568292300000,1568292360000,1568292420000,1568292480000,1568292540000,1568292600000,1568292660000,1568292720000,1568292780000,1568292840000,1568292900000,1568292960000,1568293020000,1568293080000,1568293140000,1568293200000,1568293260000,1568293320000,1568293380000,1568293440000,1568293500000,1568293560000,1568293620000,1568293680000,1568293740000,1568293800000,1568293860000,1568293920000,1568293980000,1568294040000,1568294100000,1568294160000,1568294220000,1568294280000,1568294340000,1568294400000,1568294460000,1568294520000,1568294580000,1568294640000,1568294700000,1568294760000,1568294820000,1568294880000,1568294940000,1568295000000,1568295060000,1568295120000,1568295180000,1568295240000,1568295300000,1568295360000,1568295420000,1568295480000,1568295540000,1568295600000,1568295660000,1568295720000,1568295780000,1568295840000,1568295900000,1568295960000,1568296020000,1568296080000,1568296140000,1568296200000,1568296260000,1568296320000,1568296380000,1568296440000,1568296500000,1568296560000,1568296620000,1568296680000,1568296740000,1568296800000,1568296860000,1568296920000,1568296980000,1568297040000,1568297100000,1568297160000,1568297220000,1568297280000,1568297340000,1568297400000,1568297460000,1568297520000,1568297580000,1568297640000,1568297700000,1568297760000,1568297820000,1568297880000,1568297940000,1568298000000,1568298060000,1568298120000,1568298180000,1568298240000,1568298300000,1568298360000,1568298420000,1568298480000,1568298540000,1568298600000,1568298660000,1568298720000,1568298780000,1568298840000,1568298900000,1568298960000,1568299020000,1568299080000,1568299140000,1568299200000,1568299260000,1568299320000,1568299380000,1568299440000,1568299500000,1568299560000,1568299620000,1568299680000,1568299740000,1568299800000,1568299860000,1568299920000,1568299980000,1568300040000,1568300100000,1568300160000,1568300220000,1568300280000,1568300340000,1568300400000,1568300460000,1568300520000,1568300580000,1568300640000,1568300700000,1568300760000,1568300820000,1568300880000,1568300940000,1568301000000,1568301060000,1568301120000,1568301180000,1568301240000,1568301300000,1568301360000,1568301420000,1568301480000,1568301540000,1568301600000,1568301660000,1568301720000,1568301780000,1568301840000,1568301900000,1568301960000,1568302020000,1568302080000,1568302140000,1568302200000,1568302260000,1568302320000,1568302380000,1568302440000,1568302500000,1568302560000,1568302620000,1568302680000,1568302740000,1568302800000,1568302860000,1568302920000,1568302980000,1568303040000,1568303100000,1568303160000,1568303220000,1568303280000,1568303340000,1568303400000,1568303460000,1568303520000,1568303580000,1568303640000,1568303700000,1568303760000,1568303820000,1568303880000,1568303940000,1568304000000,1568304060000,1568304120000,1568304180000,1568304240000,1568304300000,1568304360000,1568304420000,1568304480000,1568304540000,1568304600000,1568304660000,1568304720000,1568304780000,1568304840000,1568304900000,1568304960000,1568305020000,1568305080000,1568305140000,1568305200000,1568305260000,1568305320000,1568305380000,1568305440000,1568305500000,1568305560000,1568305620000,1568305680000,1568305740000,1568305800000,1568305860000,1568305920000,1568305980000,1568306040000,1568306100000,1568306160000,1568306220000,1568306280000,1568306340000,1568306400000,1568306460000,1568306520000,1568306580000,1568306640000,1568306700000,1568306760000,1568306820000,1568306880000,1568306940000,1568307000000,1568307060000,1568307120000,1568307180000,1568307240000,1568307300000,1568307360000,1568307420000,1568307480000,1568307540000,1568307600000,1568307660000,1568307720000,1568307780000,1568307840000,1568307900000,1568307960000,1568308020000,1568308080000,1568308140000,1568308200000,1568308260000,1568308320000,1568308380000,1568308440000,1568308500000,1568308560000,1568308620000,1568308680000,1568308740000,1568308800000,1568308860000,1568308920000,1568308980000,1568309040000,1568309100000,1568309160000,1568309220000,1568309280000,1568309340000,1568309400000,1568309460000,1568309520000,1568309580000,1568309640000,1568309700000,1568309760000,1568309820000,1568309880000,1568309940000,1568310000000,1568310060000,1568310120000,1568310180000,1568310240000,1568310300000,1568310360000,1568310420000,1568310480000,1568310540000,1568310600000,1568310660000,1568310720000,1568310780000,1568310840000,1568310900000,1568310960000,1568311020000,1568311080000,1568311140000,1568311200000,1568311260000,1568311320000,1568311380000,1568311440000,1568311500000,1568311560000,1568311620000,1568311680000,1568311740000,1568311800000,1568311860000,1568311920000,1568311980000,1568312040000,1568312100000,1568312160000,1568312220000,1568312280000,1568312340000,1568312400000,1568312460000,1568312520000,1568312580000,1568312640000,1568312700000,1568312760000,1568312820000,1568312880000,1568312940000,1568313000000,1568313060000,1568313120000,1568313180000,1568313240000,1568313300000,1568313360000,1568313420000,1568313480000,1568313540000,1568313600000,1568313660000,1568313720000,1568313780000,1568313840000,1568313900000,1568313960000,1568314020000,1568314080000,1568314140000,1568314200000,1568314260000,1568314320000,1568314380000,1568314440000,1568314500000,1568314560000,1568314620000,1568314680000,1568314740000,1568314800000,1568314860000,1568314920000,1568314980000,1568315040000,1568315100000,1568315160000,1568315220000,1568315280000,1568315340000,1568315400000,1568315460000,1568315520000,1568315580000,1568315640000,1568315700000,1568315760000,1568315820000,1568315880000,1568315940000,1568316000000,1568316060000,1568316120000,1568316180000,1568316240000,1568316300000,1568316360000,1568316420000,1568316480000,1568316540000,1568316600000,1568316660000,1568316720000,1568316780000,1568316840000,1568316900000,1568316960000,1568317020000,1568317080000,1568317140000,1568317200000,1568317260000,1568317320000,1568317380000,1568317440000,1568317500000,1568317560000,1568317620000,1568317680000,1568317740000,1568317800000,1568317860000,1568317920000,1568317980000,1568318040000,1568318100000,1568318160000,1568318220000,1568318280000,1568318340000,1568318400000,1568318460000,1568318520000,1568318580000,1568318640000,1568318700000,1568318760000,1568318820000,1568318880000,1568318940000,1568319000000,1568319060000,1568319120000,1568319180000,1568319240000,1568319300000,1568319360000,1568319420000,1568319480000,1568319540000,1568319600000,1568319660000,1568319720000,1568319780000,1568319840000,1568319900000,1568319960000,1568320020000,1568320080000,1568320140000,1568320200000,1568320260000,1568320320000,1568320380000,1568320440000,1568320500000,1568320560000,1568320620000,1568320680000,1568320740000,1568320800000,1568320860000,1568320920000,1568320980000,1568321040000,1568321100000,1568321160000,1568321220000,1568321280000,1568321340000,1568321400000,1568321460000,1568321520000,1568321580000,1568321640000,1568321700000,1568321760000,1568321820000,1568321880000,1568321940000,1568322000000,1568322060000,1568322120000,1568322180000,1568322240000,1568322300000,1568322360000,1568322420000,1568322480000,1568322540000,1568322600000,1568322660000,1568322720000,1568322780000,1568322840000,1568322900000,1568322960000,1568323020000,1568323080000,1568323140000,1568323200000,1568323260000,1568323320000,1568323380000,1568323440000,1568323500000,1568323560000,1568323620000,1568323680000,1568323740000,1568323800000,1568323860000,1568323920000,1568323980000,1568324040000,1568324100000,1568324160000,1568324220000,1568324280000,1568324340000,1568324400000,1568324460000,1568324520000,1568324580000,1568324640000,1568324700000,1568324760000,1568324820000,1568324880000,1568324940000,1568325000000,1568325060000,1568325120000,1568325180000,1568325240000,1568325300000,1568325360000,1568325420000,1568325480000,1568325540000,1568325600000,1568325660000,1568325720000,1568325780000,1568325840000,1568325900000,1568325960000,1568326020000,1568326080000,1568326140000,1568326200000,1568326260000,1568326320000,1568326380000,1568326440000,1568326500000,1568326560000,1568326620000,1568326680000,1568326740000,1568326800000,1568326860000,1568326920000,1568326980000,1568327040000,1568327100000,1568327160000,1568327220000,1568327280000,1568327340000,1568327400000,1568327460000,1568327520000,1568327580000,1568327640000,1568327700000,1568327760000,1568327820000,1568327880000,1568327940000,1568328000000,1568328060000,1568328120000,1568328180000,1568328240000,1568328300000,1568328360000,1568328420000,1568328480000,1568328540000,1568328600000,1568328660000,1568328720000,1568328780000,1568328840000,1568328900000,1568328960000,1568329020000,1568329080000,1568329140000,1568329200000,1568329260000,1568329320000,1568329380000,1568329440000,1568329500000,1568329560000,1568329620000,1568329680000,1568329740000,1568329800000,1568329860000,1568329920000,1568329980000,1568330040000,1568330100000,1568330160000,1568330220000,1568330280000,1568330340000,1568330400000,1568330460000,1568330520000,1568330580000,1568330640000,1568330700000,1568330760000,1568330820000,1568330880000,1568330940000,1568331000000,1568331060000,1568331120000,1568331180000,1568331240000,1568331300000,1568331360000,1568331420000,1568331480000,1568331540000,1568331600000,1568331660000,1568331720000,1568331780000,1568331840000,1568331900000,1568331960000,1568332020000,1568332080000,1568332140000,1568332200000,1568332260000,1568332320000,1568332380000,1568332440000,1568332500000,1568332560000,1568332620000,1568332680000,1568332740000,1568332800000,1568332860000,1568332920000,1568332980000,1568333040000,1568333100000,1568333160000,1568333220000,1568333280000,1568333340000,1568333400000,1568333460000,1568333520000,1568333580000,1568333640000,1568333700000,1568333760000,1568333820000,1568333880000,1568333940000,1568334000000,1568334060000,1568334120000,1568334180000,1568334240000,1568334300000,1568334360000,1568334420000,1568334480000,1568334540000,1568334600000,1568334660000,1568334720000,1568334780000,1568334840000,1568334900000,1568334960000,1568335020000,1568335080000,1568335140000,1568335200000,1568335260000,1568335320000,1568335380000,1568335440000,1568335500000,1568335560000,1568335620000,1568335680000,1568335740000,1568335800000,1568335860000,1568335920000,1568335980000,1568336040000,1568336100000,1568336160000,1568336220000,1568336280000,1568336340000,1568336400000,1568336460000,1568336520000,1568336580000,1568336640000,1568336700000,1568336760000,1568336820000,1568336880000,1568336940000,1568337000000,1568337060000,1568337120000,1568337180000,1568337240000,1568337300000,1568337360000,1568337420000,1568337480000,1568337540000,1568337600000,1568337660000,1568337720000,1568337780000,1568337840000,1568337900000,1568337960000,1568338020000,1568338080000,1568338140000,1568338200000,1568338260000,1568338320000,1568338380000,1568338440000,1568338500000,1568338560000,1568338620000,1568338680000,1568338740000,1568338800000,1568338860000,1568338920000,1568338980000,1568339040000,1568339100000,1568339160000,1568339220000,1568339280000,1568339340000,1568339400000,1568339460000,1568339520000,1568339580000,1568339640000,1568339700000,1568339760000,1568339820000,1568339880000,1568339940000,1568340000000,1568340060000,1568340120000,1568340180000,1568340240000,1568340300000,1568340360000,1568340420000,1568340480000,1568340540000,1568340600000,1568340660000,1568340720000,1568340780000,1568340840000,1568340900000,1568340960000,1568341020000,1568341080000,1568341140000,1568341200000,1568341260000,1568341320000,1568341380000,1568341440000,1568341500000,1568341560000,1568341620000,1568341680000,1568341740000,1568341800000,1568341860000,1568341920000,1568341980000,1568342040000,1568342100000,1568342160000,1568342220000,1568342280000,1568342340000,1568342400000,1568342460000,1568342520000,1568342580000,1568342640000,1568342700000,1568342760000,1568342820000,1568342880000,1568342940000,1568343000000,1568343060000,1568343120000,1568343180000,1568343240000,1568343300000,1568343360000,1568343420000,1568343480000,1568343540000,1568343600000,1568343660000,1568343720000,1568343780000,1568343840000,1568343900000,1568343960000,1568344020000,1568344080000,1568344140000,1568344200000,1568344260000,1568344320000,1568344380000,1568344440000,1568344500000,1568344560000,1568344620000,1568344680000,1568344740000,1568344800000,1568344860000,1568344920000,1568344980000,1568345040000,1568345100000,1568345160000,1568345220000,1568345280000,1568345340000,1568345400000,1568345460000,1568345520000,1568345580000,1568345640000,1568345700000,1568345760000,1568345820000,1568345880000,1568345940000,1568346000000,1568346060000,1568346120000,1568346180000,1568346240000,1568346300000,1568346360000,1568346420000,1568346480000,1568346540000,1568346600000,1568346660000,1568346720000,1568346780000,1568346840000,1568346900000,1568346960000,1568347020000,1568347080000,1568347140000,1568347200000,1568347260000,1568347320000,1568347380000,1568347440000,1568347500000,1568347560000,1568347620000,1568347680000,1568347740000,1568347800000,1568347860000,1568347920000,1568347980000,1568348040000,1568348100000,1568348160000,1568348220000,1568348280000,1568348340000,1568348400000,1568348460000,1568348520000,1568348580000,1568348640000,1568348700000,1568348760000,1568348820000,1568348880000,1568348940000,1568349000000,1568349060000,1568349120000,1568349180000,1568349240000,1568349300000,1568349360000,1568349420000,1568349480000,1568349540000,1568349600000,1568349660000,1568349720000,1568349780000,1568349840000,1568349900000,1568349960000,1568350020000,1568350080000,1568350140000,1568350200000,1568350260000,1568350320000,1568350380000,1568350440000,1568350500000,1568350560000,1568350620000,1568350680000,1568350740000,1568350800000,1568350860000,1568350920000,1568350980000,1568351040000,1568351100000,1568351160000,1568351220000,1568351280000,1568351340000,1568351400000,1568351460000,1568351520000,1568351580000,1568351640000,1568351700000,1568351760000,1568351820000,1568351880000,1568351940000,1568352000000,1568352060000,1568352120000,1568352180000,1568352240000,1568352300000,1568352360000,1568352420000,1568352480000,1568352540000,1568352600000,1568352660000,1568352720000,1568352780000,1568352840000,1568352900000,1568352960000,1568353020000,1568353080000,1568353140000,1568353200000,1568353260000,1568353320000,1568353380000,1568353440000,1568353500000,1568353560000,1568353620000,1568353680000,1568353740000,1568353800000,1568353860000,1568353920000,1568353980000,1568354040000,1568354100000,1568354160000,1568354220000,1568354280000,1568354340000,1568354400000,1568354460000,1568354520000,1568354580000,1568354640000,1568354700000,1568354760000,1568354820000,1568354880000,1568354940000,1568355000000,1568355060000,1568355120000,1568355180000,1568355240000,1568355300000,1568355360000,1568355420000,1568355480000,1568355540000,1568355600000,1568355660000,1568355720000,1568355780000,1568355840000,1568355900000,1568355960000,1568356020000,1568356080000,1568356140000,1568356200000,1568356260000,1568356320000,1568356380000,1568356440000,1568356500000,1568356560000,1568356620000,1568356680000,1568356740000,1568356800000,1568356860000,1568356920000,1568356980000,1568357040000,1568357100000,1568357160000,1568357220000,1568357280000,1568357340000,1568357400000,1568357460000,1568357520000,1568357580000,1568357640000,1568357700000,1568357760000,1568357820000,1568357880000,1568357940000,1568358000000,1568358060000,1568358120000,1568358180000,1568358240000,1568358300000,1568358360000,1568358420000,1568358480000,1568358540000,1568358600000,1568358660000,1568358720000,1568358780000,1568358840000,1568358900000,1568358960000,1568359020000,1568359080000,1568359140000,1568359200000,1568359260000,1568359320000,1568359380000,1568359440000,1568359500000,1568359560000,1568359620000,1568359680000,1568359740000,1568359800000,1568359860000,1568359920000,1568359980000,1568360040000,1568360100000,1568360160000,1568360220000,1568360280000,1568360340000,1568360400000,1568360460000,1568360520000,1568360580000,1568360640000,1568360700000,1568360760000,1568360820000,1568360880000,1568360940000,1568361000000,1568361060000,1568361120000,1568361180000,1568361240000,1568361300000,1568361360000,1568361420000,1568361480000,1568361540000,1568361600000,1568361660000,1568361720000,1568361780000,1568361840000,1568361900000,1568361960000,1568362020000,1568362080000,1568362140000,1568362200000,1568362260000,1568362320000,1568362380000,1568362440000,1568362500000,1568362560000,1568362620000,1568362680000,1568362740000,1568362800000,1568362860000,1568362920000,1568362980000,1568363040000,1568363100000,1568363160000,1568363220000,1568363280000,1568363340000,1568363400000,1568363460000,1568363520000,1568363580000,1568363640000,1568363700000,1568363760000,1568363820000,1568363880000,1568363940000,1568364000000,1568364060000,1568364120000,1568364180000,1568364240000,1568364300000,1568364360000,1568364420000,1568364480000,1568364540000,1568364600000,1568364660000,1568364720000,1568364780000,1568364840000,1568364900000,1568364960000,1568365020000,1568365080000,1568365140000,1568365200000,1568365260000,1568365320000,1568365380000,1568365440000,1568365500000,1568365560000,1568365620000,1568365680000,1568365740000,1568365800000,1568365860000,1568365920000,1568365980000,1568366040000,1568366100000,1568366160000,1568366220000,1568366280000,1568366340000,1568366400000,1568366460000,1568366520000,1568366580000,1568366640000,1568366700000,1568366760000,1568366820000,1568366880000,1568366940000,1568367000000,1568367060000,1568367120000,1568367180000,1568367240000,1568367300000,1568367360000,1568367420000,1568367480000,1568367540000,1568367600000,1568367660000,1568367720000,1568367780000,1568367840000,1568367900000,1568367960000,1568368020000,1568368080000,1568368140000,1568368200000,1568368260000,1568368320000,1568368380000,1568368440000,1568368500000,1568368560000,1568368620000,1568368680000,1568368740000,1568368800000,1568368860000,1568368920000,1568368980000,1568369040000,1568369100000,1568369160000,1568369220000,1568369280000,1568369340000,1568369400000,1568369460000,1568369520000,1568369580000,1568369640000,1568369700000,1568369760000,1568369820000,1568369880000,1568369940000,1568370000000,1568370060000,1568370120000,1568370180000,1568370240000,1568370300000,1568370360000,1568370420000,1568370480000,1568370540000,1568370600000,1568370660000,1568370720000,1568370780000,1568370840000,1568370900000,1568370960000,1568371020000,1568371080000,1568371140000,1568371200000,1568371260000,1568371320000,1568371380000,1568371440000,1568371500000,1568371560000,1568371620000,1568371680000,1568371740000,1568371800000,1568371860000,1568371920000,1568371980000,1568372040000,1568372100000,1568372160000,1568372220000,1568372280000,1568372340000,1568372400000,1568372460000,1568372520000,1568372580000,1568372640000,1568372700000,1568372760000,1568372820000,1568372880000,1568372940000,1568373000000,1568373060000,1568373120000,1568373180000,1568373240000,1568373300000,1568373360000,1568373420000,1568373480000,1568373540000,1568373600000,1568373660000,1568373720000,1568373780000,1568373840000,1568373900000,1568373960000,1568374020000,1568374080000,1568374140000,1568374200000,1568374260000,1568374320000,1568374380000,1568374440000,1568374500000,1568374560000,1568374620000,1568374680000,1568374740000,1568374800000,1568374860000,1568374920000,1568374980000,1568375040000,1568375100000,1568375160000,1568375220000,1568375280000,1568375340000,1568375400000,1568375460000,1568375520000,1568375580000,1568375640000,1568375700000,1568375760000,1568375820000,1568375880000,1568375940000,1568376000000,1568376060000,1568376120000,1568376180000,1568376240000,1568376300000,1568376360000,1568376420000,1568376480000,1568376540000,1568376600000,1568376660000,1568376720000,1568376780000,1568376840000,1568376900000,1568376960000,1568377020000,1568377080000,1568377140000,1568377200000,1568377260000,1568377320000,1568377380000,1568377440000,1568377500000,1568377560000,1568377620000,1568377680000,1568377740000,1568377800000,1568377860000,1568377920000,1568377980000,1568378040000,1568378100000,1568378160000,1568378220000,1568378280000,1568378340000,1568378400000,1568378460000,1568378520000,1568378580000,1568378640000,1568378700000,1568378760000,1568378820000,1568378880000,1568378940000,1568379000000,1568379060000,1568379120000,1568379180000,1568379240000,1568379300000,1568379360000,1568379420000,1568379480000,1568379540000,1568379600000,1568379660000,1568379720000,1568379780000,1568379840000,1568379900000,1568379960000,1568380020000,1568380080000,1568380140000,1568380200000,1568380260000,1568380320000,1568380380000,1568380440000,1568380500000,1568380560000,1568380620000,1568380680000,1568380740000,1568380800000,1568380860000,1568380920000,1568380980000,1568381040000,1568381100000,1568381160000,1568381220000,1568381280000,1568381340000,1568381400000,1568381460000,1568381520000,1568381580000,1568381640000,1568381700000,1568381760000,1568381820000,1568381880000,1568381940000,1568382000000,1568382060000,1568382120000,1568382180000,1568382240000,1568382300000,1568382360000,1568382420000,1568382480000,1568382540000,1568382600000,1568382660000,1568382720000,1568382780000,1568382840000,1568382900000,1568382960000,1568383020000,1568383080000,1568383140000,1568383200000,1568383260000,1568383320000,1568383380000,1568383440000,1568383500000,1568383560000,1568383620000,1568383680000,1568383740000,1568383800000,1568383860000,1568383920000,1568383980000,1568384040000,1568384100000,1568384160000,1568384220000,1568384280000,1568384340000,1568384400000,1568384460000,1568384520000,1568384580000,1568384640000,1568384700000,1568384760000,1568384820000,1568384880000,1568384940000,1568385000000,1568385060000,1568385120000,1568385180000,1568385240000,1568385300000,1568385360000,1568385420000,1568385480000,1568385540000,1568385600000,1568385660000,1568385720000,1568385780000,1568385840000,1568385900000,1568385960000,1568386020000,1568386080000,1568386140000,1568386200000,1568386260000,1568386320000,1568386380000,1568386440000,1568386500000,1568386560000,1568386620000,1568386680000,1568386740000,1568386800000,1568386860000,1568386920000,1568386980000,1568387040000,1568387100000,1568387160000,1568387220000,1568387280000,1568387340000,1568387400000,1568387460000,1568387520000,1568387580000,1568387640000,1568387700000,1568387760000,1568387820000,1568387880000,1568387940000,1568388000000,1568388060000,1568388120000,1568388180000,1568388240000,1568388300000,1568388360000,1568388420000,1568388480000,1568388540000,1568388600000,1568388660000,1568388720000,1568388780000,1568388840000,1568388900000,1568388960000,1568389020000,1568389080000,1568389140000,1568389200000,1568389260000,1568389320000,1568389380000,1568389440000,1568389500000,1568389560000,1568389620000,1568389680000,1568389740000,1568389800000,1568389860000,1568389920000,1568389980000,1568390040000,1568390100000,1568390160000,1568390220000,1568390280000,1568390340000,1568390400000,1568390460000,1568390520000,1568390580000,1568390640000,1568390700000,1568390760000,1568390820000,1568390880000,1568390940000,1568391000000,1568391060000,1568391120000,1568391180000,1568391240000,1568391300000,1568391360000,1568391420000,1568391480000,1568391540000,1568391600000,1568391660000,1568391720000,1568391780000,1568391840000,1568391900000,1568391960000,1568392020000,1568392080000,1568392140000,1568392200000,1568392260000,1568392320000,1568392380000,1568392440000,1568392500000,1568392560000,1568392620000,1568392680000,1568392740000,1568392800000,1568392860000,1568392920000,1568392980000,1568393040000,1568393100000,1568393160000,1568393220000,1568393280000,1568393340000,1568393400000,1568393460000,1568393520000,1568393580000,1568393640000,1568393700000,1568393760000,1568393820000,1568393880000,1568393940000,1568394000000,1568394060000,1568394120000,1568394180000,1568394240000,1568394300000,1568394360000,1568394420000,1568394480000,1568394540000,1568394600000,1568394660000,1568394720000,1568394780000,1568394840000,1568394900000,1568394960000,1568395020000,1568395080000,1568395140000,1568395200000,1568395260000,1568395320000,1568395380000,1568395440000,1568395500000,1568395560000,1568395620000,1568395680000,1568395740000,1568395800000,1568395860000,1568395920000,1568395980000,1568396040000,1568396100000,1568396160000,1568396220000,1568396280000,1568396340000,1568396400000,1568396460000,1568396520000,1568396580000,1568396640000,1568396700000,1568396760000,1568396820000,1568396880000,1568396940000,1568397000000,1568397060000,1568397120000,1568397180000,1568397240000,1568397300000,1568397360000,1568397420000,1568397480000,1568397540000,1568397600000,1568397660000,1568397720000,1568397780000,1568397840000,1568397900000,1568397960000,1568398020000,1568398080000,1568398140000,1568398200000,1568398260000,1568398320000,1568398380000,1568398440000,1568398500000,1568398560000,1568398620000,1568398680000,1568398740000,1568398800000,1568398860000,1568398920000,1568398980000,1568399040000,1568399100000,1568399160000,1568399220000,1568399280000,1568399340000,1568399400000,1568399460000,1568399520000,1568399580000,1568399640000,1568399700000,1568399760000,1568399820000,1568399880000,1568399940000,1568400000000,1568400060000,1568400120000,1568400180000,1568400240000,1568400300000,1568400360000,1568400420000,1568400480000,1568400540000,1568400600000,1568400660000,1568400720000,1568400780000,1568400840000,1568400900000,1568400960000,1568401020000,1568401080000,1568401140000,1568401200000,1568401260000,1568401320000,1568401380000,1568401440000,1568401500000,1568401560000,1568401620000,1568401680000,1568401740000,1568401800000,1568401860000,1568401920000,1568401980000,1568402040000,1568402100000,1568402160000,1568402220000,1568402280000,1568402340000,1568402400000,1568402460000,1568402520000,1568402580000,1568402640000,1568402700000,1568402760000,1568402820000,1568402880000,1568402940000,1568403000000,1568403060000,1568403120000,1568403180000,1568403240000,1568403300000,1568403360000,1568403420000,1568403480000,1568403540000,1568403600000,1568403660000,1568403720000,1568403780000,1568403840000,1568403900000,1568403960000,1568404020000,1568404080000,1568404140000,1568404200000,1568404260000,1568404320000,1568404380000,1568404440000,1568404500000,1568404560000,1568404620000,1568404680000,1568404740000,1568404800000,1568404860000,1568404920000,1568404980000,1568405040000,1568405100000,1568405160000,1568405220000,1568405280000,1568405340000,1568405400000,1568405460000,1568405520000,1568405580000,1568405640000,1568405700000,1568405760000,1568405820000,1568405880000,1568405940000,1568406000000,1568406060000,1568406120000,1568406180000,1568406240000,1568406300000,1568406360000,1568406420000,1568406480000,1568406540000,1568406600000,1568406660000,1568406720000,1568406780000,1568406840000,1568406900000,1568406960000,1568407020000,1568407080000,1568407140000,1568407200000,1568407260000,1568407320000,1568407380000,1568407440000,1568407500000,1568407560000,1568407620000,1568407680000,1568407740000,1568407800000,1568407860000,1568407920000,1568407980000,1568408040000,1568408100000,1568408160000,1568408220000,1568408280000,1568408340000,1568408400000,1568408460000,1568408520000,1568408580000,1568408640000,1568408700000,1568408760000,1568408820000,1568408880000,1568408940000,1568409000000,1568409060000,1568409120000,1568409180000,1568409240000,1568409300000,1568409360000,1568409420000,1568409480000,1568409540000,1568409600000,1568409660000,1568409720000,1568409780000,1568409840000,1568409900000,1568409960000,1568410020000,1568410080000,1568410140000,1568410200000,1568410260000,1568410320000,1568410380000,1568410440000,1568410500000,1568410560000,1568410620000,1568410680000,1568410740000,1568410800000,1568410860000,1568410920000,1568410980000,1568411040000,1568411100000,1568411160000,1568411220000,1568411280000,1568411340000,1568411400000,1568411460000,1568411520000,1568411580000,1568411640000,1568411700000,1568411760000,1568411820000,1568411880000,1568411940000,1568412000000,1568412060000,1568412120000,1568412180000,1568412240000,1568412300000,1568412360000,1568412420000,1568412480000,1568412540000,1568412600000,1568412660000,1568412720000,1568412780000,1568412840000,1568412900000,1568412960000,1568413020000,1568413080000,1568413140000,1568413200000,1568413260000,1568413320000,1568413380000,1568413440000,1568413500000,1568413560000,1568413620000,1568413680000,1568413740000,1568413800000,1568413860000,1568413920000,1568413980000,1568414040000,1568414100000,1568414160000,1568414220000,1568414280000,1568414340000,1568414400000,1568414460000,1568414520000,1568414580000,1568414640000,1568414700000,1568414760000,1568414820000,1568414880000,1568414940000,1568415000000,1568415060000,1568415120000,1568415180000,1568415240000,1568415300000,1568415360000,1568415420000,1568415480000,1568415540000,1568415600000,1568415660000,1568415720000,1568415780000,1568415840000,1568415900000,1568415960000,1568416020000,1568416080000,1568416140000,1568416200000,1568416260000,1568416320000,1568416380000,1568416440000,1568416500000,1568416560000,1568416620000,1568416680000,1568416740000,1568416800000,1568416860000,1568416920000,1568416980000,1568417040000,1568417100000,1568417160000,1568417220000,1568417280000,1568417340000,1568417400000,1568417460000,1568417520000,1568417580000,1568417640000,1568417700000,1568417760000,1568417820000,1568417880000,1568417940000,1568418000000,1568418060000,1568418120000,1568418180000,1568418240000,1568418300000,1568418360000,1568418420000,1568418480000,1568418540000,1568418600000,1568418660000,1568418720000,1568418780000,1568418840000,1568418900000,1568418960000,1568419020000,1568419080000,1568419140000,1568419200000,1568419260000,1568419320000,1568419380000,1568419440000,1568419500000,1568419560000,1568419620000,1568419680000,1568419740000,1568419800000,1568419860000,1568419920000,1568419980000,1568420040000,1568420100000,1568420160000,1568420220000,1568420280000,1568420340000,1568420400000,1568420460000,1568420520000,1568420580000,1568420640000,1568420700000,1568420760000,1568420820000,1568420880000,1568420940000,1568421000000,1568421060000,1568421120000,1568421180000,1568421240000,1568421300000,1568421360000,1568421420000,1568421480000,1568421540000,1568421600000,1568421660000,1568421720000,1568421780000,1568421840000,1568421900000,1568421960000,1568422020000,1568422080000,1568422140000,1568422200000,1568422260000,1568422320000,1568422380000,1568422440000,1568422500000,1568422560000,1568422620000,1568422680000,1568422740000,1568422800000,1568422860000,1568422920000,1568422980000,1568423040000,1568423100000,1568423160000,1568423220000,1568423280000,1568423340000,1568423400000,1568423460000,1568423520000,1568423580000,1568423640000,1568423700000,1568423760000,1568423820000,1568423880000,1568423940000,1568424000000,1568424060000,1568424120000,1568424180000,1568424240000,1568424300000,1568424360000,1568424420000,1568424480000,1568424540000,1568424600000,1568424660000,1568424720000,1568424780000,1568424840000,1568424900000,1568424960000,1568425020000,1568425080000,1568425140000,1568425200000,1568425260000,1568425320000,1568425380000,1568425440000,1568425500000,1568425560000,1568425620000,1568425680000,1568425740000,1568425800000,1568425860000,1568425920000,1568425980000,1568426040000,1568426100000,1568426160000,1568426220000,1568426280000,1568426340000,1568426400000,1568426460000,1568426520000,1568426580000,1568426640000,1568426700000,1568426760000,1568426820000,1568426880000,1568426940000,1568427000000,1568427060000,1568427120000,1568427180000,1568427240000,1568427300000,1568427360000,1568427420000,1568427480000,1568427540000,1568427600000,1568427660000,1568427720000,1568427780000,1568427840000,1568427900000,1568427960000,1568428020000,1568428080000,1568428140000,1568428200000,1568428260000,1568428320000,1568428380000,1568428440000,1568428500000,1568428560000,1568428620000,1568428680000,1568428740000,1568428800000,1568428860000,1568428920000,1568428980000,1568429040000,1568429100000,1568429160000,1568429220000,1568429280000,1568429340000,1568429400000,1568429460000,1568429520000,1568429580000,1568429640000,1568429700000,1568429760000,1568429820000,1568429880000,1568429940000,1568430000000,1568430060000,1568430120000,1568430180000,1568430240000,1568430300000,1568430360000,1568430420000,1568430480000,1568430540000,1568430600000,1568430660000,1568430720000,1568430780000,1568430840000,1568430900000,1568430960000,1568431020000,1568431080000,1568431140000,1568431200000,1568431260000,1568431320000,1568431380000,1568431440000,1568431500000,1568431560000,1568431620000,1568431680000,1568431740000,1568431800000,1568431860000,1568431920000,1568431980000,1568432040000,1568432100000,1568432160000,1568432220000,1568432280000,1568432340000,1568432400000,1568432460000,1568432520000,1568432580000,1568432640000,1568432700000,1568432760000,1568432820000,1568432880000,1568432940000,1568433000000,1568433060000,1568433120000,1568433180000,1568433240000,1568433300000,1568433360000,1568433420000,1568433480000,1568433540000,1568433600000,1568433660000,1568433720000,1568433780000,1568433840000,1568433900000,1568433960000,1568434020000,1568434080000,1568434140000,1568434200000,1568434260000,1568434320000,1568434380000,1568434440000,1568434500000,1568434560000,1568434620000,1568434680000,1568434740000,1568434800000,1568434860000,1568434920000,1568434980000,1568435040000,1568435100000,1568435160000,1568435220000,1568435280000,1568435340000,1568435400000,1568435460000,1568435520000,1568435580000,1568435640000,1568435700000,1568435760000,1568435820000,1568435880000,1568435940000,1568436000000,1568436060000,1568436120000,1568436180000,1568436240000,1568436300000,1568436360000,1568436420000,1568436480000,1568436540000,1568436600000,1568436660000,1568436720000,1568436780000,1568436840000,1568436900000,1568436960000,1568437020000,1568437080000,1568437140000,1568437200000,1568437260000,1568437320000,1568437380000,1568437440000,1568437500000,1568437560000,1568437620000,1568437680000,1568437740000,1568437800000,1568437860000,1568437920000,1568437980000,1568438040000,1568438100000,1568438160000,1568438220000,1568438280000,1568438340000,1568438400000,1568438460000,1568438520000,1568438580000,1568438640000,1568438700000,1568438760000,1568438820000,1568438880000,1568438940000,1568439000000,1568439060000,1568439120000,1568439180000,1568439240000,1568439300000,1568439360000,1568439420000,1568439480000,1568439540000,1568439600000,1568439660000,1568439720000,1568439780000,1568439840000,1568439900000,1568439960000,1568440020000,1568440080000,1568440140000,1568440200000,1568440260000,1568440320000,1568440380000,1568440440000,1568440500000,1568440560000,1568440620000,1568440680000,1568440740000,1568440800000,1568440860000,1568440920000,1568440980000,1568441040000,1568441100000,1568441160000,1568441220000,1568441280000,1568441340000,1568441400000,1568441460000,1568441520000,1568441580000,1568441640000,1568441700000,1568441760000,1568441820000,1568441880000,1568441940000,1568442000000,1568442060000,1568442120000,1568442180000,1568442240000,1568442300000,1568442360000,1568442420000,1568442480000,1568442540000,1568442600000,1568442660000,1568442720000,1568442780000,1568442840000,1568442900000,1568442960000,1568443020000,1568443080000,1568443140000,1568443200000,1568443260000,1568443320000,1568443380000,1568443440000,1568443500000,1568443560000,1568443620000,1568443680000,1568443740000,1568443800000,1568443860000,1568443920000,1568443980000,1568444040000,1568444100000,1568444160000,1568444220000,1568444280000,1568444340000,1568444400000,1568444460000,1568444520000,1568444580000,1568444640000,1568444700000,1568444760000,1568444820000,1568444880000,1568444940000,1568445000000,1568445060000,1568445120000,1568445180000,1568445240000,1568445300000,1568445360000,1568445420000,1568445480000,1568445540000,1568445600000,1568445660000,1568445720000,1568445780000,1568445840000,1568445900000,1568445960000,1568446020000,1568446080000,1568446140000,1568446200000,1568446260000,1568446320000,1568446380000,1568446440000,1568446500000,1568446560000,1568446620000,1568446680000,1568446740000,1568446800000,1568446860000,1568446920000,1568446980000,1568447040000,1568447100000,1568447160000,1568447220000,1568447280000,1568447340000,1568447400000,1568447460000,1568447520000,1568447580000,1568447640000,1568447700000,1568447760000,1568447820000,1568447880000,1568447940000,1568448000000,1568448060000,1568448120000,1568448180000,1568448240000,1568448300000,1568448360000,1568448420000,1568448480000,1568448540000,1568448600000,1568448660000,1568448720000,1568448780000,1568448840000,1568448900000,1568448960000,1568449020000,1568449080000,1568449140000,1568449200000,1568449260000,1568449320000,1568449380000,1568449440000,1568449500000,1568449560000,1568449620000,1568449680000,1568449740000,1568449800000,1568449860000,1568449920000,1568449980000,1568450040000,1568450100000,1568450160000,1568450220000,1568450280000,1568450340000,1568450400000,1568450460000,1568450520000,1568450580000,1568450640000,1568450700000,1568450760000,1568450820000,1568450880000,1568450940000,1568451000000,1568451060000,1568451120000,1568451180000,1568451240000,1568451300000,1568451360000,1568451420000,1568451480000,1568451540000,1568451600000,1568451660000,1568451720000,1568451780000,1568451840000,1568451900000,1568451960000,1568452020000,1568452080000,1568452140000,1568452200000,1568452260000,1568452320000,1568452380000,1568452440000,1568452500000,1568452560000,1568452620000,1568452680000,1568452740000,1568452800000,1568452860000,1568452920000,1568452980000,1568453040000,1568453100000,1568453160000,1568453220000,1568453280000,1568453340000,1568453400000,1568453460000,1568453520000,1568453580000,1568453640000,1568453700000,1568453760000,1568453820000,1568453880000,1568453940000,1568454000000,1568454060000,1568454120000,1568454180000,1568454240000,1568454300000,1568454360000,1568454420000,1568454480000,1568454540000,1568454600000,1568454660000,1568454720000,1568454780000,1568454840000,1568454900000,1568454960000,1568455020000,1568455080000,1568455140000,1568455200000,1568455260000,1568455320000,1568455380000,1568455440000,1568455500000,1568455560000,1568455620000,1568455680000,1568455740000,1568455800000,1568455860000,1568455920000,1568455980000,1568456040000,1568456100000,1568456160000,1568456220000,1568456280000,1568456340000,1568456400000,1568456460000,1568456520000,1568456580000,1568456640000,1568456700000,1568456760000,1568456820000,1568456880000,1568456940000,1568457000000,1568457060000,1568457120000,1568457180000,1568457240000,1568457300000,1568457360000,1568457420000,1568457480000,1568457540000,1568457600000,1568457660000,1568457720000,1568457780000,1568457840000,1568457900000,1568457960000,1568458020000,1568458080000,1568458140000,1568458200000,1568458260000,1568458320000,1568458380000,1568458440000,1568458500000,1568458560000,1568458620000,1568458680000,1568458740000,1568458800000,1568458860000,1568458920000,1568458980000,1568459040000,1568459100000,1568459160000,1568459220000,1568459280000,1568459340000,1568459400000,1568459460000,1568459520000,1568459580000,1568459640000,1568459700000,1568459760000,1568459820000,1568459880000,1568459940000,1568460000000,1568460060000,1568460120000,1568460180000,1568460240000,1568460300000,1568460360000,1568460420000,1568460480000,1568460540000,1568460600000,1568460660000,1568460720000,1568460780000,1568460840000,1568460900000,1568460960000,1568461020000,1568461080000,1568461140000,1568461200000,1568461260000,1568461320000,1568461380000,1568461440000,1568461500000,1568461560000,1568461620000,1568461680000,1568461740000,1568461800000,1568461860000,1568461920000,1568461980000,1568462040000,1568462100000,1568462160000,1568462220000,1568462280000,1568462340000,1568462400000,1568462460000,1568462520000,1568462580000,1568462640000,1568462700000,1568462760000,1568462820000,1568462880000,1568462940000,1568463000000,1568463060000,1568463120000,1568463180000,1568463240000,1568463300000,1568463360000,1568463420000,1568463480000,1568463540000,1568463600000,1568463660000,1568463720000,1568463780000,1568463840000,1568463900000,1568463960000,1568464020000,1568464080000,1568464140000,1568464200000,1568464260000,1568464320000,1568464380000,1568464440000,1568464500000,1568464560000,1568464620000,1568464680000,1568464740000,1568464800000,1568464860000,1568464920000,1568464980000,1568465040000,1568465100000,1568465160000,1568465220000,1568465280000,1568465340000,1568465400000,1568465460000,1568465520000,1568465580000,1568465640000,1568465700000,1568465760000,1568465820000,1568465880000,1568465940000,1568466000000,1568466060000,1568466120000,1568466180000,1568466240000,1568466300000,1568466360000,1568466420000,1568466480000,1568466540000,1568466600000,1568466660000,1568466720000,1568466780000,1568466840000,1568466900000,1568466960000,1568467020000,1568467080000,1568467140000,1568467200000,1568467260000,1568467320000,1568467380000,1568467440000,1568467500000,1568467560000,1568467620000,1568467680000,1568467740000,1568467800000,1568467860000,1568467920000,1568467980000,1568468040000,1568468100000,1568468160000,1568468220000,1568468280000,1568468340000,1568468400000,1568468460000,1568468520000,1568468580000,1568468640000,1568468700000,1568468760000,1568468820000,1568468880000,1568468940000,1568469000000,1568469060000,1568469120000,1568469180000,1568469240000,1568469300000,1568469360000,1568469420000,1568469480000,1568469540000,1568469600000,1568469660000,1568469720000,1568469780000,1568469840000,1568469900000,1568469960000,1568470020000,1568470080000,1568470140000,1568470200000,1568470260000,1568470320000,1568470380000,1568470440000,1568470500000,1568470560000,1568470620000,1568470680000,1568470740000,1568470800000,1568470860000,1568470920000,1568470980000,1568471040000,1568471100000,1568471160000,1568471220000,1568471280000,1568471340000,1568471400000,1568471460000,1568471520000,1568471580000,1568471640000,1568471700000,1568471760000,1568471820000,1568471880000,1568471940000,1568472000000,1568472060000,1568472120000,1568472180000,1568472240000,1568472300000,1568472360000,1568472420000,1568472480000,1568472540000,1568472600000,1568472660000,1568472720000,1568472780000,1568472840000,1568472900000,1568472960000,1568473020000,1568473080000,1568473140000,1568473200000,1568473260000,1568473320000,1568473380000,1568473440000,1568473500000,1568473560000,1568473620000,1568473680000,1568473740000,1568473800000,1568473860000,1568473920000,1568473980000,1568474040000,1568474100000,1568474160000,1568474220000,1568474280000,1568474340000,1568474400000,1568474460000,1568474520000,1568474580000,1568474640000,1568474700000,1568474760000,1568474820000,1568474880000,1568474940000,1568475000000,1568475060000,1568475120000,1568475180000,1568475240000,1568475300000,1568475360000,1568475420000,1568475480000,1568475540000,1568475600000,1568475660000,1568475720000,1568475780000,1568475840000,1568475900000,1568475960000,1568476020000,1568476080000,1568476140000,1568476200000,1568476260000,1568476320000,1568476380000,1568476440000,1568476500000,1568476560000,1568476620000,1568476680000,1568476740000,1568476800000,1568476860000,1568476920000,1568476980000,1568477040000,1568477100000,1568477160000,1568477220000,1568477280000,1568477340000,1568477400000,1568477460000,1568477520000,1568477580000,1568477640000,1568477700000,1568477760000,1568477820000,1568477880000,1568477940000,1568478000000,1568478060000,1568478120000,1568478180000,1568478240000,1568478300000,1568478360000,1568478420000,1568478480000,1568478540000,1568478600000,1568478660000,1568478720000,1568478780000,1568478840000,1568478900000,1568478960000,1568479020000,1568479080000,1568479140000,1568479200000,1568479260000,1568479320000,1568479380000,1568479440000,1568479500000,1568479560000,1568479620000,1568479680000,1568479740000,1568479800000,1568479860000,1568479920000,1568479980000,1568480040000,1568480100000,1568480160000,1568480220000,1568480280000,1568480340000,1568480400000,1568480460000,1568480520000,1568480580000,1568480640000,1568480700000,1568480760000,1568480820000,1568480880000,1568480940000,1568481000000,1568481060000,1568481120000,1568481180000,1568481240000,1568481300000,1568481360000,1568481420000,1568481480000,1568481540000,1568481600000,1568481660000,1568481720000,1568481780000,1568481840000,1568481900000,1568481960000,1568482020000,1568482080000,1568482140000,1568482200000,1568482260000,1568482320000,1568482380000,1568482440000,1568482500000,1568482560000,1568482620000,1568482680000,1568482740000,1568482800000,1568482860000,1568482920000,1568482980000,1568483040000,1568483100000,1568483160000,1568483220000,1568483280000,1568483340000,1568483400000,1568483460000,1568483520000,1568483580000,1568483640000,1568483700000,1568483760000,1568483820000,1568483880000,1568483940000,1568484000000,1568484060000,1568484120000,1568484180000,1568484240000,1568484300000,1568484360000,1568484420000,1568484480000,1568484540000,1568484600000,1568484660000,1568484720000,1568484780000,1568484840000,1568484900000,1568484960000,1568485020000,1568485080000,1568485140000,1568485200000,1568485260000,1568485320000,1568485380000,1568485440000,1568485500000,1568485560000,1568485620000,1568485680000,1568485740000,1568485800000,1568485860000,1568485920000,1568485980000,1568486040000,1568486100000,1568486160000,1568486220000,1568486280000,1568486340000,1568486400000,1568486460000,1568486520000,1568486580000,1568486640000,1568486700000,1568486760000,1568486820000,1568486880000,1568486940000,1568487000000,1568487060000,1568487120000,1568487180000,1568487240000,1568487300000,1568487360000,1568487420000,1568487480000,1568487540000,1568487600000,1568487660000,1568487720000,1568487780000,1568487840000,1568487900000,1568487960000,1568488020000,1568488080000,1568488140000,1568488200000,1568488260000,1568488320000,1568488380000,1568488440000,1568488500000,1568488560000,1568488620000,1568488680000,1568488740000,1568488800000,1568488860000,1568488920000,1568488980000,1568489040000,1568489100000,1568489160000,1568489220000,1568489280000,1568489340000,1568489400000,1568489460000,1568489520000,1568489580000,1568489640000,1568489700000,1568489760000,1568489820000,1568489880000,1568489940000,1568490000000,1568490060000,1568490120000,1568490180000,1568490240000,1568490300000,1568490360000,1568490420000,1568490480000,1568490540000,1568490600000,1568490660000,1568490720000,1568490780000,1568490840000,1568490900000,1568490960000,1568491020000,1568491080000,1568491140000,1568491200000,1568491260000,1568491320000,1568491380000,1568491440000,1568491500000,1568491560000,1568491620000,1568491680000,1568491740000,1568491800000,1568491860000,1568491920000,1568491980000,1568492040000,1568492100000,1568492160000,1568492220000,1568492280000,1568492340000,1568492400000,1568492460000,1568492520000,1568492580000,1568492640000,1568492700000,1568492760000,1568492820000,1568492880000,1568492940000,1568493000000,1568493060000,1568493120000,1568493180000,1568493240000,1568493300000,1568493360000,1568493420000,1568493480000,1568493540000,1568493600000,1568493660000,1568493720000,1568493780000,1568493840000,1568493900000,1568493960000,1568494020000,1568494080000,1568494140000,1568494200000,1568494260000,1568494320000,1568494380000,1568494440000,1568494500000,1568494560000,1568494620000,1568494680000,1568494740000,1568494800000,1568494860000,1568494920000,1568494980000,1568495040000,1568495100000,1568495160000,1568495220000,1568495280000,1568495340000,1568495400000,1568495460000,1568495520000,1568495580000,1568495640000,1568495700000,1568495760000,1568495820000,1568495880000,1568495940000,1568496000000,1568496060000,1568496120000,1568496180000,1568496240000,1568496300000,1568496360000,1568496420000,1568496480000,1568496540000,1568496600000,1568496660000,1568496720000,1568496780000,1568496840000,1568496900000,1568496960000,1568497020000,1568497080000,1568497140000,1568497200000,1568497260000,1568497320000,1568497380000,1568497440000,1568497500000,1568497560000,1568497620000,1568497680000,1568497740000,1568497800000,1568497860000,1568497920000,1568497980000,1568498040000,1568498100000,1568498160000,1568498220000,1568498280000,1568498340000,1568498400000,1568498460000,1568498520000,1568498580000,1568498640000,1568498700000,1568498760000,1568498820000,1568498880000,1568498940000,1568499000000,1568499060000,1568499120000,1568499180000,1568499240000,1568499300000,1568499360000,1568499420000,1568499480000,1568499540000,1568499600000,1568499660000,1568499720000,1568499780000,1568499840000,1568499900000,1568499960000,1568500020000,1568500080000,1568500140000,1568500200000,1568500260000,1568500320000,1568500380000,1568500440000,1568500500000,1568500560000,1568500620000,1568500680000,1568500740000,1568500800000,1568500860000,1568500920000,1568500980000,1568501040000,1568501100000,1568501160000,1568501220000,1568501280000,1568501340000,1568501400000,1568501460000,1568501520000,1568501580000,1568501640000,1568501700000,1568501760000,1568501820000,1568501880000,1568501940000,1568502000000,1568502060000,1568502120000,1568502180000,1568502240000,1568502300000,1568502360000,1568502420000,1568502480000,1568502540000,1568502600000,1568502660000,1568502720000,1568502780000,1568502840000,1568502900000,1568502960000,1568503020000,1568503080000,1568503140000,1568503200000,1568503260000,1568503320000,1568503380000,1568503440000,1568503500000,1568503560000,1568503620000,1568503680000,1568503740000,1568503800000,1568503860000,1568503920000,1568503980000,1568504040000,1568504100000,1568504160000,1568504220000,1568504280000,1568504340000,1568504400000,1568504460000,1568504520000,1568504580000,1568504640000,1568504700000,1568504760000,1568504820000,1568504880000,1568504940000,1568505000000,1568505060000,1568505120000,1568505180000,1568505240000,1568505300000,1568505360000,1568505420000,1568505480000,1568505540000,1568505600000,1568505660000,1568505720000,1568505780000,1568505840000,1568505900000,1568505960000,1568506020000,1568506080000,1568506140000,1568506200000,1568506260000,1568506320000,1568506380000,1568506440000,1568506500000,1568506560000,1568506620000,1568506680000,1568506740000,1568506800000,1568506860000,1568506920000,1568506980000,1568507040000,1568507100000,1568507160000,1568507220000,1568507280000,1568507340000,1568507400000,1568507460000,1568507520000,1568507580000,1568507640000,1568507700000,1568507760000,1568507820000,1568507880000,1568507940000,1568508000000,1568508060000,1568508120000,1568508180000,1568508240000,1568508300000,1568508360000,1568508420000,1568508480000,1568508540000,1568508600000,1568508660000,1568508720000,1568508780000,1568508840000,1568508900000,1568508960000,1568509020000,1568509080000,1568509140000,1568509200000,1568509260000,1568509320000,1568509380000,1568509440000,1568509500000,1568509560000,1568509620000,1568509680000,1568509740000,1568509800000,1568509860000,1568509920000,1568509980000,1568510040000,1568510100000,1568510160000,1568510220000,1568510280000,1568510340000,1568510400000,1568510460000,1568510520000,1568510580000,1568510640000,1568510700000,1568510760000,1568510820000,1568510880000,1568510940000,1568511000000,1568511060000,1568511120000,1568511180000,1568511240000,1568511300000,1568511360000,1568511420000,1568511480000,1568511540000,1568511600000,1568511660000,1568511720000,1568511780000,1568511840000,1568511900000,1568511960000,1568512020000,1568512080000,1568512140000,1568512200000,1568512260000,1568512320000,1568512380000,1568512440000,1568512500000,1568512560000,1568512620000,1568512680000,1568512740000,1568512800000,1568512860000,1568512920000,1568512980000,1568513040000,1568513100000,1568513160000,1568513220000,1568513280000,1568513340000,1568513400000,1568513460000,1568513520000,1568513580000,1568513640000,1568513700000,1568513760000,1568513820000,1568513880000,1568513940000,1568514000000,1568514060000,1568514120000,1568514180000,1568514240000,1568514300000,1568514360000,1568514420000,1568514480000,1568514540000,1568514600000,1568514660000,1568514720000,1568514780000,1568514840000,1568514900000,1568514960000,1568515020000,1568515080000,1568515140000,1568515200000,1568515260000,1568515320000,1568515380000,1568515440000,1568515500000,1568515560000,1568515620000,1568515680000,1568515740000,1568515800000,1568515860000,1568515920000,1568515980000,1568516040000,1568516100000,1568516160000,1568516220000,1568516280000,1568516340000,1568516400000,1568516460000,1568516520000,1568516580000,1568516640000,1568516700000,1568516760000,1568516820000,1568516880000,1568516940000,1568517000000,1568517060000,1568517120000,1568517180000,1568517240000,1568517300000,1568517360000,1568517420000,1568517480000,1568517540000,1568517600000,1568517660000,1568517720000,1568517780000,1568517840000,1568517900000,1568517960000,1568518020000,1568518080000,1568518140000,1568518200000,1568518260000,1568518320000,1568518380000,1568518440000,1568518500000,1568518560000,1568518620000,1568518680000,1568518740000,1568518800000,1568518860000,1568518920000,1568518980000,1568519040000,1568519100000,1568519160000,1568519220000,1568519280000,1568519340000,1568519400000,1568519460000,1568519520000,1568519580000,1568519640000,1568519700000,1568519760000,1568519820000,1568519880000,1568519940000,1568520000000,1568520060000,1568520120000,1568520180000,1568520240000,1568520300000,1568520360000,1568520420000,1568520480000,1568520540000,1568520600000,1568520660000,1568520720000,1568520780000,1568520840000,1568520900000,1568520960000,1568521020000,1568521080000,1568521140000,1568521200000,1568521260000,1568521320000,1568521380000,1568521440000,1568521500000,1568521560000,1568521620000,1568521680000,1568521740000,1568521800000,1568521860000,1568521920000,1568521980000,1568522040000,1568522100000,1568522160000,1568522220000,1568522280000,1568522340000,1568522400000,1568522460000,1568522520000,1568522580000,1568522640000,1568522700000,1568522760000,1568522820000,1568522880000,1568522940000,1568523000000,1568523060000,1568523120000,1568523180000,1568523240000,1568523300000,1568523360000,1568523420000,1568523480000,1568523540000,1568523600000,1568523660000,1568523720000,1568523780000,1568523840000,1568523900000,1568523960000,1568524020000,1568524080000,1568524140000,1568524200000,1568524260000,1568524320000,1568524380000,1568524440000,1568524500000,1568524560000,1568524620000,1568524680000,1568524740000,1568524800000,1568524860000,1568524920000,1568524980000,1568525040000,1568525100000,1568525160000,1568525220000,1568525280000,1568525340000,1568525400000,1568525460000,1568525520000,1568525580000,1568525640000,1568525700000,1568525760000,1568525820000,1568525880000,1568525940000,1568526000000,1568526060000,1568526120000,1568526180000,1568526240000,1568526300000,1568526360000,1568526420000,1568526480000,1568526540000,1568526600000,1568526660000,1568526720000,1568526780000,1568526840000,1568526900000,1568526960000,1568527020000,1568527080000,1568527140000,1568527200000,1568527260000,1568527320000,1568527380000,1568527440000,1568527500000,1568527560000,1568527620000,1568527680000,1568527740000,1568527800000,1568527860000,1568527920000,1568527980000,1568528040000,1568528100000,1568528160000,1568528220000,1568528280000,1568528340000,1568528400000,1568528460000,1568528520000,1568528580000,1568528640000,1568528700000,1568528760000,1568528820000,1568528880000,1568528940000,1568529000000,1568529060000,1568529120000,1568529180000,1568529240000,1568529300000,1568529360000,1568529420000,1568529480000,1568529540000,1568529600000,1568529660000,1568529720000,1568529780000,1568529840000,1568529900000,1568529960000,1568530020000,1568530080000,1568530140000,1568530200000,1568530260000,1568530320000,1568530380000,1568530440000,1568530500000,1568530560000,1568530620000,1568530680000,1568530740000,1568530800000,1568530860000,1568530920000,1568530980000,1568531040000,1568531100000,1568531160000,1568531220000,1568531280000,1568531340000,1568531400000,1568531460000,1568531520000,1568531580000,1568531640000,1568531700000,1568531760000,1568531820000,1568531880000,1568531940000,1568532000000,1568532060000,1568532120000,1568532180000,1568532240000,1568532300000,1568532360000,1568532420000,1568532480000,1568532540000,1568532600000,1568532660000,1568532720000,1568532780000,1568532840000,1568532900000,1568532960000,1568533020000,1568533080000,1568533140000,1568533200000,1568533260000,1568533320000,1568533380000,1568533440000,1568533500000,1568533560000,1568533620000,1568533680000,1568533740000,1568533800000,1568533860000,1568533920000,1568533980000,1568534040000,1568534100000,1568534160000,1568534220000,1568534280000,1568534340000,1568534400000,1568534460000,1568534520000,1568534580000,1568534640000,1568534700000,1568534760000,1568534820000,1568534880000,1568534940000,1568535000000,1568535060000,1568535120000,1568535180000,1568535240000,1568535300000,1568535360000,1568535420000,1568535480000,1568535540000,1568535600000,1568535660000,1568535720000,1568535780000,1568535840000,1568535900000,1568535960000,1568536020000,1568536080000,1568536140000,1568536200000,1568536260000,1568536320000,1568536380000,1568536440000,1568536500000,1568536560000,1568536620000,1568536680000,1568536740000,1568536800000,1568536860000,1568536920000,1568536980000,1568537040000,1568537100000,1568537160000,1568537220000,1568537280000,1568537340000,1568537400000,1568537460000,1568537520000,1568537580000,1568537640000,1568537700000,1568537760000,1568537820000,1568537880000,1568537940000,1568538000000,1568538060000,1568538120000,1568538180000,1568538240000,1568538300000,1568538360000,1568538420000,1568538480000,1568538540000,1568538600000,1568538660000,1568538720000,1568538780000,1568538840000,1568538900000,1568538960000,1568539020000,1568539080000,1568539140000,1568539200000,1568539260000,1568539320000,1568539380000,1568539440000,1568539500000,1568539560000,1568539620000,1568539680000,1568539740000,1568539800000,1568539860000,1568539920000,1568539980000,1568540040000,1568540100000,1568540160000,1568540220000,1568540280000,1568540340000,1568540400000,1568540460000,1568540520000,1568540580000,1568540640000,1568540700000,1568540760000,1568540820000,1568540880000,1568540940000,1568541000000,1568541060000,1568541120000,1568541180000,1568541240000,1568541300000,1568541360000,1568541420000,1568541480000,1568541540000,1568541600000,1568541660000,1568541720000,1568541780000,1568541840000,1568541900000,1568541960000,1568542020000,1568542080000,1568542140000,1568542200000,1568542260000,1568542320000,1568542380000,1568542440000,1568542500000,1568542560000,1568542620000,1568542680000,1568542740000,1568542800000,1568542860000,1568542920000,1568542980000,1568543040000,1568543100000,1568543160000,1568543220000,1568543280000,1568543340000,1568543400000,1568543460000,1568543520000,1568543580000,1568543640000,1568543700000,1568543760000,1568543820000,1568543880000,1568543940000,1568544000000,1568544060000,1568544120000,1568544180000,1568544240000,1568544300000,1568544360000,1568544420000,1568544480000,1568544540000,1568544600000,1568544660000,1568544720000,1568544780000,1568544840000,1568544900000,1568544960000,1568545020000,1568545080000,1568545140000,1568545200000,1568545260000,1568545320000,1568545380000,1568545440000,1568545500000,1568545560000,1568545620000,1568545680000,1568545740000,1568545800000,1568545860000,1568545920000,1568545980000,1568546040000,1568546100000,1568546160000,1568546220000,1568546280000,1568546340000,1568546400000,1568546460000,1568546520000,1568546580000,1568546640000,1568546700000,1568546760000,1568546820000,1568546880000,1568546940000,1568547000000,1568547060000,1568547120000,1568547180000,1568547240000,1568547300000,1568547360000,1568547420000,1568547480000,1568547540000,1568547600000,1568547660000,1568547720000,1568547780000,1568547840000,1568547900000,1568547960000,1568548020000,1568548080000,1568548140000,1568548200000,1568548260000,1568548320000,1568548380000,1568548440000,1568548500000,1568548560000,1568548620000,1568548680000,1568548740000,1568548800000,1568548860000,1568548920000,1568548980000,1568549040000,1568549100000,1568549160000,1568549220000,1568549280000,1568549340000,1568549400000,1568549460000,1568549520000,1568549580000,1568549640000,1568549700000,1568549760000,1568549820000,1568549880000,1568549940000,1568550000000,1568550060000,1568550120000,1568550180000,1568550240000,1568550300000,1568550360000,1568550420000,1568550480000,1568550540000,1568550600000,1568550660000,1568550720000,1568550780000,1568550840000,1568550900000,1568550960000,1568551020000,1568551080000,1568551140000,1568551200000,1568551260000,1568551320000,1568551380000,1568551440000,1568551500000,1568551560000,1568551620000,1568551680000,1568551740000,1568551800000,1568551860000,1568551920000,1568551980000,1568552040000,1568552100000,1568552160000,1568552220000,1568552280000,1568552340000,1568552400000,1568552460000,1568552520000,1568552580000,1568552640000,1568552700000,1568552760000,1568552820000,1568552880000,1568552940000,1568553000000,1568553060000,1568553120000,1568553180000,1568553240000,1568553300000,1568553360000,1568553420000,1568553480000,1568553540000,1568553600000,1568553660000,1568553720000,1568553780000,1568553840000,1568553900000,1568553960000,1568554020000,1568554080000,1568554140000,1568554200000,1568554260000,1568554320000,1568554380000,1568554440000,1568554500000,1568554560000,1568554620000,1568554680000,1568554740000,1568554800000,1568554860000,1568554920000,1568554980000,1568555040000,1568555100000,1568555160000,1568555220000,1568555280000,1568555340000,1568555400000,1568555460000,1568555520000,1568555580000,1568555640000,1568555700000,1568555760000,1568555820000,1568555880000,1568555940000,1568556000000,1568556060000,1568556120000,1568556180000,1568556240000,1568556300000,1568556360000,1568556420000,1568556480000,1568556540000,1568556600000,1568556660000,1568556720000,1568556780000,1568556840000,1568556900000,1568556960000,1568557020000,1568557080000,1568557140000,1568557200000,1568557260000,1568557320000,1568557380000,1568557440000,1568557500000,1568557560000,1568557620000,1568557680000,1568557740000,1568557800000,1568557860000,1568557920000,1568557980000,1568558040000,1568558100000,1568558160000,1568558220000,1568558280000,1568558340000,1568558400000,1568558460000,1568558520000,1568558580000,1568558640000,1568558700000,1568558760000,1568558820000,1568558880000,1568558940000,1568559000000,1568559060000,1568559120000,1568559180000,1568559240000,1568559300000,1568559360000,1568559420000,1568559480000,1568559540000,1568559600000,1568559660000,1568559720000,1568559780000,1568559840000,1568559900000,1568559960000,1568560020000,1568560080000,1568560140000,1568560200000,1568560260000,1568560320000,1568560380000,1568560440000,1568560500000,1568560560000,1568560620000,1568560680000,1568560740000,1568560800000,1568560860000,1568560920000,1568560980000,1568561040000,1568561100000,1568561160000,1568561220000,1568561280000,1568561340000,1568561400000,1568561460000,1568561520000,1568561580000,1568561640000,1568561700000,1568561760000,1568561820000,1568561880000,1568561940000,1568562000000,1568562060000,1568562120000,1568562180000,1568562240000,1568562300000,1568562360000,1568562420000,1568562480000,1568562540000,1568562600000,1568562660000,1568562720000,1568562780000,1568562840000,1568562900000,1568562960000,1568563020000,1568563080000,1568563140000,1568563200000,1568563260000,1568563320000,1568563380000,1568563440000,1568563500000,1568563560000,1568563620000,1568563680000,1568563740000,1568563800000,1568563860000,1568563920000,1568563980000,1568564040000,1568564100000,1568564160000,1568564220000,1568564280000,1568564340000,1568564400000,1568564460000,1568564520000,1568564580000,1568564640000,1568564700000,1568564760000,1568564820000,1568564880000,1568564940000,1568565000000,1568565060000,1568565120000,1568565180000,1568565240000,1568565300000,1568565360000,1568565420000,1568565480000,1568565540000,1568565600000,1568565660000,1568565720000,1568565780000,1568565840000,1568565900000,1568565960000,1568566020000,1568566080000,1568566140000,1568566200000,1568566260000,1568566320000,1568566380000,1568566440000,1568566500000,1568566560000,1568566620000,1568566680000,1568566740000,1568566800000,1568566860000,1568566920000,1568566980000,1568567040000,1568567100000,1568567160000,1568567220000,1568567280000,1568567340000,1568567400000,1568567460000,1568567520000,1568567580000,1568567640000,1568567700000,1568567760000,1568567820000,1568567880000,1568567940000,1568568000000,1568568060000,1568568120000,1568568180000,1568568240000,1568568300000,1568568360000,1568568420000,1568568480000,1568568540000,1568568600000,1568568660000,1568568720000,1568568780000,1568568840000,1568568900000,1568568960000,1568569020000,1568569080000,1568569140000,1568569200000,1568569260000,1568569320000,1568569380000,1568569440000,1568569500000,1568569560000,1568569620000,1568569680000,1568569740000,1568569800000,1568569860000,1568569920000,1568569980000,1568570040000,1568570100000,1568570160000,1568570220000,1568570280000,1568570340000,1568570400000,1568570460000,1568570520000,1568570580000,1568570640000,1568570700000,1568570760000,1568570820000,1568570880000,1568570940000,1568571000000,1568571060000,1568571120000,1568571180000,1568571240000,1568571300000,1568571360000,1568571420000,1568571480000,1568571540000,1568571600000,1568571660000,1568571720000,1568571780000,1568571840000,1568571900000,1568571960000,1568572020000,1568572080000,1568572140000,1568572200000,1568572260000,1568572320000,1568572380000,1568572440000,1568572500000,1568572560000,1568572620000,1568572680000,1568572740000,1568572800000,1568572860000,1568572920000,1568572980000,1568573040000,1568573100000,1568573160000,1568573220000,1568573280000,1568573340000,1568573400000,1568573460000,1568573520000,1568573580000,1568573640000,1568573700000,1568573760000,1568573820000,1568573880000,1568573940000,1568574000000,1568574060000,1568574120000,1568574180000,1568574240000,1568574300000,1568574360000,1568574420000,1568574480000,1568574540000,1568574600000,1568574660000,1568574720000,1568574780000,1568574840000,1568574900000,1568574960000,1568575020000,1568575080000,1568575140000,1568575200000,1568575260000,1568575320000,1568575380000,1568575440000,1568575500000,1568575560000,1568575620000,1568575680000,1568575740000,1568575800000,1568575860000,1568575920000,1568575980000,1568576040000,1568576100000,1568576160000,1568576220000,1568576280000,1568576340000,1568576400000,1568576460000,1568576520000,1568576580000,1568576640000,1568576700000,1568576760000,1568576820000,1568576880000,1568576940000,1568577000000,1568577060000,1568577120000,1568577180000,1568577240000,1568577300000,1568577360000,1568577420000,1568577480000,1568577540000,1568577600000,1568577660000,1568577720000,1568577780000,1568577840000,1568577900000,1568577960000,1568578020000,1568578080000,1568578140000,1568578200000,1568578260000,1568578320000,1568578380000,1568578440000,1568578500000,1568578560000,1568578620000,1568578680000,1568578740000,1568578800000,1568578860000,1568578920000,1568578980000,1568579040000,1568579100000,1568579160000,1568579220000,1568579280000,1568579340000,1568579400000,1568579460000,1568579520000,1568579580000,1568579640000,1568579700000,1568579760000,1568579820000,1568579880000,1568579940000,1568580000000,1568580060000,1568580120000,1568580180000,1568580240000,1568580300000,1568580360000,1568580420000,1568580480000,1568580540000,1568580600000,1568580660000,1568580720000,1568580780000,1568580840000,1568580900000,1568580960000,1568581020000,1568581080000,1568581140000,1568581200000,1568581260000,1568581320000,1568581380000,1568581440000,1568581500000,1568581560000,1568581620000,1568581680000,1568581740000,1568581800000,1568581860000,1568581920000,1568581980000,1568582040000,1568582100000,1568582160000,1568582220000,1568582280000,1568582340000,1568582400000,1568582460000,1568582520000,1568582580000,1568582640000,1568582700000,1568582760000,1568582820000,1568582880000,1568582940000,1568583000000,1568583060000,1568583120000,1568583180000,1568583240000,1568583300000,1568583360000,1568583420000,1568583480000,1568583540000,1568583600000,1568583660000,1568583720000,1568583780000,1568583840000,1568583900000,1568583960000,1568584020000,1568584080000,1568584140000,1568584200000,1568584260000,1568584320000,1568584380000,1568584440000,1568584500000,1568584560000,1568584620000,1568584680000,1568584740000,1568584800000,1568584860000,1568584920000,1568584980000,1568585040000,1568585100000,1568585160000,1568585220000,1568585280000,1568585340000,1568585400000,1568585460000,1568585520000,1568585580000,1568585640000,1568585700000,1568585760000,1568585820000,1568585880000,1568585940000,1568586000000,1568586060000,1568586120000,1568586180000,1568586240000,1568586300000,1568586360000,1568586420000,1568586480000,1568586540000,1568586600000,1568586660000,1568586720000,1568586780000,1568586840000,1568586900000,1568586960000,1568587020000,1568587080000,1568587140000,1568587200000,1568587260000,1568587320000,1568587380000,1568587440000,1568587500000,1568587560000,1568587620000,1568587680000,1568587740000,1568587800000,1568587860000,1568587920000,1568587980000,1568588040000,1568588100000,1568588160000,1568588220000,1568588280000,1568588340000,1568588400000,1568588460000,1568588520000,1568588580000,1568588640000,1568588700000,1568588760000,1568588820000,1568588880000,1568588940000,1568589000000,1568589060000,1568589120000,1568589180000,1568589240000,1568589300000,1568589360000,1568589420000,1568589480000,1568589540000,1568589600000,1568589660000,1568589720000,1568589780000,1568589840000,1568589900000,1568589960000,1568590020000,1568590080000,1568590140000,1568590200000,1568590260000,1568590320000,1568590380000,1568590440000,1568590500000,1568590560000,1568590620000,1568590680000,1568590740000,1568590800000,1568590860000,1568590920000,1568590980000,1568591040000,1568591100000,1568591160000,1568591220000,1568591280000,1568591340000,1568591400000,1568591460000,1568591520000,1568591580000,1568591640000,1568591700000,1568591760000,1568591820000,1568591880000,1568591940000,1568592000000,1568592060000,1568592120000,1568592180000,1568592240000,1568592300000,1568592360000,1568592420000,1568592480000,1568592540000,1568592600000,1568592660000,1568592720000,1568592780000,1568592840000,1568592900000,1568592960000,1568593020000,1568593080000,1568593140000,1568593200000,1568593260000,1568593320000,1568593380000,1568593440000,1568593500000,1568593560000,1568593620000,1568593680000,1568593740000,1568593800000,1568593860000,1568593920000,1568593980000,1568594040000,1568594100000,1568594160000,1568594220000,1568594280000,1568594340000,1568594400000,1568594460000,1568594520000,1568594580000,1568594640000,1568594700000,1568594760000,1568594820000,1568594880000,1568594940000,1568595000000,1568595060000,1568595120000,1568595180000,1568595240000,1568595300000,1568595360000,1568595420000,1568595480000,1568595540000,1568595600000,1568595660000,1568595720000,1568595780000,1568595840000,1568595900000,1568595960000,1568596020000,1568596080000,1568596140000,1568596200000,1568596260000,1568596320000,1568596380000,1568596440000,1568596500000,1568596560000,1568596620000,1568596680000,1568596740000,1568596800000,1568596860000,1568596920000,1568596980000,1568597040000,1568597100000,1568597160000,1568597220000,1568597280000,1568597340000,1568597400000,1568597460000,1568597520000,1568597580000,1568597640000,1568597700000,1568597760000,1568597820000,1568597880000,1568597940000,1568598000000,1568598060000,1568598120000,1568598180000,1568598240000,1568598300000,1568598360000,1568598420000,1568598480000,1568598540000,1568598600000,1568598660000,1568598720000,1568598780000,1568598840000,1568598900000,1568598960000,1568599020000,1568599080000,1568599140000,1568599200000,1568599260000,1568599320000,1568599380000,1568599440000,1568599500000,1568599560000,1568599620000,1568599680000,1568599740000,1568599800000,1568599860000,1568599920000,1568599980000,1568600040000,1568600100000,1568600160000,1568600220000,1568600280000,1568600340000,1568600400000,1568600460000,1568600520000,1568600580000,1568600640000,1568600700000,1568600760000,1568600820000,1568600880000,1568600940000,1568601000000,1568601060000,1568601120000,1568601180000,1568601240000,1568601300000,1568601360000,1568601420000,1568601480000,1568601540000,1568601600000,1568601660000,1568601720000,1568601780000,1568601840000,1568601900000,1568601960000,1568602020000,1568602080000,1568602140000,1568602200000,1568602260000,1568602320000,1568602380000,1568602440000,1568602500000,1568602560000,1568602620000,1568602680000,1568602740000,1568602800000,1568602860000,1568602920000,1568602980000,1568603040000,1568603100000,1568603160000,1568603220000,1568603280000,1568603340000,1568603400000,1568603460000,1568603520000,1568603580000,1568603640000,1568603700000,1568603760000,1568603820000,1568603880000,1568603940000,1568604000000,1568604060000,1568604120000,1568604180000,1568604240000,1568604300000,1568604360000,1568604420000,1568604480000,1568604540000,1568604600000,1568604660000,1568604720000,1568604780000,1568604840000,1568604900000,1568604960000,1568605020000,1568605080000,1568605140000,1568605200000,1568605260000,1568605320000,1568605380000,1568605440000,1568605500000,1568605560000,1568605620000,1568605680000,1568605740000,1568605800000,1568605860000,1568605920000,1568605980000,1568606040000,1568606100000,1568606160000,1568606220000,1568606280000,1568606340000,1568606400000,1568606460000,1568606520000,1568606580000,1568606640000,1568606700000,1568606760000,1568606820000,1568606880000,1568606940000,1568607000000,1568607060000,1568607120000,1568607180000,1568607240000,1568607300000,1568607360000,1568607420000,1568607480000,1568607540000,1568607600000,1568607660000,1568607720000,1568607780000,1568607840000,1568607900000,1568607960000,1568608020000,1568608080000,1568608140000,1568608200000,1568608260000,1568608320000,1568608380000,1568608440000,1568608500000,1568608560000,1568608620000,1568608680000,1568608740000,1568608800000,1568608860000,1568608920000,1568608980000,1568609040000,1568609100000,1568609160000,1568609220000,1568609280000,1568609340000,1568609400000,1568609460000,1568609520000,1568609580000,1568609640000,1568609700000,1568609760000,1568609820000,1568609880000,1568609940000,1568610000000,1568610060000,1568610120000,1568610180000,1568610240000,1568610300000,1568610360000,1568610420000,1568610480000,1568610540000,1568610600000,1568610660000,1568610720000,1568610780000,1568610840000,1568610900000,1568610960000,1568611020000,1568611080000,1568611140000,1568611200000,1568611260000,1568611320000,1568611380000,1568611440000,1568611500000,1568611560000,1568611620000,1568611680000,1568611740000,1568611800000,1568611860000,1568611920000,1568611980000,1568612040000,1568612100000,1568612160000,1568612220000,1568612280000,1568612340000,1568612400000,1568612460000,1568612520000,1568612580000,1568612640000,1568612700000,1568612760000,1568612820000,1568612880000,1568612940000,1568613000000,1568613060000,1568613120000,1568613180000,1568613240000,1568613300000,1568613360000,1568613420000,1568613480000,1568613540000,1568613600000,1568613660000,1568613720000,1568613780000,1568613840000,1568613900000,1568613960000,1568614020000,1568614080000,1568614140000,1568614200000,1568614260000,1568614320000,1568614380000,1568614440000,1568614500000,1568614560000,1568614620000,1568614680000,1568614740000,1568614800000,1568614860000,1568614920000,1568614980000,1568615040000,1568615100000,1568615160000,1568615220000,1568615280000,1568615340000,1568615400000,1568615460000,1568615520000,1568615580000,1568615640000,1568615700000,1568615760000,1568615820000,1568615880000,1568615940000,1568616000000,1568616060000,1568616120000,1568616180000,1568616240000,1568616300000,1568616360000,1568616420000,1568616480000,1568616540000,1568616600000,1568616660000,1568616720000,1568616780000,1568616840000,1568616900000,1568616960000,1568617020000,1568617080000,1568617140000,1568617200000,1568617260000,1568617320000,1568617380000,1568617440000,1568617500000,1568617560000,1568617620000,1568617680000,1568617740000,1568617800000,1568617860000,1568617920000,1568617980000,1568618040000,1568618100000,1568618160000,1568618220000,1568618280000,1568618340000,1568618400000,1568618460000,1568618520000,1568618580000,1568618640000,1568618700000,1568618760000,1568618820000,1568618880000,1568618940000,1568619000000,1568619060000,1568619120000,1568619180000,1568619240000,1568619300000,1568619360000,1568619420000,1568619480000,1568619540000,1568619600000,1568619660000,1568619720000,1568619780000,1568619840000,1568619900000,1568619960000,1568620020000,1568620080000,1568620140000,1568620200000,1568620260000,1568620320000,1568620380000,1568620440000,1568620500000,1568620560000,1568620620000,1568620680000,1568620740000,1568620800000,1568620860000,1568620920000,1568620980000,1568621040000,1568621100000,1568621160000,1568621220000,1568621280000,1568621340000,1568621400000,1568621460000,1568621520000,1568621580000,1568621640000,1568621700000,1568621760000,1568621820000,1568621880000,1568621940000,1568622000000,1568622060000,1568622120000,1568622180000,1568622240000,1568622300000,1568622360000,1568622420000,1568622480000,1568622540000,1568622600000,1568622660000,1568622720000,1568622780000,1568622840000,1568622900000,1568622960000,1568623020000,1568623080000,1568623140000,1568623200000,1568623260000,1568623320000,1568623380000,1568623440000,1568623500000,1568623560000,1568623620000,1568623680000,1568623740000,1568623800000,1568623860000,1568623920000,1568623980000,1568624040000,1568624100000,1568624160000,1568624220000,1568624280000,1568624340000,1568624400000,1568624460000,1568624520000,1568624580000,1568624640000,1568624700000,1568624760000,1568624820000,1568624880000,1568624940000,1568625000000,1568625060000,1568625120000,1568625180000,1568625240000,1568625300000,1568625360000,1568625420000,1568625480000,1568625540000,1568625600000,1568625660000,1568625720000,1568625780000,1568625840000,1568625900000,1568625960000,1568626020000,1568626080000,1568626140000,1568626200000,1568626260000,1568626320000,1568626380000,1568626440000,1568626500000,1568626560000,1568626620000,1568626680000,1568626740000,1568626800000,1568626860000,1568626920000,1568626980000,1568627040000,1568627100000,1568627160000,1568627220000,1568627280000,1568627340000,1568627400000,1568627460000,1568627520000,1568627580000,1568627640000,1568627700000,1568627760000,1568627820000,1568627880000,1568627940000,1568628000000,1568628060000,1568628120000,1568628180000,1568628240000,1568628300000,1568628360000,1568628420000,1568628480000,1568628540000,1568628600000,1568628660000,1568628720000,1568628780000,1568628840000,1568628900000,1568628960000,1568629020000,1568629080000,1568629140000,1568629200000,1568629260000,1568629320000,1568629380000,1568629440000,1568629500000,1568629560000,1568629620000,1568629680000,1568629740000,1568629800000,1568629860000,1568629920000,1568629980000,1568630040000,1568630100000,1568630160000,1568630220000,1568630280000,1568630340000,1568630400000,1568630460000,1568630520000,1568630580000,1568630640000,1568630700000,1568630760000,1568630820000,1568630880000,1568630940000,1568631000000,1568631060000,1568631120000,1568631180000,1568631240000,1568631300000,1568631360000,1568631420000,1568631480000,1568631540000,1568631600000,1568631660000,1568631720000,1568631780000,1568631840000,1568631900000,1568631960000,1568632020000,1568632080000,1568632140000,1568632200000,1568632260000,1568632320000,1568632380000,1568632440000,1568632500000,1568632560000,1568632620000,1568632680000,1568632740000,1568632800000,1568632860000,1568632920000,1568632980000,1568633040000,1568633100000,1568633160000,1568633220000,1568633280000,1568633340000,1568633400000,1568633460000,1568633520000,1568633580000,1568633640000,1568633700000,1568633760000,1568633820000,1568633880000,1568633940000,1568634000000,1568634060000,1568634120000,1568634180000,1568634240000,1568634300000,1568634360000,1568634420000,1568634480000,1568634540000,1568634600000,1568634660000,1568634720000,1568634780000,1568634840000,1568634900000,1568634960000,1568635020000,1568635080000,1568635140000,1568635200000,1568635260000,1568635320000,1568635380000,1568635440000,1568635500000,1568635560000,1568635620000,1568635680000,1568635740000,1568635800000,1568635860000,1568635920000,1568635980000,1568636040000,1568636100000,1568636160000,1568636220000,1568636280000,1568636340000,1568636400000,1568636460000,1568636520000,1568636580000,1568636640000,1568636700000,1568636760000,1568636820000,1568636880000,1568636940000,1568637000000,1568637060000,1568637120000,1568637180000,1568637240000,1568637300000,1568637360000,1568637420000,1568637480000,1568637540000,1568637600000,1568637660000,1568637720000,1568637780000,1568637840000,1568637900000,1568637960000,1568638020000,1568638080000,1568638140000,1568638200000,1568638260000,1568638320000,1568638380000,1568638440000,1568638500000,1568638560000,1568638620000,1568638680000,1568638740000,1568638800000,1568638860000,1568638920000,1568638980000,1568639040000,1568639100000,1568639160000,1568639220000,1568639280000,1568639340000,1568639400000,1568639460000,1568639520000,1568639580000,1568639640000,1568639700000,1568639760000,1568639820000,1568639880000,1568639940000,1568640000000,1568640060000,1568640120000,1568640180000,1568640240000,1568640300000,1568640360000,1568640420000,1568640480000,1568640540000,1568640600000,1568640660000,1568640720000,1568640780000,1568640840000,1568640900000,1568640960000,1568641020000,1568641080000,1568641140000,1568641200000,1568641260000,1568641320000,1568641380000,1568641440000,1568641500000,1568641560000,1568641620000,1568641680000,1568641740000,1568641800000,1568641860000,1568641920000,1568641980000,1568642040000,1568642100000,1568642160000,1568642220000,1568642280000,1568642340000,1568642400000,1568642460000,1568642520000,1568642580000,1568642640000,1568642700000,1568642760000,1568642820000,1568642880000,1568642940000,1568643000000,1568643060000,1568643120000,1568643180000,1568643240000,1568643300000,1568643360000,1568643420000,1568643480000,1568643540000,1568643600000,1568643660000,1568643720000,1568643780000,1568643840000,1568643900000,1568643960000,1568644020000,1568644080000,1568644140000,1568644200000,1568644260000,1568644320000,1568644380000,1568644440000,1568644500000,1568644560000,1568644620000,1568644680000,1568644740000,1568644800000,1568644860000,1568644920000,1568644980000,1568645040000,1568645100000,1568645160000,1568645220000,1568645280000,1568645340000,1568645400000,1568645460000,1568645520000,1568645580000,1568645640000,1568645700000,1568645760000,1568645820000,1568645880000,1568645940000,1568646000000,1568646060000,1568646120000,1568646180000,1568646240000,1568646300000,1568646360000,1568646420000,1568646480000,1568646540000,1568646600000,1568646660000,1568646720000,1568646780000,1568646840000,1568646900000,1568646960000,1568647020000,1568647080000,1568647140000,1568647200000,1568647260000,1568647320000,1568647380000,1568647440000,1568647500000,1568647560000,1568647620000,1568647680000,1568647740000,1568647800000,1568647860000,1568647920000,1568647980000,1568648040000,1568648100000,1568648160000,1568648220000,1568648280000,1568648340000,1568648400000,1568648460000,1568648520000,1568648580000,1568648640000,1568648700000,1568648760000,1568648820000,1568648880000,1568648940000,1568649000000,1568649060000,1568649120000,1568649180000,1568649240000,1568649300000,1568649360000,1568649420000,1568649480000,1568649540000,1568649600000,1568649660000,1568649720000,1568649780000,1568649840000,1568649900000,1568649960000,1568650020000,1568650080000,1568650140000,1568650200000,1568650260000,1568650320000,1568650380000,1568650440000,1568650500000,1568650560000,1568650620000,1568650680000,1568650740000,1568650800000,1568650860000,1568650920000,1568650980000,1568651040000,1568651100000,1568651160000,1568651220000,1568651280000,1568651340000,1568651400000,1568651460000,1568651520000,1568651580000,1568651640000,1568651700000,1568651760000,1568651820000,1568651880000,1568651940000,1568652000000,1568652060000,1568652120000,1568652180000,1568652240000,1568652300000,1568652360000,1568652420000,1568652480000,1568652540000,1568652600000,1568652660000,1568652720000,1568652780000,1568652840000,1568652900000,1568652960000,1568653020000,1568653080000,1568653140000,1568653200000,1568653260000,1568653320000,1568653380000,1568653440000,1568653500000,1568653560000,1568653620000,1568653680000,1568653740000,1568653800000,1568653860000,1568653920000,1568653980000,1568654040000,1568654100000,1568654160000,1568654220000,1568654280000,1568654340000,1568654400000,1568654460000,1568654520000,1568654580000,1568654640000,1568654700000,1568654760000,1568654820000,1568654880000,1568654940000,1568655000000,1568655060000,1568655120000,1568655180000,1568655240000,1568655300000,1568655360000,1568655420000,1568655480000,1568655540000,1568655600000,1568655660000,1568655720000,1568655780000,1568655840000,1568655900000,1568655960000,1568656020000,1568656080000,1568656140000,1568656200000,1568656260000,1568656320000,1568656380000,1568656440000,1568656500000,1568656560000,1568656620000,1568656680000,1568656740000,1568656800000,1568656860000,1568656920000,1568656980000,1568657040000,1568657100000,1568657160000,1568657220000,1568657280000,1568657340000,1568657400000,1568657460000,1568657520000,1568657580000,1568657640000,1568657700000,1568657760000,1568657820000,1568657880000,1568657940000,1568658000000,1568658060000,1568658120000,1568658180000,1568658240000,1568658300000,1568658360000,1568658420000,1568658480000,1568658540000,1568658600000,1568658660000,1568658720000,1568658780000,1568658840000,1568658900000,1568658960000,1568659020000,1568659080000,1568659140000,1568659200000,1568659260000,1568659320000,1568659380000,1568659440000,1568659500000,1568659560000,1568659620000,1568659680000,1568659740000,1568659800000,1568659860000,1568659920000,1568659980000,1568660040000,1568660100000,1568660160000,1568660220000,1568660280000,1568660340000,1568660400000,1568660460000,1568660520000,1568660580000,1568660640000,1568660700000,1568660760000,1568660820000,1568660880000,1568660940000,1568661000000,1568661060000,1568661120000,1568661180000,1568661240000,1568661300000,1568661360000,1568661420000,1568661480000,1568661540000,1568661600000,1568661660000,1568661720000,1568661780000,1568661840000,1568661900000,1568661960000,1568662020000,1568662080000,1568662140000,1568662200000,1568662260000,1568662320000,1568662380000,1568662440000,1568662500000,1568662560000,1568662620000,1568662680000,1568662740000,1568662800000,1568662860000,1568662920000,1568662980000,1568663040000,1568663100000,1568663160000,1568663220000,1568663280000,1568663340000,1568663400000,1568663460000,1568663520000,1568663580000,1568663640000,1568663700000,1568663760000,1568663820000,1568663880000,1568663940000,1568664000000,1568664060000,1568664120000,1568664180000,1568664240000,1568664300000,1568664360000,1568664420000,1568664480000,1568664540000,1568664600000,1568664660000,1568664720000,1568664780000,1568664840000,1568664900000,1568664960000,1568665020000,1568665080000,1568665140000,1568665200000,1568665260000,1568665320000,1568665380000,1568665440000,1568665500000,1568665560000,1568665620000,1568665680000,1568665740000,1568665800000,1568665860000,1568665920000,1568665980000,1568666040000,1568666100000,1568666160000,1568666220000,1568666280000,1568666340000,1568666400000,1568666460000,1568666520000,1568666580000,1568666640000,1568666700000,1568666760000,1568666820000,1568666880000,1568666940000,1568667000000,1568667060000,1568667120000,1568667180000,1568667240000,1568667300000,1568667360000,1568667420000,1568667480000,1568667540000,1568667600000,1568667660000,1568667720000,1568667780000,1568667840000,1568667900000,1568667960000,1568668020000,1568668080000,1568668140000,1568668200000,1568668260000,1568668320000,1568668380000,1568668440000,1568668500000,1568668560000,1568668620000,1568668680000,1568668740000,1568668800000,1568668860000,1568668920000,1568668980000,1568669040000,1568669100000,1568669160000,1568669220000,1568669280000,1568669340000,1568669400000,1568669460000,1568669520000,1568669580000,1568669640000,1568669700000,1568669760000,1568669820000,1568669880000,1568669940000,1568670000000,1568670060000,1568670120000,1568670180000,1568670240000,1568670300000,1568670360000,1568670420000,1568670480000,1568670540000,1568670600000,1568670660000,1568670720000,1568670780000,1568670840000,1568670900000,1568670960000,1568671020000,1568671080000,1568671140000,1568671200000,1568671260000,1568671320000,1568671380000,1568671440000,1568671500000,1568671560000,1568671620000,1568671680000,1568671740000,1568671800000,1568671860000,1568671920000,1568671980000,1568672040000,1568672100000,1568672160000,1568672220000,1568672280000,1568672340000,1568672400000,1568672460000,1568672520000,1568672580000,1568672640000,1568672700000,1568672760000,1568672820000,1568672880000,1568672940000,1568673000000,1568673060000,1568673120000,1568673180000,1568673240000,1568673300000,1568673360000,1568673420000,1568673480000,1568673540000,1568673600000,1568673660000,1568673720000,1568673780000,1568673840000,1568673900000,1568673960000,1568674020000,1568674080000,1568674140000,1568674200000,1568674260000,1568674320000,1568674380000,1568674440000,1568674500000,1568674560000,1568674620000,1568674680000,1568674740000,1568674800000,1568674860000,1568674920000,1568674980000,1568675040000,1568675100000,1568675160000,1568675220000,1568675280000,1568675340000,1568675400000,1568675460000,1568675520000,1568675580000,1568675640000,1568675700000,1568675760000,1568675820000,1568675880000,1568675940000,1568676000000,1568676060000,1568676120000,1568676180000,1568676240000,1568676300000,1568676360000,1568676420000,1568676480000,1568676540000,1568676600000,1568676660000,1568676720000,1568676780000,1568676840000,1568676900000,1568676960000,1568677020000,1568677080000,1568677140000,1568677200000,1568677260000,1568677320000,1568677380000,1568677440000,1568677500000,1568677560000,1568677620000,1568677680000,1568677740000,1568677800000,1568677860000,1568677920000,1568677980000,1568678040000,1568678100000,1568678160000,1568678220000,1568678280000,1568678340000,1568678400000,1568678460000,1568678520000,1568678580000,1568678640000,1568678700000,1568678760000,1568678820000,1568678880000,1568678940000,1568679000000,1568679060000,1568679120000,1568679180000,1568679240000,1568679300000,1568679360000,1568679420000,1568679480000,1568679540000,1568679600000,1568679660000,1568679720000,1568679780000,1568679840000,1568679900000,1568679960000,1568680020000,1568680080000,1568680140000,1568680200000,1568680260000,1568680320000,1568680380000,1568680440000,1568680500000,1568680560000,1568680620000,1568680680000,1568680740000,1568680800000,1568680860000,1568680920000,1568680980000,1568681040000,1568681100000,1568681160000,1568681220000,1568681280000,1568681340000,1568681400000,1568681460000,1568681520000,1568681580000,1568681640000,1568681700000,1568681760000,1568681820000,1568681880000,1568681940000,1568682000000,1568682060000,1568682120000,1568682180000,1568682240000,1568682300000,1568682360000,1568682420000,1568682480000,1568682540000,1568682600000,1568682660000,1568682720000,1568682780000,1568682840000,1568682900000,1568682960000,1568683020000,1568683080000,1568683140000,1568683200000,1568683260000,1568683320000,1568683380000,1568683440000,1568683500000,1568683560000,1568683620000,1568683680000,1568683740000,1568683800000,1568683860000,1568683920000,1568683980000,1568684040000,1568684100000,1568684160000,1568684220000,1568684280000,1568684340000,1568684400000,1568684460000,1568684520000,1568684580000,1568684640000,1568684700000,1568684760000,1568684820000,1568684880000,1568684940000,1568685000000,1568685060000,1568685120000,1568685180000,1568685240000,1568685300000,1568685360000,1568685420000,1568685480000,1568685540000,1568685600000,1568685660000,1568685720000,1568685780000,1568685840000,1568685900000,1568685960000,1568686020000,1568686080000,1568686140000,1568686200000,1568686260000,1568686320000,1568686380000,1568686440000,1568686500000,1568686560000,1568686620000,1568686680000,1568686740000,1568686800000,1568686860000,1568686920000,1568686980000,1568687040000,1568687100000,1568687160000,1568687220000,1568687280000,1568687340000,1568687400000,1568687460000,1568687520000,1568687580000,1568687640000,1568687700000,1568687760000,1568687820000,1568687880000,1568687940000,1568688000000,1568688060000,1568688120000,1568688180000,1568688240000,1568688300000,1568688360000,1568688420000,1568688480000,1568688540000,1568688600000,1568688660000,1568688720000,1568688780000,1568688840000,1568688900000,1568688960000,1568689020000,1568689080000,1568689140000,1568689200000,1568689260000,1568689320000,1568689380000,1568689440000,1568689500000,1568689560000,1568689620000,1568689680000,1568689740000,1568689800000,1568689860000,1568689920000,1568689980000,1568690040000,1568690100000,1568690160000,1568690220000,1568690280000,1568690340000,1568690400000,1568690460000,1568690520000,1568690580000,1568690640000,1568690700000,1568690760000,1568690820000,1568690880000,1568690940000,1568691000000,1568691060000,1568691120000,1568691180000,1568691240000,1568691300000,1568691360000,1568691420000,1568691480000,1568691540000,1568691600000,1568691660000,1568691720000,1568691780000,1568691840000,1568691900000,1568691960000,1568692020000,1568692080000,1568692140000,1568692200000,1568692260000,1568692320000,1568692380000,1568692440000,1568692500000,1568692560000,1568692620000,1568692680000,1568692740000,1568692800000,1568692860000,1568692920000,1568692980000,1568693040000,1568693100000,1568693160000,1568693220000,1568693280000,1568693340000,1568693400000,1568693460000,1568693520000,1568693580000,1568693640000,1568693700000,1568693760000,1568693820000,1568693880000,1568693940000,1568694000000,1568694060000,1568694120000,1568694180000,1568694240000,1568694300000,1568694360000,1568694420000,1568694480000,1568694540000,1568694600000,1568694660000,1568694720000,1568694780000,1568694840000,1568694900000,1568694960000,1568695020000,1568695080000,1568695140000,1568695200000,1568695260000,1568695320000,1568695380000,1568695440000,1568695500000,1568695560000,1568695620000,1568695680000,1568695740000,1568695800000,1568695860000,1568695920000,1568695980000,1568696040000,1568696100000,1568696160000,1568696220000,1568696280000,1568696340000,1568696400000,1568696460000,1568696520000,1568696580000,1568696640000,1568696700000,1568696760000,1568696820000,1568696880000,1568696940000,1568697000000,1568697060000,1568697120000,1568697180000,1568697240000,1568697300000,1568697360000,1568697420000,1568697480000,1568697540000,1568697600000,1568697660000,1568697720000,1568697780000,1568697840000,1568697900000,1568697960000,1568698020000,1568698080000,1568698140000,1568698200000,1568698260000,1568698320000,1568698380000,1568698440000,1568698500000,1568698560000,1568698620000,1568698680000,1568698740000,1568698800000,1568698860000,1568698920000,1568698980000,1568699040000,1568699100000,1568699160000,1568699220000,1568699280000,1568699340000,1568699400000,1568699460000,1568699520000,1568699580000,1568699640000,1568699700000,1568699760000,1568699820000,1568699880000,1568699940000,1568700000000,1568700060000,1568700120000,1568700180000,1568700240000,1568700300000,1568700360000,1568700420000,1568700480000,1568700540000,1568700600000,1568700660000,1568700720000,1568700780000,1568700840000,1568700900000,1568700960000,1568701020000,1568701080000,1568701140000,1568701200000,1568701260000,1568701320000,1568701380000,1568701440000,1568701500000,1568701560000,1568701620000,1568701680000,1568701740000,1568701800000,1568701860000,1568701920000,1568701980000,1568702040000,1568702100000,1568702160000,1568702220000,1568702280000,1568702340000,1568702400000,1568702460000,1568702520000,1568702580000,1568702640000,1568702700000,1568702760000,1568702820000,1568702880000,1568702940000,1568703000000,1568703060000,1568703120000,1568703180000,1568703240000,1568703300000,1568703360000,1568703420000,1568703480000,1568703540000,1568703600000,1568703660000,1568703720000,1568703780000,1568703840000,1568703900000,1568703960000,1568704020000,1568704080000,1568704140000,1568704200000,1568704260000,1568704320000,1568704380000,1568704440000,1568704500000,1568704560000,1568704620000,1568704680000,1568704740000,1568704800000,1568704860000,1568704920000,1568704980000,1568705040000,1568705100000,1568705160000,1568705220000,1568705280000,1568705340000,1568705400000,1568705460000,1568705520000,1568705580000,1568705640000,1568705700000,1568705760000,1568705820000,1568705880000,1568705940000,1568706000000,1568706060000,1568706120000,1568706180000,1568706240000,1568706300000,1568706360000,1568706420000,1568706480000,1568706540000,1568706600000,1568706660000,1568706720000,1568706780000,1568706840000,1568706900000,1568706960000,1568707020000,1568707080000,1568707140000,1568707200000,1568707260000,1568707320000,1568707380000,1568707440000,1568707500000,1568707560000,1568707620000,1568707680000,1568707740000,1568707800000,1568707860000,1568707920000,1568707980000,1568708040000,1568708100000,1568708160000,1568708220000,1568708280000,1568708340000,1568708400000,1568708460000,1568708520000,1568708580000,1568708640000,1568708700000,1568708760000,1568708820000,1568708880000,1568708940000,1568709000000,1568709060000,1568709120000,1568709180000,1568709240000,1568709300000,1568709360000,1568709420000,1568709480000,1568709540000,1568709600000,1568709660000,1568709720000,1568709780000,1568709840000,1568709900000,1568709960000,1568710020000,1568710080000,1568710140000,1568710200000,1568710260000,1568710320000,1568710380000,1568710440000,1568710500000,1568710560000,1568710620000,1568710680000,1568710740000,1568710800000,1568710860000,1568710920000,1568710980000,1568711040000,1568711100000,1568711160000,1568711220000,1568711280000,1568711340000,1568711400000,1568711460000,1568711520000,1568711580000,1568711640000,1568711700000,1568711760000,1568711820000,1568711880000,1568711940000,1568712000000,1568712060000,1568712120000,1568712180000,1568712240000,1568712300000,1568712360000,1568712420000,1568712480000,1568712540000,1568712600000,1568712660000,1568712720000,1568712780000,1568712840000,1568712900000,1568712960000,1568713020000,1568713080000,1568713140000,1568713200000,1568713260000,1568713320000,1568713380000,1568713440000,1568713500000,1568713560000,1568713620000,1568713680000,1568713740000,1568713800000,1568713860000,1568713920000,1568713980000,1568714040000,1568714100000,1568714160000,1568714220000,1568714280000,1568714340000,1568714400000,1568714460000,1568714520000,1568714580000,1568714640000,1568714700000,1568714760000,1568714820000,1568714880000,1568714940000,1568715000000,1568715060000,1568715120000,1568715180000,1568715240000,1568715300000,1568715360000,1568715420000,1568715480000,1568715540000,1568715600000,1568715660000,1568715720000,1568715780000,1568715840000,1568715900000,1568715960000,1568716020000,1568716080000,1568716140000,1568716200000,1568716260000,1568716320000,1568716380000,1568716440000,1568716500000,1568716560000,1568716620000,1568716680000,1568716740000,1568716800000,1568716860000,1568716920000,1568716980000,1568717040000,1568717100000,1568717160000,1568717220000,1568717280000,1568717340000,1568717400000,1568717460000,1568717520000,1568717580000,1568717640000,1568717700000,1568717760000,1568717820000,1568717880000,1568717940000,1568718000000,1568718060000,1568718120000,1568718180000,1568718240000,1568718300000,1568718360000,1568718420000,1568718480000,1568718540000,1568718600000,1568718660000,1568718720000,1568718780000,1568718840000,1568718900000,1568718960000,1568719020000,1568719080000,1568719140000,1568719200000,1568719260000,1568719320000,1568719380000,1568719440000,1568719500000,1568719560000,1568719620000,1568719680000,1568719740000,1568719800000,1568719860000,1568719920000,1568719980000,1568720040000,1568720100000,1568720160000,1568720220000,1568720280000,1568720340000,1568720400000,1568720460000,1568720520000,1568720580000,1568720640000,1568720700000,1568720760000,1568720820000,1568720880000,1568720940000,1568721000000,1568721060000,1568721120000,1568721180000,1568721240000,1568721300000,1568721360000,1568721420000,1568721480000,1568721540000,1568721600000,1568721660000,1568721720000,1568721780000,1568721840000,1568721900000,1568721960000,1568722020000,1568722080000,1568722140000,1568722200000,1568722260000,1568722320000,1568722380000,1568722440000,1568722500000,1568722560000,1568722620000,1568722680000,1568722740000,1568722800000,1568722860000,1568722920000,1568722980000,1568723040000,1568723100000,1568723160000,1568723220000,1568723280000,1568723340000,1568723400000,1568723460000,1568723520000,1568723580000,1568723640000,1568723700000,1568723760000,1568723820000,1568723880000,1568723940000,1568724000000,1568724060000,1568724120000,1568724180000,1568724240000,1568724300000,1568724360000,1568724420000,1568724480000,1568724540000,1568724600000,1568724660000,1568724720000,1568724780000,1568724840000,1568724900000,1568724960000,1568725020000,1568725080000,1568725140000,1568725200000,1568725260000,1568725320000,1568725380000,1568725440000,1568725500000,1568725560000,1568725620000,1568725680000,1568725740000,1568725800000,1568725860000,1568725920000,1568725980000,1568726040000,1568726100000,1568726160000,1568726220000,1568726280000,1568726340000,1568726400000,1568726460000,1568726520000,1568726580000,1568726640000,1568726700000,1568726760000,1568726820000,1568726880000,1568726940000,1568727000000,1568727060000,1568727120000,1568727180000,1568727240000,1568727300000,1568727360000,1568727420000,1568727480000,1568727540000,1568727600000,1568727660000,1568727720000,1568727780000,1568727840000,1568727900000,1568727960000,1568728020000,1568728080000,1568728140000,1568728200000,1568728260000,1568728320000,1568728380000,1568728440000,1568728500000,1568728560000,1568728620000,1568728680000,1568728740000,1568728800000,1568728860000,1568728920000,1568728980000,1568729040000,1568729100000,1568729160000,1568729220000,1568729280000,1568729340000,1568729400000,1568729460000,1568729520000,1568729580000,1568729640000,1568729700000,1568729760000,1568729820000,1568729880000,1568729940000,1568730000000,1568730060000,1568730120000,1568730180000,1568730240000,1568730300000,1568730360000,1568730420000,1568730480000,1568730540000,1568730600000,1568730660000,1568730720000,1568730780000,1568730840000,1568730900000,1568730960000,1568731020000,1568731080000,1568731140000,1568731200000,1568731260000,1568731320000,1568731380000,1568731440000,1568731500000,1568731560000,1568731620000,1568731680000,1568731740000,1568731800000,1568731860000,1568731920000,1568731980000,1568732040000,1568732100000,1568732160000,1568732220000,1568732280000,1568732340000,1568732400000,1568732460000,1568732520000,1568732580000,1568732640000,1568732700000,1568732760000,1568732820000,1568732880000,1568732940000,1568733000000,1568733060000,1568733120000,1568733180000,1568733240000,1568733300000,1568733360000,1568733420000,1568733480000,1568733540000,1568733600000,1568733660000,1568733720000,1568733780000,1568733840000,1568733900000,1568733960000,1568734020000,1568734080000,1568734140000,1568734200000,1568734260000,1568734320000,1568734380000,1568734440000,1568734500000,1568734560000,1568734620000,1568734680000,1568734740000,1568734800000,1568734860000,1568734920000,1568734980000,1568735040000,1568735100000,1568735160000,1568735220000,1568735280000,1568735340000,1568735400000,1568735460000,1568735520000,1568735580000,1568735640000,1568735700000,1568735760000,1568735820000,1568735880000,1568735940000,1568736000000,1568736060000,1568736120000,1568736180000,1568736240000,1568736300000,1568736360000,1568736420000,1568736480000,1568736540000,1568736600000,1568736660000,1568736720000,1568736780000,1568736840000,1568736900000,1568736960000,1568737020000,1568737080000,1568737140000,1568737200000,1568737260000,1568737320000,1568737380000,1568737440000,1568737500000,1568737560000,1568737620000,1568737680000,1568737740000,1568737800000,1568737860000,1568737920000,1568737980000,1568738040000,1568738100000,1568738160000,1568738220000,1568738280000,1568738340000,1568738400000,1568738460000,1568738520000,1568738580000,1568738640000,1568738700000,1568738760000,1568738820000,1568738880000,1568738940000,1568739000000,1568739060000,1568739120000,1568739180000,1568739240000,1568739300000,1568739360000,1568739420000,1568739480000,1568739540000,1568739600000,1568739660000,1568739720000,1568739780000,1568739840000,1568739900000,1568739960000,1568740020000,1568740080000,1568740140000,1568740200000,1568740260000,1568740320000,1568740380000,1568740440000,1568740500000,1568740560000,1568740620000,1568740680000,1568740740000,1568740800000,1568740860000,1568740920000,1568740980000,1568741040000,1568741100000,1568741160000,1568741220000,1568741280000,1568741340000,1568741400000,1568741460000,1568741520000,1568741580000,1568741640000,1568741700000,1568741760000,1568741820000,1568741880000,1568741940000,1568742000000,1568742060000,1568742120000,1568742180000,1568742240000,1568742300000,1568742360000,1568742420000,1568742480000,1568742540000,1568742600000,1568742660000,1568742720000,1568742780000,1568742840000,1568742900000,1568742960000,1568743020000,1568743080000,1568743140000,1568743200000,1568743260000,1568743320000,1568743380000,1568743440000,1568743500000,1568743560000,1568743620000,1568743680000,1568743740000,1568743800000,1568743860000,1568743920000,1568743980000,1568744040000,1568744100000,1568744160000,1568744220000,1568744280000,1568744340000,1568744400000,1568744460000,1568744520000,1568744580000,1568744640000,1568744700000,1568744760000,1568744820000,1568744880000,1568744940000,1568745000000,1568745060000,1568745120000,1568745180000,1568745240000,1568745300000,1568745360000,1568745420000,1568745480000,1568745540000,1568745600000,1568745660000,1568745720000,1568745780000,1568745840000,1568745900000,1568745960000,1568746020000,1568746080000,1568746140000,1568746200000,1568746260000,1568746320000,1568746380000,1568746440000,1568746500000,1568746560000,1568746620000,1568746680000,1568746740000,1568746800000,1568746860000,1568746920000,1568746980000,1568747040000,1568747100000,1568747160000,1568747220000,1568747280000,1568747340000,1568747400000,1568747460000,1568747520000,1568747580000,1568747640000,1568747700000,1568747760000,1568747820000,1568747880000,1568747940000,1568748000000,1568748060000,1568748120000,1568748180000,1568748240000,1568748300000,1568748360000,1568748420000,1568748480000,1568748540000,1568748600000,1568748660000,1568748720000,1568748780000,1568748840000,1568748900000,1568748960000,1568749020000,1568749080000,1568749140000,1568749200000,1568749260000,1568749320000,1568749380000,1568749440000,1568749500000,1568749560000,1568749620000,1568749680000,1568749740000,1568749800000,1568749860000,1568749920000,1568749980000,1568750040000,1568750100000,1568750160000,1568750220000,1568750280000,1568750340000,1568750400000,1568750460000,1568750520000,1568750580000,1568750640000,1568750700000,1568750760000,1568750820000,1568750880000,1568750940000,1568751000000,1568751060000,1568751120000,1568751180000,1568751240000,1568751300000,1568751360000,1568751420000,1568751480000,1568751540000,1568751600000,1568751660000,1568751720000,1568751780000,1568751840000,1568751900000,1568751960000,1568752020000,1568752080000,1568752140000,1568752200000,1568752260000,1568752320000,1568752380000,1568752440000,1568752500000,1568752560000,1568752620000,1568752680000,1568752740000,1568752800000,1568752860000,1568752920000,1568752980000,1568753040000,1568753100000,1568753160000,1568753220000,1568753280000,1568753340000,1568753400000,1568753460000,1568753520000,1568753580000,1568753640000,1568753700000,1568753760000,1568753820000,1568753880000,1568753940000,1568754000000,1568754060000,1568754120000,1568754180000,1568754240000,1568754300000,1568754360000,1568754420000,1568754480000,1568754540000,1568754600000,1568754660000,1568754720000,1568754780000,1568754840000,1568754900000,1568754960000,1568755020000,1568755080000,1568755140000,1568755200000,1568755260000,1568755320000,1568755380000,1568755440000,1568755500000,1568755560000,1568755620000,1568755680000,1568755740000,1568755800000,1568755860000,1568755920000,1568755980000,1568756040000,1568756100000,1568756160000,1568756220000,1568756280000,1568756340000,1568756400000,1568756460000,1568756520000,1568756580000,1568756640000,1568756700000,1568756760000,1568756820000,1568756880000,1568756940000,1568757000000,1568757060000,1568757120000,1568757180000,1568757240000,1568757300000,1568757360000,1568757420000,1568757480000,1568757540000,1568757600000,1568757660000,1568757720000,1568757780000,1568757840000,1568757900000,1568757960000,1568758020000,1568758080000,1568758140000,1568758200000,1568758260000,1568758320000,1568758380000,1568758440000,1568758500000,1568758560000,1568758620000,1568758680000,1568758740000,1568758800000,1568758860000,1568758920000,1568758980000,1568759040000,1568759100000,1568759160000,1568759220000,1568759280000,1568759340000,1568759400000,1568759460000,1568759520000,1568759580000,1568759640000,1568759700000,1568759760000,1568759820000,1568759880000,1568759940000,1568760000000,1568760060000,1568760120000,1568760180000,1568760240000,1568760300000,1568760360000,1568760420000,1568760480000,1568760540000,1568760600000,1568760660000,1568760720000,1568760780000,1568760840000,1568760900000,1568760960000,1568761020000,1568761080000,1568761140000,1568761200000,1568761260000,1568761320000,1568761380000,1568761440000,1568761500000,1568761560000,1568761620000,1568761680000,1568761740000,1568761800000,1568761860000,1568761920000,1568761980000,1568762040000,1568762100000,1568762160000,1568762220000,1568762280000,1568762340000,1568762400000,1568762460000,1568762520000,1568762580000,1568762640000,1568762700000,1568762760000,1568762820000,1568762880000,1568762940000,1568763000000,1568763060000,1568763120000,1568763180000,1568763240000,1568763300000,1568763360000,1568763420000,1568763480000,1568763540000,1568763600000,1568763660000,1568763720000,1568763780000,1568763840000,1568763900000,1568763960000,1568764020000,1568764080000,1568764140000,1568764200000,1568764260000,1568764320000,1568764380000,1568764440000,1568764500000,1568764560000,1568764620000,1568764680000,1568764740000,1568764800000,1568764860000,1568764920000,1568764980000,1568765040000,1568765100000,1568765160000,1568765220000,1568765280000,1568765340000,1568765400000,1568765460000,1568765520000,1568765580000,1568765640000,1568765700000,1568765760000,1568765820000,1568765880000,1568765940000,1568766000000,1568766060000,1568766120000,1568766180000,1568766240000,1568766300000,1568766360000,1568766420000,1568766480000,1568766540000,1568766600000,1568766660000,1568766720000,1568766780000,1568766840000,1568766900000,1568766960000,1568767020000,1568767080000,1568767140000,1568767200000,1568767260000,1568767320000,1568767380000,1568767440000,1568767500000,1568767560000,1568767620000,1568767680000,1568767740000,1568767800000,1568767860000,1568767920000,1568767980000,1568768040000,1568768100000,1568768160000,1568768220000,1568768280000,1568768340000,1568768400000,1568768460000,1568768520000,1568768580000,1568768640000,1568768700000,1568768760000,1568768820000,1568768880000,1568768940000,1568769000000,1568769060000,1568769120000,1568769180000,1568769240000,1568769300000,1568769360000,1568769420000,1568769480000,1568769540000,1568769600000,1568769660000,1568769720000,1568769780000,1568769840000,1568769900000,1568769960000,1568770020000,1568770080000,1568770140000,1568770200000,1568770260000,1568770320000,1568770380000,1568770440000,1568770500000,1568770560000,1568770620000,1568770680000,1568770740000,1568770800000,1568770860000,1568770920000,1568770980000,1568771040000,1568771100000,1568771160000,1568771220000,1568771280000,1568771340000,1568771400000,1568771460000,1568771520000,1568771580000,1568771640000,1568771700000,1568771760000,1568771820000,1568771880000,1568771940000,1568772000000,1568772060000,1568772120000,1568772180000,1568772240000,1568772300000,1568772360000,1568772420000,1568772480000,1568772540000,1568772600000,1568772660000,1568772720000,1568772780000,1568772840000,1568772900000,1568772960000,1568773020000,1568773080000,1568773140000,1568773200000,1568773260000,1568773320000,1568773380000,1568773440000,1568773500000,1568773560000,1568773620000,1568773680000,1568773740000,1568773800000,1568773860000,1568773920000,1568773980000,1568774040000,1568774100000,1568774160000,1568774220000,1568774280000,1568774340000,1568774400000,1568774460000,1568774520000,1568774580000,1568774640000,1568774700000,1568774760000,1568774820000,1568774880000,1568774940000,1568775000000,1568775060000,1568775120000,1568775180000,1568775240000,1568775300000,1568775360000,1568775420000,1568775480000,1568775540000,1568775600000,1568775660000,1568775720000,1568775780000,1568775840000,1568775900000,1568775960000,1568776020000,1568776080000,1568776140000,1568776200000,1568776260000,1568776320000,1568776380000,1568776440000,1568776500000,1568776560000,1568776620000,1568776680000,1568776740000,1568776800000,1568776860000,1568776920000,1568776980000,1568777040000,1568777100000,1568777160000,1568777220000,1568777280000,1568777340000,1568777400000,1568777460000,1568777520000,1568777580000,1568777640000,1568777700000,1568777760000,1568777820000,1568777880000,1568777940000,1568778000000,1568778060000,1568778120000,1568778180000,1568778240000,1568778300000,1568778360000,1568778420000,1568778480000,1568778540000,1568778600000,1568778660000,1568778720000,1568778780000,1568778840000,1568778900000,1568778960000,1568779020000,1568779080000,1568779140000,1568779200000,1568779260000,1568779320000,1568779380000,1568779440000,1568779500000,1568779560000,1568779620000,1568779680000,1568779740000,1568779800000,1568779860000,1568779920000,1568779980000,1568780040000,1568780100000,1568780160000,1568780220000,1568780280000,1568780340000,1568780400000,1568780460000,1568780520000,1568780580000,1568780640000,1568780700000,1568780760000,1568780820000,1568780880000,1568780940000,1568781000000,1568781060000,1568781120000,1568781180000,1568781240000,1568781300000,1568781360000,1568781420000,1568781480000,1568781540000,1568781600000,1568781660000,1568781720000,1568781780000,1568781840000,1568781900000,1568781960000,1568782020000,1568782080000,1568782140000,1568782200000,1568782260000,1568782320000,1568782380000,1568782440000,1568782500000,1568782560000,1568782620000,1568782680000,1568782740000,1568782800000,1568782860000,1568782920000,1568782980000,1568783040000,1568783100000,1568783160000,1568783220000,1568783280000,1568783340000,1568783400000,1568783460000,1568783520000,1568783580000,1568783640000,1568783700000,1568783760000,1568783820000,1568783880000,1568783940000,1568784000000,1568784060000,1568784120000,1568784180000,1568784240000,1568784300000,1568784360000,1568784420000,1568784480000,1568784540000,1568784600000,1568784660000,1568784720000,1568784780000,1568784840000,1568784900000,1568784960000,1568785020000,1568785080000,1568785140000,1568785200000,1568785260000,1568785320000,1568785380000,1568785440000,1568785500000,1568785560000,1568785620000,1568785680000,1568785740000,1568785800000,1568785860000,1568785920000,1568785980000,1568786040000,1568786100000,1568786160000,1568786220000,1568786280000,1568786340000,1568786400000,1568786460000,1568786520000,1568786580000,1568786640000,1568786700000,1568786760000,1568786820000,1568786880000,1568786940000,1568787000000,1568787060000,1568787120000,1568787180000,1568787240000,1568787300000,1568787360000,1568787420000,1568787480000,1568787540000,1568787600000,1568787660000,1568787720000,1568787780000,1568787840000,1568787900000,1568787960000,1568788020000,1568788080000,1568788140000,1568788200000,1568788260000,1568788320000,1568788380000,1568788440000,1568788500000,1568788560000,1568788620000,1568788680000,1568788740000,1568788800000,1568788860000,1568788920000,1568788980000,1568789040000,1568789100000,1568789160000,1568789220000,1568789280000,1568789340000,1568789400000,1568789460000,1568789520000,1568789580000,1568789640000,1568789700000,1568789760000,1568789820000,1568789880000,1568789940000,1568790000000,1568790060000,1568790120000,1568790180000,1568790240000,1568790300000,1568790360000,1568790420000,1568790480000,1568790540000,1568790600000,1568790660000,1568790720000,1568790780000,1568790840000,1568790900000,1568790960000,1568791020000,1568791080000,1568791140000,1568791200000,1568791260000,1568791320000,1568791380000,1568791440000,1568791500000,1568791560000,1568791620000,1568791680000,1568791740000,1568791800000,1568791860000,1568791920000,1568791980000,1568792040000,1568792100000,1568792160000,1568792220000,1568792280000,1568792340000,1568792400000,1568792460000,1568792520000,1568792580000,1568792640000,1568792700000,1568792760000,1568792820000,1568792880000,1568792940000,1568793000000,1568793060000,1568793120000,1568793180000,1568793240000,1568793300000,1568793360000,1568793420000,1568793480000,1568793540000,1568793600000,1568793660000,1568793720000,1568793780000,1568793840000,1568793900000,1568793960000,1568794020000,1568794080000,1568794140000,1568794200000,1568794260000,1568794320000,1568794380000,1568794440000,1568794500000,1568794560000,1568794620000,1568794680000,1568794740000,1568794800000,1568794860000,1568794920000,1568794980000,1568795040000,1568795100000,1568795160000,1568795220000,1568795280000,1568795340000,1568795400000,1568795460000,1568795520000,1568795580000,1568795640000,1568795700000,1568795760000,1568795820000,1568795880000,1568795940000,1568796000000,1568796060000,1568796120000,1568796180000,1568796240000,1568796300000,1568796360000,1568796420000,1568796480000,1568796540000,1568796600000,1568796660000,1568796720000,1568796780000,1568796840000,1568796900000,1568796960000,1568797020000,1568797080000,1568797140000,1568797200000,1568797260000,1568797320000,1568797380000,1568797440000,1568797500000,1568797560000,1568797620000,1568797680000,1568797740000,1568797800000,1568797860000,1568797920000,1568797980000,1568798040000,1568798100000,1568798160000,1568798220000,1568798280000,1568798340000,1568798400000,1568798460000,1568798520000,1568798580000,1568798640000,1568798700000,1568798760000,1568798820000,1568798880000,1568798940000,1568799000000,1568799060000,1568799120000,1568799180000,1568799240000,1568799300000,1568799360000,1568799420000,1568799480000,1568799540000,1568799600000,1568799660000,1568799720000,1568799780000,1568799840000,1568799900000,1568799960000,1568800020000,1568800080000,1568800140000,1568800200000,1568800260000,1568800320000,1568800380000,1568800440000,1568800500000,1568800560000,1568800620000,1568800680000,1568800740000,1568800800000,1568800860000,1568800920000,1568800980000,1568801040000,1568801100000,1568801160000,1568801220000,1568801280000,1568801340000,1568801400000,1568801460000,1568801520000,1568801580000,1568801640000,1568801700000,1568801760000,1568801820000,1568801880000,1568801940000,1568802000000,1568802060000,1568802120000,1568802180000,1568802240000,1568802300000,1568802360000,1568802420000,1568802480000,1568802540000,1568802600000,1568802660000,1568802720000,1568802780000,1568802840000,1568802900000,1568802960000,1568803020000,1568803080000,1568803140000,1568803200000,1568803260000,1568803320000,1568803380000,1568803440000,1568803500000,1568803560000,1568803620000,1568803680000,1568803740000,1568803800000,1568803860000,1568803920000,1568803980000,1568804040000,1568804100000,1568804160000,1568804220000,1568804280000,1568804340000,1568804400000,1568804460000,1568804520000,1568804580000,1568804640000,1568804700000,1568804760000,1568804820000,1568804880000,1568804940000,1568805000000,1568805060000,1568805120000,1568805180000,1568805240000,1568805300000,1568805360000,1568805420000,1568805480000,1568805540000,1568805600000,1568805660000,1568805720000,1568805780000,1568805840000,1568805900000,1568805960000,1568806020000,1568806080000,1568806140000,1568806200000,1568806260000,1568806320000,1568806380000,1568806440000,1568806500000,1568806560000,1568806620000,1568806680000,1568806740000,1568806800000,1568806860000,1568806920000,1568806980000,1568807040000,1568807100000,1568807160000,1568807220000,1568807280000,1568807340000,1568807400000,1568807460000,1568807520000,1568807580000,1568807640000,1568807700000,1568807760000,1568807820000,1568807880000,1568807940000,1568808000000,1568808060000,1568808120000,1568808180000,1568808240000,1568808300000,1568808360000,1568808420000,1568808480000,1568808540000,1568808600000,1568808660000,1568808720000,1568808780000,1568808840000,1568808900000,1568808960000,1568809020000,1568809080000,1568809140000,1568809200000,1568809260000,1568809320000,1568809380000,1568809440000,1568809500000,1568809560000,1568809620000,1568809680000,1568809740000,1568809800000,1568809860000,1568809920000,1568809980000,1568810040000,1568810100000,1568810160000,1568810220000,1568810280000,1568810340000,1568810400000,1568810460000,1568810520000,1568810580000,1568810640000,1568810700000,1568810760000,1568810820000,1568810880000,1568810940000,1568811000000,1568811060000,1568811120000,1568811180000,1568811240000,1568811300000,1568811360000,1568811420000,1568811480000,1568811540000,1568811600000,1568811660000,1568811720000,1568811780000,1568811840000,1568811900000,1568811960000,1568812020000,1568812080000,1568812140000,1568812200000,1568812260000,1568812320000,1568812380000,1568812440000,1568812500000,1568812560000,1568812620000,1568812680000,1568812740000,1568812800000,1568812860000,1568812920000,1568812980000,1568813040000,1568813100000,1568813160000,1568813220000,1568813280000,1568813340000,1568813400000,1568813460000,1568813520000,1568813580000,1568813640000,1568813700000,1568813760000,1568813820000,1568813880000,1568813940000,1568814000000,1568814060000,1568814120000,1568814180000,1568814240000,1568814300000,1568814360000,1568814420000,1568814480000,1568814540000,1568814600000,1568814660000,1568814720000,1568814780000,1568814840000,1568814900000,1568814960000,1568815020000,1568815080000,1568815140000,1568815200000,1568815260000,1568815320000,1568815380000,1568815440000,1568815500000,1568815560000,1568815620000,1568815680000,1568815740000,1568815800000,1568815860000,1568815920000,1568815980000,1568816040000,1568816100000,1568816160000,1568816220000,1568816280000,1568816340000,1568816400000,1568816460000,1568816520000,1568816580000,1568816640000,1568816700000,1568816760000,1568816820000,1568816880000,1568816940000,1568817000000,1568817060000,1568817120000,1568817180000,1568817240000,1568817300000,1568817360000,1568817420000,1568817480000,1568817540000,1568817600000,1568817660000,1568817720000,1568817780000,1568817840000,1568817900000,1568817960000,1568818020000,1568818080000,1568818140000,1568818200000,1568818260000,1568818320000,1568818380000,1568818440000,1568818500000,1568818560000,1568818620000,1568818680000,1568818740000,1568818800000,1568818860000,1568818920000,1568818980000,1568819040000,1568819100000,1568819160000,1568819220000,1568819280000,1568819340000,1568819400000,1568819460000,1568819520000,1568819580000,1568819640000,1568819700000,1568819760000,1568819820000,1568819880000,1568819940000,1568820000000,1568820060000,1568820120000,1568820180000,1568820240000,1568820300000,1568820360000,1568820420000,1568820480000,1568820540000,1568820600000,1568820660000,1568820720000,1568820780000,1568820840000,1568820900000,1568820960000,1568821020000,1568821080000,1568821140000,1568821200000,1568821260000,1568821320000,1568821380000,1568821440000,1568821500000,1568821560000,1568821620000,1568821680000,1568821740000,1568821800000,1568821860000,1568821920000,1568821980000,1568822040000,1568822100000,1568822160000,1568822220000,1568822280000,1568822340000,1568822400000,1568822460000,1568822520000,1568822580000,1568822640000,1568822700000,1568822760000,1568822820000,1568822880000,1568822940000,1568823000000,1568823060000,1568823120000,1568823180000,1568823240000,1568823300000,1568823360000,1568823420000,1568823480000,1568823540000,1568823600000,1568823660000,1568823720000,1568823780000,1568823840000,1568823900000,1568823960000,1568824020000,1568824080000,1568824140000,1568824200000,1568824260000,1568824320000,1568824380000,1568824440000,1568824500000,1568824560000,1568824620000,1568824680000,1568824740000,1568824800000,1568824860000,1568824920000,1568824980000,1568825040000,1568825100000,1568825160000,1568825220000,1568825280000,1568825340000,1568825400000,1568825460000,1568825520000,1568825580000,1568825640000,1568825700000,1568825760000,1568825820000,1568825880000,1568825940000,1568826000000,1568826060000,1568826120000,1568826180000,1568826240000,1568826300000,1568826360000,1568826420000,1568826480000,1568826540000,1568826600000,1568826660000,1568826720000,1568826780000,1568826840000,1568826900000,1568826960000,1568827020000,1568827080000,1568827140000,1568827200000,1568827260000,1568827320000,1568827380000,1568827440000,1568827500000,1568827560000,1568827620000,1568827680000,1568827740000,1568827800000,1568827860000,1568827920000,1568827980000,1568828040000,1568828100000,1568828160000,1568828220000,1568828280000,1568828340000,1568828400000,1568828460000,1568828520000,1568828580000,1568828640000,1568828700000,1568828760000,1568828820000,1568828880000,1568828940000,1568829000000,1568829060000,1568829120000,1568829180000,1568829240000,1568829300000,1568829360000,1568829420000,1568829480000,1568829540000,1568829600000,1568829660000,1568829720000,1568829780000,1568829840000,1568829900000,1568829960000,1568830020000,1568830080000,1568830140000,1568830200000,1568830260000,1568830320000,1568830380000,1568830440000,1568830500000,1568830560000,1568830620000,1568830680000,1568830740000,1568830800000,1568830860000,1568830920000,1568830980000,1568831040000,1568831100000,1568831160000,1568831220000,1568831280000,1568831340000,1568831400000,1568831460000,1568831520000,1568831580000,1568831640000,1568831700000,1568831760000,1568831820000,1568831880000,1568831940000,1568832000000,1568832060000,1568832120000,1568832180000,1568832240000,1568832300000,1568832360000,1568832420000,1568832480000,1568832540000,1568832600000,1568832660000,1568832720000,1568832780000,1568832840000,1568832900000,1568832960000,1568833020000,1568833080000,1568833140000,1568833200000,1568833260000,1568833320000,1568833380000,1568833440000,1568833500000,1568833560000,1568833620000,1568833680000,1568833740000,1568833800000,1568833860000,1568833920000,1568833980000,1568834040000,1568834100000,1568834160000,1568834220000,1568834280000,1568834340000,1568834400000,1568834460000,1568834520000,1568834580000,1568834640000,1568834700000,1568834760000,1568834820000,1568834880000,1568834940000,1568835000000,1568835060000,1568835120000,1568835180000,1568835240000,1568835300000,1568835360000,1568835420000,1568835480000,1568835540000,1568835600000,1568835660000,1568835720000,1568835780000,1568835840000,1568835900000,1568835960000,1568836020000,1568836080000,1568836140000,1568836200000,1568836260000,1568836320000,1568836380000,1568836440000,1568836500000,1568836560000,1568836620000,1568836680000,1568836740000,1568836800000,1568836860000,1568836920000,1568836980000,1568837040000,1568837100000,1568837160000,1568837220000,1568837280000,1568837340000,1568837400000,1568837460000,1568837520000,1568837580000,1568837640000,1568837700000,1568837760000,1568837820000,1568837880000,1568837940000,1568838000000,1568838060000,1568838120000,1568838180000,1568838240000,1568838300000,1568838360000,1568838420000,1568838480000,1568838540000,1568838600000,1568838660000,1568838720000,1568838780000,1568838840000,1568838900000,1568838960000,1568839020000,1568839080000,1568839140000,1568839200000,1568839260000,1568839320000,1568839380000,1568839440000,1568839500000,1568839560000,1568839620000,1568839680000,1568839740000,1568839800000,1568839860000,1568839920000,1568839980000,1568840040000,1568840100000,1568840160000,1568840220000,1568840280000,1568840340000,1568840400000,1568840460000,1568840520000,1568840580000,1568840640000,1568840700000,1568840760000,1568840820000,1568840880000,1568840940000,1568841000000,1568841060000,1568841120000,1568841180000,1568841240000,1568841300000,1568841360000,1568841420000,1568841480000,1568841540000,1568841600000,1568841660000,1568841720000,1568841780000,1568841840000,1568841900000,1568841960000,1568842020000,1568842080000,1568842140000,1568842200000,1568842260000,1568842320000,1568842380000,1568842440000,1568842500000,1568842560000,1568842620000,1568842680000,1568842740000,1568842800000,1568842860000,1568842920000,1568842980000,1568843040000,1568843100000,1568843160000,1568843220000,1568843280000,1568843340000,1568843400000,1568843460000,1568843520000,1568843580000,1568843640000,1568843700000,1568843760000,1568843820000,1568843880000,1568843940000,1568844000000,1568844060000,1568844120000,1568844180000,1568844240000,1568844300000,1568844360000,1568844420000,1568844480000,1568844540000,1568844600000,1568844660000,1568844720000,1568844780000,1568844840000,1568844900000,1568844960000,1568845020000,1568845080000,1568845140000,1568845200000,1568845260000,1568845320000,1568845380000,1568845440000,1568845500000,1568845560000,1568845620000,1568845680000,1568845740000,1568845800000,1568845860000,1568845920000,1568845980000,1568846040000,1568846100000,1568846160000,1568846220000,1568846280000,1568846340000,1568846400000,1568846460000,1568846520000,1568846580000,1568846640000,1568846700000,1568846760000,1568846820000,1568846880000,1568846940000,1568847000000,1568847060000,1568847120000,1568847180000,1568847240000,1568847300000,1568847360000,1568847420000,1568847480000,1568847540000,1568847600000,1568847660000,1568847720000,1568847780000,1568847840000,1568847900000,1568847960000,1568848020000,1568848080000,1568848140000,1568848200000,1568848260000,1568848320000,1568848380000,1568848440000,1568848500000,1568848560000,1568848620000,1568848680000,1568848740000,1568848800000,1568848860000,1568848920000,1568848980000,1568849040000,1568849100000,1568849160000,1568849220000,1568849280000,1568849340000,1568849400000,1568849460000,1568849520000,1568849580000,1568849640000,1568849700000,1568849760000,1568849820000,1568849880000,1568849940000,1568850000000,1568850060000,1568850120000,1568850180000,1568850240000,1568850300000,1568850360000,1568850420000,1568850480000,1568850540000,1568850600000,1568850660000,1568850720000,1568850780000,1568850840000,1568850900000,1568850960000,1568851020000,1568851080000,1568851140000,1568851200000,1568851260000,1568851320000,1568851380000,1568851440000,1568851500000,1568851560000,1568851620000,1568851680000,1568851740000,1568851800000,1568851860000,1568851920000,1568851980000,1568852040000,1568852100000,1568852160000,1568852220000,1568852280000,1568852340000,1568852400000,1568852460000,1568852520000,1568852580000,1568852640000,1568852700000,1568852760000,1568852820000,1568852880000,1568852940000,1568853000000,1568853060000,1568853120000,1568853180000,1568853240000,1568853300000,1568853360000,1568853420000,1568853480000,1568853540000,1568853600000,1568853660000,1568853720000,1568853780000,1568853840000,1568853900000,1568853960000,1568854020000,1568854080000,1568854140000,1568854200000,1568854260000,1568854320000,1568854380000,1568854440000,1568854500000,1568854560000,1568854620000,1568854680000,1568854740000,1568854800000,1568854860000,1568854920000,1568854980000,1568855040000,1568855100000,1568855160000,1568855220000,1568855280000,1568855340000,1568855400000,1568855460000,1568855520000,1568855580000,1568855640000,1568855700000,1568855760000,1568855820000,1568855880000,1568855940000,1568856000000,1568856060000,1568856120000,1568856180000,1568856240000,1568856300000,1568856360000,1568856420000,1568856480000,1568856540000,1568856600000,1568856660000,1568856720000,1568856780000,1568856840000,1568856900000,1568856960000,1568857020000,1568857080000,1568857140000,1568857200000,1568857260000,1568857320000,1568857380000,1568857440000,1568857500000,1568857560000,1568857620000,1568857680000,1568857740000,1568857800000,1568857860000,1568857920000,1568857980000,1568858040000,1568858100000,1568858160000,1568858220000,1568858280000,1568858340000,1568858400000,1568858460000,1568858520000,1568858580000,1568858640000,1568858700000,1568858760000,1568858820000,1568858880000,1568858940000,1568859000000,1568859060000,1568859120000,1568859180000,1568859240000,1568859300000,1568859360000,1568859420000,1568859480000,1568859540000,1568859600000,1568859660000,1568859720000,1568859780000,1568859840000,1568859900000,1568859960000,1568860020000,1568860080000,1568860140000,1568860200000,1568860260000,1568860320000,1568860380000,1568860440000,1568860500000,1568860560000,1568860620000,1568860680000,1568860740000,1568860800000,1568860860000,1568860920000,1568860980000,1568861040000,1568861100000,1568861160000,1568861220000,1568861280000,1568861340000,1568861400000,1568861460000,1568861520000,1568861580000,1568861640000,1568861700000,1568861760000,1568861820000,1568861880000,1568861940000,1568862000000,1568862060000,1568862120000,1568862180000,1568862240000,1568862300000,1568862360000,1568862420000,1568862480000,1568862540000,1568862600000,1568862660000,1568862720000,1568862780000,1568862840000,1568862900000,1568862960000,1568863020000,1568863080000,1568863140000,1568863200000,1568863260000,1568863320000,1568863380000,1568863440000,1568863500000,1568863560000,1568863620000,1568863680000,1568863740000,1568863800000,1568863860000,1568863920000,1568863980000,1568864040000,1568864100000,1568864160000,1568864220000,1568864280000,1568864340000,1568864400000,1568864460000,1568864520000,1568864580000,1568864640000,1568864700000,1568864760000,1568864820000,1568864880000,1568864940000,1568865000000,1568865060000,1568865120000,1568865180000,1568865240000,1568865300000,1568865360000,1568865420000,1568865480000,1568865540000,1568865600000,1568865660000,1568865720000,1568865780000,1568865840000,1568865900000,1568865960000,1568866020000,1568866080000,1568866140000,1568866200000,1568866260000,1568866320000,1568866380000,1568866440000,1568866500000,1568866560000,1568866620000,1568866680000,1568866740000,1568866800000,1568866860000,1568866920000,1568866980000,1568867040000,1568867100000,1568867160000,1568867220000,1568867280000,1568867340000,1568867400000,1568867460000,1568867520000,1568867580000,1568867640000,1568867700000,1568867760000,1568867820000,1568867880000,1568867940000,1568868000000,1568868060000,1568868120000,1568868180000,1568868240000,1568868300000,1568868360000,1568868420000,1568868480000,1568868540000,1568868600000,1568868660000,1568868720000,1568868780000,1568868840000,1568868900000,1568868960000,1568869020000,1568869080000,1568869140000,1568869200000,1568869260000,1568869320000,1568869380000,1568869440000,1568869500000,1568869560000,1568869620000,1568869680000,1568869740000,1568869800000,1568869860000,1568869920000,1568869980000,1568870040000,1568870100000,1568870160000,1568870220000,1568870280000,1568870340000,1568870400000,1568870460000,1568870520000,1568870580000,1568870640000,1568870700000,1568870760000,1568870820000,1568870880000,1568870940000,1568871000000,1568871060000,1568871120000,1568871180000,1568871240000,1568871300000,1568871360000,1568871420000,1568871480000,1568871540000,1568871600000,1568871660000,1568871720000,1568871780000,1568871840000,1568871900000,1568871960000,1568872020000,1568872080000,1568872140000,1568872200000,1568872260000,1568872320000,1568872380000,1568872440000,1568872500000,1568872560000,1568872620000,1568872680000,1568872740000,1568872800000,1568872860000,1568872920000,1568872980000,1568873040000,1568873100000,1568873160000,1568873220000,1568873280000,1568873340000,1568873400000,1568873460000,1568873520000,1568873580000,1568873640000,1568873700000,1568873760000,1568873820000,1568873880000,1568873940000,1568874000000,1568874060000,1568874120000,1568874180000,1568874240000,1568874300000,1568874360000,1568874420000,1568874480000,1568874540000,1568874600000,1568874660000,1568874720000,1568874780000,1568874840000,1568874900000,1568874960000,1568875020000,1568875080000,1568875140000,1568875200000,1568875260000,1568875320000,1568875380000,1568875440000,1568875500000,1568875560000,1568875620000,1568875680000,1568875740000,1568875800000,1568875860000,1568875920000,1568875980000,1568876040000,1568876100000,1568876160000,1568876220000,1568876280000,1568876340000,1568876400000,1568876460000,1568876520000,1568876580000,1568876640000,1568876700000,1568876760000,1568876820000,1568876880000,1568876940000,1568877000000,1568877060000,1568877120000,1568877180000,1568877240000,1568877300000,1568877360000,1568877420000,1568877480000,1568877540000,1568877600000,1568877660000,1568877720000,1568877780000,1568877840000,1568877900000,1568877960000,1568878020000,1568878080000,1568878140000,1568878200000,1568878260000,1568878320000,1568878380000,1568878440000,1568878500000,1568878560000,1568878620000,1568878680000,1568878740000,1568878800000,1568878860000,1568878920000,1568878980000,1568879040000,1568879100000,1568879160000,1568879220000,1568879280000,1568879340000,1568879400000,1568879460000,1568879520000,1568879580000,1568879640000,1568879700000,1568879760000,1568879820000,1568879880000,1568879940000,1568880000000,1568880060000,1568880120000,1568880180000,1568880240000,1568880300000,1568880360000,1568880420000,1568880480000,1568880540000,1568880600000,1568880660000,1568880720000,1568880780000,1568880840000,1568880900000,1568880960000,1568881020000,1568881080000,1568881140000,1568881200000,1568881260000,1568881320000,1568881380000,1568881440000,1568881500000,1568881560000,1568881620000,1568881680000,1568881740000,1568881800000,1568881860000,1568881920000,1568881980000,1568882040000,1568882100000,1568882160000,1568882220000,1568882280000,1568882340000,1568882400000,1568882460000,1568882520000,1568882580000,1568882640000,1568882700000,1568882760000,1568882820000,1568882880000,1568882940000,1568883000000,1568883060000,1568883120000,1568883180000,1568883240000,1568883300000,1568883360000,1568883420000,1568883480000,1568883540000,1568883600000,1568883660000,1568883720000,1568883780000,1568883840000,1568883900000,1568883960000,1568884020000,1568884080000,1568884140000,1568884200000,1568884260000,1568884320000,1568884380000,1568884440000,1568884500000,1568884560000,1568884620000,1568884680000,1568884740000,1568884800000,1568884860000,1568884920000,1568884980000,1568885040000,1568885100000,1568885160000,1568885220000,1568885280000,1568885340000,1568885400000,1568885460000,1568885520000,1568885580000,1568885640000,1568885700000,1568885760000,1568885820000,1568885880000,1568885940000,1568886000000,1568886060000,1568886120000,1568886180000,1568886240000,1568886300000,1568886360000,1568886420000,1568886480000,1568886540000,1568886600000,1568886660000,1568886720000,1568886780000,1568886840000,1568886900000,1568886960000,1568887020000,1568887080000,1568887140000,1568887200000,1568887260000,1568887320000,1568887380000,1568887440000,1568887500000,1568887560000,1568887620000,1568887680000,1568887740000,1568887800000,1568887860000,1568887920000,1568887980000,1568888040000,1568888100000,1568888160000,1568888220000,1568888280000,1568888340000,1568888400000,1568888460000,1568888520000,1568888580000,1568888640000,1568888700000,1568888760000,1568888820000,1568888880000,1568888940000,1568889000000,1568889060000,1568889120000,1568889180000,1568889240000,1568889300000,1568889360000,1568889420000,1568889480000,1568889540000,1568889600000,1568889660000,1568889720000,1568889780000,1568889840000,1568889900000,1568889960000,1568890020000,1568890080000,1568890140000,1568890200000,1568890260000,1568890320000,1568890380000,1568890440000,1568890500000,1568890560000,1568890620000,1568890680000,1568890740000,1568890800000,1568890860000,1568890920000,1568890980000,1568891040000,1568891100000,1568891160000,1568891220000,1568891280000,1568891340000,1568891400000,1568891460000,1568891520000,1568891580000,1568891640000,1568891700000,1568891760000,1568891820000,1568891880000,1568891940000,1568892000000,1568892060000,1568892120000,1568892180000,1568892240000,1568892300000,1568892360000,1568892420000,1568892480000,1568892540000,1568892600000,1568892660000,1568892720000,1568892780000,1568892840000,1568892900000,1568892960000,1568893020000,1568893080000,1568893140000,1568893200000,1568893260000,1568893320000,1568893380000,1568893440000,1568893500000,1568893560000,1568893620000,1568893680000,1568893740000,1568893800000,1568893860000,1568893920000,1568893980000,1568894040000,1568894100000,1568894160000,1568894220000,1568894280000,1568894340000,1568894400000,1568894460000,1568894520000,1568894580000,1568894640000,1568894700000,1568894760000,1568894820000,1568894880000,1568894940000,1568895000000,1568895060000,1568895120000,1568895180000,1568895240000,1568895300000,1568895360000,1568895420000,1568895480000,1568895540000,1568895600000,1568895660000,1568895720000,1568895780000,1568895840000,1568895900000,1568895960000,1568896020000,1568896080000,1568896140000,1568896200000,1568896260000,1568896320000,1568896380000,1568896440000,1568896500000,1568896560000,1568896620000,1568896680000,1568896740000,1568896800000,1568896860000,1568896920000,1568896980000,1568897040000,1568897100000,1568897160000,1568897220000,1568897280000,1568897340000,1568897400000,1568897460000,1568897520000,1568897580000,1568897640000,1568897700000,1568897760000,1568897820000,1568897880000,1568897940000,1568898000000,1568898060000,1568898120000,1568898180000,1568898240000,1568898300000,1568898360000,1568898420000,1568898480000,1568898540000,1568898600000,1568898660000,1568898720000,1568898780000,1568898840000,1568898900000,1568898960000,1568899020000,1568899080000,1568899140000,1568899200000,1568899260000,1568899320000,1568899380000,1568899440000,1568899500000,1568899560000,1568899620000,1568899680000,1568899740000,1568899800000,1568899860000,1568899920000,1568899980000,1568900040000,1568900100000,1568900160000,1568900220000,1568900280000,1568900340000,1568900400000,1568900460000,1568900520000,1568900580000,1568900640000,1568900700000,1568900760000,1568900820000,1568900880000,1568900940000,1568901000000,1568901060000,1568901120000,1568901180000,1568901240000,1568901300000,1568901360000,1568901420000,1568901480000,1568901540000,1568901600000,1568901660000,1568901720000,1568901780000,1568901840000,1568901900000,1568901960000,1568902020000,1568902080000,1568902140000,1568902200000,1568902260000,1568902320000,1568902380000,1568902440000,1568902500000,1568902560000,1568902620000,1568902680000,1568902740000,1568902800000,1568902860000,1568902920000,1568902980000,1568903040000,1568903100000,1568903160000,1568903220000,1568903280000,1568903340000,1568903400000,1568903460000,1568903520000,1568903580000,1568903640000,1568903700000,1568903760000,1568903820000,1568903880000,1568903940000,1568904000000,1568904060000,1568904120000,1568904180000,1568904240000,1568904300000,1568904360000,1568904420000,1568904480000,1568904540000,1568904600000,1568904660000,1568904720000,1568904780000,1568904840000,1568904900000,1568904960000,1568905020000,1568905080000,1568905140000,1568905200000,1568905260000,1568905320000,1568905380000,1568905440000,1568905500000,1568905560000,1568905620000,1568905680000,1568905740000,1568905800000,1568905860000,1568905920000,1568905980000,1568906040000,1568906100000,1568906160000,1568906220000,1568906280000,1568906340000,1568906400000,1568906460000,1568906520000,1568906580000,1568906640000,1568906700000,1568906760000,1568906820000,1568906880000,1568906940000,1568907000000,1568907060000,1568907120000,1568907180000,1568907240000,1568907300000,1568907360000,1568907420000,1568907480000,1568907540000,1568907600000,1568907660000,1568907720000,1568907780000,1568907840000,1568907900000,1568907960000,1568908020000,1568908080000,1568908140000,1568908200000,1568908260000,1568908320000,1568908380000,1568908440000,1568908500000,1568908560000,1568908620000,1568908680000,1568908740000,1568908800000,1568908860000,1568908920000,1568908980000,1568909040000,1568909100000,1568909160000,1568909220000,1568909280000,1568909340000,1568909400000,1568909460000,1568909520000,1568909580000,1568909640000,1568909700000,1568909760000,1568909820000,1568909880000,1568909940000,1568910000000,1568910060000,1568910120000,1568910180000,1568910240000,1568910300000,1568910360000,1568910420000,1568910480000,1568910540000,1568910600000,1568910660000,1568910720000,1568910780000,1568910840000,1568910900000,1568910960000,1568911020000,1568911080000,1568911140000,1568911200000,1568911260000,1568911320000,1568911380000,1568911440000,1568911500000,1568911560000,1568911620000,1568911680000,1568911740000,1568911800000,1568911860000,1568911920000,1568911980000,1568912040000,1568912100000,1568912160000,1568912220000,1568912280000,1568912340000,1568912400000,1568912460000,1568912520000,1568912580000,1568912640000,1568912700000,1568912760000,1568912820000,1568912880000,1568912940000,1568913000000,1568913060000,1568913120000,1568913180000,1568913240000,1568913300000,1568913360000,1568913420000,1568913480000,1568913540000,1568913600000,1568913660000,1568913720000,1568913780000,1568913840000,1568913900000,1568913960000,1568914020000,1568914080000,1568914140000,1568914200000,1568914260000,1568914320000,1568914380000,1568914440000,1568914500000,1568914560000,1568914620000,1568914680000,1568914740000,1568914800000,1568914860000,1568914920000,1568914980000,1568915040000,1568915100000,1568915160000,1568915220000,1568915280000,1568915340000,1568915400000,1568915460000,1568915520000,1568915580000,1568915640000,1568915700000,1568915760000,1568915820000,1568915880000,1568915940000,1568916000000,1568916060000,1568916120000,1568916180000,1568916240000,1568916300000,1568916360000,1568916420000,1568916480000,1568916540000,1568916600000,1568916660000,1568916720000,1568916780000,1568916840000,1568916900000,1568916960000,1568917020000,1568917080000,1568917140000,1568917200000,1568917260000,1568917320000,1568917380000,1568917440000,1568917500000,1568917560000,1568917620000,1568917680000,1568917740000,1568917800000,1568917860000,1568917920000,1568917980000,1568918040000,1568918100000,1568918160000,1568918220000,1568918280000,1568918340000,1568918400000,1568918460000,1568918520000,1568918580000,1568918640000,1568918700000,1568918760000,1568918820000,1568918880000,1568918940000,1568919000000,1568919060000,1568919120000,1568919180000,1568919240000,1568919300000,1568919360000,1568919420000,1568919480000,1568919540000,1568919600000,1568919660000,1568919720000,1568919780000,1568919840000,1568919900000,1568919960000,1568920020000,1568920080000,1568920140000,1568920200000,1568920260000,1568920320000,1568920380000,1568920440000,1568920500000,1568920560000,1568920620000,1568920680000,1568920740000,1568920800000,1568920860000,1568920920000,1568920980000,1568921040000,1568921100000,1568921160000,1568921220000,1568921280000,1568921340000,1568921400000,1568921460000,1568921520000,1568921580000,1568921640000,1568921700000,1568921760000,1568921820000,1568921880000,1568921940000,1568922000000,1568922060000,1568922120000,1568922180000,1568922240000,1568922300000,1568922360000,1568922420000,1568922480000,1568922540000,1568922600000,1568922660000,1568922720000,1568922780000,1568922840000,1568922900000,1568922960000,1568923020000,1568923080000,1568923140000,1568923200000,1568923260000,1568923320000,1568923380000,1568923440000,1568923500000,1568923560000,1568923620000,1568923680000,1568923740000,1568923800000,1568923860000,1568923920000,1568923980000,1568924040000,1568924100000,1568924160000,1568924220000,1568924280000,1568924340000,1568924400000,1568924460000,1568924520000,1568924580000,1568924640000,1568924700000,1568924760000,1568924820000,1568924880000,1568924940000,1568925000000,1568925060000,1568925120000,1568925180000,1568925240000,1568925300000,1568925360000,1568925420000,1568925480000,1568925540000,1568925600000,1568925660000,1568925720000,1568925780000,1568925840000,1568925900000,1568925960000,1568926020000,1568926080000,1568926140000,1568926200000,1568926260000,1568926320000,1568926380000,1568926440000,1568926500000,1568926560000,1568926620000,1568926680000,1568926740000,1568926800000,1568926860000,1568926920000,1568926980000,1568927040000,1568927100000,1568927160000,1568927220000,1568927280000,1568927340000,1568927400000,1568927460000,1568927520000,1568927580000,1568927640000,1568927700000,1568927760000,1568927820000,1568927880000,1568927940000,1568928000000,1568928060000,1568928120000,1568928180000,1568928240000,1568928300000,1568928360000,1568928420000,1568928480000,1568928540000,1568928600000,1568928660000,1568928720000,1568928780000,1568928840000,1568928900000,1568928960000,1568929020000,1568929080000,1568929140000,1568929200000,1568929260000,1568929320000,1568929380000,1568929440000,1568929500000,1568929560000,1568929620000,1568929680000,1568929740000,1568929800000,1568929860000,1568929920000,1568929980000,1568930040000,1568930100000,1568930160000,1568930220000,1568930280000,1568930340000,1568930400000,1568930460000,1568930520000,1568930580000,1568930640000,1568930700000,1568930760000,1568930820000,1568930880000,1568930940000,1568931000000,1568931060000,1568931120000,1568931180000,1568931240000,1568931300000,1568931360000,1568931420000,1568931480000,1568931540000,1568931600000,1568931660000,1568931720000,1568931780000,1568931840000,1568931900000,1568931960000,1568932020000,1568932080000,1568932140000,1568932200000,1568932260000,1568932320000,1568932380000,1568932440000,1568932500000,1568932560000,1568932620000,1568932680000,1568932740000,1568932800000,1568932860000,1568932920000,1568932980000,1568933040000,1568933100000,1568933160000,1568933220000,1568933280000,1568933340000,1568933400000,1568933460000,1568933520000,1568933580000,1568933640000,1568933700000,1568933760000,1568933820000,1568933880000,1568933940000,1568934000000,1568934060000,1568934120000,1568934180000,1568934240000,1568934300000,1568934360000,1568934420000,1568934480000,1568934540000,1568934600000,1568934660000,1568934720000,1568934780000,1568934840000,1568934900000,1568934960000,1568935020000,1568935080000,1568935140000,1568935200000,1568935260000,1568935320000,1568935380000,1568935440000,1568935500000,1568935560000,1568935620000,1568935680000,1568935740000,1568935800000,1568935860000,1568935920000,1568935980000,1568936040000,1568936100000,1568936160000,1568936220000,1568936280000,1568936340000,1568936400000,1568936460000,1568936520000,1568936580000,1568936640000,1568936700000,1568936760000,1568936820000,1568936880000,1568936940000,1568937000000,1568937060000,1568937120000,1568937180000,1568937240000,1568937300000,1568937360000,1568937420000,1568937480000,1568937540000,1568937600000,1568937660000,1568937720000,1568937780000,1568937840000,1568937900000,1568937960000,1568938020000,1568938080000,1568938140000,1568938200000,1568938260000,1568938320000,1568938380000,1568938440000,1568938500000,1568938560000,1568938620000,1568938680000,1568938740000,1568938800000,1568938860000,1568938920000,1568938980000,1568939040000,1568939100000,1568939160000,1568939220000,1568939280000,1568939340000,1568939400000,1568939460000,1568939520000,1568939580000,1568939640000,1568939700000,1568939760000,1568939820000,1568939880000,1568939940000,1568940000000,1568940060000,1568940120000,1568940180000,1568940240000,1568940300000,1568940360000,1568940420000,1568940480000,1568940540000,1568940600000,1568940660000,1568940720000,1568940780000,1568940840000,1568940900000,1568940960000,1568941020000,1568941080000,1568941140000,1568941200000,1568941260000,1568941320000,1568941380000,1568941440000,1568941500000,1568941560000,1568941620000,1568941680000,1568941740000,1568941800000,1568941860000,1568941920000,1568941980000,1568942040000,1568942100000,1568942160000,1568942220000,1568942280000,1568942340000,1568942400000,1568942460000,1568942520000,1568942580000,1568942640000,1568942700000,1568942760000,1568942820000,1568942880000,1568942940000,1568943000000,1568943060000,1568943120000,1568943180000,1568943240000,1568943300000,1568943360000,1568943420000,1568943480000,1568943540000,1568943600000,1568943660000,1568943720000,1568943780000,1568943840000,1568943900000,1568943960000,1568944020000,1568944080000,1568944140000,1568944200000,1568944260000,1568944320000,1568944380000,1568944440000,1568944500000,1568944560000,1568944620000,1568944680000,1568944740000,1568944800000,1568944860000,1568944920000,1568944980000,1568945040000,1568945100000,1568945160000,1568945220000,1568945280000,1568945340000,1568945400000,1568945460000,1568945520000,1568945580000,1568945640000,1568945700000,1568945760000,1568945820000,1568945880000,1568945940000,1568946000000,1568946060000,1568946120000,1568946180000,1568946240000,1568946300000,1568946360000,1568946420000,1568946480000,1568946540000,1568946600000,1568946660000,1568946720000,1568946780000,1568946840000,1568946900000,1568946960000,1568947020000,1568947080000,1568947140000,1568947200000,1568947260000,1568947320000,1568947380000,1568947440000,1568947500000,1568947560000,1568947620000,1568947680000,1568947740000,1568947800000,1568947860000,1568947920000,1568947980000,1568948040000,1568948100000,1568948160000,1568948220000,1568948280000,1568948340000,1568948400000,1568948460000,1568948520000,1568948580000,1568948640000,1568948700000,1568948760000,1568948820000,1568948880000,1568948940000,1568949000000,1568949060000,1568949120000,1568949180000,1568949240000,1568949300000,1568949360000,1568949420000,1568949480000,1568949540000,1568949600000,1568949660000,1568949720000,1568949780000,1568949840000,1568949900000,1568949960000,1568950020000,1568950080000,1568950140000,1568950200000,1568950260000,1568950320000,1568950380000,1568950440000,1568950500000,1568950560000,1568950620000,1568950680000,1568950740000,1568950800000,1568950860000,1568950920000,1568950980000,1568951040000,1568951100000,1568951160000,1568951220000,1568951280000,1568951340000,1568951400000,1568951460000,1568951520000,1568951580000,1568951640000,1568951700000,1568951760000,1568951820000,1568951880000,1568951940000,1568952000000,1568952060000,1568952120000,1568952180000,1568952240000,1568952300000,1568952360000,1568952420000,1568952480000,1568952540000,1568952600000,1568952660000,1568952720000,1568952780000,1568952840000,1568952900000,1568952960000,1568953020000,1568953080000,1568953140000,1568953200000,1568953260000,1568953320000,1568953380000,1568953440000,1568953500000,1568953560000,1568953620000,1568953680000,1568953740000,1568953800000,1568953860000,1568953920000,1568953980000,1568954040000,1568954100000,1568954160000,1568954220000,1568954280000,1568954340000,1568954400000,1568954460000,1568954520000,1568954580000,1568954640000,1568954700000,1568954760000,1568954820000,1568954880000,1568954940000,1568955000000,1568955060000,1568955120000,1568955180000,1568955240000,1568955300000,1568955360000,1568955420000,1568955480000,1568955540000,1568955600000,1568955660000,1568955720000,1568955780000,1568955840000,1568955900000,1568955960000,1568956020000,1568956080000,1568956140000,1568956200000,1568956260000,1568956320000,1568956380000,1568956440000,1568956500000,1568956560000,1568956620000,1568956680000,1568956740000,1568956800000,1568956860000,1568956920000,1568956980000,1568957040000,1568957100000,1568957160000,1568957220000,1568957280000,1568957340000,1568957400000,1568957460000,1568957520000,1568957580000,1568957640000,1568957700000,1568957760000,1568957820000,1568957880000,1568957940000,1568958000000,1568958060000,1568958120000,1568958180000,1568958240000,1568958300000,1568958360000,1568958420000,1568958480000,1568958540000,1568958600000,1568958660000,1568958720000,1568958780000,1568958840000,1568958900000,1568958960000,1568959020000,1568959080000,1568959140000,1568959200000,1568959260000,1568959320000,1568959380000,1568959440000,1568959500000,1568959560000,1568959620000,1568959680000,1568959740000,1568959800000,1568959860000,1568959920000,1568959980000,1568960040000,1568960100000,1568960160000,1568960220000,1568960280000,1568960340000,1568960400000,1568960460000,1568960520000,1568960580000,1568960640000,1568960700000,1568960760000,1568960820000,1568960880000,1568960940000,1568961000000,1568961060000,1568961120000,1568961180000,1568961240000,1568961300000,1568961360000,1568961420000,1568961480000,1568961540000,1568961600000,1568961660000,1568961720000,1568961780000,1568961840000,1568961900000,1568961960000,1568962020000,1568962080000,1568962140000,1568962200000,1568962260000,1568962320000,1568962380000,1568962440000,1568962500000,1568962560000,1568962620000,1568962680000,1568962740000,1568962800000,1568962860000,1568962920000,1568962980000,1568963040000,1568963100000,1568963160000,1568963220000,1568963280000,1568963340000,1568963400000,1568963460000,1568963520000,1568963580000,1568963640000,1568963700000,1568963760000,1568963820000,1568963880000,1568963940000,1568964000000,1568964060000,1568964120000,1568964180000,1568964240000,1568964300000,1568964360000,1568964420000,1568964480000,1568964540000,1568964600000,1568964660000,1568964720000,1568964780000,1568964840000,1568964900000,1568964960000,1568965020000,1568965080000,1568965140000,1568965200000,1568965260000,1568965320000,1568965380000,1568965440000,1568965500000,1568965560000,1568965620000,1568965680000,1568965740000,1568965800000,1568965860000,1568965920000,1568965980000,1568966040000,1568966100000,1568966160000,1568966220000,1568966280000,1568966340000,1568966400000,1568966460000,1568966520000,1568966580000,1568966640000,1568966700000,1568966760000,1568966820000,1568966880000,1568966940000,1568967000000,1568967060000,1568967120000,1568967180000,1568967240000,1568967300000,1568967360000,1568967420000,1568967480000,1568967540000,1568967600000,1568967660000,1568967720000,1568967780000,1568967840000,1568967900000,1568967960000,1568968020000,1568968080000,1568968140000,1568968200000,1568968260000,1568968320000,1568968380000,1568968440000,1568968500000,1568968560000,1568968620000,1568968680000,1568968740000,1568968800000,1568968860000,1568968920000,1568968980000,1568969040000,1568969100000,1568969160000,1568969220000,1568969280000,1568969340000,1568969400000,1568969460000,1568969520000,1568969580000,1568969640000,1568969700000,1568969760000,1568969820000,1568969880000,1568969940000,1568970000000,1568970060000,1568970120000,1568970180000,1568970240000,1568970300000,1568970360000,1568970420000,1568970480000,1568970540000,1568970600000,1568970660000,1568970720000,1568970780000,1568970840000,1568970900000,1568970960000,1568971020000,1568971080000,1568971140000,1568971200000,1568971260000,1568971320000,1568971380000,1568971440000,1568971500000,1568971560000,1568971620000,1568971680000,1568971740000,1568971800000,1568971860000,1568971920000,1568971980000,1568972040000,1568972100000,1568972160000,1568972220000,1568972280000,1568972340000,1568972400000,1568972460000,1568972520000,1568972580000,1568972640000,1568972700000,1568972760000,1568972820000,1568972880000,1568972940000,1568973000000,1568973060000,1568973120000,1568973180000,1568973240000,1568973300000,1568973360000,1568973420000,1568973480000,1568973540000,1568973600000,1568973660000,1568973720000,1568973780000,1568973840000,1568973900000,1568973960000,1568974020000,1568974080000,1568974140000,1568974200000,1568974260000,1568974320000,1568974380000,1568974440000,1568974500000,1568974560000,1568974620000,1568974680000,1568974740000,1568974800000,1568974860000,1568974920000,1568974980000,1568975040000,1568975100000,1568975160000,1568975220000,1568975280000,1568975340000,1568975400000,1568975460000,1568975520000,1568975580000,1568975640000,1568975700000,1568975760000,1568975820000,1568975880000,1568975940000,1568976000000,1568976060000,1568976120000,1568976180000,1568976240000,1568976300000,1568976360000,1568976420000,1568976480000,1568976540000,1568976600000,1568976660000,1568976720000,1568976780000,1568976840000,1568976900000,1568976960000,1568977020000,1568977080000,1568977140000,1568977200000,1568977260000,1568977320000,1568977380000,1568977440000,1568977500000,1568977560000,1568977620000,1568977680000,1568977740000,1568977800000,1568977860000,1568977920000,1568977980000,1568978040000,1568978100000,1568978160000,1568978220000,1568978280000,1568978340000,1568978400000,1568978460000,1568978520000,1568978580000,1568978640000,1568978700000,1568978760000,1568978820000,1568978880000,1568978940000,1568979000000,1568979060000,1568979120000,1568979180000,1568979240000,1568979300000,1568979360000,1568979420000,1568979480000,1568979540000,1568979600000,1568979660000,1568979720000,1568979780000,1568979840000,1568979900000,1568979960000,1568980020000,1568980080000,1568980140000,1568980200000,1568980260000,1568980320000,1568980380000,1568980440000,1568980500000,1568980560000,1568980620000,1568980680000,1568980740000,1568980800000,1568980860000,1568980920000,1568980980000,1568981040000,1568981100000,1568981160000,1568981220000,1568981280000,1568981340000,1568981400000,1568981460000,1568981520000,1568981580000,1568981640000,1568981700000,1568981760000,1568981820000,1568981880000,1568981940000,1568982000000,1568982060000,1568982120000,1568982180000,1568982240000,1568982300000,1568982360000,1568982420000,1568982480000,1568982540000,1568982600000,1568982660000,1568982720000,1568982780000,1568982840000,1568982900000,1568982960000,1568983020000,1568983080000,1568983140000,1568983200000,1568983260000,1568983320000,1568983380000,1568983440000,1568983500000,1568983560000,1568983620000,1568983680000,1568983740000,1568983800000,1568983860000,1568983920000,1568983980000,1568984040000,1568984100000,1568984160000,1568984220000,1568984280000,1568984340000,1568984400000,1568984460000,1568984520000,1568984580000,1568984640000,1568984700000,1568984760000,1568984820000,1568984880000,1568984940000,1568985000000,1568985060000,1568985120000,1568985180000,1568985240000,1568985300000,1568985360000,1568985420000,1568985480000,1568985540000,1568985600000,1568985660000,1568985720000,1568985780000,1568985840000,1568985900000,1568985960000,1568986020000,1568986080000,1568986140000,1568986200000,1568986260000,1568986320000,1568986380000,1568986440000,1568986500000,1568986560000,1568986620000,1568986680000,1568986740000,1568986800000,1568986860000,1568986920000,1568986980000,1568987040000,1568987100000,1568987160000,1568987220000,1568987280000,1568987340000,1568987400000,1568987460000,1568987520000,1568987580000,1568987640000,1568987700000,1568987760000,1568987820000,1568987880000,1568987940000,1568988000000,1568988060000,1568988120000,1568988180000,1568988240000,1568988300000,1568988360000,1568988420000,1568988480000,1568988540000,1568988600000,1568988660000,1568988720000,1568988780000,1568988840000,1568988900000,1568988960000,1568989020000,1568989080000,1568989140000,1568989200000,1568989260000,1568989320000,1568989380000,1568989440000,1568989500000,1568989560000,1568989620000,1568989680000,1568989740000,1568989800000,1568989860000,1568989920000,1568989980000,1568990040000,1568990100000,1568990160000,1568990220000,1568990280000,1568990340000,1568990400000,1568990460000,1568990520000,1568990580000,1568990640000,1568990700000,1568990760000,1568990820000,1568990880000,1568990940000,1568991000000,1568991060000,1568991120000,1568991180000,1568991240000,1568991300000,1568991360000,1568991420000,1568991480000,1568991540000,1568991600000,1568991660000,1568991720000,1568991780000,1568991840000,1568991900000,1568991960000,1568992020000,1568992080000,1568992140000,1568992200000,1568992260000,1568992320000,1568992380000,1568992440000,1568992500000,1568992560000,1568992620000,1568992680000,1568992740000,1568992800000,1568992860000,1568992920000,1568992980000,1568993040000,1568993100000,1568993160000,1568993220000,1568993280000,1568993340000,1568993400000,1568993460000,1568993520000,1568993580000,1568993640000,1568993700000,1568993760000,1568993820000,1568993880000,1568993940000,1568994000000,1568994060000,1568994120000,1568994180000,1568994240000,1568994300000,1568994360000,1568994420000,1568994480000,1568994540000,1568994600000,1568994660000,1568994720000,1568994780000,1568994840000,1568994900000,1568994960000,1568995020000,1568995080000,1568995140000,1568995200000,1568995260000,1568995320000,1568995380000,1568995440000,1568995500000,1568995560000,1568995620000,1568995680000,1568995740000,1568995800000,1568995860000,1568995920000,1568995980000,1568996040000,1568996100000,1568996160000,1568996220000,1568996280000,1568996340000,1568996400000,1568996460000,1568996520000,1568996580000,1568996640000,1568996700000,1568996760000,1568996820000,1568996880000,1568996940000,1568997000000,1568997060000,1568997120000,1568997180000,1568997240000,1568997300000,1568997360000,1568997420000,1568997480000,1568997540000,1568997600000,1568997660000,1568997720000,1568997780000,1568997840000,1568997900000,1568997960000,1568998020000,1568998080000,1568998140000,1568998200000,1568998260000,1568998320000,1568998380000,1568998440000,1568998500000,1568998560000,1568998620000,1568998680000,1568998740000,1568998800000,1568998860000,1568998920000,1568998980000,1568999040000,1568999100000,1568999160000,1568999220000,1568999280000,1568999340000,1568999400000,1568999460000,1568999520000,1568999580000,1568999640000,1568999700000,1568999760000,1568999820000,1568999880000,1568999940000,1569000000000,1569000060000,1569000120000,1569000180000,1569000240000,1569000300000,1569000360000,1569000420000,1569000480000,1569000540000,1569000600000,1569000660000,1569000720000,1569000780000,1569000840000,1569000900000,1569000960000,1569001020000,1569001080000,1569001140000,1569001200000,1569001260000,1569001320000,1569001380000,1569001440000,1569001500000,1569001560000,1569001620000,1569001680000,1569001740000,1569001800000,1569001860000,1569001920000,1569001980000,1569002040000,1569002100000,1569002160000,1569002220000,1569002280000,1569002340000,1569002400000,1569002460000,1569002520000,1569002580000,1569002640000,1569002700000,1569002760000,1569002820000,1569002880000,1569002940000,1569003000000,1569003060000,1569003120000,1569003180000,1569003240000,1569003300000,1569003360000,1569003420000,1569003480000,1569003540000,1569003600000,1569003660000,1569003720000,1569003780000,1569003840000,1569003900000,1569003960000,1569004020000,1569004080000,1569004140000,1569004200000,1569004260000,1569004320000,1569004380000,1569004440000,1569004500000,1569004560000,1569004620000,1569004680000,1569004740000,1569004800000,1569004860000,1569004920000,1569004980000,1569005040000,1569005100000,1569005160000,1569005220000,1569005280000,1569005340000,1569005400000,1569005460000,1569005520000,1569005580000,1569005640000,1569005700000,1569005760000,1569005820000,1569005880000,1569005940000,1569006000000,1569006060000,1569006120000,1569006180000,1569006240000,1569006300000,1569006360000,1569006420000,1569006480000,1569006540000,1569006600000,1569006660000,1569006720000,1569006780000,1569006840000,1569006900000,1569006960000,1569007020000,1569007080000,1569007140000,1569007200000,1569007260000,1569007320000,1569007380000,1569007440000,1569007500000,1569007560000,1569007620000,1569007680000,1569007740000,1569007800000,1569007860000,1569007920000,1569007980000,1569008040000,1569008100000,1569008160000,1569008220000,1569008280000,1569008340000,1569008400000,1569008460000,1569008520000,1569008580000,1569008640000,1569008700000,1569008760000,1569008820000,1569008880000,1569008940000,1569009000000,1569009060000,1569009120000,1569009180000,1569009240000,1569009300000,1569009360000,1569009420000,1569009480000,1569009540000,1569009600000,1569009660000,1569009720000,1569009780000,1569009840000,1569009900000,1569009960000,1569010020000,1569010080000,1569010140000,1569010200000,1569010260000,1569010320000,1569010380000,1569010440000,1569010500000,1569010560000,1569010620000,1569010680000,1569010740000,1569010800000,1569010860000,1569010920000,1569010980000,1569011040000,1569011100000,1569011160000,1569011220000,1569011280000,1569011340000,1569011400000,1569011460000,1569011520000,1569011580000,1569011640000,1569011700000,1569011760000,1569011820000,1569011880000,1569011940000,1569012000000,1569012060000,1569012120000,1569012180000,1569012240000,1569012300000,1569012360000,1569012420000,1569012480000,1569012540000,1569012600000,1569012660000,1569012720000,1569012780000,1569012840000,1569012900000,1569012960000,1569013020000,1569013080000,1569013140000,1569013200000,1569013260000,1569013320000,1569013380000,1569013440000,1569013500000,1569013560000,1569013620000,1569013680000,1569013740000,1569013800000,1569013860000,1569013920000,1569013980000,1569014040000,1569014100000,1569014160000,1569014220000,1569014280000,1569014340000,1569014400000,1569014460000,1569014520000,1569014580000,1569014640000,1569014700000,1569014760000,1569014820000,1569014880000,1569014940000,1569015000000,1569015060000,1569015120000,1569015180000,1569015240000,1569015300000,1569015360000,1569015420000,1569015480000,1569015540000,1569015600000,1569015660000,1569015720000,1569015780000,1569015840000,1569015900000,1569015960000,1569016020000,1569016080000,1569016140000,1569016200000,1569016260000,1569016320000,1569016380000,1569016440000,1569016500000,1569016560000,1569016620000,1569016680000,1569016740000,1569016800000,1569016860000,1569016920000,1569016980000,1569017040000,1569017100000,1569017160000,1569017220000,1569017280000,1569017340000,1569017400000,1569017460000,1569017520000,1569017580000,1569017640000,1569017700000,1569017760000,1569017820000,1569017880000,1569017940000,1569018000000,1569018060000,1569018120000,1569018180000,1569018240000,1569018300000,1569018360000,1569018420000,1569018480000,1569018540000,1569018600000,1569018660000,1569018720000,1569018780000,1569018840000,1569018900000,1569018960000,1569019020000,1569019080000,1569019140000,1569019200000,1569019260000,1569019320000,1569019380000,1569019440000,1569019500000,1569019560000,1569019620000,1569019680000,1569019740000,1569019800000,1569019860000,1569019920000,1569019980000,1569020040000,1569020100000,1569020160000,1569020220000,1569020280000,1569020340000,1569020400000,1569020460000,1569020520000,1569020580000,1569020640000,1569020700000,1569020760000,1569020820000,1569020880000,1569020940000,1569021000000,1569021060000,1569021120000,1569021180000,1569021240000,1569021300000,1569021360000,1569021420000,1569021480000,1569021540000,1569021600000,1569021660000,1569021720000,1569021780000,1569021840000,1569021900000,1569021960000,1569022020000,1569022080000,1569022140000,1569022200000,1569022260000,1569022320000,1569022380000,1569022440000,1569022500000,1569022560000,1569022620000,1569022680000,1569022740000,1569022800000,1569022860000,1569022920000,1569022980000,1569023040000,1569023100000,1569023160000,1569023220000,1569023280000,1569023340000,1569023400000,1569023460000,1569023520000,1569023580000,1569023640000,1569023700000,1569023760000,1569023820000,1569023880000,1569023940000,1569024000000,1569024060000,1569024120000,1569024180000,1569024240000,1569024300000,1569024360000,1569024420000,1569024480000,1569024540000,1569024600000,1569024660000,1569024720000,1569024780000,1569024840000,1569024900000,1569024960000,1569025020000,1569025080000,1569025140000,1569025200000,1569025260000,1569025320000,1569025380000,1569025440000,1569025500000,1569025560000,1569025620000,1569025680000,1569025740000,1569025800000,1569025860000,1569025920000,1569025980000,1569026040000,1569026100000,1569026160000,1569026220000,1569026280000,1569026340000,1569026400000,1569026460000,1569026520000,1569026580000,1569026640000,1569026700000,1569026760000,1569026820000,1569026880000,1569026940000,1569027000000,1569027060000,1569027120000,1569027180000,1569027240000,1569027300000,1569027360000,1569027420000,1569027480000,1569027540000,1569027600000,1569027660000,1569027720000,1569027780000,1569027840000,1569027900000,1569027960000,1569028020000,1569028080000,1569028140000,1569028200000,1569028260000,1569028320000,1569028380000,1569028440000,1569028500000,1569028560000,1569028620000,1569028680000,1569028740000,1569028800000,1569028860000,1569028920000,1569028980000,1569029040000,1569029100000,1569029160000,1569029220000,1569029280000,1569029340000,1569029400000,1569029460000,1569029520000,1569029580000,1569029640000,1569029700000,1569029760000,1569029820000,1569029880000,1569029940000,1569030000000,1569030060000,1569030120000,1569030180000,1569030240000,1569030300000,1569030360000,1569030420000,1569030480000,1569030540000,1569030600000,1569030660000,1569030720000,1569030780000,1569030840000,1569030900000,1569030960000,1569031020000,1569031080000,1569031140000,1569031200000,1569031260000,1569031320000,1569031380000,1569031440000,1569031500000,1569031560000,1569031620000,1569031680000,1569031740000,1569031800000,1569031860000,1569031920000,1569031980000,1569032040000,1569032100000,1569032160000,1569032220000,1569032280000,1569032340000,1569032400000,1569032460000,1569032520000,1569032580000,1569032640000,1569032700000,1569032760000,1569032820000,1569032880000,1569032940000,1569033000000,1569033060000,1569033120000,1569033180000,1569033240000,1569033300000,1569033360000,1569033420000,1569033480000,1569033540000,1569033600000,1569033660000,1569033720000,1569033780000,1569033840000,1569033900000,1569033960000,1569034020000,1569034080000,1569034140000,1569034200000,1569034260000,1569034320000,1569034380000,1569034440000,1569034500000,1569034560000,1569034620000,1569034680000,1569034740000,1569034800000,1569034860000,1569034920000,1569034980000,1569035040000,1569035100000,1569035160000,1569035220000,1569035280000,1569035340000,1569035400000,1569035460000,1569035520000,1569035580000,1569035640000,1569035700000,1569035760000,1569035820000,1569035880000,1569035940000,1569036000000,1569036060000,1569036120000,1569036180000,1569036240000,1569036300000,1569036360000,1569036420000,1569036480000,1569036540000,1569036600000,1569036660000,1569036720000,1569036780000,1569036840000,1569036900000,1569036960000,1569037020000,1569037080000,1569037140000,1569037200000,1569037260000,1569037320000,1569037380000,1569037440000,1569037500000,1569037560000,1569037620000,1569037680000,1569037740000,1569037800000,1569037860000,1569037920000,1569037980000,1569038040000,1569038100000,1569038160000,1569038220000,1569038280000,1569038340000,1569038400000,1569038460000,1569038520000,1569038580000,1569038640000,1569038700000,1569038760000,1569038820000,1569038880000,1569038940000,1569039000000,1569039060000,1569039120000,1569039180000,1569039240000,1569039300000,1569039360000,1569039420000,1569039480000,1569039540000,1569039600000,1569039660000,1569039720000,1569039780000,1569039840000,1569039900000,1569039960000,1569040020000,1569040080000,1569040140000,1569040200000,1569040260000,1569040320000,1569040380000,1569040440000,1569040500000,1569040560000,1569040620000,1569040680000,1569040740000,1569040800000,1569040860000,1569040920000,1569040980000,1569041040000,1569041100000,1569041160000,1569041220000,1569041280000,1569041340000,1569041400000,1569041460000,1569041520000,1569041580000,1569041640000,1569041700000,1569041760000,1569041820000,1569041880000,1569041940000,1569042000000,1569042060000,1569042120000,1569042180000,1569042240000,1569042300000,1569042360000,1569042420000,1569042480000,1569042540000,1569042600000,1569042660000,1569042720000,1569042780000,1569042840000,1569042900000,1569042960000,1569043020000,1569043080000,1569043140000,1569043200000,1569043260000,1569043320000,1569043380000,1569043440000,1569043500000,1569043560000,1569043620000,1569043680000,1569043740000,1569043800000,1569043860000,1569043920000,1569043980000,1569044040000,1569044100000,1569044160000,1569044220000,1569044280000,1569044340000,1569044400000,1569044460000,1569044520000,1569044580000,1569044640000,1569044700000,1569044760000,1569044820000,1569044880000,1569044940000,1569045000000,1569045060000,1569045120000,1569045180000,1569045240000,1569045300000,1569045360000,1569045420000,1569045480000,1569045540000,1569045600000,1569045660000,1569045720000,1569045780000,1569045840000,1569045900000,1569045960000,1569046020000,1569046080000,1569046140000,1569046200000,1569046260000,1569046320000,1569046380000,1569046440000,1569046500000,1569046560000,1569046620000,1569046680000,1569046740000,1569046800000,1569046860000,1569046920000,1569046980000,1569047040000,1569047100000,1569047160000,1569047220000,1569047280000,1569047340000,1569047400000,1569047460000,1569047520000,1569047580000,1569047640000,1569047700000,1569047760000,1569047820000,1569047880000,1569047940000,1569048000000,1569048060000,1569048120000,1569048180000,1569048240000,1569048300000,1569048360000,1569048420000,1569048480000,1569048540000,1569048600000,1569048660000,1569048720000,1569048780000,1569048840000,1569048900000,1569048960000,1569049020000,1569049080000,1569049140000,1569049200000,1569049260000,1569049320000,1569049380000,1569049440000,1569049500000,1569049560000,1569049620000,1569049680000,1569049740000,1569049800000,1569049860000,1569049920000,1569049980000,1569050040000,1569050100000,1569050160000,1569050220000,1569050280000,1569050340000,1569050400000,1569050460000,1569050520000,1569050580000,1569050640000,1569050700000,1569050760000,1569050820000,1569050880000,1569050940000,1569051000000,1569051060000,1569051120000,1569051180000,1569051240000,1569051300000,1569051360000,1569051420000,1569051480000,1569051540000,1569051600000,1569051660000,1569051720000,1569051780000,1569051840000,1569051900000,1569051960000,1569052020000,1569052080000,1569052140000,1569052200000,1569052260000,1569052320000,1569052380000,1569052440000,1569052500000,1569052560000,1569052620000,1569052680000,1569052740000,1569052800000,1569052860000,1569052920000,1569052980000,1569053040000,1569053100000,1569053160000,1569053220000,1569053280000,1569053340000,1569053400000,1569053460000,1569053520000,1569053580000,1569053640000,1569053700000,1569053760000,1569053820000,1569053880000,1569053940000,1569054000000,1569054060000,1569054120000,1569054180000,1569054240000,1569054300000,1569054360000,1569054420000,1569054480000,1569054540000,1569054600000,1569054660000,1569054720000,1569054780000,1569054840000,1569054900000,1569054960000,1569055020000,1569055080000,1569055140000,1569055200000,1569055260000,1569055320000,1569055380000,1569055440000,1569055500000,1569055560000,1569055620000,1569055680000,1569055740000,1569055800000,1569055860000,1569055920000,1569055980000,1569056040000,1569056100000,1569056160000,1569056220000,1569056280000,1569056340000,1569056400000,1569056460000,1569056520000,1569056580000,1569056640000,1569056700000,1569056760000,1569056820000,1569056880000,1569056940000,1569057000000,1569057060000,1569057120000,1569057180000,1569057240000,1569057300000,1569057360000,1569057420000,1569057480000,1569057540000,1569057600000,1569057660000,1569057720000,1569057780000,1569057840000,1569057900000,1569057960000,1569058020000,1569058080000,1569058140000,1569058200000,1569058260000,1569058320000,1569058380000,1569058440000,1569058500000,1569058560000,1569058620000,1569058680000,1569058740000,1569058800000,1569058860000,1569058920000,1569058980000,1569059040000,1569059100000,1569059160000,1569059220000,1569059280000,1569059340000,1569059400000,1569059460000,1569059520000,1569059580000,1569059640000,1569059700000,1569059760000,1569059820000,1569059880000,1569059940000,1569060000000,1569060060000,1569060120000,1569060180000,1569060240000,1569060300000,1569060360000,1569060420000,1569060480000,1569060540000,1569060600000,1569060660000,1569060720000,1569060780000,1569060840000,1569060900000,1569060960000,1569061020000,1569061080000,1569061140000,1569061200000,1569061260000,1569061320000,1569061380000,1569061440000,1569061500000,1569061560000,1569061620000,1569061680000,1569061740000,1569061800000,1569061860000,1569061920000,1569061980000,1569062040000,1569062100000,1569062160000,1569062220000,1569062280000,1569062340000,1569062400000,1569062460000,1569062520000,1569062580000,1569062640000,1569062700000,1569062760000,1569062820000,1569062880000,1569062940000,1569063000000,1569063060000,1569063120000,1569063180000,1569063240000,1569063300000,1569063360000,1569063420000,1569063480000,1569063540000,1569063600000,1569063660000,1569063720000,1569063780000,1569063840000,1569063900000,1569063960000,1569064020000,1569064080000,1569064140000,1569064200000,1569064260000,1569064320000,1569064380000,1569064440000,1569064500000,1569064560000,1569064620000,1569064680000,1569064740000,1569064800000,1569064860000,1569064920000,1569064980000,1569065040000,1569065100000,1569065160000,1569065220000,1569065280000,1569065340000,1569065400000,1569065460000,1569065520000,1569065580000,1569065640000,1569065700000,1569065760000,1569065820000,1569065880000,1569065940000,1569066000000,1569066060000,1569066120000,1569066180000,1569066240000,1569066300000,1569066360000,1569066420000,1569066480000,1569066540000,1569066600000,1569066660000,1569066720000,1569066780000,1569066840000,1569066900000,1569066960000,1569067020000,1569067080000,1569067140000,1569067200000,1569067260000,1569067320000,1569067380000,1569067440000,1569067500000,1569067560000,1569067620000,1569067680000,1569067740000,1569067800000,1569067860000,1569067920000,1569067980000,1569068040000,1569068100000,1569068160000,1569068220000,1569068280000,1569068340000,1569068400000,1569068460000,1569068520000,1569068580000,1569068640000,1569068700000,1569068760000,1569068820000,1569068880000,1569068940000,1569069000000,1569069060000,1569069120000,1569069180000,1569069240000,1569069300000,1569069360000,1569069420000,1569069480000,1569069540000,1569069600000,1569069660000,1569069720000,1569069780000,1569069840000,1569069900000,1569069960000,1569070020000,1569070080000,1569070140000,1569070200000,1569070260000,1569070320000,1569070380000,1569070440000,1569070500000,1569070560000,1569070620000,1569070680000,1569070740000,1569070800000,1569070860000,1569070920000,1569070980000,1569071040000,1569071100000,1569071160000,1569071220000,1569071280000,1569071340000,1569071400000,1569071460000,1569071520000,1569071580000,1569071640000,1569071700000,1569071760000,1569071820000,1569071880000,1569071940000,1569072000000,1569072060000,1569072120000,1569072180000,1569072240000,1569072300000,1569072360000,1569072420000,1569072480000,1569072540000,1569072600000,1569072660000,1569072720000,1569072780000,1569072840000,1569072900000,1569072960000,1569073020000,1569073080000,1569073140000,1569073200000,1569073260000,1569073320000,1569073380000,1569073440000,1569073500000,1569073560000,1569073620000,1569073680000,1569073740000,1569073800000,1569073860000,1569073920000,1569073980000,1569074040000,1569074100000,1569074160000,1569074220000,1569074280000,1569074340000,1569074400000,1569074460000,1569074520000,1569074580000,1569074640000,1569074700000,1569074760000,1569074820000,1569074880000,1569074940000,1569075000000,1569075060000,1569075120000,1569075180000,1569075240000,1569075300000,1569075360000,1569075420000,1569075480000,1569075540000,1569075600000,1569075660000,1569075720000,1569075780000,1569075840000,1569075900000,1569075960000,1569076020000,1569076080000,1569076140000,1569076200000,1569076260000,1569076320000,1569076380000,1569076440000,1569076500000,1569076560000,1569076620000,1569076680000,1569076740000,1569076800000,1569076860000,1569076920000,1569076980000,1569077040000,1569077100000,1569077160000,1569077220000,1569077280000,1569077340000,1569077400000,1569077460000,1569077520000,1569077580000,1569077640000,1569077700000,1569077760000,1569077820000,1569077880000,1569077940000,1569078000000,1569078060000,1569078120000,1569078180000,1569078240000,1569078300000,1569078360000,1569078420000,1569078480000,1569078540000,1569078600000,1569078660000,1569078720000,1569078780000,1569078840000,1569078900000,1569078960000,1569079020000,1569079080000,1569079140000,1569079200000,1569079260000,1569079320000,1569079380000,1569079440000,1569079500000,1569079560000,1569079620000,1569079680000,1569079740000,1569079800000,1569079860000,1569079920000,1569079980000,1569080040000,1569080100000,1569080160000,1569080220000,1569080280000,1569080340000,1569080400000,1569080460000,1569080520000,1569080580000,1569080640000,1569080700000,1569080760000,1569080820000,1569080880000,1569080940000,1569081000000,1569081060000,1569081120000,1569081180000,1569081240000,1569081300000,1569081360000,1569081420000,1569081480000,1569081540000,1569081600000,1569081660000,1569081720000,1569081780000,1569081840000,1569081900000,1569081960000,1569082020000,1569082080000,1569082140000,1569082200000,1569082260000,1569082320000,1569082380000,1569082440000,1569082500000,1569082560000,1569082620000,1569082680000,1569082740000,1569082800000,1569082860000,1569082920000,1569082980000,1569083040000,1569083100000,1569083160000,1569083220000,1569083280000,1569083340000,1569083400000,1569083460000,1569083520000,1569083580000,1569083640000,1569083700000,1569083760000,1569083820000,1569083880000,1569083940000,1569084000000,1569084060000,1569084120000,1569084180000,1569084240000,1569084300000,1569084360000,1569084420000,1569084480000,1569084540000,1569084600000,1569084660000,1569084720000,1569084780000,1569084840000,1569084900000,1569084960000,1569085020000,1569085080000,1569085140000,1569085200000,1569085260000,1569085320000,1569085380000,1569085440000,1569085500000,1569085560000,1569085620000,1569085680000,1569085740000,1569085800000,1569085860000,1569085920000,1569085980000,1569086040000,1569086100000,1569086160000,1569086220000,1569086280000,1569086340000,1569086400000,1569086460000,1569086520000,1569086580000,1569086640000,1569086700000,1569086760000,1569086820000,1569086880000,1569086940000,1569087000000,1569087060000,1569087120000,1569087180000,1569087240000,1569087300000,1569087360000,1569087420000,1569087480000,1569087540000,1569087600000,1569087660000,1569087720000,1569087780000,1569087840000,1569087900000,1569087960000,1569088020000,1569088080000,1569088140000,1569088200000,1569088260000,1569088320000,1569088380000,1569088440000,1569088500000,1569088560000,1569088620000,1569088680000,1569088740000,1569088800000,1569088860000,1569088920000,1569088980000,1569089040000,1569089100000,1569089160000,1569089220000,1569089280000,1569089340000,1569089400000,1569089460000,1569089520000,1569089580000,1569089640000,1569089700000,1569089760000,1569089820000,1569089880000,1569089940000,1569090000000,1569090060000,1569090120000,1569090180000,1569090240000,1569090300000,1569090360000,1569090420000,1569090480000,1569090540000,1569090600000,1569090660000,1569090720000,1569090780000,1569090840000,1569090900000,1569090960000,1569091020000,1569091080000,1569091140000,1569091200000,1569091260000,1569091320000,1569091380000,1569091440000,1569091500000,1569091560000,1569091620000,1569091680000,1569091740000,1569091800000,1569091860000,1569091920000,1569091980000,1569092040000,1569092100000,1569092160000,1569092220000,1569092280000,1569092340000,1569092400000,1569092460000,1569092520000,1569092580000,1569092640000,1569092700000,1569092760000,1569092820000,1569092880000,1569092940000,1569093000000,1569093060000,1569093120000,1569093180000,1569093240000,1569093300000,1569093360000,1569093420000,1569093480000,1569093540000,1569093600000,1569093660000,1569093720000,1569093780000,1569093840000,1569093900000,1569093960000,1569094020000,1569094080000,1569094140000,1569094200000,1569094260000,1569094320000,1569094380000,1569094440000,1569094500000,1569094560000,1569094620000,1569094680000,1569094740000,1569094800000,1569094860000,1569094920000,1569094980000,1569095040000,1569095100000,1569095160000,1569095220000,1569095280000,1569095340000,1569095400000,1569095460000,1569095520000,1569095580000,1569095640000,1569095700000,1569095760000,1569095820000,1569095880000,1569095940000,1569096000000,1569096060000,1569096120000,1569096180000,1569096240000,1569096300000,1569096360000,1569096420000,1569096480000,1569096540000,1569096600000,1569096660000,1569096720000,1569096780000,1569096840000,1569096900000,1569096960000,1569097020000,1569097080000,1569097140000,1569097200000,1569097260000,1569097320000,1569097380000,1569097440000,1569097500000,1569097560000,1569097620000,1569097680000,1569097740000,1569097800000,1569097860000,1569097920000,1569097980000,1569098040000,1569098100000,1569098160000,1569098220000,1569098280000,1569098340000,1569098400000,1569098460000,1569098520000,1569098580000,1569098640000,1569098700000,1569098760000,1569098820000,1569098880000,1569098940000,1569099000000,1569099060000,1569099120000,1569099180000,1569099240000,1569099300000,1569099360000,1569099420000,1569099480000,1569099540000,1569099600000,1569099660000,1569099720000,1569099780000,1569099840000,1569099900000,1569099960000,1569100020000,1569100080000,1569100140000,1569100200000,1569100260000,1569100320000,1569100380000,1569100440000,1569100500000,1569100560000,1569100620000,1569100680000,1569100740000,1569100800000,1569100860000,1569100920000,1569100980000,1569101040000,1569101100000,1569101160000,1569101220000,1569101280000,1569101340000,1569101400000,1569101460000,1569101520000,1569101580000,1569101640000,1569101700000,1569101760000,1569101820000,1569101880000,1569101940000,1569102000000,1569102060000,1569102120000,1569102180000,1569102240000,1569102300000,1569102360000,1569102420000,1569102480000,1569102540000,1569102600000,1569102660000,1569102720000,1569102780000,1569102840000,1569102900000,1569102960000,1569103020000,1569103080000,1569103140000,1569103200000,1569103260000,1569103320000,1569103380000,1569103440000,1569103500000,1569103560000,1569103620000,1569103680000,1569103740000,1569103800000,1569103860000,1569103920000,1569103980000,1569104040000,1569104100000,1569104160000,1569104220000,1569104280000,1569104340000,1569104400000,1569104460000,1569104520000,1569104580000,1569104640000,1569104700000,1569104760000,1569104820000,1569104880000,1569104940000,1569105000000,1569105060000,1569105120000,1569105180000,1569105240000,1569105300000,1569105360000,1569105420000,1569105480000,1569105540000,1569105600000,1569105660000,1569105720000,1569105780000,1569105840000,1569105900000,1569105960000,1569106020000,1569106080000,1569106140000,1569106200000,1569106260000,1569106320000,1569106380000,1569106440000,1569106500000,1569106560000,1569106620000,1569106680000,1569106740000,1569106800000,1569106860000,1569106920000,1569106980000,1569107040000,1569107100000,1569107160000,1569107220000,1569107280000,1569107340000,1569107400000,1569107460000,1569107520000,1569107580000,1569107640000,1569107700000,1569107760000,1569107820000,1569107880000,1569107940000,1569108000000,1569108060000,1569108120000,1569108180000,1569108240000,1569108300000,1569108360000,1569108420000,1569108480000,1569108540000,1569108600000,1569108660000,1569108720000,1569108780000,1569108840000,1569108900000,1569108960000,1569109020000,1569109080000,1569109140000,1569109200000,1569109260000,1569109320000,1569109380000,1569109440000,1569109500000,1569109560000,1569109620000,1569109680000,1569109740000,1569109800000,1569109860000,1569109920000,1569109980000,1569110040000,1569110100000,1569110160000,1569110220000,1569110280000,1569110340000,1569110400000,1569110460000,1569110520000,1569110580000,1569110640000,1569110700000,1569110760000,1569110820000,1569110880000,1569110940000,1569111000000,1569111060000,1569111120000,1569111180000,1569111240000,1569111300000,1569111360000,1569111420000,1569111480000,1569111540000,1569111600000,1569111660000,1569111720000,1569111780000,1569111840000,1569111900000,1569111960000,1569112020000,1569112080000,1569112140000,1569112200000,1569112260000,1569112320000,1569112380000,1569112440000,1569112500000,1569112560000,1569112620000,1569112680000,1569112740000,1569112800000,1569112860000,1569112920000,1569112980000,1569113040000,1569113100000,1569113160000,1569113220000,1569113280000,1569113340000,1569113400000,1569113460000,1569113520000,1569113580000,1569113640000,1569113700000,1569113760000,1569113820000,1569113880000,1569113940000,1569114000000,1569114060000,1569114120000,1569114180000,1569114240000,1569114300000,1569114360000,1569114420000,1569114480000,1569114540000,1569114600000,1569114660000,1569114720000,1569114780000,1569114840000,1569114900000,1569114960000,1569115020000,1569115080000,1569115140000,1569115200000,1569115260000,1569115320000,1569115380000,1569115440000,1569115500000,1569115560000,1569115620000,1569115680000,1569115740000,1569115800000,1569115860000,1569115920000,1569115980000,1569116040000,1569116100000,1569116160000,1569116220000,1569116280000,1569116340000,1569116400000,1569116460000,1569116520000,1569116580000,1569116640000,1569116700000,1569116760000,1569116820000,1569116880000,1569116940000,1569117000000,1569117060000,1569117120000,1569117180000,1569117240000,1569117300000,1569117360000,1569117420000,1569117480000,1569117540000,1569117600000,1569117660000,1569117720000,1569117780000,1569117840000,1569117900000,1569117960000,1569118020000,1569118080000,1569118140000,1569118200000,1569118260000,1569118320000,1569118380000,1569118440000,1569118500000,1569118560000,1569118620000,1569118680000,1569118740000,1569118800000,1569118860000,1569118920000,1569118980000,1569119040000,1569119100000,1569119160000,1569119220000,1569119280000,1569119340000,1569119400000,1569119460000,1569119520000,1569119580000,1569119640000,1569119700000,1569119760000,1569119820000,1569119880000,1569119940000,1569120000000,1569120060000,1569120120000,1569120180000,1569120240000,1569120300000,1569120360000,1569120420000,1569120480000,1569120540000,1569120600000,1569120660000,1569120720000,1569120780000,1569120840000,1569120900000,1569120960000,1569121020000,1569121080000,1569121140000,1569121200000,1569121260000,1569121320000,1569121380000,1569121440000,1569121500000,1569121560000,1569121620000,1569121680000,1569121740000,1569121800000,1569121860000,1569121920000,1569121980000,1569122040000,1569122100000,1569122160000,1569122220000,1569122280000,1569122340000,1569122400000,1569122460000,1569122520000,1569122580000,1569122640000,1569122700000,1569122760000,1569122820000,1569122880000,1569122940000,1569123000000,1569123060000,1569123120000,1569123180000,1569123240000,1569123300000,1569123360000,1569123420000,1569123480000,1569123540000,1569123600000,1569123660000,1569123720000,1569123780000,1569123840000,1569123900000,1569123960000,1569124020000,1569124080000,1569124140000,1569124200000,1569124260000,1569124320000,1569124380000,1569124440000,1569124500000,1569124560000,1569124620000,1569124680000,1569124740000,1569124800000,1569124860000,1569124920000,1569124980000,1569125040000,1569125100000,1569125160000,1569125220000,1569125280000,1569125340000,1569125400000,1569125460000,1569125520000,1569125580000,1569125640000,1569125700000,1569125760000,1569125820000,1569125880000,1569125940000,1569126000000,1569126060000,1569126120000,1569126180000,1569126240000,1569126300000,1569126360000,1569126420000,1569126480000,1569126540000,1569126600000,1569126660000,1569126720000,1569126780000,1569126840000,1569126900000,1569126960000,1569127020000,1569127080000,1569127140000,1569127200000,1569127260000,1569127320000,1569127380000,1569127440000,1569127500000,1569127560000,1569127620000,1569127680000,1569127740000,1569127800000,1569127860000,1569127920000,1569127980000,1569128040000,1569128100000,1569128160000,1569128220000,1569128280000,1569128340000,1569128400000,1569128460000,1569128520000,1569128580000,1569128640000,1569128700000,1569128760000,1569128820000,1569128880000,1569128940000,1569129000000,1569129060000,1569129120000,1569129180000,1569129240000,1569129300000,1569129360000,1569129420000,1569129480000,1569129540000,1569129600000,1569129660000,1569129720000,1569129780000,1569129840000,1569129900000,1569129960000,1569130020000,1569130080000,1569130140000,1569130200000,1569130260000,1569130320000,1569130380000,1569130440000,1569130500000,1569130560000,1569130620000,1569130680000,1569130740000,1569130800000,1569130860000,1569130920000,1569130980000,1569131040000,1569131100000,1569131160000,1569131220000,1569131280000,1569131340000,1569131400000,1569131460000,1569131520000,1569131580000,1569131640000,1569131700000,1569131760000,1569131820000,1569131880000,1569131940000,1569132000000,1569132060000,1569132120000,1569132180000,1569132240000,1569132300000,1569132360000,1569132420000,1569132480000,1569132540000,1569132600000,1569132660000,1569132720000,1569132780000,1569132840000,1569132900000,1569132960000,1569133020000,1569133080000,1569133140000,1569133200000,1569133260000,1569133320000,1569133380000,1569133440000,1569133500000,1569133560000,1569133620000,1569133680000,1569133740000,1569133800000,1569133860000,1569133920000,1569133980000,1569134040000,1569134100000,1569134160000,1569134220000,1569134280000,1569134340000,1569134400000,1569134460000,1569134520000,1569134580000,1569134640000,1569134700000,1569134760000,1569134820000,1569134880000,1569134940000,1569135000000,1569135060000,1569135120000,1569135180000,1569135240000,1569135300000,1569135360000,1569135420000,1569135480000,1569135540000,1569135600000,1569135660000,1569135720000,1569135780000,1569135840000,1569135900000,1569135960000,1569136020000,1569136080000,1569136140000,1569136200000,1569136260000,1569136320000,1569136380000,1569136440000,1569136500000,1569136560000,1569136620000,1569136680000,1569136740000,1569136800000,1569136860000,1569136920000,1569136980000,1569137040000,1569137100000,1569137160000,1569137220000,1569137280000,1569137340000,1569137400000,1569137460000,1569137520000,1569137580000,1569137640000,1569137700000,1569137760000,1569137820000,1569137880000,1569137940000,1569138000000,1569138060000,1569138120000,1569138180000,1569138240000,1569138300000,1569138360000,1569138420000,1569138480000,1569138540000,1569138600000,1569138660000,1569138720000,1569138780000,1569138840000,1569138900000,1569138960000,1569139020000,1569139080000,1569139140000,1569139200000,1569139260000,1569139320000,1569139380000,1569139440000,1569139500000,1569139560000,1569139620000,1569139680000,1569139740000,1569139800000,1569139860000,1569139920000,1569139980000,1569140040000,1569140100000,1569140160000,1569140220000,1569140280000,1569140340000,1569140400000,1569140460000,1569140520000,1569140580000,1569140640000,1569140700000,1569140760000,1569140820000,1569140880000,1569140940000,1569141000000,1569141060000,1569141120000,1569141180000,1569141240000,1569141300000,1569141360000,1569141420000,1569141480000,1569141540000,1569141600000,1569141660000,1569141720000,1569141780000,1569141840000,1569141900000,1569141960000,1569142020000,1569142080000,1569142140000,1569142200000,1569142260000,1569142320000,1569142380000,1569142440000,1569142500000,1569142560000,1569142620000,1569142680000,1569142740000,1569142800000,1569142860000,1569142920000,1569142980000,1569143040000,1569143100000,1569143160000,1569143220000,1569143280000,1569143340000,1569143400000,1569143460000,1569143520000,1569143580000,1569143640000,1569143700000,1569143760000,1569143820000,1569143880000,1569143940000,1569144000000,1569144060000,1569144120000,1569144180000,1569144240000,1569144300000,1569144360000,1569144420000,1569144480000,1569144540000,1569144600000,1569144660000,1569144720000,1569144780000,1569144840000,1569144900000,1569144960000,1569145020000,1569145080000,1569145140000,1569145200000,1569145260000,1569145320000,1569145380000,1569145440000,1569145500000,1569145560000,1569145620000,1569145680000,1569145740000,1569145800000,1569145860000,1569145920000,1569145980000,1569146040000,1569146100000,1569146160000,1569146220000,1569146280000,1569146340000,1569146400000,1569146460000,1569146520000,1569146580000,1569146640000,1569146700000,1569146760000,1569146820000,1569146880000,1569146940000,1569147000000,1569147060000,1569147120000,1569147180000,1569147240000,1569147300000,1569147360000,1569147420000,1569147480000,1569147540000,1569147600000,1569147660000,1569147720000,1569147780000,1569147840000,1569147900000,1569147960000,1569148020000,1569148080000,1569148140000,1569148200000,1569148260000,1569148320000,1569148380000,1569148440000,1569148500000,1569148560000,1569148620000,1569148680000,1569148740000,1569148800000,1569148860000,1569148920000,1569148980000,1569149040000,1569149100000,1569149160000,1569149220000,1569149280000,1569149340000,1569149400000,1569149460000,1569149520000,1569149580000,1569149640000,1569149700000,1569149760000,1569149820000,1569149880000,1569149940000,1569150000000,1569150060000,1569150120000,1569150180000,1569150240000,1569150300000,1569150360000,1569150420000,1569150480000,1569150540000,1569150600000,1569150660000,1569150720000,1569150780000,1569150840000,1569150900000,1569150960000,1569151020000,1569151080000,1569151140000,1569151200000,1569151260000,1569151320000,1569151380000,1569151440000,1569151500000,1569151560000,1569151620000,1569151680000,1569151740000,1569151800000,1569151860000,1569151920000,1569151980000,1569152040000,1569152100000,1569152160000,1569152220000,1569152280000,1569152340000,1569152400000,1569152460000,1569152520000,1569152580000,1569152640000,1569152700000,1569152760000,1569152820000,1569152880000,1569152940000,1569153000000,1569153060000,1569153120000,1569153180000,1569153240000,1569153300000,1569153360000,1569153420000,1569153480000,1569153540000,1569153600000,1569153660000,1569153720000,1569153780000,1569153840000,1569153900000,1569153960000,1569154020000,1569154080000,1569154140000,1569154200000,1569154260000,1569154320000,1569154380000,1569154440000,1569154500000,1569154560000,1569154620000,1569154680000,1569154740000,1569154800000,1569154860000,1569154920000,1569154980000,1569155040000,1569155100000,1569155160000,1569155220000,1569155280000,1569155340000,1569155400000,1569155460000,1569155520000,1569155580000,1569155640000,1569155700000,1569155760000,1569155820000,1569155880000,1569155940000,1569156000000,1569156060000,1569156120000,1569156180000,1569156240000,1569156300000,1569156360000,1569156420000,1569156480000,1569156540000,1569156600000,1569156660000,1569156720000,1569156780000,1569156840000,1569156900000,1569156960000,1569157020000,1569157080000,1569157140000,1569157200000,1569157260000,1569157320000,1569157380000,1569157440000,1569157500000,1569157560000,1569157620000,1569157680000,1569157740000,1569157800000,1569157860000,1569157920000,1569157980000,1569158040000,1569158100000,1569158160000,1569158220000,1569158280000,1569158340000,1569158400000,1569158460000,1569158520000,1569158580000,1569158640000,1569158700000,1569158760000,1569158820000,1569158880000,1569158940000,1569159000000,1569159060000,1569159120000,1569159180000,1569159240000,1569159300000,1569159360000,1569159420000,1569159480000,1569159540000,1569159600000,1569159660000,1569159720000,1569159780000,1569159840000,1569159900000,1569159960000,1569160020000,1569160080000,1569160140000,1569160200000,1569160260000,1569160320000,1569160380000,1569160440000,1569160500000,1569160560000,1569160620000,1569160680000,1569160740000,1569160800000,1569160860000,1569160920000,1569160980000,1569161040000,1569161100000,1569161160000,1569161220000,1569161280000,1569161340000,1569161400000,1569161460000,1569161520000,1569161580000,1569161640000,1569161700000,1569161760000,1569161820000,1569161880000,1569161940000,1569162000000,1569162060000,1569162120000,1569162180000,1569162240000,1569162300000,1569162360000,1569162420000,1569162480000,1569162540000,1569162600000,1569162660000,1569162720000,1569162780000,1569162840000,1569162900000,1569162960000,1569163020000,1569163080000,1569163140000,1569163200000,1569163260000,1569163320000,1569163380000,1569163440000,1569163500000,1569163560000,1569163620000,1569163680000,1569163740000,1569163800000,1569163860000,1569163920000,1569163980000,1569164040000,1569164100000,1569164160000,1569164220000,1569164280000,1569164340000,1569164400000,1569164460000,1569164520000,1569164580000,1569164640000,1569164700000,1569164760000,1569164820000,1569164880000,1569164940000,1569165000000,1569165060000,1569165120000,1569165180000,1569165240000,1569165300000,1569165360000,1569165420000,1569165480000,1569165540000,1569165600000,1569165660000,1569165720000,1569165780000,1569165840000,1569165900000,1569165960000,1569166020000,1569166080000,1569166140000,1569166200000,1569166260000,1569166320000,1569166380000,1569166440000,1569166500000,1569166560000,1569166620000,1569166680000,1569166740000,1569166800000,1569166860000,1569166920000,1569166980000,1569167040000,1569167100000,1569167160000,1569167220000,1569167280000,1569167340000,1569167400000,1569167460000,1569167520000,1569167580000,1569167640000,1569167700000,1569167760000,1569167820000,1569167880000,1569167940000,1569168000000,1569168060000,1569168120000,1569168180000,1569168240000,1569168300000,1569168360000,1569168420000,1569168480000,1569168540000,1569168600000,1569168660000,1569168720000,1569168780000,1569168840000,1569168900000,1569168960000,1569169020000,1569169080000,1569169140000,1569169200000,1569169260000,1569169320000,1569169380000,1569169440000,1569169500000,1569169560000,1569169620000,1569169680000,1569169740000,1569169800000,1569169860000,1569169920000,1569169980000,1569170040000,1569170100000,1569170160000,1569170220000,1569170280000,1569170340000,1569170400000,1569170460000,1569170520000,1569170580000,1569170640000,1569170700000,1569170760000,1569170820000,1569170880000,1569170940000,1569171000000,1569171060000,1569171120000,1569171180000,1569171240000,1569171300000,1569171360000,1569171420000,1569171480000,1569171540000,1569171600000,1569171660000,1569171720000,1569171780000,1569171840000,1569171900000,1569171960000,1569172020000,1569172080000,1569172140000,1569172200000,1569172260000,1569172320000,1569172380000,1569172440000,1569172500000,1569172560000,1569172620000,1569172680000,1569172740000,1569172800000,1569172860000,1569172920000,1569172980000,1569173040000,1569173100000,1569173160000,1569173220000,1569173280000,1569173340000,1569173400000,1569173460000,1569173520000,1569173580000,1569173640000,1569173700000,1569173760000,1569173820000,1569173880000,1569173940000,1569174000000,1569174060000,1569174120000,1569174180000,1569174240000,1569174300000,1569174360000,1569174420000,1569174480000,1569174540000,1569174600000,1569174660000,1569174720000,1569174780000,1569174840000,1569174900000,1569174960000,1569175020000,1569175080000,1569175140000,1569175200000,1569175260000,1569175320000,1569175380000,1569175440000,1569175500000,1569175560000,1569175620000,1569175680000,1569175740000,1569175800000,1569175860000,1569175920000,1569175980000,1569176040000,1569176100000,1569176160000,1569176220000,1569176280000,1569176340000,1569176400000,1569176460000,1569176520000,1569176580000,1569176640000,1569176700000,1569176760000,1569176820000,1569176880000,1569176940000,1569177000000,1569177060000,1569177120000,1569177180000,1569177240000,1569177300000,1569177360000,1569177420000,1569177480000,1569177540000,1569177600000,1569177660000,1569177720000,1569177780000,1569177840000,1569177900000,1569177960000,1569178020000,1569178080000,1569178140000,1569178200000,1569178260000,1569178320000,1569178380000,1569178440000,1569178500000,1569178560000,1569178620000,1569178680000,1569178740000,1569178800000,1569178860000,1569178920000,1569178980000,1569179040000,1569179100000,1569179160000,1569179220000,1569179280000,1569179340000,1569179400000,1569179460000,1569179520000,1569179580000,1569179640000,1569179700000,1569179760000,1569179820000,1569179880000,1569179940000,1569180000000,1569180060000,1569180120000,1569180180000,1569180240000,1569180300000,1569180360000,1569180420000,1569180480000,1569180540000,1569180600000,1569180660000,1569180720000,1569180780000,1569180840000,1569180900000,1569180960000,1569181020000,1569181080000,1569181140000,1569181200000,1569181260000,1569181320000,1569181380000,1569181440000,1569181500000,1569181560000,1569181620000,1569181680000,1569181740000,1569181800000,1569181860000,1569181920000,1569181980000,1569182040000,1569182100000,1569182160000,1569182220000,1569182280000,1569182340000,1569182400000,1569182460000,1569182520000,1569182580000,1569182640000,1569182700000,1569182760000,1569182820000,1569182880000,1569182940000,1569183000000,1569183060000,1569183120000,1569183180000,1569183240000,1569183300000,1569183360000,1569183420000,1569183480000,1569183540000,1569183600000,1569183660000,1569183720000,1569183780000,1569183840000,1569183900000,1569183960000,1569184020000,1569184080000,1569184140000,1569184200000,1569184260000,1569184320000,1569184380000,1569184440000,1569184500000,1569184560000,1569184620000,1569184680000,1569184740000,1569184800000,1569184860000,1569184920000,1569184980000,1569185040000,1569185100000,1569185160000,1569185220000,1569185280000,1569185340000,1569185400000,1569185460000,1569185520000,1569185580000,1569185640000,1569185700000,1569185760000,1569185820000,1569185880000,1569185940000,1569186000000,1569186060000,1569186120000,1569186180000,1569186240000,1569186300000,1569186360000,1569186420000,1569186480000,1569186540000,1569186600000,1569186660000,1569186720000,1569186780000,1569186840000,1569186900000,1569186960000,1569187020000,1569187080000,1569187140000,1569187200000,1569187260000,1569187320000,1569187380000,1569187440000,1569187500000,1569187560000,1569187620000,1569187680000,1569187740000,1569187800000,1569187860000,1569187920000,1569187980000,1569188040000,1569188100000,1569188160000,1569188220000,1569188280000,1569188340000,1569188400000,1569188460000,1569188520000,1569188580000,1569188640000,1569188700000,1569188760000,1569188820000,1569188880000,1569188940000,1569189000000,1569189060000,1569189120000,1569189180000,1569189240000,1569189300000,1569189360000,1569189420000,1569189480000,1569189540000,1569189600000,1569189660000,1569189720000,1569189780000,1569189840000,1569189900000,1569189960000,1569190020000,1569190080000,1569190140000,1569190200000,1569190260000,1569190320000,1569190380000,1569190440000,1569190500000,1569190560000,1569190620000,1569190680000,1569190740000,1569190800000,1569190860000,1569190920000,1569190980000,1569191040000,1569191100000,1569191160000,1569191220000,1569191280000,1569191340000,1569191400000,1569191460000,1569191520000,1569191580000,1569191640000,1569191700000,1569191760000,1569191820000,1569191880000,1569191940000,1569192000000,1569192060000,1569192120000,1569192180000,1569192240000,1569192300000,1569192360000,1569192420000,1569192480000,1569192540000,1569192600000,1569192660000,1569192720000,1569192780000,1569192840000,1569192900000,1569192960000,1569193020000,1569193080000,1569193140000,1569193200000,1569193260000,1569193320000,1569193380000,1569193440000,1569193500000,1569193560000,1569193620000,1569193680000,1569193740000,1569193800000,1569193860000,1569193920000,1569193980000,1569194040000,1569194100000,1569194160000,1569194220000,1569194280000,1569194340000,1569194400000,1569194460000,1569194520000,1569194580000,1569194640000,1569194700000,1569194760000,1569194820000,1569194880000,1569194940000,1569195000000,1569195060000,1569195120000,1569195180000,1569195240000,1569195300000,1569195360000,1569195420000,1569195480000,1569195540000,1569195600000,1569195660000,1569195720000,1569195780000,1569195840000,1569195900000,1569195960000,1569196020000,1569196080000,1569196140000,1569196200000,1569196260000,1569196320000,1569196380000,1569196440000,1569196500000,1569196560000,1569196620000,1569196680000,1569196740000,1569196800000,1569196860000,1569196920000,1569196980000,1569197040000,1569197100000,1569197160000,1569197220000,1569197280000,1569197340000,1569197400000,1569197460000,1569197520000,1569197580000,1569197640000,1569197700000,1569197760000,1569197820000,1569197880000,1569197940000,1569198000000,1569198060000,1569198120000,1569198180000,1569198240000,1569198300000,1569198360000,1569198420000,1569198480000,1569198540000,1569198600000,1569198660000,1569198720000,1569198780000,1569198840000,1569198900000,1569198960000,1569199020000,1569199080000,1569199140000,1569199200000,1569199260000,1569199320000,1569199380000,1569199440000,1569199500000,1569199560000,1569199620000,1569199680000,1569199740000,1569199800000,1569199860000,1569199920000,1569199980000,1569200040000,1569200100000,1569200160000,1569200220000,1569200280000,1569200340000,1569200400000,1569200460000,1569200520000,1569200580000,1569200640000,1569200700000,1569200760000,1569200820000,1569200880000,1569200940000,1569201000000,1569201060000,1569201120000,1569201180000,1569201240000,1569201300000,1569201360000,1569201420000,1569201480000,1569201540000,1569201600000,1569201660000,1569201720000,1569201780000,1569201840000,1569201900000,1569201960000,1569202020000,1569202080000,1569202140000,1569202200000,1569202260000,1569202320000,1569202380000,1569202440000,1569202500000,1569202560000,1569202620000,1569202680000,1569202740000,1569202800000,1569202860000,1569202920000,1569202980000,1569203040000,1569203100000,1569203160000,1569203220000,1569203280000,1569203340000,1569203400000,1569203460000,1569203520000,1569203580000,1569203640000,1569203700000,1569203760000,1569203820000,1569203880000,1569203940000,1569204000000,1569204060000,1569204120000,1569204180000,1569204240000,1569204300000,1569204360000,1569204420000,1569204480000,1569204540000,1569204600000,1569204660000,1569204720000,1569204780000,1569204840000,1569204900000,1569204960000,1569205020000,1569205080000,1569205140000,1569205200000,1569205260000,1569205320000,1569205380000,1569205440000,1569205500000,1569205560000,1569205620000,1569205680000,1569205740000,1569205800000,1569205860000,1569205920000,1569205980000,1569206040000,1569206100000,1569206160000,1569206220000,1569206280000,1569206340000,1569206400000,1569206460000,1569206520000,1569206580000,1569206640000,1569206700000,1569206760000,1569206820000,1569206880000,1569206940000,1569207000000,1569207060000,1569207120000,1569207180000,1569207240000,1569207300000,1569207360000,1569207420000,1569207480000,1569207540000,1569207600000,1569207660000,1569207720000,1569207780000,1569207840000,1569207900000,1569207960000,1569208020000,1569208080000,1569208140000,1569208200000,1569208260000,1569208320000,1569208380000,1569208440000,1569208500000,1569208560000,1569208620000,1569208680000,1569208740000,1569208800000,1569208860000,1569208920000,1569208980000,1569209040000,1569209100000,1569209160000,1569209220000,1569209280000,1569209340000,1569209400000,1569209460000,1569209520000,1569209580000,1569209640000,1569209700000,1569209760000,1569209820000,1569209880000,1569209940000,1569210000000,1569210060000,1569210120000,1569210180000,1569210240000,1569210300000,1569210360000,1569210420000,1569210480000,1569210540000,1569210600000,1569210660000,1569210720000,1569210780000,1569210840000,1569210900000,1569210960000,1569211020000,1569211080000,1569211140000,1569211200000,1569211260000,1569211320000,1569211380000,1569211440000,1569211500000,1569211560000,1569211620000,1569211680000,1569211740000,1569211800000,1569211860000,1569211920000,1569211980000,1569212040000,1569212100000,1569212160000,1569212220000,1569212280000,1569212340000,1569212400000,1569212460000,1569212520000,1569212580000,1569212640000,1569212700000,1569212760000,1569212820000,1569212880000,1569212940000,1569213000000,1569213060000,1569213120000,1569213180000,1569213240000,1569213300000,1569213360000,1569213420000,1569213480000,1569213540000,1569213600000,1569213660000,1569213720000,1569213780000,1569213840000,1569213900000,1569213960000,1569214020000,1569214080000,1569214140000,1569214200000,1569214260000,1569214320000,1569214380000,1569214440000,1569214500000,1569214560000,1569214620000,1569214680000,1569214740000,1569214800000,1569214860000,1569214920000,1569214980000,1569215040000,1569215100000,1569215160000,1569215220000,1569215280000,1569215340000,1569215400000,1569215460000,1569215520000,1569215580000,1569215640000,1569215700000,1569215760000,1569215820000,1569215880000,1569215940000,1569216000000,1569216060000,1569216120000,1569216180000,1569216240000,1569216300000,1569216360000,1569216420000,1569216480000,1569216540000,1569216600000,1569216660000,1569216720000,1569216780000,1569216840000,1569216900000,1569216960000,1569217020000,1569217080000,1569217140000,1569217200000,1569217260000,1569217320000,1569217380000,1569217440000,1569217500000,1569217560000,1569217620000,1569217680000,1569217740000,1569217800000,1569217860000,1569217920000,1569217980000,1569218040000,1569218100000,1569218160000,1569218220000,1569218280000,1569218340000,1569218400000,1569218460000,1569218520000,1569218580000,1569218640000,1569218700000,1569218760000,1569218820000,1569218880000,1569218940000,1569219000000,1569219060000,1569219120000,1569219180000,1569219240000,1569219300000,1569219360000,1569219420000,1569219480000,1569219540000,1569219600000,1569219660000,1569219720000,1569219780000,1569219840000,1569219900000,1569219960000,1569220020000,1569220080000,1569220140000,1569220200000,1569220260000,1569220320000,1569220380000,1569220440000,1569220500000,1569220560000,1569220620000,1569220680000,1569220740000,1569220800000,1569220860000,1569220920000,1569220980000,1569221040000,1569221100000,1569221160000,1569221220000,1569221280000,1569221340000,1569221400000,1569221460000,1569221520000,1569221580000,1569221640000,1569221700000,1569221760000,1569221820000,1569221880000,1569221940000,1569222000000,1569222060000,1569222120000,1569222180000,1569222240000,1569222300000,1569222360000,1569222420000,1569222480000,1569222540000,1569222600000,1569222660000,1569222720000,1569222780000,1569222840000,1569222900000,1569222960000,1569223020000,1569223080000,1569223140000,1569223200000,1569223260000,1569223320000,1569223380000,1569223440000,1569223500000,1569223560000,1569223620000,1569223680000,1569223740000,1569223800000,1569223860000,1569223920000,1569223980000,1569224040000,1569224100000,1569224160000,1569224220000,1569224280000,1569224340000,1569224400000,1569224460000,1569224520000,1569224580000,1569224640000,1569224700000,1569224760000,1569224820000,1569224880000,1569224940000,1569225000000,1569225060000,1569225120000,1569225180000,1569225240000,1569225300000,1569225360000,1569225420000,1569225480000,1569225540000,1569225600000,1569225660000,1569225720000,1569225780000,1569225840000,1569225900000,1569225960000,1569226020000,1569226080000,1569226140000,1569226200000,1569226260000,1569226320000,1569226380000,1569226440000,1569226500000,1569226560000,1569226620000,1569226680000,1569226740000,1569226800000,1569226860000,1569226920000,1569226980000,1569227040000,1569227100000,1569227160000,1569227220000,1569227280000,1569227340000,1569227400000,1569227460000,1569227520000,1569227580000,1569227640000,1569227700000,1569227760000,1569227820000,1569227880000,1569227940000,1569228000000,1569228060000,1569228120000,1569228180000,1569228240000,1569228300000,1569228360000,1569228420000,1569228480000,1569228540000,1569228600000,1569228660000,1569228720000,1569228780000,1569228840000,1569228900000,1569228960000,1569229020000,1569229080000,1569229140000,1569229200000,1569229260000,1569229320000,1569229380000,1569229440000,1569229500000,1569229560000,1569229620000,1569229680000,1569229740000,1569229800000,1569229860000,1569229920000,1569229980000,1569230040000,1569230100000,1569230160000,1569230220000,1569230280000,1569230340000,1569230400000,1569230460000,1569230520000,1569230580000,1569230640000,1569230700000,1569230760000,1569230820000,1569230880000,1569230940000,1569231000000,1569231060000,1569231120000,1569231180000,1569231240000,1569231300000,1569231360000,1569231420000,1569231480000,1569231540000,1569231600000,1569231660000,1569231720000,1569231780000,1569231840000,1569231900000,1569231960000,1569232020000,1569232080000,1569232140000,1569232200000,1569232260000,1569232320000,1569232380000,1569232440000,1569232500000,1569232560000,1569232620000,1569232680000,1569232740000,1569232800000,1569232860000,1569232920000,1569232980000,1569233040000,1569233100000,1569233160000,1569233220000,1569233280000,1569233340000,1569233400000,1569233460000,1569233520000,1569233580000,1569233640000,1569233700000,1569233760000,1569233820000,1569233880000,1569233940000,1569234000000,1569234060000,1569234120000,1569234180000,1569234240000,1569234300000,1569234360000,1569234420000,1569234480000,1569234540000,1569234600000,1569234660000,1569234720000,1569234780000,1569234840000,1569234900000,1569234960000,1569235020000,1569235080000,1569235140000,1569235200000,1569235260000,1569235320000,1569235380000,1569235440000,1569235500000,1569235560000,1569235620000,1569235680000,1569235740000,1569235800000,1569235860000,1569235920000,1569235980000,1569236040000,1569236100000,1569236160000,1569236220000,1569236280000,1569236340000,1569236400000,1569236460000,1569236520000,1569236580000,1569236640000,1569236700000,1569236760000,1569236820000,1569236880000,1569236940000,1569237000000,1569237060000,1569237120000,1569237180000,1569237240000,1569237300000,1569237360000,1569237420000,1569237480000,1569237540000,1569237600000,1569237660000,1569237720000,1569237780000,1569237840000,1569237900000,1569237960000,1569238020000,1569238080000,1569238140000,1569238200000,1569238260000,1569238320000,1569238380000,1569238440000,1569238500000,1569238560000,1569238620000,1569238680000,1569238740000,1569238800000,1569238860000,1569238920000,1569238980000,1569239040000,1569239100000,1569239160000,1569239220000,1569239280000,1569239340000,1569239400000,1569239460000,1569239520000,1569239580000,1569239640000,1569239700000,1569239760000,1569239820000,1569239880000,1569239940000,1569240000000,1569240060000,1569240120000,1569240180000,1569240240000,1569240300000,1569240360000,1569240420000,1569240480000,1569240540000,1569240600000,1569240660000,1569240720000,1569240780000,1569240840000,1569240900000,1569240960000,1569241020000,1569241080000,1569241140000,1569241200000,1569241260000,1569241320000,1569241380000,1569241440000,1569241500000,1569241560000,1569241620000,1569241680000,1569241740000,1569241800000,1569241860000,1569241920000,1569241980000,1569242040000,1569242100000,1569242160000,1569242220000,1569242280000,1569242340000,1569242400000,1569242460000,1569242520000,1569242580000,1569242640000,1569242700000,1569242760000,1569242820000,1569242880000,1569242940000,1569243000000,1569243060000,1569243120000,1569243180000,1569243240000,1569243300000,1569243360000,1569243420000,1569243480000,1569243540000,1569243600000,1569243660000,1569243720000,1569243780000,1569243840000,1569243900000,1569243960000,1569244020000,1569244080000,1569244140000,1569244200000,1569244260000,1569244320000,1569244380000,1569244440000,1569244500000,1569244560000,1569244620000,1569244680000,1569244740000,1569244800000,1569244860000,1569244920000,1569244980000,1569245040000,1569245100000,1569245160000,1569245220000,1569245280000,1569245340000,1569245400000,1569245460000,1569245520000,1569245580000,1569245640000,1569245700000,1569245760000,1569245820000,1569245880000,1569245940000,1569246000000,1569246060000,1569246120000,1569246180000,1569246240000,1569246300000,1569246360000,1569246420000,1569246480000,1569246540000,1569246600000,1569246660000,1569246720000,1569246780000,1569246840000,1569246900000,1569246960000,1569247020000,1569247080000,1569247140000,1569247200000,1569247260000,1569247320000,1569247380000,1569247440000,1569247500000,1569247560000,1569247620000,1569247680000,1569247740000,1569247800000,1569247860000,1569247920000,1569247980000,1569248040000,1569248100000,1569248160000,1569248220000,1569248280000,1569248340000,1569248400000,1569248460000,1569248520000,1569248580000,1569248640000,1569248700000,1569248760000,1569248820000,1569248880000,1569248940000,1569249000000,1569249060000,1569249120000,1569249180000,1569249240000,1569249300000,1569249360000,1569249420000,1569249480000,1569249540000,1569249600000,1569249660000,1569249720000,1569249780000,1569249840000,1569249900000,1569249960000,1569250020000,1569250080000,1569250140000,1569250200000,1569250260000,1569250320000,1569250380000,1569250440000,1569250500000,1569250560000,1569250620000,1569250680000,1569250740000,1569250800000,1569250860000,1569250920000,1569250980000,1569251040000,1569251100000,1569251160000,1569251220000,1569251280000,1569251340000,1569251400000,1569251460000,1569251520000,1569251580000,1569251640000,1569251700000,1569251760000,1569251820000,1569251880000,1569251940000,1569252000000,1569252060000,1569252120000,1569252180000,1569252240000,1569252300000,1569252360000,1569252420000,1569252480000,1569252540000,1569252600000,1569252660000,1569252720000,1569252780000,1569252840000,1569252900000,1569252960000,1569253020000,1569253080000,1569253140000,1569253200000,1569253260000,1569253320000,1569253380000,1569253440000,1569253500000,1569253560000,1569253620000,1569253680000,1569253740000,1569253800000,1569253860000,1569253920000,1569253980000,1569254040000,1569254100000,1569254160000,1569254220000,1569254280000,1569254340000,1569254400000,1569254460000,1569254520000,1569254580000,1569254640000,1569254700000,1569254760000,1569254820000,1569254880000,1569254940000,1569255000000,1569255060000,1569255120000,1569255180000,1569255240000,1569255300000,1569255360000,1569255420000,1569255480000,1569255540000,1569255600000,1569255660000,1569255720000,1569255780000,1569255840000,1569255900000,1569255960000,1569256020000,1569256080000,1569256140000,1569256200000,1569256260000,1569256320000,1569256380000,1569256440000,1569256500000,1569256560000,1569256620000,1569256680000,1569256740000,1569256800000,1569256860000,1569256920000,1569256980000,1569257040000,1569257100000,1569257160000,1569257220000,1569257280000,1569257340000,1569257400000,1569257460000,1569257520000,1569257580000,1569257640000,1569257700000,1569257760000,1569257820000,1569257880000,1569257940000,1569258000000,1569258060000,1569258120000,1569258180000,1569258240000,1569258300000,1569258360000,1569258420000,1569258480000,1569258540000,1569258600000,1569258660000,1569258720000,1569258780000,1569258840000,1569258900000,1569258960000,1569259020000,1569259080000,1569259140000,1569259200000,1569259260000,1569259320000,1569259380000,1569259440000,1569259500000,1569259560000,1569259620000,1569259680000,1569259740000,1569259800000,1569259860000,1569259920000,1569259980000,1569260040000,1569260100000,1569260160000,1569260220000,1569260280000,1569260340000,1569260400000,1569260460000,1569260520000,1569260580000,1569260640000,1569260700000,1569260760000,1569260820000,1569260880000,1569260940000,1569261000000,1569261060000,1569261120000,1569261180000,1569261240000,1569261300000,1569261360000,1569261420000,1569261480000,1569261540000,1569261600000,1569261660000,1569261720000,1569261780000,1569261840000,1569261900000,1569261960000,1569262020000,1569262080000,1569262140000,1569262200000,1569262260000,1569262320000,1569262380000,1569262440000,1569262500000,1569262560000,1569262620000,1569262680000,1569262740000,1569262800000,1569262860000,1569262920000,1569262980000,1569263040000,1569263100000,1569263160000,1569263220000,1569263280000,1569263340000,1569263400000,1569263460000,1569263520000,1569263580000,1569263640000,1569263700000,1569263760000,1569263820000,1569263880000,1569263940000,1569264000000,1569264060000,1569264120000,1569264180000,1569264240000,1569264300000,1569264360000,1569264420000,1569264480000,1569264540000,1569264600000,1569264660000,1569264720000,1569264780000,1569264840000,1569264900000,1569264960000,1569265020000,1569265080000,1569265140000,1569265200000,1569265260000,1569265320000,1569265380000,1569265440000,1569265500000,1569265560000,1569265620000,1569265680000,1569265740000,1569265800000,1569265860000,1569265920000,1569265980000,1569266040000,1569266100000,1569266160000,1569266220000,1569266280000,1569266340000,1569266400000,1569266460000,1569266520000,1569266580000,1569266640000,1569266700000,1569266760000,1569266820000,1569266880000,1569266940000,1569267000000,1569267060000,1569267120000,1569267180000,1569267240000,1569267300000,1569267360000,1569267420000,1569267480000,1569267540000,1569267600000,1569267660000,1569267720000,1569267780000,1569267840000,1569267900000,1569267960000,1569268020000,1569268080000,1569268140000,1569268200000,1569268260000,1569268320000,1569268380000,1569268440000,1569268500000,1569268560000,1569268620000,1569268680000,1569268740000,1569268800000,1569268860000,1569268920000,1569268980000,1569269040000,1569269100000,1569269160000,1569269220000,1569269280000,1569269340000,1569269400000,1569269460000,1569269520000,1569269580000,1569269640000,1569269700000,1569269760000,1569269820000,1569269880000,1569269940000,1569270000000,1569270060000,1569270120000,1569270180000,1569270240000,1569270300000,1569270360000,1569270420000,1569270480000,1569270540000,1569270600000,1569270660000,1569270720000,1569270780000,1569270840000,1569270900000,1569270960000,1569271020000,1569271080000,1569271140000,1569271200000,1569271260000,1569271320000,1569271380000,1569271440000,1569271500000,1569271560000,1569271620000,1569271680000,1569271740000,1569271800000,1569271860000,1569271920000,1569271980000,1569272040000,1569272100000,1569272160000,1569272220000,1569272280000,1569272340000,1569272400000,1569272460000,1569272520000,1569272580000,1569272640000,1569272700000,1569272760000,1569272820000,1569272880000,1569272940000,1569273000000,1569273060000,1569273120000,1569273180000,1569273240000,1569273300000,1569273360000,1569273420000,1569273480000,1569273540000,1569273600000,1569273660000,1569273720000,1569273780000,1569273840000,1569273900000,1569273960000,1569274020000,1569274080000,1569274140000,1569274200000,1569274260000,1569274320000,1569274380000,1569274440000,1569274500000,1569274560000,1569274620000,1569274680000,1569274740000,1569274800000,1569274860000,1569274920000,1569274980000,1569275040000,1569275100000,1569275160000,1569275220000,1569275280000,1569275340000,1569275400000,1569275460000,1569275520000,1569275580000,1569275640000,1569275700000,1569275760000,1569275820000,1569275880000,1569275940000,1569276000000,1569276060000,1569276120000,1569276180000,1569276240000,1569276300000,1569276360000,1569276420000,1569276480000,1569276540000,1569276600000,1569276660000,1569276720000,1569276780000,1569276840000,1569276900000,1569276960000,1569277020000,1569277080000,1569277140000,1569277200000,1569277260000,1569277320000,1569277380000,1569277440000,1569277500000,1569277560000,1569277620000,1569277680000,1569277740000,1569277800000,1569277860000,1569277920000,1569277980000,1569278040000,1569278100000,1569278160000,1569278220000,1569278280000,1569278340000,1569278400000,1569278460000,1569278520000,1569278580000,1569278640000,1569278700000,1569278760000,1569278820000,1569278880000,1569278940000,1569279000000,1569279060000,1569279120000,1569279180000,1569279240000,1569279300000,1569279360000,1569279420000,1569279480000,1569279540000,1569279600000,1569279660000,1569279720000,1569279780000,1569279840000,1569279900000,1569279960000,1569280020000,1569280080000,1569280140000,1569280200000,1569280260000,1569280320000,1569280380000,1569280440000,1569280500000,1569280560000,1569280620000,1569280680000,1569280740000,1569280800000,1569280860000,1569280920000,1569280980000,1569281040000,1569281100000,1569281160000,1569281220000,1569281280000,1569281340000,1569281400000,1569281460000,1569281520000,1569281580000,1569281640000,1569281700000,1569281760000,1569281820000,1569281880000,1569281940000,1569282000000,1569282060000,1569282120000,1569282180000,1569282240000,1569282300000,1569282360000,1569282420000,1569282480000,1569282540000,1569282600000,1569282660000,1569282720000,1569282780000,1569282840000,1569282900000,1569282960000,1569283020000,1569283080000,1569283140000,1569283200000,1569283260000,1569283320000,1569283380000,1569283440000,1569283500000,1569283560000,1569283620000,1569283680000,1569283740000,1569283800000,1569283860000,1569283920000,1569283980000,1569284040000,1569284100000,1569284160000,1569284220000,1569284280000,1569284340000,1569284400000,1569284460000,1569284520000,1569284580000,1569284640000,1569284700000,1569284760000,1569284820000,1569284880000,1569284940000,1569285000000,1569285060000,1569285120000,1569285180000,1569285240000,1569285300000,1569285360000,1569285420000,1569285480000,1569285540000,1569285600000,1569285660000,1569285720000,1569285780000,1569285840000,1569285900000,1569285960000,1569286020000,1569286080000,1569286140000,1569286200000,1569286260000,1569286320000,1569286380000,1569286440000,1569286500000,1569286560000,1569286620000,1569286680000,1569286740000,1569286800000,1569286860000,1569286920000,1569286980000,1569287040000,1569287100000,1569287160000,1569287220000,1569287280000,1569287340000,1569287400000,1569287460000,1569287520000,1569287580000,1569287640000,1569287700000,1569287760000,1569287820000,1569287880000,1569287940000,1569288000000,1569288060000,1569288120000,1569288180000,1569288240000,1569288300000,1569288360000,1569288420000,1569288480000,1569288540000,1569288600000,1569288660000,1569288720000,1569288780000,1569288840000,1569288900000,1569288960000,1569289020000,1569289080000,1569289140000,1569289200000,1569289260000,1569289320000,1569289380000,1569289440000,1569289500000,1569289560000,1569289620000,1569289680000,1569289740000,1569289800000,1569289860000,1569289920000,1569289980000,1569290040000,1569290100000,1569290160000,1569290220000,1569290280000,1569290340000,1569290400000,1569290460000,1569290520000,1569290580000,1569290640000,1569290700000,1569290760000,1569290820000,1569290880000,1569290940000,1569291000000,1569291060000,1569291120000,1569291180000,1569291240000,1569291300000,1569291360000,1569291420000,1569291480000,1569291540000,1569291600000,1569291660000,1569291720000,1569291780000,1569291840000,1569291900000,1569291960000,1569292020000,1569292080000,1569292140000,1569292200000,1569292260000,1569292320000,1569292380000,1569292440000,1569292500000,1569292560000,1569292620000,1569292680000,1569292740000,1569292800000,1569292860000,1569292920000,1569292980000,1569293040000,1569293100000,1569293160000,1569293220000,1569293280000,1569293340000,1569293400000,1569293460000,1569293520000,1569293580000,1569293640000,1569293700000,1569293760000,1569293820000,1569293880000,1569293940000,1569294000000,1569294060000,1569294120000,1569294180000,1569294240000,1569294300000,1569294360000,1569294420000,1569294480000,1569294540000,1569294600000,1569294660000,1569294720000,1569294780000,1569294840000,1569294900000,1569294960000,1569295020000,1569295080000,1569295140000,1569295200000,1569295260000,1569295320000,1569295380000,1569295440000,1569295500000,1569295560000,1569295620000,1569295680000,1569295740000,1569295800000,1569295860000,1569295920000,1569295980000,1569296040000,1569296100000,1569296160000,1569296220000,1569296280000,1569296340000,1569296400000,1569296460000,1569296520000,1569296580000,1569296640000,1569296700000,1569296760000,1569296820000,1569296880000,1569296940000,1569297000000,1569297060000,1569297120000,1569297180000,1569297240000,1569297300000,1569297360000,1569297420000,1569297480000,1569297540000,1569297600000,1569297660000,1569297720000,1569297780000,1569297840000,1569297900000,1569297960000,1569298020000,1569298080000,1569298140000,1569298200000,1569298260000,1569298320000,1569298380000,1569298440000,1569298500000,1569298560000,1569298620000,1569298680000,1569298740000,1569298800000,1569298860000,1569298920000,1569298980000,1569299040000,1569299100000,1569299160000,1569299220000,1569299280000,1569299340000,1569299400000,1569299460000,1569299520000,1569299580000,1569299640000,1569299700000,1569299760000,1569299820000,1569299880000,1569299940000,1569300000000,1569300060000,1569300120000,1569300180000,1569300240000,1569300300000,1569300360000,1569300420000,1569300480000,1569300540000,1569300600000,1569300660000,1569300720000,1569300780000,1569300840000,1569300900000,1569300960000,1569301020000,1569301080000,1569301140000,1569301200000,1569301260000,1569301320000,1569301380000,1569301440000,1569301500000,1569301560000,1569301620000,1569301680000,1569301740000,1569301800000,1569301860000,1569301920000,1569301980000,1569302040000,1569302100000,1569302160000,1569302220000,1569302280000,1569302340000,1569302400000,1569302460000,1569302520000,1569302580000,1569302640000,1569302700000,1569302760000,1569302820000,1569302880000,1569302940000,1569303000000,1569303060000,1569303120000,1569303180000,1569303240000,1569303300000,1569303360000,1569303420000,1569303480000,1569303540000,1569303600000,1569303660000,1569303720000,1569303780000,1569303840000,1569303900000,1569303960000,1569304020000,1569304080000,1569304140000,1569304200000,1569304260000,1569304320000,1569304380000,1569304440000,1569304500000,1569304560000,1569304620000,1569304680000,1569304740000,1569304800000,1569304860000,1569304920000,1569304980000,1569305040000,1569305100000,1569305160000,1569305220000,1569305280000,1569305340000,1569305400000,1569305460000,1569305520000,1569305580000,1569305640000,1569305700000,1569305760000,1569305820000,1569305880000,1569305940000,1569306000000,1569306060000,1569306120000,1569306180000,1569306240000,1569306300000,1569306360000,1569306420000,1569306480000,1569306540000,1569306600000,1569306660000,1569306720000,1569306780000,1569306840000,1569306900000,1569306960000,1569307020000,1569307080000,1569307140000,1569307200000,1569307260000,1569307320000,1569307380000,1569307440000,1569307500000,1569307560000,1569307620000,1569307680000,1569307740000,1569307800000,1569307860000,1569307920000,1569307980000,1569308040000,1569308100000,1569308160000,1569308220000,1569308280000,1569308340000,1569308400000,1569308460000,1569308520000,1569308580000,1569308640000,1569308700000,1569308760000,1569308820000,1569308880000,1569308940000,1569309000000,1569309060000,1569309120000,1569309180000,1569309240000,1569309300000,1569309360000,1569309420000,1569309480000,1569309540000,1569309600000,1569309660000,1569309720000,1569309780000,1569309840000,1569309900000,1569309960000,1569310020000,1569310080000,1569310140000,1569310200000,1569310260000,1569310320000,1569310380000,1569310440000,1569310500000,1569310560000,1569310620000,1569310680000,1569310740000,1569310800000,1569310860000,1569310920000,1569310980000,1569311040000,1569311100000,1569311160000,1569311220000,1569311280000,1569311340000,1569311400000,1569311460000,1569311520000,1569311580000,1569311640000,1569311700000,1569311760000,1569311820000,1569311880000,1569311940000,1569312000000,1569312060000,1569312120000,1569312180000,1569312240000,1569312300000,1569312360000,1569312420000,1569312480000,1569312540000,1569312600000,1569312660000,1569312720000,1569312780000,1569312840000,1569312900000,1569312960000,1569313020000,1569313080000,1569313140000,1569313200000,1569313260000,1569313320000,1569313380000,1569313440000,1569313500000,1569313560000,1569313620000,1569313680000,1569313740000,1569313800000,1569313860000,1569313920000,1569313980000,1569314040000,1569314100000,1569314160000,1569314220000,1569314280000,1569314340000,1569314400000,1569314460000,1569314520000,1569314580000,1569314640000,1569314700000,1569314760000,1569314820000,1569314880000,1569314940000,1569315000000,1569315060000,1569315120000,1569315180000,1569315240000,1569315300000,1569315360000,1569315420000,1569315480000,1569315540000,1569315600000,1569315660000,1569315720000,1569315780000,1569315840000,1569315900000,1569315960000,1569316020000,1569316080000,1569316140000,1569316200000,1569316260000,1569316320000,1569316380000,1569316440000,1569316500000,1569316560000,1569316620000,1569316680000,1569316740000,1569316800000,1569316860000,1569316920000,1569316980000,1569317040000,1569317100000,1569317160000,1569317220000,1569317280000,1569317340000,1569317400000,1569317460000,1569317520000,1569317580000,1569317640000,1569317700000,1569317760000,1569317820000,1569317880000,1569317940000,1569318000000,1569318060000,1569318120000,1569318180000,1569318240000,1569318300000,1569318360000,1569318420000,1569318480000,1569318540000,1569318600000,1569318660000,1569318720000,1569318780000,1569318840000,1569318900000,1569318960000,1569319020000,1569319080000,1569319140000,1569319200000,1569319260000,1569319320000,1569319380000,1569319440000,1569319500000,1569319560000,1569319620000,1569319680000,1569319740000,1569319800000,1569319860000,1569319920000,1569319980000,1569320040000,1569320100000,1569320160000,1569320220000,1569320280000,1569320340000,1569320400000,1569320460000,1569320520000,1569320580000,1569320640000,1569320700000,1569320760000,1569320820000,1569320880000,1569320940000,1569321000000,1569321060000,1569321120000,1569321180000,1569321240000,1569321300000,1569321360000,1569321420000,1569321480000,1569321540000,1569321600000,1569321660000,1569321720000,1569321780000,1569321840000,1569321900000,1569321960000,1569322020000,1569322080000,1569322140000,1569322200000,1569322260000,1569322320000,1569322380000,1569322440000,1569322500000,1569322560000,1569322620000,1569322680000,1569322740000,1569322800000,1569322860000,1569322920000,1569322980000,1569323040000,1569323100000,1569323160000,1569323220000,1569323280000,1569323340000,1569323400000,1569323460000,1569323520000,1569323580000,1569323640000,1569323700000,1569323760000,1569323820000,1569323880000,1569323940000,1569324000000,1569324060000,1569324120000,1569324180000,1569324240000,1569324300000,1569324360000,1569324420000,1569324480000,1569324540000,1569324600000,1569324660000,1569324720000,1569324780000,1569324840000,1569324900000,1569324960000,1569325020000,1569325080000,1569325140000,1569325200000,1569325260000,1569325320000,1569325380000,1569325440000,1569325500000,1569325560000,1569325620000,1569325680000,1569325740000,1569325800000,1569325860000,1569325920000,1569325980000,1569326040000,1569326100000,1569326160000,1569326220000,1569326280000,1569326340000,1569326400000,1569326460000,1569326520000,1569326580000,1569326640000,1569326700000,1569326760000,1569326820000,1569326880000,1569326940000,1569327000000,1569327060000,1569327120000,1569327180000,1569327240000,1569327300000,1569327360000,1569327420000,1569327480000,1569327540000,1569327600000,1569327660000,1569327720000,1569327780000,1569327840000,1569327900000,1569327960000,1569328020000,1569328080000,1569328140000,1569328200000,1569328260000,1569328320000,1569328380000,1569328440000,1569328500000,1569328560000,1569328620000,1569328680000,1569328740000,1569328800000,1569328860000,1569328920000,1569328980000,1569329040000,1569329100000,1569329160000,1569329220000,1569329280000,1569329340000,1569329400000,1569329460000,1569329520000,1569329580000,1569329640000,1569329700000,1569329760000,1569329820000,1569329880000,1569329940000,1569330000000,1569330060000,1569330120000,1569330180000,1569330240000,1569330300000,1569330360000,1569330420000,1569330480000,1569330540000,1569330600000,1569330660000,1569330720000,1569330780000,1569330840000,1569330900000,1569330960000,1569331020000,1569331080000,1569331140000,1569331200000,1569331260000,1569331320000,1569331380000,1569331440000,1569331500000,1569331560000,1569331620000,1569331680000,1569331740000,1569331800000,1569331860000,1569331920000,1569331980000,1569332040000,1569332100000,1569332160000,1569332220000,1569332280000,1569332340000,1569332400000,1569332460000,1569332520000,1569332580000,1569332640000,1569332700000,1569332760000,1569332820000,1569332880000,1569332940000,1569333000000,1569333060000,1569333120000,1569333180000,1569333240000,1569333300000,1569333360000,1569333420000,1569333480000,1569333540000,1569333600000,1569333660000,1569333720000,1569333780000,1569333840000,1569333900000,1569333960000,1569334020000,1569334080000,1569334140000,1569334200000,1569334260000,1569334320000,1569334380000,1569334440000,1569334500000,1569334560000,1569334620000,1569334680000,1569334740000,1569334800000,1569334860000,1569334920000,1569334980000,1569335040000,1569335100000,1569335160000,1569335220000,1569335280000,1569335340000,1569335400000,1569335460000,1569335520000,1569335580000,1569335640000,1569335700000,1569335760000,1569335820000,1569335880000,1569335940000,1569336000000,1569336060000,1569336120000,1569336180000,1569336240000,1569336300000,1569336360000,1569336420000,1569336480000,1569336540000,1569336600000,1569336660000,1569336720000,1569336780000,1569336840000,1569336900000,1569336960000,1569337020000,1569337080000,1569337140000,1569337200000,1569337260000,1569337320000,1569337380000,1569337440000,1569337500000,1569337560000,1569337620000,1569337680000,1569337740000,1569337800000,1569337860000,1569337920000,1569337980000,1569338040000,1569338100000,1569338160000,1569338220000,1569338280000,1569338340000,1569338400000,1569338460000,1569338520000,1569338580000,1569338640000,1569338700000,1569338760000,1569338820000,1569338880000,1569338940000,1569339000000,1569339060000,1569339120000,1569339180000,1569339240000,1569339300000,1569339360000,1569339420000,1569339480000,1569339540000,1569339600000,1569339660000,1569339720000,1569339780000,1569339840000,1569339900000,1569339960000,1569340020000,1569340080000,1569340140000,1569340200000,1569340260000,1569340320000,1569340380000,1569340440000,1569340500000,1569340560000,1569340620000,1569340680000,1569340740000,1569340800000,1569340860000,1569340920000,1569340980000,1569341040000,1569341100000,1569341160000,1569341220000,1569341280000,1569341340000,1569341400000,1569341460000,1569341520000,1569341580000,1569341640000,1569341700000,1569341760000,1569341820000,1569341880000,1569341940000,1569342000000,1569342060000,1569342120000,1569342180000,1569342240000,1569342300000,1569342360000,1569342420000,1569342480000,1569342540000,1569342600000,1569342660000,1569342720000,1569342780000,1569342840000,1569342900000,1569342960000,1569343020000,1569343080000,1569343140000,1569343200000,1569343260000,1569343320000,1569343380000,1569343440000,1569343500000,1569343560000,1569343620000,1569343680000,1569343740000,1569343800000,1569343860000,1569343920000,1569343980000,1569344040000,1569344100000,1569344160000,1569344220000,1569344280000,1569344340000,1569344400000,1569344460000,1569344520000,1569344580000,1569344640000,1569344700000,1569344760000,1569344820000,1569344880000,1569344940000,1569345000000,1569345060000,1569345120000,1569345180000,1569345240000,1569345300000,1569345360000,1569345420000,1569345480000,1569345540000,1569345600000,1569345660000,1569345720000,1569345780000,1569345840000,1569345900000,1569345960000,1569346020000,1569346080000,1569346140000,1569346200000,1569346260000,1569346320000,1569346380000,1569346440000,1569346500000,1569346560000,1569346620000,1569346680000,1569346740000,1569346800000,1569346860000,1569346920000,1569346980000,1569347040000,1569347100000,1569347160000,1569347220000,1569347280000,1569347340000,1569347400000,1569347460000,1569347520000,1569347580000,1569347640000,1569347700000,1569347760000,1569347820000,1569347880000,1569347940000,1569348000000,1569348060000,1569348120000,1569348180000,1569348240000,1569348300000,1569348360000,1569348420000,1569348480000,1569348540000,1569348600000,1569348660000,1569348720000,1569348780000,1569348840000,1569348900000,1569348960000,1569349020000,1569349080000,1569349140000,1569349200000,1569349260000,1569349320000,1569349380000,1569349440000,1569349500000,1569349560000,1569349620000,1569349680000,1569349740000,1569349800000,1569349860000,1569349920000,1569349980000,1569350040000,1569350100000,1569350160000,1569350220000,1569350280000,1569350340000,1569350400000,1569350460000,1569350520000,1569350580000,1569350640000,1569350700000,1569350760000,1569350820000,1569350880000,1569350940000,1569351000000,1569351060000,1569351120000,1569351180000,1569351240000,1569351300000,1569351360000,1569351420000,1569351480000,1569351540000,1569351600000,1569351660000,1569351720000,1569351780000,1569351840000,1569351900000,1569351960000,1569352020000,1569352080000,1569352140000,1569352200000,1569352260000,1569352320000,1569352380000,1569352440000,1569352500000,1569352560000,1569352620000,1569352680000,1569352740000,1569352800000,1569352860000,1569352920000,1569352980000,1569353040000,1569353100000,1569353160000,1569353220000,1569353280000,1569353340000,1569353400000,1569353460000,1569353520000,1569353580000,1569353640000,1569353700000,1569353760000,1569353820000,1569353880000,1569353940000,1569354000000,1569354060000,1569354120000,1569354180000,1569354240000,1569354300000,1569354360000,1569354420000,1569354480000,1569354540000,1569354600000,1569354660000,1569354720000,1569354780000,1569354840000,1569354900000,1569354960000,1569355020000,1569355080000,1569355140000,1569355200000,1569355260000,1569355320000,1569355380000,1569355440000,1569355500000,1569355560000,1569355620000,1569355680000,1569355740000,1569355800000,1569355860000,1569355920000,1569355980000,1569356040000,1569356100000,1569356160000,1569356220000,1569356280000,1569356340000,1569356400000,1569356460000,1569356520000,1569356580000,1569356640000,1569356700000,1569356760000,1569356820000,1569356880000,1569356940000,1569357000000,1569357060000,1569357120000,1569357180000,1569357240000,1569357300000,1569357360000,1569357420000,1569357480000,1569357540000,1569357600000,1569357660000,1569357720000,1569357780000,1569357840000,1569357900000,1569357960000,1569358020000,1569358080000,1569358140000,1569358200000,1569358260000,1569358320000,1569358380000,1569358440000,1569358500000,1569358560000,1569358620000,1569358680000,1569358740000,1569358800000,1569358860000,1569358920000,1569358980000,1569359040000,1569359100000,1569359160000,1569359220000,1569359280000,1569359340000,1569359400000,1569359460000,1569359520000,1569359580000,1569359640000,1569359700000,1569359760000,1569359820000,1569359880000,1569359940000,1569360000000,1569360060000,1569360120000,1569360180000,1569360240000,1569360300000,1569360360000,1569360420000,1569360480000,1569360540000,1569360600000,1569360660000,1569360720000,1569360780000,1569360840000,1569360900000,1569360960000,1569361020000,1569361080000,1569361140000,1569361200000,1569361260000,1569361320000,1569361380000,1569361440000,1569361500000,1569361560000,1569361620000,1569361680000,1569361740000,1569361800000,1569361860000,1569361920000,1569361980000,1569362040000,1569362100000,1569362160000,1569362220000,1569362280000,1569362340000,1569362400000,1569362460000,1569362520000,1569362580000,1569362640000,1569362700000,1569362760000,1569362820000,1569362880000,1569362940000,1569363000000,1569363060000,1569363120000,1569363180000,1569363240000,1569363300000,1569363360000,1569363420000,1569363480000,1569363540000,1569363600000,1569363660000,1569363720000,1569363780000,1569363840000,1569363900000,1569363960000,1569364020000,1569364080000,1569364140000,1569364200000,1569364260000,1569364320000,1569364380000,1569364440000,1569364500000,1569364560000,1569364620000,1569364680000,1569364740000,1569364800000,1569364860000,1569364920000,1569364980000,1569365040000,1569365100000,1569365160000,1569365220000,1569365280000,1569365340000,1569365400000,1569365460000,1569365520000,1569365580000,1569365640000,1569365700000,1569365760000,1569365820000,1569365880000,1569365940000,1569366000000,1569366060000,1569366120000,1569366180000,1569366240000,1569366300000,1569366360000,1569366420000,1569366480000,1569366540000,1569366600000,1569366660000,1569366720000,1569366780000,1569366840000,1569366900000,1569366960000,1569367020000,1569367080000,1569367140000,1569367200000,1569367260000,1569367320000,1569367380000,1569367440000,1569367500000,1569367560000,1569367620000,1569367680000,1569367740000,1569367800000,1569367860000,1569367920000,1569367980000,1569368040000,1569368100000,1569368160000,1569368220000,1569368280000,1569368340000,1569368400000,1569368460000,1569368520000,1569368580000,1569368640000,1569368700000,1569368760000,1569368820000,1569368880000,1569368940000,1569369000000,1569369060000,1569369120000,1569369180000,1569369240000,1569369300000,1569369360000,1569369420000,1569369480000,1569369540000,1569369600000,1569369660000,1569369720000,1569369780000,1569369840000,1569369900000,1569369960000,1569370020000,1569370080000,1569370140000,1569370200000,1569370260000,1569370320000,1569370380000,1569370440000,1569370500000,1569370560000,1569370620000,1569370680000,1569370740000,1569370800000,1569370860000,1569370920000,1569370980000,1569371040000,1569371100000,1569371160000,1569371220000,1569371280000,1569371340000,1569371400000,1569371460000,1569371520000,1569371580000,1569371640000,1569371700000,1569371760000,1569371820000,1569371880000,1569371940000,1569372000000,1569372060000,1569372120000,1569372180000,1569372240000,1569372300000,1569372360000,1569372420000,1569372480000,1569372540000,1569372600000,1569372660000,1569372720000,1569372780000,1569372840000,1569372900000,1569372960000,1569373020000,1569373080000,1569373140000,1569373200000,1569373260000,1569373320000,1569373380000,1569373440000,1569373500000,1569373560000,1569373620000,1569373680000,1569373740000,1569373800000,1569373860000,1569373920000,1569373980000,1569374040000,1569374100000,1569374160000,1569374220000,1569374280000,1569374340000,1569374400000,1569374460000,1569374520000,1569374580000,1569374640000,1569374700000,1569374760000,1569374820000,1569374880000,1569374940000,1569375000000,1569375060000,1569375120000,1569375180000,1569375240000,1569375300000,1569375360000,1569375420000,1569375480000,1569375540000,1569375600000,1569375660000,1569375720000,1569375780000,1569375840000,1569375900000,1569375960000,1569376020000,1569376080000,1569376140000,1569376200000,1569376260000,1569376320000,1569376380000,1569376440000,1569376500000,1569376560000,1569376620000,1569376680000,1569376740000,1569376800000,1569376860000,1569376920000,1569376980000,1569377040000,1569377100000,1569377160000,1569377220000,1569377280000,1569377340000,1569377400000,1569377460000,1569377520000,1569377580000,1569377640000,1569377700000,1569377760000,1569377820000,1569377880000,1569377940000,1569378000000,1569378060000,1569378120000,1569378180000,1569378240000,1569378300000,1569378360000,1569378420000,1569378480000,1569378540000,1569378600000,1569378660000,1569378720000,1569378780000,1569378840000,1569378900000,1569378960000,1569379020000,1569379080000,1569379140000,1569379200000,1569379260000,1569379320000,1569379380000,1569379440000,1569379500000,1569379560000,1569379620000,1569379680000,1569379740000,1569379800000,1569379860000,1569379920000,1569379980000,1569380040000,1569380100000,1569380160000,1569380220000,1569380280000,1569380340000,1569380400000,1569380460000,1569380520000,1569380580000,1569380640000,1569380700000,1569380760000,1569380820000,1569380880000,1569380940000,1569381000000,1569381060000,1569381120000,1569381180000,1569381240000,1569381300000,1569381360000,1569381420000,1569381480000,1569381540000,1569381600000,1569381660000,1569381720000,1569381780000,1569381840000,1569381900000,1569381960000,1569382020000,1569382080000,1569382140000,1569382200000,1569382260000,1569382320000,1569382380000,1569382440000,1569382500000,1569382560000,1569382620000,1569382680000,1569382740000,1569382800000,1569382860000,1569382920000,1569382980000,1569383040000,1569383100000,1569383160000,1569383220000,1569383280000,1569383340000,1569383400000,1569383460000,1569383520000,1569383580000,1569383640000,1569383700000,1569383760000,1569383820000,1569383880000,1569383940000,1569384000000,1569384060000,1569384120000,1569384180000,1569384240000,1569384300000,1569384360000,1569384420000,1569384480000,1569384540000,1569384600000,1569384660000,1569384720000,1569384780000,1569384840000,1569384900000,1569384960000,1569385020000,1569385080000,1569385140000,1569385200000,1569385260000,1569385320000,1569385380000,1569385440000,1569385500000,1569385560000,1569385620000,1569385680000,1569385740000,1569385800000,1569385860000,1569385920000,1569385980000,1569386040000,1569386100000,1569386160000,1569386220000,1569386280000,1569386340000,1569386400000,1569386460000,1569386520000,1569386580000,1569386640000,1569386700000,1569386760000,1569386820000,1569386880000,1569386940000,1569387000000,1569387060000,1569387120000,1569387180000,1569387240000,1569387300000,1569387360000,1569387420000,1569387480000,1569387540000,1569387600000,1569387660000,1569387720000,1569387780000,1569387840000,1569387900000,1569387960000,1569388020000,1569388080000,1569388140000,1569388200000,1569388260000,1569388320000,1569388380000,1569388440000,1569388500000,1569388560000,1569388620000,1569388680000,1569388740000,1569388800000,1569388860000,1569388920000,1569388980000,1569389040000,1569389100000,1569389160000,1569389220000,1569389280000,1569389340000,1569389400000,1569389460000,1569389520000,1569389580000,1569389640000,1569389700000,1569389760000,1569389820000,1569389880000,1569389940000,1569390000000,1569390060000,1569390120000,1569390180000,1569390240000,1569390300000,1569390360000,1569390420000,1569390480000,1569390540000,1569390600000,1569390660000,1569390720000,1569390780000,1569390840000,1569390900000,1569390960000,1569391020000,1569391080000,1569391140000,1569391200000,1569391260000,1569391320000,1569391380000,1569391440000,1569391500000,1569391560000,1569391620000,1569391680000,1569391740000,1569391800000,1569391860000,1569391920000,1569391980000,1569392040000,1569392100000,1569392160000,1569392220000,1569392280000,1569392340000,1569392400000,1569392460000,1569392520000,1569392580000,1569392640000,1569392700000,1569392760000,1569392820000,1569392880000,1569392940000,1569393000000,1569393060000,1569393120000,1569393180000,1569393240000,1569393300000,1569393360000,1569393420000,1569393480000,1569393540000,1569393600000,1569393660000,1569393720000,1569393780000,1569393840000,1569393900000,1569393960000,1569394020000,1569394080000,1569394140000,1569394200000,1569394260000,1569394320000,1569394380000,1569394440000,1569394500000,1569394560000,1569394620000,1569394680000,1569394740000,1569394800000,1569394860000,1569394920000,1569394980000,1569395040000,1569395100000,1569395160000,1569395220000,1569395280000,1569395340000,1569395400000,1569395460000,1569395520000,1569395580000,1569395640000,1569395700000,1569395760000,1569395820000,1569395880000,1569395940000,1569396000000,1569396060000,1569396120000,1569396180000,1569396240000,1569396300000,1569396360000,1569396420000,1569396480000,1569396540000,1569396600000,1569396660000,1569396720000,1569396780000,1569396840000,1569396900000,1569396960000,1569397020000,1569397080000,1569397140000,1569397200000,1569397260000,1569397320000,1569397380000,1569397440000,1569397500000,1569397560000,1569397620000,1569397680000,1569397740000,1569397800000,1569397860000,1569397920000,1569397980000,1569398040000,1569398100000,1569398160000,1569398220000,1569398280000,1569398340000,1569398400000,1569398460000,1569398520000,1569398580000,1569398640000,1569398700000,1569398760000,1569398820000,1569398880000,1569398940000,1569399000000,1569399060000,1569399120000,1569399180000,1569399240000,1569399300000,1569399360000,1569399420000,1569399480000,1569399540000,1569399600000,1569399660000,1569399720000,1569399780000,1569399840000,1569399900000,1569399960000,1569400020000,1569400080000,1569400140000,1569400200000,1569400260000,1569400320000,1569400380000,1569400440000,1569400500000,1569400560000,1569400620000,1569400680000,1569400740000,1569400800000,1569400860000,1569400920000,1569400980000,1569401040000,1569401100000,1569401160000,1569401220000,1569401280000,1569401340000,1569401400000,1569401460000,1569401520000,1569401580000,1569401640000,1569401700000,1569401760000,1569401820000,1569401880000,1569401940000,1569402000000,1569402060000,1569402120000,1569402180000,1569402240000,1569402300000,1569402360000,1569402420000,1569402480000,1569402540000,1569402600000,1569402660000,1569402720000,1569402780000,1569402840000,1569402900000,1569402960000,1569403020000,1569403080000,1569403140000,1569403200000,1569403260000,1569403320000,1569403380000,1569403440000,1569403500000,1569403560000,1569403620000,1569403680000,1569403740000,1569403800000,1569403860000,1569403920000,1569403980000,1569404040000,1569404100000,1569404160000,1569404220000,1569404280000,1569404340000,1569404400000,1569404460000,1569404520000,1569404580000,1569404640000,1569404700000,1569404760000,1569404820000,1569404880000,1569404940000,1569405000000,1569405060000,1569405120000,1569405180000,1569405240000,1569405300000,1569405360000,1569405420000,1569405480000,1569405540000,1569405600000,1569405660000,1569405720000,1569405780000,1569405840000,1569405900000,1569405960000,1569406020000,1569406080000,1569406140000,1569406200000,1569406260000,1569406320000,1569406380000,1569406440000,1569406500000,1569406560000,1569406620000,1569406680000,1569406740000,1569406800000,1569406860000,1569406920000,1569406980000,1569407040000,1569407100000,1569407160000,1569407220000,1569407280000,1569407340000,1569407400000,1569407460000,1569407520000,1569407580000,1569407640000,1569407700000,1569407760000,1569407820000,1569407880000,1569407940000,1569408000000,1569408060000,1569408120000,1569408180000,1569408240000,1569408300000,1569408360000,1569408420000,1569408480000,1569408540000,1569408600000,1569408660000,1569408720000,1569408780000,1569408840000,1569408900000,1569408960000,1569409020000,1569409080000,1569409140000,1569409200000,1569409260000,1569409320000,1569409380000,1569409440000,1569409500000,1569409560000,1569409620000,1569409680000,1569409740000,1569409800000,1569409860000,1569409920000,1569409980000,1569410040000,1569410100000,1569410160000,1569410220000,1569410280000,1569410340000,1569410400000,1569410460000,1569410520000,1569410580000,1569410640000,1569410700000,1569410760000,1569410820000,1569410880000,1569410940000,1569411000000,1569411060000,1569411120000,1569411180000,1569411240000,1569411300000,1569411360000,1569411420000,1569411480000,1569411540000,1569411600000,1569411660000,1569411720000,1569411780000,1569411840000,1569411900000,1569411960000,1569412020000,1569412080000,1569412140000,1569412200000,1569412260000,1569412320000,1569412380000,1569412440000,1569412500000,1569412560000,1569412620000,1569412680000,1569412740000,1569412800000,1569412860000,1569412920000,1569412980000,1569413040000,1569413100000,1569413160000,1569413220000,1569413280000,1569413340000,1569413400000,1569413460000,1569413520000,1569413580000,1569413640000,1569413700000,1569413760000,1569413820000,1569413880000,1569413940000,1569414000000,1569414060000,1569414120000,1569414180000,1569414240000,1569414300000,1569414360000,1569414420000,1569414480000,1569414540000,1569414600000,1569414660000,1569414720000,1569414780000,1569414840000,1569414900000,1569414960000,1569415020000,1569415080000,1569415140000,1569415200000,1569415260000,1569415320000,1569415380000,1569415440000,1569415500000,1569415560000,1569415620000,1569415680000,1569415740000,1569415800000,1569415860000,1569415920000,1569415980000,1569416040000,1569416100000,1569416160000,1569416220000,1569416280000,1569416340000,1569416400000,1569416460000,1569416520000,1569416580000,1569416640000,1569416700000,1569416760000,1569416820000,1569416880000,1569416940000,1569417000000,1569417060000,1569417120000,1569417180000,1569417240000,1569417300000,1569417360000,1569417420000,1569417480000,1569417540000,1569417600000,1569417660000,1569417720000,1569417780000,1569417840000,1569417900000,1569417960000,1569418020000,1569418080000,1569418140000,1569418200000,1569418260000,1569418320000,1569418380000,1569418440000,1569418500000,1569418560000,1569418620000,1569418680000,1569418740000,1569418800000,1569418860000,1569418920000,1569418980000,1569419040000,1569419100000,1569419160000,1569419220000,1569419280000,1569419340000,1569419400000,1569419460000,1569419520000,1569419580000,1569419640000,1569419700000,1569419760000,1569419820000,1569419880000,1569419940000,1569420000000,1569420060000,1569420120000,1569420180000,1569420240000,1569420300000,1569420360000,1569420420000,1569420480000,1569420540000,1569420600000,1569420660000,1569420720000,1569420780000,1569420840000,1569420900000,1569420960000,1569421020000,1569421080000,1569421140000,1569421200000,1569421260000,1569421320000,1569421380000,1569421440000,1569421500000,1569421560000,1569421620000,1569421680000,1569421740000,1569421800000,1569421860000,1569421920000,1569421980000,1569422040000,1569422100000,1569422160000,1569422220000,1569422280000,1569422340000,1569422400000,1569422460000,1569422520000,1569422580000,1569422640000,1569422700000,1569422760000,1569422820000,1569422880000,1569422940000,1569423000000,1569423060000,1569423120000,1569423180000,1569423240000,1569423300000,1569423360000,1569423420000,1569423480000,1569423540000,1569423600000,1569423660000,1569423720000,1569423780000,1569423840000,1569423900000,1569423960000,1569424020000,1569424080000,1569424140000,1569424200000,1569424260000,1569424320000,1569424380000,1569424440000,1569424500000,1569424560000,1569424620000,1569424680000,1569424740000,1569424800000,1569424860000,1569424920000,1569424980000,1569425040000,1569425100000,1569425160000,1569425220000,1569425280000,1569425340000,1569425400000,1569425460000,1569425520000,1569425580000,1569425640000,1569425700000,1569425760000,1569425820000,1569425880000,1569425940000,1569426000000,1569426060000,1569426120000,1569426180000,1569426240000,1569426300000,1569426360000,1569426420000,1569426480000,1569426540000,1569426600000,1569426660000,1569426720000,1569426780000,1569426840000,1569426900000,1569426960000,1569427020000,1569427080000,1569427140000,1569427200000,1569427260000,1569427320000,1569427380000,1569427440000,1569427500000,1569427560000,1569427620000,1569427680000,1569427740000,1569427800000,1569427860000,1569427920000,1569427980000,1569428040000,1569428100000,1569428160000,1569428220000,1569428280000,1569428340000,1569428400000,1569428460000,1569428520000,1569428580000,1569428640000,1569428700000,1569428760000,1569428820000,1569428880000,1569428940000,1569429000000,1569429060000,1569429120000,1569429180000,1569429240000,1569429300000,1569429360000,1569429420000,1569429480000,1569429540000,1569429600000,1569429660000,1569429720000,1569429780000,1569429840000,1569429900000,1569429960000,1569430020000,1569430080000,1569430140000,1569430200000,1569430260000,1569430320000,1569430380000,1569430440000,1569430500000,1569430560000,1569430620000,1569430680000,1569430740000,1569430800000,1569430860000,1569430920000,1569430980000,1569431040000,1569431100000,1569431160000,1569431220000,1569431280000,1569431340000,1569431400000,1569431460000,1569431520000,1569431580000,1569431640000,1569431700000,1569431760000,1569431820000,1569431880000,1569431940000,1569432000000,1569432060000,1569432120000,1569432180000,1569432240000,1569432300000,1569432360000,1569432420000,1569432480000,1569432540000,1569432600000,1569432660000,1569432720000,1569432780000,1569432840000,1569432900000,1569432960000,1569433020000,1569433080000,1569433140000,1569433200000,1569433260000,1569433320000,1569433380000,1569433440000,1569433500000,1569433560000,1569433620000,1569433680000,1569433740000,1569433800000,1569433860000,1569433920000,1569433980000,1569434040000,1569434100000,1569434160000,1569434220000,1569434280000,1569434340000,1569434400000,1569434460000,1569434520000,1569434580000,1569434640000,1569434700000,1569434760000,1569434820000,1569434880000,1569434940000,1569435000000,1569435060000,1569435120000,1569435180000,1569435240000,1569435300000,1569435360000,1569435420000,1569435480000,1569435540000,1569435600000,1569435660000,1569435720000,1569435780000,1569435840000,1569435900000,1569435960000,1569436020000,1569436080000,1569436140000,1569436200000,1569436260000,1569436320000,1569436380000,1569436440000,1569436500000,1569436560000,1569436620000,1569436680000,1569436740000,1569436800000,1569436860000,1569436920000,1569436980000,1569437040000,1569437100000,1569437160000,1569437220000,1569437280000,1569437340000,1569437400000,1569437460000,1569437520000,1569437580000,1569437640000,1569437700000,1569437760000,1569437820000,1569437880000,1569437940000,1569438000000,1569438060000,1569438120000,1569438180000,1569438240000,1569438300000,1569438360000,1569438420000,1569438480000,1569438540000,1569438600000,1569438660000,1569438720000,1569438780000,1569438840000,1569438900000,1569438960000,1569439020000,1569439080000,1569439140000,1569439200000,1569439260000,1569439320000,1569439380000,1569439440000,1569439500000,1569439560000,1569439620000,1569439680000,1569439740000,1569439800000,1569439860000,1569439920000,1569439980000,1569440040000,1569440100000,1569440160000,1569440220000,1569440280000,1569440340000,1569440400000,1569440460000,1569440520000,1569440580000,1569440640000,1569440700000,1569440760000,1569440820000,1569440880000,1569440940000,1569441000000,1569441060000,1569441120000,1569441180000,1569441240000,1569441300000,1569441360000,1569441420000,1569441480000,1569441540000,1569441600000,1569441660000,1569441720000,1569441780000,1569441840000,1569441900000,1569441960000,1569442020000,1569442080000,1569442140000,1569442200000,1569442260000,1569442320000,1569442380000,1569442440000,1569442500000,1569442560000,1569442620000,1569442680000,1569442740000,1569442800000,1569442860000,1569442920000,1569442980000,1569443040000,1569443100000,1569443160000,1569443220000,1569443280000,1569443340000,1569443400000,1569443460000,1569443520000,1569443580000,1569443640000,1569443700000,1569443760000,1569443820000,1569443880000,1569443940000,1569444000000,1569444060000,1569444120000,1569444180000,1569444240000,1569444300000,1569444360000,1569444420000,1569444480000,1569444540000,1569444600000,1569444660000,1569444720000,1569444780000,1569444840000,1569444900000,1569444960000,1569445020000,1569445080000,1569445140000,1569445200000,1569445260000,1569445320000,1569445380000,1569445440000,1569445500000,1569445560000,1569445620000,1569445680000,1569445740000,1569445800000,1569445860000,1569445920000,1569445980000,1569446040000,1569446100000,1569446160000,1569446220000,1569446280000,1569446340000,1569446400000,1569446460000,1569446520000,1569446580000,1569446640000,1569446700000,1569446760000,1569446820000,1569446880000,1569446940000,1569447000000,1569447060000,1569447120000,1569447180000,1569447240000,1569447300000,1569447360000,1569447420000,1569447480000,1569447540000,1569447600000,1569447660000,1569447720000,1569447780000,1569447840000,1569447900000,1569447960000,1569448020000,1569448080000,1569448140000,1569448200000,1569448260000,1569448320000,1569448380000,1569448440000,1569448500000,1569448560000,1569448620000,1569448680000,1569448740000,1569448800000,1569448860000,1569448920000,1569448980000,1569449040000,1569449100000,1569449160000,1569449220000,1569449280000,1569449340000,1569449400000,1569449460000,1569449520000,1569449580000,1569449640000,1569449700000,1569449760000,1569449820000,1569449880000,1569449940000,1569450000000,1569450060000,1569450120000,1569450180000,1569450240000,1569450300000,1569450360000,1569450420000,1569450480000,1569450540000,1569450600000,1569450660000,1569450720000,1569450780000,1569450840000,1569450900000,1569450960000,1569451020000,1569451080000,1569451140000,1569451200000,1569451260000,1569451320000,1569451380000,1569451440000,1569451500000,1569451560000,1569451620000,1569451680000,1569451740000,1569451800000,1569451860000,1569451920000,1569451980000,1569452040000,1569452100000,1569452160000,1569452220000,1569452280000,1569452340000,1569452400000,1569452460000,1569452520000,1569452580000,1569452640000,1569452700000,1569452760000,1569452820000,1569452880000,1569452940000,1569453000000,1569453060000,1569453120000,1569453180000,1569453240000,1569453300000,1569453360000,1569453420000,1569453480000,1569453540000,1569453600000,1569453660000,1569453720000,1569453780000,1569453840000,1569453900000,1569453960000,1569454020000,1569454080000,1569454140000,1569454200000,1569454260000,1569454320000,1569454380000,1569454440000,1569454500000,1569454560000,1569454620000,1569454680000,1569454740000,1569454800000,1569454860000,1569454920000,1569454980000,1569455040000,1569455100000,1569455160000,1569455220000,1569455280000,1569455340000,1569455400000,1569455460000,1569455520000,1569455580000,1569455640000,1569455700000,1569455760000,1569455820000,1569455880000,1569455940000,1569456000000,1569456060000,1569456120000,1569456180000,1569456240000,1569456300000,1569456360000,1569456420000,1569456480000,1569456540000,1569456600000,1569456660000,1569456720000,1569456780000,1569456840000,1569456900000,1569456960000,1569457020000,1569457080000,1569457140000,1569457200000,1569457260000,1569457320000,1569457380000,1569457440000,1569457500000,1569457560000,1569457620000,1569457680000,1569457740000,1569457800000,1569457860000,1569457920000,1569457980000,1569458040000,1569458100000,1569458160000,1569458220000,1569458280000,1569458340000,1569458400000,1569458460000,1569458520000,1569458580000,1569458640000,1569458700000,1569458760000,1569458820000,1569458880000,1569458940000,1569459000000,1569459060000,1569459120000,1569459180000,1569459240000,1569459300000,1569459360000,1569459420000,1569459480000,1569459540000,1569459600000,1569459660000,1569459720000,1569459780000,1569459840000,1569459900000,1569459960000,1569460020000,1569460080000,1569460140000,1569460200000,1569460260000,1569460320000,1569460380000,1569460440000,1569460500000,1569460560000,1569460620000,1569460680000,1569460740000,1569460800000,1569460860000,1569460920000,1569460980000,1569461040000,1569461100000,1569461160000,1569461220000,1569461280000,1569461340000,1569461400000,1569461460000,1569461520000,1569461580000,1569461640000,1569461700000,1569461760000,1569461820000,1569461880000,1569461940000,1569462000000,1569462060000,1569462120000,1569462180000,1569462240000,1569462300000,1569462360000,1569462420000,1569462480000,1569462540000,1569462600000,1569462660000,1569462720000,1569462780000,1569462840000,1569462900000,1569462960000,1569463020000,1569463080000,1569463140000,1569463200000,1569463260000,1569463320000,1569463380000,1569463440000,1569463500000,1569463560000,1569463620000,1569463680000,1569463740000,1569463800000,1569463860000,1569463920000,1569463980000,1569464040000,1569464100000,1569464160000,1569464220000,1569464280000,1569464340000,1569464400000,1569464460000,1569464520000,1569464580000,1569464640000,1569464700000,1569464760000,1569464820000,1569464880000,1569464940000,1569465000000,1569465060000,1569465120000,1569465180000,1569465240000,1569465300000,1569465360000,1569465420000,1569465480000,1569465540000,1569465600000,1569465660000,1569465720000,1569465780000,1569465840000,1569465900000,1569465960000,1569466020000,1569466080000,1569466140000,1569466200000,1569466260000,1569466320000,1569466380000,1569466440000,1569466500000,1569466560000,1569466620000,1569466680000,1569466740000,1569466800000,1569466860000,1569466920000,1569466980000,1569467040000,1569467100000,1569467160000,1569467220000,1569467280000,1569467340000,1569467400000,1569467460000,1569467520000,1569467580000,1569467640000,1569467700000,1569467760000,1569467820000,1569467880000,1569467940000,1569468000000,1569468060000,1569468120000,1569468180000,1569468240000,1569468300000,1569468360000,1569468420000,1569468480000,1569468540000,1569468600000,1569468660000,1569468720000,1569468780000,1569468840000,1569468900000,1569468960000,1569469020000,1569469080000,1569469140000,1569469200000,1569469260000,1569469320000,1569469380000,1569469440000,1569469500000,1569469560000,1569469620000,1569469680000,1569469740000,1569469800000,1569469860000,1569469920000,1569469980000,1569470040000,1569470100000,1569470160000,1569470220000,1569470280000,1569470340000,1569470400000,1569470460000,1569470520000,1569470580000,1569470640000,1569470700000,1569470760000,1569470820000,1569470880000,1569470940000,1569471000000,1569471060000,1569471120000,1569471180000,1569471240000,1569471300000,1569471360000,1569471420000,1569471480000,1569471540000,1569471600000,1569471660000,1569471720000,1569471780000,1569471840000,1569471900000,1569471960000,1569472020000,1569472080000,1569472140000,1569472200000,1569472260000,1569472320000,1569472380000,1569472440000,1569472500000,1569472560000,1569472620000,1569472680000,1569472740000,1569472800000,1569472860000,1569472920000,1569472980000,1569473040000,1569473100000,1569473160000,1569473220000,1569473280000,1569473340000,1569473400000,1569473460000,1569473520000,1569473580000,1569473640000,1569473700000,1569473760000,1569473820000,1569473880000,1569473940000,1569474000000,1569474060000,1569474120000,1569474180000,1569474240000,1569474300000,1569474360000,1569474420000,1569474480000,1569474540000,1569474600000,1569474660000,1569474720000,1569474780000,1569474840000,1569474900000,1569474960000,1569475020000,1569475080000,1569475140000,1569475200000,1569475260000,1569475320000,1569475380000,1569475440000,1569475500000,1569475560000,1569475620000,1569475680000,1569475740000,1569475800000,1569475860000,1569475920000,1569475980000,1569476040000,1569476100000,1569476160000,1569476220000,1569476280000,1569476340000,1569476400000,1569476460000,1569476520000,1569476580000,1569476640000,1569476700000,1569476760000,1569476820000,1569476880000,1569476940000,1569477000000,1569477060000,1569477120000,1569477180000,1569477240000,1569477300000,1569477360000,1569477420000,1569477480000,1569477540000,1569477600000,1569477660000,1569477720000,1569477780000,1569477840000,1569477900000,1569477960000,1569478020000,1569478080000,1569478140000,1569478200000,1569478260000,1569478320000,1569478380000,1569478440000,1569478500000,1569478560000,1569478620000,1569478680000,1569478740000,1569478800000,1569478860000,1569478920000,1569478980000,1569479040000,1569479100000,1569479160000,1569479220000,1569479280000,1569479340000,1569479400000,1569479460000,1569479520000,1569479580000,1569479640000,1569479700000,1569479760000,1569479820000,1569479880000,1569479940000,1569480000000,1569480060000,1569480120000,1569480180000,1569480240000,1569480300000,1569480360000,1569480420000,1569480480000,1569480540000,1569480600000,1569480660000,1569480720000,1569480780000,1569480840000,1569480900000,1569480960000,1569481020000,1569481080000,1569481140000,1569481200000,1569481260000,1569481320000,1569481380000,1569481440000,1569481500000,1569481560000,1569481620000,1569481680000,1569481740000,1569481800000,1569481860000,1569481920000,1569481980000,1569482040000,1569482100000,1569482160000,1569482220000,1569482280000,1569482340000,1569482400000,1569482460000,1569482520000,1569482580000,1569482640000,1569482700000,1569482760000,1569482820000,1569482880000,1569482940000,1569483000000,1569483060000,1569483120000,1569483180000,1569483240000,1569483300000,1569483360000,1569483420000,1569483480000,1569483540000,1569483600000,1569483660000,1569483720000,1569483780000,1569483840000,1569483900000,1569483960000,1569484020000,1569484080000,1569484140000,1569484200000,1569484260000,1569484320000,1569484380000,1569484440000,1569484500000,1569484560000,1569484620000,1569484680000,1569484740000,1569484800000,1569484860000,1569484920000,1569484980000,1569485040000,1569485100000,1569485160000,1569485220000,1569485280000,1569485340000,1569485400000,1569485460000,1569485520000,1569485580000,1569485640000,1569485700000,1569485760000,1569485820000,1569485880000,1569485940000,1569486000000,1569486060000,1569486120000,1569486180000,1569486240000,1569486300000,1569486360000,1569486420000,1569486480000,1569486540000,1569486600000,1569486660000,1569486720000,1569486780000,1569486840000,1569486900000,1569486960000,1569487020000,1569487080000,1569487140000,1569487200000,1569487260000,1569487320000,1569487380000,1569487440000,1569487500000,1569487560000,1569487620000,1569487680000,1569487740000,1569487800000,1569487860000,1569487920000,1569487980000,1569488040000,1569488100000,1569488160000,1569488220000,1569488280000,1569488340000,1569488400000,1569488460000,1569488520000,1569488580000,1569488640000,1569488700000,1569488760000,1569488820000,1569488880000,1569488940000,1569489000000,1569489060000,1569489120000,1569489180000,1569489240000,1569489300000,1569489360000,1569489420000,1569489480000,1569489540000,1569489600000,1569489660000,1569489720000,1569489780000,1569489840000,1569489900000,1569489960000,1569490020000,1569490080000,1569490140000,1569490200000,1569490260000,1569490320000,1569490380000,1569490440000,1569490500000,1569490560000,1569490620000,1569490680000,1569490740000,1569490800000,1569490860000,1569490920000,1569490980000,1569491040000,1569491100000,1569491160000,1569491220000,1569491280000,1569491340000,1569491400000,1569491460000,1569491520000,1569491580000,1569491640000,1569491700000,1569491760000,1569491820000,1569491880000,1569491940000,1569492000000,1569492060000,1569492120000,1569492180000,1569492240000,1569492300000,1569492360000,1569492420000,1569492480000,1569492540000,1569492600000,1569492660000,1569492720000,1569492780000,1569492840000,1569492900000,1569492960000,1569493020000,1569493080000,1569493140000,1569493200000,1569493260000,1569493320000,1569493380000,1569493440000,1569493500000,1569493560000,1569493620000,1569493680000,1569493740000,1569493800000,1569493860000,1569493920000,1569493980000,1569494040000,1569494100000,1569494160000,1569494220000,1569494280000,1569494340000,1569494400000,1569494460000,1569494520000,1569494580000,1569494640000,1569494700000,1569494760000,1569494820000,1569494880000,1569494940000,1569495000000,1569495060000,1569495120000,1569495180000,1569495240000,1569495300000,1569495360000,1569495420000,1569495480000,1569495540000,1569495600000,1569495660000,1569495720000,1569495780000,1569495840000,1569495900000,1569495960000,1569496020000,1569496080000,1569496140000,1569496200000,1569496260000,1569496320000,1569496380000,1569496440000,1569496500000,1569496560000,1569496620000,1569496680000,1569496740000,1569496800000,1569496860000,1569496920000,1569496980000,1569497040000,1569497100000,1569497160000,1569497220000,1569497280000,1569497340000,1569497400000,1569497460000,1569497520000,1569497580000,1569497640000,1569497700000,1569497760000,1569497820000,1569497880000,1569497940000,1569498000000,1569498060000,1569498120000,1569498180000,1569498240000,1569498300000,1569498360000,1569498420000,1569498480000,1569498540000,1569498600000,1569498660000,1569498720000,1569498780000,1569498840000,1569498900000,1569498960000,1569499020000,1569499080000,1569499140000,1569499200000,1569499260000,1569499320000,1569499380000,1569499440000,1569499500000,1569499560000,1569499620000,1569499680000,1569499740000,1569499800000,1569499860000,1569499920000,1569499980000,1569500040000,1569500100000,1569500160000,1569500220000,1569500280000,1569500340000,1569500400000,1569500460000,1569500520000,1569500580000,1569500640000,1569500700000,1569500760000,1569500820000,1569500880000,1569500940000,1569501000000,1569501060000,1569501120000,1569501180000,1569501240000,1569501300000,1569501360000,1569501420000,1569501480000,1569501540000,1569501600000,1569501660000,1569501720000,1569501780000,1569501840000,1569501900000,1569501960000,1569502020000,1569502080000,1569502140000,1569502200000,1569502260000,1569502320000,1569502380000,1569502440000,1569502500000,1569502560000,1569502620000,1569502680000,1569502740000,1569502800000,1569502860000,1569502920000,1569502980000,1569503040000,1569503100000,1569503160000,1569503220000,1569503280000,1569503340000,1569503400000,1569503460000,1569503520000,1569503580000,1569503640000,1569503700000,1569503760000,1569503820000,1569503880000,1569503940000,1569504000000,1569504060000,1569504120000,1569504180000,1569504240000,1569504300000,1569504360000,1569504420000,1569504480000,1569504540000,1569504600000,1569504660000,1569504720000,1569504780000,1569504840000,1569504900000,1569504960000,1569505020000,1569505080000,1569505140000,1569505200000,1569505260000,1569505320000,1569505380000,1569505440000,1569505500000,1569505560000,1569505620000,1569505680000,1569505740000,1569505800000,1569505860000,1569505920000,1569505980000,1569506040000,1569506100000,1569506160000,1569506220000,1569506280000,1569506340000,1569506400000,1569506460000,1569506520000,1569506580000,1569506640000,1569506700000,1569506760000,1569506820000,1569506880000,1569506940000,1569507000000,1569507060000,1569507120000,1569507180000,1569507240000,1569507300000,1569507360000,1569507420000,1569507480000,1569507540000,1569507600000,1569507660000,1569507720000,1569507780000,1569507840000,1569507900000,1569507960000,1569508020000,1569508080000,1569508140000,1569508200000,1569508260000,1569508320000,1569508380000,1569508440000,1569508500000,1569508560000,1569508620000,1569508680000,1569508740000,1569508800000,1569508860000,1569508920000,1569508980000,1569509040000,1569509100000,1569509160000,1569509220000,1569509280000,1569509340000,1569509400000,1569509460000,1569509520000,1569509580000,1569509640000,1569509700000,1569509760000,1569509820000,1569509880000,1569509940000,1569510000000,1569510060000,1569510120000,1569510180000,1569510240000,1569510300000,1569510360000,1569510420000,1569510480000,1569510540000,1569510600000,1569510660000,1569510720000,1569510780000,1569510840000,1569510900000,1569510960000,1569511020000,1569511080000,1569511140000,1569511200000,1569511260000,1569511320000,1569511380000,1569511440000,1569511500000,1569511560000,1569511620000,1569511680000,1569511740000,1569511800000,1569511860000,1569511920000,1569511980000,1569512040000,1569512100000,1569512160000,1569512220000,1569512280000,1569512340000,1569512400000,1569512460000,1569512520000,1569512580000,1569512640000,1569512700000,1569512760000,1569512820000,1569512880000,1569512940000,1569513000000,1569513060000,1569513120000,1569513180000,1569513240000,1569513300000,1569513360000,1569513420000,1569513480000,1569513540000,1569513600000,1569513660000,1569513720000,1569513780000,1569513840000,1569513900000,1569513960000,1569514020000,1569514080000,1569514140000,1569514200000,1569514260000,1569514320000,1569514380000,1569514440000,1569514500000,1569514560000,1569514620000,1569514680000,1569514740000,1569514800000,1569514860000,1569514920000,1569514980000,1569515040000,1569515100000,1569515160000,1569515220000,1569515280000,1569515340000,1569515400000,1569515460000,1569515520000,1569515580000,1569515640000,1569515700000,1569515760000,1569515820000,1569515880000,1569515940000,1569516000000,1569516060000,1569516120000,1569516180000,1569516240000,1569516300000,1569516360000,1569516420000,1569516480000,1569516540000,1569516600000,1569516660000,1569516720000,1569516780000,1569516840000,1569516900000,1569516960000,1569517020000,1569517080000,1569517140000,1569517200000,1569517260000,1569517320000,1569517380000,1569517440000,1569517500000,1569517560000,1569517620000,1569517680000,1569517740000,1569517800000,1569517860000,1569517920000,1569517980000,1569518040000,1569518100000,1569518160000,1569518220000,1569518280000,1569518340000,1569518400000,1569518460000,1569518520000,1569518580000,1569518640000,1569518700000,1569518760000,1569518820000,1569518880000,1569518940000,1569519000000,1569519060000,1569519120000,1569519180000,1569519240000,1569519300000,1569519360000,1569519420000,1569519480000,1569519540000,1569519600000,1569519660000,1569519720000,1569519780000,1569519840000,1569519900000,1569519960000,1569520020000,1569520080000,1569520140000,1569520200000,1569520260000,1569520320000,1569520380000,1569520440000,1569520500000,1569520560000,1569520620000,1569520680000,1569520740000,1569520800000,1569520860000,1569520920000,1569520980000,1569521040000,1569521100000,1569521160000,1569521220000,1569521280000,1569521340000,1569521400000,1569521460000,1569521520000,1569521580000,1569521640000,1569521700000,1569521760000,1569521820000,1569521880000,1569521940000,1569522000000,1569522060000,1569522120000,1569522180000,1569522240000,1569522300000,1569522360000,1569522420000,1569522480000,1569522540000,1569522600000,1569522660000,1569522720000,1569522780000,1569522840000,1569522900000,1569522960000,1569523020000,1569523080000,1569523140000,1569523200000,1569523260000,1569523320000,1569523380000,1569523440000,1569523500000,1569523560000,1569523620000,1569523680000,1569523740000,1569523800000,1569523860000,1569523920000,1569523980000,1569524040000,1569524100000,1569524160000,1569524220000,1569524280000,1569524340000,1569524400000,1569524460000,1569524520000,1569524580000,1569524640000,1569524700000,1569524760000,1569524820000,1569524880000,1569524940000,1569525000000,1569525060000,1569525120000,1569525180000,1569525240000,1569525300000,1569525360000,1569525420000,1569525480000,1569525540000,1569525600000,1569525660000,1569525720000,1569525780000,1569525840000,1569525900000,1569525960000,1569526020000,1569526080000,1569526140000,1569526200000,1569526260000,1569526320000,1569526380000,1569526440000,1569526500000,1569526560000,1569526620000,1569526680000,1569526740000,1569526800000,1569526860000,1569526920000,1569526980000,1569527040000,1569527100000,1569527160000,1569527220000,1569527280000,1569527340000,1569527400000,1569527460000,1569527520000,1569527580000,1569527640000,1569527700000,1569527760000,1569527820000,1569527880000,1569527940000,1569528000000,1569528060000,1569528120000,1569528180000,1569528240000,1569528300000,1569528360000,1569528420000,1569528480000,1569528540000,1569528600000,1569528660000,1569528720000,1569528780000,1569528840000,1569528900000,1569528960000,1569529020000,1569529080000,1569529140000,1569529200000,1569529260000,1569529320000,1569529380000,1569529440000,1569529500000,1569529560000,1569529620000,1569529680000,1569529740000,1569529800000,1569529860000,1569529920000,1569529980000,1569530040000,1569530100000,1569530160000,1569530220000,1569530280000,1569530340000,1569530400000,1569530460000,1569530520000,1569530580000,1569530640000,1569530700000,1569530760000,1569530820000,1569530880000,1569530940000,1569531000000,1569531060000,1569531120000,1569531180000,1569531240000,1569531300000,1569531360000,1569531420000,1569531480000,1569531540000,1569531600000,1569531660000,1569531720000,1569531780000,1569531840000,1569531900000,1569531960000,1569532020000,1569532080000,1569532140000,1569532200000,1569532260000,1569532320000,1569532380000,1569532440000,1569532500000,1569532560000,1569532620000,1569532680000,1569532740000,1569532800000,1569532860000,1569532920000,1569532980000,1569533040000,1569533100000,1569533160000,1569533220000,1569533280000,1569533340000,1569533400000,1569533460000,1569533520000,1569533580000,1569533640000,1569533700000,1569533760000,1569533820000,1569533880000,1569533940000,1569534000000,1569534060000,1569534120000,1569534180000,1569534240000,1569534300000,1569534360000,1569534420000,1569534480000,1569534540000,1569534600000,1569534660000,1569534720000,1569534780000,1569534840000,1569534900000,1569534960000,1569535020000,1569535080000,1569535140000,1569535200000,1569535260000,1569535320000,1569535380000,1569535440000,1569535500000,1569535560000,1569535620000,1569535680000,1569535740000,1569535800000,1569535860000,1569535920000,1569535980000,1569536040000,1569536100000,1569536160000,1569536220000,1569536280000,1569536340000,1569536400000,1569536460000,1569536520000,1569536580000,1569536640000,1569536700000,1569536760000,1569536820000,1569536880000,1569536940000,1569537000000,1569537060000,1569537120000,1569537180000,1569537240000,1569537300000,1569537360000,1569537420000,1569537480000,1569537540000,1569537600000,1569537660000,1569537720000,1569537780000,1569537840000,1569537900000,1569537960000,1569538020000,1569538080000,1569538140000,1569538200000,1569538260000,1569538320000,1569538380000,1569538440000,1569538500000,1569538560000,1569538620000,1569538680000,1569538740000,1569538800000,1569538860000,1569538920000,1569538980000,1569539040000,1569539100000,1569539160000,1569539220000,1569539280000,1569539340000,1569539400000,1569539460000,1569539520000,1569539580000,1569539640000,1569539700000,1569539760000,1569539820000,1569539880000,1569539940000,1569540000000,1569540060000,1569540120000,1569540180000,1569540240000,1569540300000,1569540360000,1569540420000,1569540480000,1569540540000,1569540600000,1569540660000,1569540720000,1569540780000,1569540840000,1569540900000,1569540960000,1569541020000,1569541080000,1569541140000,1569541200000,1569541260000,1569541320000,1569541380000,1569541440000,1569541500000,1569541560000,1569541620000,1569541680000,1569541740000,1569541800000,1569541860000,1569541920000,1569541980000,1569542040000,1569542100000,1569542160000,1569542220000,1569542280000,1569542340000,1569542400000,1569542460000,1569542520000,1569542580000,1569542640000,1569542700000,1569542760000,1569542820000,1569542880000,1569542940000,1569543000000,1569543060000,1569543120000,1569543180000,1569543240000,1569543300000,1569543360000,1569543420000,1569543480000,1569543540000,1569543600000,1569543660000,1569543720000,1569543780000,1569543840000,1569543900000,1569543960000,1569544020000,1569544080000,1569544140000,1569544200000,1569544260000,1569544320000,1569544380000,1569544440000,1569544500000,1569544560000,1569544620000,1569544680000,1569544740000,1569544800000,1569544860000,1569544920000,1569544980000,1569545040000,1569545100000,1569545160000,1569545220000,1569545280000,1569545340000,1569545400000,1569545460000,1569545520000,1569545580000,1569545640000,1569545700000,1569545760000,1569545820000,1569545880000,1569545940000,1569546000000,1569546060000,1569546120000,1569546180000,1569546240000,1569546300000,1569546360000,1569546420000,1569546480000,1569546540000,1569546600000,1569546660000,1569546720000,1569546780000,1569546840000,1569546900000,1569546960000,1569547020000,1569547080000,1569547140000,1569547200000,1569547260000,1569547320000,1569547380000,1569547440000,1569547500000,1569547560000,1569547620000,1569547680000,1569547740000,1569547800000,1569547860000,1569547920000,1569547980000,1569548040000,1569548100000,1569548160000,1569548220000,1569548280000,1569548340000,1569548400000,1569548460000,1569548520000,1569548580000,1569548640000,1569548700000,1569548760000,1569548820000,1569548880000,1569548940000,1569549000000,1569549060000,1569549120000,1569549180000,1569549240000,1569549300000,1569549360000,1569549420000,1569549480000,1569549540000,1569549600000,1569549660000,1569549720000,1569549780000,1569549840000,1569549900000,1569549960000,1569550020000,1569550080000,1569550140000,1569550200000,1569550260000,1569550320000,1569550380000,1569550440000,1569550500000,1569550560000,1569550620000,1569550680000,1569550740000,1569550800000,1569550860000,1569550920000,1569550980000,1569551040000,1569551100000,1569551160000,1569551220000,1569551280000,1569551340000,1569551400000,1569551460000,1569551520000,1569551580000,1569551640000,1569551700000,1569551760000,1569551820000,1569551880000,1569551940000,1569552000000,1569552060000,1569552120000,1569552180000,1569552240000,1569552300000,1569552360000,1569552420000,1569552480000,1569552540000,1569552600000,1569552660000,1569552720000,1569552780000,1569552840000,1569552900000,1569552960000,1569553020000,1569553080000,1569553140000,1569553200000,1569553260000,1569553320000,1569553380000,1569553440000,1569553500000,1569553560000,1569553620000,1569553680000,1569553740000,1569553800000,1569553860000,1569553920000,1569553980000,1569554040000,1569554100000,1569554160000,1569554220000,1569554280000,1569554340000,1569554400000,1569554460000,1569554520000,1569554580000,1569554640000,1569554700000,1569554760000,1569554820000,1569554880000,1569554940000,1569555000000,1569555060000,1569555120000,1569555180000,1569555240000,1569555300000,1569555360000,1569555420000,1569555480000,1569555540000,1569555600000,1569555660000,1569555720000,1569555780000,1569555840000,1569555900000,1569555960000,1569556020000,1569556080000,1569556140000,1569556200000,1569556260000,1569556320000,1569556380000,1569556440000,1569556500000,1569556560000,1569556620000,1569556680000,1569556740000,1569556800000,1569556860000,1569556920000,1569556980000,1569557040000,1569557100000,1569557160000,1569557220000,1569557280000,1569557340000,1569557400000,1569557460000,1569557520000,1569557580000,1569557640000,1569557700000,1569557760000,1569557820000,1569557880000,1569557940000,1569558000000,1569558060000,1569558120000,1569558180000,1569558240000,1569558300000,1569558360000,1569558420000,1569558480000,1569558540000,1569558600000,1569558660000,1569558720000,1569558780000,1569558840000,1569558900000,1569558960000,1569559020000,1569559080000,1569559140000,1569559200000,1569559260000,1569559320000,1569559380000,1569559440000,1569559500000,1569559560000,1569559620000,1569559680000,1569559740000,1569559800000,1569559860000,1569559920000,1569559980000,1569560040000,1569560100000,1569560160000,1569560220000,1569560280000,1569560340000,1569560400000,1569560460000,1569560520000,1569560580000,1569560640000,1569560700000,1569560760000,1569560820000,1569560880000,1569560940000,1569561000000,1569561060000,1569561120000,1569561180000,1569561240000,1569561300000,1569561360000,1569561420000,1569561480000,1569561540000,1569561600000,1569561660000,1569561720000,1569561780000,1569561840000,1569561900000,1569561960000,1569562020000,1569562080000,1569562140000,1569562200000,1569562260000,1569562320000,1569562380000,1569562440000,1569562500000,1569562560000,1569562620000,1569562680000,1569562740000,1569562800000,1569562860000,1569562920000,1569562980000,1569563040000,1569563100000,1569563160000,1569563220000,1569563280000,1569563340000,1569563400000,1569563460000,1569563520000,1569563580000,1569563640000,1569563700000,1569563760000,1569563820000,1569563880000,1569563940000,1569564000000,1569564060000,1569564120000,1569564180000,1569564240000,1569564300000,1569564360000,1569564420000,1569564480000,1569564540000,1569564600000,1569564660000,1569564720000,1569564780000,1569564840000,1569564900000,1569564960000,1569565020000,1569565080000,1569565140000,1569565200000,1569565260000,1569565320000,1569565380000,1569565440000,1569565500000,1569565560000,1569565620000,1569565680000,1569565740000,1569565800000,1569565860000,1569565920000,1569565980000,1569566040000,1569566100000,1569566160000,1569566220000,1569566280000,1569566340000,1569566400000,1569566460000,1569566520000,1569566580000,1569566640000,1569566700000,1569566760000,1569566820000,1569566880000,1569566940000,1569567000000,1569567060000,1569567120000,1569567180000,1569567240000,1569567300000,1569567360000,1569567420000,1569567480000,1569567540000,1569567600000,1569567660000,1569567720000,1569567780000,1569567840000,1569567900000,1569567960000,1569568020000,1569568080000,1569568140000,1569568200000,1569568260000,1569568320000,1569568380000,1569568440000,1569568500000,1569568560000,1569568620000,1569568680000,1569568740000,1569568800000,1569568860000,1569568920000,1569568980000,1569569040000,1569569100000,1569569160000,1569569220000,1569569280000,1569569340000,1569569400000,1569569460000,1569569520000,1569569580000,1569569640000,1569569700000,1569569760000,1569569820000,1569569880000,1569569940000,1569570000000,1569570060000,1569570120000,1569570180000,1569570240000,1569570300000,1569570360000,1569570420000,1569570480000,1569570540000,1569570600000,1569570660000,1569570720000,1569570780000,1569570840000,1569570900000,1569570960000,1569571020000,1569571080000,1569571140000,1569571200000,1569571260000,1569571320000,1569571380000,1569571440000,1569571500000,1569571560000,1569571620000,1569571680000,1569571740000,1569571800000,1569571860000,1569571920000,1569571980000,1569572040000,1569572100000,1569572160000,1569572220000,1569572280000,1569572340000,1569572400000,1569572460000,1569572520000,1569572580000,1569572640000,1569572700000,1569572760000,1569572820000,1569572880000,1569572940000,1569573000000,1569573060000,1569573120000,1569573180000,1569573240000,1569573300000,1569573360000,1569573420000,1569573480000,1569573540000,1569573600000,1569573660000,1569573720000,1569573780000,1569573840000,1569573900000,1569573960000,1569574020000,1569574080000,1569574140000,1569574200000,1569574260000,1569574320000,1569574380000,1569574440000,1569574500000,1569574560000,1569574620000,1569574680000,1569574740000,1569574800000,1569574860000,1569574920000,1569574980000,1569575040000,1569575100000,1569575160000,1569575220000,1569575280000,1569575340000,1569575400000,1569575460000,1569575520000,1569575580000,1569575640000,1569575700000,1569575760000,1569575820000,1569575880000,1569575940000,1569576000000,1569576060000,1569576120000,1569576180000,1569576240000,1569576300000,1569576360000,1569576420000,1569576480000,1569576540000,1569576600000,1569576660000,1569576720000,1569576780000,1569576840000,1569576900000,1569576960000,1569577020000,1569577080000,1569577140000,1569577200000,1569577260000,1569577320000,1569577380000,1569577440000,1569577500000,1569577560000,1569577620000,1569577680000,1569577740000,1569577800000,1569577860000,1569577920000,1569577980000,1569578040000,1569578100000,1569578160000,1569578220000,1569578280000,1569578340000,1569578400000,1569578460000,1569578520000,1569578580000,1569578640000,1569578700000,1569578760000,1569578820000,1569578880000,1569578940000,1569579000000,1569579060000,1569579120000,1569579180000,1569579240000,1569579300000,1569579360000,1569579420000,1569579480000,1569579540000,1569579600000,1569579660000,1569579720000,1569579780000,1569579840000,1569579900000,1569579960000,1569580020000,1569580080000,1569580140000,1569580200000,1569580260000,1569580320000,1569580380000,1569580440000,1569580500000,1569580560000,1569580620000,1569580680000,1569580740000,1569580800000,1569580860000,1569580920000,1569580980000,1569581040000,1569581100000,1569581160000,1569581220000,1569581280000,1569581340000,1569581400000,1569581460000,1569581520000,1569581580000,1569581640000,1569581700000,1569581760000,1569581820000,1569581880000,1569581940000,1569582000000,1569582060000,1569582120000,1569582180000,1569582240000,1569582300000,1569582360000,1569582420000,1569582480000,1569582540000,1569582600000,1569582660000,1569582720000,1569582780000,1569582840000,1569582900000,1569582960000,1569583020000,1569583080000,1569583140000,1569583200000,1569583260000,1569583320000,1569583380000,1569583440000,1569583500000,1569583560000,1569583620000,1569583680000,1569583740000,1569583800000,1569583860000,1569583920000,1569583980000,1569584040000,1569584100000,1569584160000,1569584220000,1569584280000,1569584340000,1569584400000,1569584460000,1569584520000,1569584580000,1569584640000,1569584700000,1569584760000,1569584820000,1569584880000,1569584940000,1569585000000,1569585060000,1569585120000,1569585180000,1569585240000,1569585300000,1569585360000,1569585420000,1569585480000,1569585540000,1569585600000,1569585660000,1569585720000,1569585780000,1569585840000,1569585900000,1569585960000,1569586020000,1569586080000,1569586140000,1569586200000,1569586260000,1569586320000,1569586380000,1569586440000,1569586500000,1569586560000,1569586620000,1569586680000,1569586740000,1569586800000,1569586860000,1569586920000,1569586980000,1569587040000,1569587100000,1569587160000,1569587220000,1569587280000,1569587340000,1569587400000,1569587460000,1569587520000,1569587580000,1569587640000,1569587700000,1569587760000,1569587820000,1569587880000,1569587940000,1569588000000,1569588060000,1569588120000,1569588180000,1569588240000,1569588300000,1569588360000,1569588420000,1569588480000,1569588540000,1569588600000,1569588660000,1569588720000,1569588780000,1569588840000,1569588900000,1569588960000,1569589020000,1569589080000,1569589140000,1569589200000,1569589260000,1569589320000,1569589380000,1569589440000,1569589500000,1569589560000,1569589620000,1569589680000,1569589740000,1569589800000,1569589860000,1569589920000,1569589980000,1569590040000,1569590100000,1569590160000,1569590220000,1569590280000,1569590340000,1569590400000,1569590460000,1569590520000,1569590580000,1569590640000,1569590700000,1569590760000,1569590820000,1569590880000,1569590940000,1569591000000,1569591060000,1569591120000,1569591180000,1569591240000,1569591300000,1569591360000,1569591420000,1569591480000,1569591540000,1569591600000,1569591660000,1569591720000,1569591780000,1569591840000,1569591900000,1569591960000,1569592020000,1569592080000,1569592140000,1569592200000,1569592260000,1569592320000,1569592380000,1569592440000,1569592500000,1569592560000,1569592620000,1569592680000,1569592740000,1569592800000,1569592860000,1569592920000,1569592980000,1569593040000,1569593100000,1569593160000,1569593220000,1569593280000,1569593340000,1569593400000,1569593460000,1569593520000,1569593580000,1569593640000,1569593700000,1569593760000,1569593820000,1569593880000,1569593940000,1569594000000,1569594060000,1569594120000,1569594180000,1569594240000,1569594300000,1569594360000,1569594420000,1569594480000,1569594540000,1569594600000,1569594660000,1569594720000,1569594780000,1569594840000,1569594900000,1569594960000,1569595020000,1569595080000,1569595140000,1569595200000,1569595260000,1569595320000,1569595380000,1569595440000,1569595500000,1569595560000,1569595620000,1569595680000,1569595740000,1569595800000,1569595860000,1569595920000,1569595980000,1569596040000,1569596100000,1569596160000,1569596220000,1569596280000,1569596340000,1569596400000,1569596460000,1569596520000,1569596580000,1569596640000,1569596700000,1569596760000,1569596820000,1569596880000,1569596940000,1569597000000,1569597060000,1569597120000,1569597180000,1569597240000,1569597300000,1569597360000,1569597420000,1569597480000,1569597540000,1569597600000,1569597660000,1569597720000,1569597780000,1569597840000,1569597900000,1569597960000,1569598020000,1569598080000,1569598140000,1569598200000,1569598260000,1569598320000,1569598380000,1569598440000,1569598500000,1569598560000,1569598620000,1569598680000,1569598740000,1569598800000,1569598860000,1569598920000,1569598980000,1569599040000,1569599100000,1569599160000,1569599220000,1569599280000,1569599340000,1569599400000,1569599460000,1569599520000,1569599580000,1569599640000,1569599700000,1569599760000,1569599820000,1569599880000,1569599940000,1569600000000,1569600060000,1569600120000,1569600180000,1569600240000,1569600300000,1569600360000,1569600420000,1569600480000,1569600540000,1569600600000,1569600660000,1569600720000,1569600780000,1569600840000,1569600900000,1569600960000,1569601020000,1569601080000,1569601140000,1569601200000,1569601260000,1569601320000,1569601380000,1569601440000,1569601500000,1569601560000,1569601620000,1569601680000,1569601740000,1569601800000,1569601860000,1569601920000,1569601980000,1569602040000,1569602100000,1569602160000,1569602220000,1569602280000,1569602340000,1569602400000,1569602460000,1569602520000,1569602580000,1569602640000,1569602700000,1569602760000,1569602820000,1569602880000,1569602940000,1569603000000,1569603060000,1569603120000,1569603180000,1569603240000,1569603300000,1569603360000,1569603420000,1569603480000,1569603540000,1569603600000,1569603660000,1569603720000,1569603780000,1569603840000,1569603900000,1569603960000,1569604020000,1569604080000,1569604140000,1569604200000,1569604260000,1569604320000,1569604380000,1569604440000,1569604500000,1569604560000,1569604620000,1569604680000,1569604740000,1569604800000,1569604860000,1569604920000,1569604980000,1569605040000,1569605100000,1569605160000,1569605220000,1569605280000,1569605340000,1569605400000,1569605460000,1569605520000,1569605580000,1569605640000,1569605700000,1569605760000,1569605820000,1569605880000,1569605940000,1569606000000,1569606060000,1569606120000,1569606180000,1569606240000,1569606300000,1569606360000,1569606420000,1569606480000,1569606540000,1569606600000,1569606660000,1569606720000,1569606780000,1569606840000,1569606900000,1569606960000,1569607020000,1569607080000,1569607140000,1569607200000,1569607260000,1569607320000,1569607380000,1569607440000,1569607500000,1569607560000,1569607620000,1569607680000,1569607740000,1569607800000,1569607860000,1569607920000,1569607980000,1569608040000,1569608100000,1569608160000,1569608220000,1569608280000,1569608340000,1569608400000,1569608460000,1569608520000,1569608580000,1569608640000,1569608700000,1569608760000,1569608820000,1569608880000,1569608940000,1569609000000,1569609060000,1569609120000,1569609180000,1569609240000,1569609300000,1569609360000,1569609420000,1569609480000,1569609540000,1569609600000,1569609660000,1569609720000,1569609780000,1569609840000,1569609900000,1569609960000,1569610020000,1569610080000,1569610140000,1569610200000,1569610260000,1569610320000,1569610380000,1569610440000,1569610500000,1569610560000,1569610620000,1569610680000,1569610740000,1569610800000,1569610860000,1569610920000,1569610980000,1569611040000,1569611100000,1569611160000,1569611220000,1569611280000,1569611340000,1569611400000,1569611460000,1569611520000,1569611580000,1569611640000,1569611700000,1569611760000,1569611820000,1569611880000,1569611940000,1569612000000,1569612060000,1569612120000,1569612180000,1569612240000,1569612300000,1569612360000,1569612420000,1569612480000,1569612540000,1569612600000,1569612660000,1569612720000,1569612780000,1569612840000,1569612900000,1569612960000,1569613020000,1569613080000,1569613140000,1569613200000,1569613260000,1569613320000,1569613380000,1569613440000,1569613500000,1569613560000,1569613620000,1569613680000,1569613740000,1569613800000,1569613860000,1569613920000,1569613980000,1569614040000,1569614100000,1569614160000,1569614220000,1569614280000,1569614340000,1569614400000,1569614460000,1569614520000,1569614580000,1569614640000,1569614700000,1569614760000,1569614820000,1569614880000,1569614940000,1569615000000,1569615060000,1569615120000,1569615180000,1569615240000,1569615300000,1569615360000,1569615420000,1569615480000,1569615540000,1569615600000,1569615660000,1569615720000,1569615780000,1569615840000,1569615900000,1569615960000,1569616020000,1569616080000,1569616140000,1569616200000,1569616260000,1569616320000,1569616380000,1569616440000,1569616500000,1569616560000,1569616620000,1569616680000,1569616740000,1569616800000,1569616860000,1569616920000,1569616980000,1569617040000,1569617100000,1569617160000,1569617220000,1569617280000,1569617340000,1569617400000,1569617460000,1569617520000,1569617580000,1569617640000,1569617700000,1569617760000,1569617820000,1569617880000,1569617940000,1569618000000,1569618060000,1569618120000,1569618180000,1569618240000,1569618300000,1569618360000,1569618420000,1569618480000,1569618540000,1569618600000,1569618660000,1569618720000,1569618780000,1569618840000,1569618900000,1569618960000,1569619020000,1569619080000,1569619140000,1569619200000,1569619260000,1569619320000,1569619380000,1569619440000,1569619500000,1569619560000,1569619620000,1569619680000,1569619740000,1569619800000,1569619860000,1569619920000,1569619980000,1569620040000,1569620100000,1569620160000,1569620220000,1569620280000,1569620340000,1569620400000,1569620460000,1569620520000,1569620580000,1569620640000,1569620700000,1569620760000,1569620820000,1569620880000,1569620940000,1569621000000,1569621060000,1569621120000,1569621180000,1569621240000,1569621300000,1569621360000,1569621420000,1569621480000,1569621540000,1569621600000,1569621660000,1569621720000,1569621780000,1569621840000,1569621900000,1569621960000,1569622020000,1569622080000,1569622140000,1569622200000,1569622260000,1569622320000,1569622380000,1569622440000,1569622500000,1569622560000,1569622620000,1569622680000,1569622740000,1569622800000,1569622860000,1569622920000,1569622980000,1569623040000,1569623100000,1569623160000,1569623220000,1569623280000,1569623340000,1569623400000,1569623460000,1569623520000,1569623580000,1569623640000,1569623700000,1569623760000,1569623820000,1569623880000,1569623940000,1569624000000,1569624060000,1569624120000,1569624180000,1569624240000,1569624300000,1569624360000,1569624420000,1569624480000,1569624540000,1569624600000,1569624660000,1569624720000,1569624780000,1569624840000,1569624900000,1569624960000,1569625020000,1569625080000,1569625140000,1569625200000,1569625260000,1569625320000,1569625380000,1569625440000,1569625500000,1569625560000,1569625620000,1569625680000,1569625740000,1569625800000,1569625860000,1569625920000,1569625980000,1569626040000,1569626100000,1569626160000,1569626220000,1569626280000,1569626340000,1569626400000,1569626460000,1569626520000,1569626580000,1569626640000,1569626700000,1569626760000,1569626820000,1569626880000,1569626940000,1569627000000,1569627060000,1569627120000,1569627180000,1569627240000,1569627300000,1569627360000,1569627420000,1569627480000,1569627540000,1569627600000,1569627660000,1569627720000,1569627780000,1569627840000,1569627900000,1569627960000,1569628020000,1569628080000,1569628140000,1569628200000,1569628260000,1569628320000,1569628380000,1569628440000,1569628500000,1569628560000,1569628620000,1569628680000,1569628740000,1569628800000,1569628860000,1569628920000,1569628980000,1569629040000,1569629100000,1569629160000,1569629220000,1569629280000,1569629340000,1569629400000,1569629460000,1569629520000,1569629580000,1569629640000,1569629700000,1569629760000,1569629820000,1569629880000,1569629940000,1569630000000,1569630060000,1569630120000,1569630180000,1569630240000,1569630300000,1569630360000,1569630420000,1569630480000,1569630540000,1569630600000,1569630660000,1569630720000,1569630780000,1569630840000,1569630900000,1569630960000,1569631020000,1569631080000,1569631140000,1569631200000,1569631260000,1569631320000,1569631380000,1569631440000,1569631500000,1569631560000,1569631620000,1569631680000,1569631740000,1569631800000,1569631860000,1569631920000,1569631980000,1569632040000,1569632100000,1569632160000,1569632220000,1569632280000,1569632340000,1569632400000,1569632460000,1569632520000,1569632580000,1569632640000,1569632700000,1569632760000,1569632820000,1569632880000,1569632940000,1569633000000,1569633060000,1569633120000,1569633180000,1569633240000,1569633300000,1569633360000,1569633420000,1569633480000,1569633540000,1569633600000,1569633660000,1569633720000,1569633780000,1569633840000,1569633900000,1569633960000,1569634020000,1569634080000,1569634140000,1569634200000,1569634260000,1569634320000,1569634380000,1569634440000,1569634500000,1569634560000,1569634620000,1569634680000,1569634740000,1569634800000,1569634860000,1569634920000,1569634980000,1569635040000,1569635100000,1569635160000,1569635220000,1569635280000,1569635340000,1569635400000,1569635460000,1569635520000,1569635580000,1569635640000,1569635700000,1569635760000,1569635820000,1569635880000,1569635940000,1569636000000,1569636060000,1569636120000,1569636180000,1569636240000,1569636300000,1569636360000,1569636420000,1569636480000,1569636540000,1569636600000,1569636660000,1569636720000,1569636780000,1569636840000,1569636900000,1569636960000,1569637020000,1569637080000,1569637140000,1569637200000,1569637260000,1569637320000,1569637380000,1569637440000,1569637500000,1569637560000,1569637620000,1569637680000,1569637740000,1569637800000,1569637860000,1569637920000,1569637980000,1569638040000,1569638100000,1569638160000,1569638220000,1569638280000,1569638340000,1569638400000,1569638460000,1569638520000,1569638580000,1569638640000,1569638700000,1569638760000,1569638820000,1569638880000,1569638940000,1569639000000,1569639060000,1569639120000,1569639180000,1569639240000,1569639300000,1569639360000,1569639420000,1569639480000,1569639540000,1569639600000,1569639660000,1569639720000,1569639780000,1569639840000,1569639900000,1569639960000,1569640020000,1569640080000,1569640140000,1569640200000,1569640260000,1569640320000,1569640380000,1569640440000,1569640500000,1569640560000,1569640620000,1569640680000,1569640740000,1569640800000,1569640860000,1569640920000,1569640980000,1569641040000,1569641100000,1569641160000,1569641220000,1569641280000,1569641340000,1569641400000,1569641460000,1569641520000,1569641580000,1569641640000,1569641700000,1569641760000,1569641820000,1569641880000,1569641940000,1569642000000,1569642060000,1569642120000,1569642180000,1569642240000,1569642300000,1569642360000,1569642420000,1569642480000,1569642540000,1569642600000,1569642660000,1569642720000,1569642780000,1569642840000,1569642900000,1569642960000,1569643020000,1569643080000,1569643140000,1569643200000,1569643260000,1569643320000,1569643380000,1569643440000,1569643500000,1569643560000,1569643620000,1569643680000,1569643740000,1569643800000,1569643860000,1569643920000,1569643980000,1569644040000,1569644100000,1569644160000,1569644220000,1569644280000,1569644340000,1569644400000,1569644460000,1569644520000,1569644580000,1569644640000,1569644700000,1569644760000,1569644820000,1569644880000,1569644940000,1569645000000,1569645060000,1569645120000,1569645180000,1569645240000,1569645300000,1569645360000,1569645420000,1569645480000,1569645540000,1569645600000,1569645660000,1569645720000,1569645780000,1569645840000,1569645900000,1569645960000,1569646020000,1569646080000,1569646140000,1569646200000,1569646260000,1569646320000,1569646380000,1569646440000,1569646500000,1569646560000,1569646620000,1569646680000,1569646740000,1569646800000,1569646860000,1569646920000,1569646980000,1569647040000,1569647100000,1569647160000,1569647220000,1569647280000,1569647340000,1569647400000,1569647460000,1569647520000,1569647580000,1569647640000,1569647700000,1569647760000,1569647820000,1569647880000,1569647940000,1569648000000,1569648060000,1569648120000,1569648180000,1569648240000,1569648300000,1569648360000,1569648420000,1569648480000,1569648540000,1569648600000,1569648660000,1569648720000,1569648780000,1569648840000,1569648900000,1569648960000,1569649020000,1569649080000,1569649140000,1569649200000,1569649260000,1569649320000,1569649380000,1569649440000,1569649500000,1569649560000,1569649620000,1569649680000,1569649740000,1569649800000,1569649860000,1569649920000,1569649980000,1569650040000,1569650100000,1569650160000,1569650220000,1569650280000,1569650340000,1569650400000,1569650460000,1569650520000,1569650580000,1569650640000,1569650700000,1569650760000,1569650820000,1569650880000,1569650940000,1569651000000,1569651060000,1569651120000,1569651180000,1569651240000,1569651300000,1569651360000,1569651420000,1569651480000,1569651540000,1569651600000,1569651660000,1569651720000,1569651780000,1569651840000,1569651900000,1569651960000,1569652020000,1569652080000,1569652140000,1569652200000,1569652260000,1569652320000,1569652380000,1569652440000,1569652500000,1569652560000,1569652620000,1569652680000,1569652740000,1569652800000,1569652860000,1569652920000,1569652980000,1569653040000,1569653100000,1569653160000,1569653220000,1569653280000,1569653340000,1569653400000,1569653460000,1569653520000,1569653580000,1569653640000,1569653700000,1569653760000,1569653820000,1569653880000,1569653940000,1569654000000,1569654060000,1569654120000,1569654180000,1569654240000,1569654300000,1569654360000,1569654420000,1569654480000,1569654540000,1569654600000,1569654660000,1569654720000,1569654780000,1569654840000,1569654900000,1569654960000,1569655020000,1569655080000,1569655140000,1569655200000,1569655260000,1569655320000,1569655380000,1569655440000,1569655500000,1569655560000,1569655620000,1569655680000,1569655740000,1569655800000,1569655860000,1569655920000,1569655980000,1569656040000,1569656100000,1569656160000,1569656220000,1569656280000,1569656340000,1569656400000,1569656460000,1569656520000,1569656580000,1569656640000,1569656700000,1569656760000,1569656820000,1569656880000,1569656940000,1569657000000,1569657060000,1569657120000,1569657180000,1569657240000,1569657300000,1569657360000,1569657420000,1569657480000,1569657540000,1569657600000,1569657660000,1569657720000,1569657780000,1569657840000,1569657900000,1569657960000,1569658020000,1569658080000,1569658140000,1569658200000,1569658260000,1569658320000,1569658380000,1569658440000,1569658500000,1569658560000,1569658620000,1569658680000,1569658740000,1569658800000,1569658860000,1569658920000,1569658980000,1569659040000,1569659100000,1569659160000,1569659220000,1569659280000,1569659340000,1569659400000,1569659460000,1569659520000,1569659580000,1569659640000,1569659700000,1569659760000,1569659820000,1569659880000,1569659940000,1569660000000,1569660060000,1569660120000,1569660180000,1569660240000,1569660300000,1569660360000,1569660420000,1569660480000,1569660540000,1569660600000,1569660660000,1569660720000,1569660780000,1569660840000,1569660900000,1569660960000,1569661020000,1569661080000,1569661140000,1569661200000,1569661260000,1569661320000,1569661380000,1569661440000,1569661500000,1569661560000,1569661620000,1569661680000,1569661740000,1569661800000,1569661860000,1569661920000,1569661980000,1569662040000,1569662100000,1569662160000,1569662220000,1569662280000,1569662340000,1569662400000,1569662460000,1569662520000,1569662580000,1569662640000,1569662700000,1569662760000,1569662820000,1569662880000,1569662940000,1569663000000,1569663060000,1569663120000,1569663180000,1569663240000,1569663300000,1569663360000,1569663420000,1569663480000,1569663540000,1569663600000,1569663660000,1569663720000,1569663780000,1569663840000,1569663900000,1569663960000,1569664020000,1569664080000,1569664140000,1569664200000,1569664260000,1569664320000,1569664380000,1569664440000,1569664500000,1569664560000,1569664620000,1569664680000,1569664740000,1569664800000,1569664860000,1569664920000,1569664980000,1569665040000,1569665100000,1569665160000,1569665220000,1569665280000,1569665340000,1569665400000,1569665460000,1569665520000,1569665580000,1569665640000,1569665700000,1569665760000,1569665820000,1569665880000,1569665940000,1569666000000,1569666060000,1569666120000,1569666180000,1569666240000,1569666300000,1569666360000,1569666420000,1569666480000,1569666540000,1569666600000,1569666660000,1569666720000,1569666780000,1569666840000,1569666900000,1569666960000,1569667020000,1569667080000,1569667140000,1569667200000,1569667260000,1569667320000,1569667380000,1569667440000,1569667500000,1569667560000,1569667620000,1569667680000,1569667740000,1569667800000,1569667860000,1569667920000,1569667980000,1569668040000,1569668100000,1569668160000,1569668220000,1569668280000,1569668340000,1569668400000,1569668460000,1569668520000,1569668580000,1569668640000,1569668700000,1569668760000,1569668820000,1569668880000,1569668940000,1569669000000,1569669060000,1569669120000,1569669180000,1569669240000,1569669300000,1569669360000,1569669420000,1569669480000,1569669540000,1569669600000,1569669660000,1569669720000,1569669780000,1569669840000,1569669900000,1569669960000,1569670020000,1569670080000,1569670140000,1569670200000,1569670260000,1569670320000,1569670380000,1569670440000,1569670500000,1569670560000,1569670620000,1569670680000,1569670740000,1569670800000,1569670860000,1569670920000,1569670980000,1569671040000,1569671100000,1569671160000,1569671220000,1569671280000,1569671340000,1569671400000,1569671460000,1569671520000,1569671580000,1569671640000,1569671700000,1569671760000,1569671820000,1569671880000,1569671940000,1569672000000,1569672060000,1569672120000,1569672180000,1569672240000,1569672300000,1569672360000,1569672420000,1569672480000,1569672540000,1569672600000,1569672660000,1569672720000,1569672780000,1569672840000,1569672900000,1569672960000,1569673020000,1569673080000,1569673140000,1569673200000,1569673260000,1569673320000,1569673380000,1569673440000,1569673500000,1569673560000,1569673620000,1569673680000,1569673740000,1569673800000,1569673860000,1569673920000,1569673980000,1569674040000,1569674100000,1569674160000,1569674220000,1569674280000,1569674340000,1569674400000,1569674460000,1569674520000,1569674580000,1569674640000,1569674700000,1569674760000,1569674820000,1569674880000,1569674940000,1569675000000,1569675060000,1569675120000,1569675180000,1569675240000,1569675300000,1569675360000,1569675420000,1569675480000,1569675540000,1569675600000,1569675660000,1569675720000,1569675780000,1569675840000,1569675900000,1569675960000,1569676020000,1569676080000,1569676140000,1569676200000,1569676260000,1569676320000,1569676380000,1569676440000,1569676500000,1569676560000,1569676620000,1569676680000,1569676740000,1569676800000,1569676860000,1569676920000,1569676980000,1569677040000,1569677100000,1569677160000,1569677220000,1569677280000,1569677340000,1569677400000,1569677460000,1569677520000,1569677580000,1569677640000,1569677700000,1569677760000,1569677820000,1569677880000,1569677940000,1569678000000,1569678060000,1569678120000,1569678180000,1569678240000,1569678300000,1569678360000,1569678420000,1569678480000,1569678540000,1569678600000,1569678660000,1569678720000,1569678780000,1569678840000,1569678900000,1569678960000,1569679020000,1569679080000,1569679140000,1569679200000,1569679260000,1569679320000,1569679380000,1569679440000,1569679500000,1569679560000,1569679620000,1569679680000,1569679740000,1569679800000,1569679860000,1569679920000,1569679980000,1569680040000,1569680100000,1569680160000,1569680220000,1569680280000,1569680340000,1569680400000,1569680460000,1569680520000,1569680580000,1569680640000,1569680700000,1569680760000,1569680820000,1569680880000,1569680940000,1569681000000,1569681060000,1569681120000,1569681180000,1569681240000,1569681300000,1569681360000,1569681420000,1569681480000,1569681540000,1569681600000,1569681660000,1569681720000,1569681780000,1569681840000,1569681900000,1569681960000,1569682020000,1569682080000,1569682140000,1569682200000,1569682260000,1569682320000,1569682380000,1569682440000,1569682500000,1569682560000,1569682620000,1569682680000,1569682740000,1569682800000,1569682860000,1569682920000,1569682980000,1569683040000,1569683100000,1569683160000,1569683220000,1569683280000,1569683340000,1569683400000,1569683460000,1569683520000,1569683580000,1569683640000,1569683700000,1569683760000,1569683820000,1569683880000,1569683940000,1569684000000,1569684060000,1569684120000,1569684180000,1569684240000,1569684300000,1569684360000,1569684420000,1569684480000,1569684540000,1569684600000,1569684660000,1569684720000,1569684780000,1569684840000,1569684900000,1569684960000,1569685020000,1569685080000,1569685140000,1569685200000,1569685260000,1569685320000,1569685380000,1569685440000,1569685500000,1569685560000,1569685620000,1569685680000,1569685740000,1569685800000,1569685860000,1569685920000,1569685980000,1569686040000,1569686100000,1569686160000,1569686220000,1569686280000,1569686340000,1569686400000,1569686460000,1569686520000,1569686580000,1569686640000,1569686700000,1569686760000,1569686820000,1569686880000,1569686940000,1569687000000,1569687060000,1569687120000,1569687180000,1569687240000,1569687300000,1569687360000,1569687420000,1569687480000,1569687540000,1569687600000,1569687660000,1569687720000,1569687780000,1569687840000,1569687900000,1569687960000,1569688020000,1569688080000,1569688140000,1569688200000,1569688260000,1569688320000,1569688380000,1569688440000,1569688500000,1569688560000,1569688620000,1569688680000,1569688740000,1569688800000,1569688860000,1569688920000,1569688980000,1569689040000,1569689100000,1569689160000,1569689220000,1569689280000,1569689340000,1569689400000,1569689460000,1569689520000,1569689580000,1569689640000,1569689700000,1569689760000,1569689820000,1569689880000,1569689940000,1569690000000,1569690060000,1569690120000,1569690180000,1569690240000,1569690300000,1569690360000,1569690420000,1569690480000,1569690540000,1569690600000,1569690660000,1569690720000,1569690780000,1569690840000,1569690900000,1569690960000,1569691020000,1569691080000,1569691140000,1569691200000,1569691260000,1569691320000,1569691380000,1569691440000,1569691500000,1569691560000,1569691620000,1569691680000,1569691740000,1569691800000,1569691860000,1569691920000,1569691980000,1569692040000,1569692100000,1569692160000,1569692220000,1569692280000,1569692340000,1569692400000,1569692460000,1569692520000,1569692580000,1569692640000,1569692700000,1569692760000,1569692820000,1569692880000,1569692940000,1569693000000,1569693060000,1569693120000,1569693180000,1569693240000,1569693300000,1569693360000,1569693420000,1569693480000,1569693540000,1569693600000,1569693660000,1569693720000,1569693780000,1569693840000,1569693900000,1569693960000,1569694020000,1569694080000,1569694140000,1569694200000,1569694260000,1569694320000,1569694380000,1569694440000,1569694500000,1569694560000,1569694620000,1569694680000,1569694740000,1569694800000,1569694860000,1569694920000,1569694980000,1569695040000,1569695100000,1569695160000,1569695220000,1569695280000,1569695340000,1569695400000,1569695460000,1569695520000,1569695580000,1569695640000,1569695700000,1569695760000,1569695820000,1569695880000,1569695940000,1569696000000,1569696060000,1569696120000,1569696180000,1569696240000,1569696300000,1569696360000,1569696420000,1569696480000,1569696540000,1569696600000,1569696660000,1569696720000,1569696780000,1569696840000,1569696900000,1569696960000,1569697020000,1569697080000,1569697140000,1569697200000,1569697260000,1569697320000,1569697380000,1569697440000,1569697500000,1569697560000,1569697620000,1569697680000,1569697740000,1569697800000,1569697860000,1569697920000,1569697980000,1569698040000,1569698100000,1569698160000,1569698220000,1569698280000,1569698340000,1569698400000,1569698460000,1569698520000,1569698580000,1569698640000,1569698700000,1569698760000,1569698820000,1569698880000,1569698940000,1569699000000,1569699060000,1569699120000,1569699180000,1569699240000,1569699300000,1569699360000,1569699420000,1569699480000,1569699540000,1569699600000,1569699660000,1569699720000,1569699780000,1569699840000,1569699900000,1569699960000,1569700020000,1569700080000,1569700140000,1569700200000,1569700260000,1569700320000,1569700380000,1569700440000,1569700500000,1569700560000,1569700620000,1569700680000,1569700740000,1569700800000,1569700860000,1569700920000,1569700980000,1569701040000,1569701100000,1569701160000,1569701220000,1569701280000,1569701340000,1569701400000,1569701460000,1569701520000,1569701580000,1569701640000,1569701700000,1569701760000,1569701820000,1569701880000,1569701940000,1569702000000,1569702060000,1569702120000,1569702180000,1569702240000,1569702300000,1569702360000,1569702420000,1569702480000,1569702540000,1569702600000,1569702660000,1569702720000,1569702780000,1569702840000,1569702900000,1569702960000,1569703020000,1569703080000,1569703140000,1569703200000,1569703260000,1569703320000,1569703380000,1569703440000,1569703500000,1569703560000,1569703620000,1569703680000,1569703740000,1569703800000,1569703860000,1569703920000,1569703980000,1569704040000,1569704100000,1569704160000,1569704220000,1569704280000,1569704340000,1569704400000,1569704460000,1569704520000,1569704580000,1569704640000,1569704700000,1569704760000,1569704820000,1569704880000,1569704940000,1569705000000,1569705060000,1569705120000,1569705180000,1569705240000,1569705300000,1569705360000,1569705420000,1569705480000,1569705540000,1569705600000,1569705660000,1569705720000,1569705780000,1569705840000,1569705900000,1569705960000,1569706020000,1569706080000,1569706140000,1569706200000,1569706260000,1569706320000,1569706380000,1569706440000,1569706500000,1569706560000,1569706620000,1569706680000,1569706740000,1569706800000,1569706860000,1569706920000,1569706980000,1569707040000,1569707100000,1569707160000,1569707220000,1569707280000,1569707340000,1569707400000,1569707460000,1569707520000,1569707580000,1569707640000,1569707700000,1569707760000,1569707820000,1569707880000,1569707940000,1569708000000,1569708060000,1569708120000,1569708180000,1569708240000,1569708300000,1569708360000,1569708420000,1569708480000,1569708540000,1569708600000,1569708660000,1569708720000,1569708780000,1569708840000,1569708900000,1569708960000,1569709020000,1569709080000,1569709140000,1569709200000,1569709260000,1569709320000,1569709380000,1569709440000,1569709500000,1569709560000,1569709620000,1569709680000,1569709740000,1569709800000,1569709860000,1569709920000,1569709980000,1569710040000,1569710100000,1569710160000,1569710220000,1569710280000,1569710340000,1569710400000,1569710460000,1569710520000,1569710580000,1569710640000,1569710700000,1569710760000,1569710820000,1569710880000,1569710940000,1569711000000,1569711060000,1569711120000,1569711180000,1569711240000,1569711300000,1569711360000,1569711420000,1569711480000,1569711540000,1569711600000,1569711660000,1569711720000,1569711780000,1569711840000,1569711900000,1569711960000,1569712020000,1569712080000,1569712140000,1569712200000,1569712260000,1569712320000,1569712380000,1569712440000,1569712500000,1569712560000,1569712620000,1569712680000,1569712740000,1569712800000,1569712860000,1569712920000,1569712980000,1569713040000,1569713100000,1569713160000,1569713220000,1569713280000,1569713340000,1569713400000,1569713460000,1569713520000,1569713580000,1569713640000,1569713700000,1569713760000,1569713820000,1569713880000,1569713940000,1569714000000,1569714060000,1569714120000,1569714180000,1569714240000,1569714300000,1569714360000,1569714420000,1569714480000,1569714540000,1569714600000,1569714660000,1569714720000,1569714780000,1569714840000,1569714900000,1569714960000,1569715020000,1569715080000,1569715140000,1569715200000,1569715260000,1569715320000,1569715380000,1569715440000,1569715500000,1569715560000,1569715620000,1569715680000,1569715740000,1569715800000,1569715860000,1569715920000,1569715980000,1569716040000,1569716100000,1569716160000,1569716220000,1569716280000,1569716340000,1569716400000,1569716460000,1569716520000,1569716580000,1569716640000,1569716700000,1569716760000,1569716820000,1569716880000,1569716940000,1569717000000,1569717060000,1569717120000,1569717180000,1569717240000,1569717300000,1569717360000,1569717420000,1569717480000,1569717540000,1569717600000,1569717660000,1569717720000,1569717780000,1569717840000,1569717900000,1569717960000,1569718020000,1569718080000,1569718140000,1569718200000,1569718260000,1569718320000,1569718380000,1569718440000,1569718500000,1569718560000,1569718620000,1569718680000,1569718740000,1569718800000,1569718860000,1569718920000,1569718980000,1569719040000,1569719100000,1569719160000,1569719220000,1569719280000,1569719340000,1569719400000,1569719460000,1569719520000,1569719580000,1569719640000,1569719700000,1569719760000,1569719820000,1569719880000,1569719940000,1569720000000,1569720060000,1569720120000,1569720180000,1569720240000,1569720300000,1569720360000,1569720420000,1569720480000,1569720540000,1569720600000,1569720660000,1569720720000,1569720780000,1569720840000,1569720900000,1569720960000,1569721020000,1569721080000,1569721140000,1569721200000,1569721260000,1569721320000,1569721380000,1569721440000,1569721500000,1569721560000,1569721620000,1569721680000,1569721740000,1569721800000,1569721860000,1569721920000,1569721980000,1569722040000,1569722100000,1569722160000,1569722220000,1569722280000,1569722340000,1569722400000,1569722460000,1569722520000,1569722580000,1569722640000,1569722700000,1569722760000,1569722820000,1569722880000,1569722940000,1569723000000,1569723060000,1569723120000,1569723180000,1569723240000,1569723300000,1569723360000,1569723420000,1569723480000,1569723540000,1569723600000,1569723660000,1569723720000,1569723780000,1569723840000,1569723900000,1569723960000,1569724020000,1569724080000,1569724140000,1569724200000,1569724260000,1569724320000,1569724380000,1569724440000,1569724500000,1569724560000,1569724620000,1569724680000,1569724740000,1569724800000,1569724860000,1569724920000,1569724980000,1569725040000,1569725100000,1569725160000,1569725220000,1569725280000,1569725340000,1569725400000,1569725460000,1569725520000,1569725580000,1569725640000,1569725700000,1569725760000,1569725820000,1569725880000,1569725940000,1569726000000,1569726060000,1569726120000,1569726180000,1569726240000,1569726300000,1569726360000,1569726420000,1569726480000,1569726540000,1569726600000,1569726660000,1569726720000,1569726780000,1569726840000,1569726900000,1569726960000,1569727020000,1569727080000,1569727140000,1569727200000,1569727260000,1569727320000,1569727380000,1569727440000,1569727500000,1569727560000,1569727620000,1569727680000,1569727740000,1569727800000,1569727860000,1569727920000,1569727980000,1569728040000,1569728100000,1569728160000,1569728220000,1569728280000,1569728340000,1569728400000,1569728460000,1569728520000,1569728580000,1569728640000,1569728700000,1569728760000,1569728820000,1569728880000,1569728940000,1569729000000,1569729060000,1569729120000,1569729180000,1569729240000,1569729300000,1569729360000,1569729420000,1569729480000,1569729540000,1569729600000,1569729660000,1569729720000,1569729780000,1569729840000,1569729900000,1569729960000,1569730020000,1569730080000,1569730140000,1569730200000,1569730260000,1569730320000,1569730380000,1569730440000,1569730500000,1569730560000,1569730620000,1569730680000,1569730740000,1569730800000,1569730860000,1569730920000,1569730980000,1569731040000,1569731100000,1569731160000,1569731220000,1569731280000,1569731340000,1569731400000,1569731460000,1569731520000,1569731580000,1569731640000,1569731700000,1569731760000,1569731820000,1569731880000,1569731940000,1569732000000,1569732060000,1569732120000,1569732180000,1569732240000,1569732300000,1569732360000,1569732420000,1569732480000,1569732540000,1569732600000,1569732660000,1569732720000,1569732780000,1569732840000,1569732900000,1569732960000,1569733020000,1569733080000,1569733140000,1569733200000,1569733260000,1569733320000,1569733380000,1569733440000,1569733500000,1569733560000,1569733620000,1569733680000,1569733740000,1569733800000,1569733860000,1569733920000,1569733980000,1569734040000,1569734100000,1569734160000,1569734220000,1569734280000,1569734340000,1569734400000,1569734460000,1569734520000,1569734580000,1569734640000,1569734700000,1569734760000,1569734820000,1569734880000,1569734940000,1569735000000,1569735060000,1569735120000,1569735180000,1569735240000,1569735300000,1569735360000,1569735420000,1569735480000,1569735540000,1569735600000,1569735660000,1569735720000,1569735780000,1569735840000,1569735900000,1569735960000,1569736020000,1569736080000,1569736140000,1569736200000,1569736260000,1569736320000,1569736380000,1569736440000,1569736500000,1569736560000,1569736620000,1569736680000,1569736740000,1569736800000,1569736860000,1569736920000,1569736980000,1569737040000,1569737100000,1569737160000,1569737220000,1569737280000,1569737340000,1569737400000,1569737460000,1569737520000,1569737580000,1569737640000,1569737700000,1569737760000,1569737820000,1569737880000,1569737940000,1569738000000,1569738060000,1569738120000,1569738180000,1569738240000,1569738300000,1569738360000,1569738420000,1569738480000,1569738540000,1569738600000,1569738660000,1569738720000,1569738780000,1569738840000,1569738900000,1569738960000,1569739020000,1569739080000,1569739140000,1569739200000,1569739260000,1569739320000,1569739380000,1569739440000,1569739500000,1569739560000,1569739620000,1569739680000,1569739740000,1569739800000,1569739860000,1569739920000,1569739980000,1569740040000,1569740100000,1569740160000,1569740220000,1569740280000,1569740340000,1569740400000,1569740460000,1569740520000,1569740580000,1569740640000,1569740700000,1569740760000,1569740820000,1569740880000,1569740940000,1569741000000,1569741060000,1569741120000,1569741180000,1569741240000,1569741300000,1569741360000,1569741420000,1569741480000,1569741540000,1569741600000,1569741660000,1569741720000,1569741780000,1569741840000,1569741900000,1569741960000,1569742020000,1569742080000,1569742140000,1569742200000,1569742260000,1569742320000,1569742380000,1569742440000,1569742500000,1569742560000,1569742620000,1569742680000,1569742740000,1569742800000,1569742860000,1569742920000,1569742980000,1569743040000,1569743100000,1569743160000,1569743220000,1569743280000,1569743340000,1569743400000,1569743460000,1569743520000,1569743580000,1569743640000,1569743700000,1569743760000,1569743820000,1569743880000,1569743940000,1569744000000,1569744060000,1569744120000,1569744180000,1569744240000,1569744300000,1569744360000,1569744420000,1569744480000,1569744540000,1569744600000,1569744660000,1569744720000,1569744780000,1569744840000,1569744900000,1569744960000,1569745020000,1569745080000,1569745140000,1569745200000,1569745260000,1569745320000,1569745380000,1569745440000,1569745500000,1569745560000,1569745620000,1569745680000,1569745740000,1569745800000,1569745860000,1569745920000,1569745980000,1569746040000,1569746100000,1569746160000,1569746220000,1569746280000,1569746340000,1569746400000,1569746460000,1569746520000,1569746580000,1569746640000,1569746700000,1569746760000,1569746820000,1569746880000,1569746940000,1569747000000,1569747060000,1569747120000,1569747180000,1569747240000,1569747300000,1569747360000,1569747420000,1569747480000,1569747540000,1569747600000,1569747660000,1569747720000,1569747780000,1569747840000,1569747900000,1569747960000,1569748020000,1569748080000,1569748140000,1569748200000,1569748260000,1569748320000,1569748380000,1569748440000,1569748500000,1569748560000,1569748620000,1569748680000,1569748740000,1569748800000,1569748860000,1569748920000,1569748980000,1569749040000,1569749100000,1569749160000,1569749220000,1569749280000,1569749340000,1569749400000,1569749460000,1569749520000,1569749580000,1569749640000,1569749700000,1569749760000,1569749820000,1569749880000,1569749940000,1569750000000,1569750060000,1569750120000,1569750180000,1569750240000,1569750300000,1569750360000,1569750420000,1569750480000,1569750540000,1569750600000,1569750660000,1569750720000,1569750780000,1569750840000,1569750900000,1569750960000,1569751020000,1569751080000,1569751140000,1569751200000,1569751260000,1569751320000,1569751380000,1569751440000,1569751500000,1569751560000,1569751620000,1569751680000,1569751740000,1569751800000,1569751860000,1569751920000,1569751980000,1569752040000,1569752100000,1569752160000,1569752220000,1569752280000,1569752340000,1569752400000,1569752460000,1569752520000,1569752580000,1569752640000,1569752700000,1569752760000,1569752820000,1569752880000,1569752940000,1569753000000,1569753060000,1569753120000,1569753180000,1569753240000,1569753300000,1569753360000,1569753420000,1569753480000,1569753540000,1569753600000,1569753660000,1569753720000,1569753780000,1569753840000,1569753900000,1569753960000,1569754020000,1569754080000,1569754140000,1569754200000,1569754260000,1569754320000,1569754380000,1569754440000,1569754500000,1569754560000,1569754620000,1569754680000,1569754740000,1569754800000,1569754860000,1569754920000,1569754980000,1569755040000,1569755100000,1569755160000,1569755220000,1569755280000,1569755340000,1569755400000,1569755460000,1569755520000,1569755580000,1569755640000,1569755700000,1569755760000,1569755820000,1569755880000,1569755940000,1569756000000,1569756060000,1569756120000,1569756180000,1569756240000,1569756300000,1569756360000,1569756420000,1569756480000,1569756540000,1569756600000,1569756660000,1569756720000,1569756780000,1569756840000,1569756900000,1569756960000,1569757020000,1569757080000,1569757140000,1569757200000,1569757260000,1569757320000,1569757380000,1569757440000,1569757500000,1569757560000,1569757620000,1569757680000,1569757740000,1569757800000,1569757860000,1569757920000,1569757980000,1569758040000,1569758100000,1569758160000,1569758220000,1569758280000,1569758340000,1569758400000,1569758460000,1569758520000,1569758580000,1569758640000,1569758700000,1569758760000,1569758820000,1569758880000,1569758940000,1569759000000,1569759060000,1569759120000,1569759180000,1569759240000,1569759300000,1569759360000,1569759420000,1569759480000,1569759540000,1569759600000,1569759660000,1569759720000,1569759780000,1569759840000,1569759900000,1569759960000,1569760020000,1569760080000,1569760140000,1569760200000,1569760260000,1569760320000,1569760380000,1569760440000,1569760500000,1569760560000,1569760620000,1569760680000,1569760740000,1569760800000,1569760860000,1569760920000,1569760980000,1569761040000,1569761100000,1569761160000,1569761220000,1569761280000,1569761340000,1569761400000,1569761460000,1569761520000,1569761580000,1569761640000,1569761700000,1569761760000,1569761820000,1569761880000,1569761940000,1569762000000,1569762060000,1569762120000,1569762180000,1569762240000,1569762300000,1569762360000,1569762420000,1569762480000,1569762540000,1569762600000,1569762660000,1569762720000,1569762780000,1569762840000,1569762900000,1569762960000,1569763020000,1569763080000,1569763140000,1569763200000,1569763260000,1569763320000,1569763380000,1569763440000,1569763500000,1569763560000,1569763620000,1569763680000,1569763740000,1569763800000,1569763860000,1569763920000,1569763980000,1569764040000,1569764100000,1569764160000,1569764220000,1569764280000,1569764340000,1569764400000,1569764460000,1569764520000,1569764580000,1569764640000,1569764700000,1569764760000,1569764820000,1569764880000,1569764940000,1569765000000,1569765060000,1569765120000,1569765180000,1569765240000,1569765300000,1569765360000,1569765420000,1569765480000,1569765540000,1569765600000,1569765660000,1569765720000,1569765780000,1569765840000,1569765900000,1569765960000,1569766020000,1569766080000,1569766140000,1569766200000,1569766260000,1569766320000,1569766380000,1569766440000,1569766500000,1569766560000,1569766620000,1569766680000,1569766740000,1569766800000,1569766860000,1569766920000,1569766980000,1569767040000,1569767100000,1569767160000,1569767220000,1569767280000,1569767340000,1569767400000,1569767460000,1569767520000,1569767580000,1569767640000,1569767700000,1569767760000,1569767820000,1569767880000,1569767940000,1569768000000,1569768060000,1569768120000,1569768180000,1569768240000,1569768300000,1569768360000,1569768420000,1569768480000,1569768540000,1569768600000,1569768660000,1569768720000,1569768780000,1569768840000,1569768900000,1569768960000,1569769020000,1569769080000,1569769140000,1569769200000,1569769260000,1569769320000,1569769380000,1569769440000,1569769500000,1569769560000,1569769620000,1569769680000,1569769740000,1569769800000,1569769860000,1569769920000,1569769980000,1569770040000,1569770100000,1569770160000,1569770220000,1569770280000,1569770340000,1569770400000,1569770460000,1569770520000,1569770580000,1569770640000,1569770700000,1569770760000,1569770820000,1569770880000,1569770940000,1569771000000,1569771060000,1569771120000,1569771180000,1569771240000,1569771300000,1569771360000,1569771420000,1569771480000,1569771540000,1569771600000,1569771660000,1569771720000,1569771780000,1569771840000,1569771900000,1569771960000,1569772020000,1569772080000,1569772140000,1569772200000,1569772260000,1569772320000,1569772380000,1569772440000,1569772500000,1569772560000,1569772620000,1569772680000,1569772740000,1569772800000,1569772860000,1569772920000,1569772980000,1569773040000,1569773100000,1569773160000,1569773220000,1569773280000,1569773340000,1569773400000,1569773460000,1569773520000,1569773580000,1569773640000,1569773700000,1569773760000,1569773820000,1569773880000,1569773940000,1569774000000,1569774060000,1569774120000,1569774180000,1569774240000,1569774300000,1569774360000,1569774420000,1569774480000,1569774540000,1569774600000,1569774660000,1569774720000,1569774780000,1569774840000,1569774900000,1569774960000,1569775020000,1569775080000,1569775140000,1569775200000,1569775260000,1569775320000,1569775380000,1569775440000,1569775500000,1569775560000,1569775620000,1569775680000,1569775740000,1569775800000,1569775860000,1569775920000,1569775980000,1569776040000,1569776100000,1569776160000,1569776220000,1569776280000,1569776340000,1569776400000,1569776460000,1569776520000,1569776580000,1569776640000,1569776700000,1569776760000,1569776820000,1569776880000,1569776940000,1569777000000,1569777060000,1569777120000,1569777180000,1569777240000,1569777300000,1569777360000,1569777420000,1569777480000,1569777540000,1569777600000,1569777660000,1569777720000,1569777780000,1569777840000,1569777900000,1569777960000,1569778020000,1569778080000,1569778140000,1569778200000,1569778260000,1569778320000,1569778380000,1569778440000,1569778500000,1569778560000,1569778620000,1569778680000,1569778740000,1569778800000,1569778860000,1569778920000,1569778980000,1569779040000,1569779100000,1569779160000,1569779220000,1569779280000,1569779340000,1569779400000,1569779460000,1569779520000,1569779580000,1569779640000,1569779700000,1569779760000,1569779820000,1569779880000,1569779940000,1569780000000,1569780060000,1569780120000,1569780180000,1569780240000,1569780300000,1569780360000,1569780420000,1569780480000,1569780540000,1569780600000,1569780660000,1569780720000,1569780780000,1569780840000,1569780900000,1569780960000,1569781020000,1569781080000,1569781140000,1569781200000,1569781260000,1569781320000,1569781380000,1569781440000,1569781500000,1569781560000,1569781620000,1569781680000,1569781740000,1569781800000,1569781860000,1569781920000,1569781980000,1569782040000,1569782100000,1569782160000,1569782220000,1569782280000,1569782340000,1569782400000,1569782460000,1569782520000,1569782580000,1569782640000,1569782700000,1569782760000,1569782820000,1569782880000,1569782940000,1569783000000,1569783060000,1569783120000,1569783180000,1569783240000,1569783300000,1569783360000,1569783420000,1569783480000,1569783540000,1569783600000,1569783660000,1569783720000,1569783780000,1569783840000,1569783900000,1569783960000,1569784020000,1569784080000,1569784140000,1569784200000,1569784260000,1569784320000,1569784380000,1569784440000,1569784500000,1569784560000,1569784620000,1569784680000,1569784740000,1569784800000,1569784860000,1569784920000,1569784980000,1569785040000,1569785100000,1569785160000,1569785220000,1569785280000,1569785340000,1569785400000,1569785460000,1569785520000,1569785580000,1569785640000,1569785700000,1569785760000,1569785820000,1569785880000,1569785940000,1569786000000,1569786060000,1569786120000,1569786180000,1569786240000,1569786300000,1569786360000,1569786420000,1569786480000,1569786540000],"cpu":[0.54,0.15,0.16,0.15,0.19,0.26,0.32,0.15,0.15,0.28,0.29,0.33,0.18,0.17,0.17,0.33,0.32,0.23,0.15,0.15,0.24,0.29,0.16,0.17,0.17,0.45,0.28,0.16,0.17,0.17,0.24,0.3,0.19,0.19,0.17,0.24,0.29,0.22,0.18,0.28,0.26,0.17,0.3,0.16,0.21,0.24,0.16,0.29,0.17,0.18,0.27,0.16,0.33,0.16,0.19,0.24,0.18,1.7,0.18,0.16,0.34,0.18,0.28,0.18,0.17,0.34,0.17,0.28,0.17,0.22,0.23,0.14,0.29,0.2,0.16,0.24,0.16,0.17,0.29,0.17,0.38,0.2,0.16,0.3,0.18,0.31,0.16,0.16,0.29,0.15,0.31,0.17,0.17,0.3,0.2,0.27,0.16,0.15,0.3,0.41,0.28,0.16,0.15,0.28,0.15,0.33,0.18,0.18,0.17,5.2,0.23,0.17,0.16,0.16,0.33,0.3,0.19,0.16,0.92,0.28,0.33,0.17,0.21,0.15,0.32,0.61,1.48,0.15,0.17,0.44,0.23,0.19,0.17,0.24,0.33,0.26,0.17,0.17,0.17,0.27,0.25,0.11,0.1,0.07,0.09,0.37,0.08,0.09,0.08,0.07,0.34,0.07,0.08,0.07,0.07,0.37,0.07,0.07,0.07,0.25,0.26,0.06,0.1,0.07,0.09,0.31,0.08,0.11,0.11,0.12,0.26,0.08,0.09,0.07,0.1,0.25,0.06,0.06,0.07,0.07,0.36,0.26,0.08,0.08,0.09,0.16,0.23,0.07,0.09,0.21,0.22,0.21,0.09,0.07,0.09,0.22,0.3,0.12,0.07,0.11,0.22,0.2,0.1,0.06,0.09,0.15,0.27,0.13,0.11,0.13,0.17,0.22,0.09,0.09,0.09,0.2,0.22,0.12,0.06,0.18,0.15,0.09,0.2,0.05,0.07,0.13,0.1,0.26,0.07,0.06,0.14,0.08,0.22,0.1,0.1,0.22,0.07,0.22,0.06,3.25,0.29,0.08,0.24,0.09,0.08,0.18,0.07,1.32,0.06,0.22,0.17,0.12,0.25,0.17,0.19,0.2,0.2,0.16,0.33,0.18,0.27,0.29,0.29,0.36,0.18,0.34,0.2,0.18,0.29,0.09,0.23,0.09,0.12,0.23,0.11,0.2,0.12,0.12,0.24,0.19,0.24,0.1,0.13,0.25,0.19,0.22,0.13,0.16,0.15,0.26,0.27,0.1,0.1,0.12,0.23,0.19,0.13,0.17,0.12,0.41,0.34,0.11,17.91,19.06,0.28,0.21,0.17,4.03,0.13,0.36,0.24,0.12,0.14,0.13,0.32,0.21,0.13,0.13,0.09,0.27,0.19,0.16,0.13,0.13,0.12,1.56,0.13,0.16,0.12,0.12,0.37,0.12,0.14,0.12,0.11,0.33,0.15,0.13,0.13,0.16,0.37,0.13,0.11,0.15,0.15,0.38,0.1,0.13,0.17,0.17,0.36,0.13,0.14,0.12,0.14,0.4,0.13,0.12,0.15,0.12,0.38,0.31,0.19,0.15,0.15,0.24,0.32,0.17,0.12,0.31,0.32,0.39,0.25,0.41,0.31,0.26,0.35,0.18,0.19,0.23,0.27,0.29,0.25,0.2,0.19,0.28,0.3,0.13,0.17,0.18,0.39,0.21,0.21,0.19,0.15,0.27,0.16,0.32,0.13,0.21,0.27,0.16,0.34,0.14,0.17,0.3,0.15,0.39,0.15,0.16,0.26,0.16,0.28,0.16,0.15,0.26,0.16,0.25,0.17,0.15,0.45,0.46,0.31,0.16,0.2,0.27,0.16,0.27,0.12,0.2,0.28,0.11,0.09,0.23,0.1,0.22,0.13,0.1,0.24,0.1,0.21,0.15,0.09,0.23,0.14,0.14,0.08,0.1,0.22,0.08,0.15,0.06,0.08,0.21,0.08,0.14,0.09,0.07,0.2,0.13,0.24,0.14,0.08,0.22,0.07,0.23,0.07,0.08,0.1,0.25,0.21,0.08,0.1,0.1,5.36,0.21,0.07,0.07,0.09,0.22,0.29,0.13,0.08,0.08,0.23,0.18,0.11,0.09,0.12,0.28,0.19,0.1,0.08,0.2,0.25,0.19,0.12,0.1,0.11,0.23,0.23,0.13,0.12,0.11,0.11,0.42,0.17,0.12,0.13,0.11,0.28,0.12,0.12,0.14,0.11,0.35,0.17,0.22,0.15,0.23,0.43,0.17,0.21,0.17,0.18,0.39,0.16,0.17,0.14,0.24,0.49,0.17,0.17,0.18,0.25,0.39,0.23,0.27,0.19,0.2,0.62,0.25,0.2,0.22,0.2,0.29,0.33,0.23,0.25,0.29,0.3,0.31,0.21,0.24,0.22,0.33,0.35,0.21,0.22,0.2,0.45,0.37,0.21,0.19,0.16,0.29,0.26,0.16,0.14,0.16,0.27,0.32,0.24,0.19,4.56,0.28,0.37,0.22,0.22,0.29,0.34,0.2,0.33,0.2,0.2,0.3,0.2,0.38,0.22,0.22,0.37,0.22,0.36,0.2,0.27,0.36,0.23,0.35,0.19,0.15,0.32,0.19,0.29,0.16,0.14,0.27,0.19,0.36,0.18,0.37,0.36,0.21,0.34,0.23,0.25,0.31,0.22,0.23,0.34,0.19,0.32,0.23,0.22,0.34,0.2,0.25,0.27,0.25,0.35,0.25,0.36,0.2,0.23,0.38,0.2,0.3,0.22,0.2,0.33,0.38,0.3,0.24,5.59,15.62,0.2,0.34,0.22,0.23,0.32,0.2,0.23,0.19,0.17,0.31,0.27,0.34,0.19,0.2,0.25,0.36,0.42,13.73,5.51,0.21,1.44,0.28,0.25,15.57,1.22,15.5,1.9,0.26,0.23,0.23,12.39,9.41,0.47,0.36,0.27,9.18,19.32,7.01,8.02,3.67,12.22,17.48,15.48,4.21,0.27,0.22,2.92,2.41,3.62,0.22,0.17,0.4,0.14,0.14,0.13,0.28,0.37,0.12,2.17,12.55,15.51,18.3,0.37,18.79,17.38,0.28,2.8,15.37,15.21,0.32,0.19,0.39,0.15,0.21,0.21,0.16,0.61,0.25,0.17,0.21,0.14,0.44,0.17,0.2,15.22,7.27,11.46,0.45,0.24,15.26,0.36,0.29,0.39,15.03,0.4,0.16,0.27,0.29,0.12,0.17,0.15,0.28,0.29,0.14,0.15,0.15,0.29,0.38,0.25,0.16,0.17,0.25,0.27,0.16,0.17,0.35,0.32,16.22,0.19,16.11,0.16,0.24,0.32,0.21,0.17,0.2,0.3,0.12,0.31,0.13,0.12,0.3,0.14,0.26,0.12,0.11,0.5,0.18,0.34,0.11,0.11,0.2,0.16,0.35,0.17,0.27,0.22,1.11,0.25,14.9,0.35,0.25,0.14,0.31,0.14,2.57,8.21,2.6,2.38,15.64,15.65,16.22,15.73,0.53,0.18,0.16,0.33,0.13,4.41,0.38,1.06,17.74,0.34,12.25,4.12,2.84,16.35,0.46,0.22,0.32,0.17,0.29,0.12,0.14,0.33,0.17,0.21,0.17,0.14,0.34,0.18,0.33,0.22,4.19,3.89,0.66,1.31,0.19,0.17,0.37,0.13,0.39,0.22,0.24,16.97,0.49,0.32,0.2,0.16,0.2,0.4,0.4,0.15,0.18,0.18,0.29,0.36,0.33,0.23,0.2,0.48,0.27,0.21,0.19,0.17,0.29,0.24,0.17,0.17,0.12,0.31,0.31,0.15,0.15,0.16,0.53,0.29,0.15,0.17,0.14,0.17,0.38,0.17,0.15,0.17,0.13,0.44,0.12,0.12,0.11,0.11,0.34,0.15,0.11,0.12,0.13,0.62,0.27,0.2,0.14,0.17,0.53,0.22,0.17,0.12,0.32,16.99,0.32,0.13,0.16,0.14,0.48,0.15,0.2,0.12,0.16,0.45,0.22,0.16,0.14,0.21,0.39,0.46,0.17,0.2,0.16,0.39,0.32,0.21,0.15,0.14,0.3,0.33,0.17,0.16,0.34,0.26,0.26,0.16,0.2,0.19,0.28,0.37,0.19,0.21,0.24,0.41,0.36,0.17,0.25,0.15,0.32,0.33,0.17,0.16,0.14,0.33,0.19,0.32,0.19,0.29,0.25,0.32,0.32,0.15,0.4,0.25,0.14,0.25,0.25,0.25,0.33,0.16,0.32,0.21,0.18,0.3,0.17,0.29,0.12,0.12,0.25,0.17,0.32,0.17,0.15,0.28,0.21,0.32,0.15,0.13,0.33,0.17,0.29,0.12,0.31,0.27,0.14,0.17,0.32,0.17,0.29,0.21,0.19,0.32,0.16,0.29,0.11,0.2,0.33,0.16,0.35,0.16,0.13,0.28,0.11,0.39,0.16,0.15,0.27,0.16,0.33,0.17,0.13,0.27,0.31,0.37,0.14,0.13,16.74,0.14,0.32,0.18,0.18,0.27,0.12,0.2,0.17,0.12,0.13,0.27,0.28,0.1,0.1,0.12,0.26,0.26,0.1,0.15,0.19,0.28,0.24,0.14,0.16,0.15,0.43,0.34,0.15,0.14,0.2,0.34,0.38,0.12,0.15,0.14,0.31,0.27,0.13,0.13,0.19,0.32,0.26,0.16,0.17,0.17,0.14,0.5,0.18,0.17,0.14,0.2,0.41,0.19,0.16,0.19,0.42,0.48,0.22,0.17,0.34,0.31,0.67,0.25,0.23,0.2,0.24,0.4,0.25,0.22,0.23,0.27,0.5,0.23,0.24,0.2,0.2,0.42,0.23,0.23,0.23,0.22,0.6,0.38,0.19,0.24,0.29,0.32,0.32,0.2,0.21,0.22,0.27,0.32,0.24,0.22,0.19,0.29,0.35,0.19,0.19,0.19,0.33,0.34,0.17,0.19,0.22,0.49,0.35,0.21,0.2,0.27,0.3,0.35,0.19,0.18,0.38,0.46,0.18,0.31,0.21,0.23,0.34,0.22,0.39,0.23,0.18,0.29,0.19,0.34,0.22,0.18,0.27,0.17,0.35,0.22,0.19,0.32,0.2,0.34,0.2,0.18,0.36,0.21,0.36,0.2,0.37,0.31,0.19,0.34,0.21,0.19,0.34,0.21,0.19,0.4,0.22,0.33,0.23,0.18,0.33,0.58,0.37,0.29,0.22,0.39,0.2,0.44,0.25,0.27,5.13,0.37,0.38,0.28,0.44,0.37,0.32,0.29,0.25,0.21,0.43,0.28,0.36,0.22,0.2,0.39,0.24,0.34,0.23,0.24,0.25,0.37,0.3,0.2,0.23,0.2,0.37,0.36,0.22,0.24,0.21,0.36,0.49,0.23,0.2,0.21,0.53,0.32,0.23,0.22,0.21,0.36,0.32,0.24,0.22,0.24,0.37,0.39,0.17,0.12,0.13,0.28,0.24,0.12,0.12,0.13,0.27,0.58,0.2,0.17,0.19,0.13,0.47,0.19,0.17,1.23,0.36,0.47,0.14,0.16,0.12,0.28,0.43,0.12,0.18,0.15,0.15,0.36,0.11,0.15,0.12,0.11,0.34,0.12,0.11,0.13,0.12,0.4,0.14,0.17,0.12,0.12,0.4,0.12,0.2,0.12,0.41,0.41,0.14,0.18,0.12,0.13,0.35,0.25,0.14,0.1,0.13,0.2,0.24,0.12,0.11,0.13,0.25,0.3,0.1,0.11,0.14,0.39,0.29,0.19,0.15,0.14,0.2,0.25,0.1,0.14,0.21,0.25,0.28,0.12,0.19,0.17,0.37,0.34,0.16,0.12,0.15,0.29,0.21,0.3,0.15,0.17,0.22,0.14,0.25,0.15,0.15,0.33,0.14,0.35,0.19,0.13,0.31,0.15,0.22,0.1,0.29,0.23,0.13,0.26,0.12,0.15,0.3,0.13,0.31,0.12,0.13,0.21,0.12,0.3,0.14,0.13,0.27,0.15,0.25,0.17,0.15,1.82,0.17,0.11,0.28,0.14,0.36,0.18,0.15,0.25,0.32,0.2,0.12,0.12,0.26,0.15,0.35,0.19,0.15,0.3,0.11,0.31,0.17,0.13,0.26,0.13,0.28,0.15,0.12,0.37,0.13,0.37,0.2,0.16,0.27,0.15,0.31,0.11,0.17,0.14,0.72,0.24,0.12,0.15,0.12,0.25,0.25,0.13,0.17,0.14,0.27,0.23,0.12,0.15,0.15,0.25,0.23,0.12,0.17,0.15,0.27,0.4,0.2,0.19,0.22,0.32,0.27,0.15,0.15,0.15,0.48,6.99,0.17,0.1,0.18,0.16,0.48,0.11,0.15,0.19,0.12,0.34,0.12,0.13,0.12,0.11,0.55,0.16,0.12,0.17,0.2,0.51,0.13,0.19,0.14,0.12,0.4,0.12,0.11,0.06,0.25,0.41,0.13,0.12,0.09,0.07,0.33,0.12,0.12,0.12,0.12,0.25,0.27,0.09,0.07,0.09,0.23,0.31,0.1,0.09,0.14,0.23,0.24,0.12,0.11,0.14,0.17,0.26,0.08,0.09,0.3,0.31,0.26,0.12,0.08,0.15,0.24,0.23,0.83,0.11,0.16,0.36,0.32,0.15,0.15,0.1,0.26,0.09,0.23,0.1,0.1,0.3,0.06,0.29,0.1,0.09,0.24,0.13,0.27,0.12,0.31,0.24,0.1,0.28,0.12,0.11,0.23,0.1,0.24,0.15,0.1,0.31,0.14,0.28,0.14,0.11,0.19,0.08,0.25,0.12,0.12,0.44,0.16,0.16,0.27,0.13,0.2,0.14,0.17,5.43,0.24,0.29,0.15,0.08,0.26,0.18,0.34,0.2,0.1,1.04,0.09,0.26,0.19,0.17,0.34,0.1,0.27,0.1,0.11,0.32,0.11,0.34,0.22,0.17,0.3,0.22,0.47,0.18,0.16,0.3,0.39,0.25,0.12,0.18,0.16,0.3,0.27,0.14,0.15,0.15,0.37,0.22,0.13,0.12,0.09,0.28,0.28,0.19,0.13,0.12,0.26,0.56,0.29,0.22,0.15,0.29,0.22,0.17,0.15,0.15,0.44,0.31,0.13,0.16,0.21,0.11,0.44,0.12,0.15,0.15,0.16,0.44,0.16,0.18,0.15,0.18,0.41,0.18,0.2,0.27,0.22,0.58,0.24,0.22,0.19,0.23,0.42,0.22,0.17,0.17,0.35,0.48,0.2,0.18,0.19,0.2,0.41,0.24,0.2,0.19,0.23,0.31,0.36,0.23,0.19,0.18,0.34,0.31,0.17,0.17,0.17,0.47,0.44,0.21,0.23,0.24,0.27,0.32,0.17,0.2,0.45,0.3,0.32,0.18,0.2,0.22,0.32,0.33,0.19,0.21,0.32,0.42,0.57,0.29,0.31,0.28,0.46,0.38,0.46,0.31,0.24,0.37,0.3,0.4,0.21,0.22,0.37,0.2,0.4,0.24,0.41,0.4,0.18,0.37,0.24,0.28,0.39,0.25,0.38,0.23,0.21,0.3,0.15,0.37,0.19,0.2,0.27,0.21,0.35,0.19,0.18,0.47,0.21,0.36,0.2,0.2,0.32,0.19,0.22,0.38,0.4,0.41,0.27,0.26,0.36,0.28,0.34,0.2,0.21,0.34,0.17,0.29,0.21,0.21,0.33,0.19,1.62,0.18,0.17,0.34,10.31,0.36,0.21,0.22,0.32,0.17,0.33,0.22,0.2,0.31,0.25,0.33,0.19,0.15,0.22,0.33,0.29,0.2,0.19,0.22,0.34,0.33,0.2,0.2,0.17,0.34,0.27,0.2,0.21,0.2,0.35,0.52,0.24,0.19,0.17,0.31,0.32,0.14,0.11,0.15,0.35,0.29,0.15,0.12,0.18,0.34,0.35,0.14,0.1,0.1,0.23,0.31,0.1,0.1,0.2,0.25,0.16,0.12,0.1,0.09,0.09,0.49,0.12,0.14,0.09,0.1,0.4,0.07,0.13,0.11,0.14,0.45,0.07,0.11,0.09,0.08,0.41,0.11,0.11,0.12,0.09,0.35,0.12,0.09,0.12,0.07,0.3,0.1,0.12,0.07,0.06,0.42,0.09,0.08,0.07,0.09,0.3,0.11,0.09,0.1,0.21,0.24,0.26,0.11,0.1,0.14,0.32,0.28,0.15,0.07,0.14,0.21,0.26,0.08,0.08,0.08,0.22,0.24,0.12,0.15,0.12,0.23,0.23,0.13,0.15,0.14,0.21,0.25,0.1,0.17,0.19,0.19,0.09,0.25,0.12,0.11,0.17,0.07,0.28,0.09,0.15,0.16,0.11,0.2,0.12,0.11,0.19,0.1,0.24,0.1,0.1,0.34,0.1,0.24,0.09,0.12,0.25,0.1,0.22,0.07,0.16,0.24,0.08,5.04,0.25,0.1,0.18,0.1,0.25,0.12,0.09,0.17,0.08,0.26,0.14,0.13,0.25,0.15,0.06,0.3,0.16,0.17,0.09,0.17,0.25,0.12,0.17,0.1,0.1,0.2,0.26,0.23,0.07,0.1,0.32,0.11,0.2,0.08,0.14,0.24,0.12,0.26,0.09,0.1,0.23,0.1,0.24,0.14,0.08,0.28,0.12,0.39,0.13,0.16,0.11,0.27,0.27,0.12,0.11,0.12,0.39,0.22,0.15,0.07,0.12,0.32,0.26,0.12,0.15,0.12,0.24,0.21,0.86,0.1,0.1,0.29,0.2,0.1,0.14,0.1,0.21,0.3,0.09,0.13,0.09,0.23,0.24,0.11,0.14,0.09,0.27,0.37,0.11,0.12,0.08,0.09,0.37,0.12,0.15,0.15,0.1,0.31,0.08,0.1,0.12,0.12,0.29,0.1,0.1,0.11,0.14,0.49,0.13,0.15,0.13,0.09,0.34,0.37,0.13,0.12,0.2,0.41,0.11,0.13,0.17,5.84,0.49,0.1,0.17,0.11,0.14,0.19,0.29,0.12,0.13,0.15,0.17,0.3,0.12,0.11,0.07,0.22,0.22,0.1,0.07,0.08,0.23,0.23,0.08,0.08,0.37,0.2,0.2,0.09,0.09,0.07,0.15,0.23,0.1,0.1,0.15,0.33,0.31,0.11,0.07,0.11,0.31,0.26,0.15,0.17,0.12,0.3,0.13,0.33,0.21,0.15,0.14,0.14,0.24,0.1,0.27,0.21,0.14,0.3,0.15,0.11,11.03,0.12,0.3,0.1,0.14,0.26,0.14,0.47,0.11,0.07,0.15,0.07,0.21,0.14,0.12,0.39,0.1,0.24,0.19,0.17,0.31,0.09,0.11,0.29,0.27,0.29,0.15,0.16,0.33,0.13,0.24,0.1,0.15,0.27,0.12,0.22,0.09,0.09,0.24,0.11,0.25,0.09,0.1,0.23,0.08,0.41,0.16,0.14,0.27,0.13,0.25,0.15,0.21,0.25,0.18,0.21,0.17,0.12,0.12,0.28,1.82,0.23,0.15,0.22,0.28,0.21,0.14,0.53,0.21,0.32,0.28,0.14,0.19,0.18,0.29,0.35,0.17,0.14,0.15,0.29,0.31,0.18,0.17,0.14,0.47,0.29,0.17,0.16,0.16,0.33,0.3,0.15,0.17,0.18,0.31,0.29,0.18,0.16,0.2,0.17,0.38,0.17,0.16,0.21,0.2,0.49,0.17,0.18,0.25,11.04,18.89,0.48,0.23,0.17,0.3,0.42,0.21,0.21,16.63,16.78,16.97,0.28,0.32,0.18,0.25,0.49,0.26,0.21,0.2,0.19,0.47,14.34,2.98,0.17,0.17,0.44,0.17,0.22,0.16,0.2,0.29,0.32,0.18,0.21,0.46,0.39,0.33,0.2,0.2,0.22,31.99,1.82,0.34,0.22,0.18,0.31,0.3,0.17,0.18,0.17,0.27,0.31,0.18,0.2,0.22,0.55,0.32,0.18,0.17,0.19,0.34,0.34,0.18,0.17,0.36,0.29,0.21,0.35,0.55,0.65,1.03,0.61,4.45,0.75,0.64,0.35,0.24,0.37,0.25,1.5,0.35,0.23,0.69,0.6,16.51,0.54,0.14,0.31,0.17,0.17,0.34,0.21,0.28,0.15,0.49,0.32,0.2,0.37,0.17,0.21,0.31,0.16,0.29,0.21,0.2,0.36,0.19,0.28,0.18,0.2,0.32,0.2,0.16,0.32,0.17,0.58,0.24,0.27,0.31,0.17,0.3,0.16,0.17,0.32,0.35,0.26,0.22,0.2,0.31,0.17,0.3,0.16,0.18,0.33,0.15,0.28,0.14,0.15,0.1,0.25,0.14,0.07,0.1,0.1,0.2,0.19,0.09,0.11,0.14,0.23,0.21,0.11,0.12,0.09,0.39,0.18,0.07,0.13,0.11,0.23,0.23,0.1,0.1,0.14,0.25,0.28,0.12,0.1,0.11,0.23,0.21,0.15,0.13,0.09,0.22,0.32,0.13,0.13,0.11,0.12,0.4,0.09,0.09,0.09,0.21,0.31,0.14,0.12,0.16,0.17,0.4,0.1,0.12,0.13,0.1,0.36,0.18,0.22,0.09,0.12,1.66,0.1,0.14,0.12,0.13,0.49,0.14,0.12,0.16,0.1,0.42,0.16,0.14,0.12,0.21,0.26,0.22,0.14,0.07,0.09,0.16,0.21,0.15,0.08,0.09,0.19,0.24,0.09,0.09,0.11,0.15,0.24,0.06,0.09,0.07,0.28,0.25,0.13,0.1,0.09,0.21,0.21,0.12,0.07,0.25,0.23,0.25,0.08,0.11,0.1,0.19,0.22,0.1,0.82,0.09,0.22,0.09,0.24,0.08,0.09,0.14,0.08,0.21,0.11,0.07,0.23,0.08,0.26,0.09,0.1,0.14,0.06,0.24,0.11,0.27,0.21,0.08,0.22,0.06,0.07,0.14,0.07,0.21,0.1,0.08,0.16,0.07,0.24,0.06,0.1,0.17,0.07,0.1,0.24,0.08,0.28,0.1,0.1,0.22,0.11,0.28,0.06,0.07,0.2,0.21,0.14,0.07,0.07,0.27,0.13,0.16,0.14,0.11,0.2,1.18,0.17,0.13,0.14,0.21,0.1,0.13,0.24,0.08,0.2,0.07,0.21,0.07,0.09,0.21,0.1,0.26,0.09,0.07,0.07,0.32,0.24,0.1,0.09,0.12,0.2,0.24,0.07,0.09,0.07,0.25,0.27,0.07,0.07,0.1,0.22,0.11,0.07,0.1,0.07,0.24,0.31,0.08,0.07,0.11,0.22,0.12,0.1,0.09,0.09,0.34,0.25,0.09,0.07,0.1,0.22,0.22,0.1,0.1,0.08,1,0.27,0.09,0.09,0.06,0.07,0.26,0.07,0.09,0.06,0.09,0.42,0.09,0.09,0.09,0.08,0.36,0.1,0.08,0.08,0.26,0.42,0.07,0.08,0.1,0.09,0.29,0.08,0.09,0.09,0.08,0.31,0.08,0.1,0.1,0.07,0.21,0.24,0.08,0.1,0.08,0.33,0.32,0.15,0.13,0.16,0.23,0.29,0.13,0.1,0.2,0.25,0.23,0.17,0.12,0.15,0.28,0.22,0.18,0.1,0.08,0.2,5,0.26,0.1,0.09,0.18,0.21,0.1,0.07,0.11,0.19,0.1,0.3,0.13,0.1,0.21,0.12,0.24,0.1,0.33,0.2,0.1,0.26,0.06,0.07,0.28,0.1,0.27,0.1,0.08,0.23,0.1,0.32,0.07,0.12,0.23,0.12,0.22,0.08,0.08,0.48,0.15,0.28,0.1,0.08,0.15,0.1,0.23,0.08,0.26,0.18,0.13,0.1,0.26,1.28,0.24,0.11,0.97,0.26,0.2,0.25,1.34,0.19,0.22,0.09,0.61,0.07,0.06,0.48,0.07,0.4,0.1,1.39,0.25,0.1,0.49,0.06,0.18,0.25,0.37,0.3,0.1,0.35,0.19,0.07,0.15,0.26,0.1,0.21,0.25,0.2,0.15,0.1,0.09,0.28,0.28,0.12,0.12,0.14,0.43,0.52,0.23,0.17,0.15,0.31,0.22,0.17,0.18,0.15,0.55,0.27,0.17,0.17,0.21,0.29,0.28,0.16,0.21,2.22,0.28,0.51,0.18,0.35,0.16,0.18,0.43,0.52,0.14,0.17,0.17,0.62,0.15,0.18,0.16,0.15,0.54,0.15,0.2,0.14,0.36,0.4,0.17,0.17,0.2,0.16,0.62,0.17,1.22,0.18,0.18,0.46,0.18,0.18,0.17,0.57,0.9,0.16,0.17,0.33,0.34,1.51,0.18,0.15,0.16,0.3,0.39,0.47,0.19,0.31,0.78,0.24,0.32,0.15,0.19,0.15,0.25,0.34,0.18,0.17,0.32,0.31,1.86,0.19,0.17,0.17,0.28,0.34,0.67,0.19,0.16,0.29,0.3,0.18,0.18,0.17,0.38,0.15,0.51,0.17,0.27,0.24,0.66,0.29,0.15,0.16,0.24,0.14,0.28,0.34,0.15,0.48,0.16,0.3,0.16,0.16,0.22,0.15,0.3,0.16,0.17,0.45,0.41,0.37,0.22,0.24,0.52,0.21,0.52,0.2,0.41,0.32,0.22,0.41,0.25,0.57,0.37,0.27,0.28,0.43,0.26,0.31,0.26,0.25,0.39,0.27,0.72,0.23,0.42,0.38,0.2,0.36,0.19,0.19,0.36,0.22,0.27,0.2,0.17,0.32,0.25,0.24,0.34,0.19,0.29,0.4,0.28,0.32,0.2,0.27,1.14,0.28,0.15,0.13,0.27,0.12,0.24,0.14,0.17,0.18,0.29,0.46,0.21,0.2,0.16,1.24,0.25,0.14,2.24,1,0.34,0.26,0.17,0.12,0.15,0.3,0.51,0.15,0.14,0.15,0.33,0.32,0.18,1.46,0.13,0.32,0.28,0.12,0.11,0.14,0.3,0.33,0.13,0.16,0.11,0.12,0.5,0.12,0.11,0.13,0.26,0.89,0.15,0.14,0.12,0.13,0.36,0.2,0.18,0.14,0.19,0.44,0.16,0.13,0.13,0.13,0.43,0.18,0.14,1.95,0.14,0.63,0.16,1.1,0.17,0.15,0.52,0.15,0.17,0.18,0.26,0.25,0.41,0.2,0.23,0.17,0.43,2,0.18,0.15,0.13,0.36,0.31,0.17,1.13,0.13,0.16,5.16,0.29,0.15,0.12,0.37,1.03,0.19,0.15,0.2,0.26,0.35,0.16,0.16,0.28,0.27,0.25,0.12,0.13,0.12,0.31,0.26,0.13,0.11,0.16,0.24,0.15,1.2,0.12,0.15,0.29,0.14,0.29,0.13,0.15,0.54,0.22,0.28,0.15,0.12,0.22,0.07,0.26,0.14,0.24,0.34,0.13,0.27,0.1,0.21,0.34,0.15,0.29,0.12,0.15,0.27,0.13,0.3,0.14,0.14,0.2,0.14,0.23,0.18,0.1,0.33,0.12,0.09,0.24,0.07,0.16,0.07,0.1,0.24,0.25,0.16,0.1,0.11,0.29,0.1,0.23,0.06,0.12,0.23,0.1,0.23,0.07,0.06,0.25,0.08,0.14,0.12,0.1,0.24,0.12,0.47,0.24,0.19,0.19,0.4,0.33,0.12,0.11,0.13,0.39,0.31,0.2,0.21,0.27,0.37,0.35,0.22,0.22,0.27,0.37,0.29,0.3,0.32,0.29,0.31,0.43,0.32,0.24,0.21,0.42,0.35,0.17,0.22,0.22,0.27,0.21,0.23,0.18,0.1,0.33,0.54,0.16,0.16,0.14,0.14,0.58,0.11,0.24,0.22,0.14,0.46,0.13,0.15,0.18,0.17,0.44,0.18,0.15,0.21,0.18,0.54,0.15,0.15,6.87,0.17,0.41,0.14,0.14,0.16,0.25,0.45,0.14,0.13,0.17,0.11,0.48,0.12,0.15,0.12,0.15,0.3,0.25,0.15,0.12,0.12,1.34,0.28,0.17,0.16,0.12,0.26,0.29,0.18,0.15,0.15,0.35,0.33,0.13,0.14,0.21,0.22,0.22,0.11,0.11,0.11,0.22,0.26,0.09,0.1,0.09,0.19,0.25,0.12,0.11,0.08,0.15,0.09,0.23,2.98,0.17,0.33,0.11,0.27,0.2,0.15,0.2,0.15,0.24,0.12,0.17,0.26,0.09,0.36,0.18,0.13,0.27,0.15,0.26,0.08,0.08,0.19,0.16,0.23,0.08,0.14,0.28,0.12,0.28,0.12,0.12,1.44,0.14,0.1,0.28,0.08,0.26,0.13,0.12,0.21,0.24,0.25,0.15,0.15,0.22,0.1,0.25,0.77,0.17,0.25,0.11,0.29,0.11,0.09,0.3,0.1,0.23,0.11,0.15,0.26,0.09,0.33,0.12,0.16,0.34,0.2,0.23,0.18,0.17,0.34,0.23,0.28,0.17,0.19,0.19,0.44,0.34,0.17,0.24,0.21,0.33,0.29,0.17,0.24,0.16,0.32,0.33,0.18,0.2,0.2,0.33,0.29,0.18,0.18,0.23,0.32,0.29,0.16,0.19,0.17,0.41,0.3,0.17,0.21,0.23,0.29,0.36,0.17,0.24,0.19,0.2,0.42,0.15,0.16,0.17,0.18,0.42,0.19,0.17,0.16,0.17,0.49,0.17,0.17,0.15,0.16,0.38,0.17,0.17,0.22,0.33,0.39,0.2,0.21,0.15,0.2,0.59,0.2,0.18,0.17,0.23,0.45,0.17,0.18,0.18,0.22,0.33,0.33,0.23,0.17,0.2,0.34,5.18,0.27,0.22,0.22,0.32,0.34,0.22,0.18,0.38,0.29,0.33,0.2,0.21,0.16,0.31,0.32,0.18,0.15,0.16,0.26,0.38,0.2,0.21,0.19,0.36,0.34,0.19,0.16,0.18,0.49,0.27,0.42,0.19,0.17,0.36,0.19,0.31,0.16,0.33,0.27,0.24,0.3,0.2,0.18,0.3,0.16,0.35,0.17,0.18,0.25,0.16,0.37,0.22,0.17,0.3,0.17,0.32,0.99,0.19,1.44,0.21,0.31,0.22,0.19,0.31,0.16,0.32,0.19,0.45,0.29,0.23,0.17,0.32,0.17,0.4,0.19,0.18,0.35,0.19,0.2,0.15,0.12,0.27,0.12,0.21,0.13,0.09,0.25,0.09,0.24,0.15,0.09,0.27,0.09,0.23,0.1,0.08,0.22,0.34,0.22,0.12,0.22,0.32,0.17,0.32,0.1,0.11,0.13,0.24,0.25,0.13,0.1,0.15,0.27,0.31,0.09,0.1,0.08,0.24,0.23,0.17,0.16,0.1,0.29,0.28,0.11,0.13,0.16,0.4,0.26,0.13,0.13,0.15,0.26,0.25,0.15,0.11,0.18,0.29,0.35,0.1,0.11,0.16,0.17,0.49,0.15,0.16,0.17,0.15,0.67,0.14,0.11,0.12,0.13,0.36,0.13,0.1,0.12,0.16,0.34,0.13,0.11,0.07,0.11,0.33,0.1,0.11,0.1,0.12,0.33,0.11,0.1,0.17,0.13,0.35,0.08,0.1,0.1,0.12,0.23,0.31,0.1,0.1,0.11,0.24,0.21,0.1,0.1,0.29,0.29,0.25,0.15,0.07,0.12,0.21,0.25,0.12,0.17,0.12,0.24,0.26,0.14,0.14,0.12,0.27,0.25,0.13,0.15,0.08,0.31,0.29,0.15,0.09,0.12,0.28,0.25,0.17,0.09,0.31,0.23,0.13,0.3,0.14,0.09,0.27,0.14,0.24,0.11,0.1,0.2,0.1,0.24,0.12,0.13,0.25,0.1,0.25,0.14,0.12,0.24,0.67,0.32,0.1,0.07,0.16,0.07,0.23,0.11,0.3,0.21,0.07,0.12,0.2,0.09,0.2,0.07,0.12,0.23,0.12,0.26,0.08,0.09,0.23,0.13,0.29,0.14,0.08,0.21,0.07,0.4,0.11,0.1,0.24,0.06,0.19,0.1,0.1,0.22,0.23,0.19,0.1,0.08,0.1,0.23,0.16,0.1,0.08,0.08,0.2,0.18,0.07,0.11,0.12,0.22,0.21,0.07,0.07,0.1,0.24,0.29,4.19,0.12,0.12,0.25,0.27,0.07,0.14,0.1,0.41,0.27,0.11,0.08,0.12,0.27,0.17,0.07,0.1,0.11,0.1,0.51,0.08,0.1,0.11,0.11,0.33,0.15,0.11,0.08,0.09,0.49,0.11,0.12,0.13,0.08,0.45,0.12,0.1,0.09,0.3,0.33,0.1,0.14,0.11,0.23,0.5,0.15,0.16,0.11,0.11,0.47,0.11,0.12,0.16,0.12,0.2,0.3,0.1,0.09,1.77,0.19,0.19,0.12,0.08,0.1,0.21,5.09,0.12,0.16,0.16,0.2,0.23,0.1,0.1,0.1,0.23,0.23,0.1,0.12,0.13,0.16,0.23,0.09,0.12,0.1,0.21,0.24,0.1,0.12,0.08,0.44,0.14,0.25,0.09,0.09,0.17,0.1,0.22,0.06,0.27,0.14,0.1,0.22,0.09,0.07,0.15,0.1,0.22,0.07,0.1,0.15,0.1,0.23,0.09,0.1,0.14,0.09,0.22,0.08,0.06,0.19,0.08,0.23,0.07,0.07,0.17,0.14,0.08,0.24,0.31,0.25,0.07,0.08,0.21,0.08,0.28,0.07,0.05,0.24,0.06,0.22,0.07,0.08,0.21,0.08,0.14,0.1,0.12,0.27,0.11,0.27,0.12,0.11,0.24,0.06,0.14,0.14,0.12,0.22,0.34,0.23,0.1,0.14,0.28,0.17,0.24,0.1,0.12,0.1,0.25,0.26,0.11,0.15,0.16,0.28,0.31,0.15,0.17,0.16,0.37,0.3,0.17,0.2,0.18,0.32,0.31,0.18,0.19,0.2,0.4,0.36,0.21,0.2,0.2,0.3,0.37,0.19,0.2,0.18,0.34,0.3,0.15,0.21,0.17,0.2,0.46,0.17,0.2,0.17,0.21,0.52,0.19,0.2,0.16,0.16,0.46,0.15,0.18,0.17,0.26,0.55,0.17,0.18,0.2,0.17,0.43,0.22,0.21,0.22,0.19,0.46,0.18,0.17,0.24,0.17,0.38,0.2,0.2,0.18,0.2,1.74,0.34,0.2,1.25,0.15,0.3,0.29,0.19,0.17,0.34,0.39,0.32,0.2,0.17,0.15,0.32,0.28,0.17,0.21,0.17,0.34,0.33,0.18,0.16,0.17,0.24,0.35,0.17,0.16,0.18,0.43,0.34,0.17,0.18,0.18,0.24,0.19,0.3,0.17,0.32,0.28,0.16,0.33,0.2,0.23,0.45,0.17,0.34,0.19,0.18,0.37,0.17,0.34,0.23,0.19,0.3,0.18,0.32,0.23,0.2,0.31,0.91,0.32,0.2,1.57,0.3,0.19,0.33,0.17,0.22,0.25,0.18,0.15,0.35,0.15,0.3,0.17,0.2,0.31,0.17,0.35,0.19,0.19,0.31,0.17,0.29,0.17,0.18,0.35,0.2,0.52,0.18,0.17,0.3,0.18,0.29,0.19,0.16,0.26,0.24,0.18,0.11,0.12,0.25,0.09,0.17,0.1,0.15,0.23,0.09,0.17,0.09,0.07,0.11,0.22,0.23,0.1,0.07,0.09,0.21,0.3,0.09,0.1,0.12,0.71,3.02,0.11,0.08,0.12,0.34,0.19,0.09,0.09,0.11,0.2,0.17,0.06,0.11,0.08,0.22,0.17,0.09,0.07,0.1,0.21,0.19,0.13,0.08,0.09,0.08,0.42,0.12,0.13,0.09,0.11,0.31,0.14,0.1,0.07,0.25,0.31,0.12,0.1,0.12,0.07,0.5,0.11,0.12,0.1,0.15,0.34,0.13,0.1,0.17,0.12,0.4,0.1,0.1,0.12,0.1,0.44,0.13,0.14,0.13,0.12,0.3,0.24,0.07,0.1,0.19,0.23,5.25,0.17,0.1,0.07,0.2,0.25,0.16,0.12,0.17,0.18,0.29,0.16,0.13,0.1,0.18,0.25,0.17,0.2,0.1,0.55,0.32,0.15,0.14,0.1,0.25,0.31,0.1,0.14,0.31,0.25,0.23,0.12,0.1,0.12,0.23,0.13,0.3,0.09,0.08,0.17,0.07,0.22,0.1,0.07,0.2,0.13,0.27,0.15,0.13,0.25,0.1,0.24,0.16,0.1,0.59,0.1,0.25,0.1,0.2,0.3,0.1,0.24,0.1,0.15,0.16,0.12,0.23,0.14,0.09,0.28,0.1,0.15,0.25,0.13,0.24,0.11,0.11,0.2,0.16,0.41,0.2,0.13,0.25,0.13,0.2,0.14,0.12,0.28,0.21,0.19,0.08,0.12,0.24,0.18,0.2,0.14,0.13,0.23,0.15,0.23,0.1,0.13,0.22,0.13,0.22,0.14,0.08,0.1,0.25,0.38,0.12,0.12,0.14,0.24,0.36,0.72,0.09,0.1,0.33,0.19,0.13,0.11,0.19,0.27,0.27,0.13,0.13,0.13,0.28,0.25,0.15,0.12,0.12,0.27,0.23,0.16,0.17,0.2,0.12,1.86,0.21,0.18,0.13,0.16,0.56,0.17,0.17,0.09,0.3,0.43,0.17,0.15,0.19,0.19,0.36,0.14,0.12,0.09,0.06,0.35,0.12,0.08,0.12,0.08,0.36,0.15,0.1,0.08,0.11,0.26,0.3,0.15,0.65,0.1,0.19,0.26,0.1,0.14,0.24,0.22,0.28,0.15,0.11,0.1,0.24,0.27,0.11,0.11,0.11,0.21,0.25,0.13,0.13,0.08,0.25,0.24,0.14,0.13,0.09,0.36,0.3,0.15,0.12,0.11,0.22,0.14,0.33,0.15,0.3,0.22,0.11,0.31,0.13,0.19,0.26,0.14,0.27,0.12,0.11,0.18,0.14,0.28,0.11,0.11,0.66,0.09,0.3,0.14,0.08,0.35,0.12,0.31,0.14,0.14,0.25,0.09,0.22,0.1,0.27,0.24,0.1,0.28,0.1,0.18,0.21,0.11,0.27,0.31,0.09,0.19,0.09,0.08,0.22,0.12,0.19,0.13,0.13,0.25,0.11,0.46,0.1,0.16,0.28,0.1,0.23,0.1,0.1,0.25,0.22,0.14,0.13,0.13,0.24,0.16,0.19,0.1,0.16,0.32,0.16,0.24,0.18,0.18,0.2,0.33,0.28,0.12,0.12,0.14,0.23,0.28,0.1,0.1,0.09,0.56,0.38,0.11,0.15,0.15,0.37,0.24,0.18,0.18,0.17,0.26,0.36,0.14,0.2,0.2,0.3,0.25,0.2,0.17,0.2,6.31,0.26,0.17,0.17,0.18,0.17,0.83,0.2,0.22,0.22,0.16,0.4,0.19,0.17,0.21,0.26,0.44,0.18,0.16,0.21,0.22,0.58,0.23,0.17,0.22,0.19,0.45,0.24,0.19,0.17,0.19,0.4,0.17,0.17,0.18,0.19,0.47,0.22,0.19,0.24,0.22,0.52,0.18,0.18,0.16,0.26,0.26,0.32,0.21,0.2,0.16,0.22,3.42,0.17,0.2,0.2,0.24,0.3,0.19,0.15,0.16,0.25,0.3,0.18,0.16,0.18,0.61,0.42,0.29,0.22,0.19,0.29,0.31,0.2,0.16,0.41,0.28,0.32,0.26,0.2,0.23,0.4,0.18,0.41,0.22,0.2,0.31,0.25,0.32,0.2,0.22,0.4,0.21,0.35,0.24,0.25,0.42,0.22,0.37,0.19,0.21,0.38,0.23,0.37,0.21,0.4,0.32,0.22,0.32,0.21,0.2,0.42,0.25,0.4,0.22,0.17,0.36,0.26,0.19,0.38,0.21,0.34,0.21,0.21,0.33,0.21,0.43,0.29,0.29,0.4,0.22,0.35,0.22,0.21,0.35,0.32,0.31,0.18,0.27,0.39,0.32,0.4,0.23,0.24,0.35,0.27,0.42,0.28,0.22,0.44,0.19,0.36,0.15,0.15,0.38,0.1,0.26,0.1,0.13,0.11,0.32,0.46,0.1,0.1,0.12,0.38,0.24,0.19,0.24,0.11,0.32,0.23,0.15,0.24,0.12,0.25,0.23,0.11,0.09,0.16,0.29,0.34,0.14,0.08,0.09,0.25,0.45,0.16,0.12,0.08,0.27,0.16,0.18,0.15,0.19,0.32,0.2,0.12,0.09,0.1,12.71,0.28,0.14,0.14,0.19,0.16,0.44,0.14,0.12,0.17,0.13,1.65,0.13,0.12,0.1,0.16,0.4,0.12,0.15,0.12,0.11,0.49,0.28,0.12,0.12,0.92,0.45,0.15,0.2,0.16,0.15,0.36,0.17,0.21,0.12,0.09,0.45,0.12,0.13,0.17,0.12,0.49,0.12,0.13,0.1,0.12,0.4,0.27,0.13,0.1,0.17,0.33,0.3,0.16,0.15,0.21,0.25,0.26,0.2,0.2,0.14,0.34,0.27,0.12,0.16,0.15,0.28,0.22,0.1,0.15,0.1,0.3,0.27,0.09,0.15,0.15,0.26,0.27,0.12,0.11,0.1,0.22,0.25,0.12,0.1,0.32,0.2,0.11,0.23,0.07,0.09,0.23,0.08,0.24,0.24,0.11,0.23,0.14,0.32,0.12,0.15,0.28,0.18,0.29,0.21,0.16,0.45,0.17,0.3,0.13,0.12,0.29,0.16,0.31,0.12,0.25,0.17,0.12,0.27,0.09,0.11,0.28,0.12,0.15,0.27,0.15,0.22,0.14,0.15,0.35,0.14,0.28,0.12,0.14,0.27,0.1,0.26,0.12,0.09,0.24,0.1,0.21,0.35,0.07,0.25,0.3,0.54,0.1,0.12,0.26,0.11,0.32,0.07,0.18,0.28,0.07,0.19,0.14,0.1,0.29,0.11,0.25,0.13,0.15,0.18,0.35,0.42,0.11,0.14,0.2,0.26,0.25,0.15,0.22,0.15,0.5,0.25,0.12,0.25,0.17,0.36,0.35,0.1,0.12,0.1,0.31,0.28,0.13,0.1,0.14,0.24,0.25,0.11,0.1,0.18,0.27,0.26,0.15,0.13,0.19,0.3,0.2,0.27,0.17,0.17,0.46,0.27,0.1,0.1,0.11,0.17,0.39,0.14,0.19,0.1,0.15,5.26,0.12,0.11,0.13,0.1,0.41,0.13,0.07,0.1,0.15,0.69,0.15,0.16,0.17,0.14,0.48,0.13,0.17,0.15,0.2,0.3,0.12,0.13,0.12,0.11,0.36,0.12,0.14,0.14,0.09,0.2,0.26,0.15,0.16,0.14,0.28,0.26,0.12,0.13,0.1,0.31,0.23,0.14,0.15,0.15,0.21,0.22,0.07,0.11,0.27,1.59,0.27,0.1,0.09,0.1,0.2,0.25,0.12,0.09,0.11,0.25,0.25,0.1,0.1,0.09,0.19,0.12,0.26,0.1,0.13,0.33,0.12,0.27,0.1,0.15,0.24,0.12,0.29,0.1,0.21,0.29,0.1,0.27,0.12,0.07,0.31,0.14,0.27,0.12,0.1,0.26,0.18,0.26,0.12,0.1,0.24,0.12,0.27,0.08,0.15,0.25,0.16,0.27,0.1,0.1,0.22,0.1,1.04,0.12,0.41,0.28,0.33,0.15,0.29,0.23,0.22,0.14,0.25,0.32,0.17,0.36,0.16,0.17,0.42,0.18,0.27,0.16,0.29,0.33,0.2,0.49,0.23,0.22,0.37,0.26,0.27,0.23,0.21,0.37,0.41,0.33,0.24,0.23,0.34,0.2,0.28,0.22,0.21,0.42,0.21,0.32,0.24,0.2,0.23,0.35,0.28,0.2,0.2,0.19,0.36,0.38,0.2,0.22,0.2,0.38,0.34,0.27,0.24,0.24,0.65,0.39,0.23,0.19,0.2,0.35,0.38,0.24,0.26,0.2,0.37,0.27,0.2,0.23,0.21,0.37,0.3,0.22,0.24,0.21,0.21,0.54,0.26,0.22,0.17,0.19,0.44,0.18,0.19,0.2,0.34,0.44,0.19,0.21,0.2,0.19,0.56,0.21,0.25,0.21,0.27,0.53,0.24,0.21,0.26,0.21,0.5,0.19,0.24,0.21,0.22,0.49,0.29,0.32,0.24,0.2,0.46,0.24,0.23,0.28,0.31,0.34,0.39,0.22,0.24,0.2,0.34,0.34,0.21,0.19,0.16,0.32,0.33,0.21,0.21,0.21,0.32,0.38,0.25,0.22,0.22,0.87,0.45,0.19,0.22,0.26,0.37,0.37,0.22,0.21,0.48,0.37,0.32,0.2,0.19,0.22,0.37,0.22,0.57,0.29,0.25,0.4,0.3,0.38,0.31,0.22,0.33,0.2,0.35,0.24,0.21,0.32,0.22,0.51,0.22,0.22,0.31,0.18,0.33,0.2,0.28,0.32,0.1,0.23,0.12,0.12,0.36,0.13,0.28,0.15,0.15,0.25,0.13,0.27,0.16,0.12,0.17,0.12,0.23,0.13,0.09,0.3,0.12,0.11,0.28,0.2,0.25,0.15,0.13,0.34,0.22,0.32,0.14,0.17,0.34,0.19,0.4,0.17,0.19,0.25,0.53,0.29,0.2,0.22,0.3,0.17,0.33,0.11,0.13,0.26,0.13,0.27,0.16,0.17,0.25,0.1,0.23,0.11,0.12,0.27,0.21,0.19,0.11,0.11,0.09,0.24,0.19,0.15,0.14,0.13,0.23,0.17,0.13,0.12,0.1,4.88,0.43,0.15,0.12,0.12,0.23,0.47,0.17,0.18,0.15,0.27,0.22,0.19,0.09,0.11,0.43,0.29,0.11,0.11,0.1,0.22,0.16,0.09,0.1,0.1,0.1,0.38,0.13,0.09,0.11,0.17,0.39,0.16,0.15,0.09,0.08,0.47,0.12,0.1,0.09,0.13,0.49,0.12,0.15,0.12,0.29,0.38,0.13,0.16,0.15,0.13,0.44,0.18,0.2,0.11,0.17,0.39,0.13,0.12,0.1,0.14,0.29,0.32,0.13,0.1,0.13,0.44,0.26,0.11,0.14,0.15,0.23,0.27,0.11,0.15,0.43,0.35,0.25,0.22,0.11,0.1,0.26,0.27,0.11,0.12,0.16,0.34,0.27,0.12,0.12,0.15,0.26,0.12,0.28,0.15,0.22,0.23,0.1,0.28,0.09,0.11,0.22,0.1,0.24,0.09,0.8,0.26,0.1,1.04,0.12,0.15,0.26,0.13,0.28,0.18,0.17,0.29,0.13,0.3,0.12,0.11,0.26,0.13,0.32,0.26,0.18,0.57,0.17,0.17,0.24,0.1,0.25,0.12,0.1,0.25,0.3,0.29,0.11,0.11,0.32,0.11,0.36,0.18,0.16,0.32,0.1,0.26,0.11,0.09,0.22,0.13,0.26,0.15,0.15,0.21,0.09,0.31,0.1,0.16,0.23,0.12,0.25,0.09,0.08,0.06,0.43,0.22,0.11,0.1,0.09,0.22,0.14,0.09,0.11,0.1,0.22,0.19,0.07,0.11,0.13,0.24,0.33,0.1,0.07,0.09,0.26,0.34,0.15,0.1,0.18,0.26,0.25,0.09,0.16,0.14,0.36,0.23,0.12,0.17,0.24,0.2,0.57,0.11,0.17,0.08,0.1,0.47,0.14,0.12,0.2,0.17,0.33,0.12,0.14,0.16,0.12,0.4,0.13,0.16,0.1,0.09,0.47,0.14,0.09,0.17,0.33,1.54,0.1,0.12,0.16,0.11,0.35,0.09,0.12,0.11,0.12,0.27,0.26,0.12,0.17,0.11,0.15,0.26,0.12,0.12,0.11,0.45,0.29,0.12,0.1,0.1,0.31,0.23,0.12,0.1,0.25,0.26,0.27,0.09,0.09,0.08,0.23,0.26,0.12,0.09,0.09,0.24,0.25,0.12,0.13,0.12,0.27,0.24,0.1,0.12,0.11,0.24,0.12,0.27,0.12,0.08,0.19,0.12,0.27,0.12,0.19,0.23,0.12,0.32,0.11,0.1,0.25,0.12,0.3,0.17,0.13,0.27,0.09,0.26,0.1,0.12,0.19,0.13,0.25,0.08,0.14,0.3,0.18,0.33,0.14,0.18,0.48,0.23,0.33,0.22,0.3,0.29,0.16,0.17,0.39,0.28,0.37,0.25,0.2,0.33,0.26,0.33,0.15,0.17,0.42,0.22,0.27,0.17,0.16,0.32,0.18,0.36,0.17,0.17,0.33,0.17,0.29,0.16,0.19,0.33,0.33,0.31,0.18,0.18,0.27,0.22,0.32,0.19,0.2,0.18,0.31,0.3,0.18,0.18,0.17,0.33,0.26,0.2,0.19,0.22,5.4,0.69,0.3,0.23,0.2,0.35,0.37,0.27,0.19,0.2,0.58,0.36,0.24,0.22,0.22,0.46,0.49,0.22,0.24,0.22,0.43,0.29,0.19,0.2,0.18,0.23,0.51,0.21,0.21,0.19,0.18,0.54,0.22,0.22,0.21,0.17,0.41,0.22,0.26,0.2,0.39,0.47,0.22,0.2,0.2,0.19,0.47,0.23,0.28,0.22,0.19,0.44,0.24,0.21,0.18,0.23,0.44,0.21,0.2,0.17,0.24,0.71,0.21,0.26,0.23,0.2,0.38,0.39,0.17,0.21,0.36,0.29,0.35,0.25,0.26,0.2,0.36,0.38,0.22,0.21,0.21,0.32,0.34,0.23,0.24,0.23,0.29,0.34,0.22,0.23,0.18,0.39,0.35,0.21,0.2,0.19,0.31,0.35,0.19,0.2,0.39,0.35,0.31,0.74,0.17,0.22,0.41,0.31,0.19,0.17,0.2,0.29,0.2,0.37,0.18,0.17,0.21,0.17,0.23,0.12,0.14,1.34,0.22,0.25,0.11,0.09,0.24,0.1,0.24,0.13,0.33,0.27,0.13,0.23,0.1,0.14,0.26,0.1,0.29,0.12,0.1,0.24,0.1,0.27,0.12,0.16,0.37,0.12,0.24,0.16,0.11,0.21,0.17,0.18,0.27,0.07,0.23,0.08,0.1,0.25,0.35,0.34,0.16,0.16,0.26,0.15,0.25,0.14,0.16,0.32,0.14,0.33,0.14,0.16,0.29,0.12,0.29,0.08,0.15,0.22,0.13,0.47,0.16,0.17,0.27,0.17,0.34,0.22,0.15,0.13,0.38,0.24,0.21,0.16,0.14,0.38,0.35,0.13,0.27,0.24,0.29,0.36,0.18,0.14,0.11,0.32,0.87,0.28,0.18,0.15,0.24,0.3,0.15,0.13,0.16,0.25,0.25,0.17,0.13,0.15,0.55,0.38,0.13,1.58,0.09,0.12,0.58,1.14,0.2,0.29,0.18,0.51,0.26,0.21,0.15,0.13,0.55,0.24,0.21,0.17,0.16,0.69,0.25,0.21,0.15,0.19,0.56,0.21,0.24,0.12,0.4,0.41,0.2,0.3,0.2,0.12,0.39,0.43,0.23,0.22,0.18,0.37,0.37,0.25,0.25,0.3,0.38,0.41,0.15,0.15,0.16,0.48,0.47,0.23,0.21,0.21,0.43,0.32,0.21,0.18,0.42,0.31,0.29,0.23,0.22,0.24,0.42,0.33,0.2,0.3,0.16,0.46,0.3,0.16,0.17,0.16,0.34,0.15,0.31,0.15,0.15,0.76,0.24,0.41,0.18,0.15,0.31,0.15,0.39,0.2,0.41,0.27,0.21,0.46,0.29,0.36,0.48,0.23,0.44,0.27,0.17,0.41,0.17,0.35,0.18,0.24,0.35,0.2,0.33,0.18,0.2,0.43,0.29,0.42,0.27,0.31,0.35,0.29,0.25,0.48,0.43,0.36,0.2,0.24,0.29,0.2,0.39,0.25,0.21,0.32,0.23,0.38,0.27,0.23,0.38,0.25,0.34,0.2,0.23,0.34,0.16,0.72,0.47,0.44,5.31,0.33,0.39,0.21,0.2,0.31,0.35,0.38,0.24,0.18,0.19,0.37,0.37,0.18,0.21,0.2,0.41,0.43,0.22,0.21,0.21,0.37,0.51,0.27,0.32,0.38,0.33,0.45,0.2,0.24,0.18,0.33,0.4,0.23,0.18,0.24,0.73,0.56,0.36,0.35,0.17,1.24,0.29,0.15,0.26,0.27,0.45,0.29,0.3,0.3,0.2,0.16,0.45,0.2,0.2,0.14,0.22,0.6,0.29,0.17,0.21,0.21,0.34,0.18,0.2,0.22,0.22,0.45,0.2,0.17,0.23,0.36,0.59,0.14,0.24,0.21,0.18,0.68,0.24,0.22,0.22,0.19,0.54,0.35,0.29,0.3,0.16,0.32,0.28,0.19,0.17,0.22,0.28,3.66,0.33,0.17,0.26,0.41,0.31,0.2,0.3,0.19,0.3,0.31,0.21,0.63,0.18,0.37,0.37,0.21,0.22,0.23,0.33,0.36,0.12,0.27,0.23,0.39,0.36,0.13,0.12,0.12,0.27,0.23,0.42,0.18,0.4,0.36,0.15,0.36,0.17,0.15,0.36,0.24,0.35,0.23,0.15,0.3,0.16,0.34,0.22,0.2,1.55,0.25,0.39,0.25,0.24,0.41,0.26,0.37,0.2,0.23,0.48,0.32,0.51,0.27,0.33,0.47,0.35,0.49,0.32,0.3,0.39,0.23,0.31,0.51,0.3,0.36,0.25,0.27,0.36,0.2,0.35,0.29,0.29,0.4,3.7,0.61,0.29,0.24,0.41,0.27,0.37,0.29,0.29,0.4,0.52,0.41,0.25,0.39,0.68,0.35,0.5,0.38,0.37,0.46,0.22,0.38,0.62,0.28,0.26,0.53,0.47,0.37,0.32,0.38,0.4,0.41,0.23,0.31,0.26,0.42,0.34,0.23,0.21,0.29,0.67,0.41,0.22,0.29,0.27,0.4,0.41,1.59,0.23,0.28,0.57,0.43,0.25,0.27,0.28,0.45,0.48,0.25,0.31,0.23,0.45,0.6,0.3,0.24,0.22,0.23,0.59,0.26,0.27,0.23,0.46,0.56,0.23,0.24,0.28,0.24,0.54,0.28,0.27,0.25,0.21,0.62,0.21,0.3,0.27,0.28,0.57,0.2,0.25,0.35,0.22,0.55,0.19,0.3,0.28,0.32,0.5,0.29,0.2,0.21,0.39,0.3,0.36,0.21,0.19,0.2,0.29,0.81,0.25,0.22,0.22,0.68,0.38,0.28,0.25,0.28,0.44,0.45,0.27,0.22,0.26,0.61,0.48,0.41,0.31,0.29,0.39,0.42,0.24,0.23,0.59,0.34,0.36,0.39,0.39,0.35,0.39,0.32,0.51,0.25,0.18,0.34,0.16,0.34,0.17,0.2,0.24,0.19,0.35,0.18,0.16,0.34,0.11,0.37,0.19,0.12,0.32,0.19,0.3,0.21,0.43,0.25,0.13,0.39,0.15,0.19,0.25,0.2,0.3,0.13,0.2,0.24,0.21,0.13,0.49,0.17,0.2,0.17,0.22,0.31,0.14,0.63,0.25,0.19,0.34,0.19,0.31,0.13,0.16,5.22,0.61,0.3,0.12,0.11,0.31,0.16,0.4,0.14,0.15,0.27,0.2,0.32,0.17,0.17,0.38,0.13,0.31,0.17,0.17,0.16,0.38,0.41,0.14,0.19,0.21,0.34,0.27,0.16,0.15,0.13,0.46,0.34,0.12,0.13,0.14,0.33,0.26,0.15,0.15,4.32,0.26,0.31,0.2,0.11,0.16,0.33,0.42,0.21,0.13,0.21,0.29,0.41,0.22,0.13,0.17,0.14,0.39,0.26,1.85,0.13,0.42,0.41,0.13,0.12,0.2,0.16,0.39,0.18,0.14,0.12,0.08,0.38,0.15,0.15,0.16,0.12,0.43,0.14,0.12,0.18,0.12,0.42,0.12,0.15,0.12,0.12,0.47,0.16,0.13,0.18,0.3,0.49,0.1,0.2,0.13,0.14,0.21,0.33,0.2,0.14,0.13,0.32,0.32,1.49,0.13,0.15,0.29,0.32,0.15,0.16,0.11,0.49,0.32,0.33,0.18,0.21,0.43,0.32,0.19,0.19,0.4,0.39,0.38,0.15,0.18,0.2,0.35,0.13,0.37,0.13,0.2,0.28,0.15,0.26,0.22,0.22,0.34,0.21,0.33,0.25,0.13,0.42,0.16,0.35,0.15,0.17,0.44,0.23,0.3,0.22,0.38,0.37,0.14,0.39,0.16,0.27,0.23,0.17,0.42,0.23,0.2,0.22,0.15,0.33,0.28,0.2,0.41,0.22,0.22,0.34,0.15,0.41,0.16,0.17,0.38,0.18,0.27,0.17,0.29,0.42,0.5,0.28,0.27,0.18,0.38,0.26,0.36,0.22,0.25,0.35,0.2,0.31,0.12,0.15,0.31,0.23,0.32,0.15,0.18,0.19,0.34,0.39,0.16,0.18,0.15,0.41,0.31,0.2,0.2,0.22,0.63,0.3,0.19,0.22,0.21,0.36,0.35,0.21,0.25,0.2,0.32,0.24,0.11,0.95,0.18,0.33,0.26,0.27,0.23,0.2,0.4,0.65,0.16,0.16,0.19,0.36,0.42,0.16,0.15,0.13,0.48,0.71,0.14,0.13,0.14,0.15,0.55,0.17,0.18,0.17,0.15,0.49,0.17,0.16,0.17,0.2,0.46,0.12,0.16,0.29,0.15,0.39,0.13,0.23,0.22,0.13,0.48,0.16,0.11,0.12,0.23,0.43,0.22,0.18,0.22,0.15,0.28,0.37,0.2,0.22,0.25,0.32,0.4,0.2,0.2,0.23,0.29,0.32,0.22,0.21,0.26,0.51,0.36,0.18,0.16,0.3,0.32,0.3,0.19,0.2,0.31,0.29,0.35,0.23,0.28,0.38,0.3,0.45,0.3,0.33,0.17,0.3,0.2,0.34,0.22,0.24,0.25,0.13,0.28,0.17,0.14,0.31,0.27,0.37,0.24,0.26,0.41,0.19,0.37,0.2,0.31,0.28,0.13,0.38,0.24,0.23,0.38,0.22,0.51,0.2,0.21,0.44,0.23,0.39,0.24,0.21,0.4,0.19,0.2,0.38,0.19,0.5,0.32,0.24,0.39,0.24,0.37,0.24,0.24,0.32,0.45,0.31,0.19,0.27,5.52,0.29,0.39,0.26,0.26,0.4,0.22,0.37,0.2,0.26,0.47,0.3,0.32,0.22,0.21,0.35,0.2,0.29,0.2,0.21,0.32,0.24,0.28,0.22,0.24,0.29,0.61,0.3,0.27,0.31,0.19,0.44,0.4,0.27,0.28,0.23,0.42,1.12,0.26,0.23,0.19,0.37,0.34,0.22,0.25,0.22,0.33,0.52,0.22,0.22,0.26,0.38,0.42,0.29,0.23,0.22,0.52,0.33,0.25,0.26,0.31,0.29,0.45,0.19,0.22,0.25,0.22,0.49,0.21,0.2,0.16,0.23,0.47,0.22,0.18,0.25,0.17,0.49,0.22,0.24,0.21,0.21,0.64,0.27,0.21,0.22,0.45,0.47,0.32,0.22,0.2,0.24,0.34,0.37,0.28,0.21,0.2,0.38,0.39,0.21,0.23,0.21,0.29,0.35,0.24,0.15,0.25,0.5,0.35,0.17,0.22,0.2,0.33,0.34,0.22,0.17,0.5,0.31,0.3,0.23,0.2,0.17,0.43,0.36,0.21,0.2,0.2,0.28,0.25,0.44,0.2,0.22,0.61,0.74,0.77,0.36,0.15,0.38,0.16,0.39,0.15,1.73,19.97,0.1,0.27,0.12,0.31,0.24,0.12,0.31,0.12,0.11,0.26,0.11,0.39,0.15,0.15,0.28,0.11,0.32,0.16,0.13,0.3,0.18,0.14,0.3,0.14,0.4,0.15,0.17,0.25,0.29,0.31,0.21,0.17,0.33,0.29,0.21,0.14,0.19,0.29,0.19,0.43,0.2,0.15,0.38,0.17,0.28,0.2,0.12,0.37,0.2,0.31,0.17,0.16,0.37,0.19,0.42,0.12,0.2,0.28,0.22,0.51,0.27,0.15,0.16,0.68,0.29,0.18,0.27,0.21,0.36,0.34,0.14,0.16,0.12,0.29,0.24,0.15,0.2,0.17,1.19,0.24,0.18,0.13,0.15,0.28,0.44,0.15,0.16,0.19,0.43,0.96,0.31,0.21,0.21,0.63,0.47,0.13,0.15,0.23,0.39,0.3,0.11,0.17,0.12,0.15,0.66,0.15,0.17,0.22,0.17,0.44,0.18,0.15,0.24,0.16,0.51,0.12,0.15,0.14,0.13,0.45,0.09,0.12,0.12,0.35,0.38,0.1,0.11,0.13,0.12,0.39,0.12,0.15,0.13,0.2,0.41,0.1,0.13,0.09,0.08,0.43,0.15,0.12,0.09,0.1,0.42,0.33,0.16,0.27,0.23,0.36,0.32,0.2,0.2,0.45,0.33,0.3,0.1,0.15,0.15,0.37,0.29,0.13,0.16,0.12,0.26,0.4,0.13,0.11,0.13,0.36,0.13,0.33,0.15,0.13,0.35,0.11,0.38,0.11,0.1,0.24,0.16,0.32,0.14,0.24,0.45,0.15,0.29,0.22,0.17,0.44,0.19,0.36,0.2,0.16,0.35,0.18,0.36,0.18,0.19,0.29,0.17,0.69,0.19,0.17,0.47,0.33,0.34,0.18,0.24,0.4,0.24,0.17,0.39,0.51,0.3,0.13,0.2,0.3,0.18,0.31,0.15,0.17,5.25,0.13,0.22,0.13,0.18,0.25,0.17,0.41,0.15,0.19,0.3,0.17,0.35,0.12,0.12,0.31,0.13,0.26,0.13,0.2,0.34,0.24,0.33,0.13,0.13,0.11,0.29,0.35,0.17,0.22,0.13,0.29,0.29,0.15,0.12,0.16,0.26,0.3,0.15,0.22,0.1,0.27,0.42,0.19,0.2,0.13,0.24,0.26,0.18,0.17,0.11,0.37,0.26,0.2,0.18,0.26,0.35,0.31,0.15,0.2,0.15,0.29,0.25,0.14,0.1,0.12,0.14,0.56,0.15,0.15,0.19,0.13,0.47,0.13,0.17,0.12,0.12,0.39,0.12,0.12,0.13,0.29,0.4,0.1,0.13,0.12,0.11,0.54,0.11,0.15,0.15,0.13,0.38,0.11,0.45,0.3,0.1,1.1,0.18,0.15,0.14,0.13,1.35,0.31,0.11,0.13,0.13,0.29,0.28,0.14,0.1,0.19,0.25,0.24,0.13,0.08,0.09,0.17,0.27,0.09,0.14,0.11,0.25,0.25,0.08,0.12,0.13,0.28,0.24,0.1,0.18,0.15,0.38,0.32,0.2,0.12,0.13,0.2,0.12,0.32,0.17,0.25,0.24,0.18,0.31,0.19,0.18,0.32,0.2,0.34,0.1,0.17,0.37,0.14,0.33,2.41,0.19,0.31,0.15,0.33,0.19,0.17,0.44,0.31,0.34,0.22,0.25,0.3,0.26,0.38,0.25,0.61,0.37,0.27,0.47,0.39,0.35,0.47,0.33,0.27,0.35,0.22,0.32,0.21,0.27,0.35,0.26,0.7,0.23,0.23,0.41,0.22,0.41,0.2,0.22,0.3,0.16,0.32,0.18,0.19,0.36,0.48,0.34,0.22,0.21,0.35,0.25,0.33,0.26,0.2,0.37,0.29,0.31,0.19,0.22,1.42,0.36,0.32,0.6,0.25,0.22,0.38,0.59,0.25,0.29,0.22,0.37,0.37,0.22,0.21,0.2,0.55,0.31,0.18,0.2,0.21,0.33,0.34,0.21,0.21,0.2,0.34,0.41,0.27,0.2,0.22,0.21,0.57,0.21,0.17,0.22,0.19,0.63,0.17,0.25,0.22,0.22,0.42,0.17,0.18,0.19,0.32,0.47,0.22,0.25,0.18,0.22,0.54,0.2,0.26,0.19,0.17,0.53,0.2,0.2,0.19,0.21,0.48,0.17,0.26,0.17,0.26,0.76,0.31,0.27,0.2,0.22,0.34,0.35,0.23,0.23,0.32,0.34,0.34,0.21,0.25,0.31,0.31,0.34,0.2,0.29,0.17,0.31,0.38,0.22,0.18,0.17,0.31,0.32,0.17,0.18,0.16,0.37,0.33,0.23,0.23,0.22,0.39,0.43,0.3,0.2,0.24,0.33,0.31,0.22,0.13,0.18,0.37,0.09,0.33,0.15,0.1,0.26,0.12,0.27,0.12,0.12,0.26,0.63,0.3,0.14,0.13,0.64,0.17,0.39,0.1,0.15,0.3,0.17,0.35,0.1,0.2,0.3,0.1,0.3,0.09,0.14,0.29,0.17,0.3,0.1,0.15,0.22,0.17,0.12,5.2,0.16,0.32,0.15,0.1,0.36,0.17,0.27,0.13,0.12,0.27,0.12,0.23,0.14,0.11,0.23,0.25,0.3,0.15,0.15,0.22,0.15,0.22,0.12,0.12,0.31,0.14,0.29,0.11,0.13,0.25,0.14,0.34,0.1,0.12,0.33,0.13,0.33,0.13,0.13,0.12,0.26,0.19,0.2,0.19,0.14,0.34,0.28,0.12,0.11,0.15,0.33,0.29,0.21,0.27,0.34,0.5,0.44,0.15,0.22,0.16,0.34,0.41,0.12,0.23,0.22,0.3,0.26,0.08,0.14,0.12,0.3,0.23,0.12,0.13,0.14,0.33,0.33,0.13,0.16,0.2,0.15,0.34,0.1,0.27,0.18,0.11,0.37,0.12,0.14,0.16,0.17,0.37,0.12,0.15,1.53,0.11,0.63,0.17,0.12,0.12,0.17,0.41,0.12,0.17,0.17,0.43,0.32,0.28,0.14,0.14,0.17,0.31,0.29,0.15,0.15,0.16,0.27,0.27,0.08,0.1,0.15,1.2,0.22,0.08,0.09,0.14,0.26,0.25,0.14,0.13,0.13,0.17,0.32,0.13,0.12,0.24,0.27,6.55,0.17,0.15,0.13,0.21,0.31,0.19,0.16,0.14,0.34,0.3,0.17,0.11,0.13,0.22,0.2,0.27,0.15,0.14,0.47,0.12,0.45,0.21,0.17,0.31,0.12,0.26,0.12,0.24,0.35,0.2,0.35,0.24,0.25,0.47,0.15,0.47,0.28,0.27,0.46,0.12,0.41,0.16,0.19,0.24,0.16,0.25,0.14,0.11,0.24,0.15,0.32,0.1,0.11,0.36,0.13,0.12,0.33,0.3,0.18,0.1,0.15,0.26,0.16,0.29,0.18,0.19,0.28,0.2,0.38,0.12,0.13,0.26,0.1,0.32,0.19,0.15,0.25,0.15,0.32,0.18,0.12,0.31,0.17,0.28,0.16,0.17,5.26,0.42,0.3,0.17,0.15,0.3,0.15,0.3,0.14,0.17,0.34,0.12,0.36,0.16,0.13,0.12,0.29,0.31,0.17,0.1,0.12,0.31,0.23,0.13,0.14,0.16,0.33,0.37,0.15,0.19,0.15,0.45,0.27,0.17,0.2,0.2,0.31,0.24,0.11,0.14,0.18,0.28,0.28,0.17,0.14,0.17,0.39,0.3,0.17,0.25,0.14,0.37,0.59,0.25,0.13,0.15,0.21,0.81,0.14,0.15,0.2,0.29,0.45,0.19,0.14,0.27,0.25,0.47,0.18,0.24,0.17,0.16,0.49,0.17,0.12,0.18,0.17,0.48,0.12,0.13,0.15,0.15,0.52,0.15,0.2,0.15,0.19,0.42,0.13,0.09,0.15,0.3,0.58,0.14,0.22,0.18,0.21,0.31,0.29,0.17,0.15,0.16,0.21,0.35,0.21,0.15,0.14,0.43,0.37,0.21,0.23,1.04,0.45,0.5,0.29,0.22,0.15,0.26,0.35,0.19,0.14,0.34,0.33,0.33,0.17,0.16,0.17,0.36,0.3,0.21,0.21,0.22,0.38,0.41,0.21,0.21,0.19,0.31,1.75,2.54,0.25,0.24,0.45,0.2,0.36,0.17,0.17,0.36,0.27,0.32,0.17,0.38,0.33,0.23,0.4,0.22,0.24,0.41,0.25,0.44,0.2,0.22,0.3,0.21,0.42,0.21,0.25,0.39,0.25,0.35,0.63,0.25,0.52,0.26,0.37,0.23,0.22,0.49,0.23,0.32,0.22,0.53,0.36,0.18,0.31,0.23,0.23,0.29,0.2,0.29,0.37,0.23,0.28,0.2,0.22,0.35,0.17,0.34,0.25,0.2,0.32,0.18,0.27,0.21,0.26,0.34,0.17,0.26,0.21,0.18,0.36,0.36,0.47,0.22,0.22,0.42,5.87,6.72,0.21,10.36,0.44,0.24,0.36,0.37,0.23,0.22,0.43,0.3,0.18,0.21,0.19,0.37,1.13,0.22,0.24,0.24,0.39,0.33,0.22,0.2,0.2,0.46,0.38,0.21,0.23,0.24,0.34,0.39,0.2,0.19,0.18,0.31,0.37,0.22,0.2,0.17,0.32,0.35,0.25,0.18,0.27,0.18,0.5,0.23,0.2,0.2,0.22,0.41,0.24,0.23,0.23,0.49,0.53,0.24,0.22,0.19,0.2,0.41,0.22,0.23,0.3,0.28,0.46,0.22,0.2,0.19,0.27,0.49,0.18,0.18,0.18,0.14,0.55,0.1,0.17,0.15,0.15,0.34,0.16,0.14,0.2,0.48,0.21,0.25,0.14,0.22,0.15,0.27,0.33,0.14,0.16,0.13,0.25,0.3,0.15,0.17,0.12,0.27,0.29,0.23,0.14,0.13,0.27,0.3,0.17,0.12,0.12,0.31,0.31,0.15,0.15,0.33,0.31,0.27,0.12,0.14,0.17,0.22,0.26,0.19,0.17,0.12,0.2,0.28,0.22,0.17,0.21,0.26,0.16,16.96,0.27,0.13,0.43,0.21,0.28,0.13,0.17,0.23,0.15,0.3,0.17,0.52,17.57,19.9,34.14,0.13,0.3,0.32,0.19,15.04,2.57,17.38,17.89,0.72,0.74,0.15,0.16,0.24,0.18,0.31,0.16,0.15,0.39,0.23,17.33,0.88,17.28,0.54,0.16,0.17,0.34,0.35,0.25,0.13,0.12,0.29,0.15,17.42,0.37,0.18,0.29,0.13,0.22,0.11,0.13,0.29,0.17,0.24,0.13,0.18,0.29,0.24,0.37,0.26,0.15,0.27,0.26,0.28,0.2,0.22,0.15,0.66,0.26,0.12,0.13,0.18,0.42,0.34,0.24,0.31,0.16,0.37,0.2,0.15,0.16,0.21,0.45,0.25,0.14,0.12,0.14,0.23,0.26,0.1,0.14,0.15,0.33,0.26,0.14,0.12,0.1,0.4,0.35,0.15,0.13,0.13,0.25,0.27,0.12,0.15,0.12,0.24,0.19,0.11,0.12,0.13,0.09,0.36,0.12,0.09,0.07,0.08,0.56,0.15,0.15,0.09,0.1,0.34,0.11,0.08,0.08,0.28,0.38,0.11,0.08,0.08,0.14,0.44,0.13,0.12,0.12,0.12,0.46,0.12,0.12,0.12,0.12,0.33,0.13,0.08,0.09,0.16,2.07,2.07,0.1,0.12,0.11,0.2,0.27,0.1,0.16,0.26,0.21,0.22,0.12,2.15,15.56,0.42,0.27,0.13,0.12,0.08,0.23,0.29,0.11,0.1,0.09,0.31,0.27,0.11,0.12,16.31,0.54,17.1,16.69,12.4,4.94,17.1,16.4,0.24,0.11,16.43,0.38,0.25,0.11,0.17,0.12,0.21,0.12,0.29,16.83,16.76,0.43,0.13,0.27,0.16,0.1,0.18,0.12,0.25,0.16,0.13,0.25,0.1,0.24,0.15,0.12,0.22,0.08,0.22,0.12,0.22,0.23,0.09,0.22,0.07,0.08,0.29,0.09,0.28,0.12,0.11,0.31,0.17,0.29,0.14,0.12,0.18,0.07,0.09,0.3,0.11,0.45,0.13,0.12,0.22,0.07,0.23,0.16,0.31,0.51,0.97,0.21,0.11,0.12,0.64,0.12,0.22,0.1,0.14,0.2,0.13,0.21,16.37,0.23,0.2,0.11,0.21,0.1,0.07,0.23,0.09,0.29,0.08,0.1,0.06,0.23,0.16,0.09,0.1,0.09,0.38,0.24,0.07,0.09,0.06,0.19,0.13,0.08,0.06,0.12,0.2,0.18,0.06,0.1,0.11,0.27,0.3,0.1,0.07,0.06,0.25,0.42,0.1,0.11,0.19,0.27,0.19,0.19,0.15,0.09,0.31,0.24,0.11,0.12,0.21,0.15,0.47,0.19,0.13,0.09,0.17,0.38,0.15,0.22,0.17,0.1,0.38,0.22,0.2,0.22,0.15,0.39,0.13,0.2,0.2,0.26,0.47,0.18,0.16,0.16,0.33,0.51,0.2,0.18,0.19,0.17,0.45,0.19,0.17,0.22,0.2,0.51,0.17,0.17,0.22,0.2,0.27,0.34,0.21,0.2,0.21,0.52,0.32,0.17,0.19,0.19,0.35,0.33,0.17,0.2,0.33,0.32,0.31,0.18,0.17,0.17,0.26,0.36,0.2,0.17,0.17,0.29,0.38,0.22,0.18,0.18,0.3,0.34,0.17,0.17,0.16,0.29,0.3,0.16,0.15,0.17,0.28,0.2,0.35,0.17,0.3,0.24,0.17,0.28,0.17,0.18,0.22,0.22,0.31,0.14,0.21,0.29,0.16,0.32,0.17,0.22,0.31,0.16,0.34,0.2,0.19,0.47,0.27,0.92,0.22,0.19,0.41,0.19,0.32,0.19,0.32,0.38,0.18,0.17,0.34,0.23,0.26,0.22,0.17,0.3,0.17,0.24,0.17,0.17,0.38,0.19,0.29,0.18,0.17,0.37,0.18,0.31,0.22,0.19,0.34,0.18,0.27,0.18,0.17,0.32,0.38,0.28,0.18,0.2,0.39,0.2,0.27,0.19,0.17,0.35,0.2,0.3,0.19,0.18,0.36,0.17,0.31,0.17,0.19,0.16,0.35,0.43,0.22,0.38,0.2,0.37,0.24,0.2,0.2,0.18,0.52,0.28,0.14,0.15,0.13,0.24,0.18,0.09,0.1,0.11,0.23,0.25,0.11,0.1,0.15,0.27,0.19,0.14,0.07,0.07,0.23,0.28,0.09,0.17,0.12,3.15,2.14,0.08,0.1,0.12,0.31,0.12,0.11,0.11,0.08,0.13,0.3,0.09,0.1,0.12,0.13,0.32,0.09,0.1,0.1,0.1,0.29,0.1,0.12,0.07,0.1,0.44,0.09,0.13,0.08,0.07,0.29,0.12,0.1,0.07,0.25,0.36,0.09,0.08,0.1,0.51,0.45,0.1,0.12,0.1,0.14,0.3,0.08,0.14,0.13,0.11,0.16,0.26,0.09,0.08,0.1,0.18,0.25,0.07,0.08,0.1,0.25,0.24,0.11,0.08,0.22,0.23,0.22,0.12,0.08,0.11,0.23,0.2,0.06,0.08,0.1,0.23,0.21,0.11,0.09,0.08,0.25,0.24,0.13,0.08,0.12,0.8,0.23,0.16,0.09,0.1,0.16,0.09,0.33,0.53,0.99,0.2,0.1,0.21,0.09,0.07,0.23,0.07,0.22,0.07,0.08,0.18,0.11,0.22,0.09,0.09,0.14,0.11,0.24,0.11,0.08,0.27,0.16,0.27,0.09,0.07,0.19,0.11,0.2,0.14,0.36,0.22,0.07,0.12,0.27,0.09,0.1,0.07,0.1,0.24,0.07,0.19,0.1,0.11,0.24,0.1,0.16,0.1,0.07,0.2,0.09,0.21,0.15,0.07,0.27,0.08,0.19,0.17,0.14,0.22,0.95,0.19,0.12,0.2,0.33,0.1,0.25,0.08,0.15,0.26,0.1,0.19,0.17,0.12,0.11,0.21,0.46,0.09,0.15,0.08,0.23,0.31,0.14,0.1,0.13,0.26,0.28,0.16,0.07,0.12,0.36,0.24,0.12,0.13,0.06,0.35,0.25,0.1,0.11,0.11,0.19,0.23,0.07,0.1,0.1,0.27,0.22,0.1,0.13,0.08,0.28,0.35,0.11,0.08,0.1,0.11,0.3,0.12,0.12,0.07,0.15,0.41,0.12,0.12,0.09,0.1,0.34,0.1,0.1,0.08,0.1,0.41,0.17,0.13,0.12,0.08,0.42,0.12,0.07,0.09,0.1,0.39,0.07,0.1,0.11,0.13,0.47,0.11,0.1,0.08,0.17,0.37,0.1,0.15,0.08,0.12,0.26,0.21,0.1,0.07,0.17,0.16,0.25,0.09,0.15,0.13,0.17,0.23,0.11,0.16,0.08,0.44,0.3,0.11,0.12,0.1,0.19,0.23,0.08,0.08,0.18,0.25,0.22,0.11,0.22,0.17,0.37,0.27,0.14,0.15,0.12,0.15,0.21,0.1,0.08,0.1,0.18,0.07,0.25,0.13,0.1,0.3,0.09,0.36,0.13,0.14,0.22,0.09,0.23,0.1,0.13,0.22,0.11,0.25,0.1,0.08,0.17,0.09,0.25,0.09,0.15,0.27,0.1,0.23,0.09,0.07,0.22,0.11,0.23,0.12,0.11,0.36,0.12,0.1,0.24,0.67,0.27,0.07,0.1,0.19,0.17,0.21,0.09,0.1,0.24,0.08,0.27,0.09,0.13,0.24,0.16,0.19,0.12,0.12,0.37,0.1,0.33,0.2,0.25,0.27,0.13,0.43,0.12,0.24,0.26,0.14,0.33,0.24,0.15,3.74,1.73,0.22,0.14,0.12,0.15,0.36,0.25,0.15,0.19,0.17,0.33,0.29,0.15,0.17,0.18,0.29,0.25,0.17,0.18,0.2,0.32,0.46,0.23,0.19,0.22,1.01,0.38,0.25,0.2,0.17,0.53,0.39,0.18,0.27,0.29,0.43,0.33,0.19,0.29,0.22,0.37,0.33,0.35,0.22,0.31,0.4,0.58,0.27,0.3,0.32,0.26,0.72,0.2,0.27,0.2,0.19,0.49,0.22,0.18,0.22,0.29,0.46,0.19,0.17,0.18,0.18,0.5,0.17,0.2,0.22,0.3,0.46,0.15,0.21,0.19,0.19,0.46,0.23,0.2,0.21,0.22,0.53,0.18,0.19,0.2,0.23,0.9,0.33,0.2,0.19,0.38,0.37,0.37,0.2,0.21,0.16,0.33,0.38,0.19,0.17,0.15,0.28,0.31,0.2,0.2,0.2,1.76,0.33,0.22,0.18,0.25,0.39,0.31,0.22,0.18,0.23,0.35,0.31,0.19,0.18,0.35,0.31,0.26,0.3,6.75,0.21,0.27,0.16,0.35,0.2,0.21,0.34,0.21,0.34,0.17,0.17,0.31,0.19,0.31,0.24,0.19,0.35,0.26,0.45,0.2,0.24,0.37,0.21,0.42,0.25,0.48,0.28,0.17,0.96,0.24,0.22,0.43,0.22,0.35,0.21,0.22,0.31,0.17,0.18,0.28,0.18,0.27,0.17,0.16,0.31,0.1,0.27,0.17,0.12,0.3,0.14,0.3,0.14,0.08,0.26,0.34,0.27,0.12,0.11,0.25,0.13,0.34,0.12,0.15,0.32,0.12,0.24,0.11,0.13,0.34,0.11,0.25,0.15,0.14,0.27,0.14,0.41,0.13,0.12,0.1,0.31,0.24,0.07,0.1,0.1,0.31,0.19,0.11,0.68,0.13,0.25,0.31,0.17,0.14,0.11,0.26,0.2,0.16,0.13,0.12,0.25,0.21,0.09,0.19,0.11,0.24,0.34,0.14,0.11,0.09,0.24,0.23,0.09,0.1,0.1,0.41,0.21,0.15,0.1,0.15,0.29,0.2,0.1,0.2,0.1,0.13,0.44,0.09,0.16,0.11,0.11,0.36,0.13,0.19,0.12,0.13,0.44,0.16,0.2,0.17,0.13,0.42,0.15,0.14,0.1,0.26,0.4,0.13,0.25,0.17,0.19,0.56,0.18,0.12,0.11,0.1,0.44,0.1,0.12,0.1,0.09,0.24,0.24,0.13,0.11,0.13,0.25,0.26,0.14,0.14,0.12,0.3,0.27,0.09,0.13,0.3,0.21,0.26,0.12,0.11,0.16,0.37,0.27,0.15,0.17,0.2,0.23,0.27,0.13,0.14,0.12,0.27,0.3,0.16,0.14,0.14,0.39,0.33,0.2,0.15,0.16,0.2,0.15,0.29,0.15,0.32,0.22,0.11,0.27,1.54,0.18,0.19,0.17,0.27,0.12,0.12,0.26,0.16,0.27,0.11,0.16,0.15,0.08,0.26,0.1,0.11,0.27,0.14,0.27,0.1,0.1,0.34,0.11,0.11,0.21,0.22,0.21,0.07,0.08,5.13,0.1,0.2,0.11,0.15,0.28,0.07,0.24,0.08,0.09,0.22,0.15,0.28,0.14,0.09,0.23,0.1,0.31,0.19,0.11,0.22,0.12,0.17,0.12,0.08,0.23,0.38,0.24,0.09,0.2,0.28,0.11,0.28,0.14,0.18,0.16,0.35,0.21,0.13,0.13,0.13,0.22,0.25,0.07,0.15,0.15,0.24,0.27,0.15,0.12,0.18,0.25,0.25,0.13,0.16,0.17,0.42,0.21,0.1,0.14,0.1,0.22,0.27,0.14,0.14,0.17,0.25,0.28,0.08,0.14,0.07,0.22,0.31,0.16,0.11,0.11,0.1,0.48,0.13,0.13,0.1,0.15,0.42,0.12,0.14,0.15,0.32,0.38,0.15,0.21,0.12,0.17,0.35,0.12,0.14,0.1,0.1,0.37,0.22,0.08,0.1,0.09,0.36,0.12,0.17,0.11,0.1,0.47,0.11,0.12,0.18,0.12,0.5,0.12,0.15,0.11,0.15,0.18,0.33,0.14,0.11,0.14,0.23,0.25,0.14,0.18,0.17,0.25,0.24,0.1,0.11,0.09,0.17,0.27,0.15,0.15,0.08,0.37,0.3,0.12,0.21,0.17,0.27,0.29,0.16,0.43,0.36,0.32,0.3,0.18,0.14,0.16,0.31,0.3,0.1,0.16,0.19,0.24,0.15,0.27,0.14,0.16,0.24,0.17,0.31,0.08,0.17,0.21,0.12,0.32,0.17,0.17,0.26,0.09,0.22,0.14,0.24,0.26,0.09,0.28,0.12,0.08,0.26,0.12,0.37,0.18,0.09,0.21,0.17,0.17,0.39,3.41,2.63,0.2,17.07,0.55,0.29,0.51,0.33,0.31,0.31,0.23,0.37,0.25,0.22,0.34,0.38,0.27,0.26,0.3,0.46,0.22,0.32,0.24,0.21,0.34,0.19,0.38,0.21,0.22,0.39,0.23,0.38,0.26,0.25,0.41,0.21,0.4,0.25,0.27,0.39,0.27,0.33,0.29,0.22,0.22,0.63,0.36,0.23,0.22,0.23,0.42,0.29,0.2,0.26,0.31,0.49,0.34,0.24,0.27,0.2,0.39,0.28,0.31,0.25,0.2,0.31,0.47,0.2,0.24,0.19,0.31,0.33,0.17,0.22,0.22,0.93,0.34,0.2,0.22,0.32,0.43,0.41,0.26,0.36,0.28,0.27,0.49,0.21,0.22,0.18,0.18,0.52,0.2,0.23,0.27,0.19,0.52,0.19,0.2,0.26,0.22,0.6,0.19,0.18,0.19,0.5,0.43,0.17,0.32,0.25,0.25,0.57,0.27,0.26,0.21,0.23,0.44,0.2,0.24,0.19,0.21,0.45,0.2,0.24,0.25,0.25,0.52,0.45,0.24,0.23,0.22,0.4,0.42,0.23,0.21,0.46,0.36,0.35,0.19,0.17,0.21,0.43,0.38,0.19,0.18,0.21,7.18,0.49,0.19,0.19,0.2,0.31,0.32,0.22,0.19,0.17,0.36,0.39,0.26,0.22,0.22,0.38,0.36,0.2,0.22,0.41,0.35,0.24,0.39,0.22,0.13,0.24,0.13,3.46,0.17,0.1,0.2,0.18,0.3,0.11,0.14,0.25,0.13,0.29,0.1,0.12,0.33,0.2,0.27,0.14,0.1,0.29,0.11,0.22,0.15,0.26,0.21,0.12,0.38,0.16,0.13,0.2,0.13,0.13,0.28,0.11,0.24,0.12,0.15,0.32,0.17,0.25,0.11,0.16,0.32,0.09,0.28,0.13,0.15,0.28,0.09,0.26,0.11,0.16,0.26,0.29,0.3,0.17,0.17,0.27,0.09,0.33,0.08,0.15,0.34,0.14,0.18,0.15,0.13,0.3,0.14,0.21,0.15,0.16,0.1,0.26,0.37,0.17,0.14,0.15,0.34,0.26,0.16,0.17,0.13,0.51,0.27,0.13,0.12,0.13,0.29,0.25,0.15,0.18,0.16,0.25,0.24,0.12,0.1,0.11,0.23,0.21,0.1,0.19,0.17,0.3,0.32,0.12,0.15,0.14,0.26,0.24,0.15,0.13,0.12,0.25,0.44,0.11,0.12,0.13,0.15,0.35,0.1,0.19,0.11,0.15,0.35,0.14,0.11,0.19,0.16,0.41,0.11,0.18,0.1,0.18,0.83,0.14,0.12,0.1,0.12,0.38,0.12,0.14,0.08,0.35,1.24,0.11,0.14,0.19,0.29,0.65,0.17,0.15,0.23,0.15,0.31,0.33,0.17,0.15,0.1,0.26,0.32,0.16,0.13,0.13,0.34,0.28,0.11,0.12,0.19,0.4,0.34,0.12,0.2,0.28,0.23,0.32,0.1,0.1,0.17,0.18,0.26,0.17,0.17,0.11,0.25,0.28,0.12,0.15,0.1,0.2,0.26,0.07,0.08,0.1,0.37,0.17,0.23,0.08,0.14,0.25,0.1,0.26,0.15,0.4,0.34,0.09,0.27,0.13,0.16,0.34,0.19,0.34,0.1,0.14,0.2,0.19,0.25,0.11,0.08,0.23,0.14,0.31,0.14,0.09,0.25,0.1,0.2,0.27,0.2,0.28,0.15,0.13,0.33,0.48,0.31,0.12,0.12,0.28,0.16,0.42,0.12,0.17,0.3,0.12,0.33,0.08,0.21,0.34,0.13,0.26,0.18,0.16,0.31,0.12,0.35,0.19,0.21,0.42,0.23,0.22,0.2,0.16,0.13,0.59,0.19,0.14,0.12,0.32,0.34,0.34,0.12,0.53,0.14,0.26,0.25,0.17,0.13,0.1,0.28,0.27,0.17,0.15,0.1,0.23,0.26,0.09,0.16,0.14,0.27,0.22,0.09,0.14,0.12,0.35,0.21,0.11,0.17,0.15,0.22,0.17,0.11,0.12,0.12,0.12,0.52,0.07,0.07,0.12,0.1,0.35,0.12,0.12,0.13,0.1,0.52,0.2,0.11,0.12,0.12,0.43,0.16,0.19,0.1,0.45,0.49,1.49,0.08,0.13,0.09,0.35,0.1,0.1,1.08,0.15,0.31,0.12,0.07,0.12,0.1,0.33,0.09,0.11,0.08,0.08,0.19,0.23,0.11,0.15,0.13,0.24,0.24,0.12,0.1,0.33,0.31,0.25,0.12,0.11,0.16,0.29,0.25,0.15,0.1,0.19,0.27,4.96,0.2,0.19,0.17,0.27,0.28,0.15,0.13,0.13,0.45,0.34,0.26,0.2,0.16,0.21,0.32,0.2,0.12,0.64,0.26,0.16,0.35,0.13,0.2,0.31,0.23,0.33,0.14,0.15,0.35,0.22,0.3,0.17,0.16,0.34,0.2,0.36,0.21,0.17,0.31,0.23,0.35,0.21,0.19,0.29,0.24,0.36,0.22,0.33,0.27,0.19,0.46,0.25,0.17,0.28,0.17,0.24,0.32,0.17,0.29,0.17,0.17,0.3,0.21,0.3,0.2,0.21,0.36,0.28,1.37,0.22,0.2,0.38,0.22,0.44,0.2,0.2,0.34,0.28,0.29,0.18,0.2,0.3,0.2,0.32,0.17,0.21,0.33,0.17,0.27,0.22,0.21,0.35,0.21,0.29,0.21,0.17,0.26,0.34,0.33,0.25,0.25,0.2,0.41,0.33,0.21,0.2,0.21,0.55,0.37,0.22,0.2,0.21,0.38,0.42,0.2,0.25,0.22,0.32,0.33,0.2,0.2,0.24,0.35,0.27,0.26,0.2,0.18,0.31,0.35,0.26,0.23,0.21,0.4,0.39,0.21,0.26,0.2,0.4,0.28,0.25,0.25,1.1,0.27,0.53,0.18,0.25,0.27,0.16,0.4,0.19,0.21,0.22,7.2,0.99,0.19,0.19,0.23,0.2,0.51,0.21,0.18,0.2,0.21,0.47,0.2,0.24,0.22,0.27,0.52,0.24,0.18,0.2,0.2,0.45,0.24,0.18,0.24,0.25,0.43,0.19,0.26,0.18,0.19,0.26,0.33,0.15,0.15,0.15,0.48,0.25,0.13,0.17,0.2,0.21,0.27,0.13,0.15,0.13,0.23,0.25,0.1,0.11,0.1,0.23,0.23,0.19,0.14,0.23,0.2,0.39,0.16,0.19,0.14,0.28,0.25,0.07,0.2,0.11,0.27,0.22,0.1,0.13,0.09,0.24,0.11,0.25,0.14,0.21,0.26,0.11,0.47,0.14,0.1,0.24,0.1,0.28,0.12,0.21,0.22,0.12,0.3,0.14,0.08,0.2,0.12,0.26,0.15,0.12,0.35,0.21,0.39,0.1,0.2,0.33,0.12,0.25,0.13,0.18,0.35,0.22,0.38,0.49,0.17,0.56,0.11,0.21,0.38,0.16,2.15,0.2,0.13,0.27,0.09,0.32,0.08,0.11,0.27,0.12,0.21,0.17,0.2,0.34,0.14,0.27,0.15,0.16,0.22,0.36,0.24,0.13,0.14,0.34,0.19,0.3,0.13,0.08,0.25,0.11,0.2,0.17,0.2,0.1,0.28,0.25,0.13,0.12,0.1,0.31,0.48,0.17,0.12,0.11,0.32,0.26,0.15,0.12,0.2,0.51,0.21,0.1,0.08,0.1,0.25,0.22,0.1,0.11,0.11,0.27,0.23,0.1,0.1,0.1,0.23,0.24,0.17,0.15,0.12,0.27,0.31,0.13,0.1,0.12,0.1,0.37,0.11,0.1,0.12,0.3,0.62,0.18,0.14,0.14,0.19,0.51,0.19,0.18,0.11,0.15,0.39,0.11,0.1,0.1,0.11,4.12,0.16,0.15,0.14,0.1,0.46,0.15,0.15,0.18,0.22,0.43,0.2,0.13,0.17,0.36,0.42,0.13,0.14,0.16,0.14,1.88,0.29,0.12,0.11,0.15,0.25,0.34,0.11,0.12,0.13,0.33,0.36,0.16,0.22,0.16,0.36,0.43,0.16,0.13,0.14,0.27,0.28,0.11,0.13,0.4,0.21,0.31,0.11,0.16,0.12,0.34,0.25,0.21,0.1,0.16,0.26,0.14,0.26,0.19,0.12,0.27,0.11,0.26,0.14,0.15,0.45,0.12,0.27,0.15,0.16,0.21,0.14,0.27,0.17,0.41,0.28,0.1,0.36,0.14,0.25,3.29,1.42,0.24,0.13,0.11,0.3,0.13,0.23,0.19,0.12,1.47,0.12,0.24,0.15,0.1,0.28,0.1,0.17,0.25,0.15,0.27,0.12,0.12,0.3,12.84,6.11,0.15,0.18,0.35,0.17,0.28,0.14,0.21,0.34,0.16,0.23,0.12,0.11,0.32,0.23,0.19,0.14,0.13,0.26,0.24,0.38,0.18,0.19,0.28,0.12,0.25,0.11,0.13,0.13,0.72,0.26,0.1,0.16,0.28,0.35,0.35,0.16,0.15,0.15,0.32,0.34,0.2,0.16,0.15,0.3,0.22,0.13,0.16,0.18,0.32,0.31,0.15,0.15,0.19,0.34,0.39,0.13,0.19,0.2,0.52,0.42,0.18,0.15,0.17,0.25,0.75,0.11,0.13,0.11,0.1,0.47,0.12,0.19,0.16,0.12,0.34,0.19,0.16,0.14,0.17,0.52,0.18,0.25,0.22,0.19,0.46,0.12,0.18,0.22,0.31,0.59,0.21,0.18,0.15,0.24,0.52,0.17,0.17,0.24,0.17,0.42,0.18,0.23,0.3,0.27,0.41,0.39,0.16,0.27,0.18,0.27,0.41,0.24,0.28,0.26,0.4,0.43,0.2,0.29,0.52,0.28,0.32,0.17,0.19,0.17,0.3,0.32,0.2,0.22,0.25,0.38,0.44,0.22,0.18,0.17,0.32,0.32,0.22,0.17,0.24,0.47,0.38,0.21,0.18,0.21,0.32,0.34,0.2,0.19,0.36,0.27,0.24,0.35,0.29,0.21,0.29,0.19,0.35,0.17,0.19,0.27,0.18,0.35,0.2,0.21,0.31,0.22,0.43,0.25,0.19,0.39,0.21,0.37,0.25,0.29,0.37,0.21,0.37,0.19,0.34,0.33,0.24,0.38,0.22,0.29,0.34,0.18,0.24,0.43,0.25,0.46,0.25,0.24,0.39,0.34,0.38,0.28,0.27,0.41,0.22,0.55,0.36,0.34,0.46,0.27,0.38,0.28,0.3,0.36,0.51,0.4,0.3,0.25,0.36,0.27,0.41,0.22,0.22,0.33,0.21,0.34,0.28,0.27,0.28,0.48,0.44,0.29,0.24,0.29,0.4,0.37,0.32,0.33,0.26,0.4,0.4,0.24,0.19,0.25,0.74,0.36,0.25,0.22,0.31,0.44,0.51,0.25,0.27,0.29,0.37,0.42,0.29,0.22,0.22,0.51,0.4,0.33,0.25,0.23,0.23,9.02,0.4,0.23,0.22,0.23,0.56,0.27,0.22,0.25,0.4,0.46,0.27,0.34,0.56,0.29,0.52,0.22,0.27,0.2,0.14,0.56,0.17,0.15,0.15,0.21,3.2,0.19,0.18,0.19,0.21,0.57,0.18,0.29,0.18,0.22,0.42,0.52,0.2,0.16,0.36,0.29,0.36,0.21,0.33,0.27,0.49,0.3,0.24,0.2,0.22,0.33,0.41,0.53,1.01,0.82,1.05,0.32,0.22,0.16,0.23,0.53,0.45,0.17,0.28,0.24,0.59,0.34,20.91,0.19,0.62,0.38,0.45,0.28,0.38,0.24,0.35,0.42,0.19,0.19,0.28,0.42,0.23,0.55,0.2,0.22,0.37,0.15,0.41,0.22,0.23,0.37,0.15,0.33,0.19,0.2,0.38,0.15,0.35,0.17,0.33,0.36,0.19,0.3,0.18,0.19,0.33,0.19,0.38,0.18,0.2,0.41,0.25,0.32,0.12,0.12,0.4,0.16,0.25,0.16,0.16,0.41,0.29,0.2,0.3,0.24,0.46,0.17,0.19,0.35,0.39,0.52,0.18,0.16,0.36,0.24,0.44,0.15,0.25,0.38,1.95,0.37,0.23,0.22,0.49,0.27,0.38,1.74,0.19,0.37,0.12,0.38,0.17,0.17,0.31,0.16,0.33,0.21,0.11,0.13,0.58,0.31,0.22,0.18,0.17,0.3,0.31,0.19,0.2,0.18,0.32,0.22,0.16,0.13,0.21,0.31,0.25,0.24,0.15,0.15,0.36,0.43,0.17,0.16,0.19,0.52,0.34,0.16,0.26,0.17,0.54,0.3,0.26,0.31,0.19,0.39,0.38,0.15,20.03,0.51,19.4,19.3,0.37,19.67,0.58,0.33,0.67,0.25,0.28,0.32,0.3,0.65,0.25,0.32,0.23,18.9,0.57,20.33,1.57,22.68,0.71,0.55,0.17,0.24,2.54,18.61,20.13,0.39,0.32,0.24,0.17,2.05,18.81,19.11,19.4,0.5,0.54,0.34,0.19,0.2,0.24,0.76,0.2,0.3,0.18,0.26,0.31,0.42,0.3,0.31,0.61,0.3,0.43,0.35,0.5,0.35,8.22,13.72,0.53,0.25,0.13,0.32,0.43,0.29,0.3,0.29,0.33,0.3,0.56,0.48,0.35,0.51,0.39,0.47,19.07,0.5,1,20.81,0.8,0.27,0.39,0.27,0.37,0.26,0.19,0.21,0.29,0.19,0.49,0.18,0.17,0.36,0.21,0.31,0.17,0.17,0.32,0.21,0.41,0.22,0.2,0.53,0.38,0.42,0.24,0.18,0.5,0.3,0.45,0.28,0.51,0.48,0.25,0.31,0.16,0.24,0.41,0.2,0.51,0.23,0.21,0.52,0.15,0.3,0.16,0.14,0.26,0.12,0.15,0.31,0.15,0.3,0.11,0.18,0.3,0.22,0.23,0.13,0.13,0.3,0.37,0.3,0.11,0.14,0.26,0.17,0.24,0.15,0.17,0.37,0.16,0.35,0.08,0.1,0.31,0.17,0.29,0.12,0.15,0.33,0.16,0.4,0.13,0.22,0.22,5.45,0.24,0.16,0.13,0.2,0.48,0.39,0.17,0.16,0.21,0.32,0.31,0.15,0.15,0.18,0.32,0.25,0.12,0.17,0.13,0.3,0.23,0.11,0.15,0.17,0.35,0.28,0.12,0.11,0.15,0.31,0.39,0.17,0.12,0.16,0.3,0.48,0.21,0.22,0.2,0.18,0.52,0.12,0.29,0.2,0.28,0.44,0.17,0.17,0.21,0.22,0.63,0.17,0.17,0.17,0.17,0.64,0.2,0.19,0.2,0.24,0.55,0.21,0.21,0.23,0.34,0.48,0.22,0.21,0.16,0.16,0.53,0.17,0.17,0.17,0.19,0.41,0.21,0.66,0.16,0.17,0.34,0.3,0.24,0.21,0.18,0.44,0.33,0.21,0.22,0.17,0.29,0.3,0.17,0.18,0.35,0.29,0.32,0.16,0.17,0.14,0.36,0.32,0.17,0.17,0.17,0.24,0.33,0.16,0.17,0.19,0.3,0.32,0.19,0.17,0.2,0.35,0.23,0.36,0.2,0.22,0.34,0.17,0.33,0.16,0.33,0.33,0.19,0.36,0.19,0.2,0.34,0.26,0.39,0.22,0.15,0.28,0.23,1.82,0.27,0.17,0.27,0.18,0.32,0.17,0.15,0.29,0.18,0.29,0.16,0.23,0.38,0.25,0.28,0.19,0.48,0.32,0.2,0.19,0.33,0.18,0.36,0.17,0.19,0.37,0.17,0.29,0.19,0.16,0.37,0.18,0.25,0.19,0.2,0.32,0.17,0.4,0.17,0.22,0.3,0.15,0.24,0.19,0.15,0.3,0.45,0.29,0.58,0.19,0.38,0.23,0.38,0.2,0.17,0.15,0.34,0.34,0.2,1.41,0.18,0.32,0.22,0.2,0.17,0.18,0.33,1.37,0.14,0.14,0.1,0.26,0.19,0.1,0.07,0.08,0.47,0.23,0.12,0.09,0.1,0.21,0.28,0.09,0.13,0.11,0.23,0.22,0.12,0.13,0.15,0.23,0.19,0.15,0.1,0.09,0.1,0.54,0.23,0.16,0.12,0.14,0.37,0.11,0.12,0.17,0.22,0.39,0.1,0.13,0.26,0.15,0.44,0.12,0.15,0.16,0.14,0.31,0.19,2,0.13,0.19,0.36,0.1,0.12,0.1,0.16,1.17,0.12,0.12,0.15,0.15,0.31,0.24,0.15,0.14,0.26,0.21,0.25,0.15,0.13,0.13,0.22,0.25,0.13,0.1,0.1,0.28,0.24,0.11,0.11,0.12,0.15,0.25,0.14,0.1,0.13,0.5,0.3,0.13,0.09,0.1,0.3,0.35,0.12,0.09,0.38,0.27,0.25,0.09,0.12,0.15,0.28,0.09,0.28,0.1,0.16,0.25,0.09,0.2,0.49,0.08,0.19,0.08,0.29,0.11,0.13,0.16,0.09,0.24,0.08,0.07,0.26,0.09,0.21,0.09,0.28,0.22,0.08,0.23,0.09,0.08,0.21,0.11,0.27,0.08,0.1,0.22,0.09,0.23,0.12,0.11,0.2,0.07,0.22,0.13,0.09,0.32,0.12,0.09,0.25,0.08,0.27,0.1,0.09,5.16,0.27,0.14,0.1,0.12,0.25,0.11,0.15,0.05,0.07,0.2,0.1,0.17,0.06,0.08,0.21,0.09,0.25,0.07,0.12,0.2,0.09,0.25,0.1,0.08,0.22,0.1,0.2,0.08,0.07,0.09,0.31,0.13,0.08,0.07,0.09,0.22,0.12,0.07,0.1,0.08,0.21,0.18,0.07,0.08,0.09,0.22,0.16,0.09,0.08,0.07,0.21,0.53,0.07,0.07,0.06,0.26,0.22,0.1,0.09,0.07,0.27,0.21,0.11,0.1,0.07,0.22,0.21,0.1,0.1,0.09,0.09,0.33,0.09,0.12,0.1,0.35,0.3,0.12,0.1,0.08,0.12,0.39,0.09,0.07,0.06,0.07,0.33,0.05,0.08,0.1,0.15,0.3,0.08,0.08,0.07,0.18,0.32,0.1,0.11,0.07,0.08,0.31,0.07,0.1,0.08,0.1,0.38,0.07,0.63,0.07,0.1,0.5,0.17,0.07,0.07,0.12,0.19,0.32,0.11,0.08,0.1,0.18,0.23,0.09,0.1,0.11,0.22,0.2,0.12,0.09,0.07,0.15,0.23,0.11,0.06,0.07,1.73,0.23,0.09,0.15,0.15,0.17,0.27,0.12,0.08,0.1,0.17,0.19,0.08,0.06,0.17,0.23,0.25,0.08,0.12,0.11,0.15,0.09,0.26,0.09,0.07,0.17,0.09,0.21,0.08,0.1,0.12,0.09,0.2,0.09,0.07,0.28,0.11,0.27,0.11,0.08,0.21,0.11,0.23,0.08,0.17,0.21,0.06,0.2,0.1,0.11,0.23,0.05,0.1,0.23,0.12,0.15,0.08,0.12,0.32,0.12,0.15,0.11,0.15,0.24,0.15,0.22,0.12,0.11,0.29,0.1,0.25,0.07,0.12,0.29,0.37,0.27,0.21,0.1,0.27,0.22,0.22,0.14,0.19,0.31,0.2,0.29,0.09,0.1,0.28,0.16,0.28,0.15,0.16,0.27,0.1,0.4,0.15,0.2,0.2,0.36,0.29,0.18,0.17,0.17,0.35,0.31,0.14,0.2,0.21,0.38,0.32,0.22,0.19,0.17,0.31,0.32,0.18,0.21,0.18,0.34,0.32,0.2,0.17,0.18,0.32,0.31,0.17,0.22,0.16,0.3,0.34,0.2,0.17,0.15,0.62,0.29,0.16,0.17,0.15,0.23,0.43,0.16,0.18,0.17,0.16,0.38,0.16,0.15,0.2,0.15,0.33,0.19,0.16,0.19,0.14,0.7,0.21,0.2,0.2,0.15,0.42,0.14,0.16,0.16,0.3,0.46,0.17,0.25,0.15,0.15,0.44,0.16,0.17,0.18,0.15,0.37,0.18,0.17,0.13,0.17,0.24,0.3,0.15,0.15,0.2,0.27,0.31,0.2,2.49,0.17,0.22,0.32,0.13,0.16,0.28,0.22,0.33,0.15,0.14,0.16,0.25,0.3,0.15,0.15,0.16,0.25,0.3,0.17,0.17,0.14,0.28,0.29,0.17,0.18,0.2,0.35,0.3,0.19,0.14,0.16,0.28,0.17,0.29,0.15,0.24,0.26,0.17,3.52,0.17,0.22,0.32,0.19,0.32,0.17,0.19,0.24,0.19,0.34,0.18,0.22,0.42,0.21,5.57,0.18,0.26,0.37,0.22,0.33,0.21,0.2,0.29,0.17,0.32,0.16,0.25,0.3,0.18,0.17,0.3,0.16,0.23,0.12,0.11,0.2,0.1,0.12,0.11,0.1,0.24,0.07,0.17,0.08,0.08,0.24,0.07,0.33,0.11,0.13,0.24,0.12,0.15,0.07,0.08,0.22,0.22,0.23,0.1,0.1,0.24,0.08,0.23,0.1,0.09,0.22,8.2,10.12,0.12,0.13,0.1,0.22,1.68,0.11,0.07,0.07,0.25,0.14,0.1,0.1,0.07,0.22,0.23,0.09,0.09,0.1,0.29,0.18,0.11,0.08,0.06,0.23,0.17,0.07,0.1,0.1,0.22,0.21,0.09,0.1,0.09,0.23,0.16,0.1,0.08,0.09,0.22,0.27,0.07,0.08,0.08,0.12,0.35,0.1,0.08,0.11,0.32,0.38,0.1,0.13,0.14,0.1,0.4,0.13,0.12,0.08,0.1,0.36,0.14,0.15,0.07,0.1,0.38,0.1,0.12,0.42,0.11,0.38,0.1,0.12,0.09,0.1,0.38,0.99,0.09,0.12,0.23,0.16,0.23,0.11,0.11,0.15,0.24,0.29,0.12,0.08,0.11,0.22,0.21,0.08,0.09,0.11,0.23,0.22,0.07,0.05,0.09,0.25,0.23,0.13,0.08,0.08,0.13,0.21,0.1,0.08,0.2,0.15,0.25,0.1,0.09,0.09,0.25,0.2,0.12,0.09,0.08,0.19,0.25,0.12,0.08,0.08,0.22,0.08,0.23,0.07,1.44,0.27,0.12,0.26,0.09,0.12,0.32,0.35,0.25,0.1,0.25,0.19,0.08,0.25,0.08,0.07,0.21,0.08,0.25,0.08,0.11,0.23,0.1,0.23,0.07,0.1,0.24,0.1,0.07,0.23,0.1,0.27,0.11,0.1,0.32,0.1,0.28,0.12,0.11,0.25,0.22,0.21,0.11,0.17,0.26,0.1,0.32,0.07,0.1,0.22,0.07,0.17,0.1,0.1,0.23,0.1,0.19,0.06,0.07,0.22,0.16,0.32,0.11,0.16,0.23,0.1,0.26,0.11,0.12,0.23,0.42,0.27,0.17,0.13,0.12,0.26,0.29,0.09,0.14,0.12,0.29,0.27,0.12,0.09,0.1,0.24,0.16,0.09,0.1,0.1,0.25,0.27,0.14,0.13,0.08,0.26,0.17,0.1,0.11,0.12,0.49,0.21,0.1,0.1,0.08,0.23,0.21,0.12,0.1,0.1,0.25,0.33,0.12,0.1,0.09,0.1,0.42,0.1,0.11,0.1,0.1,0.43,0.12,0.1,0.09,0.1,0.3,0.07,0.09,0.12,0.22,0.29,0.1,0.08,0.12,0.11,0.39,0.14,0.11,0.1,0.13,0.34,0.14,0.15,0.12,0.1,0.38,0.15,0.13,0.12,0.12,0.49,0.11,0.16,0.15,0.15,0.21,0.24,0.11,0.13,0.36,0.3,0.29,0.13,0.19,0.13,0.24,5.3,0.17,0.08,0.15,0.24,0.25,0.1,0.09,0.1,0.28,0.25,0.12,0.12,0.11,0.2,0.26,0.13,0.11,0.13,0.32,0.25,0.1,0.14,0.32,0.27,0.19,0.18,0.15,0.15,0.31,0.1,0.31,0.13,0.12,0.2,0.17,0.28,0.13,0.18,0.25,0.18,0.28,0.18,0.19,0.38,0.16,0.27,0.12,0.12,0.33,0.17,0.25,0.1,0.27,0.28,0.22,0.33,0.15,0.19,0.3,0.12,0.34,0.22,0.19,0.36,0.17,0.2,0.33,0.17,0.26,0.19,0.2,0.32,0.18,0.28,0.18,0.16,0.31,0.19,0.32,0.18,0.16,0.32,0.29,0.31,0.19,0.2,0.33,0.21,0.24,0.16,0.22,0.36,0.21,0.26,0.18,0.2,0.33,0.21,0.36,0.2,0.18,0.32,0.18,0.46,0.24,0.21,0.2,0.46,0.29,0.18,0.19,0.2,0.42,0.27,0.21,0.21,0.15,0.32,0.31,0.17,0.2,0.16,0.33,0.25,0.15,0.2,0.19,0.35,0.34,0.2,0.22,0.21,0.34,0.38,0.21,1.6,0.17,0.31,0.25,0.18,0.17,0.17,0.42,0.32,0.19,0.19,0.18,0.2,0.52,0.2,0.2,0.22,0.21,0.51,0.18,0.21,0.17,0.22,0.38,0.16,0.18,0.17,0.18,0.54,0.19,0.19,0.16,0.22,0.41,0.22,0.21,0.18,0.29,0.41,0.17,0.18,0.17,0.21,0.51,0.17,0.18,0.2,0.17,0.52,0.17,0.18,0.19,0.16,0.3,0.34,0.2,0.16,0.2,0.25,0.35,0.18,0.18,0.22,0.27,0.32,0.17,0.17,0.33,0.26,0.36,0.21,0.17,0.19,0.39,0.34,0.24,0.22,0.21,0.37,0.33,0.22,0.19,0.18,0.31,0.32,0.17,0.18,0.15,0.45,0.17,0.27,0.12,0.13,0.27,0.12,0.27,0.09,0.17,0.2,0.16,0.32,0.15,0.21,0.24,0.15,0.38,0.24,0.22,0.27,0.2,0.35,0.15,0.16,0.39,0.11,0.3,0.15,0.15,0.37,0.13,0.26,0.17,0.14,0.38,0.16,0.29,0.15,0.3,0.35,0.24,0.12,0.32,0.12,0.33,0.16,0.21,0.3,0.2,0.27,0.14,0.13,0.25,0.16,0.34,0.19,0.16,0.29,0.12,0.54,0.24,0.2,0.29,0.32,0.4,0.15,0.12,0.28,0.25,0.33,0.14,0.15,0.29,0.17,0.27,0.15,0.13,0.29,0.13,0.27,0.17,0.15,0.11,0.31,0.33,0.12,0.1,0.16,0.28,0.37,0.12,0.14,2.51,0.29,0.34,0.14,0.1,0.16,0.56,0.56,0.13,0.17,0.12,0.27,0.41,0.08,0.17,0.11,0.3,0.27,0.15,0.16,0.16,0.31,0.35,0.21,0.11,0.17,0.27,0.41,0.15,0.17,0.15,0.16,0.43,0.19,0.16,0.13,0.44,0.5,0.15,0.22,0.18,0.2,0.34,0.1,0.11,0.13,0.12,3.68,0.26,0.12,0.13,0.12,0.41,0.14,0.12,0.15,0.18,0.49,0.12,0.11,0.16,0.16,0.29,0.29,0.12,0.1,0.35,0.19,0.41,0.18,0.1,0.1,0.32,0.24,0.09,0.11,0.12,0.23,0.28,0.07,0.17,0.08,0.19,0.25,0.14,0.12,0.08,0.33,0.24,0.13,0.12,0.13,0.19,0.29,0.11,0.09,0.29,0.26,0.21,0.18,0.11,0.1,0.31,0.27,0.26,0.13,0.17,0.3,0.12,0.23,0.12,0.11,0.25,0.08,0.25,0.12,0.12,0.33,0.11,0.24,0.1,0.14,0.21,0.13,0.29,0.11,0.34,0.24,0.12,0.24,0.13,0.11,0.24,0.12,0.27,0.14,0.1,0.26,0.1,0.11,0.27,0.09,0.22,0.16,0.13,0.22,0.1,0.37,0.16,0.12,0.27,0.14,0.27,0.12,0.15,0.24,0.31,0.25,0.08,0.11,0.31,0.16,0.47,0.15,0.12,0.23,0.09,0.28,0.11,0.11,0.27,0.1,0.2,0.11,0.12,0.23,0.1,0.28,0.11,0.14,0.08,0.32,0.3,0.09,0.11,0.1,0.45,0.2,0.07,0.1,0.09,0.25,0.2,0.12,0.14,0.11,0.23,0.26,0.12,0.12,0.12,0.23,0.27,0.13,0.14,0.13,0.67,0.4,0.17,0.13,0.13,0.26,0.25,0.1,0.16,0.14,0.43,0.27,0.11,0.15,0.1,0.1,0.47,0.09,0.17,0.15,0.1,0.41,0.16,0.12,0.12,0.1,0.5,0.15,0.11,0.2,0.19,0.4,0.1,0.11,0.1,0.14,0.38,0.1,0.12,0.17,0.39,0.42,0.09,0.08,0.08,0.11,0.38,0.11,0.16,0.15,0.19,0.4,0.13,0.13,0.11,0.14,0.3,0.34,0.1,0.11,0.13,0.35,0.35,0.23,0.17,0.22,0.28,0.31,0.16,0.23,0.29,0.27,0.37,0.18,0.28,0.19,0.32,0.29,0.22,0.21,0.15,0.26,0.28,0.15,0.17,0.14,0.28,0.33,0.22,0.15,0.18,0.47,0.16,0.29,0.15,0.16,0.32,0.17,0.35,0.17,0.38,0.28,0.17,0.3,1.16,0.17,0.34,0.19,0.38,0.24,0.23,0.24,0.17,0.32,0.17,0.2,0.27,0.2,0.32,0.19,0.19,0.58,0.33,0.27,0.36,0.24,0.41,0.2,0.26,0.37,0.39,0.51,0.22,0.2,0.34,0.21,0.34,0.18,0.63,0.38,0.2,0.36,0.24,0.2,0.46,0.22,0.31,0.21,0.18,0.35,0.25,0.44,0.2,0.21,0.37,0.25,0.49,0.2,0.2,0.72,0.42,0.5,0.18,0.27,0.18,0.32,0.34,0.22,0.2,0.32,0.42,0.39,0.17,0.24,0.18,0.39,0.34,0.27,0.18,0.19,0.33,0.48,0.28,0.24,0.24,0.45,0.37,0.25,2.19,0.17,0.47,0.39,0.21,0.19,0.21,0.34,0.41,0.17,0.36,0.2,0.4,0.31,0.18,0.16,0.16,0.18,5.92,0.21,0.15,0.2,0.17,0.57,0.17,4.7,0.21,0.17,0.48,0.16,0.21,0.22,0.23,0.42,0.18,0.64,0.24,0.25,0.55,0.18,0.27,0.23,0.17,2.12,0.15,0.17,0.17,0.19,0.38,0.16,1.18,0.17,0.17,0.94,0.36,0.22,0.17,3.77,0.42,0.46,0.17,0.29,0.26,0.36,0.82,1.63,0.17,0.25,0.29,0.31,0.21,0.11,0.14,0.27,0.26,0.23,0.1,0.1,0.34,0.71,0.08,0.09,2.03,0.34,0.3,0.14,0.11,0.08,0.16,0.27,0.1,0.11,0.14,1.42,0.24,0.08,0.09,0.13,2.42,0.1,1.65,0.11,0.09,0.23,0.07,0.31,0.15,0.49,0.27,0.09,0.25,0.08,0.12,0.35,0.82,0.32,0.11,0.11,0.29,0.11,0.22,0.16,0.46,0.35,0.13,0.45,0.1,0.1,0.22,0.85,0.33,0.15,0.13,0.25,0.1,0.29,0.17,0.09,0.38,0.1,0.12,0.3,0.2,0.43,0.16,0.11,0.37,0.12,0.37,0.1,0.18,0.67,0.2,0.19,0.17,0.14,0.23,0.13,0.27,0.12,0.12,1.96,0.09,0.26,0.13,0.1,0.24,0.11,1.83,0.13,0.12,0.32,0.14,0.35,0.12,0.08,0.1,0.35,0.23,0.09,0.13,0.1,0.54,0.26,0.17,0.11,0.82,0.29,0.3,0.1,0.18,0.12,0.33,0.31,0.15,0.14,0.13,0.27,0.27,0.16,0.08,0.1,0.25,0.31,0.11,0.16,0.19,0.27,0.38,0.15,0.13,2.34,0.27,0.6,0.09,0.33,0.14,0.13,0.55,0.12,0.15,0.13,0.12,0.36,0.2,0.23,0.14,0.12,0.42,0.25,0.13,0.12,0.12,0.71,0.21,0.2,0.23,0.19,0.43,0.12,0.1,0.12,0.29,0.52,0.17,0.12,0.18,0.18,0.56,0.15,0.18,0.21,0.18,0.19,0.32,0.12,0.2,0.11,0.29,0.23,0.16,2.74,0.19,0.35,0.28,0.23,0.19,0.17,0.37,0.55,0.16,0.13,0.41,0.28,0.22,0.15,0.14,0.12,0.29,0.3,0.25,0.09,0.07,0.28,0.27,0.17,0.17,0.2,0.24,0.22,0.13,0.1,0.12,0.42,0.18,0.34,0.11,0.19,0.28,0.16,0.31,0.2,0.38,0.3,0.19,0.31,0.12,0.09,0.3,0.18,0.33,0.1,0.16,0.34,0.15,0.23,0.13,0.13,0.21,0.19,0.31,0.29,0.14,0.36,0.18,0.34,0.11,0.14,0.28,0.12,0.24,0.11,0.31,0.4,0.17,0.13,0.34,0.17,0.33,0.15,0.16,0.31,0.18,0.35,0.17,0.15,0.3,0.23,0.32,0.17,0.17,0.28,0.11,0.39,0.17,0.17,0.23,0.15,0.31,0.11,0.17,0.26,0.3,0.19,0.16,0.12,0.35,0.32,0.32,0.1,0.21,0.17,0.35,0.31,0.19,0.15,0.15,0.27,0.44,0.17,0.21,0.35,3.6,0.33,0.31,0.13,0.21,0.32,0.18,0.11,0.17,0.15,0.5,0.28,0.13,0.95,0.12,0.28,0.33,0.18,0.15,0.2,0.37,0.27,0.14,0.1,0.16,0.1,0.51,0.16,0.12,0.13,0.14,0.56,0.08,0.13,0.16,0.12,0.38,0.14,0.2,0.12,0.16,0.41,0.18,0.14,0.14,0.24,0.56,0.18,0.15,7.28,0.14,0.5,0.25,0.24,0.12,0.24,2.17,0.18,0.16,0.3,0.2,0.24,0.5,0.15,0.15,0.32,0.34,0.32,0.17,0.16,0.31,0.24,0.36,0.17,0.13,0.11,0.39,0.27,0.23,0.18,0.21,2.6,0.32,0.21,0.19,0.29,0.37,0.39,0.22,0.23,0.2,0.45,0.36,0.26,0.19,0.21,0.33,0.37,0.27,0.21,0.28,0.38,0.26,0.54,0.31,0.34,0.53,0.49,0.43,0.29,0.29,0.5,0.23,0.32,0.2,0.25,0.38,0.26,0.43,0.3,0.22,0.49,0.21,0.38,0.22,0.26,0.43,0.29,0.39,0.2,0.4,0.38,0.22,0.22,0.37,0.2,0.37,0.26,0.21,0.47,0.32,0.38,0.25,0.25,0.4,0.2,0.28,0.2,0.19,0.39,0.22,0.46,0.17,0.23,0.37,0.22,0.41,0.19,0.23,0.39,0.34,0.31,0.16,0.19,0.33,0.2,0.28,0.17,0.24,0.3,0.19,0.29,0.2,0.25,0.31,0.25,0.29,0.2,0.18,0.2,0.32,0.43,0.3,0.21,0.26,0.44,0.28,0.23,0.2,0.2,0.59,0.43,0.2,0.19,0.19,0.38,0.34,0.2,0.2,0.2,0.38,0.34,0.17,2.1,0.19,0.37,0.25,0.22,0.24,0.19,0.33,0.44,0.2,0.2,0.17,0.2,0.62,0.2,0.19,0.2,0.39,0.45,0.18,0.3,0.28,0.2,0.46,0.17,0.19,0.16,0.19,0.46,0.19,0.19,0.19,0.16,0.45,0.18,0.16,0.2,0.17,0.47,0.25,0.25,0.3,0.17,0.38,0.17,0.13,0.17,0.21,0.39,0.14,0.14,0.12,0.13,2.44,0.3,0.12,0.16,0.19,0.28,0.2,1.36,0.17,0.13,0.26,0.29,0.12,0.15,0.15,0.46,0.41,0.22,0.11,0.15,0.19,0.29,0.1,0.09,0.33,0.23,0.3,0.13,0.11,0.11,0.23,0.3,0.16,0.15,0.1,0.23,0.32,0.09,0.14,0.13,0.3,0.11,0.28,0.14,0.15,0.4,0.11,0.3,0.11,0.15,0.4,0.15,0.37,0.15,0.34,0.37,0.15,0.32,0.11,0.09,0.28,0.14,0.29,0.12,0.12,0.25,0.09,0.27,0.12,0.13,0.31,0.18,0.35,0.1,0.1,0.36,0.14,0.1,0.27,0.11,0.22,0.15,0.13,0.24,0.19,0.3,0.1,0.14,0.35,0.17,0.23,0.17,0.08,0.24,0.15,0.21,0.12,0.19,0.27,0.23,0.27,0.11,0.14,0.4,0.13,0.44,0.19,0.26,2.33,4.04,0.51,0.14,0.19,0.19,0.46,0.32,0.15,0.19,0.13,0.36,0.22,0.19,0.17,0.17,0.32,0.24,0.1,0.13,0.15,0.32,0.3,0.25,0.12,0.15,0.29,0.5,0.16,0.18,0.15,0.26,0.26,0.18,0.17,0.18,0.52,0.39,0.21,0.16,0.12,0.24,0.52,0.13,0.24,0.16,0.16,0.35,0.15,0.19,0.14,0.2,0.37,0.17,0.13,0.16,0.12,0.42,0.12,0.22,0.15,0.14,0.39,0.11,0.12,0.11,0.28,0.44,0.12,0.13,0.12,0.16,0.17,0.27,0.09,0.09,0.14,0.2,0.24,0.11,0.11,0.08,0.3,0.22,0.13,0.12,0.11,0.4,0.24,0.1,0.13,0.14,0.19,0.27,0.13,0.11,0.34,0.3,0.29,0.12,0.11,0.12,0.19,0.23,0.16,0.1,0.12,0.18,0.26,0.14,0.14,0.11,0.42,0.16,0.43,0.2,0.11,0.44,0.17,0.32,0.14,0.12,0.32,0.1,0.41,0.24,0.38,0.25,0.22,0.28,0.14,0.18,0.26,0.19,0.5,0.21,0.2,0.38,0.24,0.32,0.2,0.14,0.23,0.15,0.27,0.17,0.2,0.66,0.27,0.3,0.15,0.17,0.28,0.27,0.18,0.3,0.51,0.38,0.2,0.29,0.28,0.25,0.37,0.21,0.15,0.33,0.19,0.34,0.15,0.23,0.3,0.12,0.33,0.14,0.15,0.28,0.16,0.38,0.22,0.39,0.42,0.19,0.39,0.15,0.16,0.28,0.36,0.39,0.16,0.24,0.41,0.17,0.4,0.17,0.28,0.19,0.36,0.25,0.22,0.18,0.25,0.32,0.28,0.15,0.19,0.17,0.27,0.52,0.21,0.21,0.15,0.42,0.33,0.18,0.16,0.2,0.6,0.35,0.12,0.31,0.33,0.36,0.48,0.32,0.3,0.29,0.7,0.42,0.15,0.11,0.4,0.12,0.47,0.17,0.12,0.21,0.16,0.6,0.16,0.27,0.12,0.27,0.43,0.2,3.17,0.15,0.36,0.48,0.19,0.2,0.12,0.22,0.53,0.1,0.21,0.2,0.17,0.42,0.17,0.12,0.23,0.15,0.49,4.65,0.16,0.17,0.23,0.63,0.58,0.27,0.16,0.22,0.41,0.35,0.21,0.23,0.39,0.39,0.35,0.32,0.2,0.23,0.31,0.4,0.31,0.21,0.2,0.36,0.4,0.37,0.21,0.2,0.3,0.37,0.19,0.31,0.27,0.36,0.42,0.24,0.2,0.22,0.43,0.2,0.35,0.29,0.51,0.36,0.21,0.41,0.31,0.29,0.53,0.25,0.42,0.2,0.23,0.34,0.19,0.39,0.2,0.22,0.31,0.22,0.38,0.18,0.24,0.39,0.24,0.35,0.25,0.24,0.35,0.23,0.36,0.23,0.5,0.3,0.19,0.43,0.37,0.23,0.57,0.29,0.35,0.3,0.23,0.39,0.25,0.22,0.4,0.2,0.39,0.18,0.2,0.37,0.22,0.47,0.24,0.25,0.36,0.27,0.41,0.19,0.26,3.5,0.59,0.41,0.25,0.24,0.35,0.18,0.32,0.17,0.23,0.43,3.15,0.32,0.24,0.24,0.44,0.3,0.32,0.21,0.23,0.31,0.21,0.46,0.24,0.19,0.24,0.45,0.33,0.2,0.18,0.2,0.55,0.41,0.22,0.2,0.19,0.33,0.31,0.17,0.19,0.21,0.37,0.42,0.24,0.24,0.27,0.39,0.51,0.22,0.23,0.23,0.33,0.34,0.24,0.25,0.29,0.35,0.35,0.2,0.25,0.24,0.49,0.35,0.25,0.26,0.21,0.21,0.53,0.26,0.24,0.2,0.19,0.58,0.24,0.11,0.11,0.16,0.41,0.18,0.19,0.13,0.1,0.74,0.2,0.16,0.11,0.18,0.39,0.15,0.1,0.16,0.4,0.47,0.1,0.2,0.16,0.18,0.55,0.2,0.15,0.21,0.13,0.46,0.17,0.12,0.17,0.15,0.39,0.14,0.13,0.12,0.12,0.32,0.31,0.15,0.21,0.16,0.6,0.45,0.25,0.17,0.28,0.27,0.33,0.15,0.16,0.12,0.34,0.25,0.28,0.24,0.14,3.28,0.53,0.14,0.18,0.1,0.28,0.33,0.19,1.24,0.11,0.54,0.14,0.44,0.11,0.17,0.31,0.11,0.33,0.14,0.38,0.26,0.09,0.25,0.09,0.09,0.26,0.14,0.25,0.06,0.09,0.27,0.13,0.27,0.1,0.12,0.33,0.09,0.3,0.15,0.11,0.31,0.26,0.33,0.14,0.14,0.4,0.1,0.12,0.31,0.28,0.23,0.1,0.12,0.35,0.13,0.33,0.13,0.17,0.35,0.12,0.25,0.21,0.55,0.29,0.14,0.24,0.15,0.1,0.22,0.78,0.42,0.18,0.2,0.33,0.21,0.37,0.15,0.24,0.3,0.38,0.33,0.22,0.15,0.28,0.15,0.27,0.14,0.2,0.25,0.16,0.24,0.14,0.17,0.11,0.32,0.23,0.12,0.15,0.14,0.31,0.29,0.17,0.22,0.16,0.27,0.31,0.12,0.18,0.08,0.41,0.3,0.12,0.16,0.09,0.27,0.3,0.13,0.18,0.17,0.27,0.27,0.12,0.14,0.12,0.25,0.21,0.12,0.13,0.12,0.25,1.56,0.24,0.12,0.11,0.16,0.47,0.11,0.1,0.17,0.2,0.41,0.12,0.19,0.12,0.17,0.44,0.18,0.14,0.09,0.23,0.5,0.13,0.15,0.25,0.12,0.52,0.14,0.12,0.15,0.13,0.45,0.12,0.1,0.21,0.52,0.5,0.14,0.12,0.18,0.17,0.46,0.1,0.17,0.12,0.16,0.4,0.21,0.17,0.18,0.15,0.22,0.25,0.12,0.12,0.19,0.26,0.32,0.14,0.12,0.14,0.51,0.33,0.18,0.17,0.17,0.39,0.36,0.19,0.25,0.26,0.27,0.3,0.13,0.15,0.22,0.49,0.29,0.21,0.14,0.17,0.54,0.13,0.32,0.12,0.12,0.34,0.13,0.29,0.21,0.12,0.29,0.13,0.27,0.14,0.14,0.24,0.12,0.28,0.13,0.3,0.29,0.16,5.08,0.27,0.2,0.49,0.15,0.35,0.14,0.12,0.44,0.15,0.35,0.17,0.12,0.37,0.19,0.43,0.15,0.24,2.29,0.28,0.29,0.54,0.3,0.53,0.27,0.22,0.31,0.31,0.29,0.18,0.18,0.32,0.16,0.49,0.19,0.17,0.26,0.19,0.32,0.13,0.15,0.26,0.18,0.22,0.2,0.13,0.25,0.17,0.51,0.2,0.22,0.42,0.2,0.3,0.12,0.17,0.17,0.52,0.4,0.17,0.15,0.13,0.32,0.35,0.18,0.2,0.15,0.3,0.33,0.13,0.22,1.86,0.26,0.34,0.19,0.13,0.24,0.32,0.47,1.45,0.25,0.21,0.32,0.27,0.22,0.2,0.25,0.58,0.37,0.16,0.15,0.21,0.33,0.59,0.32,0.35,0.22,0.2,0.57,0.17,0.28,0.26,0.2,1.12,0.2,0.24,0.39,0.27,0.54,0.26,0.24,0.24,0.31,0.57,0.3,0.26,0.27,0.64,0.59,0.26,0.21,0.3,0.34,0.53,0.32,0.39,0.34,0.33,0.59,0.2,0.25,0.22,0.27,0.39,0.47,0.2,0.2,0.2,0.48,0.4,1.93,0.21,0.31,0.47,0.41,0.29,0.24,0.55,0.42,0.47,0.27,0.26,0.29,0.41,0.38,0.24,0.29,0.42,0.43,0.49,0.36,0.4,0.27,0.6,0.45,0.29,0.29,0.33,0.62,0.38,0.26,0.22,0.22,0.48,0.28,0.47,0.26,0.5,0.48,0.22,0.44,0.25,0.24,0.33,0.22,0.34,0.24,0.3,0.42,0.25,0.45,0.2,0.22,0.41,0.2,0.37,0.26,0.23,0.69,0.37,0.5,0.31,0.18,0.4,0.22,0.27,0.41,0.54,0.35,0.25,0.32,0.58,0.32,0.43,0.43,0.38,0.39,0.25,0.43,0.32,0.29,0.33,0.2,0.41,0.24,0.25,0.36,0.27,0.56,0.35,0.32,0.39,0.29,0.39,0.25,0.23,0.35,0.44,0.55,0.32,0.37,0.47,0.29,0.36,0.23,0.32,0.34,0.51,0.43,0.23,0.35,0.31,0.46,0.36,0.34,0.29,0.2,0.39,0.66,0.43,0.44,0.92,0.46,0.37,0.15,0.13,0.13,0.65,0.44,0.17,0.2,0.32,0.41,0.38,0.15,0.19,0.18,0.24,0.65,0.35,0.19,0.19,0.19,0.75,0.27,0.28,0.17,0.24,0.59,0.23,0.2,0.18,0.15,0.43,0.16,0.28,0.19,0.46,0.52,0.31,0.21,0.21,0.18,0.46,0.17,0.21,0.19,0.19,0.51,0.16,0.17,0.17,0.2,0.77,0.18,0.22,0.17,0.16,0.67,0.39,0.17,0.17,0.23,0.34,0.34,0.2,0.17,0.32,0.3,0.31,0.2,0.36,0.25,0.45,0.49,0.32,0.12,0.27,0.44,0.41,0.28,0.17,0.23,0.46,0.51,0.33,0.24,0.16,0.42,0.3,0.23,0.22,0.15,0.25,0.24,0.36,0.31,0.45,0.3,0.12,0.32,0.2,0.15,0.35,0.23,3.66,0.15,0.2,0.33,0.14,0.29,0.2,0.22,0.33,0.53,0.32,0.17,0.13,0.59,0.18,0.31,0.17,1.07,0.34,0.18,0.35,0.2,0.29,0.3,0.1,0.28,0.15,0.17,0.32,0.13,0.22,0.34,0.15,0.25,0.18,0.13,0.36,0.25,1.78,0.1,0.19,0.28,0.15,0.41,0.2,0.27,0.24,0.17,0.44,0.2,0.19,0.31,0.29,0.38,0.24,0.3,0.3,0.25,3.09,0.22,0.35,0.36,0.25,0.4,0.14,0.29,0.26,0.18,0.3,0.2,0.22,0.14,0.33,0.52,0.18,0.23,0.17,2,0.33,0.29,0.24,0.21,0.41,0.27,0.18,0.15,0.21,0.42,0.36,0.15,0.2,0.32,0.26,0.33,0.18,0.2,0.13,0.2,0.42,0.14,0.15,0.2,0.14,0.42,0.14,0.14,0.15,0.13,0.49,0.17,0.12,0.17,0.41,0.38,0.1,0.15,0.21,0.13,0.36,0.15,0.27,0.18,0.27,0.38,0.19,0.25,0.17,0.13,0.39,0.14,0.67,0.15,0.16,0.56,0.29,0.16,0.22,0.23,5.8,0.33,0.23,0.27,0.42,0.26,0.24,0.2,0.19,0.19,0.36,0.29,0.18,0.22,0.15,0.39,0.28,0.15,0.17,0.19,0.38,0.33,0.12,0.27,0.27,0.31,0.3,0.2,0.13,0.22,0.26,0.3,0.11,0.12,0.38,0.3,0.19,0.39,0.13,0.2,0.38,0.15,0.29,0.17,0.19,0.28,0.17,0.33,0.12,0.17,0.37,0.16,0.26,0.17,0.13,0.4,0.12,0.34,0.21,0.12,0.27,0.16,0.3,0.16,0.36,0.37,0.22,0.37,0.34,0.21,0.35,0.2,0.19,0.3,0.21,0.46,0.22,0.13,0.29,0.2,0.26,0.12,0.13,0.38,0.19,0.32,0.17,0.26,0.36,0.14,0.37,0.24,0.29,0.42,0.46,0.38,0.24,0.22,0.37,0.11,0.34,0.16,0.2,0.37,0.13,0.29,0.17,0.16,0.27,0.19,0.29,0.13,0.28,0.2,0.37,0.53,0.29,0.29,0.22,0.32,0.47,0.21,0.25,0.19,0.58,0.25,0.16,0.18,0.12,0.35,0.42,0.23,0.26,0.2,0.36,0.3,0.18,0.18,0.2,0.37,0.24,0.18,0.23,0.25,0.35,0.41,0.17,0.32,0.23,0.37,0.36,0.34,0.24,0.22,0.48,0.49,0.26,0.22,0.26,0.23,0.56,0.33,0.32,0.24,0.29,0.44,0.19,0.25,0.23,0.34,0.6,0.29,0.27,0.2,0.33,0.62,0.32,0.23,0.24,0.21,0.51,0.29,0.3,0.2,0.36,0.42,0.33,0.24,0.26,0.36,0.43,0.24,0.25,0.29,0.33,0.33,0.51,0.22,0.23,0.22,0.38,0.35,0.29,0.22,0.19,0.36,0.42,0.29,0.25,0.2,0.45,0.38,0.24,0.22,0.62,0.37,0.4,0.27,0.25,0.34,0.48,0.42,0.48,0.25,0.23,0.49,0.23,5.73,0.19,0.29,0.45,0.27,0.56,0.24,2.66,0.57,0.37,0.44,0.27,0.21,0.36,0.27,0.47,0.37,0.64,0.35,0.32,0.36,0.24,0.27,0.38,0.29,0.42,0.25,0.24,0.36,0.26,0.37,0.2,0.31,0.46,0.25,0.22,0.49,0.26,0.43,0.29,0.35,0.42,0.29,0.5,0.22,0.29,0.39,0.61,0.32,0.3,0.26,0.45,0.28,0.38,0.26,0.36,0.43,0.26,0.44,0.23,0.25,0.35,0.23,0.42,0.26,0.25,0.37,0.21,3.21,0.28,0.3,0.44,0.22,0.35,0.29,0.34,0.32,0.54,0.47,0.34,0.38,0.44,0.62,0.51,0.24,0.29,0.25,0.39,0.5,0.24,0.29,0.16,0.3,0.47,0.26,0.34,0.3,0.39,0.52,0.22,0.3,0.22,0.35,0.39,0.21,0.22,0.24,0.64,0.31,0.19,0.19,0.13,0.39,0.36,0.17,0.27,0.23,0.17,0.54,0.15,0.15,0.24,0.17,0.53,0.16,0.14,0.1,0.11,0.64,0.2,0.14,0.15,0.19,0.4,0.16,0.18,0.17,0.28,0.46,0.17,0.25,0.12,0.32,0.48,0.19,0.21,0.15,0.23,0.54,0.15,0.22,0.12,0.15,0.45,0.24,0.18,0.16,0.13,0.46,0.4,0.22,0.21,0.24,0.36,0.27,0.14,0.18,0.38,0.3,0.32,0.13,0.2,0.12,0.41,0.32,0.27,0.19,0.23,0.29,0.39,0.18,0.17,0.12,0.3,0.32,0.23,0.1,0.11,0.44,0.35,0.26,0.12,0.23,0.32,0.12,0.31,0.12,0.43,0.32,0.15,0.33,0.47,0.32,0.31,0.16,0.38,0.15,0.18,0.34,0.32,0.4,0.12,0.18,0.26,0.08,0.32,0.21,0.15,0.42,0.19,0.35,0.18,0.21,0.28,0.21,0.32,0.12,0.34,0.32,0.12,0.31,0.2,0.2,0.35,0.2,0.34,0.24,0.14,0.4,0.29,0.17,0.39,0.17,0.34,0.26,0.25,0.43,0.15,0.49,0.3,0.21,0.27,0.19,0.26,0.24,0.21,0.3,0.47,0.28,0.1,0.16,0.28,0.15,0.24,0.09,0.16,0.24,0.09,0.25,0.12,0.16,0.36,0.18,0.35,0.18,0.15,0.31,0.12,0.28,0.12,0.15,0.18,0.25,0.27,3.5,0.26,0.12,0.47,0.27,0.16,0.16,0.1,0.32,0.29,0.12,0.14,0.13,0.29,0.3,0.17,0.12,0.13,0.26,0.21,0.14,0.11,0.08,0.26,0.39,0.16,0.19,0.12,0.32,0.34,0.15,0.15,0.15,1.38,0.33,0.18,0.14,0.17,0.18,0.51,0.14,0.19,0.25,0.13,0.37,0.2,0.15,0.14,0.12,0.43,0.1,0.12,0.13,0.14,0.33,0.16,0.12,0.14,0.11,0.46,0.13,0.16,0.11,0.38,0.45,0.14,0.13,0.15,0.19,0.36,0.09,0.15,0.16,0.19,0.53,0.26,0.13,0.13,0.23,0.37,3.52,0.12,0.12,0.1,0.39,0.36,0.12,0.19,0.25,0.31,0.35,0.12,0.2,0.7,0.31,0.23,0.13,0.12,0.12,0.39,0.3,0.21,0.15,0.18,0.26,0.28,0.16,0.12,0.12,0.25,0.26,0.14,0.12,0.11,0.34,0.17,0.34,0.13,0.17,0.23,0.14,0.25,0.11,0.43,0.33,0.76,0.35,0.2,0.15,0.31,0.14,0.35,0.2,0.17,0.37,0.18,0.45,0.35,0.17,0.31,0.16,0.28,0.11,0.19,0.56,1.06,0.38,0.13,0.14,0.3,0.22,0.31,0.15,0.43,0.33,0.15,0.17,0.47,0.23,0.5,0.31,0.2,0.5,0.14,0.37,0.13,0.18,0.4,0.24,0.25,0.12,0.15,0.35,0.25,0.36,0.27,0.25,0.31,0.25,0.68,0.52,0.33,0.3,0.47,0.4,0.21,0.13,0.3,0.16,0.31,0.16,0.16,0.32,0.15,0.35,0.19,0.16,0.19,0.41,0.34,0.25,0.17,0.2,0.33,0.57,0.19,0.22,0.22,0.38,0.43,0.2,0.29,0.23,0.44,0.28,0.18,0.18,0.19,0.3,0.28,0.22,0.2,0.22,0.37,0.31,0.18,0.25,0.21,0.38,0.34,0.21,0.16,0.22,0.2,0.57,0.2,0.27,0.21,0.19,0.51,0.19,0.19,0.21,0.28,0.57,0.26,0.24,0.2,0.2,0.47,0.18,0.22,0.24,0.19,0.48,0.23,0.25,0.19,0.22,0.51,0.19,0.22,0.26,0.23,0.61,0.27,0.25,0.24,0.26,0.59,0.38,0.3,0.29,0.36,0.43,0.37,0.91,0.34,0.29,0.4,0.37,0.3,0.28,0.2,0.31,0.55,0.21,0.2,0.34,0.43,0.37,0.28,0.22,0.21,0.43,0.33,0.39,0.24,0.29,0.38,0.31,0.31,0.21,0.39,0.45,0.35,0.32,0.19,0.25,0.4,0.36,0.59,0.3,0.32,0.34,0.25,0.37,0.23,0.24,0.36,0.26,0.48,0.21,0.17,0.59,0.29,0.45,0.45,0.29,0.42,0.23,0.36,0.22,0.3,0.38,0.23,0.4,0.24,0.2,0.36,0.2,0.25,0.35,0.2,0.39,0.22,0.2,0.32,0.2,0.33,0.24,0.22,0.36,0.21,0.32,0.24,0.26,0.31,0.26,0.38,0.18,0.19,0.3,0.33,0.32,0.15,0.2,0.29,0.22,0.29,0.12,0.17,0.36,0.18,0.3,0.13,0.18,0.28,0.2,0.24,0.14,0.11,0.1,0.27,0.52,0.25,0.22,0.17,0.26,0.3,0.1,0.19,0.11,0.56,0.29,0.14,0.13,0.22,0.4,0.21,0.2,0.26,0.13,0.31,0.26,0.15,0.16,0.19,0.36,0.31,0.18,0.18,0.14,0.31,0.4,0.21,0.18,0.13,0.35,0.29,0.2,0.17,0.14,0.33,0.56,0.14,0.15,0.16,0.2,0.52,0.28,0.24,0.13,0.19,0.34,0.16,0.19,0.12,0.23,0.41,0.19,0.11,0.16,0.17,6.64,0.32,0.2,0.12,0.19,0.55,0.24,0.19,0.2,0.43,0.43,0.17,0.2,0.19,0.59,0.43,0.1,0.13,0.12,0.14,0.22,0.41,0.17,0.12,0.15,0.24,0.26,0.1,0.2,0.1,0.32,0.36,0.15,0.12,0.12,0.29,0.27,0.13,0.19,0.39,0.3,0.32,0.27,0.18,0.15,0.31,0.33,0.2,0.17,0.09,0.4,0.15,0.28,0.15,0.17,0.27,0.15,0.38,0.18,0.17,0.4,0.29,0.33,0.27,0.51,0.46,0.31,0.43,0.21,0.41,0.32,0.18,0.29,0.2,0.71,0.39,0.29,0.5,0.19,0.21,0.29,0.12,0.3,0.11,0.12,0.55,0.14,0.1,0.31,0.17,0.25,0.15,0.19,0.3,0.15,0.31,0.13,0.12,0.3,0.44,0.25,0.1,0.19,0.29,0.12,0.3,0.2,0.17,0.35,0.14,0.25,0.11,0.2,0.27,0.18,0.27,0.1,0.13,0.23,0.16,0.48,0.12,0.22,0.31,0.23,0.35,0.21,0.18,0.22,0.75,0.31,0.14,0.16,0.2,0.55,0.52,0.15,0.13,0.15,0.37,0.31,0.2,0.2,0.3,0.46,0.41,0.24,0.15,0.19,0.27,0.48,0.13,0.21,0.2,0.31,0.37,0.19,0.14,0.15,0.52,0.2,0.15,0.15,0.23,0.35,0.35,0.17,0.15,0.19,0.15,0.49,0.15,0.17,0.18,0.27,0.44,0.2,0.16,0.18,0.16,0.72,0.2,0.23,0.24,0.24,0.45,0.16,0.17,0.19,0.37,0.5,0.15,0.28,0.32,0.25,0.62,0.41,0.29,0.26,0.32,0.52,0.15,0.17,0.11,0.14,0.31,0.33,0.15,0.18,0.2,0.43,0.56,0.26,0.17,0.17,0.34,0.42,0.24,0.17,0.33,0.24,0.29,0.15,0.12,0.2,0.41,0.29,0.15,0.25,0.2,0.22,0.32,0.12,0.13,0.15,0.23,0.33,0.2,0.16,0.14,0.44,0.38,0.29,0.27,0.29,0.27,0.2,0.41,0.2,0.49,0.38,0.12,0.32,0.21,0.25,0.28,2.73,0.3,0.15,4.48,0.3,0.15,0.3,0.16,0.12,0.53,0.22,0.35,0.19,0.27,0.33,0.14,0.37,0.2,0.23,0.34,0.1,0.37,0.19,0.27,0.34,0.15,0.29,0.15,0.18,0.35,0.21,0.36,0.32,0.14,0.45,0.2,0.24,0.28,0.23,0.22,0.14,0.22,0.37,0.28,0.54,0.27,0.3,0.44,0.19,0.33,0.19,0.2,0.49,0.51,0.36,0.24,0.2,0.46,0.37,0.52,0.27,0.41,0.55,0.36,0.62,0.38,0.25,0.7,0.27,0.41,0.39,0.51,0.27,0.41,0.42,0.26,0.24,0.23,0.37,0.39,0.21,0.18,0.24,0.62,0.39,0.34,0.22,0.23,0.34,0.35,0.2,0.27,0.22,0.32,0.34,0.2,0.19,0.18,0.32,0.35,0.19,0.18,0.21,0.35,0.42,0.23,0.2,0.24,0.19,3.85,0.2,0.21,0.24,0.44,0.49,0.19,0.2,0.22,0.24,0.54,0.28,0.28,0.19,0.21,0.56,0.25,0.25,0.17,0.21,1.77,0.19,0.24,0.27,0.2,0.5,0.22,0.27,7.18,0.23,0.61,0.2,0.2,0.22,0.58,0.5,0.22,0.22,0.28,0.22,0.42,0.42,0.23,0.27,0.21,0.32,0.33,0.2,0.22,0.22,0.34,0.39,0.21,0.19,0.2,0.43,0.39,0.2,0.23,0.29,0.4,0.47,0.19,0.2,0.47,0.34,0.35,0.25,0.32,0.27,0.4,0.41,0.24,0.21,0.19,0.4,0.37,0.2,0.24,0.2,0.26,0.2,0.31,0.18,0.2,0.32,0.17,0.48,0.22,0.19,0.35,0.25,0.35,0.19,0.43,0.38,0.25,0.45,0.22,0.26,0.33,0.22,0.43,0.21,0.25,0.32,0.13,0.32,0.17,0.17,0.35,0.11,0.33,0.18,0.17,0.65,0.24,0.27,0.29,0.16,0.26,0.17,1.44,0.29,0.43,0.34,0.12,0.16,0.3,0.17,0.28,0.11,0.23,0.29,2.71,0.3,0.17,0.15,0.38,0.16,0.28,0.17,0.17,0.28,0.12,0.43,0.15,0.14,0.3,0.15,0.4,0.16,0.16,0.33,0.4,0.34,0.2,0.17,0.11,0.37,0.34,0.15,0.19,0.16,0.38,0.4,0.1,0.2,0.21,0.3,0.25,0.14,0.22,0.17,0.31,0.47,0.19,0.2,0.17,0.35,0.44,0.19,0.15,2.39,0.38,0.3,0.27,0.29,0.24,0.26,0.3,0.14,0.18,0.17,0.32,0.36,0.21,0.16,0.13,0.13,0.47,0.16,0.16,0.18,0.21,0.59,0.13,0.2,0.23,0.19,0.5,0.17,0.23,0.12,0.41,0.57,0.25,0.19,0.15,0.22,0.46,0.16,0.26,0.13,0.19,0.37,0.19,0.15,0.17,0.15,0.43,0.17,0.15,0.17,0.16,0.62,0.31,0.25,0.17,0.21,0.49,0.14,0.16,0.2,0.35,0.34,0.25,0.19,0.2,0.18,0.31,0.37,0.17,0.16,0.15,0.27,0.3,0.13,0.17,0.24,0.28,0.26,0.11,0.19,0.14,0.41,0.35,0.2,0.17,0.16,0.39,0.32,0.17,0.2,0.33,0.32,0.31,0.14,0.13,0.17,0.29,0.35,0.25,0.24,0.16,0.26,0.15,0.38,0.16,0.18,0.2,0.2,0.32,0.15,0.16,0.38,0.15,0.32,0.21,0.33,0.34,0.12,0.36,0.22,0.53,0.4,0.22,0.29,0.18,0.23,0.38,0.2,0.15,0.31,0.15,0.28,0.22,0.17,0.29,0.18,0.32,0.18,0.15,0.4,0.2,0.46,0.19,0.21,0.38,0.15,0.42,0.16,0.21,0.3,0.44,0.56,0.26,0.26,0.46,0.25,0.34,0.2,0.31,0.53,0.31,0.39,0.28,0.19,0.3,0.33,0.43,0.22,0.19,0.25,0.36,0.33,0.15,0.17,0.17,0.37,0.34,0.13,0.17,0.1,5.73,0.41,0.13,0.12,0.17,0.42,0.32,0.22,0.23,0.7,0.28,0.32,0.2,2.57,0.24,0.29,0.36,0.22,0.25,0.15,0.26,0.28,0.17,0.24,0.14,0.32,0.23,0.18,0.27,0.17,0.46,0.52,0.23,0.19,0.15,0.17,0.48,0.18,0.26,0.3,0.22,0.63,0.21,0.22,0.19,0.21,0.54,0.19,0.2,0.15,0.12,0.76,0.22,0.17,0.2,0.19,0.53,0.21,0.2,0.16,0.27,0.46,0.15,0.19,0.14,0.16,0.43,0.22,0.17,0.14,0.12,0.33,0.29,0.26,1.76,6.88,3,0.31,0.18,0.24,0.2,0.34,0.28,0.17,0.21,0.17,0.24,0.34,0.15,0.13,0.38,0.36,0.35,0.18,0.23,0.14,0.32,0.33,0.31,0.23,0.22,0.33,0.4,0.22,0.12,0.14,0.27,0.3,0.18,0.17,0.21,0.52,0.2,0.3,0.15,0.23,0.36,0.21,0.38,0.32,0.57,0.5,0.24,0.35,0.19,0.21,0.43,0.23,0.36,0.2,0.23,0.42,0.21,0.37,0.22,0.24,0.31,0.27,0.41,0.25,0.29,0.36,0.29,0.4,0.25,0.2,0.42,0.27,0.4,0.29,0.46,0.4,0.24,0.33,0.42,0.23,0.45,0.2,0.31,0.46,0.31,0.41,0.21,0.28,0.33,0.22,0.34,0.24,0.25,0.38,0.22,0.53,0.27,0.28,0.34,0.25,0.38,0.31,0.22,0.36,0.38,0.46,0.23,0.28,0.47,0.39,0.52,0.34,0.38,0.36,0.44,0.36,0.23,0.28,0.29,1.11,0.4,0.2,0.22,0.23,0.33,0.42,0.2,0.24,0.24,0.41,0.42,0.18,0.2,0.19,0.5,0.31,0.2,0.18,0.22,0.33,0.31,0.21,0.22,0.25,0.38,0.38,0.21,0.22,0.21,0.4,0.34,0.19,0.21,0.23,0.26,0.92,0.45,0.27,0.22,0.29,0.63,0.24,0.26,0.41,0.45,0.52,0.2,0.24,0.25,0.2,0.44,0.25,0.22,0.24,0.23,0.43,0.24,0.2,0.24,0.68,0.56,0.21,0.22,0.23,0.33,0.58,0.22,0.27,0.25,0.19,0.49,0.19,0.2,0.2,0.55,0.53,0.39,0.25,0.23,0.34,0.46,0.44,0.27,0.24,0.23,0.38,0.38,0.23,0.26,0.22,0.36,0.36,0.23,0.28,0.22,0.51,0.42,0.24,0.19,0.3,0.4,0.34,0.19,0.21,0.49,0.45,0.31,1.46,0.29,0.21,0.35,0.26,0.19,0.17,0.13,0.3,0.48,0.36,0.13,0.19,0.91,0.16,0.31,0.22,0.31,0.44,0.29,0.34,0.2,0.17,0.39,0.14,0.32,0.15,0.38,0.43,0.2,0.35,0.16,0.18,0.39,0.17,0.35,0.21,0.29,0.32,0.11,0.28,0.19,0.19,0.32,0.2,0.32,0.27,0.17,0.48,0.19,0.22,0.38,0.24,0.37,0.18,0.24,0.38,0.32,0.31,0.23,0.25,3.92,0.17,0.39,0.17,0.16,0.3,0.14,0.36,0.12,0.12,0.27,0.11,0.22,0.15,0.14,0.26,0.18,0.29,0.1,0.13,0.2,0.26,0.2,0.16,0.1,0.2,0.38,0.26,0.17,0.24,0.15,0.26,0.23,0.17,0.24,0.19,0.33,0.31,0.15,0.15,0.14,0.29,0.33,0.16,0.14,0.21,0.29,0.63,0.2,0.15,0.22,0.41,0.28,0.13,0.13,0.12,0.39,0.3,0.16,0.23,0.33,0.37,0.79,0.27,0.22,0.22,0.14,0.51,0.24,0.27,0.25,0.14,0.46,0.12,0.12,0.18,0.15,0.47,0.13,0.16,0.13,0.22,0.66,0.22,0.17,0.17,0.33,0.42,0.17,0.17,0.55,0.22,0.49,0.22,0.22,0.22,0.2,0.5,0.21,0.23,0.2,0.19,0.28,0.36,0.15,0.18,0.17,0.56,0.34,0.19,0.16,0.24,0.37,0.32,0.17,0.29,0.24,0.4,0.4,0.24,0.17,0.57,0.3,0.46,0.21,0.29,0.23,0.3,0.33,0.12,0.12,0.23,0.34,0.34,0.12,0.19,0.14,0.34,0.25,0.54,0.14,0.16,0.34,0.32,0.21,0.15,0.34,0.36,0.12,0.33,0.22,0.15,0.3,0.19,0.32,0.2,0.18,0.36,0.2,0.29,0.15,0.17,0.28,0.14,0.3,0.1,0.11,0.36,0.18,0.3,0.25,0.21,0.22,0.15,0.46,0.14,0.36,0.25,0.1,0.27,0.21,1,0.32,0.17,0.28,0.17,0.2,0.26,0.24,0.13,0.29,0.22,0.3,0.14,0.12,0.28,0.15,0.35,0.14,0.22,0.34,0.2,0.24,0.2,0.13,0.29,0.25,0.25,0.2,0.19,0.27,0.15,0.29,0.17,0.2,0.35,0.14,0.3,0.18,0.17,0.27,0.15,0.32,0.16,0.12,0.17,0.3,0.59,0.29,0.29,0.16,0.33,0.34,0.2,0.17,0.13,0.51,0.26,0.13,0.15,0.2,0.29,0.31,0.17,0.13,0.15,0.25,0.33,0.13,0.11,0.09,0.28,0.23,0.12,0.12,0.19,0.24,0.32,0.15,0.14,0.17,0.26,0.29,0.11,0.11,0.18,0.33,0.55,0.18,0.17,0.14,0.11,0.34,0.16,0.15,0.17,0.19,0.4,0.17,0.13,0.12,0.08,0.33,0.13,0.11,0.13,0.11,0.58,0.18,0.15,0.2,0.17,0.41,0.14,0.17,0.16,0.38,0.46,0.17,0.19,0.24,0.24,0.35,1.23,0.18,0.13,0.13,0.29,0.38,0.24,0.24,0.19,0.28,0.26,0.2,0.14,0.2,0.25,0.3,0.16,0.2,0.21,0.36,0.38,0.19,0.15,0.3,0.26,0.34,0.24,0.26,0.22,0.45,0.41,0.27,0.29,0.22,0.51,0.38,0.25,0.32,0.23,0.41,0.3,0.41,0.27,0.22,1.33,0.26,0.41,0.22,0.24,0.45,0.21,0.39,0.23,0.41,0.33,0.17,0.35,0.2,0.18,0.29,0.22,5.06,0.39,0.22,0.4,0.29,0.35,0.2,0.27,0.4,0.25,0.37,0.59,0.22,0.44,0.26,0.38,0.26,0.29,0.27,0.22,0.33,0.26,0.28,0.35,0.23,0.34,0.36,0.29,0.47,0.22,0.26,0.48,0.24,0.37,0.21,0.28,0.32,0.26,0.42,0.28,0.2,0.34,0.25,0.49,0.38,0.26,0.37,0.28,0.39,0.3,0.21,0.41,0.39,0.49,0.25,0.29,0.59,0.43,0.39,0.46,0.55,0.27,0.46,0.37,0.29,0.3,0.34,0.42,0.65,0.24,0.3,0.31,0.59,0.54,0.25,0.36,0.32,0.46,0.39,0.26,0.29,0.33,0.6,0.48,0.28,0.29,0.26,0.43,0.3,0.37,0.27,0.28,0.44,0.45,0.23,0.31,0.29,0.38,0.35,0.24,0.22,0.24,0.26,0.83,0.23,0.35,0.28,0.26,0.51,0.27,0.31,0.3,0.43,0.61,0.31,0.37,0.27,0.27,0.62,0.22,0.22,0.31,0.27,0.67,0.32,0.27,0.29,0.32,0.56,0.21,0.11,0.17,0.16,0.56,0.2,0.2,0.17,0.17,0.36,0.19,0.22,0.19,0.45,0.42,0.43,0.2,0.2,0.21,0.29,0.39,0.27,0.27,0.18,0.35,0.38,0.32,0.15,0.2,0.33,0.35,0.18,0.19,0.16,0.64,0.39,0.28,0.17,0.23,0.27,0.32,0.16,0.17,0.5,0.35,0.34,0.18,0.27,0.27,0.44,0.34,0.41,0.22,0.29,0.39,0.2,0.4,0.21,0.21,0.34,0.21,0.33,0.24,0.15,0.57,0.26,0.38,0.2,0.21,0.45,0.4,0.31,0.19,0.3,0.36,0.22,0.37,0.23,0.19,0.24,0.14,0.33,0.24,0.24,0.37,0.23,0.32,0.18,0.2,0.37,0.24,0.17,0.39,0.18,0.72,0.46,0.29,0.38,0.25,0.42,0.15,0.12,0.39,0.33,0.26,0.26,0.22,0.29,0.26,0.38,0.22,0.31,0.31,0.2,0.32,0.21,0.19,0.34,0.15,0.34,0.17,0.21,0.42,0.25,0.64,0.5,0.23,0.14,0.37,0.48,0.17,0.21,0.28,0.61,0.53,0.26,0.25,0.2,0.44,0.38,0.23,0.24,0.28,0.3,0.33,0.25,0.22,0.27,0.46,0.39,0.21,0.19,0.2,0.42,0.49,0.32,0.25,0.15,0.33,0.4,0.22,0.19,0.3,0.46,0.7,0.16,0.22,0.42,0.33,0.63,0.27,0.31,0.26,0.2,0.52,0.32,0.21,0.27,0.35,0.56,0.23,0.5,0.33,0.16,0.52,0.28,0.26,0.29,0.2,0.44,0.22,0.13,0.26,0.52,0.59,0.17,0.21,0.21,0.23,0.48,0.26,0.27,0.26,0.17,0.58,0.17,0.14,0.22,0.19,0.36,0.37,0.22,0.16,0.22,0.58,0.4,0.21,0.17,0.18,0.41,0.42,0.19,0.2,0.43,0.35,0.37,0.21,0.17,0.2,0.24,0.32,0.2,0.17,0.17,0.22,4.13,0.28,0.23,0.21,1.59,0.48,0.26,0.19,0.21,0.35,3.7,0.92,0.29,0.3,0.41,0.26,0.36,0.2,0.43,0.41,0.19,0.39,0.15,0.26,0.43,0.22,0.4,0.34,0.15,0.4,0.2,0.47,0.17,0.2,0.33,0.2,0.33,0.15,0.24,0.6,0.27,0.3,0.18,0.18,0.34,0.2,0.33,0.31,0.37,0.32,0.22,0.25,0.56,0.38,0.32,0.27,0.26,0.39,0.26,0.29,0.27,0.3,0.32,0.29,0.35,0.21,0.23,0.35,0.2,0.34,0.22,0.32,0.29,0.22,0.4,0.26,0.28,0.36,0.4,0.49,0.15,0.17,0.35,0.25,0.38,0.25,0.2,0.35,0.25,0.38,0.2,0.2,0.2,0.33,0.26,0.21,0.22,0.17,0.32,0.49,0.21,0.18,0.16,0.32,0.35,0.17,0.19,0.22,0.67,0.31,0.17,0.2,0.23,0.36,0.42,0.25,0.24,0.32,0.39,1.77,0.2,0.2,0.25,0.2,0.66,0.2,0.24,0.29,0.19,0.52,0.21,0.37,0.27,0.29,0.61,0.24,0.13,0.17,0.49,0.66,0.23,0.3,0.28,0.27,0.6,0.27,0.35,0.31,0.28,0.54,0.29,0.22,0.23,0.23,0.49,0.28,0.27,0.27,0.27,0.57,0.48,0.25,0.22,0.34,0.56,0.49,0.31,0.29,0.49,0.48,0.55,0.35,0.51,0.44,0.56,0.57,0.39,0.32,0.32,0.55,1.57,0.29,0.3,0.26,0.45,0.49,0.36,0.29,0.27,0.47,0.61,0.38,0.28,0.48,0.5,0.47,0.35,0.37,0.6,0.5,0.22,0.45,0.21,0.17,0.39,0.19,0.37,0.23,0.25,0.33,0.2,0.46,0.21,0.18,0.25,0.25,0.39,0.2,0.2,0.37,0.18,0.37,0.18,0.18,0.3,0.17,0.32,0.16,0.36,0.31,0.2,0.42,0.25,0.21,0.29,0.17,0.2,0.37,0.2,0.31,0.24,0.21,0.35,0.18,0.23,0.16,0.18,0.35,0.2,0.27,0.19,0.2,0.32,0.85,0.28,0.17,0.26,0.3,0.36,0.25,0.17,0.17,0.33,0.17,0.27,0.19,0.17,0.31,0.16,0.35,0.18,0.22,0.31,0.27,0.42,0.29,0.21,0.19,0.35,0.31,0.17,0.18,0.22,0.31,0.23,0.2,0.2,0.17,0.61,0.28,5.67,0.17,0.25,0.41,0.34,0.18,0.2,0.2,0.38,0.32,0.2,0.17,0.18,0.31,0.29,0.19,0.22,0.22,0.37,0.26,0.18,0.16,0.19,0.24,0.57,0.16,0.1,0.13,0.21,0.42,0.16,0.14,0.15,0.1,0.32,0.15,0.14,0.12,0.1,0.41,0.08,0.09,0.12,0.11,0.37,0.13,0.12,0.12,0.09,0.4,0.13,0.12,0.11,0.13,0.29,0.15,0.12,0.09,0.21,0.21,0.25,0.1,0.1,0.14,0.28,0.3,0.12,0.14,0.1,0.25,0.28,0.12,1.04,0.13,0.26,4.11,0.2,0.15,0.12,0.28,0.31,0.16,0.17,0.2,0.27,0.31,0.19,0.15,0.38,0.21,0.25,0.13,0.14,0.1,0.29,0.15,0.34,0.13,0.13,0.26,0.11,0.31,0.14,0.12,0.21,0.17,0.26,0.16,0.17,0.37,0.14,0.29,0.18,0.13,0.25,0.17,0.27,0.14,0.41,0.23,0.14,0.34,0.1,0.12,0.22,0.18,0.28,0.14,0.16,0.24,0.14,0.23,0.11,0.15,0.26,0.11,0.12,0.36,0.13,0.21,0.17,0.17,0.33,0.2,0.26,0.14,0.15,0.35,0.34,0.22,0.15,0.12,0.3,0.09,0.2,0.19,0.23,0.29,0.19,0.36,0.1,0.14,0.32,0.12,0.21,0.12,0.12,0.4,0.13,0.36,0.18,0.2,0.26,0.12,0.24,0.17,0.17,0.11,0.69,0.2,0.13,0.16,0.14,0.25,0.26,0.17,0.19,0.12,0.29,0.34,0.13,0.14,0.15,0.98,0.21,0.12,0.09,0.12,0.32,0.26,0.23,0.12,0.15,0.34,0.95,0.14,0.16,0.17,0.51,0.28,0.15,0.12,0.16,0.19,0.49,0.15,0.15,0.26,0.19,0.53,0.14,0.17,0.12,0.14,0.44,0.21,0.17,0.13,0.15,0.44,0.14,0.15,0.15,0.13,0.37,0.14,0.11,0.17,0.25,0.32,0.15,0.11,0.21,0.14,0.46,0.14,0.16,0.13,0.12,0.44,0.1,0.18,0.12,1.52,0.29,0.36,0.11,0.1,0.22,0.17,0.21,0.1,0.11,0.16,0.28,0.33,0.17,0.11,0.33,0.19,0.3,0.1,0.12,0.14,0.22,0.3,0.12,0.08,0.15,0.2,0.36,0.16,0.15,0.1,0.21,0.08,0.3,0.12,0.15,0.28,0.18,0.24,0.1,0.11,0.17,0.11,0.35,0.12,0.39,0.22,0.12,0.25,0.1,0.11,0.21,0.13,0.25,0.13,0.14,0.2,0.1,0.29,0.1,0.09,0.3,0.2,0.26,0.17,0.08,0.15,0.07,0.15,0.27,0.15,0.17,0.13,1.47,0.32,0.19,0.2,0.1,0.08,0.37,0.16,0.15,0.08,0.14,0.3,0.18,0.22,0.11,0.12,0.26,0.14,0.23,0.17,0.1,0.12,0.27,0.27,0.2,0.17,0.12,0.31,0.19,0.14,0.15,0.09,0.31,0.21,0.11,0.13,0.12,0.24,0.18,0.1,0.17,0.12,0.27,0.27,0.12,0.15,0.14,0.32,0.2,0.11,0.14,0.11,0.29,0.25,0.08,0.09,0.08,0.36,0.21,0.11,0.12,0.88,0.19,0.65,0.15,0.18,0.14,0.1,0.39,0.22,0.2,0.15,0.21,0.35,0.21,0.17,0.13,0.15,0.35,0.18,0.12,0.15,0.22,0.37,0.16,0.18,0.17,0.12,0.35,0.18,0.14,0.17,0.21,0.38,0.18,0.15,0.2,0.14,0.23,0.31,0.2,0.18,0.18,0.27,0.36,0.23,0.18,0.19,0.36,0.34,0.21,0.19,0.2,0.27,3.94,0.22,0.18,0.19,0.26,0.31,0.16,0.2,0.34,0.26,0.28,0.24,0.15,0.18,0.27,0.36,0.2,0.16,0.18,0.32,0.19,0.36,0.22,0.18,0.28,0.19,0.35,0.27,0.15,0.28,0.22,0.3,0.2,0.2,0.26,0.19,0.31,0.15,0.31,0.26,0.17,0.32,0.17,0.24,0.29,0.2,0.37,0.19,0.17,0.28,0.17,0.34,0.24,0.22,0.37,1.39,0.25,0.43,0.18,0.37,0.19,0.2,0.33,0.23,0.27,0.2,0.19,0.34,0.4,0.28,0.16,0.19,0.31,0.19,0.26,0.21,0.22,0.33,0.21,0.32,0.18,0.21,0.37,0.2,0.28,0.25,0.25,0.3,0.18,0.4,0.27,0.24,0.2,0.87,0.35,0.18,0.2,0.2,0.52,0.25,0.19,0.2,0.19,0.3,0.28,0.17,0.15,0.18,0.32,0.25,0.17,0.2,0.23,0.37,0.32,0.2,0.21,0.22,0.41,0.31,0.17,0.2,0.21,0.41,0.31,0.18,0.18,0.27,0.77,0.54,0.17,0.19,0.17,0.25,0.52,0.15,0.17,0.2,0.18,0.53,0.17,0.18,0.12,0.12,0.41,0.13,0.1,0.13,0.15,0.39,0.11,0.11,0.15,0.15,0.53,0.16,0.15,0.12,0.29,0.34,0.15,0.2,0.09,0.13,0.44,0.09,0.15,0.1,0.19,0.26,0.33,0.12,0.12,0.12,0.26,0.23,0.85,0.16,0.12,0.26,0.29,0.12,0.1,0.15,0.19,0.26,0.13,0.15,0.24,0.18,0.24,0.15,0.1,0.08,0.21,0.25,0.07,0.08,0.12,0.24,0.25,0.13,0.09,0.1,0.17,0.1,0.21,0.1,0.1,0.25,0.12,0.25,0.1,0.09,0.21,0.15,0.29,0.09,0.22,0.14,0.13,0.28,0.1,0.1,0.19,0.09,0.23,0.1,0.14,0.17,0.09,0.23,0.08,0.1,0.2,0.07,0.1,0.25,0.1,0.28,0.07,0.09,0.25,0.12,0.2,0.18,0.18,0.34,0.23,0.28,0.1,0.1,0.23,0.11,0.23,0.12,0.08,0.34,0.11,0.22,0.07,0.13,0.24,0.14,0.17,0.14,0.1,0.14,0.26,0.28,0.08,0.11,0.11,0.27,0.22,0.12,0.13,0.11,0.41,0.32,0.1,0.15,0.1,0.27,0.14,0.1,0.16,0.13,0.24,0.19,0.07,0.08,0.12,0.27,0.2,0.07,0.1,0.11,0.23,0.22,0.09,0.12,0.1,0.16,0.46,0.1,0.13,0.12,0.39,0.84,0.11,0.09,0.16,0.1,0.31,0.07,0.1,0.09,0.11,0.3,0.11,0.11,0.08,0.14,0.3,0.07,0.1,0.1,0.1,1.06,0.11,0.1,0.15,0.13,0.35,0.12,0.2,0.1,0.25,0.42,0.12,0.12,0.12,0.14,0.2,0.25,0.1,0.09,0.09,0.17,0.22,0.11,0.1,0.16,0.14,0.27,0.07,3.62,0.1,0.21,0.3,0.21,0.17,0.13,0.26,5.03,0.27,0.13,0.22,0.26,0.24,0.14,0.08,0.1,0.23,0.23,0.13,0.11,0.15,0.17,0.16,0.42,0.1,0.12,0.24,0.12,0.28,0.12,0.17,0.27,0.18,0.3,0.15,0.1,0.24,0.14,0.27,0.17,0.43,0.22,0.14,0.42,0.15,0.12,0.25,0.18,0.26,0.1,0.1,0.24,0.17,0.27,0.09,0.1,0.26,0.1,0.08,0.3,0.09,0.26,0.1,0.1,0.26,0.11,0.24,0.07,0.12,0.3,0.22,0.22,0.19,0.11,0.26,0.1,0.24,0.15,0.13,0.31,0.12,0.22,0.07,0.11,0.27,0.12,0.16,0.15,0.12,0.25,0.07,0.22,0.11,0.1,0.25,0.14,0.29,0.11,0.08,0.1,0.46,0.21,0.12,0.09,0.11,0.24,0.24,0.09,0.1,0.14,0.26,0.27,0.13,0.12,0.11,0.26,0.18,0.1,0.11,0.11,1.11,0.23,0.13,0.14,0.1,0.27,0.22,0.14,0.06,0.12,0.28,0.39,0.11,0.17,0.13,0.11,0.37,0.14,0.1,0.11,0.08,0.28,0.11,0.13,0.08,0.12,0.28,0.14,0.13,0.05,0.09,0.38,0.25,0.15,0.14,0.19,0.39,0.17,0.19,0.14,0.36,0.3,0.15,0.23,0.16,0.14,0.28,0.24,0.17,0.14,0.19,0.19,0.3,0.12,0.12,0.14,0.22,0.28,0.13,0.15,0.12,0.29,0.31,0.21,0.17,0.21,0.24,0.35,0.15,0.18,0.41,0.24,0.35,0.16,0.17,0.18,0.25,0.29,0.18,0.18,0.2,0.29,0.17,0.3,0.22,0.17,0.21,0.2,0.32,0.16,0.17,0.29,0.22,0.33,0.17,0.15,0.27,0.19,0.31,0.17,0.39,0.28,0.17,0.31,0.16,0.2,0.2,0.15,0.3,0.18,0.17,0.19,0.15,0.35,0.18,0.15,0.28,0.18,0.18,0.38,0.14,0.25,0.16,0.2,0.31,0.21,0.26,0.2,0.17,0.33,0.39,0.26,0.19,0.17,0.31,0.18,0.3,0.22,0.2,0.36,0.23,0.32,0.15,0.18,0.36,0.18,0.21,0.18,0.17,0.35,0.18,0.28,0.16,0.16,0.22,0.45,0.31,0.22,0.21,0.19,0.59,0.31,0.2,0.2,0.22,0.3,0.27,0.18,0.25,0.15,0.33,0.39,0.17,0.2,0.21,0.34,0.33,0.21,0.17,0.17,0.33,0.28,0.16,0.19,0.16,0.31,0.22,0.17,0.19,0.16,0.31,0.48,0.25,0.2,0.51,0.23,0.41,0.18,0.18,0.23,0.2,0.44,0.2,0.17,0.22,0.18,0.4,0.18,0.19,0.17,0.15,0.53,0.17,0.22,0.17,0.18,0.44,0.15,0.15,0.1,0.17,0.31,0.17,0.12,0.1,12.9,3.29,0.26,0.12,0.1,0.09,0.2,0.25,0.07,0.08,0.07,1.52,0.23,0.11,0.1,0.07,0.19,1.03,0.07,0.07,0.09,0.22,0.28,0.1,0.1,0.15,0.12,4.01,0.17,0.13,0.39,0.23,0.23,0.11,0.14,0.08,0.17,0.1,0.27,0.09,0.12,0.15,0.1,0.26,0.14,0.13,0.23,0.12,0.36,0.12,0.14,0.3,0.14,0.28,0.12,0.32,0.21,0.09,0.25,0.14,0.07,0.19,0.09,0.24,0.09,0.1,0.17,0.11,0.27,0.09,0.08,0.16,0.08,0.2,0.11,0.08,0.23,0.06,0.06,0.27,0.15,0.21,0.1,0.09,0.21,0.27,0.19,0.08,0.09,0.31,0.07,0.76,0.14,0.15,0.34,0.09,0.25,0.11,0.11,0.22,0.15,0.22,0.12,0.12,0.27,0.17,0.28,0.08,0.06,0.12,0.29,0.34,0.12,0.14,0.11,0.45,0.21,0.07,0.08,0.09,0.26,0.16,0.1,0.08,0.08,0.23,0.15,0.1,0.08,0.08,0.22,0.15,0.14,0.1,0.1,0.3,0.24,0.11,0.1,0.14,0.22,0.28,0.12,0.13,0.12,0.24,0.52,0.11,0.1,0.11,0.09,0.35,0.11,0.11,0.11,0.15,0.35,0.09,0.09,0.1,0.13,0.38,0.12,0.12,0.15,0.11,0.39,0.12,0.1,0.14,0.1,0.34,0.1,0.09,0.1,0.23,0.39,0.12,0.1,0.13,0.11,0.34,0.08,0.12,0.08,0.1,0.22,0.23,0.1,0.11,0.1,0.13,0.25,0.11,0.1,0.07,0.25,0.33,0.13,0.1,0.1,0.3,0.28,0.12,0.16,0.31,0.23,0.28,0.11,0.08,0.12,0.16,0.23,0.14,0.13,0.14,0.24,0.24,0.08,0.08,0.12,0.13,0.07,0.29,0.12,0.1,0.3,0.17,0.23,0.12,0.21,0.22,0.12,0.28,0.08,0.28,0.23,5.21,0.38,0.09,0.12,0.17,0.1,0.24,0.11,0.08,0.19,0.12,0.27,0.11,0.13,0.2,0.15,0.23,0.12,0.13,0.2,0.12,0.15,0.96,0.15,0.18,0.08,0.1,0.24,0.23,0.2,0.12,0.12,0.26,0.11,0.24,0.1,0.08,0.24,0.06,0.2,0.15,0.1,0.27,0.1,0.19,0.15,0.13,0.22,0.08,0.3,0.08,0.1,0.2,0.1,0.14,0.1,0.12,0.14,0.34,0.22,0.1,0.09,0.11,0.24,0.2,0.1,0.09,0.13,0.24,0.17,0.08,0.1,0.13,0.24,0.23,0.11,0.16,0.09,0.22,0.22,0.13,0.1,0.28,0.28,0.26,0.12,0.12,0.1,0.57,0.22,0.09,0.1,0.1,0.08,0.39,0.1,0.1,0.52,0.08,0.32,0.17,0.09,0.09,0.09,0.4,0.13,0.1,0.09,0.1,0.44,0.14,0.1,0.1,0.13,0.28,0.09,0.14,0.11,0.25,0.36,0.14,0.16,0.08,0.07,0.38,0.1,0.1,0.18,0.21,0.17,0.26,0.17,0.12,0.1,0.26,0.33,0.12,0.13,0.14,0.23,0.34,0.1,0.08,0.14,0.27,0.25,0.14,0.12,0.28,0.31,0.27,0.18,0.17,0.15,0.2,4.99,0.27,0.22,0.21,0.26,0.32,0.21,0.2,0.22,0.32,0.22,0.38,0.18,0.17,0.32,0.18,0.38,0.2,0.18,0.34,0.19,0.37,0.23,0.44,0.27,0.17,0.31,0.15,0.19,0.24,0.16,0.37,0.17,0.17,0.23,0.19,0.4,0.17,0.19,0.24,0.17,0.38,0.19,0.18,0.27,0.18,0.35,0.18,0.15,0.35,0.14,0.2,0.41,0.4,0.26,0.19,0.24,0.32,0.17,0.36,0.2,0.22,0.37,0.17,0.26,0.2,0.19,0.39,0.17,0.25,0.2,0.17,0.35,0.26,0.3,0.18,0.18,0.33,0.16,0.24,0.18,0.16,0.34,0.4,0.32,0.2,0.17,0.19,0.37,0.31,0.19,0.21,0.16,0.29,0.32,0.16,0.18,0.17,0.37,0.22,0.17,0.2,0.18,0.35,0.32,0.17,0.22,0.2,0.32,0.28,0.47,0.17,0.16,0.52,0.3,0.15,0.16,0.16,0.32,0.35,0.2,0.17,0.2,0.19,0.49,0.19,0.19,0.17,0.2,0.42,0.21,0.18,0.23,0.17,0.49,0.16,0.15,0.17,0.18,0.38,0.18,0.19,0.17,0.27,0.53,0.19,0.21,0.23,0.24,0.48,0.2,0.21,0.18,0.19,0.41,0.15,0.18,0.16,0.11,0.22,0.26,0.15,0.13,0.14,0.24,0.32,0.11,0.14,0.12,0.27,0.3,0.08,0.1,0.29,0.2,0.24,0.11,0.1,0.12,0.17,0.67,0.09,0.12,0.09,0.18,2.17,0.12,0.09,0.09,0.25,0.33,0.12,0.13,0.09,0.26,0.24,0.1,0.09,0.1,0.18,0.09,0.23,0.12,0.27,0.19,0.08,0.22,0.14,0.12,0.21,0.07,0.3,0.1,0.09,0.21,0.11,0.2,0.09,0.08,0.24,0.12,0.25,0.1,0.11,0.24,0.12,0.25,0.07,0.09,0.22,0.12,0.23,0.18,0.14,0.17,0.1,0.08,0.25,0.07,0.16,0.08,0.1,0.25,0.08,0.23,0.12,0.11,0.21,0.08,0.19,0.13,0.07,0.23,0.1,0.22,0.17,0.14,0.28,0.14,0.21,0.09,0.12,0.26,0.19,0.17,0.1,0.11,0.18,0.23,0.2,0.09,0.09,0.11,0.22,0.15,0.07,0.08,0.09,0.22,0.23,0.14,0.09,0.13,0.24,0.27,0.19,0.14,0.1,0.25,0.23,0.09,0.09,0.1,0.28,0.21,0.09,0.14,0.09,0.22,0.13,0.11,0.1,0.14,0.21,0.14,0.1,0.12,0.07,0.1,0.32,0.13,0.06,0.08,0.1,0.47,0.08,0.09,0.1,0.1,0.34,0.08,0.07,0.13,0.16,0.38,0.11,0.09,0.11,0.07,0.35,0.09,0.1,0.06,0.11,0.37,0.07,0.11,0.08,0.09,0.28,0.13,0.1,0.07,0.1,0.36,0.07,0.07,0.08,0.1,0.15,0.23,0.1,0.53,0.13,0.14,0.25,0.12,0.08,0.13,0.18,0.22,0.1,0.08,0.08,0.17,3.76,0.91,0.07,0.09,0.22,0.22,0.09,0.1,0.09,0.29,0.23,0.09,0.15,0.11,0.19,0.22,0.14,0.1,0.22,0.21,0.24,0.14,0.08,0.15,0.28,0.14,0.25,0.16,0.08,0.17,0.1,0.23,0.1,0.13,0.25,0.13,0.27,0.12,0.1,0.16,0.05,0.22,0.14,0.13,0.19,0.1,0.39,0.13,0.21,0.21,0.15,0.34,0.11,0.13,0.2,0.13,0.3,0.11,0.1,0.31,0.11,0.29,0.15,0.07,0.22,0.11,0.11,0.34,0.09,0.29,0.08,0.08,0.26,0.08,0.17,0.09,0.11,0.24,0.25,0.19,0.11,0.1,0.3,0.1,0.24,0.1,0.1,0.25,0.12,0.23,0.1,0.1,0.29,0.12,0.2,0.11,0.1,0.2,0.13,0.2,0.1,0.1,0.08,0.21,0.25,0.12,0.1,0.1,0.32,0.16,0.08,0.1,0.1,0.19,0.2,0.11,0.12,0.1,0.21,0.21,0.12,0.11,0.6,0.26,0.19,0.14,0.12,0.08,0.23,0.25,0.14,0.11,0.14,0.13,0.39,0.12,0.11,0.08,0.2,0.35,0.1,0.15,0.15,0.14,0.36,0.12,0.08,0.09,0.14,0.36,0.11,0.17,0.08,0.09,0.35,0.13,0.15,0.17,0.15,0.35,0.15,0.13,0.17,0.07,0.43,0.17,0.2,0.19,0.31,0.22,0.35,0.18,0.15,0.08,0.18,0.3,0.19,0.1,0.17,0.2,0.27,0.12,0.11,0.18,0.25,0.32,0.13,0.12,0.17,0.34,0.36,0.2,0.22,0.17,0.28,0.29,0.15,0.21,0.39,0.29,0.3,0.2,0.15,0.19,0.3,0.17,0.32,0.18,0.17,0.27,0.17,0.32,0.18,0.19,0.26,0.18,0.32,0.22,0.16,0.28,0.19,0.32,0.2,0.17,0.32,0.21,0.28,0.16,0.75,1.04,0.17,0.31,0.14,0.16,0.28,0.17,0.3,0.18,0.16,0.24,0.18,0.31,0.19,1.25,0.23,0.17,0.15,0.32,0.17,0.31,0.17,0.22,0.3,0.18,0.24,0.19,0.2,0.31,0.35,0.29,0.18,0.19,0.34,0.17,0.26,0.17,0.16,0.33,0.17,0.3,0.17,0.18,0.3,0.17,0.26,0.14,0.17,0.32,0.16,0.19,0.19,0.19,0.16,0.33,0.27,0.17,0.14,0.17,0.42,0.27,0.23,0.21,0.19,0.32,0.3,0.16,0.22,0.15,0.33,0.28,0.2,0.24,0.16,0.31,0.26,0.19,0.17,0.2,0.3,0.93,0.16,0.17,0.14,0.2,0.47,0.16,0.16,0.22,0.46,0.39,0.19,0.17,0.17,0.17,0.41,0.21,0.26,0.2,0.18,0.46,0.17,0.15,0.19,0.15,0.4,0.19,0.16,0.17,0.18,0.49,0.17,0.16,0.15,0.15,0.35,0.22,0.13,0.18,0.21,0.22,0.29,0.1,0.14,0.11,0.17,0.23,0.13,0.17,0.11,0.18,0.2,0.12,0.1,0.11,0.21,4.9,0.24,0.08,0.07,0.29,0.24,0.09,0.1,0.15,0.19,0.22,0.14,0.11,0.23,0.2,0.17,0.29,0.1,0.1,0.18,0.14,0.32,0.15,0.1,0.2,0.08,0.23,0.08,0.11,0.2,0.12,0.24,0.07,0.11,0.19,0.13,0.23,0.11,0.06,0.25,0.13,0.26,0.13,0.28,0.18,0.1,0.25,0.11,0.13,0.23,0.07,0.15,0.27,0.1,0.12,0.1,0.16,0.23,0.1,0.17,0.11,0.1,0.27,0.11,0.23,0.1,0.1,0.23,0.07,0.17,0.1,0.07,0.26,0.37,0.21,0.13,0.16,0.21,0.13,0.26,0.15,0.14,0.27,0.14,0.22,0.14,0.1,0.26,0.1,0.22,0.15,0.09,0.1,0.3,0.22,0.13,0.12,0.15,0.32,0.16,0.07,0.11,0.13,0.39,0.22,0.11,0.14,0.09,0.26,0.17,0.08,0.1,0.1,0.21,0.2,0.12,0.08,0.09,0.21,0.31,1.73,0.12,0.07,0.24,0.31,0.1,0.09,0.09,0.08,0.37,0.13,0.07,0.09,0.29,0.29,0.08,0.09,0.12,0.14,0.41,0.12,0.09,0.08,0.11,0.32,0.09,0.16,0.06,0.1,0.45,0.13,0.13,0.07,0.13,0.43,0.1,0.09,0.09,0.14,0.39,0.12,0.12,0.1,0.27,0.31,0.09,0.11,0.07,0.12,0.22,0.29,0.11,0.16,0.08,0.17,0.27,0.14,0.11,0.08,0.1,0.23,0.05,0.09,0.08,0.29,0.25,0.11,0.08,0.1,0.19,0.23,0.11,0.05,0.27,0.17,0.23,0.14,0.08,0.09,0.12,0.08,0.23,0.08,0.09,0.17,0.08,0.25,0.07,0.08,0.18,0.09,0.22,0.11,0.09,0.22,0.12,0.28,0.11,0.12,0.21,0.08,0.24,0.09,0.26,0.25,0.09,0.26,1.38,0.1,0.18,0.09,0.27,0.07,0.1,0.24,5.78,0.39,0.11,0.13,0.15,0.09,1.48,0.09,0.1,0.17,0.07,0.07,0.21,0.07,0.12,0.11,0.09,0.24,0.28,0.19,0.11,0.13,0.26,0.1,0.21,0.11,0.14,0.26,0.07,0.23,0.12,0.1,0.29,0.17,0.26,0.09,0.14,0.42,0.08,0.17,0.13,0.11,0.19,0.17,0.21,0.1,0.13,0.12,0.41,0.17,0.11,0.15,0.07,0.22,0.2,0.12,0.12,0.11,0.26,0.26,0.1,0.07,0.1,0.35,0.15,0.09,0.12,0.16,0.29,0.22,0.11,0.13,0.08,0.28,0.25,0.11,0.1,0.09,0.18,0.32,0.13,0.1,0.1,0.11,0.37,0.11,0.08,0.09,0.1,0.34,0.12,0.11,0.08,0.1,1.81,0.1,0.1,0.1,0.12,0.33,0.12,0.11,0.13,0.1,0.42,0.16,0.13,0.15,0.37,0.35,0.13,0.16,0.12,0.14,2.41,24.72,0.15,0.17,0.17,0.13,0.32,0.21,0.13,0.19,0.22,0.28,0.1,0.1,0.15,0.28,4.06,0.22,0.12,0.14,0.25,0.27,0.12,0.22,0.24,0.22,0.24,0.16,0.13,0.39,0.25,0.38,0.26,0.17,0.18,0.65,0.35,0.17,0.2,0.17,0.21,0.17,0.32,0.18,0.27,0.23,0.2,0.32,0.2,0.16,0.27,0.14,0.29,0.15,0.27,0.29,0.19,0.31,0.15,0.19,0.23,0.16,0.33,0.19,0.26,0.25,0.16,0.35,0.21,0.17,0.29,0.21,0.32,0.16,0.15,1.25,0.19,0.31,0.17,0.18,0.3,0.2,0.24,0.36,0.31,0.28,0.19,0.2,0.39,0.18,0.32,0.21,0.22,0.32,0.16,0.3,0.17,0.21,0.32,0.19,0.33,0.19,0.18,0.32,0.22,0.27,0.21,0.17,0.31,0.18,0.25,0.19,0.19,0.34,0.37,0.28,0.16,0.16,0.16,0.39,0.27,0.24,0.21,0.24,0.4,0.24,0.17,0.2,0.16,0.34,0.34,0.2,0.18,0.16,0.3,0.29,0.21,0.2,0.17,0.33,0.24,0.17,0.16,0.16,0.41,0.24,0.18,0.21,0.18,0.36,0.27,0.2,0.17,0.15,0.2,0.51,0.16,0.19,0.21,0.2,0.47,0.2,0.19,0.16,0.21,0.41,0.18,0.17,0.21,0.17,0.42,0.17,0.2,0.2,0.24,0.43,0.19,0.17,0.21,0.19,0.44,0.17,0.24,0.2,0.2,0.35,0.22,0.18,0.17,0.18,0.35,0.15,0.12,0.14,0.1,0.31,0.29,0.1,0.1,0.09,0.28,0.25,0.16,0.1,0.26,0.22,0.27,0.11,0.11,0.1,0.17,0.23,0.12,0.15,0.13,0.21,0.32,0.1,0.09,0.1,0.19,0.29,0.16,0.15,0.11,0.21,0.13,0.24,0.1,0.08,0.21,0.15,0.28,0.09,0.27,0.19,0.08,0.3,0.07,0.15,0.12,0.06,0.24,0.09,0.08,0.14,0.12,0.33,0.11,0.1,0.24,0.11,0.25,0.1,0.1,0.22,0.1,0.27,0.11,0.1,0.15,0.1,0.06,0.21,0.28,0.17,0.11,0.15,0.27,0.13,0.22,0.17,0.13,0.29,0.11,0.25,0.1,0.1,0.23,0.11,0.19,0.13,0.15,0.31,0.07,0.15,0.08,0.12,0.22,0.11,0.26,0.2,0.11,0.22,0.29,0.24,0.12,0.1,0.11,0.28,0.2,0.11,0.13,0.14,0.22,0.24,0.08,0.17,0.08,0.33,0.19,0.28,0.11,0.15,0.28,0.21,0.14,0.28,0.12,0.25,0.22,0.13,0.11,0.1,0.48,0.24,0.07,0.09,0.15,0.28,0.25,0.19,0.15,0.17,0.58,1.34,0.7,0.68,0.13,0.22,0.43,0.14,0.12,0.11,0.13,0.39,0.12,0.17,0.14,19.34,0.78,0.21,0.12,0.17,0.33,19.87,14.65,5.35,0.39,0.14,0.45,19.49,0.15,0.36,18.77,0.63,0.14,0.84,19.47,19.1,0.41,0.35,0.14,0.1,0.15,0.24,0.32,0.14,0.12,0.12,0.25,5.11,0.15,0.15,0.45,0.21,0.3,0.17,0.14,0.15,0.31,0.34,0.17,0.15,0.14,0.27,0.31,0.15,0.15,0.2,0.4,0.33,0.16,0.16,0.17,0.26,0.31,0.2,0.17,0.18,0.26,0.21,0.38,0.19,0.4,0.35,0.27,0.46,0.2,0.17,0.27,0.25,0.35,0.14,0.22,0.25,0.14,0.39,0.16,0.18,0.26,0.14,0.29,0.15,0.13,0.33,0.13,0.51,0.17,0.2,0.28,0.19,0.33,0.16,0.42,0.26,0.18,0.18,0.33,0.19,0.31,0.18,0.13,0.3,0.22,0.26,0.18,0.23,0.27,0.16,0.21,0.14,0.19,0.27,0.17,0.2,0.3,0.15,0.25,0.14,0.17,0.18,0.15,0.3,0.3,0.21,0.13,0.12,0.28,0.17,0.24,0.12,0.14,0.11,0.24,1.16,0.1,0.14,0.11,0.27,0.25,0.19,0.1,0.09,0.27,0.29,0.12,0.09,0.57,0.2,0.15,0.11,0.09,0.1,0.4,0.2,0.15,0.15,0.13,0.29,0.22,0.14,0.1,0.12,0.2,0.34,0.14,0.12,0.14,0.1,0.36,0.14,0.15,0.16,0.13,0.42,0.2,0.16,0.12,0.16,0.36,0.16,0.17,0.14,0.38,0.38,0.14,0.09,0.22,0.14,0.37,0.15,0.07,0.12,0.14,1.64,0.16,0.17,0.16,0.15,0.24,0.3,0.15,0.1,0.14,0.3,0.35,0.12,0.15,0.2,0.32,0.32,0.22,0.24,0.37,0.24,0.26,0.21,0.2,0.15,0.34,0.35,0.17,0.2,0.17,0.27,0.38,0.17,0.17,0.19,0.26,0.32,0.15,0.17,0.21,0.33,0.3,0.18,0.18,0.2,0.25,0.2,0.36,0.21,0.26,0.31,0.21,0.36,0.2,0.23,0.22,0.17,0.3,0.18,0.19,0.26,0.2,0.39,0.17,0.19,0.31,0.22,0.36,0.22,0.17,0.26,0.24,0.42,0.16,1.48,0.24,0.21,0.35,0.2,0.23,0.23,0.17,0.43,0.22,0.24,0.41,0.21,0.24,0.32,0.21,0.26,0.19,0.18,0.35,0.25,0.24,0.26,0.2,0.3,0.2,0.24,0.21,0.18,0.34,0.19,0.34,0.2,0.22,0.34,0.28,0.31,0.19,0.21,0.31,0.2,0.32,0.17,0.21,0.21,0.36,0.28,0.22,0.2,0.17,0.32,0.28,0.18,0.19,0.2,0.31,0.3,0.23,0.18,0.22,0.31,0.23,0.2,0.2,0.19,0.47,0.33,0.18,0.18,0.2,0.37,0.26,0.17,0.24,0.19,0.35,0.28,0.19,0.21,0.18,0.16,0.5,0.16,0.18,0.2,0.19,0.54,0.18,0.18,0.18,0.18,0.42,0.21,0.16,0.2,0.27,0.46,0.23,0.22,0.2,0.17,0.38,0.17,0.22,0.17,0.16,0.38,0.19,0.18,0.17,0.18,0.38,0.16,0.16,0.17,0.2,0.51,0.19,0.24,0.2,0.2,0.25,0.32,0.18,0.16,0.26,0.24,5.36,0.12,0.16,0.19,0.28,0.29,0.17,0.13,0.17,0.15,0.22,0.14,0.08,0.11,0.17,0.22,0.12,0.13,0.09,0.23,0.27,0.12,0.11,0.12,0.25,0.27,0.13,0.09,0.24,0.23,0.24,0.14,0.09,0.13,0.24,0.09,0.3,0.13,0.13,0.17,0.1,0.24,0.15,0.07,0.22,0.15,0.24,0.1,0.12,0.26,0.09,0.29,0.1,0.1,0.18,1.43,0.21,0.12,0.19,0.15,0.12,0.14,0.29,0.12,0.19,0.11,0.14,0.24,0.1,0.27,0.18,0.08,0.25,0.09,0.21,0.07,0.09,0.25,0.19,0.22,0.11,0.11,0.32,0.08,0.21,0.1,0.09,0.26,0.34,0.2,0.12,0.17,0.22,0.12,0.17,0.09,0.12,0.09,0.21,0.21,0.09,0.07,0.08,0.23,0.17,0.1,0.07,0.1,0.25,0.22,0.18,0.19,0.14,0.27,0.25,0.1,0.08,0.08,0.44,0.24,0.11,0.12,0.12,0.24,0.19,0.08,0.11,0.07,0.27,0.22,0.12,0.11,0.07,0.23,0.16,0.1,0.09,0.08,0.07,0.5,0.12,0.1,0.06,0.06,0.31,0.16,0.08,0.07,0.21,0.28,0.13,0.08,0.07,0.07,0.32,0.06,0.08,0.1,0.15,0.35,0.08,0.1,0.89,0.09,0.29,0.1,0.07,0.08,0.06,0.46,0.12,0.08,0.05,0.1,0.22,0.31,0.07,0.08,0.32,0.2,0.25,0.12,0.11,0.12,0.17,0.26,0.1,0.1,0.12,0.22,0.25,0.12,0.14,0.11,0.21,0.21,0.11,0.1,0.12,0.19,0.28,0.09,0.1,0.15,0.23,0.13,0.3,0.1,0.26,0.26,0.12,0.27,0.16,0.12,0.23,0.1,0.29,0.14,0.15,0.24,0.12,0.26,0.15,0.09,0.23,0.14,0.25,0.1,0.1,0.28,0.16,0.27,0.13,0.17,0.2,0.11,0.37,0.13,0.36,0.3,0.14,0.17,0.34,0.12,0.29,0.14,0.15,0.27,0.08,0.18,0.15,0.1,0.29,0.08,0.26,0.13,0.1,0.22,0.1,0.25,0.14,0.08,0.25,0.12,0.15,0.1,0.08,0.24,0.27,0.2,0.11,0.15,0.24,0.1,0.23,0.11,0.1,0.1,0.3,0.33,0.13,0.12,0.1,0.23,0.16,0.1,0.07,0.11,0.25,0.84,0.09,0.09,0.09,0.24,0.23,0.18,0.14,0.14,0.39,0.17,0.14,0.12,0.12,0.26,0.32,0.12,0.09,0.1,0.26,0.24,0.11,0.09,0.17,0.11,0.39,0.12,0.05,0.11,0.09,0.37,0.08,0.12,0.1,0.09,0.34,0.15,0.08,0.12,0.28,0.41,0.08,0.12,0.14,0.14,0.34,0.09,0.1,0.1,0.14,0.49,0.13,0.09,0.09,0.17,0.35,0.07,0.14,0.1,0.06,0.42,0.13,0.16,0.11,0.1,0.19,0.3,0.09,0.08,0.48,0.19,0.26,0.18,0.15,0.17,0.33,5.04,0.42,0.17,0.17,0.25,0.25,0.14,0.13,0.08,0.33,0.27,0.15,0.2,0.23,0.32,0.41,0.26,0.19,0.12,0.22,0.43,0.24,0.13,0.29,0.26,0.21,0.29,0.15,0.24,0.31,0.16,0.37,0.22,0.13,0.29,0.17,0.28,0.19,0.15,0.27,0.2,0.34,0.25,0.17,0.32,0.17,0.37,0.16,0.16,0.27,0.26,0.3,0.17,0.35,0.25,0.24,0.17,0.33,0.24,0.26,0.17,0.2,0.31,0.16,0.25,0.2,0.18,0.33,0.17,0.33,0.26,0.17,0.4,0.24,0.36,0.18,0.27,0.31,0.19,0.29,0.18,0.19,0.41,0.38,0.29,0.18,0.17,0.18,0.34,0.26,0.22,0.17,0.2,0.36,0.26,0.18,0.21,0.17,0.42,0.21,0.17,0.18,0.17,0.33,0.33,0.23,0.22,0.2,0.35,5.61,0.28,0.22,0.2,2.72,0.31,0.18,0.28,0.17,0.36,0.33,0.19,0.19,0.16,0.22,0.6,0.22,0.15,0.17,0.17,0.36,0.2,0.19,0.17,0.22,0.47,0.18,0.21,0.24,0.17,0.47,0.24,0.19,0.2,0.34,0.39,0.17,0.2,0.15,0.2,0.46,0.21,0.22,0.2,0.2,0.47,0.19,0.23,0.17,0.18,0.25,0.37,0.19,0.19,0.17,0.27,0.44,0.2,0.22,0.2,0.23,0.31,0.2,0.21,0.35,0.57,0.33,0.19,0.15,0.18,0.37,0.31,0.18,0.17,0.17,0.31,0.29,0.15,0.16,0.15,0.24,0.28,0.11,0.12,0.1,0.24,0.25,0.1,0.1,0.13,0.25,0.08,0.24,0.08,0.15,0.14,0.07,0.22,0.09,0.07,0.17,0.09,0.27,0.09,0.09,0.24,0.11,0.3,0.11,0.1,0.17,3.94,0.22,0.07,0.1,0.28,0.11,0.21,0.08,0.1,0.2,0.07,0.3,0.1,0.26,0.23,3.59,0.14,0.34,0.12,0.19,0.19,0.14,0.29,0.08,0.15,0.09,0.12,0.3,0.12,0.23,0.12,0.15,0.36,0.15,0.2,0.13,0.08,0.28,0.08,0.21,0.1,0.13,0.24,0.24,0.21,0.14,0.09,0.26,0.11,0.19,0.14,0.12,0.3,0.14,0.21,0.1,0.09,0.1,0.27,0.26,0.4,0.07,0.1,0.23,0.38,0.1,0.11,0.14,0.28,0.25,0.09,0.12,0.08,0.32,0.14,1.69,0.12,0.12,0.28,0.15,0.07,0.07,0.07,0.2,0.19,15.86,3.34,0.1,0.1,1.62,0.07,0.07,0.1,0.07,0.38,0.07,0.09,0.09,0.06,0.33,0.11,0.07,0.07,0.24,0.39,0.11,0.08,0.15,0.12,0.38,0.09,0.11,0.08,0.14,0.28,0.16,0.09,0.11,0.12,0.33,0.1,0.11,0.14,0.1,0.4,0.09,0.09,0.11,0.12,0.16,0.28,0.08,0.12,0.19,0.25,0.27,0.08,0.1,0.12,0.2,0.26,0.16,0.09,0.14,0.17,5.25,0.08,0.11,0.07,0.19,0.2,0.08,0.16,0.12,0.12,0.2,0.11,0.07,0.08,0.18,0.27,0.07,0.15,0.22,0.17,0.21,0.13,0.11,0.11,0.17,0.12,0.31,0.08,0.07,0.24,0.11,0.24,0.07,0.1,0.17,0.12,0.25,0.1,0.06,0.29,0.1,0.2,0.15,0.12,0.16,0.1,0.21,0.08,0.27,0.16,0.09,0.22,0.1,0.06,0.22,0.1,0.27,0.06,0.11,0.22,0.17,0.35,0.34,0.13,0.2,0.15,0.12,0.29,0.08,0.25,0.09,0.13,0.23,0.08,0.18,0.13,0.12,0.37,0.24,0.25,0.11,0.13,0.24,0.11,0.17,0.11,0.12,0.31,0.08,0.22,0.12,0.08,0.24,0.08,0.3,0.08,0.83,0.08,0.24,0.27,0.1,0.08,0.13,0.24,0.22,0.07,0.12,0.1,0.32,0.15,0.12,1.4,0.08,0.2,0.2,0.1,0.1,0.11,0.25,0.19,0.1,0.13,0.13,0.24,0.29,0.15,0.13,0.12,0.22,0.24,0.09,0.1,0.1,0.29,0.18,0.09,0.07,0.09,0.28,0.39,0.1,0.1,0.11,0.09,0.3,0.1,0.11,0.11,0.09,0.28,0.12,0.09,0.13,0.09,0.37,0.13,0.12,0.13,0.08,0.4,0.08,0.12,1.19,0.11,0.34,0.12,0.13,0.13,0.31,0.38,0.12,0.12,0.1,0.09,0.24,0.23,0.09,0.12,0.06,0.15,0.27,0.1,0.06,0.13,0.15,0.26,0.07,0.07,0.09,0.25,0.33,0.13,0.06,0.12,0.17,0.24,0.07,0.12,0.37,0.28,0.32,0.12,0.15,0.17,0.24,0.08,0.3,0.14,0.17,0.25,0.18,0.23,0.15,0.14,0.19,0.12,0.28,0.27,0.14,0.23,0.16,0.32,0.16,0.2,0.28,0.17,0.3,0.18,0.36,0.24,0.17,0.37,0.22,0.23,0.27,0.2,0.39,0.17,0.2,0.33,0.17,0.36,0.17,0.18,0.26,0.2,0.19,0.32,0.2,0.24,0.16,0.57,0.3,0.2,0.24,0.19,0.17,0.32,0.34,0.22,0.17,0.2,0.33,0.18,0.29,0.17,0.17,0.34,0.16,0.31,0.18,0.16,0.31,0.18,0.29,0.15,0.15,0.37,0.17,0.31,0.18,0.23,0.35,0.2,0.19,0.22,0.2,0.2,9.78,9.82,19.42,15.72,3.83,0.5,0.29,0.18,0.17,0.44,0.81,0.73,0.85,0.21,0.19,0.31,0.29,0.17,0.21,0.19,0.31,0.4,0.2,0.18,0.22,0.41,1.48,0.21,0.17,0.16,0.57,0.25,0.22,0.22,0.2,0.34,0.47,0.26,0.18,0.2,0.37,0.31,0.22,19.49,0.47,0.19,0.68,0.2,0.21,0.16,0.2,0.49,0.16,0.19,0.17,0.17,0.38,0.19,0.23,0.16,0.24,0.47,0.2,0.18,0.21,0.18,0.45,0.19,0.2,0.17,0.21,0.41,0.18,0.17,0.15,0.17,0.98,3.66,0.17,0.17,0.2,0.29,0.36,0.22,0.15,0.15,0.24,0.35,0.15,0.18,0.37,0.24,0.26,0.11,0.07,0.08,0.15,0.24,0.14,0.15,0.12,0.17,0.25,0.1,0.13,0.1,0.28,0.31,0.13,0.15,2.46,0.34,0.15,0.39,0.18,0.1,0.29,0.1,0.26,0.08,0.24,0.19,0.1,0.26,0.13,0.15,0.12,0.08,0.25,0.11,0.12,0.18,0.07,0.24,0.09,0.08,0.13,0.08,0.2,0.09,0.09,0.18,0.08,0.06,0.27,0.09,0.19,0.1,0.11,0.23,0.31,0.19,0.09,0.07,0.22,0.11,0.25,0.12,0.14,0.23,0.08,0.13,0.07,0.07,0.22,0.1,0.17,0.09,0.11,0.21,0.08,0.22,0.07,0.07,0.25,0.15,0.17,0.2,0.11,18.39,0.8,18.67,0.12,19.73,0.14,0.57,0.21,0.13,0.1,0.08,0.22,0.2,0.09,0.1,0.09,0.24,0.15,0.11,0.14,0.12,0.25,0.19,0.1,0.13,0.08,0.23,0.17,0.14,0.17,0.12,0.43,0.19,0.1,0.07,0.1,0.25,0.22,0.11,0.1,0.08,0.12,0.51,0.13,0.12,0.17,0.1,0.33,0.12,0.11,0.1,0.08,0.32,0.19,0.13,0.11,0.14,0.38,0.85,0.1,0.1,0.24,0.3,0.12,0.09,0.09,0.12,0.32,0.1,0.11,0.1,0.09,0.4,0.11,0.12,0.13,0.08,0.21,0.25,0.08,0.11,0.1,0.2,0.24,0.08,0.08,0.12,0.22,0.28,0.15,0.12,0.24,0.24,0.24,0.1,0.12,0.14,0.25,0.26,0.12,0.14,0.08,0.16,0.22,0.12,0.12,0.12,0.19,0.24,0.17,0.12,0.1,0.16,0.32,0.12,0.1,0.1,0.25,0.09,0.27,0.15,0.21,0.2,0.11,0.31,0.1,0.13,0.17,0.13,0.27,0.13,0.1,0.2,0.15,0.31,0.1,0.12,0.23,0.16,0.27,0.11,0.15,0.23,0.1,0.29,0.07,0.09,0.28,0.25,0.27,0.11,0.23,0.26,0.07,0.08,13.01,7.24,0.37,0.17,0.12,18.88,0.22,7.75,11.75,0.5,0.3,0.12,0.25,0.11,0.14,0.32,0.14,0.31,0.21,0.11,0.28,0.12,0.24,0.15,0.12,0.25,0.36,0.24,0.12,0.14,0.13,0.3,0.17,0.15,0.18,0.12,0.42,0.18,0.16,0.1,0.14,0.25,0.19,0.11,0.12,0.12,0.25,0.27,0.12,0.09,0.1,0.23,0.2,0.1,0.12,0.11,0.48,0.22,0.1,0.11,0.08,0.11,0.36,0.14,0.1,0.12,0.15,0.37,0.11,0.15,0.09,0.08,0.35,0.09,0.07,0.14,0.1,0.37,0.12,1.52,0.13,0.09,0.36,0.08,0.06,0.09,0.25,0.41,0.07,0.13,0.17,0.13,0.36,1,0.11,0.16,0.08,0.29,0.1,0.12,0.16,0.1,0.16,0.29,0.19,0.15,0.12,0.19,5.02,0.1,0.11,0.13,0.27,0.28,0.1,0.51,0.27,0.19,0.23,0.08,0.14,0.1,0.22,0.29,0.15,0.16,0.1,0.27,0.33,0.11,0.16,0.11,0.23,0.35,0.12,0.18,0.16,0.18,0.1,0.74,0.2,0.12,0.27,0.15,1.06,0.24,0.25,0.26,0.13,0.27,0.1,0.13,0.24,0.12,0.29,0.15,0.18,0.29,0.14,0.3,0.17,0.16,0.33,0.17,0.32,0.15,0.2,0.21,0.17,0.33,0.18,0.19,0.27,0.15,0.18,0.31,0.34,0.26,0.14,0.18,0.37,0.18,0.26,0.16,0.17,0.31,0.17,0.29,0.17,0.16,0.31,0.18,0.22,0.17,0.15,0.3,0.19,0.33,0.2,0.21,0.33,0.17,0.25,0.19,0.18,0.33,0.24,0.25,0.15,0.25,0.38,0.17,0.31,0.18,0.2,0.17,0.33,0.32,0.24,0.17,0.17,0.32,0.23,0.16,0.16,0.17,0.37,0.29,0.19,0.21,0.18,0.32,0.3,0.19,0.19,0.21,0.5,0.28,0.15,0.21,0.22,0.38,0.26,0.26,0.21,0.18,0.32,0.27,0.17,0.17,0.17,0.2,0.43,0.18,0.18,0.18,0.19,0.62,0.21,0.15,1.94,0.17,0.39,0.18,0.15,0.19,0.35,0.49,0.18,0.22,0.21,0.17,0.37,0.16,0.17,1.36,0.17,2.48,0.18,0.18,0.33,0.54,0.34,0.19,0.17,0.2,0.15,0.41,0.29,0.18,0.16,0.16,0.29,0.3,1.47,0.18,0.33,0.28,1.21,0.18,0.16,0.15,0.27,0.35,0.16,0.2,0.16,0.29,0.93,0.17,0.19,0.15,0.23,0.3,0.11,0.12,0.1,0.25,0.27,0.11,0.1,1.23,1.87,0.27,0.07,0.11,1.13,0.6,0.11,1.1,0.09,0.08,0.19,0.63,0.31,0.1,0.72,0.21,0.13,0.23,0.33,0.11,0.16,0.11,0.24,0.12,0.1,0.16,0.15,0.32,0.08,0.14,0.2,0.15,0.6,0.09,0.31,0.17,0.1,0.25,0.11,0.22,0.22,0.09,0.27,1.87,0.1,0.21,0.12,0.12,0.3,0.09,1.42,0.1,0.1,0.45,0.11,1.4,0.12,0.15,0.26,0.16,0.17,0.48,0.09,0.26,0.22,0.15,0.2,0.15,1.4,0.11,0.18,0.13,0.07,0.23,0.07,3.81,0.14,0.11,0.25,0.1,0.64,0.07,1.53,0.11,0.26,0.27,0.08,0.16,0.13,0.3,0.25,0.13,0.15,0.12,0.36,0.18,1.11,0.12,0.12,0.24,0.17,0.1,0.07,0.09,0.26,0.2,0.12,1.93,0.12,0.29,0.2,0.09,0.07,0.07,0.22,0.25,0.15,0.57,0.1,1.71,0.48,0.12,0.14,0.08,0.3,0.33,0.09,0.11,0.1,0.1,0.3,0.15,0.2,0.13,0.17,0.32,0.1,0.17,0.15,0.11,0.41,0.13,0.1,0.09,0.11,0.54,0.11,0.09,0.17,0.14,2.43,3.17,0.16,0.15,0.76,0.34,0.12,0.14,0.14,0.13,0.16,0.3,0.1,0.14,0.41,0.2,0.27,0.08,0.1,0.13,0.14,0.22,0.1,0.08,0.1,0.27,0.27,0.14,0.11,0.08,0.19,0.21,0.09,0.11,0.29,0.23,0.24,0.16,0.14,0.12,0.25,0.21,0.14,0.09,0.11,0.19,0.14,0.26,0.11,0.25,0.29,0.09,0.23,0.1,0.1,0.18,0.1,0.3,0.11,0.16,0.19,0.15,0.39,0.13,0.38,0.22,0.1,0.33,0.07,0.08,0.21,1.09,0.29,0.11,0.11,0.31,0.12,0.11,0.2,0.08,0.17,0.14,0.15,0.33,0.12,0.27,0.07,0.1,0.93,0.1,0.18,0.1,0.09,0.25,0.31,0.22,0.08,0.13,0.25,0.19,0.3,0.1,0.12,1.67,0.09,0.23,0.11,0.09,0.24,0.13,0.3,0.15,0.09,0.11,0.33,0.24,0.14,0.14,0.11,0.54,0.33,0.12,0.17,0.13,0.43,0.25,0.15,0.2,1.23,0.25,0.27,0.17,0.17,0.15,0.25,0.15,0.15,0.13,0.14,0.32,0.23,0.16,0.92,0.15,0.27,0.25,0.17,0.17,0.11,0.28,0.21,0.13,0.13,0.15,0.34,0.78,0.1,0.26,0.15,0.12,0.4,0.17,0.13,0.11,1.59,0.48,0.18,1.09,0.1,0.12,0.32,0.1,0.15,0.17,0.12,0.42,0.12,0.12,0.44,0.12,0.4,0.07,0.11,0.1,0.24,1.58,0.12,0.1,0.07,0.15,0.28,0.25,0.07,0.1,0.09,0.17,0.28,0.13,0.14,0.14,0.27,0.29,0.11,0.23,0.13,0.37,0.36,0.15,0.11,0.14,0.33,0.35,0.14,0.07,0.76,0.24,0.32,0.13,0.18,0.14,0.25,8.82,0.22,0.1,0.19,0.19,0.33,0.12,0.27,0.29,0.39,0.18,0.42,0.21,0.2,0.31,0.18,0.34,0.2,0.23,0.38,0.22,0.39,0.17,0.31,0.29,0.16,0.3,0.19,0.24,0.24,0.22,0.34,0.17,0.23,0.31,0.2,0.41,0.84,0.18,0.25,0.2,0.35,0.19,0.21,0.33,0.19,0.2,0.47,0.17,0.27,0.19,0.16,0.34,0.4,0.29,0.2,0.17,0.43,0.2,0.29,0.2,0.2,0.37,0.18,0.24,0.22,0.19,3.87,0.18,1.53,0.2,0.17,0.39,0.19,0.27,0.21,0.21,0.35,0.17,0.29,0.19,0.17,0.17,0.48,0.27,0.15,0.17,0.19,3.97,0.29,0.18,0.21,0.22,0.31,0.4,0.17,0.19,0.16,0.32,0.28,0.18,0.17,0.2,0.36,0.28,0.25,0.22,0.16,0.37,0.33,0.2,0.62,3.21,0.42,0.31,0.17,0.22,0.22,0.31,0.29,0.38,0.18,0.22,0.24,0.47,0.18,0.18,1.58,0.17,0.46,0.21,0.2,0.26,0.17,0.45,0.2,0.17,0.18,0.19,0.46,0.16,0.19,0.19,0.29,3.85,0.22,0.17,0.16,0.17,0.25,0.3,0.18,0.18,0.17,0.27,0.3,0.17,0.21,0.15,0.25,0.3,0.18,0.16,0.17,0.36,0.32,0.19,0.19,0.18,0.27,0.37,0.17,1.4,0.27,0.19,0.28,0.13,0.11,0.11,0.18,0.28,0.08,0.08,0.11,0.2,0.25,0.58,0.12,0.07,0.15,0.09,0.29,0.07,0.14,0.23,0.1,0.27,0.11,0.14,0.24,0.13,0.27,0.12,0.3,0.28,0.1,0.26,0.12,0.12,0.26,0.18,0.28,0.12,0.14,0.21,0.12,0.25,0.1,0.12,0.17,0.08,0.23,0.1,0.12,0.21,0.09,0.25,0.11,0.14,0.21,0.11,0.1,0.29,0.27,0.22,0.09,0.1,0.23,0.11,0.2,0.11,0.13,0.25,0.14,0.17,0.11,0.91,0.34,0.1,0.22,0.12,0.1,0.24,0.1,0.18,0.12,0.12,0.32,0.11,0.17,0.1,0.15,0.22,0.32,0.18,0.09,0.1,0.22,0.14,0.21,0.08,0.08,0.07,0.24,0.21,0.1,0.11,0.14,0.32,0.19,0.12,0.1,0.1,0.25,0.25,0.18,0.12,0.1,0.25,0.19,0.1,0.12,0.14,0.39,0.27,0.09,0.13,0.05,0.23,0.23,0.12,0.17,0.12,0.29,0.19,0.07,0.15,0.12,0.1,0.42,0.17,0.11,0.1,0.16,0.52,0.08,0.09,0.09,0.15,0.32,0.1,0.12,0.12,0.32,0.34,0.1,0.2,0.1,0.13,0.42,0.13,0.11,0.11,0.12,0.46,0.15,0.09,0.12,0.13,0.39,0.1,0.12,0.18,0.1,0.4,0.13,0.11,0.13,0.1,0.25,0.26,0.1,0.12,0.27,1.62,0.24,0.14,0.13,0.15,0.26,0.22,0.12,0.09,0.08,0.17,0.21,0.1,0.15,1.81,0.16,0.27,0.1,0.1,0.08,0.25,0.24,0.09,0.1,0.1,0.24,0.2,0.14,0.12,0.17,0.23,0.1,0.26,0.12,0.09,0.29,0.13,0.26,0.12,0.13,0.23,0.16,0.24,0.07,0.15,0.18,0.08,0.29,0.07,0.1,0.23,0.1,0.22,0.1,0.08,0.25,0.08,0.27,0.1,0.16,0.25,0.13,0.13,0.27,0.08,0.22,0.1,0.08,0.24,0.09,0.21,0.15,0.11,0.29,0.1,0.57,0.09,0.08,0.29,0.1,0.22,0.12,0.12,0.23,0.1,0.24,0.17,0.16,0.26,0.22,0.23,0.11,0.09,0.29,0.09,0.23,0.08,0.11,0.11,0.25,0.22,0.11,0.12,0.15,0.29,0.18,0.09,0.1,0.12,0.24,0.25,0.09,0.08,0.1,0.24,0.2,0.09,0.15,0.1,0.35,0.24,0.08,0.11,0.17,0.32,0.31,0.18,0.13,0.12,0.3,0.15,0.09,0.1,0.08,0.3,1.74,0.13,0.15,0.08,0.1,0.46,0.11,0.12,0.1,0.06,0.33,0.1,0.13,0.13,0.21,0.39,0.11,0.12,0.13,0.08,5.44,0.15,0.11,0.11,0.1,0.33,0.12,0.11,0.12,0.09,0.31,0.13,0.15,0.12,0.13,0.45,0.19,0.14,0.12,0.12,0.26,0.38,0.12,0.12,0.37,0.26,0.34,0.14,0.11,0.07,0.23,0.3,0.19,0.17,0.14,0.3,0.37,0.2,0.16,0.17,0.17,1.36,0.21,0.14,0.18,0.16,0.23,0.19,0.21,0.14,0.19,0.25,0.1,0.1,0.32,0.26,0.15,0.36,0.21,0.16,0.22,0.16,0.33,0.16,0.18,0.24,0.24,0.31,0.2,0.19,0.34,0.22,0.41,0.24,0.2,0.38,0.2,0.37,0.22,0.25,0.28,0.2,0.39,0.21,0.31,0.32,0.21,0.37,0.2,0.22,0.33,0.34,0.21,0.4,0.25,0.38,0.2,0.18,0.34,0.24,0.29,0.2,0.19,0.32,0.18,0.27,0.16,0.2,0.32,0.17,0.25,0.19,0.19,0.31,0.29,0.26,0.2,0.19,0.31,0.2,0.29,0.2,0.17,0.31,0.22,0.31,0.22,0.23,0.22,0.34,0.28,0.19,0.23,0.21,0.35,0.3,0.22,0.22,0.2,0.35,0.35,0.16,0.17,0.22,0.45,0.32,0.17,0.17,0.2,0.33,0.31,0.19,0.17,0.19,0.36,0.23,0.17,0.2,0.2,0.2,0.46,0.2,0.18,0.18,0.18,0.5,0.22,0.19,0.16,0.19,0.39,0.24,0.18,0.2,0.4,0.41,0.16,0.2,0.19,0.19,0.46,0.17,0.2,0.17,0.22,0.45,0.17,0.15,0.16,0.17,0.35,0.18,0.2,0.17,0.17,0.49,0.4,0.18,0.2,0.22,0.34,0.37,0.18,0.2,0.42,0.32,0.32,0.19,0.19,0.23,0.28,0.32,0.21,0.2,0.16,0.32,0.36,0.24,0.17,0.16,0.2,0.27,2.53,0.16,0.13,0.21,0.27,0.06,0.09,0.08,0.18,0.26,0.1,0.13,0.22,0.21,0.1,0.24,0.11,0.12,0.19,0.1,0.27,0.2,0.12,0.23,0.08,0.25,0.11,0.12,0.22,0.14,0.25,0.1,0.08,0.2,0.12,0.25,0.11,0.1,0.31,0.11,0.21,0.1,0.28,0.21,0.09,0.25,0.65,0.1,0.21,0.09,0.09,0.28,0.1,0.22,0.09,0.08,0.26,0.09,0.22,0.1,0.13,0.21,0.1,0.24,0.07,0.08,0.21,0.1,0.19,0.1,0.08,0.24,0.25,0.27,0.12,0.07,0.23,0.09,0.15,0.08,0.08,0.23,0.07,0.24,0.11,0.09,0.08,0.25,0.2,0.1,0.07,0.08,0.28,0.27,0.09,0.07,0.1,0.25,0.16,0.08,0.09,0.11,0.48,0.19,0.09,0.12,0.1,0.27,0.24,0.1,0.1,0.08,0.2,0.22,0.12,0.09,0.11,0.22,0.24,0.07,0.08,0.65,0.08,0.37,0.07,0.08,0.07,0.08,0.37,0.07,0.11,0.16,0.2,0.28,0.05,0.07,0.06,0.07,0.31,0.08,0.08,0.07,0.1,3.44,0.1,0.08,0.09,0.09,0.37,0.08,0.07,0.1,0.1,0.36,0.09,0.09,0.12,0.07,0.33,0.08,0.08,0.08,0.23,0.14,0.25,0.08,0.09,0.51,2.1,0.24,0.1,0.07,0.09,0.21,0.24,0.07,0.09,0.09,0.15,0.2,0.08,0.08,1.35,0.16,0.23,0.08,0.07,0.07,0.14,0.22,0.1,0.09,0.23,0.14,0.17,0.1,0.07,0.07,0.17,0.09,0.19,0.09,0.09,0.19,0.12,0.25,0.08,0.07,0.19,0.08,0.21,0.07,0.06,0.29,0.15,0.26,0.08,0.19,0.22,0.11,0.22,0.12,0.26,0.2,0.08,0.22,0.12,0.1,0.26,0.11,0.09,0.25,0.07,0.22,0.1,0.1,0.25,0.07,0.2,0.07,0.07,0.26,0.71,0.28,0.08,0.12,0.24,0.1,0.25,0.09,0.07,0.29,0.3,0.21,0.11,0.1,0.21,0.12,0.18,0.09,0.13,0.25,0.06,0.19,0.07,0.07,0.07,0.25,0.21,0.08,0.06,0.1,0.23,0.26,0.1,0.11,0.06,0.22,0.18,0.08,0.15,0.1,0.39,0.19,0.1,0.08,0.08,0.25,0.19,0.08,0.09,0.07,0.27,0.19,0.08,0.12,0.11,0.23,0.17,0.07,0.14,0.09,0.12,0.49,0.08,0.08,0.08,0.09,0.46,0.09,0.07,0.09,0.21,0.31,0.1,0.11,0.09,0.12,0.28,0.53,0.11,0.1,0.1,0.27,0.1,0.1,0.13,0.09,0.31,0.07,0.12,0.13,0.06,0.33,0.1,0.1,0.09,0.07,0.15,0.22,0.09,0.1,0.26,0.17,0.21,0.1,0.14,0.09,0.2,0.25,0.12,0.12,0.11,0.28,0.26,0.13,0.12,0.11,0.19,0.29,0.1,0.17,0.1,0.15,0.28,0.09,0.09,0.08,0.22,0.28,0.14,0.15,0.32,0.19,0.25,0.1,0.12,0.16,0.22,0.2,0.3,0.08,0.09,0.2,0.1,0.3,0.1,0.15,0.25,0.13,0.29,0.19,0.18,1.05,0.14,0.29,0.18,0.17,0.22,0.16,0.35,0.22,0.35,0.26,0.19,0.34,0.19,0.18,0.34,0.18,0.19,0.45,0.19,0.28,0.18,0.17,0.31,0.19,0.29,0.16,0.22,0.34,0.21,0.25,0.2,0.18,0.33,0.18,0.35,0.18,0.18,0.33,0.28,0.29,0.17,0.18,0.34,0.2,0.28,0.2,0.23,0.3,0.2,0.31,0.2,0.22,0.15,0.37,0.24,0.18,0.2,0.15,0.29,0.33,0.17,0.19,0.18,0.37,0.3,0.2,0.19,0.18,0.52,0.24,0.17,0.18,0.2,0.37,0.32,0.15,0.2,0.2,0.34,0.33,0.17,0.17,0.19,0.3,0.4,0.16,0.21,0.17,0.18,0.5,0.18,2.34,0.16,0.16,0.42,0.19,0.15,0.17,0.27,0.4,0.15,0.17,0.15,0.18,0.5,0.17,0.19,0.15,0.18,0.39,0.15,0.16,0.17,0.18,5.13,0.45,0.14,0.18,0.16,0.34,0.29,0.19,0.2,0.18,0.25,0.41,0.23,0.17,0.3,0.29,0.3,0.19,0.16,0.2,0.29,0.3,0.17,0.18,0.18,1.9,0.37,0.29,0.18,0.18,0.29,0.37,0.2,0.18,0.18,0.29,0.32,0.16,1.38,0.17,0.28,0.31,0.17,0.17,0.26,0.23,0.14,0.25,0.11,0.14,0.16,0.14,0.26,0.1,0.08,0.13,0.13,0.21,0.1,0.08,0.21,0.14,0.27,0.08,0.08,0.28,0.09,0.27,0.11,0.08,0.16,0.1,0.23,0.07,0.17,0.24,0.16,0.26,0.1,0.16,0.22,0.17,0.09,0.28,0.11,0.19,0.09,0.1,0.24,0.07,0.17,0.1,0.08,0.24,0.08,0.19,0.09,0.07,0.26,0.08,0.21,0.13,0.08,0.27,0.29,0.22,0.09,0.09,0.26,0.1,0.26,0.1,0.09,0.26,0.11,0.25,0.09,0.09,0.28,0.12,0.13,0.07,0.1,0.09,0.23,0.29,0.1,0.1,0.09,0.24,0.16,0.08,0.1,0.14,0.43,0.22,0.07,0.11,0.13,0.33,0.21,0.11,0.1,0.14,0.25,0.21,0.3,0.1,0.12,0.25,0.24,0.13,0.08,0.12,0.27,0.18,0.08,0.1,0.08,0.13,0.34,0.09,0.08,0.12,0.31,0.4,0.11,0.1,0.12,0.09,0.34,0.09,0.09,0.09,0.09,0.35,0.1,0.12,0.08,0.09,0.36,0.09,0.09,0.07,0.08,0.4,0.08,0.1,0.1,0.1,0.34,0.11,0.1,0.09,0.31,0.18,0.22,0.11,0.11,0.11,0.18,0.27,0.09,0.18,0.13,0.17,1.04,0.1,0.12,0.1,0.24,0.29,0.11,0.1,0.14,0.19,0.27,0.14,0.11,0.1,0.26,0.3,0.09,0.11,0.19,0.23,0.3,0.1,0.09,0.13,0.15,0.1,0.27,0.19,0.1,0.18,0.07,0.3,0.09,0.08,0.28,0.15,0.21,0.1,0.1,0.29,0.1,0.3,0.16,0.08,0.22,0.12,3.62,0.17,0.25,0.2,0.08,0.24,0.09,0.08,0.16,0.08,0.22,0.12,0.1,0.26,0.1,0.18,0.24,0.11,1.84,0.12,0.11,0.37,0.12,0.22,0.09,0.13,0.27,0.22,0.14,0.09,0.13,0.25,0.2,0.19,0.1,0.14,0.25,0.12,0.24,0.14,0.12,0.24,0.08,0.21,0.1,0.12,0.14,0.27,0.24,0.1,0.08,0.09,0.28,0.28,0.15,0.14,0.12,0.25,0.19,0.12,0.12,0.12,0.36,0.19,0.15,0.1,0.14,0.34,0.29,0.1,0.11,0.15,0.24,0.19,0.77,0.1,0.07,0.27,0.24,0.07,0.13,0.09,0.07,0.34,0.08,0.11,0.1,0.14,0.43,0.12,0.12,0.16,0.3,0.39,0.13,0.11,0.08,0.11,0.32,0.09,0.17,0.13,0.1,0.33,0.07,0.12,0.13,0.1,0.34,0.11,0.12,0.12,0.12,4.65,0.85,0.13,0.13,0.11,0.18,0.39,0.1,0.1,0.33,0.2,0.26,0.12,0.11,0.09,0.2,0.23,0.12,0.09,0.08,0.23,0.26,0.08,0.13,0.12,0.18,0.23,0.12,0.15,0.12,0.22,0.23,0.12,0.11,0.12,0.47,0.27,0.1,0.11,0.3,0.19,0.29,0.1,0.15,0.1,0.22,0.09,0.27,0.1,0.1,0.23,0.09,0.28,0.12,0.15,0.2,0.14,0.29,0.25,0.12,0.27,0.12,0.33,0.19,0.15,0.29,0.12,0.27,0.19,0.36,0.26,0.12,0.29,0.18,0.17,0.26,0.17,0.39,0.16,0.17,0.21,0.16,1.71,0.18,0.22,0.31,0.2,0.22,0.43,0.15,0.32,0.2,0.16,0.36,0.15,1.69,0.17,0.2,0.35,0.43,0.37,0.2,0.17,0.33,0.18,0.25,0.16,0.16,0.3,0.16,0.28,0.15,0.17,0.3,0.2,0.33,0.16,0.21,0.29,0.17,0.35,0.18,0.18,0.17,0.38,0.26,0.16,0.16,0.18,0.44,0.26,0.2,0.2,0.15,0.36,0.29,0.2,0.2,0.17,0.31,0.31,0.18,0.2,0.18,0.32,0.34,0.21,0.16,0.17,0.32,0.3,0.17,0.16,0.2,3.37,0.98,0.18,0.2,0.24,0.32,0.5,0.2,0.25,0.2,0.15,0.42,0.18,0.2,0.2,0.19,0.41,0.16,0.17,0.17,0.18,0.44,0.15,0.18,0.18,0.17,0.48,0.2,0.16,0.2,0.16,0.43,0.17,0.18,0.21,0.25,0.44,0.16,0.2,0.19,0.17,0.28,0.32,0.19,0.2,0.19,0.23,0.36,0.27,1.45,0.17,0.31,0.29,0.17,0.2,0.19,0.25,0.3,0.17,0.19,0.2,0.34,1.58,0.24,0.22,0.34,0.31,0.39,0.19,0.2,0.2,0.3,0.32,0.2,0.2,0.15,0.26,0.32,0.15,0.18,0.19,0.3,0.17,0.41,0.15,0.13,0.29,0.09,0.25,0.08,0.1,0.17,0.09,0.28,0.09,0.18,0.18,0.1,0.25,0.09,0.09,0.19,0.09,0.31,0.11,0.1,0.14,0.09,0.24,0.11,0.12,0.2,0.09,0.21,0.13,0.12,0.2,0.16,0.1,0.31,0.16,0.2,0.1,0.1,0.3,0.17,0.17,0.12,0.08,0.25,0.09,0.21,0.11,0.12,0.33,0.11,0.16,0.09,0.08,0.25,0.1,0.2,0.07,0.1,0.25,0.08,0.24,0.09,0.1,0.25,0.1,0.19,0.08,0.12,0.24,0.23,0.2,0.13,0.1,0.1,0.31,0.25,0.15,0.1,0.09,0.29,0.16,0.11,0.09,0.06,1.42,0.2,0.1,0.1,0.08,0.22,0.15,0.08,0.1,0.09,0.3,0.15,0.1,0.08,0.15,0.47,0.19,0.1,0.1,0.09,0.26,0.26,0.11,0.2,0.08,0.25,0.19,0.1,0.12,0.1,0.1,0.45,0.12,0.1,0.07,0.08,0.6,0.12,0.09,0.08,0.12,6.4,0.19,0.11,0.11,0.24,0.32,0.1,0.08,0.12,0.09,0.36,0.11,0.12,0.12,0.09,0.31,0.12,0.08,0.13,0.09,0.39,0.12,0.09,0.1,0.1,0.3,0.17,0.07,0.1,0.1,0.15,0.24,0.1,0.11,0.23,0.11,0.27,0.13,0.09,0.09,0.18,0.22,0.1,0.07,0.07,0.21,0.24,0.11,0.07,0.1,0.2,0.25,0.08,0.09,0.1,0.24,0.24,0.08,0.08,0.08,0.21,0.24,0.08,0.06,0.28,0.24,0.1,0.23,0.08,0.08,0.17,0.11,0.26,0.11,0.07,0.19,0.09,0.23,0.08,0.06,2.19,0.09,0.25,0.08,0.09,0.2,0.09,0.27,0.12,0.1,0.22,0.1,0.27,0.14,0.32,0.23,0.14,0.24,0.09,0.12,0.26,0.1,0.32,0.13,0.14,0.19,0.12,0.1,0.25,0.15,0.21,0.11,0.13,0.3,0.13,0.26,0.12,0.13,0.25,0.11,0.23,0.11,0.15,0.24,0.29,0.27,0.16,0.08,0.33,0.11,0.23,0.12,0.13,0.25,0.12,0.26,0.17,0.14,0.3,0.11,0.24,1.98,0.1,0.3,0.12,0.21,0.1,0.09,0.12,0.36,0.26,0.1,0.1,0.13,0.54,1.96,0.13,0.08,0.11,0.3,0.18,0.1,0.13,0.1,0.27,0.23,0.14,0.1,0.13,0.25,0.24,0.12,0.11,0.12,0.33,0.31,0.15,0.17,0.21,0.33,0.22,0.09,0.11,0.09,0.39,0.2,0.14,0.11,0.11,0.12,0.41,0.14,0.13,0.07,0.11,0.35,0.08,0.07,0.07,0.07,0.37,0.07,0.08,0.11,0.08,0.34,0.12,0.07,0.1,0.09,0.28,0.09,0.12,0.12,0.24,0.37,3.18,0.1,0.11,0.12,0.4,0.12,0.12,0.12,0.1,0.17,0.25,0.1,0.07,0.1,0.15,0.31,0.07,0.1,0.1,0.19,0.24,0.12,0.1,0.09,0.21,0.27,0.1,0.15,0.29,0.24,0.24,0.15,0.08,0.11,0.31,0.28,0.14,0.16,0.13,0.33,0.32,0.17,0.15,0.13,0.19,0.09,1.7,0.16,0.12,0.2,0.17,0.36,0.15,0.15,0.24,0.15,0.28,0.22,0.41,0.22,0.17,0.34,0.16,0.18,0.24,0.21,0.37,0.18,0.2,0.28,0.19,0.3,0.19,0.2,0.29,0.17,0.32,0.2,0.19,0.33,0.15,0.32,0.17,0.18,0.2,0.17,0.15,0.32,0.4,0.23,0.2,0.19,0.32,0.17,0.34,0.18,0.18,0.34,0.18,0.29,0.19,0.19,0.3,0.18,0.27,0.17,0.18,0.31,0.19,0.33,0.17,0.18,0.32,0.17,0.34,0.18,0.15,0.31,0.42,0.29,0.18,0.16,0.32,0.2,0.24,0.15,0.15,0.17,0.34,0.23,0.21,0.16,0.17,0.33,0.24,0.18,0.15,0.18,0.31,0.31,0.17,0.18,0.17,0.32,0.24,0.19,0.19,0.15,6.04,0.65,0.2,0.16,0.22,0.36,0.26,0.18,0.18,0.16,0.3,0.21,0.17,0.19,0.2,0.32,0.25,0.2,0.15,0.77,0.2,0.5,0.17,0.17,0.17,0.17,0.48,0.18,0.15,0.18,0.37,0.46,0.16,0.19,0.2,0.18,0.37,0.19,0.2,0.18,0.18,0.42,0.2,0.24,0.17,0.17,0.45,0.16,0.15,0.17,0.2,0.4,0.18,0.18,0.19,0.2,0.39,0.2,0.21,0.19,0.34,0.37,0.18,0.19,0.22,0.15,0.17,0.29,0.1,0.12,0.1,0.22,0.31,0.08,0.08,0.12,0.26,0.25,0.09,0.09,0.09,0.2,0.2,0.1,0.1,0.08,0.14,0.25,0.1,0.14,0.23,0.2,0.24,0.29,0.1,0.09,0.15,0.25,0.09,0.08,0.11,0.19,0.08,0.39,0.09,0.11,0.22,0.15,0.3,0.13,0.12,0.26,0.12,0.22,0.1,0.08,0.15,0.1,0.24,0.08,0.18,0.14,0.08,0.23,0.06,0.1,0.12,0.09,0.23,0.08,0.07,0.18,0.1,0.24,0.1,0.08,0.1,0.09,0.21,0.06,0.08,0.23,0.07,0.08,0.24,0.09,0.18,0.11,0.07,0.2,0.24,0.24,0.09,0.1,0.73,0.09,0.18,0.08,0.12,0.26,0.1,0.16,0.07,0.11,0.22,0.1,0.12,0.08,0.1,0.25,0.07,0.24,0.12,0.11,0.22,0.09,0.18,0.07,0.08,0.2,0.27,0.17,0.09,0.1,0.07,0.27,0.19,0.1,0.11,0.11,0.24,0.22,0.1,0.09,0.08,0.24,0.21,0.08,0.07,0.12,1.23,0.17,0.09,0.1,0.09,0.21,0.13,0.12,0.1,0.07,0.4,0.19,0.08,0.1,0.1,1.06,0.17,0.09,0.1,0.1,0.1,0.31,0.09,0.07,0.07,0.12,0.36,0.1,0.09,0.1,0.1,1.17,0.08,0.07,0.08,0.07,0.35,0.15,0.1,0.07,0.19,0.37,0.09,0.09,0.07,0.1,0.31,0.12,0.1,0.1,0.08,0.32,0.13,0.1,0.07,0.08,0.31,0.09,0.1,0.11,0.11,0.21,0.29,0.12,0.09,0.08,0.22,0.24,0.08,0.11,0.17,0.11,0.23,0.1,0.18,4.2,0.15,0.26,0.1,0.07,0.07,0.17,0.23,0.1,0.12,0.1,0.18,6.28,0.1,0.09,0.1,0.27,0.11,0.22,0.1,0.12,0.24,0.07,0.22,0.13,0.28,0.19,0.12,0.24,0.12,0.13,0.24,0.12,0.35,0.09,0.12,0.16,0.08,0.25,0.07,0.09,0.25,0.12,0.23,0.07,0.15,3.02,0.12,0.22,0.08,0.06,0.2,0.1,0.22,0.14,0.27,0.19,0.1,0.12,0.26,2.09,0.19,0.12,0.12,0.23,0.07,0.17,0.08,0.07,0.26,0.06,0.14,0.11,0.06,0.24,0.07,0.2,0.12,0.07,0.26,0.09,0.2,0.09,0.12,0.23,0.17,0.2,0.12,0.11,3.09,0.97,0.19,0.08,0.11,0.14,0.31,0.21,0.15,0.17,0.1,0.31,0.19,0.12,0.07,0.09,0.23,0.22,0.12,0.13,0.1,0.29,0.26,0.09,0.11,0.1,0.38,0.22,0.13,0.1,0.12,0.21,1.44,0.09,0.11,0.09,0.23,0.16,0.09,0.12,0.1,0.21,0.19,0.08,0.12,0.09,0.23,0.22,0.13,0.1,0.1,0.11,0.35,0.07,0.13,0.11,0.28,0.36,0.15,0.14,0.08,0.09,0.38,0.09,0.1,0.16,0.16,0.41,0.09,0.16,0.09,0.09,0.36,0.15,0.14,0.15,0.15,0.36,2.61,0.15,0.12,0.15,0.35,0.2,0.12,0.16,0.38,0.27,0.26,0.11,0.17,0.16,0.21,0.27,0.15,0.14,0.12,0.28,0.31,0.16,0.15,0.15,0.29,0.32,0.15,0.15,0.24,0.3,0.38,0.2,0.17,0.17,0.24,0.34,0.21,0.17,0.32,0.27,0.33,0.17,0.17,0.18,0.3,0.3,0.2,0.17,0.15,0.3,0.16,0.32,0.2,0.2,0.37,0.16,0.32,0.17,0.18,0.36,1.57,0.45,0.16,0.16,0.27,0.17,0.41,0.17,0.28,0.26,0.18,0.29,0.17,0.17,1.4,0.18,0.33,0.17,0.15,0.3,0.18,0.29,0.2,0.17,0.26,0.19,0.18,0.3,0.18,0.31,0.15,0.18,0.31,0.16,0.23,0.18,0.15,0.3,0.32,0.27,0.17,0.21,0.3,0.21,0.23,0.18,0.19,0.31,0.28,0.31,0.17,0.2,0.38,0.19,0.34,0.21,0.17,0.33,0.2,0.32,0.21,0.22,0.19,0.39,0.27,0.2,0.19,0.16,0.45,0.27,0.16,0.17,0.17,0.31,0.27,0.19,0.52,0.2,0.34,0.25,0.17,0.18,0.16,0.31,0.24,0.25,0.18,0.18,0.32,0.29,0.19,0.17,0.18,0.41,0.28,0.17,0.17,0.17,0.53,0.31,0.17,0.2,0.17,0.16,0.46,0.17,0.24,0.16,0.2,0.41,0.21,0.17,0.16,0.18,1.83,0.18,0.16,0.17,0.17,0.41,1.6,0.14,0.1,8.13,0.39,0.11,0.08,0.13,0.37,0.39,0.15,0.11,0.08,0.11,0.35,0.14,0.1,4.37,0.1,0.23,0.23,0.12,0.12,0.1,0.19,0.25,0.13,0.11,0.09,0.18,0.22,0.08,0.11,0.12,0.19,0.24,0.09,0.08,0.21,0.19,0.23,0.12,0.14,0.14,0.23,0.3,0.1,0.08,0.13,0.24,0.26,0.12,0.1,0.09,0.22,0.07,0.26,0.11,0.1,0.25,0.1,0.66,0.09,0.13,0.13,0.11,0.25,0.11,0.21,0.18,0.1,0.2,0.11,0.13,0.16,0.1,0.25,0.09,0.07,0.17,0.1,0.23,0.06,0.08,0.24,0.09,0.22,0.11,0.1,0.21,0.07,0.1,0.22,0.11,0.19,0.12,0.1,0.25,0.21,0.23,0.1,0.08,0.2,0.11,0.14,0.1,0.11,4.96,0.36,0.17,0.08,0.09,0.22,0.15,0.19,0.11,0.07,0.21,0.08,0.21,0.14,0.08,0.27,0.06,0.16,0.07,0.07,0.08,0.4,0.19,0.08,0.08,0.07,0.3,0.21,0.11,0.1,0.12,0.29,0.23,0.09,0.13,0.1,0.27,0.23,0.11,0.12,0.1,0.25,0.23,0.15,0.13,0.11,0.27,0.26,0.15,0.09,0.11,0.53,0.31,0.15,0.11,0.14,0.17,0.44,0.1,0.16,0.09,0.08,0.37,0.12,0.13,0.11,0.14,0.38,0.13,0.09,0.14,0.11,0.4,0.17,0.12,0.18,0.15,0.37,0.14,0.09,0.14,0.32,0.44,0.11,0.19,0.11,0.11,0.34,0.14,0.17,0.1,0.09,0.15,0.29,0.11,0.08,0.11,0.22,0.29,0.12,0.11,0.08,0.24,0.32,0.12,0.11,0.12,0.17,0.3,0.13,0.19,0.3,0.23,0.31,0.13,0.1,0.11,0.2,0.31,0.09,0.11,0.15,0.23,0.3,0.09,0.12,0.12,0.22,0.11,0.26,0.11,0.11,0.26,0.12,0.27,0.12,0.11,0.22,0.13,0.29,0.09,0.22,0.17,0.1,0.28,0.09,0.12,0.26,0.11,0.26,0.14,0.12,0.26,1.3,0.2,0.14,0.15,0.2,0.07,0.25,0.1,0.1,0.24,0.1,0.08,0.23,0.09,0.12,0.09,0.09,0.25,0.3,0.19,0.14,0.08,0.3,0.12,0.23,0.11,0.14,0.26,0.12,0.25,0.15,0.12,0.24,0.1,0.18,0.14,0.11,0.25,0.13,0.31,0.1,0.13,0.3,0.59,0.14,0.2,0.13,0.14,0.32,0.15,0.1,0.14,0.1,0.26,0.14,0.07,0.12,0.09,0.22,0.17,0.52,0.21,0.13,0.26,0.25,0.15,0.1,0.15,0.27,0.34,0.11,0.12,0.1,0.24,0.21,0.1,0.14,0.14,0.28,0.15,0.11,0.13,0.09,0.26,0.19,0.12,0.11,0.09,0.64,0.34,0.11,0.1,0.09,0.14,0.37,0.15,0.12,0.16,0.15,0.35,0.12,0.12,0.19,0.12,0.38,0.16,0.17,0.15,9.39,13.36,0.24,0.12,0.17,0.17,0.35,0.16,0.12,0.14,0.15,0.5,0.15,1.33,0.13,0.16,0.4,0.16,0.21,0.14,0.19,0.33,0.36,0.21,0.18,0.2,0.24,0.32,0.21,0.16,0.28,0.31,0.32,0.22,0.21,0.22,0.25,0.3,0.22,0.19,0.21,0.23,0.37,0.18,0.22,0.2,0.42,0.31,0.2,0.19,0.45,0.97,0.71,0.67,0.17,0.2,0.29,0.17,0.35,0.23,0.35,0.2,0.22,0.31,0.2,0.25,0.29,0.21,0.35,0.21,0.21,0.29,0.19,0.34,0.19,0.17,0.26,18.78,0.47,0.17,0.19,0.31,0.2,0.32,0.22,0.26,32.22,27.74,0.39,0.46,0.37,0.36,0.28,0.17,0.33,0.18,0.29,0.24,0.21,0.35,0.19,0.3,0.31,0.21,3.62,0.24,0.35,0.2,0.2,0.32,0.2,0.31,0.22,0.22,0.34,0.2,0.37,1.84,0.2,0.37,0.31,0.34,0.24,0.17,0.35,0.18,0.35,0.2,0.22,0.18,0.37,0.3,0.19,0.22,0.2,0.33,0.24,0.21,0.19,0.26,0.34,0.36,0.17,0.2,0.23,0.32,0.29,0.19,0.23,0.19,0.54,0.29,0.23,0.24,0.22,0.42,0.4,0.21,0.24,0.21,0.39,0.23,0.18,0.2,0.21,0.37,0.37,0.25,0.24,0.21,0.19,0.58,0.25,0.21,0.18,0.2,0.43,0.28,0.21,0.18,0.41,0.42,0.18,0.18,0.19,0.2,0.38,0.13,0.14,0.13,0.09,0.38,0.09,0.08,0.08,0.53,0.37,0.11,0.12,0.11,0.1,0.33,0.19,0.1,0.11,0.12,0.3,0.13,0.15,0.11,0.36,0.27,0.3,0.11,0.1,0.09,0.22,0.25,0.16,0.08,0.11,0.19,0.31,0.08,0.11,0.1,0.24,0.25,0.09,0.27,0.15,0.21,0.27,0.1,0.07,0.19,0.14,0.22,0.16,0.09,0.25,0.16,0.2,0.15,0.08,0.1,0.17,0.26,0.12,0.07,0.08,0.21,0.14,0.3,0.12,0.17,0.24,0.1,0.27,0.1,0.1,0.31,0.1,0.22,0.1,0.12,0.18,0.12,0.33,0.08,0.2,0.17,0.08,0.28,0.12,0.11,0.19,0.17,18.71,0.15,0.38,0.19,0.12,0.18,0.11,0.08,0.26,0.08,0.22,0.1,0.12,0.19,0.1,0.07,0.23,0.08,0.2,0.11,0.1,0.29,0.26,0.23,0.13,0.06,0.26,0.06,0.12,0.06,0.1,0.25,0.07,0.16,0.11,18.26,19.3,19.08,0.77,0.1,19.31,0.43,18.94,0.43,18.66,0.53,0.12,0.3,0.23,0.1,0.12,0.14,18.97,0.46,0.12,0.12,0.13,0.24,0.2,0.12,0.13,0.1,0.24,0.16,0.1,0.11,0.13,0.35,0.18,0.15,0.15,0.08,0.23,0.17,0.11,0.16,0.11,0.22,0.17,0.1,0.1,1.86,0.33,0.19,0.1,0.08,0.1,0.12,0.4,0.09,0.07,0.09,0.09,0.38,0.09,0.1,0.1,0.12,0.32,0.11,0.11,0.07,0.08,0.41,0.1,0.09,0.1,0.11,0.28,0.11,0.13,0.12,0.19,0.34,0.11,0.09,0.1,0.12,0.32,0.12,0.14,0.12,0.12,0.4,0.09,0.1,0.12,0.09,0.21,0.22,0.08,0.09,0.08,0.2,0.36,0.07,0.09,0.11,0.15,0.28,0.08,0.09,0.93,0.3,0.23,0.08,0.12,0.11,0.17,0.23,0.11,0.12,0.1,0.19,0.28,0.08,0.08,0.07,0.17,0.82,0.07,0.08,0.11,0.33,0.24,0.11,0.08,0.13,0.12,0.08,0.22,0.07,0.23,0.18,0.12,0.25,0.1,0.08,0.21,0.13,0.27,0.11,0.08,0.25,0.13,0.22,0.06,0.07,0.18,0.07,4.87,0.26,0.11,0.23,0.08,0.22,0.09,0.1,0.17,0.1,0.2,0.08,0.14,0.21,0.09,0.24,0.11,0.08,0.19,0.09,0.1,0.24,0.09,0.16,0.1,0.1,0.22,0.08,0.17,0.12,0.08,0.22,0.07,0.31,0.09,0.09,0.24,0.1,0.15,0.12,0.08,0.23,0.27,0.13,0.07,0.1,0.25,0.07,0.14,0.08,0.12,0.22,0.07,0.18,0.07,0.1,0.09,0.26,0.18,0.08,0.07,0.06,0.26,0.22,0.07,0.06,0.1,0.21,0.19,0.07,0.07,0.07,0.39,0.2,0.09,0.12,0.07,0.23,0.14,0.1,0.08,0.09,0.22,0.12,0.07,0.1,0.09,0.26,0.27,0.13,0.13,0.1,0.22,0.34,0.2,0.07,0.09,0.14,0.41,0.12,0.11,0.13,0.24,0.27,0.06,0.12,0.1,0.12,0.38,0.09,0.15,0.12,0.14,0.43,0.13,0.14,0.15,0.19,0.35,0.17,0.17,0.17,0.18,0.41,0.15,0.16,0.18,0.18,0.39,0.17,0.18,0.16,0.31,1.07,0.17,0.2,0.21,0.15,0.27,0.32,0.23,0.17,0.15,0.28,0.32,0.16,0.19,0.17,0.33,0.3,0.17,0.19,0.17,0.29,0.32,0.16,0.15,0.16,0.31,0.29,0.16,0.17,0.36,0.25,0.34,0.17,0.19,0.17,0.3,0.34,0.17,0.17,0.18,0.3,0.32,0.17,0.16,0.19,0.27,0.15,0.33,0.18,0.15,0.19,0.18,0.34,0.17,0.16,0.25,0.17,0.32,0.17,0.35,0.29,4.96,0.38,0.18,0.19,0.33,0.21,0.4,0.2,0.22,0.24,0.16,0.29,0.21,0.19,0.25,0.19,1.81,0.2,0.17,0.85,0.18,0.33,0.19,0.17,0.25,0.23,0.2,0.37,0.33,0.27,0.16,0.19,0.3,0.18,0.24,0.18,0.17,0.34,0.2,0.29,0.19,0.22,0.37,0.19,0.31,0.19,0.24,0.31,0.19,0.27,0.19,0.2,0.38,0.21,0.27,0.18,0.15,0.29,0.37,0.35,0.23,0.2,0.17,0.32,0.25,0.17,0.18,0.21,0.32,0.29,0.18,0.21,0.17,0.3,0.25,0.21,0.25,0.15,0.24,0.27,0.18,0.12,0.13,0.32,0.22,0.11,0.12,0.11,0.4,0.17,0.09,0.11,0.18,0.12,0.5,0.05,0.1,0.06,0.11,0.33,0.07,0.07,0.1,0.1,0.38,0.1,0.09,0.11,0.11,0.43,0.1,0.09,0.12,0.11,0.27,0.1,0.08,0.09,0.32,0.37,0.09,0.07,0.09,0.1,0.32,0.12,0.13,0.1,0.07,0.3,0.11,0.08,0.06,0.09,0.18,0.29,0.08,1.84,0.1,0.15,0.3,0.07,0.08,0.09,0.18,0.24,0.08,0.12,0.24,0.2,0.27,0.12,0.1,0.1,0.19,0.22,0.1,0.06,0.09,0.33,0.26,0.1,0.1,0.17,0.24,0.25,0.07,0.14,0.11,0.18,3.18,2.14,0.06,0.1,0.16,0.15,0.26,0.08,5.72,0.17,0.11,0.29,0.8,0.13,0.23,0.09,0.35,0.08,0.11,0.22,0.12,0.25,0.15,0.12,0.25,0.08,0.28,0.74,0.1,0.23,0.09,0.25,0.11,0.12,0.15,0.09,0.28,0.09,0.33,0.18,0.07,0.23,0.1,0.13,0.25,0.11,0.13,0.35,0.08,0.22,0.08,0.07,0.25,0.07,0.15,0.11,0.1,0.24,0.07,0.29,0.12,0.09,0.26,0.17,0.24,0.09,0.1,0.28,0.22,0.19,0.12,0.08,0.28,0.09,0.13,0.08,0.13,0.23,0.07,0.17,0.11,0.1,0.23,0.09,0.17,0.09,0.09,0.09,0.28,0.3,0.1,0.09,0.09,0.21,0.21,0.12,0.11,0.1,0.39,0.19,0.07,0.07,0.1,0.27,0.17,0.1,0.1,0.08,0.24,0.23,0.11,0.12,0.11,0.22,0.19,0.07,0.12,0.13,0.13,0.31,0.08,0.13,0.1,0.1,0.4,0.12,0.11,0.12,0.32,0.45,0.1,0.09,1.06,0.11,0.33,0.13,0.09,0.08,0.1,0.33,0.11,0.07,0.07,0.08,0.25,0.07,0.09,0.09,0.1,1.75,0.13,0.12,0.09,0.09,0.34,0.09,0.1,0.1,0.25,0.2,0.24,0.07,0.07,0.07,0.19,0.23,0.14,0.12,0.1,0.22,0.25,0.11,0.12,0.13,0.28,0.25,0.11,0.17,0.1,0.2,0.37,0.09,0.1,0.11,0.18,0.23,0.1,0.08,0.32,0.27,0.27,0.12,0.09,0.12,0.25,0.22,0.13,0.12,0.14,0.24,0.14,0.35,0.1,0.1,0.24,0.17,0.23,0.12,0.06,11.34,0.11,0.23,0.12,0.14,0.25,0.08,0.22,0.07,0.28,0.19,0.06,0.23,0.07,0.12,0.22,0.12,0.29,0.13,0.1,0.21,0.15,0.24,0.12,0.07,1.28,0.1,0.23,0.06,0.13,0.22,0.12,0.1,0.28,0.07,0.28,0.12,0.1,0.23,0.22,0.26,0.12,0.09,0.28,0.08,0.24,0.11,0.15,0.24,0.1,0.17,0.07,0.1,0.26,0.15,0.23,0.08,0.1,0.26,0.11,0.24,0.11,1.02,0.32,0.12,0.28,0.1,0.09,0.23,0.25,0.24,0.18,0.13,0.15,0.4,0.24,0.2,0.16,0.14,0.3,0.24,0.12,0.15,0.22,0.29,0.21,0.13,0.1,0.15,0.23,0.27,0.17,0.17,0.19,0.37,0.26,0.16,0.22,0.17,0.52,0.26,0.17,0.15,0.17,0.31,0.3,0.17,0.17,0.17,0.28,0.3,0.17,0.15,0.2,0.17,0.41,0.19,0.17,0.22,0.25,0.44,0.2,0.17,1.6,0.17,0.44,0.17,0.28,0.2,0.38,0.42,0.3,0.31,0.21,0.24,0.47,0.21,0.19,0.17,0.17,0.48,0.16,0.17,0.17,0.17,0.28,0.3,0.18,0.22,0.17,0.22,0.32,0.18,0.18,0.15,0.24,5.09,0.2,0.19,0.25,0.29,0.35,0.18,0.2,0.18,0.27,0.33,0.18,0.18,0.2,0.32,0.4,0.18,0.26,0.21,0.35,0.35,0.28,0.24,0.2,0.32,0.39,0.31,0.17,0.18,0.26,0.25,0.38,0.21,0.34,0.25,0.2,0.33,0.22,0.21,0.33,0.23,0.38,0.19,0.21,0.27,0.19,0.35,0.19,0.19,0.24,0.17,0.34,0.2,0.19,0.3,0.19,0.35,0.17,0.16,0.4,0.19,0.37,0.18,0.42,0.37,0.16,0.28,0.17,0.19,0.23,0.2,0.19,0.35,0.19,0.29,0.21,0.17,0.32,0.2,0.3,0.19,0.21,0.32,0.2,0.32,0.2,0.19,0.34,0.17,0.31,0.21,0.16,0.34,0.32,0.29,0.21,0.22,0.37,0.17,0.31,0.14,0.14,0.27,0.12,0.19,0.1,0.09,0.1,0.26,0.16,0.09,0.1,0.08,0.24,0.22,0.09,0.1,0.1,0.22,0.19,0.12,0.1,0.07,0.39,0.22,0.07,0.12,0.1,0.22,0.24,0.7,0.16,0.12,0.27,0.23,0.08,0.14,0.07,0.25,0.14,0.07,0.15,0.1,0.29,0.16,0.11,0.1,0.1,0.25,0.19,0.08,0.07,0.1,0.2,0.32,0.12,0.09,0.1,0.15,0.3,0.17,0.09,0.1,0.13,0.47,0.13,0.09,0.12,0.15,0.33,0.07,0.12,0.15,0.12,0.38,0.09,0.19,0.09,0.11,0.41,0.09,0.09,0.07,0.16,0.2,0.24,0.1,0.1,0.1,0.18,0.25,0.56,0.07,0.18,0.18,0.23,0.07,0.12,0.1,0.19,0.24,0.1,0.1,0.09,0.24,0.31,0.07,0.08,0.51,0.24,0.25,0.11,0.14,0.17,0.18,0.22,0.1,0.12,0.13,0.15,0.26,0.1,0.1,0.12,0.17,0.11,0.31,0.11,0.1,0.13,0.07,0.3,0.1,0.09,0.17,0.07,0.24,0.08,0.08,0.22,0.09,0.24,0.11,0.15,0.14,0.09,0.24,0.06,0.11,0.17,0.06,0.22,0.09,0.08,0.18,0.08,0.09,0.27,0.08,0.26,0.09,0.08,0.25,0.11,0.22,0.08,0.07,0.22,0.08,0.19,0.11,0.08,0.26,0.24,0.19,0.1,0.23,0.26,0.09,0.2,0.11,0.14,0.24,0.14,0.22,0.18,0.09,0.22,0.07,0.3,0.09,0.1,0.25,0.09,0.13,0.09,0.14,0.1,0.26,0.15,0.09,0.08,0.08,0.32,0.2,0.07,0.12,0.09,0.25,0.19,0.1,0.07,0.09,0.28,0.18,0.1,0.32,0.52,0.58,0.68,0.72,1.89,0.42,0.27,0.27,19.95,0.1,0.21,0.23,0.21,0.08,0.15,0.09,0.4,0.24,0.12,0.11,0.12,0.24,0.15,0.13,0.1,0.12,0.12,0.39,0.07,0.11,0.09,0.12,0.29,0.12,0.09,0.12,0.12,0.35,0.11,18.42,0.26,0.09,0.45,0.18,0.12,16.53,18.94,12.2,31.72,0.15,0.29,19,0.58,0.13,0.12,0.09,0.1,0.31,0.09,0.1,0.17,0.11,0.28,0.1,0.1,0.12,0.09,0.22,0.23,0.08,0.13,0.14,0.21,0.22,0.11,0.14,0.35,0.32,0.27,0.08,0.1,0.2,0.25,0.27,0.22,0.11,0.11,0.19,0.26,0.07,0.12,0.12,0.19,0.3,0.1,0.11,0.1,0.21,0.1,0.2,0.1,0.1,0.22,0.07,0.23,0.11,0.26,0.17,0.14,0.33,0.13,0.12,0.25,0.13,0.37,1.35,0.09,0.24,0.14,0.2,0.1,0.07,0.12,0.09,0.21,0.09,0.1,0.27,0.09,0.25,0.12,0.13,0.16,0.12,0.2,0.08,0.26,0.16,0.12,0.13,0.2,0.09,0.19,0.12,0.1,0.25,0.11,0.22,0.09,0.14,0.21,0.18,0.19,0.09,0.11,0.31,0.17,0.22,0.14,0.56,0.24,0.08,0.16,0.11,0.18,0.3,0.27,0.22,0.17,0.2,0.27,0.12,0.27,0.14,0.13,0.23,0.15,0.24,0.19,0.17,0.16,0.3,0.32,0.13,0.15,0.18,0.32,0.31,0.18,0.16,0.19,0.3,0.26,0.15,1.73,0.15,0.39,0.19,0.17,0.16,0.15,0.3,0.24,0.17,0.15,0.14,0.29,0.25,0.15,0.13,0.18,0.33,0.24,0.14,0.15,0.18,0.31,0.22,0.15,0.16,0.14,0.18,0.43,0.15,0.16,0.16,0.32,0.4,0.24,0.16,0.17,0.16,0.34,0.15,0.13,1.06,0.15,0.33,0.15,0.15,0.15,0.13,0.37,0.15,0.13,0.16,0.14,0.51,0.15,0.15,0.2,0.15,0.34,0.15,0.15,0.15,0.24,0.37,0.22,0.17,0.17,0.17,0.26,0.28,0.17,0.16,0.17,0.26,0.32,0.17,0.17,0.15,0.22,0.29,0.18,0.15,0.15,0.19,0.32,0.15,0.16,0.17,0.25,0.3,0.15,0.13,0.24,0.2,0.32,0.15,0.16,0.16,0.23,0.31,0.17,0.17,0.16,0.21,0.17,0.32,0.18,0.14,0.21,0.16,0.33,0.17,0.2,0.35,0.15,0.32,0.16,0.17,0.27,0.13,0.28,1.08,0.23,0.22,0.17,0.32,0.17,0.15,0.23,0.17,0.33,0.16,0.2,0.24,0.16,0.29,0.16,0.15,0.23,0.16,0.27,0.15,0.14,0.18,0.12,0.12,0.24,0.12,0.2,0.07,0.11,0.22,0.28,0.1,0.07,0.06,0.2,0.09,0.2,0.06,0.07,0.2,0.07,0.15,0.07,0.09,0.23,0.07,0.1,0.06,0.07,0.2,0.06,0.2,0.07,0.06,0.19,0.07,0.13,0.07,0.06,0.2,0.27,0.19,0.07,0.06,0.08,0.22,0.17,0.08,0.08,0.06,0.22,0.12,0.07,0.09,0.1,0.21,0.15,0.1,0.09,0.11,0.23,0.21,0.07,0.07,0.06,0.24,0.17,0.13,0.08,0.08,0.43,0.16,0.09,0.08,0.1,4.9,0.32,0.05,0.1,0.05,0.2,0.11,0.05,0.05,0.07,0.06,0.28,0.06,0.08,0.08,0.07,0.36,0.1,0.08,0.06,0.06,0.26,0.08,0.07,0.32,0.16,0.3,0.04,0.05,0.07,0.08,0.27,0.06,0.08,0.05,0.05,0.27,0.05,0.1,0.08,0.07,0.25,0.07,0.05,0.05,0.04,0.31,0.05,0.05,0.06,0.08,0.2,0.19,0.06,0.05,0.14,0.17,0.22,0.05,0.05,0.07,0.18,0.22,0.05,0.07,0.06,0.16,0.19,0.06,0.07,0.08,0.12,0.21,0.05,0.06,0.06,0.13,0.25,0.08,0.08,0.05,0.12,0.11,0.13,0.05,0.22,0.17,0.07,0.21,0.06,0.05,0.14,0.07,0.23,0.05,0.07,0.17,0.1,0.22,0.09,0.08,0.13,0.06,0.21,0.06,0.05,0.15,0.05,0.2,0.07,0.05,0.12,0.07,0.19,0.05,0.25,0.18,0.11,0.2,0.08,0.1,0.17,0.05,0.09,0.38,0.05,0.13,0.1,0.06,0.2,0.06,0.13,0.07,0.05,0.21,0.09,0.2,0.07,0.06,0.2,0.05,0.14,0.06,0.05,0.22,0.18,0.22,0.04,0.07,0.2,0.06,0.11,0.05,0.09,0.22,0.07,0.16,0.1,0.05,0.21,0.05,0.12,0.05,0.08,0.09,0.19,0.19,0.07,0.07,0.05,0.24,0.17,0.08,0.06,0.08,0.34,0.2,0.09,0.09,0.07,0.22,0.14,0.07,0.07,0.09,0.22,0.14,0.06,0.08,0.1,0.22,0.1,0.06,0.07,0.07,0.2,0.87,0.06,0.06,0.1,0.26,0.22,0.11,0.06,0.07,0.32,0.14,0.07,0.06,0.07,0.05,0.32,0.07,0.11,0.11,0.09,0.29,0.07,0.07,0.07,0.06,0.24,0.03,0.07,0.04,0.05,0.29,0.13,0.06,0.05,0.09,0.27,0.11,0.08,0.07,0.24,0.32,0.12,0.07,0.07,0.05,0.28,0.08,0.08,0.1,0.81,0.3,0.09,0.07,0.05,0.07,0.21,0.25,0.09,0.06,0.04,0.17,0.22,0.11,0.1,0.08,0.15,0.24,0.08,0.06,0.18,0.14,0.25,0.11,0.09,0.17,0.24,0.23,0.09,0.1,0.1,0.15,0.21,0.08,0.09,0.1,0.29,0.1,0.23,0.08,0.06,0.18,0.07,0.22,0.1,0.1,0.15,0.09,0.22,0.22,0.13,0.19,0.1,0.32,0.19,0.14,0.16,0.11,0.33,0.16,0.18,0.15,0.09,0.25,0.1,0.16,0.2,0.13,0.38,0.15,0.16,0.24,0.1,0.29,0.1,0.11,0.32,0.14,0.13,0.41,0.27,0.23,0.2,0.18,0.32,0.15,0.23,0.15,0.13,0.3,0.14,0.4,0.17,0.17,0.29,0.2,0.32,0.16,0.15,0.32,0.17,0.29,0.16,0.16,0.28,0.16,0.25,0.21,0.16,0.35,0.22,0.21,0.17,0.19,0.27,0.16,0.33,0.14,0.15,0.14,5.51,0.18,0.2,0.15,0.15,0.42,0.24,0.15,0.2,0.15,0.28,0.27,0.18,0.17,0.17,0.27,0.27,0.17,0.15,0.13,0.39,0.35,0.14,0.13,0.17,0.36,0.18,0.15,0.17,0.16,0.28,0.17,0.15,0.13,0.14,0.3,0.2,0.16,0.16,0.15,0.14,0.38,0.15,0.16,0.15,0.17,0.37,0.15,0.14,0.14,0.25,0.35,0.17,0.17,0.16,0.14,0.4,0.17,0.14,0.14,0.15,0.8,1.41,0.21,0.15,0.15,0.38,0.15,0.15,0.15,0.17,0.63,0.22,0.16,0.14,0.16,0.37,0.16,0.15,0.16,0.25,0.31,0.29,0.99,0.19,0.15,0.28,0.39,0.18,0.16,0.15,0.24,0.32,0.14,0.15,0.16,0.2,0.32,0.14,0.16,0.21,0.24,0.28,0.16,0.15,0.15,0.23,0.28,0.13,0.15,0.32,0.2,0.3,0.18,0.19,0.12,0.2,0.22,0.13,0.12,0.13,0.17,0.12,0.21,0.06,0.07,0.18,0.07,0.18,0.05,0.07,0.23,0.09,0.24,0.08,0.07,0.21,0.05,0.23,0.07,0.22,0.18,0.07,0.24,0.07,0.06,0.15,0.07,0.21,0.05,0.08,0.21,0.07,0.1,0.25,0.1,0.22,0.11,0.09,0.27,0.15,0.19,0.08,0.06,0.26,0.09,0.18,0.06,0.09,0.21,4.92,0.35,0.1,0.11,0.2,0.1,0.15,0.06,0.09,0.26,0.07,0.22,0.12,0.15,0.22,0.07,0.22,0.07,0.07,0.3,0.07,0.19,0.05,0.14,0.08,0.25,0.18,0.09,0.07,0.06,0.35,0.2,0.08,0.11,0.1,0.25,0.27,0.07,0.07,0.06,0.22,0.17,0.08,0.08,0.06,0.2,1.4,0.12,0.05,0.08,0.23,0.1,0.07,0.05,0.75,10.96,0.14,0.05,0.07,0.05,0.34,0.15,0.12,0.05,0.1,0.11,0.32,0.06,0.07,0.09,0.06,0.31,0.13,0.1,0.24,0.1,0.32,0.12,0.08,0.12,0.07,0.36,0.11,0.09,0.07,0.08,0.32,0.06,0.09,0.07,0.19,0.64,0.1,0.07,0.1,0.06,0.29,0.07,0.08,0.1,0.1,0.19,0.23,0.06,0.05,0.07,0.19,0.25,0.06,0.08,0.07,0.19,0.22,0.07,0.12,0.11,0.18,0.3,0.15,0.05,0.22,0.21,0.22,0.1,0.07,0.06,0.12,0.35,0.1,0.11,0.08,0.11,0.21,0.09,0.05,0.07,0.18,0.23,0.07,0.07,0.05,0.25,0.07,0.2,0.07,0.06,0.21,0.12,0.25,0.09,0.29,0.14,0.07,0.24,0.76,0.07,0.21,0.07,0.21,0.09,0.09,0.17,0.08,0.22,0.13,0.07,0.1,0.06,0.2,0.06,0.14,0.17,0.08,0.22,0.07,0.07,0.17,0.07,0.2,0.09,0.22,0.14,0.12,0.1,0.32,0.09,0.16,0.09,0.1,0.21,0.09,0.18,0.09,0.07,5.09,2.52,0.19,0.07,0.07,0.2,0.07,0.24,0.07,0.1,0.29,0.08,0.21,0.1,0.08,0.2,0.14,0.22,0.12,0.13,0.26,0.1,0.21,0.08,0.14,0.07,0.29,0.24,0.07,0.08,0.08,0.21,0.19,0.1,0.09,0.1,0.24,0.22,0.09,0.1,0.1,0.25,0.15,0.1,0.13,0.08,0.38,0.12,0.13,0.08,0.08,0.2,0.24,0.08,0.1,0.07,0.25,0.26,0.09,0.11,0.12,0.44,0.59,0.14,0.1,0.12,0.11,0.6,0.1,0.12,0.12,0.08,0.32,0.17,0.14,0.09,0.19,0.32,0.1,0.08,0.12,0.17,0.33,0.08,0.1,0.09,0.1,0.27,0.13,0.1,0.09,0.14,0.33,0.09,0.08,0.11,0.11,0.37,0.1,0.08,0.14,0.11,0.39,0.09,0.1,0.08,0.24,0.16,0.27,0.09,0.12,0.07,0.17,0.24,0.11,0.07,0.08,0.12,0.25,0.05,0.08,0.09,0.53,0.49,0.26,0.08,0.05,0.17,0.23,0.11,0.08,0.1,0.13,0.24,0.17,0.09,0.17,0.2,8.54,0.1,0.12,0.1,0.22,0.24,0.15,0.11,0.17,0.21,0.15,0.32,0.14,0.15,0.24,0.15,0.4,0.17,0.17,0.25,0.22,0.3,0.16,0.15,0.2,0.14,0.29,0.17,0.25,0.25,0.22,0.29,0.16,0.16,0.24,0.17,0.29,0.24,19.51,18.73,0.22,0.54,0.17,18.74,18.53,19.9,0.47,0.35,18.68,0.31,0.36,0.17,0.31,0.21,0.3,0.15,0.22,0.36,0.2,0.22,0.2,0.24,18.71,0.31,0.2,0.18,0.17,0.28,0.17,0.27,0.15,0.16,0.29,0.18,0.25,0.16,0.15,0.29,0.17,0.33,0.16,0.17,0.17,0.35,0.32,0.18,0.17,0.19,0.37,0.24,0.19,0.2,0.17,0.34,0.29,0.22,0.16,0.17,0.36,0.23,0.17,0.24,0.15,0.32,0.22,0.22,0.2,0.19,0.3,0.27,0.17,0.18,0.17,0.3,0.23,0.19,0.2,0.19,0.29,0.55,0.15,0.18,0.16,0.16,0.57,0.17,0.2,0.25,0.17,0.45,0.28,0.2,0.19,0.15,0.38,0.14,0.17,0.24,0.2,0.43,0.21,0.17,0.22,0.2,0.42,0.15,0.17,0.21,0.29,0.43,0.17,0.25,0.15,0.24,0.41,0.16,0.17,0.16,0.16,0.23,0.34,0.15,0.22,0.15,0.27,0.31,0.16,0.19,0.18,0.33,0.3,0.18,0.16,0.12,0.2,0.25,0.08,0.1,0.3,0.15,0.22,0.1,0.11,0.12,0.16,0.55,0.08,0.09,0.1,0.22,0.26,0.08,0.12,0.12,0.2,0.2,0.07,0.1,0.08,0.27,0.09,0.24,0.1,0.1,0.14,0.1,0.29,0.07,0.19,0.21,0.12,0.24,0.1,0.12,0.22,0.09,0.25,0.1,0.1,0.22,0.07,0.34,0.08,10.34,9.36,0.28,5.52,0.35,0.09,0.33,0.17,0.26,0.07,0.08,0.13,0.15,0.22,0.06,0.16,0.14,0.1,0.16,0.26,0.08,0.22,0.13,0.11,0.23,0.12,0.2,0.09,0.07,0.28,0.09,0.28,0.12,0.11,0.22,0.07,0.19,0.09,0.08,0.23,0.09,0.11,0.11,0.09,0.21,0.2,0.16,0.12,0.17,0.25,0.12,0.22,0.13,0.11,0.09,0.24,0.15,0.08,0.07,0.09,0.24,0.17,0.13,0.13,0.12,0.27,0.31,0.17,0.07,0.11,1.87,0.19,0.15,0.12,0.19,0.47,0.22,0.14,0.12,0.11,0.27,0.18,0.1,0.51,0.12,0.25,0.19,0.1,0.1,0.1,0.27,0.22,0.1,0.15,0.15,0.25,0.23,0.11,0.22,0.45,0.1,0.51,0.13,0.15,0.15,0.23,0.39,0.11,0.13,0.11,0.1,0.37,0.1,0.11,0.15,0.11,0.31,0.26,0.54,0.82,0.61,0.9,0.15,0.1,0.13,0.12,10.48,9.11,0.1,8.11,0.22,21.19,0.26,19.03,0.09,1.04,0.33,0.1,0.13,0.1,0.15,0.23,0.25,0.1,0.55,0.13,0.12,0.26,0.08,0.17,0.09,0.19,0.25,0.1,0.13,0.11,0.14,0.25,0.12,0.09,0.12,4.11,18.53,14.23,22.79,0.46,10.21,15.19,19.78,0.31,0.11,0.23,18.95,15.72,4.32,0.15,37.63,2.47,0.55,0.13,0.09,0.29,0.09,0.24,18.46,0.41,0.23,0.1,0.25,0.06,0.12,0.18,0.1,0.26,0.07,0.22,0.15,0.1,0.25,0.1,0.09,0.19,0.1,0.26,0.22,0.25,0.21,0.13,0.27,0.08,0.09,0.35,0.12,0.28,7.58,11.18,0.19,0.09,0.29,0.12,0.06,0.14,0.08,0.09,0.22,0.14,0.13,0.09,0.09,0.24,0.12,0.14,0.09,0.09,0.22,0.09,0.15,0.1,0.11,0.27,0.07,0.15,0.09,0.1,0.22,0.09,0.22,0.07,0.1,0.22,0.1,0.15,0.09,0.08,0.21,0.19,0.27,0.08,0.09,0.07,0.29,0.22,0.08,0.1,0.12,0.24,0.2,0.09,0.07,0.1,0.19,0.21,0.07,0.08,0.11,0.29,0.19,0.11,0.09,0.09,0.22,0.21,0.06,0.09,0.11,0.39,0.14,0.12,0.1,0.07,0.22,0.19,0.12,0.09,0.15,0.26,0.2,0.09,0.1,0.11,0.08,0.52,0.07,0.08,0.1,0.15,0.43,0.14,0.1,0.08,0.08,0.26,0.08,0.09,0.14,0.3,0.32,0.14,0.15,0.15,0.1,0.34,0.13,0.16,0.13,0.25,0.37,0.15,0.09,0.13,0.1,0.38,0.15,0.16,0.16,0.12,0.33,0.12,0.12,0.15,0.19,0.2,0.28,0.13,0.12,0.25,0.2,0.3,0.15,0.14,0.15,0.24,0.32,0.17,0.17,0.14,0.33,0.26,0.18,0.16,0.18,0.27,0.33,0.17,0.15,0.15,1.4,5.41,0.37,0.15,0.19,0.25,0.31,0.15,0.13,0.29,0.26,0.17,0.29,0.16,0.18,0.27,0.15,0.3,0.16,0.17,0.24,0.17,0.33,0.17,0.16,0.18,0.14,0.32,0.16,0.17,0.22,0.15,0.3,0.15,0.14,0.26,0.19,0.3,0.15,0.26,0.22,0.19,0.18,0.32,0.2,0.24,0.17,0.21,0.34,0.17,0.26,0.18,0.16,0.3,0.15,0.21,0.16,0.15,0.28,0.17,0.34,1.19,0.16,0.28,0.15,0.22,0.15,0.15,0.28,0.26,0.22,0.17,0.19,0.29,0.18,0.3,0.17,0.18,0.15,0.3,0.24,1.07,0.17,0.17,0.27,0.31,0.15,0.15,0.17,0.33,0.21,0.18,0.16,0.15,0.35,0.21,0.19,0.17,0.18,0.42,0.22,0.17,0.17,0.18,0.3,0.26,0.18,0.19,0.16,0.17,0.34,0.2,0.16,0.15,0.17,0.36,0.16,0.14,0.15,0.15,0.48,1.54,0.16,0.14,0.16,0.36,0.17,0.15,0.14,0.26,0.36,0.15,0.15,0.14,0.14,0.3,0.14,0.17,0.13,0.14,0.36,0.09,1.05,0.08,0.09,0.28,0.07,0.07,0.07,0.06,0.16,0.25,0.08,0.06,0.07,0.56,0.19,0.06,0.08,0.24,0.17,0.23,0.12,0.08,0.07,0.18,0.24,0.12,0.06,0.08,0.19,0.21,0.06,0.07,0.1,0.15,0.23,0.05,0.08,0.07,0.62,0.05,0.23,0.11,0.06,0.19,0.06,0.23,0.08,0.25,0.14,0.06,0.21,0.09,0.06,0.22,0.05,0.2,0.06,0.05,0.19,0.06,0.19,0.15,0.06,0.15,0.08,0.19,0.1,0.06,0.15,0.07,0.18,0.07,0.05,0.14,0.08,0.23,0.09,0.23,0.14,0.05,0.26,0.05,0.06,0.17,0.1,0.06,0.28,0.08,0.16,0.08,0.05,0.22,0.06,0.2,0.06,0.1,0.33,0.06,0.24,0.1,0.07,0.29,0.12,0.15,0.09,0.08,0.21,0.44,0.14,0.12,0.13,0.24,0.07,0.14,0.12,0.08,0.2,0.09,0.13,0.09,0.07,0.25,0.1,0.29,0.07,0.07,0.07,0.26,0.19,0.11,0.09,0.07,0.24,0.19,0.07,0.1,0.06,0.27,0.11,0.05,0.09,0.1,0.2,0.15,0.08,0.1,0.07,0.2,0.11,0.06,0.08,0.09,0.18,0.13,0.1,0.09,0.09,0.2,0.14,0.08,0.1,0.07,0.1,0.26,0.09,0.06,0.06,0.26,0.33,0.07,0.07,0.05,0.07,0.32,0.05,0.08,0.1,0.07,0.39,0.07,0.07,0.12,0.06,0.27,0.07,0.1,0.12,0.08,0.3,0.08,0.12,0.06,0.07,0.34,0.06,0.07,0.1,0.23,0.33,0.06,0.08,0.06,0.06,0.32,0.05,0.06,0.06,0.06,0.15,0.26,0.09,0.09,0.07,0.13,0.23,0.05,0.1,0.07,0.17,0.2,0.07,0.62,0.06,0.12,4.9,0.14,0.08,0.21,0.15,0.22,0.06,0.1,0.1,0.17,0.23,0.06,0.06,0.05,0.19,0.22,0.1,0.1,0.06,0.18,0.19,0.05,0.07,0.12,0.23,0.08,0.25,0.05,0.07,0.15,0.06,0.2,0.05,0.14,0.16,0.07,0.23,0.07,0.06,0.14,0.09,0.25,0.12,0.07,0.15,0.08,0.23,0.08,0.08,0.19,0.07,0.19,0.05,0.1,0.17,0.1,0.25,0.24,0.05,0.18,0.05,0.22,0.09,0.21,0.12,0.1,0.1,0.24,0.07,0.12,0.1,0.07,0.25,0.07,0.18,0.08,0.07,0.25,0.1,0.17,0.06,0.07,0.24,0.08,0.14,0.09,0.07,0.2,0.06,0.21,0.1,0.08,0.22,0.22,0.13,0.09,0.09,0.18,0.11,0.19,0.11,0.08,0.18,0.09,0.2,0.07,0.09,0.07,0.22,0.12,0.09,0.07,0.07,0.19,0.17,0.09,0.07,0.08,3.06,0.15,0.06,0.07,0.07,0.42,0.18,0.07,0.11,0.05,0.22,0.16,0.05,0.08,0.06,0.27,0.2,0.09,0.08,0.09,0.6,0.29,0.12,0.05,0.12,0.13,0.35,0.07,0.12,0.11,0.12,0.33,0.05,0.07,0.05,0.26,0.31,0.11,0.12,0.16,0.06,0.31,0.08,0.14,0.16,0.16,0.41,0.1,0.2,0.15,0.09,0.37,0.14,0.22,0.15,0.19,0.3,0.34,0.15,0.13,1.4,0.3,0.29,0.15,0.15,0.24,0.19,0.29,0.16,0.15,0.19,0.19,0.3,5.31,4.95,0.18,0.2,0.29,0.16,0.17,1.01,1.62,0.3,0.17,0.16,0.18,0.2,0.3,0.15,0.18,0.15,0.24,0.32,0.15,0.17,0.27,0.2,0.15,0.3,0.15,0.14,0.29,0.14,0.3,0.15,0.17,0.3,0.16,0.31,0.17,0.16,0.21,0.18,0.33,0.14,0.15,0.25,0.15,0.31,0.16,1.92,0.21,0.17,0.29,0.16,0.38,0.28,0.18,0.41,0.17,0.19,0.26,0.15,0.28,0.14,0.17,0.24,0.18,0.15,0.29,0.15,0.67,0.16,0.15,0.31,0.15,0.25,0.17,0.16,0.3,0.15,0.28,0.17,0.18,0.29,0.22,0.19,0.15,0.17,0.29,0.16,0.22,0.16,0.16,0.33,0.17,0.28,0.17,0.16,0.31,0.17,0.23,0.17,0.16,0.28,0.17,0.34,0.15,0.18,0.17,0.32,0.25,0.16,0.18,0.19,0.45,0.31,0.21,0.17,0.18,0.3,0.23,0.2,0.21,0.17,0.31,0.21,0.15,0.15,0.18,0.29,0.25,0.22,0.19,0.15,0.27,0.22,0.16,0.17,0.13,0.28,0.25,0.14,0.08,0.1,0.25,0.42,0.07,0.12,0.1,0.11,0.3,0.07,0.1,0.08,0.07,0.34,0.09,0.08,0.08,0.07,0.29,0.07,0.06,0.11,0.08,0.31,0.08,0.06,0.07,0.1,0.27,0.07,0.12,0.1,0.15,5.08,0.17,0.07,0.11,0.07,0.36,0.06,0.08,0.08,0.08,0.18,0.2,0.09,0.07,0.05,0.39,0.24,0.07,0.1,0.06,0.21,0.23,0.09,0.1,0.08,0.25,0.25,0.07,0.09,0.25,0.2,0.23,0.09,0.11,0.13,0.14,0.24,0.11,0.05,0.1,0.15,0.25,0.09,0.12,0.11,0.22,0.23,0.07,0.12,0.07,0.17,0.23,0.12,0.11,0.1,1.53,0.12,0.24,0.07,0.25,0.21,0.1,0.25,0.08,0.07,0.14,0.07,0.22,0.07,0.1,0.21,0.09,0.24,0.08,0.08,2.05,0.1,0.22,0.14,0.1,0.23,0.1,0.27,0.1,0.06,0.18,0.09,0.21,0.1,0.24,0.15,0.07,0.23,0.09,0.09,0.15,0.08,0.09,0.21,0.1,0.15,0.08,0.09,0.21,0.09,0.13,0.1,0.06,0.24,0.11,0.19,0.09,0.1,0.24,0.08,4.77,6.32,0.1,0.22,0.19,0.15,0.09,0.08,0.25,0.12,0.23,0.11,0.08,0.27,0.08,0.16,0.08,0.1,0.09,0.26,0.19,0.09,0.14,0.15,0.23,0.21,0.09,0.09,0.08,0.21,0.21,0.15,0.1,0.1,0.34,0.24,0.07,0.12,0.13,0.25,0.18,0.1,0.07,0.07,0.27,0.18,0.09,0.12,0.06,0.22,0.22,0.1,0.07,0.09,0.08,0.44,0.09,0.1,0.08,0.07,0.3,0.1,0.07,0.12,0.27,0.34,0.1,0.08,0.08,0.08,0.34,0.07,0.07,0.07,0.09,0.37,0.06,0.09,0.08,0.05,0.31,0.26,0.1,0.1,0.07,0.19,0.29,0.11,0.08,0.1,0.24,0.25,0.14,0.11,0.16,0.18,0.25,0.24,0.12,0.61,0.19,0.25,0.15,0.09,0.08,0.2,0.24,0.11,0.12,0.08,0.19,0.28,0.09,0.08,0.09,0.24,0.26,0.11,0.1,0.1,0.21,0.12,0.27,0.15,0.13,1.15,0.08,0.25,0.1,0.07,0.18,0.55,0.25,0.54,0.52,0.21,0.1,0.28,0.11,0.1,0.2,0.63,0.26,0.12,0.08,0.23,0.1,0.27,0.11,0.14,0.18,0.11,0.23,0.09,0.28,4.58,18.79,0.3,16.24,2.97,0.41,0.1,0.16,0.31,0.11,0.26,0.14,0.1,0.29,0.11,0.19,0.11,0.09,0.26,0.15,0.25,0.09,20.66,0.48,0.15,0.27,0.16,0.13,0.28,0.27,0.23,0.13,0.13,0.29,0.16,0.32,0.15,0.16,0.27,0.17,0.27,0.09,0.12,0.16,0.28,0.23,0.08,0.15,0.12,0.31,0.25,0.1,0.12,0.17,0.32,0.22,0.1,0.12,0.15,0.53,0.28,0.12,0.13,0.2,0.29,0.27,0.15,0.23,0.19,0.35,0.32,0.2,0.12,0.18,0.33,0.48,0.49,0.7,0.57,0.92,0.37,0.21,0.2,0.15,0.23,19.6,0.22,0.56,0.19,0.29,0.51,0.17,0.18,0.17,0.16,4.23,0.22,0.21,0.17,0.21,0.42,0.19,0.25,0.17,0.2,0.39,0.17,0.19,0.19,0.16,0.45,0.17,0.19,0.17,0.15,0.4,0.16,0.17,0.16,0.21,0.27,0.3,0.17,0.27,0.2,0.3,0.3,0.19,0.21,0.2,0.26,0.32,0.17,0.18,0.2,0.25,0.3,0.14,0.17,0.17,0.35,0.3,0.15,0.15,0.24,0.23,0.35,0.18,0.17,0.27,0.26,0.32,0.16,0.2,0.22,0.2,0.31,0.16,0.21,0.17,0.27,0.3,0.16,0.19,0.18,0.25,0.19,0.31,0.2,19.15,19.48,0.36,0.38,0.2,3.45,0.36,0.22,0.3,0.18,0.33,0.31,0.19,0.3,0.18,0.19,0.22,0.16,0.32,0.19,0.2,0.25,0.17,0.35,0.17,0.19,0.27,0.19,0.35,0.2,0.2,0.31,0.24,0.19,0.37,0.19,0.28,0.21,0.21,0.35,0.38,0.34,0.15,0.22,0.33,0.17,0.2,0.15,19.28,0.55,0.19,0.3,19.56,0.32,0.39,0.2,14.48,5.47,19.12,0.53,3.91,18.17,8.35,12.24,0.59,18.83,0.51,18.95,0.35,32.03,8.35,19.06,19.74,19.61,0.23,0.52,19.83,19.18,9.97,29.29,0.32,19.47,0.18,2.41,24.76,12.72,19.32,0.42,0.08,2.48,17.52,20.13,0.26,0.15,0.17,0.23,0.19,0.11,0.1,0.43,2.36,0.18,11.03,8.04,0.3,0.29,0.19,0.12,0.11,0.09,0.38,0.33,0.11,0.11,0.1,0.1,19.01,0.3,0.11,1.37,0.16,0.36,0.17,18.04,0.97,13.48,7.15,0.12,0.11,0.1,0.27,0.32,19.11,0.4,0.17,19.29,0.46,0.13,0.14,0.2,0.13,0.37,0.1,0.13,0.1,0.11,0.19,0.33,0.15,0.25,11.26,10.88,0.42,0.1,0.1,0.09,0.18,0.26,0.12,0.09,0.22,0.21,0.21,0.1,0.13,0.13,0.16,0.27,0.14,0.14,0.14,0.23,0.29,0.1,1.53,19.93,18.7,0.4,0.13,0.12,0.12,0.18,0.25,0.12,0.09,0.11,0.22,0.07,0.24,0.08,0.28,0.16,0.07,0.23,0.08,0.08,0.21,0.1,0.3,0.09,0.08,0.15,0.07,0.2,0.07,0.09,0.12,0.1,0.22,0.07,0.1,0.22,0.09,0.22,0.12,0.15,0.17,0.12,0.27,0.08,0.79,0.16,0.09,0.11,0.24,0.1,0.18,0.09,0.13,0.22,0.07,0.16,0.09,0.1,0.2,0.06,0.12,0.07,0.08,0.2,0.07,0.15,0.1,0.05,0.24,0.07,0.16,0.06,0.05,0.19,0.22,0.18,0.1,0.07,0.22,0.07,0.17,0.07,0.07,0.07,0.22,0.2,0.07,0.08,0.07,0.21,0.19,0.08,0.17,0.18,0.2,0.21,0.05,0.07,0.07,0.21,0.1,0.08,0.1,0.06,0.33,0.1,0.07,0.1,0.12,0.22,0.23,0.07,0.08,0.08,3.33,2.09,0.07,0.07,0.07,0.12,0.41,0.07,0.07,0.08,0.07,0.32,0.08,0.08,0.05,0.12,0.29,0.07,0.09,0.06,0.14,0.27,0.07,0.07,0.09,0.05,0.31,0.07,0.07,0.05,0.06,0.3,0.05,0.06,0.06,0.06,0.3,0.11,0.07,0.07,0.06,0.14,0.24,0.07,0.05,0.07,0.16,0.22,0.05,0.07,0.24,0.18,0.22,0.07,0.07,0.09,0.14,0.2,0.08,0.05,0.05,0.14,0.21,0.08,0.05,0.09,0.14,0.2,0.12,1.22,0.5,0.2,0.2,0.06,0.04,0.07,0.18,0.21,0.1,0.06,0.27,0.12,0.05,0.22,0.13,0.1,0.2,0.07,0.23,0.08,0.08,0.17,0.1,0.23,0.08,0.07,0.17,0.08,0.22,0.08,0.06,0.17,0.08,0.2,0.07,0.07,0.1,0.08,0.2,0.06,0.16,0.16,0.09,0.2,0.08,0.07,0.16,0.06,0.08,0.24,0.04,0.11,0.08,0.05,0.2,0.07,0.17,0.09,0.1,0.2,0.07,0.24,0.07,0.09,0.21,0.1,0.2,0.06,0.05,0.2,0.12,0.1,0.09,0.07,0.28,0.06,0.13,0.09,0.08,0.19,0.1,0.13,0.07,0.09,0.05,0.26,0.15,0.07,0.08,0.12,0.29,0.66,0.17,0.14,0.15,0.26,0.27,0.09,0.04,0.05,0.3,0.25,0.15,0.25,0.12,0.26,0.23,0.1,0.14,0.17,0.23,0.17,0.17,0.17,0.15,0.16,0.4,0.16,0.15,0.13,0.16,0.38,0.12,0.16,0.14,0.15,0.4,0.18,0.15,0.17,0.26,0.36,0.16,0.16,0.2,0.17,0.35,0.18,0.16,0.13,0.14,0.33,0.17,0.15,0.17,0.14,0.34,0.16,0.14,0.16,0.13,0.23,0.3,0.15,0.14,0.14,0.23,0.32,0.17,0.17,0.24,0.28,0.29,0.17,0.15,0.15,0.2,0.32,0.17,0.15,0.14,0.18,0.3,0.15,0.16,0.15,0.3,0.3,0.14,0.16,0.14,0.26,0.46,0.12,0.13,0.19,0.24,0.16,0.27,0.17,0.27,0.26,0.15,0.27,0.19,0.2,0.27,0.17,0.31,0.15,0.19,0.26,0.17,0.29,0.17,0.18,0.2,0.14,0.28,0.17,0.17,0.23,0.18,0.29,0.14,0.19,0.21,0.18,0.29,0.18,0.27,0.24,0.15,0.2,0.3,0.16,0.23,0.19,0.17,0.31,0.14,0.25,0.2,0.18,0.29,0.19,0.2,0.15,0.17,0.37,0.17,0.31,0.18,0.22,0.3,0.17,0.31,0.16,0.26,0.35,0.37,0.25,0.2,0.17,0.34,0.14,0.22,0.19,0.2,0.17,0.33,0.2,0.16,0.17,0.18,0.33,0.24,0.17,0.13,0.2,0.32,0.27,0.15,0.16,0.15,0.28,0.17,0.14,0.09,0.11,0.39,0.16,0.1,0.09,0.09,0.3,0.2,0.08,0.06,0.06,0.19,0.14,0.06,0.06,0.08,0.09,5.42,0.07,0.1,0.1,0.09,0.29,0.08,0.08,0.05,0.09,0.26,0.11,0.09,0.05,0.24,0.29,0.11,0.1,0.08,0.07,0.27,0.1,0.09,0.08,0.11,0.34,0.07,0.08,0.1,0.1,0.32,0.09,0.08,0.07,0.07,0.19,0.24,0.08,0.12,0.1,0.17,0.2,0.07,0.12,0.2,0.25,0.22,0.12,2.04,0.23,0.14,0.22,0.1,0.07,0.08,0.14,0.23,0.06,0.1,0.06,0.13,0.19,0.04,0.09,0.05,0.15,0.25,0.1,0.08,0.06,0.13,0.04,0.22,0.06,0.19,0.15,0.05,0.22,0.1,0.07,0.17,0.08,0.19,0.05,0.08,0.17,0.13,0.19,0.07,0.07,0.13,0.07,0.2,0.07,0.06,0.21,0.14,0.21,0.08,0.07,0.13,0.06,0.23,0.07,0.11,0.14,0.07,0.09,0.25,1.41,0.16,0.07,0.09,0.19,0.06,0.19,0.08,0.1,0.21,0.1,0.4,4.55,0.11,0.27,0.08,0.24,0.12,1.51,0.21,0.05,0.17,0.06,0.06,0.22,0.11,0.1,0.07,0.07,0.22,0.1,0.16,0.07,0.06,0.05,0.28,0.15,0.07,0.09,0.1,0.22,0.17,0.13,0.1,0.1,0.26,0.22,0.07,0.07,0.1,0.22,0.19,0.07,0.08,0.07,0.34,0.14,0.09,0.05,0.08,0.27,0.16,0.1,0.05,0.08,0.13,0.29,0.08,0.08,0.07,0.08,1.58,0.09,0.07,0.09,0.11,0.27,0.07,0.08,0.07,0.09,0.28,0.1,0.08,0.09,0.14,0.27,0.07,0.07,0.08,0.09,0.36,0.07,0.11,0.12,0.1,4.92,2.8,0.09,0.11,0.1,0.3,0.08,0.05,0.09,0.08,0.23,0.23,0.11,0.1,0.14,0.12,0.22,0.05,0.07,0.17,0.14,0.21,0.1,0.06,0.07,0.1,0.24,0.09,0.08,0.07,0.11,0.2,0.08,0.07,0.06,0.12,0.21,0.09,0.06,0.1,0.22,0.21,0.12,1.88,0.08,0.12,0.1,0.22,0.07,0.23,0.18,0.05,0.21,0.11,0.1,0.19,0.1,0.22,0.11,0.06,0.12,0.08,0.2,0.11,0.12,0.17,0.07,0.21,0.08,0.07,0.14,0.08,0.2,0.05,0.08,0.16,0.1,0.22,0.07,0.15,0.12,0.1,0.1,0.28,0.08,0.18,0.09,0.1,0.24,0.05,0.18,0.07,0.06,0.57,0.07,0.16,0.08,0.1,0.25,0.11,0.18,0.1,0.07,0.22,0.08,0.17,0.09,0.08,0.23,0.2,0.18,0.07,0.06,0.24,0.07,0.12,0.11,0.09,0.1,0.22,0.24,0.07,0.06,0.07,0.2,0.19,0.07,0.1,0.11,0.21,0.17,0.08,0.09,0.07,0.27,0.22,0.13,0.11,0.1,0.4,0.16,0.15,0.1,0.07,0.21,1.53,0.1,0.1,0.09,0.28,0.12,0.17,0.12,0.12,0.15,0.3,0.18,0.13,0.17,0.14,5.29,0.17,0.1,0.1,0.2,0.31,0.12,0.1,0.1,0.22,0.39,0.1,0.16,0.13,0.21,0.32,0.16,0.17,0.13,0.18,0.35,0.17,0.19,0.15,0.14,0.44,0.15,0.18,0.17,0.16,0.27,0.34,0.18,0.14,0.17,0.2,0.27,0.15,0.14,0.21,0.22,0.29,0.16,0.17,0.17,0.28,2.01,0.21,0.18,0.17,0.22,0.35,0.14,0.19,0.15,0.22,0.29,0.16,0.17,0.16,0.27,0.31,1.04,0.19,0.15,0.29,0.16,0.3,0.15,0.2,0.25,0.17,0.3,0.19,0.17,0.25,0.17,0.34,0.18,0.19,0.19,0.15,0.3,0.21,0.17,0.2,0.16,0.3,0.16,0.2,0.24,0.17,0.29,0.16,0.16,0.21,0.16,0.24,0.17,0.24,0.24,0.16,0.16,0.29,0.2,0.25,0.86,0.17,0.31,0.18,0.27,0.19,0.19,0.29,0.15,0.22,0.17,0.16,0.3,0.17,0.29,0.15,0.16,0.33,0.17,0.21,0.15,0.16,0.3,0.22,0.22,0.16,0.17,0.25,0.32,0.24,0.17,0.17,0.15,0.39,0.21,0.16,0.17,0.19,0.29,0.24,0.17,0.14,0.14,0.27,0.27,0.2,0.17,0.17,0.3,0.24,0.15,0.17,0.16,0.41,0.24,0.15,0.15,0.17,0.16,0.43,0.13,0.16,0.15,0.15,0.37,0.1,0.1,0.1,0.13,0.27,0.07,0.09,0.08,0.07,0.24,0.09,0.09,0.07,0.06,0.3,0.49,0.05,0.08,0.24,0.35,0.1,0.06,0.1,0.09,0.3,0.1,0.05,0.1,0.09,0.2,0.24,0.07,0.09,0.09,0.14,0.27,0.1,0.07,0.09,0.18,0.22,0.06,0.07,0.07,0.14,0.21,0.07,0.1,0.18,0.12,0.22,0.09,0.08,0.09,0.15,0.2,0.12,0.1,0.11,0.17,0.22,0.07,0.06,0.06,0.17,0.07,0.2,0.05,0.07,0.17,0.05,0.2,0.07,0.06,0.16,0.09,3.73,0.08,0.19,0.18,0.06,0.2,0.09,0.08,0.13,0.08,0.18,0.09,0.06,0.1,0.06,0.21,0.07,0.09,0.12,0.05,0.21,0.07,0.14,0.18,0.19,0.46,0.84,0.51,0.7,0.11,0.1,0.21,0.18,0.17,0.07,0.08,0.23,0.1,19.12,0.15,0.22,0.24,0.1,0.18,0.08,0.1,0.22,0.1,0.21,0.1,0.04,0.22,0.08,0.19,0.05,0.07,0.07,0.22,0.12,0.08,0.07,0.05,0.3,0.21,0.06,0.05,0.11,0.23,0.14,0.07,0.1,0.1,0.19,0.17,0.05,0.05,0.06,0.18,0.17,0.12,0.05,0.09,0.23,0.24,0.05,0.06,0.07,0.2,0.2,0.07,0.05,0.06,0.13,0.27,0.1,0.09,0.1,0.06,0.28,0.07,0.07,0.05,0.05,0.3,0.06,0.07,0.05,0.05,0.35,0.09,0.07,0.08,0.05,5.09,0.41,0.09,0.06,0.06,0.27,0.1,0.07,0.07,0.11,0.28,0.07,0.09,0.09,0.12,0.11,0.23,0.06,0.07,0.1,0.1,0.21,0.07,0.06,0.05,0.12,0.19,0.1,0.07,0.07,0.22,0.2,0.08,0.07,0.05,0.14,0.25,0.07,0.09,0.16,0.15,0.22,0.07,0.05,0.08,0.14,0.22,0.08,0.06,0.06,0.16,0.09,0.22,0.09,0.06,0.16,0.05,0.25,0.1,0.05,0.15,0.09,0.22,0.1,0.05,0.15,0.07,0.2,1.54,0.16,0.12,0.06,0.22,0.06,0.07,0.14,0.07,0.2,0.06,0.07,0.1,0.07,0.17,0.09,0.07,0.15,0.07,0.08,0.2,0.08,0.26,0.07,0.07,0.18,0.07,0.19,0.07,0.08,0.22,0.12,0.13,0.07,0.07,0.21,0.1,0.11,0.06,0.1,0.2,0.12,0.14,0.08,0.11,0.24,0.09,0.14,0.08,0.06,0.06,0.2,0.14,0.08,0.09,0.05,0.22,0.22,0.07,0.06,0.07,1.31,0.2,0.06,0.07,0.07,0.22,0.17,0.06,0.07,0.08,0.19,0.13,0.08,0.09,0.05,0.21,0.12,0.07,0.1,0.07,0.2,0.15,0.09,0.09,0.11,0.25,0.12,0.06,0.06,0.07,0.14,0.29,0.08,0.08,0.08,0.12,0.27,0.08,0.07,0.07,0.07,0.32,0.07,0.06,0.09,0.12,0.31,0.14,0.11,0.08,0.11,0.4,0.1,0.07,0.16,0.12,0.26,0.1,0.1,0.15,0.2,0.79,0.09,0.11,0.1,0.11,0.2,0.24,0.11,0.13,0.1,0.15,0.28,0.12,0.16,0.15,0.22,0.3,0.13,0.17,0.17,0.29,0.29,0.14,0.15,0.18,0.22,0.28,0.15,0.19,0.25,0.25,0.29,0.15,0.15,0.16,0.26,0.31,0.17,0.16,0.15,0.21,0.29,0.18,0.14,0.15,0.19,0.15,0.32,0.16,0.16,0.24,0.13,0.29,0.16,0.15,0.26,0.15,0.3,0.14,0.22,0.22,0.15,0.27,0.18,0.18,0.21,0.16,0.28,0.15,0.13,0.24,0.17,0.27,0.13,0.15,0.26,0.14,0.29,0.16,0.18,0.31,0.16,0.29,0.15,0.16,0.22,0.14,0.13,0.28,0.24,0.24,0.13,0.14,0.28,0.16,0.22,0.15,0.15,0.29,0.16,0.25,0.18,0.16,0.29,0.15,0.21,0.15,0.16,0.3,0.17,0.27,0.17,0.16,0.28,0.15,0.25,0.16,0.17,0.3,0.26,0.23,2.02,0.17,0.37,0.24,0.22,0.17,0.18,0.15,0.31,0.2,0.16,0.16,0.17,0.32,0.22,0.15,0.17,0.18,0.28,0.23,0.15,0.18,0.16,0.36,0.28,0.16,0.16,0.18,0.37,0.25,0.18,0.17,0.17,0.32,0.25,0.17,0.2,0.17,0.16,0.39,0.17,0.17,0.17,0.18,0.41,0.17,0.22,0.18,0.15,0.34,0.15,0.17,0.15,0.12,5,0.45,0.11,0.1,0.18,0.32,0.12,0.1,0.11,0.12,0.29,0.14,0.07,0.09,0.07,0.14,0.27,0.16,0.08,0.1,0.12,0.22,0.09,0.07,0.09,0.28,0.24,0.08,0.08,0.07,0.19,0.28,0.07,0.1,0.15,0.23,0.2,0.08,0.09,0.11,0.22,0.2,0.06,0.07,0.1,0.18,0.07,0.25,0.17,0.11,0.15,0.09,0.28,0.15,0.11,0.62,0.09,0.21,0.12,0.56,0.16,0.1,0.58,0.1,0.26,0.2,0.08,0.29,0.1,0.12,0.21,0.06,0.25,0.1,0.05,0.14,0.09,1.78,0.07,0.09,0.14,0.08,0.1,0.25,0.81,0.21,0.1,0.07,0.57,0.12,0.21,0.1,0.12,0.22,0.69,0.18,0.09,0.07,1.21,0.1,0.15,0.14,0.38,0.27,0.11,0.38,0.12,0.07,0.23,0.07,0.2,0.09,0.08,0.24,0.08,0.13,0.11,0.07,0.2,0.96,0.18,0.08,0.09,0.33,0.34,0.22,0.09,0.1,2.59,0.25,0.15,0.1,0.09,0.08,0.68,0.18,0.07,0.09,0.14,0.23,0.18,0.08,0.07,0.1,0.23,0.82,0.09,0.09,0.06,0.2,0.15,0.27,0.1,0.1,0.14,0.27,0.07,0.1,0.1,0.1,0.3,0.08,0.09,0.1,0.1,0.3,0.1,0.11,4.36,0.13,0.29,0.09,0.1,0.06,0.09,0.32,0.1,0.1,0.06,0.58,0.33,0.08,0.09,0.08,0.18,0.3,0.06,1.64,1.39,0.1,0.62,0.07,0.08,0.09,0.1,0.3,0.08,0.08,0.08,0.1,0.18,0.24,0.09,0.09,0.08,0.23,0.22,0.07,0.08,0.12,0.14,0.23,0.07,0.1,0.24,0.17,0.28,0.08,0.83,0.05,0.14,0.25,0.14,0.09,0.1,0.18,0.25,0.08,0.07,0.08,0.16,0.22,0.1,0.09,0.09,0.1,0.11,0.23,0.09,0.12,0.15,0.08,0.22,0.1,0.17,0.17,0.12,0.4,0.1,0.12,0.2,0.1,0.24,0.13,0.1,0.15,0.07,0.31,0.1,0.07,0.14,0.09,0.22,0.09,0.15,0.23,0.07,0.27,0.08,0.12,0.2,0.19,0.08,0.24,0.21,0.16,0.1,0.1,0.23,0.14,0.15,0.12,0.1,0.23,0.11,0.64,0.74,0.11,0.25,0.15,0.13,0.1,0.1,0.21,0.15,0.24,0.11,0.07,0.22,0.12,0.25,0.08,0.1,1.3,0.3,0.24,0.13,0.09,0.12,2.39,0.18,0.1,0.12,0.1,4.24,0.2,0.11,0.12,0.12,0.22,0.17,0.11,0.11,0.11,0.27,0.17,0.08,0.11,0.08,0.21,0.12,0.11,0.12,0.07,0.3,0.14,0.1,0.12,0.11,0.27,0.23,0.09,3.91,1,0.22,0.16,0.09,0.11,0.11,0.1,0.33,0.09,0.11,0.08,0.1,0.39,0.14,0.13,0.1,0.13,0.33,0.07,0.12,0.13,1.37,4.99,0.5,0.15,0.14,0.51,0.34,1.53,0.16,0.15,0.12,0.32,0.18,0.1,0.08,0.16,0.2,0.32,0.17,0.2,0.12,1.12,0.26,0.18,0.17,0.18,0.22,0.32,0.17,0.16,0.22,0.24,0.34,0.11,0.15,0.2,0.27,0.31,0.17,0.27,0.17,0.21,0.3,0.15,0.16,0.2,1.15,0.3,0.15,0.18,0.16,0.3,0.17,0.73,0.15,0.17,0.24,0.17,0.32,0.2,0.27,0.28,0.2,0.28,1.34,1.12,0.24,0.18,0.32,0.18,0.16,1.14,0.17,0.35,0.19,0.2,0.26,0.2,4.8,0.19,0.19,0.31,0.17,0.31,0.17,0.22,0.31,0.25,1.44,0.22,0.31,0.22,0.54,0.15,0.48,0.17,0.21,0.2,0.19,0.32,0.22,0.31,0.17,0.22,0.34,0.19,1.3,0.2,0.17,0.3,0.16,0.29,0.18,0.15,0.31,0.14,0.25,0.19,0.15,0.3,0.6,0.27,0.19,0.19,0.3,0.16,1.84,0.16,0.17,0.34,0.19,0.82,0.17,0.17,0.16,0.29,0.2,0.19,0.17,0.18,0.32,0.3,0.2,0.19,0.16,0.27,0.27,0.2,0.17,0.18,0.45,0.3,0.25,0.17,0.2,0.34,0.22,0.18,0.18,0.15,0.31,0.28,0.2,0.17,0.17,0.16,1.74,0.2,0.17,0.16,0.16,0.37,0.21,0.22,0.18,6.02,0.48,1.4,0.15,0.19,0.35,0.37,0.2,0.17,0.2,0.17,0.45,0.19,0.15,0.15,0.15,0.33,0.14,0.16,0.55,0.18,0.25,0.1,0.75,0.1,0.09,0.21,0.2,0.07,0.08,0.09,0.12,0.2,0.09,0.36,0.2,0.13,0.23,0.08,0.1,0.08,0.17,0.26,0.1,0.11,0.11,0.17,0.24,0.1,0.1,0.08,0.65,3.28,0.08,0.1,0.09,0.19,0.25,0.09,0.07,0.12,0.15,0.19,0.1,0.12,0.28,0.17,0.11,0.23,0.1,0.09,0.15,0.15,0.28,0.08,0.09,0.15,0.07,0.24,0.08,0.07,0.16,0.09,0.21,0.07,0.07,0.22,0.07,0.25,0.07,0.11,0.23,0.1,0.27,0.07,0.16,0.15,0.1,0.22,0.06,0.1,0.19,0.1,0.09,0.27,0.09,0.24,0.09,0.1,0.27,0.11,0.19,0.08,0.07,0.25,0.1,0.17,0.1,0.08,0.22,0.09,0.17,0.12,0.09,0.25,0.18,0.19,0.1,0.09,0.26,0.14,0.18,0.1,0.11,0.22,0.07,0.15,0.07,0.11,0.11,0.28,0.15,0.08,0.11,0.1,0.24,0.15,0.09,0.08,0.09,0.22,0.17,0.11,0.09,0.08,0.48,0.25,0.07,0.08,0.09,0.2,0.16,0.07,0.1,0.08,0.23,0.17,0.12,0.07,0.1,0.23,0.19,0.07,0.1,0.09,0.21,0.23,0.13,0.09,0.11,0.09,0.31,0.08,0.08,0.08,0.13,0.3,0.09,0.1,0.12,0.11,5.33,0.22,0.13,0.08,0.08,0.33,0.07,0.08,0.09,0.09,0.32,0.08,0.09,0.08,0.08,0.41,0.1,0.11,0.07,0.09,0.28,0.07,0.08,0.1,0.13,0.14,0.24,0.1,0.1,0.04,0.12,0.24,0.1,0.07,0.09,0.13,0.22,0.06,0.1,0.11,0.17,0.23,0.09,0.09,0.09,0.23,0.22,0.09,0.09,0.13,0.16,0.23,0.08,0.07,0.12,0.21,0.17,0.11,0.1,0.1,0.15,0.2,0.13,0.13,0.1,0.2,0.08,0.22,0.08,0.09,0.17,0.06,0.22,0.08,0.07,0.17,0.09,0.22,0.1,0.08,0.13,0.09,0.21,0.1,0.14,0.15,0.1,0.22,0.12,0.12,0.27,0.11,0.13,0.23,0.08,0.19,0.1,0.1,0.2,0.08,0.18,0.07,0.95,0.24,0.07,0.17,0.09,0.11,0.27,0.11,0.16,0.1,0.09,0.22,0.17,0.15,0.09,0.09,0.26,0.12,0.15,0.1,0.1,0.23,0.11,0.16,0.1,0.1,0.12,0.27,0.17,0.09,0.07,0.09,0.23,0.24,0.1,0.11,0.09,0.2,0.21,0.09,0.1,0.09,0.34,0.17,0.08,0.07,0.07,0.23,0.22,0.09,0.1,0.06,0.28,0.16,0.12,0.09,0.09,0.23,0.16,0.07,0.09,0.08,0.21,0.18,0.1,0.1,0.12,0.09,0.43,0.07,0.09,0.15,0.24,0.35,0.09,0.09,0.12,0.13,0.33,0.08,0.11,0.1,0.09,0.34,0.11,0.12,0.11,0.11,0.38,0.12,0.12,0.07,0.1,0.45,0.16,0.14,0.12,0.17,0.22,0.31,0.1,0.16,0.17,0.18,0.27,0.12,0.19,0.16,0.16,0.33,0.19,0.12,0.12,0.24,0.31,0.13,0.16,0.15,0.31,0.31,0.14,0.19,0.15,0.25,0.32,0.15,0.17,0.16,0.24,0.3,0.18,0.19,0.32,0.28,0.29,0.17,0.2,0.19,0.25,0.21,0.35,0.18,0.17,0.21,0.17,0.33,0.16,0.17,0.27,0.17,0.35,0.15,0.15,0.31,0.19,0.3,0.15,0.2,0.26,0.18,0.3,0.15,0.24,0.24,0.17,0.3,0.14,0.15,0.28,0.19,0.35,0.17,0.18,0.33,0.19,0.16,0.38,0.15,0.21,0.18,0.18,0.31,0.16,0.29,0.17,0.27,0.37,0.17,0.27,0.18,0.18,0.31,0.39,0.34,0.18,0.19,0.38,0.2,0.28,0.18,0.2,0.31,0.18,0.24,0.17,0.17,0.28,0.18,0.31,0.17,0.2,0.18,0.39,0.24,0.18,0.18,0.19,0.35,0.22,0.2,0.2,0.17,0.41,0.23,0.15,0.18,0.18,0.35,0.21,0.16,0.17,0.18,0.35,0.28,0.17,0.18,0.16,0.31,0.29,0.16,0.22,0.19,0.31,0.25,0.21,0.17,0.17,0.16,0.44,0.15,0.18,0.15,0.34,0.38,0.17,0.2,0.19,0.19,0.42,0.16,0.48,0.22,0.17,5.14,0.51,0.16,0.17,0.19,0.37,0.17,0.2,0.2,0.16,0.47,0.22,0.17,0.17,0.17,0.25,0.31,0.12,0.14,0.26,0.21,0.21,0.12,0.1,0.1,0.22,0.25,0.12,0.09,0.08,0.15,0.24,0.1,0.07,0.09,0.11,0.25,0.14,0.1,0.09,0.19,0.23,0.13,0.1,0.09,0.2,0.2,0.12,0.14,0.18,0.14,0.07,0.25,0.12,0.09,0.18,0.06,0.23,0.13,0.1,0.26,0.1,0.23,0.1,0.1,0.19,0.1,0.23,0.12,0.09,0.13,0.1,0.2,0.11,0.1,0.17,0.08,0.22,0.1,0.2,0.19,0.08,0.1,0.22,0.12,0.17,0.08,0.1,0.25,0.1,0.16,0.07,0.07,0.23,0.08,0.16,0.06,0.1,0.26,0.1,0.15,0.11,0.1,0.25,0.11,0.17,0.09,0.11,0.23,0.25,0.19,0.08,0.11,0.22,0.07,0.18,0.08,0.08,0.11,0.23,0.11,0.07,0.07,0.08,0.22,0.23,0.08,0.07,0.1,0.2,0.21,0.08,0.08,0.07,0.25,0.15,0.09,0.08,0.09,0.36,0.17,0.08,0.09,0.07,0.22,0.16,0.08,0.07,0.07,0.2,0.15,0.09,0.07,0.09,0.1,0.35,0.09,0.08,0.07,0.09,1.76,0.06,0.08,0.09,0.09,0.27,0.07,0.09,0.1,0.15,0.26,0.07,0.06,0.08,0.06,0.32,0.07,0.08,0.07,1.64,0.27,0.09,0.11,0.08,0.09,0.32,0.07,0.09,0.09,0.07,0.2,0.23,0.07,0.07,0.07,0.19,0.24,0.1,0.12,0.2,0.2,0.22,0.1,0.09,0.1,0.16,0.21,0.07,0.08,0.07,0.13,0.23,0.07,0.06,0.1,0.21,0.22,0.08,0.08,0.07,0.16,0.2,0.08,0.07,0.07,0.24,0.11,0.23,0.08,0.15,0.15,0.08,0.23,0.09,0.08,0.23,0.1,0.26,0.08,0.06,0.11,0.06,0.2,0.09,0.09,0.16,0.1,0.2,0.07,0.08,0.25,0.08,0.23,0.09,0.1,0.17,0.09,0.22,0.07,0.24,0.24,0.1,0.08,0.25,0.06,0.19,0.08,0.08,0.27,0.09,0.14,0.11,0.07,0.21,0.07,0.12,0.07,0.1,0.24,0.07,0.13,0.09,0.1,0.21,0.07,0.14,0.11,0.09,0.22,0.21,0.14,0.09,0.08,0.28,0.07,0.14,0.07,0.07,0.08,0.26,0.17,0.06,0.09,0.07,0.23,0.14,0.12,0.07,0.09,0.19,0.16,0.09,0.07,0.07,0.3,0.15,0.1,0.12,0.11,0.31,0.18,0.14,0.08,0.1,0.2,0.23,0.06,0.09,0.13,0.23,0.14,0.08,0.08,0.08,0.09,0.29,0.08,0.08,0.11,0.1,0.27,0.09,0.53,0.08,0.07,0.29,0.08,0.07,0.1,0.16,0.28,0.08,0.08,0.11,0.12,0.4,0.09,0.08,0.1,0.15,5.01,0.3,0.14,0.09,0.11,0.33,0.14,0.11,0.11,0.09,0.34,0.26,0.08,0.1,0.13,0.14,0.21,0.11,0.07,0.17,0.18,0.25,0.11,0.1,0.13,0.15,0.24,0.14,0.09,0.11,0.18,0.31,0.14,0.18,0.14,0.2,0.25,0.14,0.11,0.12,0.25,0.21,0.15,0.12,0.17,0.23,0.11,0.3,0.14,0.35,0.23,0.19,0.36,0.23,0.19,0.25,0.16,0.29,0.12,0.17,0.24,0.22,0.32,0.16,0.17,0.19,0.16,0.3,0.15,0.16,0.25,0.17,0.31,0.17,0.19,0.27,0.17,0.17,0.3,0.28,0.24,0.18,0.16,0.3,0.16,0.26,0.15,0.21,0.32,0.17,0.27,0.17,0.16,0.3,0.19,0.21,0.18,0.17,0.29,0.14,0.23,0.18,0.2,0.31,0.18,0.23,0.15,0.17,0.28,0.3,0.27,0.19,0.18,0.18,0.32,0.24,0.17,0.16,0.17,0.3,0.27,0.19,0.15,0.17,0.32,0.3,0.19,0.17,0.15,0.33,0.66,0.18,0.17,0.19,0.31,0.26,0.19,0.2,0.15,0.41,0.22,0.16,0.19,0.17,0.33,0.26,0.16,0.18,0.19,0.17,0.38,0.2,0.17,0.19,0.16,0.43,0.15,0.17,0.14,0.17,0.37,0.15,0.15,0.17,0.17,0.45,0.18,0.17,0.15,0.26,0.37,0.17,0.19,0.16,0.16,0.39,0.18,0.18,0.19,0.16,0.42,0.14,0.21,0.15,0.72,0.25,0.32,0.18,0.16,0.16,0.27,0.31,0.16,0.17,0.2,0.27,0.35,0.16,0.18,0.32,0.26,0.31,0.15,0.18,0.2,0.32,0.3,0.17,0.18,0.18,0.22,0.34,0.15,0.13,0.11,0.24,0.24,0.08,0.1,0.1,0.24,0.1,0.25,0.07,0.11,1.78,0.09,0.23,0.1,0.19,0.16,0.1,0.24,0.12,0.08,0.19,0.09,0.24,0.09,0.12,0.16,0.07,0.18,0.11,0.91,0.16,0.09,0.25,0.07,0.06,0.32,0.1,0.25,0.09,0.09,0.13,0.1,0.21,0.06,0.23,0.16,0.08,0.09,0.25,0.11,0.18,0.1,0.07,0.23,0.06,0.14,0.1,0.08,0.24,0.1,0.23,0.11,0.12,0.24,0.1,0.26,0.07,0.1,0.23,0.07,0.12,0.08,0.11,0.27,0.16,0.17,0.11,0.1,0.25,0.07,0.18,0.1,0.09,0.18,0.12,0.12,0.11,0.09,0.17,0.1,0.91,0.11,0.09,0.09,0.25,0.26,0.1,0.09,0.07,0.21,0.17,0.06,0.08,0.07,0.29,0.16,0.09,0.09,0.08,0.22,0.12,0.09,0.11,0.07,0.24,0.11,0.09,0.08,0.07,0.22,0.14,0.05,0.08,0.08,5.47,0.33,0.07,0.1,0.09,0.1,1.76,0.07,0.07,0.06,0.21,0.32,0.08,0.05,0.11,0.07,0.33,0.08,0.07,0.07,0.07,0.29,0.07,0.07,0.07,0.07,3.56,0.05,0.12,0.1,0.08,0.36,0.1,0.06,0.07,0.07,0.32,0.09,0.1,0.07,0.23,0.29,0.07,0.09,0.09,0.07,0.17,0.24,0.09,0.09,0.08,0.17,0.28,0.07,0.06,0.08,0.18,0.24,0.07,0.06,0.08,0.12,0.2,0.1,0.07,0.07,0.91,0.24,0.06,0.08,0.2,0.16,0.25,0.1,0.08,0.06,0.17,0.22,0.13,0.07,0.09,0.16,0.19,0.09,0.1,0.11,0.14,0.1,0.21,0.07,0.07,0.2,0.12,0.24,0.06,0.1,0.24,0.1,0.22,0.1,0.22,0.2,0.08,0.2,0.07,0.07,0.13,0.09,0.23,0.07,0.08,0.18,0.1,0.2,0.1,0.09,0.16,0.09,0.25,0.09,0.09,0.13,0.12,0.1,0.22,0.09,2.44,0.09,0.08,0.24,0.27,0.16,0.08,0.08,0.24,0.08,0.19,0.09,0.07,0.27,0.09,0.2,0.1,0.08,0.22,0.07,0.2,0.74,0.05,0.24,0.07,9.65,0.1,0.07,0.2,0.08,0.14,0.07,0.07,0.2,0.22,0.13,0.09,0.09,0.09,0.22,0.18,0.08,0.12,0.1,0.25,0.19,0.07,0.12,0.12,0.23,1.42,0.12,0.09,0.08,0.29,0.15,0.07,0.1,0.13,0.23,0.23,0.09,0.06,0.08,0.4,0.23,0.1,0.11,0.09,0.26,0.24,0.1,0.1,0.08,0.22,0.13,0.1,0.09,0.09,0.07,0.43,0.19,0.05,0.1,0.08,0.29,0.11,0.09,0.06,0.09,0.27,0.08,0.08,0.09,0.16,0.28,0.07,0.08,0.06,0.11,0.3,0.09,0.11,0.09,0.1,0.34,0.07,0.08,0.11,0.07,0.32,0.12,0.09,0.1,0.12,0.35,0.13,0.09,0.11,0.11,0.29,0.12,2.19,0.12,0.17,0.19,0.31,0.12,0.13,0.12,0.21,0.25,0.18,0.15,0.13,0.22,0.28,0.16,0.1,0.12,0.23,0.25,0.14,0.14,0.15,0.25,0.37,0.18,0.16,0.13,0.22,0.29,0.15,0.17,0.31,0.23,0.28,0.16,0.15,0.14,0.23,0.16,0.31,0.17,0.16,0.2,0.15,0.31,0.16,0.15,0.19,0.17,0.27,0.17,0.16,0.28,0.17,0.29,0.18,0.17,0.25,0.14,0.62,0.17,0.24,0.24,0.17,0.3,0.2,0.17,0.3,0.19,0.31,0.15,0.16,0.24,0.19,0.25,0.2,0.17,0.26,0.15,0.17,0.27,0.17,0.29,0.15,0.18,0.3,0.16,0.18,0.19,0.19,0.32,0.4,0.26,0.16,0.15,0.3,0.15,0.23,0.17,0.18,0.3,0.16,0.28,0.15,0.15,0.3,0.15,0.21,0.17,0.15,0.28,0.18,0.25,0.17,0.15,0.31,0.17,0.28,0.16,0.2,0.16,0.41,0.28,0.17,0.18,0.18,0.27,0.22,0.19,0.19,0.16,0.32,0.23,0.2,0.25,0.2,0.28,0.24,0.14,0.17,0.27,5.05,0.48,0.2,0.17,0.18,0.33,0.29,0.16,0.14,0.2,0.39,0.32,0.15,0.16,0.16,0.32,0.24,0.2,0.17,0.15,0.17,0.32,0.16,0.17,0.17,0.14,0.35,0.15,0.17,0.15,0.18,0.35,0.19,0.14,0.16,0.17,0.44,0.17,0.16,0.17,0.25,0.37,0.11,0.11,0.15,0.1,0.37,0.08,0.09,0.12,0.07,0.32,0.1,0.06,0.07,0.09,0.18,0.22,0.07,0.1,0.06,0.16,0.28,0.08,0.07,0.07,0.12,0.19,0.11,0.05,0.12,0.13,0.27,0.06,0.06,0.04,0.19,0.19,0.13,0.08,0.1,0.14,0.22,0.07,0.08,0.09,0.16,0.21,0.06,0.08,0.1,0.22,0.24,0.1,0.07,0.07,0.17,0.07,0.25,0.1,0.12,0.19,0.1,0.18,0.07,0.07,0.15,0.06,0.21,0.09,0.07,0.12,0.05,0.19,0.08,0.08,0.15,0.06,0.2,0.09,0.09,1.03,0.14,0.24,0.07,0.08,0.17,0.08,0.24,0.1,0.19,0.22,0.11,0.07,0.2,0.05,0.17,0.06,0.07,0.2,0.11,0.22,0.06,0.06,0.22,0.06,0.11,0.05,0.05,0.25,0.05,0.16,0.06,0.08,0.2,0.08,0.1,0.08,0.05,0.24,0.24,0.15,0.1,0.08,0.2,0.08,0.22,0.07,0.08,0.06,0.2,0.14,0.11,0.06,0.09,0.19,0.17,0.05,0.1,0.09,0.24,0.16,0.1,0.05,0.07,0.2,0.15,0.08,0.08,0.08,0.27,0.14,0.1,0.08,0.09,0.23,0.14,0.07,0.1,0.07,0.17,0.18,0.06,0.08,0.07,0.06,0.26,0.07,0.06,0.05,0.47,0.34,0.07,0.08,0.06,0.05,0.34,0.06,0.05,0.1,0.14,0.23,0.07,0.07,0.07,0.09,0.29,0.08,0.06,0.08,0.08,0.37,0.05,0.05,0.08,0.07,0.22,0.23,0.08,0.06,0.1,0.23,0.27,0.06,0.08,0.08,0.17,0.2,0.08,0.1,0.2,0.12,0.21,0.07,0.08,0.07,0.13,0.19,0.06,0.06,0.07,0.14,0.22,0.09,0.07,0.09,0.12,0.18,0.06,0.06,0.06,0.15,0.2,0.06,0.04,0.07,0.18,0.05,0.23,0.06,0.27,0.17,0.1,0.2,0.07,0.07,0.21,0.05,0.24,0.11,0.07,0.18,0.08,0.24,0.09,0.09,0.13,0.06,0.17,0.12,0.1,0.17,0.06,0.24,0.04,0.07,0.09,0.06,0.19,0.06,0.19,0.14,0.05,0.09,0.2,0.07,0.13,0.07,0.07,0.21,0.05,0.18,0.05,0.06,0.22,0.06,0.14,0.1,0.07,0.25,0.05,0.18,0.06,0.06,0.19,0.1,0.18,0.11,0.07,0.2,0.26,0.18,0.11,0.11,0.2,0.06,0.16,0.05,0.09,0.07,0.22,0.15,0.07,0.09,0.04,0.2,0.1,0.05,0.04,0.06,0.22,0.18,0.09,0.25,0.06,4.84,0.29,0.07,0.07,0.06,0.32,0.21,0.05,0.08,0.11,0.24,0.1,0.05,0.1,0.06,0.19,0.09,0.05,0.08,0.08,0.12,0.33,0.1,0.05,0.05,0.07,0.32,0.07,0.1,0.08,0.07,0.27,0.06,0.07,0.05,0.24,0.27,0.05,0.05,0.04,0.12,0.4,0.19,0.05,0.05,0.16,0.31,0.15,0.15,0.09,0.16,0.32,0.09,0.15,0.05,0.09,0.12,0.23,0.08,0.28,0.09,0.13,0.2,0.09,0.08,0.17,0.14,0.24,0.13,0.15,0.14,0.24,0.28,0.14,0.17,0.16,0.28,0.27,0.15,0.14,0.14,0.19,0.29,0.16,0.14,0.14,0.25,0.28,0.15,0.14,0.12,0.25,0.3,0.17,0.14,0.26,0.22,0.16,0.29,0.15,0.17,0.22,0.13,0.28,0.17,0.16,0.16,0.16,0.26,0.14,0.19,0.24,0.15,0.27,0.15,0.14,0.26,0.15,0.34,0.16,0.16,0.29,0.15,0.31,0.15,0.24,0.26,0.12,0.26,0.23,0.14,0.24,0.16,0.15,0.28,0.15,0.28,0.14,0.14,0.28,0.15,0.2,0.17,0.18,0.29,0.13,0.19,0.15,0.15,0.29,0.15,0.23,0.16,0.14,0.32,0.27,0.27,0.13,0.16,0.27,0.15,0.23,0.2,0.17,0.17,0.28,0.2,0.14,0.14,0.15,0.28,0.21,0.16,0.15,0.15,0.29,0.3,0.14,0.14,0.18,0.27,0.2,0.16,0.14,0.18,0.35,0.19,0.15,0.17,0.13,0.3,0.2,0.16,0.17,0.13,0.3,0.24,0.15,0.15,0.16,0.32,0.25,0.17,0.15,0.18,0.14,0.41,0.16,0.17,0.14,0.17,0.38,0.14,0.14,0.16,0.22,0.37,0.15,0.14,0.14,0.15,0.34,0.16,0.14,0.17,0.14,0.32,0.14,0.12,0.14,0.14,0.29,0.14,0.08,0.08,0.06,0.3,0.06,0.09,0.08,0.08,0.12,0.2,0.06,0.07,0.26,0.19,0.19,0.05,0.06,0.09,0.14,0.25,0.08,0.07,0.05,0.19,0.21,0.05,0.05,0.08,0.16,0.19,0.08,0.07,0.07,0.09,0.23,0.09,0.07,0.05,0.11,0.26,0.05,0.05,0.17,0.1,0.21,0.07,0.05,0.07,0.09,0.07,0.21,0.05,0.05,0.11,0.04,0.2,0.06,0.05,0.09,0.07,0.19,0.05,0.05,0.12,0.05,0.2,0.05,0.07,0.15,0.05,0.2,0.05,0.23,0.14,0.05,0.21,0.06,0.05,0.17,0.05,0.19,0.05,0.07,0.13,0.05,0.05,0.22,0.1,0.11,0.04,0.05,0.22,0.05,0.15,0.04,0.05,0.17,0.06,0.12,0.07,0.07,0.18,0.12,0.12,0.06,0.08,0.17,0.07,0.15,0.09,0.07,0.2,0.05,0.17,0.05,0.07,0.2,0.06,0.12,0.07,0.06,0.05,0.19,0.19,0.05,0.05,0.05,0.2,0.11,0.06,0.04,0.06,4.99,0.2,0.07,0.06,0.05,0.19,0.1,0.05,0.1,0.05,0.17,0.14,0.04,0.05,0.05,0.17,0.1,0.05,0.06,0.08,0.19,0.19,0.08,0.06,0.05,0.15,0.14,0.07,0.05,0.06,0.14,0.28,0.06,0.07,0.05,0.07,0.29,0.08,0.05,0.06,0.08,0.23,0.06,0.08,0.06,0.06,0.28,0.07,0.05,0.04,0.05,0.26,0.04,0.08,0.06,0.06,0.28,2.1,0.05,0.05,0.15,0.1,0.23,0.06,0.06,0.09,0.19,0.22,0.08,0.06,0.08,0.12,0.19,0.07,0.05,0.07,0.13,0.2,0.06,0.08,0.05,0.19,0.19,0.08,0.06,0.1,0.15,0.23,0.07,0.06,0.19,0.11,0.2,0.07,0.1,0.07,0.12,1.3,0.2,0.06,0.06,0.1,0.07,0.19,0.06,0.07,0.13,0.06,0.18,0.07,0.07,0.69,0.08,0.2,0.07,0.06,0.21,0.08,0.2,0.06,0.23,0.18,0.05,0.2,0.07,0.06,0.16,0.08,0.21,0.1,0.07,0.14,0.05,0.08,0.25,0.09,0.22,0.04,0.06,0.2,0.06,0.15,0.05,0.09,0.2,0.1,0.16,0.07,0.06,0.2,0.17,0.14,0.05,0.08,0.19,0.06,0.12,1.51,0.08,0.2,0.08,0.15,0.05,0.08,0.1,0.26,0.17,0.06,0.08,0.09,0.2,0.14,0.11,0.1,0.05,0.19,0.12,0.05,3.81,0.06,0.34,0.11,0.08,0.07,0.12,0.2,0.15,0.09,0.12,0.07,0.18,0.19,0.06,0.07,0.07,0.2,0.28,0.07,0.07,0.12,0.07,0.34,0.07,0.07,0.07,0.06,0.23,0.08,0.07,0.11,0.17,0.3,0.05,0.05,0.06,0.05,0.23,0.38,0.06,0.05,0.07,0.26,0.1,0.07,0.06,0.06,0.29,0.08,0.12,0.08,0.05,0.28,0.05,0.08,0.06,0.09,0.21,0.22,0.08,0.12,0.23,0.21,0.22,0.15,0.1,0.08,0.15,0.2,0.08,0.15,0.1,0.25,0.24,0.16,0.15,0.18,0.17,0.28,0.12,0.13,0.12,0.17,0.26,0.14,0.13,0.17,0.25,0.28,0.17,0.14,0.25,0.24,0.14,0.29,0.18,0.15,0.26,0.15,0.52,0.13,0.14,0.19,0.17,0.3,0.15,0.14,0.2,0.15,0.27,0.15,0.15,0.46,0.19,0.27,0.14,0.14,0.23,0.19,0.28,0.16,0.2,0.18,0.14,0.29,0.14,0.14,0.24,0.17,0.29,0.15,0.14,0.19,0.18,0.15,0.3,0.15,0.22,0.13,0.12,0.28,0.14,0.2,0.15,0.15,0.28,0.14,0.3,0.15,0.13,0.28,0.28,0.23,0.14,0.14,0.26,0.13,0.19,0.17,0.16,0.27,0.15,0.17,0.14,0.15,0.27,0.17,0.19,0.13,0.13,0.15,0.31,0.29,0.13,0.18,0.17,0.33,0.35,0.16,0.14,0.13,0.38,0.21,0.14,0.15,0.12,4.83,0.35,0.15,0.16,0.15,0.27,0.23,0.16,0.18,0.15,0.28,0.2,0.16,0.15,0.19,0.15,0.38,0.15,0.15,0.14,0.15,0.3,0.14,0.14,0.15,0.29,0.38,0.17,0.16,0.14,0.13,0.34,0.2,0.18,0.17,0.15,0.33,0.15,0.12,0.15,0.17,0.34,0.14,0.15,0.19,0.17,0.42,0.15,0.15,0.16,0.16,0.23,0.29,0.14,0.11,1.77,0.14,0.23,0.08,0.06,0.07,0.13,0.21,0.1,0.1,0.06,0.1,0.21,0.06,0.07,0.06,0.21,0.24,0.05,3.77,0.06,0.12,0.21,0.06,0.07,0.08,0.16,0.2,0.08,0.1,0.17,0.15,0.06,0.2,0.06,0.06,0.14,0.1,0.21,0.07,0.06,0.15,0.08,0.2,0.08,0.09,0.14,0.08,0.19,0.06,0.05,0.17,0.05,0.21,0.06,0.05,0.15,0.06,0.2,0.1,0.32,0.09,0.09,0.2,0.06,0.05,0.17,0.07,0.24,0.06,0.05,0.17,0.07,0.07,0.2,0.05,1.2,0.08,0.05,0.19,0.06,0.14,0.05,0.52,6.94,0.05,0.1,0.09,0.07,0.2,0.16,0.13,0.07,0.08,0.19,0.07,0.13,0.1,0.07,0.2,0.05,0.11,0.07,0.1,0.23,0.07,0.15,0.07,0.05,0.21,0.06,0.16,0.05,0.07,0.07,0.26,0.18,0.05,0.04,0.05,0.27,0.12,0.07,0.08,0.06,0.21,0.11,0.05,0.05,0.06,0.18,0.13,0.05,0.07,0.06,0.18,0.12,0.05,0.05,0.05,0.18,0.1,0.05,0.05,0.04,0.18,0.15,0.08,0.06,0.05,0.25,0.18,0.04,0.05,0.06,0.06,0.32,0.12,0.05,0.05,0.8,0.27,0.06,0.05,0.05,0.07,0.31,0.05,0.03,0.05,0.05,0.36,0.05,0.07,0.07,0.05,0.24,0.07,0.05,0.06,0.14,0.22,0.09,0.07,0.09,0.05,0.29,0.08,0.07,0.09,0.07,0.13,0.31,0.11,0.06,0.05,0.17,0.2,0.07,0.09,0.08,0.14,0.2,0.05,0.05,0.05,0.13,0.22,0.05,0.06,0.14,0.1,0.18,0.06,0.07,0.05,0.12,0.21,0.07,0.08,0.06,0.17,0.21,0.05,0.05,0.07,0.14,0.2,0.04,0.07,0.07,0.15,0.07,0.19,0.07,0.07,0.15,0.05,0.18,0.06,0.15,0.14,0.09,0.25,0.09,0.07,0.11,0.1,0.19,0.05,0.07,0.09,0.06,0.17,0.07,0.04,0.12,0.06,0.19,0.09,0.07,0.16,0.1,0.19,0.06,0.07,0.16,0.05,0.05,0.19,0.28,0.21,0.08,0.09,0.2,0.12,0.16,0.07,0.07,0.25,0.07,0.31,0.06,0.06,0.22,0.06,0.1,0.06,0.1,0.19,0.07,0.18,0.06,0.05,0.23,0.07,0.15,0.07,0.07,0.18,0.13,0.15,1.14,0.08,0.2,0.07,0.16,0.08,0.07,0.06,4.97,0.17,0.1,0.12,0.05,0.19,0.11,0.06,0.06,0.05,0.19,0.19,0.05,0.05,0.08,0.23,0.08,0.05,0.05,0.05,0.25,0.11,0.04,0.05,0.09,0.2,0.09,0.09,0.09,0.1,0.18,0.09,0.07,0.03,0.08,0.18,0.14,0.05,0.11,0.06,0.06,0.31,0.09,0.06,0.07,0.09,0.27,0.11,0.11,0.11,0.11,0.35,1.27,0.08,0.07,0.12,0.33,0.11,0.07,0.06,0.18,0.39,0.06,0.03,0.05,0.05,0.25,0.08,0.09,0.13,0.05,0.36,0.08,0.12,0.18,0.15,0.3,0.08,0.08,0.12,0.14,0.17,0.21,0.07,0.12,0.12,0.27,0.37,0.16,0.21,0.17,0.27,3.95,0.18,0.13,0.16,0.24,0.3,0.17,0.15,0.14,0.22,0.29,0.15,0.15,0.17,0.18,0.27,0.17,0.15,0.21,0.21,0.3,0.51,0.17,0.19,0.22,0.3,0.17,0.15,0.15,0.18,0.16,0.31,0.15,0.14,0.2,0.17,0.33,0.13,0.17,0.22,0.13,0.28,0.15,0.15,0.22,0.2,0.28,0.15,0.26,0.21,0.16,0.28,0.15,0.13,0.22,0.2,0.28,0.15,0.17,0.25,0.16,0.33,0.14,0.15,0.24,0.15,0.3,0.18,0.18,0.2,0.18,0.19,0.34,0.15,0.2,0.18,0.2,0.29,0.24,0.19,0.17,0.16,0.33,0.17,0.2,0.15,0.18,0.3,0.17,0.2,0.23,0.15,0.26,0.18,0.26,0.16,0.16,0.31,0.15,3.11,2.68,0.17,0.31,0.18,0.25,0.16,0.15,0.29,0.32,0.29,0.22,0.16,0.17,0.32,0.21,0.17,0.17,0.16,0.27,0.22,0.19,0.17,0.19,0.32,0.22,0.16,0.14,0.16,0.26,0.21,0.17,0.17,0.15,0.3,0.23,0.15,0.16,0.17,0.39,0.25,0.16,0.16,0.15,0.14,0.35,0.17,0.15,0.17,0.15,0.39,0.16,0.15,0.14,0.12,0.34,0.1,0.09,0.09,0.08,0.23,0.05,0.05,0.07,0.07,0.27,0.09,0.05,0.05,0.13,0.28,0.05,0.07,0.06,0.07,0.22,0.13,0.09,0.07,0.06,0.25,0.11,0.07,0.07,0.06,0.11,0.21,0.08,0.07,0.07,0.15,0.2,0.08,0.2,0.07,0.19,0.29,0.08,0.07,0.22,0.11,0.19,0.27,0.07,0.07,0.24,0.25,0.08,0.05,0.07,0.13,0.2,0.07,0.07,0.05,0.12,0.22,0.09,0.06,0.06,0.17,0.06,0.22,0.09,0.06,0.19,0.09,0.22,0.07,0.19,0.16,0.09,0.2,0.06,0.07,0.15,0.08,0.24,0.07,0.11,0.18,0.07,0.22,0.06,0.08,0.16,0.05,0.18,0.08,0.07,0.15,0.09,0.21,0.06,0.09,0.14,0.07,0.21,0.06,0.13,0.12,0.06,0.05,0.21,0.07,0.21,0.08,0.07,0.2,0.08,0.11,0.07,0.05,4.91,0.07,0.19,0.08,0.09,0.2,0.08,0.18,0.05,0.07,0.18,0.06,0.17,0.06,0.07,0.21,0.13,0.11,0.06,0.05,0.21,0.05,0.09,0.09,0.05,0.22,0.05,0.1,0.07,0.1,0.07,0.27,0.12,0.08,0.07,0.08,0.19,0.12,0.04,0.06,0.06,0.22,0.16,0.06,0.09,0.12,0.33,0.19,0.05,0.07,0.32,0.2,0.18,0.06,0.05,0.07,0.23,0.17,0.04,0.07,0.11,0.22,0.14,0.07,0.05,0.05,0.22,0.13,0.06,0.06,0.06,0.19,0.14,0.07,0.44,0.07,0.11,0.31,0.08,0.07,0.06,0.1,0.26,0.07,0.05,0.09,0.09,0.25,0.07,0.08,0.05,0.06,0.24,0.07,0.05,0.05,0.06,0.33,0.05,0.09,0.06,0.06,0.27,0.08,0.08,0.06,0.13,0.24,0.08,0.07,0.09,0.1,0.14,0.2,0.07,0.06,0.08,0.15,0.21,0.07,0.06,0.07,0.12,0.22,0.07,0.07,0.08,0.54,0.2,0.06,0.06,0.06,0.12,0.2,0.43,0.06,0.13,0.1,0.2,0.06,0.08,0.06,0.15,0.24,0.1,0.07,0.07,0.15,0.1,0.22,0.16,0.08,0.19,0.04,0.2,0.06,0.08,0.16,0.06,0.2,0.07,0.05,0.13,0.07,0.22,0.06,0.14,0.11,0.07,0.22,0.54,0.07,0.14,0.05,0.19,0.07,0.05,0.15,0.07,0.23,0.08,0.05,0.17,0.09,0.09,0.23,0.08,0.15,0.06,0.07,0.19,0.07,0.15,0.07,0.09,0.21,0.13,0.15,0.09,0.1,0.2,0.06,0.12,0.06,0.11,0.21,0.1,0.15,0.08,0.1,0.22,0.09,0.13,0.1,0.07,0.24,0.06,0.24,0.08,0.07,0.05,0.21,0.16,0.07,0.09,0.08,0.35,0.17,0.09,0.08,0.07,0.22,0.14,0.08,0.08,0.06,0.22,0.23,0.1,0.08,0.07,0.23,0.14,0.1,0.09,0.09,0.25,0.15,0.1,0.06,0.11,0.25,0.12,0.11,0.15,0.11,0.35,0.18,0.1,0.13,0.15,0.15,0.33,0.15,0.1,0.06,0.1,0.26,0.1,0.12,0.29,0.15,0.33,0.11,0.1,0.15,0.16,0.43,0.11,0.14,0.12,0.12,0.32,0.14,0.14,0.19,0.23,0.4,0.15,0.15,0.31,0.17,0.37,0.14,0.18,0.15,0.17,0.21,0.32,0.16,0.15,0.15,0.21,0.32,0.15,0.17,0.15,0.25,0.31,0.13,0.16,0.23,0.27,0.31,0.15,0.15,0.27,0.25,0.31,0.16,0.14,0.15,0.24,0.33,0.2,0.15,0.17,0.24,0.29,0.18,0.15,1.13,0.25,0.16,0.32,0.14,0.15,0.28,0.15,0.3,0.17,0.15,0.25,0.17,0.34,0.16,0.3,0.21,0.15,0.28,0.15,0.15,0.24,0.2,0.35,0.17,0.16,0.29,0.15,0.31,0.16,0.3,0.2,0.18,5,0.32,0.16,0.21,0.15,0.15,0.3,0.22,0.23,0.18,0.17,0.32,0.22,0.24,0.17,0.15,0.33,0.22,0.27,0.16,0.19,0.3,0.19,0.22,0.18,0.17,0.32,0.17,0.25,0.19,0.16,0.31,0.16,0.29,0.15,0.14,0.35,0.17,0.23,0.16,0.15,0.18,0.44,0.3,0.16,0.15,0.15,0.38,0.22,0.17,0.22,0.15,0.32,0.34,6.11,1.27,0.17,0.32,0.26,0.17,0.17,0.17,0.32,0.27,0.16,0.17,0.2,0.39,0.26,0.16,0.18,0.16,0.43,0.3,0.12,0.1,0.14,0.31,0.19,3.99,11.24,4.36,10.94,18.7,18.48,0.29,19.14,0.16,0.3,0.27,0.08,18.47,18.09,1.06,1.65,20.56,0.28,0.1,0.31,21.94,0.25,0.09,0.15,0.29,0.18,0.09,0.09,0.1,0.3,0.09,0.1,0.1,0.1,0.35,0.2,0.18,11.87,11.14,0.45,0.12,0.09,0.09,0.07,0.26,0.26,0.11,0.07,0.08,0.12,0.24,0.08,0.07,0.2,22.72,0.44,0.09,0.08,0.08,0.13,0.2,0.2,0.29,0.09,0.19,4.69,18.02,9.36,13.47,20.89,0.36,28.66,17.78,5.31,0.22,22.88,0.29,0.08,0.07,0.16,0.06,0.23,0.08,0.15,0.17,0.07,0.21,0.1,0.09,0.14,0.08,0.23,0.07,0.13,0.14,0.06,0.2,0.07,0.1,0.19,0.05,0.21,0.08,0.09,0.12,0.07,0.21,0.08,0.08,0.22,0.06,0.25,0.11,0.21,0.17,0.06,0.08,0.24,0.07,0.2,0.08,0.11,0.2,0.09,0.18,0.08,0.07,0.23,0.12,0.15,0.07,0.08,0.27,0.07,0.12,0.15,0.11,0.23,0.1,0.13,0.1,0.1,0.22,0.17,0.17,0.11,0.09,0.23,0.07,0.17,0.07,0.1,0.22,0.14,0.15,0.15,0.08,0.1,0.25,0.24,0.08,0.08,0.1,0.22,0.18,0.09,0.09,0.1,0.22,0.2,0.11,0.12,0.07,0.32,0.13,0.09,0.09,0.16,0.28,0.16,0.1,0.14,0.07,0.21,0.13,0.1,0.1,0.11,0.09,0.27,0.08,0.08,0.1,0.07,0.52,0.08,0.1,0.1,0.09,0.34,0.08,0.11,0.1,0.33,0.29,0.08,0.08,0.07,0.11,0.39,0.07,0.09,0.09,0.1,0.3,0.1,0.11,0.07,0.1,0.24,0.08,0.08,0.09,0.08,0.12,0.25,0.07,0.09,0.1,0.15,0.26,0.08,0.07,0.15,0.14,0.29,0.09,0.08,0.08,0.16,0.25,0.12,0.09,0.12,0.16,0.26,0.11,0.1,0.07,0.19,0.21,1.8,0.09,0.1,0.19,0.25,0.07,0.09,0.09,0.22,0.21,0.07,0.11,0.15,0.14,0.09,0.25,0.07,0.11,0.14,0.08,0.33,0.07,0.14,0.13,0.08,0.23,0.09,0.07,0.14,0.1,0.25,0.08,0.1,0.23,0.09,3.67,0.16,0.13,0.15,0.08,0.29,0.11,0.19,0.13,0.09,0.24,0.1,0.08,0.13,0.09,0.13,0.31,0.1,0.19,0.08,0.1,0.26,0.08,0.17,0.11,0.07,0.27,0.07,0.13,0.07,0.09,0.19,0.08,0.15,0.07,0.05,0.24,0.17,0.14,0.08,0.08,0.22,0.07,0.1,0.07,0.1,0.26,0.07,0.18,0.13,0.09,0.27,0.13,0.2,0.07,0.09,0.08,0.27,0.15,0.07,0.1,0.07,0.26,0.19,0.05,0.1,0.11,0.29,0.22,0.1,0.15,0.1,0.23,0.14,0.12,0.09,0.11,0.26,0.2,0.14,0.15,0.12,0.29,0.25,0.15,0.09,0.14,0.12,0.41,0.12,0.17,0.14,0.15,0.43,0.1,0.12,0.15,0.29,0.41,0.14,0.16,0.14,0.15,0.43,0.14,0.13,0.16,1.28,0.44,0.14,0.17,0.17,0.16,1.51,0.15,0.13,0.67,0.58,0.41,0.18,0.14,0.14,0.16,0.25,0.28,0.17,0.15,0.22,0.2,0.33,0.14,0.15,0.17,0.22,0.31,0.2,0.17,0.16,0.2,0.3,0.18,0.16,0.16,0.24,0.31,0.14,0.16,0.14,0.23,0.32,0.17,0.17,0.13,0.23,0.3,0.16,0.16,0.31,0.25,0.28,0.17,0.15,0.18,0.26,0.32,0.15,0.18,0.15,0.29,0.19,0.34,0.16,0.16,0.18,0.17,0.29,0.15,0.16,0.18,0.17,0.3,0.17,0.17,0.21,0.17,0.32,0.17,0.3,0.23,0.13,0.3,0.17,0.18,0.25,0.18,0.31,0.15,0.17,0.2,0.16,0.31,0.15,0.16,0.24,0.19,0.32,0.15,0.16,0.27,0.16,0.18,0.3,0.17,0.22,0.17,0.17,0.32,0.32,0.2,0.17,0.14,0.3,0.16,0.24,0.17,0.16,0.28,0.16,0.68,0.17,0.17,0.3,0.15,0.26,0.16,0.14,0.29,0.17,0.22,0.14,0.15,0.28,0.15,0.27,0.17,0.16,0.3,0.31,0.21,0.17,0.17,0.17,0.3,0.31,0.15,0.17,0.18,0.58,0.23,0.17,0.15,0.15,0.3,0.16,0.12,0.11,0.12,0.21,0.13,0.53,0.07,0.07,0.2,0.13,0.08,0.06,0.06,0.28,0.16,0.06,0.07,0.08,0.2,0.15,0.06,0.07,0.06,0.2,0.18,0.07,0.1,0.08,0.19,0.15,0.06,0.1,0.08,0.09,0.43,0.06,0.08,0.05,0.07,0.28,0.08,0.05,0.06,0.2,0.26,0.07,0.05,0.06,0.08,0.37,0.08,0.09,0.07,0.06,0.27,0.06,0.07,0.06,0.09,0.22,0.06,0.09,0.09,0.08,0.32,1.34,0.07,0.07,0.07,0.12,0.21,0.09,0.08,0.13,0.13,0.2,0.06,0.05,0.05,0.11,0.22,0.06,0.1,0.08,0.12,0.23,0.08,0.07,0.07,0.2,0.22,0.07,0.05,0.08,0.11,0.19,0.06,0.09,0.08,0.16,5.01,0.19,0.09,0.11,0.18,0.24,0.1,0.09,0.08,0.15,0.07,0.22,0.07,0.06,0.13,0.13,0.21,0.05,0.06,0.15,0.07,0.2,0.05,0.07,0.12,0.07,0.19,0.05,0.17,0.2,0.33,0.19,0.08,0.12,0.1,0.05,0.2,0.07,0.05,0.14,0.05,0.18,0.07,0.05,0.14,0.14,0.69,1.53,0.21,0.28,0.42,0.12,0.22,0.08,0.19,0.06,0.05,0.2,0.08,0.18,0.05,0.07,0.2,0.14,0.11,0.05,0.08,0.19,0.06,0.1,0.1,0.1,0.21,0.06,0.09,0.05,0.06,0.2,0.05,0.12,0.04,0.06,0.2,0.06,0.17,0.05,0.07,0.18,0.05,0.11,0.06,0.06,0.21,0.12,0.12,0.06,0.05,0.06,0.2,0.15,0.05,0.05,0.08,0.22,0.14,0.05,0.05,0.06,0.21,0.12,0.08,0.07,0.07,0.19,0.11,0.06,0.05,0.06,0.2,0.11,0.05,0.09,0.06,0.25,0.1,0.06,0.05,0.07,0.05,0.25,0.08,0.08,0.08,0.05,0.3,0.06,0.07,0.08,0.1,0.28,0.06,0.07,0.06,0.05,0.26,0.07,0.05,0.07,0.07,0.25,0.06,0.07,0.08,0.12,0.25,0.09,0.05,0.07,0.06,0.25,0.07,0.05,0.05,0.08,0.29,0.08,0.05,0.07,0.06,0.12,0.19,0.05,0.06,0.04,0.1,0.23,0.06,0.09,0.09,0.13,0.19,0.07,0.1,0.12,0.12,0.23,0.08,0.05,0.05,0.12,0.2,0.07,0.1,0.05,0.11,0.24,0.07,0.11,0.09,0.15,0.19,0.05,0.07,0.16,0.17,0.21,0.05,0.05,0.07,0.16,0.08,0.21,0.07,0.22,0.18,0.07,0.21,0.07,0.09,0.16,0.08,0.22,0.09,0.09,0.14,0.08,0.26,0.07,0.09,0.14,0.07,0.22,0.06,0.07,0.15,0.07,0.2,0.1,0.08,0.17,0.07,0.24,0.07,0.33,0.2,0.09,0.07,0.24,0.08,0.17,0.08,0.13,0.3,0.09,0.18,0.11,0.08,0.23,0.09,0.11,0.06,0.1,0.24,0.08,0.15,0.12,0.1,0.23,0.07,0.2,0.09,0.12,0.24,0.24,0.19,0.1,0.11,0.3,0.07,0.18,0.07,0.06,0.15,0.28,0.18,0.12,0.15,0.08,0.23,0.23,0.13,0.11,0.09,0.31,0.22,0.15,0.15,0.12,0.28,0.24,0.15,0.14,0.13,0.32,0.18,0.14,0.16,0.15,0.3,0.17,0.17,0.16,5.1,0.3,0.22,0.16,0.19,0.16,0.28,0.2,0.12,0.17,0.17,0.15,0.41,0.14,0.15,0.14,0.14,0.32,0.15,0.14,0.16,0.23,0.34,0.14,0.15,0.21,0.26,0.4,0.15,0.14,0.13,0.17,0.41,0.16,0.16,0.15,0.17,0.32,0.14,0.17,0.15,0.15,0.16,0.29,0.12,0.15,0.15,0.2,0.3,0.15,0.17,0.22,0.23,3.35,0.15,0.14,0.15,0.19,0.28,0.15,0.19,0.15,0.22,0.3,0.16,0.17,0.16,0.18,0.3,0.17,0.14,0.16,0.21,0.27,0.19,0.15,0.13,0.23,0.27,0.17,0.12,0.26,0.22,0.16,0.28,0.16,0.15,0.2,0.15,0.28,0.14,0.12,0.19,0.14,0.28,0.17,0.16,0.18,0.12,0.3,0.13,0.14,0.2,0.14,0.28,0.17,0.13,0.21,0.13,0.29,0.16,0.22,0.17,0.17,0.28,0.17,0.17,0.18,0.15,0.28,0.2,0.15,0.22,0.15,0.3,0.15,0.17,0.22,0.12,0.14,0.28,0.15,0.3,0.15,0.17,0.27,0.14,0.19,0.15,0.16,0.28,0.19,0.15,0.13,0.12,0.23,0.1,0.13,0.08,0.08,0.2,0.07,0.1,0.07,0.07,0.19,0.06,0.13,0.07,0.05,0.19,0.09,0.16,0.06,0.08,0.21,0.07,0.15,0.11,0.1,0.06,0.29,0.18,0.05,0.08,0.08,0.21,0.19,0.08,0.09,0.09,0.18,0.1,0.13,0.06,0.05,0.19,0.09,0.07,0.05,0.07,0.19,0.19,0.06,0.07,0.07,0.21,0.12,0.09,0.08,0.07,0.34,0.13,0.07,0.11,0.06,0.09,0.43,0.07,0.08,0.1,0.08,0.27,0.07,0.05,0.07,0.06,0.27,0.07,0.06,0.07,0.09,0.31,0.09,0.07,0.07,0.06,0.28,0.06,0.05,0.05,0.13,0.26,0.05,0.05,0.05,0.06,0.27,0.09,0.1,0.1,0.06,0.28,0.1,0.07,0.1,0.08,0.15,0.2,0.09,0.07,0.07,0.25,0.22,0.07,0.07,0.06,0.21,0.2,0.05,0.07,0.11,0.21,0.21,0.07,0.08,0.06,0.16,0.24,0.07,0.08,0.08,0.12,0.18,0.05,0.06,0.05,0.12,0.21,0.06,0.05,0.05,0.14,0.06,0.2,0.12,0.05,0.16,0.08,0.2,0.07,0.25,0.15,0.07,0.2,0.12,0.06,0.15,0.06,0.2,0.09,0.09,0.13,0.07,0.19,0.11,0.11,0.09,0.08,0.22,0.04,0.07,0.17,0.08,0.2,0.08,0.07,0.14,3.85,0.19,0.06,0.17,0.17,0.07,0.1,0.22,0.1,0.13,0.1,0.09,0.22,0.1,0.15,0.06,0.1,0.2,0.07,0.15,0.06,0.07,0.21,0.1,0.14,0.06,0.05,0.22,0.06,0.1,0.09,0.07,0.22,0.13,0.15,0.07,0.06,0.22,0.07,0.15,0.07,0.07,0.11,0.22,0.1,0.06,0.07,0.07,0.18,0.17,0.08,0.07,0.06,0.18,0.21,0.05,0.07,0.1,0.2,0.19,0.09,0.06,0.06,0.27,0.18,0.11,0.1,0.1,0.18,0.1,0.05,0.1,0.07,0.23,0.11,0.08,0.12,0.05,0.18,0.1,0.07,0.06,1.55,0.1,0.33,0.05,0.06,0.05,0.07,0.25,0.07,0.09,0.07,0.27,0.26,0.07,0.09,0.07,0.05,4.89,0.08,0.08,0.08,0.07,0.29,0.07,0.07,0.04,0.05,0.3,0.06,0.07,0.07,0.08,0.25,0.07,0.05,0.07,0.07,0.23,0.08,0.11,0.05,0.17,0.12,0.18,0.09,0.12,0.11,0.14,0.2,0.05,0.09,0.08,0.14,0.19,0.07,0.08,0.06,0.11,0.2,0.09,0.05,0.67,0.14,0.23,0.06,0.08,0.08,0.12,0.19,0.09,0.07,0.18,0.19,0.21,0.06,0.05,0.06,0.15,0.07,0.22,0.08,0.06,0.1,0.07,0.2,0.05,0.07,0.12,0.06,0.2,0.08,0.09,0.44,0.08,0.2,0.07,0.09,0.15,0.08,0.19,0.09,0.15,0.12,0.07,0.23,0.07,0.05,0.12,0.15,0.25,0.11,0.12,0.2,0.12,0.24,0.11,0.13,0.16,0.15,0.16,0.22,0.08,0.33,0.15,0.1,0.29,0.11,0.19,0.15,0.15,0.25,0.23,0.21,0.15,0.08,0.25,0.1,0.14,0.15,0.17,0.3,0.15,0.2,0.17,0.15,0.27,0.15,0.22,0.15,0.16,0.29,0.17,0.24,0.17,0.17,0.3,0.18,0.22,0.15,0.15,0.29,0.39,0.26,0.15,0.18,0.17,0.33,0.24,0.17,0.16,0.15,0.3,0.27,0.12,0.15,0.13,0.29,0.27,0.14,0.16,0.15,0.27,0.24,0.15,0.15,4.98,0.4,0.2,0.2,0.18,0.16,0.34,0.21,0.17,0.15,0.13,0.17,0.37,0.13,0.2,0.17,0.17,0.33,0.17,0.16,0.18,0.13,0.37,0.13,0.15,0.19,0.16,0.4,0.17,0.19,0.13,0.14,0.41,0.17,0.17,0.15,0.21,0.32,0.14,0.16,0.16,0.15,0.36,0.19,0.16,0.18,0.18,0.33,0.15,0.16,0.15,0.16,0.2,0.31,0.17,0.17,0.17,0.26,0.3,0.17,0.18,0.17,0.22,0.29,0.15,0.17,0.22,0.22,0.27,0.17,0.16,0.16,0.22,0.29,0.14,0.17,0.19,0.26,0.27,0.17,0.14,0.17,0.25,0.32,0.16,0.15,0.17,0.26,0.2,0.33,0.18,0.14,0.22,0.19,0.3,0.2,2.4,0.22,0.16,0.31,0.18,0.16,0.21,0.15,0.3,0.13,0.18,0.22,0.19,0.28,0.16,0.15,0.21,0.18,0.3,0.13,0.12,0.84,0.06,0.19,0.08,0.07,0.17,0.09,0.2,0.07,0.19,0.19,0.07,0.06,0.18,0.12,0.13,0.08,0.07,0.24,0.08,0.13,0.08,0.08,0.2,0.07,0.13,0.08,0.07,0.2,0.09,0.26,0.09,0.12,0.2,0.07,0.12,0.06,0.09,0.2,0.16,0.12,0.08,0.05,0.22,0.06,0.15,0.07,0.07,0.2,0.06,0.15,0.08,0.06,0.05,0.26,0.17,0.06,0.09,0.06,0.25,1.58,0.09,0.07,0.06,0.2,0.1,0.06,0.07,0.08,0.29,0.11,0.07,0.05,0.06,0.22,0.14,0.07,0.1,0.11,3.79,0.14,0.09,0.07,0.1,0.2,0.14,0.07,0.08,0.06,0.25,0.13,0.07,0.07,0.08,0.22,0.16,0.08,0.1,0.07,0.17,0.3,0.06,0.06,0.07,0.08,0.31,0.07,0.07,0.1,0.07,0.24,0.06,0.09,0.07,0.08,0.27,0.07,0.08,0.06,0.07,0.28,0.97,0.11,0.1,0.05,0.24,0.05,0.05,0.06,0.13,0.2,0.14,0.07,0.07,0.08,0.12,0.2,0.1,0.1,0.07,0.18,0.26,0.07,0.08,0.08,0.15,0.21,0.07,0.09,0.06,0.22,0.2,0.07,0.11,0.04,0.16,0.25,0.07,0.05,0.13,0.17,0.23,0.09,0.09,0.07,0.11,0.2,0.08,0.07,0.09,0.13,0.08,0.2,0.07,0.06,1.21,9.06,0.21,0.1,0.07,0.17,0.07,0.2,0.08,0.13,0.18,0.08,0.22,0.07,0.14,0.16,0.07,0.19,0.1,0.07,0.15,0.08,0.22,0.11,0.08,0.1,0.05,0.25,0.06,0.1,0.15,0.1,0.23,0.08,0.07,0.12,0.06,0.07,0.2,0.12,0.12,0.1,0.1,0.21,0.18,0.17,0.1,0.11,0.25,0.07,0.18,0.07,0.12,0.23,0.07,0.17,0.1,0.08,0.2,0.07,0.16,0.08,0.06,0.24,0.08,0.19,0.09,0.08,0.22,0.1,0.16,0.08,0.09,0.07,0.28,0.19,0.07,0.08,0.12,0.25,0.13,0.08,0.1,0.11,0.19,0.16,0.06,0.08,0.07,0.2,0.14,0.1,0.11,0.09,0.2,0.2,0.1,0.09,0.06,0.25,0.19,0.08,0.08,0.09,0.29,0.13,0.08,0.1,0.07,0.21,0.14,0.08,0.1,0.09,0.21,0.12,0.1,0.06,0.12,0.09,0.33,0.1,0.09,0.09,0.1,0.4,0.08,0.06,0.13,0.07,0.29,0.09,0.07,0.06,0.19,0.32,0.07,0.08,0.1,0.07,0.32,0.07,0.12,0.1,0.06,0.28,0.06,0.06,0.08,0.08,0.22,0.11,0.07,0.06,0.1,0.3,0.1,0.07,0.07,0.09,0.16,0.27,0.07,0.09,0.26,0.14,0.22,0.08,0.11,0.06,0.15,0.24,0.11,0.08,0.1,0.16,0.23,0.08,0.07,0.09,0.13,0.25,0.12,0.1,0.07,0.2,0.24,0.07,0.67,0.09,0.15,0.19,0.23,0.14,0.17,0.22,0.1,0.28,0.17,0.13,0.14,0.12,0.27,0.13,0.08,0.16,0.1,0.22,0.09,0.09,0.17,0.11,0.28,0.12,0.11,0.17,0.18,0.27,0.12,0.15,0.2,0.16,0.3,0.17,0.24,0.27,0.17,0.34,0.17,0.19,0.21,0.16,0.19,0.3,0.16,0.24,0.17,0.14,0.27,0.15,0.21,0.14,0.16,0.28,0.17,0.22,0.15,0.17,0.41,0.16,0.19,0.14,0.15,0.27,0.19,0.21,0.16,0.13,0.29,0.14,0.2,0.15,0.14,0.3,0.17,0.19,0.14,0.16,0.12,4.76,0.2,0.13,0.17,0.15,0.31,0.22,0.16,0.15,0.17,0.28,0.23,0.15,0.17,0.14,0.31,0.18,0.15,0.15,0.16,0.27,0.21,0.14,0.15,0.16,0.3,0.21,0.15,0.17,0.16,0.27,0.21,0.15,0.14,0.17,0.27,0.18,0.15,0.14,0.15,0.16,0.35,0.14,0.17,0.15,0.18,0.39,0.79,0.16,0.15,0.15,0.32,0.16,0.2,0.17,0.13,0.33,0.15,0.14,0.16,0.13,0.34,0.15,0.15,0.15,0.12,0.43,0.16,0.15,0.15,0.17,0.33,0.15,0.19,0.17,0.19,0.43,0.2,0.15,0.15,0.15,0.22,0.3,0.14,0.17,0.15,0.21,0.29,0.16,0.14,0.14,0.22,0.28,0.13,0.13,0.13,0.2,0.28,0.15,0.14,0.13,0.17,0.27,0.12,0.15,0.19,0.34,0.28,0.12,0.1,0.08,0.17,0.22,0.1,0.08,0.05,0.17,0.07,0.22,0.08,0.06,0.1,0.07,0.18,0.07,0.05,0.17,0.07,0.19,0.07,0.07,0.11,0.1,0.22,0.1,0.15,0.16,0.11,1.5,0.07,0.07,0.13,0.06,0.21,0.06,0.05,0.15,0.06,0.2,0.07,0.06,0.18,0.05,0.2,0.07,0.06,0.17,0.04,0.2,0.06,0.32,0.13,0.12,0.05,0.58,0.18,0.13,0.08,0.06,0.24,0.05,0.13,0.05,0.06,0.18,0.08,0.1,0.04,0.07,0.21,0.05,0.1,0.05,0.05,0.19,0.07,0.19,0.1,0.05,0.18,0.06,0.14,0.07,0.06,0.17,0.16,0.1,0.07,0.33,0.2,0.05,0.17,0.05,0.05,0.07,0.21,0.17,0.05,0.07,0.07,0.2,0.1,0.05,0.05,0.04,0.19,0.08,0.05,0.05,0.06,0.18,0.15,0.05,0.07,0.09,0.3,0.11,0.05,0.1,0.05,0.2,0.15,0.06,0.06,0.07,0.2,0.16,0.07,0.1,0.05,0.21,0.16,0.05,0.07,0.07,0.18,0.21,0.08,0.06,0.05,0.05,0.29,0.07,0.05,0.07,0.13,0.25,0.06,0.06,0.17,0.04,0.25,0.08,0.07,0.05,0.05,0.25,0.06,0.06,0.05,0.07,0.25,0.05,0.06,0.05,0.06,0.24,0.06,0.05,0.06,0.07,0.26,0.07,0.06,0.05,0.15,0.24,0.16,0.07,0.06,0.06,0.19,0.21,0.07,0.07,0.1,0.19,0.18,0.06,0.06,0.07,0.1,0.19,0.05,0.06,0.04,0.17,0.19,0.06,0.06,0.04,0.13,0.2,0.05,0.05,0.15,0.1,0.19,0.07,0.06,0.05,0.14,0.21,0.09,0.06,0.05,0.13,0.06,0.19,0.09,0.05,0.22,0.07,0.21,0.07,0.07,0.09,0.07,0.19,0.05,0.06,0.11,0.07,0.2,0.07,0.13,0.1,0.06,0.17,0.05,0.06,0.12,0.06,0.2,0.07,0.06,0.12,0.04,0.18,0.06,0.06,0.11,0.05,3.67,1.29,0.06,0.16,0.07,0.07,0.2,0.07,0.15,0.05,0.06,0.18,0.13,0.14,0.07,0.07,0.21,0.05,0.17,0.04,0.06,0.22,0.05,0.12,0.06,0.07,0.18,0.05,0.12,0.08,0.06,0.2,0.1,0.1,0.07,0.08,0.19,0.06,0.12,0.06,0.06,0.08,0.32,0.16,0.07,0.1,0.07,0.2,0.11,0.07,0.07,0.07,0.2,0.13,0.05,0.05,0.06,0.2,0.09,0.04,0.05,0.07,0.22,0.16,0.08,0.05,0.07,0.18,0.15,0.06,0.07,0.06,0.24,0.12,0.06,0.05,0.24,0.22,0.09,0.07,0.07,0.11,0.08,0.26,0.07,0.05,0.06,0.05,0.27,0.04,0.05,0.04,0.06,0.22,0.06,0.06,0.05,0.04,0.26,0.07,2.68,0.08,0.16,0.23,0.05,0.07,0.06,0.05,0.26,0.06,0.09,0.07,0.1,0.25,0.05,0.04,0.07,0.11,0.29,0.15,0.16,0.13,0.07,0.08,0.19,0.05,0.14,0.12,0.1,0.2,0.11,0.09,0.2,0.11,0.2,0.08,0.15,0.1,0.15,0.23,0.09,0.1,0.1,0.2,0.25,0.12,0.11,0.12,0.16,0.27,0.14,0.15,0.13,0.19,0.26,0.15,0.13,0.12,0.17,0.12,1.06,0.14,0.2,0.2,0.12,0.27,0.12,0.13,0.19,0.13,0.27,0.13,0.15,0.25,0.12,0.27,0.14,0.13,0.19,0.13,0.27,0.12,0.13,0.2,0.12,0.27,0.14,0.14,0.17,0.14,0.26,0.13,0.16,0.19,0.12,0.27,0.14,0.13,0.18,0.12,0.15,0.27,0.12,0.16,0.12,0.15,0.26,0.13,0.16,0.12,0.13,0.27,0.13,0.24,0.13,0.14,0.26,0.13,0.2,0.12,0.13,0.29,0.21,0.2,0.13,0.15,0.27,0.13,0.2,0.14,0.13,0.27,0.17,0.16,0.14,0.14,0.28,0.15,0.19,0.14,0.13,0.14,0.27,0.18,0.13,0.13,0.14,0.27,0.2,0.14,0.14,0.12,0.35,0.21,0.15,0.15,0.12,0.27,0.27,0.15,0.15,0.14,0.27,0.2,0.13,0.15,0.13,0.29,0.2,0.13,0.13,0.13,0.27,0.24,0.13,0.15,0.13,0.27,0.17,0.14,0.13,0.3,0.23,0.31,0.12,0.14,0.16,0.12,0.32,0.14,0.15,0.14,0.15,0.31,0.15,0.13,0.15,0.14,0.32,0.14,0.12,0.11,0.1,0.29,0.06,0.04,0.07,0.05,0.25,0.06,0.07,0.05,0.13,0.23,0.05,0.05,0.07,0.05,0.22,0.12,0.08,0.03,0.05,0.15,0.17,0.04,0.05,0.05,0.1,0.15,0.06,0.06,0.05,0.07,0.19,0.06,0.05,0.06,0.1,0.2,0.05,0.83,0.12,0.09,0.18,0.07,0.05,0.06,0.09,0.2,0.05,0.08,0.07,0.07,0.18,0.06,0.05,0.06,0.1,0.06,0.18,0.04,0.05,0.14,0.05,4.9,0.05,0.06,0.12,0.04,0.19,0.04,0.11,0.15,0.04,0.2,0.05,0.03,0.11,0.07,0.22,0.05,0.05,0.1,0.05,0.17,0.05,0.06,0.07,0.04,0.19,0.06,0.05,0.1,0.06,0.18,0.08,0.06,0.1,0.06,0.18,0.05,0.3,0.1,0.07,0.05,0.21,0.06,0.11,0.05,0.05,0.19,0.06,0.09,0.07,0.05,0.21,0.08,0.16,0.06,0.06,0.19,0.05,5.76,0.18,0.05,0.18,0.05,0.11,0.05,0.06,0.19,0.11,0.09,0.07,0.06,0.17,0.07,0.1,0.05,0.05,0.2,0.07,0.08,0.06,0.06,0.05,0.2,0.1,0.08,0.05,0.09,0.21,0.12,0.03,0.05,0.05,0.2,0.08,0.08,0.05,0.05,1.31,0.1,0.05,0.07,0.05,0.2,0.12,0.09,0.07,0.06,0.19,0.11,0.05,0.03,0.07,0.17,0.11,0.05,0.07,0.05,0.2,0.16,0.04,0.05,0.05,0.05,0.25,0.07,0.06,0.06,0.12,0.22,0.07,0.05,0.07,0.05,0.27,1.9,0.07,0.07,0.05,0.25,0.07,0.06,0.05,0.07,0.32,0.06,0.08,0.07,0.05,0.23,0.07,0.06,0.06,0.05,0.24,0.05,0.07,0.07,0.15,0.15,0.2,0.07,0.07,0.05,0.16,0.22,0.06,0.08,0.08,0.07,0.2,0.08,0.05,0.07,0.13,0.23,0.05,0.06,0.06,0.12,0.19,0.06,0.1,0.06,0.1,0.2,0.07,0.06,0.1,0.1,0.2,0.06,0.07,0.07,0.12,0.21,0.06,0.07,0.07,0.19,0.05,0.22,0.07,0.08,0.2,0.05,0.21,0.05,0.08,0.16,0.06,0.19,0.08,0.05,0.14,0.07,0.22,0.08,0.15,0.1,0.09,0.22,0.08,0.05,0.12,0.05,0.19,0.09,0.07,0.14,0.07,0.22,0.05,0.05,0.12,0.06,0.19,0.07,0.12,0.14,0.1,0.07,0.2,0.05,0.13,0.07,0.07,0.2,0.17,0.15,0.07,0.05,0.25,0.07,0.12,0.07,0.08,0.19,0.05,0.14,0.05,0.05,0.18,0.07,0.15,0.05,0.06,0.18,0.05,0.11,0.05,0.05,0.21,0.07,0.1,0.09,0.05,0.19,0.11,0.1,0.06,0.07,0.19,0.07,0.15,0.05,0.06,0.06,0.22,0.14,0.07,0.07,0.06,0.22,0.15,0.09,0.09,0.1,0.2,0.18,0.06,0.09,0.1,0.22,0.15,0.05,0.1,0.1,0.29,0.17,0.05,0.06,0.08,0.23,0.1,0.07,0.13,0.19,0.24,0.1,0.09,0.1,0.07,0.15,0.22,0.07,0.12,0.1,0.12,0.36,0.14,0.12,0.12,0.12,0.27,0.12,0.1,0.09,0.18,0.31,0.15,0.18,0.16,0.13,0.34,0.15,0.17,0.15,0.15,0.37,0.15,0.14,0.15,0.13,0.34,0.14,0.16,0.13,0.16,0.38,0.15,0.16,0.17,0.14,3.45,0.52,0.13,0.15,0.22,0.18,0.32,0.15,0.14,0.13,0.19,0.3,0.14,0.14,1.61,0.2,0.3,0.17,0.15,0.16,0.2,0.3,0.15,0.15,0.14,0.22,0.27,0.15,0.15,0.15,0.21,0.28,0.12,0.14,0.22,0.17,0.28,0.16,0.15,0.15,0.18,0.27,0.14,0.14,0.15,0.2,0.14,0.28,0.15,0.15,0.22,0.15,0.27,0.14,0.14,0.65,0.15,0.27,0.16,0.15,0.18,0.14,0.27,0.14,0.2,0.18,0.16,9.64,0.54,0.16,0.18,0.16,0.27,0.13,0.14,0.17,0.15,0.27,0.15,0.15,1.32,0.13,0.13,0.32,0.15,0.28,0.14,0.15,0.28,0.12,0.2,0.14,0.19,0.26,0.22,0.2,0.14,0.12,0.71,0.12,0.19,0.13,0.19,0.27,0.17,0.22,0.13,0.13,0.3,0.17,0.2,0.15,0.14,0.27,0.15,0.24,0.13,0.14,0.25,0.17,0.21,0.15,0.13,0.14,0.39,0.24,0.13,0.14,0.13,0.29,0.16,0.07,0.07,0.06,0.21,1.1,0.06,0.06,0.07,0.2,0.12,0.07,0.07,0.07,0.22,0.12,0.07,0.06,0.07,0.18,0.11,0.07,0.07,0.06,0.12,0.24,0.05,0.06,0.06,0.07,0.28,0.04,0.09,0.08,0.04,0.3,0.06,0.05,0.05,0.06,0.27,0.07,0.05,0.09,0.09,0.32,0.08,0.07,0.05,0.05,0.26,0.06,0.04,0.07,0.24,0.22,0.06,0.09,0.07,0.05,0.26,0.07,0.05,0.08,0.05,0.25,0.06,0.07,0.06,0.07,0.12,0.2,0.06,0.05,0.06,0.13,0.18,0.06,0.09,0.07,0.17,0.2,0.05,0.08,0.18,0.15,0.2,0.07,0.09,0.35,0.14,0.19,0.07,0.07,0.09,0.15,0.21,0.07,0.08,0.1,0.13,0.2,0.07,0.11,0.1,0.12,0.09,0.18,0.11,0.06,0.11,0.07,0.21,0.07,0.17,0.14,0.11,0.21,0.05,0.06,0.12,0.06,0.21,0.06,0.08,0.16,0.04,0.2,0.07,0.1,0.16,0.06,0.21,0.09,0.08,0.15,0.06,0.2,0.11,0.06,0.2,0.06,0.22,0.06,0.2,0.13,0.09,0.05,0.2,0.35,0.13,0.08,0.09,0.23,0.06,0.12,0.08,0.07,0.21,0.08,0.1,0.06,0.06,0.18,0.06,0.15,0.06,0.05,0.2,0.06,0.12,0.08,0.06,0.19,0.12,0.1,0.05,0.05,0.21,0.07,0.11,0.06,0.08,0.08,0.22,0.13,0.07,0.06,0.1,0.2,0.1,0.06,0.05,0.05,0.19,0.15,0.06,0.05,0.05,0.19,0.1,0.07,0.06,0.04,0.26,0.14,0.06,0.06,0.04,0.19,0.19,0.07,0.05,0.07,0.18,0.16,0.06,0.07,0.06,0.07,0.25,0.07,0.07,0.07,0.68,0.31,0.07,0.05,0.08,0.07,0.23,0.07,0.05,0.05,0.14,4.83,0.17,0.07,0.08,0.06,0.28,0.07,0.06,0.06,0.05,0.27,0.06,0.09,0.07,0.07,0.31,0.06,0.13,0.06,0.07,0.09,0.24,0.07,0.06,0.07,0.12,0.19,0.05,0.05,0.11,0.11,0.19,0.06,0.06,0.06,0.1,0.2,0.05,0.07,0.07,0.19,0.22,0.05,0.07,0.07,0.11,0.19,0.07,0.07,0.05,0.17,0.21,0.06,0.07,0.05,0.15,0.18,0.07,0.08,0.16,0.15,0.06,0.23,0.05,0.12,0.17,0.1,0.21,0.06,0.06,0.09,0.05,0.19,0.05,0.08,0.1,0.06,0.24,0.1,0.1,0.12,0.08,0.22,0.1,0.07,0.11,0.07,0.2,0.07,0.22,0.09,0.3,0.4,0.23,0.22,0.12,0.11,0.12,0.23,0.1,0.14,0.1,0.1,0.22,0.1,0.14,0.08,0.12,0.2,0.07,0.14,0.12,0.1,0.21,0.22,0.48,0.46,0.43,0.45,0.38,19.23,0.08,0.06,0.2,0.05,0.16,0.11,0.11,0.21,0.07,0.15,0.05,0.05,0.78,0.07,0.12,0.06,0.1,0.07,0.2,0.14,0.09,0.06,0.05,0.25,0.23,0.11,0.05,0.05,0.29,0.19,0.07,19.07,0.24,2.17,0.17,0.13,0.15,14.75,7.9,17.55,0.3,0.19,19.12,0.44,0.23,19.3,0.28,0.14,19.3,0.3,0.29,19.18,0.19,0.47,0.24,0.16,18.96,0.3,19.02,19.55,0.37,0.17,4.15,33.91,0.56,0.14,0.2,0.15,0.13,0.32,0.14,0.62,0.15,20.4,0.34,0.42,0.18,19.86,0.18,0.64,0.17,0.17,0.19,0.19,0.34,0.14,0.17,0.17,0.26,0.32,0.19,0.15,0.16,0.47,0.85,0.3,0.17,0.17,0.22,0.4,19.02,0.3,19,0.39,0.22,0.32,0.14,19.19,19.69,0.36,19.29,0.16,0.33,0.15,0.23,0.33,0.17,0.17,0.27,0.23,0.18,0.3,0.17,0.21,0.27,0.17,0.31,0.17,0.18,0.27,0.17,0.31,0.16,0.17,0.21,0.15,0.29,0.19,0.15,0.21,0.16,0.28,0.19,0.19,0.22,0.16,0.3,0.16,0.24,0.22,0.22,0.31,0.17,0.16,0.23,0.92,0.15,0.34,0.14,0.21,0.16,0.16,0.32,0.15,0.22,0.16,0.18,0.31,0.16,0.22,0.15,0.16,0.3,0.14,0.22,0.17,0.17,0.28,0.23,0.22,0.16,0.15,0.29,0.19,0.2,0.14,0.17,0.17,0.32,0.21,0.15,0.16,0.17,0.36,0.23,0.13,0.15,0.15,0.28,0.22,0.13,0.08,0.07,0.24,0.17,0.08,0.06,0.07,0.23,0.15,0.07,0.06,0.12,0.21,0.13,0.5,0.26,0.07,0.21,0.13,0.1,0.09,0.1,0.19,0.1,0.09,0.07,0.09,0.06,0.28,0.09,0.08,0.07,0.07,0.37,0.09,0.11,0.07,0.15,0.27,0.07,0.09,0.08,0.07,3.34,0.08,0.09,0.1,0.14,0.27,0.07,0.08,0.07,0.14,0.27,0.07,0.08,0.07,0.17,0.41,0.06,0.08,0.08,0.25,19.37,0.41,0.05,0.08,0.1,0.12,0.22,0.06,0.06,0.05,0.11,0.2,0.12,0.1,0.05,0.12,0.2,0.06,0.06,0.07,0.14,0.2,19.09,0.1,0.06,0.21,0.19,0.05,0.05,0.05,0.12,0.18,0.05,0.09,0.14,0.14,0.04,0.24,0.06,0.06,0.15,0.07,0.22,0.08,0.07,0.11,0.05,0.18,0.06,0.06,0.11,0.45,0.2,0.08,0.05,0.12,0.05,0.2,0.09,0.07,0.12,0.05,0.2,0.07,0.1,0.15,0.05,0.21,0.07,0.06,0.13,0.07,0.21,0.07,0.05,0.15,0.05,0.08,0.25,0.05,0.13,0.09,0.07,0.25,0.07,0.16,0.08,0.05,0.18,0.05,0.12,0.07,0.06,0.2,0.12,0.17,0.06,0.08,0.2,0.09,0.12,0.05,0.08,0.2,0.08,0.1,0.05,0.07,0.07,0.22,0.11,0.05,0.07,0.06,0.21,0.1,0.06,0.07,0.07,0.18,0.17,0.06,0.06,0.05,0.28,0.13,0.07,0.05,0.04,0.19,0.1,0.05,0.06,0.07,0.21,0.17,0.07,0.06,0.07,0.19,0.17,0.09,0.07,0.07,0.05,0.38,0.07,0.05,0.06,0.06,0.27,0.07,0.08,0.06,0.15,0.22,0.09,0.06,0.06,0.05,0.23,0.05,0.07,0.08,0.07,0.25,0.09,0.05,0.05,0.05,0.17,0.16,0.05,0.05,0.06,0.11,0.21,0.06,0.07,0.07,0.1,0.2,0.08,0.06,0.18,0.11,0.19,0.07,0.05,0.08,0.12,0.2,0.07,0.07,0.07,0.15,0.25,0.06,0.06,0.09,0.12,0.18,0.08,0.07,0.06,0.16,0.07,0.2,0.05,0.05,0.09,0.08,0.21,0.05,0.12,0.1,0.05,0.2,0.09,0.07,0.1,0.07,0.2,0.05,0.05,0.1,0.05,0.19,0.05,0.07,0.13,0.1,0.23,0.09,1.94,0.1,0.08,0.2,0.07,0.08,0.11,0.07,0.07,0.22,0.12,0.12,0.09,0.08,0.2,0.08,0.12,0.08,0.05,0.18,0.12,0.12,0.07,0.06,0.2,0.05,0.14,0.05,0.08,0.17,0.07,0.23,0.06,0.06,0.21,0.07,0.12,0.08,0.07,0.19,0.11,0.11,0.08,0.07,0.21,0.06,0.1,0.06,0.07,0.07,0.23,0.12,0.08,0.05,0.06,0.18,0.11,0.08,0.06,0.04,0.18,0.16,0.06,0.04,0.07,0.18,0.16,0.08,0.1,0.06,0.3,0.14,0.11,0.07,0.08,0.19,0.15,0.1,0.09,0.07,0.22,0.28,0.1,0.1,0.11,0.25,0.15,0.1,0.1,0.12,0.08,0.33,0.11,0.11,0.12,0.14,0.31,0.12,0.15,0.14,0.25,0.32,0.12,0.17,0.16,0.15,0.37,0.14,0.16,0.16,0.16,4.97,0.25,0.14,0.13,0.14,0.33,0.14,0.14,0.12,0.14,0.37,0.14,0.15,0.15,0.15,0.24,0.3,0.18,0.15,0.23,0.22,0.27,0.17,0.15,0.14,0.26,0.3,0.13,0.15,0.14,0.64,2.23,0.12,0.15,0.14,0.21,0.27,0.15,0.14,0.16,0.44,0.27,0.13,0.15,0.16,0.23,0.28,0.16,2.99,0.9,0.2,0.25,0.17,0.14,0.15,0.19,0.16,0.28,0.13,0.17,0.23,0.17,0.27,0.15,0.14,0.24,0.16,0.28,0.13,0.13,0.21,0.12,0.27,0.14,0.13,0.17,0.15,0.27,0.13,0.21,0.2,0.13,0.29,0.14,0.16,0.2,0.14,0.31,0.13,0.12,0.22,0.13,0.15,0.29,0.15,0.21,0.14,0.15,0.28,0.14,0.19,0.16,0.14,0.3,0.14,0.25,0.15,0.14,0.29,0.23,0.22,0.21,0.17,0.28,0.18,0.25,0.17,0.15,0.3,0.16,0.2,0.15,0.17,0.3,0.13,0.24,0.14,0.13,0.29,0.14,0.2,0.15,0.15,0.14,0.27,0.2,0.13,0.14,0.15,0.36,0.24,0.13,0.12,0.15,0.23,0.15,0.1,0.09,0.08,0.19,0.13,0.05,0.06,0.09,0.2,0.1,0.07,0.06,0.05,0.21,0.13,0.05,0.06,0.08,0.2,0.13,0.06,0.05,0.06,0.29,0.1,0.08,0.06,0.04,0.05,0.26,0.05,0.07,0.05,0.05,0.25,0.08,0.05,0.07,0.08,0.26,0.05,0.05,0.08,0.07,0.25,0.05,1.84,0.07,0.07,0.27,0.05,0.08,0.07,0.16,0.25,0.08,0.06,0.08,0.05,0.25,0.07,0.07,0.06,0.05,0.14,0.21,0.05,0.23,0.08,0.12,0.24,0.05,0.05,0.05,0.19,0.22,0.08,0.06,0.05,0.12,0.2,0.05,0.05,0.18,0.12,0.21,0.07,0.07,0.11,0.14,0.22,0.07,0.07,0.06,0.1,0.21,0.05,0.07,0.07,0.11,0.19,0.08,0.1,0.07,0.15,0.19,0.07,0.06,0.06,0.11,0.07,0.22,0.06,0.16,0.15,0.06,0.21,0.06,0.06,0.12,0.08,0.19,0.08,0.09,0.14,0.09,0.18,2.11,0.06,0.13,0.05,0.19,0.09,0.07,0.18,0.1,0.2,0.1,0.08,0.15,0.05,0.06,0.18,0.11,0.13,0.05,0.1,0.21,0.07,0.13,0.08,0.07,0.22,0.1,0.1,0.09,0.07,0.22,0.07,0.17,0.07,0.05,0.2,0.06,0.12,0.05,0.06,0.18,0.06,0.12,0.08,0.07,0.2,0.13,0.15,0.09,0.06,0.22,0.06,0.11,0.1,0.06,0.07,0.18,0.15,0.05,0.07,0.1,0.18,0.11,0.06,0.05,0.05,0.2,0.19,0.07,0.09,0.08,0.2,0.13,0.08,0.04,0.07,0.27,0.1,0.06,0.06,0.07,0.21,0.1,0.05,0.07,0.04,0.17,0.12,0.07,0.04,0.05,2.79,1.24,0.05,0.05,0.05,0.05,0.36,0.05,0.07,0.12,0.05,0.27,0.05,0.06,0.05,0.17,0.25,0.07,0.06,0.05,0.07,0.26,0.05,0.07,0.11,0.1,0.32,0.08,0.08,0.07,0.05,0.26,0.09,0.06,0.08,0.06,0.28,0.07,0.08,0.06,0.07,0.15,4.86,1.15,0.09,0.17,0.15,0.23,0.09,0.06,0.1,0.14,0.19,0.07,0.07,0.09,0.12,0.21,0.06,0.08,0.07,1.23,0.19,0.05,0.06,0.05,0.1,0.19,0.06,0.06,0.07,0.13,0.25,0.12,0.11,0.17,0.14,0.08,0.22,0.08,0.09,0.11,0.11,0.25,0.07,0.12,0.13,0.09,0.24,0.07,0.08,0.19,0.07,0.22,0.06,0.05,0.16,0.06,0.22,0.06,0.07,0.13,0.08,0.24,0.07,0.15,0.15,0.08,0.2,0.08,0.08,0.11,0.09,0.19,0.08,0.09,0.12,0.05,0.09,0.2,0.07,0.14,0.07,0.12,0.22,0.05,0.13,0.06,0.1,0.2,1.46,0.18,0.12,0.07,0.22,0.17,0.16,0.08,0.07,0.23,0.09,0.23,0.08,0.07,0.22,0.06,0.14,0.09,0.09,0.21,0.09,0.12,0.08,0.06,0.1,0.23,0.18,0.11,0.12,0.08,0.2,0.2,0.11,0.1,0.14,0.29,0.14,0.15,0.15,0.12,0.24,0.27,0.14,0.13,0.14,0.28,0.18,0.15,0.19,0.19,0.25,0.22,0.15,0.16,0.15,0.26,0.28,0.15,0.18,0.15,0.15,0.37,0.17,0.55,0.17,0.26,0.33,0.19,0.19,0.17,0.16,0.34,0.19,0.15,0.18,0.15,0.34,0.2,0.16,0.14,1.6,0.39,0.15,0.14,0.15,0.17,0.22,0.27,0.17,0.15,0.16,0.19,0.31,0.17,0.22,0.3,0.25,0.28,0.2,0.15,0.14,0.21,0.3,0.13,0.16,0.15,0.19,0.27,0.15,0.16,0.13,0.25,0.3,0.15,0.15,0.14,0.23,0.16,0.28,0.15,0.14,1.51,0.17,0.28,0.15,0.22,0.2,0.16,0.28,0.15,0.14,0.19,0.15,0.3,0.14,0.15,0.19,0.17,0.3,0.16,0.17,1.54,0.17,0.3,0.15,0.14,0.25,0.15,0.29,0.17,0.14,0.22,0.15,0.16,0.3,0.2,0.2,0.15,0.15,0.3,0.15,0.23,0.16,0.16,0.27,0.16,0.21,0.14,0.18,0.29,0.13,0.25,0.16,0.13,0.27,0.14,0.2,0.13,0.16,0.28,0.15,0.2,0.45,0.16,0.28,0.27,0.21,0.17,0.15,0.15,0.29,0.24,0.15,0.13,0.14,0.29,0.23,0.2,0.13,0.16,0.31,0.22,0.12,0.13,0.17,0.29,0.2,0.08,0.09,0.11,0.22,0.19,0.07,0.05,0.07,0.29,0.12,0.05,0.07,0.08,0.2,0.13,0.07,0.07,0.07,0.18,0.11,0.08,0.07,0.05,0.06,5.19,0.08,0.09,0.07,0.04,0.23,0.07,0.03,0.07,0.05,0.23,0.07,0.07,0.07,0.13,0.22,0.05,0.07,0.11,0.07,0.26,0.06,0.08,0.06,0.06,0.23,0.08,0.05,0.06,0.07,0.25,0.12,0.05,0.07,0.05,0.24,0.22,0.07,0.05,0.06,0.12,0.18,0.08,0.06,0.12,0.11,0.22,0.07,0.06,0.09,0.1,0.2,0.07,0.08,0.08,0.12,0.19,0.06,0.05,0.06,0.1,0.18,0.08,0.05,0.06,0.13,0.21,0.08,0.1,0.07,0.11,0.09,0.22,0.08,0.15,0.12,0.05,0.19,0.07,0.05,0.12,0.05,0.22,0.07,0.09,0.16,0.07,0.2,0.06,0.06,0.11,0.06,0.19,0.06,0.05,0.14,0.07,0.2,0.06,0.05,0.12,0.06,0.23,0.07,0.13,0.12,0.06,0.07,0.23,0.07,0.12,0.06,0.07,0.2,0.07,0.12,0.06,0.07,0.22,0.07,0.1,0.08,0.05,0.17,0.08,0.15,0.05,0.08,0.2,0.04,0.12,0.06,0.47,0.95,0.14,0.1,0.05,0.04,0.17,0.09,0.16,0.07,0.08,0.09,0.22,0.15,0.07,0.06,0.05,0.19,0.13,0.08,0.07,0.08,0.25,0.15,0.06,0.07,0.07,0.21,0.09,0.05,0.06,0.08,0.24,0.13,0.07,0.09,0.1,0.19,0.12,0.05,0.06,0.07,0.12,0.17,0.05,0.07,0.05,0.07,0.25,0.06,0.09,0.05,0.07,0.27,0.08,0.06,0.08,0.06,0.27,0.06,0.09,0.06,0.1,0.27,0.07,0.09,0.07,0.07,0.31,0.06,0.07,0.08,0.08,0.31,0.1,0.07,0.07,0.07,0.25,0.07,0.06,0.07,0.09,0.1,0.22,0.07,0.08,0.06,0.1,0.18,0.06,0.08,0.11,0.12,0.22,0.09,0.07,0.08,0.11,0.2,0.07,0.06,0.09,0.13,0.23,0.05,0.07,0.09,0.1,0.2,0.07,0.05,0.07,0.12,0.25,0.11,0.04,0.08,0.17,0.1,0.2,0.06,0.12,0.14,0.07,0.19,0.06,0.05,0.22,0.06,0.22,0.07,0.05,0.11,0.08,0.24,0.07,0.06,0.11,0.07,0.2,0.06,0.08,0.11,0.11,0.24,0.1,0.07,0.12,0.07,0.21,0.07,0.12,0.11,0.09,0.05,0.22,0.06,0.11,0.05,0.06,0.2,0.09,0.13,0.05,0.07,0.18,0.09,0.13,0.05,0.07,0.19,0.07,0.13,0.07,0.05,0.19,0.1,0.11,0.05,0.09,0.25,0.1,0.12,0.08,0.07,0.2,0.06,0.11,0.07,0.06,0.07,0.19,0.12,0.09,0.07,0.09,0.2,0.11,0.07,0.06,0.05,0.22,0.29,0.09,0.07,0.08,0.21,0.17,0.07,0.11,0.08,0.25,0.25,0.13,0.13,0.15,0.26,0.15,0.09,0.13,0.1,0.25,0.17,0.1,0.15,0.08,0.05,0.3,0.11,0.1,0.11,0.12,3.9,0.15,0.13,0.13,0.12,0.34,0.12,0.11,0.15,0.2,0.28,0.14,0.2,0.14,0.14,0.33,0.14,0.14,0.15,0.13,0.31,0.18,0.15,0.13,0.15,0.32,0.14,0.18,0.13,0.14,0.38,0.12,0.16,0.15,0.15,0.17,0.3,0.14,0.15,0.2,0.25,0.28,0.16,0.17,0.16,0.22,0.29,0.17,0.12,0.14,0.19,0.28,0.15,0.16,0.14,0.2,0.28,0.15,0.13,0.15,0.2,0.28,0.14,0.13,0.15,0.18,0.29,0.14,0.19,0.21,0.18,0.16,0.3,0.14,0.13,0.18,0.15,0.28,0.16,0.17,0.19,0.15,0.3,0.14,0.15,0.21,0.15,0.34,0.14,0.15,0.23,0.15,0.28,0.15,0.15,0.18,0.17,0.26,0.16,0.2,0.26,0.12,0.27,0.17,0.14,0.25,0.15,0.12,0.26,0.13,0.18,0.13,0.15,0.27,0.14,0.2,0.14,0.15,0.26,0.15,0.2,0.16,0.13,0.27,0.17,0.2,0.15,0.16,0.3,0.23,0.22,1.71,0.15,0.29,0.13,0.21,0.14,0.17,0.37,0.2,0.24,0.18,0.16,0.2,0.31,0.23,0.15,0.17,0.15,0.27,0.29,0.63,0.15,0.13,0.32,0.19,0.14,0.15,0.17,0.37,0.16,0.15,0.14,0.13,0.28,0.16,0.08,0.07,0.07,0.21,0.17,0.07,0.1,0.06,0.19,0.11,0.07,0.08,0.07,0.1,0.33,0.07,0.05,0.07,0.08,0.29,0.07,0.07,0.07,0.19,0.28,0.08,0.06,0.05,0.09,0.28,0.07,0.07,0.07,0.07,0.31,0.11,0.07,0.07,0.07,0.28,0.09,0.07,0.09,0.08,0.27,0.09,0.12,0.06,0.08,0.3,0.07,0.08,0.07,0.19,0.13,0.22,0.08,0.07,0.07,0.21,0.2,0.07,0.07,0.13,0.16,0.2,0.05,0.07,0.07,0.19,0.19,0.07,0.07,0.07,0.14,0.21,0.09,0.06,0.07,0.16,0.18,0.06,0.06,0.17,0.22,0.23,0.07,0.05,0.05,0.11,0.21,0.07,0.06,0.1,0.12,0.12,0.22,0.07,0.07,0.1,0.05,0.18,0.08,0.05,0.19,0.07,0.18,0.07,0.05,0.13,0.07,0.2,0.1,0.13,0.14,0.07,0.19,0.05,0.06,0.15,0.07,0.22,0.06,0.1,0.11,0.06,0.2,0.05,0.06,0.14,0.06,0.07,0.19,0.07,0.17,0.05,0.06,0.19,0.08,0.13,0.04,0.05,0.97,0.12,0.14,0.05,0.06,4.22,0.07,0.11,0.05,0.09,0.23,0.85,0.12,0.13,0.38,0.19,0.05,0.13,0.05,0.06,0.18,0.08,0.15,0.08,0.08,0.61,0.19,0.13,0.05,0.04,0.07,0.29,0.27,0.05,0.06,0.08,0.2,0.17,0.1,0.05,0.05,0.36,0.12,0.06,0.06,0.07,0.21,0.13,0.07,0.06,0.07,0.19,0.16,0.05,0.07,0.07,4.69,0.21,0.06,0.07,0.09,0.12,0.27,0.09,1.16,0.8,0.07,0.24,0.07,0.08,0.08,0.41,0.22,0.08,0.07,0.05,0.07,0.26,0.04,0.06,0.1,0.58,0.75,0.33,0.07,0.04,0.31,0.28,1.67,0.52,0.07,0.14,0.27,0.07,0.07,0.07,0.07,0.27,0.08,0.07,0.08,0.09,0.11,1.9,0.07,0.07,0.27,0.11,0.22,0.07,0.71,0.05,0.1,3.62,0.07,0.06,0.1,0.1,0.21,0.09,0.1,0.16,0.11,0.22,0.07,0.05,0.06,0.12,0.2,0.07,0.08,1.32,0.11,0.11,0.23,0.07,0.09,0.1,0.98,0.21,0.07,2.33,0.42,0.07,0.23,0.09,2.58,0.11,0.23,0.21,0.1,0.12,2.09,0.06,0.25,0.07,0.09,0.14,0.11,0.22,0.1,0.1,0.11,0.52,0.07,0.22,0.1,0.15,0.11,0.09,0.24,0.07,0.17,0.09,0.06,0.2,0.08,0.15,0.08,0.14,0.2,0.15,0.17,0.09,0.07,0.2,0.07,0.16,0.07,0.07,0.19,0.08,0.16,0.09,0.09,0.2,0.08,0.19,0.08,0.08,0.21,0.07,0.21,0.07,0.07,0.07,0.25,3.47,0.12,0.07,0.08,0.28,0.12,0.05,0.07,0.1,0.22,0.11,0.07,0.08,0.08,0.2,0.13,0.1,0.11,0.05,0.23,0.17,0.13,0.11,0.05,0.23,0.2,0.07,0.07,0.11,0.26,0.12,0.12,0.09,0.11,0.14,0.3,0.17,0.12,0.14,0.16,0.27,0.09,0.13,0.18,0.12,0.35,0.19,0.17,0.16,0.16,0.35,0.16,0.15,0.13,0.19,0.39,0.15,0.17,0.15,0.17,0.45,0.13,0.16,0.16,0.2,0.35,0.17,0.13,0.16,0.15,0.2,0.3,0.18,0.14,0.2,0.19,0.29,0.16,0.17,0.17,0.22,0.28,0.15,0.15,0.17,0.2,0.29,0.16,0.16,0.18,0.21,0.29,0.16,0.15,0.2,0.22,0.33,0.15,0.15,0.18,0.24,0.32,0.16,0.17,0.16,0.18,0.28,0.16,0.15,0.18,0.29,0.16,0.3,0.15,0.16,0.22,0.16,0.28,0.15,0.17,0.21,0.17,0.3,0.13,0.22,0.19,0.17,0.29,0.16,0.15,0.21,0.15,0.31,0.17,0.15,0.22,0.17,0.17,0.3,0.15,0.21,0.17,0.15,0.3,0.15,0.23,0.14,0.17,0.29,0.19,0.2,0.17,0.17,0.3,0.22,0.21,0.17,0.16,0.3,0.16,0.22,0.15,0.17,0.34,0.14,0.2,0.18,0.17,0.15,0.3,0.25,0.17,0.15,0.17,0.28,0.22,0.15,0.18,0.16,0.28,0.2,0.17,0.15,0.14,0.38,0.2,0.15,0.21,0.15,0.28,0.19,0.16,0.15,0.16,0.31,0.22,0.15,0.17,0.14,0.3,0.28,0.14,0.14,0.15,0.14,0.39,0.1,0.1,0.13,0.07,3.34,0.08,0.12,0.07,0.17,0.25,0.09,0.09,0.08,0.07,0.24,0.08,0.1,0.09,0.07,0.23,0.08,0.07,0.05,0.1,0.24,0.06,0.08,0.08,0.06,0.3,0.1,0.11,0.07,0.07,0.1,0.2,0.07,0.06,0.12,0.12,0.21,0.1,0.09,0.07,0.15,0.27,0.07,0.07,0.09,0.17,0.2,0.08,0.06,0.07,1.18,0.26,0.1,0.07,0.08,0.1,0.21,0.05,0.09,0.05,0.12,0.22,0.09,0.06,0.13,0.17,0.07,0.22,0.06,0.06,0.24,0.09,0.2,2.9,0.09,0.16,0.12,0.21,0.07,0.08,0.16,0.07,0.2,0.08,0.06,0.12,0.06,0.19,0.04,0.08,0.1,0.07,0.19,0.92,0.14,0.12,0.06,0.2,0.06,0.06,0.14,0.06,0.22,0.08,0.08,0.11,0.07,0.06,0.22,0.06,0.11,0.07,0.06,0.2,0.05,0.11,0.06,0.06,0.18,0.07,0.11,0.07,0.07,0.18,0.2,0.14,0.1,0.07,0.2,0.05,0.17,0.07,0.09,0.23,0.07,0.15,0.09,0.09,0.2,0.09,0.1,0.08,0.05,0.25,0.06,0.11,0.07,0.1,0.1,0.23,0.11,0.07,0.07,0.07,0.29,0.13,0.08,0.1,0.06,0.21,0.16,0.07,0.08,0.09,0.22,0.16,0.06,0.08,0.08,0.22,0.17,0.08,0.07,0.07,0.22,0.14,0.06,0.06,0.07,0.21,0.11,0.07,0.07,0.07,0.26,0.15,0.05,0.05,0.05,0.07,0.27,0.05,0.08,0.06,0.07,0.25,0.1,0.07,0.08,0.06,0.25,0.08,0.06,0.07,0.12,0.28,0.07,0.05,0.06,0.1,0.23,0.06,0.09,0.08,0.18,0.26,0.07,0.07,0.09,0.08,0.25,0.06,0.1,0.07,0.07,0.13,0.24,0.08,0.07,0.07,0.15,0.25,0.06,0.07,0.05,0.18,0.2,0.07,0.08,0.07,0.11,0.2,0.07,0.07,0.15,0.13,0.21,0.06,0.07,0.1,0.13,0.23,0.57,0.06,0.1,0.13,0.28,0.1,0.06,0.08,0.17,0.21,0.06,0.09,0.07,0.16,0.07,0.21,0.07,0.08,0.12,0.46,0.25,0.07,0.13,0.18,0.07,0.22,0.07,0.08,0.14,0.09,0.21,0.05,0.08,0.1,0.1,0.2,0.07,0.07,0.1,0.07,0.2,0.06,0.06,0.11,0.08,0.23,0.1,0.11,0.15,0.08,0.08,0.19,0.12,0.14,0.05,0.09,0.21,0.06,0.1,0.05,0.07,0.21,0.08,0.11,0.09,0.08,0.21,0.09,0.14,0.09,0.1,0.22,0.08,0.15,0.07,0.07,0.2,0.06,0.12,0.06,0.08,0.21,0.13,0.14,0.09,0.1,0.08,0.2,0.18,0.09,0.07,0.06,0.24,0.1,0.09,0.08,0.07,0.2,0.13,0.06,0.05,0.06,0.23,0.11,0.05,0.07,0.07,0.24,0.22,0.06,0.09,0.05,5.1,0.36,0.11,0.14,0.09,0.28,0.17,0.1,0.11,0.1,0.28,0.12,0.14,0.15,0.22,0.13,0.3,0.12,0.18,0.15,0.11,0.39,0.14,0.16,0.19,0.17,0.34,0.15,0.17,0.12,0.18,0.33,0.12,0.15,0.14,0.15,0.33,0.17,0.17,0.16,0.16,0.32,0.21,0.16,0.14,0.14,0.2,0.29,0.15,0.14,0.16,0.18,0.28,0.14,0.15,0.13,0.22,0.28,0.15,0.15,0.21,0.21,0.28,0.16,0.15,0.17,0.2,0.29,0.17,0.14,2.06,0.23,0.3,0.15,0.15,0.13,0.23,0.26,0.17,0.15,0.17,0.26,0.27,0.18,0.15,0.16,0.2,0.19,0.33,0.14,0.22,0.21,0.16,0.31,0.15,0.15,0.23,0.15,0.29,0.16,0.17,0.21,0.15,0.31,0.13,0.16,0.21,0.16,0.31,0.15,0.16,0.23,0.15,0.28,0.13,0.15,0.18,0.16,0.13,0.28,0.21,0.22,0.15,0.17,0.29,0.14,0.24,0.16,0.14,0.29,0.14,0.2,0.13,0.18,0.28,0.14,0.21,0.16,0.17,0.29,0.17,0.19,0.17,0.15,0.28,0.14,0.17,0.15,0.15,0.15,0.4,0.19,0.16,0.42,0.15,0.29,0.2,0.16,0.14,0.13,0.28,0.18,0.14,0.15,0.14,0.27,0.22,0.15,0.13,0.13,0.28,0.22,0.14,0.15,0.14,0.27,0.21,0.15,0.14,0.17,0.34,0.19,0.15,0.15,0.16,0.14,0.34,0.12,0.13,0.09,0.09,4.25,0.05,0.1,0.06,0.07,0.26,0.09,0.06,0.07,0.05,0.25,0.06,0.08,0.09,0.07,0.23,0.07,0.07,0.06,0.12,0.22,0.05,0.4,0.07,0.06,0.27,0.09,0.08,0.07,0.08,0.28,0.06,0.07,0.07,0.06,0.1,0.23,0.07,0.09,0.06,0.17,0.21,0.07,0.07,0.06,0.15,0.2,0.05,0.07,0.19,0.14,0.2,0.06,0.06,0.07,0.17,0.22,0.07,0.07,0.07,0.12,0.2,0.11,0.09,0.05,0.16,0.06,0.22,0.08,0.07,0.15,0.06,0.2,0.08,0.07,0.09,0.1,0.21,0.06,0.12,0.13,0.08,0.23,0.42,0.07,0.16,0.06,0.22,0.07,0.1,0.12,0.08,0.2,0.05,0.06,0.11,0.05,0.2,0.07,0.07,0.13,0.06,0.23,0.07,0.07,0.17,0.07,0.08,0.22,0.17,0.12,0.08,0.1,0.2,0.05,0.11,0.07,0.08,0.26,10.33,0.16,0.06,1.64,19.91,0.09,0.12,0.06,0.06,0.2,0.09,0.83,0.07,20.43,0.43,0.12,0.12,0.1,20.29,0.41,0.21,0.12,0.06,0.07,0.24,0.2,0.17,0.08,0.09,0.08,16.52,25,0.13,0.23,0.1,0.22,0.15,0.06,0.1,0.07,0.24,0.17,19.5,11.15,10.31,0.44,0.16,0.09,20.37,0.26,0.29,0.1,0.08,0.11,0.12,3.33,0.18,0.07,0.09,0.13,0.07,0.26,0.07,0.09,0.09,0.09,0.33,0.05,0.05,0.07,0.06,0.34,0.05,0.09,0.07,0.06,0.26,0.05,0.05,0.05,0.11,0.26,0.07,0.09,0.07,0.07,0.3,0.07,0.07,0.07,0.08,0.27,0.06,0.07,0.09,0.1,0.14,0.2,0.06,0.07,0.05,0.18,0.24,0.05,0.05,0.07,0.1,0.2,0.07,0.08,0.2,0.11,0.2,0.05,0.06,0.07,0.1,0.21,0.07,0.1,0.07,0.11,0.2,0.1,0.06,0.09,0.09,0.21,0.07,0.06,0.04,0.17,0.18,0.06,0.06,0.07,0.1,0.07,0.19,0.06,0.13,0.13,0.06,0.2,0.07,0.07,0.16,0.07,0.2,0.05,0.09,0.12,0.06,0.2,0.06,0.07,0.12,0.07,0.23,0.08,0.07,0.1,0.07,0.21,0.1,0.07,0.11,0.08,0.24,0.05,0.16,0.12,0.08,0.07,0.21,0.06,0.13,0.08,0.1,0.22,0.07,0.15,0.07,0.07,0.2,0.07,0.12,0.05,0.09,0.2,0.08,0.14,0.08,0.07,0.21,0.07,0.12,0.08,0.06,0.2,0.14,0.19,0.05,0.07,0.22,0.06,0.1,0.07,0.08,0.22,0.07,0.12,0.07,0.07,0.05,0.21,0.14,0.07,0.07,0.07,0.22,0.15,0.07,0.07,0.07,0.2,0.14,0.07,0.05,0.08,0.34,0.15,0.09,0.06,0.08,0.22,0.1,0.09,0.08,0.07,0.19,0.12,0.09,0.11,0.07,0.63,0.16,0.12,0.08,0.1,0.05,0.34,0.06,0.08,0.11,0.12,0.29,0.1,0.05,0.05,0.15,0.27,0.16,0.16,0.12,0.14,0.3,0.11,0.1,0.13,0.1,0.28,0.14,0.16,0.13,0.15,0.33,0.13,0.14,0.15,0.13,0.39,0.13,0.15,0.15,0.15,0.18,0.29,0.16,0.16,0.22,0.22,0.31,0.15,0.14,0.15,0.21,0.27,0.16,0.16,0.14,0.19,0.29,0.19,0.15,0.24,0.18,0.27,0.13,0.15,0.12,0.21,0.28,0.52,0.14,0.13,0.19,0.25,0.17,0.14,0.2,0.24,0.16,0.3,0.18,0.14,0.19,0.17,0.5,0.16,0.16,0.18,0.15,0.3,0.14,0.14,0.23,0.15,0.27,0.14,0.15,0.25,0.17,0.28,0.15,0.16,0.22,0.15,0.32,0.15,0.22,0.22,0.14,0.17,0.3,0.13,0.2,0.14,0.15,0.31,0.14,0.18,0.15,0.17,0.28,0.14,0.18,0.15,0.19,0.29,0.17,0.28,0.14,0.14,0.26,0.17,0.21,0.16,0.14,0.26,0.22,0.18,0.15,0.15,0.28,0.13,0.24,0.16,0.63,0.28,0.14,0.19,0.17,0.16,0.17,0.29,0.21,0.14,0.14,0.17,0.27,0.24,0.15,0.19,0.19,0.31,0.18,0.15,0.15,0.13,0.38,0.18,0.17,0.14,0.12,0.27,0.21,0.15,0.17,0.16,4.86,0.27,0.18,0.18,0.16,0.28,0.17,0.15,0.13,0.13,0.16,1.06,0.18,0.12,0.09,0.1,0.31,0.06,0.06,0.08,0.24,0.24,0.06,0.06,0.07,0.06,0.31,0.06,0.08,0.09,0.07,0.28,0.06,0.08,0.05,0.05,0.26,0.18,0.08,0.05,0.09,0.25,0.05,0.08,0.05,0.06,0.3,0.05,0.07,0.05,0.09,0.1,0.22,0.07,0.1,0.05,0.12,0.2,0.09,0.09,0.06,0.12,0.21,0.06,0.06,0.05,0.11,0.19,0.09,0.06,0.05,0.14,0.18,0.08,0.06,0.06,0.11,0.21,0.06,0.07,0.11,0.1,0.21,0.05,0.05,0.08,0.17,0.06,0.2,0.08,0.08,0.09,0.05,0.23,0.15,0.09,0.17,0.05,0.19,0.07,0.07,0.14,0.07,0.2,0.03,0.06,0.1,0.08,0.21,0.07,0.18,0.14,0.06,0.21,0.05,0.05,0.1,0.06,0.23,0.42,0.35,0.12,0.07,0.23,0.04,0.05,0.13,0.05,0.09,0.19,0.07,0.21,0.07,0.07,0.31,0.04,0.1,0.07,0.14,0.25,0.21,0.1,0.09,0.09,0.22,0.07,0.69,0.07,0.07,0.22,0.1,0.15,0.13,0.08,0.19,0.09,0.14,0.09,0.05,0.21,0.06,0.13,0.08,0.07,0.32,0.7,0.79,0.08,0.06,0.07,0.31,0.14,0.09,0.08,0.06,0.26,0.11,0.1,0.09,0.07,0.21,0.1,0.06,0.09,0.07,0.21,0.09,0.06,0.05,0.07,0.21,0.13,0.07,0.09,0.07,0.05,0.24,0.08,0.08,0.07,0.15,0.26,0.07,0.06,0.07,0.07,0.25,0.06,0.06,0.07,0.09,0.24,0.07,0.06,0.53,0.61,0.79,0.37,0.08,0.05,0.06,0.27,0.08,0.07,0.08,0.06,0.28,0.08,0.06,0.06,0.15,0.27,0.07,0.07,0.06,0.07,0.08,0.22,0.1,0.08,0.07,0.1,0.23,0.09,0.08,0.06,0.13,0.22,0.06,0.17,0.08,0.12,0.22,0.06,0.05,0.06,0.12,0.2,0.06,0.07,0.15,0.13,0.21,0.05,0.09,0.05,0.14,0.2,0.07,0.07,0.06,0.11,0.21,0.05,0.36,0.06,0.16,0.07,0.21,0.06,0.08,0.16,0.06,0.21,0.07,0.06,0.14,0.07,0.17,0.05,0.12,0.1,0.07,0.2,0.06,0.07,0.11,0.09,0.22,0.08,0.05,0.18,0.06,0.22,0.1,0.05,0.1,0.06,0.2,0.07,0.34,0.2,0.1,0.06,0.21,0.11,0.15,0.07,0.07,0.2,0.11,0.12,0.09,0.08,0.25,0.06,0.11,0.06,0.05,0.2,0.06,0.15,0.06,0.66,0.2,0.06,0.16,0.06,0.06,0.19,0.07,0.16,0.07,0.07,0.23,0.08,0.12,0.07,0.07,0.06,0.27,0.09,0.06,0.09,0.08,0.2,0.14,0.07,0.09,0.07,0.22,0.1,0.06,0.1,0.07,3.22,0.18,0.07,0.08,0.05,0.18,0.29,0.09,0.12,0.08,0.2,0.14,0.11,0.14,0.09,0.3,0.15,0.11,0.1,0.06,0.07,0.3,0.12,0.08,0.11,0.09,0.3,0.15,0.2,0.07,0.08,1.36,0.11,0.14,0.16,0.09,0.31,0.13,0.12,0.14,0.16,0.26,0.09,0.09,0.15,0.18,0.29,0.12,0.13,0.12,0.14,0.33,0.15,0.18,0.16,0.15,1.23,0.15,0.19,0.14,0.15,0.18,0.31,0.16,0.15,0.17,0.27,1.14,0.17,0.15,0.15,0.21,0.3,0.15,0.14,0.22,0.18,0.29,0.17,0.14,0.15,0.26,0.3,0.15,0.13,0.15,0.19,0.3,0.15,0.17,0.19,0.2,0.25,0.19,0.15,0.16,0.2,0.15,0.3,0.16,0.15,0.24,0.16,0.29,0.18,0.23,0.21,0.17,0.27,0.14,0.18,0.24,0.15,0.32,0.16,0.15,0.21,0.15,0.31,0.15,0.19,0.22,0.17,0.3,0.17,0.14,0.25,0.18,0.15,0.29,0.18,0.28,0.14,0.15,0.31,0.22,0.21,0.16,0.17,0.3,0.21,0.26,0.17,0.14,0.3,0.17,0.23,0.16,0.15,0.3,0.17,0.26,0.15,0.17,0.28,0.15,0.25,0.12,0.14,0.29,0.14,0.19,0.15,0.14,0.28,0.18,0.23,0.16,0.15,0.13,0.28,0.21,0.15,0.17,0.16,0.3,0.24,0.16,0.17,0.14,0.33,0.23,0.17,0.18,0.2,0.3,0.23,0.13,0.15,0.15,0.28,0.2,0.15,0.16,0.14,0.37,0.24,0.17,0.16,0.14,0.29,0.2,0.15,0.15,0.14,0.1,0.36,0.1,0.09,0.07,0.09,0.26,0.07,0.06,0.08,0.05,0.27,0.06,0.09,0.07,0.07,0.26,0.09,0.06,0.06,0.12,0.25,0.07,0.07,0.05,0.06,0.27,0.05,0.07,0.13,0.07,0.12,0.22,0.11,0.07,0.07,0.14,0.23,0.05,0.11,0.07,0.17,0.22,0.08,0.42,0.06,0.12,0.22,0.05,0.08,0.17,0.15,0.22,0.07,0.07,0.1,0.2,0.24,0.06,0.1,0.08,0.12,0.2,0.07,0.08,0.06,0.15,0.22,0.09,0.08,0.06,0.12,0.07,0.21,0.07,0.07,0.11,0.08,0.22,0.07,0.13,0.1,0.05,0.2,0.06,0.08,0.1,0.08,0.22,0.06,0.04,0.14,0.05,0.21,0.07,0.07,0.12,0.08,0.18,0.05,0.05,0.19,0.05,0.2,0.05,0.78,0.1,0.07,0.18,0.05,0.12,0.13,0.07,0.07,0.25,0.07,0.19,0.07,0.08,0.21,0.08,0.11,0.06,0.06,0.2,0.07,0.1,0.33,0.05,0.22,0.07,0.17,0.05,0.06,0.23,0.1,0.15,0.07,0.08,0.22,0.11,0.16,0.05,0.07,0.22,0.06,0.15,0.07,0.07,0.16,0.09,0.14,0.06,0.08,0.05,0.2,0.09,0.06,0.09,0.06,4.89,0.11,0.09,0.07,0.14,0.23,0.12,0.05,0.05,0.07,0.34,0.12,0.07,0.08,0.07,0.26,0.13,0.07,0.1,0.05,0.23,0.12,0.06,0.07,0.08,0.21,0.14,0.05,2.07,0.07,0.09,0.36,0.08,0.08,0.06,0.06,0.3,0.07,0.07,0.08,0.15,0.25,0.07,0.08,0.07,0.05,0.23,0.08,0.07,0.08,0.08,0.25,0.07,0.11,0.07,0.06,0.25,0.09,0.08,0.06,0.1,0.26,0.06,0.07,0.08,0.08,0.28,0.07,0.09,0.07,0.1,0.15,0.24,0.06,0.08,0.07,0.11,0.2,0.07,0.09,0.09,0.14,0.22,0.05,0.07,0.1,0.16,0.21,0.06,0.07,0.06,0.12,0.21,0.08,0.07,0.08,0.1,0.22,0.05,0.07,0.12,0.1,0.21,0.07,0.06,0.06,0.14,0.2,0.08,0.09,0.07,0.12,0.08,0.25,0.06,0.08,0.13,0.07,0.25,0.09,0.04,0.13,0.05,0.21,0.08,0.05,0.13,0.14,0.2,0.08,0.12,0.13,0.07,0.21,0.09,0.08,0.19,0.08,0.22,0.09,0.09,0.15,0.08,0.24,0.07,0.07,0.12,0.08,0.06,0.22,0.09,0.12,0.06,0.07,0.22,0.09,0.1,0.07,0.06,0.21,0.1,0.11,0.07,0.09,0.2,0.05,0.12,3.23,0.08,0.22,0.09,0.12,0.06,0.1,0.2,0.07,0.13,0.06,0.06,0.18,0.05,0.22,0.06,0.06,0.16,0.08,0.17,0.07,0.05,0.06,0.31,0.14,0.08,0.1,0.09,0.2,0.11,0.05,0.09,0.06,0.22,0.15,0.1,0.11,0.08,0.2,0.15,0.06,0.07,0.1,0.26,0.12,0.07,0.11,0.1,0.22,0.13,0.1,0.07,0.09,0.22,0.29,0.07,0.11,0.14,0.07,0.27,0.12,0.11,0.12,0.12,0.34,0.13,0.14,0.15,0.12,0.31,0.16,0.15,0.16,0.16,0.46,0.15,0.16,0.15,0.14,0.32,0.16,0.3,0.16,0.19,0.39,0.15,0.15,0.14,0.17,0.34,0.17,0.16,0.16,0.15,0.18,0.28,0.16,0.16,0.16,0.18,0.28,0.14,0.19,0.15,0.19,0.29,0.18,0.18,0.15,0.23,0.31,0.17,0.15,0.2,0.2,0.29,0.19,0.16,0.15,0.22,0.3,0.14,0.15,0.15,0.21,0.28,0.15,0.18,0.15,0.24,0.15,0.28,0.13,0.14,0.2,0.15,0.28,0.23,0.16,0.23,0.16,0.32,1.05,0.2,0.21,0.15,0.29,0.16,0.17,0.2,0.15,0.29,0.15,0.16,0.17,0.15,0.27,0.16,0.16,0.22,0.14,0.28,0.14,0.17,0.17,0.15,0.14,0.32,0.15,0.18,0.14,0.15,0.3,0.23,0.22,0.14,0.13,0.31,0.16,0.21,0.15,0.15,0.29,0.16,0.24,0.14,0.14,0.36,0.15,0.2,0.17,0.13,0.28,0.14,0.21,0.14,0.14,2.51,1.05,0.17,0.14,0.13,0.14,0.32,0.18,0.13,0.14,0.19,0.28,0.17,0.18,0.16,0.15,0.33,0.19,0.17,0.15,0.16,0.3,0.19,0.15,0.18,0.13,0.27,0.2,0.16,0.12,0.11,0.22,0.14,0.08,0.06,0.05,0.28,0.11,0.07,0.05,0.07,0.09,0.28,0.05,0.08,0.08,0.09,0.26,0.1,0.05,0.06,0.05,0.27,0.07,0.06,0.07,0.06,0.32,0.05,0.07,0.05,0.05,0.27,0.05,0.06,0.07,0.15,0.3,0.07,0.09,0.06,0.07,0.27,0.05,0.05,0.07,0.09,0.3,0.06,0.07,0.07,0.06,0.13,0.19,0.08,0.06,0.06,0.58,0.2,0.05,0.06,0.06,0.1,0.19,0.06,0.11,0.15,0.16,0.19,0.07,0.07,0.1,0.13,0.2,0.07,0.07,0.11,0.1,0.23,0.08,0.1,0.08,0.1,0.2,0.07,0.07,0.08,0.15,0.17,0.11,0.08,0.06,0.15,0.06,0.2,0.08,0.13,0.12,0.07,0.2,0.07,0.06,0.12,0.06,0.22,0.07,0.09,0.13,0.04,0.21,0.06,0.08,0.14,0.09,0.22,0.04,0.06,0.17,0.07,0.05,0.21,0.06,0.11,0.05,0.07,0.19,0.12,0.12,0.07,0.06,0.19,0.09,0.12,0.05,0.09,0.22,0.07,0.1,0.07,0.07,0.2,0.05,0.14,0.07,0.07,0.23,0.07,0.12,0.08,0.08,0.2,0.08,0.12,0.07,0.06,0.06,0.32,0.64,0.06,0.07,0.08,0.23,0.14,0.07,0.06,0.05,0.23,0.12,0.07,0.07,0.06,0.2,0.1,0.05,0.07,0.06,0.24,0.15,0.13,0.05,0.1,0.2,0.12,0.06,0.08,0.08,0.29,0.12,0.07,0.07,0.06,0.21,0.12,0.06,0.06,0.05,0.08,0.27,0.05,0.06,0.1,0.09,0.29,0.07,0.09,0.08,0.11,0.34,0.07,0.09,0.06,0.1,0.26,0.05,0.07,0.09,0.17,0.29,0.09,0.06,0.09,0.07,0.33,0.08,0.09,0.05,0.08,0.27,0.07,0.05,0.08,0.08,0.09,0.19,0.06,0.06,0.08,0.12,0.22,0.1,0.07,0.07,0.11,0.22,0.1,0.07,0.12,0.13,0.24,0.09,0.07,0.07,0.12,0.21,0.1,0.08,0.07,0.15,0.25,0.1,0.08,0.09,0.12,0.19,0.05,0.1,0.09,0.23,0.2,0.06,0.07,0.07,0.18,0.09,0.2,0.07,0.12,0.09,3.51,0.21,0.07,0.08,0.15,0.13,0.21,0.09,0.07,0.12,0.06,0.21,0.09,0.07,0.13,0.07,0.3,0.06,0.08,0.14,0.05,0.23,0.08,0.09,0.19,0.1,0.07,0.63,0.13,0.16,0.11,0.07,0.19,0.12,0.17,0.07,0.11,0.25,0.11,0.14,0.05,0.07,0.24,0.1,0.15,0.06,0.1,0.2,0.06,0.5,0.07,0.08,0.18,0.09,0.16,0.08,0.08,1.76,3.41,0.12,0.09,0.1,0.23,0.08,0.12,0.1,0.07,0.07,0.23,0.15,0.07,0.08,0.09,0.19,0.14,0.08,0.06,0.06,0.2,0.15,0.12,0.1,0.12,0.21,0.14,0.1,0.08,0.08,0.34,0.19,0.16,0.09,0.09,0.25,0.17,0.08,0.15,0.14,0.21,0.14,0.13,0.12,0.16,0.12,0.28,0.1,0.09,0.15,0.1,0.34,0.11,0.1,0.11,0.11,0.37,0.13,0.12,0.15,0.22,0.3,0.14,0.15,0.22,0.16,0.35,0.17,0.19,0.17,0.17,0.34,0.14,0.15,0.16,0.15,0.47,0.15,0.15,0.14,0.17,0.37,0.13,0.17,0.16,0.17,0.19,0.29,0.16,0.17,0.24,0.19,0.29,0.15,0.16,0.15,0.17,0.28,0.17,0.18,0.16,0.17,0.3,0.15,0.2,0.18,0.22,0.28,0.16,0.19,0.17,0.25,0.31,0.16,0.18,0.16,0.23,0.31,0.18,0.17,0.25,0.22,0.16,0.31,0.45,0.19,0.21,0.15,0.3,0.17,0.14,0.25,0.17,0.3,0.17,0.16,0.22,0.15,0.27,0.15,0.16,0.19,0.15,0.28,0.15,3.33,0.2,0.15,0.33,0.17,0.2,0.19,0.15,0.31,0.15,0.17,0.23,0.17,0.18,0.31,0.15,0.21,0.17,0.18,0.29,0.15,0.2,0.14,0.18,0.32,0.14,0.29,0.17,0.14,0.29,0.16,0.24,0.14,0.16,0.32,0.24,0.22,0.17,0.17,0.29,1.8,0.17,0.17,0.17,0.3,0.17,0.18,0.17,0.17,0.3,0.14,0.22,0.18,0.17,0.15,0.32,0.22,0.14,0.15,0.15,0.27,0.2,0.16,0.15,0.13,0.4,0.22,0.16,0.15,0.17,0.31,0.24,0.13,0.12,0.14,0.27,0.24,0.09,0.1,0.1,0.23,0.19,0.07,0.07,0.07,0.08,0.37,0.06,0.08,0.07,0.11,0.26,0.07,0.1,0.06,0.17,0.24,0.07,0.08,0.07,0.11,2.9,0.06,0.09,0.08,0.09,0.23,0.09,0.1,0.08,0.1,0.27,0.06,0.06,0.07,0.06,0.24,0.1,0.07,0.08,0.06,0.12,0.23,0.07,0.07,0.15,0.12,0.23,0.08,0.09,0.1,0.15,0.21,0.1,0.09,0.08,0.14,0.23,0.06,0.1,0.1,0.11,0.21,0.07,0.07,0.08,0.21,0.2,0.07,0.06,0.08,0.12,0.06,0.22,0.1,0.16,0.12,0.09,0.21,0.08,0.08,1.49,0.07,0.23,0.06,0.09,0.11,0.1,0.21,0.06,0.06,0.12,0.06,0.2,0.05,0.07,0.17,0.12,0.21,0.08,0.08,0.19,0.1,0.24,0.07,0.19,0.11,0.06,0.05,0.24,0.08,0.13,0.07,0.09,0.22,0.08,0.1,0.1,0.07,0.23,0.08,0.12,0.07,0.07,0.2,0.07,0.12,0.08,0.05,0.19,0.07,0.13,0.05,0.09,0.19,0.15,0.13,0.99,0.08,3.14,0.15,0.15,0.09,0.08,0.08,0.3,0.14,0.07,0.08,0.19,0.23,1.33,0.06,0.06,0.07,0.2,0.12,0.06,0.07,0.08,0.19,0.12,0.1,0.09,0.09,0.33,0.16,0.07,0.09,0.07,0.21,0.13,0.09,0.07,0.08,0.21,0.16,0.07,0.08,0.09,0.07,0.3,0.06,0.06,0.07,0.06,0.35,0.07,0.08,0.08,0.06,0.26,0.05,0.07,0.08,0.2,0.27,0.08,0.06,0.08,0.05,0.29,0.06,0.09,0.06,0.07,0.24,0.07,0.09,0.08,0.09,0.3,0.08,0.07,0.08,0.09,0.28,0.08,0.09,0.09,0.05,0.2,0.21,1.37,0.08,0.18,0.13,0.24,0.08,0.07,0.09,0.18,0.23,0.07,0.07,0.1,0.11,0.22,0.09,0.1,0.08,0.18,0.23,0.1,0.09,0.09,0.19,0.25,0.09,0.07,0.1,0.14,0.2,0.07,0.11,0.15,0.17,0.07,0.21,0.07,0.07,0.15,0.08,0.23,0.08,0.08,0.15,0.08,0.25,0.08,0.09,0.16,0.08,0.22,0.08,0.07,0.16,0.09,0.22,0.07,0.07,0.1,0.07,0.23,0.4,0.12,0.14,0.08,0.24,0.06,0.11,0.1,0.08,0.08,0.24,0.09,0.14,0.09,0.09,0.28,0.1,0.13,0.1,0.07,0.21,0.08,0.19,0.13,0.1,0.22,0.09,0.18,0.08,0.1,0.23,0.23,0.17,0.08,0.1,0.22,0.07,0.21,0.07,0.07,0.37,0.1,0.11,0.07,0.07,0.06,0.21,0.14,0.09,0.06,0.07,0.19,0.11,0.07,0.08,0.05,0.22,0.09,0.08,0.07,0.07,0.35,0.12,0.08,0.1,0.08,0.22,0.17,0.08,0.12,0.08,0.21,0.18,0.09,0.08,0.1,0.2,0.2,0.1,0.08,0.08,0.09,0.48,0.07,0.1,0.13,0.12,0.32,0.08,0.11,0.12,0.2,0.31,0.08,0.14,0.13,20.19,21.08,0.33,0.18,0.16,0.12,0.31,0.18,0.17,0.12,0.15,0.3,0.16,0.12,0.13,0.16,0.22,0.27,0.23,0.17,0.15,0.19,0.35,0.15,0.15,0.25,0.2,0.27,0.16,0.15,0.17,0.22,0.31,0.17,0.14,0.15,0.2,0.29,0.13,0.17,0.15,0.24,0.28,0.14,0.14,0.18,0.25,0.28,0.15,0.15,0.15,0.21,0.15,0.28,0.15,0.24,0.21,0.17,0.31,0.15,0.14,0.21,0.15,0.27,0.15,0.15,0.4,0.15,0.3,0.14,0.16,0.19,0.14,0.29,0.19,0.17,0.22,0.14,0.3,0.16,0.14,0.2,0.16,0.3,3.47,0.27,0.21,0.15,0.14,0.31,0.16,0.24,0.13,0.17,0.29,0.15,0.25,0.17,0.13,0.33,0.18,0.18,0.15,0.15,0.3,0.15,0.38,0.52,0.62,0.87,0.45,0.24,0.16,0.18,0.32,0.29,0.22,0.16,0.22,0.29,0.33,42.15,0.33,0.15,0.15,6.26,0.21,0.16,0.15,0.15,0.31,0.25,0.14,0.16,0.14,0.3,0.21,0.13,0.14,0.17,0.28,0.22,0.17,0.16,0.14,0.33,0.25,0.13,0.17,0.15,0.28,0.2,0.18,0.15,0.15,0.29,0.19,0.15,0.16,0.22,0.3,0.18,0.15,0.15,0.15,0.16,0.35,0.33,0.09,0.15,0.08,0.28,0.07,0.06,0.08,0.15,0.29,0.07,0.1,0.06,0.09,0.34,0.06,0.07,0.07,0.06,0.25,0.13,0.07,0.06,0.06,0.3,0.05,0.07,0.06,0.06,0.32,0.07,0.09,0.05,0.05,0.24,0.06,0.06,0.07,0.1,0.12,0.21,0.08,0.05,0.05,0.09,0.2,0.07,0.08,0.09,0.17,0.22,0.07,0.1,0.05,0.12,0.22,0.08,0.09,0.07,0.21,0.22,0.07,0.07,0.08,0.1,0.21,0.05,0.06,0.12,0.12,0.18,0.07,0.07,0.09,0.17,0.06,0.19,0.07,0.06,0.1,0.1,0.2,0.07,0.09,0.11,0.06,0.19,0.08,0.05,0.1,0.06,0.22,0.09,0.04,0.14,0.07,0.23,0.08,0.13,0.14,0.07,0.24,0.11,0.07,0.15,0.07,0.17,0.16,0.08,0.18,0.08,0.07,0.22,0.06,0.14,0.08,0.07,0.2,0.08,0.16,0.07,0.07,0.23,0.07,0.17,0.08,0.09,0.21,0.15,0.12,0.06,0.06,0.19,0.07,0.14,0.06,0.08,0.2,0.06,0.15,0.07,0.07,0.08,0.22,0.12,0.07,0.07,0.37,0.22,0.12,0.05,0.13,0.06,0.22,0.2,0.09,0.1,0.08,0.31,0.14,0.07,0.05,0.05,0.21,0.12,0.07,0.08,0.09,0.23,0.19,0.07,0.05,0.07,0.19,0.11,0.06,0.06,0.05,0.2,0.17,0.06,0.06,0.08,0.05,3.54,0.07,0.08,0.07,0.13,0.32,0.06,0.07,0.07,0.07,0.3,0.08,0.08,0.07,0.08,0.3,2.06,0.07,0.07,0.06,0.29,0.09,0.07,0.07,0.08,0.29,0.08,0.07,0.06,0.07,0.27,0.07,0.06,0.05,0.12,0.12,0.22,0.08,0.06,0.08,0.15,0.2,0.07,0.08,0.06,0.14,0.21,0.08,0.1,0.07,0.12,0.25,0.07,0.05,0.09,0.19,0.22,0.08,0.1,0.07,0.15,0.23,0.08,0.07,0.27,0.11,0.22,0.07,0.1,0.09,0.19,0.24,0.09,0.07,0.07,0.25,0.16,0.23,0.06,0.07,0.17,0.07,0.23,2.67,0.14,0.11,0.07,0.21,0.07,0.08,0.14,0.07,0.26,0.06,0.23,0.14,0.46,0.21,0.07,0.07,0.13,0.08,0.22,0.07,0.07,0.22,0.06,0.23,0.09,0.07,0.12,0.07,0.21,0.06,0.05,0.23,0.07,0.07,0.2,0.07,0.11,0.07,0.06,0.25,0.15,0.12,0.07,0.06,0.21,0.05,0.12,0.08,0.08,0.24,0.07,0.19,0.07,0.06,3.52,0.06,0.12,0.06,0.07,0.24,0.06,0.14,0.06,0.08,0.19,0.08,0.17,0.08,0.06,0.08,0.36,0.16,0.08,0.06,0.07,0.22,0.18,0.07,0.09,0.09,0.18,0.12,0.07,0.1,0.07,0.2,0.14,0.08,0.04,0.06,0.22,0.18,0.05,0.08,0.04,0.22,0.08,0.07,0.05,0.09,0.32,0.22,0.08,0.1,0.11,0.1,0.32,0.05,0.1,0.11,0.07,0.31,0.12,0.11,0.09,0.15,0.27,0.08,0.15,0.09,0.1,0.3,0.1,0.14,0.15,0.14,0.31,0.12,0.17,0.11,0.23,0.34,0.12,0.11,0.14,0.14,0.17,0.31,0.13,0.13,0.13,0.22,0.28,0.15,0.14,0.17,0.24,0.31,0.15,0.16,0.18,0.2,0.29,0.15,0.13,0.17,0.19,0.33,0.15,0.17,0.24,0.22,0.3,0.12,0.15,0.15,0.25,0.35,0.15,0.15,0.14,0.2,0.3,0.2,0.13,0.15,0.19,0.14,0.28,0.13,0.17,0.2,0.15,0.26,0.16,0.15,0.22,0.19,0.31,0.17,0.22,0.22,0.14,0.29,0.19,0.18,0.23,0.15,0.27,0.16,0.15,0.21,0.16,0.3,0.18,0.19,0.24,0.15,0.3,0.15,0.14,0.28,0.15,0.16,0.3,0.15,0.22,0.14,0.15,0.3,0.26,0.22,0.16,0.15,0.28,0.15,0.2,0.19,0.16,0.3,0.16,0.2,0.15,0.14,0.29,0.15,0.19,0.15,0.14,0.27,0.15,0.22,0.14,0.15,0.15,0.29,0.2,0.14,0.13,0.15,0.36,0.25,0.17,0.16,0.16,0.28,0.21,0.16,0.17,0.14,0.29,0.23,0.14,0.14,0.15,0.32,0.2,0.13,0.16,0.15,0.28,0.27,0.14,0.15,0.14,0.27,0.23,0.14,0.18,0.17,0.2,0.37,0.15,0.14,0.14,0.14,0.38,0.15,0.15,0.11,0.13,0.36,0.1,0.1,0.07,1.66,0.24,0.07,0.08,0.05,0.07,0.3,0.05,0.06,0.06,0.05,0.29,0.09,0.08,0.07,0.22,0.3,0.06,0.09,0.06,0.1,0.27,0.06,0.06,0.08,0.07,0.1,0.24,0.08,0.08,0.1,0.12,0.18,0.07,0.07,0.09,0.15,0.21,0.07,0.09,0.07,0.11,0.19,0.08,0.05,0.18,0.12,0.21,0.05,0.09,0.06,0.13,0.19,0.07,0.07,0.06,0.13,0.2,0.07,0.06,0.08,0.11,0.06,0.21,0.07,0.07,0.13,0.07,0.21,0.07,0.05,0.17,0.08,0.19,0.05,0.15,0.08,0.07,0.2,0.05,1.9,0.09,0.07,0.18,0.08,0.07,0.1,0.05,0.18,0.05,0.07,0.16,0.07,0.18,0.1,0.06,0.62,0.05,0.08,0.2,0.1,0.14,0.09,0.07,0.23,0.19,0.14,0.06,0.05,0.21,0.05,0.14,0.07,0.07,0.21,0.09,0.11,0.05,0.05,4.9,0.15,0.1,0.05,0.05,0.17,0.08,0.13,0.06,0.05,0.06,0.22,0.12,0.06,0.05,0.07,0.28,0.12,0.04,0.07,0.05,0.21,0.13,0.04,0.04,0.06,0.18,0.13,0.08,0.05,0.05,0.21,0.12,0.05,0.05,0.05,0.19,0.17,0.06,0.07,0.05,0.04,0.32,0.06,0.05,0.06,0.15,0.21,0.06,0.06,0.08,0.08,0.22,0.06,0.08,0.09,0.05,0.25,0.05,0.07,0.06,0.05,0.4,0.07,0.08,0.07,0.06,0.2,0.05,0.07,0.04,0.05,0.22,0.1,0.04,0.05,0.13,0.11,0.17,0.05,0.06,0.05,0.11,0.2,0.05,0.05,0.05,0.13,0.25,0.05,0.05,3.85,0.2,0.22,0.06,0.05,0.05,0.18,0.18,0.05,0.08,0.05,0.1,0.19,0.04,0.08,0.18,0.12,0.2,0.07,0.08,0.08,0.1,0.2,0.05,0.1,0.07,0.1,0.05,0.18,0.07,0.09,0.16,0.07,0.2,0.11,0.08,0.13,0.04,0.2,0.05,0.07,0.1,0.05,0.19,0.08,0.13,0.14,0.06,0.2,0.07,0.11,0.32,0.06,0.22,0.12,0.06,0.08,0.08,0.06,0.23,0.09,0.09,0.04,0.03,0.24,0.06,0.17,0.07,0.08,0.2,0.06,0.13,0.07,0.07,0.19,0.11,0.12,0.06,0.1,0.22,0.07,0.09,0.07,0.07,0.2,0.09,0.11,0.06,0.06,0.08,0.2,0.13,0.91,0.11,0.09,0.22,0.21,0.09,0.05,0.06,0.24,0.11,0.05,0.05,0.06,0.27,0.15,0.08,0.07,0.04,0.21,0.4,0.06,0.04,0.07,0.19,0.09,0.05,0.05,0.05,0.23,0.13,0.07,0.05,0.05,0.18,0.22,0.08,0.06,0.08,0.07,0.24,0.05,0.07,0.07,0.17,0.29,0.06,0.06,0.07,0.05,0.28,0.1,0.07,0.06,0.09,0.27,0.05,0.06,0.05,0.1,0.32,0.16,0.13,0.07,0.12,0.34,0.09,0.05,0.07,0.1,0.29,0.05,0.17,0.11,0.2,0.21,0.26,0.13,0.1,0.12,0.17,0.21,0.18,0.11,0.07,0.12,0.24,0.08,0.12,0.16,0.2,0.25,0.17,0.18,0.13,0.22,0.27,0.12,0.15,0.18,0.2,0.27,0.13,0.15,0.22,0.22,0.24,0.16,0.15,0.17,0.19,0.13,0.27,0.15,0.14,0.18,0.16,0.3,0.18,0.17,0.22,0.15,0.29,0.15,0.15,0.2,0.18,0.27,0.15,0.16,0.22,0.16,0.3,0.17,0.2,0.18,0.14,0.28,0.16,0.17,0.31,0.13,0.26,0.18,0.19,0.19,0.15,0.14,0.27,0.16,0.18,0.15,0.16,0.3,0.16,0.27,0.15,0.15,0.29,0.17,0.21,0.12,0.13,0.31,0.2,0.18,0.14,0.18,0.3,0.15,0.22,0.16,0.16,0.17,0.31,0.2,0.13,0.15,0.17,3.53,11.12,4.71,2.02,0.16,0.27,0.23,0.15,0.15,0.13,0.28,0.2,0.15,0.14,0.15,0.37,0.27,0.16,0.14,0.15,0.28,0.19,0.15,0.17,0.17,0.29,0.19,0.16,0.14,0.13,0.28,0.18,0.19,0.16,0.16,0.17,0.46,0.15,0.15,0.16,0.15,0.31,0.15,0.13,0.14,0.28,0.32,0.15,0.13,0.14,0.15,0.34,0.14,0.14,0.14,0.13,0.34,0.14,0.14,0.14,0.15,0.39,0.15,0.13,0.13,0.15,0.36,0.13,0.14,0.13,0.1,0.1,0.23,0.08,0.07,0.13,0.12,0.2,0.04,0.04,0.05,0.13,0.2,0.06,0.49,0.08,0.1,0.18,0.06,0.05,0.07,0.08,0.2,0.66,0.07,0.05,0.16,0.22,0.06,0.06,0.04,0.14,0.18,0.04,0.04,0.1,0.16,0.22,0.07,0.09,0.06,0.15,0.07,0.22,0.05,0.05,0.13,0.06,0.22,0.05,0.08,0.1,0.06,0.2,0.07,0.05,0.1,0.06,0.23,0.04,0.05,0.1,0.05,0.18,0.05,0.12,0.1,0.05,0.2,0.07,0.05,0.1,0.04,0.21,0.29,0.07,0.12,0.04,0.07,0.22,0.06,0.14,0.05,0.07,0.22,0.06,0.16,0.06,0.06,0.2,0.06,0.13,0.05,0.06,0.18,0.11,0.13,0.1,0.06,0.2,0.05,0.14,0.05,0.04,0.18,0.04,0.08,0.05,0.05,0.19,0.06,0.11,0.06,0.05,0.09,0.23,0.11,0.04,0.05,0.04,0.19,0.09,0.05,0.07,0.05,0.24,0.13,0.06,0.07,0.05,0.19,0.12,0.07,0.03,0.17,0.2,0.13,0.05,0.05,0.04,0.23,0.11,0.07,0.07,0.04,0.2,0.15,0.05,0.03,0.07,0.19,0.11,0.07,0.07,0.07,0.1,0.23,0.05,0.07,0.05,0.1,0.26,0.07,0.05,0.06,0.05,0.22,0.08,0.06,0.03,0.07,0.22,0.05,0.06,0.05,0.05,0.25,0.05,0.05,0.05,0.05,0.27,0.07,0.07,0.06,0.13,0.18,0.13,0.07,0.06,0.06,0.18,0.19,0.05,1.14,0.07,0.12,0.17,0.05,0.05,0.07,0.14,0.19,0.12,0.04,0.04,0.11,0.19,0.04,0.05,0.06,0.08,0.18,0.06,0.07,0.15,0.11,0.18,0.03,0.05,0.06,0.13,0.06,0.2,0.04,0.05,0.1,0.05,0.24,0.07,0.05,0.15,0.05,0.2,0.1,0.09,0.19,0.05,0.2,0.05,0.09,0.11,0.04,0.22,7.17,0.63,0.11,0.05,0.22,0.07,0.06,0.12,0.07,0.19,0.07,0.07,0.13,0.08,0.2,0.07,0.1,0.12,0.08,0.05,0.22,0.05,0.15,0.1,0.07,0.19,0.08,0.15,0.07,0.06,0.22,0.15,0.17,0.1,0.07,0.2,0.1,0.16,0.08,0.05,0.23,0.07,0.15,0.09,0.09,0.21,0.07,0.17,0.06,0.09,0.06,3.84,0.14,0.13,0.08,0.08,0.22,0.15,0.09,0.09,0.09,0.33,0.15,0.07,0.08,0.07,0.2,0.14,0.1,0.08,0.09,2.79,0.09,0.07,0.06,0.07,0.22,0.14,0.05,0.07,0.09,0.08,0.33,0.06,0.06,0.08,0.06,0.29,0.07,0.05,0.09,0.12,0.25,0.08,0.07,0.07,0.06,0.27,0.06,0.07,0.07,0.07,0.24,0.07,0.09,0.08,0.08,0.26,0.1,0.06,0.07,0.07,0.25,0.11,0.09,0.09,0.11,0.31,0.12,0.11,0.12,0.19,0.2,0.24,0.12,0.08,0.11,0.12,0.26,0.15,0.1,0.6,0.15,0.3,0.12,0.13,0.12,0.17,0.25,0.13,0.1,0.08,0.17,0.27,0.17,0.16,1.03,0.23,0.27,0.18,0.15,0.21,0.21,0.29,0.14,0.14,0.2,0.24,0.17,0.31,0.18,0.15,0.17,0.16,0.28,0.2,0.15,0.2,0.15,0.27,0.16,0.31,0.19,0.13,0.32,0.14,0.15,0.2,0.14,0.31,0.14,0.21,0.22,0.14,0.28,0.16,0.14,0.2,0.15,0.3,0.15,0.14,3.63,0.13,0.17,0.31,0.16,0.2,0.15,0.15,0.32,0.17,0.25,0.16,0.15,0.33,0.15,0.21,0.14,0.12,0.3,0.24,0.22,0.15,0.15,0.3,0.16,0.24,0.15,0.15,0.28,0.13,0.19,0.15,0.13,0.26,0.21,0.24,0.13,0.14,0.15,0.3,0.23,0.16,0.14,0.12,0.31,0.23,0.15,0.15,0.15,0.37,0.2,0.15,0.13,0.15,0.27,0.19,0.14,0.13,0.14,0.27,0.21,0.12,0.14,0.17,0.3,0.22,0.16,0.16,0.15,0.15,0.38,0.15,0.15,0.15,0.15,0.34,0.13,0.15,0.15,0.21,0.32,0.14,0.14,0.16,0.16,0.31,0.15,0.18,0.16,0.18,0.3,0.14,0.15,0.13,0.16,0.35,0.14,0.17,0.16,0.15,0.36,0.17,0.15,0.17,0.15,0.33,0.15,0.16,0.15,0.3,0.19,0.28,0.15,0.15,0.15,0.27,0.28,0.13,0.14,0.13,0.17,0.25,0.09,0.08,0.1,0.16,0.24,0.05,0.06,0.08,0.1,0.23,0.08,0.12,0.09,0.13,0.22,0.07,0.05,0.15,0.12,0.22,0.06,0.06,0.07,0.13,0.22,0.14,0.07,0.06,0.14,0.1,0.22,0.1,0.08,0.15,0.08,0.23,0.08,0.04,0.14,0.13,0.2,0.09,0.09,0.17,0.07,0.21,0.09,0.19,0.16,0.07,0.22,0.05,0.07,0.14,0.06,0.22,0.05,0.07,0.12,0.23,0.22,0.06,0.07,0.11,0.09,0.07,0.21,0.08,0.16,0.09,0.06,0.21,0.06,0.16,0.1,0.07,0.21,0.19,0.12,0.08,0.08,0.23,0.1,0.21,0.07,0.07,0.22,0.06,0.12,0.12,0.48,0.21,0.08,0.12,0.07,0.07,0.23,0.07,0.17,0.08,0.08,1.75,2.22,0.1,0.05,0.06,0.06,0.28,0.1,0.07,0.05,0.07,0.19,0.13,0.05,0.07,0.05,0.22,0.12,2.31,0.06,0.07,0.25,0.1,0.05,0.05,0.05,0.19,0.18,0.07,0.05,0.06,0.19,0.09,0.07,0.06,0.06,0.33,0.13,0.03,0.07,0.07,0.05,0.27,0.06,0.06,0.04,0.07,0.28,0.05,0.07,0.08,0.04,0.26,0.06,0.09,0.06,0.04,0.24,0.07,0.06,0.07,0.06,0.26,0.08,0.04,0.07,0.13,0.26,0.04,0.05,0.06,0.07,0.24,0.03,0.08,0.05,0.05,0.25,0.09,0.79,0.07,0.09,0.1,0.19,0.06,0.06,0.07,0.17,0.19,0.06,0.07,0.06,0.1,0.18,0.07,0.07,0.15,0.11,0.18,0.08,0.09,0.05,0.16,0.22,0.08,0.07,0.05,0.13,0.21,0.05,0.08,0.1,0.1,0.05,0.24,0.06,0.07,0.1,0.07,0.19,0.1,0.3,0.18,0.07,0.24,0.1,0.14,0.11,0.05,0.21,0.07,0.08,0.11,0.06,0.2,0.06,0.06,0.1,0.05,0.53,0.05,0.08,0.12,0.06,0.2,0.09,0.11,0.13,0.07,0.07,0.22,0.06,0.16,0.06,0.05,0.2,0.2,0.12,0.06,0.07,0.21,0.08,0.1,0.06,0.05,0.19,0.06,0.1,0.07,0.06,0.2,0.05,0.1,0.06,0.05,0.21,0.09,0.14,0.08,0.05,0.22,0.06,0.52,0.06,0.05,0.05,0.32,0.11,0.04,0.06,0.07,0.2,0.12,0.06,0.05,0.07,0.2,0.14,0.07,0.09,0.07,0.26,0.15,0.04,0.08,0.06,0.19,0.22,0.07,0.08,0.06,0.21,0.11,0.06,0.05,0.05,0.31,0.1,0.1,0.07,0.07,0.05,0.28,0.05,0.06,0.06,0.08,0.25,0.07,0.07,0.07,0.08,0.24,0.09,0.07,0.06,0.05,0.24,0.06,0.08,0.06,0.04,0.25,0.05,0.05,0.07,0.12,0.24,0.1,0.07,0.05,0.1,0.25,0.08,0.09,0.07,0.08,0.12,0.23,0.09,0.06,0.08,0.09,0.22,0.09,0.06,0.13,0.13,0.27,0.08,0.1,0.07,0.22,0.3,0.05,0.08,0.22,0.1,0.2,0.11,0.16,0.07,0.09,0.21,0.1,0.11,0.1,0.14,0.24,0.13,0.13,0.14,0.2,0.13,0.26,0.12,0.11,0.19,0.16,0.28,0.15,0.15,0.19,0.13,0.28,0.15,0.28,0.21,0.15,0.29,0.16,0.13,0.24,0.15,0.28,0.14,0.14,0.27,0.15,0.28,0.14,0.6,0.2,0.14,0.27,0.15,0.17,0.86,0.16,0.3,0.14,0.16,0.21,0.15,0.15,0.27,0.19,0.18,0.15,0.14,0.27,0.15,0.26,0.14,0.2,0.29,0.16,0.21,0.13,0.14,0.27,0.15,0.22,0.17,0.15,0.27,0.15,0.31,0.17,0.16,0.3,0.16,0.21,0.15,0.16,1.49,3.51,0.19,0.17,0.17,0.17,0.3,0.19,0.16,0.15,0.17,0.29,0.17,0.18,0.19,0.18,0.37,0.23,0.17,0.17,0.14,0.31,0.26,0.18,0.18,0.14,0.3,0.21,0.15,0.15,0.19,0.42,0.2,0.15,0.14,0.15,0.14,0.36,0.16,0.16,0.15,0.14,0.32,0.15,0.14,0.16,0.17,0.45,0.15,0.14,0.13,0.14,0.34,0.17,0.14,0.15,0.14,0.35,0.15,0.16,0.17,0.21,0.34,0.14,0.15,0.15,0.14,0.21,0.28,0.14,0.13,0.17,0.23,0.27,0.15,0.14,0.16,0.19,0.31,0.17,0.14,0.17,0.25,0.29,0.14,0.16,0.14,0.2,0.26,0.14,0.06,0.18,0.11,0.21,0.09,0.06,0.07,0.1,0.19,0.06,0.06,0.07,0.12,0.2,0.07,0.07,0.07,0.12,0.08,0.24,0.09,0.08,0.12,0.07,0.2,0.07,0.08,0.12,0.07,0.79,0.07,0.19,0.12,0.06,0.22,0.06,0.07,0.1,0.08,0.22,0.07,0.07,0.12,0.07,0.2,0.07,0.05,0.27,0.12,0.48,0.06,0.06,0.16,0.06,0.07,0.2,0.05,0.1,0.07,0.05,0.21,0.11,0.12,0.08,0.05,0.2,0.07,0.12,0.06,0.06,0.2,0.05,0.1,0.07,0.05,0.2,0.1,0.11,0.07,0.05,0.19,0.06,0.16,0.06,0.07,0.2,0.08,0.17,0.08,0.05,0.05,0.33,0.15,0.04,0.07,0.06,0.2,0.11,0.05,0.07,0.05,0.22,0.14,0.06,0.07,0.07,0.2,0.13,0.07,0.05,0.05,0.22,0.14,0.07,0.06,0.07,0.19,0.11,0.05,0.07,0.07,0.3,0.12,0.07,0.07,0.05,0.2,0.13,0.08,0.09,0.08,0.09,0.31,0.07,0.08,0.11,0.07,0.3,0.06,0.06,0.09,0.1,0.31,0.06,0.08,0.06,0.08,0.26,0.07,0.06,0.06,0.16,0.27,0.08,0.09,0.07,0.05,0.28,0.05,0.05,0.09,0.07,0.23,0.06,0.05,0.06,0.06,0.12,2.68,0.07,0.05,0.07,0.14,0.18,0.06,0.05,0.07,0.13,0.18,0.04,0.07,0.14,0.11,0.22,0.08,0.09,0.08,0.17,0.2,0.06,0.07,0.06,0.12,0.2,0.07,0.05,0.07,0.17,0.21,0.04,0.06,0.07,0.14,0.09,0.18,0.05,0.05,0.11,0.11,0.19,1.25,0.17,0.12,0.05,0.19,0.04,0.05,0.14,0.05,0.19,0.06,0.05,0.14,0.09,0.2,0.05,0.06,0.19,0.07,0.17,0.1,0.11,0.21,3.87,0.1,0.19,0.07,0.17,0.09,0.05,0.22,0.14,0.13,0.06,0.1,0.2,0.09,0.13,0.07,0.07,0.24,0.08,0.1,3.93,0.1,0.19,0.06,1.12,0.08,0.12,0.24,0.07,0.19,0.06,0.07,0.1,0.19,0.15,0.1,0.07,0.08,0.35,0.17,0.08,0.07,0.06,3.44,0.18,0.07,0.11,0.07,0.2,0.16,0.06,0.09,0.05,0.23,0.17,0.09,0.07,0.08,0.24,0.17,0.07,0.08,0.07,0.22,0.15,0.09,0.07,0.09,0.37,0.14,0.08,0.07,0.08,0.1,0.32,0.08,0.06,0.07,0.09,0.31,0.07,0.08,0.07,0.07,0.28,0.07,0.07,0.05,0.04,0.3,0.07,0.07,0.1,0.07,0.25,0.09,0.05,0.09,0.18,0.26,0.07,0.11,0.05,0.05,0.26,0.06,0.06,0.08,0.07,0.12,0.23,0.13,0.08,0.07,0.12,0.2,0.09,0.05,0.06,0.29,0.22,0.06,0.07,0.06,0.16,0.19,0.06,0.12,0.16,0.13,0.22,0.08,0.14,0.12,0.18,0.2,0.08,0.1,0.15,0.2,0.22,0.05,0.1,0.07,0.12,0.05,0.21,0.1,0.12,0.12,0.09,0.21,0.1,0.16,0.13,0.14,0.27,0.1,0.17,0.15,0.1,0.27,0.12,0.12,0.21,0.13,0.26,0.13,0.15,0.22,0.15,0.27,0.17,0.18,0.21,0.13,1.72,0.15,0.13,0.24,0.13,0.15,0.29,0.15,0.19,0.16,0.14,0.27,0.19,0.22,0.17,0.15,0.34,0.14,0.19,0.14,0.17,0.27,0.17,0.22,0.14,0.17,0.28,0.14,0.24,0.13,0.15,0.27,0.15,0.27,0.19,0.15,0.3,0.16,0.26,0.16,0.16,0.34,0.22,0.56,0.18,0.17,0.18,0.28,0.27,0.15,0.14,0.16,0.3,0.19,0.15,0.14,0.16,0.27,0.26,0.16,0.17,0.17,0.27,0.26,0.17,0.14,0.15,0.31,0.19,0.13,0.15,0.14,0.35,0.23,0.15,0.17,0.13,0.31,0.24,0.16,0.16,0.17,0.15,0.39,0.13,0.13,0.14,0.17,0.39,0.15,0.15,0.16,0.15,0.38,0.13,0.14,0.14,0.15,0.32,0.14,0.15,0.16,0.18,0.34,0.14,0.14,0.16,0.14,0.35,0.15,0.16,0.14,0.16,0.32,0.17,0.12,0.14,0.13,0.34,0.17,0.14,1.22,0.13,0.23,0.29,0.13,0.14,0.13,0.22,0.31,0.15,0.14,0.26,0.22,0.31,0.15,0.13,0.15,0.31,0.28,0.17,0.15,0.16,0.22,0.31,0.12,0.09,0.09,0.12,0.2,0.05,0.07,0.07,0.14,0.09,0.25,0.07,0.05,0.17,0.07,0.22,0.05,0.18,0.2,0.55,0.19,0.05,0.04,0.15,0.07,0.2,0.08,0.07,0.15,0.08,0.22,0.08,0.06,0.14,0.06,0.21,0.08,0.09,0.21,0.06,0.23,0.07,0.08,0.11,0.05,0.09,0.23,0.14,0.1,0.05,0.08,0.21,0.08,0.13,0.09,0.1,0.21,0.06,0.1,0.07,0.11,0.2,0.07,0.13,0.05,0.07,0.2,0.1,0.13,0.09,0.08,0.22,0.07,0.12,0.05,0.1,0.2,0.13,0.15,0.21,0.05,0.05,0.19,0.13,0.04,0.06,0.06,5.06,0.14,0.06,0.06,0.09,0.22,0.13,0.06,0.05,0.05,0.21,0.12,0.05,0.07,0.05,0.19,0.09,0.07,0.07,0.04,0.28,0.1,0.06,0.04,0.04,0.19,0.1,0.05,0.08,0.08,0.23,0.13,0.07,0.05,0.06,0.08,0.25,0.05,0.07,0.05,0.06,0.27,0.05,0.1,0.1,0.07,0.29,0.07,0.08,0.06,0.18,0.27,0.05,0.06,0.08,0.1,0.24,0.05,0.09,0.07,0.06,0.27,0.06,0.07,0.06,0.05,0.27,0.06,0.07,0.04,0.05,0.24,0.05,0.08,0.05,0.05,0.12,0.22,0.06,0.05,0.13,0.13,0.21,0.07,0.04,0.07,0.13,0.2,0.07,0.62,4.4,0.53,0.39,0.54,0.64,0.34,0.16,0.21,0.1,0.28,0.33,0.65,0.29,0.07,0.08,0.1,0.13,0.25,0.08,0.06,0.25,0.18,0.11,0.15,0.05,0.2,0.22,0.11,0.41,21.22,0.1,20.92,0.23,0.22,0.07,0.11,0.18,0.12,0.28,0.08,0.07,0.15,0.11,0.26,0.07,0.08,0.13,0.09,0.21,0.06,0.14,0.11,0.09,0.22,0.1,0.1,0.2,0.08,0.1,0.24,0.09,0.17,0.08,0.09,0.22,0.1,0.16,0.06,0.07,0.25,0.1,0.18,0.08,0.11,0.23,0.1,0.15,0.11,0.09,0.23,0.15,0.13,0.12,0.09,0.21,0.1,0.13,0.1,0.09,0.22,0.1,0.15,0.12,0.09,0.22,0.07,0.14,0.1,0.1,0.22,0.07,0.18,0.09,0.1,0.1,0.25,0.16,0.1,0.08,0.07,0.36,0.17,0.08,0.1,0.07,0.24,0.17,0.08,0.09,0.08,0.25,0.13,0.09,0.07,0.12,0.26,0.16,0.07,0.06,0.08,0.27,0.1,0.07,0.06,0.07,0.22,0.17,0.05,0.1,0.07,0.26,0.08,0.07,0.09,0.05,0.08,0.3,0.07,0.07,0.1,0.08,0.31,0.11,0.09,0.06,0.09,0.31,0.1,0.06,0.09,0.07,0.3,0.08,0.1,0.09,0.06,0.27,0.11,0.09,0.07,0.17,0.32,0.07,0.07,0.09,0.08,0.27,0.07,0.1,0.12,0.11,0.26,0.07,0.07,0.05,0.1,0.25,0.11,0.09,0.07,0.07,0.15,0.3,0.08,0.08,0.1,0.12,0.18,0.12,0.1,0.15,0.16,0.28,0.15,0.24,0.15,0.17,0.22,0.16,0.07,0.1,0.11,0.27,0.15,0.14,0.15,0.2,0.25,0.12,0.16,0.11,0.24,0.25,0.18,0.13,0.15,0.19,0.16,0.3,0.15,0.25,0.21,0.14,0.28,0.15,0.15,0.17,0.14,0.36,0.16,0.16,0.2,0.16,0.28,0.16,0.17,0.22,0.16,0.32,0.14,0.24,0.26,0.15,0.3,0.12,0.15,0.2,0.19,0.15,0.3,0.25,0.22,0.17,0.15,0.3,0.17,0.19,0.13,0.13,0.29,0.15,0.21,0.15,0.17,3.48,0.16,0.2,0.15,0.14,0.29,0.16,0.21,0.14,0.92,0.28,0.15,0.2,0.16,0.16,0.3,0.21,0.17,0.15,0.16,0.31,0.15,0.23,0.17,0.16,0.31,0.14,0.2,0.15,0.14,0.15,0.3,0.18,0.14,0.16,0.14,0.28,0.19,0.13,0.14,0.15,0.27,0.23,0.16,0.13,0.14,0.44,0.24,0.15,0.14,0.14,1.77,0.24,0.15,0.14,0.17,0.29,0.19,0.14,0.17,0.15,0.12,0.35,0.15,0.15,0.18,0.17,0.37,0.17,0.15,3.88,0.15,0.33,0.15,0.16,0.15,0.28,0.32,0.15,0.16,0.15,0.16,0.34,0.12,0.17,0.15,0.17,0.32,0.15,0.15,0.15,0.17,0.32,0.14,0.13,0.15,0.15,0.34,0.15,0.14,0.17,0.15,0.34,0.1,0.11,0.09,0.19,0.15,0.21,0.07,0.09,0.12,0.11,0.2,0.06,0.05,0.05,0.1,0.18,0.06,0.05,0.06,0.14,0.2,0.05,0.06,0.05,0.12,0.2,0.07,0.05,0.05,0.1,0.18,0.06,0.08,0.17,0.17,0.19,0.07,0.05,0.05,0.11,0.18,0.1,0.07,0.09,0.1,0.05,0.22,0.08,0.2,0.14,0.09,0.23,0.1,0.07,0.13,0.07,0.19,0.08,0.11,0.11,0.09,0.21,0.07,0.19,0.19,0.09,0.22,0.1,0.13,0.62,0.07,0.18,0.05,0.06,0.1,0.09,0.2,0.08,0.07,0.12,0.07,0.05,0.2,0.07,0.14,0.06,0.07,0.24,0.32,0.1,0.09,0.07,0.34,0.24,0.11,0.34,0.26,0.27,0.11,0.25,0.07,0.22,0.3,0.39,0.14,0.46,0.07,0.21,0.07,0.18,0.07,0.07,0.19,0.07,0.11,0.07,0.1,0.2,0.06,0.12,0.07,0.08,0.06,0.25,0.14,0.1,0.06,0.12,0.23,0.15,0.07,0.07,0.06,0.19,0.11,0.08,0.07,0.09,0.21,0.16,0.07,0.06,0.06,0.18,0.19,0.07,0.12,0.12,0.21,0.2,0.09,0.16,0.1,0.24,0.2,0.19,0.12,0.06,0.23,0.13,0.09,0.12,0.14,0.12,0.25,0.12,0.14,0.07,0.07,0.35,0.12,0.05,0.12,0.15,0.25,0.07,0.1,0.13,0.14,0.43,0.07,0.06,0.07,0.14,0.25,0.08,0.07,0.08,0.07,0.31,0.11,0.08,0.05,0.06,0.26,0.06,0.08,0.05,0.07,0.32,0.17,0.07,0.16,0.17,0.9,0.15,0.17,0.13,0.07,0.1,0.21,0.08,0.07,0.1,0.08,0.2,0.1,0.07,0.2,0.18,0.28,0.19,0.2,0.18,0.15,0.2,0.08,0.08,0.1,0.12,0.2,0.09,0.2,0.15,0.24,0.28,0.23,0.23,0.07,0.17,0.19,0.09,0.1,0.12,0.1,0.13,0.22,0.05,0.06,0.17,0.07,0.2,0.06,0.12,0.17,0.06,0.21,0.57,0.07,0.17,0.09,4.72,0.11,0.09,0.15,0.06,0.22,0.08,0.1,3.69,0.07,0.2,0.07,0.15,0.12,0.07,0.16,0.16,0.07,0.11,0.05,0.07,0.21,0.08,0.14,0.06,0.09,0.21,0.13,0.22,0.07,0.07,0.2,0.08,0.2,0.11,0.07,0.23,0.09,0.15,0.06,0.11,0.22,0.14,0.15,0.12,0.1,0.2,0.11,0.18,0.1,0.09,0.07,0.23,0.15,0.1,0.1,0.12,0.2,0.11,0.12,0.07,0.1,0.23,0.17,0.11,0.08,0.09,0.25,0.13,0.1,0.1,0.07,0.3,0.12,0.09,0.08,0.08,0.2,0.13,0.07,0.12,0.06,0.24,0.16,0.06,0.08,0.08,0.23,0.14,0.1,0.11,0.07,0.08,0.35,0.07,0.08,0.09,0.07,0.27,0.08,0.1,0.07,0.26,0.24,0.11,0.11,0.09,0.06,0.25,0.08,0.07,0.15,0.1,0.28,0.13,0.16,0.07,0.15,0.31,0.14,0.15,0.15,0.14,0.38,0.17,0.15,0.15,0.17,0.15,0.36,0.13,0.1,0.19,0.24,0.25,0.17,0.19,0.13,0.22,0.31,0.16,0.16,0.15,0.2,0.29,0.16,0.2,0.17,0.22,0.35,0.14,0.15,0.17,0.24,0.32,0.16,0.15,0.17,0.2,0.28,0.18,0.16,0.21,0.21,0.16,0.3,0.18,0.17,3.07,0.21,0.3,0.16,0.16,0.2,0.16,0.3,0.18,0.15,0.22,0.21,0.3,0.15,0.16,0.26,0.16,0.3,0.15,0.16,0.2,0.39,0.3,0.16,0.18,0.24,0.17,0.3,0.15,0.17,0.26,0.15,0.15,0.32,0.17,0.26,0.15,0.16,0.29,0.22,0.2,0.17,0.16,0.29,0.18,0.2,0.15,0.2,0.31,0.16,0.2,0.17,0.19,0.3,0.23,0.2,0.16,0.15,0.32,0.17,0.24,0.15,0.19,0.29,0.15,0.17,0.15,0.15,0.17,0.29,0.24,0.22,0.16,0.17,0.28,0.24,0.17,0.15,0.16,0.3,0.24,0.15,0.19,0.15,0.35,0.19,0.2,0.19,0.15,0.3,0.24,0.2,0.15,0.15,0.33,0.24,0.17,0.17,0.16,0.35,0.24,0.17,0.15,0.17,0.15,0.41,0.16,0.16,0.15,0.16,0.41,0.19,0.2,0.15,0.27,0.41,0.14,0.17,0.18,0.17,0.39,0.19,0.15,0.42,0.15,0.35,0.17,0.15,0.16,0.15,0.28,0.12,0.1,0.12,0.1,0.24,0.13,0.07,0.07,0.07,0.11,0.21,0.98,0.07,0.18,0.14,0.23,0.1,0.07,0.07,0.14,0.22,0.08,0.07,0.1,0.12,0.22,0.08,0.07,0.1,1.18,0.24,0.08,0.09,0.09,0.16,0.24,0.09,0.08,0.09,0.12,0.22,0.08,0.08,0.12,0.15,0.09,0.21,0.08,0.1,0.1,0.09,0.21,0.07,0.09,0.1,0.08,0.22,0.08,0.1,0.11,0.1,0.2,0.07,0.09,0.16,0.07,3.72,0.1,0.09,0.14,0.08,0.2,0.07,0.13,0.12,0.07,0.22,0.08,0.07,0.16,0.07,0.08,0.24,0.09,0.12,0.07,0.07,0.24,0.09,0.11,0.07,0.08,0.23,0.06,0.11,0.08,0.07,0.21,0.1,0.14,0.07,0.09,0.2,0.17,0.11,0.08,0.07,0.21,0.05,0.13,0.07,0.07,0.2,0.09,0.14,0.07,0.07,0.07,0.2,0.13,0.1,0.07,0.07,0.2,0.23,0.07,0.06,0.09,0.23,0.13,0.1,0.06,0.09,0.29,0.16,0.07,0.07,0.06,0.2,0.13,0.07,0.07,0.08,0.18,0.1,0.1,0.07,0.06,0.19,0.11,0.07,0.1,0.08,0.19,0.08,0.07,0.09,0.08,0.07,0.27,0.07,0.1,0.07,0.18,0.23,0.09,0.09,0.04,0.07,0.26,0.09,0.06,0.08,0.09,0.26,0.09,0.09,0.07,0.05,0.31,0.07,0.08,0.05,0.09,0.33,0.07,0.07,0.07,0.06,0.1,0.24,0.09,0.06,0.11,0.12,0.22,0.07,0.1,0.07,0.15,0.21,0.14,0.07,0.07,0.13,0.22,0.05,0.07,0.08,0.12,0.23,0.08,0.09,0.07,0.11,0.22,0.08,0.07,0.07,0.14,0.21,0.09,0.06,0.2,0.17,0.24,0.13,0.1,0.1,0.17,0.07,0.25,0.05,0.1,0.12,0.1,0.22,0.09,0.07,0.1,0.11,0.19,0.08,0.1,0.11,0.08,0.2,0.07,0.06,0.1,0.09,0.23,0.07,0.1,0.09,0.06,0.21,0.07,0.07,0.14,0.08,0.21,0.07,0.1,0.11,0.06,0.06,0.21,0.06,0.11,0.07,0.05,0.2,0.07,0.16,0.07,0.06,0.22,0.05,0.11,0.05,0.07,0.19,0.15,0.12,0.09,0.05,0.22,0.06,0.13,0.04,0.07,0.22,0.05,0.17,0.09,0.05,0.06,0.21,0.19,0.12,0.35,0.17,0.21,0.17,0.05,0.11,0.09,0.21,0.12,0.12,0.1,0.06,0.4,0.14,0.13,0.07,0.09,0.22,0.15,0.1,0.08,0.08,0.24,0.1,0.06,0.08,0.07,0.22,0.14,0.07,0.09,0.06,0.07,0.29,0.44,0.07,0.08,0.08,0.25,0.08,0.1,0.06,0.17,0.29,0.08,0.16,0.14,0.11,0.33,0.12,0.12,0.07,0.07,0.3,0.13,0.05,0.19,0.12,0.58,0.27,0.09,0.16,0.05,0.16,0.21,0.09,0.06,0.15,0.21,0.23,0.23,0.84,0.22,0.43,0.45,0.15,0.09,0.07,0.2,0.22,0.13,0.09,0.15,0.18,0.27,0.1,0.15,0.32,0.21,0.22,0.09,0.2,0.31,0.28,0.59,0.29,0.15,0.15,0.22,0.28,0.31,0.22,0.27,0.42,0.14,0.56,0.46,0.45,0.64,0.3,0.32,0.17,0.24,0.23,0.77,0.3,0.17,0.16,0.29,0.18,0.29,0.18,0.15,0.25,0.17,0.32,0.16,0.16,0.31,0.14,4.82,0.22,0.33,2.11,0.15,0.31,0.14,0.15,0.23,0.15,0.22,0.27,0.18,0.2,0.14,0.15,0.29,0.16,0.2,0.15,0.13,0.29,0.19,0.22,0.2,0.15,0.29,0.17,0.23,0.17,0.17,0.27,0.22,0.24,0.17,0.17,0.27,0.15,0.2,0.16,0.15,0.3,0.15,0.22,0.14,0.15,0.14,0.28,0.2,0.16,0.15,0.15,0.27,0.29,0.19,0.16,0.16,0.28,0.23,0.12,0.15,0.14,0.34,0.2,0.16,0.16,0.14,0.26,0.17,0.15,0.17,0.15,0.3,0.18,0.14,0.32,0.15,0.29,0.18,0.15,0.15,0.21,0.26,0.32,0.25,0.2,0.25,0.28,0.35,0.16,0.19,0.55,0.42,0.37,0.25,0.15,0.15,0.15,0.33,0.15,0.16,0.21,0.18,0.33,0.17,0.14,0.29,0.2,0.37,0.17,0.16,0.15,0.17,0.4,0.15,0.15,0.17,0.15,0.21,0.38,0.32,0.14,0.22,0.15,0.83,0.08,0.28,0.1,0.23,0.26,0.07,0.07,0.07,0.11,0.2,0.1,0.07,0.07,0.11,0.19,0.07,0.07,0.06,0.12,0.46,0.05,0.08,0.06,0.18,0.22,0.07,0.07,0.23,0.12,0.07,0.25,0.07,0.24,0.33,0.1,0.25,0.18,0.05,0.2,0.18,0.54,0.16,0.28,0.11,0.07,0.19,0.07,0.05,0.12,0.06,0.21,0.06,0.09,0.08,0.05,0.2,0.05,0.15,0.13,0.05,0.18,0.06,0.05,0.1,0.05,0.05,0.22,0.07,0.15,0.05,0.06,0.2,0.07,0.12,0.04,0.07,0.18,0.09,0.15,0.07,0.05,0.34,0.12,0.12,0.17,0.15,0.2,0.1,0.09,0.07,0.05,0.2,0.05,0.1,0.06,0.05,0.24,0.2,0.15,0.13,0.06,0.07,0.19,0.12,0.12,0.06,0.17,0.32,0.23,0.05,0.07,0.07,0.22,0.11,0.07,0.07,0.1,0.34,0.13,0.07,0.07,0.07,0.2,0.12,0.12,0.19,0.06,0.34,0.18,0.13,0.09,0.09,0.23,0.25,0.08,0.08,0.1,0.19,0.32,0.22,0.31,0.12,0.1,0.22,0.07,0.06,0.06,0.14,0.3,0.09,0.17,0.08,0.09,0.27,0.1,0.11,0.23,0.12,0.28,0.11,0.14,0.08,0.07,0.25,0.1,0.06,0.07,0.08,0.14,0.2,0.05,0.07,0.05,0.09,0.21,0.08,0.05,0.16,0.12,0.23,0.05,0.07,0.17,0.12,0.25,0.14,0.06,0.06,0.1,0.22,0.07,0.08,0.1,0.16,0.21,0.05,0.07,0.09,0.1,0.2,0.17,0.29,0.19,0.15,0.18,0.28,0.15,0.17,0.1,0.06,0.2,0.05,0.05,0.22,0.12,0.29,0.07,0.2,0.15,0.05,0.3,0.12,0.05,0.11,0.09,0.33,0.3,0.08,0.17,0.08,0.21,0.07,0.06,0.14,0.09,4,1.07,0.18,0.16,0.09,0.07,0.4,0.23,0.1,0.07,0.08,0.2,0.07,0.09,0.07,0.08,0.21,0.05,0.11,0.07,0.07,0.21,0.07,0.15,0.07,0.07,0.2,0.08,0.15,0.07,0.06,0.21,0.18,0.09,0.06,0.04,0.2,0.06,0.12,0.05,0.07,0.05,0.21,0.17,0.06,0.05,0.06,0.2,0.48,0.09,0.05,0.06,0.21,0.16,0.06,0.08,0.06,0.17,0.12,0.08,0.07,0.08,0.28,0.13,0.07,0.08,0.09,0.21,0.11,0.07,0.06,0.05,0.2,0.08,0.08,0.06,0.06,0.19,0.14,0.08,0.07,0.42,0.05,0.31,0.05,0.05,0.04,0.07,0.26,0.07,0.06,0.06,0.16,0.3,0.06,0.07,0.06,0.06,0.24,0.05,0.06,0.07,0.06,0.29,0.1,0.13,0.11,0.06,0.27,0.07,0.06,0.06,0.08,0.32,0.07,0.09,0.06,0.08,0.23,0.05,0.05,0.07,0.21,0.19,0.24,0.08,0.16,0.1,0.53,0.22,0.1,0.07,0.07,0.2,0.23,0.1,0.07,0.15,0.24,0.45,0.48,0.27,0.09,0.42,0.23,0.12,0.22,0.18,0.11,0.24,0.15,0.16,0.14,0.18,0.26,0.12,0.14,0.15,0.19,0.13,0.26,0.14,0.13,0.15,0.12,0.3,0.14,0.15,0.18,0.17,0.26,0.15,0.13,0.21,0.14,0.28,0.14,0.14,0.22,0.16,0.27,0.14,0.21,0.4,0.16,0.28,0.13,0.14,0.2,0.17,0.14,0.25,0.28,0.17,0.16,0.15,0.27,0.14,0.22,0.15,0.14,0.28,0.17,0.19,0.13,0.15,0.29,0.15,0.22,0.2,0.14,0.29,0.25,0.19,0.17,0.15,0.28,0.13,0.19,0.14,0.13,0.28,0.16,0.19,0.14,0.16,0.29,0.15,0.22,0.18,0.17,0.14,0.29,0.21,0.14,0.15,0.14,0.29,0.22,0.15,0.14,0.15,0.34,0.25,0.15,0.15,0.13,0.29,0.17,0.55,0.16,0.14,0.28,0.22,0.15,0.2,0.14,0.27,0.19,0.17,0.18,0.13,0.38,0.25,0.14,0.14,0.17,0.26,0.19,0.15,0.16,0.14,0.34,0.19,0.15,0.15,0.14,0.17,0.36,0.17,0.14,0.16,0.18,0.31,0.15,0.15,0.15,0.17,0.34,0.16,0.15,0.14,0.16,0.81,0.18,0.16,0.15,0.16,0.33,0.15,0.15,0.14,0.2,0.32,0.16,0.13,0.12,0.18,0.31,0.16,0.14,0.14,0.17,0.2,0.31,0.12,0.14,0.12,0.17,0.24,0.05,0.06,0.07,0.1,0.21,0.07,0.06,0.06,0.14,0.21,0.06,0.06,0.12,0.14,0.18,0.07,0.07,0.08,0.1,0.21,0.06,0.05,0.04,0.11,0.22,0.07,0.06,0.07,0.12,0.19,1.7,0.07,0.06,0.17,0.08,0.22,0.06,0.07,0.12,0.07,0.19,0.07,0.13,0.1,0.07,5.05,0.05,0.09,0.12,0.09,0.73,0.06,0.07,0.1,0.06,0.18,0.06,0.07,0.19,0.09,0.19,0.07,0.07,0.12,0.04,0.23,0.08,0.05,0.1,0.05,0.05,0.2,0.14,0.17,0.07,0.06,0.2,0.06,0.12,0.08,0.06,0.2,0.08,0.11,0.05,0.07,0.2,0.05,0.1,0.11,0.83,0.2,0.07,0.11,0.06,0.07,0.22,0.05,0.1,0.06,0.08,0.21,0.18,0.11,0.07,0.07,0.21,0.05,0.13,0.07,0.07,0.06,0.22,0.1,0.08,0.06,0.07,0.2,0.14,0.07,0.07,0.07,0.2,0.14,0.06,0.05,0.07,0.2,0.14,0.09,0.07,0.07,0.27,0.13,0.05,0.06,0.1,0.2,0.14,0.07,0.07,0.07,0.19,0.12,0.05,0.07,0.06,0.2,0.09,0.1,0.07,0.07,0.07,0.26,0.05,0.1,0.07,0.07,0.23,0.06,0.06,0.07,0.12,0.23,0.1,0.05,0.07,0.08,0.28,0.06,0.05,0.05,0.07,0.28,0.06,0.07,0.05,0.07,0.25,0.09,0.06,0.07,0.05,0.26,0.07,0.06,0.07,0.06,0.28,0.08,0.07,0.06,0.17,0.29,0.07,0.08,0.08,0.08,0.12,0.22,0.05,0.08,0.08,0.12,0.2,0.06,0.06,0.07,0.12,0.22,0.06,0.06,0.07,0.16,0.22,0.05,0.07,0.06,0.1,0.18,0.07,0.08,0.12,0.12,0.23,0.08,0.1,0.11,0.14,0.18,0.09,0.08,0.08,0.14,0.2,0.09,0.07,0.07,0.12,0.08,0.22,0.08,0.09,0.16,0.11,0.19,0.09,0.05,0.12,0.09,0.22,0.07,0.13,0.12,0.08,0.23,0.06,0.07,0.1,0.08,0.23,0.09,0.1,0.13,0.08,0.21,0.06,0.07,0.11,0.1,0.1,0.2,0.05,0.16,0.06,0.07,0.2,0.07,0.13,0.06,0.09,0.22,0.18,0.16,0.05,0.06,0.22,0.07,0.17,0.09,0.08,0.23,0.16,0.22,0.08,0.08,0.24,0.1,0.17,0.12,0.12,0.24,0.13,0.13,0.09,0.1,0.21,0.12,0.12,0.08,0.1,0.09,0.34,0.12,0.09,0.1,0.09,0.23,0.11,0.09,0.1,0.08,0.23,0.11,0.07,0.07,0.06,0.22,0.1,0.08,0.12,0.07,0.45,0.16,0.1,0.1,0.08,0.2,0.14,0.1,0.07,0.07,0.27,0.15,0.1,0.07,0.07,0.23,0.2,0.1,0.09,0.1,0.08,0.68,6.06,0.08,0.07,0.11,1.28,0.11,0.08,0.09,0.09,0.35,0.12,0.12,0.13,0.12,0.3,0.15,0.11,0.1,0.18,0.36,0.16,0.11,0.13,0.13,0.35,0.12,0.15,0.11,0.14,0.31,0.13,0.12,0.16,0.15,0.34,0.14,0.18,0.11,0.13,0.19,0.3,0.15,0.16,0.17,0.21,0.29,0.15,0.17,0.22,0.2,0.32,0.17,0.17,0.18,0.22,4.9,0.21,0.15,0.17,0.44,0.28,0.15,0.16,0.16,0.21,0.3,0.18,0.21,0.15,0.22,0.3,0.15,0.14,0.13,0.21,0.3,0.19,0.17,0.22,0.2,0.16,0.32,0.16,0.13,0.24,0.17,0.3,0.17,0.17,0.22,0.18,0.29,0.15,0.15,0.19,0.14,0.3,0.15,0.17,0.21,0.29,0.28,0.14,0.17,0.19,0.14,0.26,0.15,0.21,0.22,0.15,0.26,0.15,0.16,0.19,0.13,0.18,0.32,0.15,0.23,0.16,0.14,0.29,0.15,0.23,0.16,0.16,0.3,0.15,0.25,0.16,0.15,0.3,0.14,0.2,0.17,0.16,0.3,0.22,0.22,0.14,0.16,0.28,0.15,0.25,0.17,0.15,0.34,0.17,0.2,0.17,0.15,0.15,0.31,0.21,0.15,0.18,0.17,0.31,0.21,0.17,0.18,0.16,0.3,0.2,0.18,0.17,0.16,0.4,0.31,0.17,0.17,3.2,0.32,0.25,0.16,0.15,0.17,0.31,0.23,0.56,0.57,0.16,0.31,0.25,0.17,0.15,0.16,0.28,0.2,0.14,0.14,0.17,0.16,0.37,0.16,0.18,0.16,0.16,0.33,0.09,0.08,0.06,0.05,0.23,0.06,0.09,0.07,0.07,0.26,0.07,0.08,0.07,0.07,0.26,0.43,0.18,0.08,0.69,0.42,0.09,0.07,0.07,0.06,0.27,0.07,0.04,0.06,0.11,0.28,0.07,0.06,0.07,0.07,0.16,0.21,0.07,0.09,0.06,0.13,0.2,0.06,0.07,0.6,0.12,0.19,0.04,0.37,0.06,0.12,0.22,0.05,0.06,0.22,0.08,0.21,0.06,0.09,0.12,0.12,0.42,0.06,0.09,0.12,0.22,0.34,0.08,0.07,0.08,0.09,0.22,0.05,0.18,0.07,0.1,0.09,0.22,0.07,0.13,0.14,0.05,0.36,0.08,0.06,0.11,0.08,0.21,0.06,0.1,0.14,0.05,0.2,0.2,0.09,0.13,0.07,0.2,0.09,0.08,0.09,0.1,0.19,0.07,0.07,0.19,0.05,0.22,0.07,0.08,0.16,0.07,0.2,0.05,0.09,0.1,0.06,0.07,0.2,0.1,0.16,0.08,0.1,0.22,0.1,0.14,0.1,0.06,0.23,0.07,0.11,0.09,0.05,0.19,0.05,0.16,0.05,0.09,0.2,0.06,0.12,0.05,0.05,0.28,0.07,0.15,0.07,0.07,0.22,0.15,0.11,0.07,0.11,0.2,0.08,0.13,0.08,0.1,0.05,0.22,0.1,0.06,0.07,0.06,0.19,0.12,0.05,0.09,0.06,0.2,0.12,0.05,0.07,0.04,0.18,0.09,0.08,0.05,0.07,0.32,0.12,0.1,0.04,0.06,0.18,0.17,0.03,0.05,0.07,0.17,0.1,0.07,0.04,0.06,0.22,0.11,0.08,0.07,0.07,0.1,0.25,0.04,0.05,0.06,0.05,0.23,0.07,0.11,0.06,0.14,0.25,0.07,0.06,0.07,0.04,0.27,0.08,0.08,0.07,0.07,4.88,0.11,0.07,0.05,1.45,0.27,0.07,0.59,0.06,0.07,0.25,0.07,0.06,0.07,0.07,0.25,0.08,0.11,0.07,0.18,0.13,0.24,0.09,0.06,0.06,0.09,0.21,0.07,0.09,0.05,0.09,0.2,0.05,0.05,0.08,0.12,0.19,0.1,0.07,0.05,0.15,0.22,0.06,0.07,0.38,0.12,0.19,0.08,0.08,0.15,0.15,0.2,0.07,0.05,0.05,0.12,0.2,0.07,0.06,0.07,0.14,0.05,0.2,0.07,0.07,0.12,0.07,0.2,0.1,0.07,0.12,0.07,0.25,0.07,0.05,0.19,0.06,0.26,0.05,0.16,0.11,0.08,0.21,0.07,0.08,0.1,0.09,0.23,0.05,0.07,0.1,0.07,0.19,0.06,0.06,0.15,0.05,0.07,0.2,0.05,0.12,0.05,0.08,0.19,0.05,0.11,0.08,0.05,0.18,0.11,0.19,0.09,0.08,0.19,0.05,0.15,0.06,0.08,0.21,0.07,0.12,0.08,0.06,0.23,0.07,0.14,0.08,0.08,0.22,0.07,0.18,0.06,0.07,0.2,0.07,0.13,0.05,0.07,0.07,0.25,0.12,0.09,0.11,0.08,0.19,0.09,0.05,0.05,0.09,0.2,0.1,0.09,0.12,0.08,0.29,0.13,0.13,0.16,0.17,0.23,0.24,0.07,0.14,0.12,0.25,0.16,0.1,0.07,0.1,0.38,0.19,0.16,0.15,0.17,0.25,0.19,0.12,0.15,0.14,0.12,0.34,0.15,0.14,0.15,0.13,0.33,1.05,0.15,0.15,0.15,0.33,0.12,0.14,0.15,0.13,0.35,0.13,0.14,0.15,0.21,0.3,0.16,0.16,0.14,0.16,0.36,0.12,0.13,0.13,0.16,0.32,0.14,0.15,0.13,0.17,0.34,0.14,0.16,0.15,0.12,0.19,0.27,0.14,0.15,0.15,0.2,0.29,0.13,0.15,0.23,0.24,0.26,0.16,0.14,0.12,0.24,0.29,0.15,0.16,0.16,0.2,0.29,0.15,0.14,0.2,0.19,0.29,0.13,0.15,0.15,0.2,0.29,0.15,0.16,0.18,0.22,0.25,0.16,0.17,0.2,0.22,0.15,0.27,0.14,0.13,0.19,0.15,0.29,0.15,0.13,0.18,0.12,0.25,0.15,0.14,0.2,0.13,0.29,0.15,0.13,0.24,0.17,0.26,0.17,0.16,0.18,0.14,0.3,0.14,0.19,0.19,0.16,0.14,0.28,0.14,0.21,0.17,0.15,0.29,0.14,0.2,0.17,0.15,0.27,0.14,0.19,0.17,0.27,0.29,0.15,0.18,0.13,0.16,0.28,0.15,0.2,0.18,0.13,0.27,0.24,0.19,0.15,0.15,0.3,0.14,0.19,0.17,0.15,0.27,0.15,0.24,0.12,0.13,0.15,0.28,0.2,0.12,0.13,0.07,0.2,0.16,0.05,0.05,0.05,0.2,0.1,0.05,0.07,0.07,0.27,0.12,0.04,0.05,0.07,0.18,0.1,0.05,0.06,0.06,0.2,0.16,0.07,0.09,0.05,4.74,0.19,0.05,5.85,0.05,0.2,0.12,0.07,0.06,0.06,0.07,0.32,0.07,0.05,0.06,0.16,0.25,0.07,0.05,0.05,0.05,0.27,0.06,0.06,0.09,0.03,0.23,0.05,0.1,0.06,0.07,0.31,0.15,0.08,0.06,0.09,0.29,0.05,0.12,0.05,0.07,0.26,0.07,0.06,0.06,0.11,0.28,0.09,0.06,0.06,0.05,0.13,0.2,0.07,0.06,0.08,0.13,0.21,0.09,0.05,0.06,0.1,0.19,0.07,2.34,0.09,0.12,0.19,0.05,0.09,0.05,0.12,0.21,0.07,0.08,0.15,0.16,0.2,0.07,0.07,0.07,0.09,0.19,0.08,0.07,0.08,0.09,0.21,0.04,0.05,0.07,0.12,0.07,0.26,0.06,0.06,0.11,0.05,0.21,0.07,0.09,0.13,0.07,0.2,0.07,0.2,0.14,0.1,0.22,0.07,0.05,0.12,0.11,0.21,0.05,0.06,0.15,0.06,0.19,0.08,0.07,0.12,0.1,0.18,0.08,0.07,0.15,0.05,0.16,0.1,0.07,0.1,0.06,0.06,0.21,0.16,0.12,0.06,0.07,0.2,0.06,0.1,0.08,0.08,0.2,0.06,0.1,0.06,0.08,0.2,0.08,0.14,0.09,0.09,0.2,0.07,0.18,0.07,0.05,0.2,0.07,0.11,0.06,0.06,0.07,0.3,0.14,0.08,0.07,0.04,0.21,0.11,0.05,0.06,0.05,0.19,0.19,0.07,0.05,0.08,0.17,0.12,0.05,1.13,1.18,0.21,0.1,0.07,0.07,0.06,0.23,0.12,0.08,0.06,0.96,0.28,0.11,0.66,0.08,0.08,0.19,0.97,0.08,0.07,0.05,0.07,0.26,0.07,0.07,0.1,0.05,0.26,0.07,0.09,0.26,3.16,0.29,0.06,0.35,0.07,0.05,0.26,0.14,0.07,0.1,0.15,0.27,0.05,0.06,0.47,0.07,0.27,0.08,0.25,0.07,0.07,0.69,0.07,0.03,0.1,0.06,0.25,0.08,0.14,0.06,0.07,0.28,0.2,0.06,0.07,3.42,0.12,0.19,0.06,0.13,0.13,0.1,1.32,0.08,0.08,0.07,0.14,0.2,0.06,0.05,0.07,0.14,0.2,0.07,0.05,0.08,0.15,0.23,0.08,0.11,1,0.53,0.24,0.35,0.05,0.08,0.12,0.75,0.32,0.07,0.33,0.13,0.08,0.21,0.23,0.07,0.1,0.47,0.2,0.06,0.05,0.1,0.07,0.18,0.1,0.08,0.14,0.08,0.21,0.12,0.06,0.13,0.07,0.2,0.09,0.65,0.11,0.07,0.22,0.07,0.14,0.17,0.05,0.2,0.15,0.07,0.17,0.09,0.26,0.08,0.07,0.14,0.24,0.07,0.22,0.07,1.92,0.09,0.09,0.24,0.1,0.17,0.12,0.12,0.22,0.1,0.43,0.17,0.1,0.25,0.78,0.7,0.15,0.18,0.25,0.15,0.2,0.14,0.16,0.28,0.13,0.35,0.16,0.11,0.27,0.12,0.26,0.15,0.08,0.17,5,1.52,0.12,0.17,0.15,0.28,0.19,0.57,0.16,0.14,0.35,0.27,2.63,0.16,0.18,0.29,0.22,0.17,0.13,0.16,0.31,0.2,0.17,0.15,0.16,0.3,0.22,0.17,0.17,3.92,0.28,0.26,0.15,0.15,0.17,0.31,0.22,0.15,0.16,0.16,0.21,0.42,0.15,0.18,0.16,0.14,0.35,0.15,0.18,0.15,0.17,0.34,0.2,0.16,0.15,0.14,0.35,0.18,0.15,0.17,0.16,0.35,3.13,0.17,0.16,0.17,0.34,0.16,0.16,0.16,0.24,0.36,0.15,0.15,0.15,0.16,0.35,0.15,0.16,0.25,0.15,0.2,0.29,0.17,0.15,0.17,0.2,0.32,0.17,0.17,0.15,0.2,0.31,0.14,0.15,0.16,0.2,0.29,0.17,0.16,0.22,0.24,0.3,0.16,0.19,0.17,0.2,0.29,0.16,0.14,0.15,0.2,0.28,0.17,0.14,0.15,0.2,0.3,0.17,0.15,0.18,0.21,0.3,0.16,0.18,0.18,0.23,0.16,0.3,0.15,0.2,0.2,0.16,0.31,0.16,0.15,0.21,0.14,0.28,0.16,0.14,0.24,0.15,0.31,0.18,0.18,0.24,0.16,0.28,0.2,0.17,0.29,0.22,0.32,0.16,0.2,0.21,0.16,0.27,0.17,0.18,0.17,0.43,0.12,0.24,0.08,0.11,0.09,0.07,0.25,0.08,0.13,0.08,0.1,0.2,0.06,0.11,0.08,0.1,0.23,0.1,0.18,0.07,0.07,0.2,0.06,0.15,0.1,0.06,0.2,0.13,0.2,0.11,0.07,0.2,0.1,0.09,0.09,0.07,0.07,0.21,0.14,0.07,0.06,0.09,0.2,0.1,0.09,0.05,0.1,0.23,0.21,0.08,0.06,0.06,0.21,0.12,0.08,0.08,0.07,0.3,0.16,0.09,0.07,0.05,0.2,0.13,0.07,0.11,0.08,0.23,0.18,0.1,0.08,0.07,0.2,0.23,0.07,0.09,0.08,0.06,0.29,0.07,0.09,0.08,0.06,0.33,0.09,0.05,0.07,0.13,0.29,0.07,0.09,0.06,0.11,0.27,0.09,0.07,0.06,0.08,0.29,0.07,0.06,0.08,0.07,0.24,0.1,0.08,0.09,0.06,0.34,0.08,0.08,0.1,0.09,0.12,0.2,0.07,0.07,0.16,0.1,0.24,1.41,0.05,0.08,0.13,0.22,0.08,0.1,0.07,0.15,0.25,0.08,0.08,0.07,1.13,0.23,0.07,0.1,0.1,0.2,0.22,0.06,0.15,0.13,0.2,0.19,0.08,0.1,0.11,0.1,0.06,0.26,0.09,0.05,0.1,0.08,0.23,0.07,0.07,0.09,0.08,0.21,0.07,0.05,0.14,11.87,1.05,0.1,0.06,0.19,0.08,0.21,0.07,0.07,0.15,0.06,0.18,0.08,0.15,0.11,0.07,0.2,0.07,0.07,0.16,0.06,0.22,0.06,0.07,0.17,0.07,0.08,0.23,0.08,0.14,0.06,0.09,0.22,0.07,0.1,0.06,0.07,5.01,0.09,0.15,0.07,0.09,0.19,0.13,0.17,0.08,0.07,0.19,0.08,0.13,0.08,0.06,0.23,0.1,0.13,0.1,0.08,0.16,0.12,0.12,0.09,0.1,0.08,0.22,0.18,0.07,0.07,0.06,0.2,0.18,0.09,0.08,0.07,0.32,0.19,0.12,0.06,0.05,0.22,0.14,0.07,0.09,0.07,0.24,0.13,0.07,0.06,0.06,0.2,0.11,0.07,0.08,0.08,0.2,0.13,0.06,0.12,0.07,0.06,0.96,0.09,0.06,0.07,0.23,0.26,0.08,0.09,0.07,0.06,0.25,0.16,0.07,0.07,0.09,0.28,0.06,0.08,0.08,0.08,0.28,0.07,0.08,0.09,0.09,0.3,0.07,0.08,0.07,0.07,0.33,0.1,0.07,0.07,0.12,0.11,0.22,0.07,0.1,0.11,0.15,0.21,0.09,0.07,0.12,0.12,0.22,0.08,0.1,0.08,0.13,0.19,0.08,0.09,0.07,0.13,0.22,0.06,0.1,0.08,1,0.25,0.1,0.09,0.15,0.14,0.2,0.12,0.07,0.07,0.12,0.21,0.07,0.1,0.08,0.11,0.08,0.22,0.05,0.08,0.16,0.09,0.22,0.08,0.09,0.12,0.09,0.24,0.08,0.07,0.15,0.07,0.26,0.1,0.11,0.14,0.1,0.25,0.09,0.11,1.08,0.12,0.26,0.14,0.13,0.13,0.11,0.23,0.13,0.18,0.13,0.11,0.15,0.25,0.09,0.12,0.1,0.22,0.23,0.1,0.18,0.12,0.15,0.28,0.18,0.21,0.16,0.18,0.28,0.11,0.28,0.15,0.15,0.28,0.19,0.23,0.15,0.18,0.29,0.15,0.2,0.16,0.18,0.3,0.19,0.2,0.15,0.18,0.29,0.17,0.21,0.17,0.17,0.15,0.34,0.2,0.17,0.15,0.15,0.29,0.27,0.15,0.17,0.16,0.31,0.21,0.15,0.15,0.16,0.31,0.19,0.15,0.16,0.17,0.29,0.22,0.17,0.15,0.17,0.28,0.22,0.14,0.15,0.16,0.35,0.19,0.16,0.16,0.15,0.27,0.28,0.15,0.16,0.15,0.19,0.4,0.14,0.15,0.16,0.16,0.33,0.17,0.15,0.17,0.17,0.39,0.18,0.15,0.15,0.17,0.35,0.22,0.13,0.15,0.22,0.36,0.16,0.15,0.15,0.15,0.36,0.15,0.17,0.14,0.16,0.35,0.15,0.15,0.15,0.14,0.24,0.29,0.15,0.15,0.17,0.21,0.32,0.14,0.15,0.18,0.28,0.29,0.17,0.18,0.26,0.24,0.29,0.15,0.14,0.16,0.17,0.29,0.15,0.16,0.15,0.2,0.3,0.14,0.16,0.16,0.21,0.28,0.16,0.17,0.15,0.21,0.3,0.14,0.24,0.22,0.22,0.3,0.15,0.15,0.21,0.18,0.16,0.3,0.16,0.17,0.22,1.12,0.29,0.17,0.15,0.21,0.16,0.29,0.17,0.15,0.18,0.15,0.24,0.1,0.1,0.13,0.06,0.23,0.05,0.06,0.16,0.05,5.76,0.15,0.12,0.1,0.08,0.2,0.08,0.05,0.1,0.08,0.22,0.08,0.05,0.15,0.08,0.08,0.22,0.05,0.14,0.05,0.08,0.24,0.07,0.19,0.08,0.07,0.2,0.09,0.1,0.07,0.1,0.22,0.21,0.12,0.05,0.07,0.19,0.07,0.12,0.08,1.21,0.22,0.07,0.15,0.24,0.42,0.22,0.07,0.16,0.07,0.1,0.2,0.12,0.18,0.08,0.11,0.23,0.07,0.16,0.05,0.09,0.93,0.25,0.14,0.07,0.11,0.07,0.21,0.13,0.09,0.07,0.05,0.22,0.12,0.05,0.07,0.05,0.23,0.13,0.06,0.08,0.11,0.17,0.14,0.05,0.08,0.1,0.24,0.16,0.1,0.07,0.12,0.29,0.12,0.05,0.07,0.05,0.08,0.29,0.07,0.06,0.08,0.07,0.3,0.07,0.1,0.07,0.07,0.24,0.07,0.08,0.07,0.1,0.22,0.05,0.07,0.07,0.06,0.23,0.07,0.06,0.07,0.13,0.24,0.07,0.09,0.06,0.05,0.22,0.07,0.09,0.05,0.08,0.29,0.07,0.06,0.07,0.07,0.25,0.06,0.06,0.07,0.07,0.18,0.21,0.05,0.06,0.07,0.16,0.19,0.07,0.08,0.11,0.15,0.2,0.05,0.08,0.08,0.11,0.24,0.09,0.5,0.06,0.1,0.2,0.09,0.05,0.1,0.16,0.21,0.06,0.09,0.08,0.17,0.22,0.12,0.06,0.08,0.12,0.05,0.22,0.07,0.14,0.16,0.07,0.22,0.05,0.06,0.12,0.07,0.19,0.07,0.08,0.12,0.05,0.2,0.05,0.06,0.5,0.07,0.19,0.09,0.07,0.14,0.07,0.22,0.07,0.07,0.11,0.04,0.21,0.07,0.11,0.13,0.08,0.2,0.07,0.06,0.12,0.07,0.25,0.6,0.07,0.1,0.06,0.07,0.19,0.07,0.12,0.06,0.09,0.23,0.08,0.12,0.06,0.05,0.22,0.07,0.11,0.09,0.07,0.2,0.25,0.13,0.05,0.06,0.19,0.06,0.13,0.07,0.06,0.2,0.05,0.14,0.07,0.07,0.21,0.07,0.17,0.07,0.07,0.16,0.13,0.12,0.07,0.05,0.07,0.2,0.1,0.05,0.07,0.06,0.23,0.11,0.07,0.07,0.06,0.19,0.15,0.07,0.08,0.09,0.2,0.14,0.04,0.07,0.1,0.23,0.16,0.45,0.06,0.09,0.23,0.16,0.07,0.07,0.07,0.24,0.13,0.08,0.07,0.1,0.37,0.32,0.07,0.08,0.05,0.08,0.23,0.07,0.08,0.09,0.07,0.27,0.08,0.09,0.07,0.07,0.25,0.07,0.07,0.09,0.08,0.36,0.06,0.06,0.07,0.07,0.25,0.07,0.09,0.09,0.11,0.27,0.08,0.06,0.07,0.11,0.26,0.08,0.07,0.07,0.06,0.15,0.25,0.05,0.08,0.07,0.17,0.2,0.06,0.09,0.09,0.16,0.25,0.1,0.09,0.07,0.12,0.19,0.13,0.11,0.16,0.71,4.82,0.16,0.08,0.11,0.12,0.19,0.1,0.17,0.13,0.12,0.2,0.12,0.1,0.11,0.15,0.11,0.3,0.19,0.14,0.21,0.09,0.25,0.13,0.08,0.13,0.12,0.25,0.16,0.33,0.25,0.15,0.27,0.13,0.15,0.23,0.19,0.28,0.15,1.82,0.21,0.15,0.3,0.12,0.15,0.18,0.15,0.31,0.14,0.13,0.17,0.15,0.13,0.27,0.16,0.2,0.17,0.18,0.29,0.19,0.3,0.13,0.13,0.28,0.13,0.2,0.16,0.15,0.28,0.15,0.22,0.17,0.14,0.29,0.15,0.22,0.15,0.13,0.3,0.14,0.22,0.15,0.14,0.27,0.15,0.22,0.15,0.13,0.14,0.34,0.25,0.16,0.15,0.14,0.28,0.2,0.15,0.13,0.14,0.29,0.62,0.15,0.15,0.18,0.29,0.18,0.15,0.13,0.14,0.26,0.18,0.14,0.13,0.12,0.27,0.17,0.13,0.13,0.14,0.33,0.2,0.85,0.16,0.17,0.12,0.34,0.12,0.14,0.12,0.13,0.33,0.14,0.14,0.15,0.15,0.33,0.13,0.17,0.17,0.17,0.44,0.13,0.15,0.14,0.14,0.32,0.14,0.12,0.13,0.18,0.32,0.16,0.15,0.17,0.15,0.32,0.14,0.14,0.15,0.14,0.72,0.4,0.14,0.14,0.16,0.23,0.29,0.16,0.14,0.14,0.2,0.29,0.13,0.13,0.17,0.2,0.3,0.14,0.14,0.19,0.19,0.67,0.1,0.09,0.08,0.15,0.19,0.06,0.07,0.07,0.14,0.17,0.05,0.05,0.04,0.14,0.05,0.21,0.07,0.06,0.11,0.04,0.21,0.07,0.07,0.12,0.08,0.18,0.05,0.15,0.11,0.05,0.2,0.07,0.04,0.09,0.07,0.21,0.04,0.06,0.1,0.06,0.18,0.07,0.07,0.11,0.05,0.23,0.05,0.04,0.11,0.06,0.07,0.2,0.09,0.12,0.07,0.07,0.21,0.14,0.12,0.32,0.41,0.2,0.05,0.12,0.08,0.09,0.2,0.09,0.18,0.08,0.05,0.22,0.05,0.1,0.05,0.05,0.25,0.1,0.76,0.06,0.05,0.19,0.07,0.1,0.07,0.06,0.22,0.12,0.11,0.05,0.06,0.08,0.19,0.17,0.06,0.07,0.08,0.24,0.11,0.33,0.07,0.04,0.2,0.15,0.07,0.07,0.06,0.19,0.15,0.06,0.07,0.07,0.21,0.11,0.07,0.06,0.08,0.24,0.16,0.06,0.09,0.06,0.21,0.1,0.06,0.07,0.05,0.05,0.23,0.05,0.08,0.05,0.07,0.25,0.05,0.09,0.07,0.1,0.25,0.06,0.08,0.07,0.06,0.26,0.05,0.06,0.09,0.15,0.26,0.05,0.06,0.06,0.07,0.28,0.06,0.08,0.07,0.07,0.25,0.05,0.04,0.04,0.1,0.27,0.21,0.1,0.09,0.07,0.1,0.19,0.07,0.05,0.05,0.15,0.2,0.1,0.07,0.17,0.11,0.18,0.07,0.07,0.07,0.11,4.88,0.17,0.06,0.05,0.16,0.21,0.06,0.07,0.07,0.12,0.2,0.04,0.07,0.07,0.21,0.18,0.07,0.07,0.08,0.16,0.07,0.18,0.06,0.17,0.14,0.06,0.2,0.07,0.1,0.1,0.1,0.22,0.05,0.07,0.08,0.07,0.17,0.06,0.05,0.11,0.07,0.18,0.06,0.05,0.08,0.07,0.17,0.05,0.06,0.1,0.04,0.18,0.09,0.14,0.2,0.05,0.06,0.92,0.07,0.14,0.09,0.06,0.19,0.08,0.12,0.07,0.07,0.2,0.07,0.12,0.08,0.05,0.22,0.1,0.2,0.06,0.08,0.18,0.05,0.15,0.07,0.09,0.24,0.1,0.13,0.07,0.1,0.18,0.06,0.1,0.09,0.08,0.08,0.22,0.11,0.07,0.35,0.03,0.2,0.12,0.08,0.05,0.07,0.18,0.11,0.07,0.05,0.09,0.23,0.15,0.07,0.05,0.04,0.25,0.09,0.05,0.07,0.08,0.2,0.14,0.08,0.07,0.08,0.22,0.12,0.05,0.06,0.06,0.18,0.1,0.09,0.06,0.06,0.07,0.4,0.07,0.05,0.08,0.07,0.26,0.05,0.07,0.08,0.1,0.2,0.08,0.05,0.07,0.06,0.26,0.07,0.07,0.07,0.08,0.27,0.08,0.07,0.17,0.07,0.28,0.04,0.09,0.07,0.05,0.27,0.07,0.07,0.07,0.07,0.24,0.05,0.05,0.1,0.12,0.27,0.09,0.05,0.06,0.07,0.12,0.22,0.04,0.08,0.07,0.14,0.21,0.1,0.1,0.08,0.21,0.24,0.1,0.12,0.15,0.17,0.26,0.06,0.09,0.12,0.15,0.22,0.09,0.14,0.23,0.17,0.25,0.12,0.15,0.09,0.12,0.3,0.14,0.14,0.17,0.21,0.15,0.3,0.16,0.15,0.23,0.15,0.32,0.15,0.13,0.21,0.15,0.28,0.16,0.13,0.17,0.14,0.27,0.13,0.21,0.21,0.15,0.29,0.13,0.12,1.42,0.12,0.27,0.15,0.13,0.18,0.16,0.28,0.15,0.13,0.18,0.14,0.15,0.29,0.17,0.21,0.15,0.14,0.27,0.13,0.22,0.15,0.13,0.27,0.2,0.21,0.14,0.13,0.3,0.15,0.24,0.15,0.17,0.28,0.16,0.18,0.15,0.15,0.27,0.15,1.29,0.16,0.15,0.28,0.13,0.18,0.16,0.14,0.14,0.31,0.22,0.17,0.15,0.16,0.4,9.14,6.91,0.15,0.15,0.3,0.65,0.16,0.15,0.15,0.29,0.24,0.14,0.15,0.16,0.3,0.2,0.16,0.17,0.16,0.3,0.24,0.14,0.16,0.13,0.29,0.2,0.14,0.15,0.15,0.2,0.41,0.15,0.17,0.16,0.16,0.39,0.15,0.15,0.13,0.15,0.36,0.14,0.17,0.17,0.15,0.35,0.15,0.14,0.12,0.16,0.33,0.15,0.15,0.17,0.15,0.31,0.15,0.14,0.13,0.24,0.36,0.15,0.14,0.17,0.16,0.33,1.56,0.15,0.14,0.16,3.45,1.82,0.14,0.14,0.14,0.2,0.28,0.15,0.12,0.11,0.21,0.23,0.11,0.07,0.07,0.1,0.18,0.09,0.1,0.13,0.12,0.21,0.07,0.08,0.08,0.11,0.2,0.07,0.07,0.1,0.1,0.22,0.05,0.07,0.06,0.14,0.21,0.07,0.08,0.05,0.12,0.21,0.06,0.07,0.07,0.12,0.1,0.21,0.07,0.14,0.11,0.07,0.2,0.05,0.07,0.16,0.07,0.25,0.05,0.05,0.15,0.07,0.22,0.06,0.07,0.1,0.08,0.2,0.09,0.08,0.13,0.06,0.2,0.07,0.07,0.13,0.05,0.2,0.05,0.13,0.1,0.07,0.18,0.09,0.08,0.09,0.06,0.08,0.25,0.07,0.13,0.09,0.07,0.18,0.06,0.1,0.04,0.05,0.2,0.07,0.18,0.05,0.06,0.19,0.06,0.11,0.05,0.07,0.17,0.2,0.17,0.05,0.06,0.23,0.05,0.14,0.05,0.06,0.04,0.19,0.1,0.07,0.07,0.05,0.21,0.11,0.06,0.07,0.05,0.22,0.11,0.09,0.05,0.05,0.21,0.11,0.06,0.04,0.07,0.29,0.09,0.06,0.06,0.08,0.19,0.11,0.07,0.12,0.06,0.19,0.1,0.08,0.07,0.07,0.21,0.13,0.05,0.06,0.08,0.2,0.14,0.06,0.06,0.05,0.07,0.26,0.08,0.06,0.05,0.11,0.29,0.1,0.06,0.05,0.05,0.25,0.06,0.07,0.07,0.07,0.22,0.07,0.05,0.05,0.06,0.23,0.07,0.06,0.09,0.09,0.25,0.06,0.06,0.07,0.07,0.27,0.07,0.07,0.06,0.13,0.23,0.06,0.07,0.06,0.06,0.14,0.19,0.07,0.06,0.08,0.16,0.17,0.07,0.06,0.07,0.14,0.18,0.23,0.07,0.07,0.08,0.19,0.07,0.05,0.07,0.12,0.19,0.07,0.07,0.1,0.1,0.18,0.07,0.07,0.07,0.11,0.2,0.07,0.49,0.07,0.13,0.2,0.1,0.08,0.05,0.1,0.07,0.22,0.06,0.09,0.15,0.07,0.2,0.05,0.07,0.1,0.07,0.22,0.07,0.11,0.12,0.06,0.2,0.06,0.09,0.17,0.06,0.2,0.07,0.09,0.16,0.07,0.19,0.07,0.1,0.1,0.06,0.32,0.1,0.07,0.1,0.06,0.07,0.2,0.06,0.13,0.06,0.07,0.2,0.12,0.12,0.08,0.07,0.22,0.06,0.17,0.13,0.12,1.35,0.93,0.17,0.09,0.08,0.18,0.1,0.16,0.1,0.09,0.22,0.1,0.18,0.07,0.18,0.16,0.13,0.11,0.07,0.07,0.07,0.35,0.13,0.08,0.08,0.07,0.19,0.12,0.08,0.06,0.07,0.21,0.12,0.1,0.08,0.07,0.2,0.12,0.07,0.06,0.08,0.2,0.1,0.07,0.07,0.07,0.21,0.13,0.07,0.06,0.07,0.34,0.17,0.09,0.08,0.07,0.09,0.4,0.1,0.07,0.07,0.07,0.3,0.06,0.08,0.05,0.07,5.1,0.12,0.08,0.08,0.07,0.36,0.06,0.07,0.07,0.07,0.25,0.07,0.1,0.07,0.12,0.25,0.09,0.07,0.09,0.12,0.3,0.08,0.09,0.07,0.1,0.13,0.24,0.1,0.09,0.08,0.19,0.23,0.12,0.09,0.1,0.22,0.24,0.15,0.16,0.16,0.22,0.3,0.17,0.14,0.22,0.19,0.26,0.13,0.13,0.15,0.2,0.31,0.16,0.14,0.15],"ram":[14.02,14.01,14.01,14.01,14.01,14.03,14.03,14.02,14.02,14.03,14.03,14.04,14.03,14.03,14.03,14.02,14.04,14.03,14.03,14.03,14.03,14.03,14.03,14.03,14.03,14.03,14.04,14.04,14.03,14.03,14.03,14.04,14.03,14.04,14.04,14.04,14.05,14.03,14.03,14.03,14.04,14.04,14.05,14.03,14.03,14.03,14.03,14.05,14.04,14.04,14.04,14.03,14.04,14.03,14.04,14.04,14.03,14.04,14.03,14.03,14.03,14.03,14.02,14.02,14.02,14.01,14.01,14.02,14.02,14.02,14.02,14.02,14.02,14.01,14.01,14.02,14.02,14.02,14.03,14.02,14,14.02,14.02,14.04,14.03,14.02,14.02,14.02,14.03,14.02,14.03,14.03,14.03,14.03,14.02,14.02,14.02,14.02,14.02,14.02,14.02,14.02,14.02,14.03,14.03,14.02,14.02,14.02,14.02,14.36,14.08,14.08,14.08,14.08,14.04,14.03,14.03,14.03,14.03,14.03,14.03,14.03,14.03,14.03,14.03,14,14,14,14,14.03,14.03,14.03,14.03,14.03,14.03,14.03,14.03,14.03,14.04,14.04,14.03,14.01,14.01,14.01,14.01,14.03,14.01,14.01,14.01,14.01,14.04,14.03,14.04,14.04,14.04,14.02,14.01,14.01,14.01,14.03,14.04,14.03,14.03,14.03,14.04,14.04,14.03,14.03,14.03,14.04,14.05,14.04,14.03,14.03,14.03,14.03,14.04,14.04,14.04,14.03,14.03,14.04,14.03,14.04,14.04,14.04,14.04,14.03,14.03,14.04,14.04,14.05,14.04,14.04,14.04,14.02,14.05,14.04,14.03,14.03,14.04,14.05,14.04,14.03,14.03,14.03,14.04,14.04,14.04,14.04,14.04,14.03,13.99,13.99,13.99,14.02,14.03,14.02,14.02,14.02,14.02,14.02,14.04,14.02,14.02,14.02,14.02,14.02,14.01,14.01,14.02,14.02,14.03,14.02,14.02,14.02,14.02,14.03,14.02,14.02,14,13.99,14.01,14.01,14.01,14,14.01,14.02,14.01,14.02,14.03,14.03,14.04,14.03,14.03,14.03,14.03,14.03,14.04,14.03,14.03,14.02,14.02,14.03,14.02,14.03,14.03,14.03,14.04,14.02,14.03,14.03,14.03,14.04,14.03,14.02,14.02,14.02,14.03,14.03,14.03,14.03,14.03,14.05,14.03,14.03,14.03,14.03,14.03,14.05,14.01,14.01,14.01,14.01,14.03,14.03,14.03,14.03,14.03,14.04,14.03,14.03,15.17,15.2,13.82,13.8,13.8,13.8,13.78,13.77,13.75,13.75,13.75,13.75,13.77,13.76,13.75,13.76,13.76,13.77,13.77,13.76,13.76,13.76,13.76,13.83,13.77,13.77,13.77,13.77,13.79,13.78,13.78,13.78,13.77,13.79,13.78,13.77,13.77,13.78,13.79,13.78,13.78,13.78,13.78,13.79,13.78,13.78,13.78,13.78,13.79,13.78,13.78,13.78,13.78,13.76,13.79,13.78,13.78,13.78,13.8,13.8,13.79,13.77,13.76,13.76,13.78,13.77,13.77,13.77,13.78,13.78,13.78,13.78,13.78,13.77,13.77,13.77,13.76,13.76,13.77,13.77,13.77,13.77,13.77,13.78,13.79,13.79,13.79,13.78,13.77,13.77,13.79,13.78,13.78,13.78,13.78,13.8,13.79,13.78,13.77,13.77,13.79,13.79,13.79,13.78,13.78,13.8,13.79,13.79,13.79,13.78,13.8,13.78,13.78,13.8,13.8,13.81,13.8,13.8,13.79,13.79,13.8,13.8,13.8,13.79,13.79,13.79,13.79,13.79,13.8,13.79,13.79,13.81,13.8,13.8,13.8,13.8,13.8,13.79,13.8,13.8,13.8,13.81,13.81,13.8,13.8,13.8,13.81,13.8,13.79,13.79,13.79,13.8,13.79,13.8,13.8,13.8,13.81,13.79,13.79,13.79,13.79,13.8,13.8,13.8,13.8,13.8,13.8,13.81,13.81,13.8,13.8,13.8,14.04,13.85,13.85,13.85,13.85,13.84,13.81,13.81,13.81,13.8,13.82,13.8,13.8,13.8,13.81,13.82,13.8,13.8,13.8,13.8,13.82,13.8,13.8,13.8,13.8,13.81,13.81,13.8,13.8,13.8,13.8,13.81,13.8,13.8,13.8,13.8,13.82,13.81,13.8,13.8,13.8,13.81,13.79,13.79,13.79,13.8,13.81,13.8,13.8,13.8,13.8,13.81,13.79,13.79,13.79,13.79,13.82,13.8,13.8,13.8,13.8,13.81,13.8,13.79,13.79,13.79,13.82,13.81,13.8,13.8,13.8,13.73,13.7,13.69,13.6,13.45,13.44,13.45,13.45,13.45,13.45,13.44,13.44,13.43,13.43,13.43,13.43,13.43,13.44,13.44,13.44,13.44,13.45,13.45,13.45,13.45,13.45,13.45,13.44,13.43,13.65,13.5,13.5,13.52,13.52,13.48,13.46,13.46,13.46,13.44,13.44,13.46,13.45,13.47,13.46,13.46,13.47,13.46,13.47,13.46,13.46,13.46,13.46,13.47,13.46,13.46,13.46,13.46,13.47,13.46,13.46,13.47,13.47,13.47,13.47,13.45,13.44,13.44,13.46,13.45,13.45,13.46,13.46,13.46,13.48,13.47,13.47,13.46,13.46,13.48,13.48,13.48,13.48,13.46,13.48,13.48,13.49,13.49,13.49,13.5,13.48,13.49,13.49,13.49,13.5,13.49,13.49,13.49,13.72,12.22,12.05,12.04,12.04,12.04,12.03,11.99,11.99,11.99,11.99,12,11.99,11.99,11.99,11.99,11.99,12,11.99,13.65,21.67,13.23,12.91,12.12,12.12,20.69,13.32,18.87,16.71,12.81,12.13,12.13,13.62,18.8,12.14,12.16,12.17,13.44,15.81,15.48,12.68,12.53,21.39,19.14,20.13,12.63,12.31,12.32,12.39,12.37,12.5,12.31,12.3,12.32,12.31,12.31,12.31,12.31,12.32,12.31,12.4,14.1,22.08,21.85,20.19,16.83,20.14,17.46,13.21,18.25,21.79,15.15,13.42,13.47,13.46,13.46,13.46,13.46,13.5,13.48,13.48,13.46,13.45,13.47,13.46,13.46,19.78,18.16,22.44,18.96,13.41,19.91,17.61,13.44,13.47,20.59,15.32,13.38,13.43,13.45,13.44,13.44,13.44,13.45,13.47,13.46,13.45,13.44,13.45,13.46,13.44,13.44,13.44,13.45,13.47,13.47,13.46,13.44,13.45,16.15,21.52,19.15,12.28,12.33,12.34,12.33,12.33,12.33,12.34,12.34,12.34,12.33,12.33,12.34,12.34,12.32,12.31,12.31,12.32,12.32,12.33,12.32,12.32,12.34,12.34,12.35,12.32,12.35,12.34,12.34,12.35,20.57,17.41,13.51,13.51,13.52,13.54,13.06,13.23,12.54,12.47,16.91,21.45,21.74,19.08,19.64,13.4,13.4,13.39,13.39,13.4,12.35,12.39,16.1,20.25,14.97,21.78,16,22.11,13.87,13.47,13.49,13.48,13.47,13.47,13.47,13.49,13.49,13.48,13.46,13.46,13.47,13.47,13.47,13.47,13.31,12.51,12.44,12.44,12.44,12.44,12.4,12.38,12.35,12.35,12.34,17.9,20.59,13.53,13.53,12.68,12.4,12.42,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.39,12.4,12.41,12.41,12.41,12.41,12.41,12.41,12.4,12.4,12.4,12.4,12.41,12.41,12.41,12.41,12.41,12.43,12.41,12.41,12.41,12.41,12.42,12.4,12.39,12.39,12.39,12.39,12.41,12.4,12.4,12.4,12.4,12.42,12.41,12.41,12.41,12.41,12.41,12.4,12.4,12.4,12.4,12.42,12.41,12.41,12.41,12.41,21.17,17.62,13.54,13.54,13.54,13.57,13.58,13.58,13.58,13.58,13.59,13.58,13.57,13.57,13.57,13.55,13.59,13.59,13.59,13.59,13.6,13.63,13.59,13.59,13.59,13.61,13.62,13.61,13.61,13.61,13.63,13.63,13.62,13.6,13.6,13.6,13.62,13.61,13.61,13.62,13.61,13.62,13.62,13.62,13.6,13.61,13.63,13.61,13.61,13.61,13.62,13.62,13.63,13.62,13.62,13.61,13.6,13.61,13.6,13.61,13.62,13.62,13.62,13.6,13.61,13.62,13.61,13.61,13.6,13.58,13.59,13.59,13.61,13.59,13.59,13.6,13.6,13.62,13.59,13.59,13.59,13.59,13.6,13.6,13.6,13.58,13.58,13.59,13.6,13.59,13.58,13.58,13.58,13.61,13.6,13.6,13.6,13.6,13.62,13.62,13.59,13.59,13.58,13.52,13.51,13.51,13.51,13.51,13.53,13.53,13.53,13.53,13.52,13.51,13.5,13.52,13.52,13.52,13.53,13.52,13.54,13.55,13.55,14.98,12.21,12.2,12.2,12.2,12.21,12.21,12.2,12.2,12.2,12.2,12.21,12.19,12.19,12.19,12.18,12.2,12.2,12.2,12.2,12.2,12.22,12.21,12.21,12.21,12.21,12.22,12.2,12.2,12.2,12.2,12.21,12.17,12.17,12.17,12.17,12.18,12.19,12.19,12.19,12.19,12.2,12.21,12.21,12.21,12.21,12.21,12.22,12.21,12.21,12.21,12.21,12.22,12.21,12.21,12.21,12.21,12.21,12.2,12.2,12.2,12.2,12.22,12.2,12.2,12.2,12.19,12.22,12.2,12.2,12.2,12.2,12.21,12.2,12.2,12.2,12.19,12.21,12.21,12.21,12.21,12.21,12.21,12.22,12.21,12.21,12.22,12.22,12.22,12.21,12.21,12.21,12.21,12.22,12.21,12.21,12.21,12.21,12.2,12.19,12.19,12.19,12.2,12.21,12.19,12.2,12.19,12.2,12.21,12.2,12.2,12.2,12.19,12.2,12.19,12.19,12.21,12.16,12.16,12.21,12.2,12.2,12.2,12.19,12.2,12.18,12.18,12.19,12.2,12.2,12.19,12.2,12.2,12.2,12.2,12.19,12.19,12.18,12.18,12.2,12.21,12.21,12.17,12.17,12.19,12.2,12.2,12.2,12.2,12.21,12.21,12.21,12.2,12.2,12.2,12.2,12.18,12.16,12.16,12.16,12.2,12.2,12.2,12.21,12.21,12.22,12.21,12.21,12.21,12.21,12.58,12.27,12.26,12.26,12.26,12.24,12.2,12.22,12.21,12.22,12.22,12.21,12.21,12.21,12.21,12.22,12.21,12.21,12.2,12.2,12.2,12.21,12.21,12.21,12.21,12.21,12.22,12.21,12.21,12.21,12.21,12.21,12.19,12.18,12.18,12.18,12.21,12.2,12.2,12.2,12.2,12.21,12.21,12.21,12.21,12.21,12.22,12.21,12.21,12.21,12.21,12.22,12.18,12.18,12.18,12.18,12.2,12.18,12.18,12.18,12.18,12.18,12.23,12.22,12.22,12.22,12.21,12.22,12.21,12.21,12.21,12.21,12.23,12.22,12.22,12.22,12.22,12.24,12.22,12.21,12.21,12.21,12.23,12.19,12.19,12.19,12.19,12.21,12.2,12.2,12.2,12.2,12.2,12.2,12.19,12.19,12.18,12.19,12.2,12.2,12.2,12.2,12.19,12.22,12.21,12.21,12.2,12.18,12.21,12.2,12.2,12.2,12.2,12.21,12.19,12.19,12.19,12.2,12.21,12.2,12.2,12.2,12.21,12.21,12.2,12.2,12.2,12.2,12.22,12.21,12.21,12.21,12.2,12.21,12.21,12.21,12.21,12.21,12.2,12.19,12.18,12.18,12.21,12.21,12.22,12.21,12.21,12.2,12.2,12.19,12.17,12.17,12.2,12.21,12.2,12.19,12.2,12.21,12.21,12.22,12.21,12.21,12.21,12.21,12.21,12.2,12.2,12.21,12.21,12.22,12.2,12.21,12.21,12.21,12.21,12.21,12.21,12.2,12.2,12.2,12.22,12.21,12.19,12.18,12.18,12.21,12.21,12.22,12.22,12.22,12.22,12.21,12.21,12.22,12.21,12.23,12.22,12.22,12.22,12.22,12.23,12.22,12.22,12.22,12.22,12.23,12.22,12.2,12.2,12.2,12.21,12.22,12.19,12.19,12.19,12.19,12.23,12.22,12.22,12.22,12.22,12.24,12.23,12.23,12.23,12.23,12.24,12.23,12.23,12.23,12.23,12.23,12.21,12.21,12.21,12.21,12.23,12.21,12.21,12.21,12.21,12.22,12.18,12.18,12.18,12.18,12.21,12.18,12.18,12.18,12.18,12.18,12.2,12.18,12.19,12.18,12.18,12.22,12.2,12.2,12.2,12.2,12.21,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.19,12.2,12.22,12.2,12.2,12.2,12.21,12.21,12.21,12.21,12.21,12.21,12.23,12.19,12.19,12.19,12.19,12.21,12.23,12.21,12.21,12.21,12.19,12.22,12.21,12.21,12.21,12.22,12.22,12.21,12.21,12.21,12.21,12.21,12.19,12.19,12.18,12.2,12.21,12.21,12.21,12.21,12.22,12.23,12.21,12.21,12.21,12.21,12.22,12.21,12.21,12.21,12.19,12.19,12.22,12.21,12.21,12.2,12.19,12.22,12.21,12.21,12.22,12.22,12.23,12.21,12.22,12.22,12.22,12.23,12.22,12.22,12.21,12.21,12.22,12.21,12.21,12.19,12.19,12.22,12.23,12.22,12.19,12.19,12.2,12.22,12.22,12.22,12.22,12.22,12.23,12.23,12.22,12.22,12.22,12.5,12.28,12.28,12.28,12.29,12.25,12.22,12.21,12.21,12.21,12.23,12.22,12.22,12.22,12.22,12.23,12.23,12.23,12.23,12.22,12.23,12.22,12.19,12.2,12.19,12.21,12.22,12.18,12.18,12.18,12.19,12.2,12.19,12.19,12.19,12.19,12.21,12.18,12.18,12.18,12.18,12.21,12.21,12.21,12.21,12.21,12.22,12.18,12.18,12.18,12.18,12.2,12.18,12.18,12.18,12.18,12.2,12.21,12.21,12.21,12.21,12.22,12.21,12.2,12.21,12.21,12.21,12.22,12.21,12.21,12.21,12.21,12.22,12.21,12.2,12.2,12.2,12.22,12.21,12.21,12.21,12.21,12.22,12.21,12.21,12.21,12.21,12.23,12.22,12.21,12.21,12.21,12.23,12.21,12.21,12.21,12.21,12.22,12.2,12.2,12.2,12.2,12.22,12.22,12.21,12.21,12.21,12.17,12.21,12.21,12.21,12.21,12.21,12.23,12.22,12.22,12.22,12.22,12.23,12.22,12.22,12.22,12.22,12.23,12.22,12.22,12.22,12.22,12.23,12.22,12.22,12.23,12.21,12.22,12.21,12.21,12.21,12.2,12.2,12.24,12.22,12.22,12.22,12.22,12.23,12.22,12.23,12.23,12.23,12.23,12.23,12.23,12.2,12.2,12.22,12.21,12.21,12.23,12.22,12.24,12.23,12.23,12.23,12.23,12.24,12.22,12.22,12.22,12.22,12.23,12.18,12.19,12.23,12.23,12.23,12.21,12.21,12.21,12.2,12.18,12.22,12.2,12.19,12.19,12.19,12.22,12.21,12.19,12.18,12.19,12.21,12.2,12.21,12.21,12.2,12.22,12.21,12.28,12.2,12.19,12.21,12.7,12.28,12.28,12.28,12.29,12.28,12.22,12.22,12.22,12.23,12.22,12.23,12.23,12.22,12.22,12.23,12.23,12.23,12.23,12.23,12.24,12.22,12.21,12.21,12.21,12.23,12.22,12.22,12.22,12.22,12.24,12.21,12.2,12.2,12.2,12.2,12.21,12.21,12.21,12.21,12.22,12.22,12.22,12.22,12.21,12.23,12.21,12.21,12.21,12.21,12.22,12.21,12.21,12.23,12.23,12.23,12.21,12.21,12.21,12.21,12.21,12.23,12.21,12.21,12.21,12.21,12.24,12.23,12.22,12.22,12.22,12.24,12.23,12.23,12.23,12.23,12.24,12.23,12.23,12.23,12.23,12.24,12.23,12.23,12.23,12.23,12.24,12.23,12.23,12.23,12.23,12.24,12.24,12.24,12.24,12.24,12.24,12.23,12.23,12.23,12.23,12.21,12.25,12.24,12.24,12.24,12.21,12.25,12.24,12.24,12.24,12.24,12.25,12.23,12.23,12.23,12.23,12.24,12.23,12.23,12.23,12.24,12.25,12.24,12.24,12.24,12.23,12.24,12.23,12.23,12.24,12.24,12.24,12.22,12.21,12.21,12.2,12.2,12.21,12.2,12.2,12.21,12.21,12.19,12.17,12.17,12.19,12.19,12.2,12.2,12.19,12.19,12.19,12.21,12.2,12.2,12.21,12.21,12.2,12.18,12.2,12.18,12.18,12.48,12.26,12.26,12.26,12.26,12.27,12.21,12.21,12.22,12.22,12.22,12.21,12.21,12.22,12.22,12.22,12.23,12.21,12.22,12.22,12.22,12.22,12.21,12.21,12.21,12.21,12.23,12.22,12.22,12.22,12.22,12.22,12.21,12.22,12.22,12.22,12.23,12.22,12.2,12.2,12.2,12.22,12.22,12.2,12.2,12.2,12.21,12.21,12.2,12.2,12.2,12.2,12.22,12.22,12.22,12.22,12.22,12.23,12.22,12.22,12.22,12.22,12.23,12.22,12.22,12.22,12.22,12.23,12.21,12.21,12.2,12.2,12.21,12.22,12.22,12.22,12.22,12.23,12.2,12.2,12.2,12.2,12.22,12.22,12.22,12.22,12.22,12.22,12.24,12.22,12.22,12.22,12.22,12.23,12.22,12.22,12.22,12.22,12.23,12.22,12.22,12.22,12.22,12.23,12.22,12.22,12.22,12.22,12.21,12.22,12.22,12.22,12.22,12.22,12.22,12.22,12.22,12.22,12.23,12.22,12.22,12.22,12.49,12.27,12.26,12.26,12.26,12.22,12.21,12.22,12.19,12.19,12.19,12.19,12.2,12.19,12.19,12.19,12.2,12.21,12.2,12.2,12.2,12.2,12.21,12.21,12.21,12.21,12.19,12.21,12.2,12.2,12.2,12.21,12.22,12.2,12.2,12.21,12.21,12.21,12.21,12.21,12.22,12.19,12.2,12.2,12.2,12.2,12.21,12.21,12.23,12.21,12.21,12.22,12.22,12.23,12.22,12.21,12.22,12.22,12.22,12.21,12.21,12.18,12.18,12.21,12.21,12.21,12.21,12.21,12.21,12.21,12.21,12.22,12.21,12.22,12.21,12.21,12.19,12.19,12.2,12.22,12.22,12.22,12.22,12.22,12.23,12.21,12.2,12.2,12.2,12.22,12.22,12.22,12.21,12.21,12.22,12.21,12.22,12.22,12.22,12.23,12.22,12.19,12.19,12.19,12.2,12.18,12.19,12.18,12.19,12.2,12.22,12.23,12.23,12.23,12.24,12.21,12.21,12.21,12.21,12.21,12.24,12.23,12.23,12.23,12.23,12.23,12.22,12.22,12.21,12.21,12.22,12.23,12.23,12.23,12.23,12.24,12.22,12.21,12.21,12.21,12.21,12.17,12.18,12.18,12.18,12.23,12.21,12.21,12.21,12.21,12.22,12.23,12.23,12.23,12.23,12.24,12.21,12.2,12.2,12.2,12.2,12.22,12.21,12.21,12.21,12.21,12.22,12.21,12.21,12.24,12.82,21.28,14.29,13.55,13.55,13.61,13.55,13.54,13.54,15.33,18.64,22.29,21.88,13.61,13.57,13.58,13.6,13.62,13.61,13.59,13.59,13.61,15.58,21.63,13.5,13.5,13.52,13.48,13.48,13.48,13.48,13.53,13.55,13.54,13.54,13.54,13.52,13.56,13.55,13.53,13.53,21.29,22.2,14.81,13.51,13.51,13.53,13.55,13.54,13.54,13.54,13.55,13.56,13.55,13.55,13.55,13.54,13.55,13.54,13.52,13.52,13.52,13.53,13.56,13.56,13.56,13.57,13.57,13.58,13.59,13.61,13.64,13.64,13.92,13.72,13.71,13.69,13.69,13.65,13.61,13.61,13.62,13.62,13.65,13.73,18.86,19.97,13.71,13.74,13.75,13.75,13.75,13.75,13.76,13.76,13.73,13.74,13.74,13.75,13.77,13.77,13.77,13.76,13.76,13.75,13.75,13.76,13.76,13.77,13.73,13.73,13.74,13.75,13.75,13.76,13.75,13.77,13.77,13.77,13.79,13.76,13.75,13.75,13.75,13.77,13.76,13.76,13.76,13.76,13.77,13.78,13.79,13.79,13.78,13.78,13.76,13.77,13.77,13.73,13.72,13.73,13.73,13.74,13.73,13.73,13.75,13.73,13.73,13.73,13.73,13.75,13.75,13.76,13.76,13.76,13.77,13.76,13.74,13.74,13.74,13.74,13.74,13.74,13.74,13.74,13.75,13.75,13.75,13.75,13.75,13.76,13.74,13.74,13.74,13.74,13.75,13.74,13.74,13.74,13.74,13.74,13.75,13.74,13.74,13.74,13.76,13.77,13.76,13.75,13.75,13.75,13.78,13.76,13.76,13.76,13.74,13.75,13.74,13.74,13.74,13.74,13.76,13.76,13.76,13.76,13.76,13.75,13.75,13.75,13.75,13.75,13.77,13.76,13.76,13.76,13.76,13.72,13.75,13.74,13.74,13.74,13.76,13.76,13.06,12.42,12.4,12.4,12.41,12.4,12.4,12.4,12.39,12.41,12.4,12.4,12.4,12.37,12.39,12.39,12.39,12.39,12.39,12.4,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.39,12.4,12.4,12.4,12.4,12.4,12.4,12.41,12.39,12.39,12.38,12.38,12.4,12.39,12.39,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.41,12.41,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.42,12.4,12.4,12.41,12.41,12.4,12.39,12.38,12.37,12.37,12.37,12.38,12.38,12.38,12.38,12.38,12.4,12.39,12.38,12.38,12.38,12.4,12.39,12.39,12.39,12.38,12.39,12.38,12.39,12.39,12.38,12.39,12.38,12.39,12.38,12.38,12.39,12.39,12.39,12.39,12.39,12.4,12.39,12.4,12.4,12.4,12.4,12.4,12.39,12.39,12.39,12.39,12.4,12.39,12.39,12.39,12.39,12.4,12.4,12.4,12.39,12.39,12.4,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.39,12.4,12.39,12.39,12.39,12.39,12.4,12.39,12.39,12.39,12.39,12.4,12.4,12.4,12.39,12.39,12.4,12.4,12.39,12.38,12.38,12.38,12.4,12.39,12.39,12.39,12.39,12.4,12.4,12.4,12.4,12.4,12.42,12.4,12.4,12.4,12.39,12.41,12.4,12.4,12.4,12.4,12.4,12.4,12.39,12.39,12.39,12.4,12.4,12.4,12.4,12.4,12.37,12.41,12.4,12.4,12.4,12.41,12.42,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.39,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.64,12.46,12.45,12.45,12.46,12.46,12.4,12.4,12.4,12.41,12.4,12.39,12.38,12.38,12.37,12.37,12.39,12.38,12.37,12.39,12.39,12.4,12.38,12.38,12.38,12.38,12.38,12.36,12.36,12.38,12.38,12.4,12.38,12.38,12.39,12.39,12.39,12.38,12.38,12.39,12.39,12.4,12.38,12.38,12.39,12.39,12.4,12.39,12.38,12.38,12.38,12.38,12.39,12.38,12.38,12.38,12.38,12.39,12.38,12.38,12.38,12.38,12.39,12.38,12.4,12.39,12.39,12.39,12.37,12.37,12.37,12.37,12.38,12.37,12.37,12.37,12.36,12.38,12.39,12.39,12.39,12.39,12.41,12.37,12.37,12.37,12.37,12.37,12.41,12.39,12.39,12.39,12.39,12.39,12.38,12.38,12.38,12.38,12.37,12.39,12.39,12.39,12.39,12.38,12.37,12.36,12.36,12.36,12.4,12.37,12.37,12.37,12.37,12.38,12.4,12.4,12.4,12.4,12.41,12.37,12.37,12.38,12.39,12.39,12.4,12.4,12.4,12.4,12.39,12.4,12.39,12.39,12.39,12.39,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.39,12.38,12.38,12.38,12.38,12.41,12.4,12.4,12.4,12.39,12.41,12.38,12.38,12.38,12.37,12.39,12.4,12.4,12.4,12.4,12.4,12.38,12.36,12.36,12.37,12.37,12.39,12.38,12.38,12.38,12.39,12.38,12.36,12.36,12.36,12.37,12.38,12.38,12.37,12.37,12.38,12.39,12.39,12.39,12.39,12.38,12.39,12.38,12.38,12.38,12.37,12.37,12.37,12.36,12.38,12.39,12.39,12.39,12.38,12.38,12.38,12.38,12.39,12.38,12.38,12.38,12.38,12.38,12.37,12.37,12.37,12.37,12.39,12.39,12.39,12.38,12.38,12.38,12.35,12.35,12.38,12.38,12.39,12.38,12.39,12.37,12.36,12.39,12.39,12.39,12.38,12.38,12.38,12.39,12.38,12.38,12.38,12.38,12.4,12.39,12.37,12.37,12.36,12.39,12.39,12.38,12.38,12.38,12.38,12.37,12.38,12.38,12.38,12.39,12.38,12.37,12.37,12.37,12.39,12.39,12.38,12.38,12.38,12.39,12.39,12.39,12.4,12.4,12.4,12.39,12.37,12.36,12.37,12.37,12.4,12.39,12.39,12.39,12.39,12.41,12.4,12.4,12.39,12.4,12.41,12.39,12.39,12.39,12.39,12.4,12.39,12.4,12.39,12.39,12.41,12.4,12.4,12.39,12.39,12.4,12.4,12.4,12.4,12.4,12.41,12.38,12.38,12.38,12.38,12.38,12.42,12.4,12.4,12.39,12.38,12.39,12.38,12.38,12.38,12.38,12.38,12.37,12.37,12.37,12.37,12.38,12.36,12.37,12.36,12.37,12.36,12.38,12.38,12.38,12.38,12.39,12.38,12.38,12.38,12.38,12.38,12.38,12.38,12.38,12.38,12.38,12.39,12.38,12.38,12.38,12.37,12.39,12.38,12.38,12.38,12.38,12.37,12.36,12.38,12.38,12.38,12.64,12.44,12.44,12.44,12.42,12.42,12.39,12.39,12.39,12.38,12.39,12.38,12.38,12.39,12.39,12.39,12.38,12.38,12.38,12.38,12.39,12.39,12.39,12.39,12.38,12.38,12.4,12.39,12.39,12.38,12.38,12.37,12.35,12.35,12.38,12.38,12.39,12.38,12.38,12.38,12.38,12.39,12.39,12.39,12.38,12.38,12.39,12.39,12.39,12.37,12.36,12.38,12.38,12.38,12.38,12.38,12.39,12.38,12.38,12.39,12.39,12.4,12.37,12.37,12.37,12.37,12.37,12.37,12.36,12.39,12.39,12.39,12.41,12.39,12.4,12.4,12.4,12.41,12.4,12.39,12.39,12.39,12.4,12.39,12.39,12.4,12.4,12.4,12.39,12.39,12.39,12.39,12.4,12.4,12.39,12.39,12.39,12.39,12.41,12.39,12.39,12.39,12.39,12.4,12.4,12.4,12.4,12.38,12.38,12.38,12.38,12.38,12.38,12.39,12.38,12.38,12.38,12.37,12.38,12.37,12.37,12.37,12.37,12.38,12.38,12.38,12.38,12.38,12.4,12.38,12.38,12.38,12.38,12.39,12.38,12.37,12.37,12.37,12.37,12.39,12.38,12.38,12.38,12.38,12.37,12.36,12.36,12.36,12.36,12.4,12.38,12.38,12.38,12.38,12.4,12.38,12.38,12.78,12.45,12.46,12.46,12.46,12.41,12.38,12.39,12.37,12.37,12.37,12.37,12.4,12.4,12.4,12.4,12.4,12.39,12.41,12.39,12.38,12.38,12.45,12.4,12.39,12.39,12.39,12.39,12.39,12.38,12.38,12.38,12.39,12.4,12.39,12.39,12.39,12.39,12.4,12.39,12.39,12.4,12.39,12.4,12.39,12.39,12.39,12.39,12.4,12.39,12.39,12.4,12.38,12.38,12.41,12.53,12.46,12.45,12.45,12.47,12.45,12.4,12.38,12.38,12.39,12.38,12.4,12.39,12.39,12.41,12.4,12.4,12.41,12.41,12.41,12.38,12.38,12.38,12.38,12.4,12.39,12.4,12.4,12.4,12.41,12.4,12.4,12.38,12.38,12.38,12.39,12.38,12.38,12.38,12.38,12.41,12.4,12.4,12.4,12.4,12.41,12.41,12.41,12.4,12.39,12.4,12.38,12.37,12.37,12.36,12.38,12.38,12.38,12.38,12.38,12.39,12.38,12.37,12.37,12.37,12.38,12.39,12.38,12.38,12.38,12.39,12.39,12.38,12.38,12.38,12.38,12.4,12.39,12.39,12.39,12.39,12.4,12.39,12.39,12.39,12.38,12.4,12.39,12.39,12.39,12.39,12.4,12.39,12.39,12.39,12.39,12.4,12.4,12.39,12.39,12.39,12.4,12.39,12.39,12.39,12.39,12.41,12.37,12.37,12.37,12.36,12.36,12.4,12.39,12.39,12.39,12.39,12.4,12.39,12.4,12.4,12.4,12.4,12.4,12.39,12.39,12.39,12.42,12.4,12.4,12.4,12.4,12.41,12.39,12.39,12.39,12.39,12.39,12.39,12.39,12.4,12.4,12.39,12.39,12.39,12.39,12.39,12.39,12.37,12.36,12.37,12.37,12.39,12.7,12.47,12.47,12.47,12.46,12.44,12.41,12.4,12.4,12.41,12.42,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.41,12.42,12.41,12.41,12.41,12.41,12.41,12.42,12.41,12.41,12.38,12.38,12.41,12.4,12.41,12.41,12.41,12.41,12.41,12.4,12.41,12.41,12.42,12.42,12.41,12.41,12.41,12.4,12.38,12.38,12.39,12.39,12.4,12.39,12.38,12.37,12.37,12.38,12.38,12.38,12.38,12.39,12.4,12.39,12.39,12.39,12.39,12.39,12.4,12.39,12.37,12.37,12.37,12.4,12.39,12.4,12.4,12.4,12.41,12.39,12.4,12.4,12.4,12.4,12.39,12.39,12.39,12.39,12.4,12.4,12.38,12.38,12.38,12.39,12.4,12.4,12.4,12.4,12.41,12.4,12.39,12.38,12.39,12.38,12.4,12.39,12.39,12.39,12.39,12.4,12.37,12.37,12.37,12.37,12.39,12.39,12.39,12.39,12.39,12.4,12.37,12.37,12.37,12.37,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.42,12.4,12.4,12.4,12.4,12.4,12.42,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.41,12.41,12.41,12.41,12.42,12.41,12.41,12.4,12.4,12.43,12.4,12.4,12.4,12.4,12.41,12.42,12.41,12.41,12.41,12.41,12.42,12.42,12.41,12.4,12.38,12.41,12.41,12.41,12.41,12.41,12.42,12.41,12.41,12.41,12.41,12.42,12.41,12.4,12.38,12.39,12.4,12.4,12.4,12.4,12.39,12.41,12.39,12.39,12.39,12.37,12.38,12.4,12.4,12.4,12.39,12.39,12.4,12.4,12.4,12.38,12.38,12.39,12.38,12.38,12.39,12.4,12.41,12.39,12.39,12.37,12.37,12.39,12.39,12.39,12.39,12.39,12.41,12.4,12.4,12.39,12.39,12.41,12.4,12.4,12.39,12.39,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.39,12.39,12.4,12.41,12.4,12.38,12.38,12.38,12.4,12.4,12.38,12.38,12.38,12.4,12.4,12.41,12.41,12.41,12.42,12.41,12.4,12.4,12.4,12.4,12.42,12.41,12.41,12.41,12.41,12.42,12.4,12.4,12.4,12.4,12.41,12.39,12.39,12.4,12.4,12.41,12.41,12.41,12.41,12.41,12.41,12.41,12.41,12.41,12.41,12.42,12.4,12.4,12.4,12.4,12.42,12.41,12.41,12.41,12.4,12.41,12.4,12.38,12.38,12.38,12.38,12.41,12.41,12.41,12.41,12.4,12.41,12.41,12.41,12.41,12.41,12.43,12.41,12.41,12.41,12.42,12.42,12.41,12.41,12.42,12.41,12.41,12.41,12.41,12.41,12.41,12.42,12.42,12.42,12.41,12.41,12.41,12.42,12.41,12.4,12.39,12.39,12.4,12.39,12.39,12.39,12.4,12.76,12.45,12.45,12.45,12.45,12.42,12.39,12.4,12.4,12.4,12.41,12.4,12.39,12.39,12.39,12.4,12.4,12.4,12.4,12.39,12.39,12.4,12.4,12.4,12.37,12.37,12.41,12.4,12.4,12.4,12.41,12.42,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.39,12.39,12.39,12.39,12.4,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.39,12.39,12.39,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.41,12.41,12.41,12.41,12.42,12.4,12.4,12.4,12.4,12.41,12.4,12.41,12.41,12.41,12.42,12.41,12.42,12.41,12.41,12.42,12.41,12.41,12.41,12.41,12.41,12.42,12.39,12.39,12.4,12.4,12.42,12.42,12.41,12.41,12.41,12.42,12.41,12.41,12.41,12.41,12.42,12.39,12.38,12.38,12.38,12.42,12.41,12.41,12.41,12.41,12.42,12.42,12.42,12.42,12.42,12.44,12.41,12.41,12.41,12.41,12.41,12.42,12.41,12.41,12.41,12.41,12.43,12.42,12.41,12.39,12.4,12.38,12.38,12.38,12.38,12.4,12.4,12.39,12.39,12.39,12.39,12.4,12.39,12.39,12.39,12.39,12.41,12.4,12.4,12.39,12.39,12.4,12.39,12.39,12.39,12.4,12.38,12.41,12.4,12.4,12.4,12.4,12.39,12.37,12.38,12.39,12.39,12.4,12.4,12.4,12.4,12.4,12.42,12.4,12.4,12.4,12.38,12.39,12.39,12.39,12.39,12.4,12.4,12.38,12.38,12.38,12.38,12.39,12.38,12.38,12.38,12.41,12.41,12.42,12.4,12.41,12.4,12.4,12.42,12.41,12.41,12.39,12.39,12.41,12.4,12.4,12.41,12.41,12.41,12.4,12.39,12.39,12.39,12.41,12.41,12.41,12.4,12.4,12.42,12.4,12.41,12.41,12.41,12.42,12.4,12.41,12.41,12.41,12.41,12.42,12.41,12.41,12.41,12.41,12.4,12.39,12.41,12.41,12.41,12.41,12.4,12.42,12.42,12.42,12.43,12.42,12.39,12.38,12.38,12.41,12.41,12.41,12.41,12.41,12.42,12.41,12.42,12.42,12.42,12.42,12.41,12.42,12.42,12.41,12.42,12.42,12.42,12.42,12.42,12.41,12.42,12.42,12.42,12.42,12.42,12.42,12.41,12.42,12.42,12.42,12.42,12.42,12.42,12.42,12.41,12.39,12.37,12.37,12.38,12.38,12.39,12.38,12.38,12.38,12.38,12.39,12.4,12.4,12.4,12.4,12.41,12.38,12.38,12.38,12.37,12.37,12.41,12.4,12.4,12.4,12.4,12.4,12.38,12.38,12.38,12.41,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.4,12.39,12.39,12.39,12.39,12.41,12.4,12.41,12.41,12.41,12.41,12.37,12.37,12.37,12.37,12.38,12.41,12.4,12.41,12.41,12.41,12.76,12.47,12.47,12.47,12.46,12.44,12.41,12.41,12.41,12.41,12.42,12.4,12.4,12.4,12.41,12.43,12.4,12.4,12.4,12.4,12.41,12.4,12.41,12.41,12.41,12.42,12.42,12.42,12.4,12.4,12.41,12.41,12.41,12.41,12.42,12.42,12.42,12.41,12.41,12.42,12.41,12.42,12.4,12.4,12.41,12.41,12.43,12.42,12.42,12.42,12.41,12.43,12.41,12.41,12.41,12.41,12.42,12.41,12.4,12.42,12.42,12.42,12.41,12.41,12.41,12.41,12.42,12.41,12.41,12.42,12.42,12.42,12.42,12.41,12.41,12.41,12.41,12.43,12.41,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.42,12.42,12.42,12.42,12.4,12.4,12.41,12.4,12.4,12.4,12.39,12.4,12.4,12.4,12.4,12.4,12.41,12.41,12.38,12.38,12.38,12.38,12.41,12.4,12.4,12.4,12.4,12.41,12.38,12.38,12.38,12.38,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.37,12.37,12.38,12.37,12.38,12.4,12.38,12.38,12.38,12.38,12.41,12.4,12.4,12.4,12.41,12.42,12.41,12.41,12.41,12.4,12.41,12.39,12.39,12.39,12.38,12.41,12.4,12.41,12.4,12.4,12.41,12.41,12.41,12.4,12.4,12.41,12.41,12.4,12.4,12.4,12.4,12.42,12.41,12.41,12.41,12.41,12.42,12.41,12.4,12.4,12.4,12.43,12.41,12.41,12.42,12.41,12.43,12.41,12.41,12.41,12.4,12.42,12.4,12.4,12.4,12.41,12.42,12.41,12.41,12.41,12.41,12.41,12.41,12.4,12.41,12.41,12.41,12.42,12.41,12.41,12.41,12.41,12.42,12.41,12.42,12.41,12.41,12.42,12.41,12.41,12.4,12.4,12.42,12.41,12.41,12.39,12.39,12.41,12.42,12.42,12.42,12.42,12.42,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.41,12.4,12.39,12.38,12.39,12.39,12.39,12.41,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.39,12.4,12.41,12.41,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.39,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.38,12.38,12.38,12.37,12.41,12.4,12.4,12.4,12.4,12.41,12.38,12.38,12.38,12.38,12.4,12.4,12.4,12.4,12.4,12.67,12.47,12.47,12.47,12.47,12.42,12.37,12.36,12.36,12.36,12.36,12.41,12.41,12.4,12.4,12.4,12.42,12.41,12.41,12.41,12.41,12.43,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.42,12.43,12.41,12.41,12.41,12.41,12.42,12.42,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.42,12.73,12.49,12.49,12.49,12.48,12.45,12.41,12.41,12.41,12.42,12.43,12.42,12.42,12.42,12.4,12.42,12.42,12.42,12.42,12.42,12.42,12.41,12.41,12.41,12.42,12.44,12.43,12.43,12.42,12.42,12.42,12.43,12.42,12.42,12.41,12.41,12.41,12.4,12.39,12.37,12.37,12.4,12.41,12.41,12.41,12.41,12.42,12.41,12.41,12.41,12.41,12.42,12.41,12.4,12.41,12.41,12.41,12.41,12.41,12.42,12.41,12.42,12.4,12.4,12.4,12.4,12.4,12.42,12.41,12.41,12.41,12.41,12.42,12.41,12.41,12.41,12.41,12.42,12.41,12.39,12.39,12.39,12.41,12.42,12.41,12.41,12.41,12.42,12.41,12.41,12.41,12.41,12.42,12.41,12.41,12.41,12.41,12.42,12.4,12.38,12.38,12.38,12.39,12.4,12.41,12.41,12.41,12.41,12.43,12.39,12.39,12.39,12.39,12.39,12.42,12.42,12.42,12.42,12.42,12.41,12.41,12.41,12.41,12.42,12.41,12.41,12.41,12.41,12.42,12.42,12.42,12.41,12.41,12.42,12.42,12.42,12.42,12.41,12.42,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.42,13.19,12.5,12.5,12.49,12.5,12.5,12.45,12.44,12.44,12.43,12.42,12.51,12.44,12.44,12.44,12.44,12.43,12.44,12.44,12.44,12.44,12.45,12.44,12.44,12.44,12.43,12.45,12.44,12.44,12.44,12.44,12.43,12.44,12.44,12.44,12.44,12.45,12.44,12.44,12.44,12.44,12.46,12.44,12.42,12.42,12.42,12.41,12.42,12.41,12.41,12.41,12.42,12.43,12.42,12.42,12.42,12.43,12.44,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.43,12.42,12.4,12.4,12.41,12.39,12.42,12.42,12.42,12.42,12.42,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.42,12.44,12.42,12.42,12.43,12.43,12.44,12.43,12.43,12.42,12.42,12.43,12.43,12.43,12.43,12.43,12.45,12.43,12.43,12.41,12.41,12.42,12.43,12.43,12.43,12.43,12.44,12.44,12.44,12.43,12.43,12.43,12.45,12.44,12.44,12.44,12.44,12.45,12.43,12.44,12.44,12.44,12.45,12.44,12.43,12.43,12.43,12.44,12.43,12.44,12.44,12.44,12.45,12.43,12.44,12.44,12.44,12.45,12.44,12.43,12.43,12.43,12.44,12.44,12.43,12.43,12.43,12.45,12.44,12.43,12.43,12.43,12.43,12.45,12.44,12.44,12.44,12.44,12.45,12.41,12.41,12.41,12.41,12.45,12.43,12.43,12.43,12.43,12.45,12.41,12.41,12.42,12.42,12.44,12.44,12.43,12.44,12.44,12.45,12.44,12.44,12.44,12.44,12.42,12.42,12.42,12.42,12.42,12.43,12.43,12.42,12.42,12.42,12.44,12.44,12.43,12.44,12.44,12.44,12.44,12.43,12.43,12.43,12.43,12.78,12.49,12.48,12.49,12.49,12.45,12.4,12.4,12.4,12.4,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.44,12.43,12.43,12.43,12.43,12.45,12.44,12.44,12.44,12.44,12.43,12.45,12.43,12.43,12.42,12.43,12.44,12.44,12.44,12.43,12.43,12.44,12.43,12.43,12.43,12.41,12.44,12.44,12.44,12.43,12.42,12.43,12.43,12.43,12.43,12.43,12.44,12.43,12.43,12.43,12.44,12.45,12.43,12.43,12.43,12.43,12.43,12.43,12.41,12.41,12.44,12.44,12.45,12.44,12.44,12.43,12.43,12.42,12.41,12.44,12.45,12.44,12.45,12.44,12.43,12.44,12.44,12.45,12.44,12.44,12.44,12.44,12.45,12.44,12.44,12.43,12.43,12.44,12.43,12.43,12.44,12.44,12.45,12.44,12.44,12.44,12.45,12.46,12.45,12.45,12.4,12.4,12.4,12.46,12.44,12.44,12.44,12.44,12.45,12.45,12.45,12.45,12.45,12.46,12.45,12.45,12.45,12.45,12.46,12.44,12.43,12.43,12.43,12.45,12.43,12.43,12.43,12.43,12.44,12.41,12.42,12.42,12.42,12.43,12.43,12.43,12.43,12.43,12.44,12.43,12.43,12.43,12.43,12.43,12.44,12.43,12.43,12.43,12.43,12.45,12.43,12.43,12.43,12.43,12.45,12.44,12.44,12.44,12.44,12.44,12.41,12.41,12.41,12.41,12.43,12.43,12.43,12.43,12.43,12.44,12.44,12.44,12.44,12.44,12.45,12.43,12.43,12.43,12.43,12.43,12.45,12.44,12.44,12.44,12.44,12.45,12.44,12.44,12.45,12.42,12.45,12.44,12.44,12.44,12.44,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.43,12.42,12.44,12.42,12.42,12.43,12.43,12.44,12.45,12.44,12.44,12.44,12.45,12.45,12.45,12.45,12.44,12.42,12.43,12.41,12.41,12.41,12.42,12.44,12.44,12.44,12.44,12.44,12.45,12.45,12.44,12.44,12.42,12.45,12.44,12.44,12.44,12.45,12.46,12.44,12.44,12.44,12.44,12.45,12.44,12.45,12.45,12.46,12.47,12.44,12.44,12.44,12.44,12.44,12.45,12.44,12.44,12.41,12.41,12.46,12.45,12.44,12.44,12.44,12.45,12.44,12.44,12.45,12.45,12.46,12.45,12.45,12.45,12.45,12.46,12.45,12.44,12.4,12.4,12.42,12.43,12.43,12.4,12.4,12.41,12.42,12.42,12.44,12.44,12.44,12.44,12.44,12.44,12.44,12.45,12.44,12.44,12.44,12.44,12.44,12.45,12.44,12.44,12.44,12.44,12.45,12.44,12.43,12.43,12.42,12.44,12.43,12.42,12.42,12.42,12.45,12.45,12.43,12.43,12.43,12.44,12.43,12.41,12.41,12.41,12.43,12.42,12.44,12.45,12.45,12.45,12.44,12.44,12.44,12.44,12.46,12.44,12.45,12.45,12.45,12.45,12.46,12.44,12.44,12.44,12.44,12.45,12.44,12.44,12.44,12.44,12.8,12.51,12.51,12.51,12.51,12.49,12.42,12.42,12.42,12.42,12.44,12.45,12.45,12.45,12.45,12.45,12.44,12.44,12.44,12.44,12.45,12.44,12.44,12.44,12.44,12.44,12.46,12.45,12.45,12.45,12.44,12.47,12.45,12.45,12.45,12.45,12.46,12.45,12.45,12.45,12.45,12.46,12.44,12.44,12.44,12.45,12.47,12.45,12.45,12.45,12.45,12.44,12.45,12.45,12.45,12.45,12.45,12.45,12.45,12.45,12.45,12.44,12.46,12.45,12.45,12.45,12.45,12.46,12.45,12.45,12.45,12.45,12.46,12.46,12.46,12.46,12.46,12.47,12.45,12.45,12.45,12.42,12.44,12.44,12.44,12.44,12.44,12.45,12.44,12.44,12.43,12.44,12.44,12.47,12.45,12.45,12.44,12.44,12.45,12.44,12.44,12.43,12.44,12.45,12.45,12.45,12.44,12.44,12.45,12.44,12.44,12.45,12.45,12.45,12.45,12.45,12.45,12.45,12.45,12.45,12.45,12.45,12.45,12.46,12.44,12.45,12.43,12.43,12.43,12.46,12.44,12.45,12.45,12.45,12.46,12.43,12.46,12.46,12.46,12.46,12.45,12.43,12.43,12.43,12.44,12.44,12.45,12.45,12.45,12.46,12.44,12.44,12.44,12.43,12.45,12.45,12.45,12.45,12.45,12.46,12.45,12.45,12.45,12.45,12.45,12.47,12.46,12.46,12.46,12.46,12.46,12.46,12.46,12.46,12.46,12.47,12.44,12.44,12.44,12.44,12.46,12.43,12.43,12.43,12.43,12.44,12.45,12.45,12.45,12.45,12.46,12.46,12.46,12.46,12.46,12.47,12.46,12.46,12.46,12.46,12.46,12.47,12.46,12.46,12.46,12.46,12.46,12.45,12.45,12.45,12.45,12.46,12.45,12.45,12.45,12.44,12.47,12.46,12.46,12.46,12.46,12.46,12.47,12.47,12.46,12.46,12.47,12.46,12.46,12.46,12.45,12.47,12.46,12.45,12.44,12.43,12.45,12.46,12.45,12.45,12.44,12.44,12.45,12.44,12.44,12.45,12.45,12.45,12.44,12.44,12.44,12.42,12.45,12.44,12.44,12.45,12.45,12.47,12.45,12.45,12.45,12.45,12.46,12.45,12.44,12.44,12.45,12.46,12.45,12.45,12.45,12.44,12.45,12.45,12.45,12.44,12.45,12.45,12.47,12.45,12.45,12.45,12.45,12.45,12.44,12.46,12.44,12.44,12.45,12.45,12.45,12.42,12.42,12.44,12.43,12.43,12.42,12.42,12.44,12.46,12.46,12.45,12.45,12.47,12.45,12.45,12.45,12.45,12.46,12.46,12.46,12.45,12.45,12.46,12.46,12.46,12.45,12.45,12.45,12.47,12.46,12.43,12.42,12.44,12.47,12.46,12.43,12.43,12.43,12.45,12.45,12.45,12.45,12.45,12.47,12.46,12.46,12.46,12.46,12.47,12.46,12.46,12.46,12.46,12.46,12.46,12.45,12.45,12.45,12.46,12.46,12.46,12.46,12.46,12.46,12.46,12.45,12.45,12.45,12.45,12.47,12.46,12.46,12.46,12.46,12.77,12.52,12.52,12.52,12.52,12.49,12.46,12.46,12.45,12.45,12.48,12.47,12.47,12.47,12.47,12.48,12.44,12.44,12.44,12.44,12.45,12.47,12.47,12.47,12.45,12.44,12.43,12.41,12.41,12.41,12.41,12.46,12.45,12.45,12.45,12.45,12.46,12.45,12.45,12.45,12.44,12.44,12.44,12.44,12.44,12.43,12.46,12.46,12.46,12.46,12.46,12.46,12.45,12.45,12.45,12.45,12.44,12.45,12.45,12.45,12.46,12.45,12.45,12.45,12.45,12.45,12.45,12.46,12.45,12.45,12.46,12.46,12.45,12.44,12.44,12.44,12.44,12.47,12.45,12.45,12.45,12.45,12.46,12.46,12.45,12.45,12.46,12.46,12.45,12.46,12.46,12.46,12.47,12.45,12.45,12.45,12.44,12.45,12.46,12.46,12.46,12.46,12.47,12.47,12.47,12.47,12.45,12.46,12.46,12.46,12.46,12.47,12.47,12.46,12.45,12.45,12.45,12.45,12.47,12.46,12.46,12.44,12.44,12.46,12.45,12.45,12.46,12.46,12.48,12.46,12.46,12.46,12.46,12.47,12.47,12.46,12.45,12.45,12.46,12.45,12.45,12.45,12.44,12.45,12.46,12.46,12.45,12.45,12.46,12.45,12.45,12.46,12.46,12.46,12.47,12.46,12.47,12.47,12.47,12.48,12.46,12.46,12.46,12.46,12.47,12.46,12.47,12.47,12.47,12.48,12.46,12.47,12.47,12.47,12.48,12.46,12.47,12.47,12.47,12.46,12.45,12.46,12.46,12.46,12.47,12.46,12.44,12.44,12.44,12.44,12.46,12.45,12.45,12.45,12.45,12.46,12.43,12.43,12.44,12.44,12.44,12.45,12.45,12.45,12.45,12.46,12.43,12.43,12.43,12.43,12.44,12.44,12.44,12.44,12.44,12.45,12.45,12.45,12.45,12.45,12.48,12.43,12.43,12.43,12.43,12.43,12.45,12.44,12.44,12.44,12.44,12.47,12.46,12.46,12.46,12.46,12.46,12.45,12.45,12.45,12.45,12.46,12.45,12.45,12.45,12.45,12.48,12.46,12.46,12.46,12.46,12.48,12.46,12.46,12.46,12.46,12.46,12.46,12.45,12.45,12.45,12.46,12.48,12.47,12.47,12.46,12.46,12.48,12.46,12.46,12.46,12.47,12.48,12.47,12.47,12.47,12.46,12.47,12.47,12.47,12.47,12.47,12.48,12.46,12.46,12.46,12.46,12.48,12.47,12.47,12.47,12.45,12.46,12.47,12.47,12.47,12.47,12.47,12.47,12.46,12.45,12.44,12.44,12.47,12.47,12.47,12.45,12.45,12.47,12.46,12.47,12.46,12.46,12.49,12.47,12.47,12.43,12.42,12.46,12.47,12.47,12.48,12.48,12.49,12.47,12.47,12.46,12.45,12.46,12.47,12.48,12.48,12.48,12.48,12.44,12.41,12.41,12.41,12.41,12.41,12.42,12.41,12.41,12.41,12.42,12.41,12.39,12.39,12.39,12.41,12.41,12.41,12.42,12.42,12.42,12.41,12.41,12.41,12.41,12.42,12.41,12.41,12.41,12.41,12.72,12.47,12.41,12.41,12.41,12.43,12.41,12.41,12.41,12.41,12.41,12.42,12.41,12.41,12.41,12.42,12.43,12.42,12.41,12.41,12.41,12.42,12.39,12.39,12.39,12.39,12.42,12.42,12.41,12.41,12.41,12.43,12.41,12.41,12.41,12.41,12.43,12.42,12.42,12.42,12.42,12.43,12.42,12.41,12.41,12.41,12.42,12.42,12.42,12.42,12.42,12.42,12.43,12.41,12.41,12.41,12.41,12.43,12.42,12.41,12.41,12.41,12.43,12.42,12.43,12.43,12.41,12.42,12.42,12.42,12.42,12.42,12.44,12.42,12.42,12.42,12.42,12.43,12.4,12.4,12.39,12.39,12.4,12.42,12.42,12.42,12.43,12.42,12.45,12.43,12.43,12.43,12.41,12.55,12.49,12.49,12.49,12.47,12.49,12.43,12.43,12.43,12.43,12.44,12.43,12.43,12.43,12.41,12.42,12.43,12.43,12.43,12.43,12.44,12.43,12.43,12.43,12.43,12.44,12.42,12.42,12.42,12.39,12.39,12.43,12.43,12.43,12.43,12.43,12.43,12.42,12.42,12.42,12.42,12.44,12.43,12.43,12.43,12.43,12.43,12.41,12.41,12.44,12.4,12.43,12.43,12.43,12.43,12.41,12.42,12.41,12.41,12.38,12.38,12.39,12.38,12.41,12.42,12.42,12.43,12.42,12.42,12.41,12.42,12.42,12.41,12.39,12.41,12.41,12.41,12.42,12.41,12.42,12.42,12.42,12.43,12.6,12.47,12.47,12.47,12.48,12.44,12.4,12.4,12.4,12.41,12.42,12.42,12.42,12.42,12.44,12.42,12.38,12.38,12.38,12.4,12.42,12.42,12.42,12.42,12.42,12.41,12.42,12.42,12.42,12.42,12.43,12.43,12.43,12.43,12.43,12.43,12.42,12.42,12.42,12.42,12.43,12.43,12.43,12.43,12.43,12.44,12.43,12.43,12.42,12.42,12.43,12.39,12.39,12.39,12.39,12.4,12.4,12.4,12.39,12.39,12.4,12.42,12.42,12.42,12.42,12.43,12.43,12.4,12.4,12.4,12.42,12.44,12.42,12.42,12.42,12.42,12.42,12.42,12.43,12.43,12.43,12.43,12.42,12.42,12.42,12.42,12.43,12.43,12.43,12.43,12.43,12.44,12.44,12.44,12.44,12.44,12.43,12.42,12.42,12.43,12.43,12.43,12.44,12.43,12.43,12.43,12.42,12.44,12.44,12.44,12.44,12.43,12.44,12.43,12.43,12.43,12.43,12.42,12.41,12.41,12.41,12.4,12.42,12.42,12.42,12.42,12.39,12.4,12.41,12.41,12.4,12.42,12.43,12.41,12.41,12.41,12.41,12.4,12.43,12.42,12.42,12.4,12.39,12.42,12.41,12.41,12.4,12.4,12.42,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.42,12.43,12.41,12.41,12.41,12.41,12.42,12.4,12.4,12.42,12.42,12.42,12.43,12.43,12.41,12.41,12.41,12.43,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.42,12.75,12.47,12.47,12.47,12.47,12.47,12.42,12.4,12.41,12.4,12.41,12.39,12.4,12.4,12.4,12.41,12.42,12.42,12.42,12.42,12.42,12.45,12.42,12.42,12.41,12.41,12.44,12.42,12.42,12.42,12.42,12.42,12.42,12.42,12.42,12.42,12.42,12.42,12.42,12.42,12.42,12.43,12.44,12.43,12.43,12.43,12.45,12.43,12.43,12.43,12.43,12.44,12.38,12.39,12.39,12.39,12.39,12.41,12.4,12.4,12.4,12.41,12.44,12.44,12.43,12.43,12.43,12.45,12.44,12.43,12.43,12.43,12.41,12.4,12.4,12.4,12.4,12.44,12.41,12.4,12.4,12.4,12.42,12.4,12.4,12.4,12.4,12.4,12.38,12.38,12.38,12.41,12.42,12.42,12.42,12.41,12.41,12.41,12.43,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.39,12.41,12.42,12.42,12.42,12.4,12.42,12.43,12.43,12.43,12.39,12.41,12.41,12.41,12.41,12.42,12.43,12.42,12.42,12.42,12.42,12.42,12.4,12.38,12.38,12.42,12.42,12.42,12.41,12.42,12.41,12.41,12.41,12.39,12.39,12.43,12.43,12.44,12.42,12.42,12.41,12.41,12.42,12.43,12.42,12.4,12.4,12.41,12.43,12.43,12.42,12.42,12.43,12.43,12.43,12.43,12.43,12.44,12.43,12.42,12.43,12.42,12.43,12.43,12.42,12.43,12.43,12.43,12.43,12.42,12.43,12.43,12.43,12.44,12.43,12.43,12.43,12.43,12.45,12.43,12.43,12.43,12.43,12.44,12.43,12.41,12.41,12.41,12.42,12.43,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.42,12.44,12.4,12.4,12.4,12.39,12.44,12.43,12.43,12.43,12.43,12.45,12.43,12.43,12.43,12.43,12.44,12.44,12.44,12.44,12.44,12.45,12.43,12.42,12.41,12.41,12.42,12.39,12.39,12.39,12.39,12.41,12.42,12.42,12.42,12.42,12.41,12.42,12.4,12.4,12.4,12.4,12.41,12.41,12.41,12.41,12.41,12.42,12.42,12.42,12.42,12.42,12.41,12.39,12.39,12.4,12.4,12.42,12.4,12.4,12.4,12.4,12.43,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.42,12.42,12.41,12.41,12.41,12.42,12.43,12.41,12.41,12.41,12.43,12.43,12.41,12.41,12.42,12.42,12.44,12.42,12.42,12.42,12.43,12.44,12.41,12.41,12.41,12.41,12.41,12.42,12.41,12.41,12.42,12.42,12.43,12.42,12.42,12.42,12.42,12.44,12.43,12.43,12.43,12.42,12.42,12.39,12.42,12.43,12.42,12.43,12.42,12.42,12.42,12.42,12.43,12.43,12.43,12.41,12.4,12.41,12.4,12.4,12.44,12.44,12.44,12.44,12.43,12.41,12.41,12.4,12.41,12.4,12.42,12.42,12.42,12.44,12.44,12.43,12.43,12.43,12.78,12.49,12.49,12.5,12.49,12.47,12.4,12.43,12.43,12.43,12.42,12.41,12.42,12.41,12.41,12.42,12.4,12.42,12.42,12.42,12.42,12.38,12.4,12.4,12.4,12.4,12.43,12.41,12.42,12.42,12.42,12.41,12.39,12.38,12.38,12.38,12.41,12.42,12.42,12.42,12.42,12.41,12.4,12.4,12.4,12.4,12.41,12.4,12.4,12.4,12.4,12.41,12.41,12.41,12.41,12.41,12.41,12.42,12.42,12.42,12.42,12.42,12.44,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.42,12.43,12.42,12.41,12.42,12.42,12.44,12.42,12.42,12.42,12.42,12.44,12.43,12.43,12.43,12.43,12.43,12.43,12.42,12.42,12.42,12.43,12.44,12.43,12.43,12.43,12.43,12.43,12.42,12.42,12.42,12.43,12.44,12.43,12.43,12.43,12.42,12.42,12.4,12.4,12.4,12.4,12.42,12.43,12.43,12.43,12.43,12.44,12.43,12.43,12.43,12.41,12.42,12.42,12.42,12.42,12.43,12.43,12.45,12.43,12.43,12.49,12.49,12.5,12.49,12.49,12.44,12.43,12.49,12.55,12.7,16.26,12.54,12.56,12.55,12.56,12.54,12.54,12.56,12.54,12.54,12.54,12.54,12.56,12.55,12.55,12.53,12.53,12.54,12.54,12.52,12.44,12.41,12.41,12.42,12.41,12.4,12.4,12.4,12.42,12.41,12.41,12.41,12.41,12.42,12.42,12.41,12.41,12.41,12.42,12.4,12.41,12.41,12.41,12.42,12.4,12.42,12.42,12.42,12.42,12.4,12.4,12.4,12.4,12.41,12.41,12.4,12.4,12.4,12.42,12.4,12.39,12.38,12.38,12.38,12.4,12.41,12.41,12.41,12.41,12.41,12.36,12.35,12.35,12.35,12.39,12.4,12.41,12.4,12.4,12.42,12.41,12.41,12.41,12.41,12.42,12.38,12.39,12.39,12.39,12.4,12.43,12.42,12.41,12.41,12.43,12.4,12.4,12.4,12.4,12.42,12.42,12.42,12.42,12.41,12.41,12.42,12.4,12.4,12.4,12.4,12.42,12.41,12.41,12.41,12.41,12.42,12.41,12.41,12.42,12.42,12.42,12.4,12.4,12.4,12.41,12.43,12.42,12.42,12.42,12.42,12.43,12.42,12.42,12.42,12.42,12.41,12.41,12.41,12.41,12.41,12.41,12.42,12.42,12.42,12.42,12.42,12.44,12.43,12.43,12.43,12.43,12.44,12.43,12.43,12.39,12.4,12.42,12.43,12.43,12.42,12.42,12.44,12.43,12.43,12.43,12.43,12.44,12.43,12.41,12.4,12.4,12.4,12.41,12.4,12.4,12.41,12.42,12.42,12.41,12.41,12.41,12.41,12.42,12.42,12.42,12.4,12.4,12.41,12.41,12.41,12.4,12.4,12.42,12.42,12.42,12.43,12.43,12.44,12.43,12.42,12.42,12.43,12.53,12.69,12.69,12.69,12.69,12.7,12.68,12.68,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.71,12.69,12.7,12.7,12.7,13.02,12.75,12.75,12.75,12.75,12.73,12.69,12.66,12.67,12.67,12.69,12.69,12.69,12.69,12.69,12.7,12.7,12.69,12.7,12.7,12.71,12.69,12.68,12.68,12.68,12.68,12.7,12.7,12.69,12.69,12.7,12.71,12.67,12.67,12.67,12.67,12.7,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.71,12.71,12.71,12.69,12.69,12.71,12.7,12.69,12.69,12.69,12.69,12.71,12.7,12.7,12.69,12.69,12.72,12.71,12.71,12.71,12.71,12.71,12.7,12.7,12.7,12.71,12.72,12.71,12.71,12.7,12.71,12.73,12.71,12.7,12.7,12.71,12.72,12.71,12.71,12.7,12.69,12.7,12.7,12.7,12.69,12.69,12.68,12.7,12.7,12.7,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.7,12.69,12.7,12.7,12.69,12.7,12.69,12.69,12.69,12.7,12.71,12.69,12.69,12.69,12.69,12.7,12.68,12.68,12.68,12.7,12.71,12.7,12.7,12.7,12.7,12.7,12.7,12.69,12.7,12.69,12.69,12.7,12.69,12.69,12.69,12.7,12.71,12.7,12.7,12.7,12.7,12.7,12.68,12.68,12.7,12.7,12.71,12.69,12.69,12.7,12.7,12.71,12.7,12.69,12.69,12.69,12.7,12.7,12.71,12.71,12.71,12.71,12.71,12.71,12.7,12.7,12.71,12.72,12.71,12.7,12.7,12.7,12.72,12.71,12.68,12.67,12.67,12.69,12.68,12.68,12.68,12.68,12.69,12.71,12.71,12.71,12.71,12.71,12.71,12.69,12.69,12.69,12.7,12.68,12.69,12.69,12.69,12.7,12.69,12.71,12.71,12.71,12.71,12.71,12.7,12.7,12.7,12.7,12.71,12.66,12.66,12.66,12.66,12.67,12.7,12.7,12.7,12.7,12.72,12.71,12.71,12.71,12.71,12.72,12.71,12.71,12.71,12.71,12.73,12.7,12.69,12.68,12.68,12.68,12.69,12.68,12.68,12.68,12.68,12.7,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.71,12.7,12.7,12.7,12.7,12.71,12.69,12.69,12.7,12.7,12.68,12.69,12.69,12.69,12.69,12.71,12.7,12.7,12.69,12.69,12.69,12.7,12.7,12.7,12.7,12.69,12.71,12.69,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.71,12.69,12.69,12.69,12.69,12.71,12.7,12.7,12.7,12.69,12.71,12.69,12.7,12.7,12.7,12.71,12.69,12.69,12.69,12.7,12.71,12.71,12.71,12.7,12.69,12.71,12.71,12.71,12.71,12.68,12.68,12.7,12.68,12.68,12.71,12.71,12.69,12.67,12.67,12.68,12.68,12.68,12.65,12.65,12.68,12.68,12.7,12.7,12.7,12.69,12.69,12.7,12.7,12.71,12.69,12.69,12.71,12.69,12.69,12.68,12.68,12.69,12.71,12.7,12.71,12.71,12.71,13.04,12.77,12.76,12.76,12.76,12.72,12.69,12.69,12.69,12.69,12.71,12.7,12.71,12.71,12.71,12.72,12.7,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.71,12.71,12.69,12.69,12.68,12.68,12.69,12.66,12.66,12.66,12.67,12.68,12.69,12.69,12.69,12.69,12.67,12.68,12.68,12.68,12.68,12.7,12.7,12.69,12.7,12.7,12.71,12.69,12.69,12.68,12.68,12.7,12.69,12.69,12.69,12.69,12.7,12.67,12.67,12.67,12.67,12.68,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.71,12.69,12.68,12.68,12.68,12.69,12.67,12.67,12.67,12.67,12.7,12.7,12.7,12.7,12.7,12.72,12.7,12.7,12.7,12.7,12.72,12.7,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.68,12.71,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.72,12.7,12.7,12.7,12.7,12.71,12.72,12.71,12.71,12.71,12.7,12.71,12.71,12.71,12.7,12.69,13.07,12.78,12.78,12.78,12.79,12.77,12.72,12.71,12.71,12.69,12.7,12.72,12.71,12.71,12.72,12.72,12.71,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.72,12.71,12.72,12.7,12.7,12.73,12.73,12.73,12.7,12.7,12.73,12.72,12.72,12.7,12.7,12.72,12.71,12.7,12.7,12.69,12.7,12.7,12.7,12.71,12.7,12.72,12.7,12.7,12.68,12.69,12.69,12.71,12.71,12.71,12.71,12.71,12.69,12.68,12.7,12.7,12.7,12.72,12.7,12.7,12.7,12.7,12.7,12.69,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.71,12.67,12.7,12.7,12.7,12.84,12.77,12.77,12.77,12.77,12.78,12.7,12.71,12.71,12.71,12.72,12.72,12.71,12.71,12.71,12.71,12.72,12.72,12.71,12.71,12.71,12.72,12.71,12.71,12.71,12.71,12.72,12.72,12.72,12.72,12.72,12.71,12.72,12.72,12.72,12.72,12.73,12.72,12.72,12.72,12.72,12.72,12.7,12.7,12.7,12.7,12.72,12.72,12.72,12.72,12.73,12.73,12.74,12.72,12.72,12.72,12.72,12.72,12.7,12.7,12.7,12.71,12.72,12.7,12.7,12.7,12.7,12.71,12.71,12.71,12.71,12.71,12.73,12.72,12.72,12.72,12.73,12.72,12.71,12.71,12.71,12.71,12.74,12.73,12.73,12.73,12.73,12.72,12.73,12.73,12.73,12.73,12.73,12.72,12.72,12.72,12.72,12.72,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.72,12.71,12.71,12.72,12.71,12.71,12.71,12.71,12.71,12.7,12.7,12.7,12.71,12.72,12.71,12.71,12.71,12.7,12.72,12.71,12.71,12.71,12.71,12.72,12.71,12.71,12.71,12.71,12.72,12.71,12.71,12.71,12.71,12.81,12.92,12.75,12.75,12.74,12.74,12.72,12.71,12.71,12.69,12.69,12.44,12.42,12.44,12.44,12.44,12.45,12.44,12.44,12.41,12.41,12.45,12.45,12.45,12.44,12.44,12.45,12.44,12.44,12.44,12.44,12.45,12.45,12.45,12.44,12.43,12.45,12.44,12.44,12.42,12.42,12.43,12.43,12.45,12.42,12.42,12.43,12.42,12.42,12.45,12.45,12.45,12.46,12.46,12.45,12.45,12.45,12.46,12.45,12.43,12.43,12.43,12.45,12.45,12.45,12.45,12.45,12.46,12.45,12.45,12.45,12.45,12.47,12.45,12.44,12.43,12.43,12.44,12.65,12.83,12.69,13.24,12.73,12.75,12.7,12.68,12.68,12.68,12.69,12.68,12.68,12.68,12.68,12.68,12.68,12.68,12.67,12.67,12.68,12.68,12.68,12.68,12.68,12.69,12.67,12.67,12.67,12.67,12.67,12.65,12.65,12.66,12.66,12.68,12.67,12.67,12.67,12.67,12.65,12.65,12.64,12.64,12.64,12.64,12.67,12.66,12.66,12.66,12.66,12.66,12.65,12.65,12.65,12.66,12.65,12.64,12.64,12.64,12.64,12.68,12.66,12.66,12.66,12.66,12.68,12.67,12.67,12.67,12.67,12.68,12.65,12.65,12.65,12.65,12.65,12.66,12.66,12.66,12.66,12.68,12.66,12.66,12.66,12.66,12.67,12.68,12.67,12.67,12.67,12.67,12.68,12.67,12.67,12.67,12.66,12.68,12.68,12.67,12.67,12.67,12.68,12.67,12.67,12.67,12.68,12.67,12.64,12.64,12.64,12.66,12.67,12.65,12.65,12.67,12.67,12.68,12.65,12.65,12.65,12.68,12.69,12.68,12.68,12.68,12.68,12.69,12.66,12.66,12.66,12.66,12.66,18.61,21.1,13.76,13.77,13.77,13.79,13.78,13.78,13.78,13.79,13.79,13.78,13.8,20.23,22.56,23.8,23.02,16.26,13.81,13.81,15.97,23.33,23.48,19.73,23.32,17.61,13.78,13.78,13.79,13.79,13.8,13.79,13.78,13.8,13.8,16.17,23.01,21.28,19.16,13.76,13.76,13.8,13.81,13.8,13.81,13.81,13.81,13.81,20.36,20.49,13.8,13.82,13.82,13.82,13.82,13.82,13.86,13.84,13.83,13.83,13.83,13.84,13.81,13.82,13.83,13.81,13.82,13.83,13.83,13.83,13.83,13.83,13.85,13.83,13.83,13.83,13.83,13.85,13.82,13.82,13.82,13.82,13.84,13.83,13.82,13.82,13.82,13.84,13.83,13.83,13.83,13.84,13.85,13.81,13.81,13.8,13.8,13.83,13.84,13.84,13.83,13.82,13.85,13.81,13.81,13.81,13.81,13.82,13.82,13.82,13.82,13.82,13.84,13.83,13.83,13.83,13.83,13.83,13.86,13.83,13.83,13.83,13.83,13.84,13.82,13.82,13.82,13.82,13.86,13.85,13.85,13.85,13.84,13.86,13.85,13.85,13.85,13.84,13.85,13.83,13.83,13.83,13.83,13.84,13.85,13.85,13.85,13.85,13.86,13.85,13.85,13.85,13.85,14.01,14.03,13.89,13.89,13.89,13.9,13.86,13.84,13.84,13.84,13.84,13.85,13.85,13.92,23.94,16.82,13.79,13.79,13.79,13.79,13.79,13.81,13.8,13.8,13.8,13.79,13.81,13.82,13.79,18.77,17.87,22.35,23.04,23.21,23.49,23.12,23.04,19.67,13.76,20.24,19.92,13.79,13.8,13.8,13.79,13.79,13.79,13.82,16.48,23.28,17.86,13.82,13.84,13.85,13.84,13.83,13.83,13.83,13.82,13.82,13.84,13.84,13.85,13.85,13.85,13.85,13.83,13.84,13.82,13.84,13.84,13.84,13.85,13.83,13.83,13.83,13.83,13.83,13.82,13.82,13.84,13.84,13.85,13.83,13.83,13.82,13.82,13.82,13.85,13.85,13.83,13.83,13.82,13.85,13.85,13.85,13.86,13.87,13.91,13.92,13.92,13.91,13.9,13.98,13.98,13.98,13.95,13.95,13.97,13.96,13.96,19.57,19.74,13.86,13.88,13.88,13.87,13.87,13.88,13.88,13.89,13.89,12.67,12.6,12.61,12.58,12.58,12.58,12.58,12.61,12.6,12.6,12.6,12.6,12.61,12.59,12.59,12.59,12.59,12.59,12.55,12.55,12.55,12.56,12.58,12.61,12.6,12.6,12.6,12.61,12.58,12.58,12.58,12.58,12.6,12.61,12.61,12.61,12.61,12.61,12.6,12.61,12.61,12.6,12.6,12.6,12.59,12.59,12.59,12.59,12.62,12.61,12.61,12.61,12.61,12.62,12.61,12.6,12.6,12.6,12.61,12.6,12.6,12.6,12.6,12.62,12.61,12.61,12.61,12.61,12.62,12.61,12.61,12.61,12.61,12.62,12.62,12.62,12.62,12.62,12.61,12.61,12.61,12.61,12.61,12.6,12.56,12.54,12.54,12.54,12.58,12.6,12.59,12.59,12.59,12.6,12.6,12.59,12.59,12.59,12.57,12.6,12.58,12.58,12.58,12.6,12.6,12.59,12.59,12.59,12.6,12.61,12.6,12.6,12.59,12.59,12.6,12.59,12.59,12.59,12.57,12.59,12.59,12.59,12.59,12.59,12.59,12.61,12.6,12.6,12.59,12.59,12.61,12.6,12.6,12.6,12.6,12.61,12.61,12.61,12.59,12.59,12.61,12.6,12.6,12.6,12.59,12.61,12.6,12.6,12.57,12.57,12.59,12.6,12.59,12.58,12.58,12.6,12.59,12.59,12.61,12.61,12.61,12.62,12.61,12.6,12.6,12.59,12.61,12.6,12.6,12.6,12.6,12.62,12.6,12.6,12.6,12.6,12.6,12.59,12.6,12.6,12.6,12.6,12.58,12.59,12.59,12.59,12.61,12.6,12.59,12.59,12.59,12.61,12.61,12.6,12.6,12.6,12.61,12.61,12.6,12.6,12.6,12.61,12.61,12.61,12.61,12.61,12.61,12.62,12.61,12.61,12.61,12.61,12.62,12.61,12.61,12.61,12.61,12.62,12.58,12.58,12.58,12.58,12.6,12.62,12.62,12.62,12.62,12.62,12.61,12.62,12.61,12.61,12.62,12.59,12.59,12.59,12.59,12.61,12.58,12.58,12.58,12.58,12.7,12.8,12.65,12.65,12.65,12.66,12.6,12.59,12.59,12.59,12.59,12.61,12.6,12.6,12.6,12.6,12.61,12.59,12.59,12.59,12.59,12.6,12.6,12.6,12.6,12.6,12.6,12.59,12.59,12.6,12.59,12.61,12.59,12.59,12.59,12.6,12.6,12.6,12.6,12.6,12.61,12.58,12.59,12.59,12.59,12.59,12.59,12.59,12.59,12.58,12.59,12.6,12.62,12.59,12.59,12.59,12.6,12.61,12.6,12.6,12.6,12.61,12.59,12.58,12.57,12.6,12.57,12.59,12.58,12.58,12.58,12.57,12.59,12.59,12.59,12.59,12.58,12.59,12.6,12.59,12.59,12.58,12.59,12.6,12.6,12.61,12.59,12.6,12.62,12.61,12.61,12.61,12.61,12.62,12.61,12.61,12.61,12.61,12.61,12.61,12.6,12.61,12.61,12.61,12.6,12.6,12.61,12.61,12.63,12.61,12.61,12.61,12.61,12.61,12.59,12.59,12.62,12.62,12.62,12.61,12.61,12.61,12.61,12.62,12.61,12.59,12.6,12.61,12.61,12.63,12.61,12.61,12.61,12.61,12.62,12.61,12.61,12.61,12.61,12.62,12.61,12.61,12.61,12.61,12.62,12.62,12.58,12.57,12.57,12.59,12.59,12.59,12.59,12.59,12.6,12.59,12.59,12.59,12.59,12.6,12.59,12.57,12.57,12.56,12.57,12.58,12.6,12.6,12.6,12.6,12.58,12.57,12.57,12.56,12.56,12.59,12.59,12.59,12.59,12.59,12.6,12.6,12.6,12.6,12.6,12.62,12.59,12.59,12.59,12.59,12.61,12.61,12.61,12.6,12.6,12.62,12.6,12.59,12.59,12.59,12.6,12.6,12.6,12.6,12.6,12.61,12.6,12.6,12.6,12.6,12.6,12.61,12.59,12.6,12.6,12.6,12.61,12.61,12.61,12.6,12.6,12.6,12.59,12.6,12.6,12.6,12.62,12.61,12.61,12.6,12.6,12.62,12.6,12.6,12.6,12.6,12.61,12.6,12.6,12.6,12.6,12.59,12.59,12.59,12.59,12.59,12.6,12.59,12.59,12.59,12.59,12.59,12.62,12.61,12.61,12.6,12.6,12.62,12.61,12.61,12.61,12.61,12.61,12.61,12.6,12.6,12.57,12.6,12.61,12.61,12.61,12.62,12.63,12.61,12.61,12.61,12.6,12.61,12.61,12.61,12.61,12.58,12.6,12.6,12.6,12.6,12.61,12.61,12.63,12.62,12.62,12.62,12.62,12.62,12.62,12.62,12.6,12.6,12.62,12.61,12.6,12.57,12.57,12.58,12.57,12.6,12.57,12.57,12.59,12.58,12.58,12.58,12.58,12.59,12.58,12.58,12.6,12.6,12.61,12.59,12.59,12.6,12.6,12.61,12.6,12.6,12.6,12.6,12.6,12.61,12.6,12.59,12.59,12.59,12.6,12.6,12.59,12.59,12.59,12.61,12.6,12.61,12.6,12.6,12.62,12.6,12.59,12.59,12.59,12.61,12.59,12.57,12.57,12.59,12.6,12.59,12.6,12.6,12.6,12.61,12.6,12.61,12.6,12.6,12.77,12.82,12.66,12.66,12.66,12.66,12.62,12.6,12.59,12.59,12.59,12.6,12.61,12.61,12.61,12.61,12.62,12.61,12.61,12.61,12.61,12.62,12.61,12.61,12.61,12.61,12.62,12.59,12.59,12.59,12.59,12.61,12.59,12.59,12.59,12.59,12.6,12.59,12.59,12.59,12.59,12.6,12.6,12.6,12.6,12.6,12.6,12.59,12.58,12.58,12.57,12.57,12.61,12.61,12.61,12.61,12.61,12.6,12.59,12.59,12.59,12.61,12.62,12.6,12.6,12.61,12.61,12.61,12.61,12.61,12.61,12.61,12.62,12.61,12.61,12.61,12.61,12.62,12.61,12.61,12.61,12.61,12.63,12.6,12.6,12.6,12.6,12.6,12.62,12.61,12.61,12.6,12.59,12.6,12.59,12.59,12.59,12.59,12.6,12.6,12.6,12.6,12.59,12.61,12.59,12.59,12.59,12.61,12.59,12.59,12.59,12.59,12.6,12.61,12.6,12.59,12.59,12.6,12.61,12.6,12.59,12.59,12.59,12.6,12.58,12.97,12.66,12.66,12.66,12.66,12.64,12.59,12.59,12.59,12.6,12.59,12.59,12.59,12.59,12.61,12.59,12.59,12.59,12.59,12.6,12.6,12.6,12.58,12.58,12.57,12.55,12.59,12.59,12.59,12.6,12.6,12.6,12.6,12.6,12.61,12.6,12.6,12.59,12.59,12.59,12.61,12.6,12.6,12.6,12.6,12.61,12.6,12.59,12.59,12.59,12.6,12.59,12.6,12.6,12.6,12.62,12.6,12.6,12.6,12.6,12.61,12.6,12.61,12.6,12.6,12.61,12.6,12.59,12.59,12.59,12.6,12.58,12.59,12.59,12.59,12.6,12.6,12.6,12.6,12.6,12.6,12.61,12.6,12.6,12.6,12.6,12.61,12.6,12.61,12.61,12.61,12.6,12.58,12.57,12.57,12.57,12.6,12.6,12.6,12.6,12.6,12.61,12.59,12.59,12.58,12.58,12.6,12.59,12.59,12.59,12.59,12.61,12.61,12.61,12.6,12.6,12.61,12.61,12.59,12.58,12.58,12.6,12.59,12.59,12.59,12.59,12.59,12.6,12.59,12.59,12.58,12.58,12.58,12.58,12.58,12.58,12.58,12.58,12.57,12.57,12.57,12.57,12.59,12.58,12.58,12.59,12.59,12.61,12.59,12.59,12.59,12.59,12.58,12.58,12.59,12.59,12.59,12.6,12.57,12.57,12.57,12.57,12.57,12.61,12.59,12.58,12.59,12.6,12.61,12.59,12.59,12.59,12.6,12.61,12.6,12.6,12.59,12.59,12.61,12.6,12.6,12.6,12.6,12.6,12.59,12.59,12.59,12.59,12.6,12.59,12.59,12.59,12.6,12.61,12.6,12.6,12.6,12.6,12.61,12.6,12.6,12.59,12.61,12.61,12.61,12.6,12.6,12.6,12.6,12.62,12.61,12.61,12.6,12.6,12.62,12.6,12.6,12.58,12.58,12.59,12.6,12.6,12.6,12.6,12.6,12.59,12.59,12.6,12.6,12.61,12.6,12.6,12.58,12.58,12.58,12.61,12.61,12.6,12.6,12.6,12.94,12.67,12.66,12.67,12.67,12.64,12.61,12.58,12.58,12.57,12.61,12.61,12.6,12.6,12.61,12.62,12.61,12.61,12.61,12.61,12.62,12.59,12.6,12.6,12.6,12.61,12.61,12.61,12.61,12.61,12.62,12.61,12.62,12.6,12.59,12.59,12.6,12.59,12.59,12.59,12.59,12.6,12.59,12.59,12.58,12.58,12.6,12.59,12.59,12.59,12.59,12.6,12.59,12.59,12.59,12.59,12.61,12.59,12.59,12.59,12.59,12.61,12.59,12.59,12.59,12.58,12.6,12.58,12.58,12.57,12.57,12.58,12.59,12.59,12.59,12.59,12.59,12.6,12.58,12.58,12.58,12.58,12.6,12.6,12.6,12.6,12.6,12.6,12.6,12.6,12.6,12.6,12.61,12.6,12.6,12.6,12.6,12.6,12.59,12.59,12.59,12.59,12.59,12.6,12.6,12.59,12.59,12.6,12.59,12.59,12.59,12.59,12.61,12.6,12.6,12.6,12.6,12.6,12.62,12.6,12.6,12.61,12.59,12.61,12.6,12.6,12.6,12.61,12.6,12.58,12.58,12.58,12.6,12.61,12.6,12.6,12.6,12.61,12.61,12.6,12.6,12.6,12.58,12.6,12.61,12.6,12.6,12.59,12.6,12.6,12.6,12.6,12.59,12.6,12.6,12.6,12.6,12.61,12.61,12.62,12.6,12.6,12.6,12.6,12.62,12.61,12.6,12.6,12.6,12.61,12.6,12.6,12.61,12.61,12.62,12.61,12.61,12.61,12.6,12.62,12.62,12.61,12.6,12.6,12.61,12.61,12.61,12.6,12.59,12.58,12.6,12.78,12.79,12.69,20.16,16.21,13.82,13.85,13.85,13.85,13.88,13.86,13.83,13.83,13.83,13.85,13.86,13.86,13.86,13.87,13.88,13.86,13.84,13.84,13.85,13.86,13.85,13.85,13.86,13.85,13.87,13.86,13.83,13.82,13.83,13.86,13.87,13.87,13.87,13.87,13.86,13.85,13.85,13.85,13.85,13.85,13.88,13.87,13.87,13.87,13.87,13.88,13.87,13.87,13.87,13.87,13.88,13.88,13.87,13.85,13.85,13.86,13.85,13.85,13.85,13.85,13.87,13.84,13.85,13.85,13.85,13.87,13.86,13.86,13.86,13.86,13.9,13.85,13.85,13.85,13.85,13.87,13.85,13.85,13.86,13.87,13.87,13.9,13.88,13.88,13.88,13.88,13.9,13.89,13.88,13.88,13.86,13.88,13.88,13.88,13.88,13.88,13.87,13.84,13.84,13.84,13.88,13.9,13.88,13.88,13.88,13.88,13.89,13.89,13.89,13.88,13.87,13.89,13.87,13.87,13.87,13.87,13.89,13.87,13.87,13.87,13.87,13.89,13.88,13.86,13.86,13.86,13.9,13.91,13.9,13.89,13.88,13.88,13.88,13.88,13.88,13.88,13.89,13.9,13.88,13.88,13.88,14.16,14.09,14.08,14.08,14.08,14.03,14.01,14,13.99,13.97,13.96,13.97,13.98,13.98,13.98,13.98,13.99,13.99,14,13.99,14,14,14.02,14.01,14.01,13.98,13.97,14.22,14.06,14.03,14.04,14.04,14.02,13.98,13.98,13.98,13.97,14,14,14,14,14,14.01,14,14,14.01,14.01,14.02,14.01,13.99,13.99,13.99,14,13.99,13.99,14,14,14,14.02,14,14,14,14,14.02,14,14,14,14,14.01,13.99,13.99,13.99,13.99,13.99,13.98,13.99,13.98,13.98,14.01,14.01,13.98,13.98,13.98,13.99,14,13.99,13.99,13.99,14,14,13.99,13.99,13.99,14.01,13.99,14,14,14,14,14.01,14,14,14,14,14.02,14.01,14.01,14.01,14.01,14.03,13.98,13.98,13.98,13.98,14.01,14.01,14,14,14,14.01,14,14,14,14,14.01,14.02,14.02,14.01,14.01,14.02,14,14,14,14,14.01,14.01,14.01,14.01,14.01,14.01,14.01,14,14,14,14,14.02,14.01,14.01,14.01,14.01,14.03,14,14,14,14,14.01,14,13.98,13.98,13.98,13.13,12.73,12.73,12.73,12.72,12.73,12.72,12.72,12.72,12.72,12.74,12.73,12.73,12.73,12.73,12.72,12.73,12.73,12.73,12.73,12.72,12.72,12.7,12.7,12.71,12.73,12.74,12.73,12.72,12.72,12.73,12.73,12.72,12.72,12.72,12.69,12.72,12.73,12.73,12.73,12.73,12.75,12.74,12.74,12.73,12.73,12.75,12.73,12.73,12.73,12.72,12.73,12.73,12.73,12.73,12.73,12.75,12.73,12.73,12.73,12.74,12.74,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.74,12.74,12.74,12.74,12.74,12.74,12.72,12.72,12.73,12.72,12.72,12.74,12.74,12.74,12.73,12.73,12.73,12.73,12.75,12.75,12.75,12.74,12.74,12.74,12.74,12.73,12.74,12.74,12.74,12.75,12.74,12.74,12.74,12.74,12.72,12.69,12.73,12.73,12.73,12.74,12.71,12.7,12.7,12.71,12.73,12.74,12.74,12.74,12.74,12.74,12.72,12.73,12.73,12.73,12.74,12.74,12.74,12.74,12.74,12.74,12.73,12.75,12.75,12.75,12.75,12.76,12.74,12.74,12.74,12.74,12.75,12.75,12.75,12.75,12.75,12.76,12.74,12.74,12.73,12.72,12.75,12.75,12.75,12.73,12.73,12.74,12.72,12.72,12.72,12.72,12.74,12.72,12.72,12.72,12.72,12.73,12.71,12.71,12.71,12.71,12.71,12.75,12.73,12.73,12.73,12.73,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.73,12.73,12.73,12.72,12.72,12.71,12.71,12.71,12.73,12.75,12.74,12.74,12.73,12.71,12.72,12.71,12.71,12.72,12.72,12.73,12.72,12.72,12.72,12.7,12.73,12.72,12.72,12.71,12.72,13.04,12.78,12.78,12.78,12.78,12.78,12.72,12.72,12.72,12.73,12.73,12.71,12.71,12.71,12.73,12.75,12.71,12.71,12.73,12.73,12.72,12.73,12.72,12.72,12.73,12.73,12.74,12.73,12.73,12.7,12.7,12.73,12.72,12.72,12.7,12.7,12.74,12.72,12.72,12.71,12.71,12.72,12.72,12.72,12.72,12.73,12.74,12.73,12.73,12.73,12.73,12.75,12.74,12.74,12.73,12.73,12.74,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.72,12.72,12.73,12.74,12.73,12.73,12.72,12.72,12.75,12.73,12.72,12.69,12.69,12.71,12.7,12.71,12.71,12.71,12.72,12.71,12.72,12.72,12.7,12.71,12.69,12.71,12.71,12.71,12.72,12.68,12.68,12.68,12.68,12.7,12.71,12.72,12.72,12.72,12.72,12.72,12.71,12.71,12.71,12.71,12.72,12.71,12.71,12.71,12.71,12.72,12.72,12.72,12.72,12.72,12.71,12.71,12.71,12.71,12.71,12.72,12.72,12.72,12.72,12.72,12.73,12.71,12.71,12.71,12.72,12.73,12.72,12.72,12.72,12.72,12.73,12.72,12.72,12.72,12.72,12.71,12.72,12.7,12.7,12.7,12.7,12.73,12.72,12.72,12.72,12.96,12.76,12.75,12.75,12.75,12.75,12.73,12.7,12.7,12.7,12.7,12.72,12.7,12.7,12.7,12.72,12.73,12.7,12.7,12.7,12.7,12.73,12.72,12.72,12.72,12.72,12.74,12.73,12.73,12.73,12.73,12.73,12.75,12.73,12.73,12.73,12.73,12.73,12.72,12.72,12.72,12.72,12.74,12.73,12.73,12.73,12.72,12.74,12.73,12.73,12.73,12.73,12.75,12.73,12.73,12.73,12.72,12.73,12.73,12.73,12.73,12.72,12.73,12.73,12.72,12.72,12.73,12.75,12.73,12.73,12.73,12.73,12.73,12.74,12.72,12.73,12.73,12.72,12.71,12.7,12.7,12.71,12.71,12.72,12.71,12.71,12.71,12.71,12.73,12.71,12.71,12.71,12.72,12.72,12.71,12.71,12.72,12.71,12.72,12.71,12.68,12.64,12.64,12.65,12.64,12.64,12.54,12.54,12.54,12.58,12.56,12.55,12.55,12.55,12.57,12.57,12.57,12.57,12.57,12.58,12.57,12.53,12.53,12.53,12.56,12.56,12.57,12.57,12.57,12.58,12.57,12.56,12.56,12.56,12.57,12.57,12.57,12.57,12.57,12.58,12.57,12.57,12.57,12.57,12.58,12.57,12.58,12.58,12.58,12.58,12.58,12.56,12.56,12.56,12.56,12.56,12.57,12.57,12.58,12.58,12.59,12.55,12.54,12.54,12.54,12.58,12.57,12.57,12.57,12.57,12.58,12.56,12.56,12.56,12.56,12.57,12.58,12.58,12.58,12.57,12.58,12.57,12.57,12.57,12.57,12.58,12.55,12.55,12.55,12.55,12.55,12.56,12.54,12.54,12.54,12.58,12.56,12.55,12.55,12.55,12.55,12.58,12.57,12.57,12.57,12.57,12.59,12.58,12.58,12.58,12.58,12.85,12.64,12.64,12.64,12.64,12.64,12.58,12.58,12.58,12.58,12.57,12.58,12.58,12.58,12.58,12.59,12.58,12.58,12.56,12.55,12.57,12.54,12.52,12.52,12.51,12.53,12.57,12.56,12.56,12.56,12.55,12.56,12.56,12.55,12.54,12.56,12.57,12.57,12.57,12.56,12.57,12.58,12.56,12.56,12.56,12.56,12.57,12.56,12.56,12.56,12.54,12.55,12.56,12.56,12.56,12.57,12.57,12.55,12.54,12.54,12.55,12.55,12.58,12.57,12.57,12.54,12.54,12.55,12.54,12.54,12.57,12.57,12.57,12.56,12.55,12.57,12.57,12.58,12.56,12.56,12.57,12.57,12.58,12.57,12.57,12.57,12.56,12.57,12.57,12.57,12.59,12.55,12.56,12.56,12.56,12.54,12.54,12.54,12.58,12.57,12.57,12.57,12.57,12.58,13.19,12.86,12.53,12.53,12.53,12.52,12.47,12.45,12.45,12.47,12.45,12.45,12.45,12.45,12.47,12.47,12.45,12.45,12.45,12.46,12.46,12.45,12.45,12.45,12.46,12.46,12.45,12.45,12.45,12.45,12.47,12.47,12.46,12.46,12.46,12.48,12.46,12.46,12.45,12.45,12.46,12.46,12.46,12.46,12.46,12.47,12.47,12.47,12.47,12.46,12.47,12.46,12.46,12.46,12.46,12.47,12.45,12.45,12.46,12.46,12.49,12.45,12.45,12.45,12.45,12.45,12.47,12.46,12.46,12.44,12.44,12.46,12.45,12.45,12.45,12.45,12.46,12.44,12.44,12.44,12.44,12.45,12.44,12.44,12.44,12.44,12.46,12.45,12.45,12.45,12.46,12.47,12.46,12.46,12.45,12.45,12.46,12.44,12.44,12.43,12.43,12.47,12.45,12.45,12.45,12.45,12.4,12.45,12.44,12.44,12.43,12.43,12.45,12.45,12.45,12.45,12.46,12.47,12.45,12.45,12.45,12.45,12.47,12.45,12.45,12.45,12.45,12.46,12.45,12.45,12.45,12.46,12.47,12.46,12.46,12.46,12.46,12.47,12.46,12.46,12.46,12.46,12.47,12.46,12.46,12.46,12.45,12.46,12.45,12.46,12.46,12.46,12.46,12.47,12.46,12.46,12.46,12.45,12.47,12.45,12.45,12.45,12.45,12.46,12.45,12.45,12.45,12.45,12.46,12.44,12.44,12.47,12.47,12.47,12.46,12.46,12.43,12.44,12.46,12.46,12.46,12.46,12.46,12.47,12.44,12.44,12.44,12.44,12.43,12.46,12.46,12.46,12.46,12.46,12.48,12.47,12.44,12.44,12.44,12.47,12.46,12.46,12.46,12.46,12.47,12.45,12.48,12.48,12.48,12.49,12.48,12.48,12.48,12.48,12.49,12.47,12.48,12.48,12.48,12.49,12.48,12.48,12.48,12.47,12.46,12.47,12.43,12.43,12.43,12.43,12.47,12.47,12.47,12.47,12.46,12.46,12.46,12.46,12.46,12.46,12.47,12.46,12.46,12.46,12.46,12.47,12.44,12.44,12.44,12.44,12.47,12.47,12.47,12.47,12.47,12.47,12.46,12.46,12.46,12.46,12.46,12.93,12.53,12.53,12.53,12.53,12.49,12.46,12.46,12.46,12.47,12.48,12.47,12.47,12.47,12.47,12.48,12.47,12.47,12.47,12.47,12.48,12.47,12.47,12.47,12.47,12.48,12.47,12.47,12.46,12.46,12.46,12.48,12.47,12.47,12.47,12.45,12.47,12.47,12.47,12.46,12.47,12.47,12.46,12.47,12.47,12.44,12.48,12.47,12.47,12.47,12.47,12.49,12.51,12.51,12.51,12.53,12.56,12.56,12.56,12.56,12.55,12.55,12.52,12.52,12.52,12.56,12.59,16.44,24.2,18.86,13.8,13.81,13.81,13.81,13.8,13.81,13.82,13.82,13.82,13.82,13.82,13.82,13.82,13.8,13.8,13.81,13.81,13.82,13.81,13.8,13.8,13.8,13.82,13.82,13.82,13.82,13.81,13.82,13.81,13.81,13.81,13.81,13.82,13.82,13.82,13.83,13.83,13.84,13.82,13.82,13.8,13.8,13.81,13.81,13.81,13.82,13.82,13.81,13.78,13.79,13.79,13.79,13.79,13.81,13.8,13.79,13.78,13.78,13.82,13.81,13.8,13.8,13.79,13.81,13.8,13.8,13.8,13.8,13.81,13.79,13.8,13.8,13.8,13.81,13.78,13.79,13.79,13.79,13.81,13.81,13.8,13.79,13.79,13.8,13.79,13.81,13.81,13.81,13.81,13.82,13.81,13.81,13.81,13.81,13.82,13.83,13.83,13.83,13.82,13.8,13.81,13.81,13.81,13.81,13.83,13.81,13.81,13.81,13.81,13.82,13.81,13.82,13.82,13.81,13.83,13.79,13.79,13.79,13.78,13.8,13.8,13.8,13.88,13.9,13.91,13.92,13.92,23.02,22.56,21,24.23,16.66,17.07,24.01,13.9,13.94,13.93,13.94,13.94,13.94,13.97,13.95,13.95,13.95,19.31,23.77,24.47,19.63,24.73,16.19,13.99,13.98,13.98,14.07,24.59,24.25,18.16,13.87,13.87,13.87,13.95,24.52,24.32,23.47,15.79,13.93,13.96,13.96,13.96,13.96,13.95,13.96,13.96,13.96,13.96,13.97,13.99,13.97,13.97,13.96,13.95,13.96,13.95,13.95,13.95,14.67,24.97,19.32,13.48,12.78,12.8,12.81,12.8,12.8,12.8,12.81,12.82,12.83,12.85,12.86,12.86,12.87,12.86,20.01,24.5,14.61,24.09,21.69,13.95,13.98,13.98,13.99,13.99,13.99,13.99,13.99,13.99,14,13.99,13.99,14,14,14.01,14,13.98,13.99,13.99,14,13.99,13.99,13.99,13.99,14,14,13.99,14,13.99,14.01,14.01,13.99,13.96,13.95,13.97,13.98,13.98,13.98,13.98,13.99,13.99,13.99,14,14,14.01,14,14,14.01,14.01,14.01,14.02,13.99,13.96,13.95,13.95,13.99,14,13.99,13.99,13.99,14,14,13.97,13.98,13.98,14.01,14.01,14.01,14.01,14.01,14,13.99,14,14,14,14.01,14,13.99,13.99,13.99,13.99,13.99,14.01,14.01,14.01,14.01,14.4,14.08,14.07,14.06,14.06,14.03,13.98,13.98,13.98,13.98,14.01,13.99,13.98,13.98,13.98,14.01,14.02,14.02,14.02,14.02,14.03,14.03,14,14,14,14.02,13.99,13.99,13.99,13.99,14.01,14.01,14.01,14.01,14.01,14.03,14.04,14.03,14.03,14.03,14.03,14.02,14,13.99,13.99,13.99,14.03,14.02,14.02,14.02,14.02,14.02,14.01,14.01,14.01,14.01,14.02,14.02,14.02,14.02,14,14.01,14,13.98,13.98,13.99,14.02,13.5,12.8,12.8,12.8,12.81,12.78,12.78,12.77,12.77,12.8,12.8,12.8,12.79,12.79,12.8,12.79,12.77,12.77,12.79,12.78,12.8,12.79,12.79,12.78,12.79,12.79,12.78,12.78,12.79,12.79,12.79,12.78,12.78,12.78,12.76,12.77,12.78,12.78,12.78,12.79,12.8,12.78,12.79,12.79,12.76,12.78,12.78,12.78,12.78,12.8,12.8,12.79,12.78,12.78,12.79,12.79,12.8,12.79,12.8,12.8,12.8,12.81,12.8,12.8,12.8,12.8,12.8,12.78,12.78,12.8,12.8,12.81,12.8,12.79,12.73,12.68,12.69,12.68,12.68,12.66,12.66,12.68,12.67,12.67,12.66,12.66,12.67,12.68,12.68,12.69,12.69,12.69,12.69,12.69,12.65,12.65,12.64,12.67,12.66,12.68,12.68,12.68,12.69,12.67,12.68,12.68,12.68,12.68,12.67,12.68,12.68,12.68,12.69,12.68,12.68,12.68,12.69,12.69,12.69,12.69,12.7,12.69,12.71,12.69,12.67,12.67,12.66,12.66,12.68,12.69,12.69,12.69,12.69,12.71,12.69,12.69,12.67,12.67,12.67,12.67,12.67,12.67,12.67,12.68,12.67,12.67,12.67,12.66,12.66,12.66,12.66,12.66,12.66,12.66,12.66,12.66,12.65,12.65,12.66,12.65,12.65,12.65,12.64,12.66,12.66,12.66,12.66,12.65,12.65,12.66,12.66,12.66,12.66,12.66,12.67,12.66,12.66,12.65,12.65,12.66,12.65,12.65,12.65,12.65,12.67,12.66,12.66,12.66,12.66,12.67,12.66,12.66,12.66,12.66,12.67,12.66,12.66,12.66,12.65,12.64,12.65,12.65,12.65,12.66,12.66,12.68,12.67,12.67,12.67,12.66,12.67,12.66,12.66,12.66,12.67,12.67,12.66,12.66,12.66,12.67,12.68,12.67,12.67,12.66,12.66,12.67,12.66,12.66,12.66,12.67,12.68,12.67,12.67,12.67,12.64,12.66,12.66,12.66,12.67,12.67,12.68,12.66,12.66,12.66,12.64,12.64,12.66,12.66,12.66,12.65,12.65,12.67,12.67,12.66,12.66,12.66,12.68,12.67,12.66,12.66,12.66,12.67,12.66,12.66,12.64,12.64,12.67,12.67,12.67,12.65,12.65,12.66,12.65,12.65,12.65,12.65,12.67,12.67,12.67,12.68,12.68,12.69,12.67,12.67,12.68,12.68,12.69,12.67,12.67,12.67,12.67,12.67,12.67,12.65,12.67,12.67,12.66,12.99,12.75,12.73,12.73,12.73,12.7,12.66,12.66,12.66,12.67,12.67,12.65,12.65,12.65,12.65,12.66,12.65,12.65,12.65,12.66,12.67,12.66,12.66,12.66,12.66,12.67,12.65,12.65,12.65,12.65,12.65,12.68,12.66,12.66,12.66,12.66,12.67,12.66,12.66,12.66,12.66,12.66,12.65,12.66,12.66,12.66,12.66,12.66,12.66,12.66,12.66,12.66,12.66,12.66,12.67,12.66,12.67,12.67,12.67,12.67,12.67,12.66,12.66,12.66,12.66,12.67,12.68,12.67,12.67,12.66,12.66,12.66,12.66,12.65,12.65,12.65,12.65,12.67,12.66,12.66,12.66,12.66,12.68,12.66,12.66,12.66,12.66,12.67,12.66,12.66,12.66,12.66,12.67,12.66,12.66,12.66,12.66,12.68,12.67,12.67,12.67,12.67,12.68,12.65,12.65,12.65,12.65,12.66,12.67,12.68,12.68,12.68,12.69,12.67,12.67,12.67,12.67,12.67,12.68,12.67,12.67,12.67,12.68,12.69,12.67,12.67,12.67,12.65,12.67,12.67,12.67,12.67,12.68,12.68,12.67,12.67,12.67,12.66,12.67,12.67,12.67,12.66,12.67,12.68,12.67,12.66,12.66,12.68,12.68,12.67,12.67,12.67,12.66,12.67,12.66,12.67,12.65,12.66,12.66,12.68,12.66,12.66,12.66,12.66,12.67,12.66,12.67,12.67,12.67,12.67,12.65,12.65,12.66,12.66,12.67,12.67,12.67,12.67,12.66,12.67,12.66,12.66,12.66,12.66,12.67,12.66,12.66,12.66,12.66,12.66,12.67,12.66,12.66,12.66,12.66,12.67,12.66,12.67,12.67,12.66,12.66,12.65,12.67,12.67,12.67,12.68,12.66,12.67,12.67,12.67,12.68,12.67,12.66,12.66,12.66,12.66,12.64,12.65,12.65,12.65,12.67,12.66,12.67,12.67,12.67,12.68,12.67,12.67,12.67,12.67,12.68,12.67,12.68,12.67,12.67,12.67,12.68,12.67,12.67,12.67,12.67,12.69,12.66,12.66,12.66,12.66,12.66,12.67,12.67,12.67,12.67,12.68,12.66,12.66,12.66,12.66,12.68,12.66,12.66,12.66,12.65,12.67,12.68,12.68,12.68,12.68,12.69,12.65,12.65,12.65,12.65,12.68,12.67,12.67,12.67,12.67,12.67,12.69,12.68,12.68,12.67,12.67,12.68,12.67,12.67,12.67,12.67,12.69,12.68,12.68,12.68,12.68,12.68,12.68,12.68,12.68,12.68,12.69,12.67,12.67,12.67,12.68,12.69,12.67,12.67,12.68,12.68,12.69,12.69,12.69,12.69,12.67,12.67,12.67,12.67,12.67,12.67,12.66,12.68,12.67,12.67,12.66,12.66,12.68,12.66,12.66,12.66,12.66,12.67,12.66,12.66,12.67,12.66,12.67,12.67,12.67,12.67,12.67,12.67,12.66,12.66,12.66,12.67,12.69,12.67,12.67,12.67,12.67,12.67,12.67,12.68,12.68,12.65,12.66,12.67,12.67,12.67,12.65,12.64,12.68,12.67,12.67,12.67,12.67,13.02,12.74,12.74,12.73,12.73,12.71,12.67,12.67,12.66,12.66,12.68,12.67,12.67,12.67,12.67,12.71,12.67,12.67,12.66,12.66,12.66,12.64,12.64,12.67,12.67,12.68,12.67,12.68,12.69,12.69,12.69,12.68,12.67,12.67,12.67,12.67,12.67,12.65,12.67,12.67,12.67,12.69,12.68,12.67,12.67,12.67,12.67,12.66,12.67,12.67,12.67,12.69,12.68,12.68,12.68,12.68,12.69,12.67,12.67,12.67,12.68,12.69,12.69,12.68,12.68,12.68,12.7,13.05,13.16,12.74,12.74,12.74,12.75,12.76,12.67,12.67,12.67,12.68,12.68,12.67,12.67,12.67,12.68,12.68,12.68,12.68,12.68,12.69,12.69,12.69,12.68,12.68,12.69,12.67,12.68,12.68,12.67,12.68,12.69,12.69,12.68,12.68,12.68,12.65,12.65,12.65,12.65,12.66,12.65,12.65,12.65,12.65,12.65,12.67,12.66,12.66,12.66,12.67,12.67,12.65,12.65,12.65,12.65,12.68,12.66,12.66,12.66,12.66,12.68,12.67,12.67,12.67,12.67,12.68,12.67,12.67,12.67,12.66,12.67,12.68,12.68,12.68,12.68,12.7,12.69,12.68,12.68,12.68,12.69,12.69,12.69,12.69,12.69,12.67,12.69,12.68,12.68,12.68,12.66,12.69,12.68,12.69,12.69,12.68,12.68,12.65,12.65,12.65,12.68,12.69,12.68,12.68,12.68,12.68,12.69,12.69,12.69,12.69,12.7,12.71,12.68,12.68,12.68,12.66,12.67,12.69,12.68,12.68,12.69,12.7,12.69,12.69,12.68,12.68,12.68,12.7,12.69,12.69,12.7,12.7,12.71,12.69,12.69,12.69,12.69,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.69,12.69,12.69,12.71,12.7,12.7,12.69,12.69,12.7,12.7,12.69,12.69,12.69,12.69,12.7,12.69,12.67,12.67,12.67,12.7,12.69,12.66,12.66,12.66,12.7,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.69,12.7,12.71,12.7,12.71,12.71,12.71,12.71,12.7,12.69,12.69,12.69,12.7,12.67,12.67,12.67,12.67,12.68,12.67,12.69,12.69,12.69,12.69,12.67,12.65,12.65,12.65,12.65,12.68,12.68,12.68,12.68,12.68,12.7,12.68,12.68,12.68,12.68,12.69,12.67,12.67,12.67,12.67,12.69,12.68,12.68,12.68,12.68,12.69,12.68,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.68,12.69,12.66,12.66,12.66,12.66,12.66,12.67,12.66,12.67,12.66,12.67,12.7,12.68,12.68,12.68,12.69,12.71,12.7,12.7,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.7,12.7,12.7,12.69,12.69,12.69,12.69,12.7,12.68,12.68,12.68,12.68,12.69,12.71,12.69,12.69,12.7,12.68,12.68,12.68,12.68,12.67,12.7,13.02,12.73,12.72,12.72,12.74,12.73,12.69,12.69,12.7,12.7,12.71,12.7,12.7,12.69,12.68,12.69,12.69,12.69,12.69,12.7,12.71,12.7,12.7,12.68,12.67,12.68,12.7,12.69,12.69,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.69,12.7,12.72,12.7,12.7,12.67,12.66,12.67,12.67,12.67,12.68,12.68,12.69,12.68,12.68,12.64,12.64,12.66,12.67,12.67,12.67,12.67,12.68,12.65,12.65,12.67,12.67,12.67,12.69,12.68,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.69,12.68,12.68,12.68,12.68,12.7,12.69,12.69,12.69,12.69,12.7,12.68,12.69,12.69,12.69,12.7,12.68,12.69,12.69,12.69,12.7,12.68,12.69,12.69,12.69,12.7,12.69,12.66,12.66,12.66,12.66,12.69,12.69,12.69,12.69,12.69,12.7,12.7,12.7,12.69,12.69,12.69,12.67,12.67,12.67,12.67,12.67,12.67,12.67,12.67,12.67,12.69,12.68,12.68,12.68,12.68,12.69,12.69,12.69,12.69,12.69,12.7,12.68,12.68,12.68,12.68,12.71,12.69,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.71,12.7,12.7,12.7,12.7,12.7,12.69,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.71,12.69,12.69,12.7,12.7,12.71,12.7,12.69,12.69,12.69,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.69,12.68,12.68,12.68,12.69,12.71,12.7,12.7,12.7,12.71,12.71,12.68,12.67,12.68,12.68,12.69,12.68,12.68,12.68,12.66,12.67,12.67,12.67,12.67,12.65,12.67,12.68,12.68,12.68,12.68,12.7,12.68,12.67,12.67,12.67,12.68,12.69,12.69,12.68,12.69,12.69,12.68,12.67,12.67,12.67,12.67,12.69,12.69,12.69,12.68,12.68,12.7,12.68,12.68,12.68,12.68,12.69,12.68,12.68,12.67,12.67,12.68,12.67,12.68,12.65,12.65,12.66,12.67,12.67,12.66,12.65,12.67,12.69,12.69,12.66,12.66,12.66,12.7,12.69,12.69,12.69,12.69,12.7,12.69,12.68,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.7,12.69,12.67,12.67,12.68,12.7,12.69,12.68,12.68,12.68,12.69,12.7,12.7,12.7,12.7,12.7,12.69,12.69,12.69,12.69,12.7,12.68,12.69,12.69,12.69,12.69,12.71,12.67,12.67,12.67,12.67,12.69,12.69,12.69,12.69,12.68,12.7,12.69,12.69,12.69,12.69,12.71,12.68,12.67,12.67,12.67,12.69,12.69,12.69,12.69,12.69,12.7,12.71,12.71,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.71,12.69,12.69,12.69,12.69,12.69,12.72,12.7,12.7,12.7,12.71,12.71,12.69,12.68,12.67,12.67,12.69,12.68,12.68,12.68,12.68,12.96,12.74,12.74,12.74,12.74,12.73,12.66,12.66,12.66,12.66,12.69,12.66,12.65,12.65,12.65,12.68,12.68,12.67,12.67,12.67,12.67,12.69,12.68,12.68,12.67,12.66,12.69,12.68,12.68,12.69,12.69,12.7,12.68,12.68,12.68,12.69,12.68,12.64,12.64,12.64,12.67,12.69,12.69,12.69,12.69,12.68,12.7,12.69,12.69,12.69,12.67,12.67,12.68,12.68,12.68,12.69,12.7,12.67,12.67,12.67,12.7,12.7,12.7,12.69,12.69,12.68,12.68,12.7,12.69,12.69,12.69,12.69,12.7,12.7,12.7,12.66,12.66,12.68,12.69,12.7,12.68,12.68,12.69,12.69,12.68,12.69,12.69,12.7,12.69,12.69,12.68,12.68,12.68,12.7,12.69,12.68,12.68,12.68,12.7,12.69,12.7,12.7,12.69,12.71,12.7,12.71,12.7,12.7,12.71,12.7,12.7,12.7,12.69,12.71,12.7,12.68,12.68,12.68,12.69,12.7,12.67,12.67,12.67,12.68,12.69,12.68,12.69,12.69,12.69,12.68,12.69,12.69,12.69,12.69,12.71,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.71,12.69,12.69,12.68,12.67,12.68,12.69,12.68,12.68,12.68,12.69,12.69,12.69,12.68,12.68,12.7,12.67,12.66,12.66,12.66,12.67,12.66,12.66,12.65,12.65,12.69,12.68,12.68,12.68,12.68,12.68,12.69,12.68,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.69,12.68,12.68,12.68,12.68,12.69,12.68,12.68,12.68,12.68,12.68,12.68,12.67,12.67,12.69,12.7,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.68,12.69,12.69,12.7,12.69,12.69,12.69,12.66,12.69,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.7,12.7,12.69,12.69,12.69,12.68,12.7,12.7,12.69,12.69,12.7,12.71,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.67,12.67,12.69,12.68,12.68,12.69,12.69,12.71,12.7,12.7,12.7,12.7,12.71,12.69,12.69,12.7,12.7,12.71,12.7,12.7,12.71,12.71,12.72,12.71,12.71,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.7,12.71,12.7,12.68,12.67,12.67,12.7,12.7,12.7,12.7,12.7,12.71,12.71,12.71,12.71,12.71,12.71,12.69,12.69,12.69,12.69,12.7,12.69,12.68,12.68,12.68,12.69,12.69,12.68,12.68,12.68,12.69,12.68,12.67,12.66,12.66,12.68,12.69,12.69,12.69,12.69,12.68,12.7,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.71,12.69,12.69,12.69,12.69,12.69,12.68,12.68,12.68,12.68,12.7,12.69,12.69,12.69,12.69,12.7,12.7,12.7,12.69,12.69,12.71,12.69,12.69,12.69,12.69,12.69,12.99,12.75,12.75,12.75,12.75,12.71,12.69,12.69,12.69,12.69,12.7,12.7,12.7,12.7,12.7,12.71,12.69,12.69,12.69,12.69,12.69,12.7,12.7,12.7,12.7,12.69,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.71,12.67,12.67,12.67,12.67,12.69,12.7,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.7,12.7,12.7,12.7,12.69,12.69,12.71,12.7,12.7,12.7,12.68,12.7,12.69,12.69,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.69,12.7,12.71,12.7,12.7,12.7,12.71,12.7,12.71,12.7,12.7,12.69,12.69,12.71,12.71,12.71,12.66,12.65,12.68,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.69,12.68,12.68,12.66,12.66,12.67,12.68,12.68,12.69,12.69,12.7,12.68,12.67,12.64,12.65,12.65,12.68,12.67,12.67,12.68,12.68,12.69,12.68,12.68,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.67,12.69,12.69,12.7,12.71,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.69,12.7,12.69,12.7,12.7,12.7,12.7,12.68,12.65,12.65,12.65,12.65,12.71,12.67,12.66,12.66,12.66,12.69,12.67,12.67,12.68,12.68,12.7,12.7,12.7,12.7,12.7,12.7,12.68,12.68,12.68,12.68,12.69,12.69,12.69,12.69,12.69,12.7,12.67,12.67,12.67,12.67,12.68,12.69,12.68,12.68,12.68,12.68,12.7,12.69,12.69,12.68,12.68,12.72,12.7,12.7,12.7,12.7,12.72,12.7,12.7,12.7,12.7,12.69,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.71,12.71,12.7,12.71,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.69,12.71,12.71,12.7,12.7,12.67,12.68,12.67,12.67,12.67,12.67,12.69,12.68,12.68,12.67,12.69,12.7,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.7,12.7,12.7,12.7,12.68,12.7,12.69,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.71,12.7,12.69,12.68,12.68,12.7,12.69,12.69,12.68,12.67,12.71,12.7,12.7,12.67,12.67,12.69,12.71,12.71,12.69,12.69,12.7,12.7,12.7,12.69,12.69,12.7,12.69,12.69,12.67,12.67,12.68,12.7,12.69,12.68,12.68,12.68,12.71,12.7,12.7,12.69,12.69,12.7,12.7,12.67,12.67,12.67,12.69,12.68,12.7,12.7,12.69,12.72,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.71,12.7,12.67,12.67,12.68,12.68,12.7,12.71,12.71,12.71,12.71,12.71,12.66,12.65,12.65,12.65,12.97,12.76,12.75,12.75,12.75,12.74,12.71,12.71,12.71,12.72,12.73,12.7,12.7,12.7,12.7,12.71,12.68,12.68,12.68,12.68,12.69,12.69,12.69,12.69,12.69,12.69,12.72,12.71,12.71,12.71,12.71,12.73,12.71,12.71,12.71,12.71,12.71,12.69,12.69,12.69,12.7,12.7,12.69,12.69,12.69,12.69,12.69,12.68,12.68,12.88,12.49,12.52,12.5,12.5,12.46,12.43,12.51,12.45,12.45,12.45,12.45,12.45,12.46,12.45,12.45,12.45,12.46,12.46,12.45,12.44,12.46,12.46,12.47,12.47,12.46,12.46,12.44,12.47,12.46,12.46,12.46,12.47,12.47,12.45,12.44,12.44,12.44,12.46,12.46,12.46,12.46,12.42,12.43,12.44,12.43,12.43,12.46,12.47,12.47,12.47,12.46,12.46,12.46,12.48,12.47,12.47,12.47,12.47,12.49,12.48,12.47,12.48,12.48,12.48,12.47,12.47,12.43,12.43,12.45,12.47,12.47,12.47,12.46,12.48,12.48,12.48,12.47,12.47,12.48,12.47,12.48,12.49,12.49,12.48,12.48,12.47,12.48,12.48,12.48,12.49,12.48,12.48,12.47,12.47,12.5,12.48,12.48,12.48,12.48,12.49,12.48,12.49,12.49,12.49,12.49,12.47,12.47,12.47,12.47,12.48,12.49,12.49,12.49,12.49,12.5,12.49,12.49,12.49,12.49,12.5,12.5,12.5,12.5,12.5,12.51,12.47,12.47,12.47,12.47,12.47,12.49,12.48,12.47,12.47,12.48,12.5,12.5,12.49,12.5,12.49,12.49,12.49,12.48,12.48,12.48,12.49,12.49,12.49,12.49,12.48,12.5,12.49,12.49,12.48,12.48,12.49,12.49,12.49,12.49,12.49,12.5,12.45,12.45,12.45,12.45,12.46,12.48,12.47,12.47,12.47,12.49,12.5,12.49,12.49,12.49,12.49,12.5,12.5,12.48,12.49,12.49,12.51,12.5,12.5,12.49,12.49,12.51,12.49,12.49,12.49,12.49,12.51,12.49,12.49,12.49,12.49,12.5,12.5,12.5,12.5,12.5,12.52,12.51,12.51,12.51,12.51,12.5,12.49,12.47,12.47,12.47,12.48,12.5,12.5,12.5,12.5,12.5,12.5,12.48,12.48,12.47,12.46,12.49,12.5,12.51,12.51,12.5,12.51,12.5,12.5,12.51,12.5,12.52,12.5,12.5,12.5,12.5,12.51,12.51,12.51,12.51,12.5,12.51,12.51,12.51,12.51,12.5,12.5,12.53,12.51,12.51,12.5,12.48,12.51,12.49,12.49,12.49,12.49,12.52,12.51,12.51,12.51,12.5,12.51,12.51,12.51,12.51,12.51,12.52,12.52,12.52,12.51,12.51,12.52,12.52,12.52,12.51,12.51,12.52,12.51,12.51,12.5,12.5,12.5,12.51,12.5,12.51,12.51,12.51,12.51,12.51,12.52,12.52,12.52,12.54,12.51,12.49,12.49,12.49,12.5,12.5,12.51,12.51,12.51,12.52,12.51,12.5,12.5,12.5,12.51,12.5,12.51,12.5,12.51,12.57,12.82,12.54,12.54,12.54,12.54,12.53,12.52,12.52,12.52,12.51,12.51,12.5,12.5,12.49,12.49,12.51,12.51,12.51,12.51,12.51,12.52,12.51,12.51,12.51,12.51,12.52,12.49,12.49,12.49,12.49,12.51,12.52,12.52,12.52,12.52,12.52,12.49,12.49,12.49,12.49,12.49,12.52,12.52,12.52,12.52,12.52,12.53,12.52,12.52,12.52,12.52,12.53,12.52,12.52,12.52,12.52,12.54,12.52,12.52,12.52,12.52,12.53,12.52,12.52,12.52,12.52,12.53,12.52,12.52,12.52,12.52,12.51,12.54,12.53,12.53,12.53,12.52,12.52,12.51,12.51,12.51,12.53,12.53,12.52,12.52,12.52,12.52,12.54,12.52,12.52,12.52,12.52,12.54,12.53,12.53,12.52,12.53,12.54,12.52,12.52,12.52,12.5,12.51,12.5,12.5,12.5,12.53,12.54,12.51,12.51,12.51,12.5,12.5,12.54,12.53,12.53,12.53,12.53,12.54,12.53,12.53,12.5,12.5,12.53,12.53,12.53,12.53,12.53,12.54,12.51,12.5,12.53,12.53,12.55,12.53,12.52,12.52,12.52,12.53,12.52,12.52,12.71,12.71,12.72,12.71,12.71,12.7,12.7,12.71,12.72,12.72,12.71,12.71,12.71,12.73,12.69,12.71,12.71,12.7,12.73,12.72,12.72,12.71,12.72,12.72,12.71,12.72,12.72,12.72,12.73,12.73,12.71,12.71,12.71,12.72,12.72,12.7,12.72,12.72,12.74,12.72,12.71,12.71,12.71,12.73,12.71,12.72,12.72,12.72,12.73,12.72,12.71,12.71,12.71,12.71,12.74,12.72,12.72,12.72,12.72,12.74,12.69,12.69,12.69,12.69,12.72,12.71,12.71,12.71,12.71,12.73,12.7,12.7,12.7,12.7,12.74,12.73,12.73,12.73,12.73,12.73,12.71,12.71,12.71,12.71,12.72,12.7,12.7,12.7,12.7,12.7,12.73,12.72,12.72,12.72,12.72,12.73,12.73,12.73,12.73,12.73,12.73,12.73,12.85,12.8,12.81,12.8,12.8,12.79,12.75,12.75,12.76,12.75,12.75,12.75,12.75,12.75,12.73,12.73,12.73,12.73,12.75,12.74,12.74,12.74,12.74,12.73,12.76,12.75,12.75,12.75,12.73,12.73,12.72,12.72,12.73,12.7,12.73,12.71,12.72,12.72,12.75,12.76,12.75,12.75,12.75,12.74,12.75,12.74,12.74,12.73,12.73,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.72,12.72,12.72,12.72,12.72,12.71,12.73,12.74,12.74,12.74,12.73,12.73,12.69,12.69,12.72,12.71,12.71,12.72,12.72,12.74,12.74,12.74,12.74,12.74,12.75,12.74,12.74,12.73,12.73,12.74,12.72,12.72,12.72,12.72,12.74,12.74,12.74,12.74,12.74,12.75,12.74,12.74,12.71,12.71,12.74,12.71,12.71,12.74,12.74,12.74,12.73,12.72,12.73,12.73,12.74,12.75,12.74,12.72,12.71,12.71,12.75,12.73,12.71,12.71,12.71,13.01,12.81,12.78,12.78,12.78,12.77,12.73,12.75,12.76,12.75,12.76,12.75,12.75,12.75,12.75,12.75,12.75,12.75,12.75,12.75,12.76,12.74,12.75,12.75,12.75,12.75,12.76,12.75,12.75,12.75,12.75,12.76,12.72,12.72,12.72,12.72,12.75,12.75,12.75,12.75,12.75,12.77,12.73,12.72,12.72,12.72,12.73,12.72,12.72,12.73,12.72,12.74,12.75,12.74,12.74,12.74,12.75,12.75,12.75,12.75,12.75,12.76,12.75,12.75,12.75,12.75,12.75,12.74,12.72,12.72,12.72,12.72,12.75,12.75,12.75,12.75,12.75,12.75,12.73,12.66,12.66,12.66,12.67,12.66,12.66,12.66,12.66,12.69,12.67,12.67,12.67,12.68,12.69,12.69,12.69,12.69,12.69,12.68,12.67,12.67,12.67,12.67,12.68,12.68,12.68,12.67,12.67,12.69,12.69,12.69,12.68,12.68,12.68,12.68,12.67,12.67,12.67,12.69,12.69,12.68,12.68,12.68,12.68,12.7,12.68,12.68,12.68,12.68,12.69,12.69,12.68,12.68,12.68,12.69,12.69,12.69,12.69,12.68,12.69,12.69,12.69,12.68,12.66,12.65,12.69,12.67,12.67,12.69,12.69,12.7,12.69,12.69,12.69,12.68,12.7,12.69,12.69,12.68,12.68,12.69,12.67,12.67,12.66,12.66,12.68,12.68,12.68,12.68,12.68,12.7,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.67,12.67,12.67,12.69,12.69,12.68,12.68,12.68,12.7,12.69,12.7,12.7,12.7,12.71,12.69,12.69,12.69,12.69,12.69,12.68,12.68,12.69,12.69,12.7,12.69,12.7,12.7,12.7,12.71,12.69,12.68,12.68,12.68,12.69,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.7,12.7,12.69,12.69,12.69,12.69,12.71,12.7,12.69,12.69,12.69,12.7,12.7,12.7,12.7,12.7,12.7,12.69,12.69,12.69,12.69,12.71,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.69,12.68,12.68,12.68,12.68,12.7,12.65,12.65,12.64,12.64,12.64,12.69,12.68,12.68,12.68,12.68,12.7,12.69,12.69,12.69,12.69,12.7,12.68,12.68,12.68,12.68,12.7,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.68,12.69,12.68,12.67,12.67,12.69,12.7,12.69,12.69,12.69,12.69,12.68,12.68,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.69,12.68,12.67,12.67,12.67,12.69,12.7,12.69,12.69,12.69,12.66,12.69,12.7,12.7,12.7,12.69,12.7,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.65,12.67,12.69,12.69,12.68,12.68,12.68,12.7,12.69,12.69,12.68,12.68,12.7,12.69,12.69,12.68,12.68,12.7,12.69,12.69,12.7,12.7,12.71,12.7,12.7,12.7,12.69,13,12.74,12.74,12.74,12.74,12.74,12.7,12.7,12.71,12.71,12.72,12.7,12.69,12.71,12.71,12.72,12.7,12.7,12.69,12.69,12.69,12.73,12.71,12.71,12.71,12.71,12.72,12.71,12.71,12.71,12.71,12.72,12.71,12.7,12.7,12.7,12.71,12.68,12.68,12.68,12.68,12.69,12.69,12.7,12.7,12.7,12.7,12.69,12.69,12.68,12.68,12.7,12.68,12.69,12.69,12.7,12.69,12.71,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.69,12.69,12.69,12.69,12.7,12.7,12.7,12.7,12.7,12.71,12.69,12.69,12.68,12.68,12.7,12.7,12.7,12.69,12.69,12.71,12.7,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.7,12.69,12.69,12.69,12.69,12.72,12.7,12.7,12.7,12.7,12.7,12.68,12.68,12.68,12.71,12.71,12.7,12.7,12.7,12.7,12.69,12.65,12.65,12.65,12.65,12.67,12.7,12.7,12.7,12.69,12.68,12.7,12.69,12.69,12.69,12.69,12.72,12.71,12.71,12.71,12.71,12.72,12.71,12.71,12.71,12.71,12.72,12.71,12.71,12.71,12.71,12.72,12.71,12.71,12.71,12.71,12.72,12.71,12.71,12.71,12.7,12.71,12.69,12.69,12.69,12.7,12.7,12.71,12.71,12.71,12.71,12.72,12.72,12.71,12.71,12.69,12.69,12.72,12.71,12.71,12.68,12.68,12.7,12.68,12.68,12.67,12.67,12.69,12.7,12.69,12.69,12.69,12.7,12.7,12.7,12.67,12.67,12.68,12.66,12.66,12.68,12.68,12.68,12.71,12.7,12.7,12.68,12.68,12.69,12.68,12.7,12.7,12.7,12.7,12.69,12.68,12.68,12.68,12.69,12.69,12.69,12.69,12.69,12.71,12.71,12.68,12.67,12.67,12.69,12.7,12.68,12.67,12.67,12.69,12.7,12.68,12.68,12.68,12.69,12.7,12.69,12.69,12.7,12.7,12.72,12.67,12.66,12.66,12.66,12.69,12.7,12.7,12.7,12.71,12.71,12.68,12.68,12.68,12.68,12.69,12.67,12.67,12.67,12.67,12.72,12.69,12.68,12.68,12.68,12.7,12.71,12.71,12.71,12.71,12.7,12.69,12.68,12.68,12.68,12.68,12.69,12.68,12.68,12.68,12.67,12.71,12.7,12.69,12.69,12.7,12.72,12.7,12.7,12.7,12.7,12.72,12.71,12.71,12.71,12.71,12.72,12.69,12.69,12.69,12.69,12.71,12.71,12.71,12.71,12.71,12.72,12.71,12.71,12.71,12.71,12.69,12.73,12.71,12.71,12.71,12.71,12.72,12.71,12.71,12.72,12.72,12.72,12.71,12.71,12.71,12.68,12.71,12.69,12.69,12.69,12.68,12.69,12.69,12.69,12.69,12.7,12.71,12.69,12.69,12.69,12.69,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.7,12.68,12.7,12.7,12.69,12.67,12.67,12.68,12.68,12.95,12.73,12.73,12.74,12.74,12.72,12.69,12.69,12.67,12.66,12.69,12.7,12.7,12.69,12.68,12.7,12.7,12.7,12.7,12.7,12.71,12.7,12.7,12.69,12.69,12.7,12.7,12.7,12.69,12.7,12.7,12.72,12.7,12.68,12.67,12.67,12.69,12.67,12.74,12.69,12.69,12.71,12.71,12.68,12.68,12.67,12.7,12.7,12.68,12.68,12.68,12.7,12.7,12.71,12.71,12.71,12.72,12.7,12.81,12.78,12.77,12.78,12.78,12.78,12.71,12.72,12.73,12.71,12.72,12.72,12.72,12.72,12.72,12.7,12.7,12.7,12.7,12.72,12.71,12.71,12.71,12.71,12.72,12.7,12.7,12.7,12.7,12.72,12.71,12.71,12.71,12.71,12.72,12.71,12.71,12.7,12.71,12.71,12.73,12.72,12.72,12.72,12.72,12.72,12.72,12.71,12.71,12.71,12.73,12.73,12.73,12.73,12.72,12.73,12.73,12.72,12.72,12.72,12.73,12.72,12.7,12.7,12.7,12.71,12.7,12.69,12.69,12.69,12.71,12.7,12.7,12.7,12.7,12.71,12.69,12.68,12.68,12.68,12.69,12.7,12.7,12.7,12.7,12.71,12.72,12.71,12.71,12.71,12.68,12.71,12.7,12.7,12.7,12.7,12.72,12.71,12.71,12.71,12.69,12.7,12.71,12.71,12.7,12.7,12.71,12.7,12.7,12.69,12.7,12.71,12.69,12.69,12.71,12.69,12.69,12.73,12.71,12.71,12.71,12.71,12.72,12.71,12.71,12.71,12.71,12.72,12.72,12.71,12.72,12.72,12.72,12.7,12.7,12.69,12.69,12.7,12.69,12.69,12.71,12.71,12.72,12.71,12.71,12.71,12.71,12.73,12.71,12.71,12.71,12.71,12.71,12.72,12.71,12.72,12.72,12.72,12.73,12.72,12.72,12.72,12.72,12.72,12.71,12.71,12.71,12.71,12.72,12.71,12.7,12.7,12.7,12.72,12.72,12.71,12.71,12.71,12.72,12.7,12.7,12.7,12.7,12.71,12.7,12.71,12.71,12.71,12.72,12.72,12.72,12.72,12.72,12.72,12.72,12.7,12.7,12.7,12.7,12.73,12.7,12.69,12.69,12.69,12.72,12.72,12.72,12.73,12.73,12.73,12.73,12.71,12.68,12.68,12.7,12.71,12.71,12.71,12.71,12.72,12.7,12.7,12.7,12.7,12.71,12.71,12.71,12.7,12.7,12.71,12.7,12.7,12.7,12.7,12.71,12.72,12.7,12.71,12.7,12.7,12.72,12.72,12.72,12.72,12.71,12.72,12.71,12.71,12.71,12.71,12.72,12.72,12.72,12.72,12.72,12.72,12.68,12.68,12.68,12.68,12.69,12.71,12.71,12.71,12.72,12.72,12.71,12.71,12.71,12.71,12.72,12.72,12.72,12.72,12.72,12.7,12.72,12.71,12.71,12.71,12.71,12.72,12.72,12.72,12.72,12.71,12.72,12.71,12.71,12.72,12.71,12.72,12.7,12.7,12.71,12.72,12.73,12.72,12.72,12.72,12.73,12.73,12.72,12.72,12.72,12.72,12.72,13.07,12.73,12.73,12.77,12.77,12.74,12.73,12.73,12.73,12.73,12.72,12.7,12.7,12.72,12.72,12.73,12.72,12.72,12.71,12.71,12.72,12.72,12.72,12.73,12.72,12.73,12.73,12.73,12.72,12.72,12.74,12.73,12.73,12.7,12.7,12.7,12.72,12.71,12.72,12.72,12.72,12.74,12.73,12.72,12.72,12.72,12.74,12.73,12.72,12.72,12.72,12.74,12.72,12.73,12.73,12.71,12.71,12.7,12.71,12.71,12.71,12.72,12.7,12.71,12.71,12.71,12.71,12.68,12.7,12.7,12.7,12.71,12.69,12.7,12.7,12.7,12.7,12.72,12.72,12.72,12.72,12.73,12.85,12.76,12.72,12.72,12.72,12.74,12.71,12.7,12.71,12.71,12.72,12.71,12.71,12.71,12.7,12.72,12.72,12.72,12.71,12.71,12.73,12.71,12.71,12.71,12.71,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.73,12.73,12.73,12.73,12.73,12.72,12.72,12.72,12.72,12.73,12.72,12.72,12.72,12.71,12.74,12.72,12.73,12.73,12.72,12.74,12.73,12.73,12.73,12.73,12.73,12.72,12.73,12.72,12.72,12.74,12.72,12.73,12.73,12.73,12.73,12.72,12.72,12.72,12.73,12.72,12.73,12.73,12.73,12.73,12.73,12.74,12.73,12.73,12.73,12.71,12.74,12.73,12.73,12.73,12.73,12.73,12.71,12.71,12.71,12.72,12.74,12.73,12.73,12.73,12.72,12.73,12.72,12.72,12.72,12.73,12.74,12.73,12.73,12.74,12.74,12.75,12.74,12.74,12.74,12.72,12.72,12.71,12.7,12.73,12.74,12.74,12.72,12.71,12.7,12.72,12.72,12.71,12.7,12.7,12.72,12.72,12.73,12.72,12.72,12.69,12.69,12.71,12.7,12.7,12.72,12.72,12.72,12.71,12.71,12.71,12.71,12.73,12.72,12.72,12.69,12.69,12.7,12.71,12.72,12.7,12.69,12.71,12.72,12.72,12.72,12.72,12.72,12.74,12.72,12.72,12.72,12.72,12.74,12.73,12.72,12.72,12.72,12.73,12.72,12.72,12.72,12.72,12.73,12.73,12.72,12.72,12.72,12.73,12.72,12.72,12.72,12.72,12.73,12.72,12.72,12.72,12.72,12.73,12.72,12.72,12.72,12.72,12.73,12.72,12.73,12.73,12.73,12.73,12.73,12.72,12.85,12.8,12.8,12.8,12.79,12.78,12.74,12.74,12.74,12.73,12.73,12.73,12.73,12.75,12.73,12.73,12.73,12.73,12.74,12.74,12.74,12.74,12.73,12.73,12.72,12.73,12.73,12.73,12.74,12.71,12.71,12.71,12.71,12.74,12.71,12.71,12.71,12.71,12.71,12.75,12.74,12.74,12.74,12.74,12.74,12.73,12.73,12.74,12.74,12.75,12.74,12.74,12.74,12.74,12.75,12.74,12.73,12.73,12.73,12.73,12.73,12.72,12.72,12.74,12.74,12.74,12.74,12.74,12.74,12.75,12.72,12.72,12.72,12.72,12.72,12.72,12.72,12.72,12.71,12.72,12.95,12.79,12.78,12.78,12.78,12.74,12.72,12.72,12.72,12.67,12.71,12.72,12.72,12.73,12.72,12.73,12.72,12.72,12.72,12.73,12.72,12.69,12.69,12.69,12.7,12.72,12.72,12.72,12.72,12.73,12.74,12.73,12.73,12.73,12.73,12.72,12.74,12.72,12.72,12.71,12.71,12.73,12.72,12.73,12.7,12.69,12.73,12.73,12.73,12.71,12.71,12.73,12.72,12.72,12.69,12.69,12.71,12.71,12.71,12.73,12.73,12.74,12.73,12.73,12.73,12.73,12.74,12.71,12.71,12.71,12.71,12.71,12.7,12.72,12.73,12.73,12.73,12.75,12.73,12.71,12.71,12.72,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.72,12.71,12.71,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.74,12.74,12.74,12.75,12.73,12.74,12.74,12.74,12.75,12.74,12.74,12.74,12.74,12.74,12.75,12.72,12.71,12.71,12.71,12.74,12.74,12.75,12.74,12.74,12.75,12.73,12.73,12.73,12.73,12.74,12.75,12.75,12.75,12.74,12.75,12.74,12.73,12.71,12.71,12.72,12.72,12.72,12.73,12.73,12.74,12.68,12.68,12.68,12.68,12.68,12.73,12.72,12.72,12.72,12.72,12.72,12.71,12.71,12.71,12.73,12.73,12.72,12.72,12.72,12.72,12.73,12.72,12.72,12.72,12.72,12.74,12.72,12.72,12.72,12.72,12.72,12.73,12.73,12.73,12.72,12.71,12.72,12.72,12.72,12.72,12.73,12.73,12.72,12.73,12.73,12.71,12.73,12.72,12.72,12.72,12.73,12.74,12.73,12.73,12.73,12.72,12.73,12.71,12.71,12.71,12.69,12.72,12.73,12.73,12.73,12.74,12.74,12.72,12.72,12.72,12.74,12.74,12.74,12.74,12.73,12.73,12.74,12.73,12.73,12.73,12.73,12.73,12.75,12.73,12.74,12.73,12.73,12.75,12.74,12.73,12.74,12.74,12.74,12.73,12.73,12.74,12.74,12.74,12.73,12.73,12.73,12.73,12.74,12.74,12.73,12.74,12.74,12.76,12.74,12.74,12.74,12.73,12.73,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.72,12.72,12.72,12.75,12.74,12.73,12.73,12.73,12.73,12.71,12.75,12.75,12.75,12.73,12.74,12.73,12.73,12.73,12.74,12.73,12.74,12.74,12.72,12.73,12.73,12.72,12.72,12.72,12.73,12.7,12.72,12.72,12.72,12.72,12.74,12.71,12.71,12.7,12.7,12.72,12.71,12.71,12.71,12.71,12.74,12.73,12.72,12.72,12.72,12.73,12.71,12.71,12.71,12.71,12.73,12.72,12.72,12.72,12.72,12.73,12.73,12.73,12.73,12.73,12.74,12.7,12.7,12.7,12.69,12.71,12.72,12.72,12.72,12.72,12.73,12.74,12.73,12.73,12.73,12.73,12.72,12.7,12.7,12.7,12.7,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.73,12.73,12.73,13.09,12.79,12.79,12.79,12.79,12.77,12.74,12.74,12.74,12.71,12.7,12.72,12.72,12.72,12.72,12.75,12.73,12.73,12.73,12.73,12.73,12.74,12.73,12.73,12.74,12.74,12.75,12.74,12.74,12.74,12.74,12.74,12.73,12.72,12.72,12.74,12.75,12.74,12.74,12.73,12.74,12.75,12.71,12.71,12.71,12.73,12.74,12.74,12.74,12.74,12.74,12.74,12.74,12.73,12.73,12.74,12.74,12.75,12.74,12.74,12.74,12.74,12.75,12.74,12.74,12.72,12.72,12.74,12.74,12.74,12.74,12.74,12.75,12.72,12.72,12.74,12.72,12.73,12.73,12.73,12.73,12.73,12.75,12.72,12.72,12.72,12.72,12.72,12.73,12.72,12.72,12.72,12.71,12.73,12.72,12.72,12.72,12.72,12.74,12.73,12.72,12.72,12.72,12.73,12.73,12.71,12.71,12.71,12.73,12.71,12.73,12.73,12.73,12.74,12.73,12.72,12.72,12.72,12.74,12.73,12.73,12.73,12.73,12.74,12.72,12.7,12.7,12.7,12.7,12.71,12.71,12.71,12.71,12.71,12.74,12.7,12.7,12.7,12.7,12.71,12.73,12.73,12.73,12.73,12.74,12.71,12.71,12.71,12.71,12.74,12.73,12.73,12.73,12.73,12.74,12.69,12.69,12.69,12.69,12.73,12.74,12.74,12.74,12.74,12.75,12.74,12.74,12.74,12.74,12.73,12.74,12.73,12.73,12.73,12.73,12.75,12.74,12.74,12.74,12.74,12.74,12.73,12.73,12.73,12.73,12.75,12.74,12.74,12.74,12.74,12.75,12.73,12.73,12.73,12.73,12.73,12.74,12.74,12.74,12.74,12.75,12.74,12.74,12.74,12.74,12.74,12.75,12.74,12.74,12.74,12.75,12.73,12.73,12.73,12.73,12.73,12.75,12.74,12.74,12.74,12.74,12.75,12.74,12.74,12.74,12.71,12.71,12.7,12.7,12.7,12.71,12.73,12.72,12.72,12.72,12.72,12.73,12.73,12.73,12.73,12.72,12.74,12.73,12.73,12.73,12.72,12.72,12.74,12.73,12.73,12.73,12.73,12.74,12.73,12.73,12.72,12.72,12.74,12.73,12.98,12.77,12.76,12.79,12.79,12.75,12.71,12.71,12.73,12.73,12.73,12.72,12.72,12.73,12.72,12.72,12.73,12.73,12.74,12.73,12.74,12.73,12.73,12.74,12.73,12.73,12.73,12.72,12.73,12.74,12.74,12.72,12.72,12.72,12.76,12.74,12.74,12.74,12.74,12.75,12.74,12.71,12.71,12.71,12.74,12.73,12.73,12.73,12.73,12.74,12.74,12.72,12.72,12.72,12.74,12.73,12.72,12.72,12.72,12.73,12.73,12.71,12.72,12.72,12.73,12.74,12.71,12.71,12.71,12.71,12.76,12.74,12.74,12.74,12.74,12.76,12.74,12.74,12.74,12.74,12.74,12.74,12.74,12.74,12.74,12.75,12.75,12.75,12.75,12.75,12.75,12.74,12.74,12.74,12.74,12.76,12.74,12.74,12.74,12.74,12.75,12.75,12.75,12.75,12.75,12.75,12.98,12.8,12.8,12.8,12.81,12.77,12.75,12.75,12.75,12.75,12.74,12.74,12.72,12.72,12.72,12.74,12.73,12.73,12.73,12.73,12.78,12.73,12.73,12.73,12.73,12.74,12.73,12.73,13.15,12.8,12.78,12.8,12.8,12.79,12.72,12.74,12.74,12.74,12.74,12.73,12.71,12.75,12.73,12.73,12.73,12.74,12.73,12.72,12.72,12.72,12.73,12.74,12.73,12.73,12.73,12.74,12.76,12.74,12.74,12.74,12.74,12.74,12.72,12.72,12.73,12.73,12.75,12.75,12.75,12.75,12.72,12.73,12.74,12.74,12.74,12.72,12.73,12.73,12.73,12.73,12.72,12.72,12.74,12.73,12.73,12.73,12.73,12.75,12.73,12.74,12.75,12.75,12.75,12.74,12.73,12.73,12.73,12.75,12.73,12.73,12.72,12.72,12.73,12.71,12.71,12.72,12.72,12.73,12.74,12.74,12.71,12.72,12.73,12.75,12.75,12.72,12.72,12.72,12.73,12.73,12.75,12.75,12.75,12.76,12.75,12.73,12.73,12.73,12.75,12.74,12.74,12.74,12.75,12.76,12.75,12.75,12.75,12.75,12.76,12.75,12.73,12.73,12.73,12.74,12.75,12.72,12.72,12.72,12.74,12.76,12.75,12.75,12.75,12.75,12.74,12.75,12.75,12.75,12.75,12.76,12.76,12.76,12.75,12.73,12.74,12.73,12.73,12.73,12.73,12.74,12.71,12.7,12.7,12.7,12.74,12.73,12.73,12.73,12.73,12.74,12.71,12.71,12.71,12.71,12.75,12.73,12.73,12.73,12.73,12.74,12.74,12.74,12.73,12.73,12.74,12.74,12.74,12.74,12.74,12.74,12.75,12.74,12.74,12.74,12.74,12.75,12.74,12.74,12.73,12.72,12.76,12.74,12.74,12.74,12.74,12.75,12.73,12.73,12.73,12.73,12.74,12.73,12.72,12.72,12.72,12.74,12.74,12.74,12.74,12.74,12.75,12.71,12.71,12.71,12.71,12.72,12.74,12.74,12.74,12.75,12.73,12.74,12.74,12.74,12.74,12.71,12.75,12.74,12.74,12.74,12.73,12.75,12.73,12.73,12.73,12.74,12.75,12.74,12.74,12.74,12.72,12.74,12.74,12.74,12.74,12.75,12.76,12.74,12.74,12.74,12.73,12.74,12.74,12.74,12.73,12.75,12.76,12.75,12.75,12.75,12.73,12.74,12.75,12.75,12.75,12.74,12.75,12.77,12.75,12.75,12.74,12.74,12.76,12.75,12.75,12.73,12.73,12.75,12.75,12.74,12.73,12.73,12.74,12.74,12.74,12.73,12.72,12.75,12.75,12.75,12.74,12.73,12.73,12.75,12.74,12.73,12.73,12.73,12.74,12.73,12.73,12.73,12.73,12.74,12.72,12.73,12.73,12.73,12.74,12.73,12.71,12.7,12.71,12.72,12.73,12.73,12.73,12.72,12.74,12.74,12.73,12.73,12.73,12.74,12.74,12.75,12.74,12.74,12.76,12.74,12.72,12.72,12.72,12.72,12.72,12.74,12.74,12.74,12.74,12.75,12.71,12.71,12.71,12.71,13.06,12.78,12.78,12.78,12.78,12.76,12.74,12.74,12.75,12.75,12.75,12.73,12.73,12.73,12.73,12.74,12.74,12.74,12.74,12.74,12.75,12.73,12.73,12.73,12.73,12.74,12.74,12.74,12.74,12.74,12.75,12.76,12.75,12.75,12.74,12.74,12.75,12.74,12.74,12.74,12.74,12.75,12.75,12.75,12.75,12.75,12.75,12.74,12.74,12.74,12.74,12.75,12.74,12.74,12.74,12.74,12.76,12.75,12.75,12.75,12.75,12.76,12.75,12.75,12.75,12.75,12.77,12.75,12.74,12.74,12.74,12.73,12.76,12.75,13.08,13.43,13.26,13.28,13.29,13.28,13.28,13.23,13.22,13.21,13.21,13.21,13.22,13.23,13.22,13.23,13.23,13.23,13.24,13.22,13.22,13.22,13.22,13.23,13.21,13.21,13.2,13.2,13.21,13.2,13.2,13.2,13.21,13.22,13.2,13.2,13.2,13.2,13.2,13.21,13.2,13.2,13.2,13.2,13.22,13.21,13.21,13.21,13.21,13.21,13.2,13.2,13.2,13.2,13.22,13.2,13.2,13.21,13.21,13.22,13.21,13.21,13.21,13.21,13.22,13.21,13.21,13.21,13.21,13.21,13.2,13.2,13.2,13.2,13.21,13.2,13.21,13.21,13.21,13.21,13.23,13.22,13.21,13.22,13.21,13.22,13.21,13.22,13.22,13.22,13.23,13.21,13.22,13.22,13.22,13.23,13.21,13.19,13.19,13.19,13.2,13.21,13.22,13.22,13.22,13.22,13.22,13.22,13.22,13.22,13.23,13.21,13.22,13.22,13.22,13.22,13.21,13.2,13.2,13.2,13.2,13.23,13.23,13.22,13.22,13.23,13.24,13.2,13.2,13.2,13.14,12.87,12.85,12.85,12.85,12.85,12.86,12.84,12.84,12.84,12.84,12.85,12.84,12.84,12.84,12.84,12.85,12.85,12.85,12.85,12.85,12.87,12.85,12.85,12.85,12.85,12.85,12.86,12.85,12.85,12.85,12.85,12.85,12.84,12.84,12.85,12.82,12.86,12.85,12.86,12.86,12.86,12.87,12.85,12.85,12.85,12.85,12.85,12.82,12.82,12.83,12.83,12.83,12.82,12.82,12.82,12.82,12.84,12.83,12.83,12.82,12.82,12.84,12.83,12.83,12.83,12.82,12.83,12.84,12.83,12.83,12.83,12.83,12.84,12.83,12.83,12.83,12.83,12.84,12.83,12.83,12.83,12.83,12.85,12.84,12.84,12.84,12.81,12.82,12.82,12.82,12.81,12.82,12.83,12.83,12.82,12.84,12.84,12.84,12.83,12.83,12.83,12.83,12.84,12.83,12.84,12.84,12.83,12.96,13.11,13.11,13.11,13.1,13.1,13.11,13.11,13.11,13.06,13.06,13.1,13.1,13.1,13.12,13.12,13.13,13.11,13.12,13.12,13.12,13.13,13.11,13.11,13.11,13.11,13.12,13.11,13.11,13.11,13.11,13.12,13.11,13.11,13.11,13.11,13.12,13.12,13.11,13.11,13.11,13.11,13.13,13.12,13.1,13.1,13.1,13.11,13.11,13.11,13.11,13.11,13.44,13.16,13.17,13.17,13.17,13.14,13.1,13.08,13.08,13.08,13.11,13.12,13.11,13.11,13.11,13.12,13.11,13.11,13.11,13.11,13.1,13.12,13.11,13.11,13.11,13.11,13.13,13.13,13.13,13.12,13.12,13.14,13.12,13.12,13.12,13.12,13.13,13.12,13.12,13.12,13.13,13.14,13.13,13.12,13.1,13.1,13.11,13.07,13.07,13.07,13.07,13.09,13.09,13.09,13.09,13.09,13.12,13.11,13.1,13.11,13.11,13.11,13.08,13.07,13.07,13.07,13.07,13.11,13.11,13.11,13.11,13.1,13.11,13.11,13.11,13.11,13.11,13.12,13.12,13.12,13.11,13.11,13.11,13.11,13.1,13.1,13.11,13.12,13.11,13.11,13.11,13.12,13.12,13.11,13.11,13.11,13.11,13.13,13.11,13.11,13.11,13.1,13.11,13.13,13.12,13.12,13.12,13.11,13.12,13.11,13.11,13.11,13.11,13.13,13.12,13.12,13.12,13.1,13.12,13.12,13.12,13.12,13.11,13.12,13.12,13.12,13.12,13.12,13.12,13.1,13.11,13.11,13.09,13.11,13.09,13.09,13.09,13.12,13.13,13.09,13.09,13.1,13.09,13.11,13.12,13.12,13.11,13.12,13.12,13.14,13.13,13.13,13.1,13.09,13.13,13.12,13.13,13.11,13.11,13.12,13.12,13.12,13.12,13.13,13.12,13.11,13.11,13.12,13.12,13.13,13.1,13.1,13.12,13.12,13.13,13.11,13.12,13.11,13.11,13.12,13.12,13.13,13.13,13.12,13.13,13.12,13.12,13.12,13.12,13.12,13.13,13.12,13.1,13.1,13.1,13.12,13.11,13.09,13.09,13.09,13.1,13.09,13.1,13.09,13.09,13.12,13.11,13.12,13.12,13.12,13.13,13.11,13.11,13.1,13.11,13.12,13.11,13.08,13.08,13.08,13.09,13.1,13.11,13.11,13.11,13.11,13.12,13.11,13.1,13.11,13.11,13.1,13.09,13.09,13.09,13.09,13.12,13.12,13.12,13.12,13.12,13.12,13.11,13.11,13.11,13.11,13.13,13.1,13.11,13.11,13.11,13.11,13.12,13.12,13.12,13.12,13.13,13.11,13.11,13.11,13.11,13.12,13.12,13.12,13.12,13.12,13.12,13.14,13.12,13.12,13.12,13.12,13.13,13.11,13.11,13.11,13.11,13.13,13.12,13.12,13.12,13.13,13.13,13.12,13.12,13.12,13.12,13.13,13.12,13.12,13.12,13.12,13.12,13.12,13.12,13.12,13.13,13.12,13.12,13.12,13.12,13.12,13.12,13.13,13.12,13.12,13.12,13.1,13.11,13.1,13.1,13.1,13.12,13.14,13.12,13.12,13.12,13.13,13.13,13.12,13.12,13.11,13.11,13.12,13.12,13.11,13.12,13.12,13.14,13.13,13.13,13.13,13.12,13.13,13.11,13.11,13.1,13.1,13.11,13.13,13.13,13.13,13.1,13.1,13.12,13.12,13.12,13.11,13.11,13.12,13.11,13.11,13.11,13.11,13.13,13.11,13.11,13.11,13.11,13.11,13.11,13.11,13.11,13.11,13.46,13.17,13.17,13.17,13.17,13.16,13.11,13.11,13.09,13.09,13.11,13.11,13.11,13.09,13.09,13.1,13.12,13.11,13.12,13.12,13.12,13.11,13.12,13.11,13.11,13.11,13.13,13.12,13.12,13.12,13.12,13.13,13.11,13.12,13.12,13.13,13.11,13.08,13.11,13.11,13.1,13.1,13.08,13.12,13.12,13.12,13.13,13.12,13.12,13.12,13.12,13.13,13.12,13.09,13.09,13.09,13.11,13.12,13.12,13.12,13.12,13.12,13.13,13.13,13.13,13.12,13.12,13.13,13.09,13.09,13.09,13.09,13.11,13.12,13.12,13.12,13.12,13.12,13.13,13.12,13.12,13.12,13.13,13.1,13.1,13.09,13.09,13.11,13.13,13.13,13.13,13.13,13.14,13.13,13.13,13.13,13.13,13.14,13.13,13.12,13.12,13.12,13.12,13.1,13.09,13.09,13.09,13.09,13.14,13.13,13.13,13.13,13.13,13.14,13.12,13.12,13.12,13.12,13.14,13.12,13.12,13.12,13.12,13.14,13.11,13.11,13.11,13.11,13.13,13.13,13.12,13.12,13.12,13.14,13.13,13.13,13.13,13.12,13.14,13.14,13.13,13.12,13.11,13.11,13.1,13.08,13.08,13.08,13.11,13.12,13.11,13.11,13.11,13.1,13.12,13.11,13.11,13.11,13.09,13.11,13.1,13.11,13.11,13.11,13.12,13.12,13.11,13.12,13.11,13.13,13.11,13.11,13.11,13.11,13.12,13.12,13.12,13.12,13.06,13.06,13.11,13.11,13.11,13.11,13.11,13.13,13.12,13.12,13.1,13.1,13.11,13.1,13.1,13.1,13.1,13.12,13.12,13.11,13.11,13.11,13.12,13.12,13.12,13.12,13.12,13.13,13.09,13.08,13.12,13.13,13.13,13.12,13.12,13.12,13.12,13.13,13.09,13.09,13.07,13.07,13.07,13.13,13.13,13.12,13.12,13.12,13.11,13.09,13.1,13.1,13.11,13.12,13.12,13.13,13.13,13.13,13.13,13.12,13.12,13.12,13.12,13.14,13.12,13.12,13.12,13.12,13.14,13.13,13.12,13.12,13.12,13.13,13.12,13.09,13.09,13.09,13.09,13.13,13.12,13.12,13.12,13.12,13.13,13.13,13.13,13.13,13.13,13.14,13.1,13.09,13.09,13.09,13.12,13.12,13.12,13.12,13.12,13.14,13.12,13.12,13.12,13.12,13.14,13.13,13.13,13.13,13.13,13.14,13.13,13.13,13.12,13.12,13.13,13.11,13.1,13.1,13.09,13.09,13.11,13.1,13.1,13.1,13.1,13.13,13.11,13.11,13.11,13.11,13.11,13.1,13.1,13.1,13.1,13.12,13.11,13.11,13.11,13.1,13.11,13.11,13.11,13.11,13.12,13.13,13.11,13.11,13.11,13.11,13.12,13.11,13.11,13.11,13.11,13.12,13.12,13.12,13.12,13.12,13.11,13.13,13.12,13.12,13.11,13.12,13.13,13.11,13.11,13.11,13.08,13.12,13.12,13.12,13.12,13.11,13.12,13.12,13.12,13.12,13.12,13.13,13.11,13.12,13.12,13.12,13.44,13.18,13.18,13.18,13.26,13.19,13.11,13.12,13.12,13.12,13.3,13.18,13.17,13.16,13.18,13.16,13.13,13.12,13.12,13.12,13.12,13.13,13.12,13.12,13.12,13.12,13.14,13.13,13.13,13.13,13.13,13.13,13.12,13.12,13.12,13.12,13.13,13.13,13.13,13.13,13.13,13.14,13.12,13.12,13.12,13.13,13.14,13.12,13.12,13.12,13.12,13.12,13.15,13.14,13.12,13.12,13.12,13.13,13.12,13.14,13.14,13.14,13.13,13.12,13.13,13.13,13.13,13.14,13.12,13.13,13.13,13.13,13.15,13.12,13.13,13.13,13.13,13.14,13.13,13.11,13.11,13.11,13.12,13.1,13.12,13.12,13.11,13.11,13.11,13.11,13.11,13.11,13.11,13.12,13.11,13.11,13.11,13.11,13.12,13.12,13.12,13.12,13.12,13.12,13.12,13.12,13.12,13.11,13.14,13.12,13.12,13.12,13.12,13.12,13.09,13.09,13.1,13.1,13.11,13.1,13.1,13.1,13.11,13.1,13.13,13.12,13.12,13.12,13.12,13.13,13.1,13.1,13.1,13.11,13.14,13.12,13.12,13.12,13.13,13.13,13.13,13.13,13.13,13.13,13.12,13.11,13.11,13.11,13.11,13.11,13.12,13.12,13.12,13.12,13.14,13.12,13.12,13.12,13.12,13.1,13.12,13.1,13.1,13.1,13.09,13.12,13.11,13.11,13.13,13.13,13.13,13.12,13.12,13.12,13.13,13.14,13.12,13.12,13.12,13.13,13.14,13.13,13.13,13.13,13.13,13.14,13.11,13.12,13.12,13.13,13.14,13.11,13.11,13.12,13.13,13.14,13.13,13.13,13.13,13.1,13.1,13.15,13.14,13.14,13.11,13.11,13.12,13.1,13.11,13.14,13.14,13.12,13.09,13.09,13.11,13.1,12.87,12.86,12.86,12.85,12.85,12.86,12.86,12.86,12.83,12.83,12.85,12.87,12.87,12.87,12.86,12.87,12.85,12.85,12.83,12.83,12.84,12.87,12.86,12.84,12.84,12.84,12.85,12.84,12.83,12.82,12.82,12.84,12.83,12.83,12.83,12.83,12.85,12.84,12.83,12.82,12.82,12.84,12.84,12.85,12.85,12.85,12.86,12.84,12.85,12.84,12.84,12.85,12.84,12.82,12.83,12.83,12.84,12.82,12.83,12.82,12.82,12.83,12.85,12.85,12.85,12.85,12.85,12.87,12.85,12.85,12.85,12.85,12.85,12.83,13.1,12.93,12.92,12.93,12.92,12.89,12.87,12.87,12.88,12.86,12.86,12.86,12.86,12.87,12.85,12.85,12.85,12.85,12.86,12.86,12.86,12.86,12.86,12.86,12.82,12.8,12.8,12.8,12.86,12.86,12.84,12.84,12.84,12.84,12.87,12.86,12.86,12.86,12.86,12.87,12.86,12.86,12.86,12.86,12.87,12.87,12.87,12.86,12.87,12.88,12.86,12.86,12.86,12.86,12.88,12.87,12.87,12.87,12.86,12.85,12.87,12.86,12.86,12.86,12.87,12.88,12.87,12.87,12.87,12.86,12.87,12.87,12.87,12.86,12.87,13.12,12.94,12.94,12.94,12.91,12.9,12.84,12.85,12.85,12.85,12.86,12.88,12.88,12.87,12.85,12.86,12.86,12.86,12.86,12.85,12.85,12.89,12.88,12.88,12.88,12.88,12.89,12.88,12.88,12.86,12.86,12.84,12.83,12.83,12.81,12.81,12.83,12.82,12.82,12.84,12.84,12.87,12.86,12.86,12.85,12.85,12.85,12.83,12.83,12.85,12.84,12.86,12.85,12.85,12.85,12.85,12.86,12.86,12.86,12.86,12.86,12.86,12.85,12.83,12.86,12.86,12.86,12.85,12.85,12.86,12.87,12.86,12.85,12.86,12.86,12.86,12.86,12.87,12.86,12.87,12.87,12.87,12.88,12.86,12.83,12.83,12.82,12.84,12.86,12.86,12.86,12.86,12.86,12.87,12.83,12.83,12.83,12.85,12.85,12.83,12.82,12.82,12.82,12.88,12.87,12.86,12.86,12.87,12.88,12.87,12.87,12.87,12.87,12.88,12.86,12.86,12.86,12.86,12.87,12.86,12.87,12.87,12.87,12.88,12.85,12.85,12.85,12.85,12.86,12.87,12.87,12.87,12.87,12.88,12.87,12.87,12.87,12.87,12.87,12.84,12.82,12.82,12.82,12.82,12.86,12.86,12.85,12.85,12.85,12.86,12.85,12.85,12.85,12.85,12.87,12.84,12.84,12.84,12.84,12.86,12.87,12.87,12.87,12.88,12.88,12.88,12.88,12.88,12.88,12.87,12.88,12.87,12.87,12.87,12.88,12.86,12.86,12.86,12.86,12.88,12.87,12.85,12.85,12.85,12.83,12.85,12.84,12.84,12.84,12.86,12.87,12.85,12.85,12.84,12.85,12.86,12.83,12.83,12.84,12.85,12.86,12.84,12.84,12.84,12.82,12.83,12.87,12.87,12.87,12.87,12.87,12.87,12.86,12.86,12.86,12.86,12.86,12.84,12.84,12.85,12.85,12.86,12.84,12.86,12.84,12.84,12.86,12.86,12.86,12.87,12.87,12.87,12.87,12.87,12.87,12.86,12.87,12.86,12.86,12.83,12.83,12.84,12.86,12.86,12.86,12.86,12.86,12.87,12.85,12.85,12.85,12.85,12.86,12.85,12.86,12.86,12.86,12.87,12.86,12.86,12.86,12.86,12.87,12.87,12.87,12.87,12.87,12.88,12.87,12.87,12.87,12.87,12.87,12.88,12.87,12.87,12.87,12.87,12.87,12.87,12.87,12.87,12.87,12.88,12.88,12.88,12.88,12.88,12.88,12.86,12.86,12.86,12.86,12.88,12.85,12.85,12.85,12.85,12.87,12.86,12.86,12.86,12.86,12.87,12.87,12.87,12.87,12.87,12.88,12.88,12.88,12.87,12.87,12.87,12.87,12.85,12.85,12.85,12.85,12.89,12.87,12.87,12.87,12.87,12.88,12.87,12.87,12.87,12.87,12.88,12.88,12.88,12.88,12.87,12.88,12.87,12.85,12.85,12.85,12.85,12.86,12.86,12.86,12.85,12.85,12.83,12.83,12.83,12.83,12.86,12.84,12.84,12.84,12.84,12.86,12.88,12.86,12.86,12.86,12.83,12.85,12.83,12.83,12.83,12.86,13.14,12.92,12.92,12.92,12.92,12.91,12.86,12.86,12.86,12.85,12.87,12.86,12.86,12.86,12.87,12.88,12.86,12.86,12.86,12.85,12.85,12.85,12.84,12.84,12.85,12.85,12.87,12.86,12.86,12.86,12.86,12.87,12.87,12.87,12.85,12.85,12.87,12.87,12.86,12.86,12.86,12.87,12.86,12.86,12.83,12.83,12.84,12.85,12.85,12.86,12.86,12.87,12.87,12.87,12.85,12.85,12.85,12.84,12.83,12.87,12.87,12.87,12.86,12.86,12.86,12.86,12.86,12.87,12.87,12.86,12.86,12.86,12.88,12.87,12.87,12.87,12.87,12.88,12.86,12.85,12.84,12.84,12.87,12.86,12.86,12.86,12.86,12.87,12.87,12.87,12.86,12.86,12.86,12.88,12.85,12.85,12.85,12.85,12.88,12.87,12.87,12.87,12.87,12.88,12.85,12.84,12.84,12.84,12.87,12.88,12.88,12.88,12.88,12.89,12.87,12.87,12.87,12.87,12.88,12.85,12.85,12.85,12.85,12.86,12.87,12.87,12.84,12.84,12.85,12.83,12.82,12.82,12.82,12.82,12.84,12.82,12.82,12.82,12.82,12.84,12.82,12.82,12.82,12.82,12.87,12.86,12.86,12.86,12.86,12.87,12.85,12.86,12.86,12.86,12.86,12.86,12.86,12.86,12.86,12.87,12.85,12.85,12.86,12.86,12.84,12.86,12.86,12.86,12.86,12.96,12.99,12.98,12.98,12.98,12.99,12.98,12.96,12.96,12.96,12.96,12.98,12.97,12.97,12.97,13,13.05,13.06,13.06,13.06,13.06,13.07,13.06,13.06,13.06,13.06,13.07,13.06,13.06,13.06,13.06,13.07,13.05,13.05,13.05,13.06,13.06,13.07,13.06,13.06,13.06,13.06,13.08,13.07,13.07,13.07,13.06,13.07,13.05,13.07,13.07,13.07,13.08,13.06,13.06,13.05,13.05,13.07,13.06,13.06,13.07,13.07,13.08,13.07,13.07,13.04,13.04,13.04,13.08,13.06,13.08,13.07,13.07,13.09,13.07,13.05,13.05,13.04,13.07,13.07,13.05,13.05,13.05,13.07,13.06,13.07,13.07,13.07,13.08,13.07,13.06,13.06,13.06,13.07,13.08,13.08,13.08,13.08,13.08,13.09,13.06,13.06,13.06,13.06,13.09,13.07,13.07,13.07,13.07,13.09,13.08,13.05,13.05,13.05,13.06,13.06,13.06,13.06,13.06,13.07,13.03,13.03,13.03,13.03,13.04,13.06,13.06,13.06,13.06,13.07,13.05,13.04,13.04,13.04,13.04,13.06,13.04,13.04,13.04,13.06,13.07,13.06,13.06,13.07,13.06,13.07,13.06,13.06,13.06,13.06,13.07,13.07,13.06,13.06,13.06,13.07,13.04,13.04,13.05,13.05,13.06,13.07,13.07,13.07,13.06,13.05,13.06,13.06,13.06,13.07,13.05,13.06,13.06,13.06,13.06,13.05,13.07,13.06,13.06,13.06,13.07,13.08,13.07,13.07,13.06,13.06,13.08,13.07,13.07,13.07,13.07,13.08,13.07,13.07,13.07,13.04,13.38,13.13,13.13,13.14,13.1,13.1,13.07,13.07,13.07,13.05,13.06,13.07,13.07,13.07,13.08,13.08,13.08,13.06,13.05,13.06,13.06,13.08,13.08,13.08,13.06,13.06,13.08,13.06,13.06,13.07,13.07,13.08,13.07,13.07,13.05,13.05,13.06,13.07,13.07,13.04,13.04,13.07,13.07,13.07,13.07,13.07,13.08,13.07,13.07,13.05,13.05,13.06,13.06,13.05,13.08,13.08,13.08,13.07,13.06,13.03,13.03,13.03,13.07,13.07,13.08,13.08,13.08,13.07,13.03,13.08,13.06,13.06,13.07,13.07,13.07,13.07,13.06,13.07,13.06,13.06,13.06,13.06,13.07,13.07,13.06,13.06,13.06,13.08,13.04,13.02,13.02,13.02,13.02,13.07,13.06,13.06,13.06,13.05,13.07,13.04,13.04,13.04,13.04,13.06,13.07,13.07,13.07,13.07,13.07,13.06,13.06,13.06,13.06,13.07,13.06,13.06,13.06,13.06,13.07,13.04,13.04,13.04,13.04,13.05,13.08,13.07,13.07,13.07,13.07,13.08,13.07,13.07,13.07,13.06,13.07,13.07,13.07,13.07,13.07,13.06,13.04,13.04,13.04,13.04,13.08,13.05,13.05,13.05,13.05,13.06,13.06,13.06,13.06,13.07,13.09,13.07,13.07,13.07,13.07,13.06,13.08,13.07,13.06,13.06,13.07,13.08,13.07,13.07,13.07,13.05,13.05,13.04,13.04,13.04,13.05,13.07,13.07,13.07,13.07,13.06,13.08,13.07,13.07,13.07,13.08,13.09,13.08,13.08,13.08,13.08,13.09,13.07,13.07,13.07,13.06,13.06,13.09,13.08,13.08,13.06,13.06,13.08,13.07,13.07,13.08,13.08,13.09,13.08,13.08,13.07,13.07,13.08,13.08,13.08,13.08,13.08,13.09,13.05,13.05,13.08,13.08,13.09,13.04,13.04,13.06,13.06,13.07,13.06,13.05,13.06,13.06,13.06,13.05,13.03,13.03,13.04,13.04,13.05,13.04,13.06,13.06,13.06,13.07,13.06,13.06,13.06,13.06,13.07,13.06,13.04,13.05,13.05,13.07,13.07,13.07,13.07,13.07,13.08,13.07,13.07,13.07,13.07,13.09,13.06,13.05,13.05,13.05,13.05,13.05,13.06,13.06,13.06,13.06,13.07,13.06,13.07,13.07,13.07,13.06,13.03,13.03,13.03,13.03,13.06,13.06,13.05,13.05,13.05,13.08,13.08,13.08,13.08,13.08,13.09,13.07,13.07,13.07,13.07,13.09,13.07,13.07,13.06,13.06,13.08,13.08,13.08,13.08,13.08,13.08,13.09,13.08,13.08,13.08,13.09,13.08,13.08,13.08,13.08,13.08,13.08,13.07,13.07,13.07,13.07,13.06,13.06,13.06,13.06,13.07,13.08,13.07,13.06,13.06,13.08,13.09,13.08,13.08,13.08,13.69,13.33,13.17,13.16,13.16,13.15,13.09,13.09,13.08,13.08,13.08,13.1,13.08,13.08,13.08,13.08,13.07,13.08,13.08,13.08,13.07,13.06,13.08,13.08,13.08,13.09,13.1,13.32,13.15,13.15,13.15,13.15,13.15,13.07,13.07,13.07,13.09,13.09,13.1,13.06,13.06,13.06,13.06,13.08,13.07,13.07,13.06,13.06,13.07,13.06,13.06,13.05,13.05,13.07,13.06,13.07,13.04,13.04,13.05,13.05,13.05,13.06,13.06,13.08,13.07,13.07,13.06,13.06,13.07,13.07,13.07,13.07,13.07,13.09,13.06,13.06,13.08,13.08,13.07,13.09,13.08,13.06,13.07,13.06,13.07,13.06,13.06,13.06,13.06,13.08,13.07,13.08,13.08,13.07,13.08,13.07,13.06,13.06,13.06,13.07,13.06,13.07,13.07,13.08,13.09,13.08,13.05,13.05,13.05,13.05,13.07,13.06,13.06,13.06,13.06,13.09,13.05,13.05,13.05,13.05,13.09,13.09,13.09,13.08,13.08,13.09,13.05,13.05,13.05,13.05,13.08,13.08,13.08,13.08,13.08,13.09,13.09,13.09,13.09,13.09,13.1,13.06,13.06,13.06,13.06,13.08,13.06,13.05,13.05,13.04,13.04,13.08,13.08,13.08,13.08,13.08,13.09,13.08,13.08,13.08,13.08,13.09,13.08,13.08,13.08,13.08,13.1,13.09,13.09,13.09,13.09,13.1,13.09,13.09,13.09,13.09,13.09,13.07,13.07,13.07,13.07,13.08,13.08,13.09,13.09,13.09,13.07,13.09,13.08,13.07,13.07,13.09,13.11,13.08,13.07,13.07,13.07,13.08,13.07,13.07,13.07,13.04,13.05,13.05,13.05,13.07,13.04,13.05,13.06,13.06,13.06,13.06,12.92,12.87,12.87,12.87,12.86,12.87,12.86,12.86,12.86,12.86,12.86,12.88,12.86,12.86,12.82,12.82,12.88,12.87,12.87,12.86,12.86,12.88,12.87,12.88,12.88,13.03,12.94,12.93,12.94,12.94,12.91,12.88,12.88,12.88,12.88,12.88,12.89,12.88,12.88,12.86,12.86,12.88,12.85,12.85,12.87,12.87,12.87,12.88,12.87,12.87,12.87,12.87,12.88,12.88,12.88,12.88,12.87,12.87,12.85,12.88,12.88,12.88,12.89,12.88,12.88,12.88,12.87,12.88,12.87,12.84,12.85,12.85,12.87,12.86,12.84,12.84,12.84,12.85,12.87,12.86,12.86,12.86,12.86,12.88,12.87,12.87,12.87,12.87,12.89,12.9,12.92,12.93,12.93,12.97,12.98,12.98,12.98,12.98,12.98,12.92,12.92,12.92,12.92,12.95,12.97,12.97,12.97,12.97,12.99,12.93,12.93,12.93,12.94,12.99,12.95,12.95,12.95,12.95,12.95,12.96,12.95,12.95,12.95,12.95,12.99,12.98,12.98,12.98,12.98,12.99,12.97,12.97,12.97,12.98,12.97,12.98,12.96,12.96,12.96,12.97,12.96,12.96,12.96,12.96,12.98,12.97,12.96,12.96,12.96,12.95,12.96,12.96,12.96,12.96,12.95,12.97,12.96,12.96,12.96,12.96,12.97,12.96,12.96,12.96,12.96,12.96,12.95,12.95,12.95,12.94,12.97,12.97,12.97,12.97,12.94,12.96,12.96,12.96,12.96,12.97,13.25,13.03,13.03,13.03,13.03,13.03,12.96,12.96,12.97,12.97,12.97,12.97,12.96,12.96,12.93,12.93,12.98,12.97,12.97,12.96,12.96,12.98,12.97,12.96,12.95,12.95,12.98,12.97,12.97,12.97,12.97,12.98,12.95,12.95,12.97,12.97,12.97,12.95,12.95,12.97,12.96,12.97,12.94,12.94,12.95,12.95,12.97,12.97,12.97,12.97,12.97,12.96,12.95,12.98,12.97,12.97,12.97,12.96,12.95,12.94,12.94,12.94,12.97,12.98,12.98,12.98,12.98,12.98,12.97,12.95,12.95,12.95,12.97,12.97,12.94,12.94,12.94,12.96,12.98,12.98,12.98,12.98,12.99,12.97,12.97,12.97,12.97,12.97,12.98,12.95,12.95,12.96,12.96,12.99,12.94,12.94,12.93,12.93,12.98,12.97,12.97,12.97,12.97,12.99,12.98,12.98,12.98,12.96,12.96,12.97,12.97,12.97,12.96,12.97,12.95,12.95,12.96,12.96,12.96,12.92,12.92,12.92,12.92,12.92,12.94,12.93,12.93,12.94,12.94,12.99,12.97,12.97,12.97,12.97,12.98,12.96,12.96,12.96,12.97,12.98,12.97,12.97,12.97,12.97,12.98,12.97,12.97,12.97,12.97,12.99,12.96,12.95,12.95,12.95,12.97,12.97,12.97,12.97,12.97,12.97,12.98,12.97,12.97,12.96,12.95,12.97,12.96,12.96,12.96,12.97,12.99,12.97,12.97,12.97,12.96,12.97,12.96,12.96,12.96,12.97,12.98,12.97,12.97,12.97,12.98,12.99,12.98,12.98,12.98,12.95,12.97,12.97,12.97,12.97,12.95,12.97,12.97,12.97,12.97,12.98,12.98,12.99,12.99,12.97,12.98,12.98,12.99,12.98,12.98,12.98,12.98,12.99,12.98,12.92,12.87,12.86,12.9,12.89,12.89,12.86,12.86,12.88,12.88,12.88,12.87,12.87,12.88,12.85,12.85,12.86,12.86,12.87,12.87,12.89,12.88,12.88,12.88,12.9,12.89,12.89,12.89,12.89,12.9,12.89,12.89,12.89,12.89,12.9,12.89,12.89,12.89,12.89,12.9,12.89,12.87,12.87,12.87,12.89,12.89,12.9,12.9,12.9,12.9,12.88,12.87,12.87,12.88,12.88,12.89,12.88,12.88,12.88,12.87,12.87,12.88,12.88,12.88,12.88,12.88,12.88,12.88,12.88,12.88,12.89,12.87,12.87,12.87,12.87,12.89,12.88,12.88,12.88,12.87,12.9,12.86,12.86,12.86,12.86,12.88,12.88,12.88,12.88,12.88,12.89,12.89,12.89,12.89,12.89,12.89,12.89,12.88,12.88,12.88,12.88,12.87,12.86,12.86,12.86,12.86,12.89,12.89,12.89,12.89,12.88,12.89,12.88,12.88,12.88,12.88,12.91,12.88,12.89,12.89,12.89,12.89,12.88,12.88,12.88,12.88,12.9,12.89,12.89,12.89,12.89,12.89,12.89,12.89,12.89,12.89,12.89,12.89,12.89,12.88,12.88,12.86,12.9,12.89,12.89,12.89,12.87,12.89,12.89,12.89,12.89,12.89,13.2,12.94,12.94,12.94,12.92,12.92,12.87,12.87,12.87,12.86,12.88,12.9,12.9,12.9,12.89,12.9,12.9,12.9,12.9,12.89,12.9,12.9,12.9,12.9,12.84,12.84,12.9,12.89,12.89,12.9,12.9,12.9,12.89,12.89,12.9,12.9,12.92,12.9,12.9,12.9,12.9,12.91,12.89,12.89,12.89,12.89,12.9,12.88,12.9,12.89,12.89,12.89,12.86,12.86,12.85,12.85,12.86,12.86,12.86,12.87,12.88,12.89,12.86,12.86,12.87,12.87,12.87,12.88,12.88,12.86,12.86,12.86,12.89,12.88,12.88,12.88,12.88,12.89,12.88,12.87,12.87,12.87,12.89,12.88,12.85,12.85,12.86,12.88,12.89,12.86,12.86,12.86,12.87,12.88,12.86,12.85,12.85,12.86,12.88,12.89,12.89,12.89,12.89,12.9,12.88,12.87,12.87,12.87,12.9,12.88,12.88,12.89,12.89,12.9,12.89,12.89,12.89,12.88,12.89,12.88,12.88,12.88,12.89,12.89,12.89,12.89,12.89,12.89,12.91,12.87,12.87,12.87,12.87,12.87,12.89,12.88,12.88,12.88,12.89,12.89,12.88,12.88,12.88,12.88,12.9,12.9,12.89,12.89,12.89,12.88,12.88,12.88,12.88,12.88,12.89,12.89,12.89,12.89,12.89,12.9,12.89,12.89,12.89,12.89,12.91,12.89,12.89,12.89,12.89,12.89,12.9,12.89,12.89,12.89,12.9,12.91,12.9,12.89,12.9,12.9,12.9,12.87,12.87,12.87,12.89,12.91,12.9,12.9,12.9,12.87,12.89,12.89,12.89,12.88,12.87,12.89,12.9,12.9,12.9,12.87,12.89,12.9,12.9,12.9,12.89,12.89,12.91,12.88,12.88,12.88,12.88,12.89,12.88,12.88,12.85,12.85,12.87,12.86,12.87,12.86,12.85,12.87,12.87,12.87,12.87,12.86,12.86,12.85,12.88,12.89,12.89,12.89,12.85,12.85,12.87,12.87,12.88,12.89,12.89,12.89,12.89,12.9,12.88,12.89,12.86,12.86,12.86,12.88,12.87,12.86,12.86,12.86,12.9,12.89,12.88,12.88,12.88,12.9,12.88,12.89,12.89,12.88,12.9,12.89,12.86,12.86,12.86,12.87,12.89,12.88,12.89,12.88,12.89,12.88,12.87,12.87,12.87,12.88,12.89,12.89,12.89,12.89,12.89,12.9,12.88,12.88,12.88,12.88,12.91,12.89,12.89,12.89,12.89,12.89,12.89,12.89,12.89,12.89,12.89,12.89,12.89,12.89,12.89,12.9,12.9,12.9,12.9,12.9,12.9,12.87,12.87,12.87,12.87,12.87,12.91,12.9,12.9,12.9,12.88,12.9,12.89,12.89,12.89,12.89,12.91,12.89,12.89,12.89,12.9,12.9,12.9,12.9,12.89,12.89,12.92,12.9,12.9,12.9,12.9,12.89,12.9,12.9,12.9,12.9,12.91,12.89,12.89,12.89,12.89,12.9,12.91,12.9,12.9,12.9,12.9,12.91,12.89,12.89,12.89,12.87,12.88,12.87,12.88,12.88,12.88,13.2,12.94,12.94,12.94,12.94,12.93,12.88,12.88,12.88,12.89,12.9,12.88,12.88,12.88,12.89,12.89,12.89,12.88,12.88,12.88,12.89,12.89,12.88,12.88,12.86,12.86,12.89,12.89,12.89,12.85,12.85,12.87,12.87,12.87,12.86,12.85,12.88,12.88,12.88,12.88,12.88,12.89,12.88,12.89,12.89,12.89,12.9,12.87,12.87,12.84,12.84,12.84,12.88,12.87,12.87,12.87,12.87,12.88,12.87,12.87,12.87,12.87,12.9,12.88,12.89,12.89,12.89,12.91,12.89,12.89,12.89,12.88,12.9,12.87,12.88,12.88,12.88,12.89,12.89,12.88,12.88,12.88,12.89,12.89,12.89,12.89,12.89,12.9,12.89,12.9,12.9,12.9,12.9,12.91,12.9,12.9,12.9,12.9,12.9,12.89,12.88,12.88,12.89,12.91,12.9,12.9,12.9,12.9,12.9,12.88,12.88,12.88,12.89,12.9,12.9,12.9,12.9,12.9,12.91,12.9,12.89,12.89,12.9,12.91,12.87,12.87,12.87,12.86,12.86,12.91,12.9,12.9,12.9,12.9,12.91,12.9,12.9,12.9,12.9,12.9,12.9,12.9,12.9,12.9,12.91,12.9,12.9,12.9,12.9,12.89,12.88,12.88,12.88,12.88,12.9,12.88,12.88,12.88,12.88,12.87,12.88,12.88,12.88,12.89,12.9,12.87,12.86,12.86,12.86,12.87,12.9,12.88,12.88,12.88,12.88,12.9,12.88,12.88,12.88,12.88,12.9,12.88,12.88,12.88,12.85,12.88,12.88,12.88,12.88,12.88,12.9,12.89,12.89,12.89,12.87,12.88,12.89,12.89,12.89,12.89,12.89,12.9,12.89,12.89,12.88,12.88,12.9,12.89,12.89,12.89,12.89,12.9,12.89,12.88,12.89,12.89,12.9,12.9,12.89,12.89,12.88,12.89,12.89,12.89,12.89,12.89,12.89,12.87,12.87,12.87,12.88,12.91,12.89,12.89,12.87,13.13,13.1,13.1,13.1,13.1,13.09,13.05,13.05,13.05,13.05,13.05,13.04,13.05,13.04,13.04,13.04,13.04,13.05,13.04,13.01,13.01,13.01,13.04,13.04,13,13,13.01,13.03,13.04,13.05,13.05,13.05,13.05,13.05,13.02,13.02,13.02,13.04,13.04,13.04,13.04,13.04,13.04,13.05,13.04,13.03,13.04,13.04,13.06,13.05,13.05,13.05,13.05,13.05,13.03,13.03,13.03,13.04,13.05,13.05,13.05,13.05,13.05,13.06,13.05,13.05,13.05,13.05,13.07,13,12.99,12.99,12.99,13.01,13.01,13.01,13.01,13.01,13.03,13.03,13.02,13.02,13.02,13.02,13.04,13.03,13.03,13.03,13.03,13.03,13.04,13.04,13.04,13.03,13.1,13.03,13.03,13.03,13.03,13.04,13.03,13.03,13.03,13.03,13.02,13.02,13.02,13.02,13.03,13.02,13.03,13.03,13.04,13.04,13.07,14.54,12.93,12.93,12.93,12.94,12.94,12.87,12.87,12.87,12.87,12.87,12.85,12.85,12.85,12.87,13.11,12.93,12.93,12.93,12.91,12.9,12.88,12.88,12.88,12.88,12.88,12.87,12.87,12.87,12.87,12.88,12.88,12.88,12.88,12.87,12.9,12.88,12.88,12.88,12.88,12.88,12.89,12.88,12.88,12.87,12.87,12.88,12.87,12.87,12.88,12.87,12.88,12.87,12.87,12.88,12.88,12.9,12.88,12.88,12.87,12.87,12.88,12.87,12.87,12.86,12.86,12.88,12.89,12.89,12.89,12.89,12.89,12.88,12.88,12.89,12.89,12.9,12.88,12.88,12.86,12.86,12.86,12.88,12.89,12.89,12.89,12.89,12.89,12.88,12.86,12.85,12.87,12.88,12.88,12.89,12.89,12.89,12.89,12.88,12.88,12.89,12.89,12.9,12.89,12.89,12.89,12.89,12.9,12.88,12.87,12.85,12.85,12.86,12.87,12.86,12.86,12.86,12.86,12.86,12.87,12.87,12.88,12.88,12.86,12.86,12.86,12.86,12.86,12.88,12.88,12.88,12.88,12.88,12.89,12.88,12.88,12.87,12.87,12.88,12.89,12.89,12.88,12.88,12.9,12.85,12.85,12.85,12.84,12.86,12.89,12.89,12.88,12.88,12.88,12.87,12.86,12.86,12.86,12.86,12.86,12.85,12.85,12.85,12.85,12.85,12.84,12.84,12.84,12.84,12.9,12.88,12.88,12.88,12.89,12.88,12.87,12.87,12.87,12.88,12.88,12.89,12.89,12.89,12.89,12.89,12.88,12.88,12.88,12.88,12.89,12.88,12.88,12.88,12.88,12.89,12.89,12.88,12.88,12.88,12.87,12.9,12.89,12.89,12.89,12.86,12.88,12.89,12.89,12.89,12.88,12.89,12.89,12.89,12.89,12.89,12.91,12.89,12.89,12.89,12.89,12.9,12.89,12.89,12.89,12.89,12.89,12.9,12.89,12.89,12.87,12.86,12.89,12.88,12.89,12.88,12.89,12.9,12.89,12.89,12.9,12.9,12.9,12.89,12.89,12.89,12.89,12.9,12.89,12.89,12.88,12.88,12.89,12.87,12.87,12.88,12.88,12.89,12.86,12.85,12.87,12.87,12.87,12.9,12.89,12.88,12.87,12.87,12.89,12.88,12.85,12.85,12.84,12.88,12.88,12.85,12.85,12.85,12.87,12.87,12.85,12.85,12.85,12.88,12.88,12.88,12.88,12.88,12.9,12.88,12.88,12.87,12.87,12.89,12.89,12.88,12.88,12.88,12.88,12.87,12.86,12.85,12.85,12.85,12.88,12.85,12.85,12.85,12.85,12.86,12.89,12.89,12.89,12.89,12.9,12.88,12.88,12.88,12.88,12.89,12.89,12.88,12.88,12.88,12.9,12.86,12.86,12.86,12.86,12.88,12.88,12.88,12.88,12.88,12.91,12.97,12.96,12.96,12.96,12.96,12.99,12.98,12.98,12.98,12.98,12.99,12.99,12.99,12.99,20.96,21.31,14.22,14.22,14.22,14.26,21.16,25.11,25.9,20.81,14.24,14.28,20.23,25.37,15.74,23.38,22.35,14.28,14.28,25.73,25.73,25.97,15.45,14.28,14.28,14.29,14.25,14.33,14.32,14.31,14.31,14.32,14.58,14.39,14.39,14.39,14.4,14.37,14.33,14.31,14.31,14.3,14.32,14.32,14.32,14.32,14.31,14.33,14.33,14.33,14.33,14.3,14.31,14.33,14.33,14.33,14.32,14.34,14.33,14.33,14.33,14.33,14.32,14.34,14.32,14.33,14.32,14.32,14.31,14.29,14.29,14.33,14.32,14.33,14.32,14.3,14.28,14.27,14.28,14.28,14.27,14.32,14.32,14.33,14.29,14.29,14.32,14.32,14.33,14.31,14.31,14.31,14.31,14.31,14.27,14.31,14.32,14.32,14.31,14.32,14.31,14.29,14.29,14.3,14.33,14.33,14.31,14.3,14.3,14.32,14.33,14.34,14.32,14.32,14.33,14.32,14.32,14.32,14.32,14.31,14.28,14.31,14.32,14.32,14.33,14.34,14.34,14.34,14.34,14.34,14.33,14.31,14.3,14.3,14.3,14.33,14.32,14.32,14.32,14.32,14.34,14.33,14.33,14.33,14.33,14.35,14.34,14.34,14.34,14.34,14.35,14.34,14.32,14.32,14.32,14.33,14.27,14.28,14.28,14.27,14.3,14.3,14.31,14.32,14.32,14.32,14.35,14.34,14.34,14.34,14.34,14.34,14.31,14.3,14.3,14.3,14.33,14.33,14.33,14.33,14.33,14.34,14.32,14.32,14.32,14.34,14.33,14.33,14.33,14.33,14.33,14.36,14.34,14.33,14.33,14.33,14.34,14.33,14.33,14.33,14.33,14.32,14.34,14.33,14.33,14.33,14.35,14.35,14.34,14.34,14.33,14.35,14.36,14.33,14.33,14.33,14.33,14.34,14.34,14.34,14.34,14.32,14.35,14.33,14.33,14.33,14.32,14.33,14.33,14.33,14.33,14.34,14.35,14.32,14.31,14.31,14.31,14.32,14.33,14.32,14.32,14.33,14.32,14.33,14.32,14.34,14.33,14.33,14.35,14.34,14.34,14.34,14.34,14.34,14.33,14.33,14.32,14.32,14.33,14.33,14.33,14.34,14.34,14.35,14.34,14.34,14.34,14.34,14.35,14.34,14.34,14.35,14.35,14.35,14.31,14.33,14.33,14.33,14.34,14.33,14.33,14.34,14.34,14.34,14.32,14.31,14.34,14.34,14.34,14.36,14.35,14.34,14.34,14.34,14.33,14.31,14.31,14.31,14.31,14.33,14.33,14.34,14.33,14.33,14.34,14.35,14.31,14.31,14.31,14.33,14.32,14.35,14.35,14.35,14.34,14.34,14.31,13.86,12.9,12.9,12.91,12.93,12.93,12.93,12.93,12.93,12.93,12.93,12.93,12.93,12.92,12.92,12.92,12.92,12.92,12.94,12.93,12.93,12.93,12.93,12.94,12.92,12.92,12.92,12.92,12.93,12.9,12.9,12.9,12.91,12.91,12.94,12.92,12.92,12.92,12.92,12.93,12.92,12.92,12.92,12.92,12.93,12.91,12.91,12.91,12.93,12.95,12.94,12.94,12.94,12.94,12.94,12.93,12.93,12.93,12.93,12.95,12.94,12.94,12.94,12.94,12.94,12.92,12.92,12.92,12.92,12.91,12.92,12.92,12.92,12.92,12.92,12.93,12.92,12.91,12.92,12.92,13.22,12.99,12.99,12.99,12.96,12.94,12.9,12.9,12.9,12.91,12.93,12.92,12.92,12.92,12.92,12.93,12.92,12.92,12.91,12.92,12.94,12.93,12.93,12.93,12.89,12.9,12.9,12.9,12.93,12.9,12.9,12.91,12.92,12.92,12.92,12.92,12.92,12.91,12.91,12.93,12.93,12.91,12.89,12.9,12.9,12.9,12.93,12.93,12.93,12.93,12.93,12.94,12.93,12.93,12.93,12.94,12.94,12.92,12.93,12.93,12.93,12.93,12.94,12.93,12.93,12.93,12.93,12.94,12.93,12.92,12.91,12.91,12.93,12.93,12.91,12.9,12.9,12.92,12.92,12.93,12.93,12.93,12.93,12.92,12.94,12.93,12.93,12.94,12.93,12.93,12.93,12.93,12.94,12.93,12.93,12.93,12.93,12.93,12.93,12.91,12.91,12.91,12.91,12.94,12.93,12.93,12.93,12.93,12.94,12.93,12.93,12.93,12.93,12.94,12.92,12.92,12.92,12.92,12.95,12.94,12.94,12.94,12.94,12.95,12.94,12.94,12.94,12.94,12.95,12.94,12.94,12.94,12.94,12.95,12.93,12.93,12.93,12.93,12.93,12.92,12.88,12.88,12.88,12.88,12.94,12.92,12.91,12.91,12.92,12.93,12.92,12.92,12.92,12.92,12.92,12.9,12.9,12.9,12.9,12.91,12.93,12.93,12.93,12.93,12.91,12.92,12.92,12.92,12.92,12.92,12.92,12.92,12.92,12.92,12.9,12.93,12.92,12.92,12.92,12.93,12.93,12.92,12.92,12.92,12.93,12.94,12.92,12.92,12.92,12.92,12.93,12.93,12.93,12.93,12.92,12.93,12.93,12.93,12.93,12.9,12.92,12.92,12.92,12.92,12.92,12.91,12.93,12.91,12.93,12.92,12.92,12.94,12.93,12.93,12.92,12.92,12.92,12.92,12.91,12.93,12.93,12.93,12.91,12.91,12.92,12.93,12.94,12.93,12.93,12.94,12.94,12.95,12.93,12.93,12.94,12.94,12.95,12.93,12.93,12.91,12.91,12.91,12.92,12.91,12.92,12.92,12.92,12.93,12.93,12.93,12.93,12.93,12.94,12.94,12.94,12.94,12.94,12.95,12.94,12.91,12.91,12.91,12.93,12.94,12.94,12.93,12.93,12.95,12.95,12.92,12.92,12.91,12.93,12.91,12.92,12.92,12.92,12.93,12.93,12.92,12.91,12.91,12.91,12.94,12.92,12.91,12.91,12.91,12.92,12.92,12.92,12.92,12.92,12.94,12.91,12.89,12.89,12.89,12.93,12.92,12.93,12.93,12.93,12.95,12.9,12.9,12.9,12.9,12.92,12.93,12.92,12.93,12.93,12.93,12.94,12.93,12.93,12.93,12.93,12.92,12.92,12.92,12.92,12.92,12.93,12.92,12.91,12.91,12.93,12.93,12.92,12.92,12.92,12.92,12.94,12.93,12.93,12.93,12.93,12.92,12.9,12.89,12.89,12.89,12.94,12.93,12.93,12.93,12.93,12.94,12.94,12.94,12.94,12.94,12.92,12.93,12.92,12.92,12.92,12.93,12.95,12.93,12.93,12.92,12.89,13.26,12.99,12.98,12.98,12.98,12.97,12.93,12.93,12.93,12.91,12.93,12.94,12.94,12.94,12.9,12.91,12.94,12.94,12.94,12.92,12.92,12.93,12.93,12.94,12.92,12.92,12.93,12.92,12.92,12.93,12.93,12.94,12.93,12.93,12.91,12.91,12.93,12.92,12.92,12.91,12.91,12.93,12.93,12.93,12.94,12.94,12.95,12.94,12.94,12.94,12.94,12.95,12.94,12.95,12.95,12.95,12.94,12.96,12.94,12.94,12.94,12.94,12.94,12.94,12.95,12.95,12.95,12.95,12.94,12.94,12.94,12.94,12.95,12.94,12.94,12.95,12.95,12.96,12.95,12.95,12.95,12.94,12.96,12.94,12.91,12.9,12.9,12.9,12.94,12.92,12.92,12.92,12.92,12.94,12.93,12.93,12.93,12.93,12.94,12.93,12.93,12.93,12.93,12.95,12.93,12.93,12.93,12.93,12.95,13.27,13.31,13.31,13.31,13.33,13.3,13.27,13.27,13.27,13.28,13.27,13.27,13.27,13.27,13.27,13.25,13.24,13.23,13.23,13.23,13.27,13.26,13.26,13.26,13.26,13.27,13.27,13.27,13.27,13.27,13.28,13.26,13.26,13.26,13.26,13.29,13.27,13.27,13.27,13.27,13.28,13.27,13.27,13.27,13.27,13.26,13.27,13.27,13.27,13.27,13.27,13.27,13.26,13.26,13.26,13.27,13.25,13.24,13.24,13.24,13.26,13.28,13.27,13.27,13.28,13.27,13.29,13.27,13.27,13.27,13.25,13.27,13.28,13.28,13.28,13.29,13.29,13.27,13.27,13.27,13.26,13.27,13.28,13.28,13.28,13.28,13.29,13.27,13.27,13.27,13.28,13.28,13.29,13.28,13.29,13.27,13.27,13.29,13.28,13.29,13.25,13.24,13.28,13.28,13.28,13.25,13.24,13.26,13.26,13.26,13.26,13.26,13.28,13.28,13.28,13.24,13.24,13.25,13.27,13.27,13.26,13.26,13.27,13.28,13.28,13.27,13.27,13.27,13.27,13.26,13.28,13.27,13.27,13.26,13.25,13.26,13.26,13.26,13.26,13.24,13.27,13.27,13.27,13.28,13.27,13.24,13.23,13.23,13.25,13.26,13.24,13.24,13.24,13.26,13.27,13.25,13.25,13.25,13.25,13.26,13.27,13.27,13.27,13.28,13.27,13.27,13.27,13.27,13.27,13.28,13.25,13.24,13.25,13.25,13.27,13.24,13.24,13.24,13.24,13.26,13.25,13.24,13.24,13.25,13.28,13.27,13.27,13.27,13.27,13.28,13.26,13.26,13.26,13.26,13.28,13.27,14.19,13.27,12.99,12.99,13.06,12.99,12.94,12.93,12.93,12.92,12.91,12.91,12.9,12.9,12.92,12.9,12.91,12.91,12.92,12.94,12.93,12.93,12.92,12.93,12.93,12.92,12.92,12.92,12.92,12.92,12.9,12.9,12.9,12.9,12.93,12.94,12.94,12.94,12.94,12.93,12.93,12.93,12.93,12.93,12.93,12.94,12.94,12.93,12.93,12.91,12.94,12.93,12.93,12.93,12.93,12.95,12.94,12.94,12.94,12.94,13.26,13,13,13,12.98,12.97,12.94,12.94,12.94,12.94,12.95,12.94,12.94,12.94,12.94,12.95,12.93,12.93,12.94,12.91,12.93,12.93,12.93,12.93,12.94,12.94,12.95,12.94,12.92,12.91,12.91,12.93,12.91,12.91,12.91,12.91,12.93,12.92,12.92,12.88,12.88,12.9,12.91,12.92,12.92,12.92,12.93,12.93,12.91,12.93,12.92,12.94,12.9,12.9,12.93,12.93,12.94,12.92,12.92,12.93,12.93,12.93,12.9,12.89,12.93,12.93,12.93,12.93,12.92,12.91,12.91,12.91,12.92,12.91,12.93,12.93,12.92,12.93,12.93,12.93,12.93,12.93,12.95,12.94,12.93,12.93,12.93,12.94,12.91,12.92,12.91,12.91,12.93,12.93,12.93,12.93,12.93,12.93,12.95,12.94,12.94,12.94,12.94,12.93,12.92,12.92,12.92,12.92,12.95,12.94,12.94,12.94,12.94,12.94,12.92,12.92,12.92,12.92,12.93,12.93,12.93,12.93,12.93,12.93,12.92,12.92,12.92,12.92,12.93,12.94,12.94,12.94,12.94,12.95,12.94,12.94,12.94,12.94,12.93,12.94,12.93,12.93,12.93,12.93,12.95,12.94,12.94,12.94,12.94,12.95,12.94,12.94,12.94,12.94,12.94,12.93,12.93,12.92,12.93,12.94,12.94,12.94,12.94,12.94,12.94,12.94,12.94,12.94,12.93,12.9,12.94,12.94,12.94,12.94,12.9,12.92,12.91,12.91,12.91,12.94,12.96,12.94,12.94,12.93,12.87,12.89,12.87,12.87,12.87,12.86,12.87,12.85,12.85,12.85,12.86,12.87,12.86,12.86,12.87,12.86,12.87,12.87,12.87,12.87,12.84,12.84,12.86,12.85,12.85,12.85,12.85,12.87,12.86,12.86,12.86,12.86,12.88,12.87,12.87,12.87,12.85,12.87,12.86,12.86,12.84,12.84,12.83,12.81,12.86,12.84,12.84,12.86,12.86,12.86,12.86,12.86,12.87,12.87,12.87,12.86,12.85,12.87,12.87,12.87,12.87,12.87,12.87,12.88,12.87,12.87,12.88,12.88,12.85,12.84,12.87,12.86,12.86,12.87,12.87,12.87,12.87,12.87,12.88,12.87,12.88,12.87,12.87,12.88,12.87,12.85,12.85,12.85,12.87,12.87,12.84,12.84,12.84,12.86,12.87,12.88,12.88,12.88,12.89,12.87,12.87,12.87,12.87,12.87,13.69,13.52,22.09,24.77,25.84,16.14,14.35,14.32,14.32,14.34,14.4,14.41,14.4,14.4,14.4,14.41,14.4,14.41,14.4,14.4,14.42,14.4,14.4,14.4,14.4,14.41,14.41,14.41,14.41,14.41,14.43,14.42,14.42,14.42,14.42,14.43,14.39,14.39,14.39,14.38,14.4,14.4,14.4,22.54,23.35,14.38,14.4,14.38,14.38,14.38,14.38,14.41,14.39,14.39,14.39,14.39,14.44,14.43,14.43,14.43,14.44,14.44,14.4,14.4,14.4,14.4,14.43,14.43,14.43,14.43,14.43,14.44,14.41,14.39,14.4,14.39,14.43,14.73,14.48,14.46,14.46,14.46,14.42,14.4,14.4,14.4,14.41,14.41,14.4,14.4,14.41,14.41,14.42,14.42,14.42,14.42,14.42,14.42,14.4,14.4,14.4,14.42,14.42,14.41,14.41,14.41,14.41,14.43,14.42,14.41,14.41,14.38,14.38,14.4,14.39,14.39,14.39,14.38,14.41,14.41,14.41,14.42,14.42,14.43,14.42,14.42,14.42,14.41,14.43,14.42,14.42,14.43,14.43,14.44,14.43,14.41,14.41,14.41,14.43,14.41,14.42,14.42,14.42,14.42,14.44,14.43,14.43,14.43,14.42,14.44,14.43,14.41,14.41,14.41,14.42,14.4,14.39,14.39,14.39,14.42,14.42,14.43,14.43,14.43,14.43,14.41,14.43,14.43,14.43,14.43,14.42,14.43,14.43,14.43,14.45,14.42,14.42,14.41,14.37,20.08,21.62,18.87,25.78,21.74,26.07,15.02,14.54,14.54,14.54,14.54,14.58,14.58,14.58,14.58,14.59,14.61,14.59,14.59,14.59,14.59,14.6,14.59,14.57,14.57,14.57,14.58,14.58,14.59,14.59,14.36,14.36,14.36,14.36,14.36,14.36,14.36,14.33,14.33,14.32,14.31,14.31,14.33,14.31,14.31,14.31,14.31,14.33,14.32,14.32,14.32,14.32,14.35,14.35,14.35,14.35,14.35,14.36,14.34,14.32,14.32,14.33,14.33,14.33,14.33,14.33,14.33,14.33,14.34,14.34,14.34,14.34,14.33,14.33,14.34,14.34,14.34,14.32,14.34,14.33,14.33,14.33,14.32,14.34,14.34,14.34,14.34,14.35,14.35,14.34,14.34,14.36,14.33,14.35,14.35,14.36,14.34,14.34,14.35,14.34,14.34,14.34,14.34,14.35,14.34,14.34,14.34,14.32,14.32,14.31,14.31,14.31,14.33,14.35,14.35,14.35,14.34,14.31,14.31,14.35,14.34,14.34,14.36,14.35,14.36,14.35,14.35,14.36,14.36,14.36,14.34,14.34,14.34,14.34,14.35,14.34,14.33,14.34,14.34,14.34,14.34,14.34,14.33,14.33,14.34,14.32,14.32,14.33,14.33,14.34,14.34,14.34,14.34,14.33,14.33,16.29,26.14,18.05,14.22,14.23,22.11,19.82,15.12,26.44,15.61,14.29,14.28,14.27,14.27,14.27,14.29,14.29,14.28,14.28,14.28,14.3,14.31,14.28,14.28,14.28,14.29,14.29,14.27,14.27,14.27,14.27,14.3,14.28,14.28,14.28,14.28,14.3,14.28,14.28,14.28,14.28,14.32,14.3,14.28,14.28,14.27,14.29,14.26,14.26,14.26,14.26,14.28,14.3,14,12.98,12.98,12.99,12.96,12.96,12.96,12.96,12.96,12.99,12.98,12.98,12.98,12.98,12.99,12.98,12.98,12.98,12.98,13.01,13,13,13,13,13,12.99,12.99,12.99,12.99,13,13,13,13,12.99,12.98,12.98,12.98,12.98,12.98,12.99,13,12.99,12.99,12.99,13,13,13,13,13,12.99,12.99,12.98,12.98,12.98,12.97,13.31,13.06,13.06,13.06,13.06,13.03,12.99,13,12.99,12.97,12.99,12.99,12.99,12.99,12.98,12.99,13,13,13,13,13.01,13.01,13.01,13.01,13.01,13.02,12.97,12.97,12.97,13.01,13.01,13.02,13.01,13.01,12.98,12.98,13.01,13.01,13.01,12.99,12.99,13.01,13,13,13,12.99,13,12.99,12.99,12.99,12.99,13,13,13,13.01,13.01,13.02,13.01,13.01,13.01,13.01,13.02,13,13,13,13.01,13,13.01,13.01,13,12.99,12.99,13.01,13.01,12.96,12.95,12.96,12.99,12.99,13,13,12.99,13,12.98,12.99,12.99,12.99,13,12.99,12.95,12.95,12.95,12.97,12.99,12.98,12.98,12.98,12.99,12.99,12.99,12.99,13,13,12.99,12.96,12.96,12.96,12.96,12.99,12.98,12.98,12.98,12.98,13.01,13,12.99,12.99,12.99,13,12.98,12.97,12.97,12.97,12.98,12.99,12.99,12.99,12.99,13,13,13,13,13,13.01,12.99,12.99,12.99,12.99,13,12.99,12.99,12.99,12.99,12.99,13.01,13,13,13,13,13,12.99,12.99,12.99,12.98,13.01,13,12.99,13,13,12.99,13,12.99,12.99,12.99,13,12.99,12.99,12.99,12.99,13.01,13,13,13,13,13.02,13,13,13.01,13.01,13.01,13.02,13.01,13.01,13,12.97,13.01,13,13,13.01,13,13.02,13.01,13.01,13.01,12.98,13,13,13,13,12.99,13.01,13.01,13.01,13,13,13.02,13,13,13,12.97,12.99,13.01,13.01,13.01,13,13.01,13,13,13,13.01,13.01,13.02,13.01,13.01,12.98,12.97,13,12.99,12.99,12.97,12.97,12.99,12.98,12.98,12.99,12.99,13,12.99,12.99,12.99,12.99,13,12.99,12.99,12.99,12.99,13,12.99,12.99,12.99,12.99,13,13,13,12.95,12.95,12.97,12.99,12.99,13,13,13,13,12.99,12.97,12.97,12.97,13,13,12.97,12.97,12.97,12.97,12.96,12.99,12.99,12.99,12.99,13,12.99,13,13,13.01,13,13,13,13,13,12.98,12.99,12.99,12.99,13,12.99,13,13,12.99,12.99,12.98,12.97,12.97,12.97,12.97,12.98,12.97,12.97,12.97,12.96,13.01,13,13,13,13,13.01,13,13,13,13,13.01,13.01,13.01,13.01,13.01,13.02,13,13,13,13,13.01,13,13,13,12.99,12.99,12.98,12.97,12.97,12.97,12.99,12.98,12.96,12.96,12.96,12.95,13,12.99,12.99,12.99,12.99,12.99,12.98,12.98,12.98,12.98,13.01,13,13,13,13,12.99,13.01,13.01,13.01,13.01,13.07,13.29,13.06,13.05,13.05,13.07,13.02,13.01,13.01,13.01,12.98,13,12.98,12.98,12.98,12.99,13,12.99,12.99,12.98,12.99,13,12.99,12.99,12.99,12.97,12.98,12.99,12.99,12.99,12.99,12.99,12.97,12.98,12.98,12.96,12.98,12.99,12.99,12.98,12.98,12.99,12.99,12.99,12.99,12.99,12.99,13,12.99,12.99,13,13,13,12.99,12.99,12.98,12.98,12.98,12.97,12.97,12.99,12.99,13.01,12.99,12.99,13,12.99,13.01,12.99,12.99,12.97,12.97,12.99,13,12.99,12.98,12.98,12.98,13,12.99,13,13,13,13,12.99,12.97,12.97,12.97,12.99,12.99,12.98,12.98,12.98,13.01,13.01,13,13,13,13.02,13,12.98,12.98,12.98,12.99,12.98,12.97,12.98,12.98,12.99,12.99,13,13,13,13,12.97,12.95,12.95,12.96,12.96,13,12.96,12.96,12.96,12.95,13.02,12.98,12.98,12.98,12.98,13.01,12.98,12.98,12.98,12.97,12.99,12.99,12.99,12.99,12.99,13,12.99,12.98,12.99,12.99,13,12.99,12.99,12.99,12.99,13,13,13,13,13,13,12.99,12.97,12.96,12.96,12.96,13,12.99,12.99,12.99,12.98,12.99,12.99,12.99,12.99,12.99,13,12.99,12.99,12.99,12.99,12.99,12.98,12.98,12.99,12.99,12.99,12.97,12.97,12.97,12.98,13,12.98,12.98,12.98,12.99,12.97,12.99,12.98,12.98,12.98,12.99,13,12.99,12.99,12.99,12.99,12.99,12.98,12.97,12.97,12.98,13,12.99,12.98,12.98,13,13,12.99,12.99,12.99,12.97,12.99,12.99,12.99,12.99,12.97,12.99,12.99,12.99,12.99,13,13.01,12.99,12.99,12.99,12.97,12.97,13.01,13,13,12.98,12.97,13,12.99,12.99,12.99,12.99,13,13,13.01,12.99,12.99,13,12.99,12.99,13,13,13,12.98,12.98,13.01,13.01,13.01,12.99,12.99,13,13,13.01,13,13,12.99,12.99,12.99,13.01,12.99,13,13,13,13,13,12.98,12.98,12.99,13.01,13,13,13,13,13.01,12.99,13.01,13.01,13.01,13.15,13.07,13.13,13.06,13.05,13.06,13.01,13.01,13.01,13.01,13.03,12.99,13.01,13.01,13.01,13.01,13.02,13.01,13.01,12.99,12.99,13.19,13.03,13.03,13.03,13.03,13.01,12.99,12.99,12.99,12.99,13,12.96,12.96,12.96,12.96,12.98,12.99,12.99,12.99,12.99,13,12.98,12.98,12.98,12.98,12.99,12.97,12.97,12.97,12.97,12.98,13,13,13,13,13,12.98,12.97,12.97,12.97,12.97,12.99,12.98,12.98,12.98,12.98,13.01,13,13,13,13,13.01,13,13,13,13,13.27,13.07,13.07,13.07,13.07,13.06,13.01,13.01,13.01,13.01,13.01,13.01,13,13,13,12.98,13.01,13,13,13,12.99,13.01,13.01,13.01,13.01,13,13.01,13.01,13,13,13,13.01,13.01,13.01,13.01,12.98,13,13,13,13,12.99,13.01,13,13,13,13.01,13.01,13.01,12.99,12.99,13.01,13.01,13.01,13,13,13.01,13.01,13.01,12.99,13.01,13.01,13,13.02,13,13,13.01,13.01,13.02,13.01,13.01,13.01,13.01,13.02,13.01,13.01,13.01,13.01,13.02,13.01,13.01,12.99,12.99,13,13.01,13.01,13.01,13.01,13.01,13.01,13.02,12.99,12.99,12.99,13.01,13,12.97,12.97,12.97,12.99,12.99,12.99,12.99,12.99,13,13,13,13,13,13.01,12.99,12.99,12.99,12.99,13,12.99,12.99,12.99,12.99,13,12.99,13,13,13,13.01,13,12.97,12.97,12.98,12.98,13,12.99,12.99,12.99,12.99,13,13,13,13,13,13.02,13,13,13,13,13.01,13.01,13.01,13,13,13.01,12.97,12.97,12.97,12.97,12.99,12.98,12.98,12.99,12.99,13,12.97,12.97,12.97,12.98,12.98,13,12.99,12.99,12.99,12.99,12.96,12.94,12.94,12.94,12.94,12.98,12.97,12.97,12.97,13.01,13,13,13,13,13,13.02,13,13.01,13.01,13.01,13.02,13.01,13.01,13,13,13.01,13,13,13.01,13.01,12.99,13.01,13.01,13.01,13.01,13.01,13.02,13.01,13.01,13,13.01,13.03,13.01,13.01,13.01,12.99,13,12.99,12.98,12.98,13,13.02,13.01,13.01,13.01,13.01,13.02,13.01,13.01,13.01,12.99,13,13,13,13,13.02,13.03,12.99,13.01,13.01,12.99,12.99,13.02,13,12.99,12.97,12.97,13.01,12.99,12.99,12.96,12.96,12.99,12.99,12.99,12.98,12.98,12.99,12.99,12.99,12.99,12.99,13,13,13,12.97,12.97,12.99,13,13,12.98,12.98,12.98,12.99,12.97,12.97,12.97,12.97,13,12.99,12.96,12.96,12.96,12.99,12.99,13,13,13,13.01,13,12.98,12.98,12.98,13,13,12.99,12.99,12.99,13,13,13,13,13,13.01,12.98,12.97,12.97,12.97,12.97,13.01,12.97,12.97,12.97,12.97,13.01,13,13,13,13,13.01,13,13,13,13,13.01,12.98,12.98,12.98,12.98,13.02,13.01,13.01,13.01,13.01,13.01,12.97,12.96,12.97,12.97,12.99,13.01,13.01,13.01,13.01,13.02,12.99,12.99,12.99,12.99,12.99,13.01,13,13,13,13,13.02,13.02,13.01,13,13,13.01,13,13,13.01,13.01,13.29,13.07,13.07,13.07,13.07,13.06,13.01,13.01,13.01,13.01,13.03,13.01,13.01,13.01,13.01,12.99,12.98,12.98,12.98,12.98,13.02,13.01,13,13,13.01,13,13,12.98,12.98,12.98,12.99,12.99,12.98,12.98,12.98,12.97,13,13,13,12.99,13,13.01,12.99,13,13,13.01,13.02,13,13,13,12.98,12.99,12.99,12.97,13,13,13,12.99,12.98,12.98,12.97,12.97,12.98,12.98,12.98,12.97,12.97,13,13,13,12.97,12.97,12.99,12.99,12.99,12.97,12.97,12.98,12.98,12.98,13.01,13.01,13.01,13,13,13,13,13.02,12.98,12.98,12.96,12.96,12.97,13.02,13.01,12.99,12.99,12.99,13.02,13.01,13,13,13,13.01,13,13.01,13.01,13,13.01,13,13.01,13.01,13.01,13.01,13.01,13.01,13.01,13.01,13.02,13.01,12.98,12.98,12.98,12.99,13.01,12.98,12.97,12.97,12.97,13.01,13.01,13.01,13.01,13.01,13.02,13.01,13.01,13.01,13.01,13.01,12.98,12.98,12.98,12.98,13.01,13.01,13.01,13.01,13.01,13.03,13.01,13.01,13.01,13.01,13.03,13.01,13.01,13.01,13.01,13.01,13.02,13.01,13.01,13,13.01,13.01,13,13,13,13,13.03,13.01,13.01,13.01,13.02,13.03,13.02,13.01,13,13,12.99,12.96,12.96,12.96,12.96,12.99,12.99,12.99,12.99,12.99,13.01,12.98,12.98,12.98,12.98,13.09,13.16,13.16,13.16,13.16,13.2,13.22,13.21,13.21,13.21,13.2,13.19,13.17,13.17,13.17,13.19,13.2,13.19,13.19,13.19,13.17,13.21,13.21,13.21,13.21,13.21,13.22,13.21,13.14,13.01,13.01,13.01,13.01,13.01,13.01,13.01,13.02,12.99,13,13.01,12.98,12.98,13.02,13.01,13.01,12.99,12.99,13.01,13,13,13.01,13.01,13.02,13.02,13.01,12.99,12.99,13,12.99,12.99,13.01,13.01,13.02,13.01,13,13,13,13.02,13.01,13.01,13.01,13.01,13.02,13.01,13.01,12.99,12.99,12.99,13.02,13.01,13.01,13.01,13.01,13,12.99,12.97,12.97,12.97,13.01,13.01,13.01,13.01,13.01,13.01,13,13.01,13.01,13.01,13.03,13.01,13.04,13.09,13.09,13.12,13.15,13.15,13.15,13.15,13.16,13.15,13.14,13.18,13.18,13.18,13.22,13.22,13.22,13.22,13.22,13.22,13.19,13.19,13.19,13.19,13.21,13.21,13.21,13.21,13.21,13.24,13.23,13.23,13.22,13.2,13.22,13.18,13.18,13.18,13.17,13.18,13.2,13.2,13.2,13.2,13.21,13.17,13.17,13.17,13.17,13.17,13.2,13.19,13.19,13.19,13.19,13.17,13.15,13.15,13.14,13.21,13.22,13.2,13.2,13.2,13.2,13.21,13.2,13.2,13.2,13.2,13.47,13.27,13.27,13.27,13.27,13.26,13.21,13.21,13.21,13.21,13.2,13.19,13.18,13.18,13.18,13.19,13.2,13.21,13.21,13.2,13.21,13.23,13.21,13.21,13.21,13.2,13.2,13.18,13.18,13.18,13.19,13.21,13.21,13.21,13.21,13.2,13.21,13.2,13.2,13.2,13.21,13.21,13.2,13.2,13.2,13.21,13.22,13.22,13.21,13.22,13.22,13.23,13.21,13.21,13.22,13.22,13.22,13.23,13.22,13.21,13.18,13.18,13.2,13.19,13.19,13.19,13.19,13.19,13.18,13.18,13.18,13.17,13.21,13.2,13.2,13.21,13.21,13.23,13.22,13.22,13.19,13.19,13.2,13.21,13.22,13.22,13.22,13.22,13.22,13.22,13.17,13.17,13.17,13.22,13.21,13.2,13.2,13.2,13.23,13.22,13.22,13.22,13.22,13.23,13.22,13.2,13.2,13.2,13.2,13.22,13.22,13.22,13.22,13.22,13.18,13.17,13.17,13.17,13.19,13.2,13.19,13.19,13.19,13.19,13.19,13.19,13.19,13.18,13.18,13.21,13.18,13.18,13.19,13.19,13.21,13.19,13.19,13.19,13.19,13.2,13.2,13.2,13.2,13.2,13.21,13.16,13.16,13.17,13.17,13.2,13.21,13.21,13.21,13.21,13.22,13.2,13.2,13.2,13.2,13.2,13.19,13.18,13.18,13.18,13.18,13.19,13.18,13.18,13.19,13.21,13.22,13.21,13.21,13.21,13.21,13.2,13.22,13.22,13.22,13.22,13.21,13.2,13.2,13.2,13.2,13.23,13.2,13.2,13.2,13.2,13.22,13.17,13.17,13.17,13.17,13.2,13.23,13.22,13.22,13.22,13.21,13.22,13.22,13.21,13.21,13.21,13.2,13.19,13.19,13.18,13.18,13.21,13.21,13.21,13.22,13.22,13.23,13.22,13.21,13.21,13.21,13.22,13.22,13.22,13.22,13.22,13.23,13.2,13.2,13.22,13.22,13.22,13.2,13.2,13.2,13.2,13.2,13.22,13.22,13.22,13.22,13.22,13.23,13.22,13.22,13.2,13.2,13.22,13.21,13.21,13.2,13.2,13.21,13.18,13.18,13.21,13.21,13.22,13.22,13.22,13.2,13.19,13.18,13.2,13.2,13.16,13.17,13.17,13.21,13.2,13.17,13.17,13.17,13.2,13.19,13.19,13.19,13.19,13.21,13.2,13.18,13.18,13.18,13.19,13.19,13.18,13.18,13.18,13.19,13.4,13.4,13.4,13.4,13.41,13.39,13.39,13.39,13.39,13.4,13.4,13.37,13.37,13.37,13.37,13.41,13.41,13.41,13.41,13.41,13.42,13.39,13.39,13.39,13.39,13.4,13.41,13.41,13.41,13.41,13.42,13.41,13.41,13.41,13.41,13.42,13.4,13.4,13.4,13.4,13.41,13.39,13.39,13.39,13.39,13.4,13.4,13.39,13.39,13.39,13.4,13.41,13.4,13.4,13.4,13.4,13.42,13.41,13.41,13.41,13.41,13.43,13.42,13.42,13.42,13.42,13.41,13.39,13.39,13.39,13.39,13.42,13.41,13.41,13.41,13.41,13.63,13.48,13.48,13.48,13.48,13.48,13.43,13.42,13.42,13.42,13.39,13.41,13.41,13.41,13.41,13.42,13.43,13.42,13.42,13.42,13.4,13.41,13.38,13.38,13.38,13.43,13.43,13.42,13.42,13.42,13.4,13.42,13.43,13.43,13.42,13.42,13.43,13.42,13.42,13.43,13.4,13.41,13.42,13.41,13.42,13.42,13.42,13.44,13.4,13.4,13.41,13.41,13.42,13.4,13.41,13.41,13.41,13.42,13.41,13.41,13.39,13.39,13.41,13.4,13.4,13.38,13.38,13.41,13.41,13.4,13.39,13.39,13.41,13.41,13.41,13.39,13.39,13.4,13.41,13.41,13.41,13.41,13.41,13.41,13.4,13.39,13.39,13.39,13.42,13.41,13.41,13.41,13.41,13.42,13.41,13.38,13.38,13.38,13.41,13.41,13.4,13.41,13.41,13.42,13.42,13.38,13.38,13.38,13.4,13.41,13.38,13.38,13.38,13.39,13.4,13.39,13.39,13.39,13.4,13.41,13.41,13.41,13.41,13.41,13.42,13.39,13.39,13.39,13.39,13.42,13.42,13.41,13.41,13.41,13.43,13.42,13.42,13.42,13.42,13.43,13.41,13.41,13.41,13.41,13.42,13.42,13.42,13.42,13.42,13.42,13.41,13.41,13.41,13.41,13.42,13.39,13.4,13.4,13.39,13.39,13.4,13.39,13.39,13.4,13.41,13.43,13.42,13.42,13.42,13.42,13.42,13.41,13.41,13.41,13.41,13.44,13.42,13.42,13.42,13.43,13.44,13.43,13.43,13.42,13.42,13.43,13.41,13.41,13.41,13.41,13.43,13.4,13.4,13.4,13.42,13.43,13.44,13.43,13.42,13.41,13.41,13.4,13.39,13.39,13.39,13.41,13.42,13.41,13.41,13.4,13.39,13.4,13.39,13.39,13.39,13.39,13.42,13.4,13.41,13.41,13.41,13.42,13.39,13.4,13.4,13.38,13.4,13.39,13.39,13.39,13.41,13.41,13.39,13.38,13.38,13.38,13.38,13.4,13.4,13.4,13.39,13.4,13.41,13.41,13.41,13.41,13.4,13.43,13.42,13.42,13.41,13.41,13.59,13.48,13.44,13.47,13.47,13.48,13.41,13.41,13.42,13.42,13.43,13.41,13.41,13.39,13.39,13.39,13.41,13.4,13.5,13.4,13.4,13.4,13.39,13.41,13.41,13.4,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.39,13.39,13.38,13.42,13.42,13.42,13.42,13.42,13.43,13.4,13.42,13.42,13.42,13.42,13.43,13.42,13.42,13.42,13.42,13.43,13.42,13.42,13.42,13.42,13.43,13.4,13.41,13.41,13.41,13.43,13.42,13.42,13.42,13.43,13.43,13.42,13.42,13.42,13.42,13.43,13.41,13.41,13.41,13.41,13.43,13.42,13.42,13.42,13.42,13.42,13.41,13.39,13.39,13.39,13.39,13.42,13.42,13.42,13.42,13.4,13.42,13.42,13.41,13.42,13.42,13.43,13.43,13.43,13.43,13.4,13.4,13.41,13.41,13.4,13.4,13.4,13.39,13.39,13.39,13.39,13.65,13.54,13.47,13.47,13.47,13.48,13.4,13.39,13.39,13.41,13.39,13.4,13.4,13.4,13.4,13.38,13.41,13.4,13.4,13.4,13.4,13.42,13.41,13.41,13.41,13.41,13.43,13.41,13.41,13.41,13.41,13.43,13.41,13.41,13.41,13.41,13.42,13.41,13.41,13.39,13.38,13.39,13.39,13.39,13.39,13.38,13.38,13.41,13.4,13.4,13.42,13.42,13.43,13.42,13.42,13.39,13.39,13.41,13.4,13.4,13.42,13.42,13.42,13.4,13.4,13.39,13.39,13.41,13.42,13.42,13.39,13.39,13.42,13.43,13.43,13.39,13.39,13.41,13.41,13.4,13.41,13.41,13.42,13.41,13.41,13.41,13.41,13.4,13.43,13.41,13.42,13.42,13.42,13.44,13.42,13.42,13.42,13.42,13.42,13.43,13.43,13.43,13.43,13.43,13.42,13.42,13.42,13.42,13.44,13.42,13.41,13.41,13.41,13.42,13.41,13.42,13.42,13.42,13.43,13.42,13.42,13.42,13.42,13.42,13.44,13.43,13.43,13.43,13.43,13.44,13.41,13.41,13.41,13.41,13.41,13.4,13.4,13.4,13.4,13.42,13.42,13.4,13.39,13.39,13.41,13.41,13.41,13.4,13.4,13.41,13.4,13.4,13.41,13.41,13.55,13.47,13.47,13.47,13.47,13.43,13.4,13.39,13.39,13.39,13.39,13.42,13.41,13.41,13.41,13.41,13.42,13.41,13.41,13.41,13.41,13.41,13.41,13.41,13.41,13.41,13.41,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.41,13.41,13.41,13.42,13.44,13.43,13.43,13.43,13.41,13.4,13.39,13.39,13.39,13.42,13.42,13.41,13.41,13.4,13.4,13.42,13.42,13.42,13.42,13.4,13.42,13.42,13.42,13.42,13.41,13.42,13.41,13.41,13.4,13.41,13.42,13.41,13.41,13.41,13.4,13.4,13.42,13.4,13.4,13.38,13.37,13.41,13.4,13.4,13.39,13.4,13.42,13.43,13.43,13.42,13.42,13.43,13.42,13.42,13.43,13.43,13.44,13.43,13.43,13.42,13.42,13.44,13.43,13.42,13.43,13.43,13.44,13.42,13.42,13.4,13.4,13.4,13.41,13.4,13.42,13.42,13.42,13.44,13.43,13.42,13.42,13.42,13.43,13.43,13.41,13.41,13.41,13.44,13.43,13.43,13.43,13.43,13.44,13.43,13.42,13.41,13.4,13.41,13.41,13.42,13.42,13.42,13.43,13.41,13.38,13.38,13.38,13.4,13.41,13.41,13.41,13.41,13.41,13.43,13.41,13.41,13.41,13.41,13.41,13.4,13.4,13.41,13.41,13.41,13.41,13.41,13.41,13.41,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.43,13.42,13.42,13.42,13.42,13.43,13.41,13.41,13.41,13.41,13.42,13.4,13.4,13.4,13.4,13.4,13.42,13.42,13.41,13.41,13.42,13.4,13.39,13.39,13.39,13.39,13.8,13.48,13.48,13.48,13.48,13.47,13.42,13.42,13.42,13.42,13.41,13.42,13.41,13.4,13.41,13.43,13.41,13.41,13.41,13.41,13.43,13.42,13.42,13.42,13.42,13.41,13.43,13.42,13.43,13.42,13.41,13.43,13.42,13.42,13.42,13.41,13.43,13.42,13.42,13.42,13.42,13.44,13.43,13.43,13.43,13.42,13.44,13.43,13.43,13.43,13.41,13.42,13.43,13.43,13.43,13.41,13.42,13.42,13.42,13.42,13.4,13.41,13.43,13.43,13.42,13.4,13.4,13.45,13.43,13.43,13.43,13.43,13.44,13.43,13.43,13.43,13.43,13.43,13.42,13.42,13.43,13.43,13.42,13.4,13.4,13.41,13.4,13.42,13.39,13.39,13.41,13.41,13.42,13.41,13.41,13.38,13.38,13.39,13.41,13.41,13.41,13.41,13.42,13.41,13.41,13.41,13.41,13.41,13.42,13.4,13.38,13.38,13.38,13.41,13.4,13.42,13.42,13.42,13.42,13.41,13.4,13.4,13.4,13.42,13.42,13.42,13.42,13.42,13.42,13.41,13.4,13.4,13.4,13.42,13.42,13.4,13.4,13.4,13.41,13.41,13.41,13.41,13.41,13.42,13.42,13.42,13.42,13.42,13.42,13.4,13.39,13.39,13.39,13.39,13.43,13.39,13.39,13.39,13.39,13.4,13.41,13.41,13.41,13.41,13.43,13.42,13.42,13.42,13.41,13.43,13.4,13.4,13.4,13.4,13.42,13.43,13.43,13.43,13.43,13.44,13.42,13.42,13.42,13.42,13.44,13.41,13.41,13.41,13.41,13.41,13.41,13.4,13.4,13.4,13.4,13.43,13.43,13.43,13.43,13.43,13.43,13.42,13.42,13.42,13.42,13.43,13.42,13.42,13.42,13.41,13.42,13.43,13.43,13.43,13.42,13.42,13.43,13.43,13.43,13.43,13.42,13.43,13.43,13.43,13.43,13.42,13.43,13.43,13.43,13.43,13.42,13.42,13.41,13.41,13.41,13.43,13.45,13.43,13.43,13.43,13.41,13.42,13.41,13.41,13.39,13.38,13.39,13.4,13.4,13.4,13.42,13.42,13.41,13.41,13.41,13.41,13.42,13.42,13.42,13.42,13.4,13.4,13.43,13.41,13.41,13.42,13.42,13.43,13.41,13.41,13.41,13.41,13.42,13.42,13.42,13.41,13.41,13.43,13.42,13.42,13.42,13.42,13.43,13.4,13.4,13.37,13.37,13.39,13.4,13.4,13.37,13.37,13.39,13.41,13.41,13.42,13.41,13.42,13.42,13.42,13.41,13.41,13.41,13.44,13.43,13.41,13.41,13.41,13.43,13.42,13.42,13.42,13.41,13.43,13.42,13.41,13.41,13.42,13.44,13.42,13.4,13.4,13.4,13.42,13.41,13.43,13.43,13.43,13.43,13.42,13.39,13.4,13.4,13.41,13.41,13.41,13.41,13.41,13.43,13.41,13.43,13.43,13.43,13.43,13.43,13.43,13.43,13.43,13.43,13.43,13.43,13.43,13.43,13.43,13.45,13.43,13.43,13.43,13.42,13.44,13.43,13.43,13.43,13.43,13.76,13.46,13.45,13.45,13.45,13.45,13.43,13.43,13.44,13.44,13.45,13.44,13.44,13.44,13.44,13.45,13.43,13.43,13.42,13.42,13.42,13.41,13.39,13.4,13.39,13.39,13.43,13.42,13.42,13.42,13.42,13.4,13.39,13.39,13.39,13.39,13.42,13.4,13.41,13.41,13.41,13.4,13.4,13.4,13.4,13.4,13.4,13.4,13.4,13.4,13.4,13.42,13.41,13.41,13.41,13.41,13.4,13.38,13.38,13.38,13.42,13.43,13.41,13.41,13.41,13.41,13.42,13.42,13.41,13.41,13.41,13.39,13.4,13.39,13.4,13.39,13.41,13.4,13.39,13.39,13.39,13.42,13.43,13.41,13.41,13.41,13.42,13.43,13.42,13.42,13.42,13.42,13.43,13.4,13.4,13.4,13.41,13.42,13.43,13.43,13.43,13.42,13.42,13.4,13.39,13.39,13.41,13.41,13.43,13.42,13.42,13.43,13.43,13.43,13.42,13.42,13.4,13.4,13.42,13.41,13.42,13.42,13.42,13.44,13.42,13.42,13.42,13.42,13.43,13.42,13.42,13.43,13.43,13.44,13.42,13.42,13.42,13.42,13.43,13.42,13.42,13.42,13.42,13.42,13.43,13.42,13.41,13.41,13.41,13.43,13.42,13.41,13.41,13.41,13.43,13.43,13.43,13.43,13.42,13.44,13.43,13.41,13.4,13.4,13.43,13.42,13.43,13.43,13.43,13.44,13.42,13.42,13.42,13.42,13.43,13.42,13.43,13.43,13.43,13.44,13.44,13.44,13.44,13.43,13.43,13.43,13.39,13.39,13.39,13.39,13.41,13.41,13.41,13.41,13.41,13.43,13.39,13.39,13.39,13.39,13.41,13.41,13.41,13.41,13.4,13.41,13.41,13.4,13.4,13.41,13.42,13.41,13.41,13.41,13.41,13.42,13.42,13.42,13.42,13.42,13.42,13.37,13.35,13.35,13.36,13.36,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.41,13.41,13.41,13.4,13.4,13.4,13.43,13.43,13.42,13.42,13.42,13.43,13.43,13.42,13.42,13.42,13.42,13.43,13.42,13.42,13.42,13.42,13.43,13.42,13.41,13.41,13.41,13.42,13.43,13.42,13.42,13.43,13.42,13.45,13.43,13.43,13.42,13.42,13.44,13.43,13.43,13.43,13.43,13.44,13.42,13.42,13.43,13.41,13.43,13.42,13.42,13.42,13.43,13.64,13.49,13.49,13.49,13.5,13.46,13.42,13.41,13.41,13.43,13.43,13.45,13.44,13.44,13.44,13.44,13.45,13.44,13.44,13.44,13.44,13.45,13.44,13.44,13.44,13.44,13.45,13.42,13.42,13.44,13.44,13.46,13.44,13.44,13.44,13.44,13.45,13.44,13.45,13.44,13.44,13.45,13.44,13.43,13.43,13.43,13.43,13.45,13.44,13.44,13.44,13.44,13.45,13.43,13.41,13.41,13.41,13.43,13.43,13.42,13.42,13.42,13.43,13.42,13.41,13.41,13.41,13.42,13.41,13.43,13.43,13.43,13.45,13.42,13.42,13.42,13.43,13.64,13.52,13.47,13.47,13.47,13.47,13.44,13.43,13.43,13.44,13.44,13.44,13.43,13.43,13.43,13.43,13.44,13.42,13.42,13.42,13.42,13.43,13.43,13.43,13.43,13.43,13.44,13.43,13.43,13.43,13.43,13.44,13.43,13.43,13.43,13.43,13.44,13.43,13.43,13.43,13.44,13.44,13.43,13.43,13.43,13.43,13.44,13.44,13.44,13.43,13.43,13.43,13.43,13.43,13.43,13.43,13.44,13.45,13.43,13.43,13.43,13.44,13.43,13.43,13.42,13.42,13.42,13.42,13.39,13.39,13.39,13.39,13.43,13.43,13.43,13.43,13.44,13.44,13.43,13.43,13.43,13.43,13.46,13.44,13.44,13.44,13.43,13.43,13.44,13.44,13.44,13.44,13.43,13.45,13.44,13.44,13.44,13.44,13.45,13.44,13.44,13.44,13.41,13.44,13.44,13.44,13.44,13.44,13.45,13.44,13.44,13.44,13.44,13.45,13.44,13.44,13.44,13.44,13.45,13.45,13.45,13.45,13.42,13.43,13.43,13.43,13.43,13.42,13.42,13.45,13.42,13.41,13.4,13.39,13.43,13.42,13.42,13.4,13.4,13.42,13.41,13.41,13.41,13.41,13.43,13.43,13.42,13.43,13.43,13.43,13.42,13.42,13.43,13.42,13.43,13.42,13.42,13.42,13.42,13.43,13.43,13.43,13.43,13.43,13.43,13.44,13.43,13.4,13.4,13.4,13.43,13.43,13.42,13.42,13.42,13.43,13.44,13.43,13.43,13.43,13.44,13.42,13.42,13.41,13.41,13.42,13.41,13.4,13.4,13.4,13.42,13.43,13.41,13.41,13.41,13.42,13.42,13.4,13.4,13.39,13.39,13.43,13.43,13.43,13.43,13.43,13.44,13.42,13.42,13.42,13.42,13.44,13.44,13.44,13.44,13.44,13.45,13.44,13.43,13.43,13.43,13.44,13.43,13.43,13.43,13.43,13.44,13.44,13.44,13.44,13.44,13.45,13.44,13.43,13.43,13.43,13.44,13.42,13.42,13.42,13.42,13.42,13.45,13.43,13.42,13.43,13.43,13.45,13.44,13.44,13.44,13.44,13.51,13.44,13.44,13.44,13.44,13.46,13.45,13.45,13.44,13.95,13.58,13.57,13.57,13.56,13.48,13.43,13.44,13.44,13.44,13.44,13.46,13.44,13.44,13.44,13.44,13.41,13.44,13.43,13.43,13.43,13.43,13.43,13.41,13.41,13.42,13.4,13.42,13.41,13.41,13.41,13.43,13.44,13.42,13.42,13.42,13.42,13.43,13.42,13.42,13.42,13.42,13.43,13.43,13.43,13.43,13.4,13.41,13.4,13.4,13.4,13.39,13.39,13.41,13.41,13.41,13.4,13.4,13.42,13.41,13.41,13.43,13.43,13.44,13.43,13.42,13.41,13.41,13.43,13.43,13.43,13.43,13.43,13.44,13.43,13.44,13.43,13.43,13.44,13.43,13.43,13.43,13.43,13.44,13.42,13.42,13.42,13.42,13.42,13.44,13.43,13.43,13.43,13.43,13.44,13.44,13.4,13.4,13.4,13.42,13.42,13.41,13.41,13.41,13.76,13.5,13.5,13.5,13.5,13.48,13.43,13.43,13.43,13.43,13.44,13.43,13.44,13.44,13.44,13.46,13.44,13.43,13.43,13.43,13.43,13.45,13.42,13.43,13.43,13.43,13.44,13.44,13.44,13.44,13.44,13.44,13.42,13.42,13.42,13.42,13.44,13.44,13.45,13.44,13.44,13.46,13.45,13.45,13.45,13.45,13.46,13.42,13.42,13.42,13.42,13.43,13.42,13.42,13.42,13.42,13.42,13.43,13.42,13.42,13.42,13.42,13.43,13.42,13.42,13.42,13.42,13.45,13.45,13.44,13.44,13.44,13.43,13.42,13.42,13.42,13.42,13.44,13.43,13.42,13.42,13.4,13.41,13.43,13.43,13.42,13.42,13.42,13.42,13.42,13.42,13.42,13.43,13.44,13.43,13.43,13.43,13.42,13.44,13.43,13.43,13.42,13.39,13.42,13.41,13.41,13.41,13.41,13.43,13.42,13.42,13.42,13.42,13.42,13.41,13.41,13.41,13.39,13.26,13.23,13.23,13.23,13.23,13.24,13.23,13.23,13.23,13.23,13.23,13.24,13.22,13.22,13.21,13.21,13.23,13.22,13.22,13.23,13.23,13.23,13.22,13.23,13.24,13.24,13.24,13.22,13.22,13.23,13.23,13.24,13.23,13.23,13.23,13.23,13.23,13.23,13.22,13.2,13.2,13.22,13.23,13.23,13.23,13.23,13.23,13.25,13.24,13.23,13.22,13.22,13.24,13.22,13.23,13.23,13.23,13.25,13.24,13.24,13.24,13.24,13.24,13.22,13.21,13.2,13.21,13.23,13.23,13.23,13.23,13.23,13.25,13.23,13.22,13.22,13.22,13.23,13.24,13.24,13.24,13.24,13.24,13.25,13.24,13.24,13.24,13.24,13.24,13.24,13.24,13.24,13.24,13.25,13.24,13.24,13.24,13.24,13.25,13.24,13.23,13.24,13.24,13.25,13.22,13.22,13.22,13.22,13.23,13.22,13.22,13.22,13.22,13.23,13.23,13.23,13.23,13.23,13.23,13.23,13.23,13.22,13.22,13.3,13.49,13.48,13.48,13.48,13.47,13.47,13.47,13.47,13.47,13.47,13.48,13.47,13.47,13.47,13.47,13.47,13.45,13.44,13.44,14.28,14.39,14.01,14.01,14.01,14.01,13.97,13.89,13.89,13.89,13.89,13.92,13.91,13.91,13.91,13.91,13.93,13.93,13.93,13.93,13.93,13.91,13.93,13.93,13.93,13.93,13.92,13.93,13.92,13.92,13.92,13.92,13.92,13.91,13.91,13.91,13.92,13.92,13.9,13.9,13.89,13.92,13.93,13.92,13.92,13.92,13.92,13.93,13.91,13.91,13.94,13.96,13.98,14,14,14,13.97,13.97,13.99,13.99,14,14,14,14.02,14.01,14.01,14,14,14.01,14,14.01,14.01,14.01,14.03,14.02,14.02,14.01,22.35,21.45,15.23,15.23,15.22,15.22,15.23,15.24,15.24,25.76,27.73,26.82,15.39,15.22,15.22,15.22,15.22,15.22,15.21,15.19,15.19,15.2,15.24,15.24,15.24,15.24,15.24,15.55,15.32,15.33,15.33,15.33,15.31,15.27,15.27,15.27,15.27,15.29,15.28,15.28,15.27,15.27,15.29,15.27,15.26,15.26,15.23,15.24,15.23,15.25,15.25,15.25,15.25,15.28,15.25,15.25,15.25,15.25,15.28,15.25,15.25,15.25,15.25,15.28,15.25,15.22,15.23,15.23,15.25,15.23,15.23,15.24,15.23,15.28,15.25,15.25,15.25,15.25,15.27,15.27,15.26,15.26,15.27,15.27,15.22,15.21,15.21,15.21,15.22,15.25,15.25,15.25,15.25,15.25,15.27,15.25,15.25,15.25,15.25,15.29,15.28,15.28,15.26,15.25,15.27,15.27,15.26,15.26,15.26,15.28,15.28,15.28,15.27,15.27,15.27,15.28,15.28,15.28,15.28,15.27,15.27,15.28,15.25,15.25,15.27,15.26,15.26,15.27,15.27,15.28,15.27,15.27,15.27,15.27,15.24,15.29,15.28,15.28,15.27,15.25,15.27,15.26,15.25,15.23,15.27,15.28,15.28,15.28,15.28,15.25,15.27,15.27,15.26,15.24,15.26,15.29,15.28,15.28,15.28,15.29,15.31,15.29,15.3,15.28,15.27,15.28,15.27,15.27,15.28,15.25,15.26,15.26,15.26,15.26,15.27,15.26,15.27,15.25,15.25,15.27,15.27,15.29,15.27,15.26,15.26,15.26,15.26,15.25,15.25,15.25,15.25,15.26,15.25,15.26,15.26,15.24,15.24,15.24,15.24,15.26,15.26,22.56,27.76,16.05,15.22,15.22,15.23,15.19,15.19,15.26,15.26,15.27,15.23,15.23,15.24,15.24,15.24,15.28,15.27,15.27,15.24,15.24,15.26,15.25,15.23,15.23,15.22,15.25,15.26,15.26,15.26,15.26,15.27,15.27,15.26,15.26,20.94,27.12,20.55,14.03,14.03,25.8,17.8,25.78,26.57,24.15,18.41,15.29,15.31,15.28,15.28,15.28,15.28,20.44,24.89,15.2,15.2,15.2,15.25,15.24,15.24,15.25,15.25,15.26,15.25,15.25,15.25,15.25,15.26,15.26,15.25,14.72,13.85,13.86,13.85,13.85,13.85,13.85,13.86,13.83,13.83,13.83,13.83,13.85,13.84,13.84,13.84,13.84,13.84,13.82,13.81,13.81,13.81,13.81,13.84,13.83,13.83,13.83,13.83,13.86,13.85,13.85,13.85,13.85,13.85,13.84,13.84,13.84,13.84,13.87,13.86,13.86,13.86,13.86,13.86,13.86,13.86,13.86,13.86,13.87,13.86,13.85,13.85,13.85,13.86,13.85,13.85,13.85,13.85,13.84,13.86,13.85,13.85,13.85,13.83,13.84,13.83,13.83,13.83,13.84,13.84,13.82,13.82,13.86,13.85,13.87,13.86,13.86,13.86,13.86,13.84,13.84,13.84,13.84,13.84,13.85,13.84,13.84,13.84,13.83,13.84,13.84,13.84,13.84,13.82,13.84,13.84,13.84,13.84,13.84,13.83,13.86,13.84,13.84,13.84,13.84,13.85,13.84,13.84,13.82,13.82,13.84,13.84,13.84,13.85,13.85,13.86,13.84,13.84,13.82,13.82,14.09,13.91,13.91,13.88,13.89,13.89,13.85,13.85,13.85,13.85,13.86,13.85,13.84,13.83,13.83,13.85,13.85,13.85,13.85,13.85,13.85,13.86,13.85,13.85,13.85,13.85,13.86,13.85,13.84,13.84,13.84,13.85,13.85,13.82,13.82,13.82,13.85,13.85,13.83,13.83,13.83,13.84,13.85,13.85,13.85,13.86,13.86,13.85,13.85,13.85,13.85,13.86,13.85,13.85,13.85,13.85,13.85,13.87,13.86,13.85,13.85,13.85,13.86,13.82,13.82,13.82,13.82,13.85,13.82,13.83,13.83,13.83,13.88,13.85,13.85,13.85,13.85,13.86,13.85,13.86,13.85,13.85,13.86,13.86,13.86,13.86,13.86,13.87,13.84,13.84,13.84,13.84,13.85,13.84,13.84,13.84,13.84,13.84,13.85,13.84,13.84,13.84,13.86,13.88,13.87,13.87,13.87,13.86,13.86,13.86,13.86,13.86,13.86,13.85,13.84,13.84,13.84,13.84,13.86,13.84,13.84,13.84,13.84,13.85,13.84,13.84,13.84,13.84,13.85,13.85,13.85,13.85,13.84,13.85,13.85,13.85,13.84,13.85,13.82,13.86,13.84,13.84,13.84,13.85,13.86,13.85,13.85,13.85,13.85,13.85,13.84,13.84,13.84,13.85,13.86,13.85,13.85,13.85,13.84,13.85,13.85,13.85,13.85,13.84,13.85,13.85,13.85,13.85,13.83,13.84,13.84,13.84,13.85,13.82,13.83,13.85,13.85,13.85,13.85,13.85,13.86,13.84,13.84,13.85,13.85,13.86,13.85,13.85,13.85,13.85,13.86,13.85,13.85,13.85,13.84,13.86,13.85,13.85,13.84,13.84,13.87,13.85,13.85,13.85,13.85,13.86,13.84,13.84,13.86,13.86,13.87,13.85,13.85,13.84,13.84,13.85,13.85,13.85,13.86,13.86,13.86,13.86,13.85,13.82,13.82,13.82,13.86,13.86,13.85,13.85,13.85,13.87,13.86,13.86,13.86,13.86,13.87,13.86,13.86,13.86,13.86,13.87,13.86,13.86,13.86,13.86,13.87,13.85,13.84,13.84,13.84,13.85,13.87,13.82,13.81,13.81,13.81,13.85,13.84,13.84,13.84,13.84,13.86,13.86,13.85,13.86,13.86,13.87,13.84,13.84,13.84,13.84,13.85,13.84,13.84,13.84,13.84,13.85,13.82,13.81,13.81,13.81,13.86,13.84,13.84,13.84,13.85,13.85,13.85,13.85,13.85,13.84,13.84,13.85,13.84,13.84,13.84,13.84,13.85,13.83,13.83,13.83,13.82,13.86,13.85,13.85,13.85,13.85,13.86,13.86,13.86,13.86,13.83,13.85,13.84,13.84,13.85,13.85,13.87,13.85,13.85,13.85,13.85,13.86,13.86,13.85,13.86,13.86,13.85,13.86,13.85,13.85,13.85,13.86,13.86,13.85,13.85,13.85,13.86,13.88,13.86,13.86,13.86,13.85,13.86,13.85,13.85,13.85,13.83,13.85,13.85,13.85,13.85,13.84,13.85,13.84,13.84,13.84,13.86,13.88,13.85,13.85,13.85,13.86,14,14.08,13.93,13.93,13.91,13.91,13.87,13.85,14.18,14.04,14.04,14.05,14.04,14,13.99,13.99,13.99,13.98,13.98,13.96,13.96,13.99,13.98,13.98,13.95,13.95,13.98,13.99,13.99,13.98,13.98,14,13.99,13.99,14,14,14,13.98,13.97,13.96,13.95,13.97,13.99,13.99,13.96,13.96,13.96,13.99,13.98,13.98,13.98,13.98,14,14,13.99,13.96,13.96,13.98,13.97,13.94,13.94,13.94,13.97,13.97,13.97,13.97,13.97,13.98,13.98,13.98,13.98,13.98,13.99,13.97,13.97,13.97,13.97,13.98,13.98,13.95,13.94,13.94,13.95,13.98,13.95,13.95,13.95,13.95,13.96,13.98,13.98,13.98,13.98,14,13.98,13.98,13.98,13.98,13.99,13.98,13.98,13.98,13.98,13.99,13.98,13.98,13.98,13.98,13.99,13.98,13.98,13.98,13.98,13.99,13.96,13.96,13.96,13.96,13.96,13.99,13.98,13.98,13.98,13.98,13.98,13.97,13.97,13.97,13.97,13.99,13.97,13.97,13.97,13.97,13.99,13.98,13.97,13.97,13.97,14,13.98,13.98,13.98,13.98,14,13.99,13.99,13.99,13.99,13.99,13.96,13.96,13.96,13.96,13.99,13.97,13.97,13.98,13.98,13.99,14.01,13.99,13.99,13.99,13.98,13.99,13.99,13.99,13.99,13.99,13.99,13.97,13.97,13.97,13.98,13.99,13.99,13.99,13.99,14,14.01,13.99,13.99,13.99,14,14.01,13.99,13.99,13.99,13.97,13.98,14,14,13.99,13.99,14,13.99,13.99,13.99,13.97,13.97,13.98,13.96,13.96,14,14,14.01,13.99,13.99,14.55,13.91,13.93,13.93,13.93,13.93,13.87,13.86,13.84,13.87,13.86,13.86,13.89,13.87,13.87,13.87,13.87,13.87,13.87,13.87,13.83,13.83,13.84,13.84,13.84,13.9,13.86,13.87,13.87,13.88,13.87,13.87,13.87,13.88,13.87,13.87,13.87,13.87,13.88,13.88,13.84,13.84,13.84,13.86,13.87,13.87,13.87,13.87,13.87,13.84,13.86,13.86,13.86,13.88,13.87,13.87,13.87,13.87,13.88,13.87,13.87,13.87,13.87,13.88,13.87,13.87,13.87,13.87,13.88,13.87,13.85,13.85,13.85,13.85,13.87,13.88,13.88,13.88,13.88,13.88,13.87,13.87,13.87,13.87,13.88,13.87,13.87,13.87,13.87,13.88,13.87,13.87,13.87,13.87,13.89,13.86,13.85,13.85,13.85,13.88,13.87,13.86,13.86,13.86,13.87,13.88,13.88,13.88,13.88,13.89,13.85,13.85,13.85,13.85,13.85,13.89,13.88,13.88,13.88,13.88,13.89,13.88,13.88,13.88,13.88,13.89,13.87,13.87,13.87,13.88,13.9,13.89,13.89,13.88,13.89,13.89,13.88,13.88,13.88,13.88,13.87,13.88,13.89,13.89,13.89,13.88,13.88,13.86,13.86,13.86,13.89,13.89,13.89,13.89,13.89,13.87,14.26,13.93,13.93,13.93,13.93,13.89,13.86,13.86,13.86,13.87,13.88,13.84,13.84,13.84,13.87,13.87,13.85,13.85,13.85,13.83,13.84,13.86,13.86,13.86,13.85,13.86,13.86,13.86,13.86,13.87,13.87,13.89,13.87,13.87,13.84,13.84,13.87,13.87,13.87,13.86,13.86,13.88,13.87,13.87,13.87,13.87,13.88,13.87,13.87,13.86,13.86,13.89,13.88,13.87,13.84,13.84,13.86,13.86,13.86,13.84,13.84,13.85,13.87,13.88,13.86,13.86,13.87,13.87,13.87,13.87,13.86,13.87,13.88,13.87,13.87,13.87,13.87,13.89,13.87,13.87,13.87,13.87,13.88,13.88,13.88,13.88,13.88,13.89,13.87,13.85,13.85,13.85,13.87,13.88,13.85,13.86,13.86,13.88,13.88,13.87,13.87,13.87,13.88,13.88,13.88,13.88,13.88,13.88,13.89,13.88,13.88,13.88,13.88,13.89,13.88,13.88,13.89,13.89,13.9,13.88,13.88,13.88,13.88,13.89,13.87,13.87,13.87,13.86,13.88,13.88,13.88,13.88,13.88,13.89,13.88,13.88,13.88,13.88,13.9,13.89,13.89,13.88,13.88,13.89,13.88,13.89,13.89,13.89,13.9,13.88,13.88,13.88,13.88,13.88,13.88,13.87,13.87,13.87,13.87,13.88,13.85,13.86,13.86,13.86,13.87,13.87,13.87,13.87,13.87,13.87,13.87,13.87,13.87,13.87,13.86,13.86,13.86,13.86,13.86,13.89,13.87,13.87,13.87,13.86,13.86,13.87,13.86,13.86,13.86,13.86,13.87,13.87,13.87,13.87,13.85,13.88,13.87,13.87,13.87,13.88,13.88,13.86,13.87,13.87,13.87,13.89,13.87,13.87,13.87,13.85,13.86,13.86,13.86,13.87,13.85,13.87,13.87,13.87,13.87,13.87,13.88,13.88,13.88,13.88,13.87,13.87,13.88,13.87,13.87,13.88,13.88,13.89,13.87,13.87,13.86,13.86,13.89,13.89,13.89,13.85,13.85,13.86,13.86,13.88,13.87,13.86,13.87,13.87,13.87,13.86,13.86,13.88,13.87,13.87,13.87,13.87,13.87,13.88,13.88,13.88,13.88,13.88,13.89,13.88,13.86,13.86,13.86,13.89,13.88,13.88,13.88,13.88,13.89,13.87,13.87,13.87,13.87,13.88,13.88,13.86,13.86,13.86,13.88,13.88,13.89,13.89,13.89,13.89,13.88,13.85,13.85,13.85,13.86,13.86,13.88,13.89,13.89,13.88,13.89,13.88,13.88,13.88,13.88,13.9,13.87,13.86,13.86,13.86,13.87,13.87,13.87,13.87,13.87,13.89,13.86,13.86,13.88,13.89,13.9,13.92,13.93,14.31,14.44,14.46,14.45,20.07,14.47,14.47,14.51,14.52,14.52,14.52,14.52,14.55,14.51,14.51,14.51,14.51,14.52,14.53,14.53,14.54,14.54,14.54,14.54,14.53,14.53,14.53,14.53,14.54,14.53,14.53,14.53,14.53,14.54,14.53,18.23,24.36,15.71,15.75,15.75,15.75,18.14,21.73,22.41,29.06,28.61,18.18,25.7,21.49,15.88,15.88,15.88,15.88,15.89,15.87,15.87,15.87,15.87,15.9,15.89,15.89,15.88,15.88,15.9,15.91,15.87,15.87,15.87,15.85,15.88,15.88,15.89,15.89,15.89,15.9,15.89,15.88,15.88,15.87,15.89,15.88,15.88,15.87,15.88,15.89,15.88,15.88,15.88,15.87,15.88,15.89,15.89,15.89,15.9,15.9,15.91,15.9,15.9,15.9,15.9,15.91,15.88,15.88,15.88,15.87,15.87,15.86,15.86,15.87,15.87,15.9,15.89,15.89,15.87,15.87,15.89,15.89,15.89,15.88,15.88,15.88,15.88,15.88,15.85,15.85,15.87,15.89,15.89,15.88,15.88,15.89,15.87,15.9,15.9,15.9,15.9,15.91,15.9,15.9,15.88,15.88,15.89,15.86,15.87,15.88,15.88,15.88,15.87,15.87,15.87,15.87,15.89,15.88,15.87,15.86,15.9,15.9,15.88,15.87,15.87,15.87,15.88,15.88,15.86,15.87,15.87,15.88,15.88,15.88,15.88,15.88,15.9,15.88,15.89,15.89,15.89,15.89,15.91,15.88,15.87,15.87,15.87,15.88,15.83,15.83,15.83,15.83,15.87,15.88,15.88,15.87,15.87,15.91,15.88,15.88,15.88,15.88,15.9,15.87,15.86,15.86,15.86,15.87,15.85,15.85,15.85,15.85,15.87,15.89,15.89,15.89,15.89,15.9,15.9,15.89,15.89,15.89,15.9,15.9,15.88,15.88,15.88,15.88,15.9,15.88,15.88,15.88,15.88,15.91,15.9,15.9,15.9,15.9,15.91,15.9,15.9,15.9,15.9,15.92,15.9,15.89,15.89,15.89,15.88,15.88,15.88,15.88,15.88,15.91,15.9,15.89,15.89,15.91,15.93,15.91,15.91,15.91,15.91,15.93,15.91,15.88,15.87,15.87,15.89,15.89,15.88,15.88,15.88,15.91,15.92,15.91,15.91,15.91,15.92,15.93,15.91,15.91,15.91,15.92,15.93,15.9,15.9,15.91,15.9,15.91,15.91,15.91,15.91,15.91,15.92,15.91,15.91,15.91,15.91,15.91,15.93,15.91,15.89,15.9,15.9,15.91,15.88,15.87,15.88,15.87,15.89,15.89,15.89,15.87,15.87,15.9,15.9,15.9,15.9,15.9,15.9,15.88,15.88,15.89,15.89,15.9,15.89,15.55,14.42,14.42,14.43,14.41,14.41,14.42,14.42,14.43,14.38,14.38,14.41,14.41,14.41,14.43,14.42,14.43,14.43,14.42,14.43,14.42,14.43,14.42,14.42,14.43,14.42,14.4,14.4,14.4,14.42,14.42,14.41,14.41,14.41,14.43,14.43,14.41,14.41,14.41,14.43,14.42,14.41,14.41,14.41,14.42,14.42,14.39,14.39,14.39,14.4,14.42,14.43,14.43,14.43,14.43,14.42,14.43,14.43,14.42,14.42,14.43,14.43,14.43,14.43,14.43,14.41,14.39,14.39,14.39,14.39,14.43,14.44,14.44,14.44,14.44,14.45,14.44,14.44,14.44,14.44,14.44,14.43,14.42,14.42,14.42,14.41,14.04,14.15,14.15,14.15,14.16,14.12,14.12,14.12,14.12,14.12,14.12,14.11,14.11,14.11,14.11,14.13,14.13,14.13,14.13,14.13,14.13,14.12,14.12,14.12,14.13,14.14,14.12,14.12,14.12,14.12,14.15,14.13,14.14,14.13,14.13,14.14,14.13,14.13,14.13,14.13,14.14,14.13,14.12,14.12,14.11,14.11,14.1,14.1,14.1,14.1,14.09,14.11,14.1,14.1,14.12,14.11,14.12,14.1,14.1,14.1,14.09,14.11,14.11,14.11,14.11,14.11,14.12,14.1,14.1,14.1,14.11,14.12,14.1,14.1,14.1,14.12,14.14,14.12,14.11,14.11,14.11,14.12,14.12,14.11,14.12,14.08,14.08,14.12,14.11,14.12,14.12,14.12,14.13,14.12,14.12,14.12,14.12,14.13,14.12,14.12,14.12,14.11,14.13,14.12,14.12,14.1,14.09,14.11,14.12,14.12,14.09,14.09,14.1,14.12,14.12,14.1,14.1,14.12,14.1,14.1,14.12,14.12,14.12,14.09,14.08,14.08,14.08,14.08,14.13,14.13,14.1,14.1,14.1,14.13,14.13,14.1,14.1,14.1,14.12,14.11,14.12,14.12,14.12,14.13,14.13,14.13,14.13,14.13,14.14,14.12,14.12,14.12,14.12,14.13,14.13,14.12,14.12,14.12,14.13,14.13,14.12,14.12,14.12,14.12,14.12,14.1,14.1,14.1,14.1,14.13,14.11,14.1,14.1,14.1,14.15,14.1,14.1,14.1,14.09,14.12,14.13,14.13,14.13,14.13,14.14,14.13,14.13,14.13,14.13,14.14,14.13,14.13,14.13,14.13,14.15,14.09,14.08,14.07,14.07,14.08,14.11,14.11,14.11,14.11,14.12,14.1,14.1,14.1,14.1,14.09,14.13,14.12,14.12,14.12,14.12,14.1,14.09,14.09,14.09,14.09,14.13,14.12,14.12,14.12,14.12,14.12,14.11,14.11,14.11,14.11,14.13,14.13,14.13,14.13,14.12,14.14,14.11,14.11,14.1,14.1,14.12,14.11,14.11,14.11,14.11,14.13,14.13,14.13,14.13,14.13,14.1,14.13,14.12,14.12,14.12,14.11,14.12,14.11,14.11,14.11,14.12,14.1,14.06,14.06,14.11,14.12,14.12,14.1,14.1,14.1,14.13,14.12,14.1,14.1,14.1,14.11,14.12,14.13,14.12,14.12,14.1,14.1,14.12,14.11,14.11,14.08,14.08,14.13,14.12,14.12,14.13,14.13,14.11,14.1,14.11,14.13,14.12,14.13,14.12,14.12,14.11,14.11,14.12,14.11,14.11,14.13,14.13,14.14,14.13,14.13,14.09,14.08,14.1,14.08,14.08,14.1,14.1,14.12,14.13,14.13,14.13,14.13,14.13,14.14,14.13,14.13,14.13,14.13,14.12,14.11,14.12,14.12,14.12,14.13,14.12,14.07,14.07,14.07,14.13,14.14,14.14,14.14,14.14,14.14,14.13,14.14,14.14,14.14,14.15,14.14,14.13,14.13,14.11,14.12,14.12,14.12,14.12,14.12,14.14,14.12,14.11,14.11,14.11,14.1,14.48,14.19,14.19,14.19,14.19,14.14,14.1,14.1,14.1,14.1,14.13,14.12,14.12,14.12,14.11,14.13,14.12,14.11,14.11,14.11,14.14,14.1,14.1,14.1,14.1,14.11,14.12,14.12,14.12,14.12,14.13,14.13,14.13,14.13,14.13,14.14,14.13,14.13,14.13,14.13,14.13,14.11,14.09,14.09,14.09,14.09,14.13,14.13,14.13,14.13,14.12,14.13,14.12,14.11,14.11,14.11,14.12,14.12,14.12,14.12,14.12,14.15,14.13,14.13,14.13,14.13,14.15,14.13,14.13,14.13,14.13,14.14,14.13,14.13,14.13,14.13,14.13,14.13,14.13,14.13,14.13,14.11,14.14,14.14,14.14,14.14,14.13,14.14,14.13,14.13,14.13,14.14,14.13,14.1,14.1,14.1,14.13,14.14,14.13,14.13,14.13,14.13,14.14,14.13,14.13,14.13,14.14,14.15,14.14,14.14,14.14,14.14,14.14,14.12,14.12,14.12,14.15,14.15,14.13,14.13,14.13,14.14,14.14,14.14,14.13,14.13,14.1,14.1,14.13,14.12,14.12,14.12,14.12,14.14,14.15,14.15,14.12,14.12,14.14,14.15,14.15,14.12,14.12,14.13,14.13,14.13,14.13,14.13,14.14,14.12,14.12,14.08,14.08,14.09,14.12,14.11,14.13,14.13,14.13,14.12,14.1,14.13,14.13,14.13,14.13,14.12,14.1,14.1,14.1,14.13,14.3,14.35,14.35,14.34,14.36,14.35,14.29,14.28,14.28,14.3,14.29,14.29,14.29,14.29,14.3,14.29,14.28,14.28,14.28,14.3,14.29,14.27,14.27,14.27,14.27,14.29,14.3,14.29,14.29,14.29,14.3,14.29,14.29,14.29,14.29,14.3,14.28,14.28,14.29,14.29,14.3,14.28,14.28,14.29,14.29,14.3,14.34,14.27,14.27,14.27,14.28,14.29,14.29,14.29,14.31,14.89,14.19,14.19,14.19,14.19,14.18,14.13,14.13,14.13,14.13,14.12,14.15,14.14,14.14,14.14,14.14,14.14,14.13,14.13,14.13,14.13,14.14,14.14,14.14,14.14,14.14,14.15,14.13,14.13,14.13,14.13,14.13,14.14,14.14,14.14,14.15,14.16,14.14,14.14,14.14,14.14,14.16,14.14,14.14,14.14,14.14,14.15,14.14,14.13,14.13,14.13,14.12,14.15,14.14,14.14,14.14,14.15,14.15,14.14,14.14,14.14,14.12,14.14,14.13,14.13,14.15,14.13,14.13,14.13,14.13,14.13,14.13,14.13,14.11,14.11,14.11,14.12,14.13,14.13,14.13,14.13,14.13,14.14,14.13,14.13,14.13,14.1,14.1,14.13,14.12,14.12,14.13,14.13,14.14,14.14,14.14,14.14,14.13,14.14,14.13,14.13,14.11,14.11,14.13,14.13,14.13,14.14,14.14,14.15,14.14,14.14,14.13,14.12,14.13,14.12,14.13,14.11,14.11,14.12,14.12,14.12,14.15,14.15,14.16,14.13,14.14,14.12,14.12,14.11,14.12,14.11,14.14,14.14,14.14,14.15,14.14,14.11,14.11,14.11,14.52,14.21,14.18,14.18,14.18,14.16,14.11,14.11,14.11,14.11,14.13,14.14,14.15,14.15,14.15,14.15,14.14,14.14,14.14,14.14,14.15,14.13,14.15,14.15,14.15,14.15,14.15,14.12,14.12,14.12,14.12,14.15,14.12,14.12,14.12,14.12,14.13,14.13,14.13,14.13,14.13,14.13,14.15,14.15,14.15,14.15,14.15,14.15,14.15,14.13,14.13,14.15,14.11,14.12,14.12,14.12,14.13,14.13,14.13,14.13,14.13,14.15,14.17,14.15,14.15,14.15,14.15,14.13,14.11,14.11,14.11,14.11,14.16,14.15,14.15,14.15,14.15,14.16,14.15,14.15,14.15,14.15,14.16,14.15,14.15,14.15,14.15,14.15,14.13,14.13,14.13,14.13,14.15,14.12,14.12,14.12,14.12,14.14,14.13,14.13,14.13,14.13,14.13,14.14,14.14,14.14,14.13,14.11,14.15,14.12,14.12,14.12,14.13,14.15,14.13,14.13,14.13,14.13,14.14,14.14,14.14,14.14,14.13,14.14,14.13,14.12,14.12,14.13,14.14,14.14,14.14,14.14,14.14,14.16,14.14,14.14,14.14,14.15,14.16,14.14,14.14,14.14,14.11,14.12,14.13,14.13,14.13,14.15,14.14,14.14,14.12,14.12,14.14,14.14,14.16,14.28,14.31,14.34,14.34,14.37,14.37,14.37,14.35,14.35,14.36,14.35,14.35,14.36,14.36,14.36,14.36,14.36,14.37,14.37,14.38,14.39,27.84,23.71,27.78,16.75,15.77,25.83,28.15,28.29,16.02,15.83,24.01,28.39,17.44,15.76,15.79,15.78,15.76,15.76,15.76,15.81,15.8,15.81,15.81,15.81,19.89,25.37,15.76,15.76,15.77,15.78,15.75,15.77,15.77,15.77,15.78,15.78,15.78,15.78,15.78,15.79,15.78,15.78,15.77,15.76,15.76,15.79,15.77,15.77,15.77,15.77,15.79,15.78,15.78,15.78,15.77,15.79,15.79,15.79,15.79,15.79,15.78,15.77,15.78,15.78,15.77,15.79,15.78,15.77,15.77,15.77,15.78,15.78,15.78,15.77,15.77,15.79,15.77,15.77,15.76,15.74,15.76,15.71,15.71,15.71,15.71,15.71,15.77,15.76,15.76,15.76,15.76,15.79,15.78,15.78,15.78,15.78,15.8,15.78,15.76,15.76,15.76,15.76,15.75,15.75,15.74,15.74,15.77,15.76,15.76,15.76,15.77,15.77,15.77,15.77,15.77,15.77,15.77,15.76,15.75,15.75,15.75,15.76,15.77,15.76,15.76,15.76,15.77,15.77,15.76,15.76,15.76,15.75,15.79,15.77,15.77,15.77,15.76,15.77,15.76,15.76,15.76,15.77,15.78,15.76,15.76,15.76,15.76,15.77,15.77,15.76,15.75,15.74,15.77,15.76,15.76,15.76,15.73,15.73,15.74,15.74,15.75,15.72,15.72,15.75,15.74,15.74,15.76,15.76,15.76,15.75,15.76,15.74,15.74,15.79,15.77,15.77,15.78,15.76,15.76,15.75,15.75,15.74,15.74,15.77,15.78,17.4,29.09,23.66,16.16,15.89,15.89,15.86,15.86,15.87,15.83,15.83,15.84,15.84,15.85,15.83,15.84,15.82,15.82,15.82,15.85,15.82,15.77,15.77,15.78,15.84,15.84,15.84,15.84,15.84,15.87,15.85,15.8,15.8,15.8,15.84,15.85,15.84,15.82,15.82,15.83,15.83,15.82,15.82,15.82,15.83,15.84,15.84,15.84,15.83,15.84,15.82,15.84,15.84,15.84,15.84,15.85,15.79,15.79,15.79,15.79,15.83,15.83,15.83,15.83,15.83,15.86,15.82,15.81,15.81,15.81,15.84,15.85,15.85,15.85,15.84,15.83,15.8,15.79,15.79,15.79,15.82,15.83,15.83,15.84,15.84,15.86,15.85,15.85,15.85,15.85,15.86,15.85,15.85,15.84,15.83,15.84,15.84,15.83,15.84,15.85,15.86,15.85,15.83,15.83,15.83,15.87,15.89,15.87,15.87,15.87,15.87,15.89,15.88,15.86,15.86,15.86,15.87,15.87,15.9,15.9,15.9,15.97,15.96,15.96,15.96,15.96,16.86,15.81,14.64,15.62,14.66,28.6,22.38,23.98,28.41,16.24,15.94,15.94,15.94,15.94,15.94,15.95,15.96,15.95,15.95,15.95,15.96,15.97,15.97,15.97,15.96,15.93,15.95,15.95,15.94,15.94,15.95,15.96,15.94,15.94,15.95,15.55,26.78,22.4,28.26,22.34,16.25,29.16,27.77,25.04,15.87,15.89,26.87,22.86,27.25,15.84,28.12,28.2,16.12,15.92,15.92,15.94,15.94,15.98,20.73,23.18,15.91,15.91,15.93,15.92,15.92,15.94,15.92,15.92,15.91,15.91,15.92,15.92,15.93,15.92,15.92,15.91,15.91,15.92,15.9,15.87,15.9,15.9,15.91,15.9,15.9,15.91,15.91,15.92,16.79,27.67,15.78,15.78,15.79,15.8,15.8,15.81,15.81,15.81,15.82,15.81,15.81,15.81,15.81,15.83,15.82,15.82,15.8,15.79,15.82,15.82,15.82,15.82,15.82,15.84,15.82,15.83,15.83,15.83,15.85,15.84,15.83,15.83,15.83,15.85,15.82,15.82,15.82,15.82,15.83,15.82,15.83,15.83,15.83,15.83,15.85,15.81,15.81,15.81,15.81,15.83,15.83,15.83,15.82,15.8,15.8,15.32,14.41,14.41,14.42,14.41,14.39,14.39,14.39,14.39,14.42,14.42,14.42,14.42,14.42,14.43,14.42,14.42,14.42,14.42,14.43,14.39,14.4,14.4,14.4,14.41,14.43,14.43,14.43,14.43,14.43,14.39,14.37,14.37,14.37,14.37,14.43,14.43,14.43,14.43,14.43,14.43,14.42,14.42,14.42,14.42,14.44,14.43,14.43,14.43,14.43,14.45,14.43,14.43,14.43,14.43,14.42,14.43,14.43,14.43,14.43,14.44,14.43,14.43,14.44,14.43,14.44,14.42,14.42,14.42,14.42,14.43,14.47,14.45,14.44,14.43,14.43,14.45,14.43,14.42,14.42,14.43,14.44,14.43,14.43,14.43,14.41,14.42,14.42,14.42,14.42,14.4,14.42,14.43,14.43,14.43,14.4,14.7,14.5,14.49,14.49,14.47,14.48,14.44,14.45,14.43,14.41,14.41,14.44,14.43,14.43,14.43,14.43,14.44,14.43,14.43,14.44,14.44,14.45,14.44,14.44,14.43,14.43,14.45,14.43,14.43,14.44,14.45,14.46,14.45,14.44,14.44,14.44,14.45,14.44,14.44,14.44,14.44,14.45,14.45,14.44,14.44,14.44,14.44,14.45,14.44,14.44,14.45,14.45,14.46,14.44,14.44,14.44,14.44,14.45,14.44,14.42,14.42,14.43,14.44,14.44,14.45,14.44,14.44,14.45,14.45,14.44,14.44,14.44,14.46,14.45,14.42,14.42,14.42,14.42,14.46,14.45,14.45,14.45,14.45,14.46,14.43,14.43,14.43,14.42,14.44,14.45,14.45,14.45,14.45,14.46,14.45,14.45,14.45,14.45,14.46,14.46,14.46,14.45,14.44,14.46,14.43,14.44,14.44,14.44,14.44,14.45,14.44,14.44,14.44,14.44,14.46,14.45,14.45,14.45,14.45,14.46,14.45,14.45,14.45,14.45,14.44,14.42,14.42,14.42,14.46,14.44,14.42,14.42,14.42,14.42,14.45,14.44,14.44,14.44,14.44,14.45,14.44,14.44,14.44,14.44,14.41,14.42,14.42,14.42,14.42,14.42,14.46,14.44,14.45,14.44,14.45,14.46,14.44,14.44,14.44,14.41,14.43,14.43,14.43,14.42,14.41,14.43,14.44,14.44,14.43,14.44,14.45,14.44,14.45,14.44,14.44,14.46,14.44,14.44,14.44,14.42,14.42,14.44,14.43,14.43,14.41,14.4,14.43,14.42,14.43,14.43,14.43,14.44,14.43,14.43,14.42,14.42,14.44,14.44,14.44,14.44,14.44,14.45,14.44,14.44,14.42,14.42,14.45,14.43,14.43,14.45,14.45,14.46,14.44,14.44,14.43,14.43,14.43,14.41,14.45,14.45,14.45,14.46,14.44,14.44,14.43,14.43,14.43,14.44,14.43,14.42,14.42,14.42,14.43,14.43,14.42,14.42,14.42,14.43,14.42,14.43,14.44,14.43,14.46,14.45,14.45,14.45,14.45,14.46,14.44,14.46,14.46,14.46,14.46,14.45,14.45,14.45,14.45,14.46,14.45,14.46,14.46,14.46,14.48,14.46,14.42,14.42,14.42,14.42,14.44,14.44,14.44,14.44,14.44,14.45,14.45,14.45,14.45,14.45,14.48,14.46,14.46,14.46,14.46,14.47,14.46,14.46,14.45,14.45,14.41,14.34,14.34,14.34,14.34,14.36,14.35,14.35,14.35,14.35,14.37,14.35,14.35,14.35,14.35,14.35,14.39,14.38,14.38,14.38,14.38,14.37,14.36,14.36,14.36,14.36,14.38,14.38,14.37,14.37,14.37,14.39,14.38,14.38,14.38,14.37,14.37,14.37,14.37,14.37,14.37,14.39,14.38,14.38,14.38,14.38,14.39,14.38,14.38,14.38,14.37,14.37,14.38,14.38,14.37,14.37,14.39,14.38,14.38,14.38,14.38,14.35,14.39,14.39,14.39,14.38,14.39,14.4,14.39,14.39,14.39,14.39,14.4,14.39,14.39,14.39,14.39,14.76,14.45,14.45,14.45,14.45,14.45,14.4,14.39,14.39,14.39,14.41,14.39,14.39,14.39,14.36,14.37,14.39,14.39,14.39,14.37,14.38,14.37,14.37,14.37,14.37,14.37,14.4,14.28,14.23,14.24,14.24,14.26,14.24,14.24,14.24,14.24,14.25,14.24,14.24,14.24,14.24,14.25,14.24,14.24,14.24,14.24,14.25,14.18,14.15,14.15,14.15,14.16,14.16,14.16,14.16,14.16,14.17,14.16,14.16,14.15,14.15,14.16,14.16,14.17,14.17,14.17,14.17,14.19,14.17,14.17,14.17,14.17,14.19,14.18,14.18,14.18,14.18,14.19,14.18,14.14,14.14,14.14,14.17,14.18,14.18,14.18,14.18,14.19,14.17,14.17,14.17,14.17,14.19,14.17,14.18,14.18,14.17,14.17,14.16,14.15,14.13,14.12,14.13,14.16,14.13,14.13,14.13,14.13,14.17,14.16,14.16,14.16,14.16,14.17,14.14,14.14,14.14,14.14,14.16,14.13,14.13,14.13,14.13,14.16,14.15,14.15,14.16,14.16,14.16,14.11,14.11,14.12,14.12,14.14,14.13,14.13,14.13,14.13,14.13,14.16,14.15,14.15,14.15,14.15,14.16,14.15,14.15,14.15,14.15,14.17,14.16,14.16,14.16,14.17,14.17,14.16,14.16,14.16,14.16,14.17,14.15,14.15,14.15,14.15,14.15,14.14,14.14,14.14,14.14,14.15,14.16,14.16,14.16,14.16,14.13,14.16,14.15,14.15,14.15,14.15,14.15,14.14,14.14,14.17,14.17,14.18,14.17,14.17,14.17,14.16,14.18,14.46,14.45,14.25,14.25,14.26,14.24,14.19,14.18,14.25,14.2,14.2,14.19,14.19,14.19,14.2,14.19,14.19,14.19,14.19,14.2,14.19,14.19,14.19,14.19,14.19,14.19,14.18,14.18,14.2,14.22,14.26,14.25,14.25,14.23,14.23,14.26,14.26,14.25,14.23,14.23,14.26,14.25,14.25,14.25,14.25,14.27,14.26,14.26,14.26,14.26,14.27,14.26,14.24,14.24,14.23,14.23,14.22,14.22,14.21,14.21,14.23,14.24,14.24,14.23,14.23,14.23,14.23,14.22,14.21,14.21,14.21,14.21,14.2,14.22,14.22,14.22,14.24,14.22,14.24,14.24,14.24,14.26,14.25,14.24,14.24,14.24,14.24,14.24,14.24,14.24,14.24,14.25,14.25,14.22,14.22,14.22,14.24,14.24,14.25,14.25,14.25,14.26,14.25,14.23,14.23,14.23,14.23,14.25,14.2,14.2,14.2,14.2,14.25,14.23,14.22,14.22,14.22,14.26,14.26,14.26,14.25,14.25,14.26,14.26,14.26,14.26,14.25,14.26,14.25,14.25,14.25,14.25,14.26,14.26,14.26,14.26,14.26,14.28,14.26,14.26,14.26,14.26,14.25,14.24,14.23,14.23,14.23,14.23,14.27,14.26,14.26,14.26,14.26,14.27,14.26,14.26,14.26,14.26,14.28,14.26,14.26,14.26,14.26,14.27,14.25,14.25,14.25,14.25,14.27,14.26,14.26,14.26,14.26,14.53,14.32,14.32,14.32,14.32,14.3,14.26,14.26,14.27,14.27,14.26,14.25,14.24,14.24,14.24,14.26,14.27,14.26,14.26,14.26,14.22,14.27,14.26,14.26,14.26,14.24,14.27,14.27,14.27,14.25,14.23,14.26,14.23,14.23,14.22,14.24,14.25,14.24,14.24,14.24,14.24,14.26,14.24,14.24,14.24,14.21,14.23,14.25,14.25,14.25,14.24,14.25,14.25,14.25,14.25,14.22,14.22,14.25,14.23,14.24,14.24,14.25,14.26,14.25,14.25,14.25,14.25,14.26,14.24,14.24,14.24,14.24,14.25,14.24,14.25,14.25,14.25,14.27,14.24,14.24,14.24,14.24,14.26,14.24,14.24,14.22,14.23,14.24,14.23,14.25,14.25,14.25,14.25,14.24,14.23,14.23,14.23,14.23,14.25,14.24,14.24,14.24,14.24,14.26,14.23,14.25,14.25,14.25,14.26,14.25,14.25,14.25,14.25,14.25,14.24,14.5,14.83,14.42,14.44,14.45,14.46,14.39,14.39,14.4,14.38,14.37,14.37,14.37,14.39,14.38,14.36,14.36,14.36,14.36,14.39,14.36,14.36,14.36,14.36,14.38,14.39,14.4,14.4,14.4,14.4,14.39,14.39,14.39,14.39,14.4,14.4,14.4,14.4,14.38,14.39,14.39,14.39,14.39,14.4,14.41,14.38,14.37,14.37,14.37,14.38,14.4,14.39,14.39,14.4,14.4,14.41,14.4,14.4,14.39,14.39,14.4,14.39,14.39,14.39,14.4,14.41,14.39,14.37,14.37,14.37,14.36,14.36,14.36,14.36,14.36,14.38,14.38,14.37,14.37,14.37,14.41,14.47,14.46,14.45,14.45,14.43,14.44,14.43,14.43,14.43,14.43,14.46,14.46,14.46,14.46,14.46,14.47,14.49,14.5,14.52,14.59,14.61,14.61,14.61,14.6,14.6,14.61,14.61,14.61,14.61,14.61,14.61,14.6,14.61,14.61,14.61,14.62,14.61,14.61,14.61,14.61,14.61,14.63,14.61,14.61,14.66,14.69,14.72,14.72,14.72,14.74,14.74,14.75,14.73,14.73,14.74,14.74,14.75,14.74,14.74,14.74,14.74,14.76,14.74,14.74,14.75,14.75,14.76,14.74,14.74,14.72,14.72,14.73,14.75,14.75,15.13,18.89,28.78,21.88,29.11,18.08,16.13,16.13,16.15,16.14,16.12,16.12,16.12,16.15,16.13,16.16,16.16,16.16,16.18,16.18,16.2,16.19,24.78,27.84,16.2,16.21,16.21,16.21,16.23,16.23,16.19,16.19,16.2,16.22,16.22,16.21,16.22,16.21,16.23,16.25,16.24,16.22,16.23,16.23,16.22,16.25,16.25,16.25,16.25,16.26,16.25,16.25,16.25,16.25,16.27,16.22,16.22,16.22,16.2,16.25,16.24,16.23,16.21,16.21,16.22,16.23,16.23,16.23,16.23,16.24,16.21,16.22,16.21,16.21,16.23,15.48,14.97,14.97,14.97,14.99,15,15,15,15,15,19.22,28.92,17.15,16.07,16.1,16.12,16.11,16.11,16.11,16.11,16.46,16.19,16.2,16.19,16.19,16.17,16.13,16.13,16.13,16.11,16.14,16.13,16.13,16.13,16.13,16.14,16.15,16.15,16.15,16.15,16.17,16.15,16.16,16.16,16.16,16.14,16.15,16.13,16.13,16.13,16.11,16.14,16.13,16.13,16.12,16.14,16.16,16.15,16.15,16.15,16.13,16.16,16.15,16.15,16.14,16.12,16.14,16.15,16.15,16.15,16.15,16.14,16.12,16.12,16.15,16.15,16.17,16.15,16.15,16.15,16.17,16.18,16.16,16.16,16.14,16.11,16.12,16.13,16.13,16.13,16.13,16.13,16.17,16.16,27.38,28.52,23.52,16.17,16.16,16.29,16.24,16.25,16.26,16.25,16.24,16.17,16.17,16.2,16.2,16.2,16.2,16.2,16.21,16.19,16.18,16.18,16.18,16.2,16.17,16.17,16.21,16.21,16.22,16.19,16.19,16.18,16.18,16.18,16.22,16.22,16.17,16.15,16.15,16.2,16.19,16.15,16.15,16.15,16.19,16.18,16.18,16.18,22.92,25.63,16.11,16.12,26.46,23.69,16.12,16.13,18.66,29.93,29.3,25.52,16.39,29.99,24.79,29.83,22.56,26.05,24.02,22.49,27.66,28.57,30.17,29.22,29.21,28.98,29.59,16.49,28.39,29.11,28.26,29.66,29.06,22.44,29.94,16.3,28.68,30.43,27.08,27.12,16.19,16.29,29.76,25.8,25.71,16.19,16.19,16.21,16.22,16.22,16.22,16.22,16.17,14.88,16.84,29.34,17.02,16.18,16.19,16.19,16.18,16.18,16.21,16.26,16.26,16.26,16.26,16.26,24.3,22.73,16.14,16.15,16.22,16.3,16.29,19.57,29.36,23.67,28.54,16.19,16.19,16.19,16.24,16.25,21.22,27,16.27,22.52,23.42,16.35,16.35,16.35,16.35,16.38,16.36,16.36,16.36,16.36,16.38,16.36,16.36,16.35,18.16,29.82,24.23,16.23,16.23,16.23,16.25,16.28,16.27,16.27,16.28,16.24,16.28,16.28,16.28,16.28,16.29,16.3,16.29,16.28,16.29,15.27,15.02,15.03,15.15,29.4,29.41,22.65,16.27,16.27,15.97,14.78,14.79,14.8,14.79,14.8,14.78,14.78,14.81,14.8,14.79,14.74,14.74,14.78,14.77,14.77,14.77,14.77,14.78,14.76,14.76,14.73,14.73,14.76,14.78,14.78,14.77,14.76,14.78,14.78,14.78,14.75,14.75,14.76,14.76,14.75,14.77,14.77,14.79,14.74,14.77,14.77,14.77,14.77,14.79,14.77,14.77,14.78,14.78,14.79,14.78,14.76,14.76,14.76,14.78,14.78,14.77,14.78,14.78,14.79,14.78,14.78,14.78,14.78,14.79,14.78,14.79,14.79,14.79,14.79,14.8,14.78,14.78,14.78,14.8,14.79,14.79,14.79,14.79,14.79,14.79,14.77,14.77,14.77,14.77,14.79,14.76,14.76,14.4,14.44,14.5,14.49,14.5,14.5,14.5,14.52,14.52,14.52,14.52,14.52,14.53,14.52,14.52,14.51,14.51,14.52,14.52,14.52,14.53,14.53,14.68,14.73,14.54,14.54,14.54,14.54,14.51,14.5,14.5,14.5,14.5,14.51,14.51,14.51,14.51,14.51,14.53,14.53,14.52,14.52,14.52,14.53,14.52,14.52,14.52,14.51,14.54,14.52,14.52,14.52,14.52,14.54,14.53,14.53,14.52,14.52,14.54,14.52,14.52,14.52,14.52,14.53,14.51,14.49,14.49,14.5,14.53,14.54,14.53,14.53,14.52,14.51,14.51,14.5,14.5,14.5,14.5,14.51,14.51,14.51,14.51,14.51,14.53,14.51,14.51,14.51,14.51,14.52,14.49,14.49,14.49,14.5,14.51,14.51,14.51,14.51,14.5,14.51,14.5,14.5,14.51,14.51,14.51,14.52,14.51,14.5,14.51,14.5,14.53,14.51,14.51,14.5,14.5,14.51,14.5,14.5,14.49,14.49,14.51,14.51,14.5,14.51,14.5,14.51,14.5,14.5,14.52,14.52,14.53,14.52,14.52,14.52,14.51,14.53,14.51,14.51,14.52,14.52,14.52,14.51,14.49,14.5,14.5,14.5,14.53,14.52,14.49,14.49,14.49,14.5,14.5,14.47,14.47,14.47,14.49,14.49,14.46,14.46,14.46,14.47,14.51,14.52,14.52,14.52,14.53,14.52,14.52,14.52,14.52,14.53,14.53,14.53,14.53,14.53,14.53,14.54,14.52,14.52,14.51,14.51,14.53,14.51,14.51,14.51,14.51,14.53,14.53,14.53,14.52,14.52,14.54,14.54,14.54,14.54,14.53,14.54,14.53,14.53,14.53,14.53,14.54,14.53,14.53,14.53,14.53,14.52,14.55,14.53,14.54,14.54,14.53,14.54,14.53,14.53,14.53,14.53,14.54,14.53,14.53,14.53,14.53,14.53,14.51,14.51,14.51,14.51,14.53,14.51,14.51,14.51,14.51,14.53,14.51,14.51,14.51,14.51,14.53,14.51,14.51,14.51,14.51,14.52,14.53,14.51,14.51,14.51,14.53,14.53,14.52,14.52,14.51,14.48,14.51,14.52,14.52,14.52,14.52,14.53,14.52,14.52,14.52,14.52,14.53,14.51,14.51,14.51,14.5,14.52,14.52,14.52,14.52,14.49,14.5,14.51,14.51,14.51,14.52,14.52,14.53,14.52,14.52,14.52,14.53,14.52,14.5,14.51,14.51,14.51,14.53,14.53,14.53,14.52,14.52,14.53,14.52,14.52,14.52,14.53,14.54,14.53,14.53,14.53,14.53,14.55,14.52,14.52,14.53,14.53,14.54,14.52,14.52,14.52,14.52,14.52,14.54,14.52,14.53,14.53,14.53,14.54,14.53,14.53,14.53,14.52,14.53,14.52,14.53,14.53,14.53,14.54,14.53,14.52,14.51,14.51,14.53,14.52,14.53,14.53,14.53,14.54,14.52,14.53,14.53,14.53,14.54,14.52,14.53,14.53,14.53,14.53,14.54,14.53,14.53,14.53,14.53,14.54,14.53,14.53,14.53,14.53,14.54,14.5,14.51,14.51,14.51,14.52,14.54,14.54,14.53,14.51,14.51,14.48,14.48,14.48,14.48,14.5,14.5,14.5,14.5,14.5,14.51,14.51,14.51,14.51,14.51,14.51,14.92,14.58,14.58,14.58,14.58,14.53,14.5,14.49,14.49,14.49,14.52,14.51,14.51,14.51,14.52,14.52,14.51,14.51,14.51,14.51,14.52,14.5,14.5,14.5,14.5,14.52,14.5,14.5,14.5,14.5,14.53,14.52,14.52,14.52,14.52,14.5,14.52,14.5,14.5,14.5,14.5,14.51,14.5,14.5,14.51,14.52,14.53,14.52,14.53,14.53,14.53,14.54,14.53,14.53,14.53,14.52,14.53,14.52,14.52,14.52,14.48,14.49,14.51,14.51,14.51,14.53,14.54,14.53,14.52,14.52,14.52,14.52,14.53,14.52,14.52,14.52,14.52,14.54,14.52,14.51,14.53,14.52,14.54,14.52,14.53,14.52,14.52,14.53,14.52,14.52,14.52,14.52,14.53,14.5,14.5,14.49,14.49,14.5,14.53,14.53,14.53,14.53,14.54,14.53,14.54,14.54,14.54,14.54,14.54,14.53,14.54,14.54,14.54,14.55,14.53,14.51,14.51,14.51,14.54,14.54,14.51,14.82,14.66,14.68,14.69,14.67,14.64,14.62,14.63,14.62,14.61,14.61,14.61,14.62,14.6,14.6,14.6,14.6,14.61,14.6,14.58,14.58,14.58,14.58,14.6,14.6,14.6,14.6,14.6,14.61,14.58,14.58,14.58,14.58,14.6,14.57,14.57,14.57,14.57,14.6,14.61,14.6,14.6,14.6,14.62,14.6,14.6,14.6,14.6,14.62,14.61,14.61,14.6,14.6,14.61,14.63,14.61,14.61,14.61,14.61,14.69,14.6,14.6,14.6,14.6,14.62,14.61,14.61,14.61,14.61,14.62,14.61,14.61,14.6,14.61,14.62,14.61,14.61,14.6,14.6,14.63,14.61,14.61,14.61,14.61,14.89,14.78,14.6,14.6,14.6,14.6,14.54,14.53,14.53,14.53,14.51,14.55,14.54,14.54,14.54,14.53,14.53,14.52,14.52,14.53,14.53,14.54,14.52,14.53,14.53,14.53,14.53,14.5,14.5,14.5,14.51,14.53,14.53,14.52,14.52,14.53,14.54,14.52,14.52,14.52,14.52,14.53,14.53,14.53,14.53,14.52,14.52,14.54,14.53,14.53,14.54,14.54,14.54,14.53,14.52,14.51,14.51,14.54,14.54,14.54,14.54,14.54,14.54,14.51,14.51,14.53,14.53,14.53,14.5,14.5,14.53,14.53,14.54,14.53,14.53,14.53,14.53,14.54,14.51,14.52,14.51,14.51,14.51,14.53,14.51,14.49,14.49,14.5,14.53,14.52,14.53,14.52,14.52,14.53,14.52,14.51,14.51,14.51,14.53,14.53,14.49,14.49,14.49,14.51,14.52,14.52,14.52,14.52,14.53,14.52,14.52,14.52,14.52,14.54,14.53,14.53,14.53,14.53,14.53,14.54,14.52,14.52,14.52,14.52,14.53,14.53,14.53,14.53,14.53,14.52,14.5,14.5,14.5,14.5,14.52,14.51,14.51,14.51,14.51,14.52,14.49,14.49,14.49,14.49,14.5,14.53,14.53,14.52,14.53,14.54,14.53,14.53,14.53,14.53,14.53,14.55,14.53,14.53,14.53,14.53,14.9,14.57,14.57,14.57,14.56,14.56,14.53,14.53,14.53,14.52,14.54,14.53,14.53,14.53,14.52,14.53,14.49,14.49,14.49,14.49,14.54,14.53,14.53,14.53,14.53,14.52,14.52,14.52,14.52,14.52,14.54,14.54,14.53,14.53,14.53,14.53,14.51,14.49,14.49,14.54,14.53,14.54,14.54,14.54,14.54,14.52,14.54,14.54,14.53,14.53,14.52,14.53,14.52,14.52,14.52,14.55,14.56,14.54,14.54,14.54,14.55,14.55,14.53,14.53,14.53,14.54,14.54,14.55,14.52,14.55,14.49,14.49,14.52,14.51,14.52,14.53,14.52,14.53,14.5,14.5,14.49,14.49,14.51,14.51,14.51,14.53,14.53,14.54,14.53,14.53,14.53,14.53,14.54,14.53,14.53,14.53,14.53,14.54,14.5,14.52,14.5,14.5,14.5,14.55,14.53,14.53,14.53,14.52,14.54,14.52,14.53,14.53,14.53,14.55,14.53,14.53,14.53,14.53,14.53,14.51,14.51,14.51,14.51,14.52,14.51,14.53,14.53,14.53,14.54,14.54,14.53,14.53,14.53,14.61,14.76,14.74,14.74,14.74,14.74,14.78,14.75,14.75,14.76,14.76,14.76,14.75,14.75,14.75,14.75,14.77,14.76,14.76,14.75,14.75,14.77,14.75,14.75,14.75,14.75,14.77,14.76,14.75,14.75,14.75,14.76,14.74,14.72,14.71,14.71,14.72,14.77,14.76,14.76,14.76,14.76,14.76,14.75,14.75,14.76,14.75,14.77,14.75,14.75,14.75,14.75,14.75,14.75,14.75,14.75,14.76,14.77,14.76,14.76,14.76,14.75,14.78,14.77,14.77,14.77,14.77,14.76,14.75,14.74,14.74,14.74,14.74,14.77,14.76,14.76,14.76,14.77,14.77,14.76,14.76,14.76,14.76,14.77,14.77,14.75,14.74,14.74,14.75,14.74,14.75,14.75,14.75,14.76,14.74,14.74,14.74,14.74,14.76,14.75,14.75,14.75,14.72,14.71,14.72,14.7,14.7,14.73,14.73,14.75,14.73,14.73,14.75,14.75,14.76,14.75,14.76,14.75,14.74,14.75,14.74,14.73,14.74,14.74,14.75,14.76,14.76,14.75,14.75,14.76,14.75,14.75,14.76,14.76,14.77,14.73,14.81,14.85,14.86,14.9,14.95,14.94,14.94,14.94,14.94,14.94,14.94,14.94,14.93,14.93,14.96,14.95,20.43,28.85,15.2,14.96,14.95,14.96,14.95,14.95,14.95,14.91,14.93,14.93,14.93,14.94,14.93,14.94,14.94,14.95,14.95,14.98,14.97,14.97,14.97,14.97,14.98,14.94,14.94,14.94,14.94,14.97,14.95,14.95,14.95,14.95,14.97,14.97,14.97,14.97,14.97,14.97,14.92,14.92,14.92,14.92,14.93,14.95,14.94,14.94,14.95,14.96,14.97,14.97,14.97,14.97,14.97,14.97,14.96,14.96,14.96,14.96,14.99,14.96,14.96,14.97,14.97,14.99,14.97,14.97,14.97,14.97,14.96,14.96,14.96,14.96,14.96,15.33,15.04,15.04,15.04,15.03,15.04,14.98,14.99,14.99,14.96,14.97,14.94,14.94,14.94,14.95,14.95,14.98,14.96,14.96,14.96,14.95,14.95,14.93,14.93,14.93,14.94,14.97,14.96,14.96,14.96,14.96,14.97,14.96,14.96,14.96,14.95,14.96,14.95,14.95,14.96,14.94,14.95,14.97,14.97,14.96,14.96,14.97,14.96,14.96,14.96,14.96,14.96,14.97,14.96,14.96,14.97,14.96,14.98,14.96,14.96,14.96,14.95,14.98,14.98,14.98,14.97,14.96,14.97,14.96,14.97,14.97,14.97,14.98,14.96,14.95,14.96,14.95,14.97,14.97,14.97,14.96,14.96,14.98,14.97,14.97,14.97,14.97,14.97,14.98,14.97,14.97,14.97,14.97,14.98,14.97,14.95,14.95,14.95,14.97,14.98,14.97,14.97,14.97,14.98,14.97,14.97,14.98,14.98,15,14.98,14.98,14.98,14.98,14.99,14.96,14.98,14.98,14.98,14.98,14.98,14.97,14.95,14.9,14.9,14.92,14.91,14.91,14.91,14.91,14.93,14.91,14.91,14.91,14.91,14.92,14.91,14.91,14.91,14.91,14.92,14.91,14.91,14.91,14.91,14.92,14.92,14.91,14.91,14.91,14.91,14.92,14.92,14.91,14.91,14.92,14.92,14.92,14.92,14.92,14.89,14.91,14.89,14.89,14.9,14.89,14.88,14.87,14.87,14.87,14.87,14.9,14.89,14.89,14.89,14.9,14.91,14.89,14.89,14.89,14.89,14.9,14.89,14.89,14.89,14.89,14.91,14.89,14.89,14.89,14.89,14.91,14.87,14.87,14.87,14.86,14.89,14.9,14.89,14.89,14.89,14.9,14.9,14.89,14.89,14.89,14.89,14.91,14.9,14.9,14.9,14.88,14.91,14.9,14.9,14.9,14.9,14.91,14.91,14.91,14.9,14.9,14.9,14.89,14.89,14.89,14.9,14.91,14.91,14.91,14.91,14.9,14.92,14.89,14.88,14.88,14.91,14.91,14.92,14.91,14.91,14.89,14.89,14.91,14.9,14.78,14.78,14.78,14.78,14.77,14.77,14.78,14.77,14.77,14.76,14.77,14.78,14.78,14.78,14.74,14.74,14.77,14.77,14.78,14.76,14.76,14.78,14.78,14.78,14.76,14.76,14.76,14.76,14.76,14.75,14.75,14.77,14.78,14.77,14.78,14.78,14.78,14.78,14.78,14.78,14.76,14.77,14.77,14.78,14.79,14.78,14.78,14.78,14.78,14.79,14.78,14.78,14.78,14.78,14.78,14.75,14.78,14.78,14.78,14.8,14.75,14.76,14.76,14.75,14.77,14.79,14.78,14.76,14.76,14.81,14.9,14.9,14.9,14.9,14.9,14.91,14.91,14.91,14.91,14.91,14.97,14.97,14.97,14.97,14.97,14.99,14.98,14.98,14.98,14.98,15.04,15.06,15.06,15.06,15.07,15.08,15.07,15.07,15.07,15.07,15.08,15.04,15.04,15.04,15.04,15.04,15.05,15.04,15.04,15.04,15.04,15.07,15.07,15.07,15.07,15.07,15.09,15.07,15.07,15.07,15.07,15.38,15.13,15.13,15.13,15.13,15.13,15.07,15.07,15.07,15.07,15.08,15.08,15.07,15.07,15.07,15.07,15.09,15.07,15.07,15.07,15.06,15.08,15.08,15.08,15.08,15.08,15.08,15.07,15.07,15.07,15.04,15.07,15.07,15.07,15.08,15.08,15.09,15.08,15.08,15.08,15.07,15.09,15.08,15.08,15.08,15.08,15.09,15.1,15.09,15.08,15.08,15.08,15.1,15.09,15.08,15.06,15.06,15.08,15.07,15.07,15.07,15.06,15.07,15.06,15.06,15.08,15.08,15.1,15.09,15.08,15.06,15.06,15.07,15.06,15.06,15.09,15.09,15.1,15.09,15.09,15.09,15.09,15.09,15.08,15.07,15.09,15.09,15.09,15.08,15.06,15.06,15.06,15.06,15.07,15.09,15.08,15.08,15.08,15.1,15.07,15.07,15.06,15.06,15.07,15.07,15.08,15.08,15.08,15.08,15.06,15.07,15.07,15.07,15.08,15.07,15.08,15.08,15.08,15.08,15.07,15.07,15.07,15.07,15.07,15.08,15.07,15.07,15.07,15.07,15.07,15.06,15.06,15.06,15.06,15.07,15.06,15.06,15.06,15.06,15.07,15.05,15.05,15.05,15.05,15.06,15.06,15.06,15.06,15.06,15.08,15.07,15.07,15.07,15.07,15.06,15.08,15.07,15.07,15.07,15.07,15.07,15.06,15.06,15.07,15.07,15.1,15.08,15.08,15.08,15.08,15.09,15.07,15.07,15.07,15.07,15.07,15.07,15.07,15.06,15.07,15.06,15.06,15.06,15.06,15.08,15.07,15.07,15.07,15.07,15.06,15.09,15.09,15.09,15.09,15.09,15.09,15.08,15.08,15.08,15.08,15.07,15.09,15.08,15.08,15.08,15.06,15.07,15.06,15.06,15.06,15.07,15.07,15.06,15.06,15.08,15.06,15.07,15.07,15.07,15.07,15.07,15.07,15.06,15.06,15.06,15.07,15.09,15.08,15.08,15.08,15.09,15.09,15.04,15.04,15.04,15.09,15.09,15.1,15.08,15.08,15.09,15.09,15.09,15.07,15.09,15.09,15.09,15.11,15.09,15.09,15.09,15.09,15.09,15.04,15.04,15.07,15.07,15.07,15.06,15.06,15.07,15.07,15.08,15.06,15.06,15.04,15.03,15.05,15.05,15.05,15.03,15.03,15.03,15.07,15.07,15.03,15.03,15.03,15.08,15.07,15.07,15.07,15.07,15.08,15.07,15.07,15.07,15.07,15.08,15.07,15.07,15.06,15.06,15.08,15.07,15.09,15.08,15.08,15.1,15.07,15.08,15.08,15.08,15.09,15.08,15.05,15.04,15.04,15.05,15.08,15.08,15.08,15.08,15.08,15.09,15.07,15.07,15.07,15.07,15.1,15.07,15.07,15.07,15.07,15.09,15.08,15.08,15.08,15.08,15.09,15.06,15.06,15.06,15.06,15.09,15.09,15.09,15.09,15.09,15.1,15.08,15.08,15.08,15.08,15.09,15.06,15.06,15.06,15.06,15.06,15.1,15.09,15.08,15.08,15.08,15.1,15.09,15.09,15.09,15.09,15.1,15.09,15.09,15.08,15.08,15.33,15.16,15.16,15.16,15.15,15.15,15.09,15.09,15.09,15.09,15.09,15.09,15.09,15.09,15.09,15.09,15.1,15.09,15.08,15.09,15.09,15.1,15.09,15.08,15.08,15.09,15.1,15.09,15.09,15.09,15.09,15.1,15.09,15.08,15.09,15.09,15.1,15.08,15.08,15.08,15.09,15.1,15.06,15.05,15.05,15.05,15.06,15.07,15.07,15.07,15.07,15.07,15.05,15.03,15.03,15.06,15.06,15.08,15.07,15.05,15.07,15.07,15.08,15.07,15.07,15.07,15.07,15.08,15.07,15.07,15.08,15.08,15.1,15.08,15.08,15.08,15.08,15.28,15.14,15.14,15.15,15.15,15.13,15.09,15.08,15.05,15.05,15.06,15.08,15.08,15.08,15.08,15.08,15.08,15.06,15.07,15.07,15.07,15.09,15.08,15.09,15.09,15.09,15.09,15.09,15.06,15.06,15.06,15.07,15.07,15.07,15.07,15.07,15.09,15.09,15.09,15.09,15.09,15.09,15.09,15.07,15.07,15.06,15.08,15.07,15.09,15.09,15.09,15.1,15.09,15.09,15.09,15.09,15.09,15.1,15.09,15.09,15.09,15.09,15.1,15.06,15.06,15.06,15.06,15.09,15.05,15.05,15.06,15.06,15.11,15.09,15.09,15.09,15.09,15.1,15.09,15.09,15.09,15.09,15.09,15.1,15.1,15.1,15.1,15.1,15.12,15.08,15.08,15.08,15.08,15.11,15.1,15.1,15.1,15.42,15.17,15.18,15.17,15.17,15.16,15.11,15.11,15.11,15.11,15.11,15.1,15.1,15.09,15.09,15.09,15.11,15.11,15.11,15.11,15.11,15.12,15.11,15.09,15.08,15.08,15.08,15.08,15.07,15.07,15.07,15.06,15.1,15.09,15.09,15.09,15.09,15.09,15.08,15.08,15.08,15.09,15.1,15.08,15.08,15.08,15.09,15.09,15.07,15.07,15.07,15.05,15.07,15.06,15.06,15.06,15.09,15.1,15.09,15.09,15.09,15.09,15.1,15.1,15.09,15.09,15.09,15.09,15.1,15.09,15.09,15.07,15.08,15.09,15.07,15.07,15.09,15.09,15.1,15.09,15.09,15.09,15.09,15.1,15.09,15.09,15.1,15.09,15.1,15.09,15.09,15.09,15.09,15.1,15.09,15.09,15.09,15.09,15.1,15.09,15.09,15.09,15.09,15.09,15.09,15.07,15.07,15.06,15.07,15.08,15.07,15.1,15.1,15.1,15.11,15.1,15.1,15.1,15.1,15.1,15.09,15.1,15.09,15.09,15.11,15.1,15.08,15.08,15.08,15.1,15.08,15.09,15.09,15.09,15.11,15.1,15.1,15.1,15.11,15.11,15.11,15.1,15.1,15.1,15.1,15.11,15.1,15.11,15.11,15.11,15.11,15.1,15.1,15.1,15.1,15.11,15.09,15.09,15.09,15.09,15.11,15.1,15.11,15.11,15.11,15.12,15.11,15.11,15.11,15.11,15.11,15.11,15.11,15.11,15.1,15.1,15.07,15.07,15.07,15.06,15.06,15.1,15.09,15.09,15.08,15.09,15.11,15.09,15.09,15.09,15.09,15.4,15.15,15.15,15.15,15.15,15.13,15.08,15.08,15.08,15.08,15.1,15.09,15.09,15.09,15.09,15.08,15.09,15.09,15.09,15.09,15.1,15.08,15.08,15.08,15.08,15.08,15.1,15.09,15.09,15.09,15.08,15.1,15.08,15.09,15.08,15.08,15.09,15.08,15.09,15.08,15.09,15.1,15.09,15.09,15.09,15.07,15.09,15.06,15.07,15.06,15.1,15.11,15.1,15.1,15.08,15.08,15.09,15.1,15.1,15.1,15.1,15.1,15.07,15.07,15.07,15.06,15.06,15.1,15.09,15.09,15.07,15.07,15.08,15.07,15.07,15.08,15.08,15.1,15.09,15.09,15.11,15.1,15.12,15.09,15.1,15.1,15.1,15.11,15.1,15.1,15.07,15.07,15.07,15.11,15.1,15.1,15.1,15.1,15.11,15.1,15.1,15.1,15.1,15.08,15.07,15.07,15.08,15.08,15.1,15.09,15.1,15.1,15.1,15.11,15.1,15.09,15.09,15.09,15.11,15.1,15.1,15.1,15.1,15.11,15.09,15.1,15.1,15.09,15.1,15.11,15.1,15.1,15.1,15.1,15.11,15.1,15.1,15.1,15.1,15.09,15.08,15.08,15.08,15.08,15.09,15.08,15.08,15.08,15.08,15.09,15.09,15.09,15.09,15.09,15.09,15.07,15.07,15.07,15.07,15.08,15.06,15.06,15.06,15.06,15.07,15.08,15.08,15.08,15.08,15.08,15.08,15.06,15.06,15.06,15.08,15.1,15.08,15.08,15.08,15.08,15.1,15.08,15.08,15.08,15.08,15.11,15.1,15.09,15.1,15.1,15.08,15.08,15.07,15.08,15.08,15.09,15.1,15.1,15.1,15.1,15.1,15.1,15.09,15.09,15.09,15.1,15.07,15.06,15.06,15.06,15.09,15.1,15.1,15.1,15.1,15.1,15.11,15.1,15.09,15.09,15.08,15.1,15.09,15.1,15.1,15.09,15.09,15.1,15.1,15.1,15.1,15.1,15.09,15.1,15.1,15.07,15.08,15.07,15.08,15.08,15.09,15.09,15.11,15.1,15.1,15.1,15.1,15.11,15.1,15.09,15.09,15.09,15.11,15.1,15.1,15.1,15.1,15.1,15.08,15.08,15.07,15.07,15.08,15.09,15.09,15.1,15.1,15.11,15.1,15.1,15.08,15.08,15.09,15.1,15.1,15.08,15.08,15.07,15.1,15.1,15.1,15.1,15.1,15.11,15.1,15.11,15.11,15.11,15.12,15.09,15.1,15.09,15.09,15.1,15.08,15.05,15.05,15.05,15.07,15.09,15.1,15.1,15.1,15.1,15.09,15.08,15.08,15.08,15.09,15.09,15.05,15.05,15.05,15.05,15.09,15.08,15.08,15.08,15.08,15.11,15.1,15.09,15.09,15.09,15.1,15.09,15.09,15.09,15.09,15.1,15.08,15.08,15.07,15.08,15.09,15.05,15.05,15.05,15.06,15.07,15.09,15.09,15.09,15.09,15.1,15.08,15.08,15.08,15.08,15.08,15.09,15.08,15.08,15.08,15.09,15.1,15.1,15.1,15.09,15.09,15.1,15.1,15.09,15.09,15.09,15.42,15.15,15.15,15.16,15.16,15.15,15.09,15.09,15.09,15.09,15.09,15.1,15.1,15.1,15.1,15.09,15.1,15.09,15.09,15.09,15.08,15.1,15.09,15.09,15.09,15.06,15.09,15.08,15.08,15.08,15.09,15.1,15.1,15.1,15.09,15.09,15.11,15.1,15.1,15.09,15.1,15.11,15.09,15.09,15.09,15.1,15.11,15.11,15.1,15.09,15.09,15.1,15.12,15.1,15.1,15.1,15.1,15.11,15.1,15.1,15.05,15.04,15.09,15.1,15.1,15.1,15.1,15.12,15.1,15.1,15.08,15.07,15.09,15.1,15.1,15.1,15.1,15.11,15.1,15.11,15.1,15.09,15.09,15.08,15.07,15.08,15.08,15.08,15.09,15.08,15.08,15.08,15.08,15.1,15.09,15.09,15.09,15.09,15.09,15.07,15.09,15.09,15.09,15.1,15.08,15.08,15.08,15.07,15.09,15.09,15.09,15.09,15.09,15.1,15.08,15.08,15.08,15.08,15.08,15.08,15.07,15.08,15.08,15.08,15.09,15.09,15.09,15.09,15.09,15.1,15.07,15.07,15.07,15.07,15.09,15.1,15.09,15.09,15.09,15.1,15.1,15.1,15.09,15.09,15.1,15.09,15.09,15.09,15.09,15.1,15.08,15.08,15.08,15.08,15.08,15.09,15.08,15.08,15.08,15.08,15.1,15.07,15.07,15.08,15.08,15.08,15.07,15.07,15.07,15.09,15.1,15.08,15.07,15.08,15.08,15.09,15.07,15.07,15.07,15.07,15.11,15.1,15.1,15.1,15.1,15.09,15.08,15.08,15.08,15.08,15.07,15.1,15.1,15.09,15.09,15.1,15.11,15.1,15.1,15.09,15.07,15.09,15.08,15.08,15.08,15.09,15.11,15.1,15.1,15.1,15.1,15.11,15.09,15.1,15.1,15.08,15.1,15.1,15.1,15.1,15.1,15.11,15.1,15.1,15.1,15.09,15.08,15.11,15.1,15.1,15.1,15.1,15.12,15.11,15.1,15.07,15.08,15.09,15.09,15.09,15.08,15.08,15.09,15.08,15.08,15.06,15.06,15.08,15.08,15.08,15.06,15.06,15.08,15.09,15.09,15.08,15.08,15.09,15.09,15.06,15.06,15.06,15.05,15.09,15.07,15.07,15.08,15.09,15.1,15.09,15.09,15.09,15.1,15.1,15.08,15.09,15.09,15.09,15.09,15.07,15.09,15.09,15.08,15.1,15.09,15.08,15.08,15.08,15.09,15.09,15.08,15.08,15.08,15.09,15.06,15.09,15.09,15.09,15.09,15.09,15.07,15.08,15.07,15.07,15.1,15.08,15.08,15.08,15.08,15.1,15.09,15.09,15.09,15.09,15.1,15.09,15.09,15.08,15.09,15.11,15.09,15.09,15.09,15.09,15.1,15.07,15.07,15.07,15.07,15.08,15.09,15.09,15.09,15.09,15.09,15.11,15.09,15.09,15.09,15.09,15.11,15.09,15.09,15.1,15.09,15.11,15.09,15.09,15.09,15.1,15.11,15.1,15.1,15.1,15.1,15.11,15.09,15.09,15.09,15.09,15.34,15.16,15.16,15.16,15.17,15.17,15.11,15.11,15.11,15.11,15.09,15.11,15.1,15.1,15.1,15.1,15.11,15.1,15.11,15.11,15.1,15.11,15.1,15.11,15.11,15.11,15.1,15.08,15.08,15.08,15.09,15.1,15.09,15.08,15.08,15.09,15.1,15.08,15.08,15.08,15.06,15.07,15.09,15.09,15.09,15.08,15.09,15.1,15.08,15.08,15.08,15.08,15.09,15.07,15.07,15.08,15.08,15.1,15.09,15.09,15.09,15.09,15.09,15.07,15.07,15.09,15.08,15.09,15.08,15.09,15.1,15.1,15.1,15.06,15.06,15.1,15.1,15.1,15.1,15.09,15.06,15.07,15.06,15.08,15.07,15.1,15.1,15.1,15.09,15.06,15.07,15.07,15.07,15.1,15.1,15.09,15.09,15.09,15.1,15.1,15.09,15.08,15.08,15.1,15.1,15.1,15.1,15.1,15.11,15.09,15.09,15.09,15.09,15.09,15.11,15.09,15.09,15.09,15.09,15.11,15.08,15.08,15.08,15.08,15.09,15.08,15.08,15.08,15.09,15.1,15.1,15.1,15.1,15.1,15.11,15.1,15.1,15.1,15.1,15.11,15.09,15.09,15.09,15.09,15.11,15.09,15.09,15.09,15.09,15.09,15.12,15.1,15.11,15.11,15.1,15.11,15.1,15.1,15.11,15.11,15.12,15.1,15.1,15.1,15.1,15.11,15.1,15.1,15.1,15.1,15.12,15.11,15.1,15.1,15.1,15.1,15.09,15.09,15.09,15.09,15.07,15.1,15.1,15.1,15.08,15.08,15.09,15.08,15.08,15.09,15.07,15.09,15.09,15.09,15.09,15.09,15.1,15.09,15.09,15.07,15.08,15.09,15.08,15.08,15.08,15.06,15.07,15.06,15.06,15.06,15.09,15.1,15.1,15.1,15.1,15.08,15.09,15.09,15.09,15.09,15.09,15.09,15.1,15.09,15.09,15.08,15.07,15.09,15.09,15.09,15.1,15.1,15.11,15.1,15.1,15.07,15.07,15.1,15.09,15.09,15.07,15.07,15.08,15.08,15.08,15.1,15.1,15.11,15.1,15.1,15.09,15.09,15.1,15.07,15.07,15.08,15.08,15.09,15.09,15.09,15.1,15.1,15.1,15.1,15.09,15.09,15.09,15.1,15.1,15.1,15.1,15.1,15.1,15.11,15.09,15.07,15.07,15.07,15.09,15.1,15.09,15.09,15.09,15.1,15.1,15.1,15.1,15.1,15.11,15.09,15.1,15.1,15.1,15.11,15.09,15.09,15.09,15.09,15.1,15.1,15.1,15.1,15.1,15.11,15.1,15.1,15.1,15.1,15.1,15.11,15.07,15.07,15.07,15.07,15.1,15.09,15.09,15.09,15.09,15.11,15.09,15.09,15.09,15.09,15.11,15.1,15.1,15.1,15.1,15.12,15.1,15.1,15.1,15.11,15.11,15.1,15.1,15.1,15.08,15.28,15.18,15.18,15.18,15.18,15.16,15.1,15.08,15.08,15.08,15.12,15.14,15.12,15.11,15.11,15.11,15.12,15.11,15.11,15.11,15.11,15.11,15.11,15.11,15.11,15.11,15.43,15.17,15.17,15.17,15.17,15.17,15.12,15.12,15.11,15.11,15.11,15.12,15.12,15.12,15.11,15.09,15.11,15.11,15.11,15.11,15.11,15.13,15.11,15.12,15.12,15.12,15.12,15.11,15.11,15.11,15.12,15.13,15.11,15.11,15.11,15.12,15.13,15.12,15.11,15.11,15.11,15.13,15.12,15.12,15.12,15.11,15.11,15.1,15.1,15.09,15.1,15.11,15.1,15.1,15.1,15.1,15.11,15.12,15.12,15.12,15.12,15.12,15.13,15.12,15.12,15.09,15.09,15.11,15.09,15.09,15.13,15.13,15.14,15.13,15.11,15.11,15.11,15.13,15.11,15.11,15.12,15.12,15.13,15.12,15.12,15.12,15.12,15.13,15.12,15.12,15.12,15.12,15.13,15.12,15.12,15.12,15.12,15.12,15.13,15.12,15.12,15.12,15.11,15.13,15.11,15.14,15.14,15.14,15.14,15.13,15.12,15.12,15.12,15.14,15.13,15.13,15.13,15.13,15.14,15.13,15.13,15.13,15.13,15.14,15.12,15.76,15.21,15.21,15.22,15.21,15.18,15.14,15.14,15.15,15.14,15.14,15.14,15.14,15.14,15.15,15.14,15.15,15.14,15.14,15.15,15.14,15.14,15.14,15.14,15.15,15.17,15.12,15.11,15.11,15.14,15.15,15.15,15.14,15.14,15.15,15.13,15.13,15.13,15.13,15.17,15.16,15.15,15.15,15.16,15.16,15.11,15.11,15.12,15.12,15.13,15.15,15.15,15.15,15.15,15.15,15.13,15.11,15.11,15.11,15.11,15.16,15.15,15.15,15.15,15.15,15.16,15.15,15.15,15.15,15.15,15.16,15.14,15.14,15.14,15.14,15.15,15.15,15.15,15.15,15.15,15.16,15.15,15.15,15.15,15.15,15.16,15.15,15.15,15.15,15.15,15.14,15.15,15.15,15.15,15.15,15.16,15.16,15.16,15.15,15.15,15.16,15.16,15.15,15.15,15.15,15.15,15.16,15.15,15.16,15.15,15.15,15.17,15.16,15.16,15.16,15.16,15.17,15.16,15.16,15.16,15.13,15.15,15.15,15.15,15.15,15.16,15.16,15.15,15.15,15.16,15.15,15.17,15.17,15.17,15.17,15.37,15.37,15.39,15.37,15.37,15.37,15.37,15.38,15.38,15.37,15.38,15.38,15.39,15.38,15.38,15.37,15.37,15.39,15.38,15.37,15.36,15.36,15.37,15.36,15.36,15.32,15.32,15.34,15.35,15.35,15.36,15.35,15.36,15.36,15.36,15.36,15.36,15.38,15.35,15.35,15.35,15.35,15.35,15.36,15.35,15.35,15.35,15.35,15.36,15.36,15.36,15.35,15.35,15.37,15.35,15.36,15.36,15.36,15.36,15.33,15.34,15.34,15.34,15.36,15.37,15.34,15.34,15.34,15.37,15.36,15.37,15.37,15.37,15.38,15.37,15.35,15.35,15.35,15.36,15.37,15.34,15.33,15.33,15.33,15.35,15.37,15.37,15.37,15.37,15.37,15.35,15.35,15.35,15.35,15.36,15.35,15.35,15.35,15.35,15.36,15.37,15.37,15.37,15.37,15.72,15.4,15.4,15.4,15.4,15.41,15.34,15.34,15.34,15.34,15.38,15.37,15.37,15.37,15.37,15.38,15.37,15.37,15.37,15.37,15.37,15.4,15.38,15.38,15.38,15.38,15.38,15.36,15.36,15.37,15.37,15.39,15.37,15.37,15.37,15.37,15.37,15.36,15.36,15.36,15.36,15.39,15.37,15.37,15.37,15.37,15.37,15.38,15.37,15.37,15.37,15.36,15.37,15.37,15.37,15.37,15.38,15.39,15.38,15.38,15.38,15.38,15.39,15.38,15.38,15.38,15.38,15.38,15.37,15.37,15.36,15.35,15.37,15.35,15.35,15.35,15.35,15.36,15.36,15.36,15.36,15.34,15.36,15.36,15.36,15.36,15.34,15.35,15.35,15.35,15.35,15.34,15.36,15.36,15.36,15.36,15.36,15.36,15.38,15.36,15.37,15.35,15.35,15.36,15.35,15.35,15.35,15.35,15.37,15.37,15.37,15.37,15.37,15.38,15.37,15.37,15.37,15.37,15.38,15.38,15.37,15.36,15.36,15.37,15.37,15.37,15.37,15.37,15.38,15.36,15.37,15.37,15.37,15.37,15.37,15.36,15.35,15.35,15.35,15.37,15.36,15.36,15.36,15.36,15.39,15.38,15.37,15.37,15.37,15.38,15.37,15.36,15.36,15.36,15.38,15.37,15.37,15.37,15.37,15.38,15.35,15.35,15.35,15.35,15.37,15.38,15.38,15.37,15.37,15.37,15.39,15.38,15.38,15.38,15.38,15.37,15.36,15.35,15.35,15.35,15.38,15.36,15.36,15.36,15.36,15.38,15.35,15.35,15.35,15.35,15.38,15.38,15.38,15.38,15.38,15.39,15.38,15.38,15.09,14.63,14.64,14.63,14.62,14.62,14.62,14.62,14.65,14.64,14.64,14.64,14.65,14.66,14.65,14.65,14.65,14.65,14.62,14.6,14.6,14.6,14.64,14.66,14.64,14.64,14.64,14.62,14.63,14.62,14.62,14.62,14.62,14.61,14.61,14.61,14.61,14.61,14.61,14.63,14.63,14.62,14.62,14.61,14.63,14.62,14.62,14.62,14.63,14.64,14.64,14.64,14.63,14.63,14.64,14.64,14.64,14.63,14.63,14.65,14.62,14.62,14.62,14.62,14.63,14.64,14.64,14.64,14.63,14.64,14.63,14.63,14.63,14.63,14.64,14.64,14.64,14.64,14.63,14.63,14.66,14.64,14.63,14.6,14.6,14.64,14.64,14.64,14.64,14.64,14.65,14.64,14.64,14.64,14.64,14.65,14.64,14.63,14.65,14.65,14.65,14.64,14.64,14.64,14.64,14.65,14.63,14.63,14.64,14.64,14.65,14.61,14.64,14.64,14.64,14.64,14.66,14.64,14.63,14.63,14.63,14.63,14.62,14.64,14.64,14.64,14.66,14.64,14.65,14.65,14.65,14.66,14.64,14.62,14.62,14.62,14.64,14.64,14.65,14.65,14.64,14.64,14.63,14.63,14.63,14.63,14.64,14.63,14.63,14.63,14.63,14.63,14.63,14.64,14.64,14.64,14.64,14.65,14.63,14.63,14.63,14.63,14.64,14.6,14.6,14.6,14.6,14.94,14.7,14.7,14.7,14.7,14.69,14.63,14.63,14.63,14.63,14.64,14.61,14.61,14.6,14.6,14.61,14.61,14.61,14.61,14.61,14.62,14.88,14.87,14.87,14.87,14.87,14.86,14.86,14.88,14.88,14.88,14.94,14.93,14.93,14.93,14.94,14.94,14.93,14.93,14.93,14.93,14.96,14.93,14.93,14.93,14.93,14.95,14.94,14.94,14.94,14.94,14.96,14.95,14.95,14.95,14.94,14.94,14.96,14.94,14.94,14.95,14.95,14.96,14.95,14.95,14.94,14.94,14.95,14.94,14.94,14.94,14.94,14.96,14.95,14.95,14.94,14.94,14.96,14.95,14.95,14.95,14.94,14.96,14.94,14.94,14.95,14.95,14.96,14.94,14.94,14.94,14.96,14.97,14.95,14.95,14.95,14.95,14.95,14.96,14.95,14.95,14.94,14.94,14.97,14.95,14.95,14.95,14.95,14.96,14.95,14.95,14.95,14.95,14.96,14.95,14.95,14.96,14.96,14.96,14.94,14.94,14.92,14.92,14.94,14.95,14.95,14.96,14.96,14.97,14.96,14.95,14.95,14.95,14.96,14.97,14.95,14.95,14.96,14.96,14.97,14.96,14.96,14.96,14.96,14.97,14.96,14.96,14.96,14.95,14.97,14.96,14.96,14.96,14.96,14.98,14.96,14.94,14.94,14.94,14.96,14.96,14.96,14.95,14.97,15.01,15.04,15,14.99,14.99,14.99,15.01,15.01,15.01,15.01,15.01,15.03,15.01,15.01,15.01,15.01,15.02,15.02,15.02,15.02,15.02,15.04,15.02,15.02,15.02,15.02,15.03,15.02,15.02,15.02,15.02,15.02,15.03,15.03,15.03,15.03,15.03,14.99,14.99,14.99,14.99,14.99,15.01,14.99,14.99,14.99,14.99,15.04,15.02,15.02,15.02,15.02,15.04,15.02,15.02,15.03,15.03,15.04,15.02,15.02,15.02,15.02,15.03,15.02,15.02,15.03,15.03,15.05,15.02,15.02,15.02,15.02,15.04,15.02,15.02,15.02,15.02,15.01,15.05,15.03,15.03,15.03,15.01,15.03,15.03,15.03,15.03,15.02,15.03,15.03,15.03,15.03,15.04,15.05,15.03,15.03,15.03,15.04,15.05,15.03,15.03,15.03,15.03,15.05,15.04,15.04,15.04,15.03,15.04,15.04,15.04,15.03,15.03,15.04,15.04,15.03,15.04,15.04,15.03,15.03,15.02,15.02,15.03,15.03,15.04,15.02,15.02,15.04,15.04,15.04,15.01,15.01,15.04,15.04,15.04,15.03,15.03,15.05,15.05,15.05,15.04,15.04,15.04,15.04,15.06,15.03,15.03,15.03,15.03,15.04,15.04,15.04,15.04,15.04,15.04,15.05,15.02,15.02,15.02,15.01,15.02,15.01,15.03,15.03,15.02,15.03,15.02,15.02,15.02,15.02,15.03,15.02,15.03,15.03,15.03,15.04,15.02,15,14.99,14.98,15,15.02,15,15,15,15.02,15.03,15.02,15.02,15.02,15.02,15.04,15,15,15,15,15.04,15.02,15.02,15.02,15.02,15.38,15.1,15.1,15.1,15.1,15.08,15.03,15.03,15.03,15.03,15.04,15.03,15.03,15.03,15.03,15.05,15.03,15.03,15.03,15.03,15.04,15.01,15.01,15.01,15.01,15.02,15.02,15.02,15.02,15.02,15.04,15.05,15.03,15.03,15.03,15.03,15.04,15.02,15.02,15.02,15.02,15.04,15.03,15.03,15.03,15.03,15.05,15.04,15.04,15.04,15.04,15.05,15.04,15.03,15.03,15.03,15.05,15.03,15.03,15.03,15.04,15.04,15.02,15,15,15,15.03,15.05,15.04,15.04,15.04,15.04,15.05,15.04,15.04,15.04,15.04,15.04,15.02,15.02,15.02,15.03,15.05,15.04,15.04,15.04,15.03,15.06,15.04,15.04,15.05,15.04,15.05,15.04,15.04,15.04,15.05,15.04,15.05,15.04,15.04,15.04,15.04,15.04,15.03,15.03,15.05,15.05,15.05,15.04,15.02,15.01,15.01,15.03,15.02,15.02,15.03,15.03,15.04,15.03,15.03,15.03,15.03,15.05,15.03,15.03,15.02,15.02,15.04,15.03,15.03,15.03,15.02,15.02,15.03,15.02,15,15,15,15.03,15.02,15.01,15.01,15.01,15.02,15.02,15.03,15.03,15.03,15.04,15.04,15.02,15.02,15.02,15.03,15.03,15.02,15.01,15.01,15.02,15.02,15.02,15.02,15.01,15.01,15.05,15.03,15.03,15.03,15.03,15.04,15.04,15.04,15.04,15.04,15.04,15.04,15.04,15.04,15.04,15.05,15.04,15.04,15.04,15.04,15.05,15.03,15.03,15.03,15.03,15.05,15.05,15.04,15.04,15.04,15.05,15.02,15.01,15.01,15.01,15.01,15.03,15.02,15.02,15.02,15.02,15.04,15.04,15.04,15.04,15.05,15.05,15.05,15.04,15.04,15.04,15.03,15.03,15.03,15.03,15.03,15.05,15.03,15.03,15.03,15.03,15.05,15.04,15.04,15.04,15.04,15.03,14.99,14.99,14.99,14.99,15.02,15.02,15.01,15.01,15.05,15.02,15.05,15.05,15.05,15.04,15.04,15.06,15.05,15.05,15.05,15.05,15.07,15.05,15.05,15.05,15.05,15.05,15.02,15.02,15.02,15.03,15.03,15.03,15.03,15.03,15.01,15.02,15.02,15.02,15.03,15.03,15.03,15.03,15.01,15.01,15.02,15.01,15.01,15,15,15.01,15.01,15.03,15.03,15.03,15.03,15.03,15.05,15.04,15.04,14.99,14.99,15.02,15.01,15.01,15.03,15.03,15.04,15.03,15.02,15.03,15.03,15.04,15.03,15.03,15.04,15.05,15.05,15.04,15.04,15.04,15.04,15.04,15.05,15.04,15.04,15.04,15.04,15.06,15.04,15.04,15.04,15.04,15.04,15.01,15,15,14.99,15.02,15.03,15.01,15.01,15.01,15.03,15.04,15.04,15.03,15.03,15.04,15.04,15.05,15.05,15.05,15.06,15.04,15.03,15.02,15.02,15.02,15.06,15.04,15.04,15.04,15.04,15.06,15.02,15.02,15.02,15.02,15.06,15.04,15.04,15.04,15.04,15.26,15.11,15.11,15.11,15.11,15.11,15.05,15.05,15.05,15.05,15.07,15.05,15.04,15.04,15.04,15.04,15.06,15.04,15.04,15.04,15.04,15.06,15.05,15.05,15.05,15.04,15.05,15.04,15.04,15.05,15.04,15.04,15.03,15.04,15.04,15.04,15.05,15.05,15.05,15.05,15.05,15.06,15.05,15.05,15.05,15.05,15.03,15.06,15.05,15.05,15.05,15.05,15.03,15.02,15.02,15.02,15.03,15.05,15.03,15.03,15.03,14.99,15.02,15.01,15.01,15.01,15.04,15.05,15.04,15.04,15.04,15.02,15.03,15.03,15.25,15.1,15.11,15.12,15.11,15.07,15.05,15.03,15.04,15.04,15.04,15.04,15.02,15.01,15.05,15.04,15.04,15.04,15.04,15.05,15.04,15.04,15.05,15.05,15.04,15.03,15.03,15.05,15.05,15.06,15.04,15.04,15.04,15.04,15.05,15.04,15.04,15.03,15.02,15.04,15.05,15.04,15.04,15.04,15.05,15.05,15.05,15.05,15.05,15.07,15.06,15.06,15.02,15.02,15.02,15.07,15.05,15.1,15.05,15.05,15.06,15.04,15.05,15.05,15.06,15.55,15.09,15.12,15.12,15.12,15.09,15.04,15.06,15.06,15.06,15.07,15.05,15.06,15.05,15.04,15.06,15.05,15.05,15.05,15.05,15.06,15.06,15.06,15.06,15.06,15.07,15.05,15.03,15.03,15.03,15.03,15.07,15.03,15.03,15.03,15.03,15.05,15.06,15.06,15.07,15.07,15.07,15.06,15.06,15.06,15.06,15.06,15.05,15.05,15.05,15.05,15.07,15.07,15.06,15.06,15.06,15.07,15.07,15.07,15.07,15.07,15.08,15.03,15.03,15.03,15.03,15.07,15.04,15.04,15.04,15.03,15.03,15.05,15.04,15.03,15.03,15.03,15.04,15.04,15.04,15.03,15.03,15.06,15.05,15.05,15.05,15.05,15.04,15.03,15.03,15.03,15.03,15.05,15.04,15.04,15.05,15.05,15.05,15.04,15.04,15.04,15.04,15.04,15.05,15.06,15.06,15.06,15.04,15.05,15.04,15.04,15.03,15.04,15.06,15.05,15.05,15.05,15.05,15.06,15.05,15.05,15.05,15.04,15.05,15.05,15.05,15.05,15.05,15.06,15.05,15.05,15.05,15.05,15.06,15.05,15.05,15.05,15.05,15.06,15.06,15.06,15.06,15.04,15.05,15.05,15.05,15.05,15.05,15.05,15.05,15.04,15.04,15.03,15.03,15.05,15.05,15.03,15.03,15.03,15.06,15.04,15.04,15.04,15.04,15.06,15.05,15.05,15.05,15.04,15.06,15.06,15.06,15.05,15.05,15.06,15.05,15.05,15.06,15.06,15.07,15.06,15.06,15.02,15.02,15.02,15.06,15.06,15.02,15.02,15.02,15.06,15.06,15.06,15.05,15.05,15.02,14.99,15.05,15.05,15.05,15.08,15.06,15.07,15.07,15.07,15.08,15.06,15.04,15.03,15.03,15.05,15.07,15.06,15.06,15.06,15.06,15.06,15.06,15.06,15.06,15.08,15.07,15.02,15.01,15.02,15.02,15.32,15.08,14.71,14.69,14.69,14.66,14.63,14.63,14.63,14.63,14.62,14.61,14.61,14.61,14.61,14.64,14.63,14.63,14.63,14.63,14.64,14.63,14.63,14.63,14.63,14.64,14.63,14.63,14.63,14.63,14.64,14.64,14.64,14.64,14.64,14.66,14.65,14.65,14.65,14.65,14.65,14.65,14.64,14.64,14.64,14.64,14.66,14.65,14.65,14.65,14.64,14.64,14.62,14.62,14.62,14.62,14.66,14.65,14.64,14.64,14.64,14.66,14.65,14.65,14.65,14.65,14.66,14.65,14.65,14.65,14.65,14.64,14.65,14.65,14.65,14.65,14.66,14.65,14.65,14.65,14.65,14.65,14.66,14.65,14.65,14.65,14.66,14.7,14.9,14.96,14.99,15.05,15.06,15.05,15.04,15.04,15.05,15.06,15.05,15.05,15.05,15.05,15.07,15.04,15.04,15.04,15.05,15.05,15.02,15.02,15.04,15.04,15.05,15.05,15.04,15.04,15.05,15.07,15.03,15.03,15.03,15.02,15.02,15.05,15.03,15.03,15.03,15.03,15.05,15.04,15.04,15.04,15.04,15.05,15.05,15.05,15.05,15.05,15.05,15.02,15.04,15.04,15.04,15.05,15.06,15.06,15.05,15.05,15.06,15.02,15.02,14.99,14.99,15.02,15.03,15.03,15.03,15.03,15.04,15.03,15.03,15.03,15.03,15.03,15.04,15.03,15.02,15.02,15.02,15.04,15.03,15.04,15.04,15.04,15.05,15.03,15.03,15.03,15.03,15.04,15.04,15.04,15.04,15.04,15.05,15.05,15.05,15.05,15.05,15.06,15.04,15.24,15.22,15.13,15.14,15.16,15.17,15.18,15.18,15.18,15.18,15.17,15.17,15.17,15.17,15.16,15.18,15.18,15.17,15.17,15.19,15.16,15.16,15.16,15.16,15.19,15.17,15.17,15.16,15.17,15.19,15.18,15.17,15.17,15.17,15.19,15.17,15.17,15.17,15.17,15.19,15.17,15.17,15.17,15.17,15.17,15.19,15.17,15.17,15.17,15.17,15.18,15.17,15.18,15.17,15.17,15.2,15.18,15.18,15.18,15.18,15.19,15.18,15.18,15.18,15.18,15.19,15.17,15.17,15.17,15.18,15.19,15.18,15.18,15.18,15.18,15.18,15.18,15.18,15.18,15.18,15.2,15.18,15.18,15.18,15.18,15.19,15.19,15.17,15.17,15.18,15.19,15.2,15.19,15.2,15.19,15.17,15.19,15.19,15.19,15.18,15.19,15.2,15.19,15.19,15.19,15.16,15.18,15.17,15.17,15.17,15.19,15.2,15.19,15.18,15.16,15.15,15.16,15.16,15.16,15.16,15.17,15.17,15.18,15.17,15.17,15.17,15.17,15.18,15.16,15.17,15.18,15.18,15.19,15.18,15.18,15.17,15.17,15.18,15.18,15.18,15.15,15.15,15.18,15.17,15.17,15.18,15.18,15.19,15.17,15.17,15.18,15.18,15.19,15.18,15.18,15.16,15.16,15.17,15.18,15.17,15.18,15.18,15.18,15.18,15.16,15.18,15.18,15.18,15.19,15.18,15.18,15.18,15.18,15.6,15.25,15.23,15.22,15.22,15.22,15.19,15.18,15.18,15.18,15.19,15.18,15.16,15.16,15.16,15.18,15.19,15.19,15.18,15.18,15.2,15.19,15.18,15.17,15.16,15.17,15.17,15.19,15.19,15.19,15.18,15.19,15.19,15.19,15.19,15.19,15.2,15.18,15.18,15.18,15.18,15.19,15.18,15.18,15.18,15.18,15.2,15.19,15.19,15.19,15.19,15.2,15.17,15.17,15.18,15.18,15.2,15.19,15.19,15.19,15.19,15.2,15.19,15.2,15.2,15.2,15.21,15.19,15.19,15.19,15.19,15.21,15.18,15.18,15.19,15.2,15.2,15.2,15.19,15.19,15.19,15.19,15.18,15.17,15.17,15.17,15.17,15.21,15.2,15.2,15.2,15.2,15.22,15.2,15.21,15.2,15.18,15.17,15.16,15.16,15.16,15.16,15.19,15.18,15.18,15.18,15.19,15.19,15.19,15.19,15.19,15.19,15.19,15.2,15.18,15.18,15.18,15.18,15.2,15.18,15.18,15.18,15.18,15.2,15.19,15.19,15.19,15.19,15.2,15.19,15.19,15.19,15.19,15.2,15.19,15.18,15.2,15.21,15.21,15.2,15.2,15.2,15.2,15.21,15.2,15.2,15.2,15.17,15.17,15.2,15.2,15.2,15.08,15.08,15.09,15.08,15.08,15.09,15.09,15.09,15.08,15.08,15.09,15.09,15.11,15.09,15.09,15.09,15.1,15.1,15.09,15.09,15.09,15.09,15.1,15.09,15.09,15.09,15.09,15.1,15.07,15.08,15.1,15.1,15.1,15.08,15.07,15.09,15.09,15.09,15.1,15.08,15.06,15.06,15.06,15.09,15.09,15.08,15.08,15.08,15.08,15.07,15.07,15.07,15.07,15.07,15.05,15.07,15.07,15.07,15.09,15.08,15.1,15.1,15.1,15.12,15.09,15.08,15.07,15.07,15.07,15.07,15.09,15.09,15.09,15.09,15.11,15.1,15.09,15.09,15.09,15.11,15.1,15.1,15.1,15.1,15.11,15.08,15.08,15.08,15.08,15.09,15.11,15.11,15.11,15.11,15.12,15.1,15.1,15.1,15.1,15.09,15.07,15.07,15.07,15.07,15.09,15.07,15.07,15.07,15.07,15.07,15.08,15.07,15.08,15.07,15.07,15.1,15.09,15.09,15.09,15.09,15.1,15.09,15.1,15.1,15.09,15.07,15.05,15.05,15.05,15.05,15.1,15.09,15.09,15.09,15.09,15.09,15.09,15.09,15.09,15.08,15.11,15.08,15.08,15.09,15.09,15.09,15.12,15.1,15.1,15.1,15.09,15.1,15.09,15.09,15.09,15.09,15.1,15.09,15.09,15.11,15.24,15.25,15.24,15.24,15.24,15.23,15.25,15.24,15.24,15.24,15.21,15.23,15.23,15.23,15.23,15.2,15.21,15.22,15.22,15.22,15.24,15.25,15.25,15.24,15.24,15.23,15.23,15.25,15.24,15.24,15.24,15.24,15.25,15.24,15.24,15.24,15.24,15.26,15.24,15.25,15.22,15.22,15.24,15.24,15.24,15.24,15.23,15.25,15.24,15.24,15.23,15.23,15.55,15.31,15.31,15.31,15.31,15.31,15.25,15.24,15.25,15.25,15.25,15.26,15.26,15.25,15.25,15.25,15.26,15.26,15.3,15.3,15.3,15.33,15.33,15.32,15.32,15.32,15.33,15.32,15.29,15.29,15.29,15.31,15.31,15.34,15.33,15.33,15.34,15.3,15.32,15.31,15.3,15.34,15.4,15.37,15.37,15.37,15.37,15.43,15.52,15.43,15.42,15.42,15.43,15.4,15.78,15.78,15.74,15.8,15.8,15.79,15.74,15.74,15.74,15.73,15.73,15.73,15.73,15.74,15.74,15.74,15.74,15.75,15.75,15.74,15.74,15.74,15.74,15.75,15.74,16.12,16.95,16.16,16.76,20.29,27.04,19.05,20.6,15.75,15.78,15.76,15.77,26.74,28.42,19.33,16.32,24.29,24.28,16.96,17.01,24.48,26.89,17.01,17.05,17.07,17.05,17.05,17.05,17.05,17.06,17.05,17.05,17.06,17.06,17.08,17.06,17.06,18.86,29.17,17.77,17.01,17.01,17.01,17.01,16.99,17.02,17.01,17.01,17.01,17.02,17.03,17.02,17.02,17.03,27.84,21.41,17.07,17.07,17.07,17.07,17.09,17.08,17.08,17.08,17.09,17.41,29.7,20.06,29.29,24.5,27.9,21.25,28.12,27.92,16.99,22.91,25.84,17.02,16.93,16.94,16.94,16.94,16.93,16.93,16.93,16.93,16.95,16.94,16.94,16.95,16.95,16.96,16.95,16.93,16.93,16.93,16.95,16.93,16.93,16.94,16.94,16.95,16.95,16.95,16.95,16.95,16.96,16.95,16.95,16.92,16.92,16.91,16.92,16.94,16.93,16.93,16.9,16.93,16.93,16.9,16.9,16.9,16.92,16.91,16.9,16.9,16.9,16.94,16.93,16.92,16.91,16.91,16.93,16.93,16.92,16.92,16.92,16.93,16.93,16.93,16.93,16.93,16.94,16.95,16.94,16.94,16.94,16.95,16.92,16.92,16.92,16.92,16.93,16.92,16.93,16.93,16.93,16.93,16.92,16.94,16.94,16.93,16.93,16.95,16.95,16.95,16.95,16.92,16.93,16.89,16.89,16.89,16.89,16.94,16.92,16.92,16.92,16.92,16.94,16.93,16.93,16.92,16.92,16.93,16.95,16.95,16.93,16.92,16.92,16.91,16.9,16.9,16.9,16.9,16.92,16.9,16.9,16.9,16.9,16.96,16.95,16.95,16.95,16.95,16.97,16.96,16.94,16.93,16.93,16.93,16.93,16.92,16.92,16.92,16.94,16.94,16.94,16.94,16.94,16.97,16.94,16.94,16.94,16.94,16.96,16.96,16.94,16.92,16.92,16.94,16.95,16.94,16.94,16.94,16.95,16.93,16.92,16.92,16.92,16.94,16.96,16.95,16.95,16.95,16.95,16.98,16.96,16.94,16.93,16.94,16.94,16.93,16.93,16.93,16.93,16.94,16.95,16.95,16.94,16.93,16.94,16.93,16.93,16.96,16.95,16.95,16.97,16.95,16.93,16.94,16.94,16.94,16.93,16.93,16.93,16.93,16.94,16.93,16.94,16.92,16.92,16.93,16.92,16.92,16.93,16.93,17.21,17.02,16.99,16.99,16.99,16.99,16.93,16.93,16.93,16.93,16.94,16.92,16.92,16.93,16.93,16.93,16.94,16.93,16.92,16.92,16.93,16.92,16.89,16.9,16.9,16.89,16.92,16.91,16.93,16.93,16.93,16.95,16.93,16.93,16.93,16.93,16.94,16.95,16.95,16.95,16.95,16.95,16.94,16.93,16.93,16.93,16.94,16.92,16.91,16.91,16.91,16.93,16.94,16.94,16.94,16.94,16.94,16.95,16.95,16.94,16.94,16.94,16.95,16.94,16.92,16.92,16.92,16.94,16.94,16.94,16.94,16.94,16.95,16.94,16.94,16.94,16.94,16.96,16.94,16.94,16.94,16.94,16.96,16.96,16.94,16.94,16.93,16.93,16.94,16.93,16.93,16.93,16.93,16.95,16.94,16.94,16.94,16.95,16.96,16.95,16.95,16.95,16.95,16.97,16.94,16.93,16.93,16.93,16.94,16.92,16.92,16.92,16.92,16.98,16.94,16.94,16.95,16.95,16.94,16.95,16.95,16.95,16.95,16.96,16.92,16.91,16.91,16.95,16.95,16.96,16.95,16.95,16.95,16.95,16.95,16.94,16.95,16.95,16.96,16.98,16.96,16.95,16.95,16.95,16.96,16.92,16.92,16.93,16.93,16.94,16.92,16.92,16.92,16.94,16.95,16.91,16.91,16.92,16.94,16.95,16.95,16.95,16.95,16.94,16.95,16.93,16.92,16.93,16.93,16.93,16.95,16.94,16.93,16.94,16.94,16.94,16.92,16.92,16.95,16.95,16.96,16.95,16.95,16.96,16.96,16.94,16.91,16.93,16.94,16.94,16.96,16.94,16.94,16.93,16.93,16.95,16.94,16.94,16.94,16.94,16.96,16.94,16.94,16.96,16.96,16.96,16.94,16.94,16.93,16.93,16.93,16.93,16.92,16.95,16.95,16.94,16.95,16.95,16.95,16.95,16.95,16.96,16.95,16.96,16.96,16.96,16.97,16.94,16.92,16.92,16.91,16.93,16.94,16.94,16.94,16.94,16.96,16.96,16.93,16.93,16.93,16.95,16.96,16.94,16.94,16.95,16.96,16.95,16.95,16.95,16.95,16.95,16.96,16.94,16.94,16.94,16.94,16.96,16.96,16.96,16.96,16.96,16.98,16.96,16.96,16.97,16.96,16.96,16.94,16.94,16.94,16.95,16.95,16.95,16.95,16.95,16.95,16.96,16.97,16.96,16.96,16.96,16.97,16.96,16.96,16.96,16.96,16.97,16.94,16.94,16.94,16.94,16.95,16.92,16.92,16.92,16.92,16.92,16.96,16.94,16.94,16.94,16.94,16.96,16.96,16.96,16.96,16.95,16.95,16.94,16.93,16.94,16.94,15.59,15.14,15.14,15.14,15.14,15.16,15.14,15.14,15.14,15.14,15.16,15.14,15.14,15.14,15.14,15.13,15.12,15.12,15.12,15.12,15.15,15.15,15.13,15.13,15.14,15.14,15.15,15.14,15.14,15.14,15.15,15.14,15.12,15.12,15.12,15.12,15.13,15.12,15.12,15.12,15.15,15.16,15.14,15.14,15.14,15.15,15.16,15.14,15.14,15.14,15.13,15.42,15.2,15.2,15.21,15.21,15.22,15.11,15.11,15.11,15.14,15.14,15.13,15.11,15.11,15.15,15.2,15.26,15.25,15.25,15.26,15.26,15.27,15.26,15.26,15.26,15.26,15.28,15.27,15.26,15.26,15.26,15.27,15.26,15.26,15.26,15.26,15.27,15.26,15.26,15.26,15.25,15.28,15.26,15.26,15.26,15.28,15.31,15.34,15.34,15.34,15.34,15.34,15.32,15.31,15.31,15.31,15.31,15.34,15.34,15.31,15.31,15.31,15.35,15.35,15.34,15.34,15.34,15.36,15.34,15.35,15.29,15.3,15.33,15.32,15.32,15.32,15.32,15.34,15.34,15.34,15.34,15.34,15.36,15.34,15.3,15.29,15.29,15.3,15.31,15.32,15.32,15.32,15.33,15.32,15.32,15.32,15.32,15.31,15.32,15.29,15.29,15.3,15.3,15.32,15.31,15.31,15.31,15.31,15.32,15.33,15.33,15.33,15.33,15.34,15.33,15.33,15.33,15.33,15.34,15.33,15.33,15.33,15.33,15.34,15.32,15.33,15.32,15.32,15.32,15.33,15.32,15.32,15.32,15.32,15.34,15.33,15.33,15.33,15.33,15.34,15.31,15.31,15.32,15.32,15.34,15.32,15.32,15.32,15.32,15.33,15.32,15.32,15.32,15.32,15.34,15.33,15.33,15.33,15.33,15.34,15.34,15.33,15.33,15.33,15.31,15.32,15.32,15.32,15.32,15.32,15.34,15.33,15.33,15.33,15.33,15.34,15.33,15.33,15.33,15.33,15.34,15.33,15.33,15.33,15.33,15.34,15.33,15.33,15.33,15.33,15.36,15.35,15.34,15.34,15.34,15.35,15.33,15.33,15.33,15.34,15.35,15.34,15.34,15.34,15.34,15.35,15.33,15.33,15.33,15.34,15.34,15.36,15.34,15.32,15.32,15.32,15.35,15.33,15.33,15.34,15.34,15.35,15.34,15.34,15.34,15.34,15.36,15.35,15.35,15.35,15.35,15.35,15.34,15.34,15.35,15.35,15.37,15.35,15.35,15.34,15.33,15.34,15.33,15.34,15.3,15.3,15.3,15.31,15.3,15.32,15.31,15.32,15.33,15.31,15.33,15.33,15.33,15.35,15.33,15.33,15.34,15.34,15.35,15.34,15.33,15.33,15.33,15.34,15.33,15.33,15.33,15.33,15.34,15.34,15.34,15.34,15.34,15.35,15.33,15.29,15.29,15.3,15.3,15.34,15.33,15.33,15.33,15.33,15.34,15.34,15.34,15.34,15.34,15.34,15.3,15.3,15.3,15.3,15.33,15.31,15.31,15.31,15.31,15.35,15.33,15.33,15.33,15.33,15.35,15.34,15.34,15.34,15.55,15.42,15.41,15.41,15.41,15.36,15.36,15.35,15.35,15.35,15.35,15.35,15.36,15.34,15.34,15.34,15.34,15.36,15.35,15.35,15.35,15.35,15.35,15.34,15.34,15.34,15.34,15.35,15.27,15.28,15.29,15.29,15.27,15.26,15.26,15.26,15.26,15.29,15.28,15.28,15.28,15.28,15.28,15.29,15.28,15.28,15.28,15.27,15.29,15.28,15.29,15.28,15.28,15.58,15.35,15.35,15.35,15.34,15.31,15.28,15.28,15.28,15.27,15.29,15.29,15.29,15.29,15.28,15.29,15.28,15.28,15.28,15.28,15.29,15.28,15.28,15.28,15.29,15.3,15.28,15.28,15.29,15.24,15.19,15.21,15.2,15.2,15.2,15.2,15.21,15.2,15.2,15.2,15.2,15.21,15.2,15.2,15.2,15.2,15.22,15.21,15.21,15.19,15.19,15.21,15.21,15.21,15.21,15.21,15.22,15.21,15.21,15.21,15.21,15.22,15.2,15.2,15.21,15.21,15.22,15.2,15.2,15.17,15.17,15.18,15.19,15.19,15.21,15.21,15.21,15.22,15.21,15.18,15.18,15.18,15.21,15.2,15.2,15.2,15.2,15.22,15.11,15.1,15.1,15.1,15.1,15.07,15.1,15.1,15.09,15.1,15.09,15.1,15.1,15.1,15.12,15.1,15.08,15.08,15.08,15.09,15.1,15.09,15.08,15.08,15.09,15.07,15.08,15.08,15.08,15.08,15.12,15.07,15.07,15.08,15.08,15.11,15.12,15.12,15.12,15.11,15.12,15.1,15.1,15.1,15.1,15.12,15.1,15.1,15.1,15.09,15.11,15.11,15.11,15.11,15.11,15.11,15.1,15.1,15.1,15.09,15.11,15.11,15.11,15.11,15.11,15.11,15.12,15.1,15.1,15.1,15.1,15.12,15.11,15.11,15.11,15.11,15.12,15.11,15.11,15.11,15.11,15.11,15.1,15.1,15.1,15.1,15.12,15.12,15.11,15.11,15.11,15.12,15.11,15.11,15.11,15.11,15.13,15.12,15.11,15.11,15.11,15.13,15.12,15.11,15.12,15.12,15.12,15.13,15.12,15.11,15.11,15.09,15.11,15.11,15.11,15.11,15.09,15.12,15.11,15.09,15.1,15.08,15.09,15.09,15.09,15.09,15.09,15.11,15.09,15.09,15.09,15.1,15.11,15.08,15.08,15.08,15.1,15.11,15.09,15.09,15.09,15.1,15.1,15.12,15.1,15.1,15.1,15.1,15.11,15.1,15.1,15.1,15.1,15.11,15.1,15.1,15.1,15.1,15.11,15.08,15.08,15.09,15.09,15.11,15.09,15.09,15.1,15.1,15.12,15.1,15.1,15.07,15.07,15.09,15.1,15.1,15.11,15.11,15.12,15.1,15.11,15.11,15.11,15.11,15.12,15.11,15.11,15.11,15.11,15.12,15.1,15.11,15.11,15.11,15.12,15.1,15.11,15.11,15.11,15.12,15.11,15.08,15.08,15.08,15.1,15.11,15.11,15.11,15.11,15.12,15.11,15.1,15.09,15.09,15.11,15.11,15.09,15.09,15.09,15.09,15.12,15.12,15.12,15.12,15.11,15.12,15.11,15.11,15.12,15.12,15.12,15.09,15.09,15.09,15.09,15.12,15.12,15.12,15.12,15.12,15.12,15.09,15.09,15.09,15.09,15.1,15.11,15.11,15.12,15.12,15.12,15.12,15.12,15.12,15.12,15.14,15.11,15.11,15.11,15.12,15.12,15.09,15.08,15.07,15.05,15.05,15.11,15.1,15.1,15.1,15.1,15.1,15.09,15.09,15.09,15.09,15.44,15.16,15.16,15.15,15.15,15.14,15.09,15.09,15.09,15.09,15.1,15.09,15.09,15.09,15.09,15.1,15.1,15.1,15.1,15.1,15.13,15.1,15.1,15.1,15.09,15.1,15.11,15.1,15.1,15.1,15.09,15.09,15.07,15.07,15.07,15.07,15.1,15.1,15.1,15.11,15.11,15.11,15.09,15.09,15.09,15.11,15.11,15.09,15.09,15.09,15.11,15.12,15.11,15.11,15.1,15.09,15.1,15.11,15.11,15.11,15.11,15.12,15.13,15.11,15.1,15.11,15.11,15.11,15.1,15.1,15.1,15.1,15.11,15.1,15.09,15.09,15.09,15.11,15.11,15.1,15.09,15.09,15.11,15.09,15.09,15.09,15.09,15.11,15.11,15.1,15.11,15.11,15.12,15.11,15.11,15.12,15.12,15.13,15.11,15.11,15.1,15.1,15.1,15.14,15.12,15.11,15.11,15.1,15.12,15.11,15.12,15.12,15.12,15.13,15.12,15.12,15.12,15.12,15.12,15.1,15.11,15.12,15.12,15.12,15.1,15.1,15.1,15.1,15.11,15.1,15.1,15.1,15.1,15.11,15.11,15.13,15.13,15.13,15.12,15.1,15.1,15.1,15.1,15.1,15.11,15.1,15.09,15.09,15.09,15.1,15.08,15.08,15.08,15.08,15.1,15.07,15.07,15.06,15.06,15.08,15.09,15.09,15.09,15.09,15.1,15.07,15.07,15.06,15.29,15.17,15.16,15.16,15.16,15.13,15.12,15.1,15.1,15.1,15.1,15.1,15.12,15.1,15.1,15.09,15.09,15.12,15.11,15.11,15.1,15.1,15.09,15.08,15.08,15.08,15.08,15.12,15.11,15.1,15.1,15.1,15.11,15.1,15.1,15.1,15.09,15.12,15.11,15.11,15.11,15.11,15.12,15.1,15.1,15.1,15.1,15.12,15.11,15.11,15.11,15.11,15.11,15.12,15.11,15.11,15.11,15.11,15.12,15.1,15.1,15.1,15.11,15.12,15.11,15.11,15.12,15.11,15.12,15.12,15.12,15.12,15.1,15.13,15.12,15.11,15.1,15.09,15.1,15.09,15.09,15.1,15.11,15.11,15.1,15.1,15.1,15.11,15.11,15.11,15.09,15.1,15.12,15.12,15.12,15.11,15.12,15.11,15.11,15.11,15.09,15.09,15.12,15.12,15.12,15.1,15.1,15.12,15.12,15.13,15.11,15.11,15.11,15.12,15.13,15.12,15.12,15.1,15.1,15.12,15.09,15.09,15.1,15.1,15.13,15.1,15.1,15.1,15.1,15.1,15.11,15.09,15.09,15.1,15.1,15.11,15.1,15.09,15.09,15.09,15.1,15.09,15.09,15.09,15.09,15.11,15.1,15.07,15.07,15.07,15.09,15.09,15.09,15.1,15.1,15.11,15.09,15.11,15.11,15.11,15.12,15.11,15.1,15.1,15.1,15.12,15.11,15.11,15.11,15.11,15.11,15.11,15.1,15.11,15.1,15.1,15.12,15.1,15.1,15.1,15.09,15.12,15.1,15.1,15.1,15.1,15.12,15.11,15.11,15.11,15.11,15.12,15.08,15.08,15.08,15.08,15.42,15.18,15.18,15.18,15.18,15.18,15.11,15.11,15.11,15.11,15.12,15.1,15.11,15.11,15.11,15.12,15.1,15.1,15.1,15.1,15.1,15.11,15.1,15.1,15.1,15.1,15.12,15.1,15.1,15.1,15.1,15.12,15.11,15.12,15.12,15.11,15.12,15.11,15.11,15.11,15.11,15.13,15.12,15.12,15.12,15.12,15.13,15.11,15.11,15.11,15.11,15.13,15.11,15.11,15.11,15.11,15.11,15.12,15.11,15.11,15.1,15.1,15.13,15.12,15.12,15.12,15.12,15.13,15.12,15.12,15.12,15.11,15.1,15.09,15.09,15.09,15.11,15.12,15.09,15.1,15.09,15.1,15.11,15.1,15.1,15.1,15.1,15.11,15.09,15.09,15.09,15.1,15.1,15.11,15.1,15.1,15.13,15.5,15.18,15.17,15.17,15.17,15.15,15.1,15.08,15.08,15.1,15.1,15.1,15.09,15.09,15.08,15.08,15.1,15.11,15.11,15.11,15.11,15.12,15.1,15.09,15.11,15.11,15.12,15.11,15.11,15.11,15.11,15.11,15.09,15.09,15.11,15.11,15.11,15.1,15.09,15.1,15.1,15.1,15.1,15.11,15.1,15.1,15.11,15.11,15.09,15.11,15.11,15.11,15.1,15.06,15.08,15.08,15.09,15.11,15.11,15.11,15.11,15.11,15.12,15.12,15.12,15.12,15.12,15.13,15.11,15.12,15.11,15.11,15.11,15.11,15.11,15.11,15.11,15.11,15.12,15.11,15.11,15.11,15.11,15.13,15.12,15.12,15.12,15.12,15.13,15.12,15.12,15.12,15.12,15.13,15.1,15.1,15.1,15.1,15.11,15.09,15.09,15.09,15.09,15.13,15.09,15.09,15.09,15.09,15.1,15.12,15.12,15.12,15.12,15.14,15.11,15.11,15.11,15.11,15.11,15.13,15.12,15.12,15.12,15.12,15.12,15.09,15.09,15.09,15.09,15.11,15.1,15.1,15.1,15.1,15.1,15.1,15.1,15.1,15.1,15.12,15.11,15.11,15.1,15.1,15.12,15.1,15.1,15.1,15.1,15.11,15.1,15.1,15.1,15.1,15.12,15.11,15.11,15.11,15.11,15.1,15.11,15.1,15.1,15.11,15.11,15.12,15.11,15.11,15.1,15.1,15.11,15.1,15.1,15.1,15.1,15.11,15.1,15.11,15.11,15.11,15.13,15.11,15.11,15.11,15.08,15.09,15.1,15.1,15.1,15.11,15.11,15.12,15.11,15.09,15.09,15.09,15.12,15.12,15.12,15.11,15.11,15.12,15.1,15.1,15.11,15.11,15.13,15.11,15.11,15.11,15.11,15.12,15.11,15.11,15.11,15.11,15.12,15.11,15.11,15.11,15.11,15.12,15.11,15.1,15.1,15.11,15.12,15.11,15.11,15.12,15.12,15.12,15.12,15.11,15.12,15.12,15.12,15.1,15.08,15.11,15.11,15.11,15.12,15.1,15.11,15.1,15.1,15.12,15.12,15.12,15.12,15.12,15.13,15.12,15.12,15.12,15.12,15.14,15.12,15.11,15.11,15.11,15.12,15.12,15.13,15.13,15.12,15.12,15.48,15.19,15.19,15.14,15.12,15.07,15.04,15.02,15.02,15.02,15.05,15.02,15.02,15.02,15.02,15.04,15.03,15.03,15.03,15.03,15.04,15.03,15.03,15.03,15.03,15.03,15,15,15,15,15.02,15.02,15.02,15.02,15.02,15.04,15.03,15.03,15.03,15.03,15.03,15.04,15.03,15.03,15.03,15.02,15.04,15.03,15.03,15.03,15.03,15.04,15.03,15.03,15.03,15.02,15.05,15.04,15.03,15.03,15.03,15.04,15.03,15.03,15.03,15.04,15.02,15.02,15.02,15.02,15.02,15.03,14.98,14.98,14.98,15.03,15.03,15.04,15.04,15.04,15.04,15.04,15.04,15.03,15.03,15.03,15.04,15.04,15.02,15.02,15.02,15.04,15.03,15.01,15.01,15.02,15.05,15.06,15.04,15.04,15.04,15.05,15.05,15.03,15.03,15.04,15,15.02,15.03,15.03,15.04,15.02,15.04,15.03,15.03,15.01,15.04,15.04,15.04,15.03,15.03,15.04,15.04,15.05,15.04,15.04,15.05,15.05,15.06,15.03,15.04,15.02,15.02,15.03,15.02,15.05,15.04,15.04,15.06,15.06,15.06,15.06,15.06,15.05,15.01,15.01,15.03,15.03,15.04,15.04,15.04,15.03,15.03,15.04,15.05,15.05,15.04,15.03,15.03,15.01,15.01,15.03,15.03,15.03,15.03,15.02,15.01,15.01,15.01,14.99,14.98,15,15,15,15.04,15.03,15.03,15.03,15.03,15.05,15.03,15.03,15.03,15.03,15.04,15.04,15.02,15.02,15.02,15.03,15.02,15.03,15.03,15.03,15.03,15.03,15.03,15.03,15.03,15.05,15.04,15.01,15.01,15.01,15.01,15.04,15.03,15.03,15.03,15.03,15.05,15.04,15.04,15.04,15.04,15.05,15.03,15.03,15.03,15.03,15.05,15.04,15.04,15.04,15.04,15.05,15.04,15.04,15.04,15.04,15.05,15,15,15,15,15.01,15.05,15.05,15.05,15.05,15.06,15.04,15.04,15.04,15.04,15.05,15.01,15.01,15.01,15.01,15.01,15.07,15.05,15.05,15.05,15.04,15.05,15.04,15.04,15.04,15.04,15.05,15.04,15.03,15.03,15.03,15.05,15.05,15.05,15.04,15.05,15.05,15,15,15,15,15.04,15.03,15.04,15.03,15.03,15.05,15.01,15.01,15.01,15.05,15.06,15.04,15.04,15.04,15.04,15.05,15.07,15.05,15.05,15.04,15.05,15.06,15.05,15.05,15.05,15.05,15.06,15.05,15.04,15.02,15.01,15.03,15.03,15.03,15.03,15.02,15.02,14.99,14.99,15.03,15.01,15.02,15.01,15.01,15.01,15.03,15.04,15.01,15.02,15.02,15,14.99,15.05,15.03,15.03,14.98,14.98,15.02,15.02,15.02,15.02,15.03,15.04,15.04,15.03,15.03,15.03,15.04,15.03,15.03,15.03,15.03,15.04,15.02,15.02,15.03,15.03,15.04,15.02,15.03,15.03,15.03,15.04,15.04,15.04,15.04,15.04,15.26,15.16,15.07,15.1,15.1,15.1,15.05,15.04,15.03,15.03,15.03,15.03,15.04,15.05,15.05,15.05,15.05,15.04,15.01,15,15.01,15.04,15.03,15.04,15.04,15.04,15.05,15.04,15.04,15.04,15.04,15.05,15.04,15.05,15.05,15.05,15.05,15.04,15.04,15.04,15.04,15.04,15.06,15.01,15.01,15.01,15.01,15.04,15.05,15.05,15.05,15.04,15.04,15.03,15.03,15.03,15.03,15.05,15.05,15.05,15.05,15.05,15.06,15.05,15.05,15.05,15.05,15.06,15.05,15.05,15.05,15.05,15.06,15.05,15.05,15.05,15.05,15.06,15.06,15.06,15.06,15.05,15.05,15.07,15.05,15.05,15.05,15.05,15.11,15.12,15.12,15.12,15.11,15.11,15.1,15.1,15.1,15.1,15.12,15.11,15.11,15.11,15.1,15.1,15.08,15.08,15.08,15.08,15.12,15.1,15.1,15.1,15.1,15.12,15.11,15.11,15.11,15.11,15.09,15.1,15.1,15.1,15.1,15.1,15.09,15.07,15.07,15.07,15.11,15.12,15.12,15.12,15.11,15.12,15.1,15.08,15.08,15.08,15.09,15.1,15.09,15.1,15.1,15.1,15.12,15.12,15.12,15.12,15.12,15.12,15.11,15.11,15.12,15.12,15.13,15.1,15.1,15.1,15.11,15.11,15.13,15.11,15.11,15.11,15.11,15.13,15.12,15.12,15.11,15.11,15.08,15.07,15.07,15.08,15.08,15.1,15.09,15.09,15.12,15.12,15.12,15.09,15.09,15.11,15.12,15.13,15.12,15.12,15.12,15.12,15.12,15.08,15.11,15.11,15.11,15.13,15.1,15.1,15.12,15.12,15.12,15.13,15.12,15.11,15.11,15.11,15.13,15.12,15.13,15.13,15.13,15.13,15.12,15.12,15.12,15.12,15.14,15.13,15.13,15.13,15.13,15.15,15.12,15.12,15.12,15.12,15.13,15.13,15.13,15.13,15.13,15.14,15.12,15.12,15.12,15.12,15.13,15.13,15.12,15.12,15.12,15.12,15.13,15.1,15.09,15.09,15.09,15.11,15.08,15.08,15.08,15.08,15.11,15.1,15.1,15.1,15.1,15.12,15.08,15.08,15.08,15.08,15.09,15.11,15.11,15.12,15.12,15.12,15.11,15.11,15.11,15.11,15.11,15.1,15.1,15.1,15.1,15.12,15.11,15.11,15.11,15.11,15.11,15.12,15.11,15.11,15.11,15.12,15.12,15.11,15.11,15.11,15.1,15.12,15.11,15.11,15.12,15.12,15.13,15.12,15.12,15.11,15.11,15.11,15.12,15.12,15.12,15.12,15.13,15.12,15.12,15.12,15.12,15.13,15.11,15.11,15.11,15.11,15.12,15.1,15.09,15.09,15.1,15.09,15.12,15.11,15.11,15.11,15.12,15.13,15.12,15.12,15.12,15.12,15.08,15.05,15.05,15.05,15.09,15.12,15.11,15.11,15.13,15.12,15.13,15.12,15.12,15.12,15.13,15.13,15.12,15.12,15.12,15.12,15.13,15.13,15.13,15.13,15.13,15.13,15.11,15.1,15.1,15.12,15.12,15.48,15.19,15.19,15.19,15.19,15.15,15.12,15.12,15.12,15.12,15.15,15.13,15.13,15.11,15.11,15.12,15.11,15.11,15.13,15.13,15.14,15.13,15.13,15.12,15.11,15.13,15.11,15.11,15.12,15.11,15.12,15.11,15.11,15.1,15.1,15.11,15.11,15.11,15.1,15.1,15.1,15.1,15.09,15.1,15.1,15.1,15.12,15.1,15.1,15.1,15.09,15.11,15.11,15.11,15.11,15.11,15.12,15.11,15.25,15.2,15.2,15.22,15.21,15.18,15.11,15.11,15.13,15.13,15.15,15.15,15.15,15.15,15.14,15.14,15.14,15.14,15.14,15.13,15.14,15.14,15.14,15.14,15.16,15.14,15.14,15.14,15.14,15.16,15.15,15.15,15.15,15.14,15.15,15.15,15.15,15.15,15.15,15.15,15.13,15.13,15.13,15.13,15.15,15.14,15.14,15.14,15.14,15.15,15.14,15.13,15.13,15.13,15.14,15.15,15.15,15.14,15.15,15.16,15.14,15.14,15.14,15.14,15.14,15.16,15.14,15.14,15.14,15.15,15.16,15.15,15.15,15.15,15.15,15.16,15.15,15.15,15.15,15.15,15.17,15.15,15.15,15.15,15.15,15.14,15.15,15.15,15.15,15.15,15.15,15.13,15.13,15.13,15.13,15.16,15.15,15.15,15.15,15.15,15.13,15.16,15.16,15.15,15.15,15.15,15.17,15.15,15.15,15.15,15.15,15.16,15.15,15.15,15.16,15.15,15.17,15.16,15.16,15.14,15.14,15.15,15.13,15.13,15.13,15.13,15.14,15.13,15.13,15.14,15.14,15.14,15.12,15.12,15.13,15.13,15.15,15.13,15.13,15.13,15.12,15.12,15.12,15.1,15.1,15.09,15.09,15.12,15.12,15.12,15.13,15.13,15.15,15.14,15.14,15.14,15.14,15.16,15.14,15.14,15.13,15.13,15.14,15.12,15.12,15.14,15.14,15.15,15.13,15.13,15.14,15.14,15.15,15.14,15.14,15.15,15.15,15.16,15.15,15.15,15.14,15.14,15.14,15.15,15.14,15.14,15.14,15.14,15.16,15.13,15.15,15.15,15.15,15.16,15.14,15.14,15.14,15.14,15.15,15.14,15.14,15.14,15.14,15.15,15.14,15.15,15.15,15.15,15.16,15.15,15.15,15.15,15.15,15.16,15.15,15.15,15.15,15.15,15.16,15.15,15.15,15.15,15.15,15.15,15.15,15.14,15.14,15.14,15.14,15.17,15.12,15.12,15.12,15.12,15.13,15.15,15.15,15.15,15.15,15.16,15.15,15.15,15.15,15.15,15.16,15.15,15.15,15.15,15.14,15.16,15.12,15.12,15.12,15.13,15.14,15.15,15.15,15.15,15.15,15.16,15.16,15.16,15.16,15.16,15.16,15.16,15.15,15.15,15.15,15.15,15.14,15.13,15.13,15.13,15.13,15.15,15.14,15.14,15.14,15.14,15.15,15.14,15.14,15.14,15.14,15.14,15.13,15.12,15.12,15.12,15.13,15.1,15.1,15.1,15.09,15.13,15.14,15.14,15.14,15.14,15.15,15.12,15.12,15.12,15.12,15.37,15.19,15.18,15.18,15.19,15.21,15.15,15.14,15.14,15.14,15.14,15.15,15.13,15.13,15.13,15.14,15.15,15.14,15.14,15.14,15.13,15.15,15.14,15.14,15.14,15.14,15.16,15.14,15.14,15.14,15.14,15.15,15.13,15.13,15.14,15.14,15.15,15.14,15.14,15.14,15.11,15.12,15.13,15.13,15.13,15.11,15.11,15.13,15.12,15.11,15.15,15.15,15.14,15.12,15.12,15.15,15.15,15.16,15.15,15.15,15.14,15.14,15.16,15.15,15.15,15.14,15.14,15.78,15.2,15.21,15.21,15.2,15.22,15.14,15.13,15.13,15.14,15.15,15.14,15.14,15.19,15.1,15.1,15.14,15.13,15.14,15.14,15.15,15.15,15.13,15.14,15.14,15.14,15.15,15.14,15.14,15.14,15.14,15.16,15.14,15.13,15.13,15.13,15.14,15.13,15.14,15.15,15.15,15.15,15.13,15.14,15.14,15.14,15.15,15.14,15.13,15.11,15.11,15.13,15.11,15.11,15.11,15.11,15.11,15.13,15.11,15.11,15.11,15.11,15.13,15.09,15.09,15.08,15.08,15.13,15.11,15.11,15.11,15.11,15.13,15.12,15.12,15.12,15.12,15.13,15.12,15.12,15.12,15.12,15.13,15.12,15.13,15.13,15.12,15.12,15.13,15.12,15.12,15.12,15.11,15.12,15.11,15.11,15.11,15.11,15.13,15.12,15.12,15.11,15.11,15.14,15.13,15.13,15.12,15.12,15.12,15.12,15.12,15.12,15.12,15.13,15.12,15.12,15.13,15.13,15.15,15.13,15.13,15.13,15.13,15.14,15.13,15.13,15.13,15.13,15.14,15.13,15.13,15.13,15.13,15.13,15.14,15.13,15.13,15.13,15.14,15.15,15.13,15.13,15.13,15.12,15.14,15.14,15.13,15.14,15.14,15.15,15.14,15.14,15.14,15.13,15.15,15.13,15.13,15.14,15.13,15.14,15.14,15.14,15.14,15.13,15.14,15.14,15.13,15.13,15.14,15.14,15.15,15.14,15.14,15.15,15.15,15.15,15.14,15.13,15.13,15.14,15.13,15.12,15.12,15.14,15.14,15.15,15.13,15.13,15.13,15.13,15.15,15.14,15.14,15.15,15.15,15.15,15.13,15.13,15.14,15.12,15.12,15.11,15.12,15.1,15.1,15.11,15.12,15.12,15.11,15.11,15.11,15.12,15.11,15.12,15.12,15.12,15.13,15.12,15.11,15.11,15.11,15.13,15.11,15.11,15.11,15.11,15.12,15.12,15.12,15.12,15.12,15.13,15.13,15.12,15.12,15.12,15.13,15.12,15.12,15.12,15.12,15.13,15.13,15.13,15.13,15.13,15.13,15.15,15.13,15.13,15.13,15.13,15.14,15.12,15.12,15.12,15.12,15.13,15.13,15.13,15.13,15.13,15.14,15.13,15.13,15.13,15.13,15.15,15.13,15.14,15.14,15.14,15.14,15.13,15.13,15.13,15.13,15.14,15.11,15.11,15.12,15.12,15.12,15.13,15.12,15.12,15.12,15.12,15.14,15.13,15.13,15.14,15.14,15.15,15.14,15.13,15.13,15.14,15.46,15.2,15.2,15.2,15.2,15.18,15.15,15.15,15.15,15.15,15.15,15.14,15.15,15.15,15.15,15.15,15.14,15.14,15.14,15.14,15.14,15.16,15.14,15.14,15.14,15.14,15.16,15.14,15.14,15.13,15.14,15.15,15.14,15.14,15.14,15.14,15.15,15.14,15.14,15.14,15.11,15.13,15.14,15.14,15.14,15.14,15.15,15.14,15.14,15.14,15.13,15.14,15.12,15.12,15.12,15.13,15.14,15.12,15.12,15.12,15.12,15.12,15.13,15.12,15.12,15.12,15.12,15.14,15.12,15.12,15.12,15.11,15.13,15.13,15.13,15.12,15.13,15.14,15.13,15.13,15.13,15.13,15.13,15.11,15.11,15.11,15.1,15.12,15.13,15.11,15.12,15.12,15.13,15.11,15.09,15.12,15.12,15.11,15.12,15.12,15.11,15.11,15.11,15.13,15.12,15.14,15.14,15.14,15.14,15.13,15.11,15.11,15.11,15.13,15.14,15.2,15.2,15.2,15.21,15.22,21.84,15.31,15.31,15.33,15.35,15.36,15.36,15.36,15.38,15.38,15.37,15.37,15.37,15.38,15.38,15.37,15.37,15.37,15.37,15.39,15.37,15.37,15.37,15.37,15.38,15.38,15.38,15.37,15.38,15.4,15.3,15.29,28.23,25.86,16.6,16.61,16.61,16.6,19.25,29.55,30.17,17.41,16.56,27.85,22.17,16.61,29.4,24.34,16.55,22.03,29.39,18.04,20.79,29.22,19.12,16.57,16.57,24.66,24.41,26.14,29.32,19.98,16.53,16.84,30.1,27.46,16.58,16.58,16.57,16.56,16.59,16.58,16.59,16.59,21.61,30.05,16.85,16.62,21.73,30.11,18.7,16.66,16.66,16.66,16.66,16.66,16.65,16.64,16.63,16.64,16.67,16.65,16.65,16.65,16.67,16.72,16.74,16.7,16.7,16.7,16.66,28.02,21.61,22.97,26.48,16.7,16.71,16.7,28.37,28.6,27.2,21.19,29.68,17.33,16.67,16.71,16.72,16.71,16.68,16.7,16.7,16.7,16.72,16.71,16.71,16.71,16.71,16.72,16.71,16.7,16.69,16.69,16.69,16.67,16.67,16.67,16.67,16.71,16.71,16.71,16.7,16.7,16.72,16.71,16.71,16.71,16.71,16.7,16.7,16.7,16.71,16.7,16.71,16.7,16.7,16.72,16.72,16.72,16.72,16.71,16.7,16.7,16.7,16.73,16.72,16.71,16.69,16.69,16.7,16.7,16.7,16.7,16.7,16.71,16.71,16.72,16.72,16.72,16.74,16.72,16.72,16.72,16.72,16.74,16.71,16.7,16.7,16.7,16.71,16.71,16.71,16.71,16.71,16.71,16.72,16.68,16.67,16.68,16.68,16.71,16.71,16.71,16.71,16.7,16.72,16.71,16.7,16.7,16.7,16.72,16.7,16.7,16.7,16.7,16.72,16.71,16.71,16.71,16.71,16.73,16.73,16.73,16.73,16.72,16.72,16.72,16.72,16.72,16.72,16.72,16.73,16.72,16.71,16.72,16.72,16.73,16.72,16.72,16.72,16.71,16.72,16.72,16.72,16.71,16.69,16.89,16.76,16.75,16.75,16.75,16.74,16.7,16.7,16.7,16.7,16.71,16.69,16.69,16.69,16.69,16.69,16.69,16.68,16.6,16.62,22.84,27.42,16.6,16.6,16.65,16.66,16.67,16.66,16.66,16.66,16.67,16.67,16.66,16.66,16.66,16.66,16.66,16.65,16.65,16.65,16.66,16.67,21.85,15.17,15.12,15.15,15.16,15.15,15.15,15.15,15.16,15.17,15.17,15.17,15.17,15.16,15.16,15.17,15.16,15.16,15.15,15.15,15.17,15.16,15.16,15.17,15.17,15.18,15.17,15.17,15.16,15.16,15.17,15.17,15.17,15.17,15.17,15.18,15.16,15.16,15.16,15.16,15.17,15.17,15.18,15.17,15.17,15.18,15.17,15.17,15.16,15.16,15.17,15.17,15.17,15.17,15.17,15.17,15.18,15.17,15.17,15.18,15.18,15.18,15.17,15.18,15.18,15.18,15.19,15.17,15.17,15.17,15.17,15.2,15.18,15.18,15.18,15.18,15.2,15.17,15.17,15.17,15.17,15.18,15.17,15.18,15.18,15.18,15.18,15.19,15.17,15.17,15.17,15.17,15.18,15.18,15.18,15.18,15.18,15.19,15.13,15.13,15.13,15.13,15.18,15.17,15.17,15.17,15.17,15.16,15.14,15.14,15.14,15.14,15.16,15.16,15.16,15.16,15.16,15.16,15.16,15.15,15.15,15.15,15.15,15.17,15.16,15.16,15.16,15.16,15.16,15.16,15.16,15.16,15.17,15.17,15.16,15.16,15.16,15.16,15.16,15.15,15.15,15.15,15.15,15.19,15.17,15.17,15.17,15.17,15.17,15.17,15.16,15.16,15.16,15.16,15.17,15.16,15.16,15.16,15.16,15.18,15.18,15.17,15.16,15.17,15.18,15.17,15.17,15.17,15.17,15.18,15.17,15.17,15.17,15.16,15.16,15.15,15.15,15.15,15.16,15.17,15.17,15.17,15.17,15.17,15.17,15.18,15.17,15.17,15.17,15.18,15.18,15.17,15.16,15.15,15.15,15.18,15.17,15.17,15.17,15.17,15.18,15.17,15.17,15.17,15.17,15.18,15.17,15.17,15.16,15.17,15.18,15.16,15.16,15.16,15.16,15.18,15.17,15.17,15.18,15.18,15.18,15.19,15.18,15.17,15.17,15.17,15.18,15.17,15.17,15.17,15.17,15.19,15.18,15.17,15.16,15.16,15.19,15.18,15.18,15.18,15.18,15.19,15.18,15.16,15.15,15.15,15.17,15.18,15.18,15.18,15.18,15.19,15.19,15.17,15.17,15.17,15.18,15.18,15.17,15.15,15.15,15.14,15.18,15.16,15.16,15.16,15.16,15.17,15.16,15.16,15.16,15.16,15.17,15.14,15.13,15.13,15.13,15.15,15.15,15.15,15.15,15.15,15.17,15.16,15.16,15.16,15.16,15.18,15.15,15.15,15.15,15.15,15.16,15.15,15.14,15.14,15.14,15.15,15.17,15.17,15.17,15.17,15.17,15.17,15.16,15.16,15.16,15.16,15.19,15.17,15.17,15.17,15.16,15.18,15.17,15.17,15.17,15.17,15.16,15.16,15.17,15.17,15.17,15.45,15.23,15.23,15.23,15.23,15.24,15.17,15.17,15.17,15.17,15.19,15.17,15.17,15.17,15.17,15.17,15.19,15.18,15.18,15.16,15.17,15.18,15.17,15.17,15.17,15.18,15.17,15.14,15.14,15.14,15.16,15.17,15.17,15.17,15.17,15.17,15.18,15.18,15.18,15.17,15.17,15.18,15.18,15.19,15.19,15.18,15.18,15.16,15.24,15.28,15.26,15.28,15.23,15.23,15.18,15.19,15.19,15.21,15.2,15.2,15.17,15.17,15.2,15.2,15.2,15.19,15.19,15.21,15.2,15.2,15.2,15.2,15.22,15.2,15.2,15.2,15.21,15.21,15.18,15.19,15.19,15.19,15.2,15.2,15.2,15.2,15.2,15.21,15.2,15.2,15.19,15.18,15.18,15.18,15.16,15.18,15.18,15.17,15.19,15.19,15.18,15.18,15.18,15.19,15.18,15.16,15.16,15.16,15.17,15.18,15.16,15.16,15.16,15.18,15.18,15.18,15.18,15.18,15.18,15.17,15.19,15.19,15.19,15.2,15.18,15.18,15.18,15.19,15.2,15.18,15.19,15.19,15.18,15.18,15.19,15.18,15.18,15.18,15.19,15.19,15.19,15.19,15.19,15.19,15.2,15.18,15.18,15.18,15.18,15.2,15.18,15.18,15.18,15.18,15.19,15.17,15.17,15.17,15.17,15.18,15.19,15.19,15.18,15.18,15.19,15.19,15.19,15.19,15.19,15.18,15.19,15.19,15.19,15.19,15.18,15.2,15.18,15.18,15.18,15.18,15.2,15.19,15.19,15.19,15.19,15.2,15.19,15.19,15.19,15.19,15.2,15.19,15.19,15.19,15.19,15.2,15.19,15.19,15.19,15.18,15.2,15.19,15.19,15.19,15.19,15.21,15.19,15.19,15.19,15.19,15.2,15.21,15.2,15.2,15.2,15.2,15.2,15.19,15.19,15.19,15.2,15.22,15.2,15.2,15.2,15.2,15.21,15.2,15.2,15.2,15.2,15.2,15.19,15.19,15.19,15.2,15.21,15.2,15.2,15.2,15.2,15.21,15.18,15.18,15.18,15.16,15.18,15.18,15.18,15.18,15.18,15.19,15.18,15.18,15.18,15.18,15.18,15.19,15.18,15.18,15.15,15.15,15.19,15.17,15.17,15.17,15.17,15.19,15.19,15.19,15.18,15.17,15.19,15.19,15.19,15.19,15.18,15.2,15.19,15.19,15.18,15.18,15.2,15.18,15.18,15.18,15.18,15.18,15.2,15.18,15.19,15.19,15.19,15.19,15.18,15.19,15.19,15.18,15.19,15.18,15.18,15.18,15.18,15.19,15.18,15.19,15.19,15.19,15.2,15.2,15.19,15.19,15.19,15.2,15.19,15.19,15.19,15.19,15.2,15.18,15.17,15.17,15.17,15.19,15.19,15.19,15.18,15.18,15.18,15.21,15.19,15.18,15.18,15.18,15.21,15.19,15.19,15.19,15.19,15.18,15.19,15.19,15.19,15.19,15.2,15.2,15.2,15.2,15.2,15.21,15.19,15.19,15.19,15.19,15.2,15.2,15.2,15.2,15.2,15.2,15.2,15.2,15.19,15.19,15.36,15.4,15.26,15.26,15.26,15.26,15.2,15.18,15.18,15.18,15.18,15.22,15.2,15.2,15.2,15.18,15.2,15.19,15.19,15.2,15.2,15.21,15.21,15.21,15.21,15.21,15.21,15.19,15.19,15.19,15.2,15.22,15.2,15.2,15.2,15.18,15.19,15.18,15.18,15.18,15.18,15.18,15.44,15.31,15.25,15.24,15.25,15.24,15.16,15.15,15.16,15.17,15.18,15.17,15.17,15.17,15.17,15.17,15.16,15.16,15.15,15.22,15.17,15.15,15.15,15.15,15.17,15.17,15.14,15.14,15.14,15.16,15.17,15.16,15.16,15.18,15.15,15.14,15.18,15.17,15.17,15.17,15.17,15.18,15.17,15.17,15.18,15.17,15.18,15.17,15.17,15.17,15.17,15.19,15.16,15.16,15.15,15.15,15.17,15.16,15.16,15.16,15.16,15.17,15.15,15.18,15.18,15.18,15.19,15.19,15.19,15.18,15.18,15.19,15.18,15.18,15.17,15.17,15.17,15.2,15.18,15.18,15.18,15.18,15.19,15.18,15.18,15.18,15.18,15.19,15.18,15.18,15.18,15.18,15.18,15.18,15.15,15.15,15.15,15.16,15.17,15.18,15.18,15.18,15.19,15.17,15.19,15.17,15.17,15.18,15.18,15.18,15.18,15.18,15.18,15.2,15.19,15.19,15.19,15.19,15.19,15.18,15.18,15.18,15.18,15.2,15.18,15.18,15.18,15.18,15.19,15.19,15.19,15.18,15.18,15.19,15.19,15.19,15.19,15.19,15.2,15.19,15.19,15.18,15.18,15.19,15.16,15.14,15.13,15.13,15.13,15.19,15.17,15.17,15.16,15.17,15.17,15.15,15.15,15.15,15.15,15.16,15.15,15.15,15.15,15.15,15.16,15.16,15.16,15.16,15.16,15.18,15.17,15.17,15.17,15.17,15.17,15.18,15.17,15.17,15.17,15.18,15.18,15.17,15.17,15.17,15.18,15.18,15.17,15.17,15.17,15.18,15.19,15.17,15.17,15.17,15.18,15.19,15.17,15.17,15.17,15.15,15.16,15.16,15.16,15.16,15.17,15.18,15.19,15.18,15.18,15.18,15.17,15.14,15.12,15.18,15.18,15.18,15.18,15.17,15.17,15.18,15.18,15.18,15.16,15.16,15.18,15.17,15.19,15.19,15.19,15.19,15.19,15.21,15.19,15.19,15.19,15.19,15.2,15.2,15.2,15.19,15.19,15.19,15.2,15.19,15.2,15.2,15.2,15.18,15.17,15.19,15.19,15.19,15.19,15.18,15.2,15.2,15.2,15.21,15.19,15.18,15.17,15.17,15.19,15.16,15.2,15.2,15.2,15.21,15.2,15.19,15.19,15.19,15.2,15.19,15.2,15.2,15.2,15.2,15.2,15.19,15.19,15.19,15.19,15.21,15.18,15.2,15.2,15.2,15.21,15.2,15.2,15.2,15.2,15.21,15.2,15.2,15.2,15.2,15.22,15.2,15.19,15.17,15.17,15.19,15.16,15.15,15.15,15.16,15.17,15.18,15.18,15.17,15.17,15.18,15.19,15.19,15.19,15.19,15.19,15.54,15.25,15.25,15.25,15.25,15.22,15.19,15.19,15.19,15.19,15.21,15.19,15.19,15.19,15.17,15.19,15.17,15.17,15.17,15.17,15.18,15.19,15.19,15.19,15.19,15.19,15.16,15.16,15.16,15.16,15.18,15.19,15.19,15.19,15.19,15.19,15.21,15.19,15.19,15.19,15.18,15.2,15.19,15.19,15.2,15.19,15.2,15.19,15.19,15.19,15.19,15.2,15.2,15.2,15.2,15.19,15.2,15.19,15.19,15.19,15.19,15.19,15.18,15.18,15.18,15.19,15.2,15.18,15.18,15.18,15.19,15.2,15.21,15.2,15.2,15.2,15.2,15.21,15.19,15.19,15.2,15.2,15.2,15.19,15.19,15.16,15.15,15.18,15.19,15.19,15.2,15.2,15.21,15.2,15.19,15.17,15.17,15.19,15.2,15.2,15.17,15.17,15.18,15.18,15.2,15.2,15.2,15.2,15.21,15.2,15.18,15.18,15.18,15.21,15.21,15.2,15.2,15.2,15.21,15.2,15.19,15.19,15.19,15.2,15.19,15.2,15.2,15.2,15.2,15.19,15.19,15.19,15.19,15.21,15.21,15.19,15.17,15.18,15.19,15.19,15.18,15.18,15.18,15.18,15.19,15.15,15.15,15.15,15.15,15.18,15.17,15.17,15.17,15.17,15.19,15.18,15.19,15.19,15.19,15.19,15.19,15.19,15.19,15.19,15.19,15.18,15.18,15.18,15.18,15.2,15.19,15.18,15.18,15.18,15.19,15.2,15.19,15.19,15.19,15.19,15.19,15.18,15.18,15.18,15.18,15.17,15.15,15.15,15.15,15.15,15.2,15.19,15.19,15.19,15.18,15.2,15.16,15.17,15.17,15.17,15.18,15.18,15.18,15.18,15.18,15.17,15.17,15.17,15.17,15.17,15.2,15.19,15.19,15.19,15.19,15.19,15.2,15.19,15.19,15.19,15.19,15.21,15.19,15.19,15.18,15.2,15.21,15.19,15.19,15.19,15.19,15.2,15.19,15.19,15.19,15.2,15.21,15.19,15.19,15.19,15.19,15.2,15.18,15.18,15.18,15.2,15.21,15.2,15.2,15.2,15.17,15.17,15.21,15.19,15.19,15.2,15.2,15.22,15.2,15.2,15.18,15.17,15.21,15.2,15.2,15.21,15.2,15.21,15.21,15.21,15.2,15.2,15.21,15.2,15.2,15.2,15.2,15.21,15.2,15.2,15.2,15.2,15.21,15.2,15.2,15.2,15.2,15.2,15.21,15.2,15.19,15.18,15.18,15.19,15.18,15.17,15.17,15.17,15.19,15.18,15.19,15.19,15.19,15.2,15.18,15.19,15.19,15.19,15.2,15.19,15.19,15.19,15.18,15.19,15.18,15.18,15.18,15.18,15.2,15.19,15.17,15.17,15.17,15.17,15.19,15.17,15.16,15.16,15.16,15.2,15.19,15.19,15.19,15.19,15.2,15.19,15.19,15.19,15.19,15.2,15.19,15.19,15.19,15.19,15.2,15.18,15.18,15.18,15.18,15.2,15.17,15.17,15.17,15.17,15.18,15.19,15.18,15.18,15.18,15.18,15.21,15.2,15.2,15.2,15.2,15.52,15.24,15.24,15.24,15.24,15.23,15.2,15.2,15.19,15.2,15.21,15.2,15.2,15.2,15.2,15.21,15.2,15.2,15.19,15.19,15.2,15.19,15.19,15.18,15.18,15.21,15.2,15.2,15.19,15.2,15.21,15.19,15.19,15.19,15.19,15.18,15.19,15.18,15.18,15.2,15.2,15.21,15.2,15.2,15.2,15.2,15.21,15.2,15.2,15.2,15.2,15.21,15.19,15.19,15.19,15.2,15.21,15.2,15.2,15.2,15.19,15.21,15.2,15.2,15.2,15.2,15.21,15.2,15.2,15.2,15.21,15.21,15.21,15.2,15.2,15.2,15.2,15.2,15.18,15.18,15.18,15.17,15.18,15.18,15.18,15.19,15.19,15.2,15.18,15.18,15.18,15.18,15.19,15.17,15.18,15.19,15.18,15.19,15.19,15.18,15.18,15.18,15.18,15.19,15.18,15.19,15.19,15.19,15.18,15.17,15.17,15.17,15.17,15.18,15.17,15.18,15.18,15.18,15.19,15.18,15.19,15.19,15.19,15.2,15.19,15.2,15.2,15.2,15.2,15.18,15.2,15.2,15.2,15.2,15.19,15.17,15.17,15.18,15.19,15.18,15.18,15.18,15.18,15.18,15.18,15.18,15.17,15.17,15.17,15.18,15.15,15.16,15.16,15.16,15.19,15.17,15.17,15.17,15.17,15.19,15.19,15.19,15.19,15.19,15.19,15.18,15.18,15.18,15.18,15.19,15.18,15.18,15.18,15.18,15.2,15.18,15.18,15.18,15.18,15.18,15.18,15.17,15.17,15.17,15.17,15.18,15.17,15.17,15.17,15.18,15.19,15.18,15.18,15.18,15.18,15.21,15.18,15.18,15.18,15.18,15.19,15.18,15.18,15.17,15.17,15.2,15.19,15.19,15.19,15.19,15.2,15.19,15.19,15.19,15.19,15.21,15.17,15.17,15.17,15.19,15.19,15.2,15.19,15.19,15.19,15.19,15.2,15.19,15.19,15.19,15.19,15.2,15.18,15.17,15.17,15.17,15.18,15.16,15.16,15.16,15.17,15.18,15.17,15.18,15.18,15.18,15.18,15.17,15.17,15.17,15.16,15.17,15.17,15.17,15.18,15.18,15.19,15.17,15.17,15.17,15.17,15.16,15.19,15.17,15.17,15.17,15.17,15.19,15.17,15.17,15.15,15.15,15.18,15.18,15.18,15.18,15.18,15.19,15.18,15.18,15.17,15.17,15.18,15.18,15.18,15.18,15.18,15.2,15.17,15.17,15.17,15.17,15.18,15.16,15.16,15.17,15.17,15.17,15.18,15.17,15.18,15.18,15.18,15.19,15.18,15.15,15.15,15.15,15.18,15.18,15.17,15.17,15.17,15.18,15.18,15.17,15.17,15.18,15.18,15.16,15.17,15.16,15.15,15.17,15.18,15.19,15.19,15.2,15.21,15.18,15.16,15.16,15.16,15.16,15.19,15.19,15.19,15.19,15.19,15.2,15.19,15.19,15.19,15.19,15.21,15.19,15.19,15.19,15.19,15.32,15.46,15.46,15.46,15.46,15.48,15.47,15.47,15.47,15.47,15.48,15.49,15.49,15.49,15.49,15.81,15.55,15.55,15.55,15.55,15.55,15.51,15.49,15.49,15.49,15.49,15.5,15.49,15.49,15.48,15.48,15.49,15.48,15.47,15.47,15.47,15.48,15.46,15.45,15.45,15.45,15.46,15.46,15.46,15.46,15.46,15.47,15.46,15.46,15.46,15.47,15.48,15.47,15.47,15.47,15.47,15.47,15.47,15.47,15.47,15.47,15.47,15.48,15.47,15.47,15.47,15.47,15.47,15.46,15.46,15.46,15.46,15.47,15.46,15.46,15.46,15.47,15.47,15.46,15.45,15.47,15.47,15.48,15.47,15.47,15.47,15.45,15.46,15.44,15.44,15.44,15.45,15.46,15.48,15.47,15.47,15.47,15.47,15.48,15.47,15.47,15.47,15.47,15.48,15.46,15.47,15.47,15.47,15.48,15.47,15.47,15.47,15.47,15.49,15.47,15.47,15.48,15.48,15.49,15.48,15.47,15.48,15.48,15.48,15.49,15.48,15.47,15.47,15.47,15.48,15.47,15.46,15.46,15.46,15.48,15.47,15.45,15.45,15.45,15.48,15.48,15.47,15.47,15.47,15.49,15.47,15.49,15.49,15.48,15.49,15.49,15.49,15.48,15.47,15.48,15.47,15.46,15.46,15.46,15.47,15.48,15.48,15.48,15.48,15.48,15.49,15.58,15.56,15.56,15.56,15.57,15.56,15.5,15.5,15.49,15.51,15.5,15.5,15.5,15.5,15.5,15.5,15.5,15.5,15.5,15.51,15.5,15.5,15.5,15.5,15.51,15.5,15.48,15.47,15.47,15.49,15.48,15.48,15.48,15.48,15.48,15.5,15.48,15.48,15.47,15.47,15.49,15.48,15.48,15.48,15.48,15.49,15.48,15.47,15.48,15.48,15.49,15.48,15.48,15.48,15.48,15.48,15.48,15.48,15.47,15.47,15.49,15.47,15.47,15.47,15.48,15.49,15.48,15.48,15.48,15.48,15.49,15.49,15.49,15.49,15.49,15.49,15.5,15.49,15.49,15.49,15.48,15.49,15.48,15.48,15.48,15.5,15.49,15.46,15.46,15.46,15.49,15.5,15.49,15.49,15.5,15.5,15.5,15.47,15.47,15.47,15.49,15.5,15.49,15.49,15.49,15.5,15.51,15.49,15.49,15.49,15.47,15.47,15.5,15.5,15.5,15.5,15.49,15.48,15.47,15.47,15.48,15.48,15.49,15.49,15.49,15.49,15.49,15.51,15.49,15.49,15.49,15.5,15.51,15.5,15.49,15.49,15.49,15.5,15.51,15.5,15.5,15.5,15.49,15.49,15.48,15.5,15.5,15.5,15.5,15.49,15.5,15.5,15.5,15.51,15.49,15.49,15.49,15.5,15.51,15.5,15.49,15.49,15.48,15.49,15.5,15.5,15.5,15.49,15.49,15.47,15.5,15.5,15.5,15.49,15.5,15.49,15.5,15.5,15.49,15.49,15.47,15.47,15.47,15.48,15.49,15.47,15.47,15.47,15.47,15.48,15.48,15.48,15.48,15.48,15.49,15.47,15.48,15.48,15.48,15.48,15.46,15.46,15.46,15.46,15.46,15.49,15.48,15.48,15.48,15.48,15.81,15.55,15.55,15.55,15.55,15.52,15.49,15.48,15.48,15.49,15.5,15.49,15.49,15.49,15.48,15.49,15.49,15.48,15.47,15.47,15.49,15.46,15.46,15.46,15.46,15.48,15.47,15.47,15.47,15.47,15.5,15.5,15.49,15.49,15.49,15.49,15.5,15.49,15.49,15.49,15.49,15.5,15.49,15.49,15.49,15.49,15.49,15.48,15.48,15.48,15.53,15.5,15.49,15.49,15.49,15.49,15.51,15.5,15.49,15.49,15.49,15.5,15.49,15.49,15.5,15.49,15.49,15.51,15.49,15.49,15.48,15.48,15.47,15.59,15.54,15.53,15.53,15.56,15.54,15.48,15.48,15.48,15.48,15.47,15.47,15.48,15.48,15.49,15.48,15.48,15.49,15.49,15.51,15.48,15.48,15.48,15.48,15.5,15.49,15.48,15.5,15.5,15.5,15.48,15.49,15.49,15.49,15.49,15.49,15.48,15.49,15.49,15.49,15.51,15.49,15.49,15.49,15.49,15.5,15.49,15.49,15.49,15.49,15.49,15.47,15.47,15.47,15.47,15.49,15.47,15.47,15.47,15.47,15.48,15.47,15.47,15.47,15.47,15.48,15.48,15.47,15.47,15.47,15.48,15.49,15.49,15.49,15.49,15.49,15.49,15.49,15.49,15.49,15.49,15.5,15.49,15.49,15.49,15.49,15.5,15.48,15.48,15.48,15.48,15.5,15.47,15.47,15.46,15.46,15.49,15.49,15.49,15.49,15.49,15.5,15.49,15.49,15.49,15.49,15.5,15.5,15.5,15.5,15.5,15.51,15.48,15.49,15.49,15.48,15.48,15.5,15.49,15.49,15.49,15.49,15.5,15.49,15.48,15.48,15.48,15.48,15.46,15.46,15.46,15.46,15.51,15.49,15.49,15.49,15.49,15.5,15.48,15.48,15.49,15.5,15.5,15.49,15.49,15.49,15.49,15.51,15.5,15.49,15.5,15.5,15.51,15.5,15.49,15.49,15.49,15.48,15.5,15.49,15.49,15.49,15.5,15.5,15.49,15.49,15.49,15.5,15.51,15.48,15.48,15.51,15.5,15.52,15.5,15.5,15.51,15.49,15.5,15.5,15.5,15.5,15.5,15.51,15.49,15.49,15.49,15.48,15.49,15.5,15.5,15.5,15.5,15.5,15.5,15.5,15.5,15.51,15.52,15.52,15.5,15.5,15.49,15.49,15.5,15.49,15.49,15.49,15.5,15.5,15.49,15.49,15.5,15.49,15.5,15.49,15.49,15.48,15.48,15.48,15.46,15.46,15.49,15.49,15.51,15.44,15.44,15.48,15.48,15.48,15.51,15.49,15.47,15.48,15.48,15.51,15.5,15.5,15.49,15.5,15.51,15.49,15.5,15.5,15.49,15.49,15.46,15.48,15.48,15.48,15.49,15.49,15.49,15.49,15.49,15.5,15.5,15.5,15.5,15.5,15.52,15.49,15.48,15.48,15.48,15.48,15.5,15.5,15.5,15.5,15.5,15.51,15.5,15.5,15.5,15.5,15.5,15.49,15.49,15.49,15.49,15.51,15.5,15.5,15.5,15.5,15.51,15.5,15.5,15.5,15.5,15.86,15.57,15.57,15.57,15.57,15.57,15.51,15.51,15.51,15.51,15.52,15.5,15.49,15.49,15.49,15.49,15.5,15.5,15.5,15.49,15.49,15.5,15.49,15.49,15.49,15.49,15.51,15.5,15.5,15.5,15.51,15.53,15.51,15.51,15.51,15.52,15.51,15.51,15.51,15.51,15.51,15.51,15.5,15.49,15.49,15.49,15.51,15.51,15.5,15.5,15.5,15.5,15.53,15.52,15.52,15.52,15.51,15.53,15.51,15.52,15.5,15.51,15.52,15.51,15.51,15.51,15.51,15.52,15.5,15.49,15.49,15.49,15.5,15.49,15.48,15.48,15.5,15.51,15.49,15.49,15.49,15.5,15.5,15.5,15.5,15.5,15.5,15.5,15.5,15.49,15.5,15.51,15.51,15.51,15.5,15.49,15.5,15.5,15.52,15.5,15.5,15.5,15.49,15.51,15.51,15.51,15.5,15.5,15.51,15.5,15.5,15.49,15.49,15.5,15.49,15.49,15.49,15.49,15.49,15.5,15.5,15.5,15.5,15.5,15.51,15.49,15.51,15.51,15.51,15.52,15.51,15.51,15.51,15.5,15.51,15.51,15.47,15.47,15.47,15.49,15.5,15.51,15.51,15.51,15.52,15.51,15.49,15.49,15.49,15.49,15.52,15.51,15.51,15.51,15.51,15.52,15.51,15.51,15.5,15.5,15.51,15.5,15.5,15.5,15.5,15.5,15.51,15.51,15.51,15.51,15.53,15.51,15.5,15.51,15.51,15.53,15.51,15.51,15.51,15.51,15.52,15.52,15.51,15.51,15.51,15.51,15.53,15.52,15.51,15.51,15.51,15.52,15.51,15.5,15.49,15.49,15.52,15.51,15.5,15.51,15.51,15.52,15.51,15.51,15.51,15.51,15.53,15.5,15.5,15.5,15.52,15.53,15.51,15.51,15.51,15.51,15.51,15.48,15.49,15.47,15.47,15.48,15.47,15.47,15.47,15.47,15.49,15.5,15.49,15.48,15.48,15.49,15.51,15.51,15.51,15.5,15.49,15.52,15.5,15.5,15.5,15.47,15.49,15.48,15.48,15.48,15.46,15.48,15.48,15.48,15.48,15.5,15.51,15.49,15.49,15.49,15.49,15.49,15.51,15.51,15.5,15.46,15.46,15.51,15.5,15.5,15.5,15.5,15.51,15.51,15.51,15.47,15.47,15.5,15.49,15.49,15.51,15.51,15.51,15.5,15.5,15.51,15.51,15.51,15.49,15.49,15.5,15.5,15.51,15.51,15.51,15.5,15.5,15.52,15.5,15.5,15.51,15.51,15.51,15.52,15.51,15.51,15.51,15.51,15.51,15.5,15.5,15.51,15.5,15.53,16.3,15.84,15.85,15.99,23.4,15.89,15.83,15.83,15.83,15.84,15.83,15.81,15.74,25.67,22.66,17.11,17.11,17.11,23.87,23.51,16.94,15.86,15.86,15.85,15.86,15.84,15.84,15.85,15.85,15.85,19.12,30.31,30.04,19.05,17.09,16.31,15.85,15.85,15.85,15.85,15.87,15.85,19.82,27.49,30.77,18.45,17.16,17.16,29.88,19.08,17.17,17.15,17.15,17.16,16.13,16.13,15.94,15.94,15.93,15.93,15.93,15.88,15.87,15.86,15.83,15.83,15.86,15.84,15.84,15.84,15.84,15.86,15.85,15.85,15.85,15.85,15.86,15.84,15.84,15.84,15.84,15.84,15.79,15.79,15.79,15.79,15.83,15.82,15.82,15.82,15.82,15.85,15.85,15.85,15.85,15.85,15.84,15.85,15.84,15.83,15.83,15.81,15.85,15.84,15.84,15.84,15.85,15.86,15.85,15.85,15.85,15.86,15.87,15.85,15.85,15.85,15.85,15.84,15.81,15.81,15.81,15.84,15.85,15.85,15.85,15.85,15.84,15.85,15.85,15.85,15.85,15.83,15.84,15.85,15.85,15.85,15.85,15.85,15.85,15.84,15.86,15.84,15.83,15.86,15.86,15.86,15.85,15.85,15.86,15.85,15.85,15.86,15.86,15.87,15.86,15.86,15.86,15.85,15.87,15.86,15.86,15.86,15.86,15.86,15.83,15.83,15.84,15.84,15.86,15.86,15.85,15.86,15.86,15.86,15.85,15.84,15.86,15.86,15.86,15.85,15.83,15.85,15.85,15.8,15.79,15.78,15.78,15.78,15.78,15.79,15.78,15.77,15.77,15.77,15.77,15.75,15.76,15.76,15.76,15.77,15.79,15.78,15.77,15.78,15.79,15.79,15.78,15.78,15.78,15.79,15.78,15.79,15.79,15.78,15.78,15.79,15.76,15.76,15.75,15.74,15.77,15.76,15.76,15.76,15.76,15.78,15.76,15.76,15.76,15.76,15.78,15.77,15.77,15.77,15.77,15.78,15.78,15.78,15.78,15.77,15.78,15.77,15.76,15.75,15.75,15.77,15.75,15.75,15.75,15.75,15.75,15.77,15.76,15.75,15.75,15.75,15.79,15.78,15.78,15.78,15.77,15.78,15.77,15.77,15.77,15.77,15.78,15.76,15.76,15.76,15.76,15.79,15.78,15.78,15.78,15.77,15.78,15.78,15.78,15.78,15.78,15.79,15.78,15.78,15.77,15.78,15.77,15.79,15.78,15.78,15.76,15.77,15.8,15.78,15.78,15.78,15.76,15.77,15.77,15.77,15.77,15.78,15.78,15.76,15.76,15.76,15.76,15.78,15.78,15.78,15.78,15.78,15.8,15.79,15.79,15.79,15.78,15.8,15.78,15.78,15.77,15.79,15.79,15.8,15.78,15.78,15.79,15.79,15.8,15.79,15.79,15.79,15.79,15.81,15.79,15.79,15.78,15.78,15.8,15.78,15.78,15.79,15.79,15.8,15.79,15.79,15.79,15.79,15.8,15.79,15.78,15.78,15.78,15.78,15.8,15.79,15.79,15.79,15.79,15.8,15.79,15.79,15.79,15.79,15.77,15.75,15.77,15.77,15.77,15.8,15.79,15.78,15.78,15.77,15.78,15.77,15.77,15.77,15.77,15.78,15.77,15.77,15.77,15.77,15.78,15.77,15.75,15.75,15.75,15.76,15.77,15.77,15.77,15.77,15.77,15.78,15.77,15.77,15.77,15.76,15.75,15.76,15.77,15.77,15.77,15.78,15.78,15.78,15.78,15.78,15.79,15.77,15.77,15.77,15.77,15.78,15.76,15.77,15.76,15.76,16.05,15.84,15.84,15.84,15.84,15.84,15.78,15.77,15.77,15.77,15.78,15.78,15.77,15.77,15.77,15.77,15.79,15.77,15.77,15.78,15.78,15.79,15.78,15.78,15.78,15.78,15.77,15.78,15.78,15.78,15.78,15.78,15.77,15.77,15.78,15.78,15.79,15.78,15.78,15.78,15.78,15.79,15.79,15.78,15.78,15.78,15.79,15.79,15.79,15.79,15.78,15.78,15.78,15.77,15.77,15.77,15.78,15.8,15.78,15.78,15.78,15.78,15.79,15.78,15.77,15.77,15.78,15.78,15.77,15.77,15.77,15.78,15.78,15.75,15.75,15.75,15.78,15.79,15.79,15.79,15.79,15.79,15.8,15.79,15.79,15.79,15.76,15.76,15.8,15.79,15.79,15.79,15.8,15.8,15.79,15.79,15.76,15.75,15.79,15.78,15.78,15.78,15.78,15.81,15.79,15.79,15.77,15.77,15.78,15.76,15.77,15.77,15.77,15.78,15.78,15.78,15.77,15.77,15.77,15.75,15.76,15.78,15.78,15.78,15.75,15.75,15.75,15.75,15.76,15.77,15.75,15.72,15.72,15.72,15.76,15.76,15.78,15.78,15.78,15.78,15.77,15.77,15.77,15.78,15.79,15.78,15.76,15.76,15.77,15.78,15.77,15.78,15.78,15.78,15.79,15.78,15.77,15.77,15.77,15.78,15.78,15.78,15.78,15.78,15.78,15.8,15.78,15.78,15.78,15.77,15.78,15.78,15.78,15.78,15.78,15.79,15.78,15.77,15.77,15.77,15.77,15.76,15.76,15.77,15.77,15.78,15.78,15.78,15.78,15.78,15.8,15.78,15.77,15.77,15.77,15.78,15.79,15.78,15.77,15.77,15.78,15.8,15.79,15.79,15.79,15.79,15.79,15.78,15.78,15.78,15.78,15.8,15.79,15.79,15.79,15.79,15.77,15.77,15.77,15.77,15.77,15.79,15.79,15.79,15.79,15.79,15.8,15.78,15.78,15.78,15.8,15.78,15.78,15.78,15.78,15.78,15.78,15.79,15.78,15.78,15.78,15.79,15.8,15.78,15.78,15.78,15.76,15.79,15.79,15.79,15.79,15.79,15.8,15.8,15.79,15.79,15.79,15.81,15.8,15.8,15.8,15.78,15.78,15.77,15.77,15.76,15.76,15.77,15.77,15.77,15.77,15.76,15.77,15.77,15.77,15.77,15.77,15.77,15.78,15.77,15.77,15.77,15.77,15.78,15.77,15.77,15.76,15.76,15.78,15.78,15.77,15.75,15.75,15.77,15.77,15.77,15.77,15.77,15.77,15.76,15.76,15.77,15.77,15.78,15.78,15.78,15.77,15.77,15.79,15.77,15.78,15.78,15.78,15.78,15.78,15.77,15.77,15.77,15.77,15.78,15.77,15.77,15.77,15.77,15.79,15.78,15.78,15.78,15.78,15.79,15.78,15.78,15.78,15.78,15.79,15.79,15.77,15.77,15.76,15.79,15.78,15.77,15.77,15.77,15.79,15.78,15.79,15.79,15.79,15.79,15.79,15.79,15.79,15.79,15.79,15.8,15.79,15.79,15.79,15.79,15.8,15.79,15.79,15.79,15.78,16.03,15.86,15.86,15.85,15.85,15.84,15.79,15.79,15.79,15.78,15.79,15.78,15.79,15.79,15.79,15.81,15.79,15.79,15.79,15.79,15.79,15.81,15.79,15.78,15.78,15.78,15.79,15.77,15.77,15.77,15.77,15.85,15.78,15.78,15.79,15.79,15.8,15.77,15.77,15.77,15.77,15.78,15.76,15.76,15.76,15.79,15.81,15.79,15.79,15.79,15.79,15.79,15.76,15.76,15.76,15.77,15.81,15.78,15.78,15.77,15.77,15.77,15.79,15.77,15.77,15.77,15.78,15.79,15.77,15.77,15.77,15.78,15.79,15.77,15.77,15.77,15.76,15.78,15.78,15.78,15.78,15.76,15.77,15.77,15.77,15.77,15.77,15.78,15.78,15.78,15.78,15.78,15.79,15.79,15.79,15.79,15.78,15.78,15.8,15.79,15.79,15.79,15.78,15.79,15.78,15.79,15.79,15.79,15.8,15.79,15.79,15.76,15.76,15.79,15.79,15.78,15.79,15.79,15.8,15.75,15.75,15.79,15.79,15.8,15.79,15.79,15.78,15.78,15.78,15.8,15.78,15.78,15.78,15.78,15.79,15.79,15.79,15.78,15.78,15.79,15.78,15.78,15.78,15.78,15.8,15.79,15.79,15.79,15.79,15.78,15.74,15.76,15.76,15.77,15.78,15.78,15.79,15.79,15.79,15.8,15.79,15.79,15.79,15.79,15.8,15.79,15.79,15.79,15.79,15.79,15.81,15.79,15.78,15.78,15.78,15.82,15.8,15.8,15.79,15.78,15.77,15.78,15.78,15.78,15.78,15.78,15.78,15.78,15.78,15.78,15.79,15.79,15.79,15.79,15.79,15.81,15.79,15.79,15.79,15.79,15.8,15.75,15.74,15.74,15.74,15.74,15.78,15.76,15.76,15.76,15.76,15.79,15.78,15.78,15.79,15.79,15.78,15.76,15.76,15.76,15.76,15.79,15.77,15.77,15.77,15.78,15.8,15.78,15.78,15.78,15.78,15.8,15.78,15.78,15.78,15.77,15.78,15.8,15.79,15.78,15.77,15.78,15.79,15.78,15.78,15.78,15.79,15.8,15.78,15.78,15.78,15.79,15.8,15.79,15.79,15.79,15.78,15.79,15.79,15.79,15.79,15.8,15.81,15.78,15.78,15.78,15.78,15.8,15.79,15.79,15.79,15.79,15.8,15.77,15.77,15.77,15.8,15.8,15.76,15.75,15.75,15.79,15.78,15.81,15.8,15.8,15.79,15.79,15.8,15.8,15.8,15.79,15.79,15.79,15.77,15.77,15.79,15.79,15.81,15.79,15.79,15.8,15.8,15.8,15.76,15.76,15.78,15.78,15.79,15.79,15.79,15.8,15.8,15.8,15.77,15.8,15.81,15.81,15.8,15.81,15.79,15.77,15.77,15.78,15.8,15.8,15.8,15.8,15.8,15.81,15.81,15.81,15.8,15.8,15.8,15.76,15.79,15.79,15.79,15.81,15.8,15.8,15.8,15.8,15.81,15.8,15.81,15.81,15.81,15.82,15.79,15.8,15.8,15.8,15.81,15.8,15.8,15.8,15.8,15.78,15.79,15.78,15.78,15.78,15.77,16.09,15.85,15.85,15.85,15.85,15.82,15.78,15.79,15.78,15.78,15.79,15.78,15.77,15.78,15.78,15.8,15.79,15.79,15.78,15.78,15.8,15.8,15.8,15.8,15.79,15.8,15.79,15.79,15.79,15.79,15.79,15.8,15.77,15.77,15.78,15.78,15.8,15.8,15.8,15.79,15.79,15.8,15.8,15.8,15.8,15.79,15.8,15.79,15.79,15.79,15.79,15.8,15.79,15.79,15.77,15.78,15.79,15.78,15.78,15.78,15.78,15.78,15.78,15.78,15.78,15.78,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.79,15.79,15.79,15.8,15.8,15.79,15.79,15.79,15.81,15.81,15.8,15.8,15.79,15.79,15.81,15.8,15.8,15.8,15.8,15.81,15.8,15.8,15.8,15.8,15.81,15.8,15.8,15.79,15.8,15.81,15.8,15.8,15.8,15.78,15.8,15.81,15.81,15.81,15.8,15.8,15.82,15.8,15.79,15.8,15.8,15.82,15.81,15.81,15.81,15.81,15.81,15.8,15.8,15.81,15.81,15.81,15.8,15.8,15.81,15.8,15.81,15.8,15.8,15.77,15.77,15.8,15.8,15.8,15.81,15.81,15.82,15.8,15.8,15.81,15.81,15.81,15.82,15.8,15.8,15.8,15.8,15.8,15.79,15.79,15.79,15.79,15.8,15.79,15.79,15.79,15.8,15.81,15.79,15.77,15.93,15.87,15.88,15.87,15.87,15.81,15.8,15.8,15.8,15.8,15.8,15.8,15.81,15.8,15.78,15.77,15.77,15.79,15.8,15.79,15.79,15.79,15.79,15.81,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.81,15.81,15.81,15.81,15.81,15.82,15.8,15.8,15.8,15.8,15.81,15.8,15.8,15.8,15.8,15.82,15.81,15.81,15.81,15.81,15.8,15.81,15.8,15.8,15.8,15.8,15.82,15.81,15.81,15.81,15.81,15.81,15.8,15.8,15.79,15.8,15.84,15.82,15.81,15.81,15.81,15.81,15.8,15.8,15.8,15.8,15.82,15.8,15.8,15.8,15.81,15.82,15.81,15.81,15.81,15.81,15.82,15.82,15.81,15.81,15.81,15.81,15.83,15.82,15.82,15.81,15.81,15.82,15.8,15.8,15.8,15.81,15.82,15.81,15.82,15.82,15.82,15.83,15.82,15.82,15.81,15.82,15.83,15.81,15.81,15.81,15.81,15.83,15.81,15.81,15.81,15.81,15.82,15.81,15.8,15.79,15.81,15.81,15.83,15.81,15.81,15.82,15.82,15.83,15.82,15.8,15.8,15.8,15.8,15.79,15.8,15.8,15.8,15.81,15.8,15.8,15.79,15.79,15.8,15.79,15.79,15.79,15.79,15.8,15.8,15.8,15.8,15.8,15.81,15.78,15.78,15.79,15.79,15.79,15.8,15.79,15.81,15.8,15.8,15.78,15.81,15.81,15.81,15.81,15.77,15.74,15.79,15.79,15.79,15.8,15.8,15.81,15.81,15.82,15.83,15.8,15.81,15.81,15.81,15.82,15.8,15.81,15.81,15.81,15.94,15.91,15.87,15.87,15.87,15.87,15.81,15.8,15.81,15.81,15.81,15.82,15.81,15.8,15.8,15.8,15.81,15.79,15.79,15.79,15.79,15.81,15.81,15.81,15.81,15.81,15.82,15.81,15.81,15.81,15.81,15.82,15.81,15.81,15.81,15.81,15.82,15.81,15.81,15.81,15.81,15.81,15.82,15.81,15.81,15.81,15.8,15.81,15.81,15.81,15.8,15.8,15.82,15.82,15.82,15.82,15.82,15.82,15.81,15.81,15.8,15.8,15.83,15.82,15.82,15.82,15.81,15.81,15.79,15.79,15.79,15.79,15.81,15.76,15.77,15.77,15.77,15.81,15.8,15.8,15.81,15.81,15.82,15.82,15.81,15.81,15.81,15.82,15.83,15.82,15.82,15.82,15.81,15.83,15.82,15.82,15.8,15.79,15.82,15.81,15.8,15.8,15.81,15.82,15.81,15.81,15.8,15.8,15.81,15.8,15.79,15.79,15.8,15.81,15.8,15.8,15.8,15.81,15.82,15.79,15.78,15.78,15.8,15.8,15.81,15.79,15.81,15.81,15.81,15.83,15.81,15.81,15.8,15.8,15.82,15.81,15.81,15.81,15.81,15.81,15.8,15.8,15.8,15.8,15.81,15.79,15.79,15.8,15.8,15.8,15.81,15.81,15.81,15.81,15.8,15.82,15.81,15.81,15.81,15.81,15.82,15.8,15.81,15.81,15.81,15.81,15.81,15.81,15.81,15.81,15.81,15.8,15.8,15.81,15.81,15.83,15.82,15.82,15.82,15.82,15.84,15.82,15.81,15.81,15.81,15.81,15.83,15.81,15.81,15.81,15.81,15.81,15.79,15.79,15.79,15.78,15.8,15.8,15.8,15.8,15.8,15.83,15.81,15.8,15.8,15.8,15.81,15.83,15.83,15.82,15.82,15.83,15.8,15.8,15.81,15.8,15.83,15.82,15.83,15.83,15.83,15.84,15.8,15.8,15.8,15.81,15.81,15.81,15.8,15.8,15.81,15.81,15.83,15.83,15.83,15.82,15.82,15.83,15.82,15.82,15.82,15.82,15.83,15.8,15.8,15.8,15.81,15.83,15.8,15.8,15.8,15.81,15.81,15.8,15.8,15.8,15.8,15.81,15.77,15.77,15.77,15.77,15.78,15.82,15.81,15.81,15.81,15.81,15.81,15.8,15.8,15.8,15.81,15.82,15.81,15.81,15.81,15.81,15.82,15.81,15.81,15.81,15.81,15.82,15.82,15.82,15.82,15.81,15.82,15.81,15.81,15.8,15.81,15.81,15.8,15.8,15.8,15.8,15.81,15.81,15.81,15.81,15.81,15.81,15.79,15.78,15.81,15.81,15.81,15.83,15.82,15.82,15.82,15.81,15.81,15.79,15.79,15.82,15.82,15.83,15.82,15.82,15.82,15.82,15.84,15.82,15.82,15.82,15.82,15.84,15.82,15.82,15.8,15.8,15.8,15.83,15.83,15.82,15.82,15.82,15.8,15.78,15.81,15.81,15.81,15.81,15.8,15.79,15.79,15.79,15.82,15.82,15.82,15.82,15.82,15.83,15.82,15.81,15.8,15.8,15.82,15.81,15.79,15.79,15.8,15.83,16.21,15.88,15.88,15.88,15.89,15.83,15.82,15.82,15.82,15.82,15.83,15.8,15.8,15.8,15.79,15.81,15.82,15.82,15.82,15.82,15.83,15.82,15.82,15.82,15.82,15.82,15.83,15.83,15.83,15.83,15.85,15.81,15.81,15.81,15.81,15.82,15.83,15.82,15.81,15.81,15.82,15.81,15.81,15.81,15.8,15.8,15.84,15.81,15.82,15.82,15.82,15.82,15.81,15.81,15.81,15.81,15.82,15.81,15.81,15.81,15.82,15.82,15.81,15.81,15.81,15.81,15.83,15.82,15.82,15.82,15.82,15.83,15.81,15.82,15.82,15.82,15.8,15.81,15.81,15.81,15.81,15.84,15.82,15.82,15.82,15.81,15.81,15.83,15.82,15.82,15.8,15.81,15.83,15.82,15.82,15.82,15.81,15.82,15.82,15.82,15.81,15.81,15.83,15.82,15.82,15.82,15.8,15.82,15.82,15.82,15.82,15.79,15.8,15.8,15.8,15.79,15.81,15.83,15.83,15.82,15.82,15.79,15.79,15.83,15.82,15.82,15.81,15.81,15.83,15.82,15.81,15.79,15.79,15.82,15.82,15.82,15.82,15.82,15.83,15.82,15.82,15.83,15.83,15.84,15.81,15.81,15.82,15.82,15.84,15.83,15.83,15.83,15.83,15.84,15.82,15.82,15.78,15.78,15.78,15.83,15.83,15.84,15.84,15.84,15.83,15.82,15.82,15.82,15.82,15.84,15.83,15.8,15.8,15.8,15.81,15.81,15.83,15.83,15.83,15.83,15.83,15.83,15.83,15.83,15.85,15.83,15.84,15.84,15.84,15.84,15.82,15.82,15.81,15.79,15.8,15.79,15.81,15.82,15.82,15.82,15.79,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.83,15.8,15.81,15.8,15.8,15.82,15.81,15.81,15.81,15.81,15.82,15.82,15.82,15.82,15.81,15.82,15.79,15.79,15.79,15.79,15.79,15.8,15.79,15.79,15.79,15.79,15.81,15.79,15.79,15.79,15.81,15.82,15.81,15.8,15.8,15.8,15.83,15.82,15.82,15.82,15.83,15.84,15.82,15.82,15.82,15.82,15.83,15.83,15.82,15.82,15.82,15.83,15.82,15.82,15.82,15.83,15.83,15.84,15.82,15.82,15.83,15.84,15.82,15.79,15.79,15.79,15.82,15.83,15.82,15.82,15.82,15.82,15.83,15.82,15.82,15.82,15.83,15.85,15.82,15.82,15.82,15.83,15.84,15.83,15.83,15.83,15.83,15.83,15.83,15.82,15.83,15.82,15.82,15.84,15.84,15.83,15.83,15.83,15.85,15.84,15.84,15.84,15.83,15.84,15.81,15.81,15.83,15.83,15.83,15.83,15.83,15.83,15.83,15.84,15.83,15.84,15.81,15.81,15.82,15.83,15.84,15.84,15.84,15.84,15.85,15.84,15.84,15.84,15.84,15.85,15.84,15.84,15.84,15.84,15.84,15.83,15.83,15.83,15.82,15.83,15.82,15.82,15.82,15.82,15.83,15.82,15.82,15.82,15.82,15.82,15.81,15.82,15.84,15.83,16,15.89,15.89,15.89,15.89,15.89,15.83,15.78,15.78,15.78,15.78,15.83,15.87,15.81,15.81,15.81,15.83,15.82,15.82,15.82,15.82,15.83,15.83,15.83,15.84,15.84,15.84,15.83,15.83,15.83,15.83,15.84,15.83,15.83,15.83,15.83,15.84,15.83,15.83,15.83,15.83,15.82,15.84,15.83,15.83,15.83,15.83,15.84,15.83,15.83,15.83,15.83,15.83,15.82,15.82,15.82,15.82,15.84,15.83,15.83,15.83,15.84,15.84,15.83,15.83,15.83,15.83,15.84,15.81,15.81,15.81,15.81,15.84,15.83,15.83,15.83,15.83,15.83,15.84,15.84,15.84,15.84,15.82,15.84,15.83,15.83,15.83,15.83,15.82,15.79,15.79,15.79,15.81,15.84,15.83,15.83,15.83,15.83,15.85,15.84,15.84,15.83,15.83,15.84,15.84,15.84,15.84,15.83,15.84,15.84,15.84,15.84,15.85,15.86,15.79,15.79,15.83,15.84,15.84,15.84,15.83,15.83,15.84,15.84,15.87,15.85,15.85,15.84,15.84,15.86,15.85,15.85,15.84,15.84,15.85,15.83,15.78,15.76,15.76,15.77,15.76,15.76,15.77,15.77,15.77,15.76,15.76,15.76,15.76,15.77,15.77,15.76,15.76,15.77,15.77,15.77,15.76,15.77,15.76,15.77,15.77,15.75,15.77,15.77,15.77,15.78,15.77,15.74,15.73,15.73,15.76,15.76,15.77,15.76,15.77,15.79,15.76,15.74,15.74,15.74,15.75,15.76,15.73,15.73,15.73,15.74,15.77,15.77,15.77,15.77,15.77,15.78,15.76,15.77,15.77,15.77,15.77,15.77,15.77,15.77,15.77,15.77,15.75,15.75,15.76,15.75,15.79,15.77,15.77,15.76,15.77,15.78,15.77,15.77,15.77,15.77,15.78,15.77,15.78,15.77,15.77,15.78,15.77,15.77,15.77,15.78,15.77,15.79,15.77,15.77,15.77,15.77,15.79,15.78,15.78,15.78,15.77,15.77,15.74,15.74,15.74,20.94,29.95,21.54,17.14,17.14,17.14,17.15,16.09,15.57,15.41,15.41,15.41,15.4,15.4,15.39,15.4,15.4,15.42,15.4,15.4,15.4,15.4,15.39,15.38,15.37,15.4,15.4,15.41,15.41,15.4,15.4,15.41,15.41,15.4,15.4,15.4,15.38,15.39,15.39,15.38,15.38,15.4,15.42,15.4,15.4,15.4,15.4,15.42,15.4,15.4,15.4,15.4,15.4,15.41,15.4,15.4,15.4,15.4,15.42,15.41,15.41,15.42,15.42,15.42,15.4,15.4,15.4,15.4,15.41,15.4,15.4,15.42,15.4,15.4,15.39,15.39,15.39,15.39,15.4,15.39,15.39,15.38,15.38,15.4,15.39,15.39,15.39,15.39,15.39,15.4,15.39,15.36,15.35,15.35,15.38,15.37,15.35,15.36,15.36,15.38,15.37,15.37,15.37,15.37,15.38,15.37,15.4,15.43,15.43,15.45,15.45,15.45,15.45,15.45,15.47,15.46,15.46,15.46,15.44,15.43,15.46,28.15,26.86,15.96,15.62,16.12,15.69,15.69,15.69,15.69,15.66,15.63,15.62,15.62,15.62,15.64,15.64,15.64,15.64,15.64,15.64,15.63,15.63,15.63,15.63,15.64,15.6,15.6,15.6,15.6,15.62,15.62,15.62,15.62,15.62,15.63,15.64,15.64,15.64,15.64,15.65,15.63,15.63,15.63,15.63,15.63,15.66,15.65,15.65,15.65,15.64,15.65,15.64,15.64,15.63,15.64,15.65,15.65,15.65,15.65,15.65,15.65,15.64,15.64,15.64,15.64,15.65,15.64,15.58,15.55,15.55,15.56,15.56,15.56,15.56,15.56,15.56,15.55,15.56,15.56,15.56,15.57,15.56,15.56,15.56,15.56,15.55,15.57,15.55,15.55,15.55,15.56,15.57,15.56,15.55,15.55,15.55,15.56,15.54,15.54,15.52,15.52,15.54,15.54,15.54,15.54,15.53,15.54,15.54,15.54,15.54,15.54,15.55,15.54,15.54,15.54,15.54,15.55,15.55,15.55,15.55,15.51,15.51,15.55,15.53,15.53,15.52,15.52,15.55,15.54,15.54,15.54,15.54,15.55,15.54,15.54,15.54,15.54,15.55,15.54,15.54,15.54,15.54,15.55,15.55,15.55,15.55,15.55,15.57,15.55,15.55,15.54,15.54,15.55,15.54,15.53,15.55,15.55,15.55,15.56,15.54,15.54,15.54,15.54,15.55,15.54,15.55,15.55,15.55,15.56,15.55,15.54,15.54,15.54,15.55,15.55,15.55,15.55,15.55,15.56,15.55,15.54,15.54,15.54,15.57,15.56,15.56,15.56,15.56,15.56,15.56,15.55,15.55,15.55,15.58,15.64,15.63,15.63,15.63,15.63,15.64,15.63,15.63,15.63,15.63,15.65,15.63,15.63,15.63,15.63,15.65,15.62,15.62,15.62,15.62,15.63,15.62,15.62,15.62,15.62,15.63,15.64,15.63,15.63,15.63,15.64,15.63,15.64,15.64,15.64,15.63,15.82,15.71,15.71,15.71,15.7,15.69,15.64,15.64,15.64,15.64,15.64,15.63,15.64,15.64,15.64,15.65,15.64,15.62,15.62,15.62,15.63,15.63,15.63,15.63,15.63,15.63,15.63,15.63,15.63,15.63,15.64,15.62,15.62,15.62,15.62,15.63,15.64,15.64,15.63,15.63,15.63,15.63,15.63,15.63,15.63,15.62,15.63,15.62,15.62,15.61,15.62,15.63,15.63,15.63,15.63,15.62,15.64,15.63,15.63,15.63,15.63,15.63,15.62,15.63,15.63,15.63,15.64,15.63,15.63,15.63,15.63,15.64,15.63,15.63,15.63,15.63,15.63,15.65,15.63,15.63,15.64,15.64,15.62,15.7,15.7,15.7,15.7,15.71,15.69,15.64,15.64,15.64,15.65,15.64,15.63,15.59,15.59,15.62,15.64,15.64,15.63,15.63,15.65,15.65,15.65,15.61,15.61,15.62,15.63,15.64,15.64,15.64,15.65,15.65,15.65,15.44,15.42,15.42,15.43,15.42,15.42,15.42,15.42,15.44,15.41,15.4,15.4,15.4,15.42,15.42,15.42,15.42,15.41,15.43,15.43,15.43,15.43,15.43,15.69,15.49,15.49,15.49,15.49,15.48,15.42,15.42,15.42,15.42,15.43,15.43,15.41,15.42,15.41,15.41,15.44,15.43,15.43,15.43,15.43,15.44,15.4,15.4,15.4,15.38,15.4,15.4,15.4,15.4,15.4,15.41,15.4,15.4,15.41,15.41,15.42,15.41,15.41,15.41,15.41,15.42,15.41,15.4,15.4,15.4,15.42,15.42,15.41,15.41,15.41,15.41,15.42,15.41,15.41,15.4,15.4,15.42,15.41,15.41,15.41,15.41,15.42,15.41,15.41,15.41,15.41,15.42,15.41,15.41,15.41,15.4,15.42,15.41,15.41,15.41,15.41,15.41,15.4,15.4,15.4,15.41,15.42,15.42,15.41,15.41,15.41,15.41,15.42,15.41,15.41,15.41,15.42,15.42,15.41,15.41,15.41,15.42,15.43,15.42,15.42,15.42,15.42,15.44,15.41,15.41,15.41,15.41,15.43,15.42,15.42,15.42,15.41,15.42,15.42,15.42,15.42,15.42,15.43,15.42,15.42,15.42,15.41,15.41,15.43,15.42,15.42,15.42,15.42,15.44,15.41,15.41,15.43,15.43,15.43,15.42,15.41,15.42,15.42,15.43,15.41,15.41,15.41,15.4,15.42,15.43,15.43,15.43,15.43,15.44,15.43,15.41,15.42,15.42,15.43,15.42,15.42,15.42,15.42,15.42,15.43,15.43,15.43,15.43,15.43,15.45,15.43,15.43,15.43,15.43,15.45,15.43,15.43,15.43,15.44,15.44,15.4,15.41,15.41,15.41,15.42,15.4,15.41,15.41,15.41,15.42,15.41,15.41,15.41,15.41,15.41,15.42,15.4,15.4,15.4,15.4,15.42,15.41,15.41,15.41,15.41,15.42,15.38,15.38,15.38,15.38,15.41,15.41,15.41,15.41,15.41,15.42,15.4,15.4,15.4,15.4,15.42,15.38,15.38,15.38,15.38,15.39,15.41,15.41,15.41,15.41,15.42,15.42,15.41,15.41,15.41,15.41,15.42,15.41,15.4,15.4,15.4,15.42,15.42,15.42,15.42,15.42,15.43,15.41,15.41,15.41,15.41,15.42,15.41,15.41,15.41,15.41,15.41,15.4,15.4,15.41,15.42,15.42,15.42,15.42,15.42,15.42,15.43,15.42,15.42,15.42,15.42,15.42,15.43,15.42,15.42,15.41,15.41,15.42,15.42,15.42,15.42,15.42,15.44,15.42,15.42,15.42,15.42,15.43,15.42,15.42,15.42,15.42,15.43,15.42,15.42,15.42,15.42,15.42,15.42,15.42,15.42,15.4,15.41,15.43,15.43,15.43,15.42,15.42,15.44,15.42,15.42,15.42,15.42,15.44,15.43,15.43,15.43,15.43,15.44,15.43,15.42,15.42,15.42,15.44,15.43,15.43,15.43,15.43,15.44,15.41,15.4,15.41,15.41,15.42,15.41,15.39,15.41,15.41,15.42,15.39,15.39,15.4,15.4,15.39,15.42,15.41,15.41,15.41,15.41,15.4,15.41,15.41,15.41,15.41,15.42,15.41,15.4,15.4,15.4,15.41,15.4,15.41,15.4,15.41,15.73,15.48,15.48,15.48,15.48,15.49,15.41,15.41,15.41,15.41,15.41,15.43,15.41,15.41,15.41,15.41,15.42,15.41,15.41,15.41,15.41,15.42,15.38,15.38,15.38,15.38,15.41,15.4,15.4,15.4,15.4,15.41,15.42,15.42,15.42,15.41,15.43,15.43,15.43,15.43,15.43,15.43,15.43,15.41,15.41,15.41,15.42,15.43,15.42,15.42,15.42,15.42,15.43,15.42,15.42,15.42,15.42,15.42,15.41,15.41,15.42,15.42,15.43,15.42,15.42,15.42,15.42,15.43,15.42,15.42,15.42,15.42,15.43,15.19,14.97,14.97,14.96,14.97,14.99,14.98,14.98,14.98,14.95,14.99,14.98,14.98,14.98,14.98,14.98,14.97,14.97,15.14,15.06,15.07,15.06,15.06,15.05,14.96,14.98,14.97,14.97,14.97,14.97,14.99,14.97,14.97,15,15,15.01,14.99,14.99,14.99,15,15.01,14.99,14.98,14.97,14.96,14.96,14.97,14.96,14.96,14.97,14.97,14.98,14.97,14.97,14.97,14.97,15,14.98,14.98,14.98,14.97,14.99,14.97,14.98,14.98,14.98,14.99,14.98,14.98,14.97,14.97,14.98,14.98,14.98,14.98,14.98,14.98,14.98,14.96,14.98,14.98,14.98,14.99,14.98,14.98,14.98,14.98,14.99,14.98,14.98,14.98,14.98,14.99,14.98,14.98,14.98,14.98,15,14.99,14.97,14.97,14.97,14.98,14.98,14.99,14.99,14.99,14.99,15,14.99,14.99,14.99,14.99,14.99,14.95,14.95,14.95,14.95,14.99,14.98,14.98,14.98,14.98,15.01,14.99,14.98,14.98,14.98,14.99,14.98,14.98,14.98,14.98,14.98,14.96,14.96,14.96,14.96,14.98,14.98,14.98,14.98,14.98,14.99,14.95,14.95,14.95,14.95,14.95,15.01,14.99,14.99,14.99,14.99,15,14.98,14.98,14.98,14.98,15,14.99,14.99,14.99,14.99,14.98,14.96,14.96,14.96,14.96,14.99,15,15,15,15,15.01,14.99,14.99,14.99,14.99,15,15,15,15,14.99,14.99,15.01,14.99,14.99,14.99,14.99,14.99,14.97,14.96,14.96,14.95,14.97,14.97,14.98,14.98,14.98,14.98,14.97,14.97,14.97,14.97,14.98,14.97,14.97,14.97,14.97,14.98,14.97,14.97,14.98,14.96,14.98,14.98,14.98,14.98,14.98,14.98,14.99,14.98,14.98,14.97,14.97,14.98,14.97,14.97,14.99,14.99,15,14.99,14.99,14.99,14.99,14.99,14.98,14.98,14.97,14.96,14.98,14.98,14.98,14.97,14.97,14.98,14.95,14.95,14.95,14.95,14.96,14.98,14.98,14.98,14.98,14.98,15,14.99,14.98,14.98,14.98,14.98,14.97,14.95,14.95,14.94,14.96,14.96,14.98,14.98,14.98,14.99,14.98,14.98,14.98,14.98,14.99,14.96,14.97,14.97,14.96,14.96,15,14.98,14.98,14.98,14.98,15.3,15.66,15.4,15.05,15.05,15.06,15.05,14.99,14.97,14.97,14.98,14.99,14.99,14.99,14.99,14.99,14.99,14.98,14.98,14.98,14.99,14.99,14.99,14.99,14.99,15,14.99,14.99,14.99,14.98,14.99,14.98,14.98,14.98,14.98,14.98,14.98,14.97,14.97,14.97,14.97,15,14.99,14.99,14.99,14.99,15,14.98,14.98,14.98,14.98,14.99,14.99,14.96,14.96,14.96,14.98,14.97,14.97,14.97,14.97,14.96,14.93,14.93,14.93,14.93,14.97,14.97,14.97,14.97,14.97,14.96,14.97,14.96,14.97,14.97,14.98,14.98,14.97,14.97,14.97,14.97,14.99,14.97,14.98,14.97,14.98,14.99,14.97,14.96,14.96,14.97,14.98,14.96,14.96,14.96,14.98,14.99,14.98,14.98,14.98,14.98,14.98,14.97,14.97,14.98,14.98,15,14.98,14.98,14.98,14.98,14.98,15,14.98,14.98,14.99,14.99,14.98,14.96,14.96,14.97,14.97,14.99,14.98,14.98,14.98,14.98,14.99,14.98,14.98,14.98,14.98,14.99,14.98,14.98,14.98,14.98,14.99,14.98,14.98,14.97,14.97,14.99,14.98,14.98,14.98,14.98,14.99,15,14.98,14.98,14.98,14.98,14.99,14.98,14.98,14.98,14.98,14.99,14.99,14.99,14.99,14.99,15.01,14.97,14.98,14.98,14.98,15,14.97,14.98,14.98,14.98,15,14.98,14.98,14.98,14.98,15,14.98,14.98,14.99,14.99,14.99,15,14.99,14.99,14.99,14.99,14.99,14.98,14.98,14.98,14.98,14.98,15,15,15,15,15.01,15,15,14.99,14.97,14.99,14.98,14.97,14.97,14.97,14.98,14.97,14.97,14.97,14.97,14.98,14.98,14.98,14.98,14.98,14.99,14.97,14.97,14.97,14.97,14.98,15,14.98,14.98,14.98,14.97,14.98,14.97,14.97,14.97,14.97,14.99,14.98,14.98,14.98,14.98,14.98,14.97,14.97,14.97,14.97,14.98,14.97,14.97,14.97,14.97,15,14.97,14.97,14.97,14.98,14.96,14.99,14.98,14.98,14.98,14.95,14.97,14.97,14.97,14.97,14.97,14.98,14.97,14.97,14.96,14.96,14.99,14.98,14.98,14.99,14.98,15,14.98,14.98,14.98,14.98,15,14.98,14.98,14.98,14.98,14.99,14.99,14.99,14.99,14.97,14.97,14.99,14.98,14.98,14.98,14.98,14.97,14.96,14.96,14.97,14.97,14.99,14.98,14.98,14.95,14.95,14.98,14.99,14.99,14.99,14.99,15.01,15.52,15.36,15.39,15.39,15.39,15.38,15.32,15.32,15.32,15.33,15.32,15.33,15.32,15.32,15.33,15.33,15.32,15.32,15.32,15.32,15.34,15.32,15.33,15.33,15.33,15.35,15.33,15.33,15.32,15.32,15.34,15.32,15.33,15.33,15.33,15.34,15.33,15.32,15.32,15.32,15.32,15.31,15.31,15.31,15.31,15.32,15.3,15.32,15.32,15.32,15.32,15.61,15.37,15.37,15.37,15.37,15.32,15.31,15.31,15.31,15.31,15.33,15.31,15.31,15.31,15.31,15.33,15.31,15.31,15.31,15.31,15.32,15.31,15.31,15.31,15.31,15.32,15.27,15.27,15.28,15.28,15.28,15.33,15.32,15.32,15.32,15.32,15.32,15.31,15.31,15.31,15.31,15.33,15.32,15.32,15.32,15.32,15.33,15.32,15.31,15.31,15.31,15.33,15.31,15.31,15.31,15.31,15.33,15.3,15.3,15.3,15.3,15.33,15.32,15.32,15.32,15.32,15.32,15.32,15.32,15.32,15.32,15.32,15.33,15.32,15.32,15.32,15.32,15.33,15.31,15.31,15.32,15.32,15.33,15.32,15.32,15.32,15.32,15.33,15.32,15.32,15.32,15.29,15.3,15.32,15.32,15.31,15.31,15.32,15.32,15.32,15.53,15.54,15.55,15.54,15.54,15.54,15.55,15.55,15.56,15.55,15.56,15.55,15.55,15.56,15.55,15.55,15.53,15.53,15.54,15.53,15.53,15.54,15.54,15.55,15.55,15.55,15.55,15.55,15.56,15.55,15.55,15.55,15.54,15.56,15.55,15.55,15.52,15.52,15.53,15.53,15.53,15.53,15.53,15.53,15.5,15.48,15.51,15.51,15.51,15.54,15.53,15.51,15.5,15.5,15.53,15.52,15.53,15.53,15.53,15.54,15.54,15.54,15.53,15.53,15.54,15.53,15.53,15.53,15.54,15.55,15.52,15.53,15.53,15.53,15.55,15.51,15.51,15.51,15.51,15.51,15.53,15.52,15.52,15.52,15.52,15.54,15.54,15.54,15.54,15.54,15.55,15.54,15.54,15.54,15.54,15.55,15.53,15.53,15.53,15.53,15.54,15.54,15.54,15.54,15.54,15.55,15.52,15.52,15.53,15.53,15.53,15.55,15.54,15.54,15.54,15.54,15.55,15.54,15.54,15.54,15.54,15.55,15.54,15.54,15.54,15.54,15.56,15.54,15.54,15.54,15.54,15.55,15.54,15.54,15.54,15.54,15.55,15.55,15.55,15.55,15.55,15.56,15.54,15.54,15.54,15.54,15.54,15.54,15.54,15.55,15.55,15.55,15.56,15.55,15.55,15.55,15.54,15.56,15.54,15.54,15.54,15.54,15.55,15.54,15.54,15.54,15.55,15.56,15.55,15.55,15.54,15.55,15.54,15.52,15.52,15.52,15.54,15.56,15.55,15.55,15.55,15.55,15.56,15.55,15.55,15.55,15.53,15.53,15.55,15.55,15.55,15.6,15.61,15.61,15.59,15.59,15.61,15.61,15.59,15.57,15.57,15.59,15.59,15.62,15.61,15.61,15.59,15.59,15.6,15.59,15.61,15.6,15.6,15.61,15.61,15.6,15.6,15.6,15.61,15.6,15.61,15.62,15.61,15.62,15.59,15.59,15.59,15.59,15.59,15.61,15.6,15.6,15.6,15.6,15.62,15.61,15.61,15.61,15.61,15.62,15.62,15.61,15.61,15.61,15.62,15.61,15.61,15.61,15.61,15.63,15.62,15.61,15.61,15.62,15.63,15.61,15.62,15.62,15.62,15.63,15.62,15.62,15.62,15.62,15.74,15.61,15.36,15.36,15.36,15.36,15.32,15.3,15.3,15.3,15.3,15.31,15.3,15.3,15.3,15.3,15.31,15.31,15.31,15.31,15.31,15.31,15.29,15.29,15.29,15.29,15.31,15.28,15.28,15.28,15.28,15.3,15.3,15.3,15.3,15.3,15.31,15.31,15.3,15.3,15.3,15.3,15.31,15.3,15.31,15.31,15.31,15.32,15.31,15.31,15.31,15.31,15.31,15.29,15.29,15.29,15.29,15.31,15.28,15.28,15.28,15.28,15.32,15.3,15.3,15.3,15.3,15.31,15.3,15.3,15.3,15.3,15.32,15.3,15.29,15.29,15.29,15.29,15.28,15.28,15.28,15.28,15.3,15.27,15.26,15.26,15.26,15.28,15.29,15.27,15.27,15.27,15.29,15.3,15.29,15.29,15.29,15.26,15.27,15.26,15.26,15.26,15.29,15.3,15.29,15.29,15.29,15.3,15.31,15.29,15.29,15.29,15.29,15.29,15.31,15.28,15.28,15.29,15.29,15.3,15.29,15.29,15.28,15.28,15.3,15.29,15.29,15.29,15.29,15.3,15.3,15.3,15.29,15.29,15.3,15.3,15.3,15.3,15.3,15.31,15.3,15.29,15.28,15.28,15.3,15.26,15.26,15.3,15.3,15.3,15.31,15.3,15.27,15.27,15.27,15.29,15.3,15.28,15.28,15.28,15.28,15.27,15.27,15.27,15.28,15.31,15.31,15.31,15.31,15.3,15.3,15.28,15.28,15.28,15.28,15.29,15.28,15.3,15.3,15.3,15.32,15.29,15.29,15.29,15.29,15.29,15.31,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.31,15.3,15.3,15.3,15.3,15.31,15.31,15.31,15.31,15.31,15.32,15.28,15.28,15.28,15.28,15.31,15.31,15.31,15.31,15.31,15.33,15.3,15.3,15.3,15.3,15.3,15.32,15.3,15.29,15.28,15.28,15.3,15.28,15.28,15.28,15.28,15.28,15.27,15.27,15.27,15.28,15.3,15.28,15.28,15.28,15.28,15.29,15.27,15.27,15.27,15.3,15.31,15.29,15.29,15.29,15.29,15.3,15.25,15.25,15.25,15.25,15.29,15.3,15.28,15.28,15.28,15.29,15.3,15.29,15.29,15.29,15.29,15.3,15.29,15.29,15.29,15.29,15.29,15.26,15.26,15.3,15.3,15.3,15.27,15.27,15.27,15.27,15.29,15.27,15.27,15.27,15.29,15.29,15.23,15.23,15.23,15.28,15.28,15.29,15.28,15.28,15.28,15.28,15.29,15.29,15.29,15.31,15.31,15.32,15.31,15.3,15.3,15.3,15.31,15.3,15.3,15.3,15.3,15.31,15.3,15.3,15.31,15.31,15.32,15.3,15.3,15.29,15.29,15.3,15.3,15.29,15.28,15.28,15.29,15.3,15.3,15.31,15.31,15.31,15.32,15.31,15.31,15.31,15.31,15.33,15.31,15.31,15.31,15.3,15.3,15.28,15.3,15.3,15.3,15.31,15.31,15.31,15.3,15.3,15.31,15.3,15.27,15.27,15.27,15.28,15.3,15.31,15.31,15.31,15.35,15.65,15.38,15.38,15.38,15.38,15.33,15.29,15.29,15.28,15.28,15.3,15.29,15.29,15.29,15.29,15.3,15.29,15.29,15.29,15.29,15.3,15.26,15.26,15.26,15.26,15.28,15.3,15.3,15.29,15.29,15.3,15.31,15.3,15.3,15.3,15.3,15.3,15.29,15.29,15.29,15.29,15.29,15.28,15.28,15.28,15.28,15.3,15.3,15.3,15.3,15.3,15.3,15.29,15.29,15.29,15.29,15.32,15.29,15.29,15.29,15.29,15.31,15.3,15.3,15.3,15.3,15.29,15.29,15.28,15.28,15.28,15.29,15.31,15.3,15.3,15.3,15.28,15.29,15.28,15.28,15.28,15.25,15.29,15.28,15.28,15.28,15.29,15.3,15.29,15.29,15.3,15.3,15.31,15.31,15.31,15.31,15.31,15.32,15.31,15.31,15.3,15.29,15.3,15.3,15.3,15.3,15.31,15.31,15.31,15.3,15.3,15.3,15.3,15.32,15.3,15.3,15.3,15.3,15.31,15.29,15.3,15.3,15.3,15.31,15.31,15.31,15.31,15.31,15.32,15.31,15.31,15.31,15.31,15.32,15.31,15.3,15.28,15.28,15.29,15.3,15.3,15.29,15.29,15.29,15.31,15.3,15.28,15.28,15.28,15.32,15.31,15.31,15.31,15.31,15.32,15.31,15.31,15.31,15.3,15.29,15.28,15.26,15.26,15.26,15.28,15.28,15.3,15.3,15.3,15.3,15.29,15.3,15.3,15.3,15.31,15.29,15.25,15.25,15.25,15.25,15.3,15.29,15.29,15.29,15.29,15.3,15.28,15.29,15.28,15.28,15.28,15.29,15.29,15.29,15.29,15.3,15.29,15.29,15.29,15.29,15.31,15.3,15.3,15.29,15.29,15.31,15.3,15.29,15.29,15.29,15.31,15.28,15.28,15.28,15.28,15.29,15.29,15.29,15.29,15.29,15.29,15.31,15.3,15.3,15.3,15.3,15.32,15.3,15.3,15.3,15.29,15.31,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.31,15.3,15.3,15.3,15.3,15.3,15.3,15.29,15.29,15.29,15.31,15.3,15.3,15.3,15.3,15.3,15.31,15.3,15.3,15.3,15.3,15.32,15.31,15.31,15.31,15.28,15.3,15.3,15.3,15.3,15.3,15.32,15.31,15.31,15.31,15.3,15.31,15.3,15.3,15.3,15.31,15.32,15.32,15.32,15.32,15.31,15.32,15.3,15.3,15.3,15.31,15.31,15.32,15.31,15.31,15.31,15.31,15.31,15.3,15.31,15.31,15.31,15.32,15.31,15.31,15.31,15.31,15.33,15.31,15.31,15.31,15.3,15.3,15.29,15.29,15.29,15.28,15.3,15.28,15.28,15.26,15.44,15.36,15.37,15.36,15.35,15.33,15.29,15.31,15.3,15.3,15.3,15.3,15.31,15.3,15.3,15.3,15.29,15.3,15.3,15.3,15.51,15.35,15.37,15.36,15.36,15.32,15.26,15.28,15.3,15.27,15.26,15.26,15.26,15.31,15.3,15.3,15.3,15.3,15.31,15.3,15.3,15.3,15.3,15.66,15.37,15.37,15.37,15.37,15.34,15.29,15.29,15.28,15.28,15.31,15.29,15.29,15.29,15.29,15.3,15.3,15.3,15.3,15.3,15.31,15.3,15.3,15.3,15.3,15.31,15.29,15.29,15.29,15.29,15.29,15.3,15.28,15.28,15.28,15.28,15.32,15.3,15.3,15.3,15.3,15.32,15.3,15.3,15.3,15.3,15.31,15.3,15.3,15.3,15.3,15.31,15.31,15.31,15.31,15.3,15.31,15.31,15.31,15.31,15.31,15.32,15.3,15.3,15.3,15.3,15.3,15.3,15.28,15.28,15.28,15.3,15.32,15.31,15.31,15.31,15.31,15.32,15.31,15.31,15.31,15.31,15.32,15.31,15.31,15.31,15.31,15.31,15.3,15.3,15.3,15.31,15.33,15.31,15.31,15.31,15.3,15.31,15.32,15.32,15.32,15.31,15.28,15.3,15.29,15.29,15.29,15.29,15.29,15.28,15.28,15.28,15.28,15.28,15.28,15.28,15.29,15.29,15.3,15.29,15.29,15.29,15.29,15.32,15.3,15.3,15.29,15.29,15.31,15.29,15.29,15.29,15.29,15.31,15.29,15.29,15.26,15.26,15.26,15.29,15.28,15.28,15.28,15.28,15.3,15.29,15.3,15.3,15.3,15.31,15.3,15.3,15.3,15.3,15.3,15.27,15.27,15.27,15.27,15.29,15.28,15.3,15.3,15.3,15.31,15.3,15.3,15.3,15.3,15.31,15.27,15.3,15.3,15.3,15.31,15.3,15.3,15.3,15.3,15.3,15.32,15.29,15.28,15.28,15.28,15.3,15.3,15.3,15.3,15.3,15.31,15.3,15.3,15.3,15.3,15.31,15.29,15.29,15.29,15.29,15.31,15.31,15.31,15.31,15.31,15.32,15.29,15.29,15.29,15.29,15.31,15.28,15.28,15.29,15.29,15.29,15.3,15.28,15.28,15.28,15.28,15.3,15.29,15.29,15.29,15.29,15.3,15.29,15.29,15.29,15.29,15.31,15.3,15.3,15.3,15.31,15.31,15.3,15.3,15.29,15.29,15.31,15.25,15.25,15.25,15.25,15.32,15.31,15.31,15.31,15.31,15.31,15.27,15.27,15.26,15.26,15.28,15.3,15.29,15.29,15.29,15.28,15.29,15.28,15.28,15.3,15.3,15.32,15.3,15.3,15.3,15.24,15.27,15.29,15.29,15.29,15.31,15.46,15.48,15.48,15.48,15.48,15.49,15.48,15.48,15.48,15.49,15.5,15.58,15.57,15.57,15.55,15.55,15.59,15.59,15.59,15.59,15.59,15.61,15.59,15.59,15.59,15.59,15.58,15.56,15.56,15.58,15.59,15.6,15.6,15.6,15.59,15.59,15.6,15.59,15.59,15.57,15.57,15.6,15.6,15.59,15.59,15.59,15.59,15.58,15.59,15.59,15.59,15.59,15.61,15.6,15.61,15.6,15.6,15.59,15.58,15.59,15.59,15.59,15.61,15.6,15.59,15.59,15.59,15.61,15.6,15.59,15.59,15.59,15.6,15.6,15.6,15.6,15.6,15.61,15.59,15.6,15.6,15.6,15.6,15.61,15.6,15.6,15.6,15.6,15.93,15.67,15.67,15.67,15.67,15.65,15.6,15.59,15.59,15.59,15.61,15.61,15.61,15.61,15.61,15.62,15.6,15.6,15.6,15.6,15.62,15.61,15.61,15.61,15.61,15.62,15.61,15.61,15.61,15.61,15.62,15.61,15.61,15.61,15.61,15.61,15.59,15.58,15.58,15.58,15.58,15.62,15.61,15.61,15.6,15.58,15.6,15.58,15.58,15.58,15.59,15.59,15.56,15.56,15.56,15.56,15.6,15.59,15.59,15.59,15.59,15.57,15.59,15.59,15.59,15.59,15.6,15.59,15.59,15.59,15.59,15.6,15.59,15.59,15.59,15.59,15.58,15.6,15.59,15.59,15.59,15.59,15.6,15.59,15.6,15.6,15.59,15.61,15.59,15.61,15.9,15.97,15.99,15.99,15.99,15.96,15.95,15.96,15.94,15.97,15.98,16,16.02,16.03,16.03,16.03,16.03,16.05,16.03,16.03,15.98,16.01,16.02,16.01,16,16.01,16.01,16.02,16.02,23.09,30.22,28.02,25.24,17.19,17.19,17.19,17.15,17.11,17.13,17.12,17.12,17.12,17.12,17.13,17.11,17.11,17.11,17.11,17.14,17.12,17.12,17.11,17.11,17.13,17.13,17.13,17.13,17.13,17.13,17.15,17.14,17.14,17.14,17.14,17.15,17.14,17.14,17.13,17.13,17.14,17.13,17.09,17.09,17.09,17.13,17.12,17.12,17.11,17.11,17.14,17.15,17.14,17.14,17.14,17.15,17.12,17.13,17.13,17.13,17.15,17.13,17.13,17.13,17.13,17.14,17.14,17.14,17.14,17.14,17.15,17.13,17.14,17.14,17.14,17.12,17.13,17.1,17.1,17.1,17.08,17.12,17.11,17.11,17.11,17.11,17.13,17.13,17.12,17.13,17.13,17.14,17.13,17.12,17.11,17.11,17.12,17.1,17.1,17.11,17.11,17.12,17.13,17.13,17.13,17.13,17.13,17.1,17.1,17.1,17.1,17.16,17.14,17.12,17.11,17.11,17.11,17.12,17.11,17.11,17.11,17.12,17.14,17.13,17.13,17.13,17.13,17.14,17.12,17.13,17.13,17.13,17.15,17.11,17.1,17.1,17.1,17.13,17.12,17.12,17.12,17.11,17.12,17.12,17.12,17.11,17.11,17.15,17.13,17.13,17.13,17.13,17.14,17.13,17.1,17.1,17.1,17.13,17.13,17.13,17.13,17.13,17.13,17.15,17.14,17.14,17.14,17.13,17.15,17.14,17.14,17.15,17.15,17.17,17.14,17.14,17.14,17.13,17.14,17.12,17.13,17.13,17.13,17.14,17.14,17.14,17.14,17.15,17.15,17.13,17.13,17.13,17.14,17.15,17.14,17.12,17.12,17.12,17.12,17.16,17.15,17.14,17.14,17.14,17.16,17.15,17.15,17.15,17.15,17.16,17.15,17.15,17.16,17.16,17.17,17.14,17.14,17.13,17.13,17.14,17.14,16.41,15.84,15.84,15.85,15.83,15.83,15.83,15.81,15.62,15.65,15.64,15.62,15.62,15.6,15.62,15.61,15.61,15.61,15.61,15.62,15.61,15.62,15.62,15.62,15.84,15.65,15.68,15.67,15.67,15.65,15.62,15.62,15.61,15.61,15.63,15.61,15.61,15.61,15.61,15.63,15.61,15.6,15.6,15.6,15.61,15.61,15.62,15.62,15.62,15.63,15.62,15.61,15.61,15.61,15.61,15.63,15.62,15.61,15.61,15.61,15.62,15.61,15.61,15.61,15.61,15.63,15.62,15.61,15.61,15.62,15.63,15.63,15.63,15.63,15.63,15.64,15.58,15.57,15.57,15.58,15.59,15.62,15.62,15.62,15.62,15.62,15.63,15.61,15.61,15.61,15.62,15.59,15.58,15.58,15.57,15.57,15.64,15.62,15.62,15.62,15.6,15.63,15.62,15.62,15.61,15.61,15.62,15.59,15.59,15.6,15.6,15.64,15.62,15.62,15.62,15.62,15.63,15.63,15.63,15.63,15.63,15.63,15.62,15.62,15.62,15.62,15.63,15.63,15.63,15.63,15.62,15.63,15.63,15.62,15.62,15.62,15.62,15.64,15.62,15.62,15.62,15.62,15.62,15.6,15.6,15.6,15.62,15.62,15.62,15.62,15.62,15.64,15.64,15.61,15.61,15.61,15.62,15.63,15.62,15.62,15.63,15.64,15.65,15.64,15.63,15.62,15.62,15.63,15.61,15.61,15.61,15.61,15.61,15.6,15.6,15.64,15.86,15.87,15.9,15.9,15.89,15.9,15.91,15.91,15.9,15.9,15.9,15.9,15.9,15.87,15.9,15.89,15.89,15.91,15.89,15.89,15.89,15.89,15.91,15.9,15.9,15.9,15.9,15.9,15.87,15.87,15.88,15.88,15.88,15.88,15.87,15.86,15.87,15.87,15.9,15.89,15.9,15.9,15.9,15.92,15.91,15.91,15.91,15.9,15.92,15.91,15.9,15.9,15.9,15.92,15.91,15.91,15.91,15.92,15.92,15.9,15.91,15.91,15.91,15.91,15.9,15.91,15.91,15.9,15.91,15.91,15.91,15.91,15.91,15.91,15.91,15.91,15.89,15.89,15.89,15.9,15.9,15.9,15.9,15.9,15.91,15.9,15.9,15.9,15.9,15.92,15.92,15.91,15.91,15.91,15.92,15.9,15.9,15.9,15.9,15.91,15.89,15.89,15.89,15.89,15.93,15.9,15.9,15.91,15.9,15.92,15.9,15.9,15.9,15.9,15.9,15.92,15.91,15.91,15.91,15.91,15.92,15.91,15.91,15.91,15.91,15.92,15.91,15.91,15.91,15.91,15.92,15.91,15.91,15.9,15.92,15.93,15.91,15.91,15.91,15.91,15.92,15.92,15.91,15.91,15.9,15.91,15.89,15.89,15.89,15.89,15.9,15.89,15.88,15.89,15.89,15.89,15.9,15.9,15.9,15.9,15.88,15.91,15.9,15.9,15.9,15.88,15.91,15.91,15.9,15.9,15.9,15.91,15.89,15.89,15.89,15.89,15.91,15.9,15.9,15.9,15.9,15.92,15.9,15.9,15.89,15.9,15.91,15.91,15.91,15.91,15.9,15.91,15.91,15.91,15.89,15.89,15.89,15.91,15.91,15.91,15.91,15.91,15.93,15.9,15.91,15.92,15.91,15.92,15.9,15.9,15.91,15.91,16.15,15.98,15.98,15.96,15.96,15.96,15.91,15.91,15.9,15.9,15.91,15.92,15.92,15.91,15.91,15.92,15.93,15.92,15.92,15.91,15.91,15.93,15.91,15.91,15.91,15.91,15.92,15.91,15.9,15.91,15.91,15.93,15.92,15.89,15.88,15.89,15.9,15.89,15.91,15.91,15.91,15.93,15.9,15.91,15.91,15.91,15.92,15.91,15.92,15.91,15.91,15.91,15.93,15.91,15.91,15.91,15.91,15.92,15.92,15.92,15.92,15.92,15.93,15.92,15.92,15.92,15.92,15.93,15.93,15.93,15.93,15.93,15.92,15.9,15.91,15.91,15.91,15.92,15.92,15.92,15.92,15.92,15.93,15.91,15.91,15.91,15.89,15.9,15.9,15.9,15.9,15.9,15.9,15.91,15.89,15.89,15.89,15.89,15.91,15.9,15.9,15.9,15.89,15.91,15.91,15.91,15.91,15.91,15.91,15.9,15.9,15.9,15.9,15.91,15.9,15.9,15.9,15.9,15.92,15.89,15.89,15.89,15.89,15.91,15.9,15.91,15.91,15.91,15.91,15.92,15.9,15.9,15.91,15.91,15.92,15.91,15.91,15.91,15.91,15.92,15.91,15.91,15.9,15.91,15.92,15.91,15.91,15.91,15.9,15.91,15.91,15.91,15.91,15.89,15.91,15.91,15.91,15.91,15.91,15.92,15.91,15.91,15.91,15.91,15.91,15.92,15.91,15.9,16.01,15.96,15.98,15.98,15.98,15.95,15.92,15.93,15.92,15.92,15.92,15.91,15.92,15.92,15.92,15.87,15.87,15.89,15.9,15.9,15.89,15.89,15.91,15.92,15.92,15.87,15.87,15.88,15.92,15.92,15.92,15.92,15.92,15.93,15.92,15.92,15.92,15.92,15.93,15.92,15.92,15.92,15.93,15.93,15.92,15.92,15.92,15.92,15.93,15.92,15.92,15.93,15.93,15.93,15.92,15.92,15.93,15.93,15.93,15.91,15.92,15.92,15.92,15.94,15.92,15.92,15.92,15.92,15.92,15.94,15.9,15.91,15.91,15.91,15.9,15.88,15.88,15.88,15.88,15.91,15.9,15.9,15.9,15.9,15.91,15.91,15.91,15.91,15.91,15.92,15.9,15.9,15.9,15.91,15.91,15.91,15.91,15.91,15.91,15.92,15.91,15.91,15.91,15.91,15.91,15.88,15.87,15.87,15.87,15.87,15.89,15.88,15.88,15.88,15.91,15.91,15.9,15.89,15.89,15.9,15.92,15.91,15.91,15.91,15.91,15.92,15.91,15.91,15.91,15.91,15.91,15.91,15.9,15.9,15.9,15.92,15.9,15.9,15.9,15.9,15.9,15.91,15.93,15.92,15.92,15.92,15.92,15.91,15.91,15.9,15.9,15.92,15.91,15.91,15.91,15.91,15.93,15.92,15.92,15.92,15.98,15.91,15.9,15.9,15.9,15.92,15.93,15.91,15.91,15.91,15.92,15.93,15.92,15.92,15.92,15.92,15.92,15.91,15.89,15.9,15.91,15.91,15.93,15.91,15.91,15.92,15.92,15.93,15.92,15.92,15.92,15.92,15.93,15.92,15.92,15.9,15.9,16.16,15.99,15.99,15.99,15.99,15.97,15.91,15.92,15.92,15.92,15.93,15.92,15.92,15.92,15.92,15.92,15.9,15.9,15.91,15.92,15.92,15.94,15.93,15.93,15.93,15.93,15.93,15.92,15.91,15.9,15.9,15.92,15.9,15.91,15.91,15.91,15.92,15.89,15.9,15.9,15.9,15.91,15.9,15.87,15.88,15.87,15.89,15.87,15.87,15.87,15.87,15.87,15.88,15.87,15.88,15.88,15.88,15.91,15.85,15.85,15.85,15.85,15.9,15.91,15.91,15.91,15.91,15.92,15.91,15.91,15.92,15.91,15.93,15.91,15.91,15.91,15.91,15.92,15.92,15.91,15.91,15.91,15.92,15.9,15.9,15.9,15.9,15.91,15.91,15.91,15.91,15.91,15.91,15.89,15.88,15.88,15.88,15.91,15.91,15.89,15.9,15.89,15.89,15.93,15.91,15.91,15.91,15.91,15.93,15.91,15.91,15.91,15.92,15.91,15.89,15.89,15.89,15.89,15.92,15.92,15.92,15.92,15.92,15.91,15.93,15.92,15.92,15.91,15.92,15.93,15.92,15.92,15.92,15.91,15.91,15.89,15.9,15.89,15.92,15.93,15.92,15.92,15.92,15.92,15.93,15.92,15.92,15.92,15.91,15.93,15.92,15.92,15.92,15.93,15.94,15.93,15.93,15.91,15.91,15.92,15.93,15.92,15.92,15.92,15.92,15.92,15.91,15.91,15.91,15.91,15.95,15.82,15.63,15.64,15.64,15.64,15.62,15.62,15.64,15.64,15.65,15.64,15.64,15.62,15.62,15.62,15.61,15.61,15.62,15.62,15.63,15.61,15.61,15.62,15.62,15.63,15.61,15.61,15.61,15.61,15.61,15.63,15.62,15.62,15.61,15.61,15.63,15.62,15.6,15.6,15.6,15.62,15.62,15.62,15.61,15.61,15.63,15.63,15.7,15.7,15.7,15.72,15.71,15.72,15.72,15.72,15.73,15.71,15.7,15.7,15.7,15.7,15.72,15.71,15.71,15.71,15.71,15.72,15.72,15.71,15.71,15.71,15.72,15.71,15.72,15.71,15.71,15.73,15.7,15.7,15.7,15.7,15.73,15.73,15.74,15.74,15.74,15.75,15.72,15.72,15.72,15.72,15.74,15.74,15.74,15.73,15.73,15.73,15.74,15.74,15.74,15.74,15.74,15.74,15.73,15.73,15.73,15.72,15.74,15.74,15.73,15.74,15.74,15.71,15.71,15.72,15.72,15.72,15.75,15.73,15.73,15.73,15.72,15.76,15.73,15.74,15.73,15.73,15.7,15.73,15.72,15.72,15.71,15.75,15.75,15.74,15.74,15.74,15.75,15.76,15.74,15.74,15.74,15.74,15.75,15.73,15.74,15.74,15.73,15.74,15.73,15.73,15.73,15.75,15.76,15.75,15.75,15.75,15.74,15.76,15.75,15.75,15.75,15.75,15.76,15.75,15.74,15.73,15.73,15.73,15.71,15.7,15.7,15.72,15.72,15.73,15.73,15.73,15.73,15.73,15.74,15.73,15.73,15.7,15.7,15.72,15.73,15.73,15.74,15.74,15.75,15.73,15.73,15.71,15.71,16.1,15.77,15.79,15.79,15.79,15.79,15.71,15.71,15.7,15.7,15.71,15.73,15.71,15.72,15.71,15.71,15.74,15.72,15.73,15.73,15.73,15.73,15.7,15.72,15.71,15.72,15.72,15.69,15.72,15.72,15.72,15.72,15.73,15.71,15.71,15.71,15.72,15.71,15.74,15.74,15.74,15.76,15.73,15.73,15.73,15.73,15.73,15.73,15.72,15.72,15.72,15.71,15.73,15.7,15.7,15.7,15.7,15.73,15.71,15.71,15.71,15.71,15.74,15.74,15.73,15.73,15.73,15.75,15.75,15.74,15.74,15.74,15.75,15.73,15.73,15.73,15.72,15.73,15.74,15.74,15.74,15.74,15.74,15.75,15.74,15.73,15.74,15.73,15.74,15.72,15.72,15.72,15.74,15.75,15.74,15.74,15.74,15.74,15.74,15.72,15.72,15.72,15.72,15.75,15.74,15.74,15.74,15.74,15.73,15.73,15.72,15.72,15.72,15.74,15.73,15.73,15.73,15.73,15.75,15.75,15.75,15.75,15.74,15.75,15.76,15.75,15.75,15.72,15.72,15.73,15.73,15.73,15.73,15.73,15.74,15.73,15.73,15.73,15.73,15.74,15.73,15.73,15.73,15.73,15.74,15.73,15.73,15.73,15.72,15.73,15.72,15.72,15.73,15.74,15.74,15.75,15.74,15.74,15.74,15.74,15.74,15.74,15.73,15.73,15.73,15.74,15.73,15.73,15.74,15.73,15.74,15.73,15.73,15.72,15.72,15.74,15.74,15.74,15.73,15.73,15.74,15.71,15.75,15.74,15.74,15.75,15.73,15.73,15.72,15.72,15.72,15.75,15.74,15.74,15.74,15.74,15.74,15.72,15.72,15.72,15.72,15.74,15.72,15.73,15.73,15.73,15.74,15.74,15.75,15.75,15.75,15.76,15.73,15.72,15.72,15.72,15.73,15.73,15.74,15.74,15.74,15.74,15.75,15.74,15.74,15.74,15.74,15.75,15.74,15.74,15.73,15.73,15.71,15.73,15.73,15.73,15.73,15.76,15.75,15.75,15.75,15.74,15.76,15.75,15.75,15.75,15.75,15.76,15.75,15.75,15.74,15.74,15.75,15.72,15.72,15.72,15.72,15.73,15.74,15.73,15.73,15.73,15.73,15.77,15.75,15.75,15.75,15.75,15.75,15.75,15.75,15.75,15.75,15.76,15.76,15.75,15.75,15.75,15.76,15.73,15.72,15.72,15.72,15.73,15.74,15.74,15.74,15.74,15.74,15.72,15.71,15.71,15.71,15.73,15.74,15.73,15.73,15.73,15.73,15.74,15.72,15.72,15.74,15.73,15.74,15.73,15.73,15.73,15.73,15.75,15.74,15.74,15.74,15.73,15.74,15.74,15.74,15.74,15.73,15.74,15.73,15.73,15.74,15.74,15.75,15.73,15.73,15.73,15.72,15.73,15.76,15.74,15.73,15.73,15.73,15.75,15.74,15.74,15.74,15.74,15.75,15.74,15.74,15.73,15.73,15.73,15.72,15.72,15.73,15.73,15.74,15.72,15.72,15.74,15.74,15.76,15.75,15.75,15.75,15.74,15.95,15.94,15.8,15.81,15.81,15.81,15.75,15.73,15.73,15.73,15.75,15.76,15.75,15.75,15.74,15.75,15.76,15.75,15.73,15.73,15.73,15.67,15.65,15.64,15.64,15.64,15.66,15.65,15.65,15.65,15.65,15.66,15.64,15.63,15.63,15.63,15.65,15.65,15.66,15.66,15.65,15.65,15.66,15.65,15.65,15.65,15.66,15.66,15.65,15.65,15.65,15.65,15.65,15.65,15.65,15.65,15.65,15.66,15.66,15.66,15.65,15.65,15.66,15.65,15.65,15.65,15.64,15.66,15.66,15.66,15.65,15.65,15.66,15.65,15.62,15.62,15.62,15.64,15.64,15.64,15.64,15.64,15.63,15.65,15.63,15.63,15.63,15.63,15.62,15.6,15.6,15.6,15.63,15.64,15.63,15.63,15.63,15.62,15.65,15.63,15.63,15.63,15.63,15.65,15.64,15.63,15.63,15.63,15.63,15.59,15.59,15.6,15.6,15.63,15.63,15.63,15.63,15.63,15.64,15.64,15.64,15.64,15.64,15.64,15.65,15.63,15.63,15.63,15.64,15.65,15.64,15.64,15.64,15.62,15.64,15.64,15.64,15.64,15.64,15.72,15.79,15.79,15.79,15.78,15.79,15.77,15.78,15.78,15.78,15.79,15.78,15.78,15.79,15.78,15.79,15.78,15.78,15.78,15.77,15.77,15.8,15.78,15.78,15.79,15.79,15.79,15.78,15.78,15.79,15.78,15.79,15.78,15.78,15.77,15.77,15.79,15.78,15.78,15.8,15.8,15.81,15.79,15.79,15.79,15.79,15.8,15.8,15.8,15.79,15.79,15.79,15.8,15.79,15.79,15.79,15.79,15.81,15.8,15.79,15.79,15.79,15.8,15.79,15.79,15.79,15.79,15.81,15.79,15.79,15.81,15.82,15.85,15.86,15.87,15.87,15.87,15.88,15.86,15.87,15.87,15.86,15.88,15.86,15.84,15.84,15.84,15.86,15.86,15.84,15.83,15.82,15.82,15.85,15.83,15.83,15.83,15.83,15.87,15.85,15.84,15.84,15.84,15.88,15.85,15.85,15.85,15.85,15.86,15.84,15.84,15.84,15.84,15.86,15.85,15.85,15.85,15.85,15.86,15.86,15.86,15.86,15.86,15.87,15.86,15.86,15.86,15.86,15.87,15.84,15.84,15.84,15.84,15.87,15.86,15.86,15.86,15.86,15.86,15.87,15.86,15.86,15.86,15.86,15.88,15.85,15.86,15.86,15.86,15.87,15.86,15.85,15.85,15.85,15.86,15.86,15.86,15.86,15.85,15.87,15.86,15.86,15.86,15.87,15.88,15.86,15.86,15.86,15.86,15.87,15.87,15.87,15.87,15.87,15.87,15.87,15.86,15.86,15.86,15.85,15.86,15.85,15.85,15.85,15.86,15.88,15.85,15.85,15.85,15.87,15.88,15.86,15.86,15.86,15.87,15.88,15.88,15.88,15.88,15.87,15.87,15.83,15.83,15.83,15.85,15.87,15.86,15.86,15.86,15.86,15.87,15.87,15.87,15.87,15.84,15.84,15.87,15.86,15.86,15.86,15.86,15.89,15.88,15.87,15.87,15.87,16.18,15.93,15.94,15.94,15.94,15.92,15.87,15.87,15.87,15.87,15.89,15.87,15.87,15.87,15.87,15.89,15.89,15.88,15.85,15.85,15.87,15.85,15.85,15.84,15.84,15.84,15.86,15.86,15.83,15.83,15.83,15.87,15.86,15.85,15.85,15.85,15.87,15.86,15.86,15.86,15.86,15.87,15.85,15.85,15.85,15.85,15.87,15.87,15.85,15.84,15.84,15.86,15.86,15.86,15.86,15.86,15.87,15.86,15.86,15.86,15.86,15.88,15.86,15.85,15.85,15.85,15.85,15.88,15.86,15.86,15.86,15.86,15.88,15.82,15.82,15.82,15.82,15.86,15.86,15.86,15.86,15.86,15.88,15.87,15.87,15.86,15.86,15.88,15.87,15.87,15.87,15.87,15.88,15.87,15.87,15.87,15.87,15.89,15.87,15.87,15.86,15.86,15.88,15.86,15.86,15.86,15.86,15.86,15.88,15.87,15.87,15.87,15.87,15.88,15.87,15.86,15.87,15.87,15.88,15.87,15.87,15.87,15.87,15.88,15.87,15.87,15.87,15.87,15.88,15.87,15.87,15.87,15.87,15.88,15.88,15.88,15.88,15.88,15.9,15.88,15.88,15.88,15.88,15.88,15.87,15.87,15.87,15.87,15.89,15.88,15.88,15.88,15.88,15.88,15.88,15.87,15.87,15.87,15.88,15.9,15.88,15.88,15.88,15.89,15.88,15.85,15.85,15.85,15.86,15.87,15.84,15.84,15.84,15.86,15.87,15.86,15.86,15.86,15.86,15.88,15.87,15.87,15.87,15.86,15.87,15.85,15.85,15.85,15.87,15.88,15.87,15.86,15.86,15.87,15.87,15.88,15.87,15.86,15.83,15.83,15.87,15.87,15.87,15.86,15.86,15.87,15.87,15.87,15.87,15.87,15.88,15.87,15.87,15.87,15.87,15.88,15.87,15.87,15.87,15.86,15.88,15.87,15.87,15.87,15.87,15.87,15.87,15.86,15.87,15.87,15.87,15.86,15.84,15.87,15.87,15.86,15.89,15.87,15.88,15.88,15.88,15.89,15.87,15.87,15.87,15.87,15.89,15.88,15.87,15.87,15.87,15.88,15.87,15.86,15.86,15.86,15.88,15.89,15.87,15.87,15.87,15.89,15.88,15.88,15.88,15.88,15.88,15.89,15.88,15.88,15.88,15.88,15.88,15.87,15.87,15.87,15.87,15.87,15.87,15.86,15.86,15.87,15.89,15.87,15.87,15.87,15.86,15.88,15.86,15.86,15.86,15.86,15.87,15.89,15.88,15.89,15.88,15.89,15.88,15.88,15.88,15.88,15.89,15.88,15.88,15.89,15.88,15.89,15.92,16.37,15.97,15.97,15.97,16.02,15.92,15.9,15.9,15.9,15.91,15.91,15.91,15.91,15.91,15.91,15.9,15.88,15.88,15.88,15.9,15.88,15.88,15.88,15.88,15.88,15.88,15.88,15.88,15.88,15.87,15.88,15.88,15.88,15.88,15.89,15.88,15.88,15.88,15.88,15.89,15.88,15.86,15.86,15.86,15.89,15.89,15.87,15.87,15.89,15.89,15.9,15.89,15.89,15.89,15.87,16.25,15.92,15.92,15.92,15.93,15.94,15.89,15.89,15.89,15.88,15.89,15.89,15.89,15.89,15.87,15.89,15.89,15.89,15.89,15.89,15.9,15.89,15.89,15.9,15.89,15.89,15.91,15.89,15.89,15.89,15.89,15.9,15.89,15.89,15.9,15.9,15.91,15.9,15.9,15.89,15.89,15.9,15.88,15.88,15.9,15.9,15.91,15.9,15.9,15.9,15.89,15.9,15.89,15.9,15.9,15.9,15.91,15.89,15.89,15.89,15.89,15.89,15.91,15.9,15.89,15.89,15.89,15.91,15.9,15.89,15.89,15.89,15.91,15.9,15.86,15.85,15.85,15.89,15.9,15.89,15.89,15.9,15.91,15.89,15.88,15.88,15.88,15.89,15.9,15.86,15.86,15.86,15.88,15.89,15.9,15.9,15.9,15.9,15.91,15.9,15.9,15.89,15.89,15.91,15.91,15.91,15.91,15.91,15.92,15.91,15.91,15.91,15.91,15.92,15.88,15.88,15.87,16.07,15.96,15.96,15.96,15.95,15.91,15.9,15.88,15.88,15.89,15.88,15.89,15.88,15.89,15.88,15.88,15.9,15.89,15.88,15.89,15.89,15.88,15.9,15.89,15.89,15.89,15.88,15.9,15.88,15.88,15.89,15.88,15.9,15.89,15.89,15.89,15.89,15.9,15.88,15.89,15.89,15.88,15.88,15.86,15.89,15.91,15.91,15.78,15.67,15.68,15.68,15.68,15.69,15.68,15.68,15.68,15.68,15.69,15.67,15.67,15.67,15.68,15.64,15.67,15.66,15.66,15.66,15.67,15.69,15.68,15.68,15.67,15.67,15.68,15.68,15.68,15.68,15.68,15.7,15.68,15.68,15.68,15.68,15.69,15.68,15.68,15.67,15.68,15.69,15.69,15.68,15.68,15.68,15.69,15.68,15.68,15.68,15.68,15.7,15.66,15.66,15.66,15.68,15.68,15.68,15.66,15.66,15.68,15.68,15.69,15.68,15.68,15.65,15.65,15.69,15.68,15.68,15.69,15.69,15.68,15.65,15.66,15.68,15.68,15.7,15.68,15.68,15.68,15.68,15.69,15.69,15.69,15.69,15.69,15.7,15.7,15.7,15.69,15.69,15.7,15.7,15.7,15.68,15.68,15.68,15.69,15.69,15.7,15.7,15.7,15.71,15.69,15.69,15.67,15.67,15.69,15.68,15.68,15.68,15.68,15.68,15.67,15.67,15.67,15.67,15.69,15.67,15.68,15.68,15.68,15.69,15.67,15.67,15.67,15.67,15.68,15.67,15.68,15.68,15.68,15.69,15.69,15.7,15.7,15.69,15.69,15.7,15.69,15.69,15.69,15.69,15.71,15.7,15.7,15.7,15.7,15.7,15.69,15.69,15.69,15.69,15.7,15.7,15.7,15.7,15.7,15.72,15.7,15.69,15.69,15.69,15.71,15.69,15.69,15.69,15.69,15.7,15.7,15.7,15.7,15.7,15.71,15.7,15.7,15.69,15.7,15.7,15.71,15.7,15.7,15.7,15.7,15.72,15.71,15.71,15.71,15.7,15.71,15.7,15.7,15.7,15.7,15.71,15.7,15.7,15.7,15.7,15.97,15.76,15.76,15.76,15.76,15.76,15.7,15.7,15.7,15.7,15.69,15.7,15.7,15.7,15.7,15.72,15.7,15.7,15.7,15.71,15.71,15.73,15.71,15.71,15.71,15.71,15.71,15.7,15.7,15.7,15.7,15.72,15.72,15.71,15.71,15.7,15.71,15.69,15.68,15.68,15.7,15.71,15.68,15.68,15.68,15.68,15.7,15.71,15.71,15.71,15.71,15.72,15.71,15.71,15.71,15.71,15.72,15.71,15.69,15.69,15.68,15.68,15.71,15.69,15.69,15.69,15.69,15.7,15.69,15.69,15.69,15.69,15.7,15.69,15.69,15.67,15.67,15.7,15.68,15.69,15.69,15.69,15.71,15.7,15.7,15.69,15.69,15.7,15.69,15.69,15.7,15.7,15.71,15.69,15.69,15.69,15.69,15.69,15.72,15.7,15.69,15.69,15.69,15.68,15.67,15.71,15.71,15.71,15.71,15.68,15.69,15.69,15.69,15.7,15.69,15.7,15.7,15.69,15.7,15.68,15.68,15.69,15.68,15.7,15.7,15.69,15.69,15.69,15.7,15.69,15.67,15.67,15.67,15.68,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.71,15.7,15.71,15.71,15.71,15.67,15.69,15.69,15.69,15.69,15.71,15.68,15.68,15.68,15.68,15.7,15.71,15.71,15.71,15.71,15.72,15.71,15.71,15.71,15.71,15.72,15.71,15.71,15.71,15.7,15.72,15.69,15.69,15.68,15.68,15.68,15.71,15.7,15.7,15.7,15.7,15.72,15.71,15.71,15.71,15.71,15.72,15.71,15.71,15.71,15.71,15.71,15.68,15.68,15.68,15.71,15.73,15.72,15.72,15.72,15.71,15.71,15.71,15.71,15.71,15.71,15.73,15.71,15.71,15.7,15.68,15.71,15.69,15.69,15.68,15.68,15.68,15.69,15.68,15.67,15.67,15.67,15.7,15.69,15.69,15.69,15.7,15.7,15.69,15.69,15.69,15.69,15.69,15.67,15.67,15.67,15.68,15.69,15.68,15.68,15.68,15.69,15.69,15.68,15.68,15.67,15.69,15.7,15.68,15.68,15.68,15.67,15.69,15.67,15.67,15.7,15.67,15.67,15.69,15.68,15.68,15.69,15.7,15.7,15.69,15.69,15.69,15.69,15.7,15.69,15.69,15.7,15.7,15.7,15.67,15.67,15.71,15.71,15.72,15.69,15.69,15.7,15.7,15.72,15.7,15.71,15.69,15.69,15.69,15.71,15.7,15.69,15.69,15.7,15.71,15.7,15.7,15.69,15.69,15.7,15.69,15.7,15.7,15.7,15.71,15.69,15.7,15.7,15.7,15.71,15.7,15.71,15.71,15.71,15.71,15.71,15.68,15.68,15.67,15.69,15.7,15.69,15.69,15.69,15.71,15.71,15.69,15.69,15.7,15.69,15.72,15.7,15.7,15.7,15.7,15.71,15.69,15.69,15.69,15.69,15.72,15.71,15.71,15.71,15.71,15.73,15.71,15.71,15.71,15.71,15.72,15.71,15.71,15.71,15.71,15.72,15.71,15.71,15.71,15.71,16.09,15.76,15.77,15.77,15.76,15.76,15.69,15.69,15.69,15.69,15.69,15.7,15.68,15.68,15.68,15.7,15.69,15.67,15.67,15.67,15.67,15.7,15.69,15.69,15.69,15.7,15.69,15.67,15.67,15.67,15.67,15.71,15.89,15.9,15.92,15.92,15.97,15.99,15.99,15.99,15.99,16,15.99,15.99,15.99,15.98,16,15.99,15.99,15.99,15.98,16,15.94,15.94,15.93,15.93,15.99,16,15.99,15.99,15.99,16,16,15.99,15.99,15.99,16,16,15.99,15.99,15.99,16,16.01,15.99,15.99,15.99,15.99,16,15.98,15.98,15.98,16,16.01,16,16,16,16,16,15.99,15.99,16,15.98,15.98,15.99,15.97,15.97,15.98,15.98,15.99,15.97,15.97,15.97,15.97,15.98,15.96,15.99,15.99,15.99,15.99,15.98,15.98,16,16,16.02,16.01,16.01,15.98,15.98,16,16,16,16,15.99,16,15.99,15.99,16,16,16,16,16,15.99,16,16,16.01,16,16,16,16,16.02,16.01,16,16,16,16.01,16.01,16.02,16.02,16.02,16.02,16.01,16.01,16.01,16.01,16.01,15.99,16.01,16.01,16.01,16.02,15.99,15.99,15.99,15.99,15.99,16.01,16,15.99,15.99,16,16,16,16,16,16,16,15.95,15.95,15.95,15.95,15.99,15.99,15.99,15.99,15.99,16.01,15.99,15.99,15.98,15.99,16,16,15.99,15.99,15.99,16.01,16,16,16,16,16.01,15.99,16,16,15.99,15.99,16.01,15.99,15.99,16,16,15.99,15.97,15.96,15.96,15.96,16.01,16.01,16.01,16.01,16.01,16,16,15.99,15.99,16,16.02,16,16,16,16,16.01,16,16,16.01,16.01,16.02,16.01,16.01,16.01,16.01,16.02,16.02,16.01,16.01,16.01,16.01,16.03,16.01,16.01,16.01,16,16.01,16.01,16.01,16.01,16.01,16.02,16.01,16.01,16.02,16.01,16.02,16.01,16.01,16,16.01,16.03,16.01,16.01,16.01,16.01,16.02,16.01,15.99,15.99,15.99,16,16,15.99,16,16.01,16.02,16,16,16,16,16,16.03,16.01,16.01,15.99,15.99,16.01,16.01,16.01,16.01,16.01,16.02,16,16,16,16,16.01,16,16,16.01,16,16.03,16.01,16.01,16.01,16,15.99,15.98,15.99,16,16,16.01,15.98,15.97,15.97,15.97,15.98,15.97,15.97,15.96,15.96,15.96,15.97,15.95,15.96,15.96,15.96,15.95,15.93,15.97,15.97,15.97,15.97,15.96,15.94,15.94,15.94,15.94,15.96,15.97,15.97,15.98,15.99,15.95,15.96,15.96,15.96,15.97,15.98,15.96,15.96,15.96,15.97,15.97,15.96,15.96,15.96,15.96,16.35,16.04,16.04,16.04,16.04,15.98,15.98,15.98,15.98,15.98,15.99,15.98,15.98,15.98,15.98,15.98,15.96,15.96,15.96,15.97,15.98,15.98,15.98,15.98,15.98,16,15.97,15.97,15.97,16.26,16.28,16.25,16.24,16.24,16.21,16.19,16.2,16.2,16.2,16.2,16.2,16.22,16.2,16.2,16.2,16.2,16.22,16.21,16.21,16.21,16.2,16.21,16.2,16.2,16.21,16.21,16.23,16.21,16.21,16.21,16.21,16.23,16.21,16.21,16.21,16.21,16.22,16.21,16.21,16.2,16.2,16.22,16.18,16.18,16.18,16.18,16.22,16.21,16.21,16.21,16.21,16.21,16.22,16.21,16.21,16.21,16.21,16.22,16.21,16.2,16.19,16.22,16.22,16.21,16.21,16.21,16.22,16.22,16.21,16.21,16.21,16.21,16.21,16.18,16.17,16.17,16.2,16.21,16.2,16.2,16.2,16.2,16.22,16.21,16.21,16.2,16.19,16.2,16.17,16.17,16.17,16.2,16.21,16.2,16.2,16.2,16.2,16.2,16.21,16.2,16.19,16.19,16.19,16.22,16.21,16.2,16.2,16.2,16.21,16.2,16.2,16.21,16.2,16.21,16.2,16.2,16.21,16.2,16.21,16.2,16.2,16.18,16.18,16.2,16.2,16.2,16.21,16.2,16.22,16.21,16.21,16.21,16.21,16.2,16.21,16.2,16.21,16.21,16.21,16.22,16.2,16.2,16.2,16.21,16.22,16.21,16.2,16.2,16.2,16.21,16.2,16.21,16.21,16.21,16.22,16.2,16.2,16.2,16.2,16.21,16.21,16.21,16.21,16.21,16.22,16.21,16.21,16.21,16.21,16.2,16.23,16.21,16.21,16.21,16.21,16.19,16.19,16.2,16.2,16.2,16.19,16.22,16.22,16.22,16.22,16.23,16.21,16.21,16.21,16.21,16.22,16.21,16.21,16.21,16.21,16.22,16.21,16.21,16.21,16.21,16.22,16.22,16.22,16.22,16.22,16.23,16.21,16.21,16.21,16.21,16.21,16.23,16.22,16.22,16.22,16.22,16.23,16.22,16.22,16.22,16.22,16.21,16.21,16.21,16.21,16.21,16.22,16.22,16.2,16.19,16.2,16.23,16.21,16.21,16.21,16.21,16.2,16.2,16.2,16.18,16.18,16.2,16.2,16.2,16.2,16.2,16.2,16.22,16.2,16.2,16.2,16.2,16.22,16.2,16.2,16.2,16.2,16.22,16.21,16.21,16.21,16.21,16.22,16.21,16.21,16.21,16.24,16.2,16.18,16.17,16.18,16.21,16.21,16.18,16.18,16.18,16.17,16.19,16.2,16.2,16.21,16.19,16.19,16.2,16.19,16.19,16.22,16.22,16.2,16.18,16.18,16.18,16.18,16.22,16.22,16.22,16.2,17.11,17.11,17.06,17.06,17.09,17.08,17.04,17.02,17.02,17.02,17.02,17.03,16.98,17.02,17.03,17.02,17.03,17,17,17,16.99,17.01,17,17,17.01,17.01,17,17.05,17.03,17.03,17.03,17.03,17.04,17.02,17.03,17.03,17.02,17.45,17.07,17.11,17.11,17.11,17.09,17.04,17.04,17.04,17.03,17.05,17.04,17.05,17.05,17.05,17.07,17.04,17.05,17.04,17.04,17.05,17.05,17.05,17.05,17.05,17.04,17.06,17.06,17.06,17.06,17.05,17.06,17.05,17.05,17.05,17.05,17.08,17.05,17.04,17.05,17.04,17.06,17.06,17.06,17.05,17.05,17.07,17.06,17.06,17.04,17.02,17.03,17.03,17.03,17.03,17.03,17.04,17.05,17.05,17.05,17.05,17.05,17.03,17.02,17.02,17.01,17.06,17.08,17.06,17.05,17.05,17.05,17.05,17.04,17.04,17.04,17.04,17.05,17.03,17.03,17.03,17.03,17.07,17.06,17.06,17.05,17.05,17.09,17.07,17.06,17.06,17.06,17.06,17.06,17.06,17.07,17.06,17.08,17.08,17.07,17.07,17.07,17.06,17.08,17.07,17.08,17.08,17.08,17.05,17.03,17.03,17.03,17.05,17.07,17.06,17.06,17.06,17.07,17.09,17.08,17.08,17.08,17.08,17.09,17.07,17.07,17.07,17.08,17.09,17.09,17.09,17.08,17.09,17.1,17.09,17.08,17.08,17.09,17.09,17.1,17.09,17.09,17.08,17.08,17.1,17.07,17.06,17.07,17.07,17.07,17.06,17.06,17.09,17.09,17.11,17.1,17.09,17.08,17.08,17.08,17.05,17.05,17.09,17.09,17.1,17.09,17.1,17.1,17.1,17.11,17.1,17.1,17.09,17.1,17.1,17.12,17.11,17.1,17.1,17.1,17.12,17.11,17.1,17.1,17.1,17.12,17.1,17.1,17.1,17.1,17.12,17.1,17.09,17.09,17.09,17.11,17.11,17.08,17.07,17.07,17.09,17.11,17.09,17.09,17.09,17.1,17.09,17.08,17.08,17.08,17.1,17.06,17.09,17.09,17.09,17.1,17.11,17.1,17.1,17.1,17.09,17.11,17.07,17.07,17.07,17.07,17.1,17.1,17.1,17.1,17.09,17.1,17.08,17.08,17.08,17.08,17.1,17.09,17.09,17.09,17.09,17.1,17.11,17.1,17.1,17.1,17.11,17.08,17.08,17.08,17.08,17.1,17.1,17.1,17.1,17.1,17.1,17.12,17.11,17.1,17.1,17.1,17.12,17.11,17.11,17.1,17.1,17.09,17.08,17.08,17.08,17.08,17.1,17.08,17.08,17.08,17.1,17.12,17.11,17.11,17.11,17.11,17.11,17.11,17.11,17.11,17.1,17.11,17.08,17.09,17.09,17.08,17.09,17.09,17.07,17.07,17.02,16.77,16.77,16.76,16.76,16.76,16.76,16.8,16.79,16.79,16.78,16.76,16.8,16.79,16.79,16.79,16.79,16.79,16.76,16.76,16.76,16.77,16.79,16.79,16.79,16.79,16.79,16.81,16.79,16.79,16.78,16.79,16.8,16.8,16.81,16.9,17.09,17.11,17.1,17.1,17.1,17.12,17.12,17.13,17.12,17.12,17.11,17.11,17.12,17.11,17.11,17.12,17.12,17.1,17.08,17.09,17.12,17.11,17.1,17.08,17.07,17.1,17.09,17.11,17.1,17.1,17.1,17.1,17.53,17.17,17.17,17.17,17.17,17.17,17.1,17.1,17.1,17.09,17.11,17.1,17.1,17.1,17.1,17.09,17.1,17.09,17.09,17.1,17.09,17.11,17.09,17.09,17.08,17.08,17.12,17.11,17.11,17.11,17.1,17.1,17.1,17.11,17.11,17.11,17.12,17.11,17.11,17.11,17.11,17.13,17.1,17.1,17.1,17.11,17.12,17.12,17.1,17.1,17.11,17.12,17.11,17.12,17.12,17.12,17.13,17.14,17.14,17.15,17.15,17.15,17.15,17.14,17.14,17.14,17.14,17.15,17.14,17.14,17.14,17.14,17.15,17.14,17.14,17.15,17.15,17.16,17.13,17.13,17.13,17.13,17.14,17.14,17.14,17.13,17.13,17.15,17.15,17.15,17.15,17.15,17.15,17.13,17.13,17.13,17.13,17.13,17.18,17.17,17.16,17.16,17.16,17.17,17.16,17.16,17.16,17.16,17.17,17.15,17.15,17.15,17.15,17.15,17.14,17.15,17.14,17.14,17.16,17.16,17.16,17.15,17.17,17.18,17.15,17.16,17.16,17.16,17.16,17.16,17.15,17.15,17.16,17.17,17.13,17.13,17.13,17.12,17.16,17.17,17.17,17.17,17.16,17.16,17.18,17.16,17.17,17.17,17.16,17.16,17.15,17.15,17.14,17.15,17.16,17.15,17.15,17.15,17.14,17.15,17.14,17.14,17.13,17.13,17.14,17.13,17.13,17.13,17.16,17.16,17.14,17.14,17.14,17.14,17.15,17.15,17.15,17.15,17.15,17.16,17.06,16.85,16.83,16.84,16.84,16.86,16.85,16.85,16.83,16.83,16.86,16.85,16.85,16.82,16.81,16.85,16.83,16.83,16.86,16.85,16.85,16.82,16.83,16.85,16.86,16.86,16.86,16.86,16.86,16.86,16.87,16.84,16.86,16.85,16.85,16.86,16.82,16.82,16.82,16.82,16.84,16.86,16.86,16.86,16.86,16.86,16.86,16.85,16.85,16.85,16.85,16.86,16.85,16.86,16.86,16.85,16.86,16.85,16.84,16.84,16.84,16.86,16.86,16.87,16.86,16.86,16.88,16.86,16.86,16.86,16.86,16.87,16.86,16.86,16.86,16.86,16.87,16.86,16.87,16.87,16.87,16.87,16.87,16.87,16.87,16.87,16.87,16.87,16.85,16.85,16.85,16.86,16.87,16.87,16.87,16.87,16.87,16.87,16.87,16.86,16.86,16.86,16.87,16.87,16.87,16.87,16.87,16.87,16.84,16.84,16.84,16.84,16.86,16.88,16.88,16.87,16.87,16.88,16.86,16.86,16.86,16.86,16.88,16.88,16.85,16.85,16.85,16.85,16.86,16.85,16.85,16.84,16.84,16.86,16.84,16.84,16.84,16.84,16.87,16.86,16.86,16.86,16.85,16.87,16.86,16.86,16.86,16.86,16.85,16.83,16.83,16.84,16.86,16.87,16.86,16.86,16.86,16.85,16.88,16.85,16.85,16.85,16.86,16.86,16.87,16.85,16.85,16.85,16.82,16.83,16.82,16.82,16.82,16.82,16.83,16.81,16.81,16.81,16.85,16.85,16.82,16.82,16.85,16.86,17.27,16.93,16.93,16.93,16.93,16.93,16.86,16.86,16.86,16.86,16.88,16.87,16.87,16.87,16.87,16.87,16.84,16.83,16.85,16.86,16.86,16.85,16.83,16.83,16.87,16.86,16.85,16.83,16.86,16.84,16.84,16.87,16.87,16.87,16.87,16.86,16.86,16.83,16.83,16.81,16.81,16.83,16.84,16.84,16.86,16.86,16.88,16.86,16.86,16.86,16.86,16.86,16.86,16.84,16.84,16.84,16.84,16.86,16.86,16.86,16.86,16.87,16.88,16.87,16.87,16.87,16.87,16.88,16.87,16.87,16.87,16.87,16.88,16.88,16.87,16.87,16.88,16.89,16.87,16.88,16.87,16.87,16.89,16.87,16.88,16.88,16.88,16.88,16.9,16.86,16.86,16.86,16.84,16.85,16.86,16.86,16.86,16.86,16.87,16.87,16.86,16.86,16.86,16.87,16.86,16.86,16.86,16.86,16.88,16.87,16.87,16.86,16.86,16.88,16.86,16.86,16.86,16.87,16.88,16.87,16.87,16.87,16.86,16.86,16.87,16.86,16.86,16.86,16.86,16.86,16.84,16.84,16.84,16.84,16.85,16.83,16.83,16.83,16.85,16.85,16.83,16.83,16.83,16.83,16.88,16.86,16.86,16.86,16.86,16.87,16.86,16.87,16.87,16.86,16.88,16.86,16.86,16.86,16.86,16.88,16.87,16.87,16.87,16.87,16.86,16.89,16.87,16.87,16.87,16.88,16.87,16.85,16.84,16.84,16.87,16.88,16.87,16.87,16.87,16.87,16.88,16.87,16.87,16.87,16.85,16.86,16.86,16.86,16.86,16.88,16.9,16.87,16.87,16.87,16.87,16.87,16.89,16.87,16.87,16.88,16.88,16.89,16.87,16.87,16.87,16.87,16.88,16.86,16.86,16.88,16.88,16.88,16.87,16.87,16.88,16.88,16.9,16.88,16.88,16.89,16.88,16.9,16.87,16.87,16.88,16.88,16.89,16.88,16.88,16.89,16.89,16.89,16.89,16.88,16.88,16.88,16.88,16.89,16.87,16.85,16.85,16.85,16.87,16.86,16.86,16.86,16.85,16.89,16.82,16.81,16.81,16.81,16.82,16.81,16.81,16.81,16.81,16.82,16.8,16.82,16.82,16.81,16.83,16.82,16.83,16.83,16.83,16.85,16.83,16.82,16.82,16.82,16.82,16.85,16.82,16.82,16.82,16.82,16.84,16.83,16.82,16.82,16.82,16.83,16.82,16.82,16.82,16.83,16.84,16.83,16.83,16.83,16.83,16.84,16.83,16.83,16.83,16.83,16.85,16.83,16.82,16.82,16.82,16.84,16.83,16.83,16.83,16.83,16.83,16.84,16.83,16.83,16.83,16.83,16.85,16.83,16.83,16.83,16.83,16.85,16.84,16.84,16.84,16.84,16.85,16.84,16.85,16.85,16.83,16.84,16.83,16.83,16.83,16.83,16.85,16.84,16.84,16.84,16.84,16.86,16.82,16.82,16.82,16.82,16.81,16.84,16.84,16.84,16.84,16.84,16.84,16.83,16.83,16.83,16.84,16.83,16.81,16.81,16.84,16.85,16.84,16.82,16.81,16.81,16.84,17.21,16.92,16.91,16.91,16.92,16.91,16.84,16.84,16.84,16.84,16.86,16.85,16.85,16.84,16.84,16.85,16.84,16.84,16.84,16.85,16.85,16.83,16.82,16.85,16.85,16.85,16.86,16.83,16.83,16.84,16.84,16.86,16.85,16.85,16.85,16.85,16.85,16.83,16.83,16.86,16.86,16.87,16.85,16.85,16.86,16.86,16.86,16.83,16.83,16.86,16.86,16.88,16.86,16.86,16.83,16.83,16.83,16.87,16.86,16.85,16.83,16.82,16.84,16.83,16.84,16.84,16.83,16.82,16.8,16.82,16.82,16.82,16.85,16.83,16.84,16.84,16.83,16.85,16.83,16.84,16.84,16.84,16.85,16.83,16.83,16.83,16.84,16.85,16.83,16.83,16.83,16.83,16.83,16.82,16.84,16.84,16.84,16.84,16.85,16.84,16.84,16.83,16.83,16.83,16.83,16.83,16.83,16.82,16.85,16.84,16.84,16.84,16.83,16.86,16.83,16.83,16.83,16.83,16.84,16.84,16.84,16.84,16.84,16.85,16.85,16.85,16.85,16.85,16.87,16.85,16.85,16.85,16.85,16.84,16.84,16.83,16.83,16.82,16.82,16.85,16.84,16.84,16.84,16.85,16.87,16.85,16.85,16.85,16.85,16.85,16.84,16.85,16.85,16.85,16.86,16.85,16.85,16.85,16.85,16.86,16.84,16.84,16.84,16.84,16.86,16.85,16.85,16.84,16.85,16.86,16.85,16.85,16.85,16.86,16.86,16.85,16.85,16.85,16.85,16.86,16.87,16.85,16.85,16.84,16.86,16.86,16.85,16.85,16.85,16.86,16.86,16.84,16.84,16.84,16.83,16.84,16.83,16.83,16.83,16.85,16.86,16.85,16.85,16.86,16.85,16.86,16.83,16.83,16.83,16.83,16.84,16.8,16.8,16.81,16.82,16.82,16.81,16.8,16.8,16.83,16.83,16.82,16.8,16.8,16.83,16.83,16.86,16.84,16.84,16.83,16.83,16.84,16.83,16.84,16.83,16.83,16.83,16.8,16.8,16.84,16.84,16.84,16.81,16.81,16.84,16.84,16.85,16.84,16.84,16.83,16.83,16.83,16.85,16.84,16.83,16.83,16.83,16.83,16.81,16.85,16.85,16.85,16.86,16.85,16.85,16.84,16.84,16.85,16.84,16.85,16.85,16.83,16.85,16.81,16.85,16.85,16.85,16.86,16.84,16.89,16.83,16.83,16.84,16.84,16.85,16.85,16.85,16.85,16.86,16.85,16.84,16.85,16.85,16.88,17.15,15.87,15.55,15.54,15.56,15.51,15.43,15.41,15.4,15.42,15.41,15.41,15.41,15.41,15.41,15.42,15.42,15.41,15.41,15.41,15.4,15.4,15.4,15.4,15.42,15.42,15.42,15.42,15.42,15.42,15.43,15.41,15.41,15.41,15.41,15.44,15.43,15.43,15.42,15.42,15.44,15.43,15.43,15.43,15.42,15.44,15.43,15.43,15.43,15.43,15.44,15.43,15.43,15.42,15.42,15.44,15.43,15.43,15.42,15.43,15.42,15.4,15.4,15.4,15.4,15.42,15.41,15.41,15.4,15.4,15.6,15.59,15.49,15.49,15.49,15.49,15.43,15.42,15.42,15.41,15.42,15.44,15.42,15.41,15.41,15.42,15.44,15.43,15.43,15.42,15.43,15.44,15.43,15.43,15.43,15.43,15.43,15.41,15.4,15.4,15.4,15.43,15.43,15.43,15.43,15.44,15.45,15.43,15.43,15.43,15.43,15.44,15.44,15.44,15.44,15.42,15.42,15.44,15.44,15.44,15.43,15.43,15.44,15.43,15.43,15.43,15.43,15.44,15.43,15.43,15.44,15.44,15.43,15.41,15.41,15.42,15.42,15.44,15.44,15.43,15.39,15.39,15.41,15.41,15.41,15.45,15.44,15.45,15.44,15.44,15.45,15.45,15.46,15.45,15.45,15.43,15.43,15.43,15.45,15.45,15.44,15.44,15.44,15.46,15.46,15.44,15.44,15.44,15.47,15.45,15.42,15.41,15.41,15.45,15.46,15.44,15.44,15.44,15.45,15.45,15.45,15.45,15.45,15.45,15.42,15.44,15.44,15.44,15.43,15.48,15.46,15.46,15.46,15.46,15.45,15.45,15.45,15.45,15.45,15.46,15.45,15.45,15.44,15.45,15.47,15.45,15.45,15.45,15.45,15.45,15.43,15.43,15.43,15.43,15.45,15.43,15.43,15.43,15.43,15.45,15.43,15.43,15.43,15.44,15.45,15.44,15.44,15.44,15.44,15.45,15.41,15.41,15.41,15.41,15.41,15.46,15.44,15.44,15.44,15.44,15.45,15.44,15.43,15.43,15.43,15.46,15.45,15.45,15.45,15.45,15.45,15.44,15.44,15.44,15.44,15.45,15.42,15.43,15.42,15.43,15.45,15.46,15.45,15.45,15.45,15.46,15.44,15.44,15.44,15.44,15.47,15.45,15.45,15.45,15.45,15.45,15.46,15.45,15.45,15.45,15.43,15.44,15.44,15.44,15.44,15.46,15.44,15.43,15.42,15.42,15.46,15.46,15.44,15.44,15.44,15.45,15.45,15.42,15.43,15.45,15.45,15.46,15.46,15.46,15.46,15.44,15.45,15.44,15.44,15.44,15.45,15.46,15.45,15.45,15.45,15.46,15.46,15.47,15.46,15.46,15.45,15.45,15.45,15.44,15.44,15.45,15.46,15.47,15.46,15.46,15.47,15.47,15.47,15.45,15.45,15.41,15.41,15.43,15.43,15.43,15.45,15.44,15.45,15.45,15.45,15.45,15.45,15.47,15.44,15.44,15.47,15.47,15.47,15.47,15.46,15.46,15.46,15.46,15.45,15.46,15.44,15.44,15.44,15.46,15.45,15.44,15.44,15.44,15.44,15.44,15.43,15.43,15.43,15.43,15.41,15.41,15.41,15.41,15.44,15.44,15.44,15.44,15.45,15.54,15.59,15.59,15.59,15.59,15.59,15.61,15.73,15.73,15.73,15.73,15.74,15.73,15.73,15.73,15.73,15.75,15.73,15.73,15.73,15.73,15.74,15.74,15.74,15.74,15.74,15.75,15.74,15.74,15.74,15.74,15.75,15.73,15.73,15.73,15.73,15.75,15.73,15.73,15.73,15.73,15.73,15.74,15.72,15.71,15.71,15.71,15.76,15.75,15.75,15.75,15.75,16.1,15.78,15.78,15.78,15.78,15.77,15.73,15.73,15.73,15.73,15.75,15.75,15.74,15.74,15.74,15.75,15.74,15.74,15.74,15.74,15.75,15.74,15.74,15.74,15.74,15.75,15.76,15.74,15.74,15.74,15.74,15.76,15.75,15.75,15.75,15.74,15.76,15.75,15.75,15.75,15.75,15.76,15.75,15.75,15.75,15.72,15.75,15.75,15.75,15.75,15.76,15.77,15.76,15.75,15.75],"tcp":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.02,0.02,0.02,0.03,0.03,0.02,0.02,0.03,0.02,0.03,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.03,0.02,0.02,0.03,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.03,0.14,0.02,0.02,0.02,0.02,0.02,0.03,0.03,0.03,0.02,0.02,0.02,0.03,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.04,0.03,0.02,0.02,0.02,0.03,0.02,0.03,0.03,0.02,0.02,0.03,0.03,0.02,0.02,0.02,0.03,0.02,0.03,0.02,0.03,0.03,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.03,0.03,0.02,0.03,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.03,0.02,0.03,0.02,0.02,0.03,0.02,0.02,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.02,0.03,0.03,0.03,0.02,0.02,0.02,0.02,0.03,0.02,0.03,0.03,0.02,0.02,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.03,0.03,0.02,0.03,0.02,0.03,0.02,0.02,0.02,0.03,0.02,0.03,0.02,0.02,0.02,0.01,0.01,0.02,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.85,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0.03,0.02,0.02,0.02,0.02,0.88,0.02,0.02,0.02,0.02,0.02,0.02,0.87,0.02,0.03,0.02,0.02,0.03,0.02,0.02,0.58,0.02,0.02,0.02,0.03,0.07,0.03,0.02,0.03,0.02,0.03,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.05,0.19,0.02,0.02,0.02,0,0.13,0,0,0,0,0,0.02,1.04,0.03,0.05,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.03,0.02,0.03,0.03,0.03,0.02,0,0,0,0,0,0,0,0,0.02,0.02,0.02,0.03,0.02,0.03,0.02,0.02,0.02,0.03,0.03,0.02,0.02,0.03,0.02,0.02,1,0.03,0.02,0.11,0.04,0.02,1.72,0.02,0.02,0.02,1.16,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.7,1.96,0.05,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.89,0.02,0.03,0.03,0.03,0.89,0.03,0.89,1.71,0.02,0.02,0.03,0.08,1.75,1.11,0.22,0.03,0.03,0.9,1.81,0.1,0.03,1.75,1.96,0.05,0.03,0.08,0.03,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.05,2.63,0.02,4.35,4.01,0.02,0.03,2.78,4.3,4.55,1.22,0.72,0.66,0.03,0.03,0.03,0.02,0.03,0.02,0.02,0.02,0.03,0.02,0.02,0.62,0.03,1.18,0.03,0.03,3.5,0.02,0.02,0.02,1.2,4.6,0.02,0.03,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.03,0.03,0.02,0.03,0.02,0.02,0.03,0.68,1.3,0.09,0.02,0.02,0.02,1.27,0.05,0.03,0.02,0.02,0.03,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.06,0.02,0.03,0.03,0.02,0.02,0.04,0.03,0.04,0.03,0.06,0.06,0.63,0.63,0.06,0.02,0.02,0.02,0.03,0.03,0.02,0.02,0.64,0.02,0.03,0.71,0.02,0.62,0.04,3.42,0.59,1.78,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.05,0.05,1.84,0.65,5.29,4.07,14.65,27.97,59.93,0.08,0.1,0.05,0.03,0.06,0.41,0.79,0.05,2.35,0.95,2.02,0.03,0.03,0.02,0.02,0.02,0.03,0.02,0.02,0.02,3.04,0.02,0.02,0.03,0.03,0.02,0.03,0.02,0.03,0.03,0.02,0.02,0.02,0.04,0.02,1.07,0.72,1.8,0.03,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.03,0.02,0.03,0.03,1.71,0.02,0.02,0.02,1.21,7.54,3.62,0.05,0.03,2.61,0.94,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.03,0.02,0.02,0.11,0.05,0.02,0.02,0.02,0.03,0.02,0.03,0.02,0.03,0.11,0.03,0.02,0.02,1.05,0.09,0.02,0.86,2.54,0.03,3.27,1.21,1.24,2.44,1.81,2.62,2.13,5.08,0.02,0.71,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.68,0.02,0.02,0.02,0.05,0.02,0.02,0.02,0.41,0.26,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.03,0.02,0.02,0.03,0.03,0.18,0.02,0.03,0.07,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.03,0.02,0.29,0.05,0.05,0.05,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.03,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.01,0.02,0.01,0.02,0.01,0.02,0.02,0.02,0.02,0.01,0.01,0.01,0.02,0.02,0.02,0.02,0.02,0.02,0.01,0.02,0.02,0.01,0.01,0.01,0.01,0.01,0.02,0.04,0.02,0.02,0.02,0.02,0.02,0.01,0.02,0.01,0.02,0.02,0.02,0.02,0.02,0.01,0.02,0.01,0.01,0.02,0.02,0.01,0.02,0.02,0.01,0.02,0.01,0.02,0.01,0.02,0.02,0.02,0.01,0.02,0.01,0.01,0.01,0.02,0.02,0.01,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.01,0.01,0.01,0.02,0.02,0.02,0.01,0.02,0.01,0.01,0.02,0.02,0.02,0.01,0.01,0.01,0.02,0.02,0.03,0.02,0.01,0.02,0.01,0.01,0.02,0.02,0.01,0.02,2.97,1.1,0.02,0.01,0.02,0.94,0.02,0.01,0.01,0.02,0.01,0.01,0.01,0.02,0.02,0.02,0.02,0.01,0.02,0.02,0.02,0.02,0.02,0.01,0.01,0.01,0.02,0.02,0.02,0.02,0.16,0.01,0.02,0.02,0.04,0.02,0.02,0.02,0.02,0.01,0.03,3.98,0.02,0.01,0.01,0.02,0.02,0.01,0.02,0.01,0.01,0.01,0.01,0.02,0.01,0.02,0.02,0.02,0.01,0.01,0.02,0.01,0.01,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.01,0.02,0.02,0.01,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.01,0.01,0.02,0.01,0.02,0.01,0.02,0.01,0.01,0.02,0.02,0.01,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.01,0.01,0.02,0.01,0.02,0.02,0.01,0.02,0.01,0.01,0.01,0.01,0.02,0.02,0.01,0.01,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.01,0.01,0.02,0.02,0.01,0.02,0.01,0.02,0.02,0.02,0.01,0.02,0.02,0.02,0.02,0.01,0.02,0.02,0.01,0.03,0.02,0.01,0.01,0.02,0.01,0.02,0.02,0.01,0.02,0.01,0.02,0.02,0.01,0.02,0.02,0.02,0.02,0.01,0.02,0.02,0.02,0.02,0.03,0.02,0.01,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.01,0.01,0.02,0.02,0.01,0.02,0.02,0.02,0.01,0.02,0.02,0.02,0.02,0.01,0.01,0.01,0.02,0.01,0.01,0.02,0.01,0.02,0.02,0.01,0.01,0.02,0.01,0.02,0.01,0.02,0.02,0.01,0.01,0.02,0.02,0.02,0.02,0.02,0.02,0.01,0.01,0.01,0.02,0.01,0.01,0.02,0.01,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.01,0.01,0.01,0.01,0.01,0.01,0.02,0.02,0.01,0.02,0.01,0.02,0.02,0.01,0.01,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.01,0.01,0.01,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.01,0.01,0.02,0.02,0.02,0.01,0.02,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.03,0.02,0.02,0.02,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.13,0.89,0.58,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0,0.02,0.01,1.76,0.9,0.2,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0.01,0,0,0,0,0.01,0.13,0,0,0,1.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0.03,0,0,0,0.01,0.19,0.07,0.03,0.04,0,0,0,0,0,2.09,2.02,0.03,1.09,0,0,3.81,0.02,0.01,0,0.01,0,0,0.87,1.76,0,0,0,0,0,0,0.06,0.07,0,0.07,0.78,0.03,0,0,0,0,0,0.91,0.89,0,0.64,0.96,0,0.86,0.02,0.6,0.01,0.01,0,0,0.89,0,0,0.41,0.03,0,0.62,0.03,0.05,0,0,0,0,0,0.05,1.25,12.02,17.85,10.44,53.1,19.14,5.46,0.66,0,0,0.03,0.04,0.02,0.05,0.77,28.19,1.71,0.87,0,0,0,0,0,0.88,0,0,0,0,2.36,0.08,0.01,0.19,0.02,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.64,0.01,0,0,0.1,0.59,0.9,0.88,0.01,0,1.3,0,0.01,0,0,0.01,0.18,0,0,0.01,0.02,0.52,0,0.94,0.01,0.01,0.01,0,0.02,2.39,0.02,0.71,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.05,0,0,0,0,0,0,0,0,0,0,0.81,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.01,0.02,0.02,0.02,0.02,0.03,0.03,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.05,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.03,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.03,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.03,0.02,0.03,0.02,0.02,0.02,0.02,0.03,0.02,0.03,0.02,0.03,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.04,0.03,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.03,0.02,0.02,0.03,0.02,0.03,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.03,0.03,0.02,0.02,0.02,0.03,0.02,0.03,0.02,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.03,0.02,0.02,0.02,0.02,0.03,0.03,0.02,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.02,0.02,0.02,0.03,0.05,0.05,0.04,0.04,0.05,0.04,0.04,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.03,0.02,0.03,0.02,0.03,0.02,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.03,0.03,0.03,0.02,0.03,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.03,0.02,0.02,0.03,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.03,0.02,0.03,0.03,0.03,0.03,0.02,0.03,0.03,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.02,0,0.03,0.04,0.02,0.02,0.03,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0.06,0,0,0.01,0.02,0,0,0,0,0.01,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.19,0.01,0,0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,2.03,0.02,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0.01,0.02,0,0.13,0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.69,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.03,0,0,0.02,1.34,66.96,64.15,11.93,0.08,0.03,0,0.91,0,0,1.91,0.03,0,0.01,0,0,0,0.95,0.01,1.03,0.2,0,0.01,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.05,0,1.03,2.1,1.87,0.01,0,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0.01,0.13,0.86,0,0,0.01,0.56,0.6,0.95,0.89,5.69,0.62,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.24,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0.87,0,0.63,0,0.81,0.01,0,1.99,0.39,0.22,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.02,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0.87,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.55,0,0,0.01,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.87,0,0,0,0,0,0.11,0,0,0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.39,0,0,0,0,0,1.35,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0,0,0,0,0,0,0,0,0.09,0,0,0,0,0,0,0,0,0,0,2.18,1.4,0,0,0.15,0,0.6,0.05,0,0.33,3.02,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,3.92,0,0,0,0,0,0,0,0.01,0.9,0,0.87,4.29,1.51,0.01,0.76,0.88,0.01,0.01,0,0.01,0,0.91,0.99,1.8,0.01,0.87,0,0.88,0.02,3.74,0.91,0.02,0.89,0,0.01,0.01,0,0,0,0,0.01,1.27,0.3,0.02,0.9,1.37,0,0,0,0,0,0.01,0,0,0.87,1.13,1.64,0.92,0.77,0,0,0,0,0,0.15,1.1,0,0.02,0.13,0.56,1.84,0.12,4.49,0,0,0.83,0,2.67,1.14,0,0.03,0.01,0,0,1.59,0,0,0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0.01,0,0,0,0,2.51,0.84,0.01,0,0,0,0,0.84,0,1.7,0,0,0.83,0.01,0,1.54,3.49,1.34,0.38,1.33,1.6,0.81,0.83,0.04,0.86,0,0.86,0.86,0,1.68,0.86,0.86,0.82,0.01,0.85,0.8,0.04,0,0.01,0,0.01,0,0,0.03,0.86,1.19,0.86,0.01,0,0,0,0,0.01,0,0.01,0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,4.99,1.69,0.37,0,0,0,0,0,0,0,2.18,0,0.01,0,0,0,0.24,13.28,30,87.95,0,0.04,0.03,21.19,0.52,0.45,0.2,0.05,0.02,0.83,0.03,0.06,0,0.98,0.01,13.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.02,0.02,0.01,0.01,0.01,0.01,0.02,0.02,0.01,0.01,0.01,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.42,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.04,0.05,0,0,0,0.21,0,0.38,0,0.02,0,0,0,0,0,0,0,0,0,0,0.01,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66,0,0,0,0,0.83,0.01,0,2.52,0.02,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.14,0,0,0,0,0,0,0,0,0,0,0,0,1.3,0.64,0,0,0.4,0.76,0,0.76,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.01,0,0,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.83,0,0,0,0,0,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.05,1.33,1.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0.02,0.07,0.07,0.01,1.7,2.5,0,1.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.49,0.03,0.84,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0.25,16.26,3.85,17.1,17.51,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.94,0.38,0,0,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0.11,0.21,0.64,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.01,0.64,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.83,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.83,0.84,0.2,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.83,0.02,2,0.01,0.01,0,0,0,0,0,0,0.49,0.02,0,0,0.01,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0.2,0.18,0.01,0,0,0,0.18,1.24,74.06,38.13,39.47,0.06,0,0.04,0.03,0.01,0.11,0,0.13,0.05,11.62,0.82,1.37,2.51,1.17,0.03,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.01,0,0,0,0,0,0,0.09,0,0,0.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0.01,1.69,0.71,0.01,0.98,0.02,0,0,0,0.01,2.8,0.02,0,0,0.01,0,0.71,1.06,0.04,0,0,0,0,0.15,0.02,0.03,0.73,0,0.23,1.21,0,0.66,0.04,0,0,1.91,1.45,0.72,2.69,0.73,0.73,0,0.74,0,3.1,0,0.01,0,0.01,0,0.86,0.88,0.02,0.03,0,0,0,2.53,1.7,1.74,0,0,0,0.01,0,0,0.04,0.02,0,0,0.83,0.04,0.04,0.09,0.3,0.99,0,0,0.02,0.01,0,0.68,1.7,0,1.73,0.02,2,2,0,0.01,5.93,0.02,0.93,1.01,0.35,0.21,0.02,0.02,0.11,1.76,0.72,0.97,3.11,0,0.08,0.01,0,0,0,0,0,0,0,0,0.02,0,0,0,0.02,0,0.25,0.44,0.01,0,0,0,0,0.01,0.01,0.34,0.01,0.08,0.01,0,0.01,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0.01,0,0.81,0.01,0.01,0,0,0,0,0,0,0.01,0.14,0.16,8.02,1.42,0,1.53,1.04,0,0.01,0.02,0.01,0,0.07,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.71,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,5.39,0.02,0,0,0,0,0,0.34,0.01,0,0,0,0,0,0,0,0,0,0,0,0,2.14,0,0,0,0,0,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99,0,0,0,0,0,0,1.19,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0.03,0.21,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.85,1.16,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94,1.19,0,0.01,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.88,9.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0.06,0.06,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.61,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0.02,0,0.02,0,0.01,0.01,0.01,0.01,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0.01,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.85,0.61,1.51,1.06,0.15,0.56,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.29,4.9,1.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.06,0.07,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.59,3.11,0.86,2.14,0.68,3.32,0.18,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0.02,0.03,0.02,0.04,0.03,0.01,0.02,0.02,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.85,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.1,0.14,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.04,2.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0.01,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.02,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0.01,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.12,0.71,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0.28,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,1.32,0,0,0,0,0,0.01,0.04,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0.83,0.01,0.84,0.01,0,0,0.22,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0.03,0.01,0.03,0.01,0,0,0,0,0,0,0,0,0,0,0,0.45,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,1.04,0,1.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21,0,0.02,0,0,0,0.02,0.02,0,0.02,0,0,2.39,0.01,1.68,0,0,0,1.81,0,0,0,0.02,0.48,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.01,0,0,0,1.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.06,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.65,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0.03,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.01,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,0,0.74,0.01,0,0,0,0,0,0,0,0,0,0,1.97,1.96,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.64,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,1.08,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.83,0.01,0,0,0,1.01,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.21,0,0,0,0.01,0,0.01,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0.9,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0.01,0.02,0.03,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0,0.84,0,0,0,0,0.71,0,0,0,0,0,0.44,1.36,0,0,0,0,0,0,0,0,0,0,0.01,1.46,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.11,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0.99,1.71,0.01,1.8,0.01,0,0,0.64,0.03,0,0.06,0,0,0,0,0,0,0.01,0,0,0,0,0,0,1.12,71.97,29.07,62.7,0.01,2.39,0.02,0.08,0.05,0.04,0.04,0.05,0.03,0.12,0.04,0.3,0.1,0.03,0,0.35,0.11,1.53,0.05,2.12,0.04,0,0.01,0.86,0,0,0.9,0,0.79,0.04,0.03,1.64,0.9,0,0,0,0,0,0,0.03,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.83,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.83,0.11,1.25,0.01,0,0,0,2.22,0,0,0.46,0,0.45,0.01,0,0.03,3.92,0,0,0,0,0,0,0.05,0.01,0,0.03,0.27,0,0,0,0.01,0,0.45,0.03,0,0,0,1.97,0.1,0.1,0,0,0,0,0.05,0,0,0.02,0.01,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0.01,0.02,0,0.05,0.29,0.07,0.01,0,0,0,0.5,0.16,0.01,0.01,0.04,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0,1.21,0.01,0.02,0.54,0.24,0.01,2.01,0.04,0.01,0,0.02,0,0.04,1.91,0,0,0,0,0,0,0.01,0,2.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,2.37,0.61,0.04,0,0,0,0.85,0.17,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0.69,0.63,0.66,0.48,0.01,0.69,0.72,0.07,0.8,0,0.07,0,0,0,0,1.85,0.02,0.13,0,0.13,0.02,0,0,0.2,0.12,0.38,0.03,0,0,0,0,0,0,1.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.01,0.01,0,0,0,0,0.83,0,0,0.01,1.44,0,0,0,0.01,0,0.01,0.26,0.11,1.68,0.03,0.85,0,0,0.03,0,0.8,25.06,23.46,60.17,1.53,0.05,0,0,0,0,0,0,0,0,0,0.07,0.13,0.2,2,0.03,0,0,0.05,0,0.03,0.02,0.03,0.06,0.02,0.01,0.02,0,0.01,0.03,0.56,0.08,0,0,0,0,0,0,0,0,0.52,0,0,0,0,0,0,0,0,0,0,1.64,0.01,0,0,0.84,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.03,0.02,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,2.91,0.01,0.12,0.05,0.89,1.06,1.04,1.25,1.02,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.68,0.01,0,0,0,0,0,2.15,3.4,1.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0.01,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97,0.05,0,4.59,0.03,0,0,0,0.01,0.11,0.19,0.01,0,0,0.01,0.01,0,0.06,0.93,0.05,0,0,0.84,0.06,0,0.91,0.91,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.76,1.69,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0,0,0,0.01,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.02,0.03,0.03,0.04,0.04,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0.06,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.49,1.03,0.58,1.94,0.67,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,2.69,0.29,4.21,0,0,0,0,0.75,0,0,0,0,0,0,0,0,1,0,0,0,0.03,0,0,0,0.04,0,0,0.03,0.62,0,0,0.37,0.26,0.06,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.12,0.4,0,0,0,0,0.02,0.07,0,0,0,0,0.01,0,0,0,0,0.44,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0.02,0,0.12,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0,0,0.84,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,1.36,0.68,0.02,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0.19,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,2.29,1.39,1.59,0.01,0.02,1.51,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.85,24.49,22.98,59.58,0,0,0,0,0,0,0,0,0,0.01,0.01,2.99,0,0,0,1.97,0.1,0.32,0,0,0,0,0,0.04,3.92,1.96,1.96,0,0,0.01,0.02,0.02,3.95,2.03,0.66,0,0.01,1.31,1.4,0.82,0,0.03,0.83,0.01,1.48,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,0.02,0.01,0,0.01,0,0,1.24,0.02,0.01,0,0,0,0,0,0,0,0,4.38,0,0,0,0,0,0,0,0.84,2.8,0,0,0,0,0,0,1.96,0.03,0,1.55,0.01,0,0.3,0.02,0,0.19,0.65,0,0,0.02,0,0,0,0,0,0,0,0,2.92,0.01,0,0,0.01,0.01,0.01,0,0,0.03,0.02,0.03,2.07,0.52,1.25,0.01,0,0.01,0.01,0,1.18,0.62,1.99,0,0,3.63,0.85,0,0,0.48,0,2.75,0.89,0.53,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,1.86,0,0.39,0.45,0,0,0,0.4,0,0,0,0,0,0,0,0,0.27,0,0.01,0.88,0,0.07,0.05,0.11,0.04,0.89,1.74,1.67,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0.08,0.03,0.01,0,0.01,0,0,0.01,0.01,0,0,0.01,0.04,0.03,2.3,2.3,0.01,2.37,0.01,0.56,0.03,0.55,0.01,0,0,1.83,0.23,0.01,0.01,0.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.04,0.04,0.04,0.04,0.04,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,1.58,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,2.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.05,0,1.23,60.53,39.86,61.46,30.93,78.64,61.71,0.21,0.07,0.03,2.29,15.05,0,0.26,0,0.26,0,0,0,0.7,0.01,0,0,0,0,0,0,0,0,0,0,0,0.75,0.02,0.01,0.67,0.46,1.06,0.51,0.44,0.07,0.4,0.07,0.16,0.34,0.01,1.89,0.87,0.01,0.9,2.1,0.58,1.93,0.01,0.15,1.29,1.9,0.01,0,0.01,0,0,0,0,0,0.14,0,0,0,0,0,0.85,0.03,0,0,0,0.01,0.01,0.01,0.01,0,0,0,0.02,0.18,0,1.17,0.01,21.44,7.54,0.52,1.81,0.22,0.02,5.69,0,0.01,0,0,0,0,0,0,1.41,0.01,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.19,0.08,1.33,0,0,0,0,1.25,0,0,0,0.02,0.02,0,0.23,0,0,0,0.02,0.83,0,0,0,0,0,0,0.01,0.02,0,0,0,0.01,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,2.52,0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,2.06,0.05,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,1.28,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0.07,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,0.01,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03,27.86,66.93,0.01,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0.28,0.76,0,0,0,0,0,0,0,0,0,2.13,2.76,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,28.32,20.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.04,0,0,0,0,0,0,0,0,0,0,0,0.07,2.16,0.01,0,0,0,0.01,0,0.01,1.31,0.03,1.28,0.27,0.01,1.32,1.32,3.61,0,0,1.31,0,0,0,0,0,0,0,0.01,0,0,0.01,0.01,0,0.06,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,1.2,0.07,0,0.23,0.4,1.39,0.82,0,1.86,0.01,0,0,0,0,0,1.44,0.02,0,0,0,0,0.01,0,0,0.14,0,2.15,1.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,0.12,0.01,3.07,0.01,0,0,0,0,3.95,0,0,0,0,0,0,3.15,0.01,2.21,0.04,0,0,3.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.53,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,1.8,0.02,0,1.1,0,0.01,2.35,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0.82,0,0,0,0,0.15,0,0,0,0,0,0,0,0,0,0.12,0,0,0.38,19.36,69.2,23.43,56.11,0.03,0.02,0.01,0.03,0.18,0.07,0.03,0.01,0,1.05,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0,0.05,0,0,0,0,0,0,0,0,0,0.01,0.31,0.01,0.57,0,0.01,0.29,0.3,0.26,0,0.01,0.29,0.01,0.29,0.01,0.82,1.06,2.08,0.27,0,0,0.26,0.01,0.03,7.61,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0.2,0.18,0,0,0,0,0,0.39,0.05,0.08,0.04,0.03,0,0.14,0,0,0,0,0.03,0.52,0,0,0,0.54,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.13,1.15,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,1.32,0.01,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0,0,0,0,0,0,0,0,0,2.57,0,0,0,0,0,0,0,0,0,0,0,0,0.03,1.37,1.95,0.68,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.14,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.94,0,0,0,0,0,0,0.93,0.01,0,0,0,0,0,0.08,0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,2.26,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,1.2,0.03,0,0,0,0.52,0.52,0,0,0,4.33,0.86,2.36,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0.03,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0,0.03,0,0.03,0.03,0,0,0.02,0,0.06,0.03,0,0.05,0,0,0.01,0,0,0.01,0.03,0,0,0,0,0.01,0.01,0.03,2.1,0.03,0.67,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0.01,0.62,1.79,2.49,0,0,0,0,0,0,0,0.01,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,4.17,71.55,28.65,63.24,2.74,0.1,0.1,0.05,6.43,2.83,2.38,0.06,2.09,0,0,0.11,0,0,0,0.01,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,1.97,0.04,0.01,0.01,0.47,0,0.86,0.08,0.01,0,0.02,0.01,0.01,0.04,0,0.01,0.04,0.02,0.03,0.13,0.68,0.01,0,0,0.01,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11,1.26,0.03,0.03,0.01,0,0,0.01,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0.02,0.76,0.82,0,0,0,0,0,0,0,0.06,0.02,0.01,0,0,0,0.01,0,0,0,0,0.86,0,0,0,0.86,0,0,0,0.01,0.85,0.85,0,0,3.31,0,0.86,0,0.85,0.82,0.86,0.01,0.86,0.85,0.85,0.85,0.85,0.01,0,0.05,0.84,1.69,0.1,0.01,0.07,0.82,0,0.04,0.05,0.04,2.45,0,0,0.85,0.85,0.82,2.02,0.08,0.01,0.01,0,0,0,0.01,0.02,0.01,0.86,1.74,0.43,0.39,0,0.01,0.01,0.88,0,0.05,0.01,0.17,0.01,0.38,0.01,0.87,0.39,0.04,0,0.41,2.08,1.18,0.01,0.04,0.01,0,0,0.01,0.13,1.76,0.12,0.01,1.05,0.01,0.17,1.6,9.16,0.01,1.71,0.77,0.08,0.02,0.59,0.01,0.02,0.01,0.68,0.01,1.22,0,0,0,0,0,0,0,0,0,1.36,2.06,0,0,0.01,0,0,0,0,2.06,0.02,0.08,1.65,0.56,0.28,0.83,0,0.02,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,1.04,0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0.01,0,0.01,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.75,0.27,0,0,0,0,0,0.91,0,0,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.27,0,0,0,0,0,0,0,1.53,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88,0,3.51,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,1.41,0.01,0,0.16,0.22,0.01,0,0.32,13.81,71.58,23.59,57.3,0.03,0.03,0,0.03,0.05,0.01,0.02,0.04,0.22,0.06,0.2,0.01,1.13,0.01,0,1.28,0.02,0.72,0.03,0,0.02,0,0,0,0,0,0.01,0,0.01,0.01,0,0,0,0,0,0,0,0.01,0,0,0.01,0.01,0.05,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0.02,0.02,0.01,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0.01,0,0,0.03,0.01,0,0,0,0,0,0,0,0.07,0.05,0,0.35,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0.02,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,3.23,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.04,0,0.03,0.98,0.01,0.01,0,0,0,0,0,0.01,0,0,0,0,0.02,0,0.02,0,0,0.01,0.01,0,0.02,0.01,0.01,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0.03,0,0,0,0,0.03,0,0.01,0,0,0,0,0,0,1.4,0.01,0,0.02,0,0,0.05,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.97,1.89,1.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.52,2.61,0,0,0,0,0.03,0.05,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.03,0,0.01,0,0,0,0,0,0,1.71,0,0,0,0.01,0,0.04,0,0,0.01,0,0.01,0.03,0.01,0,0,0.02,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0.09,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2,0.02,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.02,0.01,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.94,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0,0,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.02,0,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.14,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.72,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.76,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76,1.35,0.01,0,0,0,0,0,0,0,0,0,0,0,0,1.56,0,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.02,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.52,16.56,0,0.82,1.14,0.01,0.73,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,1.18,0.02,0,0.95,1.33,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0.03,0,0.01,0,0,0,0,0,0,0,0,0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,2.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.02,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0.04,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.05,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.04,0,0,0.03,0,0,0.01,0.14,0.13,0.03,0,0,0,0,0,0.01,0,0,0,0.03,0,0,0,0,0,0,0,0,0,3.1,0.61,0.16,0.07,0.02,0.01,0.01,0.93,0.04,0,0.05,0.05,0,0,0,0.03,0.54,0,0.05,0.07,0.49,0,0,1.72,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0.01,0.52,0,0.98,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0.52,0,0,0,0,0,0.01,0,0.04,0.03,0,0,0.06,0,0.16,0.17,0.01,0.31,0.01,0.9,0,0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.04,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.56,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0.03,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0.07,0.06,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0.01,0.69,1.75,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,1.67,0.82,14.39,16.11,15.8,58.96,4.85,0.02,0,0,0,0.02,0,0.02,0.02,0,0.04,0.21,0.4,0.01,0,0,0.04,0.01,0.01,0.05,0.02,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0.09,0,0.03,0,0,0,0,0,0,0,0,0,1.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0.17,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0,0,0.01,0,0,0,0,0.01,0,0.01,0,0.01,0.01,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0.01,0,0,0,0,0,0,0.02,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0.01,0,0,0,0.01,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0.02,0.01,0.01,0.01,0.01,0.01,0.02,0,0.01,0.01,0.02,0,0.01,0.01,0.01,0.01,0.02,0,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.02,0,0.02,0.01,0.02,0.01,0.01,0.01,0.04,0,0.01,0.01,0.02,0.01,0.02,0.01,0.02,0,0.01,0.01,0.02,0.01,0.02,0.01,0.02,0.01,0.02,0,0.02,0,0.06,0.11,0.01,0.02,0,0,0,0,0,0,0,0,1.42,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.95,1.16,1.53,0.04,0,1.77,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0,0,0,0.02,0,0,0,0,0,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,1.27,0.39,1.02,0.81,0,0,0.02,0.01,0.02,0.01,0.01,0.01,0.02,0.01,0,0.01,0,0,0,0.01,0.04,0.01,0.02,0.74,46.23,48.39,49.8,20.83,6.71,0.87,3.23,0.6,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79,0.01,0.01,0,0.03,0,1.29,0.56,0.01,0,0.02,0.02,0.02,1.29,1.48,0,0.02,1.04,0,0,2.66,0,0.07,1.44,0,0,1.58,1.43,1,0,2.14,1.22,0.01,0.04,3.28,0,1.31,0,2.71,0.01,0,1.82,1.15,0,0,0,0.09,0,1.05,0.04,0,0,1.44,0.01,0.05,0,0,0,1.09,0,0,1.12,0.31,0.01,0.01,0,0,0,1.39,0.07,0.01,0.04,0.03,0.11,2.33,4.49,0.01,0.03,1.35,0,1.46,0,3.03,1.06,0,1.3,0.03,0.04,0,0.95,1.37,1.42,1.5,0,0,0,0,0,0.04,0.01,0.04,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0.02,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.2,0.02,0.29,0,0,0,0,0,0,0,0.01,0,0,0.01,0.02,0.01,0,0.01,0,0.01,0,0.02,0.01,0,0.04,0,0,0,0.02,0.02,0,0,0.07,0,0,0,0.04,0.16,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.96,0.84,0,0.09,0,8.59,5.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0.02,0.01,0.01,0.01,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,1.33,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.24,0,0,0,0,0,0,0,0,0.81,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,1.8,0.67,0,0,1.11,0.7,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.97,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0.05,0.01,0.08,0.01,0.01,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,1,0.95,0,0.07,0.01,0,0,0,0.01,0.03,0,0,0,0.01,0.01,0.24,0,0,0.01,3.83,1.98,0,0,0,0,0,0,0,1.92,0.95,0,0,0,0.94,3.81,2.89,0.01,0.94,0.01,3.77,7.76,3.44,0.95,1.89,0,0.02,7.67,3.58,0.13,1.89,0.01,0,1.87,2.78,0,0.11,0.05,0.03,1.82,1.96,3.8,0.01,0.02,5.72,3.46,2.31,0,0,4.89,5.14,4.66,0.01,0,2.7,5.51,0,0,0,0,4.12,0.41,9.55,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.94,0.21,1.1,0.16,0.01,0.01,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,6.74,2.63,0,0,0,0,2.01,0.06,0.07,0,0,0.06,0,1.15,0.35,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0.01,0.01,0,0,0,2.25,1.99,2.7,2.22,0.01,0,0,0,0,0,0,0,0,0,0,0.11,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0.96,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0.03,0.04,0,0,1.15,1.78,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35,0.01,0,0,0,0,0.53,7.19,36.57,56.96,15.67,0.11,0.04,0.05,0.07,0.1,0.06,0,0.28,0.16,3.88,4.41,4.1,0.01,0,0.01,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.26,0.97,0,0,0,0,0,0,0.39,0,4.63,0.05,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,3.46,0,0,0,0,0,0,0,0,0,0.12,2.97,0.11,0.01,0,0.05,0.02,0,0,0.03,0,0,0,0,0,0,0,0,0,3.15,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.43,0.07,0.02,0.01,0.04,0,0,0.13,0.01,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,1.6,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.95,0,0,0,0,0.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0.03,0.02,0,0,0,1.93,0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.1,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.3,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0.1,0,0,0,0,0,0,0,1.93,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0.01,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0.01,0,0,0.3,0,0,0,0,0.2,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0.51,0.11,0,0,0.09,0.01,0,0,0,0,0,0,0,0.01,0,0,0.01,0,0,0,0,0,0,0,0.09,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.03,0.02,0.02,0.01,0.01,0.02,0.02,0.01,0.01,0.02,0.02,0.01,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.03,0.03,0.03,0.03,0.05,0.02,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0.04,0.91,0,0,0,0.09,0.01,0,0,0,1.57,0,2.01,0.01,0,0,0,0,0,0.72,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.68,0.01,0.29,0.09,0.01,0,0,0,0.09,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0.01,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0.98,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0.16,2.12,8.45,36.01,53.83,20.21,0,0,0,0.93,15.11,62.84,5.24,0.01,0.07,0.06,0.03,0.1,0.05,0.04,0.18,0.08,0.01,0.02,0.02,1.81,2.08,0.27,3.78,0.09,0.09,0.86,0,0,0.13,0.48,0,0,0.19,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.96,0.86,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0.08,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0.1,0,0.01,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0.12,0.02,0.01,0,0.28,0,0,0.14,0.07,0,0,0,0,0.07,0.14,0.58,0.48,0.31,0,0.1,0.24,0.24,0,0,0,0,0,0.28,0,0,0,0,0,0.07,0,0,0,0,0,0.17,0.16,0.02,0.25,0.12,0.92,0.65,0,2.13,1.61,0.36,0,1,0,1.07,0.71,1.95,0,3.03,0,0,0.01,0.36,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.32,0,0.33,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0.32,0.32,0,0.32,0,0.65,0.33,0,0.32,0.93,0.37,0,0.33,0,0.32,0.33,0.65,0.33,0.01,0.33,0.33,0,0.01,0.65,0.33,0,0.33,0.68,0,0,0.33,0.32,0.65,1.33,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0,0,0,0,0.31,0.66,0,0.65,0.61,0.69,0.71,0.65,0.33,0,0,0,0,0,0,0,0,0,0,0.97,0.65,0.65,1,0.97,1.02,0.33,0,0,0.01,0.01,0,0,0,0.84,0.49,0.85,0.42,1.36,1.29,0,0.43,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,3.79,0,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0.01,0.02,0,0.02,0,0.03,0,0.02,0,0.02,0,0.02,0,0.02,0,0.03,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.03,0,0.02,0.01,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.03,0,0.02,0,0.02,0.01,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.03,0,0.02,0,0.02,0.01,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.03,0,0.02,0,0.02,0.01,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.44,0.44,0.02,0.45,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0.02,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.03,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.02,0,0.05,0,0.02,0,0.02,0,0.02,0,0.02,0,0,0,0,0,0,0,2.09,0.9,0,0.4,0.11,0,0,0,0,0.38,0.08,0,0.89,0.01,0.5,0,0,0.04,0.05,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0.01,0,0,0,0.41,0.41,0,0,0,0,0.02,0.79,0.03,2.01,1.24,0.04,0.39,0.02,0,0,0,0,0.42,0.41,0.01,1.23,5.35,0.41,2.05,1.23,0.01,0,0,0,0,0.05,0,0.01,0.41,0,0,0,1.65,0.41,0,0,0.42,1.24,0.42,2.48,0.81,0.02,0,0.01,0.01,0.84,0.41,0.4,1.65,0.02,2.07,2.46,2.16,3.26,0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.42,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,1.24,0,0,0,0,0,0.41,0.83,0,0.83,0.35,0.89,0.71,0.12,0,0.41,3.26,1.31,0,0.83,0,0,0,0,0,0.02,0.39,0,0,0,0,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0.81,1.25,0,0,0,0.01,0,1.6,0.05,0.89,0,0,0,0.01,0,0,0,0.04,0,0,0,0,0,0,0,1.76,0,0,0.05,0,0.04,0,0.01,0,0,0.01,0,0.01,1.21,1.68,0,0,0.83,0,0.78,0.88,2.42,0.47,1.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,0.43,0,0.83,0.83,0,0,0,0,0,0,0,0,0,0,1.35,0,0.42,0.48,0,0,0,0,0,0,0.77,0.92,0.88,0.02,0,0,0,0.01,0,0,0.4,0.35,0.08,0,0,0,0,0,0.41,0.83,0,0.84,0,0.41,0,0,0.01,0.42,0.01,0.01,0.01,0.83,0,0.83,1.65,0.01,0,0,0,0,0,0,0,0,0.83,0,0,0,0,0.37,1.27,0.44,0.43,0.42,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.83,0,0.42,0.42,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.82,1.68,0.83,0,0.83,0.41,0.42,0,0,0,0,0,0,0.79,0.04,0.42,0,0.83,0.42,0,0.83,0.42,0,0,0.01,0.83,1.66,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0,0,1.25,0,0.01,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.46,2.08,1.25,0,2.09,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,1.25,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.42,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.42,0,0,0,0.01,0.42,0,0.83,0.42,0,0,0,0,0,0,0,0,0.01,0.03,0.01,0.02,0.02,0.02,0.02,0.03,0.02,0.04,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45,0.53,0,4.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0,0,0,0,4.21,0,0,0,2.59,0,0,0,0,0,1.23,0,0,0,0,0,0,1.77,0,0,0.44,0.41,1.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0,0,0,0,0,0,0.82,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.13,1.76,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.83,1.09,1.14,0.86,16.09,2.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.1,0.01,0,0,0.1,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.77,0,0,1.59,0,0.02,0.27,0.88,0,5.55,0,0.24,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.96,0,0,0,0,0,0,0,0.01,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.01,0,0,0.94,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.02,0,0,0.02,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0.72,0,0.01,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,1.45,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0.42,0,0.42,0,0.42,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0.13,0.01,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0.01,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.01,0.01,0.01,0.02,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.15,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0.01,1.29,2.7,0,0,0,0,0,0.01,3.16,0.21,0.09,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.02,0,0,0,0,0.01,0,0,0,0.13,0,0,0,0,0.01,0.01,0,1.77,0.59,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0.04,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0.02,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0.01,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.03,0.03,0.02,0.02,0.02,0.03,0.02,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]} \ No newline at end of file diff --git a/docs/static/data/examples/bench/docs.md b/docs/static/data/examples/bench/docs.md new file mode 100644 index 000000000..552088fa8 --- /dev/null +++ b/docs/static/data/examples/bench/docs.md @@ -0,0 +1,104 @@ +## Source (packed) + +### Structure + +```js +[fieldCount, ...fields, ...data]; +``` + +### Data + +```js +[7,"epoch","idl","recv","send","writ","used","free",26107560,99.46,0,0,0.63,614.52,3767,....] +``` + +## Array per dimension + +### uPlot - https://github.com/leeoniya/uPlot/blob/master/bench/uPlot.html + +```js +[ + [Number, ...], // date + [Number, ...], // cpu + [Number, ...], // ram + [Number, ...], // tcp +] +``` + +or + +```js +{ + date: [Number, ...], + cpu: [Number, ...], + ram: [Number, ...], + tcp: [Number, ...], +} +``` + +Notes: + +- Need to know the structure of the data (just array of arrays) + - Could be object container +- No duplication of property names +- Empty data would need `null` / `undefined` "placeholders + +## Single array (dimension by position/offset) + +### ECharts - https://github.com/leeoniya/uPlot/blob/master/bench/ECharts5.html + +```js +[Number, Number, Number, Number, ...] // date, cpu, ram, tcpout, ... +``` + +Notes: + +- Must know structure of data as separate metadata + +## Array / points per series + +### Charts.js - https://github.com/leeoniya/uPlot/blob/master/bench/Chart.js4.html + +## amCharts5 - https://github.com/leeoniya/uPlot/blob/master/bench/amCharts5.html + +```js +{ + cpu: [{ x: Date: y: Number }, ...], + ram: [{ x: Date: y: Number }, ...], + tcp: [{ x: Date: y: Number }, ...], +} +``` + +Notes: + +- Human readable +- Easy to consume +- Larger due to duplicated properties, but shorter + +### Highchart - https://github.com/leeoniya/uPlot/blob/master/bench/Highcharts.html + +### Plotly - https://github.com/leeoniya/uPlot/blob/master/bench/Plotly.js.html + +```js +{ + cpu: [[Date,Number], ...], + ram: [[Date,Number], ...], + tcp: [[Date,Number], ...], +} +``` + +## Expanded + +### LayerChart (another option, along with many above) + +```js +[ + { date: Date, cpu: Number: ram: Number, tcp: Number }, + ... +] +``` + +Notes: + +- Human readable +- Larger due to duplicated properties diff --git a/docs/static/data/examples/bench/packedData.json b/docs/static/data/examples/bench/packedData.json new file mode 100644 index 000000000..96458bb90 --- /dev/null +++ b/docs/static/data/examples/bench/packedData.json @@ -0,0 +1 @@ +[7,"epoch","idl","recv","send","writ","used","free",26107560,99.46,0,0,0.63,614.52,3767.67,26107561,99.85,0,0,0.41,614.04,3768.14,26107562,99.84,0,0,0.18,614.01,3768.18,26107563,99.85,0,0,0.16,613.98,3768.2,26107564,99.81,0,0,0.18,613.95,3768.22,26107565,99.74,0,0,0.32,614.99,3767.2,26107566,99.68,0,0,0.63,614.99,3767.19,26107567,99.85,0,0,0.17,614.54,3767.63,26107568,99.85,0,0,0.18,614.52,3767.66,26107569,99.72,0,0,0.34,614.73,3767.44,26107570,99.71,0,0,0.31,614.96,3767.22,26107571,99.67,0,0,0.59,615.39,3766.79,26107572,99.82,0,0,0.14,614.81,3767.36,26107573,99.83,0,0,0.15,614.8,3767.37,26107574,99.83,0,0,0.14,614.77,3767.41,26107575,99.67,0,0,0.29,614.53,3767.67,26107576,99.68,0.01,0.01,0.51,615.16,3767.04,26107577,99.77,0,0,0.29,614.7,3767.49,26107578,99.85,0,0,0.15,614.75,3767.44,26107579,99.85,0,0,0.15,614.82,3767.37,26107580,99.76,0,0,0.3,614.71,3767.5,26107581,99.71,0,0,0.42,614.9,3767.3,26107582,99.84,0,0,0.31,614.98,3767.21,26107583,99.83,0,0,0.14,614.95,3767.24,26107584,99.83,0,0,0.16,614.92,3767.26,26107585,99.55,0,0,0.32,615.03,3767.17,26107586,99.72,0,0,0.43,615.46,3766.74,26107587,99.84,0,0,0.28,615.07,3767.12,26107588,99.83,0,0,0.16,615.03,3767.15,26107589,99.83,0,0,0.14,615.01,3767.17,26107590,99.76,0,0,0.28,614.76,3767.44,26107591,99.7,0,0,0.43,615.47,3766.72,26107592,99.81,0,0,0.3,615.03,3767.16,26107593,99.81,0,0,0.18,615.09,3767.1,26107594,99.83,0,0,0.18,615.06,3767.12,26107595,99.76,0,0,0.34,615.29,3766.91,26107596,99.71,0,0,0.34,615.86,3766.33,26107597,99.78,0,0,0.45,614.99,3767.2,26107598,99.82,0,0,0.16,614.95,3767.23,26107599,99.72,0,0,0.3,615,3767.14,26107600,99.74,0,0,0.28,615.32,3766.84,26107601,99.83,0,0,0.16,615.3,3766.86,26107602,99.7,0,0,0.62,615.53,3766.62,26107603,99.84,0,0,0.2,614.99,3767.16,26107604,99.79,0,0,0.2,614.96,3767.18,26107605,99.76,0,0,0.36,614.96,3767.2,26107606,99.84,0,0,0.18,615.01,3767.14,26107607,99.71,0,0,0.62,615.58,3766.56,26107608,99.83,0,0,0.16,615.28,3766.86,26107609,99.82,0,0,0.17,615.25,3766.88,26107610,99.73,0,0,0.35,615.07,3767.09,26107611,99.84,0,0,0.2,614.97,3767.18,26107612,99.67,0,0,0.61,615.3,3766.87,26107613,99.84,0,0,0.2,614.91,3767.25,26107614,99.81,0,0,0.21,615.06,3767.1,26107615,99.76,0,0,0.32,615.07,3767.1,26107616,99.82,0,0,0.15,615.03,3767.14,26107617,98.3,0,0,0.46,615.35,3766.81,26107618,99.82,0,0,0.29,614.95,3767.2,26107619,99.84,0,0,0.16,614.91,3767.24,26107620,99.66,0,0,0.28,614.99,3767.19,26107621,99.82,0,0,0.16,614.69,3767.48,26107622,99.72,0,0,0.51,614.48,3767.68,26107623,99.82,0,0,0.29,614.26,3767.9,26107624,99.83,0,0,0.18,614.22,3767.93,26107625,99.66,0,0,0.34,613.98,3768.19,26107626,99.83,0,0,0.18,613.94,3768.22,26107627,99.72,0,0,0.47,614.37,3767.79,26107628,99.83,0,0,0.36,614.54,3767.59,26107629,99.78,0,0,0.32,614.5,3767.6,26107630,99.77,0,0,0.3,614.25,3767.87,26107631,99.86,0,0,0.16,614.21,3767.91,26107632,99.71,0,0,0.31,614.53,3767.58,26107633,99.8,0,0,0.42,613.91,3768.2,26107634,99.84,0,0,0.14,613.98,3768.14,26107635,99.76,0,0,0.33,614.32,3767.82,26107636,99.84,0.01,0.01,0.15,614.29,3767.85,26107637,99.83,0,0,0.18,614.5,3767.63,26107638,99.71,0,0,0.57,614.83,3767.3,26107639,99.83,0,0,0.14,614.43,3767.69,26107640,99.62,0,0,0.3,613.43,3768.71,26107641,99.8,0,0,0.19,614.32,3767.81,26107642,99.84,0,0,0.18,614.3,3767.83,26107643,99.7,0,0,0.63,615.25,3766.87,26107644,99.82,0,0,0.15,614.71,3767.4,26107645,99.69,0,0,0.28,614.46,3767.67,26107646,99.84,0,0,0.16,614.43,3767.69,26107647,99.84,0,0,0.18,614.4,3767.72,26107648,99.71,0,0,0.59,614.85,3767.27,26107649,99.85,0,0,0.15,614.52,3767.6,26107650,99.69,0,0,0.32,614.76,3767.37,26107651,99.83,0,0,0.16,614.73,3767.4,26107652,99.83,0,0,0.18,614.69,3767.43,26107653,99.7,0,0,0.61,614.89,3767.23,26107654,99.8,0,0,0.18,614.39,3767.73,26107655,99.73,0,0,0.29,614.42,3767.71,26107656,99.84,0,0,0.16,614.28,3767.85,26107657,99.85,0,0,0.14,614.25,3767.88,26107658,99.7,0,0,0.42,614.57,3767.54,26107659,99.59,0,0,0.43,614.42,3767.67,26107660,99.72,0,0,0.29,614.4,3767.7,26107661,99.84,0,0,0.13,614.38,3767.72,26107662,99.85,0,0,0.16,614.52,3767.57,26107663,99.72,0,0,0.44,614.89,3767.21,26107664,99.85,0,0,0.31,614.71,3767.38,26107665,99.67,0,0.01,0.32,614.46,3767.64,26107666,99.82,0,0,0.16,614.39,3767.7,26107667,99.82,0,0,0.16,614.36,3767.73,26107668,99.83,0,0,0.14,614.45,3767.63,26107669,94.8,0.39,0.01,265.68,629.49,3752.89,26107670,99.77,0,0,0.43,616.92,3765.12,26107671,99.83,0,0,0.18,616.89,3765.14,26107672,99.84,0,0,0.18,617.03,3765,26107673,99.84,0,0,0.18,617,3765.03,26107674,99.67,0,0,0.69,615.44,3766.62,26107675,99.7,0,0,0.3,614.78,3767.31,26107676,99.81,0,0,0.16,614.75,3767.34,26107677,99.84,0,0,0.14,614.72,3767.36,26107678,99.08,0,0,0.15,614.78,3767.3,26107679,99.72,0,0,0.6,614.89,3767.22,26107680,99.67,0,0,0.28,614.83,3767.31,26107681,99.83,0,0,0.14,614.81,3767.32,26107682,99.79,0.01,0,0.16,614.78,3767.36,26107683,99.85,0,0,0.14,614.73,3767.4,26107684,99.68,0,0,0.52,614.95,3767.17,26107685,99.39,0,0,0.35,613.6,3768.54,26107686,98.52,0,0,0.14,613.65,3768.49,26107687,99.85,0,0,0.14,613.62,3768.52,26107688,99.83,0,0,0.15,613.59,3768.55,26107689,99.56,0,0,0.57,614.73,3767.38,26107690,99.77,0,0,0.41,614.79,3767.35,26107691,99.81,0,0.01,0.17,614.82,3767.32,26107692,99.83,0,0,0.14,614.88,3767.25,26107693,99.76,0,0,0.15,614.85,3767.28,26107694,99.67,0,0,0.46,615,3767.13,26107695,99.74,0,0,0.44,614.79,3767.35,26107696,99.83,0.01,0.01,0.14,614.76,3767.37,26107697,99.83,0,0,0.2,614.96,3767.16,26107698,99.83,0,0,0.14,615.12,3767,26107699,99.73,0,0,0.43,615.33,3766.79,26107700,99.75,0,0,0.45,614.61,3767.54,26107701,99.89,0,0,0.19,614.07,3768.07,26107702,99.9,0,0,0.14,614.05,3768.09,26107703,99.93,0,0,0.15,614.01,3768.12,26107704,99.91,0,0,0.15,613.98,3768.15,26107705,99.63,0,0,0.74,614.61,3767.53,26107706,99.92,0,0,0.14,614.13,3768,26107707,99.91,0,0,0.16,614.1,3768.04,26107708,99.92,0,0,0.15,614.08,3768.05,26107709,99.93,0,0,0.15,614.04,3768.09,26107710,99.66,0,0,0.75,615.29,3766.85,26107711,99.93,0,0,0.13,614.97,3767.16,26107712,99.92,0,0,0.14,615.06,3767.07,26107713,99.93,0,0,0.16,615.1,3767.02,26107714,99.93,0,0,0.14,615.07,3767.05,26107715,99.63,0,0,0.74,614.38,3767.75,26107716,99.93,0,0,0.16,614.04,3768.09,26107717,99.93,0.01,0,0.17,614.05,3768.07,26107718,99.93,0,0,0.14,614.12,3767.99,26107719,99.75,0,0.01,0.32,614.78,3767.31,26107720,99.74,0,0,0.76,615.37,3766.73,26107721,99.94,0,0,0.16,614.97,3767.12,26107722,99.9,0,0,0.16,614.93,3767.15,26107723,99.93,0,0,0.14,615.01,3767.06,26107724,99.91,0,0,0.16,615.06,3767.01,26107725,99.69,0,0,0.56,615.39,3766.71,26107726,99.92,0,0,0.3,614.99,3767.09,26107727,99.89,0,0,0.16,614.95,3767.12,26107728,99.89,0,0,0.14,614.98,3767.09,26107729,99.88,0,0,0.15,615.09,3766.98,26107730,99.74,0,0,0.68,615.73,3766.35,26107731,99.92,0,0,0.21,615.04,3767.04,26107732,99.91,0,0,0.14,615,3767.07,26107733,99.93,0,0,0.16,614.97,3767.1,26107734,99.9,0,0,0.14,614.94,3767.12,26107735,99.75,0,0,0.53,614.96,3767.12,26107736,99.94,0,0,0.38,615.09,3767,26107737,99.94,0,0,0.14,615.06,3767.02,26107738,99.93,0,0,0.15,615.03,3767.04,26107739,99.93,0,0,0.16,615,3767.07,26107740,99.64,0,0,0.29,614.99,3767.09,26107741,99.74,0,0,0.57,615.32,3766.77,26107742,99.92,0,0,0.17,614.99,3767.09,26107743,99.92,0,0,0.14,615.08,3767,26107744,99.91,0,0,0.15,615.04,3767.03,26107745,99.84,0,0,0.29,615.03,3767.05,26107746,99.77,0,0,0.58,615.36,3766.73,26107747,99.93,0,0,0.14,614.97,3767.11,26107748,99.91,0,0,0.17,614.94,3767.14,26107749,99.79,0,0,0.36,615.03,3767.04,26107750,99.78,0,0,0.3,615.13,3766.94,26107751,99.79,0,0,0.58,615.59,3766.48,26107752,99.91,0,0,0.14,615.25,3766.81,26107753,99.93,0,0,0.14,615.22,3766.84,26107754,99.91,0,0,0.19,615.18,3766.89,26107755,99.78,0,0,0.29,614.24,3767.86,26107756,99.7,0.01,0.01,0.57,615.49,3766.6,26107757,99.88,0,0,0.21,615.05,3767.04,26107758,99.93,0,0,0.14,615.01,3767.08,26107759,99.89,0.01,0.03,0.21,614.94,3767.14,26107760,99.78,0,0,0.32,615.14,3766.96,26107761,99.8,0,0,0.47,615.51,3766.58,26107762,99.9,0,0,0.27,615.04,3767.04,26107763,99.94,0,0,0.17,615.01,3767.07,26107764,99.91,0,0,0.14,614.99,3767.09,26107765,99.85,0,0,0.29,614.98,3767.12,26107766,99.73,0,0,0.56,615.37,3766.72,26107767,99.87,0,0,0.19,615.16,3766.93,26107768,99.89,0,0,0.16,615.27,3766.82,26107769,99.87,0,0,0.16,615.31,3766.77,26107770,99.83,0,0,0.31,615.06,3767.03,26107771,99.78,0,0,0.6,614.87,3767.22,26107772,99.91,0,0,0.14,613.27,3768.81,26107773,99.91,0,0,0.15,613.24,3768.84,26107774,99.91,0,0,0.14,613.2,3768.87,26107775,99.8,0,0,0.29,614.29,3767.8,26107776,99.78,0,0,0.44,614.71,3767.38,26107777,99.88,0,0,0.31,614.55,3767.54,26107778,99.94,0,0,0.18,614.51,3767.57,26107779,99.82,0,0,0.31,614.25,3767.79,26107780,99.85,0,0,0.29,614.23,3767.83,26107781,99.91,0,0,0.14,614.2,3767.86,26107782,99.8,0,0,0.64,615.24,3766.81,26107783,99.95,0,0,0.15,614.57,3767.48,26107784,99.93,0,0,0.15,614.54,3767.52,26107785,99.87,0,0,0.3,614.3,3767.78,26107786,99.9,0,0,0.38,614.24,3767.84,26107787,99.74,0,0,0.62,614.37,3767.7,26107788,99.93,0,0,0.17,613.93,3768.13,26107789,99.94,0,0,0.16,614,3768.06,26107790,99.86,0,0,0.29,614.33,3767.75,26107791,99.92,0,0,0.16,614.3,3767.79,26107792,99.78,0,0,0.63,614.82,3767.27,26107793,99.9,0,0,0.15,614.49,3767.6,26107794,99.9,0,0,0.14,614.45,3767.63,26107795,99.78,0,0,0.37,614.48,3767.61,26107796,99.93,0,0,0.19,614.5,3767.59,26107797,99.78,0,0,0.61,614.76,3767.32,26107798,99.94,0,0,0.18,614.27,3767.81,26107799,96.75,0,0,0.14,614.25,3767.83,26107800,99.71,0,0,0.29,613.28,3768.81,26107801,99.92,0,0,0.16,613.21,3768.88,26107802,99.76,0,0,0.58,613.83,3768.25,26107803,99.91,0,0,0.14,614.07,3768.01,26107804,99.92,0.01,0.01,0.17,613.97,3768.1,26107805,99.82,0,0,0.3,613.7,3768.38,26107806,99.93,0,0,0.14,613.72,3768.36,26107807,98.68,0,0,0.6,614.17,3767.91,26107808,99.94,0,0,0.14,613.78,3768.29,26107809,99.78,0.01,0.02,0.3,614.43,3767.61,26107810,99.83,0.01,0.02,0.29,614.79,3767.27,26107811,99.88,0.01,0.02,0.16,614.74,3767.3,26107812,99.75,0.01,0.03,0.34,615.09,3766.95,26107813,99.83,0.01,0.03,0.39,615,3767.04,26107814,99.81,0.01,0.02,0.14,614.97,3767.06,26107815,99.8,0.01,0.02,0.29,614.71,3767.34,26107816,99.8,0.01,0.03,0.16,614.75,3767.29,26107817,99.84,0.01,0.02,0.18,614.72,3767.32,26107818,99.67,0.01,0.03,0.63,615.17,3766.87,26107819,99.82,0.01,0.02,0.15,614.73,3767.3,26107820,99.73,0.01,0.02,0.32,614.72,3767.33,26107821,99.71,0.01,0.02,0.16,614.5,3767.55,26107822,99.71,0.01,0.03,0.18,614.5,3767.54,26107823,99.64,0.01,0.02,0.57,614.83,3767.2,26107824,99.82,0.01,0.02,0.15,614.48,3767.55,26107825,99.66,0.01,0.02,0.3,614.99,3767.05,26107826,99.8,0.01,0.03,0.16,614.96,3767.08,26107827,99.82,0,0.02,0.17,614.96,3767.08,26107828,99.71,0.01,0.02,0.6,615.05,3766.99,26107829,99.91,0.01,0.03,0.2,614.46,3767.57,26107830,99.77,0.01,0.02,0.32,614.72,3767.33,26107831,99.91,0.01,0.02,0.18,614.75,3767.29,26107832,99.88,0.01,0.03,0.18,614.73,3767.31,26107833,99.77,0.01,0.02,0.64,615.08,3766.96,26107834,99.89,0.01,0.02,0.14,614.74,3767.29,26107835,99.8,0.01,0.02,0.3,614.48,3767.57,26107836,99.88,0.01,0.02,0.14,614.49,3767.56,26107837,99.88,0.01,0.03,0.16,614.48,3767.56,26107838,99.76,0.01,0.02,0.57,614.87,3767.17,26107839,99.81,0,0.02,0.33,614.75,3767.26,26107840,99.76,0.01,0.02,0.32,614.8,3767.23,26107841,99.9,0.01,0.02,0.15,614.7,3767.32,26107842,99.87,0.01,0.02,0.16,614.77,3767.25,26107843,99.75,0.01,0.02,0.42,615.48,3766.53,26107844,99.81,0.01,0.03,0.29,614.72,3767.3,26107845,99.78,0.01,0.02,0.29,614.77,3767.28,26107846,99.87,0.01,0.02,0.16,614.75,3767.29,26107847,99.84,0.01,0.02,0.14,614.71,3767.33,26107848,99.85,0.01,0.03,0.15,614.74,3767.29,26107849,99.74,0.01,0.03,0.56,615.51,3766.51,26107850,99.73,0.01,0.02,0.28,614.03,3768.01,26107851,99.9,0,0.02,0.16,613.99,3768.05,26107852,99.9,0,0.02,0.14,614,3768.03,26107853,99.88,0.01,0.02,0.14,613.98,3768.05,26107854,99.77,0.01,0.02,0.61,615,3767.02,26107855,99.81,0.01,0.02,0.3,614.99,3767.05,26107856,99.87,0.01,0.02,0.13,614.98,3767.05,26107857,99.83,0.01,0.03,0.17,614.99,3767.04,26107858,99.88,0.01,0.02,0.14,614.98,3767.05,26107859,99.59,0.01,0.02,0.53,615.3,3766.73,26107860,99.66,0.01,0.02,0.38,615,3767.04,26107861,99.89,0.01,0.03,0.16,614.97,3767.06,26107862,82.09,94.15,0.14,328.66,654.79,3661.71,26107863,80.94,0.01,0.02,486.87,657.63,3667.58,26107864,99.72,0.01,0.02,33.35,617.72,3851.77,26107865,99.79,0.01,0.02,0.34,616.79,3852.15,26107866,99.83,0.01,0.02,0.17,616.69,3852.16,26107867,95.97,0.01,0.02,0.14,616.65,3852.13,26107868,99.87,0.01,0.03,0.17,615.93,3852.8,26107869,99.64,0.01,0.03,0.66,615.36,3853.02,26107870,99.76,0.01,0.03,0.38,614.61,3853.68,26107871,99.88,0.01,0.02,0.15,614.42,3853.66,26107872,99.86,0.01,0.02,0.16,614.52,3853.48,26107873,99.87,0.01,0.02,0.15,614.49,3853.43,26107874,99.68,0.01,0.03,0.46,615.3,3852.56,26107875,99.79,0.01,0.02,0.45,614.6,3853.2,26107876,99.87,0.01,0.03,0.16,614.48,3853.24,26107877,99.87,0.01,0.03,0.19,614.67,3852.97,26107878,99.91,0.01,0.02,0.16,614.57,3852.98,26107879,99.73,0.01,0.02,0.36,615.08,3852.39,26107880,99.81,0.01,0.02,0.49,615.18,3852.23,26107881,99.84,0.01,0.02,0.18,614.85,3852.47,26107882,99.87,0.01,0.04,0.15,614.81,3852.43,26107883,99.87,0.01,0.03,0.15,614.68,3852.47,26107884,99.88,0.01,0.02,0.14,614.59,3852.49,26107885,98.44,0.01,0.02,16.37,617.6,3848.16,26107886,99.87,0.01,0.02,0.19,614.85,3850.28,26107887,99.84,0.01,0.03,0.16,614.75,3850.29,26107888,99.88,0.01,0.02,0.14,614.72,3850.24,26107889,99.88,0.01,0.03,0.15,614.6,3850.28,26107890,99.63,0.01,0.03,0.69,615.61,3849.2,26107891,99.88,0.01,0.02,0.16,615.2,3849.53,26107892,99.86,0.01,0.02,0.14,615.15,3849.49,26107893,99.88,0.01,0.03,0.15,615.04,3849.52,26107894,99.89,0.01,0.03,0.14,614.94,3849.54,26107895,99.67,0.01,0.02,0.7,615.59,3848.83,26107896,99.85,0.01,0.02,0.14,615.06,3849.28,26107897,99.87,0.01,0.02,0.17,614.94,3849.31,26107898,99.87,0.01,0.03,0.14,614.9,3849.27,26107899,99.84,0.01,0.02,0.3,615.05,3849.02,26107900,99.63,0.01,0.03,0.68,615.47,3848.54,26107901,99.87,0.01,0.02,0.18,615.17,3848.76,26107902,99.89,0.01,0.03,0.16,615.08,3848.76,26107903,99.85,0.01,0.03,0.14,615,3848.76,26107904,99.85,0.01,0.02,0.15,614.89,3848.8,26107905,99.62,0.01,0.03,0.75,615.71,3847.76,26107906,99.9,0.01,0.03,0.21,615.24,3848.06,26107907,99.87,0.01,0.02,0.14,615.13,3848.09,26107908,99.83,0.01,0.02,0.15,615.08,3848.05,26107909,99.83,0.01,0.02,0.15,615,3848.05,26107910,99.64,0.01,0.02,0.54,615.33,3847.66,26107911,99.87,0.01,0.02,0.29,615.11,3847.8,26107912,99.86,0.01,0.02,0.16,615.03,3847.8,26107913,99.88,0.01,0.02,0.14,614.93,3847.82,26107914,99.86,0.01,0.02,0.15,614.87,3847.8,26107915,99.6,0.01,0.02,0.5,614.03,3848.57,26107916,99.87,0.01,0.02,0.4,615.19,3847.32,26107917,99.88,0.01,0.02,0.14,615.12,3847.31,26107918,99.85,0.01,0.02,0.15,615.03,3847.32,26107919,99.88,0.01,0.03,0.14,614.93,3847.33,26107920,99.62,0.01,0.03,0.28,615.59,3846.62,26107921,99.69,0.01,0.03,0.56,615.71,3846.41,26107922,99.81,0.01,0.02,0.14,615.23,3846.81,26107923,99.85,0.01,0.03,0.15,614.38,3847.58,26107924,99.85,0.01,0.02,0.16,614.1,3847.78,26107925,99.76,0.01,0.03,0.32,614.02,3847.8,26107926,99.68,0.01,0.03,0.53,614.9,3846.84,26107927,99.83,0,0.02,0.16,614.57,3847.08,26107928,99.88,0.01,0.02,0.15,614.49,3847.08,26107929,99.69,0.01,0.02,0.31,614.37,3847.09,26107930,99.68,0.01,0.02,0.32,614.56,3846.83,26107931,99.61,0.01,0.02,0.39,614.99,3846.32,26107932,99.75,0.01,0.03,0.29,614.67,3846.55,26107933,99.59,0.01,0.02,0.14,614.55,3846.59,26107934,99.69,0.01,0.03,0.14,614.52,3846.54,26107935,99.74,0.01,0.02,0.3,614.2,3846.8,26107936,99.65,0.01,0.03,0.51,614.43,3846.48,26107937,99.82,0.01,0.02,0.23,614.05,3846.78,26107938,99.81,0.01,0.02,0.15,613.94,3846.81,26107939,99.77,0.01,0.03,0.16,613.82,3846.84,26107940,99.73,0.01,0.02,0.3,614.05,3846.56,26107941,99.71,0.01,0.02,0.42,614.33,3846.19,26107942,99.75,0.01,0.02,0.31,614.36,3846.08,26107943,99.8,0.01,0.03,0.14,614.32,3846.03,26107944,99.81,0.01,0.03,0.15,614.21,3846.07,26107945,99.72,0.01,0.02,0.33,614.6,3845.61,26107946,99.7,0.01,0.02,0.56,614.99,3845.13,26107947,99.87,0.01,0.02,0.19,614.93,3845.09,26107948,99.83,0.01,0.02,0.15,614.81,3845.12,26107949,99.82,0.01,0.02,0.14,614.78,3845.07,26107950,99.61,0.01,0.03,0.34,614.02,3845.67,26107951,99.79,0.01,0.03,0.17,614.28,3845.33,26107952,99.79,0.01,0.03,0.56,615.02,3844.5,26107953,99.81,0.01,0.02,0.15,614.63,3844.81,26107954,99.85,0.01,0.02,0.15,614.51,3844.85,26107955,99.73,0.01,0.02,0.3,614.46,3844.86,26107956,99.84,0.01,0.02,0.14,614.41,3844.84,26107957,99.68,0.01,0.03,0.56,615.2,3843.97,26107958,99.87,0.01,0.02,0.13,614.72,3844.37,26107959,99.79,0.01,0.03,0.31,614.67,3844.32,26107960,99.73,0.01,0.03,0.29,613.88,3845.06,26107961,99.84,0.01,0.02,0.16,613.84,3845.04,26107962,99.66,0.01,0.02,0.55,614.91,3843.93,26107963,99.86,0.01,0.02,0.15,614.73,3844.08,26107964,99.83,0.01,0.03,0.15,614.68,3844.09,26107965,99.7,0.01,0.03,0.3,614.38,3844.34,26107966,99.85,0.01,0.02,0.14,614.34,3844.32,26107967,99.61,0.01,0.02,0.57,615.09,3843.51,26107968,99.85,0.01,0.02,0.14,614.93,3843.64,26107969,99.84,0.01,0.02,0.16,614.95,3843.59,26107970,99.74,0.01,0.02,0.31,614.67,3843.85,26107971,99.84,0.01,0.03,0.14,614.56,3843.88,26107972,99.72,0.01,0.02,0.51,615.35,3843.02,26107973,99.84,0.01,0.03,0.2,614.5,3843.83,26107974,99.85,0.01,0.03,0.14,614.46,3843.85,26107975,99.74,0.01,0.02,0.29,615.13,3843.15,26107976,99.84,0.01,0.03,0.17,615.15,3843.09,26107977,99.75,0.01,0.02,0.43,615.58,3842.59,26107978,99.83,0.01,0.03,0.3,615.23,3842.89,26107979,99.85,0.01,0.02,0.16,615.21,3842.88,26107980,99.55,0.01,0.02,0.3,614.96,3843.11,26107981,99.54,0.01,0.02,0.14,614.89,3843.14,26107982,99.69,0.01,0.03,0.49,615.22,3842.73,26107983,99.84,0.01,0.02,0.26,615.03,3842.83,26107984,99.8,0.01,0.03,0.15,614.98,3842.8,26107985,99.73,0.01,0.02,0.31,614.64,3843.1,26107986,99.84,0.01,0.02,0.16,614.62,3843.09,26107987,99.73,0,0.02,0.42,614.93,3842.76,26107988,99.88,0,0.01,0.29,614.8,3842.83,26107989,99.8,0,0.01,0.3,614.66,3842.91,26107990,99.72,0.01,0.02,0.32,614.98,3842.56,26107991,99.89,0,0,0.16,614.89,3842.63,26107992,99.91,0,0,0.14,614.83,3842.66,26107993,99.77,0,0,0.54,615.36,3842.09,26107994,99.9,0,0,0.15,614.94,3842.47,26107995,99.78,0,0,0.32,614.99,3842.39,26107996,99.87,0.01,0.01,0.13,614.99,3842.35,26107997,99.9,0,0,0.21,615.15,3842.15,26107998,99.76,0,0,0.56,615.23,3842.02,26107999,99.9,0,0,0.14,614.76,3842.45,26108000,99.79,0,0,0.31,615.15,3842.02,26108001,99.85,0,0,0.18,614.96,3842.17,26108002,99.91,0,0,0.17,615.04,3842.06,26108003,99.77,0,0,0.54,615.63,3841.43,26108004,99.86,0,0,0.14,615.39,3841.61,26108005,99.86,0,0,0.3,615.07,3841.89,26108006,99.92,0,0,0.2,614.99,3841.93,26108007,99.9,0,0,0.14,614.93,3841.96,26108008,99.78,0,0,0.56,615.34,3841.52,26108009,99.92,0,0,0.15,615.17,3841.64,26108010,99.85,0,0,0.3,614.69,3842.08,26108011,99.94,0,0,0.14,614.6,3842.12,26108012,99.92,0,0,0.15,614.7,3842,26108013,99.79,0,0,0.56,615.1,3841.57,26108014,99.92,0,0,0.16,614.69,3841.95,26108015,99.86,0,0,0.36,614.86,3841.74,26108016,99.91,0,0,0.12,615.04,3841.5,26108017,99.93,0,0,0.16,615.14,3841.36,26108018,99.8,0,0,0.55,615.48,3840.97,26108019,99.87,0,0,0.29,614.4,3841.86,26108020,99.76,0,0,0.29,614.54,3841.67,26108021,99.86,0,0,0.14,614.46,3841.69,26108022,99.92,0,0,0.16,614.38,3841.73,26108023,99.78,0,0,0.4,614.95,3841.12,26108024,99.93,0,0,0.31,615.15,3840.85,26108025,99.77,0.03,0.85,0.34,615.04,3840.87,26108026,99.93,0,0,0.21,614.74,3840.92,26108027,99.92,0,0,0.14,614.9,3840.72,26108028,99.9,0,0,0.16,615,3840.58,26108029,99.75,0,0,0.59,615.49,3840.02,26108030,99.79,0,0,0.31,615.12,3840.36,26108031,99.92,0,0,0.14,615.02,3840.4,26108032,99.9,0,0,0.14,614.94,3840.43,26108033,99.9,0,0,0.16,614.87,3840.45,26108034,94.64,0.37,0.01,264.83,625.65,3829.51,26108035,99.79,0,0,0.37,617.03,3837.56,26108036,99.93,0,0,0.16,616.89,3837.65,26108037,99.93,0,0,0.14,616.81,3837.68,26108038,99.91,0,0,0.15,616.72,3837.7,26108039,99.78,0,0,0.55,616.3,3838.12,26108040,99.71,0,0,0.39,615.14,3839.29,26108041,99.87,0,0,0.15,615.06,3839.32,26108042,99.92,0,0,0.16,614.98,3839.35,26108043,99.92,0,0,0.14,614.88,3839.38,26108044,99.77,0,0,0.55,615.5,3838.73,26108045,99.82,0,0,0.35,614.78,3839.44,26108046,99.89,0,0,0.17,614.78,3839.38,26108047,99.91,0,0,0.16,614.88,3839.24,26108048,99.88,0,0,0.18,614.96,3839.09,26108049,99.72,0,0,0.75,615.69,3838.28,26108050,99.81,0,0,0.29,614.81,3839.14,26108051,99.9,0,0,0.16,614.73,3839.18,26108052,99.92,0,0,0.14,614.66,3839.2,26108053,99.8,0,0,0.15,614.75,3839.05,26108054,99.75,0,0,0.5,615.31,3838.46,26108055,99.81,0,0,0.35,614.64,3839.11,26108056,99.88,0.01,0.01,0.16,614.55,3839.16,26108057,99.9,0,0,0.18,614.5,3839.19,26108058,99.89,0,0,0.17,614.44,3839.22,26108059,99.77,0,0,0.4,615.04,3838.59,26108060,99.77,0,0,0.42,615.25,3838.37,26108061,99.87,0,0,0.21,614.74,3838.87,26108062,99.88,0,0,0.14,614.68,3838.93,26108063,99.89,0,0,0.14,614.62,3838.96,26108064,99.89,0,0,0.16,614.56,3838.99,26108065,99.58,0,0,0.72,615.16,3838.39,26108066,99.83,0,0,0.14,614.68,3838.85,26108067,99.88,0,0,0.17,614.6,3838.9,26108068,99.87,0,0,0.15,614.53,3838.93,26108069,99.89,0,0,0.15,614.48,3838.97,26108070,99.72,0,0,0.71,615.28,3838.17,26108071,99.88,0,0,0.16,614.83,3838.61,26108072,99.88,0,0,0.15,614.77,3838.65,26108073,99.86,0,0,0.17,614.71,3838.68,26108074,99.89,0,0.01,0.18,614.6,3838.66,26108075,99.65,0,0,0.73,614.95,3838.27,26108076,99.83,0.01,0.01,0.16,614.29,3838.9,26108077,99.78,0.01,0.03,0.16,614.26,3838.9,26108078,99.85,0.01,0.02,0.16,614.3,3838.81,26108079,99.77,0.01,0.02,0.41,614.44,3838.43,26108080,99.57,0.01,0.02,0.72,614.88,3837.97,26108081,99.83,0.01,0.02,0.18,614.67,3838.15,26108082,99.79,0.03,0.88,0.16,614.63,3838.17,26108083,99.83,0.01,0.02,0.2,614.63,3838.15,26108084,99.82,0.01,0.02,0.19,614.61,3838.16,26108085,99.61,0.01,0.02,0.71,614.76,3838.01,26108086,99.84,0.01,0.02,0.18,614.12,3838.63,26108087,99.83,0.01,0.02,0.15,614.07,3838.66,26108088,99.86,0.01,0.02,0.16,614.05,3838.65,26108089,99.76,0.03,0.87,0.23,614.02,3838.64,26108090,99.51,0.01,0.02,0.74,615.31,3837.33,26108091,99.83,0.01,0.03,0.16,614.47,3838.15,26108092,99.83,0.01,0.02,0.17,614.43,3838.15,26108093,99.82,0.01,0.02,0.14,614.39,3838.16,26108094,99.75,0.01,0.03,0.16,614.4,3838.12,26108095,99.61,0.01,0.02,0.51,614.93,3837.59,26108096,99.77,0.01,0.02,0.38,614.35,3838.16,26108097,99.73,0.03,0.58,0.3,614.16,3838.16,26108098,99.81,0,0.02,0.15,614,3838.19,26108099,99.8,0.01,0.02,0.14,614.01,3838.14,26108100,99.38,0.01,0.02,0.65,615.07,3837.07,26108101,99.75,0.01,0.03,0.23,614.69,3837.43,26108102,99.8,0.01,0.07,0.16,614.56,3837.42,26108103,99.78,0.01,0.03,0.14,614.55,3837.39,26108104,99.8,0.01,0.02,0.14,614.51,3837.4,26108105,99.71,0.01,0.03,0.41,611.4,3840.73,26108106,99.67,0.01,0.02,0.56,609.85,3842.41,26108107,99.77,0.01,0.03,0.15,609.5,3842.73,26108108,99.75,0.01,0.02,0.16,605.36,3846.95,26108109,99.71,0.01,0.02,0.3,598.7,3853.75,26108110,99.7,0.01,0.03,0.31,598.51,3853.96,26108111,99.69,0,0.02,0.56,599.03,3853.43,26108112,99.79,0.01,0.02,0.15,598.68,3853.74,26108113,99.76,0,0.02,0.14,598.72,3853.69,26108114,99.78,0.01,0.02,0.16,598.66,3853.75,26108115,99.67,0,0.02,0.32,598.44,3853.98,26108116,99.65,0,0.02,0.59,598.54,3853.86,26108117,99.79,0.01,0.02,0.19,597.85,3854.52,26108118,99.78,0.01,0.02,0.14,597.87,3854.46,26108119,99.8,0.01,0.05,0.14,597.95,3854.34,26108120,99.55,0.01,0.19,0.43,597.84,3854.46,26108121,99.63,0,0.02,0.7,598.04,3854.23,26108122,99.79,0,0.02,0.16,598.29,3853.95,26108123,99.81,0,0.02,0.14,598.26,3853.97,26108124,99.84,0,0,0.15,598.3,3853.92,26108125,99.71,0.01,0.13,0.3,598.52,3853.71,26108126,99.74,0,0,0.63,598.76,3853.33,26108127,99.84,0,0,0.16,598.71,3853.35,26108128,99.86,0,0,0.14,598.8,3853.2,26108129,99.84,0,0,0.14,598.74,3853.2,26108130,99.73,0,0,0.3,598.72,3853.21,26108131,99.68,0,0.02,0.58,598.97,3852.93,26108132,99.76,0.03,1.04,0.2,598.32,3853.54,26108133,99.81,0.01,0.03,0.15,598.1,3853.74,26108134,95.44,7.24,0.05,151.08,606.85,3839.1,26108135,99.72,0,0.02,0.32,599.54,3843.11,26108136,99.63,0,0.02,0.32,599.96,3842.67,26108137,99.78,0,0.02,0.39,600.47,3842.13,26108138,99.78,0.01,0.03,0.15,600.49,3842.1,26108139,99.71,0,0.02,0.32,599.04,3843.56,26108140,99.66,0,0.02,0.31,598.08,3844.55,26108141,99.8,0.01,0.02,0.14,598.01,3844.59,26108142,99.67,0,0.02,0.61,598.14,3844.43,26108143,99.8,0,0.02,0.14,597.27,3845.29,26108144,99.8,0.01,0.02,0.16,597.01,3845.57,26108145,99.7,0,0.02,0.29,597.78,3844.81,26108146,99.8,0,0.02,0.16,597.7,3844.87,26108147,99.62,0.01,0.02,0.59,598.52,3844.02,26108148,99.78,0,0.02,0.16,598.18,3844.36,26108149,99.78,0,0.02,0.16,598.16,3844.36,26108150,99.63,0,0.02,0.3,598.19,3844.34,26108151,99.78,0.01,0.03,0.14,598.12,3844.4,26108152,99.64,0,0.02,0.55,598.51,3843.99,26108153,99.8,0.01,0.03,0.15,598.11,3844.35,26108154,99.73,0.01,0.02,0.14,598.08,3844.36,26108155,99.64,0.01,0.03,0.34,598.13,3844.32,26108156,99.77,0.01,0.03,0.14,598.1,3844.35,26108157,99.65,0,0.03,0.57,598.4,3844.03,26108158,99.81,0.01,0.02,0.17,598.09,3844.31,26108159,99.85,0,0,0.18,598.01,3844.39,26108160,99.68,0,0,0.3,598.08,3844.32,26108161,99.81,0,0,0.16,597.96,3844.42,26108162,99.71,0,0,0.55,598.29,3844.06,26108163,99.84,0,0,0.14,598.05,3844.28,26108164,99.86,0,0,0.14,598.01,3844.29,26108165,99.73,0,0,0.3,598.24,3844.05,26108166,99.81,0,0,0.16,598.21,3844.08,26108167,99.64,0,0.02,0.55,598.56,3843.72,26108168,99.82,0,0.02,0.16,598.43,3843.83,26108169,99.63,0,0.02,0.29,597.42,3844.82,26108170,99.64,0.01,0.03,0.3,597.19,3845.05,26108171,99.79,0,0.02,0.16,597.11,3845.09,26108172,99.66,0.01,0.03,0.32,597.73,3844.44,26108173,99.77,0,0.02,0.38,597.61,3844.52,26108174,99.75,0,0.02,0.14,597.5,3844.61,26108175,99.69,0,0.02,0.36,598.03,3844.09,26108176,99.78,0.01,0.03,0.16,597.98,3844.12,26108177,99.77,0.01,0.03,0.2,597.97,3844.12,26108178,99.66,0,0.02,0.55,598.74,3843.33,26108179,99.81,0.01,0.02,0.17,598.42,3843.62,26108180,99.68,0.01,0.03,0.35,598.15,3843.9,26108181,99.77,0,0.02,0.18,597.99,3844.03,26108182,99.78,0.01,0.02,0.14,597.86,3844.14,26108183,99.66,0.03,1,0.65,598.75,3843.23,26108184,99.8,0.01,0.03,0.16,598.59,3843.37,26108185,99.75,0,0.02,0.33,598.85,3843.12,26108186,99.73,0.02,0.11,0.23,598.73,3843.06,26108187,99.75,0.13,0.04,0.38,597.93,3842.88,26108188,99.65,0.01,0.02,0.55,598.55,3842.16,26108189,99.75,0.06,1.72,0.25,598.58,3842.1,26108190,99.64,0.01,0.02,0.36,599.12,3841.43,26108191,99.8,0,0.02,0.14,599.17,3841.37,26108192,99.77,0.01,0.02,0.15,599.11,3841.4,26108193,99.62,0.03,1.16,0.67,599.29,3841.12,26108194,99.8,0.01,0.02,0.21,598.67,3841.67,26108195,99.7,0.01,0.02,0.32,598.85,3841.38,26108196,99.78,0,0.02,0.15,598.81,3841.4,26108197,99.8,0,0.02,0.17,598.78,3841.4,26108198,99.67,0,0.02,0.55,599.22,3840.95,26108199,99.62,0,0.02,0.39,598.94,3841.18,26108200,99.7,0,0.02,0.34,599.04,3841.08,26108201,99.76,0.05,0.7,0.23,598.95,3841.13,26108202,94.41,35.83,1.96,99.79,608.92,3828.22,26108203,84.38,0.01,0.05,636.5,514.24,3693.5,26108204,99.8,0.01,0.02,0.5,503.79,3675.66,26108205,99.66,0,0.02,0.38,503.3,3676.15,26108206,99.78,0.01,0.02,0.17,503.3,3676.15,26108207,99.77,0.01,0.02,0.14,503.27,3676.15,26108208,99.68,0,0.02,0.33,502.71,3676.79,26108209,99.8,0,0.02,0.43,501.09,3678.48,26108210,99.77,0.01,0.02,0.29,501.13,3678.45,26108211,99.81,0,0.02,0.14,501.07,3678.5,26108212,99.83,0.01,0.02,0.16,501.1,3678.44,26108213,99.69,0,0.02,0.29,501.37,3678.18,26108214,99.73,0.01,0.03,0.39,501.07,3678.5,26108215,99.66,0,0.02,0.28,501.29,3678.29,26108216,99.81,0,0.02,0.16,501.29,3678.29,26108217,99.8,0,0.02,0.14,501.29,3678.27,26108218,99.75,0.01,0.02,0.15,501.23,3678.32,26108219,99.64,0,0.02,0.56,501.43,3678.11,26108220,99.58,0.01,0.02,0.28,501.02,3678.54,26108221,86.27,0.02,0.03,1.08,570.47,3609.02,26108222,94.49,0.03,0.89,3.05,905.76,3273.34,26108223,99.79,0.02,0.02,0.22,553.09,3626.01,26108224,98.56,0.03,0.03,0.67,539.48,3639.61,26108225,99.72,0.01,0.03,0.4,506.34,3672.77,26108226,99.75,0.01,0.03,0.17,506.34,3672.77,26108227,84.43,0.03,0.89,3.51,864.7,3314.37,26108228,98.78,0.01,0.03,0.23,556.45,3622.63,26108229,84.5,0.04,0.89,4.03,788.44,3390.58,26108230,98.1,0.04,1.71,0.39,698.38,3480.65,26108231,99.74,0.01,0.02,0.24,535.21,3643.8,26108232,99.77,0,0.02,0.16,507.09,3671.9,26108233,99.77,0.01,0.03,0.15,507.11,3671.87,26108234,87.61,0.58,0.08,7.23,568.94,3608.29,26108235,90.59,0.05,1.75,7.19,784.93,3389.52,26108236,99.53,0.21,1.11,0.49,506.77,3667.1,26108237,99.64,0.05,0.22,0.31,507.58,3665.52,26108238,99.73,0.01,0.03,0.2,508.05,3665.01,26108239,90.82,0.01,0.03,1.06,560.87,3612.16,26108240,80.68,0.05,0.9,3.75,659.8,3513.21,26108241,92.99,0.74,1.81,4.6,645.73,3526.88,26108242,91.98,0.62,0.1,54.8,526.67,3626.78,26108243,96.33,0.04,0.03,1.14,520.07,3629.42,26108244,87.78,0.06,1.75,3.8,887.41,3262.06,26108245,82.52,0.1,1.96,12.18,794.21,3355.31,26108246,84.52,0.04,0.05,3.36,835.31,3314.21,26108247,95.79,0.01,0.03,0.65,524.18,3625.33,26108248,99.73,0.03,0.08,0.28,510.76,3638.64,26108249,99.78,0.01,0.03,0.29,510.99,3638.19,26108250,97.08,0.01,0.02,0.92,513.9,3635.28,26108251,97.59,0.02,0.03,0.48,513.4,3635.78,26108252,96.38,0.03,0.02,0.53,518.69,3630.48,26108253,99.78,0,0.02,0.19,510.57,3638.6,26108254,99.83,0,0.02,0.16,510.54,3638.62,26108255,99.6,0,0.02,0.74,511.22,3637.93,26108256,99.86,0,0.02,0.17,510.78,3638.36,26108257,99.86,0,0.02,0.17,510.77,3638.36,26108258,99.87,0,0.02,0.14,510.77,3638.35,26108259,99.72,0,0.02,0.28,510.74,3638.35,26108260,99.63,0,0.02,0.71,511.14,3637.95,26108261,99.88,0,0.02,0.14,510.76,3638.33,26108262,97.83,0.01,0.02,0.41,514.42,3634.66,26108263,87.45,0.02,0.03,0.78,584.92,3564.14,26108264,84.49,0.02,0.05,3.35,916.05,3233.01,26108265,81.7,0.1,2.63,6.84,906.69,3242.37,26108266,99.63,0,0.02,0.23,837.62,3311.44,26108267,81.21,0.22,4.35,9.77,698.11,3450.86,26108268,82.62,0.17,4.01,8.47,835.62,3313.19,26108269,99.72,0.01,0.02,0.33,724.2,3424.6,26108270,97.2,0.02,0.03,0.93,548.1,3600.72,26108271,84.63,0.11,2.78,3.55,757.04,3391.76,26108272,84.79,0.12,4.3,3.46,904.08,3244.66,26108273,99.68,0.13,4.55,0.26,628.66,3520.06,26108274,99.81,0.04,1.22,0.35,556.59,3592.07,26108275,99.61,0.02,0.72,0.79,558.82,3589.85,26108276,99.85,0.02,0.66,0.23,558.47,3590.19,26108277,99.79,0.01,0.03,0.14,558.43,3590.22,26108278,99.79,0.01,0.03,0.15,558.42,3590.23,26108279,99.84,0.01,0.03,0.15,558.46,3590.18,26108280,99.39,0.01,0.02,0.57,559.93,3588.72,26108281,99.75,0.01,0.03,0.3,559.18,3589.47,26108282,99.83,0,0.02,0.14,559.2,3589.44,26108283,99.79,0.01,0.02,0.15,558.49,3590.15,26108284,99.86,0,0.02,0.16,558.15,3590.47,26108285,99.56,0.01,0.03,0.55,559,3589.64,26108286,99.83,0.01,0.02,0.27,558.42,3590.22,26108287,99.8,0,0.02,0.17,558.4,3590.21,26108288,84.78,0.04,0.62,3.53,820.75,3327.83,26108289,92.73,0.01,0.03,0.74,753.48,3395.09,26108290,88.54,0.08,1.18,3.5,930.73,3217.83,26108291,99.55,0.01,0.03,0.61,786.38,3362.18,26108292,99.76,0.02,0.03,0.21,556.12,3592.41,26108293,84.74,0.1,3.5,3.62,825.79,3322.71,26108294,99.64,0,0.02,0.2,730.52,3417.94,26108295,99.71,0,0.02,0.35,557.54,3590.93,26108296,99.61,0.02,0.02,0.62,558.87,3589.58,26108297,84.97,0.07,1.2,3.57,854.35,3294.08,26108298,99.6,0.13,4.6,0.37,635.43,3512.97,26108299,99.84,0,0.02,0.23,555.21,3593.15,26108300,99.73,0.01,0.03,0.32,556.97,3591.4,26108301,99.71,0,0.02,0.57,557.88,3590.47,26108302,99.88,0,0.02,0.18,557.68,3590.67,26108303,99.83,0.01,0.02,0.16,557.69,3590.65,26108304,99.85,0.01,0.03,0.21,557.64,3590.69,26108305,99.72,0,0.02,0.39,557.96,3590.39,26108306,99.71,0,0.02,0.57,558.71,3589.64,26108307,99.86,0,0.02,0.16,558.42,3589.93,26108308,99.85,0,0.02,0.16,557.82,3590.51,26108309,99.85,0,0.02,0.17,557.4,3590.92,26108310,99.71,0,0.02,0.32,557.99,3590.36,26108311,99.62,0,0.02,0.51,558.17,3590.17,26108312,99.75,0,0.02,0.19,557.74,3590.59,26108313,99.84,0.01,0.03,0.15,557.68,3590.65,26108314,99.83,0.01,0.03,0.16,557.67,3590.65,26108315,99.75,0,0.03,0.32,557.96,3590.38,26108316,99.73,0,0.02,0.57,558.58,3589.75,26108317,99.84,0.01,0.03,0.15,558.67,3589.66,26108318,99.83,0,0.02,0.14,558.51,3589.81,26108319,99.65,0.01,0.02,0.29,557.63,3590.67,26108320,99.68,0.02,0.03,0.34,557.92,3590.39,26108321,83.78,0.05,0.68,3.59,669.85,3478.45,26108322,99.81,0.04,1.3,0.61,892.83,3255.44,26108323,83.89,0.08,0.09,4.14,794.26,3353.94,26108324,99.84,0,0.02,0.16,509.5,3638.7,26108325,99.76,0,0.02,0.33,511.49,3636.72,26108326,99.68,0,0.02,0.43,512.09,3636.12,26108327,99.79,0.04,1.27,0.31,511.52,3636.68,26108328,99.83,0.01,0.05,0.23,511.47,3636.72,26108329,99.8,0.01,0.03,0.16,511.48,3636.72,26108330,99.7,0,0.02,0.29,511.98,3636.24,26108331,99.88,0,0.02,0.16,511.95,3636.26,26108332,99.69,0.01,0.03,0.54,511.89,3636.31,26108333,99.87,0,0.02,0.16,511.47,3636.73,26108334,99.88,0,0.02,0.15,511.5,3636.69,26108335,99.7,0,0.02,0.29,511.74,3636.47,26108336,99.86,0.01,0.03,0.16,511.7,3636.5,26108337,99.74,0.01,0.02,0.55,510.98,3637.2,26108338,99.88,0,0.02,0.15,510.46,3637.71,26108339,99.89,0,0.02,0.16,510.47,3637.7,26108340,99.5,0.01,0.02,0.28,510.96,3637.22,26108341,99.82,0.01,0.02,0.2,510.93,3637.25,26108342,99.66,0,0.02,0.55,511.54,3636.63,26108343,99.89,0,0.02,0.14,511.19,3636.98,26108344,99.89,0,0.02,0.16,511.22,3636.94,26108345,99.8,0.01,0.02,0.3,511.93,3636.25,26108346,99.84,0.01,0.02,0.13,511.97,3636.2,26108347,99.65,0.01,0.02,0.59,512.12,3636.05,26108348,99.83,0.01,0.03,0.14,510.92,3637.24,26108349,99.73,0,0.02,0.28,512.19,3635.94,26108350,99.78,0.01,0.02,0.29,511.93,3636.21,26108351,98.89,0,0.02,0.16,511.96,3636.18,26108352,99.75,0.02,0.02,0.5,512.25,3635.89,26108353,85.1,0.01,0.06,1.74,853.43,3294.85,26108354,99.65,0,0.02,0.16,722.21,3426.16,26108355,99.75,0.01,0.03,0.33,560.48,3587.91,26108356,99.86,0.01,0.03,0.16,560.52,3587.86,26108357,99.69,0.01,0.02,0.6,560.88,3587.5,26108358,99.86,0,0.02,0.14,561.5,3586.87,26108359,97.43,0.02,0.04,0.27,541.67,3606.69,26108360,91.79,0.04,0.03,0.75,548.86,3599.5,26108361,97.4,0.01,0.04,0.31,520.25,3628.1,26108362,97.62,0.03,0.03,0.59,517.14,3631.2,26108363,84.36,0.01,0.06,2.44,701.61,3446.71,26108364,84.35,0.03,0.06,2.55,889.95,3258.35,26108365,83.78,0.04,0.63,3.63,901.92,3246.25,26108366,84.27,0.04,0.63,3.4,791.26,3356.76,26108367,99.47,0.02,0.06,0.45,814.53,3333.49,26108368,99.82,0.01,0.02,0.43,555.71,3592.3,26108369,99.84,0,0.02,0.17,555.65,3592.35,26108370,99.67,0.01,0.02,0.31,555.43,3592.58,26108371,99.87,0.02,0.03,0.21,555.45,3592.55,26108372,95.59,0.02,0.03,0.48,555.68,3592.28,26108373,99.62,0.01,0.02,0.7,512.12,3635.74,26108374,98.94,0.04,0.02,0.24,513.75,3634.1,26108375,82.26,0.05,0.64,3.56,668,3479.8,26108376,99.66,0,0.02,0.46,840.03,3307.57,26108377,87.75,0.03,0.03,0.75,620.9,3526.69,26108378,95.88,0.03,0.71,3.46,903.38,3244.2,26108379,97.16,0.02,0.02,0.51,663.75,3483.77,26108380,83.65,0.03,0.62,3.54,916.84,3230.68,26108381,99.54,0,0.04,0.24,575.38,3572.15,26108382,99.78,0.1,3.42,0.35,558.52,3588.98,26108383,99.68,0.02,0.59,0.59,559.61,3587.85,26108384,99.83,0.05,1.78,0.25,558.94,3588.49,26108385,99.71,0,0.02,0.34,558.65,3588.8,26108386,99.88,0,0.02,0.16,558.66,3588.79,26108387,99.86,0,0.02,0.15,558.65,3588.79,26108388,99.67,0.01,0.02,0.76,559.41,3586.96,26108389,99.83,0.01,0.03,0.21,559.17,3586.29,26108390,99.79,0,0.02,0.3,558.89,3586.58,26108391,99.83,0.01,0.02,0.14,558.05,3587.42,26108392,99.86,0.01,0.05,0.2,557.9,3587.56,26108393,99.66,0.01,0.05,0.68,558.4,3587,26108394,99.82,0.04,1.84,0.3,558.21,3587.07,26108395,99.67,0.02,0.65,0.3,558.25,3587.05,26108396,99.78,0.14,5.29,0.41,558.22,3586.96,26108397,95.81,0.3,4.07,5.86,551.35,3590.16,26108398,96.11,0.66,14.65,14.87,518.19,3624.42,26108399,99.34,1.02,27.97,66.31,514.87,3625.05,26108400,98.69,1.8,59.93,0.74,515.01,3624.88,26108401,99.81,0.04,0.08,0.25,515.04,3624.85,26108402,99.83,0.04,0.1,0.25,514.97,3624.93,26108403,99.63,0.02,0.05,0.52,513.22,3626.71,26108404,99.87,0.02,0.03,0.41,512.38,3627.6,26108405,99.61,0.03,0.06,0.39,511.22,3628.77,26108406,99.78,0.04,0.41,0.3,511.15,3628.83,26108407,99.76,0.78,0.79,1.03,510.99,3628.6,26108408,83.03,0.01,0.05,4.05,741.01,3398.26,26108409,99.51,0.06,2.35,0.75,852.35,3286.84,26108410,99.68,0.03,0.95,0.43,560.16,3579.03,26108411,99.8,0.05,2.02,0.24,560.21,3578.96,26108412,99.84,0.01,0.03,0.19,524.87,3614.29,26108413,99.8,0,0.03,0.16,513.14,3626.02,26108414,99.6,0.01,0.02,0.61,514.17,3624.98,26108415,99.6,0,0.02,0.34,513.35,3625.81,26108416,99.85,0,0.02,0.17,513.34,3625.81,26108417,99.82,0.01,0.03,0.21,513.3,3625.84,26108418,99.82,0,0.02,0.17,513.33,3625.8,26108419,99.71,0,0.02,0.59,513.76,3625.37,26108420,99.64,0.01,0.02,0.36,513.31,3625.82,26108421,99.67,0.08,3.04,0.41,513.14,3625.97,26108422,99.77,0.01,0.02,0.18,513.03,3626.06,26108423,99.8,0,0.02,0.14,513.08,3626.01,26108424,99.52,0.01,0.03,0.5,513.5,3625.58,26108425,99.73,0.01,0.03,0.36,513.54,3625.55,26108426,99.79,0.01,0.02,0.14,513.57,3625.52,26108427,99.81,0.01,0.03,0.14,513.53,3625.55,26108428,99.83,0.01,0.02,0.15,513.55,3625.52,26108429,99.71,0.01,0.03,0.63,513.76,3625.3,26108430,99.76,0.01,0.03,0.36,513.28,3625.8,26108431,99.83,0.01,0.02,0.16,513.29,3625.78,26108432,99.83,0.01,0.02,0.14,513.27,3625.8,26108433,99.88,0,0.02,0.17,513.23,3625.84,26108434,99.69,0.01,0.04,0.42,513.72,3625.34,26108435,99.69,0.01,0.02,0.48,513.52,3625.55,26108436,99.85,0.03,1.07,0.19,513.52,3625.55,26108437,99.85,0.03,0.72,0.21,513.54,3625.51,26108438,99.84,0.04,1.8,0.28,513.7,3625.32,26108439,99.47,0.01,0.03,0.59,514.28,3624.71,26108440,99.71,0.01,0.02,0.45,513.81,3625.2,26108441,99.85,0,0.02,0.14,513.69,3625.3,26108442,99.83,0.01,0.03,0.16,513.69,3625.3,26108443,99.86,0,0.02,0.14,513.64,3625.35,26108444,99.83,0,0.02,0.16,513.9,3625.08,26108445,99.62,0,0.02,0.72,513.28,3625.72,26108446,99.83,0,0.02,0.16,512.95,3626.04,26108447,99.85,0,0.02,0.14,512.94,3626.05,26108448,99.83,0,0.02,0.16,512.9,3626.09,26108449,99.87,0.01,0.02,0.15,512.97,3626.01,26108450,99.56,0,0.02,0.75,513.46,3625.53,26108451,99.88,0.01,0.02,0.18,513.2,3625.79,26108452,99.88,0,0.02,0.18,513.23,3625.76,26108453,99.89,0,0.02,0.18,513.15,3625.83,26108454,99.89,0.01,0.02,0.19,513.21,3625.77,26108455,99.66,0.01,0.02,0.76,513.95,3625.06,26108456,99.85,0.01,0.03,0.14,513.67,3625.34,26108457,99.89,0.01,0.03,0.19,513.7,3625.3,26108458,99.88,0.01,0.02,0.15,513.66,3625.34,26108459,99.87,0.01,0.03,0.15,513.66,3625.34,26108460,99.38,0.01,0.03,0.78,513.81,3625.19,26108461,99.73,0.05,1.71,0.28,513.37,3625.61,26108462,99.8,0,0.02,0.16,513.41,3625.56,26108463,99.86,0,0.02,0.14,513.37,3625.61,26108464,99.83,0.01,0.02,0.14,513.39,3625.57,26108465,99.47,0.04,1.21,0.62,513.87,3625.11,26108466,99.78,0.18,7.54,0.55,513.66,3625.29,26108467,99.83,0.09,3.62,0.44,513.74,3625.12,26108468,99.88,0.01,0.05,0.16,513.74,3625.1,26108469,99.68,0.02,0.03,0.32,513.76,3625.06,26108470,83.01,0.08,2.61,4.41,876.19,3262.61,26108471,99.68,0.03,0.94,0.32,729.11,3409.67,26108472,99.87,0,0.02,0.16,560.3,3578.47,26108473,99.84,0.01,0.03,0.14,560.42,3578.35,26108474,99.86,0.01,0.03,0.16,560.52,3578.24,26108475,99.52,0.01,0.02,0.62,561.8,3576.98,26108476,99.85,0,0.02,0.27,562.02,3576.76,26108477,99.8,0.01,0.02,0.2,561.96,3576.81,26108478,99.88,0,0.02,0.15,562,3576.76,26108479,99.84,0,0.02,0.15,561.97,3576.78,26108480,99.55,0.01,0.03,0.56,562.28,3576.49,26108481,99.78,0,0.02,0.37,562.19,3576.58,26108482,99.84,0,0.02,0.14,561.48,3577.29,26108483,99.86,0.01,0.03,0.18,561.51,3577.25,26108484,99.79,0,0.02,0.19,561.56,3577.2,26108485,99.61,0,0.02,0.32,560.99,3577.78,26108486,99.54,0.19,0.11,0.65,562.63,3576.06,26108487,99.83,0.01,0.05,0.35,562.31,3576.28,26108488,99.8,0.01,0.02,0.16,562.29,3576.3,26108489,99.84,0.01,0.02,0.16,562.58,3576,26108490,99.61,0,0.02,0.29,562.81,3575.79,26108491,99.68,0.01,0.03,0.57,564.12,3574.48,26108492,99.79,0,0.02,0.14,562.62,3575.97,26108493,99.85,0.01,0.03,0.15,562.57,3576.02,26108494,99.86,0.01,0.02,0.14,562.55,3576.03,26108495,99.7,0.01,0.03,0.31,563.08,3575.52,26108496,99.67,0.15,0.11,0.74,563.67,3574.85,26108497,99.83,0.01,0.03,0.22,563.44,3575.02,26108498,99.84,0,0.02,0.14,563.38,3575.07,26108499,99.66,0,0.02,0.3,563.42,3575,26108500,99.74,0.04,1.05,0.38,563.89,3574.54,26108501,99.74,0.1,0.09,0.59,564.03,3574.34,26108502,99.84,0.01,0.02,0.33,563.45,3574.88,26108503,99.8,0.03,0.86,0.16,562.75,3575.57,26108504,99.81,0.07,2.54,0.27,562.77,3575.53,26108505,99.72,0.01,0.03,0.36,563,3575.3,26108506,99.63,0.09,3.27,0.63,563.48,3574.81,26108507,99.81,0.03,1.21,0.34,563.19,3575.05,26108508,99.79,0.04,1.24,0.2,563.27,3574.95,26108509,99.76,0.07,2.44,0.27,563.42,3574.77,26108510,99.59,0.05,1.81,0.39,563.19,3575,26108511,99.64,0.07,2.62,0.66,563.59,3574.55,26108512,99.83,0.06,2.13,0.28,563.56,3574.58,26108513,99.75,0.14,5.08,0.29,563.46,3574.63,26108514,99.85,0,0.02,0.28,562.78,3575.26,26108515,99.68,0.02,0.71,0.32,563.26,3574.8,26108516,99.67,0,0.02,0.59,563.95,3574.1,26108517,99.83,0.01,0.02,0.21,563.27,3574.78,26108518,99.84,0,0.02,0.14,563.21,3574.83,26108519,99.86,0.01,0.02,0.14,563.29,3574.74,26108520,99.67,0,0.02,0.33,563.51,3574.54,26108521,99.81,0.01,0.02,0.16,563.51,3574.53,26108522,99.68,0,0.02,0.56,564.11,3573.92,26108523,99.81,0.01,0.02,0.17,563.71,3574.31,26108524,99.71,0.01,0.03,0.14,563.75,3574.27,26108525,99.75,0,0.02,0.33,563.01,3575.03,26108526,99.68,0.01,0.02,0.14,562.73,3575.3,26108527,99.68,0,0.02,0.57,563.34,3574.69,26108528,99.85,0.01,0.02,0.15,562.97,3575.05,26108529,99.6,0.01,0.02,0.28,563.24,3574.76,26108530,99.75,0.01,0.03,0.31,563.49,3574.53,26108531,99.86,0.01,0.03,0.16,563.47,3574.53,26108532,99.75,0,0.02,0.62,563.51,3574.49,26108533,99.75,0,0.02,0.14,562.96,3575.03,26108534,99.75,0,0.02,0.14,563,3574.98,26108535,99.67,0.01,0.02,0.33,563.47,3574.54,26108536,99.84,0,0.02,0.14,563.11,3574.88,26108537,99.68,0.01,0.02,0.65,563.12,3574.88,26108538,99.79,0.02,0.68,0.2,562.71,3575.27,26108539,99.82,0.01,0.02,0.18,562.12,3575.86,26108540,99.7,0,0.02,0.31,562.46,3575.54,26108541,99.83,0.01,0.02,0.2,562.35,3575.64,26108542,99.71,0.01,0.05,0.61,563.1,3574.88,26108543,99.88,0,0.02,0.15,562.45,3575.52,26108544,99.88,0,0.02,0.15,562.49,3575.48,26108545,99.75,0.01,0.02,0.33,562.97,3575.01,26108546,99.83,0.02,0.41,0.25,562.95,3575.03,26108547,99.68,0.01,0.26,0.45,563.63,3574.34,26108548,99.83,0,0.02,0.29,562.22,3575.74,26108549,99.85,0,0.02,0.16,562.21,3575.76,26108550,99.72,0.01,0.03,0.34,562.23,3575.75,26108551,99.79,0.01,0.02,0.14,562.2,3575.78,26108552,99.68,0,0.02,0.42,562.66,3575.31,26108553,99.85,0,0.02,0.29,562.69,3575.27,26108554,99.87,0,0.02,0.14,562.69,3575.26,26108555,99.67,0.01,0.02,0.32,562,3575.97,26108556,99.83,0,0.02,0.17,561.95,3576.02,26108557,99.71,0,0.02,0.4,562.41,3575.56,26108558,99.88,0.01,0.02,0.3,562.65,3575.31,26108559,99.69,0.01,0.02,0.29,562.37,3575.56,26108560,99.73,0,0.02,0.35,561.93,3576.01,26108561,99.86,0,0.02,0.16,561.95,3575.99,26108562,99.83,0.01,0.02,0.14,561.95,3575.98,26108563,99.68,0.01,0.02,0.55,562.97,3574.96,26108564,99.83,0.01,0.03,0.14,562.71,3575.23,26108565,99.71,0,0.02,0.33,562.69,3575.27,26108566,99.79,0,0.02,0.14,562.68,3575.27,26108567,99.81,0.01,0.03,0.15,562.71,3575.24,26108568,99.68,0.01,0.02,0.56,563.74,3574.2,26108569,99.84,0.01,0.02,0.15,563.41,3574.53,26108570,99.71,0.01,0.03,0.32,562.23,3575.72,26108571,99.89,0.01,0.03,0.17,562.16,3575.8,26108572,99.8,0.05,0.18,0.16,561.84,3576.11,26108573,99.67,0.01,0.02,0.65,559.45,3578.54,26108574,99.84,0.01,0.03,0.15,559.21,3578.78,26108575,99.65,0.03,0.07,0.38,559.22,3578.78,26108576,99.84,0,0.02,0.15,559.21,3578.78,26108577,99.87,0.01,0.02,0.15,559.17,3578.82,26108578,99.72,0.01,0.02,0.41,559.79,3578.19,26108579,99.89,0,0.02,0.3,559.69,3578.28,26108580,99.61,0,0.02,0.32,559.92,3578.07,26108581,99.84,0.01,0.02,0.16,559.96,3578.03,26108582,99.85,0.01,0.02,0.14,559.58,3578.4,26108583,99.73,0,0.02,0.5,559.16,3578.82,26108584,99.84,0.01,0.02,0.21,558.7,3579.27,26108585,99.67,0.01,0.02,0.34,559.46,3578.54,26108586,99.83,0.01,0.03,0.13,559.42,3578.57,26108587,99.87,0,0.02,0.16,559.44,3578.55,26108588,99.73,0.01,0.03,0.4,560.01,3577.97,26108589,99.69,0,0.02,0.48,559.41,3578.54,26108590,99.63,0.11,0.29,0.48,560.41,3577.46,26108591,99.86,0.02,0.05,0.3,560.71,3577.07,26108592,99.87,0.03,0.05,0.25,560.72,3577.06,26108593,83.26,0.01,0.05,7,619.52,3517.49,26108594,99.86,0,0.02,0.41,505.08,3632,26108595,99.68,0,0.02,0.34,504.81,3632.3,26108596,99.82,0,0.02,0.14,504.86,3632.24,26108597,99.82,0.01,0.02,0.2,504.82,3632.28,26108598,99.73,0,0.02,0.32,505.18,3631.94,26108599,99.88,0,0.02,0.38,505.05,3632.08,26108600,99.8,0.01,0.02,0.31,504.81,3632.36,26108601,99.83,0,0.02,0.18,504.75,3632.41,26108602,99.88,0.01,0.03,0.16,504.6,3632.56,26108603,99.87,0,0.02,0.15,504.58,3632.58,26108604,99.73,0,0.02,0.58,505.15,3632,26108605,99.72,0.01,0.03,0.36,504.33,3632.84,26108606,99.9,0.01,0.03,0.16,504.36,3632.82,26108607,99.9,0,0.02,0.14,504.35,3632.83,26108608,99.88,0,0.02,0.15,504.11,3633.06,26108609,99.74,0,0.02,0.54,504.65,3632.51,26108610,99.74,0.01,0.02,0.32,504.56,3632.62,26108611,99.9,0.01,0.02,0.19,504.58,3632.59,26108612,99.85,0,0.02,0.14,504.56,3632.61,26108613,99.81,0,0.02,0.14,504.57,3632.59,26108614,99.72,0,0.02,0.54,505.37,3631.78,26108615,99.76,0.01,0.02,0.32,505.05,3632.12,26108616,99.86,0.01,0.03,0.16,505.1,3632.07,26108617,99.84,0,0.02,0.14,505.07,3632.09,26108618,99.85,0,0.02,0.16,505.06,3632.1,26108619,99.57,0,0.02,0.63,505.47,3631.67,26108620,99.66,0,0.02,0.37,504.79,3632.36,26108621,99.85,0.01,0.02,0.15,504.82,3632.32,26108622,99.86,0,0.02,0.16,504.75,3632.39,26108623,99.8,0,0.02,0.14,504.82,3632.32,26108624,99.66,0,0.02,0.57,504.95,3632.18,26108625,99.62,0.01,0.02,0.33,503.45,3633.7,26108626,99.88,0,0.02,0.13,503.35,3633.8,26108627,99.85,0,0.02,0.16,503.3,3633.84,26108628,99.86,0.01,0.02,0.14,503.36,3633.78,26108629,99.69,0,0.02,0.44,503.86,3633.28,26108630,99.73,0,0.02,0.46,504.35,3632.79,26108631,99.87,0.01,0.03,0.18,504.31,3632.83,26108632,99.87,0,0.02,0.14,504.29,3632.84,26108633,99.81,0,0.02,0.14,504.31,3632.83,26108634,99.68,0.01,0.03,0.36,504.64,3632.49,26108635,99.74,0,0.02,0.52,505.32,3631.83,26108636,99.84,0.01,0.03,0.18,505.3,3631.84,26108637,99.83,0,0.02,0.15,505.3,3631.83,26108638,99.83,0,0.02,0.15,505.31,3631.83,26108639,99.86,0,0.02,0.16,505.28,3631.85,26108640,99.5,0,0.02,0.75,505.74,3631.4,26108641,99.82,0.01,0.02,0.16,505.02,3632.12,26108642,99.83,0.01,0.03,0.15,505.06,3632.07,26108643,99.86,0,0.02,0.16,505.03,3632.1,26108644,99.8,0,0.02,0.14,505.03,3632.09,26108645,99.59,0,0.02,0.79,505.75,3631.39,26108646,99.81,0.01,0.02,0.19,505.29,3631.84,26108647,99.84,0.01,0.02,0.2,505.26,3631.87,26108648,99.81,0,0.02,0.2,505.23,3631.89,26108649,99.58,0,0.02,0.32,505.32,3631.77,26108650,99.52,0.01,0.02,0.73,505.26,3631.85,26108651,99.78,0,0.02,0.17,504.83,3632.28,26108652,99.83,0,0.02,0.14,504.79,3632.32,26108653,99.66,0,0.02,0.17,504.8,3632.3,26108654,99.69,0,0.02,0.15,504.76,3632.35,26108655,99.33,0,0.02,0.73,505.37,3631.76,26108656,99.75,0,0.02,0.16,504.55,3632.57,26108657,99.77,0.01,0.02,0.19,504.54,3632.58,26108658,99.8,0,0.02,0.14,504.54,3632.59,26108659,99.76,0,0.02,0.14,504.52,3632.6,26108660,99.6,0,0.02,0.66,505.37,3631.77,26108661,99.75,0,0.02,0.26,504.91,3632.23,26108662,99.78,0,0.02,0.14,504.79,3632.34,26108663,99.77,0,0.02,0.15,504.78,3632.34,26108664,99.73,0,0.02,0.16,504.78,3632.34,26108665,99.5,0,0.02,0.71,505.24,3631.9,26108666,99.77,0,0.02,0.15,504.55,3632.59,26108667,99.76,0,0.02,0.16,504.54,3632.6,26108668,99.8,0,0.02,0.16,504.56,3632.57,26108669,99.8,0,0.02,0.18,504.49,3632.63,26108670,99.58,0.01,0.02,0.45,504.94,3632.2,26108671,99.77,0,0.02,0.41,505.26,3631.87,26108672,99.77,0,0.01,0.14,505.3,3631.83,26108673,99.77,0,0.02,0.14,505.22,3631.9,26108674,99.78,0,0.01,0.14,505.25,3631.87,26108675,99.4,0,0.02,0.32,505.05,3632.09,26108676,99.62,0,0.01,0.62,505.58,3631.56,26108677,99.81,0,0.02,0.15,505.32,3631.81,26108678,99.76,0,0.02,0.16,505.23,3631.9,26108679,99.71,0,0.02,0.29,505.56,3631.54,26108680,99.68,0,0.02,0.32,505.49,3631.63,26108681,99.68,0,0.01,0.57,505.72,3631.39,26108682,99.8,0,0.01,0.16,505.24,3631.86,26108683,99.79,0,0.01,0.14,505.26,3631.84,26108684,99.78,0,0.02,0.15,505.26,3631.86,26108685,99.73,0,0.02,0.32,505.23,3631.91,26108686,99.68,0,0.02,0.57,505.64,3631.49,26108687,99.76,0,0.02,0.14,505.18,3631.94,26108688,99.78,0,0.02,0.14,505.27,3631.84,26108689,99.81,0,0.02,0.17,505.19,3631.92,26108690,99.71,0,0.01,0.32,505.07,3632.06,26108691,99.65,0,0.02,0.55,504.73,3632.39,26108692,99.81,0,0.02,0.16,504.25,3632.86,26108693,99.81,0,0.01,0.16,504.29,3632.82,26108694,99.81,0,0.01,0.16,504.2,3632.9,26108695,99.67,0,0.01,0.41,504.55,3632.57,26108696,99.66,0,0.01,0.57,505.15,3631.97,26108697,99.83,0,0.01,0.14,504.45,3632.65,26108698,99.81,0,0.02,0.14,504.53,3632.56,26108699,99.78,0,0.04,0.17,504.46,3632.63,26108700,99.51,0,0.02,0.34,504.77,3632.34,26108701,99.65,0.01,0.02,0.57,505.06,3632.05,26108702,99.79,0.01,0.02,0.14,504.76,3632.34,26108703,99.8,0,0.02,0.15,504.7,3632.39,26108704,99.73,0,0.02,0.14,504.74,3632.35,26108705,99.7,0,0.01,0.37,504.2,3632.91,26108706,99.65,0.01,0.02,0.43,504.67,3632.43,26108707,99.81,0,0.01,0.29,504.44,3632.66,26108708,99.82,0,0.02,0.14,504.49,3632.6,26108709,99.62,0,0.02,0.29,504.95,3632.12,26108710,99.54,0.01,0.02,0.34,503.12,3633.97,26108711,99.82,0,0.02,0.16,503,3634.08,26108712,99.69,0,0.02,0.55,505.12,3631.96,26108713,99.79,0,0.01,0.19,504.72,3632.36,26108714,99.77,0,0.02,0.22,504.72,3632.36,26108715,99.66,0,0.01,0.38,504.52,3632.58,26108716,99.78,0,0.01,0.18,504.43,3632.67,26108717,99.61,0.01,0.02,0.67,504.72,3632.38,26108718,99.77,0,0.02,0.15,503.94,3633.16,26108719,99.82,0,0.01,0.18,504.03,3633.06,26108720,99.71,0,0.02,0.32,504.45,3632.66,26108721,99.81,0,0.02,0.18,504.63,3632.47,26108722,99.66,0,0.01,0.56,504.93,3632.17,26108723,99.78,0,0.02,0.14,504.46,3632.64,26108724,99.82,0,0.01,0.17,504.52,3632.57,26108725,99.73,0,0.02,0.32,504.7,3632.4,26108726,99.83,0,0.01,0.17,504.79,3632.31,26108727,99.65,0,0.02,0.54,504.74,3632.35,26108728,99.78,0,0.02,0.16,504.26,3632.84,26108729,99.81,0,0.02,0.15,504.22,3632.87,26108730,99.68,0,0.01,0.33,503.74,3633.37,26108731,99.8,0,0.02,0.14,503.78,3633.32,26108732,99.66,0,0.01,0.52,504.63,3632.46,26108733,99.8,0,0.01,0.18,505.02,3632.06,26108734,99.82,0,0.01,0.15,504.95,3632.14,26108735,99.64,0,0.02,0.33,503.52,3633.59,26108736,99.79,0,0.02,0.16,503.5,3633.6,26108737,99.64,0,0.01,0.59,504.18,3632.91,26108738,99.8,0,0.02,0.14,504.75,3632.34,26108739,99.63,0,0.02,0.32,504.67,3632.39,26108740,99.69,0,0.02,0.33,504.79,3632.29,26108741,99.81,0,0.02,0.16,504.7,3632.36,26108742,99.66,0.01,0.02,0.52,505.15,3631.92,26108743,99.79,0,0.02,0.2,504.94,3632.12,26108744,99.81,0,0.02,0.15,504.97,3632.08,26108745,99.66,0,0.01,0.34,504.74,3632.33,26108746,99.79,0,0.01,0.16,504.7,3632.37,26108747,99.81,0,0.01,0.14,504.76,3632.31,26108748,99.6,0,0.02,0.56,504.68,3632.37,26108749,99.78,0,0.02,0.16,504.02,3633.04,26108750,99.67,0,0.02,0.32,503.25,3633.82,26108751,99.77,0,0.01,0.14,503.25,3633.82,26108752,99.82,0,0.02,0.15,503.23,3633.84,26108753,99.67,0,0.01,0.55,504.76,3632.3,26108754,99.42,0,0.01,0.3,504.68,3632.37,26108755,99.63,0,0.02,0.34,504.91,3632.16,26108756,99.71,0,0.02,0.16,505.04,3632.03,26108757,99.78,0,0.02,0.14,504.95,3632.11,26108758,99.61,0,0.01,0.55,505.65,3631.41,26108759,99.8,0,0.01,0.16,504.97,3632.08,26108760,99.56,0,0.01,0.32,505.19,3631.9,26108761,99.75,0,0.02,0.13,505.26,3631.82,26108762,99.73,0,0.02,0.16,505.18,3631.9,26108763,94.87,0.33,0.03,80.23,520.31,3617.09,26108764,99.63,0,0.02,185.11,507.44,3629.39,26108765,99.62,0,0.01,0.32,507.28,3629.56,26108766,99.72,0.01,0.02,0.14,507.19,3629.66,26108767,99.56,0,0.01,0.16,507.27,3629.57,26108768,99.63,0,0.01,0.6,506.55,3630.3,26108769,99.68,0,0.02,0.28,504.77,3632.08,26108770,99.71,0.01,0.02,0.34,505.33,3631.53,26108771,99.75,0,0.01,0.16,505.25,3631.61,26108772,99.79,0,0.02,0.14,505.34,3631.51,26108773,99.57,0.08,2.97,0.63,505.55,3631.29,26108774,99.72,0.03,1.1,0.37,505.06,3631.78,26108775,99.64,0,0.02,0.31,505.24,3631.62,26108776,99.78,0,0.01,0.16,505.28,3631.58,26108777,99.8,0.01,0.02,0.18,505.05,3631.8,26108778,99.61,0.02,0.94,0.6,505.7,3631.14,26108779,99.76,0,0.02,0.28,505.3,3631.54,26108780,99.66,0,0.01,0.31,505,3631.86,26108781,99.77,0,0.01,0.18,504.85,3632.01,26108782,99.76,0,0.02,0.18,504.51,3632.34,26108783,99.75,0,0.01,0.15,504.53,3632.32,26108784,99.63,0,0.01,0.58,505.26,3631.57,26108785,99.7,0,0.01,0.33,505.01,3631.85,26108786,99.8,0,0.02,0.16,505.02,3631.83,26108787,99.77,0,0.02,0.14,505.01,3631.84,26108788,99.8,0,0.02,0.16,504.99,3631.86,26108789,99.63,0,0.02,0.54,505.36,3631.48,26108790,99.64,0,0.01,0.33,505.23,3631.63,26108791,99.78,0,0.02,0.14,505.29,3631.57,26108792,99.76,0,0.02,0.16,505.23,3631.62,26108793,99.79,0,0.02,0.14,505.3,3631.54,26108794,99.64,0,0.02,0.58,505,3631.84,26108795,99.51,0,0.02,0.34,504.11,3632.75,26108796,99.77,0,0.01,0.16,504.01,3632.85,26108797,99.8,0,0.01,0.14,504.04,3632.8,26108798,99.79,0,0.01,0.16,504.04,3632.8,26108799,99.47,0,0.02,0.7,505.02,3631.8,26108800,99.68,0,0.02,0.37,504.81,3632.02,26108801,99.77,0,0.02,0.14,504.72,3632.11,26108802,99.78,0,0.02,0.14,504.81,3632.02,26108803,99.79,0.02,0.16,0.18,504.74,3632.08,26108804,99.64,0,0.01,0.61,505.3,3631.5,26108805,99.68,0.01,0.02,0.32,505.27,3631.55,26108806,99.76,0,0.02,0.16,505.2,3631.62,26108807,99.78,0.01,0.04,0.18,505.27,3631.55,26108808,99.76,0,0.02,0.16,505.21,3631.6,26108809,99.63,0,0.02,0.55,505.56,3631.24,26108810,99.61,0,0.02,0.32,504.97,3631.85,26108811,99.83,0,0.02,0.15,505.06,3631.76,26108812,99.88,0,0.01,0.19,504.97,3631.84,26108813,99.87,0.01,0.03,0.17,504.98,3631.82,26108814,99.72,0.06,3.98,0.84,505.39,3631.39,26108815,99.76,0,0.02,0.4,504.06,3632.73,26108816,99.88,0,0.01,0.13,503.97,3632.82,26108817,99.88,0,0.01,0.17,504,3632.78,26108818,99.87,0,0.02,0.15,503.98,3632.78,26108819,99.73,0,0.02,0.43,504.73,3632.03,26108820,99.42,0,0.01,0.43,503.76,3633.01,26108821,99.8,0.01,0.02,0.16,503.68,3633.09,26108822,99.83,0,0.01,0.14,503.78,3632.99,26108823,99.81,0,0.01,0.15,503.71,3633.05,26108824,99.87,0,0.01,0.16,503.7,3633.06,26108825,99.53,0,0.01,0.73,505.99,3630.78,26108826,99.81,0.01,0.02,0.14,505.42,3631.34,26108827,99.83,0,0.01,0.15,505.51,3631.25,26108828,98.77,0,0.02,0.14,505.44,3631.32,26108829,99.64,0,0.02,0.29,505.22,3631.52,26108830,99.53,0.01,0.02,0.72,505.4,3631.35,26108831,99.86,0,0.01,0.17,505.19,3631.55,26108832,99.84,0,0.01,0.14,505.23,3631.52,26108833,99.88,0,0.02,0.16,505.15,3631.59,26108834,99.72,0,0.01,0.16,505.25,3631.49,26108835,99.57,0,0.01,0.72,505.78,3630.97,26108836,99.88,0,0.02,0.16,505.45,3631.29,26108837,99.82,0,0.02,0.18,505.69,3631.06,26108838,99.85,0,0.02,0.16,505.65,3631.09,26108839,99.85,0,0.02,0.15,505.7,3631.03,26108840,99.64,0,0.02,0.73,506.26,3630.49,26108841,99.89,0,0.02,0.2,505.55,3631.2,26108842,99.85,0,0.02,0.14,505.17,3631.57,26108843,99.88,0,0.02,0.14,505.25,3631.49,26108844,99.89,0.01,0.02,0.15,505.18,3631.55,26108845,99.66,0,0.02,0.76,505.82,3630.93,26108846,99.88,0,0.01,0.16,504.46,3632.29,26108847,99.89,0.01,0.02,0.14,504.46,3632.28,26108848,99.87,0,0.02,0.16,504.46,3632.28,26108849,99.88,0,0.01,0.14,504.43,3632.3,26108850,99.6,0,0.02,0.6,505.08,3631.66,26108851,99.86,0,0.02,0.29,504.68,3632.06,26108852,99.83,0,0.02,0.18,504.74,3632,26108853,99.88,0,0.02,0.14,504.65,3632.09,26108854,99.88,0,0.02,0.14,504.73,3632.02,26108855,99.6,0,0.02,0.75,504.8,3631.96,26108856,99.88,0,0.02,0.17,504.52,3632.24,26108857,99.8,0,0.02,0.16,504.45,3632.3,26108858,99.88,0,0.01,0.14,504.46,3632.28,26108859,99.59,0,0.01,0.29,504,3632.72,26108860,99.59,0,0.02,0.55,504.36,3632.37,26108861,99.86,0,0.01,0.39,504.74,3632,26108862,99.82,0,0.02,0.18,504.65,3632.07,26108863,99.88,0,0.01,0.16,504.74,3631.98,26108864,99.87,0,0.02,0.16,504.65,3632.07,26108865,99.65,0,0.01,0.32,504.28,3632.46,26108866,99.75,0,0.01,0.6,505.57,3631.17,26108867,99.86,0,0.02,0.17,504.92,3631.81,26108868,99.9,0,0.02,0.16,504.94,3631.78,26108869,99.87,0,0.01,0.17,504.88,3631.84,26108870,99.8,0,0.02,0.38,504.02,3632.72,26108871,99.76,0,0.02,0.58,505.02,3631.71,26108872,99.88,0,0.02,0.16,504.75,3631.97,26108873,99.89,0,0.02,0.17,504.66,3632.06,26108874,99.87,0,0.02,0.17,504.74,3631.98,26108875,99.75,0,0.02,0.36,504.68,3632.05,26108876,99.7,0,0.02,0.48,504.96,3631.77,26108877,99.9,0,0.01,0.28,504.45,3632.28,26108878,99.89,0,0.01,0.21,504.44,3632.28,26108879,99.86,0,0.02,0.21,504.46,3632.25,26108880,99.61,0,0.01,0.42,504.65,3632.08,26108881,99.71,0.01,0.02,0.43,505.1,3631.64,26108882,99.81,0,0.02,0.32,504.66,3632.07,26108883,99.85,0,0.01,0.16,504.71,3632.02,26108884,99.86,0,0.02,0.18,504.68,3632.06,26108885,99.8,0,0.01,0.34,504.92,3631.84,26108886,99.75,0,0.01,0.53,505.23,3631.52,26108887,99.9,0,0.01,0.21,504.65,3632.1,26108888,99.86,0,0.01,0.15,504.75,3631.99,26108889,99.79,0,0.02,0.32,504.69,3632.02,26108890,99.75,0.01,0.02,0.34,504.71,3632.02,26108891,99.72,0,0.01,0.4,505.43,3631.3,26108892,99.88,0,0.01,0.3,504.89,3631.83,26108893,99.81,0,0.02,0.14,504.99,3631.73,26108894,99.83,0,0.02,0.15,504.91,3631.82,26108895,99.63,0,0.02,0.33,504.74,3632.01,26108896,99.66,0,0.02,0.34,505.2,3631.55,26108897,99.84,0.01,0.02,0.4,504.95,3631.79,26108898,99.88,0,0.02,0.14,504.94,3631.8,26108899,99.85,0,0.02,0.14,504.91,3631.82,26108900,99.71,0,0.02,0.33,504.96,3631.79,26108901,99.79,0,0.01,0.18,504.7,3632.05,26108902,99.7,0,0.01,0.54,504.2,3632.55,26108903,99.85,0,0.02,0.16,503.67,3633.07,26108904,99.83,0,0.02,0.15,503.71,3633.02,26108905,99.78,0,0.01,0.36,504.95,3631.8,26108906,99.86,0,0.02,0.15,504.93,3631.82,26108907,99.75,0,0.01,0.56,505.33,3631.41,26108908,99.85,0,0.02,0.14,504.9,3631.84,26108909,99.85,0,0.02,0.17,504.98,3631.75,26108910,99.67,0,0.02,0.33,504.68,3632.07,26108911,99.86,0,0.01,0.14,504.73,3632.02,26108912,99.65,0,0.02,0.56,504.16,3632.58,26108913,99.81,0,0.02,0.15,503.45,3633.28,26108914,99.87,0,0.02,0.15,503.45,3633.28,26108915,99.69,0,0.02,0.32,504.88,3631.87,26108916,99.85,0,0.01,0.16,504.96,3631.78,26108917,99.78,0,0.02,0.51,504.86,3631.88,26108918,99.9,0,0.02,0.2,504.23,3632.51,26108919,99.71,0,0.01,0.29,504.86,3631.85,26108920,99.77,0.01,0.03,0.32,504.98,3631.75,26108921,99.87,0,0.02,0.19,504.93,3631.79,26108922,99.74,0,0.01,0.55,505.49,3631.23,26108923,99.88,0,0.01,0.14,505.18,3631.53,26108924,99.85,0,0.02,0.14,505.16,3631.55,26108925,99.7,0,0.01,0.34,504.98,3631.74,26108926,99.87,0,0.02,0.14,504.89,3631.83,26108927,99.69,0,0.02,0.42,505.27,3631.45,26108928,99.88,0,0.01,0.29,504.65,3632.06,26108929,99.87,0,0.02,0.14,504.7,3632,26108930,99.79,0,0.01,0.34,504.94,3631.79,26108931,99.88,0,0.02,0.15,504.9,3631.82,26108932,99.7,0,0.02,0.43,505.32,3631.4,26108933,99.86,0,0.01,0.3,504.87,3631.84,26108934,99.87,0,0.02,0.15,504.96,3631.74,26108935,99.73,0,0.02,0.34,504.9,3631.82,26108936,99.85,0,0.02,0.15,504.99,3631.74,26108937,99.75,0,0.02,0.16,505.22,3631.5,26108938,99.83,0,0.01,0.54,505.28,3631.43,26108939,99.85,0,0.02,0.2,504.95,3631.76,26108940,98.18,0,0.02,10.15,504.76,3631.07,26108941,99.83,0,0.02,0.16,504.71,3631.12,26108942,99.89,0,0.02,0.14,504.63,3631.21,26108943,99.72,0.01,0.03,0.62,505.25,3630.57,26108944,99.86,0,0.02,0.18,504.82,3630.97,26108945,99.64,0,0.01,0.34,503.99,3631.84,26108946,99.82,0.01,0.02,0.14,503.88,3631.95,26108947,99.85,0,0.02,0.16,503.92,3631.9,26108948,99.75,0,0.02,0.56,504.85,3630.97,26108949,99.68,0,0.02,0.3,505.14,3630.67,26108950,99.8,0.01,0.02,0.32,505.37,3630.46,26108951,99.88,0,0.02,0.14,505.4,3630.42,26108952,99.88,0,0.02,0.15,505.39,3630.42,26108953,99.74,0,0.02,0.57,505.58,3630.23,26108954,99.85,0,0.01,0.16,505.16,3630.66,26108955,99.65,0,0.01,0.32,505.12,3630.73,26108956,99.81,0,0.02,0.16,505.2,3630.64,26108957,99.85,0,0.02,0.19,505.11,3630.72,26108958,99.7,0,0.01,0.41,505.99,3629.84,26108959,99.89,0,0.02,0.29,505.4,3630.42,26108960,99.69,0,0.02,0.32,505.43,3630.41,26108961,99.83,0,0.02,0.22,505.43,3630.41,26108962,99.87,0,0.01,0.18,505.36,3630.47,26108963,99.74,0,0.02,0.43,505.99,3629.85,26108964,99.87,0,0.02,0.28,505.36,3630.5,26108965,99.72,0,0.02,0.37,505.45,3630.43,26108966,99.85,0,0.02,0.16,505.4,3630.48,26108967,99.88,0,0.01,0.14,505.42,3630.44,26108968,99.63,0,0.01,0.56,505.81,3630.05,26108969,99.87,0,0.01,0.18,505.37,3630.49,26108970,99.63,0,0.02,0.37,504.52,3631.36,26108971,99.8,0,0.01,0.14,504.42,3631.45,26108972,99.84,0,0.01,0.14,504.48,3631.39,26108973,99.73,0,0.02,0.57,504.96,3630.91,26108974,99.85,0,0.01,0.14,505.35,3630.51,26108975,99.69,0,0.02,0.33,504.29,3631.58,26108976,99.89,0,0.02,0.17,504.16,3631.71,26108977,99.83,0,0.01,0.14,504.21,3631.66,26108978,99.86,0,0.01,0.15,504.18,3631.69,26108979,99.28,0,0.02,0.71,505.93,3629.89,26108980,99.76,0,0.01,0.37,505.43,3630.4,26108981,99.88,0,0.02,0.16,505.39,3630.45,26108982,99.85,0,0.01,0.15,505.45,3630.38,26108983,99.88,0,0.02,0.14,505.36,3630.46,26108984,99.75,0,0.02,0.57,506.11,3629.7,26108985,99.75,0,0.01,0.39,505.67,3630.16,26108986,99.87,0,0.01,0.18,505.63,3630.19,26108987,99.83,0,0.02,0.14,505.7,3630.12,26108988,99.86,0,0.02,0.16,505.61,3630.21,26108989,99.73,0,0.02,0.56,506.13,3629.68,26108990,99.77,0,0.02,0.34,505.63,3630.2,26108991,99.88,0,0.02,0.16,505.69,3630.13,26108992,99.85,0,0.02,0.14,505.61,3630.21,26108993,99.85,0,0.01,0.15,505.68,3630.14,26108994,99.75,0,0.01,0.51,505.77,3630.04,26108995,99.77,0,0.01,0.4,505.16,3630.67,26108996,99.88,0,0.02,0.16,505.18,3630.64,26108997,99.83,0,0.01,0.14,505.1,3630.72,26108998,99.85,0,0.01,0.15,505.19,3630.63,26108999,99.73,0,0.02,0.5,505.61,3630.2,26109000,99.6,0,0.01,0.43,504.91,3630.91,26109001,99.8,0.01,0.02,0.15,504.94,3630.88,26109002,99.81,0,0.02,0.16,504.88,3630.93,26109003,99.78,0,0.02,0.15,504.96,3630.85,26109004,99.68,0,0.02,0.58,505.22,3630.59,26109005,99.73,0,0.02,0.3,503.75,3632.08,26109006,99.85,0.01,0.02,0.16,503.66,3632.16,26109007,99.85,0,0.02,0.14,503.71,3632.11,26109008,99.85,0,0.01,0.16,503.67,3632.14,26109009,99.52,0,0.01,0.7,504.97,3630.81,26109010,93.01,0.01,0.01,0.24,503.81,3631.99,26109011,99.83,0,0.01,0.14,503.63,3632.17,26109012,99.9,0,0.01,0.16,503.67,3632.12,26109013,99.82,0,0.01,0.14,503.68,3632.11,26109014,99.84,0,0.02,0.17,503.6,3632.19,26109015,99.52,0,0.02,0.72,504.56,3631.24,26109016,99.89,0,0.01,0.18,503.87,3631.93,26109017,99.85,0.01,0.02,0.23,503.96,3631.84,26109018,99.81,0,0.01,0.15,503.92,3631.87,26109019,99.88,0,0.02,0.16,503.91,3631.87,26109020,99.66,0,0.02,0.75,505.21,3630.59,26109021,99.88,0,0.01,0.21,504.65,3631.14,26109022,99.87,0,0.01,0.15,504.45,3631.34,26109023,99.88,0,0.02,0.15,504.37,3631.42,26109024,99.89,0,0.02,0.14,504.41,3631.37,26109025,99.45,0,0.02,0.72,504.82,3630.98,26109026,99.84,0,0.02,0.16,504.63,3631.17,26109027,99.88,0,0.02,0.17,504.66,3631.15,26109028,99.83,0,0.02,0.14,504.6,3631.2,26109029,99.8,0,0.02,0.16,504.67,3631.13,26109030,99.49,0,0.01,0.72,504.64,3631.17,26109031,99.87,0,0.01,0.16,504.4,3631.4,26109032,99.81,0,0.01,0.15,504.39,3631.41,26109033,99.86,0,0.02,0.16,504.36,3631.44,26109034,99.88,0,0.01,0.15,504.43,3631.37,26109035,99.6,0,0,0.77,505.27,3630.54,26109036,99.88,0,0,0.15,504.62,3631.19,26109037,99.89,0,0,0.14,504.61,3631.2,26109038,99.94,0,0,0.14,504.57,3631.23,26109039,99.75,0,0,0.31,505.06,3630.71,26109040,99.59,0,0,0.75,505.15,3630.65,26109041,99.87,0,0,0.19,504.97,3630.82,26109042,99.88,0,0,0.15,504.95,3630.84,26109043,99.91,0,0,0.14,504.93,3630.85,26109044,99.93,0,0,0.15,504.91,3630.87,26109045,99.67,0,0,0.54,505.62,3630.17,26109046,99.88,0,0,0.32,504.15,3631.64,26109047,99.88,0,0,0.18,504.14,3631.64,26109048,99.88,0,0.01,0.18,504.1,3631.68,26109049,99.88,0,0,0.17,504.07,3631.7,26109050,99.75,0,0,0.25,505.07,3630.72,26109051,99.73,0,0,0.6,505.65,3630.13,26109052,99.91,0,0,0.16,504.95,3630.84,26109053,99.93,0,0,0.16,504.94,3630.85,26109054,99.91,0,0,0.14,504.91,3630.87,26109055,99.77,0,0,0.27,503.96,3631.83,26109056,99.69,0,0,0.62,505.39,3630.41,26109057,99.9,0,0,0.15,505.1,3630.68,26109058,99.91,0,0,0.14,505.1,3630.69,26109059,99.86,0,0,0.16,505.08,3630.7,26109060,99.77,0,0,0.28,505.32,3630.48,26109061,99.76,0,0,0.58,505.37,3630.42,26109062,99.88,0,0,0.13,504.94,3630.84,26109063,99.89,0,0,0.16,504.95,3630.82,26109064,99.86,0,0,0.16,504.93,3630.84,26109065,99.83,0,0,0.29,505.17,3630.61,26109066,99.74,0,0,0.54,504.94,3630.85,26109067,99.92,0,0,0.19,504.14,3631.64,26109068,99.91,0,0,0.14,504.13,3631.64,26109069,99.7,0,0,0.31,503.63,3632.12,26109070,99.69,0,0,0.26,504.58,3631.18,26109071,99.74,0,0,0.43,505.16,3630.6,26109072,99.88,0,0,0.3,505.05,3630.7,26109073,99.92,0,0,0.14,505.04,3630.71,26109074,99.85,0,0,0.14,505.07,3630.68,26109075,99.76,0,0,0.3,505.21,3630.56,26109076,99.77,0,0,0.44,505.88,3629.9,26109077,99.17,0,0,0.32,504.9,3630.87,26109078,99.89,0,0,0.15,504.9,3630.87,26109079,99.84,0,0,0.19,504.87,3630.9,26109080,99.64,0,0,0.26,505.11,3630.67,26109081,99.68,0,0,0.43,505.4,3630.38,26109082,99.85,0,0,0.3,504.82,3630.96,26109083,99.85,0,0,0.14,504.8,3630.97,26109084,99.9,0,0,0.15,504.79,3630.97,26109085,99.74,0,0,0.26,504.32,3631.46,26109086,99.91,0,0,0.16,504.2,3631.58,26109087,99.77,0,0,0.55,505.21,3630.56,26109088,99.9,0,0,0.15,504.9,3630.88,26109089,99.9,0,0,0.15,504.87,3630.91,26109090,99.7,0,0,0.24,504.41,3631.4,26109091,99.94,0,0,0.16,504.36,3631.44,26109092,99.71,0,0,0.56,505.39,3630.41,26109093,99.9,0,0,0.14,505.06,3630.73,26109094,99.91,0,0,0.15,505.05,3630.73,26109095,99.76,0,0,0.25,505.28,3630.52,26109096,99.87,0,0,0.14,505.37,3630.43,26109097,99.73,0,0,0.59,505.61,3630.18,26109098,99.88,0,0,0.16,505.18,3630.61,26109099,99.69,0,0,0.28,505.39,3630.38,26109100,99.76,0,0,0.26,505.39,3630.39,26109101,99.9,0,0,0.16,505.37,3630.41,26109102,99.72,0,0,0.55,505.85,3629.91,26109103,99.88,0,0,0.16,505.56,3630.2,26109104,99.89,0,0,0.16,505.55,3630.22,26109105,99.77,0,0,0.26,505.06,3630.72,26109106,99.9,0,0,0.16,505.02,3630.76,26109107,99.76,0,0,0.55,505.26,3630.52,26109108,99.85,0,0,0.14,504.92,3630.85,26109109,99.9,0.01,0,0.14,504.94,3630.83,26109110,99.69,0.02,0.02,0.28,504.19,3631.59,26109111,99.86,0,0,0.14,504.18,3631.59,26109112,99.72,0,0,0.41,505.2,3630.57,26109113,99.86,0,0,0.29,505.62,3630.15,26109114,99.89,0,0,0.14,505.58,3630.18,26109115,99.81,0,0,0.28,504.14,3631.63,26109116,99.92,0,0,0.18,504.08,3631.69,26109117,99.75,0,0,0.33,504.71,3631.06,26109118,99.88,0,0,0.45,505.28,3630.49,26109119,99.88,0,0,0.18,505.27,3630.49,26109120,99.56,0,0,0.25,505.31,3630.47,26109121,99.84,0,0,0.14,505.44,3630.34,26109122,99.84,0,0,0.16,505.41,3630.36,26109123,99.73,0,0,0.57,505.97,3629.79,26109124,99.87,0,0,0.14,505.62,3630.14,26109125,99.8,0,0,0.27,505.39,3630.38,26109126,99.86,0,0,0.14,505.35,3630.42,26109127,99.83,0,0,0.13,505.32,3630.44,26109128,94.57,0.34,0.01,265.28,517,3618.7,26109129,99.76,0,0,0.36,507.89,3627.72,26109130,99.71,0,0,0.27,507.9,3627.72,26109131,99.85,0,0,0.16,508.04,3627.57,26109132,99.92,0,0,0.14,508.06,3627.55,26109133,99.74,0,0,0.62,506.44,3629.19,26109134,99.82,0,0,0.15,505.36,3630.32,26109135,99.66,0,0,0.26,504.87,3630.84,26109136,99.8,0,0,0.15,504.86,3630.85,26109137,99.9,0,0,0.2,505.08,3630.62,26109138,98.96,0,0,0.55,505.97,3629.72,26109139,99.91,0,0,0.16,505.27,3630.42,26109140,99.74,0,0,0.33,505.53,3630.18,26109141,99.81,0,0,0.23,505.45,3630.26,26109142,99.83,0,0,0.15,505.25,3630.45,26109143,99.66,0,0,0.51,505.77,3629.92,26109144,99.9,0,0,0.2,505.64,3630.05,26109145,99.73,0,0,0.32,505.63,3630.07,26109146,99.9,0,0,0.15,505.62,3630.08,26109147,99.89,0,0,0.16,505.58,3630.11,26109148,99.68,0,0,0.55,505.93,3629.75,26109149,99.89,0,0,0.14,505.51,3630.17,26109150,99.66,0,0,0.31,504.29,3631.41,26109151,99.78,0.01,0.01,0.16,504.35,3631.34,26109152,99.83,0,0,0.15,504.33,3631.37,26109153,99.7,0,0,0.4,504.89,3630.8,26109154,99.78,0,0,0.3,505.26,3630.42,26109155,99.53,0,0,0.28,503.88,3631.81,26109156,99.82,0,0,0.14,503.77,3631.93,26109157,99.84,0,0,0.17,503.76,3631.93,26109158,99.7,0,0,0.42,504.13,3631.56,26109159,99.61,0,0,0.45,504.55,3631.11,26109160,99.75,0,0,0.36,504.17,3631.51,26109161,99.88,0,0,0.15,504.14,3631.54,26109162,99.82,0,0,0.14,504.1,3631.57,26109163,99.84,0,0,0.14,504.1,3631.57,26109164,99.7,0,0,0.55,504.78,3630.88,26109165,99.73,0,0,0.28,503.84,3631.84,26109166,99.86,0,0,0.14,503.8,3631.87,26109167,99.85,0,0,0.16,503.78,3631.89,26109168,99.85,0,0,0.16,503.76,3631.91,26109169,99.63,0,0,0.55,504.97,3630.69,26109170,99.78,0,0,0.28,504.83,3630.85,26109171,99.87,0,0,0.13,504.88,3630.8,26109172,99.88,0,0,0.16,504.86,3630.81,26109173,99.91,0,0,0.14,504.84,3630.83,26109174,99.72,0,0,0.56,505.49,3630.17,26109175,99.72,0,0,0.26,503.85,3631.83,26109176,99.81,0,0,0.16,503.8,3631.88,26109177,99.87,0,0,0.14,503.78,3631.89,26109178,99.88,0,0,0.15,503.76,3631.91,26109179,99.74,0,0,0.57,504.49,3631.18,26109180,99.44,0,0,0.26,503.76,3631.92,26109181,99.71,0,0,0.18,503.91,3631.77,26109182,99.78,0,0,0.14,503.92,3631.75,26109183,99.85,0,0,0.15,503.89,3631.78,26109184,99.71,0,0,0.56,504.54,3631.13,26109185,99.78,0,0,0.3,504.85,3630.83,26109186,99.83,0,0,0.13,504.84,3630.83,26109187,99.85,0,0,0.17,504.81,3630.86,26109188,99.85,0,0,0.14,504.8,3630.87,26109189,99.56,0,0,0.55,505.4,3630.24,26109190,99.69,0,0,0.52,504.98,3630.68,26109191,99.87,0,0,0.14,504.74,3630.91,26109192,99.84,0,0,0.15,504.79,3630.85,26109193,99.79,0,0,0.16,504.91,3630.73,26109194,99.89,0,0,0.14,504.92,3630.72,26109195,99.56,0,0,0.67,505.32,3630.34,26109196,99.88,0,0,0.16,504.9,3630.77,26109197,99.85,0,0,0.17,504.88,3630.79,26109198,99.85,0,0,0.16,504.85,3630.82,26109199,99.84,0,0,0.14,504.83,3630.83,26109200,99.56,0,0,0.66,505.42,3630.27,26109201,99.84,0,0,0.18,504.95,3630.73,26109202,99.82,0,0,0.14,504.54,3631.13,26109203,99.85,0,0,0.15,504.56,3631.11,26109204,99.82,0,0,0.16,504.69,3630.98,26109205,99.59,0,0,0.67,505.58,3630.1,26109206,99.82,0,0,0.14,505.16,3630.52,26109207,99.8,0,0,0.18,505.14,3630.53,26109208,99.73,0,0,0.17,505.12,3630.55,26109209,99.78,0,0,0.14,505.1,3630.56,26109210,99.42,0,0,0.71,505.32,3630.35,26109211,99.76,0,0,0.17,504.85,3630.82,26109212,99.78,0,0,0.14,504.81,3630.86,26109213,99.81,0,0,0.16,504.78,3630.88,26109214,99.77,0,0,0.16,504.77,3630.89,26109215,99.58,0,0,0.7,505.76,3629.92,26109216,99.78,0,0,0.15,505.19,3630.48,26109217,99.83,0,0,0.13,505.15,3630.52,26109218,99.83,0,0,0.16,505.15,3630.52,26109219,99.65,0,0,0.3,505.13,3630.52,26109220,99.52,0,0,0.66,505.84,3629.83,26109221,99.8,0,0,0.2,504.88,3630.78,26109222,99.82,0,0,0.15,504.86,3630.8,26109223,99.81,0,0,0.15,504.83,3630.83,26109224,99.8,0,0,0.14,504.81,3630.85,26109225,99.59,0,0,0.43,505.39,3630.28,26109226,99.76,0,0,0.59,504.56,3631.09,26109227,99.8,0,0,0.17,504.63,3631.02,26109228,99.81,0,0,0.14,504.69,3630.95,26109229,99.77,0,0,0.16,504.68,3630.95,26109230,99.69,0,0,0.29,505.19,3630.47,26109231,99.64,0,0,0.58,505.29,3630.36,26109232,99.77,0,0,0.15,504.88,3630.77,26109233,99.81,0,0,0.16,504.85,3630.79,26109234,99.82,0,0,0.15,504.84,3630.8,26109235,99.66,0,0,0.28,503.15,3632.5,26109236,99.69,0,0,0.6,504.9,3630.75,26109237,99.83,0,0,0.14,504.78,3630.86,26109238,99.83,0,0,0.15,504.93,3630.7,26109239,99.83,0,0,0.14,504.93,3630.7,26109240,99.53,0,0,0.26,504.95,3630.71,26109241,99.56,0,0,0.56,505.96,3629.69,26109242,99.79,0,0,0.15,505.39,3630.26,26109243,99.77,0,0,0.14,505.36,3630.28,26109244,99.76,0,0,0.16,505.33,3630.3,26109245,99.73,0,0,0.27,505.33,3630.32,26109246,99.68,0,0,0.46,505.85,3629.8,26109247,99.83,0,0,0.28,505.29,3630.35,26109248,99.8,0,0,0.14,505.28,3630.36,26109249,99.55,0,0,0.29,505.43,3630.19,26109250,99.7,0,0,0.29,505.44,3630.19,26109251,99.68,0,0,0.47,505.76,3629.87,26109252,99.82,0,0,0.3,505.39,3630.23,26109253,99.8,0,0,0.16,505.36,3630.25,26109254,99.78,0,0,0.16,505.36,3630.27,26109255,99.68,0,0,0.3,505.35,3630.3,26109256,99.67,0,0,0.59,505.78,3629.87,26109257,99.81,0,0,0.23,505.55,3630.09,26109258,99.79,0,0,0.16,505.55,3630.09,26109259,99.68,0,0.01,0.17,505.59,3630.04,26109260,99.58,0,0.02,0.29,505.16,3630.49,26109261,99.43,0,0.02,0.45,505.51,3630.14,26109262,99.71,0,0.02,0.32,505.12,3630.51,26109263,99.69,0.01,0.02,0.17,505.12,3630.5,26109264,99.72,0.01,0.03,0.18,505.09,3630.53,26109265,99.54,0,0.02,0.31,504.66,3630.97,26109266,99.62,0,0.02,0.17,504.63,3631.01,26109267,99.54,0.01,0.03,0.61,506.13,3629.5,26109268,99.69,0,0.02,0.16,505.39,3630.23,26109269,99.76,0.01,0.02,0.17,505.33,3630.29,26109270,99.63,0,0.02,0.35,505.44,3630.2,26109271,99.7,0,0.02,0.16,505.34,3630.31,26109272,99.6,0,0.02,0.57,505.95,3629.72,26109273,99.79,0,0.01,0.17,505.56,3630.1,26109274,99.78,0,0.01,0.21,505.67,3629.99,26109275,99.63,0,0.02,0.34,505.6,3630.07,26109276,99.8,0,0.02,0.2,505.64,3630.03,26109277,99.6,0,0.02,0.6,505.97,3629.7,26109278,99.76,0,0.01,0.17,505.6,3630.06,26109279,99.59,0,0.02,0.32,505.61,3630.03,26109280,99.6,0,0.01,0.29,504.65,3631,26109281,99.82,0,0.01,0.17,504.66,3630.99,26109282,99.63,0,0.01,0.58,505.27,3630.37,26109283,99.76,0,0.01,0.17,505.03,3630.6,26109284,99.72,0,0.01,0.2,505.14,3630.49,26109285,99.61,0,0.01,0.32,505.59,3630.06,26109286,99.75,0,0.01,0.16,505.54,3630.11,26109287,99.62,0,0.01,0.59,506.19,3629.46,26109288,99.77,0,0,0.16,505.65,3629.98,26109289,99.79,0,0,0.17,505.64,3629.99,26109290,99.7,0,0,0.29,505.88,3629.77,26109291,99.85,0,0,0.17,505.86,3629.78,26109292,99.63,0,0,0.48,506.2,3629.44,26109293,99.81,0,0,0.31,505.58,3630.06,26109294,99.8,0,0,0.18,505.55,3630.08,26109295,99.73,0,0,0.32,505.54,3630.11,26109296,99.79,0,0,0.17,505.54,3630.11,26109297,99.65,0,0,0.43,505.65,3629.99,26109298,99.81,0,0,0.3,503.77,3631.86,26109299,99.82,0,0,0.17,503.95,3631.68,26109300,99.53,0,0,0.29,505.67,3629.98,26109301,99.79,0,0,0.18,505.66,3629.98,26109302,99.64,0,0,0.43,505.92,3629.72,26109303,99.8,0,0,0.33,504.88,3630.75,26109304,99.8,0,0,0.17,504.88,3630.75,26109305,99.68,0,0,0.33,504.87,3630.78,26109306,99.81,0,0,0.19,504.43,3631.22,26109307,99.78,0,0,0.2,503.84,3631.8,26109308,99.62,0,0,0.57,505.18,3630.46,26109309,99.6,0,0.01,0.31,504.61,3631,26109310,99.59,0.01,0.03,0.3,504.17,3631.46,26109311,99.73,0,0.02,0.16,504.16,3631.47,26109312,99.74,0.01,0.02,0.16,504.1,3631.52,26109313,99.64,0,0.02,0.56,505.22,3630.39,26109314,99.72,0,0.02,0.15,504.83,3630.78,26109315,99.66,0,0.01,0.29,503.95,3631.69,26109316,99.8,0,0,0.15,503.91,3631.73,26109317,99.79,0,0,0.2,504.11,3631.52,26109318,99.66,0,0,0.56,504.77,3630.86,26109319,99.83,0,0,0.14,504.57,3631.05,26109320,99.71,0,0,0.3,505.07,3630.57,26109321,99.79,0,0,0.18,504.99,3630.65,26109322,99.79,0,0,0.16,504.54,3631.09,26109323,99.67,0,0,0.56,505.17,3630.46,26109324,99.81,0,0,0.14,505.09,3630.53,26109325,98.38,0,0,15.88,507.82,3628.49,26109326,99.82,0,0,0.14,504.37,3631.45,26109327,99.83,0,0,0.16,504.34,3631.48,26109328,99.66,0,0,0.51,504.91,3630.91,26109329,89.69,34,0.06,186.7,523.79,3600.69,26109330,99.64,0,0,32.96,507.65,3625.07,26109331,99.79,0,0,0.15,507.66,3625.07,26109332,99.78,0,0,0.15,507.63,3625.1,26109333,99.68,0,0,0.4,508.09,3624.63,26109334,99.83,0,0,0.36,507.39,3625.34,26109335,99.67,0,0,0.29,505.12,3627.73,26109336,99.78,0,0,0.16,505.09,3627.75,26109337,99.8,0,0,0.15,505.07,3627.79,26109338,99.69,0,0,0.42,505.63,3627.24,26109339,99.75,0,0,0.41,505.05,3627.8,26109340,99.67,0,0,0.28,505.28,3627.6,26109341,99.81,0,0,0.14,505.26,3627.61,26109342,99.85,0,0,0.16,505.24,3627.63,26109343,99.78,0,0,0.14,505.22,3627.65,26109344,99.67,0,0,0.59,505.32,3627.53,26109345,99.71,0,0,0.34,505.62,3627.25,26109346,99.8,0,0,0.16,505.64,3627.22,26109347,99.81,0,0,0.13,505.61,3627.25,26109348,99.78,0,0,0.16,505.6,3627.25,26109349,99.66,0,0,0.57,505.69,3627.16,26109350,99.67,0,0,0.27,504.85,3628.01,26109351,99.8,0,0,0.16,504.82,3628.04,26109352,99.8,0,0,0.15,504.8,3628.05,26109353,99.83,0,0,0.15,504.77,3628.09,26109354,99.66,0,0,0.54,505.3,3627.55,26109355,99.73,0,0,0.31,505.05,3627.81,26109356,99.8,0,0,0.14,504.99,3627.87,26109357,99.79,0,0,0.16,505.12,3627.74,26109358,99.8,0,0,0.14,505.13,3627.72,26109359,99.65,0,0,0.59,506.03,3626.81,26109360,99.48,0,0,0.27,504.42,3628.44,26109361,99.76,0,0,0.17,504.35,3628.51,26109362,99.81,0,0,0.14,504.33,3628.52,26109363,99.83,0,0,0.16,504.3,3628.55,26109364,99.69,0,0,0.57,504.36,3628.49,26109365,99.68,0,0,0.29,504.49,3628.36,26109366,99.86,0,0,0.16,504.51,3628.35,26109367,99.89,0,0,0.15,504.49,3628.36,26109368,99.85,0,0,0.15,504.54,3628.31,26109369,99.65,0,0,0.7,505.23,3627.61,26109370,99.71,0,0,0.26,504.85,3628.01,26109371,99.85,0,0,0.14,504.86,3628,26109372,99.88,0,0,0.16,504.83,3628.03,26109373,99.82,0,0,0.14,504.82,3628.03,26109374,99.66,0,0,0.55,505.41,3627.44,26109375,99.65,0,0,0.29,504.55,3628.31,26109376,99.86,0,0,0.13,504.52,3628.34,26109377,99.9,0,0,0.21,504.5,3628.36,26109378,99.9,0,0,0.14,504.47,3628.38,26109379,99.77,0,0,0.31,504.96,3627.89,26109380,99.69,0,0,0.5,504.64,3628.23,26109381,99.9,0,0.01,0.16,504.65,3628.21,26109382,99.9,0,0,0.18,505.29,3627.57,26109383,99.8,0,0,0.17,505.28,3627.57,26109384,99.75,0,0,0.3,505.53,3627.32,26109385,99.84,0,0,0.5,504.52,3628.34,26109386,99.88,0,0,0.17,504.49,3628.37,26109387,99.9,0,0,0.14,504.48,3628.37,26109388,99.91,0,0,0.14,504.5,3628.35,26109389,99.91,0,0,0.15,504.62,3628.22,26109390,99.51,0,0,0.76,505.43,3627.43,26109391,99.88,0,0,0.16,504.6,3628.26,26109392,99.86,0,0,0.16,504.58,3628.28,26109393,99.91,0,0,0.15,504.56,3628.29,26109394,99.9,0,0,0.14,504.54,3628.31,26109395,99.6,0,0,0.73,505.71,3627.15,26109396,99.93,0,0,0.15,505.25,3627.6,26109397,99.87,0,0,0.15,505.24,3627.61,26109398,99.89,0,0,0.14,505.21,3627.63,26109399,99.86,0,0,0.28,505.2,3627.62,26109400,99.55,0,0,0.7,505.78,3627.05,26109401,99.93,0,0,0.14,505.62,3627.21,26109402,99.89,0,0,0.14,505.58,3627.25,26109403,99.91,0,0,0.17,505.58,3627.25,26109404,99.92,0,0,0.15,505.54,3627.28,26109405,99.59,0,0,0.7,505.81,3627.04,26109406,99.89,0,0,0.14,505.53,3627.32,26109407,99.89,0,0,0.17,505.51,3627.34,26109408,99.88,0,0,0.17,505.49,3627.36,26109409,99.91,0,0,0.14,505.47,3627.36,26109410,99.65,0,0,0.73,505.92,3626.94,26109411,99.88,0,0,0.21,505.43,3627.41,26109412,99.91,0,0,0.14,505.57,3627.27,26109413,99.88,0,0,0.13,505.58,3627.26,26109414,99.93,0,0,0.16,505.56,3627.28,26109415,99.7,0,0,0.62,505.91,3626.94,26109416,99.9,0,0,0.21,505.52,3627.32,26109417,99.88,0,0,0.16,505.52,3627.32,26109418,99.93,0,0,0.16,505.49,3627.35,26109419,99.94,0,0,0.14,505.48,3627.36,26109420,99.58,0,0,0.7,505.67,3627.17,26109421,99.91,0,0,0.14,505.7,3627.14,26109422,99.92,0,0,0.13,505.67,3627.17,26109423,99.93,0,0,0.16,505.66,3627.17,26109424,99.91,0,0,0.14,505.85,3626.98,26109425,99.7,0,0,0.51,505.74,3627.1,26109426,99.89,0,0,0.39,505.58,3627.26,26109427,99.91,0,0,0.14,505.57,3627.26,26109428,99.9,0,0,0.15,505.54,3627.29,26109429,99.79,0,0,0.3,505.53,3627.28,26109430,99.76,0,0,0.36,504.55,3628.27,26109431,99.74,0,0,0.55,506.34,3626.48,26109432,99.89,0,0,0.16,505.73,3627.09,26109433,99.9,0,0,0.14,505.72,3627.09,26109434,99.86,0,0,0.15,505.69,3627.12,26109435,99.68,0,0,0.29,504.76,3628.06,26109436,99.72,0,0,0.54,506.25,3626.57,26109437,99.85,0,0,0.18,505.85,3626.96,26109438,99.93,0,0,0.16,505.82,3626.99,26109439,99.86,0,0,0.14,505.81,3626.99,26109440,99.79,0,0,0.36,506.04,3626.78,26109441,99.74,0,0,0.56,506.45,3626.37,26109442,99.92,0,0,0.21,505.51,3627.3,26109443,99.92,0,0,0.16,505.51,3627.3,26109444,99.92,0,0,0.14,505.47,3627.33,26109445,99.78,0,0,0.28,505.48,3627.34,26109446,99.76,0,0,0.41,505.8,3627.01,26109447,99.88,0,0,0.28,505.44,3627.36,26109448,99.85,0,0,0.15,505.47,3627.34,26109449,99.88,0,0,0.14,505.59,3627.21,26109450,99.77,0,0,0.27,505.82,3627,26109451,99.77,0,0,0.49,506.16,3626.65,26109452,99.87,0,0,0.21,505.78,3627.02,26109453,99.85,0,0,0.14,505.77,3627.03,26109454,99.86,0,0,0.14,505.74,3627.05,26109455,99.79,0,0,0.29,505.26,3627.55,26109456,99.75,0,0,0.39,505.83,3626.98,26109457,99.9,0.02,1.13,0.41,505.5,3627.31,26109458,99.83,0.01,0.89,0.29,505.47,3627.31,26109459,99.81,0.01,0.58,0.36,505.99,3626.77,26109460,99.81,0,0.01,0.35,506.05,3626.72,26109461,99.91,0,0.01,0.16,505.82,3626.95,26109462,99.75,0,0,0.55,505.14,3627.62,26109463,99.88,0,0,0.14,504.79,3627.96,26109464,99.89,0,0,0.14,504.56,3628.2,26109465,99.83,0,0,0.29,504.05,3628.73,26109466,99.93,0,0,0.17,504.01,3628.77,26109467,99.72,0,0,0.54,504.61,3628.17,26109468,99.91,0,0,0.14,504.22,3628.56,26109469,99.85,0,0,0.14,504.21,3628.56,26109470,99.84,0,0,0.27,504.44,3628.35,26109471,99.89,0,0,0.16,504.44,3628.35,26109472,99.8,0,0,0.54,503.85,3628.93,26109473,99.88,0,0,0.16,502.85,3629.92,26109474,99.89,0,0,0.18,502.83,3629.95,26109475,99.81,0,0,0.29,503.8,3628.99,26109476,99.9,0,0,0.16,503.79,3628.99,26109477,99.76,0,0,0.53,504.29,3628.49,26109478,99.9,0,0,0.16,504,3628.78,26109479,99.9,0,0,0.14,503.99,3628.78,26109480,99.66,0,0,0.28,503.99,3628.8,26109481,99.9,0,0,0.16,503.97,3628.83,26109482,99.76,0,0,0.56,504.46,3628.34,26109483,99.91,0,0,0.16,504.17,3628.62,26109484,99.88,0,0,0.16,504.3,3628.48,26109485,99.75,0,0,0.32,504.57,3628.22,26109486,99.9,0,0,0.16,504.55,3628.24,26109487,99.78,0,0,0.51,504.31,3628.48,26109488,99.93,0,0,0.19,503.28,3629.5,26109489,99.84,0,0,0.34,504.21,3628.55,26109490,99.76,0,0,0.27,503.52,3629.25,26109491,99.92,0,0,0.16,503.46,3629.3,26109492,94.96,0.35,0.86,80.02,515.98,3617.29,26109493,99.75,0,0,185.15,506.81,3625.43,26109494,99.9,0,0,0.14,506.79,3625.45,26109495,99.82,0,0,0.28,506.78,3625.47,26109496,99.9,0,0,0.16,506.77,3625.48,26109497,99.75,0,0,0.63,506.98,3625.27,26109498,99.88,0,0,0.16,504.56,3627.72,26109499,99.91,0,0,0.14,504.54,3627.74,26109500,99.83,0,0,0.26,504.9,3627.39,26109501,99.92,0,0,0.14,504.98,3627.3,26109502,99.74,0,0.02,0.46,504.86,3627.42,26109503,99.86,0,0.01,0.32,504.66,3627.61,26109504,99.87,0.05,1.76,0.35,504.7,3627.56,26109505,99.75,0.03,0.9,0.52,504.91,3627.38,26109506,99.85,0.01,0.2,0.27,504.86,3627.42,26109507,99.94,0,0,0.14,504.83,3627.45,26109508,99.7,0.01,0.01,0.54,505.27,3626.99,26109509,99.84,0,0,0.2,504.63,3627.62,26109510,99.83,0,0,0.29,504.88,3627.39,26109511,99.91,0,0,0.14,504.86,3627.41,26109512,99.83,0,0,0.16,504.83,3627.44,26109513,99.75,0,0,0.55,505.08,3627.19,26109514,99.88,0,0,0.16,504.54,3627.72,26109515,99.83,0,0,0.27,504.56,3627.72,26109516,99.9,0,0,0.17,504.61,3627.66,26109517,99.9,0,0,0.14,504.69,3627.57,26109518,99.8,0,0,0.54,505.17,3627.09,26109519,99.74,0,0,0.39,504.88,3627.36,26109520,99.77,0,0,0.31,504.89,3627.37,26109521,99.93,0,0,0.16,504.86,3627.39,26109522,99.9,0,0,0.14,504.85,3627.4,26109523,99.68,0,0,0.55,505.03,3627.21,26109524,99.89,0,0,0.14,504.56,3627.69,26109525,99.8,0,0,0.28,504.79,3627.48,26109526,99.92,0,0,0.14,504.79,3627.48,26109527,99.86,0,0,0.16,504.76,3627.5,26109528,99.76,0,0,0.55,505.58,3626.68,26109529,99.88,0,0,0.15,504.91,3627.34,26109530,99.74,0,0,0.29,504.22,3628.05,26109531,99.91,0,0,0.13,504.15,3628.12,26109532,99.9,0,0,0.16,504.14,3628.12,26109533,99.77,0,0,0.55,504.88,3627.38,26109534,99.9,0,0,0.14,504.84,3627.41,26109535,99.76,0,0,0.3,504.12,3628.15,26109536,99.86,0,0,0.14,504.07,3628.19,26109537,99.92,0,0,0.16,504.05,3628.21,26109538,99.72,0,0,0.35,504.59,3627.66,26109539,99.88,0,0,0.37,504.68,3627.58,26109540,99.61,0,0,0.28,504.19,3628.07,26109541,99.87,0,0,0.16,504.17,3628.1,26109542,99.84,0,0,0.16,504.14,3628.12,26109543,99.89,0,0,0.16,504.13,3628.12,26109544,99.73,0,0,0.59,505.15,3627.1,26109545,99.73,0,0,0.31,504.85,3627.41,26109546,99.88,0,0,0.18,504.82,3627.44,26109547,99.89,0,0,0.16,504.81,3627.45,26109548,99.88,0,0,0.17,504.78,3627.48,26109549,99.61,0,0,0.72,505.3,3626.93,26109550,99.78,0,0,0.32,504.86,3627.39,26109551,99.85,0,0,0.17,504.92,3627.32,26109552,99.93,0,0,0.16,504.91,3627.33,26109553,99.88,0,0,0.17,504.88,3627.36,26109554,99.68,0,0,0.61,505.35,3626.88,26109555,99.74,0,0,0.32,504.86,3627.39,26109556,99.88,0,0,0.16,504.82,3627.42,26109557,99.85,0,0,0.21,505.06,3627.18,26109558,99.88,0,0,0.16,505.04,3627.19,26109559,99.76,0,0,0.6,505.37,3626.85,26109560,99.79,0,0,0.34,504.54,3627.71,26109561,99.14,0,0,0.17,504.51,3627.73,26109562,99.9,0,0,0.19,504.22,3628.01,26109563,99.9,0,0,0.17,504.16,3628.07,26109564,99.71,0,0,0.59,504.69,3627.53,26109565,99.8,0,0,0.37,504.9,3627.34,26109566,99.9,0,0,0.15,504.85,3627.39,26109567,99.86,0,0,0.22,504.82,3627.42,26109568,99.9,0,0,0.2,504.8,3627.43,26109569,99.79,0,0,0.59,505.25,3626.98,26109570,99.7,0,0,0.31,504.09,3628.15,26109571,99.91,0,0.01,0.18,504.15,3628.09,26109572,99.87,0,0,0.16,504.2,3628.04,26109573,99.91,0,0,0.18,504.18,3628.05,26109574,99.77,0,0,0.42,504.97,3627.25,26109575,99.76,0,0.01,0.47,505.13,3627.11,26109576,99.89,0,0.01,0.2,505.04,3627.2,26109577,99.86,0,0,0.17,505.03,3627.21,26109578,99.91,0,0,0.17,505.09,3627.14,26109579,99.73,0,0,0.33,505.16,3627.04,26109580,99.63,0,0,0.71,505.69,3626.53,26109581,99.89,0,0.01,0.18,505.14,3627.08,26109582,99.88,0.01,0.13,0.19,505.03,3627.18,26109583,99.92,0,0,0.17,505.07,3627.14,26109584,99.91,0,0,0.16,505.16,3627.05,26109585,99.63,0,0,0.71,505.56,3626.66,26109586,99.88,0.04,1.13,0.21,505.12,3627.09,26109587,99.85,0,0,0.22,505.07,3627.13,26109588,99.85,0,0,0.16,505.06,3627.14,26109589,99.9,0,0,0.16,505.03,3627.16,26109590,99.69,0,0,0.69,505.4,3626.81,26109591,99.92,0,0,0.14,505.01,3627.19,26109592,99.9,0,0,0.14,505,3627.2,26109593,99.88,0,0,0.16,504.98,3627.21,26109594,99.88,0,0,0.16,504.96,3627.23,26109595,99.71,0,0,0.69,505.51,3626.69,26109596,99.9,0,0,0.14,505.16,3627.04,26109597,99.9,0,0,0.17,505.14,3627.06,26109598,99.89,0,0,0.14,505.12,3627.07,26109599,99.86,0,0,0.14,505.1,3627.09,26109600,99.51,0,0,0.64,504.65,3627.55,26109601,99.87,0,0,0.19,504.82,3627.38,26109602,99.85,0,0,0.14,504.81,3627.39,26109603,99.87,0,0,0.16,504.78,3627.41,26109604,99.91,0,0,0.14,504.77,3627.42,26109605,99.66,0,0,0.54,505.16,3627.04,26109606,99.63,0,0,0.32,505.08,3627.13,26109607,99.87,0,0,0.14,505.15,3627.04,26109608,99.88,0,0,0.14,505.13,3627.06,26109609,99.8,0,0,0.39,505.14,3627.02,26109610,99.59,0,0,0.45,505.49,3626.69,26109611,99.89,0,0,0.4,505.09,3627.09,26109612,99.87,0,0,0.14,505.06,3627.12,26109613,99.83,0,0,0.15,505.05,3627.12,26109614,94.16,0.47,0.01,263.98,515.91,3616.28,26109615,99.51,0,0,0.55,506.97,3625.89,26109616,99.9,0,0,0.39,506.79,3626.07,26109617,99.83,0,0,0.21,506.77,3626.08,26109618,99.89,0,0,0.16,506.75,3626.1,26109619,99.86,0,0,0.21,505.24,3627.63,26109620,99.81,0,0,0.3,504.61,3628.3,26109621,99.71,0,0,0.57,505.06,3627.84,26109622,99.88,0,0,0.21,503.93,3628.96,26109623,99.87,0,0,0.17,504,3628.89,26109624,99.85,0,0,0.17,503.98,3628.92,26109625,99.83,0,0,0.32,503.75,3629.2,26109626,99.7,0,0,0.56,504.26,3628.69,26109627,99.88,0.02,0.1,0.2,503.96,3628.98,26109628,99.89,0,0,0.2,503.94,3628.97,26109629,99.93,0,0,0.18,503.93,3628.98,26109630,99.78,0,0,0.32,504.4,3628.52,26109631,99.78,0,0,0.58,504.76,3628.17,26109632,99.9,0,0,0.16,504.38,3628.56,26109633,99.93,0,0,0.18,504.36,3628.57,26109634,99.92,0,0,0.16,504.34,3628.59,26109635,99.77,0,0,0.33,504.35,3628.59,26109636,99.77,0,0,0.43,504.77,3628.17,26109637,99.92,0,0,0.31,504.49,3628.44,26109638,99.92,0,0,0.16,504.47,3628.46,26109639,99.63,0,0,0.34,504.47,3628.44,26109640,99.8,0,0,0.34,503.96,3628.96,26109641,99.8,0,0,0.54,504.78,3628.13,26109642,99.91,0,0,0.21,504.4,3628.51,26109643,99.91,0,0,0.17,504.39,3628.52,26109644,99.93,0,0,0.17,504.36,3628.56,26109645,99.85,0,0,0.41,504.62,3628.32,26109646,99.77,0,0,0.62,505.08,3627.86,26109647,99.9,0,0,0.15,504.34,3628.6,26109648,99.9,0,0,0.18,504.38,3628.55,26109649,99.85,0,0,0.17,504.48,3628.44,26109650,99.67,0.03,0,0.43,504.51,3628.43,26109651,99.69,0.02,0.09,0.54,504.72,3628.21,26109652,99.89,0,0,0.36,504.81,3628.1,26109653,99.93,0,0,0.17,504.8,3628.11,26109654,99.89,0,0,0.19,504.89,3628.01,26109655,99.69,0,0,0.38,503.77,3629.15,26109656,99.74,0,0,0.36,504.07,3628.84,26109657,99.85,0,0,0.38,504.41,3628.5,26109658,99.83,0,0,0.17,504.39,3628.52,26109659,99.88,0,0,0.14,504.37,3628.53,26109660,99.7,0,0,0.3,504.62,3628.31,26109661,99.87,0,0,0.14,504.6,3628.31,26109662,99.67,0,0,0.55,505.34,3627.57,26109663,99.79,0,0,0.15,504.8,3628.11,26109664,99.85,0,0,0.14,504.77,3628.13,26109665,99.86,0,0,0.3,504.9,3628.02,26109666,99.86,0,0,0.14,504.94,3627.97,26109667,99.76,0,0,0.53,505.28,3627.63,26109668,99.9,0,0,0.15,504.9,3628,26109669,99.73,0,0,0.27,504.65,3628.23,26109670,99.79,0,0,0.3,504.89,3628.02,26109671,99.86,0,0,0.16,504.86,3628.04,26109672,99.7,0,0,0.56,505.2,3627.69,26109673,99.85,0,0,0.16,504.82,3628.07,26109674,99.89,0,0,0.14,504.81,3628.07,26109675,88.97,0,0,0.3,503.59,3629.31,26109676,99.88,0,0,0.14,503.56,3629.34,26109677,99.7,0,0,0.53,504.73,3628.16,26109678,99.9,0,0,0.22,504.71,3628.18,26109679,99.86,0,0,0.15,504.69,3628.2,26109680,99.74,0,0,0.28,504.69,3628.21,26109681,99.86,0,0,0.15,504.67,3628.23,26109682,99.53,0,0,0.57,504.76,3628.13,26109683,99.89,0,0,0.15,504.63,3628.26,26109684,99.93,0,0,0.14,504.61,3628.27,26109685,99.85,0,0,0.32,504.91,3627.99,26109686,99.93,0,0,0.14,504.82,3628.1,26109687,99.79,0,0,0.41,505.13,3627.79,26109688,99.86,0,0,0.29,504.7,3628.22,26109689,99.88,0,0,0.16,504.71,3628.2,26109690,99.61,0,0,0.29,503.99,3628.94,26109691,99.9,0,0,0.14,503.95,3628.98,26109692,99.76,0,0,0.3,504.29,3628.63,26109693,99.81,0,0,0.38,504.9,3628.02,26109694,99.83,0,0,0.14,504.87,3628.04,26109695,99.69,0,0,0.35,505.1,3627.83,26109696,99.91,0,0,0.18,505.09,3627.84,26109697,99.89,0,0,0.17,505.06,3627.86,26109698,99.71,0,0,0.59,505.33,3627.58,26109699,99.73,0,0,0.28,504.68,3628.22,26109700,99.71,0,0,0.29,504.21,3628.71,26109701,99.85,0,0,0.13,504.18,3628.74,26109702,99.84,0,0,0.16,504.15,3628.76,26109703,99.67,0,0,0.56,504.98,3627.93,26109704,99.87,0,0,0.17,504.86,3628.08,26109705,99.76,0,0,0.29,504.85,3628.11,26109706,99.9,0,0,0.16,504.83,3628.11,26109707,99.85,0,0,0.14,504.82,3628.12,26109708,99.73,0,0,0.56,505.15,3627.79,26109709,99.88,0,0,0.14,504.78,3628.15,26109710,99.78,0,0,0.29,505.18,3627.77,26109711,99.91,0,0,0.17,505.2,3627.75,26109712,99.91,0,0,0.14,505.17,3627.77,26109713,99.76,0,0,0.49,505.6,3627.34,26109714,99.89,0,0,0.2,504.88,3628.05,26109715,99.75,0,0,0.3,503.92,3629.03,26109716,99.91,0,0,0.16,503.88,3629.07,26109717,99.9,0,0,0.13,503.87,3629.07,26109718,99.77,0,0,0.51,504.11,3628.83,26109719,99.92,0,0,0.19,503.58,3629.35,26109720,99.59,0,0,0.3,503.66,3629.29,26109721,99.84,0,0,0.16,503.56,3629.38,26109722,99.86,0,0,0.14,503.6,3629.34,26109723,99.73,0,0,0.41,504.28,3628.66,26109724,99.87,0,0,0.29,505.16,3627.77,26109725,99.75,0,0,0.3,505.39,3627.56,26109726,99.85,0,0,0.16,505.39,3627.56,26109727,99.79,0,0,0.14,505.35,3627.59,26109728,99.75,0,0,0.41,505.7,3627.24,26109729,99.82,0,0,0.4,504.83,3628.08,26109730,99.79,0,0,0.37,504.83,3628.1,26109731,99.83,0,0,0.16,504.8,3628.12,26109732,99.88,0,0,0.14,504.8,3628.12,26109733,99.88,0,0,0.15,504.76,3628.15,26109734,99.72,0,0,0.54,505.82,3627.09,26109735,98.18,0,0,0.34,505.42,3627.5,26109736,99.77,0,0,0.18,505.41,3627.5,26109737,99.85,0,0.01,0.22,505.37,3627.55,26109738,99.78,0,0,0.18,505.32,3627.58,26109739,99.72,0,0,0.58,505.46,3627.44,26109740,99.79,0,0,0.34,505.05,3627.87,26109741,99.86,0,0,0.18,505.03,3627.88,26109742,99.47,0,0,0.21,504.8,3628.1,26109743,99.79,0,0,0.16,504.82,3628.08,26109744,99.68,0,0,0.54,504.86,3628.03,26109745,99.72,0,0,0.35,505.4,3627.52,26109746,99.86,0,0,0.16,505.38,3627.53,26109747,99.81,0,0,0.14,505.37,3627.54,26109748,99.82,0,0,0.17,505.33,3627.57,26109749,99.71,0,0,0.54,505.68,3627.22,26109750,99.65,0,0,0.3,504.84,3628.07,26109751,99.83,0,0,0.14,504.82,3628.09,26109752,99.86,0,0,0.14,504.79,3628.12,26109753,99.85,0,0,0.15,504.78,3628.12,26109754,99.71,0,0,0.55,504.44,3628.45,26109755,99.69,0,0,0.3,503.1,3629.81,26109756,99.82,0,0,0.14,503.22,3629.69,26109757,99.83,0,0,0.16,503.22,3629.69,26109758,99.86,0,0,0.15,503.19,3629.71,26109759,99.53,0,0,0.71,505.49,3627.39,26109760,99.71,0,0,0.31,504.66,3628.24,26109761,99.83,0,0,0.15,504.62,3628.27,26109762,99.84,0,0,0.16,504.59,3628.3,26109763,99.84,0,0,0.15,504.58,3628.3,26109764,99.67,0,0,0.41,504.99,3627.9,26109765,99.7,0,0,0.44,505.31,3627.6,26109766,99.85,0,0,0.15,505.28,3627.63,26109767,99.83,0,0,0.16,505.28,3627.63,26109768,99.82,0,0,0.15,505.42,3627.48,26109769,99.69,0,0,0.41,505.76,3627.14,26109770,99.71,0,0,0.42,504.71,3628.2,26109771,99.82,0,0,0.16,504.39,3628.51,26109772,99.84,0,0,0.15,504.37,3628.53,26109773,99.8,0,0,0.15,504.35,3628.55,26109774,99.83,0,0,0.14,504.33,3628.56,26109775,99.62,0,0,0.71,505.12,3627.78,26109776,99.83,0,0,0.2,504.56,3628.34,26109777,99.84,0,0,0.15,504.52,3628.37,26109778,99.79,0.02,0.06,0.19,504.54,3628.35,26109779,99.8,0.04,0.03,0.17,504.56,3628.31,26109780,99.51,0,0,0.75,505.21,3627.68,26109781,99.83,0,0,0.14,504.82,3628.07,26109782,99.82,0,0,0.15,504.79,3628.08,26109783,99.75,0.02,0.01,0.66,505.82,3626.98,26109784,88.96,25.5,0.19,102.73,528.85,3595.44,26109785,81.11,0.02,0.07,181.16,873.74,3231.25,26109786,99.52,0.02,0.03,0.35,586.99,3521,26109787,99.77,0.02,0.04,0.25,556.69,3551.29,26109788,99.83,0,0,0.2,556.78,3551.2,26109789,99.7,0,0,0.36,558.94,3549,26109790,99.58,0,0,0.77,556.58,3551.43,26109791,99.79,0,0,0.17,556.29,3551.73,26109792,99.79,0.02,0,0.23,556.26,3551.75,26109793,83.37,0.06,2.09,3.98,629.78,3478.21,26109794,83.22,0.07,2.02,3.88,765.75,3342.22,26109795,83.03,0.02,0.03,4.51,915.83,3192.12,26109796,99.72,0.04,1.09,0.31,898.99,3208.97,26109797,99.68,0,0,0.21,559.17,3548.78,26109798,99.82,0,0,0.14,557.41,3550.54,26109799,99.75,0.1,3.81,0.25,557.99,3549.93,26109800,99.51,0.01,0.02,0.56,558.82,3549.1,26109801,99.74,0,0.01,0.36,559.49,3548.42,26109802,99.79,0,0,0.18,558.97,3548.94,26109803,99.8,0,0.01,0.17,558.22,3549.68,26109804,99.81,0,0,0.15,558.19,3549.7,26109805,99.53,0,0,0.72,559.26,3548.65,26109806,85.66,0.11,0.87,1.03,640.04,3467.81,26109807,97.02,0.05,1.76,3.19,888.33,3219.5,26109808,99.83,0,0,0.16,554.61,3553.21,26109809,99.83,0,0,0.18,554.59,3553.23,26109810,99.56,0,0,0.57,555.58,3552.25,26109811,99.83,0,0,0.39,553.83,3554,26109812,99.78,0,0,0.18,553.92,3553.91,26109813,99.84,0,0,0.17,553.93,3553.89,26109814,99.8,0.01,0.06,0.22,553.84,3553.97,26109815,99.71,0.01,0.07,0.36,555.81,3552.01,26109816,99.68,0,0,0.57,556.42,3551.4,26109817,99.82,0.01,0.07,0.18,556.12,3551.69,26109818,99.79,0.02,0.78,0.23,556.15,3551.66,26109819,99.54,0,0.03,0.38,556.34,3551.44,26109820,99.61,0,0,0.31,555.36,3552.44,26109821,99.67,0,0,0.56,556.9,3550.89,26109822,99.8,0,0,0.18,556.52,3551.27,26109823,99.8,0,0,0.16,555.97,3551.81,26109824,99.78,0.02,0,0.21,555.6,3552.18,26109825,68.01,0.05,0.91,5.05,874.48,3233.3,26109826,98.18,0.02,0.89,3.36,911.84,3195.93,26109827,99.66,0,0,0.34,608.45,3499.32,26109828,99.78,0.01,0.64,0.22,554.84,3552.92,26109829,99.82,0.02,0.96,0.23,554.79,3552.97,26109830,99.69,0,0,0.37,555.78,3551.99,26109831,99.7,0.01,0.86,0.59,556.51,3551.26,26109832,99.83,0,0.02,0.49,556.23,3551.52,26109833,99.82,0.01,0.6,0.24,556.24,3551.51,26109834,99.83,0,0.01,0.19,556.24,3551.5,26109835,99.73,0,0.01,0.4,556.78,3550.97,26109836,99.69,0,0,0.7,556.95,3550.8,26109837,99.82,0,0,0.14,556.54,3551.21,26109838,99.8,0.03,0.89,0.24,556.49,3551.25,26109839,99.78,0,0,0.17,556.55,3551.18,26109840,99.45,0,0,0.35,556.16,3551.59,26109841,99.68,0.01,0.41,0.54,556.66,3551.08,26109842,99.82,0,0.03,0.34,556.09,3551.64,26109843,99.83,0,0,0.13,555.25,3552.48,26109844,99.81,0.03,0.62,0.29,555.3,3552.42,26109845,99.66,0.01,0.03,0.42,555.5,3552.23,26109846,99.66,0.01,0.05,0.38,555.97,3551.75,26109847,99.82,0,0,0.39,556.97,3550.75,26109848,99.83,0,0,0.15,556.96,3550.75,26109849,99.64,0,0,0.32,557.16,3550.52,26109850,99.71,0,0,0.32,557.46,3550.24,26109851,99.79,0,0,0.14,557.58,3550.11,26109852,99.65,0.01,0.05,0.58,557.66,3550.04,26109853,99.45,0.11,1.25,0.43,558.21,3549.39,26109854,99.35,0.43,12.02,0.59,558.93,3548.53,26109855,98.97,0.6,17.85,0.8,560.43,3547.05,26109856,99.39,0.38,10.44,0.64,560.42,3547.05,26109857,95.55,1.53,53.1,80.43,572.05,3536.82,26109858,99.25,0.64,19.14,0.74,563.42,3543.63,26109859,99.36,0.25,5.46,0.4,563.18,3543.88,26109860,99.65,0.01,0.66,0.51,562.4,3544.68,26109861,99.76,0,0,0.16,562.45,3544.63,26109862,99.63,0,0,0.66,560.69,3546.41,26109863,99.75,0.03,0.03,0.22,558.92,3548.19,26109864,98.5,0.03,0.04,0.29,558.8,3548.28,26109865,99.65,0.02,0.02,0.43,559.51,3547.57,26109866,99.77,0.05,0.05,0.34,559.52,3547.56,26109867,99.31,17.1,0.77,5.04,560.27,3544.24,26109868,99.4,13.18,28.19,23.96,560.14,3519.5,26109869,83.49,0.06,1.71,4.06,769.03,3309.45,26109870,99.46,0.02,0.87,0.47,814.47,3264.01,26109871,99.86,0,0,0.16,559.34,3519.13,26109872,99.69,0,0,0.54,560.44,3518.02,26109873,99.83,0,0,0.15,560.89,3517.56,26109874,99.83,0,0,0.15,560.93,3517.53,26109875,99.66,0,0,0.31,560.93,3517.54,26109876,99.79,0.03,0.88,0.22,560.89,3517.57,26109877,99.72,0,0,0.57,561.37,3517.08,26109878,99.85,0,0,0.15,561.3,3517.14,26109879,99.51,0,0,0.28,559.88,3518.53,26109880,99.68,0,0,0.3,560.3,3518.13,26109881,99.8,0.04,2.36,0.21,560.44,3517.98,26109882,99.63,0.01,0.08,0.59,560.92,3517.49,26109883,99.83,0,0.01,0.22,561.51,3516.89,26109884,99.79,0.01,0.19,0.18,561.61,3516.78,26109885,99.69,0,0.02,0.42,561.77,3516.63,26109886,99.84,0,0.01,0.17,561.38,3517.02,26109887,99.71,0,0,0.3,561.36,3517.03,26109888,99.79,0,0,0.41,560.92,3517.47,26109889,99.8,0,0,0.14,560.89,3517.5,26109890,99.64,0,0,0.3,561.14,3517.26,26109891,99.81,0,0,0.16,561.11,3517.29,26109892,99.72,0,0,0.3,561.43,3516.97,26109893,99.82,0,0,0.38,559.85,3518.54,26109894,99.8,0,0.01,0.16,559.82,3518.56,26109895,99.68,0,0,0.3,560.55,3517.86,26109896,99.8,0,0,0.14,560.62,3517.78,26109897,99.84,0,0,0.16,560.71,3517.69,26109898,99.68,0,0,0.57,561.03,3517.36,26109899,99.83,0,0,0.16,560.66,3517.73,26109900,99.42,0,0,0.37,561.63,3516.78,26109901,99.76,0,0,0.18,561.63,3516.77,26109902,99.73,0.01,0.64,0.29,561.6,3516.8,26109903,99.69,0,0.01,0.6,562.21,3516.17,26109904,99.83,0,0,0.15,561.13,3517.25,26109905,99.7,0,0,0.32,560.89,3517.5,26109906,99.84,0.01,0.1,0.18,560.85,3517.54,26109907,99.83,0.01,0.59,0.23,560.85,3517.53,26109908,99.68,0.01,0.9,0.73,561.51,3516.87,26109909,99.65,0.01,0.88,0.36,561.38,3516.97,26109910,99.74,0,0.01,0.35,561.23,3517.12,26109911,99.78,0,0,0.16,561.15,3517.2,26109912,99.8,0.04,1.3,0.23,561.14,3517.19,26109913,99.69,0,0,0.43,561.72,3516.62,26109914,99.83,0,0.01,0.3,561.84,3516.52,26109915,99.7,0,0,0.37,562.3,3516.07,26109916,99.84,0,0,0.16,562.31,3516.06,26109917,99.82,0.01,0.01,0.2,561.98,3516.39,26109918,99.67,0.01,0.18,0.44,561.86,3516.5,26109919,99.85,0,0,0.31,561.31,3517.04,26109920,99.72,0,0,0.3,561.54,3516.83,26109921,99.86,0,0.01,0.17,561.48,3516.89,26109922,99.85,0,0.02,0.22,559.97,3518.39,26109923,99.9,0.01,0.52,0.21,559.61,3518.75,26109924,99.75,0,0,0.55,560.15,3518.2,26109925,99.86,0.02,0.94,0.33,560.12,3518.26,26109926,99.93,0,0.01,0.21,560.18,3518.19,26109927,99.9,0,0.01,0.16,560.13,3518.22,26109928,99.9,0,0.01,0.2,560.1,3518.25,26109929,99.8,0,0,0.57,560.92,3517.43,26109930,99.81,0,0.02,0.41,560.06,3518.3,26109931,99.91,0.05,2.39,0.15,560.06,3518.29,26109932,99.89,0,0.02,0.25,560.03,3518.3,26109933,99.86,0.02,0.71,0.26,560.01,3518.32,26109934,99.77,0,0,0.57,560.92,3517.4,26109935,99.79,0,0,0.32,560.95,3517.4,26109936,99.89,0,0,0.14,561.11,3517.25,26109937,99.88,0,0,0.16,561.13,3517.23,26109938,99.91,0,0,0.15,561.1,3517.26,26109939,99.61,0,0,0.67,561.66,3516.67,26109940,99.82,0,0,0.31,561.13,3517.22,26109941,99.93,0,0.02,0.14,560.31,3518.04,26109942,99.87,0,0,0.18,560.26,3518.08,26109943,99.89,0,0,0.14,560.23,3518.11,26109944,99.77,0,0,0.55,560.25,3518.1,26109945,99.77,0,0,0.36,560.38,3517.98,26109946,99.9,0,0,0.13,560.37,3517.99,26109947,99.9,0,0,0.18,560.35,3518.01,26109948,99.86,0,0,0.15,560.32,3518.04,26109949,99.75,0,0,0.43,560.66,3517.69,26109950,99.72,0,0,0.43,560.79,3517.57,26109951,99.88,0,0,0.15,560.77,3517.59,26109952,99.9,0,0,0.16,560.75,3517.61,26109953,99.89,0,0,0.15,560.72,3517.64,26109954,99.77,0,0,0.55,560.99,3517.36,26109955,99.79,0,0,0.38,560.44,3517.93,26109956,99.85,0,0,0.14,560.38,3517.99,26109957,99.87,0.01,0.01,0.15,560.34,3518.02,26109958,99.91,0.01,0.05,0.21,560.27,3518.08,26109959,99.78,0,0,0.47,560.74,3517.6,26109960,99.68,0,0,0.45,560.36,3517.99,26109961,99.87,0,0,0.14,560.33,3518.02,26109962,99.87,0,0,0.16,560.31,3518.04,26109963,99.89,0,0,0.14,560.28,3518.06,26109964,99.88,0,0,0.18,560.26,3518.07,26109965,99.6,0,0,0.7,560.84,3517.51,26109966,99.91,0,0,0.16,560.47,3517.88,26109967,99.91,0,0,0.14,560.46,3517.88,26109968,99.91,0,0,0.15,560.43,3517.91,26109969,99.79,0.02,0.81,0.29,561.08,3517.24,26109970,99.69,0,0.05,0.75,561.71,3516.62,26109971,99.86,0,0,0.14,561,3517.33,26109972,99.88,0,0,0.14,560.97,3517.35,26109973,99.84,0,0,0.15,560.94,3517.38,26109974,99.83,0,0,0.14,560.92,3517.39,26109975,99.6,0,0,0.82,561.89,3516.44,26109976,99.9,0,0,0.14,561.35,3516.97,26109977,99.88,0,0,0.2,561.34,3516.97,26109978,99.87,0,0,0.14,561.31,3517,26109979,99.9,0,0,0.21,560.35,3517.96,26109980,99.64,0,0,0.73,560.85,3517.48,26109981,99.82,0,0,0.16,560.54,3517.77,26109982,99.78,0,0,0.17,560.36,3517.95,26109983,99.91,0,0,0.17,560.25,3518.06,26109984,99.88,0,0,0.15,560.22,3518.08,26109985,98.34,0,0,0.58,561.11,3517.21,26109986,99.9,0,0,0.28,561.07,3517.24,26109987,99.86,0,0,0.16,561.09,3517.22,26109988,99.88,0,0,0.14,561.06,3517.25,26109989,99.87,0,0,0.15,561.05,3517.25,26109990,99.51,0,0,0.63,560.65,3517.66,26109991,99.86,0,0,0.23,560.78,3517.53,26109992,99.88,0,0,0.18,560.75,3517.55,26109993,99.84,0,0,0.14,560.74,3517.56,26109994,99.9,0,0,0.14,560.71,3517.59,26109995,99.58,0,0,0.72,561.76,3516.56,26109996,99.84,0,0,0.16,561.19,3517.13,26109997,99.86,0,0,0.16,561.24,3517.07,26109998,99.88,0,0,0.14,561.33,3516.97,26109999,99.79,0,0,0.29,561.21,3517.07,26110000,99.74,0,0,0.35,559.63,3518.66,26110001,99.78,0,0,0.57,560.75,3517.53,26110002,99.86,0,0,0.18,560.29,3518,26110003,99.93,0,0,0.15,560.27,3518.01,26110004,99.91,0,0,0.15,560.25,3518.03,26110005,99.84,0,0,0.32,560.98,3517.31,26110006,99.79,0,0,0.54,561.33,3516.97,26110007,99.85,0.01,0.01,0.23,532.52,3546,26110008,99.92,0,0,0.24,506.53,3572.21,26110009,99.91,0,0,0.15,505.63,3573.12,26110010,99.81,0,0,0.29,505.66,3573.13,26110011,99.76,0,0,0.59,506.18,3572.6,26110012,99.91,0,0,0.17,505.87,3572.92,26110013,99.91,0,0,0.16,505.84,3572.95,26110014,99.89,0,0,0.15,505.82,3572.97,26110015,99.85,0,0,0.34,505.34,3573.47,26110016,99.76,0,0.02,0.46,506.26,3572.53,26110017,99.94,0,0,0.26,505.68,3573.11,26110018,99.91,0,0,0.15,505.67,3573.11,26110019,99.93,0,0,0.14,505.64,3573.14,26110020,99.72,0,0,0.3,504.69,3574.11,26110021,99.75,0,0,0.58,505.52,3573.27,26110022,99.87,0,0,0.16,505.36,3573.42,26110023,99.9,0,0,0.14,505.34,3573.45,26110024,99.91,0,0,0.16,505.31,3573.48,26110025,99.79,0,0,0.3,505.32,3573.48,26110026,99.79,0,0,0.49,505.75,3573.05,26110027,99.88,0,0,0.21,505.71,3573.08,26110028,99.93,0,0,0.14,505.68,3573.11,26110029,99.75,0,0,0.29,505.95,3572.81,26110030,99.77,0,0,0.29,505.91,3572.87,26110031,99.75,0,0,0.51,506.22,3572.55,26110032,99.92,0,0,0.19,505.85,3572.92,26110033,99.89,0,0.02,0.15,505.82,3572.94,26110034,99.9,0,0,0.17,505.8,3572.99,26110035,99.81,0,0,0.31,505.32,3573.5,26110036,99.78,0,0,0.39,505.74,3573.07,26110037,99.9,0,0,0.34,505.94,3572.89,26110038,99.18,0,0,0.16,505.92,3572.9,26110039,99.91,0,0,0.15,505.89,3572.95,26110040,99.78,0,0,0.3,505.9,3572.96,26110041,99.91,0,0,0.18,505.87,3572.98,26110042,99.76,0,0,0.59,506.25,3572.61,26110043,99.92,0,0,0.14,505.34,3573.51,26110044,99.91,0,0,0.16,505.32,3573.52,26110045,99.86,0,0,0.31,505.08,3573.78,26110046,99.92,0,0,0.16,505.06,3573.8,26110047,99.79,0,0,0.54,505.88,3572.98,26110048,99.89,0,0,0.15,505.47,3573.38,26110049,99.93,0,0,0.16,505.44,3573.41,26110050,99.77,0,0,0.29,505.93,3572.94,26110051,99.92,0,0,0.14,505.9,3572.95,26110052,99.74,0,0,0.57,506.25,3572.6,26110053,99.91,0,0,0.14,505.87,3572.98,26110054,99.9,0,0,0.14,505.86,3572.98,26110055,99.86,0,0,0.32,505.61,3573.25,26110056,99.94,0,0,0.18,505.6,3573.26,26110057,99.76,0,0,0.55,506.02,3572.84,26110058,99.89,0,0,0.14,505.84,3573.01,26110059,99.73,0,0,0.3,505.95,3572.88,26110060,99.79,0,0,0.38,506.19,3572.65,26110061,99.92,0,0,0.18,506.17,3572.67,26110062,99.78,0,0,0.54,506.35,3572.48,26110063,99.94,0,0,0.15,505.88,3572.95,26110064,99.93,0,0,0.14,505.84,3572.97,26110065,99.86,0,0,0.36,505.62,3573.21,26110066,99.93,0,0,0.12,505.58,3573.25,26110067,99.79,0,0,0.58,505.99,3572.84,26110068,99.9,0,0,0.14,505.78,3573.04,26110069,99.92,0,0,0.15,505.78,3573.04,26110070,99.84,0,0,0.28,505.93,3572.9,26110071,99.93,0,0,0.14,505.95,3572.88,26110072,99.76,0,0,0.43,506.41,3572.42,26110073,99.94,0,0,0.31,505.91,3572.91,26110074,99.9,0,0,0.14,505.88,3572.94,26110075,99.83,0,0,0.33,506.13,3572.7,26110076,99.93,0,0,0.17,506.1,3572.73,26110077,99.9,0,0,0.14,505.72,3573.11,26110078,99.76,0,0,0.56,505.45,3573.37,26110079,99.92,0,0,0.18,505.05,3573.77,26110080,99.72,0,0,0.34,504.39,3574.44,26110081,99.9,0,0,0.16,504.37,3574.46,26110082,99.9,0,0,0.14,504.46,3574.37,26110083,99.78,0,0,0.55,505.14,3573.68,26110084,99.89,0,0,0.14,504.92,3573.9,26110085,99.72,0,0,0.3,505.15,3573.68,26110086,99.94,0,0,0.14,505.13,3573.7,26110087,99.93,0,0,0.17,505.11,3573.71,26110088,99.8,0,0,0.54,505.64,3573.19,26110089,99.79,0,0,0.29,505.31,3573.48,26110090,99.86,0,0,0.31,505.08,3573.74,26110091,99.93,0,0,0.14,505.05,3573.76,26110092,99.93,0,0,0.16,505.01,3573.79,26110093,99.73,0,0,0.53,505.88,3572.92,26110094,99.87,0,0,0.18,505.4,3573.39,26110095,99.84,0,0,0.32,505.42,3573.39,26110096,99.86,0,0,0.16,505.38,3573.42,26110097,99.89,0,0,0.19,505.14,3573.66,26110098,99.8,0,0,0.51,505.45,3573.34,26110099,98.82,0,0,0.2,505.09,3573.7,26110100,99.83,0,0,0.3,505.32,3573.48,26110101,99.87,0,0,0.16,505.31,3573.49,26110102,99.86,0,0.01,0.19,505.01,3573.79,26110103,99.79,0,0,0.41,505.28,3573.51,26110104,99.9,0,0,0.28,504.9,3573.88,26110105,99.87,0,0,0.35,505.16,3573.64,26110106,99.76,0,0,0.15,505.13,3573.67,26110107,99.92,0,0.01,0.18,505.06,3573.73,26110108,99.8,0,0,0.5,505.47,3573.32,26110109,99.93,0,0,0.19,505.27,3573.51,26110110,99.79,0,0,0.32,505.28,3573.52,26110111,99.93,0,0,0.14,505.27,3573.53,26110112,99.91,0,0,0.17,505.24,3573.55,26110113,99.79,0,0,0.42,505.77,3573.02,26110114,99.9,0,0,0.31,505.39,3573.39,26110115,99.74,0,0,0.32,505.63,3573.17,26110116,99.91,0,0,0.14,505.62,3573.18,26110117,99.93,0,0,0.15,505.59,3573.2,26110118,99.93,0,0,0.15,505.58,3573.21,26110119,99.68,0,0,0.73,505.88,3572.88,26110120,99.76,0,0,0.31,505.32,3573.45,26110121,99.9,0,0,0.14,505.28,3573.49,26110122,99.91,0,0,0.14,505.28,3573.49,26110123,99.88,0,0,0.15,505.26,3573.51,26110124,99.8,0,0,0.55,505.64,3573.12,26110125,99.76,0,0,0.29,505.45,3573.33,26110126,99.93,0,0,0.16,505.43,3573.34,26110127,99.91,0,0,0.14,505.4,3573.37,26110128,99.93,0,0,0.14,505.38,3573.38,26110129,99.75,0,0,0.6,505.73,3573.03,26110130,99.73,0,0,0.3,505.61,3573.17,26110131,99.93,0,0,0.15,505.59,3573.18,26110132,99.93,0,0,0.16,505.56,3573.21,26110133,99.9,0,0,0.15,505.55,3573.21,26110134,99.78,0,0,0.55,505.77,3572.99,26110135,99.89,0,0,0.31,505.68,3573.1,26110136,99.93,0,0,0.16,505.65,3573.12,26110137,99.9,0,0,0.14,505.65,3573.12,26110138,99.93,0,0,0.14,505.62,3573.15,26110139,99.76,0,0,0.5,506.22,3572.54,26110140,99.69,0,0,0.38,505.61,3573.17,26110141,99.92,0,0,0.13,505.59,3573.18,26110142,99.93,0,0,0.19,505.58,3573.19,26110143,99.89,0,0,0.18,505.55,3573.21,26110144,99.78,0,0,0.43,505.89,3572.87,26110145,99.88,0,0,0.44,505.28,3573.49,26110146,99.9,0,0,0.15,505.26,3573.51,26110147,99.91,0,0,0.14,505.42,3573.35,26110148,99.91,0,0,0.19,505.41,3573.35,26110149,99.66,0,0,0.73,505.78,3572.95,26110150,99.75,0,0,0.37,505.39,3573.36,26110151,99.91,0,0,0.18,505.36,3573.38,26110152,99.93,0,0,0.18,505.33,3573.41,26110153,99.9,0,0,0.18,505.32,3573.41,26110154,99.78,0,0,0.33,505.65,3573.11,26110155,99.78,0,0,0.56,505.79,3572.98,26110156,99.9,0,0,0.16,505.61,3573.17,26110157,99.9,0,0,0.17,505.51,3573.26,26110158,99.92,0,0,0.16,505.52,3573.24,26110159,99,0,0,0.14,505.66,3573.11,26110160,99.73,0,0,0.7,505.91,3572.87,26110161,99.91,0,0,0.16,505.39,3573.38,26110162,99.91,0,0,0.17,505.11,3573.66,26110163,99.94,0,0,0.15,504.85,3573.92,26110164,99.93,0,0,0.15,504.83,3573.94,26110165,99.74,0,0,0.72,505.89,3572.88,26110166,99.93,0,0,0.13,505.54,3573.23,26110167,99.91,0,0,0.16,505.51,3573.25,26110168,99.94,0,0,0.14,505.5,3573.26,26110169,99.91,0,0,0.14,505.48,3573.28,26110170,99.58,0,0,0.7,505.9,3572.87,26110171,99.91,0,0,0.14,505.65,3573.12,26110172,99.91,0,0,0.18,505.63,3573.14,26110173,99.91,0,0,0.14,505.6,3573.17,26110174,99.92,0,0,0.18,505.58,3573.18,26110175,99.64,0,0,0.74,506.38,3572.39,26110176,99.9,0,0,0.16,505.8,3572.97,26110177,99.92,0,0,0.15,505.78,3572.98,26110178,99.92,0,0,0.14,505.75,3573.01,26110179,99.74,0,0,0.28,505.5,3573.24,26110180,99.58,0,0,0.59,506.07,3572.69,26110181,99.93,0,0,0.29,505.8,3572.95,26110182,99.92,0,0,0.14,505.87,3572.88,26110183,99.9,0,0,0.16,505.86,3572.88,26110184,99.91,0,0,0.15,505.84,3572.9,26110185,99.71,0,0,0.68,505.96,3572.8,26110186,99.92,0,0,0.21,505.57,3573.19,26110187,99.91,0,0,0.14,505.56,3573.19,26110188,99.91,0,0,0.15,505.52,3573.22,26110189,99.92,0,0,0.14,505.5,3573.24,26110190,99.69,0,0,0.57,505.89,3572.86,26110191,99.92,0,0,0.29,505.73,3573.02,26110192,99.9,0,0,0.16,505.76,3572.99,26110193,99.9,0,0,0.14,505.87,3572.88,26110194,99.93,0,0,0.15,505.86,3572.88,26110195,99.79,0,0.01,0.36,504.62,3574.13,26110196,99.76,0,0,0.6,506.13,3572.62,26110197,99.92,0,0,0.16,505.79,3572.95,26110198,99.9,0,0,0.14,505.76,3572.98,26110199,99.92,0,0,0.16,505.73,3573.01,26110200,99.67,0,0,0.32,505.98,3572.77,26110201,99.68,0,0,0.58,506.42,3572.32,26110202,99.85,0,0,0.14,505.87,3572.86,26110203,99.87,0,0,0.16,505.86,3572.87,26110204,99.84,0,0,0.14,505.84,3572.88,26110205,99.77,0,0,0.33,505.83,3572.91,26110206,99.71,0,0,0.57,506.17,3572.57,26110207,99.87,0,0,0.15,505.79,3572.95,26110208,99.9,0,0,0.14,505.75,3572.97,26110209,99.8,0,0,0.28,505.54,3573.16,26110210,99.75,0,0,0.36,505.78,3572.95,26110211,99.77,0,0,0.55,506.13,3572.59,26110212,99.83,0,0,0.14,505.89,3572.83,26110213,99.88,0,0,0.15,505.87,3572.84,26110214,99.85,0,0,0.17,505.85,3572.86,26110215,99.72,0,0,0.32,505.63,3573.09,26110216,99.78,0,0,0.57,506.06,3572.67,26110217,99.82,0,0,0.21,505.81,3572.9,26110218,99.9,0,0,0.14,505.79,3572.92,26110219,99.92,0,0,0.14,505.76,3572.95,26110220,99.8,0,0,0.33,505.78,3572.95,26110221,95,0.47,0.02,79.45,515.64,3563.75,26110222,99.74,0,0,185.53,508.19,3571.66,26110223,99.9,0,0,0.17,508.03,3571.82,26110224,99.91,0,0,0.14,508.02,3571.82,26110225,99.82,0,0,0.34,508.17,3571.69,26110226,99.79,0,0,0.41,508.36,3571.49,26110227,99.9,0,0,0.3,506,3573.89,26110228,99.93,0,0,0.15,505.99,3573.89,26110229,99.89,0,0,0.15,505.97,3573.91,26110230,99.81,0,0,0.36,506.21,3573.68,26110231,99.9,0,0,0.16,505.78,3574.11,26110232,99.7,0,0,0.55,505.54,3574.36,26110233,99.87,0,0,0.14,505.16,3574.74,26110234,99.9,0,0,0.14,505.15,3574.75,26110235,99.79,0,0,0.32,504.66,3575.25,26110236,99.88,0,0,0.14,504.64,3575.27,26110237,99.76,0,0,0.56,505.36,3574.55,26110238,99.9,0,0,0.14,505.04,3574.86,26110239,99.67,0,0,0.3,504.52,3575.37,26110240,99.8,0,0,0.34,505.49,3574.43,26110241,99.9,0,0,0.14,505.48,3574.44,26110242,99.74,0,0,0.55,505.76,3574.15,26110243,99.94,0,0,0.14,504.94,3574.96,26110244,99.93,0,0,0.15,504.91,3574.99,26110245,99.72,0,0,0.32,505.16,3574.76,26110246,99.9,0,0,0.14,505.14,3574.78,26110247,99.73,0,0,0.55,505.18,3574.72,26110248,99.9,0,0,0.16,504.2,3575.71,26110249,99.92,0,0,0.15,504.29,3575.61,26110250,99.77,0,0,0.37,505.29,3574.62,26110251,99.9,0,0,0.16,505.26,3574.65,26110252,99.68,0,0,0.61,505.75,3574.15,26110253,99.93,0,0,0.17,505.21,3574.68,26110254,99.88,0,0,0.18,505.18,3574.71,26110255,99.77,0,0,0.32,505.44,3574.47,26110256,99.88,0,0.01,0.18,505.39,3574.52,26110257,99.78,0,0,0.56,505.66,3574.24,26110258,99.92,0,0,0.19,505.11,3574.77,26110259,99.92,0,0,0.16,505.26,3574.62,26110260,99.52,0,0,0.34,505.48,3574.41,26110261,99.85,0,0,0.16,505.49,3574.41,26110262,99.72,0,0,0.4,505.78,3574.1,26110263,99.9,0,0,0.37,505.2,3574.69,26110264,99.92,0,0,0.17,505.16,3574.71,26110265,99.85,0,0,0.34,505.67,3574.23,26110266,99.9,0,0,0.17,505.64,3574.25,26110267,99.77,0,0,0.45,505.95,3573.94,26110268,99.92,0,0,0.31,505.35,3574.53,26110269,99.74,0,0,0.31,505.1,3574.76,26110270,99.82,0,0,0.39,504.89,3574.99,26110271,99.87,0,0,0.2,505,3574.88,26110272,99.9,0,0,0.19,504.99,3574.88,26110273,99.74,0,0,0.59,505.56,3574.31,26110274,98.72,0,0,0.19,505.2,3574.68,26110275,99.76,0,0,0.37,505.2,3574.69,26110276,99.89,0,0,0.17,505.17,3574.71,26110277,99.03,0,0,0.22,505.14,3574.74,26110278,99.74,0,0,0.55,505.49,3574.39,26110279,99.8,0,0,0.15,505.1,3574.78,26110280,99.75,0,0,0.3,505.11,3574.79,26110281,98.66,0,0,0.15,505.16,3574.73,26110282,99.81,0,0,0.17,505.13,3574.75,26110283,99.78,0,0,0.57,505.51,3574.37,26110284,99.91,0,0,0.16,504.96,3574.92,26110285,99.39,0,0,0.47,505.76,3574.13,26110286,99.93,0,0,0.18,505.68,3574.19,26110287,99.94,0,0,0.18,505.66,3574.21,26110288,99.52,0,0,0.59,505.69,3574.18,26110289,99.93,0,0,0.14,504.88,3574.98,26110290,99.6,0,0,0.34,504.88,3575,26110291,99.9,0,0,0.14,504.86,3575.02,26110292,98.61,0,0,0.16,504.83,3575.04,26110293,99.75,0,0,0.39,505.13,3574.74,26110294,99.9,0,0,0.29,504.52,3575.34,26110295,99.51,0,0,0.34,504.74,3575.14,26110296,99.94,0,0,0.18,504.56,3575.32,26110297,99.82,0,0,0.14,504.46,3575.41,26110298,99.75,0,0,0.57,505.09,3574.78,26110299,99.63,0,0,0.29,505.41,3574.44,26110300,99.7,0,0,0.36,505.4,3574.48,26110301,99.9,0,0,0.18,505.38,3574.49,26110302,99.65,0,0,0.14,505.35,3574.52,26110303,99.81,0,0,0.31,506.11,3573.75,26110304,99.93,0,0,0.41,504.76,3575.1,26110305,99.85,0,0,0.33,504.76,3575.11,26110306,99.74,0,0,0.15,504.74,3575.13,26110307,99.9,0,0,0.16,504.73,3575.14,26110308,99.79,0,0,0.15,504.7,3575.16,26110309,99.75,0,0,0.58,506.47,3573.38,26110310,99.8,0,0,0.32,505.67,3574.2,26110311,99.85,0,0,0.16,505.66,3574.21,26110312,99.9,0,0,0.18,505.63,3574.24,26110313,99.91,0,0,0.15,505.62,3574.24,26110314,99.72,0,0,0.59,505.66,3574.19,26110315,99.72,0,0,0.4,505.11,3574.76,26110316,99.88,0.01,0.02,0.21,505.19,3574.67,26110317,99.88,0,0,0.14,505.19,3574.67,26110318,99.86,0,0,0.16,505.16,3574.7,26110319,99.57,0,0,0.56,504.78,3575.08,26110320,99.48,0,0,0.31,505.37,3574.5,26110321,99.77,0,0,0.14,505.37,3574.5,26110322,99.83,0,0,0.16,505.35,3574.52,26110323,99.85,0,0,0.14,505.37,3574.49,26110324,99.69,0,0,0.5,505.27,3574.59,26110325,99.78,0,0,0.41,504.5,3575.37,26110326,99.83,0,0,0.17,504.46,3575.4,26110327,99.82,0,0,0.15,504.44,3575.41,26110328,99.85,0,0,0.14,504.42,3575.44,26110329,99.45,0,0,0.62,505.74,3574.09,26110330,99.73,0,0,0.37,504.64,3575.21,26110331,99.83,0,0,0.16,504.63,3575.21,26110332,99.83,0,0,0.16,504.6,3575.24,26110333,99.79,0,0,0.15,504.58,3575.25,26110334,99.71,0,0,0.55,505.02,3574.83,26110335,99.72,0,0,0.37,505.99,3573.89,26110336,99.84,0,0,0.14,505.96,3573.91,26110337,99.79,0,0,0.18,505.93,3573.94,26110338,97.78,0,0,0.16,505.92,3573.95,26110339,99.72,0,0,0.38,506.23,3573.63,26110340,99.49,0,0,0.53,504.69,3575.2,26110341,99.82,0,0,0.13,504.64,3575.25,26110342,99.65,0,0,0.2,504.89,3575,26110343,99.84,0,0,0.14,505.34,3574.55,26110344,99.82,0,0,0.15,505.32,3574.56,26110345,99.57,0,0,0.71,505.91,3573.99,26110346,99.48,0,0,0.16,505.74,3574.16,26110347,99.86,0,0,0.14,505.71,3574.18,26110348,99.83,0,0,0.16,505.71,3574.18,26110349,99.83,0,0,0.13,505.67,3574.21,26110350,99.38,0,0,0.79,506.07,3573.83,26110351,99.85,0,0,0.18,505.66,3574.23,26110352,99.82,0,0,0.18,505.65,3574.24,26110353,99.84,0,0,0.18,505.62,3574.27,26110354,99.85,0,0,0.14,505.6,3574.28,26110355,99.46,0,0,0.73,506.12,3573.77,26110356,99.85,0,0,0.14,505.82,3574.07,26110357,99.8,0,0,0.16,505.85,3574.04,26110358,99.86,0,0,0.14,505.96,3573.93,26110359,99.64,0,0,0.32,505.95,3573.92,26110360,99.6,0,0,0.72,506.11,3573.77,26110361,99.83,0,0,0.14,505.93,3573.95,26110362,99.83,0,0,0.16,505.91,3573.96,26110363,99.8,0,0,0.14,505.89,3573.98,26110364,99.84,0,0,0.15,505.86,3574.03,26110365,99.38,0,0,0.7,505.35,3574.55,26110366,99.83,0,0,0.21,505.1,3574.8,26110367,98.78,0,0,0.14,505.1,3574.8,26110368,99.82,0,0,0.15,505.07,3574.83,26110369,99.82,0,0,0.14,505.05,3574.83,26110370,99.54,0,0,0.73,506.29,3573.62,26110371,99.82,0,0,0.14,505.75,3574.15,26110372,99.82,0,0,0.17,505.72,3574.17,26110373,99.83,0,0,0.14,505.71,3574.18,26110374,99.43,0,0,0.13,505.7,3574.19,26110375,99.1,0,0,0.58,506.28,3573.62,26110376,99.84,0,0,0.36,504.92,3574.98,26110377,99.83,0,0,0.14,504.91,3574.98,26110378,99.67,0,0,0.18,504.9,3574.99,26110379,99.66,0,0,0.19,504.87,3575.01,26110380,98.49,0,0,10.84,505.8,3575.4,26110381,99.82,0,0,0.36,506.11,3575.19,26110382,99.85,0,0,0.17,506.11,3575.19,26110383,99.84,0,0,0.16,506.25,3575.04,26110384,99.7,0,0,0.14,506.24,3575.05,26110385,99.61,0,0,0.31,506.01,3575.35,26110386,99.53,0,0,0.57,505.12,3576.24,26110387,99.81,0,0,0.14,504.49,3576.87,26110388,99.69,0,0,0.15,504.47,3576.88,26110389,99.22,0,0,0.29,504.93,3576.41,26110390,99.76,0,0,0.37,504.95,3576.41,26110391,99.68,0,0,0.58,505.73,3575.63,26110392,99.85,0,0,0.15,505.4,3575.95,26110393,99.81,0,0,0.17,505.38,3575.97,26110394,99.85,0,0,0.14,505.36,3575.98,26110395,99.75,0,0,0.32,505.53,3575.82,26110396,99.66,0,0,0.54,505.37,3575.99,26110397,99.82,0,0,0.2,504.52,3576.83,26110398,99.83,0,0,0.14,504.52,3576.83,26110399,99.68,0,0,0.15,504.48,3576.86,26110400,99.69,0,0,0.34,504.73,3576.63,26110401,98.14,0,0,0.53,505.36,3575.99,26110402,99.81,0,0,0.2,505.11,3576.24,26110403,99.83,0,0,0.15,504.92,3576.43,26110404,99.83,0,0,0.15,504.9,3576.44,26110405,99.72,0,0,0.34,505.14,3576.22,26110406,99.66,0,0,0.56,505.8,3575.56,26110407,99.33,0,0,0.14,505.49,3575.86,26110408,99.81,0,0,0.14,505.52,3575.83,26110409,99.84,0,0,0.14,505.5,3575.84,26110410,99.71,0,0,0.33,505.27,3576.09,26110411,99.7,0,0,0.57,505.59,3575.76,26110412,99.82,0,0,0.14,505.22,3576.13,26110413,99.82,0,0,0.16,505.19,3576.15,26110414,99.83,0,0,0.14,505.18,3576.16,26110415,99.62,0,0,0.33,505,3576.36,26110416,99.85,0,0,0.18,504.91,3576.44,26110417,99.49,0,0,0.54,504.76,3576.59,26110418,99.83,0,0,0.15,504.37,3576.98,26110419,99.73,0,0,0.27,505.46,3575.86,26110420,99.76,0,0,0.35,505.51,3575.82,26110421,99.34,0,0,0.16,505.49,3575.84,26110422,99.71,0,0,0.54,505.82,3575.51,26110423,99.85,0,0,0.16,505.45,3575.88,26110424,99.84,0,0,0.15,505.42,3575.9,26110425,99.76,0,0,0.36,505.42,3575.91,26110426,99.86,0,0,0.14,505.4,3575.93,26110427,99.72,0,0,0.54,505.74,3575.6,26110428,99.66,0,0,0.15,505.36,3575.98,26110429,99.85,0,0,0.13,505.36,3575.98,26110430,99.52,0,0,0.32,505.1,3576.25,26110431,99.84,0,0,0.18,505.26,3576.08,26110432,99.7,0,0,0.55,505.42,3575.92,26110433,99.84,0,0,0.16,504.73,3576.6,26110434,99.84,0,0,0.17,504.71,3576.62,26110435,99.78,0,0,0.35,504.94,3576.4,26110436,99.85,0,0,0.17,504.94,3576.41,26110437,99.7,0,0,0.61,505.62,3575.74,26110438,99.84,0,0,0.16,505.64,3575.73,26110439,99.83,0,0.01,0.17,505.61,3575.75,26110440,99.55,0,0.02,0.36,505.45,3575.93,26110441,99.59,0.01,0.02,0.16,505.42,3575.96,26110442,99.63,0.01,0.03,0.53,505.22,3576.15,26110443,99.78,0,0.02,0.17,504.23,3577.13,26110444,99.76,0.01,0.02,0.17,504.18,3577.18,26110445,99.48,0,0.02,0.3,505.44,3575.94,26110446,99.79,0.01,0.02,0.16,505.43,3575.95,26110447,99.48,0,0.02,0.57,505.78,3575.59,26110448,99.8,0,0.02,0.14,505.45,3575.91,26110449,99.59,0.01,0.02,0.27,505.67,3575.67,26110450,99.68,0,0.02,0.29,504.72,3576.63,26110451,99.78,0,0.01,0.16,504.62,3576.73,26110452,99.59,0,0.02,0.49,505.51,3575.84,26110453,99.75,0.01,0.02,0.2,505.63,3575.7,26110454,99.43,0,0.02,0.15,505.68,3575.66,26110455,99.63,0.01,0.02,0.3,505.47,3575.88,26110456,99.73,0.01,0.03,0.19,505.41,3575.94,26110457,99.72,0.01,0.03,0.25,505.43,3575.91,26110458,99.57,0.01,0.02,0.57,505.84,3575.49,26110459,99.74,0,0.02,0.17,505.36,3575.97,26110460,99.69,0.01,0.03,0.28,505.45,3575.9,26110461,99.74,0.01,0.02,0.18,505.41,3575.93,26110462,99.75,0.01,0.02,0.21,505.3,3576.04,26110463,99.61,0.01,0.02,0.57,505.93,3575.41,26110464,99.73,0,0.02,0.17,505.64,3575.68,26110465,99.28,0,0.02,0.32,504.73,3576.61,26110466,99.77,0,0.02,0.17,504.7,3576.63,26110467,99.58,0,0.02,0.22,504.64,3576.69,26110468,99.62,0.01,0.03,0.59,505.82,3575.5,26110469,99.8,0,0.02,0.17,505.64,3575.68,26110470,99.64,0.01,0.02,0.29,505.4,3575.94,26110471,99.81,0.01,0.03,0.13,505.42,3575.92,26110472,99.81,0.01,0.03,0.16,505.38,3575.95,26110473,99.64,0,0.02,0.54,505.43,3575.89,26110474,99.78,0.01,0.02,0.14,504.9,3576.42,26110475,99.73,0,0.02,0.28,505.11,3576.23,26110476,99.8,0.01,0.02,0.16,505.2,3576.13,26110477,99.83,0,0.02,0.15,505.16,3576.17,26110478,99.68,0,0.02,0.49,505.74,3575.58,26110479,99.75,0,0.02,0.32,505.16,3576.14,26110480,99.76,0.01,0.02,0.27,504.89,3576.43,26110481,99.66,0.01,0.03,0.16,504.94,3576.37,26110482,99.81,0.01,0.02,0.14,504.9,3576.41,26110483,99.71,0,0.02,0.4,505.62,3575.68,26110484,99.6,0,0.02,0.3,505.67,3575.65,26110485,99.72,0.01,0.02,0.28,505.37,3575.97,26110486,99.68,0.01,0.02,0.15,505.42,3575.91,26110487,99.8,0,0.02,0.16,505.39,3575.93,26110488,99.73,0.01,0.02,0.4,505.79,3575.54,26110489,98.86,0,0.02,0.29,505.68,3575.64,26110490,99.72,0.01,0.02,0.28,505.88,3575.46,26110491,99.85,0,0.02,0.14,505.93,3575.41,26110492,99.87,0,0.02,0.14,505.9,3575.45,26110493,99.73,0,0.02,0.41,506.21,3575.13,26110494,99.88,0.01,0.03,0.29,505.66,3575.68,26110495,99.76,0.01,0.05,0.29,504.68,3576.68,26110496,99.86,0.01,0.02,0.19,504.64,3576.71,26110497,99.83,0.01,0.03,0.15,504.67,3576.67,26110498,99.82,0.01,0.03,0.14,504.67,3576.67,26110499,99.71,0,0.02,0.56,505.94,3575.4,26110500,99.54,0,0.02,0.32,505.7,3575.66,26110501,99.79,0.01,0.02,0.18,505.65,3575.7,26110502,99.8,0,0.02,0.18,505.66,3575.69,26110503,99.84,0,0.02,0.2,505.65,3575.69,26110504,98.76,0.01,0.03,0.56,506.29,3575.04,26110505,99.75,0,0.02,0.3,505.93,3575.42,26110506,99.86,0.01,0.03,0.16,505.89,3575.46,26110507,97.76,0,0.02,0.12,505.88,3575.47,26110508,99,0,0.02,0.17,505.9,3575.44,26110509,99.66,0.01,0.02,0.75,506.33,3574.98,26110510,99.74,0,0.02,0.3,505.68,3575.65,26110511,99.83,0.01,0.03,0.21,505.67,3575.65,26110512,99.88,0.01,0.02,0.16,505.67,3575.65,26110513,99.85,0.01,0.02,0.15,505.61,3575.7,26110514,99.7,0,0.02,0.56,506.11,3575.21,26110515,99.49,0,0.02,0.27,505.88,3575.46,26110516,99.85,0,0.02,0.14,505.89,3575.45,26110517,99.86,0.01,0.02,0.21,505.88,3575.46,26110518,99.85,0,0.02,0.14,505.86,3575.47,26110519,99.67,0,0.02,0.59,506.32,3575,26110520,99.68,0.01,0.03,0.28,505.9,3575.44,26110521,99.82,0,0.02,0.16,505.92,3575.42,26110522,98.54,0.01,0.02,0.17,505.82,3575.51,26110523,99.87,0,0.02,0.18,505.6,3575.73,26110524,99.68,0.01,0.02,0.55,506.08,3575.25,26110525,99.72,0,0.02,0.3,506.11,3575.23,26110526,99.88,0,0.02,0.13,506.14,3575.2,26110527,99.89,0.01,0.03,0.16,506.15,3575.19,26110528,99.86,0,0.02,0.16,506.08,3575.25,26110529,99.7,0.01,0.02,0.55,506.39,3574.93,26110530,99.67,0,0.02,0.27,505.18,3576.16,26110531,99.87,0,0.02,0.16,505.18,3576.16,26110532,99.84,0,0.02,0.14,505.16,3576.17,26110533,99.89,0.01,0.03,0.15,505.12,3576.2,26110534,99.88,0,0.02,0.14,505.18,3576.14,26110535,99.5,0.01,0.02,0.69,506.75,3574.58,26110536,99.88,0.01,0.02,0.18,506.13,3575.2,26110537,99.89,0.01,0.02,0.14,506.12,3575.21,26110538,99.87,0,0.02,0.16,505.51,3575.81,26110539,99.74,0,0.02,0.27,505.41,3575.89,26110540,99.11,0.01,0.02,0.66,505.5,3575.81,26110541,99.85,0.01,0.02,0.16,505.12,3576.19,26110542,99.86,0,0.02,0.14,505.16,3576.14,26110543,99.88,0.01,0.02,0.15,505.11,3576.19,26110544,99.87,0,0.02,0.14,505.18,3576.14,26110545,99.64,0.01,0.02,0.7,505.17,3576.18,26110546,99.8,0,0.02,0.18,504.9,3576.45,26110547,99.82,0.01,0.02,0.14,504.91,3576.42,26110548,99.86,0,0.02,0.16,504.85,3576.48,26110549,99.81,0.01,0.02,0.15,504.92,3576.41,26110550,99.56,0,0.02,0.67,505.29,3576.06,26110551,99.84,0,0.02,0.16,504.64,3576.7,26110552,99.87,0,0.02,0.14,504.66,3576.68,26110553,99.87,0,0.02,0.15,504.59,3576.74,26110554,99.87,0,0.02,0.16,504.7,3576.63,26110555,99.57,0.01,0.03,0.71,504.64,3576.7,26110556,99.82,0,0.02,0.22,505.37,3575.96,26110557,99.86,0.01,0.03,0.15,505.42,3575.91,26110558,98.05,0.01,0.02,0.15,505.38,3575.95,26110559,99.86,0,0.02,0.13,505.37,3575.95,26110560,99.37,0.01,0.02,0.82,505.7,3575.64,26110561,99.84,0.01,0.03,0.12,505.11,3576.23,26110562,98.9,0,0.02,0.16,505.16,3576.17,26110563,99.83,0.01,0.02,0.14,505.13,3576.2,26110564,99.85,0,0.02,0.14,505.09,3576.24,26110565,99.48,0.01,0.02,0.44,505.19,3576.15,26110566,99.85,0.01,0.03,0.37,505.38,3575.96,26110567,99.83,0,0.02,0.18,505.38,3575.96,26110568,99.82,0.01,0.03,0.14,505.4,3575.92,26110569,99.74,0.01,0.02,0.32,505.1,3576.2,26110570,99.75,0,0.02,0.3,505.38,3575.93,26110571,99.59,0.01,0.02,0.55,505.74,3575.57,26110572,99.8,0.01,0.02,0.14,505.35,3575.95,26110573,99.77,0.01,0.03,0.15,505.38,3575.92,26110574,99.83,0.01,0.02,0.16,505.34,3575.97,26110575,99.57,0.01,0.03,0.28,504.86,3576.47,26110576,98,0,0.02,0.56,505.73,3575.6,26110577,99.82,0.01,0.03,0.18,505.38,3575.95,26110578,99.85,0.01,0.02,0.16,505.36,3575.96,26110579,99.87,0,0.02,0.16,505.38,3575.93,26110580,99.64,0.01,0.03,0.3,505.13,3576.2,26110581,99.69,0,0.02,0.55,504.79,3576.54,26110582,99.83,0,0.02,0.16,504.36,3576.96,26110583,98.87,0.01,0.02,0.17,505.07,3576.25,26110584,99.87,0,0.02,0.14,505.14,3576.18,26110585,99.84,0,0.02,0.29,505.09,3576.24,26110586,94.84,0.34,0.04,197.05,515.9,3566.17,26110587,99.71,0.01,0.03,64.41,507.94,3574.15,26110588,99.85,0,0.02,0.18,507.9,3574.18,26110589,99.88,0,0.02,0.18,507.93,3574.15,26110590,99.63,0,0.02,0.34,507.19,3574.9,26110591,98.97,0,0.02,0.62,507.1,3575.02,26110592,99.81,0.01,0.02,0.18,505.76,3576.39,26110593,99.85,0.01,0.03,0.18,505.74,3576.41,26110594,99.8,0,0.02,0.17,505.75,3576.4,26110595,99.74,0.01,0.03,0.31,505.54,3576.62,26110596,99.65,0.01,0.02,0.61,505.86,3576.31,26110597,99.84,0.01,0.02,0.14,505.5,3576.69,26110598,99.84,0.01,0.03,0.15,505.52,3576.67,26110599,99.72,0.01,0.02,0.29,505.77,3576.4,26110600,99.73,0.01,0.03,0.32,505.58,3576.6,26110601,99.75,0,0.02,0.4,505.87,3576.3,26110602,99.88,0,0.02,0.32,505.47,3576.7,26110603,99.87,0.01,0.03,0.17,505.49,3576.67,26110604,99.88,0,0.02,0.19,505.47,3576.7,26110605,99.69,0,0.02,0.36,505.3,3576.88,26110606,99.74,0.01,0.02,0.3,505.65,3576.53,26110607,99.87,0,0.02,0.38,505.75,3576.43,26110608,99.89,0,0.02,0.14,505.76,3576.4,26110609,99.84,0.01,0.03,0.14,505.71,3576.45,26110610,99.76,0.01,0.02,0.27,505.3,3576.88,26110611,99.85,0,0.02,0.16,505.27,3576.91,26110612,98.8,0,0.02,0.57,506.23,3575.94,26110613,99.88,0.01,0.02,0.15,505.75,3576.41,26110614,99.85,0,0.02,0.14,505.71,3576.45,26110615,99.71,0,0.02,0.29,505.29,3576.89,26110616,99.86,0,0.02,0.16,505.25,3576.93,26110617,99.71,0,0.02,0.55,504.78,3577.4,26110618,99.87,0.01,0.03,0.15,504.05,3578.12,26110619,99.85,0,0.02,0.14,503.98,3578.19,26110620,99.46,0.01,0.03,0.29,505.5,3576.68,26110621,99.78,0.01,0.03,0.16,505.51,3576.67,26110622,99.72,0.01,0.02,0.56,505.66,3576.52,26110623,99.85,0,0.02,0.17,505.28,3576.89,26110624,99.88,0,0.02,0.15,505.22,3576.94,26110625,99.78,0.01,0.03,0.33,505.5,3576.68,26110626,99.93,0.01,0.02,0.14,505.53,3576.65,26110627,99.74,0.01,0.03,0.55,505.97,3576.21,26110628,99.86,0,0.02,0.14,505.78,3576.39,26110629,99.76,0,0.02,0.39,505.73,3576.41,26110630,99.66,0.01,0.03,0.32,505.5,3576.66,26110631,99.87,0.01,0.03,0.22,505.51,3576.66,26110632,99.73,0,0.02,0.61,505.89,3576.26,26110633,99.9,0,0.02,0.2,505.75,3576.4,26110634,99.79,0.01,0.02,0.18,505.7,3576.46,26110635,99.66,0,0.02,0.32,504.77,3577.41,26110636,99.85,0.01,0.02,0.18,504.76,3577.42,26110637,99.71,0.01,0.02,0.45,505.26,3576.91,26110638,99.88,0.01,0.03,0.29,505.23,3576.95,26110639,99.85,0,0.02,0.17,505.26,3576.91,26110640,99.73,0.01,0.03,0.28,505.47,3576.71,26110641,99.87,0,0.02,0.13,505.52,3576.66,26110642,99.7,0.01,0.02,0.33,505.79,3576.39,26110643,99.86,0,0.02,0.41,505.49,3576.69,26110644,99.86,0.01,0.02,0.19,505.48,3576.69,26110645,99.8,0.01,0.03,0.33,505.71,3576.47,26110646,99.86,0.01,0.03,0.14,505.72,3576.46,26110647,99.77,0,0.02,0.3,506.09,3576.09,26110648,99.82,0,0.02,0.42,504.93,3577.24,26110649,99.9,0,0,0.19,504.97,3577.2,26110650,99.67,0,0,0.29,504.82,3577.37,26110651,99.88,0,0,0.14,504.78,3577.4,26110652,99.91,0,0,0.16,504.78,3577.41,26110653,99.76,0,0,0.54,505.13,3577.05,26110654,99.93,0,0,0.15,504.74,3577.44,26110655,99.84,0,0,0.29,505.7,3576.5,26110656,99.93,0,0,0.14,505.68,3576.51,26110657,99.9,0,0,0.14,505.67,3576.52,26110658,99.76,0,0,0.55,506.51,3575.67,26110659,99.75,0,0,0.27,505.69,3576.47,26110660,99.84,0,0,0.27,506.09,3576.09,26110661,99.9,0,0,0.16,506.08,3576.09,26110662,99.89,0,0,0.14,506.05,3576.12,26110663,99.71,0,0,0.49,506.51,3575.65,26110664,99.9,0,0,0.2,506,3576.15,26110665,99.77,0,0,0.28,505.78,3576.4,26110666,99.94,0,0,0.33,505.74,3576.43,26110667,99.88,0,0,0.16,505.74,3576.43,26110668,99.77,0,0,0.57,506.05,3576.11,26110669,99.9,0,0,0.18,505.67,3576.49,26110670,99.77,0,0,0.31,505.93,3576.25,26110671,99.93,0,0,0.18,506.04,3576.15,26110672,99.94,0,0,0.18,506.08,3576.11,26110673,99.75,0.01,0.01,0.57,506.33,3575.85,26110674,99.92,0,0,0.14,505.95,3576.23,26110675,99.86,0,0,0.36,505.72,3576.47,26110676,99.88,0,0,0.18,505.68,3576.51,26110677,99.9,0,0,0.18,505.67,3576.51,26110678,99.76,0,0,0.43,506.13,3576.05,26110679,99.88,0,0,0.3,506.05,3576.12,26110680,99.53,0.03,0.02,0.32,505.85,3576.34,26110681,99.76,0.03,0.02,0.14,505.73,3576.46,26110682,99.81,0.04,0.02,0.16,505.75,3576.43,26110683,99.81,0.04,0.03,0.14,505.74,3576.43,26110684,99.6,0.04,0.05,0.55,506.45,3575.72,26110685,99.67,0.04,0.05,0.35,505.75,3576.44,26110686,99.88,0.03,0.04,0.14,505.74,3576.45,26110687,99.89,0.02,0.04,0.18,505.74,3576.44,26110688,99.87,0.05,0.05,0.16,505.74,3576.44,26110689,99.61,0.04,0.04,0.74,506.32,3575.83,26110690,99.69,0.02,0.04,0.33,505.99,3576.18,26110691,99.8,0.01,0.02,0.18,506.02,3576.15,26110692,99.79,0.01,0.03,0.18,506.01,3576.15,26110693,99.73,0.01,0.02,0.2,505.35,3576.81,26110694,99.63,0.01,0.02,0.61,505.52,3576.63,26110695,99.65,0,0.02,0.35,505.27,3576.9,26110696,99.78,0,0.02,0.18,505.24,3576.93,26110697,99.78,0.01,0.02,0.25,505.26,3576.9,26110698,99.73,0.01,0.02,0.21,505.2,3576.95,26110699,99.63,0.01,0.02,0.63,505.73,3576.42,26110700,99.71,0,0.02,0.36,505.23,3576.93,26110701,99.7,0.01,0.02,0.2,505.24,3576.93,26110702,99.68,0.01,0.03,0.24,505.24,3576.92,26110703,99.71,0.01,0.03,0.2,505,3577.16,26110704,99.69,0,0.02,0.59,505.47,3576.68,26110705,99.57,0.01,0.03,0.35,505.02,3577.14,26110706,99.68,0,0.02,0.18,504.98,3577.19,26110707,99.76,0.01,0.03,0.18,505.02,3577.14,26110708,99.79,0.01,0.02,0.19,504.99,3577.16,26110709,99.58,0,0.02,0.56,505.22,3576.93,26110710,99.65,0.01,0.03,0.32,505.52,3576.65,26110711,99.83,0.01,0.03,0.18,505.48,3576.68,26110712,99.78,0,0.02,0.18,505.45,3576.71,26110713,99.78,0.01,0.02,0.18,505.52,3576.63,26110714,99.73,0,0.02,0.55,506.07,3576.08,26110715,99.79,0,0.02,0.39,505.27,3576.9,26110716,99.77,0.01,0.03,0.18,505.27,3576.9,26110717,99.82,0,0.02,0.18,505.23,3576.93,26110718,99.9,0,0.02,0.18,505.26,3576.89,26110719,99.67,0.01,0.02,0.3,505.73,3576.39,26110720,99.46,0.01,0.03,0.68,505.35,3576.79,26110721,99.84,0.01,0.02,0.14,505.04,3577.1,26110722,99.84,0,0.02,0.17,504.97,3577.16,26110723,99.86,0,0.02,0.18,504.99,3577.14,26110724,99.86,0,0.02,0.21,504.98,3577.18,26110725,99.42,0,0.02,0.67,505.89,3576.29,26110726,99.89,0,0.02,0.16,505.53,3576.64,26110727,99.76,0.01,0.03,0.14,505.49,3576.67,26110728,99.78,0,0.02,0.16,505.49,3576.67,26110729,99.86,0.01,0.02,0.14,505.5,3576.66,26110730,99.54,0.01,0.02,0.65,504.94,3577.23,26110731,99.87,0.01,0.03,0.16,504.52,3577.65,26110732,99.85,0,0.03,0.15,504.51,3577.65,26110733,99.82,0.01,0.03,0.14,504.46,3577.7,26110734,99.83,0.01,0.02,0.16,504.51,3577.64,26110735,99.56,0.01,0.03,0.7,506.22,3575.95,26110736,99.82,0.01,0.02,0.13,505.47,3576.69,26110737,99.85,0.01,0.03,0.16,505.53,3576.63,26110738,99.79,0.01,0.03,0.14,505.49,3576.67,26110739,99.82,0,0.02,0.15,505.46,3576.69,26110740,99.46,0,0.02,0.65,506,3576.17,26110741,99.85,0.01,0.02,0.23,505.46,3576.7,26110742,99.85,0,0.02,0.17,505.53,3576.64,26110743,93.13,1.41,0.03,73.86,520.9,3555.01,26110744,99.83,0,0.02,0.2,508.22,3573.59,26110745,99.59,0.01,0.02,0.75,508.69,3573.13,26110746,99.86,0.01,0.03,0.14,508.49,3573.31,26110747,99.86,0,0.02,0.15,508.43,3573.37,26110748,99.84,0.01,0.02,0.18,506.72,3575.13,26110749,99.75,0,0.03,0.3,505.53,3576.33,26110750,99.55,0,0.02,0.54,505.88,3576,26110751,99.86,0.01,0.03,0.3,504.84,3577.04,26110752,99.87,0,0.02,0.14,504.81,3577.07,26110753,99.83,0.01,0.02,0.15,504.83,3577.06,26110754,99.89,0,0.02,0.16,504.83,3577.07,26110755,99.52,0,0.02,0.54,506.13,3575.79,26110756,99.88,0,0.02,0.32,506.09,3575.83,26110757,99.85,0.01,0.02,0.22,506.01,3575.9,26110758,99.88,0.01,0.03,0.18,506.05,3575.85,26110759,99.85,0.01,0.03,0.19,506.05,3575.86,26110760,99.7,0.01,0.02,0.3,505.83,3576.09,26110761,99.75,0.01,0.03,0.57,506.6,3575.32,26110762,99.85,0.01,0.03,0.17,505.78,3576.13,26110763,99.88,0.01,0.03,0.16,505.3,3576.61,26110764,99.88,0.01,0.03,0.14,505.31,3576.59,26110765,98.66,0,0.02,15.71,508.08,3574.44,26110766,99.72,0.01,0.03,0.57,506.29,3575.77,26110767,99.83,0.01,0.03,0.16,505.69,3576.36,26110768,99.84,0.01,0.02,0.14,505.71,3576.34,26110769,99.88,0.01,0.03,0.15,505.67,3576.37,26110770,99.74,0,0.02,0.3,505.7,3576.37,26110771,99.71,0.01,0.02,0.57,505.93,3576.13,26110772,99.82,0,0.02,0.14,505.42,3576.63,26110773,99.85,0,0.02,0.14,505.49,3576.56,26110774,99.85,0.01,0.02,0.14,505.43,3576.61,26110775,99.65,0.01,0.03,0.27,505.7,3576.37,26110776,99.67,0,0.02,0.57,506.1,3575.97,26110777,99.87,0.01,0.02,0.15,505.7,3576.36,26110778,99.86,0.01,0.02,0.14,505.67,3576.38,26110779,99.79,0,0.02,0.32,505.73,3576.31,26110780,99.78,0,0.01,0.26,505.73,3576.32,26110781,99.78,0,0,0.55,506.14,3575.91,26110782,99.89,0,0,0.15,505.88,3576.15,26110783,99.89,0,0,0.14,505.89,3576.14,26110784,99.89,0,0,0.15,505.98,3576.05,26110785,99.78,0,0,0.36,505.75,3576.3,26110786,99.74,0,0,0.57,506.13,3575.92,26110787,99.91,0,0,0.14,505.94,3576.09,26110788,99.9,0,0,0.15,505.91,3576.12,26110789,99.91,0,0,0.14,505.91,3576.14,26110790,99.81,0,0,0.26,505.9,3576.16,26110791,99.75,0,0,0.31,506.24,3575.82,26110792,99.88,0,0,0.4,505.86,3576.2,26110793,99.89,0,0,0.16,505.93,3576.12,26110794,99.92,0,0,0.14,506.04,3576.01,26110795,99.85,0,0,0.29,505.56,3576.5,26110796,99.91,0,0,0.17,505.53,3576.54,26110797,99.77,0,0,0.54,506.73,3575.33,26110798,97.02,0.02,0.01,0.52,511.48,3571.88,26110799,99.83,0.01,0,78.2,508.56,3573.14,26110800,99.67,0.01,0,0.26,508.36,3573.35,26110801,99.89,0.01,0,0.16,508.36,3573.35,26110802,99.73,0.01,0,0.56,508.84,3572.86,26110803,99.8,0.01,0,0.16,508.14,3573.57,26110804,99.85,0.01,0,0.18,506.2,3575.54,26110805,99.8,0.01,0,0.29,505.43,3576.32,26110806,99.85,0.01,0,0.15,505.43,3576.31,26110807,99.76,0.01,0,0.57,505.82,3575.93,26110808,99.88,0,0,0.15,505.43,3576.3,26110809,99.83,0,0,0.29,506.14,3575.59,26110810,99.74,0,0,0.27,505.67,3576.08,26110811,99.91,0,0,0.15,505.62,3576.12,26110812,99.64,0,0,0.53,506.65,3575.09,26110813,99.82,0,0,0.23,506.26,3575.47,26110814,99.87,0,0,0.15,506.26,3575.48,26110815,99.73,0,0,0.29,506.49,3575.28,26110816,99.85,0,0,0.18,506.49,3575.27,26110817,99.74,0,0,0.46,506.67,3575.08,26110818,99.92,0,0,0.31,505.46,3576.29,26110819,99.92,0,0,0.16,505.43,3576.32,26110820,99.81,0,0,0.27,505.44,3576.32,26110821,99.84,0,0,0.13,505.41,3576.35,26110822,99.77,0,0,0.63,506.14,3575.61,26110823,99.92,0,0,0.16,505.84,3575.9,26110824,99.86,0,0,0.14,506,3575.74,26110825,99.72,0,0,0.28,506.25,3575.5,26110826,99.88,0,0,0.14,506.23,3575.52,26110827,99.72,0.01,0,0.32,506.51,3575.24,26110828,99.88,0,0,0.39,506.21,3575.53,26110829,99.88,0,0,0.14,506.17,3575.56,26110830,98.56,0,0,0.31,505.46,3576.3,26110831,99.86,0,0,0.15,505.42,3576.33,26110832,99.9,0,0,0.16,505.4,3576.35,26110833,99.72,0,0,0.64,505.73,3576.02,26110834,99.92,0,0,0.14,505.36,3576.38,26110835,99.74,0,0,0.28,505.37,3576.39,26110836,99.87,0,0,0.15,505.48,3576.28,26110837,99.88,0,0,0.16,505.5,3576.26,26110838,99.79,0,0,0.59,506.71,3575.03,26110839,99.76,0,0,0.29,505.98,3575.74,26110840,99.75,0,0,0.26,506.18,3575.55,26110841,99.85,0,0,0.14,506.17,3575.57,26110842,99.85,0,0,0.16,506.15,3575.58,26110843,99.78,0,0,0.55,506.65,3575.07,26110844,99.9,0,0,0.16,506.34,3575.38,26110845,99.75,0,0,0.29,506.35,3575.38,26110846,99.23,0,0,0.14,506.33,3575.4,26110847,99.83,0,0,0.16,505.93,3575.8,26110848,99.75,0,0,0.57,506.31,3575.4,26110849,99.89,0,0,0.15,505.47,3576.24,26110850,99.71,0,0,0.29,504.74,3576.99,26110851,99.89,0,0,0.17,504.71,3577.01,26110852,99.91,0,0,0.14,504.7,3577.02,26110853,99.7,0,0,0.59,505.4,3576.32,26110854,99.9,0,0,0.16,505.14,3576.58,26110855,99.77,0,0,0.27,505.4,3576.33,26110856,99.89,0,0,0.14,505.36,3576.36,26110857,99.85,0,0,0.17,505.4,3576.32,26110858,99.74,0,0,0.56,505.74,3575.98,26110859,99.91,0,0,0.16,505.18,3576.53,26110860,99.67,0,0,0.28,504.93,3576.79,26110861,99.88,0,0,0.18,504.91,3576.81,26110862,99.84,0,0,0.16,504.88,3576.84,26110863,99.66,0,0,0.55,505.41,3576.3,26110864,99.8,0,0,0.15,505.8,3575.9,26110865,99.77,0,0,0.32,505.34,3576.38,26110866,99.82,0,0,0.16,505.48,3576.23,26110867,99.83,0,0,0.17,505.49,3576.22,26110868,99.66,0,0,0.4,505.83,3575.87,26110869,99.77,0,0,0.54,505.68,3576,26110870,99.72,0,0,0.33,505.44,3576.25,26110871,99.83,0,0,0.17,505.4,3576.29,26110872,99.81,0,0,0.16,505.39,3576.3,26110873,99.81,0,0,0.15,505.37,3576.31,26110874,99.56,0,0,0.6,506.31,3575.37,26110875,99.66,0,0,0.29,505.59,3576.11,26110876,99.83,0,0,0.14,505.58,3576.11,26110877,99.76,0,0,0.19,505.67,3576.02,26110878,99.79,0,0,0.15,505.72,3575.96,26110879,99.67,0,0,0.59,506.29,3575.38,26110880,99.71,0,0,0.29,505.92,3575.77,26110881,99.83,0,0,0.15,505.9,3575.78,26110882,99.76,0,0,0.18,505.86,3575.82,26110883,99.84,0,0,0.15,505.35,3576.32,26110884,99.68,0,0,0.59,505.95,3575.72,26110885,99.67,0,0,0.29,505.6,3576.09,26110886,99.82,0.01,0,0.16,505.66,3576.03,26110887,99.8,0.01,0,0.17,505.64,3576.04,26110888,99.8,0.01,0,0.16,505.62,3576.05,26110889,99.67,0,0,0.54,505.93,3575.73,26110890,99.71,0,0,0.28,505.57,3576.11,26110891,99.82,0,0,0.18,505.56,3576.12,26110892,99.82,0,0,0.15,505.53,3576.14,26110893,99.77,0,0,0.14,505.7,3575.97,26110894,99.68,0,0,0.4,506.12,3575.55,26110895,99.71,0,0,0.43,505.93,3575.77,26110896,99.84,0,0,0.14,505.91,3575.79,26110897,99.81,0,0,0.14,505.9,3575.8,26110898,99.83,0,0,0.16,505.87,3575.82,26110899,99.59,0,0,0.65,506.23,3575.44,26110900,99.7,0,0,0.34,505.87,3575.81,26110901,99.83,0,0,0.16,505.84,3575.84,26110902,99.79,0,0,0.15,505.82,3575.85,26110903,99.77,0,0,0.14,505.79,3575.88,26110904,99.71,0,0,0.3,506.36,3575.31,26110905,99.64,0,0,0.6,504.81,3576.87,26110906,99.83,0,0,0.16,504.72,3576.96,26110907,99.76,0,0,0.14,504.7,3576.97,26110908,99.81,0,0,0.15,504.68,3576.99,26110909,99.8,0,0,0.13,504.66,3577,26110910,99.58,0,0,0.71,506.03,3575.65,26110911,99.85,0,0,0.14,505.87,3575.8,26110912,99.84,0,0,0.16,505.85,3575.82,26110913,99.83,0,0,0.15,505.84,3575.83,26110914,99.82,0,0,0.15,505.81,3575.85,26110915,99.58,0,0,0.69,506.16,3575.52,26110916,99.81,0,0,0.14,505.79,3575.88,26110917,99.83,0,0,0.16,505.96,3575.71,26110918,99.84,0,0,0.14,505.97,3575.7,26110919,99.83,0,0,0.14,505.95,3575.71,26110920,99.51,0,0,0.7,506.31,3575.36,26110921,99.83,0,0,0.14,505.93,3575.74,26110922,99.83,0,0,0.16,505.91,3575.76,26110923,99.85,0,0,0.14,505.88,3575.78,26110924,99.84,0,0,0.16,505.87,3575.79,26110925,99.62,0,0,0.71,506.76,3574.91,26110926,99.83,0,0,0.18,506.09,3575.57,26110927,99.83,0,0,0.14,506.06,3575.6,26110928,99.78,0,0,0.14,506.09,3575.57,26110929,99.67,0,0,0.36,505.97,3575.67,26110930,99.61,0,0.02,0.74,506.56,3575.09,26110931,99.8,0,0,0.14,505.89,3575.76,26110932,99.79,0,0,0.14,505.87,3575.77,26110933,99.85,0,0,0.17,505.84,3575.79,26110934,99.8,0,0,0.15,505.84,3575.81,26110935,99.41,0,0,0.55,505.58,3576.08,26110936,99.8,0,0,0.3,505.81,3575.84,26110937,99.82,0,0,0.18,505.87,3575.79,26110938,99.83,0,0,0.16,505.96,3575.69,26110939,99.77,0,0,0.15,505.93,3575.72,26110940,99.55,0,0,0.7,505.68,3576,26110941,99.83,0,0,0.15,505.67,3576.01,26110942,99.82,0,0,0.16,505.64,3576.04,26110943,99.82,0,0,0.2,505.63,3576.04,26110944,99.78,0,0,0.15,505.59,3576.07,26110945,99.67,0,0,0.31,505.82,3575.86,26110946,99.67,0,0,0.57,504.96,3576.72,26110947,99.77,0,0,0.14,504.6,3577.08,26110948,99.83,0,0,0.17,504.73,3576.94,26110949,99.8,0,0,0.16,504.7,3576.96,26110950,99.66,0,0,0.32,505.67,3576.01,26110951,94.82,0.34,0.01,260.98,518.39,3563.6,26110952,99.73,0,0,0.16,508.93,3572.83,26110953,99.78,0,0,0.15,508.9,3572.86,26110954,99.78,0,0,0.15,508.88,3572.87,26110955,99.68,0,0,0.3,508.64,3573.13,26110956,99.66,0,0,0.64,507.77,3574.01,26110957,99.78,0,0,0.2,506.37,3575.43,26110958,99.82,0,0,0.17,506.12,3575.67,26110959,99.62,0,0,0.43,506.09,3575.68,26110960,99.71,0,0,0.31,506.58,3575.2,26110961,99.67,0,0,0.52,506.97,3574.82,26110962,99.8,0,0,0.25,506.3,3575.49,26110963,99.79,0,0,0.17,506.27,3575.51,26110964,99.84,0,0,0.17,506.27,3575.51,26110965,99.69,0,0,0.37,506.27,3575.53,26110966,99.68,0,0,0.57,506.6,3575.19,26110967,99.82,0,0,0.17,506.22,3575.57,26110968,99.85,0,0,0.17,506.21,3575.58,26110969,99.84,0,0,0.17,506.33,3575.46,26110970,99.74,0,0,0.32,506.14,3575.66,26110971,99.62,0,0,0.44,506.49,3575.3,26110972,99.8,0,0,0.3,506.34,3575.45,26110973,99.79,0,0,0.18,506.31,3575.48,26110974,99.81,0,0,0.18,506.3,3575.48,26110975,99.64,0,0,0.34,506.54,3575.27,26110976,99.66,0,0,0.57,506.87,3574.93,26110977,99.81,0,0,0.2,506.5,3575.3,26110978,99.84,0,0,0.2,506.49,3575.3,26110979,99.82,0,0,0.2,506.46,3575.33,26110980,99.51,0,0,0.36,506.53,3575.27,26110981,99.73,0,0,0.17,506.52,3575.28,26110982,99.58,0,0,0.59,506.96,3574.83,26110983,99.81,0,0,0.19,506.59,3575.22,26110984,99.83,0,0,0.21,506.58,3575.23,26110985,99.64,0,0,0.32,505.39,3576.44,26110986,99.81,0,0,0.18,505.33,3576.49,26110987,99.69,0,0,0.57,506.63,3575.19,26110988,99.84,0,0,0.17,506.27,3575.54,26110989,99.67,0,0,0.38,506.72,3575.07,26110990,99.73,0,0,0.32,506.72,3575.08,26110991,99.76,0,0,0.18,506.71,3575.09,26110992,99.7,0,0,0.57,506.72,3575.07,26110993,99.8,0,0,0.18,506.35,3575.43,26110994,99.82,0,0,0.16,506.33,3575.48,26110995,99.7,0,0,0.32,506.58,3575.25,26110996,99.84,0,0,0.17,506.56,3575.27,26110997,99.65,0,0,0.62,507.05,3574.77,26110998,99.83,0,0,0.16,506.76,3575.06,26110999,99.82,0,0,0.17,506.75,3575.07,26111000,99.75,0,0,0.32,506.5,3575.33,26111001,99.84,0,0,0.18,506.48,3575.34,26111002,99.63,0,0,0.58,506.15,3575.67,26111003,99.78,0,0,0.22,505.46,3576.36,26111004,99.83,0,0,0.16,505.52,3576.3,26111005,99.7,0,0,0.33,505.61,3576.22,26111006,99.83,0,0,0.21,505.6,3576.23,26111007,99.68,0,0,0.58,506.24,3575.59,26111008,99.01,0,0,0.17,505.55,3576.27,26111009,99.81,0,0,0.17,505.52,3576.29,26111010,98.56,0,0,0.3,504.8,3577.03,26111011,99.79,0,0,0.14,504.77,3577.06,26111012,99.69,0,0,0.39,505.17,3576.65,26111013,99.78,0,0,0.32,505.47,3576.35,26111014,99.81,0,0,0.14,505.45,3576.37,26111015,99.69,0,0,0.31,505.45,3576.38,26111016,99.84,0,0,0.16,505.61,3576.21,26111017,99.68,0,0,0.39,505.99,3575.83,26111018,99.81,0,0,0.3,505.84,3575.98,26111019,99.55,0,0,0.32,505.81,3575.98,26111020,99.71,0,0,0.32,505.82,3575.99,26111021,99.77,0,0,0.15,505.8,3576.01,26111022,99.83,0,0,0.18,505.78,3576.02,26111023,99.68,0,0,0.58,506.11,3575.69,26111024,99.83,0,0,0.17,505.75,3576.05,26111025,99.6,0,0,0.33,505.03,3576.78,26111026,99.81,0,0,0.17,504.99,3576.82,26111027,99.82,0,0,0.17,504.97,3576.84,26111028,99.65,0,0,0.6,506.25,3575.55,26111029,99.81,0,0,0.17,505.86,3575.93,26111030,99.8,0,0,0.31,506.13,3575.68,26111031,99.85,0,0,0.14,506.1,3575.71,26111032,99.88,0,0,0.16,506.09,3575.71,26111033,99.73,0,0,0.54,506.54,3575.25,26111034,99.88,0,0,0.15,505.8,3575.99,26111035,99.79,0,0,0.31,506.04,3575.77,26111036,99.87,0,0,0.14,506,3575.8,26111037,99.91,0,0,0.14,505.97,3575.84,26111038,99.75,0,0,0.51,506.32,3575.48,26111039,99.91,0,0,0.19,505.82,3575.97,26111040,99.76,0,0,0.28,505.89,3575.92,26111041,99.85,0,0,0.16,505.85,3575.95,26111042,99.91,0,0,0.14,505.84,3575.96,26111043,99.73,0,0,0.4,506.23,3575.56,26111044,99.91,0,0,0.29,506.04,3575.75,26111045,99.77,0,0,0.31,505.31,3576.5,26111046,99.9,0,0,0.13,505.28,3576.52,26111047,99.92,0,0,0.16,505.26,3576.54,26111048,99.78,0,0,0.39,505.79,3576,26111049,99.66,0,0,0.46,505.95,3575.81,26111050,99.78,0,0,0.29,505.99,3575.79,26111051,99.88,0.01,0,0.18,506.07,3575.71,26111052,99.78,0,0,0.14,505.99,3575.79,26111053,99.68,0,0,0.41,506.41,3575.36,26111054,99.83,0.01,0,0.29,506.26,3575.51,26111055,99.68,0,0,0.31,505.65,3576.14,26111056,99.9,0,0,0.16,505.49,3576.29,26111057,99.89,0.01,0,0.18,505.56,3576.21,26111058,99.87,0,0,0.14,505.46,3576.31,26111059,99.76,0,0,0.58,506.12,3575.65,26111060,99.75,0,0,0.3,505.69,3576.11,26111061,99.87,0,0,0.14,505.86,3575.94,26111062,99.9,0,0,0.16,505.86,3575.93,26111063,99.85,0,0,0.19,505.83,3575.95,26111064,99.73,0,0,0.6,505.97,3575.81,26111065,99.69,0,0,0.33,505.09,3576.71,26111066,99.91,0,0,0.15,505.07,3576.73,26111067,99.9,0,0,0.13,505.05,3576.75,26111068,99.92,0,0,0.16,505.02,3576.77,26111069,99.76,0,0,0.55,505.91,3575.89,26111070,99.77,0,0,0.31,505.8,3576.02,26111071,99.83,0,0,0.17,505.78,3576.04,26111072,99.84,0,0,0.16,505.8,3576.01,26111073,99.9,0,0,0.19,505.8,3576,26111074,99.71,0,0,0.57,506.19,3575.61,26111075,99.72,0,0,0.38,505.06,3576.75,26111076,99.89,0.01,0,0.13,505.03,3576.78,26111077,99.87,0,0,0.18,504.98,3576.83,26111078,99.84,0,0,0.14,505.04,3576.75,26111079,99.6,0,0,0.67,506.56,3575.22,26111080,99.74,0,0,0.43,506.21,3575.58,26111081,99.87,0,0,0.17,506.31,3575.48,26111082,99.87,0.01,0,0.14,506.22,3575.57,26111083,99.85,0.01,0,0.15,506.29,3575.49,26111084,99.74,0.01,0,0.57,506.53,3575.25,26111085,99.75,0,0,0.36,506.26,3575.53,26111086,99.85,0.01,0,0.16,506.26,3575.52,26111087,99.89,0,0,0.14,506.21,3575.56,26111088,99.82,0,0,0.15,506.17,3575.61,26111089,99.71,0.01,0,0.41,507,3574.77,26111090,99.65,0.01,0,0.44,506.25,3575.54,26111091,99.9,0,0,0.16,506.25,3575.53,26111092,99.89,0,0,0.14,506.24,3575.54,26111093,99.84,0,0,0.15,506.22,3575.56,26111094,99.83,0,0,0.14,506.19,3575.58,26111095,99.51,0,0,0.7,506.91,3574.88,26111096,99.85,0.01,0,0.16,506.22,3575.57,26111097,99.84,0.01,0,0.14,506.24,3575.55,26111098,99.83,0.01,0,0.16,506.27,3575.51,26111099,99.85,0,0,0.13,506.23,3575.55,26111100,99.33,0.01,0,0.7,506.42,3575.37,26111101,99.86,0.01,0,0.17,506.02,3575.76,26111102,99.89,0.01,0,0.15,505.97,3575.81,26111103,99.88,0,0,0.14,506.02,3575.76,26111104,99.87,0,0,0.18,505.98,3575.79,26111105,99.64,0.01,0,0.68,506.52,3575.26,26111106,99.87,0.01,0,0.16,506.26,3575.52,26111107,99.9,0.01,0,0.15,506.22,3575.56,26111108,99.88,0,0,0.14,506.21,3575.56,26111109,99.84,0,0,0.3,506.16,3575.59,26111110,99.66,0,0,0.73,506.51,3575.26,26111111,99.87,0,0,0.14,506.33,3575.43,26111112,99.89,0,0,0.13,506.33,3575.43,26111113,99.93,0,0,0.16,506.3,3575.45,26111114,99.89,0,0,0.14,506.29,3575.46,26111115,99.67,0,0,0.7,506.72,3575.05,26111116,99.9,0,0,0.14,506.53,3575.24,26111117,99.89,0,0,0.22,506.5,3575.26,26111118,99.9,0,0,0.16,506.48,3575.27,26111119,99.88,0,0,0.14,506.47,3575.28,26111120,99.67,0,0,0.7,506.88,3574.88,26111121,99.89,0,0,0.15,506.69,3575.07,26111122,99.9,0,0,0.17,506.66,3575.09,26111123,99.83,0,0,0.18,506.25,3575.5,26111124,99.87,0,0,0.14,506.32,3575.43,26111125,99.65,0,0,0.46,507.36,3574.41,26111126,99.92,0,0,0.42,506.3,3575.47,26111127,99.9,0,0,0.13,506.29,3575.49,26111128,99.9,0,0,0.16,506.26,3575.5,26111129,99.88,0,0,0.14,506.24,3575.52,26111130,99.77,0,0,0.3,506.49,3575.29,26111131,99.69,0,0,0.57,506.82,3574.96,26111132,99.9,0,0,0.16,506.45,3575.33,26111133,99.9,0,0,0.14,506.42,3575.35,26111134,99.89,0,0,0.14,506.4,3575.36,26111135,99.76,0,0,0.3,506.58,3575.2,26111136,99.79,0,0,0.55,507.12,3574.65,26111137,99.9,0,0,0.15,506.76,3575,26111138,99.9,0,0,0.14,506.74,3575.02,26111139,99.71,0,0,0.3,506.24,3575.49,26111140,99.71,0,0,0.29,505.27,3576.47,26111141,99.75,0,0,0.57,506.49,3575.26,26111142,99.85,0.01,0,0.14,506.47,3575.27,26111143,99.93,0,0,0.14,506.44,3575.29,26111144,99.88,0,0,0.15,506.47,3575.27,26111145,99.79,0,0,0.3,506.44,3575.33,26111146,99.75,0,0,0.51,506.92,3574.84,26111147,99.88,0,0,0.19,506.44,3575.31,26111148,99.83,0,0,0.15,506.49,3575.26,26111149,99.88,0,0,0.15,506.47,3575.27,26111150,99.76,0.01,0,0.32,506.47,3575.29,26111151,99.74,0,0,0.54,506.86,3574.9,26111152,99.86,0,0,0.18,506.45,3575.3,26111153,99.86,0,0,0.15,506.2,3575.55,26111154,99.88,0,0,0.14,505.46,3576.28,26111155,99.73,0,0,0.3,505.76,3576.01,26111156,99.75,0,0,0.41,506.17,3575.59,26111157,99.87,0,0,0.29,505.98,3575.78,26111158,99.85,0,0,0.14,505.94,3575.81,26111159,99.92,0,0,0.14,505.96,3575.78,26111160,99.69,0,0,0.3,505.76,3576,26111161,99.71,0.01,0,0.54,506.45,3575.31,26111162,99.85,0.01,0,0.15,505.77,3575.98,26111163,99.91,0,0,0.14,505.69,3576.06,26111164,99.88,0,0,0.14,505.75,3575.99,26111165,99.72,0,0,0.34,504.76,3577,26111166,99.75,0,0,0.34,505.23,3576.52,26111167,99.83,0,0,0.42,505.96,3575.79,26111168,99.91,0,0,0.16,505.98,3575.76,26111169,99.69,0,0,0.31,505.97,3575.76,26111170,99.77,0,0,0.29,505.7,3576.04,26111171,99.87,0,0,0.16,505.77,3575.97,26111172,99.7,0,0,0.54,506.25,3575.48,26111173,99.86,0,0,0.16,505.93,3575.79,26111174,99.91,0,0,0.14,505.96,3575.76,26111175,99.73,0,0,0.3,505.22,3576.51,26111176,99.86,0,0,0.15,505.27,3576.46,26111177,99.76,0,0,0.61,505.74,3575.98,26111178,99.89,0,0,0.14,505.45,3576.27,26111179,99.9,0,0,0.15,505.51,3576.21,26111180,99.8,0,0,0.33,505.93,3575.8,26111181,99.9,0,0,0.14,505.98,3575.75,26111182,99.76,0,0,0.49,506.48,3575.25,26111183,99.88,0,0,0.27,505.76,3575.96,26111184,99.87,0,0,0.14,505.74,3575.98,26111185,99.75,0,0,0.3,505.05,3576.69,26111186,99.9,0,0,0.14,504.95,3576.79,26111187,99.75,0,0,0.41,505.64,3576.08,26111188,99.86,0,0,0.29,505.78,3575.95,26111189,99.88,0,0,0.15,505.74,3575.98,26111190,99.76,0,0,0.29,505.93,3575.81,26111191,99.33,0,0,0.16,505.88,3575.85,26111192,99.68,0,0,0.52,506.38,3575.35,26111193,99.9,0,0,0.2,506,3575.73,26111194,99.93,0,0,0.14,505.99,3575.73,26111195,99.84,0,0,0.29,505.74,3576,26111196,99.93,0,0,0.16,505.72,3576.01,26111197,99.77,0,0,0.59,506.48,3575.25,26111198,99.89,0,0,0.14,506.16,3575.56,26111199,99.7,0,0,0.29,506.12,3575.57,26111200,99.79,0,0,0.29,505.89,3575.83,26111201,99.93,0,0,0.14,505.86,3575.85,26111202,99.88,0,0.01,0.16,506,3575.7,26111203,99.8,0,0,0.6,506.57,3575.13,26111204,99.91,0,0,0.16,506.21,3575.52,26111205,99.8,0,0,0.32,506.2,3575.54,26111206,99.93,0,0,0.16,506.19,3575.56,26111207,99.88,0,0,0.17,506.16,3575.57,26111208,99.77,0,0,0.55,506.49,3575.25,26111209,99.88,0,0,0.14,506.12,3575.61,26111210,99.74,0,0,0.3,505.87,3575.87,26111211,99.92,0,0,0.14,505.9,3575.84,26111212,99.91,0,0,0.13,506.04,3575.69,26111213,99.77,0,0,0.55,506.55,3575.18,26111214,99.87,0,0,0.16,506.25,3575.48,26111215,99.71,0,0,0.3,505.35,3576.4,26111216,99.86,0,0,0.16,505.24,3576.5,26111217,99.92,0,0,0.15,505.22,3576.52,26111218,99.79,0,0,0.59,506.05,3575.68,26111219,99.93,0,0,0.17,506.16,3575.57,26111220,99.6,0,0,0.31,505.22,3576.53,26111221,99.89,0,0,0.14,505.16,3576.58,26111222,99.9,0,0,0.14,505.15,3576.58,26111223,99.76,0,0,0.41,505.99,3575.74,26111224,99.94,0,0,0.29,506.27,3575.46,26111225,99.81,0,0,0.3,506.51,3575.24,26111226,99.9,0,0,0.14,506.49,3575.25,26111227,99.9,0,0,0.16,506.47,3575.27,26111228,99.78,0,0,0.55,506.77,3574.97,26111229,99.77,0,0,0.29,506.42,3575.3,26111230,99.81,0,0,0.29,506.17,3575.56,26111231,99.9,0,0,0.14,506.16,3575.57,26111232,99.92,0,0,0.16,506.14,3575.59,26111233,99.9,0,0,0.15,506.12,3575.61,26111234,99.77,0,0,0.57,506.91,3574.8,26111235,99.84,0,0,0.3,506.53,3575.2,26111236,99.9,0,0,0.16,506.5,3575.23,26111237,99.92,0,0,0.19,506.49,3575.23,26111238,99.92,0,0,0.17,506.46,3575.26,26111239,99.8,0,0,0.55,506.8,3574.92,26111240,99.82,0,0,0.3,506.22,3575.52,26111241,99.93,0,0,0.13,506.19,3575.54,26111242,99.89,0,0,0.16,506.18,3575.55,26111243,99.88,0,0,0.2,505.95,3575.77,26111244,99.78,0,0,0.57,506.38,3575.33,26111245,99.79,0,0,0.3,505.89,3575.84,26111246,99.93,0,0,0.16,505.93,3575.8,26111247,99.93,0,0,0.14,506.02,3575.7,26111248,99.9,0,0,0.2,505.99,3575.73,26111249,99.76,0,0,0.57,506.68,3575.03,26111250,99.71,0,0,0.34,506.69,3575.03,26111251,95.81,0,0,0.17,506.67,3575.05,26111252,99.88,0,0,0.14,506.65,3575.06,26111253,99.88,0,0,0.14,506.63,3575.08,26111254,99.75,0,0,0.56,506.74,3574.97,26111255,99.73,0,0,0.31,506.59,3575.13,26111256,99.93,0,0,0.13,506.59,3575.13,26111257,99.86,0,0,0.14,506.69,3575.02,26111258,99.9,0,0,0.16,506.73,3574.98,26111259,99.59,0,0,0.75,506.84,3574.85,26111260,99.73,0,0,0.34,506.23,3575.47,26111261,99.89,0,0,0.18,506.2,3575.5,26111262,99.92,0,0,0.14,506.17,3575.52,26111263,99.88,0,0,0.14,506.16,3575.53,26111264,99.73,0,0,0.55,506.92,3574.76,26111265,99.83,0,0,0.32,506.39,3575.31,26111266,99.93,0,0,0.18,506.36,3575.34,26111267,99.9,0,0,0.16,506.35,3575.34,26111268,99.89,0,0,0.17,506.32,3575.37,26111269,99.9,0,0,0.18,506.34,3575.35,26111270,99.49,0,0,0.71,506.08,3575.62,26111271,99.92,0,0,0.18,505.49,3576.2,26111272,99.9,0,0,0.18,505.48,3576.21,26111273,99.89,0,0,0.18,505.45,3576.23,26111274,99.89,0,0,0.15,505.44,3576.24,26111275,99.67,0,0,1.01,506.63,3575.08,26111276,99.85,0,0,0.13,506.41,3575.29,26111277,99.89,0,0,0.16,506.38,3575.31,26111278,99.92,0,0,0.14,506.37,3575.32,26111279,99.91,0,0,0.15,506.33,3575.36,26111280,99.51,0,0,0.83,506.73,3574.98,26111281,99.89,0,0,0.14,506.49,3575.21,26111282,99.88,0,0,0.16,506.48,3575.22,26111283,99.87,0,0,0.15,506.46,3575.24,26111284,99.92,0,0,0.14,506.44,3575.25,26111285,99.55,0,0,0.73,507.36,3574.34,26111286,99.88,0,0,0.18,506.67,3575.04,26111287,99.9,0,0,0.18,506.63,3575.06,26111288,99.91,0,0,0.18,506.62,3575.07,26111289,99.7,0,0,0.3,506.9,3574.77,26111290,99.67,0,0,0.56,506.86,3574.83,26111291,99.9,0,0,0.29,506.58,3575.1,26111292,99.86,0,0,0.16,506.7,3574.97,26111293,99.89,0,0,0.14,506.76,3574.91,26111294,99.77,0,0,0.15,506.73,3574.96,26111295,99.5,0,0,0.77,506.74,3574.97,26111296,99.85,0,0,0.18,506.71,3575,26111297,99.84,0,0,0.23,506.68,3575.03,26111298,99.89,0,0,0.18,506.64,3575.06,26111299,99.89,0,0,0.16,506.63,3575.07,26111300,99.53,0,0,0.59,506.81,3574.9,26111301,99.89,0,0,0.29,506.85,3574.85,26111302,99.88,0,0,0.13,506.84,3574.86,26111303,99.84,0,0,0.24,506.61,3575.09,26111304,99.88,0,0,0.15,506.5,3575.19,26111305,99.8,0,0,0.34,506.74,3574.97,26111306,99.7,0,0,0.57,506.85,3574.86,26111307,99.9,0,0,0.16,506.46,3575.25,26111308,99.91,0,0,0.18,506.28,3575.42,26111309,98.23,0,0,0.18,505.68,3576.02,26111310,99.81,0,0,0.34,505.68,3576.03,26111311,99.81,0,0,0.59,506.02,3575.69,26111312,99.88,0,0,0.18,505.65,3576.06,26111313,99.92,0,0,0.18,505.62,3576.08,26111314,99.9,0,0,0.18,505.61,3576.09,26111315,99.79,0,0,0.29,506.01,3575.7,26111316,94.91,0.34,0.01,261.79,520.7,3561.49,26111317,99.88,0,0,0.24,508.33,3573.19,26111318,99.84,0,0,0.14,508.3,3573.22,26111319,99.84,0,0,0.35,508.04,3573.46,26111320,99.8,0,0,0.3,508.03,3573.48,26111321,99.77,0,0,0.6,507.05,3574.48,26111322,99.9,0,0,0.2,505.86,3575.69,26111323,99.9,0,0,0.18,505.99,3575.55,26111324,99.9,0,0,0.15,505.96,3575.59,26111325,99.77,0,0,0.33,506.22,3575.35,26111326,99.77,0,0,0.54,506.45,3575.14,26111327,99.9,0,0,0.19,505.92,3575.68,26111328,99.88,0,0,0.16,505.91,3575.69,26111329,99.87,0,0,0.15,505.88,3575.72,26111330,99.84,0,0,0.34,505.89,3575.72,26111331,99.77,0,0,0.4,506.27,3575.33,26111332,99.91,0,0,0.27,506.09,3575.51,26111333,99.88,0,0,0.18,506.06,3575.54,26111334,99.9,0,0,0.16,506.13,3575.46,26111335,99.79,0,0,0.32,505.56,3576.05,26111336,99.76,0,0,0.42,505.91,3575.69,26111337,99.9,0,0,0.29,506.19,3575.41,26111338,99.88,0,0,0.16,506.18,3575.42,26111339,99.92,0,0,0.15,506.15,3575.44,26111340,99.56,0,0,0.36,504.96,3576.64,26111341,99.86,0,0,0.13,504.9,3576.7,26111342,99.75,0,0,0.6,506.72,3574.88,26111343,99.91,0,0,0.14,506.09,3575.5,26111344,99.91,0,0,0.14,506.08,3575.51,26111345,99.83,0,0,0.3,506.32,3575.29,26111346,99.9,0,0,0.17,506.47,3575.13,26111347,99.78,0,0,0.57,506.93,3574.67,26111348,99.94,0,0,0.14,506.22,3575.38,26111349,99.73,0,0,0.29,505.96,3575.63,26111350,99.86,0,0,0.29,505.95,3575.66,26111351,99.9,0,0,0.16,505.94,3575.66,26111352,99.78,0,0,0.63,506.57,3575.03,26111353,99.91,0,0,0.18,506.14,3575.45,26111354,99.93,0,0,0.15,506.11,3575.47,26111355,99.85,0,0,0.34,506.12,3575.48,26111356,99.9,0,0,0.16,506.09,3575.5,26111357,99.78,0,0,0.55,506.55,3575.04,26111358,99.93,0,0,0.21,506.24,3575.35,26111359,99.9,0,0,0.14,506.22,3575.36,26111360,99.85,0,0,0.29,506.23,3575.37,26111361,99.9,0,0,0.14,506.2,3575.39,26111362,99.77,0,0,0.56,506.53,3575.06,26111363,99.91,0,0,0.18,505.79,3575.8,26111364,99.9,0,0,0.17,505.65,3575.93,26111365,99.86,0,0,0.34,505.88,3575.72,26111366,99.91,0,0,0.14,505.88,3575.72,26111367,99.78,0,0,0.41,506.28,3575.32,26111368,99.92,0,0,0.29,506.09,3575.5,26111369,99.94,0,0,0.14,506.1,3575.49,26111370,99.81,0,0,0.3,506.26,3575.34,26111371,99.92,0,0,0.14,506.23,3575.37,26111372,99.77,0,0,0.36,506.57,3575.03,26111373,99.93,0,0,0.37,506.2,3575.4,26111374,99.93,0,0,0.14,506.18,3575.41,26111375,99.83,0,0,0.39,505.69,3575.91,26111376,99.86,0,0,0.15,505.66,3575.93,26111377,99.92,0,0,0.16,505.65,3575.95,26111378,99.76,0,0,0.54,506.66,3574.97,26111379,99.69,0,0,0.32,506.14,3575.46,26111380,99.75,0,0,0.34,506.19,3575.43,26111381,99.93,0,0,0.18,506.09,3575.52,26111382,99.92,0,0,0.18,506.21,3575.39,26111383,99.79,0,0,0.54,506.59,3575.01,26111384,99.92,0,0,0.14,506.21,3575.39,26111385,99.72,0,0,0.3,506.24,3575.38,26111386,99.93,0,0,0.16,506.2,3575.42,26111387,99.95,0,0,0.14,506.19,3575.42,26111388,99.76,0,0,0.56,506.53,3575.08,26111389,99.94,0,0,0.15,506.15,3575.46,26111390,99.78,0,0,0.31,506.15,3575.47,26111391,99.93,0,0,0.14,506.12,3575.49,26111392,99.92,0,0,0.16,506.1,3575.51,26111393,99.79,0,0,0.57,506.58,3575.03,26111394,99.92,0,0,0.14,506.38,3575.22,26111395,99.86,0,0,0.3,506.48,3575.13,26111396,99.9,0,0,0.16,506.47,3575.14,26111397,99.88,0,0,0.14,506.44,3575.17,26111398,99.73,0,0,0.51,506.83,3574.77,26111399,99.89,0,0,0.2,506.15,3575.45,26111400,99.73,0,0,0.33,506.16,3575.48,26111401,99.88,0,0,0.19,506.14,3575.5,26111402,99.89,0,0,0.2,506.1,3575.52,26111403,99.76,0,0,0.44,506.5,3575.12,26111404,99.94,0,0,0.31,506.31,3575.31,26111405,99.86,0,0,0.32,506.47,3575.16,26111406,99.86,0,0,0.16,506.48,3575.15,26111407,99.88,0,0,0.16,506.46,3575.17,26111408,99.78,0,0,0.43,506.79,3574.83,26111409,99.66,0.03,0.08,0.5,506.43,3575.19,26111410,99.77,0,0,0.35,506.74,3574.89,26111411,99.9,0,0,0.21,506.71,3574.92,26111412,99.86,0,0,0.19,506.71,3574.92,26111413,99.72,0,0,0.35,507.07,3574.54,26111414,99.83,0,0,0.41,506.42,3575.2,26111415,99.76,0,0,0.3,506.65,3574.98,26111416,99.9,0,0,0.16,506.64,3574.98,26111417,99.88,0,0,0.22,506.37,3575.25,26111418,99.9,0,0,0.17,506.35,3575.26,26111419,99.75,0,0,0.6,507,3574.61,26111420,99.74,0,0,0.35,505.86,3575.77,26111421,99.89,0,0,0.19,505.9,3575.73,26111422,99.85,0,0,0.19,505.99,3575.63,26111423,99.84,0,0,0.23,505.98,3575.64,26111424,99.72,0,0,0.59,507.06,3574.55,26111425,99.69,0,0,0.38,506.75,3574.88,26111426,99.85,0,0,0.14,506.67,3574.95,26111427,99.83,0,0,0.2,506.64,3574.98,26111428,99.84,0,0,0.15,506.62,3574.99,26111429,99.63,0,0,0.56,507.1,3574.51,26111430,99.7,0,0,0.35,506.59,3575.03,26111431,99.83,0,0,0.19,506.58,3575.04,26111432,99.8,0,0,0.18,506.57,3575.05,26111433,99.82,0,0,0.18,506.72,3574.89,26111434,99.68,0,0,0.56,507.05,3574.56,26111435,99.69,0,0,0.36,505.52,3576.11,26111436,99.82,0,0,0.13,505.45,3576.17,26111437,99.81,0,0,0.16,505.44,3576.18,26111438,99.8,0,0,0.16,505.42,3576.19,26111439,99.6,0,0,0.72,507.12,3574.47,26111440,99.64,0,0,0.35,506.63,3574.97,26111441,99.79,0,0,0.18,506.61,3574.99,26111442,99.8,0,0,0.18,506.58,3575.01,26111443,99.8,0,0,0.18,506.57,3575.02,26111444,99.7,0,0,0.57,506.9,3574.68,26111445,99.63,0,0,0.37,506.98,3574.63,26111446,99.81,0,0,0.18,506.95,3574.65,26111447,99.8,0,0,0.14,506.94,3574.65,26111448,99.82,0,0,0.15,506.91,3574.68,26111449,99.66,0,0,0.36,507.55,3574.04,26111450,99.7,0,0,0.51,506.65,3574.95,26111451,99.85,0,0,0.14,506.63,3574.97,26111452,99.79,0,0,0.18,506.6,3574.99,26111453,99.83,0,0,0.16,506.58,3575.04,26111454,99.8,0,0,0.15,506.55,3575.05,26111455,99.54,0,0,0.74,506.94,3574.68,26111456,99.83,0,0,0.14,506.47,3575.15,26111457,99.8,0,0,0.15,506.45,3575.17,26111458,99.83,0,0,0.14,506.42,3575.19,26111459,99.79,0,0,0.15,506.39,3575.22,26111460,99.48,0,0,0.7,507.22,3574.4,26111461,99.81,0,0,0.17,506.86,3574.76,26111462,99.8,0,0,0.14,506.71,3574.91,26111463,99.84,0,0,0.14,505.86,3575.75,26111464,99.84,0,0,0.15,505.96,3575.65,26111465,99.54,0,0,0.76,505.37,3576.25,26111466,99.85,0,0,0.16,505.18,3576.43,26111467,99.82,0,0,0.16,505.16,3576.45,26111468,99.83,0,0,0.18,505.12,3576.48,26111469,99.74,0,0,0.3,506.04,3575.54,26111470,99.45,0,0,0.64,506.06,3575.54,26111471,99.83,0,0,0.22,505.63,3575.96,26111472,99.82,0,0,0.14,505.73,3575.86,26111473,99.8,0,0,0.14,505.7,3575.88,26111474,99.83,0,0,0.15,505.68,3575.9,26111475,99.57,0,0,0.57,506.27,3575.33,26111476,99.78,0,0,0.27,505.89,3575.7,26111477,99.79,0,0,0.2,505.86,3575.73,26111478,99.78,0,0,0.14,505.84,3575.74,26111479,99.81,0,0,0.15,505.83,3575.74,26111480,99.54,0,0,0.56,506.58,3575.02,26111481,99.82,0,0,0.29,506.2,3575.39,26111482,99.83,0,0,0.14,506.18,3575.41,26111483,99.76,0,0,0.18,505.81,3575.77,26111484,99.83,0,0,0.14,505.63,3575.95,26111485,99.62,0,0,0.56,506.11,3575.49,26111486,99.8,0,0,0.36,505.86,3575.73,26111487,99.8,0,0,0.15,505.83,3575.76,26111488,99.82,0,0,0.14,505.82,3575.76,26111489,99.8,0,0,0.14,505.97,3575.61,26111490,98.26,0,0,0.3,505.23,3576.36,26111491,99.66,0,0,0.56,506.52,3575.07,26111492,99.8,0,0,0.14,506.16,3575.43,26111493,98.75,0,0,0.17,506.13,3575.45,26111494,99.85,0,0,0.15,506.11,3575.47,26111495,99.7,0,0,0.32,506.11,3575.49,26111496,99.71,0,0,0.55,505.79,3575.8,26111497,99.81,0,0,0.18,505.08,3576.5,26111498,99.83,0,0,0.17,505.14,3576.44,26111499,99.66,0,0,0.33,505.73,3575.83,26111500,99.61,0,0,0.35,505.52,3576.06,26111501,99.68,0,0,0.54,506.28,3575.28,26111502,99.8,0,0,0.15,506.15,3575.41,26111503,99.83,0,0,0.14,506.13,3575.43,26111504,99.85,0,0,0.14,506.1,3575.51,26111505,99.68,0,0,0.34,506.11,3575.53,26111506,99.72,0,0,0.51,506.78,3574.85,26111507,99.83,0,0,0.19,506.06,3575.57,26111508,99.79,0,0,0.15,506.05,3575.59,26111509,99.83,0,0,0.15,506.17,3575.46,26111510,99.66,0,0,0.32,505.25,3576.41,26111511,99.67,0,0,0.56,505.89,3575.76,26111512,99.82,0,0,0.15,505.91,3575.73,26111513,99.84,0,0,0.15,505.88,3575.76,26111514,99.83,0,0,0.14,505.87,3575.77,26111515,99.76,0,0,0.3,506.11,3575.55,26111516,99.65,0,0,0.4,506.21,3575.44,26111517,99.83,0,0,0.3,505.33,3576.32,26111518,99.84,0,0,0.14,505.3,3576.34,26111519,99.82,0,0,0.14,505.43,3576.21,26111520,99.57,0,0,0.31,505.46,3576.2,26111521,99.66,0,0,0.57,505.76,3575.89,26111522,99.83,0,0,0.13,505.17,3576.47,26111523,99.82,0,0,0.16,505.14,3576.5,26111524,99.82,0,0,0.15,505.13,3576.5,26111525,99.76,0,0,0.31,506.33,3575.32,26111526,99.81,0,0,0.16,506.33,3575.32,26111527,99.7,0,0,0.55,507.01,3574.63,26111528,99.83,0,0,0.18,506.27,3575.36,26111529,99.68,0,0,0.32,506.39,3575.22,26111530,99.72,0,0,0.34,506.18,3575.44,26111531,99.84,0,0,0.18,506.16,3575.46,26111532,99.67,0,0,0.54,506.93,3574.69,26111533,99.8,0,0,0.14,506.36,3575.26,26111534,99.77,0,0,0.15,506.35,3575.28,26111535,99.55,0,0,0.32,505.62,3576.03,26111536,99.83,0,0,0.13,505.59,3576.05,26111537,99.66,0,0,0.63,506.41,3575.23,26111538,99.81,0,0,0.14,506.29,3575.34,26111539,99.82,0,0,0.16,506.27,3575.36,26111540,99.63,0,0,0.32,506.51,3575.14,26111541,99.83,0,0,0.16,506.6,3575.04,26111542,99.66,0,0,0.55,506.72,3574.91,26111543,99.77,0,0,0.18,506.03,3575.6,26111544,99.81,0,0,0.14,505.91,3575.71,26111545,99.7,0,0,0.3,505.69,3575.95,26111546,99.82,0,0,0.14,505.65,3575.98,26111547,99.68,0,0,0.55,506.47,3575.16,26111548,99.77,0,0,0.15,506.6,3575.03,26111549,99.8,0,0,0.14,506.59,3575.04,26111550,99.69,0,0,0.35,506.09,3575.54,26111551,99.09,0,0,0.16,506.07,3575.56,26111552,99.68,0,0,0.53,506.83,3574.8,26111553,99.8,0,0,0.15,506.28,3575.34,26111554,98.43,0,0,0.14,506.4,3575.22,26111555,99.7,0,0,0.3,506.45,3575.19,26111556,99.81,0,0,0.14,506.42,3575.22,26111557,99.67,0,0,0.41,506.88,3574.74,26111558,99.83,0,0,0.29,506.12,3575.5,26111559,99.78,0,0,0.31,506.35,3575.24,26111560,99.75,0,0,0.32,506.6,3575.02,26111561,99.82,0,0,0.14,506.59,3575.02,26111562,99.85,0,0,0.16,506.56,3575.04,26111563,99.65,0,0,0.58,506.91,3574.69,26111564,99.85,0,0,0.14,506.52,3575.09,26111565,99.7,0,0,0.31,506.53,3575.1,26111566,99.83,0,0,0.16,506.68,3574.95,26111567,99.8,0,0,0.15,506.66,3574.96,26111568,99.69,0,0,0.56,506.21,3575.4,26111569,99.83,0,0,0.15,505.63,3575.98,26111570,99.65,0,0,0.35,506.36,3575.26,26111571,99.81,0,0,0.13,506.35,3575.27,26111572,99.81,0,0,0.15,506.34,3575.28,26111573,99.69,0,0,0.6,506.65,3574.95,26111574,99.83,0,0,0.14,506.28,3575.31,26111575,99.71,0,0,0.32,506.77,3574.84,26111576,99.83,0,0,0.14,506.76,3574.84,26111577,99.82,0,0,0.15,506.74,3574.87,26111578,99.65,0,0,0.6,507.23,3574.37,26111579,99.8,0,0,0.15,506.88,3574.72,26111580,99.48,0,0,0.31,505.52,3576.09,26111581,99.82,0,0,0.16,505.38,3576.23,26111582,99.83,0,0,0.15,505.36,3576.25,26111583,99.7,0,0,0.5,506.63,3574.97,26111584,99.82,0,0,0.2,506.53,3575.07,26111585,99.71,0,0,0.31,506.52,3575.09,26111586,99.81,0,0,0.14,506.49,3575.11,26111587,99.84,0,0,0.16,506.64,3574.97,26111588,99.74,0,0,0.49,507.01,3574.59,26111589,99.76,0,0,0.34,506.62,3574.95,26111590,99.82,0,0,0.3,506.84,3574.74,26111591,99.89,0,0,0.16,506.84,3574.74,26111592,99.88,0,0,0.14,506.81,3574.77,26111593,99.75,0,0,0.55,507.13,3574.45,26111594,99.91,0,0,0.14,506.52,3575.08,26111595,99.83,0,0,0.34,506.76,3574.86,26111596,99.9,0,0,0.19,506.75,3574.87,26111597,99.85,0,0,0.19,506.48,3575.13,26111598,99.77,0,0,0.39,506.93,3574.68,26111599,99.91,0,0,0.29,506.87,3574.74,26111600,99.83,0,0,0.29,506.88,3574.74,26111601,99.91,0,0,0.16,506.85,3574.77,26111602,99.93,0,0,0.16,506.84,3574.77,26111603,99.89,0,0,0.17,506.52,3575.09,26111604,99.78,0,0,0.55,507.13,3574.48,26111605,99.77,0,0,0.35,506.8,3574.82,26111606,99.9,0,0,0.16,506.78,3574.84,26111607,99.93,0,0,0.14,506.77,3574.85,26111608,99.91,0,0,0.15,506.74,3574.87,26111609,99.79,0,0,0.6,507.06,3574.55,26111610,99.7,0,0,0.32,506.72,3574.9,26111611,99.91,0,0,0.17,506.9,3574.72,26111612,99.9,0,0,0.14,506.9,3574.71,26111613,99.88,0,0,0.15,506.88,3574.72,26111614,99.29,0.01,0.65,0.54,506.92,3574.68,26111615,96.98,0,0,0.49,506.81,3574.81,26111616,99.89,0,0,0.18,506.79,3574.82,26111617,99.92,0,0,0.18,506.76,3574.84,26111618,99.88,0,0,0.14,506.34,3575.26,26111619,99.66,0,0,0.66,505.79,3575.79,26111620,99.81,0,0,0.4,505,3576.59,26111621,99.91,0,0,0.16,505.07,3576.52,26111622,99.91,0,0,0.13,505.15,3576.43,26111623,99.89,0,0,0.17,505.14,3576.44,26111624,99.8,0,0,0.57,505.77,3575.8,26111625,99.83,0,0,0.31,505.46,3576.13,26111626,99.94,0,0,0.16,505.33,3576.26,26111627,99.89,0,0,0.15,505.33,3576.26,26111628,99.92,0,0,0.14,505.3,3576.28,26111629,99.78,0,0,0.55,505.7,3575.87,26111630,99.83,0,0,0.29,506,3575.59,26111631,99.91,0,0,0.19,506.01,3575.58,26111632,99.93,0,0,0.18,505.99,3575.59,26111633,99.9,0,0,0.18,506,3575.58,26111634,99.79,0,0,0.43,506.49,3575.08,26111635,99.81,0,0,0.47,505.18,3576.41,26111636,99.87,0,0,0.18,505.12,3576.47,26111637,99.92,0,0,0.18,505.11,3576.47,26111638,99.91,0,0,0.18,505.08,3576.5,26111639,99.92,0,0,0.21,505.06,3576.52,26111640,99.58,0,0,0.76,506.68,3574.9,26111641,99.88,0,0,0.16,506.02,3575.56,26111642,99.87,0,0,0.14,506,3575.58,26111643,99.91,0,0,0.15,505.98,3575.59,26111644,99.89,0,0,0.14,505.96,3575.61,26111645,99.69,0,0,0.74,505.95,3575.64,26111646,99.86,0,0,0.16,505.42,3576.16,26111647,99.9,0,0,0.18,505.39,3576.19,26111648,99.93,0,0,0.16,505.38,3576.2,26111649,99.75,0,0,0.3,506.32,3575.24,26111650,99.69,0,0,0.72,506.63,3574.94,26111651,99.88,0,0,0.16,506.3,3575.26,26111652,99.9,0,0,0.14,506.27,3575.29,26111653,99.88,0,0,0.15,506.26,3575.3,26111654,99.93,0,0,0.16,506.23,3575.32,26111655,99.5,0,0,0.68,506.59,3574.97,26111656,99.89,0,0,0.2,506.29,3575.27,26111657,99.88,0.01,0.01,0.2,506.13,3575.42,26111658,99.9,0,0,0.16,506.1,3575.46,26111659,99.85,0,0,0.14,506.07,3575.48,26111660,99.66,0,0,0.69,506.26,3575.3,26111661,99.87,0,0,0.22,505.8,3575.76,26111662,99.9,0,0,0.14,505.8,3575.76,26111663,99.83,0,0,0.17,505.62,3575.93,26111664,99.88,0,0,0.16,505.51,3576.04,26111665,99.6,0,0,0.72,506.6,3574.97,26111666,99.9,0,0,0.18,506.23,3575.34,26111667,99.9,0,0,0.15,506.35,3575.22,26111668,99.88,0,0,0.16,506.37,3575.19,26111669,99.9,0,0,0.18,506.34,3575.22,26111670,99.56,0,0,0.52,506.65,3574.92,26111671,99.87,0,0.01,0.41,505.08,3576.49,26111672,99.86,0,0,0.18,505.06,3576.51,26111673,99.87,0,0,0.18,505.03,3576.54,26111674,99.88,0,0,0.18,505.02,3576.54,26111675,99.7,0,0,0.37,505.47,3576.1,26111676,99.76,0,0,0.55,506.51,3575.06,26111677,99.93,0,0,0.16,506.27,3575.29,26111678,99.9,0,0,0.14,506.36,3575.19,26111679,99.81,0,0,0.3,506.33,3575.21,26111680,99.77,0,0,0.36,506.32,3575.22,26111681,94.75,0.3,0.01,260.98,520.97,3561.02,26111682,99.83,0,0,0.22,508.93,3572.5,26111683,99.9,0,0,0.14,508.91,3572.52,26111684,99.93,0,0,0.17,508.89,3572.53,26111685,99.8,0,0,0.34,508.65,3572.79,26111686,99.75,0,0,0.61,507.78,3573.68,26111687,99.84,0.03,0.02,0.16,506.53,3574.95,26111688,99.88,0.01,0,0.15,506.47,3575.01,26111689,99.83,0.06,0.03,0.14,506.5,3574.97,26111690,99.82,0.06,0.04,0.31,506.51,3574.97,26111691,99.71,0.03,0.02,0.59,507.1,3574.39,26111692,99.84,0.04,0.02,0.15,506.27,3575.25,26111693,99.87,0.05,0.03,0.15,506.25,3575.26,26111694,99.9,0.02,0.02,0.17,506.28,3575.22,26111695,99.82,0.01,0.01,0.32,506.56,3574.96,26111696,99.75,0,0,0.41,507.15,3574.37,26111697,99.83,0,0,0.3,506.27,3575.25,26111698,99.8,0,0,0.14,506.25,3575.26,26111699,99.9,0,0,0.15,506.23,3575.28,26111700,99.45,0,0,0.35,506,3575.53,26111701,99.68,0,0,0.57,506.49,3575.03,26111702,99.85,0,0,0.14,506.25,3575.27,26111703,99.86,0,0,0.16,506.36,3575.16,26111704,99.9,0,0,0.15,506.33,3575.18,26111705,99.75,0,0,0.32,506.69,3574.84,26111706,99.69,0,0,0.34,506.91,3574.61,26111707,99.9,0,0,0.38,506.78,3574.74,26111708,99.86,0,0,0.14,506.76,3574.76,26111709,99.69,0,0,0.29,506,3575.49,26111710,99.75,0,0,0.3,506.22,3575.28,26111711,99.77,0,0,0.33,506.57,3574.93,26111712,99.88,0,0,0.42,506.44,3575.06,26111713,99.9,0,0,0.15,506.48,3575.01,26111714,99.88,0,0,0.17,506.57,3574.94,26111715,99.77,0,0,0.31,506.81,3574.73,26111716,99.87,0,0,0.16,506.8,3574.73,26111717,99.7,0,0,0.59,506.92,3574.61,26111718,99.91,0,0,0.16,506.5,3575.02,26111719,99.92,0,0,0.14,506.49,3575.03,26111720,99.83,0,0,0.32,506.73,3574.81,26111721,99.93,0,0,0.18,506.72,3574.81,26111722,99.78,0,0,0.61,506.86,3574.66,26111723,99.9,0,0,0.21,506.3,3575.22,26111724,99.93,0,0,0.18,506.15,3575.36,26111725,99.8,0,0,0.37,506.32,3575.21,26111726,99.87,0,0,0.14,506.32,3575.21,26111727,99.73,0,0,0.55,507.16,3574.37,26111728,99.85,0,0,0.15,506.77,3574.75,26111729,99.87,0,0,0.15,506.76,3574.76,26111730,99.75,0,0.01,0.32,506.73,3574.81,26111731,99.9,0,0,0.13,506.72,3574.81,26111732,99.76,0,0,0.57,507.17,3574.36,26111733,99.84,0,0,0.16,506.68,3574.84,26111734,99.9,0,0,0.14,506.64,3574.87,26111735,99.41,0,0,0.34,506.56,3574.97,26111736,99.9,0,0,0.16,506.57,3574.96,26111737,99.75,0,0,0.54,506.91,3574.62,26111738,99.9,0,0,0.14,506.52,3575,26111739,99.8,0,0,0.29,506.27,3575.22,26111740,99.7,0,0,0.31,506.76,3574.76,26111741,99.9,0,0,0.16,506.73,3574.78,26111742,99.76,0,0,0.36,507.06,3574.46,26111743,99.9,0,0,0.36,506.45,3575.07,26111744,99.85,0,0,0.15,506.43,3575.1,26111745,99.84,0,0,0.32,506.43,3575.12,26111746,99.88,0,0,0.17,506.42,3575.13,26111747,99.77,0,0,0.37,506.94,3574.6,26111748,99.86,0,0,0.36,506.6,3574.94,26111749,99.91,0,0,0.15,506.58,3574.95,26111750,99.72,0,0,0.33,506.82,3574.73,26111751,99.9,0,0,0.16,506.82,3574.73,26111752,99.85,0,0,0.14,506.79,3574.75,26111753,99.75,0,0,0.57,506.92,3574.62,26111754,99.87,0,0,0.18,506.5,3575.03,26111755,99.76,0,0,0.31,506.5,3575.05,26111756,99.89,0,0,0.14,506.48,3575.07,26111757,99.89,0,0,0.16,506.47,3575.07,26111758,99.8,0,0,0.55,507.27,3574.27,26111759,99.84,0,0,0.15,506.68,3574.85,26111760,99.59,0,0,0.32,506.84,3574.71,26111761,99.8,0,0,0.14,506.85,3574.7,26111762,99.87,0,0,0.15,506.82,3574.72,26111763,99.75,0,0,0.54,507.25,3574.29,26111764,99.87,0,0,0.16,506.78,3574.75,26111765,99.8,0,0,0.35,506.79,3574.76,26111766,99.86,0,0,0.16,506.75,3574.79,26111767,99.88,0,0,0.15,506.74,3574.8,26111768,99.72,0,0,0.56,507.06,3574.47,26111769,99.79,0,0,0.3,506.92,3574.58,26111770,99.81,0,0,0.31,506.93,3574.6,26111771,99.92,0,0,0.16,506.04,3575.48,26111772,99.88,0,0,0.15,506.09,3575.43,26111773,99.76,0,0,0.51,506.42,3575.09,26111774,99.82,0,0,0.2,506.06,3575.47,26111775,99.8,0,0,0.31,506.05,3575.5,26111776,99.86,0,0,0.15,506.04,3575.5,26111777,99.87,0,0,0.19,505.77,3575.77,26111778,99.77,0,0,0.42,506.15,3575.38,26111779,99.85,0,0,0.3,505.97,3575.56,26111780,99.77,0,0,0.32,506.22,3575.32,26111781,99.9,0,0,0.15,506.19,3575.35,26111782,99.87,0,0,0.13,506.17,3575.36,26111783,99.78,0,0,0.32,506.54,3574.99,26111784,99.87,0,0,0.39,506.42,3575.11,26111785,99.78,0,0,0.32,505.35,3576.2,26111786,99.86,0,0,0.15,505.31,3576.23,26111787,99.92,0,0,0.16,505.3,3576.24,26111788,99.9,0,0,0.14,505.26,3576.27,26111789,99.75,0,0,0.58,506.46,3575.07,26111790,99.62,0,0,0.31,506.05,3575.49,26111791,99.88,0,0,0.14,505.96,3575.58,26111792,99.88,0,0,0.16,505.94,3575.6,26111793,99.86,0,0,0.15,505.91,3575.62,26111794,99.76,0,0,0.61,506.59,3574.94,26111795,99.64,0,0,0.34,505.38,3576.18,26111796,99.28,0,0,0.15,505.33,3576.23,26111797,99.91,0,0,0.17,505.31,3576.25,26111798,99.9,0,0,0.14,505.29,3576.26,26111799,99.67,0,0,0.73,506.59,3574.94,26111800,99.81,0,0,0.32,506.01,3575.53,26111801,99.87,0,0,0.16,505.98,3575.56,26111802,99.89,0,0,0.15,505.97,3575.57,26111803,99.81,0,0,0.14,505.94,3575.59,26111804,99.73,0,0,0.61,506.41,3575.12,26111805,99.73,0,0,0.37,505.92,3575.62,26111806,99.87,0,0,0.14,506.05,3575.48,26111807,99.87,0,0,0.16,506.06,3575.47,26111808,99.87,0,0,0.14,506.04,3575.49,26111809,99.72,0,0,0.57,506.38,3575.14,26111810,99.75,0,0,0.3,506.25,3575.29,26111811,99.85,0,0,0.14,506.24,3575.29,26111812,99.88,0,0,0.16,506.21,3575.32,26111813,99.88,0,0,0.14,506.2,3575.32,26111814,99.73,0,0,0.42,506.49,3575.03,26111815,99.77,0,0,0.49,504.97,3576.57,26111816,99.84,0,0,0.18,504.96,3576.58,26111817,99.83,0,0,0.18,505.09,3576.44,26111818,99.8,0,0,0.16,505.07,3576.46,26111819,99.88,0,0,0.21,505.28,3576.24,26111820,98.14,0,0,11.5,506.17,3575.71,26111821,99.79,0,0,0.19,505.39,3576.54,26111822,99.82,0,0,0.14,505.37,3576.56,26111823,99.87,0,0,0.14,505.34,3576.59,26111824,99.84,0,0,0.14,505.32,3576.59,26111825,99.44,0,0,0.78,506.7,3575.25,26111826,99.83,0,0,0.16,506.04,3575.91,26111827,99.83,0,0,0.15,506.02,3575.93,26111828,99.91,0,0,0.14,506.05,3575.89,26111829,99.7,0,0,0.29,506.66,3575.27,26111830,99.57,0,0,0.73,507.04,3574.91,26111831,99.83,0,0,0.15,506.41,3575.54,26111832,99.85,0,0,0.17,506.4,3575.54,26111833,99.81,0,0,0.14,506.37,3575.57,26111834,99.81,0,0,0.16,506.36,3575.57,26111835,99.64,0,0,0.76,506.52,3575.43,26111836,99.86,0,0,0.18,505.61,3576.34,26111837,99.88,0,0,0.2,505.57,3576.37,26111838,99.91,0,0,0.17,505.57,3576.37,26111839,99.94,0,0,0.17,505.54,3576.4,26111840,99.65,0,0,0.75,506.74,3575.21,26111841,99.88,0,0,0.18,506.36,3575.58,26111842,99.92,0,0,0.17,506.43,3575.51,26111843,99.88,0,0,0.19,506.3,3575.64,26111844,99.92,0,0,0.18,506.14,3575.79,26111845,99.64,0,0,0.77,506.76,3575.19,26111846,99.85,0,0,0.14,506.37,3575.57,26111847,99.9,0,0,0.18,506.37,3575.57,26111848,99.92,0,0,0.18,506.33,3575.6,26111849,99.89,0,0,0.17,506.32,3575.61,26111850,99.74,0.01,0.02,0.35,506.55,3575.39,26111851,99.7,0.01,0.04,0.61,506.49,3575.45,26111852,99.85,0,0,0.18,506.09,3575.84,26111853,99.35,0,0,0.17,506.08,3575.85,26111854,99.9,0,0,0.18,506.06,3575.86,26111855,99.81,0,0,0.33,506.3,3575.64,26111856,99.74,0,0,0.62,506.86,3575.07,26111857,99.9,0,0,0.17,506.5,3575.42,26111858,99.86,0,0,0.17,506.62,3575.3,26111859,99.76,0,0,0.34,506.67,3575.22,26111860,99.78,0,0,0.32,506.66,3575.26,26111861,99.72,0,0,0.61,506.77,3575.13,26111862,99.85,0,0,0.16,506.36,3575.54,26111863,99.89,0,0,0.17,506.33,3575.57,26111864,99.9,0,0,0.17,506.32,3575.58,26111865,99.76,0,0,0.35,506.36,3575.55,26111866,99.73,0,0,0.57,507.32,3574.59,26111867,99.89,0,0,0.16,506.76,3575.14,26111868,99.89,0,0,0.17,506.73,3575.16,26111869,99.89,0,0,0.15,506.89,3575,26111870,99.79,0,0,0.32,506.66,3575.25,26111871,99.75,0,0,0.46,507.34,3574.57,26111872,99.87,0,0,0.25,506.61,3575.29,26111873,99.87,0,0,0.15,506.59,3575.31,26111874,99.92,0,0,0.15,506.57,3575.32,26111875,99.75,0,0,0.32,506.33,3575.58,26111876,99.76,0,0,0.52,506.87,3575.04,26111877,99.86,0,0,0.25,506.27,3575.62,26111878,99.87,0,0,0.18,506.25,3575.64,26111879,99.91,0,0,0.17,506.26,3575.63,26111880,99.64,0,0,0.37,506.65,3575.25,26111881,99.7,0,0,0.55,506.99,3574.91,26111882,99.85,0,0,0.15,506.62,3575.27,26111883,99.88,0,0,0.14,506.6,3575.29,26111884,99.89,0,0,0.14,506.59,3575.29,26111885,99.78,0,0,0.28,506.58,3575.32,26111886,99.86,0,0,0.16,506.56,3575.34,26111887,99.67,0,0,0.59,506.41,3575.48,26111888,99.85,0,0,0.15,506.01,3575.88,26111889,99.7,0,0,0.29,506.49,3575.37,26111890,99.78,0,0.01,0.31,506.55,3575.32,26111891,99.89,0,0,0.17,506.63,3575.24,26111892,99.69,0,0,0.56,506.95,3574.91,26111893,99.87,0,0,0.14,506.59,3575.27,26111894,99.81,0,0,0.14,506.57,3575.31,26111895,99.74,0,0,0.29,506.56,3575.33,26111896,99.86,0,0,0.16,506.53,3575.36,26111897,99.73,0,0,0.66,507.06,3574.82,26111898,99.88,0,0,0.15,506.73,3575.15,26111899,99.89,0,0,0.14,506.77,3575.11,26111900,99.82,0,0,0.27,506.45,3575.45,26111901,99.86,0,0,0.14,506.43,3575.46,26111902,99.72,0,0,0.58,506.93,3574.98,26111903,99.89,0,0,0.18,506.53,3575.37,26111904,99.89,0,0,0.17,506.37,3575.53,26111905,99.34,0,0,0.29,506.18,3575.73,26111906,99.91,0,0,0.16,506.09,3575.82,26111907,99.7,0,0,0.53,506.88,3575.03,26111908,99.86,0,0,0.21,506.54,3575.36,26111909,99.92,0,0,0.15,506.51,3575.39,26111910,99.65,0,0,0.31,505.65,3576.26,26111911,99.88,0,0,0.16,505.69,3576.21,26111912,99.69,0,0,0.51,506.44,3575.46,26111913,99.86,0,0,0.2,506.88,3575.02,26111914,99.86,0,0,0.17,506.85,3575.04,26111915,99.75,0,0,0.27,506.86,3575.05,26111916,99.91,0,0,0.14,506.83,3575.07,26111917,99.78,0,0,0.39,507.17,3574.73,26111918,99.9,0,0,0.39,506.78,3575.11,26111919,99.73,0,0,0.3,506.77,3575.1,26111920,99.76,0,0,0.26,506.82,3575.06,26111921,99.9,0.01,0,0.16,506.86,3575.02,26111922,99.72,0,0,0.45,507.19,3574.68,26111923,99.9,0,0,0.29,507.05,3574.82,26111924,99.82,0,0,0.14,507.03,3574.85,26111925,99.79,0,0,0.28,506.8,3575.11,26111926,99.89,0,0,0.14,506.5,3575.4,26111927,99.73,0,0,0.14,506.01,3575.88,26111928,99.69,0,0,0.57,505.79,3576.09,26111929,99.91,0,0,0.14,505.17,3576.71,26111930,99.81,0,0,0.26,505.89,3576.01,26111931,99.91,0,0,0.16,505.89,3576,26111932,99.92,0,0,0.13,505.87,3576.02,26111933,99.78,0,0,0.57,506.63,3575.25,26111934,99.88,0,0,0.14,506.06,3575.82,26111935,99.81,0,0,0.32,506.06,3575.84,26111936,99.87,0,0,0.18,506.05,3575.85,26111937,99.87,0,0,0.18,506.01,3575.88,26111938,99.75,0,0,0.57,506.35,3575.53,26111939,99.89,0,0,0.16,505.97,3575.91,26111940,99.54,0,0,0.27,506.19,3575.7,26111941,99.9,0,0,0.14,506.14,3575.75,26111942,99.84,0,0,0.16,506.12,3575.77,26111943,99.72,0,0,0.57,506.46,3575.43,26111944,99.9,0,0,0.14,506.08,3575.8,26111945,99.77,0,0,0.28,506.09,3575.81,26111946,99.9,0,0,0.13,506.05,3575.84,26111947,99.9,0,0,0.17,506.04,3575.85,26111948,99.75,0,0,0.55,506.47,3575.41,26111949,99.78,0,0,0.32,505.75,3576.12,26111950,99.86,0,0,0.26,506.3,3575.59,26111951,99.87,0,0,0.14,506.39,3575.5,26111952,99.87,0,0,0.16,506.38,3575.5,26111953,99.76,0,0,0.57,506.7,3575.18,26111954,99.84,0,0,0.18,506.34,3575.55,26111955,99.81,0,0,0.28,506.09,3575.83,26111956,99.9,0,0,0.14,506.05,3575.86,26111957,99.84,0,0,0.18,506.04,3575.86,26111958,99.68,0,0,0.43,506.36,3575.54,26111959,99.84,0,0,0.29,506,3575.89,26111960,99.76,0,0,0.25,505.99,3575.92,26111961,99.82,0,0,0.17,506.09,3575.82,26111962,99.82,0,0,0.14,506.08,3575.83,26111963,99.8,0,0,0.18,505.87,3576.03,26111964,99.67,0,0,0.57,506.46,3575.44,26111965,99.72,0,0,0.27,506.33,3575.58,26111966,99.88,0,0,0.15,506.32,3575.59,26111967,99.88,0,0,0.15,506.31,3575.6,26111968,99.86,0,0,0.15,506.28,3575.62,26111969,99.77,0,0,0.55,506.57,3575.32,26111970,99.72,0,0,0.3,506.02,3575.89,26111971,99.9,0,0,0.18,506.01,3575.89,26111972,99.9,0,0,0.18,505.98,3575.92,26111973,99.91,0,0,0.16,506.02,3575.88,26111974,99.44,0,0,0.5,506.66,3575.23,26111975,99.62,0,0,0.32,505.2,3576.71,26111976,99.89,0,0,0.14,505.15,3576.75,26111977,99.85,0,0,0.17,505.14,3576.76,26111978,99.85,0,0,0.15,505.11,3576.79,26111979,99.63,0,0.01,0.61,506.54,3575.33,26111980,99.76,0,0,0.36,506.31,3575.57,26111981,99.82,0,0,0.15,506.26,3575.62,26111982,99.82,0,0,0.15,506.23,3575.64,26111983,99.83,0,0,0.14,506.35,3575.52,26111984,99.74,0,0,0.52,506.63,3575.25,26111985,99.64,0,0,0.36,505.41,3576.48,26111986,99.86,0,0,0.14,505.38,3576.52,26111987,99.8,0,0,0.15,505.35,3576.54,26111988,99.8,0,0,0.16,505.34,3576.55,26111989,99.7,0,0,0.44,506.16,3575.72,26111990,99.75,0,0,0.43,506.05,3575.85,26111991,99.8,0,0,0.17,506.03,3575.86,26111992,99.83,0,0,0.14,506.01,3575.87,26111993,99.8,0,0,0.15,505.98,3575.9,26111994,93.69,2.43,0.03,263.77,517.02,3563.53,26111995,99.74,0,0,0.48,508.76,3570.76,26111996,99.83,0,0,0.17,508.73,3570.79,26111997,99.83,0,0,0.18,508.72,3570.79,26111998,99.82,0,0,0.15,508.69,3570.82,26111999,99.83,0,0,0.2,506.87,3572.68,26112000,99.17,0,0,0.71,504.6,3575,26112001,99.8,0,0,0.17,504.2,3575.4,26112002,99.78,0,0,0.16,504.18,3575.41,26112003,99.78,0,0,0.18,504.15,3575.44,26112004,99.84,0,0,0.17,504.13,3575.45,26112005,99.6,0,0,0.76,506.41,3573.19,26112006,99.81,0,0,0.14,506.09,3573.51,26112007,99.83,0,0,0.16,506.06,3573.53,26112008,99.79,0,0,0.14,506.06,3573.53,26112009,99.74,0,0,0.29,506.03,3573.54,26112010,99.56,0,0,0.72,506.87,3572.71,26112011,99.82,0,0,0.24,506.25,3573.33,26112012,99.84,0,0,0.15,506.31,3573.26,26112013,99.79,0,0,0.15,506.39,3573.18,26112014,99.78,0,0,0.15,506.38,3573.18,26112015,99.42,0,0,0.71,506.97,3572.61,26112016,99.77,0,0,0.13,506.61,3572.97,26112017,99.83,0.01,0.03,0.21,506.56,3573.01,26112018,99.78,0,0,0.14,506.52,3573.05,26112019,99.81,0,0,0.15,506.51,3573.05,26112020,99.55,0,0,0.65,507.23,3572.35,26112021,99.76,0,0,0.21,506.49,3573.09,26112022,99.81,0,0,0.14,506.66,3572.91,26112023,99.83,0,0,0.19,506.67,3572.89,26112024,99.81,0,0,0.13,506.64,3572.92,26112025,99.6,0,0,0.59,506.9,3572.68,26112026,99.83,0,0,0.31,506.61,3572.96,26112027,99.83,0,0,0.14,506.59,3572.98,26112028,99.82,0,0,0.14,506.57,3572.99,26112029,99.81,0,0,0.15,506.55,3573,26112030,99.53,0,0,0.46,506.89,3572.68,26112031,99.78,0,0,0.38,506.3,3573.28,26112032,99.81,0,0,0.16,506.27,3573.3,26112033,99.76,0,0,0.14,506.26,3573.3,26112034,99.78,0.01,0.02,0.16,506.36,3573.2,26112035,99.48,0,0,0.47,506.7,3572.88,26112036,99.82,0,0,0.38,506.57,3573,26112037,99.82,0,0,0.14,506.54,3573.02,26112038,99.84,0,0,0.16,506.53,3573.03,26112039,99.74,0,0,0.29,506.75,3572.8,26112040,99.74,0,0,0.32,506.64,3572.93,26112041,99.68,0,0,0.57,507.04,3572.53,26112042,99.79,0,0,0.14,506.64,3572.92,26112043,99.8,0,0,0.16,506.63,3572.93,26112044,99.84,0,0,0.15,506.6,3572.97,26112045,99.78,0,0,0.3,506.86,3572.73,26112046,96.58,0.02,0.01,78.75,519.39,3562.1,26112047,99.83,0,0,0.25,509.42,3570.18,26112048,99.8,0,0,0.14,509.39,3570.21,26112049,99.8,0,0,0.15,509.38,3570.21,26112050,99.76,0,0,0.27,509.13,3570.47,26112051,99.7,0,0,0.67,508.02,3571.6,26112052,99.81,0,0,0.18,506.42,3573.21,26112053,99.85,0,0,0.18,506.41,3573.23,26112054,99.84,0,0,0.16,506.38,3573.25,26112055,99.75,0,0,0.36,506.63,3573.01,26112056,99.7,0,0,0.58,506.96,3572.68,26112057,99.82,0,0,0.14,506.59,3573.04,26112058,99.84,0,0,0.15,506.61,3573.02,26112059,99.82,0,0,0.17,506.74,3572.89,26112060,99.39,0,0,0.33,506.02,3573.63,26112061,99.58,0,0,0.42,506.61,3573.02,26112062,99.71,0,0,0.29,506.69,3572.94,26112063,99.78,0,0,0.14,506.67,3572.96,26112064,99.81,0,0,0.15,506.65,3572.97,26112065,99.71,0,0,0.3,506.65,3572.99,26112066,99.69,0,0,0.51,506.89,3572.75,26112067,99.8,0,0,0.18,506.13,3573.51,26112068,99.84,0,0,0.16,506.1,3573.52,26112069,99.59,0,0,0.43,506.09,3573.51,26112070,99.72,0,0,0.28,506.64,3572.99,26112071,99.68,0,0,0.33,507.4,3572.23,26112072,99.74,0,0,0.4,506.93,3572.7,26112073,99.8,0,0,0.15,506.9,3572.72,26112074,99.77,0,0,0.15,506.89,3572.73,26112075,99.6,0,0,0.29,506.65,3572.98,26112076,99.82,0,0,0.14,506.62,3573.01,26112077,99.59,0,0,0.6,507.08,3572.54,26112078,99.78,0,0,0.18,506.57,3573.05,26112079,99.8,0,0,0.14,506.54,3573.07,26112080,99.69,0,0,0.27,506.47,3573.16,26112081,99.75,0,0,0.18,506.29,3573.34,26112082,99.68,0,0,0.55,506.25,3573.37,26112083,99.8,0,0,0.19,505.76,3573.86,26112084,99.78,0,0,0.14,505.44,3574.18,26112085,99.6,0,0,0.29,504.72,3574.92,26112086,99.79,0,0,0.14,504.68,3574.95,26112087,99.65,0,0,0.52,505.76,3573.87,26112088,99.76,0,0,0.19,506.11,3573.51,26112089,99.75,0,0,0.15,506.08,3573.53,26112090,99.58,0,0,0.28,506.34,3573.3,26112091,99.78,0,0,0.16,506.31,3573.32,26112092,99.63,0,0,0.41,506.61,3573.01,26112093,99.81,0,0,0.3,506.24,3573.38,26112094,99.79,0,0,0.16,506.21,3573.4,26112095,99.62,0,0,0.34,506.22,3573.41,26112096,99.77,0,0,0.18,506.19,3573.44,26112097,99.63,0,0,0.44,506.89,3572.73,26112098,99.79,0,0,0.31,506.15,3573.47,26112099,99.6,0,0,0.36,505.89,3573.7,26112100,99.68,0,0,0.33,506.13,3573.48,26112101,99.78,0,0,0.18,506.12,3573.48,26112102,99.68,0,0,0.47,506.47,3573.12,26112103,99.79,0,0,0.29,506.33,3573.26,26112104,99.8,0,0,0.14,506.45,3573.15,26112105,99.58,0,0,0.29,506.5,3573.12,26112106,99.75,0,0,0.33,506.22,3573.4,26112107,99.6,0,0,0.54,506.53,3573.08,26112108,99.78,0,0,0.23,505.94,3573.67,26112109,99.83,0,0,0.16,505.92,3573.68,26112110,99.64,0,0,0.32,505.93,3573.7,26112111,99.74,0,0,0.13,505.92,3573.72,26112112,99.81,0,0,0.16,505.88,3573.75,26112113,99.62,0,0,0.61,506.72,3572.91,26112114,99.79,0,0,0.19,506.33,3573.29,26112115,99.66,0,0,0.34,506.1,3573.54,26112116,99.79,0,0,0.17,506.21,3573.43,26112117,99.79,0,0,0.18,506.24,3573.39,26112118,99.67,0,0,0.55,506.77,3572.86,26112119,99.79,0,0,0.14,506.45,3573.18,26112120,99.57,0,0,0.27,506.45,3573.2,26112121,99.71,0,0,0.15,506.43,3573.21,26112122,99.71,0,0,0.14,506.4,3573.23,26112123,99.6,0,0,0.55,506.86,3572.77,26112124,99.78,0,0,0.15,506.36,3573.26,26112125,99.65,0,0,0.29,505.42,3574.22,26112126,99.78,0,0,0.15,505.36,3574.28,26112127,99.79,0,0,0.19,505.35,3574.28,26112128,99.65,0,0,0.58,506.22,3573.41,26112129,99.68,0,0,0.29,506.71,3572.89,26112130,99.69,0,0,0.28,506.23,3573.4,26112131,99.82,0,0,0.16,506.2,3573.42,26112132,99.73,0,0,0.15,506.18,3573.44,26112133,99.61,0,0,0.45,506.5,3573.11,26112134,99.68,0,0,0.3,506.14,3573.47,26112135,99.6,0,0,0.34,506.37,3573.25,26112136,99.77,0,0,0.18,506.36,3573.26,26112137,99.76,0,0,0.22,506.09,3573.53,26112138,99.65,0,0,0.44,506.68,3572.93,26112139,99.73,0,0,0.31,506.08,3573.52,26112140,99.58,0,0,0.33,506.48,3573.14,26112141,99.72,0,0,0.17,506.46,3573.16,26112142,99.78,0,0,0.17,506.45,3573.17,26112143,99.56,0,0,0.46,506.63,3572.97,26112144,99.81,0,0,0.31,505.67,3573.94,26112145,99.64,0,0,0.31,505.18,3574.44,26112146,99.85,0,0,0.18,505.15,3574.47,26112147,99.85,0,0,0.17,505.13,3574.48,26112148,99.62,0,0,0.57,505.58,3574.02,26112149,99.9,0,0,0.16,506.07,3573.53,26112150,99.74,0,0,0.33,506.38,3573.24,26112151,99.9,0,0,0.2,506.44,3573.18,26112152,99.87,0,0,0.19,506.45,3573.16,26112153,99.89,0,0,0.18,506.44,3573.17,26112154,99.68,0,0,0.57,507.08,3572.52,26112155,99.54,0,0,0.29,505.48,3574.15,26112156,99.9,0,0,0.17,505.41,3574.21,26112157,99.9,0,0,0.18,505.41,3574.21,26112158,99.88,0,0,0.16,505.38,3574.24,26112159,99.62,0,0,0.75,505.61,3573.98,26112160,99.76,0,0,0.29,506.55,3573.05,26112161,99.81,0,0,0.18,506.56,3573.04,26112162,99.76,0,0,0.17,506.54,3573.05,26112163,99.89,0,0,0.18,506.68,3572.91,26112164,99.68,0,0,0.59,506.83,3572.78,26112165,99.77,0,0,0.28,506.46,3573.16,26112166,99.85,0,0,0.14,506.42,3573.19,26112167,99.76,0,0,0.16,506.4,3573.22,26112168,99.88,0,0,0.14,506.38,3573.22,26112169,99.75,0,0,0.56,506.77,3572.83,26112170,99.77,0,0,0.28,506.37,3573.26,26112171,99.89,0,0,0.14,506.34,3573.28,26112172,99.91,0,0,0.14,506.33,3573.29,26112173,99.84,0,0,0.15,506.3,3573.31,26112174,99.71,0,0,0.51,506.75,3572.86,26112175,99.66,0,0,0.36,506.53,3573.09,26112176,99.86,0,0,0.16,506.49,3573.13,26112177,99.92,0,0,0.14,506.46,3573.15,26112178,99.91,0,0,0.14,506.45,3573.16,26112179,99.75,0,0,0.43,506.78,3572.82,26112180,99.55,0,0,0.41,506.68,3572.95,26112181,99.84,0,0,0.14,506.65,3572.97,26112182,99.88,0,0,0.17,506.58,3573.04,26112183,99.92,0,0,0.14,506.37,3573.25,26112184,99.73,0,0,0.55,506.51,3573.1,26112185,99.84,0,0,0.37,506.55,3573.07,26112186,99.82,0,0,0.16,506.62,3572.99,26112187,99.85,0,0,0.16,506.73,3572.88,26112188,99.81,0,0,0.16,506.71,3572.89,26112189,99.68,0,0,0.56,506.91,3572.67,26112190,99.8,0,0,0.43,506.69,3572.91,26112191,99.88,0,0,0.14,506.67,3572.92,26112192,99.91,0,0,0.14,506.65,3572.95,26112193,99.9,0,0,0.16,506.63,3572.95,26112194,87.29,0,0,69.42,536.01,3527.1,26112195,99.72,0,0,34.11,509.46,3565.71,26112196,99.86,0,0,0.17,509.41,3565.77,26112197,99.86,0,0,0.17,509.15,3566.03,26112198,99.81,0,0,0.16,509.3,3565.88,26112199,99.84,0,0,0.14,509.3,3565.87,26112200,99.56,0,0,0.71,507.27,3568.02,26112201,99.86,0,0,0.16,506.86,3568.43,26112202,99.88,0,0,0.15,506.83,3568.45,26112203,99.83,0,0,0.18,506.7,3568.57,26112204,99.87,0,0,0.13,506.3,3568.97,26112205,98.35,0,0,16.07,509.94,3565.85,26112206,99.87,0,0,0.22,506.89,3568.53,26112207,99.88,0,0,0.14,506.88,3568.53,26112208,99.9,0,0,0.14,506.86,3568.56,26112209,99.84,0,0,0.15,506.84,3568.56,26112210,99.6,0,0,0.55,506.58,3568.84,26112211,99.88,0,0,0.26,507,3568.42,26112212,99.85,0,0,0.16,506.99,3568.43,26112213,99.88,0,0,0.14,506.97,3568.44,26112214,99.89,0,0,0.14,506.94,3568.47,26112215,99.51,0,0,0.69,507.45,3567.98,26112216,99.72,0,0,0.19,507.17,3568.25,26112217,99.88,0,0,0.18,507.16,3568.26,26112218,99.88,0,0,0.19,507.12,3568.29,26112219,99.08,0,0,0.33,506.37,3569,26112220,99.55,0,0,0.75,507.23,3568.16,26112221,99.85,0,0,0.19,506.83,3568.56,26112222,99.8,0,0,0.18,506.87,3568.51,26112223,99.84,0,0,0.18,506.97,3568.41,26112224,99.85,0,0,0.19,506.95,3568.43,26112225,99.64,0,0,0.79,506.77,3568.62,26112226,99.83,0,0,0.18,506.93,3568.46,26112227,99.79,0,0,0.21,506.91,3568.48,26112228,99.88,0,0,0.14,506.89,3568.49,26112229,99.91,0,0,0.17,506.87,3568.5,26112230,99.55,0,0,0.72,507.23,3568.17,26112231,99.88,0,0,0.18,506.85,3568.54,26112232,99.87,0,0,0.18,506.83,3568.55,26112233,99.83,0,0,0.18,506.81,3568.57,26112234,99.88,0,0,0.18,506.79,3568.59,26112235,99.51,0,0,0.45,507.79,3567.61,26112236,99.88,0,0,0.42,506.85,3568.54,26112237,99.87,0,0,0.18,506.2,3569.18,26112238,99.9,0,0,0.14,506.18,3569.2,26112239,99.88,0,0,0.14,506.16,3569.22,26112240,99.6,0,0,0.28,505.93,3569.47,26112241,99.73,0,0,0.54,506.24,3569.15,26112242,99.87,0,0,0.15,505.87,3569.51,26112243,99.9,0,0,0.17,505.85,3569.54,26112244,99.83,0,0,0.15,505.83,3569.55,26112245,99.67,0,0,0.38,506.06,3569.33,26112246,99.7,0,0,0.52,506.49,3568.9,26112247,99.84,0,0,0.16,506.22,3569.17,26112248,99.85,0,0,0.14,506.21,3569.17,26112249,99.79,0,0,0.27,506.22,3569.14,26112250,99.75,0,0,0.3,506.45,3568.92,26112251,99.74,0,0,0.54,506.95,3568.42,26112252,99.8,0,0,0.16,506.16,3569.21,26112253,99.8,0,0,0.16,506.13,3569.24,26112254,99.86,0,0,0.14,506.12,3569.26,26112255,99.66,0,0,0.3,506.12,3569.28,26112256,99.73,0,0,0.54,506.46,3568.93,26112257,99.88,0,0,0.19,506.07,3569.32,26112258,99.84,0,0,0.16,506.22,3569.17,26112259,99.85,0,0,0.16,506.25,3569.13,26112260,99.72,0,0,0.29,506.5,3568.89,26112261,99.78,0,0,0.48,506.22,3569.17,26112262,99.9,0,0,0.21,505.22,3570.17,26112263,99.85,0,0,0.17,505.34,3570.04,26112264,99.9,0,0,0.16,505.91,3569.46,26112265,99.7,0,0,0.29,504.98,3570.42,26112266,99.73,0,0,0.39,506,3569.39,26112267,99.91,0,0,0.29,506.13,3569.25,26112268,99.85,0,0,0.14,506.12,3569.26,26112269,99.85,0,0,0.15,506.25,3569.13,26112270,99.74,0,0,0.33,506.26,3569.13,26112271,99.73,0,0,0.57,506.66,3568.73,26112272,99.88,0,0,0.18,506.71,3568.67,26112273,99.89,0,0,0.18,506.68,3568.7,26112274,99.9,0,0,0.18,506.67,3568.7,26112275,99.78,0,0,0.29,506.42,3568.97,26112276,99.75,0,0,0.46,506.71,3568.68,26112277,99.88,0,0,0.32,506.48,3568.9,26112278,99.9,0,0,0.15,506.48,3568.89,26112279,99.68,0,0,0.27,506.45,3568.91,26112280,99.8,0,0,0.27,506.68,3568.69,26112281,99.89,0,0,0.14,506.67,3568.69,26112282,99.77,0,0,0.58,506.77,3568.59,26112283,99.93,0,0,0.14,506.39,3568.97,26112284,99.91,0,0,0.15,506.37,3568.98,26112285,99.77,0,0,0.32,506.37,3569,26112286,99.92,0,0,0.14,506.36,3569,26112287,99.76,0,0,0.54,506.78,3568.58,26112288,99.76,0,0,0.16,506.32,3569.03,26112289,99.89,0,0,0.14,506.34,3569.01,26112290,99.77,0,0,0.29,506.73,3568.63,26112291,99.86,0,0,0.13,506.7,3568.66,26112292,99.68,0,0,0.54,507.04,3568.32,26112293,99.88,0,0,0.16,506.66,3568.69,26112294,99.85,0,0,0.14,506.64,3568.7,26112295,99.72,0,0,0.28,506.16,3569.2,26112296,99.82,0,0,0.18,506.13,3569.23,26112297,99.71,0,0,0.55,506.7,3568.66,26112298,99.79,0,0,0.15,506.58,3568.77,26112299,99.84,0,0,0.17,506.56,3568.79,26112300,99.55,0,0,0.29,506.6,3568.76,26112301,99.83,0,0,0.15,506.68,3568.68,26112302,99.7,0,0,0.43,507.19,3568.16,26112303,99.87,0,0,0.3,506.68,3568.66,26112304,99.88,0,0,0.16,506.66,3568.68,26112305,99.71,0,0,0.32,505.95,3569.4,26112306,99.84,0,0,0.13,505.91,3569.44,26112307,99.69,0,0,0.45,506.33,3569.01,26112308,99.88,0,0,0.29,506.6,3568.73,26112309,99.75,0,0,0.29,506.59,3568.72,26112310,99.83,0,0,0.33,506.58,3568.75,26112311,99.88,0,0,0.14,506.57,3568.76,26112312,99.73,0,0,0.46,506.92,3568.4,26112313,99.91,0,0,0.26,506.82,3568.51,26112314,99.89,0,0,0.14,506.95,3568.39,26112315,99.72,0,0,0.28,506.7,3568.65,26112316,99.88,0,0,0.16,506.68,3568.66,26112317,99.85,0,0,0.21,506.66,3568.68,26112318,99.73,0,0,0.55,507.4,3567.94,26112319,99.85,0,0,0.14,506.84,3568.49,26112320,99.78,0,0,0.32,506.84,3568.51,26112321,99.86,0,0,0.18,506.82,3568.53,26112322,99.85,0,0,0.18,506.79,3568.56,26112323,99.65,0,0,0.56,507.25,3568.08,26112324,99.86,0,0,0.16,506.68,3568.65,26112325,99.72,0,0,0.34,506.94,3568.41,26112326,99.88,0,0,0.18,506.9,3568.44,26112327,99.86,0,0,0.18,506.89,3568.45,26112328,99.73,0,0,0.54,507.22,3568.11,26112329,99.9,0,0,0.14,506.84,3568.49,26112330,99.74,0,0,0.29,506.61,3568.74,26112331,99.88,0,0,0.14,506.58,3568.77,26112332,99.91,0,0,0.14,506.56,3568.78,26112333,99.76,0,0,0.57,506.9,3568.44,26112334,99.9,0,0,0.16,506.52,3568.81,26112335,99.79,0,0,0.32,506.93,3568.41,26112336,99.65,0,0,0.17,506.97,3568.38,26112337,99.93,0,0,0.18,506.94,3568.4,26112338,99.75,0,0,0.54,507.52,3567.81,26112339,99.7,0,0,0.28,506.4,3568.92,26112340,99.46,0,0,0.3,506.92,3568.41,26112341,99.9,0,0,0.14,506.86,3568.47,26112342,99.88,0,0,0.17,506.83,3568.49,26112343,99.74,0,0,0.55,507.18,3568.15,26112344,99.89,0,0,0.16,506.8,3568.54,26112345,99.68,0,0,0.28,506.57,3568.79,26112346,99.93,0,0,0.18,506.69,3568.66,26112347,99.82,0,0,0.16,506.71,3568.64,26112348,99.72,0,0,0.48,507.16,3568.18,26112349,99.93,0,0,0.21,507.16,3568.18,26112350,99.81,0,0,0.29,506.66,3568.69,26112351,99.86,0,0,0.14,506.63,3568.72,26112352,99.9,0,0,0.14,506.62,3568.73,26112353,99.71,0,0,0.4,507.28,3568.06,26112354,99.89,0,0,0.31,506.82,3568.52,26112355,99.75,0,0,0.3,506.59,3568.76,26112356,99.87,0,0,0.16,506.56,3568.8,26112357,99.85,0,0,0.16,506.55,3568.81,26112358,99.82,0,0,0.14,506.68,3568.68,26112359,99.65,0,0,0.53,507.51,3567.85,26112360,99.58,0,0,0.3,506.94,3568.43,26112361,99.89,0,0,0.14,506.93,3568.44,26112362,99.86,0,0,0.16,506.9,3568.47,26112363,99.8,0.01,0.06,0.15,506.94,3568.42,26112364,99.74,0,0,0.54,507.25,3568.11,26112365,99.75,0,0,0.29,505.69,3569.68,26112366,99.85,0,0,0.14,505.66,3569.71,26112367,99.78,0,0,0.17,505.63,3569.73,26112368,99.85,0,0,0.15,505.6,3569.75,26112369,99.5,0,0,0.7,507.58,3567.75,26112370,99.75,0,0,0.28,506.56,3568.79,26112371,99.88,0,0,0.14,506.54,3568.81,26112372,99.75,0,0,0.16,506.55,3568.79,26112373,99.83,0,0,0.15,506.69,3568.65,26112374,99.64,0,0,0.54,507.29,3568.04,26112375,99.65,0,0,0.33,505.95,3569.4,26112376,99.9,0,0,0.17,505.87,3569.47,26112377,99.88,0,0,0.18,506.08,3569.26,26112378,99.9,0,0,0.15,506.07,3569.26,26112379,99.69,0,0,0.49,506.81,3568.52,26112380,99.72,0,0,0.34,506.8,3568.55,26112381,99.87,0,0,0.15,506.76,3568.58,26112382,99.9,0,0,0.16,506.9,3568.44,26112383,99.86,0,0,0.17,506.91,3568.43,26112384,99.76,0,0,0.49,507.34,3567.99,26112385,99.75,0,0,0.33,506.9,3568.45,26112386,99.89,0,0,0.16,506.87,3568.47,26112387,99.9,0,0,0.14,506.85,3568.49,26112388,99.82,0,0,0.15,506.77,3568.56,26112389,99.73,0,0,0.48,506.27,3569.07,26112390,99.74,0,0,0.34,506.04,3569.31,26112391,99.85,0,0,0.14,506.08,3569.27,26112392,99.87,0,0,0.15,506.17,3569.17,26112393,99.81,0,0,0.14,506.16,3569.17,26112394,99.7,0,0,0.56,506.55,3568.78,26112395,99.8,0,0,0.29,506.39,3568.95,26112396,99.73,0,0,0.18,506.36,3568.98,26112397,99.83,0,0,0.12,506.34,3569,26112398,99.83,0,0,0.18,506.31,3569.02,26112399,99.54,0,0,0.7,506.91,3568.4,26112400,99.73,0,0,0.41,506.79,3568.54,26112401,99.9,0,0,0.18,506.76,3568.57,26112402,99.9,0,0,0.15,506.83,3568.49,26112403,99.89,0,0,0.14,506.94,3568.38,26112404,99.83,0,0,0.15,506.93,3568.4,26112405,99.61,0,0,0.67,507.13,3568.22,26112406,99.86,0,0,0.16,506.67,3568.68,26112407,99.81,0,0,0.14,506.63,3568.71,26112408,99.9,0,0,0.16,506.63,3568.71,26112409,99.85,0,0,0.14,506.59,3568.74,26112410,94.74,0.33,0.01,261.16,520.91,3555.12,26112411,99.88,0,0,0.21,508.8,3566.36,26112412,99.89,0,0,0.16,508.78,3566.37,26112413,99.87,0,0,0.14,508.9,3566.25,26112414,99.9,0,0,0.15,508.92,3566.22,26112415,99.59,0,0,0.76,507.49,3567.69,26112416,99.87,0,0,0.14,505.52,3569.67,26112417,99.93,0,0,0.16,505.49,3569.69,26112418,99.9,0,0,0.14,505.46,3569.72,26112419,99.85,0,0,0.15,505.45,3569.73,26112420,99.31,0,0,0.55,506.35,3568.85,26112421,99.85,0,0,0.32,506.42,3568.81,26112422,99.84,0,0,0.15,506.39,3568.83,26112423,99.83,0,0,0.14,506.38,3568.83,26112424,99.86,0,0,0.14,506.35,3568.86,26112425,99.52,0,0,0.71,506.49,3568.73,26112426,99.87,0,0,0.19,506.51,3568.71,26112427,99.83,0,0,0.16,506.48,3568.74,26112428,99.85,0,0,0.14,506.46,3568.74,26112429,99.8,0,0,0.26,506.68,3568.5,26112430,99.7,0,0,0.44,507.04,3568.17,26112431,99.88,0,0,0.42,506.67,3568.53,26112432,99.87,0,0,0.16,506.64,3568.56,26112433,99.88,0,0,0.14,506.62,3568.57,26112434,99.89,0,0,0.15,506.6,3568.61,26112435,99.64,0,0,0.47,507.36,3567.86,26112436,99.88,0,0,0.38,507.01,3568.21,26112437,99.86,0,0,0.17,506.99,3568.23,26112438,99.86,0,0,0.16,506.97,3568.24,26112439,99.91,0,0,0.14,506.94,3568.27,26112440,99.8,0,0,0.29,506.71,3568.51,26112441,99.74,0,0,0.58,507.34,3567.88,26112442,99.85,0,0,0.14,506.66,3568.55,26112443,99.84,0,0,0.16,506.63,3568.59,26112444,99.86,0,0,0.17,506.13,3569.08,26112445,99.72,0,0,0.3,506.37,3568.85,26112446,99.74,0,0,0.59,507.06,3568.16,26112447,99.88,0,0,0.14,506.79,3568.42,26112448,99.87,0,0,0.14,506.77,3568.44,26112449,99.9,0,0,0.15,506.75,3568.45,26112450,99.69,0,0,0.29,506.51,3568.72,26112451,99.77,0,0,0.54,507.01,3568.21,26112452,99.86,0,0,0.16,506.72,3568.5,26112453,99.85,0,0,0.14,506.7,3568.52,26112454,99.85,0,0,0.15,506.67,3568.54,26112455,99.79,0,0,0.33,505.7,3569.52,26112456,99.78,0,0,0.45,506.9,3568.31,26112457,99.93,0,0,0.28,506.79,3568.42,26112458,99.89,0,0,0.15,506.77,3568.43,26112459,99.73,0,0,0.27,506.5,3568.68,26112460,98.41,0,0,0.31,506.04,3569.16,26112461,99.73,0,0,0.52,506.49,3568.7,26112462,99.9,0,0,0.21,506.47,3568.72,26112463,99.91,0,0,0.14,506.44,3568.75,26112464,99.9,0,0,0.15,506.43,3568.77,26112465,99.8,0,0,0.28,506.43,3568.79,26112466,99.75,0,0,0.45,506.85,3568.37,26112467,99.88,0,0,0.3,506.63,3568.58,26112468,99.91,0,0,0.14,506.62,3568.59,26112469,99.89,0,0,0.16,506.72,3568.48,26112470,99.75,0,0,0.27,507.04,3568.18,26112471,99.75,0,0,0.4,507.33,3567.89,26112472,99.9,0,0,0.3,506.75,3568.46,26112473,99.9,0,0,0.14,506.73,3568.48,26112474,99.91,0,0,0.15,506.71,3568.49,26112475,99.81,0,0,0.29,506.73,3568.5,26112476,99.88,0,0,0.13,506.69,3568.52,26112477,99.74,0,0,0.59,506.42,3568.79,26112478,99.9,0,0,0.16,505.92,3569.29,26112479,99.87,0,0,0.17,505.91,3569.3,26112480,99.67,0,0,0.27,506.87,3568.35,26112481,99.88,0,0,0.14,506.89,3568.32,26112482,99.73,0,0,0.55,507.38,3567.83,26112483,99.9,0,0,0.14,507,3568.21,26112484,99.85,0,0,0.14,506.99,3568.21,26112485,99.76,0,0,0.32,506.75,3568.47,26112486,99.88,0,0,0.14,506.73,3568.49,26112487,99.71,0,0,0.54,506.32,3568.89,26112488,99.9,0,0,0.16,505.69,3569.52,26112489,99.79,0,0,0.26,506.9,3568.28,26112490,99.71,0,0,0.29,507.17,3568.03,26112491,99.9,0,0,0.14,507.12,3568.08,26112492,99.73,0,0,0.46,507.34,3567.86,26112493,99.88,0,0,0.23,506.77,3568.42,26112494,99.93,0,0,0.15,506.75,3568.47,26112495,99.69,0,0,0.3,507,3568.24,26112496,99.86,0,0,0.12,506.98,3568.25,26112497,99.73,0,0,0.54,507.32,3567.91,26112498,99.88,0,0,0.23,506.94,3568.29,26112499,99.9,0,0,0.14,506.91,3568.31,26112500,99.74,0,0,0.32,506.92,3568.33,26112501,99.82,0,0,0.16,506.89,3568.36,26112502,99.74,0,0,0.45,507.23,3568.01,26112503,99.88,0,0,0.28,506.84,3568.39,26112504,99.9,0,0,0.17,506.78,3568.45,26112505,99.76,0,0,0.29,506.53,3568.72,26112506,99.88,0,0,0.14,506.51,3568.73,26112507,99.73,0,0,0.41,507.13,3568.11,26112508,99.92,0,0,0.28,506.72,3568.52,26112509,99.85,0,0,0.15,506.69,3568.54,26112510,99.75,0,0,0.3,506.94,3568.31,26112511,99.84,0,0,0.16,506.91,3568.33,26112512,99.73,0,0,0.4,507.26,3567.98,26112513,99.9,0,0,0.28,506.87,3568.36,26112514,99.9,0,0,0.15,506.86,3568.37,26112515,99.78,0,0,0.3,507.09,3568.15,26112516,99.9,0,0,0.16,507.23,3568.01,26112517,98.96,0,0,0.4,507.59,3567.64,26112518,99.88,0,0,0.29,507.23,3568,26112519,99.59,0,0,0.3,507.2,3568.01,26112520,99.72,0,0,0.33,505.51,3569.71,26112521,99.67,0,0,0.16,505.46,3569.76,26112522,99.85,0,0,0.16,505.43,3569.79,26112523,99.71,0,0,0.57,507.71,3567.51,26112524,99.77,0,0,0.15,507.11,3568.13,26112525,99.78,0,0,0.38,506.88,3568.38,26112526,99.86,0,0,0.13,506.84,3568.41,26112527,99.75,0,0,0.16,506.92,3568.32,26112528,99.68,0,0,0.57,507.56,3567.68,26112529,99.83,0,0,0.14,507.26,3567.98,26112530,99.64,0,0,0.31,507.5,3567.76,26112531,99.84,0,0,0.14,507.49,3567.76,26112532,99.83,0,0,0.14,507.46,3567.79,26112533,99.58,0,0,0.55,507.8,3567.44,26112534,99.82,0,0,0.14,507.42,3567.82,26112535,99.73,0,0,0.29,507.43,3567.82,26112536,99.84,0,0,0.16,507.4,3567.85,26112537,99.71,0.01,0.87,0.21,507.41,3567.83,26112538,99.67,0,0,0.46,507.62,3567.62,26112539,99.8,0,0,0.24,507.13,3568.1,26112540,99.51,0,0,0.29,506.42,3568.83,26112541,99.77,0,0,0.14,506.37,3568.87,26112542,99.78,0,0,0.16,506.41,3568.83,26112543,99.63,0,0,0.58,507.41,3567.82,26112544,99.74,0,0,0.14,506.75,3568.48,26112545,99.73,0,0,0.32,506.74,3568.51,26112546,99.77,0,0,0.14,506.72,3568.53,26112547,99.79,0,0,0.16,506.7,3568.54,26112548,99.63,0,0,0.55,507.06,3568.18,26112549,99.59,0,0,0.27,505.68,3569.53,26112550,99.67,0,0,0.33,506.14,3569.09,26112551,99.76,0,0,0.15,506.13,3569.09,26112552,99.77,0,0,0.14,506.11,3569.11,26112553,99.66,0,0,0.39,506.51,3568.7,26112554,99.8,0,0,0.35,506.49,3568.71,26112555,99.72,0,0,0.33,506.72,3568.5,26112556,99.78,0,0,0.18,506.7,3568.52,26112557,99.79,0,0,0.2,506.68,3568.54,26112558,99.58,0,0,0.33,507.01,3568.21,26112559,99.79,0,0,0.42,506.62,3568.58,26112560,99.68,0,0,0.32,506.64,3568.59,26112561,99.76,0,0,0.13,506.6,3568.62,26112562,99.8,0,0,0.17,506.59,3568.63,26112563,99.77,0,0,0.18,506.62,3568.59,26112564,99.65,0,0,0.57,507.09,3568.12,26112565,99.72,0,0,0.34,506.73,3568.49,26112566,99.8,0,0,0.18,506.72,3568.5,26112567,99.8,0,0,0.18,506.69,3568.52,26112568,99.81,0,0,0.18,506.68,3568.53,26112569,99.64,0,0,0.61,507.41,3567.8,26112570,99.62,0,0,0.29,506.66,3568.55,26112571,99.8,0,0.01,0.18,506.61,3568.61,26112572,99.78,0,0,0.17,506.59,3568.62,26112573,99.8,0,0,0.14,506.56,3568.65,26112574,99.62,0,0,0.5,507.17,3568.03,26112575,99.66,0,0,0.41,506.97,3568.24,26112576,99.73,0,0,0.12,506.96,3568.25,26112577,99.76,0,0,0.18,506.92,3568.28,26112578,99.76,0,0,0.14,506.89,3568.31,26112579,99.35,0,0,0.68,506.98,3568.2,26112580,99.61,0,0,0.36,505.91,3569.28,26112581,99.77,0,0,0.16,505.87,3569.31,26112582,99.81,0,0,0.16,505.85,3569.33,26112583,99.8,0,0,0.14,505.84,3569.34,26112584,99.65,0,0,0.42,506.46,3568.73,26112585,99.62,0,0,0.43,506.47,3568.73,26112586,99.76,0,0,0.18,506.48,3568.73,26112587,99.74,0,0,0.14,506.45,3568.75,26112588,99.8,0,0,0.14,506.43,3568.76,26112589,99.63,0,0,0.5,506.96,3568.23,26112590,99.73,0,0,0.36,506.86,3568.34,26112591,99.8,0,0,0.15,506.87,3568.33,26112592,99.77,0,0,0.15,506.86,3568.33,26112593,99.79,0,0,0.14,506.83,3568.36,26112594,99.63,0,0,0.37,507.32,3567.87,26112595,99.7,0,0,0.53,506.58,3568.64,26112596,99.78,0,0,0.18,506.62,3568.6,26112597,99.76,0,0,0.16,506.74,3568.47,26112598,99.79,0,0,0.15,506.73,3568.48,26112599,99.79,0,0,0.15,506.7,3568.5,26112600,99.46,0,0,0.68,507.27,3567.95,26112601,99.74,0,0,0.16,506.93,3568.29,26112602,99.78,0,0,0.14,506.9,3568.31,26112603,99.83,0,0,0.15,506.89,3568.32,26112604,99.81,0,0,0.14,506.86,3568.34,26112605,99.56,0,0,0.69,507.39,3567.83,26112606,99.82,0,0,0.15,507.08,3568.13,26112607,99.81,0,0,0.17,507.12,3568.09,26112608,99.8,0,0,0.14,507.23,3567.98,26112609,99.66,0,0,0.28,506.19,3569,26112610,99.56,0,0,0.71,507.21,3567.99,26112611,99.81,0,0,0.16,506.89,3568.31,26112612,99.79,0,0,0.14,506.88,3568.31,26112613,99.8,0,0,0.16,506.85,3568.34,26112614,99.81,0,0,0.15,506.82,3568.36,26112615,99.44,0,0,0.69,506.73,3568.47,26112616,99.79,0,0,0.17,506.62,3568.58,26112617,99.75,0,0,0.22,506.72,3568.47,26112618,99.79,0,0,0.15,506.69,3568.49,26112619,99.73,0,0,0.14,506.68,3568.5,26112620,99.47,0,0,0.69,506.48,3568.71,26112621,99.76,0,0,0.17,506.66,3568.54,26112622,99.79,0,0,0.14,506.63,3568.55,26112623,99.74,0,0,0.15,506.61,3568.58,26112624,99.79,0,0,0.18,506.17,3569.01,26112625,99.5,0,0,0.55,506.91,3568.28,26112626,99.81,0,0,0.3,506.33,3568.86,26112627,99.76,0,0,0.15,506.31,3568.88,26112628,99.79,0,0,0.16,506.43,3568.75,26112629,99.78,0,0,0.17,506.45,3568.73,26112630,99.51,0,0,0.46,506.82,3568.37,26112631,99.71,0,0,0.38,507.18,3568.01,26112632,99.68,0,0,0.18,507.15,3568.03,26112633,99.76,0,0,0.15,507.12,3568.06,26112634,99.8,0,0,0.14,507.11,3568.07,26112635,99.54,0,0,0.48,507.21,3567.98,26112636,99.76,0,0,0.39,507.33,3567.85,26112637,99.77,0,0,0.13,507.3,3567.88,26112638,99.72,0,0,0.16,507.29,3567.88,26112639,99.69,0,0,0.27,507.04,3568.12,26112640,99.66,0,0,0.3,506.24,3568.93,26112641,99.61,0,0,0.56,506.48,3568.71,26112642,99.78,0,0,0.15,505.7,3569.48,26112643,99.76,0,0,0.16,505.66,3569.51,26112644,99.8,0,0,0.14,505.63,3569.54,26112645,99.66,0,0,0.31,506.14,3569.05,26112646,99.66,0,0,0.56,507.12,3568.06,26112647,99.79,0,0,0.15,507.08,3568.1,26112648,99.81,0,0,0.15,507.05,3568.13,26112649,99.84,0,0,0.14,507.04,3568.14,26112650,99.68,0,0,0.32,507.11,3568.07,26112651,99.67,0,0,0.55,507.54,3567.65,26112652,99.79,0,0,0.17,507.18,3568,26112653,99.79,0,0,0.16,507.15,3568.03,26112654,99.79,0,0,0.15,507.14,3568.04,26112655,99.68,0,0,0.33,506.16,3569.03,26112656,99.62,0,0,0.52,507.33,3567.86,26112657,99.75,0,0,0.2,507.09,3568.09,26112658,99.78,0,0,0.14,507.08,3568.09,26112659,99.78,0.01,0.01,0.17,507.12,3568.05,26112660,99.13,0,0,0.29,507.46,3567.73,26112661,99.55,0,0,0.51,507.65,3567.53,26112662,99.81,0,0,0.21,507.1,3568.07,26112663,99.78,0,0,0.15,507.07,3568.09,26112664,99.74,0,0,0.14,507.04,3568.12,26112665,99.63,0,0,0.31,507.05,3568.13,26112666,99.63,0,0,0.57,507.38,3567.79,26112667,99.78,0,0,0.14,507.06,3568.11,26112668,99.79,0,0,0.15,507.2,3567.96,26112669,99.52,0,0,0.27,507.19,3567.95,26112670,99.63,0,0,0.3,507.66,3567.5,26112671,99.68,0,0,0.42,508.32,3566.83,26112672,99.8,0,0,0.29,507.14,3568.01,26112673,99.81,0,0,0.14,507.13,3568.01,26112674,99.78,0,0,0.15,507.11,3568.05,26112675,99.63,0,0,0.4,507.1,3568.08,26112676,99.78,0,0,0.17,507.08,3568.09,26112677,99.43,0,0,0.63,507.42,3567.74,26112678,99.71,0,0,0.16,507.04,3568.12,26112679,99.75,0,0,0.17,507.1,3568.06,26112680,99.6,0,0,0.31,505.76,3569.41,26112681,99.7,0,0,0.18,505.7,3569.47,26112682,99.62,0,0,0.57,507.72,3567.45,26112683,99.69,0,0,0.17,507.39,3567.77,26112684,99.78,0,0,0.2,506.99,3568.17,26112685,99.67,0,0,0.38,506.88,3568.29,26112686,99.8,0,0,0.2,506.86,3568.31,26112687,99.65,0,0,0.57,507.38,3567.78,26112688,99.76,0,0,0.16,507.07,3568.09,26112689,99.79,0,0,0.18,507.04,3568.12,26112690,99.68,0,0,0.33,507.32,3567.85,26112691,99.78,0,0,0.18,507.46,3567.71,26112692,99.49,0,0,0.57,507.83,3567.34,26112693,99.78,0,0,0.14,507.41,3567.75,26112694,99.78,0,0,0.15,507.38,3567.77,26112695,99.69,0,0,0.31,507.4,3567.77,26112696,99.82,0,0,0.14,507.37,3567.8,26112697,99.67,0,0,0.55,507.71,3567.45,26112698,99.8,0,0,0.15,507.34,3567.82,26112699,99.72,0,0,0.29,507.03,3568.1,26112700,99.68,0,0,0.3,505.36,3569.79,26112701,99.9,0,0,0.19,505.31,3569.83,26112702,99.77,0,0,0.43,506.08,3569.05,26112703,99.88,0,0,0.3,506.42,3568.71,26112704,99.88,0,0,0.14,506.4,3568.75,26112705,99.64,0.01,0.01,0.31,505.2,3569.97,26112706,99.87,0,0,0.21,505.17,3570,26112707,99.72,0,0,0.55,505.89,3569.27,26112708,99.85,0,0,0.18,506.11,3569.05,26112709,99.85,0,0,0.15,506.08,3569.07,26112710,99.75,0,0,0.32,506.81,3568.35,26112711,99.87,0,0,0.14,506.79,3568.37,26112712,99.73,0,0,0.42,507.15,3568.01,26112713,99.84,0,0,0.32,506.75,3568.4,26112714,99.88,0,0,0.16,506.82,3568.33,26112715,99.83,0,0,0.31,506.92,3568.25,26112716,99.88,0,0,0.14,506.9,3568.27,26112717,99.77,0,0,0.55,507.25,3567.9,26112718,99.87,0,0,0.45,507.11,3568.04,26112719,99.91,0,0,0.15,507.09,3568.06,26112720,99.7,0,0,0.31,507.09,3568.08,26112721,99.88,0,0,0.15,507.07,3568.09,26112722,99.89,0,0,0.16,507.05,3568.1,26112723,99.72,0,0,0.72,507.34,3567.82,26112724,99.8,0,0,0.17,506.78,3568.37,26112725,99.75,0,0,0.34,506.77,3568.39,26112726,99.85,0,0,0.14,506.87,3568.29,26112727,99.87,0,0,0.16,506.91,3568.25,26112728,99.66,0,0,0.58,507.25,3567.89,26112729,99.78,0,0,0.29,507.11,3568.01,26112730,99.68,0,0,0.34,506.38,3568.75,26112731,99.86,0,0,0.18,506.35,3568.79,26112732,99.83,0,0,0.18,506.33,3568.8,26112733,99.66,0,0,0.55,506.84,3568.28,26112734,99.81,0,0,0.14,506.52,3568.63,26112735,99.6,0,0,0.35,506.14,3569.03,26112736,99.83,0,0,0.13,506.01,3569.16,26112737,99.81,0,0,0.21,506.32,3568.84,26112738,99.75,0,0,0.55,507.45,3567.71,26112739,99.47,0,0,0.55,507.2,3567.94,26112740,99.71,0,0,0.34,506.44,3568.71,26112741,99.8,0,0,0.18,506.41,3568.74,26112742,99.78,0,0,0.18,506.38,3568.77,26112743,99.7,0,0,0.42,506.96,3568.18,26112744,99.83,0,0,0.36,506.66,3568.5,26112745,99.67,0,0,0.32,505.89,3569.3,26112746,99.89,0,0,0.16,505.84,3569.35,26112747,99.87,0,0,0.14,505.83,3569.36,26112748,99.74,0,0,0.5,506.35,3568.83,26112749,99.87,0,0,0.2,506.28,3568.89,26112750,99.73,0,0,0.34,507.14,3568.05,26112751,99.84,0,0,0.16,507.19,3568,26112752,99.83,0,0,0.15,507.16,3568.03,26112753,99.75,0,0,0.59,507.45,3567.73,26112754,99.9,0,0,0.16,506.86,3568.31,26112755,99.77,0,0,0.3,506.88,3568.31,26112756,99.89,0,0,0.16,506.85,3568.33,26112757,99.88,0,0,0.14,506.83,3568.34,26112758,99.73,0,0,0.37,507.57,3567.6,26112759,99.79,0,0,0.52,507.01,3568.13,26112760,99.81,0,0,0.33,507.25,3567.9,26112761,99.89,0,0,0.16,507.27,3567.88,26112762,99.89,0,0,0.14,507.4,3567.74,26112763,99.91,0,0,0.14,507.38,3567.75,26112764,99.76,0,0,0.61,507.79,3567.34,26112765,99.81,0,0,0.31,506.88,3568.27,26112766,99.85,0,0,0.18,506.85,3568.3,26112767,99.86,0,0,0.13,506.82,3568.32,26112768,99.87,0,0,0.17,506.78,3568.35,26112769,99.77,0,0,0.59,507.41,3567.73,26112770,99.83,0,0,0.3,507.02,3568.13,26112771,99.87,0,0,0.15,506.99,3568.15,26112772,99.88,0,0,0.16,507.11,3568.03,26112773,99.9,0,0,0.14,507.14,3568,26112774,95.12,0.32,0.01,79.59,521.81,3554.28,26112775,99.57,0,0,182.22,509.65,3565.32,26112776,99.85,0,0,0.13,509.65,3565.32,26112777,99.88,0,0,0.18,509.62,3565.34,26112778,99.88,0,0,0.2,509.61,3565.35,26112779,99.77,0,0,0.63,509,3565.98,26112780,99.53,0,0,0.37,506.29,3568.74,26112781,99.83,0,0,0.18,506.18,3568.85,26112782,99.82,0,0,0.15,506.3,3568.73,26112783,99.85,0,0,0.15,506.32,3568.7,26112784,99.73,0,0,0.45,506.99,3568.03,26112785,99.78,0,0,0.46,507.26,3567.78,26112786,99.81,0,0,0.14,507.24,3567.8,26112787,99.91,0,0,0.16,507.21,3567.82,26112788,99.89,0,0,0.16,507.2,3567.83,26112789,99.57,0,0,0.5,507.54,3567.48,26112790,99.71,0,0,0.47,506.95,3568.1,26112791,99.89,0,0,0.17,506.92,3568.13,26112792,99.89,0,0,0.15,506.94,3568.1,26112793,99.9,0,0,0.15,507.06,3567.98,26112794,99.78,0,0,0.4,507.41,3567.63,26112795,99.84,0,0,0.58,507.05,3568,26112796,99.91,0,0,0.14,507.03,3568.02,26112797,99.9,0,0,0.18,507,3568.04,26112798,99.9,0,0,0.15,506.99,3568.05,26112799,99.9,0,0,0.14,506.96,3568.07,26112800,99.62,0,0,0.73,507.92,3567.12,26112801,99.87,0,0,0.15,507.19,3567.86,26112802,99.91,0,0,0.14,507.16,3567.88,26112803,99.89,0,0,0.15,507.14,3567.89,26112804,99.83,0,0,0.19,507.08,3567.94,26112805,99.61,0,0,0.76,507.96,3567.09,26112806,99.84,0,0,0.13,507.28,3567.76,26112807,99.85,0,0,0.14,507.25,3567.79,26112808,99.91,0,0,0.17,507.24,3567.8,26112809,99.92,0,0,0.14,507.2,3567.82,26112810,99.53,0,0,0.63,507.93,3567.12,26112811,99.88,0,0,0.23,507.43,3567.61,26112812,99.9,0,0,0.17,507.42,3567.62,26112813,99.91,0,0,0.14,507.39,3567.64,26112814,99.87,0,0,0.15,507.38,3567.65,26112815,99.51,0,0,0.73,507.6,3567.44,26112816,99.88,0,0,0.17,507.05,3568,26112817,99.85,0,0,0.14,507.02,3568.01,26112818,99.88,0,0,0.16,506.99,3568.04,26112819,99.71,0,0,0.27,507.22,3567.81,26112820,99.62,0,0,0.72,508,3567.04,26112821,99.87,0,0,0.18,507.45,3567.59,26112822,99.84,0,0,0.16,507.42,3567.62,26112823,99.85,0,0,0.14,507.39,3567.64,26112824,99.87,0,0,0.15,507.38,3567.66,26112825,99.56,0,0,0.61,506.75,3568.31,26112826,99.82,0,0,0.3,507.3,3567.76,26112827,99.8,0,0,0.14,507.28,3567.78,26112828,99.89,0,0,0.15,507.26,3567.79,26112829,99.83,0,0,0.14,507.24,3567.81,26112830,99.61,0,0,0.45,507.36,3567.7,26112831,99.87,0,0,0.4,507.46,3567.59,26112832,99.88,0,0,0.16,507.43,3567.62,26112833,99.9,0,0,0.14,507.42,3567.63,26112834,99.86,0,0,0.16,507.39,3567.65,26112835,99.71,0,0,0.32,506.92,3568.14,26112836,99.68,0,0,0.55,507.69,3567.36,26112837,99.87,0,0,0.18,507.18,3567.87,26112838,99.9,0,0,0.14,507.28,3567.77,26112839,99.87,0,0,0.15,507.26,3567.78,26112840,99.56,0,0,0.31,507.5,3567.56,26112841,99.74,0,0,0.57,507.93,3567.12,26112842,99.89,0,0,0.16,507.46,3567.59,26112843,99.86,0,0,0.14,507.45,3567.59,26112844,99.85,0,0,0.16,507.42,3567.62,26112845,99.77,0,0,0.34,507.42,3567.63,26112846,99.73,0,0,0.58,507.86,3567.19,26112847,99.89,0,0,0.15,507.63,3567.41,26112848,99.85,0,0,0.14,507.6,3567.44,26112849,99.57,0,0,0.28,507.62,3567.4,26112850,99.65,0,0,0.3,507.91,3567.13,26112851,99.75,0,0,0.49,508.06,3566.97,26112852,99.78,0,0,0.21,507.51,3567.51,26112853,99.89,0,0,0.14,507.51,3567.52,26112854,99.9,0,0,0.15,507.27,3567.75,26112855,99.74,0,0,0.31,506.27,3568.76,26112856,99.73,0,0,0.4,506.77,3568.25,26112857,99.89,0,0,0.3,506.94,3568.08,26112858,99.88,0,0,0.16,506.94,3568.08,26112859,99.84,0,0,0.14,506.91,3568.1,26112860,99.66,0,0,0.31,506.91,3568.12,26112861,99.73,0,0,0.5,507.25,3567.78,26112862,99.88,0,0,0.23,507.03,3567.99,26112863,99.88,0,0,0.17,507.04,3567.98,26112864,99.85,0,0,0.19,506.68,3568.33,26112865,99.74,0,0,0.31,506.77,3568.26,26112866,99.88,0,0,0.16,506.76,3568.27,26112867,99.72,0,0,0.55,507.97,3567.04,26112868,99.85,0,0,0.14,507.21,3567.8,26112869,99.78,0,0,0.15,507.18,3567.82,26112870,99.77,0,0,0.29,506.96,3568.07,26112871,99.9,0,0,0.14,506.92,3568.1,26112872,99.72,0,0,0.55,507.49,3567.53,26112873,99.91,0,0,0.14,506.88,3568.13,26112874,99.89,0,0,0.16,506.88,3568.13,26112875,99.78,0,0,0.37,506.71,3568.32,26112876,99.9,0,0,0.19,506.8,3568.22,26112877,99.76,0,0,0.55,507.49,3567.53,26112878,99.91,0,0,0.17,507.25,3567.77,26112879,99.2,0,0,0.26,507.22,3567.77,26112880,99.74,0,0,0.29,507,3568.01,26112881,99.9,0,0,0.16,506.96,3568.05,26112882,98.96,0,0,0.5,507.32,3567.68,26112883,99.88,0,0,0.2,506.92,3568.08,26112884,99.85,0,0,0.14,506.91,3568.08,26112885,99.74,0,0,0.33,507.14,3567.86,26112886,99.87,0,0,0.14,507.14,3567.86,26112887,99.72,0,0,0.44,507.51,3567.48,26112888,99.82,0,0,0.34,507.27,3567.71,26112889,99.83,0,0,0.14,507.24,3567.74,26112890,99.71,0,0,0.31,507.26,3567.72,26112891,99.87,0,0,0.14,507.21,3567.77,26112892,99.7,0,0,0.52,507.53,3567.45,26112893,99.88,0,0,0.22,507.17,3567.8,26112894,99.89,0,0,0.15,507.14,3567.83,26112895,99.74,0,0,0.3,507.4,3567.59,26112896,99.87,0,0,0.16,507.38,3567.61,26112897,99.68,0,0,0.4,507.68,3567.31,26112898,99.74,0,0,0.29,507.09,3567.88,26112899,99.82,0,0,0.16,507.27,3567.71,26112900,99.43,0,0,0.3,506.54,3568.45,26112901,99.83,0,0,0.14,506.5,3568.49,26112902,99.83,0,0,0.16,506.47,3568.52,26112903,99.76,0,0,0.57,507.6,3567.39,26112904,99.9,0,0,0.16,506.93,3568.06,26112905,99.75,0,0,0.35,507.19,3567.82,26112906,99.88,0,0,0.18,507.16,3567.84,26112907,99.9,0,0,0.18,507.15,3567.85,26112908,99.75,0,0,0.55,507.64,3567.36,26112909,99.7,0,0,0.27,506.62,3568.36,26112910,99.71,0,0,0.31,507.64,3567.35,26112911,99.89,0,0,0.16,507.75,3567.24,26112912,99.89,0,0,0.15,507.74,3567.25,26112913,99.68,0,0,0.55,507.76,3567.22,26112914,99.89,0,0,0.15,507.21,3567.78,26112915,99.64,0,0,0.29,506.72,3568.29,26112916,99.82,0,0,0.14,506.7,3568.31,26112917,99.84,0,0,0.18,506.43,3568.59,26112918,99.68,0,0,0.49,506.98,3568.04,26112919,99.9,0,0,0.21,506.87,3568.14,26112920,99.74,0,0,0.31,507.41,3567.61,26112921,99.89,0,0,0.16,507.34,3567.68,26112922,99.91,0,0,0.16,507.5,3567.52,26112923,99.78,0,0,0.41,507.73,3567.29,26112924,99.87,0,0,0.32,506.93,3568.08,26112925,99.74,0,0,0.3,506.74,3568.29,26112926,99.85,0,0,0.16,506.73,3568.3,26112927,99.85,0,0,0.14,506.7,3568.32,26112928,99.79,0,0,0.5,507.26,3567.75,26112929,99.91,0,0,0.18,507.4,3567.61,26112930,99.69,0,0,0.29,507.41,3567.62,26112931,99.9,0,0,0.16,507.39,3567.64,26112932,99.84,0,0,0.14,507.37,3567.65,26112933,99.77,0,0,0.41,507.71,3567.31,26112934,99.88,0,0,0.28,507.33,3567.68,26112935,99.75,0,0,0.34,507.5,3567.52,26112936,99.91,0,0,0.16,507.53,3567.49,26112937,99.92,0,0,0.15,507.51,3567.5,26112938,99.94,0,0,0.14,507.49,3567.52,26112939,99.57,0,0,0.66,508.16,3566.83,26112940,99.78,0,0,0.3,507.7,3567.3,26112941,99.89,0,0,0.18,507.67,3567.32,26112942,99.9,0,0,0.14,507.66,3567.33,26112943,99.91,0,0,0.16,507.63,3567.36,26112944,99.78,0,0,0.55,507.91,3567.09,26112945,99.86,0,0,0.32,507.61,3567.41,26112946,99.91,0,0,0.13,507.63,3567.38,26112947,99.89,0,0,0.17,507.76,3567.25,26112948,99.9,0,0,0.14,507.75,3567.26,26112949,99.78,0,0,0.54,508.07,3566.93,26112950,99.81,0,0,0.32,507.01,3568.01,26112951,99.93,0,0,0.14,506.97,3568.05,26112952,99.89,0,0,0.14,506.96,3568.05,26112953,99.87,0,0,0.16,506.93,3568.08,26112954,99.76,0,0,0.43,507.6,3567.4,26112955,99.67,0,0,0.42,506.53,3568.5,26112956,99.9,0,0,0.17,506.41,3568.61,26112957,99.93,0,0,0.15,506.38,3568.63,26112958,99.91,0,0,0.14,506.37,3568.64,26112959,99.74,0,0,0.53,507.06,3567.94,26112960,99.66,0,0,0.37,507.52,3567.5,26112961,99.85,0,0,0.14,507.51,3567.51,26112962,99.9,0,0,0.16,507.48,3567.53,26112963,99.82,0,0,0.15,507.47,3567.54,26112964,99.74,0,0,0.55,507.86,3567.14,26112965,99.75,0,0,0.31,507.7,3567.32,26112966,99.91,0,0,0.16,507.67,3567.35,26112967,99.84,0,0,0.14,507.66,3567.36,26112968,99.86,0,0,0.15,507.63,3567.38,26112969,99.64,0,0,0.7,508.31,3566.68,26112970,99.77,0,0,0.29,507.61,3567.39,26112971,99.88,0,0,0.14,507.75,3567.25,26112972,99.83,0,0,0.16,507.74,3567.25,26112973,99.76,0,0,0.14,507.73,3567.26,26112974,99.8,0,0,0.15,507.7,3567.29,26112975,99.43,0,0,0.74,508.05,3566.95,26112976,99.89,0,0,0.14,507.67,3567.32,26112977,99.83,0,0,0.18,507.65,3567.33,26112978,99.92,0,0,0.14,507.63,3567.36,26112979,99.9,0,0,0.14,507.61,3567.37,26112980,99.53,0,0,0.71,507.74,3567.26,26112981,99.86,0,0,0.2,507.35,3567.64,26112982,99.88,0,0,0.18,507.38,3567.61,26112983,99.8,0,0,0.18,507.5,3567.49,26112984,99.83,0,0,0.21,507.33,3567.65,26112985,99.67,0,0,0.74,507.63,3567.37,26112986,99.88,0,0,0.15,507.21,3567.79,26112987,99.86,0,0,0.16,507.18,3567.81,26112988,99.84,0,0,0.14,507.17,3567.82,26112989,99.88,0,0,0.14,507.13,3567.84,26112990,99.6,0,0,0.74,508,3567,26112991,99.87,0,0,0.18,507.62,3567.38,26112992,99.84,0,0,0.18,507.61,3567.4,26112993,99.9,0,0,0.18,507.58,3567.43,26112994,99.91,0,0,0.15,507.71,3567.29,26112995,99.53,0,0,0.64,507.82,3567.2,26112996,99.86,0,0,0.25,507.98,3567.03,26112997,99.91,0,0,0.16,507.95,3567.06,26112998,99.83,0,0,0.14,507.94,3567.06,26112999,99.67,0,0,0.29,507.92,3567.06,26113000,98.46,0,0,0.73,508.25,3566.74,26113001,99.9,0,0,0.18,507.64,3567.35,26113002,99.88,0,0,0.18,507.62,3567.36,26113003,99.84,0,0,0.17,507.59,3567.39,26113004,99.89,0,0,0.14,507.4,3567.6,26113005,99.65,0,0,0.5,508.14,3566.89,26113006,99.91,0,0,0.39,507.64,3567.39,26113007,99.88,0,0,0.14,507.53,3567.49,26113008,99.89,0,0,0.16,506.73,3568.29,26113009,99.88,0,0,0.14,506.72,3568.3,26113010,99.73,0,0,0.32,507.2,3567.84,26113011,99.74,0,0,0.61,507.65,3567.38,26113012,99.88,0,0,0.16,507.17,3567.86,26113013,99.83,0,0,0.17,507.14,3567.88,26113014,99.89,0,0,0.18,507.13,3567.89,26113015,99.85,0,0,0.34,507.12,3567.91,26113016,99.74,0,0,0.57,507.47,3567.56,26113017,99.88,0,0,0.15,507.1,3567.93,26113018,99.88,0,0,0.14,507.07,3567.95,26113019,99.89,0,0,0.14,507.24,3567.78,26113020,99.55,0,0,0.35,507.27,3567.76,26113021,99.71,0,0,0.61,507.41,3567.62,26113022,99.88,0,0,0.15,506.98,3568.04,26113023,99.9,0,0,0.14,506.95,3568.07,26113024,99.9,0,0,0.18,506.93,3568.08,26113025,99.69,0,0,0.34,506.21,3568.82,26113026,99.77,0,0,0.51,507.51,3567.52,26113027,99.88,0,0,0.2,507.13,3567.89,26113028,99.9,0,0,0.16,507.12,3567.9,26113029,99.75,0,0,0.25,507.34,3567.66,26113030,99.74,0,0,0.29,507.48,3567.53,26113031,99.73,0,0,0.55,508.07,3566.93,26113032,99.91,0,0,0.15,507.47,3567.52,26113033,99.91,0,0,0.14,507.46,3567.53,26113034,99.92,0,0,0.18,507.43,3567.56,26113035,99.77,0,0,0.31,507.2,3567.8,26113036,99.74,0,0,0.54,507.68,3567.32,26113037,99.88,0,0,0.18,507.15,3567.84,26113038,99.91,0,0,0.16,507.11,3567.87,26113039,99.91,0,0,0.15,507.08,3567.9,26113040,99.76,0,0,0.29,507.34,3567.66,26113041,99.75,0,0,0.33,507.7,3567.29,26113042,99.88,0,0,0.38,507.49,3567.5,26113043,99.87,0,0,0.14,507.46,3567.52,26113044,99.88,0,0,0.16,507.17,3567.81,26113045,99.73,0,0,0.33,506.96,3568.03,26113046,99.76,0,0,0.3,507.31,3567.68,26113047,99.9,0,0,0.38,507.15,3567.83,26113048,99.88,0,0,0.14,507.14,3567.84,26113049,99.89,0,0,0.14,507.11,3567.86,26113050,99.76,0,0,0.31,507.36,3567.63,26113051,99.88,0,0,0.17,507.33,3567.65,26113052,99.73,0,0,0.54,508.02,3566.97,26113053,99.88,0,0,0.14,507.4,3567.58,26113054,99.92,0,0,0.15,507.46,3567.51,26113055,99.81,0,0,0.32,507.46,3567.53,26113056,99.88,0,0,0.14,507.42,3567.56,26113057,99.73,0,0,0.54,507.41,3567.58,26113058,99.88,0,0,0.17,506.9,3568.1,26113059,99.81,0,0,0.27,507.6,3567.37,26113060,99.77,0,0,0.31,506.88,3568.1,26113061,99.88,0,0.02,0.18,506.83,3568.15,26113062,99.68,0,0,0.58,507.5,3567.48,26113063,99.89,0,0,0.14,507.47,3567.5,26113064,99.9,0,0.02,0.14,507.44,3567.55,26113065,99.75,0,0,0.35,506.21,3568.79,26113066,99.88,0,0,0.16,506.16,3568.84,26113067,99.7,0,0,0.57,506.77,3568.23,26113068,99.83,0,0,0.17,506.61,3568.38,26113069,99.87,0,0,0.16,506.58,3568.4,26113070,99.73,0,0,0.31,506.1,3568.89,26113071,99.91,0,0,0.14,506.08,3568.91,26113072,99.74,0,0,0.42,507.01,3567.97,26113073,99.9,0,0,0.28,507.7,3567.28,26113074,99.88,0,0,0.15,507.68,3567.3,26113075,99.81,0,0,0.31,507.45,3567.55,26113076,99.87,0,0,0.16,507.42,3567.58,26113077,99.75,0,0,0.55,508.02,3566.97,26113078,99.92,0,0,0.18,507.38,3567.61,26113079,99.86,0,0,0.18,507.3,3567.68,26113080,99.7,0,0,0.3,507.45,3567.57,26113081,99.82,0,0,0.14,507.35,3567.66,26113082,99.67,0,0,0.34,507.68,3567.32,26113083,99.86,0,0,0.37,507.8,3567.2,26113084,99.82,0,0,0.16,507.81,3567.19,26113085,99.52,0,0,0.32,507.47,3567.54,26113086,99.77,0,0,0.14,507.44,3567.56,26113087,99.67,0,0,0.3,507.77,3567.23,26113088,99.78,0,0,0.38,507.65,3567.35,26113089,99.7,0,0,0.25,507.63,3567.35,26113090,99.71,0,0,0.3,507.41,3567.58,26113091,99.84,0,0,0.16,507.36,3567.63,26113092,99.83,0,0,0.15,507.35,3567.63,26113093,99.61,0,0,0.55,508.32,3566.65,26113094,99.72,0,0,0.15,507.55,3567.42,26113095,99.63,0,0,0.3,506.33,3568.66,26113096,99.75,0,0,0.16,506.3,3568.68,26113097,99.8,0,0,0.17,506.96,3568.02,26113098,99.67,0,0,0.57,507.95,3567.01,26113099,99.74,0,0,0.16,507.67,3567.29,26113100,99.67,0,0,0.3,506.71,3568.27,26113101,99.85,0,0,0.16,506.67,3568.31,26113102,99.83,0,0,0.15,506.66,3568.31,26113103,99.58,0,0,0.5,507.49,3567.47,26113104,99.78,0,0,0.23,507.47,3567.49,26113105,99.73,0,0,0.32,507.35,3567.63,26113106,99.83,0,0,0.14,507.31,3567.66,26113107,99.84,0,0,0.15,507.33,3567.64,26113108,99.68,0,0,0.5,507.98,3566.98,26113109,99.82,0,0,0.2,507.94,3567.03,26113110,99.64,0,0,0.39,507.7,3567.28,26113111,99.83,0,0,0.18,507.67,3567.3,26113112,99.83,0,0,0.18,507.64,3567.32,26113113,99.67,0,0,0.55,507.97,3566.99,26113114,99.83,0,0,0.19,507.6,3567.36,26113115,99.71,0,0,0.35,507.71,3567.27,26113116,99.84,0,0,0.18,507.58,3567.39,26113117,99.81,0,0,0.18,507.55,3567.41,26113118,99.67,0,0,0.58,507.94,3567.02,26113119,99.67,0,0,0.3,507.89,3567.05,26113120,99.69,0,0,0.29,507.48,3567.48,26113121,99.82,0,0,0.16,507.43,3567.52,26113122,99.82,0,0,0.14,507.42,3567.52,26113123,99.73,0,0,0.31,507.74,3567.2,26113124,99.78,0,0,0.38,507.63,3567.32,26113125,99.68,0,0,0.29,507.87,3567.1,26113126,99.81,0,0,0.14,507.85,3567.12,26113127,99.8,0,0,0.16,507.82,3567.14,26113128,99.82,0,0,0.14,507.82,3567.14,26113129,99.69,0,0,0.54,507.72,3567.23,26113130,99.7,0,0,0.33,507.3,3567.67,26113131,99.82,0,0,0.15,507.41,3567.55,26113132,99.82,0,0,0.14,507.45,3567.51,26113133,99.83,0,0,0.14,507.42,3567.54,26113134,99.67,0,0,0.54,508.32,3566.63,26113135,99.74,0,0,0.3,507.9,3567.06,26113136,99.8,0,0,0.14,507.89,3567.08,26113137,99.81,0,0,0.16,507.86,3567.1,26113138,99.78,0,0,0.14,507.84,3567.11,26113139,94.6,0.33,0.01,260.27,520.69,3555.27,26113140,99.31,0,0.01,0.55,510.2,3565.2,26113141,99.7,0,0,0.18,510.34,3565.06,26113142,99.77,0,0,0.18,510.31,3565.08,26113143,99.8,0,0,0.18,510.28,3565.1,26113144,99.65,0,0,0.61,509.2,3566.2,26113145,99.63,0,0,0.42,507.83,3567.6,26113146,99.73,0,0,0.18,507.76,3567.67,26113147,99.81,0,0,0.18,507.56,3567.86,26113148,99.8,0,0,0.18,507.55,3567.87,26113149,99.42,0,0,0.7,508.48,3566.91,26113150,99.64,0,0,0.31,508.16,3567.25,26113151,99.76,0,0,0.14,508.17,3567.24,26113152,99.78,0,0,0.16,508.13,3567.27,26113153,99.78,0,0,0.14,508.13,3567.27,26113154,99.54,0,0,0.51,508.45,3566.95,26113155,99.51,0,0,0.39,507.16,3568.25,26113156,99.78,0,0,0.14,507.1,3568.31,26113157,99.76,0,0,0.18,506.85,3568.56,26113158,99.78,0,0,0.15,506.81,3568.59,26113159,99.57,0,0,0.43,507.3,3568.09,26113160,99.71,0,0,0.44,508.02,3567.4,26113161,99.81,0,0,0.14,508.01,3567.4,26113162,99.8,0,0,0.14,508.06,3567.35,26113163,99.82,0,0,0.14,507.55,3567.85,26113164,99.77,0,0,0.19,507.03,3568.37,26113165,99.49,0,0,0.73,506.6,3568.81,26113166,99.79,0,0,0.16,505.89,3569.52,26113167,99.79,0,0,0.14,505.86,3569.55,26113168,99.81,0,0,0.16,505.85,3569.55,26113169,99.82,0,0,0.14,505.82,3569.58,26113170,99.46,0,0,0.68,507.72,3567.7,26113171,99.78,0,0,0.16,507.28,3568.13,26113172,99.78,0,0,0.14,507.28,3568.13,26113173,99.79,0,0,0.15,507.28,3568.13,26113174,99.83,0,0,0.16,507.41,3567.99,26113175,99.59,0,0,0.72,507.73,3567.7,26113176,99.78,0,0,0.16,507.39,3568.03,26113177,99.74,0,0,0.14,507.37,3568.05,26113178,99.8,0,0,0.15,507.34,3568.08,26113179,99.61,0,0,0.27,507.09,3568.3,26113180,99.53,0,0,0.71,507.04,3568.38,26113181,99.78,0,0,0.14,506.82,3568.59,26113182,99.8,0,0,0.16,506.8,3568.61,26113183,99.8,0,0,0.14,506.78,3568.62,26113184,99.81,0,0,0.15,506.77,3568.62,26113185,99.53,0,0,0.7,507.71,3567.7,26113186,99.77,0,0,0.2,507.66,3567.75,26113187,99.72,0,0,0.15,507.65,3567.75,26113188,99.78,0,0,0.14,507.64,3567.76,26113189,99.81,0,0,0.14,507.61,3567.79,26113190,99.56,0,0,0.73,507.8,3567.61,26113191,99.76,0,0,0.15,507.59,3567.82,26113192,99.79,0,0,0.17,507.58,3567.82,26113193,99.82,0,0,0.15,507.55,3567.85,26113194,99.77,0,0,0.15,507.54,3567.85,26113195,99.56,0,0,0.73,507.12,3568.29,26113196,99.79,0,0,0.16,507.53,3567.88,26113197,99.8,0,0,0.15,507.49,3567.91,26113198,99.83,0,0,0.16,507.55,3567.85,26113199,99.76,0,0,0.15,507.64,3567.75,26113200,99.29,0,0,0.57,507.33,3568.08,26113201,99.79,0,0,0.36,507.38,3568.03,26113202,99.74,0,0,0.18,507.36,3568.04,26113203,99.77,0,0,0.18,507.33,3568.06,26113204,99.8,0,0,0.16,507.32,3568.07,26113205,99.62,0,0,0.32,507.55,3567.86,26113206,99.61,0,0,0.57,507.88,3567.52,26113207,99.83,0,0,0.15,507.51,3567.89,26113208,99.79,0,0,0.15,507.49,3567.91,26113209,99.64,0,0,0.29,507.86,3567.51,26113210,99.71,0,0,0.32,507.68,3567.71,26113211,99.65,0,0,0.56,507.53,3567.85,26113212,99.75,0,0,0.14,507.13,3568.25,26113213,99.74,0,0,0.14,507.1,3568.27,26113214,99.8,0,0,0.16,507.09,3568.28,26113215,99.64,0,0,0.31,506.85,3568.54,26113216,99.62,0,0,0.56,508.04,3567.34,26113217,99.78,0,0,0.21,507.53,3567.85,26113218,99.79,0,0,0.15,507.5,3567.87,26113219,99.79,0,0,0.17,507.56,3567.81,26113220,99.68,0,0,0.32,507.42,3567.98,26113221,99.66,0,0,0.43,507.9,3567.51,26113222,99.77,0,0.01,0.25,507.59,3567.8,26113223,99.76,0,0,0.15,507.54,3567.85,26113224,99.77,0,0,0.16,507.43,3567.96,26113225,99.71,0,0,0.32,507.77,3567.63,26113226,99.66,0,0,0.55,507.97,3567.43,26113227,99.78,0,0,0.17,507.55,3567.85,26113228,99.77,0,0,0.16,507.66,3567.73,26113229,99.82,0,0,0.14,507.65,3567.74,26113230,99.61,0,0,0.3,507.65,3567.76,26113231,99.65,0,0,0.56,508.33,3567.07,26113232,99.79,0,0,0.16,507.59,3567.81,26113233,99.8,0,0,0.14,507.57,3567.82,26113234,99.81,0,0,0.14,507.54,3567.85,26113235,99.69,0,0,0.35,507.06,3568.34,26113236,99.65,0,0,0.56,507.54,3567.87,26113237,99.81,0,0,0.13,507.74,3567.68,26113238,99.8,0,0,0.16,507.88,3567.53,26113239,99.61,0,0,0.27,507.89,3567.49,26113240,99.65,0,0,0.3,507.89,3567.51,26113241,99.69,0,0,0.5,508.26,3567.14,26113242,99.26,0,0,0.18,508.09,3567.3,26113243,99.83,0,0,0.19,508.06,3567.33,26113244,99.78,0,0,0.14,508.04,3567.34,26113245,99.59,0,0,0.32,507.57,3567.83,26113246,99.69,0,0,0.31,507.92,3567.48,26113247,99.81,0,0,0.38,507.78,3567.61,26113248,99.83,0,0,0.14,507.74,3567.65,26113249,99.8,0,0,0.18,507.79,3567.6,26113250,99.71,0,0,0.36,508.15,3567.25,26113251,99.8,0,0,0.16,508.13,3567.27,26113252,99.63,0,0,0.55,507.81,3567.59,26113253,99.82,0,0,0.14,507.35,3568.04,26113254,99.83,0,0,0.15,507.32,3568.06,26113255,99.79,0,0,0.33,507.58,3567.83,26113256,99.83,0,0,0.14,507.55,3567.85,26113257,99.77,0,0,0.55,508.11,3567.28,26113258,99.88,0,0,0.16,507.76,3567.63,26113259,99.86,0,0,0.19,507.75,3567.64,26113260,98.66,0,0,6.05,506.96,3568.54,26113261,99.78,0,0,0.15,506.98,3568.53,26113262,99.75,0,0,0.55,507.74,3567.76,26113263,99.89,0,0,0.17,507.51,3567.99,26113264,99.91,0,0,0.16,507.48,3568.02,26113265,99.76,0,0,0.33,507.73,3567.79,26113266,99.9,0,0,0.15,507.71,3567.82,26113267,99.76,0,0,0.5,508.49,3567.03,26113268,99.87,0,0,0.22,507.91,3567.6,26113269,99.67,0,0,0.27,507.96,3567.53,26113270,99.73,0,0,0.31,507.9,3567.61,26113271,99.87,0,0,0.18,507.87,3567.63,26113272,99.77,0,0,0.39,508.32,3567.18,26113273,99.9,0,0,0.28,508.01,3567.48,26113274,99.86,0,0,0.14,508.01,3567.51,26113275,99.74,0,0,0.31,507.55,3567.99,26113276,99.9,0,0,0.16,507.5,3568.04,26113277,99.71,0,0,0.59,507.83,3567.7,26113278,99.88,0,0,0.15,507.46,3568.07,26113279,99.9,0,0,0.15,507.43,3568.11,26113280,99.76,0,0,0.32,507.21,3568.35,26113281,99.9,0,0,0.14,507.17,3568.39,26113282,99.73,0,0,0.32,507.53,3568.03,26113283,99.88,0,0,0.38,507.62,3567.93,26113284,99.84,0,0,0.18,507.61,3567.94,26113285,99.63,0,0,0.34,507.33,3568.23,26113286,99.88,0,0,0.16,507.3,3568.25,26113287,99.76,0,0,0.3,507.63,3567.91,26113288,99.84,0,0,0.39,507.27,3568.27,26113289,99.89,0,0,0.14,507.24,3568.3,26113290,99.79,0,0,0.3,507.97,3567.59,26113291,99.83,0,0,0.16,507.96,3567.59,26113292,99.82,0,0,0.14,507.94,3567.61,26113293,99.73,0,0,0.55,508.28,3567.27,26113294,99.93,0,0,0.14,507.9,3567.64,26113295,99.77,0,0,0.32,508.14,3567.42,26113296,99.92,0,0,0.14,508.19,3567.36,26113297,99.9,0,0,0.15,508.3,3567.25,26113298,99.75,0,0,0.59,508.81,3566.73,26113299,99.65,0,0,0.3,508,3567.53,26113300,99.66,0,0,0.39,507.76,3567.79,26113301,99.84,0,0,0.14,507.73,3567.82,26113302,99.84,0,0,0.14,507.7,3567.84,26113303,99.74,0,0,0.52,508.33,3567.2,26113304,99.85,0,0,0.23,507.9,3567.62,26113305,99.75,0,0,0.33,508.16,3567.38,26113306,99.86,0,0,0.17,508.12,3567.41,26113307,99.84,0,0,0.14,508.11,3567.43,26113308,99.68,0,0,0.55,508.48,3567.05,26113309,99.86,0,0,0.14,508.01,3567.52,26113310,99.67,0,0,0.38,508.25,3567.3,26113311,99.86,0,0,0.17,508.22,3567.32,26113312,99.84,0,0,0.15,508.21,3567.33,26113313,99.71,0,0,0.4,508.44,3567.09,26113314,99.88,0,0,0.31,507.68,3567.85,26113315,99.71,0,0,0.38,508.14,3567.4,26113316,99.92,0,0,0.14,508.15,3567.39,26113317,99.85,0,0,0.21,508.12,3567.41,26113318,99.78,0,0,0.49,508,3567.53,26113319,99.87,0,0,0.2,507.47,3568.05,26113320,99.53,0,0,0.38,507.77,3567.77,26113321,99.84,0,0,0.14,507.75,3567.79,26113322,99.83,0,0,0.15,507.74,3567.8,26113323,99.73,0,0,0.31,508.07,3567.46,26113324,99.83,0,0,0.42,507.85,3567.67,26113325,99.66,0,0,0.27,507.2,3568.34,26113326,99.78,0,0,0.16,507.17,3568.36,26113327,99.85,0,0,0.14,507.15,3568.38,26113328,99.87,0,0,0.14,507.12,3568.4,26113329,99.62,0,0,0.66,507.92,3567.58,26113330,99.76,0,0,0.27,507.38,3568.13,26113331,99.79,0,0,0.14,507.52,3567.99,26113332,99.84,0,0,0.16,507.49,3568.02,26113333,99.86,0,0,0.18,507.46,3568.04,26113334,99.62,0,0,0.55,507.8,3567.69,26113335,99.65,0,0,0.3,506.7,3568.8,26113336,99.87,0,0,0.14,506.68,3568.82,26113337,99.73,0,0,0.24,506.89,3568.61,26113338,99.76,0,0,0.16,506.89,3568.61,26113339,99.71,0,0,0.58,507.05,3568.44,26113340,99.64,0,0,0.29,507.36,3568.14,26113341,99.82,0,0,0.15,507.36,3568.14,26113342,99.86,0,0,0.13,507.5,3568,26113343,99.89,0,0,0.16,507.48,3568.02,26113344,99.68,0,0,0.59,507.79,3567.7,26113345,99.13,0,0,0.31,506.5,3569.01,26113346,99.72,0,0,0.16,506.44,3569.06,26113347,99.82,0,0,0.14,506.43,3569.07,26113348,99.85,0,0,0.15,506.4,3569.09,26113349,99.76,0,0,0.39,506.89,3568.59,26113350,99.7,0,0,0.38,506.87,3568.63,26113351,99.85,0,0,0.16,506.84,3568.66,26113352,99.87,0,0,0.16,506.86,3568.63,26113353,99.84,0,0,0.18,506.99,3568.5,26113354,99.75,0,0,0.54,507.46,3568.03,26113355,99.75,0,0,0.29,507.46,3568.04,26113356,99.83,0,0,0.14,507.43,3568.07,26113357,99.87,0,0,0.14,507.42,3568.08,26113358,99.85,0,0,0.16,507.4,3568.09,26113359,99.45,0,0,0.67,508.55,3566.91,26113360,99.62,0,0,0.26,506.64,3568.83,26113361,99.87,0,0,0.14,506.61,3568.87,26113362,98.42,0,0,0.16,506.58,3568.89,26113363,99.91,0,0,0.14,506.72,3568.75,26113364,99.88,0,0,0.15,506.77,3568.71,26113365,99.42,0,0,0.65,507.48,3568.02,26113366,98.86,0,0,0.14,507,3568.5,26113367,99.8,0,0,0.14,506.97,3568.53,26113368,99.71,0,0,0.16,506.96,3568.53,26113369,99.82,0,0,0.14,506.92,3568.56,26113370,99.49,0,0,0.7,508.09,3567.41,26113371,99.74,0,0,0.14,507.89,3567.61,26113372,99.79,0,0,0.17,507.87,3567.62,26113373,99.85,0,0,0.15,507.84,3567.64,26113374,99.87,0,0,0.14,507.85,3567.63,26113375,99.45,0,0,0.68,507.98,3567.52,26113376,99.76,0,0,0.15,507.51,3567.99,26113377,99.79,0,0,0.2,507.49,3568.01,26113378,99.83,0,0,0.14,507.47,3568.02,26113379,99.84,0,0,0.14,507.45,3568.04,26113380,99.31,0,0,0.62,507.67,3567.83,26113381,99.75,0,0,0.22,507.42,3568.08,26113382,99.79,0,0,0.14,507.39,3568.1,26113383,99.85,0,0,0.16,507.38,3568.1,26113384,99.81,0,0,0.16,507.35,3568.13,26113385,99.44,0,0,0.71,508.49,3567.01,26113386,99.79,0,0,0.15,507.92,3567.57,26113387,99.76,0,0,0.18,508,3567.49,26113388,99.88,0,0,0.14,507.97,3567.52,26113389,99.6,0,0,0.3,507.72,3567.75,26113390,99.59,0,0,0.55,508.54,3566.95,26113391,99.8,0,0,0.29,507.69,3567.8,26113392,99.7,0,0,0.17,507.66,3567.82,26113393,99.8,0,0,0.14,507.63,3567.84,26113394,99.88,0,0,0.15,507.63,3567.88,26113395,99.61,0,0,0.28,507.79,3567.74,26113396,99.57,0,0,0.55,507.73,3567.8,26113397,99.77,0,0,0.19,507.34,3568.19,26113398,99.78,0,0,0.14,507.48,3568.04,26113399,99.82,0,0,0.15,507.48,3568.04,26113400,99.63,0,0,0.27,507.97,3567.56,26113401,99.63,0,0,0.56,508.54,3567,26113402,99.75,0,0,0.18,508.19,3567.34,26113403,99.75,0,0,0.16,508.16,3567.37,26113404,99.7,0,0,0.16,508,3567.52,26113405,99.62,0,0,0.29,507.88,3567.66,26113406,99.59,0,0,0.57,508.59,3566.94,26113407,99.85,0,0,0.14,507.84,3567.68,26113408,99.85,0,0,0.15,507.84,3567.68,26113409,99.84,0,0,0.14,507.99,3567.53,26113410,99.52,0,0,0.27,508.22,3567.32,26113411,99.53,0,0,0.58,508.64,3566.88,26113412,99.77,0,0,0.2,508.19,3567.34,26113413,99.79,0,0,0.18,508.18,3567.34,26113414,99.79,0,0,0.18,508.15,3567.36,26113415,99.57,0,0,0.3,507.92,3567.61,26113416,99.68,0,0,0.53,508.39,3567.14,26113417,99.79,0,0,0.19,508.12,3567.4,26113418,99.82,0,0,0.15,508.08,3567.43,26113419,99.58,0,0,0.29,508.07,3567.42,26113420,99.69,0,0,0.27,508.05,3567.46,26113421,99.71,0,0,0.54,508.43,3567.07,26113422,99.77,0,0,0.19,507.96,3567.54,26113423,99.78,0,0,0.15,507.94,3567.55,26113424,99.76,0,0,0.14,507.91,3567.58,26113425,99.58,0,0,0.3,507.93,3567.58,26113426,99.67,0,0,0.39,508.66,3566.84,26113427,99.8,0,0,0.3,508.12,3567.37,26113428,99.7,0,0,0.14,508.09,3567.39,26113429,99.84,0,0,0.15,508.08,3567.41,26113430,99.54,0,0,0.28,507.2,3568.3,26113431,99.7,0,0,0.43,507.68,3567.82,26113432,99.84,0,0,0.28,508.04,3567.46,26113433,99.83,0,0,0.15,508.18,3567.31,26113434,99.84,0,0,0.14,508.18,3567.3,26113435,99.66,0,0,0.31,508.18,3567.32,26113436,99.85,0,0,0.18,508.16,3567.33,26113437,99.69,0,0,0.57,508.04,3567.45,26113438,99.85,0,0,0.18,507.63,3567.86,26113439,99.85,0,0,0.18,507.6,3567.88,26113440,99.24,0,0,0.32,507.14,3568.36,26113441,99.76,0,0,0.18,507.09,3568.41,26113442,99.59,0,0,0.54,508.33,3567.16,26113443,99.82,0,0,0.14,508.04,3567.45,26113444,99.85,0,0,0.14,508.02,3567.46,26113445,99.69,0,0,0.32,507.23,3568.27,26113446,99.85,0,0,0.14,507.24,3568.26,26113447,99.61,0,0,0.64,508.11,3567.38,26113448,99.8,0,0,0.14,507.94,3567.55,26113449,99.59,0,0,0.27,508.4,3567.06,26113450,99.73,0,0,0.28,507.7,3567.79,26113451,99.79,0,0,0.17,507.66,3567.84,26113452,99.54,0,0,0.56,508.83,3566.66,26113453,99.71,0,0,0.16,508.35,3567.13,26113454,99.64,0,0,0.15,508.35,3567.15,26113455,99.52,0,0,0.32,506.4,3569.12,26113456,99.77,0,0,0.16,506.37,3569.15,26113457,99.56,0,0,0.46,507.64,3567.87,26113458,99.73,0,0,0.29,508.23,3567.27,26113459,99.83,0,0,0.15,508.2,3567.3,26113460,99.59,0,0,0.27,508.72,3566.8,26113461,99.83,0,0,0.16,508.67,3566.84,26113462,99.65,0,0,0.54,508.99,3566.52,26113463,99.82,0,0,0.2,508.14,3567.36,26113464,99.76,0,0,0.19,508.08,3567.42,26113465,99.65,0,0,0.31,507.63,3567.88,26113466,99.8,0,0,0.19,507.6,3567.91,26113467,99.67,0,0,0.39,507.99,3567.51,26113468,99.82,0,0,0.36,508.35,3567.14,26113469,99.8,0,0,0.16,508.46,3567.02,26113470,99.57,0,0,0.29,508.45,3567.05,26113471,99.71,0,0,0.14,508.44,3567.05,26113472,99.58,0,0,0.33,508.72,3566.77,26113473,99.73,0,0,0.37,507.05,3568.44,26113474,99.69,0,0,0.15,505.65,3569.83,26113475,99.65,0,0,0.33,505.65,3569.85,26113476,99.71,0,0,0.14,505.62,3569.88,26113477,99.75,0,0,0.14,505.6,3569.89,26113478,99.52,0,0,0.55,505.93,3569.56,26113479,99.57,0,0,0.3,505.97,3569.49,26113480,99.64,0,0,0.32,505.74,3569.74,26113481,99.8,0,0,0.14,505.71,3569.77,26113482,99.76,0,0,0.16,505.69,3569.78,26113483,99.71,0,0,0.58,506.22,3569.25,26113484,99.8,0,0,0.15,505.66,3569.82,26113485,99.61,0,0,0.29,504.93,3570.57,26113486,99.75,0,0,0.14,504.9,3570.59,26113487,99.79,0,0,0.15,504.89,3570.61,26113488,99.68,0,0,0.58,505.76,3569.75,26113489,99.77,0,0,0.14,505.84,3569.66,26113490,99.62,0,0,0.27,505.84,3569.68,26113491,99.73,0,0,0.16,505.98,3569.53,26113492,99.77,0,0,0.14,505.98,3569.53,26113493,99.62,0,0,0.5,506.26,3569.25,26113494,99.75,0,0,0.2,505.69,3569.81,26113495,99.66,0,0,0.34,505.93,3569.59,26113496,99.8,0,0,0.18,505.92,3569.6,26113497,99.77,0,0,0.14,505.89,3569.63,26113498,99.66,0,0,0.41,506.23,3569.28,26113499,99.84,0,0,0.32,505.85,3569.66,26113500,99.28,0,0,0.3,505.62,3569.9,26113501,99.53,0,0,0.16,505.58,3569.93,26113502,99.56,0,0,0.16,505.73,3569.78,26113503,94.69,0.39,0.01,78.53,518.58,3557.41,26113504,99.67,0,0,183.58,508.27,3567.08,26113505,99.61,0,0,0.29,505.89,3569.48,26113506,99.79,0,0,0.14,505.82,3569.54,26113507,99.8,0,0,0.14,505.95,3569.41,26113508,99.69,0,0,0.32,506.47,3568.89,26113509,99.65,0,0,0.61,505.95,3569.42,26113510,99.62,0,0,0.3,505.93,3569.44,26113511,99.76,0,0,0.16,505.9,3569.47,26113512,99.82,0,0,0.14,505.89,3569.48,26113513,99.81,0,0,0.15,505.86,3569.5,26113514,99.63,0,0,0.54,506.21,3569.21,26113515,99.63,0,0,0.28,505.85,3569.59,26113516,99.82,0,0,0.17,505.84,3569.6,26113517,99.79,0,0,0.2,505.88,3569.56,26113518,99.8,0,0,0.14,505.97,3569.46,26113519,99.59,0,0,0.57,506.47,3568.96,26113520,99.57,0,0,0.3,505.97,3569.47,26113521,99.78,0,0,0.12,505.94,3569.51,26113522,99.79,0,0,0.16,505.92,3569.52,26113523,99.79,0,0,0.14,505.89,3569.54,26113524,99.63,0,0,0.56,506.17,3569.26,26113525,99.49,0,0,0.3,504.91,3570.54,26113526,99.73,0,0,0.16,504.86,3570.59,26113527,99.68,0,0,0.16,504.84,3570.59,26113528,99.62,0,0,0.18,504.87,3570.56,26113529,99.67,0,0,0.44,505.98,3569.45,26113530,99.55,0,0,0.43,506.02,3569.43,26113531,99.8,0,0,0.14,505.94,3569.5,26113532,99.76,0,0,0.16,505.92,3569.52,26113533,99.82,0,0,0.14,505.9,3569.54,26113534,99.67,0,0,0.52,506.47,3568.96,26113535,99.6,0,0,0.35,505.88,3569.56,26113536,99.77,0,0,0.14,505.84,3569.6,26113537,99.82,0,0,0.17,505.83,3569.61,26113538,99.76,0,0,0.14,505.8,3569.63,26113539,99.27,0,0,0.67,506.51,3568.9,26113540,99.44,0,0,0.32,506.2,3569.22,26113541,99.64,0,0,0.16,506.2,3569.22,26113542,99.65,0,0,0.14,506.17,3569.25,26113543,99.83,0,0,0.15,506.15,3569.26,26113544,98.76,0,0,0.52,506.44,3568.98,26113545,99.71,0,0,0.34,506.37,3569.08,26113546,99.85,0,0,0.36,505.87,3569.57,26113547,99.74,0,0,0.15,505.84,3569.59,26113548,99.73,0,0,0.14,505.83,3569.6,26113549,99.55,0,0,0.31,506.17,3569.26,26113550,99.71,0,0,0.5,506.08,3569.36,26113551,99.7,0,0,0.14,506.22,3569.22,26113552,99.7,0,0,0.16,506.18,3569.26,26113553,99.8,0,0,0.14,506.16,3569.27,26113554,99.84,0,0,0.14,506.13,3569.3,26113555,99.55,0,0,0.74,506.58,3568.86,26113556,99.8,0,0,0.14,505.84,3569.59,26113557,99.8,0,0,0.14,505.82,3569.61,26113558,99.86,0,0,0.15,505.79,3569.63,26113559,99.78,0,0,0.14,505.94,3569.49,26113560,99.4,0,0,0.67,506.48,3568.96,26113561,99.71,0.01,0.01,0.16,505.97,3569.47,26113562,99.83,0,0.01,0.19,505.91,3569.52,26113563,99.79,0,0,0.14,505.88,3569.54,26113564,99.79,0,0.01,0.19,505.84,3569.58,26113565,99.66,0,0,0.64,506.56,3568.87,26113566,99.82,0,0,0.19,506.35,3569.08,26113567,99.8,0,0,0.16,506.47,3568.95,26113568,99.78,0,0,0.14,506.46,3568.96,26113569,99.78,0,0,0.27,505.7,3569.7,26113570,99.55,0,0,0.68,506.31,3569.11,26113571,99.8,0,0,0.14,506.16,3569.25,26113572,99.83,0,0,0.16,506.13,3569.27,26113573,99.77,0,0,0.14,506.11,3569.29,26113574,99.64,0,0,0.16,506.09,3569.32,26113575,99.41,0,0,0.66,506.96,3568.47,26113576,99.86,0,0,0.18,506.07,3569.36,26113577,99.76,0,0,0.2,506.09,3569.33,26113578,99.79,0,0,0.14,506.22,3569.2,26113579,99.82,0,0,0.14,506.18,3569.23,26113580,99.32,0,0,0.54,506.44,3568.98,26113581,99.76,0,0,0.29,505.19,3570.24,26113582,99.78,0,0,0.14,505.17,3570.25,26113583,99.78,0,0,0.15,505.14,3570.28,26113584,99.81,0,0,0.16,505.09,3570.32,26113585,99.46,0,0,0.57,505.23,3570.2,26113586,99.65,0,0,0.28,506.34,3569.08,26113587,99.71,0,0,0.16,506.31,3569.11,26113588,99.7,0,0,0.14,506.29,3569.13,26113589,99.84,0,0,0.15,506.44,3568.97,26113590,99.68,0,0,0.3,506.22,3569.21,26113591,99.72,0,0,0.53,507.19,3568.24,26113592,99.81,0,0,0.16,506.42,3569,26113593,99.83,0,0,0.14,506.4,3569.02,26113594,99.78,0,0,0.14,506.37,3569.04,26113595,99.72,0,0,0.29,505.66,3569.77,26113596,96.34,0.08,0.01,0.94,511.79,3565.09,26113597,99.67,0,0,78.31,509.04,3566,26113598,99.83,0,0,0.18,509.04,3565.99,26113599,99.74,0,0,0.29,509.01,3565.98,26113600,99.59,0,0,0.32,508.3,3566.71,26113601,99.69,0,0,0.55,508.99,3566.01,26113602,99.8,0,0,0.2,506.43,3568.63,26113603,99.7,0,0,0.15,506.44,3568.61,26113604,99.81,0,0,0.16,506.41,3568.66,26113605,99.7,0,0,0.36,506.67,3568.42,26113606,99.69,0,0,0.58,506.84,3568.24,26113607,99.79,0,0,0.16,506.38,3568.7,26113608,99.37,0,0,0.15,506.35,3568.72,26113609,99.82,0,0,0.14,506.34,3568.73,26113610,99.63,0,0,0.28,505.63,3569.46,26113611,99.63,0,0,0.55,506.27,3568.81,26113612,99.79,0,0,0.15,506.37,3568.72,26113613,99.78,0,0,0.15,506.48,3568.6,26113614,99.77,0,0,0.15,506.45,3568.62,26113615,99.67,0,0,0.3,506.7,3568.39,26113616,99.64,0,0,0.56,507.03,3568.06,26113617,99.88,0,0,0.14,506.67,3568.42,26113618,99.73,0,0,0.16,506.64,3568.45,26113619,99.77,0,0,0.15,506.61,3568.47,26113620,99.61,0,0,0.27,506.62,3568.48,26113621,99.64,0,0,0.56,507.08,3568.02,26113622,99.87,0,0,0.14,506.09,3569,26113623,99.88,0,0,0.14,506.21,3568.87,26113624,99.88,0,0,0.14,506.23,3568.84,26113625,99.73,0,0,0.29,505.02,3570.08,26113626,99.77,0,0,0.2,504.99,3570.11,26113627,99.58,0,0,0.59,506.72,3568.37,26113628,99.82,0,0,0.14,506.41,3568.68,26113629,99.6,0,0,0.28,506.42,3568.65,26113630,99.64,0,0,0.36,506.62,3568.45,26113631,99.85,0,0,0.13,506.6,3568.47,26113632,99.64,0,0,0.59,506.55,3568.52,26113633,99.83,0,0,0.15,506.07,3568.99,26113634,99.85,0,0,0.14,506.21,3568.85,26113635,99.64,0,0,0.31,506.24,3568.83,26113636,99.76,0,0,0.15,506.21,3568.86,26113637,99.65,0,0,0.66,506.94,3568.13,26113638,99.77,0,0.02,0.16,506.66,3568.4,26113639,99.85,0,0,0.17,506.61,3568.45,26113640,99.7,0,0,0.32,506.66,3568.42,26113641,99.84,0,0,0.14,506.59,3568.48,26113642,99.66,0,0,0.55,506.34,3568.73,26113643,99.78,0,0,0.15,505.58,3569.48,26113644,99.8,0,0,0.18,505.67,3569.38,26113645,98.45,0,0,15.73,506.94,3568.86,26113646,99.75,0,0,0.13,505.47,3569.89,26113647,99.61,0,0,0.54,506.61,3568.74,26113648,99.75,0,0,0.19,506.66,3568.7,26113649,99.76,0,0,0.15,506.63,3568.72,26113650,99.59,0,0,0.36,506.4,3568.97,26113651,99.74,0,0,0.13,505.63,3569.74,26113652,99.63,0,0,0.56,506.01,3569.35,26113653,99.8,0,0,0.17,505.83,3569.53,26113654,99.77,0,0,0.16,505.84,3569.51,26113655,99.52,0,0,0.3,504.57,3570.8,26113656,99.68,0,0,0.16,504.49,3570.88,26113657,99.49,0,0,0.4,504.88,3570.48,26113658,99.73,0,0,0.29,504.7,3570.66,26113659,99.67,0,0,0.3,505.89,3569.46,26113660,99.53,0,0,0.31,506.14,3569.23,26113661,99.65,0,0,0.17,506.12,3569.25,26113662,99.51,0,0,0.37,506.46,3568.91,26113663,99.68,0,0,0.38,506.08,3569.28,26113664,99.7,0,0,0.16,506.06,3569.29,26113665,99.61,0,0,0.37,505.85,3569.52,26113666,99.77,0,0,0.13,505.99,3569.38,26113667,99.69,0,0,0.16,505.96,3569.4,26113668,99.49,0,0,0.62,505.8,3569.55,26113669,99.7,0,0,0.18,504.93,3570.42,26113670,99.64,0,0,0.29,505.89,3569.47,26113671,99.75,0,0,0.16,505.9,3569.47,26113672,99.73,0,0,0.14,505.87,3569.49,26113673,99.64,0,0,0.6,506.17,3569.18,26113674,99.8,0,0,0.15,505.58,3569.77,26113675,99.65,0,0,0.32,506.06,3569.3,26113676,99.71,0,0,0.17,506.1,3569.26,26113677,99.71,0,0,0.15,506.2,3569.15,26113678,99.6,0,0,0.61,506.37,3568.97,26113679,96.3,0,0,47.04,513.3,3559.53,26113680,99.39,0,0,0.35,508.03,3567.08,26113681,99.71,0,0,0.13,508.01,3567.1,26113682,99.76,0,0,0.16,507.98,3567.13,26113683,99.59,0,0,0.59,508.61,3566.49,26113684,99.73,0,0,0.18,507.11,3568.03,26113685,99.63,0,0,0.34,505.37,3569.83,26113686,99.71,0,0,0.19,505.48,3569.72,26113687,99.71,0.01,0.05,0.16,505.47,3569.73,26113688,99.6,0,0.01,0.53,505.62,3569.57,26113689,99.48,0,0,0.37,506.16,3569,26113690,99.59,0,0,0.32,506.19,3568.98,26113691,99.75,0,0,0.15,506.15,3569.02,26113692,99.61,0,0,0.15,506.13,3569.04,26113693,99.32,0,0,0.44,506.84,3568.32,26113694,99.65,0,0,0.26,506.09,3569.09,26113695,99.5,0,0,0.29,504.67,3570.53,26113696,99.62,0,0,0.16,504.59,3570.61,26113697,99.63,0,0,0.2,504.57,3570.62,26113698,99.54,0,0,0.36,505.37,3569.82,26113699,99.78,0,0,0.37,506.18,3569,26113700,99.62,0,0,0.29,505.95,3569.24,26113701,99.38,0,0,0.27,506.28,3568.92,26113702,99.72,0,0,0.16,506.15,3569.05,26113703,99.74,0,0,0.14,506.12,3569.08,26113704,99.47,0,0,0.56,505.83,3569.36,26113705,99.53,0,0,0.34,506.1,3569.11,26113706,99.63,0,0,0.17,506.09,3569.12,26113707,99.68,0,0,0.15,506.06,3569.14,26113708,99.62,0,0,0.14,506.05,3569.15,26113709,99.6,0,0,0.54,506.7,3568.49,26113710,99.59,0,0,0.34,506.46,3568.75,26113711,99.77,0,0,0.16,506.43,3568.77,26113712,99.69,0,0,0.14,506.41,3568.79,26113713,99.74,0,0,0.16,506.39,3568.8,26113714,99.58,0,0,0.59,506.71,3568.48,26113715,99.66,0,0,0.35,506.13,3569.07,26113716,99.77,0,0,0.19,506.09,3569.11,26113717,99.79,0,0,0.18,506.06,3569.14,26113718,99.71,0,0,0.18,506.05,3569.15,26113719,99.33,0,0,0.8,506.56,3568.61,26113720,99.59,0,0,0.31,506.45,3568.73,26113721,99.78,0,0,0.14,506.42,3568.77,26113722,99.71,0,0,0.16,506.41,3568.77,26113723,99.73,0,0,0.14,506.38,3568.8,26113724,99.6,0,0,0.55,506.93,3568.26,26113725,99.59,0,0,0.36,506.37,3568.83,26113726,98.41,0,0,0.19,506.36,3568.84,26113727,99.77,0,0,0.18,506.33,3568.87,26113728,99.72,0,0,0.16,506.32,3568.88,26113729,99.43,0,0,0.43,506.59,3568.6,26113730,99.57,0,0,0.4,504.87,3570.34,26113731,99.75,0,0,0.16,504.88,3570.32,26113732,99.73,0,0,0.18,504.94,3570.25,26113733,99.72,0,0,0.16,504.92,3570.27,26113734,99.55,0,0,0.3,505.29,3569.89,26113735,99.52,0,0,0.51,505.18,3570.02,26113736,99.75,0,0,0.17,505.12,3570.07,26113737,99.69,0,0,0.14,505.11,3570.08,26113738,99.77,0,0,0.14,505.08,3570.11,26113739,99.55,0,0,0.32,505.49,3569.69,26113740,99.4,0,0,0.52,506.3,3568.9,26113741,99.7,0,0,0.13,506.29,3568.91,26113742,99.76,0,0,0.16,506.26,3568.93,26113743,99.78,0,0,0.14,506.34,3568.84,26113744,99.77,0,0,0.16,506.4,3568.78,26113745,99.41,0,0,0.66,506.35,3568.84,26113746,99.74,0,0,0.16,505.4,3569.79,26113747,99.73,0,0,0.14,505.39,3569.8,26113748,99.77,0,0,0.16,505.35,3569.83,26113749,99.54,0,0,0.35,506.31,3568.84,26113750,99.44,0,0,0.78,506.96,3568.21,26113751,99.77,0,0,0.16,506.31,3568.86,26113752,99.76,0,0,0.18,506.28,3568.88,26113753,99.72,0,0,0.18,506.27,3568.89,26113754,99.76,0,0,0.19,506.24,3568.91,26113755,99.46,0,0,0.76,506.08,3569.09,26113756,99.72,0,0,0.2,506.1,3569.07,26113757,99.73,0,0,0.25,506.42,3568.74,26113758,99.75,0,0,0.19,506.41,3568.75,26113759,99.79,0,0,0.16,506.39,3568.78,26113760,99.38,0,0,0.75,506.67,3568.52,26113761,99.79,0,0,0.14,506.11,3569.07,26113762,99.7,0,0,0.14,506.09,3569.09,26113763,99.73,0,0,0.17,506.06,3569.12,26113764,99.72,0,0,0.15,506.03,3569.15,26113765,99.43,0,0,0.7,506.64,3568.55,26113766,99.8,0,0,0.17,506.41,3568.77,26113767,99.75,0,0,0.14,506.43,3568.75,26113768,99.65,0,0,0.15,506.4,3568.78,26113769,99.78,0,0,0.15,506.39,3568.79,26113770,99.45,0,0,0.7,507.02,3568.17,26113771,99.81,0,0,0.14,506.86,3568.32,26113772,99.7,0,0,0.16,506.83,3568.35,26113773,99.72,0,0,0.15,506.81,3568.36,26113774,99.68,0,0,0.17,506.79,3568.38,26113775,99.5,0,0,0.46,506.69,3568.5,26113776,99.71,0,0,0.38,506.27,3568.91,26113777,99.8,0,0,0.14,506.3,3568.87,26113778,99.79,0,0,0.14,506.42,3568.75,26113779,99.61,0,0,0.29,506.39,3568.75,26113780,99.7,0,0,0.29,506.64,3568.52,26113781,99.64,0,0,0.57,507.03,3568.13,26113782,99.79,0,0,0.18,506.6,3568.55,26113783,99.81,0,0,0.18,506.56,3568.58,26113784,99.8,0,0,0.2,506.55,3568.59,26113785,99.71,0,0,0.36,506.3,3568.86,26113786,99.19,0,0,0.6,506.97,3568.19,26113787,99.75,0,0,0.15,506.75,3568.4,26113788,99.78,0,0,0.15,506.82,3568.34,26113789,99.78,0,0,0.14,506.89,3568.27,26113790,99.32,0,0,0.35,506.65,3568.52,26113791,99.62,0,0,0.55,506.99,3568.18,26113792,99.72,0,0,0.18,506.6,3568.57,26113793,99.75,0,0,0.18,506.59,3568.57,26113794,99.72,0,0,0.18,506.56,3568.6,26113795,99.56,0,0,0.34,506.4,3568.78,26113796,99.55,0.01,0.01,0.54,505.94,3569.23,26113797,99.73,0,0,0.19,505.64,3569.53,26113798,99.78,0,0,0.16,505.61,3569.55,26113799,99.74,0,0,0.15,505.59,3569.57,26113800,99.39,0,0,0.36,505.12,3570.06,26113801,99.52,0,0,0.54,506.18,3568.99,26113802,99.59,0,0,0.14,506.04,3569.13,26113803,99.69,0,0,0.15,506.01,3569.15,26113804,99.71,0,0,0.14,506.01,3569.15,26113805,99.61,0,0,0.29,504.81,3570.37,26113806,99.58,0,0,0.41,505.42,3569.75,26113807,99.76,0,0,0.29,505.65,3569.52,26113808,99.77,0,0,0.14,505.65,3569.52,26113809,99.41,0,0,0.34,505.38,3569.76,26113810,99.66,0,0,0.28,506.11,3569.05,26113811,99.64,0,0,0.39,506.43,3568.73,26113812,99.61,0,0,0.3,505.83,3569.31,26113813,99.61,0,0,0.15,505.79,3569.34,26113814,99.65,0,0,0.14,505.78,3569.36,26113815,99.61,0,0,0.29,505.53,3569.62,26113816,99.68,0,0,0.16,505.5,3569.64,26113817,99.49,0,0,0.59,506.74,3568.41,26113818,99.75,0,0,0.17,506.14,3569,26113819,99.82,0,0,0.16,506.1,3569.03,26113820,99.66,0,0,0.33,505.15,3570,26113821,99.84,0,0,0.14,505.1,3570.05,26113822,99.66,0,0,0.56,506.12,3569.03,26113823,99.83,0,0,0.15,505.55,3569.59,26113824,99.8,0,0,0.14,505.54,3569.59,26113825,99.76,0,0,0.33,505.52,3569.63,26113826,99.81,0,0,0.12,505.52,3569.63,26113827,99.65,0,0,0.55,506.16,3568.98,26113828,99.82,0,0,0.14,505.98,3569.16,26113829,99.84,0,0,0.14,506.14,3568.99,26113830,99.66,0,0,0.33,506.26,3568.89,26113831,99.89,0,0,0.14,506.14,3569,26113832,99.63,0,0,0.55,506.48,3568.66,26113833,99.81,0,0,0.14,506.1,3569.04,26113834,99.88,0,0,0.15,506.08,3569.05,26113835,99.68,0,0,0.3,506.08,3569.07,26113836,99.81,0,0.03,0.19,506.04,3569.1,26113837,99.7,0.02,0.63,0.53,506.5,3568.64,26113838,99.79,0,0,0.27,506.25,3568.88,26113839,99.57,0,0,0.41,506,3569.12,26113840,99.75,0,0,0.29,506.02,3569.11,26113841,99.87,0,0,0.14,506.13,3569,26113842,99.61,0,0,0.55,506.72,3568.41,26113843,99.85,0,0,0.18,505.6,3569.53,26113844,99.81,0,0,0.18,505.59,3569.57,26113845,99.75,0,0,0.32,505.82,3569.36,26113846,99.8,0,0,0.14,505.8,3569.37,26113847,99.7,0,0,0.49,506.25,3568.92,26113848,99.87,0,0,0.23,505.27,3569.89,26113849,99.8,0,0,0.14,505.25,3569.91,26113850,99.76,0,0,0.29,506.23,3568.95,26113851,99.79,0,0,0.16,506.21,3568.96,26113852,99.87,0,0,0.14,506.33,3568.83,26113853,99.51,0,0,0.54,506.72,3568.45,26113854,99.83,0,0,0.14,506.35,3568.81,26113855,99.8,0,0,0.3,505.85,3569.32,26113856,99.83,0,0,0.16,505.83,3569.34,26113857,99.78,0,0,0.13,505.81,3569.36,26113858,99.69,0,0,0.55,506.53,3568.62,26113859,99.86,0,0,0.15,506.25,3568.9,26113860,99.37,0,0,0.32,506.03,3569.14,26113861,99.75,0,0,0.13,505.99,3569.18,26113862,99.81,0,0,0.17,505.98,3569.19,26113863,99.66,0,0,0.61,506.43,3568.72,26113864,99.81,0,0,0.18,506.1,3569.05,26113865,99.69,0,0,0.3,506.33,3568.84,26113866,99.87,0,0,0.16,506.32,3568.85,26113867,99.84,0,0,0.14,506.29,3568.87,26113868,94.78,0.27,0.01,78.75,519.65,3555.76,26113869,99.39,0,0,181.48,508.11,3566.87,26113870,99.7,0,0,0.31,508.33,3566.68,26113871,99.88,0,0,0.13,508.3,3566.7,26113872,99.89,0,0,0.16,508.29,3566.71,26113873,99.69,0,0,0.59,508.1,3566.9,26113874,99.84,0,0,0.15,506.08,3568.93,26113875,99.6,0,0,0.29,505.43,3569.61,26113876,99.86,0,0,0.14,505.51,3569.52,26113877,99.85,0,0,0.2,505.49,3569.54,26113878,99.73,0,0,0.55,505.79,3569.24,26113879,99.8,0,0,0.14,504.96,3570.08,26113880,99.68,0.02,0.74,0.33,505.19,3569.86,26113881,99.83,0,0,0.19,505.18,3569.87,26113882,99.83,0,0,0.16,505.15,3569.89,26113883,99.62,0,0,0.4,505.6,3569.43,26113884,99.87,0,0,0.29,506.09,3568.94,26113885,99.69,0,0,0.31,506.11,3568.94,26113886,99.83,0,0,0.15,506.07,3568.97,26113887,99.83,0,0,0.16,506.22,3568.82,26113888,99.84,0,0,0.15,506.21,3568.82,26113889,99.62,0,0,0.6,507.19,3567.84,26113890,99.59,0,0,0.33,505.96,3569.09,26113891,99.86,0,0,0.18,505.92,3569.13,26113892,99.81,0,0,0.16,505.91,3569.13,26113893,99.79,0,0,0.14,505.88,3569.16,26113894,99.66,0,0,0.57,506.76,3568.28,26113895,99.73,0,0,0.3,506.11,3568.94,26113896,99.84,0,0,0.15,506.1,3568.95,26113897,99.85,0,0,0.16,506.06,3568.98,26113898,99.87,0,0,0.15,506.2,3568.84,26113899,99.54,0,0,0.69,506.09,3568.93,26113900,99.66,0,0,0.33,506.21,3568.84,26113901,99.88,0,0,0.18,506.19,3568.85,26113902,99.87,0,0,0.15,506.19,3568.85,26113903,99.86,0,0,0.17,506.15,3568.88,26113904,99.67,0,0,0.55,505.93,3569.12,26113905,99.74,0,0,0.35,506.11,3568.96,26113906,99.85,0,0,0.17,506.1,3568.96,26113907,99.85,0,0,0.15,506.07,3568.99,26113908,95.68,0,0,0.15,506.14,3568.92,26113909,99.74,0,0,0.55,506.71,3568.34,26113910,99.69,0,0,0.27,506.76,3568.3,26113911,99.8,0,0,0.16,506.72,3568.34,26113912,99.89,0,0,0.14,506.7,3568.35,26113913,99.84,0,0,0.16,506.67,3568.38,26113914,99.67,0,0,0.43,507.27,3567.78,26113915,99.58,0,0,0.44,506.65,3568.4,26113916,99.79,0,0,0.17,506.64,3568.41,26113917,99.87,0,0,0.14,506.61,3568.44,26113918,99.79,0,0,0.14,506.61,3568.44,26113919,99.71,0,0,0.38,506.85,3568.19,26113920,99.59,0,0,0.47,504.62,3570.44,26113921,99.78,0,0,0.17,504.75,3570.31,26113922,99.87,0,0,0.16,504.77,3570.28,26113923,99.83,0,0,0.14,504.74,3570.31,26113924,99.86,0,0,0.14,504.72,3570.32,26113925,99.61,0,0,0.69,505.57,3569.49,26113926,99.74,0,0,0.16,505.18,3569.87,26113927,98.15,0,0,0.14,505.16,3569.89,26113928,99.87,0,0,0.15,505.13,3569.91,26113929,99.58,0,0,0.3,505.82,3569.2,26113930,99.59,0,0,0.68,507.05,3567.99,26113931,99.87,0,0,0.16,506.74,3568.3,26113932,99.88,0,0,0.15,506.71,3568.33,26113933,99.8,0,0,0.16,506.68,3568.35,26113934,99.84,0,0,0.14,506.66,3568.36,26113935,99.61,0,0,0.69,507.48,3567.58,26113936,99.82,0,0,0.14,506.9,3568.16,26113937,99.86,0,0,0.21,506.63,3568.43,26113938,99.88,0,0,0.14,506.61,3568.44,26113939,99.92,0,0,0.16,506.58,3568.47,26113940,99.62,0,0,0.69,505.86,3569.2,26113941,99.85,0,0,0.19,505.51,3569.55,26113942,99.85,0,0,0.16,505.48,3569.57,26113943,99.84,0,0,0.16,505.47,3569.59,26113944,99.88,0,0,0.18,505.39,3569.66,26113945,99.57,0,0,0.59,506.95,3568.11,26113946,99.86,0,0,0.28,505.78,3569.28,26113947,99.88,0,0,0.17,505.39,3569.66,26113948,99.82,0,0,0.14,505.49,3569.55,26113949,99.88,0,0,0.15,505.47,3569.57,26113950,99.58,0,0,0.69,506.13,3568.93,26113951,99.88,0,0,0.18,505.45,3569.61,26113952,99.85,0,0,0.18,505.42,3569.63,26113953,99.88,0,0,0.15,505.4,3569.65,26113954,99.88,0,0,0.16,505.38,3569.67,26113955,99.53,0,0,0.56,505.46,3569.59,26113956,99.84,0,0,0.3,504.37,3570.68,26113957,99.87,0,0,0.14,504.35,3570.69,26113958,99.82,0,0,0.15,504.44,3570.61,26113959,99.7,0,0,0.32,505.7,3569.32,26113960,99.51,0,0,0.46,506,3569.03,26113961,99.9,0,0,0.36,505.96,3569.08,26113962,99.8,0,0,0.16,505.93,3569.1,26113963,99.87,0,0,0.14,505.91,3569.12,26113964,99.86,0,0,0.15,505.89,3569.13,26113965,99.79,0,0,0.34,505.9,3569.14,26113966,99.67,0,0,0.56,506.62,3568.41,26113967,99.8,0,0,0.13,506.09,3568.94,26113968,99.86,0,0,0.17,506.08,3568.95,26113969,99.87,0,0,0.14,506.05,3568.97,26113970,99.68,0,0,0.28,505.93,3569.11,26113971,99.68,0,0,0.56,506.49,3568.54,26113972,98.51,0,0,0.14,506.19,3568.84,26113973,99.87,0,0,0.16,506.17,3568.85,26113974,99.85,0,0,0.14,506.16,3568.86,26113975,99.71,0,0,0.32,504.7,3570.33,26113976,99.68,0,0,0.56,505.81,3569.22,26113977,99.85,0,0,0.17,506.1,3568.92,26113978,99.84,0,0,0.15,506.08,3568.95,26113979,99.89,0,0,0.15,506.06,3568.95,26113980,99.51,0,0,0.3,505.34,3569.7,26113981,99.68,0,0,0.5,506.21,3568.83,26113982,99.67,0,0,0.2,506.48,3568.55,26113983,99.82,0,0,0.16,506.45,3568.57,26113984,99.79,0,0,0.15,506.42,3568.6,26113985,99.57,0,0,0.34,505.05,3569.98,26113986,99.68,0,0,0.53,505.81,3569.22,26113987,99.81,0,0,0.19,505.64,3569.38,26113988,99.81,0,0,0.18,505.61,3569.41,26113989,99.6,0,0,0.29,505.6,3569.4,26113990,99.61,0,0,0.34,506.07,3568.95,26113991,99.62,0,0,0.35,506.58,3568.43,26113992,99.85,0,0,0.38,505.99,3569.02,26113993,99.82,0,0,0.14,505.98,3569.03,26113994,99.8,0,0,0.14,505.95,3569.08,26113995,99.65,0,0,0.3,506.18,3568.87,26113996,99.87,0,0,0.16,506.17,3568.87,26113997,99.63,0,0,0.61,505.24,3569.8,26113998,99.87,0,0,0.18,504.65,3570.39,26113999,99.8,0,0,0.18,504.63,3570.41,26114000,99.72,0,0,0.33,506.08,3568.97,26114001,99.85,0,0,0.18,506.08,3568.97,26114002,99.74,0,0,0.56,506.14,3568.9,26114003,99.78,0,0,0.18,505.72,3569.31,26114004,99.78,0.01,0.01,0.46,505.92,3569.11,26114005,99.66,0,0,0.36,505.78,3569.26,26114006,99.79,0,0,0.17,505.62,3569.41,26114007,99.67,0,0,0.55,505.67,3569.36,26114008,99.75,0,0,0.18,505.09,3569.94,26114009,99.87,0,0,0.18,505.08,3569.95,26114010,99.58,0,0,0.34,506.51,3568.55,26114011,99.84,0,0,0.14,506.46,3568.6,26114012,99.65,0,0,0.59,506.98,3568.08,26114013,99.85,0,0,0.14,506.18,3568.86,26114014,99.83,0,0,0.16,506.16,3568.88,26114015,99.56,0,0,0.32,505.68,3569.38,26114016,99.77,0.01,0,0.18,505.67,3569.39,26114017,99.7,0,0,0.42,506.27,3568.78,26114018,99.78,0,0,0.29,506.38,3568.67,26114019,99.62,0,0,0.32,506.12,3568.91,26114020,99.63,0,0,0.32,505.4,3569.64,26114021,99.86,0,0,0.16,505.35,3569.69,26114022,99.61,0,0,0.58,505.87,3569.17,26114023,99.84,0,0,0.16,506.34,3568.7,26114024,99.73,0.01,0,0.14,506.37,3568.65,26114025,99.77,0,0,0.3,506.08,3568.96,26114026,99.83,0,0,0.18,506.11,3568.93,26114027,99.58,0,0,0.57,506.65,3568.39,26114028,99.77,0,0,0.14,506.68,3568.35,26114029,99.8,0,0,0.14,506.65,3568.38,26114030,99.78,0,0,0.32,506.66,3568.39,26114031,99.85,0,0,0.14,506.64,3568.41,26114032,99.67,0,0,0.17,506.94,3568.1,26114033,99.72,0,0,0.57,506.46,3568.58,26114034,99.8,0,0,0.14,506.08,3568.95,26114035,99.59,0,0,0.31,506.33,3568.72,26114036,99.78,0,0,0.14,506.3,3568.74,26114037,99.78,0,0,0.14,506.33,3568.71,26114038,99.66,0,0,0.56,506.66,3568.37,26114039,99.85,0,0,0.15,506.21,3568.81,26114040,99.59,0,0,0.34,506.45,3568.59,26114041,99.84,0,0,0.18,506.43,3568.61,26114042,99.83,0,0,0.18,506.38,3568.65,26114043,99.62,0,0,0.57,506.49,3568.54,26114044,99.82,0,0,0.14,506.07,3568.96,26114045,99.73,0,0,0.3,506.36,3568.69,26114046,99.83,0,0,0.19,506.48,3568.56,26114047,99.71,0,0,0.18,506.45,3568.58,26114048,99.58,0,0,0.54,506.77,3568.25,26114049,99.5,0,0,0.32,506.66,3568.33,26114050,99.72,0,0,0.31,506.48,3568.53,26114051,99.73,0,0,0.14,506.37,3568.64,26114052,99.82,0,0,0.16,506.34,3568.66,26114053,99.62,0,0,0.58,507.16,3567.83,26114054,99.74,0,0,0.18,506.54,3568.45,26114055,99.64,0,0,0.3,506.6,3568.42,26114056,99.78,0,0,0.15,506.71,3568.3,26114057,99.75,0,0,0.23,506.45,3568.56,26114058,99.65,0,0,0.56,507.05,3567.95,26114059,99.8,0,0,0.15,506.63,3568.36,26114060,99.69,0,0,0.29,505.7,3569.31,26114061,99.88,0,0,0.17,505.63,3569.38,26114062,99.85,0,0,0.14,505.62,3569.38,26114063,99.69,0,0,0.45,506.19,3568.81,26114064,99.77,0,0,0.32,506.32,3568.67,26114065,99.68,0,0,0.32,506.11,3568.9,26114066,99.85,0,0,0.14,506.05,3568.95,26114067,99.82,0,0,0.16,506.14,3568.86,26114068,99.81,0,0,0.14,506.19,3568.81,26114069,99.66,0,0,0.57,506.52,3568.49,26114070,99.61,0.02,0.48,0.35,506.14,3568.88,26114071,99.84,0,0,0.18,506.18,3568.84,26114072,99.82,0,0,0.16,506.18,3568.84,26114073,99.85,0,0,0.14,506.16,3568.85,26114074,99.59,0,0,0.56,506.89,3568.11,26114075,99.69,0,0,0.31,505.17,3569.86,26114076,99.8,0,0,0.17,505.13,3569.89,26114077,99.8,0,0,0.14,505.1,3569.91,26114078,99.78,0,0,0.14,505.07,3569.94,26114079,99.37,0,0,0.68,506.88,3568.11,26114080,99.7,0,0,0.3,506.52,3568.48,26114081,99.81,0,0,0.16,506.66,3568.33,26114082,99.78,0,0,0.14,506.67,3568.33,26114083,99.79,0,0,0.15,506.64,3568.35,26114084,99.64,0,0,0.54,507.17,3567.83,26114085,99.65,0,0,0.34,506.37,3568.65,26114086,99.79,0,0,0.18,506.35,3568.67,26114087,99.75,0,0,0.18,506.33,3568.68,26114088,99.8,0,0,0.18,506.32,3568.69,26114089,99.68,0,0,0.57,506.75,3568.25,26114090,99.76,0,0,0.32,506.78,3568.23,26114091,99.89,0,0,0.19,506.76,3568.25,26114092,99.05,0,0,0.16,506.78,3568.23,26114093,99.82,0,0,0.14,506.94,3568.08,26114094,99.67,0,0,0.56,507.18,3567.84,26114095,99.74,0,0,0.3,506.67,3568.36,26114096,99.73,0,0,0.16,505.94,3569.09,26114097,99.77,0,0,0.14,505.88,3569.14,26114098,99.8,0,0,0.16,505.86,3569.16,26114099,99.6,0,0,0.49,506.26,3568.76,26114100,99.35,0,0,0.42,504.84,3570.21,26114101,99.84,0,0,0.18,504.85,3570.2,26114102,99.84,0,0,0.18,504.97,3570.07,26114103,99.81,0,0,0.18,504.95,3570.09,26114104,99.64,0.01,0.17,0.77,505.64,3569.38,26114105,99.58,0.01,0.06,0.45,506.06,3568.97,26114106,99.84,0,0,0.16,506.03,3569,26114107,99.85,0,0,0.15,506.06,3568.96,26114108,99.87,0,0.01,0.18,506.14,3568.87,26114109,99.52,0.01,0.02,0.35,505.84,3569.15,26114110,99.29,0,0,0.73,505.96,3569.04,26114111,99.86,0,0,0.18,505.4,3569.59,26114112,99.87,0,0,0.18,505.37,3569.62,26114113,99.86,0,0,0.18,505.36,3569.63,26114114,99.85,0,0.01,0.18,505.33,3569.68,26114115,99.45,0,0.02,0.75,505.86,3569.17,26114116,99.83,0,0,0.16,505.51,3569.52,26114117,99.82,0,0,0.21,505.56,3569.47,26114118,99.83,0,0,0.14,505.65,3569.38,26114119,99.85,0,0,0.16,505.63,3569.4,26114120,99.51,0,0,0.71,506.21,3568.84,26114121,99.83,0,0,0.13,506.1,3568.95,26114122,99.84,0,0,0.15,506.08,3568.96,26114123,99.83,0,0,0.16,506.05,3568.99,26114124,99.8,0,0,0.14,506.04,3569,26114125,99.54,0,0,0.76,505.58,3569.47,26114126,99.88,0,0,0.18,505.04,3570.01,26114127,99.84,0,0,0.18,505.01,3570.04,26114128,99.71,0,0,0.18,505.14,3569.9,26114129,99.85,0,0,0.18,505.15,3569.88,26114130,99.61,0,0,0.57,506.15,3568.91,26114131,99.87,0,0,0.27,505.38,3569.67,26114132,99.77,0,0,0.17,505.35,3569.69,26114133,99.78,0,0,0.14,505.34,3569.7,26114134,99.87,0,0.01,0.18,505.3,3569.74,26114135,99.52,0.01,0.19,0.79,506.72,3568.33,26114136,99.84,0,0.01,0.24,506.02,3569.02,26114137,99.89,0,0,0.16,506.12,3568.91,26114138,99.88,0.02,0.53,0.26,506.11,3568.92,26114139,99.77,0,0,0.29,506,3569.01,26114140,99.57,0,0,0.59,506.53,3568.49,26114141,99.78,0,0,0.3,506.13,3568.89,26114142,99.82,0,0,0.16,506.13,3568.88,26114143,99.78,0,0,0.18,506.1,3568.91,26114144,99.85,0,0,0.18,506.09,3568.91,26114145,99.72,0,0,0.35,506.09,3568.93,26114146,99.63,0,0,0.59,506.65,3568.37,26114147,99.8,0,0,0.15,506.31,3568.7,26114148,99.78,0,0,0.15,506.28,3568.73,26114149,99.75,0,0,0.15,506.27,3568.73,26114150,99.68,0,0,0.32,506.02,3569,26114151,99.6,0,0,0.62,506.36,3568.66,26114152,99.8,0,0,0.14,506,3569.01,26114153,99.8,0,0,0.14,506.14,3568.86,26114154,99.77,0.01,0.41,0.25,506.09,3568.91,26114155,99.71,0,0,0.35,506.32,3568.7,26114156,99.68,0,0,0.55,506.29,3568.72,26114157,99.78,0,0,0.14,505.78,3569.22,26114158,99.79,0,0,0.14,505.75,3569.25,26114159,99.74,0,0,0.15,505.74,3569.25,26114160,99.49,0,0,0.29,505.92,3569.09,26114161,99.64,0,0,0.81,506.66,3568.34,26114162,99.82,0,0,0.16,505.87,3569.13,26114163,99.84,0,0,0.14,505.87,3569.13,26114164,99.7,0,0,0.14,505.84,3569.15,26114165,99.68,0,0,0.3,506.33,3568.68,26114166,99.7,0,0,0.68,506.7,3568.3,26114167,99.81,0,0,0.19,505.81,3569.19,26114168,99.8,0,0.01,0.18,505.75,3569.25,26114169,99.69,0,0,0.28,506.21,3568.76,26114170,99.71,0,0,0.29,506.28,3568.71,26114171,99.65,0,0,0.41,506.81,3568.17,26114172,99.77,0,0,0.29,506.11,3568.87,26114173,99.72,0,0,0.14,506.11,3568.87,26114174,99.62,0,0,0.16,506.08,3568.89,26114175,99.7,0,0,0.3,506.55,3568.43,26114176,99.55,0,0,0.33,506.84,3568.14,26114177,99.7,0,0,0.42,505.78,3569.2,26114178,99.67,0,0,0.17,505.77,3569.21,26114179,99.83,0,0,0.15,505.74,3569.23,26114180,99.7,0,0,0.36,505.75,3569.24,26114181,99.8,0,0,0.15,505.78,3569.2,26114182,99.66,0,0,0.54,506.25,3568.72,26114183,99.78,0,0,0.15,505.86,3569.11,26114184,99.76,0,0,0.17,505.85,3569.12,26114185,99.75,0,0,0.34,506.14,3568.84,26114186,99.87,0,0,0.16,506.06,3568.92,26114187,99.72,0,0,0.58,506.58,3568.39,26114188,99.83,0,0,0.14,506.26,3568.71,26114189,99.86,0,0,0.15,506.24,3568.71,26114190,99.69,0,0,0.29,506,3568.98,26114191,99.73,0,0,0.14,505.97,3569,26114192,99.63,0,0,0.6,506.8,3568.16,26114193,99.76,0,0,0.18,506.61,3568.36,26114194,99.74,0,0,0.16,506.58,3568.38,26114195,99.59,0,0,0.31,506.33,3568.64,26114196,99.81,0,0,0.16,506.31,3568.65,26114197,99.63,0,0,0.48,505.95,3569.02,26114198,99.8,0,0,0.2,505.04,3569.91,26114199,99.69,0,0,0.29,506.27,3568.66,26114200,99.72,0,0,0.28,506.33,3568.63,26114201,99.87,0,0.01,0.22,506.21,3568.74,26114202,99.62,0,0,0.63,506.69,3568.25,26114203,99.76,0,0,0.18,506.06,3568.85,26114204,99.77,0,0,0.18,506.05,3568.87,26114205,99.62,0,0,0.35,506.05,3568.9,26114206,99.78,0,0,0.15,506.04,3568.91,26114207,99.49,0,0,0.44,506.48,3568.46,26114208,99.8,0,0,0.28,506.49,3568.45,26114209,99.79,0,0,0.14,506.46,3568.47,26114210,99.56,0,0,0.3,505.53,3569.42,26114211,99.77,0,0,0.15,505.46,3569.48,26114212,99.61,0,0,0.45,505.83,3569.11,26114213,99.76,0,0,0.29,505.42,3569.52,26114214,99.79,0,0,0.14,505.47,3569.46,26114215,99.6,0,0,0.3,506.8,3568.15,26114216,99.81,0,0,0.14,506.81,3568.14,26114217,99.8,0,0,0.15,506.78,3568.16,26114218,99.62,0,0,0.56,506.9,3568.03,26114219,99.81,0,0,0.15,506.49,3568.43,26114220,99.5,0,0,0.3,505.53,3569.41,26114221,99.68,0,0,0.16,505.5,3569.44,26114222,99.76,0,0,0.14,505.48,3569.46,26114223,99.61,0,0,0.55,505.81,3569.12,26114224,99.76,0,0,0.15,505.44,3569.49,26114225,99.63,0,0,0.34,505.92,3569.03,26114226,99.76,0,0,0.17,505.96,3568.98,26114227,99.76,0,0,0.14,506.09,3568.84,26114228,99.68,0,0,0.54,506.78,3568.15,26114229,99.55,0,0,0.29,506.8,3568.1,26114230,99.69,0,0,0.3,506.56,3568.36,26114231,99.81,0,0,0.18,506.53,3568.39,26114232,99.73,0,0,0.16,506.5,3568.41,26114233,94.48,0.36,0.01,197.12,520.71,3554.48,26114234,99.71,0,0,64.14,508.98,3565.69,26114235,99.61,0,0,0.37,509.02,3565.67,26114236,99.74,0.05,2.03,0.27,509.14,3565.56,26114237,99.74,0,0.02,0.35,509.11,3565.56,26114238,99.6,0,0.01,0.66,507.97,3566.71,26114239,99.78,0,0,0.22,505.15,3569.54,26114240,99.63,0,0,0.31,506.6,3568.12,26114241,99.8,0,0,0.17,506.6,3568.11,26114242,99.74,0,0,0.18,506.6,3568.11,26114243,99.53,0,0,0.41,506.12,3568.58,26114244,99.7,0,0,0.33,505.82,3568.88,26114245,99.68,0,0.01,0.38,506.02,3568.7,26114246,99.78,0,0,0.18,505.72,3569,26114247,99.79,0,0,0.17,505.71,3569,26114248,99.65,0,0,0.43,506,3568.71,26114249,99.8,0,0,0.3,505.42,3569.28,26114250,99.71,0,0,0.31,505.9,3568.82,26114251,99.8,0,0,0.16,505.9,3568.82,26114252,99.79,0,0,0.18,505.88,3568.83,26114253,99.68,0,0,0.39,506.17,3568.54,26114254,99.76,0,0,0.37,504.35,3570.35,26114255,99.72,0,0,0.32,505.11,3569.61,26114256,99.78,0,0,0.18,505.26,3569.46,26114257,99.76,0.01,0.03,0.23,505.19,3569.52,26114258,99.71,0,0,0.14,505.15,3569.56,26114259,99.39,0,0,0.72,506.6,3568.08,26114260,99.7,0,0,0.29,505.85,3568.84,26114261,99.73,0,0.01,0.19,505.89,3568.8,26114262,99.69,0,0.02,0.23,505.98,3568.71,26114263,99.81,0,0,0.17,505.94,3568.74,26114264,99.56,0.01,0.13,0.61,505.84,3568.85,26114265,99.6,0.01,0.14,0.35,504.72,3569.99,26114266,99.73,0,0,0.23,504.64,3570.06,26114267,99.72,0,0,0.17,504.61,3570.09,26114268,99.77,0,0,0.15,504.63,3570.05,26114269,99.58,0,0,0.5,505.87,3568.81,26114270,98.88,0,0,0.41,506.21,3568.49,26114271,99.74,0,0,0.15,506.18,3568.51,26114272,99.77,0,0,0.14,506.17,3568.52,26114273,99.81,0,0,0.15,506.14,3568.54,26114274,99.63,0,0,0.43,505.86,3568.82,26114275,99.66,0,0,0.43,505.13,3569.56,26114276,99.78,0,0,0.17,505.13,3569.57,26114277,99.75,0,0,0.14,505.1,3569.59,26114278,99.78,0,0,0.15,505.08,3569.6,26114279,99.67,0,0,0.49,505.71,3568.97,26114280,99.48,0,0,0.35,505.28,3569.42,26114281,99.78,0,0,0.13,505.23,3569.46,26114282,99.78,0,0,0.16,505.22,3569.47,26114283,99.74,0,0,0.15,505.19,3569.5,26114284,99.62,0.01,0.04,0.57,505.53,3569.15,26114285,99.58,0,0,0.39,505.59,3569.1,26114286,99.71,0,0,0.16,505.59,3569.11,26114287,99.77,0,0,0.14,505.59,3569.1,26114288,99.78,0,0,0.14,505.72,3568.97,26114289,99.48,0,0,0.45,505.86,3568.8,26114290,99.67,0,0,0.49,506.19,3568.49,26114291,99.75,0,0,0.14,506.18,3568.49,26114292,99.74,0,0,0.16,506.15,3568.52,26114293,99.69,0,0,0.14,506.09,3568.57,26114294,99.71,0,0,0.14,505.87,3568.79,26114295,99.55,0,0,0.68,506.91,3567.77,26114296,99.81,0,0,0.17,506.1,3568.58,26114297,99.78,0,0,0.17,506.08,3568.59,26114298,99.75,0,0,0.16,506.05,3568.61,26114299,99.78,0,0,0.14,506.08,3568.58,26114300,99.51,0,0,0.67,506.66,3568.01,26114301,99.79,0,0,0.16,506.25,3568.43,26114302,99.8,0,0,0.14,506.22,3568.45,26114303,99.84,0,0,0.15,506.21,3568.46,26114304,99.77,0,0,0.16,506.18,3568.48,26114305,99.53,0,0,0.69,506.53,3568.14,26114306,99.78,0.01,0.03,0.19,505.89,3568.78,26114307,99.82,0,0,0.22,505.83,3568.83,26114308,99.75,0,0,0.2,505.87,3568.78,26114309,99.83,0,0,0.17,505.98,3568.67,26114310,99.51,0,0,0.57,506.78,3567.89,26114311,99.78,0,0,0.3,506.21,3568.46,26114312,99.76,0,0,0.14,506.19,3568.47,26114313,99.79,0,0,0.15,506.17,3568.49,26114314,99.79,0,0,0.18,506.15,3568.5,26114315,99.36,0,0.01,0.77,506.88,3567.79,26114316,99.73,0,0,0.15,506.36,3568.3,26114317,99.79,0,0,0.21,506.33,3568.33,26114318,99.78,0,0,0.18,506.31,3568.35,26114319,99.55,0,0,0.31,506.42,3568.22,26114320,99.53,0,0,0.33,506.41,3568.24,26114321,99.68,0,0,0.59,506.55,3568.1,26114322,99.78,0,0,0.2,506.19,3568.45,26114323,99.8,0,0,0.16,506.16,3568.48,26114324,99.76,0,0,0.21,506.15,3568.48,26114325,99.66,0,0,0.33,506.38,3568.27,26114326,99.63,0,0,0.56,506.72,3567.92,26114327,99.72,0.02,0.69,0.33,506.35,3568.29,26114328,99.79,0,0,0.18,506.33,3568.31,26114329,99.8,0.01,0.22,0.28,506.39,3568.27,26114330,99.62,0,0,0.35,506.29,3568.38,26114331,99.61,0,0,0.55,506.49,3568.18,26114332,99.79,0,0,0.15,506.19,3568.48,26114333,99.77,0,0,0.18,506.17,3568.49,26114334,99.79,0,0,0.18,506.14,3568.51,26114335,99.71,0,0,0.3,506.4,3568.27,26114336,99.65,0,0,0.57,507.07,3567.6,26114337,99.76,0,0,0.14,506.35,3568.32,26114338,99.85,0,0,0.14,506.33,3568.33,26114339,99.75,0,0,0.15,506.31,3568.35,26114340,99.5,0,0,0.31,506.07,3568.6,26114341,99.65,0,0,0.43,505.93,3568.74,26114342,99.83,0,0,0.29,505.08,3569.59,26114343,99.78,0,0,0.14,505.23,3569.43,26114344,99.8,0,0,0.14,505.22,3569.44,26114345,99.67,0,0,0.35,505.45,3569.22,26114346,99.66,0,0,0.56,506.12,3568.55,26114347,99.78,0,0,0.18,506.4,3568.27,26114348,99.83,0,0,0.16,506.4,3568.27,26114349,99.5,0,0,0.34,506.4,3568.24,26114350,99.69,0,0,0.29,506.44,3568.21,26114351,99.7,0,0,0.59,506.77,3567.87,26114352,99.77,0,0,0.18,506.57,3568.07,26114353,99.8,0,0,0.18,506.55,3568.09,26114354,99.83,0,0,0.18,506.55,3568.09,26114355,99.57,0,0,0.36,505.77,3568.89,26114356,99.64,0,0,0.43,506.16,3568.49,26114357,99.79,0,0.01,0.31,506.18,3568.46,26114358,99.8,0,0,0.18,506.13,3568.51,26114359,99.8,0,0,0.14,506.11,3568.52,26114360,99.72,0,0,0.29,506.34,3568.31,26114361,99.75,0.01,0.03,0.16,506.38,3568.27,26114362,99.56,0,0,0.56,507.12,3567.53,26114363,99.8,0,0,0.15,506.56,3568.08,26114364,99.78,0.01,0.02,0.2,506.58,3568.06,26114365,99.39,0.29,1.34,1.57,508.96,3565.64,26114366,99.26,2.12,66.96,0.88,508.94,3565.65,26114367,99.23,2,64.15,1.4,509.49,3565.1,26114368,99.64,0.42,11.93,0.52,509.09,3565.49,26114369,99.85,0.04,0.08,0.26,509.09,3565.49,26114370,99.62,0.02,0.03,0.34,506.98,3567.67,26114371,99.84,0,0,0.18,506.66,3568.01,26114372,99.61,0.35,0.91,0.71,508.78,3566.07,26114373,99.85,0,0,0.73,511.47,3563.58,26114374,98.27,0.01,0,1.14,517.36,3557.64,26114375,80.03,0.06,1.91,5.85,662.65,3412.07,26114376,99.9,0,0.03,0.23,511.01,3563.75,26114377,99.73,0,0,0.55,511.65,3563.1,26114378,99.88,0,0.01,0.27,511.45,3563.3,26114379,99.69,0,0,0.32,511.95,3562.77,26114380,99.76,0,0,0.32,510.9,3563.84,26114381,99.88,0,0,0.16,510.84,3563.89,26114382,99.69,0.03,0.95,0.54,511.64,3563.07,26114383,99.88,0,0.01,0.23,510.81,3563.9,26114384,99.89,0.03,1.03,0.15,510.78,3563.93,26114385,99.74,0.01,0.2,0.41,511.07,3563.65,26114386,99.89,0,0,0.18,511.05,3563.66,26114387,99.61,0,0.01,0.55,511.63,3563.08,26114388,99.85,0,0,0.14,511.48,3563.22,26114389,99.85,0,0,0.14,511.45,3563.24,26114390,99.72,0,0,0.33,510.5,3564.21,26114391,99.89,0,0,0.14,510.43,3564.27,26114392,99.68,0.01,0.03,0.43,510.92,3563.78,26114393,99.84,0,0,0.34,510.95,3563.75,26114394,99.87,0,0,0.18,510.23,3564.46,26114395,99.7,0,0,0.46,506.9,3568.12,26114396,99.82,0,0,0.15,505.88,3569.24,26114397,99.86,0,0,0.14,505.85,3569.26,26114398,99.7,0,0,0.57,506.12,3568.99,26114399,99.86,0,0,0.14,505.75,3569.35,26114400,99.6,0,0,0.3,505.5,3569.62,26114401,99.85,0,0,0.16,505.48,3569.64,26114402,99.83,0,0,0.14,505.45,3569.66,26114403,99.75,0,0,0.55,506.01,3569.09,26114404,99.71,0,0,0.14,505.66,3569.44,26114405,99.69,0,0,0.32,505.89,3569.22,26114406,99.79,0,0,0.15,505.87,3569.24,26114407,99.83,0,0,0.18,505.89,3569.21,26114408,99.67,0,0,0.54,506.16,3568.94,26114409,99.71,0.01,0.02,0.34,505.96,3569.11,26114410,99.79,0,0,0.32,505.72,3569.37,26114411,99.86,0,0,0.16,505.67,3569.41,26114412,99.81,0,0,0.14,505.66,3569.42,26114413,99.71,0,0,0.59,506.15,3568.92,26114414,99.81,0,0,0.16,505.38,3569.7,26114415,99.57,0,0,0.33,505.61,3569.48,26114416,99.8,0,0,0.14,505.67,3569.41,26114417,99.85,0,0,0.21,505.8,3569.28,26114418,99.62,0,0,0.55,506.09,3569,26114419,99.83,0,0,0.14,505.27,3569.82,26114420,99.72,0,0,0.32,506.01,3569.1,26114421,99.8,0,0,0.14,505.99,3569.11,26114422,99.88,0,0,0.14,505.98,3569.12,26114423,99.63,0,0,0.55,506.11,3568.98,26114424,99.8,0,0,0.19,505.19,3569.9,26114425,99.69,0,0,0.39,505.32,3569.78,26114426,99.83,0,0,0.16,505.15,3569.95,26114427,99.84,0,0,0.14,505.15,3569.95,26114428,99.63,0,0,0.55,505.67,3569.43,26114429,99.81,0,0,0.17,505.54,3569.55,26114430,99.58,0,0,0.38,505.29,3569.81,26114431,99.88,0,0,0.15,505.27,3569.82,26114432,99.8,0,0,0.14,505.26,3569.83,26114433,99.72,0,0,0.37,506.01,3569.08,26114434,99.78,0,0.01,0.38,505.47,3569.62,26114435,99.49,0,0,0.32,504.72,3570.38,26114436,99.73,0,0,0.18,504.69,3570.41,26114437,99.85,0,0,0.15,504.65,3570.44,26114438,99.84,0,0,0.14,504.65,3570.44,26114439,99.32,0,0,0.71,505.43,3569.63,26114440,99.71,0,0,0.33,505.78,3569.31,26114441,99.82,0,0,0.14,505.76,3569.32,26114442,99.73,0,0,0.17,505.74,3569.33,26114443,99.79,0,0,0.16,505.71,3569.36,26114444,99.64,0,0,0.56,505.87,3569.21,26114445,99.66,0,0,0.33,503.52,3571.59,26114446,99.86,0,0,0.14,503.48,3571.64,26114447,99.84,0,0,0.17,503.44,3571.66,26114448,99.88,0,0,0.14,503.43,3571.67,26114449,99.71,0,0,0.59,504.76,3570.33,26114450,99.76,0,0,0.32,505.38,3569.73,26114451,99.85,0,0,0.16,505.53,3569.58,26114452,99.8,0,0,0.2,505.51,3569.6,26114453,99.83,0,0,0.14,505.47,3569.63,26114454,98.81,0,0,0.54,506.11,3568.99,26114455,99.76,0,0,0.32,505.76,3569.36,26114456,99.82,0,0,0.18,505.69,3569.42,26114457,99.87,0,0,0.16,505.66,3569.46,26114458,99.85,0,0,0.14,505.63,3569.49,26114459,99.72,0,0,0.55,505.94,3569.18,26114460,99.56,0,0,0.32,504.64,3570.49,26114461,99.85,0,0,0.16,504.75,3570.38,26114462,99.84,0,0,0.14,504.77,3570.36,26114463,99.81,0,0,0.17,504.76,3570.36,26114464,99.57,0,0,0.59,505.13,3569.98,26114465,99.04,0,0,0.71,506.34,3568.77,26114466,99.69,0,0,0.14,505.94,3569.17,26114467,99.79,0,0,0.18,505.91,3569.19,26114468,99.79,0,0,0.16,505.9,3569.2,26114469,99.37,0,0,0.63,506.47,3568.59,26114470,99.53,0,0,0.41,505.15,3569.94,26114471,99.87,0,0,0.14,505.12,3569.98,26114472,99.85,0,0,0.18,505.26,3569.84,26114473,99.77,0,0,0.14,505.25,3569.84,26114474,99.61,0,0,0.39,505.94,3569.18,26114475,99.7,0,0,0.49,506.21,3568.93,26114476,99.89,0,0,0.16,506.19,3568.94,26114477,99.83,0,0,0.18,505.94,3569.19,26114478,99.88,0,0,0.14,505.9,3569.23,26114479,99.85,0,0,0.15,505.89,3569.23,26114480,99.34,0,0,0.73,505.96,3569.18,26114481,99.85,0,0,0.14,505.38,3569.76,26114482,99.83,0,0,0.16,505.37,3569.76,26114483,99.78,0,0,0.15,505.51,3569.62,26114484,99.83,0,0,0.14,505.5,3569.63,26114485,99.56,0,0,0.75,506.27,3568.87,26114486,99.82,0,0,0.16,505.71,3569.42,26114487,99.85,0,0,0.16,505.69,3569.44,26114488,99.76,0,0,0.2,505.66,3569.46,26114489,99.84,0,0,0.18,505.64,3569.47,26114490,99.49,0,0,0.74,506.05,3569.09,26114491,99.88,0,0,0.14,505.87,3569.26,26114492,99.85,0,0,0.2,505.84,3569.29,26114493,99.86,0,0,0.18,505.96,3569.16,26114494,99.87,0,0,0.18,506.02,3569.1,26114495,99.55,0,0,0.73,506.3,3568.84,26114496,99.91,0,0,0.16,505.51,3569.63,26114497,99.88,0,0,0.14,505.48,3569.65,26114498,99.88,0,0,0.15,505.46,3569.66,26114499,99.65,0,0,0.29,505.67,3569.45,26114500,99.62,0,0,0.74,506.43,3568.71,26114501,99.9,0,0,0.18,506.15,3568.98,26114502,99.89,0,0,0.18,506.15,3568.98,26114503,99.87,0,0,0.14,506.11,3569.01,26114504,99.88,0,0,0.14,506.11,3569.03,26114505,99.61,0,0,0.66,506.61,3568.55,26114506,99.88,0,0,0.21,506.28,3568.87,26114507,99.85,0,0,0.14,506.25,3568.9,26114508,99.87,0,0,0.16,506.24,3568.91,26114509,99.8,0,0,0.18,506.21,3568.93,26114510,99.59,0,0,0.71,505.93,3569.23,26114511,99.9,0,0,0.14,505.93,3569.23,26114512,99.87,0,0,0.16,505.9,3569.25,26114513,99.91,0,0,0.15,505.87,3569.27,26114514,99.92,0,0,0.14,505.9,3569.24,26114515,99.57,0,0,0.56,505.71,3569.45,26114516,99.85,0,0,0.36,506.24,3568.91,26114517,99.88,0,0,0.16,506.21,3568.93,26114518,99.91,0,0,0.16,506.17,3568.96,26114519,99.9,0,0,0.14,506.16,3568.97,26114520,99.58,0,0,0.31,506.19,3568.96,26114521,99.67,0,0,0.55,506.82,3568.32,26114522,99.84,0,0,0.16,506.36,3568.78,26114523,99.73,0,0,0.15,506.38,3568.75,26114524,99.77,0,0,0.16,506.5,3568.63,26114525,99.64,0,0,0.33,506.49,3568.65,26114526,99.68,0,0,0.53,506.99,3568.15,26114527,99.8,0,0,0.16,506.7,3568.43,26114528,99.8,0,0,0.14,506.69,3568.44,26114529,99.55,0,0,0.3,504.99,3570.11,26114530,99.67,0,0,0.31,505.42,3569.7,26114531,99.7,0,0,0.56,506.26,3568.85,26114532,99.9,0,0,0.15,506.37,3568.74,26114533,99.85,0,0,0.15,506.34,3568.77,26114534,99.85,0,0,0.2,506.33,3568.77,26114535,99.63,0,0,0.34,506.14,3568.98,26114536,99.71,0,0,0.54,506.86,3568.26,26114537,99.87,0,0,0.2,506.47,3568.64,26114538,99.84,0,0,0.15,506.46,3568.65,26114539,99.88,0,0,0.15,506.43,3568.67,26114540,99.74,0,0,0.3,506.45,3568.68,26114541,99.6,0,0,0.4,506.76,3568.35,26114542,99.87,0,0,0.3,506.4,3568.71,26114543,99.89,0,0,0.14,505.7,3569.41,26114544,99.87,0.01,0.03,0.15,505.37,3569.73,26114545,99.64,0.02,0.05,0.4,505.46,3569.66,26114546,99.87,0,0,0.16,505.43,3569.69,26114547,99.67,0.01,1.03,0.63,505.56,3569.54,26114548,99.85,0.03,2.1,0.41,505.19,3569.89,26114549,99.87,0.02,1.87,0.24,505.17,3569.9,26114550,99.65,0,0.01,0.38,505.8,3569.27,26114551,99.89,0,0,0.16,505.95,3569.12,26114552,99.62,0.01,0.02,0.53,506.25,3568.81,26114553,99.89,0,0.01,0.22,505.83,3569.22,26114554,99.9,0,0,0.18,505.82,3569.24,26114555,99.76,0,0,0.36,505.82,3569.25,26114556,99.84,0,0,0.15,505.81,3569.26,26114557,99.68,0,0,0.54,506.3,3568.76,26114558,99.86,0,0,0.14,505.93,3569.13,26114559,99.76,0,0,0.31,505.93,3569.1,26114560,99.55,0,0,0.38,505.19,3569.85,26114561,99.85,0,0,0.13,505.13,3569.91,26114562,99.71,0,0,0.55,505.79,3569.24,26114563,99.78,0,0,0.17,505.58,3569.45,26114564,99.83,0,0,0.17,505.56,3569.47,26114565,99.56,0,0,0.32,505.33,3569.73,26114566,99.81,0,0,0.16,505.3,3569.75,26114567,99.64,0,0,0.39,506,3569.05,26114568,99.8,0,0,0.28,506.17,3568.87,26114569,99.84,0,0,0.14,506.19,3568.85,26114570,99.65,0,0,0.32,506.67,3568.39,26114571,99.82,0,0,0.14,506.66,3568.4,26114572,99.64,0,0.01,0.54,507.07,3567.98,26114573,99.82,0,0,0.2,506.35,3568.7,26114574,99.81,0,0.01,0.18,506.32,3568.72,26114575,99.71,0,0,0.36,506.3,3568.75,26114576,99.83,0,0.01,0.14,506.34,3568.71,26114577,99.31,0.04,0.13,0.52,510.67,3564.28,26114578,99.81,0.01,0.86,0.43,517.21,3557.58,26114579,99.83,0,0,0.16,517.14,3557.65,26114580,99.53,0,0,0.32,517.27,3557.53,26114581,99.67,0.01,0.01,0.16,517.25,3557.55,26114582,99.66,0.03,0.56,0.48,517.6,3557.19,26114583,99.82,0.01,0.6,0.4,516.69,3558.08,26114584,99.76,0.01,0.95,0.23,516.72,3558.04,26114585,99.6,0.01,0.89,0.4,517.21,3557.55,26114586,99.76,0.08,5.69,0.32,517.17,3557.56,26114587,99.83,0,0.62,0.29,517.14,3557.56,26114588,99.61,0,0,0.57,517.14,3557.55,26114589,99.49,0,0,0.34,517.09,3557.57,26114590,99.7,0,0,0.34,517.07,3557.61,26114591,99.87,0,0,0.16,517.06,3557.61,26114592,99.8,0,0,0.14,517.19,3557.48,26114593,99.7,0,0,0.54,517.86,3556.8,26114594,99.82,0,0,0.18,517.12,3557.56,26114595,99.69,0,0,0.34,517.4,3557.3,26114596,99.85,0,0,0.18,517.33,3557.36,26114597,99.83,0,0,0.22,517.3,3557.39,26114598,94.75,0.33,0.01,260.1,530.57,3544.36,26114599,99.87,0,0,0.3,519.68,3554.82,26114600,99.78,0,0,0.3,519.67,3554.85,26114601,99.87,0,0,0.2,519.64,3554.88,26114602,99.82,0,0,0.14,519.6,3554.91,26114603,99.75,0,0,0.58,518.7,3555.84,26114604,99.83,0,0,0.18,517.09,3557.47,26114605,99.59,0,0,0.38,515.87,3558.71,26114606,99.85,0,0,0.16,516.31,3558.29,26114607,99.81,0,0,0.14,516.27,3558.32,26114608,99.7,0,0,0.41,517.06,3557.53,26114609,99.83,0,0,0.29,517.2,3557.41,26114610,99.65,0,0,0.31,517.08,3557.54,26114611,99.88,0,0.01,0.16,517.09,3557.53,26114612,99.88,0,0,0.16,517.03,3557.58,26114613,99.69,0,0,0.52,517.5,3557.1,26114614,99.87,0,0,0.19,517.47,3557.14,26114615,99.74,0,0,0.31,517.22,3557.4,26114616,99.87,0,0,0.14,517.31,3557.31,26114617,99.8,0,0,0.16,517.33,3557.28,26114618,99.66,0,0,0.45,517.77,3556.83,26114619,99.76,0,0,0.49,517.25,3557.33,26114620,99.67,0,0,0.33,516.76,3557.83,26114621,99.87,0,0,0.14,516.72,3557.88,26114622,99.87,0,0,0.16,516.68,3557.91,26114623,99.89,0,0,0.15,516.82,3557.77,26114624,99.71,0,0,0.58,517.63,3556.96,26114625,99.65,0,0,0.34,517.3,3557.32,26114626,99.83,0,0,0.14,517.26,3557.35,26114627,99.78,0.04,3.24,0.27,517.26,3557.34,26114628,99.87,0,0,0.18,517.31,3557.27,26114629,99.71,0,0,0.54,517.87,3556.71,26114630,99.71,0.01,0,0.35,516.29,3558.31,26114631,99.85,0,0,0.13,516.21,3558.4,26114632,99.88,0,0,0.18,516.33,3558.27,26114633,99.84,0,0,0.14,516.33,3558.27,26114634,99.74,0,0,0.54,517.61,3556.98,26114635,99.7,0,0,0.36,517.52,3557.09,26114636,99.85,0,0,0.13,517.5,3557.11,26114637,99.78,0.01,0.01,0.16,517.46,3557.15,26114638,99.9,0,0,0.18,517.42,3557.18,26114639,99.73,0,0,0.61,517.89,3556.7,26114640,99.58,0,0,0.43,517.55,3557.05,26114641,99.81,0,0,0.16,517.52,3557.08,26114642,99.8,0,0,0.14,517.49,3557.11,26114643,99.87,0,0,0.17,517.45,3557.14,26114644,99.76,0,0,0.53,517.96,3556.63,26114645,99.74,0,0,0.38,517.49,3557.12,26114646,99.82,0,0,0.14,517.57,3557.03,26114647,99.83,0,0,0.16,517.52,3557.07,26114648,99.89,0,0,0.14,517.49,3557.1,26114649,99.63,0,0,0.57,517.94,3556.62,26114650,99.74,0,0,0.45,517.46,3557.13,26114651,99.8,0,0,0.14,517.41,3557.17,26114652,99.82,0,0,0.15,517.55,3557.03,26114653,99.74,0,0,0.14,517.53,3557.04,26114654,99.65,0,0,0.39,517.85,3556.72,26114655,99.69,0,0,0.49,517.73,3556.86,26114656,99.85,0,0,0.16,517.69,3556.89,26114657,99.8,0,0,0.19,517.17,3557.4,26114658,99.85,0,0.01,0.14,517.24,3557.33,26114659,99.71,0,0,0.31,517.7,3556.87,26114660,99.75,0,0,0.54,517.3,3557.28,26114661,99.86,0,0,0.14,517.26,3557.32,26114662,99.9,0,0,0.16,517.23,3557.35,26114663,99.88,0,0,0.14,517.2,3557.37,26114664,99.86,0,0,0.14,517.19,3557.38,26114665,99.44,0,0,0.73,518.02,3556.56,26114666,99.85,0,0,0.15,517.32,3557.26,26114667,99.85,0,0,0.14,517.28,3557.3,26114668,99.81,0,0,0.15,517.25,3557.32,26114669,99.87,0,0,0.14,517.22,3557.35,26114670,99.53,0,0,0.76,518.13,3556.45,26114671,99.87,0,0,0.17,517.7,3556.88,26114672,99.83,0,0,0.15,517.82,3556.76,26114673,99.88,0,0,0.15,517.78,3556.79,26114674,99.88,0,0,0.15,517.76,3556.81,26114675,99.61,0,0,0.71,517.97,3556.62,26114676,99.88,0,0,0.16,517.48,3557.13,26114677,99.88,0,0,0.14,517.45,3557.15,26114678,99.87,0,0,0.15,517.5,3557.09,26114679,99.71,0,0,0.27,518.03,3556.54,26114680,99.6,0,0,0.7,518.14,3556.44,26114681,99.9,0,0,0.16,517.74,3556.84,26114682,99.87,0.01,0.02,0.18,517.71,3556.87,26114683,99.88,0,0.01,0.2,517.67,3556.89,26114684,99.89,0,0,0.21,517.79,3556.78,26114685,99.46,0,0,0.78,518.5,3556.1,26114686,99.89,0,0.01,0.17,517.7,3556.89,26114687,99.85,0,0,0.17,517.67,3556.92,26114688,99.85,0,0,0.18,517.64,3556.94,26114689,99.87,0,0,0.16,517.76,3556.82,26114690,99.62,0,0,0.61,518.48,3556.11,26114691,99.89,0,0,0.35,518,3556.59,26114692,99.55,0,0,0.18,517.96,3556.62,26114693,99.7,0,0,0.17,517.5,3557.08,26114694,99.9,0,0,0.2,517.16,3557.41,26114695,98.9,0,0,0.6,517.3,3557.29,26114696,99.82,0,0,0.29,517.28,3557.31,26114697,99.85,0.01,0.01,0.2,517.27,3557.31,26114698,99.86,0.01,0.87,0.18,517.24,3557.33,26114699,99.87,0,0,0.25,517.23,3557.34,26114700,98.65,0.01,0.63,9.94,516.71,3557.93,26114701,99.69,0,0,0.62,517.61,3557.05,26114702,99.89,0.01,0.81,0.17,517.32,3557.34,26114703,99.87,0,0.01,0.22,517.31,3557.34,26114704,99.87,0,0,0.18,517.27,3557.38,26114705,99.71,0.06,1.99,0.41,517.09,3557.6,26114706,99.72,0.01,0.39,0.6,517.42,3557.26,26114707,99.86,0,0.22,0.22,517.01,3557.67,26114708,99.9,0,0,0.15,516.99,3557.68,26114709,99.81,0,0,0.29,517.12,3557.53,26114710,99.75,0,0,0.32,517.11,3557.55,26114711,99.76,0,0,0.56,517.62,3557.05,26114712,99.87,0.01,0.03,0.16,517.27,3557.39,26114713,99.92,0,0,0.23,517.3,3557.35,26114714,99.91,0,0,0.14,517.37,3557.29,26114715,99.83,0,0,0.33,517.11,3557.57,26114716,99.73,0,0,0.55,517.43,3557.24,26114717,99.91,0,0,0.21,517.04,3557.63,26114718,99.86,0,0,0.14,517,3557.66,26114719,99.89,0,0,0.14,517.05,3557.61,26114720,99.75,0,0,0.39,517.39,3557.29,26114721,99.75,0,0,0.57,517.96,3556.71,26114722,99.92,0,0,0.15,517.07,3557.6,26114723,99.88,0,0,0.15,517.03,3557.63,26114724,99.87,0,0,0.15,517,3557.66,26114725,99.72,0,0,0.41,516.9,3557.77,26114726,99.76,0,0,0.45,517.5,3557.17,26114727,99.9,0,0,0.29,516.87,3557.8,26114728,99.82,0,0,0.14,516.83,3557.83,26114729,99.85,0,0,0.16,516.8,3557.85,26114730,99.62,0,0,0.31,517.28,3557.39,26114731,99.68,0,0,0.37,517.69,3556.98,26114732,99.8,0,0,0.37,517.49,3557.17,26114733,99.88,0,0,0.16,517.62,3557.04,26114734,99.87,0,0,0.16,517.58,3557.07,26114735,99.8,0,0,0.37,517.33,3557.34,26114736,99.88,0,0,0.17,517.29,3557.37,26114737,99.68,0,0,0.57,517.62,3557.04,26114738,99.83,0,0,0.18,517.23,3557.43,26114739,99.75,0,0,0.31,517.54,3557.1,26114740,99.76,0,0,0.39,517.13,3557.53,26114741,99.82,0,0,0.19,517.08,3557.57,26114742,99.69,0,0,0.59,517.61,3557.03,26114743,99.81,0,0,0.14,517.24,3557.39,26114744,99.82,0,0,0.14,517.21,3557.42,26114745,99.68,0,0,0.32,517.26,3557.39,26114746,99.8,0,0,0.15,517.31,3557.34,26114747,99.66,0,0,0.56,517.86,3556.78,26114748,99.9,0,0,0.16,517.55,3557.09,26114749,99.83,0,0,0.18,517.52,3557.11,26114750,99.63,0,0,0.31,517.51,3557.13,26114751,99.86,0,0,0.14,517.48,3557.16,26114752,99.67,0,0,0.59,517.58,3557.06,26114753,97.59,0,0,0.15,516.53,3558.11,26114754,99.81,0,0,0.14,516.59,3558.04,26114755,99.69,0,0,0.36,517.29,3557.36,26114756,99.85,0,0,0.18,517.29,3557.35,26114757,99.67,0.01,0.01,0.57,517.73,3556.91,26114758,99.81,0,0,0.14,517.22,3557.41,26114759,99.83,0,0,0.15,517.19,3557.44,26114760,99.56,0,0,0.39,517.53,3557.12,26114761,99.69,0,0,0.14,517.6,3557.04,26114762,99.66,0,0,0.55,517.88,3556.76,26114763,99.78,0,0,0.14,517.29,3557.34,26114764,99.75,0,0,0.14,517.26,3557.37,26114765,99.7,0,0,0.29,517.01,3557.64,26114766,99.74,0,0,0.16,516.97,3557.67,26114767,99.62,0,0,0.4,517.5,3557.14,26114768,99.75,0,0,0.29,517.59,3557.04,26114769,99.39,0,0,0.34,517.83,3556.77,26114770,99.63,0,0,0.28,517.79,3556.83,26114771,99.73,0,0,0.13,517.76,3556.86,26114772,99.53,0,0,0.34,518.08,3556.53,26114773,99.61,0,0,0.38,517.94,3556.66,26114774,99.65,0,0,0.15,518.07,3556.54,26114775,99.53,0,0,0.28,517.6,3557.02,26114776,99.67,0,0,0.16,517.56,3557.05,26114777,99.73,0,0,0.26,517.78,3556.83,26114778,99.65,0,0,0.55,518.09,3556.51,26114779,99.78,0,0,0.14,517.71,3556.89,26114780,99.68,0,0,0.26,517.46,3557.16,26114781,99.79,0,0,0.14,517.58,3557.03,26114782,99.73,0,0,0.16,517.58,3557.03,26114783,99.65,0,0,0.55,518.4,3556.2,26114784,99.74,0,0,0.14,517.76,3556.84,26114785,99.3,0,0,0.37,516.63,3557.99,26114786,99.77,0,0,0.16,516.24,3558.37,26114787,99.77,0,0,0.18,516.23,3558.38,26114788,99.59,0,0,0.45,517.06,3557.54,26114789,99.78,0,0,0.29,516.81,3557.78,26114790,99.59,0,0,0.27,516.56,3558.05,26114791,99.8,0,0,0.15,516.52,3558.09,26114792,99.78,0,0,0.16,516.48,3558.12,26114793,99.7,0,0,0.54,517.23,3557.37,26114794,99.84,0,0,0.2,517.8,3556.79,26114795,99.68,0,0,0.29,517.81,3556.79,26114796,99.82,0,0,0.15,517.78,3556.82,26114797,99.81,0,0,0.14,517.75,3556.85,26114798,99.64,0,0,0.41,517.98,3556.61,26114799,99.52,0,0,0.43,517.75,3556.83,26114800,99.66,0,0,0.28,516.99,3557.6,26114801,99.78,0,0,0.18,517.07,3557.52,26114802,99.79,0,0,0.16,517.09,3557.49,26114803,99.65,0,0,0.5,517.32,3557.25,26114804,99.75,0,0,0.29,516.54,3558.05,26114805,99.67,0,0,0.29,517.26,3557.35,26114806,99.74,0,0,0.16,517.24,3557.37,26114807,99.8,0,0,0.18,517.21,3557.39,26114808,99.63,0,0,0.32,517.68,3556.94,26114809,99.71,0,0,0.41,517.12,3557.49,26114810,99.69,0,0,0.29,518.08,3556.55,26114811,99.81,0,0,0.17,518.06,3556.57,26114812,99.78,0,0,0.17,518.03,3556.59,26114813,98.58,0,0,0.17,518,3556.62,26114814,99.64,0,0,0.61,517.87,3556.74,26114815,99.68,0,0,0.31,517.63,3557,26114816,99.4,0,0,0.17,517.61,3557.02,26114817,99.75,0.01,0.01,0.17,517.56,3557.06,26114818,99.78,0,0,0.19,517.52,3557.1,26114819,99.62,0,0,0.58,517.79,3556.83,26114820,99.41,0,0,0.3,515.91,3558.72,26114821,99.75,0,0,0.14,515.89,3558.74,26114822,99.71,0,0,0.18,515.86,3558.76,26114823,99.78,0,0,0.16,515.83,3558.79,26114824,99.63,0,0,0.62,516.38,3558.23,26114825,99.63,0,0,0.34,517.48,3557.15,26114826,99.78,0,0,0.17,517.53,3557.1,26114827,99.79,0,0,0.17,517.62,3557,26114828,99.8,0,0,0.15,517.59,3557.03,26114829,99.45,0,0,0.7,518.15,3556.45,26114830,99.69,0,0,0.27,517.79,3556.83,26114831,99.82,0,0,0.16,517.75,3556.87,26114832,99.8,0,0,0.14,517.71,3556.9,26114833,99.79,0,0,0.15,517.77,3556.83,26114834,99.67,0,0,0.5,518.2,3556.4,26114835,99.66,0,0,0.33,518.08,3556.54,26114836,99.79,0,0,0.16,518.05,3556.57,26114837,99.79,0,0,0.18,518.01,3556.6,26114838,99.8,0,0,0.15,517.98,3556.63,26114839,99.66,0,0,0.55,518.6,3556,26114840,99.59,0,0,0.27,517.54,3557.08,26114841,99.73,0,0,0.14,517.1,3557.51,26114842,99.8,0,0,0.16,516.58,3558.03,26114843,99.78,0,0,0.14,516.55,3558.05,26114844,99.79,0,0,0.16,516.52,3558.08,26114845,99.43,0,0,0.73,517.12,3557.49,26114846,99.79,0,0,0.16,516.72,3557.89,26114847,99.83,0,0,0.14,516.77,3557.84,26114848,99.78,0,0,0.15,516.84,3557.75,26114849,99.81,0,0,0.15,516.81,3557.79,26114850,99.37,0,0,0.65,517.39,3557.23,26114851,99.83,0,0,0.16,517.01,3557.59,26114852,99.75,0,0,0.13,516.98,3557.62,26114853,99.78,0,0,0.16,516.95,3557.65,26114854,99.78,0,0,0.14,517.06,3557.54,26114855,99.58,0,0,0.69,517.49,3557.13,26114856,99.83,0,0,0.14,517.1,3557.51,26114857,99.82,0,0,0.16,517.06,3557.54,26114858,99.81,0,0,0.14,517.02,3557.57,26114859,99.68,0,0,0.29,517.01,3557.57,26114860,99.53,0,0,0.68,517.81,3556.79,26114861,99.78,0,0,0.14,517.3,3557.29,26114862,99.75,0,0,0.16,517.37,3557.22,26114863,99.82,0,0,0.14,517.33,3557.25,26114864,99.78,0,0,0.18,517.3,3557.29,26114865,99.46,0,0,0.7,517.76,3556.85,26114866,99.8,0,0,0.18,517.25,3557.35,26114867,99.74,0,0,0.14,517.23,3557.37,26114868,99.81,0,0,0.15,517.37,3557.22,26114869,99.83,0,0,0.15,517.34,3557.25,26114870,99.47,0,0,0.69,516.78,3557.83,26114871,99.8,0,0,0.18,517.05,3557.55,26114872,99.8,0,0,0.14,517.01,3557.59,26114873,99.81,0,0,0.16,516.97,3557.62,26114874,99.79,0,0,0.14,517.03,3557.56,26114875,99.52,0,0,0.55,517.97,3556.63,26114876,99.83,0,0,0.3,517.33,3557.27,26114877,99.74,0.01,0.01,0.17,517.29,3557.3,26114878,99.83,0,0,0.15,517.25,3557.33,26114879,99.74,0,0,0.17,517.22,3557.36,26114880,99.24,0,0,0.66,516.96,3557.64,26114881,99.69,0,0,0.19,517.31,3557.29,26114882,99.73,0,0,0.16,517.34,3557.25,26114883,99.8,0,0,0.14,517.31,3557.28,26114884,99.78,0,0,0.14,517.28,3557.3,26114885,99.66,0,0,0.29,517.27,3557.33,26114886,99.65,0,0,0.6,517.71,3556.88,26114887,99.77,0,0,0.14,517.2,3557.39,26114888,99.77,0,0,0.15,517.31,3557.28,26114889,99.68,0,0,0.27,517.32,3557.24,26114890,99.66,0,0,0.29,517.55,3557.03,26114891,99.66,0,0,0.66,517.87,3556.7,26114892,99.79,0,0,0.15,517.48,3557.09,26114893,99.75,0,0,0.17,517.44,3557.12,26114894,99.69,0,0,0.16,517.46,3557.1,26114895,99.69,0,0,0.29,517.58,3557,26114896,99.66,0,0,0.57,517.88,3556.69,26114897,99.8,0,0,0.18,517.26,3557.31,26114898,99.71,0,0,0.15,517.21,3557.35,26114899,99.83,0,0,0.14,517.18,3557.38,26114900,99.69,0,0,0.26,517.2,3557.39,26114901,99.62,0,0,0.56,517.88,3556.7,26114902,99.78,0,0,0.15,517.57,3557.01,26114903,99.82,0,0,0.14,517.54,3557.04,26114904,99.83,0,0,0.15,517.51,3557.06,26114905,99.69,0,0,0.34,517.2,3557.39,26114906,99.68,0,0,0.55,517.78,3556.81,26114907,99.83,0,0,0.15,517.22,3557.37,26114908,99.82,0,0,0.14,517.34,3557.24,26114909,99.84,0,0,0.15,517.31,3557.27,26114910,99.63,0,0,0.27,517.54,3557.05,26114911,99.67,0,0,0.51,517.98,3556.61,26114912,99.77,0,0,0.23,517.23,3557.35,26114913,99.77,0,0,0.14,517.2,3557.37,26114914,99.78,0,0,0.16,517.25,3557.32,26114915,99.61,0,0,0.28,517.58,3557.01,26114916,99.57,0,0,0.32,517.92,3556.66,26114917,99.7,0,0,0.44,517.76,3556.82,26114918,99.8,0,0,0.18,517.73,3556.85,26114919,99.76,0,0,0.38,517.45,3557.09,26114920,99.67,0,0,0.36,517.22,3557.33,26114921,99.69,0,0,0.41,517.73,3556.82,26114922,99.78,0,0,0.27,517.79,3556.76,26114923,99.87,0,0,0.16,517.75,3556.79,26114924,99.82,0,0,0.14,517.72,3556.81,26114925,99.63,0,0,0.3,516.75,3557.8,26114926,99.91,0,0,0.16,516.68,3557.87,26114927,99.67,0,0,0.55,517.34,3557.2,26114928,99.85,0,0,0.15,516.81,3557.73,26114929,99.9,0,0,0.17,516.77,3557.76,26114930,99.74,0,0,0.28,517.74,3556.81,26114931,99.88,0,0,0.16,517.73,3556.82,26114932,99.73,0,0,0.55,517.16,3557.39,26114933,99.88,0,0,0.14,516.19,3558.35,26114934,99.88,0,0,0.15,516.25,3558.29,26114935,99.74,0,0,0.27,516.83,3557.73,26114936,99.37,0,0,0.14,516.8,3557.75,26114937,99.7,0.01,0.01,0.59,516.45,3558.1,26114938,99.86,0,0,0.16,515.5,3559.06,26114939,99.87,0,0,0.18,515.47,3559.09,26114940,99.36,0.01,0.02,0.34,516.69,3557.89,26114941,99.83,0,0,0.14,516.81,3557.76,26114942,99.61,0,0,0.61,517.55,3557.02,26114943,99.9,0,0,0.16,517.48,3557.08,26114944,99.85,0,0,0.15,517.45,3557.11,26114945,99.7,0,0,0.35,516.96,3557.62,26114946,99.83,0,0,0.18,516.95,3557.62,26114947,99.65,0,0,0.42,517.56,3557.01,26114948,99.9,0,0,0.29,517.32,3557.24,26114949,99.8,0,0,0.29,518.02,3556.51,26114950,99.7,0,0,0.29,517.08,3557.47,26114951,99.9,0,0,0.15,516.98,3557.57,26114952,99.7,0,0,0.55,517.72,3556.82,26114953,99.91,0,0,0.14,517.01,3557.53,26114954,99.86,0,0,0.17,517.06,3557.47,26114955,99.71,0,0,0.27,516.58,3557.97,26114956,99.83,0,0,0.18,516.52,3558.02,26114957,99.7,0,0,0.4,517.15,3557.39,26114958,99.9,0,0,0.36,517.69,3556.84,26114959,99.85,0,0,0.16,517.66,3556.87,26114960,99.78,0,0,0.29,517.81,3556.74,26114961,99.83,0,0,0.19,517.81,3556.74,26114962,99.88,0,0,0.14,517.78,3556.76,26114963,94.8,0.33,0.01,260,531.36,3542.85,26114964,99.84,0,0.02,0.23,520.18,3554.34,26114965,99.68,0,0,0.31,519.91,3554.62,26114966,99.85,0,0,0.21,519.81,3554.71,26114967,99.9,0,0,0.15,519.77,3554.75,26114968,99.64,0,0.01,0.61,518.1,3556.46,26114969,99.83,0,0,0.14,517.04,3557.53,26114970,99.73,0,0,0.29,517.03,3557.56,26114971,99.87,0,0,0.14,517.08,3557.5,26114972,99.88,0,0,0.17,517.15,3557.42,26114973,99.73,0,0,0.55,517.83,3556.74,26114974,99.88,0,0,0.15,517.58,3556.99,26114975,99.77,0,0,0.3,518.06,3556.53,26114976,99.86,0,0,0.16,518.03,3556.55,26114977,99.89,0,0,0.13,518,3556.58,26114978,99.77,0,0,0.54,518.28,3556.29,26114979,99.75,0,0,0.42,517.42,3557.13,26114980,99.7,0,0,0.32,517.16,3557.4,26114981,99.85,0,0,0.18,517.12,3557.44,26114982,99.85,0,0,0.18,517.09,3557.47,26114983,99.78,0,0,0.56,517.41,3557.14,26114984,99.85,0,0,0.17,517.03,3557.52,26114985,99.78,0,0,0.32,517.14,3557.42,26114986,99.88,0,0,0.38,517.17,3557.39,26114987,99.88,0,0,0.12,517.13,3557.42,26114988,99.69,0,0,0.58,517.92,3556.62,26114989,99.86,0,0,0.14,518.05,3556.49,26114990,99.71,0,0,0.28,517.09,3557.47,26114991,99.89,0,0,0.19,517.02,3557.53,26114992,99.87,0,0,0.14,516.81,3557.74,26114993,99.75,0,0,0.32,516.78,3557.77,26114994,99.86,0,0,0.37,516.87,3557.67,26114995,99.66,0,0,0.32,515.9,3558.65,26114996,99.9,0,0,0.17,515.84,3558.71,26114997,99.88,0.01,0.01,0.14,515.8,3558.75,26114998,99.67,0,0,0.39,516.22,3558.32,26114999,99.87,0,0,0.3,516.65,3557.89,26115000,99.67,0,0,0.28,517.13,3557.43,26115001,99.87,0,0,0.16,517.1,3557.45,26115002,99.87,0,0,0.14,517.07,3557.48,26115003,99.88,0,0,0.14,517.04,3557.51,26115004,99.74,0,0,0.55,516.33,3558.21,26115005,99.81,0,0,0.34,516.59,3557.97,26115006,99.8,0,0,0.12,516.66,3557.89,26115007,99.81,0,0,0.16,516.63,3557.92,26115008,99.86,0,0,0.14,516.6,3557.95,26115009,99.66,0,0,0.66,517.63,3556.89,26115010,99.72,0,0,0.3,517.3,3557.24,26115011,99.88,0,0,0.13,517.26,3557.28,26115012,99.89,0,0,0.16,517.36,3557.17,26115013,99.85,0,0,0.14,517.38,3557.14,26115014,99.67,0,0,0.55,517.83,3556.69,26115015,99.71,0,0,0.28,517.12,3557.42,26115016,99.79,0,0,0.16,517.08,3557.46,26115017,99.73,0,0,0.19,516.8,3557.73,26115018,99.66,0,0,0.15,516.76,3557.77,26115019,99.5,0,0,0.44,517.36,3557.17,26115020,99.56,0,0,0.42,517.15,3557.38,26115021,99.85,0,0,0.14,517.12,3557.42,26115022,99.78,0,0,0.16,517.08,3557.45,26115023,99.84,0,0,0.14,517.05,3557.47,26115024,99.66,0,0,0.59,517.56,3556.96,26115025,99.59,0,0,0.31,516.35,3558.19,26115026,99.88,0,0,0.17,516.1,3558.43,26115027,99.77,0,0,0.18,516.18,3558.35,26115028,99.78,0,0,0.17,516.15,3558.38,26115029,99.7,0.01,0.01,0.33,516.46,3558.06,26115030,99.74,0,0,0.5,517.43,3557.11,26115031,99.92,0,0,0.17,517.4,3557.14,26115032,99.86,0,0,0.14,517.37,3557.16,26115033,99.88,0,0,0.16,517.34,3557.19,26115034,99.7,0,0,0.3,517.64,3556.88,26115035,99.77,0,0,0.5,517.29,3557.25,26115036,99.88,0,0,0.16,517.34,3557.2,26115037,99.87,0,0,0.14,517.41,3557.12,26115038,99.86,0,0,0.15,517.39,3557.14,26115039,99.67,0,0,0.31,517.36,3557.14,26115040,99.67,0,0,0.71,517.91,3556.61,26115041,99.87,0,0,0.18,517.56,3556.96,26115042,99.84,0,0,0.13,517.53,3556.98,26115043,99.8,0,0,0.16,517.58,3556.93,26115044,99.85,0,0,0.18,517.66,3556.84,26115045,99.66,0,0,0.66,517.75,3556.77,26115046,99.9,0,0,0.14,516.87,3557.63,26115047,99.73,0,0,0.16,516.84,3557.66,26115048,99.82,0,0,0.14,516.8,3557.69,26115049,99.89,0,0,0.15,516.77,3557.73,26115050,99.63,0,0,0.67,517.19,3557.32,26115051,99.88,0,0,0.21,516.18,3558.33,26115052,99.86,0,0,0.14,516.14,3558.36,26115053,99.84,0,0,0.15,516.12,3558.38,26115054,99.83,0,0,0.14,516.08,3558.41,26115055,99.63,0,0,0.59,517.48,3557.03,26115056,99.88,0,0,0.28,517.26,3557.24,26115057,99.85,0.01,0.01,0.14,517.38,3557.12,26115058,98.47,0,0,0.15,517.38,3557.12,26115059,99.89,0,0,0.17,517.34,3557.16,26115060,99.37,0,0,0.55,518.09,3556.43,26115061,99.83,0,0,0.27,517.54,3556.97,26115062,99.88,0,0,0.16,517.51,3557,26115063,99.88,0,0,0.14,517.36,3557.14,26115064,99.83,0,0,0.16,517.38,3557.11,26115065,99.59,0,0,0.73,518.37,3556.14,26115066,99.88,0,0,0.18,517.58,3556.93,26115067,99.83,0,0,0.15,517.54,3556.96,26115068,99.83,0,0,0.17,517.52,3556.99,26115069,99.57,0,0,0.27,517.51,3556.98,26115070,99.68,0,0,0.28,517.39,3557.12,26115071,99.72,0,0,0.57,517.83,3556.68,26115072,99.86,0,0,0.15,517.37,3557.13,26115073,99.86,0,0,0.14,517.34,3557.16,26115074,99.83,0,0,0.16,517.31,3557.2,26115075,99.69,0,0,0.31,516.58,3557.95,26115076,99.71,0,0,0.52,517.88,3556.64,26115077,99.85,0,0,0.2,517.66,3556.86,26115078,99.85,0,0,0.14,517.63,3556.88,26115079,99.84,0,0,0.15,517.6,3556.91,26115080,99.73,0,0,0.33,517.59,3556.93,26115081,99.73,0,0,0.56,517.92,3556.6,26115082,99.92,0,0,0.16,517.53,3556.99,26115083,99.9,0,0,0.14,517.55,3556.96,26115084,99.85,0,0,0.15,517.64,3556.86,26115085,98.8,0,0,15.12,518.54,3556.51,26115086,99.78,0,0,0.58,517.63,3556.96,26115087,99.92,0,0,0.14,517.39,3557.2,26115088,99.91,0,0,0.14,517.36,3557.22,26115089,99.86,0,0,0.15,517.33,3557.24,26115090,99.74,0,0,0.32,517.89,3556.7,26115091,99.75,0,0,0.48,518.32,3556.27,26115092,99.86,0,0,0.21,517.93,3556.66,26115093,99.87,0,0,0.14,517.89,3556.69,26115094,99.87,0,0,0.15,517.86,3556.71,26115095,99.83,0,0,0.3,517.61,3556.99,26115096,99.68,0,0,0.39,518.06,3556.53,26115097,99.87,0,0,0.3,517.96,3556.62,26115098,99.88,0,0,0.15,517.93,3556.65,26115099,99.76,0,0,0.35,517.49,3557.07,26115100,99.73,0,0,0.24,517.15,3557.42,26115101,93.45,0.35,0.01,33.42,531.67,3536.25,26115102,99.83,0,0,32.29,520.63,3553.13,26115103,99.85,0,0,0.15,520.6,3553.16,26115104,99.87,0,0,0.16,520.7,3553.06,26115105,99.79,0,0,0.36,520.98,3552.79,26115106,99.69,0,0,0.52,520.17,3553.65,26115107,99.81,0,0,0.2,518.01,3555.91,26115108,99.84,0,0,0.16,517.96,3555.96,26115109,99.86,0,0,0.15,517.93,3555.98,26115110,99.66,0,0.01,0.29,517.05,3556.88,26115111,99.7,0,0,0.36,517.53,3556.4,26115112,99.83,0,0,0.37,518.01,3555.92,26115113,99.89,0,0,0.15,517.98,3555.94,26115114,99.87,0,0,0.15,517.95,3555.98,26115115,99.78,0,0,0.29,518.18,3555.77,26115116,99.8,0,0,0.16,518.31,3555.64,26115117,99.73,0.01,0.01,0.59,517.98,3555.96,26115118,99.85,0,0,0.15,517.29,3556.66,26115119,99.86,0,0,0.13,517.25,3556.69,26115120,99.53,0,0,0.32,517.24,3556.71,26115121,99.88,0,0,0.16,517.2,3556.74,26115122,99.55,0,0,0.55,517.58,3556.36,26115123,99.79,0,0,0.16,517.33,3556.61,26115124,99.83,0,0,0.14,517.29,3556.64,26115125,99.69,0,0,0.3,517.28,3556.66,26115126,99.88,0,0,0.16,517.25,3556.7,26115127,99.74,0,0,0.57,518.13,3555.81,26115128,99.88,0,0,0.15,517.92,3556.02,26115129,99.76,0,0,0.27,518.24,3555.69,26115130,99.65,0,0,0.28,517.36,3556.59,26115131,99.8,0,0,0.16,517.3,3556.64,26115132,99.65,0,0,0.55,518.71,3555.23,26115133,99.76,0,0,0.15,518.47,3555.47,26115134,99.75,0,0,0.16,518.44,3555.49,26115135,99.53,0,0,0.29,517.25,3556.7,26115136,99.85,0,0,0.15,517.27,3556.67,26115137,99.53,0,0,0.45,518.46,3555.48,26115138,99.72,0,0,0.27,518.31,3555.63,26115139,99.73,0,0,0.17,518.27,3555.66,26115140,99.54,0,0,0.28,517.55,3556.4,26115141,99.88,0,0,0.17,517.5,3556.45,26115142,99.59,0,0,0.39,518.07,3555.87,26115143,99.84,0,0.01,0.29,517.72,3556.22,26115144,99.81,0,0,0.16,517.56,3556.37,26115145,99.76,0,0,0.29,517.29,3556.66,26115146,99.84,0,0,0.17,517.04,3556.91,26115147,99.75,0,0,0.55,517.43,3556.5,26115148,99.86,0,0,0.15,517.22,3556.72,26115149,99.89,0,0,0.15,517.24,3556.69,26115150,99.76,0,0,0.33,517.61,3556.34,26115151,99.85,0,0,0.16,517.57,3556.38,26115152,99.68,0,0,0.3,518.19,3555.76,26115153,99.9,0,0,0.37,517.51,3556.43,26115154,99.89,0,0,0.16,517.47,3556.46,26115155,99.64,0,0,0.29,516.73,3557.22,26115156,99.87,0,0,0.14,516.84,3557.11,26115157,99.88,0,0,0.16,516.84,3557.1,26115158,99.67,0,0,0.59,517.62,3556.32,26115159,99.7,0,0,0.29,517.78,3556.15,26115160,99.82,0,0,0.35,517.75,3556.19,26115161,99.9,0,0,0.18,517.72,3556.22,26115162,99.85,0,0,0.18,517.69,3556.25,26115163,99.74,0,0,0.64,517.04,3556.89,26115164,99.84,0,0,0.17,516.58,3557.35,26115165,99.71,0,0,0.29,517.35,3556.59,26115166,99.82,0,0,0.17,517.27,3556.67,26115167,99.81,0,0,0.14,517.24,3556.7,26115168,99.72,0,0,0.61,518.1,3555.83,26115169,99.8,0,0,0.15,517.44,3556.48,26115170,99.62,0,0,0.29,517.36,3556.58,26115171,99.88,0,0,0.16,517.32,3556.62,26115172,99.87,0,0,0.15,517.29,3556.64,26115173,99.74,0,0,0.54,517.49,3556.44,26115174,99.9,0,0,0.14,516.98,3556.94,26115175,99.68,0,0,0.28,517.46,3556.49,26115176,99.81,0,0,0.14,517.44,3556.5,26115177,99.85,0.01,0.01,0.17,517.52,3556.42,26115178,99.75,0,0,0.54,517.91,3556.03,26115179,99.85,0,0,0.15,517.52,3556.42,26115180,99.68,0,0,0.27,517.5,3556.44,26115181,99.82,0,0,0.16,517.47,3556.47,26115182,99.88,0,0,0.14,517.43,3556.5,26115183,99.69,0,0,0.6,517.84,3556.09,26115184,99.83,0,0,0.14,516.36,3557.57,26115185,99.72,0,0,0.3,517.32,3556.62,26115186,99.84,0,0,0.15,517.3,3556.64,26115187,99.83,0,0,0.17,517.27,3556.67,26115188,94.74,1.61,0.02,66.05,523.24,3550.81,26115189,99.58,0,0,195.41,519.97,3552.23,26115190,99.7,0,0,0.37,520.01,3552.21,26115191,99.83,0,0,0.19,520.15,3552.07,26115192,99.85,0,0,0.16,520.12,3552.09,26115193,99.7,0,0,0.55,520.26,3551.95,26115194,99.85,0,0,0.18,517.17,3555.08,26115195,99.7,0,0,0.32,517.63,3554.63,26115196,99.86,0,0,0.16,517.61,3554.65,26115197,99.83,0,0,0.19,517.61,3554.64,26115198,99.66,0,0,0.4,518.09,3554.16,26115199,99.88,0,0,0.4,517.94,3554.33,26115200,99.64,0,0,0.31,517.7,3554.6,26115201,99.84,0,0,0.17,517.66,3554.63,26115202,99.87,0,0,0.18,517.63,3554.66,26115203,99.88,0,0,0.16,517.59,3554.69,26115204,99.71,0,0,0.64,518.11,3554.17,26115205,99.69,0,0,0.32,517.98,3554.31,26115206,99.83,0,0,0.21,517.71,3554.59,26115207,99.9,0,0,0.17,517.68,3554.61,26115208,99.88,0,0,0.17,517.65,3554.64,26115209,99.69,0,0,0.57,517.97,3554.32,26115210,99.77,0,0,0.34,517.6,3554.71,26115211,99.87,0,0,0.16,517.66,3554.65,26115212,99.86,0,0,0.17,517.73,3554.58,26115213,99.84,0,0,0.21,517.69,3554.61,26115214,99.67,0,0.02,0.59,518.17,3554.13,26115215,99.63,0,0,0.36,517.87,3554.45,26115216,99.85,0,0,0.14,517.83,3554.48,26115217,99.81,0,0,0.17,517.96,3554.35,26115218,99.85,0,0,0.19,517.96,3554.34,26115219,99.55,0,0,0.7,517.47,3554.81,26115220,99.73,0,0,0.32,517.89,3554.4,26115221,99.83,0,0,0.15,517.89,3554.4,26115222,99.8,0,0,0.17,517.86,3554.43,26115223,99.8,0,0,0.19,517.82,3554.46,26115224,99.69,0,0,0.5,518.21,3554.08,26115225,99.76,0,0,0.34,517.97,3554.34,26115226,99.89,0,0,0.15,517.93,3554.38,26115227,99.86,0,0,0.14,517.89,3554.41,26115228,99.82,0,0,0.18,517.86,3554.44,26115229,99.72,0,0,0.47,518.18,3554.11,26115230,99.72,0,0,0.31,517.09,3555.21,26115231,99.83,0,0,0.16,517.14,3555.16,26115232,99.86,0,0,0.14,517.21,3555.09,26115233,99.83,0,0,0.16,517.16,3555.13,26115234,99.61,0,0,0.54,517.8,3554.49,26115235,99.7,0,0,0.27,517.92,3554.38,26115236,99.83,0,0,0.16,518.11,3554.17,26115237,99.75,0.01,0.01,0.14,518.11,3554.17,26115238,99.86,0,0,0.17,518.25,3554.03,26115239,99.63,0,0,0.16,518.22,3554.06,26115240,99.41,0,0,0.66,518.66,3553.64,26115241,99.75,0,0,0.16,518.18,3554.11,26115242,99.87,0,0,0.14,518.15,3554.14,26115243,99.85,0,0,0.15,518.11,3554.18,26115244,99.79,0,0,0.15,518.17,3554.11,26115245,99.19,0,0,0.66,518.02,3554.27,26115246,99.86,0,0,0.15,517.23,3555.06,26115247,99.85,0,0,0.16,517.2,3555.08,26115248,99.8,0,0,0.14,517.17,3555.11,26115249,99.71,0.02,0.81,0.38,517.59,3554.67,26115250,99.55,0,0,0.68,517.8,3554.47,26115251,99.81,0,0,0.13,517.23,3555.03,26115252,99.86,0,0,0.16,517.2,3555.06,26115253,99.73,0,0.01,0.14,517.17,3555.09,26115254,99.75,0,0,0.18,517.11,3555.14,26115255,99.53,0,0,0.68,517.79,3554.49,26115256,99.82,0,0,0.16,517.4,3554.87,26115257,99.76,0,0,0.18,517.48,3554.79,26115258,99.83,0,0,0.16,517.45,3554.81,26115259,99.84,0,0,0.14,517.42,3554.83,26115260,99.51,0,0,0.67,518.41,3553.87,26115261,99.83,0,0,0.17,518.11,3554.16,26115262,99.88,0,0,0.14,518.08,3554.19,26115263,99.82,0,0,0.14,518.15,3554.11,26115264,99.83,0,0,0.15,518.23,3554.03,26115265,99.52,0,0,0.54,517.95,3554.32,26115266,99.88,0,0,0.29,517.43,3554.84,26115267,99.87,0,0,0.16,517.41,3554.85,26115268,99.85,0,0,0.14,517.4,3554.86,26115269,99.85,0,0,0.15,517.38,3554.87,26115270,99.48,0,0,0.63,518.69,3553.57,26115271,99.85,0,0,0.21,518.51,3553.75,26115272,99.8,0,0,0.14,518.47,3553.78,26115273,99.85,0,0,0.15,518.44,3553.81,26115274,99.81,0,0,0.14,518.41,3553.84,26115275,99.58,0,0,0.54,517.91,3554.36,26115276,99.87,0,0,0.3,518.36,3553.9,26115277,99.91,0,0,0.14,518.49,3553.77,26115278,99.85,0,0,0.14,518.48,3553.77,26115279,99.7,0,0,0.39,518.45,3553.78,26115280,99.42,0,0,0.54,518.25,3554.02,26115281,99.86,0,0,0.27,517.93,3554.34,26115282,99.78,0,0,0.16,517.89,3554.37,26115283,99.82,0,0,0.17,517.9,3554.35,26115284,99.79,0,0,0.2,518.01,3554.26,26115285,99.69,0,0,0.34,517.99,3554.29,26115286,99.71,0,0,0.55,518.77,3553.5,26115287,99.83,0,0,0.14,518.42,3553.85,26115288,99.85,0,0,0.14,518.39,3553.88,26115289,99.84,0,0,0.15,518.35,3553.91,26115290,99.79,0,0,0.27,518.4,3553.88,26115291,99.65,0,0,0.55,518.63,3553.64,26115292,99.79,0,0,0.16,518.22,3554.05,26115293,99.85,0,0,0.15,518.07,3554.2,26115294,99.86,0,0,0.14,517.42,3554.84,26115295,99.57,0,0,0.31,517.42,3554.86,26115296,99.63,0,0,0.55,517.92,3554.35,26115297,99.79,0.01,0.01,0.14,517.68,3554.59,26115298,99.77,0,0,0.15,517.65,3554.61,26115299,98.96,0,0,0.14,517.45,3554.8,26115300,99.55,0,0,0.31,517.5,3554.78,26115301,99.5,0,0,0.56,517.66,3554.61,26115302,99.71,0,0,0.18,517.13,3555.13,26115303,99.78,0,0,0.15,517.1,3555.16,26115304,99.85,0,0,0.15,517.21,3555.05,26115305,99.74,0,0,0.29,517.48,3554.79,26115306,99.65,0,0,0.55,517.94,3554.33,26115307,99.81,0,0,0.13,517.67,3554.59,26115308,99.86,0,0,0.16,517.64,3554.62,26115309,99.66,0,0,0.27,517.61,3554.63,26115310,99.67,0,0,0.29,517.36,3554.89,26115311,99.67,0,0,0.48,517.93,3554.31,26115312,99.83,0,0,0.22,517.76,3554.48,26115313,99.84,0,0,0.14,517.72,3554.51,26115314,99.83,0,0,0.15,517.68,3554.55,26115315,99.64,0,0,0.32,517.68,3554.57,26115316,99.7,0,0,0.44,518.13,3554.12,26115317,99.79,0,0,0.32,517.66,3554.58,26115318,99.79,0,0,0.14,517.76,3554.48,26115319,99.78,0,0,0.14,517.72,3554.51,26115320,99.62,0,0,0.29,517.47,3554.77,26115321,99.59,0,0.01,0.43,517.79,3554.45,26115322,99.79,0,0,0.3,517.61,3554.63,26115323,99.79,0,0,0.14,517.71,3554.52,26115324,99.81,0,0,0.14,517.73,3554.5,26115325,99.69,0,0,0.28,517.73,3554.52,26115326,98.25,0.04,0.01,64.27,521.75,3550.73,26115327,97.46,0,0,78.32,526.3,3546.55,26115328,99.75,0,0,0.19,519.27,3553.05,26115329,99.76,0,0,0.14,519.23,3553.07,26115330,99.55,0,0,0.29,518.74,3553.58,26115331,99.8,0,0,0.16,518.7,3553.62,26115332,99.64,0,0,0.59,518.13,3554.23,26115333,99.83,0,0,0.15,517.66,3554.71,26115334,99.83,0,0,0.14,517.62,3554.74,26115335,99.64,0,0,0.3,516.9,3555.48,26115336,99.73,0,0,0.14,516.66,3555.73,26115337,99.68,0,0,0.59,506.63,3566.01,26115338,99.83,0,0,0.14,505.95,3566.69,26115339,99.62,0,0,0.31,506.62,3565.99,26115340,99.67,0,0,0.3,506.79,3565.83,26115341,99.77,0,0,0.14,506.8,3565.82,26115342,99.6,0,0,0.55,507.12,3565.5,26115343,99.78,0,0,0.14,506.76,3565.85,26115344,99.76,0.01,0.33,0.17,506.73,3565.87,26115345,99.59,0,0,0.34,505.57,3567.05,26115346,99.75,0,0,0.16,505.5,3567.12,26115347,99.56,0,0,0.54,506.88,3565.73,26115348,99.8,0,0,0.16,506.93,3565.68,26115349,99.78,0,0,0.14,506.91,3565.69,26115350,99.7,0,0,0.29,506.82,3565.81,26115351,99.79,0,0,0.17,506.83,3565.81,26115352,99.58,0,0,0.39,507.16,3565.47,26115353,99.79,0,0,0.29,506.8,3565.82,26115354,99.75,0.01,0.87,0.2,506.69,3565.93,26115355,99.61,0.01,0.78,0.36,506.55,3566.08,26115356,99.75,0,0,0.15,506.51,3566.11,26115357,99.65,0,0,0.56,507.04,3565.58,26115358,99.37,0,0,0.14,506.97,3565.65,26115359,99.75,0,0,0.14,506.93,3565.68,26115360,99.48,0,0,0.29,506.47,3566.16,26115361,99.74,0,0,0.14,506.42,3566.2,26115362,99.63,0,0,0.57,507.04,3565.57,26115363,99.77,0,0,0.14,506.5,3566.11,26115364,99.78,0,0,0.14,506.54,3566.07,26115365,99.51,0,0,0.33,505.86,3566.76,26115366,99.77,0,0,0.16,505.77,3566.85,26115367,99.68,0,0,0.32,506.11,3566.5,26115368,99.78,0,0,0.38,506.23,3566.38,26115369,99.47,0,0,0.3,506.93,3565.66,26115370,99.64,0,0,0.28,505.99,3566.62,26115371,99.82,0,0,0.18,505.94,3566.66,26115372,99.69,0,0,0.3,506.26,3566.33,26115373,99.77,0,0,0.38,505.9,3566.68,26115374,99.77,0,0,0.15,505.89,3566.69,26115375,99.71,0,0,0.29,507.02,3565.58,26115376,99.8,0,0,0.14,507.03,3565.57,26115377,99.71,0,0,0.2,507.02,3565.57,26115378,99.63,0.05,2.55,0.65,507.57,3565,26115379,99.77,0,0,0.16,507.27,3565.29,26115380,99.72,0,0,0.3,507.02,3565.56,26115381,99.8,0,0.01,0.16,506.99,3565.59,26115382,99.78,0,0.02,0.18,506.94,3565.62,26115383,99.65,0,0,0.54,507.48,3565.09,26115384,99.83,0,0,0.14,506.89,3565.67,26115385,99.66,0,0,0.3,506.4,3566.18,26115386,99.75,0,0,0.2,506.22,3566.35,26115387,99.8,0,0,0.14,506.29,3566.28,26115388,99.68,0,0,0.49,506.98,3565.58,26115389,99.82,0,0,0.2,506.99,3565.57,26115390,99.73,0,0,0.31,506.99,3565.59,26115391,99.79,0,0,0.14,506.96,3565.61,26115392,99.74,0,0,0.2,506.93,3565.63,26115393,99.66,0,0,0.57,507.26,3565.3,26115394,99.83,0,0,0.14,506.89,3565.66,26115395,99.74,0,0,0.32,507.12,3565.44,26115396,99.79,0,0,0.15,507.12,3565.45,26115397,99.82,0,0,0.16,507.14,3565.42,26115398,99.64,0.02,0.87,0.58,507.92,3564.64,26115399,99.64,0,0,0.37,507.17,3565.39,26115400,99.53,0,0,0.3,506.43,3566.14,26115401,99.78,0,0,0.14,506.38,3566.18,26115402,99.78,0,0,0.16,506.37,3566.19,26115403,99.58,0,0,0.39,506.66,3565.89,26115404,94.13,18.64,0.11,97.69,515.24,3556.39,26115405,93.28,0,0,315.15,519.32,3529.94,26115406,99.79,0,0,0.21,514.13,3537.33,26115407,89.64,3.13,0.15,58.29,535.06,3506.74,26115408,99.56,0,0,7.79,514.12,3524.57,26115409,99.76,0,0,0.34,514.81,3523.89,26115410,99.64,0,0,0.35,512.8,3525.99,26115411,99.63,0,0,0.17,512.12,3526.68,26115412,99.77,0,0,0.14,512.09,3526.7,26115413,99.78,0,0,0.16,512.08,3526.71,26115414,99.57,0,0,0.59,512.41,3526.38,26115415,99.7,0,0,0.29,512.06,3526.75,26115416,99.82,0,0,0.16,512.03,3526.77,26115417,99.79,0,0,0.14,512.02,3526.77,26115418,99.81,0,0,0.15,512.2,3526.59,26115419,99.63,0,0,0.62,512.24,3526.57,26115420,98.87,0,0,0.39,511.93,3526.89,26115421,99.78,0,0,0.2,511.92,3526.89,26115422,99.76,0,0,0.16,511.9,3526.91,26115423,99.76,0,0,0.17,511.87,3526.94,26115424,99.61,0,0,0.59,512.21,3526.6,26115425,99.67,0,0,0.32,512.09,3526.73,26115426,99.78,0,0,0.16,512.09,3526.73,26115427,99.8,0,0,0.13,512.06,3526.75,26115428,99.8,0,0,0.16,512.05,3526.76,26115429,99.54,0,0,0.56,512.55,3526.24,26115430,99.62,0,0,0.43,511.75,3527.06,26115431,99.79,0,0,0.16,511.71,3527.1,26115432,99.77,0,0,0.14,511.69,3527.11,26115433,99.76,0,0.02,0.18,511.63,3527.17,26115434,99.66,0.01,0.39,0.52,511.87,3526.92,26115435,99.61,0,0,0.38,510.88,3527.93,26115436,99.8,0,0,0.14,510.84,3527.97,26115437,99.81,0,0,0.21,511.3,3527.5,26115438,99.82,0,0,0.14,511.29,3527.51,26115439,99.69,0,0,0.43,511.94,3526.86,26115440,99.63,0.03,1.35,0.45,511.67,3527.15,26115441,99.78,0,0,0.2,511.6,3527.2,26115442,99.8,0,0,0.15,511.71,3527.1,26115443,99.83,0,0,0.14,511.63,3527.17,26115444,99.68,0,0,0.41,511.11,3527.69,26115445,99.65,0,0.01,0.43,510.94,3527.87,26115446,99.75,0,0,0.21,510.51,3528.3,26115447,99.82,0,0,0.14,510.38,3528.42,26115448,99.73,0,0,0.15,510.37,3528.43,26115449,99.82,0,0,0.15,510.33,3528.46,26115450,99.5,0,0,0.66,511.79,3527.02,26115451,99.77,0,0,0.16,511.3,3527.51,26115452,99.8,0,0,0.14,511.41,3527.39,26115453,99.8,0,0,0.15,511.44,3527.35,26115454,99.78,0,0,0.14,511.44,3527.36,26115455,99.59,0,0,0.69,511.41,3527.42,26115456,99.76,0,0,0.13,510.94,3527.89,26115457,99.77,0,0,0.16,510.91,3527.91,26115458,99.77,0,0,0.14,510.9,3527.92,26115459,99.51,0,0,0.27,511.35,3527.45,26115460,99.47,0,0,0.72,510.93,3527.88,26115461,99.76,0,0,0.14,510.59,3528.22,26115462,99.78,0,0,0.16,510.58,3528.22,26115463,99.81,0,0,0.14,510.55,3528.25,26115464,99.8,0,0,0.15,510.64,3528.15,26115465,99.59,0,0,0.73,512.18,3526.62,26115466,99.78,0,0,0.16,511.44,3527.36,26115467,99.77,0,0,0.15,511.42,3527.38,26115468,99.7,0.02,0.01,0.16,511.38,3527.41,26115469,99.72,0.03,0.02,0.14,511.39,3527.4,26115470,99.54,0.03,0.02,0.7,512.07,3526.74,26115471,99.78,0.04,0.02,0.16,511.63,3527.17,26115472,99.8,0.04,0.02,0.14,511.62,3527.18,26115473,99.81,0.03,0.02,0.18,511.61,3527.18,26115474,99.73,0.03,0.02,0.16,511.61,3527.18,26115475,99.51,0.03,0.02,0.56,511.97,3526.84,26115476,99.82,0.03,0.02,0.31,510.89,3527.91,26115477,99.82,0.02,0.02,0.19,510.89,3527.9,26115478,99.82,0,0,0.16,510.96,3527.83,26115479,99.86,0,0,0.14,510.93,3527.85,26115480,99.45,0,0,0.45,511.11,3527.69,26115481,99.9,0,0,0.37,511.17,3527.64,26115482,99.83,0,0,0.14,511.16,3527.64,26115483,99.85,0,0,0.19,511.13,3527.67,26115484,99.85,0,0,0.14,511.12,3527.67,26115485,99.66,0,0,0.45,511.95,3526.86,26115486,99.84,0.01,0.09,0.39,511.39,3527.42,26115487,99.86,0,0,0.18,511.44,3527.36,26115488,99.8,0,0,0.15,511.4,3527.39,26115489,99.52,0,0,0.31,511.4,3527.37,26115490,99.79,0,0,0.28,511.62,3527.16,26115491,99.75,0,0,0.58,512.13,3526.65,26115492,99.86,0,0,0.14,511.58,3527.19,26115493,99.78,0,0,0.14,511.55,3527.21,26115494,99.85,0,0,0.15,511.54,3527.22,26115495,99.73,0,0,0.28,511.78,3527.01,26115496,99.67,0,0,0.54,512.03,3526.76,26115497,99.86,0.05,2.18,0.22,511.71,3527.07,26115498,99.84,0.03,1.4,0.24,511.65,3527.12,26115499,99.87,0,0,0.19,511.64,3527.12,26115500,99.75,0,0,0.29,511.43,3527.35,26115501,99.7,0.01,0.15,0.59,512.12,3526.65,26115502,99.85,0,0,0.14,511.93,3526.84,26115503,99.83,0.02,0.6,0.16,511.91,3526.84,26115504,99.88,0,0.05,0.23,511.9,3526.85,26115505,99.73,0,0,0.31,511.63,3527.13,26115506,99.71,0.02,0.33,0.6,512.26,3526.41,26115507,99.77,0.23,3.02,0.45,511.53,3525.12,26115508,99.86,0,0,0.17,511.43,3525.21,26115509,99.87,0,0,0.17,511.42,3525.21,26115510,99.73,0,0,0.29,511.9,3524.75,26115511,99.7,0,0,0.59,511.56,3525.09,26115512,99.83,0,0,0.16,510.15,3526.5,26115513,99.88,0,0,0.14,510.13,3526.5,26115514,99.88,0,0.01,0.16,510.22,3526.42,26115515,99.69,0,0,0.29,511.05,3525.6,26115516,99.69,0,0,0.65,511.25,3525.41,26115517,99.85,0,0,0.16,510.7,3525.95,26115518,99.85,0,0,0.14,510.68,3525.96,26115519,99.67,0,0,0.27,511.6,3525.02,26115520,99.69,0,0,0.27,511.64,3525,26115521,99.73,0,0,0.59,511.76,3524.87,26115522,99.88,0,0,0.14,510.62,3526.01,26115523,99.86,0,0,0.17,510.58,3526.04,26115524,99.83,0,0.01,0.2,510.74,3525.87,26115525,99.78,0,0,0.29,511.73,3524.91,26115526,99.74,0,0,0.38,512.06,3524.57,26115527,99.81,0,0,0.36,511.7,3524.93,26115528,99.83,0.09,3.92,0.19,511.69,3524.93,26115529,99.88,0,0,0.21,511.7,3524.9,26115530,99.8,0,0,0.27,511.94,3524.68,26115531,99.72,0,0,0.33,512.24,3524.37,26115532,99.78,0,0,0.39,510.92,3525.69,26115533,99.83,0,0,0.17,510.9,3525.7,26115534,99.79,0,0,0.16,510.88,3525.73,26115535,99.74,0,0,0.29,510.88,3525.73,26115536,99.84,0.01,0.01,0.16,510.85,3525.76,26115537,83.04,0.04,0.9,4.37,751.18,3285.37,26115538,99.73,0,0,0.21,851.78,3184.75,26115539,99.87,0.02,0.87,0.17,555.23,3481.28,26115540,99.57,0.08,4.29,0.52,555.98,3480.54,26115541,99.79,0.03,1.51,0.36,555.92,3480.57,26115542,99.72,0,0.01,0.61,556.59,3479.89,26115543,99.87,0.02,0.76,0.31,556.14,3480.33,26115544,99.83,0.02,0.88,0.27,556.09,3480.36,26115545,99.77,0,0.01,0.35,556.41,3480.06,26115546,99.85,0.01,0.01,0.15,556.47,3479.99,26115547,99.7,0,0,0.44,556.77,3479.69,26115548,99.83,0,0.01,0.29,556.41,3480.05,26115549,99.48,0,0,0.4,557.09,3479.34,26115550,82.43,0.05,0.91,4.11,816.62,3219.81,26115551,80.1,0.05,0.99,4.12,910.7,3125.73,26115552,65.86,0.06,1.8,7.78,960.68,3075.71,26115553,99.87,0,0.01,0.48,929.21,3107.19,26115554,99.7,0.02,0.87,0.27,656.19,3380.2,26115555,99.68,0,0,0.35,557.44,3478.96,26115556,99.81,0.03,0.88,0.3,557.34,3479.05,26115557,84.96,0.02,0.02,1.38,644.6,3391.77,26115558,97.43,0.09,3.74,3.38,941.61,3094.76,26115559,82.62,0.05,0.91,3.97,947.6,3088.73,26115560,82.11,0.02,0.02,1.9,796.54,3239.81,26115561,99.28,0.02,0.89,2.53,941.26,3095.08,26115562,99.26,0,0,0.63,710.78,3325.56,26115563,99.85,0,0.01,0.22,556.32,3480.01,26115564,99.84,0,0.01,0.24,556.29,3480.04,26115565,99.76,0,0,0.34,556.78,3479.56,26115566,99.82,0,0,0.19,556.6,3479.74,26115567,99.69,0,0,0.62,556.9,3479.44,26115568,99.84,0,0,0.19,556.41,3479.92,26115569,99.85,0,0.01,0.16,556.39,3479.94,26115570,99.61,0.05,1.27,0.38,556.83,3479.51,26115571,99.77,0.06,0.3,0.3,556.82,3479.49,26115572,82.67,0.02,0.02,1.97,652.59,3383.66,26115573,99.12,0.06,0.9,2.77,928.54,3107.71,26115574,82.72,0.05,1.37,3.73,858.89,3177.33,26115575,99.46,0,0,0.57,773.41,3262.84,26115576,99.84,0,0,0.15,555.31,3480.93,26115577,99.83,0,0,0.16,555.28,3480.96,26115578,99.66,0,0,0.55,557.15,3479.09,26115579,99.65,0,0,0.27,557.44,3478.77,26115580,99.75,0,0.01,0.32,557.18,3479.05,26115581,99.87,0,0,0.2,557.24,3478.98,26115582,99.88,0,0,0.14,557.3,3478.91,26115583,99.71,0.03,0.87,0.57,557.6,3478.6,26115584,99.85,0.03,1.13,0.29,557.22,3478.97,26115585,82.58,0.11,1.64,4.23,821.6,3214.54,26115586,99.63,0.03,0.92,0.23,827.08,3209.06,26115587,99.82,0.02,0.77,0.21,557.18,3478.95,26115588,99.71,0,0,0.58,557.96,3478.16,26115589,99.87,0,0,0.16,557.85,3478.27,26115590,99.78,0,0,0.3,557.84,3478.29,26115591,99.89,0,0,0.14,557.85,3478.28,26115592,99.87,0,0,0.16,557.99,3478.14,26115593,99.71,0.07,0.15,0.69,559.26,3476.83,26115594,99.83,0.03,1.1,0.27,558.5,3477.55,26115595,99.76,0,0,0.35,558.33,3477.73,26115596,99.87,0,0.02,0.18,558.3,3477.76,26115597,99.82,0.01,0.13,0.16,558.26,3477.8,26115598,99.71,0.02,0.56,0.49,558.63,3477.42,26115599,99.76,0.06,1.84,0.45,557.34,3478.69,26115600,99.63,0.08,0.12,0.37,557.86,3478.17,26115601,99.74,0.12,4.49,0.46,558.02,3477.93,26115602,99.85,0,0,0.22,557.37,3478.56,26115603,99.73,0,0,0.57,557.72,3478.21,26115604,99.74,0.02,0.83,0.54,558.21,3477.71,26115605,99.72,0,0,0.32,558.19,3477.74,26115606,99.8,0.12,2.67,0.22,558.2,3477.72,26115607,99.78,0.05,1.14,0.23,558.19,3477.71,26115608,99.85,0,0,0.19,558.06,3477.83,26115609,99.34,0.01,0.03,0.88,558.78,3477.09,26115610,99.74,0.01,0.01,0.34,558.21,3477.67,26115611,99.88,0,0,0.14,558.22,3477.66,26115612,99.87,0,0,0.15,558.19,3477.69,26115613,99.82,0.04,1.59,0.27,558.2,3477.67,26115614,99.58,0,0,0.66,558.8,3477.08,26115615,99.66,0,0,0.33,557.71,3478.19,26115616,99.76,0.01,0.15,0.14,557.67,3478.22,26115617,99.69,0,0,0.26,557.61,3478.27,26115618,99.84,0,0,0.14,557.74,3478.14,26115619,99.63,0,0,0.6,558.43,3477.44,26115620,99.8,0,0,0.31,557.97,3477.93,26115621,99.85,0,0,0.14,557.94,3477.95,26115622,99.84,0,0,0.16,557.93,3477.96,26115623,99.79,0,0,0.17,557.88,3478,26115624,99.55,0,0,0.57,558.52,3477.36,26115625,99.75,0,0,0.32,558.35,3477.55,26115626,99.86,0,0,0.19,558.33,3477.56,26115627,99.88,0,0,0.15,558.31,3477.58,26115628,99.86,0,0,0.15,558.46,3477.42,26115629,99.77,0,0,0.56,558.93,3476.95,26115630,99.74,0,0,0.31,557.22,3478.67,26115631,99.9,0,0,0.14,557.17,3478.72,26115632,99.86,0,0,0.16,557.15,3478.73,26115633,99.85,0.01,0,0.16,557.1,3478.78,26115634,99.67,0,0,0.55,558.15,3477.72,26115635,99.74,0,0,0.3,558.7,3477.19,26115636,99.86,0,0,0.16,558.68,3477.21,26115637,99.88,0,0,0.14,557.98,3477.91,26115638,99.9,0,0,0.15,557.65,3478.23,26115639,99.6,0.01,0,0.58,558.85,3477,26115640,99.65,0,0,0.45,557.34,3478.52,26115641,99.85,0,0,0.15,557.41,3478.45,26115642,99.87,0,0,0.16,557.46,3478.4,26115643,99.87,0,0,0.14,557.45,3478.4,26115644,99.75,0,0,0.43,557.89,3477.98,26115645,99.73,0,0,0.46,557.94,3477.94,26115646,99.88,0,0,0.15,557.89,3477.99,26115647,99.85,0,0,0.14,557.89,3477.99,26115648,99.88,0.01,0.01,0.16,557.93,3477.94,26115649,99.76,0,0,0.43,558.38,3477.49,26115650,99.81,0,0,0.44,558.21,3477.68,26115651,99.89,0,0,0.18,558.17,3477.71,26115652,99.88,0,0,0.15,558.16,3477.72,26115653,99.87,0,0,0.15,558.13,3477.74,26115654,99.91,0,0,0.14,558.11,3477.76,26115655,99.64,0,0,0.71,559.4,3476.49,26115656,99.88,0,0,0.14,558.08,3477.8,26115657,99.91,0,0,0.14,558.07,3477.8,26115658,99.93,0,0,0.16,558.04,3477.83,26115659,99.92,0,0,0.14,558.17,3477.7,26115660,99.44,0,0,0.68,558.43,3477.45,26115661,99.85,0,0,0.16,557.72,3478.16,26115662,99.85,0,0,0.13,557.68,3478.2,26115663,99.91,0,0,0.16,557.63,3478.23,26115664,99.9,0,0,0.14,557.62,3478.24,26115665,99.66,0,0,0.72,559.32,3476.56,26115666,99.89,0,0,0.14,559.08,3476.81,26115667,99.92,0,0,0.19,559.06,3476.84,26115668,99.92,0,0,0.15,559.1,3476.79,26115669,99.72,0,0,0.29,558.75,3477.11,26115670,99.62,0,0,0.68,559.44,3476.45,26115671,99.89,0,0,0.21,559.15,3476.73,26115672,99.92,0,0,0.15,559.12,3476.75,26115673,99.92,0,0,0.16,559.11,3476.76,26115674,99.86,0,0,0.15,558.76,3477.11,26115675,99.56,0,0,0.65,558.95,3476.94,26115676,99.87,0,0,0.2,558.32,3477.56,26115677,99.88,0,0,0.19,558.09,3477.78,26115678,99.88,0,0,0.17,558.22,3477.65,26115679,99.88,0,0,0.15,558.18,3477.68,26115680,99.54,0,0,0.59,558.43,3477.44,26115681,99.88,0,0,0.32,558.88,3477,26115682,99.88,0,0,0.14,558.84,3477.03,26115683,99.88,0,0,0.16,558.81,3477.05,26115684,99.88,0.02,1.63,0.3,558.81,3477.05,26115685,99.67,0,0,0.79,559.27,3476.59,26115686,99.87,0,0,0.18,558.99,3476.87,26115687,99.92,0,0,0.14,558.87,3476.99,26115688,99.91,0,0,0.18,558.9,3476.95,26115689,99.84,0,0,0.16,558.87,3476.97,26115690,97.93,0.04,0.01,64.62,565.46,3469.9,26115691,97.93,0,0,78.59,566.36,3471.09,26115692,99.9,0,0,0.17,560.66,3475.24,26115693,99.88,0,0,0.16,560.64,3475.25,26115694,99.89,0,0,0.15,560.58,3475.31,26115695,99.8,0.14,2.51,0.64,560.95,3474.92,26115696,99.73,0.02,0.84,0.67,559.3,3476.57,26115697,99.9,0,0.01,0.17,558.67,3477.21,26115698,99.84,0.01,0,0.16,558.73,3477.14,26115699,99.74,0,0,0.28,558.46,3477.39,26115700,99.79,0,0,0.29,558.44,3477.42,26115701,99.78,0,0,0.56,559.14,3476.74,26115702,99.88,0.03,0.84,0.18,559.11,3476.75,26115703,97.85,0.01,0,0.3,561.71,3474.15,26115704,84.44,0.05,1.7,3.89,966.34,3069.49,26115705,99.58,0,0,0.32,679,3356.85,26115706,99.73,0,0,0.57,556.62,3479.23,26115707,99.87,0.02,0.83,0.2,556.42,3479.42,26115708,99.88,0,0.01,0.18,556.37,3479.46,26115709,99.92,0,0,0.15,556.34,3479.49,26115710,99.77,0.03,1.54,0.39,556.66,3479.18,26115711,99.71,0.09,3.49,0.8,557.31,3478.51,26115712,99.89,0.03,1.34,0.32,557.09,3478.71,26115713,99.9,0.02,0.38,0.2,557.12,3478.68,26115714,99.91,0.03,1.33,0.21,557.12,3478.67,26115715,99.69,0.04,1.6,0.41,556.37,3479.43,26115716,99.73,0.02,0.81,0.63,557.48,3478.31,26115717,99.89,0.02,0.83,0.21,557.62,3478.16,26115718,99.88,0.01,0.04,0.25,556.6,3479.17,26115719,83.69,0.04,0.86,3.95,757.41,3278.34,26115720,99.46,0.01,0,0.48,721.05,3314.72,26115721,82.9,0.02,0.86,4.2,901.9,3133.85,26115722,83.31,0.03,0.86,3.84,929.88,3105.87,26115723,87.6,0.01,0,1.08,936.86,3098.87,26115724,95.06,0.05,1.68,3.47,947.81,3087.92,26115725,82.9,0.03,0.86,3.86,932.91,3102.81,26115726,83.6,0.03,0.86,4.64,929.75,3105.96,26115727,99.76,0.02,0.82,0.16,793.95,3241.76,26115728,99.89,0,0.01,0.21,555.3,3480.39,26115729,83.57,0.04,0.85,4.15,816.71,3218.94,26115730,99.62,0.02,0.8,0.43,803.94,3231.73,26115731,99.75,0,0.04,0.33,556.47,3479.2,26115732,99.89,0.01,0,0.44,556.77,3478.89,26115733,99.83,0,0.01,0.2,556.73,3478.93,26115734,99.88,0,0,0.18,556.7,3478.96,26115735,99.79,0,0.01,0.36,556.45,3479.22,26115736,99.88,0,0,0.17,556.44,3479.23,26115737,99.71,0,0,0.65,557.73,3477.93,26115738,83.17,0.01,0.03,3.56,665.21,3370.45,26115739,83.24,0.03,0.86,4.1,939.6,3096.05,26115740,99.57,0.03,1.19,0.47,720.61,3315.06,26115741,99.87,0.03,0.86,0.32,557.64,3478,26115742,99.73,0,0.01,0.58,558.7,3476.94,26115743,99.84,0,0,0.2,558.77,3476.86,26115744,99.9,0,0,0.18,558.73,3476.89,26115745,99.82,0,0,0.34,558.11,3477.53,26115746,99.88,0,0,0.2,557.98,3477.66,26115747,99.75,0,0.01,0.59,558.3,3477.34,26115748,99.84,0,0,0.21,557.9,3477.73,26115749,99.87,0,0.01,0.21,557.88,3477.75,26115750,99.75,0.02,0.83,0.4,558.38,3477.26,26115751,99.9,0,0,0.2,558.37,3477.27,26115752,99.76,0,0,0.54,558.94,3476.69,26115753,99.85,0,0,0.14,558.97,3476.65,26115754,99.88,0,0,0.14,558.96,3476.66,26115755,99.78,0,0,0.31,558.96,3476.68,26115756,99.92,0,0,0.14,558.07,3477.57,26115757,99.78,0,0,0.57,558.45,3477.19,26115758,99.88,0,0,0.2,557.9,3477.73,26115759,99.78,0,0,0.3,558.4,3477.2,26115760,99.77,0,0,0.38,558.67,3476.95,26115761,99.91,0,0,0.14,558.6,3477.02,26115762,99.78,0,0,0.54,558.88,3476.73,26115763,99.93,0,0,0.14,558.26,3477.34,26115764,99.92,0,0,0.14,558.24,3477.36,26115765,99.71,0,0,0.31,557.99,3477.63,26115766,99.91,0,0,0.16,557.95,3477.66,26115767,99.72,0,0,0.57,558.23,3477.38,26115768,99.88,0,0,0.15,557.65,3477.95,26115769,99.89,0.01,0.03,0.18,557.68,3477.92,26115770,99.69,0.13,4.99,0.6,558.71,3476.88,26115771,99.83,0.05,1.69,0.2,558.69,3476.87,26115772,99.71,0.01,0.37,0.42,559.01,3476.53,26115773,99.86,0,0,0.38,558.25,3477.29,26115774,99.88,0,0,0.15,558.11,3477.42,26115775,99.82,0,0,0.34,557.85,3477.7,26115776,99.93,0,0,0.14,557.83,3477.72,26115777,99.91,0,0,0.14,557.8,3477.73,26115778,99.7,0,0,0.59,559.12,3476.41,26115779,99.89,0,0,0.14,558.94,3476.6,26115780,99.55,0.05,2.18,0.36,557.98,3477.58,26115781,99.87,0,0,0.22,557.92,3477.63,26115782,99.88,0,0.01,0.16,557.87,3477.68,26115783,99.78,0,0,0.58,559,3476.55,26115784,99.93,0,0,0.15,559.04,3476.5,26115785,99.77,0,0,0.32,559.04,3476.52,26115786,99.84,0.06,0.24,0.3,559.28,3476.26,26115787,99.69,0.6,13.28,0.3,559.88,3475.61,26115788,99.49,1.06,30,0.61,561.4,3474.08,26115789,99.03,2.59,87.95,0.34,561.66,3473.81,26115790,99.79,0,0,0.38,561.79,3473.69,26115791,99.89,0.03,0.04,0.25,561.51,3473.97,26115792,99.88,0.02,0.03,0.22,560.85,3474.62,26115793,99.36,21.96,21.19,21.34,561.81,3456.72,26115794,99.88,0.47,0.52,0.77,561.19,3452.93,26115795,99.78,0.07,0.45,0.59,561.81,3458.29,26115796,99.9,0.11,0.2,0.45,561.87,3464.72,26115797,99.86,0.03,0.05,0.35,561.9,3464.68,26115798,99.8,0.01,0.02,0.66,562.38,3464.21,26115799,99.87,0.02,0.83,0.24,561.96,3464.62,26115800,99.79,0.01,0.03,0.36,561.93,3464.66,26115801,83.63,0.03,0.06,3.67,788.18,3238.42,26115802,99.77,0,0,0.36,795.02,3231.6,26115803,99.8,0.03,0.98,0.76,557.97,3468.64,26115804,99.89,0,0.01,0.21,558.97,3467.61,26115805,99.79,0.28,13.57,0.46,558.79,3467.8,26115806,99.9,0,0,0.16,558.66,3467.93,26115807,99.93,0,0,0.2,558.51,3468.08,26115808,99.77,0,0,0.59,558.9,3467.67,26115809,99.91,0,0,0.17,558.94,3467.63,26115810,99.71,0,0,0.32,559.43,3467.16,26115811,99.92,0,0,0.14,559.41,3467.17,26115812,99.9,0,0,0.31,510.27,3516.71,26115813,99.94,0,0,0.14,507.51,3519.53,26115814,99.77,0,0,0.57,507.66,3519.37,26115815,99.84,0,0,0.3,506.59,3520.46,26115816,99.91,0,0,0.16,506.69,3520.36,26115817,99.9,0,0,0.14,506.66,3520.4,26115818,99.91,0,0,0.15,506.66,3520.4,26115819,99.62,0.01,0,0.73,507.71,3519.33,26115820,99.76,0,0,0.3,507.55,3519.5,26115821,99.93,0,0,0.16,507.52,3519.52,26115822,99.91,0,0,0.14,507.51,3519.53,26115823,99.94,0,0,0.14,507.49,3519.55,26115824,99.81,0,0,0.53,507.98,3519.09,26115825,99.87,0,0,0.3,507.16,3519.93,26115826,99.92,0,0,0.16,507.12,3519.96,26115827,99.94,0,0,0.14,507.11,3519.97,26115828,99.88,0,0,0.14,507.08,3519.99,26115829,99.8,0,0,0.54,507.11,3519.96,26115830,99.82,0,0,0.29,505.59,3521.5,26115831,99.94,0,0,0.14,505.55,3521.53,26115832,99.9,0,0,0.16,505.53,3521.55,26115833,99.89,0,0,0.14,505.65,3521.43,26115834,99.73,0,0,0.59,506.76,3520.31,26115835,99.7,0,0,0.32,507.62,3519.47,26115836,99.9,0,0,0.16,507.61,3519.47,26115837,99.93,0,0,0.15,507.58,3519.5,26115838,99.94,0,0,0.14,507.56,3519.52,26115839,99.75,0,0,0.46,507.64,3519.43,26115840,99.58,0,0,0.39,506.64,3520.44,26115841,99.9,0,0,0.14,506.53,3520.55,26115842,99.89,0,0.01,0.15,506.54,3520.54,26115843,99.81,0,0.01,0.23,506.64,3520.43,26115844,99.73,0,0,0.56,507.24,3519.82,26115845,99.81,0,0,0.31,507.83,3519.25,26115846,99.81,0.01,0,0.16,507.81,3519.26,26115847,99.85,0,0,0.16,507.77,3519.3,26115848,99.91,0,0,0.14,507.75,3519.32,26115849,99.69,0,0,0.54,507.83,3519.21,26115850,99.76,0,0,0.51,507.54,3519.51,26115851,99.89,0,0,0.15,507.65,3519.4,26115852,99.88,0,0,0.14,507.63,3519.41,26115853,99.79,0,0,0.16,507.6,3519.44,26115854,99.85,0,0,0.14,507.57,3519.48,26115855,99.53,0,0,0.74,507.58,3519.49,26115856,99.81,0,0,0.19,507.05,3520.02,26115857,99.87,0,0,0.21,507.02,3520.04,26115858,99.91,0,0,0.18,507.06,3520,26115859,99.83,0,0,0.18,507.16,3519.89,26115860,99.62,0,0,0.75,508.02,3519.06,26115861,99.85,0,0,0.14,507.88,3519.21,26115862,99.78,0.02,0.02,0.18,507.83,3519.26,26115863,99.83,0.03,0.02,0.14,507.8,3519.28,26115864,99.9,0.03,0.02,0.16,507.8,3519.28,26115865,99.62,0.01,0.01,0.78,508.17,3518.93,26115866,99.78,0.02,0.01,0.18,507.62,3519.47,26115867,99.8,0.03,0.01,0.15,507.33,3519.76,26115868,99.78,0.02,0.01,0.15,507.35,3519.74,26115869,99.85,0.03,0.02,0.18,507.32,3519.75,26115870,99.61,0.02,0.02,0.76,507.81,3519.29,26115871,99.87,0.02,0.01,0.14,507.58,3519.51,26115872,99.8,0.01,0.01,0.15,507.59,3519.49,26115873,99.8,0.02,0.01,0.15,507.55,3519.53,26115874,99.74,0.02,0.02,0.17,507.55,3519.52,26115875,99.53,0,0,0.71,508.4,3518.69,26115876,99.82,0,0,0.18,507.84,3519.24,26115877,99.84,0,0,0.14,507.82,3519.26,26115878,99.84,0,0,0.15,507.8,3519.27,26115879,99.67,0,0,0.27,507.8,3519.25,26115880,99.49,0,0,0.71,508.36,3518.71,26115881,99.8,0,0,0.14,507.74,3519.32,26115882,99.82,0,0,0.13,507.87,3519.2,26115883,99.81,0,0,0.21,507.88,3519.17,26115884,99.83,0,0,0.15,507.86,3519.2,26115885,99.55,0,0,0.78,508.28,3518.79,26115886,99.81,0,0,0.14,508.08,3518.98,26115887,99.83,0,0,0.13,508.08,3518.98,26115888,99.78,0,0,0.16,508.05,3519,26115889,99.8,0,0,0.14,508.04,3519.01,26115890,99.49,0,0,0.56,507.91,3519.15,26115891,99.83,0,0,0.29,507.77,3519.3,26115892,99.83,0,0,0.17,507.74,3519.32,26115893,99.78,0.03,2.42,0.33,507.79,3519.25,26115894,99.8,0,0.02,0.3,507.79,3519.24,26115895,99.73,0,0,0.39,507.5,3519.54,26115896,99.66,0,0,0.55,505.83,3521.2,26115897,99.79,0,0,0.14,505.02,3522.01,26115898,99.8,0,0,0.14,505.01,3522.02,26115899,99.79,0,0,0.18,504.98,3522.04,26115900,99.48,0,0,0.36,506.68,3520.36,26115901,99.68,0,0,0.56,507.28,3519.75,26115902,99.83,0,0,0.18,507.08,3519.95,26115903,99.81,0,0,0.16,507.05,3519.97,26115904,99.81,0,0,0.15,507.03,3519.99,26115905,99.65,0,0,0.33,507.26,3519.77,26115906,99.67,0,0,0.55,507.42,3519.62,26115907,99.83,0,0,0.14,506.96,3520.07,26115908,99.8,0,0,0.16,506.95,3520.08,26115909,99.67,0,0,0.32,507.16,3519.84,26115910,99.68,0,0,0.32,506.35,3520.67,26115911,99.69,0,0,0.49,507.21,3519.8,26115912,99.82,0,0,0.21,506.54,3520.47,26115913,99.83,0,0,0.14,506.51,3520.5,26115914,99.83,0,0.01,0.15,506.5,3520.51,26115915,99.74,0.01,0.04,0.38,507.22,3519.81,26115916,99.64,0.01,0.05,0.42,507.57,3519.46,26115917,99.8,0,0,0.42,506.97,3520.05,26115918,99.83,0,0,0.15,506.95,3520.06,26115919,99.83,0,0,0.14,506.93,3520.07,26115920,99.71,0.01,0.21,0.41,507.45,3519.57,26115921,99.62,0,0,0.51,507.73,3519.29,26115922,99.78,0.01,0.38,0.23,507.23,3519.79,26115923,99.82,0,0,0.18,507.21,3519.8,26115924,99.82,0,0.02,0.2,507.17,3519.83,26115925,99.7,0,0,0.31,507,3520.02,26115926,99.66,0,0,0.43,507.28,3519.73,26115927,99.83,0,0,0.28,507.08,3519.93,26115928,99.83,0,0,0.18,507.04,3519.96,26115929,99.84,0,0,0.15,507.03,3519.97,26115930,99.71,0,0,0.32,506.29,3520.73,26115931,99.7,0,0,0.33,507.03,3519.98,26115932,99.84,0,0,0.38,506.95,3520.05,26115933,99.85,0,0,0.15,506.92,3520.08,26115934,99.83,0,0,0.15,506.95,3520.05,26115935,99.72,0,0.01,0.32,507.07,3519.94,26115936,99.8,0,0.02,0.17,507.02,3519.99,26115937,99.65,0,0,0.61,507.75,3519.25,26115938,99.83,0,0,0.2,507.44,3519.56,26115939,99.7,0,0,0.35,507.42,3519.55,26115940,99.76,0,0,0.34,507.18,3519.81,26115941,99.83,0,0,0.16,507.15,3519.83,26115942,99.72,0,0,0.58,507.64,3519.33,26115943,99.83,0,0,0.17,507.28,3519.69,26115944,99.82,0,0,0.17,507.28,3519.69,26115945,99.78,0,0,0.34,507.51,3519.48,26115946,99.78,0,0,0.17,507.48,3519.5,26115947,99.69,0,0,0.59,507.96,3519.02,26115948,99.86,0,0,0.2,507.67,3519.3,26115949,99.79,0,0,0.17,507.64,3519.32,26115950,99.71,0,0,0.35,507.04,3519.94,26115951,99.84,0,0,0.16,507.05,3519.93,26115952,99.68,0,0,0.58,507.66,3519.31,26115953,99.83,0,0,0.14,507.25,3519.72,26115954,99.78,0,0,0.15,507.21,3519.75,26115955,99.69,0,0,0.33,507.21,3519.77,26115956,99.84,0,0,0.16,507.19,3519.78,26115957,99.66,0.03,1.66,0.67,507.67,3519.29,26115958,99.8,0,0,0.14,507.51,3519.44,26115959,99.81,0,0,0.16,507.48,3519.47,26115960,99.53,0,0,0.32,506.27,3520.7,26115961,99.73,0,0,0.16,506.21,3520.74,26115962,99.08,0.01,0.83,0.42,506.94,3520.01,26115963,99.78,0,0.01,0.33,507.2,3519.74,26115964,99.81,0,0,0.14,507.17,3519.77,26115965,99.59,0.05,2.52,0.38,506.75,3520.21,26115966,99.81,0,0.02,0.3,506.69,3520.25,26115967,99.68,0,0,0.41,507.4,3519.54,26115968,99.81,0,0.01,0.34,507.13,3519.8,26115969,99.68,0,0,0.29,507.15,3519.76,26115970,99.62,0,0,0.32,507.73,3519.19,26115971,99.82,0,0,0.16,507.71,3519.2,26115972,99.83,0,0,0.14,507.71,3519.21,26115973,99.66,0,0,0.55,508.02,3518.89,26115974,99.77,0,0,0.14,507.63,3519.29,26115975,99.74,0,0,0.34,507.39,3519.55,26115976,99.78,0,0,0.14,507.36,3519.58,26115977,99.83,0,0,0.18,507.12,3519.81,26115978,99.7,0,0,0.54,507.64,3519.29,26115979,99.83,0,0,0.14,507.27,3519.65,26115980,99.76,0,0,0.36,507.5,3519.44,26115981,99.83,0,0,0.13,507.5,3519.43,26115982,99.83,0.01,0.02,0.19,507.44,3519.49,26115983,99.62,0,0,0.57,508.09,3518.83,26115984,99.81,0,0,0.16,507.37,3519.55,26115985,99.71,0,0,0.38,507.38,3519.56,26115986,99.82,0,0,0.18,507.43,3519.5,26115987,99.83,0,0,0.16,507.27,3519.66,26115988,99.63,0,0,0.59,507.44,3519.49,26115989,99.82,0,0,0.18,506.97,3519.95,26115990,99.69,0,0,0.38,507.45,3519.51,26115991,99.78,0,0,0.17,507.41,3519.54,26115992,99.81,0,0,0.14,507.4,3519.54,26115993,99.66,0,0,0.57,507.26,3519.68,26115994,99.82,0,0,0.17,506.62,3520.31,26115995,99.73,0,0,0.33,506.98,3519.97,26115996,99.82,0,0,0.16,507.04,3519.91,26115997,99.83,0,0,0.14,507,3519.94,26115998,99.68,0,0,0.54,507.7,3519.24,26115999,99.62,0,0,0.27,507.23,3519.68,26116000,99.72,0,0,0.31,507.19,3519.74,26116001,99.82,0,0,0.16,507.18,3519.74,26116002,99.8,0,0,0.17,507.15,3519.77,26116003,99.61,0,0,0.55,507.82,3519.09,26116004,99.8,0,0,0.14,507.84,3519.07,26116005,99.73,0,0,0.38,507.2,3519.72,26116006,99.81,0,0,0.18,507.23,3519.69,26116007,99.83,0,0,0.18,507.25,3519.67,26116008,99.65,0,0,0.43,507.65,3519.26,26116009,99.8,0,0,0.29,507.67,3519.23,26116010,99.7,0,0,0.3,507.44,3519.49,26116011,99.81,0,0,0.18,507.39,3519.53,26116012,99.82,0,0,0.14,507.38,3519.54,26116013,99.64,0,0,0.4,507.74,3519.17,26116014,99.83,0,0,0.32,507.61,3519.29,26116015,99.69,0,0,0.38,507.76,3519.16,26116016,99.83,0,0,0.19,507.72,3519.2,26116017,99.81,0,0,0.18,507.69,3519.22,26116018,99.84,0,0,0.19,507.66,3519.25,26116019,99.65,0,0,0.58,508.18,3518.73,26116020,99.57,0,0,0.32,507.85,3519.07,26116021,99.78,0,0,0.16,507.85,3519.07,26116022,99.62,0,0,0.14,507.82,3519.09,26116023,99.8,0,0,0.14,507.95,3518.96,26116024,99.63,0.01,0,0.56,508.29,3518.61,26116025,99.76,0,0,0.33,507.92,3519,26116026,99.8,0,0,0.17,507.91,3519.01,26116027,99.8,0,0,0.14,507.88,3519.04,26116028,99.82,0,0,0.16,507.87,3519.04,26116029,99.48,0,0,0.71,508.37,3518.51,26116030,99.72,0,0,0.33,506.39,3520.5,26116031,99.86,0,0,0.16,506.5,3520.4,26116032,99.85,0,0,0.14,506.49,3520.4,26116033,99.87,0,0,0.15,506.45,3520.43,26116034,99.76,0,0,0.5,507.22,3519.68,26116035,99.82,0,0,0.38,508.12,3518.8,26116036,99.91,0,0,0.15,508.12,3518.79,26116037,99.9,0,0,0.19,508.11,3518.8,26116038,99.89,0,0,0.16,508.08,3518.82,26116039,99.77,0,0,0.57,508.29,3518.61,26116040,99.75,0,0,0.36,507.98,3518.94,26116041,99.89,0,0,0.18,508,3518.92,26116042,99.9,0,0,0.18,507.94,3518.97,26116043,99.85,0,0,0.16,507.93,3518.97,26116044,99.73,0,0,0.56,508.04,3518.86,26116045,99.81,0,0,0.35,507.15,3519.77,26116046,99.86,0.01,0,0.16,507.1,3519.82,26116047,99.93,0,0,0.16,507,3519.92,26116048,99.93,0,0,0.14,506.98,3519.93,26116049,99.77,0,0,0.4,507.73,3519.17,26116050,99.72,0,0,0.43,506.49,3520.43,26116051,99.91,0,0,0.14,506.43,3520.48,26116052,99.83,0,0,0.14,506.4,3520.5,26116053,99.88,0,0,0.16,506.39,3520.51,26116054,96.85,0.32,0.01,64.86,511.44,3515.65,26116055,97.86,0,0,195.66,515.47,3511.8,26116056,99.92,0,0,0.2,509.25,3517.56,26116057,99.9,0,0,0.13,509.23,3517.57,26116058,99.88,0,0,0.16,509.27,3517.53,26116059,99.69,0,0,0.54,509.76,3517,26116060,99.88,0,0,0.55,507.37,3519.44,26116061,99.89,0,0,0.15,507.15,3519.66,26116062,99.89,0,0,0.16,507.14,3519.67,26116063,99.92,0,0,0.14,507.11,3519.7,26116064,99.87,0,0,0.15,507.1,3519.73,26116065,99.7,0,0,0.73,507.63,3519.22,26116066,99.91,0,0,0.14,507.32,3519.52,26116067,99.9,0,0,0.19,507.29,3519.55,26116068,99.88,0,0,0.17,507.38,3519.45,26116069,99.87,0,0,0.15,507.43,3519.39,26116070,99.68,0,0,0.77,507.77,3519.08,26116071,99.91,0,0,0.17,507.16,3519.68,26116072,99.9,0,0,0.2,507.1,3519.73,26116073,99.9,0,0,0.17,507.07,3519.77,26116074,99.9,0,0,0.14,507.06,3519.78,26116075,99.71,0,0,0.67,507.55,3519.32,26116076,99.9,0.01,0,0.2,507.38,3519.48,26116077,99.88,0,0,0.16,507.41,3519.44,26116078,99.93,0,0,0.16,507.39,3519.46,26116079,99.9,0,0,0.15,507.37,3519.47,26116080,99.56,0.01,0.01,0.68,507.57,3519.29,26116081,99.91,0,0,0.2,507.04,3519.82,26116082,99.87,0,0,0.14,507.07,3519.78,26116083,99.92,0,0,0.15,507.19,3519.66,26116084,99.93,0,0,0.15,507.16,3519.69,26116085,99.71,0,0,0.68,507.96,3518.9,26116086,99.88,0,0,0.21,507.15,3519.71,26116087,99.9,0,0,0.15,507.13,3519.72,26116088,99.93,0,0,0.16,507.1,3519.75,26116089,99.75,0,0,0.28,507.36,3519.47,26116090,99.64,0,0,0.73,507.26,3519.6,26116091,99.91,0,0,0.14,507.57,3519.29,26116092,99.92,0,0,0.14,507.54,3519.31,26116093,99.9,0,0,0.19,507.52,3519.33,26116094,99.49,0,0,0.54,507.85,3518.99,26116095,99.55,0,0,0.69,506.64,3520.23,26116096,99.9,0,0,0.21,507.17,3519.69,26116097,99.88,0,0,0.18,507.14,3519.71,26116098,99.9,0,0,0.16,507.11,3519.74,26116099,99.86,0,0,0.13,507.1,3519.75,26116100,99.7,0,0,0.48,506.98,3519.9,26116101,99.92,0,0,0.39,506.82,3520.05,26116102,99.86,0,0,0.14,506.8,3520.08,26116103,99.87,0,0,0.14,506.77,3520.1,26116104,99.89,0,0,0.17,506.91,3519.95,26116105,99.84,0,0,0.36,507.42,3519.45,26116106,99.74,0,0,0.57,508.05,3518.83,26116107,99.91,0,0,0.18,507.11,3519.76,26116108,99.92,0,0,0.14,507.09,3519.78,26116109,99.9,0,0,0.14,507.07,3519.79,26116110,99.82,0,0,0.34,507.31,3519.57,26116111,99.75,0,0,0.54,507.65,3519.22,26116112,99.93,0,0,0.17,507.27,3519.6,26116113,99.92,0,0,0.16,507.28,3519.58,26116114,99.9,0,0,0.16,507.44,3519.42,26116115,99.75,0,0,0.34,507.7,3519.18,26116116,99.76,0,0,0.55,507.16,3519.71,26116117,99.89,0,0,0.14,506.4,3520.46,26116118,99.92,0,0,0.16,506.36,3520.5,26116119,99.78,0,0,0.28,507.29,3519.55,26116120,99.77,0,0,0.32,506.35,3520.5,26116121,99.78,0,0,0.56,506.79,3520.06,26116122,99.88,0,0,0.16,506.7,3520.15,26116123,99.92,0,0,0.14,506.69,3520.15,26116124,99.89,0,0,0.16,506.66,3520.18,26116125,99.77,0.01,0,0.32,506.16,3520.7,26116126,99.8,0,0,0.55,507.06,3519.79,26116127,99.94,0,0,0.13,507.08,3519.77,26116128,99.92,0,0,0.16,507.06,3519.78,26116129,99.9,0,0,0.14,507.04,3519.79,26116130,99.77,0,0,0.32,506.57,3520.29,26116131,99.79,0,0,0.43,507.11,3519.74,26116132,99.89,0,0,0.29,507.19,3519.66,26116133,99.91,0,0,0.14,507.15,3519.69,26116134,99.92,0,0,0.15,507.12,3519.72,26116135,99.75,0,0,0.33,506.63,3520.22,26116136,99.76,0,0,0.4,507.09,3519.76,26116137,99.87,0,0,0.28,507.29,3519.55,26116138,99.92,0,0,0.16,507.27,3519.57,26116139,99.88,0,0,0.19,507.61,3519.23,26116140,99.2,0.01,0,6.27,507,3520.11,26116141,99.77,0,0,0.33,507.32,3519.8,26116142,99.84,0,0,0.43,508.28,3518.83,26116143,99.91,0,0,0.14,507.89,3519.22,26116144,99.9,0,0,0.16,507.87,3519.24,26116145,99.84,0,0,0.32,507.62,3519.51,26116146,99.91,0,0,0.16,507.72,3519.42,26116147,99.67,0,0,0.61,508.09,3519.05,26116148,99.47,0,0,0.16,507.71,3519.42,26116149,99.01,0,0,0.29,507.69,3519.41,26116150,99.8,0,0,0.3,507.68,3519.44,26116151,99.9,0,0,0.15,507.66,3519.45,26116152,99.79,0,0,0.59,507.99,3519.12,26116153,99.91,0,0,0.14,507.62,3519.48,26116154,99.93,0,0,0.16,507.59,3519.51,26116155,99.77,0,0,0.32,507.92,3519.2,26116156,99.93,0,0,0.16,507.98,3519.13,26116157,99.78,0,0,0.6,507.84,3519.27,26116158,99.93,0,0,0.15,507.44,3519.66,26116159,99.92,0,0,0.14,507.42,3519.69,26116160,99.82,0,0,0.3,507.66,3519.46,26116161,99.89,0,0,0.16,507.64,3519.48,26116162,99.78,0,0,0.5,508.5,3518.61,26116163,99.91,0,0,0.19,507.84,3519.27,26116164,99.91,0,0,0.16,507.81,3519.3,26116165,99.86,0,0,0.32,507.97,3519.15,26116166,99.89,0,0,0.16,508,3519.12,26116167,99.76,0,0,0.58,507.66,3519.45,26116168,99.89,0,0,0.14,506.93,3520.17,26116169,99.92,0,0,0.14,506.91,3520.19,26116170,99.73,0,0,0.32,508.19,3518.93,26116171,99.84,0,0,0.12,508.1,3519.02,26116172,99.73,0,0,0.51,508.36,3518.75,26116173,99.91,0,0,0.22,507.87,3519.24,26116174,99.93,0,0,0.15,507.99,3519.11,26116175,99.81,0,0,0.39,507.79,3519.33,26116176,99.89,0,0,0.18,507.73,3519.39,26116177,99.8,0.01,0,0.59,508.08,3519.04,26116178,99.86,0,0,0.16,507.9,3519.2,26116179,99.64,0,0,0.29,507.16,3519.94,26116180,99.78,0,0,0.34,507.59,3519.52,26116181,99.93,0,0,0.2,507.7,3519.41,26116182,99.88,0,0,0.14,507.75,3519.36,26116183,99.73,0,0,0.56,508.62,3518.48,26116184,99.91,0,0,0.15,507.94,3519.16,26116185,99.9,0,0,0.32,507.95,3519.17,26116186,99.93,0,0,0.14,507.91,3519.2,26116187,99.9,0,0,0.16,507.89,3519.22,26116188,99.76,0,0,0.56,508.22,3518.88,26116189,99.93,0,0,0.15,507.84,3519.26,26116190,99.81,0,0,0.34,507.85,3519.27,26116191,99.9,0,0,0.16,507.97,3519.15,26116192,99.89,0,0,0.14,507.98,3519.13,26116193,99.76,0,0,0.64,508.3,3518.8,26116194,99.9,0,0,0.17,507.92,3519.18,26116195,99.84,0,0,0.32,507.92,3519.2,26116196,99.9,0,0,0.19,507.89,3519.22,26116197,99.93,0,0,0.15,507.87,3519.23,26116198,99.8,0,0,0.59,508.35,3518.75,26116199,99.91,0,0,0.15,508.08,3519.02,26116200,99.79,0,0,0.37,506.5,3520.61,26116201,99.85,0.01,0,0.16,506.23,3520.88,26116202,99.93,0,0,0.15,506.21,3520.9,26116203,99.73,0.01,0,0.52,507.08,3520.02,26116204,99.92,0,0,0.21,506.86,3520.23,26116205,99.81,0,0,0.3,506.86,3520.25,26116206,99.83,0.01,0,0.13,506.91,3520.2,26116207,99.86,0,0,0.14,506.98,3520.13,26116208,99.78,0,0,0.63,507.36,3519.73,26116209,99.05,0,0,0.27,507.18,3519.89,26116210,99.81,0,0,0.3,507.15,3519.94,26116211,99.88,0,0,0.16,507.11,3519.97,26116212,99.8,0,0,0.14,507.09,3519.99,26116213,99.67,0.01,0,0.56,507.53,3519.54,26116214,99.9,0,0,0.14,507.19,3519.88,26116215,99.75,0,0,0.28,506.33,3520.76,26116216,99.92,0,0,0.14,506.18,3520.9,26116217,99.85,0,0,0.23,505.92,3521.16,26116218,99.74,0,0,0.36,506.32,3520.76,26116219,99.9,0,0,0.34,506.58,3520.49,26116220,99.81,0,0,0.29,507.44,3519.65,26116221,99.83,0,0,0.14,507.47,3519.62,26116222,99.88,0,0,0.16,507.42,3519.66,26116223,99.89,0,0,0.14,507.4,3519.67,26116224,99.79,0,0,0.59,506.71,3520.36,26116225,99.54,0,0,0.29,506.12,3520.96,26116226,99.91,0,0,0.16,506.07,3521.01,26116227,99.85,0.01,0.01,0.15,505.94,3521.13,26116228,99.92,0,0,0.16,505.96,3521.11,26116229,99.77,0,0,0.55,507.04,3520.02,26116230,99.69,0.01,0.01,0.29,506.91,3520.18,26116231,99.86,0,0,0.16,507.02,3520.06,26116232,99.9,0,0,0.14,507.01,3520.07,26116233,99.87,0,0,0.14,506.98,3520.09,26116234,99.74,0,0,0.52,507.51,3519.55,26116235,99.72,0,0,0.29,507.44,3519.64,26116236,99.84,0,0,0.14,507.42,3519.67,26116237,99.93,0,0,0.16,507.4,3519.69,26116238,99.88,0,0,0.14,507.34,3519.74,26116239,99.64,0,0,0.68,508.05,3519.01,26116240,99.76,0,0,0.28,507.04,3520.04,26116241,99.88,0,0,0.17,506.98,3520.1,26116242,99.87,0,0,0.15,506.93,3520.14,26116243,99.94,0,0,0.15,506.92,3520.15,26116244,99.65,0,0,0.43,507.75,3519.34,26116245,99.75,0,0,0.41,507.64,3519.48,26116246,99.9,0,0,0.15,507.62,3519.5,26116247,99.89,0,0,0.16,507.61,3519.5,26116248,99.89,0,0,0.14,507.59,3519.51,26116249,99.81,0,0,0.52,508.06,3519.04,26116250,99.77,0,0,0.31,507.26,3519.85,26116251,99.93,0,0,0.15,507.19,3519.92,26116252,99.9,0,0,0.14,507.17,3519.93,26116253,99.9,0,0,0.16,507.15,3519.95,26116254,99.73,0,0,0.41,507.54,3519.55,26116255,99.78,0,0,0.38,507.37,3519.74,26116256,99.9,0,0,0.17,507.36,3519.75,26116257,99.87,0,0,0.14,507.34,3519.77,26116258,99.92,0,0,0.16,507.44,3519.66,26116259,99.72,0,0,0.39,507.82,3519.27,26116260,99.65,0,0,0.39,507.45,3519.66,26116261,99.89,0,0,0.14,507.42,3519.69,26116262,99.92,0,0,0.16,507.39,3519.71,26116263,99.9,0,0,0.14,507.38,3519.72,26116264,99.89,0,0,0.15,507.34,3519.75,26116265,99.7,0,0,0.68,507.75,3519.36,26116266,99.88,0,0,0.16,507.09,3520.03,26116267,99.88,0,0,0.14,507.22,3519.88,26116268,99.93,0,0,0.14,507.23,3519.87,26116269,99.85,0,0,0.31,507.45,3519.62,26116270,99.59,0,0,0.66,507.98,3519.11,26116271,99.88,0,0,0.15,507.65,3519.43,26116272,99.88,0,0,0.16,507.63,3519.45,26116273,99.91,0,0,0.14,507.61,3519.46,26116274,99.9,0,0,0.16,507.59,3519.49,26116275,99.66,0,0,0.7,507.59,3519.52,26116276,99.9,0,0,0.13,507.08,3520.02,26116277,99.9,0.01,0.02,0.25,507.46,3519.63,26116278,99.92,0,0,0.16,507.44,3519.65,26116279,99.9,0,0,0.18,507.43,3519.66,26116280,99.59,0,0,0.7,508.03,3519.07,26116281,99.83,0,0,0.18,507.65,3519.44,26116282,99.87,0,0,0.18,507.64,3519.45,26116283,99.88,0,0,0.16,507.61,3519.47,26116284,99.92,0,0,0.14,507.6,3519.48,26116285,99.58,0,0,0.64,508.16,3518.94,26116286,99.88,0,0,0.2,507.56,3519.54,26116287,99.93,0,0,0.17,507.31,3519.78,26116288,99.91,0,0,0.15,507.44,3519.64,26116289,99.9,0,0,0.14,507.49,3519.59,26116290,99.61,0,0,0.71,507.87,3519.23,26116291,99.93,0,0,0.14,507.47,3519.63,26116292,99.9,0,0,0.15,507.46,3519.63,26116293,99.89,0,0,0.17,507.43,3519.66,26116294,99.87,0,0,0.18,507.41,3519.66,26116295,99.53,0,0,0.56,506.97,3520.13,26116296,99.89,0,0,0.27,507.15,3519.94,26116297,99.9,0,0,0.16,507.12,3519.96,26116298,99.92,0,0,0.14,507.11,3519.97,26116299,99.83,0,0,0.29,506.83,3520.23,26116300,99.63,0,0,0.52,507.46,3519.62,26116301,99.9,0,0,0.26,506.99,3520.08,26116302,99.85,0,0,0.17,506.98,3520.08,26116303,99.92,0,0,0.15,506.95,3520.11,26116304,99.88,0,0,0.14,506.94,3520.12,26116305,99.74,0,0,0.28,507.17,3519.9,26116306,99.79,0,0,0.55,508.25,3518.82,26116307,99.9,0,0,0.14,507.62,3519.43,26116308,99.93,0,0,0.15,507.61,3519.44,26116309,99.83,0,0,0.13,507.58,3519.46,26116310,99.84,0,0,0.27,507.58,3519.48,26116311,99.75,0,0,0.55,508.14,3518.92,26116312,99.91,0,0,0.14,507.95,3519.12,26116313,99.85,0,0,0.15,507.96,3519.1,26116314,99.87,0,0,0.16,507.93,3519.13,26116315,99.83,0,0,0.29,507.68,3519.39,26116316,99.77,0,0,0.55,508.01,3519.05,26116317,99.89,0,0,0.14,507.62,3519.43,26116318,99.84,0,0,0.15,507.6,3519.45,26116319,99.92,0,0,0.14,507.58,3519.46,26116320,99.56,0,0,0.26,506.37,3520.69,26116321,99.7,0,0,0.57,507.47,3519.59,26116322,99.89,0,0,0.16,507.78,3519.27,26116323,99.88,0,0,0.15,507.94,3519.11,26116324,99.9,0,0,0.15,507.93,3519.12,26116325,99.81,0,0,0.31,508.25,3518.81,26116326,99.77,0,0,0.58,508.6,3518.46,26116327,99.92,0,0,0.14,507.87,3519.18,26116328,99.92,0,0,0.15,507.86,3519.19,26116329,99.82,0,0,0.31,507.61,3519.41,26116330,99.75,0,0,0.32,507.59,3519.44,26116331,99.78,0,0,0.46,507.98,3519.05,26116332,99.89,0,0,0.33,507.8,3519.23,26116333,99.78,0,0,0.14,507.78,3519.25,26116334,99.83,0,0,0.16,507.89,3519.15,26116335,99.63,0,0,0.27,506.76,3520.3,26116336,99.73,0,0,0.4,507.23,3519.83,26116337,99.86,0,0,0.33,507.41,3519.63,26116338,99.85,0,0,0.15,507.39,3519.65,26116339,99.88,0,0,0.14,507.36,3519.68,26116340,99.85,0,0,0.27,507.62,3519.44,26116341,99.79,0,0,0.3,507.94,3519.11,26116342,99.9,0,0,0.36,508.42,3518.63,26116343,99.92,0,0,0.16,508.04,3519,26116344,99.9,0,0,0.14,508.02,3519.02,26116345,99.82,0,0,0.28,508.2,3518.86,26116346,99.93,0,0,0.16,508.17,3518.89,26116347,99.75,0,0,0.59,508.39,3518.66,26116348,99.87,0,0,0.14,508.1,3518.94,26116349,99.9,0,0,0.14,508.07,3518.97,26116350,99.7,0,0,0.26,507.6,3519.46,26116351,99.91,0,0,0.2,507.56,3519.5,26116352,99.64,0,0,0.54,508.1,3518.95,26116353,99.87,0,0,0.14,507.81,3519.24,26116354,99.86,0,0,0.14,507.4,3519.64,26116355,99.78,0,0,0.32,506.23,3520.83,26116356,99.91,0,0,0.14,506.18,3520.87,26116357,99.77,0,0,0.53,506.51,3520.53,26116358,99.9,0,0,0.16,506.13,3520.91,26116359,99.87,0,0,0.27,507.35,3519.67,26116360,99.78,0,0,0.3,506.38,3520.65,26116361,99.89,0,0,0.16,506.35,3520.68,26116362,99.75,0,0,0.51,507.08,3519.95,26116363,99.9,0,0,0.2,506.79,3520.23,26116364,99.92,0,0,0.15,506.77,3520.26,26116365,99.83,0,0,0.29,506.72,3520.33,26116366,99.91,0,0,0.13,506.73,3520.32,26116367,99.75,0,0,0.41,507.06,3519.98,26116368,99.91,0,0,0.29,506.68,3520.36,26116369,99.85,0,0,0.14,506.65,3520.39,26116370,99.73,0,0,0.26,507.38,3519.68,26116371,99.9,0,0,0.14,507.37,3519.69,26116372,99.77,0,0,0.58,507.64,3519.41,26116373,99.91,0,0,0.14,507.09,3519.96,26116374,99.93,0,0,0.16,507.08,3519.97,26116375,99.78,0,0,0.32,507.31,3519.76,26116376,99.89,0,0,0.14,507.31,3519.75,26116377,99.77,0,0,0.55,507.81,3519.25,26116378,99.88,0,0,0.17,507.43,3519.62,26116379,99.89,0,0,0.14,507.42,3519.63,26116380,99.64,0,0,0.27,507.41,3519.66,26116381,99.88,0,0,0.14,507.4,3519.66,26116382,99.9,0,0,0.16,507.37,3519.69,26116383,99.76,0,0,0.54,507.89,3519.16,26116384,99.33,0,0,0.14,507.33,3519.72,26116385,99.73,0,0,0.34,506.86,3520.21,26116386,99.93,0,0,0.12,506.82,3520.24,26116387,99.9,0,0,0.18,506.83,3520.23,26116388,99.81,0,0,0.54,507.52,3519.53,26116389,99.83,0,0,0.32,507.43,3519.6,26116390,99.79,0,0,0.3,507.19,3519.86,26116391,99.91,0,0,0.14,507.17,3519.87,26116392,99.9,0,0,0.13,507.14,3519.89,26116393,99.76,0,0,0.55,507.69,3519.34,26116394,99.92,0,0,0.14,507.35,3519.69,26116395,99.73,0,0,0.32,507.62,3519.45,26116396,99.91,0,0,0.13,507.59,3519.47,26116397,99.87,0,0,0.24,507.58,3519.48,26116398,99.76,0,0,0.58,508.12,3518.93,26116399,99.84,0,0,0.14,507.28,3519.76,26116400,99.81,0,0,0.29,507.09,3519.97,26116401,99.88,0,0,0.14,507.2,3519.85,26116402,99.88,0,0,0.16,507.17,3519.88,26116403,99.63,0,0,0.48,507.63,3519.41,26116404,99.9,0,0,0.2,507.13,3519.9,26116405,99.67,0,0,0.31,506.18,3520.88,26116406,99.8,0,0,0.18,506.13,3520.92,26116407,99.75,0,0,0.19,506.82,3520.23,26116408,99.73,0,0,0.4,507.25,3519.79,26116409,99.87,0,0,0.28,507.05,3519.99,26116410,99.57,0,0,0.3,507.28,3519.77,26116411,99.88,0,0,0.16,507.38,3519.66,26116412,99.76,0,0,0.15,507.43,3519.61,26116413,99.74,0,0,0.38,507.76,3519.27,26116414,99.86,0,0,0.31,507.37,3519.65,26116415,99.67,0,0,0.33,507.62,3519.43,26116416,99.76,0,0,0.14,507.59,3519.45,26116417,99.85,0,0,0.17,507.58,3519.46,26116418,96.26,0.35,0.01,64.9,514.13,3512.94,26116419,98.27,0,0,195.72,516.14,3510.9,26116420,99.78,0,0,0.29,509.92,3516.81,26116421,99.86,0,0,0.17,509.89,3516.84,26116422,99.88,0,0,0.18,509.88,3516.84,26116423,99.85,0,0,0.16,509.86,3516.87,26116424,99.64,0,0,0.59,508.21,3518.57,26116425,99.75,0,0,0.28,507.43,3519.37,26116426,99.85,0,0,0.36,507.17,3519.63,26116427,99.81,0,0,0.14,507.13,3519.66,26116428,99.83,0,0,0.16,507.13,3519.67,26116429,99.67,0,0,0.55,507.44,3519.36,26116430,99.71,0,0,0.27,507.61,3519.22,26116431,99.85,0,0,0.14,507.63,3519.19,26116432,99.83,0,0,0.16,507.76,3519.06,26116433,99.82,0,0,0.14,507.73,3519.08,26116434,99.71,0,0,0.54,508.07,3518.74,26116435,99.75,0,0,0.34,507.73,3519.09,26116436,99.83,0,0,0.14,507.69,3519.13,26116437,99.82,0,0,0.16,507.68,3519.13,26116438,99.8,0,0,0.16,507.65,3519.16,26116439,99.68,0,0,0.56,508.29,3518.52,26116440,99.54,0,0,0.28,507.64,3519.2,26116441,99.77,0,0,0.17,507.63,3519.21,26116442,99.81,0,0,0.14,507.6,3519.23,26116443,99.78,0,0,0.16,507.59,3519.24,26116444,98.99,0,0,0.58,508.11,3518.71,26116445,99.62,0.01,0.01,0.29,507.1,3519.74,26116446,99.75,0,0,0.21,506.89,3519.94,26116447,99.8,0,0,0.14,506.86,3519.96,26116448,99.83,0,0,0.14,506.84,3519.99,26116449,99.47,0,0,0.52,507.71,3519.11,26116450,99.61,0,0,0.39,506.99,3519.84,26116451,99.82,0,0,0.16,506.97,3519.86,26116452,99.73,0,0,0.16,506.94,3519.89,26116453,99.71,0,0,0.15,506.92,3519.89,26116454,99.57,0,0,0.54,507.31,3519.52,26116455,99.67,0,0,0.29,507.16,3519.69,26116456,99.81,0,0,0.13,507.12,3519.72,26116457,99.71,0,0,0.21,506.87,3519.97,26116458,99.78,0,0,0.15,506.84,3520,26116459,99.63,0,0,0.43,507.38,3519.44,26116460,99.67,0,0,0.41,507.46,3519.39,26116461,99.65,0,0,0.16,507.47,3519.37,26116462,99.78,0,0,0.14,507.45,3519.39,26116463,99.69,0,0,0.16,507.42,3519.41,26116464,99.6,0,0,0.15,507.39,3519.44,26116465,99.42,0,0,0.69,506.98,3519.87,26116466,99.73,0,0,0.14,506.63,3520.21,26116467,99.7,0,0,0.18,506.41,3520.43,26116468,99.68,0,0,0.14,506.35,3520.48,26116469,99.74,0,0,0.14,506.34,3520.49,26116470,99.28,0,0,0.66,507.92,3518.92,26116471,99.8,0,0,0.16,507.62,3519.22,26116472,99.73,0,0,0.14,507.7,3519.13,26116473,99.8,0,0,0.15,507.69,3519.14,26116474,99.81,0,0,0.15,507.66,3519.16,26116475,99.51,0,0,0.73,507.42,3519.42,26116476,99.78,0,0,0.12,506.91,3519.93,26116477,99.82,0,0,0.16,506.88,3519.95,26116478,99.78,0,0,0.14,506.87,3519.96,26116479,99.71,0,0,0.28,507.82,3518.99,26116480,99.54,0,0,0.73,508.33,3518.49,26116481,99.81,0,0,0.18,507.55,3519.26,26116482,99.83,0,0,0.18,507.54,3519.27,26116483,99.82,0,0,0.18,507.66,3519.15,26116484,99.82,0,0,0.18,507.72,3519.1,26116485,99.5,0,0,0.6,507.62,3519.22,26116486,99.83,0,0,0.27,507.7,3519.13,26116487,99.8,0,0,0.16,507.67,3519.16,26116488,99.78,0,0,0.18,507.66,3519.17,26116489,99.7,0,0,0.16,507.63,3519.2,26116490,99.54,0,0,0.73,508.05,3518.79,26116491,99.85,0,0,0.19,507.86,3518.98,26116492,99.79,0,0,0.18,507.83,3519,26116493,99.81,0,0,0.18,507.81,3519.01,26116494,99.81,0,0,0.18,507.94,3518.88,26116495,99.54,0,0,0.73,508.33,3518.51,26116496,99.77,0,0,0.18,507.95,3518.89,26116497,99.8,0,0,0.17,507.94,3518.89,26116498,99.79,0,0,0.16,507.91,3518.92,26116499,99.78,0,0,0.14,507.88,3518.94,26116500,99.47,0,0,0.48,508.55,3518.29,26116501,99.82,0,0,0.39,507.37,3519.47,26116502,99.81,0,0,0.14,507.36,3519.47,26116503,99.8,0,0,0.13,507.33,3519.5,26116504,99.77,0,0,0.16,507.31,3519.51,26116505,99.1,0,0,0.29,507.45,3519.38,26116506,99.67,0,0,0.54,508.32,3518.52,26116507,99.8,0,0,0.16,507.94,3518.89,26116508,99.81,0,0,0.14,507.92,3518.91,26116509,99.62,0,0,0.27,507.22,3519.58,26116510,99.63,0,0,0.29,506.93,3519.89,26116511,99.63,0,0,0.57,507.46,3519.35,26116512,99.8,0,0,0.15,507.11,3519.7,26116513,99.79,0,0,0.15,507.1,3519.7,26116514,99.84,0,0,0.15,507.07,3519.73,26116515,99.67,0,0,0.3,507.08,3519.73,26116516,99.62,0,0,0.57,507.42,3519.39,26116517,99.81,0,0,0.18,507.23,3519.58,26116518,99.83,0,0,0.16,507.2,3519.61,26116519,99.85,0,0,0.16,507.18,3519.62,26116520,99.72,0,0,0.36,506.93,3519.88,26116521,99.69,0,0,0.59,507.61,3519.21,26116522,99.8,0,0,0.16,506.88,3519.94,26116523,99.8,0,0,0.18,506.85,3519.96,26116524,99.8,0,0,0.16,506.84,3519.97,26116525,98.24,0,0,15.35,507.74,3519.6,26116526,99.67,0,0,0.53,506.99,3519.88,26116527,99.78,0,0,0.25,506.93,3519.94,26116528,99.82,0,0,0.17,507.02,3519.85,26116529,99.75,0,0,0.17,506.99,3519.87,26116530,99.61,0,0,0.35,507.46,3519.42,26116531,99.69,0,0,0.57,507.74,3519.14,26116532,99.78,0,0,0.17,507.2,3519.68,26116533,99.82,0,0,0.17,507.18,3519.69,26116534,99.77,0,0,0.16,507.17,3519.7,26116535,99.65,0.01,0.02,0.36,507.45,3519.43,26116536,99.69,0,0,0.61,507.64,3519.24,26116537,99.81,0,0,0.16,507.19,3519.69,26116538,99.82,0,0,0.17,507.16,3519.71,26116539,99.65,0,0,0.3,507.15,3519.7,26116540,99.69,0,0,0.3,507.14,3519.72,26116541,99.74,0,0,0.17,507.31,3519.55,26116542,99.7,0,0,0.55,506.47,3520.39,26116543,93.25,1.98,0.01,48.46,521.35,3498.06,26116544,99.79,0,0,32.45,509.12,3513.84,26116545,99.73,0,0,0.45,509.35,3513.62,26116546,99.84,0,0,0.2,509.34,3513.63,26116547,99.65,0,0,0.59,509.47,3513.5,26116548,99.8,0,0,0.22,508.59,3514.39,26116549,99.79,0,0,0.2,506.62,3516.48,26116550,99.66,0,0,0.36,506.62,3516.5,26116551,99.79,0,0,0.15,506.59,3516.52,26116552,99.66,0,0,0.56,506.92,3516.19,26116553,99.83,0,0,0.18,506.65,3516.46,26116554,99.83,0,0,0.21,506.7,3516.41,26116555,99.69,0,0,0.35,506.7,3516.43,26116556,99.81,0,0,0.18,506.69,3516.44,26116557,99.69,0,0,0.56,507.37,3515.75,26116558,99.76,0,0,0.14,506.65,3516.47,26116559,99.81,0,0,0.15,506.62,3516.49,26116560,99.65,0,0,0.27,506.39,3516.74,26116561,99.74,0,0,0.18,506.37,3516.76,26116562,99.55,0,0,0.56,506.93,3516.19,26116563,99.8,0,0,0.16,506.82,3516.3,26116564,99.76,0,0,0.16,506.79,3516.32,26116565,99.63,0,0,0.31,505.98,3517.15,26116566,99.79,0,0,0.17,505.98,3517.15,26116567,99.58,0,0,0.55,505.72,3517.41,26116568,99.75,0,0,0.17,504.71,3518.41,26116569,99.52,0,0,0.28,506.34,3516.76,26116570,99.72,0,0,0.32,506.41,3516.7,26116571,99.83,0,0,0.14,506.38,3516.75,26116572,99.04,0,0,0.4,506.87,3516.25,26116573,99.76,0,0,0.29,506.83,3516.29,26116574,99.78,0,0,0.15,506.8,3516.31,26116575,99.57,0,0,0.27,506.81,3516.32,26116576,99.78,0,0,0.16,506.82,3516.3,26116577,99.65,0,0,0.57,507.22,3515.9,26116578,99.79,0,0,0.14,506.93,3516.19,26116579,99.78,0,0,0.14,506.91,3516.2,26116580,99.69,0,0,0.28,506.66,3516.47,26116581,99.83,0,0,0.18,506.64,3516.49,26116582,99.82,0,0,0.16,506.62,3516.5,26116583,99.72,0,0,0.54,507.2,3515.92,26116584,99.82,0,0,0.14,506.82,3516.29,26116585,99.73,0,0,0.31,506.84,3516.29,26116586,99.83,0,0,0.19,506.8,3516.32,26116587,99.84,0,0,0.17,506.8,3516.32,26116588,99.69,0,0,0.56,507.15,3515.97,26116589,99.9,0,0,0.15,506.94,3516.17,26116590,99.73,0,0,0.34,506.69,3516.43,26116591,99.83,0,0,0.18,506.68,3516.44,26116592,99.88,0,0,0.2,506.65,3516.47,26116593,99.7,0,0,0.53,507,3516.11,26116594,99.86,0,0,0.14,506.61,3516.5,26116595,99.7,0,0,0.3,507.11,3516.02,26116596,99.86,0,0,0.14,507.08,3516.04,26116597,99.92,0,0,0.16,507.06,3516.06,26116598,99.74,0,0,0.54,507.54,3515.57,26116599,99.66,0,0,0.29,506.77,3516.34,26116600,99.73,0,0,0.3,506.92,3516.21,26116601,99.88,0,0,0.17,506.92,3516.2,26116602,99.89,0,0,0.18,506.9,3516.22,26116603,99.75,0,0,0.58,507.24,3515.88,26116604,99.87,0,0,0.16,506.85,3516.28,26116605,99.66,0,0,0.29,507.17,3515.98,26116606,99.88,0,0,0.15,507.07,3516.07,26116607,99.85,0,0,0.16,507.04,3516.11,26116608,99.68,0,0,0.55,507.27,3515.86,26116609,99.88,0,0,0.14,506.76,3516.37,26116610,99.76,0,0,0.33,506.69,3516.45,26116611,99.89,0,0,0.18,506.67,3516.47,26116612,99.87,0,0,0.14,506.63,3516.5,26116613,99.66,0,0,0.54,506.84,3516.29,26116614,99.89,0,0,0.17,506.1,3517.03,26116615,99.75,0,0,0.29,506.6,3516.55,26116616,99.85,0,0,0.17,506.58,3516.57,26116617,99.86,0.01,0.39,0.16,506.56,3516.58,26116618,99.73,0,0,0.44,507.11,3516.03,26116619,99.86,0,0,0.32,506.87,3516.26,26116620,99.59,0,0,0.33,506.94,3516.21,26116621,99.87,0,0,0.18,506.92,3516.23,26116622,99.88,0,0,0.15,506.9,3516.25,26116623,99.9,0,0,0.15,506.88,3516.26,26116624,99.69,0,0,0.56,507.44,3515.69,26116625,99.76,0,0,0.29,507.1,3516.04,26116626,99.93,0,0,0.14,507.1,3516.05,26116627,99.9,0,0,0.16,507.06,3516.07,26116628,99.9,0,0,0.14,507.05,3516.08,26116629,99.69,0,0,0.68,507.14,3515.99,26116630,99.81,0,0,0.35,507.02,3516.12,26116631,99.89,0,0,0.17,507.18,3515.96,26116632,99.32,0,0,0.16,507.15,3515.98,26116633,99.87,0,0,0.14,507.14,3515.98,26116634,99.75,0,0,0.56,506.89,3516.23,26116635,99.69,0,0,0.31,505.91,3517.23,26116636,99.83,0,0,0.13,505.86,3517.27,26116637,99.86,0,0,0.21,505.85,3517.28,26116638,99.89,0,0,0.14,505.82,3517.3,26116639,99.74,0,0,0.51,506.96,3516.17,26116640,99.8,0,0,0.33,506.79,3516.36,26116641,99.84,0,0,0.16,506.91,3516.23,26116642,99.87,0,0,0.14,506.92,3516.22,26116643,99.88,0,0,0.15,506.9,3516.23,26116644,99.75,0,0,0.4,507.42,3515.7,26116645,99.79,0,0,0.42,506.4,3516.74,26116646,99.91,0,0,0.16,506.35,3516.78,26116647,99.81,0,0,0.17,506.16,3516.97,26116648,99.89,0,0,0.14,506.07,3517.06,26116649,99.76,0,0,0.48,506.83,3516.3,26116650,99.66,0,0,0.38,506.56,3516.59,26116651,99.86,0,0,0.17,506.53,3516.62,26116652,99.89,0,0,0.14,506.56,3516.59,26116653,99.91,0,0,0.14,506.68,3516.47,26116654,99.76,0,0,0.39,507.49,3515.65,26116655,99.77,0,0,0.43,507.14,3516.02,26116656,99.91,0,0,0.14,507.13,3516.03,26116657,99.9,0,0,0.17,507.1,3516.05,26116658,99.9,0,0,0.14,507.09,3516.06,26116659,99.59,0,0,0.51,507.43,3515.7,26116660,99.79,0,0,0.47,507.31,3515.83,26116661,99.85,0,0,0.16,506.45,3516.69,26116662,99.9,0,0,0.15,506.29,3516.84,26116663,99.85,0,0,0.17,506.26,3516.87,26116664,99.71,0,0,0.39,506.75,3516.37,26116665,99.8,0,0,0.48,506.66,3516.48,26116666,99.9,0,0,0.13,506.66,3516.47,26116667,99.8,0,0,0.16,506.62,3516.5,26116668,99.9,0,0,0.14,506.62,3516.5,26116669,99.87,0,0,0.14,506.58,3516.54,26116670,99.56,0,0,0.78,506.73,3516.41,26116671,99.91,0,0,0.14,506.32,3516.81,26116672,99.84,0,0,0.13,506.31,3516.81,26116673,99.89,0,0,0.18,506.28,3516.84,26116674,99.89,0,0,0.18,506.27,3516.84,26116675,99.64,0,0,0.7,506.25,3516.88,26116676,99.87,0,0,0.15,506.05,3517.07,26116677,99.81,0,0,0.18,506.15,3516.96,26116678,99.88,0,0,0.16,506.15,3516.96,26116679,99.87,0,0,0.14,506.12,3516.99,26116680,99.56,0,0,0.63,506.25,3516.87,26116681,99.84,0,0,0.2,505.61,3517.51,26116682,99.8,0,0,0.16,505.59,3517.53,26116683,99.83,0,0,0.16,505.56,3517.55,26116684,99.87,0,0,0.16,505.54,3517.57,26116685,99.58,0,0,0.77,506.63,3516.49,26116686,99.85,0,0,0.14,506.24,3516.87,26116687,99.86,0,0,0.14,506.28,3516.83,26116688,99.9,0,0,0.15,506.42,3516.69,26116689,99.74,0,0,0.29,506.42,3516.66,26116690,99.6,0,0,0.67,507.21,3515.89,26116691,99.87,0,0,0.14,506.63,3516.46,26116692,99.75,0,0,0.16,506.6,3516.5,26116693,99.83,0,0,0.14,506.57,3516.52,26116694,99.81,0,0,0.14,506.54,3516.54,26116695,99.44,0,0,0.54,506.29,3516.81,26116696,99.82,0,0,0.3,506.26,3516.83,26116697,99.88,0,0,0.18,506.51,3516.58,26116698,99.89,0,0,0.15,506.66,3516.43,26116699,99.9,0,0,0.15,506.64,3516.44,26116700,99.56,0,0,0.44,506.75,3516.35,26116701,99.9,0,0,0.38,505.65,3517.45,26116702,99.88,0,0,0.15,505.62,3517.47,26116703,99.9,0,0,0.14,505.58,3517.5,26116704,99.91,0,0,0.16,505.56,3517.52,26116705,99.76,0,0,0.29,505.57,3517.54,26116706,99.76,0,0,0.56,507.33,3515.77,26116707,99.87,0,0,0.18,506.4,3516.69,26116708,99.89,0,0,0.14,506.29,3516.8,26116709,99.87,0,0,0.15,506.41,3516.67,26116710,99.75,0,0,0.29,506.89,3516.21,26116711,99.74,0,0,0.55,507.24,3515.86,26116712,99.86,0,0,0.16,506.6,3516.49,26116713,99.86,0,0,0.14,506.58,3516.51,26116714,99.88,0,0,0.14,506.56,3516.52,26116715,99.7,0,0,0.34,506.81,3516.29,26116716,99.73,0.01,0.01,0.61,507.14,3515.96,26116717,99.91,0,0,0.15,506.91,3516.18,26116718,99.87,0,0,0.17,506.87,3516.21,26116719,99.7,0,0,0.41,506.63,3516.42,26116720,99.79,0.01,0.14,0.38,506.6,3516.47,26116721,99.74,0,0,0.48,507.15,3515.92,26116722,99.88,0,0,0.19,506.88,3516.19,26116723,99.89,0,0,0.15,506.87,3516.19,26116724,99.84,0,0,0.14,506.84,3516.22,26116725,99.63,0,0,0.34,506.84,3516.24,26116726,99.73,0,0,0.55,507.09,3515.98,26116727,99.85,0,0,0.16,506.54,3516.52,26116728,99.83,0,0,0.14,506.53,3516.53,26116729,99.8,0,0,0.14,506.5,3516.55,26116730,99.77,0,0,0.27,506.5,3516.56,26116731,99.73,0,0,0.56,507.08,3515.98,26116732,99.87,0,0,0.18,506.58,3516.47,26116733,99.86,0.04,1.3,0.31,506.52,3516.51,26116734,99.88,0.02,0.64,0.26,506.49,3516.53,26116735,99.73,0,0,0.34,506.79,3516.25,26116736,99.7,0,0,0.31,507.13,3515.91,26116737,99.84,0.01,0.4,0.51,506.76,3516.27,26116738,99.86,0.01,0.76,0.18,506.84,3516.17,26116739,99.86,0,0,0.16,506.82,3516.19,26116740,99.61,0.02,0.76,0.41,506.83,3516.19,26116741,99.67,0,0.02,0.34,507.15,3515.86,26116742,99.8,0,0,0.41,506.73,3516.28,26116743,99.85,0,0,0.15,506.72,3516.29,26116744,99.84,0,0,0.14,506.69,3516.31,26116745,99.8,0,0,0.3,507.17,3515.85,26116746,99.85,0,0,0.14,507.16,3515.85,26116747,99.71,0,0,0.55,507.22,3515.78,26116748,99.85,0,0,0.16,506.81,3516.19,26116749,99.68,0,0,0.39,506.78,3516.2,26116750,99.78,0,0,0.33,507.03,3515.97,26116751,99.89,0,0,0.13,507,3515.99,26116752,99.73,0,0,0.55,507.84,3515.14,26116753,98.46,0,0,0.15,507.21,3515.77,26116754,99.82,0,0,0.2,507.18,3515.8,26116755,99.81,0,0,0.33,506.7,3516.3,26116756,99.83,0,0.01,0.18,506.84,3516.16,26116757,99.73,0,0,0.48,507.52,3515.47,26116758,99.88,0,0,0.33,507.06,3515.93,26116759,99.88,0,0.01,0.17,507.03,3515.95,26116760,99.74,0,0,0.33,506.04,3516.96,26116761,99.84,0,0,0.16,506.02,3516.97,26116762,99.73,0,0,0.43,506.52,3516.48,26116763,99.89,0,0,0.3,506.71,3516.29,26116764,99.84,0.01,0.23,0.21,506.71,3516.29,26116765,99.85,0,0,0.35,506.96,3516.04,26116766,99.92,0,0,0.2,506.94,3516.07,26116767,99.74,0,0,0.52,507.04,3515.96,26116768,99.9,0,0,0.21,506.59,3516.4,26116769,99.89,0,0,0.17,506.58,3516.41,26116770,99.73,0,0,0.32,506.83,3516.18,26116771,99.86,0,0,0.16,506.81,3516.2,26116772,99.73,0,0,0.46,507.42,3515.58,26116773,99.9,0,0,0.3,506.76,3516.24,26116774,99.9,0,0,0.17,506.74,3516.25,26116775,99.66,0,0,0.29,506.27,3516.73,26116776,99.89,0,0,0.17,506.22,3516.78,26116777,99.89,0,0,0.14,506.19,3516.8,26116778,99.79,0,0,0.55,507.38,3515.61,26116779,99.78,0,0,0.29,507.3,3515.67,26116780,99.79,0,0,0.28,506.82,3516.16,26116781,99.93,0,0,0.16,506.77,3516.21,26116782,99.92,0,0,0.14,506.76,3516.21,26116783,94.87,0.36,0.01,261.29,520.45,3502.2,26116784,99.9,0,0,0.2,509.67,3513.04,26116785,99.8,0,0,0.31,509.43,3513.3,26116786,99.89,0,0,0.13,509.57,3513.16,26116787,99.85,0,0,0.16,509.56,3513.17,26116788,99.72,0,0,0.56,508.46,3514.3,26116789,99.93,0,0,0.16,507.36,3515.41,26116790,99.76,0,0,0.29,505.91,3516.88,26116791,99.92,0,0,0.16,505.87,3516.92,26116792,99.91,0,0,0.16,505.84,3516.94,26116793,99.78,0,0,0.58,507.13,3515.65,26116794,99.85,0,0,0.15,507.28,3515.49,26116795,99.72,0,0,0.3,507.05,3515.74,26116796,99.86,0,0,0.17,507.02,3515.77,26116797,99.91,0,0,0.15,507.2,3515.59,26116798,99.77,0,0,0.55,507.65,3515.13,26116799,99.9,0,0,0.17,507.4,3515.37,26116800,99.69,0,0,0.3,507.41,3515.38,26116801,99.81,0,0,0.17,507.37,3515.41,26116802,99.89,0,0,0.16,507.36,3515.42,26116803,99.78,0,0,0.55,507.62,3515.15,26116804,99.88,0,0,0.15,506.59,3516.21,26116805,99.83,0,0,0.3,506.82,3516,26116806,99.88,0,0,0.18,506.8,3516.02,26116807,99.92,0,0,0.14,506.79,3516.03,26116808,99.77,0,0,0.39,507.3,3515.51,26116809,99.62,0,0,0.43,507.23,3515.56,26116810,99.76,0,0,0.29,507.43,3515.38,26116811,99.91,0,0,0.16,507.39,3515.41,26116812,99.8,0,0,0.14,507.38,3515.42,26116813,99.72,0,0,0.54,507.7,3515.09,26116814,99.89,0,0,0.15,507.34,3515.45,26116815,99.72,0,0,0.32,507.57,3515.23,26116816,99.86,0,0,0.16,506.86,3515.94,26116817,99.82,0,0,0.21,506.31,3516.49,26116818,99.84,0,0,0.14,506.44,3516.35,26116819,99.65,0,0,0.55,506.87,3515.92,26116820,99.79,0,0,0.32,506.42,3516.38,26116821,99.87,0,0,0.16,506.39,3516.4,26116822,99.87,0,0,0.14,506.39,3516.4,26116823,99.87,0,0,0.15,506.35,3516.43,26116824,99.78,0,0,0.54,506.7,3516.08,26116825,99.75,0,0,0.34,506.58,3516.22,26116826,99.93,0,0,0.14,506.58,3516.22,26116827,99.85,0,0,0.2,506.24,3516.55,26116828,99.85,0,0,0.15,506.05,3516.74,26116829,99.76,0,0,0.59,506.87,3515.91,26116830,99.73,0,0,0.3,506.45,3516.34,26116831,99.85,0,0,0.15,506.42,3516.37,26116832,99.88,0,0,0.16,506.38,3516.4,26116833,99.82,0,0,0.14,506.38,3516.4,26116834,99.75,0,0,0.55,506.86,3515.92,26116835,99.75,0,0,0.3,506.6,3516.19,26116836,99.87,0,0,0.15,506.57,3516.22,26116837,99.84,0,0,0.16,506.54,3516.24,26116838,99.83,0,0,0.18,506.52,3516.26,26116839,99.58,0,0,0.73,507.43,3515.33,26116840,99.79,0,0,0.35,506.66,3516.1,26116841,99.9,0,0,0.14,506.64,3516.12,26116842,99.86,0,0,0.18,506.61,3516.14,26116843,99.9,0,0,0.16,506.6,3516.15,26116844,99.78,0,0,0.59,507.21,3515.54,26116845,99.73,0,0,0.39,506.35,3516.42,26116846,99.86,0,0,0.18,506.32,3516.44,26116847,99.86,0,0,0.18,506.28,3516.48,26116848,99.83,0,0,0.18,506.26,3516.49,26116849,99.75,0,0,0.38,506.67,3516.07,26116850,99.72,0,0,0.57,506.01,3516.75,26116851,99.92,0,0,0.21,505.89,3516.88,26116852,99.86,0,0,0.2,505.86,3516.89,26116853,99.93,0,0,0.2,505.83,3516.92,26116854,99.78,0,0,0.45,506.26,3516.49,26116855,99.69,0,0,0.45,506.56,3516.2,26116856,99.84,0,0,0.16,506.53,3516.23,26116857,99.89,0,0,0.17,506.51,3516.24,26116858,99.89,0,0,0.18,506.48,3516.27,26116859,99.9,0,0,0.16,506.61,3516.14,26116860,99.52,0,0,0.73,506.9,3515.87,26116861,99.87,0.03,0.83,0.21,506.13,3516.63,26116862,99.87,0,0,0.19,506.11,3516.65,26116863,99.9,0,0,0.17,506.08,3516.69,26116864,99.85,0,0,0.17,506.06,3516.69,26116865,99.58,0,0,0.7,506.98,3515.79,26116866,99.88,0,0,0.17,506.78,3515.99,26116867,99.86,0.02,0.63,0.16,506.78,3515.98,26116868,99.85,0,0,0.2,506.77,3515.98,26116869,99.68,0,0,0.32,506.99,3515.74,26116870,99.62,0,0,0.65,507.01,3515.74,26116871,99.85,0,0,0.2,506.77,3515.97,26116872,99.79,0,0,0.18,506.9,3515.84,26116873,99.88,0,0,0.15,506.87,3515.86,26116874,99.83,0,0,0.15,506.84,3515.89,26116875,99.65,0,0,0.72,507.11,3515.64,26116876,99.88,0,0,0.14,506.81,3515.93,26116877,99.86,0,0,0.18,506.79,3515.94,26116878,99.9,0,0,0.18,506.77,3515.96,26116879,99.9,0,0,0.14,506.75,3515.97,26116880,99.63,0,0,0.68,506.69,3516.05,26116881,99.78,0,0,0.16,506.48,3516.26,26116882,99.92,0,0,0.14,506.61,3516.12,26116883,99.9,0,0,0.14,506.63,3516.11,26116884,99.91,0,0,0.15,506.61,3516.12,26116885,99.64,0,0,0.74,506.64,3516.1,26116886,99.88,0,0,0.14,506.83,3515.9,26116887,99.83,0,0,0.16,506.67,3516.06,26116888,99.89,0,0,0.16,506.55,3516.18,26116889,99.9,0,0,0.14,506.53,3516.2,26116890,99.53,0,0,0.5,506.91,3515.83,26116891,99.89,0,0.01,0.43,506.51,3516.23,26116892,99.88,0,0,0.18,506.6,3516.15,26116893,99.82,0.01,0.05,0.28,506.56,3516.19,26116894,99.88,0.04,1.33,0.21,506.52,3516.23,26116895,99.5,0.03,1.7,0.7,507.43,3515.32,26116896,99.88,0,0,0.28,506.82,3515.92,26116897,99.85,0,0,0.13,506.79,3515.95,26116898,99.89,0,0,0.16,506.78,3515.95,26116899,99.85,0,0,0.29,506.74,3515.97,26116900,99.82,0,0,0.3,507.01,3515.72,26116901,99.67,0,0,0.56,507.66,3515.06,26116902,99.86,0,0,0.14,506.95,3515.77,26116903,99.89,0,0,0.15,506.98,3515.73,26116904,99.86,0,0,0.15,507.09,3515.64,26116905,99.77,0,0,0.29,506.62,3516.13,26116906,99.75,0,0,0.54,507.29,3515.45,26116907,99.86,0,0,0.18,507.05,3515.68,26116908,99.82,0,0,0.14,507.02,3515.71,26116909,99.83,0,0,0.16,507.01,3515.72,26116910,99.75,0,0,0.3,507.25,3515.49,26116911,99.76,0,0,0.57,506.72,3516.02,26116912,99.9,0,0,0.18,505.97,3516.76,26116913,99.89,0,0,0.14,505.95,3516.78,26116914,99.91,0,0,0.16,505.94,3516.78,26116915,99.83,0,0,0.36,506.85,3515.9,26116916,99.73,0,0,0.57,507.33,3515.41,26116917,99.85,0,0,0.17,507.06,3515.68,26116918,99.85,0,0,0.14,507.05,3515.68,26116919,99.92,0,0,0.14,507.02,3515.72,26116920,99.63,0,0,0.33,507.28,3515.49,26116921,99.7,0,0,0.56,507.42,3515.34,26116922,99.88,0,0,0.14,506.73,3516.02,26116923,99.79,0,0,0.15,506.72,3516.04,26116924,99.83,0,0,0.14,506.69,3516.06,26116925,99.73,0,0,0.31,506.02,3516.74,26116926,99.71,0,0,0.55,506.88,3515.88,26116927,99.84,0.02,0.83,0.15,507.08,3515.67,26116928,99.57,0,0,0.21,507.01,3515.73,26116929,99.64,0,0,0.29,507.01,3515.71,26116930,99.68,0,0,0.34,506.56,3516.17,26116931,99.7,0,0,0.38,506.83,3515.9,26116932,99.82,0,0,0.36,506.93,3515.79,26116933,99.86,0,0,0.16,506.92,3515.8,26116934,99.84,0,0,0.15,507.06,3515.65,26116935,99.69,0,0,0.3,506.62,3516.11,26116936,99.7,0,0,0.36,506.96,3515.76,26116937,99.9,0,0,0.39,506.81,3515.91,26116938,99.84,0,0,0.14,506.78,3515.94,26116939,99.81,0,0,0.16,506.76,3515.95,26116940,99.76,0,0,0.35,507.24,3515.49,26116941,99.85,0,0,0.18,507.24,3515.49,26116942,99.73,0,0,0.55,507.48,3515.24,26116943,99.86,0,0,0.14,506.7,3516.01,26116944,99.84,0,0,0.14,506.67,3516.04,26116945,99.76,0,0,0.31,506.72,3516,26116946,99.83,0,0,0.2,506.87,3515.86,26116947,99.69,0,0,0.57,507.58,3515.13,26116948,99.92,0,0,0.14,507.07,3515.64,26116949,99.83,0,0,0.15,507.05,3515.66,26116950,99.79,0,0,0.29,507.05,3515.67,26116951,99.88,0,0,0.14,507.02,3515.7,26116952,99.68,0,0,0.55,507.38,3515.34,26116953,99.83,0,0,0.15,506.98,3515.73,26116954,99.83,0,0,0.14,506.97,3515.74,26116955,99.74,0,0,0.29,507.22,3515.51,26116956,99.91,0,0,0.16,507.21,3515.51,26116957,99.78,0,0,0.49,507.58,3515.14,26116958,99.86,0,0,0.2,507.1,3515.62,26116959,99.76,0,0,0.29,507.08,3515.62,26116960,99.74,0,0,0.29,507.08,3515.63,26116961,99.91,0,0.01,0.17,507.03,3515.68,26116962,99.72,0,0,0.5,507.8,3514.9,26116963,99.88,0,0,0.22,507.47,3515.23,26116964,99.92,0,0,0.15,507.25,3515.44,26116965,99.74,0,0,0.31,506.8,3515.91,26116966,99.88,0,0,0.13,506.73,3515.97,26116967,99.63,0,0,0.44,507.37,3515.33,26116968,99.82,0,0,0.29,507.33,3515.37,26116969,99.91,0,0,0.14,507.31,3515.38,26116970,99.79,0,0,0.31,506.83,3515.87,26116971,99.83,0.01,0.01,0.18,506.52,3516.18,26116972,99.83,0,0,0.14,506.23,3516.47,26116973,99.61,0.03,0.02,0.71,506.86,3515.83,26116974,96.59,3.11,0.07,18.26,513.93,3507.88,26116975,97.37,0.46,0.07,5.09,514.28,3505.84,26116976,99.8,0.01,0.01,4.57,509.78,3508.56,26116977,82.93,0.06,1.7,6.63,809.94,3208.21,26116978,99.45,0.06,2.5,0.73,651.3,3366.76,26116979,99.71,0,0,0.19,555.17,3462.88,26116980,99.49,0.04,1.67,0.36,556.34,3461.71,26116981,99.67,0,0,0.18,556.46,3461.59,26116982,99.69,0,0,0.14,556.45,3461.59,26116983,99.69,0,0,0.55,557.51,3460.53,26116984,99.77,0,0,0.14,556.9,3461.13,26116985,99.63,0,0,0.3,555.68,3462.36,26116986,99.75,0,0,0.16,555.65,3462.4,26116987,99.78,0,0,0.15,555.62,3462.42,26116988,99.66,0,0,0.54,556.6,3461.44,26116989,99.62,0,0,0.29,557.04,3460.96,26116990,99.73,0,0,0.29,557.06,3460.96,26116991,99.74,0,0,0.16,557.03,3460.99,26116992,99.7,0,0,0.16,557.19,3460.82,26116993,99.54,0,0,0.55,557.57,3460.44,26116994,99.78,0,0,0.14,557.09,3460.94,26116995,99.68,0,0,0.29,556.19,3461.88,26116996,99.76,0,0,0.21,556.17,3461.9,26116997,99.79,0,0.01,0.19,556.61,3461.46,26116998,99.66,0,0,0.48,556.95,3461.12,26116999,99.81,0,0,0.2,556.56,3461.5,26117000,99.62,0,0,0.3,556.69,3461.39,26117001,99.79,0,0,0.17,556.73,3461.34,26117002,99.78,0,0,0.16,556.7,3461.36,26117003,99.61,0,0,0.41,557.27,3460.8,26117004,99.77,0,0,0.32,556.9,3461.15,26117005,99.62,0,0,0.31,555.54,3462.53,26117006,99.74,0,0,0.14,555.41,3462.66,26117007,99.75,0,0,0.19,555.85,3462.21,26117008,99.59,0,0,0.5,556.82,3461.23,26117009,99.79,0,0,0.2,557.32,3460.73,26117010,99.6,0,0,0.3,557.31,3460.76,26117011,99.75,0,0,0.14,557.3,3460.77,26117012,99.73,0.01,0.01,0.18,557.36,3460.7,26117013,99.61,0,0,0.45,556.75,3461.3,26117014,99.73,0,0,0.29,556.59,3461.46,26117015,99.67,0,0,0.3,556.6,3461.47,26117016,99.71,0,0,0.14,556.58,3461.48,26117017,99.78,0,0,0.14,556.56,3461.5,26117018,99.78,0,0,0.15,556.55,3461.51,26117019,99.37,0,0,0.73,557.89,3460.13,26117020,99.64,0,0,0.29,557.44,3460.59,26117021,99.77,0,0,0.16,557.42,3460.61,26117022,99.78,0,0,0.14,557.4,3460.63,26117023,99.77,0,0,0.15,557.38,3460.65,26117024,99.58,0,0,0.59,557.9,3460.13,26117025,99.71,0,0,0.31,557.35,3460.71,26117026,99.8,0,0,0.14,557.33,3460.72,26117027,99.74,0,0,0.16,557.32,3460.73,26117028,99.69,0,0,0.14,557.29,3460.75,26117029,99.51,0,0,0.56,557.81,3460.23,26117030,99.66,0,0,0.3,557.66,3460.4,26117031,99.76,0,0,0.14,557.12,3460.93,26117032,99.73,0,0,0.14,556.68,3461.37,26117033,99.8,0,0,0.16,556.65,3461.4,26117034,99.61,0,0,0.55,556.82,3461.22,26117035,99.72,0,0,0.31,556.62,3461.43,26117036,99.69,0,0,0.16,556.59,3461.46,26117037,99.75,0,0,0.17,556.59,3461.46,26117038,99.8,0,0,0.17,556.55,3461.49,26117039,99.69,0,0,0.42,557.24,3460.8,26117040,99.53,0,0,0.43,556.3,3461.76,26117041,99.8,0,0,0.16,556.47,3461.58,26117042,99.76,0,0,0.14,556.44,3461.61,26117043,99.81,0,0,0.15,556.56,3461.48,26117044,99.69,0,0,0.77,557.19,3460.85,26117045,99.67,0,0,0.35,556.94,3461.11,26117046,99.83,0,0,0.14,556.87,3461.18,26117047,99.78,0,0,0.16,556.84,3461.21,26117048,99.78,0,0,0.14,556.82,3461.22,26117049,99.07,0,0,0.64,558.33,3459.69,26117050,99.66,0,0,0.54,556.68,3461.34,26117051,99.8,0,0,0.18,556.65,3461.38,26117052,99.78,0,0,0.19,556.66,3461.36,26117053,99.68,0,0,0.18,556.63,3461.39,26117054,99.57,0,0,0.32,557.41,3460.61,26117055,99.59,0,0,0.54,556.39,3461.64,26117056,99.74,0,0,0.14,556.36,3461.67,26117057,99.64,0.04,1.49,0.32,557.04,3460.98,26117058,99.72,0,0.03,0.19,557.11,3460.89,26117059,99.73,0.02,0.84,0.28,557.15,3460.84,26117060,99.51,0,0,0.76,558.35,3459.66,26117061,99.79,0,0,0.14,557.88,3460.12,26117062,99.78,0,0.01,0.15,557.85,3460.15,26117063,99.82,0,0,0.17,557.81,3460.18,26117064,99.82,0,0,0.14,557.8,3460.19,26117065,99.48,0,0,0.76,558.39,3459.61,26117066,99.8,0,0,0.14,558.02,3459.98,26117067,99.77,0,0,0.19,557.89,3460.1,26117068,99.73,0,0,0.17,557.62,3460.37,26117069,99.81,0,0,0.14,556.87,3461.11,26117070,99.48,0,0,0.72,557.81,3460.19,26117071,99.81,0,0,0.16,557.62,3460.38,26117072,99.8,0,0,0.14,557.6,3460.39,26117073,99.74,0,0,0.15,557.58,3460.41,26117074,99.78,0,0,0.14,557.55,3460.43,26117075,99.4,0,0.01,0.71,557.2,3460.8,26117076,99.81,0,0,0.14,556.05,3461.95,26117077,99.82,0,0,0.16,556.02,3461.98,26117078,99.81,0,0,0.14,556.01,3461.98,26117079,99.5,0,0,0.29,557.55,3460.41,26117080,99.57,0,0,0.73,558.39,3459.59,26117081,99.83,0,0,0.14,557.87,3460.11,26117082,99.68,0,0,0.14,557.86,3460.11,26117083,99.75,0,0,0.18,557.83,3460.14,26117084,99.75,0,0,0.18,557.81,3460.16,26117085,99.43,0,0,0.74,558.22,3459.76,26117086,99.73,0,0,0.16,558.27,3459.71,26117087,99.74,0,0,0.15,558.26,3459.71,26117088,99.79,0,0,0.16,557.72,3460.25,26117089,99.77,0,0,0.17,557.48,3460.49,26117090,99.56,0,0,0.61,557.96,3460.03,26117091,99.8,0,0,0.28,557.38,3460.6,26117092,99.76,0,0,0.16,557.38,3460.6,26117093,99.81,0,0,0.15,557.34,3460.63,26117094,99.79,0,0,0.14,557.32,3460.65,26117095,99.55,0,0,0.57,558.14,3459.85,26117096,99.8,0,0,0.29,557.3,3460.68,26117097,99.76,0,0,0.15,557.28,3460.69,26117098,99.75,0,0,0.14,557.26,3460.71,26117099,99.75,0,0,0.15,557.25,3460.74,26117100,99.48,0,0,0.3,557.98,3460.03,26117101,99.55,0,0,0.56,557.52,3460.47,26117102,99.76,0,0,0.14,556.9,3461.1,26117103,99.77,0,0,0.16,556.87,3461.12,26117104,99.78,0,0,0.15,556.85,3461.14,26117105,99.6,0,0,0.3,558.54,3459.46,26117106,99.58,0,0,0.56,558.9,3459.09,26117107,99.77,0,0,0.15,558.54,3459.45,26117108,99.79,0,0,0.14,558.15,3459.85,26117109,99.54,0,0,0.35,557.53,3460.45,26117110,99.64,0,0,0.32,557.5,3460.5,26117111,99.65,0,0,0.57,557.82,3460.17,26117112,99.81,0,0,0.16,557.6,3460.38,26117113,99.83,0,0,0.14,557.61,3460.38,26117114,99.79,0,0,0.15,557.6,3460.39,26117115,99.57,0,0,0.31,558.14,3459.87,26117116,99.62,0,0,0.56,558.43,3459.58,26117117,99.81,0,0,0.21,557.82,3460.18,26117118,99.82,0,0,0.14,557.79,3460.21,26117119,99.79,0,0,0.15,557.75,3460.24,26117120,92.82,35.93,0.06,218.27,567.32,3438.14,26117121,99.51,0,0,78.42,561.26,3421.43,26117122,99.81,0,0,0.14,560.94,3421.74,26117123,99.81,0,0,0.15,560.93,3421.75,26117124,99.8,0,0,0.16,560.88,3421.8,26117125,99.69,0,0,0.41,558.91,3423.83,26117126,99.68,0,0,0.44,557.85,3424.93,26117127,99.78,0,0,0.32,557.58,3425.2,26117128,99.81,0,0,0.14,557.16,3425.61,26117129,99.83,0,0,0.15,556.4,3426.37,26117130,99.64,0,0,0.31,556.17,3426.64,26117131,99.61,0,0,0.33,556.52,3426.28,26117132,99.74,0,0,0.41,556.86,3425.94,26117133,99.78,0,0,0.18,556.84,3425.96,26117134,99.78,0,0,0.16,556.82,3425.97,26117135,99.62,0,0,0.36,556.82,3425.99,26117136,99.64,0,0,0.3,557.17,3425.64,26117137,99.8,0,0,0.39,557.31,3425.49,26117138,99.78,0,0,0.15,557.43,3425.37,26117139,99.59,0,0,0.31,557.17,3425.6,26117140,99.65,0,0,0.36,557.65,3425.13,26117141,99.76,0,0,0.16,557.63,3425.14,26117142,99.61,0,0,0.54,558.54,3424.23,26117143,99.78,0,0,0.16,557.84,3424.93,26117144,99.87,0,0,0.14,557.84,3424.94,26117145,99.76,0,0,0.31,556.62,3426.18,26117146,99.87,0,0,0.14,556.59,3426.21,26117147,96.54,0.02,0.01,87.07,566.76,3418.08,26117148,99.83,0,0,0.34,559.8,3423.05,26117149,99.9,0,0,0.17,558.89,3423.95,26117150,99.8,0,0,0.39,559.37,3423.49,26117151,99.82,0,0,0.17,559.34,3423.51,26117152,99.7,0,0,0.6,558.38,3424.49,26117153,99.89,0,0,0.14,556.92,3425.98,26117154,99.86,0,0,0.15,556.9,3426,26117155,99.75,0,0,0.33,556.69,3426.22,26117156,99.87,0,0,0.14,556.6,3426.31,26117157,99.71,0,0,0.6,557.43,3425.48,26117158,99.9,0,0,0.14,557.54,3425.38,26117159,99.88,0,0,0.14,557.51,3425.41,26117160,99.67,0,0,0.3,557.51,3425.42,26117161,99.8,0,0,0.14,557.49,3425.44,26117162,99.73,0,0,0.43,558.19,3424.74,26117163,99.86,0,0,0.32,557.7,3425.22,26117164,99.9,0,0,0.15,557.66,3425.25,26117165,99.71,0,0,0.33,557.95,3424.98,26117166,99.89,0,0,0.14,558.08,3424.85,26117167,99.78,0,0,0.53,558.42,3424.5,26117168,99.85,0,0,0.21,558.04,3424.88,26117169,99.74,0,0,0.32,557.23,3425.67,26117170,99.79,0,0,0.31,557.27,3425.65,26117171,99.88,0,0,0.14,557.24,3425.67,26117172,99.62,0,0,0.5,557.58,3425.32,26117173,99.84,0,0,0.22,557.21,3425.7,26117174,99.87,0,0,0.14,557.2,3425.72,26117175,99.8,0,0,0.37,557.43,3425.5,26117176,99.87,0,0,0.15,557.41,3425.51,26117177,99.87,0,0,0.21,557.77,3425.15,26117178,99.72,0,0,0.55,558.31,3424.6,26117179,99.89,0,0,0.18,557.53,3425.38,26117180,99.76,0,0,0.33,557.78,3425.15,26117181,99.88,0,0,0.14,557.76,3425.17,26117182,99.85,0.01,0.84,0.3,557.77,3425.15,26117183,99.68,0,0,0.59,558.27,3424.64,26117184,99.83,0,0,0.14,557.74,3425.17,26117185,99.75,0,0,0.32,557.74,3425.18,26117186,99.89,0,0,0.16,557.72,3425.2,26117187,99.84,0,0,0.2,557.62,3425.3,26117188,99.68,0,0,0.56,558.11,3424.79,26117189,99.91,0,0,0.14,557.37,3425.53,26117190,99.72,0,0,0.31,557.17,3425.76,26117191,99.87,0,0,0.14,557.15,3425.77,26117192,99.85,0,0,0.16,557.28,3425.64,26117193,99.72,0,0,0.55,557.32,3425.59,26117194,99.91,0,0,0.14,556.79,3426.12,26117195,99.74,0,0,0.31,557.03,3425.9,26117196,99.89,0,0,0.16,557.01,3425.91,26117197,99.84,0,0,0.14,556.99,3425.93,26117198,99.74,0,0,0.51,558.01,3424.9,26117199,99.71,0,0,0.33,557.92,3424.97,26117200,99.7,0,0,0.32,556.75,3426.15,26117201,99.83,0,0,0.16,556.67,3426.22,26117202,99.83,0,0,0.15,556.66,3426.23,26117203,99.73,0,0,0.41,557.21,3425.68,26117204,99.91,0,0,0.29,557.52,3425.37,26117205,99.67,0,0,0.3,557.08,3425.84,26117206,99.92,0,0,0.14,557.05,3425.87,26117207,99.85,0,0,0.16,557.02,3425.9,26117208,99.66,0,0,0.54,557.66,3425.25,26117209,99.86,0,0,0.2,557.76,3425.14,26117210,99.82,0,0,0.3,557.25,3425.68,26117211,99.85,0,0,0.16,557.21,3425.71,26117212,99.87,0,0,0.16,557.19,3425.72,26117213,99.7,0,0,0.6,557.95,3424.96,26117214,99.86,0,0,0.15,557.39,3425.52,26117215,99.79,0,0,0.31,557.52,3425.41,26117216,99.85,0,0,0.16,557.55,3425.38,26117217,99.84,0,0,0.14,557.52,3425.39,26117218,99.9,0,0,0.15,557.51,3425.41,26117219,99.74,0,0,0.59,558.12,3424.79,26117220,99.63,0,0,0.31,557.73,3425.19,26117221,99.83,0,0,0.13,557.72,3425.2,26117222,99.86,0,0,0.16,557.69,3425.22,26117223,99.85,0,0,0.14,557.68,3425.23,26117224,99.66,0,0,0.58,558.25,3424.66,26117225,99.74,0,0,0.38,557.89,3425.03,26117226,99.84,0.02,0.04,0.22,557.97,3424.95,26117227,99.83,0,0,0.2,557.99,3424.91,26117228,99.87,0,0,0.14,557.97,3424.94,26117229,99.49,0,0,0.7,558.67,3424.21,26117230,99.73,0,0,0.35,556.71,3426.18,26117231,99.87,0,0,0.17,556.69,3426.2,26117232,99.88,0,0,0.14,556.66,3426.23,26117233,99.87,0,0,0.15,556.65,3426.23,26117234,99.71,0,0,0.56,557.97,3424.9,26117235,99.75,0,0,0.33,557.84,3425.06,26117236,99.85,0,0,0.16,557.77,3425.12,26117237,99.82,0,0,0.22,557.74,3425.15,26117238,99.84,0,0,0.14,557.73,3425.15,26117239,99.75,0,0,0.59,558.15,3424.73,26117240,99.76,0,0,0.33,557.7,3425.2,26117241,99.88,0,0,0.14,557.67,3425.21,26117242,99.9,0,0,0.16,557.65,3425.24,26117243,99.89,0,0,0.15,557.63,3425.25,26117244,99.77,0,0,0.52,558.08,3424.79,26117245,99.79,0,0,0.38,558.29,3424.61,26117246,99.9,0,0,0.16,558.28,3424.62,26117247,99.81,0,0,0.19,558.2,3424.69,26117248,99.83,0,0,0.17,557.99,3424.9,26117249,99.7,0,0,0.57,558.52,3424.36,26117250,99.68,0,0,0.32,557.7,3425.2,26117251,99.88,0,0,0.14,557.46,3425.43,26117252,99.85,0,0,0.18,557.44,3425.45,26117253,99.86,0,0,0.15,557.42,3425.46,26117254,99.74,0,0,0.42,557.99,3424.89,26117255,99.76,0,0,0.45,557.88,3425,26117256,99.85,0,0,0.16,557.88,3425,26117257,99.87,0,0,0.14,557.85,3425.02,26117258,99.88,0,0,0.15,558.02,3424.85,26117259,99.75,0,0,0.28,557.99,3424.86,26117260,99.56,0,0,0.76,558.14,3424.72,26117261,99.89,0,0,0.14,557.73,3425.14,26117262,99.88,0,0,0.13,557.72,3425.14,26117263,99.87,0,0,0.16,557.69,3425.17,26117264,99.85,0,0,0.14,557.68,3425.17,26117265,99.65,0,0,0.77,558.46,3424.4,26117266,99.9,0,0,0.16,558.15,3424.71,26117267,99.81,0,0,0.14,558.12,3424.74,26117268,99.89,0,0,0.16,558.11,3424.74,26117269,99.85,0,0,0.13,558.08,3424.76,26117270,99.65,0,0,0.71,558.66,3424.2,26117271,99.86,0,0,0.16,557.51,3425.34,26117272,99.89,0,0,0.16,557.5,3425.35,26117273,99.81,0,0,0.14,557.48,3425.37,26117274,99.84,0,0,0.15,557.46,3425.38,26117275,99.59,0,0,0.69,557.92,3424.94,26117276,99.89,0,0,0.23,557.44,3425.41,26117277,99.82,0,0,0.14,556.96,3425.9,26117278,99.9,0,0,0.15,556.91,3425.94,26117279,99.82,0,0,0.16,556.88,3425.97,26117280,99.17,0,0,0.88,523.03,3460.12,26117281,99.86,0,0,0.17,506.92,3476.38,26117282,99.88,0,0,0.16,506.91,3476.38,26117283,99.9,0,0,0.16,506.88,3476.4,26117284,99.88,0,0,0.14,506.87,3476.41,26117285,99.62,0,0,0.75,507.22,3476.08,26117286,99.88,0,0,0.18,506.85,3476.44,26117287,99.86,0,0,0.15,506.83,3476.46,26117288,99.92,0,0,0.18,506.81,3476.47,26117289,99.65,0,0,0.32,506.78,3476.48,26117290,98.76,0,0,0.8,507.39,3475.9,26117291,99.89,0,0,0.18,507.01,3476.27,26117292,99.86,0,0,0.15,507.12,3476.15,26117293,99.81,0,0,0.14,507.18,3476.09,26117294,99.71,0,0,0.2,507.18,3476.12,26117295,99.35,0,0,0.59,506.74,3476.58,26117296,99.83,0,0,0.36,506.91,3476.4,26117297,99.85,0,0,0.21,507.12,3476.18,26117298,99.77,0,0,0.16,507.12,3476.18,26117299,99.85,0,0,0.18,507.09,3476.2,26117300,99.69,0,0,0.35,506.6,3476.71,26117301,99.67,0,0,0.59,506.64,3476.67,26117302,99.83,0,0,0.14,506.06,3477.25,26117303,99.85,0,0,0.15,506.04,3477.26,26117304,99.9,0,0,0.14,506.13,3477.16,26117305,99.74,0,0,0.32,507.24,3476.07,26117306,99.68,0,0,0.57,507.5,3475.81,26117307,99.84,0,0,0.2,507.02,3476.29,26117308,99.87,0,0,0.18,506.62,3476.68,26117309,99.87,0,0,0.18,506.59,3476.7,26117310,99.66,0,0,0.43,507.07,3476.24,26117311,99.72,0,0,0.6,507.24,3476.06,26117312,99.89,0,0,0.16,506.78,3476.51,26117313,99.88,0,0,0.15,506.77,3476.52,26117314,99.81,0,0,0.15,506.85,3476.43,26117315,99.6,0,0,0.31,505.52,3477.79,26117316,99.66,0,0,0.52,506.73,3476.58,26117317,99.88,0,0,0.2,507.14,3476.16,26117318,99.8,0,0,0.16,507.11,3476.18,26117319,99.72,0,0,0.29,507.09,3476.18,26117320,99.77,0,0,0.33,507.09,3476.2,26117321,99.68,0,0,0.57,507.91,3475.37,26117322,99.9,0,0,0.16,507.29,3475.98,26117323,99.9,0,0,0.14,507.27,3476,26117324,99.83,0,0,0.16,507.25,3476.01,26117325,99.82,0,0,0.32,507.05,3476.24,26117326,99.74,0,0,0.42,507.71,3475.57,26117327,99.83,0,0,0.35,507.14,3476.13,26117328,99.83,0,0,0.16,507.13,3476.14,26117329,99.89,0,0,0.15,507.09,3476.17,26117330,99.75,0,0,0.37,506.85,3476.43,26117331,99.72,0,0,0.33,507.18,3476.1,26117332,99.88,0,0,0.4,507.04,3476.23,26117333,99.85,0,0,0.14,507.02,3476.25,26117334,99.9,0,0,0.14,507,3476.26,26117335,99.8,0,0,0.32,507.24,3476.04,26117336,99.74,0,0,0.34,507.7,3475.57,26117337,99.93,0,0,0.38,507.14,3476.12,26117338,99.92,0,0,0.15,507.13,3476.13,26117339,99.9,0,0,0.14,507.1,3476.16,26117340,99.63,0,0,0.33,507.35,3475.92,26117341,99.83,0,0,0.14,507.33,3475.94,26117342,99.77,0,0,0.57,507.46,3475.8,26117343,99.92,0,0,0.14,507.04,3476.22,26117344,99.86,0,0,0.16,507.03,3476.23,26117345,99.75,0,0,0.32,507.08,3476.2,26117346,99.9,0,0,0.16,507.01,3476.26,26117347,99.74,0,0,0.63,507.61,3475.65,26117348,99.85,0,0.02,0.17,507.25,3476,26117349,99.6,0,0,0.33,507.34,3475.89,26117350,99.66,0,0,0.33,507.35,3475.89,26117351,99.91,0,0,0.16,507.32,3475.92,26117352,99.73,0,0,0.57,507.66,3475.57,26117353,99.87,0.01,0.25,0.17,507.27,3475.96,26117354,99.84,0.08,16.26,0.31,507.36,3475.86,26117355,99.66,0.02,3.85,0.76,506.56,3476.64,26117356,99.81,0.08,17.1,0.25,506.73,3476.46,26117357,99.66,0.04,17.51,0.63,506.93,3476.26,26117358,99.9,0,0,0.15,506.72,3476.47,26117359,99.86,0,0.12,0.19,506.84,3476.35,26117360,99.8,0,0,0.3,507.34,3475.87,26117361,99.81,0,0,0.16,507.33,3475.88,26117362,99.75,0,0,0.55,507.58,3475.63,26117363,99.89,0,0,0.15,507.04,3476.16,26117364,99.92,0,0,0.16,507.01,3476.19,26117365,99.77,0,0,0.35,507.02,3476.19,26117366,99.86,0,0,0.18,506.99,3476.22,26117367,99.69,0,0,0.44,507.76,3475.45,26117368,99.86,0,0,0.3,507.69,3475.51,26117369,99.91,0,0,0.15,507.68,3475.52,26117370,99.75,0,0,0.3,507.39,3475.83,26117371,99.9,0,0,0.16,507.35,3475.87,26117372,99.8,0,0,0.16,507.37,3475.84,26117373,99.73,0,0,0.58,507.65,3475.55,26117374,99.8,0.01,0.94,0.31,507.25,3475.95,26117375,99.72,0,0.38,0.4,507.56,3475.65,26117376,99.85,0,0,0.14,507.54,3475.66,26117377,99.87,0,0,0.18,507.53,3475.67,26117378,99.67,0,0,0.56,507.85,3475.35,26117379,99.52,0,0,0.3,507.27,3475.91,26117380,99.69,0.01,0.12,0.32,507.46,3475.73,26117381,99.88,0,0,0.24,507.58,3475.6,26117382,99.88,0,0,0.13,507.56,3475.61,26117383,99.72,0,0,0.59,506.6,3476.57,26117384,99.84,0,0,0.16,505.54,3477.64,26117385,99.58,0,0,0.38,506.98,3476.22,26117386,99.88,0,0,0.18,506.99,3476.21,26117387,99.83,0,0,0.18,506.98,3476.21,26117388,99.7,0,0,0.58,507.39,3475.79,26117389,99.88,0,0,0.16,506.45,3476.73,26117390,99.67,0,0,0.37,505.96,3477.23,26117391,99.92,0,0,0.13,505.94,3477.26,26117392,99.79,0,0,0.18,506.08,3477.11,26117393,99.66,0,0,0.43,506.89,3476.29,26117394,99.87,0,0,0.29,507.52,3475.66,26117395,99.74,0,0,0.35,507.51,3475.69,26117396,99.82,0,0,0.15,507.5,3475.7,26117397,99.84,0,0,0.16,507.47,3475.72,26117398,99.69,0,0,0.42,507.58,3475.61,26117399,99.88,0,0,0.3,506.69,3476.49,26117400,99.65,0,0,0.31,506.93,3476.28,26117401,99.81,0,0,0.14,506.93,3476.28,26117402,99.79,0,0,0.17,507.1,3476.1,26117403,99.58,0,0,0.6,507.52,3475.68,26117404,99.77,0,0,0.14,507.56,3475.64,26117405,99.78,0,0,0.32,507.56,3475.65,26117406,99.8,0,0,0.16,507.54,3475.67,26117407,99.84,0,0,0.14,507.51,3475.69,26117408,99.87,0,0,0.14,507.5,3475.7,26117409,99.41,0,0,0.72,507.23,3475.95,26117410,99.81,0,0,0.35,507.69,3475.5,26117411,99.86,0,0,0.13,507.68,3475.51,26117412,99.88,0,0,0.14,507.71,3475.48,26117413,99.68,0,0,0.2,507.83,3475.36,26117414,99.66,0,0,0.58,508.12,3475.05,26117415,99.66,0,0,0.32,507.57,3475.63,26117416,99.88,0,0,0.14,507.55,3475.64,26117417,99.47,0,0,0.21,507.52,3475.66,26117418,99.86,0,0,0.14,507.51,3475.67,26117419,99.74,0,0,0.64,507.83,3475.34,26117420,99.75,0,0,0.31,507.73,3475.46,26117421,99.83,0,0,0.14,507.71,3475.48,26117422,99.87,0,0,0.14,507.68,3475.5,26117423,99.9,0,0,0.15,507.66,3475.51,26117424,99.72,0,0,0.61,508.15,3475.02,26117425,99.73,0,0,0.38,507.36,3475.83,26117426,99.83,0,0,0.18,507.3,3475.88,26117427,99.85,0,0,0.18,507.23,3475.95,26117428,99.9,0,0,0.18,506.77,3476.4,26117429,99.77,0,0,0.61,507.82,3475.35,26117430,99.74,0,0,0.32,507.97,3475.21,26117431,99.91,0,0,0.14,507.96,3475.22,26117432,99.84,0,0,0.16,507.1,3476.07,26117433,99.86,0,0,0.16,506.94,3476.23,26117434,99.73,0,0,0.55,507.31,3475.86,26117435,99.78,0,0,0.39,506.56,3476.62,26117436,99.91,0,0,0.14,506.57,3476.61,26117437,99.86,0,0,0.16,506.55,3476.62,26117438,99.88,0,0,0.15,506.52,3476.65,26117439,99.65,0,0,0.65,507.36,3475.78,26117440,99.79,0,0,0.39,506.75,3476.4,26117441,99.89,0,0,0.16,506.73,3476.42,26117442,99.83,0,0,0.14,506.71,3476.43,26117443,99.85,0,0,0.16,506.69,3476.45,26117444,99.78,0,0,0.41,507.04,3476.09,26117445,99.83,0,0,0.5,506.28,3476.87,26117446,99.89,0,0,0.14,506.34,3476.81,26117447,99.88,0,0,0.16,506.31,3476.83,26117448,99.88,0,0,0.14,506.3,3476.84,26117449,99.88,0,0,0.18,506.27,3476.86,26117450,99.48,0,0,0.71,507.77,3475.38,26117451,99.93,0,0,0.16,507.23,3475.91,26117452,99.93,0,0,0.14,507.23,3475.93,26117453,99.88,0,0,0.16,507.2,3475.96,26117454,99.9,0,0,0.14,507.17,3475.97,26117455,99.65,0,0,0.74,507.3,3475.86,26117456,99.88,0,0.02,0.19,507.01,3476.15,26117457,99.88,0,0,0.14,507.03,3476.13,26117458,99.87,0,0,0.15,507.01,3476.14,26117459,99.9,0,0,0.16,506.99,3476.16,26117460,99.48,0,0,0.74,507.6,3475.56,26117461,99.8,0,0,0.13,507.17,3475.99,26117462,99.89,0.01,0.11,0.19,506.95,3476.21,26117463,99.88,0,0.21,0.29,507.04,3476.11,26117464,99.88,0,0.64,0.3,506.94,3476.2,26117465,99.57,0,0,0.73,507.43,3475.73,26117466,99.84,0.04,1.78,0.25,506.95,3476.19,26117467,99.81,0,0,0.18,506.9,3476.24,26117468,99.9,0,0,0.14,506.88,3476.27,26117469,99.55,0,0,0.29,507.12,3476,26117470,99.51,0,0,0.73,507.37,3475.76,26117471,98.51,0,0,0.15,507.02,3476.12,26117472,99.92,0,0,0.15,506.99,3476.14,26117473,99.87,0,0,0.15,506.96,3476.17,26117474,99.91,0,0,0.16,506.94,3476.19,26117475,99.65,0,0,0.75,507.54,3475.62,26117476,99.9,0,0,0.16,507.17,3475.98,26117477,99.9,0,0,0.2,507.15,3476,26117478,98.92,0,0,0.14,507.12,3476.03,26117479,99.85,0,0,0.15,507.16,3475.98,26117480,99.69,0,0,0.74,507.43,3475.73,26117481,99.88,0,0,0.14,507.06,3476.09,26117482,99.93,0,0,0.14,507.03,3476.12,26117483,99.88,0,0,0.16,507.02,3476.13,26117484,99.9,0,0,0.15,506.99,3476.15,26117485,99.67,0,0,0.59,506.62,3476.53,26117486,99.91,0,0,0.34,506.47,3476.68,26117487,99.89,0,0,0.17,506.43,3476.72,26117488,99.92,0,0,0.2,506.19,3476.96,26117489,99.92,0,0,0.16,506.16,3476.98,26117490,99.81,0,0,0.34,507.13,3476.02,26117491,99.77,0,0,0.6,507.81,3475.33,26117492,99.89,0,0,0.14,507.29,3475.85,26117493,99.85,0,0,0.15,507.27,3475.87,26117494,99.87,0,0,0.16,507.25,3475.89,26117495,99.76,0,0,0.32,506.28,3476.87,26117496,99.76,0,0,0.59,506.6,3476.55,26117497,99.88,0,0,0.14,506.22,3476.93,26117498,99.9,0,0,0.14,506.21,3476.93,26117499,99.67,0.04,2.01,0.4,506.84,3476.26,26117500,99.69,0.01,0.64,0.43,506.77,3476.34,26117501,99.75,0,0,0.55,507.01,3476.1,26117502,99.88,0,0,0.15,506.63,3476.47,26117503,99.89,0,0,0.19,506.61,3476.49,26117504,99.84,0,0,0.17,506.59,3476.52,26117505,99.71,0,0,0.35,505.81,3477.31,26117506,99.75,0,0,0.55,506.89,3476.23,26117507,99.85,0,0,0.16,506.48,3476.64,26117508,99.9,0,0,0.14,506.46,3476.65,26117509,99.81,0,0,0.15,506.43,3476.67,26117510,99.73,0,0,0.3,506.69,3476.43,26117511,95.04,0.33,0.01,79.32,519.5,3464.36,26117512,99.8,0,0,181.87,508.99,3473.98,26117513,99.81,0,0,0.16,508.98,3473.99,26117514,99.83,0,0,0.16,508.95,3474.02,26117515,99.73,0,0,0.33,508.94,3474.04,26117516,99.72,0,0,0.65,508.85,3474.13,26117517,99.85,0,0,0.18,506.68,3476.34,26117518,99.87,0,0,0.18,506.67,3476.34,26117519,99.87,0,0,0.18,506.64,3476.36,26117520,99.55,0,0,0.39,506.89,3476.13,26117521,99.66,0,0,0.58,507.1,3475.92,26117522,99.74,0,0,0.15,506.35,3476.67,26117523,99.8,0,0,0.15,506.33,3476.68,26117524,99.84,0,0,0.14,506.31,3476.7,26117525,99.79,0,0,0.36,507.05,3475.99,26117526,99.68,0,0.01,0.33,507.82,3475.22,26117527,99.8,0,0,0.41,506.42,3476.61,26117528,99.88,0,0,0.18,506.39,3476.63,26117529,99.36,0,0,0.3,506.88,3476.12,26117530,99.74,0,0,0.32,506.85,3476.17,26117531,99.84,0,0,0.14,506.82,3476.2,26117532,99.65,0,0,0.56,507.15,3475.86,26117533,99.87,0,0,0.18,506.78,3476.23,26117534,99.8,0,0,0.14,506.74,3476.26,26117535,99.69,0,0,0.36,506.9,3476.12,26117536,99.77,0,0,0.18,506.91,3476.1,26117537,99.67,0,0,0.63,507.31,3475.7,26117538,99.86,0,0,0.16,506.87,3476.13,26117539,99.85,0,0,0.18,506.84,3476.16,26117540,99.65,0,0,0.32,505.95,3477.07,26117541,99.78,0,0,0.17,505.85,3477.17,26117542,99.7,0,0,0.57,506.88,3476.14,26117543,99.83,0,0,0.16,506.79,3476.22,26117544,99.84,0,0,0.15,506.77,3476.23,26117545,99.66,0,0,0.32,505.82,3477.2,26117546,99.8,0,0,0.14,505.87,3477.15,26117547,99.64,0,0,0.56,507.31,3475.7,26117548,99.79,0,0,0.18,506.67,3476.34,26117549,99.83,0,0,0.14,506.65,3476.35,26117550,99.69,0,0,0.31,506.4,3476.62,26117551,99.77,0,0,0.14,506.37,3476.64,26117552,99.65,0,0,0.59,506.83,3476.18,26117553,99.79,0,0,0.16,506.56,3476.46,26117554,99.81,0,0,0.14,506.53,3476.48,26117555,99.71,0,0,0.32,506.78,3476.26,26117556,99.76,0,0,0.14,506.89,3476.14,26117557,99.64,0,0,0.57,507.35,3475.67,26117558,99.78,0,0,0.15,507.13,3475.89,26117559,99.67,0,0,0.29,506.87,3476.13,26117560,99.73,0,0,0.36,507.12,3475.89,26117561,99.81,0,0,0.18,507.09,3475.92,26117562,99.54,0,0,0.59,507.82,3475.19,26117563,99.75,0,0,0.18,507.29,3475.7,26117564,99.83,0,0,0.18,507.29,3475.7,26117565,99.72,0,0,0.39,507.03,3475.98,26117566,99.83,0,0,0.18,507.02,3475.98,26117567,99.76,0,0,0.18,507.26,3475.75,26117568,99.68,0,0,0.58,507.28,3475.74,26117569,99.83,0,0,0.14,506.89,3476.12,26117570,99.71,0,0,0.36,506.9,3476.12,26117571,99.83,0,0,0.13,506.87,3476.15,26117572,99.83,0,0,0.16,506.85,3476.17,26117573,99.7,0,0,0.59,507.39,3475.62,26117574,99.79,0,0,0.18,507.04,3475.96,26117575,99.7,0,0,0.38,506.79,3476.23,26117576,99.8,0,0,0.16,506.77,3476.25,26117577,99.79,0,0,0.15,506.88,3476.13,26117578,99.64,0,0,0.59,507.46,3475.55,26117579,99.72,0,0,0.19,506.89,3476.12,26117580,98.63,0,0,9.07,507,3476.8,26117581,99.78,0,0,0.15,506.83,3477.01,26117582,99.8,0,0.01,0.16,506.79,3477.05,26117583,99.62,0,0,0.57,507.75,3476.08,26117584,99.78,0,0,0.14,507.07,3476.76,26117585,99.56,0,0,0.37,506.69,3477.17,26117586,99.8,0,0,0.15,505.7,3478.16,26117587,99.8,0,0,0.14,505.38,3478.48,26117588,99.66,0,0,0.41,506.19,3477.66,26117589,99.72,0,0,0.43,505.82,3478.02,26117590,99.71,0,0,0.36,506.54,3477.32,26117591,99.82,0,0,0.17,506.51,3477.34,26117592,99.8,0,0,0.15,506.5,3477.35,26117593,99.7,0,0.02,0.59,506.84,3477.01,26117594,99.8,0,0,0.23,506.34,3477.49,26117595,99.68,0,0,0.37,506.58,3477.27,26117596,99.83,0,0,0.14,506.55,3477.3,26117597,99.79,0,0,0.24,506.05,3477.79,26117598,99.67,0,0,0.57,506.27,3477.56,26117599,99.83,0,0,0.18,505.73,3478.1,26117600,99.73,0,0,0.36,506.33,3477.52,26117601,99.78,0,0,0.18,506.39,3477.46,26117602,99.79,0,0,0.18,506.35,3477.49,26117603,99.65,0,0,0.62,506.9,3476.95,26117604,99.79,0,0,0.18,505.33,3478.51,26117605,99.71,0,0,0.37,505.33,3478.53,26117606,99.79,0,0,0.15,505.31,3478.55,26117607,99.83,0,0,0.14,505.28,3478.57,26117608,99.74,0,0,0.2,505.81,3478.04,26117609,99.66,0,0,0.57,506.18,3477.66,26117610,99.67,0,0,0.35,506.66,3477.19,26117611,99.75,0,0,0.14,506.64,3477.21,26117612,99.75,0,0,0.17,506.63,3477.21,26117613,99.8,0,0,0.16,506.6,3477.24,26117614,99.59,0,0,0.58,506.94,3476.9,26117615,99.67,0,0,0.32,506.34,3477.51,26117616,99.79,0,0,0.15,506.33,3477.52,26117617,99.8,0,0,0.18,506.29,3477.55,26117618,99.79,0,0,0.14,506.28,3477.56,26117619,99.45,0,0,0.79,506.88,3476.94,26117620,99.63,0,0,0.33,506.34,3477.49,26117621,99.78,0,0,0.17,506.42,3477.41,26117622,99.8,0,0,0.15,506.4,3477.43,26117623,99.79,0,0,0.14,506.38,3477.44,26117624,99.62,0,0,0.61,506.81,3477.02,26117625,99.58,0,0,0.32,506.82,3477.03,26117626,99.8,0,0,0.14,506.82,3477.03,26117627,99.75,0,0,0.14,506.79,3477.05,26117628,99.78,0,0,0.16,506.76,3477.07,26117629,99.68,0,0,0.51,506.24,3477.59,26117630,99.67,0,0,0.36,506.27,3477.58,26117631,99.8,0,0,0.16,506.42,3477.42,26117632,99.8,0,0,0.14,506.4,3477.44,26117633,99.76,0,0,0.15,506.38,3477.45,26117634,99.65,0,0,0.56,506.58,3477.25,26117635,99.73,0,0,0.33,506.85,3477,26117636,99.74,0,0,0.14,506.82,3477.02,26117637,99.8,0,0,0.16,506.82,3477.02,26117638,99.82,0,0,0.14,506.79,3477.05,26117639,99.69,0,0,0.58,507.3,3476.55,26117640,99.65,0,0,0.41,506.54,3477.33,26117641,99.74,0,0,0.17,506.52,3477.35,26117642,99.77,0,0,0.15,506.49,3477.37,26117643,99.79,0,0,0.15,506.59,3477.27,26117644,99.6,0,0,0.45,506.98,3476.87,26117645,99.61,0,0,0.47,506.9,3476.97,26117646,99.79,0,0,0.18,506.89,3476.98,26117647,99.74,0,0,0.18,506.88,3476.98,26117648,99.8,0,0,0.2,506.86,3477,26117649,99.6,0,0,0.56,507.17,3476.66,26117650,99.72,0,0,0.39,506.59,3477.26,26117651,99.75,0,0,0.14,506.57,3477.28,26117652,99.75,0,0,0.16,506.56,3477.28,26117653,98.9,0,0,0.18,506.56,3477.28,26117654,99.73,0,0,0.16,506.54,3477.3,26117655,99.47,0,0,0.72,506.59,3477.26,26117656,99.82,0,0,0.13,505.8,3478.05,26117657,99.75,0,0,0.25,505.77,3478.07,26117658,99.73,0,0,0.14,505.76,3478.08,26117659,99.84,0,0,0.18,505.75,3478.08,26117660,99.6,0,0,0.66,507.17,3476.68,26117661,99.81,0,0,0.16,506.84,3477.01,26117662,99.79,0,0,0.14,506.9,3476.94,26117663,99.78,0,0,0.16,506.87,3476.97,26117664,92.8,0.99,0.02,65.73,516.31,3467.1,26117665,99.01,0,0,196.59,508.32,3474.43,26117666,99.81,0,0,0.15,507.76,3474.99,26117667,99.81,0,0,0.16,507.9,3474.84,26117668,99.77,0,0,0.21,507.9,3474.84,26117669,99.8,0,0,0.18,507.63,3475.1,26117670,99.49,0,0,0.68,506.82,3475.96,26117671,99.79,0,0,0.14,505.94,3476.84,26117672,99.82,0,0,0.16,505.93,3476.85,26117673,99.8,0,0,0.14,505.92,3476.85,26117674,99.79,0,0,0.18,505.89,3476.88,26117675,99.53,0,0,0.74,506.44,3476.4,26117676,99.8,0,0,0.14,505.89,3476.95,26117677,99.76,0,0,0.16,505.88,3476.96,26117678,99.78,0,0,0.14,505.87,3476.96,26117679,99.73,0,0,0.32,506.59,3476.22,26117680,99.48,0,0,0.7,507.17,3475.67,26117681,99.76,0,0,0.23,505.83,3477.01,26117682,99.82,0,0,0.18,505.81,3477.02,26117683,99.8,0,0,0.16,505.95,3476.88,26117684,99.8,0,0,0.17,505.99,3476.84,26117685,99.55,0,0,0.66,507.07,3475.78,26117686,99.76,0,0,0.19,506.71,3476.13,26117687,99.82,0,0,0.13,506.69,3476.15,26117688,99.76,0,0,0.16,506.67,3476.16,26117689,99.75,0,0,0.14,506.67,3476.16,26117690,99.57,0,0,0.46,507.27,3475.58,26117691,99.81,0,0,0.38,506.9,3475.95,26117692,99.74,0,0,0.15,506.89,3475.95,26117693,99.82,0,0.02,0.16,506.84,3476,26117694,99.81,0,0,0.16,506.82,3476.01,26117695,99.74,0,0,0.28,507.17,3475.67,26117696,99.67,0.01,0.02,0.59,507.62,3475.22,26117697,99.85,0,0,0.15,506.93,3475.91,26117698,99.85,0,0,0.16,506.92,3475.91,26117699,99.85,0,0,0.14,506.9,3475.93,26117700,99.52,0,0,0.29,506.9,3475.96,26117701,99.75,0,0,0.56,507.08,3475.77,26117702,99.87,0,0,0.14,506.61,3476.23,26117703,99.83,0,0,0.16,506.6,3476.24,26117704,99.8,0,0,0.14,506.57,3476.26,26117705,99.79,0,0,0.28,506.59,3476.26,26117706,99.73,0,0,0.57,507.27,3475.58,26117707,99.87,0,0,0.14,507.03,3475.81,26117708,99.85,0,0,0.15,507.11,3475.73,26117709,99.87,0,0,0.29,507.2,3475.61,26117710,99.77,0,0,0.27,506.72,3476.11,26117711,99.75,0,0,0.57,507.33,3475.5,26117712,99.9,0,0,0.14,507.18,3475.65,26117713,99.89,0,0,0.15,507.16,3475.66,26117714,99.9,0,0,0.16,507.16,3475.66,26117715,99.77,0,0,0.27,507.14,3475.69,26117716,99.77,0,0,0.57,507.67,3475.17,26117717,99.81,0,0,0.19,506.88,3475.95,26117718,99.86,0,0,0.15,506.85,3475.97,26117719,99.77,0,0.02,0.18,506.83,3475.99,26117720,99.8,0,0,0.28,506.57,3476.26,26117721,99.61,0,0,0.56,506.95,3475.88,26117722,99.84,0,0,0.13,506.92,3475.9,26117723,99.81,0,0,0.16,506.98,3475.84,26117724,99.86,0,0,0.14,506.97,3475.84,26117725,99.72,0,0,0.32,506.73,3476.1,26117726,99.75,0,0,0.5,507.12,3475.71,26117727,99.93,0,0,0.19,506.94,3475.88,26117728,99.8,0,0,0.17,506.7,3476.12,26117729,99.89,0,0,0.2,506.57,3476.25,26117730,99.73,0,0,0.26,507.14,3475.72,26117731,99.78,0,0,0.39,507.88,3474.97,26117732,99.9,0,0,0.36,507.13,3475.71,26117733,99.87,0,0,0.16,507.11,3475.73,26117734,99.91,0,0,0.18,507.09,3475.75,26117735,99.76,0,0,0.32,507.11,3475.74,26117736,99.89,0,0,0.17,507.08,3475.77,26117737,99.75,0,0,0.59,507.37,3475.46,26117738,99.86,0,0,0.14,506.81,3476.02,26117739,99.79,0,0,0.29,506.82,3475.99,26117740,99.74,0,0,0.33,507.05,3475.77,26117741,99.89,0,0,0.14,506.47,3476.35,26117742,99.53,0,0,0.55,506.29,3476.53,26117743,99.86,0,0,0.15,505.69,3477.12,26117744,99.9,0,0,0.14,505.66,3477.16,26117745,99.76,0,0,0.3,506.14,3476.69,26117746,99.9,0,0,0.16,506.16,3476.68,26117747,99.72,0,0,0.54,506.49,3476.34,26117748,99.88,0,0,0.15,506.11,3476.71,26117749,99.79,0,0,0.14,506.11,3476.71,26117750,99.78,0,0,0.26,506.34,3476.5,26117751,99.88,0,0,0.17,506.34,3476.49,26117752,99.7,0,0,0.57,506.88,3475.95,26117753,99.86,0,0,0.14,506.06,3476.77,26117754,99.92,0,0,0.14,506.06,3476.77,26117755,99.8,0,0,0.27,506.34,3476.5,26117756,99.88,0,0,0.16,506.47,3476.37,26117757,99.74,0,0,0.49,506.73,3476.1,26117758,99.85,0,0,0.2,506.19,3476.64,26117759,99.88,0,0,0.15,506.18,3476.64,26117760,99.65,0,0,0.27,506.42,3476.42,26117761,99.79,0,0,0.16,506.41,3476.43,26117762,99.61,0,0,0.41,506.77,3476.07,26117763,99.9,0,0,0.29,506.38,3476.45,26117764,99.8,0,0,0.16,505.16,3477.71,26117765,99.67,0,0,0.29,503.63,3479.34,26117766,99.88,0,0,0.14,503.6,3479.36,26117767,99.75,0,0,0.42,503.9,3479.06,26117768,99.87,0,0,0.3,503.31,3479.64,26117769,99.82,0,0,0.29,503.3,3479.63,26117770,99.65,0,0,0.3,499.42,3483.67,26117771,99.78,0,0,0.15,499.44,3483.66,26117772,99.62,0,0,0.15,499.45,3483.64,26117773,99.51,0,0,0.63,501.12,3481.97,26117774,99.83,0,0,0.14,500.4,3482.68,26117775,99.44,0,0,0.28,499.93,3483.18,26117776,99.89,0,0,0.16,499.91,3483.2,26117777,99.79,0,0,0.18,499.89,3483.22,26117778,99.62,0,0,0.55,500.82,3482.28,26117779,99.84,0,0,0.17,500.58,3482.52,26117780,97.85,0,0,0.3,500.63,3482.49,26117781,99.8,0,0,0.14,500.56,3482.55,26117782,99.87,0,0,0.16,500.55,3482.56,26117783,99.73,0,0,0.54,500.9,3482.2,26117784,99.91,0,0,0.14,500.51,3482.58,26117785,99.68,0,0,0.31,499.19,3483.92,26117786,99.92,0,0,0.17,499.22,3483.89,26117787,99.89,0,0,0.14,499.19,3483.91,26117788,99.73,0,0,0.59,500.1,3483,26117789,99.88,0,0,0.14,500.14,3482.95,26117790,99.79,0,0,0.26,500.64,3482.47,26117791,99.83,0,0,0.16,500.64,3482.46,26117792,99.8,0,0,0.14,500.62,3482.49,26117793,99.66,0,0,0.5,501.09,3482.01,26117794,99.86,0,0,0.21,500.58,3482.51,26117795,99.73,0,0,0.29,500.34,3482.77,26117796,99.85,0,0,0.15,500.33,3482.78,26117797,99.84,0,0,0.16,500.31,3482.81,26117798,99.78,0,0,0.49,500.72,3482.39,26117799,99.64,0,0,0.33,500.54,3482.56,26117800,99.76,0,0,0.31,500.54,3482.58,26117801,99.87,0,0,0.14,500.55,3482.56,26117802,99.86,0,0,0.14,500.69,3482.42,26117803,99.66,0,0,0.42,501.02,3482.08,26117804,99.81,0,0,0.29,500.66,3482.46,26117805,99.7,0,0,0.28,500.67,3482.47,26117806,99.87,0,0,0.16,500.65,3482.49,26117807,99.92,0,0,0.15,500.64,3482.49,26117808,99.75,0,0,0.5,500.98,3482.15,26117809,99.89,0,0,0.21,500.6,3482.52,26117810,99.8,0,0,0.27,501.11,3482.02,26117811,99.83,0,0,0.17,501.11,3482.03,26117812,99.8,0,0,0.14,501.08,3482.05,26117813,99.9,0,0,0.15,501.07,3482.06,26117814,99.72,0,0,0.54,501.09,3482.04,26117815,99.75,0,0,0.28,500.36,3482.78,26117816,99.87,0,0,0.14,500.31,3482.82,26117817,99.88,0,0,0.16,500.3,3482.83,26117818,99.9,0,0,0.14,500.3,3482.83,26117819,99.69,0,0,0.57,500.43,3482.69,26117820,99.52,0,0,0.31,500.79,3482.34,26117821,99.83,0,0,0.17,500.87,3482.26,26117822,99.88,0,0,0.14,500.93,3482.2,26117823,99.89,0,0,0.17,500.92,3482.21,26117824,99.68,0,0,0.56,501.44,3481.68,26117825,99.74,0,0,0.28,499.72,3483.42,26117826,99.85,0,0,0.16,499.66,3483.47,26117827,99.88,0,0,0.15,499.65,3483.48,26117828,99.8,0,0,0.16,499.62,3483.5,26117829,99.49,0,0,0.72,501.07,3482.02,26117830,99.79,0,0,0.32,500.59,3482.52,26117831,99.9,0,0,0.18,500.57,3482.54,26117832,99.92,0,0,0.18,500.56,3482.54,26117833,99.9,0,0,0.18,500.53,3482.57,26117834,99.75,0,0,0.47,501.07,3482.02,26117835,99.78,0,0,0.43,500.27,3482.84,26117836,99.9,0,0,0.18,500.38,3482.72,26117837,99.89,0,0,0.22,500.2,3482.9,26117838,99.89,0,0,0.18,500.19,3482.91,26117839,99.73,0,0,0.43,500.73,3482.37,26117840,99.77,0,0,0.43,500.91,3482.2,26117841,99.9,0,0,0.18,500.9,3482.2,26117842,99.9,0,0,0.18,500.88,3482.22,26117843,99.9,0,0,0.18,500.86,3482.23,26117844,99.77,0,0,0.43,501.27,3481.82,26117845,99.76,0,0,0.41,500.86,3482.25,26117846,99.83,0,0,0.15,500.83,3482.28,26117847,99.85,0,0,0.14,500.8,3482.3,26117848,99.88,0,0,0.19,500.8,3482.29,26117849,99.73,0,0,0.4,501,3482.09,26117850,99.69,0,0,0.4,499.79,3483.32,26117851,99.87,0,0,0.16,499.79,3483.31,26117852,99.9,0,0,0.14,499.89,3483.21,26117853,99.88,0,0.01,0.17,499.92,3483.18,26117854,99.9,0,0,0.15,499.9,3483.19,26117855,99.63,0,0,0.7,500.16,3482.94,26117856,99.89,0,0,0.17,499.63,3483.46,26117857,99.9,0,0,0.14,499.61,3483.48,26117858,99.88,0,0,0.18,499.59,3483.5,26117859,99.7,0,0,0.4,501.1,3481.97,26117860,99.38,0,0.01,0.75,500.27,3482.8,26117861,99.82,0,0,0.15,499.78,3483.29,26117862,99.86,0,0,0.21,499.78,3483.29,26117863,99.86,0,0,0.2,499.86,3483.21,26117864,99.81,0,0,0.2,499.93,3483.13,26117865,99.49,0,0,0.77,501.19,3481.88,26117866,99.81,0,0,0.4,500.66,3482.41,26117867,99.82,0,0,0.17,500.63,3482.43,26117868,99.89,0,0,0.16,500.63,3482.43,26117869,99.85,0,0.01,0.19,500.6,3482.46,26117870,99.61,0,0,0.74,501.52,3481.55,26117871,99.89,0,0,0.13,501.08,3482.02,26117872,99.9,0,0,0.18,501.05,3482.05,26117873,99.9,0,0,0.18,501.04,3482.06,26117874,99.89,0,0,0.15,501.02,3482.08,26117875,95.88,0.04,0.01,78.51,511.93,3472.65,26117876,99.84,0,0,64.66,503.38,3479.81,26117877,99.85,0,0,0.17,503.37,3479.82,26117878,99.86,0,0,0.14,503.34,3479.84,26117879,99.9,0,0,0.14,503.33,3479.85,26117880,99.54,0,0,0.66,503.39,3479.81,26117881,99.85,0,0,0.21,501.16,3482.08,26117882,99.85,0,0,0.15,501.13,3482.11,26117883,99.82,0,0,0.15,501.24,3482,26117884,99.78,0,0,0.14,501.28,3481.95,26117885,99.57,0,0.01,0.47,500.51,3482.74,26117886,99.8,0,0,0.37,501.25,3482.01,26117887,99.87,0,0,0.18,501.23,3482.03,26117888,99.83,0,0,0.15,501.21,3482.04,26117889,99.64,0,0,0.31,501.23,3482,26117890,99.58,0,0,0.59,501.53,3481.72,26117891,99.87,0,0,0.3,500.91,3482.34,26117892,99.86,0,0,0.14,500.9,3482.34,26117893,99.84,0,0,0.16,500.32,3482.92,26117894,99.86,0,0,0.18,499.97,3483.27,26117895,98.12,0,0,0.28,500.53,3482.72,26117896,99.71,0,0,0.57,499.31,3483.93,26117897,99.88,0,0,0.2,498.54,3484.7,26117898,99.89,0,0,0.14,498.52,3484.71,26117899,99.85,0,0,0.15,498.5,3484.73,26117900,99.75,0,0,0.29,498.99,3484.27,26117901,99.66,0,0,0.56,500.64,3482.61,26117902,99.89,0,0,0.15,500.45,3482.79,26117903,99.88,0,0,0.18,500.44,3482.8,26117904,99.87,0,0,0.16,500.43,3482.8,26117905,99.67,0,0,0.3,499.7,3483.55,26117906,99.64,0,0,0.57,500.3,3482.94,26117907,99.84,0,0,0.14,500.16,3483.08,26117908,99.78,0,0,0.17,499.78,3483.46,26117909,99.84,0,0,0.15,499.63,3483.61,26117910,99.64,0,0,0.29,500.24,3483,26117911,99.57,0,0,0.49,500.77,3482.47,26117912,99.84,0,0,0.21,500.53,3482.71,26117913,99.87,0,0,0.15,500.5,3482.73,26117914,99.86,0,0,0.14,500.49,3482.74,26117915,99.73,0,0,0.29,500.51,3482.74,26117916,99.72,0,0,0.57,501.14,3482.1,26117917,99.89,0,0,0.15,500.22,3483.02,26117918,99.87,0,0,0.14,500.21,3483.02,26117919,99.6,0,0,0.29,500.46,3482.75,26117920,99.79,0,0,0.27,500.26,3482.97,26117921,99.69,0,0,0.52,500.89,3482.34,26117922,99.89,0,0,0.21,500.41,3482.81,26117923,99.84,0,0,0.16,500.4,3482.82,26117924,99.88,0,0,0.15,500.37,3482.84,26117925,99.66,0,0,0.27,499.43,3483.79,26117926,99.75,0,0,0.33,500.03,3483.19,26117927,99.79,0,0,0.4,500.32,3482.9,26117928,99.9,0,0,0.14,500.31,3482.9,26117929,99.84,0,0,0.14,500.3,3482.92,26117930,99.74,0,0,0.28,500.54,3482.69,26117931,99.86,0,0,0.14,500.54,3482.69,26117932,99.74,0,0,0.6,500.01,3483.2,26117933,99.81,0,0,0.16,499.51,3483.7,26117934,99.88,0,0,0.14,499.5,3483.7,26117935,99.73,0,0,0.31,499.74,3483.49,26117936,99.89,0,0,0.14,499.73,3483.49,26117937,99.74,0,0,0.59,500.94,3482.28,26117938,99.86,0,0,0.15,500.69,3482.53,26117939,99.85,0,0,0.16,500.67,3482.54,26117940,99.55,0,0,0.28,499.45,3483.77,26117941,99.88,0,0,0.2,499.42,3483.8,26117942,99.73,0,0,0.56,499.77,3483.45,26117943,99.85,0,0,0.17,499.47,3483.74,26117944,99.84,0,0,0.16,499.57,3483.64,26117945,99.79,0,0,0.28,500.55,3482.67,26117946,99.86,0,0,0.2,500.54,3482.68,26117947,99.73,0,0,0.54,500.88,3482.33,26117948,99.83,0,0,0.15,500.49,3482.72,26117949,99.59,0,0,0.29,499.77,3483.41,26117950,99.72,0,0,0.3,500.7,3482.5,26117951,99.9,0,0,0.14,500.7,3482.5,26117952,99.64,0,0,0.59,501.22,3481.97,26117953,99.86,0,0,0.15,500.42,3482.77,26117954,99.75,0,0,0.16,500.41,3482.77,26117955,96.71,0,0,0.27,500.74,3482.46,26117956,98.58,0,0,0.14,500.64,3482.56,26117957,99.76,0,0,0.62,501.12,3482.07,26117958,99.87,0,0,0.15,500.52,3482.67,26117959,99.89,0,0,0.14,500.5,3482.68,26117960,99.7,0,0,0.27,500.5,3482.7,26117961,99.87,0,0,0.14,500.48,3482.71,26117962,99.77,0,0,0.31,500.84,3482.35,26117963,99.81,0,0,0.48,500.7,3482.48,26117964,99.88,0,0,0.18,500.67,3482.51,26117965,98.53,0,0,15.58,501.49,3482.42,26117966,99.88,0,0,0.15,499.94,3483.51,26117967,99.76,0,0,0.33,500.3,3483.14,26117968,99.85,0,0,0.45,500.32,3483.12,26117969,99.9,0,0,0.17,500.14,3483.3,26117970,99.72,0,0,0.34,499.43,3484.02,26117971,99.9,0,0,0.12,499.4,3484.05,26117972,99.83,0,0,0.16,499.38,3484.07,26117973,99.75,0,0,0.56,501.06,3482.38,26117974,99.85,0,0,0.14,500.78,3482.66,26117975,99.73,0,0,0.29,500.82,3482.63,26117976,99.88,0,0,0.15,500.77,3482.68,26117977,99.88,0,0,0.14,500.75,3482.7,26117978,99.7,0,0,0.55,501.08,3482.36,26117979,87.16,0,0,180.55,524.78,3453.78,26117980,93.89,0,0,52.4,515.02,3488.61,26117981,99.85,0,0,0.26,503.16,3513.36,26117982,99.82,0,0,0.18,503.15,3513.36,26117983,99.65,0,0,0.56,503.33,3513.19,26117984,99.83,0,0,0.14,502.88,3513.64,26117985,99.72,0,0,0.4,500.67,3515.93,26117986,99.86,0,0,0.16,500.19,3516.41,26117987,99.79,0,0,0.14,500.19,3516.41,26117988,99.66,0,0,0.49,500.87,3515.72,26117989,99.84,0,0,0.2,500.15,3516.44,26117990,99.77,0,0,0.29,499.94,3516.67,26117991,99.88,0,0,0.14,500.08,3516.52,26117992,99.89,0,0,0.16,500.07,3516.53,26117993,99.68,0,0,0.59,500.76,3515.83,26117994,99.77,0,0,0.18,500.77,3515.82,26117995,99.81,0,0,0.34,500.05,3516.55,26117996,99.86,0,0,0.14,500.02,3516.57,26117997,99.87,0,0,0.16,500,3516.59,26117998,99.74,0,0,0.52,500.43,3516.16,26117999,99.76,0,0,0.24,500.47,3516.12,26118000,99.62,0,0,0.32,500.23,3516.37,26118001,99.82,0,0,0.18,500.22,3516.38,26118002,99.81,0,0,0.17,500.21,3516.38,26118003,99.72,0,0,0.59,500.57,3516.02,26118004,99.88,0,0,0.14,500.42,3516.16,26118005,99.75,0,0,0.31,499.94,3516.66,26118006,99.89,0,0,0.16,499.91,3516.68,26118007,99.87,0,0,0.14,499.91,3516.68,26118008,99.87,0,0,0.15,500.04,3516.55,26118009,99.28,0,0,0.68,500.97,3515.62,26118010,99.74,0,0,0.3,500.8,3515.8,26118011,99.9,0,0,0.16,500.58,3516.04,26118012,99.84,0,0,0.14,500.56,3516.05,26118013,99.72,0,0,0.15,500.56,3516.05,26118014,99.65,0,0,0.54,501.44,3515.17,26118015,99.65,0,0,0.29,500.55,3516.07,26118016,99.84,0,0,0.14,500.51,3516.11,26118017,99.85,0,0,0.2,500.27,3516.35,26118018,99.85,0,0,0.14,500.22,3516.39,26118019,99.68,0,0,0.55,500.67,3515.94,26118020,99.66,0,0,0.28,500.44,3516.18,26118021,99.8,0,0,0.14,500.44,3516.18,26118022,99.84,0,0,0.17,500.58,3516.03,26118023,99.85,0,0,0.14,500.57,3516.04,26118024,99.7,0,0,0.58,501.02,3515.59,26118025,99.78,0,0,0.32,500.82,3515.8,26118026,99.87,0,0,0.18,500.8,3515.82,26118027,99.84,0,0,0.15,500.78,3515.84,26118028,99.82,0,0,0.18,500.62,3515.99,26118029,99.68,0,0,0.51,500.98,3515.63,26118030,99.69,0,0,0.38,500.52,3516.11,26118031,99.85,0,0,0.17,500.51,3516.11,26118032,99.85,0,0,0.16,500.48,3516.14,26118033,99.81,0,0,0.16,500.47,3516.14,26118034,99.66,0,0,0.56,500.87,3515.74,26118035,99.61,0,0,0.28,500.21,3516.41,26118036,99.87,0,0,0.16,500.2,3516.42,26118037,99.81,0,0,0.14,500.28,3516.34,26118038,99.8,0,0,0.16,500.35,3516.27,26118039,99.48,0,0,0.61,501.48,3515.11,26118040,99.58,0,0,0.41,500.12,3516.49,26118041,99.82,0,0,0.16,500.08,3516.52,26118042,99.85,0,0,0.14,500.06,3516.54,26118043,99.83,0,0,0.14,500.04,3516.55,26118044,99.75,0,0,0.17,500.04,3516.55,26118045,99.25,0,0,0.77,500.86,3515.74,26118046,99.89,0,0,0.16,500.51,3516.09,26118047,99.87,0,0,0.14,500.51,3516.09,26118048,99.89,0,0,0.16,499.75,3516.85,26118049,99.9,0,0,0.14,499.73,3516.86,26118050,99.53,0,0,0.69,500.34,3516.27,26118051,99.88,0,0,0.17,499.97,3516.64,26118052,99.81,0,0,0.16,499.95,3516.65,26118053,99.84,0,0,0.14,500.03,3516.57,26118054,99.88,0,0,0.15,500.11,3516.49,26118055,99.66,0,0,0.7,500.47,3516.14,26118056,99.81,0,0,0.14,499.84,3516.77,26118057,99.84,0,0,0.15,499.82,3516.78,26118058,99.86,0,0,0.14,499.8,3516.8,26118059,99.83,0,0,0.14,499.8,3516.8,26118060,99.48,0,0,0.67,500.2,3516.4,26118061,99.82,0,0,0.15,499.52,3517.07,26118062,99.75,0,0,0.17,499.52,3517.07,26118063,99.78,0,0,0.14,499.49,3517.1,26118064,99.81,0,0,0.16,499.48,3517.11,26118065,99.54,0,0,0.71,500.32,3516.28,26118066,99.88,0,0,0.19,499.95,3516.64,26118067,99.82,0,0,0.15,499.94,3516.64,26118068,99.78,0,0,0.16,499.95,3516.63,26118069,99.69,0,0,0.34,500.33,3516.23,26118070,99.41,0,0,0.64,500.68,3515.89,26118071,99.79,0,0,0.34,500.3,3516.27,26118072,99.82,0,0,0.14,500.28,3516.28,26118073,99.85,0,0,0.15,500.26,3516.3,26118074,99.76,0,0,0.15,500.24,3516.33,26118075,99.48,0,0,0.57,500.58,3516.01,26118076,99.83,0,0,0.34,499.5,3517.08,26118077,99.83,0,0,0.23,499.47,3517.11,26118078,99.76,0,0,0.15,499.46,3517.11,26118079,99.83,0,0,0.14,499.44,3517.12,26118080,99.58,0,0,0.54,500.84,3515.74,26118081,99.82,0,0,0.39,499.92,3516.65,26118082,99.77,0,0,0.16,499.89,3516.68,26118083,99.7,0,0,0.17,500.02,3516.54,26118084,99.73,0,0,0.18,500.01,3516.55,26118085,99.59,0,0,0.31,498.09,3518.49,26118086,99.61,0,0,0.61,499.95,3516.62,26118087,99.84,0,0,0.13,499.71,3516.86,26118088,99.73,0,0,0.19,499.55,3517.01,26118089,99.82,0,0,0.15,499.44,3517.12,26118090,99.73,0,0,0.32,499.43,3517.14,26118091,99.59,0,0,0.55,500.23,3516.34,26118092,99.76,0,0,0.15,499.9,3516.67,26118093,99.72,0,0,0.15,499.88,3516.68,26118094,99.74,0,0,0.16,499.99,3516.56,26118095,99.6,0,0,0.33,500.29,3516.29,26118096,99.57,0,0,0.55,500.68,3515.89,26118097,99.8,0,0,0.16,500.02,3516.55,26118098,99.71,0,0,0.14,500,3516.56,26118099,99.48,0,0,0.29,499.98,3516.56,26118100,99.72,0,0,0.31,500.22,3516.33,26118101,99.68,0,0,0.57,500.77,3515.78,26118102,99.83,0,0,0.14,500.23,3516.32,26118103,99.81,0,0,0.16,500.21,3516.33,26118104,99.83,0,0,0.14,500.21,3516.33,26118105,99.7,0,0,0.3,500.2,3516.35,26118106,99.68,0,0,0.5,500.55,3516,26118107,99.8,0,0,0.2,500.19,3516.36,26118108,99.78,0,0,0.14,500.17,3516.39,26118109,99.75,0,0,0.14,500.15,3516.41,26118110,99.62,0,0,0.29,500.3,3516.28,26118111,99.56,0,0,0.55,500.71,3515.86,26118112,99.78,0,0,0.15,500.34,3516.22,26118113,99.82,0,0,0.14,500.32,3516.24,26118114,99.83,0,0,0.16,500.3,3516.26,26118115,99.68,0,0,0.29,500.32,3516.27,26118116,99.68,0,0,0.4,501.02,3515.56,26118117,99.78,0,0,0.3,500.53,3516.05,26118118,99.83,0,0,0.14,500.52,3516.05,26118119,99.76,0,0,0.14,500.51,3516.06,26118120,99.53,0,0,0.3,500.55,3516.04,26118121,99.62,0,0,0.33,500.86,3515.72,26118122,99.79,0,0,0.4,500.48,3516.1,26118123,99.82,0,0,0.14,500.46,3516.11,26118124,99.79,0,0,0.14,500.46,3516.11,26118125,99.68,0,0,0.31,500.22,3516.37,26118126,99.66,0,0,0.35,500.56,3516.02,26118127,99.8,0,0,0.4,500.19,3516.39,26118128,99.81,0,0,0.14,500.28,3516.29,26118129,99.64,0,0,0.32,500.57,3515.98,26118130,99.73,0,0,0.34,500.35,3516.21,26118131,99.76,0,0,0.14,500.32,3516.24,26118132,99.65,0,0,0.59,500.87,3515.69,26118133,99.71,0,0,0.14,500.53,3516.03,26118134,99.79,0,0,0.14,500.51,3516.04,26118135,99.71,0,0,0.34,500.29,3516.28,26118136,99.81,0,0,0.16,500.25,3516.31,26118137,99.65,0,0,0.6,500.89,3515.66,26118138,99.83,0,0,0.14,500.23,3516.31,26118139,99.81,0,0,0.14,500.2,3516.34,26118140,99.73,0,0,0.33,500.22,3516.34,26118141,99.82,0,0,0.16,500.21,3516.34,26118142,99.65,0,0,0.55,500.45,3516.09,26118143,99.8,0,0,0.19,499.91,3516.62,26118144,99.79,0,0,0.15,499.91,3516.62,26118145,99.69,0,0,0.32,500.02,3516.53,26118146,99.78,0,0,0.14,500.08,3516.46,26118147,99.57,0,0,0.6,500.33,3516.21,26118148,99.75,0,0,0.23,499.61,3516.92,26118149,99.81,0,0,0.18,499.48,3517.05,26118150,99.61,0,0,0.28,500.69,3515.86,26118151,99.79,0,0,0.18,500.69,3515.85,26118152,99.63,0,0,0.57,500.95,3515.59,26118153,99.75,0,0,0.18,500.42,3516.12,26118154,99.71,0,0,0.16,500.4,3516.13,26118155,99.63,0,0,0.34,499.43,3517.11,26118156,99.79,0,0,0.16,499.51,3517.03,26118157,99.63,0,0,0.58,500.53,3516.01,26118158,99.81,0,0,0.16,500.54,3515.99,26118159,99.66,0,0,0.36,500.56,3515.95,26118160,99.67,0,0,0.34,500.55,3515.98,26118161,99.76,0,0,0.15,500.52,3516,26118162,99.62,0,0,0.32,500.94,3515.58,26118163,99.78,0,0,0.42,499.76,3516.75,26118164,99.71,0,0,0.16,499.72,3516.81,26118165,99.66,0,0,0.34,499.57,3517,26118166,99.82,0,0,0.18,499.48,3517.09,26118167,99.76,0,0,0.15,499.46,3517.11,26118168,99.57,0,0,0.59,500.63,3515.93,26118169,99.75,0,0,0.16,500.4,3516.15,26118170,99.54,0,0,0.33,500.65,3515.91,26118171,99.75,0,0,0.14,500.64,3515.93,26118172,99.76,0,0,0.16,500.62,3515.94,26118173,99.61,0,0,0.59,501.09,3515.47,26118174,99.66,0,0,0.14,500.78,3515.77,26118175,99.62,0,0,0.29,499.83,3516.73,26118176,99.72,0,0,0.15,499.78,3516.78,26118177,99.73,0,0,0.16,499.76,3516.8,26118178,99.59,0.03,0.83,0.66,500.75,3515.8,26118179,99.78,0,0.01,0.18,500.64,3515.89,26118180,99.45,0,0,0.3,500.41,3516.15,26118181,99.64,0,0,0.16,500.4,3516.15,26118182,99.66,0,0,0.17,500.38,3516.19,26118183,99.54,0,0,0.59,500.8,3515.76,26118184,99.73,0,0,0.14,500.11,3516.45,26118185,99.62,0,0,0.33,501.22,3515.36,26118186,99.72,0,0,0.16,501.3,3515.27,26118187,99.7,0,0,0.14,501.29,3515.27,26118188,99.64,0,0,0.5,501.55,3515.01,26118189,99.49,0,0,0.46,501.25,3515.29,26118190,99.6,0,0,0.3,501.26,3515.3,26118191,99.7,0,0,0.14,501.23,3515.32,26118192,99.75,0,0,0.16,501.22,3515.33,26118193,99.64,0,0,0.4,501.57,3514.97,26118194,99.73,0,0,0.29,500.94,3515.6,26118195,99.59,0,0,0.32,501.42,3515.14,26118196,99.78,0,0,0.14,501.41,3515.14,26118197,99.78,0,0,0.19,501.4,3515.14,26118198,99.67,0,0,0.54,501.71,3514.83,26118199,99.79,0,0,0.15,501.12,3515.42,26118200,99.66,0,0,0.29,501.14,3515.42,26118201,99.72,0,0,0.14,501.22,3515.34,26118202,99.73,0,0,0.16,501,3515.55,26118203,99.72,0,0,0.14,500.54,3516,26118204,99.52,0,0,0.56,500.68,3515.86,26118205,99.56,0,0,0.3,499.33,3517.23,26118206,99.71,0,0,0.16,499.29,3517.27,26118207,99.76,0,0,0.14,499.26,3517.29,26118208,99.71,0,0,0.18,499.25,3517.29,26118209,99.6,0,0,0.54,500.85,3515.69,26118210,99.63,0,0,0.28,500.71,3515.85,26118211,99.68,0,0,0.17,500.7,3515.85,26118212,99.67,0,0,0.14,500.67,3515.88,26118213,99.74,0,0,0.15,500.66,3515.88,26118214,99.6,0,0,0.54,500.34,3516.19,26118215,99.6,0,0,0.32,500.37,3516.17,26118216,99.76,0,0,0.14,500.36,3516.18,26118217,99.81,0,0,0.16,500.47,3516.07,26118218,99.75,0.02,0.83,0.14,500.52,3516.01,26118219,99.26,0.02,0.84,0.77,500.78,3515.72,26118220,99.64,0.01,0.2,0.31,500.43,3516.08,26118221,99.75,0,0.05,0.22,500.4,3516.1,26118222,99.78,0,0,0.14,500.38,3516.11,26118223,99.69,0,0,0.15,500.35,3516.13,26118224,99.56,0,0,0.4,500.81,3515.67,26118225,99.49,0,0,0.46,499.63,3516.87,26118226,99.75,0,0,0.14,499.69,3516.81,26118227,99.73,0,0,0.16,499.76,3516.73,26118228,99.71,0,0,0.16,499.74,3516.75,26118229,99.63,0,0,0.54,500.75,3515.73,26118230,99.58,0,0,0.3,500.73,3515.77,26118231,99.71,0,0,0.14,500.69,3515.8,26118232,99.78,0,0,0.15,500.69,3515.8,26118233,99.78,0,0,0.14,500.66,3515.83,26118234,99.49,0,0,0.55,500.96,3515.52,26118235,99.6,0,0,0.35,500.47,3516.02,26118236,99.67,0,0,0.18,500.39,3516.1,26118237,99.75,0,0,0.18,500.38,3516.11,26118238,99.77,0,0,0.16,500.37,3516.11,26118239,99.77,0,0,0.14,500.35,3516.14,26118240,90.98,0.3,0.01,261.08,517.96,3488.38,26118241,99.6,0,0,0.25,503.09,3513.12,26118242,99.77,0,0,0.15,503.09,3513.12,26118243,99.78,0,0,0.16,503.05,3513.15,26118244,99.77,0.02,0.83,0.19,503.13,3513.06,26118245,99.44,0,0.02,0.73,501.64,3514.62,26118246,99.73,0.05,2,0.29,500.45,3515.82,26118247,99.78,0,0.01,0.18,500.4,3515.87,26118248,99.75,0,0.01,0.19,500.44,3515.82,26118249,99.6,0,0,0.3,501.01,3515.23,26118250,99.54,0,0,0.75,501.35,3514.9,26118251,99.73,0,0,0.13,500.76,3515.48,26118252,99.66,0,0,0.16,500.74,3515.5,26118253,99.44,0,0,0.14,500.72,3515.52,26118254,99.71,0,0,0.14,500.72,3515.53,26118255,99.48,0.01,0.49,0.78,501.16,3515.1,26118256,99.78,0,0.02,0.23,500.75,3515.5,26118257,99.73,0,0,0.18,500.76,3515.49,26118258,99.8,0,0,0.15,500.75,3515.5,26118259,99.86,0.01,0.01,0.15,500.72,3515.52,26118260,99.44,0,0,0.77,501.26,3515,26118261,99.83,0,0,0.14,500.88,3515.37,26118262,99.85,0,0,0.14,500.87,3515.38,26118263,99.85,0,0,0.14,500.85,3515.39,26118264,99.79,0,0,0.15,500.83,3515.41,26118265,96.8,0,0,0.55,501.1,3515.15,26118266,99.81,0,0,0.3,500.79,3515.46,26118267,99.82,0,0,0.14,500.78,3515.46,26118268,99.81,0.01,0.2,0.25,500.54,3515.7,26118269,99.79,0,0,0.16,500.37,3515.87,26118270,99.43,0,0,0.56,500.43,3515.83,26118271,99.82,0,0,0.36,501.03,3515.22,26118272,99.71,0,0,0.18,501.01,3515.24,26118273,99.82,0,0.01,0.2,500.96,3515.28,26118274,99.78,0,0,0.15,500.95,3515.29,26118275,99.58,0,0.01,0.32,499.99,3516.26,26118276,99.48,0,0,0.57,500.96,3515.28,26118277,99.8,0,0,0.14,500.65,3515.59,26118278,99.84,0,0,0.15,500.65,3515.59,26118279,99.64,0,0,0.36,500.62,3515.59,26118280,99.71,0,0,0.29,500.87,3515.36,26118281,99.64,0,0,0.54,501,3515.22,26118282,99.79,0,0,0.16,500.62,3515.6,26118283,99.67,0,0,0.14,500.71,3515.5,26118284,99.73,0,0,0.15,500.76,3515.44,26118285,99.51,0.02,0.2,0.37,499.78,3516.44,26118286,99.7,0.01,0.18,0.66,501.16,3515.04,26118287,99.76,0,0.01,0.14,500.75,3515.45,26118288,99.8,0,0,0.15,500.73,3515.47,26118289,99.78,0,0,0.15,500.72,3515.47,26118290,99.67,0,0,0.3,500.96,3515.25,26118291,99.59,0.04,0.18,0.63,501.53,3514.66,26118292,99.47,0.28,1.24,1.04,502.44,3513.64,26118293,98.99,2.21,74.06,0.77,502.5,3513.57,26118294,99.18,1.25,38.13,0.94,502.47,3513.59,26118295,98.95,1.16,39.47,0.56,503.25,3512.83,26118296,99.68,0.04,0.06,0.67,504.29,3511.78,26118297,99.78,0,0,0.15,504.46,3511.61,26118298,99.84,0.02,0.04,0.2,504.39,3511.67,26118299,99.77,0.03,0.03,0.21,504.33,3511.73,26118300,99.47,0,0.01,0.32,504.21,3511.86,26118301,99.55,0.03,0.11,0.69,503.95,3512.13,26118302,99.83,0,0,0.18,502.65,3513.44,26118303,99.72,0.07,0.13,0.33,502.72,3513.34,26118304,99.76,0.04,0.05,0.33,502.74,3513.3,26118305,99.41,12.18,11.62,11.72,503.89,3508.21,26118306,99.66,0.24,0.82,1.08,504.3,3500.06,26118307,79.09,0.04,1.37,3.76,658.2,3345.96,26118308,99.81,0.06,2.51,0.85,968.74,3034.95,26118309,99.38,0.03,1.17,0.49,755.03,3248.62,26118310,99.62,0,0.03,0.43,552.6,3451.06,26118311,99.55,0,0.01,0.44,552.94,3450.72,26118312,99.72,0,0,0.29,552.8,3450.85,26118313,99.62,0,0,0.14,552.84,3450.81,26118314,99.76,0,0,0.15,552.7,3450.94,26118315,99.65,0,0,0.32,552.94,3450.72,26118316,99.58,0,0,0.36,553.31,3450.34,26118317,99.81,0,0,0.39,553.17,3450.48,26118318,99.81,0,0,0.14,553.15,3450.5,26118319,99.72,0,0,0.14,553.13,3450.51,26118320,99.58,0,0,0.31,553.39,3450.27,26118321,99.77,0,0,0.14,553.37,3450.28,26118322,99.45,0,0,0.57,553.29,3450.37,26118323,99.8,0,0,0.15,552.61,3451.04,26118324,99.78,0,0,0.14,552.58,3451.07,26118325,99.63,0,0,0.32,552.9,3450.76,26118326,99.85,0,0,0.16,552.82,3450.84,26118327,99.59,0,0,0.55,553.15,3450.5,26118328,99.78,0,0,0.2,552.79,3450.86,26118329,99.77,0,0,0.14,552.7,3450.94,26118330,99.63,0,0,0.3,552.7,3450.96,26118331,99.85,0,0,0.17,552.69,3450.98,26118332,99.67,0,0,0.53,553.39,3450.28,26118333,99.81,0,0,0.16,553.15,3450.52,26118334,99.8,0,0,0.14,553.14,3450.53,26118335,99.62,0,0,0.32,553.39,3450.29,26118336,99.85,0,0,0.18,553.1,3450.57,26118337,99.65,0,0,0.54,553.35,3450.32,26118338,99.83,0,0,0.15,552.84,3450.82,26118339,99.67,0,0,0.32,552.82,3450.83,26118340,99.64,0,0,0.32,552.83,3450.83,26118341,99.81,0,0,0.17,552.8,3450.86,26118342,99.7,0,0,0.53,553.32,3450.33,26118343,99.82,0,0,0.15,553.31,3450.34,26118344,99.81,0,0,0.17,553.43,3450.23,26118345,99.67,0,0,0.32,553.68,3450,26118346,99.81,0,0,0.14,553.66,3450.01,26118347,99.62,0,0,0.57,553.92,3449.75,26118348,99.82,0,0,0.14,553.39,3450.28,26118349,99.8,0,0,0.14,553.37,3450.29,26118350,99.59,0,0,0.3,552.65,3451.03,26118351,99.75,0,0,0.14,552.62,3451.06,26118352,99.68,0,0,0.41,552.98,3450.68,26118353,99.88,0,0,0.35,552.82,3450.84,26118354,99.88,0,0,0.16,552.79,3450.87,26118355,99.6,0,0,0.34,553.29,3450.39,26118356,99.84,0,0,0.14,553.29,3450.38,26118357,99.75,0,0,0.31,553.07,3450.6,26118358,99.84,0,0,0.39,551.89,3451.77,26118359,99.84,0,0,0.14,551.96,3451.7,26118360,99.59,0,0,0.3,552,3451.68,26118361,99.71,0,0,0.16,551.94,3451.73,26118362,99.8,0,0,0.14,551.94,3451.73,26118363,99.7,0,0,0.58,552.89,3450.77,26118364,99.76,0,0,0.16,552.63,3451.03,26118365,99.54,0,0,0.32,551.92,3451.76,26118366,99.83,0,0,0.14,551.88,3451.8,26118367,99.81,0,0,0.18,551.85,3451.82,26118368,99.65,0,0,0.55,553.24,3450.43,26118369,99.61,0,0,0.3,553.07,3450.57,26118370,99.48,0,0,0.3,552.59,3451.07,26118371,99.82,0,0,0.16,552.35,3451.31,26118372,99.84,0,0.01,0.17,552.04,3451.61,26118373,99.64,0,0,0.54,553.01,3450.63,26118374,99.76,0,0,0.15,552.43,3451.21,26118375,99.56,0,0.01,0.34,552.44,3451.22,26118376,99.85,0,0,0.16,552.41,3451.25,26118377,99.75,0,0,0.2,552.41,3451.26,26118378,99.62,0,0,0.54,552.74,3450.93,26118379,98.05,0,0,0.2,552.12,3451.54,26118380,99.63,0,0,0.34,552.6,3451.07,26118381,99.77,0,0,0.15,552.58,3451.08,26118382,99.78,0.01,0.09,0.17,552.6,3451.06,26118383,99.51,0,0,0.64,552.78,3450.87,26118384,99.73,0,0,0.15,551.88,3451.75,26118385,99.62,0.03,0.96,0.39,552.13,3451.51,26118386,98.26,0,0,0.17,552.13,3451.51,26118387,99.81,0,0,0.14,552.1,3451.53,26118388,99.63,0,0,0.5,552.77,3450.86,26118389,99.88,0,0,0.19,553.05,3450.57,26118390,99.62,0,0,0.38,552.43,3451.21,26118391,99.83,0,0,0.18,552.26,3451.37,26118392,99.83,0,0,0.18,552.03,3451.6,26118393,99.69,0,0,0.43,552.64,3450.98,26118394,99.84,0,0,0.28,552.26,3451.36,26118395,99.67,0,0,0.32,552.74,3450.9,26118396,99.79,0,0,0.13,552.73,3450.9,26118397,99.89,0,0,0.16,552.88,3450.75,26118398,99.87,0,0,0.14,552.88,3450.74,26118399,99.42,0,0,0.68,553.49,3450.1,26118400,99.69,0,0,0.3,552.87,3450.75,26118401,99.78,0,0,0.15,552.85,3450.76,26118402,99.82,0,0,0.18,552.84,3450.77,26118403,99.83,0,0,0.16,552.81,3450.79,26118404,99.7,0,0,0.6,553.41,3450.2,26118405,99.69,0,0,0.33,553.53,3450.1,26118406,99.81,0,0,0.16,553.53,3450.1,26118407,99.8,0,0,0.14,553.53,3450.1,26118408,99.82,0,0,0.15,553.31,3450.31,26118409,99.68,0,0,0.55,552.66,3450.96,26118410,99.78,0,0,0.3,552.74,3450.89,26118411,99.84,0,0,0.14,552.73,3450.9,26118412,99.87,0,0.01,0.2,552.85,3450.77,26118413,99.79,0,0.01,0.19,552.89,3450.73,26118414,99.69,0,0.01,0.57,553.58,3450.03,26118415,99.75,0.04,1.69,0.51,552.8,3450.82,26118416,99.76,0.02,0.71,0.22,552.87,3450.75,26118417,99.85,0,0.01,0.26,552.78,3450.82,26118418,99.85,0.03,0.98,0.27,552.75,3450.83,26118419,99.64,0,0.02,0.55,553.3,3450.29,26118420,99.57,0,0,0.4,553.07,3450.53,26118421,99.83,0,0,0.18,553.13,3450.47,26118422,99.84,0,0,0.18,553.1,3450.5,26118423,99.81,0,0.01,0.2,553.08,3450.51,26118424,99.48,0.07,2.8,0.68,553.65,3449.93,26118425,99.66,0,0.02,0.39,552.11,3451.47,26118426,99.84,0,0,0.18,552.07,3451.51,26118427,99.74,0,0,0.14,552.03,3451.55,26118428,99.83,0,0.01,0.18,551.77,3451.8,26118429,99.46,0,0,0.72,552.65,3450.9,26118430,99.7,0.02,0.71,0.36,552.47,3451.08,26118431,99.74,0.04,1.06,0.26,552.58,3450.96,26118432,99.69,0.02,0.04,0.36,555.71,3447.69,26118433,99.81,0,0,0.16,556.27,3447.11,26118434,99.61,0.01,0,0.48,556.97,3446.4,26118435,99.62,0,0,0.44,557.26,3446.13,26118436,99.85,0,0,0.18,557.19,3446.19,26118437,79.97,0.02,0.15,7.46,921.46,3081.86,26118438,99.49,0,0.02,0.18,903.12,3100.24,26118439,80.6,0.02,0.03,4.16,840.71,3162.62,26118440,80.7,0.03,0.73,4.7,970.15,3033.18,26118441,99.63,0,0,0.17,666.82,3336.54,26118442,80.33,0.02,0.23,3.74,683.19,3320.14,26118443,99.42,0.03,1.21,0.7,961.26,3042.09,26118444,99.67,0,0,0.2,556.4,3446.94,26118445,99.33,0.02,0.66,0.79,558.23,3445.13,26118446,99.75,0,0.04,0.2,557.79,3445.55,26118447,99.72,0,0,0.2,557.96,3445.38,26118448,99.68,0,0,0.18,558.01,3445.33,26118449,99.7,0.05,1.91,0.19,558.16,3445.17,26118450,99.35,0.04,1.45,0.77,559.18,3444.17,26118451,99.75,0.02,0.72,0.25,558.46,3444.88,26118452,99.68,0.03,2.69,0.3,558.41,3444.9,26118453,99.77,0.02,0.73,0.23,558.37,3444.94,26118454,81.1,0.03,0.73,4.13,773.16,3230.1,26118455,99.43,0.01,0,0.79,951.69,3051.64,26118456,79.67,0.03,0.74,4.16,979.51,3023.79,26118457,98.43,0.01,0,0.19,785.87,3217.45,26118458,77.32,0.08,3.1,4.11,989.91,3013.34,26118459,99.29,0,0,0.37,647.94,3355.31,26118460,99.45,0,0.01,0.69,559.89,3443.38,26118461,99.83,0,0,0.21,559.54,3443.73,26118462,99.76,0,0.01,0.17,559.51,3443.76,26118463,97.46,0.01,0,0.33,563.22,3440.04,26118464,81.39,0.03,0.86,4.06,984.54,3018.7,26118465,79.87,0.03,0.88,4.71,970.63,3032.63,26118466,99.61,0,0.02,0.25,727.1,3276.16,26118467,99.68,0.01,0.03,0.24,555.14,3448.11,26118468,99.76,0,0,0.21,555.16,3448.09,26118469,99.83,0,0,0.23,555.26,3448.01,26118470,97.95,0.01,0,0.68,558.55,3444.74,26118471,81.19,0.06,2.53,4.23,981.4,3021.85,26118472,80.89,0.05,1.7,4.07,973.39,3029.83,26118473,80.6,0.05,1.74,4.23,939.72,3063.48,26118474,99.5,0,0,0.21,632.11,3371.11,26118475,99.46,0,0,0.6,557.75,3445.49,26118476,99.66,0,0,0.34,558.71,3444.53,26118477,99.81,0,0.01,0.23,558.67,3444.56,26118478,99.8,0,0,0.2,558.83,3444.4,26118479,99.76,0,0,0.21,558.79,3444.43,26118480,99.24,0.01,0.04,0.5,558.51,3444.73,26118481,99.8,0,0.02,0.51,558.92,3444.31,26118482,99.7,0,0,0.16,558.88,3444.34,26118483,99.82,0,0,0.15,559.03,3444.19,26118484,99.74,0.02,0.83,0.2,559.03,3444.18,26118485,99.69,0,0.04,0.45,559.23,3443.99,26118486,99.58,0.01,0.04,0.96,559.85,3443.36,26118487,99.7,0.01,0.09,0.19,559.25,3443.96,26118488,99.69,0.01,0.3,0.23,559.26,3443.94,26118489,99.39,0.02,0.99,0.36,559.04,3444.12,26118490,99.7,0,0,0.37,558.56,3444.62,26118491,99.57,0,0,0.7,558.93,3444.25,26118492,99.65,0.01,0.02,0.17,558.48,3444.69,26118493,99.5,0,0.01,0.18,558.41,3444.75,26118494,99.65,0,0,0.15,558.37,3444.79,26118495,91.78,0.03,0.68,0.78,587.37,3415.8,26118496,86.28,0.04,1.7,4.16,999.7,3003.43,26118497,99.47,0,0,0.27,773.59,3229.57,26118498,99.75,0.04,1.73,0.2,539.48,3463.66,26118499,99.87,0,0.02,0.2,511.8,3491.35,26118500,99.68,0.05,2,0.42,512.37,3490.78,26118501,99.57,0.04,2,0.6,512.65,3490.49,26118502,99.71,0,0,0.27,512.33,3490.8,26118503,99.7,0,0.01,0.18,512.38,3490.74,26118504,99.71,0.13,5.93,0.25,512.4,3490.71,26118505,99.67,0,0.02,0.38,512.67,3490.43,26118506,99.7,0.02,0.93,0.54,513.36,3489.74,26118507,99.44,0.18,1.01,0.32,513.67,3489.38,26118508,99.52,0.08,0.35,0.19,514.38,3488.64,26118509,99.65,0.12,0.21,0.29,514.59,3488.42,26118510,99.49,0.02,0.02,0.43,514.78,3488.26,26118511,99.61,0.02,0.02,0.49,515.33,3487.7,26118512,99.53,0.05,0.11,0.4,514.77,3488.26,26118513,80.93,0.09,1.76,4.22,801.07,3201.85,26118514,99.5,0.06,0.72,0.44,980.67,3022.2,26118515,99,0.05,0.97,0.42,584.98,3417.89,26118516,79.19,0.08,3.11,4.66,964.28,3038.53,26118517,99.2,0,0,0.3,868.38,3134.43,26118518,99.73,0.01,0.08,0.18,558.45,3444.37,26118519,99.61,0,0.01,0.32,559.59,3443.2,26118520,99.73,0,0,0.31,559.62,3443.19,26118521,99.63,0,0,0.43,560.08,3442.72,26118522,99.74,0,0,0.28,559.99,3442.8,26118523,99.81,0,0,0.16,559.98,3442.82,26118524,99.79,0,0,0.16,559.97,3442.85,26118525,99.71,0,0,0.3,559.97,3442.87,26118526,99.81,0,0,0.14,559.95,3442.89,26118527,99.51,0,0,0.57,560.44,3442.39,26118528,99.82,0.01,0.02,0.19,559.87,3442.96,26118529,99.83,0,0,0.14,559.83,3443,26118530,99.64,0,0,0.3,560.48,3442.37,26118531,99.79,0,0,0.14,560.49,3442.35,26118532,99.69,0,0.02,0.56,560.99,3441.84,26118533,99.83,0,0,0.17,560.22,3442.62,26118534,99.83,0.01,0.25,0.2,559.71,3443.11,26118535,99.68,0.01,0.44,0.35,559.98,3442.87,26118536,99.79,0,0.01,0.21,559.94,3442.89,26118537,99.59,0,0,0.57,560.28,3442.54,26118538,99.78,0,0,0.2,559.89,3442.93,26118539,99.8,0,0,0.21,559.86,3442.95,26118540,99.47,0,0,0.35,560.1,3442.72,26118541,99.62,0,0.01,0.18,560.11,3442.71,26118542,99.58,0,0.01,0.56,560.59,3442.23,26118543,99.76,0.01,0.34,0.25,560.22,3442.59,26118544,99.82,0,0.01,0.21,560.13,3442.67,26118545,99.5,0.01,0.08,0.4,560.21,3442.61,26118546,99.7,0,0.01,0.21,560.19,3442.62,26118547,99.55,0,0,0.39,560.94,3441.86,26118548,99.72,0,0.01,0.31,560.87,3441.93,26118549,99.49,0,0,0.3,560.12,3442.66,26118550,99.52,0,0,0.35,558.68,3444.11,26118551,99.75,0.01,0.02,0.15,558.35,3444.44,26118552,99.69,0,0,0.42,559.03,3443.75,26118553,99.84,0,0,0.29,559.46,3443.31,26118554,99.76,0,0,0.16,559.43,3443.33,26118555,99.59,0,0,0.31,559.67,3443.11,26118556,99.8,0,0,0.16,559.66,3443.12,26118557,99.49,0,0,0.43,560.08,3442.7,26118558,99.77,0,0,0.28,560.11,3442.67,26118559,99.79,0,0,0.16,560.08,3442.69,26118560,99.48,0,0,0.34,560.34,3442.45,26118561,99.85,0,0,0.18,560.31,3442.47,26118562,99.7,0,0,0.32,560.77,3442,26118563,99.84,0,0,0.43,560.45,3442.32,26118564,99.86,0,0,0.14,560.42,3442.35,26118565,99.74,0,0,0.29,560.91,3441.88,26118566,99.88,0,0,0.16,560.89,3441.89,26118567,99.85,0,0,0.14,560.87,3441.91,26118568,99.69,0,0,0.55,561.33,3441.44,26118569,99.85,0,0,0.16,559.83,3442.93,26118570,99.7,0,0,0.29,558.68,3444.1,26118571,99.89,0,0,0.16,558.58,3444.2,26118572,99.82,0,0,0.14,558.58,3444.2,26118573,99.7,0,0,0.6,560.04,3442.73,26118574,99.78,0,0,0.2,560.41,3442.35,26118575,99.77,0,0,0.31,560.17,3442.6,26118576,99.87,0,0.01,0.16,560.14,3442.63,26118577,99.87,0,0.01,0.18,560.09,3442.68,26118578,99.7,0,0,0.54,560.24,3442.52,26118579,99.63,0,0,0.29,560.29,3442.45,26118580,99.7,0,0,0.35,559.35,3443.4,26118581,99.89,0,0,0.18,559.48,3443.27,26118582,99.86,0,0,0.16,559.63,3443.12,26118583,99.74,0,0,0.41,560.93,3441.81,26118584,99.83,0,0.01,0.35,560.63,3442.11,26118585,99.76,0,0,0.29,560.87,3441.89,26118586,99.85,0.02,0.81,0.2,560.86,3441.89,26118587,99.83,0,0.01,0.21,560.66,3442.09,26118588,99.63,0,0.01,0.48,560.26,3442.48,26118589,99.84,0,0,0.21,560.05,3442.69,26118590,99.65,0,0,0.31,560.31,3442.44,26118591,99.92,0,0,0.14,560.44,3442.3,26118592,99.9,0,0,0.13,560.42,3442.32,26118593,99.69,0,0,0.55,560.75,3441.99,26118594,99.83,0,0,0.14,560.39,3442.36,26118595,99.71,0,0.01,0.35,559.9,3442.87,26118596,99.88,0,0.14,0.2,559.93,3442.84,26118597,99.85,0.01,0.16,0.15,559.9,3442.86,26118598,99.67,0.18,8.02,0.65,560.18,3442.55,26118599,99.84,0.03,1.42,0.35,559.93,3442.75,26118600,99.6,0,0,0.32,560.86,3441.84,26118601,99.87,0.04,1.53,0.24,560.82,3441.86,26118602,99.78,0.03,1.04,0.21,560.72,3441.94,26118603,99.78,0,0,0.18,560.69,3441.96,26118604,94.55,0.28,0.01,260.86,576.58,3426.26,26118605,99.76,0,0.02,0.32,563.63,3438.9,26118606,99.84,0,0.01,0.18,563.3,3439.23,26118607,99.87,0,0,0.17,562.64,3439.89,26118608,99.8,0,0.07,0.15,562.59,3439.93,26118609,99.52,0,0,0.81,561.52,3441,26118610,99.61,0,0,0.31,559.42,3443.12,26118611,99.83,0,0.01,0.13,559.4,3443.14,26118612,99.84,0,0,0.17,559.51,3443.03,26118613,99.79,0,0,0.14,559.5,3443.03,26118614,99.68,0,0,0.55,560.76,3441.78,26118615,99.69,0,0,0.32,559.77,3442.79,26118616,99.85,0,0,0.16,559.7,3442.86,26118617,99.85,0,0,0.17,559.69,3442.87,26118618,99.82,0,0,0.16,559.66,3442.89,26118619,99.68,0,0,0.54,560.78,3441.77,26118620,99.75,0,0,0.3,561.12,3441.45,26118621,99.88,0,0,0.15,561.11,3441.45,26118622,99.83,0,0,0.16,561.08,3441.48,26118623,99.87,0,0,0.17,561.23,3441.32,26118624,99.7,0,0,0.42,561.69,3440.86,26118625,99.77,0,0,0.44,561.45,3441.12,26118626,99.89,0,0,0.14,560.47,3442.1,26118627,99.85,0,0,0.16,560.44,3442.13,26118628,99.83,0,0,0.17,560.25,3442.31,26118629,99.65,0,0,0.58,561,3441.55,26118630,99.72,0,0,0.39,560.15,3442.41,26118631,99.88,0,0,0.13,560.12,3442.43,26118632,99.89,0,0,0.15,560.11,3442.44,26118633,99.85,0,0,0.16,560.08,3442.46,26118634,99.69,0,0,0.42,560.76,3441.79,26118635,99.61,0,0,0.44,560.78,3441.79,26118636,99.83,0,0,0.15,560.77,3441.8,26118637,99.88,0,0,0.14,560.74,3441.82,26118638,99.84,0,0,0.15,560.72,3441.83,26118639,99.7,0,0,0.29,561.49,3441.04,26118640,99.52,0,0,0.68,561.78,3440.77,26118641,99.79,0,0,0.16,561.42,3441.14,26118642,99.78,0,0,0.14,561.4,3441.15,26118643,99.8,0,0,0.15,561.38,3441.17,26118644,99.82,0.03,0.71,0.21,561.41,3441.13,26118645,99.48,0.02,0.81,0.73,561.35,3441.2,26118646,99.88,0,0,0.16,560.21,3442.33,26118647,99.71,0,0,0.14,559.94,3442.6,26118648,99.8,0,0,0.17,559.91,3442.63,26118649,99.72,0,0,0.15,559.88,3442.66,26118650,99.56,0,0,0.69,561.36,3441.19,26118651,99.83,0,0,0.15,560.96,3441.58,26118652,99.83,0,0,0.16,561,3441.54,26118653,99.79,0,0,0.14,560.98,3441.55,26118654,99.78,0,0,0.15,560.96,3441.57,26118655,99.37,0,0,0.72,561.14,3441.41,26118656,99.83,0,0,0.16,560.94,3441.61,26118657,99.83,0,0,0.14,560.92,3441.62,26118658,99.83,0,0,0.16,560.89,3441.64,26118659,99.83,0,0,0.14,560.86,3441.67,26118660,99.36,0.03,0,0.71,561.03,3441.52,26118661,99.8,0,0,0.18,561.17,3441.38,26118662,99.81,0,0,0.18,561.14,3441.4,26118663,99.8,0,0,0.14,561.08,3441.46,26118664,99.76,0,0,0.15,560.36,3442.17,26118665,99.45,0,0,0.73,560.82,3441.72,26118666,99.79,0,0,0.13,560.19,3442.36,26118667,99.79,0,0,0.16,559.52,3443.02,26118668,99.77,0.02,0.11,0.16,559.48,3443.06,26118669,99.66,0,0,0.29,559.95,3442.57,26118670,99.52,0,0,0.72,560.96,3441.57,26118671,99.78,0,0.01,0.2,540.34,3462.21,26118672,99.79,0,0,0.16,512.39,3490.18,26118673,99.84,0,0,0.14,512.36,3490.2,26118674,99.84,0,0,0.18,512.49,3490.07,26118675,99.47,0,0,0.61,512.62,3489.96,26118676,99.83,0,0,0.27,511.52,3491.05,26118677,99.83,0,0,0.19,511.51,3491.08,26118678,99.83,0,0,0.15,511.28,3491.3,26118679,99.81,0,0,0.14,511.22,3491.36,26118680,99.59,0,0,0.55,512.53,3490.06,26118681,99.79,0,0,0.27,512.19,3490.4,26118682,99.34,0,0,0.16,512.16,3490.42,26118683,99.84,0,0,0.16,512.13,3490.45,26118684,99.83,0,0,0.14,512.11,3490.46,26118685,99.66,0,0,0.32,512.27,3490.32,26118686,99.7,0,0,0.52,511.75,3490.83,26118687,99.76,0,0.01,0.18,511.3,3491.28,26118688,99.79,0,0,0.16,511.3,3491.27,26118689,99.82,0,0,0.18,511.74,3490.83,26118690,99.56,0.12,5.39,0.48,511.42,3491.15,26118691,99.67,0,0.02,0.6,512.26,3490.29,26118692,99.79,0,0,0.16,511.75,3490.82,26118693,99.78,0,0,0.15,511.74,3490.83,26118694,99.83,0,0,0.14,511.71,3490.85,26118695,99.71,0,0,0.3,511.95,3490.63,26118696,99.7,0,0,0.54,512.12,3490.46,26118697,99.83,0.01,0.34,0.17,511.42,3491.15,26118698,99.82,0,0.01,0.18,511.35,3491.22,26118699,99.65,0,0,0.29,511.84,3490.7,26118700,99.71,0,0,0.31,511.76,3490.8,26118701,99.68,0,0,0.45,512.1,3490.45,26118702,99.84,0,0,0.25,511.71,3490.84,26118703,99.83,0,0,0.15,511.68,3490.86,26118704,99.86,0,0,0.15,511.66,3490.89,26118705,99.64,0,0,0.32,510.69,3491.88,26118706,99.68,0,0,0.41,511.17,3491.39,26118707,99.83,0,0,0.27,511.37,3491.2,26118708,99.83,0,0,0.15,511.34,3491.22,26118709,99.83,0,0,0.14,511.41,3491.15,26118710,99.76,0,0,0.3,511.99,3490.57,26118711,99.67,0.06,2.14,0.54,512.31,3490.26,26118712,99.84,0,0,0.34,511.7,3490.83,26118713,99.83,0,0,0.16,511.75,3490.78,26118714,99.81,0,0,0.15,511.73,3490.79,26118715,99.7,0,0,0.31,510.85,3491.69,26118716,99.68,0,0,0.38,511.48,3491.06,26118717,99.81,0,0,0.38,511.68,3490.86,26118718,99.83,0,0,0.18,511.65,3490.88,26118719,99.8,0.01,0.23,0.17,511.72,3490.81,26118720,99.65,0,0,0.34,512.19,3490.35,26118721,99.77,0,0,0.16,512.19,3490.35,26118722,99.64,0,0,0.55,511.86,3490.67,26118723,99.8,0,0,0.14,511.41,3491.12,26118724,99.78,0,0,0.14,511.39,3491.13,26118725,99.66,0,0,0.32,511.86,3490.68,26118726,99.83,0,0,0.14,511.85,3490.69,26118727,99.67,0,0,0.56,512.18,3490.35,26118728,99.84,0,0,0.14,511.8,3490.72,26118729,99.67,0,0,0.31,512.13,3490.37,26118730,99.67,0,0,0.32,512.45,3490.08,26118731,99.81,0,0,0.13,512.44,3490.08,26118732,99.64,0,0,0.54,512.76,3489.75,26118733,99.81,0,0,0.15,512.38,3490.13,26118734,99.8,0,0,0.14,512.36,3490.14,26118735,99.66,0,0,0.31,512.36,3490.16,26118736,99.74,0,0,0.16,512.35,3490.17,26118737,99.61,0,0,0.59,512.16,3490.36,26118738,99.78,0.05,1.99,0.25,511.34,3491.16,26118739,99.85,0,0,0.18,511.38,3491.1,26118740,99.72,0,0,0.31,512.44,3490.06,26118741,99.77,0,0,0.14,512.43,3490.07,26118742,98.18,0,0,0.56,512.69,3489.81,26118743,99.73,0,0,0.16,512.12,3490.37,26118744,99.83,0,0,0.14,512.09,3490.4,26118745,99.73,0.03,1.19,0.52,509.58,3493.17,26118746,99.82,0.01,0.86,0.18,507.66,3495.25,26118747,99.68,0,0,0.59,507.92,3494.98,26118748,99.83,0,0,0.2,507.41,3495.49,26118749,99.85,0,0,0.17,507.38,3495.51,26118750,99.71,0,0,0.32,506.91,3496,26118751,99.82,0,0,0.16,506.87,3496.03,26118752,99.71,0,0,0.55,507.68,3495.23,26118753,99.84,0,0,0.14,507.32,3495.57,26118754,99.77,0,0,0.14,507.29,3495.6,26118755,99.62,0,0,0.31,506.91,3496,26118756,99.75,0,0,0.14,506.78,3496.12,26118757,99.72,0,0,0.31,507.28,3495.62,26118758,99.81,0,0,0.39,507.41,3495.48,26118759,99.52,0,0,0.29,507.61,3495.26,26118760,99.68,0,0,0.33,507.87,3495.02,26118761,99.8,0.03,1.17,0.2,507.84,3495.04,26118762,99.81,0,0,0.15,507.79,3495.07,26118763,99.67,0,0,0.54,508.11,3494.75,26118764,99.82,0,0,0.14,507.77,3495.1,26118765,99.64,0,0,0.31,506.26,3496.67,26118766,99.83,0,0,0.16,506.18,3496.74,26118767,99.81,0,0,0.14,506.16,3496.76,26118768,99.63,0,0,0.53,507.12,3495.8,26118769,99.83,0,0,0.14,506.86,3496.05,26118770,99.71,0,0,0.3,507.61,3495.32,26118771,99.81,0,0,0.14,507.58,3495.34,26118772,99.84,0,0,0.16,507.56,3495.36,26118773,99.63,0,0,0.56,507.86,3495.06,26118774,99.82,0,0,0.18,507.02,3495.9,26118775,99.75,0,0,0.36,507.52,3495.41,26118776,99.81,0,0,0.18,507.67,3495.26,26118777,99.8,0,0,0.18,507.65,3495.27,26118778,99.68,0,0,0.57,507.74,3495.18,26118779,99.83,0,0,0.15,507.12,3495.8,26118780,99.6,0,0,0.3,507.61,3495.32,26118781,99.83,0,0,0.16,507.59,3495.33,26118782,99.78,0,0,0.15,507.58,3495.34,26118783,99.7,0,0,0.54,507.91,3495.01,26118784,99.85,0,0,0.16,507.54,3495.38,26118785,99.76,0,0,0.32,507.77,3495.16,26118786,99.81,0,0,0.16,507.75,3495.18,26118787,99.85,0,0,0.15,507.87,3495.06,26118788,99.7,0,0,0.48,508.1,3494.82,26118789,99.55,0,0,0.34,507.93,3494.97,26118790,99.71,0,0,0.3,507.97,3494.94,26118791,99.42,0,0,0.44,508.2,3494.71,26118792,99.81,0,0,0.46,508.07,3494.83,26118793,99.62,0,0,0.46,508.59,3494.31,26118794,99.77,0,0,0.29,508.03,3494.88,26118795,99.62,0,0,0.37,507.09,3495.83,26118796,99.8,0,0,0.18,507.03,3495.89,26118797,99.83,0,0,0.19,506.78,3496.13,26118798,99.85,0,0,0.14,506.75,3496.17,26118799,99.66,0,0,0.54,507.47,3495.46,26118800,99.66,0,0,0.36,507.89,3495.06,26118801,99.8,0,0,0.18,507.89,3495.05,26118802,98.59,0,0,0.18,507.87,3495.09,26118803,99.82,0,0,0.19,507.84,3495.11,26118804,99.68,0,0,0.57,508.65,3494.3,26118805,99.78,0,0,0.39,507.82,3495.14,26118806,99.8,0,0,0.15,507.8,3495.16,26118807,99.83,0.02,1.25,0.29,507.36,3495.58,26118808,99.82,0,0,0.2,507.03,3495.91,26118809,99.67,0,0,0.55,507.36,3495.56,26118810,98.63,0,0,0.34,507.14,3495.8,26118811,99.86,0,0,0.18,507.15,3495.79,26118812,99.86,0,0.02,0.2,507.13,3495.81,26118813,99.9,0,0,0.18,507.08,3495.85,26118814,99.74,0,0,0.55,507.58,3495.34,26118815,99.81,0,0,0.32,507.05,3495.9,26118816,99.9,0,0,0.16,507,3495.94,26118817,99.93,0,0,0.14,506.99,3495.95,26118818,99.92,0,0,0.15,506.77,3496.16,26118819,99.53,0,0,0.71,506.68,3496.23,26118820,99.77,0,0,0.34,506.73,3496.19,26118821,99.88,0,0,0.18,506.66,3496.26,26118822,99.91,0,0,0.18,506.64,3496.28,26118823,99.9,0,0,0.18,506.62,3496.29,26118824,99.79,0,0,0.54,506.95,3495.95,26118825,99.72,0,0,0.32,506.61,3496.32,26118826,99.91,0,0,0.16,506.58,3496.34,26118827,99.87,0,0,0.14,506.56,3496.35,26118828,99.89,0,0,0.15,506.54,3496.37,26118829,99.77,0,0,0.55,506.96,3495.95,26118830,99.78,0,0,0.34,506.19,3496.73,26118831,99.88,0,0,0.18,506.2,3496.72,26118832,99.87,0,0,0.14,506.18,3496.74,26118833,99.85,0,0,0.18,506.16,3496.75,26118834,99.77,0,0,0.45,506.61,3496.29,26118835,99.81,0,0,0.45,506.63,3496.29,26118836,99.85,0,0,0.16,506.6,3496.32,26118837,99.9,0,0,0.16,506.57,3496.34,26118838,99.91,0,0,0.14,506.54,3496.37,26118839,99.9,0,0,0.14,506.52,3496.38,26118840,99.46,0,0,0.67,506.94,3495.98,26118841,99.77,0,0,0.16,506.69,3496.23,26118842,99.84,0,0,0.14,506.67,3496.24,26118843,99.88,0,0,0.16,506.65,3496.26,26118844,99.86,0,0,0.15,506.62,3496.28,26118845,99.63,0,0,0.7,506.98,3495.94,26118846,99.89,0,0,0.15,506.6,3496.31,26118847,99.88,0,0,0.17,506.59,3496.32,26118848,99.83,0,0,0.14,506.56,3496.34,26118849,99.78,0,0,0.33,506.29,3496.58,26118850,99.61,0,0,0.71,506.69,3496.2,26118851,99.9,0,0,0.13,506.27,3496.62,26118852,99.87,0,0,0.17,506.38,3496.51,26118853,99.74,0,0,0.14,506.41,3496.48,26118854,99.85,0,0,0.16,506.38,3496.5,26118855,99.56,0,0,0.72,507.25,3495.66,26118856,99.88,0,0,0.17,506.86,3496.05,26118857,99.85,0,0,0.18,506.83,3496.08,26118858,99.84,0,0,0.15,506.8,3496.1,26118859,99.86,0,0,0.14,506.79,3496.11,26118860,99.69,0,0,0.75,507.14,3495.77,26118861,99.81,0,0,0.14,506.76,3496.14,26118862,98,0,0,0.13,506.74,3496.16,26118863,99.87,0,0,0.16,506.86,3496.04,26118864,99.81,0,0,0.14,506.88,3496.01,26118865,99.64,0,0,0.77,507.11,3495.79,26118866,99.9,0,0,0.12,506.86,3496.04,26118867,99.88,0,0,0.16,506.84,3496.06,26118868,99.9,0,0,0.17,506.81,3496.08,26118869,99.84,0,0,0.18,506.33,3496.56,26118870,98.83,0,0,0.51,505.92,3496.99,26118871,99.88,0,0,0.39,506.52,3496.38,26118872,99.88,0,0,0.13,506.51,3496.39,26118873,99.85,0,0,0.17,506.49,3496.41,26118874,99.85,0,0,0.14,506.64,3496.25,26118875,99.69,0,0,0.32,506.88,3496.03,26118876,99.76,0,0,0.55,507.44,3495.46,26118877,99.85,0,0,0.15,507.1,3495.8,26118878,99.86,0,0,0.14,507.07,3495.83,26118879,99.74,0,0,0.32,507.06,3495.81,26118880,99.79,0,0,0.31,506.8,3496.08,26118881,99.75,0,0,0.54,507.14,3495.73,26118882,99.85,0,0,0.16,506.75,3496.12,26118883,99.87,0,0,0.15,506.75,3496.12,26118884,99.87,0,0,0.15,506.72,3496.16,26118885,99.78,0,0,0.32,507.15,3495.76,26118886,99.75,0,0,0.55,507.3,3495.6,26118887,99.87,0,0,0.14,506.86,3496.03,26118888,99.9,0,0,0.16,506.85,3496.04,26118889,99.9,0,0,0.14,506.82,3496.07,26118890,99.72,0,0,0.34,507.06,3495.83,26118891,99.76,0,0,0.54,507.57,3495.32,26118892,99.89,0,0,0.16,507.01,3495.88,26118893,99.89,0,0,0.16,506.98,3495.91,26118894,99.88,0,0,0.15,506.96,3495.92,26118895,99.85,0,0,0.33,506.68,3496.22,26118896,99.75,0,0,0.41,507.12,3495.77,26118897,99.86,0,0,0.27,506.87,3496.01,26118898,99.9,0,0,0.15,506.86,3496.01,26118899,99.87,0,0,0.17,506.83,3496.04,26118900,99.5,0,0,0.33,507.1,3495.79,26118901,99.7,0,0,0.41,507.41,3495.47,26118902,99.87,0,0,0.27,507.05,3495.83,26118903,99.91,0,0,0.14,507.02,3495.86,26118904,99.9,0,0,0.14,507.01,3495.86,26118905,99.7,0,0,0.35,506.13,3496.76,26118906,99.65,0.01,0.03,0.6,506.92,3495.96,26118907,99.88,0,0,0.14,506.62,3496.26,26118908,99.91,0,0,0.15,506.6,3496.28,26118909,99.62,0,0,0.29,507.29,3495.56,26118910,99.73,0,0,0.32,507.3,3495.56,26118911,99.75,0,0,0.32,507.61,3495.25,26118912,99.91,0,0,0.38,506.76,3496.1,26118913,99.88,0,0,0.14,506.73,3496.12,26118914,99.85,0,0,0.14,506.72,3496.13,26118915,99.72,0,0,0.34,506.15,3496.72,26118916,99.91,0,0,0.14,506.13,3496.73,26118917,99.72,0,0,0.61,506.96,3495.9,26118918,99.9,0,0,0.16,506.58,3496.27,26118919,99.84,0,0,0.17,506.57,3496.28,26118920,99.75,0,0,0.33,506.56,3496.31,26118921,99.91,0,0,0.17,506.54,3496.33,26118922,99.8,0,0,0.56,507.3,3495.55,26118923,99.51,0,0,0.18,506.98,3495.87,26118924,99.92,0,0,0.15,506.96,3495.89,26118925,99.81,0,0,0.36,506.9,3495.97,26118926,99.92,0,0,0.19,506.87,3496,26118927,99.71,0,0,0.53,507.72,3495.14,26118928,99.89,0,0,0.15,507.08,3495.78,26118929,99.87,0,0,0.19,506.85,3496,26118930,99.84,0,0,0.33,506.81,3496.05,26118931,99.91,0,0,0.15,506.8,3496.07,26118932,99.76,0,0,0.59,507.12,3495.74,26118933,99.92,0,0,0.16,506.75,3496.1,26118934,99.93,0,0,0.15,506.73,3496.13,26118935,99.74,0,0,0.42,506.01,3496.87,26118936,99.91,0,0,0.18,505.98,3496.9,26118937,99.79,0,0,0.54,507.15,3495.72,26118938,99.91,0,0,0.14,507.34,3495.53,26118939,99.72,0,0,0.29,507.12,3495.72,26118940,99.78,0,0,0.33,506.44,3496.41,26118941,99.92,0,0,0.14,506.3,3496.56,26118942,99.77,0,0,0.49,506.74,3496.11,26118943,99.91,0,0,0.2,506.5,3496.34,26118944,99.92,0,0,0.14,506.48,3496.38,26118945,99.79,0,0,0.35,506.49,3496.39,26118946,99.89,0,0,0.13,506.46,3496.41,26118947,99.73,0,0,0.41,507.27,3495.6,26118948,99.92,0,0,0.32,507.35,3495.52,26118949,99.9,0,0,0.18,507.34,3495.54,26118950,99.78,0,0,0.33,507.57,3495.33,26118951,99.91,0,0,0.13,507.56,3495.33,26118952,99.77,0,0,0.32,507.88,3495.01,26118953,99.88,0,0,0.38,507.27,3495.61,26118954,99.89,0,0,0.16,507.24,3495.64,26118955,99.8,0,0,0.35,507.48,3495.42,26118956,99.93,0,0,0.16,507.47,3495.42,26118957,99.78,0,0,0.3,507.8,3495.09,26118958,99.87,0,0,0.41,507.29,3495.59,26118959,99.91,0,0,0.17,507.33,3495.54,26118960,99.68,0,0,0.34,507.09,3495.8,26118961,99.88,0,0,0.16,507.07,3495.82,26118962,99.91,0,0,0.15,507.03,3495.85,26118963,99.75,0,0,0.57,507.27,3495.61,26118964,99.92,0,0,0.14,506.49,3496.38,26118965,99.73,0,0,0.32,506.97,3495.91,26118966,99.9,0,0,0.15,506.97,3495.91,26118967,99.91,0,0,0.16,506.93,3495.94,26118968,94.84,0.32,0.09,260.29,519.92,3484.04,26118969,99.73,0,0,0.55,510.15,3492.59,26118970,99.86,0,0,0.34,509.68,3493.08,26118971,99.9,0,0,0.16,509.65,3493.11,26118972,99.88,0,0,0.15,509.62,3493.13,26118973,99.75,0,0,0.57,508.23,3494.54,26118974,99.89,0,0,0.19,506.7,3496.08,26118975,99.85,0,0,0.32,506.88,3495.91,26118976,99.95,0,0,0.15,506.85,3495.94,26118977,99.93,0,0,0.2,507.08,3495.71,26118978,99.8,0,0,0.39,507.17,3495.61,26118979,99.9,0,0,0.28,506.55,3496.23,26118980,99.83,0,0,0.32,506.32,3496.49,26118981,99.94,0,0,0.14,506.29,3496.52,26118982,99.92,0,0,0.14,506.26,3496.54,26118983,99.79,0,0,0.49,506.82,3495.98,26118984,99.91,0,0,0.19,506.47,3496.33,26118985,99.75,0,0,0.35,506.54,3496.28,26118986,99.93,0,0,0.16,506.45,3496.36,26118987,99.88,0,0,0.16,506.58,3496.23,26118988,99.8,0,0,0.4,506.98,3495.82,26118989,99.91,0,0,0.37,506.62,3496.18,26118990,99.75,0,0,0.31,506.81,3496,26118991,99.9,0,0,0.19,506.8,3496.01,26118992,99.92,0,0,0.14,506.78,3496.03,26118993,99.78,0,0,0.53,507.08,3495.72,26118994,99.9,0,0,0.16,506.49,3496.3,26118995,99.8,0,0,0.32,506.51,3496.31,26118996,99.92,0,0,0.14,506.47,3496.34,26118997,99.93,0,0,0.16,506.45,3496.35,26118998,99.91,0,0,0.14,506.43,3496.37,26118999,99.69,0,0,0.72,507.42,3495.35,26119000,99.87,0,0,0.33,506.83,3495.96,26119001,99.92,0,0,0.16,506.81,3495.97,26119002,99.93,0,0,0.15,506.79,3495.99,26119003,99.91,0,0,0.16,506.77,3496.01,26119004,99.78,0,0,0.56,507.11,3495.66,26119005,99.88,0,0,0.35,506.74,3496.04,26119006,99.93,0,0,0.14,506.73,3496.05,26119007,99.9,0,0,0.14,506.7,3496.07,26119008,99.92,0,0,0.16,506.69,3496.08,26119009,99.79,0,0,0.54,506.86,3495.9,26119010,99.82,0,0,0.32,506.44,3496.35,26119011,99.93,0,0,0.16,506.61,3496.17,26119012,99.92,0,0,0.14,506.59,3496.19,26119013,99.91,0,0,0.16,506.57,3496.2,26119014,99.78,0,0,0.53,506.89,3495.88,26119015,99.84,0,0,0.37,506.79,3495.99,26119016,99.91,0,0,0.16,506.76,3496.02,26119017,99.92,0,0,0.14,506.73,3496.04,26119018,99.93,0,0,0.14,506.72,3496.05,26119019,99.79,0,0,0.63,506.79,3495.97,26119020,99.47,0,0,7.39,506.85,3496.26,26119021,99.93,0,0,0.14,506.97,3496.16,26119022,99.93,0,0,0.14,507.01,3496.11,26119023,99.94,0,0,0.16,506.98,3496.13,26119024,99.74,0,0,0.58,507.32,3495.79,26119025,99.78,0,0,0.38,507.28,3495.86,26119026,99.9,0,0,0.14,507.2,3495.94,26119027,99.91,0,0,0.18,507.17,3495.97,26119028,99.93,0,0,0.14,507.14,3495.99,26119029,99.73,0,0,0.7,506.91,3496.2,26119030,99.79,0,0,0.32,506.9,3496.23,26119031,99.89,0,0,0.14,506.88,3496.24,26119032,99.9,0,0,0.19,506.99,3496.13,26119033,99.93,0,0,0.17,507.03,3496.09,26119034,99.78,0,0,0.53,507.57,3495.54,26119035,99.79,0,0,0.42,507.23,3495.89,26119036,99.9,0,0,0.17,507.21,3495.9,26119037,99.9,0,0,0.22,506.96,3496.15,26119038,99.91,0,0,0.17,506.93,3496.18,26119039,99.91,0,0,0.17,506.9,3496.2,26119040,99.67,0,0,0.76,506.79,3496.33,26119041,99.91,0,0,0.2,506.39,3496.73,26119042,99.88,0,0,0.14,506.37,3496.74,26119043,99.9,0,0,0.15,506.45,3496.66,26119044,99.65,0,0,0.14,506.51,3496.6,26119045,99.7,0,0,0.76,507.34,3495.78,26119046,99.88,0,0,0.18,506.98,3496.14,26119047,99.9,0,0,0.18,506.96,3496.15,26119048,99.92,0,0,0.18,506.94,3496.17,26119049,99.88,0,0,0.17,506.73,3496.37,26119050,99.61,0,0,0.76,507.47,3495.65,26119051,99.91,0,0,0.14,506.9,3496.21,26119052,99.93,0,0,0.14,506.87,3496.23,26119053,99.94,0,0,0.17,506.86,3496.24,26119054,99.93,0,0,0.15,506.84,3496.26,26119055,99.67,0,0,0.72,507.36,3495.76,26119056,99.95,0,0,0.14,506.99,3496.12,26119057,99.92,0,0,0.17,506.97,3496.13,26119058,99.9,0,0,0.14,506.95,3496.15,26119059,99.85,0,0,0.3,506.94,3496.14,26119060,99.7,0,0,0.73,507.11,3495.98,26119061,99.92,0,0,0.14,506.91,3496.18,26119062,99.92,0,0,0.16,506.88,3496.21,26119063,99.93,0,0,0.14,506.86,3496.22,26119064,99.82,0,0,0.14,506.84,3496.24,26119065,99.68,0,0,0.74,507.61,3495.49,26119066,99.9,0,0,0.17,507.25,3495.84,26119067,99.89,0,0,0.14,507.24,3495.85,26119068,99.93,0,0,0.16,507.21,3495.87,26119069,99.92,0,0,0.15,507.2,3495.88,26119070,99.69,0,0,0.68,507.49,3495.6,26119071,99.93,0,0,0.22,506.44,3496.65,26119072,99.9,0,0,0.14,506.41,3496.68,26119073,99.92,0,0,0.18,506.4,3496.68,26119074,99.9,0,0,0.18,506.38,3496.7,26119075,99.62,0,0,0.54,506.8,3496.3,26119076,99.93,0,0,0.34,507.34,3495.75,26119077,99.37,0,0,0.16,507.5,3495.59,26119078,99.93,0,0,0.15,507.48,3495.6,26119079,99.9,0,0,0.14,507.46,3495.62,26119080,99.5,0,0,0.53,507.8,3495.29,26119081,99.83,0,0,0.41,507.18,3495.91,26119082,99.93,0,0,0.14,507.17,3495.91,26119083,99.93,0,0,0.18,507.15,3495.93,26119084,99.88,0,0,0.17,507.13,3495.94,26119085,99.81,0,0,0.31,507.37,3495.72,26119086,99.68,0,0,0.58,507.72,3495.37,26119087,99.89,0,0,0.14,507.34,3495.75,26119088,99.92,0,0,0.14,507.32,3495.76,26119089,99.9,0,0,0.3,507.24,3495.84,26119090,99.82,0,0,0.26,507.53,3495.58,26119091,99.77,0,0,0.59,507.98,3495.12,26119092,99.91,0,0,0.17,507.23,3495.87,26119093,99.9,0,0,0.14,507.21,3495.89,26119094,99.89,0,0,0.15,507.19,3495.91,26119095,99.78,0,0,0.28,506.47,3496.64,26119096,99.8,0,0,0.54,507.32,3495.79,26119097,99.88,0,0,0.24,507.16,3495.94,26119098,99.91,0,0,0.14,507.12,3495.98,26119099,99.93,0,0,0.14,507.11,3495.98,26119100,99.85,0,0,0.3,507.49,3495.62,26119101,99.77,0,0,0.53,507.74,3495.36,26119102,99.89,0,0,0.16,507.24,3495.86,26119103,99.94,0,0,0.14,507.23,3495.87,26119104,99.93,0,0,0.14,507.2,3495.89,26119105,98.27,0,0,0.34,506.73,3496.38,26119106,99.77,0,0,0.44,507.29,3495.81,26119107,99.91,0,0,0.35,507.15,3495.94,26119108,99.85,0,0,0.18,507.14,3495.95,26119109,99.85,0,0,0.19,506.76,3496.32,26119110,99.83,0,0,0.29,507.11,3495.99,26119111,99.73,0,0,0.53,507.61,3495.49,26119112,99.88,0,0,0.14,507.02,3496.07,26119113,99.92,0,0,0.15,506.99,3496.1,26119114,99.9,0,0,0.14,506.98,3496.1,26119115,99.83,0,0,0.27,507.45,3495.65,26119116,99.81,0,0,0.33,507.79,3495.31,26119117,99.92,0,0,0.37,507.17,3495.92,26119118,99.94,0,0,0.14,507.15,3495.94,26119119,99.83,0,0,0.29,507.37,3495.69,26119120,99.77,0,0,0.27,506.89,3496.19,26119121,99.75,0,0,0.31,507.22,3495.85,26119122,99.92,0,0,0.38,506.94,3496.13,26119123,99.88,0,0,0.14,507.01,3496.05,26119124,99.89,0,0,0.14,506.24,3496.82,26119125,99.85,0,0,0.29,506.98,3496.1,26119126,99.91,0,0,0.15,506.96,3496.12,26119127,99.74,0,0,0.56,507.64,3495.43,26119128,99.91,0,0,0.15,506.92,3496.15,26119129,99.93,0,0,0.17,506.9,3496.17,26119130,99.83,0,0,0.32,506.66,3496.42,26119131,99.91,0,0,0.18,506.63,3496.45,26119132,99.79,0,0,0.6,507.14,3495.94,26119133,99.92,0,0,0.18,506.93,3496.14,26119134,99.9,0,0,0.16,506.99,3496.08,26119135,99.88,0,0,0.29,507.24,3495.84,26119136,99.91,0,0,0.19,507.22,3495.86,26119137,99.8,0,0,0.4,507.18,3495.89,26119138,99.91,0,0,0.29,506.44,3496.63,26119139,99.93,0,0,0.14,506.4,3496.66,26119140,99.72,0,0,0.35,506.94,3496.14,26119141,99.89,0,0,0.2,506.87,3496.21,26119142,99.73,0,0,0.45,507.33,3495.74,26119143,99.89,0,0,0.31,507.17,3495.89,26119144,99.92,0,0,0.18,507.23,3495.83,26119145,99.79,0,0,0.32,506.99,3496.08,26119146,99.89,0,0,0.14,506.95,3496.12,26119147,99.77,0,0,0.49,507.19,3495.87,26119148,99.92,0,0,0.19,506.66,3496.39,26119149,99.83,0,0,0.29,506.88,3496.15,26119150,99.79,0,0,0.28,506.88,3496.16,26119151,99.94,0,0,0.13,506.86,3496.18,26119152,99.8,0,0,0.4,507.38,3495.66,26119153,99.9,0,0,0.33,506.95,3496.08,26119154,99.89,0,0,0.14,506.98,3496.08,26119155,99.77,0,0,0.28,506.98,3496.1,26119156,99.95,0,0,0.17,506.96,3496.12,26119157,99.9,0,0,0.19,506.69,3496.38,26119158,99.77,0,0,0.6,507.03,3496.04,26119159,99.88,0,0,0.16,506.64,3496.42,26119160,99.85,0,0,0.29,506.87,3496.21,26119161,99.92,0,0,0.16,506.87,3496.21,26119162,99.88,0,0,0.14,506.84,3496.23,26119163,99.68,0,0,0.55,507.18,3495.89,26119164,99.88,0,0,0.15,506.96,3496.1,26119165,99.85,0,0,0.28,507.03,3496.05,26119166,99.89,0,0,0.14,507.02,3496.06,26119167,99.85,0,0,0.16,506.99,3496.09,26119168,99.76,0,0,0.58,506.91,3496.16,26119169,99.85,0,0,0.18,506.29,3496.77,26119170,99.78,0,0,0.27,507.18,3495.9,26119171,99.88,0,0,0.15,507.17,3495.9,26119172,99.89,0,0,0.16,507.14,3495.93,26119173,99.71,0,0,0.59,507.45,3495.62,26119174,99.9,0,0,0.16,506.85,3496.21,26119175,99.75,0,0,0.29,507.23,3495.86,26119176,99.93,0,0,0.14,507.26,3495.83,26119177,99.88,0,0,0.17,507.22,3495.86,26119178,99.71,0,0,0.39,507.55,3495.53,26119179,99.63,0,0,0.41,507.18,3495.88,26119180,99.73,0,0,0.27,506.93,3496.14,26119181,99.79,0,0,0.16,506.91,3496.16,26119182,99.9,0,0,0.16,506.89,3496.18,26119183,99.73,0,0,0.54,506.74,3496.32,26119184,99.78,0,0,0.19,505.86,3497.2,26119185,99.78,0,0,0.29,506.2,3496.87,26119186,99.86,0,0,0.14,506.26,3496.8,26119187,99.81,0,0,0.17,506.23,3496.83,26119188,99.69,0,0,0.55,507.11,3495.94,26119189,99.8,0,0,0.14,506.92,3496.13,26119190,99.71,0,0,0.34,507.19,3495.87,26119191,99.91,0,0,0.16,507.16,3495.9,26119192,99.9,0,0,0.16,507.14,3495.91,26119193,99.72,0,0,0.46,507.58,3495.46,26119194,99.84,0,0,0.34,507.33,3495.71,26119195,99.72,0,0,0.3,507.1,3495.96,26119196,99.85,0,0,0.21,507.07,3495.99,26119197,99.84,0,0,0.15,507.24,3495.82,26119198,99.73,0,0,0.58,507.56,3495.48,26119199,99.9,0,0,0.18,507.19,3495.85,26119200,99.6,0,0,0.32,507.43,3495.63,26119201,99.85,0,0,0.14,507.24,3495.82,26119202,99.8,0,0,0.2,507.15,3495.9,26119203,99.8,0,0,0.19,507.14,3495.91,26119204,99.64,0,0,0.59,507.45,3495.59,26119205,99.71,0,0,0.3,507.09,3495.96,26119206,99.82,0,0,0.17,507.08,3495.97,26119207,99.83,0,0,0.16,507.05,3495.99,26119208,99.83,0,0,0.16,507.17,3495.89,26119209,99.65,0,0,0.74,508.08,3494.95,26119210,99.69,0,0,0.28,506.97,3496.09,26119211,99.86,0,0,0.19,506.93,3496.11,26119212,99.8,0,0,0.18,506.92,3496.13,26119213,99.79,0,0,0.16,506.89,3496.15,26119214,99.62,0,0,0.64,506.81,3496.26,26119215,99.68,0,0,0.26,507.34,3495.75,26119216,99.78,0,0,0.15,507.36,3495.73,26119217,99.81,0,0,0.21,507.33,3495.76,26119218,99.83,0,0,0.14,507.3,3495.78,26119219,99.69,0,0,0.55,507.75,3495.32,26119220,99.68,0,0,0.3,506.98,3496.11,26119221,99.82,0,0,0.13,506.96,3496.13,26119222,99.79,0,0,0.16,506.93,3496.15,26119223,99.82,0,0,0.14,506.92,3496.16,26119224,99.66,0,0,0.55,507.46,3495.61,26119225,99.68,0,0,0.28,506.66,3496.43,26119226,99.8,0,0,0.16,506.62,3496.46,26119227,99.83,0,0,0.14,506.61,3496.47,26119228,99.82,0,0,0.17,506.58,3496.5,26119229,99.68,0,0,0.51,507.14,3495.93,26119230,99.69,0,0,0.32,507.6,3495.48,26119231,99.83,0,0,0.16,507.7,3495.38,26119232,99.78,0,0,0.14,507.69,3495.39,26119233,99.84,0,0,0.15,507.66,3495.41,26119234,99.7,0,0,0.38,507.98,3495.09,26119235,99.66,0,0,0.51,506.46,3496.64,26119236,99.8,0,0,0.16,506.4,3496.7,26119237,99.83,0,0,0.15,506.37,3496.72,26119238,99.85,0,0,0.14,506.36,3496.73,26119239,99.38,0,0,0.57,507.64,3495.43,26119240,99.71,0,0,0.44,507.07,3496.01,26119241,99.84,0,0,0.18,507.04,3496.04,26119242,99.83,0,0,0.16,507.17,3495.9,26119243,99.85,0,0,0.17,507.22,3495.85,26119244,99.77,0,0,0.17,507.2,3495.88,26119245,99.57,0,0,0.71,507.82,3495.28,26119246,99.84,0,0,0.18,507.42,3495.68,26119247,99.82,0,0,0.17,507.41,3495.68,26119248,99.83,0,0,0.2,507.39,3495.7,26119249,99.84,0,0,0.17,507.37,3495.72,26119250,99.62,0,0,0.75,507.68,3495.41,26119251,99.84,0,0,0.2,507.08,3496.01,26119252,99.85,0,0,0.15,507.07,3496.02,26119253,99.8,0,0,0.15,507.17,3495.91,26119254,99.85,0,0.01,0.15,507.2,3495.88,26119255,99.67,0,0,0.67,507.81,3495.28,26119256,99.81,0,0,0.14,507.64,3495.45,26119257,99.84,0,0,0.16,507.62,3495.47,26119258,99.81,0,0,0.15,507.59,3495.5,26119259,99.86,0,0,0.15,507.58,3495.5,26119260,99.3,0,0,0.73,507.66,3495.44,26119261,99.79,0,0,0.13,507.44,3495.65,26119262,99.8,0,0,0.17,507.46,3495.63,26119263,99.8,0,0,0.14,507.43,3495.65,26119264,99.85,0,0,0.17,507.43,3495.65,26119265,99.58,0,0,0.67,508.1,3494.99,26119266,99.86,0,0,0.17,507.39,3495.7,26119267,99.84,0,0,0.14,507.38,3495.71,26119268,99.84,0,0,0.15,507.35,3495.73,26119269,99.7,0,0,0.29,507.59,3495.47,26119270,99.54,0,0,0.53,508.06,3495.01,26119271,99.83,0,0,0.28,507.32,3495.75,26119272,99.75,0,0,0.16,507.34,3495.72,26119273,99.85,0,0,0.14,507.46,3495.6,26119274,99.85,0,0,0.15,507.43,3495.63,26119275,99.56,0,0,0.47,507.82,3495.24,26119276,99.84,0,0,0.37,507.9,3495.16,26119277,99.83,0,0,0.2,507.87,3495.19,26119278,99.82,0,0,0.15,507.86,3495.2,26119279,99.85,0,0,0.14,507.37,3495.68,26119280,99.63,0,0,0.45,507.23,3495.84,26119281,99.82,0,0,0.41,507.07,3496,26119282,99.83,0,0,0.13,507.06,3496,26119283,99.87,0,0,0.2,507.11,3495.95,26119284,99.83,0,0,0.18,507.19,3495.86,26119285,99.76,0,0,0.34,506.71,3496.35,26119286,99.7,0,0,0.6,507.49,3495.58,26119287,99.85,0,0,0.17,507.16,3495.9,26119288,99.85,0,0,0.14,507.15,3495.9,26119289,99.8,0,0,0.19,506.84,3496.21,26119290,99.73,0,0,0.29,506.88,3496.18,26119291,99.69,0,0,0.63,507.49,3495.59,26119292,99.8,0,0,0.14,506.83,3496.25,26119293,97.51,0,0,0.14,506.82,3496.26,26119294,99.83,0,0,0.15,506.79,3496.28,26119295,99.78,0,0,0.27,506.94,3496.15,26119296,99.68,0,0,0.55,507.31,3495.78,26119297,99.87,0,0,0.18,506.94,3496.14,26119298,99.84,0,0,0.14,506.91,3496.16,26119299,99.72,0,0,0.39,507.12,3495.94,26119300,99.78,0,0,0.27,506.64,3496.43,26119301,99.67,0,0,0.55,507.22,3495.84,26119302,99.85,0,0,0.14,507.08,3495.97,26119303,99.86,0,0,0.15,507.04,3496,26119304,99.84,0,0,0.14,507.03,3496.01,26119305,99.75,0,0,0.29,507.02,3496.04,26119306,99.7,0,0,0.79,507.3,3495.75,26119307,99.85,0,0,0.16,506.92,3496.13,26119308,99.85,0,0,0.14,506.9,3496.15,26119309,99.84,0,0,0.16,506.88,3496.16,26119310,99.75,0,0,0.29,507.36,3495.69,26119311,99.7,0,0,0.56,507.81,3495.24,26119312,99.83,0,0,0.14,507.09,3495.96,26119313,99.83,0,0,0.15,507.07,3495.97,26119314,99.86,0,0,0.14,507.04,3496,26119315,99.72,0,0,0.27,507.15,3495.91,26119316,99.71,0,0,0.33,507.38,3495.67,26119317,99.83,0,0,0.38,507.28,3495.77,26119318,99.82,0,0,0.14,507.44,3495.6,26119319,99.8,0,0,0.15,507.42,3495.62,26119320,99.65,0.03,0,0.29,506.43,3496.63,26119321,99.7,0,0,0.31,506.78,3496.27,26119322,99.81,0,0,0.38,507.2,3495.85,26119323,99.86,0,0,0.14,507.17,3495.87,26119324,99.84,0,0,0.15,507.16,3495.88,26119325,99.72,0,0,0.28,506.21,3496.84,26119326,99.83,0,0,0.16,506.15,3496.89,26119327,99.71,0,0,0.6,507.61,3495.43,26119328,99.85,0,0,0.14,507.1,3495.94,26119329,99.76,0,0,0.27,507.31,3495.71,26119330,99.74,0,0,0.28,507.33,3495.72,26119331,99.83,0,0,0.16,507.3,3495.75,26119332,96.48,0.02,0.01,78.84,521.57,3483.09,26119333,99.83,0,0,0.34,509.98,3492.99,26119334,99.78,0,0,0.14,509.95,3493.01,26119335,99.68,0,0,0.28,509.48,3493.51,26119336,99.81,0,0,0.16,509.44,3493.54,26119337,99.68,0,0,0.69,508.63,3494.36,26119338,99.83,0,0,0.16,507,3496.01,26119339,99.81,0,0,0.14,507.16,3495.84,26119340,99.76,0,0,0.27,506.91,3496.11,26119341,99.81,0,0,0.16,506.9,3496.12,26119342,99.66,0,0,0.54,507.47,3495.54,26119343,99.82,0,0,0.19,507.33,3495.68,26119344,99.78,0,0,0.17,507.31,3495.69,26119345,99.58,0,0,0.3,507.31,3495.72,26119346,99.79,0,0,0.16,507.3,3495.73,26119347,94.43,0,0,0.57,508.89,3494.14,26119348,99.82,0,0,0.19,507.26,3495.77,26119349,99.74,0,0,0.22,506.99,3496.03,26119350,99.63,0,0,0.29,506.76,3496.28,26119351,99.78,0,0,0.16,506.65,3496.38,26119352,99.67,0,0,0.54,506.86,3496.17,26119353,99.79,0,0,0.17,505.87,3497.15,26119354,99.8,0,0,0.16,505.84,3497.18,26119355,99.71,0,0,0.33,507.02,3496.01,26119356,99.83,0,0,0.16,507.05,3495.98,26119357,99.68,0,0,0.55,507.42,3495.61,26119358,99.84,0,0,0.17,507.25,3495.77,26119359,99.75,0,0,0.32,507.45,3495.54,26119360,99.7,0,0,0.28,507.85,3495.16,26119361,99.82,0,0,0.16,507.87,3495.13,26119362,99.83,0,0,0.14,507.86,3495.14,26119363,99.7,0,0,0.56,507.71,3495.29,26119364,99.84,0,0,0.14,507.32,3495.69,26119365,99.77,0,0,0.29,507.33,3495.7,26119366,99.88,0,0,0.14,507.3,3495.73,26119367,99.89,0,0,0.16,507.29,3495.73,26119368,99.8,0,0,0.55,507.11,3495.91,26119369,99.9,0,0,0.14,506.49,3496.53,26119370,99.88,0,0,0.27,506.99,3496.04,26119371,99.89,0,0,0.17,507.1,3495.93,26119372,99.9,0,0,0.18,507.14,3495.89,26119373,99.76,0,0,0.59,507.87,3495.15,26119374,99.93,0,0,0.15,507.59,3495.43,26119375,99.83,0,0,0.27,507.34,3495.7,26119376,99.92,0,0,0.15,507.32,3495.71,26119377,99.92,0,0,0.15,507.29,3495.73,26119378,99.76,0,0,0.57,507.31,3495.71,26119379,99.93,0,0,0.14,506.76,3496.26,26119380,99.67,0,0,0.32,506.99,3496.05,26119381,99.89,0,0,0.12,507.11,3495.92,26119382,99.87,0,0,0.16,507.17,3495.86,26119383,99.76,0,0,0.58,507.92,3495.1,26119384,99.88,0,0,0.15,507.62,3495.39,26119385,99.85,0,0,0.32,507.62,3495.41,26119386,99.93,0,0,0.14,507.59,3495.44,26119387,99.92,0,0,0.14,507.57,3495.46,26119388,99.78,0,0,0.55,507.89,3495.13,26119389,99.78,0,0,0.34,507.26,3495.73,26119390,99.77,0,0,0.29,507.26,3495.75,26119391,99.9,0,0,0.16,507.36,3495.65,26119392,99.9,0,0,0.14,507.39,3495.62,26119393,99.76,0,0,0.56,507.86,3495.14,26119394,99.92,0,0,0.2,507.83,3495.19,26119395,99.77,0,0,0.29,507.6,3495.45,26119396,99.9,0,0,0.14,507.56,3495.49,26119397,99.91,0,0,0.22,507.53,3495.51,26119398,99.78,0,0,0.43,508.21,3494.82,26119399,91.8,5.9,0.01,75.84,521.75,3475.47,26119400,89.88,0.04,0.01,211.62,524.75,3463.61,26119401,99.88,0,0,0.19,509.57,3490.94,26119402,99.87,0,0,0.14,509.56,3490.95,26119403,99.9,0,0,0.16,509.53,3490.97,26119404,99.78,0,0,0.61,510.1,3490.4,26119405,98.32,0,0,15.7,510.77,3490.59,26119406,99.89,0,0,0.17,506.83,3494.06,26119407,99.93,0,0,0.15,506.81,3494.09,26119408,99.93,0,0,0.16,506.79,3494.11,26119409,99.75,0,0,0.61,507.49,3493.41,26119410,99.86,0,0,0.29,507.26,3493.65,26119411,99.9,0,0,0.16,507.02,3493.89,26119412,99.9,0,0,0.16,506.97,3493.94,26119413,99.93,0,0,0.16,506.97,3493.94,26119414,99.78,0,0,0.56,507.48,3493.42,26119415,99.77,0,0,0.3,507.18,3493.74,26119416,99.91,0,0.01,0.16,507.23,3493.69,26119417,99.91,0,0,0.16,507.33,3493.58,26119418,99.9,0,0,0.15,507.31,3493.6,26119419,99.71,0,0,0.69,507.69,3493.2,26119420,99.82,0,0,0.32,507.54,3493.38,26119421,99.89,0,0,0.15,507.52,3493.38,26119422,99.92,0,0,0.14,507.49,3493.41,26119423,99.94,0,0,0.16,507.48,3493.42,26119424,99.77,0,0,0.5,507.7,3493.21,26119425,99.83,0,0,0.39,506.99,3493.95,26119426,99.93,0,0,0.14,507.13,3493.8,26119427,99.9,0,0,0.16,507.13,3493.8,26119428,99.9,0,0,0.14,507.1,3493.83,26119429,99.78,0,0,0.5,507.43,3493.49,26119430,99.79,0,0,0.32,507.57,3493.37,26119431,99.91,0,0,0.15,507.53,3493.4,26119432,99.9,0,0,0.17,507.51,3493.42,26119433,99.91,0,0,0.14,507.13,3493.8,26119434,99.77,0,0,0.45,507.14,3493.78,26119435,99.84,0,0,0.41,506.07,3494.87,26119436,99.9,0,0,0.16,506.15,3494.78,26119437,99.92,0,0,0.15,506.12,3494.81,26119438,99.91,0,0,0.16,506.11,3494.82,26119439,99.78,0,0,0.41,506.57,3494.35,26119440,99.73,0,0,0.42,506.09,3494.85,26119441,99.93,0,0,0.16,506.06,3494.88,26119442,99.92,0,0,0.14,506.03,3494.9,26119443,99.92,0,0,0.14,506.02,3494.91,26119444,99.88,0,0,0.17,505.98,3494.94,26119445,99.65,0,0,0.7,506.84,3494.09,26119446,99.9,0,0,0.16,506.59,3494.35,26119447,99.92,0,0,0.14,506.62,3494.31,26119448,99.89,0,0,0.14,506.6,3494.32,26119449,99.68,0,0,0.36,506.81,3494.1,26119450,99.62,0,0,0.67,506.8,3494.13,26119451,99.9,0,0,0.16,506.3,3494.62,26119452,99.87,0,0,0.15,506.29,3494.63,26119453,99.86,0,0,0.16,506.26,3494.66,26119454,99.9,0,0,0.15,506.25,3494.67,26119455,99.6,0,0,0.7,507.45,3493.47,26119456,99.87,0,0,0.21,506.7,3494.21,26119457,99.88,0,0,0.2,506.57,3494.34,26119458,99.92,0,0,0.16,506.59,3494.31,26119459,99.9,0,0,0.14,506.58,3494.32,26119460,99.64,0,0,0.72,507.31,3493.6,26119461,99.86,0,0,0.14,506.8,3494.11,26119462,99.85,0,0,0.14,506.77,3494.14,26119463,99.93,0,0,0.16,506.77,3494.14,26119464,99.9,0,0,0.14,506.73,3494.17,26119465,99.62,0.03,0.98,0.77,507.26,3493.66,26119466,99.9,0,0,0.21,506.81,3494.09,26119467,99.88,0,0,0.19,506.78,3494.12,26119468,99.58,0,0,0.18,506.75,3494.14,26119469,99.89,0,0,0.18,506.64,3494.25,26119470,99.62,0,0,0.59,506.84,3494.07,26119471,99.9,0,0,0.28,507.21,3493.69,26119472,99.88,0,0,0.16,507.29,3493.61,26119473,99.91,0,0,0.15,507.33,3493.56,26119474,99.9,0,0,0.15,507.32,3493.57,26119475,99.62,0,0,0.45,508.07,3492.84,26119476,99.01,0,0,0.39,507.53,3493.37,26119477,99.91,0,0,0.14,507.51,3493.38,26119478,99.88,0,0,0.15,507.51,3493.39,26119479,99.77,0,0,0.29,507.47,3493.39,26119480,99.84,0,0,0.27,507.69,3493.2,26119481,99.77,0,0,0.56,507.81,3493.07,26119482,99.89,0,0,0.15,507.54,3493.34,26119483,99.89,0,0,0.15,507.57,3493.3,26119484,99.85,0,0,0.14,507.56,3493.31,26119485,99.76,0,0,0.3,507.07,3493.82,26119486,99.71,0,0,0.65,507.61,3493.27,26119487,99.88,0,0,0.16,507.26,3493.62,26119488,99.92,0,0,0.16,507.24,3493.63,26119489,99.89,0,0,0.17,507.22,3493.65,26119490,99.78,0,0,0.29,506.53,3494.35,26119491,99.79,0,0,0.63,507.9,3492.98,26119492,99.92,0,0,0.13,507.41,3493.46,26119493,99.91,0,0,0.16,507.53,3493.33,26119494,99.89,0,0,0.16,507.56,3493.3,26119495,99.77,0,0,0.28,507.33,3493.54,26119496,99.78,0,0,0.5,507.16,3493.71,26119497,99.93,0,0,0.21,506.3,3494.56,26119498,99.95,0,0,0.14,506.27,3494.58,26119499,99.91,0,0,0.17,506.26,3494.59,26119500,99.75,0,0,0.27,507.21,3493.65,26119501,99.77,0,0,0.59,507.69,3493.17,26119502,99.87,0,0,0.16,507.44,3493.43,26119503,99.92,0,0,0.14,507.41,3493.46,26119504,99.92,0,0,0.15,507.5,3493.37,26119505,99.87,0,0,0.29,507.34,3493.54,26119506,99.79,0,0,0.44,507.76,3493.12,26119507,99.9,0,0,0.28,507.53,3493.34,26119508,99.92,0,0,0.16,507.52,3493.34,26119509,99.8,0,0,0.3,507.73,3493.11,26119510,99.85,0,0,0.31,507.99,3492.87,26119511,99.75,0,0,0.57,508.4,3492.46,26119512,99.9,0,0,0.14,507.44,3493.41,26119513,99.91,0,0,0.16,507.41,3493.44,26119514,99.91,0,0,0.15,507.43,3493.41,26119515,99.75,0,0,0.28,506.6,3494.26,26119516,99.8,0,0,0.3,506.93,3493.92,26119517,99.88,0,0,0.45,507.52,3493.33,26119518,99.91,0,0,0.14,507.49,3493.35,26119519,99.92,0,0,0.14,507.48,3493.36,26119520,99.81,0.01,0.84,0.3,507.76,3493.09,26119521,99.75,0,0,0.33,508.16,3492.68,26119522,99.88,0,0,0.41,507.55,3493.29,26119523,99.92,0,0,0.15,507.52,3493.31,26119524,99.92,0,0,0.16,507.49,3493.34,26119525,99.78,0,0,0.29,507.49,3493.35,26119526,99.92,0,0.03,0.17,507.45,3493.39,26119527,99.77,0.01,0.21,0.59,507.98,3492.86,26119528,99.93,0,0,0.15,507.81,3493.02,26119529,98.56,0,0,0.19,507.78,3493.04,26119530,99.73,0,0,0.28,508.1,3492.75,26119531,99.88,0,0,0.15,507.99,3492.85,26119532,99.74,0,0,0.55,508.34,3492.49,26119533,99.91,0,0.01,0.15,507.69,3493.14,26119534,99.88,0,0,0.18,507.66,3493.17,26119535,99.68,0,0,0.31,507.66,3493.18,26119536,99.65,0,0,0.18,507.76,3493.08,26119537,99.75,0,0,0.54,508.27,3492.57,26119538,99.9,0,0,0.15,508.01,3492.84,26119539,99.75,0,0,0.28,507.98,3492.84,26119540,99.81,0,0,0.32,507.99,3492.85,26119541,99.92,0,0,0.18,507.96,3492.87,26119542,99.75,0,0,0.41,508.3,3492.53,26119543,99.92,0,0,0.29,507.91,3492.91,26119544,99.93,0,0,0.14,507.88,3492.93,26119545,99.79,0,0,0.28,507.65,3493.19,26119546,99.92,0,0,0.16,507.62,3493.21,26119547,99.75,0,0,0.55,508.59,3492.24,26119548,99.92,0,0,0.16,508.01,3492.81,26119549,99.89,0,0,0.14,507.99,3492.82,26119550,99.77,0,0,0.27,507.74,3493.09,26119551,99.9,0,0,0.15,507.72,3493.11,26119552,99.77,0,0,0.42,508.11,3492.71,26119553,99.93,0,0,0.29,507.92,3492.9,26119554,99.9,0,0,0.14,507.9,3492.91,26119555,99.76,0,0,0.3,507.68,3493.16,26119556,99.9,0,0,0.15,507.64,3493.19,26119557,99.93,0,0,0.14,507.62,3493.21,26119558,99.77,0,0,0.58,508.04,3492.78,26119559,99.9,0,0,0.15,507.76,3493.06,26119560,99.73,0,0,0.29,507.04,3493.79,26119561,99.89,0,0,0.14,507,3493.83,26119562,99.9,0,0,0.16,506.99,3493.84,26119563,99.68,0,0,0.6,508.04,3492.78,26119564,99.9,0,0,0.15,507.68,3493.13,26119565,99.72,0,0,0.34,506.53,3494.3,26119566,99.88,0,0,0.16,506.44,3494.39,26119567,99.89,0,0,0.13,506.4,3494.42,26119568,99.75,0,0,0.59,508.1,3492.72,26119569,99.78,0,0,0.28,507.9,3492.88,26119570,99.79,0,0,0.27,508.03,3492.76,26119571,99.89,0,0,0.16,508,3492.79,26119572,99.83,0,0,0.16,507.96,3492.82,26119573,99.74,0,0,0.55,508.45,3492.33,26119574,99.9,0,0,0.18,508.16,3492.62,26119575,99.68,0,0,0.3,507.91,3492.88,26119576,99.93,0,0,0.16,507.89,3492.9,26119577,99.9,0.01,0.04,0.2,508.14,3492.65,26119578,99.78,0,0,0.59,508.6,3492.17,26119579,99.93,0,0,0.14,508.21,3492.56,26119580,99.83,0,0,0.29,508.45,3492.33,26119581,99.9,0,0,0.14,508.43,3492.34,26119582,99.9,0,0,0.16,508.41,3492.37,26119583,99.77,0,0,0.5,508.63,3492.13,26119584,99.9,0,0,0.2,508.12,3492.64,26119585,99.81,0,0,0.29,507.73,3493.05,26119586,99.94,0,0,0.14,507.79,3492.99,26119587,99.93,0,0,0.14,507.78,3492.99,26119588,99.78,0,0,0.6,508.21,3492.56,26119589,99.84,0,0.01,0.23,507.05,3493.71,26119590,99.68,0,0,0.3,506.95,3493.83,26119591,99.89,0,0,0.17,506.92,3493.85,26119592,99.84,0,0,0.19,506.9,3493.87,26119593,99.77,0,0,0.43,507.24,3493.53,26119594,99.9,0,0,0.31,506.96,3493.8,26119595,99.74,0,0,0.31,507.53,3493.24,26119596,99.89,0,0,0.18,507.51,3493.26,26119597,99.88,0,0,0.18,507.5,3493.27,26119598,99.77,0,0,0.43,507.8,3492.96,26119599,99.58,0,0,0.5,507,3493.74,26119600,99.73,0,0,0.31,506.24,3494.52,26119601,99.83,0,0,0.19,506.19,3494.57,26119602,99.87,0,0,0.18,506.17,3494.57,26119603,99.88,0,0,0.18,506.14,3494.6,26119604,99.74,0,0,0.58,507.41,3493.35,26119605,99.71,0,0,0.36,507.26,3493.52,26119606,99.91,0,0,0.15,507.29,3493.48,26119607,99.86,0,0,0.15,507.27,3493.5,26119608,99.88,0,0,0.18,507.25,3493.51,26119609,99.71,0,0.03,0.56,508.05,3492.7,26119610,99.73,0,0,0.29,507.45,3493.32,26119611,99.88,0,0,0.16,507.41,3493.36,26119612,99.91,0,0,0.15,507.41,3493.36,26119613,99.9,0,0,0.16,507.37,3493.39,26119614,99.76,0,0,0.48,507.58,3493.18,26119615,99.84,0,0,0.34,506.97,3493.81,26119616,99.91,0,0,0.15,507.03,3493.74,26119617,99.9,0,0,0.16,507.01,3493.76,26119618,99.9,0,0,0.14,506.98,3493.78,26119619,99.75,0,0,0.56,507.61,3493.15,26119620,99.73,0,0,0.3,507.21,3493.57,26119621,99.86,0,0,0.16,507.18,3493.61,26119622,99.87,0,0,0.15,507.17,3493.62,26119623,99.92,0,0,0.19,507.14,3493.64,26119624,99.74,0,0,0.49,507.68,3493.1,26119625,99.83,0,0,0.38,507.46,3493.33,26119626,99.9,0,0,0.16,507.52,3493.27,26119627,99.89,0,0,0.15,507.5,3493.28,26119628,99.88,0,0,0.16,507.5,3493.28,26119629,99.51,0,0,0.82,508.2,3492.55,26119630,99.79,0,0,0.33,507.69,3493.08,26119631,99.9,0,0,0.12,507.66,3493.1,26119632,99.9,0,0,0.16,507.63,3493.13,26119633,99.92,0,0,0.14,507.61,3493.14,26119634,99.77,0,0,0.32,507.99,3492.79,26119635,99.79,0,0,0.57,507.71,3493.08,26119636,99.88,0,0,0.16,507.75,3493.03,26119637,99.9,0,0,0.26,507.5,3493.28,26119638,99.9,0,0,0.22,507.47,3493.31,26119639,99.75,0,0,0.41,507.82,3492.96,26119640,99.67,0,0,0.42,506.58,3494.21,26119641,99.88,0,0,0.14,506.43,3494.36,26119642,99.9,0,0,0.16,506.42,3494.36,26119643,99.91,0,0,0.14,506.39,3494.39,26119644,99.9,0,0,0.15,506.38,3494.39,26119645,99.58,0,0,0.69,506.99,3493.8,26119646,99.9,0,0,0.16,506.62,3494.16,26119647,99.89,0.01,0.01,0.18,506.79,3493.99,26119648,99.9,0,0,0.18,506.69,3494.08,26119649,99.9,0,0,0.16,506.79,3493.98,26119650,99.57,0,0,0.71,507.92,3492.86,26119651,99.88,0,0,0.14,507.37,3493.41,26119652,99.9,0,0,0.14,507.37,3493.41,26119653,99.91,0,0,0.15,507.47,3493.3,26119654,99.9,0,0.01,0.17,507.5,3493.27,26119655,99.7,0,0,0.53,508.32,3492.46,26119656,99.93,0,0,0.3,507.96,3492.82,26119657,99.91,0,0,0.14,507.93,3492.84,26119658,99.88,0,0,0.14,507.89,3492.87,26119659,99.78,0,0.01,0.31,507.88,3492.86,26119660,99.71,0,0,0.72,507.99,3492.77,26119661,99.9,0,0,0.16,507.72,3493.03,26119662,99.92,0,0,0.15,507.77,3492.98,26119663,99.88,0,0,0.15,507.74,3493.01,26119664,99.89,0,0,0.14,507.71,3493.03,26119665,99.61,0,0,0.6,508.1,3492.65,26119666,99.86,0,0,0.29,507.7,3493.04,26119667,99.89,0,0,0.18,507.67,3493.07,26119668,99.9,0,0,0.14,507.66,3493.07,26119669,99.87,0,0,0.14,507.63,3493.11,26119670,99.66,0,0,0.71,508.24,3492.5,26119671,99.86,0,0,0.14,507.86,3492.88,26119672,99.85,0,0,0.17,507.85,3492.89,26119673,99.88,0,0,0.14,507.92,3492.81,26119674,99.9,0,0,0.14,507.98,3492.75,26119675,99.62,0,0,0.75,508.1,3492.64,26119676,99.85,0,0,0.14,507.72,3493.03,26119677,99.87,0,0,0.16,507.7,3493.04,26119678,99.88,0,0,0.14,507.67,3493.06,26119679,99.88,0,0,0.14,507.66,3493.07,26119680,99.51,0,0,0.46,508.04,3492.71,26119681,99.89,0,0,0.39,507.39,3493.35,26119682,99.84,0,0,0.14,507.37,3493.37,26119683,99.85,0,0,0.14,507.35,3493.38,26119684,99.85,0,0,0.15,507.4,3493.34,26119685,99.79,0,0,0.29,507.74,3493,26119686,99.76,0,0,0.56,508.3,3492.44,26119687,99.89,0,0,0.16,507.71,3493.03,26119688,99.87,0,0,0.14,507.69,3493.04,26119689,99.64,0,0,0.3,508.13,3492.59,26119690,99.7,0,0,0.3,507.21,3493.54,26119691,99.71,0,0,0.56,507.49,3493.25,26119692,99.87,0,0,0.17,507.12,3493.62,26119693,99.81,0,0,0.15,507.1,3493.63,26119694,99.87,0,0,0.15,507.08,3493.65,26119695,99.76,0,0,0.32,508.22,3492.52,26119696,94.7,0.5,0.02,262.11,520.75,3479.9,26119697,99.83,0,0,0.34,509.17,3491.95,26119698,99.92,0,0,0.15,509.14,3491.97,26119699,99.85,0,0,0.14,509.12,3491.99,26119700,99.76,0,0,0.29,509.84,3491.28,26119701,99.75,0,0,0.59,509.18,3491.95,26119702,99.9,0,0,0.16,507.9,3493.25,26119703,99.91,0,0,0.15,507.87,3493.27,26119704,99.9,0,0,0.14,507.97,3493.17,26119705,99.72,0,0,0.33,508.03,3493.12,26119706,99.75,0,0,0.41,508.48,3492.68,26119707,99.88,0,0,0.28,508,3493.17,26119708,99.88,0,0,0.16,507.98,3493.19,26119709,99.89,0,0,0.16,507.91,3493.24,26119710,99.8,0,0,0.29,507.48,3493.7,26119711,99.74,0,0,0.51,507.89,3493.28,26119712,99.87,0,0,0.19,507.91,3493.25,26119713,99.89,0,0,0.14,507.9,3493.26,26119714,99.87,0,0,0.15,507.86,3493.29,26119715,99.68,0,0,0.32,508.14,3493.03,26119716,99.75,0,0,0.4,508.66,3492.51,26119717,99.9,0,0,0.3,508.27,3492.89,26119718,99.86,0,0,0.15,508.27,3492.89,26119719,99.68,0,0,0.34,507.52,3493.62,26119720,99.73,0,0,0.29,507.02,3494.13,26119721,99.81,0,0,0.16,507.24,3493.91,26119722,99.82,0,0,0.54,508.3,3492.84,26119723,99.85,0,0,0.15,507.92,3493.21,26119724,99.85,0,0,0.14,507.9,3493.25,26119725,99.69,0,0,0.34,508.25,3492.92,26119726,99.9,0,0,0.14,508.3,3492.86,26119727,99.69,0,0,0.55,508.63,3492.53,26119728,99.87,0,0,0.14,508.27,3492.89,26119729,99.88,0,0,0.14,508.23,3492.92,26119730,99.8,0,0,0.31,508.23,3492.94,26119731,99.83,0,0,0.14,508.21,3492.95,26119732,99.72,0,0,0.57,508.53,3492.63,26119733,99.87,0,0,0.16,508.16,3493,26119734,99.82,0,0,0.14,508.14,3493.02,26119735,99.75,0,0,0.29,507.9,3493.26,26119736,99.82,0,0,0.16,508.06,3493.11,26119737,99.72,0,0,0.54,508.9,3492.26,26119738,99.82,0,0,0.14,508.26,3492.89,26119739,99.81,0,0,0.14,508.24,3492.91,26119740,99.62,0,0,0.29,506.79,3494.37,26119741,99.84,0,0,0.14,506.55,3494.61,26119742,99.73,0,0,0.41,506.8,3494.36,26119743,99.88,0,0,0.29,506.94,3494.21,26119744,99.88,0,0,0.15,506.92,3494.23,26119745,99.67,0,0,0.3,507.17,3494,26119746,99.83,0,0,0.14,507.15,3494.02,26119747,99.75,0,0,0.5,507.66,3493.5,26119748,99.9,0,0,0.2,507.28,3493.88,26119749,99.73,0,0,0.31,507.52,3493.61,26119750,99.72,0,0,0.3,505.81,3495.34,26119751,99.78,0.03,0.85,0.16,505.76,3495.39,26119752,99.67,0.03,1.16,0.46,506.48,3494.66,26119753,99.85,0,0,0.35,506.89,3494.25,26119754,99.81,0.01,0.1,0.16,506.92,3494.21,26119755,99.7,0,0,0.32,506.97,3494.18,26119756,99.88,0,0,0.14,506.94,3494.2,26119757,99.66,0,0,0.59,507.5,3493.64,26119758,99.78,0,0,0.16,506.15,3494.98,26119759,99.81,0,0,0.15,506.14,3494.98,26119760,99.64,0,0,0.31,506.85,3494.29,26119761,99.83,0,0,0.14,506.99,3494.15,26119762,99.8,0,0,0.15,507.01,3494.12,26119763,99.67,0,0,0.54,507.94,3493.19,26119764,99.83,0,0,0.14,507.47,3493.66,26119765,99.74,0,0,0.3,507.71,3493.43,26119766,99.81,0,0,0.14,507.69,3493.45,26119767,99.8,0,0,0.15,507.67,3493.46,26119768,99.68,0,0,0.56,508.01,3493.12,26119769,99.82,0,0,0.18,507.59,3493.53,26119770,99.72,0,0,0.28,507.61,3493.53,26119771,99.82,0,0,0.14,507.6,3493.54,26119772,99.84,0,0,0.16,507.75,3493.38,26119773,99.69,0,0,0.57,507.9,3493.23,26119774,99.81,0,0,0.15,507.44,3493.68,26119775,99.68,0,0,0.3,507.45,3493.69,26119776,99.82,0,0,0.19,507.42,3493.71,26119777,99.84,0,0,0.16,507.39,3493.75,26119778,99.68,0,0,0.56,508.12,3493.01,26119779,99.71,0,0,0.33,507.82,3493.3,26119780,99.69,0,0,0.34,507.74,3493.4,26119781,99.81,0,0,0.18,507.79,3493.35,26119782,99.8,0,0,0.14,507.77,3493.37,26119783,99.67,0,0,0.57,508.14,3493,26119784,99.79,0,0,0.18,507.49,3493.67,26119785,99.76,0,0,0.29,507.73,3493.45,26119786,99.84,0,0,0.16,507.7,3493.48,26119787,99.78,0,0,0.14,507.68,3493.5,26119788,99.64,0,0,0.4,507.95,3493.22,26119789,99.79,0,0,0.29,507.39,3493.78,26119790,99.74,0,0,0.3,507.64,3493.54,26119791,99.82,0,0,0.13,507.72,3493.46,26119792,99.8,0,0,0.16,507.79,3493.38,26119793,99.67,0,0,0.43,508.05,3493.12,26119794,99.79,0,0,0.29,507.5,3493.66,26119795,99.64,0,0,0.36,507.79,3493.39,26119796,99.8,0,0,0.16,507.73,3493.45,26119797,99.82,0,0,0.14,507.72,3493.45,26119798,99.68,0,0,0.41,508.06,3493.11,26119799,99.82,0.01,0.01,0.33,507.72,3493.44,26119800,99.54,0,0,0.31,506.57,3494.6,26119801,99.76,0,0,0.16,506.51,3494.66,26119802,99.79,0,0,0.14,506.49,3494.68,26119803,99.8,0,0.02,0.17,506.46,3494.7,26119804,99.54,0,0,0.6,507.85,3493.3,26119805,99.71,0,0,0.31,507.64,3493.53,26119806,99.82,0,0,0.14,507.63,3493.54,26119807,99.81,0,0,0.17,507.6,3493.56,26119808,99.8,0,0,0.14,507.77,3493.38,26119809,99.58,0,0,0.71,508.33,3492.81,26119810,99.73,0,0,0.3,507.99,3493.16,26119811,99.79,0,0,0.15,507.96,3493.19,26119812,99.79,0,0,0.16,507.93,3493.21,26119813,99.85,0,0,0.14,507.92,3493.22,26119814,99.68,0,0,0.57,507.69,3493.44,26119815,99.69,0,0,0.3,506.92,3494.23,26119816,99.83,0,0,0.16,506.89,3494.26,26119817,99.8,0,0,0.18,507.11,3494.03,26119818,99.84,0,0,0.15,507.09,3494.05,26119819,99.67,0,0,0.48,506.97,3494.16,26119820,99.75,0,0,0.37,507.01,3494.14,26119821,99.85,0,0,0.16,507,3494.14,26119822,99.8,0,0,0.14,506.98,3494.16,26119823,99.81,0,0,0.15,506.96,3494.18,26119824,99.65,0,0,0.57,507.8,3493.33,26119825,99.66,0.05,1.94,0.54,507.43,3493.72,26119826,99.8,0.03,1.19,0.24,507.46,3493.65,26119827,99.78,0,0,0.14,507.47,3493.64,26119828,99.79,0,0.01,0.16,507.44,3493.68,26119829,99.66,0,0.01,0.55,507.82,3493.29,26119830,99.62,0,0,0.35,507.65,3493.48,26119831,99.79,0,0,0.14,507.63,3493.5,26119832,98.4,0,0,0.17,507.6,3493.53,26119833,99.83,0,0,0.18,507.59,3493.53,26119834,99.69,0,0,0.51,507.97,3493.15,26119835,99.75,0,0,0.38,507.54,3493.59,26119836,99.82,0,0,0.14,507.48,3493.65,26119837,99.83,0,0,0.14,507.46,3493.67,26119838,99.83,0,0.01,0.15,507.43,3493.7,26119839,99.58,0,0,0.59,508.55,3492.55,26119840,99.68,0,0,0.41,507.89,3493.22,26119841,99.81,0,0,0.16,507.88,3493.23,26119842,99.81,0,0,0.14,507.84,3493.26,26119843,99.82,0,0,0.14,507.83,3493.27,26119844,99.8,0,0,0.18,507.8,3493.29,26119845,99.48,0,0,0.7,508.05,3493.06,26119846,99.8,0,0,0.14,507.76,3493.35,26119847,99.8,0,0,0.16,507.74,3493.37,26119848,99.78,0,0,0.14,507.72,3493.38,26119849,99.79,0,0,0.15,507.69,3493.4,26119850,99.49,0,0,0.68,508.51,3492.6,26119851,99.82,0,0,0.15,508.16,3492.94,26119852,99.79,0,0,0.16,508.15,3492.95,26119853,99.83,0,0,0.14,508.11,3492.98,26119854,99.78,0,0,0.14,508.09,3493,26119855,99.62,0,0,0.69,508.15,3492.97,26119856,99.84,0,0,0.16,507.88,3493.23,26119857,99.82,0,0,0.13,508,3493.11,26119858,99.83,0,0,0.16,507.97,3493.13,26119859,99.82,0,0,0.16,507.96,3493.14,26119860,99.46,0,0,0.64,508.74,3492.37,26119861,99.81,0,0,0.2,508.19,3492.92,26119862,99.81,0,0,0.16,508.16,3492.94,26119863,99.84,0,0,0.14,508.12,3492.97,26119864,99.78,0,0,0.15,508.11,3492.98,26119865,99.59,0,0,0.66,508.41,3492.72,26119866,99.78,0,0,0.21,507.85,3493.28,26119867,99.79,0,0,0.16,507.9,3493.22,26119868,99.82,0,0,0.14,507.99,3493.12,26119869,99.71,0,0,0.27,508.21,3492.88,26119870,99.59,0,0,0.63,508.62,3492.48,26119871,99.83,0,0,0.22,507.94,3493.16,26119872,99.82,0,0,0.14,507.93,3493.17,26119873,99.83,0,0,0.16,507.9,3493.2,26119874,99.79,0,0,0.15,507.86,3493.24,26119875,99.49,0,0,0.59,508.24,3492.88,26119876,99.83,0,0,0.27,508.07,3493.05,26119877,99.82,0,0,0.2,508.05,3493.06,26119878,99.8,0,0,0.14,508.04,3493.07,26119879,99.83,0,0,0.17,508.2,3492.91,26119880,99.48,0,0,0.54,508.19,3492.93,26119881,99.83,0,0,0.36,508.16,3492.96,26119882,99.82,0,0,0.14,508.14,3492.97,26119883,99.81,0,0,0.16,508.12,3492.99,26119884,99.84,0,0,0.14,508.1,3493,26119885,99.7,0,0,0.33,508.34,3492.78,26119886,99.66,0,0,0.55,507.83,3493.28,26119887,99.8,0,0,0.14,507.32,3493.79,26119888,99.84,0,0,0.15,507.31,3493.8,26119889,99.8,0,0,0.15,507.3,3493.8,26119890,99.75,0,0,0.3,507.67,3493.45,26119891,99.65,0,0,0.53,508.49,3492.63,26119892,99.82,0,0,0.16,508.17,3492.94,26119893,99.82,0,0,0.14,508.15,3492.96,26119894,99.78,0,0,0.15,508.13,3492.97,26119895,99.73,0,0,0.31,508.38,3492.74,26119896,99.68,0,0,0.54,508.71,3492.4,26119897,99.83,0,0,0.16,507.38,3493.73,26119898,99.83,0,0,0.15,507.09,3494.02,26119899,99.67,0,0,0.3,507.3,3493.78,26119900,99.74,0,0,0.32,507.31,3493.79,26119901,99.64,0,0,0.51,507.76,3493.33,26119902,99.79,0,0,0.21,507.37,3493.71,26119903,99.83,0,0,0.17,507.43,3493.65,26119904,99.81,0,0,0.17,507.41,3493.68,26119905,99.61,0,0,0.33,506.44,3494.67,26119906,99.66,0,0,0.44,507.02,3494.1,26119907,99.76,0,0,0.29,507.12,3493.98,26119908,99.78,0,0,0.18,507.1,3494,26119909,99.79,0,0,0.16,507.08,3494.02,26119910,99.63,0,0,0.32,506.12,3495,26119911,99.67,0,0,0.42,506.87,3494.24,26119912,99.78,0,0,0.29,507.28,3493.83,26119913,99.81,0,0,0.14,507.27,3493.83,26119914,99.82,0,0,0.15,507.43,3493.67,26119915,99.69,0,0,0.31,507.44,3493.67,26119916,99.68,0,0,0.39,508.05,3493.06,26119917,99.83,0,0,0.28,507.15,3493.95,26119918,99.82,0,0,0.16,507.13,3493.97,26119919,99.85,0,0,0.14,507.11,3493.98,26119920,99.55,0,0,0.29,507.11,3494.01,26119921,99.83,0,0,0.17,507.16,3493.95,26119922,99.73,0,0,0.53,507.91,3493.2,26119923,99.88,0,0,0.14,507.54,3493.55,26119924,99.87,0,0,0.14,507.51,3493.58,26119925,99.73,0,0,0.34,507.58,3493.53,26119926,99.88,0,0,0.14,507.71,3493.4,26119927,99.73,0,0,0.82,507.43,3493.67,26119928,99.91,0,0,0.15,506.93,3494.17,26119929,99.83,0,0,0.28,507.13,3493.94,26119930,99.8,0,0,0.28,507.13,3493.96,26119931,99.84,0,0.01,0.15,507.12,3493.97,26119932,99.68,0,0,0.69,507.85,3493.23,26119933,99.85,0,0,0.15,507.57,3493.51,26119934,99.79,0,0,0.14,507.55,3493.55,26119935,99.76,0,0,0.3,507.31,3493.81,26119936,99.85,0,0,0.14,507.35,3493.77,26119937,99.62,0,0,0.51,508.11,3493,26119938,99.76,0,0,0.23,507.44,3493.66,26119939,99.78,0,0,0.15,507.41,3493.69,26119940,99.73,0,0,0.29,507.41,3493.71,26119941,99.8,0,0,0.16,507.39,3493.72,26119942,99.65,0,0,0.52,507.73,3493.38,26119943,99.85,0,0,0.2,507.35,3493.75,26119944,99.84,0,0,0.14,507.33,3493.77,26119945,99.61,0,0,0.32,507.09,3494.03,26119946,99.89,0,0,0.14,507.06,3494.05,26119947,99.7,0,0,0.55,507.41,3493.7,26119948,99.85,0,0,0.18,507.03,3494.08,26119949,99.85,0,0,0.19,507.2,3493.91,26119950,99.63,0,0,0.38,506.23,3494.89,26119951,99.87,0,0,0.18,506.17,3494.94,26119952,99.74,0,0,0.4,506.74,3494.37,26119953,99.83,0,0,0.28,506.88,3494.23,26119954,99.86,0,0,0.14,506.86,3494.25,26119955,99.62,0,0,0.35,506.38,3494.74,26119956,99.84,0,0,0.16,506.33,3494.79,26119957,99.71,0,0,0.49,506.89,3494.22,26119958,99.85,0,0,0.22,507.76,3493.34,26119959,99.7,0,0,0.29,507.63,3493.45,26119960,99.65,0,0,0.3,506.73,3494.37,26119961,99.76,0.01,0.12,0.18,506.68,3494.41,26119962,99.88,0,0,0.17,506.67,3494.42,26119963,99.68,0,0,0.54,508.18,3492.91,26119964,99.88,0,0,0.16,507.6,3493.48,26119965,99.67,0,0,0.31,507.85,3493.25,26119966,99.84,0,0,0.14,507.83,3493.27,26119967,99.79,0,0,0.17,507.81,3493.28,26119968,99.7,0,0,0.57,508.13,3492.95,26119969,99.8,0,0,0.15,507.77,3493.31,26119970,99.73,0,0,0.37,507.52,3493.57,26119971,99.86,0,0,0.13,507.61,3493.48,26119972,99.87,0,0,0.14,507.65,3493.43,26119973,99.75,0,0,0.55,508.13,3492.95,26119974,99.84,0,0,0.16,507.86,3493.21,26119975,99.66,0,0,0.3,507.85,3493.24,26119976,99.81,0,0,0.16,507.84,3493.25,26119977,99.84,0,0,0.14,507.82,3493.27,26119978,99.71,0,0,0.53,508.16,3492.92,26119979,99.88,0,0,0.14,507.78,3493.3,26119980,99.46,0,0,0.3,507.04,3494.05,26119981,99.76,0,0,0.16,507.01,3494.08,26119982,99.8,0,0,0.14,507.14,3493.94,26119983,99.71,0,0,0.52,508.2,3492.87,26119984,99.68,0,0,0.2,507.91,3493.15,26119985,99.6,0,0,0.3,507.43,3493.66,26119986,99.85,0,0,0.16,507.4,3493.68,26119987,99.88,0,0,0.13,507.37,3493.71,26119988,99.72,0,0,0.45,507.86,3493.21,26119989,99.75,0,0,0.41,508.06,3492.99,26119990,99.67,0,0,0.27,508.1,3492.97,26119991,99.86,0,0,0.16,508.05,3493.01,26119992,99.85,0,0,0.14,508.04,3493.02,26119993,99.71,0,0,0.5,508.3,3492.76,26119994,99.83,0,0,0.22,507.85,3493.22,26119995,99.73,0,0,0.31,507.7,3493.39,26119996,99.85,0,0,0.14,507.66,3493.42,26119997,99.87,0,0,0.2,507.65,3493.43,26119998,99.71,0,0,0.4,507.94,3493.14,26119999,99.87,0,0,0.28,507.35,3493.72,26120000,99.73,0,0,0.32,507.82,3493.27,26120001,99.83,0,0,0.14,507.81,3493.28,26120002,99.85,0,0,0.14,507.79,3493.3,26120003,99.89,0,0,0.17,507.77,3493.31,26120004,99.69,0,0,0.62,508.52,3492.55,26120005,99.67,0,0,0.36,506.98,3494.11,26120006,99.88,0,0,0.17,506.93,3494.15,26120007,99.9,0,0,0.14,506.92,3494.17,26120008,99.84,0,0,0.14,506.89,3494.19,26120009,99.72,0,0,0.54,507.8,3493.28,26120010,99.63,0,0,0.31,507.62,3493.46,26120011,99.88,0,0,0.16,507.59,3493.5,26120012,99.86,0,0,0.14,507.56,3493.52,26120013,97.49,0,0,0.15,507.53,3493.54,26120014,99.71,0,0,0.55,508.05,3493.01,26120015,99.66,0,0,0.38,507.84,3493.24,26120016,99.86,0,0,0.18,507.92,3493.16,26120017,99.9,0,0,0.16,507.9,3493.17,26120018,99.84,0,0,0.16,507.88,3493.18,26120019,99.44,0,0,0.7,508.35,3492.7,26120020,99.44,0,0,0.29,507.16,3493.89,26120021,99.87,0,0,0.16,507.09,3493.96,26120022,99.83,0,0,0.14,507.08,3493.97,26120023,99.88,0,0,0.15,507.05,3493.99,26120024,99.73,0,0,0.41,507.72,3493.32,26120025,99.59,0,0,0.45,507.77,3493.29,26120026,99.92,0,0,0.16,507.74,3493.32,26120027,99.83,0,0,0.14,507.92,3493.14,26120028,99.89,0,0,0.18,507.88,3493.17,26120029,99.7,0,0,0.57,508.23,3492.81,26120030,99.73,0,0,0.29,508.34,3492.72,26120031,99.85,0,0,0.17,508.34,3492.72,26120032,99.84,0,0,0.14,508.31,3492.74,26120033,99.84,0,0,0.15,508.29,3492.76,26120034,99.69,0,0,0.32,508.59,3492.45,26120035,99.65,0,0,0.51,508.01,3493.05,26120036,99.79,0,0,0.17,507.98,3493.07,26120037,99.89,0,0,0.14,508.07,3492.98,26120038,99.83,0,0,0.15,508.13,3492.91,26120039,99.73,0,0,0.4,508.47,3492.58,26120040,99.59,0,0,0.44,507.92,3493.15,26120041,99.85,0,0,0.16,507.84,3493.23,26120042,99.83,0,0,0.14,507.82,3493.25,26120043,99.85,0,0,0.14,507.8,3493.26,26120044,99.84,0,0,0.15,507.78,3493.28,26120045,99.57,0,0,0.7,508.95,3492.13,26120046,99.81,0,0,0.17,508.25,3492.82,26120047,99.84,0,0,0.14,508.23,3492.83,26120048,99.87,0,0,0.15,508.21,3492.85,26120049,99.56,0,0,0.29,508.37,3492.67,26120050,99.5,0,0,0.75,508.38,3492.67,26120051,99.85,0,0,0.14,507.85,3493.2,26120052,99.78,0,0,0.16,507.46,3493.58,26120053,99.82,0,0,0.15,507.07,3493.97,26120054,99.8,0,0,0.14,507.05,3494,26120055,99.66,0,0,0.71,507.76,3493.31,26120056,99.9,0,0,0.16,507.29,3493.77,26120057,99.89,0,0,0.2,507.26,3493.8,26120058,99.87,0,0,0.14,507.25,3493.8,26120059,99.88,0,0,0.16,507.22,3493.83,26120060,96.32,0.02,0.01,14.69,518.83,3484.31,26120061,99.74,0,0,64.54,509.92,3491.1,26120062,99.88,0,0,0.16,509.89,3491.11,26120063,99.87,0,0,0.14,509.88,3491.13,26120064,99.88,0,0,0.15,509.87,3491.13,26120065,99.59,0,0,0.57,509.39,3491.63,26120066,99.86,0,0,0.36,506.49,3494.55,26120067,99.88,0,0,0.14,506.64,3494.4,26120068,99.85,0,0,0.15,506.63,3494.4,26120069,99.82,0,0,0.14,506.6,3494.43,26120070,99.51,0,0,0.48,507.73,3493.32,26120071,99.88,0,0,0.39,506.34,3494.72,26120072,99.89,0,0,0.14,506.32,3494.74,26120073,99.84,0,0,0.15,506.28,3494.77,26120074,99.84,0,0,0.14,506.27,3494.79,26120075,99.71,0,0,0.3,507.22,3493.85,26120076,99.71,0,0,0.54,507.36,3493.71,26120077,99.88,0,0,0.14,507.06,3494,26120078,99.9,0,0,0.16,507.13,3493.92,26120079,99.65,0,0,0.27,506.91,3494.12,26120080,99.81,0,0,0.31,507.1,3493.95,26120081,99.59,0,0,0.55,507.63,3493.41,26120082,99.82,0,0,0.14,507.29,3493.75,26120083,99.9,0,0,0.18,507.27,3493.76,26120084,99.9,0,0,0.15,507.05,3494.01,26120085,99.68,0,0,0.31,506.54,3494.55,26120086,99.76,0,0,0.56,507.9,3493.18,26120087,99.91,0,0,0.15,507.47,3493.61,26120088,99.89,0,0,0.14,507.44,3493.63,26120089,99.88,0,0,0.14,507.6,3493.47,26120090,99.77,0,0,0.33,507.85,3493.23,26120091,99.72,0,0,0.54,507.94,3493.15,26120092,99.93,0,0,0.16,507.32,3493.75,26120093,99.83,0,0,0.14,507.31,3493.76,26120094,99.92,0,0,0.17,507.28,3493.79,26120095,99.81,0,0,0.31,507.76,3493.32,26120096,99.75,0,0,0.45,507.39,3493.69,26120097,99.86,0,0,0.3,505.75,3495.32,26120098,99.88,0,0,0.14,505.74,3495.33,26120099,99.92,0,0,0.14,505.82,3495.25,26120100,99.67,0,0,0.28,507.1,3494,26120101,99.76,0.01,0.01,0.46,507.67,3493.43,26120102,99.87,0,0,0.29,507.74,3493.35,26120103,99.88,0,0,0.16,507.7,3493.38,26120104,99.87,0,0,0.15,507.68,3493.4,26120105,99.81,0,0,0.33,507.31,3493.78,26120106,99.71,0,0,0.43,508.07,3493.02,26120107,99.89,0,0,0.29,507.59,3493.5,26120108,99.91,0,0.01,0.18,507.55,3493.53,26120109,99.71,0,0,0.31,507.77,3493.29,26120110,99.74,0,0,0.29,506.8,3494.27,26120111,99.79,0,0,0.35,507.12,3493.95,26120112,99.82,0,0,0.4,507.49,3493.57,26120113,99.89,0,0,0.16,507.45,3493.61,26120114,99.9,0,0,0.14,507.43,3493.62,26120115,99.69,0,0,0.29,507.68,3493.39,26120116,99.73,0,0,0.3,508.17,3492.9,26120117,99.74,0,0,0.48,507.09,3493.97,26120118,99.87,0,0,0.15,507.06,3494,26120119,99.83,0,0,0.15,507.05,3494.01,26120120,99.7,0,0,0.29,508.1,3492.97,26120121,99.88,0,0,0.22,508.01,3493.05,26120122,99.77,0,0,0.56,508.12,3492.94,26120123,99.88,0,0,0.18,507.72,3493.33,26120124,99.89,0,0,0.16,507.69,3493.36,26120125,99.75,0,0,0.32,507.47,3493.6,26120126,99.92,0,0,0.18,507.43,3493.64,26120127,99.75,0,0,0.54,507.96,3493.1,26120128,99.88,0,0,0.15,507.61,3493.45,26120129,99.88,0,0,0.15,507.58,3493.47,26120130,99.67,0,0,0.32,507.59,3493.48,26120131,99.89,0,0,0.16,507.56,3493.51,26120132,99.76,0,0,0.54,508.21,3492.85,26120133,99.9,0,0,0.15,508.02,3493.04,26120134,99.86,0,0,0.14,508,3493.05,26120135,99.79,0,0,0.32,506.54,3494.53,26120136,99.87,0,0,0.14,506.51,3494.56,26120137,99.71,0,0,0.39,507.44,3493.62,26120138,99.89,0,0,0.3,507.7,3493.36,26120139,99.66,0,0,0.32,508.04,3493,26120140,99.76,0,0,0.27,507.38,3493.67,26120141,99.88,0,0,0.16,507.34,3493.7,26120142,99.76,0,0,0.49,507.76,3493.28,26120143,99.87,0,0,0.19,507.54,3493.49,26120144,99.89,0,0,0.15,507.53,3493.5,26120145,99.76,0,0,0.29,507.77,3493.28,26120146,99.88,0,0,0.15,507.76,3493.29,26120147,99.73,0,0,0.41,508.08,3492.95,26120148,99.86,0,0,0.29,507.72,3493.32,26120149,99.9,0,0,0.14,507.69,3493.34,26120150,99.74,0,0,0.29,507.22,3493.83,26120151,99.9,0,0,0.14,507.31,3493.73,26120152,99.89,0,0,0.17,507.35,3493.68,26120153,99.73,0,0,0.54,508.23,3492.8,26120154,99.91,0,0,0.14,507.56,3493.47,26120155,99.78,0,0,0.29,507.31,3493.74,26120156,99.84,0,0,0.16,507.3,3493.75,26120157,99.87,0,0,0.14,507.26,3493.78,26120158,99.78,0,0,0.57,508,3493.03,26120159,99.9,0,0,0.14,507.71,3493.32,26120160,99.63,0,0,0.28,507.96,3493.08,26120161,99.84,0,0,0.18,507.94,3493.1,26120162,99.88,0,0,0.14,507.91,3493.12,26120163,99.73,0,0,0.59,508.42,3492.61,26120164,99.86,0,0,0.16,508.05,3492.97,26120165,99.73,0,0,0.28,508.36,3492.68,26120166,99.88,0,0,0.14,508.28,3492.76,26120167,99.85,0,0,0.16,508.25,3492.78,26120168,99.76,0,0,0.57,508.43,3492.6,26120169,99.69,0,0,0.28,507.96,3493.04,26120170,99.75,0,0,0.3,507.97,3493.04,26120171,99.92,0,0,0.14,507.93,3493.08,26120172,99.89,0,0,0.14,507.92,3493.09,26120173,99.69,0,0,0.55,508.55,3492.45,26120174,99.84,0,0,0.14,508.07,3492.95,26120175,99.53,0,0,0.3,507.35,3493.69,26120176,99.85,0,0,0.16,507.3,3493.73,26120177,99.88,0,0,0.18,507.28,3493.75,26120178,99.77,0,0,0.43,507.85,3493.18,26120179,99.91,0,0,0.29,507.98,3493.04,26120180,99.72,0,0,0.33,507.03,3494,26120181,99.89,0,0,0.16,506.98,3494.05,26120182,99.89,0,0,0.14,506.97,3494.05,26120183,99.73,0,0,0.54,507.51,3493.51,26120184,99.9,0,0,0.14,507.65,3493.37,26120185,99.8,0,0,0.31,507.53,3493.5,26120186,99.89,0,0,0.14,507.56,3493.47,26120187,99.88,0,0,0.16,507.54,3493.49,26120188,99.77,0,0,0.4,507.86,3493.16,26120189,99.9,0,0,0.29,507.25,3493.76,26120190,99.72,0,0,0.34,507.8,3493.23,26120191,99.89,0,0,0.14,507.74,3493.29,26120192,99.86,0,0,0.14,507.71,3493.32,26120193,99.92,0,0,0.15,507.7,3493.32,26120194,99.68,0,0,0.55,508.59,3492.43,26120195,99.7,0,0,0.3,508.16,3492.87,26120196,99.91,0,0,0.16,508.24,3492.78,26120197,99.89,0,0,0.14,508.12,3492.9,26120198,99.9,0,0,0.15,508.04,3492.98,26120199,99.55,0,0,0.66,508.67,3492.32,26120200,99.8,0,0,0.31,508.25,3492.76,26120201,99.93,0,0,0.14,508.23,3492.78,26120202,99.9,0,0,0.14,508.21,3492.79,26120203,99.91,0,0,0.17,508.19,3492.81,26120204,99.75,0,0,0.54,508.71,3492.28,26120205,99.8,0,0,0.3,507.7,3493.3,26120206,99.88,0,0,0.16,507.64,3493.36,26120207,99.86,0,0,0.14,507.35,3493.65,26120208,99.89,0,0,0.16,506.83,3494.16,26120209,99.77,0,0,0.54,507.47,3493.52,26120210,99.74,0,0.02,0.32,507.53,3493.48,26120211,99.88,0,0,0.15,507.49,3493.52,26120212,99.88,0,0,0.16,507.47,3493.52,26120213,99.88,0,0,0.16,507.45,3493.55,26120214,99.77,0,0.01,0.41,507.71,3493.28,26120215,99.73,0,0,0.46,507.56,3493.45,26120216,99.87,0,0,0.16,507.53,3493.47,26120217,99.86,0,0,0.16,507.51,3493.48,26120218,99.87,0,0,0.15,507.49,3493.51,26120219,99.33,0,0,0.41,507.99,3492.99,26120220,99.6,0,0,0.48,506.74,3494.26,26120221,99.83,0,0,0.16,506.72,3494.29,26120222,99.87,0,0,0.14,506.7,3494.3,26120223,99.87,0,0,0.15,506.68,3494.32,26120224,99.74,0,0,0.39,507.05,3493.94,26120225,99.75,0,0,0.47,506.37,3494.65,26120226,99.9,0,0,0.14,506.33,3494.68,26120227,99.84,0,0,0.16,506.31,3494.7,26120228,99.86,0,0,0.14,506.29,3494.72,26120229,99.57,0,0,0.65,507.67,3493.32,26120230,99.73,0,0,0.38,507.51,3493.5,26120231,99.89,0,0,0.13,507.48,3493.52,26120232,99.85,0,0,0.17,507.46,3493.54,26120233,99.9,0,0,0.14,507.44,3493.55,26120234,99.9,0,0,0.14,507.41,3493.58,26120235,99.53,0,0,0.69,507.9,3493.1,26120236,99.91,0,0,0.16,507.21,3493.78,26120237,99.83,0,0,0.18,507.56,3493.43,26120238,99.85,0,0,0.15,507.54,3493.45,26120239,99.9,0,0,0.14,507.53,3493.45,26120240,99.59,0,0,0.72,508.14,3492.87,26120241,99.84,0,0,0.15,507.76,3493.24,26120242,99.88,0,0,0.14,507.72,3493.27,26120243,99.88,0,0,0.16,507.72,3493.27,26120244,99.9,0,0,0.14,507.68,3493.3,26120245,99.5,0,0,0.71,507.62,3493.38,26120246,99.85,0,0,0.16,507.42,3493.58,26120247,99.89,0,0,0.14,507.41,3493.58,26120248,99.8,0.08,5.88,0.36,507.46,3493.51,26120249,99.81,0.08,9.42,0.75,507.4,3493.48,26120250,99.6,0,0,0.9,507.74,3493.12,26120251,99.9,0,0,0.16,507.27,3493.59,26120252,99.89,0,0,0.13,507.44,3493.42,26120253,99.9,0,0,0.16,507.4,3493.45,26120254,99.86,0,0,0.15,507.39,3493.45,26120255,99.62,0,0,0.7,507.49,3493.37,26120256,99.9,0,0,0.16,507.12,3493.75,26120257,99.88,0,0,0.15,507.1,3493.76,26120258,99.83,0,0,0.14,507.08,3493.78,26120259,99.61,0,0,0.29,507.8,3493.03,26120260,99.58,0,0,0.56,508.14,3492.7,26120261,99.91,0,0,0.3,507.77,3493.07,26120262,99.92,0,0,0.14,507.75,3493.09,26120263,99.92,0,0,0.16,507.83,3493,26120264,99.89,0,0,0.13,507.9,3492.94,26120265,99.62,0,0,0.59,507.83,3493.03,26120266,99.89,0,0,0.3,507.62,3493.24,26120267,99.84,0,0,0.16,507.61,3493.24,26120268,99.85,0,0,0.14,507.58,3493.27,26120269,99.81,0,0,0.16,507.57,3493.27,26120270,99.6,0,0,0.48,507.92,3492.94,26120271,99.87,0,0,0.38,507.54,3493.31,26120272,99.87,0,0,0.14,507.51,3493.33,26120273,99.89,0,0,0.17,507.49,3493.35,26120274,99.86,0,0,0.14,507.6,3493.24,26120275,99.7,0,0,0.34,507.89,3492.96,26120276,99.66,0,0,0.55,508.3,3492.55,26120277,99.9,0,0,0.15,507.61,3493.24,26120278,99.89,0,0,0.14,507.6,3493.24,26120279,99.87,0,0,0.16,507.58,3493.26,26120280,99.65,0,0,0.3,506.63,3494.22,26120281,99.65,0,0,0.55,507.8,3493.05,26120282,99.77,0,0,0.15,507.77,3493.07,26120283,99.83,0,0,0.15,507.75,3493.09,26120284,99.78,0,0,0.16,507.74,3493.09,26120285,99.72,0,0,0.33,507.65,3493.19,26120286,99.69,0,0,0.53,507.99,3492.85,26120287,99.84,0,0,0.16,507.6,3493.24,26120288,99.77,0,0,0.14,507.59,3493.24,26120289,99.71,0,0,0.29,507.56,3493.25,26120290,99.73,0,0,0.3,508.06,3492.76,26120291,99.63,0,0,0.56,508.3,3492.52,26120292,99.82,0,0,0.14,507.77,3493.05,26120293,99.72,0,0,0.14,507.75,3493.06,26120294,99.81,0,0,0.16,507.73,3493.09,26120295,99.68,0,0,0.34,507.5,3493.35,26120296,99.71,0,0,0.55,508.17,3492.67,26120297,99.78,0,0,0.18,507.92,3492.91,26120298,99.79,0,0,0.14,507.9,3492.93,26120299,99.85,0,0,0.14,507.88,3492.95,26120300,99.74,0,0,0.32,508.12,3492.73,26120301,99.72,0,0,0.32,508.45,3492.39,26120302,99.85,0,0,0.38,507.85,3492.99,26120303,99.83,0,0,0.14,507.81,3493.02,26120304,99.86,0,0,0.14,507.81,3493.02,26120305,99.72,0,0,0.32,507.6,3493.25,26120306,99.67,0,0,0.34,507.87,3492.97,26120307,99.78,0,0,0.38,507.51,3493.32,26120308,99.85,0,0,0.15,507.62,3493.22,26120309,99.82,0,0,0.14,507.66,3493.17,26120310,99.53,0,0,0.35,507.07,3493.77,26120311,99.84,0,0,0.16,506.9,3493.94,26120312,99.71,0,0,0.56,507.65,3493.19,26120313,99.85,0,0,0.14,507.35,3493.48,26120314,99.84,0,0,0.16,507.32,3493.5,26120315,99.68,0,0,0.37,507.57,3493.27,26120316,99.83,0,0,0.14,507.55,3493.29,26120317,99.65,0,0,0.57,508.52,3492.31,26120318,99.83,0,0,0.16,507.99,3492.83,26120319,99.62,0,0,0.32,508.08,3492.71,26120320,99.72,0,0,0.31,508.15,3492.66,26120321,99.83,0,0,0.16,508.12,3492.69,26120322,99.7,0,0,0.59,508.47,3492.33,26120323,98.84,0,0,0.16,507.83,3492.97,26120324,99.83,0,0,0.14,507.81,3492.98,26120325,99.66,0,0,0.37,508.06,3492.76,26120326,99.81,0,0,0.15,508.04,3492.77,26120327,99.62,0,0,0.57,508.37,3492.43,26120328,99.76,0,0,0.16,507.99,3492.81,26120329,99.77,0,0,0.15,507.98,3492.82,26120330,99.76,0,0,0.32,508.32,3492.5,26120331,99.83,0,0,0.14,508.38,3492.43,26120332,99.68,0,0,0.41,508.71,3492.1,26120333,99.83,0,0,0.29,508.33,3492.47,26120334,99.8,0,0,0.14,508.32,3492.48,26120335,99.73,0,0,0.33,508.08,3492.73,26120336,99.8,0,0,0.14,508.05,3492.75,26120337,99.68,0,0,0.43,508.68,3492.12,26120338,99.81,0,0,0.28,508.01,3492.79,26120339,99.81,0,0,0.15,507.99,3492.81,26120340,99.42,0,0,0.3,508.09,3492.72,26120341,99.67,0,0,0.16,507.97,3492.84,26120342,99.73,0,0,0.16,508.21,3492.59,26120343,99.64,0,0,0.53,508.47,3492.32,26120344,99.76,0,0,0.14,508.1,3492.69,26120345,99.59,0,0,0.32,507.14,3493.67,26120346,99.8,0,0,0.14,507.08,3493.72,26120347,99.74,0,0,0.16,507.06,3493.74,26120348,99.63,0,0,0.53,508.22,3492.58,26120349,99.61,0,0,0.3,508,3492.78,26120350,99.49,0,0,0.31,508,3492.79,26120351,99.78,0,0,0.18,507.97,3492.81,26120352,99.8,0,0,0.15,508.09,3492.68,26120353,99.66,0,0,0.55,508.67,3492.1,26120354,99.79,0,0,0.14,508.35,3492.41,26120355,99.66,0,0,0.34,508.34,3492.44,26120356,99.82,0,0,0.16,508.33,3492.45,26120357,99.37,0,0,0.19,508.3,3492.47,26120358,99.62,0,0,0.55,508.49,3492.28,26120359,99.8,0,0,0.14,507.78,3492.99,26120360,99.64,0,0,0.32,507.77,3493.01,26120361,99.76,0,0,0.16,507.74,3493.03,26120362,99.8,0,0,0.14,507.74,3493.05,26120363,99.54,0,0,0.58,508.06,3492.73,26120364,99.78,0,0,0.14,507.58,3493.19,26120365,99.69,0,0,0.33,507.39,3493.41,26120366,99.79,0,0,0.14,507.36,3493.43,26120367,99.82,0,0,0.16,507.34,3493.45,26120368,99.65,0,0,0.48,507.74,3493.04,26120369,99.75,0,0,0.2,507.55,3493.23,26120370,99.56,0,0,0.34,507.38,3493.41,26120371,99.8,0,0,0.14,507.26,3493.53,26120372,99.79,0,0,0.15,507.25,3493.54,26120373,99.63,0,0,0.54,507.58,3493.2,26120374,99.75,0,0,0.15,507.25,3493.53,26120375,99.51,0,0,0.36,506.75,3494.04,26120376,99.8,0,0,0.13,506.67,3494.12,26120377,99.8,0,0,0.16,506.63,3494.15,26120378,99.28,0,0,0.4,507.11,3493.67,26120379,99.58,0,0.01,0.41,507.55,3493.2,26120380,99.5,0,0,0.32,507.56,3493.21,26120381,99.82,0,0,0.15,507.53,3493.24,26120382,99.73,0,0,0.16,507.52,3493.25,26120383,99.82,0,0,0.15,507.48,3493.28,26120384,99.68,0,0,0.54,508.29,3492.46,26120385,99.66,0,0,0.32,507.66,3493.12,26120386,99.78,0,0,0.14,507.63,3493.14,26120387,99.8,0,0,0.2,507.62,3493.15,26120388,99.68,0,0,0.14,507.59,3493.17,26120389,99.58,0,0,0.54,507.92,3492.84,26120390,99.61,0,0,0.32,507.57,3493.2,26120391,99.83,0,0,0.16,507.56,3493.21,26120392,99.76,0,0,0.15,507.52,3493.25,26120393,99.82,0,0,0.14,507.5,3493.26,26120394,99.61,0,0,0.56,507.84,3492.91,26120395,99.66,0,0,0.3,507.57,3493.2,26120396,99.73,0,0,0.14,507.65,3493.12,26120397,99.82,0,0,0.16,507.61,3493.15,26120398,99.81,0,0,0.14,507.6,3493.16,26120399,99.67,0,0,0.59,508.43,3492.32,26120400,99.52,0,0,0.34,507.58,3493.19,26120401,99.72,0,0,0.16,507.55,3493.21,26120402,99.76,0,0,0.14,507.53,3493.23,26120403,99.76,0,0,0.15,507.51,3493.25,26120404,99.55,0,0,0.54,507.73,3493.02,26120405,99.63,0,0,0.32,507.25,3493.52,26120406,99.75,0,0,0.16,507.32,3493.44,26120407,97.81,0,0,0.14,507.39,3493.37,26120408,99.83,0,0,0.15,507.36,3493.4,26120409,99.53,0,0,0.64,507.95,3492.78,26120410,99.61,0,0,0.38,507.84,3492.9,26120411,99.79,0,0,0.15,507.83,3492.91,26120412,99.81,0,0,0.17,507.79,3492.94,26120413,99.79,0,0,0.17,507.79,3492.94,26120414,99.66,0,0,0.41,508.1,3492.62,26120415,99.59,0,0,0.46,508.24,3492.49,26120416,99.83,0,0,0.16,508.13,3492.61,26120417,99.64,0,0,0.18,507.74,3493.01,26120418,99.8,0,0,0.15,507.71,3493.04,26120419,99.6,0,0,0.49,508.37,3492.36,26120420,99.69,0,0,0.36,507.87,3492.88,26120421,99.82,0,0,0.16,507.86,3492.89,26120422,99.84,0,0,0.15,507.83,3492.92,26120423,99.84,0,0,0.14,507.82,3492.92,26120424,99.82,0,0,0.14,507.79,3492.95,26120425,94.08,0.5,0.01,262.19,519.84,3480.47,26120426,99.79,0,0,0.19,510.18,3490.44,26120427,99.85,0,0,0.17,510.14,3490.47,26120428,99.8,0,0,0.16,510.12,3490.49,26120429,99.83,0,0,0.14,510.1,3490.5,26120430,99.43,0,0,0.77,508.43,3492.22,26120431,99.83,0,0,0.14,507.56,3493.1,26120432,95.3,0,0,0.13,507.59,3493.06,26120433,99.79,0,0,0.17,507.58,3493.07,26120434,99.83,0,0,0.14,507.56,3493.09,26120435,99.52,0,0,0.76,508.13,3492.55,26120436,99.84,0,0.01,0.14,508.02,3492.67,26120437,99.79,0,0,0.17,507.99,3492.71,26120438,99.78,0,0,0.14,507.98,3492.71,26120439,99.77,0,0,0.27,507.95,3492.74,26120440,99.58,0,0,0.7,508.35,3492.35,26120441,99.82,0,0,0.16,507.69,3493.01,26120442,99.36,0,0,0.14,507.86,3492.83,26120443,99.76,0,0,0.15,507.83,3492.86,26120444,99.75,0,0,0.15,507.81,3492.89,26120445,99.45,0,0,0.76,507.79,3492.93,26120446,99.82,0,0,0.18,508.04,3492.68,26120447,99.73,0,0,0.18,508.02,3492.69,26120448,99.77,0,0,0.18,508,3492.71,26120449,99.83,0,0,0.15,507.98,3492.72,26120450,97.88,0,0,0.63,507.71,3493.01,26120451,99.85,0,0,0.2,507.72,3493,26120452,99.83,0,0,0.16,507.69,3493.02,26120453,99.83,0,0,0.15,507.81,3492.9,26120454,99.81,0,0,0.15,507.83,3492.88,26120455,99.62,0,0,0.59,508.11,3492.61,26120456,99.84,0,0,0.27,507.57,3493.15,26120457,98.82,0,0,0.16,507.56,3493.15,26120458,99.83,0,0,0.14,507.53,3493.18,26120459,99.83,0,0,0.21,507.74,3492.96,26120460,99.06,0,0,9.48,508.73,3492.76,26120461,99.64,0,0,0.38,506.88,3494.64,26120462,99.78,0,0,0.18,506.88,3494.64,26120463,99.83,0,0,0.16,506.84,3494.67,26120464,96.23,0,0,0.15,506.93,3494.59,26120465,99.58,0,0,0.32,507.99,3493.56,26120466,99.54,0,0,0.6,508.34,3493.2,26120467,99.83,0,0,0.14,507.96,3493.58,26120468,99.71,0,0,0.16,507.95,3493.58,26120469,99.74,0,0,0.32,507.92,3493.59,26120470,99.64,0,0,0.36,507.93,3493.59,26120471,99.18,0,0,0.6,508.28,3493.24,26120472,98.37,0,0,0.16,507.89,3493.63,26120473,99.83,0,0,0.14,507.85,3493.66,26120474,99.75,0,0,0.14,507.85,3493.66,26120475,99.71,0,0,0.37,508.08,3493.45,26120476,99.69,0,0,0.56,508.26,3493.26,26120477,99.79,0,0,0.2,508.02,3493.5,26120478,99.89,0,0,0.14,508.01,3493.5,26120479,99.86,0,0,0.14,507.97,3493.54,26120480,99.73,0,0,0.36,507.99,3493.54,26120481,99.74,0,0,0.41,508.45,3493.08,26120482,99.77,0,0,0.28,508.19,3493.33,26120483,99.9,0,0,0.16,508.16,3493.35,26120484,99.9,0,0,0.14,508.14,3493.37,26120485,99.66,0,0,0.33,507.24,3494.29,26120486,99.29,0,0,0.42,508.09,3493.43,26120487,99.92,0,0,0.26,507.86,3493.66,26120488,99.91,0,0,0.16,507.89,3493.62,26120489,97.97,0,0,0.14,508.01,3493.5,26120490,99.66,0,0,0.38,508.2,3493.33,26120491,99.7,0,0,0.46,508.39,3493.14,26120492,99.86,0,0,0.26,508.21,3493.31,26120493,99.89,0,0,0.15,508.2,3493.32,26120494,99.92,0,0,0.16,508.17,3493.34,26120495,99.84,0,0,0.31,508.18,3493.35,26120496,99.73,0,0,0.57,508.51,3493.02,26120497,99.9,0,0,0.14,508.14,3493.38,26120498,99.89,0,0,0.14,508.11,3493.4,26120499,99.86,0,0,0.29,507.63,3493.86,26120500,98.58,0,0,0.31,508.16,3493.34,26120501,99.76,0,0,0.36,508.61,3492.89,26120502,99.92,0,0,0.38,508.24,3493.26,26120503,99.91,0,0,0.14,508.22,3493.27,26120504,99.87,0,0,0.14,508.19,3493.31,26120505,97.58,0,0,0.32,508.45,3493.08,26120506,99.9,0,0,0.16,508.29,3493.23,26120507,98.35,0,0,0.55,508.64,3492.87,26120508,99.89,0,0,0.15,508.12,3493.39,26120509,99.91,0,0,0.15,508.09,3493.42,26120510,99.77,0,0,0.34,507.86,3493.66,26120511,99.93,0,0,0.18,507.92,3493.6,26120512,99.69,0,0,0.54,508.68,3492.84,26120513,99.85,0,0,0.15,508.47,3493.05,26120514,99.51,0,0,0.16,508.44,3493.07,26120515,99.73,0,0,0.32,506.47,3495.06,26120516,99.91,0,0,0.16,506.23,3495.3,26120517,99.75,0,0,0.4,507.34,3494.18,26120518,99.92,0,0,0.29,507.65,3493.87,26120519,99.88,0,0,0.14,507.63,3493.88,26120520,99.65,0,0,0.35,507.69,3493.84,26120521,99.18,0,0,0.16,507.6,3493.91,26120522,99.68,0,0,0.56,507.94,3493.58,26120523,99.89,0,0,0.15,507.69,3493.82,26120524,99.89,0,0,0.15,507.73,3493.78,26120525,99.71,0,0,0.27,507.73,3493.79,26120526,99.89,0,0,0.16,507.71,3493.81,26120527,99.78,0,0,0.5,508.28,3493.23,26120528,99.84,0,0,0.2,507.66,3493.85,26120529,99.54,0,0,0.29,507.65,3493.83,26120530,99.65,0,0,0.26,507.64,3493.87,26120531,99.87,0,0,0.16,507.61,3493.88,26120532,99.55,0,0,0.53,507.92,3493.59,26120533,99.9,0,0,0.16,507.33,3494.18,26120534,99.9,0,0,0.15,507.31,3494.19,26120535,99.78,0,0,0.3,506.52,3495,26120536,99.15,0,0,0.14,506.5,3495.02,26120537,99.67,0,0,0.51,506.81,3494.7,26120538,99.85,0,0,0.29,507.45,3494.07,26120539,99.87,0,0,0.14,507.42,3494.09,26120540,99.75,0,0,0.29,507.91,3493.61,26120541,99.9,0,0,0.14,507.89,3493.63,26120542,99.71,0,0,0.31,508.2,3493.31,26120543,99.83,0,0,0.42,507.21,3494.3,26120544,99.91,0,0,0.14,506.85,3494.65,26120545,99.62,0,0,0.28,505.88,3495.64,26120546,99.9,0,0,0.18,506,3495.51,26120547,99.88,0,0,0.14,506,3495.51,26120548,99.7,0,0,0.57,507.2,3494.3,26120549,99.8,0,0,0.14,506.93,3494.57,26120550,99.57,0,0,0.29,507.06,3494.46,26120551,99.84,0,0,0.16,507.4,3494.11,26120552,99.89,0,0,0.16,507.38,3494.13,26120553,99.63,0,0,0.56,507.91,3493.59,26120554,99.88,0,0,0.16,507.58,3493.92,26120555,99.63,0,0,0.3,507.57,3493.95,26120556,99.9,0,0,0.14,507.67,3493.85,26120557,99.82,0,0,0.14,507.75,3493.76,26120558,99.33,0,0,0.56,507.92,3493.59,26120559,99.8,0,0,0.28,508.19,3493.29,26120560,99.81,0,0.01,0.31,507.7,3493.79,26120561,99.83,0,0,0.16,507.65,3493.84,26120562,99.86,0,0,0.14,507.64,3493.84,26120563,99.77,0,0,0.51,507.72,3493.76,26120564,99.87,0,0,0.2,507.09,3494.38,26120565,99.73,0,0,0.27,507.83,3493.66,26120566,99.88,0,0,0.15,507.95,3493.54,26120567,99.88,0,0,0.16,507.99,3493.5,26120568,98.04,0,0,0.48,508.56,3492.92,26120569,99.91,0,0,0.29,507.95,3493.53,26120570,99.74,0,0,0.29,507.69,3493.8,26120571,99.87,0,0,0.16,507.66,3493.82,26120572,99.9,0,0,0.18,507.65,3493.84,26120573,99.76,0,0,0.41,507.98,3493.5,26120574,99.89,0,0,0.29,507.6,3493.88,26120575,98.17,0,0,0.27,507.84,3493.65,26120576,99.87,0,0,0.16,507.82,3493.67,26120577,99.88,0,0,0.14,507.92,3493.56,26120578,99.68,0,0,0.44,508.34,3493.14,26120579,99.86,0,0,0.32,507.94,3493.53,26120580,99.65,0,0,0.26,508.21,3493.27,26120581,99.88,0,0,0.14,508.18,3493.3,26120582,99.92,0,0,0.16,508.17,3493.31,26120583,99.9,0,0,0.15,508.14,3493.33,26120584,99.65,0,0,0.54,507.28,3494.19,26120585,99.77,0,0,0.32,506.22,3495.27,26120586,99.91,0,0,0.14,506.14,3495.34,26120587,99.87,0,0,0.15,506.1,3495.37,26120588,99.9,0,0,0.15,506.08,3495.39,26120589,99.46,0,0,0.71,508.6,3492.86,26120590,99.74,0,0,0.26,506.8,3494.68,26120591,99.83,0,0,0.14,506.71,3494.77,26120592,99.89,0,0,0.16,506.68,3494.79,26120593,99.18,0,0,0.17,506.66,3494.81,26120594,99.71,0,0,0.54,507.77,3493.71,26120595,99.7,0,0,0.28,506.91,3494.58,26120596,99.9,0,0,0.18,506.86,3494.63,26120597,99.82,0,0,0.18,507.32,3494.17,26120598,99.88,0,0,0.17,507.31,3494.17,26120599,99.67,0,0,0.5,508.1,3493.37,26120600,99.69,0,0,0.32,508.14,3493.35,26120601,99.85,0,0,0.14,508.2,3493.29,26120602,99.86,0,0,0.16,508.18,3493.3,26120603,99.87,0,0,0.14,508.16,3493.32,26120604,99.73,0,0,0.55,508.38,3493.1,26120605,99.73,0,0,0.3,507.41,3494.08,26120606,99.84,0,0,0.13,507.38,3494.11,26120607,99.92,0,0,0.17,507.35,3494.15,26120608,99.9,0,0,0.14,507.33,3494.17,26120609,99.75,0,0,0.41,507.88,3493.62,26120610,99.69,0,0,0.44,507.79,3493.72,26120611,99.89,0,0,0.16,507.71,3493.8,26120612,99.84,0,0,0.14,507.69,3493.81,26120613,99.81,0,0,0.15,507.65,3493.85,26120614,99.73,0,0,0.4,508.11,3493.39,26120615,99.62,0,0,0.4,507.14,3494.37,26120616,99.85,0,0,0.14,507.1,3494.41,26120617,99.87,0,0,0.16,507.08,3494.43,26120618,97.66,0,0,0.14,507.07,3494.43,26120619,99.73,0,0,0.29,507.55,3493.93,26120620,99.4,0,0,0.66,507.85,3493.65,26120621,99.91,0,0,0.14,507.46,3494.04,26120622,99.67,0,0,0.14,507.43,3494.06,26120623,99.86,0,0,0.15,507.42,3494.07,26120624,99.87,0,0,0.15,507.39,3494.09,26120625,99.45,0,0,0.66,508,3493.49,26120626,99.88,0,0,0.16,507.62,3493.88,26120627,99.85,0,0,0.14,507.6,3493.88,26120628,99.87,0,0,0.15,507.58,3493.9,26120629,99.88,0,0,0.14,507.56,3493.91,26120630,99.64,0,0,0.73,508.8,3492.69,26120631,99.8,0,0,0.14,508.16,3493.32,26120632,99.77,0,0,0.16,508.21,3493.27,26120633,99.86,0,0,0.15,508.18,3493.3,26120634,99.88,0,0,0.14,508.16,3493.31,26120635,99.58,0,0,0.74,508.89,3492.59,26120636,99.75,0,0,0.13,508.38,3493.1,26120637,99.87,0,0,0.16,508.36,3493.11,26120638,99.88,0,0,0.14,508.34,3493.13,26120639,99.88,0,0,0.14,508.32,3493.14,26120640,99.29,0,0,0.67,507.9,3493.58,26120641,99.79,0,0,0.16,508.06,3493.42,26120642,99.8,0,0,0.14,508.04,3493.44,26120643,99.77,0,0,0.15,508.21,3493.27,26120644,99.81,0,0,0.14,508.19,3493.28,26120645,99.57,0,0,0.53,508,3493.49,26120646,99.88,0,0,0.34,508.16,3493.32,26120647,99.9,0,0,0.17,508.13,3493.34,26120648,99.88,0,0,0.14,508.11,3493.36,26120649,99.71,0,0,0.29,508.34,3493.1,26120650,99.48,0,0,0.55,508.18,3493.29,26120651,99.83,0,0,0.35,508.3,3493.15,26120652,99.88,0,0,0.18,508.29,3493.15,26120653,99.82,0,0,0.16,508.39,3493.05,26120654,99.82,0,0,0.17,508.45,3493.01,26120655,99.44,0,0,0.53,508.28,3493.19,26120656,99.85,0,0,0.47,508.42,3493.05,26120657,99.82,0,0,0.21,508.38,3493.07,26120658,99.79,0,0,0.18,508.36,3493.09,26120659,99.82,0,0,0.14,508.34,3493.11,26120660,99.81,0,0,0.27,508.11,3493.36,26120661,99.68,0,0,0.55,508.43,3493.03,26120662,99.88,0,0,0.16,508.05,3493.4,26120663,99.8,0,0,0.14,508.04,3493.41,26120664,99.89,0,0,0.15,508.01,3493.44,26120665,99.71,0,0,0.29,507.92,3493.56,26120666,99.77,0,0,0.57,508.74,3492.72,26120667,99.84,0,0,0.14,508.41,3493.04,26120668,97.26,0,0,0.16,508.38,3493.06,26120669,99.81,0,0,0.14,508.37,3493.07,26120670,99.65,0,0,0.3,507.01,3494.45,26120671,99.72,0,0,0.54,507.35,3494.11,26120672,99.77,0,0,0.14,507.09,3494.36,26120673,99.81,0,0,0.15,507.07,3494.38,26120674,99.83,0,0,0.14,507.04,3494.4,26120675,99.63,0,0,0.28,506.8,3494.65,26120676,99.45,0,0,0.53,507.82,3493.62,26120677,99.84,0,0,0.21,507.43,3494.02,26120678,99.87,0,0,0.14,507.41,3494.03,26120679,99.59,0,0,0.31,507.17,3494.24,26120680,99.72,0,0,0.29,507.92,3493.5,26120681,99.78,0,0,0.5,508.33,3493.09,26120682,99.85,0,0,0.21,507.83,3493.59,26120683,99.86,0,0,0.14,507.81,3493.61,26120684,99.88,0,0,0.15,507.77,3493.66,26120685,99.71,0,0,0.28,507.8,3493.67,26120686,99.7,0,0,0.42,508.06,3493.4,26120687,99.75,0,0,0.27,507.68,3493.77,26120688,99.91,0,0,0.16,507.66,3493.79,26120689,99.93,0,0,0.14,507.66,3493.79,26120690,99.72,0,0,0.26,507.89,3493.58,26120691,99.73,0,0,0.51,508.29,3493.17,26120692,99.83,0,0,0.19,508.08,3493.37,26120693,99.83,0,0,0.14,508.05,3493.39,26120694,99.8,0,0,0.15,508.03,3493.41,26120695,99.76,0,0,0.29,507.55,3493.91,26120696,99.78,0,0,0.38,508.28,3493.17,26120697,99.87,0,0,0.4,507.75,3493.7,26120698,99.9,0,0,0.18,507.91,3493.53,26120699,99.88,0,0,0.18,507.9,3493.54,26120700,99.58,0,0,0.31,507.89,3493.57,26120701,99.82,0,0,0.14,507.87,3493.59,26120702,99.66,0,0,0.63,508.26,3493.18,26120703,99.89,0,0,0.18,507.82,3493.62,26120704,99.81,0,0,0.2,507.8,3493.64,26120705,99.72,0,0,0.3,507.81,3493.64,26120706,99.84,0,0,0.16,507.78,3493.67,26120707,99.69,0,0,0.54,508.46,3492.98,26120708,99.8,0,0,0.15,508.23,3493.21,26120709,99.62,0,0,0.28,507.89,3493.53,26120710,99.7,0,0,0.3,507.21,3494.22,26120711,99.81,0,0,0.18,507.19,3494.24,26120712,99.69,0,0,0.55,508.04,3493.38,26120713,99.88,0,0,0.14,507.89,3493.53,26120714,99.91,0,0,0.15,507.86,3493.57,26120715,99.7,0,0,0.32,507.19,3494.26,26120716,99.82,0,0,0.13,507.11,3494.33,26120717,99.67,0,0,0.57,508.43,3493.01,26120718,99.9,0,0,0.22,508.06,3493.38,26120719,99.84,0,0,0.16,508.04,3493.39,26120720,99.66,0,0,0.28,506.84,3494.6,26120721,99.85,0,0,0.16,506.79,3494.65,26120722,99.77,0,0,0.51,507.79,3493.65,26120723,99.87,0,0,0.23,508.41,3493.02,26120724,99.87,0,0,0.16,508.39,3493.04,26120725,99.79,0,0,0.3,507.91,3493.53,26120726,99.81,0,0,0.14,507.88,3493.56,26120727,99.69,0,0,0.55,508.31,3493.13,26120728,99.71,0,0,0.18,508.11,3493.33,26120729,99.86,0,0,0.18,508.07,3493.36,26120730,99.64,0,0,0.35,507.98,3493.47,26120731,99.82,0,0,0.15,507.8,3493.64,26120732,99.66,0,0,0.4,508.13,3493.31,26120733,99.89,0,0,0.29,507.77,3493.67,26120734,99.86,0,0,0.14,507.84,3493.59,26120735,99.72,0,0,0.28,506.96,3494.48,26120736,99.88,0,0,0.15,506.92,3494.52,26120737,99.76,0,0,0.34,507.31,3494.13,26120738,99.89,0,0,0.39,508.1,3493.33,26120739,99.69,0,0,0.38,507.6,3493.8,26120740,99.6,0,0,0.27,507.35,3494.07,26120741,99.83,0,0,0.16,507.32,3494.1,26120742,99.87,0,0,0.14,507.3,3494.11,26120743,99.66,0,0,0.54,508.4,3493.01,26120744,99.83,0,0,0.15,508,3493.42,26120745,99.67,0,0,0.27,508,3493.44,26120746,99.85,0,0,0.36,507.67,3493.76,26120747,99.84,0,0,0.14,507.65,3493.78,26120748,99.69,0,0,0.57,508.33,3493.09,26120749,99.82,0,0,0.14,508.1,3493.32,26120750,99.65,0,0,0.26,506.92,3494.51,26120751,99.83,0,0,0.16,506.85,3494.58,26120752,99.85,0,0,0.14,506.84,3494.59,26120753,99.7,0,0,0.55,507.65,3493.77,26120754,99.77,0,0,0.15,507.53,3493.88,26120755,99.68,0,0,0.26,508,3493.43,26120756,99.83,0,0,0.16,508.01,3493.42,26120757,99.83,0,0,0.14,507.97,3493.45,26120758,99.72,0,0,0.5,508.79,3492.63,26120759,99.89,0,0,0.23,508.13,3493.29,26120760,99.61,0,0,0.31,508.14,3493.3,26120761,99.83,0,0,0.18,508.12,3493.31,26120762,99.83,0,0,0.15,508.1,3493.33,26120763,99.77,0,0,0.5,508.63,3492.78,26120764,99.85,0,0,0.25,508.3,3493.11,26120765,99.69,0,0,0.31,508.3,3493.13,26120766,99.89,0,0,0.2,508.28,3493.14,26120767,99.83,0,0,0.2,508.25,3493.17,26120768,99.74,0,0,0.46,508.57,3492.84,26120769,99.7,0,0,0.46,508.19,3493.19,26120770,99.81,0,0,0.28,508.37,3493.03,26120771,99.84,0,0,0.17,508.35,3493.04,26120772,99.88,0,0,0.16,508.33,3493.06,26120773,99.65,0,0,0.59,508.67,3492.72,26120774,99.68,0,0,0.18,508.29,3493.11,26120775,99.68,0,0,0.32,506.84,3494.57,26120776,99.9,0,0,0.21,506.79,3494.62,26120777,99.79,0,0,0.24,507.26,3494.14,26120778,99.83,0,0,0.2,507.24,3494.16,26120779,99.65,0,0,0.59,508.33,3493.08,26120780,99.69,0,0,0.34,508.43,3493,26120781,99.81,0,0,0.2,508.46,3492.97,26120782,99.85,0,0,0.2,508.61,3492.82,26120783,99.85,0,0,0.19,508.59,3492.83,26120784,99.73,0,0,0.59,508.72,3492.69,26120785,99.56,0,0,0.32,506.42,3495.01,26120786,99.83,0,0,0.16,506.35,3495.08,26120787,99.79,0,0.01,0.14,506.32,3495.11,26120788,99.65,0,0,0.18,506.26,3495.16,26120789,96.4,0.02,0.01,78.34,519.12,3484.03,26120790,99.67,0,0,0.43,510.57,3490.82,26120791,99.69,0,0,0.14,510.22,3491.16,26120792,99.87,0,0,0.15,510.19,3491.18,26120793,99.79,0,0,0.14,510.18,3491.2,26120794,99.68,0,0,0.44,509.62,3491.77,26120795,99.82,0,0,0.45,508.71,3492.71,26120796,99.89,0,0,0.16,508.69,3492.72,26120797,99.83,0,0,0.14,508.72,3492.69,26120798,99.85,0,0,0.14,508.84,3492.57,26120799,99.5,0,0,0.58,509.34,3492.06,26120800,99.72,0,0,0.37,508.35,3493.1,26120801,99.87,0,0,0.15,508.32,3493.13,26120802,99.05,0,0,0.15,508.3,3493.14,26120803,99.88,0,0,0.16,508.28,3493.16,26120804,99.72,0,0,0.4,508.69,3492.75,26120805,99.67,0,0,0.38,507.54,3493.91,26120806,99.82,0,0,0.17,507.51,3493.95,26120807,99.85,0,0,0.14,507.5,3493.95,26120808,99.8,0,0,0.15,507.47,3493.98,26120809,99.63,0,0,0.49,507.93,3493.51,26120810,99.73,0,0,0.3,507.86,3493.59,26120811,99.86,0,0,0.14,507.87,3493.58,26120812,99.9,0,0,0.16,507.84,3493.61,26120813,99.84,0,0,0.14,507.82,3493.62,26120814,99.9,0,0,0.15,507.8,3493.64,26120815,99.49,0,0,0.66,508.87,3492.58,26120816,99.84,0,0,0.16,508.52,3492.93,26120817,99.88,0,0,0.14,508.5,3492.95,26120818,99.87,0,0,0.14,508.48,3492.96,26120819,99.86,0,0,0.17,508.46,3492.98,26120820,99.44,0,0,0.65,509.22,3492.24,26120821,99.92,0,0,0.14,508.46,3493,26120822,99.87,0,0,0.16,508.61,3492.84,26120823,99.84,0,0,0.14,508.58,3492.86,26120824,99.88,0,0,0.15,508.57,3492.87,26120825,99.62,0,0,0.7,508.74,3492.71,26120826,99.86,0,0,0.19,507.81,3493.64,26120827,99.8,0,0,0.2,507.78,3493.67,26120828,99.88,0,0,0.19,507.77,3493.67,26120829,99.84,0,0,0.33,507.99,3493.43,26120830,99.59,0,0,0.68,508.26,3493.18,26120831,99.82,0,0,0.18,507.72,3493.71,26120832,99.86,0,0,0.16,507.7,3493.73,26120833,99.86,0,0,0.16,507.7,3493.72,26120834,99.76,0,0,0.18,507.84,3493.58,26120835,99.44,0,0,0.73,507.82,3493.6,26120836,99.82,0,0,0.19,507.56,3493.87,26120837,99.85,0,0,0.25,507.54,3493.88,26120838,92.72,4.64,0.01,148.34,522.9,3537.31,26120839,99.86,0,0,0.25,510.08,3572.29,26120840,99.5,0,0,0.76,510.94,3570.95,26120841,99.75,0,0,0.18,510.09,3571.34,26120842,99.76,0,0,0.18,509.98,3571.37,26120843,99.88,0,0,0.21,508.4,3572.92,26120844,99.76,0,0,0.18,507.35,3573.93,26120845,97.83,0.01,0.01,15.9,510.46,3570.97,26120846,99.82,0,0,0.28,508.21,3572.62,26120847,99.84,0,0,0.18,508.12,3572.63,26120848,99.7,0,0,0.18,508,3572.66,26120849,99.8,0,0,0.18,507.9,3572.68,26120850,99.76,0,0,0.34,508.07,3572.46,26120851,99.5,0,0,0.58,508.33,3572.13,26120852,99.85,0,0,0.18,507.97,3572.41,26120853,99.85,0,0,0.17,507.96,3572.33,26120854,99.68,0,0,0.18,507.87,3572.34,26120855,99.66,0,0,0.33,508.27,3571.88,26120856,99.68,0,0,0.57,508.29,3571.78,26120857,99.83,0,0,0.15,507.83,3572.16,26120858,99.84,0,0,0.19,507.74,3572.16,26120859,99.69,0,0,0.32,508.3,3571.2,26120860,99.76,0,0,0.36,508.23,3571.2,26120861,99.64,0,0,0.54,508.86,3570.49,26120862,99.83,0,0,0.14,508.54,3570.73,26120863,99.87,0,0,0.14,508.43,3570.76,26120864,99.89,0,0,0.16,508.46,3570.65,26120865,99.61,0,0,0.34,507.36,3571.57,26120866,99.73,0,0,0.59,508.67,3570.17,26120867,99.77,0,0,0.18,508.37,3570.39,26120868,99.82,0,0,0.14,508.26,3570.41,26120869,99.79,0,0,0.14,508.17,3570.42,26120870,97.4,0,0,0.3,508.57,3569.95,26120871,99.68,0,0,0.54,508.68,3569.76,26120872,99.79,0,0,0.22,507.63,3570.72,26120873,99.81,0,0,0.16,507.53,3570.74,26120874,99.71,0,0,0.14,507.43,3570.76,26120875,99.63,0,0,0.3,507.29,3570.83,26120876,99.61,0,0,0.46,507.99,3570.05,26120877,99.78,0,0,0.27,508.09,3569.86,26120878,99.77,0,0,0.14,507.98,3569.89,26120879,99.8,0,0,0.15,507.89,3569.9,26120880,99.55,0,0,0.27,506.38,3571.35,26120881,99.64,0,0,0.41,506.83,3570.82,26120882,99.74,0,0,0.31,507.11,3570.45,26120883,99.81,0,0,0.14,507.01,3570.47,26120884,99.79,0,0,0.14,506.92,3570.48,26120885,99.67,0,0,0.3,508.04,3569.17,26120886,99.63,0,0,0.31,508.42,3568.7,26120887,99.73,0,0,0.39,508.41,3568.63,26120888,99.79,0,0,0.15,508.31,3568.65,26120889,99.72,0,0,0.28,507.96,3568.89,26120890,99.62,0,0,0.27,508.12,3568.67,26120891,99.74,0,0,0.16,508.03,3568.68,26120892,99.46,0,0,0.57,508.74,3567.89,26120893,99.69,0,0,0.14,508.32,3568.22,26120894,99.66,0,0,0.16,508.21,3568.25,26120895,99.47,0,0,0.32,508.15,3568.25,26120896,99.51,0,0,0.13,508.22,3568.09,26120897,99.57,0,0,0.6,508.94,3567.29,26120898,99.71,0,0,0.14,508.52,3567.63,26120899,99.71,0,0,0.14,508.42,3567.65,26120900,99.5,0,0,0.27,508.61,3567.42,26120901,99.77,0,0,0.16,508.52,3567.44,26120902,99.68,0,0,0.55,508.78,3567.1,26120903,99.8,0,0,0.18,508.36,3567.45,26120904,99.75,0,0,0.16,508.25,3567.48,26120905,99.62,0,0,0.29,506.77,3568.91,26120906,99.74,0,0,0.16,506.63,3568.99,26120907,99.57,0,0,0.55,507.59,3567.96,26120908,99.7,0,0,0.15,508.37,3567.11,26120909,99.78,0,0,0.14,508.28,3567.13,26120910,99.51,0,0,0.36,508.34,3567.02,26120911,99.79,0,0,0.18,507.88,3567.41,26120912,99.62,0,0,0.55,508.4,3566.83,26120913,99.78,0,0,0.14,508.71,3566.46,26120914,99.74,0,0,0.16,508.65,3566.46,26120915,99.57,0,0,0.32,508.32,3566.74,26120916,99.71,0,0,0.15,508.23,3566.76,26120917,99.61,0,0,0.32,508.69,3566.23,26120918,99.8,0,0,0.38,508.07,3566.77,26120919,99.6,0,0,0.28,508.49,3566.26,26120920,99.62,0,0,0.28,508.82,3565.88,26120921,99.78,0,0,0.16,508.74,3565.89,26120922,99.78,0,0,0.14,508.66,3565.91,26120923,99.63,0,0,0.56,508.5,3566.01,26120924,99.8,0,0,0.14,508.01,3566.43,26120925,99.63,0,0,0.28,508.44,3565.96,26120926,99.74,0,0,0.15,508.55,3565.78,26120927,99.79,0,0,0.15,508.52,3565.74,26120928,99.53,0,0,0.59,508.76,3565.4,26120929,99.68,0,0,0.14,508.32,3565.76,26120930,99.62,0,0,0.27,508.26,3565.77,26120931,99.75,0,0,0.16,508.16,3565.8,26120932,99.75,0,0,0.15,508.19,3565.7,26120933,99.6,0,0,0.61,509.15,3564.66,26120934,99.8,0,0,0.16,508.56,3565.17,26120935,99.72,0,0,0.29,508.51,3565.18,26120936,99.8,0,0,0.13,508.45,3565.2,26120937,99.81,0,0,0.17,508.39,3565.22,26120938,99.61,0,0,0.57,508.8,3564.75,26120939,99.78,0.01,0.04,0.18,508.55,3564.95,26120940,99.54,0,0,0.27,508.84,3564.66,26120941,99.83,0,0,0.16,508.76,3564.72,26120942,99.77,0,0,0.15,508.71,3564.7,26120943,99.63,0,0,0.54,508.69,3564.63,26120944,99.78,0,0,0.14,507.74,3565.5,26120945,99.59,0,0,0.29,507.94,3565.26,26120946,99.81,0,0,0.16,507.86,3565.28,26120947,99.77,0,0,0.15,507.82,3565.31,26120948,99.61,0,0,0.51,508.4,3564.72,26120949,99.66,0,0,0.36,508.92,3564.13,26120950,99.69,0,0,0.31,508.64,3564.37,26120951,99.84,0,0,0.16,508.57,3564.4,26120952,99.81,0,0,0.14,508.51,3564.43,26120953,99.67,0,0,0.41,509.08,3563.81,26120954,99.8,0,0,0.29,508.87,3563.97,26120955,99.72,0,0,0.3,508.59,3564.23,26120956,99.83,0,0,0.14,508.55,3564.25,26120957,99.76,0,0,0.21,508.75,3564.02,26120958,99.7,0,0,0.4,509.12,3563.62,26120959,99.81,0,0,0.29,508.89,3563.8,26120960,99.71,0,0,0.27,508.95,3563.72,26120961,99.8,0,0,0.16,508.97,3563.65,26120962,99.75,0,0,0.14,508.95,3563.65,26120963,99.69,0,0,0.31,509.49,3563.09,26120964,99.75,0,0,0.46,507.85,3564.68,26120965,99.71,0,0,0.29,507.81,3564.7,26120966,99.8,0,0,0.14,507.79,3564.65,26120967,99.82,0,0,0.16,507.89,3564.48,26120968,99.8,0,0,0.15,507.83,3564.51,26120969,99.68,0,0,0.59,508.55,3563.75,26120970,99.57,0,0,0.31,508.37,3563.9,26120971,99.7,0,0,0.14,507.9,3564.31,26120972,99.79,0,0,0.15,507.95,3564.2,26120973,99.74,0,0,0.14,508.06,3564.05,26120974,99.56,0,0,0.54,508.83,3563.24,26120975,99.72,0,0,0.27,508.84,3563.2,26120976,99.77,0,0,0.16,508.79,3563.22,26120977,99.8,0,0,0.14,508.85,3563.1,26120978,99.8,0,0,0.15,508.43,3563.46,26120979,99.41,0,0,0.76,508.67,3563,26120980,99.57,0,0,0.27,508.43,3563.19,26120981,99.8,0,0,0.16,508.29,3563.28,26120982,99.81,0,0,0.17,508.21,3563.29,26120983,99.81,0,0,0.16,508.22,3563.24,26120984,99.62,0,0,0.41,508.7,3562.71,26120985,99.66,0,0,0.42,508.48,3562.9,26120986,99.8,0,0,0.15,508.43,3562.92,26120987,99.8,0,0,0.16,508.43,3562.85,26120988,99.8,0,0,0.14,508.28,3562.98,26120989,99.62,0,0,0.49,509.04,3562.17,26120990,99.66,0,0,0.33,508.4,3562.77,26120991,99.83,0,0,0.14,508.36,3562.78,26120992,97.9,0,0,0.14,508.27,3562.81,26120993,99.81,0,0,0.15,508.21,3562.81,26120994,99.63,0,0,0.4,508.45,3562.52,26120995,99.75,0,0,0.42,508.5,3562.45,26120996,99.78,0,0,0.14,508.47,3562.44,26120997,99.76,0,0,0.17,508.45,3562.44,26120998,99.81,0,0,0.14,508.36,3562.47,26120999,99.67,0,0,0.41,508.71,3562.08,26121000,99.56,0,0,0.43,506.84,3563.95,26121001,99.8,0,0,0.14,506.76,3564,26121002,99.8,0,0,0.14,506.72,3564.01,26121003,99.83,0,0,0.16,506.88,3563.8,26121004,99.8,0,0,0.14,507.06,3563.56,26121005,99.38,0,0,0.73,508.07,3562.53,26121006,99.8,0,0,0.18,507.64,3562.92,26121007,99.81,0,0,0.18,507.59,3562.93,26121008,99.8,0,0,0.18,507.52,3562.95,26121009,99.61,0,0,0.31,508.21,3562.18,26121010,99.55,0,0,0.71,508.78,3561.6,26121011,99.82,0,0,0.16,508.35,3562,26121012,99.7,0,0,0.14,508.32,3562.02,26121013,99.72,0,0,0.15,508.26,3562.03,26121014,99.8,0,0,0.14,508.21,3562.05,26121015,99.54,0,0,0.7,508.95,3561.32,26121016,99.83,0,0,0.14,508.64,3561.6,26121017,99.81,0,0,0.2,508.13,3562.09,26121018,99.84,0,0,0.14,508.19,3561.98,26121019,99.81,0,0,0.15,508.17,3561.95,26121020,99.54,0,0,0.68,509.22,3560.88,26121021,99.81,0,0,0.16,508.82,3561.24,26121022,99.81,0,0,0.14,508.73,3561.29,26121023,99.81,0,0,0.16,508.47,3561.52,26121024,99.84,0,0,0.14,508.4,3561.54,26121025,99.55,0,0,0.61,509.13,3560.79,26121026,99.82,0,0,0.22,508.32,3561.57,26121027,99.84,0,0,0.14,508.29,3561.58,26121028,99.8,0,0,0.14,508.25,3561.6,26121029,99.83,0,0,0.15,508.17,3561.61,26121030,99.53,0,0,0.56,509.1,3560.67,26121031,99.75,0.07,0.05,0.34,508.49,3561.24,26121032,99.75,0.09,0.06,0.16,508.43,3561.26,26121033,99.7,0.09,0.06,0.17,508.29,3561.29,26121034,99.83,0.02,0.01,0.17,508.23,3561.26,26121035,99.62,0,0,0.64,508.85,3560.63,26121036,99.83,0,0,0.21,508.65,3560.83,26121037,99.87,0,0,0.14,508.64,3560.83,26121038,99.83,0,0,0.14,508.6,3560.85,26121039,99.79,0,0,0.34,508.8,3560.6,26121040,99.61,0,0,0.71,509.3,3560.11,26121041,99.86,0,0,0.12,509.2,3560.2,26121042,99.86,0,0,0.19,509.15,3560.22,26121043,99.88,0,0,0.17,509.1,3560.23,26121044,99.87,0,0,0.14,509.17,3560.1,26121045,97.56,0,0,0.32,508.51,3560.74,26121046,99.7,0,0,0.6,508.05,3561.16,26121047,99.88,0,0,0.16,507.44,3561.77,26121048,99.84,0,0,0.14,507.38,3561.8,26121049,99.81,0,0,0.16,507.36,3561.8,26121050,99.72,0,0,0.3,507.83,3561.33,26121051,99.8,0,0,0.57,508.7,3560.41,26121052,98.64,0,0,0.13,508.63,3560.46,26121053,99.83,0,0,0.17,508.6,3560.47,26121054,99.87,0,0,0.15,508.57,3560.47,26121055,99.74,0,0,0.3,508.76,3560.26,26121056,99.71,0,0,0.58,508.49,3560.49,26121057,99.88,0,0,0.17,507.67,3561.27,26121058,99.85,0,0,0.15,507.62,3561.29,26121059,99.85,0,0,0.15,507.56,3561.3,26121060,99.54,0,0,0.33,507.06,3561.81,26121061,99.59,0,0,0.61,508.4,3560.45,26121062,99.78,0,0,0.16,508.8,3560.01,26121063,99.89,0,0,0.18,508.95,3559.83,26121064,99.85,0,0,0.16,509,3559.73,26121065,99.81,0,0,0.29,508.74,3560,26121066,99.71,0,0,0.57,509.08,3559.66,26121067,99.9,0,0,0.14,508.67,3560.04,26121068,99.91,0,0,0.15,508.65,3560.04,26121069,99.67,0,0,0.41,508.94,3559.57,26121070,99.77,0,0,0.29,508.67,3559.83,26121071,99.7,0,0,0.41,509.19,3559.29,26121072,99.87,0,0,0.29,508.59,3559.86,26121073,99.89,0,0,0.15,508.66,3559.78,26121074,99.89,0,0,0.14,508.72,3559.72,26121075,99.77,0,0,0.29,508.46,3559.97,26121076,99.7,0,0,0.32,508.82,3559.6,26121077,99.84,0,0,0.42,508.87,3559.52,26121078,99.85,0,0,0.15,508.84,3559.54,26121079,99.9,0,0,0.16,508.97,3559.36,26121080,99.77,0,0,0.31,508.52,3559.8,26121081,99.68,0,0,0.39,508.87,3559.43,26121082,99.91,0,0,0.27,508.93,3559.36,26121083,99.86,0,0,0.15,508.91,3559.37,26121084,99.87,0,0,0.15,508.87,3559.39,26121085,99.7,0,0,0.29,508.51,3559.76,26121086,99.89,0,0,0.16,508.54,3559.72,26121087,99.72,0,0,0.54,509.75,3558.49,26121088,99.86,0,0,0.15,508.95,3559.27,26121089,99.85,0,0,0.15,508.9,3559.29,26121090,99.6,0,0,0.32,508.44,3559.75,26121091,99.89,0,0,0.17,507.86,3560.31,26121092,99.7,0,0,0.55,508.79,3559.36,26121093,99.89,0,0,0.14,508.28,3559.86,26121094,99.85,0,0,0.15,508.26,3559.88,26121095,99.6,0,0,0.31,507.97,3560.14,26121096,99.85,0,0,0.14,508.05,3560.04,26121097,99.63,0,0,0.5,509.13,3558.93,26121098,99.85,0,0,0.19,509.01,3559.01,26121099,99.66,0,0,0.3,508.96,3559.02,26121100,99.63,0,0,0.3,508.7,3559.27,26121101,99.85,0,0.02,0.18,508.61,3559.33,26121102,99.68,0,0,0.41,509.02,3558.9,26121103,99.89,0,0,0.29,508.79,3559.12,26121104,99.91,0,0,0.14,508.75,3559.15,26121105,99.72,0,0,0.3,508.81,3559.1,26121106,99.86,0,0,0.13,508.83,3559.07,26121107,99.71,0,0,0.41,509.32,3558.57,26121108,99.88,0,0,0.29,509.14,3558.73,26121109,99.88,0,0,0.15,509.1,3558.77,26121110,99.75,0,0,0.32,509.09,3558.77,26121111,99.91,0,0,0.14,509.04,3558.8,26121112,99.73,0,0,0.33,509.39,3558.42,26121113,99.88,0,0,0.39,509.21,3558.55,26121114,99.87,0,0,0.14,509.16,3558.58,26121115,99.69,0,0,0.36,508.88,3558.85,26121116,99.82,0,0,0.18,508.83,3558.88,26121117,99.65,0,0,0.34,509.14,3558.54,26121118,99.9,0,0,0.4,508.87,3558.79,26121119,99.9,0,0,0.19,508.9,3558.75,26121120,99.64,0,0,0.29,508.45,3559.16,26121121,99.86,0,0,0.14,508.31,3559.28,26121122,99.9,0,0,0.16,508.29,3559.29,26121123,99.73,0,0,0.59,508.84,3558.73,26121124,99.89,0,0,0.14,508.49,3559.07,26121125,99.78,0,0,0.3,508.94,3558.62,26121126,99.85,0,0,0.14,508.92,3558.61,26121127,99.87,0,0,0.13,508.88,3558.63,26121128,99.76,0,0,0.58,509.02,3558.47,26121129,99.81,0,0,0.29,509.04,3558.43,26121130,99.7,0,0,0.3,509.22,3558.24,26121131,99.9,0,0,0.16,509.18,3558.26,26121132,99.86,0,0,0.15,509.15,3558.27,26121133,99.65,0,0,0.57,509.86,3557.53,26121134,99.83,0,0,0.16,508.74,3558.62,26121135,99.77,0,0,0.33,508.03,3559.31,26121136,99.83,0,0,0.17,508,3559.32,26121137,99.92,0,0,0.19,507.95,3559.35,26121138,99.76,0,0,0.58,508.56,3558.73,26121139,99.85,0,0,0.14,508.38,3558.89,26121140,99.79,0,0,0.34,508.69,3558.58,26121141,99.88,0,0,0.18,508.76,3558.49,26121142,99.81,0,0,0.18,508.71,3558.52,26121143,99.73,0,0,0.43,509.05,3558.16,26121144,99.77,0,0,0.3,508.66,3558.55,26121145,99.73,0,0,0.31,508.41,3558.81,26121146,99.89,0,0,0.16,508.37,3558.83,26121147,99.86,0,0,0.14,508.34,3558.83,26121148,99.6,0,0,0.57,508.67,3558.47,26121149,99.87,0,0,0.18,508.25,3558.87,26121150,99.56,0.01,0,0.3,508.68,3558.19,26121151,99.81,0,0,0.15,508.56,3558.3,26121152,99.74,0,0,0.16,508.58,3558.27,26121153,97.67,0.35,0.01,0.63,510.87,3554.3,26121154,95.96,0,0,260.23,521.28,3546.32,26121155,99.49,0,0,0.3,509.87,3555.49,26121156,99.86,0,0,0.16,509.72,3555.6,26121157,99.81,0,0,0.14,509.9,3555.4,26121158,99.81,0,0,0.16,509.9,3555.39,26121159,99.54,0,0,0.77,509.46,3555.83,26121160,99.68,0,0,0.29,508.78,3556.53,26121161,99.85,0,0,0.16,508.8,3556.47,26121162,99.81,0,0,0.15,508.79,3556.47,26121163,99.87,0,0,0.16,508.75,3556.5,26121164,99.64,0,0,0.58,508.71,3556.55,26121165,99.78,0,0,0.32,508.11,3557.03,26121166,99.81,0,0,0.14,507.94,3557.18,26121167,99.83,0,0,0.16,507.8,3557.3,26121168,99.83,0,0,0.14,507.76,3557.34,26121169,99.68,0,0,0.56,508.47,3556.61,26121170,99.76,0,0,0.36,508.45,3556.62,26121171,99.9,0,0,0.18,508.52,3556.52,26121172,99.87,0,0,0.18,508.59,3556.44,26121173,99.85,0,0,0.18,508.58,3556.44,26121174,99.68,0,0,0.46,509.06,3555.94,26121175,99.7,0,0,0.43,508.52,3556.48,26121176,99.75,0,0,0.16,508.49,3556.5,26121177,99.88,0,0,0.14,508.46,3556.52,26121178,99.85,0,0,0.16,508.43,3556.54,26121179,99.71,0,0,0.52,508.84,3556.11,26121180,99.5,0,0,0.35,507.9,3557.05,26121181,99.84,0,0,0.14,507.84,3557.07,26121182,99.82,0,0,0.16,507.8,3557.09,26121183,99.85,0,0,0.15,507.77,3557.1,26121184,99.74,0,0,0.55,508.63,3556.22,26121185,99.74,0,0,0.32,508.88,3555.97,26121186,99.82,0,0,0.21,508.85,3555.97,26121187,99.83,0,0,0.17,508.82,3555.98,26121188,99.82,0,0,0.19,508.77,3556.01,26121189,99.48,0,0,0.48,508.82,3555.91,26121190,99.61,0,0,0.64,507.71,3556.91,26121191,99.79,0,0,0.2,507.56,3557.03,26121192,99.84,0,0,0.2,507.51,3557.06,26121193,99.88,0,0,0.18,507.48,3557.07,26121194,99.76,0,0,0.2,507.55,3556.99,26121195,99.48,0,0,0.78,508.98,3555.56,26121196,99.87,0,0,0.15,508.8,3555.72,26121197,99.76,0,0,0.25,508.76,3555.74,26121198,99.84,0,0,0.17,508.71,3555.78,26121199,99.84,0,0,0.18,508.68,3555.8,26121200,99.65,0,0,0.71,509.24,3555.22,26121201,99.85,0,0,0.17,508.87,3555.58,26121202,99.81,0,0,0.15,508.84,3555.61,26121203,99.86,0,0,0.18,508.82,3555.61,26121204,99.8,0,0,0.14,508.81,3555.59,26121205,99.63,0,0,0.78,509.3,3555.11,26121206,99.83,0,0,0.15,508.92,3555.48,26121207,99.87,0,0,0.14,508.9,3555.49,26121208,99.84,0,0,0.14,508.87,3555.51,26121209,99.88,0,0,0.15,508.84,3555.52,26121210,99.58,0,0,0.7,509.78,3554.59,26121211,99.88,0,0,0.15,508.8,3555.55,26121212,99.78,0,0,0.17,508.77,3555.58,26121213,99.85,0,0,0.15,508.76,3555.58,26121214,99.86,0,0,0.14,508.72,3555.61,26121215,99.61,0,0,0.67,509.4,3554.95,26121216,99.89,0,0,0.21,508.7,3555.63,26121217,99.88,0,0,0.15,508.79,3555.52,26121218,99.89,0,0,0.14,508.81,3555.48,26121219,99.72,0,0,0.28,508.82,3555.45,26121220,99.56,0,0,0.71,509.35,3554.93,26121221,99.88,0,0,0.15,508.76,3555.52,26121222,99.87,0,0,0.16,508.73,3555.54,26121223,99.88,0,0,0.15,508.7,3555.55,26121224,99.84,0,0,0.16,508.67,3555.58,26121225,99.83,0,0,0.34,508.43,3555.84,26121226,99.73,0,0,0.55,509.46,3554.79,26121227,99.91,0,0,0.14,509.24,3554.98,26121228,99.91,0,0,0.14,509.22,3555,26121229,99.86,0,0,0.15,509.18,3555.01,26121230,99.8,0,0,0.3,508.69,3555.51,26121231,99.76,0,0,0.61,509,3555.18,26121232,99.89,0,0,0.14,508.6,3555.55,26121233,99.89,0,0,0.15,508.58,3555.57,26121234,99.92,0,0,0.16,508.56,3555.58,26121235,99.7,0,0,0.32,509.26,3554.89,26121236,99.78,0,0,0.59,509.22,3554.93,26121237,99.87,0,0,0.2,508.75,3555.39,26121238,99.88,0,0,0.19,508.76,3555.34,26121239,99.89,0,0,0.2,508.83,3555.23,26121240,99.6,0,0,0.36,508.81,3555.26,26121241,99.76,0,0,0.6,509.54,3554.52,26121242,99.9,0,0,0.2,509,3555.05,26121243,99.87,0,0,0.2,508.97,3555.06,26121244,99.86,0,0,0.2,508.93,3555.09,26121245,99.81,0,0,0.36,508.95,3555.09,26121246,99.73,0,0,0.6,509.46,3554.57,26121247,99.87,0,0,0.22,509.13,3554.89,26121248,99.89,0,0,0.17,509.21,3554.79,26121249,99.66,0,0,0.3,508.76,3555.18,26121250,99.7,0,0,0.31,509.25,3554.71,26121251,99.71,0,0,0.46,509.5,3554.44,26121252,99.88,0,0,0.3,508.93,3555.01,26121253,99.89,0,0,0.18,508.92,3555.01,26121254,99.88,0,0,0.16,508.89,3555.07,26121255,99.81,0,0,0.33,507.94,3556.04,26121256,99.77,0,0,0.6,508.32,3555.65,26121257,99.84,0,0,0.23,508.1,3555.84,26121258,99.9,0,0,0.16,508.05,3555.88,26121259,99.88,0,0,0.14,508.04,3555.88,26121260,99.82,0,0,0.27,509.15,3554.77,26121261,99.74,0,0,0.42,509.42,3554.49,26121262,99.86,0,0,0.29,508.4,3555.5,26121263,99.86,0,0,0.14,508.39,3555.51,26121264,99.89,0,0,0.15,508.36,3555.54,26121265,99.58,0,0,0.3,507.88,3556.03,26121266,99.84,0,0,0.14,507.84,3556.06,26121267,99.57,0,0,0.56,509.72,3554.17,26121268,99.8,0,0,0.14,509.27,3554.61,26121269,99.89,0,0,0.15,509.24,3554.63,26121270,99.56,0,0,0.31,509.06,3554.83,26121271,99.83,0,0,0.17,509.07,3554.81,26121272,99.68,0,0,0.57,509.69,3554.19,26121273,99.86,0,0,0.18,509.36,3554.5,26121274,99.88,0,0,0.14,509.34,3554.52,26121275,99.68,0,0,0.29,508.15,3555.72,26121276,99.9,0,0,0.14,508.09,3555.78,26121277,99.59,0,0,0.58,509.4,3554.46,26121278,99.76,0,0,0.15,509.27,3554.58,26121279,99.62,0,0,0.3,509.25,3554.58,26121280,99.75,0,0,0.32,509.23,3554.62,26121281,99.78,0,0,0.18,509.21,3554.63,26121282,99.72,0,0,0.57,509.46,3554.37,26121283,99.86,0,0,0.14,508.36,3555.47,26121284,99.82,0,0,0.14,508.12,3555.76,26121285,99.74,0,0,0.28,509.29,3554.59,26121286,99.81,0,0,0.16,509.3,3554.58,26121287,99.5,0,0,0.59,509.83,3554.03,26121288,99.79,0,0,0.18,509.23,3554.61,26121289,99.8,0,0,0.18,508.88,3554.96,26121290,99.62,0,0,0.34,508.72,3555.14,26121291,99.76,0,0,0.16,508.68,3555.17,26121292,99.68,0,0,0.44,509.02,3554.82,26121293,99.8,0,0,0.29,508.73,3555.1,26121294,99.86,0,0,0.15,508.8,3555.03,26121295,99.77,0,0,0.29,516.55,3547.29,26121296,99.85,0,0,0.2,516.66,3547.17,26121297,99.73,0,0,0.47,516.99,3546.84,26121298,99.83,0,0,0.33,516.61,3547.21,26121299,99.8,0,0,0.18,516.59,3547.23,26121300,99.34,0,0,0.32,516.12,3547.71,26121301,99.73,0,0,0.16,516.08,3547.75,26121302,99.7,0,0,0.6,516.51,3547.32,26121303,99.85,0,0,0.18,516.77,3547.05,26121304,99.83,0,0,0.18,516.76,3547.05,26121305,99.72,0,0,0.29,516.52,3547.29,26121306,99.73,0,0,0.15,516.62,3547.17,26121307,99.82,0,0,0.16,516.62,3547.17,26121308,99.7,0,0,0.56,517.37,3546.41,26121309,99.49,0,0,0.29,515.86,3547.88,26121310,99.62,0,0,0.29,516.3,3547.45,26121311,99.8,0,0,0.16,516.3,3547.45,26121312,99.71,0,0,0.14,516.27,3547.48,26121313,99.72,0,0,0.55,517.16,3546.58,26121314,99.75,0,0,0.15,516.72,3547.02,26121315,99.63,0,0,0.28,516.72,3547.03,26121316,99.79,0,0,0.15,516.69,3547.05,26121317,99.85,0,0,0.21,516.85,3546.88,26121318,99.67,0,0,0.54,517.03,3546.69,26121319,99.81,0,0,0.2,516.54,3547.16,26121320,99.66,0,0,0.28,516.8,3546.92,26121321,99.85,0,0,0.16,516.77,3546.95,26121322,99.77,0,0,0.16,516.73,3546.98,26121323,99.7,0,0,0.58,517.31,3546.38,26121324,99.88,0,0,0.16,517.16,3546.52,26121325,99.67,0,0,0.29,516.44,3547.26,26121326,99.86,0,0,0.16,516.4,3547.29,26121327,99.85,0,0,0.15,516.57,3547.11,26121328,99.72,0,0,0.52,517.04,3546.64,26121329,99.84,0,0,0.2,516.78,3546.9,26121330,99.62,0,0,0.33,516.18,3547.39,26121331,99.78,0,0,0.21,516.81,3546.74,26121332,99.61,0,0,0.17,516.85,3546.69,26121333,99.58,0,0,0.43,517.63,3545.9,26121334,99.81,0,0,0.28,517.03,3546.49,26121335,99.61,0,0,0.33,516.55,3546.99,26121336,99.85,0,0,0.14,516.52,3547.02,26121337,99.84,0,0,0.22,516.57,3546.96,26121338,99.72,0,0,0.44,517.11,3546.42,26121339,99.64,0,0,0.44,516.64,3546.86,26121340,99.61,0,0,0.32,516.89,3546.62,26121341,99.84,0,0,0.18,516.82,3546.68,26121342,99.76,0,0.01,0.2,516.78,3546.69,26121343,99.59,0,0,0.43,517.1,3546.37,26121344,99.83,0,0,0.33,516.96,3546.51,26121345,99.6,0,0,0.34,516.49,3547,26121346,99.83,0,0,0.17,516.45,3547.03,26121347,99.72,0,0,0.15,516.51,3546.96,26121348,99.81,0,0,0.16,516.58,3546.88,26121349,99.64,0,0,0.57,517.57,3545.88,26121350,99.75,0,0,0.28,517.05,3546.42,26121351,99.78,0,0,0.14,517.01,3546.45,26121352,99.82,0,0,0.19,516.99,3546.46,26121353,99.75,0,0,0.18,516.97,3546.48,26121354,99.68,0,0,0.56,517.68,3545.76,26121355,99.72,0,0,0.29,515.75,3547.71,26121356,99.85,0,0,0.16,515.69,3547.76,26121357,99.81,0,0.02,0.23,515.77,3547.67,26121358,99.83,0,0,0.16,515.8,3547.63,26121359,99.73,0,0,0.5,516.69,3546.74,26121360,99.48,0,0,0.34,516.53,3546.91,26121361,99.79,0,0,0.18,516.51,3546.94,26121362,99.79,0,0,0.16,516.48,3546.96,26121363,99.85,0,0,0.17,516.46,3546.97,26121364,99.58,0,0,0.42,517.18,3546.25,26121365,99.67,0,0,0.42,516.21,3547.23,26121366,99.82,0,0,0.16,516.16,3547.27,26121367,99.84,0,0,0.14,516.14,3547.28,26121368,99.8,0,0,0.14,516.1,3547.31,26121369,99.4,0,0,0.93,517.49,3544.93,26121370,99.65,0,0,0.34,517.11,3543.87,26121371,99.88,0,0,0.14,517.03,3543.94,26121372,99.69,0,0,0.16,516.99,3543.97,26121373,99.67,0,0,0.14,516.96,3543.98,26121374,99.64,0,0,0.52,517.1,3543.83,26121375,99.52,0,0,0.49,516.08,3544.77,26121376,99.68,0,0,0.16,516.06,3544.79,26121377,99.7,0,0,0.19,516.03,3544.81,26121378,99.71,0,0,0.15,516.01,3544.82,26121379,99.3,0,0,0.3,516.49,3544.34,26121380,99.58,0,0,0.48,515.88,3544.95,26121381,99.85,0,0,0.16,515.89,3544.94,26121382,99.89,0,0,0.14,515.88,3544.94,26121383,99.6,0,0,0.15,515.85,3544.97,26121384,99.88,0,0,0.15,515.82,3544.99,26121385,99.53,0,0,0.73,516.88,3543.94,26121386,99.83,0,0,0.2,516.54,3544.28,26121387,99.88,0,0,0.18,516.52,3544.29,26121388,99.79,0,0,0.18,516.5,3544.31,26121389,99.84,0,0,0.17,516.48,3544.32,26121390,99.4,0,0,0.79,517.14,3543.68,26121391,99.84,0,0,0.23,516.95,3543.86,26121392,99.73,0,0,0.17,517.06,3543.74,26121393,99.88,0,0,0.14,517.09,3543.71,26121394,99.73,0,0,0.16,517.07,3543.72,26121395,99.57,0,0,0.73,517.06,3543.74,26121396,99.8,0,0,0.14,516.8,3544,26121397,96.83,0.02,0.01,14.39,521.79,3540.19,26121398,99.85,0,0,64.25,519.65,3539.76,26121399,99.64,0,0,0.32,519.95,3539.43,26121400,99.52,0,0,0.71,519.62,3539.79,26121401,99.81,0,0,0.21,519.43,3539.97,26121402,99.8,0,0,0.2,519.28,3540.11,26121403,99.88,0,0,0.2,517.47,3541.97,26121404,99.78,0,0,0.18,517.45,3541.98,26121405,99.47,0,0,0.74,518.07,3541.38,26121406,99.9,0,0,0.17,517.42,3542.02,26121407,99.79,0,0,0.14,517.39,3542.04,26121408,99.8,0,0,0.18,517.38,3542.06,26121409,99.83,0,0,0.16,517.5,3541.93,26121410,99.58,0,0,0.72,517.77,3541.71,26121411,99.83,0,0,0.14,516.78,3542.71,26121412,99.88,0,0,0.16,516.75,3542.73,26121413,99.77,0,0,0.14,516.74,3542.74,26121414,99.85,0,0,0.14,516.7,3542.76,26121415,99.51,0,0,0.51,517.63,3541.85,26121416,95.35,0,0,0.39,517.17,3542.3,26121417,99.84,0,0,0.13,517.15,3542.31,26121418,99.83,0,0,0.17,517.12,3542.33,26121419,99.77,0,0,0.14,517.11,3542.34,26121420,99.37,0,0,0.28,516.74,3542.73,26121421,99.42,0,0,0.57,517.79,3541.68,26121422,99.73,0,0,0.14,517.5,3541.96,26121423,99.84,0,0,0.15,517.49,3541.97,26121424,99.78,0,0,0.15,517.45,3542,26121425,99.59,0,0,0.31,516.58,3542.87,26121426,99.65,0,0,0.56,516.79,3542.66,26121427,99.79,0,0,0.16,516.42,3543.02,26121428,99.77,0,0,0.14,516.38,3543.04,26121429,99.61,0,0,0.3,516.85,3542.55,26121430,99.61,0,0,0.3,515.43,3543.98,26121431,99.65,0,0,0.6,516.59,3542.82,26121432,99.68,0,0,0.18,516.14,3543.26,26121433,99.8,0,0,0.18,516.23,3543.14,26121434,99.77,0,0,0.18,516.19,3543.18,26121435,99.69,0,0,0.35,517.42,3541.97,26121436,99.6,0,0,0.61,517.88,3541.5,26121437,99.69,0,0,0.22,517.63,3541.74,26121438,99.79,0,0,0.15,517.6,3541.76,26121439,99.8,0,0,0.14,517.6,3541.76,26121440,99.64,0,0,0.3,517.34,3542.03,26121441,99.6,0,0,0.58,517.69,3541.68,26121442,99.63,0,0,0.15,517.3,3542.07,26121443,99.79,0,0,0.14,517.29,3542.07,26121444,99.8,0,0,0.14,516.83,3542.53,26121445,99.7,0,0,0.3,516.95,3542.43,26121446,99.63,0,0,0.62,517.29,3542.08,26121447,99.81,0,0,0.16,516.91,3542.46,26121448,99.69,0,0,0.14,516.89,3542.47,26121449,99.73,0,0,0.14,516.87,3542.49,26121450,99.64,0,0,0.31,516.88,3542.5,26121451,99.58,0,0,0.48,517.27,3542.08,26121452,99.76,0,0,0.3,516.57,3542.78,26121453,99.8,0,0,0.16,516.54,3542.8,26121454,99.78,0,0,0.15,516.53,3542.81,26121455,99.57,0,0,0.3,516.28,3543.07,26121456,99.8,0,0,0.16,516.36,3542.97,26121457,99.65,0,0,0.57,516.5,3542.82,26121458,99.71,0,0,0.16,516.13,3543.18,26121459,99.49,0,0,0.28,516.85,3542.44,26121460,99.64,0,0,0.29,517.11,3542.19,26121461,99.79,0,0,0.14,517.06,3542.24,26121462,99.59,0,0,0.56,517.14,3542.15,26121463,99.69,0,0,0.14,516.77,3542.52,26121464,99.71,0,0,0.14,516.74,3542.55,26121465,99.47,0,0,0.29,515.08,3544.22,26121466,99.75,0,0,0.16,514.99,3544.3,26121467,99.58,0,0,0.56,516.24,3543.05,26121468,99.8,0,0,0.15,515.86,3543.43,26121469,99.77,0,0,0.15,515.83,3543.45,26121470,99.66,0,0,0.32,516.31,3542.98,26121471,99.81,0,0,0.14,516.29,3543,26121472,99.61,0,0,0.55,517.11,3542.17,26121473,99.8,0,0,0.16,516.99,3542.29,26121474,99.78,0,0,0.15,516.97,3542.3,26121475,99.69,0,0,0.3,516.96,3542.33,26121476,99.78,0,0,0.16,517.07,3542.21,26121477,99.62,0,0,0.55,517.48,3541.79,26121478,99.82,0,0,0.14,517.11,3542.16,26121479,99.76,0,0,0.14,517.09,3542.18,26121480,99.61,0,0,0.29,516.85,3542.44,26121481,99.76,0,0,0.17,516.83,3542.45,26121482,99.65,0,0,0.52,517.28,3542,26121483,99.75,0,0,0.2,516.54,3542.73,26121484,99.76,0,0,0.14,516.52,3542.75,26121485,99.65,0,0,0.32,516.53,3542.75,26121486,99.77,0,0,0.16,516.5,3542.78,26121487,99.64,0,0,0.55,516.97,3542.3,26121488,99.77,0,0,0.15,517.12,3542.15,26121489,99.5,0,0.01,0.32,517.34,3541.9,26121490,99.7,0,0,0.32,517.07,3542.19,26121491,99.81,0,0,0.14,517.03,3542.23,26121492,99.57,0,0,0.57,517.45,3541.8,26121493,99.63,0,0,0.14,517.23,3542.02,26121494,99.77,0,0,0.14,517.21,3542.03,26121495,99.43,0,0,0.33,516.12,3543.13,26121496,99.71,0,0,0.14,516.13,3543.12,26121497,99.65,0,0,0.45,516.96,3542.28,26121498,99.7,0,0,0.3,516.07,3543.16,26121499,99.77,0,0,0.16,516.04,3543.18,26121500,99.61,0,0,0.29,517.24,3542,26121501,99.75,0,0,0.16,517.25,3541.98,26121502,99.78,0,0,0.14,517.23,3542,26121503,99.6,0,0,0.55,516.85,3542.37,26121504,99.8,0,0,0.14,516.46,3542.75,26121505,99.61,0,0,0.3,516.93,3542.3,26121506,99.82,0,0,0.17,516.94,3542.31,26121507,99.8,0,0,0.18,516.97,3542.27,26121508,99.63,0,0,0.59,517.43,3541.8,26121509,99.78,0,0,0.19,517.02,3542.19,26121510,99.53,0,0,0.34,516.29,3542.94,26121511,99.76,0,0,0.21,516.07,3543.16,26121512,99.75,0,0,0.18,515.99,3543.23,26121513,99.64,0,0.01,0.63,517.47,3541.75,26121514,99.73,0,0,0.15,516.91,3542.31,26121515,99.59,0,0,0.33,515.94,3543.29,26121516,99.81,0,0,0.16,516.02,3543.2,26121517,99.74,0.01,0.61,0.21,515.98,3543.16,26121518,96.5,0.02,0.01,79.07,528.22,3532.67,26121519,99.41,0,0,0.46,519.79,3539.12,26121520,99.59,0,0,0.32,518.85,3540.09,26121521,99.75,0,0,0.18,518.78,3540.15,26121522,99.76,0,0,0.16,518.77,3540.15,26121523,99.65,0,0,0.62,518.26,3540.67,26121524,99.82,0,0,0.18,516.76,3542.19,26121525,99.68,0,0,0.32,517.71,3541.25,26121526,99.83,0,0,0.18,517.73,3541.24,26121527,99.77,0,0,0.16,517.7,3541.26,26121528,99.57,0,0,0.56,517.93,3541.02,26121529,96.85,0,0,0.17,517.41,3541.53,26121530,99.68,0,0,0.32,517.42,3541.54,26121531,99.76,0,0,0.17,517.39,3541.57,26121532,99.76,0,0,0.17,517.38,3541.58,26121533,99.56,0,0,0.45,517.7,3541.25,26121534,99.7,0,0,0.34,517.34,3541.61,26121535,99.68,0,0,0.38,517.48,3541.48,26121536,99.79,0,0,0.16,517.52,3541.44,26121537,99.77,0,0,0.21,517.5,3541.45,26121538,99.69,0,0,0.43,517.96,3540.99,26121539,99.79,0,0,0.33,517.19,3541.76,26121540,99.54,0,0,0.32,517.45,3541.51,26121541,99.76,0,0,0.18,517.41,3541.55,26121542,99.81,0,0,0.16,517.41,3541.55,26121543,99.76,0,0,0.17,517.38,3541.57,26121544,99.55,0,0,0.63,517.72,3541.22,26121545,99.67,0,0,0.33,517.48,3541.47,26121546,99.8,0,0,0.17,517.51,3541.44,26121547,99.82,0,0,0.19,517.49,3541.45,26121548,99.8,0,0,0.16,517.45,3541.48,26121549,99.45,0,0,0.72,517.75,3541.16,26121550,99.59,0,0,0.37,516.46,3542.47,26121551,99.78,0,0,0.2,516.41,3542.51,26121552,99.8,0,0,0.2,516.38,3542.54,26121553,99.81,0,0,0.2,516.36,3542.55,26121554,99.67,0,0,0.59,517.44,3541.48,26121555,99.69,0,0,0.32,517.52,3541.42,26121556,99.83,0,0,0.18,517.49,3541.44,26121557,99.81,0,0,0.22,517.48,3541.45,26121558,99.79,0,0,0.17,517.45,3541.47,26121559,99.63,0,0,0.57,518.27,3540.64,26121560,99.58,0,0,0.32,516.51,3542.43,26121561,99.76,0,0,0.17,516.43,3542.5,26121562,99.76,0,0,0.18,516.4,3542.52,26121563,99.73,0,0,0.18,516.39,3542.53,26121564,99.61,0,0,0.63,516.74,3542.17,26121565,99.49,0,0,0.39,516.37,3542.56,26121566,99.78,0,0,0.17,516.43,3542.5,26121567,99.77,0,0,0.21,516.5,3542.42,26121568,99.77,0,0,0.16,516.48,3542.44,26121569,99.67,0,0,0.62,517.19,3541.72,26121570,99.66,0,0,0.32,517.45,3541.48,26121571,99.76,0.01,0.01,0.21,517.2,3541.73,26121572,99.75,0,0,0.16,517.09,3541.84,26121573,99.71,0,0,0.17,517.12,3541.81,26121574,99.65,0,0,0.43,517.71,3541.22,26121575,99.65,0,0,0.48,517.49,3541.46,26121576,99.8,0,0,0.17,517.46,3541.49,26121577,99.75,0,0,0.18,517.44,3541.5,26121578,99.76,0,0,0.16,517.42,3541.52,26121579,99.51,0,0,0.47,518.08,3540.83,26121580,99.65,0,0,0.6,517.64,3541.29,26121581,99.75,0,0,0.17,517.62,3541.3,26121582,99.74,0,0,0.17,517.6,3541.32,26121583,99.79,0,0,0.17,517.58,3541.33,26121584,99.79,0,0,0.16,517.56,3541.35,26121585,99.47,0,0,0.73,517.01,3541.92,26121586,99.74,0,0,0.18,516.49,3542.44,26121587,99.76,0,0,0.19,516.48,3542.44,26121588,99.8,0,0,0.19,516.45,3542.47,26121589,99.81,0,0,0.19,516.43,3542.48,26121590,99.42,0,0,0.77,517.58,3541.34,26121591,99.76,0,0,0.16,517.39,3541.54,26121592,99.89,0,0,0.17,517.37,3541.55,26121593,99.89,0,0,0.17,517.35,3541.57,26121594,99.84,0,0,0.17,517.33,3541.58,26121595,99.59,0,0,0.75,517.46,3541.47,26121596,99.82,0,0,0.15,516.82,3542.1,26121597,99.81,0,0,0.19,513.9,3545.02,26121598,99.87,0,0,0.16,513.77,3545.14,26121599,99.9,0,0,0.17,513.77,3545.14,26121600,99.26,0,0,0.73,514.46,3544.46,26121601,99.8,0,0,0.18,513.99,3544.93,26121602,99.84,0,0,0.15,513.96,3544.96,26121603,99.89,0,0,0.17,513.95,3544.96,26121604,99.82,0,0,0.18,513.92,3544.98,26121605,99.61,0,0,0.76,514.92,3543.99,26121606,99.85,0,0,0.16,514.39,3544.52,26121607,99.9,0,0,0.17,514.38,3544.53,26121608,99.84,0,0,0.17,514.35,3544.55,26121609,99.6,0,0,0.3,514.58,3544.3,26121610,99.53,0,0,0.74,515.08,3543.82,26121611,99.9,0,0,0.2,515.03,3543.87,26121612,99.8,0.01,0.01,0.24,515,3543.89,26121613,99.84,0,0,0.19,514.95,3543.93,26121614,99.82,0,0,0.18,514.93,3543.96,26121615,99.45,0,0,0.62,514.63,3544.28,26121616,99.8,0,0,0.32,514.16,3544.75,26121617,99.85,0,0,0.21,514.14,3544.76,26121618,99.79,0,0,0.2,514.12,3544.78,26121619,99.87,0,0,0.18,514.22,3544.67,26121620,99.54,0,0,0.52,514.66,3544.26,26121621,99.83,0,0,0.43,514.51,3544.39,26121622,99.88,0,0,0.17,514.49,3544.41,26121623,99.83,0,0,0.18,514.46,3544.43,26121624,99.85,0,0,0.17,514.45,3544.44,26121625,99.61,0,0,0.48,515.04,3543.87,26121626,99.86,0,0,0.42,514.92,3543.99,26121627,99.87,0,0,0.17,514.89,3544.01,26121628,99.88,0,0,0.17,514.86,3544.03,26121629,99.88,0,0,0.18,514.84,3544.04,26121630,99.68,0,0,0.32,514.71,3544.19,26121631,99.69,0,0,0.65,514.74,3544.16,26121632,99.85,0,0,0.2,514.24,3544.65,26121633,99.79,0,0,0.18,514.22,3544.68,26121634,99.84,0,0,0.16,514.2,3544.7,26121635,99.4,0,0,0.37,514.92,3544,26121636,99.55,0,0,0.59,515.11,3543.8,26121637,99.75,0,0,0.2,514.64,3544.26,26121638,99.83,0,0,0.2,514.63,3544.28,26121639,99.72,0,0,0.33,514.85,3544.04,26121640,99.73,0,0.01,0.39,514.61,3544.29,26121641,99.67,0,0,0.59,515.36,3543.54,26121642,99.85,0,0,0.17,514.72,3544.17,26121643,99.84,0,0,0.2,514.7,3544.19,26121644,99.88,0,0,0.18,514.68,3544.22,26121645,99.66,0,0,0.35,514.68,3544.24,26121646,99.75,0,0,0.42,515.09,3543.83,26121647,99.72,0,0,0.3,514.88,3544.03,26121648,99.76,0,0,0.18,514.86,3544.04,26121649,99.86,0,0,0.16,514.84,3544.06,26121650,96.72,0,0,0.3,514.85,3544.07,26121651,99.47,0,0,0.46,515.19,3543.72,26121652,99.86,0,0,0.34,514.89,3544.01,26121653,99.82,0,0,0.2,514.97,3543.93,26121654,99.9,0,0,0.2,514.95,3543.95,26121655,99.72,0,0,0.32,514.7,3544.21,26121656,99.67,0,0,0.42,515.08,3543.83,26121657,99.81,0,0,0.33,514.91,3544,26121658,98.76,0,0,0.18,514.89,3544.01,26121659,99.89,0,0,0.18,514.87,3544.03,26121660,99.46,0,0,0.31,513.7,3545.21,26121661,99.86,0,0,0.17,513.62,3545.29,26121662,99.56,0,0,0.57,515.1,3543.8,26121663,99.89,0,0,0.18,514.32,3544.58,26121664,99.83,0,0,0.17,514.4,3544.49,26121665,99.69,0,0,0.34,514.96,3543.95,26121666,99.89,0,0,0.17,514.96,3543.95,26121667,99.67,0,0,0.6,515.63,3543.27,26121668,99.86,0,0,0.16,514.92,3543.98,26121669,99.62,0,0,0.31,514.89,3543.98,26121670,99.74,0,0,0.3,514.9,3543.99,26121671,99.91,0,0,0.17,514.87,3544.02,26121672,99.75,0,0,0.58,515.59,3543.29,26121673,99.91,0,0,0.18,515.07,3543.81,26121674,99.91,0,0,0.16,515.04,3543.86,26121675,99.74,0,0,0.33,514.57,3544.35,26121676,99.86,0,0,0.18,514.7,3544.21,26121677,99.75,0,0,0.61,514.88,3544.03,26121678,99.94,0,0,0.16,514.19,3544.72,26121679,99.91,0,0,0.2,514.17,3544.73,26121680,99.73,0,0,0.34,513.92,3544.99,26121681,99.87,0,0,0.2,513.9,3545.01,26121682,99.73,0,0,0.59,514.59,3544.31,26121683,99.9,0,0,0.16,514.6,3544.3,26121684,99.88,0,0,0.21,514.58,3544.32,26121685,99.67,0,0.01,0.38,514.81,3544.11,26121686,99.91,0,0,0.2,514.8,3544.12,26121687,99.7,0,0,0.48,515.4,3543.5,26121688,99.85,0,0,0.3,515.21,3543.69,26121689,99.89,0,0,0.16,515.18,3543.71,26121690,99.69,0,0,0.34,515.25,3543.66,26121691,99.74,0,0,0.2,515,3543.91,26121692,99.67,0,0,0.45,515.45,3543.45,26121693,99.86,0,0,0.32,515.09,3543.8,26121694,99.86,0,0,0.16,515.08,3543.81,26121695,99.6,0,0,0.38,514.13,3544.78,26121696,99.9,0,0,0.16,514.08,3544.82,26121697,99.88,0,0,0.2,514.15,3544.75,26121698,99.69,0.01,0.01,0.58,515.22,3543.67,26121699,99.72,0,0,0.3,515.1,3543.77,26121700,99.77,0,0,0.32,514.86,3544.03,26121701,99.9,0,0,0.17,514.83,3544.05,26121702,99.88,0,0,0.18,514.81,3544.07,26121703,99.65,0,0,0.57,515.61,3543.26,26121704,99.87,0,0,0.17,515.17,3543.71,26121705,99.67,0,0,0.38,515.45,3543.45,26121706,99.87,0,0,0.2,515.43,3543.47,26121707,99.83,0,0,0.2,515.42,3543.47,26121708,99.65,0,0,0.57,515.86,3543.02,26121709,99.88,0,0,0.17,515.12,3543.76,26121710,99.75,0,0,0.33,515.12,3543.77,26121711,99.79,0,0,0.16,515.1,3543.8,26121712,99.45,0,0,0.17,515.08,3543.81,26121713,99.71,0,0,0.58,515.27,3543.61,26121714,99.86,0,0,0.22,514.79,3544.09,26121715,99.76,0,0,0.39,514.8,3544.1,26121716,99.85,0,0,0.2,514.9,3544,26121717,99.9,0,0,0.16,514.94,3543.95,26121718,99.78,0,0,0.59,515.38,3543.5,26121719,99.22,0,0,0.18,515.15,3543.73,26121720,99.58,0,0,0.33,515.65,3543.25,26121721,99.82,0,0,0.18,515.62,3543.27,26121722,99.8,0,0,0.16,515.61,3543.29,26121723,99.67,0,0,0.56,515.72,3543.17,26121724,99.79,0,0,0.15,515.07,3543.81,26121725,99.63,0,0,0.35,514.63,3544.27,26121726,99.85,0,0,0.14,514.55,3544.35,26121727,99.76,0,0,0.15,514.62,3544.27,26121728,99.7,0,0,0.41,515.18,3543.7,26121729,99.62,0,0,0.44,515.39,3543.46,26121730,99.67,0,0,0.32,515.4,3543.48,26121731,99.78,0,0,0.16,515.37,3543.5,26121732,99.85,0,0,0.15,515.33,3543.53,26121733,99.72,0,0,0.41,515.75,3543.11,26121734,99.85,0,0,0.29,515.3,3543.55,26121735,99.73,0,0,0.3,515.3,3543.58,26121736,99.86,0,0,0.15,515.28,3543.59,26121737,99.8,0,0,0.21,515.33,3543.53,26121738,99.75,0,0,0.36,515.77,3543.09,26121739,99.84,0,0,0.37,515.4,3543.45,26121740,99.76,0,0,0.3,515.4,3543.47,26121741,99.86,0,0,0.16,515.38,3543.48,26121742,99.83,0,0,0.15,515.36,3543.5,26121743,99.89,0,0,0.18,515.32,3543.53,26121744,99.68,0,0,0.59,515.66,3543.19,26121745,99.77,0,0,0.3,515.08,3543.81,26121746,99.88,0,0,0.15,515.05,3543.84,26121747,99.85,0,0,0.15,515.03,3543.86,26121748,99.86,0,0,0.16,515.01,3543.87,26121749,99.69,0,0,0.57,515.98,3542.9,26121750,99.71,0,0,0.33,515.43,3543.46,26121751,99.83,0,0,0.18,515.24,3543.64,26121752,99.78,0,0,0.14,515.12,3543.76,26121753,99.84,0,0,0.18,515.1,3543.78,26121754,99.73,0,0,0.58,515.43,3543.44,26121755,99.69,0,0,0.34,515.56,3543.32,26121756,99.88,0,0,0.14,515.55,3543.33,26121757,99.82,0,0,0.16,515.53,3543.35,26121758,99.92,0,0,0.14,515.5,3543.37,26121759,99.59,0,0,0.67,515.55,3543.29,26121760,99.7,0.02,0.07,0.38,515.14,3543.69,26121761,99.88,0,0,0.21,514.98,3543.75,26121762,99.84,0,0,0.18,514.96,3543.76,26121763,99.91,0,0,0.14,514.93,3543.79,26121764,99.73,0,0,0.56,515.72,3543.02,26121765,99.7,0,0,0.3,515.43,3543.32,26121766,99.87,0,0,0.16,515.4,3543.35,26121767,99.82,0,0,0.14,515.47,3543.28,26121768,99.83,0,0,0.16,515.55,3543.19,26121769,99.73,0,0,0.57,515.88,3542.86,26121770,99.73,0,0,0.37,515.49,3543.25,26121771,99.88,0,0,0.14,515.47,3543.26,26121772,99.86,0,0,0.16,515.44,3543.29,26121773,99.88,0,0.01,0.14,515.41,3543.31,26121774,99.75,0,0,0.42,514.91,3543.8,26121775,99.79,0,0,0.43,514.65,3544.09,26121776,99.88,0,0,0.17,514.63,3544.11,26121777,99.87,0,0,0.14,514.78,3543.94,26121778,99.88,0,0,0.16,514.76,3543.96,26121779,99.75,0,0,0.32,515.43,3543.29,26121780,98.44,0,0,0.57,513.53,3545.2,26121781,99.76,0,0,0.18,513.4,3545.32,26121782,99.88,0,0,0.18,513.22,3545.5,26121783,99.89,0,0,0.18,513.2,3545.51,26121784,99.84,0,0,0.18,513.18,3545.53,26121785,99.53,0,0,0.71,515.03,3543.7,26121786,99.89,0,0,0.14,514.65,3544.07,26121787,99.9,0,0,0.16,514.63,3544.09,26121788,99.83,0,0,0.14,514.61,3544.1,26121789,99.8,0,0,0.29,514.79,3543.9,26121790,99.59,0,0,0.7,515.4,3543.3,26121791,99.88,0,0,0.13,514.99,3543.71,26121792,99.81,0,0,0.16,514.97,3543.73,26121793,99.88,0,0,0.14,514.94,3543.75,26121794,99.83,0,0,0.14,514.93,3543.78,26121795,99.56,0,0,0.77,515.36,3543.36,26121796,99.82,0,0,0.16,514.64,3544.07,26121797,99.86,0,0,0.19,514.62,3544.09,26121798,99.91,0,0,0.15,514.6,3544.11,26121799,99.77,0,0,0.13,514.68,3544.02,26121800,99.5,0,0,0.67,515.36,3543.36,26121801,99.87,0,0,0.21,515,3543.71,26121802,99.85,0,0,0.14,514.98,3543.73,26121803,99.75,0,0,0.14,514.96,3543.75,26121804,99.88,0,0,0.15,514.93,3543.77,26121805,99.48,0,0,0.61,515.28,3543.44,26121806,99.86,0,0,0.32,514.9,3543.81,26121807,99.88,0,0,0.15,514.87,3543.84,26121808,99.85,0,0,0.14,514.86,3543.85,26121809,99.87,0,0,0.14,514.83,3543.87,26121810,99.55,0,0,0.54,515.05,3543.66,26121811,99.88,0,0,0.33,514.49,3544.22,26121812,99.9,0,0,0.14,514.24,3544.47,26121813,99.79,0,0,0.16,514.22,3544.48,26121814,99.48,0,0,0.25,515.23,3543.47,26121815,99.5,0,0,0.6,515.3,3543.41,26121816,99.86,0,0,0.29,514.9,3543.8,26121817,99.88,0,0,0.16,514.89,3543.81,26121818,99.82,0,0,0.14,514.87,3543.83,26121819,99.83,0,0,0.31,514.85,3543.82,26121820,99.54,0,0,0.66,514.84,3543.85,26121821,99.9,0,0,0.21,514.83,3543.86,26121822,99.83,0,0,0.14,515,3543.67,26121823,99.88,0,0,0.15,515,3543.67,26121824,99.84,0,0,0.14,514.97,3543.73,26121825,99.6,0,0,0.49,515.57,3543.14,26121826,99.79,0,0,0.38,514.95,3543.76,26121827,99.83,0,0,0.16,514.93,3543.78,26121828,99.82,0,0,0.14,514.91,3543.8,26121829,99.85,0,0,0.17,515.08,3543.62,26121830,99.78,0,0,0.31,515.12,3543.59,26121831,99.75,0,0,0.55,514.75,3543.96,26121832,99.88,0,0,0.14,514.18,3544.52,26121833,99.88,0,0,0.16,514.26,3544.44,26121834,99.81,0,0,0.14,514.24,3544.46,26121835,99.74,0,0,0.3,514.97,3543.74,26121836,99.68,0,0,0.56,515.31,3543.41,26121837,99.86,0,0,0.14,514.93,3543.78,26121838,99.88,0,0,0.16,514.91,3543.79,26121839,99.86,0,0,0.14,514.88,3543.82,26121840,99.49,0,0,0.3,513.91,3544.81,26121841,99.67,0,0,0.57,515.2,3543.51,26121842,99.82,0,0,0.16,515.33,3543.38,26121843,99.83,0,0,0.15,515.49,3543.21,26121844,99.83,0,0,0.15,515.47,3543.23,26121845,99.61,0,0,0.32,515.23,3543.48,26121846,99.64,0,0,0.57,515.44,3543.27,26121847,99.81,0,0,0.18,514.94,3543.76,26121848,99.75,0,0,0.15,514.91,3543.79,26121849,99.74,0,0,0.32,515.19,3543.48,26121850,99.73,0,0,0.32,514.9,3543.79,26121851,99.7,0,0,0.56,515.61,3543.08,26121852,99.87,0.03,0.7,0.24,515.01,3543.37,26121853,99.85,0,0,0.14,514.96,3543.32,26121854,99.78,0,0,0.16,514.94,3543.34,26121855,99.51,0,0,0.35,513.29,3545,26121856,99.71,0,0,0.56,514.01,3544.28,26121857,99.79,0,0,0.18,514.83,3543.44,26121858,99.86,0,0,0.15,514.81,3543.47,26121859,99.83,0,0,0.16,514.78,3543.49,26121860,99.46,0,0,0.32,514.55,3543.74,26121861,99.87,0,0,0.15,514.52,3543.77,26121862,99.68,0,0,0.58,515.34,3542.94,26121863,99.88,0,0,0.18,514.97,3543.31,26121864,99.88,0,0,0.19,514.95,3543.32,26121865,99.66,0,0,0.33,514.47,3543.82,26121866,99.87,0,0,0.13,514.52,3543.78,26121867,99.71,0,0,0.64,515.41,3542.89,26121868,99.79,0,0,0.14,515.04,3543.25,26121869,99.88,0,0,0.14,515.02,3543.27,26121870,99.71,0,0,0.3,514.76,3543.54,26121871,99.87,0,0,0.18,514.62,3543.68,26121872,99.73,0,0,0.56,515.43,3542.87,26121873,99.86,0,0,0.14,515.18,3543.11,26121874,99.86,0,0,0.15,515.15,3543.13,26121875,99.76,0,0,0.31,515.28,3543.03,26121876,99.88,0,0,0.14,515.31,3542.99,26121877,99.72,0,0,0.56,515.64,3542.66,26121878,99.87,0,0,0.15,515.26,3543.03,26121879,99.7,0,0,0.29,515.46,3542.81,26121880,99.71,0,0,0.32,515.23,3543.06,26121881,99.84,0,0,0.14,515.19,3543.09,26121882,94.92,0.33,0.01,79.15,527.63,3530.9,26121883,99.73,0,0,181.38,516.91,3540.99,26121884,99.8,0,0,0.16,516.89,3541.02,26121885,99.51,0,0,0.32,517.17,3540.75,26121886,99.85,0,0,0.17,517.08,3540.83,26121887,99.65,0,0,0.61,516.87,3541.05,26121888,99.86,0,0,0.16,515.35,3542.59,26121889,99.88,0,0,0.15,515.44,3542.49,26121890,99.56,0,0,0.36,515.74,3542.2,26121891,99.85,0,0,0.14,515.72,3542.22,26121892,99.65,0,0,0.42,516,3541.95,26121893,99.83,0,0,0.32,515.17,3542.79,26121894,99.88,0,0,0.14,515.15,3542.81,26121895,99.63,0,0,0.32,515.63,3542.35,26121896,99.81,0,0,0.16,515.61,3542.36,26121897,99.57,0,0,0.43,516.01,3541.96,26121898,99.85,0,0,0.28,515.49,3542.48,26121899,99.76,0,0,0.2,515.46,3542.5,26121900,97.71,0,0,13.07,514.61,3540.89,26121901,99.72,0,0,0.18,514.54,3540.91,26121902,99.71,0,0,0.16,514.5,3540.94,26121903,99.46,0,0,0.59,516.14,3539.29,26121904,99.7,0,0,0.2,515.44,3539.98,26121905,99.47,0,0,0.38,515.44,3540.02,26121906,99.73,0,0,0.17,515.58,3539.89,26121907,99.78,0,0,0.2,515.58,3539.88,26121908,99.69,0,0,0.61,516.03,3539.42,26121909,99.69,0,0,0.28,515.54,3539.89,26121910,99.71,0,0,0.33,515.54,3539.91,26121911,99.82,0,0,0.18,515.5,3539.94,26121912,99.82,0,0,0.15,515.48,3539.96,26121913,99.68,0,0,0.57,515.81,3539.63,26121914,99.84,0,0,0.16,515.43,3540.02,26121915,99.51,0,0,0.35,514.89,3540.58,26121916,99.81,0,0,0.17,514.88,3540.58,26121917,99.83,0,0,0.19,514.85,3540.61,26121918,99.74,0,0,0.58,515.33,3540.12,26121919,99.81,0,0,0.17,514.32,3541.13,26121920,99.68,0,0,0.33,514.29,3541.18,26121921,99.87,0,0,0.17,514.27,3541.19,26121922,99.85,0,0,0.18,514.26,3541.2,26121923,99.74,0,0,0.58,514.69,3540.76,26121924,99.82,0,0,0.18,514.56,3540.89,26121925,99.78,0,0,0.33,514.88,3540.59,26121926,99.8,0,0,0.17,514.86,3540.6,26121927,99.87,0,0,0.18,514.85,3540.61,26121928,99.75,0,0,0.56,515.18,3540.28,26121929,99.83,0,0,0.19,514.81,3540.64,26121930,99.49,0,0,0.34,514.56,3540.91,26121931,99.8,0,0,0.24,514.43,3541.03,26121932,99.78,0,0,0.17,514.26,3541.21,26121933,99.58,0,0,0.49,514.89,3540.57,26121934,99.8,0,0,0.3,514.22,3541.24,26121935,99.7,0,0,0.34,514.72,3540.76,26121936,99.88,0,0,0.19,514.81,3540.66,26121937,99.83,0,0,0.18,514.87,3540.6,26121938,99.83,0,0,0.16,514.84,3540.63,26121939,99.48,0,0,0.7,515.29,3540.14,26121940,99.6,0,0,0.33,515.16,3540.3,26121941,99.83,0,0,0.14,515.05,3540.4,26121942,99.85,0,0,0.17,515.02,3540.43,26121943,99.87,0,0,0.15,515,3540.44,26121944,99.68,0,0,0.58,515.13,3540.3,26121945,99.65,0,0,0.34,514.97,3540.47,26121946,99.82,0,0,0.14,514.95,3540.49,26121947,99.8,0,0,0.16,514.93,3540.51,26121948,99.85,0,0,0.15,515.09,3540.34,26121949,99.7,0,0,0.64,515.24,3540.19,26121950,99.67,0,0,0.34,514.82,3540.63,26121951,99.87,0,0,0.17,514.8,3540.64,26121952,99.78,0,0,0.14,514.77,3540.67,26121953,98.14,0,0,0.18,514.76,3540.68,26121954,99.74,0,0,0.57,515.22,3540.21,26121955,99.66,0,0,0.32,514.97,3540.48,26121956,99.81,0,0,0.16,514.96,3540.49,26121957,99.87,0,0,0.16,514.94,3540.51,26121958,99.76,0,0,0.15,515.01,3540.43,26121959,99.68,0,0,0.43,515.35,3540.09,26121960,99.53,0,0,0.46,514.46,3540.85,26121961,98.55,0,0,0.16,514.43,3540.87,26121962,99.75,0,0,0.16,514.41,3540.89,26121963,99.79,0,0,0.15,514.38,3540.92,26121964,99.68,0,0,0.45,515.19,3540.1,26121965,99.73,0,0,0.43,514.85,3540.46,26121966,99.78,0,0,0.15,514.83,3540.48,26121967,99.8,0,0,0.14,514.81,3540.49,26121968,99.75,0,0,0.15,514.8,3540.49,26121969,99.42,0,0,0.45,515.43,3539.84,26121970,99.63,0,0,0.47,515.2,3540.08,26121971,99.84,0,0,0.16,515.18,3540.11,26121972,99.85,0,0,0.15,515.16,3540.12,26121973,99.79,0,0,0.16,515.14,3540.14,26121974,99.67,0,0,0.15,515.12,3540.16,26121975,99.41,0,0,0.68,515.31,3539.99,26121976,99.68,0,0,0.16,514.85,3540.45,26121977,99.65,0,0,0.23,514.83,3540.46,26121978,99.78,0,0,0.14,514.81,3540.48,26121979,99.8,0,0,0.17,514.79,3540.49,26121980,99.43,0,0,0.66,514.93,3540.37,26121981,99.83,0,0,0.16,514.53,3540.77,26121982,99.72,0,0,0.14,514.68,3540.62,26121983,99.74,0,0,0.15,514.68,3540.61,26121984,99.8,0,0,0.13,514.65,3540.63,26121985,98.88,0,0,0.72,514.91,3540.39,26121986,99.8,0,0,0.16,514.64,3540.66,26121987,99.76,0,0,0.14,514.62,3540.68,26121988,99.61,0,0,0.15,514.59,3540.7,26121989,99.73,0,0,0.15,514.58,3540.71,26121990,99.46,0,0,0.63,515.79,3539.53,26121991,99.74,0,0,0.24,515.18,3540.14,26121992,99.76,0,0,0.14,515.08,3540.23,26121993,99.76,0,0,0.14,515.2,3540.1,26121994,99.69,0,0,0.15,515.18,3540.12,26121995,99.43,0,0,0.66,515.12,3540.2,26121996,99.7,0,0,0.18,514.17,3541.14,26121997,99.74,0,0,0.17,514.16,3541.15,26121998,99.73,0,0,0.15,514.13,3541.17,26121999,99.36,0,0,0.27,515.32,3539.96,26122000,99.41,0,0,0.62,515.59,3539.71,26122001,99.74,0,0,0.22,515.05,3540.24,26122002,99.79,0,0,0.14,515.04,3540.25,26122003,99.7,0,0,0.15,515.13,3540.15,26122004,99.66,0,0,0.16,515.18,3540.1,26122005,99.47,0,0,0.67,514.48,3540.82,26122006,99.68,0.01,0.02,0.17,512.94,3542.36,26122007,99.61,0,0.01,0.18,512.88,3542.41,26122008,99.66,0,0.02,0.16,512.84,3542.44,26122009,99.67,0,0,0.2,512.81,3542.47,26122010,99.41,0,0.02,0.51,513.78,3541.51,26122011,99.8,0,0,0.38,514.91,3540.38,26122012,99.75,0,0.01,0.14,514.88,3540.41,26122013,99.78,0,0.01,0.21,514.82,3540.47,26122014,99.73,0,0.01,0.2,514.8,3540.47,26122015,99.61,0,0.01,0.3,514.39,3540.91,26122016,99.53,0,0.02,0.59,515.01,3540.28,26122017,99.8,0,0,0.14,514.63,3540.65,26122018,99.8,0,0.02,0.16,514.61,3540.67,26122019,99.8,0,0,0.16,514.56,3540.72,26122020,99.52,0,0.02,0.28,514.57,3540.73,26122021,99.6,0,0,0.59,515.69,3539.6,26122022,98.07,0,0.02,0.16,515.4,3539.89,26122023,99.79,0,0,0.17,515.34,3539.94,26122024,99.69,0,0.02,0.15,515.33,3539.95,26122025,99.53,0,0,0.33,515.3,3540,26122026,99.59,0,0.02,0.56,515.64,3539.65,26122027,99.71,0,0,0.18,515.42,3539.87,26122028,99.76,0,0.02,0.14,515.4,3539.88,26122029,99.45,0,0,0.36,515.34,3539.91,26122030,99.58,0,0.02,0.32,515.34,3539.93,26122031,99.53,0,0.01,0.64,515.66,3539.6,26122032,99.73,0,0,0.18,515.27,3539.99,26122033,99.74,0,0.02,0.2,515.4,3539.85,26122034,99.71,0,0,0.23,515.39,3539.9,26122035,99.59,0,0.02,0.35,515.36,3539.95,26122036,99.62,0,0,0.59,515.95,3539.35,26122037,99.76,0,0.02,0.24,515.28,3540.01,26122038,99.71,0,0,0.18,515.25,3540.04,26122039,99.58,0,0.02,0.21,515.4,3539.89,26122040,99.57,0,0,0.32,515.4,3539.9,26122041,99.51,0,0.02,0.49,515.7,3539.6,26122042,99.64,0,0,0.31,515.31,3539.98,26122043,99.6,0,0.02,0.21,515.27,3540.02,26122044,99.73,0,0,0.22,515.38,3539.9,26122045,99.4,0,0.02,0.36,515.16,3540.13,26122046,99.55,0,0,0.34,515.46,3539.84,26122047,99.71,0,0.02,0.43,514.58,3540.71,26122048,99.71,0,0,0.18,514.56,3540.73,26122049,99.67,0,0.02,0.18,514.62,3540.66,26122050,99.38,0,0,0.28,514.91,3540.39,26122051,99.62,0,0.02,0.4,515.17,3540.12,26122052,99.74,0,0,0.39,515.34,3539.95,26122053,99.78,0,0.02,0.2,515.3,3539.99,26122054,99.78,0,0,0.14,515.26,3540.02,26122055,99.52,0,0.02,0.36,515.61,3539.68,26122056,99.72,0,0,0.13,515.64,3539.65,26122057,99.53,0,0.02,0.66,515.73,3539.56,26122058,99.74,0,0,0.19,515.32,3539.96,26122059,99.5,0,0.02,0.32,515.5,3539.75,26122060,99.52,0,0,0.29,514.57,3540.71,26122061,99.78,0,0.02,0.18,514.66,3540.61,26122062,99.56,0,0,0.59,515.66,3539.61,26122063,99.75,0,0.02,0.18,515.57,3539.69,26122064,99.76,0,0,0.13,515.53,3539.73,26122065,99.67,0,0.02,0.31,514.29,3540.98,26122066,99.78,0,0,0.18,514.36,3540.91,26122067,99.66,0,0.02,0.56,515.14,3540.12,26122068,99.76,0,0,0.23,514.34,3540.92,26122069,99.7,0,0.02,0.21,514.15,3541.1,26122070,99.58,0,0,0.34,513.79,3541.48,26122071,99.75,0,0.02,0.2,513.85,3541.41,26122072,99.55,0,0,0.59,514.58,3540.68,26122073,99.8,0,0.02,0.19,514.83,3540.42,26122074,99.78,0,0,0.16,514.79,3540.46,26122075,99.59,0,0.02,0.31,514.54,3540.73,26122076,99.8,0,0,0.14,514.48,3540.78,26122077,99.63,0,0.02,0.56,515.02,3540.23,26122078,99.74,0,0,0.2,514.87,3540.38,26122079,99.77,0,0.02,0.17,514.82,3540.42,26122080,99.31,0,0,0.31,513.91,3541.35,26122081,99.63,0,0,0.16,513.81,3541.45,26122082,99.5,0,0,0.41,514.1,3541.16,26122083,99.69,0,0,0.35,513.5,3541.73,26122084,99.82,0,0,0.15,513.58,3541.64,26122085,99.6,0,0,0.29,514.14,3541.1,26122086,99.78,0,0,0.14,514.13,3541.1,26122087,99.73,0,0,0.17,514.36,3540.87,26122088,99.59,0,0,0.57,515.42,3539.8,26122089,99.46,0,0,0.29,515.04,3540.14,26122090,99.65,0,0,0.34,514.82,3540.38,26122091,99.75,0,0,0.14,514.27,3540.93,26122092,99.68,0,0,0.16,514.25,3540.95,26122093,99.42,0,0,0.55,514.71,3540.48,26122094,99.68,0,0,0.17,514.21,3540.98,26122095,99.57,0,0,0.29,515.05,3540.15,26122096,99.57,0,0,0.16,515.11,3540.09,26122097,99.62,0,0,0.18,514.84,3540.35,26122098,99.61,0,0,0.62,515.01,3540.19,26122099,99.75,0,0,0.15,514.55,3540.65,26122100,99.57,0,0,0.28,514.33,3540.9,26122101,99.68,0,0,0.14,514.29,3540.93,26122102,99.71,0,0,0.17,514.27,3540.95,26122103,99.67,0,0,0.54,514.77,3540.44,26122104,99.8,0,0,0.15,514.47,3540.73,26122105,99.59,0,0,0.28,514.72,3540.5,26122106,99.76,0,0,0.16,514.71,3540.52,26122107,99.75,0,0,0.16,514.81,3540.41,26122108,99.64,0,0,0.5,515.45,3539.76,26122109,99.73,0,0,0.19,515.32,3539.88,26122110,99.44,0,0,0.3,514.22,3541,26122111,99.65,0,0,0.2,513.99,3541.23,26122112,99.68,0,0,0.14,513.8,3541.41,26122113,99.61,0,0,0.56,514.55,3540.66,26122114,99.71,0,0,0.16,514.99,3540.21,26122115,99.61,0,0,0.29,514.04,3541.17,26122116,99.75,0,0,0.16,513.99,3541.23,26122117,99.77,0,0,0.14,513.97,3541.24,26122118,99.65,0,0,0.5,514.44,3540.76,26122119,99.56,0,0,0.31,515.01,3540.18,26122120,99.45,0,0,0.3,514,3541.2,26122121,99.68,0,0,0.16,514.03,3541.16,26122122,99.63,0,0,0.14,514,3541.19,26122123,99.53,0,0,0.57,514.48,3540.71,26122124,99.71,0,0,0.14,514.94,3540.25,26122125,99.64,0,0,0.29,514.72,3540.5,26122126,99.77,0,0,0.16,514.68,3540.53,26122127,99.68,0,0,0.14,514.83,3540.38,26122128,99.66,0,0,0.15,514.83,3540.38,26122129,99.49,0,0,0.59,515.64,3539.56,26122130,99.57,0,0,0.27,513.61,3541.61,26122131,99.77,0,0,0.16,513.55,3541.66,26122132,99.65,0,0,0.15,513.54,3541.67,26122133,99.69,0,0,0.16,513.5,3541.71,26122134,99.54,0,0,0.58,514.64,3540.58,26122135,99.64,0,0,0.3,515.2,3540.03,26122136,99.66,0,0,0.19,515.19,3540.04,26122137,99.71,0,0,0.14,515.17,3540.05,26122138,99.8,0,0,0.14,515.27,3539.95,26122139,99.61,0,0,0.57,515.52,3539.69,26122140,99.34,0,0,0.28,514.1,3541.13,26122141,99.57,0,0,0.17,514.06,3541.16,26122142,99.56,0,0,0.14,514.04,3541.18,26122143,99.08,0,0,0.14,514.02,3541.19,26122144,99.54,0,0,0.63,514.8,3540.41,26122145,99.63,0,0,0.34,513.79,3541.44,26122146,99.85,0,0,0.13,513.73,3541.5,26122147,99.87,0,0,0.18,513.71,3541.51,26122148,99.87,0,0,0.21,513.68,3541.53,26122149,99.35,0,0,0.57,515.82,3539.37,26122150,99.56,0,0,0.45,514.41,3540.8,26122151,99.83,0,0,0.17,514.34,3540.86,26122152,99.8,0,0,0.14,514.32,3540.88,26122153,99.68,0,0,0.14,514.3,3540.89,26122154,99.59,0,0,0.41,514.89,3540.34,26122155,99.62,0,0,0.44,515.28,3539.98,26122156,99.85,0,0,0.15,515.25,3540,26122157,99.81,0,0,0.21,515.23,3540.02,26122158,99.82,0,0,0.14,515.23,3540.02,26122159,99.76,0,0,0.14,515.21,3540.05,26122160,99.35,0,0,0.66,514.63,3540.65,26122161,99.65,0,0,0.16,514.35,3540.92,26122162,99.81,0,0,0.14,514.38,3540.89,26122163,99.81,0,0,0.15,514.35,3540.91,26122164,99.81,0,0,0.14,514.34,3540.92,26122165,99.25,0,0,0.65,514.51,3540.77,26122166,99.73,0,0,0.16,514.07,3541.2,26122167,99.72,0,0,0.14,514.05,3541.22,26122168,99.83,0,0,0.15,514.03,3541.23,26122169,99.76,0,0,0.18,514,3541.26,26122170,99.41,0,0,0.76,515.24,3540.03,26122171,99.77,0,0,0.21,514.89,3540.37,26122172,99.8,0,0,0.18,514.7,3540.55,26122173,99.82,0,0,0.16,514.77,3540.49,26122174,99.85,0,0,0.15,514.85,3540.4,26122175,99.57,0,0,0.69,515.85,3539.42,26122176,99.84,0,0,0.16,515.06,3540.21,26122177,99.72,0,0,0.16,515.04,3540.21,26122178,99.81,0,0,0.14,515.01,3540.24,26122179,99.54,0,0,0.36,514.88,3539.97,26122180,99.48,0,0,0.64,515.75,3539.1,26122181,99.69,0,0,0.18,515.3,3539.55,26122182,99.79,0,0,0.16,515.28,3539.56,26122183,99.79,0,0,0.14,515.26,3539.58,26122184,99.82,0,0,0.14,515.42,3539.42,26122185,99.54,0,0,0.54,515.91,3538.94,26122186,99.83,0,0,0.54,514.68,3540.15,26122187,99.79,0,0,0.14,514.63,3540.2,26122188,99.81,0,0,0.15,514.62,3540.21,26122189,99.81,0,0,0.14,514.6,3540.23,26122190,99.49,0,0,0.54,515.23,3539.61,26122191,99.84,0,0,0.28,515.31,3539.53,26122192,99.83,0,0,0.16,515.3,3539.53,26122193,99.83,0,0,0.14,515.26,3539.56,26122194,99.8,0,0,0.15,515.24,3539.58,26122195,99.23,0,0,0.54,515.7,3539.13,26122196,99.82,0,0,0.39,515.4,3539.43,26122197,99.78,0,0,0.16,515.38,3539.44,26122198,99.83,0,0,0.15,515.36,3539.46,26122199,99.84,0,0,0.14,515.34,3539.47,26122200,99.33,0,0,0.27,514.39,3540.44,26122201,99.61,0,0,0.6,516.11,3538.7,26122202,99.83,0,0,0.15,515.53,3539.28,26122203,99.83,0,0,0.14,515.51,3539.3,26122204,99.77,0,0,0.16,515.49,3539.32,26122205,99.66,0,0,0.29,515.24,3539.58,26122206,99.66,0,0,0.61,515.73,3539.09,26122207,99.8,0,0,0.18,515.38,3539.44,26122208,99.83,0,0,0.18,515.35,3539.46,26122209,99.68,0,0,0.32,515.58,3539.2,26122210,99.7,0,0,0.33,515.59,3539.22,26122211,99.69,0,0,0.55,515.92,3538.88,26122212,99.8,0,0,0.14,515.54,3539.26,26122213,99.64,0,0,0.19,515.53,3539.26,26122214,99.75,0,0,0.15,515.5,3539.28,26122215,99.55,0,0,0.29,514.3,3540.5,26122216,99.51,0,0,0.59,515.32,3539.48,26122217,99.68,0,0,0.22,514.48,3540.31,26122218,99.88,0,0,0.16,514.58,3540.2,26122219,99.73,0,0,0.17,514.63,3540.15,26122220,99.56,0,0,0.3,514,3540.8,26122221,99.59,0,0,0.42,514.53,3540.26,26122222,99.72,0,0,0.3,514.59,3540.2,26122223,99.83,0,0,0.18,514.57,3540.21,26122224,99.77,0,0,0.18,514.54,3540.24,26122225,99.54,0,0,0.29,514.79,3540.01,26122226,99.49,0,0,0.63,515.43,3539.37,26122227,99.67,0,0,0.17,514.51,3540.28,26122228,99.76,0,0,0.14,514.48,3540.3,26122229,99.84,0,0,0.16,514.47,3540.31,26122230,99.58,0,0,0.27,514.44,3540.36,26122231,99.7,0,0,0.45,514.91,3539.89,26122232,99.77,0,0,0.28,514.88,3539.9,26122233,99.78,0,0,0.16,514.86,3539.92,26122234,99.85,0,0,0.15,514.84,3539.94,26122235,99.75,0,0,0.3,514.85,3539.95,26122236,99.76,0,0,0.15,514.82,3539.97,26122237,99.64,0,0,0.55,515.16,3539.63,26122238,99.69,0,0,0.14,514.78,3540,26122239,99.55,0,0,0.29,514.26,3540.49,26122240,99.7,0,0,0.26,514.98,3539.79,26122241,99.88,0,0,0.16,515.09,3539.68,26122242,99.68,0,0,0.57,514.38,3540.38,26122243,99.8,0,0,0.14,513.88,3540.88,26122244,99.85,0,0,0.14,513.87,3540.88,26122245,99.65,0,0,0.29,514.1,3540.67,26122246,99.77,0,0,0.14,514.1,3540.67,26122247,96.34,0.02,0.01,86.51,525.44,3530.64,26122248,99.85,0,0,0.35,516.06,3538.58,26122249,99.8,0,0,0.17,516.04,3538.59,26122250,99.67,0,0,0.28,516.52,3538.13,26122251,99.86,0,0,0.17,516.49,3538.15,26122252,99.71,0,0,0.61,515.68,3539,26122253,99.8,0,0,0.16,514.5,3540.2,26122254,99.78,0,0,0.14,514.47,3540.22,26122255,99.67,0,0,0.33,513.58,3541.14,26122256,99.47,0,0,0.22,513.47,3541.24,26122257,99.68,0,0,0.48,514.49,3540.22,26122258,99.83,0,0,0.32,514.8,3539.92,26122259,99.87,0,0,0.17,514.83,3539.89,26122260,99.41,0,0,0.3,514.36,3540.37,26122261,99.82,0,0,0.18,514.31,3540.42,26122262,99.69,0,0,0.45,514.94,3539.79,26122263,99.83,0,0,0.3,515.01,3539.71,26122264,98.93,0,0,0.18,514.99,3539.72,26122265,99.66,0,0,0.29,514.99,3539.74,26122266,99.82,0,0,0.16,514.96,3539.77,26122267,99.65,0,0,0.5,515.31,3539.41,26122268,99.8,0,0,0.24,514.98,3539.73,26122269,99.71,0,0,0.26,515.06,3539.62,26122270,99.7,0,0,0.27,514.58,3540.12,26122271,99.9,0,0,0.14,514.55,3540.15,26122272,99.72,0,0,0.32,514.92,3539.78,26122273,99.85,0,0,0.43,514.98,3539.7,26122274,99.83,0,0,0.14,514.96,3539.71,26122275,99.68,0.01,0.02,0.38,514.74,3539.94,26122276,99.87,0,0,0.16,514.75,3539.94,26122277,99.78,0,0,0.18,514.97,3539.7,26122278,99.66,0,0,0.56,515.64,3539.03,26122279,99.85,0,0,0.14,514.94,3539.73,26122280,99.75,0,0,0.32,513.95,3540.73,26122281,99.82,0,0,0.17,513.92,3540.76,26122282,99.87,0,0,0.14,513.92,3540.75,26122283,99.64,0,0,0.6,514.45,3540.21,26122284,99.75,0,0,0.18,513.82,3540.84,26122285,98.22,0,0,15.23,516.45,3538.67,26122286,99.9,0,0,0.17,514.53,3540.13,26122287,99.81,0,0,0.18,514.5,3540.16,26122288,99.72,0,0,0.45,515.24,3539.41,26122289,99.85,0,0,0.24,515.2,3539.45,26122290,99.59,0,0,0.27,514.28,3540.39,26122291,99.8,0,0,0.18,514.15,3540.52,26122292,99.73,0,0,0.16,513.92,3540.73,26122293,99.76,0,0,0.56,514.79,3539.87,26122294,99.83,0,0,0.14,515.03,3539.63,26122295,99.56,0,0,0.28,514.11,3540.56,26122296,99.8,0,0,0.16,514.06,3540.61,26122297,99.81,0,0,0.14,514.04,3540.62,26122298,99.69,0,0,0.55,515.07,3539.58,26122299,99.71,0,0,0.3,514.98,3539.65,26122300,99.62,0,0,0.33,515.23,3539.42,26122301,99.76,0,0,0.16,515.21,3539.44,26122302,99.7,0,0,0.14,515.18,3539.46,26122303,99.7,0,0,0.56,515.61,3539.02,26122304,99.75,0,0,0.14,515.13,3539.5,26122305,96.91,0.56,0,9.13,519.29,3534.28,26122306,99.78,0,0,34.98,517.78,3534.43,26122307,99.65,0,0,0.23,517.31,3534.93,26122308,99.64,0,0,0.36,517.71,3534.53,26122309,99.75,0,0,0.4,517.94,3534.28,26122310,99.6,0,0,0.31,517.69,3534.56,26122311,99.86,0,0,0.17,515.24,3537.04,26122312,99.71,0,0,0.22,515.46,3536.81,26122313,99.74,0,0,0.29,515.8,3536.47,26122314,99.82,0,0,0.42,515.17,3537.1,26122315,99.7,0,0,0.3,515.5,3536.78,26122316,99.8,0,0,0.16,515.39,3536.88,26122317,99.78,0,0,0.19,515.37,3536.92,26122318,99.86,0,0,0.16,515.36,3536.93,26122319,99.67,0,0,0.54,515.49,3536.79,26122320,99.48,0,0,0.29,514.55,3537.75,26122321,99.82,0,0,0.13,514.52,3537.78,26122322,99.77,0,0,0.16,514.49,3537.8,26122323,99.83,0,0,0.14,514.47,3537.82,26122324,98,0,0,0.57,515.3,3536.98,26122325,99.67,0,0,0.3,514.94,3537.36,26122326,99.71,0,0,0.16,514.9,3537.39,26122327,99.76,0,0,0.14,514.88,3537.41,26122328,99.79,0,0,0.15,514.86,3537.42,26122329,99.59,0,0,0.7,515.3,3536.96,26122330,99.73,0,0,0.29,514.71,3537.57,26122331,99.82,0,0,0.16,514.76,3537.52,26122332,99.85,0,0,0.15,514.74,3537.53,26122333,99.79,0,0,0.16,514.71,3537.57,26122334,99.58,0,0,0.52,515.43,3536.85,26122335,99.64,0,0,0.36,515.18,3537.12,26122336,99.85,0,0,0.18,515.18,3537.11,26122337,99.8,0,0,0.21,514.91,3537.39,26122338,99.68,0.01,0.02,0.15,514.89,3537.39,26122339,99.74,0,0,0.61,515.55,3536.73,26122340,99.67,0,0.01,0.32,515.13,3537.17,26122341,99.82,0,0,0.18,515.06,3537.24,26122342,99.8,0,0,0.18,514.84,3537.45,26122343,99.87,0,0,0.16,514.94,3537.35,26122344,99.8,0,0,0.15,515.14,3537.14,26122345,99.58,0,0,0.66,515.83,3536.47,26122346,99.86,0,0,0.14,515.46,3536.84,26122347,99.85,0,0,0.16,515.44,3536.86,26122348,99.8,0,0,0.15,515.42,3536.87,26122349,99.86,0,0,0.14,515.39,3536.89,26122350,99.58,0,0,0.78,515.61,3536.69,26122351,99.86,0,0,0.16,515.33,3536.96,26122352,99.86,0,0,0.17,515.11,3537.18,26122353,99.85,0,0,0.14,515.09,3537.19,26122354,99.87,0,0,0.15,515.07,3537.21,26122355,99.51,0,0,0.7,516,3536.3,26122356,99.83,0,0,0.15,515.75,3536.54,26122357,99.88,0,0,0.16,515.73,3536.56,26122358,99.83,0,0,0.14,515.71,3536.58,26122359,99.59,0,0,0.29,515.44,3536.82,26122360,99.62,0,0,0.69,515.96,3536.32,26122361,99.9,0,0,0.14,515.66,3536.61,26122362,99.85,0,0,0.16,515.64,3536.63,26122363,99.79,0,0,0.14,515.62,3536.65,26122364,99.87,0,0,0.19,515.58,3536.67,26122365,99.64,0,0,0.55,515.88,3536.4,26122366,99.85,0,0,0.28,515.5,3536.77,26122367,99.73,0,0,0.17,514.56,3537.71,26122368,99.82,0,0,0.14,514.47,3537.8,26122369,99.73,0,0,0.16,514.47,3537.8,26122370,99.62,0,0,0.57,514.97,3537.31,26122371,99.81,0,0,0.34,514.44,3537.83,26122372,99.75,0,0,0.14,514.42,3537.85,26122373,99.83,0,0,0.14,514.4,3537.86,26122374,99.87,0,0,0.15,514.37,3537.89,26122375,99.61,0,0,0.6,515.15,3537.12,26122376,99.86,0,0,0.28,514.71,3537.56,26122377,99.33,0,0,0.16,514.77,3537.5,26122378,99.85,0,0,0.14,514.74,3537.52,26122379,99.84,0,0,0.14,514.73,3537.53,26122380,99.44,0,0,0.29,514.96,3537.31,26122381,99.71,0,0,0.56,514.34,3537.93,26122382,99.84,0,0,0.15,513.94,3538.32,26122383,99.78,0,0,0.15,513.92,3538.34,26122384,99.77,0,0,0.16,513.9,3538.35,26122385,94.2,0,0,0.29,514.13,3538.14,26122386,99.67,0,0,0.55,514.72,3537.55,26122387,99.77,0,0,0.17,514.45,3537.81,26122388,99.73,0,0,0.14,514.51,3537.75,26122389,99.58,0,0,0.3,514.52,3537.72,26122390,99.74,0,0,0.37,514.97,3537.28,26122391,99.76,0,0,0.58,515.32,3536.93,26122392,99.8,0,0,0.16,514.92,3537.32,26122393,99.81,0,0,0.14,514.92,3537.32,26122394,99.81,0,0,0.14,514.88,3537.36,26122395,99.64,0,0,0.33,513.93,3538.33,26122396,99.71,0,0,0.54,514.89,3537.38,26122397,99.82,0,0,0.18,514.62,3537.64,26122398,99.78,0,0,0.16,514.58,3537.67,26122399,99.85,0,0,0.14,514.69,3537.56,26122400,99.61,0,0,0.3,514.76,3537.51,26122401,99.72,0,0,0.55,515.5,3536.76,26122402,99.85,0,0,0.19,515.2,3537.06,26122403,99.83,0,0,0.14,515.18,3537.08,26122404,99.81,0,0,0.18,515.16,3537.09,26122405,99.62,0,0,0.31,514.21,3538.06,26122406,99.67,0,0,0.41,514.73,3537.54,26122407,99.88,0,0,0.31,514.87,3537.39,26122408,99.73,0,0,0.15,514.86,3537.4,26122409,99.73,0,0,0.16,514.83,3537.42,26122410,99.69,0,0,0.29,514.71,3537.56,26122411,99.7,0,0,0.44,515.07,3537.19,26122412,99.8,0,0,0.29,514.48,3537.78,26122413,99.87,0,0,0.16,514.46,3537.8,26122414,99.78,0,0,0.13,514.43,3537.84,26122415,99.74,0,0,0.3,514.69,3537.6,26122416,99.7,0,0,0.42,514.99,3537.29,26122417,99.89,0,0,0.28,514.4,3537.88,26122418,99.88,0,0,0.15,514.38,3537.9,26122419,99.62,0,0,0.3,515.08,3537.17,26122420,99.7,0,0,0.29,514.37,3537.91,26122421,99.81,0,0,0.13,514.38,3537.89,26122422,99.61,0,0,0.59,515.68,3536.58,26122423,99.87,0,0,0.14,514.98,3537.28,26122424,99.8,0,0,0.14,514.94,3537.31,26122425,99.62,0,0,0.29,514.95,3537.32,26122426,99.85,0,0,0.14,514.92,3537.35,26122427,99.71,0,0,0.61,515.6,3536.66,26122428,99.83,0,0,0.17,515.11,3537.15,26122429,99.81,0,0,0.18,515.09,3537.16,26122430,99.72,0,0,0.32,515.09,3537.18,26122431,99.83,0,0,0.18,515.07,3537.19,26122432,99.67,0,0,0.57,515.54,3536.72,26122433,99.88,0,0,0.15,515.25,3537,26122434,99.83,0,0,0.18,515.23,3537.02,26122435,99.63,0,0,0.34,515.53,3536.73,26122436,99.84,0,0,0.14,515.45,3536.81,26122437,99.74,0,0,0.55,515.45,3536.81,26122438,99.83,0,0,0.16,514.67,3537.58,26122439,99.87,0,0,0.15,514.65,3537.59,26122440,99.6,0,0,0.31,514.18,3538.08,26122441,99.88,0,0,0.14,514.14,3538.11,26122442,99.66,0,0,0.4,514.59,3537.66,26122443,99.79,0.01,0.06,0.31,514.36,3537.88,26122444,99.88,0,0,0.16,514.38,3537.87,26122445,99.73,0,0,0.29,515.1,3537.16,26122446,99.84,0,0,0.16,515.1,3537.16,26122447,99.7,0,0,0.5,515.46,3536.79,26122448,99.84,0,0,0.21,514.99,3537.25,26122449,99.64,0,0,0.28,515.2,3537.02,26122450,99.63,0,0,0.28,515.21,3537.04,26122451,99.78,0,0,0.14,515.18,3537.07,26122452,99.63,0,0,0.42,515.79,3536.45,26122453,99.66,0,0,0.3,515.14,3537.1,26122454,99.79,0,0,0.15,515.12,3537.12,26122455,99.65,0,0,0.3,515.12,3537.13,26122456,99.8,0,0,0.16,515.1,3537.15,26122457,99.81,0,0,0.2,515.08,3537.16,26122458,99.7,0,0,0.55,515.45,3536.79,26122459,99.79,0,0,0.15,515.22,3537.02,26122460,99.54,0,0,0.28,515.47,3536.79,26122461,99.78,0,0,0.15,515.43,3536.82,26122462,99.87,0,0,0.16,515.41,3536.84,26122463,99.71,0,0,0.58,515.74,3536.5,26122464,99.8,0,0,0.15,515.36,3536.87,26122465,99.74,0,0,0.29,515.36,3536.89,26122466,99.88,0,0,0.14,515.33,3536.91,26122467,99.87,0,0,0.16,515.31,3536.93,26122468,99.62,0,0,0.55,515.58,3536.66,26122469,99.81,0,0,0.15,515.2,3537.03,26122470,99.68,0,0,0.29,515.22,3537.04,26122471,99.83,0,0,0.17,515.2,3537.05,26122472,99.74,0,0,0.18,515.18,3537.07,26122473,99.64,0,0,0.59,515.35,3536.89,26122474,99.86,0,0,0.15,514.89,3537.34,26122475,99.63,0,0,0.3,514.64,3537.61,26122476,99.76,0,0,0.16,514.61,3537.64,26122477,99.71,0,0,0.17,514.59,3537.65,26122478,99.58,0,0,0.45,515.62,3536.62,26122479,99.54,0,0,0.48,515.62,3536.6,26122480,99.62,0,0,0.32,515.24,3536.99,26122481,99.76,0,0,0.18,515.2,3537.02,26122482,99.78,0,0,0.16,515.17,3537.05,26122483,99.63,0,0,0.6,515.49,3536.73,26122484,99.89,0,0,0.17,514.64,3537.57,26122485,99.66,0,0,0.3,514.64,3537.58,26122486,99.84,0,0,0.17,514.62,3537.61,26122487,99.8,0,0,0.17,514.6,3537.62,26122488,99.63,0,0,0.52,515,3537.21,26122489,99.87,0,0,0.21,514.8,3537.41,26122490,99.71,0,0,0.3,515.04,3537.18,26122491,99.83,0,0,0.17,515.2,3537.02,26122492,99.84,0,0,0.14,515.19,3537.02,26122493,99.73,0,0,0.41,515.56,3536.64,26122494,99.81,0,0,0.29,515.64,3536.56,26122495,99.71,0,0,0.3,515.39,3536.83,26122496,99.87,0,0,0.16,515.38,3536.84,26122497,99.72,0,0,0.16,515.34,3536.86,26122498,99.8,0,0,0.18,515.33,3536.88,26122499,99.63,0,0,0.55,515.6,3536.6,26122500,99.47,0,0,0.28,514.58,3537.64,26122501,99.71,0,0,0.16,514.55,3537.67,26122502,99.71,0,0,0.15,514.7,3537.51,26122503,99.78,0,0,0.15,514.69,3537.51,26122504,99.68,0,0,0.56,515.67,3536.53,26122505,99.53,0,0,0.33,514.46,3537.76,26122506,99.79,0,0,0.17,514.41,3537.8,26122507,99.75,0,0,0.18,514.4,3537.81,26122508,99.81,0,0,0.17,514.37,3537.83,26122509,99.42,0,0,0.83,515.63,3536.54,26122510,99.75,0,0,0.29,515.64,3536.56,26122511,99.84,0,0,0.16,515.57,3536.62,26122512,99.82,0,0,0.15,515.66,3536.53,26122513,99.88,0,0,0.15,515.72,3536.46,26122514,99.65,0.02,0.85,0.46,515.74,3536.38,26122515,99.58,0.01,0.61,0.58,515.63,3535.91,26122516,99.77,0.01,1.51,0.54,514.75,3536.19,26122517,99.74,0.01,1.06,0.34,513.62,3537.09,26122518,99.8,0,0.15,0.25,513.44,3537.04,26122519,99.64,0.01,0.56,0.76,514.23,3536.14,26122520,99.7,0,0.01,0.36,514.85,3535.51,26122521,99.82,0,0,0.18,514.85,3535.5,26122522,99.82,0,0,0.18,514.82,3535.53,26122523,99.8,0,0,0.16,514.8,3535.56,26122524,99.63,0,0,0.5,515.3,3535.07,26122525,99.76,0,0,0.38,514.53,3535.86,26122526,99.82,0,0,0.15,514.52,3535.87,26122527,99.77,0,0,0.16,514.49,3535.89,26122528,99.75,0,0,0.15,514.47,3535.91,26122529,99.65,0,0,0.55,514.7,3535.67,26122530,99.59,0,0,0.35,514.87,3535.52,26122531,99.83,0,0,0.21,514.84,3535.54,26122532,99.68,0,0,0.16,514.35,3536.03,26122533,99.77,0,0,0.17,514.34,3536.04,26122534,99.63,0,0,0.38,514.67,3535.7,26122535,99.64,0,0,0.54,514.56,3535.83,26122536,99.66,0,0,0.18,514.55,3535.84,26122537,99.76,0,0,0.15,514.53,3535.86,26122538,99.78,0,0,0.14,514.5,3535.88,26122539,99.52,0,0,0.29,514.73,3535.63,26122540,99.51,0,0,0.66,515.08,3535.29,26122541,99.74,0,0,0.16,514.56,3535.8,26122542,99.78,0,0,0.16,514.62,3535.73,26122543,99.74,0,0,0.16,514.59,3535.76,26122544,99.77,0,0,0.14,514.59,3535.78,26122545,99.44,0,0,0.68,515.35,3535.04,26122546,99.67,0,0,0.16,515.06,3535.32,26122547,99.68,0,0,0.17,515.04,3535.34,26122548,99.76,0,0,0.14,515.02,3535.35,26122549,99.71,0,0,0.16,515,3535.37,26122550,99.56,0,0,0.7,515.12,3535.27,26122551,99.81,0,0,0.14,514.73,3535.65,26122552,99.75,0,0,0.14,514.72,3535.66,26122553,99.77,0,0,0.15,514.78,3535.6,26122554,99.66,0,0,0.14,514.87,3535.52,26122555,99.4,0,0,0.64,515.24,3535.17,26122556,99.71,0,0,0.21,515.1,3535.3,26122557,99.73,0,0,0.14,515.06,3535.33,26122558,99.8,0,0,0.16,515.05,3535.35,26122559,99.67,0,0,0.15,515.02,3535.37,26122560,99.38,0,0,0.55,515.06,3535.35,26122561,99.68,0,0,0.28,513.77,3536.63,26122562,99.77,0,0,0.16,513.74,3536.65,26122563,99.76,0,0,0.15,513.73,3536.66,26122564,99.79,0,0,0.18,513.79,3536.59,26122565,99.49,0,0,0.66,514.04,3536.37,26122566,99.71,0,0,0.18,514.85,3535.55,26122567,99.7,0,0,0.16,514.83,3535.57,26122568,99.8,0,0,0.15,514.81,3535.58,26122569,99.64,0,0,0.3,515.01,3535.36,26122570,99.58,0,0,0.45,515.14,3535.24,26122571,99.67,0,0,0.44,514.99,3535.39,26122572,99.76,0,0,0.14,514.96,3535.41,26122573,99.74,0,0,0.14,514.95,3535.42,26122574,99.64,0,0,0.17,514.92,3535.44,26122575,99.57,0,0,0.45,515.41,3534.97,26122576,99.76,0,0,0.45,515.1,3535.28,26122577,99.75,0,0,0.18,515.08,3535.3,26122578,99.71,0,0,0.16,515.05,3535.32,26122579,99.67,0,0,0.18,515.04,3535.33,26122580,99.67,0,0,0.32,514.55,3535.83,26122581,99.49,0,0,0.57,515.3,3535.07,26122582,99.78,0,0,0.17,514.99,3535.38,26122583,99.77,0,0,0.14,514.95,3535.41,26122584,99.78,0,0,0.16,514.94,3535.42,26122585,99.62,0,0,0.32,514.76,3535.62,26122586,99.65,0,0,0.55,515.37,3535,26122587,99.71,0,0,0.14,515.07,3535.3,26122588,99.78,0,0,0.14,515.04,3535.32,26122589,99.81,0,0,0.17,515.03,3535.33,26122590,99.64,0,0,0.33,514.99,3535.39,26122591,99.58,0,0,0.55,515.32,3535.05,26122592,99.71,0,0,0.19,514.94,3535.43,26122593,99.75,0,0,0.14,514.97,3535.39,26122594,99.8,0,0,0.14,515.07,3535.28,26122595,99.55,0,0,0.32,514.7,3535.68,26122596,99.62,0,0,0.54,515.03,3535.34,26122597,99.76,0,0,0.14,514.55,3535.82,26122598,99.78,0,0,0.15,514.54,3535.82,26122599,99.38,0,0,0.32,514.99,3535.35,26122600,99.63,0,0,0.29,515.24,3535.11,26122601,99.6,0,0,0.41,515.57,3534.77,26122602,99.73,0,0,0.3,515.2,3535.14,26122603,99.75,0,0,0.15,515.18,3535.15,26122604,99.66,0,0,0.15,515.17,3535.18,26122605,99.52,0,0,0.35,515.41,3534.96,26122606,99.58,0,0,0.57,515.8,3534.57,26122607,99.52,0,0,0.19,515.1,3535.26,26122608,99.75,0,0,0.14,515.08,3535.27,26122609,99.77,0,0,0.14,515.06,3535.29,26122610,99.51,0,0,0.29,515.08,3535.29,26122611,99.77,0,0,0.16,515.04,3535.32,26122612,94.27,0.36,0.01,261.55,529.32,3521.48,26122613,99.81,0,0,0.16,515.55,3534.7,26122614,99.71,0,0,0.17,515.61,3534.64,26122615,99.55,0,0,0.29,517.41,3532.86,26122616,99.73,0,0,0.15,517.42,3532.85,26122617,99.44,0,0,0.61,516.17,3534.14,26122618,99.76,0,0,0.14,515.47,3534.84,26122619,97.34,0,0,0.14,515.45,3534.86,26122620,99.43,0,0,0.29,515.45,3534.87,26122621,99.63,0,0,0.16,515.43,3534.89,26122622,99.56,0,0,0.55,515.14,3535.18,26122623,99.73,0,0,0.17,514.41,3535.9,26122624,99.79,0,0,0.15,514.39,3535.92,26122625,99.64,0,0,0.29,515.36,3534.97,26122626,99.73,0,0,0.17,515.35,3534.97,26122627,99.53,0,0,0.4,515.64,3534.69,26122628,99.63,0,0,0.32,515.01,3535.32,26122629,99.36,0,0,0.42,515.31,3535,26122630,99.65,0,0,0.38,514.76,3535.57,26122631,99.68,0,0,0.18,514.72,3535.6,26122632,99.64,0,0,0.49,515.3,3535.01,26122633,99.76,0,0,0.24,515.17,3535.14,26122634,99.73,0,0,0.15,515.15,3535.15,26122635,99.62,0,0,0.29,515.42,3534.91,26122636,99.71,0,0,0.16,515.38,3534.94,26122637,99.58,0,0,0.51,515.7,3534.61,26122638,99.75,0,0,0.27,515.46,3534.86,26122639,99.76,0,0,0.16,515.5,3534.83,26122640,99.64,0,0,0.27,515.28,3535.07,26122641,99.74,0,0,0.14,515.24,3535.1,26122642,99.63,0,0,0.57,515.87,3534.46,26122643,99.8,0,0,0.16,515.7,3534.63,26122644,99.69,0,0,0.15,515.68,3534.64,26122645,99.54,0,0,0.3,514.48,3535.86,26122646,99.75,0,0,0.18,514.43,3535.91,26122647,99.78,0,0,0.14,514.41,3535.93,26122648,99.51,0,0,0.62,515.21,3535.12,26122649,99.74,0,0,0.15,514.85,3535.47,26122650,99.57,0,0,0.31,515.21,3535.12,26122651,99.71,0,0,0.16,515.29,3535.04,26122652,99.65,0,0,0.17,515.04,3535.29,26122653,99.58,0,0,0.59,515.84,3534.49,26122654,99.71,0,0,0.14,515.48,3534.84,26122655,99.5,0,0,0.31,515.23,3535.12,26122656,99.78,0,0,0.14,515.2,3535.14,26122657,99.71,0,0,0.15,515.18,3535.16,26122658,99.61,0,0,0.55,515.91,3534.42,26122659,99.39,0,0,0.29,515.46,3534.85,26122660,99.68,0,0,0.29,515.15,3535.18,26122661,99.7,0,0,0.14,515.24,3535.08,26122662,99.74,0,0,0.16,515.29,3535.03,26122663,99.55,0,0,0.56,515.82,3534.49,26122664,99.72,0,0,0.15,515,3535.32,26122665,99.62,0,0,0.29,515.74,3534.6,26122666,99.74,0,0,0.16,515.48,3534.85,26122667,99.64,0.06,6.29,0.32,514.72,3535.56,26122668,99.57,0.03,4.9,0.91,514.8,3535.12,26122669,99.74,0.01,1.89,0.51,514.28,3535.45,26122670,99.56,0,0,0.29,514.82,3534.89,26122671,99.77,0,0,0.14,514.75,3534.95,26122672,99.75,0,0,0.16,514.81,3534.9,26122673,99.65,0,0,0.59,514.92,3534.78,26122674,99.77,0,0,0.19,514.12,3535.57,26122675,99.58,0,0,0.34,514.6,3535.11,26122676,99.74,0,0,0.18,514.6,3535.11,26122677,99.75,0,0,0.18,514.57,3535.13,26122678,99.63,0,0,0.43,514.6,3535.09,26122679,99.79,0,0,0.28,513.3,3536.39,26122680,96.79,0,0,0.32,514.28,3535.43,26122681,99.72,0,0,0.14,514.26,3535.44,26122682,99.7,0,0,0.14,514.25,3535.45,26122683,99.56,0,0,0.43,514.89,3534.8,26122684,99.78,0,0,0.3,514.05,3535.64,26122685,99.65,0,0,0.28,514.4,3535.31,26122686,99.71,0,0,0.14,514.39,3535.32,26122687,99.66,0,0,0.16,514.36,3535.34,26122688,99.68,0,0,0.14,514.31,3535.38,26122689,99.46,0,0,0.7,515.12,3534.55,26122690,99.53,0,0,0.32,515.02,3534.66,26122691,99.66,0,0,0.15,515,3534.69,26122692,99.62,0,0,0.15,514.99,3534.69,26122693,99.56,0.02,0.04,0.45,515.45,3534.19,26122694,99.38,0.01,0.05,0.7,520.29,3529.1,26122695,99.49,0,0,0.36,516.87,3532.37,26122696,99.76,0,0,0.13,515.2,3534.07,26122697,99.71,0,0,0.21,515.2,3534.07,26122698,99.75,0,0,0.14,515.16,3534.1,26122699,99.61,0,0,0.59,515.93,3533.33,26122700,99.5,0,0,0.32,514.52,3534.76,26122701,99.76,0,0,0.14,514.39,3534.88,26122702,99.71,0,0,0.16,514.54,3534.73,26122703,99.84,0,0,0.14,514.53,3534.74,26122704,99.7,0,0,0.49,514.99,3534.27,26122705,99.53,0,0,0.41,514.51,3534.76,26122706,99.74,0,0,0.14,514.49,3534.78,26122707,99.66,0,0,0.16,514.47,3534.8,26122708,99.7,0,0,0.14,514.45,3534.81,26122709,99.61,0,0,0.55,515.21,3534.05,26122710,99.48,0,0,0.29,515.17,3534.1,26122711,99.78,0,0,0.17,515.15,3534.12,26122712,99.7,0,0,0.18,514.68,3534.59,26122713,99.78,0,0,0.15,514.61,3534.65,26122714,99.65,0,0,0.57,515.34,3533.92,26122715,99.61,0,0,0.29,514.79,3534.49,26122716,99.79,0,0,0.16,514.77,3534.51,26122717,99.78,0,0,0.16,514.74,3534.54,26122718,99.76,0,0,0.14,514.72,3534.55,26122719,99.36,0,0,0.55,515.73,3533.51,26122720,99.69,0,0,0.41,515.44,3533.82,26122721,99.81,0,0,0.16,515.41,3533.84,26122722,99.81,0,0,0.14,515.39,3533.86,26122723,99.87,0,0,0.15,515.37,3533.88,26122724,99.61,0,0,0.42,515.99,3533.25,26122725,99.64,0,0,0.43,515.43,3533.82,26122726,99.83,0,0,0.13,515.52,3533.73,26122727,99.73,0,0,0.16,515.5,3533.75,26122728,99.77,0,0,0.14,515.47,3533.77,26122729,99.83,0,0,0.16,515.46,3533.78,26122730,99.46,0,0,0.7,515.63,3533.63,26122731,99.85,0,0,0.17,515.2,3534.06,26122732,99.85,0,0,0.14,515.17,3534.09,26122733,99.76,0.03,0.08,0.21,515.17,3534.08,26122734,99.83,0,0,0.16,515.18,3534.06,26122735,99.47,0,0,0.73,515.31,3533.94,26122736,99.84,0,0,0.14,514.92,3534.34,26122737,99.86,0,0,0.16,514.89,3534.35,26122738,99.9,0,0,0.15,514.88,3534.37,26122739,99.89,0,0,0.18,514.86,3534.38,26122740,99.36,0,0,0.73,515.71,3533.55,26122741,99.8,0,0,0.14,515.18,3534.07,26122742,99.86,0,0,0.15,515.29,3533.96,26122743,99.85,0,0,0.14,515.27,3533.98,26122744,99.81,0,0,0.16,515.25,3534,26122745,99.6,0,0,0.71,515.84,3533.42,26122746,99.84,0,0,0.16,515.47,3533.78,26122747,99.82,0,0,0.15,515.44,3533.81,26122748,99.83,0,0,0.16,515.43,3533.82,26122749,99.72,0,0,0.31,515.63,3533.59,26122750,99.54,0,0,0.66,515.66,3533.57,26122751,99.83,0,0,0.22,515.13,3534.11,26122752,99.75,0,0,0.14,515.27,3533.95,26122753,99.88,0,0,0.15,515.26,3533.96,26122754,99.68,0,0,0.15,515.24,3533.99,26122755,99.52,0,0,0.56,515.76,3533.5,26122756,99.81,0,0,0.27,515.23,3534.03,26122757,99.79,0,0,0.21,515.46,3533.79,26122758,99.85,0,0,0.14,515.43,3533.81,26122759,99.77,0,0,0.16,515.41,3533.83,26122760,99.46,0,0,0.7,515.53,3533.73,26122761,99.85,0,0,0.15,515.17,3534.11,26122762,99.78,0,0,0.17,515.13,3534.14,26122763,99.88,0,0,0.15,515.2,3534.06,26122764,99.85,0,0,0.16,515.28,3533.98,26122765,99.55,0,0,0.46,515.23,3534.05,26122766,99.76,0,0,0.38,515.51,3533.77,26122767,99.82,0,0,0.16,515.47,3533.79,26122768,99.84,0,0,0.14,515.47,3533.8,26122769,99.87,0,0,0.15,515.43,3533.83,26122770,99.54,0,0,0.3,515.44,3533.83,26122771,99.6,0,0,0.57,515.97,3533.3,26122772,99.78,0,0,0.18,515.43,3533.84,26122773,99.79,0,0,0.17,515.37,3533.89,26122774,99.76,0,0,0.15,515.43,3533.83,26122775,99.64,0,0,0.3,514.83,3534.44,26122776,99.73,0,0,0.54,515.78,3533.5,26122777,99.86,0,0,0.16,515.5,3533.77,26122778,99.82,0,0,0.15,515.48,3533.78,26122779,99.62,0,0,0.3,515.46,3533.77,26122780,99.7,0,0,0.3,515.47,3533.79,26122781,99.68,0,0,0.55,515.6,3533.65,26122782,99.87,0,0,0.14,514.69,3534.56,26122783,99.8,0,0,0.15,514.67,3534.57,26122784,99.88,0,0,0.14,514.64,3534.6,26122785,99.59,0,0,0.31,514.89,3534.36,26122786,99.68,0,0,0.52,515.79,3533.46,26122787,99.73,0,0,0.19,515.53,3533.71,26122788,99.81,0,0,0.16,515.5,3533.74,26122789,99.77,0,0,0.15,515.49,3533.74,26122790,99.71,0,0,0.3,515.01,3534.24,26122791,99.61,0,0,0.5,515.43,3533.82,26122792,99.82,0,0,0.21,515.21,3534.04,26122793,99.83,0,0,0.15,515.19,3534.05,26122794,99.88,0,0,0.14,515.17,3534.06,26122795,99.7,0,0,0.29,515.65,3533.6,26122796,99.68,0,0,0.57,515.99,3533.25,26122797,99.77,0,0,0.15,515.62,3533.62,26122798,99.9,0,0,0.14,515.6,3533.64,26122799,99.89,0,0,0.16,515.7,3533.54,26122800,99.56,0,0,0.31,515.76,3533.49,26122801,99.65,0,0,0.54,516.39,3532.86,26122802,99.74,0,0,0.16,515.7,3533.54,26122803,99.88,0,0,0.17,515.68,3533.56,26122804,99.77,0,0,0.15,515.68,3533.56,26122805,99.68,0,0,0.31,515.21,3534.03,26122806,99.88,0,0,0.16,515.15,3534.1,26122807,99.69,0,0,0.6,514.76,3534.48,26122808,99.88,0,0,0.14,514.37,3534.87,26122809,99.57,0,0,0.28,515.62,3533.59,26122810,99.68,0,0,0.35,515.75,3533.47,26122811,99.85,0,0,0.18,515.73,3533.49,26122812,99.67,0,0,0.81,514.86,3534.36,26122813,99.53,0,0,0.16,514.46,3534.76,26122814,99.68,0,0,0.14,514.3,3534.93,26122815,99.69,0,0,0.29,514.88,3534.37,26122816,99.84,0,0,0.16,514.91,3534.34,26122817,99.62,0,0,0.74,514.83,3534.41,26122818,99.85,0,0,0.14,514.37,3534.86,26122819,99.82,0,0,0.16,514.35,3534.88,26122820,99.66,0,0,0.34,514.91,3534.33,26122821,99.68,0,0,0.18,515.01,3534.23,26122822,99.6,0,0,0.55,515.65,3533.59,26122823,99.88,0,0,0.16,514.97,3534.26,26122824,99.82,0,0,0.17,514.95,3534.27,26122825,99.74,0,0,0.32,513.98,3535.26,26122826,99.92,0,0,0.16,513.95,3535.29,26122827,99.68,0,0,0.54,514.53,3534.7,26122828,99.79,0,0,0.15,514.4,3534.83,26122829,99.85,0,0,0.17,514.39,3534.83,26122830,99.58,0,0,0.3,515.12,3534.12,26122831,99.81,0,0,0.14,515.12,3534.12,26122832,99.65,0,0,0.45,515.21,3534.02,26122833,99.82,0,0,0.29,514.77,3534.46,26122834,99.79,0,0,0.15,514.73,3534.49,26122835,99.72,0,0,0.31,514.51,3534.73,26122836,99.79,0,0,0.16,514.47,3534.76,26122837,99.68,0,0,0.58,515.28,3533.94,26122838,99.88,0,0,0.14,514.92,3534.3,26122839,99.66,0,0,0.29,514.96,3534.26,26122840,99.68,0,0,0.32,513.96,3535.28,26122841,99.88,0,0,0.16,513.92,3535.3,26122842,99.69,0,0,0.43,514.38,3534.85,26122843,99.8,0,0,0.29,514.85,3534.37,26122844,99.8,0,0,0.14,515.01,3534.21,26122845,99.65,0,0,0.28,514.05,3535.18,26122846,99.8,0,0,0.15,514.02,3535.21,26122847,99.66,0,0,0.46,514.49,3534.74,26122848,99.76,0,0,0.34,514.97,3534.27,26122849,99.86,0,0,0.14,514.95,3534.29,26122850,99.6,0,0,0.29,515.19,3534.06,26122851,99.71,0,0,0.16,515.17,3534.08,26122852,99.83,0,0,0.14,515.15,3534.09,26122853,99.61,0,0,0.55,515.81,3533.43,26122854,99.83,0,0,0.14,515.11,3534.12,26122855,99.66,0,0,0.3,514.87,3534.38,26122856,99.74,0,0,0.13,515.02,3534.22,26122857,99.75,0,0,0.18,515.01,3534.23,26122858,99.57,0,0,0.57,515.83,3533.4,26122859,99.85,0,0,0.14,515.45,3533.78,26122860,99.51,0,0,0.31,515.21,3534.04,26122861,99.7,0,0,0.15,515.19,3534.06,26122862,99.79,0,0,0.14,515.16,3534.08,26122863,99.73,0,0,0.56,515.5,3533.73,26122864,99.81,0,0,0.16,515.11,3534.11,26122865,99.74,0,0,0.38,515.12,3534.12,26122866,99.76,0,0,0.18,515.18,3534.06,26122867,99.79,0,0,0.16,515.26,3533.97,26122868,99.7,0,0,0.59,515.57,3533.65,26122869,99.53,0,0,0.29,515.46,3533.73,26122870,99.72,0,0,0.31,515.21,3534,26122871,99.9,0,0,0.14,515.18,3534.03,26122872,99.84,0,0,0.13,515.16,3534.04,26122873,99.72,0,0,0.56,515.48,3533.71,26122874,99.85,0,0,0.14,515.12,3534.1,26122875,99.76,0,0,0.29,515.13,3534.12,26122876,99.91,0,0,0.16,515.11,3534.14,26122877,99.84,0,0,0.18,515.09,3534.15,26122878,99.76,0,0,0.41,515.59,3533.65,26122879,99.91,0,0,0.31,515.24,3534,26122880,99.75,0,0,0.29,515.24,3534,26122881,99.88,0,0,0.14,515.21,3534.03,26122882,99.84,0,0,0.17,515.2,3534.04,26122883,99.64,0,0,0.55,515.53,3533.7,26122884,99.82,0,0,0.14,515.14,3534.09,26122885,99.65,0.01,0.01,0.32,515.11,3534.14,26122886,99.82,0,0,0.14,515.19,3534.05,26122887,99.85,0,0,0.16,515.23,3534.01,26122888,99.69,0,0,0.45,515.56,3533.67,26122889,99.88,0,0,0.33,515.18,3534.04,26122890,99.72,0,0,0.3,515.66,3533.58,26122891,99.88,0,0,0.16,515.66,3533.58,26122892,99.85,0,0,0.18,515.45,3533.79,26122893,99.82,0,0,0.14,515.37,3533.86,26122894,99.75,0,0,0.58,515.43,3533.81,26122895,99.73,0,0,0.3,515.11,3534.14,26122896,96.5,0.9,0.02,1.68,520.29,3530.16,26122897,99.74,0,0,78.12,518.05,3529.99,26122898,99.88,0,0,0.17,518.04,3530,26122899,99.53,0,0,0.69,518.18,3529.83,26122900,99.73,0,0,0.35,517.77,3530.25,26122901,99.84,0,0,0.16,517.28,3530.74,26122902,99.84,0,0,0.16,515.58,3532.49,26122903,99.9,0,0,0.16,515.55,3532.52,26122904,99.68,0,0,0.54,515.89,3532.19,26122905,99.71,0,0,0.29,515.3,3532.81,26122906,99.88,0,0,0.16,515.28,3532.81,26122907,99.86,0,0,0.15,515.37,3532.72,26122908,99.87,0,0,0.14,515.43,3532.66,26122909,99.71,0,0,0.55,516.14,3531.94,26122910,99.7,0,0,0.33,515.41,3532.68,26122911,99.83,0,0,0.13,515.39,3532.7,26122912,99.88,0,0,0.16,515.37,3532.72,26122913,99.87,0,0,0.14,515.34,3532.75,26122914,99.74,0,0,0.59,515.83,3532.26,26122915,99.79,0,0,0.36,515.57,3532.54,26122916,99.86,0,0,0.16,515.55,3532.56,26122917,99.89,0,0,0.15,515.54,3532.56,26122918,99.92,0,0,0.14,515.42,3532.69,26122919,99.74,0,0,0.44,515.46,3532.66,26122920,99.61,0,0,0.46,515.12,3533.01,26122921,99.84,0,0,0.16,515.19,3532.94,26122922,99.81,0,0,0.15,515.15,3532.97,26122923,99.88,0,0,0.16,515.15,3532.97,26122924,99.68,0,0,0.49,515.57,3532.54,26122925,99.66,0,0,0.36,514.65,3533.48,26122926,99.85,0,0,0.14,514.6,3533.53,26122927,99.85,0,0,0.18,514.57,3533.55,26122928,99.85,0,0,0.16,514.56,3533.56,26122929,98.62,0,0,0.5,515.61,3532.48,26122930,99.67,0,0,0.57,514.56,3533.55,26122931,99.82,0,0,0.18,514.51,3533.59,26122932,99.86,0,0,0.18,514.68,3533.42,26122933,99.83,0,0,0.18,514.65,3533.45,26122934,99.82,0,0,0.18,514.64,3533.46,26122935,99.49,0,0,0.78,515.99,3532.13,26122936,99.86,0,0,0.18,515.6,3532.51,26122937,99.81,0,0,0.22,515.81,3532.3,26122938,99.75,0,0,0.18,515.8,3532.31,26122939,99.87,0,0,0.18,515.77,3532.33,26122940,99.63,0,0,0.72,515.89,3532.23,26122941,99.8,0,0,0.14,515.51,3532.61,26122942,99.85,0,0,0.15,515.49,3532.62,26122943,99.86,0,0,0.15,515.63,3532.47,26122944,99.88,0,0,0.14,515.63,3532.48,26122945,99.57,0,0,0.77,515.98,3532.14,26122946,99.9,0,0,0.18,515.6,3532.51,26122947,99.88,0,0,0.18,515.6,3532.51,26122948,99.87,0,0,0.18,515.56,3532.54,26122949,99.86,0,0,0.18,515.56,3532.54,26122950,99.67,0,0,0.74,516.3,3531.82,26122951,99.84,0,0,0.18,515.54,3532.57,26122952,99.88,0,0,0.21,515.33,3532.78,26122953,99.86,0,0,0.18,515.25,3532.85,26122954,99.89,0,0,0.18,515.22,3532.88,26122955,99.54,0,0,0.75,515.3,3532.82,26122956,99.87,0,0,0.18,515.14,3532.97,26122957,99.84,0,0,0.18,515.12,3532.99,26122958,99.89,0,0,0.18,515.1,3533,26122959,99.62,0,0,0.31,515.79,3532.29,26122960,99.55,0,0,0.61,515.79,3532.3,26122961,99.86,0,0,0.3,515.77,3532.31,26122962,99.87,0,0,0.13,515.75,3532.33,26122963,99.85,0,0,0.16,515.73,3532.34,26122964,99.81,0,0,0.14,515.71,3532.38,26122965,99.64,0,0,0.75,516.01,3532.1,26122966,99.91,0,0,0.2,514.89,3533.22,26122967,99.85,0,0,0.18,514.88,3533.23,26122968,99.84,0,0,0.18,514.85,3533.25,26122969,99.81,0,0,0.18,514.82,3533.27,26122970,99.47,0,0,0.6,514.9,3533.21,26122971,99.74,0,0,0.44,514.79,3533.31,26122972,99.87,0,0,0.18,514.76,3533.34,26122973,99.87,0,0,0.18,514.74,3533.35,26122974,99.77,0,0,0.18,514.71,3533.38,26122975,99.63,0,0,0.36,514.86,3533.25,26122976,96.48,0.02,0.01,79.27,524.57,3525.62,26122977,99.88,0,0,0.18,517.58,3530.62,26122978,99.88,0,0,0.14,517.54,3530.65,26122979,99.9,0,0,0.14,517.54,3530.65,26122980,99.61,0,0,0.29,517.3,3530.91,26122981,99.64,0,0,0.65,515.94,3532.28,26122982,99.88,0,0,0.14,514.96,3533.28,26122983,99.81,0,0.01,0.15,515,3533.23,26122984,99.75,0,0,0.14,514.98,3533.25,26122985,99.69,0,0,0.31,513.05,3535.19,26122986,99.65,0,0,0.54,514.69,3533.56,26122987,99.88,0,0,0.17,514.94,3533.32,26122988,99.8,0,0,0.14,514.92,3533.34,26122989,99.3,0,0,0.34,515.14,3533.09,26122990,99.69,0,0,0.29,514.9,3533.34,26122991,99.77,0,0,0.55,515.38,3532.86,26122992,99.87,0,0,0.16,515.02,3533.22,26122993,99.88,0,0,0.14,515,3533.22,26122994,99.88,0,0,0.15,514.98,3533.25,26122995,99.61,0,0,0.3,515.25,3533.01,26122996,99.7,0,0,0.41,515.1,3533.16,26122997,99.79,0,0,0.3,513.74,3534.52,26122998,99.85,0,0,0.16,513.7,3534.55,26122999,99.82,0.02,0.07,0.19,513.65,3534.59,26123000,99.74,0,0,0.3,514.11,3534.15,26123001,99.72,0,0,0.57,514.87,3533.39,26123002,99.84,0,0,0.15,515.01,3533.25,26123003,99.88,0,0,0.14,514.99,3533.26,26123004,99.88,0,0,0.14,514.97,3533.28,26123005,99.75,0,0,0.3,515.23,3533.04,26123006,99.74,0,0,0.4,515.56,3532.71,26123007,99.86,0,0,0.3,515.19,3533.07,26123008,99.88,0,0,0.15,515.16,3533.09,26123009,99.89,0,0,0.14,515.15,3533.11,26123010,99.66,0,0,0.3,515.16,3533.11,26123011,99.83,0,0,0.14,515.13,3533.13,26123012,99.66,0,0,0.58,515.6,3532.66,26123013,99.87,0,0,0.15,514.84,3533.41,26123014,99.83,0,0,0.14,515.01,3533.24,26123015,99.77,0,0,0.35,514.52,3533.74,26123016,99.86,0,0,0.14,514.51,3533.75,26123017,99.75,0,0,0.58,515.25,3533.01,26123018,99.89,0,0,0.15,514.96,3533.29,26123019,99.57,0,0,0.29,515.18,3533.04,26123020,99.67,0,0,0.35,513.95,3534.29,26123021,99.24,0,0,0.13,513.91,3534.33,26123022,99.65,0,0,0.55,515.44,3532.79,26123023,99.8,0,0,0.14,515.34,3532.88,26123024,99.85,0,0,0.17,515.32,3532.91,26123025,99.69,0,0,0.31,514.47,3533.79,26123026,99.86,0,0,0.16,514.51,3533.75,26123027,99.65,0,0,0.57,515.15,3533.1,26123028,99.8,0,0,0.15,514.95,3533.29,26123029,99.83,0,0,0.14,514.93,3533.31,26123030,99.63,0,0,0.29,513.74,3534.51,26123031,99.82,0,0,0.16,513.68,3534.58,26123032,99.55,0,0,0.53,514.65,3533.6,26123033,99.65,0,0,0.2,514.62,3533.63,26123034,99.83,0,0,0.14,514.6,3533.64,26123035,99.69,0,0,0.32,515.32,3532.93,26123036,99.84,0,0,0.14,515.32,3532.93,26123037,99.72,0,0,0.41,515.85,3532.39,26123038,99.89,0,0,0.29,515.5,3532.74,26123039,99.81,0,0,0.14,515.48,3532.76,26123040,99.44,0,0,0.35,515.48,3532.77,26123041,98.94,0,0,0.15,515.46,3532.79,26123042,99.62,0,0,0.52,515.58,3532.67,26123043,99.87,0,0,0.19,514.68,3533.57,26123044,99.86,0,0,0.16,514.67,3533.57,26123045,99.7,0,0,0.3,514.43,3533.83,26123046,99.78,0,0,0.14,514.4,3533.85,26123047,99.69,0,0,0.42,514.69,3533.57,26123048,99.85,0,0,0.29,514.12,3534.13,26123049,99.57,0,0,0.29,515.02,3533.21,26123050,99.67,0,0,0.31,515.49,3532.75,26123051,99.85,0,0,0.16,515.47,3532.77,26123052,99.83,0,0,0.14,515.45,3532.78,26123053,99.53,0,0,0.57,516.1,3532.13,26123054,99.77,0,0,0.15,515.4,3532.82,26123055,99.5,0,0,0.35,514.7,3533.54,26123056,99.69,0,0,0.14,514.64,3533.6,26123057,99.8,0,0.01,0.21,514.75,3533.48,26123058,99.5,0,0,0.55,515.82,3532.41,26123059,99.86,0,0,0.14,515.47,3532.75,26123060,99.63,0,0,0.3,515.48,3532.76,26123061,99.87,0,0,0.14,515.46,3532.78,26123062,99.82,0,0,0.16,515.42,3532.81,26123063,99.6,0,0,0.54,515.77,3532.45,26123064,99.76,0,0,0.16,515.38,3532.84,26123065,99.75,0,0,0.34,515.38,3532.86,26123066,99.88,0,0,0.16,515.36,3532.88,26123067,99.85,0,0,0.14,515.33,3532.89,26123068,99.65,0,0,0.54,515.7,3532.53,26123069,99.75,0,0,0.14,515.24,3532.98,26123070,99.64,0,0,0.3,514.76,3533.48,26123071,99.73,0,0,0.14,514.73,3533.51,26123072,99.75,0,0,0.19,514.71,3533.52,26123073,99.69,0,0,0.54,515.73,3532.5,26123074,99.75,0.01,0.01,0.15,515.39,3532.83,26123075,99.32,0.1,0.06,0.33,515.2,3533.04,26123076,99.48,0.11,0.07,0.15,515.18,3533.05,26123077,99.67,0.06,0.04,0.2,515.16,3533.07,26123078,99.7,0,0,0.43,515.81,3532.41,26123079,99.53,0,0,0.45,515.33,3532.86,26123080,99.6,0,0,0.31,515.68,3532.54,26123081,99.79,0,0,0.16,515.75,3532.46,26123082,99.87,0,0,0.14,515.72,3532.49,26123083,99.7,0,0,0.41,516.05,3532.15,26123084,99.84,0,0,0.29,515.45,3532.77,26123085,99.69,0,0,0.3,515.72,3532.52,26123086,99.84,0,0,0.14,515.67,3532.57,26123087,99.84,0,0,0.16,515.64,3532.58,26123088,99.68,0,0,0.41,515.99,3532.24,26123089,99.85,0,0,0.29,515.59,3532.63,26123090,99.65,0,0,0.31,515.61,3532.63,26123091,99.81,0,0,0.14,515.58,3532.66,26123092,99.84,0,0,0.16,515.73,3532.51,26123093,99.81,0,0,0.13,515.72,3532.52,26123094,99.59,0,0,0.55,516.29,3531.94,26123095,99.66,0,0,0.31,514.76,3533.49,26123096,99.75,0,0,0.16,514.7,3533.55,26123097,99.83,0,0,0.14,514.68,3533.57,26123098,99.8,0,0.02,0.2,514.63,3533.61,26123099,99.67,0,0,0.57,515.88,3532.35,26123100,99.43,0,0,0.3,515.92,3532.32,26123101,99.81,0,0,0.14,515.97,3532.27,26123102,99.78,0,0,0.16,515.94,3532.3,26123103,99.78,0,0,0.14,515.91,3532.33,26123104,99.62,0,0,0.54,516.11,3532.12,26123105,99.57,0,0,0.33,515.4,3532.85,26123106,99.8,0,0,0.14,515.36,3532.88,26123107,99.71,0,0,0.16,515.35,3532.89,26123108,99.77,0,0,0.13,515.32,3532.91,26123109,99.56,0,0,0.67,515.9,3532.3,26123110,99.72,0,0,0.34,515.98,3532.23,26123111,99.82,0,0,0.16,515.98,3532.23,26123112,99.82,0,0,0.14,515.96,3532.25,26123113,99.81,0,0,0.15,515.94,3532.26,26123114,99.7,0,0,0.43,516.26,3531.94,26123115,99.72,0,0,0.46,515.68,3532.53,26123116,99.78,0,0,0.16,515.23,3532.98,26123117,99.8,0,0,0.18,514.66,3533.55,26123118,99.78,0,0,0.14,514.62,3533.58,26123119,99.63,0,0,0.5,515.09,3533.11,26123120,99.69,0,0,0.4,515.09,3533.12,26123121,99.82,0,0,0.17,515.08,3533.12,26123122,99.75,0,0,0.14,515.18,3533.02,26123123,99.79,0,0,0.14,515.23,3532.96,26123124,99.62,0,0,0.43,515.65,3532.54,26123125,99.66,0,0,0.45,513.33,3534.88,26123126,99.79,0,0,0.14,513.22,3534.98,26123127,99.84,0,0,0.16,513.2,3535,26123128,99.78,0,0,0.14,513.18,3535.02,26123129,99.8,0,0,0.15,513.15,3535.04,26123130,99.43,0,0,0.73,515.34,3532.87,26123131,99.8,0,0,0.14,515.1,3533.11,26123132,99.73,0,0,0.18,514.94,3533.26,26123133,99.79,0,0,0.16,514.92,3533.27,26123134,99.81,0,0,0.13,514.98,3533.21,26123135,99.49,0,0,0.76,515.06,3533.15,26123136,99.81,0,0,0.16,514.71,3533.49,26123137,99.81,0,0,0.15,514.69,3533.51,26123138,99.79,0,0,0.15,514.67,3533.54,26123139,99.72,0,0,0.32,515.14,3533.04,26123140,99.43,0,0,0.7,515.5,3532.71,26123141,99.74,0,0,0.15,515.11,3533.09,26123142,99.76,0,0,0.14,515.09,3533.1,26123143,99.8,0,0,0.18,515.07,3533.12,26123144,99.8,0,0,0.14,515.05,3533.15,26123145,99.53,0,0,0.77,515.45,3532.78,26123146,99.82,0,0,0.15,514.97,3533.24,26123147,99.78,0,0,0.16,514.95,3533.26,26123148,99.76,0,0,0.18,514.92,3533.28,26123149,99.81,0,0,0.15,514.91,3533.29,26123150,99.52,0,0,0.72,515.67,3532.55,26123151,99.77,0,0,0.17,515.13,3533.09,26123152,99.75,0,0,0.14,515.11,3533.11,26123153,99.81,0,0,0.15,515.07,3533.13,26123154,99.78,0,0,0.15,515.05,3533.15,26123155,99.49,0,0,0.78,515.02,3533.2,26123156,99.81,0,0,0.18,515.23,3532.98,26123157,99.78,0,0,0.14,515.2,3533.01,26123158,99.74,0,0.01,0.14,515.18,3533.02,26123159,99.77,0,0,0.14,515.13,3533.07,26123160,99.39,0,0,0.48,514.63,3533.59,26123161,99.73,0,0,0.39,514.86,3533.35,26123162,99.75,0,0,0.16,514.84,3533.37,26123163,99.76,0,0,0.14,514.82,3533.38,26123164,99.74,0,0,0.16,514.81,3533.38,26123165,99.41,0,0,0.49,515.39,3532.82,26123166,99.62,0.01,0.59,0.43,515.2,3533.01,26123167,99.7,0.02,3.11,0.28,515.13,3533.06,26123168,99.71,0.01,0.86,0.3,515.13,3533.04,26123169,99.64,0.02,2.14,0.57,515.15,3532.99,26123170,99.57,0.01,0.68,0.49,514.38,3533.76,26123171,99.63,0.03,3.32,0.78,515.37,3532.76,26123172,99.09,0.01,0.18,0.23,515.06,3533.04,26123173,99.66,0.01,0.02,0.2,514.99,3533.11,26123174,99.71,0,0,0.16,515.06,3533.06,26123175,99.6,0,0,0.38,515.15,3533,26123176,99.63,0,0,0.54,515.71,3532.43,26123177,99.7,0,0,0.18,515.34,3532.8,26123178,99.72,0,0,0.15,515.32,3532.81,26123179,99.8,0,0,0.16,515.31,3532.81,26123180,99.69,0,0,0.37,515.07,3533.07,26123181,99.45,0,0,0.45,515.14,3533,26123182,99.79,0,0,0.29,514.53,3533.61,26123183,99.8,0,0,0.18,514.51,3533.62,26123184,99.66,0,0,0.15,514.48,3533.64,26123185,99.57,0,0,0.32,513.87,3534.28,26123186,99.63,0,0,0.6,514.81,3533.34,26123187,99.72,0,0,0.16,515.37,3532.77,26123188,99.78,0,0,0.14,515.35,3532.78,26123189,99.79,0,0,0.14,515.31,3532.81,26123190,99.57,0,0,0.33,515.57,3532.57,26123191,99.67,0,0,0.57,515.86,3532.28,26123192,99.61,0,0,0.15,515.03,3533.11,26123193,99.76,0,0,0.17,514.77,3533.36,26123194,99.71,0,0,0.16,514.76,3533.37,26123195,99.62,0,0,0.37,515.54,3532.61,26123196,99.69,0,0,0.35,515.91,3532.23,26123197,99.69,0,0,0.42,515.6,3532.53,26123198,99.79,0,0,0.2,515.61,3532.52,26123199,99.61,0,0,0.3,515.34,3532.76,26123200,99.55,0,0,0.34,515.34,3532.78,26123201,99.65,0,0.01,0.32,515.67,3532.44,26123202,99.68,0,0.01,0.42,515.3,3532.82,26123203,99.81,0,0,0.17,515.28,3532.83,26123204,99.75,0,0,0.17,515.26,3532.85,26123205,99.6,0,0,0.35,515.5,3532.62,26123206,99.64,0,0,0.17,515.48,3532.63,26123207,99.41,0,0,0.61,516.1,3532.01,26123208,99.7,0,0,0.16,515.44,3532.66,26123209,99.68,0,0,0.15,515.6,3532.5,26123210,99.66,0,0,0.31,515.36,3532.76,26123211,99.75,0,0,0.17,515.34,3532.78,26123212,99.63,0,0,0.55,516.05,3532.06,26123213,99.77,0,0,0.16,515.54,3532.56,26123214,99.76,0,0,0.14,515.52,3532.58,26123215,99.64,0,0,0.3,515.77,3532.35,26123216,99.74,0,0,0.16,515.75,3532.37,26123217,99.52,0,0,0.42,515.83,3532.28,26123218,99.79,0,0,0.29,515.2,3532.9,26123219,99.83,0,0,0.17,515.26,3532.84,26123220,99.41,0,0,0.31,515.62,3532.5,26123221,99.71,0,0,0.16,515.6,3532.52,26123222,99.55,0,0,0.55,515.81,3532.3,26123223,99.55,0,0,0.15,515.31,3532.8,26123224,99.71,0,0,0.17,515.28,3532.83,26123225,99.58,0,0,0.32,515.51,3532.6,26123226,99.77,0,0,0.14,515.5,3532.61,26123227,99.64,0,0,0.59,515.9,3532.21,26123228,99.78,0,0,0.15,515.7,3532.4,26123229,99.7,0,0,0.29,515.45,3532.63,26123230,99.62,0,0,0.29,515.8,3532.3,26123231,99.77,0,0,0.16,515.85,3532.24,26123232,99.6,0,0,0.57,516.5,3531.58,26123233,99.76,0,0,0.15,515.8,3532.28,26123234,99.8,0,0,0.15,515.78,3532.31,26123235,99.64,0,0,0.31,515.55,3532.56,26123236,99.8,0,0,0.16,515.51,3532.59,26123237,99.75,0,0,0.19,515.49,3532.61,26123238,99.65,0,0,0.54,515.58,3532.51,26123239,99.8,0,0,0.15,515.21,3532.88,26123240,99.61,0,0,0.3,515.21,3532.89,26123241,99.78,0,0,0.14,515.23,3532.87,26123242,99.8,0,0,0.16,515.35,3532.75,26123243,99.68,0,0,0.59,515.69,3532.4,26123244,99.8,0,0,0.14,515.31,3532.78,26123245,99.67,0,0,0.32,515.08,3533.02,26123246,99.76,0,0,0.14,515.04,3533.06,26123247,99.78,0,0,0.16,515.03,3533.07,26123248,99.64,0,0,0.57,515.96,3532.13,26123249,99.79,0,0,0.15,515.72,3532.36,26123250,99.68,0,0,0.3,515.47,3532.63,26123251,99.76,0,0,0.15,515.45,3532.65,26123252,99.74,0,0,0.18,515.31,3532.79,26123253,99.69,0,0,0.57,515.47,3532.62,26123254,99.74,0,0,0.15,514.62,3533.47,26123255,99.62,0,0,0.36,516.09,3532.03,26123256,99.82,0,0,0.18,516.08,3532.03,26123257,99.81,0,0,0.18,516.08,3532.04,26123258,99.7,0,0,0.46,515.4,3532.7,26123259,99.67,0,0,0.48,515.72,3532.36,26123260,99.68,0,0,0.35,515.52,3532.58,26123261,99.85,0,0,0.18,515.5,3532.6,26123262,99.8,0,0,0.15,515.47,3532.61,26123263,99.71,0,0,0.45,515.72,3532.36,26123264,99.78,0,0,0.3,515.19,3532.89,26123265,99.71,0,0,0.3,515.6,3532.5,26123266,99.88,0,0,0.16,515.6,3532.49,26123267,99.83,0,0,0.14,514.76,3533.33,26123268,99.64,0,0,0.59,515.14,3532.94,26123269,99.82,0,0,0.14,515.28,3532.79,26123270,99.7,0,0,0.3,515.05,3533.04,26123271,99.87,0,0,0.14,515.02,3533.07,26123272,99.82,0,0,0.16,515.01,3533.08,26123273,99.72,0,0,0.44,515.21,3532.87,26123274,99.8,0,0,0.29,513.97,3534.1,26123275,99.76,0,0,0.3,514.95,3533.15,26123276,99.86,0,0,0.16,514.95,3533.14,26123277,99.89,0,0,0.14,515.03,3533.05,26123278,99.9,0,0,0.14,515.1,3532.98,26123279,99.73,0,0,0.58,515.57,3532.51,26123280,99.48,0,0,0.3,514.42,3533.68,26123281,99.75,0,0,0.14,514.31,3533.78,26123282,99.78,0,0,0.16,514.29,3533.79,26123283,99.83,0,0,0.14,514.27,3533.81,26123284,99.74,0,0,0.57,515.01,3533.07,26123285,99.7,0,0,0.3,514.51,3533.59,26123286,99.9,0,0,0.17,514.49,3533.6,26123287,99.81,0,0,0.15,514.46,3533.63,26123288,99.89,0,0,0.15,514.45,3533.63,26123289,99.44,0,0,0.71,515.57,3532.48,26123290,99.71,0,0,0.29,515.13,3532.94,26123291,99.86,0,0,0.16,515.1,3532.97,26123292,99.87,0,0,0.14,515.06,3533,26123293,99.78,0,0,0.14,515.04,3533.01,26123294,99.6,0,0,0.54,515.27,3532.82,26123295,99.79,0,0,0.31,514.54,3533.57,26123296,99.8,0,0,0.13,514.52,3533.59,26123297,99.74,0,0,0.21,514.49,3533.61,26123298,99.87,0,0,0.14,514.47,3533.63,26123299,99.69,0,0,0.5,515.35,3532.74,26123300,99.74,0,0,0.36,515.02,3533.08,26123301,99.85,0,0,0.14,515.12,3532.98,26123302,99.84,0,0,0.14,515.09,3533.01,26123303,99.81,0,0,0.16,515.08,3533.01,26123304,99.64,0,0,0.58,515.41,3532.68,26123305,99.69,0,0,0.33,515.29,3532.81,26123306,99.82,0,0,0.14,515.27,3532.83,26123307,99.82,0,0,0.14,515.25,3532.85,26123308,99.86,0,0,0.19,515.23,3532.86,26123309,99.69,0,0,0.61,515.56,3532.52,26123310,99.6,0,0,0.31,514.24,3533.86,26123311,99.79,0,0,0.17,514.19,3533.9,26123312,99.82,0,0,0.16,514.09,3534,26123313,99.87,0,0,0.16,513.86,3534.23,26123314,99.65,0,0,0.36,514.32,3533.76,26123315,99.71,0,0,0.53,515.07,3533.03,26123316,99.8,0,0,0.16,515.05,3533.04,26123317,99.83,0,0,0.14,515.03,3533.06,26123318,99.86,0,0,0.16,515.01,3533.07,26123319,99.67,0,0,0.29,515.22,3532.83,26123320,99.44,0,0,0.71,515.71,3532.37,26123321,99.86,0,0,0.14,515.21,3532.86,26123322,99.85,0,0,0.16,515.19,3532.88,26123323,99.84,0,0,0.14,515.19,3532.88,26123324,99.8,0,0,0.16,515.16,3532.92,26123325,99.48,0,0,0.73,514.74,3533.35,26123326,99.72,0,0,0.19,514.1,3533.99,26123327,99.76,0,0,0.14,514.07,3534.01,26123328,99.87,0,0,0.15,514.05,3534.03,26123329,99.81,0,0,0.14,514.03,3534.05,26123330,99.66,0,0,0.76,515.77,3532.31,26123331,99.84,0,0,0.14,515.48,3532.6,26123332,99.81,0,0,0.15,515.46,3532.61,26123333,99.88,0,0,0.15,515.44,3532.63,26123334,99.77,0,0,0.15,515.42,3532.64,26123335,99.59,0,0,0.67,515.63,3532.45,26123336,99.81,0,0,0.21,515.15,3532.92,26123337,99.89,0,0,0.14,515.26,3532.81,26123338,99.84,0,0,0.15,515.33,3532.73,26123339,99.83,0,0,0.2,515.33,3532.73,26123340,93.36,0.41,0.01,90.2,530.07,3518.74,26123341,99.68,0,0,182.73,517.63,3530.37,26123342,99.8,0,0,0.15,517.61,3530.38,26123343,99.88,0,0,0.14,517.77,3530.22,26123344,99.81,0,0,0.15,517.79,3530.19,26123345,99.45,0,0,0.6,517.12,3530.9,26123346,99.76,0,0,0.33,515.62,3532.43,26123347,99.81,0,0,0.14,515.59,3532.46,26123348,99.8,0,0,0.16,515.56,3532.48,26123349,99.57,0,0,0.31,514.58,3533.43,26123350,99.57,0,0,0.57,514.24,3533.79,26123351,99.83,0,0,0.27,514.77,3533.29,26123352,99.8,0,0,0.16,514.75,3533.31,26123353,99.81,0,0,0.14,514.83,3533.23,26123354,99.41,0,0,0.15,514.9,3533.16,26123355,99.57,0,0,0.48,516.15,3531.92,26123356,99.9,0,0,0.4,515.37,3532.7,26123357,99.87,0,0,0.2,515.34,3532.72,26123358,99.88,0,0,0.15,515.33,3532.73,26123359,99.86,0,0,0.14,515.3,3532.75,26123360,99.78,0,0,0.29,515.32,3532.76,26123361,99.59,0,0,0.6,515.89,3532.18,26123362,99.83,0,0,0.17,515.5,3532.57,26123363,99.88,0,0,0.14,515.48,3532.59,26123364,99.85,0,0,0.14,515.63,3532.43,26123365,99.76,0,0,0.33,515.89,3532.19,26123366,99.74,0,0.02,0.59,516.04,3532.03,26123367,99.9,0,0.01,0.17,515.57,3532.5,26123368,99.8,0,0,0.16,515.55,3532.51,26123369,99.9,0,0,0.15,515.52,3532.53,26123370,99.68,0,0,0.34,515.53,3532.54,26123371,99.64,0,0,0.58,515.86,3532.21,26123372,99.85,0,0,0.18,515.3,3532.76,26123373,99.88,0,0,0.14,514.98,3533.08,26123374,99.88,0,0,0.14,515.07,3532.98,26123375,99.71,0,0,0.34,515.88,3532.19,26123376,99.73,0,0,0.55,516.11,3531.95,26123377,99.87,0,0,0.19,515.59,3532.47,26123378,99.81,0,0,0.14,515.58,3532.48,26123379,99.61,0,0,0.39,515.32,3532.71,26123380,99.7,0,0,0.37,515.84,3532.21,26123381,99.68,0,0,0.43,516.22,3531.82,26123382,99.73,0,0,0.27,514.51,3533.53,26123383,99.82,0,0,0.16,514.49,3533.54,26123384,99.85,0,0,0.16,514.47,3533.57,26123385,99.69,0,0,0.3,515.29,3532.77,26123386,99.67,0,0,0.33,515.84,3532.22,26123387,99.8,0,0,0.39,515.85,3532.2,26123388,99.83,0,0,0.14,515.83,3532.22,26123389,99.91,0,0,0.15,515.81,3532.23,26123390,99.6,0,0,0.3,515.82,3532.24,26123391,99.85,0,0,0.16,515.8,3532.27,26123392,99.72,0,0,0.57,515.92,3532.13,26123393,99.85,0,0,0.15,515.51,3532.54,26123394,99.83,0,0,0.15,515.49,3532.56,26123395,99.73,0,0,0.3,515.74,3532.33,26123396,99.85,0,0,0.16,515.71,3532.36,26123397,99.62,0,0,0.61,515.95,3532.1,26123398,99.82,0.03,0.02,0.17,515.54,3532.5,26123399,99.83,0.02,0.01,0.16,515.53,3532.51,26123400,99.6,0.03,0.02,0.38,515.79,3532.26,26123401,99.71,0.04,0.03,0.14,515.79,3532.25,26123402,99.67,0.03,0.02,0.56,516.07,3531.97,26123403,99.73,0.05,0.04,0.17,515.52,3532.52,26123404,99.49,0.05,0.03,0.17,515.53,3532.5,26123405,99.54,0.02,0.01,0.27,515.07,3532.98,26123406,99.69,0.03,0.02,0.17,515.04,3533,26123407,99.57,0.02,0.02,0.52,515.9,3532.14,26123408,99.79,0,0,0.2,515.72,3532.31,26123409,99.59,0,0,0.28,515.71,3532.31,26123410,99.68,0,0,0.26,515.68,3532.36,26123411,99.82,0,0,0.15,515.77,3532.27,26123412,99.71,0,0,0.56,515.94,3532.1,26123413,99.8,0,0,0.16,515.06,3532.97,26123414,99.29,0,0.01,0.17,515.03,3532.99,26123415,99.61,0,0,0.31,515.53,3532.5,26123416,99.71,0,0,0.16,514.74,3533.29,26123417,99.5,0,0,0.5,515.23,3532.79,26123418,99.81,0,0,0.29,515.19,3532.83,26123419,99.79,0,0,0.14,515.15,3532.86,26123420,99.71,0,0,0.25,515.18,3532.85,26123421,99.88,0,0,0.16,515.34,3532.68,26123422,99.7,0,0,0.41,515.97,3532.05,26123423,99.89,0,0,0.28,514.83,3533.18,26123424,99.88,0,0,0.15,514.82,3533.2,26123425,99.45,0,0,0.26,515.06,3532.97,26123426,99.86,0,0,0.17,515.05,3532.98,26123427,99.9,0,0,0.18,515.02,3533.01,26123428,99.69,0,0,0.55,515.36,3532.66,26123429,99.83,0,0,0.15,514.98,3533.06,26123430,99.75,0,0,0.26,514.75,3533.3,26123431,99.85,0,0,0.16,514.71,3533.33,26123432,99.81,0,0,0.16,514.62,3533.42,26123433,99.7,0,0,0.57,515.32,3532.72,26123434,99.85,0,0,0.14,515.1,3532.93,26123435,99.69,0,0,0.26,515.09,3532.96,26123436,99.87,0,0,0.14,515.08,3532.96,26123437,99.88,0,0,0.17,515.06,3532.98,26123438,99.7,0,0,0.55,515.59,3532.44,26123439,99.56,0,0,0.29,515.28,3532.73,26123440,99.75,0,0,0.25,515.04,3533,26123441,99.9,0,0,0.14,515.01,3533.02,26123442,99.81,0,0,0.16,514.99,3533.04,26123443,99.71,0,0,0.57,515.48,3532.54,26123444,99.88,0,0,0.14,515.2,3532.82,26123445,99.7,0,0,0.25,514.48,3533.56,26123446,99.8,0,0,0.17,514.62,3533.41,26123447,99.83,0,0,0.14,514.61,3533.42,26123448,99.65,0,0,0.53,515.12,3532.9,26123449,99.86,0,0,0.2,514.56,3533.46,26123450,99.75,0,0,0.25,515.29,3532.74,26123451,99.89,0,0,0.15,515.27,3532.76,26123452,99.8,0,0,0.16,515.25,3532.78,26123453,99.73,0,0,0.55,515.58,3532.44,26123454,99.82,0,0,0.14,515.21,3532.8,26123455,99.73,0,0,0.28,515.03,3533,26123456,99.9,0,0,0.14,514.95,3533.08,26123457,99.87,0,0,0.14,515.04,3532.99,26123458,99.77,0,0,0.57,515.52,3532.5,26123459,99.84,0,0,0.14,515.32,3532.7,26123460,99.52,0,0,0.27,515.33,3532.7,26123461,99.88,0,0,0.14,515.3,3532.73,26123462,99.78,0,0,0.16,515.28,3532.74,26123463,99.69,0,0,0.56,515.59,3532.43,26123464,99.77,0,0,0.14,515,3533.02,26123465,99.65,0,0,0.26,514.28,3533.74,26123466,99.79,0,0,0.16,514.23,3533.79,26123467,99.82,0,0,0.16,514.21,3533.8,26123468,99.78,0,0,0.16,514.19,3533.82,26123469,99.25,0,0,0.68,514.36,3533.63,26123470,99.69,0,0,0.25,514.59,3533.42,26123471,99.86,0,0,0.16,514.57,3533.43,26123472,99.84,0,0,0.15,514.55,3533.45,26123473,99.8,0,0,0.14,514.52,3533.47,26123474,99.45,0,0,0.57,515.65,3532.34,26123475,99.48,0,0,0.25,514.28,3533.73,26123476,99.85,0,0,0.14,514.24,3533.76,26123477,99.87,0,0,0.2,514.21,3533.79,26123478,99.85,0,0,0.15,514.2,3533.79,26123479,99.63,0,0,0.58,514.36,3533.63,26123480,99.69,0,0,0.25,515.28,3532.73,26123481,99.8,0,0,0.14,515.32,3532.68,26123482,99.8,0,0,0.16,515.3,3532.7,26123483,99.7,0,0,0.15,515.28,3532.71,26123484,99.54,0,0,0.57,515.61,3532.38,26123485,99.59,0,0,0.27,514.54,3533.47,26123486,99.76,0,0,0.17,514.49,3533.51,26123487,99.85,0,0,0.14,514.49,3533.51,26123488,99.81,0,0,0.15,514.45,3533.54,26123489,99.73,0,0,0.43,515.61,3532.38,26123490,99.52,0,0,0.41,515.42,3532.59,26123491,99.87,0,0,0.17,515.51,3532.49,26123492,99.79,0,0,0.2,515.49,3532.51,26123493,99.8,0,0,0.16,515.3,3532.7,26123494,99.69,0,0,0.52,515.54,3532.45,26123495,99.63,0,0,0.34,513.83,3534.18,26123496,99.81,0,0,0.17,513.78,3534.22,26123497,99.86,0,0,0.18,513.77,3534.23,26123498,99.85,0,0,0.16,513.74,3534.25,26123499,99.48,0,0,0.56,515.34,3532.63,26123500,99.8,0,0,0.41,515.7,3532.28,26123501,99.85,0,0,0.17,515.67,3532.31,26123502,99.85,0,0,0.17,515.76,3532.22,26123503,99.77,0,0,0.16,515.84,3532.13,26123504,99.65,0,0,0.43,516.16,3531.81,26123505,99.65,0,0,0.45,515.57,3532.41,26123506,99.83,0,0,0.17,515.55,3532.42,26123507,99.85,0,0,0.18,515.53,3532.44,26123508,99.81,0,0,0.17,515.51,3532.46,26123509,99.85,0,0,0.17,515.49,3532.49,26123510,99.51,0,0,0.69,515.62,3532.38,26123511,99.85,0,0,0.16,515.23,3532.77,26123512,99.83,0,0,0.14,515.21,3532.78,26123513,99.82,0,0,0.15,515.19,3532.8,26123514,99.73,0,0,0.18,515.24,3532.74,26123515,99.56,0,0,0.7,516.23,3531.77,26123516,99.8,0,0,0.17,515.59,3532.42,26123517,99.84,0,0,0.14,515.57,3532.44,26123518,99.82,0,0,0.16,515.55,3532.46,26123519,99.84,0,0,0.15,515.53,3532.47,26123520,99.28,0,0,0.69,515.63,3532.39,26123521,99.8,0,0,0.18,515.51,3532.5,26123522,99.77,0,0,0.18,515.47,3532.54,26123523,99.76,0,0,0.18,515.45,3532.55,26123524,99.76,0,0,0.19,515.43,3532.57,26123525,99.55,0,0,0.53,516.13,3531.89,26123526,99.84,0,0,0.29,515.84,3532.18,26123527,99.83,0,0,0.16,515.81,3532.2,26123528,99.81,0,0,0.14,515.79,3532.21,26123529,99.63,0,0,0.29,515.54,3532.44,26123530,99.5,0,0.01,0.69,516.01,3531.99,26123531,99.85,0,0,0.18,515.48,3532.52,26123532,99.72,0,0,0.14,515.45,3532.54,26123533,99.68,0,0,0.17,515.43,3532.55,26123534,99.75,0,0,0.14,515.41,3532.57,26123535,99.38,0,0,0.56,515.45,3532.54,26123536,99.59,0,0,0.31,515.58,3532.41,26123537,99.71,0,0,0.18,515.56,3532.43,26123538,99.74,0,0,0.15,515.53,3532.45,26123539,99.68,0,0,0.15,515.52,3532.46,26123540,99.48,0,0,0.44,516.28,3531.72,26123541,99.85,0,0,0.43,515.75,3532.24,26123542,99.83,0,0,0.16,515.72,3532.27,26123543,99.89,0,0,0.15,515.71,3532.27,26123544,99.86,0,0,0.15,515.68,3532.3,26123545,99.69,0,0,0.31,515.67,3532.32,26123546,99.67,0,0,0.55,516.09,3531.9,26123547,99.85,0,0,0.14,515.83,3532.15,26123548,99.82,0,0,0.16,515.8,3532.18,26123549,99.8,0,0,0.13,515.79,3532.18,26123550,99.57,0,0,0.27,516.03,3531.96,26123551,99.44,0,0,0.56,515.47,3532.51,26123552,99.74,0,0,0.16,515.14,3532.84,26123553,99.83,0,0,0.17,515.49,3532.49,26123554,99.83,0,0,0.17,515.47,3532.51,26123555,99.66,0,0,0.27,515.47,3532.52,26123556,99.58,0,0,0.61,516.31,3531.67,26123557,99.76,0,0,0.14,515.67,3532.3,26123558,99.83,0,0,0.14,515.65,3532.32,26123559,99.67,0,0,0.29,515.78,3532.17,26123560,99.76,0,0,0.32,515.85,3532.11,26123561,99.71,0,0,0.53,516.15,3531.82,26123562,99.85,0,0,0.18,515.77,3532.18,26123563,99.88,0,0,0.14,515.76,3532.2,26123564,99.8,0,0,0.16,515.72,3532.23,26123565,99.59,0,0,0.29,514.55,3533.42,26123566,99.71,0,0,0.55,514.62,3533.34,26123567,99.85,0,0,0.14,514.21,3533.74,26123568,99.75,0,0,0.16,514.18,3533.77,26123569,99.8,0,0,0.16,514.16,3533.78,26123570,99.78,0,0,0.27,514.51,3533.45,26123571,99.68,0,0,0.56,515.12,3532.84,26123572,99.88,0,0,0.15,515.03,3532.92,26123573,99.87,0,0,0.14,515.01,3532.93,26123574,99.85,0,0,0.15,514.98,3532.96,26123575,99.77,0,0,0.27,514.74,3533.22,26123576,99.67,0,0,0.55,515.19,3532.77,26123577,99.8,0,0,0.15,515.18,3532.78,26123578,99.84,0,0,0.16,515.15,3532.8,26123579,99.86,0,0,0.16,515.13,3532.81,26123580,99.56,0,0,0.25,515.09,3532.87,26123581,99.62,0,0,0.36,515.59,3532.37,26123582,99.71,0,0,0.4,515.32,3532.66,26123583,99.73,0,0,0.14,515.3,3532.67,26123584,99.71,0,0,0.16,515.28,3532.68,26123585,99.73,0,0,0.28,515.04,3532.95,26123586,99.8,0,0,0.16,515.02,3532.96,26123587,99.59,0,0,0.55,515.56,3532.41,26123588,99.8,0,0,0.15,515.21,3532.75,26123589,99.51,0,0,0.31,515.45,3532.49,26123590,99.62,0,0,0.28,515.19,3532.77,26123591,99.88,0,0,0.16,515.17,3532.78,26123592,99.68,0,0,0.55,515.66,3532.28,26123593,99.79,0,0,0.17,515.32,3532.63,26123594,99.75,0,0,0.15,515.28,3532.65,26123595,99.72,0,0,0.28,514.82,3533.13,26123596,97.27,0,0,0.14,514.78,3533.18,26123597,99.7,0,0,0.6,515.76,3532.19,26123598,99.85,0,0,0.15,515.23,3532.72,26123599,95.52,0.22,0.01,142.21,525.39,3523.38,26123600,99.7,0,0,0.38,516.66,3530.59,26123601,99.85,0,0,0.16,516.6,3530.64,26123602,99.7,0,0,0.49,517.45,3529.79,26123603,99.84,0,0,0.21,517.56,3529.68,26123604,99.88,0,0,0.16,516,3531.27,26123605,99.47,0,0,0.27,514.42,3532.89,26123606,99.78,0,0,0.16,514.37,3532.94,26123607,99.65,0,0,0.56,515.11,3532.2,26123608,99.81,0,0,0.18,515.07,3532.23,26123609,99.73,0,0,0.16,515.19,3532.11,26123610,99.67,0,0,0.29,514.99,3532.35,26123611,99.86,0,0,0.19,514.96,3532.37,26123612,99.63,0,0,0.55,515.4,3531.93,26123613,99.8,0,0,0.16,514.91,3532.42,26123614,99.77,0,0.02,0.17,514.86,3532.46,26123615,99.66,0,0,0.28,515.1,3532.24,26123616,99.9,0,0,0.17,515.08,3532.25,26123617,99.63,0,0,0.4,515.69,3531.64,26123618,99.81,0,0,0.31,515.21,3532.11,26123619,99.73,0,0,0.4,515.67,3531.63,26123620,99.66,0,0,0.27,515.42,3531.89,26123621,99.85,0,0,0.14,515.39,3531.92,26123622,99.71,0,0,0.32,515.72,3531.59,26123623,99.85,0,0,0.39,515.35,3531.95,26123624,99.82,0,0,0.16,515.32,3531.97,26123625,99.65,0,0,0.31,515.16,3532.15,26123626,99.79,0,0,0.39,514.83,3532.47,26123627,99.64,0,0,0.32,515.35,3531.96,26123628,99.68,0,0,0.38,515.49,3531.81,26123629,99.86,0,0,0.14,515.46,3531.83,26123630,99.55,0,0,0.26,514.99,3532.32,26123631,99.8,0,0,0.17,514.95,3532.35,26123632,99.76,0,0,0.14,514.93,3532.37,26123633,99.72,0,0,0.55,516.33,3530.97,26123634,99.77,0,0,0.16,515.63,3531.68,26123635,99.78,0,0,0.3,515.65,3531.68,26123636,99.86,0,0,0.13,515.61,3531.72,26123637,99.78,0,0,0.16,515.59,3531.74,26123638,99.63,0,0,0.55,516,3531.31,26123639,99.72,0,0,0.17,515.7,3531.61,26123640,99.46,0,0,0.28,514.51,3532.82,26123641,99.73,0,0,0.16,514.47,3532.86,26123642,99.7,0,0,0.14,514.45,3532.87,26123643,99.56,0,0,0.55,515.44,3531.88,26123644,99.81,0,0,0.16,515.39,3531.92,26123645,99.67,0,0,0.29,515.4,3531.93,26123646,99.81,0,0,0.16,515.38,3531.95,26123647,99.8,0,0,0.14,515.36,3531.96,26123648,99.51,0,0,0.5,515.8,3531.52,26123649,99.49,0,0,0.34,515.56,3531.73,26123650,99.64,0,0,0.29,514.79,3532.52,26123651,99.76,0,0,0.14,514.73,3532.58,26123652,99.8,0,0,0.16,514.71,3532.59,26123653,99.54,0,0,0.54,515.52,3531.77,26123654,99.63,0,0,0.14,515.39,3531.91,26123655,99.48,0,0,0.3,514.95,3532.37,26123656,99.73,0,0,0.16,514.88,3532.44,26123657,99.59,0,0,0.2,514.86,3532.46,26123658,99.45,0,0,0.41,515.27,3532.04,26123659,99.64,0,0,0.29,515.31,3532,26123660,99.38,0,0,0.28,514.6,3532.73,26123661,99.62,0,0,0.17,514.69,3532.63,26123662,99.75,0,0,0.14,514.72,3532.6,26123663,99.3,0,0,0.56,515.2,3532.11,26123664,99.73,0,0,0.14,515.65,3531.65,26123665,99.59,0,0,0.31,514.46,3532.86,26123666,99.61,0,0,0.16,514.4,3532.92,26123667,99.49,0,0,0.14,514.37,3532.94,26123668,99.73,0,0,0.15,514.36,3532.95,26123669,99.59,0,0,0.55,516.26,3531.05,26123670,99.58,0,0,0.29,515.58,3531.74,26123671,99.74,0,0,0.16,515.55,3531.77,26123672,99.76,0,0,0.18,515.61,3531.7,26123673,99.77,0,0,0.17,515.45,3531.86,26123674,99.63,0,0,0.58,516.38,3530.92,26123675,99.61,0,0,0.3,515.68,3531.64,26123676,99.79,0,0,0.17,515.66,3531.66,26123677,99.82,0,0,0.14,515.64,3531.67,26123678,99.76,0,0,0.15,515.62,3531.69,26123679,99.38,0,0,0.7,515.68,3531.59,26123680,99.61,0,0,0.31,515.57,3531.72,26123681,99.66,0,0,0.15,515.55,3531.74,26123682,99.78,0,0,0.15,515.53,3531.76,26123683,99.77,0,0,0.14,515.59,3531.69,26123684,99.66,0,0,0.57,516.17,3531.1,26123685,99.65,0,0,0.37,515.95,3531.34,26123686,99.8,0,0,0.18,515.89,3531.4,26123687,99.73,0,0,0.18,515.86,3531.42,26123688,99.78,0,0,0.18,515.84,3531.43,26123689,99.68,0,0,0.56,516.07,3531.21,26123690,99.66,0,0,0.32,515.82,3531.47,26123691,99.8,0,0,0.16,515.81,3531.48,26123692,99.81,0,0,0.15,515.79,3531.5,26123693,99.82,0,0,0.14,515.76,3531.51,26123694,99.68,0,0,0.58,516.25,3531.02,26123695,99.65,0,0,0.33,515.69,3531.6,26123696,99.81,0,0,0.18,515.67,3531.62,26123697,99.82,0,0,0.18,515.63,3531.65,26123698,99.79,0,0,0.18,515.61,3531.66,26123699,99.65,0,0,0.39,515.97,3531.29,26123700,99.58,0.01,0.01,0.52,516.14,3531.14,26123701,99.77,0,0,0.17,516.19,3531.09,26123702,99.8,0,0,0.14,516.17,3531.11,26123703,99.76,0,0,0.16,516.15,3531.13,26123704,99.81,0,0,0.15,516.13,3531.14,26123705,96.15,0.02,0.01,78.85,525.8,3523.71,26123706,99.8,0,0,0.17,518.09,3529.44,26123707,99.79,0,0,0.14,518.16,3529.37,26123708,99.76,0,0,0.15,518.13,3529.39,26123709,99.56,0,0,0.29,518.37,3529.13,26123710,99.51,0,0,0.73,516.83,3530.72,26123711,99.81,0,0,0.15,515.93,3531.62,26123712,99.8,0,0,0.13,515.92,3531.63,26123713,99.78,0,0,0.16,515.88,3531.66,26123714,99.76,0,0,0.14,515.86,3531.68,26123715,99.46,0,0,0.72,515.85,3531.72,26123716,99.72,0,0,0.16,515.85,3531.73,26123717,99.72,0,0,0.19,515.02,3532.56,26123718,99.81,0,0,0.14,515.01,3532.57,26123719,99.79,0,0,0.15,514.99,3532.59,26123720,99.44,0,0,0.8,515.59,3532.01,26123721,99.75,0,0,0.13,515.22,3532.39,26123722,99.75,0,0,0.16,515.2,3532.4,26123723,99.83,0,0,0.14,515.18,3532.42,26123724,99.79,0,0,0.15,515.16,3532.43,26123725,98.23,0,0,16.04,517.36,3530.68,26123726,99.81,0,0,0.18,515.11,3532.47,26123727,99.76,0,0,0.17,515.1,3532.48,26123728,99.73,0,0,0.14,515.08,3532.49,26123729,99.8,0,0,0.17,515.16,3532.4,26123730,99.5,0,0,0.56,515.71,3531.87,26123731,99.78,0,0,0.28,515.22,3532.36,26123732,99.73,0,0,0.16,515.18,3532.39,26123733,92.82,0,0,31.47,530.97,3507.59,26123734,99.77,0,0,34.36,517.98,3527.99,26123735,99.39,0,0,0.46,517.24,3528.77,26123736,99.8,0,0,0.39,517.9,3528.11,26123737,99.8,0,0,0.14,517.88,3528.12,26123738,99.78,0,0,0.14,517.65,3528.36,26123739,99.42,0,0,0.31,514.66,3531.38,26123740,99.5,0,0,0.47,515.59,3530.47,26123741,99.78,0,0,0.38,515.3,3530.76,26123742,99.78,0,0,0.14,515.29,3530.76,26123743,99.72,0,0,0.16,515.27,3530.78,26123744,99.78,0,0,0.15,515.24,3530.84,26123745,99.58,0,0,0.36,514.29,3531.8,26123746,99.58,0,0,0.59,515.68,3530.41,26123747,99.77,0,0,0.16,515.2,3530.89,26123748,99.73,0,0,0.15,515.18,3530.9,26123749,99.79,0,0,0.15,515.16,3530.92,26123750,99.68,0,0,0.3,515.4,3530.69,26123751,99.67,0,0,0.55,515.11,3530.99,26123752,99.8,0,0,0.14,514.57,3531.51,26123753,99.78,0,0,0.16,514.55,3531.53,26123754,99.78,0,0,0.15,514.53,3531.54,26123755,99.66,0,0,0.34,515.01,3531.08,26123756,99.61,0,0,0.58,515.52,3530.56,26123757,99.79,0,0,0.16,515.21,3530.87,26123758,99.81,0,0,0.15,515.19,3530.89,26123759,99.8,0,0,0.14,515.17,3530.9,26123760,99.57,0,0,0.29,515.42,3530.67,26123761,99.61,0,0,0.54,516.16,3529.92,26123762,99.8,0,0,0.15,515.49,3530.6,26123763,99.77,0,0,0.15,515.53,3530.54,26123764,99.71,0,0,0.14,515.51,3530.56,26123765,99.6,0,0,0.33,515.28,3530.81,26123766,99.53,0,0,0.42,515.4,3530.69,26123767,99.81,0,0,0.3,514.74,3531.36,26123768,99.8,0,0,0.14,514.71,3531.38,26123769,99.53,0,0,0.29,515.22,3530.85,26123770,99.66,0,0,0.3,515.23,3530.86,26123771,99.65,0,0,0.51,515.69,3530.39,26123772,99.75,0.02,0.85,0.27,515.69,3530.38,26123773,99.68,0,0.01,0.19,515.78,3530.29,26123774,99.73,0,0,0.14,515.75,3530.31,26123775,99.6,0,0,0.31,514.79,3531.29,26123776,99.59,0,0,0.48,515.23,3530.84,26123777,99.76,0,0,0.24,515.43,3530.63,26123778,99.79,0,0,0.14,515.42,3530.64,26123779,99.81,0,0,0.15,515.39,3530.67,26123780,99.6,0,0,0.29,514.47,3531.61,26123781,99.63,0,0,0.32,515.26,3530.81,26123782,99.8,0,0,0.37,515.04,3531.03,26123783,99.76,0,0,0.14,515.02,3531.04,26123784,99.8,0,0,0.15,515,3531.06,26123785,99.74,0,0,0.29,514.76,3531.31,26123786,99.8,0,0,0.16,514.74,3531.33,26123787,99.69,0,0,0.54,515.5,3530.57,26123788,99.82,0,0,0.16,515.2,3530.87,26123789,99.8,0,0,0.13,515.17,3530.89,26123790,99.68,0,0,0.37,514.95,3531.13,26123791,99.83,0,0,0.14,514.92,3531.15,26123792,99.52,0,0,0.58,515.69,3530.38,26123793,99.78,0,0,0.16,515.13,3530.94,26123794,99.81,0,0,0.14,515.28,3530.78,26123795,99.65,0,0,0.29,515.77,3530.31,26123796,99.75,0,0,0.15,515.76,3530.31,26123797,99.65,0,0,0.54,515.92,3530.15,26123798,99.81,0,0,0.15,515.47,3530.59,26123799,99.57,0,0,0.3,515.2,3530.84,26123800,99.62,0,0,0.33,515.2,3530.86,26123801,99.75,0,0,0.16,515.18,3530.87,26123802,99.55,0,0,0.54,515.87,3530.17,26123803,99.78,0,0,0.15,515.14,3530.9,26123804,99.74,0,0,0.14,515.11,3530.92,26123805,99.67,0,0,0.29,514.75,3531.3,26123806,99.78,0,0,0.16,514.78,3531.27,26123807,99.57,0,0,0.58,514.97,3531.07,26123808,99.79,0,0,0.16,514.25,3531.79,26123809,99.75,0,0,0.17,514.24,3531.8,26123810,99.68,0,0,0.3,514.52,3531.53,26123811,99.87,0,0,0.14,514.46,3531.6,26123812,99.68,0,0,0.61,515.02,3531.05,26123813,99.83,0,0,0.18,515.64,3530.41,26123814,99.83,0,0,0.15,515.63,3530.43,26123815,99.65,0,0,0.31,514.44,3531.63,26123816,99.89,0,0,0.15,514.47,3531.59,26123817,99.67,0,0,0.43,515.11,3530.95,26123818,99.82,0,0,0.3,515.74,3530.32,26123819,99.83,0,0,0.14,515.72,3530.33,26123820,99.35,0,0,0.29,514.53,3531.54,26123821,99.76,0,0,0.14,514.47,3531.59,26123822,99.73,0,0.01,0.16,514.71,3531.35,26123823,99.71,0,0,0.54,515.24,3530.81,26123824,99.84,0,0,0.14,514.88,3531.16,26123825,99.74,0,0,0.29,515.84,3530.22,26123826,99.83,0,0,0.14,515.94,3530.12,26123827,98.56,0,0,0.15,516,3530.05,26123828,99.71,0,0,0.55,516.14,3529.91,26123829,99.57,0,0,0.29,515.96,3530.07,26123830,99.66,0,0,0.36,515.24,3530.81,26123831,99.88,0,0,0.14,515.2,3530.84,26123832,99.84,0,0,0.16,515.18,3530.86,26123833,99.7,0,0,0.55,515.93,3530.1,26123834,99.83,0,0,0.17,515.63,3530.41,26123835,99.72,0,0,0.34,515.64,3530.43,26123836,99.89,0,0,0.15,515.62,3530.44,26123837,99.77,0,0,0.18,515.84,3530.21,26123838,99.71,0,0,0.56,516.15,3529.9,26123839,97.29,0,0,0.14,515.78,3530.27,26123840,99.7,0,0,0.27,515.78,3530.29,26123841,99.83,0,0,0.16,515.76,3530.3,26123842,99.85,0,0,0.14,515.74,3530.32,26123843,99.62,0,0,0.57,516.43,3529.62,26123844,99.84,0,0,0.14,515.95,3530.1,26123845,99.72,0,0,0.32,514.98,3531.08,26123846,99.83,0,0,0.16,514.94,3531.12,26123847,99.83,0,0,0.13,514.92,3531.13,26123848,99.72,0,0,0.58,515.57,3530.48,26123849,99.88,0,0,0.18,515.86,3530.18,26123850,99.57,0,0,0.3,514.69,3531.37,26123851,99.85,0,0,0.17,514.78,3531.27,26123852,99.86,0,0,0.14,514.78,3531.27,26123853,99.7,0,0,0.44,515.58,3530.46,26123854,99.85,0,0,0.3,516.21,3529.83,26123855,99.6,0,0,0.34,515.74,3530.31,26123856,99.84,0,0,0.18,515.69,3530.36,26123857,99.84,0,0,0.17,515.69,3530.36,26123858,99.67,0,0,0.4,516.03,3530.01,26123859,99.6,0,0,0.42,515.64,3530.38,26123860,99.66,0,0,0.29,515.87,3530.16,26123861,99.8,0,0,0.14,515.85,3530.18,26123862,99.83,0,0,0.16,515.94,3530.08,26123863,99.89,0,0,0.17,516,3530.02,26123864,99.63,0,0,0.56,516.41,3529.6,26123865,99.66,0,0,0.29,516.23,3529.8,26123866,99.85,0,0,0.16,516.2,3529.82,26123867,99.81,0,0,0.14,515.8,3530.22,26123868,99.84,0,0,0.15,515.18,3530.84,26123869,99.62,0,0,0.57,515.51,3530.5,26123870,99.6,0,0,0.27,514.91,3531.11,26123871,99.9,0,0,0.15,514.89,3531.13,26123872,99.8,0,0,0.14,514.87,3531.15,26123873,99.79,0,0,0.16,514.92,3531.09,26123874,99.7,0,0,0.55,515.36,3530.65,26123875,99.75,0,0,0.34,514.15,3531.88,26123876,99.86,0,0,0.13,514.01,3532.02,26123877,99.78,0,0,0.17,513.98,3532.04,26123878,99.83,0,0,0.15,513.96,3532.06,26123879,99.69,0,0,0.57,515.4,3530.61,26123880,99.53,0,0,0.3,515.21,3530.82,26123881,99.81,0,0,0.16,515.15,3530.87,26123882,99.8,0,0,0.15,515.13,3530.89,26123883,99.83,0,0,0.14,515.11,3530.9,26123884,99.65,0,0,0.57,515.45,3530.55,26123885,99.56,0,0,0.3,514.24,3531.78,26123886,99.81,0,0,0.16,514.26,3531.75,26123887,99.85,0,0,0.14,514.24,3531.76,26123888,97.61,0,0,0.16,514.21,3531.79,26123889,99.62,0,0,0.54,515.76,3530.21,26123890,99.7,0,0,0.45,515.19,3530.81,26123891,99.73,0,0,0.16,515.16,3530.82,26123892,99.71,0,0,0.14,515.13,3530.85,26123893,99.76,0,0,0.14,515.12,3530.86,26123894,99.74,0,0,0.5,515.44,3530.53,26123895,99.7,0,0,0.37,515.33,3530.65,26123896,99.86,0,0,0.14,515.31,3530.67,26123897,99.82,0,0,0.19,515.16,3530.82,26123898,99.83,0,0,0.14,515.17,3530.81,26123899,99.68,0,0,0.42,515.65,3530.32,26123900,99.64,0,0,0.46,515.39,3530.6,26123901,99.79,0,0,0.16,515.37,3530.61,26123902,99.84,0,0,0.14,515.35,3530.62,26123903,99.87,0,0,0.15,515.33,3530.64,26123904,99.87,0,0,0.13,515.31,3530.65,26123905,99.53,0,0,0.7,515.68,3530.31,26123906,99.84,0,0,0.16,515.42,3530.56,26123907,99.84,0,0,0.14,515.46,3530.52,26123908,99.82,0,0,0.14,515.44,3530.53,26123909,99.79,0,0,0.15,515.42,3530.55,26123910,99.41,0,0,0.7,515.77,3530.22,26123911,99.87,0,0,0.16,515.39,3530.61,26123912,99.8,0,0,0.14,515.37,3530.63,26123913,99.77,0,0,0.18,514.89,3531.1,26123914,99.81,0,0,0.17,514.83,3531.15,26123915,99.5,0,0,0.73,516.09,3529.91,26123916,99.83,0,0,0.18,515.41,3530.59,26123917,99.77,0,0,0.14,515.5,3530.5,26123918,99.88,0,0,0.15,515.49,3530.5,26123919,99.59,0,0,0.34,515.45,3530.52,26123920,99.43,0,0,0.69,515.67,3530.31,26123921,99.75,0,0,0.15,515.18,3530.8,26123922,99.81,0,0,0.16,515.17,3530.8,26123923,99.85,0,0,0.14,515.15,3530.82,26123924,99.78,0,0,0.18,515.13,3530.85,26123925,99.54,0,0,0.73,515.53,3530.46,26123926,99.84,0,0,0.13,514.87,3531.13,26123927,99.74,0,0,0.17,514.85,3531.14,26123928,99.87,0,0,0.14,514.83,3531.16,26123929,99.81,0,0,0.16,514.81,3531.17,26123930,99.63,0,0,0.75,515.39,3530.59,26123931,99.81,0,0,0.17,515.48,3530.51,26123932,99.85,0,0,0.14,515.44,3530.54,26123933,99.83,0,0,0.17,515.42,3530.56,26123934,99.85,0,0,0.16,515.4,3530.57,26123935,99.57,0,0,0.57,515.72,3530.26,26123936,99.83,0.01,0.02,0.34,514.41,3531.57,26123937,99.85,0,0,0.14,514.42,3531.55,26123938,99.83,0,0,0.14,514.39,3531.59,26123939,99.84,0,0,0.18,514.37,3531.6,26123940,99.38,0,0,0.57,514.58,3531.41,26123941,99.69,0,0,0.28,515.58,3530.4,26123942,99.75,0,0,0.17,515.56,3530.42,26123943,99.83,0,0,0.15,515.54,3530.44,26123944,99.79,0,0,0.15,515.69,3530.28,26123945,99.51,0,0,0.55,514.92,3531.07,26123946,99.86,0,0,0.36,515.44,3530.54,26123947,99.84,0,0,0.13,515.42,3530.56,26123948,99.8,0,0,0.16,515.4,3530.57,26123949,99.65,0,0,0.39,515.64,3530.31,26123950,99.66,0,0,0.28,514.44,3531.52,26123951,99.75,0,0,0.61,515.83,3530.13,26123952,99.81,0,0,0.14,515.58,3530.38,26123953,99.8,0,0,0.16,515.56,3530.39,26123954,99.82,0,0,0.14,515.54,3530.41,26123955,99.69,0,0,0.31,514.9,3531.07,26123956,99.63,0,0,0.56,515.72,3530.24,26123957,99.83,0,0,0.2,514.96,3531,26123958,99.84,0,0,0.14,514.93,3531.02,26123959,99.85,0,0,0.15,514.91,3531.04,26123960,99.73,0.01,0.01,0.32,515.65,3530.32,26123961,99.7,0,0,0.59,516.01,3529.95,26123962,99.87,0,0,0.16,515.62,3530.33,26123963,99.83,0,0,0.14,515.61,3530.34,26123964,99.76,0,0,0.15,515.58,3530.36,26123965,99.72,0,0,0.32,514.62,3531.34,26123966,99.74,0,0,0.57,515.33,3530.62,26123967,99.89,0,0,0.14,515.3,3530.65,26123968,99.81,0,0,0.15,515.27,3530.67,26123969,99.86,0,0,0.14,515.42,3530.52,26123970,99.59,0,0,0.3,515.69,3530.27,26123971,99.65,0,0,0.54,516.41,3529.55,26123972,99.8,0,0,0.2,515.64,3530.31,26123973,99.83,0,0,0.2,515.4,3530.55,26123974,99.84,0,0,0.14,515.35,3530.59,26123975,99.61,0,0,0.3,514.87,3531.09,26123976,99.68,0,0,0.52,515.49,3530.47,26123977,99.83,0,0,0.21,515.56,3530.39,26123978,99.8,0,0,0.15,515.53,3530.41,26123979,99.67,0,0,0.32,515.04,3530.88,26123980,99.68,0,0,0.3,515.86,3530.07,26123981,99.69,0,0,0.36,516.31,3529.63,26123982,99.86,0,0,0.39,515.92,3530.01,26123983,99.87,0,0,0.17,515.9,3530.02,26123984,99.83,0,0,0.17,515.88,3530.04,26123985,99.71,0,0,0.31,515.17,3530.76,26123986,99.65,0,0,0.4,515.5,3530.43,26123987,99.75,0,0,0.37,515.84,3530.09,26123988,99.76,0,0,0.16,515.82,3530.1,26123989,99.84,0,0,0.17,515.8,3530.12,26123990,99.74,0,0,0.32,515.55,3530.38,26123991,99.85,0,0,0.17,515.69,3530.24,26123992,99.62,0,0,0.56,516.66,3529.26,26123993,99.84,0,0,0.16,515.91,3530.01,26123994,99.82,0,0,0.17,515.88,3530.03,26123995,99.8,0,0,0.32,515.64,3530.29,26123996,99.8,0,0,0.19,515.61,3530.32,26123997,99.68,0,0,0.56,516.15,3529.77,26123998,99.85,0,0,0.17,515.81,3530.1,26123999,99.84,0,0,0.17,515.78,3530.13,26124000,99.62,0,0,0.3,515.15,3530.78,26124001,99.85,0,0,0.16,515.21,3530.71,26124002,99.68,0,0,0.59,515.79,3530.13,26124003,99.79,0,0,0.2,515.66,3530.26,26124004,99.67,0,0,0.2,515.63,3530.29,26124005,99.66,0,0,0.37,514.91,3531.02,26124006,99.88,0,0,0.2,514.87,3531.05,26124007,99.64,0,0,0.62,515.46,3530.46,26124008,99.78,0,0,0.17,515.56,3530.35,26124009,99.47,0,0,0.3,515.34,3530.55,26124010,99.6,0,0,0.31,514.85,3531.05,26124011,99.78,0,0,0.18,514.78,3531.12,26124012,99.71,0,0,0.59,515.78,3530.12,26124013,99.82,0,0,0.16,515.91,3529.98,26124014,99.77,0,0,0.18,515.89,3530.03,26124015,99.62,0,0,0.32,515.27,3530.68,26124016,99.8,0,0,0.17,514.89,3531.05,26124017,99.85,0,0,0.22,515.1,3530.83,26124018,99.69,0,0,0.56,515.7,3530.23,26124019,99.85,0,0,0.16,515.32,3530.61,26124020,99.72,0,0,0.3,515.06,3530.88,26124021,99.78,0,0,0.2,515.04,3530.9,26124022,99.83,0,0,0.16,515.1,3530.83,26124023,99.71,0,0,0.63,515.29,3530.63,26124024,99.82,0,0,0.2,514.91,3531.01,26124025,99.68,0,0,0.31,515.16,3530.78,26124026,99.82,0,0,0.18,515.14,3530.79,26124027,99.85,0,0,0.18,515.12,3530.82,26124028,99.6,0,0,0.57,515.25,3530.68,26124029,99.8,0,0,0.17,514.83,3531.09,26124030,99.54,0,0,0.31,515.08,3530.86,26124031,99.81,0,0,0.18,515.05,3530.88,26124032,99.79,0,0,0.16,515.04,3530.89,26124033,99.62,0,0,0.64,515.45,3530.47,26124034,99.85,0,0,0.19,515.1,3530.81,26124035,99.58,0.01,0.02,0.36,514.13,3531.8,26124036,99.84,0,0,0.17,514.03,3531.89,26124037,99.79,0,0,0.22,514.15,3531.77,26124038,99.7,0,0,0.42,514.76,3531.16,26124039,99.56,0,0,0.46,515.14,3530.75,26124040,99.44,0,0,0.32,514.88,3531.02,26124041,99.74,0,0,0.18,514.86,3531.05,26124042,99.74,0,0,0.15,514.82,3531.08,26124043,99.54,0,0,0.46,515.39,3530.51,26124044,99.75,0,0,0.32,515.28,3530.62,26124045,99.66,0,0,0.41,515.06,3530.85,26124046,99.8,0,0,0.2,515.01,3530.9,26124047,99.69,0,0,0.19,514.99,3530.93,26124048,99.47,0,0,0.48,515.53,3530.38,26124049,99.69,0,0,0.3,515.41,3530.49,26124050,99.61,0,0,0.3,515.66,3530.27,26124051,99.72,0,0,0.17,515.64,3530.28,26124052,99.81,0,0,0.14,515.61,3530.3,26124053,99.7,0,0,0.43,516.18,3529.73,26124054,99.67,0,0,0.29,515.32,3530.59,26124055,99.57,0,0,0.3,514.61,3531.32,26124056,99.78,0,0,0.14,514.57,3531.36,26124057,99.81,0,0,0.16,514.54,3531.37,26124058,99.75,0,0,0.14,514.52,3531.39,26124059,99.64,0,0,0.55,514.72,3531.19,26124060,99.67,0,0,0.31,515.42,3530.51,26124061,99.85,0,0,0.16,515.41,3530.51,26124062,99.83,0,0,0.14,515.39,3530.52,26124063,99.83,0,0,0.15,515.37,3530.54,26124064,99.63,0,0,0.54,515.94,3529.97,26124065,99.66,0,0,0.32,514.14,3531.78,26124066,99.87,0,0,0.15,514.1,3531.82,26124067,99.83,0,0,0.16,514.07,3531.85,26124068,99.9,0,0,0.14,514.04,3531.86,26124069,94.27,0.39,0.01,261.37,528.37,3517.99,26124070,99.59,0,0,0.41,517.05,3528.82,26124071,99.87,0,0,0.14,517.04,3528.83,26124072,99.88,0,0,0.15,517.01,3528.86,26124073,99.83,0,0,0.16,516.99,3528.88,26124074,99.58,0,0,0.61,516.43,3529.46,26124075,99.68,0,0,0.32,515.31,3530.63,26124076,99.78,0,0,0.16,515.45,3530.47,26124077,99.77,0,0,0.18,515.67,3530.25,26124078,99.3,0,0,0.71,515.87,3530.05,26124079,99.72,0,0,0.55,515.9,3530.03,26124080,99.68,0,0,0.31,515.17,3530.8,26124081,99.8,0,0,0.16,515.13,3530.84,26124082,97.43,0,0,0.14,515.1,3530.86,26124083,99.76,0,0,0.17,515.08,3530.88,26124084,99.71,0,0,0.58,515.63,3530.34,26124085,99.64,0,0,0.3,515.32,3530.67,26124086,99.78,0,0,0.16,515.4,3530.59,26124087,99.75,0,0,0.14,515.49,3530.49,26124088,99.85,0,0,0.15,515.49,3530.49,26124089,99.74,0,0,0.49,515.8,3530.17,26124090,99.72,0,0,0.32,515.23,3530.77,26124091,99.83,0,0,0.14,515.19,3530.8,26124092,99.76,0,0,0.17,515.18,3530.8,26124093,99.86,0,0,0.18,514.96,3531.02,26124094,99.68,0,0,0.4,515.64,3530.33,26124095,99.77,0,0,0.45,515.64,3530.35,26124096,99.82,0,0,0.16,515.62,3530.37,26124097,99.73,0,0,0.14,515.58,3530.4,26124098,99.83,0,0,0.16,515.58,3530.4,26124099,99.54,0,0,0.31,515.7,3530.25,26124100,99.48,0,0,0.7,516.19,3529.77,26124101,99.77,0,0,0.14,515.7,3530.27,26124102,99.81,0,0,0.16,515.68,3530.28,26124103,99.85,0,0,0.15,515.65,3530.3,26124104,99.83,0,0,0.14,515.64,3530.33,26124105,99.52,0,0,0.71,515.99,3530,26124106,99.82,0,0,0.16,515.6,3530.38,26124107,99.74,0,0,0.14,515.59,3530.39,26124108,99.7,0,0,0.15,515.56,3530.41,26124109,99.78,0,0,0.15,515.56,3530.41,26124110,99.37,0,0,0.66,515.86,3530.13,26124111,99.79,0,0,0.14,515.72,3530.26,26124112,99.78,0,0,0.16,515.69,3530.29,26124113,99.81,0,0,0.14,515.69,3530.29,26124114,99.79,0,0,0.15,515.66,3530.3,26124115,99.46,0.01,0.03,0.71,515.94,3530.05,26124116,99.81,0,0,0.17,515.31,3530.67,26124117,99.8,0,0,0.14,515.39,3530.58,26124118,99.85,0,0,0.16,515.45,3530.52,26124119,99.88,0,0,0.16,515.43,3530.54,26124120,99.24,0,0,0.71,515.76,3530.22,26124121,99.78,0,0,0.16,515.4,3530.58,26124122,99.83,0,0,0.14,515.38,3530.59,26124123,99.8,0,0,0.15,515.36,3530.61,26124124,99.81,0,0,0.16,515.34,3530.63,26124125,99.47,0,0,0.56,516.18,3529.81,26124126,99.79,0,0,0.3,515.81,3530.16,26124127,99.8,0,0,0.15,515.8,3530.18,26124128,99.84,0,0,0.17,515.86,3530.11,26124129,99.73,0,0,0.3,515.95,3530,26124130,99.54,0,0,0.74,516.31,3529.66,26124131,99.85,0,0,0.14,515.93,3530.03,26124132,99.81,0,0,0.18,515.9,3530.06,26124133,99.86,0,0,0.15,515.87,3530.08,26124134,99.84,0,0,0.15,515.84,3530.12,26124135,99.57,0,0,0.52,516.56,3529.43,26124136,99.78,0,0,0.39,515.82,3530.16,26124137,99.83,0,0,0.2,515.57,3530.41,26124138,99.86,0,0,0.14,515.54,3530.43,26124139,99.88,0,0,0.16,515.64,3530.32,26124140,99.67,0,0,0.3,515.22,3530.76,26124141,99.71,0,0,0.57,516.1,3529.87,26124142,99.74,0.01,0.01,0.42,515.67,3530.3,26124143,98.24,1.98,0.1,4.98,529.01,3513.89,26124144,93.12,0.32,0.14,80.43,541.81,3491.51,26124145,97,4.99,0.07,139.45,532.34,3483.31,26124146,99.69,0,0,0.7,533.47,3483.57,26124147,99.82,0,0,0.17,533.67,3483.36,26124148,99.76,0,0,0.19,533.64,3483.39,26124149,99.8,0,0,0.19,533.61,3483.41,26124150,99.66,0,0,0.37,531.44,3485.64,26124151,99.72,0,0,0.56,531.19,3485.91,26124152,99.83,0,0,0.18,530.81,3486.29,26124153,99.79,0,0,0.2,530.6,3486.5,26124154,99.83,0,0,0.18,530.49,3486.6,26124155,99.76,0,0,0.34,531.03,3486.07,26124156,99.66,0,0,0.57,531.43,3485.67,26124157,99.85,0,0,0.19,531.15,3485.95,26124158,99.87,0,0,0.14,531.28,3485.81,26124159,99.62,0,0,0.29,531.27,3485.8,26124160,99.64,0,0,0.29,531.27,3485.81,26124161,99.65,0,0,0.56,531.75,3485.33,26124162,99.82,0,0,0.16,531.19,3485.9,26124163,99.77,0,0,0.16,531.16,3485.92,26124164,99.86,0,0,0.16,531.13,3485.96,26124165,99.68,0,0,0.3,531.04,3486.07,26124166,99.67,0,0,0.54,531.49,3485.62,26124167,99.69,0,0,0.19,530.81,3486.3,26124168,99.77,0,0,0.18,530.48,3486.63,26124169,99.78,0,0,0.17,530.45,3486.65,26124170,99.67,0,0,0.3,530.2,3486.91,26124171,99.6,0,0,0.55,530.51,3486.6,26124172,99.78,0,0,0.15,530.29,3486.82,26124173,99.88,0,0,0.14,530.28,3486.83,26124174,99.86,0,0,0.15,530.24,3486.86,26124175,99.73,0,0,0.37,530.48,3486.63,26124176,99.7,0,0,0.34,531.19,3485.91,26124177,99.82,0,0,0.39,530.43,3486.68,26124178,99.83,0,0,0.18,530.39,3486.71,26124179,99.79,0,0,0.18,530.44,3486.65,26124180,99.48,0,0,0.31,530.29,3486.82,26124181,99.8,0,0,0.14,530.22,3486.89,26124182,99.7,0,0,0.55,530.66,3486.44,26124183,99.85,0,0,0.14,530.13,3486.96,26124184,99.77,0,0,0.18,530.29,3486.81,26124185,99.64,0,0,0.32,530.32,3486.79,26124186,99.79,0,0,0.14,530.27,3486.84,26124187,99.62,0,0,0.58,530.93,3486.17,26124188,99.68,0,0,0.14,530.69,3486.41,26124189,99.43,0,0,0.28,530.46,3486.61,26124190,99.5,0,0,0.3,530.54,3486.55,26124191,99.76,0,0,0.16,530.56,3486.53,26124192,99.65,0,0.01,0.53,530.73,3486.35,26124193,99.81,0,0,0.15,530.27,3486.81,26124194,99.79,0,0,0.14,530.24,3486.84,26124195,99.57,0,0,0.32,530.24,3486.85,26124196,99.77,0,0,0.14,530.2,3486.89,26124197,99.64,0,0,0.58,530.94,3486.15,26124198,99.8,0,0,0.15,530.32,3486.75,26124199,99.77,0,0,0.14,530.29,3486.79,26124200,99.58,0,0,0.28,530.76,3486.33,26124201,99.79,0,0,0.14,530.74,3486.35,26124202,99.63,0,0,0.55,531.05,3486.03,26124203,99.78,0.01,0,0.14,530.75,3486.33,26124204,99.76,0,0,0.15,530.82,3486.26,26124205,99.69,0,0.01,0.29,530.57,3486.53,26124206,99.73,0,0,0.14,530.52,3486.57,26124207,99.59,0,0,0.43,530.91,3486.17,26124208,99.75,0,0,0.29,530.69,3486.39,26124209,99.71,0,0,0.16,530.82,3486.25,26124210,99.64,0,0,0.32,530.57,3486.52,26124211,99.71,0,0,0.13,530.54,3486.55,26124212,99.6,0.01,0.01,0.44,530.81,3486.27,26124213,99.75,0,0,0.3,530.4,3486.68,26124214,99.8,0,0,0.15,530.3,3486.77,26124215,99.58,0,0,0.3,530.28,3486.82,26124216,99.73,0,0,0.14,530.25,3486.84,26124217,99.6,0,0,0.3,530.56,3486.52,26124218,99.71,0,0,0.4,530.32,3486.76,26124219,99.54,0,0,0.29,530.84,3486.21,26124220,99.6,0,0,0.29,530.83,3486.24,26124221,99.76,0,0,0.16,530.8,3486.26,26124222,99.67,0,0,0.14,530.77,3486.29,26124223,99.58,0,0,0.57,531.38,3485.67,26124224,99.77,0,0,0.16,530.95,3486.1,26124225,99.55,0,0,0.32,530.81,3486.26,26124226,99.8,0,0,0.17,530.89,3486.18,26124227,99.69,0,0,0.18,530.85,3486.21,26124228,99.54,0,0,0.56,531.17,3485.88,26124229,99.69,0,0,0.17,530.77,3486.27,26124230,99.59,0,0,0.3,531,3486.06,26124231,99.79,0,0,0.18,530.97,3486.09,26124232,99.72,0,0,0.16,531.09,3485.96,26124233,99.67,0,0,0.59,531.27,3485.79,26124234,99.78,0,0,0.17,530.81,3486.25,26124235,99.66,0,0.02,0.33,530.94,3486.13,26124236,99.76,0,0.01,0.18,530.95,3486.1,26124237,99.75,0,0,0.17,531.04,3486.01,26124238,99.62,0,0,0.4,531.51,3485.54,26124239,99.78,0,0,0.31,530.55,3486.49,26124240,99.47,0,0,0.31,529.83,3487.23,26124241,99.73,0,0,0.19,529.77,3487.29,26124242,99.72,0,0,0.2,529.73,3487.32,26124243,99.66,0,0,0.6,530.44,3486.61,26124244,99.75,0,0,0.17,530.8,3486.24,26124245,99.62,0,0,0.32,531.02,3486.04,26124246,99.69,0,0,0.17,530.99,3486.06,26124247,99.78,0,0,0.16,530.96,3486.09,26124248,99.64,0,0,0.59,531.13,3485.91,26124249,99.62,0,0,0.3,531.03,3485.99,26124250,99.54,0,0,0.31,531.02,3486.01,26124251,99.77,0,0,0.2,530.98,3486.05,26124252,99.72,0.01,0.01,0.17,530.94,3486.09,26124253,99.53,0,0,0.86,531.26,3485.77,26124254,99.61,0,0,0.16,530.54,3486.5,26124255,99.48,0,0,0.37,531.01,3486.06,26124256,99.66,0,0,0.19,530.98,3486.08,26124257,99.62,0,0,0.22,530.94,3486.13,26124258,99.64,0,0,0.18,530.96,3486.1,26124259,99.56,0,0,0.71,530.81,3486.25,26124260,99.64,0,0,0.3,530.3,3486.78,26124261,99.77,0,0,0.16,530.25,3486.82,26124262,99.72,0,0,0.14,530.21,3486.85,26124263,99.71,0.01,0.01,0.16,530.3,3486.77,26124264,98.89,0,0,0.55,531.27,3485.79,26124265,99.6,0.01,0.01,0.33,531.27,3485.8,26124266,99.8,0,0,0.15,531.23,3485.84,26124267,99.78,0,0,0.18,531.19,3485.87,26124268,99.77,0,0,0.16,531.3,3485.76,26124269,99.67,0,0,0.55,531.66,3485.4,26124270,99.58,0,0,0.3,530.34,3486.74,26124271,99.8,0,0,0.14,530.25,3486.82,26124272,99.76,0,0,0.15,530.22,3486.85,26124273,99.76,0,0,0.32,527.74,3489.49,26124274,99.59,0,0,0.56,516.96,3500.58,26124275,99.58,0,0,0.33,516.26,3501.31,26124276,99.82,0,0,0.16,516.26,3501.31,26124277,99.8,0,0,0.14,516.22,3501.35,26124278,99.81,0,0,0.15,516.2,3501.36,26124279,99.5,0,0,0.6,516.65,3500.89,26124280,99.69,0,0,0.38,515.94,3501.62,26124281,99.8,0,0,0.17,515.92,3501.63,26124282,99.82,0,0,0.18,516.03,3501.51,26124283,99.78,0,0,0.16,516.04,3501.5,26124284,99.67,0,0,0.58,516.38,3501.16,26124285,99.69,0,0,0.32,516.03,3501.53,26124286,99.79,0,0,0.15,516,3501.55,26124287,99.78,0,0,0.19,515.97,3501.58,26124288,99.75,0,0,0.14,515.95,3501.59,26124289,99.62,0,0,0.55,516.21,3501.33,26124290,99.62,0,0,0.33,516.17,3501.38,26124291,99.79,0,0,0.16,516.15,3501.4,26124292,99.78,0,0,0.14,516.24,3501.3,26124293,99.79,0,0,0.16,516.3,3501.24,26124294,99.6,0,0,0.46,516.91,3500.63,26124295,99.66,0,0,0.44,516.28,3501.27,26124296,99.81,0,0,0.14,516.26,3501.29,26124297,99.79,0,0,0.16,516.23,3501.31,26124298,99.77,0,0,0.14,516.22,3501.32,26124299,99.74,0,0,0.15,516.2,3501.33,26124300,99.08,0,0,0.71,516.63,3500.92,26124301,99.55,0,0,0.14,516.17,3501.37,26124302,99.73,0,0,0.16,516.15,3501.39,26124303,99.78,0,0,0.2,516.23,3501.3,26124304,99.71,0,0,0.15,516.27,3501.25,26124305,99.37,0,0,0.74,516.12,3501.42,26124306,99.76,0,0,0.17,516,3501.53,26124307,99.74,0.03,1.04,0.21,515.99,3501.54,26124308,99.59,0.04,2.81,0.61,516.12,3501.38,26124309,99.55,0,0,0.27,515.19,3502.28,26124310,99.48,0,0,0.72,516.49,3501,26124311,99.8,0,0,0.17,516.44,3501.05,26124312,99.76,0,0,0.14,516.52,3500.96,26124313,99.75,0,0,0.16,516.49,3500.99,26124314,99.8,0,0,0.15,516.48,3501,26124315,99.56,0,0,0.65,516.9,3500.61,26124316,99.75,0,0,0.2,516.2,3501.31,26124317,99.78,0,0,0.21,516.18,3501.32,26124318,99.76,0,0,0.14,516.17,3501.33,26124319,99.77,0,0,0.16,516.14,3501.36,26124320,99.57,0,0,0.66,516.24,3501.27,26124321,99.76,0,0,0.2,515.14,3502.37,26124322,99.8,0,0,0.15,515.21,3502.29,26124323,99.76,0,0,0.15,515.28,3502.21,26124324,99.32,0,0,0.14,515.25,3502.24,26124325,99.44,0,0,0.66,515.49,3502.02,26124326,99.79,0,0,0.22,514.98,3502.52,26124327,99.78,0,0,0.14,514.96,3502.54,26124328,99.77,0,0,0.16,514.93,3502.56,26124329,99.67,0,0,0.16,514.91,3502.59,26124330,99.42,0,0,0.59,515.77,3501.74,26124331,99.78,0,0,0.3,515.38,3502.13,26124332,99.73,0,0,0.16,515.36,3502.14,26124333,99.75,0,0,0.16,515.22,3502.28,26124334,99.81,0,0,0.17,515.01,3502.48,26124335,99.51,0,0,0.48,515.77,3501.74,26124336,99.81,0,0,0.4,515.48,3502.02,26124337,99.8,0,0,0.18,515.47,3502.03,26124338,99.8,0,0,0.17,515.44,3502.05,26124339,99.45,0,0,0.31,514.96,3502.51,26124340,99.47,0,0,0.34,515.4,3502.09,26124341,99.61,0,0,0.55,515.75,3501.73,26124342,99.75,0,0,0.15,515.37,3502.1,26124343,99.77,0,0,0.16,515.35,3502.12,26124344,99.66,0,0,0.14,515.49,3501.98,26124345,99.54,0,0,0.34,515.51,3501.97,26124346,99.56,0,0,0.55,515.85,3501.63,26124347,99.73,0,0,0.14,515.46,3502.01,26124348,99.76,0,0,0.15,515.44,3502.03,26124349,99.77,0,0,0.14,515.42,3502.04,26124350,99.62,0,0,0.29,515.42,3502.05,26124351,99.62,0,0,0.56,515.93,3501.54,26124352,99.77,0,0,0.18,515.62,3501.84,26124353,99.74,0,0,0.18,515.61,3501.86,26124354,99.78,0,0,0.21,515.58,3501.87,26124355,99.64,0,0,0.39,515.46,3502.02,26124356,99.64,0,0,0.57,516.15,3501.32,26124357,99.77,0,0,0.16,515.73,3501.73,26124358,99.72,0,0,0.14,515.7,3501.76,26124359,99.78,0,0,0.14,515.68,3501.77,26124360,99.49,0,0,0.31,514.71,3502.76,26124361,99.58,0,0,0.58,515.12,3502.35,26124362,99.76,0,0,0.18,514.88,3502.58,26124363,99.81,0,0,0.18,514.86,3502.59,26124364,99.7,0,0,0.19,514.83,3502.62,26124365,99.6,0,0,0.32,514.95,3502.52,26124366,99.66,0,0,0.48,515.44,3502.02,26124367,99.81,0,0,0.23,515.24,3502.22,26124368,99.79,0,0,0.18,515.2,3502.25,26124369,99.51,0,0,0.32,515.73,3501.7,26124370,99.55,0,0,0.37,515.73,3501.72,26124371,99.69,0,0,0.5,516.02,3501.43,26124372,98.54,0,0,0.19,515.63,3501.81,26124373,99.71,0,0,0.15,515.63,3501.81,26124374,99.79,0,0,0.14,515.61,3501.84,26124375,99.65,0,0,0.34,515.37,3502.09,26124376,99.74,0,0,0.36,515.9,3501.57,26124377,99.81,0,0,0.43,515.57,3501.89,26124378,99.83,0,0,0.14,515.68,3501.77,26124379,99.87,0,0,0.14,515.75,3501.7,26124380,99.7,0,0,0.31,515.28,3502.18,26124381,99.52,0.03,0.08,0.24,520.69,3496.63,26124382,99.64,0.01,0.01,0.57,526.54,3490.7,26124383,99.87,0,0,0.19,526.53,3490.7,26124384,99.81,0,0.02,0.18,526.47,3490.75,26124385,99.09,0,0,0.33,526.23,3491.01,26124386,99.84,0,0,0.14,526.19,3491.04,26124387,99.69,0,0,0.56,526.84,3490.4,26124388,99.78,0,0,0.15,526.57,3490.66,26124389,99.69,0,0,0.18,526.53,3490.69,26124390,99.56,0,0,0.37,524.82,3492.42,26124391,99.71,0,0,0.13,524.76,3492.47,26124392,99.66,0,0,0.58,526.28,3490.95,26124393,99.8,0,0,0.2,526.28,3490.94,26124394,99.83,0,0,0.15,526.29,3490.93,26124395,99.61,0,0,0.29,527.05,3490.19,26124396,99.86,0,0,0.17,527.02,3490.21,26124397,99.68,0,0,0.6,527.49,3489.74,26124398,99.85,0,0,0.14,526.71,3490.51,26124399,99.62,0,0,0.28,526.96,3490.24,26124400,99.57,0,0,0.32,526.93,3490.29,26124401,99.8,0,0,0.14,527.05,3490.16,26124402,99.65,0,0,0.56,527.31,3489.9,26124403,99.84,0,0,0.15,526.77,3490.43,26124404,99.82,0,0,0.2,526.72,3490.47,26124405,99.61,0,0,0.33,526.71,3490.5,26124406,99.83,0,0,0.14,526.69,3490.52,26124407,99.65,0,0,0.41,527.08,3490.12,26124408,99.79,0,0,0.28,526.81,3490.39,26124409,99.71,0,0.02,0.17,526.75,3490.44,26124410,99.68,0,0,0.34,526.74,3490.48,26124411,99.89,0,0,0.12,526.7,3490.51,26124412,99.72,0,0,0.42,527.03,3490.18,26124413,99.81,0,0,0.29,526.73,3490.47,26124414,99.81,0,0,0.15,526.82,3490.38,26124415,99.68,0,0,0.36,526.81,3490.41,26124416,99.8,0,0,0.12,526.78,3490.44,26124417,99.68,0,0,0.17,527.02,3490.19,26124418,99.73,0,0,0.55,527.06,3490.14,26124419,99.83,0,0,0.15,526.68,3490.52,26124420,99.52,0,0,0.32,526.82,3490.39,26124421,99.81,0,0,0.16,526.82,3490.39,26124422,99.78,0,0,0.14,526.78,3490.42,26124423,99.62,0,0,0.54,527.3,3489.9,26124424,99.76,0,0,0.16,526.96,3490.24,26124425,99.63,0,0,0.34,526.22,3490.99,26124426,99.82,0,0,0.18,526.27,3490.93,26124427,99.76,0,0,0.15,526.32,3490.88,26124428,99.62,0,0,0.54,526.64,3490.57,26124429,99.68,0,0,0.27,526.75,3490.43,26124430,99.69,0,0,0.32,526.75,3490.44,26124431,99.77,0,0,0.14,526.7,3490.49,26124432,99.75,0.01,0.01,0.16,526.73,3490.45,26124433,96.08,0.04,0.01,142.81,540.05,3478.66,26124434,99.83,0,0,0.32,528.82,3488.26,26124435,99.61,0,0,0.36,528.98,3488.12,26124436,99.83,0,0,0.13,528.96,3488.14,26124437,99.84,0,0,0.21,528.92,3488.16,26124438,99.7,0,0,0.59,528.01,3489.09,26124439,99.86,0,0,0.16,526.44,3490.67,26124440,99.64,0,0,0.3,525.24,3491.89,26124441,99.88,0.01,0.01,0.16,525.36,3491.77,26124442,99.88,0,0,0.14,525.55,3491.57,26124443,99.73,0,0,0.44,526.72,3490.41,26124444,99.89,0,0,0.29,526.97,3490.16,26124445,99.78,0,0,0.3,526.72,3490.43,26124446,99.85,0,0,0.16,526.69,3490.46,26124447,99.86,0,0,0.14,526.66,3490.48,26124448,99.74,0,0,0.57,527.16,3489.98,26124449,99.82,0,0,0.17,526.77,3490.37,26124450,99.71,0,0,0.38,526.53,3490.62,26124451,99.9,0,0,0.18,526.5,3490.65,26124452,99.87,0,0,0.16,526.46,3490.68,26124453,99.8,0,0.01,0.21,526.31,3490.82,26124454,99.74,0,0,0.57,526.98,3490.19,26124455,99.8,0,0,0.39,526.8,3490.38,26124456,99.84,0.01,0.03,0.24,526.73,3490.44,26124457,99.9,0,0,0.14,526.69,3490.48,26124458,99.8,0,0,0.15,526.66,3490.51,26124459,99.62,0,0,0.69,527.58,3489.56,26124460,99.74,0,0,0.31,527.29,3489.87,26124461,99.83,0,0,0.16,527.26,3489.9,26124462,99.76,0,0,0.14,527.24,3489.91,26124463,99.85,0,0,0.14,527.2,3489.94,26124464,99.74,0,0,0.55,527.93,3489.23,26124465,99.77,0,0,0.33,526.92,3490.26,26124466,99.83,0,0,0.13,526.97,3490.2,26124467,99.76,0,0,0.16,527.04,3490.13,26124468,99.81,0,0,0.14,527.01,3490.16,26124469,99.67,0,0,0.55,527.48,3489.68,26124470,99.69,0,0,0.35,527.2,3489.97,26124471,99.85,0,0,0.2,527.16,3490.01,26124472,99.85,0,0,0.16,527.13,3490.04,26124473,99.86,0,0,0.14,527.28,3489.88,26124474,99.71,0,0,0.55,527.82,3489.34,26124475,99.67,0,0,0.3,527.5,3489.68,26124476,99.84,0,0,0.14,526.98,3490.19,26124477,99.86,0,0,0.16,526.44,3490.73,26124478,99.79,0,0,0.14,526.4,3490.76,26124479,99.71,0,0,0.55,526.69,3490.46,26124480,99.37,0,0,0.34,525.13,3492.04,26124481,99.8,0,0,0.18,525.03,3492.14,26124482,99.85,0,0,0.17,525,3492.17,26124483,99.78,0,0,0.16,525.04,3492.13,26124484,99.59,0,0,0.6,525.98,3491.18,26124485,99.72,0,0,0.35,525.7,3491.48,26124486,99.87,0,0,0.16,525.73,3491.44,26124487,99.87,0,0,0.16,525.79,3491.38,26124488,99.88,0,0,0.19,525.76,3491.41,26124489,99.61,0,0,0.55,526.91,3490.23,26124490,99.7,0,0,0.45,526.45,3490.7,26124491,99.84,0,0,0.17,526.42,3490.73,26124492,99.77,0.01,0.01,0.14,526.45,3490.69,26124493,99.67,0,0,0.15,526.52,3490.62,26124494,99.63,0,0,0.15,526.49,3490.65,26124495,99.21,0,0,0.74,525.61,3491.55,26124496,99.73,0,0,0.14,525.22,3491.93,26124497,99.78,0,0,0.19,525.19,3491.96,26124498,99.78,0,0,0.16,525.15,3491.99,26124499,99.86,0,0,0.17,525.21,3491.92,26124500,99.49,0,0,0.75,526.72,3490.44,26124501,99.76,0.01,0.01,0.15,526.53,3490.62,26124502,99.73,0,0,0.16,526.48,3490.67,26124503,99.75,0,0,0.15,526.45,3490.7,26124504,99.86,0,0,0.15,526.42,3490.71,26124505,99.54,0,0,0.72,526.56,3490.59,26124506,99.88,0,0,0.16,526.54,3490.61,26124507,99.88,0,0,0.13,526.53,3490.62,26124508,99.82,0,0,0.16,526.5,3490.64,26124509,99.85,0,0,0.14,526.47,3490.67,26124510,99.53,0,0,0.76,526.96,3490.2,26124511,99.87,0,0,0.14,526.92,3490.23,26124512,99.84,0,0,0.14,526.89,3490.25,26124513,99.87,0,0,0.19,526.8,3490.34,26124514,99.78,0,0,0.14,526.52,3490.62,26124515,99.34,0,0,0.75,526.59,3490.56,26124516,99.78,0,0,0.17,526.47,3490.68,26124517,99.83,0,0,0.16,526.43,3490.71,26124518,99.83,0,0,0.16,526.4,3490.74,26124519,99.67,0,0,0.27,526.53,3490.58,26124520,99.58,0,0,0.66,526.93,3490.2,26124521,99.83,0,0,0.22,526.55,3490.58,26124522,99.83,0,0,0.17,526.51,3490.62,26124523,99.45,0,0,0.54,526.72,3490.39,26124524,99.78,0,0,0.15,526.93,3490.2,26124525,99.51,0.01,0.01,0.62,527.16,3489.99,26124526,99.78,0,0,0.31,526.77,3490.37,26124527,99.78,0,0,0.14,526.74,3490.4,26124528,99.78,0,0,0.16,526.7,3490.45,26124529,99.8,0,0.01,0.15,526.73,3490.44,26124530,99.5,0,0,0.54,527.57,3489.61,26124531,99.79,0,0,0.34,526.54,3490.64,26124532,99.77,0,0,0.16,526.5,3490.68,26124533,99.8,0,0,0.14,526.46,3490.71,26124534,99.81,0,0,0.16,526.43,3490.74,26124535,99.72,0,0,0.36,526.79,3490.39,26124536,99.64,0,0.01,0.56,527.39,3489.79,26124537,99.85,0,0,0.15,527.01,3490.17,26124538,99.82,0,0,0.16,526.97,3490.2,26124539,99.83,0,0,0.15,526.93,3490.24,26124540,99.44,0,0,0.31,526.79,3490.4,26124541,99.66,0,0,0.58,527.19,3489.99,26124542,99.81,0,0,0.14,526.8,3490.37,26124543,99.84,0,0,0.15,526.77,3490.41,26124544,99.76,0,0,0.15,526.73,3490.43,26124545,99.63,0,0,0.31,526.79,3490.4,26124546,99.68,0,0,0.55,527.3,3489.88,26124547,99.83,0,0,0.16,527.08,3490.1,26124548,99.71,0,0,0.14,527.04,3490.13,26124549,99.76,0,0,0.28,527,3490.15,26124550,99.6,0,0,0.31,526.27,3490.9,26124551,99.6,0,0,0.55,527.21,3489.95,26124552,99.76,0.01,0.01,0.17,527.06,3490.1,26124553,99.83,0,0,0.15,527.03,3490.12,26124554,99.43,0,0,0.18,527,3490.15,26124555,99.7,0,0,0.37,526.74,3490.42,26124556,99.54,0,0,0.56,527.14,3490.01,26124557,99.79,0,0,0.2,526.99,3490.17,26124558,99.71,0,0,0.17,527.05,3490.1,26124559,99.77,0,0,0.18,527.01,3490.13,26124560,99.7,0,0,0.32,526.99,3490.17,26124561,99.67,0.01,0.01,0.57,527.1,3490.06,26124562,99.88,0,0,0.15,526.42,3490.73,26124563,99.88,0,0,0.14,526.55,3490.6,26124564,99.77,0,0,0.17,526.53,3490.61,26124565,99.66,0,0,0.32,526.04,3491.12,26124566,99.66,0,0,0.59,526.58,3490.57,26124567,99.88,0,0,0.17,525.7,3491.45,26124568,99.81,0,0,0.17,525.73,3491.42,26124569,99.86,0,0,0.17,525.81,3491.33,26124570,99.66,0,0,0.32,527.02,3490.14,26124571,99.75,0,0,0.31,527.32,3489.83,26124572,99.46,0,0,0.39,525.74,3491.41,26124573,99.86,0,0,0.17,526,3491.15,26124574,99.84,0,0,0.15,526.42,3490.72,26124575,99.66,0,0,0.33,525.94,3491.23,26124576,99.68,0,0,0.31,526.45,3490.71,26124577,99.79,0,0,0.38,527.02,3490.13,26124578,99.85,0,0,0.16,527,3490.15,26124579,99.66,0,0,0.28,526.48,3490.65,26124580,99.64,0,0,0.31,526.95,3490.19,26124581,99.88,0,0,0.16,526.91,3490.22,26124582,99.67,0,0,0.55,527.96,3489.17,26124583,99.78,0,0,0.14,527.31,3489.82,26124584,99.85,0,0,0.16,527.28,3489.86,26124585,99.7,0,0,0.33,526.08,3491.08,26124586,99.81,0,0,0.14,526.01,3491.14,26124587,99.68,0,0,0.57,527.3,3489.87,26124588,99.8,0,0,0.15,527.18,3489.99,26124589,99.82,0,0,0.14,527.3,3489.86,26124590,99.64,0,0,0.31,526.61,3490.57,26124591,99.8,0,0,0.16,526.54,3490.63,26124592,99.71,0,0,0.55,527.21,3489.96,26124593,99.85,0,0,0.15,526.97,3490.2,26124594,99.83,0,0,0.15,526.93,3490.23,26124595,99.72,0,0,0.32,527.25,3489.93,26124596,99.86,0,0,0.16,527.32,3489.85,26124597,99.7,0,0,0.54,527.23,3489.94,26124598,99.9,0,0,0.17,526.51,3490.65,26124599,99.89,0,0,0.14,526.47,3490.68,26124600,99.64,0,0,0.35,527.18,3489.99,26124601,99.82,0,0,0.14,527.2,3489.97,26124602,99.7,0,0,0.42,527.52,3489.64,26124603,99.75,0,0,0.31,526.3,3490.86,26124604,99.79,0,0,0.16,526.27,3490.88,26124605,99.78,0,0,0.32,527.23,3489.94,26124606,99.85,0,0,0.14,527.21,3489.96,26124607,99.54,0,0,0.57,527.44,3489.72,26124608,99.86,0,0,0.16,526.74,3490.42,26124609,99.64,0,0.01,0.33,527.02,3490.11,26124610,99.75,0,0,0.34,526.5,3490.65,26124611,99.9,0,0,0.16,526.46,3490.69,26124612,99.73,0.01,0.01,0.41,526.91,3490.23,26124613,99.79,0,0,0.29,527.13,3490,26124614,99,0,0,0.14,527.26,3489.87,26124615,99.68,0,0,0.34,527.29,3489.85,26124616,99.83,0,0,0.14,527.25,3489.9,26124617,99.72,0,0,0.39,527.57,3489.57,26124618,99.83,0,0,0.42,527.19,3489.95,26124619,99.8,0,0,0.14,527.16,3489.97,26124620,99.74,0,0,0.35,526.99,3490.16,26124621,99.76,0.01,0.01,0.16,527.03,3490.11,26124622,99.87,0,0,0.17,527.01,3490.13,26124623,99.71,0,0,0.55,527.58,3489.56,26124624,99.78,0,0,0.16,526.94,3490.19,26124625,99.7,0,0,0.32,526.22,3490.92,26124626,99.86,0,0,0.15,526.16,3490.98,26124627,99.88,0,0,0.16,526.23,3490.91,26124628,99.72,0,0,0.63,527,3490.13,26124629,99.85,0,0,0.17,526.55,3490.57,26124630,99.65,0,0,0.34,525.79,3491.35,26124631,99.86,0,0,0.15,525.74,3491.4,26124632,99.78,0,0,0.16,525.71,3491.43,26124633,99.66,0,0,0.57,526.28,3490.85,26124634,99.8,0,0,0.16,526,3491.12,26124635,99.76,0,0,0.31,526.07,3491.07,26124636,99.8,0,0,0.16,526.03,3491.1,26124637,99.87,0,0,0.14,526,3491.13,26124638,99.71,0,0,0.54,526.92,3490.2,26124639,99.75,0,0,0.35,526.66,3490.44,26124640,99.75,0,0,0.31,526.91,3490.21,26124641,99.8,0,0,0.14,527.04,3490.07,26124642,99.81,0,0,0.16,527.03,3490.08,26124643,99.73,0,0,0.4,527.42,3489.68,26124644,99.85,0,0,0.29,526.72,3490.38,26124645,99.71,0,0,0.38,526.47,3490.64,26124646,99.83,0,0,0.14,526.43,3490.68,26124647,99.8,0.01,0.01,0.18,526.49,3490.62,26124648,99.65,0,0,0.5,526.92,3490.18,26124649,99.86,0,0,0.21,526.74,3490.35,26124650,99.7,0,0,0.32,525.53,3491.59,26124651,99.82,0,0,0.14,525.47,3491.64,26124652,99.83,0,0,0.18,525.44,3491.67,26124653,99.73,0,0,0.52,525.87,3491.23,26124654,99.85,0,0,0.21,526.27,3490.82,26124655,99.68,0.01,0.01,0.33,526.73,3490.38,26124656,99.84,0,0,0.15,526.64,3490.47,26124657,99.88,0,0,0.14,526.72,3490.39,26124658,99.83,0,0,0.15,526.51,3490.59,26124659,99.7,0,0,0.57,527.14,3489.95,26124660,99.41,0,0.01,0.33,526.46,3490.65,26124661,99.71,0,0.01,0.18,526.39,3490.71,26124662,99.71,0,0,0.17,526.52,3490.58,26124663,99.84,0,0,0.14,526.51,3490.59,26124664,99.67,0,0,0.59,526.43,3490.66,26124665,99.66,0,0,0.35,525.73,3491.37,26124666,99.8,0,0,0.14,525.7,3491.41,26124667,99.83,0,0,0.15,525.65,3491.46,26124668,99.87,0,0,0.15,525.72,3491.39,26124669,99.49,0,0,0.68,527.19,3489.9,26124670,99.74,0,0,0.31,527.03,3490.08,26124671,99.87,0,0,0.16,526.99,3490.11,26124672,99.85,0.01,0.01,0.14,526.96,3490.14,26124673,99.8,0,0,0.17,526.9,3490.19,26124674,99.71,0,0,0.56,527.15,3489.97,26124675,99.69,0,0,0.36,526.81,3490.34,26124676,99.83,0,0,0.17,526.78,3490.37,26124677,99.87,0,0,0.21,526.75,3490.4,26124678,99.85,0,0,0.16,526.71,3490.43,26124679,99.75,0,0,0.48,527.45,3489.68,26124680,99.67,0,0,0.4,526.42,3490.72,26124681,99.87,0.01,0.01,0.18,526.47,3490.67,26124682,99.89,0,0,0.14,526.52,3490.62,26124683,99.91,0,0,0.16,526.5,3490.64,26124684,99.72,0,0,0.57,526.82,3490.31,26124685,99.77,0,0,0.32,526.94,3490.21,26124686,99.88,0,0,0.16,526.91,3490.24,26124687,99.88,0,0.02,0.18,526.97,3490.17,26124688,99.81,0,0,0.15,527.01,3490.13,26124689,99.76,0,0,0.55,527.33,3489.8,26124690,99.68,0,0,0.34,526.78,3490.36,26124691,99.85,0,0.01,0.19,526.67,3490.47,26124692,99.86,0,0,0.14,526.7,3490.44,26124693,99.83,0,0,0.18,526.7,3490.43,26124694,99.74,0,0,0.43,526.91,3490.22,26124695,99.71,0,0,0.46,527.21,3489.93,26124696,99.89,0,0,0.16,527.19,3489.95,26124697,99.89,0,0,0.15,527.16,3489.97,26124698,99.82,0,0,0.16,527.13,3490,26124699,99.67,0,0,0.27,526.93,3490.18,26124700,99.45,0,0,0.74,527.78,3489.35,26124701,99.82,0,0,0.14,526.99,3490.14,26124702,99.83,0,0,0.16,526.96,3490.16,26124703,99.86,0,0,0.16,526.92,3490.19,26124704,99.89,0,0,0.14,526.89,3490.23,26124705,99.66,0,0,0.81,527.38,3489.77,26124706,99.84,0,0,0.15,526.69,3490.45,26124707,99.85,0,0,0.14,526.76,3490.37,26124708,99.83,0,0,0.18,526.73,3490.4,26124709,99.81,0,0,0.17,526.69,3490.43,26124710,99.6,0,0,0.74,527.32,3489.81,26124711,99.83,0,0,0.18,527.13,3489.99,26124712,99.87,0,0,0.16,527.1,3490.02,26124713,99.88,0,0,0.14,527.16,3489.95,26124714,99.92,0,0,0.14,527.26,3489.85,26124715,99.67,0,0,0.68,527.61,3489.52,26124716,99.87,0,0,0.2,527.21,3489.91,26124717,99.89,0,0,0.13,527.18,3489.94,26124718,99.87,0.01,0.01,0.17,527.13,3489.99,26124719,99.89,0,0,0.14,527.19,3489.92,26124720,99.42,0,0,0.57,527.6,3489.53,26124721,99.82,0,0,0.31,527.22,3489.9,26124722,99.85,0,0,0.15,527.19,3489.93,26124723,99.8,0,0,0.14,527.16,3489.96,26124724,99.83,0,0,0.15,527.12,3489.99,26124725,99.59,0,0,0.76,527.05,3490.07,26124726,99.86,0,0,0.17,527.24,3489.88,26124727,99.83,0,0,0.14,527.24,3489.88,26124728,99.84,0,0,0.18,527.2,3489.91,26124729,99.62,0,0,0.27,527.44,3489.65,26124730,99.54,0,0,0.61,527.04,3490.06,26124731,99.83,0,0,0.29,526.87,3490.22,26124732,99.81,0,0.01,0.16,526.91,3490.18,26124733,99.76,0,0,0.14,526.99,3490.1,26124734,99.76,0,0,0.15,526.96,3490.13,26124735,99.65,0,0,0.33,526.96,3490.14,26124736,98.77,0,0,0.55,527.5,3489.59,26124737,99.82,0,0,0.19,527.13,3489.96,26124738,99.87,0,0,0.14,527.1,3489.99,26124739,99.87,0,0,0.14,527.17,3489.91,26124740,99.71,0,0,0.32,526.29,3490.81,26124741,99.62,0.01,0.01,0.58,526.79,3490.31,26124742,99.76,0,0,0.17,526.43,3490.66,26124743,99.76,0,0,0.14,526.4,3490.69,26124744,99.81,0,0,0.14,526.37,3490.72,26124745,99.72,0,0,0.32,527.08,3490.02,26124746,99.74,0,0,0.59,527.87,3489.22,26124747,99.8,0,0,0.15,527.21,3489.88,26124748,99.86,0,0,0.15,527.17,3489.91,26124749,99.8,0,0,0.14,527.14,3489.94,26124750,99.75,0,0,0.3,527.37,3489.73,26124751,99.7,0,0,0.55,527.56,3489.54,26124752,99.84,0,0,0.16,527.15,3489.95,26124753,99.8,0,0,0.19,527.11,3489.98,26124754,99.79,0,0,0.15,526.7,3490.39,26124755,99.64,0,0,0.32,526.68,3490.42,26124756,99.62,0,0,0.55,527.14,3489.95,26124757,99.81,0,0,0.16,526.86,3490.22,26124758,99.85,0,0,0.14,526.83,3490.25,26124759,99.7,0,0,0.29,526.91,3490.15,26124760,99.74,0,0,0.33,527.24,3489.84,26124761,99.66,0,0,0.5,527.67,3489.4,26124762,99.76,0,0,0.19,527.44,3489.63,26124763,99.74,0,0,0.16,527.4,3489.66,26124764,99.78,0,0,0.14,527.37,3489.69,26124765,99.55,0,0,0.34,527.11,3489.97,26124766,99.59,0,0,0.54,527.58,3489.49,26124767,99.73,0,0,0.19,526.49,3490.57,26124768,99.71,0,0,0.15,526.46,3490.6,26124769,99.78,0,0,0.16,526.42,3490.63,26124770,99.49,0,0,0.3,526.21,3490.86,26124771,99.62,0,0,0.3,526.55,3490.52,26124772,99.75,0,0,0.39,527.33,3489.73,26124773,99.68,0,0,0.14,527.46,3489.6,26124774,99.77,0,0,0.14,527.45,3489.6,26124775,99.59,0,0,0.38,526.25,3490.81,26124776,99.7,0,0,0.16,526.18,3490.88,26124777,99.59,0,0,0.55,527.16,3489.9,26124778,99.73,0,0,0.15,526.85,3490.2,26124779,99.78,0,0,0.19,527.05,3490,26124780,98.67,0,0,10.38,526.75,3490.56,26124781,99.74,0,0,0.14,526.62,3490.73,26124782,99.59,0,0,0.58,526.93,3490.4,26124783,99.78,0,0,0.14,526.55,3490.78,26124784,99.76,0,0,0.13,526.51,3490.81,26124785,99.55,0,0,0.32,526.75,3490.62,26124786,99.79,0,0,0.16,526.72,3490.66,26124787,99.61,0,0,0.55,527.52,3489.85,26124788,99.77,0,0,0.15,526.84,3490.53,26124789,99.59,0,0,0.27,526.82,3490.53,26124790,99.67,0,0,0.31,526.56,3490.81,26124791,99.83,0,0,0.16,526.53,3490.84,26124792,99.65,0.01,0.01,0.53,526.85,3490.51,26124793,99.8,0,0,0.16,526.54,3490.81,26124794,99.82,0,0,0.15,526.61,3490.74,26124795,99.71,0,0,0.33,526.85,3490.52,26124796,99.78,0,0.01,0.19,526.82,3490.56,26124797,94.94,0.3,0.01,78.85,540.87,3475.99,26124798,99.61,0,0,181.64,529.1,3488.04,26124799,99.78,0,0,0.16,529.17,3487.96,26124800,99.6,0,0,0.31,529.24,3487.91,26124801,99.71,0.01,0.01,0.17,529.19,3487.96,26124802,99.65,0,0,0.58,528.65,3488.51,26124803,99.8,0,0,0.14,526.71,3490.48,26124804,99.73,0,0,0.16,526.67,3490.51,26124805,99.6,0,0,0.33,525.85,3491.35,26124806,99.75,0,0,0.13,525.83,3491.37,26124807,99.63,0,0,0.4,526.48,3490.71,26124808,99.41,0,0,0.29,526.49,3490.7,26124809,99.78,0,0,0.15,526.47,3490.72,26124810,99.56,0,0,0.31,525.75,3491.46,26124811,99.74,0,0,0.16,525.68,3491.52,26124812,99.62,0,0,0.3,526.17,3491.02,26124813,99.74,0,0,0.4,526.98,3490.22,26124814,99.71,0,0,0.16,526.74,3490.44,26124815,99.73,0,0,0.34,526.97,3490.23,26124816,99.78,0,0,0.16,526.94,3490.25,26124817,99.67,0,0,0.3,527.25,3489.94,26124818,99.74,0,0,0.36,526.71,3490.49,26124819,99.72,0,0,0.27,527.03,3490.17,26124820,99.65,0,0,0.3,526.78,3490.43,26124821,99.77,0,0,0.16,526.74,3490.47,26124822,99.66,0,0,0.14,526.7,3490.5,26124823,99.64,0,0,0.52,527.57,3489.63,26124824,99.71,0,0,0.15,526.88,3490.33,26124825,99.53,0,0,0.32,527.07,3490.17,26124826,99.78,0,0,0.14,527.06,3490.17,26124827,99.74,0,0,0.16,527.03,3490.2,26124828,99.52,0,0,0.57,527.27,3489.96,26124829,99.76,0,0,0.17,526.72,3490.5,26124830,99.63,0,0,0.32,527.2,3490.04,26124831,99.79,0,0,0.16,527.17,3490.06,26124832,99.72,0,0,0.15,527.29,3489.94,26124833,99.68,0,0,0.54,526.49,3490.73,26124834,99.74,0,0,0.14,525.53,3491.69,26124835,99.58,0,0,0.32,526.49,3490.74,26124836,99.72,0,0,0.14,526.48,3490.75,26124837,99.8,0,0,0.16,526.45,3490.77,26124838,99.66,0,0,0.47,526.28,3490.94,26124839,99.75,0,0,0.2,525.55,3491.67,26124840,99.51,0,0,0.34,527.06,3490.17,26124841,99.62,0,0,0.17,527.01,3490.21,26124842,99.74,0,0,0.14,526.98,3490.24,26124843,99.63,0,0,0.54,527.5,3489.72,26124844,99.72,0,0,0.16,526.92,3490.29,26124845,99.61,0,0,0.29,526.92,3490.31,26124846,99.7,0,0,0.14,526.99,3490.24,26124847,99.79,0,0,0.16,527.04,3490.18,26124848,99.59,0,0,0.54,527.36,3489.86,26124849,99.61,0,0,0.27,526.98,3490.22,26124850,99.51,0,0,0.26,526.01,3491.2,26124851,99.75,0,0,0.16,525.94,3491.26,26124852,99.71,0,0.01,0.14,525.91,3491.29,26124853,99.41,0,0,0.4,526.53,3490.66,26124854,99.57,0,0,0.28,527.01,3490.18,26124855,99.61,0,0,0.28,527.24,3489.97,26124856,99.54,0,0,0.15,527.2,3490,26124857,99.45,0,0,0.23,527.17,3490.03,26124858,99.73,0,0,0.14,527.14,3490.05,26124859,99.54,0,0,0.56,527.39,3489.79,26124860,99.63,0,0,0.25,527.28,3489.93,26124861,99.71,0.01,0.01,0.16,527.26,3489.94,26124862,99.7,0,0,0.14,527.22,3489.98,26124863,99.66,0,0,0.15,527.19,3490,26124864,99.58,0,0,0.55,527.51,3489.68,26124865,99.35,0,0,0.27,525.93,3491.27,26124866,99.76,0,0,0.18,525.98,3491.22,26124867,99.7,0,0,0.16,526.04,3491.15,26124868,99.69,0,0,0.15,526.01,3491.18,26124869,99.41,0,0,0.53,526.8,3490.39,26124870,99.46,0,0,0.27,526.95,3490.25,26124871,99.75,0,0,0.16,526.9,3490.29,26124872,99.64,0,0,0.15,526.88,3490.31,26124873,99.68,0,0,0.17,526.9,3490.28,26124874,99.54,0,0,0.55,527.21,3489.97,26124875,99.61,0,0,0.27,527.26,3489.94,26124876,99.74,0,0,0.13,527.24,3489.96,26124877,99.71,0,0,0.16,527.21,3489.98,26124878,99.67,0,0,0.14,527.17,3490.02,26124879,99.4,0,0,0.66,527.33,3489.83,26124880,99.52,0,0,0.32,526.09,3491.09,26124881,99.72,0,0,0.13,526.05,3491.13,26124882,99.71,0,0,0.16,526.02,3491.15,26124883,99.74,0,0,0.14,525.99,3491.18,26124884,99.57,0,0,0.42,526.66,3490.52,26124885,99.7,0,0,0.38,527.41,3489.78,26124886,99.63,0,0,0.16,527.4,3489.79,26124887,99.73,0,0,0.14,527.55,3489.64,26124888,99.72,0,0,0.15,527.52,3489.67,26124889,99.56,0,0,0.49,527.84,3489.34,26124890,99.55,0,0,0.3,527.48,3489.71,26124891,99.77,0,0,0.16,527.45,3489.75,26124892,99.69,0,0,0.14,527.41,3489.78,26124893,99.71,0,0,0.14,527.37,3489.81,26124894,99.62,0,0,0.4,527.86,3489.32,26124895,99.65,0,0,0.39,527.28,3489.92,26124896,99.76,0,0,0.18,527.23,3489.96,26124897,99.78,0,0,0.14,527.2,3489.99,26124898,99.76,0,0,0.15,527.17,3490.01,26124899,99.74,0,0,0.14,527.14,3490.04,26124900,99.17,0,0,0.7,526.31,3490.89,26124901,99.77,0,0,0.14,525.81,3491.39,26124902,99.65,0,0,0.16,525.77,3491.42,26124903,99.72,0,0,0.15,525.74,3491.45,26124904,99.74,0,0.01,0.16,525.7,3491.47,26124905,99.49,0,0,0.73,527.67,3489.52,26124906,99.73,0,0,0.18,527.45,3489.74,26124907,99.69,0,0,0.18,527.52,3489.67,26124908,99.7,0,0,0.18,527.47,3489.72,26124909,99.57,0,0,0.29,527.45,3489.71,26124910,99.39,0,0,0.63,527.67,3489.51,26124911,99.69,0,0,0.16,527.14,3490.04,26124912,99.63,0.01,0.01,0.14,527.2,3489.96,26124913,99.73,0,0,0.15,527.25,3489.91,26124914,99.73,0,0,0.13,527.23,3489.93,26124915,99.38,0,0,0.71,527.66,3489.51,26124916,99.78,0,0,0.18,527.18,3489.99,26124917,99.78,0,0,0.22,526.91,3490.26,26124918,99.69,0,0,0.21,526.88,3490.3,26124919,99.73,0,0,0.19,526.99,3490.18,26124920,99.33,0,0,0.7,527.76,3489.44,26124921,99.68,0.01,0.01,0.2,526.77,3490.42,26124922,99.73,0,0,0.2,526.73,3490.46,26124923,99.71,0,0,0.2,526.7,3490.49,26124924,99.68,0,0.02,0.25,526.65,3490.53,26124925,99.44,0,0,0.54,527.49,3489.71,26124926,99.79,0,0,0.34,527.29,3489.9,26124927,99.89,0,0,0.19,527.25,3489.93,26124928,99.83,0,0,0.2,527.22,3489.97,26124929,99.84,0,0,0.2,527.19,3489.99,26124930,99.44,0,0,0.56,528,3489.2,26124931,99.8,0,0,0.41,527.4,3489.8,26124932,99.8,0,0,0.2,527.53,3489.66,26124933,99.83,0,0,0.21,527.48,3489.71,26124934,99.83,0,0,0.18,526.99,3490.19,26124935,99.64,0,0,0.57,527.83,3489.37,26124936,99.81,0,0,0.31,527.69,3489.51,26124937,99.78,0,0,0.18,527.64,3489.55,26124938,99.81,0,0,0.17,527.03,3490.15,26124939,99.55,0,0,0.28,526.77,3490.39,26124940,99.58,0,0,0.29,526.51,3490.67,26124941,99.57,0,0,0.6,526.3,3490.88,26124942,99.8,0,0,0.14,525.46,3491.71,26124943,99.8,0,0,0.17,525.42,3491.74,26124944,99.79,0,0,0.18,525.39,3491.77,26124945,99.71,0,0,0.33,526.75,3490.42,26124946,99.61,0,0,0.56,527.22,3489.95,26124947,99.73,0,0,0.16,526.72,3490.44,26124948,99.73,0,0,0.15,526.69,3490.46,26124949,99.82,0,0,0.16,526.66,3490.49,26124950,99.65,0,0,0.29,526.44,3490.73,26124951,99.62,0,0,0.59,526.93,3490.23,26124952,99.68,0,0,0.15,526.77,3490.4,26124953,99.85,0,0,0.16,526.74,3490.42,26124954,99.8,0,0,0.18,526.7,3490.45,26124955,99.67,0,0,0.33,525.97,3491.2,26124956,99.65,0,0,0.53,526.45,3490.71,26124957,99.82,0,0,0.16,526.4,3490.76,26124958,99.81,0,0,0.14,526.52,3490.64,26124959,99.84,0,0,0.17,526.49,3490.67,26124960,99.36,0,0,0.26,526.48,3490.69,26124961,99.61,0,0,0.52,526.99,3490.18,26124962,99.72,0,0,0.23,526.89,3490.28,26124963,99.83,0,0,0.15,526.85,3490.31,26124964,99.77,0,0,0.18,527,3490.16,26124965,99.73,0,0,0.32,526.78,3490.39,26124966,99.68,0,0,0.43,527.45,3489.71,26124967,99.84,0,0,0.29,526.7,3490.46,26124968,99.83,0,0,0.14,526.67,3490.49,26124969,99.5,0,0,0.28,526.66,3490.5,26124970,99.65,0,0,0.27,526.53,3490.64,26124971,99.66,0.01,0.02,0.38,527.07,3490.1,26124972,99.82,0,0.01,0.39,526.89,3490.27,26124973,99.73,0,0,0.15,526.96,3490.19,26124974,99.73,0,0,0.16,527,3490.17,26124975,99.56,0,0,0.28,524.81,3492.38,26124976,99.66,0,0,0.15,524.73,3492.45,26124977,99.59,0,0,0.58,526.79,3490.38,26124978,99.78,0,0,0.14,526.64,3490.53,26124979,99.71,0,0,0.14,526.69,3490.48,26124980,99.61,0,0,0.32,526.79,3490.39,26124981,99.8,0.01,0.01,0.14,526.75,3490.43,26124982,99.6,0,0,0.62,527.28,3489.89,26124983,99.79,0,0,0.15,526.93,3490.24,26124984,99.79,0,0,0.15,526.9,3490.27,26124985,99.66,0,0,0.34,526.18,3491,26124986,99.79,0,0,0.14,526.23,3490.95,26124987,99.67,0,0,0.57,526.63,3490.54,26124988,99.76,0,0,0.18,526.24,3490.93,26124989,99.85,0,0,0.18,526.21,3490.95,26124990,99.43,0,0,0.27,526.19,3490.99,26124991,99.74,0,0,0.16,526.16,3491.02,26124992,99.62,0,0,0.45,526.95,3490.22,26124993,99.8,0,0,0.24,527.01,3490.16,26124994,99.79,0,0,0.19,526.74,3490.42,26124995,99.55,0,0,0.29,526.72,3490.45,26124996,99.6,0,0,0.14,526.69,3490.48,26124997,99.69,0,0,0.52,527.11,3490.06,26124998,99.81,0,0,0.19,526.86,3490.3,26124999,99.7,0,0,0.28,526.91,3490.23,26125000,99.64,0,0,0.3,527.01,3490.15,26125001,99.78,0,0,0.16,526.98,3490.18,26125002,99.63,0,0,0.41,527.26,3489.89,26125003,99.77,0,0,0.29,525.68,3491.47,26125004,99.81,0,0,0.16,525.64,3491.51,26125005,99.76,0,0,0.3,527.09,3490.09,26125006,99.86,0,0,0.16,527.26,3489.92,26125007,99.67,0,0,0.3,527.6,3489.57,26125008,99.76,0,0,0.4,526.96,3490.2,26125009,99.76,0,0,0.17,526.92,3490.24,26125010,99.63,0,0,0.28,527.17,3490.01,26125011,99.77,0,0,0.13,527.14,3490.04,26125012,99.68,0,0,0.33,527.53,3489.64,26125013,99.82,0,0,0.43,526.02,3491.14,26125014,99.8,0,0,0.17,525.99,3491.17,26125015,99.63,0,0,0.27,525.02,3492.16,26125016,99.76,0,0,0.18,524.97,3492.21,26125017,99.83,0,0,0.14,524.93,3492.24,26125018,99.61,0,0,0.55,527.52,3489.65,26125019,99.82,0,0,0.14,527.26,3489.9,26125020,99.28,0,0,0.26,527.05,3490.13,26125021,99.54,0,0,0.16,526.97,3490.21,26125022,99.71,0,0,0.17,526.94,3490.23,26125023,99.62,0,0,0.53,526.57,3490.59,26125024,99.75,0,0,0.15,525.87,3491.29,26125025,99.58,0.03,0.08,0.31,526.44,3490.74,26125026,99.85,0,0,0.14,526.38,3490.79,26125027,99.88,0,0,0.16,526.47,3490.7,26125028,99.61,0,0,0.54,526.86,3490.3,26125029,99.67,0,0,0.29,527.19,3489.95,26125030,99.74,0,0,0.29,527.43,3489.73,26125031,99.74,0,0,0.16,527.4,3489.75,26125032,99.78,0,0.01,0.14,527.37,3489.78,26125033,99.71,0,0,0.46,527.56,3489.57,26125034,99.74,0,0,0.24,527.19,3489.93,26125035,99.62,0,0,0.27,527.21,3489.93,26125036,99.78,0,0,0.16,527.18,3489.95,26125037,99.69,0,0,0.19,527.15,3489.98,26125038,99.69,0,0,0.51,527.76,3489.36,26125039,99.8,0,0,0.2,527.08,3490.05,26125040,99.68,0,0,0.27,527.17,3489.97,26125041,99.79,0.01,0.01,0.14,527.24,3489.89,26125042,99.81,0,0,0.16,527.21,3489.92,26125043,99.66,0,0,0.43,527.68,3489.45,26125044,99.85,0,0,0.28,527.4,3489.72,26125045,99.66,0,0,0.27,527.15,3489.99,26125046,99.83,0,0,0.16,527.11,3490.02,26125047,99.79,0,0,0.14,527.18,3489.95,26125048,99.58,0,0,0.4,527.55,3489.57,26125049,99.75,0,0,0.28,526.95,3490.18,26125050,99.36,0,0.01,0.28,525.94,3491.2,26125051,99.5,0,0,0.16,525.88,3491.25,26125052,99.77,0,0,0.14,525.93,3491.2,26125053,99.86,0,0,0.15,526.03,3491.09,26125054,99.63,0,0,0.57,527.55,3489.56,26125055,99.52,0,0,0.27,527.24,3489.9,26125056,99.83,0,0,0.14,527.16,3489.97,26125057,99.79,0,0,0.16,527.13,3490,26125058,99.72,0,0,0.14,527.09,3490.03,26125059,99.39,0,0,0.79,527.57,3489.53,26125060,99.47,0,0,0.26,527.48,3489.63,26125061,99.74,0,0,0.17,527.47,3489.65,26125062,99.75,0,0,0.14,527.43,3489.68,26125063,99.8,0,0,0.15,527.39,3489.71,26125064,99.56,0,0,0.56,527.9,3489.22,26125065,99.62,0,0,0.32,526.16,3490.97,26125066,99.77,0,0,0.39,525.98,3491.17,26125067,99.76,0,0,0.14,526.01,3491.14,26125068,99.72,0,0,0.16,525.97,3491.17,26125069,99.7,0,0,0.5,527.01,3490.13,26125070,99.67,0,0,0.32,527.15,3490.01,26125071,99.75,0,0,0.17,527.11,3490.06,26125072,99.78,0,0,0.15,527.23,3489.94,26125073,99.73,0,0,0.16,527.22,3489.94,26125074,99.54,0,0,0.51,527.66,3489.5,26125075,99.61,0,0,0.37,527.17,3490,26125076,99.79,0,0,0.17,527.13,3490.03,26125077,99.81,0,0,0.15,527.11,3490.05,26125078,99.8,0,0,0.15,527.15,3490.01,26125079,99.58,0,0,0.44,528.03,3489.15,26125080,99.51,0,0,0.39,527.47,3489.72,26125081,99.68,0,0,0.16,527.44,3489.74,26125082,99.75,0,0,0.14,527.41,3489.77,26125083,99.85,0,0,0.16,527.37,3489.81,26125084,99.67,0,0,0.5,527.97,3489.2,26125085,99.6,0,0,0.32,527.26,3489.93,26125086,99.78,0,0,0.14,527.26,3489.93,26125087,99.81,0,0,0.18,527.21,3489.97,26125088,99.7,0,0,0.15,527.18,3490,26125089,99.54,0,0.02,0.3,527.62,3489.53,26125090,99.3,0,0,0.62,526.56,3490.61,26125091,99.84,0,0,0.16,526.27,3490.9,26125092,99.78,0.01,0.01,0.15,526.22,3490.95,26125093,99.58,0,0,0.16,525.96,3491.2,26125094,99.67,0,0,0.13,525.93,3491.22,26125095,99.37,0,0,0.71,526.5,3490.66,26125096,99.73,0,0,0.18,526.12,3491.04,26125097,99.69,0,0,0.22,526.17,3490.98,26125098,99.74,0,0,0.18,526.25,3490.9,26125099,99.8,0,0,0.14,526.22,3490.93,26125100,99.48,0,0,0.7,527.43,3489.73,26125101,99.68,0.01,0.01,0.18,526.67,3490.48,26125102,99.79,0,0,0.18,526.64,3490.51,26125103,99.73,0,0,0.16,526.6,3490.55,26125104,99.65,0,0,0.21,526.65,3490.49,26125105,99.44,0,0,0.72,526.74,3490.42,26125106,99.77,0,0,0.17,526.17,3490.99,26125107,99.5,0,0,0.15,526.14,3491.01,26125108,99.67,0,0,0.15,526.11,3491.04,26125109,99.84,0,0,0.15,526.17,3490.97,26125110,99.48,0,0,0.64,527.18,3489.98,26125111,99.72,0,0,0.14,526.71,3490.45,26125112,99.74,0,0,0.17,526.68,3490.47,26125113,99.71,0,0,0.14,526.64,3490.51,26125114,99.8,0,0,0.17,526.38,3490.76,26125115,99.56,0,0,0.68,526.81,3490.35,26125116,99.78,0,0,0.16,526.68,3490.48,26125117,99.87,0,0,0.14,526.73,3490.42,26125118,99.74,0,0,0.15,526.7,3490.45,26125119,99.48,0,0,0.32,526.91,3490.21,26125120,99.41,0,0,0.7,527.4,3489.74,26125121,99.83,0,0,0.14,526.62,3490.51,26125122,99.79,0,0,0.16,526.66,3490.47,26125123,99.79,0,0,0.16,526.71,3490.41,26125124,99.77,0,0,0.14,526.66,3490.48,26125125,99.52,0,0,0.53,526.98,3490.18,26125126,99.74,0,0,0.29,526.64,3490.5,26125127,99.73,0,0,0.17,526.73,3490.41,26125128,99.74,0,0,0.14,526.69,3490.45,26125129,99.83,0,0,0.16,526.63,3490.5,26125130,99.42,0,0,0.53,527.05,3490.1,26125131,99.83,0,0,0.29,526.98,3490.16,26125132,99.86,0,0,0.14,526.93,3490.21,26125133,99.78,0,0,0.14,526.88,3490.25,26125134,99.81,0,0,0.14,526.85,3490.29,26125135,99.64,0,0,0.3,526.74,3490.41,26125136,99.63,0,0,0.55,527.29,3489.85,26125137,99.78,0,0,0.14,526.92,3490.22,26125138,99.84,0,0,0.15,526.88,3490.26,26125139,99.78,0,0,0.15,526.83,3490.3,26125140,99.42,0,0,0.27,527.2,3489.95,26125141,99.6,0,0,0.57,527.53,3489.62,26125142,99.79,0,0,0.16,526.67,3490.47,26125143,99.83,0,0,0.17,526.62,3490.52,26125144,99.82,0,0,0.14,526.57,3490.56,26125145,99.59,0,0,0.27,525.53,3491.62,26125146,99.58,0,0,0.55,526.96,3490.19,26125147,99.81,0,0,0.13,527.18,3489.96,26125148,99.8,0,0,0.16,527.15,3489.99,26125149,99.57,0,0,0.27,526.86,3490.25,26125150,99.65,0,0,0.26,526.6,3490.53,26125151,99.63,0,0,0.59,527.09,3490.03,26125152,99.79,0,0.01,0.16,526.96,3490.16,26125153,99.83,0,0,0.18,526.93,3490.19,26125154,99.8,0,0,0.18,526.9,3490.22,26125155,99.76,0,0,0.28,527.13,3490,26125156,99.68,0,0,0.59,527.34,3489.78,26125157,99.8,0,0,0.21,526.81,3490.31,26125158,99.83,0,0,0.15,526.93,3490.19,26125159,99.83,0,0,0.19,526.93,3490.18,26125160,99.78,0,0,0.29,526.92,3490.21,26125161,95.87,0.04,0.02,78.36,539.95,3477.93,26125162,99.72,0,0,64.41,529.32,3487.69,26125163,99.77,0,0,0.14,529.3,3487.71,26125164,99.79,0,0,0.15,529.26,3487.74,26125165,98.41,0,0,15.58,532.76,3484.45,26125166,99.52,0,0,0.31,529.92,3487.06,26125167,99.74,0,0,0.43,526.82,3490.22,26125168,99.81,0,0,0.14,526.9,3490.15,26125169,99.79,0,0,0.14,526.88,3490.16,26125170,99.65,0,0,0.27,526.87,3490.19,26125171,96.3,1.86,0.01,14.7,534.08,3480.68,26125172,99.08,0,0,32.82,529.51,3486.62,26125173,99.71,0,0,0.15,528.97,3487.16,26125174,99.7,0,0,0.19,528.5,3487.62,26125175,99.59,0,0,0.28,529.41,3486.73,26125176,99.74,0,0,0.18,528.39,3487.77,26125177,99.64,0,0,0.58,527.22,3488.96,26125178,99.8,0,0,0.16,526.85,3489.33,26125179,99.57,0,0,0.3,527.07,3489.09,26125180,99.59,0,0,0.29,526.82,3489.35,26125181,99.81,0,0,0.19,526.78,3489.39,26125182,99.61,0,0,0.56,527.28,3488.9,26125183,99.85,0,0,0.14,526.97,3489.22,26125184,99.74,0,0,0.14,527.04,3489.14,26125185,99.57,0,0,0.34,527.12,3489.07,26125186,99.78,0,0,0.17,527.08,3489.1,26125187,99.6,0,0,0.45,527.75,3488.43,26125188,99.66,0,0,0.34,527.27,3488.91,26125189,99.85,0,0,0.18,527.24,3488.94,26125190,99.6,0,0,0.3,527.23,3488.97,26125191,99.8,0,0,0.16,527.3,3488.89,26125192,99.53,0,0,0.4,527.51,3488.67,26125193,99.83,0,0,0.29,526.83,3489.35,26125194,99.8,0,0,0.16,526.79,3489.38,26125195,99.67,0,0,0.3,527.06,3489.13,26125196,99.8,0,0,0.16,527,3489.19,26125197,99.67,0,0,0.49,527.42,3488.77,26125198,99.85,0,0,0.2,527.28,3488.9,26125199,99.76,0,0,0.15,527.33,3488.84,26125200,99.4,0,0,0.29,527.33,3488.86,26125201,99.73,0,0,0.14,527.3,3488.89,26125202,99.7,0,0,0.43,527.58,3488.63,26125203,99.82,0,0,0.29,527,3489.2,26125204,99.82,0,0,0.14,526.96,3489.23,26125205,99.66,0,0,0.29,527.05,3489.17,26125206,99.8,0,0,0.16,527.14,3489.07,26125207,99.67,0,0,0.3,527.75,3488.45,26125208,99.69,0,0,0.4,527.07,3489.13,26125209,99.63,0,0,0.27,527.04,3489.14,26125210,99.68,0,0,0.27,526.78,3489.41,26125211,99.78,0,0,0.16,526.75,3489.44,26125212,99.75,0,0.01,0.15,526.87,3489.31,26125213,99.44,0,0,0.61,527.94,3488.24,26125214,99.62,0,0,0.14,527.56,3488.62,26125215,99.68,0,0,0.3,526.83,3489.38,26125216,99.73,0,0,0.13,526.79,3489.42,26125217,99.74,0,0,0.21,526.76,3489.44,26125218,99.61,0,0,0.57,527.25,3488.95,26125219,99.74,0,0,0.14,527.09,3489.1,26125220,99.71,0,0,0.29,527.61,3488.6,26125221,99.73,0.01,0.01,0.14,527.58,3488.63,26125222,99.7,0,0,0.15,527.54,3488.66,26125223,99.68,0,0,0.56,527.51,3488.68,26125224,99.71,0,0,0.16,526.98,3489.21,26125225,99.65,0,0,0.32,527.29,3488.92,26125226,99.79,0,0,0.14,527.37,3488.83,26125227,99.77,0,0,0.14,527.34,3488.86,26125228,99.65,0,0,0.55,527.53,3488.67,26125229,99.8,0,0,0.16,527.03,3489.17,26125230,99.66,0,0,0.39,527.51,3488.7,26125231,99.78,0,0,0.16,527.48,3488.72,26125232,99.68,0,0,0.14,527.52,3488.68,26125233,99.71,0,0,0.59,528.06,3488.14,26125234,99.78,0,0,0.18,527.12,3489.09,26125235,99.6,0,0,0.29,527.32,3488.91,26125236,99.74,0,0,0.17,527.28,3488.94,26125237,99.72,0,0,0.14,527.25,3488.97,26125238,99.64,0,0,0.42,527.61,3488.61,26125239,99.6,0,0,0.4,527.35,3488.85,26125240,99.51,0,0,0.3,526.63,3489.57,26125241,99.85,0,0,0.16,526.58,3489.63,26125242,99.83,0,0,0.15,526.55,3489.65,26125243,99.65,0,0,0.31,526.86,3489.34,26125244,99.75,0,0,0.39,526.23,3489.98,26125245,99.62,0,0,0.28,526.78,3489.45,26125246,99.75,0,0,0.16,526.87,3489.35,26125247,99.8,0,0,0.14,526.52,3489.7,26125248,99.65,0,0,0.31,526.43,3489.78,26125249,99.75,0,0,0.39,526.54,3489.67,26125250,99.62,0,0,0.27,526.54,3489.7,26125251,99.8,0,0,0.16,526.51,3489.72,26125252,99.8,0.01,0,0.15,526.48,3489.75,26125253,99.8,0,0,0.15,526.65,3489.57,26125254,99.67,0,0,0.6,526.97,3489.25,26125255,99.74,0,0,0.29,526.61,3489.63,26125256,99.79,0,0,0.13,526.57,3489.66,26125257,99.78,0,0,0.16,526.53,3489.69,26125258,99.83,0,0,0.14,526.5,3489.72,26125259,99.68,0,0,0.59,526.77,3489.45,26125260,99.51,0,0,0.28,526.89,3489.35,26125261,99.79,0,0,0.16,526.85,3489.38,26125262,99.82,0,0,0.16,526.82,3489.41,26125263,99.84,0,0,0.14,526.79,3489.43,26125264,99.68,0,0,0.55,527.1,3489.11,26125265,99.65,0,0,0.28,526.81,3489.42,26125266,99.83,0.01,0.02,0.17,526.85,3489.38,26125267,99.81,0,0,0.17,526.76,3489.46,26125268,99.78,0,0,0.16,526.72,3489.49,26125269,99.33,0,0,0.66,527.63,3488.55,26125270,99.69,0,0,0.38,526.88,3489.33,26125271,99.83,0,0,0.16,526.83,3489.37,26125272,99.8,0,0.01,0.14,526.8,3489.4,26125273,99.77,0,0,0.16,526.76,3489.43,26125274,99.64,0,0,0.5,527.08,3489.1,26125275,99.58,0,0,0.33,525.82,3490.38,26125276,99.75,0,0,0.14,525.86,3490.34,26125277,99.76,0,0,0.24,526.1,3490.1,26125278,99.68,0,0,0.16,526.07,3490.12,26125279,99.61,0,0,0.6,526.52,3489.66,26125280,98.23,0,0,0.33,526.3,3489.9,26125281,99.8,0.01,0.01,0.13,526.23,3489.97,26125282,99.8,0,0,0.17,526.3,3489.89,26125283,99.75,0,0,0.18,526.35,3489.84,26125284,99.8,0,0,0.15,526.31,3489.87,26125285,99.34,0,0,0.7,527.4,3488.8,26125286,99.8,0,0,0.14,527.01,3489.18,26125287,99.76,0,0.01,0.16,526.97,3489.22,26125288,99.71,0,0,0.16,527.07,3489.11,26125289,99.81,0,0,0.13,527.08,3489.11,26125290,99.48,0,0,0.68,527.16,3489.04,26125291,99.79,0,0,0.19,526.29,3489.91,26125292,99.63,0,0,0.15,526.25,3489.94,26125293,99.73,0,0,0.15,526.22,3489.97,26125294,99.71,0,0,0.17,526.69,3489.5,26125295,99.39,0,0,0.75,527.69,3488.51,26125296,99.76,0,0,0.14,527.11,3489.09,26125297,99.87,0,0,0.13,527.07,3489.12,26125298,99.83,0,0,0.16,527.05,3489.14,26125299,99.51,0,0,0.27,527.28,3488.88,26125300,99.34,0,0,0.62,527.35,3488.83,26125301,99.77,0,0,0.21,527.28,3488.9,26125302,99.7,0,0,0.14,527.37,3488.8,26125303,99.72,0,0,0.15,527.34,3488.83,26125304,99.73,0,0,0.15,527.31,3488.86,26125305,99.4,0,0,0.59,527.1,3489.09,26125306,99.73,0,0,0.31,526.53,3489.65,26125307,99.65,0,0,0.14,526.5,3489.68,26125308,99.69,0,0,0.15,526.53,3489.64,26125309,99.72,0,0,0.14,526.61,3489.55,26125310,99.46,0,0,0.68,526.56,3489.62,26125311,99.71,0,0,0.18,526.83,3489.35,26125312,99.78,0,0,0.17,526.79,3489.38,26125313,99.77,0,0,0.14,526.76,3489.41,26125314,99.77,0,0,0.17,526.72,3489.44,26125315,99.51,0,0,0.62,527.54,3488.64,26125316,99.72,0,0,0.27,526.86,3489.31,26125317,99.73,0,0,0.18,526.83,3489.34,26125318,99.73,0,0,0.18,526.8,3489.37,26125319,99.73,0,0,0.21,526.76,3489.4,26125320,99.43,0,0,0.33,526.02,3490.15,26125321,99.52,0,0,0.57,526.77,3489.4,26125322,99.75,0,0,0.18,526.09,3490.08,26125323,99.78,0,0,0.18,526.1,3490.06,26125324,99.66,0,0,0.19,526.07,3490.09,26125325,99.44,0,0,0.34,525.59,3490.59,26125326,99.51,0,0,0.61,526.88,3489.3,26125327,99.69,0,0,0.18,526.49,3489.67,26125328,99.71,0,0,0.18,526.47,3489.7,26125329,99.51,0,0,0.31,527.25,3488.89,26125330,99.52,0,0,0.33,527.18,3488.98,26125331,99.45,0,0,0.56,527.5,3488.65,26125332,99.65,0.01,0.01,0.15,527.02,3489.13,26125333,99.49,0,0,0.14,526.98,3489.16,26125334,99.56,0.01,0.12,0.15,527.01,3489.16,26125335,99.44,0.02,0.71,0.55,527.21,3488.98,26125336,99.43,0,0,0.55,527.57,3488.62,26125337,99.61,0,0,0.25,527.08,3489.1,26125338,99.68,0,0,0.18,527.05,3489.13,26125339,99.68,0,0,0.19,527.01,3489.16,26125340,99.45,0,0,0.34,527.24,3488.95,26125341,98.43,0.01,0.01,0.58,527.57,3488.62,26125342,99.71,0,0,0.18,527.28,3488.9,26125343,99.7,0,0,0.18,527.32,3488.85,26125344,99.74,0,0,0.2,527.29,3488.88,26125345,99.55,0,0,0.34,527.28,3488.91,26125346,99.51,0,0,0.59,527.85,3488.33,26125347,99.64,0,0,0.14,526.7,3489.47,26125348,99.71,0,0,0.16,526.81,3489.36,26125349,99.73,0,0,0.14,526.81,3489.36,26125350,99.53,0,0,0.33,527.3,3488.89,26125351,99.39,0,0,0.43,527.53,3488.65,26125352,99.62,0,0,0.32,526.49,3489.68,26125353,99.72,0,0,0.18,526.46,3489.7,26125354,99.52,0,0,0.22,527.01,3489.16,26125355,99.5,0,0,0.3,527.31,3488.87,26125356,99.53,0,0,0.53,527.67,3488.51,26125357,99.65,0,0,0.15,527.28,3488.89,26125358,99.63,0,0,0.15,527.25,3488.91,26125359,99.4,0,0,0.34,527.27,3488.87,26125360,99.5,0,0,0.31,526.09,3490.07,26125361,99.78,0,0,0.16,525.95,3490.2,26125362,99.55,0,0,0.61,528.08,3488.06,26125363,99.79,0,0,0.21,527.57,3488.57,26125364,99.83,0,0,0.2,527.54,3488.6,26125365,99.61,0,0,0.36,526.58,3489.57,26125366,99.81,0,0,0.2,526.52,3489.63,26125367,99.63,0,0,0.61,526.91,3489.24,26125368,99.77,0,0,0.17,526.21,3489.94,26125369,99.75,0,0,0.17,526.33,3489.81,26125370,99.67,0,0,0.3,527.57,3488.59,26125371,99.8,0,0,0.14,527.55,3488.6,26125372,99.54,0,0,0.58,526.95,3489.19,26125373,99.79,0,0,0.14,525.76,3490.38,26125374,99.82,0,0,0.14,525.72,3490.41,26125375,99.75,0,0,0.28,526.45,3489.71,26125376,99.75,0,0,0.2,525.98,3490.18,26125377,99.61,0,0,0.6,516.94,3499.46,26125378,99.8,0,0,0.15,516.69,3499.7,26125379,99.8,0,0,0.16,516.67,3499.71,26125380,99.63,0,0,0.29,515.95,3500.45,26125381,99.82,0,0,0.16,515.93,3500.46,26125382,99.63,0,0,0.54,516.39,3500.02,26125383,99.82,0,0,0.15,516.38,3500.03,26125384,99.82,0,0,0.15,516.35,3500.05,26125385,99.7,0,0,0.29,515.39,3501.05,26125386,99.83,0,0,0.14,515.44,3501,26125387,99.68,0,0,0.57,516.21,3500.24,26125388,99.84,0,0,0.14,516.73,3499.71,26125389,99.64,0,0,0.4,516.73,3499.68,26125390,99.69,0,0,0.29,516.74,3499.68,26125391,99.8,0,0,0.16,516.68,3499.74,26125392,99.58,0,0,0.41,517.11,3499.31,26125393,99.75,0,0,0.29,516.14,3500.27,26125394,99.79,0,0,0.15,516.11,3500.31,26125395,99.71,0,0,0.3,515.4,3501.04,26125396,99.83,0,0,0.17,515.35,3501.09,26125397,99.8,0,0.01,0.22,515.84,3500.6,26125398,99.63,0,0,0.55,516.99,3499.44,26125399,99.8,0,0,0.18,516.69,3499.73,26125400,99.69,0,0,0.31,515.72,3500.72,26125401,99.76,0,0,0.16,515.68,3500.75,26125402,99.79,0,0.01,0.18,515.65,3500.77,26125403,99.65,0,0,0.56,515.96,3500.45,26125404,99.82,0,0,0.17,515.6,3500.81,26125405,99.77,0,0,0.31,515.11,3501.32,26125406,99.84,0,0,0.14,515.09,3501.34,26125407,99.82,0,0,0.16,515.05,3501.37,26125408,99.65,0,0,0.57,515.51,3500.9,26125409,99.8,0,0,0.16,515.21,3501.2,26125410,99.73,0,0,0.29,515.46,3500.97,26125411,99.81,0,0,0.16,515.43,3500.99,26125412,99.8,0,0,0.15,515.41,3501,26125413,99.68,0,0,0.58,516.17,3500.24,26125414,99.15,0,0,0.18,515.74,3500.67,26125415,99.72,0,0,0.31,515.13,3501.29,26125416,99.83,0,0,0.16,515.1,3501.32,26125417,99.74,0,0,0.14,515.08,3501.34,26125418,99.7,0,0,0.5,515.62,3500.79,26125419,99.64,0,0,0.4,515.86,3500.52,26125420,99.75,0,0,0.3,515.97,3500.44,26125421,99.83,0,0,0.14,515.94,3500.46,26125422,99.83,0,0,0.16,515.93,3500.47,26125423,99.67,0,0,0.54,516.47,3499.93,26125424,99.83,0,0,0.14,515.89,3500.5,26125425,99.73,0,0,0.34,515.98,3500.43,26125426,99.81,0,0,0.18,515.87,3500.54,26125427,99.83,0,0,0.14,515.85,3500.55,26125428,99.69,0,0,0.34,516.17,3500.22,26125429,99.84,0,0,0.39,515.78,3500.6,26125430,99.65,0,0,0.29,515.07,3501.32,26125431,99.82,0,0,0.17,515.2,3501.19,26125432,99.78,0,0,0.16,515.21,3501.18,26125433,99.69,0,0,0.4,515.54,3500.85,26125434,99.73,0,0,0.28,514.91,3501.47,26125435,99.58,0.02,0.06,0.37,515.15,3501.25,26125436,99.71,0.02,0.28,0.3,515.02,3501.3,26125437,99.79,0,0,0.14,514.99,3501.32,26125438,99.81,0,0,0.14,515.1,3501.2,26125439,99.65,0,0,0.58,516.15,3500.14,26125440,99.69,0,0,0.31,516.1,3500.21,26125441,99.83,0,0,0.17,516.08,3500.23,26125442,99.82,0,0,0.14,516.06,3500.24,26125443,99.78,0,0,0.14,516.06,3500.25,26125444,99.69,0,0,0.54,516.91,3499.39,26125445,99.77,0,0.01,0.34,516.02,3500.3,26125446,99.8,0,0,0.16,515.99,3500.32,26125447,99.8,0,0,0.14,515.97,3500.34,26125448,99.83,0,0,0.15,515.94,3500.36,26125449,99.39,0,0,0.71,516.19,3500.08,26125450,99.72,0,0,0.32,515.35,3500.94,26125451,94.33,2.6,0.03,262.39,525.77,3488.84,26125452,99.83,0,0,0.24,518.78,3494.98,26125453,99.75,0,0,0.18,518.76,3495,26125454,99.59,0,0,0.55,519,3494.75,26125455,99.66,0,0,0.3,518.55,3495.22,26125456,99.82,0,0,0.16,517.38,3496.42,26125457,99.8,0,0,0.2,516.46,3497.36,26125458,99.8,0,0,0.15,516.44,3497.38,26125459,99.62,0,0,0.39,516.78,3497.03,26125460,99.68,0,0,0.42,516.19,3497.65,26125461,99.8,0,0,0.14,516.16,3497.67,26125462,99.83,0,0,0.16,516.14,3497.69,26125463,99.82,0,0,0.15,516.12,3497.7,26125464,99.69,0,0,0.55,516.45,3497.36,26125465,99.71,0,0,0.35,515.86,3497.97,26125466,99.81,0,0,0.16,515.83,3498,26125467,99.78,0,0,0.18,515.8,3498.03,26125468,99.78,0,0,0.16,515.94,3497.88,26125469,99.63,0,0,0.34,516.32,3497.5,26125470,99.74,0,0,0.52,516.2,3497.64,26125471,99.82,0,0,0.15,516.17,3497.66,26125472,99.84,0,0,0.13,516.15,3497.67,26125473,99.81,0,0,0.16,516.13,3497.69,26125474,99.76,0,0,0.18,516.12,3497.7,26125475,99.43,0,0,0.72,514.59,3499.24,26125476,99.84,0,0,0.14,513.87,3499.96,26125477,99.9,0,0,0.15,513.85,3499.97,26125478,99.87,0,0,0.16,513.82,3500,26125479,99.79,0,0,0.31,516.14,3497.65,26125480,99.58,0,0,0.73,515.98,3497.83,26125481,99.84,0,0,0.18,515.44,3498.37,26125482,99.86,0,0,0.14,515.42,3498.38,26125483,99.85,0,0,0.15,515.39,3498.4,26125484,99.9,0,0,0.15,515.37,3498.42,26125485,99.68,0,0,0.76,516.63,3497.18,26125486,99.85,0,0,0.14,516.33,3497.47,26125487,99.86,0,0,0.17,516.31,3497.49,26125488,99.88,0,0,0.14,516.29,3497.51,26125489,99.9,0,0,0.16,516.27,3497.52,26125490,99.59,0,0.01,0.59,516.62,3497.19,26125491,99.92,0.03,1.32,0.35,516.11,3497.7,26125492,99.91,0,0,0.16,516.07,3497.73,26125493,99.88,0,0,0.14,516.15,3497.65,26125494,99.89,0,0,0.15,516.2,3497.59,26125495,99.63,0,0,0.64,516.5,3497.32,26125496,99.87,0,0,0.2,516.43,3497.4,26125497,99.88,0,0.01,0.2,516.38,3497.44,26125498,99.88,0.01,0.04,0.18,516.35,3497.47,26125499,99.91,0,0,0.14,516.41,3497.4,26125500,99.6,0,0,0.55,516.94,3496.89,26125501,99.87,0,0.01,0.34,516.37,3497.45,26125502,99.88,0,0,0.16,516.34,3497.47,26125503,99.89,0,0,0.15,516.33,3497.47,26125504,99.87,0,0,0.16,516.3,3497.5,26125505,99.71,0,0,0.46,516.95,3496.86,26125506,99.85,0.01,0.01,0.49,516.6,3497.21,26125507,99.88,0,0,0.18,516.67,3497.13,26125508,99.91,0,0,0.15,516.63,3497.16,26125509,99.79,0,0,0.28,516.36,3497.42,26125510,99.79,0,0,0.35,515.64,3498.15,26125511,99.75,0,0,0.55,516.71,3497.07,26125512,99.9,0,0,0.17,516.31,3497.47,26125513,99.9,0.03,0.83,0.18,516.31,3497.46,26125514,99.86,0,0.01,0.23,516.34,3497.42,26125515,99.72,0.02,0.84,0.32,516.57,3497.2,26125516,99.7,0,0.01,0.63,516.86,3496.91,26125517,99.88,0,0,0.22,516.57,3497.19,26125518,99.86,0,0,0.14,516.67,3497.09,26125519,99.9,0.01,0.22,0.21,516.54,3497.2,26125520,99.75,0,0,0.28,516.2,3497.58,26125521,99.72,0,0,0.6,516.7,3497.08,26125522,99.88,0,0,0.14,516.4,3497.37,26125523,98.96,0,0,0.17,516.38,3497.39,26125524,99.87,0,0,0.18,516.34,3497.43,26125525,99.74,0,0,0.33,516.57,3497.2,26125526,95.89,0.04,0.01,78.56,526.77,3488.88,26125527,99.8,0,0,64.12,519.31,3494.67,26125528,99.85,0,0,0.16,519.29,3494.69,26125529,99.88,0,0,0.18,519.26,3494.71,26125530,99.72,0,0,0.32,518.08,3495.91,26125531,99.69,0,0,0.63,517.63,3496.37,26125532,99.84,0,0,0.17,515.58,3498.43,26125533,99.83,0.01,0.01,0.19,515.67,3498.34,26125534,99.8,0.03,0.03,0.21,515.95,3498.05,26125535,99.73,0.01,0.01,0.32,515.69,3498.34,26125536,99.69,0.03,0.03,0.64,516.22,3497.8,26125537,99.81,0.01,0.01,0.22,516.86,3497.17,26125538,99.85,0,0,0.21,516.83,3497.2,26125539,99.62,0,0,0.31,516.57,3497.43,26125540,99.79,0,0,0.33,515.83,3498.18,26125541,99.75,0,0,0.4,516.21,3497.8,26125542,99.87,0,0,0.27,516.21,3497.79,26125543,99.86,0,0,0.16,516.18,3497.82,26125544,99.9,0,0,0.18,516.17,3497.82,26125545,99.71,0,0,0.32,515.97,3498.05,26125546,99.85,0,0,0.14,515.9,3498.11,26125547,99.66,0,0,0.6,517.36,3496.65,26125548,99.87,0,0,0.16,516.84,3497.17,26125549,99.87,0.02,0.45,0.17,516.83,3497.17,26125550,99.74,0,0.02,0.41,516.94,3497.06,26125551,99.89,0,0,0.16,516.9,3497.1,26125552,99.69,0,0,0.57,517.21,3496.78,26125553,99.86,0,0,0.16,516.83,3497.16,26125554,99.88,0,0,0.16,516.81,3497.18,26125555,99.79,0,0,0.32,516.1,3497.9,26125556,99.83,0,0,0.16,516.06,3497.95,26125557,99.74,0,0,0.6,515.58,3498.41,26125558,99.84,0,0,0.15,514.93,3499.07,26125559,99.83,0,0,0.15,514.95,3499.04,26125560,99.63,0,0,0.39,514.23,3499.77,26125561,99.86,0,0,0.18,514.19,3499.81,26125562,99.71,0,0,0.55,514.84,3499.15,26125563,99.82,0,0,0.15,514.66,3499.33,26125564,99.87,0,0,0.16,514.62,3499.36,26125565,99.75,0,0,0.33,515.59,3498.41,26125566,99.83,0,0,0.15,515.59,3498.41,26125567,99.73,0,0,0.46,516.49,3497.51,26125568,99.86,0,0,0.32,516.04,3497.95,26125569,99.59,0,0,0.32,516.05,3497.92,26125570,99.77,0,0,0.37,515.68,3498.3,26125571,99.86,0,0.01,0.22,515.68,3498.3,26125572,99.66,0,0,0.45,515.79,3498.18,26125573,99.9,0,0.01,0.33,514.88,3499.09,26125574,99.88,0,0,0.17,514.84,3499.12,26125575,99.78,0,0,0.32,515.61,3498.38,26125576,99.82,0.03,1.04,0.28,515.56,3498.41,26125577,99.72,0,0,0.47,516,3497.97,26125578,99.86,0.03,1.34,0.5,515.9,3498.05,26125579,99.84,0,0,0.25,515.81,3498.14,26125580,99.76,0,0,0.38,515.79,3498.17,26125581,99.86,0,0,0.19,515.78,3498.18,26125582,99.77,0,0,0.51,516.17,3497.78,26125583,99.89,0,0,0.29,516.16,3497.79,26125584,99.85,0,0,0.21,516.13,3497.81,26125585,99.74,0,0,0.37,516.38,3497.58,26125586,99.89,0,0,0.21,516.37,3497.59,26125587,99.88,0,0,0.2,516.35,3497.61,26125588,99.64,0,0,0.61,515.84,3498.11,26125589,99.87,0,0,0.18,515.07,3498.87,26125590,99.79,0,0,0.35,516.04,3497.92,26125591,99.83,0,0,0.18,516.04,3497.92,26125592,99.83,0,0,0.18,516.02,3497.93,26125593,99.67,0,0,0.59,515.69,3498.26,26125594,99.8,0,0,0.21,515.6,3498.34,26125595,99.74,0.04,2.21,0.36,516.31,3497.64,26125596,99.86,0,0,0.2,516.4,3497.54,26125597,99.85,0,0.02,0.16,516.37,3497.57,26125598,99.65,0,0,0.54,515.95,3497.99,26125599,99.66,0,0,0.27,516.05,3497.85,26125600,99.78,0,0,0.29,516.05,3497.87,26125601,99.85,0.01,0.02,0.16,516.04,3497.88,26125602,99.88,0,0.02,0.23,516.12,3497.79,26125603,99.7,0,0,0.54,516.43,3497.47,26125604,99.91,0,0.02,0.21,516.06,3497.86,26125605,99.8,0,0,0.39,516.53,3497.41,26125606,99.81,0,0,0.13,516.5,3497.43,26125607,99.77,0.02,2.39,0.46,516.53,3497.39,26125608,99.71,0,0.01,0.6,517.04,3496.86,26125609,99.81,0.02,1.68,0.2,516.28,3497.62,26125610,99.64,0,0,0.33,514.92,3498.99,26125611,99.9,0,0,0.14,514.79,3499.11,26125612,99.86,0,0,0.16,514.76,3499.14,26125613,99.68,0.02,1.81,0.61,515.51,3498.37,26125614,99.88,0,0,0.14,516.07,3497.8,26125615,99.79,0,0,0.31,516.09,3497.8,26125616,99.88,0,0,0.14,516.06,3497.83,26125617,99.88,0,0.02,0.16,516.03,3497.85,26125618,99.6,0.02,0.48,0.52,516.38,3497.49,26125619,99.87,0,0.02,0.48,516.38,3497.4,26125620,99.64,0,0,0.31,515.17,3498.64,26125621,99.82,0,0,0.14,515.12,3498.68,26125622,99.8,0,0,0.16,515.1,3498.71,26125623,99.74,0,0,0.39,515.65,3498.16,26125624,99.88,0,0,0.29,515.74,3498.07,26125625,99.76,0,0,0.3,514.78,3499.04,26125626,99.83,0,0,0.16,514.74,3499.08,26125627,99.83,0,0,0.14,514.72,3499.09,26125628,99.89,0,0,0.14,514.7,3499.11,26125629,99.31,0,0,0.68,517,3496.78,26125630,99.8,0,0,0.3,516.4,3497.4,26125631,99.87,0,0,0.16,516.37,3497.43,26125632,99.84,0,0,0.15,516.34,3497.45,26125633,99.86,0,0,0.16,516.39,3497.4,26125634,99.75,0,0,0.57,517.01,3496.77,26125635,99.74,0,0,0.33,516.49,3497.32,26125636,99.83,0,0,0.14,516.47,3497.33,26125637,99.81,0,0,0.22,516.46,3497.34,26125638,99.88,0,0,0.14,516.43,3497.36,26125639,99.71,0,0,0.57,516.87,3496.92,26125640,99.66,0,0,0.32,516.18,3497.62,26125641,99.87,0,0,0.13,516.14,3497.66,26125642,99.86,0,0,0.14,516.13,3497.67,26125643,99.85,0,0,0.16,516.1,3497.69,26125644,99.02,0,0,0.57,516.44,3497.34,26125645,99.79,0,0,0.31,516.36,3497.45,26125646,99.88,0,0,0.16,516.5,3497.3,26125647,99.91,0,0,0.15,516.48,3497.32,26125648,99.88,0,0,0.13,516.45,3497.34,26125649,99.68,0,0,0.59,516.82,3496.97,26125650,99.74,0,0,0.36,515.7,3498.1,26125651,99.77,0,0,0.13,515.67,3498.13,26125652,99.88,0,0,0.16,515.65,3498.15,26125653,99.85,0,0,0.16,515.63,3498.16,26125654,99.66,0,0,0.6,516.07,3497.72,26125655,99.05,0,0,0.36,516.58,3497.22,26125656,99.86,0,0,0.18,516.57,3497.23,26125657,99.84,0,0,0.18,516.71,3497.08,26125658,99.83,0,0,0.18,516.72,3497.07,26125659,99.49,0,0,0.46,516.83,3496.93,26125660,99.72,0,0,0.52,516.69,3497.09,26125661,99.85,0,0,0.16,516.67,3497.1,26125662,99.88,0,0,0.14,516.65,3497.12,26125663,99.84,0,0,0.14,516.63,3497.13,26125664,99.81,0,0,0.15,516.62,3497.18,26125665,99.51,0,0,0.72,515.4,3498.42,26125666,99.85,0,0,0.18,514.64,3499.18,26125667,99.85,0,0,0.18,514.61,3499.2,26125668,99.74,0,0,0.18,514.6,3499.21,26125669,99.81,0,0,0.17,514.69,3499.11,26125670,99.47,0,0,0.74,516.2,3497.63,26125671,99.86,0,0,0.14,515.99,3497.84,26125672,99.83,0,0,0.18,515.97,3497.85,26125673,99.88,0,0,0.18,515.95,3497.87,26125674,99.86,0,0,0.14,515.95,3497.87,26125675,99.56,0,0,0.73,516.24,3497.6,26125676,99.79,0,0,0.18,515.68,3498.15,26125677,99.83,0,0,0.14,515.65,3498.18,26125678,99.87,0,0,0.14,515.63,3498.2,26125679,99.85,0,0,0.15,515.61,3498.21,26125680,99.56,0,0,0.69,516.67,3497.17,26125681,99.86,0,0,0.15,515.53,3498.3,26125682,99.85,0,0,0.17,515.51,3498.32,26125683,99.85,0,0,0.18,515.48,3498.34,26125684,99.87,0,0,0.18,515.46,3498.36,26125685,99.63,0,0,0.73,516.31,3497.53,26125686,99.86,0,0,0.17,516.42,3497.41,26125687,99.89,0,0,0.14,516.39,3497.44,26125688,99.83,0,0,0.15,516.38,3497.44,26125689,99.75,0,0,0.28,516.83,3496.97,26125690,99.68,0,0,0.77,516.83,3496.98,26125691,99.85,0,0,0.14,516.89,3496.91,26125692,99.89,0,0,0.14,516.99,3496.81,26125693,99.79,0,0,0.16,516.95,3496.84,26125694,99.86,0,0,0.14,516.94,3496.85,26125695,99.54,0,0,1.06,516.43,3497.37,26125696,99.86,0,0,0.19,516.92,3496.88,26125697,99.84,0,0,0.18,516.65,3497.14,26125698,99.87,0,0,0.14,516.63,3497.17,26125699,99.88,0,0,0.16,516.61,3497.18,26125700,99.56,0,0,0.64,517.16,3496.64,26125701,99.9,0,0,0.37,516.09,3497.71,26125702,99.82,0,0,0.14,516.16,3497.63,26125703,99.88,0,0,0.14,516.22,3497.56,26125704,98.48,0,0,0.16,516.19,3497.59,26125705,99.71,0,0,0.34,516.93,3496.88,26125706,99.64,0,0,0.53,516.56,3497.24,26125707,99.89,0,0,0.16,515.66,3498.13,26125708,99.9,0,0,0.14,515.63,3498.16,26125709,99.78,0,0,0.17,515.62,3498.16,26125710,99.83,0,0,0.32,515.1,3498.71,26125711,99.79,0,0,0.53,515.91,3497.89,26125712,99.9,0,0,0.16,515.39,3498.4,26125713,99.89,0,0,0.14,515.49,3498.3,26125714,99.84,0,0,0.19,515.33,3498.45,26125715,99.72,0,0,0.35,516.19,3497.61,26125716,99.67,0,0,0.59,516.59,3497.21,26125717,99.83,0,0,0.14,515.92,3497.87,26125718,99.89,0,0,0.16,515.9,3497.89,26125719,99.67,0,0,0.33,515.4,3498.36,26125720,99.81,0.03,1.01,0.41,515.91,3497.86,26125721,99.7,0,0,0.57,515.98,3497.79,26125722,99.9,0,0,0.14,515.14,3498.63,26125723,99.88,0,0,0.13,515.11,3498.65,26125724,99.86,0.04,1.37,0.25,515.18,3498.59,26125725,99.78,0,0,0.3,515.9,3497.89,26125726,99.7,0,0,0.55,516.15,3497.64,26125727,99.88,0,0,0.16,515.37,3498.41,26125728,99.92,0,0,0.16,515.35,3498.43,26125729,99.85,0,0,0.15,515.33,3498.44,26125730,99.8,0,0,0.33,514.69,3499.1,26125731,99.64,0,0,0.42,515.08,3498.71,26125732,99.84,0,0,0.34,516.46,3497.32,26125733,99.85,0,0,0.14,516.44,3497.34,26125734,99.9,0,0,0.14,516.41,3497.36,26125735,99.79,0,0,0.35,516.41,3497.38,26125736,99.92,0,0,0.13,516.39,3497.39,26125737,99.7,0,0,0.57,516.5,3497.27,26125738,99.88,0,0,0.18,516.1,3497.67,26125739,99.85,0,0,0.18,516.08,3497.69,26125740,99.72,0,0,0.29,516.09,3497.7,26125741,99.82,0,0,0.14,516.06,3497.72,26125742,99.76,0,0,0.56,516.21,3497.57,26125743,99.9,0,0,0.14,515.21,3498.56,26125744,99.89,0,0,0.15,515.21,3498.56,26125745,99.83,0,0,0.32,515.7,3498.09,26125746,99.89,0,0,0.13,515.68,3498.1,26125747,99.65,0,0,0.57,516.09,3497.69,26125748,99.88,0,0,0.18,515.4,3498.38,26125749,99.61,0,0,0.27,516.11,3497.64,26125750,99.78,0,0,0.31,515.39,3498.38,26125751,99.88,0,0,0.14,515.35,3498.41,26125752,99.75,0,0,0.55,516.16,3497.6,26125753,99.9,0,0,0.14,516.29,3497.46,26125754,99.89,0,0,0.14,516.36,3497.39,26125755,99.79,0,0,0.3,516.45,3497.31,26125756,99.87,0,0,0.14,516.44,3497.32,26125757,99.75,0,0,0.61,516.77,3496.98,26125758,99.87,0,0,0.18,516.39,3497.36,26125759,99.86,0,0,0.16,516.37,3497.38,26125760,99.8,0,0,0.29,516.43,3497.33,26125761,99.9,0,0,0.17,516.35,3497.41,26125762,99.71,0,0,0.39,516.63,3497.12,26125763,99.9,0,0,0.29,516.06,3497.69,26125764,99.91,0,0,0.14,516.03,3497.72,26125765,99.7,0,0,0.28,514.99,3498.78,26125766,99.8,0,0,0.14,515,3498.76,26125767,99.74,0,0,0.33,515.35,3498.41,26125768,99.83,0,0,0.46,516.17,3497.58,26125769,99.92,0,0,0.16,516.15,3497.59,26125770,99.85,0,0,0.28,516.14,3497.62,26125771,99.93,0,0,0.16,516.12,3497.64,26125772,99.85,0,0,0.17,516.1,3497.66,26125773,99.73,0,0,0.59,516.42,3497.32,26125774,99.85,0,0,0.18,515.92,3497.81,26125775,99.83,0,0,0.3,515.96,3497.8,26125776,99.87,0,0,0.15,515.96,3497.79,26125777,98.53,0,0,0.14,515.94,3497.81,26125778,99.68,0,0,0.54,516.28,3497.46,26125779,99.81,0,0,0.27,515.9,3497.82,26125780,99.8,0,0,0.32,516.14,3497.6,26125781,99.9,0,0,0.16,516.11,3497.62,26125782,99.92,0,0,0.14,516.08,3497.64,26125783,99.63,0,0,0.54,516.73,3496.99,26125784,99.84,0,0,0.18,516.05,3497.67,26125785,99.85,0,0,0.29,516.07,3497.69,26125786,99.92,0,0,0.19,516.13,3497.62,26125787,99.86,0,0,0.18,516.21,3497.53,26125788,99.7,0,0,0.6,516.72,3497.01,26125789,99.82,0,0,0.18,516.41,3497.32,26125790,99.78,0,0,0.34,516.65,3497.1,26125791,99.89,0,0,0.15,516.63,3497.11,26125792,99.88,0,0,0.19,516.6,3497.13,26125793,99.74,0,0,0.57,516.94,3496.79,26125794,99.86,0,0,0.14,516.56,3497.16,26125795,99.77,0,0,0.31,516.57,3497.18,26125796,99.83,0,0,0.17,516.55,3497.2,26125797,99.9,0,0,0.14,516.61,3497.13,26125798,99.88,0,0,0.15,516.69,3497.04,26125799,99.73,0,0,0.55,517.01,3496.73,26125800,99.73,0,0,0.34,516.71,3497.05,26125801,99.8,0,0,0.17,516.64,3497.12,26125802,99.83,0,0,0.14,516.63,3497.13,26125803,99.88,0,0,0.14,516.6,3497.15,26125804,99.69,0,0,0.58,516.71,3497.04,26125805,99.81,0,0,0.3,516.58,3497.18,26125806,99.86,0,0,0.16,516.56,3497.2,26125807,99.85,0,0,0.14,516.53,3497.22,26125808,99.91,0,0,0.15,516.6,3497.15,26125809,99.69,0,0,0.66,517,3496.73,26125810,99.79,0,0,0.29,516.91,3496.83,26125811,99.89,0,0,0.16,516.89,3496.86,26125812,99.87,0,0,0.14,516.86,3496.87,26125813,99.88,0,0,0.15,516.85,3496.89,26125814,99.76,0,0,0.56,517.08,3496.66,26125815,99.82,0,0,0.3,516.33,3497.43,26125816,99.9,0,0,0.16,516.3,3497.46,26125817,99.83,0,0,0.19,516.29,3497.47,26125818,99.88,0,0,0.14,516.34,3497.41,26125819,99.73,0,0,0.51,517.02,3496.73,26125820,99.73,0,0,0.35,515.95,3497.81,26125821,99.88,0,0,0.13,515.92,3497.84,26125822,99.85,0,0,0.16,515.9,3497.86,26125823,99.86,0,0,0.14,515.88,3497.87,26125824,99.68,0,0,0.4,516.37,3497.38,26125825,99.8,0,0,0.46,516.11,3497.65,26125826,99.89,0,0,0.17,516.08,3497.67,26125827,99.86,0,0,0.14,516.07,3497.68,26125828,99.89,0,0,0.15,516.04,3497.7,26125829,99.71,0.02,0,0.54,516.54,3497.2,26125830,99.75,0,0,0.3,516.65,3497.11,26125831,99.92,0,0,0.14,516.64,3497.12,26125832,99.91,0,0,0.14,516.61,3497.14,26125833,99.92,0,0,0.16,516.6,3497.15,26125834,99.64,0,0,0.45,516.8,3496.94,26125835,99.79,0,0,0.43,516.81,3496.95,26125836,99.89,0,0,0.17,516.79,3496.96,26125837,99.88,0,0,0.14,516.77,3496.98,26125838,99.12,0,0,0.15,516.75,3497,26125839,99.81,0,0,0.29,516.39,3497.33,26125840,99.35,0,0,0.7,516.56,3497.18,26125841,99.85,0,0,0.15,515.94,3497.79,26125842,99.82,0,0,0.14,515.92,3497.81,26125843,99.86,0,0,0.17,515.89,3497.83,26125844,99.9,0,0,0.14,515.88,3497.85,26125845,99.61,0,0,0.7,517.25,3496.49,26125846,99.78,0,0,0.18,516.6,3497.15,26125847,99.8,0,0,0.14,516.58,3497.16,26125848,99.85,0,0,0.16,516.56,3497.18,26125849,99.79,0.01,0.83,0.28,516.53,3497.2,26125850,99.65,0,0,0.74,516.89,3496.85,26125851,99.79,0,0,0.13,516.58,3497.16,26125852,99.83,0,0,0.17,516.65,3497.08,26125853,99.87,0,0,0.14,516.63,3497.1,26125854,99.85,0,0,0.15,516.61,3497.12,26125855,99.65,0,0,0.73,516.95,3496.79,26125856,99.82,0,0,0.18,516.82,3496.91,26125857,99.88,0,0,0.18,516.8,3496.93,26125858,99.85,0,0,0.14,516.77,3496.95,26125859,99.78,0,0,0.17,516.76,3496.96,26125860,99.63,0,0,0.55,516.85,3496.89,26125861,99.84,0,0,0.33,516.58,3497.15,26125862,99.82,0,0,0.13,515.66,3498.07,26125863,99.83,0,0,0.17,515.64,3498.09,26125864,99.88,0,0,0.15,515.62,3498.1,26125865,99.65,0,0,0.74,515.79,3497.95,26125866,99.82,0,0,0.14,516.1,3497.64,26125867,99.86,0,0,0.16,516.07,3497.66,26125868,99.83,0,0,0.16,516.18,3497.54,26125869,99.79,0,0,0.34,515.79,3497.91,26125870,99.62,0,0,0.72,515.84,3497.88,26125871,99.82,0,0,0.16,515.02,3498.69,26125872,99.85,0,0,0.16,514.99,3498.71,26125873,99.8,0,0,0.14,514.97,3498.73,26125874,99.86,0,0,0.15,515.13,3498.58,26125875,99.77,0,0,0.34,516.2,3497.53,26125876,99.69,0,0,0.54,515.55,3498.18,26125877,99.8,0,0,0.19,515.34,3498.38,26125878,99.82,0,0,0.14,515.34,3498.37,26125879,99.82,0,0,0.14,515.31,3498.4,26125880,99.73,0,0,0.28,516.04,3497.68,26125881,99.64,0,0,0.59,516.94,3496.79,26125882,99.77,0,0,0.18,516.26,3497.46,26125883,99.82,0,0,0.18,516.24,3497.48,26125884,99.81,0,0,0.18,516.22,3497.49,26125885,99.64,0,0,0.3,515.03,3498.69,26125886,99.66,0,0,0.54,515.76,3497.96,26125887,99.79,0,0,0.16,515.1,3498.61,26125888,99.81,0,0,0.14,515.09,3498.62,26125889,99.8,0,0,0.14,515.06,3498.65,26125890,99.73,0,0,0.3,516.28,3497.45,26125891,96.06,0.04,0.01,78.93,527.54,3488.11,26125892,99.78,0,0,64.08,518.69,3494.88,26125893,99.82,0,0,0.15,518.68,3494.89,26125894,99.81,0,0,0.18,518.54,3495.02,26125895,99.74,0,0,0.32,518.41,3495.17,26125896,99.69,0,0,0.63,518.1,3495.5,26125897,99.84,0,0,0.14,516.21,3497.41,26125898,99.8,0,0,0.16,516.19,3497.43,26125899,99.66,0,0,0.29,516.01,3497.6,26125900,99.74,0,0,0.3,515.93,3497.71,26125901,99.72,0,0,0.41,516.36,3497.28,26125902,99.76,0,0,0.29,516.11,3497.54,26125903,99.85,0,0,0.15,516.09,3497.55,26125904,99.82,0,0,0.14,516.07,3497.57,26125905,99.73,0,0,0.39,516.55,3497.1,26125906,99.64,0,0,0.39,516.87,3496.78,26125907,99.8,0,0,0.36,516.27,3497.37,26125908,99.84,0,0,0.15,516.25,3497.39,26125909,99.82,0,0,0.15,516.24,3497.39,26125910,99.68,0,0,0.32,515.75,3497.89,26125911,99.81,0,0,0.13,515.72,3497.92,26125912,99.64,0,0,0.57,515.91,3497.73,26125913,99.78,0,0,0.2,515.25,3498.38,26125914,99.82,0,0,0.15,515.35,3498.28,26125915,99.72,0,0,0.31,515.63,3498.02,26125916,99.81,0,0,0.16,515.58,3498.06,26125917,99.65,0,0,0.57,516.63,3497.01,26125918,99.73,0,0,0.18,516.28,3497.36,26125919,99.85,0,0,0.15,516.26,3497.37,26125920,99.72,0,0,0.29,516.26,3497.39,26125921,99.78,0,0,0.16,516.26,3497.39,26125922,99.7,0,0,0.55,516.73,3496.91,26125923,99.8,0,0,0.15,516.46,3497.17,26125924,99.8,0,0,0.14,516.44,3497.19,26125925,99.74,0,0,0.34,515.72,3497.93,26125926,99.81,0,0,0.16,515.77,3497.87,26125927,99.69,0,0,0.59,516.51,3497.13,26125928,99.85,0,0,0.18,516.56,3497.08,26125929,99.69,0,0,0.27,516.29,3497.32,26125930,99.74,0,0,0.3,516.05,3497.58,26125931,99.83,0,0,0.18,516.01,3497.61,26125932,99.68,0,0,0.6,516.42,3497.2,26125933,99.83,0,0,0.14,516.22,3497.4,26125934,99.76,0,0,0.18,516.21,3497.4,26125935,99.71,0,0,0.34,514.99,3498.63,26125936,99.8,0,0,0.17,514.96,3498.66,26125937,99.63,0,0,0.61,515.41,3498.21,26125938,99.81,0,0,0.18,515.57,3498.04,26125939,99.83,0,0,0.16,515.56,3498.05,26125940,99.72,0,0.01,0.3,516.06,3497.57,26125941,99.83,0,0,0.15,516.01,3497.62,26125942,99.66,0,0,0.39,516.41,3497.21,26125943,99.76,0,0,0.28,516.46,3497.15,26125944,99.78,0,0,0.17,516.45,3497.16,26125945,99.63,0,0,0.31,515.81,3497.81,26125946,98.61,0,0,0.18,515.7,3497.93,26125947,99.75,0,0,0.14,515.67,3497.95,26125948,99.57,0,0,0.58,515.42,3498.19,26125949,99.82,0,0,0.14,514.83,3498.78,26125950,99.63,0,0.02,0.32,516.5,3497.13,26125951,99.81,0,0.01,0.18,516.51,3497.11,26125952,99.8,0,0,0.16,516.46,3497.15,26125953,99.67,0,0,0.59,516.26,3497.35,26125954,99.77,0,0,0.23,515.99,3497.62,26125955,99.73,0,0,0.37,516.18,3497.44,26125956,99.8,0,0,0.18,516.25,3497.36,26125957,99.81,0,0,0.18,516.31,3497.3,26125958,99.66,0,0,0.61,516.66,3496.95,26125959,99.6,0,0,0.27,516.5,3497.08,26125960,99.72,0,0,0.37,516.28,3497.32,26125961,99.84,0,0,0.13,516.24,3497.36,26125962,99.81,0,0,0.16,516.24,3497.36,26125963,99.69,0,0,0.63,516.85,3496.74,26125964,99.81,0,0,0.15,516.69,3496.91,26125965,99.74,0,0,0.32,516.44,3497.18,26125966,99.79,0,0,0.14,516.42,3497.2,26125967,99.78,0,0,0.16,516.4,3497.22,26125968,99.67,0,0,0.55,516.78,3496.83,26125969,99.79,0,0,0.18,516.3,3497.31,26125970,99.68,0,0,0.36,515.58,3498.06,26125971,99.82,0,0,0.13,515.55,3498.09,26125972,99.79,0,0,0.18,515.52,3498.11,26125973,99.63,0,0,0.61,516.4,3497.23,26125974,99.8,0,0,0.21,515.97,3497.66,26125975,99.72,0,0,0.37,516.21,3497.43,26125976,99.75,0,0,0.18,516.19,3497.45,26125977,99.75,0,0,0.18,516.17,3497.46,26125978,99.7,0,0,0.36,516.61,3497.02,26125979,99.82,0,0,0.4,516.49,3497.14,26125980,99.6,0,0,0.37,516.4,3497.24,26125981,99.73,0,0,0.2,516.33,3497.31,26125982,99.76,0,0,0.2,516.31,3497.32,26125983,99.8,0,0,0.2,516.29,3497.34,26125984,99.13,0,0,1.35,517.09,3496.53,26125985,99.65,0,0,0.38,515.81,3497.83,26125986,99.82,0,0,0.2,515.75,3497.89,26125987,99.8,0,0,0.17,515.72,3497.91,26125988,99.8,0,0,0.19,515.7,3497.93,26125989,99.48,0,0,0.69,516.88,3496.72,26125990,99.75,0,0,0.34,516.67,3496.95,26125991,99.81,0,0,0.21,516.69,3496.93,26125992,99.8,0,0,0.17,516.56,3497.05,26125993,99.81,0,0,0.2,516.54,3497.06,26125994,99.7,0,0,0.58,516.87,3496.73,26125995,99.72,0,0,0.31,515.56,3498.06,26125996,99.83,0,0,0.17,515.51,3498.1,26125997,99.85,0,0,0.22,515.25,3498.36,26125998,99.82,0,0,0.16,515.2,3498.4,26125999,99.68,0,0,0.57,516.37,3497.23,26126000,99.75,0,0,0.37,516.76,3496.86,26126001,99.83,0,0,0.2,516.83,3496.79,26126002,99.8,0,0,0.2,516.8,3496.81,26126003,99.77,0,0,0.2,516.79,3496.82,26126004,99.63,0,0,0.44,517.4,3496.2,26126005,99.68,0,0,0.46,516.63,3496.99,26126006,99.8,0,0,0.18,516.5,3497.14,26126007,99.79,0,0,0.17,516.47,3497.17,26126008,99.78,0,0,0.18,516.45,3497.19,26126009,99.59,0,0,0.47,516.89,3496.74,26126010,99.69,0,0,0.47,515.73,3497.92,26126011,99.83,0,0,0.18,515.83,3497.82,26126012,99.8,0,0,0.16,515.81,3497.83,26126013,99.79,0,0,0.18,515.78,3497.86,26126014,99.59,0,0,0.36,516.06,3497.57,26126015,99.69,0,0,0.56,516.49,3497.16,26126016,99.82,0,0,0.16,516.47,3497.17,26126017,99.82,0,0,0.17,515.5,3498.13,26126018,99.73,0,0,0.18,515.45,3498.18,26126019,99.23,0,0,0.29,515.9,3497.7,26126020,99.46,0,0,0.71,514.85,3498.77,26126021,99.83,0.01,0,0.18,514.56,3499.06,26126022,99.81,0,0,0.16,514.57,3499.05,26126023,99.83,0,0,0.17,514.55,3499.06,26126024,99.75,0,0,0.17,514.53,3499.08,26126025,99.48,0,0,0.82,515.16,3498.46,26126026,99.85,0,0,0.16,514.74,3498.86,26126027,99.83,0,0,0.16,514.71,3498.89,26126028,99.8,0,0,0.18,514.69,3498.91,26126029,99.82,0,0,0.18,514.67,3498.93,26126030,99.47,0,0,0.75,515.53,3498.09,26126031,99.83,0,0,0.14,514.55,3499.05,26126032,99.82,0,0,0.16,514.56,3499.05,26126033,99.88,0,0,0.14,514.54,3499.06,26126034,99.88,0,0,0.14,514.52,3499.08,26126035,99.59,0,0,0.75,516.51,3497.1,26126036,99.87,0,0,0.16,516.21,3497.39,26126037,99.9,0,0,0.16,516.18,3497.42,26126038,99.87,0,0,0.14,516.17,3497.42,26126039,99.85,0,0,0.15,516.14,3497.44,26126040,99.61,0,0,0.69,516.72,3496.89,26126041,99.89,0,0,0.17,515.88,3497.73,26126042,99.89,0,0,0.13,515.97,3497.63,26126043,99.85,0,0,0.16,516.02,3497.57,26126044,99.85,0,0,0.14,516,3497.59,26126045,99.47,0,0,0.72,516.05,3497.56,26126046,99.84,0,0,0.14,516.23,3497.38,26126047,99.85,0,0,0.13,516.21,3497.39,26126048,99.88,0,0,0.16,516.18,3497.42,26126049,99.71,0,0,0.27,516.16,3497.41,26126050,99.66,0,0,0.46,516.52,3497.07,26126051,99.85,0,0,0.39,515.89,3497.7,26126052,99.8,0,0,0.15,515.87,3497.71,26126053,99.91,0,0,0.16,516.03,3497.55,26126054,99.87,0,0,0.15,516.27,3497.35,26126055,99.56,0,0,0.52,515.47,3498.17,26126056,99.91,0,0,0.36,516.27,3497.37,26126057,99.85,0,0,0.19,516.25,3497.39,26126058,99.9,0,0,0.18,516.24,3497.39,26126059,99.81,0.01,0.01,0.24,516.24,3497.4,26126060,99.74,0.02,0.06,0.67,520.22,3493.31,26126061,99.67,0,0.01,0.55,521.51,3492.02,26126062,99.88,0,0,0.17,521.06,3492.46,26126063,99.88,0,0,0.14,521.03,3492.49,26126064,99.88,0,0,0.16,521,3492.51,26126065,99.74,0,0,0.32,521.53,3492,26126066,99.77,0,0,0.55,521.06,3492.46,26126067,99.15,0,0,0.14,520.19,3493.32,26126068,99.84,0,0,0.15,520.16,3493.35,26126069,99.88,0,0,0.14,520.13,3493.38,26126070,99.74,0,0,0.32,520.31,3493.22,26126071,99.71,0,0,0.54,520.9,3492.62,26126072,99.88,0,0,0.16,520.75,3492.77,26126073,99.9,0,0,0.16,520.72,3492.79,26126074,99.85,0,0,0.18,520.61,3492.9,26126075,99.81,0,0,0.34,521.63,3491.9,26126076,99.74,0.01,0.03,0.64,523.57,3489.9,26126077,99.87,0,0,0.15,524.11,3489.34,26126078,99.85,0,0,0.14,524.08,3489.37,26126079,99.76,0,0,0.33,524.28,3489.14,26126080,99.82,0,0,0.3,524.28,3489.16,26126081,99.76,0,0,0.56,524.61,3488.82,26126082,99.85,0,0,0.15,524.22,3489.2,26126083,99.9,0,0,0.13,524.26,3489.16,26126084,99.92,0,0,0.16,524.35,3489.08,26126085,99.79,0,0,0.3,524.34,3489.11,26126086,99.75,0,0,0.54,524.66,3488.79,26126087,99.93,0,0,0.14,524.28,3489.16,26126088,99.92,0,0,0.17,524.25,3489.19,26126089,99.88,0,0,0.15,524.22,3489.21,26126090,99.76,0,0,0.3,524.21,3489.24,26126091,99.75,0,0,0.32,524.64,3488.81,26126092,99.87,0,0,0.43,523.86,3489.59,26126093,99.91,0,0,0.13,523.82,3489.62,26126094,99.9,0,0,0.19,523.79,3489.65,26126095,99.83,0,0,0.3,524.28,3489.17,26126096,99.9,0,0,0.18,524.24,3489.21,26126097,99.79,0,0,0.55,524.57,3488.88,26126098,99.9,0,0,0.14,524.32,3489.12,26126099,99.9,0,0.01,0.18,524.35,3489.09,26126100,99.75,0,0,0.3,524.15,3489.31,26126101,99.88,0,0,0.17,524.04,3489.41,26126102,99.75,0,0,0.56,524.96,3488.48,26126103,99.9,0,0,0.15,524.47,3488.97,26126104,99.91,0,0,0.15,524.55,3488.88,26126105,99.79,0,0,0.31,524.38,3489.07,26126106,99.85,0,0,0.16,524.35,3489.1,26126107,99.71,0,0,0.55,524.54,3488.9,26126108,99.91,0,0,0.14,523.79,3489.65,26126109,99.78,0,0,0.32,524.48,3488.93,26126110,99.86,0,0,0.34,524.72,3488.7,26126111,99.87,0,0,0.14,524.71,3488.72,26126112,99.72,0,0.01,0.59,525.02,3488.4,26126113,99.9,0,0,0.14,524.33,3489.08,26126114,99.9,0,0,0.14,524.3,3489.12,26126115,99.81,0,0,0.34,523.81,3489.63,26126116,99.91,0,0,0.15,523.77,3489.67,26126117,99.77,0,0,0.6,524.38,3489.05,26126118,99.9,0,0,0.14,524.2,3489.22,26126119,99.86,0,0,0.14,524.27,3489.15,26126120,99.83,0,0,0.37,524.59,3488.85,26126121,99.91,0,0,0.16,524.57,3488.86,26126122,99.77,0,0,0.44,524.9,3488.53,26126123,99.92,0,0,0.23,524.51,3488.91,26126124,99.9,0,0,0.14,524.49,3488.93,26126125,99.8,0,0,0.3,523.52,3489.92,26126126,99.93,0,0,0.16,523.47,3489.96,26126127,99.9,0,0,0.14,523.51,3489.92,26126128,99.75,0,0,0.59,525.09,3488.34,26126129,99.9,0,0,0.17,524.3,3489.12,26126130,99.72,0,0,0.32,524.78,3488.66,26126131,99.93,0,0,0.19,524.75,3488.68,26126132,99.91,0,0,0.14,524.73,3488.7,26126133,99.75,0,0,0.6,525.37,3488.04,26126134,99.88,0,0,0.18,524.58,3488.83,26126135,99.8,0,0,0.33,523.65,3489.78,26126136,99.82,0,0,0.16,523.59,3489.84,26126137,99.82,0,0,0.16,523.55,3489.87,26126138,99.66,0,0,0.57,524.71,3488.71,26126139,99.77,0,0,0.27,524.5,3488.89,26126140,99.72,0,0,0.34,523.77,3489.63,26126141,99.9,0,0,0.14,523.72,3489.68,26126142,99.9,0,0,0.19,523.69,3489.71,26126143,99.77,0,0,0.55,524.43,3488.96,26126144,99.89,0,0,0.14,524.31,3489.07,26126145,99.77,0,0,0.31,524.55,3488.86,26126146,99.88,0,0,0.16,524.53,3488.88,26126147,99.92,0,0,0.15,524.49,3488.91,26126148,99.66,0,0,0.54,524.87,3488.52,26126149,99.89,0,0,0.2,524.66,3488.72,26126150,99.78,0,0,0.33,524.1,3489.3,26126151,99.93,0,0,0.16,524.12,3489.27,26126152,99.87,0,0,0.14,524.09,3489.3,26126153,99.76,0,0,0.57,524.51,3488.87,26126154,99.86,0,0,0.14,524.77,3488.61,26126155,99.83,0,0,0.31,525.01,3488.39,26126156,99.86,0,0,0.19,524.97,3488.43,26126157,99.9,0,0,0.13,524.95,3488.45,26126158,99.86,0,0,0.16,525.1,3488.29,26126159,99.74,0,0,0.58,525.41,3487.97,26126160,99.72,0,0,0.3,524.09,3489.31,26126161,99.92,0,0,0.14,524.05,3489.35,26126162,99.89,0,0,0.16,524.01,3489.38,26126163,99.89,0,0,0.16,523.99,3489.4,26126164,99.73,0,0,0.57,525.24,3488.14,26126165,99.78,0,0,0.38,524.53,3488.87,26126166,99.88,0,0,0.13,524.6,3488.8,26126167,99.87,0,0,0.16,524.56,3488.83,26126168,99.89,0,0,0.15,524.54,3488.84,26126169,99.59,0,0,0.67,525.3,3488.06,26126170,99.68,0,0,0.3,524.75,3488.63,26126171,99.9,0,0,0.15,523.87,3489.5,26126172,99.85,0,0.01,0.16,523.7,3489.67,26126173,99.9,0,0,0.14,523.85,3489.52,26126174,99.73,0,0,0.49,524.18,3489.2,26126175,99.86,0,0,0.36,524.06,3489.33,26126176,99.9,0,0,0.16,524.03,3489.36,26126177,99.84,0,0,0.18,524,3489.39,26126178,99.87,0,0,0.14,523.98,3489.4,26126179,99.76,0,0,0.41,524.39,3488.99,26126180,99.81,0,0,0.47,522.83,3490.56,26126181,99.93,0,0.01,0.14,522.86,3490.53,26126182,99.92,0,0,0.13,522.81,3490.57,26126183,99.88,0,0,0.17,522.77,3490.6,26126184,99.73,0,0,0.4,523.26,3490.12,26126185,99.8,0,0,0.46,523.97,3489.42,26126186,99.93,0,0,0.14,524,3489.38,26126187,99.9,0,0,0.16,524.09,3489.29,26126188,99.89,0,0,0.14,524.06,3489.31,26126189,99.77,0,0,0.55,524.37,3489,26126190,99.78,0,0,0.3,523.55,3489.84,26126191,99.91,0,0,0.15,523.51,3489.88,26126192,99.88,0,0,0.17,523.48,3489.9,26126193,99.9,0,0,0.14,523.46,3489.91,26126194,99.84,0,0,0.19,523.35,3490.02,26126195,99.54,0,0,0.71,524.02,3489.36,26126196,99.9,0,0,0.16,523.32,3490.06,26126197,99.87,0,0,0.14,523.3,3490.08,26126198,99.88,0,0,0.16,523.27,3490.1,26126199,99.61,0,0,0.27,523.97,3489.38,26126200,99.16,0,0,0.71,524.56,3488.81,26126201,99.89,0,0,0.14,524.21,3489.16,26126202,99.91,0,0,0.17,524.19,3489.18,26126203,99.84,0,0,0.15,524.37,3488.99,26126204,99.9,0,0,0.15,524.34,3489.01,26126205,99.69,0,0,0.75,524.36,3489.01,26126206,99.93,0,0,0.14,524.06,3489.31,26126207,99.9,0,0,0.16,524.04,3489.33,26126208,99.91,0,0,0.15,524,3489.36,26126209,99.89,0,0,0.14,523.97,3489.4,26126210,99.7,0,0,0.76,524.37,3489.01,26126211,99.89,0,0,0.14,524.36,3489.02,26126212,99.89,0,0,0.17,524.34,3489.04,26126213,99.92,0,0,0.14,524.3,3489.07,26126214,99.86,0,0,0.14,524.27,3489.1,26126215,99.7,0,0,0.78,524.66,3488.72,26126216,99.93,0,0,0.13,523.5,3489.88,26126217,99.9,0,0,0.16,523.47,3489.9,26126218,99.9,0,0,0.14,523.6,3489.77,26126219,99.9,0,0,0.19,523.85,3489.52,26126220,98.94,0,0,11.11,524.16,3489.18,26126221,99.89,0,0,0.14,524.43,3488.93,26126222,99.9,0,0,0.16,524.4,3488.96,26126223,99.85,0,0,0.14,524.37,3488.98,26126224,99.87,0,0,0.17,524.34,3489.01,26126225,99.65,0,0,0.61,523.71,3489.69,26126226,99.88,0,0,0.27,524.16,3489.26,26126227,99.8,0,0,0.18,524.22,3489.2,26126228,99.9,0,0,0.16,524.18,3489.22,26126229,99.75,0.01,0,0.3,524.62,3488.78,26126230,99.58,0,0,0.64,523.64,3489.78,26126231,99.88,0,0,0.3,524.08,3489.33,26126232,99.88,0,0.01,0.16,524.2,3489.21,26126233,99.88,0,0,0.14,524.2,3489.21,26126234,99.86,0,0,0.18,524.17,3489.23,26126235,99.8,0,0,0.31,523.69,3489.73,26126236,99.75,0,0,0.57,524.46,3488.95,26126237,99.9,0,0,0.21,524.11,3489.3,26126238,99.91,0.01,0,0.14,524.15,3489.26,26126239,99.91,0,0,0.15,524.21,3489.19,26126240,99.83,0,0,0.31,524.45,3488.98,26126241,99.78,0,0,0.56,525.01,3488.42,26126242,99.89,0,0,0.13,524.4,3489.01,26126243,99.9,0,0,0.17,524.37,3489.04,26126244,99.84,0,0,0.15,524.34,3489.07,26126245,99.86,0,0,0.36,524.1,3489.33,26126246,99.73,0,0,0.55,524.92,3488.5,26126247,99.93,0,0,0.16,524.71,3488.7,26126248,96.38,0,0,0.17,524.68,3488.73,26126249,99.9,0,0,0.14,524.65,3488.75,26126250,99.79,0,0,0.33,524.65,3488.77,26126251,99.7,0,0,0.56,524.97,3488.44,26126252,99.79,0,0,0.17,524.59,3488.82,26126253,99.83,0,0,0.14,524.55,3488.85,26126254,99.87,0,0,0.18,524.58,3488.82,26126255,99.74,0,0,0.32,523.53,3489.89,26126256,94.97,0.31,0.01,78.54,537.06,3476.68,26126257,99.73,0,0,181.62,526.82,3486.53,26126258,99.87,0,0,0.19,526.8,3486.55,26126259,99.78,0,0,0.3,527.28,3486.05,26126260,99.74,0,0,0.35,525.62,3487.73,26126261,99.76,0,0,0.48,525.92,3487.43,26126262,99.86,0,0,0.34,524.42,3488.98,26126263,99.92,0,0,0.18,524.48,3488.91,26126264,99.9,0,0,0.17,524.45,3488.93,26126265,99.77,0,0,0.34,523.75,3489.66,26126266,99.77,0,0,0.46,524.13,3489.28,26126267,99.87,0,0,0.32,524.64,3488.76,26126268,99.89,0,0,0.17,524.62,3488.78,26126269,99.85,0,0,0.18,524.59,3488.8,26126270,99.83,0,0,0.38,525,3488.4,26126271,99.84,0,0,0.2,524.98,3488.42,26126272,99.58,0,0,0.59,524.81,3488.59,26126273,99.9,0,0,0.21,523.95,3489.44,26126274,99.88,0,0,0.21,523.92,3489.47,26126275,99.76,0,0,0.39,524.14,3489.26,26126276,99.88,0,0,0.19,524.12,3489.28,26126277,99.72,0,0,0.57,525,3488.4,26126278,99.88,0,0,0.16,524.99,3488.4,26126279,99.83,0,0,0.17,524.82,3488.57,26126280,99.73,0,0,0.38,524.22,3489.18,26126281,99.82,0,0,0.2,524.17,3489.22,26126282,99.7,0,0,0.59,524.8,3488.59,26126283,99.85,0,0,0.15,524.11,3489.27,26126284,99.9,0,0,0.14,524.09,3489.29,26126285,99.76,0,0,0.3,524.65,3488.74,26126286,99.86,0,0,0.17,524.72,3488.67,26126287,99.73,0,0,0.54,525.04,3488.35,26126288,99.83,0,0,0.16,524.66,3488.73,26126289,99.57,0,0,0.33,524.39,3488.97,26126290,99.78,0,0,0.27,523.64,3489.74,26126291,99.86,0,0,0.15,523.6,3489.79,26126292,99.58,0.01,0.01,0.55,524.33,3489.06,26126293,99.85,0,0,0.15,524.46,3488.93,26126294,99.88,0,0,0.15,524.42,3488.96,26126295,99.75,0,0,0.3,523.44,3489.95,26126296,99.82,0,0,0.16,523.4,3489.99,26126297,99.74,0,0,0.64,524.42,3488.97,26126298,99.9,0,0,0.14,524.58,3488.8,26126299,99.9,0,0,0.14,524.55,3488.83,26126300,99.76,0,0,0.26,524.74,3488.66,26126301,99.83,0,0,0.17,524.7,3488.7,26126302,99.73,0,0,0.42,525.04,3488.35,26126303,99.91,0,0,0.28,524.65,3488.74,26126304,99.9,0,0,0.18,524.6,3488.78,26126305,99.74,0,0,0.27,523.87,3489.53,26126306,99.9,0,0,0.14,523.83,3489.57,26126307,99.92,0,0,0.19,523.98,3489.41,26126308,99.7,0,0,0.55,524.3,3489.09,26126309,99.91,0,0,0.14,523.91,3489.48,26126310,99.74,0,0,0.26,524.88,3488.52,26126311,99.9,0,0,0.16,524.87,3488.53,26126312,99.9,0,0,0.15,524.83,3488.57,26126313,99.74,0,0,0.57,524.69,3488.71,26126314,99.89,0,0,0.23,524.29,3489.1,26126315,99.76,0,0,0.29,523.01,3490.39,26126316,99.93,0,0,0.16,522.97,3490.43,26126317,99.88,0,0,0.14,522.93,3490.46,26126318,99.7,0,0,0.59,524.43,3488.96,26126319,99.78,0,0,0.27,524.64,3488.73,26126320,99.78,0,0,0.27,524.92,3488.46,26126321,99.81,0.05,5.65,0.51,524.93,3488.44,26126322,99.89,0,0.01,0.21,524.91,3488.43,26126323,99.74,0,0,0.58,524.36,3488.99,26126324,99.9,0,0,0.14,522.87,3490.47,26126325,99.76,0,0,0.27,524.99,3488.36,26126326,99.85,0,0,0.14,524.25,3489.09,26126327,99.87,0,0,0.16,523.96,3489.38,26126328,99.69,0,0,0.55,524.46,3488.88,26126329,99.88,0,0,0.15,524.4,3488.93,26126330,99.78,0,0,0.26,524.39,3488.96,26126331,99.93,0,0,0.16,524.37,3488.98,26126332,99.89,0,0,0.14,524.34,3489.01,26126333,99.73,0,0,0.55,524.58,3488.77,26126334,99.88,0,0,0.17,524.21,3489.13,26126335,99.84,0,0,0.29,524.23,3489.13,26126336,99.85,0,0,0.14,524.19,3489.16,26126337,99.88,0,0,0.14,524.17,3489.18,26126338,99.75,0,0,0.5,524.54,3488.8,26126339,99.93,0,0,0.2,524.36,3489,26126340,99.78,0,0,0.3,524.11,3489.28,26126341,99.89,0,0,0.16,524.07,3489.32,26126342,99.9,0,0,0.14,524.22,3489.16,26126343,99.75,0,0,0.3,524.76,3488.62,26126344,99.86,0,0,0.4,523.44,3489.93,26126345,99.71,0,0,0.27,522.71,3490.68,26126346,99.89,0,0,0.14,522.67,3490.72,26126347,99.92,0,0,0.17,522.64,3490.75,26126348,99.9,0,0,0.14,522.61,3490.78,26126349,99.54,0,0,0.71,524.7,3488.68,26126350,99.79,0,0,0.27,523.98,3489.41,26126351,99.88,0,0,0.14,523.98,3489.41,26126352,99.91,0,0.01,0.17,523.96,3489.43,26126353,99.89,0,0,0.14,523.92,3489.46,26126354,99.76,0,0,0.54,524.75,3488.65,26126355,99.76,0,0,0.27,523.46,3489.96,26126356,99.91,0,0,0.16,523.37,3490.05,26126357,99.9,0,0,0.19,523.35,3490.06,26126358,99.86,0,0,0.16,523.5,3489.91,26126359,99.74,0,0,0.55,524.32,3489.08,26126360,99.73,0,0,0.26,524.66,3488.76,26126361,99.87,0,0,0.14,524.64,3488.77,26126362,99.88,0,0,0.16,524.61,3488.8,26126363,99.89,0,0,0.14,524.57,3488.84,26126364,99.74,0,0,0.56,524.61,3488.79,26126365,99.82,0,0,0.27,524.23,3489.19,26126366,99.9,0,0,0.16,524.21,3489.2,26126367,99.89,0,0,0.14,524.18,3489.23,26126368,99.89,0,0,0.14,524.15,3489.26,26126369,98.89,0,0,0.56,524.48,3488.92,26126370,99.77,0.01,0.74,0.29,524.16,3489.26,26126371,99.87,0,0.03,0.16,524.17,3489.24,26126372,99.86,0,0.01,0.15,524.13,3489.28,26126373,99.9,0,0,0.16,524.09,3489.31,26126374,99.73,0,0,0.4,524.72,3488.68,26126375,99.78,0,0,0.42,523.18,3490.24,26126376,99.86,0,0,0.15,523.26,3490.16,26126377,99.94,0,0,0.17,523.22,3490.18,26126378,99.88,0,0,0.16,523.34,3490.06,26126379,99.72,0,0,0.27,523.81,3489.57,26126380,99.61,0,0,0.69,524.99,3488.41,26126381,99.89,0,0,0.14,524.61,3488.78,26126382,99.83,0,0,0.16,524.58,3488.81,26126383,99.87,0,0,0.15,524.58,3488.81,26126384,99.89,0,0,0.17,524.72,3488.66,26126385,99.63,0,0,0.77,524.83,3488.56,26126386,99.86,0,0,0.16,524.41,3488.97,26126387,99.9,0,0,0.15,524.38,3488.99,26126388,99.89,0,0,0.18,524.35,3489.02,26126389,99.92,0,0,0.14,524.32,3489.05,26126390,99.72,0,0,0.71,524.68,3488.71,26126391,99.89,0,0,0.15,524.45,3488.93,26126392,99.87,0,0,0.16,524.44,3488.94,26126393,99.92,0,0,0.16,524.41,3488.97,26126394,99.88,0,0,0.16,524.38,3488.99,26126395,99.72,0,0,0.68,524.18,3489.21,26126396,99.86,0,0,0.16,523.37,3490.02,26126397,99.87,0,0,0.14,523.33,3490.05,26126398,99.95,0,0,0.16,523.32,3490.06,26126399,99.91,0,0,0.14,523.46,3489.91,26126400,99.62,0,0,0.65,524.96,3488.43,26126401,99.75,0,0,0.17,523.67,3489.71,26126402,99.85,0,0,0.14,523.64,3489.74,26126403,99.86,0,0,0.15,523.61,3489.77,26126404,99.81,0,0,0.14,523.59,3489.78,26126405,99.61,0,0,0.53,524.06,3489.32,26126406,99.83,0,0,0.3,524.19,3489.19,26126407,99.81,0,0,0.14,524.19,3489.19,26126408,99.86,0,0,0.15,524.16,3489.21,26126409,99.64,0,0,0.26,524.61,3488.74,26126410,99.7,0,0,0.68,525.18,3488.19,26126411,99.85,0,0,0.14,524.58,3488.78,26126412,99.77,0,0.01,0.16,524.55,3488.8,26126413,99.84,0,0,0.15,524.56,3488.79,26126414,99.86,0,0,0.14,524.68,3488.69,26126415,99.72,0,0,0.28,524.19,3489.19,26126416,99.76,0,0,0.58,525,3488.38,26126417,99.83,0,0,0.2,524.38,3488.99,26126418,99.86,0,0,0.14,524.34,3489.03,26126419,99.81,0,0,0.17,524.32,3489.05,26126420,99.81,0,0,0.28,524.36,3489.02,26126421,99.7,0,0.01,0.57,524.77,3488.61,26126422,99.88,0,0,0.15,524.41,3488.97,26126423,99.88,0,0,0.16,524.38,3488.98,26126424,99.86,0,0,0.14,524.36,3489,26126425,99.78,0,0,0.3,523.65,3489.73,26126426,99.72,0,0,0.68,523.73,3489.65,26126427,99.87,0,0,0.14,523.31,3490.07,26126428,99.85,0,0,0.16,523.38,3489.99,26126429,99.88,0,0,0.15,523.47,3489.9,26126430,99.71,0,0,0.28,523.69,3489.69,26126431,99.69,0,0,0.55,524.66,3488.72,26126432,99.79,0,0,0.17,524.62,3488.75,26126433,99.83,0,0,0.14,524.58,3488.79,26126434,99.79,0,0,0.17,524.48,3488.88,26126435,99.76,0,0,0.3,524.31,3489.07,26126436,99.65,0,0,0.4,524.92,3488.45,26126437,99.85,0,0,0.3,524.43,3488.94,26126438,99.82,0,0,0.15,524.35,3489.01,26126439,99.59,0,0,0.26,524.61,3488.73,26126440,99.76,0,0,0.31,524.84,3488.52,26126441,99.65,0,0,0.52,525.16,3488.19,26126442,99.84,0,0,0.19,524.79,3488.56,26126443,99.83,0,0,0.15,524.92,3488.42,26126444,99.82,0,0,0.14,524.91,3488.43,26126445,99.75,0,0,0.29,524.91,3488.45,26126446,99.71,0,0,0.45,525.19,3488.16,26126447,99.82,0,0,0.3,524.6,3488.75,26126448,99.82,0,0,0.14,524.56,3488.77,26126449,99.8,0,0,0.15,524.53,3488.8,26126450,99.71,0,0,0.27,524.09,3489.26,26126451,99.83,0,0,0.16,524.2,3489.15,26126452,99.7,0,0,0.59,525.23,3488.12,26126453,99.78,0,0,0.14,524.86,3488.48,26126454,99.83,0,0,0.16,524.82,3488.52,26126455,99.79,0,0,0.28,524.33,3489.03,26126456,99.8,0,0,0.14,524.28,3489.07,26126457,99.68,0,0,0.55,525.03,3488.32,26126458,99.84,0,0,0.15,524.65,3488.69,26126459,99.83,0,0,0.16,524.62,3488.71,26126460,99.71,0,0,0.29,524.86,3488.49,26126461,99.78,0,0,0.14,524.82,3488.52,26126462,99.67,0,0,0.6,525.15,3488.19,26126463,99.83,0,0,0.15,524.77,3488.57,26126464,99.85,0,0,0.17,524.83,3488.5,26126465,99.73,0,0,0.3,524.47,3488.88,26126466,99.81,0,0,0.14,524.4,3488.95,26126467,99.69,0,0,0.54,525.04,3488.3,26126468,99.83,0,0,0.18,524.83,3488.51,26126469,99.61,0,0,0.29,524.82,3488.49,26126470,99.72,0,0,0.27,525.04,3488.28,26126471,99.83,0,0,0.17,525.01,3488.31,26126472,99.69,0,0.01,0.4,525.29,3488.02,26126473,99.84,0,0,0.29,523.9,3489.4,26126474,99.8,0.01,0.01,0.18,523.83,3489.47,26126475,99.8,0,0,0.29,524.75,3488.57,26126476,99.85,0,0,0.14,524.88,3488.43,26126477,99.7,0,0,0.61,525.29,3488.02,26126478,99.82,0,0,0.19,523.53,3489.78,26126479,99.83,0,0,0.15,523.14,3490.16,26126480,99.81,0,0,0.29,524.1,3489.22,26126481,99.85,0,0,0.14,524.08,3489.23,26126482,99.65,0,0,0.6,524.54,3488.78,26126483,99.82,0,0,0.16,523.95,3489.37,26126484,99.85,0,0,0.15,523.92,3489.4,26126485,99.72,0,0,0.29,524.15,3489.19,26126486,99.82,0,0,0.16,524.13,3489.2,26126487,99.82,0,0,0.14,524.11,3489.22,26126488,99.62,0,0,0.58,523.56,3489.76,26126489,99.86,0,0,0.14,523.06,3490.26,26126490,99.75,0,0,0.29,523.05,3490.28,26126491,99.84,0,0,0.16,523.22,3490.11,26126492,99.8,0,0,0.15,523.19,3490.14,26126493,99.69,0,0,0.55,523.71,3489.61,26126494,99.79,0,0,0.16,523.43,3489.88,26126495,99.74,0,0,0.29,524.1,3489.23,26126496,99.8,0,0,0.15,524.07,3489.26,26126497,99.83,0,0,0.16,524.04,3489.28,26126498,99.67,0,0,0.58,524.64,3488.67,26126499,99.61,0,0,0.36,524.17,3489.12,26126500,99.74,0,0,0.28,524.16,3489.15,26126501,99.81,0,0,0.14,524.13,3489.17,26126502,99.83,0,0,0.15,524.09,3489.2,26126503,99.69,0,0,0.55,524.42,3488.87,26126504,99.82,0,0,0.14,524.03,3489.26,26126505,99.7,0,0,0.28,523.39,3489.91,26126506,99.78,0,0,0.4,523.83,3489.47,26126507,99.8,0,0,0.16,523.92,3489.38,26126508,99.64,0,0,0.41,524.45,3488.84,26126509,99.77,0,0,0.3,524.36,3488.93,26126510,99.68,0,0,0.32,524.6,3488.71,26126511,99.85,0,0,0.18,524.57,3488.75,26126512,99.82,0,0,0.18,524.54,3488.78,26126513,99.64,0,0,0.57,524.8,3488.52,26126514,99.82,0,0,0.2,524.41,3488.9,26126515,99.79,0,0,0.3,524.65,3488.68,26126516,99.82,0,0,0.16,524.62,3488.7,26126517,99.83,0,0,0.14,524.59,3488.73,26126518,99.65,0,0,0.41,525.22,3488.09,26126519,99.82,0,0,0.29,524.27,3489.03,26126520,99.72,0,0,0.27,523.78,3489.54,26126521,99.84,0,0,0.14,523.92,3489.39,26126522,99.84,0,0,0.17,523.89,3489.42,26126523,99.78,0,0,0.14,523.87,3489.43,26126524,99.55,0,0,0.55,523.73,3489.57,26126525,99.69,0,0,0.28,524.07,3489.25,26126526,99.78,0,0,0.16,524.06,3489.26,26126527,99.79,0,0,0.15,524.04,3489.27,26126528,99.81,0,0,0.16,524,3489.3,26126529,99.41,0.02,0.07,0.68,524.73,3488.55,26126530,99.69,0.01,0.01,0.33,524.29,3489.01,26126531,99.8,0,0,0.14,524.4,3488.89,26126532,99.8,0,0.01,0.14,524.41,3488.88,26126533,99.78,0,0,0.16,524.38,3488.9,26126534,99.7,0,0,0.57,524.32,3488.96,26126535,99.73,0,0,0.34,523.13,3490.17,26126536,99.82,0,0,0.18,523.09,3490.21,26126537,99.75,0,0,0.22,523.05,3490.23,26126538,99.85,0,0,0.18,523.02,3490.26,26126539,99.67,0,0,0.59,523.96,3489.31,26126540,99.61,0,0,0.3,523.97,3489.33,26126541,99.83,0,0,0.14,523.88,3489.41,26126542,99.8,0,0,0.16,523.85,3489.44,26126543,99.79,0,0,0.18,523.81,3489.47,26126544,99.66,0,0,0.42,524.97,3488.31,26126545,99.67,0,0,0.47,524.78,3488.52,26126546,99.79,0,0,0.16,524.84,3488.45,26126547,99.83,0,0,0.18,524.9,3488.39,26126548,99.83,0,0,0.14,524.87,3488.41,26126549,99.67,0,0,0.57,525.46,3487.81,26126550,99.72,0,0,0.32,524.59,3488.7,26126551,99.84,0,0,0.15,524.56,3488.73,26126552,99.81,0,0,0.14,524.53,3488.75,26126553,99.84,0,0,0.18,524.5,3488.78,26126554,99.69,0,0,0.42,525.24,3488.03,26126555,99.78,0,0,0.44,524.4,3488.89,26126556,99.83,0,0,0.14,524.37,3488.92,26126557,99.81,0,0,0.16,524.33,3488.95,26126558,99.84,0,0,0.14,524.3,3488.98,26126559,99.69,0,0,0.28,524.75,3488.5,26126560,99.52,0,0,0.66,525.11,3488.15,26126561,99.75,0,0,0.16,524.81,3488.45,26126562,99.8,0,0,0.14,524.88,3488.38,26126563,99.49,0,0,0.16,524.85,3488.41,26126564,99.77,0,0,0.15,524.82,3488.43,26126565,99.59,0,0,0.73,525.28,3487.98,26126566,99.82,0,0,0.15,525.02,3488.24,26126567,99.82,0,0,0.14,524.98,3488.27,26126568,99.77,0,0,0.16,524.96,3488.29,26126569,99.8,0,0,0.14,525.14,3488.11,26126570,99.56,0,0,0.67,524.87,3488.4,26126571,99.8,0,0,0.16,524.87,3488.39,26126572,99.83,0,0,0.14,524.85,3488.41,26126573,99.78,0,0,0.16,524.81,3488.44,26126574,99.82,0,0,0.14,524.78,3488.47,26126575,99.6,0,0,0.68,525.02,3488.24,26126576,99.82,0,0,0.15,524.59,3488.67,26126577,99.81,0,0,0.16,524.65,3488.6,26126578,99.83,0,0,0.14,524.63,3488.63,26126579,99.85,0,0,0.14,524.59,3488.65,26126580,99.47,0,0,0.63,524.3,3488.97,26126581,99.83,0,0,0.23,524.31,3488.95,26126582,99.78,0,0,0.14,524.28,3488.98,26126583,99.83,0,0,0.14,524.26,3489,26126584,99.82,0,0,0.16,524.38,3488.87,26126585,99.56,0,0,0.57,524.75,3488.51,26126586,99.85,0,0,0.31,524.36,3488.89,26126587,99.85,0,0,0.14,524.33,3488.92,26126588,99.9,0,0,0.15,524.31,3488.93,26126589,99.83,0,0,0.27,525.01,3488.21,26126590,99.69,0,0,0.45,525.35,3487.89,26126591,99.83,0,0,0.36,524.82,3488.41,26126592,99.88,0,0.01,0.18,524.88,3488.35,26126593,99.9,0,0,0.14,524.85,3488.38,26126594,87.1,6.22,0.02,149.67,546.85,3448.36,26126595,96.71,0,0,45.21,533.73,3468.92,26126596,99.74,0,0,0.6,528,3479.91,26126597,99.88,0,0,0.2,527.36,3480.53,26126598,99.9,0,0,0.16,527.33,3480.56,26126599,99.91,0,0,0.17,527.2,3480.69,26126600,99.8,0,0,0.38,524.95,3484.12,26126601,99.75,0,0,0.55,524.79,3484.53,26126602,99.93,0,0,0.14,524.41,3484.91,26126603,99.92,0,0,0.14,524.38,3484.93,26126604,99.93,0,0,0.15,524.52,3484.79,26126605,98.48,0,0,15.64,525.16,3484.6,26126606,99.77,0,0,0.57,524.57,3484.73,26126607,99.89,0,0,0.14,524.46,3484.84,26126608,99.9,0,0,0.16,524.43,3484.86,26126609,99.93,0,0,0.15,524.4,3484.89,26126610,99.81,0,0,0.31,523.96,3485.34,26126611,98.97,0,0,0.55,524.34,3484.97,26126612,99.93,0,0,0.16,524.24,3485.08,26126613,99.93,0,0,0.14,524.24,3485.07,26126614,99.91,0,0,0.19,524.21,3485.09,26126615,99.78,0,0,0.31,523.53,3485.77,26126616,99.72,0,0,0.4,524.49,3484.8,26126617,99.9,0,0,0.29,524.44,3484.85,26126618,99.9,0,0,0.16,524.42,3484.87,26126619,99.85,0,0,0.31,524.64,3484.64,26126620,99.88,0,0,0.33,525.04,3484.26,26126621,95.99,0.04,0.01,78.08,534.2,3476.88,26126622,99.83,0,0.01,64.45,527.09,3482.13,26126623,99.87,0,0,0.19,527.22,3482,26126624,99.61,0,0,0.2,527.18,3482.04,26126625,99.77,0,0,0.37,527.17,3482.07,26126626,99.77,0,0,0.36,527.31,3481.93,26126627,99.89,0,0,0.43,523.97,3485.32,26126628,99.86,0,0,0.17,523.95,3485.34,26126629,99.92,0,0,0.16,523.92,3485.36,26126630,99.83,0,0,0.34,524.8,3484.5,26126631,99.9,0,0,0.16,524.79,3484.51,26126632,99.73,0,0,0.61,525.11,3484.18,26126633,99.91,0,0,0.17,523.75,3485.55,26126634,99.88,0,0,0.18,523.71,3485.57,26126635,99.85,0,0,0.3,523.72,3485.59,26126636,99.9,0,0,0.14,523.69,3485.61,26126637,99.74,0,0,0.58,524.38,3484.91,26126638,99.86,0,0,0.15,524.06,3485.24,26126639,99.87,0,0,0.15,524.03,3485.25,26126640,99.77,0,0,0.29,523.56,3485.75,26126641,99.88,0,0,0.14,523.51,3485.79,26126642,99.64,0,0,0.58,524.02,3485.28,26126643,99.88,0,0,0.14,523.45,3485.84,26126644,99.86,0,0,0.15,523.43,3485.86,26126645,99.7,0,0,0.34,523.27,3486.03,26126646,99.86,0.01,0.01,0.16,523.32,3485.97,26126647,99.72,0,0,0.58,524.04,3485.25,26126648,99.88,0,0,0.18,523.74,3485.55,26126649,99.68,0,0,0.34,523.97,3485.29,26126650,99.79,0,0,0.32,522.73,3486.55,26126651,99.91,0,0,0.18,522.68,3486.59,26126652,99.75,0,0.01,0.58,523.33,3485.94,26126653,99.86,0,0,0.18,523.06,3486.21,26126654,99.93,0,0,0.18,523.02,3486.24,26126655,99.81,0,0,0.28,523.73,3485.55,26126656,99.91,0,0,0.16,523.73,3485.54,26126657,99.76,0,0,0.61,524.31,3484.96,26126658,99.91,0,0,0.14,523.92,3485.34,26126659,99.9,0,0,0.14,523.9,3485.36,26126660,99.83,0,0.01,0.28,523.81,3485.47,26126661,99.89,0,0,0.18,523.8,3485.47,26126662,99.73,0,0,0.58,524.18,3485.09,26126663,99.91,0,0,0.14,523.98,3485.28,26126664,99.92,0,0,0.14,523.95,3485.31,26126665,99.84,0,0,0.3,524.19,3485.09,26126666,99.92,0,0,0.16,524.16,3485.12,26126667,99.8,0,0,0.3,524.91,3484.36,26126668,99.89,0,0,0.39,523.79,3485.47,26126669,99.92,0,0,0.17,523.76,3485.5,26126670,99.77,0,0,0.34,524.24,3485.03,26126671,99.94,0,0,0.14,524.22,3485.05,26126672,99.94,0,0,0.16,524.2,3485.07,26126673,99.73,0,0,0.54,524.66,3484.6,26126674,99.85,0,0,0.15,524.26,3485,26126675,99.79,0,0,0.3,523.76,3485.52,26126676,99.9,0,0,0.16,523.82,3485.45,26126677,99.91,0,0,0.18,523.79,3485.48,26126678,99.79,0,0,0.53,524.12,3485.14,26126679,99.73,0,0,0.29,523.52,3485.72,26126680,99.81,0,0,0.29,523.72,3485.54,26126681,99.92,0,0,0.2,523.69,3485.57,26126682,99.91,0,0,0.15,523.73,3485.52,26126683,99.69,0,0,0.54,524.33,3484.91,26126684,99.93,0,0,0.15,524.02,3485.21,26126685,99.24,0,0,0.31,524.26,3484.99,26126686,99.86,0,0,0.14,524.23,3485.01,26126687,99.85,0,0,0.17,524.2,3485.04,26126688,99.66,0,0,0.4,524.53,3484.71,26126689,99.91,0,0,0.29,524.15,3485.09,26126690,99.75,0,0,0.29,523.59,3485.66,26126691,99.89,0,0,0.15,523.54,3485.71,26126692,99.89,0,0,0.16,523.51,3485.74,26126693,99.78,0,0,0.54,524.19,3485.05,26126694,99.85,0,0,0.14,523.45,3485.78,26126695,99.78,0,0,0.28,524.17,3485.08,26126696,99.88,0,0,0.17,524.16,3485.09,26126697,99.88,0,0,0.15,524.31,3484.94,26126698,99.73,0,0,0.45,524.66,3484.58,26126699,99.83,0,0,0.31,524.5,3484.74,26126700,99.72,0,0,0.27,523.28,3485.98,26126701,99.92,0,0,0.16,523.22,3486.03,26126702,99.94,0,0,0.14,523.19,3486.06,26126703,99.88,0.01,0.01,0.19,523.24,3486,26126704,99.71,0,0,0.61,523.82,3485.41,26126705,99.66,0,0,0.31,523.79,3485.45,26126706,99.88,0.01,0.01,0.17,523.72,3485.52,26126707,99.86,0.01,0.01,0.16,523.7,3485.53,26126708,99.89,0,0,0.14,523.64,3485.6,26126709,99.55,0,0,0.7,524.85,3484.36,26126710,99.79,0,0,0.35,523.33,3485.89,26126711,99.93,0,0,0.14,523.26,3485.96,26126712,99.92,0,0.01,0.16,523.23,3485.99,26126713,99.91,0,0,0.18,523.2,3486.01,26126714,99.74,0,0,0.54,524.91,3484.34,26126715,99.84,0,0,0.28,524.66,3484.62,26126716,99.9,0,0,0.14,524.62,3484.65,26126717,99.92,0,0,0.21,524.23,3485.04,26126718,99.92,0,0,0.14,524.3,3484.96,26126719,99.77,0,0,0.58,524.85,3484.4,26126720,99.85,0,0.01,0.29,523.29,3485.99,26126721,99.9,0,0,0.13,523.24,3486.03,26126722,99.92,0,0,0.16,523.21,3486.06,26126723,99.92,0,0,0.14,523.18,3486.08,26126724,99.78,0,0,0.52,524.24,3485.01,26126725,99.85,0,0,0.39,524.56,3484.72,26126726,99.86,0,0,0.13,524.53,3484.74,26126727,99.9,0,0,0.19,524.51,3484.76,26126728,99.9,0,0,0.19,524.47,3484.79,26126729,99.7,0,0,0.58,524.87,3484.38,26126730,99.76,0,0,0.33,524.68,3484.59,26126731,99.89,0,0,0.18,524.65,3484.62,26126732,99.9,0,0,0.18,524.71,3484.56,26126733,99.86,0,0,0.16,524.78,3484.48,26126734,99.78,0,0,0.41,525.11,3484.15,26126735,99.72,0,0,0.46,523.78,3485.5,26126736,99.88,0,0,0.14,523.73,3485.54,26126737,99.87,0,0,0.16,523.69,3485.57,26126738,99.88,0,0,0.15,523.67,3485.59,26126739,99.76,0,0,0.3,524.4,3484.83,26126740,99.48,0,0,0.67,523.54,3485.71,26126741,99.89,0,0,0.16,523.05,3486.2,26126742,99.9,0,0,0.14,523.01,3486.23,26126743,99.89,0,0,0.14,522.99,3486.25,26126744,99.91,0,0,0.15,522.95,3486.28,26126745,99.65,0,0,0.69,524.58,3484.67,26126746,99.89,0,0,0.13,524.39,3484.86,26126747,99.89,0,0,0.16,524.36,3484.88,26126748,99.89,0,0,0.14,524.52,3484.72,26126749,99.85,0,0,0.15,524.47,3484.76,26126750,99.65,0.01,0.02,0.67,524.81,3484.44,26126751,99.91,0,0,0.16,524.4,3484.85,26126752,99.91,0,0,0.15,524.36,3484.88,26126753,99.9,0,0,0.16,524.5,3484.74,26126754,99.87,0,0,0.14,524.5,3484.74,26126755,99.62,0.01,0,0.74,524.9,3484.35,26126756,99.88,0,0,0.18,524.4,3484.85,26126757,99.88,0.01,0,0.15,524.43,3484.81,26126758,99.85,0,0,0.15,524.51,3484.73,26126759,99.89,0,0,0.17,524.48,3484.76,26126760,99.61,0,0,0.71,525.23,3484.02,26126761,99.88,0,0,0.14,524.68,3484.57,26126762,99.9,0,0,0.16,524.65,3484.59,26126763,99.86,0,0,0.14,524.62,3484.62,26126764,99.9,0,0,0.16,524.65,3484.58,26126765,99.66,0,0,0.72,525.39,3483.86,26126766,99.9,0,0,0.15,525.01,3484.24,26126767,99.91,0,0,0.14,524.98,3484.26,26126768,99.9,0,0,0.16,524.96,3484.28,26126769,99.77,0,0,0.27,524.71,3484.51,26126770,99.61,0,0,0.54,524.84,3484.39,26126771,99.88,0,0,0.3,523.9,3485.32,26126772,99.9,0,0.01,0.14,524.03,3485.19,26126773,99.87,0,0,0.15,524.03,3485.19,26126774,99.89,0,0,0.15,524,3485.23,26126775,99.66,0,0,0.75,524.23,3485.02,26126776,99.92,0,0,0.14,524.46,3484.78,26126777,99.88,0,0.01,0.2,524.65,3484.59,26126778,99.92,0,0,0.16,524.62,3484.61,26126779,99.9,0,0,0.14,524.77,3484.46,26126780,99.78,0,0.01,0.27,523.82,3485.43,26126781,99.77,0,0,0.56,524.63,3484.62,26126782,99.9,0,0,0.14,524.22,3485.02,26126783,99.89,0,0,0.15,524.19,3485.05,26126784,99.9,0,0,0.17,524.17,3485.06,26126785,99.87,0,0,0.29,524.88,3484.37,26126786,99.75,0,0,0.57,525.49,3483.76,26126787,99.89,0,0,0.16,524.47,3484.77,26126788,99.9,0,0,0.14,524.01,3485.23,26126789,99.93,0,0,0.15,523.99,3485.25,26126790,99.75,0,0,0.28,523.97,3485.28,26126791,99.67,0,0,0.57,524.47,3484.78,26126792,99.87,0,0,0.16,523.92,3485.32,26126793,99.9,0,0,0.15,523.9,3485.34,26126794,99.9,0,0,0.14,523.93,3485.3,26126795,99.7,0,0,0.31,522.85,3486.4,26126796,99.72,0,0,0.54,523.36,3485.89,26126797,99.88,0,0,0.15,523.26,3485.98,26126798,99.84,0,0,0.15,523.22,3486.01,26126799,99.69,0,0,0.35,524.18,3485.03,26126800,99.77,0,0,0.28,522.72,3486.51,26126801,99.72,0,0,0.41,523.3,3485.92,26126802,99.89,0,0,0.29,523.72,3485.5,26126803,99.92,0,0,0.15,523.78,3485.44,26126804,99.88,0,0,0.14,523.75,3485.48,26126805,99.84,0,0,0.28,523.78,3485.47,26126806,99.77,0,0,0.6,518.23,3491.99,26126807,99.86,0.01,0.14,0.2,516.15,3494.37,26126808,99.87,0,0,0.14,516.16,3494.36,26126809,99.86,0,0,0.15,516.14,3494.38,26126810,99.76,0,0,0.29,515.89,3494.64,26126811,99.76,0,0,0.39,516.21,3494.31,26126812,99.92,0,0,0.32,515.83,3494.68,26126813,99.92,0,0,0.15,515.81,3494.7,26126814,99.88,0,0,0.14,515.79,3494.71,26126815,99.87,0,0,0.3,515.63,3494.89,26126816,99.93,0,0,0.16,515.71,3494.8,26126817,99.71,0,0,0.55,516.43,3494.08,26126818,99.88,0,0,0.15,515.67,3494.84,26126819,99.9,0,0,0.15,515.64,3494.87,26126820,99.7,0,0,0.32,514.19,3496.33,26126821,99.83,0,0,0.15,514.13,3496.38,26126822,99.77,0,0,0.6,516.4,3494.11,26126823,99.88,0,0,0.14,516.05,3494.45,26126824,99.79,0,0,0.14,516.03,3494.47,26126825,99.78,0,0,0.31,515.87,3494.65,26126826,99.88,0,0,0.17,515.94,3494.57,26126827,99.72,0,0,0.57,516.65,3493.85,26126828,99.92,0,0,0.16,516.13,3494.37,26126829,99.72,0,0,0.41,516.38,3494.08,26126830,99.77,0,0,0.33,516.6,3493.88,26126831,94.79,0.95,0.02,182.25,522.68,3487.44,26126832,99.62,0,0,78.51,518.97,3490.23,26126833,99.91,0,0,0.15,518.59,3490.62,26126834,99.88,0,0,0.16,518.64,3490.56,26126835,99.83,0,0,0.3,518.61,3490.61,26126836,99.9,0,0,0.21,517.65,3491.59,26126837,99.76,0,0,0.59,516.54,3492.73,26126838,99.89,0,0,0.14,516.52,3492.75,26126839,99.92,0,0,0.15,516.5,3492.77,26126840,99.81,0,0,0.28,516.26,3493.02,26126841,99.88,0,0,0.14,516.23,3493.05,26126842,99.73,0,0,0.42,516.63,3492.67,26126843,99.89,0,0,0.29,516.44,3492.84,26126844,99.87,0,0,0.16,516.41,3492.87,26126845,99.8,0,0,0.31,515.46,3493.84,26126846,99.85,0,0,0.16,515.56,3493.73,26126847,99.77,0,0,0.48,516.24,3493.05,26126848,99.88,0,0,0.2,515.3,3493.99,26126849,99.87,0,0,0.16,515.26,3494.02,26126850,99.8,0,0,0.28,515.98,3493.32,26126851,99.88,0,0,0.16,515.99,3493.3,26126852,99.85,0,0,0.14,515.96,3493.34,26126853,99.04,0,0,0.55,516.43,3492.86,26126854,99.85,0,0,0.14,515.91,3493.37,26126855,99.82,0,0,0.36,515.99,3493.3,26126856,99.92,0,0,0.14,515.89,3493.4,26126857,99.9,0,0,0.15,516.04,3493.25,26126858,99.76,0,0,0.58,516.58,3492.7,26126859,99.77,0,0,0.32,516.28,3492.98,26126860,99.8,0,0,0.28,516.27,3493,26126861,99.88,0.03,1.1,0.32,516.22,3493.04,26126862,99.88,0,0,0.18,516.19,3493.07,26126863,99.74,0,0,0.57,515.99,3493.27,26126864,99.89,0.02,0.74,0.16,515.19,3494.07,26126865,99.76,0,0.01,0.51,516.4,3492.88,26126866,99.9,0,0,0.14,516.55,3492.73,26126867,99.92,0,0,0.13,516.51,3492.78,26126868,99.76,0,0,0.59,516.84,3492.44,26126869,99.94,0,0,0.14,516.47,3492.81,26126870,99.8,0,0,0.28,516.23,3493.06,26126871,99.85,0,0,0.16,516.2,3493.09,26126872,99.9,0,0,0.14,516.18,3493.11,26126873,99.73,0,0,0.57,516.5,3492.78,26126874,99.9,0,0,0.16,516.12,3493.15,26126875,99.81,0,0,0.34,514.93,3494.36,26126876,99.85,0.04,1.97,0.21,515.12,3494.16,26126877,99.87,0.05,1.96,0.21,515.22,3494.05,26126878,99.78,0,0,0.58,516.06,3493.19,26126879,99.92,0,0,0.17,515.71,3493.54,26126880,99.7,0,0.01,0.34,514.97,3494.29,26126881,99.92,0,0,0.16,514.92,3494.34,26126882,99.9,0,0,0.16,514.9,3494.36,26126883,99.8,0,0,0.4,515.3,3493.95,26126884,99.9,0,0,0.41,515.84,3493.41,26126885,99.86,0,0,0.32,515.43,3493.83,26126886,99.9,0,0,0.17,515.52,3493.73,26126887,99.88,0,0,0.19,515.5,3493.75,26126888,99.86,0,0,0.16,515.48,3493.77,26126889,99.66,0,0,0.69,516.3,3492.92,26126890,99.78,0,0,0.31,516.19,3493.06,26126891,99.9,0,0,0.18,516.17,3493.07,26126892,99.91,0,0,0.16,516.15,3493.09,26126893,99.89,0.03,0.84,0.17,516.14,3493.09,26126894,99.76,0,0,0.61,516.66,3492.56,26126895,99.8,0,0,0.56,517.03,3492.16,26126896,99.9,0,0,0.2,518.11,3491.02,26126897,99.91,0,0,0.24,518.57,3490.56,26126898,99.87,0,0,0.2,518.56,3490.56,26126899,99.76,0,0,0.63,519.8,3489.32,26126900,99.83,0,0,0.37,520.26,3488.88,26126901,99.92,0,0,0.19,520.23,3488.9,26126902,99.9,0,0,0.2,520.22,3488.9,26126903,99.87,0,0,0.18,520.2,3488.93,26126904,99.76,0,0,0.59,520.4,3488.72,26126905,99.77,0,0,0.32,517.99,3491.15,26126906,99.89,0,0,0.17,517.94,3491.19,26126907,99.84,0,0,0.18,518.06,3491.07,26126908,99.91,0,0,0.15,518.08,3491.04,26126909,99.78,0,0,0.57,519.17,3489.95,26126910,99.78,0,0,0.3,520.11,3489.02,26126911,99.87,0,0,0.19,520.01,3489.12,26126912,99.9,0,0,0.16,519.99,3489.13,26126913,99.72,0,0,0.14,519.97,3489.15,26126914,99.72,0,0,0.42,520.63,3488.49,26126915,99.74,0,0,0.5,518.57,3490.56,26126916,99.88,0,0,0.14,518.44,3490.69,26126917,99.88,0,0,0.14,518.48,3490.65,26126918,99.9,0,0,0.16,518.58,3490.54,26126919,99.43,0,0,0.54,520.65,3488.44,26126920,99.78,0,0,0.5,519.28,3489.83,26126921,99.91,0,0,0.16,519.27,3489.84,26126922,99.9,0,0,0.14,519.25,3489.85,26126923,99.9,0,0,0.14,519.23,3489.87,26126924,99.92,0,0,0.15,519.22,3489.88,26126925,99.61,0,0,0.75,519.64,3489.48,26126926,99.9,0,0,0.14,519.2,3489.91,26126927,99.9,0,0,0.16,519.17,3489.93,26126928,99.48,0,0,0.14,519.16,3489.94,26126929,99.92,0,0,0.15,519.19,3489.9,26126930,99.68,0,0,0.72,520.65,3488.47,26126931,99.83,0,0,0.18,520.29,3488.82,26126932,99.91,0,0.01,0.23,520.27,3488.84,26126933,99.91,0,0,0.18,520.21,3488.88,26126934,99.91,0,0,0.18,520.2,3488.89,26126935,99.6,0,0,0.7,520.63,3488.48,26126936,99.87,0,0,0.14,520.17,3488.93,26126937,99.9,0,0,0.16,520.15,3488.95,26126938,99.91,0,0,0.14,520.12,3488.97,26126939,99.9,0,0,0.15,520.2,3488.89,26126940,99.56,0,0,0.57,520.11,3488.99,26126941,99.86,0,0,0.29,520.27,3488.82,26126942,99.9,0,0,0.16,519.63,3489.46,26126943,99.9,0,0,0.14,519.49,3489.59,26126944,99.87,0,0,0.14,519.47,3489.62,26126945,99.72,0,0,0.65,520.17,3488.93,26126946,99.91,0,0,0.21,519.69,3489.4,26126947,99.86,0,0,0.16,519.66,3489.43,26126948,99.89,0,0,0.16,519.65,3489.44,26126949,99.75,0,0,0.29,519.38,3489.69,26126950,99.64,0,0,0.74,520.24,3488.84,26126951,99.86,0,0,0.13,519.78,3489.3,26126952,99.84,0,0,0.17,519.76,3489.31,26126953,99.92,0,0,0.15,519.74,3489.33,26126954,99.93,0,0,0.19,519.72,3489.35,26126955,99.62,0,0,0.46,518.99,3490.09,26126956,99.9,0,0,0.38,519.45,3489.63,26126957,99.9,0,0,0.23,519.43,3489.64,26126958,99.82,0,0,0.18,519.4,3489.67,26126959,99.79,0,0,0.18,519.38,3489.68,26126960,99.83,0,0,0.31,519.37,3489.7,26126961,99.74,0,0,0.54,519.86,3489.21,26126962,99.83,0,0,0.15,519.55,3489.52,26126963,99.88,0,0,0.15,519.55,3489.52,26126964,99.9,0,0,0.14,519.52,3489.54,26126965,99.74,0,0,0.38,519.77,3489.31,26126966,99.67,0,0,0.62,519.88,3489.19,26126967,99.88,0,0,0.17,519.48,3489.59,26126968,99.87,0,0,0.14,519.45,3489.62,26126969,99.86,0,0,0.15,519.42,3489.64,26126970,99.77,0,0,0.29,519.67,3489.41,26126971,99.66,0,0,0.56,519.66,3489.4,26126972,99.9,0,0,0.14,519.19,3489.87,26126973,99.92,0,0,0.15,519.29,3489.77,26126974,99.86,0,0,0.14,519.26,3489.79,26126975,99.73,0,0,0.32,518.85,3490.22,26126976,99.75,0,0,0.48,519.81,3489.25,26126977,99.86,0,0,0.21,519.98,3489.09,26126978,99.88,0,0,0.14,519.95,3489.11,26126979,99.72,0,0,0.29,519.94,3489.11,26126980,99.69,0,0,0.29,518.75,3490.33,26126981,99.73,0,0,0.58,519.62,3489.45,26126982,99.82,0,0,0.18,519.64,3489.43,26126983,99.83,0,0,0.18,519.62,3489.44,26126984,99.85,0,0,0.18,519.75,3489.3,26126985,99.8,0,0,0.39,520.02,3489.04,26126986,95.01,0.32,0.01,78.5,531.33,3478.06,26126987,99.73,0,0,181.55,522.33,3487.12,26126988,99.78,0,0,0.16,522.33,3487.12,26126989,99.79,0,0,0.17,522.3,3487.15,26126990,99.74,0,0,0.3,522.56,3486.9,26126991,99.68,0,0,0.49,522.58,3486.89,26126992,99.79,0,0,0.33,519.83,3489.69,26126993,99.8,0,0,0.17,519.8,3489.71,26126994,99.78,0,0,0.17,519.91,3489.6,26126995,99.68,0,0,0.32,520.21,3489.32,26126996,99.78,0,0,0.17,520.19,3489.33,26126997,99.62,0,0,0.61,520.02,3489.49,26126998,99.82,0,0,0.17,519.66,3489.85,26126999,99.83,0,0,0.17,519.64,3489.87,26127000,99.68,0,0,0.33,518.43,3491.1,26127001,99.82,0,0,0.21,518.39,3491.13,26127002,99.62,0,0,0.58,520.42,3489.09,26127003,99.8,0,0,0.18,520.07,3489.44,26127004,99.82,0,0,0.17,520.04,3489.47,26127005,99.66,0,0,0.32,519.52,3490.01,26127006,99.81,0,0,0.21,519.5,3490.03,26127007,99.63,0,0,0.6,520.44,3489.1,26127008,99.77,0,0,0.19,520.19,3489.34,26127009,99.56,0,0,0.3,519.68,3489.82,26127010,99.73,0,0,0.32,519.43,3490.09,26127011,99.83,0,0,0.18,519.4,3490.12,26127012,99.69,0,0,0.57,520.62,3488.89,26127013,99.85,0,0,0.17,520.1,3489.41,26127014,99.81,0,0,0.17,520.08,3489.43,26127015,99.76,0,0,0.33,520.08,3489.44,26127016,99.84,0,0,0.15,520.21,3489.31,26127017,99.63,0,0,0.64,520.3,3489.22,26127018,99.83,0,0,0.16,519.21,3490.3,26127019,99.83,0,0,0.17,519.2,3490.3,26127020,99.77,0,0,0.32,520.16,3489.36,26127021,99.81,0,0,0.2,520.16,3489.35,26127022,99.6,0,0,0.56,520.17,3489.34,26127023,99.83,0,0,0.17,519.13,3490.37,26127024,99.81,0,0,0.17,519.1,3490.39,26127025,99.76,0,0,0.33,519.84,3489.68,26127026,99.83,0,0,0.16,519.82,3489.69,26127027,99.62,0,0,0.44,519.98,3489.52,26127028,99.81,0,0,0.3,518.98,3490.53,26127029,99.82,0,0,0.17,518.95,3490.55,26127030,99.73,0,0,0.31,519.21,3490.3,26127031,99.82,0,0,0.18,519.18,3490.33,26127032,99.65,0,0,0.41,520.05,3489.46,26127033,99.82,0,0,0.3,520.13,3489.37,26127034,99.85,0,0,0.17,520.12,3489.38,26127035,99.65,0,0,0.36,519.91,3489.6,26127036,99.86,0,0,0.17,519.84,3489.67,26127037,99.8,0,0,0.18,519.82,3489.69,26127038,99.59,0,0,0.63,519.04,3490.46,26127039,99.6,0,0,0.33,520.41,3489.07,26127040,99.74,0,0,0.37,519.96,3489.54,26127041,99.81,0,0,0.2,519.92,3489.57,26127042,99.76,0,0,0.2,519.9,3489.59,26127043,99.68,0,0,0.57,519.83,3489.66,26127044,99.83,0,0,0.17,519.36,3490.12,26127045,99.64,0,0,0.32,518.88,3490.62,26127046,99.8,0,0,0.18,518.85,3490.64,26127047,99.78,0,0,0.17,518.82,3490.66,26127048,99.63,0,0,0.48,520.09,3489.39,26127049,99.83,0,0,0.26,520.35,3489.13,26127050,99.74,0,0,0.32,520.46,3489.04,26127051,99.8,0,0,0.16,520.43,3489.06,26127052,99.81,0,0,0.17,520.41,3489.08,26127053,99.61,0,0,0.59,520.59,3488.89,26127054,99.83,0,0,0.18,520.12,3489.35,26127055,99.75,0,0,0.32,519.4,3490.09,26127056,99.8,0,0,0.17,519.37,3490.12,26127057,99.83,0,0,0.18,519.35,3490.14,26127058,99.65,0,0,0.47,520.03,3489.45,26127059,99.74,0,0,0.32,520.04,3489.44,26127060,99.7,0,0,0.33,518.83,3490.68,26127061,99.82,0,0,0.17,518.89,3490.62,26127062,99.82,0,0,0.17,518.95,3490.55,26127063,99.67,0,0,0.43,519.79,3489.71,26127064,99.84,0,0,0.32,520.39,3489.11,26127065,99.76,0,0,0.4,520.4,3489.11,26127066,99.82,0,0,0.2,520.37,3489.14,26127067,99.84,0,0,0.2,520.34,3489.17,26127068,99.66,0,0,0.42,520.65,3488.84,26127069,99.6,0,0,0.54,520.09,3489.39,26127070,99.68,0.01,0.04,0.37,520.14,3489.35,26127071,99.8,0,0,0.2,520.14,3489.35,26127072,99.83,0,0,0.2,520.1,3489.38,26127073,99.81,0,0,0.2,520.08,3489.39,26127074,99.63,0,0,0.6,520.42,3489.08,26127075,99.69,0,0,0.33,519.18,3490.34,26127076,99.81,0,0,0.17,519.05,3490.47,26127077,99.79,0,0,0.21,519.62,3489.89,26127078,99.84,0,0,0.16,519.72,3489.79,26127079,99.71,0.01,0.01,0.59,520.8,3488.71,26127080,99.68,0,0,0.31,518.75,3490.77,26127081,99.84,0,0,0.18,518.65,3490.87,26127082,99.82,0,0,0.17,518.63,3490.89,26127083,99.83,0,0,0.16,518.61,3490.9,26127084,99.63,0,0,0.61,520.38,3489.13,26127085,99.78,0,0,0.33,520.07,3489.45,26127086,99.83,0,0,0.16,520.14,3489.38,26127087,99.8,0.02,0.64,0.25,520.15,3489.37,26127088,99.82,0,0,0.19,520.07,3489.44,26127089,99.65,0,0,0.51,520.9,3488.61,26127090,99.68,0.1,3.57,0.51,520.4,3489.11,26127091,99.83,0,0,0.16,520.44,3489.05,26127092,99.78,0,0,0.14,520.42,3489.07,26127093,99.8,0,0,0.15,519.71,3489.78,26127094,99.68,0,0,0.52,519.81,3489.67,26127095,99.72,0,0,0.41,519.94,3489.56,26127096,99.53,0,0,0.17,519.87,3489.62,26127097,99.83,0,0,0.14,519.85,3489.64,26127098,99.84,0,0,0.16,519.82,3489.67,26127099,99.48,0,0,0.54,520.14,3489.32,26127100,99.7,0,0,0.43,519.31,3490.17,26127101,99.85,0,0,0.14,519.37,3490.1,26127102,99.84,0,0,0.17,519.45,3490.02,26127103,99.84,0,0,0.14,519.43,3490.04,26127104,99.68,0,0,0.4,519.77,3489.7,26127105,99.65,0,0,0.54,518.2,3491.28,26127106,99.8,0,0,0.14,518.16,3491.32,26127107,99.83,0,0,0.18,518.14,3491.33,26127108,99.8,0,0,0.14,518.11,3491.36,26127109,99.81,0,0,0.14,518.09,3491.38,26127110,99.51,0,0,0.68,519.02,3490.46,26127111,99.81,0,0,0.16,518.57,3490.91,26127112,99.81,0,0,0.14,518.56,3490.92,26127113,99.83,0,0,0.14,518.67,3490.8,26127114,99.8,0,0,0.14,518.7,3490.76,26127115,99.58,0,0,0.71,520.79,3488.69,26127116,99.79,0,0,0.19,520.16,3489.32,26127117,99.82,0,0,0.16,520.13,3489.34,26127118,99.77,0,0,0.16,520.12,3489.35,26127119,99.83,0,0,0.16,520.09,3489.37,26127120,99.51,0,0,0.76,520.27,3489.21,26127121,99.84,0,0,0.16,519.82,3489.66,26127122,99.85,0,0,0.14,519.8,3489.67,26127123,99.83,0,0,0.17,519.78,3489.69,26127124,99.82,0,0,0.15,519.85,3489.61,26127125,99.62,0,0,0.79,520.52,3488.95,26127126,99.82,0,0,0.12,520.15,3489.32,26127127,99.81,0,0,0.16,520.12,3489.34,26127128,99.83,0,0,0.15,520.11,3489.35,26127129,99.73,0,0,0.29,519.83,3489.6,26127130,99.47,0,0,0.64,520.29,3489.16,26127131,99.81,0,0,0.21,520.05,3489.4,26127132,99.79,0,0,0.14,520.02,3489.42,26127133,99.77,0,0,0.15,520,3489.43,26127134,99.76,0,0,0.14,520.04,3489.41,26127135,99.52,0,0,0.72,520.76,3488.7,26127136,99.8,0,0,0.17,519.63,3489.83,26127137,99.79,0,0,0.19,519.36,3490.09,26127138,99.82,0,0,0.14,519.34,3490.1,26127139,99.81,0,0,0.15,519.32,3490.13,26127140,99.59,0,0,0.48,520.05,3489.41,26127141,99.85,0,0,0.64,520.04,3489.42,26127142,99.82,0,0,0.16,520.02,3489.43,26127143,99.84,0,0,0.15,520,3489.45,26127144,99.89,0,0,0.16,520.06,3489.39,26127145,99.78,0,0,0.31,519.99,3489.47,26127146,99.74,0,0,0.72,520.25,3489.21,26127147,99.85,0,0,0.14,519.86,3489.59,26127148,99.87,0,0,0.15,519.84,3489.6,26127149,99.86,0,0,0.14,519.81,3489.62,26127150,99.76,0,0,0.3,519.35,3490.11,26127151,99.68,0,0.02,0.63,519.89,3489.56,26127152,99.89,0,0,0.14,519.49,3489.96,26127153,99.86,0,0,0.2,519.57,3489.88,26127154,99.88,0,0,0.14,519.63,3489.81,26127155,99.73,0,0,0.41,519.93,3489.53,26127156,99.7,0,0,0.64,520.74,3488.71,26127157,99.92,0,0,0.12,520.07,3489.37,26127158,99.9,0,0,0.16,520.05,3489.39,26127159,99.71,0,0,0.31,520.04,3489.37,26127160,99.8,0,0,0.34,519.55,3489.88,26127161,99.76,0,0,0.62,520.08,3489.34,26127162,99.89,0,0,0.18,519.75,3489.67,26127163,99.9,0,0,0.18,519.74,3489.68,26127164,99.88,0,0,0.19,519.71,3489.73,26127165,99.83,0,0,0.36,520.15,3489.32,26127166,99.33,0,0,0.58,520.41,3489.05,26127167,99.91,0,0,0.16,519.88,3489.58,26127168,99.88,0,0,0.14,519.86,3489.59,26127169,99.91,0,0,0.14,519.84,3489.61,26127170,99.82,0,0,0.35,520.34,3489.13,26127171,97.83,0,0,0.58,520.7,3488.76,26127172,99.88,0,0,0.14,520.28,3489.17,26127173,99.91,0,0,0.15,520.27,3489.18,26127174,99.91,0,0,0.15,520.25,3489.2,26127175,99.75,0,0,0.3,519.35,3490.11,26127176,99.67,0,0,0.57,519.93,3489.53,26127177,99.88,0,0,0.14,520.15,3489.31,26127178,99.87,0,0,0.15,520.12,3489.33,26127179,99.91,0,0,0.14,520.1,3489.35,26127180,99.74,0,0,0.3,519.39,3490.07,26127181,99.76,0,0,0.36,520.06,3489.4,26127182,99.9,0,0,0.41,520.06,3489.39,26127183,99.91,0,0,0.18,520.04,3489.41,26127184,99.9,0,0,0.16,520.02,3489.43,26127185,99.82,0,0,0.31,520.26,3489.2,26127186,99.91,0,0,0.13,520.24,3489.21,26127187,99.77,0,0,0.57,520.91,3488.54,26127188,99.88,0,0,0.14,520.64,3488.81,26127189,99.73,0,0,0.28,520.14,3489.29,26127190,99.81,0,0,0.3,520.37,3489.07,26127191,99.92,0,0,0.16,520.35,3489.09,26127192,99.78,0,0,0.55,520.9,3488.54,26127193,99.86,0,0,0.16,520.54,3488.89,26127194,99.88,0,0,0.14,520.52,3488.9,26127195,99.79,0,0,0.34,520.29,3489.16,26127196,99.93,0,0,0.17,520.24,3489.19,26127197,99.7,0,0,0.64,520.96,3488.47,26127198,99.9,0,0,0.15,520.3,3489.13,26127199,99.91,0,0,0.26,518.05,3491.5,26127200,99.79,0,0,0.31,515.84,3493.77,26127201,99.89,0,0,0.18,515.8,3493.81,26127202,99.8,0,0,0.54,517.12,3492.48,26127203,99.91,0,0,0.15,516.99,3492.61,26127204,99.92,0,0,0.14,516.96,3492.64,26127205,99.76,0,0,0.31,515.77,3493.84,26127206,99.88,0,0,0.14,515.71,3493.91,26127207,99.75,0,0,0.41,516.48,3493.12,26127208,99.9,0,0,0.32,516.27,3493.34,26127209,99.89,0,0,0.19,516.33,3493.27,26127210,99.76,0,0,0.33,516.09,3493.53,26127211,99.88,0,0,0.15,516.06,3493.55,26127212,99.75,0,0,0.43,516.43,3493.18,26127213,99.93,0,0,0.3,515.27,3494.33,26127214,99.91,0,0,0.15,515.25,3494.34,26127215,99.78,0,0,0.34,515.49,3494.12,26127216,99.88,0,0,0.17,515.47,3494.13,26127217,99.77,0,0,0.29,515.92,3493.68,26127218,99.82,0,0,0.45,515.92,3493.67,26127219,99.86,0,0,0.3,516.98,3492.61,26127220,99.83,0,0,0.34,516.59,3493.01,26127221,99.9,0,0,0.18,516.56,3493.04,26127222,99.92,0,0,0.18,516.53,3493.07,26127223,99.75,0,0,0.57,517.29,3492.3,26127224,99.93,0,0,0.18,516.98,3492.61,26127225,99.84,0,0,0.36,516.99,3492.62,26127226,99.92,0,0,0.18,516.96,3492.64,26127227,99.9,0,0,0.18,516.94,3492.66,26127228,99.75,0,0,0.57,517.27,3492.32,26127229,99.92,0,0,0.18,516.89,3492.7,26127230,99.77,0,0,0.35,516.74,3492.86,26127231,99.88,0,0,0.18,516.81,3492.79,26127232,99.89,0,0,0.18,516.79,3492.8,26127233,99.79,0,0,0.45,517.26,3492.32,26127234,99.92,0,0,0.31,517,3492.58,26127235,99.81,0,0,0.37,516.85,3492.75,26127236,99.87,0,0,0.13,516.74,3492.86,26127237,99.93,0,0,0.17,516.72,3492.87,26127238,99.77,0,0,0.41,517.14,3492.45,26127239,99.9,0,0,0.3,516.92,3492.66,26127240,99.78,0,0,0.34,516.06,3493.54,26127241,99.83,0,0,0.16,515.94,3493.66,26127242,99.86,0,0,0.16,516.09,3493.5,26127243,99.72,0,0,0.55,516.76,3492.82,26127244,99.86,0,0,0.15,517.02,3492.55,26127245,99.79,0,0,0.35,517.26,3492.33,26127246,99.91,0,0,0.18,517.25,3492.34,26127247,99.88,0,0,0.17,517.22,3492.36,26127248,99.74,0,0,0.55,517.1,3492.48,26127249,99.81,0,0,0.3,516.42,3493.13,26127250,99.83,0,0,0.3,516.19,3493.37,26127251,99.9,0,0,0.14,516.16,3493.41,26127252,99.89,0,0,0.16,516.24,3493.32,26127253,99.82,0,0,0.15,516.54,3493.01,26127254,99.77,0,0,0.57,516.64,3492.94,26127255,99.8,0,0,0.3,516.29,3493.31,26127256,99.91,0,0,0.14,516.26,3493.34,26127257,99.91,0,0,0.2,516.25,3493.34,26127258,99.89,0,0,0.14,516.23,3493.36,26127259,99.78,0,0,0.56,516.15,3493.44,26127260,99.85,0,0,0.31,516.45,3493.16,26127261,99.93,0,0,0.14,516.42,3493.18,26127262,99.92,0,0,0.16,516.4,3493.19,26127263,99.91,0,0,0.16,516.47,3493.12,26127264,99.78,0,0,0.56,516.57,3493.02,26127265,99.77,0,0,0.3,516.55,3493.07,26127266,99.86,0,0,0.15,516.54,3493.08,26127267,99.91,0,0,0.16,516.5,3493.11,26127268,99.87,0,0,0.15,516.48,3493.13,26127269,99.76,0,0,0.55,516.81,3492.79,26127270,99.73,0,0,0.34,516.22,3493.41,26127271,99.81,0,0,0.13,516.2,3493.42,26127272,99.86,0,0,0.18,516.17,3493.45,26127273,99.9,0,0,0.14,516.22,3493.39,26127274,99.75,0,0,0.61,516.79,3492.82,26127275,99.77,0,0,0.35,516.46,3493.16,26127276,99.91,0,0,0.14,516.28,3493.34,26127277,99.91,0,0,0.16,516.26,3493.36,26127278,99.9,0,0,0.15,516.21,3493.4,26127279,99.72,0,0,0.73,517.08,3492.51,26127280,99.79,0,0,0.31,515.72,3493.88,26127281,99.91,0,0,0.16,515.66,3493.93,26127282,99.86,0,0,0.14,515.64,3493.94,26127283,99.91,0,0,0.14,515.78,3493.81,26127284,99.78,0,0,0.5,516.25,3493.35,26127285,99.87,0,0,0.34,516.53,3493.08,26127286,99.89,0,0,0.15,516.5,3493.11,26127287,99.9,0,0,0.16,516.48,3493.13,26127288,99.86,0,0,0.14,516.45,3493.14,26127289,99.79,0,0,0.43,516.82,3492.77,26127290,99.86,0,0,0.45,516.92,3492.69,26127291,99.9,0,0,0.17,516.9,3492.7,26127292,99.88,0,0,0.15,516.88,3492.71,26127293,99.93,0,0,0.18,516.86,3492.74,26127294,99.9,0,0,0.15,516.99,3492.6,26127295,99.68,0,0,0.7,516.89,3492.72,26127296,99.87,0,0,0.14,516.51,3493.09,26127297,99.94,0,0,0.14,516.49,3493.11,26127298,99.92,0,0,0.16,516.47,3493.13,26127299,99.9,0,0,0.14,516.45,3493.14,26127300,99.53,0,0,0.74,516.19,3493.42,26127301,99.92,0,0,0.18,515.68,3493.91,26127302,99.91,0,0,0.18,515.66,3493.94,26127303,99.9,0,0,0.18,515.64,3493.95,26127304,99.9,0,0,0.16,515.61,3493.97,26127305,99.66,0,0,0.7,516.77,3492.83,26127306,99.92,0,0,0.14,516.76,3492.84,26127307,99.93,0,0,0.16,516.75,3492.85,26127308,99.87,0,0,0.14,516.72,3492.87,26127309,99.84,0,0,0.29,516.24,3493.33,26127310,99.62,0,0,0.79,516.82,3492.76,26127311,99.89,0,0,0.14,516.44,3493.13,26127312,99.91,0,0,0.14,516.42,3493.16,26127313,99.89,0,0,0.16,516.4,3493.19,26127314,99.93,0,0,0.13,516.38,3493.2,26127315,99.65,0,0,0.77,517.44,3492.16,26127316,99.91,0,0,0.19,516.61,3492.98,26127317,99.9,0,0,0.2,516.77,3492.82,26127318,99.94,0,0,0.14,516.79,3492.8,26127319,99.89,0,0,0.18,516.76,3492.82,26127320,99.63,0,0,0.76,516.67,3492.93,26127321,99.93,0,0,0.16,516.49,3493.1,26127322,99.89,0,0,0.14,516.48,3493.12,26127323,99.92,0,0,0.16,516.45,3493.14,26127324,99.91,0,0,0.18,516.43,3493.15,26127325,99.72,0,0,0.73,517.13,3492.47,26127326,99.87,0,0,0.14,516.66,3492.94,26127327,99.9,0,0,0.16,516.64,3492.95,26127328,99.93,0,0,0.14,516.76,3492.83,26127329,99.9,0,0,0.14,516.79,3492.8,26127330,99.64,0,0,0.59,516.96,3492.64,26127331,99.93,0,0,0.29,517.01,3492.58,26127332,99.93,0,0,0.17,516.98,3492.61,26127333,99.92,0,0,0.15,516.97,3492.62,26127334,99.9,0,0,0.14,516.93,3492.64,26127335,99.85,0,0,0.38,516.65,3492.94,26127336,99.77,0,0,0.55,517.03,3492.56,26127337,99.9,0,0,0.14,516.66,3492.92,26127338,99.47,0,0,0.14,516.63,3492.95,26127339,99.87,0,0,0.29,516.61,3492.95,26127340,99.86,0,0,0.31,515.79,3493.78,26127341,99.75,0,0,0.63,517.24,3492.32,26127342,99.88,0,0,0.15,516.99,3492.57,26127343,99.92,0,0,0.16,516.97,3492.58,26127344,99.87,0,0,0.15,516.95,3492.6,26127345,99.82,0,0,0.38,516.23,3493.33,26127346,99.78,0,0,0.41,516.98,3492.57,26127347,99.9,0,0,0.28,516.9,3492.65,26127348,99.92,0,0,0.16,516.89,3492.66,26127349,99.92,0,0,0.15,516.85,3492.69,26127350,99.83,0,0,0.37,516.72,3492.84,26127351,96.24,0.04,0.01,78.91,529.35,3481.73,26127352,99.09,0,0,64.05,519,3490.43,26127353,99.93,0,0,0.14,518.98,3490.45,26127354,99.91,0,0,0.14,518.96,3490.46,26127355,99.78,0,0,0.32,518.1,3491.34,26127356,99.78,0,0,0.61,517.84,3491.62,26127357,99.91,0,0,0.15,516.21,3493.26,26127358,99.9,0,0,0.14,516.2,3493.27,26127359,99.91,0,0,0.15,516.17,3493.29,26127360,99.71,0,0,0.32,515.7,3493.78,26127361,99.77,0,0,0.41,516.38,3493.1,26127362,99.91,0,0,0.31,517.11,3492.38,26127363,99.85,0,0,0.15,517.09,3492.4,26127364,99.89,0,0.01,0.16,517.1,3492.38,26127365,99.81,0,0,0.35,516.74,3492.75,26127366,99.78,0,0,0.52,517.19,3492.3,26127367,99.86,0,0,0.18,517.17,3492.31,26127368,99.9,0,0,0.16,517.16,3492.32,26127369,99.78,0,0,0.29,517.13,3492.33,26127370,99.79,0,0,0.32,516.65,3492.82,26127371,99.76,0,0,0.32,517.29,3492.18,26127372,99.86,0,0,0.39,517.08,3492.39,26127373,99.92,0,0,0.14,517.06,3492.41,26127374,99.85,0,0,0.14,517.03,3492.45,26127375,99.72,0,0,0.32,514.83,3494.67,26127376,99.86,0,0,0.15,514.74,3494.75,26127377,99.75,0,0,0.6,517.09,3492.42,26127378,99.84,0,0,0.14,516.91,3492.59,26127379,99.92,0,0,0.16,516.89,3492.6,26127380,99.83,0,0,0.31,517.14,3492.37,26127381,99.9,0,0,0.14,517.12,3492.39,26127382,99.77,0,0,0.59,517.23,3492.27,26127383,99.9,0,0,0.16,516.83,3492.67,26127384,99.87,0,0,0.14,516.81,3492.68,26127385,99.75,0,0,0.31,517.05,3492.46,26127386,99.87,0,0,0.17,517.04,3492.47,26127387,99.73,0,0,0.58,517.84,3491.67,26127388,99.88,0,0,0.15,517.22,3492.28,26127389,99.9,0,0,0.15,517.2,3492.3,26127390,99.84,0,0,0.31,517.2,3492.31,26127391,99.95,0,0,0.14,517.18,3492.33,26127392,99.78,0,0,0.54,517.62,3491.88,26127393,99.86,0,0,0.2,516.89,3492.6,26127394,99.87,0,0,0.14,516.86,3492.63,26127395,99.81,0,0,0.37,516.66,3492.86,26127396,99.9,0,0,0.14,516.84,3492.66,26127397,99.61,0,0,0.59,517.1,3492.4,26127398,99.87,0,0,0.16,516.4,3493.1,26127399,99.79,0,0,0.28,517.2,3492.27,26127400,99.79,0,0,0.36,516.73,3492.76,26127401,99.85,0,0,0.18,516.71,3492.78,26127402,99.66,0,0,0.61,516.74,3492.74,26127403,99.89,0,0,0.17,515.68,3493.8,26127404,99.87,0,0,0.15,515.66,3493.82,26127405,99.8,0,0,0.36,515.17,3494.33,26127406,99.87,0,0,0.15,515.14,3494.36,26127407,99.7,0,0,0.43,515.57,3493.92,26127408,99.89,0,0,0.29,515.59,3493.91,26127409,99.9,0,0,0.14,515.58,3493.91,26127410,99.69,0,0,0.32,516.15,3493.36,26127411,99.89,0,0,0.14,516.24,3493.26,26127412,99.71,0,0,0.32,516.73,3492.76,26127413,99.85,0,0,0.39,515.7,3493.79,26127414,99.93,0,0,0.14,515.68,3493.81,26127415,99.78,0,0,0.37,515.96,3493.55,26127416,99.89,0,0,0.17,515.9,3493.6,26127417,99.89,0,0,0.15,515.88,3493.62,26127418,99.66,0,0,0.61,516.62,3492.86,26127419,99.91,0,0,0.14,516.31,3493.17,26127420,99.71,0,0,0.31,515.48,3494.02,26127421,99.92,0,0,0.14,515.48,3494.01,26127422,99.92,0,0,0.17,515.46,3494.03,26127423,99.74,0,0,0.59,516.64,3492.85,26127424,99.92,0,0,0.18,516.4,3493.09,26127425,99.83,0,0,0.36,516.4,3493.11,26127426,99.91,0,0,0.18,516.38,3493.12,26127427,99.89,0,0,0.15,516.36,3493.14,26127428,99.76,0,0,0.6,516.85,3492.64,26127429,99.75,0,0,0.34,516.31,3493.16,26127430,99.81,0,0,0.38,516.15,3493.33,26127431,99.89,0,0,0.18,516.22,3493.26,26127432,99.9,0,0,0.18,516.2,3493.27,26127433,99.7,0.01,0.01,0.6,516.87,3492.6,26127434,99.9,0,0,0.18,516.59,3492.89,26127435,99.76,0,0,0.36,515.38,3494.11,26127436,99.9,0,0,0.18,515.34,3494.15,26127437,99.9,0,0,0.22,515.56,3493.93,26127438,99.75,0,0,0.59,516.39,3493.09,26127439,99.88,0,0,0.14,516.68,3492.8,26127440,99.77,0,0,0.32,515.48,3494.01,26127441,99.9,0,0,0.14,515.44,3494.06,26127442,99.9,0,0,0.16,515.42,3494.07,26127443,99.71,0,0,0.57,515.93,3493.55,26127444,99.88,0,0,0.17,516.36,3493.12,26127445,99.8,0,0,0.34,515.43,3494.06,26127446,99.89,0,0,0.15,515.35,3494.14,26127447,99.9,0,0,0.17,515.33,3494.15,26127448,99.8,0,0,0.3,515.68,3493.8,26127449,99.87,0,0,0.41,516.59,3492.89,26127450,99.8,0,0,0.32,516.71,3492.78,26127451,99.9,0,0,0.14,516.69,3492.8,26127452,99.9,0,0,0.16,516.66,3492.82,26127453,99.92,0,0,0.14,516.65,3492.83,26127454,99.79,0,0,0.57,517.4,3492.07,26127455,99.75,0,0,0.39,516.27,3493.22,26127456,99.88,0,0,0.18,516.12,3493.37,26127457,99.9,0,0,0.17,516.1,3493.38,26127458,99.9,0,0,0.18,516.08,3493.4,26127459,99.68,0,0,0.7,517.1,3492.36,26127460,99.84,0,0,0.36,516.55,3492.92,26127461,99.92,0,0,0.18,516.53,3492.94,26127462,99.9,0,0,0.18,516.72,3492.74,26127463,99.9,0,0,0.18,516.71,3492.75,26127464,99.81,0,0,0.57,517.15,3492.3,26127465,99.8,0,0,0.32,516.69,3492.78,26127466,99.89,0,0,0.14,516.65,3492.81,26127467,99.88,0,0,0.16,516.64,3492.83,26127468,99.9,0,0,0.15,516.61,3492.84,26127469,99.79,0,0,0.57,516.94,3492.51,26127470,99.79,0,0,0.37,516.59,3492.88,26127471,99.88,0,0,0.16,516.57,3492.89,26127472,99.89,0,0,0.14,516.55,3492.91,26127473,99.4,0,0,0.16,516.62,3492.83,26127474,99.74,0,0,0.57,516.79,3492.67,26127475,99.81,0,0,0.32,516.93,3492.57,26127476,99.86,0,0,0.14,516.94,3492.55,26127477,99.88,0,0,0.16,516.91,3492.58,26127478,99.92,0,0,0.15,516.89,3492.59,26127479,99.77,0,0,0.61,517.49,3491.99,26127480,99.75,0,0,0.32,516.22,3493.27,26127481,99.86,0,0,0.14,516.1,3493.38,26127482,99.89,0,0,0.16,516.08,3493.4,26127483,99.86,0,0,0.14,516.06,3493.41,26127484,99.87,0,0,0.18,516.12,3493.35,26127485,99.61,0,0,0.73,516.81,3492.68,26127486,99.88,0,0,0.13,516.45,3493.04,26127487,99.89,0,0,0.15,516.43,3493.06,26127488,99.92,0,0,0.16,516.4,3493.07,26127489,99.8,0,0,0.28,516.87,3492.59,26127490,99.65,0,0,0.77,516.99,3492.48,26127491,99.9,0,0,0.17,516.62,3492.86,26127492,99.85,0,0,0.14,516.59,3492.89,26127493,99.85,0,0,0.16,516.57,3492.91,26127494,99.86,0,0,0.15,516.55,3492.92,26127495,99.64,0,0,0.8,517.36,3492.12,26127496,99.88,0,0,0.17,517.21,3492.27,26127497,99.92,0,0,0.18,516.93,3492.54,26127498,99.91,0,0,0.16,516.92,3492.55,26127499,99.86,0,0,0.14,516.89,3492.58,26127500,99.64,0,0,0.55,516.26,3493.22,26127501,99.89,0,0,0.29,516.62,3492.86,26127502,99.83,0,0,0.16,516.6,3492.87,26127503,99.92,0,0,0.14,516.58,3492.89,26127504,99.91,0,0,0.15,516.56,3492.91,26127505,99.65,0,0,0.6,516.83,3492.66,26127506,99.87,0,0,0.33,516.81,3492.68,26127507,99.85,0,0,0.14,516.96,3492.52,26127508,99.83,0,0,0.15,516.93,3492.55,26127509,99.85,0,0,0.14,516.91,3492.56,26127510,99.65,0,0,0.59,517.27,3492.21,26127511,99.85,0,0,0.3,516.88,3492.6,26127512,99.87,0,0,0.16,516.86,3492.61,26127513,99.83,0,0,0.14,516.84,3492.63,26127514,99.93,0,0,0.15,516.82,3492.64,26127515,99.57,0,0,0.64,517.46,3492.04,26127516,99.83,0,0,0.28,516.79,3492.72,26127517,99.8,0,0,0.14,516.83,3492.68,26127518,99.81,0,0,0.16,516.94,3492.56,26127519,99.69,0,0,0.3,516.91,3492.57,26127520,99.78,0,0,0.34,516.91,3492.58,26127521,99.65,0,0,0.57,517.23,3492.26,26127522,99.82,0,0,0.15,516.86,3492.62,26127523,99.85,0,0,0.14,516.84,3492.64,26127524,99.92,0,0,0.14,516.83,3492.66,26127525,99.82,0,0,0.31,517.32,3492.2,26127526,99.7,0,0,0.57,517.47,3492.05,26127527,99.81,0,0,0.14,517.04,3492.47,26127528,99.9,0,0,0.16,517.02,3492.48,26127529,99.83,0,0,0.14,517.05,3492.44,26127530,99.8,0,0,0.32,517.18,3492.34,26127531,99.73,0,0,0.57,517.25,3492.26,26127532,99.88,0,0,0.14,516.15,3493.36,26127533,99.89,0,0,0.15,516.14,3493.36,26127534,99.82,0,0,0.14,516.11,3493.38,26127535,99.75,0,0,0.31,516.85,3492.66,26127536,99.68,0.01,0.84,0.57,517.51,3491.99,26127537,99.87,0,0,0.32,517.15,3492.34,26127538,99.88,0,0,0.14,517.14,3492.36,26127539,99.83,0,0,0.15,517.11,3492.38,26127540,99.66,0,0,0.38,516.14,3493.36,26127541,99.64,0.01,0.64,0.57,516.64,3492.85,26127542,99.8,0,0,0.22,516.64,3492.84,26127543,99.78,0,0,0.15,516.64,3492.84,26127544,99.83,0,0,0.14,516.61,3492.86,26127545,99.72,0,0,0.38,516.15,3493.34,26127546,99.71,0,0,0.43,516.73,3492.75,26127547,99.85,0,0,0.29,517.07,3492.41,26127548,99.79,0.01,0,0.14,517.03,3492.44,26127549,99.61,0,0,0.3,517.07,3492.38,26127550,99.71,0,0,0.32,516.21,3493.25,26127551,99.7,0,0,0.38,516.65,3492.81,26127552,99.8,0,0,0.36,517.35,3492.1,26127553,99.85,0,0,0.16,517.33,3492.12,26127554,99.81,0.01,0.19,0.15,517.3,3492.17,26127555,99.7,0,0,0.4,516.92,3492.56,26127556,99.83,0,0,0.16,516.89,3492.6,26127557,99.68,0,0,0.62,517.57,3491.91,26127558,99.82,0,0,0.15,516.35,3493.12,26127559,99.83,0,0,0.14,516.33,3493.14,26127560,99.73,0.01,1.08,0.36,516.59,3492.9,26127561,99.83,0,0.01,0.21,516.6,3492.88,26127562,99.68,0,0,0.61,516.76,3492.71,26127563,99.82,0,0,0.14,516.31,3493.15,26127564,99.81,0,0,0.14,516.29,3493.17,26127565,99.74,0,0,0.32,515.33,3494.15,26127566,99.82,0,0,0.16,515.29,3494.18,26127567,99.68,0,0,0.55,515.92,3493.55,26127568,99.78,0,0,0.18,515.75,3493.72,26127569,99.84,0,0,0.16,515.82,3493.64,26127570,99.72,0,0,0.33,515.42,3494.06,26127571,99.81,0,0,0.13,515.4,3494.07,26127572,99.68,0,0,0.57,516.17,3493.31,26127573,99.8,0,0,0.14,516.1,3493.37,26127574,99.83,0,0,0.14,516.08,3493.38,26127575,99.68,0,0,0.36,515.88,3493.61,26127576,99.79,0,0,0.14,515.57,3493.91,26127577,99.72,0,0,0.58,515.68,3493.79,26127578,99.84,0,0,0.15,515.04,3494.43,26127579,99.25,0,0,0.29,516.48,3492.97,26127580,98.96,0,0,0.36,516.74,3492.72,26127581,99.83,0,0,0.16,516.72,3492.74,26127582,99.69,0,0,0.59,516.86,3492.59,26127583,99.86,0,0,0.14,515.13,3494.3,26127584,99.84,0,0,0.15,515.12,3494.33,26127585,99.72,0,0,0.36,516.07,3493.4,26127586,99.83,0,0,0.14,516.08,3493.38,26127587,99.7,0,0,0.43,516.48,3492.98,26127588,99.82,0,0,0.3,516.78,3492.68,26127589,99.84,0,0,0.15,516.76,3492.69,26127590,99.76,0,0,0.33,516.76,3492.71,26127591,99.82,0,0,0.14,516.74,3492.72,26127592,99.69,0,0,0.31,517.05,3492.41,26127593,99.81,0,0,0.37,516.53,3492.93,26127594,98.75,0,0,0.15,516.65,3492.81,26127595,99.77,0,0,0.33,515.69,3493.78,26127596,99.83,0,0,0.17,515.64,3493.83,26127597,99.85,0,0,0.14,515.62,3493.84,26127598,99.68,0,0,0.55,516.4,3493.06,26127599,99.83,0,0,0.15,516.07,3493.38,26127600,99.69,0,0,0.34,515.59,3493.88,26127601,99.83,0,0,0.13,515.56,3493.9,26127602,99.78,0,0,0.16,515.54,3493.92,26127603,99.7,0.01,0,0.56,517.23,3492.23,26127604,99.82,0,0,0.17,516.81,3492.65,26127605,99.76,0,0,0.33,516.57,3492.9,26127606,99.81,0,0,0.16,516.54,3492.93,26127607,99.8,0,0,0.14,516.53,3492.94,26127608,99.69,0,0,0.55,517.34,3492.12,26127609,99.65,0,0.01,0.29,516.58,3492.86,26127610,99.71,0,0,0.32,516.63,3492.82,26127611,99.82,0,0,0.17,516.62,3492.84,26127612,99.81,0,0,0.14,516.58,3492.87,26127613,99.66,0,0,0.55,517.18,3492.26,26127614,99.83,0,0,0.19,516.78,3492.65,26127615,99.74,0,0,0.38,515.58,3493.87,26127616,99.83,0,0,0.18,515.53,3493.91,26127617,99.84,0,0,0.2,515.51,3493.93,26127618,99.67,0,0,0.59,516.13,3493.31,26127619,99.83,0,0,0.14,516.71,3492.73,26127620,99.7,0,0,0.34,516.55,3492.9,26127621,99.83,0,0,0.18,516.64,3492.8,26127622,99.82,0,0,0.19,516.61,3492.83,26127623,99.7,0,0,0.59,516.96,3492.48,26127624,99.83,0,0,0.21,516.57,3492.86,26127625,99.74,0,0,0.43,516.09,3493.36,26127626,99.86,0,0,0.2,516.05,3493.39,26127627,99.83,0,0,0.2,516.03,3493.41,26127628,99.68,0,0,0.43,516.42,3493.02,26127629,99.84,0,0,0.39,516.73,3492.7,26127630,99.81,0,0,0.39,516.97,3492.47,26127631,99.81,0.01,1.8,0.25,517,3492.43,26127632,99.81,0,0,0.2,516.98,3492.45,26127633,99.84,0,0,0.18,516.95,3492.47,26127634,99.67,0,0,0.64,517.38,3492.04,26127635,99.73,0,0,0.41,516.44,3492.99,26127636,99.83,0,0,0.21,516.36,3493.07,26127637,99.86,0,0,0.19,516.33,3493.09,26127638,99.83,0,0,0.19,516.31,3493.11,26127639,99.58,0,0,0.74,517.55,3491.85,26127640,99.73,0,0,0.38,516.79,3492.62,26127641,99.77,0,0,0.19,516.77,3492.64,26127642,99.79,0,0,0.2,516.74,3492.66,26127643,99.81,0,0,0.18,516.72,3492.67,26127644,99.68,0,0,0.64,516.78,3492.63,26127645,99.7,0,0,0.4,516.77,3492.66,26127646,99.84,0,0,0.18,516.85,3492.58,26127647,99.78,0.01,0.83,0.17,516.81,3492.61,26127648,99.85,0,0.01,0.27,516.7,3492.71,26127649,99.67,0,0,0.57,516.94,3492.46,26127650,99.72,0,0,0.35,516.78,3492.64,26127651,99.8,0,0,0.18,516.87,3492.55,26127652,99.76,0.02,1.01,0.28,516.76,3492.64,26127653,99.84,0,0.01,0.22,516.76,3492.64,26127654,99.69,0,0,0.52,517.25,3492.14,26127655,99.74,0,0,0.45,517.1,3492.31,26127656,99.81,0,0,0.2,517.07,3492.34,26127657,99.83,0,0,0.18,517.05,3492.35,26127658,99.8,0,0,0.16,517.03,3492.37,26127659,99.7,0,0,0.43,517.14,3492.25,26127660,99.07,0,0,11.22,516,3493.42,26127661,99.84,0,0,0.14,516.02,3493.47,26127662,99.83,0,0.01,0.14,515.99,3493.5,26127663,99.86,0,0,0.22,515.94,3493.53,26127664,99.8,0,0,0.14,516,3493.47,26127665,99.53,0,0,0.83,517.81,3491.7,26127666,99.84,0,0,0.17,517.07,3492.44,26127667,99.84,0,0,0.14,517.05,3492.46,26127668,99.78,0,0,0.14,517.03,3492.47,26127669,99.54,0.01,0.21,0.34,516.27,3493.21,26127670,99.61,0,0,0.77,517.32,3492.17,26127671,99.81,0,0,0.14,516.68,3492.81,26127672,99.83,0,0,0.16,516.75,3492.73,26127673,99.83,0,0.01,0.15,516.8,3492.68,26127674,99.83,0,0,0.16,516.77,3492.72,26127675,99.59,0,0.01,0.73,517.46,3492.05,26127676,99.79,0,0,0.15,516.97,3492.54,26127677,99.74,0,0.02,0.21,516.93,3492.57,26127678,99.8,0,0,0.16,516.9,3492.6,26127679,99.82,0,0,0.14,517.04,3492.45,26127680,99.54,0,0,0.73,517.32,3492.19,26127681,99.83,0,0,0.17,517.05,3492.46,26127682,99.85,0,0,0.16,517.03,3492.47,26127683,99.81,0,0,0.14,517,3492.5,26127684,99.85,0,0,0.16,516.99,3492.5,26127685,99.6,0,0,0.76,517.97,3491.54,26127686,99.81,0,0,0.14,517.2,3492.3,26127687,99.84,0,0,0.16,517.17,3492.33,26127688,99.83,0,0,0.16,517.28,3492.22,26127689,99.82,0,0,0.14,517.3,3492.2,26127690,99.51,0,0,0.62,516.73,3492.78,26127691,99.83,0.01,0.02,0.33,517.22,3492.28,26127692,99.84,0,0,0.14,517.17,3492.33,26127693,99.85,0,0,0.16,517.15,3492.35,26127694,99.85,0,0,0.14,517.28,3492.21,26127695,99.65,0,0,0.52,517.66,3491.86,26127696,99.78,0,0,0.46,516.83,3492.68,26127697,99.87,0,0,0.16,516.8,3492.7,26127698,99.82,0,0,0.14,516.78,3492.72,26127699,99.79,0.01,0.8,0.35,517.02,3492.45,26127700,99.78,0,0,0.32,517.33,3492.15,26127701,99.71,0,0,0.57,517.67,3491.81,26127702,99.9,0,0,0.14,517.29,3492.18,26127703,99.86,0,0,0.15,517.27,3492.2,26127704,99.89,0,0,0.14,517.25,3492.22,26127705,99.83,0,0,0.32,517.25,3492.24,26127706,99.77,0.01,0.9,0.61,517.45,3492.03,26127707,99.87,0,0.01,0.23,516.99,3492.48,26127708,99.83,0,0,0.18,516.98,3492.49,26127709,99.89,0,0,0.15,516.63,3492.84,26127710,99.82,0,0,0.33,516.21,3493.27,26127711,99.8,0,0,0.55,516.54,3492.93,26127712,99.88,0,0,0.16,516.17,3493.3,26127713,99.9,0,0,0.14,516.24,3493.23,26127714,99.89,0,0,0.14,516.31,3493.15,26127715,99.79,0,0,0.32,516.56,3492.92,26127716,95.1,0.31,0.01,79.11,529.43,3480.09,26127717,99.76,0,0,181.12,518.77,3490.48,26127718,99.92,0,0,0.15,518.75,3490.49,26127719,99.93,0,0,0.14,518.73,3490.51,26127720,99.71,0,0,0.35,518.73,3490.52,26127721,99.76,0,0,0.64,518.31,3490.95,26127722,99.91,0,0,0.15,516.52,3492.77,26127723,99.9,0,0,0.14,516.51,3492.78,26127724,99.85,0,0,0.14,516.53,3492.75,26127725,99.81,0,0,0.3,516.7,3492.6,26127726,99.78,0,0,0.53,517.31,3492,26127727,99.86,0,0,0.2,516.4,3492.95,26127728,99.89,0,0,0.15,516.37,3492.97,26127729,99.77,0,0,0.29,516.58,3492.73,26127730,99.8,0,0,0.26,516.82,3492.51,26127731,99.83,0,0,0.15,516.93,3492.4,26127732,99.71,0,0,0.56,516.66,3492.66,26127733,99.9,0,0,0.14,516.28,3493.04,26127734,99.9,0,0,0.15,516.25,3493.06,26127735,99.82,0,0,0.29,516.5,3492.83,26127736,99.86,0,0,0.13,516.63,3492.69,26127737,99.68,0,0,0.69,516.79,3492.53,26127738,99.85,0,0,0.18,516.38,3492.93,26127739,99.9,0,0,0.18,516.35,3492.96,26127740,99.8,0,0,0.32,515.64,3493.69,26127741,99.92,0,0,0.17,515.61,3493.72,26127742,99.77,0,0,0.56,516.96,3492.36,26127743,99.92,0,0,0.14,516.79,3492.52,26127744,99.89,0,0,0.15,516.77,3492.54,26127745,99.8,0,0,0.27,515.33,3494,26127746,99.88,0,0,0.14,515.28,3494.04,26127747,99.76,0,0,0.6,516.12,3493.2,26127748,99.93,0,0,0.18,515.98,3493.34,26127749,99.89,0,0,0.17,516.14,3493.17,26127750,99.81,0,0,0.27,515.43,3493.9,26127751,99.87,0,0,0.17,515.39,3493.93,26127752,99.77,0,0,0.58,516.34,3492.98,26127753,99.89,0,0,0.15,516.57,3492.74,26127754,99.94,0,0,0.15,516.56,3492.75,26127755,99.75,0,0,0.34,516.47,3492.85,26127756,99.87,0,0,0.16,516.29,3493.04,26127757,99.74,0,0,0.57,516.72,3492.6,26127758,99.87,0,0,0.18,516.25,3493.07,26127759,99.72,0,0,0.32,516.69,3492.6,26127760,99.82,0,0,0.27,516.86,3492.45,26127761,99.9,0,0,0.16,516.88,3492.44,26127762,99.75,0,0,0.56,517.1,3492.22,26127763,99.89,0,0,0.19,516.1,3493.21,26127764,99.87,0,0,0.16,516.08,3493.22,26127765,99.77,0,0,0.3,514.89,3494.43,26127766,99.93,0,0,0.14,514.83,3494.49,26127767,99.85,0,0,0.13,514.81,3494.5,26127768,99.73,0,0,0.59,516.35,3492.96,26127769,99.9,0,0,0.15,516,3493.3,26127770,99.88,0,0,0.25,515.99,3493.33,26127771,99.9,0,0,0.15,516.06,3493.26,26127772,99.84,0,0,0.17,516.17,3493.15,26127773,99.77,0,0,0.58,516.51,3492.8,26127774,99.9,0,0,0.14,516.13,3493.18,26127775,99.83,0,0,0.32,515.88,3493.44,26127776,99.89,0,0,0.18,515.86,3493.46,26127777,99.9,0,0,0.16,515.83,3493.48,26127778,99.73,0,0,0.6,517.17,3492.14,26127779,99.89,0,0,0.14,516.52,3492.78,26127780,99.77,0,0,0.28,516.79,3492.53,26127781,99.9,0,0,0.14,516.75,3492.57,26127782,99.9,0,0,0.18,516.74,3492.57,26127783,99.77,0,0,0.55,517.46,3491.84,26127784,99.93,0,0,0.15,516.89,3492.41,26127785,99.83,0,0,0.25,516.65,3492.67,26127786,99.9,0,0,0.14,516.62,3492.69,26127787,99.93,0,0,0.16,516.59,3492.72,26127788,99.74,0,0,0.56,517.11,3492.2,26127789,99.63,0,0,0.31,515.84,3493.44,26127790,99.79,0,0,0.29,516.29,3493.01,26127791,99.87,0.01,0.01,0.18,516.35,3492.95,26127792,99.84,0.01,0.01,0.18,516.26,3493.03,26127793,99.79,0,0,0.61,516.77,3492.51,26127794,99.87,0,0,0.18,516.88,3492.4,26127795,99.74,0,0,0.27,516.45,3492.85,26127796,99.85,0,0,0.19,516.37,3492.93,26127797,99.86,0,0,0.19,516.34,3492.95,26127798,99.73,0,0,0.42,516.74,3492.54,26127799,99.86,0,0,0.28,516.78,3492.5,26127800,99.78,0,0,0.27,516.79,3492.51,26127801,99.86,0,0,0.16,516.76,3492.53,26127802,99.9,0,0,0.15,516.75,3492.54,26127803,99.74,0,0,0.42,517.11,3492.16,26127804,99.9,0,0,0.29,516.94,3492.34,26127805,99.78,0,0,0.27,517.11,3492.19,26127806,99.85,0,0,0.17,517.12,3492.17,26127807,99.91,0,0,0.15,517.1,3492.19,26127808,99.9,0,0,0.15,517.08,3492.2,26127809,99.7,0,0,0.55,517.56,3491.72,26127810,99.78,0,0,0.26,517.3,3492,26127811,99.87,0,0,0.16,517.29,3492,26127812,99.88,0,0,0.14,517.27,3492.02,26127813,99.85,0,0,0.14,517.25,3492.04,26127814,99.68,0,0,0.56,517.37,3491.91,26127815,99.84,0,0,0.3,516.83,3492.46,26127816,99.93,0,0,0.15,516.47,3492.82,26127817,99.89,0,0,0.15,516.54,3492.75,26127818,99.87,0,0,0.14,516.62,3492.66,26127819,99.61,0,0,0.69,517.59,3491.67,26127820,99.78,0,0,0.33,517.1,3492.17,26127821,99.89,0,0,0.15,517.06,3492.2,26127822,99.86,0,0,0.14,517.04,3492.23,26127823,99.91,0,0,0.15,517.02,3492.24,26127824,99.74,0,0,0.56,517.35,3491.9,26127825,99.83,0,0,0.27,516.51,3492.76,26127826,99.92,0,0,0.16,516.47,3492.8,26127827,99.9,0,0,0.15,516.52,3492.74,26127828,99.9,0,0,0.14,516.61,3492.65,26127829,99.79,0,0,0.57,517.18,3492.08,26127830,99.8,0,0,0.29,517.09,3492.18,26127831,99.88,0,0,0.13,517.05,3492.21,26127832,99.92,0,0,0.14,517.03,3492.23,26127833,99.91,0,0,0.16,517.01,3492.24,26127834,99.79,0,0,0.46,517.77,3491.49,26127835,99.69,0,0,0.44,517.07,3492.2,26127836,98.27,0,0,0.18,516.96,3492.3,26127837,99.88,0,0,0.14,516.94,3492.34,26127838,99.93,0,0,0.15,517.03,3492.26,26127839,99.76,0,0,0.46,517.67,3491.61,26127840,99.69,0,0,0.39,515.93,3493.37,26127841,99.9,0,0,0.14,515.87,3493.43,26127842,99.91,0,0.01,0.17,515.84,3493.45,26127843,99.91,0,0.01,0.16,515.79,3493.5,26127844,99.92,0,0,0.17,515.77,3493.52,26127845,99.63,0,0,0.68,517.54,3491.76,26127846,99.87,0,0,0.17,517.27,3492.02,26127847,99.93,0,0.01,0.16,517.36,3491.93,26127848,99.91,0,0,0.16,517.34,3491.95,26127849,99.71,0,0,0.29,517.06,3492.2,26127850,99.71,0,0,0.72,517.61,3491.67,26127851,99.92,0,0,0.14,517.28,3492,26127852,99.91,0,0,0.17,517.26,3492.01,26127853,99.88,0,0,0.14,517.23,3492.04,26127854,99.86,0,0,0.15,517.22,3492.05,26127855,99.59,0,0,0.69,517.32,3491.96,26127856,99.88,0,0,0.14,517.04,3492.24,26127857,99.91,0,0,0.21,517.1,3492.17,26127858,99.92,0,0,0.14,517.08,3492.19,26127859,99.89,0,0,0.14,517.07,3492.2,26127860,99.68,0,0,0.68,517.66,3491.62,26127861,99.91,0,0,0.16,517.3,3491.97,26127862,99.84,0,0,0.14,517.27,3492,26127863,99.94,0,0,0.14,517.25,3492.02,26127864,99.9,0,0,0.17,517.23,3492.04,26127865,99.55,0,0,0.73,516.87,3492.42,26127866,99.87,0,0,0.17,516.22,3493.08,26127867,99.87,0,0,0.14,516.32,3492.96,26127868,99.93,0,0,0.16,516.36,3492.92,26127869,99.87,0,0,0.15,516.34,3492.94,26127870,99.57,0,0,0.8,517.27,3492.02,26127871,99.9,0,0,0.17,516.32,3492.97,26127872,99.91,0,0,0.16,516.29,3493,26127873,99.91,0,0,0.16,516.26,3493.02,26127874,99.86,0,0,0.16,516.24,3493.04,26127875,99.61,0,0,0.5,516.12,3493.17,26127876,99.88,0,0,0.39,516.22,3493.07,26127877,99.88,0,0,0.19,516.2,3493.09,26127878,99.9,0,0,0.13,516.33,3492.95,26127879,99.73,0,0,0.3,516.69,3492.56,26127880,99.69,0,0,0.59,517.11,3492.17,26127881,99.91,0,0.03,0.3,515.81,3493.46,26127882,99.89,0,0,0.19,515.76,3493.5,26127883,99.93,0,0,0.15,515.74,3493.52,26127884,99.88,0.02,0.01,0.16,515.74,3493.51,26127885,99.78,0.03,0.02,0.3,516.04,3493.23,26127886,99.71,0.04,0.03,0.57,517.24,3492.03,26127887,99.89,0.02,0.01,0.2,516.53,3492.72,26127888,99.84,0,0,0.16,516.52,3492.73,26127889,99.92,0,0,0.14,516.5,3492.74,26127890,99.83,0,0,0.27,516.49,3492.77,26127891,99.73,0,0,0.57,517.17,3492.09,26127892,99.86,0,0,0.14,516.43,3492.82,26127893,99.89,0,0,0.16,516.5,3492.74,26127894,99.92,0,0,0.14,516.57,3492.66,26127895,99.9,0,0,0.27,516.58,3492.68,26127896,99.77,0,0,0.56,517.09,3492.17,26127897,99.95,0,0,0.16,516.29,3492.96,26127898,99.91,0,0,0.16,516.27,3492.98,26127899,99.92,0,0,0.14,516.25,3492.99,26127900,99.71,0,0,0.27,515.28,3493.98,26127901,99.75,0,0,0.58,516.3,3492.96,26127902,99.89,0,0,0.14,516.46,3492.8,26127903,99.92,0,0,0.15,516.44,3492.81,26127904,99.9,0,0,0.14,516.41,3492.83,26127905,99.81,0,0,0.29,516.52,3492.74,26127906,99.77,0,0,0.61,517.13,3492.13,26127907,99.89,0,0,0.16,516.8,3492.45,26127908,99.95,0,0,0.17,516.78,3492.47,26127909,99.73,0,0,0.33,516.74,3492.48,26127910,99.83,0,0,0.33,516.02,3493.22,26127911,99.77,0,0,0.42,516.47,3492.76,26127912,99.86,0,0,0.38,516.69,3492.54,26127913,99.92,0,0,0.18,516.66,3492.56,26127914,99.91,0,0,0.18,516.72,3492.49,26127915,99.88,0,0,0.32,516.86,3492.38,26127916,99.92,0,0,0.18,516.84,3492.39,26127917,99.77,0,0,0.6,517.16,3492.06,26127918,99.92,0,0,0.14,516.8,3492.41,26127919,99.91,0,0,0.17,516.77,3492.44,26127920,99.83,0,0,0.31,516.53,3492.7,26127921,99.92,0,0,0.18,516.51,3492.73,26127922,99.75,0,0,0.59,517.06,3492.18,26127923,99.93,0,0,0.18,516.72,3492.52,26127924,99.92,0,0,0.18,516.7,3492.53,26127925,99.82,0,0,0.33,516.71,3492.54,26127926,99.91,0,0,0.16,516.83,3492.42,26127927,99.78,0,0,0.57,517.03,3492.2,26127928,99.89,0,0,0.14,516.6,3492.62,26127929,99.91,0,0,0.14,516.58,3492.63,26127930,99.78,0,0,0.28,516.83,3492.41,26127931,99.88,0,0,0.14,516.81,3492.42,26127932,99.72,0,0,0.58,517.36,3491.86,26127933,99.89,0,0,0.17,517.01,3492.21,26127934,99.88,0,0,0.14,516.98,3492.23,26127935,99.79,0,0,0.32,516.64,3492.61,26127936,99.92,0,0,0.16,516.26,3492.98,26127937,99.76,0,0,0.51,516.84,3492.4,26127938,99.91,0,0,0.28,516.63,3492.61,26127939,99.74,0,0,0.45,516.66,3492.55,26127940,99.75,0,0,0.29,516.9,3492.33,26127941,99.91,0,0,0.14,516.83,3492.39,26127942,99.74,0,0,0.43,516.78,3492.44,26127943,98.62,0,0,0.29,515.81,3493.41,26127944,99.9,0,0,0.19,515.79,3493.42,26127945,99.82,0,0,0.3,516.03,3493.2,26127946,99.91,0,0,0.35,516.56,3492.66,26127947,99.73,0,0,0.59,517.44,3491.79,26127948,99.93,0,0,0.14,516.59,3492.63,26127949,99.9,0,0,0.15,516.62,3492.59,26127950,99.76,0,0,0.3,516.14,3493.09,26127951,94.22,44.67,0.09,107.15,526.31,3482.08,26127952,99.61,0,0,78.53,519.5,3445.53,26127953,99.89,0,0,0.41,519.41,3445.62,26127954,99.87,0,0,0.18,519.54,3445.49,26127955,99.85,0,0,0.35,519.28,3445.76,26127956,99.91,0,0,0.2,519.05,3445.98,26127957,98.52,0,0,0.43,517.42,3447.64,26127958,99.91,0,0,0.4,517.3,3447.76,26127959,99.9,0,0,0.16,517.28,3447.77,26127960,99.83,0,0,0.33,517.32,3447.76,26127961,99.93,0,0,0.14,517.29,3447.78,26127962,99.93,0,0,0.16,517.05,3448.03,26127963,99.79,0,0,0.6,517.37,3447.72,26127964,99.93,0,0,0.18,516.99,3448.1,26127965,99.88,0,0,0.3,517.09,3448.02,26127966,99.89,0,0,0.2,517.15,3447.95,26127967,99.91,0,0,0.17,517.13,3447.96,26127968,99.76,0,0,0.61,517.46,3447.63,26127969,99.72,0,0,0.34,517.11,3447.96,26127970,99.81,0,0,0.34,515.88,3449.2,26127971,99.89,0,0,0.2,515.82,3449.26,26127972,99.87,0,0,0.19,515.79,3449.28,26127973,99.74,0,0,0.6,517.13,3447.94,26127974,99.9,0,0,0.2,516.98,3448.09,26127975,99.79,0,0,0.33,515.39,3449.69,26127976,99.89,0,0,0.18,515.42,3449.66,26127977,99.86,0,0,0.21,515.66,3449.42,26127978,99.74,0,0,0.43,516.58,3448.51,26127979,99.93,0,0,0.29,516.86,3448.23,26127980,99.77,0,0,0.27,517.33,3447.78,26127981,99.88,0,0,0.17,517.33,3447.77,26127982,99.9,0,0,0.14,517.31,3447.79,26127983,99.71,0,0,0.58,517.64,3447.45,26127984,99.83,0,0,0.14,517.26,3447.83,26127985,99.74,0,0,0.32,516.3,3448.8,26127986,99.91,0,0,0.16,516.28,3448.82,26127987,99.86,0,0,0.14,516.44,3448.65,26127988,99.58,0,0,0.41,516.91,3448.18,26127989,99.92,0,0,0.29,517.13,3447.95,26127990,99.83,0,0,0.28,516.9,3448.19,26127991,99.87,0,0,0.14,516.87,3448.23,26127992,99.89,0,0,0.14,516.86,3448.23,26127993,99.81,0,0,0.32,517.19,3447.89,26127994,99.83,0,0,0.41,517.31,3447.77,26127995,99.79,0,0,0.31,517.21,3447.89,26127996,99.9,0,0,0.16,516.78,3448.32,26127997,99.87,0,0,0.14,516.89,3448.2,26127998,99.88,0,0,0.15,516.91,3448.17,26127999,99.59,0,0,0.72,517.95,3447.11,26128000,99.83,0,0,0.25,517.37,3447.7,26128001,99.89,0,0,0.14,517.35,3447.72,26128002,99.85,0,0,0.16,517.33,3447.73,26128003,99.93,0,0,0.14,517.31,3447.75,26128004,99.78,0,0,0.59,517.34,3447.72,26128005,99.8,0,0,0.28,516.79,3448.28,26128006,99.88,0,0,0.17,516.76,3448.3,26128007,99.88,0,0,0.18,516.75,3448.31,26128008,99.89,0,0,0.18,516.87,3448.19,26128009,99.74,0,0,0.57,517.36,3447.69,26128010,99.74,0,0,0.27,517.38,3447.69,26128011,99.9,0,0,0.16,517.35,3447.71,26128012,99.93,0,0,0.14,517.33,3447.73,26128013,99.9,0,0,0.14,517.31,3447.75,26128014,99.65,0,0,0.42,517.64,3447.41,26128015,99.85,0,0,0.46,517.53,3447.54,26128016,99.91,0,0,0.14,517.53,3447.54,26128017,99.88,0,0,0.13,517.5,3447.56,26128018,99.84,0,0,0.17,517.47,3447.58,26128019,99.71,0,0,0.56,518.29,3446.75,26128020,99.78,0,0,0.28,515.53,3449.53,26128021,99.89,0,0,0.14,515.15,3449.92,26128022,99.87,0,0,0.18,515.12,3449.93,26128023,99.92,0,0,0.16,515.11,3449.95,26128024,99.72,0,0,0.5,515.77,3449.28,26128025,99.75,0,0,0.35,515.86,3449.21,26128026,99.89,0,0,0.16,515.8,3449.26,26128027,99.9,0,0,0.14,515.8,3449.26,26128028,99.91,0,0,0.17,515.76,3449.29,26128029,99.82,0,0,0.31,516.71,3448.32,26128030,99.68,0,0,0.68,516.45,3448.59,26128031,99.87,0,0,0.16,516.15,3448.89,26128032,99.9,0,0,0.14,516.13,3448.91,26128033,99.9,0,0,0.15,516.1,3448.93,26128034,99.89,0,0,0.13,516.08,3448.98,26128035,99.63,0,0,0.72,516.93,3448.15,26128036,99.89,0,0,0.14,516.56,3448.52,26128037,99.92,0,0,0.2,516.54,3448.54,26128038,99.91,0,0,0.15,516.52,3448.55,26128039,99.9,0,0,0.15,516.5,3448.57,26128040,99.66,0,0,0.69,516.79,3448.28,26128041,99.88,0,0,0.14,516.86,3448.21,26128042,99.89,0,0,0.14,516.87,3448.2,26128043,99.92,0,0,0.15,516.87,3448.2,26128044,99.9,0,0,0.15,516.84,3448.22,26128045,98.19,0,0,16.05,519.37,3446.47,26128046,99.9,0,0,0.16,516.88,3448.54,26128047,99.9,0,0,0.14,516.85,3448.56,26128048,99.9,0,0,0.15,516.84,3448.57,26128049,99.88,0,0,0.15,516.81,3448.59,26128050,99.67,0,0,0.63,516.93,3448.49,26128051,99.88,0,0,0.18,516.54,3448.88,26128052,99.89,0,0,0.16,516.65,3448.76,26128053,99.87,0,0,0.14,516.68,3448.72,26128054,99.9,0,0,0.15,516.66,3448.74,26128055,99.58,0,0,0.67,516.46,3448.95,26128056,99.84,0,0,0.19,516.39,3449.03,26128057,99.87,0,0,0.15,516.37,3449.04,26128058,99.85,0,0,0.15,516.35,3449.06,26128059,99.63,0,0,0.31,516.8,3448.58,26128060,99.65,0,0,0.61,516.19,3449.2,26128061,99.87,0,0,0.3,516.78,3448.61,26128062,99.84,0,0,0.17,516.83,3448.56,26128063,99.88,0,0,0.15,516.95,3448.43,26128064,99.86,0,0,0.16,516.95,3448.46,26128065,97.59,0,0,0.57,518.42,3447,26128066,75.28,0,0,307.91,573,3366.54,26128067,99.85,0,0.02,33.4,518.72,3492.29,26128068,99.83,0,0,0.15,518.7,3492.31,26128069,99.83,0,0,0.16,518.68,3492.33,26128070,99.87,0,0,0.36,519.16,3491.85,26128071,99.68,0,0,0.65,519.23,3491.92,26128072,99.79,0,0,0.18,516.39,3495.39,26128073,99.87,0,0,0.18,516.47,3495.3,26128074,99.81,0,0,0.17,516.45,3495.32,26128075,99.78,0,0,0.3,516.45,3495.34,26128076,99.72,0,0,0.54,516.5,3495.29,26128077,99.9,0,0,0.16,515.67,3496.11,26128078,99.9,0,0,0.14,515.65,3496.13,26128079,99.85,0,0,0.15,515.63,3496.14,26128080,99.72,0,0,0.29,516.12,3495.67,26128081,95.94,0.04,0.01,142.05,526.13,3487.43,26128082,99.78,0,0,0.44,518.8,3493,26128083,99.88,0,0,0.16,518.79,3493,26128084,99.86,0,0,0.16,518.77,3493.02,26128085,99.75,0,0,0.3,518.04,3493.76,26128086,99.73,0,0,0.52,517.69,3494.15,26128087,99.88,0,0,0.22,516.58,3495.31,26128088,99.78,0,0,0.14,516.63,3495.25,26128089,99.76,0,0,0.29,516.75,3495.11,26128090,99.78,0,0,0.28,516.59,3495.28,26128091,99.76,0,0,0.55,516.86,3495.01,26128092,99.84,0,0,0.15,516.47,3495.39,26128093,99.87,0,0,0.14,516.46,3495.41,26128094,99.61,0,0,0.15,516.43,3495.42,26128095,99.75,0,0,0.3,516.2,3495.67,26128096,99.62,0,0,0.62,516.66,3495.21,26128097,99.74,0,0,0.18,516.64,3495.22,26128098,99.83,0,0,0.15,516.62,3495.24,26128099,99.82,0,0,0.16,516.6,3495.25,26128100,99.35,0,0,0.54,516.15,3495.72,26128101,99.65,0,0,0.43,517.54,3494.31,26128102,99.83,0,0,0.3,516.76,3495.09,26128103,99.8,0,0,0.15,516.73,3495.11,26128104,99.83,0,0,0.14,516.72,3495.12,26128105,99.79,0,0,0.28,516.71,3495.13,26128106,99.83,0,0,0.16,516.7,3495.14,26128107,99.68,0,0,0.55,517.03,3494.81,26128108,99.82,0,0,0.14,516.66,3495.17,26128109,99.73,0,0,0.15,516.63,3495.19,26128110,99.77,0,0,0.32,516.16,3495.68,26128111,99.8,0,0,0.16,516.16,3495.68,26128112,99.68,0,0,0.57,516.84,3495,26128113,99.8,0,0,0.15,516.52,3495.31,26128114,99.84,0,0,0.15,516.5,3495.32,26128115,99.73,0,0,0.31,516.73,3495.12,26128116,99.86,0,0,0.15,516.49,3495.34,26128117,99.71,0,0,0.57,516.83,3495,26128118,99.85,0,0,0.17,516.44,3495.39,26128119,99.73,0,0,0.29,516.41,3495.39,26128120,99.71,0,0,0.29,516.64,3495.18,26128121,99.81,0,0,0.17,516.62,3495.2,26128122,99.69,0,0,0.43,517.41,3494.4,26128123,99.85,0,0,0.31,516.76,3495.05,26128124,99.81,0,0,0.16,516.74,3495.06,26128125,99.77,0,0,0.29,516.5,3495.32,26128126,99.84,0,0,0.14,516.46,3495.35,26128127,99.67,0,0,0.55,516.7,3495.11,26128128,99.81,0,0,0.14,516.18,3495.63,26128129,99.74,0,0,0.14,516.16,3495.64,26128130,99.75,0,0,0.27,515.97,3495.85,26128131,99.84,0,0,0.14,515.89,3495.92,26128132,99.65,0,0,0.55,516.63,3495.18,26128133,99.79,0,0,0.16,516.94,3494.89,26128134,99.83,0,0,0.14,517.03,3494.79,26128135,99.71,0,0,0.27,517.04,3494.8,26128136,99.79,0,0,0.14,517.01,3494.82,26128137,99.68,0,0,0.57,517.29,3494.54,26128138,99.84,0,0,0.14,516.73,3495.1,26128139,99.85,0,0,0.14,516.71,3495.11,26128140,98.75,0,0,0.28,517.19,3494.65,26128141,99.81,0,0,0.16,517.18,3494.65,26128142,99.69,0,0,0.3,517.48,3494.35,26128143,99.83,0,0,0.44,516.65,3495.17,26128144,99.82,0,0,0.14,516.63,3495.19,26128145,99.7,0,0,0.28,515.73,3496.11,26128146,99.8,0,0,0.16,515.81,3496.02,26128147,99.76,0,0,0.15,515.8,3496.03,26128148,99.64,0,0,0.61,516.79,3495.03,26128149,99.69,0,0,0.27,517.01,3494.79,26128150,99.72,0,0,0.37,516.98,3494.84,26128151,99.81,0,0,0.16,516.97,3494.85,26128152,99.8,0,0,0.15,516.94,3494.87,26128153,99.61,0,0,0.57,517.26,3494.54,26128154,99.82,0,0,0.15,516.64,3495.16,26128155,99.68,0,0,0.29,515.76,3496.06,26128156,99.79,0,0,0.17,515.71,3496.1,26128157,99.78,0,0,0.2,516.26,3495.54,26128158,99.68,0,0,0.42,516.89,3494.91,26128159,99.84,0,0,0.3,516.73,3495.06,26128160,99.7,0,0,0.36,516.97,3494.84,26128161,99.83,0,0,0.15,516.94,3494.87,26128162,99.79,0,0,0.14,516.94,3494.87,26128163,99.68,0,0,0.41,517.26,3494.54,26128164,99.81,0,0,0.3,516.88,3494.92,26128165,99.67,0,0,0.27,516.89,3494.92,26128166,99.81,0,0,0.14,516.97,3494.84,26128167,99.82,0,0,0.17,517.02,3494.79,26128168,99.68,0,0,0.54,517.35,3494.45,26128169,99.78,0,0,0.14,516.97,3494.82,26128170,99.73,0,0,0.28,516.98,3494.84,26128171,99.79,0,0,0.14,516.96,3494.85,26128172,99.83,0,0,0.16,516.94,3494.87,26128173,99.69,0,0,0.57,517.62,3494.18,26128174,99.82,0,0,0.16,516.89,3494.9,26128175,99.75,0,0,0.3,516.33,3495.48,26128176,99.81,0,0,0.17,515.4,3496.41,26128177,99.81,0,0,0.16,515.45,3496.35,26128178,99.66,0,0,0.32,516.05,3495.75,26128179,99.63,0,0,0.5,516.25,3495.53,26128180,99.72,0,0,0.27,515.8,3495.97,26128181,99.84,0,0,0.16,515.77,3496,26128182,99.84,0,0,0.14,515.74,3496.02,26128183,99.84,0,0,0.16,515.72,3496.04,26128184,99.61,0,0,0.61,516.06,3495.69,26128185,99.73,0,0,0.34,516.44,3495.33,26128186,99.76,0,0,0.15,516.46,3495.31,26128187,99.79,0,0,0.17,516.56,3495.2,26128188,99.76,0,0,0.14,516.53,3495.22,26128189,99.6,0,0,0.55,516,3495.76,26128190,99.76,0,0,0.29,516.01,3495.76,26128191,99.83,0,0,0.16,516.01,3495.78,26128192,99.8,0,0,0.14,515.97,3495.81,26128193,99.84,0,0,0.15,515.96,3495.82,26128194,99.66,0,0,0.55,516.64,3495.13,26128195,99.66,0,0,0.3,516.69,3495.1,26128196,99.8,0,0,0.14,516.65,3495.14,26128197,99.82,0,0,0.16,516.73,3495.05,26128198,99.84,0,0,0.14,516.81,3494.97,26128199,99.7,0,0,0.55,517.01,3494.76,26128200,99.71,0,0,0.28,516.54,3495.25,26128201,99.79,0,0,0.18,516.52,3495.27,26128202,99.8,0,0,0.13,516.49,3495.29,26128203,99.83,0,0,0.16,516.48,3495.3,26128204,99.67,0,0,0.56,516.8,3494.97,26128205,99.76,0,0,0.33,516.94,3494.84,26128206,99.83,0,0,0.16,516.92,3494.86,26128207,99.84,0,0,0.14,516.91,3494.87,26128208,99.84,0,0,0.16,516.88,3494.89,26128209,99.59,0,0,0.52,517.46,3494.28,26128210,99.76,0,0,0.42,515.4,3496.36,26128211,99.82,0,0,0.16,515.36,3496.41,26128212,99.79,0,0,0.17,515.34,3496.43,26128213,99.82,0,0,0.14,515.31,3496.45,26128214,99.64,0,0,0.31,515.84,3495.91,26128215,99.73,0,0,0.56,517,3494.77,26128216,99.8,0,0,0.16,516.98,3494.78,26128217,99.83,0,0,0.18,516.72,3495.04,26128218,99.85,0,0,0.15,516.7,3495.06,26128219,99.8,0,0,0.14,516.68,3495.07,26128220,99.49,0,0,0.73,516.25,3495.52,26128221,99.84,0,0,0.14,516.07,3495.69,26128222,99.81,0,0,0.16,516.09,3495.67,26128223,99.79,0,0,0.15,516.07,3495.69,26128224,99.8,0,0,0.18,516.04,3495.71,26128225,99.53,0,0,0.73,515.9,3495.86,26128226,99.8,0,0,0.16,515.52,3496.24,26128227,99.81,0,0,0.14,515.52,3496.24,26128228,99.84,0,0,0.15,515.49,3496.27,26128229,99.79,0,0,0.17,515.48,3496.27,26128230,99.59,0,0,0.68,515.68,3496.09,26128231,99.82,0,0,0.14,514.97,3496.8,26128232,99.83,0,0,0.16,515.03,3496.73,26128233,99.79,0,0,0.14,515.11,3496.64,26128234,99.83,0,0,0.16,515.1,3496.65,26128235,99.58,0,0,0.61,517.55,3494.22,26128236,99.83,0,0,0.29,516.8,3494.96,26128237,99.8,0,0,0.15,516.78,3494.98,26128238,99.8,0,0,0.17,516.76,3495,26128239,99.76,0,0,0.34,516.98,3494.76,26128240,99.57,0,0,0.56,516.55,3495.2,26128241,99.81,0,0,0.3,516.46,3495.29,26128242,99.83,0,0,0.15,516.44,3495.3,26128243,99.79,0,0,0.14,516.41,3495.32,26128244,99.81,0,0,0.14,516.56,3495.17,26128245,99.56,0.01,0.84,0.57,516.62,3495.13,26128246,99.83,0,0,0.34,516.93,3494.81,26128247,99.76,0,0,0.14,517.04,3494.69,26128248,99.8,0,0,0.15,517.06,3494.67,26128249,99.8,0.01,0.84,0.2,516.96,3494.76,26128250,99.65,0,0,0.49,517.29,3494.44,26128251,99.78,0,0,0.4,516.8,3494.92,26128252,99.82,0,0,0.17,516.77,3494.94,26128253,99.83,0,0,0.14,516.75,3494.96,26128254,99.82,0.01,0.71,0.18,516.73,3494.97,26128255,99.65,0,0,0.52,517.01,3494.71,26128256,99.85,0,0,0.38,516.63,3495.09,26128257,99.88,0,0,0.16,516.75,3494.96,26128258,99.86,0,0,0.15,516.76,3494.95,26128259,99.9,0,0,0.15,516.74,3494.96,26128260,99.69,0.01,0.44,0.33,517.24,3494.49,26128261,99.71,0.02,1.36,0.73,517.18,3494.54,26128262,99.9,0,0,0.18,516.72,3494.98,26128263,99.9,0,0,0.16,516.7,3495,26128264,99.91,0,0,0.14,516.67,3495.03,26128265,99.72,0,0,0.29,516.43,3495.28,26128266,99.75,0,0,0.55,517.62,3494.08,26128267,99.84,0,0,0.14,517.17,3494.54,26128268,99.9,0,0,0.17,517.28,3494.42,26128269,99.74,0,0,0.39,517.26,3494.41,26128270,99.78,0,0,0.32,516.07,3495.61,26128271,99.73,0,0,0.43,516.85,3494.83,26128272,99.89,0,0.01,0.28,516.96,3494.71,26128273,99.89,0.04,1.46,0.17,516.94,3494.74,26128274,99.9,0,0.01,0.24,516.92,3494.76,26128275,99.83,0,0,0.29,516.69,3495.02,26128276,99.77,0,0,0.58,517.25,3494.44,26128277,99.88,0,0,0.21,517.12,3494.57,26128278,99.85,0,0,0.14,517.19,3494.49,26128279,99.87,0,0,0.16,517.28,3494.4,26128280,99.79,0,0,0.3,517.03,3494.67,26128281,99.68,0,0,0.59,517.72,3493.97,26128282,99.9,0,0,0.14,516.99,3494.71,26128283,99.91,0,0,0.15,516.97,3494.73,26128284,99.9,0,0,0.14,516.95,3494.75,26128285,99.81,0,0,0.29,516.96,3494.76,26128286,99.71,0,0,0.6,517.5,3494.21,26128287,99.84,0,0,0.15,517.16,3494.55,26128288,99.85,0,0,0.18,517.14,3494.57,26128289,99.89,0,0,0.15,517.12,3494.58,26128290,99.79,0,0,0.3,517.18,3494.53,26128291,99.87,0,0,0.21,517.27,3494.44,26128292,99.76,0,0,0.55,517.47,3494.24,26128293,99.9,0,0,0.15,516.97,3494.74,26128294,99.92,0,0,0.15,516.95,3494.77,26128295,99.79,0,0,0.33,516.29,3495.43,26128296,99.85,0,0,0.18,515.94,3495.78,26128297,99.72,0,0,0.57,517.08,3494.63,26128298,99.91,0,0,0.16,516.88,3494.82,26128299,99.73,0,0,0.28,517.1,3494.58,26128300,99.81,0,0,0.27,516.86,3494.84,26128301,99.92,0,0,0.16,516.93,3494.76,26128302,99.7,0,0,0.55,517.56,3494.13,26128303,99.93,0,0,0.14,517.24,3494.44,26128304,99.85,0,0,0.16,517.22,3494.48,26128305,99.88,0,0,0.29,517.47,3494.24,26128306,99.94,0,0,0.18,517.37,3494.34,26128307,99.76,0,0,0.57,517.53,3494.17,26128308,99.91,0,0,0.18,517.17,3494.53,26128309,99.92,0,0,0.16,517.15,3494.55,26128310,99.86,0,0,0.3,517.14,3494.57,26128311,99.88,0,0,0.15,517.13,3494.58,26128312,99.67,0,0,0.49,517.46,3494.25,26128313,99.89,0,0,0.21,517.15,3494.55,26128314,99.9,0,0,0.15,517.27,3494.42,26128315,99.76,0,0,0.29,516.56,3495.16,26128316,99.89,0,0,0.16,516.51,3495.2,26128317,99.75,0.01,0.04,0.64,517.09,3494.62,26128318,99.9,0,0,0.15,516.13,3495.57,26128319,99.9,0,0,0.15,516.17,3495.52,26128320,99.78,0,0.01,0.29,516.78,3494.93,26128321,99.9,0,0,0.14,516.76,3494.95,26128322,99.73,0,0,0.58,517.11,3494.6,26128323,99.89,0,0,0.14,515.73,3495.97,26128324,99.9,0,0,0.14,515.7,3496,26128325,99.85,0,0,0.31,516.44,3495.27,26128326,99.9,0,0,0.14,516.42,3495.29,26128327,99.94,0,0,0.2,516.41,3495.3,26128328,99.79,0,0,0.55,517.68,3494.02,26128329,99.72,0,0,0.46,517.13,3494.55,26128330,99.83,0,0,0.28,516.84,3494.85,26128331,99.89,0,0,0.14,516.28,3495.41,26128332,99.85,0,0,0.16,516.26,3495.43,26128333,99.73,0,0,0.55,517.06,3494.62,26128334,99.87,0,0,0.16,516.71,3494.98,26128335,99.78,0,0,0.32,515.52,3496.19,26128336,99.83,0,0,0.15,515.45,3496.25,26128337,99.87,0,0,0.21,515.19,3496.51,26128338,99.71,0,0,0.58,516.9,3494.8,26128339,99.89,0,0,0.14,516.86,3494.83,26128340,99.75,0,0,0.27,515.68,3496.03,26128341,99.9,0,0,0.14,515.51,3496.2,26128342,99.9,0,0,0.15,515.54,3496.16,26128343,99.77,0,0,0.55,516.33,3495.37,26128344,99.89,0.02,0.84,0.16,516.22,3495.47,26128345,99.81,0.03,1.47,0.43,515.68,3496.02,26128346,99.87,0,0,0.2,515.64,3496.05,26128347,99.85,0,0,0.2,515.69,3496,26128348,99.69,0,0,0.63,516.82,3494.87,26128349,99.93,0,0,0.17,516.54,3495.15,26128350,99.85,0,0,0.32,516.78,3494.92,26128351,99.92,0,0,0.16,516.77,3494.93,26128352,99.88,0,0,0.17,516.74,3494.95,26128353,99.78,0,0,0.59,517.36,3494.33,26128354,99.89,0,0,0.17,516.69,3495,26128355,99.74,0,0,0.34,516.69,3495.01,26128356,99.8,0,0,0.22,516.42,3495.27,26128357,99.89,0,0,0.16,516.4,3495.29,26128358,99.78,0,0,0.46,516.91,3494.77,26128359,99.71,0,0,0.46,517.03,3494.62,26128360,99.76,0,0,0.31,516.79,3494.89,26128361,99.88,0.08,3.11,0.42,516.75,3494.9,26128362,99.9,0,0,0.19,516.71,3494.93,26128363,99.89,0,0,0.17,516.69,3494.94,26128364,99.72,0,0,0.57,516.31,3495.32,26128365,99.8,0,0,0.4,515.73,3495.92,26128366,99.89,0,0,0.19,515.66,3495.98,26128367,99.87,0,0,0.19,515.64,3495.99,26128368,99.86,0,0,0.18,515.62,3496.01,26128369,99.78,0,0,0.57,516.52,3495.1,26128370,99.76,0,0,0.36,515.39,3496.26,26128371,99.92,0,0,0.2,515.32,3496.32,26128372,99.83,0,0,0.21,515.39,3496.24,26128373,99.92,0,0,0.2,515.47,3496.16,26128374,99.67,0.03,2.32,0.86,515.94,3495.69,26128375,99.81,0.01,0.99,0.54,517.09,3494.54,26128376,99.72,0.02,1.71,0.33,517.16,3494.46,26128377,99.89,0,0.01,0.25,517.15,3494.46,26128378,99.85,0.01,1.8,0.38,517.14,3494.45,26128379,99.72,0,0.01,0.63,517.34,3494.24,26128380,99.79,0,0,0.3,516.64,3494.96,26128381,99.86,0,0,0.16,516.6,3494.99,26128382,99.72,0.01,0.64,0.2,516.59,3495,26128383,99.88,0,0.03,0.26,516.7,3494.88,26128384,99.75,0,0,0.45,517.22,3494.35,26128385,99.78,0,0.06,0.49,516.9,3494.68,26128386,99.87,0,0,0.19,516.84,3494.75,26128387,99.89,0,0,0.16,516.81,3494.77,26128388,99.9,0,0,0.2,516.77,3494.8,26128389,99.52,0,0,0.55,517.48,3494.07,26128390,99.76,0,0,0.45,515.97,3495.6,26128391,99.93,0,0,0.17,515.92,3495.64,26128392,99.91,0.01,0.01,0.18,515.88,3495.68,26128393,99.85,0,0,0.16,515.85,3495.7,26128394,99.72,0,0,0.43,516.51,3495.04,26128395,99.75,0,0,0.44,516.81,3494.75,26128396,99.81,0,0,0.18,516.78,3494.78,26128397,99.85,0,0,0.19,516.6,3494.96,26128398,99.83,0,0,0.17,516.68,3494.87,26128399,99.42,0.25,1.12,1.57,517.83,3493.29,26128400,98.66,2.34,71.97,1.73,520.29,3489.99,26128401,99.3,1.08,29.07,0.95,519.9,3490.27,26128402,99.32,1.92,62.7,0.65,519.91,3490.23,26128403,99.87,0,0.01,0.24,519.86,3490.27,26128404,99.78,2.03,2.39,2.41,519.57,3489.4,26128405,99.57,0.02,0.02,0.8,520.63,3487.97,26128406,99.86,0.04,0.08,0.36,520.28,3488.32,26128407,99.88,0.02,0.05,0.29,520.32,3488.28,26128408,99.89,0.03,0.04,0.23,520.28,3488.33,26128409,99.87,0.03,0.04,0.26,520.36,3488.25,26128410,99.61,0.03,0.05,0.86,520.87,3487.75,26128411,99.88,0.01,0.03,0.27,520.55,3488.09,26128412,99.83,0.07,0.12,0.37,520.55,3488.07,26128413,99.86,0.03,0.04,0.29,520.56,3488.06,26128414,80.66,0.04,0.3,6.99,840.3,3167.95,26128415,99.22,0.03,0.1,0.96,854.22,3153.83,26128416,99.79,0.01,0.03,0.24,570.05,3437.99,26128417,99.88,0.01,0,0.23,570.01,3438.02,26128418,99.83,0.02,0.35,0.26,570.11,3437.91,26128419,99.67,0.17,0.11,0.38,571.41,3436.54,26128420,80.13,0.06,1.53,5.18,848.16,3159.64,26128421,85.35,0.02,0.05,1.18,1006.16,3001.61,26128422,94.65,0.06,2.12,3.63,1037.87,2969.92,26128423,99.61,0.01,0.04,0.33,834.19,3173.59,26128424,99.86,0,0,0.25,570.75,3437.02,26128425,99.55,0.01,0.01,0.83,572.12,3435.66,26128426,80.51,0.04,0.86,4.42,810.85,3196.89,26128427,99.85,0.02,0,0.33,1016.85,2990.92,26128428,99.64,0.01,0,0.24,630.81,3376.96,26128429,81.23,0.03,0.9,4.44,937.03,3070.7,26128430,99.37,0,0,0.68,895.54,3112.24,26128431,99.86,0.03,0.79,0.35,572.21,3435.56,26128432,99.16,0.01,0.04,0.26,572.43,3435.33,26128433,80.53,0.02,0.03,4.47,1031.16,2976.56,26128434,80.9,0.07,1.64,4.44,1031.18,2976.53,26128435,99.59,0.02,0.9,0.65,1040.95,2966.8,26128436,99.65,0,0,0.39,619.34,3388.4,26128437,99.86,0,0,0.16,572.4,3435.34,26128438,99.9,0,0,0.15,572.49,3435.24,26128439,99.85,0,0,0.15,572.54,3435.18,26128440,99.76,0,0,0.31,571.13,3436.62,26128441,99.68,0,0,0.55,574.23,3433.51,26128442,99.86,0,0.03,0.14,573.73,3434.01,26128443,99.88,0,0,0.2,573.68,3434.05,26128444,99.88,0,0,0.14,573.66,3434.07,26128445,99.75,0,0,0.31,573.9,3433.84,26128446,94.89,0.46,0.02,261.02,584.41,3423.65,26128447,99.85,0,0,0.3,576.57,3430.91,26128448,99.85,0,0,0.16,576.55,3430.92,26128449,99.55,0,0,0.34,576.63,3430.82,26128450,99.79,0,0,0.32,576.94,3430.51,26128451,99.7,0,0,0.63,575.89,3431.58,26128452,99.83,0,0,0.16,574.28,3433.2,26128453,99.86,0,0,0.14,573.51,3433.98,26128454,99.85,0,0,0.15,573.49,3434.02,26128455,99.69,0,0,0.3,573.26,3434.28,26128456,99.66,0,0,0.52,573.68,3433.84,26128457,99.83,0,0,0.27,573.93,3433.6,26128458,99.85,0,0,0.14,573.91,3433.61,26128459,99.86,0,0,0.16,573.89,3433.62,26128460,99.73,0,0,0.33,573.49,3434.04,26128461,99.69,0,0,0.46,574.19,3433.33,26128462,99.85,0,0,0.28,574.27,3433.25,26128463,99.85,0,0,0.16,574.24,3433.27,26128464,99.8,0,0,0.15,574.22,3433.28,26128465,99.6,0,0,0.31,573.01,3434.51,26128466,99.67,0,0,0.56,573.6,3433.92,26128467,99.84,0,0,0.19,574.16,3433.35,26128468,99.84,0,0,0.14,574.15,3433.36,26128469,99.83,0,0,0.15,574.13,3433.38,26128470,99.74,0,0,0.31,573.87,3433.65,26128471,99.69,0,0,0.37,574.5,3433.02,26128472,99.8,0,0,0.38,574.3,3433.22,26128473,99.83,0,0,0.14,574.26,3433.25,26128474,99.82,0,0,0.16,574.24,3433.27,26128475,99.74,0,0,0.31,574.24,3433.28,26128476,99.79,0,0,0.19,573.78,3433.74,26128477,99.62,0,0,0.57,574.49,3433.03,26128478,99.81,0,0,0.15,573.92,3433.59,26128479,99.6,0,0,0.27,574.39,3433.1,26128480,99.65,0,0,0.3,573.76,3433.75,26128481,99.73,0,0,0.15,573.81,3433.69,26128482,99.54,0,0,0.59,573.48,3434.02,26128483,99.8,0,0,0.15,572.8,3434.69,26128484,99.83,0,0,0.14,572.77,3434.71,26128485,99.73,0,0,0.3,574.18,3433.32,26128486,99.75,0,0,0.16,573.74,3433.76,26128487,99.65,0,0,0.57,574.35,3433.14,26128488,99.86,0,0,0.18,573.88,3433.61,26128489,99.78,0,0,0.16,573.19,3434.29,26128490,99.75,0,0,0.31,572.09,3435.41,26128491,99.86,0,0,0.16,571.95,3435.56,26128492,99.61,0,0,0.59,572.36,3435.15,26128493,99.84,0,0,0.14,572.09,3435.41,26128494,99.82,0,0,0.14,572.07,3435.44,26128495,99.74,0,0,0.3,573.73,3433.79,26128496,99.86,0,0,0.16,573.76,3433.75,26128497,99.71,0,0,0.58,574.17,3433.34,26128498,99.85,0,0,0.17,572.74,3434.77,26128499,99.87,0,0,0.14,572.73,3434.78,26128500,99.67,0,0,0.29,573.93,3433.6,26128501,99.87,0,0,0.14,573.94,3433.58,26128502,99.49,0.02,0.83,0.46,574.47,3433.05,26128503,99.83,0,0.01,0.36,573.45,3434.05,26128504,99.8,0,0,0.15,573.56,3433.94,26128505,99.72,0,0,0.32,573.56,3433.93,26128506,99.81,0,0,0.17,573.54,3433.95,26128507,99.67,0,0,0.39,573.44,3434.04,26128508,99.84,0,0,0.36,572.01,3435.47,26128509,99.58,0,0,0.28,573.45,3433.99,26128510,99.74,0,0,0.34,573.72,3433.74,26128511,99.82,0,0,0.19,573.68,3433.78,26128512,99.82,0,0,0.18,573.66,3433.79,26128513,99.67,0,0,0.55,573.79,3433.65,26128514,99.81,0,0,0.14,573.31,3434.14,26128515,99.69,0,0,0.3,572.82,3434.62,26128516,99.82,0,0,0.16,572.79,3434.65,26128517,99.87,0,0,0.2,573.01,3434.42,26128518,99.7,0,0,0.55,574.23,3433.2,26128519,99.78,0,0,0.18,574.21,3433.22,26128520,99.74,0,0,0.3,573.28,3434.16,26128521,99.82,0,0,0.16,573.21,3434.22,26128522,99.77,0,0,0.15,573.19,3434.24,26128523,99.73,0,0,0.52,574.04,3433.39,26128524,99.84,0,0,0.2,574.12,3433.3,26128525,99.79,0,0,0.3,574.75,3432.69,26128526,99.86,0,0,0.15,573.83,3433.6,26128527,99.81,0,0,0.16,573.78,3433.65,26128528,99.73,0,0,0.47,574.12,3433.31,26128529,99.83,0,0,0.27,573.74,3433.68,26128530,99.8,0,0,0.32,573.75,3433.7,26128531,99.7,0,0,0.15,573.73,3433.71,26128532,99.85,0,0,0.15,573.71,3433.72,26128533,99.75,0,0,0.59,573.6,3433.83,26128534,99.86,0,0,0.14,572.44,3434.99,26128535,99.83,0,0,0.3,573.4,3434.04,26128536,99.82,0,0,0.17,573.83,3433.61,26128537,99.85,0,0,0.16,574,3433.44,26128538,99.7,0,0,0.41,574.34,3433.09,26128539,99.7,0,0,0.41,574.51,3432.9,26128540,99.79,0,0,0.3,574.52,3432.9,26128541,99.87,0,0,0.17,574.5,3432.92,26128542,99.88,0,0,0.14,574.48,3432.94,26128543,99.72,0,0,0.33,574.82,3432.59,26128544,99.83,0,0,0.41,574.44,3432.97,26128545,99.76,0,0,0.32,573.36,3434.07,26128546,99.88,0,0,0.16,572.93,3434.49,26128547,99.86,0,0,0.14,572.93,3434.49,26128548,99.89,0,0,0.14,573.08,3434.34,26128549,99.76,0,0,0.55,574.24,3433.18,26128550,98.84,0,0,0.33,574.04,3433.4,26128551,99.9,0,0,0.15,574.01,3433.43,26128552,99.86,0,0,0.14,573.99,3433.44,26128553,99.89,0,0,0.15,573.97,3433.46,26128554,99.73,0,0,0.56,574.52,3432.91,26128555,99.75,0,0,0.32,574.44,3433,26128556,99.81,0,0,0.16,574.44,3433,26128557,99.9,0,0,0.14,574.42,3433.01,26128558,99.91,0,0.02,0.17,574.45,3432.97,26128559,99.73,0,0,0.59,575.06,3432.37,26128560,99.71,0,0,0.34,574.81,3432.62,26128561,99.88,0,0,0.14,574.74,3432.69,26128562,99.91,0,0,0.16,574.72,3432.7,26128563,99.43,0,0,0.14,574.7,3432.72,26128564,99.8,0,0,0.6,575.05,3432.37,26128565,99.85,0,0,0.34,574.74,3432.69,26128566,99.89,0,0,0.14,573.93,3433.5,26128567,99.91,0,0,0.16,573.9,3433.52,26128568,99.9,0,0,0.15,573.89,3433.53,26128569,99.6,0,0,0.69,574.19,3433.21,26128570,99.8,0,0,0.38,572.02,3435.4,26128571,99.85,0,0,0.18,572.09,3435.32,26128572,99.85,0,0,0.18,572.07,3435.34,26128573,99.87,0,0,0.18,572.05,3435.35,26128574,99.71,0,0,0.45,573.08,3434.32,26128575,99.78,0,0,0.48,573.26,3434.15,26128576,99.86,0,0,0.18,573.41,3434,26128577,99.9,0,0,0.23,573.7,3433.71,26128578,99.88,0,0,0.18,573.68,3433.72,26128579,99.8,0,0,0.18,573.82,3433.57,26128580,99.66,0,0,0.68,575.03,3432.39,26128581,99.86,0,0,0.14,574.8,3432.61,26128582,99.88,0,0,0.16,574.79,3432.62,26128583,99.86,0,0,0.14,574.76,3432.64,26128584,99.9,0,0,0.15,574.74,3432.66,26128585,99.64,0,0,1.03,574.57,3432.86,26128586,99.86,0,0,0.14,573.41,3434.02,26128587,99.85,0.02,0.83,0.22,573.24,3434.18,26128588,99.84,0.01,0.11,0.19,573.22,3434.19,26128589,99.87,0.03,1.25,0.29,573.2,3434.2,26128590,99.58,0.01,0.01,0.99,574.38,3433.03,26128591,99.8,0,0,0.15,574.26,3433.15,26128592,99.84,0,0,0.17,574.23,3433.17,26128593,99.88,0,0,0.14,574.22,3433.18,26128594,99.84,0.08,2.22,0.27,574.19,3433.19,26128595,99.64,0,0,0.76,574.73,3432.67,26128596,99.84,0,0,0.2,574.01,3433.39,26128597,99.83,0.02,0.46,0.2,573.89,3433.49,26128598,99.86,0,0,0.15,573.84,3433.53,26128599,99.62,0.01,0.45,0.3,574.61,3432.74,26128600,99.62,0,0.01,0.75,574.35,3433.01,26128601,99.86,0,0,0.21,574.14,3433.22,26128602,99.91,0.01,0.03,0.16,574.1,3433.26,26128603,99.78,0.09,3.92,0.26,574.21,3433.13,26128604,99.86,0,0,0.18,574.16,3433.16,26128605,99.63,0,0,0.63,575.5,3431.85,26128606,99.85,0,0,0.29,574.63,3432.71,26128607,99.93,0,0,0.14,574.12,3433.21,26128608,99.88,0,0,0.15,574.1,3433.24,26128609,99.86,0,0,0.15,574.07,3433.25,26128610,98.36,0.01,0.05,0.65,574.81,3432.54,26128611,99.84,0,0.01,0.29,574.42,3432.92,26128612,99.83,0,0,0.25,574.37,3432.96,26128613,99.84,0,0.03,0.16,574.39,3432.93,26128614,99.85,0.01,0.27,0.21,574.4,3432.92,26128615,99.76,0,0,0.32,573.89,3433.45,26128616,99.7,0,0,0.62,574.82,3432.51,26128617,99.85,0,0,0.18,574.44,3432.89,26128618,99.9,0,0.01,0.2,574.39,3432.93,26128619,99.86,0,0,0.18,574.36,3432.95,26128620,99.7,0.01,0.45,0.36,575.1,3432.24,26128621,99.65,0,0.03,0.68,574.99,3432.34,26128622,99.88,0,0,0.14,574.47,3432.86,26128623,99.85,0,0,0.2,574.45,3432.87,26128624,99.8,0,0,0.16,574.43,3432.89,26128625,99.68,0.05,1.97,0.34,575.17,3432.16,26128626,99.68,0,0.1,0.68,575.5,3431.81,26128627,99.78,0,0.1,0.15,574.38,3432.92,26128628,99.76,0,0,0.14,574.32,3432.98,26128629,99.63,0,0,0.28,574.31,3432.97,26128630,99.76,0,0,0.32,574.42,3432.89,26128631,99.74,0.01,0,0.55,574.81,3432.5,26128632,99.79,0.01,0.05,0.23,574.68,3432.62,26128633,99.8,0,0,0.22,574.61,3432.68,26128634,99.85,0,0,0.15,574.59,3432.73,26128635,99.66,0,0.02,0.37,573.86,3433.48,26128636,99.65,0,0.01,0.59,574.88,3432.45,26128637,99.83,0,0.03,0.29,574.37,3432.95,26128638,99.8,0,0,0.15,574.35,3432.98,26128639,99.83,0,0,0.14,574.33,3432.99,26128640,99.73,0,0,0.31,573.93,3433.4,26128641,99.62,0,0,0.41,574.34,3432.99,26128642,99.83,0,0,0.3,574.29,3433.04,26128643,99.83,0,0,0.14,574.34,3432.98,26128644,99.81,0,0,0.15,574.43,3432.88,26128645,99.74,0,0,0.34,574.67,3432.66,26128646,99.68,0,0,0.59,574.97,3432.36,26128647,99.85,0,0,0.14,573.73,3433.59,26128648,99.83,0,0,0.14,573.63,3433.68,26128649,99.79,0,0,0.14,573.6,3433.71,26128650,99.67,0,0,0.36,573.6,3433.72,26128651,99.7,0,0,0.46,574,3433.32,26128652,99.82,0,0,0.27,574.06,3433.25,26128653,99.82,0,0,0.15,574.04,3433.28,26128654,99.8,0,0,0.17,574.01,3433.3,26128655,99.75,0,0,0.34,574.4,3432.93,26128656,99.8,0,0.02,0.21,574.02,3433.3,26128657,99.64,0,0,0.62,574.23,3433.08,26128658,99.79,0,0.01,0.18,573.84,3433.46,26128659,99.74,0,0.02,0.3,574.54,3432.74,26128660,99.69,0,0,0.32,574.28,3433.02,26128661,99.79,0.01,0.05,0.19,574.29,3433,26128662,99.64,0.01,0.29,0.66,575.21,3432.07,26128663,99.8,0,0.07,0.18,574.77,3432.51,26128664,99.77,0,0.01,0.16,574.71,3432.56,26128665,99.78,0,0,0.34,574.61,3432.67,26128666,99.83,0,0,0.14,574.63,3432.65,26128667,99.7,0,0,0.57,574.69,3432.59,26128668,99.82,0.02,0.5,0.29,574.09,3433.18,26128669,99.81,0,0.16,0.17,574.04,3433.22,26128670,99.74,0,0.01,0.34,574.01,3433.26,26128671,99.8,0,0.01,0.16,574,3433.27,26128672,99.61,0,0.04,0.62,574.43,3432.82,26128673,99.83,0,0,0.21,574.06,3433.18,26128674,99.81,0,0,0.15,574.04,3433.21,26128675,99.69,0,0,0.33,574.53,3432.73,26128676,99.78,0,0.03,0.23,574.46,3432.79,26128677,99.64,0,0,0.47,575.23,3432.02,26128678,99.78,0,0,0.26,574.61,3432.63,26128679,99.83,0,0,0.14,574.59,3432.65,26128680,99.74,0,0,0.32,574.58,3432.68,26128681,99.76,0,0,0.17,574.56,3432.7,26128682,99.58,0,0,0.51,575.1,3432.15,26128683,99.84,0,0,0.2,574.75,3432.49,26128684,98.52,0,0,0.14,574.73,3432.51,26128685,99.76,0,0,0.36,574.96,3432.29,26128686,99.79,0,0,0.16,574.96,3432.29,26128687,99.65,0,0,0.41,574.96,3432.28,26128688,99.8,0,0,0.29,573.52,3433.72,26128689,99.77,0,0,0.32,574.09,3433.12,26128690,99.77,0,0,0.34,574.34,3432.9,26128691,99.83,0,0,0.13,574.32,3432.91,26128692,99.57,0.02,0.42,0.48,574.62,3432.6,26128693,99.78,0,0,0.28,574.23,3432.99,26128694,99.76,0,0,0.17,574.19,3433.02,26128695,99.59,0,0,0.32,574.62,3432.61,26128696,99.79,0,0,0.16,574.59,3432.64,26128697,99.76,0,0,0.19,574.57,3432.65,26128698,99.68,0,0,0.55,573.97,3433.24,26128699,99.79,0,0,0.14,573.56,3433.66,26128700,99.74,0,0,0.32,574.74,3432.49,26128701,99.81,0,0,0.14,574.76,3432.46,26128702,99.82,0,0,0.14,574.74,3432.48,26128703,99.65,0,0,0.57,575.27,3431.95,26128704,99.75,0,0,0.14,574.94,3432.27,26128705,99.76,0,0,0.32,574.47,3432.76,26128706,99.74,0,0,0.16,574.52,3432.71,26128707,99.8,0,0,0.14,574.6,3432.62,26128708,99.7,0,0,0.59,574.08,3433.13,26128709,99.8,0,0,0.18,573.58,3433.63,26128710,99.76,0,0,0.36,573.34,3433.89,26128711,99.79,0,0,0.12,573.31,3433.91,26128712,99.82,0,0,0.16,573.29,3433.93,26128713,99.66,0,0,0.58,574.38,3432.83,26128714,99.81,0,0,0.16,574.23,3432.98,26128715,99.66,0,0,0.34,574.47,3432.75,26128716,99.8,0,0,0.17,574.27,3432.95,26128717,99.78,0,0,0.16,574.2,3433.02,26128718,99.66,0,0,0.58,574.66,3432.55,26128719,99.72,0,0,0.28,574.87,3432.32,26128720,99.69,0,0,0.3,573.63,3433.57,26128721,99.81,0,0,0.14,573.59,3433.61,26128722,99.79,0,0,0.16,573.56,3433.63,26128723,99.69,0,0,0.41,574.06,3433.13,26128724,99.8,0,0,0.29,573.77,3433.42,26128725,99.68,0,0,0.4,574.98,3432.24,26128726,99.83,0,0,0.16,574.98,3432.23,26128727,99.79,0,0,0.14,574.95,3432.26,26128728,99.79,0,0,0.15,574.49,3432.72,26128729,99.64,0,0,0.57,574.62,3432.58,26128730,99.72,0,0,0.31,573.4,3433.81,26128731,99.78,0,0,0.22,555.32,3452.01,26128732,99.8,0,0,0.21,516.96,3490.71,26128733,99.83,0,0,0.14,516.95,3490.72,26128734,99.68,0,0,0.56,517.46,3490.21,26128735,99.72,0,0,0.32,518.13,3489.55,26128736,99.82,0,0,0.16,518.14,3489.55,26128737,99.81,0,0,0.14,518.13,3489.57,26128738,99.8,0,0,0.15,518.1,3489.59,26128739,99.69,0,0,0.61,518,3489.68,26128740,99.7,0,0,0.31,518.25,3489.46,26128741,99.77,0,0,0.14,518.24,3489.47,26128742,99.82,0,0,0.16,518.22,3489.49,26128743,99.78,0,0,0.14,518.2,3489.51,26128744,99.69,0,0,0.63,517.95,3489.75,26128745,99.77,0,0,0.37,517.67,3490.04,26128746,99.8,0,0,0.18,517.65,3490.06,26128747,99.8,0,0,0.15,517.63,3490.08,26128748,99.81,0,0,0.16,517.61,3490.09,26128749,99.53,0,0,0.64,518.42,3489.25,26128750,99.67,0,0,0.36,518.17,3489.52,26128751,99.82,0,0,0.16,518.28,3489.41,26128752,99.82,0,0,0.14,518.26,3489.43,26128753,99.8,0,0,0.15,518.24,3489.45,26128754,99.63,0,0,0.51,518.4,3489.27,26128755,99.74,0,0,0.41,517.95,3489.74,26128756,99.83,0,0,0.14,517.96,3489.72,26128757,99.76,0,0,0.21,517.94,3489.75,26128758,99.81,0,0,0.14,517.91,3489.76,26128759,99.65,0,0,0.34,518.26,3489.41,26128760,99.72,0,0,0.53,517.17,3490.52,26128761,99.81,0,0,0.16,517.13,3490.55,26128762,99.79,0,0,0.15,517.19,3490.49,26128763,99.82,0,0,0.14,517.27,3490.4,26128764,99.84,0,0,0.15,517.26,3490.41,26128765,99.5,0,0,0.73,518.4,3489.29,26128766,99.84,0,0,0.16,517.98,3489.7,26128767,99.82,0,0,0.14,517.95,3489.72,26128768,99.8,0,0,0.16,517.94,3489.74,26128769,99.81,0,0,0.15,517.91,3489.75,26128770,99.46,0,0,0.73,518.21,3489.47,26128771,99.82,0,0,0.16,517.65,3490.03,26128772,99.82,0,0,0.17,517.62,3490.05,26128773,99.82,0,0,0.14,517.61,3490.06,26128774,99.82,0,0,0.16,517.66,3490.01,26128775,99.58,0,0,0.74,518.02,3489.67,26128776,99.79,0,0,0.19,517.57,3490.13,26128777,99.84,0,0,0.17,517.49,3490.2,26128778,99.8,0,0,0.14,517.46,3490.22,26128779,99.73,0,0,0.28,518.17,3489.49,26128780,99.54,0,0,0.76,519.02,3488.65,26128781,99.77,0,0,0.18,518.65,3489.03,26128782,99.78,0,0,0.14,518.62,3489.05,26128783,99.8,0,0,0.14,518.6,3489.06,26128784,99.83,0,0,0.14,518.59,3489.09,26128785,99.62,0,0,0.59,518.62,3489.08,26128786,99.83,0,0,0.3,518.22,3489.47,26128787,99.78,0,0,0.15,518.24,3489.45,26128788,99.83,0,0,0.14,518.22,3489.47,26128789,99.84,0,0,0.15,518.19,3489.49,26128790,99.62,0,0,0.78,518.86,3488.84,26128791,99.81,0,0,0.18,518.66,3489.03,26128792,99.82,0,0,0.18,518.64,3489.04,26128793,99.83,0,0,0.16,518.62,3489.06,26128794,99.82,0,0,0.14,518.61,3489.07,26128795,99.62,0,0,0.64,518.55,3489.15,26128796,99.84,0,0,0.33,517.61,3490.09,26128797,99.84,0,0,0.18,517.66,3490.03,26128798,99.83,0,0,0.18,517.75,3489.93,26128799,99.8,0,0,0.17,517.73,3489.95,26128800,99.49,0,0,0.55,517.59,3490.11,26128801,99.81,0,0,0.37,517.71,3489.98,26128802,99.76,0,0,0.14,517.7,3489.98,26128803,99.8,0,0,0.15,517.68,3490.01,26128804,99.8,0,0,0.13,517.65,3490.03,26128805,99.75,0,0,0.33,517.71,3489.99,26128806,99.68,0,0,0.59,518.17,3489.53,26128807,99.82,0,0,0.18,517.61,3490.08,26128808,99.84,0,0,0.16,517.59,3490.09,26128809,99.74,0,0,0.27,517.63,3490.03,26128810,99.76,0,0,0.37,517.76,3489.91,26128811,94.64,0.31,0.01,260.4,530.02,3478.25,26128812,99.88,0,0,0.3,520.55,3486.95,26128813,99.84,0,0,0.14,520.53,3486.96,26128814,99.81,0,0,0.14,520.51,3486.99,26128815,99.72,0,0,0.37,519.32,3488.2,26128816,99.71,0,0,0.63,518.43,3489.12,26128817,99.83,0,0,0.19,517.07,3490.49,26128818,99.87,0,0,0.14,517.04,3490.51,26128819,99.83,0,0,0.15,517.11,3490.44,26128820,99.85,0,0,0.32,517.46,3490.11,26128821,99.78,0,0,0.5,518.07,3489.5,26128822,99.86,0,0,0.21,517.92,3489.64,26128823,99.92,0,0,0.14,517.91,3489.65,26128824,99.89,0,0,0.14,517.88,3489.68,26128825,99.83,0,0,0.32,517.9,3489.67,26128826,99.78,0,0,0.57,518.13,3489.44,26128827,99.88,0,0,0.2,517.61,3489.95,26128828,99.87,0,0,0.18,517.59,3489.97,26128829,99.91,0,0,0.19,517.57,3489.98,26128830,99.77,0,0,0.33,517.81,3489.76,26128831,99.73,0,0.01,0.52,518.58,3488.98,26128832,99.88,0,0,0.19,518.18,3489.39,26128833,99.89,0,0,0.15,518.16,3489.41,26128834,99.88,0,0,0.15,518.14,3489.43,26128835,99.75,0,0,0.34,516.69,3490.9,26128836,99.73,0,0,0.36,517,3490.58,26128837,99.87,0,0,0.44,517.12,3490.46,26128838,99.91,0,0,0.14,517.1,3490.47,26128839,99.76,0,0,0.31,518.05,3489.5,26128840,99.77,0,0,0.37,516.94,3490.63,26128841,99.76,0,0,0.33,517.17,3490.39,26128842,99.86,0,0,0.43,517.53,3490.03,26128843,99.91,0,0,0.16,517.59,3489.96,26128844,99.87,0,0,0.15,517.67,3489.91,26128845,99.76,0,0,0.36,517.91,3489.69,26128846,99.91,0,0,0.14,517.89,3489.7,26128847,99.7,0,0,0.55,517.79,3489.79,26128848,99.87,0,0,0.16,517.35,3490.24,26128849,99.87,0,0,0.15,517.33,3490.25,26128850,99.83,0,0,0.32,518.05,3489.54,26128851,99.9,0,0,0.17,518.04,3489.55,26128852,99.76,0,0,0.55,517.52,3490.07,26128853,99.85,0,0,0.15,516.77,3490.81,26128854,99.93,0,0,0.16,516.83,3490.75,26128855,99.78,0,0,0.34,516.94,3490.66,26128856,99.85,0,0,0.13,516.92,3490.68,26128857,99.76,0,0,0.52,518.34,3489.24,26128858,99.9,0,0,0.19,518.35,3489.23,26128859,99.88,0,0,0.15,518.34,3489.26,26128860,99.74,0,0,0.37,518.1,3489.51,26128861,99.91,0,0,0.13,518.07,3489.55,26128862,99.71,0,0,0.61,518.52,3489.08,26128863,99.9,0,0,0.18,518.03,3489.58,26128864,99.9,0,0,0.14,518,3489.6,26128865,99.82,0,0,0.33,518.29,3489.33,26128866,98.57,0,0,0.15,518.42,3489.2,26128867,99.79,0,0,0.57,518.62,3488.99,26128868,99.88,0,0,0.16,517.64,3489.97,26128869,99.81,0,0,0.34,518.09,3489.49,26128870,99.85,0,0,0.36,518.1,3489.49,26128871,99.88,0,0,0.18,518.07,3489.52,26128872,99.86,0,0,0.14,518.04,3489.54,26128873,99.71,0,0,0.58,518.62,3488.96,26128874,99.88,0,0,0.14,518.24,3489.33,26128875,99.81,0,0,0.32,518.24,3489.35,26128876,99.89,0,0,0.16,518.34,3489.25,26128877,99.86,0,0,0.19,518.14,3489.44,26128878,99.76,0,0,0.64,518.66,3488.91,26128879,99.9,0,0,0.18,518.32,3489.24,26128880,99.73,0,0.01,0.38,517.6,3489.98,26128881,99.82,0,0,0.18,517.26,3490.31,26128882,99.92,0,0,0.18,517.23,3490.34,26128883,99.75,0,0,0.62,518.32,3489.25,26128884,99.91,0,0,0.17,518.15,3489.41,26128885,99.79,0,0,0.33,517.18,3490.39,26128886,99.93,0,0,0.16,517.13,3490.44,26128887,99.91,0,0,0.14,517.11,3490.46,26128888,99.75,0,0,0.58,517.93,3489.64,26128889,99.81,0,0,0.18,517.8,3489.76,26128890,99.78,0,0,0.37,518.04,3489.54,26128891,99.89,0,0,0.18,518.02,3489.55,26128892,99.89,0,0,0.16,518,3489.57,26128893,99.68,0,0,0.5,518.27,3489.3,26128894,99.92,0,0,0.19,517.9,3489.66,26128895,99.79,0,0,0.36,518.39,3489.19,26128896,99.9,0,0.01,0.18,518.2,3489.37,26128897,99.91,0,0,0.13,518.08,3489.49,26128898,99.74,0,0,0.57,518.66,3488.91,26128899,99.66,0,0,0.3,518.04,3489.5,26128900,99.8,0,0,0.33,518.27,3489.28,26128901,99.88,0,0,0.16,518.24,3489.31,26128902,99.83,0,0,0.14,518.23,3489.32,26128903,99.78,0,0.01,0.45,518.68,3488.87,26128904,99.88,0,0,0.31,518.33,3489.21,26128905,99.83,0,0,0.36,518.33,3489.23,26128906,99.91,0,0,0.13,518.29,3489.26,26128907,99.88,0,0,0.16,518.27,3489.28,26128908,99.91,0,0,0.14,518.25,3489.3,26128909,99.79,0,0,0.55,518.35,3489.19,26128910,99.79,0,0,0.35,517.38,3490.18,26128911,99.91,0,0,0.14,517.41,3490.14,26128912,99.93,0,0,0.19,517.38,3490.17,26128913,99.92,0,0,0.16,517.35,3490.2,26128914,99.77,0,0,0.56,518.65,3488.89,26128915,99.83,0,0,0.36,518.31,3489.24,26128916,99.9,0,0,0.14,518.29,3489.26,26128917,99.93,0,0,0.16,518.27,3489.28,26128918,99.9,0,0,0.19,518.25,3489.29,26128919,99.75,0,0,0.6,518.59,3488.95,26128920,99.78,0,0,0.32,518,3489.56,26128921,99.82,0,0,0.16,518.05,3489.5,26128922,99.81,0,0,0.14,518.14,3489.41,26128923,99.86,0,0,0.15,518.11,3489.43,26128924,99.73,0,0,0.57,518.6,3488.94,26128925,99.75,0,0,0.37,517.85,3489.71,26128926,99.9,0,0,0.17,517.82,3489.74,26128927,99.92,0,0,0.14,517.79,3489.76,26128928,99.92,0,0,0.19,517.77,3489.77,26128929,99.56,0,0,0.71,519.07,3488.45,26128930,99.76,0,0,0.35,518.47,3489.06,26128931,99.89,0,0,0.16,518.54,3488.99,26128932,99.88,0,0,0.14,518.61,3488.91,26128933,99.88,0,0,0.14,518.6,3488.93,26128934,99.76,0,0,0.51,519.05,3488.49,26128935,99.81,0,0,0.45,518.59,3488.96,26128936,99.92,0,0,0.18,518.55,3489,26128937,99.89,0,0,0.22,518.55,3489,26128938,99.93,0,0,0.17,518.52,3489.03,26128939,99.73,0,0,0.51,518.82,3488.73,26128940,99.78,0,0,0.38,518.58,3488.99,26128941,99.88,0,0,0.14,518.47,3489.09,26128942,99.89,0,0,0.16,518.45,3489.11,26128943,99.93,0,0,0.15,518.58,3488.98,26128944,99.77,0,0,0.59,518.97,3488.58,26128945,99.84,0,0,0.37,518.35,3489.21,26128946,99.9,0,0,0.19,518.33,3489.24,26128947,99.91,0,0,0.18,518.3,3489.26,26128948,99.92,0,0,0.18,518.28,3489.27,26128949,99.93,0,0,0.18,518.26,3489.29,26128950,99.5,0,0,0.79,517.9,3489.67,26128951,99.88,0,0,0.18,516.27,3491.29,26128952,99.9,0,0,0.18,516.25,3491.31,26128953,99.94,0,0,0.19,516.23,3491.32,26128954,99.94,0,0,0.18,516.31,3491.24,26128955,99.69,0,0,0.77,518.48,3489.09,26128956,99.84,0,0,0.21,517.58,3489.99,26128957,99.92,0,0,0.14,517.38,3490.18,26128958,99.93,0,0,0.15,517.35,3490.21,26128959,99.79,0,0,0.28,517.82,3489.71,26128960,99.72,0,0,0.78,518.27,3489.28,26128961,99.87,0,0,0.15,517.81,3489.74,26128962,99.92,0,0,0.17,517.78,3489.76,26128963,99.93,0,0,0.14,517.77,3489.77,26128964,99.93,0,0,0.17,517.74,3489.79,26128965,99.68,0,0,0.78,517.9,3489.65,26128966,99.94,0,0,0.16,517.05,3490.5,26128967,99.92,0,0,0.14,517.16,3490.38,26128968,99.9,0,0,0.14,517.15,3490.39,26128969,99.85,0,0,0.16,517.11,3490.42,26128970,99.65,0,0,0.73,517.57,3489.98,26128971,99.92,0,0,0.14,518.09,3489.46,26128972,99.9,0,0,0.16,518.06,3489.48,26128973,99.11,0,0,0.14,518.05,3489.49,26128974,99.91,0,0,0.15,518.02,3489.52,26128975,99.71,0,0,0.79,517.53,3490.02,26128976,99.9,0,0,0.15,517.75,3489.8,26128977,99.93,0,0,0.14,517.78,3489.76,26128978,99.92,0,0,0.14,517.9,3489.64,26128979,99.94,0,0,0.15,517.88,3489.66,26128980,99.54,0,0,0.71,517.6,3489.95,26128981,99.88,0,0,0.2,517.85,3489.69,26128982,99.92,0,0,0.16,517.83,3489.71,26128983,99.95,0,0,0.14,517.81,3489.72,26128984,99.9,0,0,0.14,517.79,3489.74,26128985,99.78,0,0,0.33,516.84,3490.7,26128986,99.69,0,0,0.57,518.07,3489.47,26128987,99.93,0,0,0.16,517.75,3489.78,26128988,99.92,0,0,0.14,517.73,3489.8,26128989,99.68,0,0,0.28,517.96,3489.55,26128990,99.8,0,0,0.33,518.34,3489.19,26128991,99.75,0,0,0.59,518.35,3489.17,26128992,99.88,0,0,0.14,517.85,3489.66,26128993,99.89,0,0,0.16,517.82,3489.69,26128994,99.88,0,0,0.15,517.81,3489.74,26128995,99.83,0,0,0.33,518.29,3489.28,26128996,99.74,0,0,0.55,518.49,3489.08,26128997,99.9,0,0,0.22,517.77,3489.8,26128998,99.9,0,0,0.14,517.73,3489.83,26128999,99.88,0,0,0.14,517.72,3489.84,26129000,99.78,0,0,0.32,517.81,3489.77,26129001,99.75,0,0,0.6,518.35,3489.23,26129002,99.88,0,0,0.16,518.12,3489.48,26129003,99.86,0,0,0.15,518.09,3489.5,26129004,99.89,0,0,0.14,518.07,3489.52,26129005,99.79,0,0,0.33,517.82,3489.78,26129006,99.79,0,0,0.48,518.25,3489.35,26129007,99.89,0,0,0.26,518.03,3489.56,26129008,99.9,0,0,0.15,518,3489.58,26129009,99.88,0,0,0.14,517.98,3489.6,26129010,99.81,0,0,0.31,517.1,3490.49,26129011,99.72,0,0,0.43,517.83,3489.77,26129012,99.91,0,0,0.29,517.84,3489.75,26129013,99.9,0,0,0.15,517.86,3489.72,26129014,99.85,0,0,0.15,517.84,3489.74,26129015,99.77,0,0,0.36,517.85,3489.75,26129016,99.87,0,0,0.21,517.53,3490.06,26129017,99.7,0,0,0.56,518.19,3489.39,26129018,99.9,0,0,0.14,517.55,3490.03,26129019,99.74,0,0,0.27,518.23,3489.33,26129020,99.74,0,0,0.3,517.79,3489.78,26129021,99.88,0,0,0.17,517.75,3489.82,26129022,99.73,0,0,0.56,518.46,3489.11,26129023,99.84,0,0,0.14,518.2,3489.37,26129024,99.88,0,0,0.15,518.28,3489.3,26129025,99.77,0,0,0.34,517.65,3489.94,26129026,99.9,0,0,0.14,517.62,3489.97,26129027,99.71,0,0,0.58,517.95,3489.64,26129028,99.86,0,0,0.14,517.58,3490,26129029,99.85,0,0,0.14,517.56,3490.02,26129030,99.76,0,0,0.3,518.29,3489.31,26129031,99.88,0,0,0.17,518.27,3489.32,26129032,99.74,0,0,0.55,518.02,3489.56,26129033,99.85,0,0,0.15,517.25,3490.33,26129034,99.91,0,0,0.13,517.24,3490.34,26129035,99.77,0,0,0.32,517.96,3489.64,26129036,99.86,0,0,0.16,518.04,3489.55,26129037,99.75,0,0,0.52,518.61,3488.98,26129038,99.9,0,0,0.19,518.37,3489.21,26129039,99.9,0,0,0.18,518.35,3489.23,26129040,99.72,0,0,0.32,518.66,3488.94,26129041,99.84,0,0,0.14,518.58,3489.02,26129042,99.73,0,0,0.43,518.85,3488.74,26129043,99.87,0,0,0.29,518.29,3489.29,26129044,99.83,0,0,0.14,518.27,3489.31,26129045,99.8,0,0,0.36,518.51,3489.08,26129046,99.89,0.01,0.02,0.16,518.58,3489.01,26129047,99.63,0,0,0.41,519.08,3488.5,26129048,99.87,0,0,0.29,518.31,3489.26,26129049,99.64,0,0,0.27,518.28,3489.27,26129050,99.7,0,0,0.3,517.34,3490.24,26129051,99.86,0,0,0.16,517.28,3490.29,26129052,99.83,0,0,0.14,517.26,3490.31,26129053,99.66,0,0,0.57,517.83,3489.73,26129054,99.88,0,0,0.17,517.49,3490.06,26129055,99.71,0,0,0.34,517.65,3489.92,26129056,99.86,0,0,0.14,517.62,3489.95,26129057,99.85,0,0,0.2,517.61,3489.95,26129058,99.73,0,0,0.56,518.3,3489.26,26129059,99.92,0,0,0.14,518.05,3489.5,26129060,99.82,0,0,0.32,518.05,3489.52,26129061,99.85,0,0,0.14,518.04,3489.53,26129062,99.9,0,0,0.14,518,3489.56,26129063,99.71,0,0,0.56,518.7,3488.86,26129064,99.92,0,0,0.14,518.46,3489.09,26129065,99.74,0,0,0.37,518.63,3488.94,26129066,99.87,0,0,0.18,518.62,3488.95,26129067,99.9,0,0,0.14,518.6,3488.97,26129068,99.78,0,0,0.57,518.94,3488.62,26129069,99.9,0,0,0.15,518.55,3489,26129070,99.75,0,0,0.36,517.36,3490.2,26129071,99.86,0,0,0.14,517.3,3490.26,26129072,99.92,0,0,0.15,517.27,3490.28,26129073,99.75,0,0,0.62,518.12,3489.43,26129074,99.88,0,0,0.15,518.46,3489.09,26129075,99.85,0,0,0.33,518.46,3489.1,26129076,99.9,0,0,0.18,518.23,3489.33,26129077,99.92,0,0,0.15,518.11,3489.44,26129078,99.76,0,0,0.58,519.05,3488.5,26129079,99.73,0,0,0.27,518.82,3488.71,26129080,99.8,0,0,0.3,517.84,3489.71,26129081,99.89,0,0,0.16,517.68,3489.86,26129082,99.85,0,0,0.15,517.53,3490,26129083,99.76,0,0,0.34,518.17,3489.36,26129084,99.9,0,0,0.38,517.5,3490.02,26129085,99.77,0,0,0.32,517.97,3489.56,26129086,99.89,0,0,0.15,517.96,3489.57,26129087,99.9,0,0,0.14,517.93,3489.59,26129088,99.9,0,0,0.16,518,3489.52,26129089,99.7,0,0,0.59,518.33,3489.19,26129090,99.67,0,0,0.31,517.59,3489.94,26129091,99.87,0,0,0.16,517.56,3489.97,26129092,99.88,0,0,0.14,517.54,3489.98,26129093,99.9,0,0.01,0.16,517.51,3490.01,26129094,99.77,0,0,0.59,518.56,3488.95,26129095,99.84,0,0,0.32,517.61,3489.92,26129096,99.9,0,0,0.16,517.47,3490.07,26129097,99.93,0,0,0.16,517.46,3490.09,26129098,99.89,0,0,0.15,517.43,3490.11,26129099,99.75,0,0,0.55,517.62,3489.92,26129100,99.16,0,0,10.69,517.83,3489.92,26129101,99.91,0,0,0.16,517.87,3489.91,26129102,99.91,0,0,0.15,517.84,3489.94,26129103,99.91,0,0,0.14,517.83,3489.95,26129104,99.76,0,0,0.42,518.58,3489.19,26129105,99.77,0,0,0.45,517.3,3490.5,26129106,99.82,0,0,0.14,516.55,3491.25,26129107,99.86,0,0,0.16,516.53,3491.26,26129108,99.86,0,0,0.15,516.51,3491.29,26129109,99.61,0,0,0.65,518.3,3489.49,26129110,99.83,0,0,0.36,517.96,3489.84,26129111,99.86,0,0,0.16,518.08,3489.71,26129112,99.88,0,0,0.14,518.14,3489.65,26129113,99.88,0,0,0.14,518.11,3489.68,26129114,99.74,0,0,0.61,518.85,3488.93,26129115,99.68,0,0,0.32,517.13,3490.67,26129116,99.88,0,0,0.14,517.09,3490.71,26129117,99.91,0,0,0.23,517.06,3490.73,26129118,99.9,0,0,0.15,517.03,3490.75,26129119,99.74,0,0,0.43,517.77,3490,26129120,99.76,0,0,0.48,518.02,3489.78,26129121,99.89,0,0,0.18,517.99,3489.81,26129122,99.91,0,0,0.14,518.04,3489.75,26129123,99.83,0,0,0.16,518.13,3489.65,26129124,99.89,0,0,0.16,518.11,3489.68,26129125,99.61,0,0,0.75,518.47,3489.32,26129126,99.88,0,0,0.14,518.08,3489.71,26129127,99.95,0,0,0.14,518.08,3489.71,26129128,99.89,0,0,0.16,518.04,3489.74,26129129,99.91,0,0,0.14,518.03,3489.75,26129130,99.63,0,0,0.77,517.95,3489.85,26129131,99.92,0,0,0.17,517.76,3490.03,26129132,99.88,0,0,0.14,517.73,3490.05,26129133,99.9,0,0,0.14,517.77,3490.02,26129134,99.91,0,0,0.15,517.88,3489.9,26129135,99.66,0,0,0.71,518.35,3489.44,26129136,99.85,0,0,0.25,517.83,3489.95,26129137,99.92,0,0,0.18,517.58,3490.21,26129138,99.88,0,0,0.16,517.57,3490.21,26129139,99.72,0,0,0.3,518.29,3489.47,26129140,99.59,0,0,0.79,518.37,3489.4,26129141,99.92,0,0,0.18,517.78,3489.99,26129142,99.88,0,0,0.14,517.75,3490.01,26129143,99.86,0,0,0.16,517.73,3490.03,26129144,99.86,0,0,0.14,517.71,3490.04,26129145,99.66,0,0,0.78,518.41,3489.36,26129146,99.91,0,0,0.18,518.12,3489.65,26129147,99.9,0,0,0.18,518.1,3489.66,26129148,99.9,0,0,0.18,518.08,3489.67,26129149,99.86,0,0,0.18,518.06,3489.69,26129150,99.51,0,0,0.61,517.66,3490.1,26129151,99.87,0,0,0.31,516.81,3490.95,26129152,99.91,0,0,0.14,516.79,3490.97,26129153,99.91,0,0,0.15,516.77,3490.98,26129154,99.83,0,0,0.14,516.74,3491.01,26129155,99.65,0,0,0.5,518.56,3489.21,26129156,99.93,0,0,0.38,518.22,3489.54,26129157,99.86,0,0,0.19,518.32,3489.43,26129158,99.9,0,0,0.19,518.34,3489.41,26129159,99.94,0,0,0.15,518.33,3489.42,26129160,99.58,0,0,0.59,518.68,3489.08,26129161,99.87,0,0,0.39,518.54,3489.21,26129162,99.84,0,0,0.14,518.51,3489.23,26129163,99.89,0,0,0.16,518.49,3489.25,26129164,99.9,0,0,0.15,518.47,3489.26,26129165,99.81,0,0,0.28,517.76,3489.99,26129166,99.7,0,0,0.57,518.28,3489.47,26129167,99.91,0,0,0.13,517.94,3489.8,26129168,99.92,0,0,0.16,517.98,3489.76,26129169,99.52,0,0,0.29,517.61,3490.12,26129170,99.81,0,0,0.29,518.33,3489.42,26129171,99.74,0,0,0.55,518.85,3488.9,26129172,99.82,0,0,0.16,518.05,3489.7,26129173,99.85,0,0,0.16,518.02,3489.71,26129174,99.83,0,0,0.14,518,3489.75,26129175,99.67,0,0,0.29,516.55,3491.22,26129176,94.96,0.27,0.01,78.88,531.32,3476.06,26129177,99.58,0,0,181.42,520.4,3487.29,26129178,99.83,0,0,0.16,520.38,3487.3,26129179,99.83,0,0,0.18,520.36,3487.32,26129180,99.75,0,0,0.29,520.12,3487.58,26129181,99.75,0,0,0.56,519.86,3487.85,26129182,99.86,0,0,0.23,518.35,3489.37,26129183,99.87,0,0,0.16,518.33,3489.39,26129184,99.92,0,0,0.16,518.31,3489.4,26129185,99.67,0,0,0.28,517.59,3490.14,26129186,99.73,0,0,0.53,518.25,3489.48,26129187,99.85,0,0,0.21,518.51,3489.21,26129188,99.8,0,0,0.14,518.49,3489.24,26129189,99.77,0,0,0.15,518.48,3489.24,26129190,99.68,0,0,0.29,517.04,3490.7,26129191,99.59,0,0,0.46,517.6,3490.15,26129192,99.74,0,0,0.23,518.57,3489.18,26129193,99.81,0,0,0.16,518.59,3489.16,26129194,99.88,0,0,0.14,518.57,3489.17,26129195,99.78,0,0,0.25,517.62,3490.14,26129196,99.57,0,0,0.18,517.79,3489.96,26129197,99.76,0,0,0.62,518.39,3489.36,26129198,99.87,0,0,0.15,518.02,3489.73,26129199,99.71,0,0,0.3,518.47,3489.24,26129200,99.74,0,0,0.29,517.75,3489.99,26129201,99.79,0,0,0.14,517.73,3490.01,26129202,99.71,0,0,0.57,518.23,3489.5,26129203,99.85,0,0,0.14,517.76,3489.96,26129204,99.76,0,0,0.14,517.85,3489.89,26129205,99.69,0,0,0.27,518.1,3489.66,26129206,99.84,0,0,0.16,518.08,3489.67,26129207,99.63,0,0,0.55,518.59,3489.16,26129208,99.78,0,0,0.16,518.29,3489.45,26129209,99.87,0,0,0.16,518.27,3489.47,26129210,99.71,0,0,0.27,517.55,3490.21,26129211,99.83,0,0,0.17,517.51,3490.24,26129212,99.72,0,0,0.52,518.09,3489.65,26129213,99.81,0,0,0.24,517.96,3489.78,26129214,99.85,0,0,0.14,517.94,3489.79,26129215,99.73,0,0,0.27,517.46,3490.29,26129216,99.8,0,0,0.14,517.57,3490.17,26129217,99.66,0,0,0.53,518.3,3489.44,26129218,99.75,0,0,0.24,518.29,3489.44,26129219,99.83,0,0,0.14,518.29,3489.44,26129220,99.68,0,0,0.29,518.55,3489.19,26129221,99.83,0,0,0.15,518.51,3489.23,26129222,99.63,0,0,0.44,518.84,3488.9,26129223,99.84,0,0,0.3,518.47,3489.26,26129224,99.84,0,0,0.15,518.44,3489.29,26129225,99.73,0,0,0.27,518.45,3489.29,26129226,99.74,0,0,0.16,518.42,3489.32,26129227,99.7,0,0,0.57,519.08,3488.65,26129228,99.83,0,0,0.16,518.6,3489.13,26129229,99.65,0,0,0.34,518.82,3488.88,26129230,99.75,0,0,0.31,518.83,3488.89,26129231,99.76,0,0,0.18,518.8,3488.91,26129232,99.83,0,0,0.18,518.78,3488.93,26129233,99.67,0,0,0.56,519.24,3488.47,26129234,99.76,0,0,0.15,518.74,3488.96,26129235,99.74,0,0,0.29,518.75,3488.97,26129236,99.83,0,0,0.13,518.72,3488.99,26129237,99.8,0,0,0.2,518.46,3489.25,26129238,99.69,0,0,0.54,518.78,3488.92,26129239,99.84,0,0,0.15,518.5,3489.2,26129240,99.75,0,0,0.28,519.09,3488.63,26129241,99.8,0,0,0.14,519.05,3488.66,26129242,99.82,0,0,0.15,518.81,3488.9,26129243,99.67,0,0,0.54,519.14,3488.56,26129244,99.83,0,0,0.15,518.76,3488.94,26129245,99.67,0,0,0.27,518.76,3488.96,26129246,99.74,0,0,0.18,518.75,3488.97,26129247,99.83,0,0,0.18,518.72,3488.99,26129248,99.6,0,0,0.46,518.95,3488.75,26129249,99.76,0,0,0.28,518.44,3489.26,26129250,99.64,0,0,0.3,518.73,3488.99,26129251,99.82,0,0,0.13,518.8,3488.91,26129252,99.73,0,0,0.16,518.82,3488.89,26129253,99.69,0,0,0.5,519.23,3488.47,26129254,99.81,0,0,0.2,519.03,3488.67,26129255,99.71,0,0.01,0.3,519.02,3488.7,26129256,99.82,0,0,0.19,518.86,3488.85,26129257,99.81,0,0,0.14,518.72,3488.99,26129258,99.59,0,0,0.45,519.38,3488.32,26129259,99.62,0,0,0.46,518.44,3489.24,26129260,99.71,0,0,0.28,517.28,3490.41,26129261,99.82,0,0,0.16,516.91,3490.79,26129262,99.83,0,0,0.14,516.85,3490.84,26129263,99.82,0,0,0.15,516.83,3490.85,26129264,99.66,0,0,0.55,518.59,3489.11,26129265,99.74,0,0,0.29,517.79,3489.92,26129266,99.78,0,0,0.16,517.76,3489.95,26129267,99.83,0,0,0.18,517.74,3489.96,26129268,99.8,0,0,0.16,517.72,3489.98,26129269,99.64,0,0,0.55,518.45,3489.24,26129270,99.74,0,0,0.28,518.2,3489.51,26129271,99.82,0,0,0.14,518.19,3489.52,26129272,99.79,0,0,0.17,518.2,3489.5,26129273,99.83,0,0,0.14,518.32,3489.37,26129274,99.58,0,0,0.57,518.47,3489.22,26129275,99.79,0,0,0.29,518.31,3489.4,26129276,99.83,0,0,0.13,518.28,3489.42,26129277,99.82,0,0,0.16,518.27,3489.44,26129278,99.83,0,0,0.14,518.24,3489.45,26129279,99.67,0,0,0.55,519.12,3488.57,26129280,99.67,0,0,0.27,518.23,3489.48,26129281,99.77,0,0,0.16,518.21,3489.5,26129282,99.78,0,0,0.14,518.19,3489.52,26129283,99.8,0,0,0.15,518.16,3489.54,26129284,99.65,0,0,0.43,518.92,3488.78,26129285,94.39,101.02,0.14,97.65,526.56,3442.31,26129286,99.72,0,0,77.79,520.01,3388.04,26129287,99.78,0,0,0.18,520.06,3387.97,26129288,99.8,0,0,0.18,520.15,3387.88,26129289,97.28,0,0,0.71,520.81,3387.2,26129290,99.69,0,0,0.3,519.8,3388.26,26129291,99.82,0,0,0.16,518.44,3389.65,26129292,99.72,0,0,0.16,518.44,3389.65,26129293,99.83,0,0,0.14,518.43,3389.65,26129294,99.64,0,0,0.43,518.83,3389.24,26129295,99.67,0,0,0.45,518.66,3389.47,26129296,99.81,0,0,0.18,518.63,3389.53,26129297,99.81,0,0,0.18,518.68,3389.47,26129298,99.84,0,0,0.18,518.77,3389.38,26129299,99.78,0,0,0.16,518.76,3389.39,26129300,99.4,0,0,0.66,517.7,3390.46,26129301,99.78,0,0,0.16,517.26,3390.9,26129302,99.85,0,0,0.16,517.23,3390.92,26129303,99.83,0,0,0.17,517.2,3390.95,26129304,99.83,0,0,0.13,517.2,3390.95,26129305,99.64,0,0,0.7,518.42,3389.74,26129306,99.8,0,0,0.13,518.17,3389.99,26129307,99.81,0,0,0.16,518.15,3390,26129308,99.83,0,0,0.14,518.13,3390.02,26129309,99.78,0,0,0.14,518.11,3390.03,26129310,99.53,0,0,0.68,518.63,3389.53,26129311,99.82,0,0,0.14,518.53,3389.63,26129312,99.79,0,0,0.16,518.49,3389.66,26129313,99.76,0,0,0.14,518.47,3389.68,26129314,99.83,0,0,0.14,518.46,3389.68,26129315,99.53,0,0,0.75,518.81,3389.35,26129316,99.76,0,0,0.18,518.33,3389.82,26129317,99.81,0,0,0.16,518.18,3389.97,26129318,99.8,0,0,0.14,518.16,3389.99,26129319,99.66,0,0,0.32,518.39,3389.73,26129320,99.61,0,0,0.72,519.26,3388.88,26129321,99.83,0,0,0.16,518.61,3389.53,26129322,99.8,0,0,0.14,518.73,3389.41,26129323,99.85,0,0,0.16,518.75,3389.38,26129324,99.8,0,0,0.15,518.73,3389.39,26129325,99.54,0,0,0.55,518.84,3389.3,26129326,99.79,0,0,0.27,518.71,3389.43,26129327,99.78,0,0,0.16,518.68,3389.45,26129328,99.8,0,0,0.16,518.68,3389.45,26129329,99.8,0,0,0.15,518.65,3389.48,26129330,99.53,0,0,0.48,518.3,3389.84,26129331,99.81,0,0,0.39,518.62,3389.52,26129332,99.77,0,0,0.14,518.61,3389.53,26129333,99.83,0,0,0.16,518.66,3389.47,26129334,99.82,0,0,0.15,518.74,3389.38,26129335,99.75,0,0,0.29,518.75,3389.39,26129336,99.63,0,0,0.59,518.63,3389.51,26129337,99.81,0,0,0.15,518.22,3389.91,26129338,99.81,0,0,0.15,518.19,3389.94,26129339,99.83,0,0,0.15,518.17,3389.95,26129340,99.73,0,0,0.3,518.65,3389.49,26129341,99.56,0,0,0.54,517.86,3390.27,26129342,99.8,0,0,0.16,517.38,3390.75,26129343,99.78,0,0,0.14,517.36,3390.77,26129344,99.8,0,0,0.14,517.39,3390.73,26129345,99.77,0,0,0.29,518.25,3389.89,26129346,99.69,0,0,0.61,518.98,3389.15,26129347,99.8,0,0,0.15,518.72,3389.4,26129348,99.79,0,0,0.14,518.7,3389.42,26129349,99.65,0,0,0.32,518.92,3389.18,26129350,99.43,0,0,0.28,518.69,3389.43,26129351,99.67,0,0,0.51,519.31,3388.8,26129352,99.81,0,0,0.23,518.64,3389.47,26129353,99.85,0,0,0.15,518.61,3389.49,26129354,99.82,0,0,0.15,518.6,3389.5,26129355,99.63,0,0,0.28,517.63,3390.48,26129356,99.69,0,0,0.5,518.46,3389.65,26129357,99.82,0,0,0.23,518.93,3389.17,26129358,99.83,0,0,0.16,519,3389.1,26129359,99.83,0,0,0.16,518.98,3389.11,26129360,99.69,0,0,0.27,519.23,3388.88,26129361,99.71,0,0,0.41,519.45,3388.65,26129362,99.85,0,0,0.3,518.7,3389.41,26129363,99.84,0,0,0.14,518.68,3389.42,26129364,99.85,0,0,0.15,518.66,3389.44,26129365,99.76,0,0,0.27,518.24,3389.87,26129366,99.72,0,0,0.34,518.57,3389.54,26129367,99.89,0,0,0.37,518.87,3389.24,26129368,99.88,0,0,0.14,518.85,3389.25,26129369,99.9,0,0,0.14,518.96,3389.13,26129370,99.76,0,0,0.27,519.02,3389.1,26129371,99.75,0,0,0.34,519.34,3388.77,26129372,99.9,0,0,0.38,518.73,3389.38,26129373,99.9,0,0,0.15,518.7,3389.4,26129374,99.87,0,0,0.15,518.68,3389.41,26129375,99.75,0,0,0.28,518.92,3389.2,26129376,99.92,0,0,0.19,518.9,3389.2,26129377,99.76,0,0,0.55,519.46,3388.64,26129378,99.92,0,0,0.17,519.09,3389,26129379,99.85,0,0,0.41,519.22,3388.85,26129380,99.86,0,0,0.29,518.69,3389.39,26129381,99.93,0,0,0.15,518.65,3389.43,26129382,99.78,0,0,0.55,519.32,3388.76,26129383,99.91,0,0,0.18,519.14,3388.93,26129384,99.93,0,0,0.17,519.21,3388.86,26129385,99.83,0,0,0.34,518,3390.09,26129386,99.91,0,0,0.36,517.59,3390.49,26129387,99.73,0,0,0.49,518.91,3389.16,26129388,99.91,0,0,0.21,519.15,3388.93,26129389,99.91,0,0,0.15,519.12,3388.96,26129390,99.76,0,0,0.27,517.68,3390.42,26129391,99.89,0,0,0.16,517.63,3390.49,26129392,99.7,0,0,0.57,518.17,3389.96,26129393,99.89,0,0,0.14,518.16,3389.97,26129394,99.9,0,0,0.14,518.25,3389.87,26129395,99.83,0,0,0.28,518.25,3389.89,26129396,96.06,0,0,0.14,518.23,3389.9,26129397,99.78,0,0,0.42,518.95,3389.17,26129398,99.93,0,0,0.28,519.17,3388.95,26129399,99.9,0,0,0.14,519.15,3388.97,26129400,99.72,0,0,0.27,517.55,3390.58,26129401,99.89,0,0,0.14,517.41,3390.72,26129402,99.79,0,0,0.57,518.02,3390.11,26129403,99.92,0,0,0.14,518.59,3389.53,26129404,99.9,0,0,0.14,518.56,3389.55,26129405,99.8,0,0,0.27,518.23,3389.9,26129406,99.93,0,0,0.14,518.24,3389.89,26129407,99.7,0,0,0.39,518.77,3389.36,26129408,99.9,0,0,0.36,518.94,3389.18,26129409,99.74,0,0,0.29,519.15,3388.95,26129410,99.77,0,0,0.27,518.68,3389.44,26129411,96.41,0,0,0.16,518.64,3389.48,26129412,99.86,0,0,0.14,518.62,3389.49,26129413,99.66,0,0,0.54,518.74,3389.37,26129414,99.88,0,0,0.15,518.33,3389.77,26129415,99.81,0,0,0.27,519.14,3388.98,26129416,99.81,0,0,0.17,518.59,3389.52,26129417,99.86,0,0,0.18,518.47,3389.63,26129418,99.71,0,0,0.63,518.15,3389.95,26129419,99.92,0,0,0.15,517.69,3390.41,26129420,99.85,0,0,0.28,518.41,3389.7,26129421,99.91,0,0,0.19,518.41,3389.7,26129422,99.88,0,0,0.15,518.38,3389.72,26129423,99.7,0,0,0.55,518.04,3390.06,26129424,99.88,0,0,0.14,517.36,3390.74,26129425,99.77,0,0,0.31,518.57,3389.54,26129426,99.88,0,0,0.14,518.57,3389.54,26129427,99.85,0,0,0.19,518.73,3389.37,26129428,99.64,0,0,0.56,519.09,3389.01,26129429,99.85,0,0,0.14,518.71,3389.38,26129430,99.8,0,0,0.3,517.35,3390.75,26129431,99.87,0,0,0.16,517.21,3390.89,26129432,99.92,0,0,0.14,517.2,3390.9,26129433,99.72,0,0,0.55,518.01,3390.09,26129434,99.92,0,0.01,0.17,518.37,3389.72,26129435,99.79,0,0.01,0.29,517.4,3390.7,26129436,99.9,0,0,0.2,517.52,3390.58,26129437,99.87,0,0,0.15,517.5,3390.6,26129438,99.76,0,0.01,0.44,518.22,3389.88,26129439,99.76,0,0,0.46,518.67,3389.4,26129440,99.79,0,0,0.31,517.72,3390.37,26129441,99.86,0,0,0.14,517.66,3390.42,26129442,99.91,0,0,0.18,517.63,3390.45,26129443,99.74,0,0,0.34,517.98,3390.09,26129444,99.89,0,0,0.4,518.33,3389.76,26129445,99.81,0,0,0.32,518.62,3389.49,26129446,99.86,0,0,0.18,518.74,3389.36,26129447,99.88,0,0,0.18,518.72,3389.38,26129448,99.7,0,0,0.36,519.05,3389.04,26129449,99.86,0,0,0.38,518.67,3389.42,26129450,99.79,0,0,0.28,518.67,3389.43,26129451,99.9,0,0,0.17,518.65,3389.45,26129452,99.91,0,0,0.15,518.64,3389.46,26129453,99.9,0,0,0.14,518.61,3389.48,26129454,99.73,0,0,0.55,518.98,3389.11,26129455,99.74,0,0,0.29,517.63,3390.48,26129456,99.6,0,0,0.13,517.59,3390.51,26129457,99.93,0,0,0.14,517.65,3390.45,26129458,99.9,0,0,0.16,517.74,3390.36,26129459,99.77,0,0,0.54,518.75,3389.34,26129460,99.62,0,0,0.27,517.55,3390.56,26129461,99.9,0,0,0.16,517.45,3390.65,26129462,99.89,0,0,0.13,517.43,3390.67,26129463,99.86,0,0,0.16,517.41,3390.68,26129464,99.72,0,0,0.58,518.19,3389.9,26129465,99.75,0,0,0.33,517.66,3390.45,26129466,99.91,0,0,0.15,517.61,3390.49,26129467,99.88,0,0,0.16,517.58,3390.51,26129468,99.92,0,0,0.14,517.64,3390.45,26129469,99.68,0,0,0.73,519.12,3388.95,26129470,99.86,0,0,0.33,518.71,3389.38,26129471,98.31,0,0,0.15,518.69,3389.39,26129472,99.88,0,0,0.15,518.67,3389.41,26129473,99.88,0,0,0.18,518.65,3389.42,26129474,99.72,0,0,0.6,518.9,3389.17,26129475,99.85,0,0,0.3,518.38,3389.7,26129476,99.93,0,0,0.15,518.36,3389.71,26129477,99.93,0,0,0.21,518.35,3389.73,26129478,99.93,0,0,0.16,518.32,3389.75,26129479,99.8,0,0,0.41,518.83,3389.24,26129480,99.81,0,0,0.39,518.62,3389.46,26129481,84.14,0,0,330.87,552.17,3337.88,26129482,96.66,0,0,49.45,529.33,3460.62,26129483,99.9,0,0,0.17,521.2,3491.83,26129484,99.9,0,0,0.14,521.18,3491.84,26129485,98.38,0,0,16.03,524.01,3489.81,26129486,99.93,0,0,0.19,521.25,3492.13,26129487,99.93,0,0,0.23,519.28,3494.13,26129488,99.9,0,0,0.14,518.76,3494.66,26129489,99.93,0,0,0.17,518.74,3494.66,26129490,99.62,0,0,0.65,518.36,3495.07,26129491,99.93,0,0,0.13,518.04,3495.38,26129492,99.91,0,0,0.15,517.96,3495.46,26129493,99.91,0,0,0.16,517.89,3495.52,26129494,99.94,0,0,0.14,517.87,3495.54,26129495,99.67,0,0,0.68,518.36,3495.06,26129496,99.89,0,0,0.16,517.93,3495.51,26129497,99.93,0,0,0.15,518.08,3495.36,26129498,99.93,0,0,0.16,518.06,3495.37,26129499,99.76,0,0,0.3,518.54,3494.86,26129500,99.61,0,0,0.7,519.26,3494.15,26129501,99.89,0,0,0.16,518.76,3494.66,26129502,99.92,0,0,0.17,518.74,3494.67,26129503,99.85,0,0,0.14,518.72,3494.69,26129504,99.88,0,0,0.16,518.8,3494.62,26129505,99.62,0,0,0.7,518.88,3494.56,26129506,99.91,0,0,0.14,518.4,3495.04,26129507,99.89,0,0,0.16,518.39,3495.05,26129508,99.92,0,0,0.14,518.36,3495.07,26129509,99.86,0,0,0.14,518.34,3495.08,26129510,99.72,0,0,0.77,518.7,3494.74,26129511,99.84,0,0,0.18,517.83,3495.6,26129512,99.91,0,0,0.18,517.8,3495.63,26129513,99.89,0,0,0.16,517.79,3495.64,26129514,99.88,0,0,0.14,517.76,3495.66,26129515,99.67,0,0,0.7,518.81,3494.63,26129516,99.9,0,0,0.21,519.41,3494.02,26129517,99.89,0,0,0.17,519.4,3494.03,26129518,99.86,0,0,0.14,519.37,3494.05,26129519,99.9,0,0,0.14,519.35,3494.07,26129520,99.6,0,0,0.52,518.82,3494.62,26129521,99.91,0,0,0.32,519.09,3494.34,26129522,99.91,0,0,0.14,519.06,3494.36,26129523,99.89,0,0,0.16,519.05,3494.38,26129524,99.88,0,0,0.15,519.02,3494.39,26129525,99.84,0,0,0.3,519.03,3494.41,26129526,99.72,0,0,0.52,519.39,3494.04,26129527,99.92,0,0,0.17,519.15,3494.28,26129528,99.88,0,0,0.16,519.12,3494.3,26129529,99.81,0,0,0.34,518.89,3494.5,26129530,99.75,0,0,0.32,518.13,3495.29,26129531,99.73,0,0,0.52,519.18,3494.23,26129532,99.92,0,0,0.15,518.82,3494.59,26129533,99.9,0,0,0.15,518.8,3494.61,26129534,99.88,0,0,0.18,518.78,3494.65,26129535,99.8,0,0,0.29,519.04,3494.42,26129536,99.74,0,0,0.56,519.92,3493.53,26129537,99.84,0,0,0.2,519.28,3494.17,26129538,99.91,0,0,0.14,519.4,3494.04,26129539,99.86,0,0,0.15,519.37,3494.09,26129540,99.83,0,0,0.27,519.38,3494.09,26129541,94.75,0.27,0.01,259.41,532.38,3481.37,26129542,99.92,0,0,0.49,521.73,3491.98,26129543,99.89,0,0,0.16,521.71,3492,26129544,99.93,0,0,0.14,521.69,3492.01,26129545,99.81,0,0,0.29,520.98,3492.73,26129546,99.8,0,0,0.55,520.53,3493.2,26129547,99.92,0,0,0.2,519.28,3494.46,26129548,99.84,0,0,0.15,519.26,3494.48,26129549,99.88,0,0,0.18,519.22,3494.51,26129550,99.88,0,0,0.34,519.43,3494.32,26129551,99.8,0,0,0.4,519.78,3493.96,26129552,99.89,0,0,0.29,519.39,3494.35,26129553,99.93,0,0,0.14,519.37,3494.37,26129554,99.92,0,0,0.14,519.35,3494.39,26129555,99.82,0,0,0.28,519.36,3494.4,26129556,99.73,0,0,0.57,519.61,3494.13,26129557,99.93,0,0,0.13,519.06,3494.68,26129558,99.85,0,0,0.16,519.04,3494.7,26129559,99.78,0,0,0.29,519.49,3494.22,26129560,99.83,0,0,0.27,518.34,3495.4,26129561,99.79,0,0,0.41,518.87,3494.86,26129562,99.87,0,0,0.29,519.15,3494.57,26129563,99.89,0,0,0.13,519.13,3494.59,26129564,99.89,0,0,0.16,519.11,3494.6,26129565,99.83,0,0,0.29,519.36,3494.37,26129566,99.88,0,0,0.15,519.35,3494.38,26129567,99.69,0,0,0.55,519.96,3493.77,26129568,99.92,0,0,0.15,519.3,3494.42,26129569,99.93,0,0,0.15,518.52,3495.19,26129570,99.76,0,0,0.28,518.14,3495.59,26129571,99.89,0,0,0.14,518.1,3495.62,26129572,99.76,0,0,0.54,518.78,3494.94,26129573,99.93,0,0,0.14,518.15,3495.57,26129574,99.9,0,0,0.14,518.13,3495.59,26129575,99.83,0,0,0.28,518.36,3495.37,26129576,99.88,0,0,0.16,518.36,3495.37,26129577,99.75,0,0,0.57,518.93,3494.79,26129578,99.9,0,0,0.14,518.57,3495.15,26129579,99.94,0,0,0.15,518.55,3495.17,26129580,99.71,0,0,0.26,517.13,3496.61,26129581,99.9,0,0,0.14,517.05,3496.68,26129582,99.8,0,0,0.57,517.91,3495.82,26129583,99.85,0,0,0.18,518.33,3495.39,26129584,99.88,0,0,0.19,518.4,3495.31,26129585,99.84,0,0,0.31,518.64,3495.09,26129586,99.9,0,0,0.16,518.62,3495.1,26129587,99.79,0,0,0.42,519.06,3494.66,26129588,99.92,0,0,0.34,518.81,3494.9,26129589,99.73,0,0,0.3,518.31,3495.38,26129590,99.84,0,0,0.35,518.78,3494.93,26129591,99.91,0,0,0.16,518.77,3494.93,26129592,99.78,0,0,0.44,519.18,3494.52,26129593,99.9,0,0,0.3,517.81,3495.88,26129594,99.94,0,0,0.15,517.7,3495.99,26129595,99.78,0,0,0.29,519.1,3494.6,26129596,99.9,0,0,0.14,519.11,3494.59,26129597,99.73,0,0,0.44,519.4,3494.3,26129598,99.94,0,0,0.28,518.57,3495.12,26129599,99.89,0.01,0,0.14,518.55,3495.14,26129600,99.78,0.01,0,0.27,518.82,3494.89,26129601,99.83,0.01,0,0.16,518.81,3494.89,26129602,99.65,0.01,0,0.16,518.83,3494.87,26129603,99.66,0.01,0,0.54,517.89,3495.8,26129604,99.87,0,0,0.14,517.33,3496.36,26129605,99.8,0,0,0.29,518.84,3494.86,26129606,99.85,0,0,0.14,518.8,3494.9,26129607,99.88,0,0,0.16,518.78,3494.92,26129608,99.71,0,0,0.58,519.11,3494.58,26129609,99.92,0,0,0.14,518.74,3494.95,26129610,99.75,0,0,0.28,518.08,3495.63,26129611,99.91,0,0,0.16,518.17,3495.53,26129612,99.87,0,0,0.15,518.14,3495.56,26129613,99.77,0,0,0.47,518.62,3495.08,26129614,99.92,0,0,0.21,518.34,3495.35,26129615,99.82,0,0,0.28,519.07,3494.63,26129616,99.87,0,0,0.18,518.94,3494.76,26129617,99.88,0,0,0.16,518.55,3495.15,26129618,99.63,0,0,0.55,518.88,3494.81,26129619,99.76,0,0,0.32,518.99,3494.68,26129620,99.75,0,0,0.27,518.99,3494.69,26129621,99.89,0,0,0.16,518.98,3494.7,26129622,99.87,0,0,0.15,519.04,3494.64,26129623,99.76,0,0,0.54,519.57,3494.1,26129624,99.89,0,0,0.14,519.35,3494.32,26129625,99.83,0,0,0.36,518.87,3494.81,26129626,99.89,0,0,0.18,518.83,3494.84,26129627,99.88,0,0,0.13,518.82,3494.85,26129628,99.69,0,0,0.57,519.4,3494.27,26129629,99.92,0,0,0.16,518.28,3495.39,26129630,99.78,0,0,0.27,518.53,3495.15,26129631,99.88,0,0,0.15,518.32,3495.35,26129632,99.92,0,0,0.16,518.24,3495.43,26129633,99.76,0,0,0.33,518.81,3494.86,26129634,99.92,0,0,0.38,519.02,3494.64,26129635,99.7,0,0,0.3,519.13,3494.55,26129636,99.92,0,0,0.16,519.11,3494.57,26129637,99.17,0,0,0.14,519.08,3494.59,26129638,99.92,0,0,0.16,519.06,3494.61,26129639,99.76,0,0,0.6,519.61,3494.05,26129640,99.73,0,0,0.28,519.36,3494.32,26129641,99.9,0,0,0.17,519.26,3494.41,26129642,99.92,0,0,0.14,519.24,3494.43,26129643,99.87,0,0,0.14,519.22,3494.44,26129644,99.76,0,0,0.54,518.89,3494.77,26129645,99.78,0,0,0.29,518.47,3495.21,26129646,99.93,0,0,0.14,518.59,3495.09,26129647,99.88,0,0,0.14,518.62,3495.05,26129648,99.9,0,0,0.15,518.6,3495.07,26129649,99.68,0,0,0.68,519.63,3494.02,26129650,99.85,0,0,0.27,519.3,3494.36,26129651,99.88,0,0,0.16,519.28,3494.37,26129652,98.6,0,0,0.15,519.26,3494.39,26129653,99.92,0,0,0.15,519.24,3494.4,26129654,99.8,0,0,0.49,519.43,3494.21,26129655,99.8,0,0,0.37,518.49,3495.17,26129656,99.9,0,0,0.15,518.46,3495.2,26129657,99.9,0,0,0.18,518.54,3495.11,26129658,99.89,0,0,0.18,518.64,3495.01,26129659,99.75,0,0,0.41,519.16,3494.48,26129660,99.81,0,0,0.4,519.11,3494.54,26129661,99.9,0,0,0.16,519.1,3494.55,26129662,99.87,0,0,0.14,519.07,3494.58,26129663,99.87,0,0,0.14,519.06,3494.59,26129664,99.76,0,0,0.44,519.08,3494.56,26129665,99.71,0,0,0.41,518.54,3495.13,26129666,99.85,0,0,0.16,518.52,3495.15,26129667,99.87,0,0,0.14,518.51,3495.16,26129668,99.88,0,0,0.14,518.48,3495.18,26129669,99.78,0,0,0.49,519.01,3494.65,26129670,99.76,0,0,0.38,519.4,3494.27,26129671,99.91,0,0,0.17,519.36,3494.3,26129672,99.9,0,0,0.14,519.35,3494.32,26129673,99.9,0,0,0.15,519.32,3494.34,26129674,99.71,0,0,0.32,519.83,3493.83,26129675,99.82,0,0,0.51,519.55,3494.12,26129676,99.91,0,0,0.21,519.55,3494.12,26129677,99.93,0,0,0.15,519.25,3494.41,26129678,99.91,0,0,0.15,519.22,3494.44,26129679,99.72,0,0,0.35,519.01,3494.63,26129680,99.61,0,0,0.65,519.32,3494.33,26129681,99.9,0,0,0.16,518.87,3494.77,26129682,99.9,0,0,0.14,518.85,3494.79,26129683,99.89,0,0,0.17,518.83,3494.81,26129684,99.91,0,0,0.15,518.81,3494.82,26129685,99.7,0,0,0.73,519.72,3493.93,26129686,99.9,0,0,0.14,519.28,3494.36,26129687,99.89,0,0,0.17,519.26,3494.38,26129688,99.89,0,0,0.18,519.24,3494.4,26129689,99.91,0,0,0.14,519.21,3494.43,26129690,99.72,0,0,0.7,519.63,3494.02,26129691,99.88,0,0,0.15,519.31,3494.34,26129692,99.91,0,0,0.13,519.36,3494.28,26129693,99.87,0,0,0.16,519.33,3494.3,26129694,99.91,0,0,0.16,519.32,3494.31,26129695,99.63,0,0,0.65,519.41,3494.24,26129696,99.87,0,0,0.2,518.8,3494.85,26129697,99.88,0,0,0.16,518.78,3494.86,26129698,99.87,0.02,0.84,0.28,518.73,3494.9,26129699,99.92,0,0,0.16,518.84,3494.78,26129700,99.6,0,0,0.71,519.21,3494.43,26129701,99.92,0,0,0.14,519.31,3494.33,26129702,99.88,0.03,1.21,0.21,519.27,3494.35,26129703,98.81,0,0.01,0.2,519.32,3494.3,26129704,99.89,0.01,0.02,0.16,519.23,3494.38,26129705,99.66,0.02,0.54,0.6,519.26,3494.36,26129706,99.88,0.01,0.24,0.37,519.22,3494.39,26129707,99.87,0,0.01,0.15,519.18,3494.43,26129708,99.87,0.06,2.01,0.24,519.27,3494.32,26129709,99.69,0.01,0.04,0.31,519.05,3494.51,26129710,99.62,0,0.01,0.49,517.95,3495.62,26129711,99.88,0,0,0.44,519.44,3494.14,26129712,99.88,0.01,0.02,0.16,519.47,3494.1,26129713,99.9,0,0,0.15,519.54,3494.02,26129714,99.91,0,0.04,0.2,519.47,3494.11,26129715,99.76,0.04,1.91,0.38,517.8,3495.78,26129716,99.77,0,0,0.59,518.47,3495.11,26129717,99.91,0,0,0.19,518.17,3495.4,26129718,99.88,0,0,0.14,518.16,3495.41,26129719,99.94,0,0,0.14,518.18,3495.38,26129720,99.85,0,0,0.27,519.31,3494.28,26129721,99.73,0,0,0.54,520.16,3493.42,26129722,99.9,0,0.01,0.18,519.5,3494.07,26129723,99.94,0,0,0.16,519.49,3494.08,26129724,99.87,0.06,2.01,0.19,519.04,3494.51,26129725,99.85,0,0,0.3,516.43,3497.13,26129726,99.74,0,0.01,0.5,517.26,3496.3,26129727,99.93,0,0,0.21,516.56,3496.99,26129728,99.93,0,0,0.14,516.55,3497.01,26129729,99.91,0,0,0.15,516.52,3497.03,26129730,99.75,0,0,0.3,516.04,3497.53,26129731,99.67,0,0,0.38,516.41,3497.15,26129732,99.87,0,0,0.3,515.73,3497.83,26129733,99.94,0,0,0.14,515.71,3497.84,26129734,99.88,0,0,0.14,515.68,3497.86,26129735,99.83,0,0,0.29,516.22,3497.35,26129736,99.76,0,0,0.5,516.7,3496.88,26129737,99.93,0,0,0.2,516.33,3497.24,26129738,99.88,0.05,2.37,0.18,516.27,3497.3,26129739,99.63,0.02,0.61,0.53,516.5,3497.03,26129740,99.72,0,0.04,0.34,516.29,3497.25,26129741,99.68,0,0,0.4,516.6,3496.94,26129742,99.88,0,0,0.29,516.43,3497.11,26129743,99.85,0,0,0.14,516.4,3497.13,26129744,99.83,0.03,0.85,0.16,516.46,3497.06,26129745,99.76,0.01,0.17,0.36,515.51,3498.03,26129746,99.92,0,0.01,0.17,515.5,3498.03,26129747,99.7,0,0,0.53,516.31,3497.22,26129748,99.86,0,0,0.15,515.7,3497.82,26129749,99.83,0,0,0.13,515.67,3497.85,26129750,99.75,0,0,0.28,515.68,3497.86,26129751,99.82,0,0,0.16,515.57,3497.97,26129752,99.77,0,0,0.54,516.49,3497.04,26129753,99.85,0,0,0.14,516.29,3497.23,26129754,99.86,0,0,0.14,516.27,3497.25,26129755,99.81,0,0,0.32,516.28,3497.26,26129756,99.88,0,0,0.14,516.26,3497.27,26129757,99.72,0,0,0.53,516.99,3496.54,26129758,99.73,0,0,0.15,516.71,3496.82,26129759,99.86,0,0,0.18,516.69,3496.83,26129760,99.77,0.04,1.5,0.35,516.42,3497.11,26129761,99.84,0.02,0.69,0.26,515.72,3497.8,26129762,99.68,0.02,0.63,0.64,516.67,3496.84,26129763,99.84,0.02,0.66,0.22,516.14,3497.35,26129764,99.8,0.01,0.48,0.21,516.19,3497.29,26129765,99.72,0,0.01,0.33,515.28,3498.22,26129766,99.83,0.02,0.69,0.19,515.24,3498.25,26129767,99.7,0.02,0.72,0.61,515,3498.48,26129768,99.82,0,0.07,0.21,513.94,3499.53,26129769,99.64,0.02,0.8,0.4,516.18,3497.26,26129770,99.76,0,0,0.28,515.42,3498.03,26129771,99.83,0,0.07,0.15,515.43,3498.02,26129772,99.63,0,0,0.5,516.08,3497.37,26129773,99.78,0,0,0.2,515.98,3497.46,26129774,99.77,0,0,0.14,515.96,3497.51,26129775,99.73,0,0,0.28,516,3497.49,26129776,99.8,0.04,1.85,0.21,516.24,3497.24,26129777,99.61,0,0.02,0.48,516.43,3497.04,26129778,99.83,0,0.13,0.31,516.45,3497.01,26129779,99.8,0,0,0.14,516.48,3496.98,26129780,99.67,0,0.13,0.29,515.99,3497.5,26129781,99.83,0,0.02,0.15,515.89,3497.61,26129782,99.64,0,0,0.41,516.58,3496.91,26129783,99.83,0,0,0.28,516.34,3497.15,26129784,99.82,0.01,0.2,0.2,516.43,3497.05,26129785,99.74,0,0.12,0.35,516.39,3497.1,26129786,99.8,0.01,0.38,0.2,516.39,3497.09,26129787,99.81,0,0.03,0.15,516.41,3497.07,26129788,99.68,0,0,0.54,516.96,3496.52,26129789,99.8,0,0,0.14,516.6,3496.87,26129790,99.76,0,0,0.3,516.64,3496.85,26129791,99.84,0,0,0.14,516.74,3496.74,26129792,99.43,0,0,0.16,517.03,3496.45,26129793,99.7,0,0,1.2,515.64,3497.83,26129794,99.8,0.04,1.5,0.2,515.17,3498.29,26129795,99.76,0,0,0.32,516.37,3497.11,26129796,99.81,0,0,0.16,516.32,3497.15,26129797,99.83,0,0,0.16,516.08,3497.39,26129798,99.68,0,0,0.58,516.39,3497.09,26129799,99.66,0,0,0.32,516.64,3496.82,26129800,99.78,0,0,0.32,516.46,3497.01,26129801,99.83,0,0,0.16,516.44,3497.03,26129802,99.8,0,0,0.14,516.4,3497.06,26129803,99.67,0,0,0.53,516.85,3496.61,26129804,99.82,0,0,0.16,516.54,3496.91,26129805,99.71,0,0,0.34,516.74,3496.73,26129806,99.83,0,0,0.15,516.72,3496.75,26129807,99.83,0,0,0.16,516.69,3496.77,26129808,99.66,0,0,0.54,517.04,3496.42,26129809,99.84,0,0.01,0.16,516.66,3496.8,26129810,99.69,0,0,0.33,515.75,3497.72,26129811,99.82,0,0,0.17,515.62,3497.85,26129812,99.84,0,0.01,0.15,515.6,3497.86,26129813,99.69,0,0.01,0.41,516.5,3496.96,26129814,99.82,0,0,0.28,516.7,3496.75,26129815,99.71,0,0,0.29,515.27,3498.2,26129816,99.85,0,0,0.16,515.21,3498.26,26129817,99.85,0,0,0.15,515.19,3498.28,26129818,99.63,0.02,0.83,0.49,516.04,3497.41,26129819,99.83,0,0,0.24,516.65,3496.79,26129820,99.69,0,0,0.29,516.95,3496.51,26129821,99.82,0,0.01,0.15,516.93,3496.53,26129822,99.77,0.04,1.44,0.29,516.82,3496.63,26129823,99.65,0,0,0.33,517.21,3496.23,26129824,99.8,0,0,0.36,516.68,3496.75,26129825,99.81,0,0,0.3,516.68,3496.77,26129826,99.78,0,0.01,0.15,516.65,3496.8,26129827,99.8,0.01,0,0.19,516.59,3496.85,26129828,99.8,0.02,0.01,0.2,516.62,3496.82,26129829,90.22,9.21,0.26,64.96,548.06,3454.56,26129830,90.18,19.34,0.11,445.03,536.84,3433.43,26129831,80.58,0.05,1.68,4.78,877.06,3092.45,26129832,84.28,0.01,0.03,1.5,983.04,2986.39,26129833,96.17,0.03,0.85,3.27,1025.76,2943.71,26129834,99.5,0,0,0.61,640.68,3328.77,26129835,99.71,0,0,0.47,569.63,3400.07,26129836,99.82,0,0.03,0.23,568.56,3401.24,26129837,99.83,0,0,0.18,568.64,3401.16,26129838,99.56,0.16,0.8,0.2,569.38,3400.39,26129839,99.19,0.9,25.06,0.68,571.48,3398.25,26129840,99.27,0.87,23.46,0.75,571.87,3397.88,26129841,99.15,1.75,60.17,0.5,571.55,3398.18,26129842,99.79,0.04,1.53,0.26,571.56,3398.15,26129843,99.81,0,0.05,0.21,571.47,3398.23,26129844,99.69,0,0,0.58,572.13,3397.56,26129845,99.71,0,0,0.32,571.77,3397.95,26129846,99.83,0,0,0.14,571.84,3397.88,26129847,99.79,0,0,0.14,571.81,3397.9,26129848,99.81,0,0,0.16,571.78,3397.93,26129849,99.69,0,0,0.58,572.4,3397.3,26129850,99.6,0,0,0.32,571.54,3398.17,26129851,99.8,0,0,0.15,571.51,3398.2,26129852,99.82,0,0,0.16,571.49,3398.22,26129853,99.78,0,0.07,0.15,571.46,3398.24,26129854,99.59,0.13,0.13,0.64,571.95,3397.75,26129855,98.52,0.05,0.2,0.52,572.14,3397.53,26129856,99.79,0.05,2,0.28,571.93,3397.73,26129857,99.83,0.01,0.03,0.28,571.96,3397.69,26129858,99.84,0,0,0.17,572.01,3397.63,26129859,99.43,0,0,0.77,573,3396.59,26129860,99.75,0.02,0.05,0.37,572.44,3397.17,26129861,99.78,0,0,0.21,572.53,3397.08,26129862,99.78,0.02,0.03,0.21,572.48,3397.12,26129863,99.8,0,0.02,0.18,572.41,3397.19,26129864,99.66,0.03,0.03,0.4,572.8,3396.79,26129865,99.53,0.04,0.06,0.89,571.42,3398.19,26129866,99.74,0.01,0.02,0.23,571.08,3398.53,26129867,99.82,0.01,0.01,0.18,571.03,3398.58,26129868,99.8,0.01,0.02,0.21,571.01,3398.59,26129869,99.63,0,0,0.35,571.47,3398.12,26129870,99.69,0,0.01,0.54,571.82,3397.79,26129871,99.78,0.02,0.03,0.22,571.77,3397.84,26129872,80.51,0.08,0.56,8.09,894.87,3074.65,26129873,99.53,0,0.08,0.24,926.9,3042.59,26129874,99.81,0,0,0.2,570.95,3398.54,26129875,99.32,0,0,0.7,571.62,3397.89,26129876,99.8,0,0,0.14,570.94,3398.57,26129877,99.79,0,0,0.16,570.9,3398.6,26129878,99.84,0,0,0.14,570.88,3398.61,26129879,99.8,0,0,0.16,570.86,3398.63,26129880,99.51,0,0,0.8,571.86,3397.64,26129881,99.84,0,0,0.14,571.21,3398.29,26129882,99.81,0.02,0.52,0.16,571.2,3398.3,26129883,99.83,0,0,0.18,571.1,3398.39,26129884,99.83,0,0,0.14,571.1,3398.39,26129885,99.62,0,0,0.77,573.25,3396.26,26129886,99.81,0,0,0.16,572.93,3396.57,26129887,99.77,0,0,0.16,572.95,3396.54,26129888,99.84,0,0,0.15,572.94,3396.55,26129889,99.76,0,0,0.29,573.16,3396.33,26129890,99.53,0,0,0.74,573.02,3396.48,26129891,99.8,0,0,0.16,571.67,3397.83,26129892,99.82,0,0,0.14,571.64,3397.86,26129893,99.79,0.04,1.64,0.23,571.67,3397.82,26129894,99.82,0,0.01,0.14,571.72,3397.75,26129895,99.55,0,0,0.68,572.84,3396.64,26129896,99.81,0,0,0.21,572.67,3396.81,26129897,99.8,0.03,0.84,0.29,572.8,3396.67,26129898,99.83,0,0,0.18,572.79,3396.66,26129899,99.79,0,0,0.18,572.77,3396.68,26129900,99.59,0,0,0.48,573.27,3396.2,26129901,99.82,0,0,0.42,572.19,3397.28,26129902,99.83,0,0,0.15,571.4,3398.06,26129903,99.85,0,0,0.16,571.41,3398.05,26129904,99.83,0,0,0.14,571.38,3398.07,26129905,99.02,0.04,0.01,0.68,572.69,3396.77,26129906,96.34,0,0,142,584.82,3386.79,26129907,99.83,0,0,0.15,574.9,3394.84,26129908,99.83,0,0,0.15,573.92,3395.82,26129909,99.8,0,0,0.17,573.89,3395.84,26129910,99.71,0,0,0.31,574.13,3395.61,26129911,99.64,0,0,0.59,572.62,3397.16,26129912,99.78,0,0,0.16,571.74,3398.05,26129913,99.85,0,0,0.14,571.71,3398.07,26129914,99.85,0,0,0.14,571.7,3398.08,26129915,99.76,0,0,0.3,572.19,3397.6,26129916,99.65,0,0,0.61,572.17,3397.62,26129917,99.85,0,0,0.18,571.68,3398.1,26129918,99.82,0,0,0.15,571.67,3398.11,26129919,99.63,0,0,0.29,572.15,3397.6,26129920,99.76,0,0,0.31,571.91,3397.86,26129921,99.74,0,0,0.49,572.49,3397.28,26129922,99.89,0,0,0.18,572.52,3397.25,26129923,99.93,0,0,0.16,572.55,3397.22,26129924,99.92,0,0,0.15,572.53,3397.24,26129925,99.85,0,0,0.3,572.55,3397.24,26129926,99.76,0,0,0.41,572.56,3397.23,26129927,99.86,0,0,0.28,571.55,3398.23,26129928,99.85,0,0,0.16,571.53,3398.25,26129929,99.88,0,0,0.18,571.52,3398.26,26129930,99.83,0,0,0.32,572.26,3397.53,26129931,99.75,0,0,0.49,572.52,3397.27,26129932,99.9,0,0,0.21,571.98,3397.8,26129933,99.87,0,0,0.15,571.96,3397.82,26129934,99.9,0,0,0.18,571.92,3397.85,26129935,99.72,0,0,0.32,572.16,3397.64,26129936,99.69,0,0.02,0.55,572.87,3396.92,26129937,99.87,0,0,0.16,572.26,3397.52,26129938,99.85,0,0,0.14,572.22,3397.55,26129939,97.54,0,0,0.14,572.2,3397.58,26129940,99.66,0,0,0.31,571.05,3398.74,26129941,99.85,0,0,0.14,570.99,3398.8,26129942,99.61,0,0,0.58,571.8,3397.99,26129943,99.82,0,0,0.15,571.42,3398.36,26129944,99.9,0,0,0.16,571.42,3398.36,26129945,99.71,0,0,0.34,571.07,3398.72,26129946,99.9,0,0,0.15,570.79,3399,26129947,99.74,0,0,0.55,572.23,3397.56,26129948,99.92,0,0,0.15,572.07,3397.71,26129949,99.76,0,0,0.3,572.05,3397.71,26129950,99.81,0,0,0.34,572.53,3397.24,26129951,99.9,0,0,0.15,572.54,3397.23,26129952,99.74,0,0,0.57,572.7,3397.07,26129953,99.87,0,0,0.17,572.25,3397.51,26129954,99.85,0,0,0.14,572.25,3397.52,26129955,99.88,0,0,0.36,572.27,3397.52,26129956,99.92,0,0,0.12,572.24,3397.54,26129957,99.75,0,0,0.46,572.83,3396.95,26129958,99.89,0,0,0.3,572.47,3397.31,26129959,99.88,0,0,0.14,572.46,3397.31,26129960,99.82,0,0,0.33,572.72,3397.06,26129961,99.93,0,0,0.16,572.7,3397.08,26129962,99.76,0,0,0.54,573.04,3396.74,26129963,99.91,0,0,0.16,572.68,3397.09,26129964,99.92,0,0,0.18,571.94,3397.83,26129965,99.87,0,0,0.35,571.94,3397.85,26129966,99.92,0,0,0.13,571.92,3397.86,26129967,99.8,0,0,0.39,572.68,3397.1,26129968,99.91,0.03,1.03,0.37,572.14,3397.62,26129969,99.91,0,0.02,0.14,572.24,3397.51,26129970,99.82,0,0,0.3,572.32,3397.45,26129971,99.92,0,0,0.16,572.29,3397.48,26129972,99.94,0,0,0.15,572.27,3397.49,26129973,99.73,0,0,0.6,573.42,3396.33,26129974,99.91,0,0,0.14,572.74,3397,26129975,99.81,0,0,0.33,572.74,3397.02,26129976,99.9,0,0,0.14,572.72,3397.03,26129977,99.89,0,0,0.2,572.47,3397.28,26129978,99.77,0,0,0.59,573.23,3396.51,26129979,99.69,0,0,0.3,572.91,3396.81,26129980,99.81,0,0,0.29,571.99,3397.75,26129981,99.91,0,0.01,0.17,571.92,3397.81,26129982,99.93,0,0,0.14,571.91,3397.82,26129983,99.78,0,0,0.54,572.34,3397.39,26129984,99.89,0,0,0.15,571.63,3398.09,26129985,99.75,0,0,0.3,571.17,3398.57,26129986,99.88,0,0,0.14,571.14,3398.59,26129987,99.86,0,0,0.16,571.18,3398.55,26129988,99.77,0,0,0.57,572.32,3397.41,26129989,99.92,0,0,0.14,572.52,3397.2,26129990,99.87,0,0,0.32,572.76,3396.97,26129991,99.93,0,0,0.18,572.75,3396.98,26129992,99.93,0,0,0.18,572.74,3396.98,26129993,99.78,0,0,0.55,572.85,3396.87,26129994,99.9,0,0,0.16,572,3397.72,26129995,99.83,0,0,0.3,572.72,3397.02,26129996,99.91,0,0,0.14,572.72,3397.02,26129997,99.89,0,0,0.16,572.71,3397.02,26129998,99.79,0,0,0.39,572.97,3396.76,26129999,99.92,0,0,0.29,572.43,3397.29,26130000,99.78,0,0,0.32,572.93,3396.8,26130001,99.93,0,0,0.13,572.93,3396.8,26130002,99.93,0,0,0.14,572.9,3396.82,26130003,99.75,0,0.01,0.52,573.51,3396.21,26130004,99.85,0.06,2.91,0.27,572.49,3397.22,26130005,99.83,0,0.01,0.38,572.26,3397.46,26130006,99.8,0.03,0.12,0.23,571.85,3397.87,26130007,99.89,0.04,0.05,0.33,570.57,3399.12,26130008,81.61,0.04,0.89,4.21,796.96,3172.7,26130009,99.2,0.05,1.06,1.09,858.09,3111.47,26130010,81.33,0.07,1.04,4.57,749.19,3220.26,26130011,99.88,0.05,1.25,0.5,1023.14,2946.26,26130012,80.27,0.05,1.02,4.3,863.14,3106.24,26130013,99.86,0.03,1.03,0.53,1034.96,2934.42,26130014,99.43,0,0,0.66,596.36,3373.04,26130015,99.79,0,0,0.33,577.02,3392.39,26130016,99.87,0,0,0.16,577.08,3392.33,26130017,99.9,0,0,0.2,577.17,3392.23,26130018,99.92,0,0,0.14,577.15,3392.25,26130019,99.78,0,0,0.54,578.87,3390.53,26130020,99.8,0,0,0.3,578.87,3390.55,26130021,99.91,0,0,0.16,578.86,3390.55,26130022,99.9,0,0,0.14,578.91,3390.5,26130023,99.91,0,0,0.16,578.98,3390.42,26130024,99.76,0,0,0.59,579.81,3389.59,26130025,99.85,0,0,0.3,579.2,3390.23,26130026,99.89,0,0,0.14,579.2,3390.25,26130027,99.86,0,0,0.16,579.17,3390.28,26130028,99.88,0.04,1.68,0.18,579.15,3390.29,26130029,99.75,0,0.01,0.93,579.58,3389.85,26130030,99.81,0,0,0.3,579.16,3390.28,26130031,99.9,0,0,0.16,578.49,3390.95,26130032,99.87,0,0,0.14,578.46,3390.97,26130033,99.92,0,0,0.15,578.44,3390.99,26130034,99.77,0,0,0.48,578.91,3390.52,26130035,99.83,0.02,2.15,0.66,578.92,3390.52,26130036,99.86,0.05,3.4,0.3,579.08,3390.33,26130037,99.83,0.04,1.48,0.46,578.94,3390.45,26130038,99.88,0,0,0.25,570.11,3400.56,26130039,99.57,0,0,0.57,570.2,3400.43,26130040,99.81,0,0,0.46,570.06,3400.59,26130041,99.9,0,0,0.17,570.03,3400.62,26130042,99.93,0,0,0.17,570.01,3400.63,26130043,99.9,0,0,0.17,569.99,3400.64,26130044,99.75,0,0,0.37,570.38,3400.27,26130045,99.78,0,0,0.55,569.03,3401.64,26130046,99.89,0,0,0.2,568.98,3401.69,26130047,99.9,0,0,0.2,568.74,3401.92,26130048,99.92,0,0,0.2,568.2,3402.46,26130049,99.88,0,0,0.2,568.12,3402.53,26130050,99.49,0,0,0.75,569.05,3401.61,26130051,99.87,0,0,0.2,568.35,3402.31,26130052,99.88,0,0,0.16,568.33,3402.33,26130053,99.83,0,0,0.19,568.32,3402.33,26130054,99.9,0,0,0.2,568.29,3402.36,26130055,99.67,0,0,0.78,568.93,3401.73,26130056,99.88,0,0,0.21,568.76,3401.9,26130057,99.89,0,0,0.2,568.74,3401.92,26130058,99.9,0,0,0.2,568.72,3401.93,26130059,99.92,0,0,0.22,568.7,3401.95,26130060,99.68,0,0,0.77,569.91,3400.76,26130061,99.81,0,0,0.14,569.84,3400.81,26130062,99.87,0,0,0.15,569.83,3400.82,26130063,99.89,0,0,0.16,569.8,3400.85,26130064,99.86,0,0,0.14,569.78,3400.86,26130065,99.62,0,0,0.79,569.99,3400.67,26130066,99.15,0,0,0.19,569.49,3401.16,26130067,99.9,0,0,0.17,568.75,3401.9,26130068,99.9,0,0,0.14,568.74,3401.9,26130069,99.76,0,0,0.29,568.94,3401.68,26130070,99.7,0,0,0.73,568.89,3401.75,26130071,99.88,0,0,0.18,569.05,3401.58,26130072,99.91,0,0,0.14,569.09,3401.54,26130073,99.91,0,0,0.18,569.08,3401.55,26130074,99.88,0,0,0.18,569.04,3401.58,26130075,99.68,0,0,0.57,569.12,3401.52,26130076,99.9,0,0,0.27,569.26,3401.36,26130077,99.89,0,0,0.21,569.25,3401.38,26130078,99.9,0,0,0.14,569.22,3401.39,26130079,99.91,0,0,0.15,569.2,3401.41,26130080,99.6,0,0,0.54,568.93,3401.7,26130081,99.89,0,0,0.36,569.18,3401.45,26130082,99.88,0,0,0.17,569.2,3401.43,26130083,99.87,0,0,0.14,569.33,3401.29,26130084,99.92,0,0,0.18,569.31,3401.3,26130085,99.79,0,0,0.35,568.53,3402.1,26130086,99.75,0,0,0.57,569.4,3401.23,26130087,99.92,0,0,0.18,569.01,3401.61,26130088,99.89,0,0.01,0.19,568.99,3401.63,26130089,99.9,0,0,0.19,568.94,3401.67,26130090,99.8,0,0,0.31,568.46,3402.17,26130091,99.76,0,0,0.57,569.42,3401.21,26130092,99.92,0,0,0.13,569.35,3401.27,26130093,99.92,0,0,0.16,569.33,3401.28,26130094,99.88,0,0,0.2,569.31,3401.3,26130095,99.78,0,0.01,0.35,569.78,3400.85,26130096,99.72,0,0,0.54,569.92,3400.71,26130097,99.85,0,0,0.18,569.47,3401.15,26130098,99.88,0,0,0.14,569.44,3401.17,26130099,99.76,0.01,0.01,0.31,570.03,3400.56,26130100,99.76,0,0,0.36,569.03,3401.56,26130101,99.76,0,0,0.52,569.91,3400.68,26130102,99.9,0,0,0.16,569.92,3400.66,26130103,99.88,0.01,0.03,0.16,570.01,3400.57,26130104,99.86,0,0,0.14,569.33,3401.25,26130105,99.75,0,0,0.35,569.25,3401.35,26130106,99.74,0,0,0.64,569.74,3400.85,26130107,99.88,0,0,0.18,569.27,3401.32,26130108,99.86,0,0,0.18,569.27,3401.31,26130109,99.92,0,0,0.19,569.22,3401.36,26130110,99.84,0,0,0.37,569.44,3401.15,26130111,99.78,0,0,0.58,569.83,3400.75,26130112,99.88,0,0,0.18,569.54,3401.04,26130113,99.88,0,0,0.18,569.5,3401.08,26130114,99.88,0,0,0.15,569.46,3401.11,26130115,99.81,0,0,0.3,568.48,3402.12,26130116,99.76,0,0,0.49,568.73,3401.86,26130117,99.83,0,0,0.21,568.33,3402.26,26130118,99.88,0,0,0.15,568.3,3402.28,26130119,99.9,0,0,0.16,568.25,3402.32,26130120,99.84,0,0,0.31,569,3401.6,26130121,99.68,0,0,0.35,569.6,3400.99,26130122,99.88,0,0,0.37,569.68,3400.9,26130123,99.9,0,0,0.14,569.7,3400.88,26130124,99.9,0,0,0.14,569.27,3401.31,26130125,99.75,0,0,0.3,568.29,3402.3,26130126,99.91,0,0,0.16,568.22,3402.37,26130127,99.73,0,0,0.59,569.88,3400.71,26130128,99.85,0,0,0.14,569.44,3401.13,26130129,99.79,0.01,0,0.3,569.55,3401.01,26130130,99.8,0,0,0.3,570,3400.57,26130131,99.89,0,0,0.15,569.97,3400.6,26130132,99.69,0,0,0.58,570.24,3400.32,26130133,99.9,0,0,0.16,569.65,3400.9,26130134,99.87,0,0,0.14,569.77,3400.8,26130135,99.83,0,0,0.3,570.05,3400.54,26130136,99.87,0,0,0.18,570.02,3400.57,26130137,99.73,0,0,0.57,570.07,3400.5,26130138,99.87,0,0,0.14,569.22,3401.35,26130139,99.9,0,0,0.18,569.19,3401.38,26130140,99.8,0,0,0.31,569.44,3401.15,26130141,99.85,0,0,0.13,569.42,3401.16,26130142,99.69,0,0,0.5,569.75,3400.83,26130143,99.9,0,0,0.19,569.5,3401.07,26130144,99.88,0,0,0.15,568.91,3401.66,26130145,99.77,0,0,0.38,569.53,3401.05,26130146,99.84,0.05,1.97,0.14,569.37,3401.2,26130147,99.73,0,0.05,0.57,569.44,3401.13,26130148,99.89,0,0,0.25,569.18,3401.38,26130149,99.85,0.12,4.59,0.24,569.19,3401.34,26130150,99.77,0,0.03,0.37,569.01,3401.51,26130151,99.9,0,0,0.14,568.93,3401.59,26130152,99.71,0,0,0.41,569.52,3401,26130153,99.93,0,0,0.31,568.4,3402.12,26130154,99.91,0,0.01,0.16,568.38,3402.13,26130155,99.72,0.03,0.11,0.35,568.85,3401.68,26130156,99.75,0.08,0.19,0.48,568.89,3401.63,26130157,99.73,0.01,0.01,0.45,569.32,3401.2,26130158,99.89,0,0,0.4,569.23,3401.29,26130159,99.77,0,0,0.32,569.23,3401.26,26130160,99.74,0.01,0.01,0.41,569.19,3401.32,26130161,99.93,0.01,0.01,0.15,569.12,3401.39,26130162,99.92,0,0,0.14,569.09,3401.41,26130163,86.99,0.05,0.06,1.58,646.87,3323.62,26130164,92.76,0.03,0.93,3.72,1037.75,2932.79,26130165,99.63,0.02,0.05,0.35,716.78,3253.78,26130166,99.83,0,0,0.19,564.56,3406,26130167,99.88,0.01,0,0.23,564.84,3405.71,26130168,81.12,0.03,0.84,4.82,878.02,3092.51,26130169,99.78,0,0.06,0.25,786.8,3183.73,26130170,92.25,0.01,0,0.83,600.25,3370.3,26130171,88.25,0.03,0.91,4.05,1049.74,2920.79,26130172,99.5,0.02,0.91,0.19,619.74,3350.8,26130173,99.7,0,0.01,0.49,567.24,3403.29,26130174,99.88,0,0,0.33,567.08,3403.45,26130175,99.75,0,0,0.32,566.59,3403.95,26130176,99.89,0,0,0.16,566.55,3403.99,26130177,99.86,0,0,0.14,566.53,3404,26130178,99.68,0,0,0.55,567.5,3403.03,26130179,99.86,0,0,0.14,567.46,3403.06,26130180,99.69,0,0,0.31,566.99,3403.56,26130181,99.79,0,0,0.14,566.97,3403.57,26130182,99.89,0,0,0.16,566.94,3403.6,26130183,99.72,0,0,0.4,567.75,3402.78,26130184,99.88,0,0,0.28,568.1,3402.43,26130185,99.76,0,0,0.34,567.16,3403.38,26130186,99.85,0,0,0.14,567.1,3403.44,26130187,99.88,0,0,0.13,567.07,3403.46,26130188,99.75,0,0,0.31,567.4,3403.13,26130189,99.64,0,0,0.56,567.26,3403.24,26130190,99.76,0,0,0.31,566.55,3403.97,26130191,99.88,0,0,0.16,566.5,3404.01,26130192,99.86,0,0,0.14,566.48,3404.03,26130193,99.87,0,0,0.14,566.46,3404.04,26130194,99.7,0,0,0.59,567.75,3402.76,26130195,99.83,0,0,0.3,567.02,3403.52,26130196,99.85,0,0,0.14,566.86,3403.7,26130197,99.82,0,0.01,0.23,566.82,3403.73,26130198,99.88,0.02,0.76,0.14,566.8,3403.74,26130199,99.58,0.04,1.69,0.63,567.61,3402.91,26130200,99.82,0,0.03,0.35,567,3403.54,26130201,99.84,0,0,0.16,566.95,3403.58,26130202,99.9,0,0,0.14,566.93,3403.6,26130203,99.86,0,0,0.16,566.91,3403.61,26130204,99.75,0,0,0.58,568.49,3402.03,26130205,99.81,0,0,0.31,567.85,3402.68,26130206,99.89,0,0,0.16,567.01,3403.52,26130207,99.88,0,0,0.14,566.82,3403.7,26130208,99.88,0,0,0.16,566.79,3403.73,26130209,99.75,0,0,0.39,567.44,3403.07,26130210,99.73,0,0,0.43,566.29,3404.24,26130211,99.88,0,0,0.19,566.27,3404.26,26130212,99.91,0,0,0.14,566.23,3404.29,26130213,99.9,0,0,0.15,566.22,3404.3,26130214,99.77,0,0,0.49,566.96,3403.55,26130215,99.8,0,0,0.42,567.78,3402.75,26130216,99.9,0,0,0.31,555.76,3414.86,26130217,99.88,0.01,0.04,0.18,515.46,3455.5,26130218,99.89,0,0,0.2,515.59,3455.37,26130219,99.52,0,0,0.68,515.91,3455.02,26130220,99.78,0,0,0.36,514.63,3456.33,26130221,99.9,0,0,0.15,514.58,3456.37,26130222,99.89,0,0,0.16,514.74,3456.21,26130223,99.92,0,0,0.15,514.72,3456.22,26130224,99.89,0,0,0.16,514.7,3456.24,26130225,99.64,0,0,0.68,515.99,3454.97,26130226,99.86,0,0,0.16,515.42,3455.54,26130227,99.9,0,0,0.14,515.41,3455.54,26130228,99.88,0,0,0.15,515.38,3455.56,26130229,99.85,0,0,0.14,515.36,3455.58,26130230,99.63,0,0,0.76,516,3454.95,26130231,99.89,0,0,0.16,515.59,3455.35,26130232,99.85,0,0,0.15,515.56,3455.38,26130233,99.91,0,0,0.16,515.55,3455.38,26130234,99.92,0,0,0.17,515.53,3455.4,26130235,99.65,0,0,0.72,516.52,3454.43,26130236,99.91,0,0,0.15,516.18,3454.77,26130237,99.93,0,0,0.14,516.17,3454.77,26130238,99.86,0,0,0.17,516.16,3454.78,26130239,99.9,0,0,0.14,516.13,3454.8,26130240,99.63,0,0,0.73,516.42,3454.53,26130241,99.88,0,0,0.18,515.87,3455.07,26130242,98.48,0,0,0.18,515.85,3455.09,26130243,99.87,0,0,0.14,515.83,3455.11,26130244,99.91,0,0,0.17,515.81,3455.12,26130245,99.64,0,0,0.79,516.14,3454.81,26130246,99.92,0,0,0.15,516.04,3454.9,26130247,99.94,0,0,0.14,516.09,3454.85,26130248,99.91,0,0,0.16,516.19,3454.75,26130249,99.75,0,0,0.29,515.93,3454.98,26130250,99.59,0,0,0.7,515.46,3455.47,26130251,99.93,0,0,0.2,515.39,3455.53,26130252,99.87,0,0,0.19,515.37,3455.55,26130253,99.83,0,0,0.18,515.34,3455.57,26130254,99.87,0,0,0.14,515.33,3455.58,26130255,99.64,0,0,0.72,516,3454.93,26130256,99,0,0,0.2,516.05,3454.88,26130257,99.89,0,0,0.21,515.8,3455.12,26130258,99.84,0,0,0.18,515.84,3455.07,26130259,99.92,0,0,0.16,515.92,3454.99,26130260,99.71,0,0,0.68,516.32,3454.62,26130261,99.9,0,0,0.25,516.16,3454.78,26130262,99.88,0,0,0.16,516.13,3454.8,26130263,99.84,0,0,0.14,516.13,3454.8,26130264,99.9,0,0,0.15,516.1,3454.82,26130265,99.84,0,0,0.34,515.87,3455.07,26130266,99.71,0,0,0.57,515.97,3454.97,26130267,99.81,0,0,0.14,515.57,3455.36,26130268,99.85,0,0,0.14,515.54,3455.38,26130269,99.88,0,0,0.14,515.54,3455.38,26130270,99.81,0,0,0.32,515.05,3455.89,26130271,94.98,0.28,0.01,260.19,528.36,3442.22,26130272,99.9,0,0,0.23,518.51,3451.63,26130273,99.89,0,0,0.18,518.48,3451.65,26130274,99.87,0,0,0.18,518.48,3451.65,26130275,99.73,0,0,0.33,518.37,3451.77,26130276,99.72,0,0,0.59,517.48,3452.69,26130277,99.9,0,0,0.18,515.76,3454.42,26130278,99.49,0,0,0.31,516.07,3454.1,26130279,99.73,0,0,0.33,515.71,3454.42,26130280,99.81,0,0,0.37,514.96,3455.19,26130281,99.77,0,0,0.56,515.72,3454.45,26130282,99.92,0,0,0.18,515.89,3454.28,26130283,99.86,0,0,0.19,515.86,3454.31,26130284,99.9,0,0,0.16,515.87,3454.35,26130285,99.78,0,0,0.34,515.17,3455.07,26130286,99.71,0,0,0.62,515.89,3454.34,26130287,99.85,0,0,0.15,516.19,3454.05,26130288,99.84,0,0,0.19,516.24,3454,26130289,99.9,0,0,0.17,516.22,3454.02,26130290,99.73,0,0,0.35,516.21,3454.04,26130291,99.67,0,0,0.56,516.61,3453.64,26130292,99.89,0,0,0.19,516.41,3453.83,26130293,99.84,0,0,0.16,516.39,3453.84,26130294,99.89,0,0,0.14,516.37,3453.87,26130295,99.77,0,0,0.32,516.38,3453.87,26130296,99.65,0,0,0.38,516.79,3453.45,26130297,99.88,0,0,0.4,514.86,3455.38,26130298,99.82,0,0,0.18,514.84,3455.4,26130299,99.84,0,0,0.18,514.94,3455.29,26130300,99.82,0,0,0.32,516.46,3453.79,26130301,99.9,0,0,0.15,516.46,3453.78,26130302,99.26,0,0,0.59,517.09,3453.15,26130303,99.8,0,0,0.18,516.43,3453.8,26130304,99.88,0,0,0.16,516.4,3453.82,26130305,99.73,0,0,0.33,515.2,3455.05,26130306,99.85,0,0,0.16,515.16,3455.08,26130307,98.94,0,0,0.53,516.44,3453.8,26130308,99.76,0,0,0.15,516.35,3453.89,26130309,99.75,0,0,0.33,516.33,3453.88,26130310,99.74,0,0,0.32,515.59,3454.63,26130311,99.87,0,0,0.16,515.68,3454.53,26130312,99.73,0,0,0.53,516.38,3453.83,26130313,99.9,0,0,0.14,516.19,3454.01,26130314,99.87,0,0,0.15,516.17,3454.05,26130315,99.76,0,0,0.33,515.98,3454.26,26130316,99.88,0,0,0.18,515.91,3454.33,26130317,99.71,0,0,0.57,516.01,3454.22,26130318,99.85,0,0,0.16,515.63,3454.6,26130319,99.82,0,0,0.15,515.61,3454.61,26130320,99.71,0,0,0.31,515.61,3454.63,26130321,99.86,0,0,0.16,515.59,3454.64,26130322,99.7,0,0,0.39,516.14,3454.09,26130323,99.83,0,0,0.3,516.04,3454.18,26130324,99.84,0,0,0.15,516.2,3454.02,26130325,99.67,0,0,0.32,516.45,3453.79,26130326,99.83,0,0,0.15,516.44,3453.79,26130327,99.68,0,0,0.54,516.92,3453.31,26130328,99.85,0,0,0.19,516.41,3453.81,26130329,99.8,0,0,0.16,516.38,3453.84,26130330,99.79,0,0,0.34,516.64,3453.6,26130331,99.83,0,0,0.13,516.61,3453.62,26130332,99.67,0,0,0.41,516.9,3453.33,26130333,99.82,0,0,0.28,516.07,3454.15,26130334,99.81,0,0,0.14,516.06,3454.16,26130335,99.73,0,0,0.33,516.3,3453.93,26130336,99.85,0,0,0.16,516.41,3453.82,26130337,99.82,0,0,0.18,516.08,3454.15,26130338,99.69,0,0,0.54,516.52,3453.7,26130339,99.66,0,0,0.3,516.65,3453.55,26130340,99.74,0,0,0.32,515.94,3454.27,26130341,99.86,0,0,0.16,515.9,3454.31,26130342,99.82,0,0,0.14,515.88,3454.32,26130343,99.63,0,0,0.55,516.66,3453.54,26130344,99.82,0,0,0.14,516.33,3453.87,26130345,99.74,0,0.01,0.33,514.65,3455.56,26130346,99.84,0,0.01,0.14,514.32,3455.89,26130347,99.83,0,0,0.16,514.4,3455.8,26130348,99.69,0,0,0.55,515.79,3454.41,26130349,99.83,0,0,0.17,515.71,3454.49,26130350,99.71,0,0,0.33,515.95,3454.26,26130351,99.83,0,0,0.14,515.94,3454.27,26130352,99.84,0,0,0.16,515.92,3454.29,26130353,99.69,0,0,0.55,516.3,3453.9,26130354,99.82,0,0,0.14,515.38,3454.81,26130355,99.78,0,0,0.38,515.64,3454.57,26130356,99.83,0,0,0.16,515.6,3454.61,26130357,99.85,0,0,0.14,515.58,3454.63,26130358,99.7,0,0,0.49,516.1,3454.09,26130359,99.81,0,0,0.25,515.62,3454.56,26130360,99.67,0,0,0.32,514.3,3455.91,26130361,99.8,0,0,0.16,514.23,3455.97,26130362,99.79,0,0,0.14,514.21,3455.99,26130363,99.67,0,0,0.44,514.98,3455.21,26130364,99.83,0,0,0.34,515.64,3454.54,26130365,99.75,0,0,0.34,515.4,3454.8,26130366,99.81,0,0,0.14,515.37,3454.82,26130367,99.82,0,0,0.16,515.36,3454.83,26130368,99.67,0,0,0.39,515.71,3454.48,26130369,99.76,0,0,0.43,515.79,3454.37,26130370,99.75,0,0,0.34,515.79,3454.39,26130371,99.85,0,0,0.15,515.9,3454.28,26130372,99.75,0,0,0.14,515.95,3454.22,26130373,99.62,0,0,0.42,516.27,3453.9,26130374,99.83,0,0,0.32,515.89,3454.26,26130375,99.69,0,0,0.36,514.68,3455.49,26130376,99.82,0,0,0.17,514.66,3455.51,26130377,99.8,0,0,0.2,514.63,3455.53,26130378,99.83,0,0,0.15,514.62,3455.54,26130379,99.67,0,0,0.53,515.6,3454.56,26130380,99.68,0,0,0.33,515.34,3454.83,26130381,99.76,0,0,0.16,515.3,3454.87,26130382,99.83,0,0,0.14,515.29,3454.88,26130383,99.83,0,0,0.14,515.39,3454.77,26130384,99.68,0,0,0.56,516.44,3453.72,26130385,99.77,0,0,0.34,515.93,3454.24,26130386,99.84,0,0,0.14,515.91,3454.26,26130387,99.84,0,0,0.17,515.88,3454.28,26130388,99.83,0,0,0.14,515.88,3454.28,26130389,99.63,0,0,0.52,516.21,3453.94,26130390,99.71,0,0,0.41,515.19,3454.99,26130391,99.81,0,0,0.14,515.09,3455.08,26130392,99.79,0,0,0.13,515.08,3455.09,26130393,99.82,0,0,0.16,515.05,3455.11,26130394,99.68,0,0.02,0.43,515.5,3454.66,26130395,99.7,0,0,0.48,515.9,3454.27,26130396,99.81,0,0,0.18,515.9,3454.26,26130397,99.81,0,0,0.18,515.7,3454.46,26130398,99.79,0,0,0.14,515.62,3454.54,26130399,99.5,0,0,0.65,516.19,3453.94,26130400,99.72,0,0,0.37,516.07,3454.07,26130401,99.85,0,0,0.15,516.06,3454.08,26130402,99.79,0,0,0.16,516.04,3454.1,26130403,99.78,0,0,0.15,516.02,3454.11,26130404,99.62,0,0.02,0.56,516.42,3453.71,26130405,99.74,0,0,0.33,515.91,3454.23,26130406,99.74,0,0,0.13,515.89,3454.25,26130407,99.79,0,0,0.16,515.87,3454.27,26130408,99.82,0,0,0.14,515.85,3454.28,26130409,99.68,0,0,0.32,516.18,3453.96,26130410,99.73,0,0,0.52,515.84,3454.32,26130411,99.83,0,0,0.16,515.82,3454.34,26130412,99.83,0,0,0.14,515.8,3454.36,26130413,99.83,0,0,0.16,515.78,3454.38,26130414,99.8,0,0,0.13,515.76,3454.39,26130415,99.57,0,0,0.71,516.71,3453.45,26130416,99.82,0,0,0.16,516.12,3454.04,26130417,99.82,0,0,0.14,516.15,3454,26130418,99.82,0,0,0.15,516.13,3454.02,26130419,99.81,0,0,0.16,516.11,3454.04,26130420,99.38,0,0,0.76,515.98,3454.18,26130421,99.79,0,0,0.15,515.6,3454.56,26130422,99.85,0,0,0.16,515.58,3454.58,26130423,98.06,0,0,0.14,515.55,3454.6,26130424,99.83,0,0,0.16,515.52,3454.62,26130425,99.61,0,0,0.73,516.37,3453.79,26130426,99.82,0,0,0.15,515.95,3454.21,26130427,99.85,0,0,0.17,515.82,3454.33,26130428,99.81,0,0,0.14,515.93,3454.22,26130429,99.65,0,0,0.31,516.16,3453.97,26130430,99.51,0.01,0.61,0.79,515.67,3454.46,26130431,99.82,0,0,0.19,515.93,3454.2,26130432,99.78,0,0,0.16,515.91,3454.23,26130433,99.79,0,0,0.14,515.87,3454.26,26130434,99.83,0,0,0.17,515.86,3454.27,26130435,99.63,0,0,0.68,516.2,3453.94,26130436,99.84,0,0,0.21,515.84,3454.3,26130437,99.83,0,0,0.18,515.81,3454.32,26130438,98.64,0,0.01,0.17,515.78,3454.35,26130439,99.83,0,0.02,0.17,515.87,3454.25,26130440,97.52,0,0.01,0.73,516.6,3453.54,26130441,99.82,0,0,0.14,516.1,3454.03,26130442,99.82,0,0,0.17,516.08,3454.05,26130443,99.67,0,0,0.16,516.06,3454.06,26130444,99.46,0,0,0.15,516.04,3454.08,26130445,99.66,0,0,0.49,516.82,3453.32,26130446,99.81,0,0,0.4,516.27,3453.86,26130447,99.83,0,0,0.15,516.25,3453.88,26130448,99.8,0,0,0.14,516.34,3453.79,26130449,99.85,0,0,0.14,516.39,3453.72,26130450,99.59,0,0,0.35,516.4,3453.74,26130451,99.71,0,0,0.52,516.72,3453.41,26130452,99.82,0,0,0.15,516.35,3453.77,26130453,99.84,0,0,0.17,516.33,3453.8,26130454,99.84,0,0,0.15,516.29,3453.82,26130455,99.71,0,0,0.35,515.08,3455.05,26130456,99.7,0,0,0.54,516.64,3453.49,26130457,98.53,0,0,0.2,516.16,3453.97,26130458,99.82,0,0,0.15,516.06,3454.07,26130459,99.67,0,0,0.29,516.42,3453.68,26130460,99.72,0,0,0.32,515.98,3454.14,26130461,98.79,0,0.02,0.61,516.99,3453.12,26130462,99.82,0,0.01,0.18,516.56,3453.54,26130463,99.84,0,0,0.15,516.56,3453.54,26130464,99.85,0,0,0.15,516.52,3453.57,26130465,99.73,0,0,0.32,515.34,3454.77,26130466,99.65,0,0,0.48,516,3454.11,26130467,99.84,0,0,0.21,516,3454.11,26130468,99.8,0,0,0.14,515.97,3454.13,26130469,99.84,0,0,0.15,516.09,3454,26130470,99.71,0,0,0.31,515.66,3454.45,26130471,99.07,0,0,0.53,516.35,3453.75,26130472,99.83,0,0,0.15,516.34,3453.76,26130473,99.81,0,0,0.14,516.32,3453.78,26130474,99.85,0,0,0.15,516.3,3453.79,26130475,99.77,0,0,0.32,516.3,3453.81,26130476,99.7,0,0,0.44,516.95,3453.18,26130477,99.89,0,0,0.28,516.26,3453.86,26130478,99.88,0,0,0.17,516.24,3453.87,26130479,99.9,0,0,0.16,516.23,3453.88,26130480,99.75,0,0,0.3,515.06,3455.06,26130481,99.73,0,0,0.49,515.7,3454.42,26130482,99.89,0,0,0.21,516.38,3453.74,26130483,99.9,0,0,0.14,516.36,3453.78,26130484,98.77,0,0,0.15,516.34,3453.79,26130485,98.13,0,0,0.36,516.1,3454.05,26130486,99.73,0,0,0.56,516.47,3453.67,26130487,99.93,0,0,0.14,516.3,3453.83,26130488,99.89,0,0,0.15,516.28,3453.85,26130489,98.87,0,0,0.33,516.06,3454.04,26130490,99.4,0,0,0.3,516.49,3453.63,26130491,99.89,0,0,0.16,516.46,3453.65,26130492,98.9,0,0,0.54,517.1,3453.01,26130493,99.91,0,0,0.14,516.4,3453.71,26130494,99.92,0,0,0.15,516.38,3453.74,26130495,99.81,0,0,0.32,515.26,3454.88,26130496,99.37,0,0,0.14,514.9,3455.23,26130497,99.69,0,0,0.56,516.01,3454.12,26130498,99.9,0,0,0.15,515.84,3454.28,26130499,99.28,0,0,0.13,515.81,3454.31,26130500,99.79,0,0,0.32,514.87,3455.27,26130501,99.87,0,0,0.15,514.81,3455.33,26130502,99.77,0,0,0.55,515.54,3454.6,26130503,99.67,0,0,0.14,515.26,3454.87,26130504,99.89,0,0,0.15,515.36,3454.76,26130505,99.84,0,0,0.3,515.91,3454.23,26130506,99.89,0,0,0.14,515.9,3454.24,26130507,99.76,0,0,0.53,516.24,3453.89,26130508,99.88,0,0,0.15,515.86,3454.26,26130509,99.9,0,0,0.14,515.84,3454.28,26130510,99.84,0,0,0.3,515.85,3454.29,26130511,99.85,0,0,0.17,515.82,3454.32,26130512,99.68,0,0,0.56,516.25,3453.88,26130513,99.92,0,0,0.16,515.77,3454.36,26130514,99.86,0,0,0.15,515.75,3454.38,26130515,99.8,0,0,0.33,515.76,3454.39,26130516,99.85,0,0,0.14,515.87,3454.27,26130517,99.4,0,0,0.57,516.1,3454.04,26130518,99.91,0,0,0.14,515.63,3454.5,26130519,99.69,0,0,0.3,515.85,3454.27,26130520,99.83,0,0,0.3,515.86,3454.28,26130521,99.9,0,0,0.16,515.82,3454.31,26130522,99.75,0,0,0.54,516.24,3453.89,26130523,99.89,0,0,0.15,516.02,3454.1,26130524,99.78,0,0,0.14,516.02,3454.1,26130525,99.78,0,0,0.32,514.31,3455.82,26130526,99.91,0,0,0.15,514.27,3455.86,26130527,99.73,0,0,0.55,514.89,3455.23,26130528,98.13,0,0,0.14,515.89,3454.23,26130529,99.9,0,0,0.14,515.87,3454.25,26130530,99.79,0,0,0.32,516.11,3454.02,26130531,99.88,0,0,0.14,516.09,3454.04,26130532,99.88,0,0,0.16,516.08,3454.05,26130533,99.7,0,0,0.53,516,3454.11,26130534,99.91,0,0,0.15,515.53,3454.58,26130535,98.58,0,0,0.34,514.91,3455.21,26130536,99.9,0,0,0.13,514.78,3455.34,26130537,99.9,0,0,0.16,514.76,3455.36,26130538,99.55,0,0,0.53,516.02,3454.09,26130539,99.89,0,0,0.18,516.13,3453.98,26130540,98.6,0,0,10.86,515.15,3455.33,26130541,99.88,0,0,0.16,515.07,3455.43,26130542,99.85,0,0,0.14,515.04,3455.45,26130543,99.74,0,0,0.53,515.08,3455.41,26130544,99.84,0,0,0.14,514.51,3455.99,26130545,99.83,0,0,0.32,515.74,3454.8,26130546,99.52,0,0,0.14,515.73,3454.81,26130547,99.91,0,0,0.16,515.71,3454.82,26130548,99.74,0,0,0.57,515.89,3454.63,26130549,99.78,0,0,0.31,516.15,3454.36,26130550,99.85,0,0,0.3,515.91,3454.61,26130551,99.8,0,0,0.16,516.02,3454.5,26130552,99.85,0,0,0.14,516.05,3454.46,26130553,98.6,0,0,0.54,516.7,3453.8,26130554,99.89,0,0,0.14,516,3454.5,26130555,99.82,0,0,0.32,516.03,3454.49,26130556,99.87,0,0,0.16,516,3454.52,26130557,99.93,0,0,0.19,515.98,3454.53,26130558,99.77,0,0,0.39,516.29,3454.22,26130559,99.93,0,0,0.28,515.2,3455.3,26130560,96.19,0,0,0.32,515.69,3454.83,26130561,99.86,0,0.02,0.2,515.73,3454.78,26130562,99.89,0,0,0.15,515.8,3454.7,26130563,99.75,0,0,0.39,516.2,3454.3,26130564,99.9,0,0,0.32,515.76,3454.73,26130565,99.36,0,0,0.35,516.01,3454.5,26130566,99.93,0,0,0.14,515.99,3454.52,26130567,98.47,0,0,0.17,515.96,3454.54,26130568,99.89,0,0,0.14,515.94,3454.56,26130569,99.74,0,0,0.53,515.36,3455.14,26130570,99.73,0,0,0.34,515.03,3455.48,26130571,99.92,0,0,0.12,514.92,3455.59,26130572,99.84,0,0,0.17,514.92,3455.58,26130573,99.87,0,0,0.15,515.09,3455.41,26130574,99.7,0,0.01,0.52,515.23,3455.26,26130575,99.75,0,0,0.34,515.04,3455.47,26130576,99.87,0,0,0.19,515.03,3455.48,26130577,99.85,0,0,0.16,514.86,3455.65,26130578,99.88,0,0,0.19,514.74,3455.76,26130579,99.64,0,0,0.68,516.38,3454.11,26130580,99.82,0,0,0.36,516.19,3454.31,26130581,98.89,0,0,0.2,516.17,3454.32,26130582,99.88,0,0,0.18,516.15,3454.34,26130583,99.88,0,0,0.18,516.2,3454.29,26130584,99.76,0,0,0.54,516.52,3453.98,26130585,99.83,0,0,0.34,516.3,3454.22,26130586,99.9,0,0,0.15,516.28,3454.23,26130587,99.93,0,0,0.18,516.27,3454.25,26130588,99.91,0,0,0.15,516.24,3454.27,26130589,99.74,0,0,0.53,516.58,3453.93,26130590,99.8,0,0,0.37,516.47,3454.05,26130591,99.88,0,0,0.19,516.47,3454.05,26130592,98.07,0,0,0.18,516.43,3454.08,26130593,99.88,0,0,0.18,516.43,3454.08,26130594,99.71,0,0,0.55,517.02,3453.48,26130595,99.8,0,0,0.36,516.32,3454.2,26130596,99.91,0,0,0.15,516.26,3454.26,26130597,99.93,0,0,0.17,516.31,3454.2,26130598,99.93,0,0,0.15,516.28,3454.22,26130599,99.78,0,0,0.34,516.68,3453.82,26130600,99.75,0,0,0.61,516.02,3454.5,26130601,99.85,0,0,0.15,516,3454.51,26130602,99.43,0,0,0.14,515.99,3454.52,26130603,99.9,0,0,0.16,515.96,3454.54,26130604,98.29,0,0,0.14,515.95,3454.55,26130605,99.52,0,0,0.64,515.41,3455.1,26130606,99.88,0,0,0.16,514.94,3455.57,26130607,99.86,0,0,0.14,514.92,3455.59,26130608,99.92,0,0,0.15,514.9,3455.6,26130609,99.7,0,0,0.29,515.95,3454.53,26130610,99.67,0,0,0.65,515.33,3455.16,26130611,99.91,0,0,0.14,514.55,3455.94,26130612,99.89,0,0,0.16,514.52,3455.96,26130613,99.9,0,0,0.14,514.51,3455.97,26130614,99.9,0,0,0.14,514.26,3456.24,26130615,99.7,0,0,0.69,516.23,3454.28,26130616,99.85,0,0,0.13,515.94,3454.56,26130617,99.8,0,0,0.25,515.93,3454.57,26130618,99.87,0,0,0.14,515.9,3454.59,26130619,99.83,0,0,0.14,515.89,3454.61,26130620,99.68,0,0,0.64,515.68,3454.83,26130621,99.9,0,0,0.19,515.55,3454.95,26130622,99.83,0,0,0.13,515.53,3454.97,26130623,99.85,0,0,0.18,515.52,3454.97,26130624,99.89,0,0,0.15,515.5,3455,26130625,99.59,0,0,0.69,516.58,3453.93,26130626,99.87,0,0,0.16,516.22,3454.29,26130627,99.9,0,0,0.18,516.19,3454.31,26130628,99.91,0,0,0.15,516.17,3454.33,26130629,99.89,0,0,0.14,516.15,3454.34,26130630,99.46,0,0,0.57,515.92,3454.6,26130631,99.89,0,0,0.27,516.38,3454.14,26130632,99.91,0,0,0.14,516.43,3454.09,26130633,99.83,0,0,0.15,516.53,3453.98,26130634,99.86,0,0,0.14,516.5,3454,26130635,97.57,0.31,0.01,64.75,518.84,3451.02,26130636,96.83,0,0,195.83,528.01,3444.2,26130637,99.84,0,0,0.21,518.39,3452,26130638,99.85,0,0,0.14,518.27,3452.12,26130639,99.24,0,0,0.3,518,3452.35,26130640,99.66,0,0,0.48,519.08,3451.29,26130641,99.88,0,0,0.38,516.77,3453.63,26130642,99.86,0,0,0.16,516.55,3453.85,26130643,99.86,0,0,0.14,516.52,3453.87,26130644,99.87,0,0,0.14,516.62,3453.77,26130645,99.84,0,0,0.28,515.47,3454.94,26130646,99.7,0,0,0.51,516.17,3454.27,26130647,99.9,0,0,0.17,515.43,3455.01,26130648,99.86,0,0,0.16,515.42,3455.02,26130649,99.59,0,0,0.14,515.39,3455.04,26130650,99.8,0,0,0.27,515.64,3454.8,26130651,99.73,0,0,0.54,516.23,3454.22,26130652,99.92,0,0,0.14,515.6,3454.85,26130653,99.9,0,0,0.16,515.58,3454.87,26130654,99.87,0,0,0.14,515.56,3454.88,26130655,99.86,0,0,0.28,515.57,3454.89,26130656,99.78,0,0,0.53,516.24,3454.22,26130657,99.9,0,0,0.16,515.95,3454.5,26130658,99.92,0,0,0.15,515.94,3454.51,26130659,99.9,0,0,0.15,515.9,3454.54,26130660,99.73,0,0,0.32,514.94,3455.52,26130661,99.73,0,0,0.4,515.52,3454.94,26130662,99.86,0,0,0.27,515.6,3454.85,26130663,99.89,0,0,0.16,515.6,3454.85,26130664,99.92,0,0,0.14,515.57,3454.87,26130665,99.81,0,0,0.28,515.58,3454.88,26130666,99.79,0,0,0.49,515.71,3454.74,26130667,99.91,0,0,0.2,515.16,3455.29,26130668,99.89,0,0,0.13,515.2,3455.25,26130669,99.71,0,0,0.33,515.21,3455.22,26130670,99.77,0,0,0.34,514.73,3455.71,26130671,99.76,0,0,0.47,515.56,3454.87,26130672,99.84,0,0,0.32,515.63,3454.8,26130673,99.86,0,0,0.16,515.61,3454.82,26130674,99.88,0,0.01,0.18,515.56,3454.89,26130675,99.75,0,0,0.32,515.32,3455.15,26130676,99.79,0,0,0.3,515.88,3454.59,26130677,99.86,0,0,0.45,515.71,3454.75,26130678,99.91,0,0,0.18,515.69,3454.77,26130679,99.89,0,0,0.16,515.65,3454.8,26130680,99.81,0,0,0.28,515.67,3454.81,26130681,99.86,0,0,0.18,515.64,3454.84,26130682,99.74,0,0,0.57,516.19,3454.28,26130683,99.89,0,0,0.2,515.84,3454.62,26130684,99.75,0,0,0.2,515.81,3454.65,26130685,99.71,0,0,0.33,516.06,3454.41,26130686,99.91,0,0,0.2,516.03,3454.44,26130687,99.77,0,0,0.58,516.05,3454.41,26130688,99.9,0,0,0.2,515.72,3454.74,26130689,99.9,0,0,0.22,515.7,3454.76,26130690,99.82,0,0,0.28,515.46,3455.02,26130691,99.9,0,0,0.17,515.43,3455.04,26130692,99.7,0,0,0.59,515.45,3455.02,26130693,99.89,0,0,0.14,514.89,3455.57,26130694,99.84,0,0,0.18,514.86,3455.59,26130695,99.81,0,0,0.28,515.85,3454.63,26130696,99.85,0,0,0.16,515.85,3454.62,26130697,99.61,0,0,0.51,516.53,3453.93,26130698,99.87,0,0,0.19,515.81,3454.65,26130699,99.62,0,0,0.3,515.94,3454.5,26130700,99.78,0,0,0.27,515.98,3454.48,26130701,99.9,0,0,0.18,515.95,3454.5,26130702,99.67,0,0,0.59,516.65,3453.8,26130703,99.93,0,0,0.18,515.91,3454.53,26130704,99.92,0,0,0.18,515.88,3454.56,26130705,99.79,0,0,0.29,514.96,3455.49,26130706,98.91,0,0,0.18,514.83,3455.62,26130707,99.71,0,0,0.42,515.6,3454.84,26130708,99.89,0,0,0.28,515.96,3454.48,26130709,99.89,0,0,0.14,515.93,3454.5,26130710,99.69,0,0,0.27,515.23,3455.22,26130711,99.88,0,0,0.14,515.17,3455.27,26130712,99.89,0,0,0.15,515.26,3455.17,26130713,99.8,0,0,0.54,515.97,3454.46,26130714,99.92,0,0,0.15,515.61,3454.82,26130715,99.83,0,0,0.27,516.1,3454.35,26130716,99.86,0,0,0.16,516.08,3454.36,26130717,99.85,0,0,0.16,516.07,3454.37,26130718,99.67,0,0,0.53,516.2,3454.24,26130719,99.88,0,0,0.17,515.78,3454.65,26130720,99.73,0,0,0.28,514.88,3455.57,26130721,99.93,0,0,0.14,514.98,3455.46,26130722,99.9,0,0,0.16,514.95,3455.49,26130723,99.07,0,0,0.53,515.89,3454.54,26130724,99.9,0,0.01,0.16,515.61,3454.82,26130725,99.82,0,0,0.27,515.35,3455.09,26130726,99.9,0,0,0.16,515.32,3455.12,26130727,99.91,0,0,0.14,515.3,3455.14,26130728,99.75,0,0,0.55,516.43,3454,26130729,99.69,0,0,0.29,516.44,3453.97,26130730,99.78,0,0,0.27,516.19,3454.24,26130731,99.92,0,0,0.14,516.16,3454.26,26130732,99.87,0,0,0.16,516.14,3454.28,26130733,99.75,0,0,0.56,516.78,3453.64,26130734,99.81,0,0,0.15,516.1,3454.32,26130735,99.7,0,0,0.27,515.43,3455.02,26130736,99.9,0,0,0.16,515.35,3455.1,26130737,99.88,0,0,0.2,515.33,3455.11,26130738,98.33,0,0,0.55,515.91,3454.52,26130739,99.91,0,0,0.16,515.53,3454.9,26130740,99.77,0,0,0.27,515.13,3455.32,26130741,99.89,0,0,0.14,515.2,3455.24,26130742,99.91,0,0,0.16,515.19,3455.25,26130743,99.76,0,0,0.39,515.58,3454.85,26130744,99.87,0,0,0.29,515.63,3454.8,26130745,99.7,0,0,0.32,516.1,3454.34,26130746,99.85,0,0,0.16,516.1,3454.34,26130747,99.91,0,0,0.14,516.08,3454.36,26130748,99.89,0,0,0.15,516.06,3454.37,26130749,99.67,0,0,0.54,514.94,3455.48,26130750,99.76,0,0,0.34,514.31,3456.13,26130751,99.86,0,0,0.12,514.3,3456.14,26130752,99.86,0,0,0.16,514.4,3456.03,26130753,99.89,0,0,0.15,514.44,3455.99,26130754,99.46,0,0,0.56,516.16,3454.26,26130755,99.67,0,0,0.3,514.69,3455.75,26130756,99.88,0,0,0.15,514.66,3455.78,26130757,99.83,0,0,0.17,514.52,3455.92,26130758,99.87,0,0,0.16,514.36,3456.07,26130759,99.57,0,0,0.75,517,3453.4,26130760,99.75,0,0,0.3,515.4,3455.02,26130761,99.85,0,0,0.16,515.29,3455.13,26130762,99.8,0,0,0.15,515.26,3455.14,26130763,98.77,0,0,0.16,515.32,3455.08,26130764,99.75,0,0,0.56,516.65,3453.76,26130765,99.73,0,0,0.28,515.25,3455.18,26130766,99.83,0,0,0.14,515.18,3455.25,26130767,99.83,0,0,0.16,515.18,3455.25,26130768,99.85,0,0,0.14,515.15,3455.27,26130769,99.75,0,0,0.52,515.84,3454.6,26130770,99.85,0,0,0.32,515.65,3454.83,26130771,99.85,0,0,0.13,515.62,3454.85,26130772,99.87,0,0,0.17,515.6,3454.87,26130773,99.86,0,0,0.14,515.58,3454.88,26130774,99.68,0,0,0.51,516.04,3454.43,26130775,99.77,0,0,0.33,515.57,3454.91,26130776,99.84,0,0,0.16,515.56,3454.91,26130777,99.08,0,0,0.15,515.65,3454.82,26130778,99.85,0,0,0.15,515.71,3454.76,26130779,99.73,0,0,0.39,516.26,3454.2,26130780,99.75,0,0,0.38,515.7,3454.78,26130781,99.83,0,0,0.16,515.67,3454.81,26130782,99.83,0,0,0.14,515.65,3454.82,26130783,99.89,0,0,0.14,515.64,3454.83,26130784,99.72,0,0,0.4,516.03,3454.43,26130785,99.79,0,0,0.4,516.36,3454.12,26130786,99.87,0,0,0.2,516.34,3454.13,26130787,99.87,0,0,0.17,516.33,3454.14,26130788,99.85,0,0,0.16,516.3,3454.16,26130789,99.66,0,0,0.3,516.1,3454.34,26130790,99.22,0,0,0.68,515.87,3454.59,26130791,99.9,0,0,0.16,515.15,3455.31,26130792,99.74,0,0,0.14,514.7,3455.75,26130793,99.85,0,0,0.15,514.67,3455.77,26130794,99.88,0,0,0.14,514.65,3455.79,26130795,99.6,0,0,0.64,515.98,3454.48,26130796,99.83,0,0,0.15,515.62,3454.84,26130797,99.87,0,0,0.2,515.59,3454.86,26130798,99.89,0,0,0.14,515.58,3454.87,26130799,98.41,0,0,0.15,515.55,3454.89,26130800,99.52,0,0,0.6,515.71,3454.74,26130801,99.82,0,0,0.22,515.78,3454.67,26130802,98.91,0,0,0.14,515.9,3454.55,26130803,99.9,0,0,0.16,515.93,3454.52,26130804,99.88,0,0,0.16,515.91,3454.53,26130805,99.68,0,0,0.68,516.04,3454.42,26130806,99.9,0,0,0.18,515.64,3454.8,26130807,99.85,0,0,0.15,515.62,3454.82,26130808,99.83,0,0,0.14,515.6,3454.84,26130809,99.88,0,0,0.15,515.58,3454.87,26130810,99.58,0,0,0.61,515.92,3454.55,26130811,99.88,0,0,0.2,515.55,3454.91,26130812,99.88,0,0,0.16,515.52,3454.94,26130813,99.56,0,0,0.14,515.64,3454.81,26130814,99.88,0,0,0.16,515.66,3454.79,26130815,99.6,0,0,0.54,515.92,3454.54,26130816,99.93,0,0,0.29,515.15,3455.31,26130817,99.89,0,0,0.18,515.02,3455.44,26130818,99.9,0,0,0.13,514.86,3455.59,26130819,99.76,0,0,0.4,515.32,3455.13,26130820,98.42,0,0,0.52,516.16,3454.3,26130821,99.88,0,0,0.29,515.54,3454.91,26130822,99.9,0,0,0.15,515.53,3454.92,26130823,99.93,0,0,0.14,515.5,3454.95,26130824,99.85,0,0,0.15,515.62,3454.82,26130825,99.72,0,0,0.29,514.95,3455.51,26130826,99.75,0,0,0.73,515.84,3454.61,26130827,99.93,0,0,0.15,515.38,3455.07,26130828,99.9,0,0,0.17,515.36,3455.09,26130829,99.91,0,0,0.14,515.34,3455.1,26130830,99.83,0,0,0.27,515.83,3454.63,26130831,99.72,0,0,0.55,516.18,3454.29,26130832,99.87,0,0,0.15,515.8,3454.67,26130833,99.86,0,0,0.13,515.78,3454.69,26130834,99.86,0,0,0.16,515.75,3454.71,26130835,99.73,0,0,0.3,515.84,3454.63,26130836,99.71,0,0,0.55,515.7,3454.77,26130837,99.89,0,0,0.14,515.17,3455.3,26130838,99.77,0,0,0.16,515.14,3455.32,26130839,99.87,0,0,0.16,515.13,3455.33,26130840,99.63,0,0,0.29,515.36,3455.11,26130841,99.64,0,0,0.54,516.22,3454.25,26130842,99.85,0,0,0.16,515.57,3454.89,26130843,99.89,0,0,0.14,515.56,3454.9,26130844,99.86,0,0,0.19,515.54,3454.92,26130845,99.67,0,0.01,0.3,516.04,3454.43,26130846,99.65,0,0,0.47,516.33,3454.14,26130847,99.86,0,0,0.21,515.68,3454.78,26130848,99.93,0,0,0.14,515.65,3454.8,26130849,99.24,0,0,0.29,515.88,3454.56,26130850,99.76,0,0,0.31,514.93,3455.52,26130851,99.68,0,0,0.58,515.63,3454.82,26130852,99.87,0.01,0.02,0.18,515.89,3454.56,26130853,99.82,0,0,0.14,515.9,3454.53,26130854,99.86,0,0,0.15,515.89,3454.55,26130855,99.75,0,0,0.29,515.16,3455.29,26130856,91.18,0,0,0.5,515.85,3454.61,26130857,99.78,0,0,0.18,515.85,3454.6,26130858,99.9,0,0,0.18,515.83,3454.61,26130859,99.81,0,0,0.14,515.8,3454.64,26130860,99.81,0,0,0.28,516.06,3454.4,26130861,99.67,0,0,0.31,516.37,3454.09,26130862,99.88,0,0,0.38,515.78,3454.69,26130863,99.73,0,0.01,0.16,515.86,3454.6,26130864,99.71,0,0,0.2,515.9,3454.56,26130865,99.61,0,0,0.3,514.92,3455.55,26130866,99.82,0,0,0.14,514.89,3455.57,26130867,99.58,0,0,0.59,516.5,3453.95,26130868,99.79,0,0,0.15,516.08,3454.38,26130869,99.8,0,0,0.19,516.05,3454.4,26130870,99.69,0,0,0.29,515.17,3455.3,26130871,99.82,0,0,0.16,515.06,3455.4,26130872,99.66,0,0,0.55,516.06,3454.4,26130873,99.8,0.03,0.02,0.2,515.81,3454.64,26130874,99.77,0.05,0.03,0.18,515.81,3454.64,26130875,99.62,0.05,0.03,0.3,515.63,3454.84,26130876,99.78,0.06,0.04,0.14,515.6,3454.86,26130877,99.61,0.06,0.04,0.63,516.1,3454.35,26130878,99.83,0.05,0.03,0.21,516.09,3454.36,26130879,99.69,0,0,0.32,516.4,3454.02,26130880,99.71,0,0,0.29,515.68,3454.76,26130881,99.84,0,0,0.16,515.65,3454.79,26130882,99.7,0,0,0.54,516.06,3454.37,26130883,99.81,0,0,0.17,515.84,3454.57,26130884,99.76,0,0,0.14,515.82,3454.6,26130885,99.76,0,0,0.29,516.31,3454.12,26130886,99.78,0,0,0.16,516.29,3454.13,26130887,99.66,0,0,0.4,516.3,3454.12,26130888,99.83,0,0,0.3,515.49,3454.93,26130889,99.77,0,0,0.18,515.52,3454.89,26130890,99.69,0,0,0.34,516.39,3454.04,26130891,99.8,0,0,0.18,516.38,3454.05,26130892,99.59,0,0,0.55,516.53,3453.9,26130893,99.16,0,0,0.14,515.6,3454.82,26130894,99.82,0,0,0.15,515.57,3454.84,26130895,99.75,0,0,0.3,516.06,3454.37,26130896,99.8,0,0,0.16,516.05,3454.38,26130897,99.65,0,0,0.33,516.41,3454.02,26130898,99.81,0,0,0.36,516.26,3454.16,26130899,99.79,0,0,0.16,516.23,3454.18,26130900,99.67,0,0,0.27,515.75,3454.68,26130901,99.81,0,0.01,0.17,515.83,3454.6,26130902,99.8,0,0,0.15,515.88,3454.54,26130903,99.53,0,0,0.54,516.37,3454.05,26130904,99.83,0,0,0.19,515.84,3454.57,26130905,99.73,0,0,0.33,516.33,3454.1,26130906,99.81,0,0,0.18,516.3,3454.12,26130907,99.84,0,0,0.16,516.28,3454.14,26130908,99.66,0,0,0.54,516.04,3454.37,26130909,99.6,0,0,0.31,516.22,3454.18,26130910,99.71,0,0,0.27,515.53,3454.88,26130911,99.8,0,0,0.16,515.48,3454.93,26130912,99.83,0,0,0.14,515.58,3454.82,26130913,99.57,0,0,0.55,516.39,3454.01,26130914,99.8,0,0,0.14,516.34,3454.05,26130915,99.71,0,0,0.28,516.35,3454.06,26130916,99.8,0,0,0.16,516.33,3454.08,26130917,99.8,0,0,0.18,516.3,3454.1,26130918,99.63,0,0,0.41,516.45,3453.94,26130919,99.82,0,0,0.28,515.77,3454.62,26130920,99.76,0,0,0.3,516.5,3453.9,26130921,99.78,0,0,0.14,516.48,3453.91,26130922,99.81,0,0,0.16,516.47,3453.93,26130923,96.13,0.35,0.01,78.82,522.23,3449.36,26130924,99.82,0,0,0.45,518.93,3450.5,26130925,98.47,0,0,15.7,521.44,3448.89,26130926,99.8,0,0,0.18,518.26,3451.55,26130927,99.83,0,0,0.16,518.23,3451.58,26130928,99.61,0,0,0.46,518.57,3451.24,26130929,99.81,0,0,0.33,516.54,3453.33,26130930,99.73,0,0,0.28,516.55,3453.34,26130931,99.79,0,0,0.16,516.53,3453.36,26130932,99.79,0,0,0.18,516.63,3453.25,26130933,99.65,0,0,0.34,517.27,3452.61,26130934,99.83,0,0,0.38,515.67,3454.22,26130935,99.71,0,0,0.3,516.4,3453.51,26130936,99.81,0,0,0.18,516.39,3453.51,26130937,99.83,0,0,0.18,516.36,3453.54,26130938,99.83,0,0,0.18,516.34,3453.55,26130939,99.52,0,0,0.77,516.99,3452.88,26130940,99.73,0,0,0.3,516.56,3453.32,26130941,99.85,0,0,0.17,516.54,3453.34,26130942,99.83,0,0,0.19,515.69,3454.19,26130943,99.81,0,0,0.16,515.51,3454.36,26130944,96.03,0,0,45.06,523.27,3444.08,26130945,99.71,0,0,0.42,517.25,3452.33,26130946,99.82,0,0,0.19,517.23,3452.34,26130947,99.79,0,0,0.13,517.2,3452.37,26130948,99.78,0,0,0.16,517.18,3452.38,26130949,99.69,0,0,0.55,516.59,3452.98,26130950,99.6,0,0,0.34,515.79,3453.82,26130951,99.83,0,0,0.16,515.69,3453.92,26130952,99.81,0,0,0.16,515.68,3453.93,26130953,99.84,0,0,0.14,515.65,3453.95,26130954,99.68,0,0,0.52,516.12,3453.47,26130955,99.72,0,0,0.34,514.47,3455.16,26130956,99.82,0,0,0.14,514.39,3455.23,26130957,99.83,0,0,0.18,514.5,3455.13,26130958,99.8,0,0,0.14,514.53,3455.09,26130959,99.64,0,0,0.39,515.38,3454.23,26130960,99.72,0,0,0.41,515.74,3453.89,26130961,99.75,0,0,0.16,515.72,3453.91,26130962,99.78,0,0,0.15,515.7,3453.93,26130963,99.84,0,0,0.15,515.68,3453.95,26130964,99.63,0,0,0.49,515.96,3453.66,26130965,99.67,0,0,0.33,515.16,3454.48,26130966,99.8,0,0,0.16,515.14,3454.5,26130967,99.38,0,0,0.14,515.22,3454.41,26130968,96.79,0,0,0.15,515.29,3454.33,26130969,99.58,0,0,0.45,515.62,3453.98,26130970,99.69,0,0,0.49,515,3454.61,26130971,99.83,0,0,0.13,515.01,3454.6,26130972,99.78,0,0,0.16,514.98,3454.62,26130973,99.78,0,0,0.14,514.95,3454.65,26130974,99.69,0,0,0.32,515.3,3454.3,26130975,99.71,0,0,0.48,516.15,3453.46,26130976,99.62,0,0,0.16,516.09,3453.52,26130977,99.82,0,0,0.2,515.96,3453.65,26130978,99.78,0,0,0.16,516.05,3453.55,26130979,99.76,0,0,0.14,516.03,3453.57,26130980,99.53,0,0,0.66,515.31,3454.31,26130981,99.82,0,0,0.16,514.78,3454.83,26130982,99.82,0,0,0.15,514.76,3454.85,26130983,98.42,0,0,0.16,514.74,3454.86,26130984,99.83,0,0,0.14,514.72,3454.88,26130985,99.54,0,0,0.71,515.58,3454.03,26130986,99.79,0,0,0.16,515.19,3454.42,26130987,99.8,0,0,0.14,515.18,3454.43,26130988,99.74,0,0,0.16,515.15,3454.45,26130989,99.83,0,0,0.15,515.21,3454.39,26130990,99.55,0,0,0.73,516.27,3453.34,26130991,99.8,0,0,0.17,516.04,3453.57,26130992,99.83,0,0,0.15,516.02,3453.59,26130993,99.82,0,0,0.14,516,3453.6,26130994,99.81,0,0,0.2,515.98,3453.62,26130995,99.54,0,0,0.55,516.63,3452.98,26130996,99.84,0,0,0.27,515.95,3453.66,26130997,99.81,0,0,0.17,515.93,3453.68,26130998,99.81,0,0,0.15,515.9,3453.7,26130999,99.71,0,0,0.31,516.12,3453.45,26131000,96.15,0.02,0.01,14.41,526.89,3444.59,26131001,99.78,0,0,64.43,518.7,3450.88,26131002,99.83,0,0,0.16,518.69,3450.88,26131003,99.84,0,0,0.14,518.68,3450.88,26131004,99.83,0,0,0.14,518.66,3450.92,26131005,99.75,0,0,0.27,518.36,3451.24,26131006,99.7,0,0,0.59,516.59,3453.06,26131007,99.82,0,0,0.16,516.33,3453.31,26131008,99.82,0,0,0.14,516.38,3453.27,26131009,99.83,0,0,0.14,516.36,3453.28,26131010,99.73,0,0,0.27,516.37,3453.29,26131011,99.7,0,0,0.54,516.45,3453.21,26131012,99.83,0,0,0.18,516.08,3453.59,26131013,99.79,0,0,0.14,516.06,3453.6,26131014,99.85,0,0,0.14,516.04,3453.62,26131015,99.75,0,0,0.28,515.08,3454.6,26131016,99.7,0,0,0.58,516.57,3453.1,26131017,99.82,0,0,0.14,516,3453.66,26131018,99.84,0,0,0.15,515.98,3453.68,26131019,99.83,0,0,0.16,516.02,3453.63,26131020,99.64,0,0,0.28,515.47,3454.2,26131021,99.68,0,0,0.58,516.58,3453.08,26131022,99.81,0,0,0.14,516.36,3453.3,26131023,99.81,0,0,0.14,516.33,3453.32,26131024,99.82,0,0,0.16,516.32,3453.34,26131025,99.73,0,0,0.3,516.08,3453.59,26131026,99.63,0,0,0.54,516.52,3453.14,26131027,99.83,0,0,0.16,516.27,3453.39,26131028,98.6,0,0,0.15,516.25,3453.4,26131029,99.73,0,0,0.3,516.21,3453.41,26131030,99.81,0,0,0.36,516.21,3453.43,26131031,99.72,0,0,0.59,516.62,3453.01,26131032,99.87,0,0,0.14,516.37,3453.27,26131033,99.89,0,0,0.17,516.35,3453.28,26131034,99.89,0,0,0.16,516.33,3453.3,26131035,99.82,0,0,0.29,515.37,3454.28,26131036,99.72,0,0,0.55,516,3453.65,26131037,99.92,0,0,0.18,516.06,3453.58,26131038,99.92,0,0,0.19,516.03,3453.61,26131039,99.89,0,0.01,0.21,516,3453.63,26131040,99.8,0,0,0.28,515.51,3454.14,26131041,99.75,0,0,0.39,516.31,3453.34,26131042,99.42,0,0,0.35,516.09,3453.55,26131043,99.88,0,0,0.18,516.14,3453.49,26131044,99.93,0,0,0.18,516.12,3453.51,26131045,99.85,0,0,0.32,516.61,3453.04,26131046,99.91,0,0,0.18,516.6,3453.04,26131047,99.71,0,0,0.55,516.29,3453.35,26131048,99.93,0,0,0.18,515.83,3453.8,26131049,99.86,0,0,0.18,515.8,3453.83,26131050,99.77,0,0,0.32,516.29,3453.36,26131051,99.9,0,0,0.21,516.27,3453.37,26131052,99.73,0,0,0.61,516.39,3453.24,26131053,99.89,0,0,0.18,515.98,3453.65,26131054,99.86,0,0,0.18,516.03,3453.59,26131055,99.76,0,0,0.36,516.64,3453.02,26131056,99.87,0,0,0.21,516.6,3453.05,26131057,99.73,0,0,0.63,516.58,3453.07,26131058,99.88,0,0,0.18,515.81,3453.83,26131059,99.7,0,0,0.28,516.27,3453.35,26131060,99.72,0,0,0.27,516.27,3453.36,26131061,99.9,0,0,0.16,516.25,3453.38,26131062,99.74,0,0,0.54,516.86,3452.76,26131063,99.88,0,0,0.17,516.21,3453.41,26131064,99.88,0,0,0.14,516.2,3453.42,26131065,99.74,0,0,0.31,516.51,3453.12,26131066,99.82,0,0,0.14,516.62,3453.01,26131067,99.72,0,0,0.42,517,3452.63,26131068,99.88,0,0,0.28,516.58,3453.04,26131069,99.86,0,0,0.16,516.56,3453.06,26131070,99.79,0,0,0.29,516.32,3453.31,26131071,99.88,0,0,0.14,516.29,3453.34,26131072,99.75,0,0,0.49,516.7,3452.93,26131073,99.9,0,0,0.2,516.5,3453.13,26131074,99.88,0,0,0.15,516.48,3453.14,26131075,99.83,0,0,0.29,516.47,3453.16,26131076,99.92,0,0,0.16,516.51,3453.12,26131077,99.77,0,0,0.52,516.93,3452.7,26131078,99.9,0,0,0.22,516.34,3453.29,26131079,99.88,0,0,0.14,516.31,3453.31,26131080,99.79,0,0,0.28,515.84,3453.8,26131081,99.91,0,0,0.14,515.8,3453.83,26131082,99.75,0,0,0.41,516.23,3453.4,26131083,99.89,0,0,0.31,516.5,3453.12,26131084,99.86,0,0,0.14,516.47,3453.14,26131085,99.79,0,0,0.29,516.47,3453.16,26131086,99.89,0,0,0.16,516.46,3453.17,26131087,99.9,0,0,0.18,516.43,3453.2,26131088,99.71,0,0,0.58,516.57,3453.05,26131089,99.73,0,0,0.28,516.8,3452.8,26131090,99.78,0,0,0.29,515.64,3453.98,26131091,99.91,0,0,0.18,515.57,3454.04,26131092,99.9,0,0,0.16,515.62,3453.99,26131093,99.77,0,0,0.55,516.32,3453.29,26131094,99.89,0,0,0.18,516,3453.6,26131095,99.8,0,0,0.32,514.82,3454.8,26131096,99.89,0,0,0.17,514.76,3454.85,26131097,99.87,0,0,0.18,514.74,3454.87,26131098,99.75,0,0,0.55,515.66,3453.95,26131099,99.86,0,0,0.17,515.69,3453.91,26131100,99.83,0,0,0.3,515.63,3453.99,26131101,99.89,0,0,0.18,515.6,3454.01,26131102,99.09,0,0,0.16,515.58,3454.03,26131103,99.66,0,0,0.47,516.21,3453.39,26131104,99.9,0,0,0.26,516.03,3453.57,26131105,99.78,0,0,0.3,516.04,3453.59,26131106,99.88,0,0,0.17,516.01,3453.61,26131107,99.9,0,0,0.16,516,3453.63,26131108,99.76,0,0,0.59,516.5,3453.12,26131109,99.9,0,0,0.18,515.7,3453.92,26131110,99.82,0,0.02,0.35,515.74,3453.88,26131111,99.88,0,0,0.18,515.82,3453.81,26131112,99.88,0,0,0.18,515.8,3453.82,26131113,99.68,0,0,0.41,516.13,3453.49,26131114,99.89,0,0,0.3,515.77,3453.86,26131115,99.83,0,0,0.3,515.76,3453.88,26131116,99.9,0,0,0.18,515.76,3453.89,26131117,99.85,0,0,0.2,515.73,3453.91,26131118,99.78,0.01,0.81,0.35,516.11,3453.53,26131119,99.68,0,0,0.53,515.83,3453.78,26131120,99.82,0,0,0.3,516.1,3453.53,26131121,99.91,0,0,0.17,516.04,3453.58,26131122,99.9,0,0,0.18,516.02,3453.59,26131123,99.78,0,0,0.42,516.35,3453.26,26131124,99.86,0,0,0.3,515.99,3453.66,26131125,99.79,0,0,0.29,515.03,3454.64,26131126,99.92,0,0,0.18,515.02,3454.66,26131127,99.92,0,0,0.16,515.14,3454.53,26131128,99.93,0,0,0.17,515.13,3454.53,26131129,99.76,0,0,0.55,515.9,3453.76,26131130,99.79,0,0,0.31,515.84,3453.83,26131131,99.9,0,0,0.17,515.82,3453.85,26131132,99.89,0,0,0.17,515.81,3453.86,26131133,99.86,0,0,0.16,515.78,3453.88,26131134,99.68,0,0,0.59,516.14,3453.52,26131135,99.81,0,0,0.3,516,3453.67,26131136,99.88,0,0,0.17,516,3453.67,26131137,99.9,0,0,0.18,515.97,3453.69,26131138,99.9,0,0,0.17,515.95,3453.71,26131139,99.75,0,0,0.55,516.66,3453,26131140,99.75,0,0,0.29,516.12,3453.55,26131141,99.82,0,0,0.18,516.09,3453.58,26131142,99.88,0,0,0.16,516.09,3453.58,26131143,99.9,0,0,0.17,516.05,3453.61,26131144,99.75,0,0,0.41,516.39,3453.26,26131145,99.81,0,0,0.41,516.28,3453.4,26131146,99.9,0,0,0.18,516.27,3453.4,26131147,99.88,0,0,0.16,516.24,3453.43,26131148,99.86,0,0,0.17,516.23,3453.44,26131149,99.61,0,0,0.8,516.29,3453.35,26131150,99.73,0,0,0.31,514.83,3454.82,26131151,99.91,0,0,0.17,514.83,3454.82,26131152,99.87,0,0,0.17,514.87,3454.77,26131153,99.95,0,0,0.17,514.85,3454.79,26131154,99.77,0,0,0.4,515.53,3454.13,26131155,99.77,0,0,0.47,515.46,3454.21,26131156,99.88,0,0,0.16,515.3,3454.37,26131157,99.83,0,0,0.2,515.51,3454.15,26131158,99.88,0,0,0.18,515.49,3454.16,26131159,99.71,0,0,0.38,516.22,3453.44,26131160,99.81,0,0,0.49,515,3454.67,26131161,99.93,0,0,0.14,514.98,3454.69,26131162,99.85,0,0,0.14,514.95,3454.71,26131163,99.88,0,0,0.15,515.07,3454.59,26131164,99.9,0,0,0.13,515.1,3454.55,26131165,99.58,0,0,0.68,515.99,3453.68,26131166,99.83,0,0,0.17,515.57,3454.1,26131167,99.89,0,0,0.14,515.54,3454.12,26131168,99.9,0,0,0.15,515.52,3454.13,26131169,99.84,0,0,0.16,515.5,3454.15,26131170,99.48,0,0,0.66,514.41,3455.26,26131171,99.92,0,0,0.14,513.76,3455.91,26131172,99.91,0,0,0.15,513.74,3455.92,26131173,99.91,0,0,0.16,513.73,3455.93,26131174,99.85,0,0,0.16,513.77,3455.89,26131175,99.68,0,0,0.67,515.15,3454.53,26131176,99.9,0,0,0.14,514.86,3454.81,26131177,99.88,0,0,0.18,514.9,3454.77,26131178,99.88,0,0,0.16,515.06,3454.59,26131179,99.68,0,0,0.39,516.26,3453.37,26131180,99.66,0,0,0.68,516.07,3453.58,26131181,99.9,0,0,0.12,516,3453.64,26131182,99.8,0,0,0.16,515.98,3453.66,26131183,99.9,0,0,0.14,515.96,3453.67,26131184,99.87,0,0,0.14,515.94,3453.69,26131185,99.58,0,0,0.66,516.93,3452.71,26131186,99.87,0,0,0.23,516.17,3453.47,26131187,99.89,0,0,0.14,516.28,3453.36,26131188,99.89,0,0,0.14,516.31,3453.32,26131189,99.88,0,0,0.15,516.3,3453.33,26131190,99.54,0,0,0.54,517.01,3452.63,26131191,99.85,0,0,0.3,516.28,3453.36,26131192,99.91,0,0,0.14,516.26,3453.38,26131193,99.88,0,0,0.16,516.23,3453.4,26131194,99.87,0,0,0.15,516.2,3453.43,26131195,99.61,0,0,0.46,516.55,3453.09,26131196,99.9,0,0,0.34,516.17,3453.47,26131197,99.88,0,0,0.17,516.16,3453.47,26131198,99.82,0,0,0.14,516.34,3453.29,26131199,99.9,0,0,0.16,516.33,3453.3,26131200,99.6,0,0,0.48,515.75,3453.89,26131201,99.87,0,0,0.41,516.34,3453.29,26131202,99.89,0,0,0.18,516.28,3453.35,26131203,99.87,0,0,0.18,516.28,3453.35,26131204,99.9,0,0,0.16,516.25,3453.37,26131205,99.75,0,0,0.29,516.27,3453.37,26131206,99.74,0,0,0.54,516.8,3452.83,26131207,99.9,0,0,0.15,516.46,3453.16,26131208,99.88,0,0,0.16,516.44,3453.18,26131209,99.73,0,0,0.27,516.22,3453.37,26131210,98.38,0,0,0.28,516.34,3453.27,26131211,99.76,0,0,0.59,517.12,3452.48,26131212,99.86,0,0,0.16,516.54,3453.07,26131213,99.87,0,0,0.15,516.51,3453.09,26131214,99.85,0,0,0.14,516.5,3453.1,26131215,99.74,0,0,0.29,515.78,3453.83,26131216,99.78,0,0,0.57,516.06,3453.55,26131217,99.88,0,0,0.18,515.47,3454.13,26131218,99.91,0,0,0.14,515.45,3454.15,26131219,99.92,0,0,0.15,515.43,3454.16,26131220,99.83,0,0,0.28,516.16,3453.45,26131221,99.79,0,0,0.39,516.66,3452.95,26131222,99.9,0,0,0.28,516.57,3453.03,26131223,99.85,0,0,0.16,516.54,3453.05,26131224,98.19,0,0,0.14,516.53,3453.07,26131225,99.84,0,0,0.29,516.29,3453.32,26131226,99.73,0,0,0.5,516.67,3452.94,26131227,99.9,0,0,0.19,516.49,3453.12,26131228,99.9,0,0,0.15,516.47,3453.13,26131229,99.92,0,0,0.16,516.45,3453.15,26131230,99.75,0,0,0.3,515.73,3453.88,26131231,99.76,0,0,0.38,516.08,3453.52,26131232,99.91,0,0,0.29,515.9,3453.7,26131233,99.9,0,0,0.14,515.97,3453.63,26131234,99.9,0,0,0.14,516.06,3453.53,26131235,99.76,0,0,0.3,516.8,3452.81,26131236,99.8,0,0,0.31,517.11,3452.5,26131237,99.86,0,0,0.38,515.67,3453.93,26131238,99.88,0,0,0.18,516.25,3453.35,26131239,99.83,0,0,0.3,516.48,3453.09,26131240,99.77,0,0,0.31,515.75,3453.84,26131241,99.9,0,0,0.15,515.71,3453.87,26131242,99.74,0,0,0.54,516.67,3452.91,26131243,99.88,0,0,0.16,515.91,3453.66,26131244,99.91,0,0,0.15,515.46,3454.11,26131245,99.71,0,0,0.34,514.95,3454.64,26131246,99.87,0,0,0.15,514.97,3454.61,26131247,99.74,0,0,0.55,516.32,3453.26,26131248,99.88,0,0,0.15,515.78,3453.79,26131249,99.87,0,0,0.16,515.76,3453.81,26131250,99.77,0,0,0.28,514.57,3455.02,26131251,99.84,0,0,0.19,514.51,3455.07,26131252,99.76,0,0,0.53,515.61,3453.96,26131253,99.93,0,0,0.16,515.7,3453.87,26131254,99.85,0,0,0.15,515.69,3453.88,26131255,99.82,0,0,0.31,515.2,3454.38,26131256,99.92,0,0,0.14,515.18,3454.4,26131257,99.71,0,0,0.49,515.67,3453.91,26131258,99.93,0,0,0.19,515.7,3453.87,26131259,99.9,0,0,0.15,515.82,3453.75,26131260,99.77,0,0,0.29,515.59,3454,26131261,99.9,0,0,0.16,515.56,3454.02,26131262,99.78,0,0,0.53,516.06,3453.51,26131263,99.9,0,0,0.14,516.01,3453.56,26131264,99.92,0,0,0.2,515.98,3453.58,26131265,99.75,0,0,0.31,514.78,3454.8,26131266,99.92,0,0,0.14,514.73,3454.85,26131267,99.73,0,0,0.49,515.64,3453.96,26131268,99.9,0,0,0.19,515.93,3453.66,26131269,99.84,0,0,0.35,515.91,3453.65,26131270,99.75,0,0,0.33,515.37,3454.21,26131271,99.87,0,0,0.16,515.33,3454.24,26131272,99.87,0,0,0.14,515.3,3454.27,26131273,99.73,0,0,0.53,515.66,3453.9,26131274,99.92,0,0,0.15,515.02,3454.54,26131275,99.78,0,0,0.29,514.79,3454.79,26131276,99.9,0,0,0.16,514.75,3454.81,26131277,99.92,0,0,0.18,514.98,3454.58,26131278,99.76,0,0,0.55,516.12,3453.44,26131279,99.91,0,0,0.15,515.68,3453.87,26131280,99.79,0,0,0.28,514.48,3455.1,26131281,99.85,0,0,0.14,514.44,3455.13,26131282,99.89,0,0,0.16,514.48,3455.09,26131283,99.71,0,0,0.53,515.74,3453.82,26131284,99.9,0,0,0.15,515.79,3453.77,26131285,99.43,0,0,0.34,516.03,3453.54,26131286,99.91,0,0,0.14,516.01,3453.55,26131287,99.92,0,0,0.15,516,3453.56,26131288,99.71,0,0,0.48,516.43,3453.12,26131289,99.9,0,0,0.26,516.19,3453.35,26131290,99.78,0,0,0.29,515.22,3454.33,26131291,99.88,0,0,0.15,515.18,3454.37,26131292,99.88,0,0,0.16,515.15,3454.39,26131293,99.77,0,0,0.52,515.85,3453.69,26131294,99.9,0,0,0.15,515.92,3453.61,26131295,99.76,0,0,0.31,515.55,3454.01,26131296,99.83,0,0,0.14,515.51,3454.03,26131297,99.84,0,0,0.17,515.46,3454.09,26131298,99.74,0,0,0.4,515.89,3453.65,26131299,99.78,0,0,0.41,515.99,3453.53,26131300,99.77,0,0,0.29,515.99,3453.55,26131301,99.89,0,0,0.16,515.92,3453.61,26131302,99.91,0,0,0.16,515.88,3453.64,26131303,99.71,0,0,0.4,516.47,3453.05,26131304,99.91,0,0,0.28,515.28,3454.23,26131305,99.77,0,0,0.27,514.81,3454.73,26131306,99.92,0,0,0.14,514.77,3454.76,26131307,99.89,0,0,0.18,514.75,3454.78,26131308,99.89,0,0,0.14,514.73,3454.79,26131309,99.75,0,0,0.54,516.26,3453.26,26131310,99.78,0,0,0.29,514.75,3454.8,26131311,99.89,0,0,0.14,514.7,3454.86,26131312,99.88,0,0,0.15,514.69,3454.86,26131313,99.85,0,0,0.14,514.67,3454.88,26131314,99.71,0,0,0.53,516.37,3453.16,26131315,99.82,0,0,0.29,515.99,3453.56,26131316,99.91,0,0,0.16,516.03,3453.52,26131317,99.9,0,0,0.14,516.01,3453.53,26131318,99.88,0,0,0.16,515.99,3453.55,26131319,99.76,0,0,0.55,516.52,3453.01,26131320,99.75,0,0,0.29,516.22,3453.33,26131321,99.91,0,0,0.16,516.2,3453.35,26131322,99.92,0,0,0.15,516.17,3453.37,26131323,99.9,0,0,0.16,516.16,3453.38,26131324,99.76,0,0,0.53,516.48,3453.05,26131325,99.8,0,0,0.3,515.17,3454.38,26131326,99.91,0,0,0.17,515.13,3454.41,26131327,99.85,0,0,0.14,515.11,3454.43,26131328,99.9,0,0,0.14,515.21,3454.32,26131329,99.65,0,0,0.65,516.91,3452.6,26131330,99.76,0,0,0.42,516.55,3452.97,26131331,99.92,0,0,0.12,516.46,3453.05,26131332,99.89,0,0,0.16,516.44,3453.08,26131333,99.83,0,0,0.14,516.42,3453.09,26131334,99.68,0,0,0.39,516.6,3452.91,26131335,99.69,0,0,0.41,514.71,3454.81,26131336,99.82,0,0,0.15,514.64,3454.87,26131337,99.87,0,0,0.2,514.87,3454.64,26131338,99.88,0,0,0.15,514.85,3454.66,26131339,99.7,0,0,0.45,515.45,3454.05,26131340,99.85,0,0,0.41,516.53,3452.99,26131341,99.91,0,0,0.15,516.51,3453,26131342,99.9,0,0,0.16,516.49,3453.02,26131343,99.92,0,0,0.16,516.46,3453.04,26131344,99.7,0,0,0.45,516.71,3452.79,26131345,98.26,0,0,0.41,515.71,3453.81,26131346,99.87,0,0,0.14,515.69,3453.82,26131347,99.85,0,0,0.15,515.66,3453.84,26131348,99.92,0,0,0.15,515.65,3453.86,26131349,99.9,0,0,0.14,515.62,3453.88,26131350,99.54,0,0,0.66,516.49,3453.02,26131351,99.89,0,0,0.16,515.97,3453.54,26131352,99.88,0,0,0.14,516.02,3453.48,26131353,99.9,0,0,0.16,516,3453.51,26131354,99.94,0,0,0.15,515.98,3453.52,26131355,99.67,0,0,0.67,517,3452.51,26131356,99.9,0,0,0.15,516.69,3452.82,26131357,99.87,0,0,0.16,516.61,3452.89,26131358,99.87,0,0,0.17,516.14,3453.36,26131359,99.79,0,0,0.27,515.9,3453.58,26131360,99.61,0,0,0.68,516.33,3453.17,26131361,99.89,0,0,0.14,516.12,3453.37,26131362,99.88,0,0,0.14,516.16,3453.33,26131363,99.87,0,0,0.16,516.27,3453.21,26131364,99.92,0,0,0.14,516.25,3453.25,26131365,94.56,0.38,0.01,197.79,527.47,3441.88,26131366,99.85,0,0,64.2,518.66,3450.61,26131367,99.89,0,0,0.13,518.63,3450.64,26131368,99.89,0,0,0.16,518.76,3450.51,26131369,99.9,0,0,0.14,518.81,3450.45,26131370,99.67,0,0,0.66,518.36,3450.93,26131371,99.88,0,0,0.21,516.6,3452.73,26131372,99.89,0,0,0.17,516.6,3452.73,26131373,99.88,0,0,0.14,516.56,3452.76,26131374,99.91,0,0,0.2,516.55,3452.77,26131375,99.69,0,0.01,0.68,517.18,3452.15,26131376,99.87,0,0,0.14,516.28,3453.05,26131377,99.85,0,0,0.14,516.37,3452.95,26131378,99.88,0,0,0.16,516.35,3452.98,26131379,99.87,0,0,0.14,516.32,3453,26131380,99.55,0,0,0.54,515.78,3453.55,26131381,99.81,0,0,0.29,515.33,3453.99,26131382,99.86,0,0,0.14,515.29,3454.03,26131383,99.88,0,0,0.16,515.26,3454.05,26131384,99.88,0,0,0.14,515.25,3454.06,26131385,99.74,0,0,0.29,516.7,3452.63,26131386,99.62,0,0,0.57,516.51,3452.82,26131387,99.88,0,0,0.17,516.13,3453.19,26131388,99.88,0,0,0.14,516.12,3453.21,26131389,99.63,0,0,0.29,516.58,3452.74,26131390,99.74,0,0,0.29,515.86,3453.47,26131391,99.66,0,0,0.54,516,3453.33,26131392,99.86,0,0,0.14,515.31,3454.01,26131393,99.89,0,0,0.14,515.29,3454.02,26131394,99.93,0,0,0.15,515.27,3454.06,26131395,99.77,0,0,0.31,515.58,3453.78,26131396,99.7,0,0,0.54,515.67,3453.68,26131397,99.81,0,0,0.18,515.24,3454.1,26131398,99.83,0,0,0.15,515.23,3454.11,26131399,99.86,0,0,0.14,515.33,3454.01,26131400,99.7,0,0,0.29,514.92,3454.43,26131401,99.63,0,0,0.46,515.91,3453.43,26131402,99.8,0,0,0.23,515.84,3453.5,26131403,99.84,0,0,0.14,515.82,3453.52,26131404,99.83,0,0,0.15,515.8,3453.54,26131405,99.83,0,0.02,0.33,516.02,3453.34,26131406,98.64,0,0,0.55,516.29,3453.05,26131407,99.79,0,0,0.18,515.78,3453.57,26131408,99.86,0,0,0.16,515.87,3453.46,26131409,99.82,0,0,0.15,515.85,3453.48,26131410,99.84,0,0,0.33,516.35,3452.99,26131411,99.77,0,0,0.4,516.62,3452.72,26131412,99.81,0,0,0.28,516.06,3453.27,26131413,99.79,0,0,0.16,516.03,3453.3,26131414,99.86,0,0,0.16,516.02,3453.31,26131415,99.81,0,0,0.3,515.3,3454.05,26131416,99.75,0,0,0.39,515.63,3453.71,26131417,99.9,0,0,0.31,515.46,3453.88,26131418,99.9,0,0,0.16,514.98,3454.36,26131419,99.68,0,0,0.29,515.92,3453.39,26131420,99.74,0,0,0.29,515.85,3453.48,26131421,99.85,0,0,0.16,515.86,3453.47,26131422,99.64,0,0.01,0.52,515.76,3453.57,26131423,99.79,0,0,0.21,515.26,3454.05,26131424,99.84,0,0,0.14,515.23,3454.09,26131425,99.78,0,0,0.29,515,3454.34,26131426,99.84,0,0,0.14,514.96,3454.38,26131427,99.67,0,0,0.54,515.4,3453.94,26131428,99.84,0,0,0.14,515.11,3454.22,26131429,99.82,0,0,0.15,515.09,3454.23,26131430,99.76,0,0,0.31,514.85,3454.49,26131431,99.76,0,0,0.13,514.82,3454.52,26131432,99.69,0,0,0.48,516.21,3453.12,26131433,99.8,0,0,0.2,516.01,3453.32,26131434,99.81,0,0,0.14,515.99,3453.33,26131435,99.66,0,0,0.3,514.84,3454.5,26131436,99.78,0,0,0.16,514.74,3454.59,26131437,99.59,0,0,0.38,515.43,3453.9,26131438,99.76,0,0,0.28,515.44,3453.89,26131439,99.8,0,0,0.14,515.53,3453.8,26131440,99.62,0,0,0.31,514.93,3454.41,26131441,99.8,0,0,0.16,514.89,3454.45,26131442,99.63,0,0,0.52,515.34,3454,26131443,99.78,0,0,0.18,515.33,3454,26131444,99.75,0,0,0.17,515.32,3454.01,26131445,99.72,0,0,0.32,516.28,3453.06,26131446,99.8,0,0,0.16,516.28,3453.05,26131447,99.61,0,0,0.53,516.56,3452.77,26131448,99.79,0,0,0.14,516,3453.33,26131449,99.69,0,0,0.28,515.97,3453.34,26131450,99.68,0,0,0.3,516.03,3453.29,26131451,99.79,0,0,0.16,516.12,3453.19,26131452,99.63,0,0,0.32,516.84,3452.47,26131453,99.8,0,0,0.35,515.34,3453.96,26131454,99.78,0,0,0.14,515.32,3453.98,26131455,99.67,0,0,0.36,514.6,3454.71,26131456,99.66,0,0,0.14,514.56,3454.75,26131457,99.79,0,0,0.2,514.79,3454.52,26131458,99.6,0,0,0.56,516.79,3452.52,26131459,99.75,0,0,0.14,516.22,3453.08,26131460,99.62,0,0,0.33,515.77,3453.55,26131461,99.8,0,0,0.16,515.71,3453.6,26131462,99.82,0,0,0.15,515.81,3453.5,26131463,99.66,0,0,0.52,516.92,3452.39,26131464,99.76,0,0,0.16,516.33,3452.97,26131465,99.71,0,0,0.31,516.09,3453.23,26131466,99.8,0,0,0.14,516.06,3453.25,26131467,99.81,0,0,0.16,516.04,3453.27,26131468,99.68,0,0,0.51,516.6,3452.7,26131469,99.82,0,0,0.15,515.99,3453.31,26131470,99.73,0,0,0.3,516.23,3453.09,26131471,99.84,0,0,0.16,516.21,3453.1,26131472,99.8,0,0,0.14,516.2,3453.11,26131473,99.68,0,0,0.81,516.59,3452.71,26131474,99.83,0,0,0.15,516.1,3453.2,26131475,99.75,0,0,0.32,516.34,3452.98,26131476,99.81,0,0,0.16,516.31,3453.01,26131477,99.81,0,0,0.16,516.28,3453.04,26131478,99.69,0,0,0.51,516.32,3452.99,26131479,99.71,0,0,0.49,516.22,3453.06,26131480,99.74,0,0,0.31,516.48,3452.82,26131481,99.8,0,0,0.16,516.46,3452.84,26131482,99.81,0,0,0.16,516.43,3452.86,26131483,99.69,0,0,0.43,516.89,3452.39,26131484,99.8,0,0,0.29,516.58,3452.7,26131485,99.71,0,0,0.33,515.38,3453.92,26131486,99.8,0,0,0.15,515.33,3453.96,26131487,99.83,0,0,0.15,515.31,3453.98,26131488,99.69,0,0,0.33,515.68,3453.6,26131489,99.78,0,0,0.36,516.26,3453.02,26131490,99.69,0,0,0.3,515.05,3454.25,26131491,99.78,0,0,0.17,515.01,3454.29,26131492,99.77,0,0,0.14,514.99,3454.32,26131493,99.78,0,0,0.15,514.96,3454.36,26131494,99.66,0,0,0.54,516.32,3453,26131495,99.72,0,0,0.34,516.55,3452.79,26131496,99.81,0,0,0.15,516.58,3452.75,26131497,99.77,0,0,0.15,516.57,3452.76,26131498,99.79,0,0,0.16,516.54,3452.78,26131499,99.65,0,0,0.53,516.82,3452.5,26131500,99.7,0,0,0.33,516.31,3453.02,26131501,99.78,0,0,0.16,516.26,3453.06,26131502,99.78,0,0,0.16,516.24,3453.09,26131503,99.8,0,0,0.15,516.22,3453.1,26131504,99.65,0,0,0.54,516.56,3452.76,26131505,99.65,0,0,0.32,515.24,3454.09,26131506,99.84,0,0,0.14,515.26,3454.06,26131507,99.83,0,0,0.15,515.36,3453.97,26131508,99.78,0,0,0.16,515.34,3453.98,26131509,99.55,0,0,0.59,516.24,3453.05,26131510,99.68,0,0,0.36,516.29,3453.02,26131511,99.83,0,0.01,0.16,516.28,3453.03,26131512,99.83,0,0,0.15,516.23,3453.07,26131513,99.8,0,0,0.16,516.21,3453.08,26131514,99.67,0,0,0.39,517.06,3452.26,26131515,99.69,0,0,0.43,516.45,3452.9,26131516,99.81,0,0,0.14,516.42,3452.92,26131517,99.83,0,0,0.2,516.49,3452.84,26131518,99.81,0,0,0.14,516.6,3452.73,26131519,99.64,0,0,0.39,517.17,3452.15,26131520,99.77,0,0,0.42,516.58,3452.76,26131521,99.83,0,0,0.16,516.57,3452.77,26131522,99.8,0,0,0.14,516.54,3452.79,26131523,99.8,0,0,0.14,516.43,3452.9,26131524,99.8,0,0,0.15,516.25,3453.07,26131525,99.54,0,0,0.64,516.66,3452.68,26131526,99.8,0,0,0.16,516.24,3453.1,26131527,99.82,0,0,0.14,516.22,3453.11,26131528,99.82,0,0,0.14,516.2,3453.13,26131529,99.82,0,0,0.14,516.24,3453.08,26131530,99.5,0,0,0.7,516.44,3452.9,26131531,99.78,0,0,0.13,516.11,3453.23,26131532,99.81,0,0,0.17,516.08,3453.25,26131533,99.84,0,0,0.14,516.07,3453.26,26131534,99.81,0,0,0.15,516.04,3453.29,26131535,99.61,0,0,0.67,517.02,3452.33,26131536,99.76,0,0,0.16,516.52,3452.82,26131537,99.82,0,0,0.14,516.5,3452.84,26131538,99.8,0,0,0.18,516.23,3453.1,26131539,99.6,0,0,0.27,516.7,3452.61,26131540,99.59,0,0,0.75,517.06,3452.26,26131541,99.84,0,0,0.16,516.73,3452.58,26131542,99.8,0,0,0.16,516.4,3452.91,26131543,99.81,0,0,0.16,515.84,3453.47,26131544,99.81,0,0,0.14,515.82,3453.48,26131545,99.54,0,0,0.63,515.53,3453.78,26131546,99.83,0,0,0.2,514.32,3454.99,26131547,99.8,0,0,0.16,514.3,3455.01,26131548,99.83,0,0,0.15,514.28,3455.02,26131549,99.78,0,0,0.14,514.26,3455.04,26131550,99.55,0,0,0.73,515.7,3453.62,26131551,99.83,0,0,0.16,515.73,3453.59,26131552,99.85,0,0,0.14,515.7,3453.61,26131553,99.84,0,0,0.15,515.69,3453.63,26131554,99.83,0,0,0.15,515.75,3453.56,26131555,99.65,0,0,0.56,516.4,3452.93,26131556,99.82,0,0,0.29,515.09,3454.24,26131557,99.8,0,0,0.14,515.07,3454.25,26131558,99.83,0,0,0.14,515.05,3454.27,26131559,99.83,0,0,0.16,515.02,3454.29,26131560,99.51,0.02,0.04,0.7,519.5,3449.72,26131561,99.6,0.01,0.06,0.66,522.28,3446.88,26131562,99.82,0,0,0.14,522.32,3446.82,26131563,99.8,0,0,0.15,522.33,3446.8,26131564,99.78,0,0,0.15,522.3,3446.83,26131565,99.66,0,0,0.34,523.76,3445.39,26131566,99.63,0,0,0.56,524.57,3444.57,26131567,99.82,0,0,0.13,524.21,3444.93,26131568,99.8,0,0,0.16,524.17,3444.96,26131569,99.58,0,0.01,0.36,524.29,3444.82,26131570,99.68,0,0,0.32,524.08,3445.05,26131571,99.68,0,0,0.54,523.4,3445.72,26131572,99.81,0,0,0.16,522.79,3446.33,26131573,99.81,0,0,0.17,522.76,3446.35,26131574,99.77,0,0,0.19,522.74,3446.41,26131575,99.72,0,0,0.38,523.69,3445.49,26131576,99.68,0,0,0.57,523.74,3445.43,26131577,99.79,0,0,0.2,523.56,3445.61,26131578,99.8,0,0,0.15,523.6,3445.57,26131579,99.84,0,0,0.14,523.56,3445.6,26131580,99.68,0,0,0.3,522.84,3446.34,26131581,99.64,0,0,0.46,524.2,3444.97,26131582,99.76,0,0,0.21,524.24,3444.93,26131583,99.83,0,0,0.15,524.21,3444.96,26131584,99.84,0,0,0.17,524.31,3444.85,26131585,99.8,0,0,0.34,524.35,3444.82,26131586,99.73,0,0,0.56,524.68,3444.5,26131587,97.47,0,0,0.16,524.3,3444.87,26131588,99.84,0,0,0.18,521.48,3447.73,26131589,99.87,0,0,0.17,516.5,3452.8,26131590,99.79,0,0,0.3,516.25,3453.07,26131591,99.73,0,0,0.46,516.6,3452.72,26131592,99.94,0,0,0.26,516.29,3453.04,26131593,99.91,0,0,0.15,516.39,3452.96,26131594,99.92,0,0,0.16,516.35,3453.03,26131595,99.82,0,0,0.31,516.59,3452.8,26131596,99.74,0,0,0.54,516.8,3452.6,26131597,99.9,0,0,0.14,515.56,3453.83,26131598,99.87,0,0,0.19,516.01,3453.37,26131599,99.78,0.01,0.01,0.32,516.29,3453.07,26131600,99.79,0,0,0.3,515.19,3454.18,26131601,99.9,0,0,0.16,515.15,3454.22,26131602,99.76,0,0,0.52,516.67,3452.69,26131603,99.89,0,0,0.15,516.34,3453.02,26131604,99.88,0,0,0.14,516.32,3453.03,26131605,99.81,0,0,0.3,515.6,3453.77,26131606,99.9,0,0,0.14,515.57,3453.8,26131607,99.73,0,0,0.53,516.5,3452.87,26131608,99.8,0,0,0.14,516.02,3453.34,26131609,99.88,0,0,0.15,516,3453.35,26131610,99.77,0,0,0.3,516.25,3453.12,26131611,99.92,0,0,0.13,516.23,3453.14,26131612,99.75,0,0,0.54,516.77,3452.59,26131613,99.89,0,0,0.14,516.63,3452.72,26131614,99.88,0,0,0.14,516.6,3452.74,26131615,99.78,0,0,0.3,515.66,3453.7,26131616,99.86,0,0,0.17,515.59,3453.77,26131617,99.75,0,0,0.52,516.09,3453.27,26131618,99.9,0,0,0.16,515.8,3453.55,26131619,99.92,0,0,0.13,515.79,3453.55,26131620,99.8,0,0,0.29,516.51,3452.85,26131621,99.88,0,0,0.16,516.51,3452.85,26131622,99.75,0,0,0.38,516.83,3452.52,26131623,99.89,0,0,0.28,516.22,3453.13,26131624,99.9,0,0,0.15,516.19,3453.16,26131625,99.69,0,0,0.3,516.09,3453.28,26131626,99.89,0,0,0.16,516.12,3453.25,26131627,99.79,0,0,0.52,516.91,3452.45,26131628,99.9,0,0,0.16,516.57,3452.78,26131629,99.72,0,0,0.31,516.32,3453,26131630,99.79,0,0,0.29,516.3,3453.04,26131631,99.91,0,0,0.16,516.27,3453.07,26131632,99.75,0,0,0.47,516.77,3452.56,26131633,99.35,0,0,0.19,516.48,3452.85,26131634,99.9,0,0,0.16,516.46,3452.89,26131635,99.79,0,0,0.32,515.5,3453.88,26131636,99.91,0,0,0.14,515.54,3453.84,26131637,99.91,0,0,0.19,515.63,3453.74,26131638,99.72,0,0,0.58,516.88,3452.49,26131639,99.9,0,0,0.16,516.57,3452.79,26131640,99.78,0,0,0.32,516.58,3452.8,26131641,99.91,0,0,0.17,516.56,3452.81,26131642,99.92,0,0,0.18,516.54,3452.83,26131643,99.74,0,0,0.56,516.17,3453.19,26131644,99.91,0,0,0.16,515.74,3453.62,26131645,99.78,0,0,0.31,514.78,3454.59,26131646,99.9,0,0,0.16,514.72,3454.65,26131647,99.87,0,0,0.14,514.84,3454.53,26131648,99.79,0,0,0.53,516.57,3452.79,26131649,99.9,0,0,0.15,516.59,3452.77,26131650,99.76,0,0,0.29,516.59,3452.79,26131651,99.93,0,0,0.16,516.57,3452.8,26131652,99.92,0,0,0.14,516.54,3452.82,26131653,99.79,0,0,0.52,516.57,3452.79,26131654,99.9,0,0,0.15,516,3453.36,26131655,99.81,0,0,0.29,516.49,3452.89,26131656,99.9,0,0,0.14,516.47,3452.9,26131657,99.92,0,0,0.16,516.6,3452.76,26131658,99.76,0,0,0.5,517.38,3451.98,26131659,99.75,0,0,0.38,516.59,3452.74,26131660,99.73,0.02,0.04,0.41,517.48,3451.82,26131661,99.88,0,0,0.14,519.44,3449.78,26131662,99.93,0,0,0.13,519.48,3449.73,26131663,99.77,0,0,0.51,520.65,3448.56,26131664,99.91,0,0,0.21,521.88,3447.33,26131665,99.85,0,0,0.3,522.11,3447.12,26131666,99.92,0,0,0.17,522.1,3447.14,26131667,99.92,0,0,0.13,522.07,3447.17,26131668,99.77,0,0,0.33,522.38,3446.86,26131669,99.93,0,0,0.35,521.83,3447.4,26131670,99.76,0.01,0.06,0.32,521.69,3447.55,26131671,99.89,0,0,0.19,523.08,3446.1,26131672,99.91,0,0,0.16,523.06,3446.12,26131673,99.92,0,0,0.14,523.21,3445.97,26131674,99.75,0,0,0.57,524.89,3444.28,26131675,99.8,0,0,0.3,524.66,3444.53,26131676,99.9,0,0,0.16,524.63,3444.55,26131677,99.93,0,0,0.14,524.61,3444.58,26131678,99.92,0,0,0.15,524.57,3444.61,26131679,99.72,0,0,0.54,524.9,3444.27,26131680,99.73,0,0,0.3,523.64,3445.55,26131681,99.91,0,0,0.19,523.69,3445.5,26131682,99.93,0,0,0.14,523.67,3445.52,26131683,99.9,0,0,0.16,523.64,3445.54,26131684,99.75,0,0,0.52,524.52,3444.66,26131685,99.84,0,0,0.31,524.34,3444.84,26131686,99.92,0,0,0.16,524.31,3444.86,26131687,99.91,0,0,0.14,524.28,3444.89,26131688,99.89,0,0,0.14,524.37,3444.79,26131689,99.52,0,0.01,0.63,525.56,3443.57,26131690,99.81,0,0,0.36,525.12,3444.02,26131691,99.91,0,0,0.15,525.09,3444.05,26131692,99.88,0,0,0.16,524.69,3444.45,26131693,99.9,0,0,0.14,524.03,3445.1,26131694,99.73,0,0,0.52,524.54,3444.61,26131695,99.76,0,0,0.32,523.18,3445.98,26131696,99.9,0,0,0.17,523.21,3445.95,26131697,99.9,0,0,0.2,522.94,3446.22,26131698,99.92,0,0,0.15,522.9,3446.25,26131699,99.8,0,0,0.52,523.3,3445.84,26131700,99.78,0,0,0.37,523.89,3445.27,26131701,99.88,0,0,0.18,523.82,3445.34,26131702,99.91,0,0,0.18,523.79,3445.36,26131703,99.89,0,0,0.18,523.89,3445.26,26131704,99.78,0,0,0.32,524.24,3444.91,26131705,99.76,0,0,0.52,522.71,3446.45,26131706,99.93,0,0,0.13,522.66,3446.5,26131707,99.92,0,0,0.17,522.63,3446.53,26131708,99.35,0,0,0.16,522.6,3446.55,26131709,99.92,0,0,0.18,522.58,3446.57,26131710,99.63,0,0,0.71,523.82,3445.34,26131711,99.93,0,0,0.17,523.69,3445.47,26131712,99.92,0,0,0.14,523.67,3445.48,26131713,99.93,0,0,0.2,523.65,3445.5,26131714,99.92,0,0,0.14,523.62,3445.52,26131715,99.63,0,0,0.73,522.69,3446.47,26131716,99.93,0,0,0.15,522.1,3447.05,26131717,99.89,0,0,0.17,522.08,3447.07,26131718,99.84,0,0,0.2,521.66,3447.48,26131719,99.8,0,0,0.28,524.13,3444.99,26131720,99.72,0,0.01,0.67,524.82,3444.32,26131721,99.95,0,0,0.14,523.88,3445.25,26131722,99.93,0,0,0.17,523.85,3445.28,26131723,99.94,0,0,0.14,523.83,3445.29,26131724,99.93,0,0,0.16,523.8,3445.32,26131725,99.69,0,0,0.72,524.35,3444.78,26131726,99.92,0,0,0.15,523.82,3445.31,26131727,99.92,0,0,0.18,523.92,3445.21,26131728,99.93,0,0,0.14,523.88,3445.24,26131729,99.9,0,0,0.18,523.86,3445.26,26131730,96.56,0.02,0.01,14.93,534.95,3436.04,26131731,99.9,0,0,64.39,526.8,3442.23,26131732,99.92,0,0,0.16,526.77,3442.25,26131733,99.91,0,0,0.14,526.74,3442.28,26131734,99.91,0,0,0.15,526.71,3442.3,26131735,99.63,0,0,0.57,526.47,3442.57,26131736,99.92,0,0,0.29,524.26,3444.8,26131737,99.93,0,0,0.14,524.23,3444.82,26131738,99.9,0,0,0.16,524.33,3444.72,26131739,99.9,0,0,0.14,524.36,3444.7,26131740,99.64,0,0,0.63,523.75,3445.33,26131741,99.91,0,0,0.21,523.33,3445.74,26131742,99.91,0,0,0.14,523.31,3445.76,26131743,99.88,0,0,0.16,523.28,3445.78,26131744,99.93,0,0,0.13,523.25,3445.81,26131745,99.67,0,0,0.48,523.41,3445.67,26131746,99.92,0,0,0.36,524.1,3444.97,26131747,99.92,0,0,0.16,524.15,3444.92,26131748,99.92,0,0,0.14,524.12,3444.95,26131749,99.77,0,0.01,0.33,524.07,3444.97,26131750,99.86,0,0,0.31,524.31,3444.75,26131751,99.75,0,0,0.54,525.04,3444.01,26131752,99.92,0,0,0.14,524.26,3444.79,26131753,99.91,0,0,0.16,524.29,3444.75,26131754,99.49,0,0,0.13,524.38,3444.67,26131755,97.9,0,0,0.37,523.72,3445.35,26131756,99.76,0,0,0.56,524.03,3445.04,26131757,99.9,0,0,0.18,523.32,3445.74,26131758,99.93,0,0,0.15,523.31,3445.75,26131759,99.91,0,0,0.14,523.27,3445.78,26131760,99.79,0,0,0.3,523.5,3445.57,26131761,99.76,0,0,0.5,524.35,3444.72,26131762,99.93,0,0,0.2,524.38,3444.68,26131763,99.91,0,0,0.14,524.36,3444.7,26131764,99.91,0,0,0.14,524.32,3444.73,26131765,99.85,0,0,0.32,523.83,3445.24,26131766,99.8,0,0,0.47,524.29,3444.79,26131767,99.92,0,0,0.23,524.02,3445.05,26131768,99.92,0,0,0.16,523.99,3445.07,26131769,98.65,0,0,0.14,524.08,3444.98,26131770,99.84,0,0,0.3,524.15,3444.92,26131771,99.77,0,0,0.49,524.48,3444.59,26131772,99.92,0,0,0.19,524.07,3444.99,26131773,99.93,0,0,0.14,524.04,3445.01,26131774,99.93,0,0,0.15,524.01,3445.04,26131775,99.86,0,0,0.3,524.24,3444.82,26131776,99.78,0,0,0.4,524.67,3444.39,26131777,99.9,0,0,0.3,524.63,3444.43,26131778,99.91,0,0,0.18,524.18,3444.88,26131779,99.77,0,0,0.28,524.56,3444.48,26131780,99.86,0,0.01,0.3,524.56,3444.49,26131781,99.83,0,0,0.29,525.01,3444.03,26131782,99.9,0,0,0.39,524.49,3444.55,26131783,99.93,0,0,0.15,524.47,3444.57,26131784,99.93,0,0,0.15,524.56,3444.49,26131785,99.83,0,0,0.32,524.62,3444.44,26131786,99.91,0,0,0.15,524.58,3444.48,26131787,99.81,0,0,0.53,524.91,3444.15,26131788,99.91,0,0,0.16,524.53,3444.52,26131789,99.91,0,0,0.14,524.5,3444.55,26131790,99.81,0,0,0.31,523.28,3445.78,26131791,99.88,0,0,0.14,523.29,3445.78,26131792,99.75,0,0,0.54,523.74,3445.32,26131793,99.92,0,0,0.14,523.36,3445.7,26131794,99.93,0,0,0.15,523.33,3445.72,26131795,99.81,0,0,0.32,523.66,3445.41,26131796,99.92,0,0,0.16,523.53,3445.53,26131797,99.79,0,0,0.54,523.53,3445.53,26131798,99.93,0,0,0.14,522.99,3446.06,26131799,99.94,0,0,0.15,523.03,3446.02,26131800,99.71,0,0,0.3,522.94,3446.12,26131801,99.85,0,0,0.15,522.9,3446.16,26131802,99.74,0,0,0.56,524.2,3444.86,26131803,99.92,0,0,0.15,524.07,3444.98,26131804,99.81,0,0,0.15,524.04,3445.01,26131805,99.78,0,0,0.35,524.51,3444.55,26131806,99.89,0,0,0.19,524.49,3444.57,26131807,99.78,0,0,0.55,525.01,3444.05,26131808,99.88,0,0,0.15,524.63,3444.43,26131809,99.74,0,0.01,0.3,524.83,3444.2,26131810,99.8,0,0,0.35,523.61,3445.43,26131811,99.92,0,0,0.13,523.56,3445.48,26131812,99.78,0,0,0.54,524.06,3444.98,26131813,99.88,0,0,0.16,524.49,3444.55,26131814,99.9,0,0,0.17,524.51,3444.51,26131815,99.74,0,0,0.31,524.64,3444.41,26131816,99.89,0,0,0.14,524.6,3444.44,26131817,99.91,0,0,0.2,524.57,3444.46,26131818,99.75,0,0,0.53,524.9,3444.13,26131819,99.93,0,0,0.15,524.52,3444.51,26131820,99.78,0,0,0.31,522.82,3446.23,26131821,99.9,0,0,0.14,522.76,3446.28,26131822,99.9,0,0,0.14,522.8,3446.24,26131823,99.75,0,0,0.54,524.81,3444.22,26131824,99.93,0,0,0.15,524.31,3444.72,26131825,99.8,0,0,0.3,524.07,3444.98,26131826,99.93,0,0,0.15,524.02,3445.02,26131827,99.93,0,0,0.16,524,3445.04,26131828,99.74,0,0,0.56,525.1,3443.93,26131829,99.29,0,0,0.14,524.8,3444.23,26131830,99.72,0,0,0.3,524.86,3444.18,26131831,99.92,0,0,0.14,524.83,3444.21,26131832,99.88,0,0,0.16,524.8,3444.23,26131833,99.76,0.02,1.49,0.82,525.25,3443.76,26131834,99.9,0.01,1.03,0.38,524.75,3444.26,26131835,99.75,0.01,0.58,0.53,523.81,3445.2,26131836,99.91,0.01,1.94,0.3,523.79,3445.22,26131837,99.93,0.01,0.67,0.32,523.73,3445.26,26131838,99.71,0,0,0.68,524.09,3444.9,26131839,99.7,0.01,0,0.32,524.72,3444.24,26131840,99.79,0.01,0.01,0.31,524.72,3444.25,26131841,99.89,0.01,0,0.15,524.74,3444.23,26131842,99.9,0,0,0.16,524.78,3444.18,26131843,99.79,0,0,0.52,524.65,3444.31,26131844,99.88,0,0,0.14,523.24,3445.72,26131845,99.82,0,0,0.3,522.75,3446.23,26131846,99.91,0,0,0.16,522.71,3446.25,26131847,99.87,0,0,0.14,522.7,3446.26,26131848,99.75,0,0,0.54,523.36,3445.6,26131849,99.94,0,0,0.16,524.02,3444.93,26131850,99.81,0,0,0.29,523.54,3445.43,26131851,99.93,0,0,0.15,523.49,3445.47,26131852,99.93,0,0,0.16,523.45,3445.52,26131853,99.93,0,0,0.15,523.42,3445.54,26131854,99.75,0,0,0.52,523.46,3445.5,26131855,99.79,0,0,0.32,523.36,3445.61,26131856,99.92,0,0,0.15,523.32,3445.65,26131857,99.94,0,0,0.14,523.28,3445.68,26131858,99.9,0,0,0.16,523.27,3445.69,26131859,99.77,0,0,0.55,524.17,3444.79,26131860,99.74,0,0,0.3,523.25,3445.73,26131861,99.9,0,0,0.13,523.24,3445.73,26131862,99.89,0,0,0.16,523.35,3445.62,26131863,99.94,0,0,0.14,523.33,3445.64,26131864,99.78,0,0,0.56,524.13,3444.83,26131865,99.82,0,0,0.3,523.54,3445.43,26131866,99.92,0,0,0.16,523.5,3445.47,26131867,99.85,0,0,0.16,523.46,3445.51,26131868,99.9,0,0,0.15,523.43,3445.53,26131869,99.61,0,0.01,0.52,524.03,3444.91,26131870,99.81,0,0,0.41,524.06,3444.89,26131871,99.9,0,0,0.14,524.05,3444.91,26131872,99.92,0,0,0.16,524.02,3444.93,26131873,99.92,0,0,0.14,523.98,3444.96,26131874,99.75,0,0,0.54,524.42,3444.52,26131875,99.81,0,0,0.32,522.25,3446.7,26131876,99.92,0,0,0.14,522.25,3446.7,26131877,99.91,0,0,0.19,522.6,3446.35,26131878,99.93,0,0,0.14,522.57,3446.37,26131879,99.73,0,0,0.39,523.8,3445.13,26131880,99.81,0,0,0.46,524.26,3444.69,26131881,99.92,0,0,0.16,524.21,3444.73,26131882,99.88,0,0,0.14,524.19,3444.75,26131883,99.89,0,0,0.16,524.2,3444.73,26131884,99.77,0,0,0.38,524.73,3444.21,26131885,99.83,0,0,0.49,524.05,3444.91,26131886,99.93,0,0,0.18,524.01,3444.94,26131887,99.86,0,0,0.14,523.98,3444.97,26131888,99.91,0,0,0.16,523.94,3445,26131889,99.88,0,0,0.14,523.92,3445.03,26131890,99.51,0,0,0.73,523.36,3445.6,26131891,99.92,0,0,0.18,523.09,3445.87,26131892,99.92,0,0,0.18,523.05,3445.9,26131893,99.92,0,0,0.14,523.02,3445.93,26131894,99.91,0,0,0.17,522.99,3445.95,26131895,99.54,0,0,0.75,523.35,3445.61,26131896,99.91,0,0,0.17,522.94,3446.01,26131897,99.93,0,0,0.14,522.92,3446.03,26131898,99.91,0,0,0.19,523.35,3445.59,26131899,99.79,0,0,0.28,524.26,3444.66,26131900,99.69,0,0.01,0.69,524.62,3444.32,26131901,99.9,0,0,0.16,524.24,3444.69,26131902,99.89,0,0,0.14,524.22,3444.71,26131903,99.91,0,0,0.15,524.19,3444.73,26131904,99.88,0,0,0.14,524.16,3444.75,26131905,99.72,0,0,0.67,523.74,3445.19,26131906,99.47,0,0,0.71,524.85,3444.06,26131907,99.89,0,0,0.16,524.61,3444.29,26131908,99.9,0,0,0.14,524.59,3444.32,26131909,99.9,0,0,0.16,524.55,3444.35,26131910,99.73,0,0,0.73,524.45,3444.46,26131911,99.9,0,0,0.14,523.78,3445.14,26131912,99.9,0,0,0.13,523.75,3445.17,26131913,99.87,0,0,0.18,523.72,3445.2,26131914,99.91,0,0,0.14,523.8,3445.11,26131915,99.69,0,0,0.7,525.12,3443.81,26131916,99.93,0,0,0.14,524.08,3444.84,26131917,99.88,0,0,0.18,524.06,3444.88,26131918,99.87,0,0,0.16,524.02,3444.91,26131919,99.94,0,0,0.15,523.99,3444.94,26131920,99.67,0,0,0.59,524.62,3444.33,26131921,99.9,0,0,0.27,522.59,3446.35,26131922,99.9,0,0,0.13,522.62,3446.32,26131923,99.91,0,0,0.17,522.6,3446.34,26131924,99.93,0,0,0.14,522.57,3446.36,26131925,99.85,0,0,0.33,523.77,3445.18,26131926,99.78,0,0,0.57,525.13,3443.81,26131927,99.91,0,0,0.14,524.71,3444.22,26131928,99.9,0,0,0.14,524.74,3444.19,26131929,99.74,0,0.01,0.29,524.62,3444.28,26131930,99.83,0,0,0.29,524.36,3444.56,26131931,99.79,0,0,0.52,524.85,3444.06,26131932,99.9,0,0,0.16,524.52,3444.38,26131933,99.86,0,0,0.14,524.49,3444.41,26131934,99.91,0,0,0.14,524.46,3444.43,26131935,99.8,0,0,0.32,524.24,3444.67,26131936,99.75,0,0,0.55,523.99,3444.91,26131937,99.88,0,0,0.21,523.35,3445.55,26131938,99.88,0,0,0.14,523.32,3445.58,26131939,99.89,0,0,0.15,523.29,3445.6,26131940,99.72,0,0,0.31,523.28,3445.63,26131941,99.74,0,0,0.53,524.34,3444.57,26131942,99.87,0,0,0.17,524.45,3444.46,26131943,99.88,0,0,0.14,524.45,3444.45,26131944,99.89,0,0,0.15,524.58,3444.32,26131945,99.81,0,0,0.35,524.56,3444.35,26131946,99.71,0,0,0.52,525.02,3443.89,26131947,99.9,0,0,0.15,524.5,3444.4,26131948,99.83,0,0,0.14,524.47,3444.43,26131949,99.9,0,0,0.15,524.44,3444.45,26131950,99.85,0,0,0.33,524.44,3444.48,26131951,99.72,0,0,0.54,524.88,3444.03,26131952,99.91,0,0,0.16,524.56,3444.34,26131953,99.91,0,0,0.15,524.54,3444.36,26131954,99.92,0,0,0.14,524.51,3444.38,26131955,99.78,0,0,0.34,524.74,3444.17,26131956,99.72,0,0,0.39,525.01,3443.9,26131957,99.86,0,0,0.32,523.94,3444.96,26131958,99.85,0,0,0.19,523.97,3444.92,26131959,99.68,0,0,0.29,524.81,3444.06,26131960,99.81,0,0.01,0.31,524.57,3444.32,26131961,99.75,0,0,0.35,524.82,3444.07,26131962,99.9,0,0,0.35,523.76,3445.12,26131963,99.88,0,0,0.14,523.74,3445.14,26131964,99.84,0,0,0.15,523.72,3445.17,26131965,99.78,0,0,0.33,523.71,3445.19,26131966,99.8,0,0,0.16,523.86,3445.04,26131967,99.7,0,0,0.53,524.86,3444.03,26131968,99.92,0,0,0.14,524.54,3444.35,26131969,99.91,0,0,0.16,524.51,3444.37,26131970,99.8,0,0,0.3,524.75,3444.15,26131971,99.9,0,0,0.16,524.72,3444.18,26131972,99.7,0,0,0.52,525.05,3443.85,26131973,99.9,0,0,0.16,524.73,3444.16,26131974,99.85,0,0,0.15,524.82,3444.06,26131975,99.75,0,0,0.32,523.87,3445.04,26131976,99.87,0,0,0.16,523.8,3445.1,26131977,99.71,0,0,0.52,524.76,3444.14,26131978,99.81,0,0,0.15,524.24,3444.66,26131979,99.82,0,0,0.18,524.21,3444.68,26131980,98.95,0,0,12.3,523.81,3445.85,26131981,99.86,0,0,0.16,523.84,3445.91,26131982,99.71,0,0,0.44,524.23,3445.5,26131983,99.82,0,0,0.34,523.39,3446.33,26131984,99.83,0,0,0.14,523.36,3446.35,26131985,99.78,0,0,0.32,524.32,3445.44,26131986,99.84,0,0,0.16,524.31,3445.46,26131987,99.65,0,0.01,0.56,524.7,3445.06,26131988,99.78,0,0,0.16,524.62,3445.13,26131989,99.65,0,0.01,0.3,524.87,3444.88,26131990,99.74,0,0,0.33,523.89,3445.87,26131991,99.81,0,0,0.15,523.65,3446.11,26131992,99.66,0,0,0.34,523.27,3446.49,26131993,99.81,0,0,0.38,524.03,3445.72,26131994,99.82,0,0,0.16,524,3445.77,26131995,99.66,0,0,0.32,522.61,3447.19,26131996,99.82,0,0,0.17,522.69,3447.11,26131997,99.81,0,0,0.18,522.65,3447.14,26131998,99.55,0.01,0.01,0.58,524.57,3445.21,26131999,99.81,0,0,0.18,524.04,3445.74,26132000,99.72,0,0,0.34,522.94,3446.86,26132001,99.82,0,0,0.16,522.89,3446.9,26132002,99.83,0,0,0.14,522.86,3446.92,26132003,99.69,0,0,0.57,524.09,3445.69,26132004,99.81,0,0,0.16,523.79,3445.99,26132005,99.71,0,0,0.33,523.56,3446.23,26132006,99.84,0,0,0.16,523.51,3446.28,26132007,99.78,0,0,0.14,523.57,3446.22,26132008,99.66,0,0,0.42,524.25,3445.53,26132009,99.79,0,0,0.35,523.89,3445.89,26132010,99.75,0,0,0.32,523.16,3446.63,26132011,99.8,0,0,0.14,523.12,3446.67,26132012,99.82,0,0,0.16,523.09,3446.7,26132013,99.67,0,0,0.55,523.68,3446.1,26132014,99.82,0,0,0.15,523.52,3446.26,26132015,99.65,0,0,0.32,523.16,3446.64,26132016,99.82,0,0,0.19,523.17,3446.62,26132017,99.82,0,0,0.14,523.14,3446.64,26132018,99.67,0,0,0.61,523.76,3446.02,26132019,99.72,0,0,0.3,531.8,3437.96,26132020,99.71,0,0.01,0.37,531.92,3437.85,26132021,99.83,0,0,0.15,531.9,3437.88,26132022,99.82,0,0,0.14,531.94,3437.83,26132023,99.66,0,0,0.52,532.35,3437.42,26132024,99.8,0,0,0.15,531.74,3438.01,26132025,99.72,0,0,0.38,531.49,3438.28,26132026,99.8,0,0,0.14,531.46,3438.3,26132027,99.77,0,0,0.16,531.43,3438.33,26132028,99.7,0,0,0.32,531.78,3437.97,26132029,99.8,0,0,0.38,531.91,3437.84,26132030,99.69,0,0,0.38,530.84,3438.93,26132031,99.8,0,0,0.18,530.78,3438.98,26132032,99.78,0,0,0.18,530.75,3439.01,26132033,99.85,0,0,0.16,530.72,3439.03,26132034,99.63,0,0,0.55,532.45,3437.3,26132035,99.76,0,0,0.34,532.5,3437.27,26132036,99.82,0,0,0.14,532.38,3437.39,26132037,99.8,0,0,0.16,532.42,3437.35,26132038,99.85,0,0,0.15,532.51,3437.25,26132039,99.71,0,0,0.56,532.79,3436.97,26132040,99.67,0,0,0.38,531.51,3438.26,26132041,99.83,0,0,0.15,531.46,3438.3,26132042,99.81,0,0,0.15,531.44,3438.32,26132043,99.82,0,0,0.16,531.41,3438.35,26132044,99.63,0,0,0.47,531.98,3437.77,26132045,99.7,0,0,0.38,532.39,3437.37,26132046,99.8,0,0,0.18,532.52,3437.25,26132047,99.81,0,0,0.18,532.49,3437.27,26132048,99.82,0,0,0.14,532.46,3437.3,26132049,99.48,0,0.01,0.61,532.67,3437.08,26132050,99.76,0,0,0.32,532.41,3437.37,26132051,99.83,0,0,0.16,532.39,3437.39,26132052,99.82,0,0,0.14,532.36,3437.41,26132053,99.8,0,0,0.15,532.39,3437.38,26132054,99.63,0,0,0.41,532.84,3436.92,26132055,99.68,0,0,0.4,532.01,3437.78,26132056,99.85,0,0,0.16,531.97,3437.82,26132057,99.8,0,0,0.23,531.95,3437.84,26132058,99.8,0,0,0.14,531.91,3437.87,26132059,99.66,0,0,0.5,532.24,3437.55,26132060,99.67,0,0,0.33,531.39,3438.41,26132061,99.83,0,0,0.13,531.43,3438.37,26132062,99.83,0,0,0.16,531.54,3438.25,26132063,99.81,0,0,0.15,531.51,3438.28,26132064,99.7,0,0,0.32,531.86,3437.92,26132065,99.6,0,0,0.49,531.82,3437.98,26132066,99.84,0,0,0.16,531.69,3438.1,26132067,99.79,0,0,0.14,531.66,3438.13,26132068,99.83,0,0,0.15,531.64,3438.14,26132069,99.82,0,0,0.15,531.78,3438,26132070,99.5,0,0,0.64,532.46,3437.33,26132071,99.82,0,0,0.14,531.99,3437.8,26132072,97.66,0,0,0.16,531.96,3437.82,26132073,99.84,0,0,0.16,531.93,3437.85,26132074,99.84,0,0,0.14,531.89,3437.88,26132075,99.58,0,0,0.68,532.72,3437.07,26132076,99.81,0,0,0.16,532.41,3437.38,26132077,99.85,0,0,0.14,532.51,3437.28,26132078,99.83,0,0,0.21,532.31,3437.47,26132079,99.73,0,0,0.29,532.46,3437.3,26132080,99.6,0,0.01,0.7,532.97,3436.81,26132081,99.85,0,0,0.13,532.66,3437.11,26132082,99.83,0,0,0.17,532.64,3437.12,26132083,99.85,0,0,0.15,532.62,3437.14,26132084,99.82,0,0,0.14,532.76,3437,26132085,99.5,0,0,0.68,532.28,3437.49,26132086,99.83,0,0,0.16,531.74,3438.04,26132087,99.81,0,0,0.14,531.71,3438.05,26132088,99.85,0,0,0.14,531.69,3438.08,26132089,99.82,0,0,0.17,531.66,3438.1,26132090,99.61,0,0,0.68,532.75,3437.03,26132091,99.85,0,0,0.16,532.42,3437.35,26132092,99.84,0,0,0.14,532.52,3437.25,26132093,99.83,0,0,0.16,532.48,3437.29,26132094,99.82,0,0,0.14,532.44,3437.32,26132095,94.87,0.35,0.01,78.64,541.19,3428.83,26132096,99.55,0,0,182.25,535.03,3434.65,26132097,99.86,0,0,0.17,535.19,3434.5,26132098,99.82,0,0,0.14,535.15,3434.52,26132099,99.84,0,0,0.14,535.12,3434.56,26132100,99.66,0,0,0.27,535.03,3434.66,26132101,99.71,0,0,0.61,533.28,3436.44,26132102,99.81,0,0,0.14,532.9,3436.82,26132103,99.8,0,0,0.15,532.86,3436.84,26132104,99.82,0,0,0.17,532.86,3436.85,26132105,99.75,0,0,0.27,531.63,3438.09,26132106,99.59,0,0,0.58,532.51,3437.22,26132107,99.77,0,0,0.16,532.25,3437.48,26132108,99.83,0,0,0.15,532.23,3437.51,26132109,99.7,0,0.01,0.28,532.42,3437.29,26132110,99.71,0,0,0.31,532.65,3437.08,26132111,99.7,0,0,0.54,532.99,3436.73,26132112,99.81,0,0,0.14,532.78,3436.93,26132113,99.84,0,0,0.17,532.76,3436.96,26132114,99.8,0,0,0.15,532.71,3437,26132115,99.71,0,0,0.29,531.98,3437.74,26132116,99.7,0,0,0.57,532.23,3437.49,26132117,99.83,0,0,0.21,531.17,3438.54,26132118,99.82,0,0,0.16,531.14,3438.57,26132119,99.82,0,0,0.15,531.23,3438.48,26132120,98.1,0,0,0.27,532.99,3436.74,26132121,99.63,0,0,0.48,533.22,3436.5,26132122,99.71,0,0,0.21,532.71,3437,26132123,99.82,0,0,0.16,532.68,3437.03,26132124,99.82,0,0,0.14,532.65,3437.06,26132125,99.71,0,0,0.29,531.93,3437.8,26132126,99.63,0,0,0.53,532.57,3437.15,26132127,99.8,0,0,0.14,533.02,3436.7,26132128,99.82,0.01,0.01,0.18,532.97,3436.75,26132129,99.82,0,0,0.15,532.93,3436.78,26132130,99.71,0,0,0.26,532.92,3436.81,26132131,99.68,0,0,0.4,533.25,3436.47,26132132,99.84,0,0,0.29,532.87,3436.85,26132133,98.62,0,0,0.14,532.9,3436.81,26132134,99.83,0,0,0.14,533,3436.71,26132135,99.72,0,0,0.28,532.04,3437.68,26132136,99.69,0,0,0.53,532.44,3437.28,26132137,99.83,0,0,0.2,532.68,3437.04,26132138,99.83,0,0,0.21,532.33,3437.38,26132139,99.74,0,0,0.31,532.85,3436.83,26132140,99.77,0,0.01,0.3,532.63,3437.07,26132141,99.86,0,0,0.14,532.7,3436.99,26132142,99.75,0,0,0.54,533.54,3436.15,26132143,99.89,0,0,0.16,531.98,3437.7,26132144,99.86,0,0,0.15,531.96,3437.72,26132145,99.84,0,0,0.27,532.19,3437.5,26132146,99.86,0,0,0.14,532.17,3437.53,26132147,99.74,0,0,0.52,532.62,3437.07,26132148,99.9,0,0,0.15,532.12,3437.6,26132149,99.92,0,0,0.18,532.18,3437.53,26132150,99.87,0,0,0.32,532.26,3437.47,26132151,99.87,0,0,0.18,532.23,3437.5,26132152,99.79,0,0,0.54,532.71,3437.01,26132153,99.9,0,0,0.18,532.43,3437.29,26132154,99.92,0,0,0.18,532.39,3437.32,26132155,99.79,0,0,0.32,531.66,3438.07,26132156,99.86,0,0,0.18,531.62,3438.1,26132157,99.73,0,0,0.53,532.25,3437.47,26132158,99.92,0,0,0.14,532.03,3437.69,26132159,99.92,0,0,0.14,532,3437.71,26132160,99.72,0,0,0.26,531.02,3438.71,26132161,99.91,0,0,0.15,530.99,3438.74,26132162,99.73,0,0,0.52,532.24,3437.48,26132163,99.89,0,0,0.21,532.15,3437.57,26132164,99.92,0,0,0.15,532.13,3437.58,26132165,99.84,0,0,0.29,531.57,3438.16,26132166,99.9,0,0,0.15,531.53,3438.19,26132167,99.77,0,0,0.43,532.53,3437.19,26132168,99.93,0,0,0.29,532.46,3437.26,26132169,99.83,0,0.01,0.27,532.43,3437.26,26132170,99.76,0,0,0.29,531.51,3438.2,26132171,99.84,0,0,0.19,531.39,3438.31,26132172,99.74,0,0,0.39,531.93,3437.77,26132173,99.9,0,0,0.34,532.26,3437.44,26132174,99.84,0,0,0.16,532.24,3437.47,26132175,99.78,0,0,0.28,532.47,3437.27,26132176,99.83,0,0,0.14,532.45,3437.3,26132177,99.91,0,0,0.18,532.42,3437.32,26132178,99.72,0,0,0.58,532.53,3437.21,26132179,99.89,0,0,0.18,532.12,3437.61,26132180,99.81,0,0,0.27,531.48,3438.27,26132181,99.91,0,0,0.15,531.54,3438.21,26132182,99.9,0,0,0.16,531.51,3438.23,26132183,99.76,0,0,0.55,532.78,3436.96,26132184,99.93,0,0,0.16,532.43,3437.3,26132185,99.83,0,0,0.31,532.43,3437.31,26132186,99.9,0,0,0.16,532.4,3437.34,26132187,99.92,0,0,0.16,532.37,3437.37,26132188,99.76,0,0,0.54,532.59,3437.14,26132189,99.92,0,0,0.14,532.25,3437.47,26132190,99.81,0,0,0.28,531.28,3438.46,26132191,99.91,0,0,0.16,531.23,3438.51,26132192,99.93,0,0,0.15,531.2,3438.54,26132193,99.74,0,0,0.56,532.27,3437.46,26132194,99.92,0,0,0.15,532.38,3437.35,26132195,99.79,0,0,0.28,532.14,3437.61,26132196,99.87,0,0,0.15,532.17,3437.57,26132197,99.92,0,0,0.14,532.26,3437.48,26132198,99.73,0,0,0.59,532.66,3437.08,26132199,99.71,0,0,0.27,532.72,3436.99,26132200,99.78,0,0.01,0.29,531.24,3438.49,26132201,99.91,0,0,0.16,531.18,3438.54,26132202,99.91,0,0,0.13,531.14,3438.58,26132203,99.74,0,0,0.45,531.99,3437.73,26132204,99.9,0,0,0.32,532.5,3437.23,26132205,99.74,0,0,0.27,531.34,3438.43,26132206,99.9,0,0,0.14,531.24,3438.51,26132207,99.91,0,0,0.18,531.22,3438.54,26132208,99.74,0,0,0.39,531.64,3438.12,26132209,99.89,0,0,0.29,532.14,3437.61,26132210,99.75,0,0,0.27,531.43,3438.33,26132211,99.91,0,0,0.14,531.44,3438.32,26132212,99.91,0,0,0.13,531.56,3438.2,26132213,99.72,0,0,0.41,531.97,3437.78,26132214,99.88,0,0,0.27,532.49,3437.26,26132215,99.87,0,0,0.27,532.24,3437.52,26132216,99.93,0,0,0.16,532.2,3437.56,26132217,99.9,0,0,0.14,532.17,3437.58,26132218,99.91,0,0,0.15,532.15,3437.6,26132219,99.77,0,0,0.54,532.55,3437.2,26132220,99.71,0,0,0.25,531.58,3438.19,26132221,99.9,0,0,0.16,531.53,3438.23,26132222,99.9,0,0,0.16,531.47,3438.29,26132223,99.91,0,0,0.15,531.43,3438.32,26132224,99.76,0,0,0.55,532.71,3437.04,26132225,99.84,0,0,0.29,532.55,3437.21,26132226,99.92,0,0,0.15,532.51,3437.25,26132227,99.9,0,0,0.17,532.47,3437.28,26132228,99.86,0,0,0.14,532.44,3437.31,26132229,99.57,0,0.01,0.63,532.94,3436.79,26132230,99.78,0,0,0.43,532.67,3437.07,26132231,99.93,0,0,0.16,532.71,3437.03,26132232,99.89,0,0,0.18,532.75,3436.98,26132233,99.87,0,0,0.17,532.72,3437.01,26132234,99.67,0,0,0.57,533.04,3436.69,26132235,99.79,0,0,0.29,532.43,3437.31,26132236,99.89,0,0,0.17,532.39,3437.36,26132237,99.9,0,0,0.23,532.44,3437.32,26132238,99.86,0,0,0.18,532.5,3437.25,26132239,99.75,0,0,0.41,532.92,3436.83,26132240,99.79,0,0,0.42,532.7,3437.06,26132241,99.7,0,0,0.16,532.65,3437.12,26132242,99.9,0,0,0.14,532.62,3437.15,26132243,99.88,0,0,0.15,532.72,3437.05,26132244,99.75,0,0,0.48,532.82,3436.94,26132245,99.76,0,0,0.32,532.25,3437.53,26132246,99.87,0,0,0.16,532.22,3437.56,26132247,99.92,0,0,0.15,532.2,3437.58,26132248,99.88,0,0,0.14,532.17,3437.6,26132249,99.73,0,0,0.37,532.7,3437.07,26132250,99.82,0,0,0.46,531.66,3438.12,26132251,99.92,0,0,0.14,531.79,3437.98,26132252,99.9,0,0,0.16,531.76,3438.01,26132253,99.92,0,0,0.14,531.74,3438.03,26132254,99.87,0,0,0.16,531.7,3438.07,26132255,99.66,0,0,0.66,532.13,3437.64,26132256,99.91,0,0,0.13,531.65,3438.12,26132257,99.92,0,0,0.16,531.63,3438.14,26132258,99.88,0,0,0.19,532.1,3437.66,26132259,99.69,0,0,0.37,532.28,3437.45,26132260,99.6,0,0.01,0.67,533.08,3436.68,26132261,99.89,0,0,0.16,532.73,3437.03,26132262,99.9,0,0,0.15,532.7,3437.05,26132263,99.88,0,0,0.14,532.67,3437.07,26132264,99.91,0,0,0.15,532.64,3437.11,26132265,99.66,0,0,0.68,532.75,3437.02,26132266,99.91,0,0,0.38,532.54,3437.23,26132267,99.91,0,0,0.17,532.52,3437.25,26132268,99.91,0,0,0.14,532.48,3437.28,26132269,99.91,0,0,0.16,532.46,3437.3,26132270,99.65,0,0,0.68,533.55,3436.22,26132271,99.9,0,0,0.19,532.91,3436.87,26132272,99.88,0,0,0.19,532.88,3436.9,26132273,99.92,0,0,0.2,532.92,3436.86,26132274,99.91,0,0,0.19,533.02,3436.76,26132275,99.64,0,0,0.68,533.66,3436.13,26132276,99.91,0,0,0.17,532.98,3436.81,26132277,99.91,0,0,0.17,532.95,3436.83,26132278,99.93,0,0,0.17,532.93,3436.85,26132279,99.92,0,0,0.16,532.89,3436.88,26132280,99.6,0,0,0.7,533.01,3436.78,26132281,99.92,0,0,0.17,532.18,3437.61,26132282,99.9,0,0,0.18,532.28,3437.51,26132283,99.9,0,0,0.18,532.25,3437.53,26132284,99.9,0,0,0.16,532.22,3437.55,26132285,99.66,0,0,0.44,533.24,3436.55,26132286,99.89,0,0,0.36,531.95,3437.84,26132287,99.9,0,0,0.16,531.91,3437.87,26132288,99.91,0,0,0.14,531.88,3437.9,26132289,99.69,0,0.01,0.27,532.93,3436.82,26132290,99.82,0,0,0.25,533.01,3436.76,26132291,99.78,0,0,0.55,533.34,3436.43,26132292,99.89,0,0,0.14,532.96,3436.81,26132293,99.89,0,0,0.15,532.93,3436.83,26132294,99.89,0,0,0.14,532.16,3437.6,26132295,99.82,0,0,0.26,532.17,3437.6,26132296,99.73,0,0,0.6,531.77,3438,26132297,99.91,0,0,0.18,531.43,3438.34,26132298,99.82,0,0,0.13,531.53,3438.23,26132299,99.87,0,0,0.18,531.5,3438.25,26132300,99.83,0,0,0.26,532.22,3437.56,26132301,98.96,0,0,0.54,532.56,3437.21,26132302,99.9,0,0,0.15,532.18,3437.59,26132303,99.88,0,0,0.16,532.16,3437.61,26132304,99.9,0,0,0.14,532.12,3437.64,26132305,99.76,0,0,0.27,531.69,3438.09,26132306,99.71,0,0,0.48,532,3437.77,26132307,99.89,0,0,0.21,531.51,3438.26,26132308,99.9,0,0,0.14,531.48,3438.28,26132309,99.86,0,0,0.14,531.45,3438.31,26132310,99.81,0,0,0.27,531.71,3438.06,26132311,99.73,0,0,0.47,532.55,3437.23,26132312,99.86,0,0,0.21,532.11,3437.66,26132313,99.89,0,0,0.14,532.22,3437.54,26132314,99.9,0,0,0.15,532.28,3437.48,26132315,99.74,0,0,0.31,532.27,3437.51,26132316,99.7,0,0,0.44,532.64,3437.12,26132317,99.91,0,0,0.28,531.71,3438.05,26132318,99.89,0,0,0.19,531.82,3437.94,26132319,99.81,0,0,0.28,532.13,3437.61,26132320,99.77,0,0.01,0.26,531.23,3438.52,26132321,99.7,0,0,0.32,531.77,3437.97,26132322,99.9,0,0,0.38,531.5,3438.23,26132323,99.91,0,0,0.15,531.47,3438.26,26132324,99.87,0,0,0.15,531.45,3438.28,26132325,99.85,0,0,0.28,532.16,3437.58,26132326,99.9,0,0,0.14,532.15,3437.59,26132327,99.73,0,0,0.54,531.62,3438.11,26132328,99.81,0,0,0.15,531.18,3438.57,26132329,99.9,0,0,0.17,531.27,3438.48,26132330,99.82,0,0,0.27,531.01,3438.75,26132331,99.93,0,0,0.16,530.97,3438.78,26132332,99.7,0,0,0.55,531.98,3437.78,26132333,99.91,0,0,0.16,531.89,3437.86,26132334,99.92,0,0,0.16,531.86,3437.88,26132335,99.72,0,0,0.3,531.68,3438.08,26132336,99.85,0,0,0.18,531.77,3437.98,26132337,99.79,0,0,0.53,532.44,3437.3,26132338,99.9,0,0,0.15,532.2,3437.54,26132339,99.9,0,0,0.14,532.18,3437.56,26132340,99.71,0,0,0.27,532.18,3437.57,26132341,99.9,0,0,0.16,532.14,3437.61,26132342,99.7,0,0,0.49,533.07,3436.68,26132343,99.84,0,0,0.2,532.63,3437.11,26132344,99.92,0,0,0.14,532.72,3437.01,26132345,99.78,0,0,0.28,532.54,3437.21,26132346,99.88,0,0,0.18,532.44,3437.31,26132347,96.38,0.13,0,12.18,539.18,3428.71,26132348,99.83,0,0,35.24,534.92,3433.89,26132349,99.75,0.01,0.01,0.38,533.48,3435.35,26132350,99.8,0,0,0.28,534.61,3434.23,26132351,99.92,0,0,0.14,534.63,3434.22,26132352,99.76,0,0,0.42,534.98,3433.86,26132353,99.91,0,0,0.32,532.32,3436.58,26132354,99.92,0,0,0.15,532.3,3436.61,26132355,99.84,0,0,0.28,532.79,3436.15,26132356,99.92,0,0,0.14,532.76,3436.17,26132357,99.78,0,0,0.33,532.84,3436.08,26132358,99.88,0,0,0.45,532.22,3436.71,26132359,99.9,0,0,0.16,532.17,3436.75,26132360,99.74,0,0,0.31,531.58,3437.35,26132361,99.9,0,0,0.14,531.62,3437.31,26132362,99.82,0,0,0.15,531.59,3437.34,26132363,99.76,0,0,0.57,532.33,3436.59,26132364,99.89,0,0,0.14,532.02,3436.89,26132365,98.16,0,0,15.69,535.69,3433.67,26132366,99.88,0,0,0.14,531.96,3436.94,26132367,99.89,0,0,0.16,531.94,3436.96,26132368,99.63,0,0,0.53,532.02,3436.88,26132369,99.88,0,0,0.14,531.58,3437.32,26132370,99.78,0,0,0.3,532.05,3436.86,26132371,99.91,0,0,0.13,532.04,3436.87,26132372,99.87,0,0,0.17,532,3436.9,26132373,99.73,0,0,0.53,532.66,3436.24,26132374,99.78,0,0,0.16,532.43,3436.46,26132375,99.86,0,0,0.29,532.48,3436.43,26132376,99.91,0,0,0.16,532.59,3436.32,26132377,99.87,0,0,0.15,532.56,3436.35,26132378,99.75,0,0,0.53,532.64,3436.26,26132379,99.8,0,0,0.36,532.51,3436.38,26132380,99.81,0,0.01,0.3,531.29,3437.61,26132381,99.9,0,0,0.13,531.24,3437.66,26132382,99.86,0,0,0.16,531.21,3437.69,26132383,99.75,0,0,0.39,532.44,3436.46,26132384,99.88,0,0,0.28,532.81,3436.07,26132385,99.76,0,0,0.32,532.8,3436.1,26132386,99.86,0,0,0.16,532.77,3436.13,26132387,99.88,0,0,0.21,532.74,3436.16,26132388,99.76,0,0,0.41,533.06,3435.83,26132389,99.92,0,0,0.27,531.94,3436.95,26132390,99.79,0,0,0.35,532.73,3436.18,26132391,99.9,0,0,0.14,532.82,3436.09,26132392,99.88,0,0,0.16,532.79,3436.1,26132393,99.86,0,0,0.15,532.77,3436.13,26132394,99.73,0,0,0.55,533.09,3435.8,26132395,99.76,0,0,0.31,532.76,3436.14,26132396,99.9,0,0,0.13,532.69,3436.21,26132397,99.92,0,0,0.17,532.68,3436.22,26132398,99.91,0,0,0.15,532.78,3436.11,26132399,99.72,0,0,0.6,533.15,3435.74,26132400,99.72,0,0,0.29,532.79,3436.11,26132401,99.85,0,0,0.17,532.75,3436.15,26132402,99.86,0,0,0.14,532.73,3436.17,26132403,99.88,0,0,0.16,532.69,3436.2,26132404,99.75,0,0,0.52,532.86,3436.03,26132405,99.81,0,0,0.3,531.98,3436.92,26132406,99.88,0,0,0.14,532.08,3436.82,26132407,99.88,0,0,0.16,532.05,3436.84,26132408,99.88,0,0,0.14,532.03,3436.86,26132409,99.64,0,0.01,0.7,532.91,3435.95,26132410,99.81,0,0,0.29,532.7,3436.17,26132411,99.85,0,0,0.14,532.67,3436.2,26132412,99.9,0,0,0.16,532.66,3436.21,26132413,99.86,0,0,0.16,532.83,3436.03,26132414,99.66,0,0,0.51,533.15,3435.7,26132415,99.71,0,0,0.36,532.8,3436.08,26132416,99.9,0,0,0.13,532.76,3436.11,26132417,99.89,0,0,0.22,532.73,3436.13,26132418,99.85,0,0,0.14,532.71,3436.15,26132419,99.76,0,0,0.54,533.12,3435.74,26132420,99.81,0,0,0.3,532.21,3436.67,26132421,99.23,0,0,0.13,532.34,3436.53,26132422,99.9,0,0,0.14,532.3,3436.56,26132423,99.93,0,0,0.17,532.26,3436.6,26132424,99.73,0,0,0.39,532.95,3435.91,26132425,99.76,0,0,0.48,532.71,3436.16,26132426,99.93,0,0,0.19,532.68,3436.18,26132427,99.87,0,0,0.18,532.71,3436.15,26132428,99.91,0,0,0.18,532.81,3436.05,26132429,99.93,0,0,0.18,532.78,3436.07,26132430,99.66,0,0,0.8,532.2,3436.67,26132431,99.92,0,0,0.18,531.52,3437.34,26132432,99.89,0,0,0.16,531.49,3437.37,26132433,99.9,0,0,0.16,531.46,3437.39,26132434,99.86,0,0,0.18,531.44,3437.41,26132435,99.57,0,0,0.73,532.75,3436.11,26132436,99.88,0,0,0.16,532.57,3436.29,26132437,99.88,0,0,0.14,532.53,3436.32,26132438,99.84,0,0,0.18,532.62,3436.23,26132439,99.7,0,0,0.27,532,3436.83,26132440,99.61,0,0.01,0.71,532.64,3436.21,26132441,99.87,0,0,0.14,532.42,3436.42,26132442,99.89,0,0,0.16,532.4,3436.44,26132443,99.92,0,0,0.15,532.52,3436.31,26132444,99.89,0,0,0.16,532.52,3436.33,26132445,99.68,0,0,0.66,533.19,3435.68,26132446,99.91,0,0,0.14,532.98,3435.88,26132447,99.83,0,0,0.16,532.95,3435.9,26132448,99.87,0,0,0.14,532.92,3435.93,26132449,99.9,0,0,0.14,532.02,3436.83,26132450,99.67,0,0,0.66,531.67,3437.19,26132451,99.93,0,0,0.2,532.06,3436.8,26132452,99.88,0,0,0.14,532.03,3436.83,26132453,99.87,0,0,0.15,532,3436.86,26132454,99.9,0,0,0.16,531.96,3436.89,26132455,99.66,0,0,0.54,531.9,3436.96,26132456,99.89,0,0,0.3,531.42,3437.44,26132457,99.88,0,0,0.15,531.42,3437.44,26132458,99.88,0,0,0.14,531.56,3437.3,26132459,99.88,0,0,0.15,531.53,3437.32,26132460,95.35,0.26,0.01,64.89,541.88,3427.21,26132461,99.15,0,0,194.85,537.33,3431.71,26132462,99.87,0,0,0.2,534.71,3434.33,26132463,99.87,0,0,0.14,534.69,3434.35,26132464,99.89,0,0,0.14,534.66,3434.37,26132465,99.82,0,0,0.29,534.88,3434.16,26132466,99.61,0,0,0.58,531.9,3437.17,26132467,99.9,0,0,0.13,531.55,3437.52,26132468,99.9,0,0,0.16,531.6,3437.46,26132469,99.67,0,0.01,0.34,532.3,3436.73,26132470,99.8,0,0,0.37,531.35,3437.7,26132471,99.74,0,0,0.56,532.02,3437.04,26132472,99.88,0,0,0.18,531.74,3437.32,26132473,99.89,0,0,0.16,531.71,3437.35,26132474,99.91,0,0,0.16,531.74,3437.32,26132475,99.8,0,0,0.32,531.16,3437.92,26132476,99.77,0,0,0.63,532.24,3436.83,26132477,99.88,0,0,0.21,532.05,3437.02,26132478,99.91,0,0,0.17,532.02,3437.04,26132479,99.92,0,0,0.17,532,3437.06,26132480,99.77,0,0,0.32,531.99,3437.08,26132481,99.74,0,0,0.56,532.48,3436.59,26132482,99.92,0,0,0.17,532.24,3436.82,26132483,99.87,0,0,0.15,532.34,3436.72,26132484,99.88,0,0,0.15,532.32,3436.74,26132485,99.82,0,0,0.29,532.31,3436.77,26132486,99.77,0,0,0.41,533.03,3436.04,26132487,99.88,0,0,0.28,532.26,3436.81,26132488,99.85,0,0,0.15,532.23,3436.83,26132489,99.88,0,0,0.14,532.2,3436.86,26132490,99.78,0,0,0.29,532.29,3436.79,26132491,99.77,0,0,0.51,532.87,3436.2,26132492,99.88,0,0,0.2,532.31,3436.76,26132493,99.89,0,0,0.15,532.28,3436.78,26132494,99.88,0,0,0.14,532.26,3436.8,26132495,99.53,0,0,0.3,532.25,3436.83,26132496,99.73,0,0,0.41,532.6,3436.47,26132497,99.9,0,0,0.28,532.44,3436.63,26132498,99.89,0,0,0.17,532.31,3436.75,26132499,99.7,0,0,0.29,531.6,3437.43,26132500,99.81,0,0.01,0.28,531.08,3437.97,26132501,99.71,0,0,0.41,531.45,3437.6,26132502,99.9,0,0,0.3,531.5,3437.55,26132503,99.85,0,0,0.19,531.48,3437.56,26132504,99.9,0,0,0.16,531.45,3437.59,26132505,99.78,0,0,0.34,530.87,3438.18,26132506,99.91,0,0,0.16,530.89,3438.16,26132507,99.73,0,0,0.56,532.15,3436.89,26132508,99.9,0,0,0.13,531.81,3437.23,26132509,99.9,0,0,0.17,531.79,3437.25,26132510,99.77,0,0,0.33,532.49,3436.56,26132511,99.91,0,0,0.14,532.47,3436.57,26132512,99.72,0,0,0.56,532.99,3436.05,26132513,99.88,0,0,0.14,532.49,3436.55,26132514,99.85,0,0,0.15,532.59,3436.45,26132515,99.8,0,0,0.3,531.63,3437.42,26132516,99.86,0,0,0.17,531.56,3437.48,26132517,99.71,0,0,0.52,532.19,3436.87,26132518,99.75,0,0,0.17,532.01,3437.05,26132519,99.88,0,0,0.16,531.96,3437.09,26132520,99.73,0,0,0.3,532.49,3436.58,26132521,99.88,0,0,0.16,532.61,3436.46,26132522,99.67,0,0,0.52,532.49,3436.57,26132523,99.81,0.01,0.06,0.18,531.81,3437.24,26132524,99.85,0,0,0.16,531.82,3437.22,26132525,99.71,0,0,0.29,531.58,3437.48,26132526,99.88,0,0,0.14,531.54,3437.51,26132527,99.73,0,0,0.5,532.29,3436.76,26132528,99.81,0,0,0.22,532.46,3436.58,26132529,99.64,0,0.01,0.3,532.66,3436.36,26132530,99.74,0,0,0.32,531.51,3437.52,26132531,99.88,0,0,0.16,531.58,3437.45,26132532,99.71,0,0,0.51,532.64,3436.39,26132533,99.82,0,0,0.18,533,3436.03,26132534,99.83,0,0,0.16,532.96,3436.06,26132535,99.74,0,0,0.32,531.51,3437.53,26132536,99.83,0,0,0.14,531.44,3437.59,26132537,99.61,0,0,0.36,532.31,3436.72,26132538,99.84,0,0,0.35,532.06,3436.96,26132539,99.83,0,0,0.16,532.04,3436.98,26132540,99.79,0,0,0.28,532.28,3436.75,26132541,99.84,0,0,0.16,532.24,3436.79,26132542,98.29,0,0,0.3,532.59,3436.43,26132543,99.82,0,0,0.39,532.42,3436.6,26132544,99.78,0,0,0.14,532.4,3436.62,26132545,99.69,0,0,0.3,532.06,3436.97,26132546,99.8,0,0,0.17,532.05,3436.98,26132547,99.78,0,0,0.14,532.02,3437.01,26132548,99.57,0,0,0.54,532.97,3436.05,26132549,99.85,0,0,0.14,532.2,3436.82,26132550,99.68,0,0,0.28,532.67,3436.36,26132551,99.8,0,0,0.14,532.66,3436.37,26132552,99.84,0,0,0.16,532.71,3436.32,26132553,99.64,0,0,0.55,533.34,3435.68,26132554,99.85,0,0,0.15,532.79,3436.23,26132555,98.31,0,0,0.36,532.77,3436.26,26132556,99.83,0,0,0.17,532.75,3436.28,26132557,99.8,0,0,0.14,532.72,3436.3,26132558,99.65,0,0,0.59,532.81,3436.2,26132559,99.57,0,0,0.34,532.9,3436.09,26132560,99.63,0,0.01,0.35,533.09,3435.92,26132561,99.8,0,0,0.15,533.05,3435.95,26132562,99.83,0,0,0.14,533.03,3435.97,26132563,99.67,0,0,0.46,533.22,3435.78,26132564,99.82,0,0,0.19,532.73,3436.31,26132565,99.75,0,0,0.3,532.72,3436.36,26132566,99.84,0,0,0.17,532.71,3436.37,26132567,99.84,0,0,0.14,532.73,3436.34,26132568,99.7,0,0,0.45,533.54,3435.52,26132569,99.84,0,0,0.28,532.8,3436.26,26132570,99.72,0,0,0.29,532.32,3436.75,26132571,99.85,0,0,0.16,532.27,3436.79,26132572,99.83,0,0.01,0.15,532.24,3436.82,26132573,99.7,0,0,0.49,532.61,3436.45,26132574,99.8,0,0,0.2,532.41,3436.64,26132575,99.67,0,0,0.36,532.54,3436.53,26132576,99.84,0,0,0.14,532.57,3436.49,26132577,99.79,0,0,0.16,532.54,3436.52,26132578,99.71,0,0,0.32,532.88,3436.18,26132579,99.83,0,0,0.36,532.72,3436.33,26132580,99.65,0,0,0.29,532.72,3436.35,26132581,99.82,0,0,0.16,532.7,3436.37,26132582,99.82,0,0,0.14,532.71,3436.35,26132583,99.83,0,0,0.15,532.82,3436.24,26132584,99.62,0,0.01,0.53,533.34,3435.71,26132585,99.74,0,0,0.3,533,3436.08,26132586,99.84,0,0,0.14,532.97,3436.1,26132587,99.84,0,0,0.17,532.95,3436.12,26132588,99.82,0,0,0.13,532.91,3436.15,26132589,99.56,0,0.01,0.78,533.33,3435.71,26132590,99.74,0,0,0.3,532.34,3436.71,26132591,99.8,0,0,0.16,532.29,3436.76,26132592,99.8,0,0,0.14,532.26,3436.78,26132593,99.85,0,0,0.15,532.23,3436.81,26132594,99.64,0,0,0.46,532.35,3436.7,26132595,99.71,0,0,0.34,531.95,3437.13,26132596,99.8,0,0,0.15,531.92,3437.15,26132597,99.8,0,0,0.21,532.02,3437.04,26132598,99.83,0,0,0.14,532.05,3437.01,26132599,99.69,0,0,0.48,532.65,3436.41,26132600,99.69,0,0,0.39,532.52,3436.55,26132601,99.82,0,0,0.13,531.7,3437.37,26132602,99.8,0,0,0.14,531.47,3437.59,26132603,99.82,0,0,0.16,531.44,3437.62,26132604,99.68,0,0,0.39,532.16,3436.89,26132605,99.66,0,0,0.47,532.15,3436.91,26132606,99.79,0,0,0.17,532.06,3437,26132607,99.84,0,0,0.14,532.03,3437.02,26132608,99.83,0,0,0.14,531.99,3437.05,26132609,99.68,0,0,0.48,532.37,3436.67,26132610,99.7,0,0,0.34,531.97,3437.09,26132611,99.83,0,0,0.16,531.92,3437.13,26132612,99.84,0,0,0.14,532.05,3436.99,26132613,99.8,0,0,0.14,532.05,3436.99,26132614,96.63,0.02,0.01,78.41,537.9,3432.39,26132615,99.02,0,0,0.59,534.61,3434.17,26132616,99.82,0,0,0.13,534.73,3434.04,26132617,99.8,0,0,0.16,534.74,3434.04,26132618,99.76,0,0,0.15,534.7,3434.07,26132619,99.68,0,0,0.44,533.03,3435.73,26132620,99.5,0,0.01,0.66,531.85,3436.95,26132621,99.8,0,0,0.16,531.28,3437.51,26132622,99.75,0,0,0.15,531.26,3437.53,26132623,99.8,0,0,0.14,531.24,3437.54,26132624,99.85,0,0,0.15,531.39,3437.39,26132625,99.58,0,0,0.71,532.72,3436.09,26132626,99.82,0,0,0.17,532.34,3436.48,26132627,99.8,0,0,0.14,532.32,3436.49,26132628,99.8,0,0,0.16,532.29,3436.52,26132629,99.81,0,0,0.15,532.26,3436.54,26132630,99.59,0,0,0.67,532.61,3436.21,26132631,99.84,0,0,0.14,532.28,3436.53,26132632,99.83,0,0,0.17,532.39,3436.43,26132633,99.83,0,0,0.14,532.36,3436.45,26132634,99.82,0,0,0.16,532.32,3436.49,26132635,99.56,0,0,0.71,532.21,3436.61,26132636,99.85,0,0,0.16,532.28,3436.54,26132637,99.82,0,0,0.14,532.27,3436.55,26132638,99.82,0,0,0.15,532.23,3436.58,26132639,99.83,0,0,0.14,532.25,3436.55,26132640,99.52,0,0,0.63,532.32,3436.5,26132641,99.8,0,0,0.21,532.6,3436.22,26132642,99.84,0,0,0.14,532.57,3436.24,26132643,99.8,0,0,0.15,532.54,3436.27,26132644,99.84,0,0,0.14,532.51,3436.29,26132645,99.57,0,0,0.61,532.66,3436.17,26132646,99.83,0,0,0.21,532.48,3436.34,26132647,99.82,0,0,0.17,532.56,3436.25,26132648,99.79,0,0,0.15,532.61,3436.2,26132649,99.75,0,0.01,0.29,532.58,3436.21,26132650,99.56,0,0,0.68,532.72,3436.09,26132651,99.84,0,0,0.12,532.55,3436.26,26132652,99.8,0,0,0.16,532.51,3436.29,26132653,99.81,0,0.01,0.16,532.52,3436.27,26132654,99.83,0,0,0.15,532.62,3436.2,26132655,99.72,0,0,0.31,532.62,3436.22,26132656,99.68,0,0,0.57,532.68,3436.15,26132657,99.81,0,0,0.2,532.31,3436.52,26132658,99.8,0,0,0.14,532.29,3436.54,26132659,99.81,0,0,0.16,532.25,3436.57,26132660,99.77,0,0,0.29,532.49,3436.35,26132661,99.64,0,0,0.54,533.23,3435.61,26132662,99.73,0,0,0.14,532.87,3435.97,26132663,98.55,0,0,0.15,532.85,3435.99,26132664,99.83,0,0,0.14,532.82,3436.01,26132665,99.69,0,0,0.32,532.08,3436.76,26132666,99.71,0,0,0.52,531.84,3437.01,26132667,99.83,0,0,0.16,531.28,3437.55,26132668,99.8,0,0,0.15,531.25,3437.58,26132669,99.81,0,0,0.14,531.33,3437.49,26132670,99.75,0,0,0.32,532.62,3436.23,26132671,99.7,0,0,0.55,532.63,3436.2,26132672,99.83,0,0,0.14,532.08,3436.75,26132673,99.81,0,0,0.15,532.05,3436.78,26132674,99.8,0,0,0.16,532.02,3436.8,26132675,99.66,0,0,0.32,531.83,3437,26132676,98.42,0,0,0.47,532.81,3436.02,26132677,99.76,0,0,0.21,532.56,3436.27,26132678,99.78,0,0,0.17,532.53,3436.29,26132679,99.66,0,0,0.34,532.58,3436.22,26132680,99.69,0,0.01,0.3,531.84,3436.97,26132681,99.61,0,0,0.54,532.54,3436.27,26132682,99.81,0,0,0.14,532.5,3436.3,26132683,99.8,0,0,0.15,532.47,3436.33,26132684,99.8,0,0,0.14,532.45,3436.34,26132685,99.7,0,0,0.35,532.15,3436.66,26132686,99.68,0,0,0.53,532.45,3436.36,26132687,99.8,0,0,0.16,532.07,3436.73,26132688,99.8,0,0,0.15,532.04,3436.76,26132689,99.85,0,0,0.15,531.99,3436.8,26132690,99.74,0,0,0.29,532.23,3436.58,26132691,99.68,0,0,0.41,532.58,3436.23,26132692,99.85,0,0,0.29,532.12,3436.69,26132693,99.82,0,0,0.14,532.09,3436.71,26132694,99.81,0,0,0.17,532.05,3436.74,26132695,99.7,0,0,0.31,531.8,3437.01,26132696,99.83,0,0,0.16,531.74,3437.07,26132697,99.59,0,0,0.54,532.42,3436.38,26132698,99.85,0,0,0.14,531.8,3437,26132699,99.87,0,0,0.16,531.84,3436.96,26132700,99.71,0,0,0.3,530.86,3437.95,26132701,99.91,0,0,0.14,530.81,3438,26132702,99.75,0,0,0.57,532.36,3436.44,26132703,99.92,0,0,0.14,531.99,3436.81,26132704,99.9,0,0,0.14,531.95,3436.84,26132705,99.83,0,0,0.32,531.59,3437.23,26132706,99.91,0,0,0.15,531.65,3437.16,26132707,99.72,0,0,0.54,532.8,3436,26132708,99.91,0,0,0.16,532.82,3435.98,26132709,99.82,0,0.01,0.29,532.81,3435.97,26132710,99.82,0,0,0.32,532.79,3436.01,26132711,99.9,0,0,0.16,532.76,3436.03,26132712,99.75,0,0,0.51,532.98,3435.81,26132713,99.91,0,0,0.15,532.57,3436.21,26132714,99.91,0,0,0.14,532.62,3436.16,26132715,99.81,0,0,0.29,532.85,3435.95,26132716,99.91,0,0,0.16,532.83,3435.98,26132717,99.69,0,0,0.43,533.26,3435.55,26132718,99.89,0,0,0.27,533.03,3435.78,26132719,99.9,0,0,0.16,532.99,3435.81,26132720,99.86,0,0,0.3,532.49,3436.32,26132721,99.91,0,0,0.16,532.57,3436.24,26132722,99.76,0,0,0.5,533.39,3435.41,26132723,99.89,0,0,0.19,532.84,3435.96,26132724,99.88,0,0,0.16,532.8,3435.99,26132725,99.8,0,0,0.29,533.04,3435.77,26132726,99.91,0,0,0.16,533.02,3435.79,26132727,99.79,0,0,0.36,533.43,3435.38,26132728,99.87,0,0,0.34,532.46,3436.35,26132729,99.88,0,0,0.14,532.55,3436.26,26132730,99.8,0,0,0.27,531.89,3436.93,26132731,99.84,0,0,0.14,531.85,3436.97,26132732,99.9,0,0,0.16,531.82,3437,26132733,99.69,0,0,0.55,532.15,3436.66,26132734,99.84,0,0,0.18,531.76,3437.05,26132735,99.8,0,0,0.35,532.48,3436.34,26132736,99.9,0,0,0.18,532.47,3436.35,26132737,99.9,0,0,0.18,532.57,3436.24,26132738,99.7,0,0,0.54,533.28,3435.53,26132739,99.83,0,0,0.36,532.82,3435.98,26132740,99.83,0,0.01,0.29,532.62,3436.2,26132741,99.88,0,0,0.16,532.51,3436.3,26132742,99.92,0,0,0.17,532.49,3436.33,26132743,99.75,0,0,0.53,533.18,3435.62,26132744,99.91,0,0,0.16,532.97,3435.83,26132745,99.79,0,0,0.3,532.15,3436.67,26132746,99.89,0,0,0.15,532.09,3436.72,26132747,99.88,0,0,0.16,532.05,3436.76,26132748,99.67,0,0,0.53,533.32,3435.48,26132749,99.89,0,0,0.15,532.97,3435.82,26132750,99.84,0,0,0.29,532.96,3435.86,26132751,99.91,0,0,0.16,532.95,3435.86,26132752,99.92,0,0,0.14,533.09,3435.72,26132753,99.75,0,0,0.51,533.5,3435.3,26132754,99.9,0,0,0.2,533.03,3435.78,26132755,99.8,0,0,0.29,532.79,3436.05,26132756,99.93,0,0,0.15,532.11,3436.72,26132757,99.9,0,0,0.16,531.75,3437.08,26132758,99.75,0,0,0.39,532.19,3436.63,26132759,99.92,0,0,0.29,532.19,3436.63,26132760,99.76,0,0,0.3,532.64,3436.2,26132761,99.91,0,0,0.15,532.6,3436.23,26132762,99.9,0,0,0.14,532.57,3436.26,26132763,99.75,0,0,0.41,532.82,3436,26132764,99.9,0,0,0.28,532.26,3436.56,26132765,99.81,0,0,0.3,531.04,3437.79,26132766,99.92,0,0,0.14,531,3437.83,26132767,99.88,0,0,0.16,531.14,3437.68,26132768,99.76,0,0,0.32,531.9,3436.92,26132769,99.77,0,0.01,0.55,532.08,3436.71,26132770,99.8,0,0,0.34,532.3,3436.51,26132771,99.87,0,0,0.14,532.27,3436.53,26132772,99.9,0,0,0.14,532.24,3436.55,26132773,99.9,0,0,0.18,532.22,3436.57,26132774,99.69,0,0,0.54,532.82,3435.99,26132775,99.75,0,0,0.31,532.22,3436.61,26132776,99.85,0,0,0.14,532.09,3436.73,26132777,99.9,0,0,0.21,532.06,3436.75,26132778,99.91,0,0,0.14,532.03,3436.79,26132779,99.71,0,0,0.55,532.36,3436.45,26132780,99.84,0,0,0.33,532,3436.83,26132781,99.89,0,0,0.18,531.96,3436.85,26132782,99.91,0,0,0.18,532.05,3436.76,26132783,99.94,0,0,0.18,532.1,3436.71,26132784,98.58,0,0,0.54,532.41,3436.39,26132785,99.8,0,0,0.3,532.3,3436.52,26132786,99.9,0,0,0.16,532.28,3436.54,26132787,99.9,0,0,0.14,532.25,3436.56,26132788,99.92,0,0,0.14,532.23,3436.58,26132789,99.78,0,0,0.5,532.72,3436.08,26132790,99.85,0,0,0.36,532.48,3436.33,26132791,99.92,0,0,0.13,532.6,3436.21,26132792,99.9,0,0,0.16,532.57,3436.24,26132793,99.91,0,0,0.14,532.54,3436.26,26132794,99.7,0,0,0.48,532.77,3436.03,26132795,99.85,0,0,0.35,532.5,3436.32,26132796,99.9,0,0,0.16,532.48,3436.34,26132797,99.92,0,0,0.14,532.44,3436.36,26132798,99.85,0,0,0.16,532.42,3436.38,26132799,99.53,0,0,0.66,532.92,3435.85,26132800,99.81,0,0.01,0.29,532.56,3436.24,26132801,99.9,0,0,0.18,532.52,3436.28,26132802,99.9,0,0,0.14,532.48,3436.31,26132803,99.91,0,0,0.15,532.44,3436.34,26132804,99.74,0,0,0.46,532.83,3435.98,26132805,99.74,0.03,2.69,0.45,532.32,3436.51,26132806,99.89,0,0.29,0.31,532.32,3436.49,26132807,99.8,0.03,4.21,0.51,532.27,3436.52,26132808,99.92,0,0,0.24,532.2,3436.57,26132809,99.75,0,0,0.36,532.67,3436.09,26132810,99.81,0,0,0.64,531.86,3436.91,26132811,99.9,0,0,0.14,531.78,3437.01,26132812,99.88,0.01,0.75,0.14,531.74,3437.04,26132813,99.9,0,0,0.25,531.79,3436.98,26132814,99.9,0,0,0.14,531.75,3437.01,26132815,99.55,0,0,0.68,532.72,3436.07,26132816,99.88,0,0,0.16,532.44,3436.34,26132817,99.9,0,0,0.14,532.41,3436.37,26132818,99.93,0,0,0.14,532.37,3436.4,26132819,99.92,0,0,0.17,532.46,3436.31,26132820,99.4,0,0,0.67,531.9,3436.89,26132821,99.88,0.01,1,0.29,531.47,3437.3,26132822,99.91,0,0,0.14,531.53,3437.23,26132823,99.92,0,0,0.15,531.49,3437.27,26132824,99.88,0,0,0.17,531.45,3437.3,26132825,93.6,17,0.03,212.92,547.15,3418.39,26132826,99.81,0,0,64.02,534.91,3433.87,26132827,99.89,0,0,0.14,534.88,3433.9,26132828,99.89,0,0,0.14,534.86,3433.92,26132829,99.76,0.01,0.04,0.31,534.89,3433.86,26132830,99.68,0,0,0.55,534.64,3434.14,26132831,99.9,0,0,0.28,532.77,3436.02,26132832,99.92,0.01,0.03,0.16,532.72,3436.06,26132833,99.88,0.01,0.62,0.16,532.72,3436.06,26132834,99.91,0,0,0.2,532.75,3436.05,26132835,99.64,0,0,0.69,532.23,3436.6,26132836,99.89,0.01,0.37,0.23,532.47,3436.35,26132837,99.88,0.01,0.26,0.23,532.07,3436.75,26132838,99.88,0,0.06,0.17,531.98,3436.83,26132839,99.91,0,0,0.14,532.08,3436.73,26132840,99.69,0,0,0.55,532.82,3436,26132841,99.88,0,0,0.29,532.28,3436.54,26132842,99.92,0,0,0.15,532.26,3436.56,26132843,99.87,0,0,0.14,532.22,3436.59,26132844,99.91,0,0,0.16,532.19,3436.61,26132845,99.61,0,0,0.59,533.1,3435.72,26132846,99.88,0,0,0.29,532.74,3436.07,26132847,99.91,0,0,0.14,532.81,3436,26132848,99.9,0,0,0.14,532.78,3436.03,26132849,99.9,0,0.01,0.15,532.73,3436.07,26132850,99.7,0,0,0.33,532.04,3436.78,26132851,99.83,0,0,0.54,533.04,3435.78,26132852,99.93,0,0,0.16,532.67,3436.15,26132853,99.9,0,0,0.14,532.82,3435.99,26132854,99.9,0,0,0.15,532.78,3436.02,26132855,99.85,0,0,0.31,532.04,3436.78,26132856,99.76,0,0,0.54,532.96,3435.86,26132857,99.9,0,0,0.14,532.71,3436.11,26132858,99.89,0,0,0.17,532.64,3436.17,26132859,99.77,0,0,0.3,532.65,3436.13,26132860,99.89,0,0.01,0.3,532.27,3436.54,26132861,99.73,0,0,0.54,533.08,3435.72,26132862,99.87,0,0,0.15,532.77,3436.03,26132863,99.91,0,0,0.14,532.75,3436.05,26132864,99.91,0.01,0.01,0.16,532.74,3436.05,26132865,99.82,0,0,0.37,532.8,3436,26132866,99.78,0,0,0.57,533.3,3435.5,26132867,99.9,0,0,0.15,533,3435.79,26132868,99.93,0,0,0.16,532.96,3435.83,26132869,99.93,0,0,0.14,532.93,3435.85,26132870,99.79,0,0,0.3,532.68,3436.12,26132871,99.76,0,0,0.52,533.51,3435.28,26132872,99.89,0,0,0.23,533,3435.79,26132873,99.93,0,0,0.14,533.05,3435.73,26132874,99.9,0,0,0.16,533.02,3435.76,26132875,99.8,0,0,0.3,532.05,3436.75,26132876,99.75,0,0,0.4,532.8,3435.99,26132877,99.92,0,0,0.3,532.96,3435.83,26132878,99.91,0,0,0.17,532.93,3435.86,26132879,99.9,0,0,0.18,532.91,3435.87,26132880,99.76,0,0,0.31,532.21,3436.59,26132881,99.76,0,0,0.41,532.54,3436.25,26132882,99.92,0,0,0.27,532.78,3436.01,26132883,99.92,0,0,0.16,532.74,3436.04,26132884,99.92,0,0,0.15,532.71,3436.06,26132885,99.79,0,0,0.3,531.75,3437.04,26132886,99.76,0,0,0.39,532.23,3436.55,26132887,99.92,0,0,0.29,532.89,3435.89,26132888,99.94,0,0,0.16,532.98,3435.79,26132889,99.72,0,0.01,0.29,532.55,3436.21,26132890,99.76,0,0,0.34,531.81,3436.96,26132891,99.9,0,0,0.14,531.75,3437.02,26132892,99.77,0,0,0.57,533.81,3434.95,26132893,99.92,0,0,0.14,533.16,3435.59,26132894,99.92,0,0,0.14,533.14,3435.65,26132895,99.83,0,0,0.31,532.91,3435.92,26132896,99.89,0,0,0.15,533.05,3435.77,26132897,99.74,0,0,0.58,533.42,3435.39,26132898,99.89,0,0,0.16,532.98,3435.82,26132899,99.93,0,0,0.14,532.96,3435.84,26132900,99.81,0,0,0.34,532.96,3435.86,26132901,99.91,0,0,0.15,532.93,3435.89,26132902,99.77,0,0,0.55,533.06,3435.75,26132903,99.92,0,0,0.16,532.63,3436.17,26132904,99.94,0,0,0.18,532.72,3436.08,26132905,97.81,0,0,0.37,533.02,3435.8,26132906,99.91,0,0,0.18,533,3435.81,26132907,99.75,0,0,0.59,532.7,3436.11,26132908,99.92,0,0,0.16,531.97,3436.84,26132909,99.91,0,0,0.17,531.93,3436.87,26132910,99.8,0,0,0.32,532.38,3436.44,26132911,99.91,0,0,0.14,531.9,3436.91,26132912,99.73,0,0,0.51,532.42,3436.39,26132913,99.88,0,0,0.23,531.54,3437.27,26132914,99.9,0,0,0.15,531.5,3437.3,26132915,99.78,0,0,0.36,532.27,3436.55,26132916,99.9,0,0,0.14,532.21,3436.6,26132917,99.73,0,0,0.81,532.53,3436.28,26132918,99.86,0,0,0.18,532.1,3436.71,26132919,99.68,0,0,0.33,532.16,3436.64,26132920,99.77,0,0.01,0.3,531.11,3437.7,26132921,99.86,0,0,0.16,531.04,3437.77,26132922,99.76,0,0,0.39,531.5,3437.3,26132923,99.91,0,0,0.44,532.22,3436.59,26132924,99.88,0,0,0.17,532.18,3436.62,26132925,99.74,0,0,0.33,532.17,3436.65,26132926,99.9,0,0,0.14,532.15,3436.67,26132927,99.68,0,0,0.39,532.56,3436.25,26132928,99.87,0,0,0.34,532.06,3436.75,26132929,99.86,0,0,0.15,532.03,3436.77,26132930,99.81,0,0,0.3,532.28,3436.54,26132931,99.88,0.01,0.12,0.17,532.22,3436.59,26132932,99.9,0.01,0.4,0.2,532.27,3436.53,26132933,99.75,0,0,0.52,532.64,3436.16,26132934,99.85,0,0,0.15,531.96,3436.84,26132935,99.79,0,0,0.32,531.22,3437.59,26132936,99.89,0,0,0.17,531.18,3437.62,26132937,99.87,0,0.02,0.15,531.21,3437.59,26132938,99.7,0.01,0.07,0.61,532.23,3436.56,26132939,99.87,0,0,0.19,531.92,3436.86,26132940,99.74,0,0,0.31,532.53,3436.27,26132941,99.88,0,0,0.15,532.51,3436.29,26132942,99.87,0,0,0.14,532.48,3436.31,26132943,99.75,0,0.01,0.55,532.78,3436,26132944,99.89,0,0,0.15,532.4,3436.38,26132945,99.77,0,0,0.3,531.67,3437.12,26132946,99.89,0,0,0.16,531.68,3437.11,26132947,99.85,0,0,0.14,531.78,3437,26132948,99.76,0.01,0.44,0.45,532.56,3436.23,26132949,99.71,0.01,0.02,0.39,532.51,3436.24,26132950,99.73,0,0,0.3,532.53,3436.24,26132951,99.84,0,0,0.16,532.44,3436.32,26132952,99.92,0,0,0.15,532.41,3436.35,26132953,99.67,0,0,0.52,532.74,3436.02,26132954,99.89,0,0,0.15,532.36,3436.41,26132955,99.77,0,0,0.31,531.69,3437.1,26132956,99.88,0,0,0.16,531.76,3437.02,26132957,99.87,0,0,0.18,531.98,3436.8,26132958,99.75,0,0,0.4,532.59,3436.19,26132959,99.88,0,0,0.28,532.42,3436.35,26132960,99.74,0,0,0.29,531.69,3437.1,26132961,99.83,0,0,0.14,531.66,3437.14,26132962,99.86,0,0,0.17,531.63,3437.16,26132963,99.7,0,0,0.4,532.05,3436.73,26132964,99.89,0,0.01,0.28,532.26,3436.51,26132965,99.76,0,0,0.3,532.23,3436.57,26132966,98.02,0,0,0.15,532.2,3436.59,26132967,99.9,0,0,0.13,532.17,3436.62,26132968,99.7,0,0,0.41,532.52,3436.26,26132969,99.88,0,0,0.28,532.42,3436.36,26132970,99.79,0,0,0.28,532.53,3436.26,26132971,99.9,0,0,0.16,532.51,3436.29,26132972,99.91,0,0.01,0.17,532.46,3436.32,26132973,99.88,0,0,0.15,532.44,3436.35,26132974,99.64,0,0,0.52,531.84,3436.94,26132975,99.74,0,0.02,0.29,531.5,3437.29,26132976,99.9,0,0,0.18,531.54,3437.25,26132977,99.9,0.01,0.12,0.17,531.47,3437.31,26132978,99.87,0,0,0.18,531.51,3437.27,26132979,99.46,0,0,0.72,532.99,3435.76,26132980,98.04,0,0.01,0.38,531.22,3437.54,26132981,99.87,0,0,0.18,531.28,3437.48,26132982,99.92,0,0,0.18,531.26,3437.5,26132983,99.89,0,0,0.18,531.22,3437.53,26132984,99.7,0,0,0.57,531.7,3437.05,26132985,99.82,0,0,0.37,532.17,3436.6,26132986,99.9,0,0,0.18,532.15,3436.62,26132987,99.87,0,0,0.17,532.12,3436.64,26132988,99.9,0,0,0.16,532.15,3436.61,26132989,99.73,0,0,0.54,532.88,3435.87,26132990,99.77,0,0,0.3,532.49,3436.27,26132991,99.86,0,0,0.13,532.45,3436.31,26132992,99.9,0.01,0.17,0.18,532.42,3436.34,26132993,99.87,0,0,0.19,532.34,3436.4,26132994,99.75,0,0,0.58,532.95,3435.81,26132995,99.76,0,0,0.29,531.76,3437.02,26132996,99.88,0,0,0.16,531.7,3437.06,26132997,99.89,0,0,0.14,531.67,3437.09,26132998,99.88,0,0,0.14,531.64,3437.12,26132999,99.67,0.02,0.84,0.52,532.66,3436.09,26133000,99.69,0,0,0.35,532.9,3435.86,26133001,99.85,0,0,0.17,532.87,3435.9,26133002,99.83,0,0,0.14,532.86,3435.89,26133003,99.79,0,0,0.14,532.98,3435.77,26133004,99.67,0,0,0.36,533.3,3435.45,26133005,99.78,0,0,0.52,532.72,3436.04,26133006,99.91,0,0,0.13,532.65,3436.1,26133007,99.89,0,0,0.16,532.62,3436.13,26133008,99.91,0,0,0.14,532.59,3436.15,26133009,99.61,0,0.01,0.5,533.2,3435.52,26133010,99.8,0,0,0.48,532.29,3436.45,26133011,99.86,0,0,0.15,532.22,3436.52,26133012,99.89,0,0,0.17,532.19,3436.55,26133013,99.89,0,0,0.14,532.15,3436.57,26133014,99.88,0,0,0.16,532.13,3436.6,26133015,99.59,0,0,0.7,532.24,3436.51,26133016,99.86,0,0,0.16,531.85,3436.89,26133017,99.87,0,0,0.2,531.88,3436.85,26133018,99.93,0,0,0.15,531.98,3436.75,26133019,99.89,0,0,0.14,531.95,3436.77,26133020,99.65,0,0,0.77,533.19,3435.55,26133021,99.92,0,0.01,0.18,532.88,3435.84,26133022,99.93,0,0,0.15,532.85,3435.88,26133023,99.93,0,0,0.14,532.81,3435.9,26133024,99.93,0,0,0.15,532.96,3435.76,26133025,99.63,0,0,0.72,532.87,3435.86,26133026,99.93,0,0,0.14,532.67,3436.05,26133027,99.92,0,0,0.16,532.63,3436.09,26133028,99.89,0,0,0.16,532.61,3436.11,26133029,99.92,0,0.01,0.16,532.57,3436.14,26133030,99.66,0,0,0.56,533.02,3435.71,26133031,99.88,0,0,0.25,532.46,3436.27,26133032,99.93,0,0,0.16,532.43,3436.29,26133033,99.9,0,0,0.14,532.41,3436.31,26133034,99.91,0,0,0.14,532.38,3436.33,26133035,99.72,0,0,0.73,532.6,3436.13,26133036,99.91,0,0,0.13,532.83,3435.89,26133037,99.88,0,0,0.14,532.81,3435.91,26133038,99.88,0,0,0.18,532.8,3435.91,26133039,99.76,0,0,0.41,532.74,3435.95,26133040,99.63,0,0.01,0.77,532.72,3435.99,26133041,96.82,0,0,0.14,532.92,3435.78,26133042,99.9,0,0,0.16,532.89,3435.8,26133043,99.89,0,0,0.14,532.86,3435.83,26133044,99.88,0,0,0.14,532.83,3435.9,26133045,99.6,0,0,0.48,532.6,3436.16,26133046,99.88,0,0,0.44,532.95,3435.8,26133047,99.88,0,0,0.16,532.95,3435.8,26133048,99.88,0,0,0.16,532.93,3435.82,26133049,99.9,0,0,0.15,532.89,3435.85,26133050,99.83,0,0,0.3,532.64,3436.11,26133051,99.75,0,0,0.52,533.17,3435.58,26133052,99.9,0,0,0.16,532.81,3435.93,26133053,99.93,0,0,0.15,532.85,3435.89,26133054,99.9,0,0,0.14,532.95,3435.79,26133055,99.85,0,0,0.31,532.7,3436.05,26133056,99.69,0,0,0.53,532.8,3435.95,26133057,99.93,0,0,0.14,532.39,3436.35,26133058,99.9,0,0,0.15,532.36,3436.37,26133059,99.9,0,0,0.14,532.33,3436.4,26133060,99.81,0,0,0.31,533.05,3435.7,26133061,99.76,0,0,0.55,533.72,3435.03,26133062,99.88,0,0,0.14,533.2,3435.54,26133063,99.9,0,0,0.15,533.17,3435.57,26133064,99.91,0,0,0.14,533.14,3435.6,26133065,99.79,0,0,0.31,532.19,3436.57,26133066,99.73,0,0,0.55,532.58,3436.17,26133067,99.9,0,0,0.18,532.33,3436.41,26133068,99.85,0,0,0.16,532.33,3436.41,26133069,99.71,0,0.01,0.32,531.51,3437.21,26133070,99.76,0,0,0.31,530.96,3437.77,26133071,99.76,0,0,0.4,531.57,3437.15,26133072,99.85,0,0,0.29,531.83,3436.89,26133073,99.92,0,0,0.14,531.81,3436.91,26133074,99.89,0,0,0.15,531.82,3436.9,26133075,99.69,0,0,0.31,532.53,3436.22,26133076,99.72,0,0,0.39,532.7,3436.04,26133077,99.86,0,0,0.32,532.15,3436.59,26133078,99.84,0,0,0.14,532.11,3436.62,26133079,99.87,0,0,0.17,532.08,3436.65,26133080,99.67,0,0,0.32,532.06,3436.69,26133081,99.68,0,0,0.4,532.5,3436.24,26133082,99.83,0,0,0.27,532.69,3436.05,26133083,99.85,0,0,0.15,532.66,3436.07,26133084,99.87,0,0,0.14,532.63,3436.1,26133085,99.81,0,0,0.3,531.91,3436.84,26133086,99.91,0,0,0.17,531.85,3436.9,26133087,98.3,0,0,0.53,532.81,3435.92,26133088,99.84,0,0,0.14,532.03,3436.7,26133089,99.88,0,0,0.16,532.17,3436.55,26133090,99.8,0,0,0.3,532.7,3436.04,26133091,99.83,0,0,0.16,532.68,3436.06,26133092,99.64,0,0,0.54,532.92,3435.82,26133093,99.85,0,0,0.15,532.37,3436.36,26133094,99.85,0,0,0.15,532.35,3436.38,26133095,99.76,0,0,0.33,532.33,3436.41,26133096,99.85,0,0,0.13,532.3,3436.43,26133097,99.72,0,0,0.57,532.8,3435.93,26133098,99.78,0,0,0.16,532.43,3436.3,26133099,99.59,0,0,0.3,532.64,3436.08,26133100,99.78,0,0.01,0.37,532.4,3436.34,26133101,99.83,0,0,0.14,532.36,3436.37,26133102,99.66,0,0,0.54,532.83,3435.89,26133103,99.84,0,0,0.15,532.54,3436.18,26133104,99.82,0,0,0.15,532.62,3436.1,26133105,99.76,0,0,0.31,532.7,3436.04,26133106,99.79,0,0,0.14,532.67,3436.07,26133107,99.63,0,0,0.5,532.95,3435.77,26133108,99.82,0,0,0.19,531.86,3436.86,26133109,99.8,0,0,0.15,531.83,3436.89,26133110,99.72,0,0,0.36,530.61,3438.13,26133111,99.81,0,0,0.14,530.62,3438.11,26133112,99.7,0,0,0.39,531.37,3437.35,26133113,99.81,0,0,0.29,531.68,3437.04,26133114,99.8,0,0,0.14,531.65,3437.06,26133115,99.71,0,0,0.32,530.73,3438,26133116,99.83,0,0,0.16,530.64,3438.09,26133117,99.68,0,0,0.38,531.39,3437.34,26133118,99.8,0,0,0.3,532.08,3436.64,26133119,99.81,0,0,0.16,532.18,3436.54,26133120,99.67,0,0,0.3,532.41,3436.33,26133121,99.85,0,0,0.14,532.39,3436.34,26133122,99.68,0,0,0.54,532.74,3435.98,26133123,99.83,0,0,0.14,532.57,3436.15,26133124,99.82,0,0,0.14,532.54,3436.17,26133125,99.8,0,0,0.32,532.06,3436.67,26133126,99.83,0,0,0.16,532.13,3436.59,26133127,99.85,0,0,0.14,532.17,3436.55,26133128,99.68,0,0,0.54,533.4,3435.31,26133129,99.6,0,0.01,0.28,532.87,3435.83,26133130,99.77,0,0,0.34,532.36,3436.35,26133131,99.8,0,0,0.15,532.32,3436.39,26133132,99.81,0,0,0.14,532.28,3436.42,26133133,99.68,0,0,0.56,532.85,3435.85,26133134,99.83,0,0,0.14,532.65,3436.07,26133135,99.66,0,0,0.32,532.66,3436.09,26133136,99.82,0,0,0.17,532.63,3436.12,26133137,99.82,0,0,0.18,532.35,3436.39,26133138,99.66,0,0,0.54,532.86,3435.88,26133139,99.82,0,0,0.16,532.54,3436.2,26133140,99.71,0,0,0.31,532.29,3436.47,26133141,99.81,0,0,0.14,532.32,3436.44,26133142,99.81,0,0,0.17,532.45,3436.31,26133143,99.7,0,0,0.58,533.28,3435.47,26133144,99.82,0,0,0.15,532.63,3436.11,26133145,99.73,0,0,0.32,531.89,3436.87,26133146,99.83,0,0,0.14,531.86,3436.9,26133147,99.82,0,0,0.17,531.82,3436.93,26133148,99.69,0,0,0.57,532.47,3436.27,26133149,99.81,0,0,0.16,532.37,3436.37,26133150,99.67,0,0,0.31,532.93,3435.82,26133151,99.83,0,0,0.15,532.89,3435.87,26133152,99.82,0,0,0.15,532.86,3435.89,26133153,99.68,0,0,0.54,533.18,3435.57,26133154,99.83,0,0,0.18,532.79,3435.95,26133155,99.66,0,0,0.34,531.59,3437.16,26133156,99.82,0,0,0.16,531.63,3437.12,26133157,99.85,0,0,0.15,531.68,3437.07,26133158,99.69,0,0,0.48,532.34,3436.4,26133159,99.58,0,0,0.36,532.37,3436.34,26133160,99.71,0,0.01,0.33,532.34,3436.39,26133161,99.82,0,0,0.14,532.3,3436.43,26133162,99.84,0,0,0.16,532.28,3436.45,26133163,99.68,0,0,0.41,532.99,3435.73,26133164,99.8,0,0,0.29,532.4,3436.32,26133165,99.76,0,0,0.33,533.13,3435.61,26133166,99.85,0,0,0.16,533.1,3435.63,26133167,99.85,0,0,0.14,533.07,3435.66,26133168,99.83,0,0,0.15,533.04,3435.69,26133169,99.66,0,0,0.55,533.14,3435.58,26133170,99.77,0,0,0.32,533.01,3435.73,26133171,99.79,0,0,0.14,533.16,3435.57,26133172,99.84,0,0,0.17,533.13,3435.6,26133173,99.83,0,0,0.14,533.09,3435.63,26133174,99.67,0,0,0.55,533.18,3435.54,26133175,99.76,0,0,0.33,533.05,3435.69,26133176,99.82,0,0,0.16,533.03,3435.71,26133177,99.85,0,0,0.14,532.99,3435.74,26133178,99.82,0,0,0.16,533.09,3435.63,26133179,99.69,0,0,0.54,533.67,3435.05,26133180,99.69,0,0,0.36,532.86,3435.88,26133181,99.83,0,0,0.18,532.83,3435.9,26133182,99.82,0,0,0.16,532.81,3435.92,26133183,99.83,0,0,0.18,532.77,3435.95,26133184,99.68,0,0,0.56,533.23,3435.49,26133185,99.76,0,0,0.38,532.85,3435.89,26133186,99.81,0,0,0.14,532.88,3435.85,26133187,99.81,0,0,0.16,532.85,3435.88,26133188,99.85,0,0,0.14,532.82,3435.9,26133189,93.96,16.95,0.04,94.78,545.65,3419.41,26133190,99.35,0,0,181.52,534.07,3434.5,26133191,99.8,0,0,0.14,533.95,3434.61,26133192,99.84,0,0,0.15,533.91,3434.64,26133193,99.78,0,0,0.17,533.88,3434.68,26133194,99.64,0,0,0.59,533.82,3434.73,26133195,99.74,0,0,0.36,532.98,3435.62,26133196,99.82,0,0,0.16,533.11,3435.49,26133197,99.82,0,0,0.2,533.31,3435.28,26133198,99.84,0,0,0.14,533.29,3435.3,26133199,99.7,0,0,0.43,533.77,3434.82,26133200,99.79,0,0,0.44,533.25,3435.36,26133201,99.83,0,0,0.16,533.23,3435.38,26133202,99.81,0,0,0.15,533.2,3435.41,26133203,99.8,0,0,0.15,533.25,3435.35,26133204,99.68,0,0,0.42,533.69,3434.91,26133205,99.75,0,0,0.43,532.82,3435.79,26133206,99.8,0,0,0.16,532.8,3435.81,26133207,99.85,0,0,0.14,532.76,3435.84,26133208,99.23,0,0,0.15,532.74,3435.86,26133209,99.8,0,0,0.15,532.7,3435.89,26133210,99.5,0,0,0.68,532,3436.61,26133211,99.83,0,0,0.17,531.56,3437.05,26133212,99.83,0,0,0.14,531.6,3437.01,26133213,99.83,0,0,0.16,531.57,3437.03,26133214,99.83,0,0,0.15,531.53,3437.06,26133215,99.52,0,0,0.7,533.04,3435.57,26133216,99.82,0,0,0.16,532.74,3435.87,26133217,99.85,0,0,0.14,532.71,3435.9,26133218,99.82,0,0,0.16,532.71,3435.89,26133219,99.63,0,0,0.3,532.44,3436.13,26133220,99.54,0,0.01,0.68,531.96,3436.63,26133221,99.84,0,0,0.16,531.31,3437.28,26133222,99.81,0,0,0.14,531.28,3437.3,26133223,99.8,0,0,0.14,531.25,3437.33,26133224,99.82,0,0,0.15,531.22,3437.35,26133225,99.63,0,0,0.61,532.52,3436.07,26133226,99.81,0,0,0.26,531.98,3436.61,26133227,99.8,0,0,0.16,532.12,3436.47,26133228,99.82,0,0,0.14,532.09,3436.49,26133229,99.82,0,0,0.15,532.06,3436.51,26133230,99.58,0.01,0.01,0.75,531.89,3436.7,26133231,99.8,0,0,0.14,531.75,3436.84,26133232,99.76,0,0,0.16,531.73,3436.86,26133233,99.83,0,0,0.14,531.8,3436.78,26133234,99.83,0,0,0.14,531.85,3436.72,26133235,99.55,0,0,0.61,531.89,3436.7,26133236,99.84,0,0,0.27,531.81,3436.78,26133237,99.85,0,0,0.16,531.77,3436.81,26133238,99.83,0,0,0.14,531.75,3436.83,26133239,99.8,0,0,0.16,531.71,3436.86,26133240,99.6,0,0,0.64,532.72,3435.86,26133241,99.82,0,0,0.2,532.35,3436.23,26133242,99.82,0,0,0.18,532.31,3436.26,26133243,99.81,0,0,0.15,532.29,3436.29,26133244,99.8,0,0,0.15,532.26,3436.3,26133245,99.61,0,0,0.47,531.89,3436.7,26133246,99.8,0,0,0.42,531,3437.58,26133247,99.79,0,0,0.18,530.96,3437.62,26133248,99.81,0,0,0.18,531.04,3437.54,26133249,99.66,0,0.01,0.32,532.53,3436.02,26133250,99.63,0,0,0.45,532.9,3435.67,26133251,99.82,0,0,0.39,532.28,3436.29,26133252,99.81,0,0,0.14,532.26,3436.31,26133253,99.78,0,0,0.14,532.22,3436.34,26133254,99.85,0,0,0.18,532.19,3436.38,26133255,99.83,0,0,0.33,532.54,3436.05,26133256,99.71,0,0.01,0.58,532.71,3435.87,26133257,99.9,0,0,0.18,532.3,3436.28,26133258,99.88,0,0,0.15,532.27,3436.31,26133259,99.9,0,0,0.14,532.24,3436.33,26133260,99.78,0,0,0.3,531.51,3437.08,26133261,99.69,0,0,0.52,531.89,3436.72,26133262,99.92,0,0,0.16,531.48,3437.12,26133263,99.92,0,0,0.14,531.61,3437,26133264,99.88,0,0,0.14,531.58,3437.02,26133265,99.74,0,0,0.31,532.11,3436.5,26133266,99.75,0,0,0.55,531.89,3436.72,26133267,99.91,0,0,0.14,531.26,3437.35,26133268,99.91,0,0,0.18,531.23,3437.38,26133269,99.91,0,0,0.14,531.21,3437.39,26133270,99.8,0,0,0.32,532.68,3435.94,26133271,99.8,0,0,0.54,532.82,3435.79,26133272,99.9,0,0,0.16,532.06,3436.55,26133273,99.9,0,0,0.14,532.05,3436.56,26133274,99.92,0,0,0.15,532.01,3436.58,26133275,99.86,0,0,0.31,532.49,3436.13,26133276,99.75,0,0,0.55,532.96,3435.65,26133277,99.9,0,0,0.15,532.44,3436.17,26133278,99.86,0,0,0.15,532.48,3436.13,26133279,99.77,0,0,0.35,532.57,3436.01,26133280,99.8,0,0.01,0.3,532.58,3436.01,26133281,99.76,0,0,0.41,532.8,3435.79,26133282,99.71,0,0,0.27,531.8,3436.79,26133283,99.9,0,0,0.14,531.77,3436.81,26133284,99.91,0,0,0.15,531.75,3436.84,26133285,99.85,0,0,0.3,532.23,3436.38,26133286,99.75,0,0,0.45,532.68,3435.93,26133287,99.91,0,0,0.21,532.85,3435.75,26133288,99.92,0,0,0.16,532.82,3435.78,26133289,99.89,0,0,0.15,532.79,3435.81,26133290,99.81,0,0,0.29,532.55,3436.06,26133291,99.92,0,0,0.16,532.5,3436.11,26133292,99.61,0,0,0.57,531.94,3436.66,26133293,99.91,0,0,0.14,531.26,3437.34,26133294,99.89,0,0,0.15,531.33,3437.27,26133295,99.78,0,0,0.3,532.26,3436.35,26133296,99.85,0.01,0.31,0.18,532.3,3436.31,26133297,99.7,0.01,1.36,0.85,533.17,3435.42,26133298,99.87,0.01,0.68,0.23,532.71,3435.86,26133299,99.88,0,0.02,0.16,532.73,3435.84,26133300,99.74,0,0,0.3,533.03,3435.55,26133301,99.88,0,0,0.16,533.01,3435.57,26133302,99.78,0,0,0.53,533.16,3435.42,26133303,99.9,0,0,0.15,532.68,3435.89,26133304,99.92,0,0,0.14,532.71,3435.86,26133305,99.85,0,0,0.3,531.88,3436.7,26133306,99.9,0,0,0.16,531.82,3436.77,26133307,99.76,0,0,0.55,532.46,3436.12,26133308,99.92,0,0,0.16,532.26,3436.32,26133309,99.82,0,0.01,0.3,532.7,3435.85,26133310,99.86,0,0,0.32,532.7,3435.87,26133311,99.92,0,0,0.17,532.66,3435.89,26133312,99.77,0,0,0.45,533.37,3435.18,26133313,99.94,0,0,0.29,532.55,3436,26133314,99.9,0,0,0.16,532.52,3436.02,26133315,99.88,0,0,0.32,532.52,3436.04,26133316,99.91,0,0,0.13,532.48,3436.08,26133317,99.77,0,0,0.64,533.04,3435.51,26133318,99.92,0,0,0.14,532.67,3435.88,26133319,99.93,0,0,0.14,532.65,3435.9,26133320,99.82,0,0,0.3,533,3435.56,26133321,99.9,0,0,0.16,533.04,3435.52,26133322,99.76,0,0,0.56,533.3,3435.26,26133323,99.9,0,0,0.15,532.74,3435.81,26133324,99.92,0,0,0.16,532.7,3435.84,26133325,99.9,0,0,0.34,532.7,3435.86,26133326,99.91,0,0,0.15,532.67,3435.89,26133327,99.79,0,0,0.55,533.04,3435.51,26133328,99.94,0,0,0.14,532.56,3435.98,26133329,99.92,0,0,0.17,532.51,3436.03,26133330,99.77,0,0,0.34,532.51,3436.04,26133331,99.93,0,0,0.18,532.48,3436.07,26133332,99.92,0,0,0.18,532.45,3436.1,26133333,99.76,0,0,0.53,533.02,3435.53,26133334,99.91,0,0,0.14,532.39,3436.15,26133335,99.82,0.01,0.01,0.3,532.26,3436.3,26133336,99.89,0,0.01,0.19,532.17,3436.39,26133337,99.93,0,0,0.15,532.19,3436.36,26133338,99.8,0,0,0.55,532.83,3435.71,26133339,99.76,0,0,0.39,532.64,3435.88,26133340,99.76,0,0.01,0.32,532.31,3436.23,26133341,99.91,0,0,0.16,532.21,3436.32,26133342,99.9,0,0,0.15,532.18,3436.35,26133343,99.27,0,0,0.54,533.07,3435.47,26133344,99.91,0,0,0.13,532.92,3435.62,26133345,99.82,0,0,0.3,532.83,3435.72,26133346,99.92,0,0,0.15,532.8,3435.75,26133347,99.88,0,0,0.16,532.77,3435.77,26133348,99.74,0,0,0.58,533.24,3435.3,26133349,99.9,0,0,0.16,532.96,3435.58,26133350,99.84,0,0,0.31,531.99,3436.56,26133351,99.93,0,0,0.14,531.94,3436.61,26133352,99.89,0,0,0.14,531.96,3436.58,26133353,99.78,0,0,0.4,533,3435.55,26133354,99.9,0,0,0.28,532.53,3436.01,26133355,99.88,0,0,0.31,533.01,3435.54,26133356,99.92,0,0,0.16,532.99,3435.56,26133357,99.9,0,0,0.15,532.96,3435.59,26133358,99.75,0,0,0.44,533.27,3435.27,26133359,99.93,0,0,0.27,532.4,3436.13,26133360,99.76,0,0,0.3,532.5,3436.06,26133361,99.88,0,0.01,0.14,532.55,3436.01,26133362,99.89,0,0,0.16,532.5,3436.06,26133363,99.78,0,0,0.39,532.85,3435.71,26133364,99.91,0,0,0.28,532.68,3435.87,26133365,99.82,0,0,0.31,532.92,3435.65,26133366,99.93,0,0,0.14,532.94,3435.63,26133367,99.92,0,0,0.14,533.05,3435.51,26133368,99.8,0,0,0.41,533.39,3435.16,26133369,99.73,0,0.01,0.47,533.25,3435.28,26133370,99.83,0,0,0.35,533.22,3435.33,26133371,99.91,0,0,0.17,533.2,3435.35,26133372,99.9,0,0,0.17,533.16,3435.38,26133373,99.93,0,0,0.18,533.13,3435.4,26133374,99.73,0,0,0.64,533.15,3435.38,26133375,99.81,0,0,0.36,531.33,3437.22,26133376,99.9,0,0,0.18,531.28,3437.27,26133377,99.89,0,0,0.2,531.5,3437.04,26133378,99.89,0,0,0.18,531.47,3437.06,26133379,99.76,0,0,0.58,532.14,3436.4,26133380,99.78,0,0,0.38,532.17,3436.39,26133381,99.9,0,0,0.18,532.18,3436.39,26133382,99.91,0,0,0.15,532.3,3436.26,26133383,99.92,0,0,0.15,532.28,3436.28,26133384,99.76,0,0,0.6,532.92,3435.64,26133385,99.79,0,0,0.3,531.53,3437.04,26133386,99.92,0,0,0.14,531.46,3437.1,26133387,99.93,0,0,0.16,531.44,3437.12,26133388,99.88,0,0,0.14,531.41,3437.14,26133389,98.77,0,0,0.49,531.99,3436.56,26133390,99.83,0,0,0.4,532.05,3436.51,26133391,99.91,0,0,0.18,532.03,3436.54,26133392,99.9,0,0,0.16,531.99,3436.57,26133393,99.91,0,0,0.14,531.97,3436.58,26133394,99.79,0,0,0.53,532.34,3436.2,26133395,99.87,0,0,0.32,532.01,3436.55,26133396,99.88,0,0,0.13,531.91,3436.65,26133397,99.9,0,0,0.16,531.95,3436.61,26133398,99.93,0,0,0.14,532.06,3436.49,26133399,99.6,0,0,0.57,532.56,3435.97,26133400,99.81,0,0.01,0.46,532.26,3436.28,26133401,99.92,0,0,0.18,532.24,3436.3,26133402,99.9,0,0,0.18,532.21,3436.33,26133403,99.9,0,0,0.16,532.18,3436.36,26133404,98.94,0,0,0.32,532.52,3436.01,26133405,99.83,0,0,0.52,532.57,3435.98,26133406,99.91,0,0,0.16,532.55,3436,26133407,99.9,0.01,0,0.15,532.49,3436.05,26133408,99.9,0,0,0.16,532.44,3436.1,26133409,99.9,0,0,0.14,532.41,3436.12,26133410,99.69,0,0,0.72,530.68,3437.86,26133411,99.91,0,0,0.14,529.85,3438.69,26133412,99.93,0,0,0.16,529.92,3438.61,26133413,99.93,0,0,0.15,530.03,3438.5,26133414,99.88,0,0,0.16,530,3438.53,26133415,99.64,0,0,0.75,532.45,3436.1,26133416,99.9,0,0,0.16,532.42,3436.12,26133417,99.91,0,0,0.18,532.39,3436.14,26133418,99.9,0,0,0.18,532.54,3435.99,26133419,99.9,0,0,0.22,532.52,3436.01,26133420,98.83,0,0,11.24,532.56,3436.01,26133421,99.92,0,0,0.16,532.59,3436.03,26133422,99.93,0,0,0.14,532.56,3436.05,26133423,99.92,0,0,0.15,532.34,3436.27,26133424,99.93,0,0,0.14,532.25,3436.36,26133425,99.65,0,0,0.72,532.03,3436.64,26133426,99.85,0,0,0.19,531.93,3436.75,26133427,99.9,0,0,0.14,531.89,3436.78,26133428,99.93,0,0,0.13,531.86,3436.81,26133429,99.81,0,0.01,0.31,532.8,3435.84,26133430,99.63,0,0,0.73,533.17,3435.48,26133431,99.91,0,0,0.14,532.77,3435.88,26133432,99.91,0,0,0.16,532.75,3435.9,26133433,99.93,0,0,0.14,532.78,3435.87,26133434,99.9,0,0,0.14,532.87,3435.79,26133435,99.69,0,0,0.76,532.99,3435.69,26133436,99.88,0,0,0.13,532.59,3436.09,26133437,99.9,0,0,0.18,532.56,3436.11,26133438,99.9,0,0,0.18,532.52,3436.15,26133439,99.92,0,0,0.16,532.48,3436.17,26133440,99.68,0,0,0.56,533.13,3435.55,26133441,99.87,0.01,0.01,0.34,532.61,3436.06,26133442,99.9,0,0,0.17,532.53,3436.13,26133443,99.93,0,0,0.14,532.5,3436.16,26133444,99.92,0,0,0.16,532.47,3436.18,26133445,99.69,0,0,0.58,533.1,3435.57,26133446,99.91,0,0,0.34,532.42,3436.25,26133447,99.9,0,0,0.15,532.38,3436.29,26133448,99.89,0,0,0.15,532.36,3436.3,26133449,99.89,0,0,0.14,532.33,3436.32,26133450,99.79,0,0,0.31,532.59,3436.08,26133451,99.71,0,0,0.55,533.11,3435.56,26133452,99.88,0,0,0.14,532.76,3435.91,26133453,99.91,0,0,0.15,532.79,3435.87,26133454,99.92,0,0,0.14,532.89,3435.77,26133455,99.78,0,0,0.31,532.64,3436.03,26133456,99.76,0,0,0.53,533.64,3435.03,26133457,99.92,0,0,0.16,533.06,3435.61,26133458,99.89,0,0,0.14,533.03,3435.63,26133459,99.83,0,0,0.32,532.59,3436.05,26133460,99.89,0,0.01,0.35,532.74,3435.91,26133461,99.77,0,0,0.52,533.26,3435.39,26133462,99.9,0,0,0.16,532.87,3435.76,26133463,99.82,0,0,0.14,532.85,3435.79,26133464,95.8,0,0,0.14,532.81,3435.82,26133465,99.85,0,0,0.34,533.05,3435.6,26133466,99.74,0,0,0.41,533.24,3435.41,26133467,99.9,0,0,0.26,532.74,3435.9,26133468,99.93,0,0,0.17,532.76,3435.87,26133469,99.93,0,0,0.15,532.87,3435.76,26133470,99.83,0,0,0.31,532.38,3436.26,26133471,99.77,0,0,0.59,532.79,3435.85,26133472,99.9,0,0,0.14,532.55,3436.09,26133473,99.88,0,0,0.16,532.52,3436.1,26133474,99.9,0,0,0.18,532.49,3436.14,26133475,99.82,0,0,0.32,532.96,3435.68,26133476,93.72,2.99,0.02,262.57,540.78,3425.33,26133477,99.9,0,0,0.33,534.79,3430.54,26133478,99.91,0,0,0.18,534.77,3430.55,26133479,99.9,0,0,0.18,534.74,3430.57,26133480,99.73,0,0,0.41,535.45,3429.88,26133481,99.89,0,0,0.21,533.6,3431.77,26133482,99.78,0,0,0.57,532.19,3433.2,26133483,99.9,0,0,0.18,531.95,3433.44,26133484,99.88,0,0,0.16,531.92,3433.46,26133485,99.76,0,0,0.31,532.44,3432.97,26133486,99.93,0,0,0.17,532.38,3433.02,26133487,99.78,0,0,0.55,533.31,3432.09,26133488,99.87,0,0,0.17,533.06,3432.33,26133489,99.72,0,0.01,0.3,532.8,3432.57,26133490,99.81,0,0,0.29,532.96,3432.43,26133491,99.88,0,0,0.18,532.93,3432.46,26133492,99.76,0.01,0.02,0.57,533.26,3432.12,26133493,99.88,0,0,0.18,532.89,3432.49,26133494,99.87,0,0,0.16,532.86,3432.53,26133495,99.76,0,0,0.3,533.09,3432.31,26133496,99.88,0,0,0.17,533.07,3432.33,26133497,99.65,0,0,0.71,533.22,3432.17,26133498,99.91,0,0,0.2,532.87,3432.52,26133499,99.88,0,0,0.18,532.91,3432.48,26133500,99.84,0,0,0.29,532.9,3432.5,26133501,99.92,0,0,0.17,532.88,3432.52,26133502,99.75,0,0,0.42,533.24,3432.15,26133503,99.93,0,0,0.29,532.08,3433.31,26133504,99.91,0,0,0.17,532.05,3433.34,26133505,99.75,0,0,0.28,533.01,3432.4,26133506,99.88,0,0,0.17,533.14,3432.26,26133507,99.77,0,0,0.6,533.6,3431.79,26133508,99.93,0,0,0.2,532.91,3432.48,26133509,99.85,0,0,0.2,532.88,3432.51,26133510,96.98,0,0,0.32,533.11,3432.29,26133511,99.88,0,0,0.2,533.09,3432.31,26133512,99.78,0,0,0.45,533.42,3431.98,26133513,99.92,0,0,0.3,533.08,3432.31,26133514,99.94,0,0,0.17,533.2,3432.19,26133515,99.8,0,0,0.3,532.95,3432.46,26133516,99.9,0,0,0.17,532.92,3432.49,26133517,99.78,0,0,0.45,533.24,3432.15,26133518,99.86,0,0,0.3,532.85,3432.54,26133519,99.73,0,0,0.33,532.67,3432.69,26133520,99.81,0,0.01,0.28,532.58,3432.81,26133521,99.9,0,0,0.17,532.59,3432.79,26133522,99.88,0,0,0.17,532.7,3432.68,26133523,99.74,0,0,0.54,533.51,3431.87,26133524,97.91,0,0,0.14,533.13,3432.26,26133525,99.81,0,0,0.28,532.92,3432.49,26133526,99.88,0,0,0.14,532.84,3432.56,26133527,99.88,0,0,0.15,532.82,3432.58,26133528,99.77,0,0,0.57,533.31,3432.08,26133529,99.93,0,0,0.16,532.45,3432.94,26133530,99.83,0,0,0.25,531.72,3433.68,26133531,99.92,0,0,0.16,531.67,3433.73,26133532,99.93,0,0,0.14,531.64,3433.75,26133533,99.74,0,0,0.53,532.59,3432.8,26133534,99.94,0,0,0.15,532.56,3432.82,26133535,99.86,0,0,0.27,532.08,3433.31,26133536,99.89,0,0,0.14,532.08,3433.31,26133537,99.94,0,0,0.16,532.19,3433.19,26133538,99.76,0,0,0.49,532.52,3432.86,26133539,99.93,0,0,0.2,532.13,3433.25,26133540,99.8,0,0,0.28,531.88,3433.51,26133541,99.88,0,0,0.18,531.85,3433.53,26133542,99.93,0,0,0.13,531.82,3433.56,26133543,99.74,0,0,0.49,532.02,3433.35,26133544,99.91,0,0,0.21,531.62,3433.75,26133545,99.8,0,0,0.27,532.66,3432.73,26133546,99.91,0,0,0.15,532.64,3432.75,26133547,99.88,0,0,0.19,532.62,3432.76,26133548,99.77,0,0,0.53,533.19,3432.18,26133549,99.83,0.01,0.01,0.3,532.31,3433.05,26133550,99.8,0,0,0.27,532.29,3433.08,26133551,99.88,0,0,0.14,532.31,3433.06,26133552,99.89,0,0,0.16,532.42,3432.95,26133553,96.91,0.04,0.01,64.3,541.17,3426.21,26133554,99.03,0,0,78.02,536.24,3429.43,26133555,99.81,0,0,0.3,534.05,3431.64,26133556,99.92,0,0,0.16,534.01,3431.68,26133557,99.89,0,0,0.18,534.23,3431.46,26133558,99.86,0,0,0.14,534.2,3431.48,26133559,99.69,0,0,0.59,532.9,3432.81,26133560,99.79,0,0,0.31,532.73,3433,26133561,99.85,0,0,0.18,532.74,3432.99,26133562,99.83,0,0,0.18,532.86,3432.87,26133563,99.9,0,0,0.18,532.82,3432.9,26133564,99.69,0,0,0.57,533.15,3432.57,26133565,99.81,0,0,0.32,532.55,3433.18,26133566,99.88,0,0,0.18,532.51,3433.21,26133567,99.93,0,0,0.14,532.48,3433.24,26133568,99.91,0,0,0.15,532.45,3433.26,26133569,99.77,0,0,0.53,533.14,3432.57,26133570,99.78,0,0,0.27,532.17,3433.56,26133571,99.88,0,0,0.16,532.09,3433.64,26133572,99.87,0,0,0.16,532.06,3433.67,26133573,99.9,0,0,0.15,532.03,3433.69,26133574,99.71,0,0,0.48,532.63,3433.08,26133575,99.74,0,0,0.38,532.47,3433.25,26133576,99.91,0,0,0.14,532.45,3433.27,26133577,99.89,0,0,0.14,532.49,3433.23,26133578,99.9,0,0,0.17,532.58,3433.13,26133579,99.62,0,0,0.65,532.99,3432.7,26133580,99.78,0,0,0.31,532.54,3433.16,26133581,99.87,0,0,0.16,532.51,3433.2,26133582,99.9,0,0,0.15,532.48,3433.22,26133583,99.88,0,0,0.15,532.45,3433.24,26133584,99.79,0,0,0.48,532.89,3432.81,26133585,98.56,0,0,0.34,532.56,3433.15,26133586,99.91,0,0,0.15,532.57,3433.14,26133587,99.89,0,0,0.16,532.53,3433.17,26133588,99.91,0,0,0.14,532.5,3433.19,26133589,99.77,0,0,0.41,533.13,3432.56,26133590,99.84,0,0,0.37,532.71,3433,26133591,99.91,0,0,0.16,532.69,3433.02,26133592,99.88,0,0,0.14,532.71,3432.99,26133593,99.9,0,0,0.16,532.8,3432.89,26133594,99.79,0,0,0.32,533.12,3432.57,26133595,99.81,0,0,0.47,532.77,3432.93,26133596,99.92,0,0,0.16,532.74,3432.96,26133597,99.88,0,0,0.15,532.71,3432.98,26133598,99.91,0,0,0.14,532.68,3433.01,26133599,99.77,0,0,0.32,533.04,3432.65,26133600,99.78,0,0,0.53,532.82,3432.87,26133601,99.87,0,0,0.14,532.8,3432.89,26133602,99.9,0,0,0.16,532.76,3432.92,26133603,99.9,0,0,0.15,532.73,3432.95,26133604,99.89,0,0,0.14,532.69,3432.98,26133605,99.65,0,0,0.68,532.76,3432.94,26133606,99.93,0,0,0.16,532.4,3433.29,26133607,99.87,0,0,0.13,532.58,3433.1,26133608,99.89,0,0,0.16,532.55,3433.14,26133609,99.72,0,0.01,0.28,532.82,3432.86,26133610,99.64,0,0,0.69,533.58,3432.11,26133611,99.85,0,0,0.18,532.71,3432.98,26133612,99.86,0,0,0.14,532.68,3433,26133613,99.92,0,0,0.15,532.76,3432.93,26133614,99.91,0,0,0.14,532.81,3432.88,26133615,99.62,0,0,0.67,532.7,3433.01,26133616,99.91,0,0,0.15,532.52,3433.18,26133617,99.9,0,0,0.2,532.25,3433.44,26133618,99.84,0,0,0.14,532.22,3433.47,26133619,99.84,0,0,0.15,532.19,3433.5,26133620,99.59,0,0,0.53,532.33,3433.38,26133621,99.91,0,0,0.25,531.11,3434.6,26133622,99.84,0,0,0.16,531.08,3434.62,26133623,99.91,0,0,0.14,531.05,3434.64,26133624,99.91,0,0,0.14,531.03,3434.66,26133625,99.64,0,0,0.61,532.78,3432.93,26133626,99.85,0,0,0.21,532.71,3432.99,26133627,99.86,0,0,0.14,532.67,3433.02,26133628,99.85,0,0,0.15,532.69,3433,26133629,99.85,0,0,0.14,532.81,3432.88,26133630,99.64,0,0,0.56,533.13,3432.57,26133631,97.39,0,0,0.27,532.74,3432.96,26133632,99.85,0,0,0.15,532.7,3432.99,26133633,99.88,0,0,0.16,532.68,3433.01,26133634,99.85,0,0,0.15,532.65,3433.03,26133635,99.65,0,0,0.48,533.6,3432.11,26133636,99.8,0,0,0.41,533.04,3432.66,26133637,99.88,0,0,0.18,533.01,3432.68,26133638,99.84,0,0,0.15,532.98,3432.71,26133639,99.62,0,0,0.38,532.69,3432.99,26133640,99.73,0,0.01,0.32,532.43,3433.26,26133641,99.74,0,0,0.54,533.18,3432.5,26133642,99.89,0,0,0.15,532.98,3432.71,26133643,99.83,0,0,0.15,533.02,3432.65,26133644,99.84,0,0,0.16,532.99,3432.68,26133645,99.79,0,0,0.28,532.51,3433.18,26133646,99.73,0,0,0.59,533.47,3432.22,26133647,99.85,0,0,0.16,533.18,3432.51,26133648,99.86,0,0,0.14,533.15,3432.53,26133649,99.88,0,0,0.14,533.16,3432.52,26133650,99.72,0,0,0.25,533.11,3432.58,26133651,99.69,0,0,0.57,533.39,3432.3,26133652,99.84,0,0,0.14,532.99,3432.69,26133653,99.85,0,0,0.15,532.96,3432.72,26133654,99.85,0,0,0.16,532.93,3432.75,26133655,99.71,0,0,0.3,531.97,3433.72,26133656,99.68,0,0,0.56,533.04,3432.65,26133657,99.85,0,0,0.15,532.92,3432.76,26133658,99.85,0,0,0.14,533.05,3432.63,26133659,99.76,0,0,0.15,533.02,3432.65,26133660,99.7,0,0,0.29,533.01,3432.68,26133661,99.62,0,0,0.59,533.34,3432.35,26133662,99.8,0,0,0.15,532.95,3432.72,26133663,99.83,0,0,0.18,532.92,3432.75,26133664,99.83,0,0,0.17,532.89,3432.78,26133665,99.76,0,0,0.34,533.01,3432.68,26133666,99.66,0,0,0.52,533.42,3432.27,26133667,99.79,0,0,0.16,533.02,3432.66,26133668,99.83,0,0,0.18,532.98,3432.69,26133669,99.68,0,0.01,0.32,532.96,3432.69,26133670,99.73,0,0,0.28,532.95,3432.72,26133671,99.67,0,0,0.43,533.36,3432.3,26133672,99.83,0,0,0.29,533.29,3432.37,26133673,99.83,0,0,0.14,533.26,3432.39,26133674,99.82,0,0,0.15,533.23,3432.43,26133675,99.7,0,0,0.27,532.02,3433.67,26133676,99.7,0,0,0.31,532.55,3433.13,26133677,99.8,0,0,0.41,532.69,3432.98,26133678,99.83,0,0,0.14,532.65,3433.02,26133679,99.85,0,0,0.14,532.68,3432.98,26133680,99.7,0,0,0.27,532.33,3433.36,26133681,99.84,0,0,0.17,532.29,3433.39,26133682,99.68,0,0,0.53,533.24,3432.44,26133683,99.8,0,0,0.14,532.33,3433.34,26133684,99.8,0,0,0.16,531.96,3433.71,26133685,99.63,0,0,0.3,531.27,3434.42,26133686,99.84,0,0,0.13,531.18,3434.5,26133687,99.68,0,0,0.53,532.41,3433.27,26133688,99.83,0,0,0.14,532.3,3433.37,26133689,99.82,0,0,0.14,532.28,3433.39,26133690,99.64,0,0,0.29,531.31,3434.37,26133691,98.43,0,0,0.16,531.25,3434.43,26133692,99.55,0,0,0.54,532.21,3433.46,26133693,99.84,0,0,0.15,531.69,3433.98,26133694,99.84,0,0,0.14,531.66,3434.01,26133695,99.73,0,0,0.29,531.69,3433.99,26133696,99.83,0,0,0.14,531.8,3433.88,26133697,99.59,0,0,0.54,532.49,3433.19,26133698,99.83,0,0,0.17,532.48,3433.19,26133699,99.72,0,0,0.4,532.34,3433.3,26133700,99.74,0,0,0.29,532.46,3433.21,26133701,99.82,0,0,0.14,532.41,3433.25,26133702,99.71,0,0,0.54,532.67,3433,26133703,99.83,0,0,0.18,532.28,3433.38,26133704,99.83,0,0,0.18,532.26,3433.42,26133705,98.6,0,0,0.36,532.5,3433.2,26133706,99.82,0,0,0.34,532.34,3433.35,26133707,99.67,0,0,0.5,532.55,3433.14,26133708,99.83,0,0,0.19,532.17,3433.52,26133709,99.85,0,0,0.15,532.13,3433.55,26133710,99.7,0,0,0.28,532.02,3433.67,26133711,99.82,0,0,0.15,532.08,3433.61,26133712,99.71,0,0,0.41,532.71,3432.98,26133713,99.8,0,0,0.28,532.5,3433.18,26133714,99.83,0,0,0.16,532.47,3433.21,26133715,99.74,0,0,0.29,532.53,3433.16,26133716,99.81,0,0,0.16,532.44,3433.25,26133717,99.82,0,0,0.16,532.42,3433.26,26133718,99.7,0,0,0.53,532.92,3432.76,26133719,99.82,0,0,0.14,532.53,3433.14,26133720,99.69,0,0,0.28,531.34,3434.35,26133721,99.85,0,0,0.15,531.27,3434.42,26133722,99.82,0,0,0.14,531.24,3434.45,26133723,99.69,0,0,0.53,532.76,3432.92,26133724,99.84,0,0,0.14,532.4,3433.28,26133725,99.77,0,0,0.28,532.04,3433.65,26133726,99.82,0,0,0.14,532.05,3433.64,26133727,99.85,0,0,0.16,532.03,3433.65,26133728,99.7,0,0,0.52,532.77,3432.91,26133729,99.68,0,0.01,0.29,532.93,3432.72,26133730,99.73,0,0,0.3,532.44,3433.23,26133731,99.83,0,0,0.13,532.4,3433.27,26133732,99.79,0,0,0.16,532.48,3433.18,26133733,99.7,0,0,0.53,532.9,3432.76,26133734,99.79,0,0,0.15,532,3433.69,26133735,99.77,0,0,0.28,532,3433.71,26133736,99.82,0,0,0.16,531.97,3433.73,26133737,99.81,0,0,0.18,531.94,3433.76,26133738,99.69,0,0,0.52,532.34,3433.34,26133739,99.72,0,0,0.15,531.67,3434.02,26133740,99.69,0,0,0.29,531.57,3434.13,26133741,99.83,0,0,0.14,531.54,3434.16,26133742,99.8,0,0,0.14,531.5,3434.19,26133743,99.62,0,0,0.51,532.12,3433.57,26133744,99.81,0,0,0.18,532.42,3433.26,26133745,99.66,0,0,0.34,531.69,3434.01,26133746,99.79,0,0,0.13,531.64,3434.05,26133747,99.83,0,0,0.16,531.74,3433.95,26133748,99.67,0,0,0.39,532.2,3433.49,26133749,99.8,0,0,0.28,532.24,3433.44,26133750,99.68,0,0,0.28,531.28,3434.41,26133751,99.79,0,0,0.14,531.22,3434.48,26133752,99.78,0,0,0.14,531.19,3434.5,26133753,99.81,0,0,0.16,531.15,3434.53,26133754,99.61,0,0,0.52,532.47,3433.21,26133755,99.73,0,0,0.3,532.52,3433.18,26133756,99.8,0,0,0.16,532.51,3433.19,26133757,99.81,0,0,0.14,532.48,3433.21,26133758,99.84,0,0,0.15,532.45,3433.24,26133759,99.55,0,0,0.71,533.02,3432.64,26133760,99.73,0,0.01,0.3,532.16,3433.52,26133761,99.84,0,0,0.14,532.13,3433.54,26133762,99.83,0,0,0.14,532.17,3433.5,26133763,99.83,0,0,0.15,532.29,3433.38,26133764,99.69,0,0,0.53,533.16,3432.5,26133765,99.73,0,0,0.3,532.98,3432.7,26133766,99.81,0,0,0.15,532.95,3432.72,26133767,99.48,0,0,0.15,532.92,3432.75,26133768,99.8,0,0,0.15,532.89,3432.77,26133769,99.66,0,0,0.59,533.44,3432.22,26133770,99.75,0,0,0.27,532.81,3432.87,26133771,99.83,0,0,0.15,532.77,3432.91,26133772,99.82,0,0,0.16,532.73,3432.93,26133773,99.84,0,0,0.15,532.71,3432.96,26133774,99.69,0,0,0.48,533.04,3432.62,26133775,99.76,0,0,0.38,532.67,3433.01,26133776,99.75,0,0,0.16,532.64,3433.03,26133777,99.82,0,0,0.15,532.67,3433,26133778,99.82,0,0,0.14,532.78,3432.88,26133779,99.68,0,0,0.53,533.02,3432.64,26133780,99.71,0,0,0.32,532.98,3432.69,26133781,99.81,0,0,0.18,532.95,3432.72,26133782,99.83,0,0,0.19,532.91,3432.76,26133783,99.82,0,0,0.16,532.88,3432.79,26133784,99.59,0,0,0.41,533.26,3432.39,26133785,99.72,0,0,0.49,532.86,3432.81,26133786,99.83,0,0,0.18,532.75,3432.92,26133787,99.83,0,0,0.18,532.72,3432.95,26133788,99.83,0,0,0.18,532.68,3432.98,26133789,99.47,0,0.01,0.57,532.82,3432.81,26133790,99.69,0,0,0.46,532.16,3433.49,26133791,99.83,0,0,0.18,532.21,3433.43,26133792,99.8,0,0,0.18,532.26,3433.38,26133793,99.83,0,0,0.19,532.23,3433.4,26133794,99.84,0,0,0.18,532.18,3433.45,26133795,99.54,0,0,0.71,533.19,3432.46,26133796,99.83,0,0,0.13,532.39,3433.25,26133797,99.76,0,0,0.19,532.37,3433.27,26133798,99.84,0,0,0.15,532.45,3433.19,26133799,99.8,0,0,0.14,532.49,3433.14,26133800,99.59,0,0,0.68,533.47,3432.18,26133801,99.79,0,0,0.14,533.18,3432.46,26133802,99.83,0,0,0.14,533.14,3432.5,26133803,99.84,0,0,0.16,533.1,3432.53,26133804,99.82,0,0,0.14,533.13,3432.5,26133805,98.17,0,0,16,535.99,3430.41,26133806,99.82,0,0,0.19,533.02,3432.93,26133807,99.84,0,0,0.16,532.98,3432.97,26133808,99.83,0,0,0.14,532.93,3433.02,26133809,99.83,0,0,0.16,532.95,3432.99,26133810,99.59,0,0,0.64,533.8,3432.16,26133811,98.4,0,0,0.17,533.3,3432.66,26133812,99.86,0,0,0.14,533.25,3432.7,26133813,99.9,0,0,0.16,533.19,3432.76,26133814,91.87,0,0,121.25,552.26,3408.01,26133815,99.61,0,0,0.73,538.64,3428.86,26133816,99.89,0,0,0.3,538.42,3429.08,26133817,99.92,0,0,0.16,538.38,3429.11,26133818,99.87,0,0,0.16,537.84,3429.68,26133819,99.63,0,0,0.36,534.75,3432.92,26133820,99.61,0.01,0.01,0.55,532.88,3434.89,26133821,99.85,0,0,0.3,533.29,3434.47,26133822,99.89,0,0,0.14,533.25,3434.51,26133823,99.92,0,0,0.15,533.2,3434.55,26133824,99.89,0,0,0.17,533.35,3434.41,26133825,99.65,0,0,0.52,533.88,3433.89,26133826,99.86,0,0,0.38,533.27,3434.49,26133827,99.9,0,0,0.15,533.23,3434.53,26133828,95.63,0,0,0.15,533.2,3434.56,26133829,99.9,0,0,0.16,533.35,3434.4,26133830,99.77,0,0,0.34,532.14,3435.63,26133831,99.77,0,0,0.55,533.09,3434.67,26133832,99.88,0,0,0.15,532.75,3435.01,26133833,99.88,0,0,0.14,532.71,3435.05,26133834,99.9,0,0,0.15,532.78,3434.97,26133835,99.81,0,0,0.3,532.89,3434.9,26133836,99.75,0,0,0.54,533.06,3434.74,26133837,99.87,0,0,0.16,532.24,3435.55,26133838,99.89,0,0,0.14,532.23,3435.56,26133839,99.91,0,0,0.16,532.34,3435.45,26133840,99.82,0,0,0.29,531.59,3436.21,26133841,99.78,0,0,0.6,532.35,3435.44,26133842,99.92,0,0,0.16,531.99,3435.8,26133843,99.89,0,0,0.14,531.95,3435.84,26133844,99.88,0,0,0.16,532.04,3435.75,26133845,99.81,0,0,0.28,532.84,3434.96,26133846,99.76,0,0,0.48,533.14,3434.66,26133847,99.91,0,0,0.21,532.51,3435.28,26133848,99.92,0,0,0.15,532.47,3435.32,26133849,99.79,0,0.01,0.29,532.54,3435.23,26133850,99.81,0,0,0.31,532.59,3435.19,26133851,99.77,0,0,0.58,532.89,3434.89,26133852,99.88,0,0,0.13,532.49,3435.28,26133853,99.86,0,0,0.17,532.45,3435.32,26133854,99.86,0,0,0.15,532.52,3435.26,26133855,99.77,0,0,0.31,532.58,3435.22,26133856,99.7,0,0,0.54,532.95,3434.85,26133857,99.9,0,0,0.19,532.75,3435.04,26133858,99.92,0,0,0.15,532.72,3435.07,26133859,99.87,0,0,0.14,532.69,3435.1,26133860,99.76,0,0,0.32,531.82,3435.98,26133861,99.74,0,0,0.36,532.21,3435.59,26133862,99.88,0,0,0.36,531.83,3435.96,26133863,99.9,0,0,0.18,531.8,3435.99,26133864,99.91,0,0,0.18,531.76,3436.02,26133865,99.78,0,0,0.32,531.28,3436.52,26133866,99.93,0,0,0.16,531.24,3436.56,26133867,99.74,0,0,0.59,532.24,3435.55,26133868,99.89,0,0,0.14,532.03,3435.76,26133869,99.9,0,0,0.15,532.08,3435.71,26133870,99.75,0,0,0.32,531.84,3435.97,26133871,99.9,0,0,0.14,531.8,3436,26133872,99.34,0,0,0.61,532.67,3435.13,26133873,99.91,0,0,0.14,532.23,3435.56,26133874,99.87,0,0,0.15,532.19,3435.59,26133875,99.87,0,0,0.3,532.72,3435.08,26133876,99.89,0,0,0.14,532.83,3434.97,26133877,99.75,0,0,0.61,533.28,3434.51,26133878,99.89,0,0,0.15,533.02,3434.77,26133879,99.79,0,0,0.33,532.39,3435.4,26133880,99.82,0,0.01,0.27,531.96,3435.84,26133881,99.9,0,0,0.16,532.01,3435.79,26133882,99.8,0,0,0.57,532.85,3434.94,26133883,99.89,0,0,0.15,532.79,3435,26133884,99.87,0,0,0.14,532.76,3435.02,26133885,99.84,0,0,0.3,532.75,3435.06,26133886,99.9,0,0,0.16,532.72,3435.09,26133887,99.75,0,0,0.55,533.13,3434.67,26133888,99.91,0,0,0.16,532.95,3434.85,26133889,99.93,0,0,0.15,533.08,3434.71,26133890,99.83,0,0,0.27,533.07,3434.73,26133891,99.9,0,0,0.14,533.03,3434.77,26133892,99.77,0,0,0.41,533.31,3434.49,26133893,99.94,0,0,0.29,532.74,3435.05,26133894,99.92,0,0,0.14,532.7,3435.09,26133895,99.76,0,0,0.28,532.94,3434.86,26133896,99.91,0,0,0.16,533.02,3434.79,26133897,99.78,0,0.01,0.33,533.37,3434.43,26133898,99.89,0,0,0.39,532.52,3435.27,26133899,99.9,0,0,0.15,532.49,3435.3,26133900,99.79,0,0,0.29,532.56,3435.25,26133901,99.93,0,0,0.18,532.46,3435.34,26133902,99.9,0,0,0.16,532.47,3435.32,26133903,99.78,0,0,0.57,533.16,3434.63,26133904,99.89,0,0,0.14,532.8,3434.98,26133905,99.81,0,0,0.29,533.04,3434.76,26133906,99.88,0,0,0.15,533.02,3434.78,26133907,99.9,0,0,0.18,532.98,3434.81,26133908,99.75,0,0,0.58,533.29,3434.49,26133909,99.79,0,0.01,0.34,533.14,3434.62,26133910,99.77,0,0,0.38,531.83,3435.95,26133911,99.9,0,0,0.2,531.82,3435.96,26133912,99.92,0,0,0.17,531.79,3435.98,26133913,99.8,0,0,0.55,532.52,3435.25,26133914,99.89,0,0,0.17,532.46,3435.3,26133915,99.86,0,0,0.3,532.22,3435.56,26133916,99.9,0,0,0.17,532.18,3435.59,26133917,99.89,0,0,0.22,532.22,3435.55,26133918,95.04,0.3,0.01,78.34,546.13,3422.45,26133919,99.64,0,0,181.46,535.53,3431.84,26133920,99.83,0,0,0.32,535.53,3431.85,26133921,99.92,0,0,0.2,535.49,3431.88,26133922,99.91,0,0,0.16,535.47,3431.91,26133923,99.78,0,0,0.45,534.89,3432.5,26133924,99.85,0,0,0.35,533,3434.42,26133925,99.81,0,0,0.32,532.84,3434.59,26133926,99.89,0,0,0.16,532.95,3434.48,26133927,99.93,0,0,0.17,532.91,3434.51,26133928,99.79,0,0,0.57,533.23,3434.19,26133929,99.92,0,0,0.15,532.86,3434.56,26133930,99.79,0,0,0.32,533.1,3434.33,26133931,99.86,0,0,0.15,533.07,3434.36,26133932,99.92,0,0,0.16,533.04,3434.39,26133933,99.73,0,0,0.31,533.83,3433.59,26133934,99.94,0,0,0.37,533.17,3434.25,26133935,99.84,0,0.01,0.27,532.94,3434.5,26133936,99.93,0,0,0.15,532.88,3434.55,26133937,99.93,0,0,0.17,532.85,3434.58,26133938,99.92,0,0,0.14,532.82,3434.6,26133939,99.6,0,0,0.69,533.6,3433.81,26133940,99.81,0,0.01,0.28,532.6,3434.83,26133941,99.92,0,0,0.19,532.7,3434.72,26133942,99.92,0,0,0.15,532.67,3434.75,26133943,99.93,0,0,0.14,532.64,3434.78,26133944,99.7,0,0,0.56,533.32,3434.09,26133945,99.79,0,0,0.29,533.1,3434.33,26133946,99.89,0,0,0.14,533.07,3434.35,26133947,99.9,0,0,0.14,533.04,3434.38,26133948,99.88,0,0,0.2,533.1,3434.31,26133949,99.71,0,0,0.57,533.38,3434.03,26133950,99.77,0,0,0.28,532.43,3435,26133951,99.91,0,0,0.16,532.38,3435.04,26133952,99.87,0,0,0.16,532.35,3435.07,26133953,99.9,0,0,0.16,532.32,3435.09,26133954,99.73,0,0,0.59,533.04,3434.39,26133955,99.77,0,0,0.28,533.33,3434.11,26133956,99.89,0,0,0.17,533.43,3434.02,26133957,99.88,0,0,0.14,533.4,3434.04,26133958,99.9,0,0,0.14,533.37,3434.06,26133959,99.75,0,0,0.52,534.02,3433.41,26133960,99.77,0,0,0.35,533.58,3433.87,26133961,99.85,0,0,0.14,533.54,3433.9,26133962,99.87,0,0,0.16,533.55,3433.89,26133963,99.89,0,0,0.14,533.67,3433.76,26133964,99.73,0,0,0.42,534.13,3433.3,26133965,99.74,0,0,0.45,532.42,3435.02,26133966,99.85,0,0,0.16,532.37,3435.07,26133967,99.91,0,0,0.14,532.35,3435.09,26133968,99.89,0,0,0.15,532.31,3435.12,26133969,99.47,0,0.01,0.46,532.98,3434.43,26133970,99.69,0,0,0.47,532.39,3435.04,26133971,99.85,0,0,0.15,532.42,3435,26133972,99.89,0,0,0.17,532.4,3435.02,26133973,99.86,0,0,0.14,532.36,3435.05,26133974,99.83,0,0,0.16,532.34,3435.1,26133975,99.56,0,0,0.71,532.8,3434.66,26133976,99.9,0,0,0.14,532.31,3435.15,26133977,99.84,0,0,0.18,532.28,3435.18,26133978,99.91,0,0,0.16,532.46,3434.99,26133979,99.92,0,0,0.14,532.44,3435,26133980,99.63,0,0,0.7,533.02,3434.45,26133981,99.88,0,0,0.13,532.4,3435.06,26133982,99.87,0,0,0.16,532.37,3435.09,26133983,99.89,0,0,0.14,532.35,3435.1,26133984,99.86,0,0,0.15,532.32,3435.13,26133985,99.62,0,0,0.7,533.63,3433.83,26133986,99.87,0,0,0.16,533.46,3434.01,26133987,99.91,0,0,0.14,533.42,3434.04,26133988,99.86,0,0,0.15,533.4,3434.06,26133989,99.89,0,0,0.13,533.36,3434.09,26133990,99.6,0.01,0.11,0.64,532.88,3434.59,26133991,99.83,0,0,0.27,532.61,3434.85,26133992,99.88,0,0,0.14,532.58,3434.87,26133993,99.82,0,0,0.14,532.54,3434.9,26133994,99.85,0,0,0.15,532.55,3434.89,26133995,99.63,0,0,0.59,533.24,3434.22,26133996,99.86,0,0,0.28,532.66,3434.8,26133997,99.91,0,0,0.14,532.62,3434.82,26133998,99.86,0,0.01,0.17,532.59,3434.85,26133999,99.68,0,0,0.3,531.77,3435.65,26134000,99.56,0,0,0.54,531.99,3435.45,26134001,99.89,0,0,0.32,532.68,3434.75,26134002,99.81,0,0,0.14,532.66,3434.77,26134003,99.89,0,0,0.16,532.62,3434.8,26134004,99.89,0,0,0.15,532.57,3434.86,26134005,99.66,0,0,0.56,532.29,3435.16,26134006,99.86,0,0,0.3,532.28,3435.17,26134007,99.83,0,0,0.17,532.25,3435.19,26134008,99.9,0,0,0.14,532.27,3435.16,26134009,99.91,0,0,0.16,532.41,3435.02,26134010,99.85,0,0,0.3,532.65,3434.8,26134011,99.71,0,0,0.54,533.22,3434.22,26134012,99.89,0,0,0.14,532.84,3434.6,26134013,99.92,0,0,0.17,532.81,3434.63,26134014,99.89,0,0,0.14,532.79,3434.64,26134015,99.78,0,0,0.3,532.53,3434.92,26134016,99.71,0,0,0.56,533.21,3434.23,26134017,99.88,0,0,0.14,532.66,3434.78,26134018,99.89,0,0,0.15,532.63,3434.81,26134019,99.92,0,0,0.17,532.6,3434.83,26134020,99.76,0,0,0.31,531.39,3436.06,26134021,99.68,0,0,0.56,532.37,3435.07,26134022,99.88,0,0,0.16,532.04,3435.4,26134023,99.89,0,0,0.14,532.01,3435.43,26134024,99.88,0,0,0.15,532.04,3435.39,26134025,99.83,0,0,0.29,531.92,3435.53,26134026,99.7,0,0,0.54,532.68,3434.76,26134027,99.87,0,0,0.15,532.59,3434.85,26134028,99.81,0,0,0.14,532.56,3434.87,26134029,99.7,0.01,0.01,0.34,532.32,3435.09,26134030,99.77,0,0,0.29,532.29,3435.13,26134031,99.69,0,0,0.4,532.54,3434.88,26134032,99.87,0,0,0.29,531.94,3435.48,26134033,99.9,0,0,0.14,531.9,3435.51,26134034,99.89,0,0,0.14,531.88,3435.54,26134035,99.8,0,0,0.32,531.39,3436.06,26134036,99.69,0,0,0.47,526.27,3441.33,26134037,99.91,0,0,0.33,524.92,3442.71,26134038,99.89,0,0,0.14,524.95,3442.68,26134039,99.85,0,0,0.16,525.07,3442.55,26134040,99.77,0,0,0.29,525.11,3442.53,26134041,99.7,0,0,0.5,525.37,3442.27,26134042,99.91,0,0,0.19,524.78,3442.86,26134043,99.88,0,0,0.15,524.76,3442.87,26134044,99.88,0,0,0.17,524.74,3442.89,26134045,99.78,0,0,0.28,524.98,3442.68,26134046,99.89,0,0,0.14,524.97,3442.69,26134047,99.74,0,0,0.55,525.39,3442.26,26134048,99.89,0,0,0.14,524.68,3442.97,26134049,99.89,0,0,0.16,524.66,3442.99,26134050,99.74,0,0,0.34,524.06,3443.6,26134051,99.88,0,0,0.13,524.09,3443.57,26134052,99.73,0,0,0.57,524.99,3442.66,26134053,99.88,0,0,0.16,524.54,3443.11,26134054,99.89,0,0,0.15,524.52,3443.12,26134055,99.78,0,0,0.32,524.76,3442.9,26134056,99.87,0,0,0.17,524.75,3442.91,26134057,99.71,0,0,0.6,524.93,3442.72,26134058,99.91,0,0,0.16,524.46,3443.18,26134059,99.78,0,0,0.43,524.84,3442.78,26134060,99.83,0,0,0.31,525.16,3442.47,26134061,99.9,0,0,0.18,525.15,3442.49,26134062,99.72,0,0,0.42,525.25,3442.37,26134063,99.91,0.02,0.55,0.51,524.69,3442.93,26134064,99.88,0,0,0.19,524.65,3442.96,26134065,99.74,0,0,0.3,524.9,3442.72,26134066,99.89,0,0,0.14,524.87,3442.75,26134067,99.74,0,0,0.57,525.22,3442.4,26134068,99.86,0,0,0.16,524.81,3442.8,26134069,99.88,0,0,0.14,524.8,3442.82,26134070,99.74,0,0,0.34,524.83,3442.81,26134071,98.7,0,0,0.15,524.79,3442.85,26134072,99.8,0,0,0.62,525.1,3442.53,26134073,99.86,0,0,0.15,524.74,3442.89,26134074,99.85,0,0,0.18,524.71,3442.91,26134075,99.8,0,0,0.32,523.75,3443.89,26134076,99.93,0,0,0.17,523.71,3443.93,26134077,99.75,0,0,0.39,524.59,3443.04,26134078,99.9,0,0,0.28,524.9,3442.73,26134079,99.9,0,0,0.16,525.01,3442.62,26134080,99.76,0,0,0.31,524.82,3442.82,26134081,99.9,0,0,0.13,524.79,3442.85,26134082,99.92,0,0,0.17,524.77,3442.86,26134083,99.77,0,0,0.55,525.8,3441.83,26134084,99.91,0,0,0.15,525.23,3442.4,26134085,99.88,0,0,0.31,524.74,3442.9,26134086,99.91,0,0,0.16,524.71,3442.93,26134087,99.91,0,0,0.14,524.69,3442.95,26134088,99.75,0,0,0.58,525.27,3442.36,26134089,99.7,0,0,0.29,524.65,3442.95,26134090,99.81,0,0,0.29,524.96,3442.67,26134091,99.86,0,0,0.17,525.06,3442.56,26134092,99.92,0,0,0.18,525.04,3442.58,26134093,99.7,0,0,0.58,525.53,3442.08,26134094,99.88,0,0,0.14,525.25,3442.35,26134095,99.77,0,0,0.32,525.49,3442.13,26134096,99.89,0,0,0.16,525.47,3442.15,26134097,99.86,0,0,0.17,525.21,3442.4,26134098,99.74,0,0,0.57,525.23,3442.38,26134099,99.88,0,0,0.14,524.67,3442.93,26134100,99.75,0,0,0.33,523.95,3443.67,26134101,99.85,0,0,0.18,523.91,3443.71,26134102,99.88,0,0,0.18,523.99,3443.62,26134103,99.76,0,0,0.56,524.86,3442.74,26134104,99.9,0,0,0.14,525.01,3442.59,26134105,99.82,0,0,0.31,525.04,3442.58,26134106,99.86,0,0,0.18,525,3442.62,26134107,99.89,0,0,0.16,524.97,3442.64,26134108,99.75,0,0,0.46,525.59,3442.02,26134109,99.87,0,0,0.3,524.93,3442.67,26134110,99.69,0,0,0.32,524.46,3443.16,26134111,99.9,0,0,0.21,524.42,3443.19,26134112,99.87,0,0,0.19,524.4,3443.21,26134113,99.7,0,0,0.45,524.86,3442.74,26134114,99.41,0,0,0.29,525.28,3442.32,26134115,99.86,0,0,0.34,525.27,3442.34,26134116,99.8,0,0,0.14,525.26,3442.34,26134117,99.87,0,0,0.16,525.23,3442.38,26134118,99.86,0,0,0.14,525.22,3442.38,26134119,99.68,0,0,0.75,525.72,3441.86,26134120,99.85,0,0,0.3,525.44,3442.14,26134121,99.9,0,0,0.16,525.42,3442.16,26134122,99.86,0,0.01,0.15,525.4,3442.18,26134123,99.9,0,0,0.17,525.36,3442.21,26134124,99.74,0,0,0.55,525.5,3442.08,26134125,99.86,0,0,0.36,525.27,3442.31,26134126,99.93,0,0,0.15,525.26,3442.33,26134127,99.88,0,0,0.14,525.23,3442.35,26134128,99.91,0,0,0.16,525.22,3442.36,26134129,99.78,0,0,0.55,525.55,3442.02,26134130,99.83,0,0,0.36,525.2,3442.39,26134131,99.48,0,0,0.17,525.18,3442.41,26134132,99.79,0,0,0.18,525.16,3442.42,26134133,99.87,0,0,0.18,525.15,3442.43,26134134,99.74,0,0,0.42,525.66,3441.91,26134135,99.75,0,0,0.42,525.13,3442.46,26134136,99.85,0,0,0.14,525.1,3442.48,26134137,99.9,0,0,0.17,525.2,3442.38,26134138,99.85,0,0,0.14,525.24,3442.34,26134139,99.73,0,0,0.5,525.57,3442.01,26134140,99.66,0,0,0.35,524.55,3443.04,26134141,99.89,0,0,0.15,524.46,3443.13,26134142,99.88,0,0,0.18,524.45,3443.13,26134143,99.9,0,0,0.17,524.42,3443.16,26134144,99.76,0,0,0.57,524.74,3442.83,26134145,99.79,0,0,0.3,524.4,3443.18,26134146,99.9,0,0,0.14,524.37,3443.21,26134147,99.86,0,0,0.18,524.4,3443.17,26134148,99.86,0,0,0.18,524.55,3443.02,26134149,99.72,0,0,0.68,524.88,3442.66,26134150,99.85,0,0,0.3,524.78,3442.79,26134151,99.89,0,0,0.17,524.76,3442.8,26134152,99.87,0,0,0.17,524.73,3442.82,26134153,99.91,0,0,0.14,524.72,3442.84,26134154,99.74,0,0,0.37,525.05,3442.5,26134155,99.81,0,0,0.56,524.94,3442.63,26134156,99.88,0,0,0.18,524.91,3442.65,26134157,99.89,0,0,0.22,524.65,3442.91,26134158,99.91,0,0,0.18,524.63,3442.92,26134159,99.36,0.02,0.04,0.82,527.52,3439.91,26134160,99.66,0,0,0.96,535,3432.32,26134161,99.89,0,0,0.14,534.69,3432.62,26134162,99.9,0,0,0.16,534.66,3432.65,26134163,99.91,0,0,0.14,534.61,3432.69,26134164,99.86,0,0,0.16,534.57,3432.74,26134165,99.63,0,0,0.7,534.51,3432.83,26134166,99.85,0,0,0.16,534.38,3432.95,26134167,99.88,0,0,0.15,534.45,3432.88,26134168,99.84,0,0,0.16,534.42,3432.91,26134169,99.85,0,0,0.14,534.39,3432.93,26134170,99.65,0,0,0.7,534.79,3432.55,26134171,99.88,0,0,0.14,534.35,3432.98,26134172,99.88,0,0,0.16,534.32,3433,26134173,99.81,0,0,0.14,534.29,3433.03,26134174,99.88,0,0,0.16,534.37,3432.94,26134175,99.62,0,0,0.73,534.29,3433.04,26134176,99.84,0,0,0.18,533.43,3433.9,26134177,99.83,0,0,0.13,533.39,3433.93,26134178,99.85,0,0,0.17,533.37,3433.95,26134179,90.61,6.29,0.31,68.61,565.66,3395.71,26134180,86.64,28.8,0.19,436.03,561.34,3340.54,26134181,99.76,0,0,37.26,538.38,3304.44,26134182,99.88,0,0,0.2,538.5,3304.33,26134183,99.83,0,0.01,0.21,538.47,3304.36,26134184,99.83,0,0,0.17,538.41,3304.44,26134185,99.65,0,0,0.76,537.02,3305.78,26134186,99.84,0,0,0.19,533.86,3308.96,26134187,99.88,0,0,0.14,533.82,3308.99,26134188,99.86,0,0,0.15,533.9,3308.91,26134189,99.85,0,0,0.15,533.95,3308.86,26134190,99.5,0,0,0.61,534.81,3307.96,26134191,99.85,0,0,0.29,534.68,3308.08,26134192,98.67,0,0,0.16,534.66,3308.11,26134193,99.87,0,0,0.14,534.62,3308.14,26134194,99.84,0,0,0.15,534.59,3308.17,26134195,99.6,0,0,0.53,535.14,3307.61,26134196,99.84,0,0.01,0.36,535.26,3307.48,26134197,99.79,0,0,0.18,535.22,3307.53,26134198,99.86,0,0,0.14,535.18,3307.56,26134199,99.81,0,0,0.17,535.15,3307.58,26134200,99.67,0,0,0.33,534.67,3308.08,26134201,99.64,0,0,0.55,535.43,3307.31,26134202,99.79,0,0,0.14,535.27,3307.47,26134203,99.82,0,0,0.15,535.23,3307.5,26134204,99.8,0,0,0.16,535.2,3307.52,26134205,99.76,0.06,2.29,0.4,535.02,3307.7,26134206,99.68,0.04,1.39,0.75,535.33,3307.36,26134207,99.79,0.04,1.59,0.22,534.96,3307.71,26134208,99.84,0,0.01,0.21,534.94,3307.72,26134209,99.72,0.01,0.02,0.32,535.01,3307.64,26134210,99.69,0.04,1.51,0.34,534.99,3307.67,26134211,99.68,0,0,0.53,535.04,3307.61,26134212,99.78,0,0.01,0.21,534.41,3308.23,26134213,99.79,0,0,0.16,534.38,3308.27,26134214,99.78,0,0,0.14,534.48,3308.16,26134215,99.75,0,0,0.32,535.01,3307.65,26134216,99.7,0,0,0.55,535.09,3307.58,26134217,99.78,0,0,0.22,533.99,3308.68,26134218,99.81,0,0,0.15,533.95,3308.71,26134219,99.79,0,0,0.15,533.92,3308.74,26134220,99.77,0,0,0.3,534.87,3307.8,26134221,99.63,0,0,0.53,535.32,3307.35,26134222,99.82,0,0,0.21,535.01,3307.65,26134223,99.78,0,0,0.16,534.98,3307.68,26134224,99.8,0,0,0.16,534.95,3307.7,26134225,99.58,0,0,0.37,534.95,3307.72,26134226,99.69,0,0,0.55,535.21,3307.45,26134227,99.8,0,0,0.14,534.63,3308.02,26134228,99.81,0,0,0.15,534.67,3307.99,26134229,99.55,0.18,0.85,1,535.61,3307,26134230,99.03,0.9,24.49,1.18,536.39,3306.22,26134231,99.29,0.88,22.98,1.2,537.11,3305.5,26134232,99.33,1.72,59.58,0.81,538.11,3304.5,26134233,99.83,0,0,0.16,538.11,3304.49,26134234,99.8,0,0,0.15,538.08,3304.51,26134235,99.71,0,0,0.29,536.88,3305.73,26134236,99.83,0,0,0.14,536.81,3305.8,26134237,99.65,0,0,0.61,537.76,3304.84,26134238,99.77,0,0,0.18,537.49,3305.11,26134239,99.65,0,0,0.36,537.96,3304.62,26134240,99.8,0,0,0.33,537.88,3304.71,26134241,99.78,0,0,0.14,537.85,3304.74,26134242,99.69,0,0.01,0.58,538.58,3304,26134243,99.8,0,0.01,0.15,538.28,3304.3,26134244,99.75,0.07,2.99,0.22,538.25,3304.34,26134245,99.71,0,0,0.38,537.81,3304.79,26134246,99.79,0,0,0.14,537.89,3304.7,26134247,99.65,0,0,0.54,538.38,3304.21,26134248,99.79,0.04,1.97,0.27,538.02,3304.56,26134249,99.79,0.03,0.1,0.21,538.19,3304.35,26134250,99.71,0.01,0.32,0.36,538.26,3304.28,26134251,99.81,0,0,0.17,538.29,3304.25,26134252,99.66,0,0,0.49,539.22,3303.31,26134253,99.81,0,0,0.21,538.61,3303.91,26134254,99.83,0,0,0.15,538.58,3303.95,26134255,99.74,0,0,0.34,538.33,3304.21,26134256,81.22,0.02,0.04,6.44,858.71,2983.73,26134257,99.53,0.1,3.92,0.69,824.12,3018.29,26134258,99.83,0.05,1.96,0.22,585.09,3257.3,26134259,99.81,0.05,1.96,0.2,585.16,3257.22,26134260,99.69,0,0,0.34,584.88,3257.52,26134261,99.8,0,0,0.14,584.85,3257.54,26134262,99.68,0,0.01,0.42,585.28,3257.1,26134263,99.78,0.02,0.02,0.35,585.62,3256.75,26134264,99.74,0.01,0.02,0.2,585.55,3256.82,26134265,67.78,0.13,3.95,5.23,989.63,2852.69,26134266,72.26,0.06,2.03,8.29,1065.53,2776.76,26134267,99.61,0.02,0.66,0.69,1030.67,2811.66,26134268,99.54,0,0,0.17,591.42,3250.91,26134269,99.63,0.01,0.01,0.32,584.85,3257.45,26134270,99.64,0.07,1.31,0.55,584.83,3257.48,26134271,99.72,0.03,1.4,0.24,584.84,3257.43,26134272,99.83,0.02,0.82,0.23,584.82,3257.43,26134273,99.67,0,0,0.59,584.59,3257.57,26134274,99.82,0,0.03,0.19,584.37,3257.79,26134275,99.71,0.02,0.83,0.45,583.63,3258.54,26134276,99.76,0,0.01,0.14,583.6,3258.56,26134277,99.79,0.03,1.48,0.37,584.15,3258,26134278,99.65,0,0,0.57,585.68,3256.46,26134279,99.81,0,0,0.15,585.54,3256.59,26134280,99.7,0,0,0.31,585.53,3256.63,26134281,99.69,0,0,0.15,585.5,3256.65,26134282,99.79,0,0,0.15,585.47,3256.68,26134283,96.38,0.02,0.01,78.45,597.75,3246.19,26134284,99.76,0,0,0.27,588.65,3253.3,26134285,99.65,0,0,0.3,588.9,3253.07,26134286,99.8,0,0,0.16,588.88,3253.09,26134287,99.8,0,0,0.14,588.87,3253.09,26134288,99.68,0,0,0.59,588.13,3253.84,26134289,99.8,0,0.01,0.16,586.55,3255.44,26134290,99.69,0,0,0.33,586.76,3255.25,26134291,99.78,0,0,0.14,586.72,3255.29,26134292,99.78,0,0,0.15,586.68,3255.32,26134293,99.66,0,0,0.4,587.3,3254.7,26134294,99.8,0,0,0.29,587.06,3254.93,26134295,99.63,0,0,0.3,586.9,3255.08,26134296,98.16,0,0,0.16,586.77,3255.2,26134297,99.8,0,0,0.14,586.74,3255.23,26134298,99.63,0,0.01,0.58,587.28,3254.69,26134299,99.69,0,0,0.31,586.53,3255.43,26134300,99.66,0,0,0.3,586.13,3255.84,26134301,99.76,0,0,0.16,586.1,3255.87,26134302,99.83,0,0,0.16,585.32,3256.65,26134303,99.65,0,0,0.59,585.45,3256.51,26134304,99.82,0,0,0.14,585.27,3256.72,26134305,99.65,0,0,0.4,585.98,3256.02,26134306,99.8,0,0,0.17,585.99,3256.01,26134307,99.78,0.01,0.01,0.21,586.05,3255.94,26134308,99.82,0.01,0.01,0.18,586.05,3255.94,26134309,99.63,0,0,0.59,586.87,3255.11,26134310,99.7,0.01,0.01,0.36,586,3256,26134311,99.81,0,0,0.2,585.95,3256.04,26134312,99.78,0,0,0.16,586.09,3255.9,26134313,99.8,0,0,0.14,586.08,3255.9,26134314,99.67,0,0,0.59,586.87,3255.11,26134315,99.76,0,0,0.32,586.06,3255.94,26134316,99.79,0,0,0.14,586.03,3255.97,26134317,99.81,0,0,0.16,585.99,3256,26134318,99.74,0,0,0.15,585.96,3256.02,26134319,99.66,0,0,0.56,586.91,3255.07,26134320,99.64,0,0,0.32,585.73,3256.27,26134321,99.83,0,0,0.16,584.89,3257.1,26134322,99.8,0,0,0.14,585.08,3256.9,26134323,99.77,0,0,0.17,585.05,3256.93,26134324,99.68,0,0,0.54,585.83,3256.14,26134325,99.71,0,0,0.31,585.27,3256.73,26134326,99.81,0,0,0.16,585.22,3256.77,26134327,99.77,0.05,1.3,0.2,585.34,3256.66,26134328,99.81,0,0.02,0.18,585.31,3256.68,26134329,99.46,0,0.01,0.71,587.19,3254.78,26134330,99.71,0,0,0.32,586.07,3255.92,26134331,99.77,0,0.01,0.23,586,3255.97,26134332,99.76,0,0,0.14,586.08,3255.89,26134333,99.78,0,0,0.14,586.05,3255.92,26134334,99.58,0.04,1.24,0.42,586.78,3255.21,26134335,99.6,0.01,0.02,0.56,586.51,3255.49,26134336,99.79,0,0.01,0.2,586.42,3255.57,26134337,99.76,0,0,0.2,586.45,3255.54,26134338,99.79,0,0,0.14,586.56,3255.42,26134339,99.61,0,0,0.41,586.59,3255.39,26134340,99.77,0,0,0.46,584.58,3257.42,26134341,99.82,0,0,0.14,584.52,3257.47,26134342,99.8,0,0,0.14,584.49,3257.5,26134343,99.79,0,0,0.15,584.46,3257.53,26134344,99.63,0,0,0.46,584.9,3257.08,26134345,99.63,0.11,4.38,0.52,585.93,3256.04,26134346,99.75,0,0,0.18,585.9,3256.05,26134347,99.76,0,0,0.15,586.04,3255.91,26134348,99.79,0,0,0.14,586,3255.94,26134349,99.81,0,0,0.15,585.97,3255.97,26134350,99.42,0,0,0.74,586.63,3255.33,26134351,99.75,0,0,0.15,585.92,3256.03,26134352,99.79,0,0,0.14,585.89,3256.06,26134353,99.82,0.03,0.84,0.2,585.85,3256.09,26134354,99.8,0.07,2.8,0.21,585.98,3255.94,26134355,99.57,0,0,0.74,587.35,3254.59,26134356,99.72,0,0,0.21,586.91,3255.03,26134357,99.79,0,0,0.18,586.88,3255.06,26134358,99.82,0,0,0.18,586.3,3255.62,26134359,99.59,0,0,0.46,586.04,3255.86,26134360,99.58,0,0,0.93,586.6,3255.32,26134361,99.82,0.05,1.96,0.16,586.48,3255.44,26134362,99.82,0.01,0.03,0.19,586.42,3255.49,26134363,99.81,0,0,0.22,586.46,3255.44,26134364,99.8,0.05,1.55,0.26,586.43,3255.46,26134365,99.62,0,0.01,0.84,587.21,3254.7,26134366,99.87,0,0,0.15,586.87,3255.03,26134367,99.86,0.01,0.3,0.23,586.85,3255.04,26134368,99.87,0,0.02,0.15,586.81,3255.07,26134369,99.91,0,0,0.16,586.82,3255.06,26134370,99.62,0.01,0.19,0.7,586.8,3255.1,26134371,99.91,0.02,0.65,0.24,586.97,3254.92,26134372,99.92,0,0,0.16,586.93,3254.96,26134373,99.92,0,0,0.15,586.9,3254.98,26134374,99.47,0,0.02,0.15,586.86,3255.01,26134375,99.63,0,0,0.77,586.73,3255.16,26134376,99.89,0,0,0.15,586.84,3255.05,26134377,99.88,0,0,0.16,586.96,3254.93,26134378,99.89,0,0,0.14,586.01,3255.87,26134379,99.9,0,0,0.15,585.91,3255.97,26134380,99.67,0,0,0.54,586.53,3255.37,26134381,99.81,0,0,0.29,586.36,3255.53,26134382,99.9,0,0,0.16,586.33,3255.56,26134383,99.89,0.08,2.92,0.24,586.49,3255.38,26134384,99.88,0,0.01,0.18,586.59,3255.28,26134385,99.7,0,0,0.52,587.15,3254.73,26134386,99.87,0,0,0.35,586.54,3255.34,26134387,99.85,0.01,0.01,0.13,586.64,3255.24,26134388,99.89,0,0.01,0.18,586.62,3255.25,26134389,99.64,0,0.01,0.29,586.59,3255.26,26134390,99.73,0,0,0.32,585.61,3256.26,26134391,99.7,0,0,0.59,587.42,3254.44,26134392,99.89,0,0.03,0.18,586.9,3254.95,26134393,99.9,0,0.02,0.18,586.9,3254.95,26134394,99.91,0,0.03,0.23,586.83,3255.01,26134395,99.78,0.06,2.07,0.54,585.71,3256.13,26134396,99.75,0.02,0.52,0.64,586.64,3255.19,26134397,99.84,0.04,1.25,0.25,586.34,3255.47,26134398,99.92,0,0.01,0.17,585.9,3255.9,26134399,99.89,0,0,0.15,585.27,3256.53,26134400,99.81,0,0.01,0.32,586.6,3255.22,26134401,99.69,0,0.01,0.55,587.15,3254.67,26134402,99.92,0,0,0.21,586.86,3254.95,26134403,99.89,0.04,1.18,0.16,586.95,3254.85,26134404,99.9,0.02,0.62,0.24,587.07,3254.71,26134405,99.76,0.05,1.99,0.41,585.87,3255.92,26134406,99.75,0,0,0.59,586.69,3255.09,26134407,99.91,0,0,0.14,586.72,3255.05,26134408,99.73,0.2,3.63,0.32,586.19,3255.56,26134409,99.85,0.02,0.85,0.24,585.65,3256.08,26134410,99.79,0,0,0.3,586.39,3255.35,26134411,99.73,0,0,0.61,587.35,3254.39,26134412,99.9,0.01,0.48,0.25,587.17,3254.56,26134413,99.93,0,0,0.18,587.17,3254.56,26134414,99.81,0.07,2.75,0.18,587.14,3254.58,26134415,99.86,0.02,0.89,0.52,587.36,3254.36,26134416,99.78,0.02,0.53,0.62,588.02,3253.7,26134417,99.84,0,0.01,0.18,587.52,3254.19,26134418,99.91,0,0.01,0.16,587.66,3254.04,26134419,99.75,0,0,0.3,587.01,3254.67,26134420,99.84,0,0,0.3,586.62,3255.08,26134421,99.8,0,0,0.32,586.95,3254.74,26134422,99.85,0,0,0.38,586.8,3254.89,26134423,99.92,0,0,0.16,586.77,3254.92,26134424,99.9,0,0,0.18,586.88,3254.8,26134425,99.83,0,0,0.31,585.97,3255.73,26134426,99.74,0,0,0.42,586.29,3255.4,26134427,99.88,0,0,0.29,586.37,3255.32,26134428,99.93,0,0,0.14,586.34,3255.34,26134429,99.92,0,0,0.14,586.31,3255.37,26134430,99.79,0,0,0.31,586.8,3254.89,26134431,99.86,0.04,1.86,0.25,586.24,3255.44,26134432,99.7,0,0,0.55,586.62,3255.05,26134433,99.88,0.01,0.39,0.14,585.92,3255.75,26134434,99.83,0.01,0.45,0.21,585.79,3255.86,26134435,99.76,0,0,0.36,586.64,3255.03,26134436,99.9,0,0,0.13,586.61,3255.05,26134437,99.73,0,0,0.55,587.25,3254.41,26134438,99.9,0.02,0.4,0.26,586.57,3255.08,26134439,99.9,0,0,0.14,586.21,3255.43,26134440,99.69,0,0,0.31,586.14,3255.52,26134441,99.9,0,0,0.16,586.08,3255.57,26134442,99.78,0,0,0.57,586.39,3255.26,26134443,99.9,0,0,0.16,586.02,3255.63,26134444,99.88,0,0,0.15,585.99,3255.65,26134445,99.82,0,0,0.3,585.85,3255.81,26134446,99.88,0,0,0.15,585.89,3255.76,26134447,99.67,0.1,0.27,0.51,586.2,3255.45,26134448,99.92,0,0,0.2,585.88,3255.76,26134449,99.8,0.01,0.01,0.33,586.33,3255.29,26134450,99.83,0.06,0.88,0.41,586.07,3255.57,26134451,99.92,0,0,0.16,585.38,3256.25,26134452,99.72,0.04,0.07,0.62,585.63,3256,26134453,99.88,0.04,0.05,0.37,585.6,3256.03,26134454,99.89,0.08,0.11,0.31,585.56,3256.07,26134455,99.81,0.04,0.04,0.48,586.26,3255.38,26134456,99.83,0.85,0.89,1.14,586.04,3255.14,26134457,81.29,0.85,1.74,5.42,866.35,2973.91,26134458,99.85,0.04,1.67,0.73,1066.02,2774.19,26134459,99.62,0,0.01,0.19,616.54,3223.66,26134460,99.81,0,0,0.34,584.66,3255.56,26134461,99.88,0,0,0.14,584.63,3255.58,26134462,99.82,0,0,0.3,584.95,3255.26,26134463,99.89,0,0,0.43,583.34,3256.87,26134464,99.92,0,0,0.14,583.33,3256.87,26134465,99.74,0,0,0.32,586.16,3254.06,26134466,99.92,0,0,0.16,586.2,3254.01,26134467,99.78,0,0,0.3,586.49,3253.72,26134468,99.9,0,0,0.42,584.91,3255.3,26134469,99.88,0,0,0.17,584.88,3255.34,26134470,99.81,0,0,0.31,585.36,3254.88,26134471,99.9,0,0,0.14,585.34,3254.89,26134472,99.93,0,0.01,0.16,585.39,3254.83,26134473,99.77,0,0.01,0.62,586.62,3253.6,26134474,99.92,0,0,0.15,586.39,3253.83,26134475,99.8,0,0,0.31,586.22,3254.02,26134476,99.89,0,0,0.15,585.36,3254.87,26134477,99.9,0,0,0.14,585.33,3254.89,26134478,99.71,0,0,0.56,585.92,3254.3,26134479,99.74,0,0,0.34,585.45,3254.75,26134480,99.77,0.02,0.08,0.31,584.71,3255.5,26134481,99.87,0.02,0.03,0.16,584.69,3255.5,26134482,99.94,0,0.01,0.16,584.62,3255.57,26134483,99.74,0,0,0.58,585.63,3254.55,26134484,99.94,0.01,0.01,0.18,585.85,3254.33,26134485,99.88,0,0,0.32,586.06,3254.14,26134486,99.94,0,0,0.14,586.03,3254.16,26134487,99.9,0.01,0.01,0.21,586.14,3254.05,26134488,99.75,0.01,0.01,0.57,586.55,3253.63,26134489,99.93,0,0,0.19,586.27,3253.89,26134490,99.84,0,0,0.32,586.13,3254.04,26134491,99.89,0.01,0.01,0.16,586.08,3254.09,26134492,81.74,0.02,0.04,3.64,804.11,3036.04,26134493,80.7,0.01,0.03,4.33,1041.32,2798.87,26134494,80.92,0.08,2.3,4.78,789.24,3050.91,26134495,99.23,0.06,2.3,0.51,538.69,3301.46,26134496,99.9,0.01,0.01,0.16,538.78,3301.36,26134497,80.69,0.07,2.37,4.51,990.78,2849.29,26134498,99.57,0.01,0.01,0.41,683.35,3156.74,26134499,81.06,0.06,0.56,4.28,989.93,2850.18,26134500,99.57,0.02,0.03,0.34,1020.4,2819.78,26134501,81.34,0.03,0.55,4.59,927.51,2912.62,26134502,99.47,0.01,0.01,0.2,706.78,3133.36,26134503,99.88,0,0,0.22,587.01,3253.12,26134504,99.7,0,0,0.57,588.03,3252.1,26134505,99.77,0.05,1.83,0.52,586.79,3253.35,26134506,99.9,0.01,0.23,0.27,586.83,3253.3,26134507,99.88,0.01,0.01,0.2,586.8,3253.32,26134508,99.86,0.09,0.01,0.34,586.8,3253.32,26134509,81.03,0.05,0.91,4.7,784.82,3055.24,26134510,99.54,0,0,0.6,955.99,2884.13,26134511,99.88,0,0,0.17,583.84,3256.27,26134512,99.88,0,0,0.17,583.81,3256.3,26134513,99.87,0,0,0.19,583.87,3256.24,26134514,99.76,0,0,0.55,585.5,3254.6,26134515,99.8,0,0,0.32,585.38,3254.74,26134516,99.88,0,0,0.16,585.36,3254.76,26134517,99.87,0,0,0.19,585.56,3254.55,26134518,99.9,0,0,0.15,585.54,3254.57,26134519,99.76,0,0,0.54,586.16,3253.94,26134520,99.84,0,0,0.29,585.51,3254.62,26134521,99.9,0,0,0.14,585.49,3254.63,26134522,99.89,0,0,0.16,585.63,3254.48,26134523,99.87,0,0.01,0.18,585.58,3254.53,26134524,99.65,0,0,0.55,586,3254.1,26134525,99.82,0,0,0.35,586.02,3254.1,26134526,99.85,0,0,0.16,585.81,3254.31,26134527,99.85,0,0,0.23,565.28,3274.94,26134528,99.92,0,0,0.23,531.96,3308.65,26134529,99.77,0,0,0.58,532.28,3308.32,26134530,99.83,0,0,0.33,531.94,3308.68,26134531,99.89,0,0,0.13,531.91,3308.71,26134532,99.84,0,0,0.14,531.91,3308.74,26134533,99.89,0,0,0.16,531.88,3308.77,26134534,99.78,0,0,0.41,532.4,3308.25,26134535,99.83,0,0,0.43,531.15,3309.52,26134536,99.9,0,0,0.16,531.12,3309.54,26134537,99.9,0,0,0.14,531.1,3309.56,26134538,98.14,0,0,0.14,531.1,3309.55,26134539,99.67,0,0,0.68,531.96,3308.67,26134540,99.81,0,0,0.36,531.73,3308.9,26134541,99.9,0,0,0.14,531.71,3308.92,26134542,99.92,0,0,0.16,531.69,3308.94,26134543,99.9,0,0,0.14,531.67,3308.96,26134544,99.88,0,0,0.14,531.66,3309,26134545,99.6,0,0,0.68,530.87,3309.81,26134546,99.91,0,0,0.16,530.41,3310.26,26134547,99.93,0,0,0.14,530.4,3310.27,26134548,99.91,0,0,0.15,530.37,3310.29,26134549,99.91,0,0,0.13,530.35,3310.31,26134550,99.62,0,0,0.68,531.41,3309.26,26134551,99.91,0,0,0.16,531.25,3309.42,26134552,99.9,0,0,0.18,531.27,3309.4,26134553,99.9,0,0,0.14,531.25,3309.42,26134554,99.88,0,0,0.15,531.23,3309.43,26134555,99.68,0,0,0.68,532.29,3308.39,26134556,99.89,0,0,0.16,531.95,3308.72,26134557,99.89,0,0,0.14,531.92,3308.75,26134558,99.93,0,0,0.14,531.91,3308.75,26134559,99.92,0,0,0.15,531.88,3308.78,26134560,99.59,0,0,0.73,531.94,3308.74,26134561,99.9,0,0,0.14,531.38,3309.29,26134562,99.91,0,0,0.16,531.37,3309.3,26134563,99.9,0,0,0.15,531.51,3309.15,26134564,99.89,0,0,0.14,531.5,3309.16,26134565,99.72,0,0,0.76,532.66,3308.01,26134566,99.89,0,0,0.14,532.2,3308.46,26134567,99.87,0,0,0.14,532.19,3308.48,26134568,99.88,0,0,0.16,532.16,3308.49,26134569,99.81,0,0,0.35,532.38,3308.25,26134570,99.66,0,0,0.75,532.37,3308.28,26134571,99.89,0,0,0.18,532.36,3308.29,26134572,99.91,0,0,0.17,532.33,3308.31,26134573,99.9,0,0,0.14,532.36,3308.28,26134574,99.88,0,0,0.19,532.29,3308.34,26134575,99.68,0,0,0.77,532.58,3308.07,26134576,99.88,0,0,0.17,532.21,3308.43,26134577,99.86,0,0,0.18,531.95,3308.69,26134578,99.88,0,0,0.16,531.93,3308.71,26134579,99.88,0,0,0.14,531.9,3308.73,26134580,99.6,0,0,0.56,532.34,3308.31,26134581,99.91,0,0,0.29,531.88,3308.76,26134582,99.9,0,0,0.17,531.87,3308.77,26134583,99.88,0,0,0.14,531.84,3308.8,26134584,99.91,0,0,0.15,531.82,3308.81,26134585,99.79,0,0,0.31,531.69,3308.96,26134586,99.78,0,0,0.56,532.39,3308.25,26134587,99.92,0,0,0.14,531.96,3308.68,26134588,99.91,0,0,0.16,531.93,3308.7,26134589,99.92,0,0,0.15,531.91,3308.72,26134590,99.8,0,0,0.36,531.19,3309.45,26134591,99.64,0,0,0.54,531.51,3309.13,26134592,99.93,0,0,0.16,531.12,3309.51,26134593,99.91,0,0,0.14,531.1,3309.53,26134594,99.89,0,0,0.15,531.08,3309.54,26134595,99.85,0,0,0.36,531.42,3309.22,26134596,99.72,0,0,0.57,531.45,3309.19,26134597,99.92,0,0,0.14,530.96,3309.67,26134598,99.91,0,0,0.16,530.94,3309.69,26134599,99.07,0,0,0.29,532.37,3308.23,26134600,99.7,0,0,0.31,531.92,3308.7,26134601,99.77,0,0,0.57,532.85,3307.76,26134602,99.92,0,0,0.16,532.35,3308.26,26134603,99.88,0,0,0.14,532.34,3308.27,26134604,99.89,0,0,0.16,532.31,3308.31,26134605,99.83,0,0,0.3,532.28,3308.36,26134606,99.77,0,0,0.57,531.71,3308.92,26134607,99.89,0,0,0.15,531.48,3309.15,26134608,99.88,0,0,0.14,531.45,3309.17,26134609,99.9,0,0,0.15,531.44,3309.18,26134610,99.81,0,0,0.38,531.52,3309.11,26134611,99.72,0,0,0.42,531.76,3308.87,26134612,99.92,0,0,0.32,531.39,3309.23,26134613,99.92,0,0,0.16,531.37,3309.25,26134614,99.93,0,0,0.17,531.35,3309.26,26134615,99.83,0,0,0.34,531.12,3309.51,26134616,99.18,0,0,0.53,531.59,3309.03,26134617,99.93,0,0,0.21,531.56,3309.06,26134618,99.92,0,0.01,0.2,531.68,3308.93,26134619,99.89,0,0,0.17,531.68,3308.94,26134620,99.67,0,0,0.37,530.96,3309.67,26134621,99.76,0,0,0.35,531.65,3308.98,26134622,99.89,0,0,0.43,531.39,3309.23,26134623,99.92,0,0,0.16,531.37,3309.24,26134624,99.87,0,0,0.18,531.35,3309.26,26134625,99.88,0,0,0.34,531.37,3309.27,26134626,99.92,0,0.01,0.23,531.33,3309.3,26134627,99.78,0,0.01,0.57,532.19,3308.43,26134628,99.93,0,0,0.15,531.72,3308.89,26134629,99.77,0,0,0.29,531.7,3308.89,26134630,99.82,0,0,0.3,531.45,3309.15,26134631,99.88,0,0,0.17,531.42,3309.18,26134632,99.75,0,0,0.57,531.92,3308.67,26134633,99.9,0,0,0.15,531.62,3308.97,26134634,99.92,0,0,0.14,531.6,3308.99,26134635,99.79,0,0,0.3,530.64,3309.97,26134636,99.87,0,0,0.18,530.6,3310.01,26134637,99.73,0,0,0.62,531.7,3308.9,26134638,99.89,0,0,0.14,531.65,3308.94,26134639,99.92,0,0,0.14,531.7,3308.88,26134640,99.75,0,0,0.35,531.99,3308.62,26134641,99.87,0,0,0.18,531.92,3308.68,26134642,99.78,0,0,0.57,532.12,3308.47,26134643,99.94,0,0,0.16,531.64,3308.96,26134644,99.93,0,0,0.14,531.62,3308.97,26134645,99.82,0,0,0.36,530.67,3309.94,26134646,99.93,0,0,0.14,530.62,3309.98,26134647,95.13,0.3,0.01,79.22,541.26,3299.57,26134648,99.74,0,0,181.04,534.1,3305.82,26134649,99.89,0,0,0.18,534.07,3305.84,26134650,99.77,0,0,0.34,533.17,3306.76,26134651,99.92,0,0,0.14,533.25,3306.67,26134652,99.78,0,0,0.62,533.27,3306.65,26134653,99.91,0,0,0.14,531.77,3308.17,26134654,99.9,0,0,0.15,531.76,3308.19,26134655,99.83,0,0,0.32,531.77,3308.19,26134656,99.9,0,0,0.17,531.74,3308.22,26134657,99.8,0,0,0.55,532.1,3307.85,26134658,99.92,0,0,0.14,531.7,3308.27,26134659,99.86,0,0,0.29,531.42,3308.52,26134660,99.79,0,0,0.33,531.22,3308.74,26134661,99.91,0,0,0.16,531.22,3308.74,26134662,99.76,0,0,0.37,531.7,3308.25,26134663,99.89,0,0,0.39,531.79,3308.16,26134664,99.92,0,0,0.16,531.78,3308.19,26134665,99.81,0,0,0.34,532,3307.99,26134666,99.91,0,0,0.14,531.94,3308.05,26134667,99.9,0,0,0.18,531.97,3308.04,26134668,99.76,0,0,0.56,532.33,3307.69,26134669,99.91,0,0,0.18,531.7,3308.31,26134670,99.84,0,0,0.34,531.67,3308.35,26134671,99.9,0,0,0.15,531.79,3308.23,26134672,99.9,0,0,0.18,531.73,3308.28,26134673,99.78,0,0,0.57,532.07,3307.94,26134674,99.92,0,0,0.18,531.68,3308.32,26134675,99.83,0,0,0.37,531.48,3308.54,26134676,99.88,0,0,0.13,531.42,3308.6,26134677,99.92,0,0,0.17,531.41,3308.6,26134678,99.78,0,0,0.57,531.91,3308.1,26134679,99.93,0,0,0.18,531.72,3308.28,26134680,99.69,0,0,0.36,530.85,3309.18,26134681,99.91,0,0,0.14,530.8,3309.22,26134682,99.91,0,0,0.14,530.77,3309.24,26134683,99.76,0,0,0.51,531.96,3308.05,26134684,99.9,0,0,0.21,531.72,3308.29,26134685,99.85,0,0,0.31,531.01,3309.02,26134686,99.88,0,0,0.14,530.96,3309.06,26134687,99.92,0,0,0.16,530.95,3309.07,26134688,99.77,0,0,0.4,531.61,3308.41,26134689,99.73,0,0,0.43,531.65,3308.34,26134690,99.87,0,0,0.34,531.88,3308.14,26134691,99.93,0,0,0.16,531.99,3308.03,26134692,99.9,0,0,0.13,532.06,3307.95,26134693,99.75,0,0,0.57,532.39,3307.61,26134694,99.93,0,0,0.14,532.02,3307.98,26134695,99.86,0,0,0.33,532.02,3308,26134696,99.92,0,0,0.14,532,3308.01,26134697,99.88,0,0,0.18,531.74,3308.27,26134698,99.78,0,0,0.45,532.07,3307.94,26134699,99.93,0,0,0.32,531.69,3308.31,26134700,99.82,0,0,0.33,531.93,3308.09,26134701,99.93,0,0,0.14,531.9,3308.11,26134702,99.9,0,0,0.16,531.89,3308.11,26134703,99.91,0,0,0.15,532.01,3307.99,26134704,99.74,0,0,0.59,532.54,3307.46,26134705,99.82,0,0,0.34,532.04,3307.98,26134706,99.92,0,0,0.15,532.02,3307.99,26134707,99.93,0,0,0.17,531.99,3308.01,26134708,99.94,0,0,0.14,531.99,3308.01,26134709,99.74,0,0,0.58,532.31,3307.69,26134710,99.78,0,0,0.38,530.76,3309.25,26134711,99.93,0,0,0.16,530.72,3309.29,26134712,99.94,0,0,0.16,530.7,3309.31,26134713,99.9,0,0,0.14,530.67,3309.34,26134714,99.79,0,0,0.54,531.81,3308.19,26134715,99.81,0,0,0.34,530.79,3309.22,26134716,99.93,0,0,0.14,531.08,3308.93,26134717,99.93,0,0,0.16,531.05,3308.95,26134718,99.93,0,0,0.16,531.04,3308.96,26134719,99.61,0,0,0.7,532.8,3307.18,26134720,99.8,0,0,0.39,531.97,3308.02,26134721,99.91,0,0,0.2,531.95,3308.05,26134722,99.88,0,0,0.15,531.93,3308.06,26134723,99.93,0,0,0.15,531.9,3308.08,26134724,99.77,0,0,0.54,532.31,3307.67,26134725,99.86,0,0,0.32,531.98,3308.02,26134726,99.9,0,0,0.19,532.05,3307.94,26134727,99.92,0,0,0.18,532.03,3307.96,26134728,99.91,0,0,0.18,532.01,3307.98,26134729,99.78,0,0,0.59,532.27,3307.72,26134730,99.88,0,0,0.31,532.24,3307.77,26134731,99.93,0,0,0.14,532.22,3307.78,26134732,99.9,0,0,0.16,532.2,3307.8,26134733,99.91,0,0,0.14,532.18,3307.81,26134734,99.74,0,0,0.5,532.44,3307.55,26134735,99.73,0,0,0.4,531.42,3308.58,26134736,99.87,0,0,0.14,531.42,3308.57,26134737,99.87,0,0,0.16,531.55,3308.43,26134738,99.9,0,0,0.14,531.52,3308.46,26134739,99.78,0,0,0.41,531.93,3308.04,26134740,99.66,0,0,0.43,531.53,3308.47,26134741,99.8,0,0,0.17,531.49,3308.5,26134742,99.93,0,0,0.14,531.47,3308.52,26134743,99.91,0,0,0.16,531.46,3308.53,26134744,99.86,0,0,0.13,531.43,3308.55,26134745,99.59,0,0,0.72,531.91,3308.09,26134746,99.88,0,0,0.16,531.41,3308.58,26134747,99.89,0,0,0.14,531.39,3308.6,26134748,99.87,0,0,0.15,531.42,3308.56,26134749,99.76,0,0,0.3,532.06,3307.89,26134750,99.73,0,0,0.73,532.86,3307.11,26134751,99.94,0,0,0.16,532.49,3307.48,26134752,99.88,0,0,0.16,532.47,3307.49,26134753,99.9,0,0,0.16,532.45,3307.51,26134754,99.88,0,0,0.15,532.24,3307.72,26134755,99.62,0,0,0.74,532.39,3307.6,26134756,99.91,0,0,0.16,532.17,3307.81,26134757,99.85,0,0,0.22,532.15,3307.83,26134758,99.88,0,0,0.17,532.13,3307.84,26134759,99.86,0,0,0.16,532.12,3307.86,26134760,99.57,0,0,0.76,531.79,3308.19,26134761,99.87,0,0,0.19,531.47,3308.51,26134762,99.86,0,0,0.19,531.52,3308.46,26134763,99.85,0,0,0.19,531.5,3308.47,26134764,99.81,0,0,0.18,531.48,3308.49,26134765,99.65,0,0,0.84,532.08,3307.9,26134766,99.83,0,0,0.19,531.46,3308.54,26134767,99.83,0,0,0.18,531.44,3308.55,26134768,99.83,0,0,0.16,531.42,3308.57,26134769,99.82,0,0,0.16,531.4,3308.58,26134770,99.59,0,0,0.61,531.99,3308.01,26134771,99.85,0,0,0.3,531.37,3308.63,26134772,99.84,0,0,0.15,531.43,3308.57,26134773,99.82,0,0,0.16,531.55,3308.44,26134774,99.82,0,0,0.15,531.54,3308.45,26134775,99.61,0,0,0.61,531.92,3308.09,26134776,99.83,0,0,0.29,531.76,3308.24,26134777,99.82,0,0,0.14,531.74,3308.26,26134778,99.84,0,0,0.19,531.71,3308.27,26134779,99.69,0,0,0.3,531.47,3308.5,26134780,98.93,0,0,0.64,531.88,3308.1,26134781,99.83,0,0,0.32,531.67,3308.3,26134782,99.8,0,0,0.16,531.66,3308.31,26134783,99.79,0,0,0.14,531.63,3308.34,26134784,99.85,0,0,0.16,531.71,3308.28,26134785,99.73,0,0,0.38,530.59,3309.42,26134786,99.68,0,0,0.57,532.2,3307.81,26134787,99.77,0,0,0.15,531.52,3308.49,26134788,99.83,0,0,0.15,531.5,3308.51,26134789,99.85,0,0,0.15,531.48,3308.52,26134790,99.72,0,0,0.36,531.75,3308.26,26134791,99.68,0,0,0.56,532.06,3307.95,26134792,99.84,0,0,0.16,531.68,3308.32,26134793,99.81,0,0,0.18,531.67,3308.34,26134794,99.83,0,0,0.15,531.65,3308.35,26134795,99.67,0,0,0.34,531.68,3308.33,26134796,99.7,0,0,0.41,531.85,3308.16,26134797,99.83,0,0,0.3,531.47,3308.54,26134798,99.81,0,0,0.16,531.54,3308.46,26134799,99.83,0,0,0.16,531.51,3308.49,26134800,99.71,0,0,0.36,531.76,3308.25,26134801,99.68,0,0,0.58,532.09,3307.92,26134802,99.84,0,0,0.18,531.72,3308.29,26134803,99.85,0,0,0.17,531.7,3308.3,26134804,99.84,0,0,0.14,531.68,3308.32,26134805,99.69,0,0,0.38,531.44,3308.57,26134806,99.71,0,0,0.58,531.87,3308.14,26134807,99.84,0,0,0.16,531.66,3308.35,26134808,99.83,0,0,0.14,531.79,3308.21,26134809,99.64,0,0,0.3,531.77,3308.21,26134810,99.75,0,0,0.33,531.28,3308.71,26134811,99.66,0,0,0.45,531.87,3308.12,26134812,99.83,0,0,0.29,531.98,3308.01,26134813,99.81,0,0,0.16,531.94,3308.04,26134814,99.83,0,0,0.15,531.92,3308.06,26134815,99.7,0,0,0.36,530.96,3309.04,26134816,99.66,0,0,0.4,531.33,3308.67,26134817,99.83,0,0,0.33,531.64,3308.35,26134818,99.83,0,0,0.14,531.61,3308.37,26134819,99.82,0,0,0.16,531.7,3308.28,26134820,99.7,0,0,0.34,530.84,3309.16,26134821,99.68,0,0,0.41,531.21,3308.78,26134822,99.83,0,0,0.3,531.99,3307.99,26134823,99.84,0,0,0.14,531.97,3308.01,26134824,99.81,0,0,0.16,531.94,3308.03,26134825,99.73,0,0,0.37,531.94,3308.04,26134826,99.85,0,0,0.14,531.92,3308.06,26134827,99.67,0,0,0.55,532.39,3307.59,26134828,99.82,0,0,0.15,531.62,3308.35,26134829,99.85,0,0,0.14,531.61,3308.36,26134830,99.81,0,0.02,0.36,531.98,3308,26134831,99.82,0,0,0.14,531.99,3307.99,26134832,99.66,0,0,0.54,532.33,3307.65,26134833,99.83,0.01,0.02,0.16,531.71,3308.27,26134834,99.84,0,0,0.2,531.74,3308.23,26134835,99.75,0,0,0.33,531.98,3308,26134836,99.83,0,0,0.16,531.97,3308.01,26134837,99.68,0,0,0.5,532.18,3307.8,26134838,99.83,0,0,0.2,531.68,3308.29,26134839,99.65,0,0,0.29,531.9,3308.05,26134840,99.71,0,0,0.43,531.73,3308.23,26134841,95.04,0,0,0.14,531.63,3308.32,26134842,99.62,0,0,0.56,532.11,3307.84,26134843,99.82,0,0,0.16,531.82,3308.12,26134844,99.81,0,0,0.14,531.92,3308.03,26134845,99.67,0,0,0.35,531.54,3308.43,26134846,99.79,0,0,0.14,531.51,3308.46,26134847,99.6,0,0,0.5,532.42,3307.55,26134848,99.8,0,0,0.28,531.97,3308,26134849,99.78,0,0,0.15,531.95,3308.01,26134850,99.76,0,0,0.35,531.96,3308.01,26134851,99.84,0,0,0.15,531.93,3308.04,26134852,99.71,0,0,0.55,532.38,3307.59,26134853,99.79,0,0,0.14,531.64,3308.32,26134854,99.81,0,0,0.14,531.63,3308.34,26134855,99.75,0,0,0.43,532.16,3307.83,26134856,99.81,0,0,0.2,532.12,3307.88,26134857,98.19,0,0,0.37,532.55,3307.44,26134858,99.8,0,0,0.4,532.01,3307.97,26134859,99.83,0,0,0.23,531.98,3308,26134860,99.15,0,0,10.73,531.43,3308.55,26134861,99.82,0,0,0.16,531.44,3308.59,26134862,99.67,0,0,0.3,531.79,3308.24,26134863,99.81,0,0,0.41,531.89,3308.13,26134864,99.83,0,0,0.14,531.87,3308.14,26134865,99.75,0,0,0.32,532.12,3307.94,26134866,99.77,0,0,0.18,532.1,3307.97,26134867,99.8,0,0,0.14,532.08,3307.98,26134868,99.63,0,0,0.57,532.25,3307.81,26134869,99.67,0,0,0.29,531.99,3308.05,26134870,99.73,0,0,0.31,530.76,3309.29,26134871,99.84,0,0,0.14,530.73,3309.32,26134872,99.81,0,0,0.18,530.71,3309.33,26134873,99.7,0,0,0.58,532.42,3307.63,26134874,99.82,0,0,0.16,532.15,3307.89,26134875,99.76,0,0,0.32,531.91,3308.15,26134876,99.82,0,0.01,0.18,531.86,3308.19,26134877,99.83,0,0,0.2,531.83,3308.21,26134878,99.66,0,0,0.6,532.45,3307.59,26134879,99.8,0,0,0.15,532.15,3307.89,26134880,99.71,0,0,0.32,532.24,3307.81,26134881,99.81,0,0,0.15,532.21,3307.84,26134882,99.78,0,0,0.16,532.19,3307.85,26134883,99.63,0,0,0.4,532.53,3307.51,26134884,99.81,0,0,0.29,532.15,3307.87,26134885,99.69,0,0,0.33,532.14,3307.9,26134886,99.81,0,0,0.16,532.13,3307.91,26134887,99.76,0,0,0.14,532.1,3307.93,26134888,99.69,0,0,0.61,532.43,3307.6,26134889,99.81,0,0,0.16,532.06,3307.96,26134890,99.73,0,0,0.3,532.08,3307.95,26134891,99.81,0,0,0.14,532.22,3307.82,26134892,99.8,0,0,0.15,532.19,3307.84,26134893,99.62,0,0,0.58,532.48,3307.55,26134894,99.79,0,0,0.14,531.9,3308.12,26134895,99.73,0,0,0.3,531.47,3308.57,26134896,99.82,0,0,0.14,531.39,3308.64,26134897,99.85,0,0,0.16,531.37,3308.66,26134898,99.71,0,0,0.15,531.66,3308.36,26134899,99.63,0,0.01,0.75,532.63,3307.39,26134900,99.65,0,0,0.33,530.55,3309.48,26134901,99.77,0,0,0.14,530.47,3309.55,26134902,99.8,0,0,0.16,530.45,3309.57,26134903,99.83,0,0,0.14,530.42,3309.59,26134904,99.68,0,0,0.56,532.03,3307.98,26134905,99.75,0,0,0.31,531.65,3308.38,26134906,99.83,0,0,0.14,531.63,3308.39,26134907,99.82,0,0,0.17,531.59,3308.42,26134908,99.79,0,0,0.14,531.58,3308.43,26134909,99.68,0,0,0.56,532.39,3307.61,26134910,99.71,0,0,0.32,532.06,3307.96,26134911,99.82,0,0,0.16,532.03,3308,26134912,99.79,0,0,0.14,532.11,3307.9,26134913,99.83,0,0,0.15,532.17,3307.84,26134914,99.7,0,0,0.55,532.68,3307.33,26134915,99.75,0,0,0.34,531.55,3308.49,26134916,99.79,0,0,0.14,531.39,3308.64,26134917,99.75,0,0,0.15,531.37,3308.66,26134918,99.85,0,0,0.14,531.35,3308.67,26134919,99.76,0,0,0.54,531.93,3308.09,26134920,99.73,0,0,0.42,531.58,3308.45,26134921,99.82,0,0,0.16,531.56,3308.47,26134922,99.88,0,0,0.15,531.53,3308.49,26134923,99.87,0,0,0.16,531.57,3308.45,26134924,99.68,0,0,0.58,531.97,3308.05,26134925,99.78,0,0,0.31,530.51,3309.53,26134926,99.89,0,0.01,0.2,530.45,3309.58,26134927,99.88,0,0,0.18,530.42,3309.61,26134928,99.89,0,0,0.2,530.39,3309.63,26134929,99.6,0,0,0.6,532.27,3307.72,26134930,99.83,0,0,0.4,531.58,3308.44,26134931,99.91,0,0,0.15,531.55,3308.46,26134932,99.89,0,0,0.14,531.59,3308.42,26134933,99.82,0,0,0.16,531.7,3308.3,26134934,99.88,0,0,0.14,531.69,3308.31,26134935,99.5,0,0,0.64,532.02,3308,26134936,99.95,0,0,0.16,531.67,3308.34,26134937,99.9,0,0,0.22,531.65,3308.36,26134938,99.94,0,0,0.14,531.63,3308.37,26134939,99.89,0,0,0.16,531.61,3308.39,26134940,99.67,0,0,0.64,531.98,3308.05,26134941,99.93,0,0,0.14,531.59,3308.43,26134942,99.93,0,0,0.16,531.57,3308.44,26134943,99.9,0,0,0.14,531.55,3308.46,26134944,99.9,0,0,0.14,531.58,3308.43,26134945,99.62,0,0,0.72,531.66,3308.36,26134946,99.9,0,0,0.16,530.97,3309.05,26134947,99.91,0,0,0.14,530.94,3309.07,26134948,99.89,0,0,0.15,530.92,3309.08,26134949,99.89,0.01,0.03,0.16,530.84,3309.16,26134950,99.57,0,0,0.69,532.12,3307.9,26134951,99.9,0,0,0.15,531.79,3308.23,26134952,99.91,0,0,0.16,531.87,3308.14,26134953,99.88,0,0,0.16,531.92,3308.08,26134954,99.89,0,0,0.15,531.91,3308.09,26134955,99.73,0,0,0.67,532.4,3307.62,26134956,99.9,0,0,0.14,532.13,3307.88,26134957,99.92,0,0,0.14,532.1,3307.9,26134958,99.91,0,0,0.15,532.09,3307.91,26134959,99.68,0,0,0.3,531.12,3308.86,26134960,99.63,0,0,0.64,532.02,3307.97,26134961,99.91,0,0,0.22,531.56,3308.43,26134962,99.93,0,0,0.14,531.53,3308.46,26134963,99.91,0,0,0.15,531.68,3308.3,26134964,99.9,0,0,0.14,531.67,3308.31,26134965,99.68,0,0,0.68,532.53,3307.46,26134966,99.88,0,0,0.14,531.89,3308.09,26134967,99.87,0,0,0.14,531.87,3308.11,26134968,99.9,0,0,0.16,531.84,3308.15,26134969,99.93,0,0,0.16,531.82,3308.17,26134970,99.7,0,0,0.68,532.24,3307.77,26134971,99.89,0,0,0.14,532.05,3307.96,26134972,99.92,0,0,0.14,532.03,3307.97,26134973,99.94,0,0,0.16,532.11,3307.89,26134974,99.91,0,0,0.14,532.18,3307.82,26134975,99.82,0,0,0.27,531.71,3308.3,26134976,99.71,0,0,0.56,532.25,3307.75,26134977,99.92,0,0,0.14,531.89,3308.11,26134978,98.16,0,0,0.14,531.86,3308.14,26134979,99.9,0,0,0.15,531.85,3308.14,26134980,99.85,0,0,0.27,532.1,3307.91,26134981,99.7,0,0,0.54,532.2,3307.81,26134982,99.93,0,0,0.14,531.81,3308.19,26134983,99.92,0,0,0.17,531.79,3308.2,26134984,99.91,0,0,0.14,531.77,3308.22,26134985,99.82,0,0,0.27,532.06,3307.95,26134986,99.76,0,0,0.55,532.91,3307.1,26134987,99.92,0,0,0.13,532.16,3307.85,26134988,99.88,0,0,0.16,532.13,3307.88,26134989,99.76,0,0,0.31,532.11,3307.89,26134990,99.8,0,0,0.26,531.87,3308.15,26134991,99.73,0,0,0.6,532.35,3307.66,26134992,99.88,0,0,0.18,531.81,3308.2,26134993,99.9,0,0,0.18,531.86,3308.14,26134994,99.9,0,0,0.18,531.91,3308.12,26134995,99.81,0,0,0.28,530.94,3309.11,26134996,99.78,0,0,0.57,531.68,3308.36,26134997,99.9,0,0,0.18,531.85,3308.19,26134998,99.94,0,0,0.16,531.85,3308.19,26134999,99.91,0,0,0.18,531.82,3308.21,26135000,99.67,0,0,0.25,531.38,3308.67,26135001,99.74,0,0,0.52,531.68,3308.36,26135002,99.9,0,0,0.19,531.29,3308.74,26135003,99.9,0,0,0.15,531.38,3308.66,26135004,99.83,0,0,0.15,531.44,3308.59,26135005,99.76,0,0,0.26,532.16,3307.89,26135006,99.75,0,0,0.41,532.82,3307.22,26135007,99.93,0,0,0.31,531.9,3308.14,26135008,99.86,0,0,0.14,531.88,3308.16,26135009,99.89,0,0,0.16,531.85,3308.17,26135010,99.82,0,0,0.27,532.1,3307.95,26135011,96.82,0.31,0.01,64.56,537.51,3302.96,26135012,97.86,0,0,195.34,540.74,3299.67,26135013,99.94,0,0,0.15,534.82,3305.22,26135014,99.9,0,0,0.14,534.79,3305.24,26135015,99.84,0,0,0.27,533.97,3306.09,26135016,99.85,0,0,0.18,533.98,3306.07,26135017,99.74,0,0,0.6,532.53,3307.56,26135018,99.92,0,0,0.16,532.02,3308.07,26135019,94.28,34.66,0.06,112.48,541.24,3276.5,26135020,99.83,0,0,0.4,534.52,3271.38,26135021,99.89,0,0,0.2,534.31,3271.59,26135022,99.71,0,0,0.57,534.69,3271.23,26135023,99.2,0,0,0.14,534.27,3271.65,26135024,99.87,0,0,0.2,532.67,3273.28,26135025,99.77,0,0,0.28,532.32,3273.66,26135026,99.91,0,0,0.14,532.41,3273.56,26135027,99.65,0,0,0.56,532.63,3273.35,26135028,99.92,0,0,0.15,532.2,3273.78,26135029,99.89,0,0,0.15,532.15,3273.82,26135030,99.78,0,0,0.28,531.43,3274.56,26135031,99.88,0,0.01,0.19,531.48,3274.51,26135032,99.75,0,0,0.56,532.35,3273.64,26135033,99.85,0,0,0.14,531.97,3274.02,26135034,99.88,0,0,0.14,531.94,3274.04,26135035,99.75,0,0,0.27,531,3275,26135036,99.92,0,0,0.14,530.94,3275.06,26135037,99.72,0,0,0.52,531.99,3274,26135038,99.26,0,0,0.2,532.37,3273.61,26135039,99.9,0,0,0.15,532.35,3273.63,26135040,99.77,0,0,0.28,532.17,3273.83,26135041,99.91,0,0,0.14,532.19,3273.81,26135042,99.75,0,0,0.42,532.65,3273.34,26135043,99.89,0,0,0.3,532.47,3273.52,26135044,99.88,0,0,0.15,532.46,3273.53,26135045,99.85,0,0,0.27,532.69,3273.31,26135046,99.91,0,0,0.16,532.68,3273.32,26135047,99.72,0,0,0.52,532.9,3273.09,26135048,99.91,0,0,0.19,532.15,3273.84,26135049,99.67,0,0,0.3,531.88,3274.09,26135050,99.82,0,0,0.3,531.15,3274.83,26135051,99.93,0,0,0.13,531.12,3274.86,26135052,99.77,0,0,0.38,531.58,3274.39,26135053,99.9,0,0,0.36,532.49,3273.47,26135054,99.87,0,0,0.14,532.47,3273.49,26135055,99.75,0,0,0.31,531.5,3274.47,26135056,99.89,0,0,0.16,531.47,3274.51,26135057,99.87,0,0,0.2,531.21,3274.76,26135058,99.65,0,0,0.56,532.53,3273.43,26135059,99.92,0,0,0.17,531.89,3274.07,26135060,99.78,0,0,0.27,532.13,3273.85,26135061,99.92,0,0,0.16,532.11,3273.86,26135062,99.93,0,0,0.14,532.09,3273.88,26135063,99.75,0,0,0.58,533.01,3272.95,26135064,99.93,0,0,0.19,532.73,3273.23,26135065,99.85,0,0,0.33,532.3,3273.68,26135066,99.89,0,0,0.18,531.48,3274.49,26135067,99.9,0,0,0.18,531.46,3274.51,26135068,99.76,0,0,0.57,531.93,3274.03,26135069,99.93,0,0,0.14,531.67,3274.29,26135070,99.71,0,0,0.26,530.48,3275.49,26135071,99.88,0,0,0.14,530.42,3275.55,26135072,99.91,0,0,0.16,530.4,3275.57,26135073,99.74,0,0,0.58,531.54,3274.42,26135074,99.83,0,0,0.18,531.84,3274.12,26135075,99.76,0,0,0.26,531.59,3274.38,26135076,99.91,0,0,0.14,531.71,3274.26,26135077,99.9,0,0,0.16,531.73,3274.24,26135078,99.72,0,0,0.61,532.17,3273.79,26135079,99.78,0,0,0.32,531.95,3273.99,26135080,99.81,0,0,0.35,531.95,3274.01,26135081,99.88,0,0,0.16,531.93,3274.03,26135082,99.92,0,0,0.16,531.91,3274.04,26135083,99.72,0,0,0.56,532.42,3273.53,26135084,99.91,0,0,0.14,531.87,3274.07,26135085,99.87,0,0,0.3,531.86,3274.1,26135086,99.92,0,0,0.15,531.84,3274.11,26135087,99.87,0,0,0.16,531.81,3274.14,26135088,99.77,0,0,0.32,532.26,3273.68,26135089,99.93,0,0,0.46,531.96,3273.98,26135090,99.83,0,0,0.27,530.77,3275.19,26135091,99.89,0,0,0.15,530.72,3275.24,26135092,99.9,0,0,0.14,530.7,3275.25,26135093,99.77,0,0,0.34,531.07,3274.88,26135094,99.91,0,0,0.38,531.89,3274.05,26135095,99.83,0,0,0.28,530.92,3275.04,26135096,99.91,0,0,0.16,530.89,3275.07,26135097,99.91,0,0,0.14,530.86,3275.09,26135098,99.91,0,0,0.15,530.84,3275.11,26135099,99.72,0,0,0.55,531.47,3274.47,26135100,99.7,0,0,0.29,532.24,3273.72,26135101,99.9,0,0,0.14,532.22,3273.74,26135102,99.91,0,0,0.16,532.18,3273.77,26135103,99.91,0,0,0.14,532.17,3273.77,26135104,99.79,0,0,0.56,532.67,3273.26,26135105,99.79,0,0,0.28,532.15,3273.81,26135106,99.88,0,0,0.16,532.12,3273.83,26135107,99.89,0,0,0.14,532.11,3273.83,26135108,99.9,0,0,0.14,532.08,3273.86,26135109,99.61,0,0,0.71,532.33,3273.59,26135110,99.81,0,0,0.29,532.07,3273.86,26135111,99.93,0,0,0.14,532.16,3273.77,26135112,99.93,0,0,0.14,532.24,3273.69,26135113,99.9,0,0,0.16,532.23,3273.69,26135114,99.73,0,0,0.43,532.55,3273.41,26135115,99.83,0,0,0.4,531.98,3274.01,26135116,99.9,0,0,0.14,531.94,3274.04,26135117,99.9,0,0,0.2,531.93,3274.05,26135118,99.92,0,0,0.14,531.9,3274.07,26135119,99.76,0,0,0.57,532.32,3273.65,26135120,99.77,0,0,0.29,532.13,3273.86,26135121,99.89,0,0,0.13,532.11,3273.87,26135122,99.88,0,0,0.15,532.09,3273.89,26135123,99.89,0.01,0.02,0.16,532.18,3273.8,26135124,99.78,0,0,0.46,532.56,3273.41,26135125,99.81,0,0,0.41,531.25,3274.74,26135126,99.93,0,0,0.15,531.21,3274.78,26135127,99.88,0,0,0.16,531.19,3274.79,26135128,99.87,0,0,0.15,531.17,3274.81,26135129,99.87,0,0,0.18,531.33,3274.64,26135130,99.69,0,0,0.67,532.47,3273.52,26135131,99.92,0,0,0.17,532.12,3273.87,26135132,99.87,0,0,0.14,532.09,3273.89,26135133,99.9,0,0,0.19,532.07,3273.91,26135134,99.9,0,0,0.16,532.16,3273.82,26135135,99.6,0,0,0.68,532.1,3273.89,26135136,99.88,0,0,0.14,531.73,3274.26,26135137,99.89,0,0,0.17,531.7,3274.27,26135138,99.88,0,0,0.14,531.68,3274.3,26135139,99.68,0,0,0.41,531.65,3274.32,26135140,99.55,0,0,0.7,532.31,3273.68,26135141,99.9,0,0,0.16,531.61,3274.37,26135142,99.91,0,0,0.17,531.59,3274.38,26135143,98.94,0,0,0.14,531.57,3274.4,26135144,99.89,0,0,0.14,531.65,3274.33,26135145,99.67,0,0,0.71,532.44,3273.56,26135146,99.87,0,0,0.29,531.94,3274.05,26135147,99.91,0,0,0.25,531.7,3274.28,26135148,99.92,0,0,0.16,531.68,3274.3,26135149,99.9,0,0,0.14,531.67,3274.31,26135150,99.67,0,0,0.61,532.96,3273.03,26135151,99.89,0,0,0.2,532.14,3273.85,26135152,99.93,0,0,0.16,532.11,3273.88,26135153,99.93,0,0,0.15,532.1,3273.88,26135154,99.92,0,0,0.16,532.07,3273.91,26135155,99.75,0,0,0.59,532.67,3273.32,26135156,99.93,0,0,0.29,532.34,3273.65,26135157,99.91,0,0,0.17,532.47,3273.52,26135158,99.91,0,0,0.14,532.45,3273.54,26135159,99.9,0,0,0.14,532.43,3273.55,26135160,98.25,0,0,0.73,532.33,3273.66,26135161,99.87,0,0,0.18,531.41,3274.58,26135162,99.88,0,0,0.19,531.39,3274.6,26135163,99.91,0,0,0.16,531.37,3274.61,26135164,99.91,0,0,0.14,531.35,3274.63,26135165,99.66,0,0,0.71,532.59,3273.4,26135166,99.91,0,0,0.19,531.82,3274.17,26135167,99.9,0,0,0.15,531.84,3274.15,26135168,99.9,0,0,0.15,531.97,3274.01,26135169,99.75,0,0,0.32,532.21,3273.74,26135170,99.8,0,0,0.32,532.44,3273.54,26135171,99.76,0,0,0.6,533.3,3272.67,26135172,99.93,0,0,0.18,532.64,3273.32,26135173,99.93,0,0,0.18,532.63,3273.34,26135174,99.93,0,0,0.18,532.61,3273.36,26135175,99.81,0,0,0.3,532.16,3273.83,26135176,99.77,0,0,0.57,532.45,3273.54,26135177,99.86,0,0,0.18,532.32,3273.67,26135178,99.88,0,0,0.16,532.3,3273.69,26135179,99.9,0,0,0.15,532.34,3273.64,26135180,99.78,0,0,0.27,532.5,3273.49,26135181,99.75,0,0,0.59,532.36,3273.63,26135182,99.89,0,0,0.16,531.71,3274.27,26135183,99.88,0,0,0.15,531.68,3274.3,26135184,99.87,0,0,0.16,531.67,3274.3,26135185,99.72,0,0,0.3,531.9,3274.09,26135186,99.75,0,0,0.59,532.54,3273.44,26135187,99.89,0,0,0.12,532.35,3273.63,26135188,99.83,0,0,0.16,532.33,3273.65,26135189,99.9,0,0,0.14,532.31,3273.66,26135190,99.8,0,0,0.28,532.65,3273.34,26135191,99.63,0,0,0.54,533.22,3272.77,26135192,99.91,0,0,0.21,532.45,3273.54,26135193,99.9,0,0,0.14,532.43,3273.55,26135194,99.89,0,0,0.16,532.39,3273.58,26135195,99.82,0,0,0.3,532.87,3273.12,26135196,99.77,0,0,0.42,533.21,3272.78,26135197,99.9,0,0,0.3,532.32,3273.66,26135198,99.92,0,0,0.15,532.31,3273.66,26135199,99.68,0,0,0.31,532.58,3273.36,26135200,99.73,0,0,0.34,531.65,3274.32,26135201,99.73,0,0,0.41,531.97,3273.99,26135202,99.88,0,0,0.28,532.68,3273.28,26135203,99.91,0,0,0.16,532.65,3273.3,26135204,99.88,0,0,0.14,532.64,3273.31,26135205,99.75,0,0,0.31,532.43,3273.54,26135206,99.78,0,0,0.44,532.74,3273.22,26135207,99.87,0,0,0.3,532.59,3273.37,26135208,99.88,0,0,0.15,532.58,3273.38,26135209,99.86,0,0,0.17,532.55,3273.4,26135210,99.76,0,0,0.32,531.64,3274.33,26135211,99.86,0,0,0.17,531.73,3274.23,26135212,99.65,0,0,0.61,532.23,3273.72,26135213,99.9,0,0,0.14,531.44,3274.5,26135214,99.9,0,0,0.16,531.42,3274.52,26135215,99.76,0,0,0.29,532.85,3273.11,26135216,99.83,0,0,0.18,532.87,3273.09,26135217,99.77,0,0,0.59,533.14,3272.81,26135218,99.88,0,0,0.15,532.58,3273.37,26135219,99.94,0,0,0.16,532.57,3273.37,26135220,88.66,0,0,163.74,553.7,3252.63,26135221,99.89,0,0,33.54,533.71,3303.03,26135222,99.77,0,0,0.6,534.39,3302.37,26135223,99.88,0,0,0.18,534.35,3302.41,26135224,99.86,0,0,0.15,534.33,3302.43,26135225,99.75,0,0.01,0.34,534.33,3302.44,26135226,99.92,0,0,0.16,531.99,3304.83,26135227,99.78,0,0,0.55,531.74,3305.08,26135228,99.93,0,0.01,0.15,531.04,3305.77,26135229,99.72,0,0.01,0.29,532.22,3304.57,26135230,99.81,0,0,0.26,531.81,3305.01,26135231,99.94,0,0,0.16,531.91,3304.92,26135232,99.77,0,0,0.48,532.78,3304.04,26135233,99.93,0,0,0.29,532.34,3304.46,26135234,99.88,0,0,0.16,532.33,3304.49,26135235,99.78,0,0,0.32,532.09,3304.75,26135236,99.88,0,0,0.14,532.07,3304.77,26135237,99.71,0,0,0.57,532.34,3304.49,26135238,99.87,0,0,0.2,532.02,3304.8,26135239,99.9,0,0,0.2,532.01,3304.81,26135240,99.79,0,0,0.36,530.82,3306.01,26135241,99.85,0,0,0.2,530.75,3306.08,26135242,99.76,0,0,0.44,531.11,3305.71,26135243,99.88,0,0.02,0.34,531.1,3305.72,26135244,99.93,0.01,0.37,0.22,531.05,3305.77,26135245,98.72,0,0,15.64,533.4,3303.92,26135246,99.9,0,0,0.17,531.76,3305.09,26135247,99.77,0,0,0.39,532.13,3304.72,26135248,99.94,0,0,0.38,532.34,3304.5,26135249,99.87,0,0,0.17,532.4,3304.44,26135250,99.78,0,0,0.29,532.16,3304.69,26135251,99.88,0,0,0.18,532.13,3304.72,26135252,99.9,0,0,0.17,532.11,3304.74,26135253,99.72,0,0,0.55,532.74,3304.11,26135254,99.93,0,0,0.18,532.06,3304.78,26135255,99.72,0,0,0.3,532.06,3304.8,26135256,99.88,0,0,0.18,532.02,3304.83,26135257,99.9,0,0,0.16,532.05,3304.82,26135258,99.77,0,0,0.53,532.52,3304.34,26135259,99.78,0,0,0.29,532.39,3304.45,26135260,99.74,0,0,0.33,531.1,3305.75,26135261,99.88,0,0,0.14,530.89,3305.96,26135262,99.91,0,0,0.16,530.86,3305.98,26135263,99.72,0,0,0.54,531.88,3304.95,26135264,99.92,0,0,0.16,532.04,3304.79,26135265,99.76,0,0,0.29,532.28,3304.57,26135266,99.89,0,0,0.16,532.25,3304.59,26135267,99.85,0,0,0.15,532.27,3304.57,26135268,99.76,0,0,0.52,532.07,3304.76,26135269,99.9,0,0,0.18,531.15,3305.68,26135270,99.83,0,0,0.38,531.87,3304.97,26135271,99.93,0,0,0.16,531.87,3304.97,26135272,99.9,0,0,0.14,531.85,3304.99,26135273,99.74,0,0,0.54,532.69,3304.15,26135274,99.85,0,0,0.14,532.3,3304.53,26135275,99.77,0,0,0.3,532.07,3304.78,26135276,99.92,0,0,0.15,532.03,3304.81,26135277,99.9,0,0,0.16,532.02,3304.82,26135278,99.74,0,0,0.41,532.39,3304.45,26135279,99.89,0,0,0.28,532.25,3304.57,26135280,99.76,0,0,0.28,532.17,3304.68,26135281,99.89,0,0,0.14,532.13,3304.71,26135282,98.98,0,0,0.15,532.12,3304.72,26135283,99.68,0,0,0.32,532.46,3304.38,26135284,99.88,0,0,0.4,532.32,3304.51,26135285,99.72,0,0,0.29,532.33,3304.51,26135286,99.9,0,0,0.16,532.3,3304.54,26135287,99.91,0,0,0.14,532.28,3304.56,26135288,99.77,0,0,0.32,532.61,3304.23,26135289,99.75,0,0,0.54,531.98,3304.82,26135290,99.76,0,0,0.29,531.27,3305.55,26135291,99.82,0,0.02,0.18,531.35,3305.46,26135292,99.87,0,0,0.14,531.35,3305.47,26135293,99.85,0,0,0.15,531.33,3305.48,26135294,99.6,0,0,0.54,532.27,3304.53,26135295,99.76,0,0,0.29,532.51,3304.31,26135296,99.8,0,0,0.14,532.52,3304.3,26135297,99.84,0,0,0.2,532.5,3304.32,26135298,99.86,0,0,0.14,532.48,3304.33,26135299,99.7,0,0,0.54,532.67,3304.13,26135300,99.76,0,0,0.28,532.01,3304.81,26135301,99.88,0,0,0.15,532.13,3304.68,26135302,99.85,0,0,0.16,532.1,3304.7,26135303,99.78,0,0,0.15,532.07,3304.73,26135304,99.71,0,0,0.55,532.58,3304.22,26135305,99.79,0,0,0.31,532.3,3304.51,26135306,99.87,0,0,0.16,532.29,3304.52,26135307,99.9,0,0,0.15,532.26,3304.55,26135308,99.85,0,0.01,0.16,532.24,3304.56,26135309,99.77,0,0,0.48,532.69,3304.11,26135310,99.73,0,0.01,0.42,532.12,3304.69,26135311,99.83,0,0,0.17,532.14,3304.67,26135312,99.83,0,0,0.14,532.12,3304.69,26135313,99.81,0,0,0.15,532.1,3304.7,26135314,99.63,0,0,0.5,532.84,3303.96,26135315,99.74,0,0,0.38,531.6,3305.21,26135316,99.84,0,0,0.12,531.57,3305.24,26135317,99.78,0,0,0.2,531.55,3305.25,26135318,99.83,0,0,0.16,531.54,3305.26,26135319,99.48,0,0,0.56,532.71,3304.07,26135320,99.74,0,0,0.45,532.01,3304.79,26135321,99.83,0,0,0.16,531.73,3305.05,26135322,99.85,0,0,0.14,531.78,3305,26135323,99.83,0,0,0.15,531.88,3304.9,26135324,99.69,0,0,0.3,532.22,3304.55,26135325,99.7,0,0,0.56,532.59,3304.2,26135326,99.83,0,0,0.17,532.59,3304.2,26135327,99.83,0,0,0.16,532.56,3304.22,26135328,99.83,0,0,0.18,532.55,3304.23,26135329,99.72,0,0,0.33,532.87,3303.9,26135330,99.7,0,0,0.49,531.34,3305.44,26135331,99.83,0,0,0.17,531.27,3305.51,26135332,99.85,0,0,0.14,531.26,3305.52,26135333,99.8,0,0,0.16,531.24,3305.53,26135334,99.83,0,0,0.15,531.22,3305.55,26135335,99.59,0,0,0.71,532.89,3303.9,26135336,99.81,0,0,0.14,532.61,3304.18,26135337,99.83,0,0,0.15,532.59,3304.19,26135338,99.78,0,0,0.15,532.57,3304.21,26135339,99.75,0,0,0.14,532.55,3304.22,26135340,99.56,0,0,0.69,532.88,3303.91,26135341,99.8,0,0,0.14,532.52,3304.26,26135342,99.83,0,0,0.17,532.49,3304.29,26135343,98.4,0,0,0.15,532.49,3304.29,26135344,99.83,0,0,0.14,532.45,3304.31,26135345,99.56,0,0,0.62,532.74,3304.04,26135346,99.83,0,0,0.19,532.28,3304.5,26135347,99.72,0.04,0.03,0.18,532.3,3304.46,26135348,99.8,0.08,0.04,0.16,532.26,3304.5,26135349,99.62,0.06,0.04,0.29,532.54,3304.19,26135350,99.58,0.06,0.04,0.62,533.29,3303.46,26135351,99.7,0.07,0.04,0.33,532.75,3303.99,26135352,99.69,0.06,0.04,0.16,532.76,3303.97,26135353,99.79,0.02,0.02,0.14,532.71,3304.02,26135354,99.76,0.01,0.01,0.16,532.77,3303.95,26135355,99.53,0,0,0.7,533.03,3303.71,26135356,99.79,0,0,0.18,532.5,3304.25,26135357,99.81,0,0,0.2,532.48,3304.26,26135358,99.83,0,0,0.15,532.45,3304.28,26135359,99.83,0,0,0.14,532.43,3304.29,26135360,99.52,0,0,0.6,532.04,3304.7,26135361,99.84,0,0,0.32,532.71,3304.03,26135362,99.83,0,0,0.14,532.83,3303.92,26135363,99.83,0,0,0.15,532.81,3303.94,26135364,99.83,0,0,0.14,532.79,3303.95,26135365,99.72,0,0,0.27,532.56,3304.2,26135366,99.7,0,0,0.55,532.38,3304.38,26135367,99.82,0,0,0.16,531.76,3304.99,26135368,99.78,0,0,0.14,531.72,3305.02,26135369,99.83,0,0,0.16,531.7,3305.06,26135370,99.78,0,0,0.3,532.92,3303.86,26135371,99.68,0,0,0.52,533.1,3303.67,26135372,99.82,0,0,0.16,532.83,3303.94,26135373,99.82,0,0,0.16,532.81,3303.96,26135374,99.85,0,0,0.14,532.78,3303.98,26135375,99.76,0,0,0.29,532.13,3304.65,26135376,94.91,0.28,0.01,259.57,547.26,3290.98,26135377,99.8,0,0,0.13,534.44,3302.27,26135378,99.81,0,0,0.16,534.42,3302.28,26135379,99.75,0,0,0.29,534.4,3302.27,26135380,99.71,0,0,0.31,534.39,3302.3,26135381,99.65,0,0,0.63,533.03,3303.7,26135382,99.82,0,0,0.15,531.87,3304.87,26135383,99.8,0,0,0.14,531.85,3304.89,26135384,99.82,0,0,0.14,531.83,3304.92,26135385,99.73,0,0,0.32,532.32,3304.45,26135386,99.67,0,0,0.54,532.39,3304.38,26135387,99.82,0,0,0.16,531.05,3305.72,26135388,99.82,0,0,0.14,531.02,3305.75,26135389,99.8,0,0,0.15,531.01,3305.76,26135390,99.68,0,0,0.29,531.97,3304.81,26135391,99.6,0,0,0.56,532.1,3304.67,26135392,99.82,0,0,0.14,531.26,3305.51,26135393,99.74,0,0,0.15,531.38,3305.39,26135394,99.79,0,0,0.14,531.36,3305.41,26135395,99.65,0,0,0.29,530.46,3306.32,26135396,99.65,0,0,0.41,531.14,3305.64,26135397,99.72,0,0,0.29,531.79,3304.98,26135398,99.76,0,0,0.17,531.77,3304.99,26135399,99.8,0,0,0.18,531.75,3305.01,26135400,99.68,0,0,0.34,531.52,3305.26,26135401,99.61,0,0,0.46,531.89,3304.88,26135402,99.69,0,0,0.3,531.72,3305.06,26135403,99.83,0,0,0.19,531.76,3305.01,26135404,99.82,0,0,0.18,531.85,3304.91,26135405,99.74,0,0,0.33,532.11,3304.7,26135406,99.75,0,0,0.17,532.09,3304.72,26135407,99.62,0,0,0.55,532.77,3304.04,26135408,99.79,0,0,0.2,532.05,3304.75,26135409,99.66,0,0,0.34,532.27,3304.5,26135410,99.75,0,0,0.33,531.07,3305.73,26135411,99.8,0,0,0.15,531.03,3305.76,26135412,99.67,0,0,0.54,532.32,3304.47,26135413,99.78,0,0,0.18,532.21,3304.57,26135414,99.79,0,0,0.16,532.19,3304.59,26135415,99.67,0,0,0.3,531.78,3305.02,26135416,99.77,0,0,0.17,531.9,3304.9,26135417,99.62,0,0,0.6,532.45,3304.33,26135418,99.81,0,0,0.17,532.34,3304.44,26135419,99.79,0,0,0.16,532.33,3304.44,26135420,99.73,0,0,0.27,532.09,3304.71,26135421,99.81,0,0,0.16,532.07,3304.72,26135422,99.65,0,0,0.53,532.39,3304.4,26135423,99.81,0,0.01,0.16,532.01,3304.77,26135424,99.81,0,0,0.16,531.97,3304.81,26135425,99.76,0,0,0.3,531.74,3305.05,26135426,99.83,0,0,0.13,531.81,3304.98,26135427,99.66,0,0,0.49,532.76,3304.02,26135428,99.8,0,0,0.19,532.36,3304.43,26135429,99.81,0,0,0.16,532.33,3304.45,26135430,99.7,0,0,0.28,530.88,3305.92,26135431,99.81,0,0,0.16,530.84,3305.95,26135432,99.65,0,0,0.39,531.6,3305.19,26135433,99.83,0,0,0.29,531.78,3305,26135434,99.84,0,0,0.14,531.75,3305.02,26135435,99.6,0,0,0.31,531.05,3305.74,26135436,99.81,0,0,0.18,530.99,3305.79,26135437,99.63,0,0,0.36,531.46,3305.32,26135438,99.82,0,0,0.35,532.29,3304.49,26135439,99.58,0,0,0.31,532.36,3304.4,26135440,99.63,0,0,0.3,531.64,3305.13,26135441,99.84,0,0,0.17,531.61,3305.17,26135442,99.72,0,0,0.39,531.98,3304.79,26135443,99.83,0,0,0.28,532.05,3304.71,26135444,99.81,0,0.03,0.17,532,3304.78,26135445,99.77,0,0,0.28,531.98,3304.82,26135446,99.8,0,0,0.16,531.97,3304.83,26135447,99.81,0,0,0.15,532.04,3304.76,26135448,99.65,0,0,0.57,532.71,3304.09,26135449,99.81,0,0,0.15,532.34,3304.45,26135450,99.71,0,0,0.29,532.35,3304.45,26135451,99.79,0,0,0.13,532.31,3304.48,26135452,99.83,0,0,0.16,532.3,3304.49,26135453,99.68,0,0,0.57,532.81,3303.98,26135454,99.8,0,0,0.15,532.26,3304.52,26135455,99.7,0,0,0.33,532.26,3304.54,26135456,99.81,0,0,0.18,532.24,3304.56,26135457,99.79,0,0,0.18,532.22,3304.58,26135458,99.68,0,0,0.4,532.69,3304.1,26135459,99.8,0,0,0.28,532.52,3304.27,26135460,99.68,0,0,0.32,532.6,3304.21,26135461,99.8,0,0,0.13,532.58,3304.21,26135462,99.81,0,0,0.17,532.56,3304.24,26135463,99.66,0,0,0.41,532.8,3303.99,26135464,99.83,0,0,0.28,532.27,3304.52,26135465,99.69,0,0,0.28,531.57,3305.24,26135466,99.79,0,0,0.16,531.51,3305.29,26135467,99.84,0,0,0.14,531.5,3305.29,26135468,99.66,0,0,0.54,532.23,3304.56,26135469,99.68,0,0,0.35,532.44,3304.33,26135470,99.71,0,0,0.28,531.54,3305.24,26135471,99.79,0,0,0.16,531.62,3305.16,26135472,99.78,0,0,0.17,531.59,3305.18,26135473,99.63,0,0,0.55,532.51,3304.26,26135474,99.83,0,0,0.16,532.53,3304.23,26135475,99.69,0,0,0.36,532.3,3304.48,26135476,99.86,0,0,0.18,532.27,3304.51,26135477,99.86,0,0,0.22,532,3304.77,26135478,99.73,0,0,0.34,532.46,3304.31,26135479,99.88,0,0,0.36,532.45,3304.32,26135480,99.81,0,0,0.27,532.45,3304.33,26135481,99.9,0,0,0.15,532.43,3304.35,26135482,99.91,0,0,0.17,532.58,3304.19,26135483,99.9,0,0.01,0.16,532.56,3304.21,26135484,99.74,0,0,0.53,533.11,3303.66,26135485,99.84,0,0,0.28,532.55,3304.23,26135486,99.91,0,0,0.16,532.53,3304.25,26135487,99.9,0,0,0.14,532.51,3304.26,26135488,99.92,0,0,0.16,532.49,3304.29,26135489,99.76,0,0,0.54,533.05,3303.72,26135490,99.78,0,0,0.27,532.71,3304.07,26135491,99.91,0,0,0.17,532.69,3304.09,26135492,99.9,0,0,0.14,532.77,3304,26135493,99.9,0,0,0.16,532.86,3303.91,26135494,99.78,0,0,0.59,533.37,3303.39,26135495,99.81,0,0,0.28,532.59,3304.19,26135496,99.88,0,0,0.16,532.58,3304.2,26135497,99.9,0,0,0.14,532.55,3304.22,26135498,99.93,0,0,0.16,532.55,3304.22,26135499,99.61,0,0,0.76,533.03,3303.71,26135500,99.78,0,0,0.34,532.04,3304.72,26135501,99.93,0,0,0.19,531.99,3304.76,26135502,99.88,0,0,0.14,531.97,3304.78,26135503,99.9,0,0,0.15,531.95,3304.79,26135504,99.78,0,0,0.58,532.6,3304.15,26135505,99.76,0,0,0.3,532.61,3304.16,26135506,99.3,0.01,0.01,0.14,532.59,3304.19,26135507,99.84,0,0,0.19,532.47,3304.29,26135508,99.88,0,0,0.16,532.45,3304.31,26135509,99.73,0,0,0.59,532.81,3303.95,26135510,99.77,0,0,0.29,532.6,3304.17,26135511,99.92,0,0,0.14,532.58,3304.18,26135512,99.86,0,0,0.14,532.56,3304.21,26135513,99.93,0,0,0.16,532.53,3304.23,26135514,99.75,0,0,0.53,533.27,3303.48,26135515,99.86,0,0,0.29,532.77,3304.01,26135516,99.93,0,0,0.17,532.75,3304.02,26135517,99.85,0,0,0.18,532.72,3304.04,26135518,99.9,0,0,0.16,532.71,3304.05,26135519,99.71,0,0,0.34,533.03,3303.73,26135520,99.84,0,0,0.52,532.69,3304.08,26135521,99.89,0,0,0.18,532.75,3304.01,26135522,99.9,0,0,0.15,532.82,3303.94,26135523,99.9,0,0,0.16,532.8,3303.95,26135524,99.75,0,0,0.3,533.13,3303.62,26135525,99.81,0,0,0.52,532.53,3304.23,26135526,99.92,0,0,0.14,532.5,3304.26,26135527,99.93,0,0,0.16,532.49,3304.27,26135528,99.9,0,0,0.18,532.46,3304.29,26135529,99.8,0,0,0.36,532.45,3304.28,26135530,99.68,0,0,0.67,532.48,3304.27,26135531,99.88,0,0,0.14,532.18,3304.56,26135532,99.91,0,0,0.14,532.2,3304.53,26135533,99.9,0,0,0.16,532.32,3304.41,26135534,99.85,0,0,0.13,532.3,3304.44,26135535,99.7,0,0,0.71,532.38,3304.38,26135536,99.83,0,0,0.17,531.53,3305.22,26135537,99.91,0,0,0.2,531.74,3305,26135538,99.9,0,0,0.18,531.73,3305.01,26135539,99.87,0,0,0.16,531.71,3305.03,26135540,99.53,0,0,0.75,532,3304.75,26135541,99.87,0,0,0.21,532.18,3304.57,26135542,99.91,0,0,0.18,532.15,3304.6,26135543,99.88,0,0,0.17,532.21,3304.53,26135544,99.85,0,0,0.17,532.31,3304.43,26135545,99.67,0,0,0.72,532.32,3304.44,26135546,99.93,0,0,0.2,532.03,3304.72,26135547,99.88,0,0,0.2,532.01,3304.74,26135548,99.85,0,0,0.19,531.99,3304.75,26135549,99.88,0,0,0.18,531.97,3304.77,26135550,99.62,0,0,0.71,531.78,3304.97,26135551,99.91,0,0,0.17,531.71,3305.04,26135552,99.81,0,0,0.17,531.69,3305.06,26135553,99.91,0,0,0.19,531.67,3305.07,26135554,99.89,0,0,0.16,531.65,3305.09,26135555,99.59,0,0,0.58,532.88,3303.88,26135556,99.91,0,0,0.29,532.31,3304.45,26135557,99.91,0,0,0.18,532.29,3304.46,26135558,99.93,0,0,0.16,532.26,3304.48,26135559,99.84,0,0,0.31,531.74,3304.98,26135560,99.8,0,0,0.33,531.74,3305,26135561,99.76,0,0,0.56,532.05,3304.66,26135562,99.9,0,0,0.17,531.69,3305.02,26135563,99.9,0,0,0.17,531.66,3305.05,26135564,99.9,0,0,0.17,531.65,3305.07,26135565,99.82,0,0,0.34,531.66,3305.08,26135566,99.75,0,0,0.55,532.3,3304.43,26135567,99.44,0,0,0.16,532.07,3304.66,26135568,99.93,0,0,0.17,532.05,3304.68,26135569,99.82,0,0,0.16,532.03,3304.69,26135570,99.82,0,0,0.3,531.3,3305.43,26135571,99.77,0,0,0.6,532.45,3304.28,26135572,99.93,0,0,0.2,532.24,3304.48,26135573,99.88,0,0,0.2,532.22,3304.51,26135574,99.9,0,0,0.2,532.2,3304.52,26135575,99.81,0,0,0.36,532.45,3304.29,26135576,99.76,0,0,0.59,532.45,3304.29,26135577,99.9,0,0,0.19,531.91,3304.82,26135578,99.9,0,0.01,0.18,531.98,3304.75,26135579,99.91,0,0,0.17,532.03,3304.69,26135580,99.76,0,0,0.3,532.11,3304.63,26135581,99.69,0,0,0.48,532.8,3303.94,26135582,99.93,0,0,0.2,532.23,3304.5,26135583,99.92,0,0,0.14,532.22,3304.51,26135584,99.49,0,0,0.17,532.18,3304.54,26135585,99.76,0,0,0.3,531.25,3305.48,26135586,99.75,0,0,0.55,531.69,3305.04,26135587,99.89,0,0,0.14,531.66,3305.07,26135588,99.86,0,0,0.14,531.72,3305,26135589,99.83,0,0,0.29,532.33,3304.37,26135590,99.82,0,0,0.26,531.35,3305.37,26135591,99.78,0,0,0.56,531.96,3304.75,26135592,99.9,0,0,0.17,532.25,3304.45,26135593,99.88,0,0,0.14,532.25,3304.47,26135594,99.87,0,0,0.16,532.21,3304.52,26135595,99.85,0,0,0.29,531.99,3304.77,26135596,99.74,0,0,0.43,532.38,3304.37,26135597,99.9,0,0,0.34,532.43,3304.32,26135598,99.9,0,0,0.15,532.4,3304.34,26135599,99.88,0,0,0.14,532.38,3304.36,26135600,99.83,0,0,0.29,532.24,3304.51,26135601,99.89,0,0,0.14,532.31,3304.44,26135602,99.69,0,0,0.52,532.39,3304.35,26135603,99.89,0,0,0.16,532.02,3304.72,26135604,99.9,0,0,0.14,532,3304.74,26135605,99.87,0,0,0.28,532.48,3304.27,26135606,99.93,0,0,0.14,532.47,3304.28,26135607,99.7,0,0,0.54,532.91,3303.84,26135608,99.9,0,0,0.15,532.19,3304.55,26135609,99.91,0,0,0.14,532.16,3304.57,26135610,99.83,0,0,0.38,531.67,3305.08,26135611,99.93,0,0,0.13,531.73,3305.01,26135612,99.76,0,0,0.59,532.89,3303.85,26135613,99.92,0,0,0.15,532.77,3303.97,26135614,99.92,0,0,0.14,532.75,3303.98,26135615,99.78,0,0,0.28,531.54,3305.21,26135616,99.91,0,0,0.16,531.5,3305.25,26135617,99.76,0,0,0.5,531.92,3304.82,26135618,99.89,0,0,0.23,531.69,3305.05,26135619,99.85,0,0,0.29,532.37,3304.33,26135620,99.86,0,0,0.3,532.17,3304.56,26135621,99.91,0,0,0.15,531.64,3305.08,26135622,99.76,0,0,0.48,532.16,3304.55,26135623,99.94,0,0,0.36,532.29,3304.42,26135624,99.89,0,0,0.14,532.26,3304.45,26135625,99.83,0,0,0.36,531.8,3304.93,26135626,99.94,0,0,0.15,531.75,3304.97,26135627,99.78,0,0,0.36,532.42,3304.29,26135628,99.91,0,0,0.34,532.2,3304.51,26135629,99.92,0,0,0.17,532.19,3304.52,26135630,99.82,0,0,0.27,532.18,3304.54,26135631,99.92,0,0,0.15,532.17,3304.55,26135632,99.91,0,0,0.19,532.14,3304.58,26135633,99.73,0,0,0.54,532.7,3304.01,26135634,99.92,0,0,0.14,532.44,3304.27,26135635,99.74,0,0,0.3,532.53,3304.19,26135636,99.91,0,0,0.15,532.52,3304.2,26135637,99.92,0,0,0.15,532.5,3304.22,26135638,99.75,0,0,0.54,532.83,3303.88,26135639,99.89,0,0,0.15,532.46,3304.25,26135640,99.78,0,0,0.27,531.74,3304.99,26135641,99.92,0,0,0.15,531.69,3305.03,26135642,99.93,0,0,0.18,531.68,3305.04,26135643,99.78,0,0,0.53,532.77,3303.94,26135644,99.92,0,0,0.15,532.62,3304.09,26135645,99.81,0,0,0.29,532.37,3304.35,26135646,99.89,0,0.03,0.17,532.45,3304.26,26135647,99.92,0,0,0.17,532.51,3304.2,26135648,99.74,0,0,0.54,532.81,3303.89,26135649,99.76,0.04,1.58,0.38,531.98,3304.7,26135650,99.81,0,0.03,0.48,532.26,3304.41,26135651,99.9,0,0,0.16,532.23,3304.44,26135652,99.77,0,0,0.14,532.21,3304.45,26135653,99.74,0,0,0.52,532.66,3304,26135654,99.91,0,0,0.19,532.41,3304.24,26135655,99.8,0,0,0.28,531.92,3304.75,26135656,99.89,0,0,0.14,531.89,3304.78,26135657,99.86,0,0,0.21,531.87,3304.79,26135658,99.76,0,0,0.43,532.44,3304.22,26135659,99.86,0,0,0.3,532.46,3304.2,26135660,99.78,0,0,0.3,532.85,3303.82,26135661,99.82,0,0,0.14,532.76,3303.9,26135662,99.91,0,0,0.13,532.73,3303.93,26135663,99.78,0,0,0.5,533.08,3303.58,26135664,99.93,0,0,0.19,532.7,3303.96,26135665,99.7,0,0,0.29,531.28,3305.39,26135666,99.91,0,0,0.16,531.2,3305.47,26135667,99.9,0,0,0.14,531.2,3305.47,26135668,99.75,0,0,0.4,531.82,3304.85,26135669,99.91,0,0,0.3,531.89,3304.77,26135670,99.87,0,0,0.29,532.65,3304.03,26135671,99.91,0.01,0.05,0.17,532.78,3303.89,26135672,99.86,0.06,2.11,0.39,532.73,3303.92,26135673,99.9,0,0,0.14,532.68,3303.96,26135674,99.74,0,0,0.54,533.02,3303.62,26135675,99.85,0,0,0.29,532.67,3303.99,26135676,99.91,0,0,0.14,532.64,3304.01,26135677,99.92,0,0,0.16,532.62,3304.02,26135678,99.92,0,0,0.15,532.6,3304.04,26135679,99.68,0,0,0.7,533.29,3303.33,26135680,99.8,0,0,0.29,532.04,3304.61,26135681,99.93,0,0,0.16,531.75,3304.9,26135682,99.88,0,0,0.14,531.73,3304.91,26135683,99.91,0,0,0.16,531.7,3304.94,26135684,99.75,0,0,0.54,532.11,3304.52,26135685,99.81,0,0,0.29,532.18,3304.47,26135686,99.9,0,0,0.16,532.16,3304.48,26135687,99.93,0,0,0.14,532.14,3304.51,26135688,99.91,0,0,0.14,532.12,3304.52,26135689,99.72,0,0,0.54,532.72,3303.91,26135690,99.82,0.02,1.05,0.34,531.8,3304.84,26135691,99.9,0,0,0.14,531.75,3304.88,26135692,99.68,0.26,1.23,1.5,532.44,3304.12,26135693,99.48,1.82,60.53,0.84,532.71,3303.84,26135694,99.42,1.29,39.86,1.22,533.46,3303.08,26135695,99.32,1.89,61.46,1.23,534.22,3302.31,26135696,99.28,32.18,30.93,0.64,534.15,3299.76,26135697,98.11,113.84,78.64,115.2,533.94,3196.64,26135698,99.58,1.79,61.71,22.34,533.76,3162.47,26135699,99.73,0.12,0.21,0.76,534.28,3161.7,26135700,99.73,0.03,0.07,0.4,534.17,3161.82,26135701,80.05,0.02,0.03,6.98,741.82,2953.76,26135702,99.9,0.06,2.29,0.32,534.65,3160.84,26135703,99.79,0.32,15.05,0.29,534.88,3160.57,26135704,99.77,0,0,0.63,536.18,3159.26,26135705,99.79,0.01,0.26,0.39,536.69,3158.77,26135706,99.92,0,0,0.15,536.74,3158.72,26135707,99.85,0.01,0.26,0.23,536.7,3158.76,26135708,99.91,0,0,0.15,536.71,3158.74,26135709,99.6,0,0,0.55,537.5,3157.9,26135710,99.76,0,0,0.45,536.21,3159.22,26135711,99.88,0.02,0.7,0.28,536.16,3159.26,26135712,99.89,0,0.01,0.18,536.1,3159.32,26135713,99.88,0,0,0.15,536.07,3159.34,26135714,99.76,0,0,0.39,536.45,3158.97,26135715,99.85,0,0,0.49,536.9,3158.54,26135716,99.87,0,0,0.17,536.97,3158.47,26135717,99.9,0,0,0.18,537.18,3158.25,26135718,99.88,0,0,0.15,537.17,3158.25,26135719,99.88,0,0,0.16,537.15,3158.28,26135720,99.61,0,0,0.68,537.3,3158.14,26135721,99.93,0,0,0.16,536.88,3158.55,26135722,99.89,0,0,0.14,536.88,3158.55,26135723,99.91,0,0,0.15,536.86,3158.57,26135724,99.88,0.02,0.75,0.19,536.82,3158.6,26135725,99.71,0,0.02,0.75,537.38,3158.05,26135726,99.88,0,0.01,0.16,536.96,3158.48,26135727,99.91,0.01,0.67,0.25,536.88,3158.54,26135728,99.88,0.01,0.46,0.2,536.84,3158.57,26135729,99.88,0.02,1.06,0.16,536.95,3158.46,26135730,99.65,0.02,0.51,0.73,537.36,3158.04,26135731,99.89,0.02,0.44,0.3,536.88,3158.53,26135732,81.58,0.05,0.07,4.01,673.58,3021.78,26135733,99.74,0.01,0.4,0.67,900.35,2795.03,26135734,99.91,0,0.07,0.28,580.68,3114.69,26135735,99.55,0.05,0.16,0.8,581.84,3113.53,26135736,99.82,0.04,0.34,0.36,582.02,3113.32,26135737,99.88,0.01,0.01,0.15,582,3113.33,26135738,83.47,0.17,1.89,1.55,670.49,3024.71,26135739,81.06,0.04,0.87,4.37,802.81,2892.37,26135740,87.8,0.3,0.01,79.6,828.06,2867.17,26135741,68.28,0.04,0.9,189.42,1073.51,2621.17,26135742,99.85,0.05,2.1,0.34,1057.02,2637.74,26135743,99.71,0.02,0.58,0.23,671.78,3022.96,26135744,81,0.08,1.93,4.63,949.4,2745.28,26135745,99.42,0,0.01,0.63,793.84,2900.9,26135746,99.87,0.01,0.15,0.38,586.76,3108.03,26135747,99.88,0.03,1.29,0.22,586.72,3108.07,26135748,99.91,0.04,1.9,0.27,586.79,3107.98,26135749,99.9,0,0.01,0.23,586.68,3108.08,26135750,99.69,0,0,0.73,586.99,3107.79,26135751,99.91,0,0.01,0.18,586.41,3108.39,26135752,99.9,0,0,0.15,586.39,3108.4,26135753,99.83,0,0,0.18,586.36,3108.42,26135754,99.89,0,0,0.14,586.5,3108.28,26135755,99.72,0,0,0.45,587.38,3107.42,26135756,99.9,0,0,0.42,587.02,3107.77,26135757,99.9,0.01,0.14,0.18,586.94,3107.85,26135758,99.88,0,0,0.14,586.91,3107.88,26135759,99.91,0,0,0.15,586.88,3107.9,26135760,99.78,0,0,0.29,587.36,3107.43,26135761,99.77,0,0,0.58,587.86,3106.93,26135762,99.92,0,0,0.15,586.45,3108.33,26135763,99.87,0.02,0.85,0.23,586.41,3108.36,26135764,99.86,0,0.03,0.24,586.43,3108.34,26135765,99.79,0,0,0.3,585.46,3109.32,26135766,99.78,0,0,0.56,586.75,3108.03,26135767,99.89,0,0,0.16,586.88,3107.9,26135768,99.86,0,0.01,0.18,586.96,3107.81,26135769,99.65,0,0.01,0.32,587.02,3107.73,26135770,99.68,0,0.01,0.34,587.26,3107.5,26135771,99.73,0,0.01,0.63,587.39,3107.37,26135772,99.92,0,0,0.16,586.94,3107.82,26135773,99.9,0,0,0.14,586.91,3107.84,26135774,99.8,0,0,0.15,586.9,3107.87,26135775,99.75,0,0.02,0.38,586.5,3108.28,26135776,99.73,0.01,0.18,0.47,587.22,3107.55,26135777,99.78,0,0,0.35,586.91,3107.86,26135778,99.89,0.03,1.17,0.19,586.9,3107.87,26135779,99.89,0,0.01,0.22,586.22,3108.54,26135780,99.81,0.35,21.44,0.31,586.67,3108.11,26135781,99.74,0.16,7.54,0.57,587.27,3107.51,26135782,99.93,0.01,0.52,0.3,586.73,3108.04,26135783,99.88,0.04,1.81,0.2,586.69,3108.07,26135784,99.88,0.01,0.22,0.21,586.65,3108.13,26135785,99.81,0,0.02,0.42,586.38,3108.43,26135786,99.7,0.12,5.69,0.6,586.85,3107.95,26135787,99.9,0,0,0.16,586.99,3107.8,26135788,99.89,0,0.01,0.2,586.96,3107.83,26135789,99.9,0,0,0.14,586.93,3107.85,26135790,99.79,0,0,0.32,587.42,3107.38,26135791,99.9,0,0,0.16,587.41,3107.39,26135792,99.8,0,0,0.55,587.74,3107.05,26135793,99.9,0,0,0.14,587.36,3107.42,26135794,99.9,0,0,0.14,587.35,3107.43,26135795,99.78,0.04,1.41,0.32,587.36,3107.44,26135796,99.93,0,0.01,0.22,587.35,3107.44,26135797,99.77,0,0,0.55,587.84,3106.94,26135798,99.89,0,0.02,0.19,586.63,3108.14,26135799,99.74,0,0,0.31,586.8,3107.95,26135800,99.83,0,0,0.31,586.73,3108.04,26135801,99.86,0,0,0.32,586.47,3108.3,26135802,99.67,0,0,0.73,586.38,3108.38,26135803,99.87,0,0,0.15,585.94,3108.82,26135804,99.88,0,0,0.14,585.91,3108.84,26135805,99.75,0,0,0.3,586.45,3108.31,26135806,99.87,0,0,0.14,586.39,3108.38,26135807,99.63,0,0,0.69,587.5,3107.26,26135808,98.65,0,0,0.14,587.09,3107.67,26135809,99.91,0,0,0.15,587.07,3107.68,26135810,99.76,0,0,0.32,586.21,3108.56,26135811,99.86,0,0,0.14,586.25,3108.51,26135812,99.8,0,0,0.53,587.04,3107.72,26135813,99.9,0,0,0.21,587.2,3107.56,26135814,99.93,0,0,0.14,587.18,3107.57,26135815,99.88,0,0,0.32,586.7,3108.07,26135816,99.91,0,0,0.16,586.61,3108.15,26135817,99.79,0,0,0.4,586.83,3107.93,26135818,99.91,0.08,4.19,0.33,586.66,3108.09,26135819,99.9,0,0.08,0.27,586.64,3108.08,26135820,99.73,0.04,1.33,0.39,585.58,3109.14,26135821,99.91,0,0,0.16,585.57,3109.15,26135822,99.75,0,0,0.55,586.32,3108.39,26135823,99.88,0,0,0.24,587.16,3107.55,26135824,99.87,0,0,0.18,587.16,3107.54,26135825,99.84,0.02,1.25,0.44,586.89,3107.83,26135826,99.88,0,0,0.14,586.84,3107.87,26135827,99.8,0,0,0.45,587.1,3107.6,26135828,99.92,0,0,0.29,586.3,3108.4,26135829,99.74,0.01,0.02,0.32,587.28,3107.4,26135830,99.84,0,0.02,0.36,587.38,3107.3,26135831,99.88,0,0,0.16,587.35,3107.33,26135832,99.87,0.01,0.23,0.2,587.4,3107.28,26135833,99.8,0,0,0.57,587.98,3106.69,26135834,99.91,0,0,0.14,587.6,3107.06,26135835,99.81,0,0,0.32,587.48,3107.2,26135836,99.88,0,0.02,0.17,586.83,3107.84,26135837,99.9,0.02,0.83,0.29,586.83,3107.84,26135838,99.75,0,0,0.59,587.1,3107.56,26135839,99.89,0,0,0.16,586.02,3108.63,26135840,99.78,0,0,0.36,586.5,3108.17,26135841,99.91,0,0,0.13,586.55,3108.12,26135842,99.86,0,0,0.16,586.66,3108,26135843,99.79,0,0,0.59,586.8,3107.86,26135844,99.82,0,0.01,0.16,586.36,3108.29,26135845,99.81,0,0.02,0.35,586.34,3108.34,26135846,99.91,0,0,0.2,586.31,3108.36,26135847,99.89,0,0,0.19,586.28,3108.38,26135848,99.69,0,0,0.62,587.16,3107.5,26135849,99.83,0,0.01,0.2,586.83,3107.82,26135850,99.78,0,0.01,0.32,586.16,3108.5,26135851,99.86,0,0,0.2,586.1,3108.56,26135852,99.44,0,0,0.42,587.51,3107.13,26135853,99.76,0,0,0.54,587.45,3107.19,26135854,99.92,0,0,0.15,586.79,3107.85,26135855,99.84,0,0,0.32,586.42,3108.23,26135856,99.89,0,0,0.14,586.28,3108.38,26135857,99.82,0,0.01,0.16,586.27,3108.38,26135858,99.7,0,0,0.43,586.85,3107.79,26135859,99.73,0,0,0.48,586.63,3108,26135860,99.78,0,0,0.35,586.15,3108.49,26135861,99.83,0,0,0.18,586.34,3108.3,26135862,99.8,0,0,0.16,586.33,3108.31,26135863,99.73,0,0,0.55,586.72,3107.91,26135864,99.88,0,0,0.18,586.53,3108.1,26135865,99.73,0,0,0.32,586.76,3107.87,26135866,99.86,0,0,0.14,586.75,3107.88,26135867,99.87,0,0.01,0.16,586.73,3107.9,26135868,99.77,0,0.01,0.35,587.51,3107.11,26135869,99.85,0,0,0.41,586.84,3107.77,26135870,99.76,0,0,0.32,587.09,3107.54,26135871,99.81,0,0,0.17,587.07,3107.56,26135872,99.83,0,0,0.14,587.05,3107.57,26135873,99.84,0,0,0.15,587.03,3107.59,26135874,99.7,0,0,0.55,587.68,3106.94,26135875,99.68,0,0,0.32,586.65,3107.98,26135876,99.87,0,0,0.17,586.24,3108.38,26135877,99.85,0,0,0.14,586.21,3108.41,26135878,99.82,0,0,0.14,586.3,3108.32,26135879,99.68,0,0,0.59,586.53,3108.07,26135880,99.69,0,0,0.32,584.93,3109.7,26135881,99.82,0,0,0.16,584.86,3109.76,26135882,99.84,0.01,0.03,0.14,584.86,3109.75,26135883,99.81,0,0,0.17,584.88,3109.73,26135884,99.7,0,0,0.55,586.49,3108.12,26135885,99.74,0.03,2.52,0.36,586.6,3108.02,26135886,99.85,0,0.25,0.21,586.53,3108.07,26135887,98.27,0,0,0.16,586.49,3108.1,26135888,99.85,0,0,0.14,586.46,3108.13,26135889,99.61,0,0,0.8,587.74,3106.82,26135890,99.81,0,0,0.39,586.74,3107.83,26135891,99.83,0,0,0.2,586.88,3107.68,26135892,99.84,0,0,0.2,586.86,3107.7,26135893,99.85,0,0,0.2,586.83,3107.73,26135894,99.7,0,0,0.61,587.41,3107.17,26135895,99.76,0,0,0.39,586.49,3108.1,26135896,99.83,0,0,0.2,585.82,3108.77,26135897,99.85,0,0,0.24,585.79,3108.79,26135898,99.86,0,0,0.2,585.78,3108.8,26135899,99.71,0,0,0.6,586.28,3108.31,26135900,99.75,0,0,0.39,585.54,3109.07,26135901,99.85,0,0,0.2,585.49,3109.11,26135902,99.87,0,0,0.2,585.52,3109.08,26135903,99.82,0,0,0.19,585.64,3108.96,26135904,99.67,0,0,0.35,586.21,3108.39,26135905,99.76,0,0,0.62,587.1,3107.52,26135906,99.86,0,0,0.16,587.09,3107.53,26135907,99.85,0,0,0.16,587.07,3107.54,26135908,99.82,0,0,0.14,587.05,3107.56,26135909,99.69,0,0,0.35,587.29,3107.31,26135910,99.78,0,0,0.53,587.33,3107.29,26135911,99.85,0,0,0.14,587.24,3107.38,26135912,99.84,0,0,0.16,587.23,3107.38,26135913,99.86,0,0.01,0.15,587.25,3107.36,26135914,99.82,0,0,0.18,587.36,3107.25,26135915,99.57,0,0,0.74,587.6,3107.03,26135916,99.85,0,0,0.17,586.61,3108.01,26135917,99.84,0,0,0.18,586.56,3108.05,26135918,99.84,0,0,0.17,586.54,3108.07,26135919,99.68,0,0,0.35,586.76,3107.83,26135920,99.6,0,0,0.76,587.35,3107.25,26135921,99.76,0,0,0.2,586.56,3108.04,26135922,99.84,0.05,2.06,0.18,586.58,3108,26135923,99.83,0,0.05,0.24,586.79,3107.77,26135924,99.84,0,0,0.16,586.76,3107.82,26135925,99.66,0,0,0.75,587.69,3106.91,26135926,99.85,0,0,0.16,587.47,3107.13,26135927,99.87,0,0,0.18,587.46,3107.14,26135928,98.94,0,0,0.16,587.43,3107.16,26135929,99.85,0,0,0.17,587.42,3107.16,26135930,99.67,0,0,0.77,587.64,3106.96,26135931,99.85,0,0,0.17,587.59,3107.01,26135932,99.85,0,0,0.17,587.56,3107.04,26135933,99.85,0,0,0.17,587.55,3107.04,26135934,99.87,0.01,0.03,0.22,587.48,3107.11,26135935,99.63,0,0,0.8,588.35,3106.25,26135936,99.85,0,0,0.15,587.43,3107.15,26135937,99.87,0,0,0.18,586.93,3107.66,26135938,99.84,0,0,0.18,586.99,3107.59,26135939,99.86,0,0,0.18,587.07,3107.51,26135940,99.49,0,0,0.63,586.57,3108.02,26135941,99.85,0,0,0.3,586.77,3107.81,26135942,99.85,0,0,0.17,586.74,3107.84,26135943,99.8,0.03,1.28,0.23,586.75,3107.81,26135944,99.85,0.01,0.22,0.2,586.78,3107.77,26135945,99.66,0,0,0.61,587.64,3106.93,26135946,99.85,0,0,0.32,587.26,3107.31,26135947,99.85,0,0,0.17,587.25,3107.32,26135948,99.85,0,0,0.2,587.22,3107.34,26135949,99.76,0,0,0.46,587.71,3106.82,26135950,99.63,0,0,0.56,588.63,3105.92,26135951,99.78,0,0,0.37,587.92,3106.63,26135952,99.83,0,0,0.19,587.89,3106.65,26135953,99.83,0,0,0.16,587.88,3106.66,26135954,99.83,0,0,0.15,587.95,3106.58,26135955,99.74,0,0,0.32,588.52,3106.03,26135956,99.72,0,0,0.58,587.98,3106.56,26135957,99.83,0,0,0.18,586.53,3108.01,26135958,99.84,0,0,0.15,586.5,3108.04,26135959,99.83,0,0,0.14,586.5,3108.04,26135960,99.74,0,0,0.31,586.97,3107.57,26135961,99.68,0,0,0.59,587.1,3107.44,26135962,99.83,0,0,0.17,586.69,3107.85,26135963,99.83,0,0,0.14,586.67,3107.86,26135964,99.85,0,0,0.14,586.65,3107.88,26135965,99.78,0,0,0.32,587.62,3106.92,26135966,99.71,0,0,0.58,588,3106.54,26135967,99.82,0,0.02,0.15,587.77,3106.77,26135968,99.85,0,0.01,0.18,587.73,3106.8,26135969,99.85,0,0,0.17,587.7,3106.83,26135970,99.81,0,0,0.37,588.19,3106.35,26135971,99.68,0,0,0.52,588.69,3105.85,26135972,99.85,0,0,0.21,587.91,3106.62,26135973,99.84,0,0,0.14,587.88,3106.65,26135974,99.83,0,0,0.15,587.87,3106.65,26135975,99.75,0,0,0.37,588.11,3106.44,26135976,99.7,0,0,0.6,588.55,3105.99,26135977,99.85,0,0,0.16,587.58,3106.95,26135978,99.87,0,0,0.15,587.25,3107.28,26135979,99.76,0,0,0.3,587.72,3106.79,26135980,99.8,0,0,0.32,587.49,3107.03,26135981,99.68,0,0,0.65,587.89,3106.63,26135982,99.85,0,0,0.14,587.68,3106.84,26135983,99.84,0,0,0.15,587.67,3106.84,26135984,99.84,0,0,0.17,587.64,3106.88,26135985,99.77,0,0.01,0.35,587.67,3106.87,26135986,99.69,0,0,0.64,588.14,3106.4,26135987,99.83,0,0,0.2,587.76,3106.78,26135988,99.83,0,0,0.18,587.73,3106.8,26135989,99.84,0,0,0.18,587.7,3106.83,26135990,99.79,0,0,0.33,587.96,3106.58,26135991,99.83,0,0,0.14,587.92,3106.61,26135992,99.68,0,0,0.61,588.64,3105.89,26135993,99.82,0,0,0.16,587.95,3106.58,26135994,99.86,0,0,0.14,587.13,3107.39,26135995,99.79,0,0,0.37,587.37,3107.17,26135996,99.84,0,0,0.14,587.48,3107.05,26135997,99.67,0,0,0.56,587.62,3106.91,26135998,99.83,0,0,0.14,586.51,3108.02,26135999,99.8,0,0,0.14,586.49,3108.03,26136000,99.65,0,0,0.34,586.55,3107.99,26136001,99.85,0,0,0.14,586.48,3108.06,26136002,99.68,0,0,0.57,587.2,3107.33,26136003,99.84,0,0,0.15,586.92,3107.6,26136004,99.83,0,0,0.15,586.89,3107.63,26136005,99.73,0,0,0.34,586.16,3108.37,26136006,99.87,0,0,0.14,586.17,3108.36,26136007,99.72,0,0,0.57,587.58,3106.94,26136008,98.92,0,0,0.14,587.29,3107.23,26136009,99.77,0,0,0.3,587.25,3107.24,26136010,99.78,0,0,0.32,587.5,3107.02,26136011,99.83,0,0,0.16,587.48,3107.03,26136012,99.68,0,0,0.54,587.46,3107.04,26136013,99.83,0,0,0.15,586.7,3107.8,26136014,99.85,0,0,0.14,586.68,3107.81,26136015,99.77,0,0,0.34,587.17,3107.34,26136016,99.83,0,0,0.14,587.15,3107.35,26136017,99.67,0,0,0.61,587.46,3107.04,26136018,99.84,0,0,0.16,587.01,3107.49,26136019,99.8,0,0,0.21,574.61,3119.96,26136020,99.76,0,0,0.42,532.85,3162.08,26136021,99.84,0,0,0.19,532.81,3162.12,26136022,99.71,0,0,0.55,533.06,3161.86,26136023,99.84,0,0,0.14,532.52,3162.4,26136024,99.85,0,0,0.15,532.49,3162.43,26136025,99.77,0,0,0.32,532.76,3162.19,26136026,99.84,0,0,0.16,532.73,3162.22,26136027,99.73,0,0,0.42,533.08,3161.88,26136028,99.85,0,0,0.29,531.4,3163.56,26136029,99.86,0,0,0.14,531.37,3163.58,26136030,99.82,0,0,0.31,532.35,3162.63,26136031,99.88,0,0,0.14,532.34,3162.63,26136032,99.88,0,0,0.17,532.32,3162.64,26136033,99.76,0,0,0.57,533.12,3161.83,26136034,99.88,0,0,0.15,532.77,3162.18,26136035,99.8,0,0,0.36,533.03,3161.94,26136036,99.93,0,0,0.14,533.01,3161.96,26136037,99.89,0,0,0.14,532.99,3161.98,26136038,99.78,0,0,0.56,533.09,3161.87,26136039,99.72,0,0,0.36,532.99,3161.95,26136040,99.9,0,0,0.36,533.04,3161.93,26136041,99.93,0,0,0.16,532.93,3162.04,26136042,99.94,0,0,0.14,532.85,3162.12,26136043,99.8,0,0,0.62,533.17,3161.78,26136044,99.91,0,0,0.18,532.8,3162.16,26136045,99.8,0,0,0.34,532.14,3162.85,26136046,99.94,0,0,0.15,532.05,3162.93,26136047,99.93,0,0,0.16,532.04,3162.93,26136048,99.8,0,0,0.56,532.97,3162,26136049,99.93,0,0,0.16,532.98,3161.99,26136050,99.85,0,0,0.32,532.5,3162.48,26136051,99.93,0,0,0.16,532.46,3162.52,26136052,99.91,0,0,0.14,532.53,3162.44,26136053,99.77,0,0,0.53,533.31,3161.66,26136054,99.93,0,0,0.19,533.08,3161.89,26136055,99.9,0,0,0.31,532.59,3162.39,26136056,99.94,0,0,0.14,532.56,3162.42,26136057,99.93,0,0,0.16,532.53,3162.44,26136058,99.8,0,0,0.57,533,3161.97,26136059,99.94,0,0,0.15,532.98,3161.98,26136060,99.8,0,0,0.32,532.51,3162.47,26136061,99.93,0,0,0.15,532.47,3162.5,26136062,99.94,0,0,0.16,532.45,3162.52,26136063,99.81,0,0,0.43,532.88,3162.09,26136064,99.93,0,0,0.32,532.84,3162.12,26136065,99.87,0,0,0.34,531.87,3163.1,26136066,99.93,0,0,0.16,531.84,3163.13,26136067,99.94,0,0,0.16,531.82,3163.15,26136068,99.8,0,0,0.41,532.24,3162.73,26136069,99.73,0,0,0.45,532.99,3161.95,26136070,99.81,0,0,0.32,533.23,3161.73,26136071,99.93,0,0,0.14,533.22,3161.73,26136072,99.94,0,0,0.17,533.19,3161.76,26136073,99.92,0,0,0.15,533.17,3161.77,26136074,99.78,0,0,0.58,532.93,3162.01,26136075,99.83,0,0,0.34,533.07,3161.88,26136076,99.92,0,0,0.16,533.06,3161.89,26136077,99.92,0,0,0.24,532.8,3162.15,26136078,99.94,0,0,0.14,532.77,3162.17,26136079,99.78,0,0,0.55,533.3,3161.64,26136080,99.88,0,0,0.34,533.23,3161.71,26136081,99.93,0,0,0.16,533.22,3161.73,26136082,99.91,0,0,0.14,533.2,3161.74,26136083,99.9,0,0,0.16,533.18,3161.76,26136084,99.79,0,0,0.54,532.38,3162.55,26136085,99.85,0,0,0.33,531.75,3163.2,26136086,99.9,0,0,0.14,531.87,3163.08,26136087,99.91,0,0,0.16,531.85,3163.09,26136088,99.89,0,0,0.16,531.83,3163.11,26136089,99.77,0,0,0.59,533.02,3161.91,26136090,99.79,0,0,0.32,533.52,3161.42,26136091,99.93,0,0,0.14,533.52,3161.42,26136092,99.93,0,0,0.14,533.49,3161.45,26136093,99.94,0,0,0.16,533.49,3161.45,26136094,99.76,0,0,0.58,533.79,3161.14,26136095,99.83,0,0,0.31,533.46,3161.49,26136096,99.87,0,0,0.16,533.44,3161.5,26136097,99.92,0,0,0.14,533.44,3161.5,26136098,99.92,0,0,0.16,533.58,3161.36,26136099,99.57,0,0,0.57,533.44,3161.47,26136100,99.84,0,0,0.49,533.28,3161.64,26136101,99.91,0,0,0.22,532.91,3162.01,26136102,99.92,0,0,0.18,532.76,3162.16,26136103,99.9,0,0,0.18,532.74,3162.17,26136104,95.1,0.32,0.01,79.61,533.14,3167.89,26136105,99.68,0.01,0.01,181.27,519.96,3182.18,26136106,99.95,0,0,0.33,523.83,3178.09,26136107,99.9,0,0,0.15,523.8,3178.11,26136108,99.95,0,0,0.14,523.79,3178.12,26136109,99.8,0,0,0.39,524.01,3177.93,26136110,99.89,0,0,0.52,522.82,3179.21,26136111,99.95,0,0,0.14,522.82,3179.21,26136112,99.95,0,0,0.16,522.81,3179.21,26136113,99.93,0,0,0.14,522.8,3179.22,26136114,99.94,0,0,0.14,522.77,3179.24,26136115,99.72,0,0,0.73,522.88,3179.15,26136116,99.94,0,0,0.16,522.29,3179.73,26136117,99.92,0,0,0.14,522.26,3179.76,26136118,99.92,0,0,0.16,522.23,3179.79,26136119,99.93,0,0,0.14,522.22,3179.8,26136120,99.64,0,0,0.8,523.2,3178.83,26136121,99.9,0,0,0.18,523.16,3178.86,26136122,99.92,0,0,0.18,523.14,3178.87,26136123,99.94,0,0,0.16,523.14,3178.87,26136124,99.94,0,0,0.14,523.13,3178.87,26136125,99.74,0,0,0.72,523.11,3178.92,26136126,99.92,0,0,0.16,522.63,3179.39,26136127,99.93,0,0,0.15,522.62,3179.39,26136128,99.68,0,0,0.16,522.62,3179.39,26136129,99.84,0,0,0.31,523.09,3178.9,26136130,99.7,0,0,0.73,523.44,3178.56,26136131,99.96,0,0,0.15,522.85,3179.16,26136132,99.95,0,0,0.16,522.84,3179.16,26136133,99.93,0,0,0.14,522.84,3179.16,26136134,99.92,0,0,0.16,522.8,3179.19,26136135,99.73,0,0,0.63,523.92,3178.09,26136136,99.94,0,0,0.27,523.06,3178.94,26136137,99.92,0,0,0.21,523.29,3178.71,26136138,99.95,0,0,0.14,523.27,3178.73,26136139,99.95,0,0,0.15,523.26,3178.73,26136140,99.73,0,0,0.74,523.33,3178.67,26136141,99.95,0,0,0.16,523,3179,26136142,99.9,0,0,0.14,522.99,3179,26136143,99.92,0,0,0.16,522.99,3179,26136144,99.93,0,0,0.16,523.01,3178.98,26136145,99.75,0,0,0.5,523.5,3178.51,26136146,99.93,0,0,0.38,522.91,3179.09,26136147,99.95,0,0,0.16,522.9,3179.09,26136148,99.95,0,0,0.14,522.83,3179.17,26136149,99.96,0,0,0.15,522.37,3179.62,26136150,99.69,0,0,0.51,522.25,3179.76,26136151,99.95,0,0,0.38,521.9,3180.11,26136152,99.95,0,0,0.16,521.87,3180.13,26136153,99.94,0,0,0.14,521.86,3180.14,26136154,99.92,0,0,0.16,521.85,3180.14,26136155,99.8,0.01,0.27,0.35,521.59,3180.42,26136156,99.81,0,0.07,0.62,522.39,3179.6,26136157,99.94,0.01,0.46,0.2,522.1,3179.89,26136158,99.95,0,0,0.16,522.08,3179.9,26136159,99.86,0,0,0.3,522.56,3179.39,26136160,99.83,0,0,0.32,522.4,3179.57,26136161,99.78,0,0,0.56,522.78,3179.19,26136162,99.95,0,0,0.15,522.05,3179.91,26136163,99.95,0,0,0.17,522.02,3179.94,26136164,99.93,0,0,0.14,522.01,3179.94,26136165,99.82,0,0,0.36,521.55,3180.41,26136166,99.78,0,0,0.59,522.53,3179.43,26136167,99.95,0,0,0.15,522.48,3179.48,26136168,99.93,0,0,0.14,522.47,3179.48,26136169,99.94,0,0,0.15,522.47,3179.49,26136170,99.84,0,0,0.33,522.46,3179.51,26136171,99.81,0,0,0.6,522.68,3179.29,26136172,99.94,0,0,0.18,522.14,3179.82,26136173,99.93,0,0,0.18,522.14,3179.82,26136174,99.92,0,0,0.18,522.13,3179.82,26136175,99.88,0,0,0.36,522.37,3179.6,26136176,99.79,0,0,0.45,522.63,3179.34,26136177,99.95,0,0,0.31,522.11,3179.85,26136178,99.94,0,0,0.15,522.08,3179.88,26136179,99.94,0,0,0.15,522.07,3179.88,26136180,99.87,0,0,0.32,522.58,3179.39,26136181,99.75,0,0,0.58,523.28,3178.68,26136182,99.92,0,0,0.16,522.54,3179.42,26136183,99.92,0,0,0.15,522.53,3179.42,26136184,99.95,0,0,0.15,522.52,3179.42,26136185,99.88,0,0,0.34,522.51,3179.45,26136186,99.89,0,0,0.16,522.73,3179.23,26136187,99.87,0,0,0.57,522.86,3179.1,26136188,99.95,0,0,0.14,522.5,3179.45,26136189,99.78,0,0,0.34,522.72,3179.21,26136190,99.83,0,0.01,0.34,521.29,3180.66,26136191,99.93,0,0,0.17,521.22,3180.72,26136192,99.79,0,0,0.57,522.61,3179.33,26136193,99.94,0,0,0.15,522.51,3179.42,26136194,99.95,0,0,0.14,522.63,3179.3,26136195,99.86,0,0,0.33,522.65,3179.29,26136196,99.93,0,0,0.14,522.61,3179.33,26136197,99.77,0,0,0.6,523.16,3178.77,26136198,99.95,0,0,0.14,522.84,3179.09,26136199,99.93,0,0,0.15,522.81,3179.12,26136200,99.83,0,0,0.33,522.89,3179.06,26136201,99.9,0,0,0.14,522.82,3179.12,26136202,99.78,0,0,0.57,522.98,3178.95,26136203,99.91,0,0,0.17,522.54,3179.39,26136204,99.92,0,0,0.15,522.53,3179.39,26136205,99.87,0,0,0.34,522.56,3179.41,26136206,99.94,0,0,0.16,522.53,3179.45,26136207,99.79,0,0,0.58,523.16,3178.81,26136208,99.94,0,0,0.15,522.76,3179.21,26136209,99.95,0,0,0.14,522.75,3179.21,26136210,99.85,0,0,0.35,521.81,3180.17,26136211,99.95,0,0,0.15,521.75,3180.23,26136212,99.8,0,0,0.55,522.4,3179.56,26136213,99.93,0,0,0.15,522.72,3179.24,26136214,99.95,0,0,0.14,522.71,3179.25,26136215,99.88,0,0,0.33,521.49,3180.48,26136216,99.93,0,0,0.14,521.47,3180.5,26136217,99.81,0,0,0.57,522.16,3179.81,26136218,99.95,0,0,0.15,522.63,3179.34,26136219,99.75,0,0,0.34,522.84,3179.1,26136220,99.82,0,0,0.33,521.89,3180.07,26136221,99.89,0,0,0.2,521.87,3180.08,26136222,99.8,0,0,0.41,522.56,3179.39,26136223,99.92,0,0,0.29,522.08,3179.87,26136224,99.9,0,0,0.18,522.07,3179.88,26136225,99.83,0,0,0.36,522.56,3179.42,26136226,99.95,0,0,0.16,522.55,3179.43,26136227,99.91,0,0,0.14,522.55,3179.43,26136228,99.62,0,0,0.56,521.79,3180.17,26136229,99.95,0,0,0.15,521.27,3180.69,26136230,99.87,0,0,0.33,521.29,3180.69,26136231,99.9,0,0,0.16,521.29,3180.69,26136232,99.94,0,0,0.14,521.27,3180.7,26136233,99.8,0,0,0.55,523.26,3178.7,26136234,99.94,0,0,0.15,522.97,3179,26136235,99.87,0.01,0.01,0.33,522.12,3179.86,26136236,99.93,0,0,0.2,522.05,3179.92,26136237,99.95,0,0,0.15,522.02,3179.95,26136238,99.79,0,0,0.55,523.15,3178.81,26136239,99.91,0,0,0.14,522.99,3178.96,26136240,99.8,0,0,0.33,522.05,3179.92,26136241,99.93,0,0,0.15,521.99,3179.98,26136242,99.94,0,0,0.15,521.99,3179.98,26136243,99.8,0,0,0.59,522.74,3179.22,26136244,99.95,0,0,0.14,522.22,3179.74,26136245,99.86,0,0,0.34,522.69,3179.28,26136246,99.94,0,0,0.15,522.7,3179.27,26136247,99.95,0,0,0.16,522.69,3179.27,26136248,99.78,0,0,0.56,522.93,3179.03,26136249,99.82,0,0,0.32,522.96,3178.98,26136250,99.78,0,0,0.36,523.12,3178.83,26136251,99.96,0,0,0.16,523.12,3178.83,26136252,99.93,0,0,0.14,523.11,3178.83,26136253,99.8,0,0,0.5,523.32,3178.61,26136254,99.94,0,0,0.21,522.83,3179.13,26136255,99.89,0,0,0.32,522.84,3179.13,26136256,99.95,0,0,0.15,522.83,3179.14,26136257,99.91,0,0,0.23,522.56,3179.41,26136258,99.78,0,0,0.55,523.04,3178.92,26136259,99.93,0,0,0.17,523.03,3178.92,26136260,99.84,0,0,0.33,522.79,3179.19,26136261,99.9,0,0,0.15,522.78,3179.2,26136262,99.95,0,0,0.14,522.77,3179.2,26136263,99.79,0,0,0.53,523.27,3178.69,26136264,99.95,0,0,0.24,522.98,3178.98,26136265,99.88,0,0,0.34,522.76,3179.23,26136266,99.95,0,0,0.18,522.75,3179.24,26136267,99.92,0,0,0.16,522.72,3179.26,26136268,99.91,0,0,0.15,522.71,3179.27,26136269,99.81,0,0,0.57,522.83,3179.15,26136270,99.81,0,0,0.31,521.99,3180,26136271,99.93,0,0,0.18,522.11,3179.88,26136272,99.93,0,0,0.14,522.13,3179.86,26136273,99.95,0,0,0.16,522.13,3179.86,26136274,99.76,0,0,0.56,523.14,3178.84,26136275,99.83,0,0,0.34,522.17,3179.83,26136276,99.92,0,0,0.15,522.1,3179.89,26136277,99.94,0,0,0.16,522.09,3179.89,26136278,99.92,0,0,0.16,522.06,3179.92,26136279,99.66,0,0,0.72,523.78,3178.18,26136280,99.8,0,0,0.34,522.11,3179.87,26136281,99.91,0,0,0.18,521.9,3180.07,26136282,99.91,0,0,0.14,521.8,3180.17,26136283,99.93,0,0,0.16,521.79,3180.17,26136284,99.78,0,0,0.55,522.87,3179.09,26136285,99.86,0,0,0.33,523,3178.97,26136286,99.93,0,0,0.17,522.99,3178.97,26136287,99.93,0,0,0.14,522.99,3178.98,26136288,99.91,0,0,0.15,522.95,3179,26136289,99.78,0,0,0.55,523.4,3178.55,26136290,99.86,0,0,0.31,523.05,3178.92,26136291,99.94,0,0,0.16,522.98,3178.99,26136292,99.92,0,0,0.14,523.12,3178.85,26136293,99.9,0,0,0.16,523.1,3178.85,26136294,99.78,0,0,0.54,523.43,3178.52,26136295,99.9,0,0,0.38,523.09,3178.88,26136296,99.94,0,0,0.16,523.08,3178.88,26136297,99.93,0,0,0.14,523.07,3178.89,26136298,99.93,0,0,0.16,523.04,3178.91,26136299,99.8,0,0,0.48,523.68,3178.27,26136300,99.13,0,0,6.02,521.67,3181.14,26136301,99.94,0,0,0.16,521.21,3181.62,26136302,99.94,0,0,0.14,520.84,3181.99,26136303,99.9,0,0,0.14,520.83,3182,26136304,99.74,0,0,0.32,521.24,3181.57,26136305,99.78,0,0,0.55,522.54,3180.32,26136306,99.89,0,0,0.13,522.54,3180.33,26136307,99.94,0,0,0.21,522.51,3180.36,26136308,99.93,0,0,0.14,522.5,3180.36,26136309,99.68,0,0,0.57,522.91,3179.94,26136310,99.86,0,0,0.49,522.07,3180.8,26136311,99.93,0,0,0.18,521.99,3180.87,26136312,99.94,0,0,0.18,522.06,3180.8,26136313,99.93,0,0,0.18,522.15,3180.7,26136314,99.95,0,0,0.18,521.91,3180.94,26136315,99.68,0,0,0.78,523.14,3179.73,26136316,99.93,0,0,0.17,522.88,3179.99,26136317,99.89,0,0,0.18,522.85,3180.01,26136318,99.89,0,0,0.15,522.84,3180.02,26136319,99.91,0,0,0.16,522.8,3180.05,26136320,99.71,0,0,0.72,522.23,3180.64,26136321,99.93,0,0,0.18,521.83,3181.04,26136322,99.93,0,0,0.18,521.82,3181.04,26136323,99.93,0,0,0.18,521.79,3181.07,26136324,99.94,0,0,0.18,521.78,3181.07,26136325,99.76,0,0,0.74,523.06,3179.81,26136326,99.97,0,0,0.15,522.75,3180.11,26136327,99.93,0,0,0.16,522.75,3180.11,26136328,99.96,0,0,0.15,522.73,3180.13,26136329,99.95,0,0,0.15,522.71,3180.14,26136330,99.71,0,0,0.71,523.03,3179.84,26136331,99.87,0,0,0.16,522.66,3180.21,26136332,99.94,0,0,0.16,522.63,3180.23,26136333,99.95,0,0,0.14,522.62,3180.23,26136334,99.91,0,0,0.15,522.62,3180.23,26136335,99.73,0,0,0.74,523.16,3179.7,26136336,99.89,0,0,0.19,523.08,3179.77,26136337,99.92,0,0,0.17,523.08,3179.77,26136338,99.93,0,0,0.18,523.07,3179.78,26136339,99.76,0,0,0.35,522.79,3180.04,26136340,99.68,0,0,0.59,523.47,3179.38,26136341,99.88,0,0,0.32,522.41,3180.44,26136342,99.93,0,0,0.16,522.29,3180.56,26136343,99.93,0,0,0.14,522.26,3180.58,26136344,99.95,0,0,0.14,522.25,3180.6,26136345,99.72,0,0,0.48,522.73,3180.14,26136346,99.92,0,0,0.38,522.51,3180.36,26136347,99.92,0,0,0.14,522.48,3180.38,26136348,99.9,0,0,0.16,522.47,3180.38,26136349,99.19,0,0.01,0.17,522.52,3180.33,26136350,99.7,0,0,0.52,523.23,3179.63,26136351,99.91,0,0,0.38,523.09,3179.77,26136352,99.93,0,0,0.17,523.09,3179.77,26136353,99.95,0,0,0.14,523.08,3179.77,26136354,99.93,0,0,0.15,523.05,3179.8,26136355,99.79,0,0,0.33,522.12,3180.75,26136356,99.75,0,0,0.54,523.07,3179.79,26136357,99.91,0,0,0.14,522.8,3180.05,26136358,99.94,0,0,0.17,522.78,3180.07,26136359,99.96,0,0,0.14,522.77,3180.07,26136360,99.83,0,0,0.38,522.3,3180.55,26136361,99.78,0,0,0.58,522.98,3179.87,26136362,99.89,0,0,0.16,522.5,3180.35,26136363,99.9,0,0,0.14,522.49,3180.35,26136364,99.92,0,0,0.17,522.49,3180.35,26136365,99.85,0,0,0.27,522.74,3180.12,26136366,99.76,0,0,0.49,521.94,3180.92,26136367,99.92,0,0,0.21,520.49,3182.35,26136368,99.94,0,0,0.14,520.49,3182.35,26136369,99.82,0,0,0.31,522.65,3180.16,26136370,99.86,0,0,0.26,522.93,3179.9,26136371,99.75,0,0,0.51,522.77,3180.06,26136372,99.89,0,0,0.18,521.97,3180.86,26136373,99.91,0,0,0.16,522.12,3180.7,26136374,99.83,0,0,0.14,522.09,3180.74,26136375,99.76,0,0,0.26,523.08,3179.77,26136376,99.77,0,0,0.5,523,3179.84,26136377,99.91,0,0,0.28,522.09,3180.75,26136378,99.9,0,0,0.14,522.09,3180.75,26136379,99.9,0,0,0.15,522.06,3180.77,26136380,99.85,0,0,0.25,522.32,3180.52,26136381,99.79,0,0,0.46,523,3179.84,26136382,99.92,0,0,0.22,523.05,3179.79,26136383,99.91,0,0,0.17,523.02,3179.82,26136384,99.9,0,0,0.15,523.01,3179.82,26136385,99.71,0,0,0.28,522.12,3180.72,26136386,99.9,0,0,0.17,522.03,3180.81,26136387,99.77,0,0,0.58,522.84,3179.99,26136388,99.92,0,0,0.14,522.49,3180.34,26136389,99.94,0,0,0.14,522.49,3180.34,26136390,99.82,0,0,0.25,521.54,3181.3,26136391,99.93,0,0,0.14,521.48,3181.36,26136392,99.78,0,0,0.59,523.3,3179.53,26136393,99.9,0,0,0.15,522.95,3179.88,26136394,99.9,0,0,0.14,522.92,3179.91,26136395,99.85,0,0,0.3,523.18,3179.67,26136396,99.91,0,0,0.16,523.17,3179.67,26136397,99.78,0,0,0.55,522.63,3180.2,26136398,99.78,0,0,0.16,522.12,3180.71,26136399,99.87,0,0,0.3,522.59,3180.21,26136400,99.81,0,0,0.25,523.1,3179.72,26136401,99.9,0,0,0.18,522.97,3179.85,26136402,99.68,0,0,0.59,523.3,3179.51,26136403,99.81,0,0,0.15,522.82,3179.99,26136404,99.86,0,0,0.14,522.81,3179.99,26136405,99.84,0,0,0.26,522.32,3180.5,26136406,99.89,0,0,0.16,522.31,3180.51,26136407,99.67,0,0,0.5,522.78,3180.03,26136408,99.84,0,0,0.19,522.53,3180.28,26136409,99.82,0,0,0.15,522.51,3180.3,26136410,99.85,0,0,0.25,523.25,3179.57,26136411,99.91,0,0,0.14,523.26,3179.56,26136412,99.75,0,0,0.5,523.58,3179.23,26136413,99.9,0,0,0.2,523.22,3179.59,26136414,99.84,0,0,0.14,523.22,3179.59,26136415,99.8,0,0,0.27,521.62,3181.2,26136416,99.87,0,0,0.14,521.48,3181.34,26136417,99.62,0,0,0.4,522.11,3180.7,26136418,99.85,0,0,0.31,521.47,3181.34,26136419,99.84,0,0,0.17,521.46,3181.35,26136420,99.76,0,0,0.3,522.1,3180.72,26136421,99.9,0,0,0.13,522.12,3180.7,26136422,99.71,0,0,0.42,522.79,3180.02,26136423,99.9,0,0,0.28,523.31,3179.49,26136424,99.89,0,0,0.15,523.3,3179.5,26136425,99.68,0,0,0.26,523.32,3179.5,26136426,99.86,0,0,0.16,523.29,3179.53,26136427,99.87,0,0,0.14,523.28,3179.53,26136428,99.59,0,0,0.57,523.4,3179.41,26136429,99.73,0,0,0.34,523.23,3179.55,26136430,99.77,0,0,0.27,523.25,3179.54,26136431,99.8,0,0,0.16,523.23,3179.56,26136432,99.82,0,0,0.13,523.2,3179.58,26136433,99.68,0,0,0.55,522.83,3179.95,26136434,99.85,0,0,0.15,522.45,3180.33,26136435,99.77,0,0,0.26,522.68,3180.12,26136436,99.85,0,0,0.16,522.68,3180.12,26136437,99.87,0,0,0.2,522.92,3179.88,26136438,99.7,0,0,0.55,523.27,3179.53,26136439,99.86,0,0,0.14,522.93,3179.87,26136440,99.6,0,0,0.27,521.16,3181.65,26136441,99.83,0,0,0.14,521.11,3181.69,26136442,99.83,0,0,0.15,521.08,3181.72,26136443,99.71,0,0,0.55,523.29,3179.5,26136444,99.8,0,0,0.15,523.52,3179.26,26136445,99.68,0,0,0.28,523.52,3179.28,26136446,99.84,0,0,0.15,523.51,3179.29,26136447,99.85,0,0,0.16,523.5,3179.29,26136448,99.68,0,0,0.59,523.74,3179.05,26136449,99.83,0,0,0.18,523.22,3179.57,26136450,99.71,0,0,0.25,523.48,3179.32,26136451,99.84,0,0,0.16,523.48,3179.32,26136452,99.84,0,0,0.14,523.45,3179.34,26136453,99.72,0,0,0.5,523.78,3179.01,26136454,99.84,0,0,0.2,523.43,3179.35,26136455,99.75,0,0,0.26,523.21,3179.59,26136456,99.79,0,0,0.14,523.17,3179.63,26136457,99.84,0,0,0.17,522.3,3180.5,26136458,99.65,0,0,0.4,522.73,3180.06,26136459,99.78,0,0,0.45,522.66,3180.1,26136460,99.79,0,0,0.28,523.01,3179.77,26136461,99.83,0,0,0.15,522.97,3179.81,26136462,99.81,0,0,0.17,522.83,3179.94,26136463,99.73,0,0,0.38,523.55,3179.22,26136464,99.84,0,0,0.34,522.79,3179.97,26136465,99.67,0,0,0.29,522.32,3180.46,26136466,99.86,0,0,0.17,522.31,3180.46,26136467,99.85,0,0,0.14,522.28,3180.49,26136468,99.86,0,0,0.15,522.27,3180.5,26136469,94.49,0.31,0.01,259.59,536.25,3167.52,26136470,99.82,0,0,0.26,525.25,3177.22,26136471,99.8,0,0,0.16,525.26,3177.21,26136472,99.85,0,0,0.14,525.25,3177.21,26136473,99.85,0,0,0.16,525.24,3177.22,26136474,99.58,0,0,0.62,523.62,3178.89,26136475,99.76,0,0,0.27,522.02,3180.53,26136476,99.85,0,0,0.14,521.97,3180.57,26136477,99.8,0,0,0.16,521.97,3180.57,26136478,99.85,0,0,0.16,521.96,3180.57,26136479,99.72,0,0,0.57,523.09,3179.46,26136480,99.73,0,0,0.27,522.64,3179.94,26136481,99.82,0,0,0.14,522.63,3179.95,26136482,99.83,0,0,0.16,522.62,3179.96,26136483,99.83,0,0,0.16,522.59,3179.98,26136484,99.73,0,0,0.56,523.09,3179.48,26136485,99.73,0,0,0.27,522.64,3179.94,26136486,99.83,0,0,0.16,522.56,3180.02,26136487,99.85,0,0,0.14,522.56,3180.02,26136488,99.87,0,0,0.15,522.55,3180.02,26136489,99.61,0,0,0.66,523.4,3179.14,26136490,99.65,0,0,0.32,522.07,3180.49,26136491,99.86,0,0,0.15,522.03,3180.53,26136492,99.87,0,0,0.15,522,3180.55,26136493,99.83,0,0,0.16,521.99,3180.55,26136494,99.64,0,0,0.56,522.54,3180.04,26136495,99.82,0,0,0.28,522.74,3179.87,26136496,99.85,0,0,0.14,522.72,3179.89,26136497,99.83,0,0,0.2,522.71,3179.89,26136498,99.84,0,0,0.14,522.86,3179.74,26136499,99.72,0,0,0.33,523.21,3179.39,26136500,99.83,0,0,0.48,523.12,3179.5,26136501,99.85,0,0,0.16,523.11,3179.5,26136502,99.87,0,0,0.14,523.08,3179.52,26136503,99.86,0,0,0.16,523.08,3179.52,26136504,99.7,0,0,0.31,523.43,3179.17,26136505,99.8,0,0,0.52,523.33,3179.28,26136506,99.84,0,0,0.16,523.3,3179.31,26136507,99.84,0,0,0.15,523.3,3179.31,26136508,99.85,0.01,0,0.16,523.29,3179.31,26136509,99.86,0,0,0.16,523.26,3179.34,26136510,99.62,0,0,0.7,522.49,3180.13,26136511,99.85,0,0,0.14,521.79,3180.82,26136512,99.84,0,0,0.16,521.76,3180.85,26136513,99.85,0,0,0.14,521.76,3180.85,26136514,99.83,0,0,0.15,521.75,3180.85,26136515,99.63,0,0,0.69,523.32,3179.29,26136516,99.85,0,0,0.16,523.21,3179.4,26136517,99.86,0,0,0.15,523.2,3179.4,26136518,99.86,0,0,0.16,523.2,3179.4,26136519,99.75,0,0,0.29,522.96,3179.61,26136520,99.65,0,0,0.7,523.21,3179.38,26136521,99.83,0,0,0.18,522.92,3179.67,26136522,99.83,0,0,0.16,522.62,3179.97,26136523,99.84,0.01,0.01,0.16,522.53,3180.05,26136524,99.86,0,0,0.14,522.49,3180.09,26136525,99.6,0,0,0.69,522.67,3179.92,26136526,99.83,0,0,0.16,522.74,3179.85,26136527,99.86,0,0,0.14,522.72,3179.86,26136528,99.86,0,0,0.15,522.7,3179.88,26136529,99.85,0,0,0.14,522.7,3179.88,26136530,99.2,0,0,0.8,523.92,3178.67,26136531,98.59,0,0,0.18,523.17,3179.41,26136532,99.79,0,0,0.15,523.21,3179.37,26136533,99.85,0,0,0.17,523.34,3179.23,26136534,99.85,0,0,0.14,523.34,3179.23,26136535,99.62,0,0,0.55,523.78,3178.81,26136536,99.85,0,0,0.29,523.32,3179.26,26136537,99.85,0,0,0.14,523.32,3179.26,26136538,99.85,0,0,0.14,523.31,3179.26,26136539,99.83,0,0,0.14,523.29,3179.28,26136540,99.37,0,0,0.67,523.66,3178.93,26136541,99.78,0,0,0.14,523.3,3179.29,26136542,99.84,0,0,0.13,523.29,3179.29,26136543,99.86,0,0,0.16,523.26,3179.32,26136544,99.84,0,0,0.14,523.25,3179.32,26136545,99.63,0,0,0.51,523.16,3179.43,26136546,99.84,0,0.02,0.41,523.22,3179.35,26136547,99.85,0,0,0.15,523.18,3179.39,26136548,99.84,0,0,0.14,523.18,3179.39,26136549,99.75,0,0,0.31,523.18,3179.36,26136550,99.69,0,0,0.32,522.46,3180.09,26136551,99.71,0,0,0.55,523.66,3178.89,26136552,99.01,0,0,0.16,523.39,3179.16,26136553,99.81,0,0,0.17,523.53,3179.01,26136554,99.85,0,0,0.14,523.54,3179.01,26136555,99.72,0,0,0.28,523.12,3179.45,26136556,99.61,0,0,0.59,523.38,3179.19,26136557,99.82,0,0,0.22,523.04,3179.52,26136558,99.84,0,0,0.15,523.02,3179.54,26136559,99.85,0,0,0.14,523.02,3179.54,26136560,99.76,0,0,0.3,523.51,3179.06,26136561,99.68,0,0.02,0.55,523.1,3179.47,26136562,99.86,0,0,0.18,522,3180.57,26136563,99.85,0,0,0.14,521.97,3180.59,26136564,99.84,0,0,0.14,521.97,3180.59,26136565,99.8,0,0,0.28,523.19,3179.38,26136566,99.68,0,0,0.55,523.54,3179.03,26136567,99.86,0,0,0.17,523.18,3179.39,26136568,99.84,0,0,0.14,523.17,3179.39,26136569,99.79,0,0,0.16,523.2,3179.36,26136570,99.76,0.01,0.01,0.34,523.27,3179.3,26136571,99.72,0,0,0.56,523.59,3178.97,26136572,99.84,0,0,0.15,523.22,3179.34,26136573,99.85,0,0,0.15,523.2,3179.36,26136574,99.85,0,0,0.16,523.2,3179.36,26136575,99.77,0,0,0.28,523.45,3179.11,26136576,99.72,0,0,0.42,523.94,3178.62,26136577,99.87,0,0,0.28,523.42,3179.14,26136578,99.85,0,0,0.14,523.41,3179.14,26136579,99.68,0,0,0.39,523.64,3178.89,26136580,99.8,0,0,0.26,523.4,3179.14,26136581,99.7,0,0,0.34,523.55,3179,26136582,99.82,0.02,1.12,0.41,522.7,3179.84,26136583,99.81,0,0,0.18,522.81,3179.73,26136584,99.88,0,0,0.15,522.79,3179.75,26136585,99.8,0,0,0.28,523.77,3178.77,26136586,99.78,0,0,0.55,524.03,3178.51,26136587,99.87,0,0,0.4,523.26,3179.28,26136588,99.88,0,0,0.14,523.25,3179.29,26136589,99.87,0,0,0.15,523.24,3179.29,26136590,99.83,0,0,0.26,523.48,3179.07,26136591,99.88,0,0,0.17,523.48,3179.07,26136592,99.79,0,0,0.54,523.61,3178.93,26136593,99.94,0,0,0.14,523.2,3179.34,26136594,99.93,0,0,0.14,523.18,3179.35,26136595,99.82,0,0,0.31,522.23,3180.31,26136596,99.93,0,0,0.15,522.2,3180.34,26136597,99.82,0,0,0.6,523.19,3179.35,26136598,99.95,0,0,0.14,522.91,3179.63,26136599,99.93,0,0,0.16,522.9,3179.63,26136600,99.77,0,0,0.29,522.74,3179.8,26136601,99.91,0,0,0.14,522.66,3179.88,26136602,99.76,0,0,0.57,523.66,3178.88,26136603,99.92,0,0,0.15,523.8,3178.73,26136604,99.93,0,0,0.14,523.79,3178.74,26136605,99.79,0,0,0.32,522.83,3179.71,26136606,99.95,0,0,0.16,522.8,3179.75,26136607,99.77,0,0,0.49,523.62,3178.91,26136608,99.93,0,0,0.2,523.74,3178.79,26136609,99.78,0,0,0.31,523.73,3178.78,26136610,99.82,0,0,0.26,522.77,3179.76,26136611,99.93,0,0,0.14,522.73,3179.79,26136612,99.76,0,0,0.5,523.13,3179.39,26136613,99.93,0,0,0.19,523.21,3179.3,26136614,99.94,0,0,0.16,523.18,3179.33,26136615,99.85,0,0,0.27,523.2,3179.33,26136616,99.93,0,0,0.14,523.19,3179.35,26136617,99.79,0,0,0.44,523.39,3179.15,26136618,99.95,0,0,0.3,522.91,3179.63,26136619,99.92,0,0,0.14,522.89,3179.64,26136620,99.79,0,0,0.27,521.44,3181.11,26136621,99.93,0,0,0.15,521.45,3181.1,26136622,99.9,0,0,0.14,521.59,3180.95,26136623,99.75,0,0,0.55,522.87,3179.66,26136624,99.9,0,0,0.16,522.54,3179.99,26136625,99.78,0,0,0.27,523.03,3179.52,26136626,99.89,0,0,0.16,523.01,3179.53,26136627,99.91,0,0,0.15,523.01,3179.53,26136628,99.73,0,0,0.55,522.63,3179.9,26136629,99.85,0,0,0.16,522.23,3180.3,26136630,99.81,0,0,0.25,523.21,3179.33,26136631,99.92,0,0,0.14,523.23,3179.32,26136632,99.94,0,0,0.16,523.22,3179.32,26136633,99.74,0,0,0.58,523.34,3179.19,26136634,99.91,0,0,0.14,522.93,3179.59,26136635,99.82,0,0,0.25,522,3180.55,26136636,99.94,0,0,0.16,521.95,3180.58,26136637,99.91,0,0,0.14,521.92,3180.61,26136638,99.79,0,0,0.58,523.12,3179.41,26136639,95.08,40.93,0.08,103.63,529.65,3172.96,26136640,99.65,0,0,78.29,525.55,3136.62,26136641,99.9,0,0,0.23,525.47,3136.69,26136642,99.89,0,0,0.16,525.29,3136.87,26136643,99.8,0,0,0.44,525.74,3136.41,26136644,99.9,0,0,0.31,525.41,3136.75,26136645,99.85,0,0,0.34,523.15,3139.06,26136646,99.94,0,0,0.18,523.14,3139.06,26136647,99.91,0,0,0.14,523.13,3139.07,26136648,99.74,0,0,0.57,523.57,3138.63,26136649,99.93,0,0,0.18,523.34,3138.85,26136650,99.78,0,0,0.31,523.36,3138.86,26136651,99.88,0,0,0.18,523.36,3138.86,26136652,99.85,0,0,0.18,523.34,3138.88,26136653,99.78,0,0,0.58,523.67,3138.54,26136654,99.93,0,0,0.14,523.31,3138.9,26136655,99.78,0,0,0.25,523.09,3139.14,26136656,99.93,0,0,0.14,523.06,3139.16,26136657,99.93,0,0,0.17,523.05,3139.17,26136658,99.7,0,0,0.43,523.73,3138.48,26136659,99.93,0,0,0.28,523.23,3138.98,26136660,99.81,0,0,0.27,522.51,3139.71,26136661,99.95,0,0,0.17,522.47,3139.75,26136662,99.86,0,0,0.14,522.47,3139.75,26136663,99.92,0,0,0.15,522.46,3139.76,26136664,99.75,0,0,0.59,523.48,3138.73,26136665,99.82,0,0,0.32,523.52,3138.71,26136666,99.91,0,0,0.15,523.42,3138.8,26136667,99.93,0,0,0.14,523.39,3138.83,26136668,99.94,0,0,0.16,523.38,3138.83,26136669,99.65,0,0,0.69,523.56,3138.64,26136670,99.8,0,0,0.33,523.38,3138.84,26136671,99.92,0,0,0.13,523.35,3138.86,26136672,99.89,0,0,0.17,523.35,3138.86,26136673,99.9,0,0,0.14,523.35,3138.86,26136674,99.75,0,0,0.56,523.69,3138.55,26136675,99.73,0,0,0.27,523.1,3139.15,26136676,99.93,0,0,0.14,523.08,3139.17,26136677,99.93,0,0,0.18,523.32,3138.93,26136678,99.94,0,0,0.17,523.31,3138.93,26136679,99.78,0,0,0.58,523.69,3138.57,26136680,99.83,0,0,0.26,523.06,3139.22,26136681,99.92,0,0,0.16,523.09,3139.18,26136682,99.92,0,0,0.14,523.23,3139.04,26136683,99.94,0,0,0.15,523.2,3139.06,26136684,99.8,0,0,0.54,523.71,3138.55,26136685,98.6,0,0,15.48,525.29,3137.4,26136686,99.88,0,0,0.19,522.5,3139.81,26136687,99.95,0,0,0.14,522.47,3139.83,26136688,99.92,0,0,0.16,522.47,3139.83,26136689,99.77,0,0,0.44,523.01,3139.28,26136690,99.9,0,0,0.39,523.22,3139.1,26136691,99.93,0,0,0.16,523.19,3139.13,26136692,99.95,0,0,0.14,523.18,3139.13,26136693,99.25,0,0,0.16,523.95,3138.34,26136694,89.04,0,0,193.94,547.86,3132.51,26136695,99.86,0,0,0.43,525.58,3177.4,26136696,99.95,0,0,0.16,525.57,3177.41,26136697,99.93,0,0,0.14,525.56,3177.41,26136698,99.95,0,0,0.14,525.56,3177.41,26136699,99.66,0,0,0.75,525.11,3177.86,26136700,99.85,0,0,0.29,523.35,3179.64,26136701,99.88,0,0,0.19,523.27,3179.73,26136702,99.95,0,0,0.17,523.06,3179.95,26136703,99.9,0,0,0.14,523.05,3179.95,26136704,99.89,0,0,0.14,523.05,3179.96,26136705,99.68,0,0,0.66,524.03,3179,26136706,99.94,0,0,0.18,523.6,3179.43,26136707,99.93,0,0,0.15,523.74,3179.29,26136708,99.91,0,0,0.14,523.74,3179.29,26136709,99.94,0,0,0.15,523.73,3179.29,26136710,99.69,0,0,0.75,523.68,3179.35,26136711,99.87,0,0,0.14,523.22,3179.81,26136712,99.9,0,0,0.13,523.22,3179.81,26136713,99.76,0,0,0.16,523.2,3179.82,26136714,99.9,0,0,0.18,523.18,3179.84,26136715,99.68,0,0,0.72,523.44,3179.59,26136716,99.88,0,0,0.14,523.67,3179.36,26136717,99.92,0,0,0.16,523.64,3179.38,26136718,99.88,0,0,0.14,523.64,3179.38,26136719,99.93,0,0,0.15,523.63,3179.38,26136720,99.64,0,0,0.73,523.84,3179.19,26136721,99.89,0,0,0.15,523.37,3179.66,26136722,99.91,0,0,0.18,523.37,3179.66,26136723,99.93,0,0,0.16,523.36,3179.66,26136724,99.92,0,0,0.14,523.33,3179.68,26136725,99.68,0,0,0.76,523.26,3179.77,26136726,99.94,0,0,0.13,523.58,3179.44,26136727,99.91,0,0,0.16,523.6,3179.42,26136728,99.93,0,0,0.14,523.73,3179.29,26136729,99.81,0,0,0.32,523.96,3179.04,26136730,99.36,0,0,0.67,524.2,3178.81,26136731,99.9,0,0,0.35,523.69,3179.31,26136732,99.93,0,0,0.18,523.68,3179.31,26136733,99.9,0,0,0.18,523.65,3179.34,26136734,99.94,0,0,0.18,523.64,3179.34,26136735,99.71,0,0,0.45,524.23,3178.77,26136736,99.93,0,0,0.43,523.65,3179.35,26136737,99.92,0,0,0.22,523.62,3179.37,26136738,99.9,0,0,0.18,523.61,3179.37,26136739,99.9,0,0,0.18,523.61,3179.37,26136740,99.81,0,0,0.3,523.84,3179.15,26136741,99.77,0,0,0.6,523.51,3179.48,26136742,99.94,0,0,0.18,523.09,3179.89,26136743,99.95,0,0,0.18,523.08,3179.9,26136744,99.93,0,0,0.18,523.05,3179.93,26136745,99.81,0,0,0.28,522.83,3180.17,26136746,99.75,0,0,0.59,523.87,3179.12,26136747,99.94,0,0,0.14,523.56,3179.43,26136748,99.92,0,0,0.14,523.7,3179.28,26136749,99.93,0,0,0.15,523.7,3179.28,26136750,99.81,0,0,0.32,523.94,3179.05,26136751,99.78,0,0,0.54,524.1,3178.88,26136752,99.93,0,0,0.17,523.67,3179.31,26136753,99.88,0,0,0.14,523.66,3179.31,26136754,99.89,0,0,0.16,523.63,3179.34,26136755,99.82,0,0,0.27,522.73,3180.26,26136756,99.7,0,0,0.57,523.67,3179.32,26136757,99.85,0,0,0.15,523.12,3179.86,26136758,99.95,0,0,0.14,523.11,3179.86,26136759,99.78,0,0,0.3,524.07,3178.88,26136760,99.79,0,0,0.27,523.1,3179.87,26136761,99.78,0,0,0.64,523.37,3179.62,26136762,99.9,0,0,0.16,523.09,3179.89,26136763,99.93,0,0,0.14,523.06,3179.92,26136764,99.94,0,0,0.18,523.05,3179.92,26136765,99.88,0,0,0.27,523.07,3179.91,26136766,99.65,0,0,0.55,523.37,3179.61,26136767,99.9,0,0,0.17,522.46,3180.51,26136768,99.89,0,0,0.15,522.47,3180.5,26136769,99.92,0,0,0.16,522.45,3180.52,26136770,99.89,0,0,0.26,522.7,3180.28,26136771,99.79,0,0,0.55,523.14,3179.84,26136772,99.91,0,0,0.14,523.15,3179.82,26136773,99.95,0,0,0.16,523.15,3179.82,26136774,99.93,0,0,0.16,523.14,3179.83,26136775,99.82,0,0,0.27,523.38,3179.61,26136776,99.77,0,0,0.54,523.72,3179.26,26136777,99.93,0,0,0.17,523.37,3179.61,26136778,99.93,0,0,0.15,523.36,3179.62,26136779,99.95,0,0,0.14,523.33,3179.64,26136780,99.75,0,0,0.28,522.14,3180.85,26136781,99.93,0,0,0.15,522.11,3180.87,26136782,99.8,0,0,0.58,523.28,3179.7,26136783,99.93,0,0,0.18,522.81,3180.16,26136784,99.94,0,0,0.18,522.81,3180.16,26136785,99.79,0,0,0.32,523.07,3179.92,26136786,99.88,0,0,0.18,523.06,3179.92,26136787,99.75,0,0,0.55,523.58,3179.4,26136788,99.91,0,0,0.16,523.45,3179.52,26136789,99.71,0,0,0.35,523.7,3179.24,26136790,99.86,0,0,0.38,523.46,3179.49,26136791,99.93,0,0,0.16,523.41,3179.54,26136792,99.76,0,0,0.6,523.76,3179.19,26136793,99.24,0,0,0.2,523.4,3179.54,26136794,99.93,0,0,0.2,523.39,3179.54,26136795,99.79,0,0,0.3,522.67,3180.28,26136796,99.93,0,0,0.18,522.64,3180.31,26136797,99.79,0,0,0.46,523.36,3179.59,26136798,99.91,0,0,0.3,523.34,3179.6,26136799,99.91,0,0,0.17,523.34,3179.6,26136800,99.83,0,0,0.32,523.59,3179.37,26136801,99.92,0,0,0.17,523.57,3179.39,26136802,99.78,0,0,0.46,524.09,3178.86,26136803,99.87,0,0,0.33,523.53,3179.4,26136804,99.93,0,0,0.14,523.52,3179.42,26136805,99.9,0,0,0.27,523.05,3179.9,26136806,99.94,0,0,0.14,523.03,3179.92,26136807,99.8,0,0,0.55,523.35,3179.59,26136808,99.94,0,0,0.21,523.02,3179.92,26136809,99.86,0,0,0.14,523.18,3179.75,26136810,99.83,0,0,0.32,522.45,3180.5,26136811,99.92,0,0,0.16,522.42,3180.52,26136812,99.78,0,0,0.42,522.86,3180.08,26136813,99.93,0,0,0.28,522.9,3180.04,26136814,99.93,0,0,0.14,522.87,3180.06,26136815,99.83,0,0,0.28,523.86,3179.09,26136816,99.93,0,0,0.15,523.86,3179.08,26136817,99.8,0,0,0.3,524.18,3178.76,26136818,99.91,0,0,0.39,523.33,3179.6,26136819,99.78,0,0,0.35,523.58,3179.33,26136820,99.86,0,0,0.27,522.87,3180.05,26136821,99.88,0,0,0.16,522.79,3180.13,26136822,99.9,0,0,0.18,522.57,3180.35,26136823,99.68,0,0,0.55,522.9,3180.01,26136824,99.91,0,0,0.16,522.31,3180.59,26136825,99.84,0,0,0.29,523.54,3179.38,26136826,99.91,0,0,0.16,523.53,3179.39,26136827,99.9,0,0,0.14,523.52,3179.39,26136828,99.79,0,0,0.54,523.87,3179.04,26136829,99.91,0,0,0.13,523.48,3179.43,26136830,99.82,0,0,0.27,522.4,3180.52,26136831,99.91,0,0,0.14,522.37,3180.55,26136832,99.93,0,0,0.16,522.41,3180.5,26136833,94.91,0.37,0.01,258.71,537.51,3165.34,26136834,97.48,0,0,0.39,526.15,3177.58,26136835,99.81,0,0,0.3,525.21,3178.53,26136836,99.93,0,0,0.14,525.15,3178.59,26136837,99.93,0,0,0.15,525.14,3178.59,26136838,99.8,0,0,0.46,524.58,3179.17,26136839,99.93,0,0,0.36,522.47,3181.3,26136840,99.76,0,0,0.28,522.71,3181.08,26136841,99.93,0,0,0.16,522.7,3181.08,26136842,99.9,0,0,0.15,522.7,3181.08,26136843,99.71,0,0,0.61,523.36,3180.42,26136844,99.92,0,0,0.18,523.58,3180.21,26136845,99.79,0,0,0.29,524.09,3179.72,26136846,99.9,0,0,0.17,524.09,3179.72,26136847,99.92,0,0,0.14,524.06,3179.74,26136848,99.8,0,0,0.57,524.25,3179.55,26136849,99.86,0,0,0.32,523.75,3180.02,26136850,99.78,0,0,0.28,523.78,3180.01,26136851,99.88,0,0,0.13,523.77,3180.01,26136852,99.87,0,0,0.16,523.77,3180.01,26136853,99.74,0,0,0.55,524.03,3179.74,26136854,99.9,0,0,0.18,523.24,3180.54,26136855,99.79,0,0,0.3,523.98,3179.8,26136856,99.92,0,0,0.15,523.98,3179.8,26136857,99.86,0,0,0.2,523.95,3179.83,26136858,99.93,0,0,0.16,523.95,3179.83,26136859,99.71,0,0,0.55,524.08,3179.69,26136860,99.76,0,0,0.29,523.02,3180.77,26136861,99.93,0,0,0.16,522.94,3180.84,26136862,99.92,0,0,0.14,522.94,3180.84,26136863,99.92,0,0,0.16,522.93,3180.84,26136864,99.79,0,0,0.59,524.24,3179.53,26136865,99.81,0,0,0.3,522.9,3180.89,26136866,99.9,0,0,0.14,522.84,3180.94,26136867,99.91,0,0,0.17,522.81,3180.96,26136868,99.9,0,0,0.14,522.81,3180.96,26136869,99.76,0,0,0.58,523.31,3180.46,26136870,99.78,0,0,0.32,523.27,3180.51,26136871,99.91,0,0,0.16,523.28,3180.5,26136872,99.9,0,0,0.14,523.27,3180.5,26136873,99.9,0,0,0.15,523.26,3180.51,26136874,99.75,0.01,0.25,0.57,523.28,3180.49,26136875,99.85,0,0,0.35,524.02,3179.76,26136876,99.9,0,0.01,0.16,524.01,3179.77,26136877,99.87,0.03,1.49,0.18,523.99,3179.78,26136878,99.92,0,0,0.19,523.98,3179.78,26136879,99.62,0,0,0.69,524.21,3179.53,26136880,99.88,0,0,0.29,523.97,3179.79,26136881,99.87,0,0,0.21,523.91,3179.84,26136882,99.92,0,0,0.14,523.46,3180.29,26136883,99.92,0,0,0.15,523.44,3180.3,26136884,99.8,0,0,0.57,524.14,3179.6,26136885,99.76,0,0,0.33,522.73,3181.02,26136886,99.92,0,0,0.18,522.8,3180.95,26136887,99.9,0,0,0.15,522.86,3180.89,26136888,99.93,0,0,0.15,522.86,3180.89,26136889,99.75,0,0,0.56,523.34,3180.4,26136890,99.74,0,0,0.36,523.34,3180.41,26136891,99.91,0,0,0.18,523.32,3180.43,26136892,99.89,0,0,0.14,523.3,3180.44,26136893,99.88,0.02,2.03,0.3,523.23,3180.5,26136894,99.56,0.12,27.86,0.77,524.14,3179.58,26136895,99.41,0.27,66.93,0.42,525,3178.72,26136896,99.86,0,0.01,0.19,524.25,3179.47,26136897,99.9,0,0,0.14,524.24,3179.47,26136898,99.88,0,0,0.17,524.22,3179.49,26136899,99.89,0,0,0.15,524.2,3179.5,26136900,99.4,0,0,0.67,523.41,3180.31,26136901,99.9,0.01,0.1,0.2,522.68,3181.04,26136902,99.88,0,0,0.15,522.66,3181.06,26136903,99.88,0,0,0.14,522.63,3181.08,26136904,99.92,0,0,0.15,522.63,3181.08,26136905,99.68,0,0,0.74,524.59,3179.14,26136906,99.83,0,0,0.14,524.03,3179.69,26136907,99.86,0,0,0.15,524.03,3179.69,26136908,99.91,0,0,0.14,523.99,3179.72,26136909,99.81,0,0,0.36,523.97,3179.71,26136910,99.68,0,0,0.68,524.39,3179.32,26136911,99.9,0,0,0.16,524.2,3179.51,26136912,99.92,0,0,0.14,524.2,3179.51,26136913,99.88,0.01,0.28,0.15,524.19,3179.52,26136914,99.83,0.01,0.76,0.2,524.18,3179.54,26136915,99.67,0,0,0.66,524.55,3179.19,26136916,99.92,0,0,0.2,524.17,3179.57,26136917,99.9,0,0,0.2,524.16,3179.57,26136918,99.91,0,0,0.15,524.15,3179.57,26136919,99.9,0,0,0.15,524.14,3179.58,26136920,99.73,0,0,0.68,523.98,3179.77,26136921,99.87,0,0,0.15,523.39,3180.34,26136922,99.9,0,0,0.16,523.39,3180.34,26136923,99.91,0,0,0.15,523.37,3180.36,26136924,99.86,0.02,2.13,0.2,523.39,3180.33,26136925,99.67,0.02,2.76,0.93,524.02,3179.7,26136926,99.91,0,0,0.24,522.87,3180.84,26136927,99.92,0,0,0.13,522.87,3180.84,26136928,99.89,0,0,0.16,522.86,3180.84,26136929,99.89,0.01,0.1,0.18,522.84,3180.85,26136930,99.63,0,0,0.56,523.57,3180.13,26136931,99.9,0,0,0.37,523.42,3180.28,26136932,99.92,0,0,0.15,523.41,3180.28,26136933,99.86,0,0,0.14,523.41,3180.28,26136934,99.89,0,0,0.16,523.37,3180.31,26136935,99.61,0,0,0.58,523.17,3180.54,26136936,99.91,0,0,0.32,523.63,3180.07,26136937,99.9,0,0,0.16,523.63,3180.07,26136938,99.92,0,0,0.14,523.62,3180.07,26136939,99.76,0,0,0.41,523.35,3180.32,26136940,99.84,0,0,0.28,522.64,3181.04,26136941,99.73,0,0,0.58,524.21,3179.46,26136942,99.91,0,0,0.15,523.07,3180.61,26136943,99.88,0,0,0.14,523.06,3180.61,26136944,99.93,0,0,0.15,523.06,3180.62,26136945,99.83,0.01,0.1,0.33,523.18,3180.52,26136946,99.76,0,0,0.56,524,3179.69,26136947,99.89,0,0,0.16,523.41,3180.28,26136948,99.93,0,0,0.14,523.4,3180.29,26136949,99.92,0,0,0.14,523.4,3180.29,26136950,99.88,0,0,0.28,523.42,3180.28,26136951,99.75,0,0,0.54,523.87,3179.83,26136952,99.95,0,0,0.14,523.62,3180.07,26136953,99.92,0,0,0.16,523.61,3180.07,26136954,99.91,0,0,0.14,523.61,3180.08,26136955,99.47,0,0,0.29,523.35,3180.35,26136956,99.51,0.1,28.32,0.58,523.54,3180.15,26136957,99.74,0.1,20.5,0.2,523.15,3180.53,26136958,99.92,0,0,0.17,522.88,3180.8,26136959,99.95,0,0,0.16,522.87,3180.8,26136960,99.83,0,0,0.3,523.33,3180.34,26136961,99.77,0,0,0.51,523.79,3179.89,26136962,99.89,0,0,0.22,523.58,3180.09,26136963,99.92,0,0,0.14,523.58,3180.09,26136964,99.9,0,0,0.16,523.54,3180.12,26136965,99.87,0,0,0.29,523.56,3180.12,26136966,99.76,0,0,0.41,524.33,3179.35,26136967,99.83,0,0,0.29,523.8,3179.88,26136968,99.91,0,0,0.15,523.76,3179.91,26136969,99.83,0,0,0.27,523.8,3179.85,26136970,99.8,0,0,0.29,523.97,3179.69,26136971,91.46,0,0,0.35,524.37,3179.29,26136972,99.9,0,0,0.36,523.7,3179.96,26136973,99.88,0.06,2.23,0.22,523.69,3179.95,26136974,99.9,0,0,0.14,523.66,3179.97,26136975,99.78,0,0,0.3,522.47,3181.18,26136976,99.76,0,0,0.32,522.82,3180.83,26136977,99.85,0,0,0.43,523.39,3180.25,26136978,99.89,0,0,0.14,523.39,3180.25,26136979,99.83,0,0,0.14,523.37,3180.27,26136980,99.79,0,0,0.34,523.9,3179.75,26136981,99.85,0,0,0.15,523.86,3179.79,26136982,99.68,0,0,0.57,523.53,3180.11,26136983,99.86,0,0,0.14,523.08,3180.56,26136984,99.85,0,0,0.17,523.07,3180.56,26136985,99.76,0,0,0.3,523.56,3180.08,26136986,99.85,0,0,0.17,523.56,3180.09,26136987,99.6,0.01,0.03,0.57,524.56,3179.07,26136988,99.83,0.01,0.04,0.22,528.91,3174.56,26136989,99.83,0,0,0.14,529.84,3173.6,26136990,99.75,0,0,0.29,530.92,3172.54,26136991,99.78,0,0,0.15,530.93,3172.52,26136992,99.7,0,0,0.4,532.11,3171.34,26136993,99.84,0,0,0.32,532.12,3171.32,26136994,99.85,0,0,0.15,532.1,3171.34,26136995,99.8,0,0,0.3,531.62,3171.84,26136996,99.86,0,0,0.14,531.6,3171.85,26136997,99.71,0,0,0.54,531.92,3171.52,26136998,99.83,0,0,0.14,531.55,3171.9,26136999,99.75,0,0,0.36,531.53,3171.89,26137000,99.75,0.02,0.07,0.3,531.78,3171.65,26137001,99.78,0.09,2.16,0.36,531.8,3171.59,26137002,99.71,0,0.01,0.44,531.79,3171.58,26137003,99.84,0,0,0.3,531.75,3171.62,26137004,99.84,0,0,0.19,531.72,3171.66,26137005,99.76,0,0,0.37,532.22,3171.17,26137006,99.83,0.01,0.01,0.23,532.35,3171.05,26137007,99.71,0.03,0,0.63,532.64,3170.76,26137008,99.76,0.07,0.01,0.34,532.73,3170.62,26137009,80.49,0.05,1.31,4.69,1030.97,2671.98,26137010,81.27,0.02,0.03,4.27,877.92,2825,26137011,99.78,0.03,1.28,0.73,1028.58,2674.37,26137012,99.46,0.01,0.27,0.43,620.28,3082.67,26137013,99.83,0,0.01,0.44,583.85,3119.09,26137014,81.26,0.05,1.32,4.49,956.42,2746.47,26137015,81.47,0.07,1.32,4.79,1042.21,2660.67,26137016,80.1,0.11,3.61,4.64,1047.7,2655.16,26137017,99.53,0.01,0,0.19,593.15,3109.73,26137018,99.65,0.01,0,0.7,586.22,3116.65,26137019,81.32,0.06,1.31,4.41,889,2813.83,26137020,99.69,0,0,0.36,1051.15,2651.73,26137021,99.64,0,0,0.17,645.86,3057.01,26137022,99.83,0,0,0.14,583.48,3119.39,26137023,99.69,0,0,0.59,584.63,3118.23,26137024,99.79,0,0,0.14,584.4,3118.46,26137025,99.7,0,0,0.3,583.7,3119.18,26137026,99.85,0,0,0.14,583.64,3119.23,26137027,99.78,0.02,0.01,0.23,583.64,3119.22,26137028,99.64,0,0,0.59,585.44,3117.41,26137029,99.8,0,0,0.29,585.22,3117.62,26137030,99.78,0,0.01,0.3,585.45,3117.4,26137031,99.8,0.01,0.01,0.18,585.43,3117.42,26137032,99.76,0,0,0.17,585.37,3117.47,26137033,81.29,0.03,0.06,4.42,736.49,2966.31,26137034,99.69,0,0.01,0.53,939.34,2763.48,26137035,99.8,0,0,0.32,583.73,3119.11,26137036,99.82,0,0,0.18,583.7,3119.13,26137037,99.83,0,0,0.21,583.92,3118.91,26137038,99.72,0,0,0.58,584.14,3118.69,26137039,99.83,0,0,0.2,583.14,3119.69,26137040,99.73,0,0,0.37,583.87,3118.97,26137041,99.85,0,0,0.16,583.85,3118.98,26137042,99.84,0,0,0.14,583.84,3118.99,26137043,99.71,0,0,0.56,584.21,3118.62,26137044,99.82,0,0,0.16,584.23,3118.59,26137045,99.75,0,0,0.3,584.23,3118.6,26137046,99.84,0,0,0.13,584.22,3118.62,26137047,99.85,0,0,0.16,584.19,3118.64,26137048,99.71,0,0,0.4,584.57,3118.26,26137049,99.83,0.01,0.02,0.33,584.37,3118.45,26137050,99.67,0.02,1.2,0.36,584.14,3118.69,26137051,99.84,0,0.07,0.18,583.94,3118.89,26137052,99.83,0,0,0.15,583.63,3119.19,26137053,99.83,0,0.23,0.26,583.69,3119.13,26137054,99.65,0.01,0.4,0.61,584.53,3118.27,26137055,99.68,0.01,1.39,0.31,583.99,3118.83,26137056,99.82,0.01,0.82,0.29,583.79,3119.01,26137057,99.83,0,0,0.16,583.95,3118.85,26137058,99.81,0.05,1.86,0.21,583.95,3118.84,26137059,99.63,0,0.01,0.73,584.74,3118.01,26137060,99.76,0,0,0.29,584.41,3118.36,26137061,99.81,0,0,0.18,584.4,3118.37,26137062,99.8,0,0,0.21,584.13,3118.64,26137063,99.83,0,0,0.16,584.1,3118.66,26137064,99.66,0,0,0.71,584.79,3117.96,26137065,99.71,0.04,1.44,0.39,584.57,3118.19,26137066,99.78,0,0.02,0.18,584.67,3118.09,26137067,99.84,0,0,0.16,584.66,3118.09,26137068,99.83,0,0,0.15,584.61,3118.14,26137069,99.64,0,0,0.57,584.2,3118.55,26137070,99.77,0,0,0.29,584.09,3118.68,26137071,99.83,0.01,0.01,0.2,584.12,3118.64,26137072,99.76,0,0,0.16,584.14,3118.62,26137073,99.85,0,0,0.17,584.1,3118.65,26137074,99.68,0.01,0.14,0.55,584.64,3118.11,26137075,99.78,0,0,0.3,584.4,3118.37,26137076,99.78,0.02,2.15,0.2,583.9,3118.85,26137077,99.8,0.01,1.27,0.21,583.86,3118.88,26137078,99.81,0,0,0.21,583.9,3118.82,26137079,99.7,0,0,0.43,584.31,3118.4,26137080,99.73,0,0,0.42,584.13,3118.6,26137081,99.83,0,0,0.16,584.11,3118.62,26137082,99.82,0,0,0.15,584.09,3118.64,26137083,99.83,0,0,0.16,584.07,3118.65,26137084,99.7,0,0,0.43,584.73,3117.99,26137085,99.77,0,0,0.43,583.8,3118.93,26137086,99.81,0,0,0.14,583.77,3118.96,26137087,99.8,0,0,0.16,583.48,3119.24,26137088,99.81,0,0,0.16,582.91,3119.8,26137089,99.71,0,0,0.32,583.63,3119.06,26137090,99.45,0,0,0.69,581.85,3120.85,26137091,99.85,0,0,0.14,581.52,3121.18,26137092,99.82,0.05,1.75,0.28,581.66,3121.04,26137093,99.84,0,0.12,0.21,581.58,3121.1,26137094,99.84,0,0.01,0.18,581.54,3121.13,26137095,99.43,0.08,3.07,0.71,583.9,3118.78,26137096,99.83,0,0.01,0.22,583.68,3119,26137097,99.8,0,0,0.22,583.63,3119.04,26137098,99.75,0,0,0.15,583.62,3119.05,26137099,99.83,0,0,0.14,583.58,3119.08,26137100,99.55,0,0,0.72,584.7,3117.98,26137101,99.72,0.11,3.95,0.41,584.36,3118.29,26137102,99.8,0,0,0.14,584.3,3118.31,26137103,99.81,0,0,0.14,584.27,3118.34,26137104,99.85,0,0,0.14,584.25,3118.36,26137105,99.62,0,0,0.68,584.87,3117.77,26137106,99.86,0,0,0.14,584.13,3118.5,26137107,99.83,0,0,0.16,583.48,3119.15,26137108,99.76,0.11,3.15,0.35,583.55,3119.05,26137109,99.8,0,0.01,0.25,583.4,3119.17,26137110,99.57,0.05,2.21,0.77,583.61,3118.96,26137111,99.79,0,0.04,0.21,583.01,3119.54,26137112,99.83,0,0,0.15,583,3119.56,26137113,99.78,0,0,0.14,582.96,3119.59,26137114,99.8,0.07,3.05,0.2,582.94,3119.6,26137115,99.58,0,0,0.75,583.9,3118.65,26137116,99.85,0,0,0.16,583.4,3119.15,26137117,99.83,0,0,0.14,583.38,3119.16,26137118,99.79,0,0,0.15,583.34,3119.19,26137119,99.71,0,0,0.3,583.71,3118.8,26137120,99.57,0,0,0.65,584.03,3118.49,26137121,99.83,0,0,0.22,584,3118.52,26137122,99.75,0,0,0.18,583.75,3118.76,26137123,99.85,0,0,0.16,583.71,3118.79,26137124,99.76,0,0,0.15,583.7,3118.8,26137125,99.59,0,0,0.57,584.04,3118.48,26137126,99.84,0,0,0.27,583.44,3119.08,26137127,99.83,0,0,0.17,583.2,3119.31,26137128,99.84,0,0,0.14,583.14,3119.37,26137129,99.84,0,0,0.16,583.12,3119.39,26137130,99.77,0,0,0.33,583.47,3119.05,26137131,99.66,0,0,0.58,583.88,3118.63,26137132,99.85,0,0,0.14,583.49,3119.02,26137133,99.78,0,0.01,0.16,583.48,3119.02,26137134,99.85,0,0,0.16,583.42,3119.08,26137135,99.73,0,0,0.31,583.74,3118.78,26137136,99.69,0,0,0.54,584.01,3118.51,26137137,99.84,0,0,0.16,583.63,3118.88,26137138,99.81,0,0,0.14,583.61,3118.89,26137139,99.82,0,0,0.15,583.68,3118.82,26137140,99.67,0,0,0.32,583.05,3119.46,26137141,99.7,0,0,0.55,584.45,3118.06,26137142,99.82,0.01,0.02,0.17,583.95,3118.56,26137143,99.84,0,0,0.19,583.95,3118.55,26137144,99.88,0,0,0.14,583.73,3118.77,26137145,99.8,0,0,0.3,583.69,3118.83,26137146,99.75,0,0,0.55,583.82,3118.69,26137147,99.92,0,0,0.14,583.46,3119.05,26137148,99.9,0,0,0.16,583.42,3119.08,26137149,99.7,0,0,0.27,583.65,3118.83,26137150,99.85,0,0,0.31,583.9,3118.6,26137151,99.78,0,0,0.55,584.07,3118.42,26137152,99.9,0,0,0.18,583.6,3118.89,26137153,99.89,0,0,0.14,583.67,3118.82,26137154,99.88,0,0,0.16,583.56,3118.95,26137155,99.84,0,0,0.3,583.5,3119.04,26137156,99.45,0,0,0.49,584.03,3118.51,26137157,99.92,0.04,1.53,0.25,583.94,3118.59,26137158,99.91,0,0.03,0.28,583.36,3119.16,26137159,99.9,0,0,0.14,583.32,3119.19,26137160,99.78,0,0,0.29,582.77,3119.76,26137161,99.74,0,0,0.55,583.77,3118.75,26137162,99.92,0,0,0.16,583.7,3118.81,26137163,99.88,0,0,0.14,583.68,3118.84,26137164,99.88,0,0,0.16,583.64,3118.87,26137165,99.8,0,0,0.3,582.54,3119.99,26137166,99.8,0,0,0.43,582.32,3120.2,26137167,99.93,0,0,0.31,582.86,3119.65,26137168,99.9,0,0,0.14,582.83,3119.68,26137169,99.92,0,0,0.14,582.99,3119.51,26137170,99.73,0,0,0.31,582.04,3120.47,26137171,99.91,0,0,0.16,581.98,3120.54,26137172,99.76,0,0,0.56,583.2,3119.31,26137173,99.9,0,0,0.15,582.93,3119.58,26137174,99.9,0,0,0.15,582.92,3119.59,26137175,99.86,0,0,0.36,583.38,3119.13,26137176,99.9,0,0,0.16,583.39,3119.13,26137177,99.71,0,0,0.56,583.48,3119.02,26137178,99.93,0,0,0.17,583.1,3119.4,26137179,99.81,0,0,0.29,583.55,3118.93,26137180,99.79,0,0,0.29,582.69,3119.81,26137181,99.88,0,0,0.17,582.76,3119.72,26137182,99.76,0,0,0.59,584.47,3118.02,26137183,99.9,0,0,0.14,583.95,3118.52,26137184,99.88,0,0.01,0.2,583.93,3118.56,26137185,99.78,0,0,0.32,584.16,3118.35,26137186,99.91,0,0,0.14,583.36,3119.15,26137187,99.75,0,0,0.51,583.49,3119.02,26137188,99.9,0,0,0.21,583.1,3119.4,26137189,99.9,0.03,1.8,0.24,583.1,3119.39,26137190,99.78,0,0.02,0.46,582.87,3119.63,26137191,99.93,0,0,0.14,582.83,3119.67,26137192,99.66,0.03,1.1,0.6,584.03,3118.47,26137193,99.92,0,0,0.26,584.22,3118.26,26137194,89.66,0.02,0.01,2.92,644.39,3058.07,26137195,90.64,0.07,2.35,5.29,1076.88,2625.57,26137196,99.72,0,0,0.14,876.08,2826.38,26137197,94.48,0.46,0.01,79.18,598.34,3104.1,26137198,99.65,0,0,182.19,588.25,3113.4,26137199,99.91,0,0.01,0.15,588.21,3113.43,26137200,99.67,0,0,0.37,587.01,3114.64,26137201,99.83,0,0,0.18,586.97,3114.68,26137202,99.74,0,0,0.66,587.42,3114.23,26137203,99.93,0,0,0.16,585.91,3115.78,26137204,99.92,0,0,0.16,585.89,3115.79,26137205,99.87,0,0,0.32,586.37,3115.33,26137206,99.85,0,0,0.16,586.35,3115.35,26137207,99.78,0,0,0.31,586.77,3114.92,26137208,99.94,0,0,0.38,586.06,3115.64,26137209,99.84,0,0,0.28,586.27,3115.39,26137210,99.86,0,0,0.36,585.57,3116.13,26137211,99.9,0,0,0.13,585.55,3116.14,26137212,99.84,0,0,0.14,585.68,3116,26137213,99.74,0,0,0.55,586.6,3115.08,26137214,99.92,0,0,0.14,585.66,3116.03,26137215,99.78,0.02,0.27,0.45,583.93,3117.78,26137216,99.87,0,0,0.18,583.83,3117.88,26137217,99.89,0,0,0.19,584.06,3117.64,26137218,99.77,0,0,0.57,586.3,3115.39,26137219,99.88,0,0,0.16,586.27,3115.42,26137220,99.8,0,0,0.32,586.42,3115.29,26137221,99.91,0,0,0.13,586.4,3115.3,26137222,99.93,0,0,0.16,586.37,3115.32,26137223,99.72,0,0,0.55,587.46,3114.24,26137224,99.91,0,0,0.16,586.83,3114.86,26137225,99.72,0,0,0.36,584.96,3116.74,26137226,99.88,0,0,0.18,584.84,3116.86,26137227,99.89,0,0.01,0.15,584.83,3116.86,26137228,99.78,0,0,0.59,586.41,3115.28,26137229,99.93,0,0,0.18,586.73,3114.96,26137230,99.81,0,0,0.35,586.17,3115.53,26137231,99.91,0,0,0.18,585.77,3115.93,26137232,99.92,0,0.01,0.2,585.67,3116.03,26137233,99.77,0,0.01,0.64,586.05,3115.64,26137234,99.91,0,0,0.23,585.83,3115.85,26137235,99.89,0,0,0.33,585.57,3116.12,26137236,99.89,0,0,0.15,585.57,3116.13,26137237,99.91,0,0,0.14,585.53,3116.16,26137238,99.79,0,0,0.51,585.86,3115.83,26137239,99.8,0,0,0.38,586.16,3115.5,26137240,99.84,0,0,0.37,586.4,3115.28,26137241,99.88,0,0,0.14,586.39,3115.29,26137242,99.83,0,0,0.32,585.94,3115.73,26137243,99.75,0,0,0.72,586.45,3115.22,26137244,99.88,0,0,0.2,585.57,3116.09,26137245,99.78,0,0,0.34,586.29,3115.39,26137246,99.87,0,0,0.15,586.27,3115.41,26137247,99.89,0,0,0.14,586.29,3115.38,26137248,99.91,0,0,0.16,586.42,3115.25,26137249,99.76,0,0,0.67,586.79,3114.87,26137250,99.85,0,0,0.32,584.45,3117.23,26137251,99.92,0,0,0.15,584.39,3117.3,26137252,99.93,0,0,0.16,584.36,3117.33,26137253,99.91,0,0,0.15,584.33,3117.36,26137254,99.76,0,0,0.54,585.9,3115.78,26137255,99.83,0,0,0.36,586.02,3115.68,26137256,99.87,0,0,0.16,586.04,3115.65,26137257,99.87,0,0,0.14,586.15,3115.53,26137258,99.88,0,0,0.15,586.14,3115.54,26137259,99.73,0,0,0.57,587.02,3114.66,26137260,99.69,0,0,0.34,585.48,3116.21,26137261,99.83,0,0,0.13,585.34,3116.34,26137262,99.93,0,0,0.18,585.31,3116.37,26137263,99.89,0,0,0.17,585.3,3116.38,26137264,98.13,0,0,0.56,586.3,3115.37,26137265,99.81,0,0,0.33,586.89,3114.79,26137266,99.85,0,0,0.17,586.88,3114.8,26137267,99.88,0,0,0.14,586.85,3114.82,26137268,99.81,0.02,0.07,0.21,586.53,3115.15,26137269,99.53,0,0,0.66,586.1,3115.55,26137270,99.78,0,0,0.31,584.7,3116.97,26137271,99.86,0,0,0.14,584.63,3117.04,26137272,99.88,0,0,0.16,584.62,3117.04,26137273,99.89,0,0,0.15,584.59,3117.07,26137274,99.73,0,0,0.5,585.64,3116.05,26137275,99.82,0,0,0.35,586.05,3115.68,26137276,99.9,0,0,0.17,586.04,3115.68,26137277,99.49,0,0,0.18,586.25,3115.46,26137278,99.88,0,0,0.15,586.24,3115.47,26137279,99.75,0,0,0.57,587.07,3114.64,26137280,99.81,0,0,0.3,586.85,3114.87,26137281,99.9,0,0,0.14,586.9,3114.81,26137282,99.9,0,0,0.14,586.87,3114.84,26137283,99.9,0,0,0.16,586.85,3114.86,26137284,99.73,0,0,0.55,587.19,3114.52,26137285,99.78,0,0,0.31,586.82,3114.91,26137286,99.9,0,0,0.15,586.79,3114.93,26137287,99.85,0,0,0.16,586.43,3115.28,26137288,99.85,0,0,0.15,586,3115.71,26137289,99.75,0,0,0.55,586.48,3115.22,26137290,99.77,0,0,0.3,586.17,3115.56,26137291,99.89,0,0,0.14,586.14,3115.58,26137292,99.78,0.09,0.31,0.16,586.16,3115.27,26137293,99.55,0.22,0.82,0.25,586.2,3111.67,26137294,99.9,0,0,0.15,586.34,3109.7,26137295,99.49,0,0,0.71,585.89,3110.18,26137296,99.87,0,0,0.16,585.08,3110.98,26137297,99.85,0,0,0.14,585.05,3111.01,26137298,99.85,0.01,0.15,0.21,585.03,3111.03,26137299,99.77,0,0,0.4,586.7,3109.32,26137300,99.61,0,0,0.77,587.13,3108.91,26137301,99.89,0,0,0.16,586.72,3109.32,26137302,99.87,0,0,0.17,586.53,3109.51,26137303,99.89,0,0,0.14,586.6,3109.43,26137304,99.9,0,0,0.16,586.58,3109.45,26137305,99.63,0,0,0.71,587.41,3108.64,26137306,99.9,0,0,0.14,587.05,3108.99,26137307,99.89,0,0,0.16,586.36,3109.68,26137308,99.85,0.05,0.12,0.42,586.29,3109.74,26137309,99.89,0,0,0.17,586.23,3109.79,26137310,99.69,0,0,0.73,586.48,3109.57,26137311,99.74,0.1,0.38,0.67,586.71,3109.32,26137312,99.46,0.76,19.36,0.73,587.64,3108.34,26137313,99.18,2.14,69.2,0.93,587.7,3108.28,26137314,99.39,1.24,23.43,1.56,587.71,3108.11,26137315,99.1,1.67,56.11,1.2,590.33,3105.26,26137316,99.85,0.01,0.03,0.23,589.78,3105.82,26137317,99.9,0.02,0.02,0.22,589.71,3105.91,26137318,99.87,0.01,0.01,0.18,589.75,3105.87,26137319,99.88,0.02,0.03,0.27,589.79,3105.83,26137320,89.52,0.05,0.18,1.24,622.93,3072.71,26137321,90.89,0.01,0.07,0.91,584.14,3111.49,26137322,99.9,0.04,0.03,0.18,540.97,3154.67,26137323,91.89,0.03,0.01,0.75,577.13,3118.49,26137324,99.78,0,0,0.15,541.63,3154,26137325,78.81,0.07,1.05,5.12,1056.99,2638.6,26137326,99.74,0,0,0.16,826.92,2868.7,26137327,80.97,0.04,0.03,4.42,886.25,2809.32,26137328,99.91,0,0,0.17,1049.93,2645.68,26137329,98.96,0,0,0.35,600,3095.58,26137330,99.67,0,0,0.61,589,3106.6,26137331,99.9,0,0,0.32,589.13,3106.46,26137332,99.87,0,0,0.17,589.1,3106.5,26137333,99.9,0,0,0.18,589.09,3106.5,26137334,99.85,0,0,0.18,589.07,3106.56,26137335,99.77,0,0,0.33,589.33,3106.33,26137336,99.75,0,0,0.6,590.01,3105.65,26137337,99.9,0,0,0.22,589.53,3106.13,26137338,99.45,0,0,0.17,589.51,3106.15,26137339,99.87,0,0,0.17,589.47,3106.18,26137340,99.88,0,0,0.33,589.72,3105.95,26137341,99.74,0,0,0.61,590.34,3105.32,26137342,99.92,0,0,0.17,590.11,3105.54,26137343,99.83,0.05,0.05,0.22,590.02,3105.63,26137344,99.91,0,0,0.16,589.89,3105.76,26137345,99.81,0.02,0.05,0.43,588.83,3106.84,26137346,99.75,0,0,0.57,589.48,3106.2,26137347,99.9,0,0,0.17,589.29,3106.39,26137348,99.87,0,0,0.18,589.25,3106.42,26137349,99.89,0,0,0.18,589.24,3106.42,26137350,99.86,0.03,0,0.4,589.53,3106.14,26137351,99.75,0.06,0,0.55,589.72,3105.93,26137352,99.88,0,0,0.26,589.21,3106.44,26137353,99.91,0,0,0.17,589.19,3106.45,26137354,99.88,0,0,0.17,589.36,3106.28,26137355,95.89,0.03,0.01,0.69,574.71,3120.96,26137356,81.47,0.08,0.31,4.85,989.59,2706.03,26137357,85.77,0.04,0.01,1.01,827.93,2867.69,26137358,77.21,0.09,0.57,7.85,1044.32,2651.26,26137359,99.54,0,0,0.38,825.43,2870.16,26137360,89.79,0.07,0.01,1,600.5,3095.12,26137361,84.81,0.05,0.29,4.71,1077.49,2618.07,26137362,80.22,0.02,0.3,4.54,1026.22,2669.33,26137363,99.69,0.04,0.26,0.29,925.37,2770.22,26137364,99.89,0.1,0,0.44,586.55,3109.03,26137365,99.77,0.01,0.01,0.4,587.32,3108.28,26137366,81.05,0.08,0.29,5.07,992.89,2702.66,26137367,84.28,0.04,0.01,1.02,844.76,2850.79,26137368,95.68,0.02,0.29,3.67,1007.14,2688.43,26137369,99.85,0.04,0.01,0.29,585.48,3110.08,26137370,62.37,0.07,0.82,5.59,1039.29,2656.21,26137371,97.53,0.04,1.06,3.81,1042.22,2653.33,26137372,99.45,0.07,2.08,0.51,595.8,3099.72,26137373,99.87,0.01,0.27,0.26,588.24,3107.24,26137374,99.91,0,0,0.22,588.38,3107.1,26137375,99.71,0,0,0.35,589.1,3106.4,26137376,99.91,0.01,0.26,0.16,589.1,3106.38,26137377,99.76,0,0.01,0.6,590.48,3105,26137378,81.54,0.01,0.03,4.16,766.03,2929.41,26137379,99.59,0.17,7.61,0.75,856.51,2838.94,26137380,99.77,0,0.01,0.43,588.06,3107.37,26137381,99.9,0,0,0.16,588.04,3107.38,26137382,99.75,0,0,0.56,588.54,3106.87,26137383,99.94,0,0,0.14,588.42,3106.99,26137384,99.88,0,0,0.15,588.4,3107.01,26137385,99.82,0,0,0.31,588.89,3106.54,26137386,99.9,0,0,0.13,588.24,3107.19,26137387,99.74,0,0,0.57,588.46,3106.96,26137388,99.93,0,0,0.14,588.09,3107.33,26137389,99.78,0,0,0.31,588.04,3107.34,26137390,99.85,0,0,0.29,588.3,3107.1,26137391,99.9,0,0,0.15,588.28,3107.12,26137392,99.75,0,0,0.59,588.61,3106.79,26137393,99.9,0,0,0.15,588.31,3107.08,26137394,99.91,0.01,0.2,0.16,588.38,3107.01,26137395,99.81,0,0,0.4,587.84,3107.56,26137396,99.9,0,0,0.16,587.91,3107.49,26137397,99.74,0,0,0.61,588.23,3107.16,26137398,99.78,0.06,0.2,0.18,587.44,3107.94,26137399,99.75,0.08,0.18,0.16,586.33,3109.05,26137400,99.79,0,0,0.31,587.56,3107.83,26137401,99.87,0,0,0.13,587.56,3107.83,26137402,99.73,0,0,0.42,587.94,3107.44,26137403,99.92,0,0,0.3,587.75,3107.63,26137404,99.91,0,0,0.17,587.72,3107.67,26137405,99.65,0.17,0.39,0.43,587.95,3107.46,26137406,99.88,0.05,0.05,0.25,587.98,3107.42,26137407,99.72,0.05,0.08,0.88,588.38,3107.03,26137408,92.42,0.02,0.04,0.61,620.37,3075.05,26137409,88.82,0.01,0.03,4.04,1022.46,2672.98,26137410,99.81,0,0,0.31,583,3112.48,26137411,99.91,0.01,0.14,0.2,583.06,3112.43,26137412,99.71,0,0,0.31,583.46,3112.02,26137413,99.88,0,0,0.39,584.05,3111.43,26137414,99.94,0,0,0.15,584.03,3111.46,26137415,99.86,0,0,0.32,584.27,3111.24,26137416,99.92,0,0.03,0.21,584.25,3111.26,26137417,99.91,0.02,0.52,0.24,584.28,3111.21,26137418,99.78,0.44,0,0.57,584.76,3110.72,26137419,99.86,0,0,0.31,584.07,3111.39,26137420,99.87,0,0,0.32,584.32,3111.16,26137421,99.91,0.02,0.54,0.25,584.29,3111.17,26137422,99.91,0,0,0.2,584.1,3111.36,26137423,99.76,0,0,0.54,584.87,3110.58,26137424,99.88,0,0.01,0.18,584.72,3110.73,26137425,99.86,0,0,0.32,584.47,3110.99,26137426,99.91,0,0,0.13,584.04,3111.42,26137427,99.91,0,0,0.16,583.43,3112.02,26137428,99.78,0,0,0.54,584.63,3110.82,26137429,99.91,0,0,0.14,584.56,3110.88,26137430,99.85,0,0,0.34,584.55,3110.91,26137431,99.9,0,0,0.16,584.52,3110.93,26137432,99.89,0,0,0.14,584.51,3110.95,26137433,99.73,0,0,0.55,585.32,3110.13,26137434,99.93,0,0,0.15,584.71,3110.74,26137435,99.85,0,0,0.33,584.94,3110.52,26137436,99.91,0,0,0.15,584.94,3110.52,26137437,99.9,0,0,0.16,584.9,3110.55,26137438,99.78,0,0,0.43,585.63,3109.82,26137439,99.91,0,0,0.3,585.33,3110.11,26137440,99.78,0,0,0.3,585.09,3110.37,26137441,99.93,0,0,0.14,585.07,3110.39,26137442,99.9,0,0,0.16,585.04,3110.41,26137443,99.78,0,0,0.55,585.62,3109.83,26137444,99.9,0,0,0.2,584.76,3110.68,26137445,99.85,0,0,0.33,584.53,3110.92,26137446,99.91,0,0,0.17,584.48,3110.98,26137447,99.92,0,0,0.14,584.47,3110.98,26137448,99.79,0,0,0.45,584.83,3110.61,26137449,99.81,0,0,0.45,584.78,3110.63,26137450,99.73,0,0,0.34,585.11,3110.32,26137451,99.92,0,0.02,0.21,585.02,3110.41,26137452,99.91,0,0,0.13,584.98,3110.44,26137453,99.93,0,0,0.16,584.98,3110.45,26137454,99.71,0,0,0.6,585.61,3109.83,26137455,99.78,0,0,0.34,584.27,3111.18,26137456,99.92,0,0,0.14,584.32,3111.13,26137457,99.9,0,0,0.18,584.3,3111.14,26137458,99.88,0,0,0.16,584.27,3111.17,26137459,99.76,0,0,0.57,584.97,3110.46,26137460,99.8,0,0,0.37,584.94,3110.51,26137461,99.91,0,0,0.13,584.92,3110.52,26137462,99.93,0,0,0.14,584.76,3110.68,26137463,99.9,0,0,0.2,584.05,3111.39,26137464,99.81,0,0,0.55,583.99,3111.44,26137465,99.79,0,0,0.45,566.06,3129.52,26137466,99.93,0,0,0.16,532.69,3163.19,26137467,99.92,0.01,0,0.14,532.65,3163.22,26137468,99.89,0,0,0.18,532.81,3163.06,26137469,99.71,0,0,0.55,532.66,3163.2,26137470,99.81,0,0,0.32,532.01,3163.87,26137471,99.89,0,0,0.18,531.98,3163.89,26137472,99.91,0,0,0.15,531.94,3163.93,26137473,99.91,0,0,0.16,531.93,3163.94,26137474,99.78,0,0,0.55,532.97,3162.89,26137475,99.79,0,0,0.36,533.01,3162.87,26137476,99.94,0,0,0.14,533,3162.88,26137477,99.91,0,0,0.14,532.96,3162.91,26137478,99.89,0,0.02,0.17,532.91,3162.95,26137479,99.61,0,0,0.69,533.27,3162.57,26137480,99.86,0,0,0.31,533.04,3162.81,26137481,99.88,0,0,0.16,533.02,3162.83,26137482,99.9,0,0,0.18,532.99,3162.86,26137483,99.93,0,0,0.18,532.94,3162.9,26137484,99.78,0,0,0.43,533.27,3162.57,26137485,99.81,0,0,0.49,531.92,3163.93,26137486,99.88,0,0,0.14,532.08,3163.77,26137487,99.91,0,0,0.19,532.06,3163.79,26137488,99.85,0,0,0.2,532.02,3163.83,26137489,99.74,0,0,0.44,532.47,3163.37,26137490,99.8,0,0,0.54,533.24,3162.61,26137491,99.91,0,0,0.18,533.16,3162.69,26137492,99.9,0,0,0.18,533.19,3162.66,26137493,99.89,0,0,0.18,533.3,3162.55,26137494,99.92,0,0,0.18,533.26,3162.58,26137495,99.48,0,0,0.7,531.72,3164.14,26137496,99.93,0,0,0.17,531,3164.86,26137497,99.92,0,0,0.14,530.96,3164.89,26137498,99.9,0,0,0.16,530.93,3164.91,26137499,99.85,0,0,0.14,531.07,3164.77,26137500,99.57,0,0,0.75,533.46,3162.4,26137501,99.86,0.02,1.13,0.23,533.25,3162.6,26137502,99.9,0.02,1.15,0.32,533.19,3162.65,26137503,99.92,0,0.08,0.21,533.37,3162.45,26137504,99.92,0,0,0.17,533.36,3162.45,26137505,99.74,0,0,0.74,533.49,3162.34,26137506,99.92,0,0,0.14,533,3162.82,26137507,99.91,0,0,0.17,532.96,3162.86,26137508,99.86,0,0,0.15,532.92,3162.9,26137509,99.7,0,0,0.28,532.87,3162.92,26137510,99.68,0,0,0.77,533.64,3162.16,26137511,99.86,0,0,0.14,533.25,3162.55,26137512,99.85,0,0,0.16,533.21,3162.59,26137513,99.85,0,0,0.14,533.19,3162.6,26137514,99.9,0,0,0.16,533.16,3162.63,26137515,99.66,0,0,0.6,534.1,3161.7,26137516,99.87,0,0,0.29,533.37,3162.43,26137517,99.84,0,0,0.21,533.35,3162.45,26137518,99.87,0,0,0.15,533.44,3162.35,26137519,99.75,0,0,0.14,533.48,3162.31,26137520,99.63,0,0,0.75,532.92,3162.88,26137521,99.85,0,0,0.16,533.19,3162.6,26137522,99.91,0,0,0.14,533.16,3162.63,26137523,99.87,0,0,0.15,533.14,3162.65,26137524,99.9,0,0,0.15,533.12,3162.66,26137525,99.62,0,0,0.59,533.5,3162.29,26137526,99.85,0,0,0.32,533.35,3162.45,26137527,99.84,0,0,0.14,533.32,3162.47,26137528,99.84,0,0,0.15,533.5,3162.29,26137529,99.88,0,0,0.14,533.46,3162.32,26137530,99.67,0,0,0.78,533.78,3162.02,26137531,99.88,0,0.03,0.19,532.93,3162.86,26137532,99.88,0.03,1.32,0.32,532.89,3162.88,26137533,99.85,0,0.01,0.18,532.84,3162.9,26137534,99.81,0.01,0.23,0.22,532.92,3162.82,26137535,99.8,0,0,0.36,533.4,3162.36,26137536,99.72,0,0,0.55,534.83,3160.93,26137537,99.87,0,0,0.15,534.11,3161.64,26137538,99.88,0,0,0.15,533.78,3161.97,26137539,99.75,0,0,0.29,533.34,3162.39,26137540,99.8,0,0,0.32,533.33,3162.41,26137541,99.7,0,0,0.55,533.87,3161.87,26137542,99.85,0,0,0.18,533.18,3162.55,26137543,99.86,0,0,0.17,532.96,3162.77,26137544,99.85,0,0,0.14,532.94,3162.78,26137545,99.76,0,0,0.32,533.17,3162.57,26137546,99.68,0,0,0.56,533.67,3162.07,26137547,99.83,0,0,0.14,533.37,3162.35,26137548,99.83,0,0,0.18,533.37,3162.35,26137549,99.86,0,0,0.14,533.33,3162.38,26137550,99.67,0,0,0.32,532.39,3163.35,26137551,99.74,0,0,0.55,532.97,3162.76,26137552,99.82,0,0,0.14,532.83,3162.89,26137553,99.84,0,0,0.17,532.97,3162.75,26137554,99.82,0,0,0.15,532.94,3162.78,26137555,99.73,0,0,0.3,532.23,3163.5,26137556,99.67,0,0,0.59,532.94,3162.79,26137557,99.83,0,0,0.15,533.16,3162.57,26137558,99.85,0,0,0.15,533.12,3162.6,26137559,99.85,0,0,0.15,533.12,3162.6,26137560,98.6,0,0,0.32,532.19,3163.53,26137561,94.59,0.29,0.01,78.51,543.45,3152.45,26137562,99.63,0,0,181.33,535.72,3160.03,26137563,99.85,0,0,0.14,535.69,3160.05,26137564,99.81,0,0,0.18,535.68,3160.06,26137565,99.75,0,0,0.36,534.72,3161.04,26137566,99.69,0,0,0.46,535.27,3160.48,26137567,99.85,0,0,0.33,533.78,3162,26137568,99.87,0,0,0.18,533.9,3161.9,26137569,99.71,0,0,0.3,533.39,3162.39,26137570,99.74,0,0,0.32,532.67,3163.12,26137571,99.83,0,0,0.16,532.6,3163.18,26137572,99.71,0,0,0.57,533.68,3162.12,26137573,99.84,0,0,0.17,533.31,3162.49,26137574,99.82,0,0,0.18,533.3,3162.49,26137575,99.73,0,0,0.31,533.29,3162.52,26137576,99.85,0,0,0.14,533.28,3162.53,26137577,99.7,0,0,0.62,533.61,3162.2,26137578,99.84,0,0,0.18,533.24,3162.55,26137579,99.83,0,0,0.18,533.3,3162.5,26137580,99.76,0,0,0.35,533.66,3162.15,26137581,99.83,0,0,0.18,533.63,3162.18,26137582,99.67,0,0,0.58,533.97,3161.84,26137583,99.83,0,0,0.2,533.59,3162.2,26137584,99.84,0,0,0.2,533.58,3162.22,26137585,99.82,0,0,0.32,533.33,3162.48,26137586,99.86,0,0,0.14,533.31,3162.49,26137587,99.68,0,0,0.51,533.98,3161.83,26137588,99.84,0,0,0.2,533.25,3162.54,26137589,99.83,0,0,0.15,533.24,3162.56,26137590,99.78,0,0,0.34,533.74,3162.07,26137591,99.85,0,0,0.18,533.9,3161.91,26137592,99.7,0,0,0.57,534.3,3161.5,26137593,99.85,0,0,0.16,533.86,3161.94,26137594,99.86,0,0,0.16,533.82,3161.97,26137595,99.74,0,0,0.36,533.83,3161.98,26137596,99.81,0,0,0.16,533.81,3162,26137597,99.7,0,0,0.35,534.12,3161.68,26137598,99.85,0,0,0.37,533.76,3162.03,26137599,99.74,0,0,0.31,533.75,3162.02,26137600,99.78,0,0,0.3,533.84,3161.94,26137601,99.81,0,0,0.17,533.74,3162.05,26137602,99.82,0,0.01,0.19,533.86,3161.92,26137603,99.68,0,0,0.57,533.95,3161.83,26137604,99.8,0,0,0.15,533.57,3162.2,26137605,99.76,0,0,0.34,533.8,3161.99,26137606,99.83,0,0,0.16,533.79,3161.99,26137607,99.79,0,0,0.15,533.76,3162.02,26137608,99.66,0,0,0.56,534.08,3161.69,26137609,99.83,0,0,0.15,533.72,3162.05,26137610,99.74,0,0,0.34,533.73,3162.06,26137611,99.82,0,0,0.15,533.86,3161.92,26137612,99.84,0,0,0.16,533.86,3161.92,26137613,99.7,0,0,0.52,534.46,3161.33,26137614,99.85,0,0,0.2,533.82,3161.97,26137615,99.79,0,0,0.34,533.56,3162.24,26137616,99.84,0,0,0.17,533.55,3162.25,26137617,99.85,0,0,0.14,533.52,3162.28,26137618,99.72,0,0,0.5,533.96,3161.83,26137619,99.83,0,0,0.22,533.72,3162.06,26137620,99.66,0,0,0.33,532.99,3162.81,26137621,98.81,0,0,0.14,532.97,3162.83,26137622,99.84,0,0,0.16,533.15,3162.64,26137623,99.72,0,0,0.58,533.6,3162.19,26137624,99.85,0,0,0.17,533.6,3162.18,26137625,99.78,0,0,0.34,533.86,3161.94,26137626,99.85,0,0,0.15,533.83,3161.97,26137627,99.85,0,0,0.16,533.81,3161.99,26137628,99.72,0,0,0.64,534.14,3161.65,26137629,99.74,0,0,0.28,534.01,3161.75,26137630,99.78,0,0,0.32,533.78,3162,26137631,99.83,0,0,0.16,533.74,3162.04,26137632,99.81,0,0,0.14,533.76,3162.01,26137633,99.71,0,0,0.33,534.59,3161.18,26137634,99.82,0,0,0.45,533.88,3161.88,26137635,99.7,0,0,0.34,532.9,3162.88,26137636,99.83,0,0,0.16,532.88,3162.9,26137637,99.82,0,0,0.2,532.85,3162.93,26137638,99.85,0,0,0.16,532.84,3162.93,26137639,99.7,0,0,0.53,534.37,3161.39,26137640,99.76,0,0,0.36,534.09,3161.69,26137641,98.93,0,0,0.16,534.01,3161.76,26137642,99.83,0,0,0.16,534,3161.77,26137643,99.83,0,0,0.15,533.97,3161.79,26137644,99.73,0,0,0.55,534.24,3161.52,26137645,99.69,0,0,0.32,533.18,3162.59,26137646,99.85,0,0,0.15,533.12,3162.65,26137647,99.85,0,0,0.17,533.12,3162.65,26137648,99.83,0,0,0.14,533.08,3162.68,26137649,99.67,0,0,0.56,533.75,3162.01,26137650,99.79,0,0,0.34,534.04,3161.73,26137651,99.82,0,0,0.14,534.04,3161.74,26137652,99.84,0,0,0.15,534.01,3161.76,26137653,99.85,0,0,0.16,533.98,3161.78,26137654,99.65,0,0,0.49,534.31,3161.44,26137655,99.79,0,0,0.38,533.97,3161.8,26137656,99.81,0,0,0.18,534.14,3161.64,26137657,99.83,0,0,0.14,534.1,3161.67,26137658,99.82,0,0,0.15,534.09,3161.68,26137659,99.58,0,0,0.68,534.56,3161.21,26137660,99.78,0,0,0.33,534.29,3161.5,26137661,99.83,0,0,0.17,534.27,3161.51,26137662,99.83,0,0,0.19,534,3161.78,26137663,99.82,0,0,0.16,533.73,3162.04,26137664,99.7,0,0,0.52,534.42,3161.36,26137665,99.74,0,0,0.39,533.47,3162.33,26137666,99.82,0,0,0.15,533.64,3162.15,26137667,99.81,0,0,0.17,533.62,3162.18,26137668,99.84,0,0,0.14,533.6,3162.2,26137669,99.83,0,0,0.16,533.66,3162.14,26137670,99.66,0,0,0.69,534.17,3161.64,26137671,99.8,0,0,0.16,533.8,3162.02,26137672,99.84,0,0,0.15,533.77,3162.04,26137673,99.85,0,0,0.16,533.75,3162.05,26137674,99.83,0,0,0.15,533.72,3162.08,26137675,99.64,0,0,0.78,534.25,3161.56,26137676,99.84,0,0,0.14,533.95,3161.86,26137677,99.86,0,0,0.16,534.13,3161.68,26137678,99.85,0,0,0.15,534.1,3161.71,26137679,99.85,0,0,0.16,534.08,3161.71,26137680,99.52,0,0,0.75,534.42,3161.4,26137681,98.46,0,0,0.16,534.07,3161.74,26137682,99.84,0,0,0.18,534.04,3161.77,26137683,99.86,0,0,0.16,534.01,3161.79,26137684,99.84,0,0,0.15,534,3161.8,26137685,99.64,0,0,0.82,533.68,3162.14,26137686,99.83,0,0,0.13,533,3162.82,26137687,99.85,0,0,0.16,532.96,3162.85,26137688,99.86,0,0,0.16,533.08,3162.73,26137689,99.74,0,0,0.33,534.3,3161.48,26137690,99.64,0,0,0.76,533.74,3162.06,26137691,99.85,0,0,0.16,533.09,3162.7,26137692,99.85,0,0,0.14,533.09,3162.7,26137693,99.86,0,0,0.16,533.05,3162.73,26137694,99.86,0,0,0.15,532.87,3162.91,26137695,99.7,0,0,0.64,534.04,3161.76,26137696,99.86,0,0,0.29,533.51,3162.29,26137697,99.83,0,0,0.18,533.73,3162.06,26137698,99.87,0,0,0.16,533.7,3162.08,26137699,99.86,0,0,0.14,533.69,3162.11,26137700,99.64,0,0,0.72,534.02,3161.82,26137701,99.91,0,0,0.14,533.65,3162.18,26137702,98.95,0,0,0.14,533.61,3162.21,26137703,99.92,0,0,0.16,533.61,3162.21,26137704,99.91,0,0,0.14,533.58,3162.23,26137705,99.72,0,0,0.57,532.64,3163.2,26137706,99.93,0,0,0.3,533.09,3162.74,26137707,99.93,0,0,0.14,533.06,3162.77,26137708,99.93,0,0,0.14,533.05,3162.77,26137709,99.94,0,0,0.15,533.02,3162.8,26137710,99.84,0,0,0.3,533.02,3162.82,26137711,99.75,0,0,0.54,534.42,3161.41,26137712,99.92,0,0,0.16,533.84,3161.99,26137713,99.94,0,0,0.14,533.88,3161.94,26137714,99.93,0,0,0.17,533.85,3161.97,26137715,99.44,0,0,0.54,534.12,3161.71,26137716,99.81,0,0,0.58,534.26,3161.57,26137717,99.94,0,0,0.16,533.8,3162.03,26137718,99.92,0,0,0.18,533.79,3162.04,26137719,99.76,0,0,0.32,533.77,3162.02,26137720,99.83,0,0,0.36,532.55,3163.26,26137721,99.77,0,0,0.61,533.47,3162.35,26137722,99.88,0,0,0.17,533.35,3162.47,26137723,99.92,0,0,0.19,533.14,3162.68,26137724,99.93,0,0,0.14,533.11,3162.74,26137725,99.82,0,0,0.4,532.65,3163.21,26137726,99.76,0,0,0.59,533.41,3162.44,26137727,99.88,0,0,0.19,533.54,3162.3,26137728,99.94,0,0,0.18,533.53,3162.31,26137729,99.92,0,0,0.18,533.49,3162.34,26137730,99.81,0,0,0.35,533.74,3162.11,26137731,99.79,0,0,0.59,534.07,3161.78,26137732,99.94,0,0,0.19,533.71,3162.13,26137733,99.93,0,0,0.18,533.87,3161.97,26137734,99.9,0,0,0.18,533.86,3161.97,26137735,99.85,0,0,0.38,533.85,3162,26137736,99.77,0,0,0.59,534.28,3161.57,26137737,99.95,0,0,0.13,533.81,3162.03,26137738,99.92,0,0,0.17,533.81,3162.03,26137739,99.93,0,0,0.21,533.77,3162.06,26137740,99.38,0,0,9.48,533.01,3163.33,26137741,99.95,0,0,0.14,533.1,3163.32,26137742,99.77,0,0,0.53,533.91,3162.5,26137743,99.89,0,0,0.16,533.55,3162.85,26137744,99.94,0,0,0.14,533.53,3162.86,26137745,99.81,0,0,0.32,532.5,3163.91,26137746,99.94,0,0,0.16,532.45,3163.96,26137747,99.77,0,0,0.54,533.48,3162.92,26137748,99.92,0,0,0.14,533.15,3163.25,26137749,99.75,0,0,0.28,533.4,3162.97,26137750,99.86,0,0,0.33,533.38,3163.01,26137751,99.94,0,0,0.14,533.37,3163.02,26137752,99.79,0,0,0.56,533.93,3162.45,26137753,99.91,0,0,0.17,533.32,3163.06,26137754,99.94,0,0,0.16,533.3,3163.09,26137755,99.78,0,0,0.37,532.87,3163.54,26137756,99.95,0,0,0.13,532.96,3163.45,26137757,99.8,0,0,0.61,533.89,3162.52,26137758,99.94,0,0,0.15,533.89,3162.51,26137759,99.95,0,0,0.14,533.88,3162.51,26137760,99.81,0.01,0.05,0.32,533.87,3162.54,26137761,99.94,0,0,0.19,533.89,3162.51,26137762,99.81,0,0,0.55,534.23,3162.16,26137763,99.85,0,0,0.15,533.85,3162.54,26137764,99.94,0,0,0.16,533.84,3162.54,26137765,99.85,0,0,0.33,533.12,3163.28,26137766,99.92,0,0,0.14,533.09,3163.31,26137767,99.81,0,0,0.53,533.97,3162.42,26137768,99.9,0,0,0.22,533.54,3162.85,26137769,99.94,0,0,0.14,533.51,3162.88,26137770,99.85,0.02,2.57,0.39,534.13,3162.27,26137771,99.93,0,0,0.17,534.16,3162.23,26137772,99.82,0,0,0.55,534.4,3161.99,26137773,99.93,0,0,0.14,533.62,3162.75,26137774,99.95,0,0,0.15,533.6,3162.77,26137775,99.86,0,0,0.34,533.37,3163.02,26137776,99.92,0,0,0.14,533.33,3163.05,26137777,99.77,0,0,0.56,533.54,3162.84,26137778,99.91,0,0,0.14,532.8,3163.58,26137779,99.77,0,0,0.29,534.23,3162.14,26137780,99.86,0,0,0.34,534,3162.38,26137781,99.95,0,0,0.14,534.17,3162.21,26137782,99.74,0,0,0.43,534.44,3161.92,26137783,99.95,0.01,0.03,0.37,533.58,3162.78,26137784,99.94,0.01,1.37,0.18,533.63,3162.73,26137785,99.83,0.03,1.95,0.43,533.37,3162.99,26137786,99.9,0.01,0.68,0.26,533.34,3163.01,26137787,99.94,0,0,0.18,533.23,3163.1,26137788,99.72,0,0.01,0.58,533.85,3162.48,26137789,99.92,0,0,0.18,533.35,3162.98,26137790,99.84,0,0,0.34,533.1,3163.25,26137791,99.92,0,0,0.14,533.06,3163.27,26137792,99.95,0,0,0.17,533.05,3163.29,26137793,99.78,0,0,0.55,533.55,3162.78,26137794,99.94,0,0,0.14,533.25,3163.08,26137795,99.8,0,0,0.38,533.11,3163.23,26137796,99.94,0,0,0.17,532.96,3163.38,26137797,99.9,0,0,0.17,533.09,3163.25,26137798,99.67,0,0,0.57,533.28,3163.04,26137799,99.94,0,0,0.14,532.86,3163.47,26137800,99.76,0,0,0.41,533.55,3162.78,26137801,99.9,0,0,0.18,533.57,3162.76,26137802,99.93,0,0,0.18,533.54,3162.79,26137803,99.71,0,0,0.54,534.51,3161.81,26137804,99.88,0,0,0.14,533.99,3162.33,26137805,99.85,0,0,0.33,534.24,3162.1,26137806,99.91,0,0,0.18,534.22,3162.12,26137807,99.92,0,0,0.18,534.2,3162.13,26137808,99.79,0,0,0.59,534.62,3161.7,26137809,99.56,0,0,0.32,533.85,3162.45,26137810,99.86,0,0,0.3,534.35,3161.96,26137811,99.88,0,0,0.18,534.32,3161.99,26137812,99.87,0,0,0.18,534.31,3161.99,26137813,99.76,0,0,0.57,534.63,3161.67,26137814,99.93,0,0,0.18,534.28,3162.04,26137815,99.86,0,0,0.26,534.28,3162.06,26137816,99.88,0,0,0.14,534.26,3162.07,26137817,99.92,0,0,0.25,534.24,3162.09,26137818,99.8,0,0,0.54,534.57,3161.76,26137819,99.91,0,0,0.14,534.19,3162.13,26137820,99.87,0,0,0.26,534.56,3161.77,26137821,99.91,0,0,0.19,534.6,3161.73,26137822,99.93,0,0,0.14,534.59,3161.74,26137823,99.75,0,0,0.36,535.09,3161.24,26137824,99.9,0,0,0.39,534.55,3161.77,26137825,99.71,0,0,0.33,533.13,3163.2,26137826,99.93,0,0,0.16,533.04,3163.29,26137827,99.93,0,0,0.15,533.02,3163.3,26137828,99.93,0,0,0.14,533.02,3163.3,26137829,99.74,0,0,0.54,533.77,3162.55,26137830,99.81,0,0,0.31,533.73,3162.6,26137831,99.89,0,0,0.18,533.73,3162.59,26137832,99.91,0,0,0.18,533.71,3162.61,26137833,99.93,0,0,0.16,533.69,3162.63,26137834,99.76,0,0,0.54,534.27,3162.05,26137835,99.81,0,0,0.28,534.14,3162.19,26137836,99.93,0.01,0.02,0.18,533.99,3162.33,26137837,99.9,0,0,0.14,533.97,3162.35,26137838,99.94,0,0,0.14,534.06,3162.26,26137839,99.73,0,0,0.67,535.08,3161.21,26137840,99.89,0,0,0.27,534.62,3161.69,26137841,99.95,0,0,0.16,534.59,3161.71,26137842,99.91,0,0,0.21,534.5,3161.8,26137843,99.9,0,0,0.15,534.33,3161.96,26137844,99.8,0,0,0.49,534.88,3161.42,26137845,99.85,0,0,0.35,534.33,3162,26137846,99.92,0,0,0.13,534.32,3162.01,26137847,99.9,0,0,0.15,534.29,3162.03,26137848,99.93,0,0,0.16,534.28,3162.04,26137849,99.8,0,0,0.39,532.75,3163.56,26137850,99.89,0,0,0.4,530.12,3166.2,26137851,99.94,0,0,0.14,530.09,3166.24,26137852,99.92,0,0,0.16,530.06,3166.25,26137853,99.91,0,0,0.17,530.06,3166.25,26137854,99.82,0,0,0.6,530.83,3165.48,26137855,99.87,0,0,0.33,530.55,3165.77,26137856,99.9,0,0,0.18,530.52,3165.79,26137857,99.91,0,0,0.18,530.52,3165.79,26137858,99.91,0,0,0.18,530.51,3165.79,26137859,99.8,0,0,0.42,531.31,3164.99,26137860,99.86,0,0,0.46,530.35,3165.96,26137861,99.92,0,0,0.16,530.42,3165.88,26137862,99.9,0,0,0.13,530.42,3165.88,26137863,99.93,0,0,0.16,530.4,3165.89,26137864,99.9,0,0,0.14,530.38,3165.91,26137865,99.74,0,0,0.75,531.97,3164.34,26137866,99.91,0,0,0.13,531.62,3164.68,26137867,99.94,0,0,0.19,531.59,3164.71,26137868,99.94,0,0,0.18,531.58,3164.71,26137869,99.74,0,0,0.3,531.39,3164.88,26137870,99.67,0,0,0.64,531.24,3165.05,26137871,99.93,0,0,0.16,530.8,3165.48,26137872,99.93,0,0,0.14,530.8,3165.48,26137873,99.95,0,0,0.15,530.78,3165.49,26137874,99.93,0,0,0.14,530.76,3165.52,26137875,99.68,0,0,0.7,531.68,3164.62,26137876,99.95,0,0,0.14,531.48,3164.82,26137877,99.92,0,0,0.17,531.24,3165.05,26137878,99.9,0,0,0.16,531.23,3165.06,26137879,99.93,0,0,0.14,531.2,3165.08,26137880,99.61,0,0,0.71,531.79,3164.51,26137881,99.93,0,0,0.15,531.39,3164.91,26137882,99.93,0,0,0.16,531.38,3164.91,26137883,99.88,0,0,0.16,531.36,3164.92,26137884,99.94,0,0,0.15,531.34,3164.94,26137885,99.73,0,0,0.66,531.09,3165.2,26137886,99.93,0,0,0.15,531.1,3165.18,26137887,99.9,0,0,0.16,531.07,3165.21,26137888,99.88,0,0,0.15,531.06,3165.21,26137889,99.92,0,0,0.16,531.05,3165.23,26137890,99.7,0,0,0.54,531.76,3164.54,26137891,99.92,0,0,0.28,531.52,3164.77,26137892,99.88,0,0,0.17,531.5,3164.79,26137893,99.94,0,0,0.15,531.49,3164.79,26137894,99.93,0,0,0.14,531.47,3164.8,26137895,99.66,0,0,0.63,531.75,3164.54,26137896,99.94,0,0,0.28,531.47,3164.82,26137897,99.93,0,0,0.14,531.47,3164.82,26137898,99.9,0,0,0.16,531.44,3164.84,26137899,99.77,0,0,0.29,530.99,3165.28,26137900,99.67,0,0,0.67,531.03,3165.25,26137901,99.94,0,0,0.14,531.61,3164.67,26137902,99.92,0,0,0.16,531.45,3164.83,26137903,99.94,0,0,0.18,531.1,3165.18,26137904,99.94,0,0,0.14,531.08,3165.19,26137905,99.68,0,0,0.55,531.9,3164.38,26137906,99.95,0,0,0.29,531.57,3164.71,26137907,99.94,0,0,0.18,531.53,3164.74,26137908,99.94,0,0,0.18,531.53,3164.75,26137909,99.94,0,0,0.18,531.52,3164.75,26137910,99.85,0,0,0.28,530.58,3165.7,26137911,99.74,0,0,0.54,532.05,3164.23,26137912,99.91,0,0,0.16,531.74,3164.53,26137913,99.91,0,0,0.14,531.73,3164.53,26137914,99.93,0,0,0.15,531.7,3164.56,26137915,99.87,0,0,0.34,531.96,3164.32,26137916,99.77,0,0,0.55,532.38,3163.89,26137917,99.95,0,0,0.14,531.93,3164.34,26137918,99.9,0,0,0.16,531.92,3164.35,26137919,99.93,0,0,0.14,531.91,3164.35,26137920,99.83,0,0,0.27,531.81,3164.47,26137921,99.8,0,0,0.56,532.2,3164.07,26137922,99.93,0,0,0.14,531.83,3164.44,26137923,99.38,0,0,0.14,531.83,3164.44,26137924,99.94,0,0,0.16,531.82,3164.44,26137925,99.88,0,0,0.28,531.81,3164.47,26137926,95.1,0.4,0.01,197.18,545.63,3150.68,26137927,99.86,0,0,63.98,534.04,3161.88,26137928,99.92,0,0,0.14,534.02,3161.9,26137929,99.79,0,0,0.29,534.13,3161.77,26137930,99.85,0,0,0.29,534.22,3161.69,26137931,99.78,0,0,0.63,533.94,3161.98,26137932,99.94,0,0,0.17,532.04,3163.9,26137933,99.9,0,0,0.14,532.01,3163.92,26137934,99.9,0,0,0.16,532,3163.95,26137935,99.83,0,0,0.29,532.03,3163.94,26137936,99.77,0,0,0.39,532.42,3163.55,26137937,99.94,0,0,0.34,531.99,3163.98,26137938,99.94,0,0,0.14,531.98,3164,26137939,99.95,0,0,0.14,531.97,3164,26137940,99.81,0,0,0.27,530.58,3165.41,26137941,99.78,0,0,0.42,530.96,3165.04,26137942,99.9,0,0,0.3,531.71,3164.3,26137943,99.9,0,0,0.18,531.7,3164.3,26137944,99.94,0,0,0.16,531.69,3164.32,26137945,99.82,0,0,0.34,530.97,3165.05,26137946,99.81,0,0,0.44,531.32,3164.7,26137947,99.95,0,0,0.28,531.18,3164.83,26137948,99.93,0,0,0.14,531.16,3164.85,26137949,99.88,0,0,0.16,531.14,3164.86,26137950,99.77,0,0,0.26,531.15,3164.87,26137951,99.92,0,0,0.14,531.21,3164.8,26137952,99.75,0,0,0.57,532.22,3163.79,26137953,99.95,0,0,0.17,527.73,3168.46,26137954,99.93,0,0,0.14,526.08,3170.18,26137955,99.85,0,0,0.29,526.33,3169.96,26137956,99.94,0,0,0.14,526.31,3169.97,26137957,99.8,0,0,0.59,526.98,3169.3,26137958,99.95,0,0,0.14,526.53,3169.74,26137959,99.86,0,0,0.27,526.51,3169.74,26137960,99.84,0,0,0.31,526.52,3169.75,26137961,99.93,0,0,0.16,526.51,3169.75,26137962,99.77,0,0,0.62,526.84,3169.41,26137963,99.93,0,0,0.18,526.23,3170.02,26137964,99.94,0,0,0.15,526.23,3170.05,26137965,99.86,0,0,0.32,526.25,3170.05,26137966,99.91,0,0,0.18,526.23,3170.07,26137967,99.75,0,0,0.45,526.7,3169.59,26137968,99.88,0,0,0.29,526.45,3169.84,26137969,99.93,0,0,0.14,526.45,3169.84,26137970,99.85,0,0,0.3,526.47,3169.83,26137971,99.92,0,0,0.15,526.44,3169.86,26137972,99.77,0,0,0.59,526.88,3169.41,26137973,99.92,0,0,0.24,524.07,3172.29,26137974,99.92,0,0,0.14,523.19,3173.2,26137975,99.81,0,0,0.33,522.94,3173.47,26137976,99.93,0,0,0.15,523.09,3173.31,26137977,99.81,0,0,0.4,523.52,3172.88,26137978,99.95,0,0,0.29,523.33,3173.08,26137979,99.9,0,0,0.14,523.32,3173.1,26137980,99.83,0,0,0.29,523.36,3173.08,26137981,99.9,0,0,0.16,523.33,3173.1,26137982,99.75,0,0,0.39,523.68,3172.75,26137983,99.76,0,0,0.29,523.3,3173.13,26137984,99.95,0,0,0.18,523.29,3173.13,26137985,99.82,0,0,0.3,523.07,3173.37,26137986,99.95,0,0,0.14,523.04,3173.4,26137987,99.78,0,0,0.34,523.41,3173.02,26137988,99.91,0,0,0.39,523.49,3172.93,26137989,99.79,0,0,0.35,523.71,3172.68,26137990,99.88,0,0,0.29,523.73,3172.68,26137991,99.9,0,0,0.16,523.73,3172.68,26137992,99.9,0,0,0.16,523.71,3172.69,26137993,99.76,0,0,0.6,524.39,3172.01,26137994,99.93,0,0,0.19,523.68,3172.71,26137995,99.88,0,0,0.29,523.7,3172.71,26137996,99.9,0,0,0.17,523.67,3172.74,26137997,99.93,0,0,0.22,523.7,3172.7,26137998,99.75,0,0,0.58,524.37,3172.03,26137999,99.93,0,0,0.18,524.08,3172.31,26138000,99.82,0,0,0.34,524.08,3172.34,26138001,99.92,0,0,0.15,524.07,3172.34,26138002,99.93,0,0,0.16,524.07,3172.34,26138003,99.75,0,0,0.59,524.41,3171.99,26138004,99.9,0,0,0.17,524.06,3172.34,26138005,99.83,0,0,0.3,522.84,3173.57,26138006,99.94,0,0,0.17,522.81,3173.6,26138007,99.93,0,0,0.18,522.81,3173.6,26138008,99.76,0,0,0.55,523.96,3172.44,26138009,99.92,0,0,0.17,524.25,3172.15,26138010,99.86,0,0,0.31,524.02,3172.4,26138011,99.91,0,0.01,0.19,523.98,3172.43,26138012,99.93,0,0,0.16,523.97,3172.43,26138013,99.8,0,0,0.54,524.61,3171.8,26138014,99.94,0,0,0.15,523.69,3172.71,26138015,99.79,0,0,0.28,523.95,3172.46,26138016,99.9,0,0,0.14,523.94,3172.47,26138017,99.92,0,0,0.16,523.91,3172.5,26138018,99.78,0,0,0.41,524.45,3171.95,26138019,99.78,0,0,0.51,523.68,3172.7,26138020,99.87,0,0,0.27,524.03,3172.37,26138021,99.91,0,0,0.14,524.07,3172.32,26138022,99.91,0,0,0.2,523.96,3172.43,26138023,99.82,0,0,0.32,523.91,3172.47,26138024,99.89,0,0,0.42,523.54,3172.84,26138025,99.81,0.01,0.01,0.36,522.99,3173.4,26138026,99.89,0,0,0.39,522.42,3173.96,26138027,99.92,0,0,0.17,521.92,3174.46,26138028,99.82,0,0,0.31,522.3,3174.06,26138029,99.91,0,0,0.38,523.25,3173.11,26138030,99.8,0,0,0.29,522.4,3173.98,26138031,99.93,0,0,0.2,522.35,3174.02,26138032,99.91,0,0,0.15,522.35,3174.02,26138033,99.93,0,0,0.18,522.32,3174.04,26138034,99.78,0,0,0.58,523.83,3172.53,26138035,99.88,0,0,0.3,523.55,3172.83,26138036,99.91,0,0,0.14,523.55,3172.82,26138037,99.93,0,0,0.14,523.52,3172.84,26138038,99.93,0,0,0.15,523.51,3172.86,26138039,99.81,0,0,0.58,523.62,3172.74,26138040,99.83,0,0,0.27,522.53,3173.85,26138041,99.91,0,0,0.16,522.5,3173.87,26138042,99.93,0,0,0.14,522.49,3173.87,26138043,99.92,0,0,0.14,522.49,3173.87,26138044,96.94,0,0,0.5,523.26,3173.1,26138045,99.85,0,0,0.35,522.25,3174.13,26138046,99.94,0,0,0.14,522.22,3174.15,26138047,99.93,0,0,0.14,522.22,3174.15,26138048,99.93,0,0,0.16,522.21,3174.15,26138049,99.58,0,0,0.69,523.54,3172.8,26138050,99.82,0,0,0.29,523.21,3173.14,26138051,99.93,0,0,0.18,523.18,3173.17,26138052,99.89,0,0,0.14,523.33,3173.02,26138053,99.95,0,0,0.15,523.33,3173.02,26138054,99.78,0,0,0.58,523.41,3172.94,26138055,99.84,0,0,0.29,521.71,3174.66,26138056,99.95,0,0,0.14,521.59,3174.77,26138057,99.92,0,0,0.18,522.05,3174.31,26138058,99.94,0,0,0.15,522.06,3174.29,26138059,99.73,0,0,0.59,522.61,3173.74,26138060,99.8,0,0,0.28,522.31,3174.06,26138061,99.91,0,0,0.14,522.29,3174.08,26138062,99.92,0,0,0.16,522.28,3174.08,26138063,99.91,0,0,0.14,522.26,3174.09,26138064,99.4,0,0,0.16,522.24,3174.11,26138065,99.71,0,0,0.66,523.33,3173.04,26138066,99.88,0,0,0.14,522.96,3173.4,26138067,99.95,0,0,0.16,522.96,3173.4,26138068,99.88,0,0,0.14,522.95,3173.4,26138069,99.87,0,0,0.16,522.93,3173.43,26138070,99.65,0,0,0.69,523.4,3172.97,26138071,99.93,0,0,0.13,522.93,3173.43,26138072,99.88,0,0,0.14,522.91,3173.45,26138073,99.89,0,0,0.16,523.02,3173.34,26138074,99.88,0,0,0.16,523.08,3173.28,26138075,99.67,0,0,0.69,523.79,3172.58,26138076,99.95,0,0,0.14,523.31,3173.07,26138077,99.93,0,0,0.16,523.3,3173.08,26138078,99.95,0,0,0.14,523.29,3173.08,26138079,99.74,0,0,0.29,523.78,3172.57,26138080,99.69,0,0,0.68,523.92,3172.44,26138081,99.89,0,0,0.17,523.53,3172.84,26138082,99.88,0,0,0.15,523.51,3172.85,26138083,99.84,0,0,0.16,523.51,3172.85,26138084,99.94,0,0,0.16,523.5,3172.85,26138085,99.69,0,0,0.64,523.7,3172.67,26138086,99.92,0,0,0.2,522.99,3173.37,26138087,99.86,0,0,0.17,522.97,3173.39,26138088,99.84,0,0,0.14,522.95,3173.4,26138089,99.84,0,0,0.15,522.95,3173.4,26138090,99.59,0,0,0.63,522.91,3173.46,26138091,99.9,0,0,0.21,522.69,3173.67,26138092,99.8,0,0,0.14,522.68,3173.68,26138093,99.85,0,0,0.15,522.67,3173.68,26138094,99.91,0,0,0.14,522.67,3173.68,26138095,99.63,0,0,0.55,522.95,3173.41,26138096,99.86,0,0,0.32,523.48,3172.89,26138097,99.78,0,0,0.14,523.57,3172.79,26138098,99.85,0,0,0.14,523.57,3172.79,26138099,99.81,0,0,0.18,523.55,3172.8,26138100,99.7,0,0,0.31,522.37,3173.99,26138101,99.66,0,0,0.54,523.51,3172.85,26138102,99.85,0,0,0.16,523.05,3173.32,26138103,99.87,0,0,0.14,523.02,3173.34,26138104,98.6,0,0,0.14,523.01,3173.36,26138105,99.7,0,0,0.31,523.03,3173.35,26138106,99.71,0,0,0.56,522.96,3173.42,26138107,99.85,0,0,0.13,522.49,3173.88,26138108,99.85,0,0,0.16,522.49,3173.88,26138109,99.76,0,0,0.28,523.69,3172.65,26138110,99.81,0,0,0.27,523.96,3172.41,26138111,99.71,0,0,0.55,524.1,3172.27,26138112,99.84,0,0,0.14,523.69,3172.66,26138113,99.85,0,0,0.14,523.69,3172.66,26138114,99.81,0,0,0.14,523.67,3172.68,26138115,99.81,0,0,0.3,523.42,3172.94,26138116,99.7,0,0,0.54,524.07,3172.29,26138117,94.69,0.49,0.01,13.77,533.37,3154.88,26138118,95.05,0,0,128.95,532.71,3154.02,26138119,99.82,0,0,0.21,526.27,3167.44,26138120,99.8,0,0,0.29,526.5,3167.22,26138121,99.71,0,0,0.59,526.62,3167.09,26138122,99.84,0,0,0.19,525.97,3167.74,26138123,99.83,0,0,0.19,524.01,3169.73,26138124,98.99,0,0,0.16,523.72,3170.02,26138125,98.38,0,0,15.48,526.45,3167.9,26138126,99.7,0,0,0.57,524.42,3169.27,26138127,99.83,0,0,0.16,524.32,3169.36,26138128,99.84,0,0,0.16,524.3,3169.4,26138129,99.82,0,0,0.15,524.29,3169.4,26138130,99.8,0,0,0.32,524.31,3169.39,26138131,99.7,0,0,0.54,524.57,3169.13,26138132,99.85,0,0,0.15,524.02,3169.68,26138133,99.82,0,0,0.16,524.02,3169.68,26138134,99.85,0,0,0.15,524,3169.69,26138135,99.76,0,0,0.28,524,3169.7,26138136,99.68,0,0,0.41,524.54,3169.17,26138137,99.85,0,0,0.29,523.98,3169.72,26138138,99.83,0,0,0.14,523.96,3169.74,26138139,99.73,0,0,0.3,524.2,3169.47,26138140,99.8,0,0,0.3,524.18,3169.51,26138141,99.85,0,0,0.15,524.17,3169.52,26138142,99.7,0,0,0.56,524.26,3169.42,26138143,99.85,0,0,0.15,523.66,3170.02,26138144,99.86,0,0,0.15,523.75,3169.96,26138145,99.71,0,0,0.32,524.66,3169.04,26138146,99.86,0,0,0.16,525.16,3168.51,26138147,99.7,0,0,0.54,526.66,3167.01,26138148,99.85,0,0,0.14,526.36,3167.31,26138149,99.83,0,0,0.15,526.35,3167.31,26138150,99.7,0,0,0.33,525.64,3168.04,26138151,99.84,0,0,0.13,525.59,3168.08,26138152,99.69,0,0,0.61,526.7,3166.97,26138153,99.83,0,0,0.18,526.56,3167.1,26138154,99.84,0,0,0.15,526.53,3167.13,26138155,99.79,0,0,0.29,525.6,3168.08,26138156,99.82,0,0,0.16,525.54,3168.13,26138157,99.67,0,0,0.56,526.57,3167.1,26138158,99.86,0,0,0.14,526.51,3167.16,26138159,99.85,0,0,0.14,526.48,3167.18,26138160,99.75,0,0,0.26,526.25,3167.43,26138161,99.85,0,0,0.21,526.36,3167.32,26138162,99.69,0,0,0.41,526.97,3166.7,26138163,99.84,0,0,0.29,526.87,3166.79,26138164,98.08,0,0,0.14,526.87,3166.79,26138165,99.79,0,0,0.31,526.62,3167.05,26138166,99.83,0,0,0.16,526.6,3167.07,26138167,99.71,0,0,0.52,527.05,3166.61,26138168,99.84,0,0,0.21,526.82,3166.84,26138169,99.62,0,0,0.3,525.83,3167.8,26138170,99.72,0,0,0.3,525.83,3167.82,26138171,99.82,0,0,0.14,525.44,3168.2,26138172,99.59,0,0,0.39,525.76,3167.87,26138173,99.83,0,0,0.3,525.28,3168.35,26138174,99.81,0,0,0.14,525.27,3168.38,26138175,99.74,0,0,0.31,525.04,3168.62,26138176,99.85,0,0,0.16,525.01,3168.65,26138177,99.72,0,0,0.35,525.58,3168.08,26138178,99.86,0,0,0.38,525.92,3167.73,26138179,99.83,0,0,0.15,525.89,3167.75,26138180,99.76,0,0,0.27,525.66,3168.01,26138181,99.82,0,0,0.14,525.63,3168.03,26138182,99.85,0,0,0.17,525.61,3168.04,26138183,99.71,0,0,0.55,525.72,3167.93,26138184,99.85,0,0,0.14,525.32,3168.32,26138185,99.33,0,0,0.28,525.05,3168.61,26138186,99.84,0,0,0.14,524.85,3168.81,26138187,99.85,0,0,0.15,524.81,3168.84,26138188,99.69,0,0,0.58,524.92,3168.73,26138189,99.85,0,0,0.15,524.52,3169.12,26138190,99.75,0,0,0.32,525.25,3168.41,26138191,99.83,0,0,0.16,525.26,3168.4,26138192,99.84,0,0,0.14,525.24,3168.41,26138193,99.7,0,0,0.59,525.99,3167.66,26138194,99.85,0,0,0.17,525.36,3168.29,26138195,99.72,0,0,0.31,526.13,3167.53,26138196,99.83,0,0,0.14,526.14,3167.52,26138197,99.82,0,0,0.14,526.13,3167.52,26138198,99.71,0,0,0.57,526.57,3167.08,26138199,99.78,0,0,0.28,526.32,3167.3,26138200,99.81,0,0,0.27,525.85,3167.79,26138201,99.85,0,0,0.16,525.82,3167.82,26138202,99.83,0,0,0.15,525.8,3167.83,26138203,99.71,0,0,0.59,526.09,3167.54,26138204,99.84,0,0,0.15,526.02,3167.62,26138205,99.78,0,0,0.27,526.01,3167.65,26138206,99.84,0,0,0.16,526,3167.65,26138207,99.84,0,0,0.14,525.98,3167.67,26138208,99.67,0,0,0.49,526.4,3167.24,26138209,99.83,0,0,0.2,526.2,3167.44,26138210,99.72,0,0,0.27,525.39,3168.27,26138211,99.83,0,0,0.14,525.42,3168.23,26138212,99.84,0,0,0.16,525.41,3168.23,26138213,99.69,0,0,0.57,525.91,3167.73,26138214,99.83,0,0,0.14,526.11,3167.53,26138215,99.77,0,0,0.29,526.38,3167.28,26138216,99.83,0,0,0.15,526.37,3167.28,26138217,99.84,0,0,0.16,526.35,3167.3,26138218,99.72,0,0,0.37,526.85,3166.79,26138219,99.83,0,0,0.36,526.32,3167.31,26138220,99.66,0,0,0.29,525.6,3168.05,26138221,99.85,0,0,0.17,525.56,3168.08,26138222,99.82,0,0,0.15,525.56,3168.08,26138223,99.83,0,0,0.15,525.54,3168.1,26138224,99.68,0,0,0.55,526.49,3167.14,26138225,99.75,0,0,0.3,524.61,3169.04,26138226,99.84,0,0,0.14,524.54,3169.1,26138227,99.82,0,0,0.14,524.51,3169.13,26138228,99.81,0,0,0.16,524.51,3169.13,26138229,99.55,0,0,0.68,526.37,3167.24,26138230,99.69,0,0,0.35,525.44,3168.19,26138231,99.79,0,0,0.14,525.41,3168.21,26138232,99.83,0,0,0.14,525.41,3168.21,26138233,99.82,0,0,0.18,525.38,3168.23,26138234,99.7,0,0,0.56,526.75,3166.87,26138235,99.77,0,0,0.32,526.86,3166.79,26138236,99.8,0,0,0.15,526.84,3166.8,26138237,99.79,0,0,0.17,526.34,3167.29,26138238,99.83,0,0,0.17,526.33,3167.3,26138239,99.69,0,0,0.58,526.78,3166.85,26138240,99.79,0,0,0.27,526.56,3167.09,26138241,99.85,0,0,0.19,526.55,3167.09,26138242,99.85,0,0,0.17,526.53,3167.11,26138243,99.82,0,0,0.14,526.51,3167.12,26138244,99.71,0,0,0.64,526.85,3166.77,26138245,99.75,0,0,0.3,526.51,3167.14,26138246,99.78,0,0,0.14,526.49,3167.15,26138247,99.81,0,0,0.15,526.48,3167.15,26138248,99.85,0,0,0.14,526.48,3167.15,26138249,99.73,0,0,0.57,526.89,3166.74,26138250,99.78,0,0,0.29,526.64,3166.99,26138251,99.84,0,0,0.14,526.64,3167,26138252,99.83,0,0,0.16,526.61,3167.02,26138253,99.87,0,0,0.14,526.6,3167.03,26138254,99.72,0,0,0.43,527.35,3166.27,26138255,99.75,0,0,0.41,526.58,3167.06,26138256,99.86,0,0,0.17,526.57,3167.07,26138257,99.92,0,0,0.16,526.54,3167.09,26138258,99.9,0,0,0.16,526.54,3167.09,26138259,99.75,0,0,0.26,526.29,3167.31,26138260,99.58,0,0,0.68,525.91,3167.71,26138261,99.93,0,0,0.14,525.53,3168.09,26138262,99.88,0,0,0.16,525.51,3168.11,26138263,99.9,0,0,0.18,525.49,3168.12,26138264,99.89,0,0,0.15,525.49,3168.14,26138265,99.7,0,0,0.68,526.98,3166.66,26138266,99.93,0,0,0.15,526.82,3166.82,26138267,99.9,0,0,0.16,526.88,3166.75,26138268,99.92,0,0,0.15,526.86,3166.77,26138269,99.93,0,0,0.14,526.84,3166.78,26138270,99.66,0,0,0.7,526.94,3166.7,26138271,99.91,0,0,0.18,526.59,3167.05,26138272,99.92,0,0,0.13,526.57,3167.06,26138273,99.92,0,0,0.18,526.57,3167.06,26138274,99.93,0,0,0.18,526.54,3167.08,26138275,99.71,0,0,0.74,527.34,3166.3,26138276,99.93,0,0,0.18,526.77,3166.86,26138277,99.94,0,0,0.18,526.76,3166.88,26138278,99.89,0,0,0.18,526.75,3166.88,26138279,99.92,0,0,0.18,526.73,3166.89,26138280,99.69,0.03,1.14,0.77,526.93,3166.7,26138281,99.92,0,0,0.16,526.31,3167.31,26138282,99.94,0,0,0.14,526.38,3167.24,26138283,99.93,0,0,0.14,526.37,3167.24,26138284,99.9,0,0,0.15,526.35,3167.26,26138285,99.73,0,0,0.71,527.03,3166.59,26138286,99.93,0,0,0.14,526.84,3166.78,26138287,99.88,0,0,0.14,526.83,3166.78,26138288,99.9,0,0,0.17,526.8,3166.81,26138289,99.85,0,0,0.28,526.79,3166.79,26138290,94.92,0.33,0.01,78.44,536.85,3157.11,26138291,99.83,0,0,181.86,529.07,3164.79,26138292,99.93,0,0,0.16,529.06,3164.8,26138293,99.89,0,0,0.15,529.05,3164.8,26138294,99.93,0,0,0.14,529.05,3164.8,26138295,99.64,0,0,0.6,528.4,3165.48,26138296,99.94,0,0,0.34,526.62,3167.29,26138297,99.92,0,0.01,0.22,526.93,3166.98,26138298,99.92,0,0,0.14,526.99,3166.92,26138299,99.92,0,0,0.14,526.98,3166.92,26138300,99.82,0,0,0.3,526.74,3167.18,26138301,99.8,0,0,0.57,526.36,3167.56,26138302,99.91,0,0,0.15,525.97,3167.94,26138303,99.93,0,0,0.16,525.96,3167.95,26138304,99.95,0,0,0.18,525.93,3167.97,26138305,99.61,0,0,0.31,526.68,3167.24,26138306,99.76,0,0,0.57,527.04,3166.87,26138307,99.93,0,0,0.14,526.66,3167.25,26138308,99.9,0,0,0.15,526.65,3167.26,26138309,99.94,0,0,0.15,526.64,3167.26,26138310,99.79,0,0,0.29,525.45,3168.47,26138311,99.77,0,0,0.61,527.16,3166.76,26138312,99.91,0,0,0.14,526.6,3167.31,26138313,99.9,0,0,0.15,526.58,3167.32,26138314,99.92,0,0,0.14,526.68,3167.22,26138315,99.75,0,0,0.29,526.07,3167.85,26138316,99.75,0,0,0.55,527.06,3166.87,26138317,99.93,0,0,0.14,527,3166.93,26138318,99.91,0,0,0.16,526.99,3166.94,26138319,99.75,0,0,0.35,526.25,3167.65,26138320,99.8,0,0,0.28,525.5,3168.41,26138321,99.77,0,0,0.62,526.59,3167.32,26138322,99.91,0,0,0.14,525.81,3168.1,26138323,99.89,0,0,0.2,525.46,3168.45,26138324,99.87,0,0,0.16,525.45,3168.47,26138325,99.86,0,0,0.29,525.93,3168.01,26138326,99.76,0,0,0.5,526.28,3167.65,26138327,99.89,0,0,0.19,525.92,3168.02,26138328,99.95,0,0,0.15,525.9,3168.03,26138329,99.9,0,0,0.14,525.88,3168.05,26138330,99.85,0,0,0.28,526.14,3167.8,26138331,99.75,0,0,0.56,526.83,3167.1,26138332,99.91,0,0,0.14,526.04,3167.89,26138333,99.88,0,0,0.15,526.03,3167.89,26138334,99.89,0,0,0.14,526,3167.92,26138335,99.78,0,0,0.29,525.05,3168.89,26138336,99.77,0,0,0.57,525.5,3168.43,26138337,99.93,0,0,0.16,526.25,3167.68,26138338,99.88,0,0,0.14,526.23,3167.7,26138339,99.93,0,0,0.15,526.21,3167.71,26138340,99.83,0,0,0.28,526.08,3167.87,26138341,99.77,0,0,0.4,526.36,3167.59,26138342,99.88,0,0,0.3,526.44,3167.51,26138343,99.89,0,0,0.14,526.44,3167.51,26138344,99.9,0,0,0.15,526.42,3167.52,26138345,98.47,0,0,0.32,525.22,3168.73,26138346,99.88,0,0,0.14,525.18,3168.77,26138347,99.76,0,0,0.56,526.31,3167.64,26138348,99.93,0,0,0.14,525.63,3168.31,26138349,99.75,0,0,0.37,526.1,3167.81,26138350,99.79,0,0,0.36,526.15,3167.78,26138351,99.9,0,0,0.21,526.28,3167.64,26138352,99.75,0,0.02,0.63,526.78,3167.14,26138353,99.92,0,0,0.17,526.21,3167.71,26138354,99.93,0,0,0.18,526.21,3167.72,26138355,99.86,0,0,0.28,526.45,3167.5,26138356,99.93,0,0,0.14,526.44,3167.51,26138357,99.78,0,0,0.64,526.63,3167.31,26138358,99.93,0,0,0.19,526.15,3167.79,26138359,99.9,0,0,0.15,526.14,3167.79,26138360,99.79,0,0,0.29,526.14,3167.8,26138361,99.91,0,0,0.14,526.12,3167.82,26138362,99.76,0,0,0.43,526.47,3167.46,26138363,99.92,0,0,0.3,526.13,3167.8,26138364,99.92,0,0,0.16,526.27,3167.66,26138365,97.95,0,0.04,0.29,526.5,3167.44,26138366,99.9,0,0,0.17,526.46,3167.48,26138367,99.78,0,0,0.5,527.02,3166.92,26138368,99.86,0,0,0.19,526.18,3167.75,26138369,99.9,0,0,0.15,526.16,3167.77,26138370,99.77,0,0,0.27,526.16,3167.78,26138371,99.9,0,0,0.14,526.16,3167.79,26138372,99.73,0,0,0.41,526.64,3167.29,26138373,99.9,0,0,0.31,526.11,3167.82,26138374,99.94,0,0,0.18,526.11,3167.82,26138375,99.82,0,0,0.29,525.39,3168.56,26138376,99.91,0,0,0.14,525.48,3168.46,26138377,99.79,0,0,0.32,525.88,3168.05,26138378,99.9,0,0,0.39,525.74,3168.18,26138379,99.76,0,0,0.41,526.44,3167.46,26138380,99.85,0,0,0.3,526.26,3167.66,26138381,99.93,0,0,0.12,526.2,3167.71,26138382,99.77,0,0,0.31,526.54,3167.37,26138383,99.91,0,0,0.41,525.94,3167.97,26138384,99.91,0,0,0.14,525.71,3168.21,26138385,99.85,0,0,0.32,525.67,3168.27,26138386,99.92,0,0,0.16,525.65,3168.29,26138387,99.91,0,0,0.14,525.64,3168.29,26138388,99.79,0,0,0.58,526.41,3167.52,26138389,99.9,0,0,0.14,526.09,3167.82,26138390,99.85,0,0,0.29,526.12,3167.82,26138391,99.92,0.01,0.94,0.2,526.13,3167.8,26138392,99.91,0,0,0.16,526.1,3167.82,26138393,99.79,0,0,0.56,526.58,3167.34,26138394,99.91,0,0,0.15,525.82,3168.09,26138395,99.87,0,0,0.29,526.33,3167.6,26138396,99.9,0,0,0.17,526.48,3167.44,26138397,99.94,0,0,0.14,526.46,3167.45,26138398,99.76,0.01,0.93,0.55,526.9,3167.01,26138399,99.89,0,0.01,0.21,526.55,3167.35,26138400,99.81,0,0,0.29,526.31,3167.6,26138401,99.91,0,0,0.16,526.31,3167.6,26138402,99.9,0,0,0.16,526.5,3167.41,26138403,99.76,0,0,0.41,526.56,3167.34,26138404,99.92,0,0,0.3,525.99,3167.91,26138405,95.23,0.44,0.08,65.07,535.36,3157.95,26138406,93.68,5.83,0.25,223.83,547.47,3144.22,26138407,99.9,0,0,0.84,532.45,3159.02,26138408,99.78,0,0,0.55,533.13,3158.34,26138409,99.81,0,0,0.4,533.38,3158.07,26138410,99.85,0,0,0.28,533.62,3157.84,26138411,99.91,0,0,0.19,531.34,3160.15,26138412,99.92,0,0,0.14,531.16,3160.33,26138413,99.75,0,0,0.49,531.44,3160.05,26138414,99.88,0,0,0.2,530.88,3160.61,26138415,99.77,0,0,0.28,530.42,3161.09,26138416,99.89,0,0,0.15,530.4,3161.1,26138417,99.92,0,0,0.2,530.38,3161.11,26138418,99.73,0,0,0.35,531.12,3160.38,26138419,99.92,0,0,0.37,530.8,3160.7,26138420,99.84,0,0,0.35,530.14,3161.37,26138421,99.92,0,0,0.18,530.04,3161.46,26138422,99.9,0,0,0.18,530.02,3161.48,26138423,99.91,0,0,0.18,530,3161.5,26138424,99.74,0,0.01,0.58,531.07,3160.42,26138425,99.81,0,0,0.3,530.25,3161.26,26138426,99.91,0,0,0.15,530.21,3161.3,26138427,99.86,0,0,0.18,530.19,3161.31,26138428,99.85,0,0,0.18,530.17,3161.33,26138429,99.77,0,0,0.54,531.02,3160.47,26138430,99.79,0,0,0.3,531.37,3160.14,26138431,99.91,0,0,0.16,531.43,3160.07,26138432,99.91,0,0,0.14,531.55,3159.96,26138433,99.92,0,0,0.15,531.52,3159.98,26138434,99.79,0,0,0.48,531.73,3159.77,26138435,99.79,0.06,2.26,0.43,531.31,3160.19,26138436,99.85,0,0.21,0.3,531.25,3160.23,26138437,99.9,0,0,0.14,531.22,3160.27,26138438,99.9,0,0,0.14,531.21,3160.27,26138439,99.66,0,0,0.73,531.63,3159.83,26138440,99.76,0,0,0.28,531.44,3160.03,26138441,99.93,0,0,0.19,531.43,3160.04,26138442,99.88,0,0,0.15,531.41,3160.06,26138443,99.87,0,0,0.19,530.97,3160.48,26138444,99.75,0,0,0.4,531.31,3160.14,26138445,99.82,0,0,0.43,531.37,3160.1,26138446,99.9,0,0,0.15,531.35,3160.11,26138447,99.93,0,0,0.17,531.38,3160.08,26138448,99.93,0,0,0.14,531.51,3159.94,26138449,99.73,0.01,0.01,0.58,531.87,3159.58,26138450,99.82,0,0,0.28,530.7,3160.75,26138451,99.91,0,0,0.14,530.64,3160.8,26138452,99.88,0,0,0.16,530.64,3160.8,26138453,99.94,0,0,0.14,530.63,3160.8,26138454,99.78,0,0,0.31,530.97,3160.47,26138455,99.78,0,0,0.6,531.42,3160.03,26138456,99.9,0,0,0.16,531.35,3160.1,26138457,99.93,0,0,0.14,531.33,3160.11,26138458,99.91,0,0,0.16,531.41,3160.03,26138459,99.92,0.03,1.2,0.22,531.48,3159.94,26138460,99.56,0,0.03,0.73,531.86,3159.58,26138461,99.91,0,0,0.14,531.43,3160,26138462,99.9,0,0,0.17,531.41,3160.02,26138463,99.92,0,0,0.17,531.38,3160.05,26138464,99.93,0.02,0.52,0.16,531.34,3160.08,26138465,99.7,0.02,0.52,0.78,531.68,3159.74,26138466,99.9,0,0,0.23,531.32,3160.1,26138467,99.93,0,0,0.14,531.3,3160.11,26138468,99.88,0,0,0.14,531.27,3160.13,26138469,99.73,0.12,4.33,0.44,531.62,3159.73,26138470,99.66,0.02,0.86,0.59,531.91,3159.44,26138471,99.9,0.06,2.36,0.36,531.27,3160.06,26138472,99.92,0,0.01,0.18,530.57,3160.76,26138473,99.92,0,0,0.14,530.55,3160.77,26138474,99.92,0,0,0.14,530.53,3160.79,26138475,99.66,0,0,0.65,529.92,3161.42,26138476,99.93,0,0,0.21,530.02,3161.31,26138477,99.93,0,0,0.17,530,3161.33,26138478,99.93,0,0,0.15,530.1,3161.23,26138479,99.91,0,0,0.14,530.16,3161.16,26138480,99.63,0,0,0.54,530.94,3160.39,26138481,99.94,0,0,0.28,530.63,3160.7,26138482,99.91,0,0,0.19,530.62,3160.71,26138483,99.92,0,0,0.15,530.59,3160.73,26138484,99.95,0,0,0.14,530.58,3160.74,26138485,99.69,0.02,0.06,0.33,531.75,3159.54,26138486,99.74,0,0,0.54,534.04,3157.22,26138487,99.9,0,0,0.15,533.59,3157.66,26138488,99.9,0,0,0.15,533.56,3157.69,26138489,99.93,0,0,0.16,533.55,3157.7,26138490,99.81,0,0,0.29,532.59,3158.67,26138491,99.71,0,0,0.59,532.93,3158.33,26138492,99.89,0,0,0.15,532.52,3158.73,26138493,99.92,0,0,0.14,532.63,3158.63,26138494,99.9,0,0,0.16,532.69,3158.55,26138495,99.76,0,0,0.3,532.69,3158.58,26138496,99.75,0,0,0.57,533.81,3157.45,26138497,99.86,0,0,0.17,533.62,3157.64,26138498,99.89,0,0,0.16,533.59,3157.66,26138499,99.84,0,0,0.32,533.59,3157.63,26138500,99.82,0,0,0.31,533.81,3157.44,26138501,99.75,0,0,0.55,534.13,3157.11,26138502,99.76,0.02,0.1,0.18,534.83,3156.35,26138503,99.88,0.03,0.03,0.24,535.21,3155.95,26138504,99.39,0.02,0.07,0.32,535.86,3155.25,26138505,99.81,0,0,0.72,538.36,3152.77,26138506,99.75,0,0,0.63,539.36,3151.76,26138507,99.85,0,0,0.16,539.12,3151.99,26138508,99.91,0,0,0.14,539.09,3152.02,26138509,99.92,0,0,0.16,539.06,3152.05,26138510,99.8,0,0,0.33,539.05,3152.07,26138511,99.76,0,0,0.54,539.4,3151.72,26138512,99.89,0,0,0.14,539.18,3151.94,26138513,99.88,0,0,0.15,539.15,3151.96,26138514,99.92,0,0,0.14,539.11,3152,26138515,99.81,0,0,0.29,539.1,3152.02,26138516,99.72,0,0,0.56,539.42,3151.7,26138517,99.91,0,0,0.14,539.03,3152.09,26138518,99.92,0,0,0.15,539.12,3151.99,26138519,99.91,0,0,0.14,539.18,3151.93,26138520,99.76,0,0,0.28,539.22,3151.9,26138521,99.74,0,0,0.57,539.52,3151.6,26138522,99.89,0,0,0.13,539.34,3151.78,26138523,99.9,0,0,0.17,539.31,3151.8,26138524,99.9,0,0,0.15,539.28,3151.82,26138525,99.79,0,0,0.3,539.44,3151.68,26138526,99.88,0,0,0.15,539.42,3151.7,26138527,99.73,0,0,0.57,539.92,3151.2,26138528,99.85,0,0,0.15,539.34,3151.77,26138529,99.87,0,0,0.3,539.31,3151.78,26138530,98.85,0.01,0.04,10.62,540.74,3148.25,26138531,99.92,0,0,0.18,541.64,3146.53,26138532,99.75,0,0,0.59,543.02,3145.16,26138533,99.9,0,0,0.18,542.82,3145.35,26138534,99.93,0,0,0.18,542.81,3145.36,26138535,99.82,0,0,0.34,543.68,3144.5,26138536,99.45,0.01,0.03,0.92,543.63,3144.54,26138537,99.75,0,0,0.62,543.84,3144.31,26138538,99.46,0,0.03,0.39,543.32,3144.82,26138539,99.48,0,0.03,0.41,543.37,3144.75,26138540,99.79,0,0,0.34,543.79,3144.32,26138541,99.9,0,0,0.16,543.76,3144.35,26138542,99.72,0.02,0.02,0.59,543.99,3144.11,26138543,99.89,0.03,0,0.21,543.61,3144.49,26138544,99.9,0.05,0.06,0.31,543.48,3144.61,26138545,99.8,0.02,0.03,0.42,543.73,3144.36,26138546,99.37,0,0,0.18,543.7,3144.36,26138547,99.74,0.02,0.05,0.6,544.45,3143.61,26138548,99.88,0,0,0.16,543.69,3144.36,26138549,99.92,0,0,0.15,543.65,3144.39,26138550,99.77,0.04,0.01,0.43,543.97,3144.1,26138551,99.9,0,0,0.14,543.94,3144.13,26138552,99.73,0,0,0.54,544.36,3143.72,26138553,99.89,0.01,0.01,0.16,543.74,3144.34,26138554,99.86,0.03,0.03,0.31,543.77,3144.29,26138555,99.82,0,0,0.38,542.74,3145.31,26138556,99.89,0,0,0.14,542.81,3145.23,26138557,99.77,0,0,0.41,543.25,3144.79,26138558,99.91,0,0,0.29,543.97,3144.07,26138559,99.72,0.01,0.01,0.35,543.94,3144.07,26138560,95.42,0.01,0.01,0.79,558.02,3129.95,26138561,81.21,0.02,0.03,4.05,696.65,2991.24,26138562,99.7,0.07,2.1,1.32,1061.34,2626.42,26138563,83.76,0.04,0.03,1.41,806.91,2880.79,26138564,97.03,0.03,0.67,3.77,1073.64,2614.09,26138565,99.59,0,0.02,0.33,666.7,3021.05,26138566,99.9,0,0,0.14,594.94,3092.81,26138567,99.84,0,0,0.16,594.91,3092.84,26138568,99.69,0,0,0.54,595.68,3092.06,26138569,99.89,0,0,0.15,595.32,3092.42,26138570,99.74,0,0,0.3,594.36,3093.4,26138571,99.86,0,0,0.13,594.3,3093.46,26138572,99.9,0,0,0.14,594.39,3093.37,26138573,99.71,0,0,0.56,595.43,3092.31,26138574,99.89,0,0,0.16,594.91,3092.83,26138575,99.81,0,0,0.3,595.88,3091.88,26138576,99.89,0,0,0.15,595.84,3091.92,26138577,99.91,0,0,0.15,595.81,3091.95,26138578,99.74,0,0,0.55,596.58,3091.17,26138579,99.85,1.05,0.09,1.18,596.57,3091.01,26138580,99.75,0.01,0.01,0.35,597.12,3089.65,26138581,99.91,0.02,0.62,0.18,596.9,3089.87,26138582,79.34,0.08,1.79,4.48,913.47,2773.22,26138583,99.52,0.06,2.49,0.85,1026.28,2660.42,26138584,99.85,0,0,0.27,597.23,3089.46,26138585,99.73,0,0,0.32,597.46,3089.25,26138586,99.84,0,0,0.18,597.62,3089.08,26138587,99.87,0,0,0.17,597.66,3089.04,26138588,99.72,0,0,0.5,598.19,3088.5,26138589,99.73,0,0,0.37,598.48,3088.19,26138590,99.77,0,0,0.31,597.01,3089.68,26138591,99.87,0,0.01,0.17,596.97,3089.71,26138592,99.87,0,0,0.19,597.08,3089.6,26138593,99.71,0.02,0.52,0.67,597.83,3088.84,26138594,99.84,0,0,0.2,597.91,3088.76,26138595,99.68,0,0,0.33,597.7,3088.99,26138596,99.85,0,0,0.14,597.81,3088.88,26138597,99.84,0,0,0.19,597.78,3088.91,26138598,99.73,0,0,0.44,598.18,3088.5,26138599,99.83,0,0,0.28,598.94,3087.73,26138600,99.73,0,0,0.34,598.64,3088.05,26138601,99.91,0,0,0.13,598.16,3088.53,26138602,99.88,0,0,0.16,598.22,3088.47,26138603,99.84,0,0,0.14,598.27,3088.41,26138604,99.72,0,0,0.56,598.16,3088.52,26138605,99.77,0,0,0.31,599.2,3087.5,26138606,99.92,0,0,0.14,599.18,3087.51,26138607,99.85,0,0,0.15,599.15,3087.54,26138608,99.88,0,0,0.15,599.18,3087.5,26138609,99.69,0,0,0.54,599.61,3087.07,26138610,99.75,0,0,0.3,599.27,3087.43,26138611,99.9,0,0,0.17,599.22,3087.47,26138612,99.88,0,0,0.14,599.19,3087.5,26138613,99.83,0,0,0.14,599.15,3087.53,26138614,99.68,0,0,0.53,599.66,3087.02,26138615,99.78,0,0,0.31,598.01,3088.68,26138616,99.9,0,0,0.14,598.14,3088.55,26138617,99.88,0.05,1.96,0.2,597.98,3088.71,26138618,99.85,0.01,0.35,0.24,597.26,3089.41,26138619,99.47,0,0,0.74,599.08,3087.57,26138620,99.72,0,0,0.29,598.74,3087.92,26138621,99.88,0,0,0.16,598.46,3088.19,26138622,99.87,0,0,0.14,597.69,3088.96,26138623,99.8,0,0,0.19,597.49,3089.16,26138624,99.71,0,0,0.4,598.15,3088.5,26138625,99.73,0,0,0.43,598.3,3088.36,26138626,99.85,0,0,0.16,598.26,3088.39,26138627,99.77,0,0,0.16,598.22,3088.43,26138628,99.81,0,0,0.14,598.19,3088.47,26138629,99.65,0,0,0.41,598.57,3088.09,26138630,99.68,0,0,0.41,597.77,3088.91,26138631,99.8,0,0,0.16,597.81,3088.86,26138632,99.88,0,0,0.15,597.78,3088.89,26138633,99.82,0,0,0.15,597.74,3088.93,26138634,99.67,0,0,0.4,598.32,3088.34,26138635,99.52,0.07,0.27,0.52,570.78,3115.89,26138636,99.51,0.35,4.17,0.88,551.72,3134.92,26138637,99.3,2.16,71.55,0.36,552.03,3134.61,26138638,99.43,1.02,28.65,0.38,551.96,3134.67,26138639,99.08,1.95,63.24,0.5,552.74,3133.88,26138640,99.63,0.14,2.74,0.63,552.91,3133.73,26138641,99.79,0.06,0.1,0.28,553.13,3133.52,26138642,99.8,0.05,0.1,0.33,553.15,3133.5,26138643,99.85,0.02,0.05,0.23,553.15,3133.49,26138644,99.77,0.87,6.43,0.88,553.13,3134.11,26138645,80.4,1.84,2.83,8.04,709.45,2981,26138646,99.78,0.07,2.38,1.82,1067.16,2623.02,26138647,99.44,0.03,0.06,0.14,632.88,3057.28,26138648,99.81,0.05,2.09,0.29,593.14,3097.01,26138649,99.71,0,0,0.31,594.26,3095.85,26138650,99.49,0,0,0.71,594.86,3095.27,26138651,99.83,0.01,0.11,0.19,594.62,3095.51,26138652,99.82,0,0,0.2,594.56,3095.56,26138653,99.83,0,0,0.18,594.52,3095.6,26138654,99.84,0,0,0.14,594.53,3095.58,26138655,95.77,0.04,0.01,142.23,607.64,3083.87,26138656,99.78,0.03,1.03,0.27,597.32,3092.82,26138657,99.79,0,0,0.2,597.62,3092.52,26138658,99.83,0,0,0.14,597.59,3092.55,26138659,99.79,0,0,0.15,597.56,3092.57,26138660,99.58,0,0,0.74,596.72,3093.45,26138661,99.81,0,0,0.14,595.36,3094.83,26138662,99.75,0,0,0.16,595.32,3094.86,26138663,99.83,0,0,0.14,595.08,3095.09,26138664,99.8,0,0,0.16,594.46,3095.72,26138665,99.61,0,0,0.68,595.45,3094.75,26138666,99.83,0,0,0.22,595.4,3094.8,26138667,99.81,0,0,0.16,595.36,3094.83,26138668,99.81,0,0,0.14,595.33,3094.86,26138669,99.84,0,0,0.14,595.3,3094.88,26138670,99.55,0,0,0.61,595.65,3094.56,26138671,99.83,0,0,0.25,595.97,3094.23,26138672,99.81,0,0,0.14,595.93,3094.26,26138673,99.83,0,0,0.15,595.9,3094.29,26138674,99.85,0,0,0.14,595.86,3094.32,26138675,99.6,0,0,0.58,596.74,3093.46,26138676,99.84,0,0,0.32,596.1,3094.09,26138677,99.83,0,0,0.17,596.22,3093.97,26138678,99.84,0,0,0.15,596.19,3094,26138679,99.79,0,0,0.33,596.39,3093.77,26138680,99.73,0,0,0.32,595.42,3094.75,26138681,99.7,0,0,0.58,595.78,3094.39,26138682,99.83,0,0,0.13,595.33,3094.84,26138683,99.73,0,0,0.31,595.21,3094.95,26138684,99.8,0,0.03,0.21,595.18,3094.98,26138685,99.7,0,0,0.33,594.67,3095.5,26138686,99.7,0.05,1.97,0.79,595.48,3094.69,26138687,99.81,0,0.04,0.25,595.12,3095.04,26138688,99.79,0,0.01,0.14,595.08,3095.08,26138689,99.8,0,0.01,0.18,595.03,3095.12,26138690,99.74,0.01,0.47,0.34,595.68,3094.49,26138691,99.68,0,0,0.7,596.39,3093.77,26138692,99.83,0.03,0.86,0.25,596.14,3094,26138693,99.82,0.01,0.08,0.23,596.12,3094.02,26138694,99.8,0,0.01,0.21,596.03,3094.1,26138695,99.75,0,0,0.32,595.07,3095.08,26138696,99.7,0,0.02,0.61,596.29,3093.85,26138697,99.86,0,0.01,0.19,596.13,3094.01,26138698,99.83,0,0.01,0.16,596.08,3094.05,26138699,99.83,0,0.04,0.16,595.72,3094.41,26138700,99.65,0,0,0.33,594.73,3095.41,26138701,99.7,0,0.01,0.63,595.6,3094.54,26138702,99.85,0,0.04,0.25,595.82,3094.31,26138703,99.85,0,0.02,0.2,595.78,3094.34,26138704,99.76,0,0.03,0.22,595.84,3094.28,26138705,99.77,0.01,0.13,0.37,595.89,3094.24,26138706,99.65,0.02,0.68,0.62,595.64,3094.49,26138707,99.82,0,0.01,0.23,594.91,3095.21,26138708,99.83,0,0,0.14,594.88,3095.24,26138709,99.73,0,0,0.32,596.04,3094.05,26138710,99.74,0,0.01,0.33,596.05,3094.06,26138711,99.68,0,0.07,0.55,596.85,3093.26,26138712,99.84,0,0,0.15,596.12,3093.98,26138713,99.8,0,0,0.16,596.09,3094.01,26138714,99.78,0,0,0.16,596.06,3094.03,26138715,99.8,0,0,0.32,596.77,3093.34,26138716,99.69,0,0,0.4,597.08,3093.02,26138717,99.84,0,0,0.34,596.47,3093.63,26138718,99.79,0,0,0.14,596.18,3093.91,26138719,99.83,0,0,0.14,595.6,3094.49,26138720,99.73,0,0,0.36,594.37,3095.73,26138721,99.7,0,0,0.49,594.79,3095.31,26138722,99.84,0,0,0.22,595.27,3094.83,26138723,99.81,0,0,0.16,595.23,3094.86,26138724,99.82,0,0,0.17,595.31,3094.78,26138725,99.75,0,0,0.36,595.13,3094.97,26138726,99.81,0,0,0.14,595.09,3095.01,26138727,99.69,0.06,2.11,0.67,596.64,3093.45,26138728,99.8,0.03,1.26,0.22,596.33,3093.74,26138729,80.85,0.01,0.03,4.68,1010.47,2679.57,26138730,80.52,0.01,0.03,4.48,1052.33,2637.73,26138731,99.64,0,0.01,0.37,867.95,2822.15,26138732,99.62,0,0,0.56,596.63,3093.46,26138733,99.8,0,0,0.15,596.34,3093.74,26138734,96.55,0.04,0.01,64.2,601.44,3089.84,26138735,99.64,0,0.01,77.62,599.36,3090.45,26138736,99.78,0,0.01,0.19,599.47,3090.33,26138737,99.7,0,0,0.55,599.95,3089.85,26138738,99.82,0,0,0.14,599.65,3090.14,26138739,99.67,0,0,0.34,599.33,3090.45,26138740,99.69,0,0,0.33,596.76,3093.09,26138741,99.81,0,0,0.16,596.71,3093.13,26138742,99.7,0,0,0.49,597.61,3092.23,26138743,99.82,0,0,0.24,597.66,3092.17,26138744,99.81,0,0,0.15,597.58,3092.26,26138745,99.78,0,0,0.32,597.78,3092.09,26138746,99.84,0,0,0.13,597.74,3092.12,26138747,99.68,0,0,0.41,598.17,3091.69,26138748,99.81,0,0.02,0.31,597.3,3092.56,26138749,99.8,0,0,0.15,597.07,3092.77,26138750,99.75,0,0,0.3,597.07,3092.79,26138751,99.83,0,0,0.17,597.02,3092.85,26138752,99.65,0,0,0.54,597.59,3092.27,26138753,99.83,0,0,0.14,596.7,3093.15,26138754,99.81,0,0,0.16,596.77,3093.08,26138755,99.73,0,0,0.36,598.29,3091.57,26138756,99.81,0.01,0.02,0.15,598.28,3091.58,26138757,99.65,0.03,0.76,0.36,598.45,3091.4,26138758,99.8,0.02,0.82,0.47,597.25,3092.58,26138759,99.8,0,0,0.18,597.28,3092.55,26138760,99.69,0,0,0.3,597.03,3092.81,26138761,99.76,0,0,0.16,596.98,3092.86,26138762,99.81,0,0,0.14,596.95,3092.88,26138763,99.63,0,0,0.56,598.67,3091.16,26138764,99.81,0,0,0.15,598.55,3091.28,26138765,99.72,0,0,0.33,596.69,3093.16,26138766,99.79,0.03,0.06,0.29,596.06,3093.77,26138767,99.79,0.01,0.02,0.17,595.95,3093.88,26138768,99.65,0.01,0.01,0.55,597.57,3092.25,26138769,99.62,0,0,0.37,597.24,3092.55,26138770,99.66,0,0,0.35,596.05,3093.76,26138771,99.85,0,0,0.15,595.98,3093.83,26138772,99.78,0.01,0.01,0.22,595.97,3093.84,26138773,99.67,0,0,0.61,597.2,3092.6,26138774,99.83,0,0,0.18,597,3092.81,26138775,99.8,0.01,0,0.45,596.98,3092.85,26138776,99.85,0,0,0.21,596.94,3092.89,26138777,80.72,0.04,0.86,4.49,845.72,2844.06,26138778,99.45,0,0,0.93,945.85,2743.96,26138779,99.81,0,0,0.16,594.47,3095.35,26138780,99.7,0.01,0,0.41,594.98,3094.87,26138781,80.44,0.04,0.86,4.6,976.39,2713.41,26138782,99.68,0,0,0.16,874.28,2815.56,26138783,99.61,0.01,0,0.59,594.78,3095.06,26138784,99.8,0.01,0,0.28,595.05,3094.78,26138785,85.52,0.02,0.01,1.31,688.68,3001.13,26138786,94.53,0.04,0.85,3.89,1104.26,2585.57,26138787,80.88,0.03,0.85,4.36,1081.22,2608.58,26138788,99.47,0.01,0,0.95,941.47,2748.35,26138789,96.09,0,0,0.43,604.58,3085.23,26138790,81.83,0.09,3.31,4.6,1106.58,2583.2,26138791,91.65,0,0,0.5,914.84,2774.97,26138792,87.76,0.03,0.86,4.25,1100.67,2589.11,26138793,99.41,0.01,0,0.43,832.32,2857.48,26138794,81.17,0.03,0.85,4.79,961.02,2728.73,26138795,99.49,0.02,0.82,0.46,886.35,2803.45,26138796,81.05,0.04,0.86,4.34,829.69,2860.07,26138797,99.65,0,0.01,0.47,1020.77,2669.02,26138798,67.97,0.03,0.86,5.52,1054.01,2635.71,26138799,91.65,0.03,0.85,4.35,1113.25,2576.46,26138800,80.94,0.03,0.85,4.76,1078.01,2611.7,26138801,80.26,0.03,0.85,4.64,1077.69,2612.01,26138802,80.39,0.03,0.85,4.24,1069.24,2620.45,26138803,99.77,0,0.01,0.55,1091.85,2597.87,26138804,99.48,0,0,0.54,608.46,3081.25,26138805,80.17,0.02,0.05,4.73,1047.62,2642.07,26138806,80.82,0.03,0.84,4.59,1074.18,2615.51,26138807,90.03,0.04,1.69,0.69,1042.59,2647.12,26138808,70.71,0.02,0.1,8.34,1094.37,2595.26,26138809,99.68,0,0.01,0.91,1072.07,2617.62,26138810,80.53,0.02,0.07,4.51,827.87,2861.81,26138811,99.82,0.03,0.82,0.48,1104.86,2584.84,26138812,97.59,0.01,0,0.3,601.38,3088.31,26138813,75.24,0.01,0.04,4.88,1058.23,2631.42,26138814,87.28,0.01,0.05,4.61,1122.85,2566.79,26138815,80.68,0.02,0.04,4.39,999.05,2690.61,26138816,99.58,0.05,2.45,0.75,1000.79,2688.89,26138817,99.92,0,0,0.2,597.19,3092.49,26138818,97.52,0,0,0.41,601.21,3088.46,26138819,82.48,0.03,0.85,4.66,1097.91,2591.71,26138820,79.87,0.03,0.85,4.85,952.06,2737.58,26138821,99.74,0.02,0.82,0.29,948.73,2740.94,26138822,99.85,0.06,2.02,0.31,597.36,3092.29,26138823,99.83,0.02,0.08,0.21,597.31,3092.31,26138824,99.77,0,0.01,0.5,598.01,3091.61,26138825,99.81,0,0.01,0.48,598.3,3091.33,26138826,99.89,0.05,0,0.25,598.39,3091.24,26138827,99.9,0,0,0.19,598.32,3091.31,26138828,99.57,0.05,0,0.2,598.28,3091.34,26138829,97.64,0,0.01,0.81,596.78,3092.81,26138830,99.82,0,0.02,0.39,549.01,3140.6,26138831,88.97,0.02,0.01,0.71,621.37,3068.21,26138832,91.96,0.04,0.86,4.01,1082.53,2607.06,26138833,99.7,0.04,1.74,0.43,627.97,3061.62,26138834,99.71,0.01,0.43,0.46,596.89,3092.68,26138835,99.81,0.01,0.39,0.62,597.39,3092.18,26138836,99.88,0,0,0.15,597.38,3092.19,26138837,99.89,0,0.01,0.22,597.1,3092.47,26138838,99.91,0,0.01,0.16,597.04,3092.52,26138839,99.62,0.14,0.88,0.91,598.12,3091.4,26138840,99.67,0,0,0.8,600.04,3089.46,26138841,99.89,0.05,0.05,0.22,599.78,3089.73,26138842,99.89,0.01,0.01,0.21,600.01,3089.48,26138843,99.9,0.02,0.17,0.29,599.91,3089.58,26138844,99.9,0.01,0.01,0.2,599.81,3089.67,26138845,80.99,0.03,0.38,5.2,896.68,2792.83,26138846,99.7,0,0.01,0.19,838.81,2850.73,26138847,99.89,0.03,0.87,0.22,595.56,3093.97,26138848,98.63,0.02,0.39,0.32,595.68,3093.83,26138849,99.84,0.06,0.04,0.31,598.38,3091.08,26138850,99.64,0.05,0,0.81,601.39,3088.08,26138851,99.83,0.17,0.41,0.21,600.89,3088.59,26138852,81.96,0.15,2.08,1.98,722.09,2967.35,26138853,99.03,0.08,1.18,3.14,1083.37,2606.09,26138854,86.52,0.05,0.01,1.05,873.38,2816.04,26138855,92.85,0.01,0.04,4.29,1052.87,2636.58,26138856,99.88,0,0.01,0.21,597.21,3092.25,26138857,99.89,0.09,0,0.27,597.2,3092.25,26138858,99.9,0,0,0.15,597.18,3092.27,26138859,99.73,0.14,0.01,0.48,599.13,3090.3,26138860,99.68,0.06,0.13,1.02,599.53,3089.92,26138861,80.89,0.11,1.76,4.44,782.81,2906.58,26138862,99.6,0.01,0.12,0.55,996.03,2693.38,26138863,99.83,0,0.01,0.23,600.29,3089.12,26138864,80.71,0.08,1.05,4.52,831,2858.36,26138865,99.54,0,0.01,0.83,864.2,2825.2,26138866,99.87,0.01,0.17,0.41,603.05,3086.34,26138867,99.86,0.04,1.6,0.29,603.06,3086.32,26138868,99.8,0.21,9.16,0.34,603.11,3086.22,26138869,99.87,0,0.01,0.27,603.19,3086.12,26138870,99.63,0.05,1.71,0.7,604.2,3085.12,26138871,99.9,0.02,0.77,0.46,603.49,3085.8,26138872,99.87,0.03,0.08,0.18,603.44,3085.84,26138873,99.9,0.01,0.02,0.15,603.45,3085.82,26138874,99.89,0.02,0.59,0.19,603.48,3085.78,26138875,99.81,0.01,0.01,0.33,604.15,3085.13,26138876,99.67,0.01,0.02,0.58,603.73,3085.54,26138877,99.85,0.01,0.01,0.14,603.43,3085.84,26138878,99.75,0.16,0.68,0.24,603.29,3085.83,26138879,88.74,0.01,0.01,0.69,669.9,3019.13,26138880,89.12,0.04,1.22,4.35,1100.16,2588.88,26138881,99.58,0,0,0.6,893.77,2795.29,26138882,99.9,0,0,0.17,598.82,3090.23,26138883,99.9,0,0,0.17,598.79,3090.26,26138884,99.91,0,0,0.18,598.75,3090.3,26138885,99.82,0,0,0.34,599.44,3089.62,26138886,99.74,0,0,0.57,600.4,3088.65,26138887,99.88,0,0,0.17,600.29,3088.76,26138888,99.91,0,0,0.18,600.27,3088.78,26138889,99.78,0,0,0.33,600.47,3088.55,26138890,99.79,0.04,1.36,0.44,599.06,3089.98,26138891,99.79,0.05,2.06,0.84,600.42,3088.6,26138892,99.9,0,0,0.23,600.55,3088.46,26138893,99.87,0,0,0.2,600.52,3088.49,26138894,99.87,0.01,0.01,0.22,600.48,3088.52,26138895,99.84,0,0,0.41,600.92,3088.12,26138896,99.73,0,0,0.58,601.3,3087.74,26138897,99.86,0,0,0.24,601.05,3087.98,26138898,99.86,0,0,0.2,600.72,3088.3,26138899,99.86,0.1,2.06,0.33,600.85,3088.17,26138900,99.77,0,0.02,0.46,563.41,3125.61,26138901,99.71,0.02,0.08,0.46,553.97,3135.05,26138902,99.9,0.09,1.65,0.48,554.37,3134.63,26138903,98.47,0.07,0.56,0.39,559.02,3129.95,26138904,80.07,0.07,0.28,4.63,1084.59,2604.33,26138905,81.3,0.04,0.83,4.87,1084.89,2604.03,26138906,99.6,0,0,0.58,835.67,2853.28,26138907,99.87,0,0.02,0.23,600.19,3088.75,26138908,99.88,0.01,0.17,0.27,600.22,3088.73,26138909,99.88,0,0,0.36,589.24,3099.76,26138910,99.82,0,0,0.41,545.19,3144.26,26138911,99.75,0,0,0.6,545.62,3143.83,26138912,99.88,0,0,0.16,545.86,3143.58,26138913,99.91,0,0,0.17,545.85,3143.6,26138914,99.89,0,0,0.18,545.94,3143.5,26138915,99.78,0,0,0.37,545.3,3144.18,26138916,99.93,0,0,0.18,545.25,3144.23,26138917,99.76,0,0,0.63,546.54,3142.93,26138918,99.92,0,0,0.2,546.19,3143.27,26138919,99.72,0,0,0.34,545.73,3143.72,26138920,99.84,0,0,0.35,544.01,3145.45,26138921,99.93,0,0,0.21,543.92,3145.53,26138922,99.77,0,0,0.57,545.25,3144.2,26138923,99.92,0,0,0.22,544.99,3144.45,26138924,99.92,0,0,0.16,544.96,3144.51,26138925,99.79,0,0,0.38,545.02,3144.48,26138926,99.9,0,0,0.18,544.99,3144.5,26138927,99.7,0,0,0.55,545.39,3144.1,26138928,99.91,0,0,0.18,544.71,3144.77,26138929,99.92,0,0,0.16,544.68,3144.8,26138930,99.85,0,0,0.34,543.46,3146.03,26138931,99.93,0,0,0.17,543.41,3146.08,26138932,99.8,0,0,0.54,544.54,3144.94,26138933,99.93,0,0,0.22,545.16,3144.32,26138934,99.91,0,0,0.18,545.24,3144.23,26138935,99.88,0,0,0.36,544.76,3144.73,26138936,99.9,0,0,0.18,544.73,3144.77,26138937,99.78,0,0,0.42,545.39,3144.1,26138938,99.93,0,0,0.31,545.4,3144.08,26138939,99.9,0,0,0.18,545.38,3144.1,26138940,99.78,0.01,0.25,0.36,544.23,3145.26,26138941,99.91,0.01,1.04,0.25,544.19,3145.29,26138942,99.78,0.01,0.88,0.52,544.71,3144.76,26138943,99.88,0,0,0.32,544.38,3145.08,26138944,99.85,0,0,0.17,544.36,3145.1,26138945,99.83,0,0,0.36,544.85,3144.63,26138946,99.88,0,0,0.19,544.83,3144.64,26138947,99.73,0,0,0.4,545.49,3143.98,26138948,99.92,0,0,0.28,544.01,3145.45,26138949,99.21,0,0,0.34,544.98,3144.46,26138950,99.84,0,0,0.34,544.96,3144.49,26138951,99.91,0,0,0.14,544.94,3144.51,26138952,99.89,0,0,0.15,544.92,3144.53,26138953,99.76,0,0,0.55,545.69,3143.76,26138954,99.9,0,0,0.14,545.11,3144.34,26138955,99.82,0,0,0.32,545.11,3144.36,26138956,99.91,0.01,0.02,0.19,545.14,3144.33,26138957,99.87,0,0,0.19,545.12,3144.34,26138958,99.78,0,0,0.54,545.57,3143.89,26138959,99.93,0,0,0.14,545.16,3144.3,26138960,99.84,0,0,0.31,544.53,3144.94,26138961,99.91,0,0.01,0.16,544.46,3145,26138962,99.9,0,0,0.18,544.43,3145.04,26138963,99.8,0,0.01,0.57,545.34,3144.11,26138964,99.94,0,0,0.15,545.34,3144.11,26138965,99.88,0,0,0.33,545.09,3144.38,26138966,99.93,0,0,0.14,545.19,3144.28,26138967,99.92,0,0.02,0.2,545.2,3144.26,26138968,99.8,0,0,0.51,545.52,3143.94,26138969,99.93,0,0,0.2,545.14,3144.31,26138970,99.85,0,0,0.36,545.37,3144.09,26138971,99.9,0,0,0.14,545.33,3144.13,26138972,99.95,0,0,0.16,545.39,3144.06,26138973,99.76,0,0,0.57,545.82,3143.63,26138974,99.93,0,0,0.14,545.44,3144,26138975,99.84,0,0,0.32,545.67,3143.79,26138976,99.94,0,0,0.14,545.65,3143.81,26138977,99.95,0,0,0.16,545.63,3143.83,26138978,99.81,0.01,0.01,0.58,545.84,3143.61,26138979,99.78,0,0,0.31,545.87,3143.56,26138980,99.82,0,0,0.3,545.39,3144.05,26138981,99.9,0,0,0.16,545.35,3144.09,26138982,99.93,0,0,0.14,545.33,3144.11,26138983,99.78,0,0,0.43,545.9,3143.53,26138984,99.93,0,0,0.28,545.6,3143.82,26138985,99.83,0,0,0.32,545.71,3143.72,26138986,99.93,0,0,0.17,545.68,3143.75,26138987,99.93,0,0,0.14,545.65,3143.78,26138988,99.93,0,0,0.15,545.63,3143.8,26138989,99.78,0,0,0.54,545.84,3143.58,26138990,99.8,0,0,0.36,544.93,3144.51,26138991,99.93,0,0,0.16,544.83,3144.6,26138992,99.92,0,0,0.15,544.81,3144.62,26138993,99.93,0,0,0.14,544.89,3144.53,26138994,99.79,0,0,0.57,545.7,3143.72,26138995,99.81,0,0,0.33,544.72,3144.72,26138996,99.92,0,0,0.14,544.71,3144.72,26138997,99.83,0,0,0.27,531.38,3158.52,26138998,99.82,0.01,0.01,0.43,532.84,3157,26138999,99.8,0,0,0.55,535.13,3154.68,26139000,99.79,0,0,0.33,534.84,3154.99,26139001,99.95,0,0,0.14,534.91,3154.91,26139002,99.93,0,0,0.2,534.97,3154.86,26139003,99.93,0,0,0.16,534.97,3154.87,26139004,99.79,0,0,0.55,535.58,3154.25,26139005,99.9,0,0,0.37,535.68,3154.16,26139006,99.92,0,0,0.13,535.66,3154.18,26139007,99.9,0,0,0.2,535.65,3154.19,26139008,99.94,0,0,0.16,535.64,3154.19,26139009,99.67,0,0,0.73,536.21,3153.6,26139010,99.9,0,0,0.35,535.63,3154.2,26139011,99.93,0,0.02,0.18,535.59,3154.23,26139012,99.9,0,0,0.17,535.57,3154.25,26139013,99.88,0,0,0.15,535.54,3154.27,26139014,99.78,0,0,0.43,535.89,3153.93,26139015,99.77,0,0,0.52,535.79,3154.05,26139016,99.93,0,0,0.16,535.94,3153.9,26139017,99.92,0,0,0.19,536.18,3153.65,26139018,99.92,0,0,0.16,536.16,3153.67,26139019,96.67,0.27,0.01,64.45,541.62,3148.56,26139020,97.91,0,0,195.46,543.43,3146.78,26139021,99.93,0,0,0.22,536.64,3153.18,26139022,99.93,0,0,0.14,536.61,3153.2,26139023,99.93,0,0,0.14,536.58,3153.23,26139024,99.88,0,0,0.16,536.58,3153.23,26139025,99.59,0,0,0.8,535.55,3154.3,26139026,99.93,0,0,0.16,534.89,3154.96,26139027,99.93,0,0,0.16,534.89,3154.96,26139028,99.92,0,0,0.18,534.86,3154.99,26139029,99.93,0,0,0.16,534.85,3154.99,26139030,99.68,0,0,0.79,535.48,3154.38,26139031,99.92,0,0,0.14,535.33,3154.53,26139032,99.92,0,0,0.14,535.47,3154.38,26139033,99.95,0,0,0.17,535.48,3154.36,26139034,99.88,0,0,0.14,535.47,3154.38,26139035,99.71,0,0,0.73,536.21,3153.65,26139036,99.93,0,0,0.15,535.96,3153.89,26139037,99.91,0,0,0.14,535.94,3153.91,26139038,99.94,0,0,0.17,535.92,3153.92,26139039,99.86,0,0,0.33,535.65,3154.17,26139040,99.73,0,0,0.71,536.16,3153.68,26139041,99.93,0,0,0.16,535.87,3153.96,26139042,99.93,0,0,0.17,535.87,3153.96,26139043,99.91,0,0,0.16,535.65,3154.17,26139044,99.95,0,0,0.16,535.34,3154.49,26139045,99.69,0,0,0.67,536.42,3153.43,26139046,99.93,0,0,0.2,535.84,3154.01,26139047,99.93,0,0,0.16,535.81,3154.03,26139048,99.95,0,0,0.14,535.8,3154.04,26139049,99.94,0,0,0.16,535.93,3153.9,26139050,99.7,0,0,0.73,536.45,3153.4,26139051,99.95,0,0,0.14,535.97,3153.88,26139052,99.94,0,0,0.14,535.96,3153.88,26139053,99.94,0,0,0.22,535.93,3153.91,26139054,99.94,0,0,0.15,535.92,3153.91,26139055,99.7,0,0,0.55,536.53,3153.32,26139056,99.89,0,0,0.37,535.93,3153.92,26139057,99.93,0,0,0.14,535.9,3153.95,26139058,99.93,0,0,0.16,535.89,3153.95,26139059,99.94,0,0,0.14,535.86,3153.98,26139060,99.86,0,0,0.32,536.12,3153.73,26139061,99.76,0,0.01,0.59,535.36,3154.48,26139062,99.93,0,0,0.14,534.83,3155.01,26139063,99.95,0,0,0.14,534.81,3155.02,26139064,99.93,0,0,0.15,534.89,3154.95,26139065,99.84,0,0,0.34,536.23,3153.62,26139066,99.78,0,0,0.58,536.59,3153.25,26139067,99.95,0,0,0.14,536.23,3153.61,26139068,99.93,0,0,0.15,536.2,3153.64,26139069,99.76,0,0,0.36,535.86,3153.96,26139070,99.82,0,0,0.37,535.25,3154.58,26139071,99.78,0,0,0.55,535.54,3154.28,26139072,99.93,0,0,0.14,535.16,3154.66,26139073,99.93,0,0,0.14,535.14,3154.68,26139074,99.91,0,0,0.17,535.11,3154.7,26139075,99.86,0,0,0.34,535.12,3154.71,26139076,99.8,0,0,0.54,535.46,3154.36,26139077,99.92,0,0,0.21,535.32,3154.5,26139078,99.95,0,0,0.15,535.33,3154.49,26139079,99.95,0,0,0.14,535.31,3154.5,26139080,99.86,0,0,0.33,535.48,3154.35,26139081,99.79,0,0,0.57,536.18,3153.65,26139082,99.92,0,0,0.15,535.49,3154.34,26139083,99.95,0,0,0.14,535.46,3154.36,26139084,99.91,0,0,0.17,535.45,3154.37,26139085,99.86,0,0,0.37,535.46,3154.37,26139086,99.8,0,0,0.59,535.77,3154.05,26139087,99.88,0,0,0.18,534.69,3155.13,26139088,98.78,0,0,0.17,534.68,3155.14,26139089,99.5,0,0,0.18,534.68,3155.14,26139090,99.8,0,0,0.32,534.91,3154.92,26139091,99.8,0,0,0.37,535.29,3154.54,26139092,99.94,0,0,0.36,535.39,3154.43,26139093,99.96,0,0,0.14,535.36,3154.45,26139094,99.93,0,0,0.16,535.35,3154.46,26139095,99.82,0,0,0.35,535.11,3154.72,26139096,99.79,0,0,0.33,535.44,3154.39,26139097,99.9,0,0,0.44,535.08,3154.74,26139098,99.94,0,0,0.18,535.19,3154.63,26139099,99.73,0,0,0.4,535.5,3154.29,26139100,99.88,0,0,0.36,535.5,3154.31,26139101,99.95,0,0,0.18,535.46,3154.34,26139102,99.78,0,0,0.58,535.82,3153.99,26139103,99.87,0,0,0.16,535.34,3154.47,26139104,99.9,0,0,0.18,535.17,3154.64,26139105,99.8,0,0,0.33,535.23,3154.6,26139106,99.93,0,0,0.15,535.16,3154.66,26139107,99.77,0,0,0.61,536.02,3153.8,26139108,99.92,0,0,0.18,535.39,3154.42,26139109,99.92,0,0,0.18,535.36,3154.45,26139110,99.83,0,0,0.34,534.9,3154.93,26139111,99.9,0,0,0.14,534.88,3154.95,26139112,99.77,0,0,0.52,535.33,3154.49,26139113,99.92,0,0,0.2,535.08,3154.73,26139114,99.93,0,0,0.18,535.08,3154.73,26139115,99.83,0,0,0.35,534.83,3154.99,26139116,99.92,0,0,0.15,534.82,3155.01,26139117,99.78,0,0,0.53,535.44,3154.38,26139118,99.92,0,0,0.23,535.23,3154.59,26139119,99.94,0,0,0.14,535.2,3154.61,26139120,99.83,0,0,0.34,535.22,3154.6,26139121,99.92,0,0,0.16,535.19,3154.63,26139122,99.8,0,0,0.41,535.54,3154.28,26139123,99.93,0,0,0.29,535.18,3154.64,26139124,99.93,0,0,0.14,535.16,3154.65,26139125,99.9,0,0,0.34,535.64,3154.18,26139126,99.92,0,0,0.16,535.65,3154.18,26139127,99.8,0,0,0.39,536.04,3153.78,26139128,99.94,0,0,0.3,535.85,3153.96,26139129,99.84,0,0,0.3,535.6,3154.19,26139130,99.84,0,0,0.32,535.59,3154.22,26139131,99.91,0,0,0.17,535.55,3154.25,26139132,99.8,0,0,0.3,536.06,3153.74,26139133,99.92,0,0,0.39,535.46,3154.34,26139134,99.93,0,0,0.15,535.45,3154.34,26139135,99.84,0,0,0.32,535.71,3154.1,26139136,99.94,0,0,0.14,535.67,3154.13,26139137,99.92,0,0,0.21,535.67,3154.13,26139138,99.76,0,0,0.56,535.5,3154.29,26139139,99.96,0,0,0.16,534.63,3155.16,26139140,99.89,0,0,0.34,535.11,3154.69,26139141,99.92,0,0,0.16,535.12,3154.68,26139142,99.95,0,0,0.14,535.11,3154.69,26139143,99.8,0,0,0.56,536.07,3153.72,26139144,99.93,0,0,0.17,535.81,3153.98,26139145,99.83,0,0,0.38,534.6,3155.2,26139146,99.91,0,0,0.13,534.56,3155.24,26139147,99.9,0,0,0.16,534.57,3155.22,26139148,99.8,0,0,0.61,535.19,3154.6,26139149,99.93,0,0,0.16,534.94,3154.84,26139150,99.76,0,0,0.38,534.05,3155.75,26139151,99.93,0,0,0.14,533.94,3155.85,26139152,99.91,0,0,0.14,533.92,3155.87,26139153,99.79,0,0,0.5,534.51,3155.27,26139154,99.9,0,0,0.2,534.64,3155.14,26139155,99.8,0,0,0.33,533.46,3156.34,26139156,99.94,0,0,0.16,533.39,3156.41,26139157,99.95,0,0,0.14,533.39,3156.41,26139158,99.8,0,0,0.4,534.08,3155.7,26139159,99.88,0,0,0.46,535.55,3154.21,26139160,99.9,0,0,0.33,535.82,3153.98,26139161,99.91,0,0,0.14,535.8,3154,26139162,99.93,0,0,0.16,535.78,3154.01,26139163,99.72,0,0,0.43,536.18,3153.6,26139164,99.94,0,0,0.31,535.69,3154.12,26139165,99.87,0,0,0.36,535.71,3154.13,26139166,99.91,0,0,0.14,535.7,3154.13,26139167,99.92,0,0,0.14,535.67,3154.16,26139168,99.81,0,0,0.31,536.01,3153.81,26139169,99.9,0,0,0.39,536.26,3153.56,26139170,99.87,0,0,0.35,536.14,3153.7,26139171,99.93,0,0,0.16,536.13,3153.7,26139172,99.91,0,0,0.15,536.13,3153.7,26139173,99.95,0,0,0.16,536.11,3153.71,26139174,99.74,0,0,0.6,536.34,3153.46,26139175,99.85,0,0,0.36,535.61,3154.21,26139176,99.93,0,0,0.14,535.58,3154.24,26139177,99.92,0,0,0.16,535.56,3154.25,26139178,99.88,0,0,0.15,535.53,3154.28,26139179,99.71,0,0,0.58,536.11,3153.69,26139180,99.34,0,0,11.39,535.48,3155.06,26139181,99.83,0,0,0.18,535.48,3155.13,26139182,99.86,0,0,0.19,535.47,3155.15,26139183,99.85,0,0,0.18,535.44,3155.17,26139184,99.74,0,0,0.56,536.28,3154.33,26139185,99.73,0.01,0.03,0.39,536.13,3154.5,26139186,99.91,0,0,0.22,536.08,3154.54,26139187,99.96,0,0,0.15,536.05,3154.57,26139188,99.95,0,0,0.14,536.04,3154.57,26139189,99.7,0,0,0.55,536.58,3154.03,26139190,99.75,0,0,0.43,536.45,3154.18,26139191,99.85,0,0,0.15,536.46,3154.16,26139192,99.75,0,0,0.15,536.46,3154.17,26139193,99.88,0,0,0.16,536.42,3154.2,26139194,99.74,0,0,0.41,536.78,3153.84,26139195,99.77,0,0,0.47,536.2,3154.43,26139196,99.9,0,0,0.15,536.16,3154.47,26139197,99.86,0,0,0.18,536.15,3154.47,26139198,99.83,0,0,0.16,536.14,3154.48,26139199,99.77,0,0,0.41,536.54,3154.08,26139200,99.83,0,0,0.45,536.15,3154.49,26139201,99.83,0,0,0.16,536.1,3154.53,26139202,99.83,0,0,0.16,536.09,3154.54,26139203,99.85,0,0,0.14,536.08,3154.54,26139204,99.84,0,0,0.16,536.05,3154.57,26139205,99.6,0,0,0.8,536.9,3153.73,26139206,99.84,0,0,0.18,536.39,3154.24,26139207,99.85,0,0,0.15,536.46,3154.16,26139208,99.87,0,0,0.15,536.45,3154.16,26139209,99.84,0,0,0.15,536.42,3154.19,26139210,99.62,0,0,0.71,536.78,3153.85,26139211,99.88,0,0,0.14,536.43,3154.2,26139212,99.84,0,0,0.17,536.42,3154.2,26139213,99.86,0,0,0.16,536.39,3154.23,26139214,99.85,0,0,0.14,536.38,3154.23,26139215,99.6,0,0,0.73,536.74,3153.89,26139216,99.82,0,0,0.14,536.37,3154.26,26139217,99.85,0,0,0.17,536.36,3154.26,26139218,99.83,0,0,0.14,536.33,3154.29,26139219,99.74,0,0,0.31,536.32,3154.3,26139220,99.64,0,0,0.8,536.18,3154.44,26139221,99.84,0,0,0.13,535.55,3155.07,26139222,99.84,0,0,0.17,535.54,3155.08,26139223,99.8,0,0,0.17,535.57,3155.04,26139224,99.83,0,0,0.18,535.43,3155.17,26139225,99.65,0,0,0.69,536.16,3154.47,26139226,99.82,0,0,0.18,535.68,3154.94,26139227,99.84,0,0,0.18,535.65,3154.97,26139228,99.87,0,0,0.16,535.64,3154.97,26139229,99.86,0,0,0.14,535.64,3154.97,26139230,99.67,0,0,0.82,536.16,3154.46,26139231,99.83,0,0,0.21,535.62,3155,26139232,99.85,0,0,0.21,535.62,3155,26139233,99.83,0,0,0.2,535.58,3155.03,26139234,99.86,0,0,0.18,535.57,3155.04,26139235,99.66,0,0,0.75,536.11,3154.52,26139236,99.84,0,0,0.15,535.56,3155.06,26139237,99.86,0,0,0.18,535.55,3155.07,26139238,99.84,0,0,0.16,535.54,3155.07,26139239,99.87,0,0,0.16,535.62,3154.99,26139240,99.77,0,0,0.38,535.94,3154.68,26139241,99.7,0,0,0.61,536.33,3154.28,26139242,99.85,0,0,0.14,535.67,3154.94,26139243,99.86,0,0,0.16,535.66,3154.95,26139244,99.86,0,0,0.16,535.63,3154.97,26139245,99.77,0,0,0.34,536.12,3154.5,26139246,99.68,0,0,0.59,536.39,3154.22,26139247,99.83,0,0,0.15,535.82,3154.79,26139248,99.83,0,0,0.14,535.81,3154.79,26139249,99.76,0,0,0.33,535.56,3155.02,26139250,99.72,0,0,0.32,534.58,3156.01,26139251,99.71,0,0,0.54,535.68,3154.91,26139252,99.83,0,0,0.19,535.75,3154.83,26139253,99.85,0,0,0.16,535.73,3154.84,26139254,99.85,0,0,0.17,535.9,3154.67,26139255,99.8,0,0,0.3,535.9,3154.68,26139256,99.68,0,0,0.49,536.24,3154.34,26139257,99.83,0,0,0.34,535.89,3154.69,26139258,99.85,0,0,0.16,535.86,3154.72,26139259,99.86,0,0,0.15,535.85,3154.72,26139260,99.82,0,0,0.27,535.87,3154.72,26139261,99.7,0,0,0.56,536.12,3154.47,26139262,99.85,0,0,0.14,535.58,3155,26139263,99.84,0.02,0,0.15,535.5,3155.07,26139264,99.85,0,0,0.14,535.48,3155.09,26139265,99.7,0,0,0.3,535.01,3155.57,26139266,99.7,0,0,0.57,535.74,3154.84,26139267,99.86,0,0,0.16,535.89,3154.69,26139268,99.84,0,0.01,0.18,535.86,3154.71,26139269,99.86,0,0,0.15,535.85,3154.72,26139270,99.74,0,0,0.27,534.87,3155.71,26139271,99.54,0,0,0.42,535.3,3155.28,26139272,99.88,0,0,0.3,535.58,3155,26139273,99.87,0,0,0.14,535.54,3155.03,26139274,99.81,0,0,0.14,535.54,3155.03,26139275,99.76,0,0,0.28,535.78,3154.8,26139276,99.84,0,0,0.16,535.76,3154.81,26139277,99.73,0,0,0.62,536.1,3154.46,26139278,99.83,0,0,0.15,535.74,3154.82,26139279,99.73,0,0,0.39,535.74,3154.79,26139280,99.74,0,0,0.27,535.98,3154.57,26139281,99.85,0,0,0.16,536.16,3154.39,26139282,99.73,0,0,0.57,535.91,3154.64,26139283,99.81,0,0,0.18,535.14,3155.4,26139284,99.8,0,0,0.16,535.63,3154.91,26139285,99.73,0,0,0.27,535.65,3154.91,26139286,99.83,0,0,0.16,535.61,3154.94,26139287,99.69,0,0,0.55,536.26,3154.29,26139288,99.85,0,0,0.19,536.07,3154.47,26139289,99.81,0,0,0.18,536.06,3154.48,26139290,99.74,0,0,0.3,536.05,3154.5,26139291,99.83,0,0,0.13,536.04,3154.51,26139292,99.71,0,0,0.56,536.23,3154.31,26139293,99.83,0,0,0.14,535.75,3154.78,26139294,99.82,0,0,0.15,535.74,3154.79,26139295,99.8,0,0,0.28,536,3154.55,26139296,99.86,0,0,0.14,536.13,3154.42,26139297,99.72,0,0,0.57,536.51,3154.03,26139298,99.83,0,0,0.15,536.15,3154.39,26139299,99.83,0,0,0.14,536.12,3154.41,26139300,99.77,0,0,0.32,536.13,3154.42,26139301,99.82,0,0,0.16,536.11,3154.44,26139302,99.71,0,0,0.52,536.81,3153.73,26139303,99.86,0,0,0.21,535.82,3154.72,26139304,99.81,0,0,0.14,535.81,3154.73,26139305,99.79,0,0,0.32,536.07,3154.47,26139306,99.82,0,0,0.13,536.06,3154.48,26139307,99.71,0,0,0.39,536.71,3153.84,26139308,99.82,0,0,0.32,536.02,3154.51,26139309,99.73,0,0,0.36,536.03,3154.48,26139310,99.76,0,0,0.34,535.77,3154.76,26139311,99.85,0,0,0.15,535.76,3154.77,26139312,99.8,0,0,0.14,535.75,3154.77,26139313,99.7,0,0,0.58,536.48,3154.03,26139314,99.84,0,0,0.18,535.9,3154.61,26139315,99.77,0,0,0.27,536.15,3154.37,26139316,99.81,0,0,0.19,536.13,3154.39,26139317,99.83,0,0,0.27,536.09,3154.42,26139318,99.69,0,0,0.57,536.44,3154.07,26139319,99.86,0,0,0.17,536.07,3154.43,26139320,99.75,0,0,0.27,536.07,3154.45,26139321,99.8,0,0,0.17,536.06,3154.46,26139322,99.82,0,0,0.14,536.03,3154.48,26139323,99.71,0,0,0.54,536.37,3154.14,26139324,99.81,0,0,0.15,536.02,3154.49,26139325,99.8,0,0,0.27,536.25,3154.27,26139326,99.85,0,0,0.14,536.24,3154.27,26139327,99.83,0,0,0.16,536.24,3154.27,26139328,99.63,0,0,0.54,536.65,3153.86,26139329,99.83,0,0,0.15,536.39,3154.12,26139330,99.69,0,0,0.26,535.75,3154.77,26139331,99.82,0,0,0.16,535.66,3154.86,26139332,99.78,0,0,0.14,535.63,3154.89,26139333,99.7,0,0,0.5,536.07,3154.44,26139334,99.83,0,0,0.19,535.83,3154.67,26139335,99.69,0,0,0.27,536.09,3154.43,26139336,99.84,0,0,0.14,536.07,3154.45,26139337,99.74,0,0,0.16,536.06,3154.46,26139338,99.65,0,0,0.54,536.45,3154.06,26139339,99.63,0,0,0.32,536,3154.48,26139340,99.75,0,0,0.25,536.26,3154.24,26139341,99.8,0,0,0.16,536.25,3154.24,26139342,99.83,0,0,0.14,536.22,3154.27,26139343,99.66,0,0,0.44,536.71,3153.77,26139344,99.86,0,0,0.29,535.94,3154.55,26139345,99.78,0,0,0.27,536.13,3154.38,26139346,99.81,0,0,0.16,536.11,3154.4,26139347,99.8,0,0,0.15,536.1,3154.4,26139348,99.83,0,0,0.15,536.09,3154.4,26139349,99.67,0,0,0.57,536.62,3153.87,26139350,99.8,0,0,0.32,536.32,3154.19,26139351,99.84,0,0,0.18,536.32,3154.19,26139352,99.83,0,0,0.19,536.29,3154.21,26139353,99.82,0,0,0.16,536.28,3154.22,26139354,99.67,0,0,0.54,536.6,3153.89,26139355,99.76,0,0,0.33,536.26,3154.25,26139356,99.83,0,0,0.14,536.23,3154.27,26139357,99.87,0,0,0.14,536.22,3154.28,26139358,99.8,0,0,0.16,536.21,3154.28,26139359,99.68,0,0,0.55,536.72,3153.77,26139360,99.73,0,0,0.31,535.24,3155.27,26139361,99.85,0,0,0.18,535.36,3155.14,26139362,99.84,0,0,0.18,535.36,3155.13,26139363,99.85,0,0,0.18,535.35,3155.14,26139364,99.72,0,0,0.61,535.99,3154.5,26139365,99.83,0,0,0.33,536.58,3153.93,26139366,99.86,0,0,0.18,536.56,3153.94,26139367,99.91,0,0,0.16,536.28,3154.22,26139368,99.89,0,0,0.17,535.51,3154.99,26139369,99.61,0,0,0.8,535.57,3154.92,26139370,99.84,0,0,0.29,534.52,3155.99,26139371,99.9,0,0,0.18,534.5,3156,26139372,99.91,0,0,0.16,534.48,3156.02,26139373,99.91,0,0,0.18,534.46,3156.04,26139374,99.7,0,0,0.58,535.26,3155.23,26139375,99.8,0.01,0.03,0.31,535.18,3155.33,26139376,99.92,0,0,0.16,534.99,3155.51,26139377,99.94,0,0,0.21,534.96,3155.54,26139378,99.94,0,0,0.16,534.95,3155.54,26139379,99.81,0,0,0.43,535.45,3155.04,26139380,99.86,0,0,0.42,535.38,3155.13,26139381,99.94,0,0,0.17,535.39,3155.11,26139382,99.94,0,0,0.19,535.37,3155.12,26139383,99.92,0,0,0.18,535.36,3155.15,26139384,99.91,0,0,0.15,535.35,3155.16,26139385,94.58,0.29,0.01,259.44,550.59,3139.97,26139386,99.93,0,0,0.2,537.96,3152.53,26139387,99.9,0,0,0.14,537.95,3152.53,26139388,99.9,0,0,0.15,537.95,3152.53,26139389,99.91,0,0,0.14,537.91,3152.56,26139390,99.71,0,0,0.71,536.24,3154.29,26139391,99.92,0,0,0.15,535.03,3155.51,26139392,99.92,0,0,0.16,534.81,3155.72,26139393,99.95,0,0,0.14,534.74,3155.79,26139394,99.91,0,0,0.15,534.74,3155.79,26139395,99.74,0,0,0.68,535.71,3154.86,26139396,99.89,0,0,0.14,535.46,3155.13,26139397,99.91,0,0,0.16,535.43,3155.16,26139398,99.95,0,0,0.14,535.42,3155.16,26139399,99.76,0,0,0.31,535.89,3154.66,26139400,99.71,0,0,0.75,535.99,3154.58,26139401,99.89,0,0,0.17,535.36,3155.21,26139402,99.9,0,0,0.14,535.35,3155.21,26139403,99.92,0,0,0.19,535.38,3155.18,26139404,99.93,0,0,0.16,535.56,3155,26139405,99.73,0,0,0.57,535.82,3154.76,26139406,99.9,0,0,0.28,535.3,3155.27,26139407,99.91,0,0,0.16,535.29,3155.27,26139408,99.92,0,0,0.14,535.27,3155.29,26139409,99.89,0,0,0.15,535.25,3155.3,26139410,99.66,0,0,0.52,536.02,3154.56,26139411,99.93,0,0,0.3,535.24,3155.34,26139412,99.92,0,0,0.14,535.23,3155.34,26139413,99.9,0,0,0.14,535.2,3155.36,26139414,99.9,0,0,0.15,535.19,3155.37,26139415,99.68,0,0,0.43,536.39,3154.18,26139416,99.91,0,0,0.44,535.84,3154.74,26139417,99.92,0,0,0.17,535.85,3154.72,26139418,99.93,0,0,0.14,535.82,3154.75,26139419,99.93,0,0,0.16,535.81,3154.75,26139420,99.81,0,0,0.28,535.11,3155.47,26139421,99.76,0,0,0.54,535.92,3154.66,26139422,99.92,0,0,0.15,535.3,3155.27,26139423,99.88,0,0,0.16,535.29,3155.27,26139424,99.9,0,0,0.14,535.26,3155.3,26139425,99.83,0,0,0.26,535.28,3155.3,26139426,99.8,0,0,0.59,535.62,3154.96,26139427,99.93,0,0,0.16,534.99,3155.59,26139428,99.88,0,0,0.15,534.98,3155.62,26139429,99.8,0,0,0.33,535.68,3154.9,26139430,99.75,0,0,0.29,535.94,3154.65,26139431,99.78,0,0,0.56,536.37,3154.21,26139432,99.88,0,0,0.14,535.91,3154.67,26139433,97.96,0,0,0.16,536.08,3154.5,26139434,99.77,0,0,0.14,536.09,3154.5,26139435,99.86,0,0,0.26,536.08,3154.53,26139436,99.78,0,0,0.58,536.51,3154.09,26139437,99.9,0,0,0.2,536.31,3154.29,26139438,99.93,0,0,0.14,536.28,3154.31,26139439,99.92,0,0,0.17,536.27,3154.32,26139440,99.86,0,0,0.25,536.02,3154.59,26139441,99.77,0,0,0.43,536.31,3154.29,26139442,99.94,0,0,0.31,535.76,3154.84,26139443,99.9,0,0,0.14,535.73,3154.87,26139444,99.94,0,0,0.14,535.72,3154.88,26139445,99.87,0,0,0.27,534.51,3156.1,26139446,99.81,0,0,0.39,534.87,3155.73,26139447,99.96,0,0,0.27,535.45,3155.15,26139448,99.91,0,0,0.16,535.43,3155.17,26139449,99.95,0,0,0.14,535.44,3155.15,26139450,99.85,0,0,0.27,536.1,3154.51,26139451,99.75,0,0,0.43,536.44,3154.17,26139452,99.9,0,0,0.28,536.06,3154.54,26139453,99.92,0,0,0.14,536.05,3154.54,26139454,99.94,0,0,0.15,536.02,3154.57,26139455,99.87,0,0,0.28,536.03,3154.57,26139456,99.96,0,0,0.13,536.03,3154.57,26139457,99.78,0,0,0.56,536.38,3154.21,26139458,99.94,0,0,0.14,535.99,3154.59,26139459,99.81,0,0,0.4,535.98,3154.58,26139460,99.85,0,0,0.27,535.99,3154.59,26139461,99.95,0,0,0.16,535.96,3154.62,26139462,99.78,0,0,0.55,536.68,3153.9,26139463,99.9,0,0,0.17,535.83,3154.75,26139464,99.93,0,0,0.16,535.42,3155.14,26139465,99.83,0,0,0.27,536.17,3154.41,26139466,99.92,0,0,0.25,535.98,3154.61,26139467,99.81,0,0,0.63,536.44,3154.13,26139468,99.95,0,0,0.2,535.94,3154.63,26139469,99.92,0,0,0.15,536.07,3154.5,26139470,99.83,0,0,0.26,535.87,3154.71,26139471,99.87,0,0,0.14,535.81,3154.79,26139472,99.81,0,0,0.44,536.43,3154.2,26139473,99.93,0,0,0.29,536.04,3154.59,26139474,99.93,0,0,0.14,536.01,3154.61,26139475,99.87,0,0,0.29,536.03,3154.61,26139476,99.93,0,0,0.19,536.02,3154.61,26139477,99.8,0,0,0.54,536.31,3154.31,26139478,99.93,0,0,0.16,535.25,3155.38,26139479,99.94,0,0,0.15,535.24,3155.38,26139480,99.79,0,0,0.26,534.76,3155.88,26139481,99.86,0,0,0.14,534.73,3155.9,26139482,99.79,0,0,0.33,535.13,3155.5,26139483,99.92,0,0,0.39,536.43,3154.2,26139484,99.93,0,0,0.15,536.41,3154.21,26139485,99.87,0,0,0.29,536.17,3154.47,26139486,99.94,0,0,0.14,536.3,3154.33,26139487,99.77,0,0,0.31,536.66,3153.97,26139488,99.93,0,0,0.38,536.29,3154.33,26139489,99.89,0,0,0.32,536.54,3154.06,26139490,99.86,0,0,0.27,536.53,3154.08,26139491,99.93,0,0,0.16,536.52,3154.09,26139492,99.91,0,0,0.15,536.5,3154.11,26139493,99.75,0,0,0.54,536.62,3153.98,26139494,98.59,0,0,0.15,536.23,3154.37,26139495,99.84,0,0,0.25,536.47,3154.15,26139496,99.93,0,0,0.14,536.46,3154.15,26139497,99.91,0,0,0.2,536.43,3154.17,26139498,99.81,0,0,0.58,536.83,3153.77,26139499,99.94,0,0,0.14,536.17,3154.43,26139500,99.81,0,0,0.27,535.44,3155.17,26139501,99.92,0,0,0.15,535.54,3155.07,26139502,99.9,0,0,0.15,535.56,3155.04,26139503,99.79,0,0,0.5,536.54,3154.06,26139504,99.9,0,0,0.2,536.51,3154.09,26139505,99.6,0,0,0.29,535.35,3155.26,26139506,95.45,22.51,0.03,163.22,544.96,3131.42,26139507,99.89,0,0,0.17,537.92,3130.28,26139508,99.73,0,0,0.56,538.63,3129.56,26139509,99.92,0,0,0.18,538.88,3129.3,26139510,99.76,0,0,0.3,538.18,3130.02,26139511,99.88,0,0,0.2,536.98,3131.25,26139512,98.49,0,0,0.15,536.46,3131.79,26139513,99.79,0,0,0.55,536.81,3131.44,26139514,99.95,0,0,0.15,536.42,3131.82,26139515,99.83,0,0,0.27,535.97,3132.29,26139516,99.94,0,0,0.16,535.94,3132.32,26139517,99.94,0,0,0.14,535.91,3132.34,26139518,99.78,0,0,0.55,536.19,3132.06,26139519,99.89,0,0,0.3,535.4,3132.85,26139520,99.9,0,0,0.27,535.64,3132.62,26139521,99.93,0,0,0.15,535.64,3132.62,26139522,99.93,0,0,0.16,535.61,3132.64,26139523,99.78,0,0,0.33,535.87,3132.37,26139524,99.9,0,0,0.43,535.72,3132.52,26139525,99.84,0,0,0.27,534.81,3133.45,26139526,99.93,0,0,0.15,534.78,3133.48,26139527,99.94,0,0,0.14,534.78,3133.48,26139528,99.95,0,0,0.16,534.77,3133.48,26139529,99.72,0,0,0.55,535.61,3132.63,26139530,99.85,0,0,0.26,535.48,3132.78,26139531,99.93,0,0,0.15,535.46,3132.8,26139532,99.91,0,0,0.14,535.45,3132.8,26139533,99.9,0,0,0.15,535.42,3132.83,26139534,99.78,0,0,0.55,536.09,3132.16,26139535,99.83,0,0,0.27,534.71,3133.55,26139536,99.87,0,0,0.15,534.65,3133.6,26139537,99.9,0,0,0.16,534.65,3133.6,26139538,99.9,0,0,0.15,534.65,3133.6,26139539,99.74,0,0,0.55,535.63,3132.61,26139540,99.78,0,0,0.26,534.41,3133.85,26139541,99.93,0,0,0.15,534.53,3133.72,26139542,99.93,0,0,0.16,534.53,3133.72,26139543,99.9,0,0,0.14,534.52,3133.72,26139544,99.78,0,0,0.55,535.48,3132.76,26139545,99.81,0,0,0.29,535.8,3132.46,26139546,99.93,0,0,0.14,535.73,3132.52,26139547,99.92,0,0,0.16,535.72,3132.54,26139548,99.93,0,0,0.14,535.69,3132.55,26139549,99.66,0,0,0.67,536.13,3132.09,26139550,99.86,0,0,0.37,535.7,3132.53,26139551,99.91,0,0,0.15,535.67,3132.55,26139552,99.95,0,0,0.16,535.67,3132.55,26139553,99.92,0,0,0.15,535.65,3132.57,26139554,99.73,0,0,0.52,536.16,3132.08,26139555,99.84,0,0,0.33,535.88,3132.37,26139556,99.9,0,0,0.14,535.89,3132.36,26139557,99.95,0,0,0.21,535.62,3132.62,26139558,99.92,0,0,0.14,535.61,3132.63,26139559,99.87,0,0,0.15,535.78,3132.45,26139560,99.71,0,0,0.66,536.55,3131.7,26139561,99.92,0,0,0.16,536.05,3132.2,26139562,99.92,0,0,0.14,536.04,3132.2,26139563,99.93,0,0,0.16,536.01,3132.23,26139564,99.92,0,0,0.14,536,3132.23,26139565,98.42,0,0,15.83,539.07,3129.79,26139566,99.91,0,0,0.2,535.75,3132.54,26139567,99.93,0,0,0.14,535.74,3132.54,26139568,99.91,0,0,0.15,535.71,3132.57,26139569,99.89,0,0,0.16,535.7,3132.57,26139570,99.73,0,0,0.65,536.3,3131.99,26139571,99.93,0,0,0.16,535.93,3132.36,26139572,99.92,0,0,0.14,535.93,3132.36,26139573,99.93,0,0,0.16,535.9,3132.4,26139574,99.91,0,0,0.14,535.89,3132.4,26139575,99.72,0,0,0.72,536.15,3132.16,26139576,99.9,0,0,0.14,535.81,3132.49,26139577,99.92,0.01,0.02,0.13,535.79,3132.51,26139578,99.91,0,0,0.2,535.65,3132.64,26139579,99.86,0,0,0.3,536.1,3132.17,26139580,99.73,0,0,0.7,536.28,3132.01,26139581,99.93,0,0,0.16,535.81,3132.48,26139582,99.93,0,0,0.14,535.78,3132.5,26139583,99.92,0,0,0.2,535.73,3132.54,26139584,99.91,0,0,0.14,535.5,3132.77,26139585,99.64,0,0,0.53,536.63,3131.66,26139586,99.93,0,0,0.31,535.99,3132.29,26139587,99.89,0,0,0.15,535.97,3132.31,26139588,99.88,0,0,0.15,535.95,3132.32,26139589,99.9,0,0,0.16,535.94,3132.33,26139590,95.08,0,0,9.21,545.91,3119.54,26139591,97.2,0,0,113.49,544.62,3139.34,26139592,99.91,0,0,0.16,538.6,3151.32,26139593,99.89,0,0,0.14,538.59,3151.32,26139594,99.9,0,0,0.14,538.59,3151.32,26139595,99.7,0,0,0.55,538.8,3151.13,26139596,99.92,0,0,0.32,536.36,3153.6,26139597,99.95,0,0,0.16,536.07,3153.89,26139598,99.91,0,0,0.14,536.06,3153.89,26139599,99.92,0,0,0.15,536.03,3153.92,26139600,99.77,0,0,0.28,535.34,3154.63,26139601,99.77,0,0,0.57,536.82,3153.15,26139602,99.89,0,0,0.14,536.5,3153.46,26139603,99.9,0,0,0.16,536.49,3153.46,26139604,99.86,0,0,0.15,536.47,3153.48,26139605,99.88,0,0,0.3,536,3153.97,26139606,99.78,0,0,0.56,536.14,3153.83,26139607,99.95,0,0,0.14,535.72,3154.24,26139608,99.93,0,0,0.15,535.7,3154.26,26139609,99.83,0,0,0.34,536.18,3153.79,26139610,99.86,0,0,0.32,536.2,3153.78,26139611,99.79,0,0,0.57,536.69,3153.28,26139612,99.9,0,0,0.14,535.92,3154.05,26139613,99.94,0,0,0.18,536.04,3153.92,26139614,99.93,0,0,0.15,536.07,3153.91,26139615,99.9,0,0,0.28,536.3,3153.7,26139616,99.76,0,0,0.6,536.15,3153.84,26139617,99.91,0,0,0.22,535.06,3154.93,26139618,99.92,0,0,0.16,535.03,3154.96,26139619,99.93,0,0,0.16,535.02,3154.96,26139620,99.89,0,0,0.29,535.51,3154.49,26139621,99.8,0,0,0.58,535.98,3154.01,26139622,99.92,0,0,0.15,535.98,3154.01,26139623,99.93,0,0,0.14,535.95,3154.05,26139624,99.94,0,0,0.15,535.95,3154.05,26139625,99.88,0,0,0.31,536.21,3153.8,26139626,99.79,0,0,0.57,536.39,3153.62,26139627,99.91,0,0,0.14,535.67,3154.33,26139628,99.94,0,0,0.15,535.67,3154.33,26139629,99.9,0,0,0.14,535.64,3154.36,26139630,99.78,0,0,0.31,535.81,3154.21,26139631,99.79,0,0,0.41,536.23,3153.78,26139632,99.88,0,0,0.31,536.29,3153.71,26139633,98.12,0,0,0.15,536.28,3153.71,26139634,99.92,0,0,0.17,536.25,3153.74,26139635,99.88,0,0,0.31,535.79,3154.22,26139636,99.9,0,0,0.16,535.77,3154.24,26139637,99.78,0,0,0.54,536.57,3153.43,26139638,99.93,0,0,0.15,536.22,3153.78,26139639,99.77,0,0,0.3,536.2,3153.77,26139640,99.82,0,0,0.29,536.5,3153.49,26139641,99.95,0,0,0.14,536.4,3153.58,26139642,99.79,0,0,0.62,536.56,3153.42,26139643,99.89,0,0,0.23,536.11,3153.86,26139644,99.9,0,0,0.2,535.86,3154.11,26139645,99.81,0,0,0.3,535.32,3154.67,26139646,99.9,0,0,0.16,535.24,3154.74,26139647,99.78,0,0,0.62,536.54,3153.44,26139648,99.89,0,0,0.15,536.43,3153.55,26139649,99.94,0,0,0.15,536.42,3153.55,26139650,99.88,0,0,0.28,536.66,3153.32,26139651,99.92,0,0,0.18,536.64,3153.34,26139652,99.8,0,0,0.51,536.58,3153.4,26139653,99.89,0,0,0.19,535.38,3154.59,26139654,99.88,0,0,0.15,535.36,3154.6,26139655,99.83,0,0,0.29,536.21,3153.77,26139656,99.93,0,0,0.15,536.29,3153.69,26139657,99.79,0,0,0.57,536.29,3153.69,26139658,99.92,0,0,0.14,535.03,3154.94,26139659,99.93,0,0,0.15,535,3154.96,26139660,99.86,0,0,0.25,536.23,3153.76,26139661,99.92,0,0,0.16,536.24,3153.74,26139662,99.8,0,0,0.54,536.59,3153.39,26139663,99.95,0,0,0.15,536.21,3153.77,26139664,99.92,0,0,0.15,536.2,3153.77,26139665,99.84,0,0,0.26,536.21,3153.77,26139666,99.9,0,0,0.16,536.18,3153.8,26139667,99.78,0,0,0.3,536.45,3153.53,26139668,99.93,0,0,0.4,535.43,3154.54,26139669,99.85,0,0,0.3,535.74,3154.21,26139670,99.88,0,0,0.35,535.41,3154.55,26139671,99.9,0,0,0.14,535.54,3154.41,26139672,99.9,0,0,0.17,535.55,3154.4,26139673,99.72,0,0,0.57,536.21,3153.74,26139674,99.92,0,0,0.16,535.52,3154.43,26139675,99.82,0,0,0.28,534.8,3155.16,26139676,99.91,0,0,0.14,534.76,3155.2,26139677,99.9,0,0,0.19,535,3154.96,26139678,99.76,0,0,0.58,536.26,3153.68,26139679,99.95,0,0,0.15,535.95,3153.99,26139680,99.82,0,0,0.26,536.05,3153.91,26139681,99.93,0,0,0.14,535.95,3154.01,26139682,99.94,0,0,0.16,535.92,3154.03,26139683,99.43,0,0,0.63,536.27,3153.68,26139684,99.93,0,0,0.2,535.64,3154.3,26139685,99.84,0,0,0.27,535.42,3154.54,26139686,99.92,0,0,0.16,535.4,3154.55,26139687,99.9,0,0,0.14,535.41,3154.55,26139688,99.75,0,0,0.64,536.1,3153.84,26139689,99.89,0,0,0.18,536.04,3153.92,26139690,99.82,0,0,0.32,534.85,3155.13,26139691,99.9,0,0,0.18,534.79,3155.18,26139692,99.93,0,0,0.18,534.79,3155.19,26139693,99.78,0,0,0.44,535.52,3154.44,26139694,99.92,0,0,0.32,535.73,3154.23,26139695,99.83,0,0,0.27,535.72,3154.26,26139696,99.91,0,0,0.16,535.71,3154.26,26139697,99.92,0,0,0.14,535.69,3154.28,26139698,99.77,0,0,0.51,536.04,3153.93,26139699,99.8,0,0,0.34,535.66,3154.28,26139700,99.82,0,0,0.26,535.65,3154.31,26139701,99.93,0,0,0.16,535.64,3154.31,26139702,99.94,0,0,0.14,535.62,3154.32,26139703,99.76,0,0,0.32,536.48,3153.46,26139704,99.93,0,0,0.39,536.03,3153.91,26139705,99.88,0,0,0.27,536.05,3153.91,26139706,99.89,0,0,0.14,536.02,3153.93,26139707,99.91,0,0,0.17,536.01,3153.94,26139708,99.9,0,0,0.14,536.01,3153.94,26139709,99.78,0,0,0.59,536.4,3153.54,26139710,99.76,0,0,0.31,535.74,3154.21,26139711,99.93,0,0,0.13,535.73,3154.21,26139712,99.94,0,0,0.14,535.73,3154.21,26139713,99.93,0,0,0.16,535.7,3154.24,26139714,99.8,0,0,0.55,535.98,3153.95,26139715,99.81,0,0,0.32,536.17,3153.78,26139716,99.93,0,0,0.21,536.16,3153.79,26139717,99.9,0,0,0.18,536.12,3153.82,26139718,99.89,0,0,0.16,536.12,3153.82,26139719,99.79,0,0,0.62,535.96,3153.97,26139720,99.83,0,0,0.28,535.14,3154.8,26139721,99.92,0,0,0.13,535.04,3154.9,26139722,99.91,0,0,0.16,535.01,3154.92,26139723,99.93,0,0,0.14,535.01,3154.92,26139724,99.73,0,0,0.52,535.65,3154.28,26139725,99.78,0,0,0.32,535.49,3154.45,26139726,99.87,0,0,0.15,535.48,3154.46,26139727,99.89,0,0,0.14,535.45,3154.48,26139728,99.9,0,0,0.16,535.44,3154.49,26139729,99.6,0,0,0.68,535.6,3154.31,26139730,99.84,0,0,0.32,534.69,3155.23,26139731,99.85,0,0,0.17,534.67,3155.25,26139732,99.9,0,0,0.14,534.67,3155.25,26139733,99.93,0,0,0.15,534.64,3155.27,26139734,99.79,0,0,0.4,535.21,3154.7,26139735,98.47,0,0,0.41,536.12,3153.81,26139736,99.9,0,0,0.14,536.09,3153.83,26139737,99.9,0,0,0.19,535.95,3153.97,26139738,99.91,0,0,0.14,536.01,3153.9,26139739,99.72,0,0,0.32,536.35,3153.55,26139740,99.88,0,0,0.5,536.25,3153.68,26139741,99.83,0,0,0.12,536.23,3153.69,26139742,99.88,0,0,0.17,536.21,3153.71,26139743,99.88,0,0,0.14,536.18,3153.73,26139744,99.85,0,0,0.15,536.16,3153.74,26139745,99.7,0,0,0.68,536.89,3153.03,26139746,99.82,0,0,0.16,536.15,3153.77,26139747,99.87,0,0,0.14,536.14,3153.77,26139748,99.83,0,0.01,0.18,536.09,3153.82,26139749,99.86,0,0,0.15,536.11,3153.79,26139750,94.71,0.3,0.01,259.44,549.88,3140.17,26139751,99.83,0,0,0.24,537.47,3152.46,26139752,99.9,0,0,0.15,537.45,3152.48,26139753,99.9,0,0,0.14,537.44,3152.48,26139754,99.8,0,0,0.18,537.41,3152.51,26139755,99.69,0,0,0.74,537.2,3152.76,26139756,99.88,0,0,0.15,536.02,3153.96,26139757,99.9,0,0,0.17,535.99,3153.98,26139758,99.9,0,0,0.14,535.99,3153.98,26139759,99.78,0,0,0.32,535.72,3154.23,26139760,99.61,0,0,0.54,536.47,3153.5,26139761,99.9,0,0,0.27,536.21,3153.75,26139762,99.84,0,0,0.15,536.18,3153.78,26139763,99.87,0,0,0.15,536.15,3153.81,26139764,99.79,0,0,0.18,535.68,3154.28,26139765,99.68,0,0,0.67,536.17,3153.8,26139766,99.84,0,0,0.22,534.58,3155.38,26139767,99.83,0,0,0.14,534.58,3155.38,26139768,99.87,0,0,0.16,534.57,3155.38,26139769,99.82,0,0,0.15,534.55,3155.4,26139770,99.65,0,0,0.71,536.69,3153.27,26139771,99.83,0,0,0.13,536.26,3153.69,26139772,99.81,0,0,0.16,536.23,3153.72,26139773,99.85,0,0,0.15,536.22,3153.72,26139774,99.86,0,0,0.14,536.22,3153.72,26139775,99.56,0,0.01,0.48,535.95,3154.01,26139776,99.85,0,0,0.38,535.92,3154.03,26139777,99.82,0,0,0.16,535.92,3154.03,26139778,99.83,0,0,0.15,535.89,3154.06,26139779,99.84,0,0,0.14,535.94,3154.01,26139780,99.73,0,0,0.28,536.57,3153.39,26139781,99.66,0,0,0.59,536.46,3153.5,26139782,99.82,0,0,0.14,536.04,3153.91,26139783,99.86,0,0,0.15,536.04,3153.91,26139784,99.83,0,0,0.14,536.01,3153.93,26139785,99.8,0,0,0.28,536.02,3153.94,26139786,99.73,0,0,0.56,535.52,3154.44,26139787,99.85,0,0.01,0.17,534.77,3155.19,26139788,99.86,0,0,0.14,534.75,3155.2,26139789,99.79,0,0,0.31,536.44,3153.49,26139790,99.78,0,0,0.31,536.2,3153.74,26139791,99.71,0,0,0.4,536.68,3153.26,26139792,99.84,0,0,0.3,536.4,3153.53,26139793,99.83,0,0,0.15,536.4,3153.53,26139794,99.83,0,0,0.14,536.38,3153.55,26139795,99.72,0,0,0.29,535.9,3154.04,26139796,97.99,0,0,0.58,536.57,3153.37,26139797,99.79,0.01,0.75,0.26,536.36,3153.57,26139798,99.82,0,0.27,0.14,536.17,3153.75,26139799,99.83,0,0,0.14,536.14,3153.78,26139800,99.78,0,0,0.28,535.89,3154.04,26139801,99.65,0,0,0.6,536.13,3153.79,26139802,99.86,0,0,0.14,535.66,3154.26,26139803,99.81,0,0,0.15,535.81,3154.13,26139804,99.85,0.01,0.91,0.21,535.68,3154.24,26139805,99.78,0,0,0.29,536.9,3153.04,26139806,99.71,0,0,0.53,537.19,3152.75,26139807,99.84,0,0,0.25,536.63,3153.3,26139808,99.83,0.02,0.34,0.24,536.65,3153.27,26139809,99.84,0,0,0.17,536.65,3153.27,26139810,99.73,0,0,0.3,536.72,3153.22,26139811,99.69,0,0,0.32,537,3152.93,26139812,98.96,0,0,0.4,536.14,3153.79,26139813,99.81,0,0,0.14,536.13,3153.79,26139814,99.85,0,0,0.14,536.1,3153.82,26139815,99.71,0,0,0.28,536.59,3153.35,26139816,99.84,0,0,0.16,536.63,3153.31,26139817,99.7,0,0,0.61,536.72,3153.21,26139818,99.85,0,0,0.14,535.79,3154.13,26139819,99.8,0,0,0.39,536.81,3153.09,26139820,99.75,0,0,0.29,534.63,3155.29,26139821,99.83,0,0,0.16,534.55,3155.37,26139822,99.7,0,0,0.55,535.71,3154.2,26139823,99.81,0,0,0.15,535.26,3154.64,26139824,99.83,0,0,0.2,535.73,3154.18,26139825,99.75,0,0,0.29,535.97,3153.97,26139826,99.83,0,0,0.16,535.96,3153.97,26139827,99.66,0,0,0.55,536.07,3153.86,26139828,99.82,0,0,0.15,535.18,3154.74,26139829,99.81,0,0,0.14,535.16,3154.76,26139830,99.81,0,0,0.27,534.68,3155.25,26139831,99.85,0,0,0.16,534.8,3155.14,26139832,99.7,0,0,0.53,535.58,3154.35,26139833,99.79,0,0,0.23,535.55,3154.38,26139834,99.83,0.05,1.27,0.14,535.52,3154.4,26139835,99.8,0,0,0.39,536.04,3153.88,26139836,99.84,0,0,0.17,536.05,3153.88,26139837,99.7,0,0,0.4,536.37,3153.55,26139838,99.84,0,0,0.3,536.01,3153.91,26139839,99.8,0,0,0.15,536,3153.91,26139840,99.76,0,0,0.28,536.23,3153.69,26139841,99.83,0,0,0.14,536.23,3153.69,26139842,99.71,0.02,1.53,0.55,536.63,3153.28,26139843,99.84,0,0.26,0.25,536.18,3153.73,26139844,99.84,0,0,0.16,536.15,3153.75,26139845,99.79,0,0,0.29,536.14,3153.78,26139846,99.84,0,0,0.16,536.13,3153.79,26139847,99.76,0,0,0.3,536.44,3153.47,26139848,99.83,0,0,0.43,534.86,3155.05,26139849,99.76,0,0,0.33,535.83,3154.05,26139850,99.76,0,0,0.27,535.05,3154.85,26139851,99.84,0,0,0.16,535.02,3154.88,26139852,99.84,0,0,0.14,535.01,3154.88,26139853,99.71,0,0,0.56,536.76,3153.12,26139854,99.8,0,0,0.17,536.2,3153.68,26139855,99.75,0,0,0.29,536.2,3153.7,26139856,99.14,0,0,0.16,536.19,3153.71,26139857,99.83,0,0,0.18,535.93,3153.96,26139858,99.69,0,0,0.55,536.46,3153.42,26139859,99.82,0,0.02,0.16,535.88,3154,26139860,99.73,0,0,0.32,536.18,3153.72,26139861,99.81,0,0,0.16,536.09,3153.8,26139862,99.81,0,0,0.14,536.23,3153.67,26139863,99.71,0,0,0.54,536.71,3153.19,26139864,99.85,0,0,0.15,536.27,3153.63,26139865,99.78,0,0,0.28,536.02,3153.89,26139866,99.83,0,0,0.16,536,3153.91,26139867,99.84,0,0,0.14,536,3153.91,26139868,99.7,0,0,0.52,536.09,3153.81,26139869,99.83,0,0,0.22,535.22,3154.68,26139870,99.71,0,0,0.27,535.47,3154.43,26139871,99.85,0,0,0.14,535.45,3154.46,26139872,99.84,0,0,0.16,535.44,3154.46,26139873,99.67,0,0,0.57,535.78,3154.11,26139874,99.83,0,0,0.14,535.42,3154.48,26139875,99.79,0,0,0.33,536.14,3153.77,26139876,99.85,0,0,0.18,536.15,3153.75,26139877,99.84,0,0,0.18,536.12,3153.78,26139878,99.7,0,0,0.58,536.5,3153.4,26139879,99.78,0,0,0.45,536.35,3153.52,26139880,99.78,0,0,0.36,535.96,3153.93,26139881,99.84,0,0,0.18,536.02,3153.86,26139882,99.83,0,0,0.18,536.02,3153.86,26139883,99.75,0.02,0.06,0.25,539.25,3150.54,26139884,99.68,0,0,0.58,544.53,3145.17,26139885,99.76,0,0,0.29,543.94,3145.78,26139886,99.83,0,0,0.14,543.9,3145.81,26139887,99.83,0,0,0.16,543.86,3145.85,26139888,99.85,0,0,0.14,543.84,3145.86,26139889,99.61,0,0,0.6,545.21,3144.49,26139890,99.79,0,0,0.3,544.33,3145.39,26139891,99.84,0,0,0.14,544.37,3145.35,26139892,99.83,0,0,0.16,544.45,3145.26,26139893,99.81,0,0,0.14,544.42,3145.28,26139894,99.71,0,0,0.56,544.59,3145.11,26139895,99.76,0,0,0.34,544.39,3145.33,26139896,99.83,0,0,0.18,544.36,3145.37,26139897,99.86,0,0,0.21,544.33,3145.4,26139898,99.86,0,0,0.18,544.3,3145.42,26139899,99.73,0,0,0.45,545.06,3144.65,26139900,99.73,0,0,0.45,544.46,3145.27,26139901,99.8,0,0,0.19,544.43,3145.3,26139902,99.83,0,0,0.18,544.4,3145.32,26139903,99.83,0,0,0.18,544.38,3145.34,26139904,99.7,0,0,0.59,545.11,3144.61,26139905,99.76,0,0,0.34,544.36,3145.38,26139906,99.85,0,0,0.18,544.33,3145.4,26139907,99.83,0,0,0.18,544.31,3145.42,26139908,99.84,0,0,0.18,544.28,3145.44,26139909,99.59,0,0,0.59,544.94,3144.76,26139910,99.76,0,0,0.45,544.42,3145.29,26139911,99.85,0,0,0.18,544.39,3145.32,26139912,99.85,0,0,0.18,544.36,3145.34,26139913,99.83,0.05,1.88,0.27,544.4,3145.29,26139914,99.84,0,0,0.18,544.42,3145.29,26139915,99.57,0.09,3.51,0.77,543.71,3146.01,26139916,99.87,0,0.17,0.23,543.06,3146.64,26139917,99.84,0,0,0.2,542.78,3146.92,26139918,99.85,0,0,0.14,542.84,3146.85,26139919,99.85,0,0,0.15,542.94,3146.75,26139920,99.63,0,0,0.75,544.81,3144.89,26139921,99.9,0,0,0.16,544.63,3145.07,26139922,99.9,0,0,0.13,544.61,3145.09,26139923,99.9,0,0,0.16,544.59,3145.1,26139924,99.87,0,0,0.14,544.57,3145.12,26139925,99.73,0,0,0.75,544.76,3144.94,26139926,99.93,0,0,0.12,544.3,3145.41,26139927,99.91,0,0,0.17,544.32,3145.37,26139928,99.92,0,0,0.16,544.42,3145.27,26139929,99.93,0,0,0.17,544.39,3145.29,26139930,99.76,0,0,0.68,544.99,3144.71,26139931,99.91,0,0,0.16,544.37,3145.33,26139932,99.91,0,0,0.14,544.35,3145.35,26139933,99.93,0,0,0.14,544.33,3145.36,26139934,99.94,0,0,0.15,544.31,3145.38,26139935,99.7,0,0,0.7,544.16,3145.55,26139936,99.51,0,0,0.15,544.27,3145.43,26139937,99.95,0,0,0.14,544.27,3145.43,26139938,99.92,0,0,0.17,544.33,3145.36,26139939,99.76,0,0,0.3,544.66,3145,26139940,99.65,0,0,0.7,545,3144.68,26139941,99.9,0,0,0.14,544.62,3145.06,26139942,99.94,0,0,0.15,544.59,3145.08,26139943,99.9,0.01,0.01,0.16,544.56,3145.11,26139944,99.91,0,0,0.17,544.28,3145.38,26139945,99.7,0,0,0.85,545.47,3144.21,26139946,99.9,0,0,0.14,544.84,3144.84,26139947,99.95,0,0,0.15,544.91,3144.77,26139948,99.9,0,0,0.2,544.88,3144.79,26139949,99.91,0,0,0.16,544.86,3144.8,26139950,99.8,0,0,0.29,544.64,3145.04,26139951,99.76,0,0,0.63,544.31,3145.4,26139952,99.93,0,0,0.16,543.8,3145.91,26139953,99.91,0,0.01,0.16,543.79,3145.92,26139954,99.91,0,0,0.16,543.92,3145.78,26139955,99.86,0,0,0.29,543.93,3145.79,26139956,99.73,0,0,0.57,544.83,3144.89,26139957,99.9,0,0,0.14,544.6,3145.11,26139958,99.93,0,0,0.16,544.58,3145.13,26139959,99.91,0,0,0.15,544.56,3145.14,26139960,99.82,0,0,0.36,545.03,3144.69,26139961,99.78,0,0,0.54,545.05,3144.66,26139962,99.94,0,0,0.18,544.5,3145.2,26139963,99.93,0,0,0.16,544.55,3145.15,26139964,99.93,0,0,0.16,544.64,3145.06,26139965,99.86,0,0,0.37,544.64,3145.07,26139966,99.79,0,0,0.59,545.12,3144.58,26139967,99.93,0,0,0.18,544.84,3144.86,26139968,99.9,0,0,0.18,544.18,3145.52,26139969,99.82,0,0,0.36,543.79,3145.88,26139970,99.88,0,0,0.32,543.79,3145.9,26139971,99.78,0,0,0.44,544.23,3145.45,26139972,99.91,0,0,0.3,543.97,3145.7,26139973,99.92,0,0,0.14,544.1,3145.58,26139974,99.91,0,0,0.14,544.12,3145.55,26139975,99.85,0,0,0.28,544.12,3145.57,26139976,99.8,0,0,0.55,544.46,3145.22,26139977,99.88,0,0,0.19,543.83,3145.85,26139978,99.9,0,0,0.14,543.8,3145.87,26139979,99.89,0,0,0.15,543.78,3145.89,26139980,99.83,0,0,0.27,543.78,3145.9,26139981,99.78,0,0,0.41,544.51,3145.16,26139982,99.93,0,0,0.32,544.23,3145.44,26139983,99.94,0,0,0.14,544.29,3145.37,26139984,99.94,0,0,0.16,544.39,3145.27,26139985,99.83,0,0,0.29,542.94,3146.74,26139986,99.93,0,0,0.19,542.88,3146.79,26139987,99.8,0,0,0.55,543.04,3146.63,26139988,99.95,0.01,0.14,0.17,542.36,3147.3,26139989,99.93,0,0,0.18,542.39,3147.27,26139990,99.83,0,0,0.36,543.44,3146.23,26139991,99.95,0,0,0.13,543.34,3146.33,26139992,99.8,0.01,0,0.61,544.08,3145.58,26139993,99.93,0,0,0.16,543.55,3146.11,26139994,99.94,0.01,0,0.16,543.54,3146.12,26139995,99.84,0,0,0.32,544.05,3145.62,26139996,99.91,0,0,0.16,544.12,3145.54,26139997,96.27,0,0,0.63,544.62,3145.03,26139998,99.92,0,0,0.18,544.07,3145.58,26139999,99.81,0,0,0.32,544.52,3145.1,26140000,99.82,0,0,0.32,544.07,3145.58,26140001,99.94,0,0,0.18,544.03,3145.62,26140002,99.8,0,0,0.59,544.37,3145.27,26140003,99.91,0.01,0.01,0.18,543.98,3145.65,26140004,99.92,0,0,0.23,543.48,3146.15,26140005,99.87,0,0,0.36,543.86,3145.78,26140006,99.92,0,0,0.17,543.87,3145.77,26140007,99.82,0,0,0.63,544.3,3145.35,26140008,99.91,0,0,0.19,544.55,3145.09,26140009,99.94,0,0,0.19,544.53,3145.11,26140010,99.9,0,0,0.36,544.28,3145.37,26140011,99.94,0,0,0.14,544.34,3145.31,26140012,99.79,0,0,0.63,544.65,3145,26140013,99.93,0,0,0.17,544.27,3145.37,26140014,99.91,0.04,1.41,0.34,544.26,3145.38,26140015,99.88,0,0.01,0.39,544.51,3145.13,26140016,99.95,0,0,0.18,544.61,3145.05,26140017,99.79,0.01,0.16,0.54,544.78,3144.87,26140018,99.93,0.01,0.22,0.42,543.49,3146.15,26140019,99.86,0.01,0.01,0.38,546.46,3143.06,26140020,99.82,0,0,0.32,547.99,3141.51,26140021,99.81,0.08,0.32,0.38,548.42,3141.07,26140022,99.54,0.62,13.81,0.51,549.7,3139.74,26140023,99.16,2.19,71.58,1.41,551.52,3137.91,26140024,99.49,0.9,23.59,0.94,551.19,3138.24,26140025,99.3,1.71,57.3,0.68,551.24,3138.2,26140026,99.89,0.01,0.03,0.25,551.2,3138.23,26140027,99.9,0.02,0.03,0.23,551.17,3138.27,26140028,99.79,0,0,0.59,551.2,3138.22,26140029,99.82,0.02,0.03,0.41,551.13,3138.27,26140030,99.83,0.03,0.05,0.54,551.18,3138.26,26140031,99.93,0,0.01,0.21,550.87,3138.57,26140032,99.92,0.02,0.02,0.24,550.92,3138.53,26140033,99.77,0.03,0.04,0.7,551.93,3137.52,26140034,99.9,0.1,0.22,0.45,551.43,3138.02,26140035,80.88,0.02,0.06,4.58,753.8,2935.66,26140036,99.85,0.01,0.2,0.51,1064.21,2625.08,26140037,99.78,0,0.01,0.22,560.63,3128.65,26140038,99.76,0.06,1.13,0.6,551.75,3137.52,26140039,99.9,0,0.01,0.21,551.47,3137.78,26140040,99.82,0,0,0.37,551.77,3137.5,26140041,99.92,0.03,1.28,0.31,551.65,3137.62,26140042,99.9,0,0.02,0.22,551.62,3137.64,26140043,99.78,0.02,0.72,0.68,551.6,3137.64,26140044,99.9,0.01,0.03,0.19,549.89,3139.35,26140045,99.79,0,0,0.32,550.7,3138.56,26140046,99.9,0,0.02,0.2,550.75,3138.51,26140047,99.96,0,0,0.18,550.69,3138.56,26140048,99.78,0,0,0.43,551.03,3138.22,26140049,99.92,0.01,0,0.3,550.64,3138.61,26140050,99.81,0,0,0.27,551.1,3138.16,26140051,99.95,0,0,0.16,551.22,3138.04,26140052,99.93,0.01,0.01,0.2,551.39,3137.86,26140053,99.93,0,0,0.14,551.42,3137.82,26140054,99.78,0.1,0.01,0.7,552.49,3136.76,26140055,99.88,0.1,0.01,0.43,552.19,3137.07,26140056,99.92,0,0,0.16,552.14,3137.12,26140057,99.93,0.05,0,0.23,552.22,3137.03,26140058,99.95,0,0,0.14,552.23,3137.02,26140059,99.7,0,0,0.72,552.58,3136.65,26140060,99.79,0,0,0.3,551.25,3138,26140061,99.94,0,0,0.14,551.2,3138.04,26140062,99.95,0,0,0.14,551.19,3138.05,26140063,99.89,0.01,0.01,0.15,551.27,3137.96,26140064,99.77,0,0,0.64,552.46,3136.8,26140065,99.86,0,0,0.29,551.46,3137.82,26140066,99.93,0.01,0.01,0.25,551.57,3137.7,26140067,99.9,0.05,0.01,0.29,551.66,3137.57,26140068,99.9,0.01,0.05,0.21,551.68,3137.55,26140069,99.81,0,0,0.62,552.3,3136.91,26140070,99.83,0.05,0,0.35,552.14,3137.08,26140071,99.95,0,0,0.13,552.16,3137.06,26140072,99.95,0,0,0.14,552.13,3137.09,26140073,99.94,0,0,0.16,552.1,3137.11,26140074,99.82,0,0,0.4,552.26,3136.95,26140075,99.83,0.05,0,0.57,550.45,3138.77,26140076,99.88,0.05,0,0.2,550.5,3138.72,26140077,99.95,0.05,0,0.23,550.51,3138.7,26140078,99.91,0.05,0.01,0.22,550.44,3138.76,26140079,99.77,0.05,0.01,0.39,550.93,3138.27,26140080,99.76,0,0,0.54,551.4,3137.81,26140081,99.95,0,0,0.16,551.34,3137.86,26140082,99.94,0,0,0.14,551.32,3137.88,26140083,99.93,0,0,0.16,551.48,3137.72,26140084,99.8,0,0,0.32,551.89,3137.3,26140085,99.8,0,0,0.53,552.45,3136.76,26140086,99.93,0,0,0.15,552.42,3136.78,26140087,99.95,0,0,0.17,552.4,3136.79,26140088,99.94,0.01,0,0.14,552.35,3136.83,26140089,99.87,0.01,0,0.32,552.13,3137.04,26140090,99.73,0,0,0.7,552.23,3136.95,26140091,99.9,0.01,0.02,0.14,551.85,3137.32,26140092,99.91,0,0.01,0.16,551.92,3137.25,26140093,99.9,0,0.01,0.14,551.88,3137.29,26140094,99.94,0,0,0.14,551.83,3137.33,26140095,99.72,0.01,0,0.72,552.94,3136.23,26140096,99.93,0,0,0.16,552.08,3137.09,26140097,99.93,0,0,0.18,552.06,3137.11,26140098,99.95,0,0,0.15,552.19,3136.97,26140099,99.95,0,0,0.14,552.18,3136.97,26140100,99.7,0,0,0.68,553.1,3136.08,26140101,99.94,0,0,0.14,552.41,3136.76,26140102,99.93,0,0,0.17,552.39,3136.78,26140103,99.95,0,0,0.14,552.36,3136.8,26140104,99.95,0.01,0,0.15,552.36,3136.8,26140105,99.65,0.01,0.02,0.66,552.01,3137.16,26140106,99.91,0.01,0.02,0.2,551.88,3137.29,26140107,99.93,0,0.01,0.16,551.89,3137.28,26140108,99.92,0,0,0.15,551.87,3137.29,26140109,99.95,0,0,0.14,551.84,3137.32,26140110,94.91,0.38,0.01,78.59,565.76,3123.78,26140111,99.59,0,0,181.71,554.72,3134.34,26140112,99.91,0,0,0.16,554.69,3134.37,26140113,99.94,0,0,0.16,554.66,3134.4,26140114,99.94,0,0,0.14,554.65,3134.41,26140115,99.73,0,0,0.46,554.87,3134.19,26140116,99.9,0,0,0.44,552.68,3136.4,26140117,99.93,0,0,0.16,552.84,3136.23,26140118,99.93,0,0,0.14,552.82,3136.25,26140119,99.89,0,0,0.28,552.02,3137.02,26140120,99.72,0,0,0.46,552.14,3136.92,26140121,99.93,0,0,0.36,551.3,3137.79,26140122,99.91,0,0,0.16,551.27,3137.82,26140123,99.91,0.01,0.01,0.14,551.23,3137.85,26140124,99.88,0,0,0.3,551.5,3137.58,26140125,99.89,0,0,0.29,551.62,3137.48,26140126,99.77,0,0,0.72,552.55,3136.54,26140127,99.94,0,0,0.14,551.81,3137.28,26140128,99.93,0,0,0.16,551.77,3137.32,26140129,99.9,0,0,0.14,551.74,3137.34,26140130,99.9,0,0,0.3,551.49,3137.6,26140131,99.79,0,0,0.73,551.61,3137.48,26140132,99.93,0,0,0.14,550.84,3138.24,26140133,99.94,0,0,0.16,550.86,3138.22,26140134,99.95,0,0,0.14,550.83,3138.25,26140135,99.88,0,0,0.29,551.07,3138.03,26140136,99.81,0,0,0.55,552.14,3136.95,26140137,99.9,0.01,0.01,0.18,551.75,3137.34,26140138,99.93,0,0.01,0.2,551.86,3137.22,26140139,99.93,0,0,0.13,551.81,3137.27,26140140,99.78,0,0,0.28,552.04,3137.05,26140141,99.8,0,0.01,0.57,552.27,3136.82,26140142,99.92,0,0,0.15,551.73,3137.36,26140143,99.93,0,0,0.14,551.85,3137.23,26140144,99.95,0,0,0.15,551.85,3137.22,26140145,99.86,0,0,0.29,551.6,3137.49,26140146,99.75,0,0,0.51,551.93,3137.16,26140147,99.93,0,0,0.21,551.54,3137.55,26140148,99.91,0,0,0.14,551.52,3137.56,26140149,99.84,0,0,0.28,551.99,3137.07,26140150,99.85,0,0,0.28,551,3138.07,26140151,99.78,0,0,0.42,551.6,3137.47,26140152,99.93,0,0,0.29,552.1,3136.96,26140153,99.95,0,0,0.16,552.07,3136.99,26140154,99.92,0,0,0.14,552.04,3137.02,26140155,99.86,0,0,0.29,551.8,3137.27,26140156,99.78,0.01,0.01,0.35,552.12,3136.95,26140157,99.92,0,0,0.42,551.96,3137.11,26140158,99.94,0.02,0.01,0.21,552.01,3137.03,26140159,99.94,0.05,0,0.23,552,3137.04,26140160,99.84,0.06,0.01,0.37,551.81,3137.26,26140161,99.91,0,0,0.18,551.98,3137.08,26140162,99.78,0.04,0,0.59,552.33,3136.73,26140163,99.91,0.01,0.03,0.17,552.03,3137.03,26140164,99.94,0,0.01,0.14,551.9,3137.16,26140165,99.84,0,0,0.36,552.08,3137,26140166,99.95,0,0,0.14,552.04,3137.03,26140167,99.75,0,0,0.56,552.62,3136.46,26140168,99.9,0,0,0.17,551.99,3137.08,26140169,99.95,0,0,0.15,551.96,3137.1,26140170,99.85,0,0,0.3,551.71,3137.37,26140171,99.91,0,0,0.14,551.68,3137.4,26140172,99.78,0.01,0.07,0.57,552.44,3136.63,26140173,99.9,0,0.05,0.27,552.5,3136.57,26140174,99.95,0,0,0.16,552.46,3136.61,26140175,99.85,0.01,0.35,0.39,552.1,3136.98,26140176,99.93,0,0,0.18,552.06,3137.01,26140177,99.8,0,0,0.59,552.39,3136.68,26140178,98.46,0,0,0.16,551.99,3137.07,26140179,99.84,0.03,0,0.32,552.22,3136.82,26140180,99.88,0,0,0.33,552.36,3136.7,26140181,99.94,0,0,0.12,552.31,3136.74,26140182,99.78,0,0,0.61,552.54,3136.51,26140183,99.94,0.01,0.01,0.14,552.01,3137.03,26140184,99.93,0,0,0.19,551.55,3137.48,26140185,99.86,0,0,0.29,551.72,3137.33,26140186,99.93,0,0,0.14,551.69,3137.36,26140187,99.8,0,0,0.61,552.12,3136.92,26140188,99.94,0,0,0.14,552.23,3136.8,26140189,99.93,0,0,0.14,552.27,3136.76,26140190,99.9,0,0,0.28,552.03,3137.02,26140191,99.93,0,0,0.17,551.98,3137.06,26140192,99.83,0,0,0.29,552.65,3136.39,26140193,99.91,0,0,0.39,552.17,3136.86,26140194,99.93,0,0,0.14,552.15,3136.88,26140195,99.85,0,0,0.3,552.26,3136.79,26140196,99.93,0,0,0.14,552.33,3136.71,26140197,99.92,0,0,0.14,552.3,3136.74,26140198,99.8,0,0,0.57,552.63,3136.41,26140199,99.92,0,0,0.14,552.24,3136.78,26140200,99.74,0,0,0.31,552.28,3136.76,26140201,99.93,0,0,0.14,552.22,3136.82,26140202,99.93,0,0,0.14,552.19,3136.85,26140203,99.82,0,0,0.58,552.53,3136.51,26140204,99.93,0,0,0.14,552.31,3136.72,26140205,99.81,0,0,0.29,551.61,3137.43,26140206,99.93,0,0,0.16,551.55,3137.49,26140207,99.92,0.01,0.01,0.15,551.51,3137.53,26140208,99.78,0,0,0.55,552.18,3136.85,26140209,99.88,0,0,0.27,552.54,3136.47,26140210,99.87,0,0,0.34,552.31,3136.72,26140211,99.93,0,0,0.15,552.27,3136.75,26140212,99.93,0,0,0.13,552.25,3136.77,26140213,99.79,0,0,0.58,552.58,3136.45,26140214,99.9,0,0,0.16,552.18,3136.86,26140215,99.89,0,0,0.29,552.43,3136.63,26140216,99.94,0,0,0.16,552.49,3136.57,26140217,99.9,0,0,0.17,552.56,3136.49,26140218,99.8,0,0,0.55,553.31,3135.74,26140219,99.88,0,0,0.16,552.51,3136.54,26140220,99.86,0,0,0.33,552.5,3136.56,26140221,99.92,0,0,0.16,552.47,3136.58,26140222,99.89,0,0,0.14,552.44,3136.61,26140223,99.76,0,0,0.59,552.85,3136.2,26140224,99.91,0,0,0.17,551.96,3137.08,26140225,99.86,0,0,0.32,552.55,3136.51,26140226,99.92,0,0,0.14,552.53,3136.52,26140227,99.94,0,0,0.18,552.5,3136.55,26140228,99.94,0,0,0.18,552.47,3136.58,26140229,99.8,0,0.01,0.59,552.77,3136.27,26140230,99.86,0.01,0.01,0.3,552.28,3136.78,26140231,99.92,0,0,0.23,551.7,3137.37,26140232,99.91,0,0.02,0.2,549.67,3139.45,26140233,99.95,0,0,0.17,549.65,3139.46,26140234,99.78,0,0,0.59,550.39,3138.73,26140235,99.78,0,0,0.31,550.05,3139.09,26140236,99.93,0,0,0.16,550.02,3139.11,26140237,99.94,0,0,0.16,549.99,3139.14,26140238,99.93,0,0,0.17,549.96,3139.16,26140239,98.69,0,0,0.71,550.69,3138.4,26140240,99.8,0.02,0,0.33,549.98,3139.14,26140241,99.94,0,0,0.18,550.07,3139.04,26140242,99.93,0,0,0.18,550.04,3139.07,26140243,99.93,0.01,0.01,0.17,550,3139.1,26140244,99.78,0,0,0.6,550.3,3138.79,26140245,99.83,0.04,0.01,0.36,549.94,3139.18,26140246,99.94,0,0,0.18,550.02,3139.09,26140247,99.93,0.02,0.01,0.23,549.97,3139.14,26140248,99.92,0.06,0.01,0.29,549.96,3139.14,26140249,99.81,0.04,0,0.67,550.46,3138.63,26140250,99.87,0,0,0.31,549.91,3139.2,26140251,99.92,0,0,0.19,550.08,3139.04,26140252,99.91,0,0,0.16,550.05,3139.06,26140253,99.95,0,0,0.17,550.01,3139.09,26140254,99.79,0,0,0.52,550.42,3138.68,26140255,99.88,0,0,0.36,550.24,3138.88,26140256,99.93,0,0,0.14,550.21,3138.91,26140257,99.9,0,0,0.14,550.18,3138.92,26140258,99.93,0,0,0.15,550.16,3138.95,26140259,99.8,0,0,0.57,550.16,3138.94,26140260,99.85,0,0,0.28,550.29,3138.82,26140261,99.91,0,0,0.14,550.29,3138.83,26140262,99.91,0.02,0,0.21,550.21,3138.9,26140263,99.89,0.02,0,0.19,550.2,3138.9,26140264,99.75,0.06,0.01,0.54,550.54,3138.56,26140265,99.88,0.02,0,0.51,550.25,3138.86,26140266,99.94,0,0,0.17,550.29,3138.82,26140267,99.94,0,0,0.16,550.27,3138.84,26140268,99.93,0,0,0.15,550.24,3138.86,26140269,99.86,0,0,0.27,549.31,3139.76,26140270,99.71,0,0,0.66,550.17,3138.93,26140271,99.92,0,0,0.16,549.43,3139.66,26140272,99.92,0,0,0.14,549.48,3139.61,26140273,99.92,0.02,0,0.2,549.51,3139.57,26140274,99.88,0.1,3.23,0.32,549.46,3139.62,26140275,99.73,0.02,0.01,0.91,549.03,3140.05,26140276,99.92,0.02,0,0.19,548.47,3140.62,26140277,99.93,0,0,0.2,548.72,3140.35,26140278,99.93,0,0,0.14,548.69,3140.38,26140279,99.93,0,0,0.15,548.67,3140.39,26140280,99.68,0,0,0.67,549.8,3139.29,26140281,99.93,0,0,0.15,549.38,3139.7,26140282,99.94,0,0,0.16,549.36,3139.72,26140283,99.91,0,0,0.15,549.45,3139.62,26140284,99.88,0,0,0.15,549.53,3139.54,26140285,99.69,0,0,0.66,549.96,3139.13,26140286,99.86,0,0,0.14,549.48,3139.6,26140287,99.89,0,0,0.18,549.45,3139.63,26140288,99.92,0,0,0.14,549.44,3139.64,26140289,99.89,0,0,0.14,549.41,3139.66,26140290,99.6,0,0,0.63,549.63,3139.45,26140291,99.9,0.02,0,0.23,549.48,3139.6,26140292,99.93,0.02,0,0.2,549.44,3139.63,26140293,99.84,0.02,0,0.2,549.45,3139.62,26140294,99.88,0.04,0.01,0.22,549.46,3139.6,26140295,99.74,0.02,0,0.61,550.2,3138.88,26140296,99.9,0.01,0,0.3,549.25,3139.82,26140297,99.9,0,0,0.16,549.23,3139.85,26140298,99.85,0.01,0,0.16,549.19,3139.9,26140299,99.8,0.01,0,0.34,549.38,3139.67,26140300,99.21,0,0,0.54,549.88,3139.19,26140301,99.91,0,0,0.33,548.53,3140.53,26140302,99.89,0,0,0.16,548.5,3140.55,26140303,99.9,0.01,0.01,0.15,548.47,3140.58,26140304,99.89,0,0,0.18,548.06,3140.99,26140305,99.8,0,0,0.36,549.39,3139.67,26140306,99.76,0,0,0.55,549.75,3139.31,26140307,99.89,0,0,0.16,549.36,3139.7,26140308,99.87,0.03,0.04,0.2,549.47,3139.58,26140309,99.9,0,0,0.15,549.41,3139.64,26140310,99.85,0.01,0.03,0.32,549.66,3139.4,26140311,99.72,0.06,0.98,0.93,549.64,3139.41,26140312,99.88,0.11,0.01,0.36,549.24,3139.82,26140313,99.84,0.08,0.01,0.22,549.2,3139.85,26140314,99.85,0.04,0,0.25,549.24,3139.81,26140315,99.78,0,0,0.31,549.21,3139.86,26140316,99.7,0,0,0.55,549.92,3139.15,26140317,99.87,0.04,0,0.21,549.71,3139.35,26140318,99.83,0,0,0.15,549.73,3139.33,26140319,99.83,0,0.01,0.19,549.67,3139.38,26140320,99.71,0.04,0,0.39,548.93,3140.14,26140321,99.71,0,0,0.56,550.1,3138.96,26140322,99.86,0,0,0.15,549.77,3139.29,26140323,99.85,0,0,0.14,549.73,3139.32,26140324,99.82,0.02,0.02,0.18,549.71,3139.35,26140325,99.78,0,0,0.37,549.76,3139.31,26140326,99.72,0.02,0.02,0.6,550.2,3138.86,26140327,99.85,0,0,0.17,550.03,3139.04,26140328,99.81,0.02,0,0.2,549.99,3139.07,26140329,99.75,0.07,0.01,0.49,549.51,3139.53,26140330,99.75,0.06,0.01,0.43,549.78,3139.27,26140331,99.71,0.02,0,0.48,549.84,3139.21,26140332,99.85,0.01,0.02,0.29,549.17,3139.88,26140333,99.85,0.02,0.01,0.21,549.24,3139.8,26140334,99.84,0.05,0.01,0.26,549.16,3139.9,26140335,99.74,0.04,0.01,0.43,549.49,3139.58,26140336,99.69,0.02,0.01,0.61,549.91,3139.16,26140337,99.83,0.04,0,0.23,550.04,3139.03,26140338,99.84,0.02,0,0.24,549.92,3139.15,26140339,99.85,0,0,0.18,549.89,3139.19,26140340,99.79,0,0,0.32,549.8,3139.31,26140341,99.71,0.02,0,0.45,550.27,3138.83,26140342,99.82,0,0,0.51,549.23,3139.86,26140343,99.86,0,0,0.16,548.96,3140.13,26140344,99.85,0,0,0.14,548.94,3140.15,26140345,99.81,0,0,0.32,549.9,3139.21,26140346,99.85,0,0,0.16,549.9,3139.2,26140347,99.68,0,0,0.55,550.49,3138.61,26140348,99.84,0,0,0.16,550.04,3139.05,26140349,99.84,0,0,0.15,550.01,3139.08,26140350,99.76,0,0,0.32,549.28,3139.82,26140351,99.87,0,0,0.14,549.24,3139.86,26140352,99.71,0,0,0.62,550.11,3138.98,26140353,99.84,0,0,0.23,549.59,3139.53,26140354,99.85,0,0,0.26,545.19,3144.28,26140355,99.74,0,0,0.36,545.23,3144.26,26140356,99.85,0,0,0.13,545.21,3144.28,26140357,99.7,0,0,0.57,545.4,3144.09,26140358,99.86,0,0,0.15,544.92,3144.56,26140359,99.78,0,0,0.29,544.9,3144.57,26140360,99.78,0,0,0.36,545.14,3144.35,26140361,99.85,0,0,0.18,545.09,3144.39,26140362,99.73,0,0,0.56,545.08,3144.4,26140363,99.82,0.01,0.01,0.14,544.47,3145,26140364,99.82,0,0,0.18,544.82,3144.66,26140365,99.79,0,0,0.32,545.19,3144.3,26140366,99.84,0,0,0.16,545.15,3144.34,26140367,99.72,0,0,0.57,545.33,3144.15,26140368,99.85,0,0,0.17,543.86,3145.62,26140369,99.87,0,0,0.14,543.9,3145.56,26140370,99.76,0,0,0.32,545.04,3144.45,26140371,99.83,0,0,0.14,544.96,3144.52,26140372,99.73,0,0,0.41,545.4,3144.08,26140373,99.87,0,0,0.3,544.43,3145.05,26140374,99.85,0,0,0.14,544.39,3145.07,26140375,99.74,0,0,0.33,545.35,3144.14,26140376,99.86,0,0,0.16,545.21,3144.27,26140377,99.71,0,0,0.37,545.39,3144.08,26140378,99.84,0,0,0.36,544.72,3144.76,26140379,99.82,0,0,0.14,544.71,3144.76,26140380,99.69,0,0,0.32,544.46,3145.02,26140381,99.84,0,0,0.17,544.42,3145.06,26140382,99.71,0,0,0.31,544.74,3144.73,26140383,99.85,0,0,0.38,544.37,3145.09,26140384,99.84,0,0,0.14,544.34,3145.12,26140385,99.78,0.03,0.08,0.32,545.1,3144.38,26140386,99.86,0,0,0.18,545.15,3144.32,26140387,99.87,0,0,0.16,545.1,3144.37,26140388,99.72,0,0,0.57,545.43,3144.04,26140389,99.76,0,0,0.32,545.18,3144.26,26140390,99.76,0,0,0.32,545.23,3144.23,26140391,99.87,0,0,0.16,545.2,3144.26,26140392,99.86,0,0,0.14,545.17,3144.28,26140393,99.72,0,0,0.58,545.44,3144.01,26140394,99.84,0,0,0.15,544.63,3144.82,26140395,99.78,0,0,0.35,545.1,3144.36,26140396,99.85,0,0,0.15,545.08,3144.37,26140397,99.85,0,0,0.2,545.15,3144.3,26140398,99.71,0,0,0.5,545.7,3143.74,26140399,99.84,0,0,0.22,545.42,3144.02,26140400,99.75,0,0,0.33,545.42,3144.04,26140401,99.82,0,0,0.16,545.38,3144.07,26140402,99.84,0,0,0.15,545.36,3144.1,26140403,99.71,0,0,0.4,545.67,3143.77,26140404,99.85,0,0,0.29,545.3,3144.14,26140405,99.79,0,0,0.33,545.22,3144.24,26140406,99.85,0,0,0.14,545.19,3144.27,26140407,99.84,0,0,0.16,545.16,3144.29,26140408,99.7,0,0,0.5,545.19,3144.26,26140409,99.83,0,0,0.2,544.36,3145.08,26140410,99.73,0,0,0.32,545.32,3144.14,26140411,99.83,0,0,0.14,545.31,3144.15,26140412,99.84,0,0,0.16,545.44,3144.01,26140413,99.72,0,0,0.57,545.87,3143.57,26140414,99.85,0,0,0.14,544.18,3145.26,26140415,99.75,0,0,0.32,544.45,3145.01,26140416,99.84,0,0,0.14,544.39,3145.06,26140417,99.83,0,0,0.16,544.36,3145.09,26140418,99.7,0,0,0.34,544.78,3144.67,26140419,99.74,0,0,0.5,545.52,3143.89,26140420,99.77,0,0,0.32,545.38,3144.05,26140421,97.98,0,0,0.15,544.44,3144.98,26140422,99.83,0,0,0.16,544.42,3145,26140423,99.63,0.02,0.05,0.51,546.52,3142.84,26140424,99.76,0,0,0.42,549.79,3139.52,26140425,99.78,0,0,0.33,549.7,3139.62,26140426,99.83,0,0,0.16,549.65,3139.67,26140427,99.82,0,0,0.14,549.61,3139.7,26140428,99.85,0,0,0.15,549.61,3139.7,26140429,99.69,0,0,0.6,550.07,3139.23,26140430,99.8,0,0,0.35,550.19,3139.13,26140431,99.84,0,0,0.16,550.16,3139.16,26140432,99.84,0,0,0.16,550.13,3139.18,26140433,99.83,0,0,0.18,550.09,3139.22,26140434,99.68,0.01,0.06,0.66,552.32,3136.94,26140435,99.78,0,0,0.33,552.15,3137.11,26140436,99.85,0,0,0.16,552.11,3137.15,26140437,99.83,0,0.03,0.16,552.19,3137.06,26140438,99.82,0,0,0.15,552.19,3137.05,26140439,99.72,0,0,0.44,552.85,3136.39,26140440,99.77,0,0,0.48,552.62,3136.65,26140441,99.85,0,0,0.14,552.6,3136.67,26140442,99.82,0,0.03,0.16,552.63,3136.63,26140443,99.84,0.02,0,0.19,552.68,3136.57,26140444,99.64,0.07,0.01,0.7,554.88,3134.32,26140445,99.72,0.02,0,0.43,555.53,3133.66,26140446,99.84,0.07,0,0.32,555.59,3133.61,26140447,99.84,0.07,0,0.3,555.76,3133.43,26140448,99.82,0,0,0.15,555.81,3133.38,26140449,99.63,0,0,0.54,556.16,3133.01,26140450,99.75,0,0,0.45,555.96,3133.23,26140451,99.82,0.04,1.4,0.26,556,3133.17,26140452,99.83,0,0.01,0.17,555.93,3133.23,26140453,99.83,0,0,0.16,556.05,3133.1,26140454,99.68,0,0.02,0.31,556.35,3132.8,26140455,99.75,0,0,0.57,554.76,3134.41,26140456,99.83,0,0,0.14,554.69,3134.48,26140457,99.8,0.01,0.05,0.2,554.81,3134.36,26140458,99.83,0.02,0,0.16,554.77,3134.38,26140459,99.84,0,0,0.2,554.71,3134.45,26140460,99.61,0.04,0,0.84,555.26,3133.92,26140461,99.83,0.05,0,0.3,554.84,3134.34,26140462,99.83,0,0,0.14,554.81,3134.37,26140463,99.83,0.02,0,0.2,554.76,3134.42,26140464,99.82,0.08,0.01,0.31,554.76,3134.41,26140465,99.59,0,0,0.75,555.92,3133.27,26140466,99.83,0.02,0,0.19,555.94,3133.24,26140467,99.78,0.03,0,0.26,556.03,3133.15,26140468,99.82,0,0,0.17,555.95,3133.23,26140469,99.85,0.02,0,0.16,555.93,3133.24,26140470,99.66,0,0,0.78,556.56,3132.63,26140471,99.85,0,0,0.16,556.05,3133.14,26140472,99.83,0.03,0,0.26,555.98,3133.2,26140473,99.85,0.02,0,0.2,555.98,3133.2,26140474,99.88,0,0,0.19,556.03,3133.14,26140475,95,0.36,0.01,78.88,567.32,3121.93,26140476,99.55,0.05,0,182.32,558.2,3130.9,26140477,99.89,0,0,0.16,558.19,3130.9,26140478,99.9,0,0,0.14,558.15,3130.94,26140479,99.82,0,0,0.29,558.17,3130.85,26140480,99.68,0,0,0.59,558.22,3130.83,26140481,99.88,0,0,0.35,555.85,3133.23,26140482,99.9,0,0,0.13,555.81,3133.27,26140483,99.89,0.01,0.01,0.16,555.77,3133.3,26140484,99.88,0,0,0.18,555.89,3133.18,26140485,99.71,0,0,0.34,556.17,3132.92,26140486,99.86,0,0,0.52,556.43,3132.69,26140487,99.93,0,0,0.17,556.06,3133.06,26140488,99.91,0,0,0.14,556.02,3133.09,26140489,99.93,0,0,0.16,555.98,3133.13,26140490,99.86,0,0,0.31,555.81,3133.32,26140491,99.73,0,0,0.67,556.58,3132.53,26140492,99.84,0.02,0.97,0.14,556.07,3133.03,26140493,99.92,0.01,1.89,0.45,556.02,3133.04,26140494,99.9,0.03,1.6,0.35,556.01,3133.04,26140495,99.88,0,0,0.41,555.57,3133.49,26140496,99.78,0,0,0.61,556.36,3132.71,26140497,99.91,0,0,0.18,556.21,3132.86,26140498,99.93,0,0,0.18,556.16,3132.89,26140499,99.91,0,0,0.18,556.29,3132.76,26140500,99.72,0,0,0.35,556.4,3132.67,26140501,99.76,0,0,0.61,556.46,3132.61,26140502,99.92,0,0,0.17,555.98,3133.08,26140503,99.92,0,0,0.14,555.95,3133.11,26140504,99.93,0,0,0.17,555.98,3133.07,26140505,99.81,0,0,0.32,554.89,3134.18,26140506,99.72,0,0,0.5,555.78,3133.29,26140507,99.93,0,0,0.21,555.99,3133.07,26140508,99.9,0,0,0.14,555.95,3133.11,26140509,99.85,0,0,0.29,556.39,3132.66,26140510,99.77,0,0,0.33,556.32,3132.74,26140511,99.8,0,0,0.39,556.67,3132.39,26140512,99.92,0,0,0.29,556.27,3132.78,26140513,99.91,0,0,0.16,556.24,3132.81,26140514,99.89,0,0,0.17,556.19,3132.86,26140515,99.78,0,0,0.38,556.02,3133.05,26140516,99.8,0,0,0.46,556.61,3132.45,26140517,99.94,0,0,0.32,556.28,3132.77,26140518,99.93,0,0,0.15,556.25,3132.8,26140519,99.9,0,0,0.16,556.2,3132.84,26140520,99.82,0,0,0.33,556.43,3132.63,26140521,99.93,0,0,0.14,556.54,3132.52,26140522,99.75,0,0,0.57,556.89,3132.17,26140523,99.83,0,0,0.14,556.5,3132.55,26140524,99.89,0,0,0.14,556.46,3132.58,26140525,99.85,0,0,0.33,556.2,3132.86,26140526,99.91,0,0,0.16,556.25,3132.81,26140527,99.72,0.03,2.52,0.7,556.87,3132.18,26140528,99.85,0.02,2.61,0.43,556.55,3132.49,26140529,99.89,0,0,0.17,556.46,3132.57,26140530,99.38,0,0,0.36,555.47,3133.58,26140531,99.91,0,0,0.15,555.4,3133.64,26140532,99.79,0,0,0.54,556.2,3132.83,26140533,99.88,0.01,0.03,0.15,556.03,3133,26140534,99.44,0.01,0.05,0.18,555.95,3133.07,26140535,99.84,0.02,0,0.34,555.82,3133.22,26140536,99.9,0.05,0,0.26,555.72,3133.32,26140537,99.42,0.02,0,0.6,556.1,3132.94,26140538,99.9,0,0,0.14,555.7,3133.33,26140539,99.74,0.02,0,0.32,555.65,3133.36,26140540,99.8,0,0,0.32,556.48,3132.54,26140541,99.92,0.03,0,0.29,556.46,3132.56,26140542,99.71,0.03,0,0.66,557.11,3131.9,26140543,99.9,0.01,0.01,0.14,556.74,3132.27,26140544,99.88,0,0,0.19,556.38,3132.63,26140545,99.79,0.02,0,0.36,555.47,3133.55,26140546,99.94,0.02,0,0.2,555.47,3133.56,26140547,99.75,0.02,0,0.54,556.05,3132.97,26140548,99.9,0,0,0.29,555.69,3133.32,26140549,99.95,0,0,0.14,555.66,3133.35,26140550,99.86,0,0,0.32,556.62,3132.41,26140551,99.91,0.03,0,0.22,556.71,3132.32,26140552,98.22,0.01,0.03,0.43,557.03,3131.98,26140553,99.93,0.01,0,0.35,556.62,3132.38,26140554,99.91,0.02,0.01,0.23,556.72,3132.28,26140555,99.86,0.03,0,0.44,556.68,3132.34,26140556,99.92,0.01,0,0.2,556.71,3132.31,26140557,99.9,0.02,0,0.21,556.76,3132.26,26140558,99.75,0.02,0,0.63,556.32,3132.7,26140559,99.19,0.01,0,0.2,555.96,3133.05,26140560,99.79,0.04,0,0.43,556.72,3132.31,26140561,99.9,0.07,1.71,0.29,556.68,3132.34,26140562,99.93,0.02,0,0.29,556.73,3132.29,26140563,99.43,0.02,0,0.64,556.24,3132.77,26140564,99.88,0.01,0,0.23,555.63,3133.38,26140565,99.79,0.05,0.01,0.52,555.72,3133.3,26140566,99.9,0.04,0,0.28,555.66,3133.35,26140567,99.88,0.05,0.04,0.25,555.72,3133.29,26140568,99.78,0.01,0,0.62,555.83,3133.17,26140569,99.31,0.01,0,0.33,556.66,3132.32,26140570,99.82,0.06,0.01,0.54,556.45,3132.55,26140571,99.91,0.01,0,0.17,556.44,3132.56,26140572,99.93,0.01,0.01,0.14,556.46,3132.53,26140573,98.79,0,0.03,0.57,556.87,3132.12,26140574,99.9,0,0.01,0.14,555.86,3133.16,26140575,99.85,0,0,0.33,555.78,3133.26,26140576,99.86,0.01,0,0.22,555.75,3133.29,26140577,99.62,0.01,0.02,0.21,555.71,3133.33,26140578,99.73,0.01,0,0.59,556.02,3133.01,26140579,99.89,0,0,0.23,555.77,3133.26,26140580,99.62,0,0,0.36,556.23,3132.81,26140581,99.88,0,0.01,0.14,556.19,3132.85,26140582,99.93,0,0,0.16,556.13,3132.91,26140583,99.77,0,0,0.55,556.41,3132.62,26140584,99.93,0,0,0.14,555.75,3133.28,26140585,99.8,0,0,0.32,555.98,3133.07,26140586,99.91,0,0,0.16,555.94,3133.1,26140587,99.92,0,0,0.15,555.9,3133.14,26140588,99.76,0,0,0.39,556.26,3132.77,26140589,99.92,0,0,0.29,556.01,3133.01,26140590,99.87,0,0,0.31,556.48,3132.56,26140591,99.89,0,0,0.14,556.46,3132.58,26140592,99.93,0,0,0.16,556.39,3132.65,26140593,99.8,0,0,0.49,556.47,3132.56,26140594,99.04,0,0,0.2,555.93,3133.1,26140595,99.82,0,0,0.37,556.01,3133.03,26140596,99.92,0,0,0.13,555.97,3133.07,26140597,99.91,0,0,0.19,555.93,3133.11,26140598,99.67,0,0,0.17,555.89,3133.14,26140599,99.66,0,0,0.71,556.22,3132.79,26140600,99.78,0,0,0.37,556.02,3133,26140601,99.91,0,0,0.18,555.96,3133.06,26140602,99.9,0,0,0.18,555.9,3133.12,26140603,97.41,0.01,0.01,0.18,555.93,3133.08,26140604,99.75,0,0,0.64,556.03,3132.98,26140605,99.85,0,0,0.37,555.45,3133.57,26140606,99.9,0,0,0.16,555.4,3133.62,26140607,99.91,0,0,0.15,555.4,3133.61,26140608,99.92,0,0,0.16,555.52,3133.49,26140609,99.32,0,0,0.54,556.09,3132.91,26140610,99.82,0,0,0.37,555.44,3133.58,26140611,99.93,0,0,0.16,555.42,3133.59,26140612,99.91,0,0,0.16,555.52,3133.49,26140613,99.86,0,0,0.15,555.45,3133.55,26140614,99.77,0,0,0.57,555.85,3133.15,26140615,99.82,0,0,0.36,555.3,3133.72,26140616,99.92,0,0,0.14,555.25,3133.76,26140617,99.93,0,0,0.14,555.21,3133.8,26140618,99.9,0,0,0.16,555.15,3133.86,26140619,99.77,0,0,0.45,555.53,3133.47,26140620,99.18,0,0,11.04,555.77,3133.98,26140621,99.91,0,0,0.16,555.66,3134.14,26140622,99.91,0,0,0.16,555.61,3134.18,26140623,99.94,0,0,0.16,555.71,3134.08,26140624,99.8,0,0,0.36,556.25,3133.53,26140625,99.85,0,0,0.55,556.14,3133.7,26140626,99.73,0,0,0.14,556.09,3133.74,26140627,99.9,0,0,0.14,556.22,3133.61,26140628,99.9,0,0,0.16,556.17,3133.66,26140629,99.86,0,0,0.28,555.86,3133.94,26140630,99.73,0,0,0.77,556.49,3133.33,26140631,99.93,0,0,0.18,556.21,3133.61,26140632,99.9,0,0,0.18,556.14,3133.67,26140633,99.9,0,0,0.18,556.08,3133.73,26140634,99.9,0,0,0.2,556.2,3133.6,26140635,99.7,0,0,0.8,556.13,3133.69,26140636,99.92,0,0,0.18,555.66,3134.16,26140637,99.91,0,0,0.2,555.86,3133.96,26140638,99.9,0,0,0.14,555.96,3133.85,26140639,99.9,0,0,0.14,555.94,3133.87,26140640,99.7,0,0,0.73,556.98,3132.85,26140641,99.9,0,0,0.16,556.36,3133.46,26140642,99.89,0,0,0.14,556.41,3133.4,26140643,95.64,0.01,0.01,0.19,556.39,3133.42,26140644,99.87,0,0,0.15,556.33,3133.47,26140645,99.71,0,0,0.76,556.8,3133.02,26140646,99.91,0,0,0.14,556.17,3133.64,26140647,99.9,0,0,0.13,556.13,3133.68,26140648,99.94,0,0,0.16,556.08,3133.73,26140649,99.91,0,0,0.14,556.18,3133.62,26140650,99.68,0,0,0.74,555.91,3133.91,26140651,99.9,0,0,0.17,555.93,3133.89,26140652,99.9,0,0,0.15,555.89,3133.92,26140653,99.94,0,0,0.14,555.84,3133.96,26140654,99.42,0,0,0.16,555.88,3133.92,26140655,99.67,0,0,0.72,555.57,3134.25,26140656,99.92,0,0,0.16,555.68,3134.14,26140657,99.91,0,0,0.14,555.64,3134.17,26140658,99.92,0,0,0.16,555.6,3134.21,26140659,99.82,0,0,0.29,556.28,3133.5,26140660,99.7,0,0,0.79,555.93,3133.86,26140661,99.94,0,0,0.13,556.19,3133.6,26140662,98.36,0,0,0.15,556.16,3133.63,26140663,98.61,0.01,0.01,0.16,556.12,3133.66,26140664,99.9,0,0,0.16,555.82,3133.99,26140665,99.38,0,0,0.5,556.74,3133.08,26140666,99.93,0,0,0.37,556.73,3133.09,26140667,99.92,0,0,0.16,556.69,3133.13,26140668,99.91,0,0,0.14,556.65,3133.16,26140669,99.9,0,0,0.16,556.62,3133.19,26140670,99.7,0,0,0.5,556.71,3133.12,26140671,99.92,0,0,0.38,556.46,3133.37,26140672,99.92,0,0,0.17,556.47,3133.35,26140673,99.92,0,0,0.14,556.43,3133.38,26140674,99.9,0,0,0.15,556.38,3133.43,26140675,99.82,0,0,0.33,555.88,3133.95,26140676,99.76,0,0,0.55,556.87,3132.95,26140677,99.91,0,0,0.14,556.44,3133.38,26140678,99.91,0,0,0.15,556.44,3133.37,26140679,99.92,0,0,0.14,556.4,3133.41,26140680,99.77,0,0,0.36,555.66,3134.17,26140681,99.78,0,0,0.59,555.95,3133.87,26140682,99.93,0,0,0.16,555.69,3134.12,26140683,99.92,0,0,0.14,555.71,3134.1,26140684,99.88,0,0,0.14,555.66,3134.14,26140685,99.86,0,0,0.29,556.13,3133.69,26140686,99.77,0,0,0.54,556.18,3133.63,26140687,99.93,0,0,0.17,555.62,3134.19,26140688,99.9,0,0,0.14,555.72,3134.09,26140689,99.76,0,0.01,0.33,556.43,3133.36,26140690,99.83,0,0,0.27,555.74,3134.07,26140691,99.72,0,0,0.5,556.23,3133.57,26140692,99.92,0,0,0.19,556.06,3133.73,26140693,99.17,0,0,0.14,556.19,3133.6,26140694,99.95,0,0,0.15,556.17,3133.63,26140695,99.86,0,0,0.26,555.92,3133.9,26140696,99.75,0,0,0.5,556.11,3133.7,26140697,99.86,0,0,0.31,555.57,3134.24,26140698,99.91,0,0,0.14,555.68,3134.12,26140699,99.9,0,0,0.15,555.68,3134.12,26140700,99.82,0,0,0.27,556.15,3133.67,26140701,99.75,0,0,0.44,556.7,3133.12,26140702,99.92,0,0,0.31,556.32,3133.48,26140703,99.93,0,0,0.17,556.32,3133.48,26140704,99.92,0,0,0.17,556.46,3133.33,26140705,99.84,0,0,0.31,556.69,3133.12,26140706,99.78,0,0,0.34,556.97,3132.84,26140707,99.9,0,0,0.38,554.89,3134.91,26140708,99.91,0,0,0.14,554.85,3134.94,26140709,99.91,0,0,0.16,554.9,3134.89,26140710,99.9,0,0,0.26,556.69,3133.12,26140711,99.89,0,0,0.14,556.67,3133.14,26140712,99.77,0,0,0.55,556.99,3132.81,26140713,99.91,0,0,0.14,556.6,3133.19,26140714,99.88,0,0,0.17,556.57,3133.22,26140715,99.85,0,0,0.3,556.89,3132.92,26140716,99.92,0,0,0.14,556.94,3132.86,26140717,99.78,0,0,0.53,556.61,3133.19,26140718,99.9,0,0,0.16,556.11,3133.68,26140719,99.83,0,0,0.28,556.81,3132.96,26140720,99.83,0,0,0.27,556.82,3132.97,26140721,99.88,0,0,0.16,556.96,3132.83,26140722,99.6,0,0,0.59,557.58,3132.2,26140723,99.9,0.01,0.01,0.22,556.86,3132.92,26140724,99.88,0,0,0.21,556.69,3133.09,26140725,99.8,0,0,0.27,556.64,3133.17,26140726,99.9,0,0,0.16,556.7,3133.1,26140727,99.76,0,0,0.57,556.62,3133.18,26140728,99.87,0,0,0.18,554.99,3134.8,26140729,99.9,0,0,0.18,554.85,3134.94,26140730,99.85,0,0,0.25,555.87,3133.93,26140731,99.93,0,0,0.15,555.95,3133.85,26140732,99.69,0,0,0.59,556.14,3133.65,26140733,99.9,0,0,0.16,555.61,3134.18,26140734,99.93,0,0,0.15,555.56,3134.23,26140735,99.86,0,0,0.27,556.17,3133.63,26140736,99.91,0,0,0.16,556.18,3133.62,26140737,99.78,0,0,0.58,556.4,3133.4,26140738,99.91,0,0,0.16,555.84,3133.95,26140739,99.85,0,0,0.14,555.8,3133.98,26140740,99.77,0.01,0.02,0.3,554.77,3135.03,26140741,99.93,0,0.01,0.16,554.68,3135.12,26140742,99.73,0,0,0.42,555.42,3134.37,26140743,99.92,0,0,0.28,555.15,3134.63,26140744,99.88,0,0,0.15,555.22,3134.57,26140745,99.8,0,0,0.29,554.72,3135.08,26140746,99.81,0.01,0,0.14,554.67,3135.12,26140747,99.92,0,0,0.15,554.63,3135.16,26140748,99.76,0,0,0.6,556.03,3133.76,26140749,99.79,0,0,0.3,555.93,3133.83,26140750,99.84,0,0,0.3,554.74,3135.04,26140751,99.9,0,0,0.14,554.64,3135.13,26140752,99.9,0,0,0.14,554.6,3135.17,26140753,99.77,0,0,0.57,556.34,3133.42,26140754,99.86,0,0,0.14,556.19,3133.6,26140755,99.85,0,0,0.27,556.16,3133.65,26140756,99.88,0,0,0.14,556.12,3133.69,26140757,99.9,0,0,0.2,556.08,3133.73,26140758,99.77,0,0.01,0.55,556.52,3133.28,26140759,99.89,0,0,0.16,556.15,3133.64,26140760,99.36,0,0,0.27,556.13,3133.69,26140761,99.26,0,0,0.16,556.07,3133.74,26140762,99.89,0,0,0.14,556.11,3133.69,26140763,99.75,0,0,0.54,556.52,3133.28,26140764,99.85,0,0,0.15,556.13,3133.66,26140765,99.87,0,0,0.29,555.87,3133.94,26140766,99.9,0,0,0.14,555.83,3133.98,26140767,99.9,0,0,0.16,555.79,3134.01,26140768,99.79,0,0,0.54,556.42,3133.38,26140769,99.85,0,0,0.15,556.19,3133.61,26140770,99.76,0,0,0.27,556.64,3133.17,26140771,99.89,0,0,0.16,556.6,3133.21,26140772,99.93,0,0,0.14,556.59,3133.21,26140773,99.78,0,0,0.41,557.1,3132.7,26140774,99.88,0,0,0.29,556.17,3133.63,26140775,99.75,0,0,0.27,556.39,3133.42,26140776,99.92,0,0,0.16,556.35,3133.46,26140777,99.9,0,0,0.15,556.31,3133.49,26140778,98.7,0,0,0.4,556.69,3133.11,26140779,99.7,0,0,0.43,556.44,3133.35,26140780,99.76,0,0,0.26,555.24,3134.57,26140781,99.87,0,0,0.16,555.11,3134.69,26140782,99.91,0,0,0.14,555.07,3134.73,26140783,99.88,0.01,0.01,0.15,555.16,3134.63,26140784,97.61,0,0,0.58,556.27,3133.53,26140785,99.82,0,0,0.28,556.36,3133.46,26140786,99.9,0,0,0.15,556.32,3133.5,26140787,99.88,0,0,0.16,556.36,3133.45,26140788,99.9,0,0,0.14,556.4,3133.41,26140789,95.76,0,0,0.57,556.76,3133.04,26140790,99.8,0,0,0.31,556.1,3133.72,26140791,99.89,0,0,0.18,556.07,3133.75,26140792,99.88,0,0,0.14,556.18,3133.63,26140793,99.88,0,0,0.14,556.13,3133.67,26140794,99.78,0,0,0.59,557,3132.82,26140795,99.83,0,0,0.38,556.07,3133.76,26140796,99.89,0,0,0.18,556.1,3133.72,26140797,99.89,0,0,0.13,556.17,3133.65,26140798,99.89,0,0,0.16,556.13,3133.69,26140799,99.73,0,0,0.57,556.72,3133.09,26140800,99.83,0,0,0.34,556.31,3133.52,26140801,99.92,0,0,0.14,556.36,3133.47,26140802,99.89,0,0,0.16,556.43,3133.39,26140803,99.92,0,0,0.14,556.39,3133.43,26140804,99.79,0,0,0.57,556.7,3133.12,26140805,99.88,0,0,0.32,555.59,3134.24,26140806,99.89,0,0,0.18,555.67,3134.15,26140807,99.88,0,0,0.15,555.68,3134.15,26140808,99.93,0,0,0.18,555.64,3134.18,26140809,99.7,0,0,0.69,556.68,3133.11,26140810,99.86,0,0,0.32,556.78,3133.02,26140811,99.9,0,0,0.18,556.89,3132.9,26140812,99.88,0,0,0.15,556.89,3132.91,26140813,99.89,0,0,0.16,556.84,3132.95,26140814,99.73,0,0,0.58,557.08,3132.7,26140815,99.77,0,0,0.27,556.36,3133.44,26140816,99.91,0,0,0.14,556.41,3133.38,26140817,96.09,0,0,0.16,556.37,3133.42,26140818,99,0,0,0.15,556.33,3133.46,26140819,99.78,0,0,0.55,556.64,3133.14,26140820,99.84,0,0,0.28,555.63,3134.17,26140821,99.91,0,0,0.16,555.67,3134.13,26140822,99.89,0,0,0.14,555.62,3134.17,26140823,99.89,0,0,0.15,555.57,3134.22,26140824,99.9,0,0,0.15,555.52,3134.26,26140825,99.67,0,0,0.66,557.03,3132.76,26140826,99.91,0,0,0.18,556.63,3133.17,26140827,99.89,0,0,0.14,556.58,3133.21,26140828,99.92,0,0,0.14,556.54,3133.25,26140829,99.9,0,0,0.15,556.51,3133.27,26140830,99.61,0.01,0.02,0.71,557.08,3132.72,26140831,99.86,0,0,0.18,556.86,3132.93,26140832,99.87,0,0,0.18,556.91,3132.88,26140833,99.9,0,0,0.18,556.87,3132.91,26140834,99.87,0,0,0.15,556.84,3132.95,26140835,99.67,0,0,0.75,557.19,3132.6,26140836,99.93,0,0,0.16,556.61,3133.18,26140837,99.88,0,0.01,0.2,556.64,3133.14,26140838,99.87,0,0,0.15,556.6,3133.18,26140839,98.63,0,0,0.41,556.55,3133.21,26140840,95.01,0.35,0.01,78.72,565.81,3124.22,26140841,99.5,0,0,181.9,559.34,3130.37,26140842,99.85,0,0,0.17,559.31,3130.39,26140843,99.86,0.01,0.01,0.15,559.26,3130.44,26140844,99.49,0,0,0.16,559.07,3130.64,26140845,99.66,0,0,0.61,559.18,3130.56,26140846,98.47,0,0,0.29,556.91,3132.86,26140847,99.84,0,0,0.16,556.87,3132.9,26140848,99.85,0,0,0.14,556.83,3132.93,26140849,99.88,0,0,0.18,556.88,3132.88,26140850,99.68,0,0,0.5,556.87,3132.91,26140851,99.82,0,0,0.39,556.91,3132.89,26140852,99.9,0,0,0.14,556.87,3132.92,26140853,99.92,0,0,0.14,556.84,3132.95,26140854,99.84,0,0,0.14,556.88,3132.9,26140855,99.8,0,0,0.27,556.96,3132.85,26140856,99.68,0,0,0.66,557.05,3132.75,26140857,99.83,0,0,0.14,556.64,3133.16,26140858,99.8,0,0,0.15,556.59,3133.2,26140859,99.88,0,0,0.14,556.64,3133.15,26140860,98.88,0,0,0.28,556.96,3132.84,26140861,99.74,0,0,0.53,557.08,3132.71,26140862,99.82,0,0,0.16,556.63,3133.16,26140863,99.83,0,0,0.15,556.6,3133.19,26140864,99.82,0,0,0.14,556.56,3133.22,26140865,99.78,0,0,0.28,556.73,3133.07,26140866,99.68,0,0,0.56,557.21,3132.59,26140867,99.83,0,0,0.15,556.88,3132.91,26140868,99.84,0,0,0.16,556.83,3132.96,26140869,99.78,0,0,0.34,556.65,3133.11,26140870,99.76,0,0,0.28,556.94,3132.83,26140871,99.66,0,0,0.59,557.11,3132.65,26140872,99.89,0,0,0.18,556.62,3133.14,26140873,99.85,0,0,0.15,556.57,3133.19,26140874,99.8,0,0,0.15,556.7,3133.05,26140875,99.73,0,0,0.28,556.68,3133.09,26140876,99.69,0,0,0.57,557.23,3132.54,26140877,99.83,0,0,0.2,556.34,3133.42,26140878,99.73,0,0,0.14,556.4,3133.36,26140879,99.83,0,0,0.16,556.43,3133.32,26140880,99.79,0,0,0.27,556.66,3133.12,26140881,99.7,0,0,0.6,557.12,3132.65,26140882,99.85,0,0,0.15,555.84,3133.92,26140883,99.84,0,0,0.15,555.46,3134.3,26140884,99.8,0,0,0.15,555.44,3134.31,26140885,98.85,0,0,0.29,555.17,3134.6,26140886,99.7,0,0,0.54,555.69,3134.07,26140887,99.85,0,0,0.17,556.1,3133.67,26140888,99.82,0,0,0.15,556.21,3133.55,26140889,99.84,0,0,0.15,556.15,3133.6,26140890,99.7,0,0,0.3,556.12,3133.65,26140891,99.83,0,0,0.14,556.07,3133.7,26140892,99.27,0,0,0.57,555.18,3134.58,26140893,99.85,0,0,0.14,554.68,3135.08,26140894,99.83,0,0,0.14,554.64,3135.11,26140895,99.76,0,0,0.28,555.6,3134.16,26140896,99.83,0,0,0.16,555.57,3134.19,26140897,99.68,0,0,0.56,556.4,3133.36,26140898,99.8,0,0,0.15,556.16,3133.6,26140899,99.73,0,0,0.39,555.38,3134.35,26140900,99.72,0,0,0.27,556.07,3133.68,26140901,99.8,0,0,0.17,556.12,3133.63,26140902,99.72,0,0,0.54,556.56,3133.18,26140903,98.66,0.01,0.01,0.15,556.17,3133.57,26140904,98.88,0,0,0.18,556.02,3133.71,26140905,99.76,0.01,0.01,0.28,556.12,3133.63,26140906,99.82,0,0,0.29,556.12,3133.62,26140907,99.68,0,0,0.52,556.36,3133.37,26140908,99.82,0,0,0.29,556.07,3133.66,26140909,99.84,0,0,0.14,556.12,3133.6,26140910,98.86,0,0,0.26,556.44,3133.3,26140911,99.83,0,0,0.16,556.39,3133.35,26140912,99.65,0,0,0.5,557.04,3132.69,26140913,99.81,0,0,0.2,556.28,3133.44,26140914,99.8,0,0,0.14,556.42,3133.3,26140915,99.74,0,0,0.31,556.51,3133.22,26140916,99.8,0,0,0.14,556.35,3133.38,26140917,95.2,0.43,0.01,78.64,563.69,3126.42,26140918,99.81,0,0,0.2,558.62,3130.31,26140919,99.81,0,0,0.16,558.57,3130.35,26140920,99.69,0,0,0.27,558.89,3130.05,26140921,99.83,0,0,0.16,558.95,3129.98,26140922,99.69,0,0,0.35,558.23,3130.73,26140923,99.83,0,0,0.39,556.49,3132.51,26140924,99.78,0,0,0.14,556.43,3132.56,26140925,99.69,0,0,0.28,555.16,3133.85,26140926,99.75,0,0,0.16,555.07,3133.93,26140927,98.56,0,0,0.32,555.47,3133.54,26140928,99.78,0,0,0.38,556.47,3132.57,26140929,99.69,0,0,0.29,556.25,3132.78,26140930,99.78,0,0,0.27,556.34,3132.72,26140931,99.46,0,0,0.2,556.3,3132.76,26140932,99.85,0,0,0.14,556.26,3132.79,26140933,99.52,0,0,0.56,556.44,3132.6,26140934,99.83,0,0,0.17,555.49,3133.55,26140935,99.79,0,0,0.27,555.88,3133.18,26140936,99.8,0,0,0.19,555.84,3133.22,26140937,99.81,0,0,0.19,556.04,3133.01,26140938,99.68,0,0,0.55,556.67,3132.38,26140939,99.78,0,0,0.15,556.22,3132.82,26140940,99.69,0,0,0.27,556.58,3132.48,26140941,99.83,0,0,0.17,556.57,3132.48,26140942,99.78,0,0,0.14,556.54,3132.51,26140943,99.66,0,0,0.54,556.84,3132.2,26140944,99.81,0,0,0.2,556.52,3132.52,26140945,98.7,0,0,0.29,555.63,3133.42,26140946,99.8,0,0,0.16,555.57,3133.48,26140947,99.83,0,0,0.16,555.52,3133.52,26140948,99.7,0,0,0.58,555.97,3133.07,26140949,99.84,0,0,0.14,555.76,3133.27,26140950,99.71,0,0,0.27,556.1,3132.95,26140951,99.82,0,0,0.14,556.06,3132.98,26140952,99.85,0,0,0.17,556.01,3133.03,26140953,99.69,0,0,0.56,556.6,3132.44,26140954,99.86,0,0,0.14,556.72,3132.31,26140955,99.75,0,0,0.31,556.62,3132.43,26140956,99.81,0,0,0.17,556.54,3132.51,26140957,99.85,0,0,0.14,556.5,3132.54,26140958,99.7,0,0,0.55,556.8,3132.24,26140959,99.4,0,0,0.3,556.76,3132.25,26140960,99.73,0,0,0.27,555.85,3133.18,26140961,99.81,0,0,0.17,555.77,3133.26,26140962,99.81,0,0,0.14,555.72,3133.3,26140963,99.7,0.01,0.01,0.41,556.21,3132.81,26140964,99.84,0,0,0.33,556.12,3132.91,26140965,98.16,0,0,0.28,556.74,3132.31,26140966,99.84,0,0,0.17,556.72,3132.33,26140967,99.83,0,0,0.14,556.69,3132.36,26140968,99.66,0,0,0.32,557.18,3131.86,26140969,99.81,0,0,0.37,556.56,3132.48,26140970,99.18,0,0,0.27,556.78,3132.28,26140971,99.83,0,0,0.18,556.73,3132.32,26140972,99.83,0,0,0.15,556.77,3132.28,26140973,99.84,0,0,0.14,556.83,3132.21,26140974,99.71,0,0,0.58,556.92,3132.12,26140975,99.8,0,0,0.27,556.76,3132.3,26140976,99.81,0,0,0.16,556.71,3132.34,26140977,99.83,0,0,0.14,556.79,3132.26,26140978,99.82,0,0,0.16,556.81,3132.23,26140979,99.68,0,0,0.58,556.94,3132.1,26140980,99.7,0,0,0.27,555.52,3133.53,26140981,99.8,0,0,0.16,555.48,3133.57,26140982,99.81,0,0,0.14,555.61,3133.44,26140983,99.84,0,0,0.14,555.56,3133.48,26140984,99.73,0,0,0.57,556.65,3132.39,26140985,99.73,0,0,0.32,555.27,3133.78,26140986,99.8,0,0,0.13,555.22,3133.83,26140987,99.83,0,0,0.16,555.53,3133.52,26140988,99.82,0,0,0.15,555.57,3133.47,26140989,99.55,0,0,0.55,557.27,3131.75,26140990,99.7,0,0,0.43,556.72,3132.31,26140991,99.75,0,0,0.16,556.73,3132.29,26140992,99.83,0,0,0.14,556.82,3132.2,26140993,99.8,0,0,0.15,556.76,3132.25,26140994,99.66,0,0,0.5,557.16,3131.86,26140995,99.78,0,0,0.34,556.55,3132.48,26140996,99.82,0,0,0.17,556.49,3132.53,26140997,99.82,0,0,0.18,556.56,3132.46,26140998,99.85,0,0,0.16,556.51,3132.5,26140999,99.69,0,0,0.3,556.8,3132.21,26141000,99.72,0,0,0.53,556.96,3132.06,26141001,99.8,0,0,0.16,557.08,3131.94,26141002,99.83,0,0,0.15,557.05,3131.97,26141003,99.83,0,0,0.14,557.01,3132,26141004,99.84,0,0,0.14,556.98,3132.03,26141005,98.26,0,0,15.93,558.03,3131.48,26141006,99.8,0,0,0.17,556.35,3132.7,26141007,99.83,0,0,0.14,556.34,3132.7,26141008,99.84,0,0,0.15,556.3,3132.74,26141009,99.84,0,0,0.15,556.26,3132.77,26141010,99.63,0,0,0.68,557.25,3131.8,26141011,99.79,0,0,0.13,557.06,3131.99,26141012,99.78,0,0,0.16,557.08,3131.97,26141013,99.82,0,0,0.14,557.04,3132,26141014,93.98,0,0,31.62,567.96,3115.37,26141015,99.52,0,0,35.17,559.56,3129.32,26141016,98.6,0,0,0.14,559.82,3129.13,26141017,99.85,0,0,0.14,559.77,3129.18,26141018,99.81,0,0,0.16,559.72,3129.22,26141019,99.65,0,0,0.31,559.4,3129.55,26141020,99.63,0,0,0.69,557.5,3131.59,26141021,99.8,0,0,0.21,557.37,3131.71,26141022,99.83,0,0,0.14,557.34,3131.74,26141023,99.8,0.01,0.01,0.15,557.29,3131.78,26141024,99.83,0,0,0.17,557.29,3131.78,26141025,99.55,0,0,0.54,557.08,3132,26141026,99.81,0,0,0.27,556.87,3132.21,26141027,99.85,0,0,0.16,556.81,3132.27,26141028,99.85,0,0,0.14,556.78,3132.3,26141029,99.85,0,0,0.15,556.79,3132.28,26141030,99.67,0,0,0.59,557.36,3131.73,26141031,99.86,0,0,0.32,557.59,3131.5,26141032,99.84,0,0,0.18,557.55,3131.53,26141033,99.45,0,0,0.16,557.51,3131.57,26141034,99.82,0,0,0.15,557.55,3131.52,26141035,99.75,0,0,0.55,557.77,3131.32,26141036,99.9,0,0,0.28,557.36,3131.72,26141037,99.25,0,0,0.15,556.59,3132.5,26141038,99.9,0,0,0.13,556.28,3132.82,26141039,99.91,0,0,0.16,556.33,3132.76,26141040,99.79,0,0,0.27,556.41,3132.7,26141041,99.8,0,0,0.58,556.21,3132.9,26141042,99.93,0,0,0.18,555.83,3133.28,26141043,99.92,0,0,0.18,555.78,3133.32,26141044,99.91,0,0,0.18,555.88,3133.21,26141045,99.88,0,0,0.29,555.42,3133.69,26141046,99.8,0,0,0.59,556.9,3132.21,26141047,99.91,0,0,0.15,556.56,3132.55,26141048,99.64,0,0,0.14,556.51,3132.59,26141049,99.8,0,0,0.33,556.64,3132.48,26141050,99.87,0,0,0.26,556.64,3132.5,26141051,99.77,0,0,0.56,556.78,3132.36,26141052,99.92,0,0,0.14,556.29,3132.85,26141053,99.9,0,0,0.15,556.32,3132.81,26141054,99.92,0,0,0.15,556.39,3132.74,26141055,99.83,0,0,0.27,556.68,3132.46,26141056,99.74,0,0,0.53,556.89,3132.24,26141057,99.9,0,0,0.26,556.26,3132.87,26141058,99.89,0,0,0.14,556.38,3132.75,26141059,99.89,0,0,0.14,556.36,3132.76,26141060,99.83,0,0,0.27,556.59,3132.55,26141061,99.76,0,0,0.5,556.52,3132.62,26141062,99.9,0,0,0.21,555.83,3133.32,26141063,99.9,0,0,0.15,555.87,3133.28,26141064,99.92,0,0,0.18,555.81,3133.33,26141065,99.35,0,0,0.29,555.08,3134.07,26141066,96.72,0,0,0.44,555.79,3133.36,26141067,99.92,0,0,0.31,555.63,3133.51,26141068,99.9,0,0,0.15,555.63,3133.51,26141069,99.91,0,0,0.14,555.59,3133.55,26141070,99.81,0,0,0.32,556.54,3132.61,26141071,99.75,0,0,0.54,556.91,3132.24,26141072,99.91,0,0,0.19,556.65,3132.5,26141073,99.93,0,0,0.15,556.61,3132.53,26141074,99.88,0,0,0.13,556.56,3132.57,26141075,99.85,0,0,0.27,556.78,3132.37,26141076,99.81,0,0,0.46,557.04,3132.11,26141077,99.9,0,0,0.31,556.89,3132.25,26141078,99.88,0,0,0.14,556.85,3132.29,26141079,99.72,0,0,0.3,556.55,3132.57,26141080,99.83,0,0,0.31,556.52,3132.61,26141081,99.89,0,0,0.15,556.57,3132.56,26141082,99.77,0,0,0.55,557.21,3131.92,26141083,99.9,0.01,0.01,0.14,556.82,3132.3,26141084,99.91,0,0,0.15,556.62,3132.49,26141085,99.85,0,0,0.27,556.03,3133.1,26141086,99.85,0,0,0.14,556.14,3132.98,26141087,99.72,0,0,0.56,556.79,3132.33,26141088,99.92,0,0,0.15,556.05,3133.07,26141089,99.91,0,0,0.14,555.99,3133.12,26141090,99.85,0,0,0.29,556.83,3132.3,26141091,99.93,0,0,0.13,556.84,3132.29,26141092,99.76,0,0,0.58,557.15,3131.97,26141093,99.92,0,0,0.14,556.76,3132.36,26141094,99.93,0,0,0.14,556.76,3132.35,26141095,99.84,0,0,0.36,556.64,3132.5,26141096,99.91,0,0,0.18,556.59,3132.54,26141097,99.79,0,0,0.61,557,3132.13,26141098,99.93,0.01,0,0.16,556.73,3132.39,26141099,99.93,0,0,0.18,556.83,3132.28,26141100,99.78,0,0,0.28,556.91,3132.23,26141101,99.93,0,0,0.14,556.81,3132.32,26141102,99.75,0,0,0.62,557.1,3132.02,26141103,99.93,0,0,0.16,556.86,3132.26,26141104,99.89,0,0,0.14,556.85,3132.26,26141105,99.77,0,0,0.28,556.83,3132.3,26141106,99.9,0,0,0.14,556.78,3132.35,26141107,99.73,0,0,0.41,557.1,3132.02,26141108,99.93,0,0,0.28,556.87,3132.24,26141109,99.84,0,0,0.35,556.82,3132.26,26141110,99.85,0,0,0.35,556.78,3132.31,26141111,99.9,0,0,0.14,556.75,3132.35,26141112,99.78,0,0,0.42,557.14,3131.95,26141113,99.94,0,0,0.28,556.85,3132.23,26141114,99.9,0,0,0.14,556.81,3132.26,26141115,99.81,0,0,0.28,556.8,3132.3,26141116,99.9,0,0,0.16,556.75,3132.35,26141117,99.91,0,0,0.19,556.79,3132.29,26141118,99.73,0,0,0.55,556.83,3132.25,26141119,99.91,0,0,0.14,556.05,3133.02,26141120,99.76,0,0,0.27,555.79,3133.31,26141121,99.91,0,0,0.18,555.75,3133.34,26141122,99.9,0,0,0.14,555.86,3133.23,26141123,99.73,0,0,0.57,556.4,3132.68,26141124,99.89,0,0,0.16,556.01,3133.07,26141125,99.81,0,0,0.28,556.95,3132.14,26141126,99.92,0,0,0.14,557.04,3132.05,26141127,99.93,0,0,0.16,557.07,3132.01,26141128,99.75,0,0,0.58,557.37,3131.71,26141129,99.9,0.02,0.61,0.16,556.97,3132.09,26141130,99.83,0,0,0.32,557.09,3131.99,26141131,99.9,0,0,0.14,557.08,3132,26141132,99.92,0,0,0.14,557.04,3132.04,26141133,99.78,0,0,0.61,557.04,3132.02,26141134,99.91,0.01,0.09,0.19,556.56,3132.5,26141135,99.83,0,0,0.28,556.91,3132.17,26141136,99.88,0,0,0.17,556.76,3132.31,26141137,99.91,0,0,0.18,556.72,3132.35,26141138,99.75,0,0,0.57,557.25,3131.82,26141139,99.82,0,0,0.3,557.06,3132,26141140,99.81,0,0,0.32,556.32,3132.76,26141141,99.9,0,0,0.13,556.24,3132.83,26141142,99.91,0,0,0.14,556.2,3132.87,26141143,99.74,0.01,0.01,0.5,557.03,3132.03,26141144,99.86,0,0,0.21,556.41,3132.65,26141145,99.82,0,0,0.28,556.73,3132.34,26141146,99.9,0,0,0.16,556.7,3132.37,26141147,99.89,0,0,0.14,556.83,3132.23,26141148,99.78,0,0,0.36,557.35,3131.7,26141149,99.93,0,0,0.36,556.99,3132.07,26141150,99.85,0,0,0.27,557.22,3131.85,26141151,99.93,0,0,0.16,557.22,3131.84,26141152,99.89,0,0,0.14,557.3,3131.76,26141153,99.89,0,0,0.14,557.25,3131.81,26141154,99.72,0,0,0.6,557.33,3131.72,26141155,99.85,0,0,0.35,556.93,3132.14,26141156,99.92,0,0,0.18,557.1,3131.98,26141157,99.89,0,0,0.15,557.06,3132.02,26141158,99.9,0,0,0.15,557.01,3132.06,26141159,99.76,0,0,0.53,557.34,3131.73,26141160,99.85,0,0,0.28,557.19,3131.9,26141161,99.91,0,0,0.14,557.33,3131.75,26141162,99.92,0,0,0.16,557.3,3131.78,26141163,99.91,0,0,0.14,557.27,3131.81,26141164,99.78,0,0,0.55,557.58,3131.49,26141165,99.83,0,0,0.29,556.97,3132.12,26141166,99.89,0,0,0.14,557.04,3132.04,26141167,99.91,0,0,0.14,557.08,3132,26141168,99.92,0,0,0.16,557.03,3132.05,26141169,99.52,0,0,0.71,557.47,3131.58,26141170,99.75,0,0,0.27,556.73,3132.33,26141171,99.93,0,0,0.16,556.77,3132.29,26141172,99.92,0,0,0.15,556.81,3132.25,26141173,99.91,0,0,0.15,556.77,3132.28,26141174,99.8,0,0,0.58,557.24,3131.83,26141175,99.84,0,0,0.29,557.2,3131.9,26141176,99.93,0,0,0.16,557.25,3131.84,26141177,99.9,0,0,0.2,557.31,3131.78,26141178,99.92,0,0,0.15,557.27,3131.82,26141179,99.77,0,0,0.43,557.7,3131.38,26141180,99.83,0,0,0.39,557.24,3131.85,26141181,99.88,0,0,0.16,557.3,3131.81,26141182,99.93,0,0,0.14,557.29,3131.82,26141183,99.9,0,0,0.14,557.26,3131.85,26141184,99.77,0,0,0.4,557.56,3131.54,26141185,99.81,0,0.03,0.43,557.26,3131.85,26141186,99.93,0,0,0.13,557.31,3131.81,26141187,99.9,0,0,0.16,557.27,3131.84,26141188,99.91,0,0,0.14,557.23,3131.87,26141189,99.79,0,0,0.4,557.07,3132.03,26141190,99.77,0,0,0.41,555.79,3133.32,26141191,99.87,0,0,0.15,555.86,3133.25,26141192,99.91,0,0,0.16,555.82,3133.29,26141193,99.89,0.01,0.01,0.14,555.75,3133.35,26141194,99.91,0,0,0.16,555.76,3133.34,26141195,99.69,0,0,0.66,556.88,3132.23,26141196,99.92,0,0,0.14,556.55,3132.56,26141197,99.92,0,0,0.17,556.51,3132.61,26141198,99.92,0,0,0.15,556.47,3132.64,26141199,99.87,0,0,0.34,556.51,3132.57,26141200,99.7,0,0,0.66,557.38,3131.71,26141201,99.91,0,0,0.14,556.78,3132.31,26141202,99.9,0,0,0.19,556.74,3132.35,26141203,99.88,0.01,0.01,0.16,556.69,3132.39,26141204,99.89,0,0,0.18,556.68,3132.39,26141205,94.67,0.28,0.01,195.48,568.32,3121.5,26141206,99.78,0,0,63.89,558.91,3130.31,26141207,99.87,0,0,0.14,558.87,3130.34,26141208,99.92,0,0,0.15,558.83,3130.38,26141209,99.92,0,0,0.14,558.88,3130.33,26141210,99.67,0,0,0.77,558.09,3131.15,26141211,99.93,0,0,0.16,556.48,3132.79,26141212,99.92,0,0,0.13,556.43,3132.84,26141213,99.91,0,0,0.19,556.46,3132.8,26141214,99.91,0,0,0.18,556.52,3132.74,26141215,99.68,0,0,0.68,557.1,3132.17,26141216,99.92,0,0,0.14,556.7,3132.57,26141217,99.91,0,0,0.18,556.65,3132.62,26141218,99.92,0,0,0.18,556.72,3132.55,26141219,99.92,0,0,0.15,556.79,3132.49,26141220,99.59,0,0,0.69,556.23,3133.06,26141221,99.9,0,0,0.14,556.71,3132.58,26141222,99.89,0,0,0.16,556.67,3132.62,26141223,99.93,0,0,0.14,556.79,3132.49,26141224,99.91,0.01,0.02,0.14,556.76,3132.52,26141225,99.72,0,0,0.48,557.12,3132.16,26141226,99.93,0,0,0.37,556.48,3132.8,26141227,99.92,0,0,0.17,556.43,3132.85,26141228,99.9,0,0,0.15,556.47,3132.81,26141229,99.87,0,0,0.3,556.52,3132.73,26141230,99.86,0,0,0.29,556.26,3133.01,26141231,99.76,0,0,0.54,557.16,3132.11,26141232,99.9,0,0,0.15,556.67,3132.59,26141233,99.9,0,0,0.15,556.75,3132.51,26141234,99.96,0,0,0.16,556.75,3132.5,26141235,99.88,0,0,0.33,556.25,3133.02,26141236,99.76,0,0,0.56,556.92,3132.35,26141237,99.9,0,0,0.19,556.45,3132.81,26141238,99.93,0,0,0.14,556.53,3132.72,26141239,99.91,0,0,0.14,556.49,3132.76,26141240,99.87,0,0,0.27,556.22,3133.05,26141241,99.78,0,0,0.55,556.7,3132.56,26141242,99.94,0,0,0.16,556.43,3132.83,26141243,99.9,0,0,0.14,556.53,3132.73,26141244,99.89,0,0,0.15,556.48,3132.77,26141245,99.83,0,0,0.28,556.72,3132.55,26141246,99.77,0,0,0.49,557.01,3132.26,26141247,99.91,0,0,0.19,556.7,3132.56,26141248,99.91,0,0,0.16,556.79,3132.47,26141249,99.91,0,0,0.14,556.75,3132.5,26141250,99.77,0,0,0.27,555.99,3133.28,26141251,99.78,0,0,0.45,556.53,3132.73,26141252,99.91,0,0,0.28,555.75,3133.52,26141253,99.91,0,0,0.17,555.8,3133.46,26141254,99.87,0,0,0.16,555.76,3133.5,26141255,99.84,0,0,0.29,556.94,3132.33,26141256,99.77,0,0,0.42,557.28,3131.99,26141257,99.92,0,0,0.28,557.01,3132.25,26141258,99.93,0,0,0.16,557.02,3132.23,26141259,99.88,0,0,0.39,556.48,3132.75,26141260,99.79,0,0,0.3,556.46,3132.79,26141261,99.83,0,0,0.32,556.77,3132.47,26141262,99.89,0,0,0.4,556.98,3132.26,26141263,99.9,0.01,0.01,0.14,557,3132.24,26141264,99.9,0,0,0.16,556.91,3132.34,26141265,99.85,0,0,0.3,556.98,3132.29,26141266,99.8,0,0,0.32,557.26,3132.01,26141267,99.87,0,0,0.44,556.05,3133.22,26141268,99.87,0,0,0.15,555.99,3133.27,26141269,99.9,0,0,0.15,555.95,3133.3,26141270,99.8,0,0,0.29,555.46,3133.81,26141271,99.92,0,0,0.16,555.49,3133.78,26141272,99.78,0,0,0.54,556.93,3132.34,26141273,99.92,0,0,0.14,556.73,3132.53,26141274,99.91,0,0,0.15,556.66,3132.59,26141275,99.83,0,0,0.29,556,3133.27,26141276,99.94,0,0,0.16,556.05,3133.22,26141277,99.78,0,0,0.54,556.35,3132.91,26141278,99.92,0,0,0.15,555.95,3133.31,26141279,99.93,0,0,0.14,555.91,3133.34,26141280,99.83,0,0,0.28,556.22,3133.04,26141281,99.91,0,0,0.17,556.29,3132.97,26141282,99.78,0,0,0.54,557.21,3132.05,26141283,99.9,0,0,0.16,556.69,3132.56,26141284,99.92,0.01,0,0.16,556.7,3132.54,26141285,99.87,0,0,0.3,557.28,3131.99,26141286,99.91,0,0,0.15,557.25,3132.02,26141287,99.79,0,0,0.48,557.64,3131.62,26141288,99.9,0,0,0.21,556.66,3132.59,26141289,99.86,0,0,0.32,556.99,3132.26,26141290,99.85,0,0,0.27,557.01,3132.26,26141291,99.9,0,0,0.18,556.96,3132.3,26141292,99.78,0,0,0.56,557.37,3131.89,26141293,99.88,0,0,0.16,556.95,3132.31,26141294,99.88,0,0,0.14,556.99,3132.26,26141295,99.73,0,0,0.36,556.01,3133.25,26141296,99.89,0,0,0.21,555.94,3133.32,26141297,99.87,0,0,0.24,556.13,3133.13,26141298,99.77,0,0,0.58,557.62,3131.64,26141299,99.92,0,0,0.19,557.22,3132.03,26141300,99.81,0,0,0.32,557,3132.27,26141301,99.9,0,0,0.14,556.91,3132.35,26141302,99.9,0,0,0.14,556.94,3132.32,26141303,99.8,0,0,0.56,557.55,3131.71,26141304,99.92,0,0,0.14,557.19,3132.06,26141305,99.82,0,0.01,0.3,556.9,3132.36,26141306,99.93,0,0,0.16,556.94,3132.32,26141307,99.05,0,0,0.14,557,3132.26,26141308,99.76,0,0,0.55,556.48,3132.78,26141309,99.93,0,0,0.15,555.91,3133.34,26141310,99.83,0,0,0.28,556.13,3133.14,26141311,99.91,0,0,0.13,556.3,3132.97,26141312,99.89,0,0,0.16,556.27,3132.99,26141313,99.73,0,0,0.55,556.9,3132.36,26141314,99.89,0,0,0.15,556.66,3132.59,26141315,99.84,0,0,0.29,557.21,3132.06,26141316,99.9,0,0,0.16,557.25,3132.01,26141317,99.91,0,0,0.14,557.21,3132.04,26141318,99.78,0,0,0.4,557.53,3131.72,26141319,99.83,0,0,0.55,556.92,3132.3,26141320,99.85,0,0,0.31,556.88,3132.38,26141321,99.91,0,0,0.16,556.75,3132.5,26141322,99.91,0,0,0.14,556.71,3132.54,26141323,99.74,0.01,0.01,0.49,557.51,3131.73,26141324,99.88,0,0,0.25,557.11,3132.13,26141325,99.85,0,0,0.3,557.25,3132.01,26141326,99.9,0,0,0.13,557.21,3132.04,26141327,99.9,0,0,0.16,557.16,3132.09,26141328,99.77,0,0,0.47,557.44,3131.81,26141329,99.89,0,0,0.22,556.76,3132.47,26141330,99.84,0,0,0.27,556.98,3132.28,26141331,99.9,0,0,0.16,556.93,3132.32,26141332,99.9,0,0,0.14,556.87,3132.38,26141333,99.88,0,0,0.14,557.01,3132.23,26141334,99.73,0,0,0.58,557.57,3131.67,26141335,99.83,0,0,0.33,557.19,3132.07,26141336,99.91,0,0,0.14,557.15,3132.11,26141337,99.93,0,0,0.15,557.18,3132.07,26141338,99.91,0,0,0.14,557.25,3132.01,26141339,99.77,0,0,0.55,557.56,3131.69,26141340,99.76,0,0,0.34,557.21,3132.07,26141341,99.9,0,0,0.12,557.14,3132.13,26141342,99.89,0,0,0.16,557.22,3132.05,26141343,99.91,0,0,0.14,557.23,3132.04,26141344,99.8,0,0,0.54,556.67,3132.59,26141345,99.79,0,0,0.31,556.3,3132.97,26141346,99.91,0,0,0.14,556.19,3133.09,26141347,99.9,0,0,0.15,556.29,3132.97,26141348,99.91,0,0,0.16,556.26,3133.01,26141349,99.66,0,0,0.73,556.8,3132.43,26141350,99.83,0,0,0.29,556.18,3133.07,26141351,99.92,0,0,0.15,556.21,3133.04,26141352,99.93,0,0,0.14,556.27,3132.98,26141353,99.93,0,0,0.13,556.21,3133.03,26141354,99.77,0,0,0.56,556.81,3132.43,26141355,99.78,0,0,0.29,556.61,3132.64,26141356,99.91,0,0,0.16,556.75,3132.49,26141357,99.9,0,0,0.19,556.73,3132.51,26141358,99.94,0,0,0.16,556.69,3132.55,26141359,99.72,0,0,0.48,556.88,3132.35,26141360,99.84,0,0,0.33,555.94,3133.32,26141361,99.88,0,0,0.15,556.03,3133.22,26141362,99.91,0,0,0.16,555.97,3133.27,26141363,99.91,0,0,0.15,555.93,3133.31,26141364,99.77,0,0,0.41,556.24,3132.99,26141365,99.84,0,0,0.45,555.72,3133.53,26141366,99.93,0,0,0.15,555.77,3133.47,26141367,99.91,0,0,0.15,555.72,3133.52,26141368,99.92,0,0,0.14,555.68,3133.55,26141369,99.79,0,0,0.54,556.03,3133.2,26141370,99.82,0,0,0.28,556.48,3132.77,26141371,99.9,0,0,0.14,556.49,3132.75,26141372,99.9,0,0,0.18,556.45,3132.79,26141373,99.88,0,0,0.14,556.4,3132.83,26141374,99.91,0,0,0.15,556.35,3132.88,26141375,99.57,0,0,0.64,556.51,3132.74,26141376,99.93,0,0,0.16,555.76,3133.48,26141377,99.91,0,0,0.14,555.72,3133.52,26141378,99.85,0,0,0.17,555.68,3133.55,26141379,99.76,0,0,0.31,556.38,3132.83,26141380,99.65,0,0,0.72,557.08,3132.15,26141381,99.91,0,0,0.17,556.25,3132.97,26141382,99.91,0,0,0.15,556.21,3133.01,26141383,99.88,0.01,0.01,0.14,556.16,3133.06,26141384,99.87,0,0,0.17,556.19,3133.04,26141385,99.67,0,0,0.84,557.24,3132.01,26141386,99.92,0,0,0.14,556.48,3132.77,26141387,99.89,0,0,0.14,556.43,3132.81,26141388,99.9,0,0,0.16,556.39,3132.85,26141389,99.91,0,0,0.14,556.47,3132.76,26141390,99.66,0,0,0.7,557.38,3131.87,26141391,99.89,0,0,0.17,556.93,3132.31,26141392,99.88,0,0,0.15,556.89,3132.35,26141393,99.89,0,0,0.15,556.94,3132.29,26141394,99.89,0,0,0.13,556.98,3132.25,26141395,99.62,0,0,0.76,556.26,3132.98,26141396,99.88,0,0,0.14,556.17,3133.06,26141397,99.88,0,0,0.14,556.12,3133.11,26141398,99.93,0,0,0.18,556.22,3133.01,26141399,99.9,0,0,0.17,556.22,3133,26141400,99.55,0,0,0.61,556.86,3132.38,26141401,99.84,0,0,0.27,557.13,3132.1,26141402,99.86,0,0,0.15,557.14,3132.09,26141403,99.88,0,0,0.13,557.24,3131.99,26141404,99.83,0,0,0.16,557.19,3132.03,26141405,99.78,0,0,0.3,556.92,3132.31,26141406,99.69,0,0,0.61,556.99,3132.23,26141407,99.9,0,0,0.14,556.68,3132.55,26141408,99.84,0,0,0.15,556.75,3132.47,26141409,99.83,0,0,0.3,556.69,3132.51,26141410,99.82,0,0,0.41,556.9,3132.31,26141411,99.73,0,0,0.52,556.04,3133.17,26141412,99.88,0,0,0.17,555.73,3133.47,26141413,99.81,0,0,0.13,555.72,3133.48,26141414,99.84,0,0,0.16,555.68,3133.53,26141415,99.84,0,0,0.3,556.62,3132.61,26141416,99.67,0,0,0.54,557.23,3132,26141417,99.81,0,0,0.18,556.98,3132.24,26141418,99.88,0,0,0.16,556.94,3132.28,26141419,99.88,0,0,0.14,556.89,3132.32,26141420,99.76,0,0,0.3,556.9,3132.33,26141421,99.69,0,0,0.54,557.35,3131.88,26141422,99.87,0.01,0.01,0.15,556.94,3132.27,26141423,99.84,0,0,0.15,556.86,3132.35,26141424,99.85,0,0,0.15,556.88,3132.33,26141425,99.69,0,0,0.3,556.27,3132.96,26141426,99.69,0,0.01,0.56,557.16,3132.06,26141427,99.86,0,0,0.15,556.86,3132.35,26141428,99.81,0,0,0.14,556.89,3132.32,26141429,99.85,0,0,0.15,556.95,3132.26,26141430,99.75,0,0,0.33,556.57,3132.65,26141431,99.68,0,0,0.41,556.88,3132.34,26141432,99.85,0,0,0.32,556.89,3132.33,26141433,99.83,0,0,0.16,556.97,3132.24,26141434,99.84,0,0,0.17,556.94,3132.27,26141435,99.76,0,0,0.3,556.91,3132.31,26141436,99.7,0,0,0.51,557.22,3132,26141437,99.82,0,0,0.2,556.83,3132.39,26141438,99.81,0,0,0.15,556.95,3132.26,26141439,99.68,0,0,0.33,556.97,3132.22,26141440,99.72,0,0,0.29,555.99,3133.21,26141441,99.71,0,0,0.33,556.29,3132.91,26141442,99.83,0,0,0.39,556.13,3133.07,26141443,99.8,0.01,0.01,0.17,556.22,3132.98,26141444,99.81,0,0,0.16,556.19,3133,26141445,99.75,0,0,0.32,556.67,3132.54,26141446,99.79,0,0,0.17,556.63,3132.58,26141447,99.65,0,0,0.58,557.5,3131.7,26141448,99.82,0,0,0.14,556.98,3132.22,26141449,99.83,0,0,0.14,556.92,3132.27,26141450,99.79,0,0,0.32,556.91,3132.3,26141451,99.83,0,0,0.16,556.93,3132.27,26141452,99.67,0,0,0.56,557.62,3131.57,26141453,99.84,0,0,0.15,556.92,3132.27,26141454,99.83,0,0,0.16,556.88,3132.32,26141455,99.73,0,0,0.32,556.62,3132.6,26141456,99.83,0,0,0.14,556.71,3132.51,26141457,99.65,0,0,0.5,557.51,3131.69,26141458,99.85,0,0,0.19,557.14,3132.07,26141459,99.85,0,0,0.15,557.1,3132.1,26141460,99.69,0,0,0.29,556.91,3132.31,26141461,99.81,0,0,0.16,556.99,3132.22,26141462,99.7,0,0,0.51,557.21,3132,26141463,99.85,0,0,0.21,556.4,3132.81,26141464,99.8,0,0,0.14,556.36,3132.84,26141465,99.74,0,0,0.38,555.94,3133.28,26141466,99.82,0,0,0.18,555.97,3133.24,26141467,99.7,0,0,0.59,556.51,3132.7,26141468,99.85,0,0,0.18,556.86,3132.35,26141469,99.76,0,0,0.34,556.6,3132.58,26141470,99.76,0,0,0.33,557.02,3132.18,26141471,99.83,0,0,0.16,556.96,3132.23,26141472,99.7,0,0,0.43,557.34,3131.85,26141473,99.86,0,0,0.29,557.12,3132.06,26141474,99.85,0,0,0.15,557.11,3132.07,26141475,99.72,0,0,0.28,556.29,3132.91,26141476,99.81,0,0,0.16,556.22,3132.97,26141477,99.65,0,0,0.53,556.59,3132.59,26141478,99.83,0,0,0.23,557.09,3132.08,26141479,99.82,0,0,0.15,557.15,3132.03,26141480,99.67,0,0,0.27,556.25,3132.94,26141481,99.81,0,0,0.14,556.18,3133.01,26141482,99.84,0,0,0.16,556.14,3133.04,26141483,99.62,0,0,0.56,557.12,3132.05,26141484,99.85,0,0,0.18,556.92,3132.25,26141485,99.79,0,0,0.29,557.2,3131.99,26141486,99.82,0,0,0.17,557.17,3132.02,26141487,99.82,0,0,0.14,557.12,3132.06,26141488,99.69,0,0,0.57,557.43,3131.74,26141489,99.84,0,0,0.15,557.16,3132,26141490,99.71,0,0,0.28,557.42,3131.76,26141491,99.83,0,0,0.15,557.37,3131.81,26141492,99.73,0,0,0.16,557.33,3131.85,26141493,99.63,0,0,0.54,557.64,3131.53,26141494,99.83,0,0,0.16,556.69,3132.48,26141495,99.73,0,0,0.27,556.91,3132.28,26141496,99.82,0,0,0.16,556.86,3132.32,26141497,99.82,0,0,0.15,556.81,3132.37,26141498,99.69,0,0,0.48,557.21,3131.97,26141499,99.61,0,0,0.37,556.42,3132.72,26141500,99.66,0.01,0.02,0.34,555.17,3134,26141501,99.82,0,0,0.14,555.16,3134,26141502,99.81,0,0,0.14,555.23,3133.92,26141503,99.62,0.01,0.01,0.54,555.88,3133.27,26141504,99.8,0,0,0.16,556.58,3132.56,26141505,99.72,0,0,0.3,556.88,3132.28,26141506,99.82,0,0,0.16,556.97,3132.19,26141507,99.8,0,0,0.14,556.93,3132.22,26141508,99.69,0,0,0.55,557.2,3131.95,26141509,99.82,0,0,0.15,556.6,3132.54,26141510,99.76,0,0,0.26,556.39,3132.77,26141511,99.83,0,0,0.14,556.47,3132.69,26141512,99.83,0,0,0.16,556.43,3132.72,26141513,99.72,0,0,0.41,556.76,3132.39,26141514,99.82,0,0,0.29,556.58,3132.56,26141515,99.69,0,0,0.29,555.22,3133.96,26141516,99.83,0,0,0.17,555.21,3133.96,26141517,99.8,0,0,0.14,555.18,3133.99,26141518,99.82,0,0,0.15,555.14,3134.03,26141519,99.61,0,0,0.54,556.57,3132.59,26141520,99.76,0,0,0.27,556.48,3132.7,26141521,99.82,0,0,0.14,556.42,3132.75,26141522,99.82,0,0,0.16,556.38,3132.79,26141523,99.81,0.01,0.02,0.14,556.39,3132.78,26141524,99.65,0,0,0.56,557.38,3131.78,26141525,99.78,0,0,0.29,556.91,3132.27,26141526,99.8,0.01,0.82,0.24,556.8,3132.37,26141527,99.8,0,0,0.17,556.58,3132.58,26141528,99.83,0,0,0.14,556.62,3132.53,26141529,99.59,0,0,0.64,557.22,3131.91,26141530,99.77,0,0,0.33,556.64,3132.51,26141531,99.85,0,0,0.16,556.61,3132.54,26141532,99.82,0,0,0.16,556.56,3132.58,26141533,99.82,0,0,0.16,556.66,3132.47,26141534,99.65,0,0,0.52,557.19,3131.96,26141535,99.79,0,0,0.35,556.39,3132.77,26141536,99.84,0,0,0.14,556.34,3132.82,26141537,99.83,0,0,0.2,556.09,3133.07,26141538,99.82,0,0,0.15,556.2,3132.95,26141539,99.65,0,0,0.49,556.54,3132.6,26141540,99.72,0,0,0.34,555.4,3133.77,26141541,99.83,0,0,0.14,555.35,3133.84,26141542,99.82,0,0,0.18,555.39,3133.81,26141543,99.84,0,0,0.15,555.41,3133.78,26141544,99.69,0,0,0.55,555.93,3133.25,26141545,99.71,0,0,0.31,556.58,3132.62,26141546,99.84,0,0,0.15,556.61,3132.6,26141547,99.78,0,0,0.18,556.69,3132.52,26141548,99.81,0,0,0.17,556.64,3132.56,26141549,99.69,0,0,0.32,556.93,3132.26,26141550,99.75,0,0,0.49,556.37,3132.85,26141551,99.79,0,0,0.16,556.36,3132.85,26141552,99.83,0,0,0.16,556.42,3132.78,26141553,99.83,0,0,0.14,556.39,3132.81,26141554,99.84,0,0,0.16,556.35,3132.85,26141555,99.56,0,0,0.68,556.87,3132.34,26141556,99.85,0,0,0.14,556.36,3132.85,26141557,99.82,0,0,0.16,556.42,3132.78,26141558,99.85,0,0,0.15,556.38,3132.82,26141559,99.66,0,0,0.32,556.8,3132.37,26141560,99.62,0,0,0.72,557.22,3131.97,26141561,99.83,0,0,0.14,556.9,3132.28,26141562,99.8,0,0,0.15,556.91,3132.27,26141563,99.81,0.01,0.01,0.16,556.87,3132.3,26141564,99.81,0,0,0.15,556.81,3132.41,26141565,99.58,0,0,0.68,557.12,3132.12,26141566,99.84,0,0,0.29,556.93,3132.3,26141567,99.52,0,0,0.16,556.89,3132.35,26141568,99.78,0,0,0.15,556.85,3132.38,26141569,99.83,0,0,0.16,556.81,3132.41,26141570,94.86,0.35,0.01,78.91,568.81,3120.62,26141571,99.49,0,0,180.74,559.15,3130.64,26141572,99.84,0,0,0.13,559.1,3130.68,26141573,99.83,0,0,0.16,559.41,3130.37,26141574,99.81,0,0,0.15,559.48,3130.3,26141575,99.63,0,0,0.87,559.09,3130.71,26141576,99.83,0,0,0.14,556.75,3133.07,26141577,99.8,0,0,0.15,556.77,3133.05,26141578,99.8,0,0,0.14,556.84,3132.98,26141579,99.84,0,0,0.14,556.8,3133.01,26141580,99.53,0,0,0.51,556.78,3133.05,26141581,99.78,0,0,0.43,557.23,3132.6,26141582,99.83,0,0,0.16,557.26,3132.56,26141583,99.83,0,0,0.18,557.32,3132.49,26141584,99.83,0,0,0.18,557.26,3132.54,26141585,99.75,0,0,0.32,556.82,3133,26141586,99.69,0,0,0.55,557.06,3132.76,26141587,99.88,0,0,0.15,556.79,3133.03,26141588,99.86,0,0,0.15,556.81,3133,26141589,99.74,0,0,0.31,556.77,3133.02,26141590,99.79,0,0,0.28,556.51,3133.3,26141591,99.79,0,0,0.55,557.02,3132.78,26141592,99.88,0,0,0.15,556.8,3133,26141593,99.9,0,0,0.15,556.79,3133,26141594,99.9,0,0,0.15,556.74,3133.05,26141595,99.78,0,0,0.33,555.77,3134.04,26141596,99.75,0,0,0.57,556.8,3133,26141597,99.88,0,0,0.22,556.57,3133.23,26141598,99.91,0,0,0.18,556.52,3133.28,26141599,99.92,0,0,0.18,556.48,3133.31,26141600,99.85,0,0,0.28,556.7,3133.11,26141601,99.76,0,0,0.42,557.27,3132.54,26141602,99.9,0,0,0.29,557.04,3132.76,26141603,99.93,0,0,0.16,556.99,3132.81,26141604,99.91,0,0,0.16,556.96,3132.84,26141605,99.89,0,0,0.32,556.94,3132.87,26141606,99.75,0,0,0.42,557.42,3132.39,26141607,99.86,0,0,0.3,557.06,3132.74,26141608,99.9,0,0,0.14,557.02,3132.78,26141609,99.91,0,0,0.17,556.97,3132.82,26141610,99.81,0,0,0.3,557.02,3132.79,26141611,99.77,0,0,0.54,557.41,3132.4,26141612,99.87,0,0,0.16,556.8,3133,26141613,99.9,0,0,0.15,556.76,3133.04,26141614,99.91,0,0,0.17,556.71,3133.08,26141615,99.8,0.03,2.2,0.52,557.01,3132.79,26141616,99.8,0,0.02,0.4,557.35,3132.43,26141617,99.88,0,0,0.43,557.41,3132.36,26141618,99.86,0,0,0.15,557.01,3132.76,26141619,99.82,0,0,0.29,556.95,3132.8,26141620,99.86,0,0,0.31,556.93,3132.83,26141621,99.93,0,0,0.14,557.06,3132.7,26141622,99.75,0,0,0.55,557.77,3132,26141623,99.88,0.01,0.01,0.14,557.24,3132.53,26141624,99.91,0,0,0.15,557.18,3132.58,26141625,99.82,0,0,0.3,557.02,3132.76,26141626,99.94,0,0,0.13,557.06,3132.71,26141627,99.77,0,0,0.59,557.52,3132.24,26141628,99.87,0,0,0.14,557.22,3132.55,26141629,99.9,0,0,0.15,557.17,3132.59,26141630,99.74,0,0,0.29,555.19,3134.59,26141631,99.9,0,0,0.16,555.06,3134.71,26141632,99.77,0,0,0.55,556.84,3132.92,26141633,99.9,0,0,0.16,557.18,3132.58,26141634,99.9,0,0,0.14,557.23,3132.53,26141635,99.81,0,0,0.29,557.06,3132.71,26141636,99.9,0,0,0.19,557,3132.77,26141637,99.77,0,0,0.5,557.84,3131.93,26141638,99.88,0,0,0.2,557.16,3132.6,26141639,99.91,0,0,0.17,557.25,3132.5,26141640,99.87,0,0,0.3,556.25,3133.52,26141641,99.9,0,0,0.14,556.01,3133.76,26141642,99.8,0,0,0.4,556.94,3132.82,26141643,99.89,0,0,0.3,557.19,3132.57,26141644,99.9,0,0,0.14,557.29,3132.47,26141645,99.83,0,0,0.29,557.26,3132.51,26141646,99.92,0,0,0.16,557.22,3132.55,26141647,99.78,0,0,0.54,557.68,3132.08,26141648,99.9,0,0,0.19,557.21,3132.55,26141649,99.8,0,0,0.31,557.51,3132.22,26141650,99.81,0,0,0.28,557.01,3132.74,26141651,99.92,0,0,0.19,556.95,3132.79,26141652,99.9,0,0,0.15,556.9,3132.84,26141653,99.78,0,0,0.55,556.57,3133.16,26141654,99.88,0,0,0.14,556.05,3133.68,26141655,99.83,0,0,0.3,556.51,3133.24,26141656,99.92,0,0,0.14,556.48,3133.27,26141657,99.9,0,0,0.18,556.44,3133.3,26141658,99.75,0,0,0.55,556.89,3132.85,26141659,99.9,0,0,0.14,556.54,3133.19,26141660,99.84,0,0,0.29,556.52,3133.23,26141661,99.93,0,0,0.16,556.47,3133.28,26141662,99.93,0,0,0.15,556.44,3133.3,26141663,99.77,0,0,0.58,557.08,3132.66,26141664,99.92,0,0,0.15,556.77,3132.96,26141665,99.84,0,0,0.3,556.76,3132.99,26141666,99.94,0,0,0.14,556.71,3133.03,26141667,99.9,0,0,0.16,556.66,3133.08,26141668,99.74,0,0,0.55,556.66,3133.08,26141669,99.9,0,0,0.15,556.02,3133.72,26141670,99.85,0,0,0.42,556.75,3133,26141671,99.89,0,0,0.11,556.69,3133.05,26141672,99.9,0,0,0.17,556.66,3133.08,26141673,99.75,0,0,0.42,557.17,3132.57,26141674,99.89,0,0,0.29,556.53,3133.2,26141675,99.83,0,0,0.29,556.28,3133.47,26141676,99.91,0,0,0.16,556.23,3133.51,26141677,99.89,0,0,0.15,556.21,3133.53,26141678,99.77,0,0,0.54,556.76,3132.98,26141679,99.75,0,0,0.38,556.95,3132.76,26141680,99.81,0,0,0.35,556.8,3132.95,26141681,99.92,0,0,0.15,556.75,3132.99,26141682,99.89,0,0,0.15,556.72,3133.02,26141683,99.78,0.01,0.01,0.52,557,3132.73,26141684,99.93,0,0,0.21,556.47,3133.28,26141685,99.82,0,0,0.3,556.57,3133.19,26141686,99.92,0,0,0.21,556.53,3133.23,26141687,99.92,0,0,0.18,556.49,3133.26,26141688,99.89,0,0,0.17,556.46,3133.29,26141689,99.77,0,0,0.57,556.52,3133.22,26141690,99.89,0,0,0.31,556.16,3133.6,26141691,99.93,0,0,0.14,556.28,3133.47,26141692,99.93,0,0,0.16,556.3,3133.44,26141693,99.92,0,0,0.14,556.27,3133.47,26141694,99.78,0,0,0.61,556.82,3132.92,26141695,99.77,0,0,0.34,556.71,3133.05,26141696,99.92,0,0,0.18,556.68,3133.08,26141697,99.93,0,0,0.18,556.77,3132.98,26141698,99.9,0,0,0.19,556.79,3132.95,26141699,99.8,0,0,0.55,557.11,3132.62,26141700,99.79,0,0,0.31,556.01,3133.74,26141701,99.92,0,0,0.14,555.97,3133.78,26141702,99.92,0,0,0.14,555.93,3133.81,26141703,99.93,0,0,0.15,555.94,3133.8,26141704,99.75,0,0,0.52,556.92,3132.81,26141705,99.85,0,0,0.42,557.01,3132.74,26141706,99.91,0,0,0.15,556.96,3132.78,26141707,99.92,0,0,0.14,556.92,3132.82,26141708,99.91,0,0,0.19,556.88,3132.85,26141709,99.64,0,0,0.73,557.11,3132.61,26141710,99.83,0,0,0.33,557.1,3132.62,26141711,99.92,0,0,0.16,556.97,3132.75,26141712,99.91,0,0,0.14,556.94,3132.77,26141713,99.93,0,0.01,0.15,556.9,3132.81,26141714,99.78,0,0,0.59,557.28,3132.43,26141715,99.84,0,0,0.32,556.74,3132.98,26141716,99.92,0,0,0.14,556.75,3132.97,26141717,99.93,0,0,0.2,556.72,3133,26141718,99.93,0,0,0.14,556.68,3133.03,26141719,99.8,0,0,0.58,557.05,3132.65,26141720,99.85,0,0,0.3,556.41,3133.32,26141721,99.91,0,0,0.15,556.45,3133.27,26141722,99.93,0,0,0.17,556.51,3133.2,26141723,99.91,0,0,0.14,556.47,3133.24,26141724,99.9,0,0,0.16,556.43,3133.27,26141725,99.65,0,0,0.73,556.76,3132.97,26141726,99.91,0,0,0.17,556.38,3133.34,26141727,99.92,0,0,0.14,556.49,3133.23,26141728,99.93,0,0,0.14,556.49,3133.22,26141729,99.91,0,0,0.15,556.46,3133.25,26141730,98.24,0,0,0.75,557.02,3132.72,26141731,99.94,0,0,0.18,556.16,3133.58,26141732,99.92,0,0,0.19,556.2,3133.54,26141733,99.91,0,0,0.18,556.29,3133.44,26141734,99.91,0,0,0.19,556.26,3133.47,26141735,99.73,0,0,0.7,556.44,3133.3,26141736,99.93,0,0,0.16,555.96,3133.78,26141737,99.91,0,0,0.17,555.92,3133.81,26141738,99.9,0,0,0.15,555.97,3133.77,26141739,99.85,0,0,0.31,556.77,3132.94,26141740,99.74,0,0,0.71,557.15,3132.57,26141741,99.93,0,0,0.15,556.23,3133.49,26141742,99.94,0,0,0.17,556.19,3133.52,26141743,99.92,0.01,0.03,0.17,556.23,3133.48,26141744,99.94,0,0,0.15,556.28,3133.43,26141745,99.68,0,0,0.77,556.81,3132.91,26141746,99.93,0,0,0.18,555.98,3133.74,26141747,99.92,0,0,0.15,555.94,3133.77,26141748,99.93,0,0,0.16,555.91,3133.8,26141749,98.36,0,0,0.15,555.97,3133.74,26141750,99.73,0,0,0.73,557.68,3132.04,26141751,99.91,0,0,0.14,557.23,3132.49,26141752,99.89,0,0,0.14,557.18,3132.53,26141753,99.92,0,0,0.15,557.15,3132.56,26141754,99.91,0,0,0.14,557.11,3132.59,26141755,99.68,0,0,0.59,556.88,3132.84,26141756,99.93,0,0,0.34,556.51,3133.2,26141757,99.91,0,0,0.18,556.47,3133.24,26141758,99.91,0,0,0.18,556.43,3133.28,26141759,99.93,0,0,0.18,556.39,3133.31,26141760,99.8,0,0,0.3,556.04,3133.68,26141761,99.77,0,0,0.59,557.31,3132.41,26141762,99.93,0,0,0.18,556.99,3132.72,26141763,99.93,0,0,0.18,556.95,3132.75,26141764,99.93,0,0,0.18,556.91,3132.79,26141765,99.81,0,0,0.36,557.14,3132.58,26141766,99.76,0,0,0.57,557.54,3132.18,26141767,99.9,0,0,0.18,557.26,3132.45,26141768,99.88,0,0,0.18,557.22,3132.49,26141769,99.8,0,0,0.31,556.69,3132.99,26141770,99.8,0,0,0.3,555.94,3133.76,26141771,99.78,0,0,0.58,556.6,3133.1,26141772,99.9,0,0,0.15,556.44,3133.25,26141773,99.91,0,0,0.14,556.52,3133.17,26141774,99.9,0,0,0.17,556.48,3133.22,26141775,99.84,0,0,0.33,556.95,3132.77,26141776,99.79,0,0,0.49,557.42,3132.29,26141777,99.93,0,0,0.25,557.13,3132.58,26141778,99.92,0,0,0.15,557.18,3132.52,26141779,99.93,0,0,0.14,557.24,3132.46,26141780,99.87,0,0,0.34,557.22,3132.49,26141781,99.77,0,0,0.56,557.43,3132.29,26141782,99.93,0,0.01,0.21,556.89,3132.82,26141783,99.94,0,0,0.18,556.98,3132.72,26141784,99.9,0,0,0.18,556.99,3132.71,26141785,99.79,0,0,0.36,556.25,3133.47,26141786,99.78,0,0,0.57,557.16,3132.56,26141787,99.92,0,0,0.18,557.14,3132.57,26141788,99.92,0,0,0.18,557.1,3132.6,26141789,99.93,0,0,0.18,557.22,3132.48,26141790,99.84,0,0,0.37,557,3132.72,26141791,99.8,0,0,0.38,557.57,3132.14,26141792,99.92,0,0,0.36,557.17,3132.55,26141793,99.93,0,0,0.15,557.13,3132.59,26141794,99.93,0,0,0.14,557.16,3132.56,26141795,99.76,0,0,0.35,556.64,3133.09,26141796,99.89,0,0,0.17,556.5,3133.24,26141797,99.77,0,0,0.58,557.58,3132.15,26141798,99.92,0,0,0.14,557.15,3132.57,26141799,99.85,0,0,0.38,557.13,3132.57,26141800,99.85,0,0,0.4,557.18,3132.53,26141801,99.92,0,0,0.21,557.25,3132.46,26141802,99.77,0,0,0.55,557.75,3131.95,26141803,99.91,0.01,0.01,0.17,557.41,3132.29,26141804,99.92,0,0,0.16,557.05,3132.65,26141805,99.77,0,0,0.36,556.16,3133.56,26141806,99.9,0,0,0.15,556.24,3133.47,26141807,99.74,0,0,0.63,556.87,3132.83,26141808,99.92,0,0,0.16,556.68,3133.01,26141809,99.94,0,0,0.14,556.65,3133.04,26141810,99.89,0,0,0.35,556.4,3133.32,26141811,99.94,0,0,0.18,556.36,3133.36,26141812,99.8,0,0,0.55,556.82,3132.89,26141813,99.91,0,0,0.17,556.5,3133.21,26141814,99.91,0,0,0.14,556.46,3133.24,26141815,99.84,0,0,0.36,555.72,3133.99,26141816,99.9,0,0,0.2,555.68,3134.04,26141817,99.8,0,0,0.45,556.3,3133.41,26141818,99.93,0,0,0.3,556.49,3133.21,26141819,99.92,0,0,0.14,556.48,3133.21,26141820,99.75,0,0,0.3,555.74,3133.97,26141821,99.92,0,0,0.16,555.7,3134.01,26141822,99.77,0,0,0.49,556.26,3133.44,26141823,99.91,0,0,0.21,556.61,3133.11,26141824,99.9,0,0,0.15,556.72,3133,26141825,99.83,0,0,0.32,556.51,3133.23,26141826,99.91,0,0,0.16,556.46,3133.27,26141827,99.78,0,0,0.33,556.8,3132.93,26141828,99.93,0,0,0.38,556.63,3133.09,26141829,99.76,0,0,0.31,555.69,3134.01,26141830,99.76,0,0,0.31,555.58,3134.13,26141831,99.9,0,0,0.14,555.5,3134.21,26141832,99.92,0,0,0.16,555.46,3134.24,26141833,99.75,0,0,0.59,556.75,3132.95,26141834,99.94,0,0,0.15,555.91,3133.8,26141835,99.81,0,0,0.32,556.18,3133.55,26141836,99.92,0,0,0.14,556.24,3133.49,26141837,99.92,0,0,0.21,556.68,3133.04,26141838,99.73,0,0,0.59,557.07,3132.65,26141839,99.91,0,0,0.14,556.63,3133.09,26141840,99.86,0,0,0.31,556.85,3132.88,26141841,99.89,0,0,0.15,556.94,3132.79,26141842,99.93,0,0,0.13,556.98,3132.75,26141843,99.79,0,0,0.55,557.02,3132.7,26141844,99.93,0,0,0.15,556.41,3133.3,26141845,99.88,0,0,0.34,556.63,3133.09,26141846,99.93,0,0,0.16,556.6,3133.12,26141847,99.9,0,0,0.14,556.69,3133.02,26141848,99.76,0,0,0.51,556.77,3132.95,26141849,99.93,0,0,0.2,555.94,3133.77,26141850,99.87,0,0,0.34,556.66,3133.07,26141851,99.91,0,0,0.14,556.63,3133.09,26141852,99.9,0,0,0.16,556.59,3133.13,26141853,99.79,0,0,0.59,557.06,3132.65,26141854,99.93,0,0,0.16,556.73,3132.97,26141855,99.86,0,0,0.32,556.49,3133.24,26141856,99.89,0,0,0.19,556.45,3133.27,26141857,99.91,0,0,0.18,556.41,3133.31,26141858,99.78,0,0,0.61,556.83,3132.88,26141859,99.79,0,0,0.31,556.73,3132.96,26141860,99.86,0,0,0.33,556.5,3133.2,26141861,99.91,0,0,0.16,556.46,3133.24,26141862,99.92,0,0,0.18,556.43,3133.27,26141863,99.72,0.01,0.01,0.41,556.69,3133,26141864,99.93,0,0,0.31,555.84,3133.86,26141865,99.86,0,0,0.33,556.75,3132.96,26141866,99.93,0,0,0.2,556.72,3133,26141867,99.93,0,0,0.14,556.68,3133.03,26141868,99.92,0,0,0.14,556.64,3133.06,26141869,99.74,0,0,0.57,556.67,3133.03,26141870,99.83,0,0,0.31,556.18,3133.53,26141871,99.94,0,0,0.13,556.25,3133.46,26141872,99.91,0,0,0.16,556.22,3133.49,26141873,99.93,0,0,0.15,556.18,3133.53,26141874,99.77,0,0,0.59,557.02,3132.68,26141875,99.86,0,0,0.34,556.37,3133.35,26141876,99.88,0,0,0.14,556.42,3133.31,26141877,99.93,0,0,0.17,556.46,3133.26,26141878,99.91,0,0,0.14,556.43,3133.29,26141879,99.81,0,0,0.5,557.01,3132.7,26141880,99.84,0,0,0.35,556.87,3132.86,26141881,99.91,0,0,0.15,556.83,3132.89,26141882,99.93,0,0,0.14,556.95,3132.77,26141883,99.93,0,0,0.15,556.95,3132.77,26141884,99.7,0,0,0.41,556.99,3132.72,26141885,99.85,0,0,0.43,556.7,3133.03,26141886,99.9,0,0,0.16,556.62,3133.11,26141887,99.88,0,0,0.14,556.58,3133.14,26141888,99.89,0,0,0.15,556.64,3133.08,26141889,99.69,0,0,0.72,557.37,3132.32,26141890,99.82,0,0,0.39,556.94,3132.77,26141891,99.86,0,0,0.18,556.89,3132.81,26141892,99.92,0,0,0.18,556.85,3132.84,26141893,99.9,0,0,0.14,556.82,3132.87,26141894,99.8,0,0,0.57,557.28,3132.41,26141895,99.77,0,0,0.31,556.04,3133.66,26141896,99.94,0,0,0.14,555.97,3133.73,26141897,99.91,0,0,0.21,556.18,3133.51,26141898,99.87,0,0,0.15,556.14,3133.55,26141899,99.77,0,0,0.32,556.49,3133.2,26141900,99.86,0,0,0.52,556.72,3132.99,26141901,99.92,0,0,0.17,556.73,3132.98,26141902,99.92,0,0,0.14,556.69,3133.01,26141903,99.92,0,0,0.15,556.67,3133.03,26141904,99.91,0,0,0.17,556.62,3133.07,26141905,99.71,0,0,0.72,557.39,3132.32,26141906,99.92,0,0,0.17,556.66,3133.04,26141907,99.92,0,0,0.14,556.74,3132.97,26141908,99.89,0,0,0.17,556.7,3133,26141909,99.9,0,0,0.17,556.66,3133.03,26141910,99.73,0,0,0.79,557.58,3132.13,26141911,99.91,0,0,0.2,556.86,3132.85,26141912,99.47,0,0,0.2,556.89,3132.81,26141913,99.92,0,0,0.2,556.97,3132.72,26141914,99.93,0,0.01,0.2,556.94,3132.75,26141915,99.71,0,0.01,0.73,557.37,3132.33,26141916,99.92,0,0,0.17,556.88,3132.83,26141917,99.93,0,0,0.22,556.84,3132.86,26141918,99.9,0,0,0.17,556.88,3132.81,26141919,99.84,0,0,0.36,557.19,3132.48,26141920,99.72,0,0,0.78,557.53,3132.16,26141921,99.92,0,0,0.2,557.13,3132.55,26141922,99.92,0,0,0.2,557.09,3132.58,26141923,99.89,0.01,0.01,0.16,557.05,3132.62,26141924,99.88,0,0,0.17,557.17,3132.49,26141925,99.6,0,0,0.7,557.46,3132.23,26141926,99.91,0,0,0.22,556.91,3132.77,26141927,99.92,0,0,0.17,556.87,3132.8,26141928,99.9,0,0,0.16,556.84,3132.83,26141929,99.85,0,0,0.17,556.8,3132.86,26141930,94.99,0.37,0.01,78.31,566.07,3123.87,26141931,99.7,0,0,181.26,559.5,3130.07,26141932,99.86,0,0,0.19,559.42,3130.14,26141933,99.91,0,0,0.17,559.47,3130.09,26141934,99.89,0,0,0.17,559.54,3130.02,26141935,99.67,0,0,0.48,559.7,3129.87,26141936,99.86,0,0,0.47,557.57,3132.03,26141937,99.89,0.01,0.01,0.2,557.58,3132.01,26141938,99.89,0,0,0.2,557.59,3132,26141939,99.91,0,0,0.17,557.55,3132.04,26141940,99.66,0,0,0.3,556.83,3132.79,26141941,99.74,0,0,0.56,557.45,3132.18,26141942,99.92,0,0,0.13,557.06,3132.57,26141943,99.9,0,0,0.16,557.13,3132.49,26141944,99.87,0,0,0.15,557.08,3132.54,26141945,99.86,0,0.02,0.31,557.31,3132.33,26141946,99.79,0,0.01,0.57,557.62,3132.02,26141947,99.89,0,0,0.15,557.3,3132.33,26141948,99.93,0,0,0.15,557.38,3132.25,26141949,99.83,0,0,0.31,557.34,3132.27,26141950,99.82,0,0.01,0.3,557.05,3132.56,26141951,99.75,0,0,0.5,557.48,3132.14,26141952,99.89,0,0,0.21,557.21,3132.39,26141953,99.9,0,0,0.16,557.36,3132.24,26141954,99.87,0,0,0.15,557.36,3132.24,26141955,99.85,0,0,0.32,557.35,3132.26,26141956,99.76,0,0,0.5,557.28,3132.33,26141957,99.86,0,0,0.22,556.54,3133.07,26141958,99.91,0,0,0.16,556.5,3133.1,26141959,99.89,0,0,0.15,556.42,3133.18,26141960,99.82,0,0,0.3,556.65,3132.97,26141961,99.69,0,0,0.42,556.97,3132.64,26141962,99.86,0,0,0.31,556.58,3133.03,26141963,99.82,0,0,0.16,556.54,3133.07,26141964,99.86,0,0,0.15,556.5,3133.1,26141965,99.8,0,0,0.38,556.61,3133.01,26141966,99.75,0,0,0.59,556.95,3132.66,26141967,99.86,0.02,0.07,0.19,556.31,3133.3,26141968,99.89,0,0,0.16,556.26,3133.34,26141969,99.88,0,0,0.14,556.3,3133.3,26141970,99.75,0,0,0.42,555.76,3133.85,26141971,99.79,0,0,0.32,555.98,3133.62,26141972,99.85,0,0,0.44,556.8,3132.79,26141973,99.88,0,0,0.18,556.77,3132.83,26141974,99.83,0,0,0.2,556.73,3132.86,26141975,99.77,0,0,0.38,556.56,3133.05,26141976,99.89,0,0,0.19,556.63,3132.98,26141977,99.7,0,0,0.59,556.96,3132.64,26141978,99.86,0,0,0.2,556.55,3133.04,26141979,99.65,0,0,0.35,556.53,3133.04,26141980,99.77,0,0,0.36,556.51,3133.08,26141981,99.81,0,0,0.2,556.54,3133.05,26141982,99.64,0,0,0.58,556.91,3132.67,26141983,99.77,0.01,0.01,0.2,556.09,3133.49,26141984,99.81,0,0,0.19,556.04,3133.53,26141985,99.75,0,0,0.44,556.3,3133.29,26141986,99.84,0,0,0.18,556.23,3133.35,26141987,99.71,0,0,0.59,557.24,3132.34,26141988,99.88,0,0,0.14,556.85,3132.72,26141989,99.83,0,0,0.14,556.81,3132.76,26141990,99.76,0,0,0.35,556.8,3132.79,26141991,99.78,0,0,0.19,556.76,3132.82,26141992,99.68,0,0,0.61,556.9,3132.68,26141993,99.84,0,0,0.19,556.14,3133.43,26141994,99.83,0,0,0.21,556.11,3133.46,26141995,99.81,0,0,0.36,556.58,3133,26141996,99.84,0,0,0.17,556.55,3133.03,26141997,99.7,0,0,0.54,556.87,3132.71,26141998,99.85,0,0,0.14,556.49,3133.09,26141999,99.84,0,0,0.14,556.63,3132.94,26142000,99.75,0,0,0.39,557.1,3132.49,26142001,99.83,0,0,0.16,557.07,3132.51,26142002,99.69,0,0,0.43,557.19,3132.39,26142003,99.83,0,0,0.32,555.78,3133.8,26142004,99.81,0,0,0.18,555.74,3133.84,26142005,99.73,0,0,0.3,557.08,3132.51,26142006,99.83,0,0,0.14,557.1,3132.48,26142007,99.83,0,0,0.16,557.07,3132.51,26142008,99.7,0,0,0.54,557.14,3132.44,26142009,99.72,0,0,0.32,556.77,3132.78,26142010,99.76,0,0,0.38,555.83,3133.74,26142011,99.82,0.01,0.01,0.17,555.88,3133.68,26142012,99.84,0,0,0.14,555.82,3133.74,26142013,99.7,0,0,0.55,556.34,3133.21,26142014,99.84,0,0,0.15,556,3133.58,26142015,99.74,0,0,0.39,557.03,3132.57,26142016,99.85,0,0,0.2,557.12,3132.48,26142017,99.79,0,0,0.24,557.09,3132.5,26142018,99.68,0,0,0.63,556.9,3132.69,26142019,99.83,0,0,0.2,555.78,3133.8,26142020,99.73,0,0,0.39,556,3133.59,26142021,99.83,0,0,0.2,556.04,3133.55,26142022,99.84,0,0,0.17,556.12,3133.46,26142023,99.7,0,0,0.43,557.1,3132.48,26142024,99.81,0,0,0.34,557.02,3132.56,26142025,99.79,0,0,0.33,556.77,3132.83,26142026,99.82,0,0,0.17,556.72,3132.87,26142027,99.83,0,0,0.18,556.77,3132.81,26142028,99.71,0,0,0.57,557.31,3132.27,26142029,99.86,0,0,0.2,557.08,3132.5,26142030,99.77,0,0,0.36,556.59,3133.01,26142031,99.82,0,0,0.2,556.54,3133.05,26142032,99.8,0,0,0.15,556.5,3133.09,26142033,99.69,0,0,0.59,557.06,3132.52,26142034,99.82,0,0,0.18,557.11,3132.47,26142035,99.77,0,0,0.36,557.1,3132.5,26142036,99.85,0,0,0.17,557.06,3132.53,26142037,99.83,0,0,0.14,557.03,3132.56,26142038,99.72,0,0,0.59,557.32,3132.27,26142039,99.7,0,0,0.37,556.78,3132.78,26142040,99.73,0,0,0.3,556.88,3132.7,26142041,99.81,0,0,0.18,556.84,3132.74,26142042,99.82,0,0,0.2,556.81,3132.76,26142043,99.82,0.01,0.01,0.19,556.77,3132.79,26142044,99.68,0,0,0.56,557.32,3132.24,26142045,99.76,0,0,0.39,556.88,3132.7,26142046,99.83,0,0,0.15,556.84,3132.73,26142047,99.84,0,0,0.15,556.81,3132.76,26142048,99.83,0,0,0.16,556.77,3132.79,26142049,99.7,0,0,0.57,557.59,3131.97,26142050,99.73,0,0,0.38,556.34,3133.24,26142051,99.81,0,0,0.13,556.38,3133.19,26142052,99.85,0,0,0.17,556.35,3133.22,26142053,99.83,0,0,0.16,556.31,3133.25,26142054,99.68,0,0,0.56,556.93,3132.63,26142055,99.7,0,0,0.43,556.51,3133.06,26142056,99.81,0,0,0.17,556.47,3133.1,26142057,99.83,0,0,0.14,556.56,3133,26142058,99.85,0,0,0.16,556.58,3132.97,26142059,99.67,0,0,0.62,557.13,3132.43,26142060,99.34,0,0,6.11,557.34,3132.77,26142061,99.82,0,0,0.22,557.31,3132.8,26142062,99.83,0,0,0.14,557.27,3132.84,26142063,99.81,0,0,0.15,557.32,3132.78,26142064,99.69,0,0,0.55,557.63,3132.47,26142065,99.74,0,0,0.36,557.14,3133.03,26142066,99.81,0,0,0.16,557.1,3133.08,26142067,99.8,0,0,0.13,557.07,3133.1,26142068,99.85,0,0,0.16,557.03,3133.13,26142069,99.59,0,0,0.56,557.52,3132.64,26142070,99.78,0,0,0.44,556.97,3133.22,26142071,99.84,0,0,0.16,556.93,3133.27,26142072,99.81,0,0,0.14,556.89,3133.3,26142073,99.83,0,0,0.16,556.86,3133.33,26142074,99.67,0,0,0.38,557.46,3132.74,26142075,99.74,0,0,0.51,556.89,3133.35,26142076,99.84,0,0,0.17,556.95,3133.28,26142077,99.82,0,0,0.18,556.93,3133.3,26142078,99.81,0,0,0.14,556.89,3133.33,26142079,99.83,0,0,0.15,556.85,3133.36,26142080,99.62,0,0,0.68,557.94,3132.29,26142081,99.8,0,0,0.14,557.38,3132.85,26142082,99.83,0,0,0.16,557.44,3132.78,26142083,99.81,0,0,0.14,557.41,3132.81,26142084,99.84,0,0,0.15,557.37,3132.85,26142085,99.57,0,0,0.72,557.71,3132.52,26142086,99.85,0,0,0.16,557.32,3132.9,26142087,99.83,0,0,0.14,557.36,3132.86,26142088,99.86,0,0,0.16,557.44,3132.78,26142089,99.83,0,0,0.14,557.41,3132.8,26142090,99.63,0,0,0.68,558.11,3132.12,26142091,99.85,0,0,0.14,557.36,3132.87,26142092,99.85,0,0,0.17,557.33,3132.9,26142093,99.83,0,0,0.14,557.29,3132.92,26142094,99.83,0,0,0.14,557.35,3132.86,26142095,99.55,0,0,0.71,557.65,3132.58,26142096,99.82,0,0,0.16,557.39,3132.83,26142097,99.83,0,0,0.14,557.37,3132.86,26142098,99.85,0,0,0.15,557.32,3132.9,26142099,99.74,0,0,0.34,557.04,3133.15,26142100,99.63,0,0,0.69,557.9,3132.3,26142101,99.83,0,0,0.23,557.41,3132.79,26142102,99.81,0,0,0.14,557.38,3132.82,26142103,99.84,0.01,0.01,0.16,557.34,3132.85,26142104,99.84,0,0,0.14,557.3,3132.89,26142105,99.61,0,0,0.62,557.04,3133.17,26142106,99.82,0,0,0.27,556.9,3133.31,26142107,99.82,0,0,0.16,556.91,3133.29,26142108,99.81,0,0,0.14,556.87,3133.32,26142109,99.84,0,0,0.15,556.84,3133.35,26142110,99.58,0,0,0.57,555.95,3134.26,26142111,99.86,0,0,0.32,557.28,3132.92,26142112,99.79,0,0,0.21,557.39,3132.81,26142113,99.85,0,0,0.18,557.31,3132.88,26142114,99.28,0,0,0.18,556.66,3133.53,26142115,99.75,0,0,0.35,556.65,3133.58,26142116,99.68,0,0,0.54,556.97,3133.26,26142117,99.82,0,0,0.13,556.58,3133.64,26142118,99.84,0,0,0.16,556.62,3133.59,26142119,99.84,0,0,0.14,556.69,3133.51,26142120,99.73,0,0,0.36,555.96,3134.26,26142121,99.69,0,0,0.57,557.02,3133.19,26142122,99.84,0,0,0.18,556.85,3133.36,26142123,99.83,0,0,0.14,556.82,3133.39,26142124,99.8,0,0,0.16,556.85,3133.35,26142125,99.73,0,0,0.32,556.71,3133.51,26142126,99.65,0,0,0.59,557.25,3132.97,26142127,99.84,0,0,0.15,556.87,3133.34,26142128,99.82,0,0,0.14,556.84,3133.36,26142129,99.68,0,0,0.32,556.23,3133.97,26142130,99.74,0,0,0.26,556.44,3133.78,26142131,99.69,0,0,0.53,556.98,3133.24,26142132,99.85,0,0,0.16,556.6,3133.62,26142133,99.82,0,0,0.16,556.56,3133.64,26142134,99.8,0,0,0.2,556.59,3133.61,26142135,99.68,0,0,0.3,555.74,3134.48,26142136,99.7,0,0,0.56,556.14,3134.08,26142137,99.83,0,0,0.22,555.88,3134.33,26142138,99.82,0,0,0.15,555.83,3134.37,26142139,99.82,0,0,0.15,555.79,3134.41,26142140,99.78,0,0,0.24,556.84,3133.38,26142141,99.66,0,0,0.41,557.35,3132.87,26142142,99.85,0,0,0.3,557.14,3133.06,26142143,99.87,0,0,0.14,557.11,3133.09,26142144,99.89,0,0,0.14,557.08,3133.12,26142145,99.76,0,0,0.29,556.34,3133.87,26142146,99.76,0,0,0.44,556.89,3133.32,26142147,99.92,0,0,0.3,556.84,3133.37,26142148,99.9,0,0,0.15,556.9,3133.3,26142149,99.9,0,0,0.16,556.86,3133.34,26142150,99.76,0,0,0.25,556.85,3133.37,26142151,99.9,0,0,0.14,556.81,3133.4,26142152,99.75,0,0,0.54,557.3,3132.9,26142153,99.93,0,0,0.16,556.94,3133.26,26142154,99.89,0,0,0.14,556.9,3133.3,26142155,98.22,0,0,0.25,556.34,3133.87,26142156,99.91,0,0,0.16,556.13,3134.09,26142157,99.77,0,0,0.55,557,3133.21,26142158,99.9,0,0,0.14,556.84,3133.36,26142159,99.81,0,0,0.31,556.71,3133.46,26142160,99.84,0,0,0.25,557.15,3133.04,26142161,99.9,0,0,0.14,557.12,3133.07,26142162,99.76,0,0,0.55,557.43,3132.75,26142163,99.88,0.01,0.01,0.16,557.05,3133.13,26142164,99.92,0,0,0.14,557.13,3133.05,26142165,99.81,0,0,0.34,556.28,3133.92,26142166,99.91,0,0,0.17,556.16,3134.03,26142167,99.76,0.01,0,0.57,557.27,3132.91,26142168,99.91,0,0,0.14,556.8,3133.39,26142169,99.88,0,0,0.15,556.84,3133.33,26142170,99.84,0,0,0.25,556.23,3133.97,26142171,99.93,0,0,0.14,555.95,3134.24,26142172,99.82,0,0,0.53,556.53,3133.66,26142173,99.89,0,0,0.2,556.58,3133.62,26142174,99.09,0,0,0.14,556.53,3133.67,26142175,99.84,0,0,0.25,557.08,3133.13,26142176,99.91,0,0,0.16,557.16,3133.05,26142177,99.75,0,0,0.5,557.47,3132.73,26142178,99.93,0,0,0.22,557.08,3133.12,26142179,99.94,0,0,0.14,557.04,3133.15,26142180,99.68,0,0,0.26,556.8,3133.42,26142181,99.9,0,0,0.14,556.93,3133.28,26142182,99.75,0,0,0.44,557.07,3133.13,26142183,99.91,0,0,0.29,556.12,3134.08,26142184,99.91,0,0,0.14,556.08,3134.12,26142185,99.87,0,0,0.29,556.3,3133.91,26142186,99.9,0,0,0.13,556.34,3133.87,26142187,99.79,0,0,0.34,557.01,3133.19,26142188,99.94,0,0,0.37,556.9,3133.31,26142189,99.77,0,0,0.32,556.86,3133.33,26142190,99.84,0,0,0.25,557.09,3133.12,26142191,99.92,0,0,0.14,557.06,3133.14,26142192,99.91,0,0,0.14,557.07,3133.13,26142193,99.75,0,0,0.55,557.32,3132.87,26142194,99.89,0,0,0.14,556.9,3133.31,26142195,99.82,0,0,0.25,556.88,3133.34,26142196,99.9,0,0,0.16,556.86,3133.36,26142197,99.93,0,0,0.18,557.07,3133.15,26142198,99.77,0,0,0.55,557.38,3132.83,26142199,99.94,0,0,0.14,557.13,3133.07,26142200,99.86,0,0,0.25,557.17,3133.05,26142201,99.9,0,0,0.14,557.12,3133.1,26142202,99.92,0,0,0.14,557.09,3133.12,26142203,99.76,0,0,0.58,557.7,3132.51,26142204,99.9,0,0,0.15,557.01,3133.19,26142205,99.77,0,0,0.26,556.21,3134.01,26142206,99.89,0,0,0.17,556.17,3134.05,26142207,99.88,0,0,0.14,556.13,3134.08,26142208,99.76,0,0,0.54,556.98,3133.23,26142209,99.9,0,0,0.14,557.06,3133.15,26142210,99.74,0,0,0.25,556.81,3133.41,26142211,99.93,0,0,0.14,556.85,3133.37,26142212,99.9,0,0,0.16,556.9,3133.31,26142213,99.77,0.01,0.02,0.49,557.32,3132.88,26142214,99.93,0,0,0.2,557.15,3133.05,26142215,99.88,0,0,0.26,557.12,3133.09,26142216,99.92,0,0,0.14,557.1,3133.12,26142217,99.89,0,0,0.18,557.06,3133.15,26142218,99.73,0,0,0.49,557.46,3132.75,26142219,99.84,0,0,0.36,557.02,3133.16,26142220,99.83,0,0,0.25,557.2,3133,26142221,99.89,0,0,0.16,557.15,3133.05,26142222,99.9,0,0,0.14,557.11,3133.08,26142223,99.75,0.01,0.01,0.56,557.76,3132.42,26142224,99.93,0,0,0.18,557.03,3133.15,26142225,99.82,0,0,0.35,557,3133.2,26142226,99.9,0,0,0.13,556.92,3133.27,26142227,99.91,0,0,0.16,556.89,3133.32,26142228,99.82,0,0,0.29,557.29,3132.91,26142229,99.88,0,0,0.39,557.3,3132.89,26142230,99.88,0,0,0.3,557.05,3133.16,26142231,99.89,0,0,0.17,557.12,3133.08,26142232,99.91,0,0,0.18,557.15,3133.05,26142233,99.83,0,0,0.31,557.47,3132.73,26142234,99.9,0,0,0.39,557.33,3132.86,26142235,99.09,0,0,0.27,557.32,3132.89,26142236,99.89,0,0,0.13,557.28,3132.92,26142237,99.91,0,0,0.17,557.32,3132.87,26142238,99.91,0,0,0.2,557.39,3132.8,26142239,99.75,0,0,0.57,557.51,3132.68,26142240,99.74,0,0,0.27,556.2,3134.01,26142241,99.9,0,0,0.14,556.08,3134.12,26142242,99.91,0,0,0.18,556.04,3134.15,26142243,99.93,0,0,0.14,556.08,3134.12,26142244,99.79,0,0,0.57,557.4,3132.78,26142245,99.83,0,0,0.29,556.9,3133.31,26142246,99.94,0,0,0.13,556.85,3133.35,26142247,99.92,0,0,0.14,556.81,3133.38,26142248,99.93,0,0,0.16,556.77,3133.42,26142249,99.71,0,0,0.6,557.53,3132.65,26142250,99.84,0,0,0.41,556.72,3133.47,26142251,99.91,0,0,0.2,556.88,3133.31,26142252,99.91,0,0,0.14,556.84,3133.35,26142253,99.92,0,0,0.14,556.8,3133.38,26142254,99.78,0,0,0.58,557.49,3132.7,26142255,99.88,0,0,0.27,557.26,3132.95,26142256,99.91,0,0,0.14,557.29,3132.91,26142257,99.89,0,0,0.21,557.37,3132.84,26142258,99.93,0,0,0.14,557.33,3132.87,26142259,99.76,0,0,0.41,558.07,3132.12,26142260,99.89,0,0,0.38,557.29,3132.92,26142261,99.91,0,0,0.16,557.25,3132.96,26142262,99.92,0,0,0.15,557.27,3132.94,26142263,99.93,0,0,0.16,557.41,3132.79,26142264,99.78,0,0,0.4,557.74,3132.45,26142265,99.86,0,0,0.39,557.13,3133.08,26142266,99.95,0,0,0.17,557.08,3133.12,26142267,99.92,0,0,0.14,557.05,3133.15,26142268,99.92,0,0,0.16,556.59,3133.6,26142269,94.53,6.12,0.03,70.25,563.69,3125.3,26142270,99.67,0,0,194.71,559.21,3124.86,26142271,99.93,0,0,0.22,559.17,3124.9,26142272,99.9,0,0,0.16,559.2,3124.86,26142273,99.91,0,0,0.17,559.27,3124.79,26142274,99.9,0,0,0.17,558.68,3125.38,26142275,98.24,0,0,0.66,556.27,3127.85,26142276,99.93,0,0,0.16,555.57,3128.54,26142277,99.93,0,0,0.13,555.54,3128.57,26142278,99.94,0,0,0.16,555.5,3128.6,26142279,99.79,0,0,0.29,556.86,3127.25,26142280,99.68,0,0,0.72,557.65,3126.5,26142281,99.92,0,0,0.14,556.86,3127.28,26142282,99.95,0,0,0.16,556.82,3127.31,26142283,99.89,0.01,0.01,0.14,556.79,3127.35,26142284,99.93,0,0,0.15,556.72,3127.44,26142285,99.67,0,0,0.71,557.2,3126.99,26142286,99.92,0,0,0.13,556.83,3127.36,26142287,99.93,0,0,0.17,556.79,3127.4,26142288,99.93,0,0,0.17,556.75,3127.44,26142289,99.93,0,0,0.16,556.71,3127.47,26142290,99.71,0,0,0.66,556.72,3127.49,26142291,99.93,0,0,0.15,556.85,3127.35,26142292,99.93,0,0,0.17,556.82,3127.37,26142293,99.93,0,0,0.14,556.78,3127.41,26142294,99.93,0,0,0.16,556.75,3127.44,26142295,96.44,0.02,0.01,77.92,568.66,3116.38,26142296,99.95,0,0,0.39,559.09,3125.21,26142297,99.88,0,0,0.14,559.05,3125.25,26142298,99.9,0,0,0.14,559.02,3125.28,26142299,99.92,0,0,0.15,558.98,3125.32,26142300,99.64,0,0,0.79,558.91,3125.41,26142301,99.9,0,0,0.14,556.96,3127.39,26142302,99.94,0,0,0.14,556.92,3127.42,26142303,99.93,0,0,0.14,556.88,3127.45,26142304,99.93,0,0,0.14,556.85,3127.49,26142305,99.68,0,0,0.52,556.54,3127.81,26142306,99.91,0,0,0.34,556.93,3127.43,26142307,99.9,0,0,0.16,556.95,3127.41,26142308,99.93,0,0,0.2,556.9,3127.45,26142309,99.77,0,0,0.41,556.66,3127.66,26142310,99.71,0,0,0.51,555.9,3128.44,26142311,99.93,0,0,0.36,556.57,3127.76,26142312,99.91,0,0,0.16,556.64,3127.69,26142313,99.91,0,0,0.14,556.68,3127.65,26142314,99.93,0,0,0.16,556.65,3127.68,26142315,99.83,0,0,0.27,556.76,3127.59,26142316,99.76,0,0,0.55,557.47,3126.87,26142317,99.91,0,0,0.19,556.88,3127.45,26142318,99.91,0,0,0.14,556.97,3127.36,26142319,99.92,0,0,0.18,556.94,3127.39,26142320,99.83,0,0,0.27,556.92,3127.42,26142321,99.72,0,0,0.54,557.05,3127.29,26142322,99.93,0,0,0.16,556.61,3127.72,26142323,99.94,0,0,0.14,556.58,3127.75,26142324,99.92,0,0,0.15,556.7,3127.63,26142325,99.82,0,0,0.29,556.94,3127.4,26142326,99.76,0,0,0.56,557.26,3127.07,26142327,99.93,0,0,0.16,556.88,3127.45,26142328,99.94,0,0,0.15,556.84,3127.49,26142329,99.92,0,0,0.14,556.87,3127.45,26142330,99.88,0,0,0.37,556.98,3127.36,26142331,99.8,0,0,0.56,557.29,3127.04,26142332,99.9,0,0,0.21,556.9,3127.42,26142333,99.93,0,0,0.18,556.87,3127.45,26142334,99.93,0,0,0.17,556.83,3127.49,26142335,99.09,0,0,0.34,556.64,3127.69,26142336,99.76,0,0,0.56,557.38,3126.95,26142337,99.94,0,0,0.14,556.94,3127.39,26142338,99.92,0,0,0.16,556.9,3127.42,26142339,99.8,0,0,0.42,557.1,3127.19,26142340,99.84,0,0,0.27,556.6,3127.71,26142341,99.75,0,0,0.41,556.8,3127.51,26142342,99.9,0,0,0.27,556.22,3128.08,26142343,99.92,0.01,0.01,0.17,556.18,3128.12,26142344,99.94,0,0,0.14,556.14,3128.15,26142345,99.83,0,0,0.33,556.47,3127.85,26142346,99.78,0,0,0.59,556.71,3127.6,26142347,99.87,0,0,0.32,556.37,3127.93,26142348,99.93,0,0,0.14,556.43,3127.87,26142349,99.91,0,0,0.15,556.4,3127.9,26142350,99.84,0,0,0.28,556.39,3127.93,26142351,99.81,0,0,0.31,556.76,3127.55,26142352,99.91,0,0,0.37,557.05,3127.25,26142353,99.9,0,0,0.15,557.1,3127.2,26142354,99.89,0,0,0.16,557.17,3127.13,26142355,99.86,0,0,0.27,557.16,3127.16,26142356,99.9,0,0,0.16,557.12,3127.21,26142357,99.79,0,0,0.55,557.43,3126.89,26142358,99.93,0,0,0.14,557.05,3127.27,26142359,99.93,0,0,0.15,557.11,3127.2,26142360,99.8,0,0,0.28,556.01,3128.32,26142361,99.88,0,0,0.14,555.94,3128.38,26142362,99.76,0,0,0.58,556.6,3127.72,26142363,99.94,0,0,0.16,555.87,3128.45,26142364,99.9,0.02,0.02,0.15,555.84,3128.47,26142365,99.76,0,0,0.3,557.42,3126.91,26142366,99.9,0,0,0.16,557.46,3126.87,26142367,99.78,0,0,0.47,557.97,3126.36,26142368,99.9,0,0,0.21,557.38,3126.94,26142369,99.78,0,0,0.29,556.87,3127.43,26142370,99.8,0,0,0.28,556.85,3127.47,26142371,99.92,0,0,0.16,556.88,3127.43,26142372,99.8,0,0,0.58,557.3,3127.01,26142373,99.93,0,0,0.14,556.67,3127.63,26142374,99.93,0,0,0.17,556.63,3127.66,26142375,99.87,0,0,0.34,557.1,3127.21,26142376,99.91,0,0,0.18,557.07,3127.23,26142377,99.77,0,0,0.47,557.47,3126.83,26142378,99.93,0,0,0.28,557.19,3127.11,26142379,99.92,0,0,0.14,557.15,3127.14,26142380,99.82,0,0,0.31,557.14,3127.17,26142381,99.9,0,0,0.14,557.1,3127.21,26142382,99.8,0,0,0.41,557.42,3126.88,26142383,99.9,0,0,0.29,557.09,3127.2,26142384,99.91,0,0,0.14,557.19,3127.1,26142385,99.84,0,0,0.3,557.19,3127.12,26142386,99.91,0,0,0.16,557.15,3127.16,26142387,99.75,0,0,0.37,557.46,3126.84,26142388,99.91,0,0,0.34,557.07,3127.23,26142389,99.91,0,0,0.16,557.04,3127.25,26142390,99.87,0,0,0.3,557.21,3127.1,26142391,99.88,0,0,0.13,557.17,3127.14,26142392,99.9,0,0,0.18,557.14,3127.17,26142393,99.78,0,0,0.53,557.61,3126.69,26142394,99.91,0,0,0.15,557.06,3127.23,26142395,97.56,0.01,0.03,0.31,556.9,3127.41,26142396,99.91,0,0,0.16,556.89,3127.41,26142397,99.92,0,0,0.14,556.86,3127.44,26142398,99.76,0,0,0.58,557.53,3126.76,26142399,99.73,0,0,0.3,556.87,3127.39,26142400,99.84,0,0,0.27,557.69,3126.6,26142401,99.92,0,0,0.14,557.66,3126.62,26142402,99.92,0,0,0.16,557.63,3126.64,26142403,99.76,0.01,0.01,0.59,557.77,3126.51,26142404,99.92,0,0,0.18,557.3,3126.98,26142405,99.81,0,0,0.38,556.92,3127.39,26142406,99.91,0,0,0.18,556.92,3127.38,26142407,99.93,0,0,0.18,556.92,3127.37,26142408,99.73,0,0,0.59,557.85,3126.44,26142409,99.91,0,0,0.18,557.33,3126.95,26142410,99.8,0,0,0.32,557.36,3126.94,26142411,99.9,0,0,0.18,557.3,3127,26142412,99.92,0,0,0.18,557.43,3126.86,26142413,99.78,0,0,0.57,557.75,3126.54,26142414,99.93,0,0,0.18,557.36,3126.92,26142415,99.8,0,0,0.3,557.34,3126.96,26142416,99.26,0,0,0.18,557.31,3127.01,26142417,99.95,0,0,0.18,557.35,3126.96,26142418,99.76,0,0,0.57,557.77,3126.54,26142419,99.93,0,0,0.18,557.01,3127.3,26142420,90.35,0,0,61.35,578.33,3090.49,26142421,99.9,0,0,31.91,559.13,3116.78,26142422,99.93,0,0,0.21,559.08,3116.83,26142423,99.8,0,0,0.52,559.49,3116.41,26142424,99.92,0.01,0.01,0.21,559.19,3116.71,26142425,99.86,0,0,0.43,558.07,3117.99,26142426,99.93,0,0,0.14,556.49,3119.78,26142427,99.93,0,0,0.16,556.46,3119.8,26142428,99.8,0,0,0.3,556.89,3119.36,26142429,99.78,0,0,0.55,556.55,3119.69,26142430,99.87,0,0,0.28,556.76,3119.5,26142431,99.91,0,0,0.17,556.52,3119.74,26142432,99.91,0,0,0.15,556.49,3119.77,26142433,99.91,0,0,0.14,556.45,3119.8,26142434,99.78,0,0,0.54,556.98,3119.27,26142435,99.82,0,0,0.3,556.76,3119.51,26142436,99.92,0,0,0.15,556.83,3119.43,26142437,99.88,0,0,0.19,556.56,3119.7,26142438,99.9,0,0,0.15,556.52,3119.73,26142439,99.75,0.01,0.01,0.62,556.91,3119.34,26142440,99.81,0,0,0.28,556.57,3119.69,26142441,99.93,0,0,0.14,556.52,3119.73,26142442,99.88,0,0,0.16,556.48,3119.77,26142443,99.88,0,0,0.15,556.45,3119.8,26142444,99.77,0,0,0.54,557.12,3119.12,26142445,98.58,0,0,15.59,557.71,3118.86,26142446,99.88,0,0,0.2,555.68,3120.44,26142447,99.91,0,0,0.16,555.64,3120.47,26142448,99.92,0,0,0.14,555.61,3120.49,26142449,99.71,0,0,0.57,556.42,3119.68,26142450,99.85,0,0,0.29,556.79,3119.33,26142451,99.93,0,0,0.17,556.9,3119.21,26142452,99.9,0,0,0.18,556.7,3119.41,26142453,99.87,0,0,0.15,556.62,3119.49,26142454,99.77,0,0,0.56,557.05,3119.05,26142455,99.77,0,0,0.28,556.09,3120.03,26142456,99.91,0,0,0.19,556.11,3120.01,26142457,99.94,0,0,0.14,556.17,3119.94,26142458,99.92,0,0,0.15,556.15,3119.96,26142459,99.6,0,0,0.68,557.51,3118.57,26142460,99.77,0,0,0.37,557.12,3118.97,26142461,99.9,0,0,0.18,557.04,3119.05,26142462,99.89,0,0,0.16,557.06,3119.02,26142463,99.91,0.01,0.01,0.17,557.14,3118.94,26142464,99.74,0,0,0.43,557.4,3118.67,26142465,99.76,0,0,0.47,555.53,3120.57,26142466,99.9,0,0,0.18,555.32,3120.77,26142467,99.9,0,0,0.23,555.77,3120.31,26142468,99.92,0,0,0.17,555.87,3120.21,26142469,99.78,0,0,0.56,556.36,3119.72,26142470,99.87,0,0,0.36,556.86,3119.24,26142471,99.9,0,0,0.18,556.82,3119.27,26142472,99.91,0,0,0.18,556.79,3119.3,26142473,99.91,0,0,0.16,556.78,3119.3,26142474,99.93,0,0,0.16,556.92,3119.16,26142475,99.57,0,0,0.7,556.22,3119.88,26142476,99.81,0,0,0.17,555.64,3120.46,26142477,99.95,0,0,0.19,555.61,3120.48,26142478,99.9,0,0,0.16,555.56,3120.52,26142479,99.92,0,0,0.17,555.55,3120.53,26142480,99.71,0,0,0.73,557.32,3118.77,26142481,99.89,0,0,0.2,556.89,3119.19,26142482,99.91,0,0,0.2,556.86,3119.23,26142483,99.94,0,0,0.19,556.82,3119.26,26142484,99.91,0,0,0.2,556.79,3119.29,26142485,99.73,0,0,0.77,557.14,3118.95,26142486,99.92,0,0,0.2,556.92,3119.16,26142487,99.92,0,0,0.2,556.88,3119.19,26142488,99.91,0,0,0.2,556.85,3119.23,26142489,99.84,0,0,0.36,557.05,3119,26142490,99.72,0,0,0.75,557.43,3118.63,26142491,99.93,0,0,0.2,556.5,3119.56,26142492,99.92,0,0,0.19,556.62,3119.44,26142493,99.94,0,0,0.2,556.62,3119.43,26142494,99.89,0,0,0.2,556.59,3119.48,26142495,99.7,0,0,0.73,556.78,3119.32,26142496,99.91,0,0,0.2,556.79,3119.31,26142497,99.89,0,0,0.27,556.75,3119.34,26142498,99.91,0,0,0.2,556.84,3119.25,26142499,99.9,0,0,0.2,556.86,3119.22,26142500,99.66,0,0,0.61,557.29,3118.81,26142501,99.93,0,0,0.31,556.81,3119.28,26142502,99.92,0,0,0.16,556.78,3119.31,26142503,99.89,0,0,0.14,556.8,3119.28,26142504,99.93,0,0,0.14,556.89,3119.2,26142505,99.68,0,0,0.7,557.4,3118.7,26142506,99.88,0,0,0.18,556.83,3119.26,26142507,99.91,0,0,0.17,556.79,3119.3,26142508,99.9,0,0,0.17,556.76,3119.33,26142509,99.88,0,0,0.14,556.78,3119.3,26142510,99.65,0,0,0.64,556.65,3119.45,26142511,99.87,0,0,0.28,556.86,3119.23,26142512,99.91,0,0,0.17,556.83,3119.26,26142513,99.89,0,0,0.21,556.79,3119.29,26142514,99.89,0,0,0.18,556.75,3119.32,26142515,99.71,0,0,0.56,557.4,3118.69,26142516,99.88,0,0,0.27,557.15,3118.94,26142517,97.81,0,0,0.16,557.12,3118.97,26142518,99.88,0,0,0.14,557.08,3119,26142519,99.83,0,0,0.3,557.05,3119.01,26142520,99.81,0,0,0.29,557.28,3118.8,26142521,99.69,0,0,0.57,557.21,3118.86,26142522,99.88,0,0,0.15,556.9,3119.16,26142523,99.87,0.01,0.01,0.13,556.87,3119.2,26142524,99.88,0,0,0.14,556.82,3119.24,26142525,99.79,0,0,0.34,556.84,3119.24,26142526,99.75,0,0,0.61,557.44,3118.63,26142527,99.82,0,0,0.16,557.07,3119,26142528,99.85,0,0,0.16,557.13,3118.93,26142529,99.87,0,0,0.17,557.09,3118.96,26142530,99.78,0,0,0.29,557.07,3119,26142531,99.72,0,0,0.59,557.54,3118.53,26142532,99.84,0,0,0.17,557.26,3118.81,26142533,99.9,0,0,0.16,557.3,3118.76,26142534,99.88,0,0,0.16,557.37,3118.68,26142535,99.77,0,0,0.32,557.12,3118.95,26142536,99.75,0.01,0.01,0.57,557.53,3118.54,26142537,99.86,0,0,0.16,557.26,3118.81,26142538,99.86,0,0,0.15,557.3,3118.76,26142539,99.85,0,0,0.15,557.38,3118.68,26142540,99.75,0,0,0.3,556.24,3119.84,26142541,99.63,0,0,0.39,556.86,3119.21,26142542,99.82,0,0,0.31,557.04,3119.02,26142543,99.84,0,0,0.14,557.01,3119.05,26142544,99.87,0,0,0.16,557.04,3119.01,26142545,99.78,0,0,0.33,557.14,3118.93,26142546,99.71,0,0,0.43,557.44,3118.62,26142547,99.85,0,0,0.28,556.82,3119.24,26142548,99.83,0,0,0.16,556.78,3119.27,26142549,99.69,0,0,0.3,557.22,3118.8,26142550,99.77,0,0,0.34,557.05,3118.99,26142551,99.72,0,0,0.38,557.51,3118.52,26142552,99.84,0,0,0.35,557.58,3118.45,26142553,99.85,0,0,0.18,557.54,3118.48,26142554,99.86,0,0,0.15,557.5,3118.54,26142555,99.77,0,0,0.31,564.97,3111.08,26142556,99.84,0,0,0.14,565.15,3110.9,26142557,99.69,0,0,0.59,565.61,3110.44,26142558,99.83,0,0,0.14,564.96,3111.08,26142559,99.84,0,0,0.16,564.92,3111.12,26142560,99.8,0,0,0.29,564.91,3111.15,26142561,99.85,0,0,0.14,564.87,3111.18,26142562,99.69,0,0,0.54,565.5,3110.55,26142563,99.84,0,0,0.14,565.22,3110.82,26142564,99.85,0,0,0.14,565.18,3110.86,26142565,99.81,0,0,0.29,565.41,3110.64,26142566,99.83,0,0,0.16,565.37,3110.68,26142567,99.73,0,0,0.54,565.76,3110.28,26142568,99.83,0,0,0.14,565.48,3110.56,26142569,99.84,0,0,0.14,565.44,3110.59,26142570,99.72,0,0,0.29,565.19,3110.87,26142571,99.83,0,0,0.16,565.15,3110.9,26142572,99.71,0,0,0.5,565.6,3110.44,26142573,99.82,0,0,0.21,565.46,3110.58,26142574,99.83,0,0,0.14,565.12,3110.91,26142575,99.75,0,0,0.3,564.71,3111.34,26142576,99.86,0,0,0.14,564.67,3111.38,26142577,99.38,0,0,0.43,564.97,3111.07,26142578,99.83,0,0,0.32,564.64,3111.4,26142579,99.76,0,0,0.3,564.49,3111.52,26142580,99.76,0,0,0.29,563.25,3112.78,26142581,99.83,0,0,0.16,563.2,3112.82,26142582,99.7,0,0,0.53,563.98,3112.04,26142583,99.8,0.01,0.01,0.2,564.36,3111.66,26142584,99.83,0,0,0.15,564.39,3111.62,26142585,99.7,0,0,0.38,564.72,3111.3,26142586,99.81,0,0,0.14,564.45,3111.57,26142587,99.69,0,0,0.5,564.82,3111.2,26142588,99.85,0,0,0.27,564.63,3111.38,26142589,99.84,0,0,0.14,564.59,3111.42,26142590,99.76,0,0,0.29,564.64,3111.38,26142591,99.81,0,0,0.16,564.73,3111.29,26142592,99.75,0,0,0.3,565.22,3110.8,26142593,99.8,0,0,0.41,564.42,3111.59,26142594,99.83,0,0,0.16,564.38,3111.63,26142595,99.74,0,0,0.32,564.13,3111.89,26142596,99.85,0,0,0.14,564.09,3111.93,26142597,99.83,0,0,0.13,564.2,3111.82,26142598,99.73,0,0,0.57,564.79,3111.22,26142599,99.83,0,0,0.16,564.44,3111.57,26142600,99.71,0,0,0.3,564.43,3111.6,26142601,99.85,0,0,0.16,564.39,3111.63,26142602,99.82,0,0,0.16,564.36,3111.67,26142603,99.7,0,0,0.54,564.75,3111.28,26142604,99.84,0,0,0.14,564.48,3111.54,26142605,99.82,0,0,0.29,564.47,3111.57,26142606,99.81,0,0,0.16,564.43,3111.61,26142607,99.81,0,0,0.14,564.4,3111.64,26142608,99.68,0,0,0.55,564.91,3111.12,26142609,99.6,0.01,0.07,0.32,564.37,3111.63,26142610,99.74,0,0,0.31,564.63,3111.38,26142611,99.84,0,0,0.16,564.65,3111.36,26142612,99.85,0,0,0.14,564.75,3111.26,26142613,99.7,0,0,0.51,564.57,3111.43,26142614,99.85,0,0,0.2,563.7,3112.33,26142615,99.77,0,0,0.28,563.93,3112.12,26142616,99.83,0,0,0.14,563.9,3112.15,26142617,99.82,0.01,0.01,0.21,563.88,3112.16,26142618,99.7,0.01,0.01,0.51,564.79,3111.25,26142619,99.84,0,0,0.2,564.88,3111.16,26142620,99.72,0,0,0.29,563.91,3112.15,26142621,99.85,0,0,0.14,563.92,3112.12,26142622,99.85,0,0,0.15,564,3112.05,26142623,99.7,0,0,0.54,564.94,3111.1,26142624,99.85,0,0,0.15,564.67,3111.37,26142625,99.79,0,0,0.3,565.14,3110.92,26142626,99.83,0,0,0.17,565.11,3110.94,26142627,99.85,0,0,0.14,565.14,3110.91,26142628,99.72,0,0,0.52,565.49,3110.55,26142629,99.82,0,0,0.21,564.93,3111.1,26142630,99.75,0,0,0.29,564.21,3111.84,26142631,99.83,0,0,0.16,564.13,3111.92,26142632,99.85,0,0,0.14,564.09,3111.95,26142633,99.69,0,0,0.43,564.67,3111.37,26142634,99.83,0,0,0.29,564.98,3111.05,26142635,99.72,0,0,0.31,563.77,3112.27,26142636,99.84,0,0,0.14,563.7,3112.34,26142637,99.8,0,0,0.16,563.67,3112.37,26142638,99.84,0,0,0.14,563.6,3112.43,26142639,99.59,0,0,0.69,564.36,3111.66,26142640,99.72,0,0,0.29,564.94,3111.1,26142641,99.83,0,0,0.16,564.93,3111.1,26142642,99.82,0,0,0.14,564.9,3111.13,26142643,99.82,0.01,0.01,0.15,564.86,3111.17,26142644,99.73,0,0,0.54,565.06,3110.97,26142645,99.78,0,0,0.33,564.43,3111.61,26142646,99.81,0,0,0.16,564.22,3111.81,26142647,99.81,0,0,0.14,564.19,3111.85,26142648,99.84,0,0,0.15,564.15,3111.88,26142649,99.68,0,0,0.52,564.76,3111.26,26142650,99.77,0,0,0.29,564.1,3111.93,26142651,99.8,0,0,0.15,564.25,3111.78,26142652,99.75,0,0,0.16,564.21,3111.81,26142653,99.8,0,0,0.15,564.18,3111.84,26142654,99.72,0,0,0.5,564.72,3111.29,26142655,99.76,0,0,0.35,564.87,3111.17,26142656,99.86,0,0,0.16,564.83,3111.2,26142657,99.83,0,0,0.14,564.93,3111.1,26142658,99.73,0,0,0.15,564.95,3111.08,26142659,94.95,0.26,0.01,78.3,578.02,3097.82,26142660,99.52,0,0,179.93,566.2,3109.92,26142661,99.8,0,0,0.13,566.13,3109.98,26142662,99.83,0,0,0.17,566.1,3110.01,26142663,99.82,0,0,0.15,566.06,3110.04,26142664,99.67,0,0,0.45,566.36,3109.75,26142665,99.71,0,0,0.44,564.01,3112.14,26142666,99.84,0,0,0.16,563.96,3112.19,26142667,99.86,0,0,0.14,563.93,3112.22,26142668,99.8,0,0,0.14,563.9,3112.25,26142669,99.61,0,0,0.68,565.54,3110.58,26142670,99.68,0,0,0.36,564.87,3111.26,26142671,99.85,0,0,0.14,564.97,3111.16,26142672,99.84,0,0,0.14,564.93,3111.19,26142673,99.84,0,0,0.16,564.89,3111.22,26142674,99.68,0,0,0.41,565.26,3110.87,26142675,99.76,0,0,0.41,565.09,3111.06,26142676,99.8,0,0,0.16,565.17,3110.98,26142677,99.83,0,0,0.19,565.2,3110.95,26142678,99.85,0,0,0.15,565.16,3110.98,26142679,99.83,0,0,0.15,565.12,3111.01,26142680,99.68,0,0,0.67,566.09,3110.06,26142681,99.84,0,0,0.18,565.37,3110.78,26142682,99.83,0,0,0.14,565.46,3110.68,26142683,99.83,0,0,0.14,565.41,3110.73,26142684,99.86,0,0,0.15,565.37,3110.77,26142685,99.65,0,0,0.7,565.23,3110.93,26142686,99.85,0,0,0.13,564.83,3111.33,26142687,99.83,0,0,0.16,564.8,3111.36,26142688,99.85,0,0,0.14,564.95,3111.21,26142689,99.82,0,0,0.16,564.95,3111.2,26142690,99.65,0,0,0.7,565.59,3110.57,26142691,99.81,0,0,0.16,565.15,3111.01,26142692,99.86,0,0,0.14,565.12,3111.04,26142693,99.84,0,0,0.15,565.08,3111.08,26142694,99.83,0,0,0.14,565.19,3110.96,26142695,99.56,0,0,0.73,564.99,3111.18,26142696,99.83,0,0,0.17,564.69,3111.47,26142697,99.84,0,0,0.14,564.66,3111.5,26142698,99.83,0,0,0.15,564.61,3111.54,26142699,99.75,0,0,0.36,564.83,3111.3,26142700,99.63,0,0,0.54,565.82,3110.33,26142701,99.89,0,0,0.29,565.2,3110.94,26142702,99.89,0,0,0.16,565.17,3110.97,26142703,99.85,0.01,0.01,0.14,565.13,3111.01,26142704,99.9,0,0,0.16,565.1,3111.05,26142705,99.63,0,0,0.66,565.02,3111.15,26142706,99.92,0,0,0.19,565.23,3110.93,26142707,99.91,0,0,0.15,565.2,3110.97,26142708,99.88,0,0,0.16,565.16,3111,26142709,99.93,0,0,0.14,565.13,3111.03,26142710,99.68,0,0,0.5,564.69,3111.47,26142711,99.9,0,0,0.38,564.85,3111.31,26142712,99.94,0,0,0.16,564.98,3111.17,26142713,99.93,0,0,0.14,564.95,3111.2,26142714,99.91,0,0,0.14,564.91,3111.24,26142715,99.82,0,0,0.3,565.37,3110.79,26142716,99.78,0,0,0.55,565.71,3110.45,26142717,99.93,0,0,0.14,565.32,3110.84,26142718,99.9,0,0,0.16,565.41,3110.74,26142719,99.94,0,0,0.14,565.43,3110.71,26142720,99.84,0,0,0.29,565.41,3110.75,26142721,99.72,0,0,0.56,565.67,3110.49,26142722,99.92,0,0,0.14,565.35,3110.81,26142723,99.93,0,0,0.15,565.31,3110.84,26142724,99.93,0,0,0.15,565.39,3110.75,26142725,99.88,0,0,0.3,565.21,3110.95,26142726,99.81,0,0,0.57,565.54,3110.62,26142727,99.89,0,0,0.14,565.18,3110.98,26142728,99.95,0,0,0.16,565.15,3111,26142729,99.88,0,0,0.31,564.53,3111.6,26142730,99.87,0,0,0.29,564.41,3111.74,26142731,99.73,0,0,0.51,565.12,3111.02,26142732,99.94,0,0,0.2,564.38,3111.76,26142733,99.94,0,0,0.16,564.36,3111.77,26142734,99.96,0,0,0.14,564.36,3111.77,26142735,99.81,0,0,0.3,564.35,3111.8,26142736,99.81,0,0,0.57,564.81,3111.33,26142737,99.87,0,0,0.18,564.58,3111.56,26142738,99.92,0,0,0.14,564.55,3111.58,26142739,99.9,0,0,0.16,564.54,3111.59,26142740,99.86,0,0,0.28,564.1,3112.04,26142741,99.78,0,0,0.49,564.72,3111.42,26142742,99.93,0,0,0.21,564.74,3111.4,26142743,99.92,0,0,0.14,564.73,3111.4,26142744,99.91,0,0,0.16,564.73,3111.4,26142745,99.84,0,0,0.32,563.78,3112.36,26142746,99.79,0,0,0.55,564.2,3111.94,26142747,99.94,0,0,0.18,564.22,3111.92,26142748,99.92,0,0,0.16,564.21,3111.92,26142749,99.9,0,0,0.14,564.21,3111.92,26142750,99.78,0,0,0.31,563.79,3112.35,26142751,99.76,0,0,0.33,564.48,3111.67,26142752,99.9,0,0,0.38,564.67,3111.46,26142753,99.93,0,0,0.14,564.67,3111.46,26142754,99.93,0,0,0.17,564.65,3111.47,26142755,99.83,0,0,0.38,564.64,3111.49,26142756,99.93,0,0,0.13,564.64,3111.49,26142757,99.75,0,0,0.61,565.27,3110.86,26142758,99.9,0,0,0.18,564.63,3111.49,26142759,99.88,0,0,0.31,564.88,3111.2,26142760,99.81,0,0,0.3,564.17,3111.92,26142761,99.9,0,0,0.16,564.12,3111.97,26142762,99.82,0,0,0.55,564.64,3111.45,26142763,99.93,0,0,0.14,564.15,3111.94,26142764,99.93,0,0,0.16,564.14,3111.94,26142765,99.85,0,0,0.32,564.38,3111.72,26142766,99.94,0,0,0.17,564.12,3111.97,26142767,99.79,0,0,0.59,564.88,3111.21,26142768,99.91,0,0,0.15,564.85,3111.23,26142769,99.93,0,0,0.14,564.85,3111.23,26142770,99.88,0,0,0.3,565.02,3111.07,26142771,99.95,0,0,0.14,565.02,3111.07,26142772,99.81,0,0,0.4,565.37,3110.72,26142773,99.92,0,0,0.3,565.01,3111.07,26142774,99.92,0,0,0.15,565,3111.08,26142775,99.85,0,0,0.29,564.99,3111.1,26142776,99.94,0,0,0.16,564.99,3111.11,26142777,99.8,0,0,0.59,565.38,3110.7,26142778,99.91,0,0,0.14,565.22,3110.86,26142779,99.91,0,0,0.14,565.19,3110.88,26142780,98.97,0,0,0.29,564.73,3111.37,26142781,99.86,0,0,0.14,564.71,3111.38,26142782,99.76,0,0,0.44,565.11,3110.98,26142783,99.93,0,0,0.29,564.95,3111.15,26142784,99.92,0,0,0.14,564.95,3111.15,26142785,99.83,0,0,0.31,564.94,3111.17,26142786,99.92,0,0,0.14,564.93,3111.18,26142787,99.76,0,0,0.32,565.27,3110.84,26142788,99.9,0,0,0.38,564.67,3111.43,26142789,99.81,0,0,0.41,565.13,3110.95,26142790,99.78,0,0,0.29,565.18,3110.91,26142791,99.89,0,0,0.16,565.15,3110.95,26142792,99.93,0,0,0.14,565.14,3110.95,26142793,99.8,0,0,0.55,565.06,3111.02,26142794,99.95,0,0,0.15,564.61,3111.46,26142795,99.83,0,0,0.3,564.39,3111.7,26142796,99.94,0,0,0.14,564.38,3111.71,26142797,99.93,0,0,0.2,564.37,3111.71,26142798,99.8,0,0,0.63,564.89,3111.19,26142799,99.89,0,0,0.14,564.58,3111.5,26142800,99.78,0,0,0.32,564.61,3111.48,26142801,99.94,0,0,0.16,564.78,3111.31,26142802,99.94,0,0,0.14,564.77,3111.31,26142803,99.78,0,0,0.57,565.79,3110.29,26142804,99.94,0,0,0.14,565.26,3110.82,26142805,99.89,0,0,0.3,565.02,3111.07,26142806,99.95,0,0,0.14,564.99,3111.1,26142807,99.95,0,0,0.14,564.98,3111.1,26142808,99.75,0,0,0.56,565.34,3110.74,26142809,99.95,0,0,0.15,564.95,3111.12,26142810,99.84,0,0,0.3,564.72,3111.37,26142811,99.94,0,0,0.15,564.71,3111.38,26142812,99.92,0,0,0.15,564.71,3111.39,26142813,99.8,0,0,0.55,565.24,3110.86,26142814,99.92,0,0,0.14,565.16,3110.93,26142815,99.9,0,0,0.32,564.94,3111.17,26142816,99.92,0,0,0.19,564.9,3111.21,26142817,99.95,0,0,0.18,564.9,3111.22,26142818,99.76,0,0,0.55,565.3,3110.82,26142819,99.76,0,0,0.31,564.17,3111.93,26142820,99.85,0,0,0.29,564.15,3111.95,26142821,99.9,0,0,0.14,564.13,3111.98,26142822,99.92,0,0,0.16,564.12,3111.98,26142823,99.8,0,0,0.31,564.86,3111.24,26142824,99.92,0,0,0.39,565.26,3110.84,26142825,99.78,0,0,0.5,565.42,3110.68,26142826,99.93,0,0,0.18,565.01,3111.09,26142827,99.92,0,0,0.12,564.98,3111.11,26142828,99.94,0,0,0.16,564.98,3111.11,26142829,99.8,0,0,0.55,565.65,3110.43,26142830,99.86,0,0,0.34,565.51,3110.6,26142831,99.89,0,0,0.18,565.47,3110.63,26142832,99.94,0,0,0.16,565.44,3110.65,26142833,99.91,0,0,0.16,565.44,3110.65,26142834,99.81,0,0,0.54,565.11,3110.97,26142835,99.83,0,0,0.31,564.47,3111.64,26142836,99.95,0,0,0.14,564.44,3111.66,26142837,99.9,0,0,0.15,564.43,3111.67,26142838,99.91,0,0,0.16,564.42,3111.67,26142839,99.76,0,0,0.62,565.27,3110.82,26142840,99.84,0,0,0.3,564.71,3111.4,26142841,99.9,0,0,0.16,564.67,3111.43,26142842,99.95,0,0,0.15,564.65,3111.45,26142843,99.93,0,0,0.14,564.64,3111.45,26142844,99.8,0,0,0.46,565.36,3110.73,26142845,99.85,0,0,0.46,564.42,3111.68,26142846,99.92,0,0,0.15,564.38,3111.72,26142847,99.92,0,0,0.16,564.37,3111.73,26142848,99.92,0,0,0.14,564.36,3111.73,26142849,99.73,0,0,0.66,565.27,3110.8,26142850,99.86,0,0,0.36,565.35,3110.73,26142851,99.9,0,0,0.14,565.32,3110.76,26142852,99.92,0,0,0.15,565.31,3110.76,26142853,99.91,0.01,0.01,0.17,565.39,3110.68,26142854,99.77,0,0,0.57,565.7,3110.37,26142855,99.86,0,0,0.29,565.38,3110.71,26142856,99.93,0,0,0.16,565.36,3110.74,26142857,99.9,0,0,0.24,554.77,3121.59,26142858,99.93,0,0,0.21,537.91,3138.87,26142859,99.83,0,0,0.29,538.24,3138.53,26142860,99.82,0,0,0.61,537.77,3139.01,26142861,99.94,0,0,0.14,537.4,3139.37,26142862,99.92,0,0,0.16,537.38,3139.41,26142863,99.93,0,0,0.14,537.38,3139.43,26142864,99.94,0,0,0.14,537.4,3139.4,26142865,99.74,0,0,0.7,538.76,3138.05,26142866,99.93,0,0,0.13,538.3,3138.51,26142867,99.94,0,0,0.14,538.28,3138.54,26142868,99.95,0,0,0.16,538.27,3138.54,26142869,99.53,0,0,0.41,538.73,3138.09,26142870,99.66,0,0,0.68,538.91,3137.92,26142871,99.93,0,0,0.16,538.5,3138.34,26142872,99.92,0,0,0.14,538.49,3138.34,26142873,99.94,0,0,0.15,538.49,3138.34,26142874,99.95,0,0,0.14,538.49,3138.35,26142875,99.66,0,0,0.74,537.54,3139.32,26142876,99.94,0,0,0.16,536.74,3140.11,26142877,99.95,0,0,0.15,536.74,3140.11,26142878,99.9,0,0,0.17,536.74,3140.11,26142879,99.86,0,0,0.36,538.4,3138.44,26142880,99.77,0,0,0.85,538.95,3137.9,26142881,99.93,0,0,0.15,538.43,3138.41,26142882,99.93,0,0,0.14,538.42,3138.41,26142883,99.93,0,0,0.14,538.16,3138.68,26142884,99.91,0,0,0.15,537.65,3139.18,26142885,99.71,0,0,0.72,537.97,3138.88,26142886,99.92,0,0,0.17,537.38,3139.46,26142887,99.94,0,0,0.14,537.37,3139.46,26142888,99.92,0,0,0.15,537.37,3139.46,26142889,99.92,0,0,0.14,537.47,3139.36,26142890,99.63,0,0,0.57,537.36,3139.48,26142891,99.95,0,0,0.28,537.29,3139.55,26142892,99.95,0,0,0.16,537.28,3139.55,26142893,99.92,0,0,0.14,537.28,3139.55,26142894,99.93,0,0,0.18,537.24,3139.58,26142895,99.78,0,0,0.31,537.26,3139.58,26142896,99.77,0,0,0.53,538.09,3138.74,26142897,99.92,0,0,0.15,537.74,3139.09,26142898,99.94,0,0,0.17,537.72,3139.11,26142899,99.9,0,0,0.14,537.7,3139.12,26142900,99.77,0,0,0.3,537.32,3139.51,26142901,99.73,0,0,0.55,538.06,3138.77,26142902,99.94,0,0,0.14,537.68,3139.15,26142903,99.92,0,0,0.16,537.67,3139.15,26142904,99.92,0,0,0.14,537.67,3139.15,26142905,99.83,0,0,0.32,537.92,3138.91,26142906,99.8,0,0,0.54,538.47,3138.36,26142907,99.92,0,0,0.16,538.14,3138.69,26142908,99.9,0,0,0.14,538.13,3138.69,26142909,99.8,0,0,0.31,537.89,3138.92,26142910,99.88,0,0,0.38,537.89,3138.94,26142911,99.79,0,0,0.57,538.37,3138.45,26142912,99.93,0.01,0.01,0.16,538.2,3138.61,26142913,99.92,0,0,0.17,538.23,3138.58,26142914,99.93,0,0,0.15,538.01,3138.82,26142915,99.87,0,0,0.31,537.97,3138.88,26142916,99.81,0,0,0.61,538.55,3138.29,26142917,99.94,0,0,0.2,537.7,3139.14,26142918,99.94,0,0,0.14,537.67,3139.17,26142919,99.93,0,0,0.18,537.66,3139.17,26142920,99.86,0,0,0.34,537.44,3139.41,26142921,99.78,0,0,0.55,537.99,3138.86,26142922,99.91,0,0,0.16,538.13,3138.71,26142923,99.93,0,0,0.15,538.13,3138.71,26142924,99.91,0,0,0.18,538.12,3138.71,26142925,99.88,0,0,0.35,537.9,3138.95,26142926,99.82,0,0,0.44,538.34,3138.51,26142927,99.94,0,0,0.23,538.04,3138.8,26142928,99.94,0,0,0.17,538.04,3138.8,26142929,99.94,0,0,0.18,538.03,3138.8,26142930,99.85,0,0,0.35,538.02,3138.83,26142931,99.8,0,0,0.45,538.4,3138.44,26142932,99.94,0,0,0.23,538.25,3138.58,26142933,99.96,0,0,0.2,538.24,3138.58,26142934,99.93,0,0,0.15,538.24,3138.58,26142935,99.82,0,0,0.32,538,3138.84,26142936,99.95,0,0,0.14,537.98,3138.86,26142937,99.77,0,0,0.55,538.86,3137.98,26142938,99.94,0,0,0.15,538.21,3138.61,26142939,99.73,0,0,0.3,537.98,3138.82,26142940,99.83,0,0,0.29,536.74,3140.08,26142941,99.9,0,0,0.16,536.71,3140.11,26142942,99.8,0,0,0.57,538.44,3138.36,26142943,99.93,0,0,0.19,538.17,3138.63,26142944,99.93,0,0,0.18,538.17,3138.63,26142945,99.79,0,0,0.34,538.16,3138.66,26142946,99.95,0,0,0.14,538.15,3138.66,26142947,99.76,0,0,0.59,538.63,3138.17,26142948,99.89,0,0,0.14,538.14,3138.66,26142949,99.93,0,0,0.15,538.13,3138.66,26142950,99.82,0,0,0.28,538.15,3138.66,26142951,99.92,0,0,0.15,538.13,3138.68,26142952,99.76,0,0,0.56,538.55,3138.26,26142953,99.91,0,0,0.16,538.1,3138.7,26142954,99.91,0,0,0.15,538.08,3138.71,26142955,99.87,0,0,0.33,538.52,3138.29,26142956,99.94,0,0,0.19,538.5,3138.3,26142957,99.83,0,0,0.52,538.76,3138.03,26142958,99.88,0,0,0.19,538.22,3138.57,26142959,99.9,0,0,0.18,538.22,3138.57,26142960,99.83,0,0,0.31,538.24,3138.57,26142961,99.94,0,0,0.14,538.21,3138.59,26142962,99.76,0,0,0.39,538.52,3138.27,26142963,99.96,0,0,0.29,537.94,3138.85,26142964,99.93,0,0,0.14,537.91,3138.88,26142965,99.91,0,0,0.36,538.41,3138.39,26142966,99.94,0,0,0.18,538.41,3138.38,26142967,99.81,0,0,0.42,538.6,3138.18,26142968,99.94,0,0,0.35,537.14,3139.64,26142969,99.81,0,0,0.34,538.33,3138.42,26142970,99.86,0,0,0.34,538.38,3138.4,26142971,99.95,0,0,0.14,538.34,3138.42,26142972,99.91,0,0,0.17,538.33,3138.44,26142973,99.8,0,0,0.55,539.1,3137.67,26142974,99.93,0,0,0.14,538.32,3138.45,26142975,99.87,0,0,0.31,537.85,3138.94,26142976,99.93,0,0,0.14,537.84,3138.95,26142977,99.93,0,0,0.21,537.8,3138.98,26142978,99.79,0,0,0.59,538.04,3138.74,26142979,99.95,0,0,0.15,537.37,3139.4,26142980,99.82,0,0,0.3,538.24,3138.55,26142981,99.95,0,0,0.15,538.24,3138.55,26142982,99.94,0,0,0.16,538.21,3138.57,26142983,99.78,0,0,0.55,538.89,3137.89,26142984,99.94,0,0,0.15,538.44,3138.33,26142985,99.86,0,0,0.31,538.76,3138.03,26142986,99.9,0,0,0.14,538.67,3138.11,26142987,99.93,0,0,0.16,538.67,3138.11,26142988,99.75,0,0,0.5,538.91,3137.87,26142989,99.95,0,0,0.2,538.38,3138.39,26142990,99.82,0,0,0.33,537.45,3139.34,26142991,99.94,0,0,0.14,537.41,3139.38,26142992,99.94,0,0,0.16,537.4,3139.38,26142993,99.81,0,0,0.39,538.18,3138.6,26142994,99.9,0,0,0.29,538.35,3138.42,26142995,99.82,0,0,0.3,538.61,3138.18,26142996,99.89,0,0,0.16,538.61,3138.18,26142997,99.93,0.06,3.94,0.57,538.17,3138.59,26142998,99.8,0,0.04,0.5,538.14,3138.61,26142999,99.74,0,0,0.34,538.03,3138.7,26143000,99.82,0,0,0.3,538,3138.75,26143001,99.89,0,0,0.18,537.98,3138.77,26143002,99.89,0,0,0.17,537.97,3138.77,26143003,99.8,0,0,0.37,538.31,3138.42,26143004,99.94,0,0,0.36,537.94,3138.79,26143005,99.84,0,0,0.39,537.95,3138.8,26143006,99.95,0,0,0.24,537.94,3138.8,26143007,99.91,0,0,0.14,537.92,3138.81,26143008,99.93,0,0,0.16,537.9,3138.83,26143009,99.78,0,0,0.55,538.02,3138.71,26143010,99.85,0,0,0.3,538.16,3138.59,26143011,99.93,0,0,0.16,538.13,3138.61,26143012,99.91,0,0,0.15,538.12,3138.61,26143013,99.96,0,0,0.16,538.12,3138.61,26143014,99.8,0,0,0.73,538.46,3138.28,26143015,99.9,0,0,0.35,537.87,3138.9,26143016,99.95,0,0,0.16,537.85,3138.91,26143017,99.96,0,0,0.16,537.85,3138.91,26143018,99.94,0,0,0.18,537.82,3138.93,26143019,99.78,0,0,0.68,538.3,3138.45,26143020,99.82,0,0,0.3,536.87,3139.9,26143021,99.91,0,0,0.14,536.84,3139.92,26143022,99.75,0,0,0.16,536.83,3139.92,26143023,99.94,0,0,0.14,536.83,3139.92,26143024,95.16,0.29,0.01,78.37,549.25,3127.38,26143025,99.71,0,0,180.06,540.57,3136.19,26143026,99.93,0,0,0.17,540.56,3136.19,26143027,99.93,0,0,0.17,540.55,3136.2,26143028,99.94,0,0,0.14,540.54,3136.2,26143029,99.68,0,0,0.79,539.99,3136.73,26143030,99.79,0,0,0.3,537.85,3138.91,26143031,99.95,0,0,0.14,537.85,3138.91,26143032,99.92,0,0,0.16,537.85,3138.91,26143033,99.89,0,0,0.16,537.84,3138.91,26143034,99.76,0,0,0.58,538.18,3138.57,26143035,99.9,0,0,0.3,537.29,3139.5,26143036,99.95,0,0,0.14,537.08,3139.7,26143037,99.9,0,0,0.21,536.84,3139.94,26143038,99.94,0,0,0.14,536.81,3139.96,26143039,99.81,0,0,0.4,537.15,3139.62,26143040,99.91,0,0,0.43,537.3,3139.49,26143041,99.95,0,0,0.16,537.3,3139.48,26143042,99.92,0,0,0.14,537.3,3139.48,26143043,99.92,0,0,0.14,537.29,3139.48,26143044,99.88,0,0,0.15,537.37,3139.4,26143045,99.67,0.01,0.04,1.32,546.98,3129.53,26143046,99.9,0,0,0.18,546.71,3129.8,26143047,99.95,0,0,0.18,546.68,3129.82,26143048,99.95,0,0,0.18,546.67,3129.83,26143049,99.93,0,0,0.18,546.66,3129.83,26143050,99.68,0,0,0.77,546.49,3130.04,26143051,99.93,0,0,0.18,546.16,3130.37,26143052,99.9,0.01,0.04,0.29,546.88,3129.6,26143053,99.92,0,0,0.18,546.98,3129.48,26143054,99.93,0,0,0.18,546.95,3129.51,26143055,99.73,0,0,0.76,549.32,3127.15,26143056,99.94,0,0,0.18,548.9,3127.57,26143057,99.93,0,0,0.18,548.88,3127.58,26143058,99.95,0,0,0.18,548.86,3127.6,26143059,99.76,0,0,0.33,549.11,3127.33,26143060,99.73,0,0,0.73,549.21,3127.24,26143061,99.95,0,0,0.18,549,3127.45,26143062,99.95,0,0,0.14,548.99,3127.45,26143063,99.96,0,0,0.14,548.99,3127.45,26143064,99.88,0,0,0.17,548.95,3127.5,26143065,99.6,0,0,0.78,549.88,3126.59,26143066,99.81,0,0,0.18,548.94,3127.53,26143067,99.95,0,0,0.18,548.93,3127.53,26143068,99.95,0,0,0.18,548.9,3127.56,26143069,99.84,0,0,0.18,548.89,3127.56,26143070,99.69,0,0,0.57,549.47,3127,26143071,99.85,0,0,0.32,549.12,3127.35,26143072,99.85,0,0,0.17,549.09,3127.38,26143073,99.91,0,0,0.14,549.25,3127.2,26143074,99.84,0,0,0.17,549.26,3127.19,26143075,99.68,0,0,0.58,550.09,3126.37,26143076,99.91,0,0,0.31,549.49,3126.98,26143077,99.85,0,0,0.14,549.46,3127,26143078,99.95,0,0,0.15,549.45,3127.01,26143079,99.91,0,0,0.15,549.44,3127.01,26143080,99.88,0,0,0.29,549.19,3127.31,26143081,99.77,0,0.01,0.6,549.85,3126.65,26143082,99.92,0,0,0.15,549.36,3127.13,26143083,99.72,0,0,0.14,549.41,3127.08,26143084,99.91,0,0,0.15,549.51,3126.98,26143085,99.87,0,0,0.3,549.51,3126.99,26143086,99.8,0,0,0.54,550.01,3126.49,26143087,99.91,0,0,0.16,549.73,3126.76,26143088,99.92,0,0,0.14,549.7,3126.79,26143089,99.83,0,0,0.3,549.21,3127.26,26143090,99.86,0,0,0.32,549.44,3127.04,26143091,99.76,0,0,0.53,549.78,3126.7,26143092,99.87,0,0,0.14,549.4,3127.08,26143093,99.85,0,0,0.16,549.38,3127.09,26143094,99.86,0,0,0.16,549.35,3127.11,26143095,99.76,0,0,0.34,549.42,3127.06,26143096,99.72,0,0,0.54,550,3126.48,26143097,99.86,0,0,0.21,549.49,3126.99,26143098,99.83,0,0,0.14,549.47,3126.99,26143099,99.84,0,0.01,0.16,549.42,3127.04,26143100,99.72,0,0,0.3,549.43,3127.05,26143101,99.73,0,0,0.62,550.18,3126.29,26143102,99.85,0,0,0.19,549.63,3126.84,26143103,99.86,0,0,0.16,549.61,3126.85,26143104,99.86,0,0,0.16,549.59,3126.87,26143105,99.81,0,0.02,0.35,549.42,3127.06,26143106,99.71,0,0,0.59,549.89,3126.58,26143107,99.84,0.01,0.07,0.15,549.42,3127.04,26143108,99.86,0,0,0.19,549.38,3127.08,26143109,99.86,0,0,0.14,549.49,3126.96,26143110,99.75,0,0,0.32,549.72,3126.75,26143111,99.72,0,0,0.38,550.05,3126.42,26143112,99.85,0,0,0.38,549.44,3127.02,26143113,99.86,0,0,0.15,549.41,3127.05,26143114,99.88,0,0,0.14,549.4,3127.05,26143115,99.75,0,0,0.32,549.87,3126.61,26143116,99.7,0,0,0.34,550.19,3126.28,26143117,99.83,0,0,0.4,549.59,3126.87,26143118,99.86,0,0,0.16,549.56,3126.9,26143119,99.74,0,0,0.32,549.71,3126.72,26143120,99.78,0,0,0.33,549.49,3126.96,26143121,99.84,0,0,0.19,549.47,3126.98,26143122,99.71,0,0,0.59,550.02,3126.41,26143123,99.85,0,0,0.16,549.66,3126.76,26143124,99.83,0,0,0.17,549.66,3126.77,26143125,99.78,0,0,0.39,549.44,3127.02,26143126,99.87,0,0,0.14,549.4,3127.05,26143127,99.72,0,0,0.55,550.28,3126.17,26143128,99.83,0,0,0.16,549.61,3126.84,26143129,99.84,0,0,0.16,549.6,3126.84,26143130,99.84,0,0,0.32,549.59,3126.87,26143131,99.84,0,0,0.19,549.58,3126.89,26143132,99.74,0,0,0.54,549.95,3126.51,26143133,99.86,0,0,0.14,549.54,3126.92,26143134,99.81,0,0,0.15,549.7,3126.76,26143135,99.76,0,0,0.32,549.47,3127,26143136,99.85,0,0.01,0.19,549.45,3127.02,26143137,99.73,0,0,0.56,549.86,3126.6,26143138,99.85,0,0,0.14,549.67,3126.79,26143139,99.86,0,0,0.14,549.65,3126.81,26143140,99.74,0,0,0.31,549.9,3126.58,26143141,99.85,0,0,0.14,549.88,3126.59,26143142,99.66,0,0,0.5,549.95,3126.52,26143143,99.84,0,0,0.21,549.11,3127.35,26143144,99.84,0,0,0.14,549.08,3127.38,26143145,99.71,0,0,0.4,548.62,3127.85,26143146,99.85,0,0,0.13,548.59,3127.88,26143147,99.69,0,0,0.57,549.14,3127.33,26143148,99.85,0,0,0.14,549.79,3126.67,26143149,99.76,0,0,0.29,549.76,3126.68,26143150,99.74,0,0,0.3,550.06,3126.39,26143151,99.88,0,0,0.16,549.97,3126.48,26143152,99.74,0,0,0.31,550.29,3126.15,26143153,99.77,0,0,0.45,550.05,3126.39,26143154,99.86,0,0,0.15,549.65,3126.78,26143155,99.76,0,0,0.34,549.66,3126.8,26143156,99.84,0,0,0.14,549.63,3126.82,26143157,99.85,0,0,0.19,549.85,3126.59,26143158,99.72,0,0,0.55,550.18,3126.26,26143159,99.85,0,0,0.14,549.57,3126.86,26143160,99.72,0,0,0.3,549.81,3126.64,26143161,99.86,0,0,0.16,549.89,3126.56,26143162,99.86,0,0,0.14,549.97,3126.48,26143163,99.72,0,0,0.53,550.36,3126.08,26143164,99.85,0,0,0.14,549.93,3126.51,26143165,99.8,0,0,0.31,549.92,3126.53,26143166,99.83,0,0,0.16,549.91,3126.54,26143167,99.82,0,0,0.13,549.88,3126.57,26143168,99.71,0,0,0.51,550.22,3126.22,26143169,99.87,0,0,0.21,549.84,3126.6,26143170,99.81,0,0,0.33,549.86,3126.59,26143171,99.85,0,0,0.18,549.82,3126.63,26143172,99.85,0,0,0.18,549.78,3126.66,26143173,99.71,0,0,0.57,550.32,3126.12,26143174,99.85,0,0,0.15,549.96,3126.48,26143175,99.77,0,0,0.33,549.95,3126.5,26143176,99.84,0,0,0.14,549.94,3126.51,26143177,99.86,0,0,0.14,549.91,3126.53,26143178,99.68,0,0,0.44,550.58,3125.86,26143179,99.73,0,0,0.43,550.14,3126.27,26143180,99.73,0,0,0.3,549.4,3127.02,26143181,99.87,0,0,0.16,549.38,3127.04,26143182,99.84,0,0,0.15,549.35,3127.07,26143183,99.73,0,0,0.42,550,3126.41,26143184,99.85,0,0,0.28,550.07,3126.33,26143185,99.77,0.01,0.03,0.35,550.09,3126.33,26143186,99.8,0.04,0.14,0.44,549.6,3126.8,26143187,99.83,0.01,0.01,0.18,550.21,3126.18,26143188,99.83,0,0,0.17,551.64,3124.71,26143189,99.72,0,0,0.55,552.79,3123.56,26143190,99.8,0,0,0.31,551.45,3124.91,26143191,99.86,0,0,0.16,551.11,3125.26,26143192,99.86,0,0,0.14,551.09,3125.27,26143193,99.85,0,0,0.15,551.05,3125.3,26143194,99.72,0,0,0.54,551.8,3124.55,26143195,99.79,0,0,0.32,551.76,3124.6,26143196,99.84,0,0,0.16,551.84,3124.53,26143197,99.85,0,0,0.14,551.93,3124.42,26143198,99.85,0,0,0.15,551.92,3124.44,26143199,99.71,0,0,0.53,552.57,3123.78,26143200,99.7,0,0,0.31,551.92,3124.45,26143201,99.86,0,0,0.14,551.88,3124.48,26143202,99.86,0,0,0.16,551.86,3124.5,26143203,99.82,0.03,2.72,0.54,551.83,3124.51,26143204,99.73,0,0.01,0.57,552.16,3124.17,26143205,99.8,0,0,0.3,552.06,3124.29,26143206,99.84,0,0,0.15,552.03,3124.31,26143207,99.86,0,0,0.16,552.03,3124.31,26143208,99.82,0,0,0.15,552.18,3124.17,26143209,99.65,0,0,0.71,552.98,3123.35,26143210,99.81,0,0,0.3,552.18,3124.18,26143211,99.85,0,0,0.16,552.16,3124.19,26143212,99.83,0,0,0.16,552.13,3124.21,26143213,99.87,0,0,0.14,552.11,3124.23,26143214,99.7,0,0,0.54,552.55,3123.79,26143215,99.8,0,0,0.32,552.1,3124.25,26143216,99.84,0,0,0.16,552.07,3124.28,26143217,99.83,0,0,0.18,552.06,3124.28,26143218,99.87,0,0,0.14,552.03,3124.31,26143219,99.7,0,0,0.41,552.37,3123.97,26143220,99.76,0,0,0.45,552.4,3123.95,26143221,99.85,0,0,0.16,552.43,3123.92,26143222,99.85,0,0,0.15,552.4,3123.94,26143223,99.84,0,0,0.16,552.39,3123.95,26143224,99.68,0,0,0.52,552.71,3123.62,26143225,99.75,0,0,0.36,551.15,3125.21,26143226,99.83,0,0,0.16,551.11,3125.24,26143227,99.85,0,0,0.14,551.08,3125.26,26143228,99.82,0,0,0.15,551.05,3125.29,26143229,99.86,0,0,0.14,551.04,3125.29,26143230,99.59,0,0,0.73,551.73,3124.62,26143231,99.84,0,0,0.15,551.2,3125.14,26143232,99.83,0,0,0.14,551.18,3125.16,26143233,99.86,0,0,0.17,551.17,3125.17,26143234,99.83,0,0,0.14,551.13,3125.2,26143235,99.62,0,0,0.73,552.91,3123.43,26143236,99.86,0,0,0.18,552.34,3124,26143237,99.86,0,0,0.14,552.33,3124,26143238,99.84,0,0,0.15,552.29,3124.03,26143239,99.78,0,0,0.3,552.28,3124.02,26143240,99.63,0,0,0.71,552.79,3123.53,26143241,99.85,0,0,0.16,552.26,3124.05,26143242,99.86,0,0,0.15,552.23,3124.08,26143243,99.86,0,0,0.15,552.38,3123.93,26143244,99.85,0,0,0.13,552.37,3123.93,26143245,99.66,0,0,0.76,552.85,3123.47,26143246,99.84,0,0,0.18,552.14,3124.18,26143247,99.86,0,0,0.14,552.08,3124.24,26143248,99.83,0,0,0.17,552.06,3124.25,26143249,99.86,0,0,0.14,552.04,3124.27,26143250,99.68,0,0,0.76,552.49,3123.83,26143251,99.86,0,0,0.16,552.26,3124.05,26143252,99.88,0,0,0.14,552.23,3124.08,26143253,99.86,0,0,0.15,552.4,3123.91,26143254,99.86,0,0,0.14,552.38,3123.93,26143255,99.71,0,0,0.57,553.43,3122.89,26143256,99.86,0,0,0.29,552.36,3123.96,26143257,99.92,0,0,0.16,552.34,3123.97,26143258,99.92,0,0,0.14,552.32,3123.99,26143259,99.94,0,0,0.15,552.29,3124.02,26143260,99.7,0,0,0.55,553.1,3123.22,26143261,99.94,0,0,0.29,552.27,3124.05,26143262,99.91,0,0,0.15,552.26,3124.05,26143263,99.92,0,0,0.16,552.24,3124.06,26143264,99.92,0,0,0.14,552.22,3124.09,26143265,99.88,0,0,0.32,551.93,3124.41,26143266,99.8,0,0,0.6,553.14,3123.2,26143267,99.94,0,0,0.17,552.64,3123.69,26143268,99.93,0,0,0.18,552.63,3123.7,26143269,99.74,0,0,0.32,552.38,3123.92,26143270,99.81,0,0,0.31,551.64,3124.68,26143271,99.81,0,0,0.61,552.7,3123.61,26143272,99.95,0,0,0.16,552.57,3123.74,26143273,99.94,0,0,0.18,552.54,3123.77,26143274,99.91,0,0,0.16,552.53,3123.77,26143275,99.86,0,0,0.35,552.29,3124.03,26143276,99.75,0,0,0.59,552.65,3123.66,26143277,99.92,0,0,0.25,552.42,3123.89,26143278,99.93,0,0,0.18,552.4,3123.9,26143279,99.95,0,0,0.16,552.38,3123.92,26143280,99.81,0,0,0.33,552.86,3123.45,26143281,99.79,0,0,0.57,553.43,3122.88,26143282,99.95,0,0,0.16,552.59,3123.71,26143283,99.95,0,0,0.14,552.56,3123.74,26143284,99.92,0,0,0.14,552.55,3123.75,26143285,99.84,0,0,0.32,552.78,3123.53,26143286,99.81,0,0,0.54,553.3,3123,26143287,99.92,0,0,0.17,552.5,3123.81,26143288,99.93,0,0,0.17,552.65,3123.64,26143289,99.93,0,0,0.15,552.62,3123.68,26143290,99.91,0,0,0.31,552.64,3123.68,26143291,99.77,0,0,0.56,553.17,3123.14,26143292,99.91,0,0,0.14,552.83,3123.47,26143293,99.93,0,0,0.14,552.8,3123.49,26143294,99.95,0,0,0.17,552.77,3123.52,26143295,99.89,0,0,0.31,552.54,3123.77,26143296,99.74,0,0,0.31,552.88,3123.43,26143297,99.95,0,0,0.4,552.74,3123.55,26143298,99.95,0,0,0.14,552.74,3123.56,26143299,99.83,0,0,0.29,552.65,3123.62,26143300,99.9,0,0,0.31,552.63,3123.66,26143301,99.79,0,0,0.32,553,3123.28,26143302,99.93,0.01,0.76,0.39,552.83,3123.46,26143303,99.95,0,0.05,0.2,552.7,3123.58,26143304,99.93,0,0,0.15,552.88,3123.42,26143305,99.91,0,0,0.32,552.88,3123.44,26143306,99.93,0,0,0.2,552.61,3123.7,26143307,99.79,0,0,0.64,552.71,3123.59,26143308,99.95,0,0,0.14,552.3,3124,26143309,99.95,0,0,0.16,552.29,3124,26143310,99.89,0,0,0.32,552.52,3123.79,26143311,99.96,0,0,0.15,552.51,3123.79,26143312,99.8,0,0,0.56,552.99,3123.31,26143313,99.94,0,0,0.17,552.21,3124.09,26143314,99.95,0,0,0.14,552.35,3123.94,26143315,99.91,0,0,0.32,552.85,3123.45,26143316,99.93,0,0,0.15,552.85,3123.46,26143317,99.81,0,0,0.54,552.85,3123.45,26143318,99.95,0,0,0.15,551.81,3124.49,26143319,99.95,0,0,0.14,551.8,3124.49,26143320,99.88,0,0,0.34,552.75,3123.55,26143321,99.95,0,0,0.17,552.76,3123.54,26143322,99.8,0,0,0.55,553.08,3123.21,26143323,99.95,0,0,0.16,552.72,3123.57,26143324,99.93,0,0,0.14,552.68,3123.6,26143325,99.85,0,0,0.32,553.21,3123.09,26143326,99.95,0,0,0.14,553.1,3123.2,26143327,99.8,0,0,0.41,553.34,3122.95,26143328,99.95,0,0,0.29,552.81,3123.48,26143329,99.77,0,0,0.31,552.78,3123.48,26143330,99.86,0,0,0.32,553.01,3123.26,26143331,99.95,0,0,0.16,552.99,3123.28,26143332,99.79,0,0,0.53,553.71,3122.56,26143333,99.94,0,0,0.19,552.71,3123.56,26143334,99.95,0,0,0.17,552.7,3123.56,26143335,99.83,0,0,0.34,552.45,3123.83,26143336,99.95,0,0,0.14,552.43,3123.84,26143337,99.81,0,0,0.46,553,3123.27,26143338,99.95,0,0,0.29,552.86,3123.41,26143339,99.93,0,0,0.14,552.85,3123.41,26143340,99.87,0,0,0.32,553.09,3123.19,26143341,99.95,0,0,0.13,553.08,3123.19,26143342,99.95,0,0,0.16,553.05,3123.22,26143343,99.78,0,0,0.55,553.18,3123.08,26143344,99.9,0,0,0.15,552.22,3124.04,26143345,99.89,0,0,0.33,552.03,3124.25,26143346,99.96,0,0,0.14,552,3124.27,26143347,99.95,0,0,0.14,551.99,3124.28,26143348,99.78,0,0,0.55,552.31,3123.95,26143349,99.95,0,0,0.15,551.98,3124.28,26143350,99.85,0,0,0.34,552.37,3123.9,26143351,99.96,0,0,0.16,552.37,3123.9,26143352,99.95,0,0,0.14,552.34,3123.93,26143353,99.83,0,0,0.54,552.68,3123.58,26143354,99.94,0,0,0.15,552.3,3123.97,26143355,99.88,0,0,0.32,552.08,3124.21,26143356,99.93,0,0,0.16,552.04,3124.25,26143357,99.93,0,0,0.14,552.03,3124.25,26143358,99.82,0,0,0.57,552.48,3123.8,26143359,99.88,0,0,0.3,552,3124.25,26143360,99.88,0,0,0.33,552.46,3123.81,26143361,99.94,0,0,0.14,552.48,3123.78,26143362,99.92,0,0,0.16,552.61,3123.64,26143363,99.83,0,0,0.49,552.84,3123.41,26143364,99.93,0,0,0.2,552.33,3123.93,26143365,99.85,0,0,0.32,551.4,3124.89,26143366,99.91,0,0,0.2,550.9,3125.38,26143367,99.93,0,0,0.14,550.8,3125.47,26143368,99.8,0,0,0.4,551.47,3124.8,26143369,99.95,0,0,0.29,552.24,3124.03,26143370,99.83,0,0,0.32,551.53,3124.75,26143371,99.95,0,0,0.14,551.48,3124.8,26143372,99.93,0,0,0.16,551.47,3124.81,26143373,99.8,0,0,0.36,552.03,3124.24,26143374,99.94,0,0,0.36,552.58,3123.69,26143375,99.88,0,0.02,0.34,552.33,3123.95,26143376,99.93,0,0,0.16,552.28,3124,26143377,99.94,0,0,0.14,552.27,3124.01,26143378,99.95,0,0,0.16,552.23,3124.04,26143379,99.81,0,0,0.54,552.9,3123.36,26143380,99.81,0,0,0.33,551.4,3124.89,26143381,99.95,0,0,0.13,551.36,3124.92,26143382,99.95,0,0,0.16,551.35,3124.93,26143383,99.95,0,0,0.14,551.32,3124.95,26143384,99.8,0,0,0.54,552.83,3123.43,26143385,99.89,0,0,0.31,552.29,3124,26143386,99.94,0,0,0.16,552.25,3124.03,26143387,99.96,0,0,0.14,552.24,3124.03,26143388,99.94,0,0,0.16,552.21,3124.06,26143389,95.01,0.27,0.01,78.56,565.51,3111.21,26143390,99.8,0,0,180.01,555.08,3121.05,26143391,99.93,0,0,0.16,555.06,3121.07,26143392,99.94,0,0,0.14,555.05,3121.08,26143393,99.95,0,0,0.15,555.02,3121.11,26143394,99.81,0,0,0.61,554.54,3121.62,26143395,99.9,0,0,0.34,552.54,3123.66,26143396,99.95,0,0,0.14,552.53,3123.67,26143397,99.9,0,0,0.2,552.5,3123.7,26143398,99.95,0,0,0.16,552.49,3123.7,26143399,99.83,0,0,0.57,552.81,3123.38,26143400,99.86,0,0,0.31,552.71,3123.49,26143401,99.96,0,0,0.16,552.68,3123.52,26143402,99.95,0,0,0.14,552.67,3123.52,26143403,99.95,0,0,0.16,552.64,3123.55,26143404,99.83,0,0,0.4,553.31,3122.87,26143405,99.9,0,0,0.45,552.44,3123.77,26143406,99.95,0,0,0.17,552.53,3123.67,26143407,99.94,0,0,0.14,552.52,3123.67,26143408,99.92,0,0,0.15,552.49,3123.7,26143409,99.81,0,0,0.3,552.82,3123.36,26143410,99.81,0,0,0.52,551.85,3124.35,26143411,99.92,0,0,0.17,551.71,3124.49,26143412,99.94,0,0,0.14,551.7,3124.5,26143413,99.95,0,0,0.16,551.67,3124.53,26143414,99.85,0,0,0.31,552.03,3124.16,26143415,99.86,0,0,0.55,552.15,3124.05,26143416,99.93,0,0,0.14,552.13,3124.07,26143417,99.95,0,0,0.17,552.31,3123.89,26143418,99.94,0,0,0.14,552.31,3123.88,26143419,99.86,0,0,0.29,552.77,3123.4,26143420,99.72,0,0,0.72,553.35,3122.83,26143421,99.94,0,0,0.14,552.53,3123.65,26143422,99.93,0,0,0.14,552.49,3123.68,26143423,99.95,0,0,0.18,552.49,3123.68,26143424,99.93,0,0,0.14,552.45,3123.71,26143425,99.71,0,0,0.71,553.04,3123.15,26143426,99.92,0,0,0.17,552.24,3123.94,26143427,99.95,0,0,0.17,552.24,3123.94,26143428,99.94,0,0,0.17,552.3,3123.87,26143429,99.92,0,0,0.14,552.27,3123.9,26143430,99.77,0,0,0.77,552.97,3123.22,26143431,99.94,0,0,0.18,552.49,3123.71,26143432,99.92,0,0,0.17,552.46,3123.74,26143433,99.94,0,0,0.15,552.43,3123.76,26143434,99.94,0,0,0.15,552.4,3123.79,26143435,99.72,0,0,0.81,553.14,3123.06,26143436,99.93,0,0,0.18,552.81,3123.39,26143437,99.95,0,0,0.16,552.77,3123.42,26143438,99.96,0,0,0.17,552.77,3123.42,26143439,99.95,0,0,0.15,552.73,3123.45,26143440,99.74,0,0,0.71,553.1,3123.1,26143441,99.96,0,0,0.16,552.72,3123.48,26143442,99.92,0,0,0.13,552.71,3123.48,26143443,99.94,0,0,0.16,552.68,3123.51,26143444,99.94,0,0,0.16,552.67,3123.52,26143445,99.72,0,0,0.61,553.17,3123.03,26143446,97.9,0,0,0.33,552.4,3123.79,26143447,99.95,0,0,0.17,552.37,3123.82,26143448,99.95,0,0,0.14,552.54,3123.64,26143449,99.85,0,0,0.35,553.02,3123.14,26143450,99.9,0,0,0.32,552.78,3123.39,26143451,99.77,0,0,0.57,552.01,3124.16,26143452,99.94,0,0,0.18,551.51,3124.66,26143453,99.94,0,0,0.18,551.48,3124.69,26143454,99.91,0,0,0.16,551.47,3124.69,26143455,99.81,0,0,0.38,552.67,3123.51,26143456,99.78,0,0,0.59,553.23,3122.94,26143457,99.92,0,0,0.21,552.89,3123.27,26143458,99.94,0,0,0.15,552.88,3123.28,26143459,99.92,0,0,0.15,552.89,3123.26,26143460,99.88,0,0,0.33,552.9,3123.28,26143461,99.81,0,0,0.59,553.33,3122.84,26143462,99.93,0,0,0.19,553,3123.17,26143463,99.95,0,0,0.13,552.98,3123.18,26143464,99.93,0,0,0.16,552.95,3123.21,26143465,99.87,0,0,0.32,552.96,3123.21,26143466,99.8,0,0,0.55,552.8,3123.37,26143467,99.94,0,0,0.15,552.18,3123.99,26143468,99.92,0,0,0.16,552.15,3124.02,26143469,99.95,0,0,0.15,552.14,3124.02,26143470,99.81,0,0,0.31,552.64,3123.53,26143471,99.81,0,0,0.5,553.13,3123.04,26143472,99.92,0,0,0.21,552.77,3123.4,26143473,99.94,0,0,0.16,552.73,3123.43,26143474,99.9,0,0,0.16,552.72,3123.44,26143475,99.85,0,0,0.32,552.71,3123.46,26143476,99.77,0,0,0.58,553.45,3122.72,26143477,99.93,0,0,0.15,552.92,3123.25,26143478,99.94,0,0,0.13,552.89,3123.27,26143479,99.81,0,0,0.36,553.11,3123.03,26143480,99.89,0,0,0.32,552.88,3123.27,26143481,99.8,0,0,0.57,553.4,3122.75,26143482,99.93,0,0,0.14,553,3123.14,26143483,99.9,0,0,0.17,552.99,3123.15,26143484,99.93,0,0,0.15,552.97,3123.2,26143485,99.88,0,0,0.34,553.21,3122.98,26143486,98.7,0,0,0.2,552.88,3123.31,26143487,99.8,0,0,0.59,553.32,3122.86,26143488,99.94,0,0,0.23,552.91,3123.27,26143489,99.94,0,0,0.16,552.9,3123.27,26143490,99.9,0,0,0.34,552.89,3123.3,26143491,99.93,0,0,0.15,552.89,3123.3,26143492,99.81,0,0,0.59,552.82,3123.36,26143493,99.94,0,0,0.18,552.41,3123.77,26143494,99.93,0,0,0.18,552.54,3123.64,26143495,99.87,0,0,0.38,553.28,3122.91,26143496,99.94,0,0,0.18,553.25,3122.93,26143497,99.82,0,0,0.58,553.44,3122.73,26143498,99.93,0,0,0.18,552.97,3123.21,26143499,99.93,0,0,0.23,552.26,3123.91,26143500,99.31,0,0,9.4,551.65,3124.49,26143501,99.92,0,0,0.18,551.62,3124.55,26143502,99.8,0,0,0.57,552.4,3123.77,26143503,99.93,0,0,0.18,552.3,3123.86,26143504,99.94,0,0,0.18,552.29,3123.87,26143505,99.79,0,0,0.43,552.47,3123.75,26143506,99.92,0,0,0.2,552.46,3123.76,26143507,99.8,0,0,0.59,552.89,3123.32,26143508,99.94,0,0,0.2,552.64,3123.57,26143509,99.77,0,0,0.38,552.41,3123.8,26143510,99.82,0,0,0.4,552.62,3123.6,26143511,99.95,0,0,0.18,552.61,3123.6,26143512,99.8,0,0,0.59,553.34,3122.87,26143513,99.93,0,0,0.22,552.55,3123.65,26143514,99.94,0,0,0.21,552.54,3123.66,26143515,99.84,0,0,0.37,552.12,3124.09,26143516,99.92,0,0,0.15,552.22,3124,26143517,99.79,0,0,0.46,552.72,3123.49,26143518,99.9,0,0,0.27,552.67,3123.54,26143519,99.93,0,0,0.16,552.64,3123.56,26143520,99.86,0,0.01,0.38,552.37,3123.84,26143521,99.95,0,0,0.16,552.33,3123.88,26143522,99.92,0,0,0.14,552.32,3123.88,26143523,99.75,0,0,0.55,552.64,3123.55,26143524,99.91,0,0,0.15,552.29,3123.91,26143525,99.78,0,0,0.35,551.33,3124.88,26143526,99.96,0,0,0.15,551.47,3124.73,26143527,99.94,0,0,0.16,551.44,3124.76,26143528,99.8,0,0,0.59,552.36,3123.84,26143529,99.94,0,0,0.14,552.14,3124.05,26143530,99.85,0,0,0.32,551.9,3124.31,26143531,99.95,0,0,0.16,551.87,3124.34,26143532,99.91,0,0,0.15,551.84,3124.36,26143533,99.8,0,0,0.56,552.34,3123.86,26143534,99.9,0,0,0.18,552.04,3124.15,26143535,99.84,0,0,0.33,552.54,3123.67,26143536,99.93,0,0,0.14,552.52,3123.69,26143537,99.94,0,0,0.16,552.69,3123.51,26143538,99.8,0,0,0.39,552.91,3123.29,26143539,99.83,0,0,0.46,552.91,3123.27,26143540,99.86,0,0,0.37,552.18,3124.01,26143541,99.95,0,0,0.18,552.13,3124.05,26143542,99.92,0,0,0.18,552.1,3124.08,26143543,99.81,0,0,0.57,552.59,3123.59,26143544,99.94,0,0,0.14,552.55,3123.62,26143545,99.88,0,0,0.34,552.33,3123.85,26143546,98.49,0,0,0.2,551.92,3124.27,26143547,99.92,0,0,0.13,551.79,3124.39,26143548,99.8,0,0,0.38,552.14,3124.04,26143549,99.92,0,0,0.38,552.05,3124.12,26143550,99.85,0,0,0.36,552.18,3124.01,26143551,99.95,0,0,0.18,552.04,3124.14,26143552,99.92,0,0,0.16,551.9,3124.27,26143553,99.9,0,0,0.18,551.88,3124.3,26143554,99.74,0,0,0.55,553.19,3122.98,26143555,99.83,0,0,0.32,552.6,3123.58,26143556,99.94,0,0,0.14,552.57,3123.62,26143557,99.92,0,0,0.2,552.56,3123.62,26143558,99.91,0,0,0.14,552.53,3123.65,26143559,99.8,0,0,0.57,553.05,3123.12,26143560,99.86,0,0,0.39,552.74,3123.43,26143561,99.89,0,0,0.18,552.88,3123.29,26143562,99.9,0,0,0.15,552.89,3123.28,26143563,99.95,0,0,0.15,552.87,3123.29,26143564,99.81,0,0,0.56,552.91,3123.25,26143565,99.88,0,0,0.27,552.85,3123.33,26143566,99.95,0,0,0.14,552.83,3123.34,26143567,96.19,0,0,0.16,552.82,3123.35,26143568,99.94,0,0,0.15,552.79,3123.38,26143569,99.66,0,0,0.73,553.15,3122.99,26143570,99.89,0,0,0.29,552.78,3123.38,26143571,99.92,0,0,0.14,552.77,3123.38,26143572,99.93,0,0,0.14,552.78,3123.37,26143573,99.88,0,0,0.15,552.93,3123.22,26143574,99.8,0,0,0.5,553.27,3122.89,26143575,99.85,0,0,0.33,552.68,3123.5,26143576,99.91,0,0,0.17,552.66,3123.51,26143577,99.88,0,0,0.22,552.63,3123.54,26143578,99.93,0,0,0.15,552.62,3123.54,26143579,99.82,0,0,0.48,553.36,3122.8,26143580,99.81,0,0,0.3,553.1,3123.08,26143581,99.94,0,0,0.14,552.95,3123.22,26143582,99.93,0,0,0.16,552.81,3123.36,26143583,99.93,0,0,0.14,552.78,3123.39,26143584,99.8,0,0,0.38,553.31,3122.85,26143585,99.72,0,0,0.5,552.06,3124.11,26143586,99.93,0,0,0.14,551.93,3124.24,26143587,99.93,0,0,0.14,551.92,3124.25,26143588,99.88,0,0,0.18,551.88,3124.28,26143589,99.93,0,0,0.14,551.87,3124.28,26143590,99.66,0,0,0.7,552.67,3123.51,26143591,99.93,0,0,0.13,552.34,3123.83,26143592,99.93,0,0,0.16,552.31,3123.85,26143593,99.93,0,0,0.13,552.28,3123.88,26143594,99.94,0,0,0.2,552.27,3123.88,26143595,99.77,0,0,0.65,553.03,3123.14,26143596,99.92,0,0,0.14,552.94,3123.23,26143597,99.93,0,0,0.16,552.9,3123.26,26143598,99.89,0,0,0.15,552.89,3123.27,26143599,99.83,0,0,0.32,553.09,3123.05,26143600,99.7,0,0,0.66,553.44,3122.72,26143601,99.95,0,0,0.14,553.08,3123.07,26143602,99.95,0,0,0.16,553.04,3123.1,26143603,99.94,0,0,0.14,553.04,3123.11,26143604,99.95,0,0,0.16,553.01,3123.15,26143605,99.77,0,0,0.63,552.71,3123.46,26143606,99.62,0,0,0.24,552.43,3123.74,26143607,99.94,0,0,0.15,552.67,3123.49,26143608,99.95,0,0,0.15,552.64,3123.52,26143609,99.93,0,0,0.18,552.61,3123.54,26143610,99.74,0,0,0.62,553.28,3122.89,26143611,99.9,0,0,0.2,552.61,3123.56,26143612,99.93,0,0,0.16,552.58,3123.58,26143613,99.94,0,0,0.14,552.55,3123.61,26143614,99.94,0,0,0.15,552.54,3123.61,26143615,99.71,0,0,0.52,553.43,3122.74,26143616,99.92,0,0,0.32,552.77,3123.4,26143617,99.88,0,0,0.16,552.75,3123.42,26143618,99.92,0,0,0.17,552.91,3123.25,26143619,99.95,0,0,0.17,552.88,3123.27,26143620,99.72,0,0,0.5,552.67,3123.5,26143621,99.95,0,0,0.3,551.14,3125.03,26143622,99.92,0,0,0.16,551.11,3125.06,26143623,99.94,0,0,0.15,551.1,3125.06,26143624,99.91,0,0,0.14,551.07,3125.09,26143625,99.79,0,0,0.26,552.3,3123.88,26143626,99.78,0,0,0.54,552.19,3123.98,26143627,99.92,0,0,0.16,551.78,3124.38,26143628,99.88,0,0,0.14,551.75,3124.41,26143629,99.77,0,0,0.32,553.15,3122.98,26143630,99.79,0,0,0.27,552,3124.15,26143631,99.78,0,0,0.58,553.16,3122.98,26143632,99.85,0,0,0.15,553.11,3123.03,26143633,99.9,0,0,0.13,553.08,3123.05,26143634,99.92,0,0,0.16,553.07,3123.06,26143635,99.85,0,0,0.26,553.06,3123.08,26143636,99.8,0,0,0.57,553.58,3122.56,26143637,99.92,0,0,0.19,553.27,3122.87,26143638,99.85,0,0,0.18,553.26,3122.88,26143639,99.9,0,0,0.16,553.22,3122.9,26143640,99.75,0,0,0.27,553.39,3122.76,26143641,99.76,0,0,0.52,554.09,3122.04,26143642,99.84,0,0,0.15,553.37,3122.76,26143643,99.85,0,0,0.16,553.35,3122.78,26143644,99.82,0,0,0.15,553.31,3122.81,26143645,99.83,0,0,0.27,553.09,3123.05,26143646,99.72,0,0,0.53,553.15,3122.99,26143647,99.88,0,0,0.23,552.04,3124.09,26143648,99.87,0,0,0.14,552.02,3124.11,26143649,99.88,0,0,0.14,551.99,3124.13,26143650,99.83,0,0,0.26,552.59,3123.54,26143651,99.74,0,0,0.41,552.59,3123.54,26143652,99.86,0,0,0.29,552.42,3123.71,26143653,99.87,0,0,0.16,552.39,3123.73,26143654,99.83,0,0,0.15,552.37,3123.75,26143655,99.75,0,0,0.25,551.89,3124.25,26143656,99.72,0,0,0.32,552.2,3123.93,26143657,99.83,0,0,0.39,552.08,3124.05,26143658,99.86,0,0,0.14,552.05,3124.07,26143659,99.75,0,0,0.31,552.51,3123.59,26143660,99.76,0,0,0.27,552.51,3123.6,26143661,99.86,0,0,0.14,552.64,3123.48,26143662,99.71,0,0,0.54,552.37,3123.75,26143663,99.82,0,0,0.15,551.89,3124.23,26143664,99.85,0,0,0.14,551.88,3124.25,26143665,99.74,0,0,0.33,552.12,3124.03,26143666,99.85,0,0,0.19,551.91,3124.23,26143667,99.48,0,0,0.54,551.74,3124.4,26143668,99.87,0,0,0.15,551.31,3124.82,26143669,99.86,0,0,0.14,551.3,3124.83,26143670,99.81,0,0,0.27,551.8,3124.35,26143671,99.83,0,0,0.15,551.78,3124.37,26143672,99.7,0,0,0.55,552.47,3123.67,26143673,99.85,0,0,0.15,552.41,3123.73,26143674,99.86,0,0,0.15,552.4,3123.73,26143675,99.8,0,0,0.33,552.64,3123.5,26143676,99.85,0,0,0.16,552.61,3123.53,26143677,99.73,0,0,0.48,553.09,3123.04,26143678,99.85,0,0,0.21,552.81,3123.32,26143679,99.85,0,0,0.15,552.8,3123.32,26143680,99.54,0,0,0.27,551.12,3125.01,26143681,99.81,0,0,0.13,551.05,3125.08,26143682,99.73,0,0,0.56,552,3124.13,26143683,99.86,0,0,0.14,551.76,3124.37,26143684,99.86,0,0,0.14,551.88,3124.25,26143685,99.77,0,0,0.28,552.4,3123.75,26143686,99.81,0,0,0.16,552.39,3123.75,26143687,99.72,0,0,0.57,552.94,3123.19,26143688,99.84,0,0,0.16,552.59,3123.54,26143689,99.8,0,0,0.33,552.32,3123.79,26143690,99.82,0,0,0.3,552.57,3123.55,26143691,99.86,0,0,0.14,552.55,3123.57,26143692,99.71,0,0,0.33,552.89,3123.23,26143693,99.86,0,0,0.38,552.5,3123.61,26143694,99.86,0,0,0.15,552.49,3123.61,26143695,99.76,0,0,0.27,552.97,3123.16,26143696,99.83,0,0,0.16,553.14,3122.98,26143697,99.71,0,0,0.38,553.23,3122.88,26143698,99.85,0,0,0.38,552.86,3123.25,26143699,99.86,0,0,0.14,552.83,3123.27,26143700,99.81,0,0,0.26,552.84,3123.27,26143701,99.82,0,0,0.14,552.81,3123.3,26143702,99.85,0,0,0.16,552.78,3123.33,26143703,99.7,0,0,0.56,553.12,3122.98,26143704,99.85,0,0,0.16,552.74,3123.36,26143705,99.78,0,0,0.28,552.75,3123.37,26143706,99.87,0,0,0.14,552.71,3123.4,26143707,99.88,0,0,0.16,552.89,3123.22,26143708,99.72,0,0,0.54,553.6,3122.5,26143709,99.86,0,0,0.14,552.85,3123.25,26143710,99.8,0,0,0.3,552.86,3123.26,26143711,99.85,0,0,0.16,552.84,3123.28,26143712,99.85,0,0,0.17,552.81,3123.3,26143713,99.72,0,0,0.57,552.81,3123.29,26143714,99.86,0,0,0.2,551.78,3124.32,26143715,99.7,0,0,0.33,551.29,3124.82,26143716,99.85,0,0,0.16,551.26,3124.84,26143717,99.87,0,0,0.17,551.23,3124.87,26143718,99.72,0,0,0.49,552.3,3123.8,26143719,99.72,0,0,0.35,552.38,3123.69,26143720,99.77,0,0,0.31,551.9,3124.19,26143721,99.86,0,0,0.16,551.85,3124.24,26143722,99.86,0,0,0.18,551.84,3124.24,26143723,99.74,0,0,0.42,552.35,3123.73,26143724,99.87,0,0,0.28,552.79,3123.31,26143725,99.81,0,0,0.28,552.78,3123.35,26143726,99.83,0,0,0.19,552.58,3123.54,26143727,99.84,0,0,0.14,552.49,3123.63,26143728,99.73,0,0,0.57,552.86,3123.26,26143729,99.85,0,0,0.17,552.75,3123.36,26143730,99.83,0,0,0.32,553.15,3122.98,26143731,99.86,0,0,0.18,553.14,3122.98,26143732,99.85,0,0,0.15,553.1,3123.01,26143733,99.73,0,0,0.32,553.44,3122.67,26143734,99.83,0,0,0.39,553.07,3123.04,26143735,99.81,0,0,0.27,552.35,3123.77,26143736,99.87,0,0,0.15,552.31,3123.81,26143737,99.87,0,0,0.16,552.28,3123.84,26143738,99.85,0,0,0.14,552.27,3123.84,26143739,99.69,0,0,0.56,553.5,3122.6,26143740,99.71,0,0,0.31,552.75,3123.38,26143741,99.87,0,0,0.14,552.88,3123.24,26143742,99.82,0,0,0.13,552.89,3123.23,26143743,99.83,0,0,0.16,552.85,3123.26,26143744,99.67,0,0,0.62,553.55,3122.56,26143745,99.65,0,0,0.33,552.11,3124.01,26143746,99.84,0,0,0.12,552.09,3124.03,26143747,99.86,0,0,0.16,552.06,3124.06,26143748,99.87,0,0,0.14,552.03,3124.08,26143749,99.62,0,0,0.71,553.48,3122.61,26143750,99.79,0,0,0.35,552.78,3123.32,26143751,99.86,0,0,0.13,552.74,3123.36,26143752,99.85,0,0,0.17,552.75,3123.34,26143753,99.88,0,0,0.16,552.88,3123.2,26143754,95.17,0.29,0.01,77.82,561.06,3115.84,26143755,99.65,0,0,180.32,555.39,3120.54,26143756,99.85,0,0,0.16,555.4,3120.52,26143757,99.84,0,0,0.19,555.38,3120.55,26143758,99.85,0,0,0.14,555.36,3120.55,26143759,99.73,0,0,0.42,555.39,3120.53,26143760,99.77,0,0,0.43,553.22,3122.75,26143761,99.84,0,0,0.14,553.19,3122.78,26143762,99.82,0,0,0.16,553.17,3122.79,26143763,99.85,0,0,0.14,553.14,3122.81,26143764,99.72,0,0,0.44,554,3121.95,26143765,99.8,0,0,0.39,553.07,3122.91,26143766,99.84,0,0,0.16,553.04,3122.94,26143767,99.85,0,0,0.14,553.03,3122.95,26143768,99.81,0,0,0.16,553,3122.97,26143769,99.85,0,0,0.14,552.99,3122.98,26143770,99.62,0,0,0.65,553.55,3122.44,26143771,99.85,0,0,0.16,552.97,3123.01,26143772,99.85,0,0,0.14,552.94,3123.04,26143773,99.86,0,0,0.16,552.93,3123.04,26143774,99.85,0,0,0.16,552.9,3123.07,26143775,99.7,0,0,0.72,553.51,3122.47,26143776,99.86,0,0,0.18,553.33,3122.65,26143777,99.86,0,0,0.18,553.33,3122.64,26143778,99.85,0,0,0.18,553.3,3122.67,26143779,99.71,0,0,0.41,552.8,3123.15,26143780,99.62,0,0,0.74,553.21,3122.76,26143781,99.83,0.02,0.79,0.23,552.99,3122.97,26143782,99.84,0,0,0.21,552.89,3123.06,26143783,99.86,0,0,0.18,553.07,3122.89,26143784,99.87,0,0,0.14,553.03,3122.93,26143785,99.66,0,0,0.68,552.91,3123.07,26143786,99.8,0,0,0.22,552.47,3123.51,26143787,99.82,0,0,0.38,552.76,3123.21,26143788,99.83,0,0,0.16,552.73,3123.24,26143789,99.85,0,0,0.15,552.71,3123.25,26143790,99.67,0,0,0.7,553.3,3122.68,26143791,99.85,0,0,0.15,553.19,3122.79,26143792,99.88,0,0,0.14,553.16,3122.81,26143793,99.85,0,0,0.17,553.13,3122.84,26143794,99.83,0,0,0.16,553.29,3122.67,26143795,99.66,0,0,0.73,553.66,3122.32,26143796,99.86,0,0,0.17,553.29,3122.69,26143797,99.85,0,0,0.14,553.25,3122.72,26143798,99.81,0,0,0.2,553.24,3122.72,26143799,99.83,0,0,0.16,553.21,3122.75,26143800,99.58,0,0,0.62,552.62,3123.36,26143801,99.85,0,0,0.21,553.44,3122.53,26143802,99.85,0,0,0.15,553.41,3122.56,26143803,99.84,0,0,0.16,553.4,3122.57,26143804,99.84,0,0,0.15,553.37,3122.59,26143805,99.77,0,0,0.31,553.13,3122.84,26143806,99.71,0,0,0.55,552.68,3123.29,26143807,99.86,0,0,0.18,552.29,3123.67,26143808,99.89,0,0,0.19,552.28,3123.68,26143809,98.23,0,0,0.32,552.26,3123.69,26143810,99.86,0,0,0.29,552.49,3123.48,26143811,99.77,0,0,0.57,553.05,3122.91,26143812,99.92,0,0,0.15,552.46,3123.51,26143813,99.94,0,0,0.16,552.44,3123.52,26143814,99.93,0,0,0.2,552.41,3123.56,26143815,99.87,0,0,0.28,551.21,3124.78,26143816,99.79,0,0,0.57,551.97,3124.03,26143817,99.9,0,0,0.22,551.83,3124.17,26143818,99.9,0,0,0.19,551.8,3124.2,26143819,99.94,0,0,0.15,551.77,3124.22,26143820,99.9,0,0,0.29,552.76,3123.25,26143821,99.79,0,0,0.53,553.08,3122.93,26143822,99.94,0,0,0.18,552.73,3123.27,26143823,99.93,0,0,0.14,552.7,3123.3,26143824,99.94,0,0,0.15,552.69,3123.31,26143825,99.79,0,0,0.27,552.19,3123.82,26143826,99.76,0,0,0.58,552.62,3123.39,26143827,99.95,0,0,0.17,552.39,3123.61,26143828,96.23,1.54,0.01,79.66,560.3,3114.66,26143829,99.94,0,0,0.18,554.78,3119.29,26143830,99.88,0,0,0.33,555.03,3119.05,26143831,99.79,0,0,0.5,555.36,3118.72,26143832,99.94,0,0,0.21,555.18,3118.9,26143833,99.93,0,0,0.18,553.61,3120.5,26143834,99.92,0,0.01,0.18,552.97,3121.14,26143835,99.84,0,0,0.28,552.26,3121.87,26143836,99.8,0,0,0.44,552.74,3121.39,26143837,99.92,0,0,0.29,552.7,3121.43,26143838,99.9,0,0,0.18,552.67,3121.47,26143839,99.83,0,0,0.3,552.41,3121.74,26143840,99.85,0,0,0.33,551.68,3122.49,26143841,99.94,0,0,0.2,551.64,3122.52,26143842,99.8,0,0,0.57,552.85,3121.31,26143843,99.94,0,0,0.16,552.53,3121.62,26143844,99.94,0,0,0.14,552.5,3121.65,26143845,99.86,0,0,0.28,552.74,3121.43,26143846,99.9,0,0,0.2,552.43,3121.74,26143847,99.79,0,0,0.58,553.02,3121.13,26143848,99.93,0,0,0.18,552.69,3121.46,26143849,99.94,0,0,0.17,552.65,3121.49,26143850,99.85,0,0,0.28,552.91,3121.25,26143851,99.92,0,0,0.14,552.88,3121.28,26143852,99.8,0,0,0.54,552.66,3121.5,26143853,99.92,0,0,0.16,552.26,3121.9,26143854,99.91,0,0,0.15,552.28,3121.87,26143855,99.86,0,0,0.29,553,3121.16,26143856,99.92,0,0,0.16,552.98,3121.18,26143857,99.81,0,0,0.54,553.33,3120.83,26143858,99.94,0,0,0.15,552.69,3121.46,26143859,99.95,0,0,0.14,552.68,3121.47,26143860,99.83,0,0,0.3,552.68,3121.49,26143861,99.95,0,0,0.14,552.66,3121.5,26143862,99.79,0,0,0.6,552.99,3121.17,26143863,99.94,0,0,0.14,552.62,3121.53,26143864,99.95,0,0,0.14,552.77,3121.38,26143865,99.85,0,0,0.31,552.05,3122.12,26143866,99.94,0,0,0.13,552.02,3122.14,26143867,99.8,0,0,0.6,552.76,3121.4,26143868,99.9,0,0,0.16,552.97,3121.19,26143869,99.68,0,0,0.31,552.7,3121.43,26143870,99.91,0,0,0.35,552.7,3121.44,26143871,99.91,0,0,0.15,552.67,3121.47,26143872,99.8,0,0,0.41,553.05,3121.08,26143873,99.94,0,0,0.29,552.87,3121.26,26143874,99.95,0,0,0.18,552.85,3121.3,26143875,99.83,0,0,0.31,552.97,3121.19,26143876,99.93,0,0,0.14,553.01,3121.15,26143877,99.76,0,0,0.45,553.69,3120.46,26143878,99.94,0,0,0.32,553.22,3120.93,26143879,99.95,0,0,0.16,553.21,3120.93,26143880,99.83,0,0,0.29,552,3122.15,26143881,99.93,0,0,0.14,551.9,3122.26,26143882,99.93,0,0,0.16,551.68,3122.49,26143883,99.8,0,0,0.56,553.56,3120.6,26143884,99.95,0,0,0.14,553.12,3121.04,26143885,98.8,0,0,15.4,554.78,3119.92,26143886,99.92,0,0,0.19,552.89,3121.35,26143887,99.95,0,0,0.14,553.03,3121.2,26143888,99.81,0,0,0.55,553.2,3121.03,26143889,99.94,0,0,0.14,552.77,3121.46,26143890,99.86,0,0,0.27,553.02,3121.23,26143891,99.95,0,0,0.15,552.99,3121.27,26143892,99.48,0,0,0.2,553.41,3120.84,26143893,93.06,0,0,72.62,570.07,3096.05,26143894,99.95,0,0,0.29,554.57,3119.62,26143895,99.9,0,0,0.39,555.6,3118.41,26143896,99.91,0,0,0.2,555.61,3118.39,26143897,99.93,0,0,0.2,555.58,3118.42,26143898,99.8,0,0,0.7,554.3,3119.87,26143899,99.84,0,0,0.35,552.69,3121.55,26143900,99.87,0,0,0.36,553.2,3121.02,26143901,99.93,0,0,0.17,553.19,3121.02,26143902,99.92,0,0,0.2,553.16,3121.05,26143903,99.81,0,0,0.57,553.83,3120.38,26143904,99.93,0,0,0.18,552.88,3121.34,26143905,99.87,0,0,0.31,553.18,3121.03,26143906,99.9,0,0,0.25,552.87,3121.33,26143907,99.93,0,0,0.16,552.64,3121.56,26143908,99.8,0,0,0.64,553.33,3120.86,26143909,99.95,0,0,0.19,553.02,3121.17,26143910,99.89,0,0,0.35,553.07,3121.13,26143911,99.93,0,0,0.14,553.04,3121.16,26143912,99.9,0,0,0.16,553.03,3121.16,26143913,99.77,0,0,0.31,553.36,3120.84,26143914,99.93,0,0,0.38,553.24,3120.96,26143915,99.85,0,0,0.3,553.22,3120.99,26143916,99.93,0,0,0.16,553.21,3121,26143917,99.95,0,0,0.14,553.18,3121.03,26143918,99.79,0,0,0.33,553.52,3120.68,26143919,99.94,0,0,0.38,553.14,3121.06,26143920,99.84,0,0,0.31,552.24,3121.97,26143921,99.95,0,0,0.21,552.31,3121.9,26143922,99.93,0,0,0.15,552.29,3121.92,26143923,99.93,0,0,0.18,552.28,3121.92,26143924,99.74,0,0,0.55,553.67,3120.52,26143925,99.82,0,0,0.31,552.29,3121.92,26143926,99.95,0,0,0.14,552.23,3121.98,26143927,99.96,0,0,0.17,552.22,3121.98,26143928,99.95,0,0,0.14,552.19,3122.01,26143929,99.73,0,0,0.72,553.02,3121.15,26143930,99.88,0,0,0.28,553.39,3120.8,26143931,99.93,0,0,0.14,553.39,3120.79,26143932,99.92,0,0,0.16,553.53,3120.65,26143933,99.94,0,0,0.16,553.53,3120.64,26143934,99.79,0,0,0.57,553.72,3120.45,26143935,99.89,0,0,0.32,553.27,3120.91,26143936,99.95,0,0,0.18,553.24,3120.93,26143937,99.95,0,0,0.2,553.23,3120.95,26143938,99.94,0,0,0.14,553.2,3120.96,26143939,99.82,0,0,0.49,553.4,3120.77,26143940,99.87,0,0,0.32,552.95,3121.23,26143941,99.95,0,0,0.16,552.91,3121.27,26143942,99.93,0,0,0.14,552.9,3121.27,26143943,99.94,0,0,0.14,552.89,3121.28,26143944,99.82,0,0,0.55,553.58,3120.61,26143945,99.88,0,0,0.35,553.53,3120.67,26143946,99.95,0,0,0.13,553.5,3120.7,26143947,99.95,0,0,0.16,553.49,3120.7,26143948,99.95,0,0,0.14,553.46,3120.73,26143949,99.82,0,0,0.4,553.81,3120.38,26143950,99.9,0,0,0.46,553.69,3120.51,26143951,99.95,0,0,0.16,553.68,3120.52,26143952,99.95,0,0,0.13,553.65,3120.55,26143953,99.96,0,0,0.17,553.64,3120.55,26143954,99.82,0,0,0.41,553.94,3120.25,26143955,99.85,0,0,0.42,552.35,3121.85,26143956,99.92,0,0,0.16,552.3,3121.9,26143957,99.94,0,0,0.14,552.28,3121.91,26143958,99.95,0,0,0.15,552.26,3121.93,26143959,99.75,0,0,0.57,553.75,3120.42,26143960,99.82,0,0,0.54,552.53,3121.66,26143961,99.96,0,0,0.15,552.44,3121.73,26143962,99.95,0,0,0.17,552.43,3121.74,26143963,99.94,0,0,0.19,552.4,3121.77,26143964,99.94,0,0,0.16,552.37,3121.79,26143965,99.68,0,0,0.69,553.02,3121.14,26143966,99.88,0,0,0.2,552.53,3121.62,26143967,99.95,0,0,0.14,552.28,3121.86,26143968,99.95,0,0,0.14,552.25,3121.89,26143969,99.2,0,0,0.15,552.22,3121.91,26143970,99.73,0,0,0.68,552.77,3121.38,26143971,99.94,0,0,0.14,552.44,3121.7,26143972,99.95,0,0,0.13,552.43,3121.71,26143973,99.95,0,0,0.16,552.4,3121.73,26143974,99.93,0,0,0.14,552.4,3121.73,26143975,99.69,0,0,0.71,553.46,3120.68,26143976,99.95,0,0,0.16,553.01,3121.13,26143977,99.97,0,0,0.14,553.02,3121.12,26143978,99.95,0,0,0.14,552.99,3121.14,26143979,99.95,0,0,0.15,552.98,3121.15,26143980,99.64,0,0,0.76,552.58,3121.56,26143981,99.95,0,0,0.16,552.22,3121.92,26143982,99.93,0,0,0.14,552.18,3121.95,26143983,99.93,0,0,0.16,552.16,3121.97,26143984,99.95,0,0,0.14,552.14,3121.98,26143985,99.76,0,0,0.76,552.84,3121.29,26143986,99.93,0,0,0.19,552.61,3121.52,26143987,99.95,0,0,0.14,552.65,3121.48,26143988,99.94,0,0,0.14,552.79,3121.33,26143989,99.86,0,0,0.31,552.78,3121.32,26143990,99.78,0,0,0.72,553.12,3120.99,26143991,99.91,0,0,0.22,552.73,3121.38,26143992,99.93,0,0,0.14,552.65,3121.45,26143993,99.91,0,0,0.15,552.63,3121.47,26143994,99.95,0,0,0.14,552.72,3121.38,26143995,99.71,0,0,0.71,552.49,3121.63,26143996,99.92,0,0,0.13,553.01,3121.09,26143997,99.93,0,0,0.19,553.24,3120.86,26143998,99.91,0,0,0.17,553.21,3120.89,26143999,99.93,0,0,0.15,553.2,3120.89,26144000,99.87,0,0,0.3,552.75,3121.36,26144001,99.69,0,0,0.56,552.81,3121.3,26144002,99.89,0,0,0.14,552.42,3121.69,26144003,99.94,0,0,0.14,552.41,3121.69,26144004,99.95,0,0,0.16,552.38,3121.72,26144005,99.83,0,0,0.29,552.4,3121.68,26144006,99.8,0,0,0.58,553.3,3120.77,26144007,99.93,0,0,0.14,553.03,3121.04,26144008,99.91,0,0,0.14,553.01,3121.05,26144009,99.92,0,0,0.15,552.98,3121.08,26144010,99.86,0,0,0.29,552.99,3121.08,26144011,99.8,0,0,0.54,553.48,3120.59,26144012,99.95,0,0,0.14,552.95,3121.12,26144013,99.95,0,0,0.2,552.92,3121.14,26144014,99.95,0,0,0.18,552.91,3121.15,26144015,99.87,0,0,0.31,552.66,3121.42,26144016,99.78,0,0,0.59,553.11,3120.96,26144017,99.95,0,0,0.14,552.89,3121.18,26144018,99.94,0,0,0.16,553.04,3121.02,26144019,99.86,0,0,0.3,553,3121.05,26144020,99.9,0,0,0.32,553.01,3121.06,26144021,99.82,0,0,0.62,553.34,3120.73,26144022,99.94,0,0,0.15,552.97,3121.09,26144023,99.93,0,0,0.14,552.94,3121.12,26144024,99.95,0,0,0.16,552.91,3121.15,26144025,99.88,0,0,0.29,552.93,3121.14,26144026,99.79,0,0,0.46,553.44,3120.63,26144027,99.93,0,0,0.33,552.88,3121.18,26144028,99.92,0,0,0.14,552.85,3121.21,26144029,99.94,0,0,0.14,552.99,3121.06,26144030,99.83,0,0,0.28,553.02,3121.04,26144031,99.79,0,0,0.51,553.41,3120.65,26144032,99.95,0,0,0.19,553.47,3120.59,26144033,99.95,0,0,0.16,553.46,3120.6,26144034,99.93,0,0,0.15,553.43,3120.63,26144035,99.86,0,0,0.28,552.69,3121.37,26144036,99.8,0,0,0.41,553.05,3121.01,26144037,99.96,0,0,0.31,552.88,3121.18,26144038,99.93,0,0,0.14,552.88,3121.18,26144039,99.93,0,0,0.15,552.87,3121.19,26144040,99.85,0,0,0.28,552.96,3121.11,26144041,99.93,0,0,0.16,553.02,3121.05,26144042,99.81,0,0,0.56,553.13,3120.94,26144043,99.93,0,0,0.14,552.73,3121.33,26144044,99.93,0,0,0.16,552.72,3121.33,26144045,99.85,0,0,0.3,552.23,3121.83,26144046,99.95,0,0,0.14,552.21,3121.86,26144047,99.82,0,0,0.55,553.1,3120.96,26144048,99.94,0,0,0.17,552.91,3121.15,26144049,99.85,0,0,0.32,552.39,3121.66,26144050,99.86,0,0,0.33,552.15,3121.92,26144051,99.91,0,0,0.19,552.11,3121.95,26144052,99.75,0,0,0.63,553.18,3120.88,26144053,99.91,0,0,0.21,552.75,3121.31,26144054,99.93,0,0,0.21,552.74,3121.31,26144055,99.89,0.01,0.01,0.43,552.66,3121.4,26144056,99.9,0,0,0.18,552.61,3121.45,26144057,99.81,0,0,0.65,553.19,3120.86,26144058,99.95,0,0,0.18,552.97,3121.07,26144059,99.93,0,0,0.18,553.01,3121.03,26144060,99.91,0,0,0.33,552.77,3121.29,26144061,99.94,0,0,0.16,552.74,3121.31,26144062,99.83,0,0,0.45,553.4,3120.65,26144063,99.93,0,0,0.3,553.44,3120.6,26144064,99.96,0,0,0.14,553.41,3120.63,26144065,99.88,0,0,0.31,552.93,3121.12,26144066,99.94,0,0,0.16,552.89,3121.16,26144067,99.81,0,0,0.5,553.31,3120.73,26144068,99.91,0,0,0.19,553.1,3120.94,26144069,99.93,0,0,0.15,553.09,3120.94,26144070,99.84,0,0,0.3,553.23,3120.82,26144071,99.9,0,0,0.15,553.26,3120.79,26144072,99.81,0,0,0.39,553.78,3120.27,26144073,99.94,0,0,0.3,553.22,3120.82,26144074,99.93,0,0,0.16,553.19,3120.85,26144075,99.84,0,0,0.26,551.99,3122.06,26144076,99.95,0,0,0.14,551.94,3122.11,26144077,99.95,0,0,0.16,551.92,3122.13,26144078,99.81,0,0,0.57,553.34,3120.7,26144079,99.72,0,0,0.3,553.39,3120.63,26144080,99.79,0,0,0.3,551.98,3122.05,26144081,99.92,0,0,0.13,551.88,3122.15,26144082,99.91,0,0,0.15,552.02,3122,26144083,99.8,0,0,0.57,553.27,3120.75,26144084,99.88,0,0,0.19,553.22,3120.83,26144085,99.84,0,0,0.31,553.21,3120.86,26144086,99.93,0,0,0.18,553.1,3120.96,26144087,99.93,0,0.01,0.17,552.92,3121.14,26144088,99.75,0,0,0.55,551.79,3122.27,26144089,99.93,0,0,0.15,550.91,3123.16,26144090,99.69,0,0,0.3,553.08,3121,26144091,99.94,0,0,0.15,553.11,3120.97,26144092,99.94,0,0,0.14,553.12,3120.96,26144093,99.78,0,0,0.55,553.98,3120.09,26144094,99.94,0,0,0.13,553.22,3120.85,26144095,99.9,0,0,0.3,553.7,3120.38,26144096,99.94,0,0,0.15,553.69,3120.39,26144097,99.9,0,0,0.16,553.66,3120.42,26144098,99.81,0,0,0.4,553.91,3120.16,26144099,99.93,0,0,0.29,553.38,3120.69,26144100,99.82,0,0,0.29,552.42,3121.66,26144101,99.94,0,0,0.14,552.37,3121.71,26144102,99.95,0,0,0.14,552.37,3121.71,26144103,99.77,0,0,0.51,552.97,3121.1,26144104,99.93,0,0,0.19,553.71,3120.36,26144105,99.85,0,0,0.32,553.26,3120.85,26144106,99.93,0,0,0.17,553.23,3120.87,26144107,99.93,0,0,0.16,553.2,3120.89,26144108,99.82,0,0,0.42,553.49,3120.6,26144109,99.87,0,0,0.44,553.17,3120.9,26144110,99.85,0,0,0.3,553.42,3120.66,26144111,98.86,0,0,0.16,553.39,3120.69,26144112,99.92,0,0,0.14,553.38,3120.69,26144113,99.8,0,0,0.32,554,3120.07,26144114,99.93,0,0,0.38,553.56,3120.5,26144115,99.84,0,0,0.29,551.93,3122.15,26144116,99.92,0,0,0.16,551.51,3122.56,26144117,99.93,0,0,0.19,551.75,3122.32,26144118,99.94,0,0,0.14,551.72,3122.35,26144119,95.03,0.27,0.02,257.73,563.08,3111.83,26144120,99.83,0,0,0.39,554.21,3120.06,26144121,99.9,0,0,0.22,540.38,3134.21,26144122,99.88,0,0,0.19,539.97,3134.63,26144123,99.95,0,0,0.16,539.96,3134.63,26144124,99.81,0,0,0.62,538.73,3135.91,26144125,99.89,0,0,0.32,537.55,3137.12,26144126,99.94,0,0,0.14,537.54,3137.16,26144127,99.94,0,0,0.16,537.53,3137.16,26144128,99.95,0,0,0.15,537.53,3137.16,26144129,99.81,0,0,0.54,537.36,3137.33,26144130,99.81,0,0,0.3,537.04,3137.66,26144131,99.95,0,0,0.14,537.04,3137.66,26144132,99.95,0,0,0.16,537.04,3137.66,26144133,99.92,0,0,0.14,537.01,3137.68,26144134,99.77,0,0,0.52,538.11,3136.57,26144135,99.92,0,0,0.35,537.51,3137.19,26144136,99.95,0,0,0.14,537.5,3137.2,26144137,99.95,0,0,0.15,537.5,3137.2,26144138,99.95,0,0,0.17,537.48,3137.21,26144139,99.75,0,0,0.74,537.97,3136.71,26144140,99.89,0,0,0.29,537.71,3136.98,26144141,99.96,0,0,0.16,537.71,3136.98,26144142,99.95,0.02,1.76,0.19,537.79,3136.9,26144143,99.91,0.01,1.35,0.28,537.73,3136.93,26144144,99.8,0,0.01,0.55,538.15,3136.51,26144145,99.91,0,0,0.32,537.74,3136.94,26144146,99.91,0,0,0.14,537.61,3137.06,26144147,99.91,0,0,0.18,537.44,3137.23,26144148,99.9,0,0,0.14,537.53,3137.13,26144149,99.82,0,0,0.43,538.07,3136.59,26144150,99.91,0,0,0.41,538.13,3136.55,26144151,99.93,0,0,0.16,538.11,3136.57,26144152,99.97,0,0,0.14,538.09,3136.59,26144153,99.92,0,0,0.14,538.08,3136.59,26144154,99.82,0,0,0.31,538.77,3135.9,26144155,99.86,0,0,0.53,538.34,3136.35,26144156,99.95,0,0,0.14,538.34,3136.35,26144157,99.89,0.04,1.56,0.26,538.29,3136.39,26144158,99.94,0,0,0.16,538.25,3136.41,26144159,99.94,0,0.05,0.18,538.22,3136.44,26144160,99.69,0,0,0.69,538.28,3136.39,26144161,99.91,0,0,0.14,537.92,3136.75,26144162,99.94,0,0,0.18,538.06,3136.61,26144163,99.93,0,0,0.14,538.1,3136.56,26144164,99.91,0,0,0.15,538.09,3136.56,26144165,99.73,0,0,0.76,538.68,3135.99,26144166,99.89,0,0,0.19,538.32,3136.35,26144167,99.89,0,0,0.18,538.31,3136.35,26144168,99.89,0,0,0.18,538.31,3136.35,26144169,99.89,0,0,0.3,538.06,3136.57,26144170,99.65,0,0,0.73,538.04,3136.61,26144171,98.73,0,0,0.16,537.33,3137.32,26144172,99.92,0,0,0.14,537.32,3137.32,26144173,99.93,0,0,0.16,537.29,3137.35,26144174,99.88,0,0,0.14,537.29,3137.35,26144175,99.67,0,0,0.7,538.61,3136.04,26144176,99.89,0,0,0.14,538.28,3136.36,26144177,99.93,0,0,0.21,538.04,3136.6,26144178,99.94,0,0,0.16,538.02,3136.62,26144179,99.82,0,0,0.13,537.99,3136.64,26144180,99.61,0,0,0.69,538.72,3135.93,26144181,99.94,0,0,0.18,538.25,3136.39,26144182,99.97,0,0,0.14,538.25,3136.39,26144183,99.95,0,0,0.15,538.24,3136.39,26144184,99.95,0,0,0.16,538.23,3136.41,26144185,99.75,0,0,0.7,538.58,3136.07,26144186,99.92,0,0,0.14,538.22,3136.43,26144187,99.91,0,0,0.13,538.22,3136.43,26144188,99.87,0,0,0.17,538.21,3136.43,26144189,99.95,0,0,0.16,538.21,3136.43,26144190,99.64,0,0,0.54,537.87,3136.78,26144191,99.92,0,0,0.33,538.22,3136.43,26144192,99.88,0,0,0.14,538.2,3136.44,26144193,99.82,0,0,0.14,538.18,3136.46,26144194,99.85,0,0,0.15,538.18,3136.46,26144195,99.7,0,0,0.73,538.58,3136.07,26144196,99.92,0,0,0.17,538.4,3136.24,26144197,99.92,0,0,0.14,538.4,3136.24,26144198,99.88,0,0,0.18,538.39,3136.24,26144199,99.86,0,0,0.32,538.15,3136.46,26144200,99.83,0,0,0.3,538.48,3136.14,26144201,99.79,0,0,0.55,538.69,3135.93,26144202,99.93,0,0,0.16,538.3,3136.32,26144203,99.88,0,0,0.15,538.29,3136.32,26144204,99.88,0,0,0.14,538.29,3136.32,26144205,99.73,0,0,0.29,538.55,3136.08,26144206,99.63,0.01,0.01,0.64,540.03,3134.55,26144207,99.84,0,0,0.21,547.51,3126.81,26144208,99.79,0.01,0.02,0.18,549.63,3124.64,26144209,99.83,0,0,0.18,550.91,3123.34,26144210,99.73,0,0,0.34,552.9,3121.36,26144211,96.05,0,0,0.55,553.37,3120.89,26144212,99.82,0,0,0.21,552.84,3121.45,26144213,99.87,0,0,0.19,552.74,3121.54,26144214,99.84,0,0,0.16,552.55,3121.73,26144215,99.76,0.01,0.01,0.31,552.81,3121.5,26144216,99.7,0,0,0.58,553.26,3121.05,26144217,99.83,0,0,0.17,552.88,3121.42,26144218,99.85,0,0,0.15,552.86,3121.44,26144219,99.86,0,0,0.15,552.83,3121.47,26144220,99.78,0,0,0.3,553.06,3121.24,26144221,99.71,0,0,0.42,553.55,3120.75,26144222,99.85,0,0,0.28,552.78,3121.52,26144223,99.85,0,0,0.16,552.76,3121.53,26144224,99.83,0,0,0.14,552.74,3121.55,26144225,99.82,0,0,0.3,552.89,3121.42,26144226,99.73,0,0,0.49,552.97,3121.33,26144227,99.83,0,0,0.21,551.9,3122.41,26144228,99.85,0,0,0.14,551.88,3122.42,26144229,99.79,0,0,0.36,552.59,3121.69,26144230,99.79,0,0,0.38,552.6,3121.69,26144231,99.7,0,0,0.61,553,3121.28,26144232,99.49,0,0,0.15,552.8,3121.48,26144233,99.83,0,0,0.18,552.78,3121.49,26144234,99.81,0,0,0.16,552.75,3121.53,26144235,99.78,0,0,0.34,553.01,3121.3,26144236,99.7,0,0,0.51,553.62,3120.68,26144237,99.83,0,0,0.23,552.16,3122.13,26144238,99.85,0,0,0.15,552.14,3122.15,26144239,99.85,0,0,0.14,552.12,3122.16,26144240,99.82,0,0,0.3,551.88,3122.42,26144241,99.84,0,0,0.17,551.85,3122.45,26144242,99.69,0,0,0.55,552.81,3121.49,26144243,99.85,0,0,0.14,552.31,3121.98,26144244,99.86,0,0,0.17,552.27,3122.02,26144245,99.8,0,0,0.31,552.28,3122.03,26144246,99.83,0,0,0.13,552.32,3121.98,26144247,99.67,0,0,0.59,552.95,3121.34,26144248,99.87,0,0,0.16,552.63,3121.66,26144249,99.83,0.01,0.01,0.16,552.56,3121.72,26144250,99.78,0,0,0.29,552.53,3121.77,26144251,99.87,0,0,0.16,552.51,3121.79,26144252,99.72,0,0,0.59,553.11,3121.19,26144253,99.85,0,0,0.14,552.89,3121.4,26144254,99.85,0,0,0.16,552.87,3121.41,26144255,99.78,0,0,0.31,552.88,3121.43,26144256,99.8,0,0,0.14,552.85,3121.45,26144257,99.72,0,0,0.55,552.87,3121.42,26144258,99.85,0,0,0.15,551.82,3122.47,26144259,99.74,0,0,0.42,552.76,3121.51,26144260,99.79,0,0,0.3,552.62,3121.67,26144261,99.84,0,0,0.14,552.5,3121.78,26144262,99.72,0,0,0.56,553.14,3121.13,26144263,99.85,0,0,0.14,553.19,3121.07,26144264,99.87,0,0,0.14,553.34,3120.92,26144265,99.78,0,0,0.43,552.89,3121.39,26144266,99.8,0,0.01,0.18,552.85,3121.42,26144267,99.72,0,0,0.51,553.27,3121,26144268,99.85,0,0,0.2,552.05,3122.21,26144269,99.83,0,0,0.15,552.04,3122.21,26144270,99.75,0,0,0.3,550.84,3123.43,26144271,99.84,0,0,0.14,550.77,3123.5,26144272,99.67,0,0,0.54,551.77,3122.49,26144273,99.86,0,0,0.15,552.2,3122.05,26144274,99.85,0,0,0.15,552.28,3121.97,26144275,99.76,0,0,0.34,552.38,3121.89,26144276,99.85,0,0,0.17,552.37,3121.9,26144277,99.7,0,0,0.41,552.69,3121.57,26144278,99.82,0,0,0.29,552.32,3121.93,26144279,99.82,0,0,0.14,552.29,3121.96,26144280,99.8,0,0,0.36,552.3,3121.96,26144281,99.82,0,0,0.17,552.27,3121.99,26144282,99.81,0,0,0.14,552.26,3121.99,26144283,99.66,0,0,0.63,552.58,3121.67,26144284,99.85,0,0,0.15,552.22,3122.02,26144285,99.8,0,0,0.29,551.73,3122.53,26144286,99.82,0,0,0.16,551.75,3122.51,26144287,99.8,0.01,0.17,0.19,551.79,3122.46,26144288,99.71,0,0,0.57,552.62,3121.62,26144289,99.76,0,0,0.3,552.25,3121.97,26144290,99.81,0,0,0.29,552.64,3121.59,26144291,99.83,0,0,0.14,552.61,3121.62,26144292,99.84,0,0,0.16,552.6,3121.62,26144293,99.67,0,0,0.54,552.8,3121.42,26144294,99.83,0,0,0.15,552.32,3121.9,26144295,99.8,0,0,0.3,552.31,3121.93,26144296,99.85,0,0,0.16,552.3,3121.93,26144297,99.82,0,0,0.18,552.28,3121.95,26144298,99.7,0,0,0.5,552.75,3121.47,26144299,99.83,0,0,0.2,552.47,3121.74,26144300,99.8,0,0,0.3,552.48,3121.75,26144301,99.77,0,0,0.16,552.62,3121.62,26144302,99.85,0,0,0.16,552.62,3121.62,26144303,99.74,0,0,0.53,553.05,3121.19,26144304,99.82,0,0,0.2,552.81,3121.42,26144305,99.74,0,0,0.32,552.83,3121.42,26144306,99.84,0,0,0.15,552.81,3121.44,26144307,99.84,0,0,0.14,552.79,3121.45,26144308,99.69,0,0,0.41,553.33,3120.9,26144309,99.85,0,0,0.29,552.48,3121.75,26144310,96.89,5.34,0.06,13.4,560.04,3113.68,26144311,97.32,2.76,0.09,11.86,558.67,3113.03,26144312,99.83,0,0,0.2,555.37,3116.31,26144313,99.69,0,0,0.37,555.76,3115.9,26144314,99.82,0,0,0.35,556.55,3115.11,26144315,99.75,0,0,0.3,557.04,3114.64,26144316,99.84,0,0,0.14,557.19,3114.48,26144317,99.85,0,0,0.16,557.21,3114.47,26144318,99.71,0,0,0.41,557.52,3114.15,26144319,99.68,0,0,0.44,557.19,3114.45,26144320,99.71,0,0,0.32,557.15,3114.51,26144321,99.78,0,0,0.16,557.13,3114.53,26144322,99.84,0,0,0.15,557.11,3114.54,26144323,99.83,0,0,0.13,557.08,3114.57,26144324,99.68,0,0,0.55,556.53,3115.13,26144325,99.79,0,0,0.31,557.3,3114.38,26144326,99.83,0,0,0.18,557.19,3114.48,26144327,99.83,0,0,0.15,556.88,3114.79,26144328,99.84,0,0,0.15,556.95,3114.72,26144329,99.73,0,0,0.58,557.62,3114.04,26144330,99.78,0,0,0.31,556.7,3114.98,26144331,99.81,0,0,0.14,556.66,3115.02,26144332,99.83,0,0,0.16,556.65,3115.03,26144333,99.81,0,0,0.15,556.62,3115.05,26144334,99.68,0,0,0.43,557.6,3114.06,26144335,99.78,0,0,0.46,556.85,3114.83,26144336,99.84,0,0,0.15,556.82,3114.85,26144337,99.86,0,0,0.16,556.8,3114.87,26144338,99.84,0,0,0.14,556.88,3114.79,26144339,99.74,0,0,0.5,557.75,3113.91,26144340,99.79,0,0,0.35,557.18,3114.5,26144341,99.83,0,0,0.16,557.17,3114.5,26144342,99.83,0,0,0.14,557.14,3114.53,26144343,99.85,0,0,0.15,557.13,3114.53,26144344,99.7,0,0,0.43,557.66,3113.99,26144345,99.77,0,0,0.46,557.1,3114.58,26144346,99.85,0,0,0.16,557.09,3114.59,26144347,99.84,0,0,0.14,557.07,3114.61,26144348,99.83,0,0,0.14,557.05,3114.62,26144349,99.61,0,0,0.48,557.89,3113.76,26144350,99.75,0,0,0.53,556.88,3114.77,26144351,99.84,0,0,0.14,556.96,3114.69,26144352,99.84,0,0,0.16,556.93,3114.72,26144353,99.85,0,0.01,0.14,556.91,3114.73,26144354,99.86,0,0,0.14,556.87,3114.77,26144355,99.65,0,0,0.69,557.58,3114.07,26144356,99.83,0,0,0.16,557.1,3114.55,26144357,99.85,0,0,0.19,557.08,3114.56,26144358,99.83,0,0,0.16,557.06,3114.58,26144359,99.85,0,0,0.14,557.04,3114.6,26144360,99.61,0,0,0.69,557.43,3114.22,26144361,99.84,0,0,0.14,557.13,3114.52,26144362,99.85,0,0,0.16,557.18,3114.47,26144363,99.86,0,0,0.15,557.15,3114.5,26144364,99.88,0,0,0.15,557.14,3114.5,26144365,99.66,0,0,0.73,558.03,3113.62,26144366,99.9,0,0,0.15,557.36,3114.29,26144367,99.91,0,0,0.16,557.35,3114.29,26144368,99.91,0,0,0.14,557.32,3114.32,26144369,99.92,0,0,0.15,557.3,3114.34,26144370,99.77,0,0,0.64,557.66,3114,26144371,99.95,0,0,0.21,557.27,3114.38,26144372,99.95,0,0,0.14,557.29,3114.35,26144373,99.93,0,0,0.14,557.42,3114.23,26144374,99.93,0,0,0.15,557.41,3114.23,26144375,99.73,0,0,0.74,557.67,3113.98,26144376,99.91,0,0,0.16,557.13,3114.52,26144377,99.95,0,0,0.14,557.11,3114.54,26144378,99.95,0,0,0.15,557.09,3114.55,26144379,99.87,0,0,0.33,557.33,3114.29,26144380,99.72,0,0,0.71,557.67,3113.96,26144381,99.95,0.02,0.67,0.17,557.33,3114.3,26144382,99.93,0,0,0.19,557.37,3114.26,26144383,99.94,0,0,0.17,557.34,3114.27,26144384,99.93,0,0,0.14,557.33,3114.3,26144385,99.78,0,0,0.51,557.43,3114.22,26144386,99.87,0,0.01,0.39,557.46,3114.18,26144387,99.91,0,0,0.21,557.19,3114.44,26144388,99.93,0,0,0.17,557.19,3114.44,26144389,99.94,0,0,0.16,557.17,3114.46,26144390,99.75,0,0,0.46,558.01,3113.64,26144391,99.89,0,0,0.39,557.4,3114.24,26144392,99.93,0,0,0.17,557.36,3114.27,26144393,99.93,0,0,0.14,557.36,3114.27,26144394,99.94,0,0,0.16,557.32,3114.3,26144395,99.89,0,0,0.31,557.58,3114.06,26144396,99.79,0,0,0.59,557.67,3113.97,26144397,99.92,0,0,0.19,557.05,3114.58,26144398,99.93,0,0,0.16,557.03,3114.6,26144399,99.93,0,0,0.17,557.2,3114.43,26144400,99.85,0,0,0.32,557.67,3113.97,26144401,99.8,0,0,0.64,558.19,3113.45,26144402,99.92,0.02,0.52,0.2,557.89,3113.75,26144403,99.8,0.32,16.56,0.53,557.92,3113.7,26144404,99.93,0,0,0.21,557.79,3113.82,26144405,99.81,0.05,0.82,0.61,556.98,3114.63,26144406,99.71,0.04,1.14,0.91,557.89,3113.69,26144407,99.92,0,0.01,0.2,557.77,3113.8,26144408,99.93,0.03,0.73,0.21,557.84,3113.72,26144409,99.78,0,0,0.32,557.39,3114.16,26144410,99.89,0,0,0.36,557.6,3113.96,26144411,99.81,0,0,0.53,558.05,3113.51,26144412,99.73,0,0,0.23,557.79,3113.76,26144413,99.93,0,0,0.15,557.78,3113.77,26144414,99.93,0,0,0.16,557.75,3113.8,26144415,99.76,0,0,0.35,556.57,3114.99,26144416,99.75,0,0,0.41,557.37,3114.18,26144417,99.92,0,0,0.34,556.98,3114.57,26144418,99.95,0.01,0.02,0.14,556.98,3114.56,26144419,99.93,0,0,0.17,557.08,3114.47,26144420,99.87,0,0,0.3,557.8,3113.76,26144421,99.8,0,0,0.53,558.12,3113.44,26144422,99.93,0,0,0.18,557.75,3113.8,26144423,99.93,0,0,0.21,557.3,3114.25,26144424,99.95,0,0,0.18,556.77,3114.77,26144425,99.88,0,0,0.3,556.13,3115.43,26144426,99.78,0,0,0.5,556.54,3115.02,26144427,99.91,0,0.01,0.27,556.79,3114.77,26144428,99.94,0,0,0.19,556.74,3114.81,26144429,99.94,0,0,0.15,556.73,3114.82,26144430,99.83,0,0,0.32,556.97,3114.6,26144431,99.94,0,0,0.16,557.09,3114.47,26144432,99.78,0,0,0.54,557.5,3114.05,26144433,99.91,0,0,0.2,557.11,3114.44,26144434,99.94,0,0,0.15,557.09,3114.45,26144435,99.81,0,0,0.31,556.86,3114.7,26144436,99.91,0,0,0.15,556.83,3114.73,26144437,99.78,0,0,0.6,557.3,3114.24,26144438,99.93,0,0,0.18,556.77,3114.76,26144439,99.81,0,0,0.3,557,3114.5,26144440,99.84,0,0,0.3,557.29,3114.23,26144441,99.91,0,0,0.16,557.2,3114.31,26144442,99.8,0,0,0.54,557.65,3113.86,26144443,99.94,0,0,0.14,557.35,3114.15,26144444,99.93,0,0,0.16,557.32,3114.18,26144445,99.85,0,0,0.3,557.08,3114.44,26144446,99.92,0,0,0.23,557.03,3114.49,26144447,99.76,0,0,0.63,557.45,3114.06,26144448,99.93,0,0,0.15,557.25,3114.25,26144449,99.89,0,0,0.14,557.22,3114.27,26144450,99.82,0,0,0.3,556.28,3115.23,26144451,99.93,0,0,0.14,556.22,3115.29,26144452,99.78,0,0,0.54,557.27,3114.24,26144453,99.94,0.01,0.1,0.16,557.1,3114.4,26144454,99.92,0,0.01,0.21,556.97,3114.52,26144455,99.84,0,0,0.43,557.2,3114.3,26144456,99.95,0,0,0.15,557.19,3114.31,26144457,99.82,0,0,0.77,557.75,3113.74,26144458,99.92,0,0,0.14,557.07,3114.42,26144459,99.93,0,0,0.15,557.06,3114.43,26144460,99.85,0,0,0.3,557.3,3114.2,26144461,99.91,0,0,0.14,557.29,3114.21,26144462,99.79,0,0,0.48,557.61,3113.88,26144463,99.94,0,0,0.35,557.25,3114.24,26144464,99.91,0,0,0.15,557.21,3114.27,26144465,99.86,0,0,0.31,556.75,3114.75,26144466,99.93,0,0,0.16,556.71,3114.79,26144467,99.79,0,0,0.4,557.14,3114.35,26144468,99.94,0,0,0.28,557.41,3114.08,26144469,99.87,0,0,0.29,557.02,3114.44,26144470,99.88,0,0,0.3,557.33,3114.16,26144471,99.94,0,0,0.16,557.32,3114.18,26144472,99.95,0,0,0.14,557.29,3114.21,26144473,99.79,0,0,0.58,557.4,3114.1,26144474,99.93,0,0,0.14,556.76,3114.73,26144475,99.79,0,0,0.31,557.5,3114.01,26144476,99.92,0,0,0.14,557.48,3114.03,26144477,99.93,0,0,0.19,557.21,3114.28,26144478,99.8,0,0,0.55,557.54,3113.96,26144479,99.92,0.01,0.04,0.17,557.21,3114.28,26144480,99.89,0,0,0.34,557.27,3114.24,26144481,99.93,0,0,0.14,557.25,3114.25,26144482,99.95,0,0,0.14,557.22,3114.27,26144483,95.09,0.39,1.18,258.65,572.56,3097.44,26144484,99.93,0,0.02,0.25,559.88,3111.34,26144485,99.81,0,0,0.31,558.99,3112.24,26144486,99.92,0.01,0.95,0.16,558.85,3112.38,26144487,99.91,0.01,1.33,0.35,558.8,3112.41,26144488,99.8,0,0,0.59,558.79,3112.45,26144489,99.92,0,0,0.16,557.76,3113.52,26144490,99.82,0,0,0.31,557.26,3114.03,26144491,99.95,0,0,0.17,557.22,3114.07,26144492,99.93,0,0,0.15,557.21,3114.07,26144493,99.82,0,0,0.43,557.64,3113.67,26144494,99.94,0,0,0.3,557.43,3113.92,26144495,99.83,0,0,0.29,556.71,3114.65,26144496,99.94,0,0,0.15,556.67,3114.69,26144497,99.93,0,0.01,0.19,556.64,3114.72,26144498,99.79,0,0,0.57,557.16,3114.19,26144499,99.87,0,0,0.31,557.66,3113.66,26144500,99.89,0,0,0.3,557.52,3113.82,26144501,99.94,0,0,0.16,557.49,3113.85,26144502,99.95,0,0,0.19,557.47,3113.86,26144503,99.79,0,0,0.54,557.86,3113.46,26144504,99.95,0,0,0.13,557.67,3113.65,26144505,99.91,0,0,0.34,557.19,3114.15,26144506,99.91,0.01,0.01,0.17,557.12,3114.21,26144507,99.95,0,0,0.19,556.63,3114.7,26144508,99.78,0,0,0.3,557.11,3114.22,26144509,99.95,0,0,0.38,557.12,3114.2,26144510,99.9,0,0,0.29,557.54,3113.8,26144511,99.93,0,0,0.16,557.51,3113.82,26144512,99.9,0,0,0.14,557.49,3113.83,26144513,99.93,0,0,0.14,557.46,3113.86,26144514,99.73,0,0,0.59,557.82,3113.5,26144515,99.88,0,0.01,0.33,557.69,3113.65,26144516,99.92,0.01,0.03,0.16,557.69,3113.64,26144517,99.93,0,0,0.18,557.74,3113.59,26144518,99.92,0.01,0.01,0.14,557.71,3113.61,26144519,99.81,0,0,0.63,557.96,3113.36,26144520,99.88,0,0,0.3,557.14,3114.19,26144521,99.96,0,0,0.17,557.26,3114.07,26144522,99.94,0,0,0.18,557.24,3114.08,26144523,99.94,0,0,0.15,557.24,3114.08,26144524,99.78,0,0,0.58,557.56,3113.76,26144525,99.84,0,0,0.37,557.46,3113.87,26144526,99.94,0,0,0.16,557.43,3113.89,26144527,99.91,0.01,0.13,0.21,557.41,3113.91,26144528,99.88,0,0,0.16,557.41,3113.91,26144529,99.67,0,0,0.64,558.01,3113.28,26144530,99.81,0,0,0.34,557.62,3113.69,26144531,99.95,0,0,0.16,557.59,3113.72,26144532,99.93,0,0,0.14,557.57,3113.74,26144533,99.68,0,0,0.15,557.55,3113.75,26144534,99.8,0,0,0.54,558.07,3113.23,26144535,99.82,0,0,0.31,556.82,3114.49,26144536,99.94,0,0,0.18,556.76,3114.55,26144537,99.95,0,0,0.22,557.2,3114.1,26144538,99.93,0,0,0.14,557.21,3114.09,26144539,99.77,0,0,0.51,558.1,3113.19,26144540,99.83,0,0,0.35,557.69,3113.62,26144541,99.96,0,0,0.15,557.65,3113.66,26144542,99.93,0,0,0.14,557.64,3113.66,26144543,99.89,0,0,0.15,557.61,3113.69,26144544,99.78,0,0,0.42,558,3113.29,26144545,99.86,0,0,0.45,557.83,3113.47,26144546,99.93,0,0,0.15,557.96,3113.34,26144547,99.95,0,0,0.15,557.98,3113.32,26144548,99.95,0,0,0.16,557.95,3113.35,26144549,99.78,0,0,0.4,558.25,3113.04,26144550,99.87,0,0,0.45,557.69,3113.62,26144551,99.94,0,0,0.15,557.66,3113.64,26144552,99.94,0,0,0.14,557.64,3113.66,26144553,99.94,0,0,0.17,557.61,3113.68,26144554,99.81,0,0,0.37,558.29,3113,26144555,99.86,0,0,0.5,557.34,3113.96,26144556,99.93,0,0.01,0.18,557.4,3113.91,26144557,99.56,0,0,0.45,557.8,3113.49,26144558,99.93,0,0,0.21,557.93,3113.35,26144559,99.89,0,0,0.31,558.15,3113.1,26144560,99.69,0,0.01,0.74,558.09,3113.18,26144561,99.92,0,0,0.18,557.63,3113.64,26144562,99.93,0,0,0.14,557.61,3113.66,26144563,99.94,0,0,0.16,557.59,3113.67,26144564,99.9,0,0,0.18,557.57,3113.69,26144565,99.74,0,0,0.7,557.41,3113.86,26144566,99.93,0,0,0.15,557,3114.27,26144567,99.95,0,0,0.18,556.96,3114.3,26144568,99.91,0,0,0.16,556.95,3114.31,26144569,99.91,0,0,0.18,556.92,3114.33,26144570,99.75,0,0,0.71,558.28,3112.99,26144571,99.93,0,0,0.16,558.14,3113.13,26144572,99.92,0,0,0.14,558.12,3113.14,26144573,99.95,0,0,0.16,558.1,3113.16,26144574,99.94,0,0,0.14,558.07,3113.19,26144575,99.76,0,0,0.62,558.73,3112.54,26144576,99.93,0,0,0.27,558.05,3113.22,26144577,99.95,0,0,0.16,558.22,3113.04,26144578,99.95,0,0,0.14,557.89,3113.36,26144579,99.94,0,0,0.14,557.19,3114.06,26144580,99.67,0,0,0.72,557.07,3114.2,26144581,99.95,0,0,0.18,556.69,3114.58,26144582,99.91,0,0,0.16,556.65,3114.61,26144583,99.94,0,0,0.18,556.64,3114.61,26144584,99.94,0,0,0.16,556.61,3114.64,26144585,99.73,0,0,0.78,557.69,3113.58,26144586,99.92,0,0,0.18,557.33,3113.93,26144587,99.92,0,0,0.17,557.32,3113.94,26144588,99.94,0,0,0.2,557.3,3113.96,26144589,99.87,0,0,0.34,557.72,3113.53,26144590,99.76,0,0,0.77,557.66,3113.61,26144591,99.92,0,0,0.21,557.7,3113.56,26144592,99.93,0,0,0.18,557.67,3113.59,26144593,99.91,0,0,0.21,557.64,3113.61,26144594,99.9,0,0,0.18,557.63,3113.65,26144595,99.86,0,0,0.35,557.62,3113.68,26144596,99.8,0,0,0.6,558.07,3113.23,26144597,99.93,0,0,0.22,557.33,3113.96,26144598,99.94,0,0,0.2,557.33,3113.96,26144599,99.92,0,0,0.2,557.29,3113.99,26144600,99.85,0,0,0.36,557.43,3113.87,26144601,99.79,0,0,0.59,558.06,3113.24,26144602,99.93,0,0,0.2,557.48,3113.81,26144603,99.94,0,0,0.17,557.45,3113.84,26144604,99.93,0,0,0.16,557.44,3113.84,26144605,99.88,0,0,0.36,557.43,3113.87,26144606,99.78,0,0,0.55,558.04,3113.26,26144607,99.93,0,0,0.16,557.64,3113.66,26144608,99.93,0,0,0.2,557.62,3113.67,26144609,99.92,0,0,0.18,557.6,3113.69,26144610,99.46,0,0,0.47,557.81,3113.48,26144611,99.8,0,0,0.6,558.01,3113.27,26144612,99.94,0,0,0.18,557.73,3113.55,26144613,99.94,0,0,0.19,557.7,3113.57,26144614,99.94,0,0,0.16,557.69,3113.58,26144615,99.88,0,0.01,0.36,557.68,3113.62,26144616,99.8,0.01,0.01,0.68,558.01,3113.28,26144617,99.57,0.39,2.24,1.7,557.48,3113.65,26144618,99.94,0,0,0.16,557.27,3113.69,26144619,99.87,0,0,0.34,557.98,3112.95,26144620,99.9,0,0,0.32,558.23,3112.72,26144621,99.8,0,0,0.53,558.51,3112.43,26144622,99.94,0,0,0.21,558.13,3112.81,26144623,99.92,0,0,0.17,558.1,3112.84,26144624,99.94,0,0,0.18,558.09,3112.85,26144625,99.85,0,0,0.38,557.88,3113.07,26144626,99.76,0,0,0.59,558.36,3112.59,26144627,99.9,0,0,0.2,558.12,3112.82,26144628,99.93,0,0,0.17,558.01,3112.93,26144629,99.93,0,0,0.18,558,3112.93,26144630,99.85,0,0,0.35,557.04,3113.91,26144631,99.9,0,0,0.15,557,3113.95,26144632,99.78,0,0,0.57,558.03,3112.91,26144633,99.84,0.05,0.15,0.31,557.99,3112.94,26144634,99.92,0,0,0.22,558.05,3112.87,26144635,99.81,0,0,0.4,553.65,3117.52,26144636,99.96,0,0,0.18,553.56,3117.61,26144637,99.8,0,0,0.59,553.89,3117.28,26144638,99.94,0,0,0.16,553.52,3117.64,26144639,99.92,0,0,0.17,553.69,3117.47,26144640,99.84,0,0,0.33,553.97,3117.25,26144641,99.94,0,0,0.17,553.94,3117.28,26144642,99.8,0,0,0.55,554.11,3117.11,26144643,99.93,0,0,0.18,553.65,3117.56,26144644,99.95,0,0,0.17,553.65,3117.56,26144645,99.87,0,0,0.32,553.88,3117.35,26144646,99.93,0,0,0.17,553.87,3117.35,26144647,99.78,0,0,0.53,554.62,3116.59,26144648,99.94,0,0,0.21,554.07,3117.14,26144649,99.86,0,0,0.31,554.05,3117.14,26144650,99.89,0,0,0.31,554.06,3117.14,26144651,99.93,0,0,0.18,554.21,3116.99,26144652,99.78,0,0,0.42,554.47,3116.72,26144653,99.46,0,0,0.31,553.92,3117.27,26144654,99.93,0,0,0.18,553.91,3117.28,26144655,99.86,0,0,0.33,554.15,3117.05,26144656,99.95,0,0,0.17,554.14,3117.06,26144657,99.81,0,0,0.63,554.47,3116.73,26144658,99.93,0,0,0.16,554.1,3117.1,26144659,99.95,0,0,0.17,554.07,3117.12,26144660,99.85,0,0,0.34,554.09,3117.12,26144661,99.93,0,0,0.18,554.06,3117.14,26144662,99.77,0,0,0.36,554.3,3116.89,26144663,99.92,0,0,0.39,553.33,3117.85,26144664,99.95,0,0,0.16,553.45,3117.73,26144665,99.83,0,0,0.33,554.45,3116.75,26144666,99.91,0,0,0.17,554.41,3116.79,26144667,99.91,0,0,0.18,554.38,3116.81,26144668,99.77,0,0,0.56,553.78,3117.4,26144669,99.92,0,0,0.17,553.36,3117.82,26144670,99.85,0,0,0.32,554.08,3117.11,26144671,99.94,0,0,0.18,554.08,3117.12,26144672,99.93,0,0,0.16,554.06,3117.13,26144673,99.81,0,0,0.57,554.53,3116.66,26144674,99.93,0,0,0.17,553.79,3117.4,26144675,99.85,0,0,0.31,553.01,3118.19,26144676,99.93,0,0,0.17,552.97,3118.23,26144677,99.91,0,0,0.17,552.94,3118.25,26144678,99.79,0,0,0.57,553.86,3117.33,26144679,99.87,0,0,0.3,554.13,3117.04,26144680,99.85,0,0,0.32,553.66,3117.52,26144681,99.91,0,0,0.17,553.62,3117.56,26144682,99.9,0,0,0.18,553.6,3117.57,26144683,99.8,0,0,0.42,553.71,3117.46,26144684,99.94,0,0,0.3,553.07,3118.1,26144685,99.88,0,0,0.36,553.31,3117.87,26144686,99.94,0,0,0.17,553.31,3117.87,26144687,99.89,0,0,0.2,553.22,3117.95,26144688,99.79,0,0,0.56,553.3,3117.86,26144689,99.9,0,0,0.17,552.65,3118.52,26144690,99.85,0,0,0.32,553.39,3117.79,26144691,99.92,0,0,0.17,553.37,3117.81,26144692,99.9,0,0,0.18,553.36,3117.81,26144693,99.78,0,0,0.54,554.16,3117.01,26144694,99.91,0,0,0.21,553.55,3117.61,26144695,99.87,0,0,0.33,554.29,3116.89,26144696,99.9,0,0,0.16,554.27,3116.9,26144697,99.93,0,0,0.18,554.34,3116.83,26144698,99.76,0,0,0.42,555.03,3116.14,26144699,99.94,0,0,0.32,554.15,3117.01,26144700,99.76,0,0,0.32,553.45,3117.73,26144701,99.92,0,0,0.17,553.4,3117.78,26144702,99.93,0,0,0.21,553.39,3117.78,26144703,99.95,0,0,0.16,553.36,3117.81,26144704,99.79,0,0,0.6,553.24,3117.92,26144705,99.84,0,0,0.33,554.05,3117.13,26144706,99.93,0,0,0.17,554.07,3117.1,26144707,99.91,0,0,0.17,554.04,3117.13,26144708,99.92,0,0,0.16,554.03,3117.14,26144709,99.65,0,0,0.74,554.77,3116.37,26144710,99.83,0,0.01,0.33,554.26,3116.9,26144711,99.91,0,0.01,0.17,554.15,3117,26144712,99.92,0,0,0.18,554.13,3117.02,26144713,99.93,0,0,0.17,554.11,3117.03,26144714,99.78,0,0,0.56,554.74,3116.4,26144715,99.86,0,0,0.33,554.36,3116.81,26144716,99.92,0,0,0.18,554.34,3116.84,26144717,99.92,0,0,0.18,554.31,3116.86,26144718,99.94,0,0,0.17,554.3,3116.86,26144719,99.78,0,0,0.55,554.62,3116.54,26144720,99.77,0,0,0.31,553.48,3117.69,26144721,99.9,0,0,0.17,553.48,3117.69,26144722,99.92,0,0,0.18,553.45,3117.72,26144723,99.93,0,0,0.16,553.44,3117.72,26144724,99.77,0,0,0.5,554.06,3117.09,26144725,99.86,0,0,0.35,554.63,3116.55,26144726,99.9,0,0,0.16,554.62,3116.56,26144727,99.91,0,0,0.14,554.58,3116.59,26144728,99.91,0,0,0.16,554.57,3116.59,26144729,99.75,0,0,0.53,555.19,3115.97,26144730,99.85,0,0,0.35,554.41,3116.76,26144731,99.9,0,0,0.14,554.46,3116.71,26144732,99.94,0,0,0.17,554.42,3116.74,26144733,99.89,0,0,0.14,554.26,3116.89,26144734,99.75,0,0,0.33,554.02,3117.13,26144735,99.88,0,0,0.55,553.16,3118,26144736,99.89,0,0,0.13,553.13,3118.03,26144737,99.85,0,0,0.14,553.11,3118.05,26144738,99.89,0,0,0.2,553.09,3118.06,26144739,99.65,0,0,0.46,554.14,3116.98,26144740,99.82,0.01,0.01,0.6,553.42,3117.72,26144741,99.9,0,0,0.17,553.39,3117.74,26144742,99.87,0,0,0.14,553.36,3117.77,26144743,99.85,0,0,0.16,553.35,3117.77,26144744,99.85,0,0.02,0.17,553.3,3117.82,26144745,99.67,0,0,0.69,553.66,3117.48,26144746,99.85,0,0,0.15,553.31,3117.83,26144747,99.9,0,0,0.19,553.45,3117.68,26144748,99.94,0,0,0.14,553.42,3117.71,26144749,99.9,0,0,0.15,553.4,3117.73,26144750,99.74,0,0,0.76,554.52,3116.62,26144751,99.9,0,0,0.14,553.87,3117.26,26144752,99.88,0,0.01,0.14,553.84,3117.29,26144753,99.71,0,0,0.19,553.81,3117.31,26144754,99.85,0,0,0.13,553.79,3117.33,26144755,99.67,0,0,0.66,554.28,3116.86,26144756,99.89,0,0,0.21,554.01,3117.12,26144757,99.9,0,0,0.14,554.18,3116.97,26144758,99.85,0,0,0.16,554.16,3116.98,26144759,99.84,0,0.01,0.16,554.13,3117.01,26144760,99.57,0,0,0.77,553.28,3117.87,26144761,99.89,0,0,0.18,552.59,3118.55,26144762,99.86,0,0,0.17,552.58,3118.55,26144763,99.88,0,0,0.16,552.55,3118.58,26144764,99.88,0,0,0.17,552.54,3118.59,26144765,99.68,0,0,0.73,554.17,3116.98,26144766,99.86,0,0,0.13,554.03,3117.11,26144767,99.86,0,0,0.14,554.15,3116.98,26144768,99.81,0,0,0.15,554.15,3116.98,26144769,99.77,0,0,0.32,554.11,3117,26144770,99.6,0,0,0.8,553.86,3117.28,26144771,99.85,0,0,0.13,553.85,3117.28,26144772,99.85,0,0,0.16,553.82,3117.31,26144773,99.69,0,0,0.15,553.79,3117.34,26144774,99.83,0,0,0.14,553.78,3117.34,26144775,99.63,0,0,0.55,554.76,3116.38,26144776,99.86,0,0,0.36,553.77,3117.37,26144777,99.82,0,0,0.17,553.73,3117.4,26144778,99.85,0,0,0.16,553.83,3117.3,26144779,99.83,0,0,0.15,553.91,3117.21,26144780,99.79,0,0,0.31,553.92,3117.22,26144781,99.68,0,0,0.57,554.92,3116.22,26144782,99.84,0,0,0.15,554.35,3116.79,26144783,99.85,0,0,0.15,554.32,3116.8,26144784,99.85,0,0,0.15,554.31,3116.82,26144785,99.79,0,0,0.33,554.05,3117.09,26144786,99.68,0,0,0.56,554.39,3116.75,26144787,99.85,0,0,0.13,554.01,3117.12,26144788,99.83,0,0,0.17,554,3117.13,26144789,99.85,0,0,0.14,554.01,3117.11,26144790,99.75,0.02,0.65,0.5,554.14,3117,26144791,99.69,0,0,0.55,554.42,3116.71,26144792,99.87,0,0,0.16,554.04,3117.08,26144793,99.84,0,0,0.14,554.02,3117.09,26144794,99.77,0.02,0.04,0.39,554.88,3116.2,26144795,99.73,0,0,0.38,559.28,3111.72,26144796,99.69,0,0,0.5,559.76,3111.24,26144797,99.85,0,0,0.23,559.5,3111.49,26144798,99.85,0,0,0.15,559.48,3111.5,26144799,99.73,0,0,0.32,559.31,3111.66,26144800,99.75,0,0,0.32,559.2,3111.78,26144801,99.69,0,0,0.48,560,3110.97,26144802,99.84,0,0,0.21,559.37,3111.61,26144803,99.86,0,0,0.14,559.34,3111.62,26144804,99.85,0,0,0.15,559.32,3111.64,26144805,99.76,0,0.02,0.33,558.35,3112.63,26144806,99.67,0,0.01,0.42,559.01,3111.96,26144807,99.8,0,0,0.32,559.24,3111.73,26144808,99.85,0,0,0.16,559.15,3111.82,26144809,99.83,0,0,0.15,559.11,3111.85,26144810,99.76,0,0,0.34,557.93,3113.04,26144811,99.71,0,0,0.28,558.23,3112.75,26144812,99.82,0,0,0.41,558.82,3112.14,26144813,99.85,0,0,0.14,558.8,3112.17,26144814,98.87,0,0,0.15,558.77,3112.19,26144815,99.75,0,0,0.32,559.5,3111.47,26144816,99.84,0,0,0.14,559.65,3111.32,26144817,99.68,0,0,0.57,559.99,3110.98,26144818,99.86,0,0,0.16,559.6,3111.36,26144819,99.85,0,0,0.14,559.57,3111.38,26144820,99.72,0,0,0.31,559.09,3111.89,26144821,99.85,0,0,0.16,559.06,3111.91,26144822,99.7,0,0,0.57,559.78,3111.18,26144823,99.83,0,0,0.15,559.49,3111.47,26144824,99.85,0,0,0.14,559.51,3111.44,26144825,99.75,0,0,0.32,559.44,3111.53,26144826,99.83,0,0,0.14,559.4,3111.57,26144827,99.66,0,0,0.59,559.91,3111.05,26144828,99.84,0,0,0.16,559.6,3111.36,26144829,99.7,0,0,0.39,559.38,3111.55,26144830,99.79,0,0,0.35,559.58,3111.37,26144831,99.85,0,0,0.18,559.55,3111.4,26144832,99.72,0,0,0.43,560.19,3110.76,26144833,99.85,0,0,0.3,559.51,3111.43,26144834,99.85,0,0,0.14,559.65,3111.3,26144835,99.76,0,0,0.34,558.77,3112.2,26144836,99.8,0,0,0.18,558.65,3112.3,26144837,99.65,0,0,0.52,559.31,3111.64,26144838,99.83,0,0,0.19,559.59,3111.36,26144839,99.84,0,0,0.15,559.56,3111.38,26144840,99.71,0,0,0.3,559.31,3111.65,26144841,99.85,0,0,0.14,559.27,3111.69,26144842,99.69,0,0,0.41,559.65,3111.31,26144843,99.84,0,0,0.29,559.41,3111.54,26144844,99.7,0,0,0.16,559.38,3111.57,26144845,99.8,0,0,0.32,559.15,3111.82,26144846,99.82,0,0,0.16,559.11,3111.85,26144847,95,0.37,0.01,77.82,570.99,3100.02,26144848,99.68,0,0,182.14,561.9,3108.88,26144849,99.84,0,0,0.14,562.03,3108.75,26144850,99.79,0,0,0.36,562.02,3108.78,26144851,99.85,0,0,0.17,561.99,3108.8,26144852,99.85,0,0,0.14,561.97,3108.82,26144853,99.7,0,0,0.61,559.9,3110.96,26144854,99.78,0,0,0.17,559.5,3111.35,26144855,99.77,0,0,0.32,559.74,3111.13,26144856,99.82,0,0,0.15,559.77,3111.1,26144857,99.83,0,0,0.17,559.88,3110.98,26144858,99.68,0,0,0.59,560.32,3110.55,26144859,99.78,0,0.01,0.3,560.06,3110.79,26144860,99.76,0,0,0.32,559.81,3111.06,26144861,99.83,0,0,0.15,559.78,3111.08,26144862,99.85,0,0,0.14,559.75,3111.11,26144863,99.67,0,0,0.57,560.07,3110.79,26144864,99.78,0.01,0.05,0.2,560.13,3110.67,26144865,99.73,0,0,0.34,561.74,3109.05,26144866,99.84,0,0.01,0.16,561.74,3109.06,26144867,99.81,0,0,0.2,561.68,3109.11,26144868,99.7,0,0,0.56,562.61,3108.18,26144869,99.81,0,0,0.18,562.58,3108.21,26144870,99.78,0,0,0.36,562.33,3108.46,26144871,99.82,0,0,0.16,562.3,3108.5,26144872,99.83,0,0,0.14,562.29,3108.5,26144873,99.68,0,0,0.5,562.73,3108.05,26144874,99.83,0,0,0.2,562.49,3108.29,26144875,99.75,0,0,0.33,561.27,3109.52,26144876,99.81,0,0,0.14,561.23,3109.56,26144877,99.84,0,0,0.19,561.22,3109.56,26144878,99.69,0,0,0.59,561.97,3108.81,26144879,99.84,0,0,0.18,562.09,3108.68,26144880,99.71,0,0,0.32,562.92,3107.87,26144881,99.85,0,0,0.16,562.82,3107.97,26144882,99.86,0,0,0.17,562.81,3107.98,26144883,99.65,0,0,0.49,563.2,3107.58,26144884,99.83,0,0,0.2,561.78,3108.99,26144885,99.77,0,0.01,0.33,562.46,3108.33,26144886,99.84,0,0,0.14,562,3108.79,26144887,99.85,0,0,0.16,561.71,3109.08,26144888,99.82,0,0,0.22,563.17,3107.53,26144889,99.56,0,0,0.7,565.34,3105.31,26144890,99.7,0,0,0.38,564.31,3106.35,26144891,99.84,0,0,0.22,564.27,3106.39,26144892,99.85,0,0,0.18,564.25,3106.41,26144893,99.85,0,0,0.21,564.24,3106.41,26144894,99.62,0.01,0.04,0.55,566.33,3104.33,26144895,99.78,0,0,0.37,569.82,3100.71,26144896,99.83,0,0,0.2,566.52,3104.11,26144897,99.78,0.02,0.03,0.64,566.07,3104.5,26144898,99.85,0,0,0.2,566.04,3104.5,26144899,99.68,0.01,0,0.79,566.22,3104.32,26144900,99.66,0.01,0.01,0.4,565.26,3105.25,26144901,93.89,0.43,0.14,68.2,579.13,3090.61,26144902,98.73,2.31,0.13,195.69,578.99,3091.02,26144903,99.83,0,0.03,0.18,577.59,3092.39,26144904,99.68,0.06,0,0.66,579.7,3090.29,26144905,99.74,0,0,0.34,579.85,3090.17,26144906,99.83,0.02,0,0.25,579.67,3090.35,26144907,99.83,0,0,0.2,577.72,3092.31,26144908,99.83,0,0,0.15,577.64,3092.38,26144909,99.68,0.01,0.01,0.64,577.79,3092.24,26144910,99.73,0,0,0.38,577.43,3092.61,26144911,99.84,0,0,0.16,577.47,3092.57,26144912,99.83,0,0,0.16,577.43,3092.61,26144913,99.8,0.01,0.03,0.2,577.36,3092.67,26144914,99.61,0,0,0.63,577.72,3092.3,26144915,99.74,0,0,0.45,577.76,3092.27,26144916,99.84,0,0,0.16,577.62,3092.41,26144917,99.82,0,0,0.15,577.58,3092.45,26144918,99.84,0.01,0,0.22,577.92,3092.1,26144919,99.57,0.01,0,0.61,577.99,3092.03,26144920,99.7,0,0,0.48,577.64,3092.4,26144921,99.88,0.01,0,0.16,577.59,3092.44,26144922,99.9,0.01,0,0.21,577.66,3092.36,26144923,99.86,0.05,3.1,0.32,577.66,3092.35,26144924,99.69,0.01,0.61,0.74,578.08,3091.9,26144925,99.81,0.01,0.16,0.57,577.6,3092.4,26144926,96.01,0.02,0.07,2.23,591.48,3078.48,26144927,88.76,0.03,0.02,0.78,622.08,3047.87,26144928,95.64,0.01,0.01,0.5,592.89,3077.06,26144929,89.06,0.01,0.01,0.8,615.25,3054.69,26144930,81.3,0.04,0.93,3.13,744.76,2925.22,26144931,81.52,0.04,0.04,2.11,992.46,2677.58,26144932,99.71,0,0,0.17,699.11,2970.96,26144933,80.86,0.02,0.05,3.48,756.02,2913.95,26144934,99.84,0.03,0.05,0.21,578.08,3091.85,26144935,99.7,0,0,0.84,579.03,3090.9,26144936,99.73,0,0,0.17,578.52,3091.42,26144937,99.92,0.06,0,0.26,578.58,3091.36,26144938,81.53,0.01,0.03,4.28,981.34,2688.51,26144939,81.91,0.02,0.54,4.43,1042.86,2626.96,26144940,98.94,0,0,9.52,709.24,2960.7,26144941,98.35,0.7,0.05,1.13,598.67,3070.08,26144942,79.44,0.05,0.07,8.62,890.84,2776.01,26144943,99.72,0.01,0.49,0.31,890.25,2776.59,26144944,99.9,0,0,0.21,622.03,3044.81,26144945,99.69,0,0,0.75,623.91,3042.94,26144946,78.06,0.06,1.72,4.53,897.47,2769.31,26144947,99.75,0,0,0.15,985.89,2680.89,26144948,99.91,0,0,0.18,623.62,3043.17,26144949,99.85,0,0,0.35,625.34,3041.38,26144950,99.71,0,0,0.63,625.76,3040.98,26144951,99.82,0,0,0.31,625.05,3041.68,26144952,99.91,0,0,0.17,625.07,3041.67,26144953,99.91,0,0.01,0.22,625.13,3041.6,26144954,99.9,0,0,0.2,625.09,3041.63,26144955,99.7,0,0,0.66,625.68,3041.06,26144956,99.91,0,0,0.31,625.29,3041.45,26144957,99.9,0,0,0.21,625.36,3041.38,26144958,99.9,0,0,0.17,625.4,3041.35,26144959,99.9,0,0,0.17,625.37,3041.38,26144960,99.65,0,0,0.69,626.22,3040.54,26144961,99.8,0.01,0.01,0.29,625.57,3041.19,26144962,99.82,0,0,0.2,625.51,3041.25,26144963,88.13,0.02,0.01,0.68,691.71,2975.01,26144964,88.86,0.01,0.52,3.84,1069.41,2597.31,26144965,99.55,0.02,0,0.7,651.64,3015.11,26144966,99.88,0.01,0.98,0.43,623.66,3043.08,26144967,99.91,0,0,0.2,623.66,3043.08,26144968,99.91,0,0,0.2,623.62,3043.11,26144969,99.93,0,0,0.18,623.59,3043.14,26144970,99.74,0.02,0.08,0.37,623.14,3043.61,26144971,99.74,0,0,0.57,624.14,3042.61,26144972,99.89,0,0,0.17,623.82,3042.93,26144973,99.93,0,0,0.17,623.78,3042.96,26144974,99.92,0,0,0.16,623.8,3042.93,26144975,99.88,0,0,0.36,624.18,3042.58,26144976,99.76,0,0,0.57,624.5,3042.25,26144977,99.92,0,0,0.17,624.12,3042.63,26144978,99.93,0,0,0.18,624.08,3042.66,26144979,99.8,0,0,0.3,624.53,3042.19,26144980,77.28,0.04,0.52,4.44,1020.72,2645.97,26144981,99.56,0,0,0.56,785.05,2881.68,26144982,99.91,0,0,0.14,625.74,3040.99,26144983,99.92,0,0,0.15,625.82,3040.91,26144984,99.92,0,0,0.17,625.86,3040.87,26144985,99.87,0,0,0.33,626.08,3040.65,26144986,99.8,0,0.01,0.53,626.6,3040.13,26144987,99.8,0,0,0.25,626.32,3040.4,26144988,99.71,0.01,0.04,0.15,626.22,3040.49,26144989,99.91,0,0.03,0.15,626.29,3040.42,26144990,99.81,0.01,0,0.32,626.5,3040.22,26144991,95.31,0.01,0,0.73,638.51,3028.22,26144992,81.98,0.01,0.06,4.14,1088.88,2577.79,26144993,90.64,0.01,0,0.48,735.38,2931.32,26144994,86.53,0.01,0.16,3.98,1073.87,2592.79,26144995,79.11,0.03,0.17,4.25,898.47,2768.21,26144996,99.64,0.02,0.01,0.9,1022.89,2643.85,26144997,71.34,0.02,0.31,4.22,779.24,2887.53,26144998,82.22,0.01,0.01,1.41,1030.99,2635.74,26144999,94.69,0.02,0.9,3.72,1023.91,2642.86,26145000,99.78,0,0,0.36,622.89,3043.89,26145001,77.12,0.03,0.53,4.23,840.1,2826.63,26145002,99.71,0.02,0,0.71,947.61,2719.15,26145003,99.92,0,0,0.2,623.98,3042.78,26145004,99.93,0,0,0.14,620.66,3046.21,26145005,99.84,0,0,0.32,621.04,3045.86,26145006,99.94,0,0,0.17,621.01,3045.88,26145007,99.77,0,0,0.53,621.33,3045.56,26145008,99.92,0,0,0.18,620.94,3045.95,26145009,99.85,0,0,0.3,620.88,3046.01,26145010,99.83,0,0,0.25,620.64,3046.28,26145011,99.93,0,0,0.14,620.77,3046.14,26145012,99.79,0,0,0.55,621.58,3045.33,26145013,99.9,0,0,0.14,621.24,3045.66,26145014,99.91,0,0,0.15,621.22,3045.68,26145015,99.86,0,0,0.26,621.45,3045.47,26145016,99.92,0,0,0.14,621.42,3045.49,26145017,99.77,0,0,0.66,621.74,3045.16,26145018,99.93,0,0,0.15,621.51,3045.39,26145019,99.87,0,0,0.14,620.93,3045.96,26145020,99.86,0,0,0.27,620.75,3046.16,26145021,99.94,0.01,0.01,0.16,620.72,3046.19,26145022,99.8,0,0,0.4,621.52,3045.38,26145023,99.93,0,0,0.3,620.89,3046,26145024,99.9,0,0,0.14,620.98,3045.91,26145025,99.81,0,0,0.33,621.04,3045.87,26145026,99.95,0,0,0.15,621,3045.91,26145027,99.79,0,0,0.55,621.69,3045.21,26145028,99.92,0,0,0.14,621.42,3045.48,26145029,99.91,0,0,0.15,621.39,3045.51,26145030,99.88,0,0,0.26,621.39,3045.52,26145031,99.93,0,0,0.17,621.48,3045.43,26145032,99.79,0,0,0.4,622.01,3044.89,26145033,99.92,0,0,0.34,621.48,3045.42,26145034,99.92,0,0,0.21,621.45,3045.45,26145035,99.78,0,0,0.34,620.47,3046.44,26145036,99.94,0,0,0.21,620.29,3046.61,26145037,99.75,0,0,0.38,620.09,3046.81,26145038,99.89,0,0,0.36,620.53,3046.36,26145039,99.79,0,0,0.32,621.01,3045.86,26145040,99.83,0,0,0.26,620.78,3046.11,26145041,99.94,0,0,0.16,620.66,3046.22,26145042,99.92,0,0,0.15,619.68,3047.19,26145043,99.76,0,0,0.6,620.86,3046.02,26145044,99.93,0,0,0.18,620.71,3046.16,26145045,99.8,0,0,0.31,619.83,3047.06,26145046,99.92,0,0.01,0.18,619.77,3047.11,26145047,99.89,0,0,0.21,619.73,3047.14,26145048,99.8,0,0,0.59,620.26,3046.61,26145049,99.91,0,0,0.21,619.9,3046.96,26145050,99.82,0,0,0.27,619.66,3047.22,26145051,99.92,0,0,0.17,619.73,3047.15,26145052,99.93,0,0,0.14,619.77,3047.1,26145053,99.77,0,0,0.58,621.3,3045.57,26145054,99.88,0,0,0.14,620.94,3045.93,26145055,99.85,0,0,0.25,620.6,3046.28,26145056,99.93,0,0,0.14,620.16,3046.72,26145057,99.92,0,0,0.2,620.13,3046.75,26145058,99.73,0,0,0.61,620.97,3045.9,26145059,99.93,0,0,0.16,620.77,3046.1,26145060,99.88,0,0,0.27,620.53,3046.35,26145061,99.85,0,0,0.17,620.48,3046.39,26145062,99.89,0,0,0.14,620.45,3046.42,26145063,99.77,0,0,0.42,620.85,3046.01,26145064,99.9,0,0,0.29,620.63,3046.23,26145065,99.87,0,0,0.27,620.75,3046.13,26145066,99.9,0,0,0.14,620.78,3046.1,26145067,99.9,0,0,0.16,620.74,3046.13,26145068,99.78,0,0,0.4,621.11,3045.76,26145069,99.83,0,0,0.45,621.4,3045.44,26145070,99.83,0,0.01,0.28,621.15,3045.71,26145071,99.89,0,0,0.14,621.22,3045.64,26145072,99.91,0,0,0.14,621.07,3045.78,26145073,99.77,0,0,0.42,621.38,3045.46,26145074,99.93,0,0,0.27,620.4,3046.44,26145075,99.83,0,0,0.27,620.44,3046.42,26145076,99.93,0,0,0.15,620.4,3046.45,26145077,99.9,0,0,0.2,620.37,3046.48,26145078,99.78,0,0,0.3,620.88,3045.97,26145079,99.86,0,0,0.39,620.5,3046.34,26145080,99.85,0,0,0.25,620.74,3046.13,26145081,99.85,0.01,0.01,0.16,620.7,3046.17,26145082,99.92,0,0,0.14,620.67,3046.2,26145083,99.9,0,0,0.15,620.64,3046.22,26145084,99.75,0,0,0.53,620.57,3046.29,26145085,99.76,0,0,0.26,621.05,3045.83,26145086,99.92,0,0,0.17,620.99,3045.88,26145087,99.92,0,0,0.14,620.96,3045.91,26145088,99.9,0,0,0.15,620.92,3045.95,26145089,99.78,0,0,0.55,621.49,3045.37,26145090,99.82,0,0,0.25,621.37,3045.51,26145091,99.91,0,0,0.16,621.46,3045.41,26145092,99.91,0,0,0.16,621.49,3045.38,26145093,99.9,0,0,0.14,620.48,3046.39,26145094,99.78,0,0,0.5,620.92,3045.94,26145095,99.8,0,0,0.31,619.49,3047.39,26145096,99.89,0,0,0.15,619.42,3047.45,26145097,99.88,0,0,0.16,619.39,3047.48,26145098,99.93,0,0,0.15,619.47,3047.39,26145099,99.68,0,0,0.68,621.18,3045.66,26145100,99.87,0,0.01,0.25,620.47,3046.38,26145101,99.91,0,0,0.16,620.42,3046.43,26145102,99.91,0,0,0.14,620.39,3046.46,26145103,99.84,0,0,0.14,620.36,3046.49,26145104,99.72,0,0,0.5,621.06,3045.78,26145105,99.84,0,0,0.31,620.78,3046.07,26145106,99.9,0,0.01,0.14,620.74,3046.11,26145107,99.86,0,0,0.2,620.54,3046.31,26145108,99.93,0,0,0.14,620.42,3046.42,26145109,99.79,0,0,0.45,620.83,3046.01,26145110,99.87,0,0,0.43,621.37,3045.48,26145111,99.9,0,0,0.16,621.5,3045.35,26145112,99.9,0,0,0.14,620.89,3045.95,26145113,99.89,0,0,0.15,620.48,3046.36,26145114,99.91,0,0,0.14,620.44,3046.39,26145115,99.73,0,0,0.64,620.18,3046.67,26145116,99.92,0,0,0.17,619.6,3047.25,26145117,99.92,0,0,0.14,619.71,3047.13,26145118,99.9,0,0,0.14,619.77,3047.07,26145119,99.93,0,0,0.15,619.74,3047.1,26145120,99.48,0,0,0.67,620.44,3046.41,26145121,99.92,0,0,0.14,619.7,3047.14,26145122,99.9,0,0,0.14,619.66,3047.18,26145123,99.9,0,0,0.16,619.63,3047.21,26145124,99.91,0,0,0.14,619.78,3047.05,26145125,99.66,0,0,0.71,621.85,3045,26145126,99.92,0,0,0.14,621.44,3045.4,26145127,99.89,0,0,0.16,621.41,3045.44,26145128,99.9,0,0,0.14,621.37,3045.47,26145129,99.67,0,0,0.29,621.37,3045.46,26145130,99.71,0,0,0.66,622.2,3044.65,26145131,99.92,0,0,0.14,621.74,3045.12,26145132,99.92,0,0,0.16,621.29,3045.57,26145133,99.93,0,0,0.14,620.69,3046.16,26145134,99.89,0,0,0.15,620.66,3046.2,26145135,99.61,0,0,0.67,620.85,3046.03,26145136,99.93,0,0,0.14,620.68,3046.19,26145137,99.91,0,0,0.19,620.52,3046.35,26145138,99.91,0,0,0.14,620.49,3046.38,26145139,99.9,0,0,0.15,620.45,3046.41,26145140,99.7,0,0,0.68,621.03,3045.85,26145141,99.9,0.01,0.01,0.16,621.14,3045.74,26145142,99.89,0,0,0.15,621.1,3045.77,26145143,99.93,0,0,0.14,621.2,3045.67,26145144,99.9,0,0,0.17,621.22,3045.64,26145145,99.76,0,0,0.55,622.09,3044.79,26145146,99.92,0,0,0.32,621.19,3045.69,26145147,99.92,0,0,0.17,621.15,3045.72,26145148,99.91,0,0,0.17,621.12,3045.75,26145149,99.92,0,0,0.17,621.09,3045.78,26145150,99.88,0,0,0.28,621.72,3045.16,26145151,99.75,0,0,0.62,621.88,3044.99,26145152,99.93,0,0,0.14,621.32,3045.55,26145153,99.91,0,0,0.15,620.47,3046.4,26145154,99.9,0,0,0.17,620.43,3046.43,26145155,99.85,0,0,0.31,621.15,3045.73,26145156,99.74,0,0,0.55,621.48,3045.39,26145157,99.92,0,0,0.14,621.22,3045.65,26145158,99.93,0,0,0.15,621.25,3045.61,26145159,99.85,0,0,0.29,621.21,3045.62,26145160,99.86,0,0,0.3,621.45,3045.4,26145161,99.71,0,0,0.54,620.98,3045.87,26145162,99.91,0,0,0.14,620.4,3046.44,26145163,99.92,0,0,0.14,620.37,3046.47,26145164,99.92,0,0,0.15,620.46,3046.38,26145165,99.84,0,0,0.27,621.24,3045.61,26145166,99.75,0,0.01,0.56,621.88,3044.97,26145167,99.88,0,0,0.19,621.52,3045.32,26145168,99.91,0,0,0.14,621.39,3045.45,26145169,99.88,0,0,0.15,621.36,3045.48,26145170,99.84,0,0,0.26,621.59,3045.26,26145171,99.74,0,0,0.55,622.52,3044.34,26145172,99.89,0,0,0.16,621.97,3044.89,26145173,99.9,0,0,0.14,621.15,3045.7,26145174,99.93,0,0,0.15,620.92,3045.93,26145175,99.81,0,0,0.27,621,3045.87,26145176,99.79,0,0,0.4,621.23,3045.63,26145177,98.2,0,0,0.31,620.84,3046.01,26145178,99.91,0,0,0.14,620.97,3045.88,26145179,99.9,0,0,0.15,620.97,3045.88,26145180,99.81,0,0,0.25,620.73,3046.13,26145181,99.75,0,0,0.55,621.25,3045.61,26145182,99.93,0,0,0.13,621.4,3045.46,26145183,99.91,0,0,0.16,621.36,3045.49,26145184,99.91,0,0,0.14,621.33,3045.52,26145185,99.78,0,0,0.27,620.96,3045.9,26145186,99.79,0,0.01,0.47,621.29,3045.57,26145187,99.93,0,0,0.36,620.91,3045.95,26145188,99.89,0,0,0.15,620.87,3045.98,26145189,99.85,0,0,0.29,621.8,3045.05,26145190,99.86,0,0,0.26,621.45,3045.41,26145191,99.91,0,0,0.16,621.48,3045.38,26145192,99.75,0,0,0.53,622.27,3044.59,26145193,99.93,0,0,0.15,621.48,3045.38,26145194,99.89,0,0,0.15,620.89,3045.97,26145195,99.86,0,0,0.3,621.12,3045.75,26145196,99.92,0,0,0.16,621.08,3045.78,26145197,99.67,0,0,0.6,621.23,3045.63,26145198,99.93,0,0,0.14,620.74,3046.12,26145199,99.86,0,0,0.14,620.7,3046.15,26145200,99.87,0,0,0.26,620.93,3045.93,26145201,99.92,0.01,0.01,0.14,620.9,3045.97,26145202,99.77,0,0,0.58,621.29,3045.57,26145203,99.91,0,0,0.15,620.85,3046.01,26145204,99.93,0,0,0.14,620.99,3045.88,26145205,99.86,0,0,0.26,620.5,3046.39,26145206,99.9,0,0,0.16,620.46,3046.43,26145207,99.75,0,0,0.61,620.77,3046.1,26145208,99.92,0,0,0.17,620.38,3046.49,26145209,99.9,0,0,0.18,620.35,3046.51,26145210,99.77,0,0,0.32,620.7,3046.18,26145211,99.91,0,0,0.18,620.73,3046.15,26145212,96.33,0.07,0.01,77.79,631.36,3037.07,26145213,99.84,0,0,63.86,623.96,3042.97,26145214,99.87,0,0,0.17,622.97,3043.96,26145215,99.85,0,0,0.31,622.96,3043.98,26145216,99.92,0,0,0.17,622.92,3044.02,26145217,99.71,0,0,0.46,622.89,3044.05,26145218,99.89,0,0,0.33,620.82,3046.15,26145219,99.81,0,0,0.41,620.64,3046.31,26145220,99.87,0,0,0.34,620.85,3046.11,26145221,99.91,0,0,0.2,620.81,3046.14,26145222,99.76,0,0,0.44,621.24,3045.71,26145223,99.9,0,0,0.36,620.5,3046.44,26145224,99.92,0,0,0.17,620.47,3046.47,26145225,99.87,0,0,0.3,620.9,3046.06,26145226,99.91,0.01,0.01,0.17,620.87,3046.09,26145227,99.87,0,0,0.43,620.68,3046.26,26145228,99.69,0,0,0.56,621.11,3045.83,26145229,99.9,0,0,0.16,620.75,3046.18,26145230,99.81,0,0,0.31,620.51,3046.43,26145231,99.92,0,0,0.2,620.57,3046.37,26145232,99.9,0,0,0.16,620.63,3046.31,26145233,99.74,0,0,0.59,620.5,3046.45,26145234,99.92,0,0,0.16,619.5,3047.46,26145235,99.83,0,0,0.29,619.57,3047.41,26145236,99.89,0,0,0.17,619.56,3047.41,26145237,99.93,0,0,0.2,619.52,3047.44,26145238,99.73,0,0,0.59,620.63,3046.33,26145239,99.93,0,0,0.17,620.14,3046.81,26145240,99.87,0,0,0.28,620.87,3046.11,26145241,99.93,0,0,0.16,620.84,3046.13,26145242,99.91,0,0,0.14,620.81,3046.15,26145243,99.81,0,0,0.56,621.46,3045.51,26145244,99.92,0,0,0.13,620.99,3045.97,26145245,99.85,0,0,0.27,620.75,3046.23,26145246,99.93,0.01,0.01,0.19,620.79,3046.18,26145247,99.95,0,0,0.17,620.77,3046.2,26145248,99.76,0,0,0.46,621.17,3045.79,26145249,99.83,0,0,0.42,621.54,3045.39,26145250,99.86,0.01,0.04,0.34,621.58,3045.37,26145251,99.92,0,0,0.16,621.5,3045.44,26145252,99.92,0,0,0.17,621.48,3045.46,26145253,99.78,0,0,0.4,621.71,3045.23,26145254,99.93,0,0,0.28,621.11,3045.84,26145255,99.9,0,0,0.27,620.87,3046.09,26145256,99.93,0,0,0.15,620.81,3046.15,26145257,99.9,0,0,0.21,620.78,3046.18,26145258,99.74,0,0,0.54,621.04,3045.91,26145259,99.93,0,0,0.18,620.48,3046.47,26145260,99.82,0,0,0.27,620,3046.97,26145261,99.87,0.01,0.01,0.14,620.13,3046.83,26145262,99.91,0,0,0.16,620.1,3046.86,26145263,99.73,0,0,0.37,620.84,3046.12,26145264,99.87,0,0,0.39,621.03,3045.92,26145265,99.8,0,0,0.34,621.26,3045.71,26145266,99.93,0,0,0.18,621.23,3045.74,26145267,99.91,0,0,0.21,621.3,3045.66,26145268,99.92,0,0,0.21,621.35,3045.61,26145269,99.73,0,0,0.61,621.72,3045.23,26145270,99.85,0,0,0.28,621.39,3045.58,26145271,99.93,0,0,0.15,621.27,3045.69,26145272,99.9,0,0,0.17,621.24,3045.72,26145273,99.93,0,0,0.14,621.2,3045.75,26145274,99.74,0,0.01,0.57,621.53,3045.42,26145275,99.81,0,0,0.33,621.18,3045.78,26145276,99.95,0,0,0.12,620.59,3046.37,26145277,99.9,0,0,0.2,620.56,3046.4,26145278,99.89,0,0,0.18,620.52,3046.43,26145279,99.71,0,0,0.7,621.29,3045.64,26145280,99.78,0,0,0.29,621.07,3045.88,26145281,99.9,0,0,0.16,621.11,3045.83,26145282,99.85,0,0,0.14,621.09,3045.84,26145283,99.9,0,0,0.18,621.06,3045.87,26145284,99.77,0,0,0.53,621.47,3045.45,26145285,99.86,0,0,0.32,621.27,3045.68,26145286,99.88,0.01,0.01,0.12,621.23,3045.71,26145287,99.91,0,0,0.21,621.32,3045.62,26145288,99.89,0,0,0.16,621.35,3045.58,26145289,99.74,0,0,0.55,622.04,3044.88,26145290,99.8,0,0,0.31,621.3,3045.64,26145291,99.86,0,0,0.13,621.26,3045.68,26145292,99.85,0,0,0.16,621.23,3045.71,26145293,99.88,0,0,0.16,621.2,3045.73,26145294,99.71,0,0,0.33,621.74,3045.18,26145295,99.75,0,0,0.48,622.08,3044.86,26145296,99.85,0,0.01,0.19,621.14,3045.8,26145297,99.91,0,0,0.15,621.01,3045.92,26145298,99.86,0,0,0.14,620.98,3045.95,26145299,99.88,0,0,0.16,620.94,3045.98,26145300,99.59,0,0,0.66,621.23,3045.71,26145301,99.88,0,0,0.16,620.85,3046.09,26145302,99.83,0,0,0.14,620.82,3046.12,26145303,99.86,0,0,0.15,620.78,3046.15,26145304,99.85,0,0,0.14,620.75,3046.18,26145305,99.57,0,0,0.69,621.37,3045.57,26145306,99.9,0,0,0.14,621.04,3045.9,26145307,99.88,0,0,0.16,621.09,3045.84,26145308,99.85,0,0,0.14,621.04,3045.89,26145309,99.71,0,0,0.31,621.48,3045.42,26145310,99.59,0,0,0.67,622.08,3044.84,26145311,99.86,0,0,0.14,621.43,3045.48,26145312,99.84,0,0,0.16,621.51,3045.4,26145313,99.86,0,0,0.13,621.56,3045.35,26145314,99.85,0,0,0.15,621.53,3045.37,26145315,99.57,0,0,0.6,622.41,3044.51,26145316,99.86,0,0,0.29,621.06,3045.85,26145317,99.87,0,0,0.23,620.71,3046.2,26145318,99.84,0,0,0.14,620.68,3046.22,26145319,98.72,0,0,0.16,620.78,3046.12,26145320,99.56,0,0,0.64,621.12,3045.79,26145321,99.86,0.01,0.01,0.2,620.56,3046.35,26145322,99.83,0,0,0.14,620.53,3046.38,26145323,99.83,0,0.01,0.15,620.48,3046.42,26145324,99.84,0,0,0.13,620.44,3046.45,26145325,98.49,0,0,15.3,622.69,3044.66,26145326,99.85,0,0,0.31,621.14,3045.77,26145327,99.87,0,0,0.14,621.1,3045.8,26145328,99.33,0,0,0.15,621.72,3045.17,26145329,99.42,0,0,1.14,621.57,3045.32,26145330,99.59,0,0,0.57,621.1,3045.83,26145331,99.82,0,0,0.27,621.61,3045.32,26145332,99.86,0,0,0.16,621.64,3045.29,26145333,99.86,0,0,0.14,621.61,3045.31,26145334,99.84,0,0,0.15,621.57,3045.35,26145335,99.75,0,0,0.3,621.93,3045.01,26145336,99.72,0,0,0.53,620.57,3046.36,26145337,99.83,0,0,0.19,620.02,3046.91,26145338,99.85,0,0,0.15,620.14,3046.79,26145339,99.78,0,0,0.31,621.62,3045.29,26145340,99.8,0,0,0.33,621.38,3045.54,26145341,99.67,0,0,0.55,621.89,3045.02,26145342,99.86,0,0,0.14,621.56,3045.35,26145343,99.85,0,0,0.15,621.52,3045.38,26145344,99.83,0,0,0.14,621.49,3045.41,26145345,99.78,0,0,0.27,621.37,3045.54,26145346,99.69,0.01,0.01,0.57,621.54,3045.37,26145347,99.8,0,0,0.18,621.35,3045.56,26145348,99.83,0,0,0.17,621.55,3045.35,26145349,99.84,0,0,0.15,621.52,3045.38,26145350,99.8,0,0,0.37,621.76,3045.16,26145351,99.7,0,0,0.57,622.6,3044.31,26145352,99.82,0,0,0.14,621.76,3045.15,26145353,99.84,0,0,0.16,621.6,3045.3,26145354,99.84,0,0,0.14,621.57,3045.33,26145355,99.76,0,0,0.32,621.57,3045.35,26145356,99.69,0,0,0.5,621.88,3045.04,26145357,99.86,0,0,0.21,620.51,3046.39,26145358,99.84,0,0,0.15,620.6,3046.31,26145359,99.86,0,0,0.15,620.64,3046.26,26145360,99.77,0,0,0.34,620.87,3046.04,26145361,99.68,0,0,0.39,621.06,3045.85,26145362,99.83,0,0,0.34,620.56,3046.34,26145363,99.83,0,0,0.14,620.53,3046.37,26145364,99.87,0,0,0.16,620.5,3046.4,26145365,99.77,0,0,0.34,621.1,3045.82,26145366,99.7,0,0,0.59,621.59,3045.32,26145367,99.84,0,0,0.14,620.16,3046.75,26145368,99.84,0,0,0.14,620.12,3046.78,26145369,99.69,0,0,0.31,620.61,3046.28,26145370,99.75,0,0,0.3,621.33,3045.58,26145371,99.72,0,0,0.42,621.64,3045.26,26145372,99.83,0,0,0.28,621.6,3045.3,26145373,99.85,0,0,0.16,621.64,3045.26,26145374,99.82,0,0,0.15,621.61,3045.3,26145375,99.74,0,0,0.31,621.12,3045.81,26145376,99.68,0,0,0.5,621.49,3045.44,26145377,99.85,0,0,0.29,620.93,3045.99,26145378,99.82,0,0,0.15,620.53,3046.38,26145379,99.85,0,0,0.15,620.65,3046.26,26145380,99.71,0,0,0.31,620.88,3046.05,26145381,99.81,0.01,0.01,0.15,620.85,3046.07,26145382,99.66,0,0,0.54,621.4,3045.51,26145383,99.84,0,0,0.14,621.02,3045.89,26145384,99.84,0,0,0.17,620.99,3045.92,26145385,99.82,0,0,0.32,621.16,3045.76,26145386,99.83,0,0,0.16,621.14,3045.78,26145387,99.71,0,0,0.6,621.23,3045.69,26145388,99.85,0,0,0.14,620.58,3046.33,26145389,99.84,0,0,0.14,620.55,3046.38,26145390,99.82,0,0,0.36,621.51,3045.44,26145391,99.83,0,0,0.16,621.52,3045.42,26145392,99.7,0,0,0.54,622,3044.94,26145393,99.83,0,0,0.16,621.61,3045.32,26145394,99.83,0,0,0.14,621.57,3045.35,26145395,99.79,0,0,0.3,621.81,3045.13,26145396,99.83,0,0,0.16,621.77,3045.17,26145397,99.68,0,0,0.55,621.36,3045.58,26145398,99.83,0,0,0.16,620.1,3046.83,26145399,99.7,0,0,0.3,620.87,3046.04,26145400,99.77,0,0,0.33,621.11,3045.81,26145401,99.87,0,0,0.16,621.08,3045.84,26145402,99.7,0,0,0.57,621.85,3045.06,26145403,99.83,0,0,0.18,621.26,3045.65,26145404,99.82,0,0,0.15,621.23,3045.69,26145405,99.75,0,0,0.33,620.89,3046.04,26145406,99.82,0.01,0.01,0.14,620.87,3046.06,26145407,99.69,0,0,0.63,621.42,3045.51,26145408,99.85,0,0,0.15,621.3,3045.63,26145409,99.83,0,0,0.15,621.26,3045.66,26145410,99.8,0,0,0.29,621.25,3045.69,26145411,99.84,0,0,0.15,621.35,3045.58,26145412,99.69,0,0,0.42,621.74,3045.19,26145413,99.85,0,0,0.29,621.11,3045.81,26145414,99.84,0,0,0.14,621.07,3045.84,26145415,99.76,0,0,0.39,621.85,3045.09,26145416,99.81,0,0,0.21,621.78,3045.15,26145417,99.68,0,0,0.55,622.09,3044.83,26145418,99.85,0,0,0.19,621.17,3045.75,26145419,99.84,0,0,0.15,621.13,3045.78,26145420,99.73,0,0,0.3,620.88,3046.05,26145421,99.84,0,0,0.16,620.84,3046.09,26145422,99.82,0,0,0.14,620.8,3046.12,26145423,99.7,0,0,0.56,620.95,3045.96,26145424,99.83,0,0,0.15,620.27,3046.64,26145425,99.78,0,0,0.36,621.37,3045.56,26145426,99.83,0,0,0.18,621.37,3045.56,26145427,99.83,0,0,0.16,621.33,3045.59,26145428,99.68,0,0,0.58,621.64,3045.28,26145429,99.68,0,0,0.31,621.49,3045.4,26145430,99.8,0,0,0.36,621.51,3045.39,26145431,99.83,0,0,0.16,621.63,3045.27,26145432,99.86,0,0,0.15,621.6,3045.3,26145433,99.7,0,0,0.6,621.91,3044.98,26145434,99.84,0,0,0.14,621.51,3045.37,26145435,99.76,0,0,0.3,621.75,3045.16,26145436,99.83,0,0,0.13,621.75,3045.16,26145437,99.84,0,0,0.21,621.87,3045.03,26145438,99.72,0,0,0.52,622.2,3044.7,26145439,99.84,0,0,0.2,621.06,3045.83,26145440,99.32,0,0,0.29,620.33,3046.58,26145441,99.83,0.01,0.01,0.16,620.27,3046.63,26145442,99.83,0,0,0.14,620.24,3046.66,26145443,99.7,0,0,0.5,620.98,3045.91,26145444,99.85,0,0,0.2,621.09,3045.8,26145445,99.74,0,0,0.35,621.32,3045.57,26145446,99.84,0,0,0.16,621.28,3045.61,26145447,99.86,0,0,0.14,621.25,3045.64,26145448,99.71,0,0,0.49,621.75,3045.13,26145449,99.83,0,0,0.2,621.78,3045.1,26145450,99.78,0,0,0.31,620.89,3046.02,26145451,99.86,0,0,0.14,620.84,3046.07,26145452,99.85,0,0,0.15,620.8,3046.1,26145453,99.72,0,0,0.4,621.4,3045.5,26145454,99.85,0,0,0.29,621.97,3044.93,26145455,99.73,0,0,0.31,621.28,3045.64,26145456,99.83,0,0,0.16,621.33,3045.58,26145457,99.84,0,0,0.14,621.37,3045.53,26145458,99.7,0,0,0.41,621.86,3045.05,26145459,99.69,0,0,0.46,621.54,3045.33,26145460,99.79,0,0,0.3,621.55,3045.34,26145461,99.83,0,0,0.15,621.5,3045.39,26145462,99.83,0,0,0.16,621.47,3045.41,26145463,99.83,0,0,0.15,621.6,3045.28,26145464,99.7,0,0,0.63,621.95,3044.92,26145465,99.69,0,0,0.31,621.11,3045.78,26145466,99.85,0.01,0.01,0.14,621.06,3045.83,26145467,99.83,0,0,0.17,621.03,3045.86,26145468,99.82,0,0,0.16,620.99,3045.89,26145469,99.42,0,0,0.57,622.06,3044.81,26145470,99.77,0,0,0.29,621.87,3045.02,26145471,99.83,0,0,0.16,621.83,3045.06,26145472,99.85,0,0,0.14,621.79,3045.09,26145473,99.85,0,0,0.15,621.76,3045.12,26145474,99.7,0,0,0.57,622.58,3044.3,26145475,99.84,0,0,0.31,621.97,3044.94,26145476,99.88,0,0,0.16,622.06,3044.84,26145477,99.89,0,0,0.14,622.09,3044.81,26145478,99.88,0,0,0.16,622.06,3044.84,26145479,99.79,0,0,0.39,621.92,3044.97,26145480,99.87,0,0,0.43,621.28,3045.63,26145481,99.47,0,0,0.15,621.25,3045.66,26145482,99.93,0,0,0.16,621.24,3045.66,26145483,99.93,0,0,0.14,621.36,3045.53,26145484,99.8,0,0,0.57,621.55,3045.34,26145485,99.87,0,0,0.35,621.55,3045.36,26145486,99.92,0,0,0.17,621.52,3045.38,26145487,99.94,0,0,0.14,621.49,3045.41,26145488,99.94,0,0,0.17,621.45,3045.44,26145489,99.72,0,0,0.72,622.05,3044.82,26145490,99.84,0,0,0.31,622.09,3044.8,26145491,99.94,0,0,0.14,622.06,3044.82,26145492,99.93,0,0,0.19,622.03,3044.84,26145493,99.92,0,0,0.16,622,3044.87,26145494,99.8,0,0,0.41,622.41,3044.49,26145495,99.85,0,0,0.45,621.98,3044.94,26145496,99.94,0,0,0.17,622.04,3044.88,26145497,99.93,0,0,0.19,622.07,3044.84,26145498,99.94,0,0,0.15,622.05,3044.86,26145499,99.8,0,0,0.43,622.19,3044.71,26145500,99.82,0,0,0.43,621.27,3045.65,26145501,99.93,0.01,0.01,0.16,621.23,3045.68,26145502,99.9,0,0,0.14,621.2,3045.71,26145503,99.92,0,0,0.15,621.32,3045.59,26145504,99.81,0,0,0.3,621.6,3045.3,26145505,99.85,0,0,0.53,620.61,3046.31,26145506,99.94,0,0,0.14,620.56,3046.35,26145507,99.9,0,0,0.16,620.53,3046.38,26145508,99.92,0,0,0.14,620.49,3046.41,26145509,99.91,0,0,0.15,620.48,3046.42,26145510,99.57,0,0,0.71,621.77,3045.15,26145511,99.94,0,0,0.16,621.35,3045.56,26145512,99.92,0,0,0.15,621.32,3045.59,26145513,99.95,0,0,0.15,621.28,3045.62,26145514,99.93,0,0,0.13,621.24,3045.65,26145515,99.72,0,0,0.68,622,3044.92,26145516,99.92,0,0,0.14,621.81,3045.11,26145517,99.95,0,0,0.16,621.85,3045.06,26145518,99.94,0,0,0.16,621.82,3045.09,26145519,99.8,0,0,0.34,621.55,3045.33,26145520,99.74,0,0,0.71,621.42,3045.47,26145521,99.93,0,0,0.14,620.99,3045.9,26145522,99.95,0,0,0.17,620.96,3045.92,26145523,99.94,0,0,0.14,621.05,3045.84,26145524,99.92,0,0,0.14,621.09,3045.8,26145525,99.63,0,0,0.81,571.75,3095.58,26145526,99.92,0,0,0.18,555.34,3112.26,26145527,99.91,0,0,0.17,555.23,3112.36,26145528,99.93,0.01,0.01,0.18,555.12,3112.46,26145529,99.94,0,0,0.17,555.19,3112.4,26145530,99.73,0,0,0.7,555.97,3111.64,26145531,99.94,0,0,0.17,555.4,3112.2,26145532,99.93,0,0,0.14,555.38,3112.22,26145533,99.94,0,0,0.17,555.35,3112.25,26145534,99.91,0,0,0.14,555.34,3112.25,26145535,99.78,0,0,0.61,555.9,3111.71,26145536,99.94,0,0,0.31,555.33,3112.28,26145537,99.91,0,0,0.14,555.31,3112.3,26145538,99.91,0,0,0.14,555.29,3112.31,26145539,99.92,0,0,0.14,555.26,3112.33,26145540,99.68,0,0,0.56,554.75,3112.87,26145541,98.66,0,0,0.28,554.45,3113.16,26145542,99.93,0,0,0.16,554.43,3113.17,26145543,99.93,0,0,0.14,554.4,3113.2,26145544,99.93,0,0,0.17,554.38,3113.22,26145545,99.88,0,0,0.3,555.58,3112.03,26145546,99.79,0,0,0.61,555.49,3112.12,26145547,99.91,0,0,0.16,554.82,3112.78,26145548,99.92,0,0,0.19,554.79,3112.8,26145549,99.87,0,0,0.32,555.25,3112.33,26145550,99.87,0,0,0.31,555.26,3112.33,26145551,99.8,0,0,0.55,555.77,3111.81,26145552,99.94,0,0,0.14,555.4,3112.18,26145553,99.95,0,0,0.14,555.38,3112.2,26145554,99.95,0,0,0.15,555.36,3112.21,26145555,99.89,0,0,0.3,555.62,3111.97,26145556,99.78,0,0,0.54,555.15,3112.44,26145557,99.94,0,0,0.21,554.6,3112.98,26145558,99.9,0,0,0.14,554.57,3113.01,26145559,99.92,0.02,0.56,0.2,554.57,3113,26145560,99.88,0,0,0.38,554.58,3113.01,26145561,99.77,0,0,0.57,554.9,3112.69,26145562,99.92,0,0,0.15,554.54,3113.04,26145563,99.93,0,0,0.15,554.51,3113.07,26145564,99.93,0,0,0.14,554.5,3113.07,26145565,99.8,0,0,0.3,555.67,3111.92,26145566,99.78,0,0,0.55,556,3111.58,26145567,99.93,0,0,0.16,555.4,3112.18,26145568,99.95,0,0,0.15,555.4,3112.18,26145569,99.92,0,0,0.14,555.37,3112.2,26145570,99.89,0,0,0.29,555.62,3111.97,26145571,99.81,0,0,0.56,555.84,3111.75,26145572,99.94,0.01,0.02,0.19,555.37,3112.21,26145573,99.91,0,0,0.14,555.4,3112.17,26145574,99.92,0,0,0.16,555.39,3112.18,26145575,99.84,0.01,0.03,0.33,554.87,3112.71,26145576,94.99,0.27,0.01,78.11,565.63,3102.1,26145577,99.81,0,0,179.66,557.45,3110.04,26145578,99.91,0,0,0.2,557.44,3110.05,26145579,99.89,0,0,0.36,557.91,3109.55,26145580,99.82,0,0,0.37,557.95,3109.53,26145581,99.76,0,0,0.48,558.17,3109.31,26145582,99.9,0,0,0.33,554.19,3113.32,26145583,99.91,0,0,0.16,554.15,3113.35,26145584,99.92,0,0,0.18,554.15,3113.36,26145585,99.85,0,0,0.35,555.09,3112.43,26145586,99.93,0,0,0.18,555.11,3112.4,26145587,99.78,0,0,0.62,554.9,3112.66,26145588,99.93,0,0,0.21,554.31,3113.24,26145589,99.94,0.02,0.05,0.2,554.32,3113.23,26145590,99.87,0.03,0.07,0.34,555.58,3111.99,26145591,99.87,0.02,0.06,0.34,557.35,3110.12,26145592,99.79,0,0,0.54,559.66,3107.76,26145593,99.95,0,0,0.17,559.36,3108.05,26145594,99.94,0,0,0.15,559.34,3108.06,26145595,99.85,0,0,0.32,559.82,3107.6,26145596,99.93,0.01,0.01,0.15,559.78,3107.64,26145597,99.8,0,0,0.57,559.97,3107.44,26145598,99.95,0,0,0.15,559.61,3107.8,26145599,99.93,0,0,0.14,559.58,3107.83,26145600,99.88,0,0,0.28,559.59,3107.84,26145601,99.93,0,0,0.15,559.62,3107.8,26145602,99.81,0,0,0.53,560.41,3107.01,26145603,99.95,0.01,0.01,0.2,559.94,3107.48,26145604,99.83,0.01,0.01,4.32,559.65,3108.04,26145605,99.8,0.14,0.69,0.32,559.73,3108.79,26145606,99.67,0.32,1.75,0.21,559.72,3108.76,26145607,99.81,0,0,0.42,560.22,3108.25,26145608,99.92,0.01,1.42,0.35,559.89,3108.57,26145609,99.88,0,0,0.36,559.69,3108.73,26145610,99.9,0,0,0.31,559.94,3108.49,26145611,99.95,0,0,0.17,559.91,3108.52,26145612,99.8,0,0,0.6,560.25,3108.18,26145613,99.93,0,0,0.15,559.87,3108.55,26145614,99.95,0,0,0.14,559.86,3108.6,26145615,99.86,0,0,0.32,559.63,3108.87,26145616,99.95,0,0,0.14,559.61,3108.89,26145617,99.82,0,0,0.59,560.37,3108.12,26145618,99.93,0,0,0.15,559.81,3108.67,26145619,99.95,0,0,0.16,559.79,3108.69,26145620,99.86,0,0,0.3,559.98,3108.51,26145621,99.86,0.13,1.67,0.23,560.6,3107.85,26145622,99.31,0.16,0.82,0.67,561.5,3106.93,26145623,98.47,0.52,14.39,0.63,562.67,3105.75,26145624,99.79,0.59,16.11,0.89,562.67,3105.76,26145625,99.72,0.59,15.8,0.96,562.69,3105.75,26145626,99.58,1.76,58.96,0.63,562.72,3105.72,26145627,99.88,0.19,4.85,0.43,562.64,3105.81,26145628,99.78,0.01,0.02,0.62,562.15,3106.29,26145629,99.92,0,0,0.14,561.72,3106.72,26145630,99.81,0,0,0.29,561.78,3106.67,26145631,99.94,0,0,0.14,561.7,3106.75,26145632,99.95,0.01,0.02,0.21,561.64,3106.81,26145633,99.8,0,0,0.59,562.84,3105.6,26145634,99.92,0.02,0.02,0.19,562.61,3105.83,26145635,99.82,0.02,0.02,0.38,561.76,3106.7,26145636,99.95,0,0,0.14,561.68,3106.78,26145637,99.93,0.02,0.04,0.19,561.65,3106.81,26145638,99.8,0.01,0.21,0.57,562.95,3105.5,26145639,99.86,0.34,0.4,0.83,563.01,3105.52,26145640,99.89,0.01,0.01,0.45,562.94,3105.68,26145641,99.95,0,0,0.14,562.9,3105.71,26145642,99.92,0,0,0.16,562.89,3105.72,26145643,99.81,0.02,0.04,0.66,563.4,3105.22,26145644,99.94,0.01,0.01,0.22,562.88,3105.74,26145645,99.9,0.01,0.01,0.35,563.05,3105.59,26145646,99.9,0.02,0.05,0.22,560.94,3107.7,26145647,99.9,0.01,0.02,0.22,561.37,3107.27,26145648,99.79,0,0.02,0.54,562.37,3106.26,26145649,99.94,0,0,0.15,562.13,3106.5,26145650,99.91,0,0,0.3,562.14,3106.5,26145651,99.95,0,0,0.15,562.11,3106.55,26145652,99.94,0,0,0.15,562.09,3106.57,26145653,99.8,0,0,0.55,562.7,3105.95,26145654,99.95,0,0,0.13,562.8,3105.85,26145655,99.88,0,0,0.34,562.64,3106.03,26145656,99.96,0,0,0.14,562.7,3105.95,26145657,99.94,0,0,0.14,562.69,3105.96,26145658,99.8,0,0,0.59,563.36,3105.29,26145659,99.94,0,0,0.14,562.65,3106,26145660,99.83,0,0,0.3,561.37,3107.29,26145661,99.95,0,0,0.16,560.9,3107.75,26145662,99.93,0,0,0.14,560.87,3107.78,26145663,99.82,0,0,0.37,561.23,3107.42,26145664,99.95,0,0,0.37,561.82,3106.82,26145665,99.89,0,0,0.3,562.06,3106.61,26145666,99.94,0,0,0.16,562.22,3106.44,26145667,99.94,0,0,0.16,562.2,3106.46,26145668,99.79,0,0,0.31,562.53,3106.13,26145669,99.88,0,0,0.53,561.91,3106.73,26145670,99.88,0,0,0.31,561.9,3106.75,26145671,99.94,0,0,0.14,561.89,3106.75,26145672,99.95,0,0,0.16,561.86,3106.78,26145673,99.94,0,0,0.14,561.85,3106.79,26145674,99.8,0,0,0.54,562.17,3106.47,26145675,99.85,0,0,0.34,560.95,3107.7,26145676,99.95,0,0,0.13,560.82,3107.83,26145677,99.95,0,0,0.18,561.16,3107.49,26145678,99.92,0,0,0.17,561.21,3107.43,26145679,99.78,0,0,0.6,561.92,3106.71,26145680,99.86,0,0,0.32,561.67,3106.98,26145681,99.95,0,0,0.17,561.67,3106.98,26145682,99.95,0,0,0.18,561.64,3107,26145683,99.94,0,0,0.16,561.62,3107.01,26145684,99.79,0,0,0.57,561.96,3106.67,26145685,99.88,0,0,0.32,562.32,3106.32,26145686,99.92,0,0,0.17,562.32,3106.32,26145687,99.93,0,0,0.17,562.29,3106.35,26145688,99.93,0,0,0.16,562.39,3106.25,26145689,99.81,0,0,0.62,562.81,3105.81,26145690,99.89,0,0,0.33,562.48,3106.17,26145691,99.94,0,0,0.17,562.44,3106.2,26145692,99.95,0,0,0.17,562.43,3106.2,26145693,99.94,0,0,0.17,562.4,3106.23,26145694,99.8,0,0,0.57,562.66,3105.96,26145695,99.89,0,0,0.33,562.39,3106.26,26145696,99.95,0,0,0.15,562.35,3106.29,26145697,99.91,0,0,0.13,562.34,3106.29,26145698,99.94,0,0,0.16,562.31,3106.32,26145699,99.75,0,0,0.73,562.61,3106,26145700,99.9,0,0,0.43,562.2,3106.42,26145701,99.94,0,0,0.14,562.22,3106.4,26145702,99.95,0,0,0.16,562.19,3106.43,26145703,99.93,0,0,0.16,562.16,3106.44,26145704,99.95,0,0,0.16,562.14,3106.47,26145705,99.75,0,0,0.81,562.5,3106.12,26145706,99.92,0.01,0.01,0.15,562.1,3106.52,26145707,99.92,0,0,0.18,562.02,3106.59,26145708,99.92,0,0,0.15,561.89,3106.71,26145709,99.95,0,0,0.16,561.96,3106.64,26145710,99.7,0,0,0.66,562.77,3105.85,26145711,99.94,0,0,0.14,562.42,3106.2,26145712,99.93,0,0,0.16,562.4,3106.21,26145713,99.92,0,0,0.14,562.38,3106.23,26145714,99.9,0,0,0.16,562.36,3106.24,26145715,99.72,0,0,0.69,562.73,3105.88,26145716,99.94,0,0.01,0.15,561.83,3106.78,26145717,99.93,0,0,0.14,561.79,3106.82,26145718,99.94,0,0,0.17,561.97,3106.64,26145719,99.95,0,0,0.14,561.94,3106.66,26145720,99.74,0,0,0.7,562.72,3105.9,26145721,99.93,0,0,0.14,562.16,3106.45,26145722,99.95,0,0,0.16,562.15,3106.46,26145723,99.93,0,0,0.14,562.15,3106.46,26145724,99.93,0,0,0.14,562.11,3106.49,26145725,99.75,0,0,0.75,562.34,3106.28,26145726,99.94,0,0,0.21,562.1,3106.52,26145727,99.93,0,0,0.15,562.07,3106.55,26145728,99.92,0,0,0.16,562,3106.61,26145729,99.88,0,0,0.29,562.02,3106.56,26145730,99.75,0,0,0.71,562.92,3105.68,26145731,99.91,0,0,0.21,562.42,3106.17,26145732,99.95,0,0,0.16,562.39,3106.2,26145733,99.93,0,0,0.14,562.38,3106.2,26145734,99.94,0,0,0.16,562.35,3106.23,26145735,99.75,0,0,0.56,562.79,3105.81,26145736,99.93,0,0,0.28,562.58,3106.02,26145737,99.95,0,0,0.18,562.57,3106.02,26145738,99.95,0,0,0.17,562.54,3106.05,26145739,99.92,0,0,0.15,562.51,3106.08,26145740,99.71,0,0,0.59,561.71,3106.89,26145741,99.92,0,0,0.29,562.18,3106.41,26145742,99.95,0,0,0.14,562.17,3106.42,26145743,99.93,0,0,0.14,562.14,3106.44,26145744,99.94,0,0,0.15,562.13,3106.45,26145745,99.88,0,0,0.29,562.13,3106.47,26145746,99.81,0,0,0.57,562.83,3105.76,26145747,99.95,0,0,0.16,562.33,3106.25,26145748,99.94,0,0,0.14,562.31,3106.27,26145749,99.96,0,0,0.15,562.29,3106.3,26145750,99.9,0,0,0.29,562.3,3106.31,26145751,99.77,0,0,0.57,562.61,3105.98,26145752,99.94,0,0,0.16,562.27,3106.32,26145753,99.91,0,0,0.16,562.4,3106.19,26145754,99.91,0,0,0.15,562.4,3106.19,26145755,99.87,0,0,0.3,562.39,3106.21,26145756,99.81,0,0,0.57,562.74,3105.86,26145757,99.93,0,0,0.18,562.34,3106.25,26145758,99.9,0,0,0.18,562.34,3106.25,26145759,99.88,0,0,0.31,562.55,3106.02,26145760,99.88,0,0,0.3,562.57,3106.01,26145761,99.77,0,0,0.55,562.89,3105.69,26145762,99.92,0,0,0.14,562.53,3106.04,26145763,99.95,0,0,0.16,562.5,3106.07,26145764,99.95,0,0,0.15,562.49,3106.09,26145765,99.88,0,0,0.32,562.37,3106.23,26145766,99.8,0,0,0.5,563.48,3105.11,26145767,99.93,0,0,0.23,563.09,3105.5,26145768,99.9,0,0,0.17,562.65,3105.93,26145769,99.95,0,0,0.16,562.62,3105.96,26145770,99.89,0,0,0.29,562.87,3105.73,26145771,99.76,0,0,0.51,563.19,3105.4,26145772,99.93,0,0,0.19,562.56,3106.03,26145773,99.89,0,0,0.14,562.56,3106.03,26145774,99.91,0,0,0.17,562.52,3106.06,26145775,99.85,0,0,0.34,562.87,3105.73,26145776,99.81,0,0,0.43,563.28,3105.31,26145777,99.95,0,0,0.32,562.9,3105.69,26145778,99.93,0,0,0.17,562.9,3105.69,26145779,99.84,0,0,0.15,562.86,3105.72,26145780,99.83,0,0,0.29,562.87,3105.73,26145781,99.79,0,0,0.41,563.17,3105.42,26145782,99.95,0,0,0.29,562.57,3106.01,26145783,99.95,0,0,0.14,562.55,3106.03,26145784,99.93,0,0,0.15,562.53,3106.04,26145785,99.84,0.01,0.03,0.32,562.82,3105.77,26145786,99.92,0,0,0.25,562.89,3105.69,26145787,99.79,0,0,0.53,563.4,3105.17,26145788,99.93,0,0,0.17,562.59,3105.98,26145789,99.78,0,0,0.31,561.91,3106.63,26145790,99.82,0,0,0.32,562.04,3106.52,26145791,99.93,0.01,0.09,0.17,562.08,3106.47,26145792,99.79,0,0,0.61,563.16,3105.38,26145793,99.93,0,0.03,0.19,562.57,3105.97,26145794,99.91,0,0,0.14,562.55,3105.99,26145795,99.84,0,0,0.3,562.78,3105.78,26145796,99.92,0,0,0.16,562.76,3105.79,26145797,99.78,0,0,0.63,563.09,3105.45,26145798,99.91,0,0,0.15,562.72,3105.83,26145799,99.91,0,0,0.14,562.86,3105.68,26145800,99.86,0,0,0.3,562.88,3105.67,26145801,99.92,0,0,0.16,562.87,3105.68,26145802,99.74,0,0,0.55,563.34,3105.2,26145803,99.93,0.03,1.33,0.23,563.02,3105.51,26145804,99.91,0,0,0.15,563,3105.53,26145805,99.86,0,0,0.3,562.99,3105.55,26145806,99.93,0,0,0.13,562.97,3105.57,26145807,99.78,0,0,0.54,563.22,3105.31,26145808,99.94,0,0,0.19,562.88,3105.65,26145809,99.93,0,0,0.13,562.84,3105.68,26145810,99.85,0,0,0.29,563.11,3105.43,26145811,99.93,0,0,0.16,563.07,3105.46,26145812,99.8,0,0,0.43,563.77,3104.76,26145813,99.9,0,0,0.3,563.28,3105.25,26145814,99.92,0,0,0.14,563.25,3105.28,26145815,99.83,0,0,0.31,562.68,3105.87,26145816,99.93,0,0,0.16,562.24,3106.3,26145817,99.76,0,0,0.4,562.63,3105.9,26145818,99.93,0,0,0.29,562.46,3106.06,26145819,99.67,0.01,0.04,0.41,562.63,3105.87,26145820,99.8,0,0,0.33,561.36,3107.15,26145821,99.91,0.01,0.17,0.25,561.43,3107.08,26145822,99.93,0,0,0.15,561.42,3107.08,26145823,99.76,0,0,0.62,561.76,3106.74,26145824,99.92,0,0,0.18,561.35,3107.14,26145825,99.83,0,0,0.35,561.85,3106.66,26145826,99.92,0,0,0.19,561.83,3106.68,26145827,99.87,0,0,0.19,561.85,3106.65,26145828,99.7,0,0,0.64,562.43,3106.08,26145829,99.91,0,0,0.14,561.52,3106.99,26145830,99.82,0,0,0.33,562.24,3106.29,26145831,99.89,0,0,0.16,562.37,3106.15,26145832,99.92,0,0,0.16,562.39,3106.13,26145833,99.77,0.01,0.14,0.58,563.06,3105.45,26145834,99.91,0,0,0.21,562.48,3106.02,26145835,99.89,0,0,0.34,562.5,3106.02,26145836,99.94,0,0,0.16,562.57,3105.94,26145837,99.9,0,0,0.16,562.65,3105.86,26145838,99.76,0,0,0.55,562.96,3105.54,26145839,99.92,0,0,0.15,562.6,3105.9,26145840,99.85,0,0,0.29,562.35,3106.17,26145841,99.88,0,0,0.16,562.34,3106.17,26145842,99.9,0,0,0.14,562.31,3106.2,26145843,99.77,0,0,0.51,562.75,3105.75,26145844,99.93,0,0,0.23,562.51,3105.99,26145845,99.8,0,0,0.32,562.52,3105.99,26145846,99.91,0,0,0.16,562.49,3106.02,26145847,99.88,0,0,0.15,562.49,3106.02,26145848,99.76,0,0,0.5,562.93,3105.57,26145849,99.76,0,0,0.36,562.61,3105.87,26145850,99.81,0,0,0.31,562.85,3105.65,26145851,99.9,0,0,0.14,562.82,3105.67,26145852,99.89,0,0,0.16,562.81,3105.67,26145853,99.7,0,0,0.3,563.11,3105.37,26145854,99.93,0,0,0.42,562.52,3105.96,26145855,99.82,0,0,0.33,560.82,3107.69,26145856,99.93,0,0,0.17,560.78,3107.72,26145857,99.94,0,0,0.17,561.24,3107.26,26145858,99.85,0,0,0.16,561.24,3107.26,26145859,99.72,0,0,0.55,562.9,3105.59,26145860,99.82,0,0,0.29,562.39,3106.12,26145861,99.88,0,0,0.16,562.35,3106.15,26145862,99.85,0,0,0.15,562.33,3106.16,26145863,99.92,0,0,0.14,562.31,3106.18,26145864,99.77,0,0,0.59,562.82,3105.67,26145865,99.77,0,0,0.31,562.85,3105.66,26145866,99.87,0,0,0.14,562.75,3105.75,26145867,99.89,0,0,0.16,562.75,3105.75,26145868,99.91,0,0,0.14,562.72,3105.78,26145869,99.69,0,0,0.56,562.71,3105.78,26145870,99.78,0,0,0.31,561.27,3107.24,26145871,99.85,0,0,0.17,561.3,3107.2,26145872,99.85,0,0,0.14,561.37,3107.13,26145873,99.88,0,0,0.15,561.36,3107.13,26145874,99.72,0,0,0.45,562.49,3106,26145875,99.76,0,0,0.43,561.63,3106.87,26145876,99.85,0,0,0.14,561.56,3106.94,26145877,99.86,0,0,0.14,561.55,3106.95,26145878,99.87,0,0,0.17,561.51,3106.98,26145879,99.68,0,0,0.56,563.16,3105.31,26145880,99.82,0,0,0.45,562.48,3106,26145881,99.86,0,0,0.13,562.48,3106,26145882,99.84,0,0,0.15,562.44,3106.03,26145883,99.85,0,0,0.15,562.46,3106.01,26145884,99.7,0,0,0.49,563,3105.47,26145885,99.83,0,0,0.37,562.85,3105.63,26145886,99.83,0,0,0.16,562.83,3105.65,26145887,99.84,0,0,0.16,562.81,3105.66,26145888,94.9,0.4,0.02,257.34,570.34,3097.63,26145889,99.7,0,0,0.66,565.57,3102.36,26145890,99.78,0,0,0.31,565.41,3102.54,26145891,99.84,0,0,0.16,565.39,3102.56,26145892,99.81,0,0,0.14,565.36,3102.59,26145893,99.84,0,0,0.18,563.44,3104.55,26145894,99.72,0,0,0.38,563.27,3104.73,26145895,99.8,0,0,0.59,562.94,3105.08,26145896,99.88,0,0,0.21,562.9,3105.11,26145897,99.83,0,0,0.2,562.9,3105.11,26145898,99.83,0,0,0.18,562.87,3105.13,26145899,99.85,0,0,0.2,563.05,3104.95,26145900,99.59,0,0,0.99,563.39,3104.65,26145901,99.86,0,0,0.18,562.79,3105.25,26145902,99.85,0,0,0.18,562.75,3105.28,26145903,99.86,0,0,0.17,562.74,3105.28,26145904,99.86,0,0,0.14,562.71,3105.31,26145905,99.68,0,0,0.85,563.3,3104.73,26145906,99.85,0,0,0.16,562.92,3105.11,26145907,99.86,0,0,0.14,562.9,3105.13,26145908,99.84,0,0,0.15,562.89,3105.14,26145909,99.77,0,0,0.31,563.14,3104.86,26145910,99.66,0,0,0.75,563.18,3104.83,26145911,99.86,0,0,0.18,562.77,3105.23,26145912,99.85,0,0,0.14,562.76,3105.24,26145913,99.79,0.06,0.17,0.22,562.73,3105.27,26145914,99.74,0.07,0.16,0.18,562.68,3105.31,26145915,99.6,0,0,0.71,563.16,3104.87,26145916,99.85,0,0,0.28,560.15,3107.93,26145917,99.86,0,0,0.2,560.6,3107.47,26145918,99.87,0,0,0.14,560.7,3107.36,26145919,99.83,0,0,0.15,560.75,3107.31,26145920,99.59,0,0,0.71,560.29,3107.79,26145921,99.84,0,0,0.19,559.75,3108.32,26145922,99.84,0,0,0.18,559.74,3108.33,26145923,99.85,0,0,0.18,559.71,3108.36,26145924,99.83,0,0,0.18,559.69,3108.37,26145925,99.68,0,0,0.73,560.77,3107.3,26145926,99.86,0,0,0.18,560.4,3107.68,26145927,99.83,0,0,0.18,560.39,3107.68,26145928,99.85,0,0,0.18,560.36,3107.71,26145929,99.85,0,0,0.16,560.45,3107.61,26145930,99.84,0,0,0.3,560.54,3107.54,26145931,99.71,0,0,0.59,560.87,3107.21,26145932,99.88,0,0,0.18,560.51,3107.55,26145933,99.85,0,0,0.18,560.48,3107.59,26145934,99.85,0,0,0.18,560.47,3107.59,26145935,99.8,0,0,0.36,560.22,3107.86,26145936,99.7,0,0,0.58,561.03,3107.04,26145937,99.85,0,0,0.18,560.66,3107.41,26145938,99.83,0.01,0.05,0.18,560.69,3107.35,26145939,99.78,0.01,0,0.37,560.62,3107.4,26145940,99.77,0,0,0.31,560.62,3107.41,26145941,96.65,0.03,0.01,78.03,571.73,3096.91,26145942,99.85,0,0,0.21,563.01,3105.15,26145943,99.86,0,0,0.16,563.01,3105.14,26145944,99.85,0.01,0,0.2,563.11,3105.07,26145945,99.81,0,0,0.38,562.86,3105.33,26145946,99.72,0.04,0.01,0.64,561.72,3106.51,26145947,99.85,0,0,0.16,560.53,3107.72,26145948,99.81,0.01,0.01,0.17,560.6,3107.64,26145949,99.85,0.04,0,0.26,560.61,3107.63,26145950,99.78,0.01,0.01,0.37,560.32,3107.94,26145951,99.7,0.01,0.01,0.58,560.89,3107.36,26145952,99.84,0.01,0,0.19,560.8,3107.44,26145953,99.83,0,0,0.18,560.83,3107.41,26145954,99.84,0,0,0.15,560.8,3107.44,26145955,99.82,0,0,0.33,560.57,3107.68,26145956,99.7,0.01,0.01,0.63,560.89,3107.35,26145957,99.83,0.01,0.01,0.19,560.63,3107.62,26145958,99.86,0.01,0,0.19,560.53,3107.71,26145959,99.84,0,0,0.14,560.52,3107.72,26145960,99.79,0,0,0.34,560.62,3107.64,26145961,99.73,0,0,0.5,560.94,3107.31,26145962,99.81,0,0,0.2,560.65,3107.59,26145963,99.85,0.01,0,0.2,560.59,3107.65,26145964,99.87,0,0,0.15,560.56,3107.68,26145965,99.77,0.01,0,0.35,560.8,3107.45,26145966,99.73,0,0,0.41,561.28,3106.97,26145967,99.83,0,0,0.31,560.49,3107.75,26145968,99.88,0,0,0.15,560.64,3107.6,26145969,99.74,0,0,0.3,560.88,3107.33,26145970,99.78,0,0,0.3,559.21,3109.03,26145971,99.84,0,0,0.16,557.19,3111.05,26145972,99.72,0,0,0.54,558.01,3110.22,26145973,99.84,0,0,0.16,557.64,3110.59,26145974,99.85,0,0,0.15,557.63,3110.59,26145975,99.8,0,0,0.3,557.62,3110.61,26145976,99.85,0,0,0.15,557.61,3110.62,26145977,99.72,0,0,0.59,557.92,3110.3,26145978,99.86,0,0,0.14,557.57,3110.65,26145979,99.88,0,0,0.16,557.54,3110.68,26145980,99.81,0,0,0.3,557.73,3110.51,26145981,99.86,0,0,0.14,557.74,3110.49,26145982,99.72,0,0,0.59,558.07,3110.15,26145983,99.83,0,0,0.15,557.7,3110.53,26145984,99.84,0,0,0.14,557.66,3110.55,26145985,99.82,0,0,0.35,557.43,3110.8,26145986,99.88,0,0,0.15,557.39,3110.83,26145987,99.7,0.04,0,0.62,558.16,3110.06,26145988,99.87,0,0,0.18,557.83,3110.39,26145989,99.86,0,0,0.14,557.96,3110.25,26145990,99.8,0,0,0.29,557.24,3110.99,26145991,99.86,0,0,0.16,557.21,3111.02,26145992,99.72,0,0,0.49,557.85,3110.37,26145993,99.83,0,0,0.19,557.9,3110.31,26145994,99.87,0,0,0.15,557.87,3110.34,26145995,99.79,0,0,0.3,557.88,3110.34,26145996,99.87,0,0,0.14,557.85,3110.37,26145997,99.71,0,0,0.56,558.19,3110.02,26145998,99.84,0,0,0.18,557.81,3110.4,26145999,99.78,0,0,0.36,558.03,3110.16,26146000,99.83,0,0,0.31,557.97,3110.24,26146001,99.83,0,0,0.14,557.95,3110.26,26146002,99.72,0,0,0.56,558.46,3109.74,26146003,99.83,0,0,0.14,557.65,3110.55,26146004,99.83,0,0,0.17,557.64,3110.55,26146005,99.82,0,0,0.36,557.87,3110.33,26146006,99.85,0,0.01,0.18,557.86,3110.34,26146007,99.72,0,0,0.41,558.16,3110.04,26146008,99.8,0.01,0.01,0.34,557.43,3110.76,26146009,99.85,0,0.01,0.16,557.44,3110.75,26146010,99.78,0,0,0.3,556.45,3111.76,26146011,99.85,0,0,0.16,556.42,3111.78,26146012,99.7,0,0,0.41,556.84,3111.35,26146013,99.85,0,0,0.28,557.37,3110.82,26146014,99.83,0,0,0.15,557.33,3110.86,26146015,99.78,0,0,0.31,558.06,3110.15,26146016,99.88,0,0.02,0.16,558.05,3110.15,26146017,99.86,0,0,0.18,558.04,3110.15,26146018,99.72,0,0,0.54,558.32,3109.87,26146019,99.85,0,0,0.15,557.91,3110.27,26146020,99.7,0,0.01,0.34,556.95,3111.25,26146021,99.85,0,0,0.15,556.88,3111.32,26146022,99.83,0,0,0.16,556.86,3111.33,26146023,99.73,0,0,0.57,558.06,3110.12,26146024,99.86,0,0,0.14,557.56,3110.63,26146025,99.81,0,0,0.36,557.56,3110.64,26146026,99.85,0,0,0.13,557.53,3110.67,26146027,99.84,0,0,0.15,557.62,3110.57,26146028,99.72,0,0,0.58,558.19,3110,26146029,99.81,0,0,0.41,554.27,3114.1,26146030,99.85,0,0,0.36,554.05,3114.34,26146031,99.87,0,0,0.18,554.01,3114.38,26146032,99.88,0,0,0.15,553.99,3114.4,26146033,99.77,0,0,0.54,553.75,3114.63,26146034,99.9,0,0,0.16,552.96,3115.41,26146035,99.87,0,0,0.31,553.94,3114.46,26146036,99.92,0,0,0.16,553.93,3114.45,26146037,99.92,0,0,0.2,553.67,3114.71,26146038,99.8,0,0,0.58,554.04,3114.34,26146039,99.93,0,0,0.18,553.56,3114.81,26146040,99.9,0,0,0.37,554.05,3114.34,26146041,99.93,0,0,0.19,554.04,3114.35,26146042,99.93,0,0,0.14,554.02,3114.36,26146043,99.81,0,0,0.43,554.56,3113.82,26146044,99.94,0,0,0.29,553.98,3114.39,26146045,99.87,0,0,0.31,553.25,3115.14,26146046,99.93,0,0,0.14,553.21,3115.17,26146047,99.95,0,0,0.16,553.2,3115.18,26146048,99.81,0,0,0.49,553.58,3114.8,26146049,99.91,0,0,0.21,554.01,3114.36,26146050,99.84,0,0,0.3,553.38,3115.01,26146051,99.94,0,0,0.14,553.36,3115.02,26146052,99.92,0,0,0.16,553.33,3115.05,26146053,99.79,0,0,0.37,553.63,3114.74,26146054,99.93,0,0,0.38,552.8,3115.57,26146055,99.85,0,0,0.32,553.29,3115.09,26146056,99.89,0,0,0.16,553.27,3115.11,26146057,99.9,0,0,0.14,553.26,3115.12,26146058,99.94,0,0,0.15,553.23,3115.14,26146059,99.71,0,0,0.81,554.52,3113.83,26146060,99.82,0,0,0.33,553,3115.36,26146061,99.95,0,0,0.17,552.95,3115.41,26146062,99.92,0,0,0.18,553.1,3115.26,26146063,99.92,0,0,0.17,553.1,3115.26,26146064,99.79,0,0,0.56,554.14,3114.22,26146065,99.81,0,0,0.39,554.52,3113.87,26146066,99.92,0,0,0.18,554.53,3113.86,26146067,99.91,0,0,0.15,554.49,3113.89,26146068,99.91,0,0,0.18,554.25,3114.12,26146069,99.82,0,0,0.57,554.68,3113.69,26146070,99.9,0,0,0.37,553.96,3114.43,26146071,99.87,0,0,0.16,553.94,3114.44,26146072,99.94,0,0,0.2,554.01,3114.36,26146073,99.95,0,0,0.2,554.09,3114.29,26146074,99.81,0,0,0.45,554.58,3113.79,26146075,99.91,0,0,0.47,553.82,3114.56,26146076,99.93,0,0,0.18,553.78,3114.59,26146077,99.95,0,0,0.18,553.75,3114.62,26146078,99.93,0.02,0.56,0.23,553.72,3114.64,26146079,99.81,0,0,0.41,554.14,3114.22,26146080,99.81,0,0,0.5,554.18,3114.19,26146081,99.94,0,0,0.2,554.16,3114.21,26146082,99.93,0,0,0.2,554.15,3114.22,26146083,99.93,0,0,0.2,554.31,3114.05,26146084,99.79,0,0,0.45,554.45,3113.91,26146085,99.88,0,0,0.46,553.82,3114.56,26146086,99.91,0,0,0.18,553.78,3114.59,26146087,99.92,0,0,0.16,553.77,3114.6,26146088,99.93,0,0,0.17,553.74,3114.63,26146089,99.66,0,0,0.51,554.29,3114.05,26146090,99.87,0,0,0.6,554.19,3114.17,26146091,99.93,0,0,0.16,554.17,3114.18,26146092,99.89,0,0,0.19,554.15,3114.2,26146093,99.94,0,0,0.19,554.16,3114.19,26146094,99.91,0,0,0.17,554.29,3114.05,26146095,99.57,0,0,0.77,554.53,3113.83,26146096,99.93,0,0,0.18,554.02,3114.33,26146097,99.92,0,0,0.25,553.75,3114.6,26146098,99.9,0.01,0.01,0.22,553.79,3114.55,26146099,99.92,0,0,0.2,553.79,3114.55,26146100,99.73,0,0,0.76,554.52,3113.83,26146101,99.93,0,0,0.21,554.27,3114.08,26146102,99.95,0,0,0.17,554.26,3114.1,26146103,99.93,0,0,0.17,554.24,3114.12,26146104,99.94,0,0,0.19,554.22,3114.13,26146105,99.73,0,0,0.72,554.66,3113.72,26146106,99.93,0,0,0.16,554.21,3114.16,26146107,99.94,0,0,0.16,554.2,3114.17,26146108,99.93,0,0,0.15,554.17,3114.2,26146109,99.91,0,0,0.14,554.17,3114.19,26146110,99.69,0,0,0.65,554.24,3114.13,26146111,99.91,0,0,0.2,554.07,3114.3,26146112,99.93,0,0,0.15,554.05,3114.32,26146113,99.93,0,0,0.15,554.02,3114.34,26146114,99.94,0,0,0.14,554.01,3114.35,26146115,99.72,0,0,0.71,554.71,3113.66,26146116,99.94,0,0,0.17,554.48,3113.89,26146117,99.95,0,0,0.14,554.46,3113.9,26146118,99.95,0,0,0.16,554.44,3113.92,26146119,99.87,0,0,0.34,554.41,3113.92,26146120,99.74,0,0,0.6,554.52,3113.82,26146121,99.95,0,0,0.27,554.23,3114.11,26146122,99.95,0,0,0.14,554.31,3114.02,26146123,99.95,0,0,0.15,554.28,3114.05,26146124,99.94,0,0,0.18,554.27,3114.07,26146125,99.73,0,0,0.76,554.86,3113.5,26146126,99.91,0,0,0.14,554.5,3113.86,26146127,99.9,0,0,0.14,554.47,3113.89,26146128,99.9,0,0,0.19,554.24,3114.11,26146129,99.94,0,0,0.14,554.18,3114.16,26146130,99.72,0,0,0.47,555.02,3113.35,26146131,99.9,0,0,0.4,554.81,3113.55,26146132,99.93,0,0,0.14,554.39,3113.96,26146133,99.9,0,0,0.15,554.56,3113.79,26146134,99.92,0,0,0.15,554.53,3113.82,26146135,99.85,0,0,0.34,554.77,3113.6,26146136,99.8,0,0,0.56,555.17,3113.19,26146137,99.91,0,0,0.14,554.48,3113.88,26146138,99.93,0,0,0.16,554.46,3113.89,26146139,99.93,0.01,0.01,0.2,554.46,3113.88,26146140,99.75,0,0,0.3,553.66,3114.7,26146141,99.78,0,0,0.54,554.36,3114,26146142,99.93,0,0,0.16,554.25,3114.1,26146143,99.93,0,0,0.14,554.21,3114.13,26146144,99.94,0,0,0.15,554.2,3114.14,26146145,99.79,0,0,0.31,553.72,3114.63,26146146,99.8,0,0,0.54,554.68,3113.68,26146147,99.95,0,0,0.14,554.36,3114,26146148,99.93,0,0,0.18,553.64,3114.71,26146149,99.89,0,0,0.32,553.77,3114.56,26146150,99.79,0,0,0.3,553.08,3115.26,26146151,99.79,0,0,0.52,553.61,3114.72,26146152,99.93,0,0,0.2,553.5,3114.83,26146153,99.92,0,0,0.15,553.47,3114.86,26146154,99.94,0,0,0.16,553.44,3114.9,26146155,99.84,0,0,0.31,553.69,3114.67,26146156,99.76,0,0,0.56,554.19,3114.16,26146157,99.93,0,0,0.18,553.65,3114.7,26146158,99.92,0,0,0.18,553.63,3114.71,26146159,99.92,0,0,0.14,553.61,3114.73,26146160,99.88,0,0,0.39,554.05,3114.3,26146161,99.82,0,0,0.58,554.25,3114.09,26146162,99.95,0,0,0.18,553.26,3115.08,26146163,99.94,0,0,0.16,553.24,3115.1,26146164,99.95,0,0,0.14,553.22,3115.13,26146165,99.88,0,0,0.36,553.95,3114.41,26146166,99.79,0,0,0.43,554.27,3114.1,26146167,99.94,0,0,0.35,553.68,3114.68,26146168,99.95,0,0,0.17,553.65,3114.7,26146169,99.95,0,0,0.17,553.64,3114.71,26146170,99.86,0,0,0.3,553.87,3114.49,26146171,99.94,0,0,0.16,553.89,3114.47,26146172,99.8,0,0,0.55,554.69,3113.66,26146173,99.88,0,0,0.14,554.04,3114.31,26146174,99.95,0,0,0.14,554.01,3114.34,26146175,99.84,0,0,0.33,554.03,3114.33,26146176,99.92,0,0,0.14,554.01,3114.36,26146177,99.8,0,0,0.59,554.34,3114.02,26146178,99.93,0,0,0.15,553.96,3114.4,26146179,99.75,0,0,0.29,553.97,3114.36,26146180,99.85,0,0,0.34,554.01,3114.34,26146181,99.93,0,0,0.15,553.92,3114.43,26146182,99.8,0,0,0.54,554.25,3114.09,26146183,99.88,0,0,0.16,554.04,3114.29,26146184,99.94,0,0,0.14,554.04,3114.3,26146185,99.85,0,0,0.31,554.03,3114.33,26146186,99.94,0,0,0.16,554.01,3114.35,26146187,99.8,0,0,0.55,554.19,3114.17,26146188,99.91,0,0,0.17,553.32,3115.03,26146189,99.91,0,0,0.15,553.21,3115.13,26146190,99.87,0,0,0.31,553.68,3114.68,26146191,99.93,0,0,0.14,553.69,3114.67,26146192,99.81,0,0,0.5,554.35,3114.01,26146193,99.89,0,0,0.2,553.65,3114.7,26146194,99.89,0,0,0.15,553.71,3114.63,26146195,99.91,0,0,0.31,554.06,3114.3,26146196,99.92,0,0,0.15,554.03,3114.33,26146197,99.78,0,0,0.52,554.52,3113.83,26146198,99.96,0,0,0.21,553.99,3114.36,26146199,99.93,0,0,0.16,553.95,3114.39,26146200,99.83,0,0,0.32,552.81,3115.55,26146201,99.92,0,0,0.16,552.96,3115.4,26146202,99.8,0,0,0.41,553.41,3114.94,26146203,99.92,0,0,0.29,553.9,3114.44,26146204,99.93,0,0,0.14,553.88,3114.46,26146205,99.86,0,0,0.32,554.12,3114.23,26146206,96.15,0,0,0.15,554.3,3114.05,26146207,99.81,0,0,0.58,554.6,3113.75,26146208,99.94,0,0,0.15,554.01,3114.33,26146209,99.83,0,0,0.33,554.22,3114.1,26146210,99.83,0,0,0.3,554.21,3114.12,26146211,99.93,0,0,0.16,554.19,3114.14,26146212,99.9,0,0,0.17,554.16,3114.16,26146213,99.78,0,0,0.59,554.73,3113.59,26146214,99.9,0,0,0.2,554.37,3113.96,26146215,99.87,0,0,0.39,554.14,3114.22,26146216,99.9,0,0,0.18,554.26,3114.09,26146217,99.91,0,0,0.22,554.27,3114.08,26146218,99.78,0,0,0.58,554.67,3113.67,26146219,99.9,0,0,0.16,553.98,3114.36,26146220,99.85,0,0,0.31,554.29,3114.06,26146221,99.94,0,0,0.14,554.2,3114.15,26146222,99.9,0,0,0.16,554.19,3114.15,26146223,99.8,0,0,0.48,554.48,3113.86,26146224,99.93,0,0,0.22,553.91,3114.43,26146225,99.85,0,0,0.32,554.39,3113.96,26146226,99.94,0,0,0.14,554.38,3113.96,26146227,99.93,0,0,0.14,554.35,3113.99,26146228,99.79,0,0,0.56,554.74,3113.6,26146229,99.9,0,0,0.17,554.24,3114.09,26146230,99.86,0,0,0.39,553.31,3115.04,26146231,99.94,0,0,0.23,553.24,3115.1,26146232,99.95,0,0,0.18,553.24,3115.1,26146233,99.78,0,0,0.59,553.98,3114.36,26146234,99.94,0,0,0.19,554.18,3114.15,26146235,99.9,0,0,0.34,554.18,3114.16,26146236,99.91,0,0,0.16,554.16,3114.18,26146237,99.93,0,0,0.14,554.13,3114.21,26146238,99.78,0,0,0.52,554.47,3113.86,26146239,99.87,0,0,0.36,554.17,3114.14,26146240,99.85,0,0,0.31,553.9,3114.42,26146241,99.93,0,0,0.16,553.73,3114.59,26146242,99.94,0,0,0.14,553.72,3114.59,26146243,99.78,0,0,0.39,554.28,3114.03,26146244,99.93,0,0,0.29,554.17,3114.15,26146245,99.85,0,0,0.31,553.68,3114.66,26146246,99.93,0,0,0.15,553.65,3114.69,26146247,99.93,0,0,0.16,553.63,3114.7,26146248,99.89,0,0,0.18,553.41,3114.92,26146249,99.78,0,0,0.54,554.54,3113.79,26146250,99.9,0,0,0.33,554.53,3113.81,26146251,99.94,0,0,0.17,554.5,3113.83,26146252,99.93,0,0,0.14,554.49,3113.84,26146253,99.93,0,0.02,0.17,554.45,3113.87,26146254,99.82,0,0,0.56,554.54,3113.78,26146255,99.83,0,0,0.32,554.41,3113.93,26146256,99.92,0,0,0.16,554.37,3113.96,26146257,99.93,0,0.01,0.16,554.51,3113.82,26146258,99.94,0,0,0.14,554.49,3113.84,26146259,99.82,0,0,0.54,554.63,3113.69,26146260,99.79,0,0,0.31,553.49,3114.84,26146261,99.95,0,0.01,0.14,553.46,3114.87,26146262,99.93,0,0.01,0.16,553.43,3114.9,26146263,99.9,0,0.01,0.17,553.38,3114.94,26146264,99.8,0,0,0.45,554.5,3113.81,26146265,99.81,0,0,0.4,554.49,3113.84,26146266,99.91,0,0,0.14,554.52,3113.81,26146267,99.94,0,0,0.14,554.49,3113.84,26146268,99.94,0,0,0.16,554.48,3113.84,26146269,99.73,0,0,0.64,554.8,3113.5,26146270,99.82,0,0,0.44,553.49,3114.83,26146271,99.89,0,0,0.18,553.43,3114.88,26146272,99.9,0,0,0.18,553.4,3114.91,26146273,99.9,0,0,0.15,553.39,3114.91,26146274,99.82,0,0,0.49,553.95,3114.36,26146275,99.9,0,0,0.37,554.35,3113.98,26146276,99.95,0,0,0.15,554.43,3113.9,26146277,99.9,0,0,0.2,554.51,3113.82,26146278,99.93,0,0,0.15,554.47,3113.85,26146279,99.77,0,0,0.54,554.77,3113.55,26146280,99.89,0,0,0.31,554.7,3113.64,26146281,99.92,0,0,0.17,554.7,3113.63,26146282,99.88,0,0,0.14,554.66,3113.66,26146283,99.95,0,0,0.14,554.65,3113.67,26146284,99.82,0,0,0.31,555.25,3113.07,26146285,99.9,0,0,0.53,554.37,3113.96,26146286,99.93,0,0,0.14,554.36,3113.97,26146287,99.94,0,0,0.16,554.34,3113.98,26146288,98.45,0,0,0.14,554.5,3113.82,26146289,99.9,0,0,0.16,554.47,3113.85,26146290,99.67,0,0,0.71,553.62,3114.72,26146291,99.95,0,0,0.16,553.22,3115.11,26146292,99.94,0,0,0.14,552.99,3115.33,26146293,99.95,0,0,0.16,552.2,3116.13,26146294,99.93,0,0,0.14,552.17,3116.14,26146295,99.75,0,0,0.79,554.14,3114.18,26146296,99.93,0,0,0.14,553.86,3114.46,26146297,99.91,0,0,0.16,553.85,3114.47,26146298,99.93,0,0,0.14,553.81,3114.5,26146299,99.73,0,0,0.3,554.01,3114.27,26146300,99.74,0,0,0.73,553.98,3114.32,26146301,99.93,0,0,0.14,553.49,3114.81,26146302,99.91,0,0,0.17,553.46,3114.84,26146303,99.93,0,0,0.14,553.45,3114.84,26146304,99.95,0,0,0.15,553.42,3114.88,26146305,95.11,0.27,0.01,194.64,566.34,3102.32,26146306,99.92,0,0,63.5,556.06,3112.22,26146307,99.92,0,0,0.14,556.04,3112.24,26146308,99.92,0,0,0.18,555.85,3112.43,26146309,99.93,0,0,0.15,555.77,3112.5,26146310,99.71,0,0,0.68,555.26,3113.04,26146311,99.93,0,0,0.21,553.58,3114.74,26146312,99.93,0,0,0.16,553.71,3114.61,26146313,99.96,0,0,0.15,553.73,3114.58,26146314,99.95,0,0,0.17,553.7,3114.61,26146315,99.7,0,0,0.58,554.09,3114.24,26146316,99.94,0,0,0.29,553.69,3114.67,26146317,99.93,0,0,0.15,553.68,3114.68,26146318,99.93,0,0,0.12,553.65,3114.7,26146319,99.92,0,0,0.16,553.65,3114.71,26146320,99.75,0,0,0.57,553.84,3114.53,26146321,99.93,0,0,0.3,553.85,3114.51,26146322,99.95,0,0,0.15,553.84,3114.52,26146323,99.93,0,0,0.14,553.81,3114.54,26146324,99.93,0,0,0.15,553.96,3114.39,26146325,99.77,0,0,0.48,554.96,3113.41,26146326,99.92,0,0,0.41,553.97,3114.39,26146327,99.89,0,0,0.16,553.94,3114.42,26146328,99.95,0,0,0.14,553.93,3114.43,26146329,99.83,0,0,0.31,553.66,3114.67,26146330,99.88,0,0,0.33,553.9,3114.45,26146331,99.82,0,0,0.58,554.24,3114.1,26146332,99.91,0,0,0.15,553.86,3114.47,26146333,99.88,0,0,0.16,553.83,3114.5,26146334,99.89,0,0,0.15,553.8,3114.54,26146335,99.86,0,0,0.31,553.45,3114.92,26146336,99.8,0,0,0.55,553.5,3114.87,26146337,99.95,0,0,0.24,552.98,3115.38,26146338,99.91,0,0,0.15,552.95,3115.4,26146339,99.92,0,0.01,0.17,552.93,3115.42,26146340,99.86,0,0,0.32,552.89,3115.48,26146341,99.81,0,0,0.55,554.05,3114.31,26146342,99.93,0,0,0.16,554.08,3114.28,26146343,99.92,0,0,0.13,554.05,3114.3,26146344,99.94,0,0,0.17,554.19,3114.16,26146345,99.89,0,0,0.32,554.22,3114.15,26146346,99.8,0,0,0.44,554.4,3113.97,26146347,99.91,0,0,0.3,553.44,3114.92,26146348,99.95,0,0,0.14,553.4,3114.95,26146349,99.33,0,0,0.15,553.38,3114.96,26146350,99.86,0,0,0.31,554.11,3114.25,26146351,99.77,0,0,0.56,554.28,3114.08,26146352,99.94,0,0,0.16,553.59,3114.79,26146353,99.92,0,0,0.14,553.56,3114.81,26146354,99.92,0,0,0.15,553.72,3114.65,26146355,99.88,0,0,0.36,554.3,3114.08,26146356,99.81,0,0,0.57,554.58,3113.8,26146357,99.91,0,0,0.16,554.21,3114.16,26146358,99.93,0,0,0.14,554.18,3114.19,26146359,99.82,0,0,0.32,553.93,3114.42,26146360,99.81,0,0,0.3,553.43,3114.93,26146361,99.79,0,0,0.52,553.92,3114.43,26146362,99.94,0,0,0.19,554.36,3114,26146363,99.95,0,0,0.14,554.35,3114,26146364,99.94,0,0,0.16,554.32,3114.02,26146365,99.85,0,0,0.32,554.34,3114.02,26146366,99.93,0,0,0.14,554.48,3113.87,26146367,99.78,0,0,0.58,555.15,3113.2,26146368,99.92,0,0,0.19,554.11,3114.23,26146369,99.94,0,0,0.16,553.92,3114.43,26146370,99.9,0,0,0.33,554.16,3114.2,26146371,99.93,0,0,0.16,554.14,3114.21,26146372,99.8,0,0,0.55,554.29,3114.06,26146373,99.95,0,0,0.14,553.86,3114.49,26146374,99.93,0,0,0.15,553.85,3114.49,26146375,99.88,0,0,0.36,553.84,3114.52,26146376,99.94,0,0,0.16,553.85,3114.5,26146377,99.8,0,0,0.54,554.33,3114.02,26146378,99.92,0,0,0.14,553.96,3114.38,26146379,99.91,0,0,0.19,553.7,3114.64,26146380,99.56,0,0,10.96,553.69,3114.86,26146381,99.92,0,0,0.2,553.72,3114.89,26146382,99.8,0,0,0.54,554.35,3114.25,26146383,99.93,0,0,0.16,554.15,3114.45,26146384,99.91,0,0,0.16,554.14,3114.46,26146385,99.85,0,0,0.32,553.66,3114.99,26146386,99.92,0,0,0.16,553.63,3115.01,26146387,99.81,0,0,0.52,554.27,3114.37,26146388,99.91,0,0,0.22,553.78,3114.88,26146389,99.85,0,0,0.32,553.75,3114.9,26146390,99.88,0,0,0.34,553.75,3114.92,26146391,99.93,0,0,0.17,553.73,3114.93,26146392,99.77,0,0,0.56,554.2,3114.45,26146393,99.93,0,0,0.17,554.15,3114.5,26146394,99.95,0,0,0.17,554.14,3114.5,26146395,99.88,0,0,0.34,554.37,3114.29,26146396,99.85,0,0,0.14,554.37,3114.29,26146397,99.75,0,0,0.46,554.71,3113.95,26146398,99.89,0,0,0.27,554.5,3114.15,26146399,99.88,0,0,0.15,554.48,3114.16,26146400,99.8,0,0,0.32,554.77,3113.9,26146401,99.88,0,0,0.14,554.71,3113.95,26146402,99.76,0,0,0.38,554.99,3113.66,26146403,99.89,0,0,0.29,554.4,3114.25,26146404,99.87,0,0.01,0.17,554.38,3114.26,26146405,99.84,0,0,0.34,553.88,3114.78,26146406,99.85,0,0,0.14,553.95,3114.71,26146407,99.84,0,0,0.16,554,3114.66,26146408,99.78,0,0,0.55,555.36,3113.29,26146409,99.92,0,0,0.14,554.7,3113.95,26146410,99.67,0,0,0.3,554.21,3114.45,26146411,99.85,0,0,0.14,554.17,3114.49,26146412,99.9,0,0,0.17,554.14,3114.51,26146413,99.71,0,0,0.56,554.67,3113.98,26146414,99.89,0,0,0.14,554.33,3114.31,26146415,99.81,0,0,0.31,554.7,3113.96,26146416,99.85,0,0,0.17,554.74,3113.92,26146417,99.85,0,0,0.16,554.73,3113.93,26146418,99.75,0,0,0.52,555.05,3113.6,26146419,99.77,0,0,0.32,554.67,3113.96,26146420,99.79,0,0,0.32,554.67,3113.96,26146421,99.85,0,0,0.17,554.64,3114,26146422,99.92,0,0,0.14,554.62,3114.01,26146423,99.75,0,0,0.53,554.64,3113.98,26146424,99.9,0,0,0.14,554.07,3114.57,26146425,99.86,0,0,0.32,554.36,3114.32,26146426,99.85,0,0,0.15,554.52,3114.15,26146427,99.83,0,0,0.14,554.52,3114.15,26146428,99.7,0,0,0.51,554.7,3113.96,26146429,99.85,0,0,0.21,553.97,3114.69,26146430,99.8,0,0,0.32,553.97,3114.7,26146431,99.83,0,0,0.13,553.95,3114.72,26146432,99.85,0,0,0.15,553.93,3114.73,26146433,99.73,0,0,0.54,554.31,3114.34,26146434,99.85,0,0,0.14,554.13,3114.52,26146435,99.78,0,0,0.32,553.88,3114.79,26146436,99.85,0,0,0.14,553.89,3114.78,26146437,99.84,0,0,0.15,554.02,3114.64,26146438,99.71,0,0,0.56,554.47,3114.19,26146439,99.83,0,0,0.21,554.47,3114.18,26146440,99.76,0,0,0.35,554.94,3113.73,26146441,99.83,0,0,0.16,554.92,3113.74,26146442,99.83,0,0,0.16,554.9,3113.75,26146443,99.7,0,0,0.32,554.6,3114.05,26146444,99.82,0,0,0.38,553.86,3114.79,26146445,99.78,0,0,0.27,553.87,3114.79,26146446,99.85,0,0,0.16,553.94,3114.72,26146447,99.85,0,0,0.14,554.02,3114.64,26146448,99.71,0,0,0.15,553.98,3114.67,26146449,99.61,0,0,0.77,554.16,3114.46,26146450,99.74,0,0,0.26,553.79,3114.85,26146451,99.85,0,0,0.15,553.68,3114.95,26146452,99.82,0,0,0.16,553.67,3114.96,26146453,99.83,0,0,0.14,553.64,3114.99,26146454,99.67,0,0,0.56,553.79,3114.84,26146455,99.76,0,0,0.26,553.37,3115.27,26146456,99.83,0,0,0.16,553.35,3115.29,26146457,99.84,0,0,0.23,553.27,3115.36,26146458,99.85,0,0,0.15,553.23,3115.39,26146459,99.7,0,0,0.54,553.99,3114.63,26146460,99.73,0,0,0.25,552.76,3115.88,26146461,99.88,0,0,0.16,552.69,3115.95,26146462,99.85,0,0,0.14,552.65,3115.98,26146463,99.87,0,0,0.15,552.63,3116,26146464,99.71,0,0,0.45,553.07,3115.55,26146465,99.73,0,0,0.36,553.58,3115.05,26146466,99.86,0,0,0.16,553.67,3114.96,26146467,99.84,0,0,0.14,553.75,3114.87,26146468,99.85,0,0,0.15,553.72,3114.9,26146469,99.73,0,0,0.51,554.04,3114.58,26146470,99.76,0,0,0.35,552.71,3115.91,26146471,99.85,0,0,0.17,552.7,3115.92,26146472,99.85,0,0,0.14,552.67,3115.95,26146473,95.02,0.68,0.01,64.76,560.69,3107.42,26146474,99.6,0,0,193.19,556.53,3111.29,26146475,99.8,0,0,0.5,555.91,3111.92,26146476,99.8,0,0,0.17,555.89,3111.94,26146477,99.82,0,0,0.18,555.86,3111.97,26146478,99.84,0,0,0.17,555.09,3112.76,26146479,99.66,0,0,0.56,554.61,3113.27,26146480,99.79,0,0,0.49,553.83,3114.06,26146481,99.83,0,0,0.14,553.82,3114.07,26146482,99.85,0,0,0.17,553.79,3114.09,26146483,99.87,0,0,0.21,553.78,3114.1,26146484,99.83,0,0,0.16,553.75,3114.13,26146485,99.63,0,0,0.76,554.65,3113.25,26146486,99.87,0,0,0.2,553.97,3113.92,26146487,99.8,0,0,0.2,553.95,3113.93,26146488,99.83,0,0,0.23,553.66,3114.22,26146489,99.83,0,0,0.2,553.51,3114.37,26146490,99.67,0,0,0.68,554.5,3113.39,26146491,99.83,0,0,0.16,554.06,3113.82,26146492,99.84,0,0,0.17,554.04,3113.85,26146493,99.82,0,0,0.17,554.02,3113.86,26146494,99.87,0,0,0.16,553.99,3113.88,26146495,99.63,0,0,0.71,553.65,3114.24,26146496,99.87,0,0,0.16,553.24,3114.65,26146497,99.85,0,0,0.13,553.23,3114.66,26146498,99.81,0,0,0.17,553.2,3114.68,26146499,99.84,0,0,0.14,553.17,3114.7,26146500,99.6,0,0,0.64,554.5,3113.39,26146501,99.83,0,0,0.15,554.06,3113.82,26146502,99.81,0,0,0.16,554.03,3113.85,26146503,99.87,0,0,0.14,554.02,3113.86,26146504,99.86,0,0,0.15,553.99,3113.89,26146505,99.59,0,0,0.62,554.13,3113.77,26146506,99.83,0,0,0.19,553.97,3113.93,26146507,99.83,0,0,0.15,553.94,3113.96,26146508,99.85,0,0,0.16,553.93,3113.96,26146509,99.79,0,0,0.3,553.66,3114.22,26146510,99.68,0,0,0.52,554.75,3113.14,26146511,99.86,0,0,0.3,554.3,3113.58,26146512,99.84,0,0,0.14,554.3,3113.58,26146513,99.84,0,0,0.14,554.26,3113.61,26146514,99.85,0,0,0.14,554.24,3113.63,26146515,99.64,0,0,0.43,554.6,3113.28,26146516,99.81,0,0,0.36,553.97,3113.9,26146517,99.84,0,0,0.21,553.95,3113.92,26146518,99.82,0,0,0.14,553.92,3113.95,26146519,99.82,0,0,0.21,553.97,3113.89,26146520,99.67,0,0,0.51,554.65,3113.23,26146521,99.85,0,0,0.34,554.27,3113.6,26146522,99.84,0,0,0.14,554.26,3113.61,26146523,99.85,0,0,0.14,554.22,3113.64,26146524,99.84,0,0,0.15,554.19,3113.67,26146525,99.8,0,0,0.27,554.2,3113.68,26146526,99.69,0,0,0.54,554.51,3113.35,26146527,99.83,0,0,0.17,554.15,3113.72,26146528,99.83,0,0,0.15,554.13,3113.73,26146529,99.83,0,0,0.14,554.25,3113.6,26146530,99.74,0,0,0.27,554.32,3113.55,26146531,99.7,0,0,0.57,554.61,3113.26,26146532,99.83,0,0,0.12,554.01,3113.85,26146533,99.82,0,0,0.19,553.99,3113.87,26146534,99.83,0,0,0.15,553.97,3113.89,26146535,99.78,0,0,0.27,554.22,3113.65,26146536,99.71,0,0,0.59,554.54,3113.33,26146537,99.85,0,0,0.18,554.19,3113.68,26146538,99.83,0,0,0.15,554.16,3113.7,26146539,99.78,0,0,0.31,554.55,3113.29,26146540,99.78,0,0.01,0.28,554.05,3113.8,26146541,99.73,0,0,0.54,554.62,3113.23,26146542,99.83,0,0,0.27,554.47,3113.37,26146543,99.84,0,0,0.14,554.44,3113.4,26146544,99.84,0,0,0.14,554.43,3113.42,26146545,99.78,0,0,0.28,553.98,3113.88,26146546,99.71,0,0,0.54,554.79,3113.06,26146547,99.86,0,0,0.23,554.53,3113.32,26146548,99.83,0,0,0.19,554.34,3113.51,26146549,99.81,0,0,0.14,553.99,3113.85,26146550,99.74,0,0,0.26,553.49,3114.37,26146551,99.73,0,0,0.57,553.84,3114.01,26146552,99.83,0,0,0.13,553.66,3114.19,26146553,99.86,0,0,0.16,553.64,3114.2,26146554,99.83,0,0,0.16,553.78,3114.06,26146555,99.75,0,0,0.26,554.03,3113.82,26146556,99.68,0,0,0.41,554.39,3113.46,26146557,99.84,0,0,0.31,553.99,3113.85,26146558,99.85,0,0,0.14,553.97,3113.87,26146559,99.83,0,0,0.14,553.95,3113.88,26146560,99.74,0,0,0.25,554.19,3113.66,26146561,99.8,0,0,0.14,554.18,3113.67,26146562,99.67,0,0,0.54,554.37,3113.47,26146563,99.82,0,0,0.14,553.62,3114.21,26146564,99.86,0,0,0.15,553.71,3114.12,26146565,99.78,0,0,0.27,554.76,3113.08,26146566,99.81,0,0,0.13,554.76,3113.08,26146567,99.7,0,0,0.56,554.75,3113.09,26146568,99.8,0,0,0.2,554.23,3113.6,26146569,97.6,0,0,0.32,554.43,3113.38,26146570,99.78,0,0,0.27,554.21,3113.62,26146571,99.84,0,0,0.16,554.17,3113.66,26146572,99.69,0,0,0.55,554.17,3113.65,26146573,99.82,0,0,0.14,553.63,3114.18,26146574,99.84,0,0,0.14,553.63,3114.2,26146575,99.79,0,0,0.27,554.51,3113.34,26146576,99.85,0,0,0.16,554.51,3113.33,26146577,99.7,0,0,0.59,554.42,3113.42,26146578,99.87,0,0,0.16,553.98,3113.86,26146579,99.82,0,0,0.15,553.96,3113.88,26146580,99.78,0,0,0.26,554.45,3113.42,26146581,99.81,0,0,0.15,554.44,3113.43,26146582,99.72,0,0,0.54,555.07,3112.79,26146583,99.84,0,0,0.2,554.38,3113.47,26146584,99.85,0,0,0.15,554.35,3113.5,26146585,99.79,0,0,0.31,554.38,3113.48,26146586,99.82,0,0,0.14,554.52,3113.34,26146587,99.7,0,0,0.4,554.93,3112.93,26146588,99.87,0,0,0.32,554.72,3113.13,26146589,99.88,0,0,0.15,554.7,3113.15,26146590,99.16,0,0,0.32,553.98,3113.9,26146591,99.94,0,0,0.15,553.93,3113.94,26146592,99.81,0,0,0.56,554.43,3113.44,26146593,99.92,0,0,0.16,553.65,3114.21,26146594,99.93,0,0,0.16,553.63,3114.23,26146595,99.83,0,0,0.27,553.86,3114.02,26146596,99.91,0,0,0.15,554.02,3113.86,26146597,99.8,0,0,0.41,554.79,3113.1,26146598,99.93,0,0,0.29,554.03,3113.86,26146599,99.81,0,0,0.3,554.01,3113.83,26146600,99.81,0,0,0.3,553.76,3114.1,26146601,99.93,0,0,0.16,553.71,3114.14,26146602,99.94,0,0,0.15,553.69,3114.16,26146603,99.82,0,0,0.54,554.11,3113.73,26146604,99.88,0,0,0.14,553.65,3114.19,26146605,99.87,0,0,0.28,553.65,3114.2,26146606,99.92,0,0,0.14,553.67,3114.18,26146607,99.93,0,0,0.16,553.77,3114.07,26146608,99.76,0,0,0.56,554.22,3113.63,26146609,99.92,0,0,0.15,553.73,3114.13,26146610,99.87,0,0,0.27,553.48,3114.39,26146611,99.92,0,0,0.14,553.46,3114.4,26146612,99.92,0,0,0.16,553.43,3114.43,26146613,99.8,0,0,0.59,553.97,3113.89,26146614,99.93,0,0,0.14,553.63,3114.22,26146615,99.87,0,0,0.25,553.42,3114.45,26146616,99.92,0,0,0.14,553.56,3114.31,26146617,99.93,0,0,0.16,553.52,3114.34,26146618,99.8,0,0,0.54,554.35,3113.5,26146619,99.91,0,0,0.17,553.73,3114.12,26146620,99.74,0,0,0.25,552.78,3115.09,26146621,99.91,0,0,0.15,552.73,3115.14,26146622,99.88,0,0,0.18,552.72,3115.14,26146623,99.8,0,0,0.53,553.36,3114.5,26146624,99.93,0,0,0.14,553.39,3114.46,26146625,99.88,0,0,0.28,553.64,3114.23,26146626,99.94,0,0,0.14,553.72,3114.15,26146627,99.91,0,0,0.13,553.8,3114.07,26146628,99.8,0,0,0.45,554.18,3113.68,26146629,99.84,0,0,0.5,553.49,3114.34,26146630,99.88,0,0,0.25,554.2,3113.65,26146631,99.92,0,0,0.16,554.19,3113.65,26146632,99.95,0,0,0.14,554.16,3113.68,26146633,99.78,0,0,0.53,554.48,3113.36,26146634,99.94,0,0,0.2,554.1,3113.73,26146635,99.85,0,0,0.26,553.78,3114.06,26146636,99.93,0,0,0.14,553.76,3114.08,26146637,99.93,0,0,0.2,553.99,3113.85,26146638,99.8,0,0,0.35,554.62,3113.22,26146639,99.94,0,0,0.39,554.2,3113.63,26146640,99.85,0,0,0.28,554.23,3113.62,26146641,99.92,0,0,0.14,554.17,3113.67,26146642,99.94,0,0,0.14,554.16,3113.68,26146643,99.95,0,0,0.15,554.13,3113.7,26146644,99.74,0,0,0.59,554.25,3113.58,26146645,99.83,0,0,0.26,553.87,3113.98,26146646,99.94,0,0,0.16,554.03,3113.82,26146647,99.91,0,0,0.14,554,3113.84,26146648,99.94,0,0,0.15,553.97,3113.86,26146649,99.75,0,0,0.56,554.53,3113.29,26146650,98.42,0,0,0.27,553.72,3114.12,26146651,99.91,0,0,0.18,553.68,3114.16,26146652,99.93,0,0,0.15,553.66,3114.17,26146653,99.94,0,0,0.16,553.65,3114.17,26146654,99.8,0,0,0.55,554.74,3113.08,26146655,99.9,0,0,0.29,553.87,3113.97,26146656,99.94,0,0,0.14,553.91,3113.92,26146657,99.93,0,0,0.14,553.99,3113.83,26146658,99.92,0,0,0.16,553.97,3113.86,26146659,99.71,0,0,0.82,554.71,3113.09,26146660,99.89,0,0,0.26,554.19,3113.63,26146661,99.93,0,0,0.16,554.18,3113.63,26146662,99.95,0,0,0.13,554.15,3113.66,26146663,99.94,0,0,0.17,554.14,3113.66,26146664,99.78,0,0,0.49,554.47,3113.32,26146665,99.86,0,0,0.36,553.16,3114.66,26146666,99.93,0,0,0.13,553.12,3114.69,26146667,99.9,0,0,0.39,553.02,3114.79,26146668,99.89,0,0,0.16,552.94,3114.87,26146669,96.21,0.07,0.01,77.75,565.72,3103.88,26146670,99.86,0,0,63.89,556.84,3111.07,26146671,99.91,0,0,0.18,556.82,3111.09,26146672,99.93,0,0,0.18,556.81,3111.1,26146673,99.9,0,0,0.18,556.78,3111.12,26146674,99.8,0,0,0.64,556.88,3111.02,26146675,99.86,0,0,0.27,554.36,3113.6,26146676,99.93,0,0,0.13,554.35,3113.62,26146677,99.92,0,0,0.16,554.32,3113.66,26146678,99.94,0,0,0.14,554.3,3113.68,26146679,99.75,0,0,0.41,554.63,3113.35,26146680,99.87,0,0,0.38,554.04,3113.95,26146681,99.93,0,0,0.16,554.21,3113.79,26146682,99.93,0,0,0.14,554.19,3113.8,26146683,99.92,0,0,0.19,554.17,3113.82,26146684,99.78,0,0,0.41,554.43,3113.54,26146685,99.84,0,0,0.41,553.92,3114.08,26146686,99.92,0,0,0.18,553.87,3114.13,26146687,99.9,0,0,0.14,553.85,3114.14,26146688,99.93,0,0,0.15,553.83,3114.16,26146689,99.83,0,0,0.32,553.79,3114.17,26146690,99.7,0,0,0.68,554.21,3113.77,26146691,99.94,0,0,0.14,553.86,3114.12,26146692,99.94,0,0,0.13,553.94,3114.03,26146693,99.93,0,0,0.17,553.92,3114.05,26146694,99.92,0,0,0.14,553.88,3114.1,26146695,99.69,0,0,0.68,554.45,3113.56,26146696,99.93,0,0,0.15,553.87,3114.14,26146697,99.93,0,0,0.2,553.84,3114.17,26146698,99.9,0,0,0.14,553.83,3114.17,26146699,99.93,0,0,0.16,553.81,3114.19,26146700,99.76,0,0,0.66,554.64,3113.37,26146701,99.94,0,0,0.14,554.27,3113.74,26146702,99.91,0,0,0.16,554.42,3113.59,26146703,99.93,0,0,0.14,554.42,3113.58,26146704,99.92,0,0,0.15,554.41,3113.59,26146705,99.73,0,0,0.68,554.63,3113.38,26146706,99.93,0,0,0.15,554.39,3113.62,26146707,99.92,0,0,0.16,554.35,3113.65,26146708,99.94,0,0,0.14,554.35,3113.65,26146709,99.93,0,0,0.14,554.32,3113.69,26146710,99.72,0,0,0.66,554.92,3113.1,26146711,99.03,0,0,0.16,554.54,3113.48,26146712,99.89,0,0,0.14,554.53,3113.49,26146713,99.9,0,0,0.15,554.6,3113.41,26146714,99.95,0,0,0.14,554.65,3113.36,26146715,99.76,0,0,0.68,554.9,3113.13,26146716,99.95,0,0,0.14,554.39,3113.63,26146717,99.95,0,0,0.14,554.38,3113.63,26146718,99.94,0,0,0.18,554.35,3113.66,26146719,99.87,0,0,0.3,554.33,3113.66,26146720,99.8,0,0,0.42,554.91,3113.09,26146721,99.86,0,0,0.39,554.32,3113.69,26146722,99.93,0,0,0.14,554.28,3113.72,26146723,99.93,0,0,0.15,554.27,3113.72,26146724,99.92,0,0,0.15,554.24,3113.75,26146725,99.88,0,0,0.27,554.16,3113.85,26146726,99.8,0,0,0.54,554.72,3113.28,26146727,99.9,0,0,0.16,554.38,3113.62,26146728,99.9,0,0,0.19,554.2,3113.8,26146729,99.93,0,0,0.17,553.84,3114.15,26146730,99.82,0,0,0.29,553.85,3114.16,26146731,99.74,0,0,0.53,554.89,3113.12,26146732,99.93,0,0,0.16,554.53,3113.47,26146733,99.92,0,0,0.14,554.52,3113.47,26146734,99.92,0,0,0.15,554.51,3113.48,26146735,99.85,0,0,0.28,554.51,3113.5,26146736,99.79,0,0,0.42,555.02,3112.99,26146737,99.93,0,0,0.29,554.68,3113.32,26146738,99.91,0,0,0.16,554.65,3113.34,26146739,99.94,0,0,0.13,554.64,3113.35,26146740,99.78,0,0,0.27,554.2,3113.81,26146741,99.8,0,0,0.5,553.99,3114.01,26146742,99.93,0,0,0.21,553.6,3114.39,26146743,99.89,0,0,0.15,553.6,3114.4,26146744,99.96,0,0,0.15,553.56,3114.43,26146745,99.84,0,0,0.3,554.06,3113.95,26146746,99.75,0,0,0.39,554.66,3113.34,26146747,99.93,0,0,0.33,553.55,3114.44,26146748,99.95,0,0,0.14,553.69,3114.3,26146749,99.87,0,0,0.33,553.67,3114.29,26146750,99.83,0,0,0.3,553.91,3114.07,26146751,99.77,0,0,0.41,554.28,3113.69,26146752,99.91,0,0,0.28,553.87,3114.09,26146753,99.91,0,0,0.15,553.84,3114.12,26146754,99.93,0,0,0.14,553.83,3114.13,26146755,99.89,0,0,0.32,553.83,3114.15,26146756,99.8,0,0,0.45,554.17,3113.82,26146757,99.92,0,0,0.29,553.54,3114.44,26146758,99.93,0,0,0.16,553.52,3114.46,26146759,99.91,0,0,0.15,553.65,3114.33,26146760,99.87,0,0,0.27,553.93,3114.06,26146761,99.92,0,0,0.16,553.91,3114.08,26146762,99.8,0,0,0.54,554.26,3113.75,26146763,99.93,0,0,0.14,553.87,3114.14,26146764,99.94,0,0,0.15,553.84,3114.17,26146765,98.79,0,0,15.42,555.01,3113.48,26146766,90.94,0,0,85.71,567.03,3092.4,26146767,99.79,0,0,0.68,556.87,3110.97,26146768,99.9,0,0,0.16,556.41,3111.42,26146769,99.93,0,0,0.15,556.43,3111.4,26146770,99.83,0,0,0.29,556.58,3111.26,26146771,99.93,0,0,0.2,555.61,3112.25,26146772,99.8,0,0,0.52,553.84,3114.06,26146773,99.92,0,0,0.16,553.1,3114.79,26146774,99.87,0,0,0.15,553.09,3114.8,26146775,99.82,0,0,0.28,554.03,3113.88,26146776,99.92,0,0,0.16,553.98,3113.94,26146777,99.78,0,0,0.54,553.98,3113.96,26146778,99.93,0,0,0.14,553.54,3114.4,26146779,99.86,0,0,0.31,553.49,3114.42,26146780,99.84,0,0,0.28,553.02,3114.91,26146781,99.93,0,0,0.14,553,3114.93,26146782,99.81,0,0,0.49,553.97,3113.95,26146783,99.9,0,0,0.2,554.11,3113.8,26146784,99.93,0,0,0.14,554.1,3113.81,26146785,99.85,0,0,0.28,554.1,3113.83,26146786,99.92,0,0,0.16,554.07,3113.85,26146787,99.78,0,0,0.56,554.74,3113.18,26146788,99.89,0,0,0.16,553.87,3114.04,26146789,99.92,0,0,0.16,553.52,3114.39,26146790,99.9,0,0,0.34,554.24,3113.69,26146791,99.95,0,0,0.15,554.22,3113.7,26146792,99.75,0,0,0.43,554.54,3113.38,26146793,99.94,0,0,0.3,554.13,3113.79,26146794,99.9,0,0,0.14,554.11,3113.8,26146795,99.85,0,0,0.29,554.11,3113.81,26146796,99.9,0,0,0.15,554.09,3113.84,26146797,99.77,0,0,0.54,554.35,3113.57,26146798,99.92,0,0,0.14,553.54,3114.38,26146799,99.93,0,0,0.14,553.52,3114.39,26146800,99.88,0,0,0.27,554.24,3113.69,26146801,99.94,0,0,0.16,554.24,3113.68,26146802,99.93,0,0,0.15,554.21,3113.71,26146803,99.8,0,0,0.54,553.72,3114.2,26146804,99.88,0,0,0.14,553.37,3114.54,26146805,99.88,0,0,0.3,553.86,3114.07,26146806,99.9,0,0,0.14,553.85,3114.08,26146807,99.9,0,0,0.14,553.83,3114.1,26146808,99.79,0.01,0.02,0.59,553.94,3113.98,26146809,99.82,0,0,0.33,554.23,3113.67,26146810,99.83,0,0,0.3,553.99,3113.93,26146811,99.9,0,0,0.15,553.98,3113.93,26146812,99.89,0,0,0.16,554.15,3113.75,26146813,99.75,0,0.01,0.58,554.33,3113.57,26146814,99.93,0,0,0.16,553.61,3114.29,26146815,99.82,0,0,0.29,554.34,3113.58,26146816,99.93,0,0,0.15,554.32,3113.59,26146817,99.88,0,0,0.2,554.07,3113.84,26146818,99.77,0,0,0.39,553.75,3114.15,26146819,99.93,0,0,0.29,552.54,3115.35,26146820,99.83,0,0,0.28,553.25,3114.66,26146821,99.9,0,0,0.14,553.26,3114.64,26146822,99.92,0,0,0.14,553.39,3114.52,26146823,99.8,0,0,0.48,554.08,3113.82,26146824,99.93,0,0,0.2,554.12,3113.78,26146825,99.84,0,0,0.27,554.37,3113.54,26146826,99.92,0,0,0.14,554.35,3113.56,26146827,99.94,0,0,0.16,554.34,3113.57,26146828,99.76,0,0,0.41,554.72,3113.18,26146829,99.92,0,0,0.3,554.54,3113.35,26146830,99.81,0,0,0.34,554.54,3113.37,26146831,99.91,0,0,0.16,554.53,3113.38,26146832,99.92,0,0,0.13,554.49,3113.41,26146833,99.78,0,0,0.41,554.96,3112.94,26146834,99.9,0,0,0.29,554.24,3113.65,26146835,99.84,0,0,0.28,554.41,3113.5,26146836,99.92,0,0,0.16,554.37,3113.53,26146837,99.91,0,0,0.15,554.37,3113.54,26146838,99.93,0,0,0.15,554.33,3113.56,26146839,99.72,0,0,0.69,554.22,3113.65,26146840,99.81,0,0,0.27,554.3,3113.59,26146841,99.93,0,0,0.15,554.28,3113.6,26146842,99.92,0,0,0.16,554.26,3113.62,26146843,99.88,0,0,0.16,554.24,3113.64,26146844,99.75,0,0,0.54,554.58,3113.3,26146845,99.87,0,0,0.27,554.24,3113.66,26146846,99.92,0,0,0.15,554.39,3113.5,26146847,99.9,0,0,0.16,554.36,3113.53,26146848,99.89,0,0,0.16,554.27,3113.61,26146849,99.81,0,0,0.57,554.93,3112.94,26146850,99.84,0,0,0.34,554.55,3113.34,26146851,99.94,0,0,0.17,554.54,3113.34,26146852,99.92,0,0,0.17,554.51,3113.37,26146853,99.93,0,0,0.16,554.5,3113.38,26146854,99.8,0,0,0.42,554.9,3112.97,26146855,99.86,0,0,0.44,554.48,3113.41,26146856,99.9,0,0,0.15,554.45,3113.43,26146857,99.89,0,0,0.16,554.54,3113.34,26146858,99.91,0,0,0.15,554.61,3113.27,26146859,99.8,0,0,0.54,554.84,3113.03,26146860,99.8,0,0,0.33,553.91,3113.97,26146861,99.9,0,0,0.14,553.81,3114.07,26146862,99.91,0,0,0.16,553.79,3114.09,26146863,99.94,0,0,0.14,553.76,3114.11,26146864,99.75,0,0,0.59,554.3,3113.57,26146865,99.81,0,0,0.28,553.51,3114.37,26146866,99.92,0,0,0.16,553.47,3114.4,26146867,99.92,0,0,0.15,553.6,3114.27,26146868,99.91,0,0,0.16,553.6,3114.27,26146869,99.71,0,0,0.68,555,3112.84,26146870,99.87,0,0,0.34,553.61,3114.24,26146871,99.92,0,0,0.14,553.58,3114.28,26146872,99.9,0,0,0.17,553.55,3114.3,26146873,99.93,0,0,0.16,553.53,3114.32,26146874,99.79,0,0,0.34,553.89,3113.97,26146875,99.86,0,0,0.5,554.72,3113.17,26146876,99.92,0,0,0.16,554.72,3113.17,26146877,99.9,0,0,0.18,554.69,3113.19,26146878,99.91,0,0,0.21,554.72,3113.16,26146879,99.79,0,0,0.32,555.18,3112.7,26146880,99.88,0,0,0.51,554.37,3113.53,26146881,99.9,0,0,0.18,554.32,3113.56,26146882,99.94,0,0,0.17,554.32,3113.57,26146883,99.88,0,0,0.14,554.3,3113.58,26146884,99.91,0,0,0.15,554.28,3113.6,26146885,99.67,0,0,0.7,555.08,3112.81,26146886,99.9,0,0,0.14,554.75,3113.14,26146887,99.91,0,0,0.16,554.72,3113.16,26146888,99.91,0,0,0.14,554.71,3113.17,26146889,99.9,0,0,0.16,554.7,3113.17,26146890,99.6,0,0,0.69,554.59,3113.29,26146891,99.92,0,0,0.13,553.36,3114.53,26146892,99.94,0,0,0.17,553.39,3114.49,26146893,99.87,0,0,0.14,553.36,3114.52,26146894,99.93,0,0,0.14,553.35,3114.52,26146895,99.71,0,0,0.71,554.17,3113.72,26146896,99.91,0,0,0.16,553.81,3114.07,26146897,99.93,0,0,0.14,553.79,3114.09,26146898,99.94,0,0,0.14,553.76,3114.11,26146899,99.81,0,0,0.3,553.79,3114.05,26146900,99.68,0,0,0.72,553.82,3114.04,26146901,99.93,0,0,0.16,553.71,3114.14,26146902,99.92,0,0,0.18,553.77,3114.08,26146903,99.9,0,0,0.14,553.86,3113.99,26146904,99.93,0,0,0.16,553.83,3114.01,26146905,99.68,0,0,0.77,554.58,3113.28,26146906,99.93,0,0,0.18,554.06,3113.79,26146907,99.88,0,0,0.18,554.05,3113.8,26146908,99.9,0,0,0.16,553.97,3113.88,26146909,99.94,0,0,0.16,553.76,3114.08,26146910,99.72,0,0,0.55,554.69,3113.16,26146911,99.94,0,0,0.31,553.99,3113.87,26146912,99.94,0,0,0.14,553.98,3113.87,26146913,99.92,0,0,0.14,553.95,3113.9,26146914,99.92,0,0,0.15,553.94,3113.9,26146915,99.78,0,0,0.43,554.29,3113.57,26146916,99.89,0,0,0.37,553.84,3114.01,26146917,99.93,0,0,0.16,553.86,3113.99,26146918,99.94,0,0,0.14,553.83,3114.02,26146919,99.9,0,0,0.14,553.82,3114.02,26146920,99.7,0,0,0.45,554.4,3113.46,26146921,99.9,0,0,0.41,554.3,3113.56,26146922,99.93,0,0,0.18,554.27,3113.58,26146923,99.93,0,0,0.2,554.26,3113.59,26146924,99.91,0,0,0.18,554.24,3113.61,26146925,99.84,0,0,0.32,553.76,3114.1,26146926,99.73,0,0,0.57,554.29,3113.57,26146927,99.93,0,0,0.16,553.95,3113.9,26146928,99.91,0,0,0.18,553.94,3113.9,26146929,99.74,0,0,0.32,554.04,3113.77,26146930,99.86,0,0,0.3,554.11,3113.72,26146931,99.78,0,0,0.56,554.56,3113.27,26146932,99.92,0,0,0.15,554.06,3113.76,26146933,99.89,0,0,0.17,554.03,3113.79,26146934,99.94,0,0,0.16,554.02,3113.79,26146935,99.85,0,0,0.32,553.79,3114.05,26146936,99.76,0,0,0.56,554.24,3113.59,26146937,99.89,0,0,0.21,553.76,3114.06,26146938,99.92,0,0,0.16,553.73,3114.09,26146939,99.9,0,0,0.17,553.72,3114.1,26146940,99.84,0,0,0.33,553.95,3113.88,26146941,99.77,0,0,0.57,554.29,3113.53,26146942,99.92,0,0,0.17,553.91,3113.91,26146943,99.93,0,0,0.16,554.05,3113.76,26146944,99.91,0,0,0.16,554.06,3113.75,26146945,99.87,0,0,0.29,554.08,3113.75,26146946,99.75,0,0,0.52,554.9,3112.93,26146947,99.88,0,0,0.2,554.28,3113.54,26146948,99.9,0,0,0.14,554.27,3113.54,26146949,99.93,0,0,0.15,554.24,3113.57,26146950,99.8,0,0,0.29,553.07,3114.75,26146951,99.76,0,0,0.5,553.58,3114.24,26146952,99.93,0,0,0.19,553.97,3113.85,26146953,99.33,0,0,0.15,553.96,3113.86,26146954,99.91,0,0,0.14,553.93,3113.9,26146955,99.85,0,0,0.27,554.19,3113.66,26146956,99.81,0,0,0.16,554.23,3113.61,26146957,99.77,0,0,0.53,554.66,3113.17,26146958,99.86,0,0,0.14,554.31,3113.53,26146959,99.83,0,0,0.3,553.58,3114.23,26146960,99.78,0,0,0.33,553.55,3114.28,26146961,99.9,0,0,0.2,553.52,3114.31,26146962,99.72,0.01,0.01,0.62,554.62,3113.19,26146963,99.83,0,0,0.2,554.42,3113.39,26146964,99.87,0,0,0.19,554.39,3113.42,26146965,99.86,0,0,0.32,554.28,3113.55,26146966,99.88,0,0,0.19,554.31,3113.51,26146967,99.73,0,0.01,0.53,554.46,3113.35,26146968,99.87,0,0,0.2,553.98,3113.83,26146969,99.92,0,0,0.14,553.76,3114.04,26146970,99.84,0,0,0.28,554.25,3113.57,26146971,99.9,0,0,0.14,554.23,3113.59,26146972,99.78,0,0,0.54,554.95,3112.86,26146973,99.91,0,0,0.15,554.19,3113.62,26146974,99.91,0,0,0.14,554.17,3113.64,26146975,99.83,0,0,0.29,554.16,3113.66,26146976,99.89,0,0,0.14,554.25,3113.57,26146977,99.72,0,0,0.51,554.69,3113.12,26146978,99.88,0,0,0.2,554.3,3113.5,26146979,99.89,0,0,0.14,554.29,3113.51,26146980,99.83,0,0,0.28,554.31,3113.5,26146981,99.82,0,0,0.16,554.27,3113.54,26146982,99.73,0,0,0.38,554.62,3113.2,26146983,99.88,0,0,0.27,554.25,3113.57,26146984,99.85,0,0,0.15,554.23,3113.59,26146985,99.8,0,0,0.3,554.24,3113.59,26146986,99.84,0,0,0.14,554.21,3113.62,26146987,99.7,0,0,0.48,554.55,3113.28,26146988,99.83,0,0,0.2,554.17,3113.67,26146989,99.76,0,0,0.29,553.95,3113.86,26146990,99.73,0,0,0.29,554.02,3113.81,26146991,99.83,0,0,0.16,554.09,3113.73,26146992,99.66,0,0,0.4,554.45,3113.37,26146993,99.83,0,0,0.29,554.29,3113.52,26146994,99.81,0,0,0.14,554.27,3113.53,26146995,99.79,0,0,0.29,554.6,3113.22,26146996,99.84,0,0,0.16,554.51,3113.3,26146997,99.81,0,0,0.22,554.72,3113.1,26146998,99.7,0,0,0.57,554.75,3113.06,26146999,99.84,0,0,0.14,554.19,3113.61,26147000,99.76,0,0,0.3,554.45,3113.37,26147001,99.83,0,0,0.14,554.43,3113.38,26147002,99.86,0,0,0.14,554.41,3113.4,26147003,99.73,0,0,0.57,553.8,3114.01,26147004,99.85,0,0,0.14,553.26,3114.54,26147005,99.79,0,0,0.3,554.29,3113.53,26147006,99.86,0,0,0.14,554.3,3113.52,26147007,99.84,0,0,0.14,554.29,3113.52,26147008,99.72,0,0,0.53,554.46,3113.35,26147009,99.83,0,0,0.15,554,3113.8,26147010,99.78,0,0,0.29,554.03,3113.81,26147011,99.85,0,0,0.16,553.99,3113.84,26147012,99.83,0,0,0.14,553.99,3113.85,26147013,99.59,0,0,0.53,554.6,3113.23,26147014,99.84,0,0,0.14,554.43,3113.39,26147015,99.81,0,0,0.35,554.42,3113.41,26147016,99.86,0,0,0.18,554.41,3113.42,26147017,99.85,0,0,0.13,554.53,3113.3,26147018,99.73,0,0,0.49,555.01,3112.82,26147019,99.81,0,0,0.4,554.54,3113.27,26147020,99.79,0,0,0.34,554.53,3113.29,26147021,99.84,0,0,0.16,554.51,3113.3,26147022,99.87,0,0,0.16,554.49,3113.32,26147023,99.71,0,0,0.48,555.23,3112.57,26147024,99.86,0,0,0.2,554.69,3113.12,26147025,99.8,0,0,0.3,554.22,3113.6,26147026,99.85,0,0,0.14,554.17,3113.64,26147027,99.86,0,0,0.16,554.16,3113.65,26147028,99.7,0,0,0.36,554.51,3113.3,26147029,99.83,0,0,0.31,554.55,3113.25,26147030,99.81,0,0,0.31,554.79,3113.02,26147031,99.86,0,0,0.17,554.78,3113.03,26147032,99.84,0,0,0.14,554.75,3113.06,26147033,99.88,0,0,0.15,554.74,3113.06,26147034,95.24,0.24,0.01,228.63,567.85,3099.91,26147035,99.8,0,0,0.29,557,3110.74,26147036,99.87,0,0,0.15,557.18,3110.56,26147037,99.83,0,0,0.21,555.32,3112.43,26147038,99.85,0,0,0.16,554.43,3113.32,26147039,99.69,0,0,0.58,552.89,3114.9,26147040,99.78,0,0,0.28,551.66,3116.15,26147041,99.84,0,0,0.15,551.01,3116.79,26147042,99.85,0,0,0.14,551.01,3116.81,26147043,99.83,0,0,0.15,550.98,3116.84,26147044,99.72,0,0,0.56,551.9,3115.91,26147045,99.77,0,0,0.29,550.98,3116.85,26147046,99.85,0,0,0.16,550.95,3116.88,26147047,99.83,0,0,0.14,550.94,3116.88,26147048,99.86,0,0,0.15,550.91,3116.91,26147049,99.69,0,0,0.66,551.49,3116.3,26147050,99.82,0,0,0.29,551.37,3116.44,26147051,99.85,0,0,0.17,551.32,3116.49,26147052,99.85,0,0,0.14,551.29,3116.52,26147053,99.84,0,0,0.15,551.28,3116.52,26147054,99.73,0,0,0.48,551.59,3116.21,26147055,99.79,0,0,0.35,551.27,3116.54,26147056,99.86,0,0,0.14,551.24,3116.57,26147057,99.85,0,0,0.17,551.22,3116.58,26147058,99.84,0,0,0.16,551.22,3116.58,26147059,99.7,0,0,0.52,551.33,3116.46,26147060,99.79,0,0,0.28,550.23,3117.58,26147061,99.85,0,0,0.16,550.18,3117.63,26147062,99.83,0,0,0.14,550.16,3117.64,26147063,99.84,0,0,0.15,550.31,3117.49,26147064,99.73,0,0,0.56,550.89,3116.9,26147065,99.79,0,0,0.35,551.04,3116.76,26147066,99.85,0,0,0.14,551.01,3116.79,26147067,99.86,0,0,0.16,550.99,3116.8,26147068,99.83,0,0,0.14,550.97,3116.82,26147069,99.73,0,0,0.31,551.66,3116.12,26147070,99.82,0,0,0.49,551.19,3116.61,26147071,99.85,0,0,0.16,551.17,3116.61,26147072,99.86,0,0,0.14,551.15,3116.64,26147073,99.85,0,0,0.15,551.26,3116.52,26147074,99.84,0,0,0.14,551.29,3116.49,26147075,99.65,0,0,0.68,551.65,3116.13,26147076,99.86,0,0,0.14,551.26,3116.52,26147077,99.83,0,0,0.16,551.24,3116.54,26147078,99.85,0,0,0.14,551.22,3116.55,26147079,99.82,0,0,0.29,550.97,3116.79,26147080,99.61,0,0,0.68,551.78,3115.99,26147081,99.21,0,0,0.14,551.43,3116.34,26147082,99.84,0,0,0.14,551.41,3116.35,26147083,99.85,0,0,0.16,551.4,3116.35,26147084,99.85,0,0,0.14,551.37,3116.38,26147085,99.68,0,0,0.68,551.48,3116.28,26147086,99.84,0,0,0.14,551.1,3116.66,26147087,99.8,0,0,0.16,551.28,3116.48,26147088,99.83,0,0,0.14,551.24,3116.52,26147089,99.87,0,0,0.18,551,3116.75,26147090,99.67,0,0,0.68,551.84,3115.93,26147091,99.85,0,0,0.16,551.47,3116.29,26147092,99.86,0,0,0.16,551.44,3116.32,26147093,99.84,0,0,0.14,551.43,3116.32,26147094,99.87,0,0,0.15,551.41,3116.34,26147095,99.66,0,0,0.68,551.76,3116.01,26147096,99.85,0,0,0.17,551.41,3116.38,26147097,99.85,0,0,0.14,551.38,3116.41,26147098,99.85,0.01,0.02,0.17,551.43,3116.36,26147099,99.88,0,0.01,0.18,551.49,3116.29,26147100,99.57,0,0.02,0.7,550.83,3116.97,26147101,99.84,0,0.01,0.16,550.97,3116.83,26147102,99.85,0,0.01,0.14,550.94,3116.86,26147103,99.85,0,0.01,0.17,550.9,3116.88,26147104,99.83,0,0.01,0.16,550.86,3116.92,26147105,99.67,0,0.01,0.55,551.09,3116.7,26147106,99.85,0,0.02,0.29,549.52,3118.27,26147107,99.81,0,0,0.17,549.51,3118.27,26147108,99.83,0,0.01,0.14,549.48,3118.3,26147109,99.81,0,0.01,0.34,551.15,3116.6,26147110,99.57,0,0.02,0.58,551.44,3116.33,26147111,99.8,0,0,0.35,551.62,3116.14,26147112,99.85,0,0.01,0.17,551.61,3116.16,26147113,99.85,0,0.01,0.14,551.75,3116.01,26147114,99.85,0,0.01,0.18,551.75,3116,26147115,99.78,0,0.01,0.34,551.5,3116.27,26147116,99.7,0,0.02,0.55,551.81,3115.95,26147117,99.86,0,0,0.21,551.43,3116.33,26147118,99.83,0,0.01,0.16,551.42,3116.34,26147119,99.85,0,0.01,0.17,551.37,3116.38,26147120,99.79,0,0.01,0.3,551.66,3116.1,26147121,99.71,0,0.01,0.56,551.48,3116.28,26147122,99.84,0,0.01,0.19,551,3116.76,26147123,99.86,0,0.01,0.16,550.96,3116.79,26147124,99.86,0,0.01,0.16,550.95,3116.8,26147125,99.78,0,0.01,0.3,551.67,3116.09,26147126,99.72,0,0.01,0.58,551.3,3116.46,26147127,99.87,0,0.01,0.15,550.62,3117.13,26147128,99.87,0,0.01,0.16,550.65,3117.1,26147129,99.87,0,0.01,0.16,550.75,3116.99,26147130,99.8,0,0.01,0.29,551.97,3115.8,26147131,99.72,0,0.01,0.56,552.32,3115.44,26147132,99.85,0,0.02,0.19,551.67,3116.09,26147133,99.86,0,0,0.18,551.64,3116.11,26147134,99.87,0,0.02,0.2,551.6,3116.15,26147135,99.83,0,0.01,0.32,551.98,3115.78,26147136,99.73,0,0.02,0.61,552.07,3115.68,26147137,99.88,0,0.01,0.18,551.21,3116.54,26147138,99.85,0,0.01,0.2,551.19,3116.56,26147139,99.81,0,0.01,0.41,551.63,3116.09,26147140,99.66,0.01,0.04,0.32,550.31,3117.43,26147141,99.72,0,0,0.44,550.96,3116.78,26147142,99.88,0,0.01,0.3,551.37,3116.36,26147143,99.9,0,0.01,0.18,551.33,3116.4,26147144,99.92,0,0.02,0.18,551.47,3116.26,26147145,99.83,0,0.01,0.48,550.78,3116.96,26147146,99.78,0,0.02,0.47,551.45,3116.28,26147147,99.9,0,0.01,0.3,551.18,3116.55,26147148,99.92,0,0.02,0.15,551.14,3116.59,26147149,99.95,0,0,0.19,550.62,3117.11,26147150,99.83,0,0.01,0.31,551.58,3116.16,26147151,99.93,0,0.01,0.16,551.74,3116,26147152,99.78,0,0.02,0.55,551.56,3116.17,26147153,99.92,0,0.01,0.16,551.18,3116.55,26147154,99.94,0,0.02,0.14,551.15,3116.57,26147155,99.9,0,0.01,0.32,551.62,3116.14,26147156,99.93,0,0.02,0.16,551.63,3116.12,26147157,99.82,0,0.01,0.56,551.86,3115.89,26147158,99.93,0,0.02,0.15,551.49,3116.26,26147159,99.95,0,0,0.2,551.45,3116.29,26147160,99.83,0,0.02,0.31,551.94,3115.82,26147161,99.93,0,0,0.18,551.89,3115.86,26147162,99.81,0.01,0.06,0.56,552.24,3115.5,26147163,99.93,0.01,0.11,0.24,551.36,3116.37,26147164,99.93,0,0.01,0.21,551.48,3116.25,26147165,99.89,0,0.02,0.34,550.98,3116.77,26147166,99.9,0,0,0.14,550.93,3116.81,26147167,99.78,0,0,0.62,551.27,3116.47,26147168,99.9,0,0,0.18,550.89,3116.84,26147169,99.85,0,0,0.34,551.86,3115.85,26147170,99.84,0,0,0.32,551.64,3116.08,26147171,99.89,0,0,0.13,551.62,3116.11,26147172,98.5,0,0,0.56,552.43,3115.29,26147173,99.93,0,0,0.18,552.27,3115.44,26147174,99.93,0.04,1.42,0.44,552.19,3115.52,26147175,99.87,0,0.02,0.38,552.23,3115.5,26147176,99.94,0,0,0.19,552.19,3115.53,26147177,99.79,0,0,0.56,551.81,3115.9,26147178,99.94,0,0,0.18,550.67,3117.04,26147179,99.95,0,0,0.16,550.66,3117.04,26147180,99.85,0,0,0.33,551.13,3116.58,26147181,99.94,0,0,0.13,551.13,3116.58,26147182,99.8,0,0,0.58,551.76,3115.95,26147183,99.93,0,0,0.18,551.76,3115.95,26147184,99.94,0,0,0.18,551.73,3115.97,26147185,99.82,0,0,0.34,551.27,3116.45,26147186,99.95,0,0,0.16,551.19,3116.52,26147187,99.8,0,0,0.55,551.61,3116.1,26147188,99.93,0,0,0.16,551.89,3115.81,26147189,99.94,0,0,0.14,551.86,3115.84,26147190,99.83,0,0,0.27,551.8,3115.91,26147191,99.96,0,0,0.14,551.13,3116.59,26147192,99.8,0,0,0.41,551.34,3116.37,26147193,99.94,0,0,0.28,550.5,3117.21,26147194,99.68,0,0,0.14,550.51,3117.2,26147195,99.87,0,0,0.33,551.24,3116.48,26147196,99.88,0,0,0.18,551.23,3116.48,26147197,99.95,0,0,0.18,551.21,3116.5,26147198,99.42,0,0,1.39,551.15,3116.55,26147199,99.82,0,0,0.3,550.94,3116.74,26147200,99.87,0,0,0.29,550.68,3117.01,26147201,99.92,0,0,0.16,550.65,3117.04,26147202,99.94,0,0,0.15,550.62,3117.07,26147203,99.76,0,0,0.54,549.83,3117.86,26147204,99.95,0,0,0.14,549.29,3118.41,26147205,99.87,0,0,0.31,550.27,3117.44,26147206,99.95,0,0,0.14,550.25,3117.48,26147207,99.94,0,0,0.14,550.24,3117.48,26147208,99.82,0,0,0.54,551.53,3116.19,26147209,99.92,0,0,0.18,551.19,3116.52,26147210,99.9,0,0,0.29,551.18,3116.55,26147211,99.96,0,0,0.18,551.17,3116.56,26147212,99.93,0,0,0.14,551.14,3116.59,26147213,99.79,0,0,0.5,552,3115.72,26147214,99.95,0,0,0.21,551.35,3116.38,26147215,99.9,0,0,0.29,551.12,3116.63,26147216,99.95,0,0,0.16,551.12,3116.63,26147217,99.95,0,0,0.14,551.3,3116.45,26147218,99.81,0,0,0.47,551.75,3115.99,26147219,99.93,0,0,0.2,551.51,3116.23,26147220,99.81,0,0,0.28,551.03,3116.72,26147221,99.9,0,0,0.15,550.99,3116.76,26147222,99.95,0,0,0.18,550.99,3116.76,26147223,99.82,0,0,0.5,551.31,3116.43,26147224,99.94,0,0,0.2,550.94,3116.79,26147225,99.86,0,0,0.29,551.19,3116.56,26147226,99.93,0,0,0.14,551.17,3116.57,26147227,99.94,0,0,0.16,551.15,3116.59,26147228,99.83,0,0,0.39,551.41,3116.32,26147229,99.84,0,0,0.41,551.38,3116.33,26147230,99.9,0,0,0.28,551.37,3116.36,26147231,99.93,0,0,0.16,551.29,3116.43,26147232,99.67,0,0,0.14,551.26,3116.46,26147233,99.8,0,0,0.41,551.84,3115.88,26147234,99.95,0,0,0.29,551.48,3116.23,26147235,99.83,0,0,0.32,550.52,3117.2,26147236,99.95,0,0,0.17,550.46,3117.26,26147237,99.95,0,0,0.19,550.45,3117.26,26147238,99.93,0,0,0.14,550.44,3117.27,26147239,99.79,0,0,0.53,551.67,3116.04,26147240,99.83,0,0,0.28,551.17,3116.55,26147241,99.95,0,0,0.16,551.13,3116.58,26147242,99.93,0,0,0.15,551.11,3116.6,26147243,99.93,0,0,0.14,551.25,3116.46,26147244,99.8,0,0,0.54,551.83,3115.88,26147245,99.9,0,0,0.29,551.75,3115.97,26147246,99.95,0,0,0.15,551.74,3115.97,26147247,99.95,0,0,0.16,551.71,3116,26147248,99.96,0,0,0.16,551.68,3116.03,26147249,99.81,0,0,0.54,552.16,3115.55,26147250,99.92,0,0,0.31,551.41,3116.31,26147251,99.95,0,0,0.14,551.38,3116.34,26147252,99.95,0,0,0.14,551.37,3116.34,26147253,99.94,0,0,0.15,551.34,3116.37,26147254,99.82,0,0,0.53,552.11,3115.59,26147255,99.85,0,0,0.3,551.54,3116.17,26147256,99.95,0,0,0.16,551.49,3116.22,26147257,99.93,0,0,0.14,551.49,3116.22,26147258,99.91,0,0,0.14,551.47,3116.23,26147259,99.7,0,0,0.67,552.04,3115.64,26147260,99.89,0,0,0.29,551.69,3116.01,26147261,99.95,0,0,0.15,551.66,3116.03,26147262,99.9,0,0,0.16,551.63,3116.05,26147263,99.95,0,0,0.15,551.62,3116.06,26147264,99.8,0,0,0.48,551.95,3115.73,26147265,99.85,0,0,0.34,550.16,3117.54,26147266,99.94,0,0,0.14,550.11,3117.58,26147267,99.94,0,0,0.16,550.18,3117.51,26147268,99.93,0,0,0.14,550.26,3117.43,26147269,99.8,0,0,0.59,550.69,3116.99,26147270,99.84,0,0,0.29,551.96,3115.73,26147271,99.93,0,0,0.16,551.95,3115.74,26147272,99.9,0,0,0.14,551.94,3115.75,26147273,99.95,0,0,0.16,551.92,3115.77,26147274,99.79,0,0,0.39,552.24,3115.44,26147275,99.84,0,0,0.49,551.74,3115.96,26147276,99.95,0,0,0.17,551.63,3116.06,26147277,99.93,0,0,0.14,551.6,3116.08,26147278,99.93,0,0,0.15,551.59,3116.09,26147279,99.82,0,0,0.37,551.91,3115.77,26147280,99.79,0,0,0.48,550.52,3117.17,26147281,99.92,0,0,0.18,550.5,3117.19,26147282,99.94,0,0,0.17,550.49,3117.2,26147283,99.95,0,0,0.16,550.46,3117.22,26147284,99.95,0,0,0.18,550.45,3117.23,26147285,99.71,0,0,0.7,552.54,3115.15,26147286,99.93,0,0,0.16,551.9,3115.78,26147287,99.95,0,0,0.14,551.88,3115.8,26147288,99.93,0,0,0.16,551.86,3115.81,26147289,99.87,0,0,0.29,551.61,3116.04,26147290,99.75,0,0,0.71,552.1,3115.57,26147291,99.94,0,0,0.18,551.58,3116.07,26147292,99.94,0,0,0.18,551.56,3116.1,26147293,99.83,0,0,0.18,551.54,3116.11,26147294,99.96,0,0,0.18,551.67,3115.99,26147295,99.75,0,0,0.73,551.88,3115.8,26147296,99.92,0,0,0.17,551.44,3116.24,26147297,99.93,0,0,0.21,551.42,3116.25,26147298,99.95,0,0,0.17,551.39,3116.3,26147299,99.95,0,0,0.18,551.37,3116.31,26147300,99.75,0,0,0.75,551.88,3115.82,26147301,99.94,0,0,0.15,551.83,3115.87,26147302,99.94,0,0,0.14,551.81,3115.88,26147303,99.95,0,0,0.17,551.79,3115.9,26147304,99.93,0,0,0.16,551.84,3115.85,26147305,99.75,0,0,0.73,551.92,3115.79,26147306,99.95,0.03,0.95,0.34,550.16,3117.53,26147307,99.94,0.03,1.16,0.31,550.21,3117.46,26147308,99.95,0.04,1.53,0.2,550.23,3117.44,26147309,99.94,0,0.04,0.26,550.17,3117.49,26147310,99.76,0,0,0.7,551.71,3115.96,26147311,99.94,0.04,1.77,0.16,551.38,3116.29,26147312,99.95,0.01,0.37,0.45,551.44,3116.21,26147313,99.94,0,0,0.15,551.42,3116.23,26147314,99.93,0,0,0.14,551.39,3116.26,26147315,99.74,0,0,0.72,551.99,3115.68,26147316,99.93,0,0,0.13,550.38,3117.28,26147317,99.94,0,0,0.16,550.37,3117.28,26147318,99.95,0,0,0.14,550.34,3117.31,26147319,99.85,0,0,0.32,551.8,3115.82,26147320,99.76,0,0,0.46,552.2,3115.44,26147321,99.84,0,0,0.41,551.52,3116.11,26147322,99.93,0,0,0.14,551.58,3116.05,26147323,99.94,0,0,0.18,551.68,3115.95,26147324,99.94,0,0,0.18,551.64,3115.98,26147325,99.81,0,0,0.37,552.13,3115.5,26147326,99.79,0,0,0.57,552.55,3115.09,26147327,99.93,0,0,0.15,551.86,3115.77,26147328,99.93,0,0,0.16,551.83,3115.79,26147329,99.9,0,0,0.32,551.44,3116.18,26147330,99.81,0,0,0.29,552.03,3115.6,26147331,99.82,0,0,0.56,552.38,3115.26,26147332,99.94,0,0,0.18,552.01,3115.61,26147333,99.94,0,0,0.18,551.98,3115.64,26147334,99.93,0,0,0.18,552.08,3115.54,26147335,99.9,0,0,0.34,551.91,3115.72,26147336,99.81,0,0,0.54,552.25,3115.38,26147337,99.95,0,0,0.14,551.86,3115.77,26147338,99.94,0,0,0.15,551.6,3116.02,26147339,99.96,0,0,0.15,550.81,3116.81,26147340,99.83,0,0,0.29,550.58,3117.05,26147341,99.81,0,0,0.67,551.27,3116.37,26147342,99.94,0,0,0.21,551.28,3116.35,26147343,99.94,0,0,0.14,551.25,3116.38,26147344,99.96,0,0,0.16,551.31,3116.3,26147345,99.87,0,0,0.31,550.93,3116.7,26147346,99.8,0,0,0.46,551,3116.63,26147347,99.95,0,0,0.32,549.89,3117.73,26147348,99.95,0,0,0.16,549.88,3117.73,26147349,99.85,0,0,0.27,551.09,3116.5,26147350,99.9,0,0,0.29,550.39,3117.22,26147351,99.81,0,0,0.46,550.74,3116.87,26147352,99.93,0,0,0.19,550.58,3117.02,26147353,99.94,0,0,0.15,550.56,3117.04,26147354,99.95,0,0,0.14,550.55,3117.06,26147355,99.86,0,0,0.29,551.28,3116.35,26147356,99.79,0,0,0.41,551.54,3116.09,26147357,99.91,0,0,0.3,550.69,3116.93,26147358,99.94,0,0,0.14,550.71,3116.91,26147359,99.95,0,0,0.15,550.7,3116.91,26147360,99.87,0,0,0.28,550,3117.63,26147361,99.94,0,0,0.19,549.95,3117.68,26147362,99.81,0,0,0.54,551.86,3115.76,26147363,99.91,0,0,0.14,551.14,3116.48,26147364,99.95,0,0,0.16,551.12,3116.5,26147365,99.78,0,0,0.3,549.45,3118.18,26147366,99.93,0,0,0.14,549.39,3118.23,26147367,99.79,0,0,0.53,550.9,3116.73,26147368,99.93,0,0,0.14,550.83,3116.79,26147369,99.93,0,0,0.16,550.81,3116.81,26147370,99.91,0,0,0.32,551.05,3116.57,26147371,99.93,0,0,0.16,551.13,3116.5,26147372,99.81,0,0,0.59,551.75,3115.87,26147373,99.95,0,0,0.18,551.44,3116.17,26147374,99.94,0,0,0.18,551.41,3116.2,26147375,99.89,0,0,0.29,551.42,3116.2,26147376,99.93,0,0,0.14,551.39,3116.23,26147377,99.8,0,0,0.57,551.74,3115.88,26147378,99.93,0,0,0.18,551.37,3116.24,26147379,99.87,0,0,0.31,551.34,3116.25,26147380,99.9,0,0,0.33,551.36,3116.24,26147381,99.94,0,0,0.18,551.32,3116.28,26147382,99.83,0,0,0.54,551.72,3115.87,26147383,99.95,0,0,0.18,550.79,3116.8,26147384,99.94,0,0,0.18,550.78,3116.8,26147385,99.88,0,0,0.3,551.1,3116.5,26147386,99.94,0,0,0.2,551.19,3116.4,26147387,99.8,0,0,0.6,551.45,3116.14,26147388,99.93,0,0,0.18,550.88,3116.71,26147389,99.94,0,0,0.2,551.07,3116.52,26147390,99.88,0,0,0.32,551.35,3116.24,26147391,99.96,0,0,0.16,551.34,3116.25,26147392,99.82,0,0,0.58,551.73,3115.86,26147393,99.94,0,0,0.14,551.54,3116.04,26147394,99.94,0,0,0.15,551.52,3116.05,26147395,99.89,0,0,0.32,551.53,3116.07,26147396,99.95,0,0,0.13,551.5,3116.09,26147397,96.33,0.3,0.01,64.2,559.55,3108.09,26147398,98.71,0,0,193.8,555.87,3111.89,26147399,99.94,0,0,0.18,552.77,3114.75,26147400,99.84,0,0,0.33,553.76,3113.78,26147401,99.93,0,0,0.14,553.74,3113.79,26147402,99.93,0,0,0.13,553.73,3113.8,26147403,99.8,0,0,0.58,552,3115.56,26147404,99.93,0,0,0.14,551.53,3116.03,26147405,99.85,0,0,0.3,551.35,3116.22,26147406,99.95,0,0,0.17,551.27,3116.3,26147407,99.94,0,0,0.15,551.25,3116.32,26147408,99.82,0,0,0.53,551.4,3116.2,26147409,99.87,0,0,0.3,551.45,3116.12,26147410,99.86,0,0,0.3,551.8,3115.79,26147411,99.93,0,0,0.15,551.88,3115.7,26147412,99.93,0,0,0.16,551.88,3115.7,26147413,99.79,0,0,0.53,552.06,3115.53,26147414,99.95,0,0,0.15,551.59,3116,26147415,99.83,0,0,0.3,550.4,3117.2,26147416,99.96,0,0,0.16,550.32,3117.28,26147417,99.94,0,0,0.19,550.55,3117.05,26147418,99.78,0.01,0.01,0.51,551.49,3116.11,26147419,99.95,0,0,0.2,551.1,3116.5,26147420,99.88,0,0,0.3,551.59,3116.03,26147421,99.94,0,0,0.14,551.58,3116.04,26147422,99.93,0,0,0.16,551.57,3116.04,26147423,99.82,0,0,0.56,552.06,3115.55,26147424,99.95,0,0,0.14,551.78,3115.83,26147425,99.88,0,0,0.3,551.78,3115.84,26147426,99.92,0,0,0.18,551.76,3115.86,26147427,99.94,0,0,0.14,551.73,3115.88,26147428,99.8,0,0,0.32,552.07,3115.54,26147429,99.9,0,0,0.36,551.78,3115.83,26147430,99.9,0,0,0.3,551.88,3115.74,26147431,99.93,0,0,0.15,551.85,3115.77,26147432,99.92,0,0,0.16,551.85,3115.77,26147433,99.81,0,0,0.32,552.15,3115.46,26147434,99.94,0,0,0.36,551.56,3116.04,26147435,99.88,0,0,0.3,551.57,3116.05,26147436,99.94,0,0,0.17,551.55,3116.07,26147437,99.94,0,0,0.14,551.54,3116.07,26147438,99.92,0,0,0.14,551.51,3116.11,26147439,99.68,0,0,0.68,552.22,3115.37,26147440,99.84,0,0,0.34,550.53,3117.08,26147441,99.93,0,0,0.18,550.49,3117.11,26147442,99.9,0,0,0.18,550.47,3117.13,26147443,99.93,0,0,0.14,550.57,3117.02,26147444,99.8,0,0,0.53,551.7,3115.92,26147445,99.89,0,0,0.31,551.85,3115.79,26147446,99.93,0,0,0.14,551.84,3115.8,26147447,99.93,0,0.01,0.18,551.82,3115.81,26147448,99.93,0,0,0.14,551.79,3115.84,26147449,99.8,0,0,0.53,551.6,3116.03,26147450,99.87,0,0,0.37,551.28,3116.36,26147451,99.95,0,0,0.14,551.27,3116.37,26147452,99.95,0,0,0.13,551.25,3116.38,26147453,99.94,0,0,0.17,551.23,3116.4,26147454,99.8,0,0,0.51,551.83,3115.79,26147455,99.91,0,0,0.3,552.01,3115.63,26147456,99.96,0,0,0.16,552.1,3115.53,26147457,99.95,0,0,0.15,552.1,3115.53,26147458,99.93,0,0,0.16,552.09,3115.54,26147459,99.78,0,0,0.52,552.49,3115.13,26147460,99.84,0,0,0.3,552.06,3115.57,26147461,99.92,0,0,0.13,552.05,3115.58,26147462,99.95,0,0,0.18,552.03,3115.6,26147463,99.93,0,0,0.14,552,3115.62,26147464,99.82,0,0,0.49,552.39,3115.23,26147465,99.85,0,0,0.36,552.01,3115.63,26147466,99.94,0,0,0.15,551.98,3115.66,26147467,99.93,0,0,0.14,551.96,3115.67,26147468,99.94,0,0,0.15,551.94,3115.69,26147469,99.76,0.01,0.01,0.54,552.43,3115.17,26147470,99.88,0,0,0.41,552.02,3115.6,26147471,99.94,0,0,0.14,552,3115.61,26147472,99.95,0,0,0.16,551.98,3115.63,26147473,99.76,0,0,0.15,551.96,3115.64,26147474,99.78,0,0,0.31,552.25,3115.36,26147475,99.91,0,0,0.51,552.18,3115.44,26147476,99.93,0,0,0.14,552.37,3115.25,26147477,99.93,0,0,0.19,552.25,3115.36,26147478,99.89,0,0,0.15,552.09,3115.51,26147479,99.92,0,0,0.14,552.08,3115.52,26147480,99.74,0,0,0.68,552.77,3114.85,26147481,99.93,0,0,0.14,552.07,3115.55,26147482,99.95,0,0,0.15,552.05,3115.57,26147483,99.94,0,0,0.18,552.02,3115.58,26147484,99.95,0,0,0.16,552.02,3115.58,26147485,99.73,0.03,0.16,1.2,554.16,3113.42,26147486,99.96,0,0,0.15,554.46,3113.1,26147487,99.95,0,0,0.16,554.45,3113.1,26147488,99.96,0,0,0.15,554.43,3113.12,26147489,99.94,0,0,0.2,554.25,3113.29,26147490,99.78,0,0,0.7,554.31,3113.25,26147491,99.94,0,0,0.14,553.87,3113.69,26147492,99.94,0,0,0.19,553.84,3113.71,26147493,99.95,0,0,0.14,553.83,3113.72,26147494,99.96,0,0,0.14,553.91,3113.63,26147495,99.74,0,0,0.7,554.57,3112.98,26147496,99.93,0,0,0.14,554.2,3113.35,26147497,97.32,0,0,0.17,554.19,3113.35,26147498,99.92,0,0,0.14,554.17,3113.37,26147499,99.84,0,0,0.29,553.67,3113.84,26147500,99.77,0,0,0.61,553.96,3113.57,26147501,99.95,0,0,0.22,553.13,3114.4,26147502,99.93,0,0,0.13,553.11,3114.41,26147503,99.94,0,0,0.15,553.09,3114.43,26147504,99.95,0,0,0.14,553.07,3114.45,26147505,99.74,0,0,0.55,554.54,3113.01,26147506,99.94,0,0,0.31,553.9,3113.64,26147507,99.91,0,0,0.16,553.95,3113.59,26147508,99.93,0,0,0.14,553.92,3113.61,26147509,99.9,0,0,0.18,553.74,3113.79,26147510,99.75,0,0,0.71,554.51,3113.03,26147511,99.95,0,0,0.13,554.13,3113.41,26147512,99.96,0,0,0.15,554.11,3113.43,26147513,99.93,0,0,0.17,554.09,3113.44,26147514,99.89,0,0,0.14,554.09,3113.44,26147515,99.71,0,0,0.45,553.25,3114.3,26147516,99.85,0,0,0.35,553.91,3113.63,26147517,99.84,0,0,0.17,553.64,3113.9,26147518,99.87,0,0,0.14,553.7,3113.83,26147519,99.93,0,0,0.15,553.68,3113.85,26147520,99.92,0,0,0.29,553.92,3113.63,26147521,99.81,0,0,0.52,553.29,3114.25,26147522,99.95,0,0,0.16,552.65,3114.89,26147523,99.86,0,0,0.14,552.62,3114.91,26147524,99.88,0,0,0.15,552.61,3114.92,26147525,99.9,0,0,0.3,554.06,3113.48,26147526,99.8,0,0,0.55,554.56,3112.98,26147527,99.89,0,0,0.14,554.37,3113.16,26147528,99.91,0,0,0.16,554.44,3113.09,26147529,99.8,0,0,0.28,554.19,3113.32,26147530,99.89,0,0,0.33,554.41,3113.12,26147531,99.8,0,0,0.5,553.94,3113.59,26147532,99.92,0,0,0.18,553.14,3114.38,26147533,99.85,0,0,0.14,553.11,3114.4,26147534,99.9,0,0,0.14,553.09,3114.42,26147535,99.85,0,0,0.37,553.56,3113.96,26147536,99.77,0,0,0.57,553.89,3113.63,26147537,99.91,0,0,0.19,553.53,3113.98,26147538,99.9,0,0,0.14,553.7,3113.81,26147539,99.9,0,0,0.15,553.7,3113.81,26147540,99.8,0,0,0.29,553.95,3113.57,26147541,99.75,0,0,0.48,554.51,3113.01,26147542,99.88,0,0,0.19,554.4,3113.12,26147543,99.89,0,0,0.15,554.37,3113.14,26147544,99.88,0,0,0.16,554.36,3113.15,26147545,99.84,0,0,0.32,554.35,3113.17,26147546,99.73,0,0,0.58,554.69,3112.83,26147547,99.86,0,0,0.15,554.31,3113.21,26147548,99.85,0,0,0.17,554.3,3113.21,26147549,99.87,0,0,0.16,554.4,3113.1,26147550,99.81,0,0,0.31,554.48,3113.05,26147551,99.74,0,0,0.45,554.72,3112.8,26147552,99.85,0,0,0.3,553.94,3113.58,26147553,99.87,0,0,0.17,553.91,3113.6,26147554,99.88,0,0,0.18,553.9,3113.61,26147555,99.83,0,0,0.36,554.13,3113.39,26147556,99.88,0,0,0.14,554.12,3113.39,26147557,98.94,0,0,0.55,554.99,3112.52,26147558,99.86,0,0,0.17,554.31,3113.2,26147559,99.8,0,0,0.31,554.33,3113.16,26147560,99.8,0,0,0.3,554.19,3113.3,26147561,99.88,0,0,0.18,554.19,3113.3,26147562,99.73,0,0,0.55,554.92,3112.57,26147563,99.88,0,0,0.17,554.64,3112.84,26147564,99.87,0,0,0.17,554.62,3112.87,26147565,99.81,0,0,0.31,554.14,3113.37,26147566,99.87,0,0,0.14,554.09,3113.42,26147567,99.73,0,0,0.54,553.24,3114.28,26147568,99.87,0,0,0.14,552.58,3114.94,26147569,99.85,0,0,0.17,552.62,3114.9,26147570,99.75,0,0,0.3,552.99,3114.55,26147571,99.88,0,0,0.17,552.97,3114.56,26147572,99.73,0,0,0.54,553.98,3113.55,26147573,99.86,0,0,0.17,553.41,3114.11,26147574,99.87,0,0,0.15,553.41,3114.11,26147575,99.81,0,0,0.3,554.36,3113.17,26147576,99.87,0,0,0.14,554.36,3113.17,26147577,99.73,0,0,0.41,554.37,3113.16,26147578,99.88,0,0,0.27,553.57,3113.95,26147579,99.87,0,0,0.15,553.56,3113.96,26147580,99.8,0,0,0.29,554.28,3113.25,26147581,99.88,0,0,0.14,554.43,3113.1,26147582,99.73,0,0,0.53,554.79,3112.74,26147583,99.86,0,0,0.16,554.42,3113.09,26147584,99.86,0,0,0.15,554.39,3113.12,26147585,99.83,0,0,0.32,554.4,3113.12,26147586,99.86,0,0,0.16,554.38,3113.15,26147587,99.74,0,0,0.46,554.35,3113.16,26147588,99.87,0,0,0.21,553.1,3114.41,26147589,99.84,0,0,0.3,554.31,3113.18,26147590,99.81,0,0,0.29,554.31,3113.19,26147591,99.88,0,0,0.15,554.3,3113.2,26147592,99.73,0,0,0.41,554.8,3112.7,26147593,99.86,0,0,0.27,553.91,3113.57,26147594,99.87,0,0,0.16,553.91,3113.57,26147595,99.82,0,0,0.31,554.63,3112.86,26147596,99.88,0,0,0.14,554.62,3112.87,26147597,99.85,0,0,0.19,554.6,3112.89,26147598,99.73,0,0,0.55,554.91,3112.58,26147599,99.88,0,0,0.15,554.54,3112.94,26147600,99.84,0,0,0.31,554.06,3113.44,26147601,99.88,0,0,0.14,554.02,3113.47,26147602,99.85,0,0,0.14,554.01,3113.48,26147603,99.74,0,0,0.57,554.88,3112.6,26147604,99.87,0,0,0.14,554.63,3112.86,26147605,99.84,0,0,0.3,554.87,3112.65,26147606,99.88,0,0,0.16,554.85,3112.66,26147607,99.87,0,0,0.14,554.83,3112.68,26147608,99.73,0,0,0.53,555.01,3112.5,26147609,99.87,0,0,0.14,554.53,3112.97,26147610,99.76,0,0,0.29,554.55,3112.96,26147611,99.87,0,0,0.14,554.51,3113,26147612,99.86,0,0,0.17,554.5,3113,26147613,99.74,0,0,0.52,555.17,3112.33,26147614,99.87,0,0,0.16,554.93,3112.57,26147615,99.8,0,0,0.3,554.91,3112.6,26147616,99.88,0,0,0.15,554.9,3112.61,26147617,99.87,0,0,0.16,554.87,3112.63,26147618,99.71,0,0,0.48,555.54,3111.96,26147619,99.79,0,0,0.34,554.57,3112.9,26147620,99.8,0,0,0.28,554.57,3112.93,26147621,99.87,0,0,0.16,554.54,3112.95,26147622,99.85,0,0,0.15,554.53,3112.96,26147623,99.73,0,0,0.5,555.07,3112.41,26147624,99.87,0,0.01,0.2,554.89,3112.59,26147625,99.8,0,0,0.33,554.87,3112.61,26147626,99.86,0,0,0.15,554.86,3112.62,26147627,99.87,0,0,0.14,554.83,3112.65,26147628,99.73,0,0,0.55,555.1,3112.37,26147629,99.83,0,0,0.16,554.4,3113.07,26147630,99.84,0,0,0.29,554.53,3112.95,26147631,99.86,0,0,0.14,554.57,3112.91,26147632,99.86,0,0,0.16,554.68,3112.8,26147633,99.72,0,0,0.39,555.02,3112.45,26147634,99.85,0,0,0.27,554.87,3112.6,26147635,99.81,0,0,0.31,554.63,3112.86,26147636,99.86,0,0,0.17,554.6,3112.88,26147637,99.87,0,0,0.14,554.58,3112.89,26147638,99.86,0,0,0.15,554.55,3112.92,26147639,99.73,0,0,0.52,555.06,3112.41,26147640,99.82,0,0,0.3,553.73,3113.75,26147641,99.87,0,0,0.16,553.28,3114.2,26147642,99.87,0,0,0.14,553.38,3114.09,26147643,99.86,0,0,0.14,553.41,3114.06,26147644,99.73,0,0,0.53,554.08,3113.39,26147645,99.8,0,0,0.31,553.16,3114.33,26147646,99.86,0,0,0.14,553.12,3114.36,26147647,99.86,0,0,0.16,553.11,3114.37,26147648,99.88,0,0,0.14,553.08,3114.4,26147649,99.65,0,0,0.66,554.14,3113.3,26147650,99.79,0,0,0.28,553.78,3113.68,26147651,99.85,0,0,0.16,553.77,3113.69,26147652,99.85,0,0,0.14,553.84,3113.62,26147653,99.88,0,0,0.14,553.91,3113.54,26147654,99.73,0,0,0.55,554.63,3112.82,26147655,99.73,0,0,0.3,553.17,3114.29,26147656,99.85,0,0,0.13,553.13,3114.33,26147657,99.85,0,0,0.2,553.1,3114.36,26147658,99.86,0,0,0.15,553.06,3114.39,26147659,99.73,0,0,0.48,553.39,3114.05,26147660,99.8,0,0,0.33,554.3,3113.16,26147661,99.87,0,0,0.16,554.24,3113.22,26147662,99.85,0,0,0.14,554.4,3113.05,26147663,99.87,0,0,0.14,554.38,3113.06,26147664,99.71,0,0,0.48,554.55,3112.89,26147665,99.8,0,0,0.38,554.1,3113.36,26147666,99.87,0,0,0.14,554.08,3113.37,26147667,99.87,0,0,0.17,554.05,3113.39,26147668,99.87,0,0,0.14,554.04,3113.42,26147669,99.73,0,0,0.41,554.14,3113.31,26147670,99.76,0,0,0.47,553.76,3113.72,26147671,99.87,0,0,0.15,553.76,3113.72,26147672,99.85,0,0,0.17,553.88,3113.6,26147673,99.87,0,0,0.14,553.9,3113.57,26147674,99.73,0,0,0.38,554.66,3112.8,26147675,99.83,0,0,0.48,554.13,3113.36,26147676,99.86,0,0,0.16,554.12,3113.37,26147677,99.87,0,0,0.13,554.08,3113.4,26147678,99.7,0,0,0.14,554.08,3113.41,26147679,99.77,0,0,0.3,554.04,3113.42,26147680,99.69,0,0,0.67,554.64,3112.84,26147681,99.88,0,0,0.17,554.27,3113.2,26147682,99.86,0,0,0.14,554.24,3113.22,26147683,99.84,0,0,0.15,554.23,3113.23,26147684,99.88,0,0,0.13,554.36,3113.1,26147685,99.68,0,0,0.68,554.58,3112.9,26147686,99.86,0,0,0.17,554.17,3113.3,26147687,99.85,0,0,0.14,554.14,3113.33,26147688,99.86,0,0,0.16,554.11,3113.36,26147689,99.85,0,0.01,0.17,553.94,3113.51,26147690,99.69,0,0,0.72,554.64,3112.83,26147691,99.85,0,0,0.18,554.27,3113.2,26147692,99.87,0,0,0.17,554.26,3113.2,26147693,99.85,0,0,0.14,554.38,3113.08,26147694,99.86,0,0,0.19,554.39,3113.06,26147695,99.68,0,0,0.71,554.88,3112.6,26147696,99.86,0,0,0.14,554.36,3113.12,26147697,99.88,0,0,0.19,554.35,3113.13,26147698,99.89,0,0,0.18,554.32,3113.16,26147699,99.9,0,0,0.18,554.3,3113.17,26147700,99.71,0,0,0.74,554.11,3113.38,26147701,99.94,0,0,0.19,554.53,3112.96,26147702,99.96,0,0,0.18,554.51,3112.97,26147703,99.93,0,0,0.16,554.57,3112.9,26147704,99.95,0,0,0.18,554.66,3112.82,26147705,99.75,0,0,0.55,554.83,3112.66,26147706,99.94,0,0,0.27,554.62,3112.86,26147707,99.93,0,0,0.16,554.6,3112.88,26147708,99.95,0.01,0.01,0.14,554.55,3112.93,26147709,99.87,0,0,0.3,554.37,3113.08,26147710,99.77,0,0,0.64,554.81,3112.66,26147711,99.95,0,0.01,0.21,554.13,3113.33,26147712,99.95,0,0,0.2,554.08,3113.38,26147713,99.93,0,0,0.15,554.06,3113.39,26147714,99.95,0,0,0.15,554.03,3113.43,26147715,99.78,0,0,0.37,554.58,3112.9,26147716,99.88,0,0,0.52,553.62,3113.85,26147717,99.92,0,0,0.2,553.49,3113.98,26147718,99.97,0,0,0.14,553.59,3113.87,26147719,99.95,0,0,0.15,553.64,3113.82,26147720,99.85,0,0,0.3,553.4,3114.08,26147721,99.83,0,0,0.53,554.54,3112.93,26147722,99.96,0,0,0.16,554.33,3113.13,26147723,99.95,0,0,0.14,554.32,3113.15,26147724,99.95,0,0,0.15,554.29,3113.16,26147725,99.9,0,0,0.31,554.54,3112.94,26147726,99.85,0,0,0.52,554.87,3112.6,26147727,99.94,0,0,0.17,554.49,3112.98,26147728,99.94,0,0,0.16,554.48,3112.99,26147729,99.95,0,0,0.14,554.45,3113.01,26147730,99.93,0,0,0.31,554.63,3112.84,26147731,99.81,0,0,0.56,553.17,3114.3,26147732,99.94,0,0,0.14,551.88,3115.59,26147733,99.95,0,0,0.15,551.85,3115.61,26147734,99.94,0,0,0.14,551.83,3115.63,26147735,99.9,0,0,0.3,553.54,3113.94,26147736,99.8,0,0,0.47,554.47,3113,26147737,99.95,0,0,0.21,554,3113.46,26147738,99.17,0,0,0.14,553.99,3113.47,26147739,99.88,0,0.01,0.31,554.8,3112.64,26147740,99.91,0,0,0.31,554.38,3113.08,26147741,99.82,0,0,0.53,554.77,3112.68,26147742,99.93,0,0,0.14,554.56,3112.88,26147743,99.95,0,0,0.16,554.54,3112.9,26147744,99.94,0,0,0.14,554.51,3112.93,26147745,99.91,0,0,0.32,554.75,3112.7,26147746,99.8,0,0.01,0.41,554.99,3112.46,26147747,99.95,0,0,0.27,554.5,3112.95,26147748,99.92,0,0,0.15,554.64,3112.81,26147749,99.93,0,0,0.16,554.5,3112.94,26147750,99.93,0,0,0.3,554.61,3112.84,26147751,99.82,0,0,0.39,554.98,3112.47,26147752,99.94,0,0,0.29,554.82,3112.63,26147753,99.95,0,0,0.15,554.8,3112.65,26147754,99.94,0,0,0.14,554.78,3112.66,26147755,99.9,0,0,0.3,554.77,3112.68,26147756,99.94,0,0,0.14,554.76,3112.69,26147757,99.82,0,0,0.54,554.31,3113.15,26147758,99.96,0,0,0.14,553.74,3113.72,26147759,99.95,0,0,0.14,553.86,3113.6,26147760,99.86,0,0,0.33,554.39,3113.08,26147761,99.95,0,0,0.16,554.37,3113.09,26147762,95.1,0.28,0.01,258.03,567.68,3099.57,26147763,99.95,0,0,0.21,557.21,3110.14,26147764,99.94,0,0,0.14,557.19,3110.16,26147765,99.88,0,0,0.33,556.99,3110.38,26147766,99.96,0,0,0.13,556.92,3110.44,26147767,99.81,0,0,0.59,555.77,3111.61,26147768,99.96,0,0,0.14,554.46,3112.93,26147769,99.89,0,0,0.28,554.43,3112.94,26147770,99.85,0,0,0.3,554.67,3112.72,26147771,99.96,0,0,0.16,554.66,3112.73,26147772,99.8,0,0,0.57,555.61,3111.79,26147773,99.95,0,0,0.16,555.06,3112.34,26147774,99.97,0,0,0.15,555.04,3112.37,26147775,99.89,0,0,0.31,554.33,3113.1,26147776,99.93,0,0,0.15,554.28,3113.14,26147777,99.78,0,0,0.58,554.61,3112.8,26147778,99.95,0,0,0.14,554.24,3113.18,26147779,99.95,0,0,0.14,554.21,3113.2,26147780,99.9,0,0,0.3,554.94,3112.49,26147781,99.95,0,0,0.14,554.92,3112.5,26147782,99.83,0,0,0.54,555.16,3112.26,26147783,99.95,0,0,0.15,554.81,3112.6,26147784,99.94,0,0,0.14,554.84,3112.57,26147785,99.93,0,0,0.3,554.35,3113.07,26147786,99.96,0,0,0.16,554.33,3113.09,26147787,99.81,0,0,0.53,555.05,3112.37,26147788,99.94,0,0,0.14,554.27,3113.15,26147789,99.95,0,0,0.16,554.25,3113.16,26147790,99.9,0,0.02,0.32,554.47,3112.96,26147791,99.94,0,0,0.14,554.1,3113.32,26147792,99.82,0,0,0.38,554.44,3112.97,26147793,99.92,0,0,0.36,554.03,3113.38,26147794,99.94,0,0,0.15,554.01,3113.4,26147795,99.9,0,0,0.32,553.76,3113.66,26147796,99.94,0,0,0.17,553.74,3113.68,26147797,99.82,0,0,0.42,554.11,3113.31,26147798,99.95,0,0,0.27,554.19,3113.22,26147799,99.7,0,0,0.29,554.29,3113.09,26147800,99.9,0,0,0.31,553.87,3113.53,26147801,99.93,0,0,0.14,553.83,3113.57,26147802,99.95,0,0,0.15,553.8,3113.59,26147803,99.79,0,0,0.58,553.67,3113.72,26147804,99.94,0,0,0.15,553.27,3114.12,26147805,99.89,0,0,0.31,553.76,3113.65,26147806,99.95,0,0,0.14,553.74,3113.66,26147807,99.95,0,0,0.14,553.72,3113.68,26147808,99.81,0,0,0.54,554.35,3113.04,26147809,99.94,0,0,0.16,553.63,3113.76,26147810,99.91,0,0,0.3,553.63,3113.78,26147811,99.93,0,0,0.16,553.6,3113.8,26147812,99.95,0,0,0.14,553.59,3113.81,26147813,99.79,0,0,0.53,554.21,3113.18,26147814,99.92,0,0,0.15,554.04,3113.35,26147815,99.84,0,0,0.3,554.28,3113.12,26147816,99.94,0,0,0.16,554.26,3113.13,26147817,99.94,0,0,0.15,554.23,3113.16,26147818,99.81,0,0,0.49,554.56,3112.83,26147819,99.95,0,0,0.25,554.19,3113.19,26147820,94.24,5.41,0.02,79.79,559.29,3108.03,26147821,99.82,0,0,193.54,556.79,3105.27,26147822,99.95,0,0,0.24,556.76,3105.3,26147823,99.82,0,0,0.61,557.24,3104.82,26147824,99.95,0,0,0.14,556.92,3105.14,26147825,99.89,0,0,0.33,556.02,3106.1,26147826,99.95,0,0,0.17,553.51,3108.67,26147827,99.94,0,0,0.16,553.51,3108.67,26147828,99.81,0,0,0.57,554.12,3108.06,26147829,99.89,0,0,0.32,554.19,3107.97,26147830,99.91,0,0,0.36,554.68,3107.5,26147831,99.93,0,0,0.18,554.65,3107.52,26147832,99.94,0,0,0.18,554.64,3107.52,26147833,99.83,0,0,0.44,554.95,3107.21,26147834,99.93,0,0,0.27,554.36,3107.8,26147835,99.9,0,0,0.32,554.5,3107.67,26147836,99.95,0,0,0.14,554.56,3107.61,26147837,99.95,0,0,0.2,554.29,3107.88,26147838,99.8,0,0,0.41,554.6,3107.56,26147839,99.93,0,0,0.28,553.99,3108.17,26147840,99.92,0,0,0.32,554.49,3107.68,26147841,99.94,0,0,0.17,554.47,3107.7,26147842,99.94,0,0,0.14,554.44,3107.73,26147843,99.95,0,0,0.15,554.41,3107.75,26147844,99.8,0,0,0.58,555.14,3107.02,26147845,99.9,0,0,0.34,554.51,3107.66,26147846,99.92,0,0,0.14,554.55,3107.61,26147847,99.95,0,0,0.16,554.53,3107.63,26147848,99.91,0,0,0.14,554.51,3107.64,26147849,99.79,0,0,0.57,555.1,3107.05,26147850,99.88,0,0,0.35,554.74,3107.42,26147851,99.97,0,0,0.16,554.71,3107.45,26147852,99.95,0,0.01,0.16,554.66,3107.49,26147853,99.95,0,0,0.16,554.63,3107.52,26147854,99.8,0,0,0.59,554.96,3107.18,26147855,99.92,0,0,0.34,554.74,3107.42,26147856,99.92,0,0,0.17,554.77,3107.38,26147857,99.95,0,0,0.14,554.75,3107.4,26147858,99.95,0,0,0.14,554.73,3107.42,26147859,98.69,0,0,0.71,554.82,3107.3,26147860,99.9,0,0,0.32,554.22,3107.92,26147861,99.95,0,0,0.14,554.21,3107.93,26147862,99.93,0,0,0.16,554.18,3107.95,26147863,99.95,0,0,0.14,554.17,3107.96,26147864,99.8,0,0,0.6,554.73,3107.39,26147865,99.88,0,0,0.37,554.63,3107.51,26147866,99.91,0,0,0.18,554.59,3107.55,26147867,99.93,0,0,0.18,554.53,3107.62,26147868,99.94,0,0,0.18,554.51,3107.64,26147869,99.81,0,0,0.68,554.76,3107.39,26147870,99.89,0,0,0.38,554.29,3107.86,26147871,99.95,0,0,0.12,554.22,3107.94,26147872,99.97,0,0,0.14,554.21,3107.95,26147873,99.93,0,0,0.16,554.18,3107.97,26147874,99.83,0,0,0.33,554.52,3107.62,26147875,99.89,0,0,0.52,554.65,3107.51,26147876,99.95,0,0,0.14,554.64,3107.52,26147877,99.93,0,0,0.16,554.62,3107.54,26147878,99.95,0,0,0.14,554.77,3107.37,26147879,99.8,0,0,0.32,555.11,3107.04,26147880,99.84,0,0,0.61,554.54,3107.62,26147881,99.96,0,0,0.19,554.49,3107.68,26147882,99.95,0,0,0.18,554.48,3107.68,26147883,99.95,0,0,0.18,554.45,3107.71,26147884,99.95,0,0,0.18,554.44,3107.71,26147885,99.75,0,0,0.68,555.02,3107.15,26147886,99.93,0,0,0.16,554.41,3107.76,26147887,99.94,0,0,0.15,554.39,3107.78,26147888,99.94,0,0,0.15,554.36,3107.8,26147889,99.88,0,0,0.28,554.95,3107.18,26147890,99.78,0,0,0.65,555.28,3106.87,26147891,99.93,0,0,0.16,554.99,3107.16,26147892,99.95,0,0,0.16,554.97,3107.18,26147893,99.93,0,0,0.14,554.95,3107.2,26147894,99.95,0,0,0.15,554.93,3107.21,26147895,99.73,0,0,0.68,555.04,3107.11,26147896,98.1,0,0,0.15,554.66,3107.48,26147897,99.93,0,0,0.23,554.88,3107.27,26147898,99.93,0,0,0.15,554.86,3107.28,26147899,99.95,0,0,0.16,554.89,3107.24,26147900,99.75,0,0,0.63,555.64,3106.51,26147901,99.93,0,0,0.21,554.98,3107.17,26147902,99.94,0,0,0.16,554.97,3107.18,26147903,99.95,0,0,0.14,554.94,3107.2,26147904,99.93,0,0,0.16,554.93,3107.21,26147905,99.68,0,0,0.64,554.47,3107.68,26147906,99.94,0,0,0.2,554.91,3107.24,26147907,99.92,0,0,0.12,554.88,3107.27,26147908,99.93,0,0,0.17,554.86,3107.28,26147909,99.95,0,0,0.14,554.83,3107.3,26147910,99.77,0,0,0.72,554.67,3107.48,26147911,99.93,0,0,0.14,554.05,3108.1,26147912,99.94,0,0,0.13,554.03,3108.11,26147913,99.94,0,0,0.16,554.01,3108.13,26147914,99.95,0,0,0.14,553.98,3108.15,26147915,99.76,0,0,0.53,555.17,3106.98,26147916,99.95,0,0,0.31,554.7,3107.45,26147917,99.93,0,0,0.14,554.69,3107.45,26147918,99.93,0,0,0.16,554.65,3107.48,26147919,99.85,0,0,0.32,554.87,3107.25,26147920,99.85,0,0,0.27,554.17,3107.96,26147921,99.8,0,0,0.55,555.21,3106.92,26147922,99.93,0,0,0.17,555.01,3107.12,26147923,99.93,0,0,0.14,554.8,3107.32,26147924,99.95,0,0,0.13,554.74,3107.38,26147925,99.84,0,0,0.27,554.99,3107.14,26147926,99.78,0,0,0.55,555.4,3106.73,26147927,99.94,0,0,0.16,554.94,3107.18,26147928,99.92,0,0,0.15,554.92,3107.2,26147929,99.92,0,0,0.17,554.81,3107.3,26147930,99.93,0,0,0.26,554.89,3107.24,26147931,99.8,0,0,0.55,555.22,3106.9,26147932,99.92,0,0,0.14,554.87,3107.25,26147933,99.95,0,0,0.15,554.96,3107.16,26147934,99.93,0,0,0.14,555.01,3107.1,26147935,99.87,0,0,0.27,554.75,3107.39,26147936,99.77,0,0,0.59,555.4,3106.75,26147937,99.95,0,0,0.18,555.2,3106.94,26147938,99.94,0,0,0.16,555.16,3106.97,26147939,99.94,0,0,0.15,554.28,3107.85,26147940,99.88,0,0,0.29,554.4,3107.74,26147941,99.81,0,0,0.54,554.83,3107.3,26147942,99.94,0,0,0.19,554.12,3108.02,26147943,99.9,0,0,0.15,554.09,3108.04,26147944,99.94,0,0,0.14,554.26,3107.86,26147945,99.9,0,0,0.27,554.25,3107.89,26147946,99.8,0,0,0.5,554.6,3107.54,26147947,99.93,0,0,0.21,554.21,3107.92,26147948,99.94,0,0,0.14,554.18,3107.94,26147949,99.9,0,0,0.3,554.41,3107.7,26147950,99.9,0,0,0.27,554.41,3107.71,26147951,99.8,0,0,0.54,554.59,3107.52,26147952,99.94,0,0,0.18,553.86,3108.25,26147953,99.93,0,0,0.17,553.84,3108.26,26147954,99.93,0,0,0.17,553.91,3108.19,26147955,99.88,0,0,0.27,554,3108.11,26147956,99.79,0,0,0.58,554.69,3107.41,26147957,99.94,0,0,0.17,554.2,3107.91,26147958,99.93,0,0,0.16,554.18,3107.92,26147959,99.93,0,0,0.16,554.16,3107.94,26147960,99.81,0,0,0.29,553.68,3108.43,26147961,99.95,0,0,0.15,553.65,3108.46,26147962,99.78,0,0,0.59,553.68,3108.43,26147963,99.93,0,0,0.15,553.12,3108.98,26147964,99.92,0,0,0.14,553.11,3108.98,26147965,99.8,0,0,0.32,552.69,3109.42,26147966,99.95,0,0,0.18,552.74,3109.37,26147967,99.79,0,0,0.55,553.88,3108.23,26147968,99.95,0,0,0.14,553.72,3108.4,26147969,99.92,0,0,0.2,553.7,3108.41,26147970,99.84,0,0,0.3,554.17,3107.96,26147971,99.94,0,0,0.15,554.16,3107.97,26147972,99.81,0,0,0.59,554.68,3107.45,26147973,99.92,0,0,0.14,554.35,3107.77,26147974,99.95,0,0,0.16,554.33,3107.79,26147975,99.86,0,0,0.29,554.34,3107.8,26147976,99.93,0,0,0.15,554.46,3107.67,26147977,99.78,0,0,0.54,555.23,3106.89,26147978,99.92,0,0,0.15,554.46,3107.66,26147979,99.85,0,0,0.3,554.43,3107.66,26147980,99.9,0,0,0.28,554.18,3107.93,26147981,99.91,0,0,0.18,554.16,3107.95,26147982,99.78,0,0,0.57,554.27,3107.83,26147983,99.92,0,0,0.17,553.6,3108.49,26147984,99.95,0,0,0.14,553.59,3108.53,26147985,99.88,0,0,0.3,554.31,3107.83,26147986,99.95,0,0,0.18,554.4,3107.74,26147987,99.81,0,0,0.55,554.63,3107.5,26147988,99.91,0,0,0.16,553.97,3108.16,26147989,99.93,0,0,0.21,553.95,3108.18,26147990,99.86,0,0,0.31,554.43,3107.71,26147991,99.93,0,0,0.14,554.39,3107.75,26147992,99.78,0,0,0.6,554.73,3107.42,26147993,99.95,0,0,0.16,554.35,3107.8,26147994,99.95,0,0,0.14,554.34,3107.81,26147995,99.88,0,0,0.27,554.73,3107.43,26147996,99.94,0,0,0.14,554.75,3107.41,26147997,99.81,0,0,0.41,555.21,3106.94,26147998,99.93,0,0,0.28,554.69,3107.46,26147999,99.88,0,0,0.15,554.68,3107.47,26148000,99.86,0,0,0.26,554.44,3107.72,26148001,99.9,0,0,0.14,554.41,3107.75,26148002,99.93,0,0,0.16,554.38,3107.77,26148003,99.8,0,0,0.54,554.95,3107.2,26148004,99.95,0,0,0.14,554.59,3107.56,26148005,99.87,0,0,0.32,554.35,3107.82,26148006,99.93,0,0,0.18,554.47,3107.69,26148007,99.93,0,0,0.18,554.49,3107.67,26148008,99.8,0,0,0.56,555.04,3107.11,26148009,99.83,0,0,0.32,554,3108.12,26148010,99.85,0,0,0.27,554.68,3107.45,26148011,99.93,0,0,0.16,554.66,3107.47,26148012,99.95,0,0.02,0.14,554.64,3107.49,26148013,99.75,0,0,0.57,555.13,3106.99,26148014,99.93,0,0,0.15,554.32,3107.79,26148015,99.88,0,0,0.3,554.34,3107.8,26148016,99.93,0,0,0.14,554.48,3107.65,26148017,99.92,0,0,0.2,554.46,3107.67,26148018,99.81,0,0,0.5,554.79,3107.33,26148019,99.95,0,0,0.2,554.42,3107.7,26148020,99.86,0,0,0.27,554.41,3107.72,26148021,99.95,0,0,0.14,554.4,3107.73,26148022,99.95,0,0,0.17,554.37,3107.75,26148023,99.82,0,0,0.54,554.85,3107.26,26148024,99.93,0,0,0.15,554.57,3107.54,26148025,99.85,0,0,0.36,554.82,3107.3,26148026,99.95,0,0,0.16,554.79,3107.32,26148027,99.94,0,0,0.14,554.93,3107.18,26148028,99.82,0,0,0.59,555.19,3106.92,26148029,99.95,0,0,0.2,554.68,3107.42,26148030,99.89,0,0,0.33,554.67,3107.45,26148031,99.95,0,0,0.18,554.66,3107.45,26148032,99.95,0,0,0.18,554.63,3107.48,26148033,99.79,0,0,0.43,555.2,3106.9,26148034,99.93,0,0,0.32,554.83,3107.27,26148035,99.9,0,0,0.27,554.83,3107.29,26148036,99.91,0,0,0.15,554.82,3107.3,26148037,99.95,0,0,0.16,554.79,3107.33,26148038,99.81,0,0,0.41,555.2,3106.9,26148039,99.89,0,0,0.52,554.69,3107.39,26148040,99.9,0,0,0.35,554.71,3107.41,26148041,99.94,0,0,0.12,554.67,3107.45,26148042,99.93,0,0,0.15,554.64,3107.47,26148043,99.81,0,0,0.44,554.99,3107.11,26148044,99.93,0,0,0.35,554.84,3107.28,26148045,99.85,0,0,0.33,554.61,3107.53,26148046,99.95,0,0,0.14,554.58,3107.56,26148047,99.94,0,0,0.14,554.57,3107.56,26148048,99.94,0,0,0.16,554.53,3107.59,26148049,99.78,0,0,0.55,555.52,3106.6,26148050,99.86,0,0,0.27,553.74,3108.4,26148051,99.93,0,0,0.17,553.7,3108.43,26148052,99.93,0,0,0.14,553.68,3108.45,26148053,99.94,0,0,0.14,553.65,3108.48,26148054,99.78,0,0,0.56,554.17,3107.96,26148055,99.85,0,0,0.34,554.84,3107.29,26148056,99.91,0,0,0.15,554.84,3107.3,26148057,99.91,0,0,0.18,554.81,3107.32,26148058,99.9,0,0,0.18,554.79,3107.34,26148059,99.8,0,0,0.55,555.12,3107,26148060,99.82,0,0,0.26,554.78,3107.36,26148061,99.94,0,0,0.15,554.73,3107.41,26148062,99.91,0,0,0.14,554.71,3107.42,26148063,99.9,0,0,0.15,554.69,3107.44,26148064,99.78,0,0,0.56,555.03,3107.09,26148065,99.85,0,0,0.29,554.67,3107.46,26148066,99.95,0,0,0.14,554.64,3107.49,26148067,99.9,0,0,0.16,554.63,3107.5,26148068,99.9,0,0,0.14,554.61,3107.51,26148069,99.71,0,0,0.79,555.27,3106.83,26148070,99.83,0,0,0.27,553.88,3108.23,26148071,99.95,0,0,0.14,553.82,3108.29,26148072,99.94,0,0,0.14,553.8,3108.3,26148073,99.92,0,0,0.14,553.95,3108.14,26148074,99.77,0,0,0.54,554.55,3107.54,26148075,99.9,0,0,0.28,554.93,3107.18,26148076,99.93,0,0,0.17,554.91,3107.2,26148077,99.87,0,0.01,0.2,554.87,3107.23,26148078,99.81,0,0,0.15,554.83,3107.27,26148079,99.76,0,0,0.39,555.2,3106.9,26148080,99.9,0,0,0.41,555.05,3107.06,26148081,99.91,0,0,0.14,555.18,3106.93,26148082,99.9,0,0,0.14,555.19,3106.91,26148083,99.93,0,0,0.15,555.17,3106.93,26148084,99.85,0,0,0.16,555.32,3106.77,26148085,99.78,0,0,0.67,555.25,3106.85,26148086,99.93,0,0,0.17,554.87,3107.23,26148087,99.88,0,0,0.13,554.86,3107.24,26148088,99.9,0,0,0.14,554.83,3107.26,26148089,99.88,0,0,0.15,554.82,3107.27,26148090,99.64,0,0,0.7,554.62,3107.49,26148091,99.86,0,0,0.18,554.05,3108.05,26148092,99.88,0,0,0.18,554.16,3107.94,26148093,99.88,0,0,0.17,554.21,3107.89,26148094,99.88,0,0,0.2,554.18,3107.91,26148095,99.73,0,0,0.68,554.78,3107.33,26148096,99.88,0,0,0.16,554.4,3107.7,26148097,99.9,0,0,0.15,554.38,3107.71,26148098,99.91,0,0,0.14,554.36,3107.73,26148099,99.82,0,0,0.39,554.34,3107.74,26148100,99.69,0,0,0.69,554.83,3107.27,26148101,99.85,0,0,0.16,554.31,3107.78,26148102,99.82,0,0,0.15,554.29,3107.8,26148103,99.84,0,0,0.16,554.26,3107.82,26148104,99.87,0,0,0.15,554.39,3107.69,26148105,99.66,0,0,0.61,554.54,3107.56,26148106,99.85,0,0,0.2,554.17,3107.92,26148107,99.83,0,0,0.38,553.87,3108.22,26148108,99.85,0,0,0.14,553.62,3108.46,26148109,99.85,0,0,0.18,553.56,3108.51,26148110,99.63,0,0,0.66,553.9,3108.19,26148111,99.85,0,0,0.19,552.84,3109.25,26148112,99.86,0,0,0.16,552.82,3109.27,26148113,99.85,0,0,0.14,552.8,3109.29,26148114,99.87,0,0,0.14,552.78,3109.31,26148115,99.66,0,0,0.64,554.02,3108.09,26148116,99.86,0,0,0.22,554.42,3107.68,26148117,99.84,0,0,0.14,554.41,3107.69,26148118,99.87,0,0,0.16,554.38,3107.72,26148119,99.84,0,0,0.15,554.35,3107.74,26148120,99.62,0,0,0.57,554.7,3107.41,26148121,99.85,0,0,0.27,553.59,3108.51,26148122,99.84,0,0,0.17,553.57,3108.52,26148123,99.83,0,0,0.14,553.54,3108.55,26148124,99.86,0,0,0.16,553.53,3108.55,26148125,96.55,0.04,0.01,64.34,563.2,3100.9,26148126,99.48,0,0,77.21,556.31,3105.87,26148127,99.87,0,0,0.14,555.92,3106.27,26148128,99.85,0,0,0.16,555.9,3106.27,26148129,99.78,0.01,0.01,0.31,556.24,3105.91,26148130,99.82,0,0,0.27,556.99,3105.18,26148131,99.68,0,0,0.59,554.94,3107.28,26148132,99.85,0,0,0.14,554.52,3107.7,26148133,99.86,0.01,0.02,0.15,554.52,3107.7,26148134,99.87,0,0,0.17,554.55,3107.68,26148135,99.81,0,0,0.27,554.3,3107.95,26148136,99.7,0,0,0.59,554.86,3107.38,26148137,99.86,0,0,0.18,554.26,3107.98,26148138,99.86,0,0,0.16,554.24,3107.99,26148139,98.39,0,0,0.15,554.21,3108.02,26148140,99.8,0.02,0.66,0.3,554.59,3107.65,26148141,99.7,0,0,0.56,554.94,3107.3,26148142,99.83,0,0,0.16,554.56,3107.67,26148143,99.85,0,0,0.15,554.54,3107.69,26148144,99.84,0,0,0.15,554.51,3107.71,26148145,99.8,0,0,0.32,554.27,3107.97,26148146,99.7,0,0,0.54,554.74,3107.5,26148147,99.85,0,0,0.16,554.45,3107.78,26148148,99.85,0,0,0.15,554.55,3107.67,26148149,99.86,0,0,0.15,554.6,3107.62,26148150,99.78,0,0,0.32,554.35,3107.88,26148151,99.73,0,0,0.57,555.15,3107.09,26148152,99.85,0,0,0.17,554.55,3107.68,26148153,99.85,0,0,0.18,554.54,3107.68,26148154,99.85,0,0,0.15,554.51,3107.71,26148155,99.79,0,0,0.29,554.51,3107.72,26148156,99.72,0,0,0.41,554.77,3107.47,26148157,99.88,0,0,0.31,554.21,3108.01,26148158,99.86,0,0,0.16,554.19,3108.02,26148159,99.78,0,0,0.3,554.52,3107.68,26148160,99.83,0,0,0.27,554.61,3107.6,26148161,99.72,0,0,0.41,554.93,3107.27,26148162,99.84,0,0,0.31,554.56,3107.64,26148163,99.85,0,0,0.15,554.53,3107.66,26148164,99.85,0,0,0.14,554.52,3107.68,26148165,99.82,0,0,0.32,553.39,3108.83,26148166,99.73,0,0,0.43,553.7,3108.51,26148167,99.86,0,0,0.29,554.22,3107.99,26148168,99.86,0,0,0.15,554.2,3108.01,26148169,99.85,0,0,0.17,554.13,3108.07,26148170,99.8,0,0,0.28,553.29,3108.93,26148171,99.86,0,0,0.16,553.36,3108.85,26148172,99.72,0,0,0.59,554,3108.2,26148173,99.85,0,0,0.16,553.55,3108.65,26148174,99.85,0,0,0.17,553.53,3108.67,26148175,99.78,0,0,0.29,554.72,3107.49,26148176,99.85,0,0,0.16,554.74,3107.47,26148177,99.73,0,0,0.55,554.33,3107.88,26148178,99.86,0,0,0.15,553.72,3108.48,26148179,99.86,0,0,0.15,553.69,3108.51,26148180,99.35,0,0,0.53,555,3107.22,26148181,99.85,0,0,0.15,554.9,3107.31,26148182,99.73,0,0,0.54,555.25,3106.96,26148183,99.84,0,0,0.16,554.81,3107.4,26148184,99.85,0,0,0.14,554.79,3107.41,26148185,99.82,0,0,0.31,554.54,3107.67,26148186,99.86,0,0,0.17,554.53,3107.7,26148187,99.73,0,0,0.4,555.21,3107.01,26148188,99.86,0,0,0.27,554.74,3107.48,26148189,99.8,0,0,0.32,554.7,3107.49,26148190,99.82,0,0,0.28,554.47,3107.75,26148191,99.84,0,0,0.14,554.43,3107.78,26148192,90.36,0,0,117.24,575.86,3074.53,26148193,99.46,0,0,33.24,557.31,3108.05,26148194,99.84,0,0,0.15,557.32,3108.04,26148195,99.82,0,0,0.29,557.32,3108.05,26148196,99.84,0,0,0.17,557.29,3108.07,26148197,99.73,0.01,0.02,0.62,557.8,3107.56,26148198,99.87,0,0,0.23,554.88,3110.56,26148199,99.86,0,0,0.16,554.75,3110.7,26148200,99.83,0,0,0.27,554.76,3110.7,26148201,99.85,0,0,0.16,554.8,3110.65,26148202,99.73,0,0,0.3,555.26,3110.2,26148203,99.85,0,0,0.37,555.12,3110.32,26148204,99.85,0,0,0.16,555.09,3110.35,26148205,98.68,0,0,15.48,556.84,3108.9,26148206,99.87,0,0,0.13,553.6,3111.87,26148207,99.87,0,0,0.16,553.57,3111.89,26148208,99.68,0,0,0.59,554.89,3110.57,26148209,99.85,0,0,0.19,554.51,3110.94,26148210,99.72,0,0,0.28,554.98,3110.49,26148211,99.86,0,0,0.17,555.08,3110.38,26148212,99.85,0,0,0.2,555.17,3110.29,26148213,99.72,0,0,0.55,555.18,3110.28,26148214,99.88,0,0,0.17,554.62,3110.83,26148215,99.8,0,0,0.3,554.88,3110.6,26148216,99.86,0,0,0.16,554.85,3110.63,26148217,99.81,0,0,0.18,554.82,3110.65,26148218,99.74,0,0,0.56,555.32,3110.14,26148219,99.78,0,0,0.32,555.02,3110.42,26148220,99.8,0,0,0.29,554.78,3110.67,26148221,99.86,0,0,0.2,554.91,3110.54,26148222,99.88,0,0,0.2,554.92,3110.52,26148223,99.29,0,0,0.55,555.75,3109.69,26148224,99.88,0,0,0.19,555.11,3110.32,26148225,99.81,0,0,0.32,554.63,3110.82,26148226,99.87,0,0,0.15,554.6,3110.85,26148227,99.81,0,0,0.19,554.57,3110.88,26148228,99.73,0,0,0.55,554.99,3110.45,26148229,99.83,0,0,0.17,554.76,3110.68,26148230,99.78,0,0,0.36,555,3110.45,26148231,99.87,0,0,0.17,555.16,3110.29,26148232,99.87,0,0,0.17,555.15,3110.29,26148233,99.7,0,0,0.6,555.4,3110.05,26148234,99.83,0,0,0.16,554.62,3110.82,26148235,99.8,0,0,0.31,555.12,3110.34,26148236,99.85,0,0,0.17,555.1,3110.35,26148237,99.86,0,0,0.18,555.07,3110.37,26148238,99.73,0,0,0.55,555.35,3110.1,26148239,99.85,0,0,0.16,554.79,3110.65,26148240,99.76,0,0,0.31,554.57,3110.89,26148241,99.87,0,0,0.18,553.79,3111.66,26148242,99.86,0,0,0.18,553.76,3111.69,26148243,99.75,0,0,0.32,554.46,3110.99,26148244,99.83,0,0,0.39,553.91,3111.53,26148245,99.79,0,0,0.28,553.92,3111.54,26148246,99.85,0,0,0.16,553.88,3111.57,26148247,99.87,0,0,0.14,553.88,3111.57,26148248,99.86,0,0,0.14,553.84,3111.6,26148249,99.61,0,0,0.69,554.46,3110.96,26148250,99.76,0,0,0.27,553.83,3111.61,26148251,99.87,0,0,0.14,553.8,3111.63,26148252,99.86,0,0,0.12,553.78,3111.65,26148253,99.87,0,0,0.16,553.75,3111.67,26148254,99.71,0,0,0.54,554.65,3110.77,26148255,99.84,0,0,0.26,553.23,3112.21,26148256,99.93,0,0,0.16,553.17,3112.26,26148257,99.93,0,0,0.2,552.9,3112.53,26148258,99.94,0,0,0.14,552.89,3112.54,26148259,99.79,0,0,0.52,554.59,3110.83,26148260,98.9,0,0,0.26,553.86,3111.58,26148261,99.94,0,0,0.15,553.82,3111.62,26148262,99.94,0,0,0.16,553.8,3111.63,26148263,99.93,0,0,0.15,553.78,3111.65,26148264,99.8,0,0,0.48,554.6,3110.83,26148265,99.88,0,0,0.32,554.18,3111.26,26148266,99.93,0,0,0.18,554.16,3111.28,26148267,99.93,0,0,0.18,554.13,3111.3,26148268,99.93,0,0,0.14,554.12,3111.31,26148269,99.78,0,0,0.46,554.49,3110.93,26148270,99.88,0,0,0.44,554.34,3111.1,26148271,99.93,0,0,0.14,554.31,3111.13,26148272,99.94,0,0,0.16,554.29,3111.14,26148273,99.93,0,0,0.14,554.27,3111.16,26148274,99.82,0,0,0.49,554.64,3110.78,26148275,99.89,0,0,0.32,554.35,3111.09,26148276,99.93,0,0,0.14,554.41,3111.02,26148277,99.93,0,0,0.17,554.4,3111.03,26148278,99.94,0,0,0.14,554.37,3111.05,26148279,99.88,0,0,0.32,554.36,3111.04,26148280,99.76,0,0,0.67,554.45,3110.96,26148281,99.95,0,0,0.16,554.08,3111.34,26148282,99.94,0,0,0.17,554.05,3111.36,26148283,99.94,0,0,0.17,554.03,3111.37,26148284,99.93,0,0,0.18,554,3111.43,26148285,99.72,0,0,0.66,554.15,3111.3,26148286,99.96,0,0,0.17,553.88,3111.56,26148287,99.91,0,0,0.16,553.93,3111.51,26148288,99.92,0,0,0.18,553.9,3111.53,26148289,99.96,0,0,0.16,553.89,3111.54,26148290,99.7,0,0,0.66,554.53,3110.91,26148291,99.94,0.01,0.01,0.18,554.08,3111.36,26148292,99.95,0,0,0.17,554.05,3111.39,26148293,99.95,0,0,0.18,554.02,3111.4,26148294,99.94,0,0,0.17,554,3111.42,26148295,99.73,0,0,0.7,554.99,3110.44,26148296,99.93,0,0,0.16,554.42,3111.02,26148297,99.95,0,0,0.13,554.4,3111.03,26148298,99.91,0,0,0.16,554.38,3111.05,26148299,99.91,0,0,0.14,554.36,3111.06,26148300,99.68,0,0,0.7,554.24,3111.2,26148301,99.92,0,0,0.13,554.34,3111.09,26148302,99.93,0,0,0.17,554.32,3111.11,26148303,99.95,0,0,0.18,554.29,3111.13,26148304,99.95,0,0,0.18,554.28,3111.14,26148305,99.74,0,0,0.7,554.75,3110.68,26148306,99.94,0,0,0.13,554.26,3111.17,26148307,99.96,0,0,0.18,554.32,3111.11,26148308,99.93,0,0,0.18,554.4,3111.02,26148309,99.76,0,0,0.32,554.61,3110.79,26148310,99.78,0,0,0.68,555.37,3110.04,26148311,99.94,0,0,0.19,554.59,3110.82,26148312,99.91,0,0,0.18,554.56,3110.84,26148313,99.93,0,0,0.18,554.55,3110.85,26148314,99.95,0,0,0.18,554.52,3110.89,26148315,99.74,0,0,0.55,555.09,3110.35,26148316,99.93,0,0,0.27,554.5,3110.94,26148317,99.95,0,0,0.2,554.48,3110.96,26148318,99.92,0,0,0.14,554.61,3110.83,26148319,99.95,0,0,0.16,554.63,3110.8,26148320,99.75,0,0,0.6,554.99,3110.45,26148321,99.94,0,0,0.19,554.61,3110.84,26148322,99.93,0,0,0.17,554.59,3110.85,26148323,99.94,0,0,0.14,554.56,3110.87,26148324,99.93,0,0,0.14,554.55,3110.88,26148325,99.88,0,0,0.27,554.55,3110.9,26148326,99.8,0,0,0.54,554.87,3110.57,26148327,99.94,0,0,0.14,554.49,3110.94,26148328,99.95,0,0,0.15,554.48,3110.95,26148329,99.94,0,0,0.14,554.58,3110.85,26148330,99.87,0,0,0.29,554.88,3110.57,26148331,99.82,0,0,0.53,555.3,3110.13,26148332,99.94,0,0,0.16,554.59,3110.84,26148333,99.91,0,0,0.15,554.58,3110.85,26148334,99.93,0,0,0.17,554.55,3110.87,26148335,99.83,0,0,0.32,554.09,3111.35,26148336,99.8,0,0,0.53,554.85,3110.59,26148337,99.95,0,0,0.14,554.77,3110.66,26148338,99.92,0.01,0.02,0.18,554.72,3110.7,26148339,99.82,0,0,0.29,554.82,3110.59,26148340,99.85,0,0,0.26,554.92,3110.5,26148341,99.8,0,0,0.57,555.2,3110.22,26148342,99.93,0,0,0.17,554.82,3110.59,26148343,99.91,0,0,0.15,554.79,3110.61,26148344,99.65,0,0,0.17,554.79,3110.63,26148345,99.86,0,0,0.3,554.54,3110.9,26148346,99.81,0,0,0.43,555.31,3110.12,26148347,99.93,0,0,0.3,554.73,3110.7,26148348,99.93,0,0,0.17,554.71,3110.72,26148349,99.91,0,0,0.14,554.8,3110.62,26148350,99.85,0,0,0.27,554.43,3111,26148351,99.79,0,0,0.52,555.04,3110.4,26148352,99.93,0,0,0.19,554.86,3110.57,26148353,99.92,0,0,0.14,554.85,3110.57,26148354,99.9,0,0,0.16,554.82,3110.6,26148355,99.87,0,0,0.27,554.59,3110.84,26148356,99.8,0,0,0.4,555.06,3110.38,26148357,99.93,0,0,0.29,554.78,3110.64,26148358,99.89,0,0,0.14,554.76,3110.66,26148359,99.9,0,0,0.15,554.73,3110.68,26148360,99.88,0,0,0.28,554.77,3110.66,26148361,99.91,0,0,0.13,554.89,3110.54,26148362,99.82,0,0,0.53,555.22,3110.2,26148363,99.89,0,0,0.17,554.85,3110.57,26148364,99.94,0,0,0.14,554.82,3110.6,26148365,99.89,0,0,0.27,555.32,3110.12,26148366,99.93,0,0,0.16,555.29,3110.14,26148367,99.79,0,0,0.55,555.4,3110.02,26148368,99.93,0,0,0.14,555,3110.41,26148369,99.83,0,0,0.29,554.74,3110.66,26148370,99.86,0,0,0.29,554.72,3110.69,26148371,99.89,0,0,0.15,554.77,3110.64,26148372,99.79,0,0,0.57,554.65,3110.75,26148373,99.95,0,0,0.14,554.11,3111.28,26148374,99.94,0,0,0.14,554.09,3111.3,26148375,99.88,0,0,0.28,554.81,3110.59,26148376,99.94,0,0,0.14,554.81,3110.59,26148377,99.79,0,0,0.58,555.39,3110,26148378,99.94,0,0,0.21,554.74,3110.64,26148379,99.92,0,0,0.15,554.72,3110.66,26148380,99.84,0,0,0.3,554.72,3110.67,26148381,99.96,0,0,0.13,554.7,3110.69,26148382,99.8,0,0,0.57,555.14,3110.24,26148383,99.93,0,0,0.14,554.85,3110.53,26148384,99.9,0,0,0.14,554.82,3110.56,26148385,99.84,0,0,0.27,555.3,3110.09,26148386,99.94,0,0,0.14,555.28,3110.1,26148387,99.79,0,0,0.56,555.42,3109.96,26148388,99.91,0,0,0.16,554.75,3110.63,26148389,99.92,0,0,0.16,554.73,3110.64,26148390,99.85,0,0,0.26,554.8,3110.59,26148391,99.94,0,0,0.14,554.24,3111.14,26148392,99.8,0,0,0.55,554.31,3111.07,26148393,99.89,0,0,0.15,553.93,3111.45,26148394,99.94,0,0,0.16,554.07,3111.31,26148395,99.8,0,0,0.29,553.39,3112,26148396,99.94,0,0,0.14,553.35,3112.04,26148397,99.78,0,0,0.36,553.84,3111.54,26148398,99.94,0,0,0.4,554.28,3111.1,26148399,99.8,0,0,0.3,554.26,3111.07,26148400,99.87,0,0,0.26,554.02,3111.35,26148401,99.91,0,0,0.16,553.99,3111.37,26148402,99.95,0,0,0.14,553.96,3111.39,26148403,99.8,0,0,0.52,554.3,3111.05,26148404,99.65,0,0,0.15,553.92,3111.43,26148405,99.87,0,0,0.26,554.31,3111.05,26148406,99.92,0,0,0.14,554.33,3111.02,26148407,99.91,0,0,0.16,554.32,3111.03,26148408,99.77,0,0,0.55,554.64,3110.71,26148409,99.94,0,0,0.18,554.28,3111.06,26148410,99.88,0,0,0.32,553.82,3111.56,26148411,99.92,0,0,0.12,553.78,3111.6,26148412,99.93,0,0,0.14,553.74,3111.63,26148413,99.79,0,0,0.57,554.49,3110.88,26148414,99.92,0,0,0.16,553.7,3111.66,26148415,99.9,0,0,0.3,553.69,3111.68,26148416,99.94,0,0,0.14,553.68,3111.7,26148417,99.94,0,0,0.16,553.83,3111.54,26148418,99.82,0,0,0.48,554.36,3111,26148419,99.94,0,0,0.23,554.28,3111.07,26148420,99.85,0,0,0.26,554.29,3111.08,26148421,99.94,0,0,0.14,554.26,3111.1,26148422,99.95,0,0,0.16,554.24,3111.12,26148423,99.8,0,0,0.48,554.67,3110.69,26148424,99.94,0,0,0.21,554.44,3110.91,26148425,99.88,0,0,0.28,554.2,3111.17,26148426,99.92,0,0,0.13,554.17,3111.2,26148427,99.94,0,0,0.16,554.16,3111.2,26148428,99.81,0,0,0.39,554.73,3110.62,26148429,99.88,0,0,0.44,554.34,3110.99,26148430,99.9,0,0,0.27,554.33,3111.02,26148431,99.95,0,0,0.16,554.32,3111.03,26148432,99.95,0,0,0.16,554.28,3111.06,26148433,99.79,0,0,0.31,554.62,3110.72,26148434,99.93,0,0,0.39,554.49,3110.86,26148435,99.89,0,0,0.34,554.49,3110.88,26148436,99.94,0,0,0.14,554.47,3110.89,26148437,99.92,0,0,0.21,554.51,3110.85,26148438,99.92,0,0,0.14,554.54,3110.81,26148439,99.78,0,0,0.54,555.13,3110.23,26148440,99.87,0,0,0.26,554.53,3110.84,26148441,99.93,0,0,0.16,554.44,3110.93,26148442,99.94,0,0,0.17,554.55,3110.81,26148443,99.9,0,0,0.15,554.56,3110.79,26148444,99.8,0,0,0.56,555,3110.36,26148445,99.9,0,0,0.31,554.31,3111.06,26148446,99.94,0,0,0.16,554.29,3111.08,26148447,99.95,0,0,0.15,554.26,3111.11,26148448,99.95,0,0,0.15,554.22,3111.13,26148449,99.81,0,0,0.56,554.56,3110.79,26148450,99.85,0,0,0.26,554.44,3110.93,26148451,99.94,0,0,0.18,554.48,3110.89,26148452,99.95,0,0,0.15,554.58,3110.78,26148453,99.95,0,0,0.16,554.56,3110.8,26148454,99.81,0,0,0.48,554.87,3110.48,26148455,99.9,0,0,0.37,554.53,3110.83,26148456,99.93,0,0,0.19,554.5,3110.86,26148457,99.94,0,0,0.18,554.47,3110.89,26148458,99.96,0,0,0.18,554.46,3110.89,26148459,99.74,0,0,0.79,555.17,3110.16,26148460,99.86,0,0,0.33,554.66,3110.69,26148461,99.94,0,0,0.18,554.77,3110.57,26148462,99.94,0,0,0.18,554.81,3110.53,26148463,99.96,0,0,0.17,554.79,3110.54,26148464,99.81,0,0,0.42,555.11,3110.21,26148465,99.81,0,0,0.39,554.51,3110.83,26148466,99.93,0,0,0.15,554.49,3110.85,26148467,99.95,0,0,0.19,554.46,3110.87,26148468,99.93,0,0,0.15,554.44,3110.89,26148469,99.82,0,0,0.3,554.77,3110.55,26148470,99.84,0,0,0.51,553.99,3111.35,26148471,99.94,0,0,0.15,554.01,3111.32,26148472,99.93,0,0,0.16,554.06,3111.27,26148473,99.94,0,0,0.14,554.05,3111.29,26148474,99.93,0,0,0.16,554.02,3111.32,26148475,99.75,0,0,0.68,554.67,3110.69,26148476,99.93,0,0,0.14,554.25,3111.11,26148477,99.93,0,0,0.15,554.24,3111.11,26148478,99.93,0,0,0.14,554.21,3111.14,26148479,99.32,0,0,0.16,554.2,3111.14,26148480,99.69,0,0,0.68,554.87,3110.49,26148481,99.93,0,0,0.15,554.66,3110.7,26148482,99.95,0,0,0.16,554.72,3110.63,26148483,99.92,0,0,0.15,554.8,3110.55,26148484,99.93,0,0,0.14,554.79,3110.55,26148485,99.77,0,0,0.68,555.13,3110.22,26148486,99.93,0,0,0.17,554.76,3110.59,26148487,99.95,0,0,0.14,554.73,3110.62,26148488,99.95,0,0,0.14,554.71,3110.63,26148489,99.86,0,0,0.32,554.96,3110.36,26148490,95.17,0.36,0.01,78.51,566.65,3098.97,26148491,99.83,0,0,180.47,557.15,3108.13,26148492,99.93,0,0,0.16,557.19,3108.08,26148493,99.92,0,0,0.19,557.16,3108.11,26148494,99.94,0,0,0.16,557.15,3108.11,26148495,99.72,0,0,0.57,556.51,3108.77,26148496,99.93,0,0,0.35,555.2,3110.1,26148497,99.94,0,0,0.2,555.17,3110.13,26148498,99.94,0,0,0.14,555.14,3110.15,26148499,99.95,0,0,0.16,555.12,3110.16,26148500,99.73,0,0,0.67,555.28,3110.03,26148501,99.94,0,0,0.18,555.11,3110.21,26148502,99.91,0,0,0.17,555.2,3110.12,26148503,99.93,0,0,0.17,555.26,3110.05,26148504,99.93,0,0,0.16,555.22,3110.08,26148505,99.69,0,0,0.71,555.14,3110.19,26148506,99.94,0,0,0.14,554.96,3110.36,26148507,99.87,0,0.01,0.15,554.94,3110.38,26148508,99.94,0,0,0.18,554.91,3110.41,26148509,99.93,0,0,0.14,554.89,3110.43,26148510,99.91,0,0,0.26,554.89,3110.45,26148511,99.76,0,0,0.55,555.58,3109.75,26148512,99.93,0.02,0.16,0.14,554.96,3110.36,26148513,99.94,0,0,0.14,554.96,3110.36,26148514,99.93,0,0,0.16,554.94,3110.37,26148515,99.88,0,0,0.3,554.88,3110.45,26148516,99.81,0,0,0.55,555.59,3109.73,26148517,99.95,0,0,0.14,554.9,3110.42,26148518,99.95,0,0,0.15,554.88,3110.43,26148519,99.89,0,0,0.32,554.62,3110.67,26148520,99.89,0,0,0.31,555.1,3110.2,26148521,99.81,0,0.01,0.57,555.43,3109.87,26148522,99.94,0,0,0.14,554.98,3110.32,26148523,99.94,0,0,0.15,554.95,3110.34,26148524,99.94,0,0,0.15,554.94,3110.35,26148525,99.9,0,0,0.3,554.93,3110.37,26148526,99.8,0,0,0.55,555.25,3110.04,26148527,99.95,0,0,0.16,554.88,3110.41,26148528,99.93,0,0,0.15,554.85,3110.43,26148529,99.93,0,0,0.15,554.84,3110.44,26148530,99.81,0,0,0.36,553.8,3111.5,26148531,99.78,0,0,0.47,554.7,3110.59,26148532,99.95,0,0,0.21,554.97,3110.32,26148533,99.93,0,0,0.14,554.94,3110.35,26148534,99.93,0,0,0.15,554.91,3110.37,26148535,99.89,0,0,0.27,554.9,3110.4,26148536,99.81,0,0,0.43,555.44,3109.86,26148537,99.93,0,0,0.27,555.1,3110.2,26148538,99.93,0,0,0.16,555.07,3110.22,26148539,99.95,0,0,0.2,555,3110.28,26148540,99.83,0,0,0.35,554.49,3110.81,26148541,99.79,0,0,0.62,554.79,3110.5,26148542,99.94,0,0,0.13,554.21,3111.09,26148543,99.93,0,0,0.17,554.17,3111.11,26148544,99.95,0,0,0.15,554.14,3111.14,26148545,99.85,0,0,0.31,554.63,3110.66,26148546,99.82,0,0,0.43,554.88,3110.41,26148547,99.93,0,0,0.28,554.14,3111.15,26148548,99.92,0,0,0.16,554.26,3111.02,26148549,99.84,0,0,0.29,554.2,3111.06,26148550,99.85,0,0,0.28,554.18,3111.09,26148551,99.94,0,0,0.14,554.15,3111.12,26148552,99.77,0,0,0.58,554.47,3110.8,26148553,99.95,0,0,0.14,554.14,3111.12,26148554,99.88,0,0,0.15,554.23,3111.04,26148555,99.83,0,0,0.29,554.22,3111.08,26148556,99.9,0,0,0.13,554.18,3111.11,26148557,99.79,0,0,0.57,554.75,3110.53,26148558,99.94,0,0,0.16,554.1,3111.2,26148559,99.94,0,0,0.16,554.11,3111.18,26148560,99.91,0,0,0.27,554.02,3111.29,26148561,99.95,0,0,0.16,553.98,3111.32,26148562,99.81,0,0,0.55,554.69,3110.61,26148563,99.95,0,0,0.14,554.42,3110.88,26148564,99.92,0,0,0.15,554.38,3110.91,26148565,99.9,0,0,0.28,554.37,3110.94,26148566,99.94,0,0,0.15,554.45,3110.86,26148567,99.76,0,0,0.55,554.98,3110.33,26148568,99.9,0,0,0.15,554.68,3110.62,26148569,99.9,0,0,0.15,554.63,3110.66,26148570,99.88,0,0,0.27,554.62,3110.69,26148571,99.92,0,0,0.16,554.58,3110.72,26148572,99.78,0,0,0.49,554.62,3110.68,26148573,99.9,0,0,0.19,553.71,3111.59,26148574,99.93,0,0,0.15,553.68,3111.62,26148575,99.89,0,0,0.27,553.66,3111.65,26148576,99.93,0,0,0.14,553.62,3111.68,26148577,99.8,0,0,0.55,554.2,3111.1,26148578,99.93,0,0,0.14,554.44,3110.86,26148579,99.78,0,0,0.41,553.98,3111.29,26148580,99.91,0.01,0.03,0.28,554.19,3111.1,26148581,99.7,0.33,1.27,1.71,554.16,3111.09,26148582,99.6,0.18,0.39,1.36,554.52,3110.68,26148583,99.77,0.18,1.02,1.05,553.83,3111.32,26148584,99.78,0.13,0.81,0.68,553.07,3111.21,26148585,99.88,0,0,0.42,553.85,3110.06,26148586,99.89,0,0,0.17,553.83,3110.08,26148587,99.88,0.01,0.02,0.54,553.75,3110.35,26148588,99.77,0,0.01,0.61,554.19,3109.99,26148589,99.9,0.08,0.02,0.38,553.99,3110.17,26148590,99.86,0.03,0.01,0.43,553.78,3110.4,26148591,99.9,0.03,0.01,0.29,553.82,3110.35,26148592,99.9,0.03,0.01,0.31,553.77,3110.34,26148593,99.78,0.1,0.02,0.82,554.4,3109.71,26148594,99.9,0.11,0.01,0.43,554.03,3110.09,26148595,99.86,0,0,0.3,554.79,3109.35,26148596,99.92,0.12,0.01,0.41,554.86,3109.28,26148597,99.88,0.01,0,0.26,554.82,3109.33,26148598,99.8,0.03,0,0.66,554.87,3109.29,26148599,99.93,0.03,0,0.25,554.4,3109.76,26148600,99.86,0.03,0.01,0.4,553.68,3110.47,26148601,99.88,0.09,0.04,0.47,553.67,3110.48,26148602,99.9,0.05,0.01,0.38,553.67,3110.49,26148603,99.79,0.07,0.02,0.74,554.46,3109.72,26148604,99.78,0.18,0.74,0.45,554.71,3109.43,26148605,99.52,1.47,46.23,0.93,556.96,3107.17,26148606,99.54,1.56,48.39,1.09,556.99,3107.14,26148607,99.57,1.57,49.8,0.85,556.96,3107.16,26148608,99.55,0.78,20.83,0.85,557.38,3106.74,26148609,99.62,5.8,6.71,6.13,557.27,3104.79,26148610,80.77,0.04,0.87,7.77,799.09,2860.26,26148611,99.92,0.07,3.23,0.32,560.22,3098.99,26148612,99.94,0.02,0.6,0.25,560.22,3098.97,26148613,99.8,0,0.07,0.55,560.94,3098.24,26148614,99.95,0,0,0.23,561.67,3097.52,26148615,99.84,0,0,0.36,562.16,3097.06,26148616,99.89,0,0,0.15,562.15,3097.07,26148617,99.89,0,0,0.2,562.12,3097.09,26148618,99.79,0,0,0.55,562.64,3096.57,26148619,99.93,0,0,0.14,562.81,3096.39,26148620,99.85,0,0,0.29,562.58,3096.63,26148621,99.95,0,0,0.14,562.55,3096.66,26148622,99.95,0,0,0.16,562.54,3096.67,26148623,99.22,0,0,0.31,562.86,3096.34,26148624,99.93,0,0,0.38,562.61,3096.59,26148625,99.88,0,0,0.32,562.43,3096.78,26148626,99.94,0,0,0.16,562.39,3096.81,26148627,99.9,0,0,0.14,562.37,3096.84,26148628,99.93,0,0,0.16,562.35,3096.85,26148629,99.8,0,0,0.53,563.13,3096.06,26148630,99.86,0,0,0.29,562.58,3096.63,26148631,99.91,0,0,0.14,562.55,3096.65,26148632,99.94,0,0,0.16,562.53,3096.67,26148633,99.95,0,0,0.14,562.5,3096.7,26148634,99.75,0,0,0.56,562.78,3096.42,26148635,99.77,0,0,0.31,562.69,3096.54,26148636,99.89,0.07,2.79,0.31,562.63,3096.58,26148637,99.95,0,0.01,0.2,562.6,3096.6,26148638,99.95,0,0.01,0.18,562.65,3096.55,26148639,99.71,0,0,0.69,563.38,3095.79,26148640,99.81,0.02,0.03,0.32,559.68,3099.55,26148641,99.93,0.01,0,0.19,559.54,3099.7,26148642,80.93,0.05,1.29,4.73,1032.98,2626.19,26148643,99.76,0.01,0.56,0.23,946.34,2712.87,26148644,97.83,0,0.01,0.58,607.54,3051.67,26148645,99.83,0,0,0.33,607.65,3051.59,26148646,99.87,0,0.02,0.2,607.62,3051.62,26148647,99.85,0.01,0.02,0.19,607.56,3051.67,26148648,85.25,0.03,0.02,1,704.25,2954.94,26148649,92.1,0.05,1.29,4.52,1081.22,2577.98,26148650,82.45,0.04,1.48,4.65,1104.07,2555.12,26148651,99.7,0,0,0.17,637.1,3022.12,26148652,99.81,0.01,0.02,0.21,606.07,3053.14,26148653,80.88,0.05,1.04,4.78,1019.2,2639.96,26148654,99.56,0,0,0.65,811.35,2847.84,26148655,99.77,0,0,0.32,607.62,3051.59,26148656,80.7,0.09,2.66,4.78,1075.97,2583.18,26148657,99.72,0,0,0.16,890.62,2768.55,26148658,99.86,0,0.07,0.16,605.54,3053.63,26148659,80.7,0.06,1.44,4.61,805.97,2853.14,26148660,99.7,0,0,0.7,1075.6,2583.55,26148661,99.71,0,0,0.16,660.22,2998.93,26148662,80.82,0.06,1.58,4.11,760.55,2898.54,26148663,99.81,0.03,1.43,0.77,1069.23,2589.89,26148664,99.53,0.03,1,0.47,699.47,2959.64,26148665,99.76,0,0,0.56,606.37,3052.75,26148666,99.84,0.05,2.14,0.32,606.34,3052.76,26148667,81.04,0.07,1.22,4.64,902.24,2756.81,26148668,99.7,0.02,0.01,0.24,893.14,2765.93,26148669,80.98,0.04,0.04,4.82,956.28,2702.72,26148670,80.45,0.11,3.28,5.21,1072.81,2586.2,26148671,99.63,0,0,0.24,731.06,2927.97,26148672,99.83,0.04,1.31,0.26,604.74,3054.27,26148673,95.85,0.04,0,0.46,616.3,3042.7,26148674,66.09,0.11,2.71,8.66,1101.31,2557.6,26148675,99.44,0,0.01,1.06,1004.62,2654.38,26148676,99.86,0,0,0.2,606.72,3052.28,26148677,99.8,0.05,1.82,0.39,606.8,3052.18,26148678,99.85,0.03,1.15,0.28,606.11,3052.86,26148679,99.87,0,0,0.21,606.08,3052.88,26148680,99.68,0,0,0.77,606.87,3052.11,26148681,99.86,0,0,0.17,606.75,3052.23,26148682,99.38,0.02,0.09,0.5,607,3051.97,26148683,99.85,0,0,0.18,607.2,3051.76,26148684,79.6,0.04,1.05,4.74,790.64,2868.28,26148685,99.66,0,0.04,1.06,1099.4,2559.56,26148686,99.58,0,0,0.17,616.7,3042.25,26148687,99.82,0.02,0,0.21,608.15,3050.8,26148688,80.14,0.06,1.44,4.25,795.19,2863.72,26148689,99.82,0,0.01,0.68,1101.61,2557.32,26148690,99.36,0,0.05,0.69,684.19,2974.76,26148691,99.83,0,0,0.29,609.56,3049.38,26148692,99.83,0,0,0.17,609.61,3049.32,26148693,99.81,0,0,0.14,609.69,3049.25,26148694,99.81,0.03,1.09,0.23,609.61,3049.32,26148695,99.66,0,0,0.68,609.55,3049.4,26148696,99.86,0,0,0.21,609.07,3049.87,26148697,99.83,0.03,1.12,0.2,608.84,3050.09,26148698,99.83,0.01,0.31,0.29,608.53,3050.39,26148699,99.74,0,0.01,0.36,609.01,3049.88,26148700,99.68,0,0.01,0.55,609.81,3049.1,26148701,99.81,0,0,0.38,609.37,3049.53,26148702,99.85,0,0,0.16,609.34,3049.56,26148703,99.84,0,0,0.15,609.31,3049.59,26148704,99.53,0.28,1.39,0.26,610.11,3048.73,26148705,99.15,0.02,0.07,0.43,611.84,3046.98,26148706,99.7,0.01,0.01,0.62,612.46,3046.34,26148707,99.83,0.03,0.04,0.28,611.12,3047.69,26148708,99.83,0.03,0.03,0.26,611.04,3047.76,26148709,99.78,0.04,0.11,0.25,611.15,3047.67,26148710,99.6,0.17,2.33,0.48,609.41,3049.44,26148711,80.98,0.23,4.49,5.38,1025.07,2633.54,26148712,99.7,0,0.01,0.2,790.7,2867.92,26148713,81,0.02,0.03,4.47,840.25,2818.33,26148714,99.61,0.03,1.35,0.52,968.88,2689.72,26148715,99.78,0,0,0.38,611.06,3047.56,26148716,99.68,0.06,1.46,0.54,611.41,3047.22,26148717,99.86,0.04,0,0.37,611.12,3047.49,26148718,80.81,0.09,3.03,4.67,1037.77,2620.76,26148719,80.31,0.05,1.06,4.48,1046.17,2612.35,26148720,99.64,0,0,0.58,995.21,2663.36,26148721,80.71,0.07,1.3,4.72,775.07,2883.43,26148722,99.84,0,0.03,0.63,1085.68,2572.85,26148723,99.67,0,0.04,0.25,633.95,3024.57,26148724,99.85,0,0,0.19,609.79,3048.73,26148725,99.77,0.02,0.95,0.43,611.24,3047.29,26148726,99.67,0.02,1.37,0.77,611.81,3046.71,26148727,99.83,0.04,1.42,0.18,611.16,3047.34,26148728,99.83,0.04,1.5,0.39,610.4,3048.08,26148729,99.73,0,0,0.32,611.05,3047.39,26148730,99.77,0,0,0.31,610.98,3047.49,26148731,99.82,0,0,0.17,611.07,3047.39,26148732,99.7,0,0,0.6,611.77,3046.68,26148733,99.83,0,0,0.17,611.39,3047.06,26148734,99.79,0.01,0.04,0.23,611.32,3047.13,26148735,99.73,0,0.01,0.34,611.47,3047,26148736,99.83,0,0.04,0.21,611.4,3047.06,26148737,99.69,0,0,0.68,611.7,3046.75,26148738,99.83,0,0,0.16,611.32,3047.13,26148739,99.82,0,0,0.18,611.14,3047.3,26148740,99.73,0,0,0.32,610.76,3047.7,26148741,99.83,0,0,0.17,610.73,3047.73,26148742,99.69,0,0,0.6,610.56,3047.89,26148743,99.84,0,0,0.17,609.94,3048.51,26148744,99.83,0,0.01,0.17,609.9,3048.54,26148745,99.79,0,0,0.38,609.87,3048.59,26148746,99.85,0,0,0.2,609.97,3048.49,26148747,99.71,0,0,0.57,611.17,3047.29,26148748,99.81,0,0,0.19,611.19,3047.26,26148749,99.85,0,0,0.16,611.15,3047.3,26148750,99.79,0,0.01,0.34,610.9,3047.58,26148751,99.84,0,0.02,0.23,610.94,3047.53,26148752,99.72,0,0,0.56,611.77,3046.7,26148753,99.81,0,0,0.17,611.19,3047.28,26148754,99.81,0,0,0.17,611.15,3047.31,26148755,99.78,0,0,0.33,611.39,3047.08,26148756,99.84,0,0,0.17,611.36,3047.11,26148757,99.7,0,0.02,0.61,611.13,3047.34,26148758,99.84,0,0,0.21,610.96,3047.49,26148759,99.76,0,0,0.3,610.93,3047.5,26148760,99.78,0,0,0.3,611.16,3047.28,26148761,99.78,0,0,0.16,611.14,3047.3,26148762,99.69,0,0,0.4,611.46,3046.98,26148763,99.83,0,0,0.3,611.07,3047.36,26148764,99.84,0,0,0.14,611.04,3047.39,26148765,99.77,0,0,0.31,611.64,3046.81,26148766,99.08,0,0,0.16,611.68,3046.76,26148767,99.85,0,0.01,0.14,611.65,3046.79,26148768,99.66,0,0,0.57,611.74,3046.7,26148769,99.86,0,0,0.15,611.35,3047.08,26148770,99.79,0,0,0.48,611.02,3047.43,26148771,99.84,0,0,0.15,610.82,3047.63,26148772,99.84,0,0,0.16,610.93,3047.51,26148773,99.68,0.01,0.2,0.7,611.88,3046.55,26148774,99.85,0,0.02,0.22,611.66,3046.76,26148775,99.78,0.01,0.29,0.35,611.5,3046.93,26148776,99.84,0,0,0.19,610.67,3047.76,26148777,99.82,0,0,0.16,610.65,3047.78,26148778,99.69,0,0,0.55,611.13,3047.29,26148779,99.84,0,0,0.15,610.82,3047.6,26148780,99.78,0,0,0.32,610.82,3047.63,26148781,99.85,0,0,0.16,610.79,3047.66,26148782,99.84,0,0,0.14,610.91,3047.53,26148783,99.7,0,0.01,0.72,611.49,3046.94,26148784,99.86,0,0,0.2,611.35,3047.07,26148785,99.78,0,0,0.32,611.59,3046.85,26148786,99.83,0,0.01,0.17,611.56,3046.88,26148787,99.83,0,0.02,0.2,611.55,3046.88,26148788,99.72,0,0.01,0.81,612.31,3046.12,26148789,99.77,0,0,0.3,611.63,3046.78,26148790,99.78,0,0.01,0.38,611.85,3046.57,26148791,99.84,0,0,0.15,611.81,3046.61,26148792,99.85,0,0.01,0.21,611.85,3046.56,26148793,99.71,0,0,0.47,612.44,3045.96,26148794,99.81,0,0.02,0.32,611.35,3047.07,26148795,99.8,0,0.01,0.35,610.88,3047.56,26148796,99.86,0,0,0.16,610.84,3047.59,26148797,99.83,0.01,0.04,0.23,611.05,3047.37,26148798,99.83,0,0,0.21,611.14,3047.28,26148799,99.68,0,0,0.55,611.29,3047.13,26148800,99.79,0,0,0.35,611.35,3047.08,26148801,99.85,0,0.02,0.18,611.31,3047.11,26148802,99.84,0,0.02,0.16,611.4,3047.02,26148803,99.83,0,0,0.17,611.39,3047.03,26148804,99.64,0,0,0.57,611.72,3046.7,26148805,99.77,0.01,0.07,0.32,610.13,3048.3,26148806,99.87,0,0,0.18,610.04,3048.39,26148807,99.85,0,0,0.15,610.31,3048.12,26148808,99.85,0,0,0.14,610.4,3048.02,26148809,99.72,0,0.04,0.61,611.29,3047.12,26148810,99.78,0.01,0.16,0.33,611.35,3047.08,26148811,99.87,0,0.12,0.24,611.37,3047.05,26148812,99.92,0,0,0.14,611.28,3047.14,26148813,99.93,0,0,0.15,611.06,3047.36,26148814,99.76,0,0,0.55,611.75,3046.66,26148815,99.83,0,0,0.31,611.16,3047.27,26148816,99.92,0,0,0.14,611.12,3047.31,26148817,99.94,0,0,0.16,611.08,3047.34,26148818,99.93,0,0,0.15,611.07,3047.35,26148819,99.77,0,0,0.66,611.82,3046.57,26148820,99.85,0,0,0.35,610.87,3047.53,26148821,99.93,0,0,0.16,610.92,3047.48,26148822,99.94,0,0,0.14,610.89,3047.5,26148823,99.88,0,0,0.14,610.87,3047.52,26148824,99.79,0,0,0.56,611.53,3046.85,26148825,99.87,0,0,0.33,611.32,3047.08,26148826,99.5,0,0,0.13,611.29,3047.11,26148827,99.74,0,0.01,0.18,611.25,3047.14,26148828,99.93,0,0,0.14,611.4,3046.99,26148829,99.79,0,0,0.41,611.88,3046.5,26148830,99.87,0,0,0.46,612.11,3046.29,26148831,99.9,0,0,0.18,612.08,3046.32,26148832,99.91,0,0,0.14,612.05,3046.34,26148833,99.9,0,0,0.14,611.69,3046.7,26148834,99.81,0.01,0,0.41,611.85,3046.53,26148835,99.9,0,0,0.44,611.52,3046.88,26148836,99.91,0,0,0.16,611.59,3046.8,26148837,99.93,0,0,0.16,611.64,3046.75,26148838,99.91,0,0,0.16,611.61,3046.78,26148839,99.94,0,0,0.16,611.56,3046.82,26148840,99.72,0,0,0.7,612.2,3046.19,26148841,99.91,0,0,0.16,611.51,3046.88,26148842,99.92,0,0,0.14,611.48,3046.9,26148843,99.93,0,0,0.14,611.66,3046.72,26148844,99.93,0,0,0.16,611.63,3046.74,26148845,99.63,0,0,0.8,611.99,3046.39,26148846,99.91,0,0,0.14,611.83,3046.56,26148847,99.89,0,0,0.15,611.79,3046.59,26148848,99.93,0,0,0.14,611.77,3046.61,26148849,99.85,0,0,0.29,611.37,3046.97,26148850,99.73,0,0,0.75,611.83,3046.53,26148851,99.93,0,0,0.16,611.63,3046.73,26148852,99.91,0,0,0.14,611.6,3046.76,26148853,99.92,0,0,0.15,611.28,3047.07,26148854,99.93,0,0,0.16,610.55,3047.8,26148855,96.66,0.02,0.01,78,617.99,3041.84,26148856,99.92,0,0,0.33,612.99,3045.28,26148857,99.91,0,0,0.23,612.72,3045.54,26148858,99.9,0,0,0.16,612.68,3045.57,26148859,99.86,0,0,0.17,612.65,3045.61,26148860,99.73,0,0,0.77,612.49,3045.79,26148861,99.93,0,0,0.23,610.88,3047.43,26148862,99.92,0,0,0.2,610.85,3047.45,26148863,99.93,0,0,0.2,610.82,3047.47,26148864,99.86,0,0,0.2,610.79,3047.5,26148865,99.73,0,0,0.77,611.35,3046.96,26148866,99.93,0,0,0.21,610.5,3047.82,26148867,99.92,0,0,0.2,610.48,3047.84,26148868,99.93,0,0,0.2,610.6,3047.72,26148869,99.83,0.18,0.96,0.21,610.58,3047.73,26148870,99.59,0.21,0.84,0.59,610.64,3047.69,26148871,99.94,0,0,0.3,610.63,3047.69,26148872,99.92,0.06,0.09,0.34,610.1,3048.23,26148873,99.92,0,0,0.25,607.42,3050.95,26148874,99.75,0.41,8.59,0.28,608.19,3050.14,26148875,80.63,0.29,5.18,5.15,835.53,2822.59,26148876,99.59,0,0,0.63,1003.17,2654.95,26148877,99.95,0,0,0.16,607.4,3050.72,26148878,99.92,0,0,0.14,607.38,3050.74,26148879,99.9,0,0,0.29,609.08,3049.01,26148880,99.88,0,0,0.37,609.33,3048.8,26148881,99.78,0,0,0.57,609.82,3048.3,26148882,99.94,0,0,0.19,609.47,3048.64,26148883,99.94,0,0,0.18,609.45,3048.66,26148884,99.95,0,0,0.18,609.43,3048.68,26148885,99.89,0,0,0.35,609.69,3048.44,26148886,99.8,0,0,0.6,609.84,3048.29,26148887,99.88,0,0,0.13,609.4,3048.72,26148888,99.9,0,0,0.16,609.38,3048.74,26148889,99.95,0,0,0.14,609.36,3048.75,26148890,99.88,0,0,0.37,609.32,3048.81,26148891,99.8,0,0,0.58,609.44,3048.69,26148892,99.94,0,0,0.18,609.13,3048.99,26148893,99.94,0,0,0.18,609.17,3048.94,26148894,99.93,0,0,0.18,608.99,3049.12,26148895,99.86,0,0,0.35,609.48,3048.65,26148896,99.8,0,0,0.4,609.83,3048.3,26148897,80.91,0.01,0.03,4.51,799.4,2858.68,26148898,99.9,0,0,0.46,554.93,3103.42,26148899,99.94,0,0,0.2,553.15,3105.39,26148900,99.79,0,0,0.34,554.13,3104.43,26148901,99.81,0,0,0.54,554.65,3103.91,26148902,99.95,0,0,0.18,554.29,3104.26,26148903,99.95,0,0,0.14,554.26,3104.29,26148904,99.95,0,0,0.15,554.25,3104.32,26148905,99.88,0,0,0.3,554.79,3103.8,26148906,99.82,0,0,0.37,555.1,3103.49,26148907,99.95,0,0,0.37,554.95,3103.64,26148908,99.91,0,0,0.15,554.94,3103.64,26148909,99.86,0,0,0.29,554.92,3103.63,26148910,99.86,0,0,0.32,554.67,3103.91,26148911,99.96,0,0,0.14,554.63,3103.94,26148912,99.76,0,0,0.54,554.97,3103.59,26148913,99.94,0,0,0.15,554.67,3103.89,26148914,99.94,0,0,0.14,554.76,3103.82,26148915,99.85,0,0,0.34,554.28,3104.31,26148916,99.93,0,0,0.15,554.25,3104.34,26148917,99.78,0,0,0.6,554.99,3103.59,26148918,99.92,0,0,0.14,554.69,3103.89,26148919,99.93,0,0,0.15,554.67,3103.9,26148920,99.89,0,0,0.3,554.91,3103.67,26148921,99.95,0,0,0.14,554.9,3103.68,26148922,99.82,0,0,0.57,555.22,3103.36,26148923,99.94,0,0,0.14,554.86,3103.71,26148924,99.94,0,0,0.16,554.88,3103.69,26148925,99.89,0,0,0.33,554.53,3104.05,26148926,99.55,0,0,0.17,554.5,3104.08,26148927,99.8,0,0,0.57,555.11,3103.47,26148928,99.92,0,0,0.17,554.95,3103.62,26148929,99.95,0,0,0.17,554.92,3103.64,26148930,99.88,0,0,0.32,554.94,3103.65,26148931,99.95,0,0,0.17,554.91,3103.68,26148932,99.8,0,0,0.58,555.44,3103.14,26148933,99.91,0,0,0.16,554.62,3103.95,26148934,99.93,0,0,0.18,554.59,3103.98,26148935,99.88,0,0,0.38,554.47,3104.11,26148936,99.95,0,0,0.17,554.51,3104.07,26148937,99.8,0,0,0.44,555.08,3103.49,26148938,99.93,0,0,0.3,554.96,3103.61,26148939,99.9,0,0,0.31,555.19,3103.36,26148940,99.85,0,0,0.33,554.95,3103.62,26148941,99.95,0,0,0.16,554.93,3103.63,26148942,99.79,0,0,0.38,555.25,3103.3,26148943,99.93,0,0,0.38,554.87,3103.69,26148944,99.94,0,0,0.18,554.83,3103.72,26148945,99.87,0,0,0.33,554.73,3103.84,26148946,99.93,0,0,0.18,554.75,3103.81,26148947,99.79,0,0,0.33,555.08,3103.47,26148948,99.93,0,0,0.4,554.96,3103.6,26148949,99.95,0,0,0.17,554.93,3103.62,26148950,99.85,0,0,0.4,555.03,3103.54,26148951,99.95,0,0,0.18,554.9,3103.66,26148952,99.92,0,0,0.17,554.88,3103.68,26148953,99.75,0,0,0.57,555.43,3103.13,26148954,99.95,0,0,0.18,555.08,3103.47,26148955,99.87,0,0,0.34,555.09,3103.47,26148956,99.91,0,0,0.18,555.23,3103.33,26148957,99.93,0,0,0.16,555.27,3103.29,26148958,99.75,0,0,0.57,555.43,3103.13,26148959,99.93,0,0,0.17,554.98,3103.57,26148960,99.84,0,0,0.32,555.5,3103.07,26148961,99.92,0,0,0.16,555.46,3103.11,26148962,99.95,0,0,0.17,555.43,3103.13,26148963,99.82,0,0,0.57,555.63,3102.92,26148964,99.95,0,0,0.17,555.14,3103.41,26148965,99.88,0,0,0.35,555.15,3103.41,26148966,99.93,0,0,0.18,555.11,3103.44,26148967,99.94,0,0,0.17,555.18,3103.38,26148968,99.8,0,0,0.43,556.07,3102.48,26148969,99.88,0,0,0.46,555.48,3103.04,26148970,99.83,0,0,0.33,555.48,3103.06,26148971,99.94,0,0,0.16,555.47,3103.07,26148972,99.92,0,0,0.16,555.44,3103.09,26148973,99.8,0,0,0.46,556,3102.53,26148974,99.91,0,0,0.3,555.16,3103.38,26148975,99.88,0,0,0.34,554.92,3103.64,26148976,99.95,0,0,0.18,554.88,3103.68,26148977,99.92,0,0,0.22,554.86,3103.69,26148978,99.8,0,0,0.34,555.4,3103.15,26148979,99.92,0,0,0.4,555.02,3103.53,26148980,99.9,0,0,0.33,555.49,3103.07,26148981,99.95,0,0,0.16,555.48,3103.07,26148982,99.93,0,0,0.17,555.46,3103.11,26148983,99.93,0,0,0.17,555.43,3103.13,26148984,99.78,0,0,0.55,555.76,3102.8,26148985,99.89,0,0,0.31,555.17,3103.41,26148986,99.95,0,0,0.15,555.15,3103.43,26148987,99.93,0,0,0.16,555.12,3103.45,26148988,99.94,0,0,0.16,555.11,3103.46,26148989,99.79,0,0,0.57,555.51,3103.05,26148990,99.9,0,0,0.31,555.53,3103.05,26148991,99.94,0,0,0.15,555.49,3103.09,26148992,99.93,0,0,0.16,555.46,3103.12,26148993,99.93,0,0,0.14,555.44,3103.13,26148994,99.82,0,0,0.55,555.77,3102.8,26148995,99.83,0,0,0.31,553.72,3104.86,26148996,99.94,0,0,0.14,553.67,3104.91,26148997,99.94,0,0,0.16,553.64,3104.93,26148998,99.95,0,0,0.14,553.63,3104.94,26148999,99.72,0,0,0.69,555.21,3103.33,26149000,99.87,0,0,0.3,555.01,3103.55,26149001,99.93,0,0,0.17,554.99,3103.57,26149002,99.95,0,0,0.14,554.97,3103.59,26149003,99.96,0,0,0.15,554.95,3103.6,26149004,99.81,0,0,0.43,554.79,3103.75,26149005,99.9,0,0,0.46,553.96,3104.6,26149006,99.95,0,0,0.14,553.92,3104.64,26149007,99.94,0,0,0.16,553.9,3104.65,26149008,99.93,0,0,0.14,553.87,3104.68,26149009,99.79,0,0,0.4,554.52,3104.02,26149010,99.83,0,0,0.46,554.46,3104.09,26149011,99.93,0,0,0.14,554.49,3104.07,26149012,99.94,0,0,0.14,554.49,3104.05,26149013,99.93,0,0,0.16,554.47,3104.08,26149014,99.81,0,0,0.3,554.8,3103.74,26149015,99.83,0,0,0.52,554.46,3104.09,26149016,99.91,0,0,0.16,554.44,3104.11,26149017,99.93,0,0,0.14,554.42,3104.13,26149018,99.93,0,0,0.15,554.4,3104.15,26149019,99.95,0,0,0.15,554.36,3104.18,26149020,99.62,0,0,0.7,554.95,3103.6,26149021,99.93,0,0,0.13,554.67,3103.88,26149022,99.95,0,0,0.16,554.74,3103.81,26149023,99.94,0,0,0.14,554.73,3103.81,26149024,99.94,0,0,0.15,554.7,3103.84,26149025,99.73,0,0,0.7,554.77,3103.78,26149026,99.93,0,0,0.16,554.68,3103.88,26149027,99.92,0,0,0.14,554.66,3103.89,26149028,99.94,0,0,0.16,554.64,3103.91,26149029,99.85,0,0,0.3,554.85,3103.67,26149030,99.78,0,0,0.65,555.09,3103.45,26149031,99.91,0,0,0.21,554.58,3103.95,26149032,99.94,0,0,0.14,554.72,3103.81,26149033,99.94,0,0,0.15,554.76,3103.77,26149034,99.95,0,0,0.14,554.73,3103.8,26149035,99.77,0,0,0.77,554.77,3103.78,26149036,99.95,0,0,0.16,554.21,3104.33,26149037,99.93,0,0,0.21,554.2,3104.34,26149038,99.92,0,0,0.14,554.17,3104.36,26149039,99.93,0,0,0.14,554.16,3104.37,26149040,99.75,0,0,0.73,555.58,3102.96,26149041,99.91,0,0,0.14,554.86,3103.68,26149042,99.95,0,0,0.15,554.84,3103.69,26149043,99.95,0,0,0.17,554.9,3103.62,26149044,99.95,0,0,0.14,554.99,3103.54,26149045,99.83,0,0,0.32,554.92,3103.63,26149046,99.84,0,0,0.56,555.07,3103.47,26149047,99.95,0,0,0.15,554.69,3103.84,26149048,99.95,0,0,0.15,554.66,3103.86,26149049,99.94,0,0,0.14,554.65,3103.88,26149050,99.89,0,0,0.37,554.65,3103.89,26149051,99.79,0,0,0.54,554.98,3103.55,26149052,99.94,0,0,0.18,554.6,3103.93,26149053,99.93,0,0,0.15,554.59,3103.94,26149054,99.93,0,0,0.15,554.68,3103.84,26149055,99.9,0,0,0.32,554.5,3104.04,26149056,99.8,0,0,0.55,555.31,3103.22,26149057,99.92,0,0,0.14,555.19,3103.34,26149058,99.94,0,0,0.16,555.17,3103.35,26149059,99.82,0,0,0.28,554.69,3103.81,26149060,99.89,0,0,0.3,555.15,3103.36,26149061,99.81,0,0,0.54,555.33,3103.18,26149062,99.93,0,0,0.14,554.87,3103.64,26149063,99.95,0,0,0.17,554.85,3103.66,26149064,99.92,0,0,0.14,554.83,3103.68,26149065,99.88,0,0,0.31,554.91,3103.62,26149066,99.8,0,0,0.55,555.35,3103.18,26149067,99.93,0,0,0.16,554.97,3103.55,26149068,99.93,0,0,0.15,554.94,3103.58,26149069,99.93,0,0,0.14,554.92,3103.6,26149070,99.85,0,0,0.38,554.46,3104.08,26149071,99.75,0,0,0.41,554.76,3103.77,26149072,99.94,0,0,0.27,554.38,3104.14,26149073,99.94,0,0,0.16,554.35,3104.17,26149074,99.91,0,0,0.18,554.33,3104.19,26149075,99.88,0,0,0.32,554.68,3103.85,26149076,99.82,0,0,0.4,555.17,3103.36,26149077,99.92,0,0,0.3,554.97,3103.56,26149078,99.93,0,0,0.14,554.94,3103.59,26149079,99.94,0,0,0.15,554.93,3103.59,26149080,99.84,0,0,0.33,554.92,3103.62,26149081,99.93,0,0,0.13,554.89,3103.66,26149082,99.8,0,0,0.54,555.23,3103.31,26149083,99.95,0,0,0.17,554.85,3103.69,26149084,99.95,0,0,0.14,554.83,3103.7,26149085,99.91,0,0,0.32,555.16,3103.39,26149086,99.92,0,0,0.16,555.22,3103.32,26149087,99.79,0,0,0.57,555.36,3103.18,26149088,99.95,0,0,0.15,554.93,3103.61,26149089,99.88,0,0,0.3,554.67,3103.85,26149090,99.9,0,0,0.3,554.4,3104.13,26149091,99.95,0,0,0.16,554.38,3104.14,26149092,99.8,0,0,0.59,555.3,3103.22,26149093,99.91,0,0,0.16,555.08,3103.44,26149094,99.93,0,0,0.14,555.05,3103.47,26149095,99.9,0,0,0.34,554.94,3103.58,26149096,99.93,0,0,0.14,554.96,3103.56,26149097,99.8,0,0,0.59,555.29,3103.22,26149098,99.95,0,0,0.14,554.92,3103.59,26149099,99.95,0,0,0.16,554.89,3103.61,26149100,99.9,0,0,0.33,554.9,3103.62,26149101,99.95,0,0,0.14,554.87,3103.64,26149102,99.81,0,0,0.54,555.22,3103.29,26149103,99.95,0,0,0.14,554.83,3103.68,26149104,99.93,0,0,0.15,554.82,3103.68,26149105,99.87,0,0,0.34,554.81,3103.71,26149106,99.9,0,0,0.14,554.9,3103.62,26149107,99.77,0,0,0.39,555.18,3103.33,26149108,99.91,0,0,0.3,554.49,3104.02,26149109,98.06,0,0,0.14,554.45,3104.05,26149110,99.9,0,0,0.32,554.7,3103.82,26149111,99.92,0,0,0.16,554.68,3103.84,26149112,99.8,0,0,0.4,555.36,3103.16,26149113,99.93,0,0,0.29,555.12,3103.39,26149114,99.92,0,0,0.15,555.1,3103.41,26149115,99.89,0,0,0.31,555.34,3103.18,26149116,99.93,0,0,0.16,555.33,3103.19,26149117,99.93,0,0,0.14,555.39,3103.12,26149118,99.78,0,0,0.55,555.57,3102.94,26149119,99.88,0,0,0.28,555.19,3103.29,26149120,99.88,0,0,0.32,554.94,3103.56,26149121,99.91,0,0,0.14,554.92,3103.57,26149122,99.92,0,0,0.14,554.89,3103.6,26149123,99.8,0,0,0.55,555.47,3103.02,26149124,99.92,0,0,0.14,555.1,3103.38,26149125,99.88,0,0,0.31,554.87,3103.63,26149126,99.92,0,0,0.14,554.83,3103.66,26149127,99.95,0,0,0.16,554.86,3103.63,26149128,99.82,0,0,0.55,555.72,3102.77,26149129,99.88,0,0,0.14,555.44,3103.04,26149130,99.88,0,0,0.33,554.87,3103.62,26149131,99.93,0,0,0.15,554.68,3103.81,26149132,99.94,0,0,0.16,554.65,3103.84,26149133,99.8,0,0,0.55,555.65,3102.83,26149134,99.95,0,0,0.15,555.34,3103.14,26149135,99.86,0,0,0.31,555.35,3103.14,26149136,99.95,0,0,0.16,555.32,3103.17,26149137,99.92,0,0,0.14,555.3,3103.18,26149138,99.83,0,0,0.55,555.78,3102.7,26149139,99.93,0,0,0.14,555.19,3103.28,26149140,99.77,0,0,0.32,554.48,3104.01,26149141,99.94,0,0,0.17,554.43,3104.06,26149142,99.94,0,0,0.15,554.41,3104.07,26149143,99.79,0,0,0.43,555.07,3103.41,26149144,99.93,0,0,0.3,555.35,3103.11,26149145,99.88,0,0,0.32,555.35,3103.14,26149146,99.92,0,0,0.16,555.33,3103.14,26149147,99.93,0,0,0.15,555.3,3103.18,26149148,99.81,0,0,0.42,555.6,3102.87,26149149,99.89,0,0,0.43,555.67,3102.78,26149150,99.89,0,0,0.3,554.98,3103.48,26149151,99.92,0,0,0.14,554.96,3103.5,26149152,99.93,0,0,0.16,554.92,3103.53,26149153,99.79,0,0,0.55,555.3,3103.15,26149154,99.94,0,0,0.15,555.38,3103.09,26149155,99.9,0,0,0.32,555.06,3103.42,26149156,99.94,0,0,0.14,554.36,3104.12,26149157,99.93,0,0,0.21,554.1,3104.38,26149158,99.93,0,0,0.14,554.07,3104.4,26149159,99.77,0,0,0.55,555.27,3103.2,26149160,99.88,0,0,0.32,554.73,3103.75,26149161,99.92,0,0,0.13,554.71,3103.77,26149162,99.95,0,0,0.14,554.68,3103.79,26149163,99.94,0,0,0.17,554.65,3103.82,26149164,99.82,0,0,0.57,554.99,3103.47,26149165,99.89,0,0,0.31,554.63,3103.86,26149166,99.92,0,0,0.16,554.6,3103.88,26149167,99.94,0,0,0.14,554.58,3103.89,26149168,99.96,0,0,0.14,554.56,3103.91,26149169,99.82,0,0,0.58,554.98,3103.49,26149170,99.84,0,0,0.3,553.75,3104.73,26149171,99.94,0,0,0.14,553.71,3104.77,26149172,99.96,0,0,0.16,553.69,3104.78,26149173,99.93,0,0,0.14,553.67,3104.8,26149174,99.82,0,0,0.56,554.29,3104.17,26149175,99.84,0,0,0.3,554.39,3104.09,26149176,99.92,0,0,0.19,554.36,3104.12,26149177,99.9,0,0,0.12,554.34,3104.14,26149178,99.94,0,0,0.16,554.33,3104.14,26149179,99.7,0,0,0.68,555.04,3103.4,26149180,99.86,0,0,0.34,554.74,3103.72,26149181,99.89,0,0,0.15,554.74,3103.72,26149182,99.93,0,0,0.16,554.71,3103.74,26149183,99.92,0,0,0.15,554.69,3103.76,26149184,99.81,0,0,0.55,555.38,3103.08,26149185,99.85,0,0,0.3,554.43,3104.05,26149186,99.9,0,0,0.16,554.4,3104.07,26149187,99.91,0,0,0.14,554.37,3104.1,26149188,99.93,0,0,0.14,554.35,3104.12,26149189,99.78,0,0,0.3,554.7,3103.76,26149190,99.72,0,0,0.53,554.24,3104.24,26149191,99.9,0,0,0.14,554,3104.47,26149192,99.9,0,0,0.16,553.98,3104.49,26149193,99.89,0,0,0.14,553.96,3104.5,26149194,99.75,0,0,0.3,554.32,3104.14,26149195,99.85,0,0,0.54,554.9,3103.58,26149196,99.9,0,0,0.17,554.9,3103.59,26149197,99.9,0,0,0.16,554.89,3103.6,26149198,99.88,0,0,0.15,554.86,3103.63,26149199,99.92,0,0,0.14,554.83,3103.65,26149200,99.67,0,0,0.68,554.99,3103.5,26149201,99.89,0,0,0.16,554.65,3103.84,26149202,99.89,0,0,0.13,554.74,3103.75,26149203,99.88,0,0,0.16,554.71,3103.77,26149204,99.86,0,0,0.14,554.68,3103.8,26149205,99.69,0,0,0.71,555.7,3102.79,26149206,99.88,0,0,0.14,554.89,3103.61,26149207,99.85,0,0.02,0.18,554.85,3103.66,26149208,99.86,0,0,0.16,554.82,3103.68,26149209,99.75,0,0,0.28,554.54,3103.93,26149210,99.68,0,0,0.7,555.31,3103.18,26149211,99.88,0,0,0.17,554.96,3103.53,26149212,99.83,0,0,0.14,554.94,3103.54,26149213,99.84,0,0,0.15,554.91,3103.57,26149214,99.85,0,0,0.17,554.89,3103.59,26149215,99.63,0,0,0.69,554.8,3103.7,26149216,99.86,0,0,0.14,554.62,3103.87,26149217,99.84,0,0,0.2,554.84,3103.64,26149218,99.84,0,0,0.15,554.82,3103.66,26149219,99.84,0,0,0.14,554.81,3103.67,26149220,95.03,0.35,0.01,78.3,565.18,3093.55,26149221,99.75,0,0,181.1,557.23,3101.01,26149222,99.86,0,0,0.16,557.21,3101.02,26149223,99.87,0,0,0.14,557.2,3101.03,26149224,99.86,0,0,0.14,557.17,3101.05,26149225,99.67,0,0,0.81,557.36,3100.89,26149226,99.86,0,0,0.14,555,3103.28,26149227,99.86,0,0,0.14,554.98,3103.29,26149228,99.88,0,0,0.17,554.96,3103.31,26149229,99.86,0,0,0.14,554.95,3103.31,26149230,99.63,0,0,0.54,555.52,3102.77,26149231,99.86,0,0,0.32,554.89,3103.42,26149232,99.85,0,0,0.16,554.85,3103.44,26149233,99.85,0,0,0.14,554.83,3103.46,26149234,99.85,0,0,0.16,554.81,3103.48,26149235,99.76,0,0,0.3,554.82,3103.49,26149236,99.7,0,0,0.55,555.57,3102.73,26149237,99.82,0,0,0.14,555.25,3103.04,26149238,99.85,0,0,0.15,555.22,3103.07,26149239,99.77,0,0,0.29,554.48,3103.78,26149240,99.78,0,0,0.29,554.81,3103.47,26149241,99.73,0,0,0.55,555.22,3103.05,26149242,99.83,0,0,0.16,554.84,3103.42,26149243,99.85,0,0,0.17,554.82,3103.45,26149244,99.86,0,0,0.15,554.79,3103.46,26149245,99.74,0,0,0.31,555.27,3103.01,26149246,99.7,0,0,0.55,555.07,3103.2,26149247,99.87,0,0,0.13,554.02,3104.25,26149248,99.85,0,0,0.19,554,3104.27,26149249,99.86,0,0,0.14,553.97,3104.29,26149250,99.36,0,0,0.31,554.69,3103.59,26149251,97.77,0,0,0.61,554.89,3103.39,26149252,99.88,0,0,0.16,554.87,3103.4,26149253,99.85,0,0,0.14,554.83,3103.43,26149254,99.86,0,0,0.15,554.81,3103.45,26149255,99.79,0,0,0.3,555.05,3103.22,26149256,99.73,0,0,0.55,555.47,3102.8,26149257,99.85,0,0,0.14,555.26,3103,26149258,99.86,0,0,0.14,555.24,3103.02,26149259,99.84,0,0,0.19,554.98,3103.28,26149260,99.56,0,0,4.98,555,3103.45,26149261,99.73,0,0,0.6,555.43,3103.02,26149262,99.87,0,0,0.18,555.53,3102.91,26149263,99.85,0,0,0.18,555.62,3102.82,26149264,99.84,0,0,0.15,555.59,3102.85,26149265,99.77,0,0,0.32,555.36,3103.11,26149266,99.72,0,0,0.6,555.52,3102.94,26149267,99.84,0,0,0.18,554.57,3103.89,26149268,97.01,0.02,0.01,77.14,557.88,3101.82,26149269,99.1,3.03,0.01,4.16,558.44,3096.68,26149270,99.8,0,0,0.35,557.94,3097.16,26149271,99.75,0,0,0.31,558.5,3096.59,26149272,99.83,0,0,0.39,556.66,3098.44,26149273,99.86,0,0,0.14,556.64,3098.45,26149274,99.85,0,0,0.18,554.99,3100.15,26149275,99.81,0,0,0.3,555.2,3099.96,26149276,99.84,0,0,0.16,555.24,3099.92,26149277,99.72,0,0,0.58,555.9,3099.25,26149278,99.87,0,0,0.15,555.56,3099.59,26149279,99.83,0,0,0.16,555.54,3099.6,26149280,99.77,0,0,0.32,554.57,3100.59,26149281,99.83,0,0,0.16,554.51,3100.65,26149282,99.73,0,0,0.57,555.67,3099.48,26149283,99.85,0,0,0.16,555.44,3099.71,26149284,99.86,0,0,0.15,555.43,3099.71,26149285,99.76,0,0,0.34,555.2,3099.96,26149286,99.84,0,0,0.14,555.31,3099.85,26149287,99.72,0,0,0.57,555.86,3099.32,26149288,99.87,0,0,0.18,555.55,3099.62,26149289,99.87,0,0,0.15,555.52,3099.64,26149290,99.79,0,0,0.34,555.51,3099.67,26149291,99.88,0,0,0.14,555.49,3099.69,26149292,99.73,0,0,0.6,556.16,3099.01,26149293,99.86,0,0,0.16,555.43,3099.73,26149294,99.87,0,0,0.14,555.43,3099.73,26149295,99.83,0,0,0.36,555.66,3099.52,26149296,99.85,0,0,0.15,555.81,3099.37,26149297,99.73,0,0,0.53,555.99,3099.18,26149298,99.87,0,0,0.15,554.82,3100.35,26149299,99.79,0,0,0.29,555.27,3099.87,26149300,99.8,0,0,0.34,555.28,3099.88,26149301,99.87,0,0,0.14,555.25,3099.91,26149302,99.71,0,0,0.4,555.66,3099.5,26149303,99.86,0,0,0.29,555.69,3099.46,26149304,99.84,0,0,0.14,555.68,3099.47,26149305,99.8,0,0,0.3,555.43,3099.73,26149306,99.86,0,0,0.16,555.41,3099.75,26149307,99.69,0,0,0.5,555.91,3099.25,26149308,99.87,0,0,0.2,555.56,3099.59,26149309,99.88,0,0,0.15,555.53,3099.62,26149310,99.78,0,0,0.31,555.37,3099.81,26149311,99.87,0,0,0.15,554.78,3100.39,26149312,99.85,0,0,0.16,554.77,3100.39,26149313,99.71,0,0,0.59,554.89,3100.27,26149314,99.85,0,0,0.16,554.24,3100.93,26149315,99.79,0,0,0.32,554.72,3100.47,26149316,99.86,0,0,0.14,554.7,3100.48,26149317,99.85,0,0,0.16,554.67,3100.5,26149318,99.72,0,0,0.54,555.37,3099.81,26149319,99.86,0,0,0.15,555.1,3100.07,26149320,99.81,0,0,0.36,554.85,3100.33,26149321,99.84,0,0,0.16,554.82,3100.36,26149322,99.86,0,0,0.14,554.79,3100.38,26149323,99.7,0,0,0.54,555.12,3100.05,26149324,99.86,0,0,0.14,554.75,3100.41,26149325,99.75,0,0,0.27,554.12,3101.06,26149326,99.85,0,0,0.14,554,3101.18,26149327,99.86,0,0,0.16,553.97,3101.2,26149328,99.71,0,0,0.54,554.47,3100.7,26149329,99.77,0,0,0.27,554.8,3100.35,26149330,99.78,0,0,0.26,554.15,3101.01,26149331,99.79,0,0,0.14,554.09,3101.07,26149332,99.83,0,0,0.16,554.06,3101.09,26149333,99.72,0,0,0.45,555.02,3100.13,26149334,99.82,0,0,0.32,555,3100.16,26149335,99.75,0,0,0.3,555.01,3100.16,26149336,99.83,0,0,0.15,554.98,3100.19,26149337,99.85,0,0,0.23,554.71,3100.45,26149338,99.7,0,0.01,0.49,554.98,3100.18,26149339,99.84,0,0.01,0.22,554.58,3100.58,26149340,99.8,0,0,0.26,555.3,3099.87,26149341,99.85,0,0,0.18,555.28,3099.89,26149342,99.83,0,0,0.18,555.26,3099.91,26149343,99.7,0,0,0.57,555.51,3099.65,26149344,99.87,0,0,0.18,554.96,3100.2,26149345,99.76,0,0,0.3,554.96,3100.22,26149346,99.86,0,0,0.18,554.94,3100.23,26149347,99.87,0,0,0.18,555.04,3100.13,26149348,99.71,0,0,0.39,555.62,3099.54,26149349,99.86,0,0,0.38,554.81,3100.35,26149350,99.8,0,0,0.34,555.06,3100.11,26149351,99.85,0,0,0.18,555.04,3100.13,26149352,99.85,0,0,0.18,555.01,3100.15,26149353,99.86,0,0,0.18,555,3100.16,26149354,99.73,0,0,0.54,555.09,3100.06,26149355,99.8,0,0,0.25,554.97,3100.2,26149356,99.87,0,0,0.16,554.94,3100.23,26149357,99.86,0,0,0.14,554.93,3100.24,26149358,99.85,0,0,0.14,555.04,3100.12,26149359,99.64,0,0,0.68,555.18,3099.96,26149360,99.76,0,0,0.28,555.31,3099.85,26149361,99.87,0,0,0.13,555.3,3099.86,26149362,99.88,0,0,0.16,555.28,3099.87,26149363,99.85,0,0,0.14,555.25,3099.9,26149364,99.77,0,0,0.59,555.4,3099.74,26149365,99.85,0,0,0.31,554.99,3100.17,26149366,99.9,0,0,0.16,554.96,3100.2,26149367,99.91,0,0,0.18,554.94,3100.21,26149368,99.92,0,0,0.18,554.91,3100.24,26149369,99.81,0,0,0.57,555.69,3099.45,26149370,99.87,0,0,0.29,555,3100.16,26149371,99.95,0,0,0.16,554.82,3100.33,26149372,99.94,0,0,0.13,554.79,3100.36,26149373,99.91,0,0,0.16,554.77,3100.38,26149374,99.8,0,0,0.39,555.39,3099.75,26149375,99.9,0,0,0.38,554.51,3100.65,26149376,99.93,0,0,0.17,554.46,3100.69,26149377,99.94,0,0,0.14,554.45,3100.7,26149378,99.95,0,0,0.15,554.42,3100.73,26149379,99.79,0,0,0.53,554.94,3100.2,26149380,99.87,0,0,0.3,555.06,3100.1,26149381,99.95,0,0,0.15,555.07,3100.09,26149382,99.94,0,0,0.16,555.03,3100.11,26149383,99.92,0,0,0.14,555.02,3100.13,26149384,99.8,0,0,0.57,555.35,3099.79,26149385,99.87,0,0,0.28,555.23,3099.92,26149386,99.94,0,0,0.16,555.22,3099.93,26149387,99.95,0,0,0.14,555.19,3099.96,26149388,99.94,0,0,0.15,555.18,3099.96,26149389,99.71,0,0,0.46,554.91,3100.21,26149390,99.9,0,0,0.47,555.09,3100.04,26149391,99.92,0,0,0.14,555.08,3100.05,26149392,99.94,0,0,0.16,555.06,3100.06,26149393,99.96,0,0,0.14,555.03,3100.09,26149394,99.95,0,0,0.18,555.02,3100.09,26149395,99.74,0,0,0.68,555.71,3099.42,26149396,99.95,0,0,0.13,555,3100.13,26149397,99.93,0,0,0.19,554.73,3100.4,26149398,99.95,0,0,0.17,554.7,3100.42,26149399,99.95,0,0,0.14,554.68,3100.43,26149400,99.75,0,0,0.64,555.48,3099.65,26149401,99.92,0,0,0.16,555.32,3099.81,26149402,99.95,0,0,0.14,555.34,3099.79,26149403,99.93,0,0,0.15,555.31,3099.81,26149404,99.92,0,0,0.16,555.28,3099.83,26149405,99.74,0,0,0.63,555.59,3099.54,26149406,99.95,0,0,0.14,555.26,3099.86,26149407,99.95,0,0,0.16,555.24,3099.88,26149408,99.92,0,0,0.14,555.22,3099.89,26149409,99.93,0,0,0.15,555.2,3099.91,26149410,99.75,0,0,0.65,555.54,3099.58,26149411,99.95,0,0,0.16,555.18,3099.94,26149412,98.16,0,0,0.15,555.23,3099.88,26149413,99.93,0,0,0.16,555.31,3099.8,26149414,99.93,0,0,0.14,555.29,3099.82,26149415,99.73,0,0,0.59,555.65,3099.48,26149416,99.95,0,0,0.21,555.27,3099.85,26149417,99.92,0,0,0.14,555.25,3099.88,26149418,99.93,0,0,0.15,555.24,3099.89,26149419,99.84,0,0,0.27,554.73,3100.37,26149420,99.75,0,0,0.53,555.55,3099.57,26149421,99.92,0,0,0.3,555.19,3099.92,26149422,99.94,0,0,0.15,555.18,3099.93,26149423,99.92,0,0,0.16,555.22,3099.88,26149424,99.95,0,0,0.16,555.32,3099.8,26149425,99.75,0,0,0.43,556.11,3099.03,26149426,99.93,0,0,0.41,555.29,3099.84,26149427,99.93,0,0,0.14,555.27,3099.86,26149428,99.94,0,0,0.18,555.24,3099.88,26149429,99.95,0,0,0.18,555.23,3099.89,26149430,99.86,0,0,0.27,555.41,3099.73,26149431,99.79,0,0,0.59,555.99,3099.14,26149432,99.95,0,0,0.14,555.67,3099.46,26149433,99.77,0,0,0.14,555.49,3099.63,26149434,99.92,0,0,0.16,555.53,3099.59,26149435,99.88,0,0,0.25,555.62,3099.52,26149436,99.76,0,0,0.58,555.69,3099.44,26149437,99.95,0,0,0.14,555.29,3099.84,26149438,99.95,0,0,0.14,555.27,3099.86,26149439,99.95,0,0,0.15,555.25,3099.87,26149440,99.81,0,0,0.25,555.49,3099.65,26149441,99.78,0,0,0.54,556.15,3098.98,26149442,99.92,0,0,0.14,555.45,3099.67,26149443,99.94,0,0,0.2,555.42,3099.7,26149444,99.95,0,0,0.16,555.41,3099.7,26149445,99.88,0,0,0.3,555.41,3099.72,26149446,99.8,0,0,0.54,555.9,3099.23,26149447,99.95,0,0,0.18,555.55,3099.58,26149448,99.95,0,0,0.18,555.54,3099.58,26149449,99.82,0,0,0.28,555.5,3099.59,26149450,99.88,0,0,0.31,555.51,3099.6,26149451,99.79,0,0,0.57,555.69,3099.42,26149452,99.93,0,0,0.16,555.19,3099.92,26149453,99.93,0,0,0.14,555.17,3099.93,26149454,99.89,0,0,0.16,555.15,3099.96,26149455,99.86,0,0,0.28,555.4,3099.73,26149456,99.78,0,0,0.58,555.91,3099.22,26149457,99.93,0,0,0.2,555.53,3099.59,26149458,99.93,0,0,0.14,555.51,3099.61,26149459,99.94,0,0,0.15,555.48,3099.63,26149460,99.9,0,0,0.24,555.73,3099.4,26149461,99.79,0,0,0.42,556.06,3099.06,26149462,99.95,0,0,0.28,554.96,3100.16,26149463,99.93,0,0,0.16,554.92,3100.19,26149464,99.93,0,0,0.14,554.75,3100.36,26149465,99.89,0,0,0.27,554.28,3100.84,26149466,99.81,0,0,0.34,554.71,3100.41,26149467,99.92,0,0,0.38,554.82,3100.3,26149468,99.9,0,0,0.18,554.8,3100.32,26149469,99.93,0,0,0.15,554.77,3100.34,26149470,99.85,0,0,0.25,554.78,3100.35,26149471,99.81,0,0,0.34,555.1,3100.02,26149472,99.93,0,0,0.41,554.72,3100.4,26149473,99.94,0,0,0.15,554.7,3100.41,26149474,99.94,0,0,0.14,554.68,3100.43,26149475,99.89,0,0.01,0.27,554.7,3100.43,26149476,99.93,0,0.02,0.19,554.78,3100.34,26149477,99.78,0,0,0.56,555.29,3099.82,26149478,99.94,0,0,0.15,554.97,3100.14,26149479,99.84,0,0,0.3,554.71,3100.38,26149480,99.85,0,0,0.29,553.73,3101.37,26149481,99.94,0,0,0.14,553.69,3101.4,26149482,99.79,0,0,0.56,555.06,3100.04,26149483,99.94,0,0,0.15,554.57,3100.52,26149484,99.94,0,0,0.14,554.54,3100.54,26149485,99.88,0,0,0.26,554.54,3100.56,26149486,99.92,0,0,0.15,554.52,3100.58,26149487,99.81,0,0,0.41,555.22,3099.87,26149488,99.92,0,0,0.28,555.2,3099.89,26149489,99.91,0,0,0.14,555.19,3099.89,26149490,99.86,0,0,0.32,554.88,3100.22,26149491,99.91,0,0,0.15,554.41,3100.68,26149492,99.82,0,0,0.57,555.14,3099.94,26149493,97.89,0,0,0.16,555.04,3100.04,26149494,99.94,0,0,0.18,555.03,3100.05,26149495,99.87,0,0,0.33,555.03,3100.06,26149496,99.95,0,0,0.18,555.01,3100.08,26149497,99.81,0,0,0.56,555.42,3099.66,26149498,99.91,0,0,0.18,555.21,3099.87,26149499,99.93,0,0,0.18,555.18,3099.89,26149500,99.82,0,0,0.34,554.93,3100.16,26149501,99.9,0,0,0.18,554.9,3100.19,26149502,99.8,0,0,0.4,555.57,3099.51,26149503,99.9,0,0,0.29,554.81,3100.26,26149504,99.92,0,0,0.17,554.78,3100.29,26149505,99.85,0,0,0.34,555.02,3100.08,26149506,99.95,0,0,0.13,555.01,3100.08,26149507,99.94,0,0,0.15,554.98,3100.12,26149508,99.82,0,0,0.55,555.55,3099.55,26149509,99.89,0,0,0.27,554.95,3100.13,26149510,99.87,0,0,0.3,555.19,3099.9,26149511,99.95,0,0,0.16,555.16,3099.92,26149512,99.9,0,0,0.15,555.15,3099.93,26149513,99.79,0,0,0.61,555.23,3099.85,26149514,99.93,0,0,0.14,555.02,3100.07,26149515,99.87,0,0,0.27,555.28,3099.82,26149516,99.92,0,0,0.16,555.26,3099.84,26149517,99.93,0,0,0.17,555.01,3100.09,26149518,99.78,0,0,0.6,555.33,3099.76,26149519,99.9,0,0,0.15,554.95,3100.14,26149520,99.9,0,0,0.27,554.71,3100.41,26149521,99.91,0,0,0.15,554.68,3100.44,26149522,99.93,0,0,0.13,554.67,3100.45,26149523,99.78,0,0,0.61,555.3,3099.81,26149524,99.93,0,0,0.15,554.95,3100.15,26149525,99.83,0,0,0.27,555.3,3099.83,26149526,99.93,0,0,0.14,555.29,3099.83,26149527,99.95,0,0.02,0.16,555.26,3099.86,26149528,99.8,0,0,0.64,555.67,3099.44,26149529,99.94,0,0,0.15,555.42,3099.68,26149530,99.88,0,0,0.27,555.19,3099.93,26149531,99.95,0,0,0.16,555.16,3099.96,26149532,99.94,0,0,0.15,555.13,3099.98,26149533,99.82,0,0,0.54,555.48,3099.63,26149534,99.94,0,0,0.14,555.06,3100.05,26149535,99.88,0,0,0.27,555.29,3099.83,26149536,99.92,0,0,0.14,555.28,3099.83,26149537,99.93,0,0,0.16,555.24,3099.86,26149538,99.8,0,0,0.54,555.64,3099.46,26149539,99.87,0,0,0.45,554.79,3100.29,26149540,99.85,0,0,0.3,554.53,3100.57,26149541,99.91,0.01,0.43,0.23,554.45,3100.65,26149542,99.94,0,0.07,0.18,554.42,3100.67,26149543,99.78,0,0,0.39,555.28,3099.8,26149544,99.94,0,0,0.28,555.26,3099.83,26149545,99.89,0,0,0.29,555.03,3100.08,26149546,99.9,0,0,0.14,554.99,3100.12,26149547,99.94,0,0,0.27,554.98,3100.12,26149548,99.93,0,0,0.26,554.95,3100.15,26149549,99.82,0,0,0.55,555.9,3099.19,26149550,99.85,0,0,0.3,555.22,3099.88,26149551,99.95,0,0,0.18,554.89,3100.21,26149552,99.93,0,0,0.14,554.87,3100.22,26149553,99.9,0,0,0.15,554.86,3100.22,26149554,99.82,0,0,0.56,555.77,3099.32,26149555,99.89,0,0,0.3,555.27,3099.84,26149556,99.94,0,0,0.14,555.24,3099.86,26149557,99.95,0,0,0.15,555.22,3099.87,26149558,99.95,0,0,0.15,555.2,3099.89,26149559,99.8,0,0,0.55,554.94,3100.14,26149560,99.81,0,0,0.29,555.16,3099.94,26149561,99.93,0,0,0.13,555.15,3099.95,26149562,99.91,0,0,0.17,555.13,3099.96,26149563,99.92,0,0,0.14,555.1,3099.98,26149564,99.8,0,0,0.59,555.53,3099.56,26149565,99.87,0,0,0.28,555.51,3099.59,26149566,99.92,0,0,0.16,555.49,3099.6,26149567,99.96,0,0,0.15,555.47,3099.63,26149568,99.93,0,0,0.16,555.44,3099.64,26149569,99.73,0,0,0.6,555.88,3099.18,26149570,99.9,0,0,0.34,555.17,3099.91,26149571,99.94,0,0,0.16,555.13,3099.94,26149572,99.94,0,0,0.14,555.11,3099.97,26149573,99.93,0,0,0.15,555.09,3099.98,26149574,99.79,0,0,0.52,555.47,3099.62,26149575,99.9,0,0,0.35,555.5,3099.62,26149576,99.95,0,0,0.14,555.48,3099.64,26149577,99.93,0,0,0.21,555.47,3099.64,26149578,99.96,0,0,0.14,555.44,3099.66,26149579,99.83,0,0,0.5,555.72,3099.38,26149580,99.88,0,0,0.33,555.43,3099.69,26149581,99.93,0,0,0.16,555.4,3099.72,26149582,99.96,0,0,0.16,555.38,3099.73,26149583,99.95,0,0,0.16,555.37,3099.73,26149584,97.21,0.04,0.01,63.79,561.78,3094.87,26149585,98.76,0,0,77.59,562.86,3092.53,26149586,99.95,0,0,0.17,557.79,3097.51,26149587,99.95,0,0,0.14,557.76,3097.53,26149588,99.95,0,0,0.14,557.74,3097.54,26149589,99.95,0,0,0.15,557.72,3097.56,26149590,99.64,0,0,0.77,555.71,3099.62,26149591,99.95,0,0,0.18,554.98,3100.35,26149592,99.93,0,0,0.18,554.97,3100.36,26149593,99.88,0,0,0.18,554.94,3100.38,26149594,99.95,0,0,0.2,554.92,3100.4,26149595,99.73,0,0,0.72,556.36,3098.98,26149596,99.95,0,0,0.14,555.64,3099.71,26149597,99.94,0,0,0.13,555.62,3099.72,26149598,99.95,0,0,0.17,555.6,3099.74,26149599,99.83,0,0,0.26,554.87,3100.44,26149600,99.75,0,0,0.67,555.55,3099.78,26149601,99.93,0,0,0.17,555.32,3100.01,26149602,99.94,0,0,0.18,555.4,3099.92,26149603,99.95,0,0,0.14,555.46,3099.86,26149604,99.93,0,0,0.17,555.43,3099.9,26149605,99.74,0,0,0.69,556.13,3099.23,26149606,99.95,0,0,0.14,555.91,3099.44,26149607,99.93,0,0,0.16,555.88,3099.47,26149608,99.89,0,0,0.18,555.87,3099.47,26149609,99.9,0,0,0.18,555.83,3099.5,26149610,99.68,0,0,0.73,556.06,3099.29,26149611,99.92,0,0,0.17,555.32,3100.03,26149612,99.92,0,0,0.14,555.31,3100.03,26149613,99.93,0,0,0.15,555.35,3099.99,26149614,99.95,0,0,0.14,555.45,3099.88,26149615,99.74,0,0,0.53,556.26,3099.09,26149616,99.91,0,0,0.29,555.67,3099.68,26149617,99.94,0,0,0.16,555.65,3099.69,26149618,99.92,0,0,0.14,555.63,3099.71,26149619,99.94,0,0,0.15,555.06,3100.27,26149620,99.72,0,0,0.57,555.31,3100.04,26149621,99.93,0,0,0.28,554.86,3100.49,26149622,99.92,0,0,0.13,554.83,3100.52,26149623,99.94,0,0,0.16,554.8,3100.53,26149624,99.93,0,0,0.14,554.9,3100.44,26149625,99.85,0,0,0.3,554.74,3100.61,26149626,95.14,0,0,31.46,563.78,3088.16,26149627,98.85,0,0,44.23,559.39,3095.5,26149628,99.91,0,0,0.21,557.48,3098.65,26149629,99.83,0,0,0.29,557.21,3098.87,26149630,99.85,0,0,0.29,557.44,3098.66,26149631,99.77,0,0,0.55,557.03,3099.07,26149632,99.91,0,0,0.25,554.53,3103.36,26149633,99.94,0,0,0.14,554.37,3103.65,26149634,99.9,0,0,0.15,554.44,3103.58,26149635,99.86,0,0,0.29,555.03,3103.01,26149636,99.81,0,0,0.55,555.38,3102.66,26149637,99.93,0,0,0.23,554.99,3103.06,26149638,99.93,0,0,0.16,554.98,3103.08,26149639,99.91,0,0,0.16,554.95,3103.1,26149640,99.88,0,0,0.28,554.95,3103.11,26149641,99.79,0,0,0.55,554.99,3103.07,26149642,99.94,0,0,0.17,554.41,3103.65,26149643,99.92,0,0,0.14,554.39,3103.66,26149644,99.93,0,0,0.15,554.36,3103.69,26149645,98.77,0,0,15.42,556.95,3101.58,26149646,99.81,0,0,0.61,554.92,3103.15,26149647,99.95,0,0,0.14,554.26,3103.8,26149648,99.94,0,0,0.13,554.25,3103.82,26149649,99.95,0,0,0.16,554.23,3103.83,26149650,99.9,0,0,0.26,554.96,3103.12,26149651,99.81,0,0,0.43,555.06,3103.01,26149652,99.94,0,0,0.3,553.94,3104.13,26149653,99.94,0,0,0.14,553.94,3104.13,26149654,99.93,0,0,0.15,553.9,3104.16,26149655,99.87,0,0,0.29,554.4,3103.68,26149656,99.75,0,0,0.3,555.06,3103.01,26149657,99.88,0,0,0.39,554.5,3103.57,26149658,99.89,0,0,0.14,554.56,3103.51,26149659,99.83,0,0,0.31,555.27,3102.77,26149660,99.86,0,0,0.3,554.06,3104,26149661,99.92,0,0,0.16,554.01,3104.04,26149662,99.78,0,0,0.58,555.23,3102.82,26149663,99.92,0,0,0.13,554.96,3103.09,26149664,99.91,0.01,0,0.16,554.91,3103.13,26149665,99.89,0,0,0.28,554.91,3103.15,26149666,99.89,0,0,0.15,555.02,3103.04,26149667,99.75,0,0,0.55,555.41,3102.65,26149668,99.93,0,0,0.15,555.02,3103.02,26149669,99.88,0,0,0.15,555.01,3103.04,26149670,99.87,0,0,0.36,555.23,3102.83,26149671,99.91,0,0,0.17,554.98,3103.07,26149672,99.76,0,0,0.53,555.33,3102.73,26149673,99.93,0,0,0.16,554.94,3103.11,26149674,99.92,0,0,0.16,554.93,3103.12,26149675,99.81,0,0,0.31,554.94,3103.12,26149676,99.93,0,0,0.18,554.91,3103.15,26149677,99.78,0.01,0.09,0.62,555.59,3102.47,26149678,99.94,0,0,0.14,554.69,3103.36,26149679,99.95,0,0,0.15,554.67,3103.38,26149680,99.84,0,0,0.29,554.19,3103.87,26149681,99.94,0,0,0.13,554.23,3103.85,26149682,99.78,0,0,0.55,554.85,3103.23,26149683,99.94,0,0,0.15,554.54,3103.53,26149684,99.93,0,0,0.14,554.51,3103.56,26149685,99.87,0,0,0.36,554.74,3103.33,26149686,99.92,0,0,0.15,554.73,3103.35,26149687,99.76,0,0,0.39,554.93,3103.14,26149688,99.93,0,0,0.31,554.19,3103.87,26149689,99.85,0,0,0.3,555.38,3102.66,26149690,99.85,0,0,0.32,555.16,3102.89,26149691,99.92,0,0,0.14,555.12,3102.93,26149692,99.8,0,0,0.47,555.67,3102.38,26149693,99.92,0,0,0.29,555.51,3102.53,26149694,99.92,0,0,0.17,555.48,3102.56,26149695,99.89,0,0,0.29,555.25,3102.82,26149696,99.91,0,0,0.16,555.21,3102.85,26149697,99.81,0,0,0.46,555.78,3102.27,26149698,99.92,0,0,0.28,555.17,3102.88,26149699,99.91,0,0,0.16,555.16,3102.89,26149700,99.88,0,0,0.29,554.91,3103.15,26149701,99.95,0,0,0.16,554.88,3103.18,26149702,99.91,0,0,0.15,554.86,3103.2,26149703,99.8,0,0,0.55,556.13,3101.91,26149704,99.93,0,0,0.16,555.47,3102.58,26149705,99.86,0,0,0.29,555.46,3102.6,26149706,99.93,0,0,0.18,555.45,3102.61,26149707,99.88,0,0,0.14,555.42,3102.64,26149708,99.78,0,0,0.55,555.82,3102.22,26149709,99.95,0,0,0.15,555.13,3102.91,26149710,99.87,0,0,0.3,555.15,3102.91,26149711,99.94,0,0,0.14,555.11,3102.94,26149712,99.9,0,0,0.14,555.23,3102.82,26149713,99.8,0,0,0.56,555.71,3102.34,26149714,98.54,0,0,0.16,555.24,3102.81,26149715,99.82,0,0,0.3,555.24,3102.82,26149716,99.88,0,0,0.18,555.21,3102.84,26149717,99.93,0,0,0.17,555.2,3102.86,26149718,99.78,0,0.01,0.58,555.33,3102.72,26149719,99.83,0,0.01,0.31,555.22,3102.81,26149720,99.84,0,0.02,0.29,554.37,3103.67,26149721,99.92,0,0.01,0.17,554.22,3103.81,26149722,99.93,0,0.01,0.18,554.19,3103.84,26149723,99.77,0,0.01,0.61,554.73,3103.3,26149724,99.91,0,0,0.16,554.75,3103.27,26149725,99.77,0,0.01,0.3,555.2,3102.84,26149726,99.92,0,0.01,0.18,555.14,3102.89,26149727,99.93,0,0,0.13,555.12,3102.91,26149728,99.78,0,0,0.43,555.56,3102.46,26149729,99.94,0,0,0.32,555.01,3103.01,26149730,99.86,0,0,0.29,555.49,3102.55,26149731,99.91,0,0,0.17,555,3103.04,26149732,99.91,0,0,0.14,554.99,3103.06,26149733,99.79,0,0,0.32,555.32,3102.73,26149734,99.91,0,0,0.38,555.19,3102.85,26149735,99.88,0,0,0.29,555.19,3102.87,26149736,99.92,0,0,0.16,555.17,3102.88,26149737,99.94,0,0,0.14,555.15,3102.9,26149738,99.9,0,0,0.15,555.13,3102.91,26149739,99.77,0,0,0.55,556.06,3101.98,26149740,99.82,0,0,0.3,555.56,3102.5,26149741,99.89,0,0,0.16,555.52,3102.53,26149742,99.88,0,0,0.15,555.51,3102.54,26149743,99.92,0,0,0.14,555.48,3102.57,26149744,99.8,0,0,0.56,555.64,3102.4,26149745,99.8,0,0,0.29,555.21,3102.84,26149746,99.89,0,0,0.14,555.18,3102.87,26149747,99.9,0,0,0.17,555.17,3102.88,26149748,99.86,0,0,0.14,555.14,3102.9,26149749,99.71,0,0,0.66,555.85,3102.16,26149750,99.86,0,0,0.36,555.14,3102.9,26149751,99.85,0,0,0.17,555.22,3102.81,26149752,99.85,0,0,0.14,555.28,3102.75,26149753,99.88,0,0,0.16,555.26,3102.76,26149754,99.76,0,0,0.53,555.59,3102.43,26149755,99.73,0,0,0.32,555.48,3102.55,26149756,99.86,0,0,0.15,555.48,3102.55,26149757,99.87,0,0,0.21,555.22,3102.83,26149758,99.86,0,0,0.18,555.19,3102.85,26149759,99.72,0,0,0.45,555.61,3102.43,26149760,99.82,0,0,0.4,555.65,3102.41,26149761,99.85,0,0,0.17,555.64,3102.41,26149762,99.81,0,0,0.14,555.61,3102.44,26149763,99.81,0,0,0.17,555.72,3102.32,26149764,99.75,0,0,0.4,556.1,3101.93,26149765,99.78,0,0,0.46,555.5,3102.54,26149766,99.85,0,0,0.14,555.48,3102.56,26149767,99.84,0,0,0.16,555.46,3102.59,26149768,99.85,0,0,0.14,555.44,3102.59,26149769,99.74,0,0,0.31,555.75,3102.29,26149770,99.72,0,0,0.55,554.48,3103.56,26149771,99.85,0,0,0.16,553.93,3104.11,26149772,99.82,0,0,0.16,553.39,3104.64,26149773,99.85,0,0,0.14,553.45,3104.58,26149774,99.85,0,0,0.14,553.52,3104.5,26149775,99.63,0,0,0.72,555.62,3102.42,26149776,99.83,0,0,0.16,554.96,3103.07,26149777,99.45,0,0,0.2,554.92,3103.1,26149778,99.83,0,0,0.21,554.68,3103.34,26149779,99.74,0,0,0.31,554.88,3103.11,26149780,99.67,0,0,0.7,554.99,3103.02,26149781,99.81,0,0,0.16,554.12,3103.88,26149782,99.81,0,0,0.14,554.09,3103.9,26149783,99.83,0,0,0.17,554.25,3103.76,26149784,99.84,0,0,0.14,554.27,3103.73,26149785,99.66,0,0,0.69,554.49,3103.53,26149786,99.81,0,0,0.18,554.25,3103.76,26149787,99.85,0,0,0.14,554.21,3103.79,26149788,99.82,0,0,0.15,554.19,3103.81,26149789,99.85,0,0,0.14,554.17,3103.82,26149790,99.66,0,0,0.81,554.67,3103.34,26149791,99.8,0,0,0.18,554.64,3103.36,26149792,99.84,0,0,0.14,554.61,3103.39,26149793,99.86,0,0,0.17,554.61,3103.41,26149794,98.4,0,0,0.14,554.71,3103.3,26149795,99.61,0,0,0.56,555.38,3102.66,26149796,99.85,0,0,0.31,554.99,3103.03,26149797,99.86,0,0,0.18,554.99,3103.04,26149798,99.85,0,0,0.14,554.96,3103.06,26149799,99.83,0,0,0.14,554.95,3103.07,26149800,99.78,0,0,0.3,554.93,3103.1,26149801,99.73,0,0,0.52,555.27,3102.75,26149802,99.83,0,0,0.17,554.89,3103.13,26149803,99.85,0,0,0.14,554.88,3103.13,26149804,99.84,0,0,0.14,554.86,3103.16,26149805,99.81,0,0,0.29,555.12,3102.91,26149806,99.69,0,0,0.56,555.37,3102.66,26149807,99.83,0,0,0.14,555.01,3103.01,26149808,99.78,0,0,0.14,554.98,3103.04,26149809,99.7,0,0,0.29,554.99,3103,26149810,99.75,0.01,0.02,0.34,555.19,3102.82,26149811,99.72,0,0.01,0.61,555.32,3102.68,26149812,99.8,0,0,0.14,554.85,3103.14,26149813,99.85,0,0,0.16,554.82,3103.17,26149814,99.86,0,0,0.14,554.91,3103.07,26149815,99.79,0,0,0.28,555.25,3102.75,26149816,99.7,0,0,0.54,555.81,3102.19,26149817,99.87,0,0,0.23,554.94,3103.06,26149818,99.84,0,0,0.14,554.91,3103.08,26149819,99.85,0,0,0.15,554.89,3103.1,26149820,99.81,0,0,0.34,555.18,3102.82,26149821,99.73,0,0,0.56,555.61,3102.39,26149822,99.85,0,0,0.18,554.84,3103.16,26149823,99.84,0,0,0.18,554.81,3103.18,26149824,99.87,0,0,0.14,554.93,3103.05,26149825,99.75,0,0,0.32,554.26,3103.74,26149826,99.7,0,0,0.49,554.73,3103.27,26149827,99.85,0,0,0.23,554.65,3103.34,26149828,99.85,0,0,0.15,554.62,3103.37,26149829,99.86,0,0,0.14,554.58,3103.4,26149830,99.77,0,0,0.27,555.05,3102.95,26149831,99.84,0,0,0.16,555.2,3102.79,26149832,99.72,0,0,0.57,555.55,3102.44,26149833,99.85,0,0,0.15,555.17,3102.82,26149834,99.86,0,0,0.15,555.13,3102.85,26149835,98.49,0,0.02,0.28,555.13,3102.87,26149836,99.83,0,0,0.18,555.08,3102.91,26149837,99.72,0,0,0.54,553.84,3104.15,26149838,99.85,0,0,0.15,553.08,3104.91,26149839,99.78,0,0,0.3,555.15,3102.81,26149840,99.8,0,0,0.28,555.23,3102.75,26149841,99.84,0,0,0.14,555.2,3102.78,26149842,99.72,0,0,0.55,555.38,3102.6,26149843,99.85,0,0,0.19,554.91,3103.06,26149844,99.86,0,0,0.16,554.88,3103.08,26149845,99.81,0,0,0.35,555.12,3102.86,26149846,99.85,0,0,0.13,555.1,3102.87,26149847,99.7,0,0,0.56,555.11,3102.86,26149848,99.86,0,0,0.17,554.56,3103.4,26149849,99.85,0,0,0.14,554.54,3103.41,26149850,99.81,0,0,0.3,555.21,3102.75,26149851,99.83,0.01,0.29,0.37,554.97,3102.99,26149852,99.7,0.01,1.33,0.52,555.64,3102.3,26149853,99.84,0,0.08,0.36,555.66,3102.27,26149854,99.83,0,0,0.21,555.61,3102.32,26149855,98.46,0,0,0.32,555.61,3102.33,26149856,99.83,0,0,0.17,555.59,3102.35,26149857,99.7,0,0,0.58,556.28,3101.65,26149858,99.85,0,0,0.14,555.55,3102.38,26149859,99.86,0,0,0.14,555.53,3102.39,26149860,99.75,0,0,0.28,555.55,3102.39,26149861,99.85,0,0,0.14,555.63,3102.31,26149862,99.71,0,0,0.41,556.07,3101.86,26149863,99.83,0,0,0.29,555.91,3102.02,26149864,99.86,0,0,0.14,555.88,3102.05,26149865,99.78,0,0,0.32,555.64,3102.3,26149866,99.85,0,0,0.14,555.6,3102.33,26149867,99.84,0,0,0.14,555.59,3102.35,26149868,99.7,0,0,0.55,555.92,3102,26149869,99.8,0,0,0.3,555.59,3102.33,26149870,99.8,0,0,0.29,555.84,3102.1,26149871,99.85,0,0,0.15,555.94,3102,26149872,99.85,0,0,0.15,555.92,3102.02,26149873,99.7,0,0,0.57,555.28,3102.64,26149874,99.85,0,0,0.15,554.89,3103.06,26149875,99.77,0,0,0.29,555.59,3102.38,26149876,99.84,0,0,0.15,555.58,3102.39,26149877,99.84,0,0,0.2,555.55,3102.41,26149878,99.73,0,0,0.61,555.67,3102.29,26149879,99.84,0,0,0.15,555.3,3102.66,26149880,99.79,0,0.01,0.3,555.92,3102.05,26149881,99.86,0,0,0.18,555.9,3102.07,26149882,99.82,0,0,0.14,555.87,3102.09,26149883,99.71,0,0,0.57,556.2,3101.76,26149884,99.87,0,0,0.17,555.82,3102.13,26149885,99.75,0,0,0.29,555.1,3102.86,26149886,99.84,0,0,0.14,555.05,3102.91,26149887,99.87,0,0,0.16,555.03,3102.93,26149888,99.73,0,0,0.58,555.61,3102.35,26149889,99.86,0,0,0.14,554.68,3103.27,26149890,99.8,0,0,0.29,556.15,3101.83,26149891,99.87,0,0,0.14,556.14,3101.83,26149892,99.84,0,0,0.16,556.12,3101.84,26149893,99.72,0,0,0.58,556.5,3101.46,26149894,99.85,0,0,0.15,556.08,3101.88,26149895,99.8,0,0,0.29,555.81,3102.16,26149896,99.55,0,0,0.14,555.8,3102.17,26149897,99.84,0,0,0.16,555.77,3102.19,26149898,99.72,0,0,0.41,556.01,3101.95,26149899,99.73,0,0,0.57,555.63,3102.3,26149900,99.79,0,0,0.29,556.11,3101.83,26149901,99.83,0,0,0.17,556.09,3101.85,26149902,99.85,0,0,0.17,556.05,3101.88,26149903,99.85,0,0,0.14,556.02,3101.91,26149904,99.71,0,0,0.54,556.11,3101.81,26149905,99.76,0,0,0.3,555.53,3102.41,26149906,99.85,0,0,0.14,555.68,3102.25,26149907,99.87,0,0,0.15,555.65,3102.28,26149908,99.86,0,0,0.15,555.64,3102.29,26149909,99.71,0,0,0.54,556.19,3101.73,26149910,99.77,0,0,0.31,555.13,3102.8,26149911,99.8,0,0.01,0.2,556.03,3101.91,26149912,99.87,0.01,0.24,0.2,556.08,3101.85,26149913,99.84,0,0,0.16,556.07,3101.86,26149914,99.69,0,0,0.55,556.2,3101.72,26149915,99.78,0,0,0.34,556.02,3101.92,26149916,99.88,0,0,0.14,555.99,3101.94,26149917,99.87,0,0,0.16,556.12,3101.8,26149918,99.83,0,0,0.16,556.11,3101.81,26149919,99.71,0,0,0.59,556.49,3101.42,26149920,99.8,0,0,0.29,556.1,3101.84,26149921,99.92,0.03,0.81,0.29,556.08,3101.87,26149922,99.91,0,0.01,0.18,556.08,3101.86,26149923,99.89,0,0,0.16,556.05,3101.89,26149924,99.78,0,0,0.55,556.56,3101.37,26149925,99.81,0,0,0.29,556,3101.94,26149926,99.93,0,0,0.15,555.49,3102.45,26149927,99.95,0,0,0.16,554.91,3103.03,26149928,99.93,0,0.01,0.18,554.86,3103.07,26149929,99.71,0,0,0.64,555.54,3102.37,26149930,99.88,0,0,0.32,554.36,3103.57,26149931,99.95,0,0,0.14,554.3,3103.62,26149932,99.93,0,0,0.16,554.27,3103.65,26149933,99.92,0,0,0.14,554.36,3103.56,26149934,99.8,0,0,0.54,555.02,3102.91,26149935,99.87,0,0,0.35,555.38,3102.57,26149936,99.93,0,0,0.13,555.36,3102.58,26149937,99.93,0,0,0.21,555.09,3102.85,26149938,99.93,0,0,0.18,555.06,3102.88,26149939,99.82,0,0,0.43,555.35,3102.58,26149940,99.89,0,0,0.48,555.51,3102.43,26149941,99.92,0,0,0.13,555.5,3102.44,26149942,99.93,0,0,0.19,555.48,3102.45,26149943,99.95,0,0,0.14,555.62,3102.31,26149944,99.94,0,0,0.14,555.66,3102.26,26149945,94.81,0.29,0.01,257.89,568.49,3089.69,26149946,99.92,0,0,0.14,557.76,3100.1,26149947,99.91,0,0,0.18,557.73,3100.12,26149948,99.93,0,0,0.2,557.72,3100.13,26149949,99.96,0,0,0.18,557.69,3100.15,26149950,99.77,0,0,0.76,556.82,3101.09,26149951,99.93,0,0,0.14,555.52,3102.39,26149952,99.97,0,0,0.16,555.5,3102.41,26149953,99.93,0,0,0.15,555.61,3102.3,26149954,99.95,0,0,0.16,555.64,3102.26,26149955,99.77,0,0,0.69,556.19,3101.74,26149956,99.93,0,0,0.14,555.62,3102.31,26149957,99.93,0,0,0.15,555.6,3102.33,26149958,99.93,0,0,0.16,555.57,3102.35,26149959,99.87,0,0,0.3,554.83,3103.07,26149960,99.78,0,0,0.64,555.68,3102.24,26149961,99.95,0,0,0.21,555.04,3102.87,26149962,99.93,0,0,0.14,555.02,3102.89,26149963,99.89,0,0,0.15,555,3102.9,26149964,99.93,0,0,0.14,554.97,3102.97,26149965,99.74,0,0,0.64,555.41,3102.54,26149966,99.94,0,0,0.21,555.63,3102.32,26149967,99.92,0,0,0.16,555.6,3102.35,26149968,99.94,0,0,0.15,555.58,3102.36,26149969,99.94,0,0,0.15,555.55,3102.39,26149970,99.77,0,0,0.59,555.54,3102.42,26149971,99.92,0,0,0.29,554.57,3103.38,26149972,99.95,0,0,0.14,554.53,3103.42,26149973,99.94,0,0,0.16,554.51,3103.43,26149974,99.93,0,0,0.15,554.48,3103.46,26149975,99.75,0,0,0.55,555.34,3102.61,26149976,99.88,0,0,0.33,555.63,3102.32,26149977,99.95,0,0,0.16,555.62,3102.33,26149978,99.93,0,0,0.16,555.59,3102.36,26149979,99.95,0,0,0.17,555.56,3102.38,26149980,99.76,0,0,0.34,555.56,3102.39,26149981,99.78,0,0,0.59,556.4,3101.54,26149982,99.93,0,0,0.14,555.76,3102.19,26149983,99.95,0,0,0.14,555.74,3102.2,26149984,99.94,0,0,0.16,555.71,3102.23,26149985,99.88,0,0,0.29,555.24,3102.71,26149986,99.82,0,0,0.54,556.07,3101.88,26149987,99.92,0,0,0.17,555.62,3102.32,26149988,99.94,0,0,0.14,555.59,3102.35,26149989,99.88,0,0,0.31,555.82,3102.09,26149990,99.89,0,0,0.33,555.57,3102.36,26149991,99.78,0,0,0.57,555.91,3102.02,26149992,99.93,0,0,0.19,555.51,3102.41,26149993,99.94,0,0,0.2,555.49,3102.43,26149994,99.91,0,0,0.16,555.47,3102.46,26149995,99.9,0,0,0.31,555.47,3102.48,26149996,99.8,0,0,0.49,556.04,3101.91,26149997,99.93,0,0,0.29,555.9,3102.05,26149998,99.92,0,0,0.18,555.88,3102.07,26149999,99.92,0,0,0.2,555.86,3102.08,26150000,99.88,0,0,0.36,555.62,3102.33,26150001,99.81,0,0,0.4,555.95,3102,26150002,99.94,0,0,0.31,555.57,3102.38,26150003,99.95,0,0,0.14,555.56,3102.39,26150004,99.94,0,0,0.14,555.53,3102.41,26150005,99.9,0,0,0.32,555.54,3102.41,26150006,99.82,0,0,0.42,555.8,3102.15,26150007,99.92,0,0,0.31,555.36,3102.59,26150008,99.95,0,0,0.14,555.4,3102.54,26150009,99.94,0,0,0.19,555.38,3102.56,26150010,99.87,0,0,0.32,555.62,3102.34,26150011,99.79,0,0,0.4,556.09,3101.87,26150012,99.92,0,0.01,0.36,555.3,3102.65,26150013,99.9,0,0,0.15,555.27,3102.68,26150014,99.93,0,0,0.15,555.24,3102.7,26150015,99.89,0,0,0.28,555.74,3102.21,26150016,99.91,0,0,0.19,555.85,3102.1,26150017,99.78,0,0,0.53,556.45,3101.5,26150018,99.92,0,0,0.16,556.11,3101.83,26150019,99.85,0,0,0.43,555.84,3102.07,26150020,99.88,0,0,0.33,556.09,3101.85,26150021,99.95,0,0,0.13,556.06,3101.87,26150022,99.81,0,0,0.6,556.22,3101.7,26150023,99.93,0,0,0.18,555.77,3102.15,26150024,99.95,0,0,0.16,555.57,3102.36,26150025,99.88,0,0,0.48,555.96,3101.98,26150026,99.95,0,0,0.16,555.94,3102.01,26150027,99.78,0,0,0.52,556.06,3101.88,26150028,99.93,0,0,0.17,555.59,3102.34,26150029,99.91,0,0,0.14,555.56,3102.37,26150030,99.84,0,0,0.28,554.67,3103.28,26150031,99.93,0,0,0.19,554.33,3103.61,26150032,99.8,0,0,0.54,555.29,3102.65,26150033,99.94,0,0,0.15,555.49,3102.45,26150034,99.94,0,0,0.15,555.46,3102.47,26150035,99.89,0,0,0.3,555.94,3102,26150036,99.94,0,0,0.16,555.93,3102.01,26150037,99.81,0,0,0.55,556.33,3101.61,26150038,99.94,0,0,0.15,555.83,3102.11,26150039,99.95,0,0,0.14,555.8,3102.13,26150040,99.86,0,0,0.29,554.86,3103.09,26150041,99.93,0,0,0.15,554.8,3103.14,26150042,99.8,0,0,0.55,555.74,3102.2,26150043,99.94,0,0,0.19,555.99,3101.94,26150044,99.95,0,0,0.15,555.97,3101.96,26150045,99.88,0,0,0.3,554.79,3103.16,26150046,99.94,0,0,0.14,554.73,3103.22,26150047,99.77,0,0,0.36,555.39,3102.55,26150048,99.93,0,0,0.38,555.45,3102.49,26150049,99.87,0,0,0.28,556.06,3101.85,26150050,99.88,0,0,0.29,556.08,3101.85,26150051,99.94,0,0,0.15,556.05,3101.87,26150052,99.93,0,0,0.14,556.03,3101.89,26150053,99.77,0,0,0.59,556.54,3101.38,26150054,99.93,0,0,0.14,555.98,3101.93,26150055,99.88,0,0,0.29,555.27,3102.66,26150056,99.94,0,0,0.16,555.22,3102.7,26150057,99.93,0,0,0.2,555.21,3102.71,26150058,99.8,0,0,0.54,556.21,3101.71,26150059,99.93,0,0,0.16,556.28,3101.63,26150060,99.88,0,0,0.28,556.08,3101.84,26150061,99.94,0,0,0.16,556.05,3101.88,26150062,99.93,0,0,0.16,556.02,3101.89,26150063,99.78,0,0,0.54,556.35,3101.56,26150064,99.93,0,0,0.14,555.98,3101.93,26150065,99.9,0,0,0.3,555.75,3102.18,26150066,99.92,0,0,0.14,555.71,3102.21,26150067,99.95,0,0,0.14,555.7,3102.22,26150068,99.83,0,0,0.5,556.02,3101.89,26150069,99.92,0,0,0.2,555.66,3102.25,26150070,99.85,0,0,0.31,555.84,3102.08,26150071,99.95,0,0,0.18,555.85,3102.06,26150072,99.92,0,0,0.16,555.83,3102.09,26150073,99.8,0,0,0.4,556.07,3101.84,26150074,99.96,0,0,0.3,555.53,3102.37,26150075,99.88,0,0,0.3,555.78,3102.14,26150076,99.94,0,0,0.16,555.76,3102.16,26150077,99.53,0,0,0.16,555.73,3102.18,26150078,99.05,0,0,0.4,556.52,3101.39,26150079,99.86,0,0,0.43,556.2,3101.69,26150080,99.9,0,0,0.3,555.64,3102.26,26150081,99.95,0,0,0.14,555.07,3102.83,26150082,99.96,0,0,0.16,555.1,3102.8,26150083,99.83,0,0,0.34,555.66,3102.23,26150084,99.91,0,0,0.4,555.57,3102.34,26150085,99.84,0,0,0.3,555.37,3102.57,26150086,99.93,0,0,0.14,555.29,3102.64,26150087,99.92,0,0,0.16,555.25,3102.68,26150088,99.91,0,0,0.14,555.23,3102.7,26150089,99.78,0,0,0.58,555.65,3102.27,26150090,99.85,0,0,0.28,554.26,3103.68,26150091,99.93,0,0,0.18,554.05,3103.89,26150092,99.94,0,0,0.17,554.13,3103.8,26150093,99.95,0,0,0.18,554.1,3103.83,26150094,99.81,0,0,0.57,555.09,3102.83,26150095,99.87,0,0,0.32,554.82,3103.12,26150096,99.92,0,0,0.16,554.78,3103.16,26150097,99.93,0,0,0.16,554.75,3103.18,26150098,99.92,0,0,0.18,554.74,3103.19,26150099,99.75,0,0,0.59,555.57,3102.35,26150100,99.85,0,0,0.29,555.44,3102.49,26150101,99.94,0,0,0.14,555.52,3102.41,26150102,99.93,0,0,0.16,555.58,3102.35,26150103,99.93,0,0,0.15,555.55,3102.37,26150104,99.79,0,0,0.59,555.75,3102.16,26150105,99.91,0,0,0.34,555.52,3102.41,26150106,99.95,0,0,0.16,555.51,3102.42,26150107,99.94,0,0,0.14,555.47,3102.45,26150108,99.92,0,0,0.16,555.46,3102.46,26150109,99.76,0,0,0.69,555.79,3102.11,26150110,99.87,0,0,0.33,555.18,3102.73,26150111,99.93,0,0,0.17,555.3,3102.6,26150112,99.91,0,0.01,0.2,555.29,3102.61,26150113,99.9,0,0,0.16,555.25,3102.65,26150114,99.81,0,0,0.53,555.92,3101.99,26150115,99.88,0,0,0.36,555.48,3102.45,26150116,99.95,0,0,0.14,555.45,3102.47,26150117,99.94,0,0,0.2,555.44,3102.48,26150118,99.93,0,0,0.16,555.42,3102.5,26150119,99.88,0,0,0.18,555.59,3102.32,26150120,99.83,0,0,0.64,555.93,3102.02,26150121,99.95,0,0,0.14,555.57,3102.37,26150122,99.93,0,0,0.16,555.55,3102.39,26150123,99.95,0,0,0.14,555.53,3102.4,26150124,99.93,0,0,0.15,555.5,3102.43,26150125,99.75,0,0,0.68,555.66,3102.29,26150126,99.94,0,0,0.14,555.23,3102.71,26150127,99.91,0,0,0.18,555.22,3102.72,26150128,99.95,0,0,0.16,555.19,3102.74,26150129,99.93,0,0,0.15,555.18,3102.75,26150130,99.73,0,0,0.68,554.74,3103.21,26150131,99.92,0,0,0.16,554.29,3103.65,26150132,99.94,0,0,0.15,554.34,3103.6,26150133,99.92,0,0,0.15,554.31,3103.62,26150134,99.94,0,0,0.14,554.3,3103.63,26150135,99.73,0,0,0.69,555.95,3102,26150136,99.94,0,0,0.13,555.51,3102.43,26150137,99.91,0,0,0.16,555.48,3102.46,26150138,99.94,0,0,0.14,555.47,3102.46,26150139,99.9,0,0,0.29,555.19,3102.73,26150140,99.73,0,0,0.73,555.93,3102,26150141,99.93,0,0,0.14,554.67,3103.26,26150142,99.91,0.01,0.01,0.15,554.82,3103.1,26150143,99.93,0,0,0.17,554.78,3103.13,26150144,99.93,0,0,0.15,554.75,3103.16,26150145,99.69,0,0,0.57,555.1,3102.83,26150146,99.94,0,0,0.26,555.22,3102.7,26150147,99.93,0,0,0.16,555.19,3102.73,26150148,99.92,0,0,0.15,555.18,3102.73,26150149,99.92,0,0,0.15,555.29,3102.62,26150150,99.69,0,0,0.63,554.84,3103.08,26150151,99.9,0,0,0.24,554.87,3103.06,26150152,99.93,0,0,0.14,554.79,3103.12,26150153,99.93,0,0,0.16,554.78,3103.13,26150154,99.93,0,0,0.14,554.75,3103.16,26150155,99.75,0,0,0.61,555.88,3102.04,26150156,99.93,0,0,0.28,555.71,3102.2,26150157,99.94,0,0,0.16,555.7,3102.21,26150158,99.93,0,0,0.14,555.67,3102.24,26150159,99.91,0,0,0.14,555.65,3102.25,26150160,99.9,0,0,0.3,555.52,3102.4,26150161,99.78,0,0,0.55,556.17,3101.74,26150162,99.93,0,0,0.14,555.8,3102.12,26150163,99.92,0,0,0.15,555.77,3102.14,26150164,99.94,0,0,0.14,555.76,3102.15,26150165,99.9,0,0,0.3,555.5,3102.41,26150166,99.82,0,0,0.57,556.37,3101.55,26150167,99.94,0,0,0.15,555.7,3102.21,26150168,99.92,0,0,0.18,555.68,3102.23,26150169,99.89,0,0,0.32,555.42,3102.46,26150170,99.88,0,0,0.34,555.96,3101.94,26150171,99.78,0,0,0.53,556.26,3101.63,26150172,99.91,0,0,0.17,555.77,3102.11,26150173,99.93,0,0,0.14,555.76,3102.13,26150174,99.92,0,0,0.14,555.73,3102.17,26150175,99.89,0,0,0.3,555.73,3102.18,26150176,99.8,0,0,0.54,556.06,3101.85,26150177,99.93,0,0,0.26,555.69,3102.22,26150178,99.94,0,0,0.15,555.67,3102.23,26150179,99.91,0,0,0.15,555.64,3102.25,26150180,99.87,0,0,0.29,555.97,3101.94,26150181,99.77,0,0,0.49,556.35,3101.56,26150182,99.95,0,0,0.21,555.61,3102.31,26150183,99.93,0,0,0.14,555.52,3102.4,26150184,99.91,0,0,0.16,555.51,3102.4,26150185,99.9,0,0,0.31,555.75,3102.18,26150186,99.8,0,0,0.39,556.02,3101.91,26150187,99.93,0,0,0.28,555.21,3102.71,26150188,99.95,0,0,0.16,555.19,3102.73,26150189,99.93,0,0,0.14,555.17,3102.74,26150190,99.88,0,0,0.3,555.89,3102.04,26150191,99.75,0,0,0.42,556.35,3101.57,26150192,99.89,0,0,0.29,556.04,3101.88,26150193,99.96,0,0,0.15,556.02,3101.9,26150194,99.92,0,0,0.16,556,3101.91,26150195,99.83,0,0,0.32,554.81,3103.12,26150196,99.9,0,0,0.13,554.76,3103.17,26150197,99.8,0,0,0.57,556.38,3101.54,26150198,99.94,0,0,0.14,555.7,3102.22,26150199,99.88,0,0,0.29,555.7,3102.19,26150200,99.86,0,0,0.34,555.92,3101.99,26150201,99.93,0,0,0.14,555.89,3102.02,26150202,99.81,0,0,0.53,556.62,3101.27,26150203,99.94,0,0,0.16,556.06,3101.83,26150204,99.95,0,0,0.14,556.04,3101.85,26150205,99.78,0,0,0.3,555.09,3102.81,26150206,99.94,0,0,0.17,555.03,3102.87,26150207,99.78,0,0,0.54,556.2,3101.7,26150208,99.93,0,0,0.16,555.97,3101.93,26150209,99.95,0,0,0.15,555.95,3101.94,26150210,99.89,0,0,0.31,556.19,3101.71,26150211,99.92,0,0,0.34,555.98,3101.93,26150212,99.76,0,0,0.43,556.5,3101.4,26150213,99.93,0,0,0.29,556.24,3101.65,26150214,99.94,0,0,0.16,556.3,3101.59,26150215,99.89,0,0,0.34,556.06,3101.85,26150216,99.93,0,0,0.18,556.04,3101.86,26150217,99.8,0,0,0.42,556.36,3101.54,26150218,99.94,0,0,0.34,555.98,3101.92,26150219,99.92,0,0,0.2,555.96,3101.93,26150220,99.89,0,0,0.34,555.95,3101.95,26150221,99.89,0.02,0.09,0.32,555.93,3101.97,26150222,99.76,0,0,0.43,556.27,3101.61,26150223,99.9,0,0.01,0.3,555.94,3101.93,26150224,99.93,0,0,0.19,556.03,3101.84,26150225,99.88,0,0,0.34,556.03,3101.86,26150226,99.93,0,0,0.17,556.02,3101.87,26150227,99.79,0,0,0.64,556.34,3101.54,26150228,99.93,0,0,0.32,555.97,3101.9,26150229,99.88,0,0,0.31,555.94,3101.91,26150230,99.89,0,0,0.34,555.94,3101.92,26150231,99.91,0,0,0.18,555.92,3101.94,26150232,99.95,0,0,0.16,555.89,3101.96,26150233,99.78,0,0,0.68,556.46,3101.39,26150234,99.94,0,0,0.17,556.13,3101.73,26150235,99.89,0,0,0.35,555.51,3102.38,26150236,99.95,0,0,0.19,555.29,3102.59,26150237,99.94,0,0,0.23,555.26,3102.62,26150238,99.8,0,0,0.59,555.6,3102.27,26150239,99.91,0,0,0.16,555.21,3102.66,26150240,99.87,0,0,0.38,554.98,3102.9,26150241,99.95,0,0,0.21,554.94,3102.94,26150242,99.93,0,0,0.2,554.91,3102.96,26150243,99.82,0,0,0.63,555.77,3102.11,26150244,99.91,0,0,0.18,555.11,3102.76,26150245,99.87,0,0,0.39,555.53,3102.35,26150246,99.95,0,0,0.21,555.52,3102.36,26150247,99.93,0.02,0.02,0.3,555.47,3102.39,26150248,99.81,0,0,0.62,555.83,3102.02,26150249,99.93,0,0,0.2,555.36,3102.48,26150250,99.87,0,0,0.36,555.62,3102.24,26150251,99.93,0,0,0.18,555.61,3102.24,26150252,99.95,0,0,0.18,555.67,3102.18,26150253,99.81,0,0,0.57,555.99,3101.86,26150254,99.9,0,0,0.18,555.48,3102.36,26150255,99.89,0,0,0.36,555.48,3102.38,26150256,99.95,0,0,0.18,555.46,3102.39,26150257,99.91,0,0,0.18,555.43,3102.42,26150258,99.75,0,0,0.59,555.77,3102.07,26150259,99.9,0,0.03,0.32,555.12,3102.69,26150260,99.88,0,0,0.34,555.12,3102.71,26150261,99.92,0,0,0.14,555.1,3102.73,26150262,99.93,0,0,0.14,555.13,3102.69,26150263,99.8,0,0,0.5,555.98,3101.84,26150264,99.94,0,0,0.19,555.49,3102.32,26150265,99.89,0,0,0.36,555,3102.83,26150266,99.93,0,0,0.18,554.99,3102.86,26150267,99.94,0,0,0.18,554.96,3102.89,26150268,99.93,0,0,0.18,554.94,3102.89,26150269,99.81,0,0,0.55,555.78,3102.06,26150270,99.88,0,0,0.35,554.94,3102.91,26150271,99.91,0,0,0.21,554.52,3103.32,26150272,99.93,0,0,0.18,554.38,3103.45,26150273,99.91,0,0,0.18,554.36,3103.47,26150274,99.8,0,0,0.59,555.97,3101.85,26150275,99.89,0,0,0.33,555.75,3102.09,26150276,99.93,0,0,0.14,555.72,3102.12,26150277,99.94,0,0,0.17,555.7,3102.13,26150278,99.95,0,0,0.14,555.68,3102.15,26150279,99.78,0,0,0.54,556.01,3101.81,26150280,99.71,0,0,0.36,555.67,3102.17,26150281,99.91,0,0,0.14,555.64,3102.19,26150282,99.93,0,0,0.13,555.62,3102.21,26150283,99.92,0,0,0.16,555.59,3102.24,26150284,99.79,0,0,0.41,555.92,3101.9,26150285,99.83,0,0,0.45,555.74,3102.09,26150286,99.93,0,0,0.17,555.73,3102.1,26150287,99.89,0,0,0.14,555.71,3102.12,26150288,99.92,0,0,0.16,555.68,3102.14,26150289,99.75,0,0,0.7,555.92,3101.88,26150290,99.75,0,0,0.31,555.18,3102.64,26150291,99.87,0,0,0.15,555.14,3102.67,26150292,99.87,0,0,0.16,555.13,3102.68,26150293,99.85,0,0,0.16,555.1,3102.71,26150294,99.74,0,0,0.57,555.91,3101.89,26150295,99.85,0,0,0.38,554.84,3102.98,26150296,99.91,0,0,0.12,554.76,3103.06,26150297,99.87,0,0,0.19,554.73,3103.08,26150298,99.9,0,0,0.16,554.71,3103.1,26150299,99.75,0,0,0.4,555.3,3102.5,26150300,99.83,0,0,0.44,555.45,3102.37,26150301,99.9,0,0,0.15,555.41,3102.4,26150302,99.85,0,0,0.12,555.39,3102.42,26150303,99.92,0,0,0.16,555.37,3102.44,26150304,99.95,0,0,0.15,555.34,3102.47,26150305,99.7,0,0,0.7,556.33,3101.49,26150306,99.89,0,0,0.16,555.99,3101.83,26150307,99.9,0,0,0.13,555.96,3101.85,26150308,99.89,0,0,0.14,555.94,3101.87,26150309,99.88,0,0,0.15,555.92,3101.88,26150310,96.1,0.04,0.01,141.29,568,3091.7,26150311,99.85,0,0,0.18,557.35,3100.38,26150312,99.87,0,0,0.14,557.32,3100.41,26150313,99.87,0,0,0.15,557.3,3100.42,26150314,99.88,0,0,0.16,557.28,3100.44,26150315,99.66,0,0,0.76,557.08,3100.67,26150316,99.88,0,0,0.19,555.83,3101.94,26150317,99.89,0,0,0.16,555.8,3101.96,26150318,99.85,0,0,0.14,555.78,3101.98,26150319,99.8,0,0,0.34,555.83,3101.89,26150320,99.72,0,0,0.71,556.29,3101.45,26150321,99.86,0,0,0.2,555.92,3101.82,26150322,99.8,0,0,0.16,555.89,3101.84,26150323,99.86,0,0,0.15,555.88,3101.85,26150324,99.86,0,0,0.17,555.86,3101.87,26150325,99.67,0,0,0.8,556.17,3101.56,26150326,99.86,0,0,0.14,555.83,3101.9,26150327,99.86,0,0,0.17,555.8,3101.93,26150328,99.85,0,0,0.16,555.78,3101.94,26150329,99.87,0,0,0.18,555.76,3101.96,26150330,99.69,0,0,0.79,556.07,3101.67,26150331,99.82,0,0,0.2,555.51,3102.23,26150332,99.85,0,0,0.14,555.43,3102.3,26150333,99.87,0,0,0.14,555.42,3102.31,26150334,99.85,0,0,0.17,555.39,3102.33,26150335,99.68,0,0,0.54,556.23,3101.51,26150336,99.86,0,0,0.37,555.86,3101.87,26150337,99.82,0.02,0.61,0.22,555.81,3101.91,26150338,99.87,0,0,0.15,555.78,3101.94,26150339,99.86,0,0,0.15,555.86,3101.85,26150340,99.62,0,0,0.48,556.3,3101.44,26150341,99.88,0,0,0.38,555.68,3102.05,26150342,99.84,0,0,0.16,555.66,3102.06,26150343,99.85,0,0,0.17,555.64,3102.08,26150344,99.85,0,0,0.15,555.63,3102.11,26150345,99.83,0,0,0.31,555.39,3102.37,26150346,99.7,0,0,0.54,555.73,3102.03,26150347,99.86,0,0,0.16,555.34,3102.41,26150348,99.85,0,0,0.14,555.33,3102.42,26150349,99.8,0,0,0.29,555.81,3101.91,26150350,99.75,0,0,0.32,556.08,3101.65,26150351,99.72,0,0,0.57,556.3,3101.43,26150352,99.84,0,0,0.16,555.93,3101.8,26150353,99.83,0,0,0.15,555.9,3101.82,26150354,99.84,0,0,0.16,555.89,3101.84,26150355,99.78,0,0,0.32,555.89,3101.86,26150356,99.71,0,0,0.53,556.23,3101.52,26150357,99.83,0,0,0.2,555.85,3101.89,26150358,99.88,0,0,0.14,555.83,3101.91,26150359,99.86,0,0,0.14,555.81,3101.93,26150360,99.81,0,0,0.3,555.82,3101.96,26150361,99.72,0.01,0,0.6,556.34,3101.43,26150362,99.85,0,0,0.15,555.68,3102.08,26150363,99.84,0,0,0.15,555.67,3102.09,26150364,99.86,0,0,0.15,555.64,3102.12,26150365,99.8,0,0,0.33,555.89,3101.88,26150366,99.72,0,0,0.55,556.26,3101.51,26150367,99.85,0,0,0.2,556.08,3101.69,26150368,99.87,0,0,0.18,556.05,3101.71,26150369,99.85,0,0,0.18,556.03,3101.73,26150370,99.8,0,0,0.38,555.78,3101.98,26150371,99.72,0,0,0.34,556.26,3101.5,26150372,99.86,0,0,0.39,556.16,3101.6,26150373,99.87,0,0,0.14,556.15,3101.6,26150374,99.85,0,0,0.17,556.12,3101.63,26150375,99.82,0,0,0.32,555.89,3101.88,26150376,99.71,0,0,0.35,556.21,3101.55,26150377,99.86,0,0,0.43,555.84,3101.92,26150378,99.81,0,0,0.14,555.81,3101.94,26150379,99.79,0,0,0.29,555.8,3101.93,26150380,99.82,0,0,0.33,556.28,3101.47,26150381,99.84,0,0,0.15,556.26,3101.48,26150382,99.7,0,0,0.55,556.52,3101.21,26150383,99.86,0,0,0.14,555.91,3101.82,26150384,99.87,0,0,0.16,555.9,3101.86,26150385,99.82,0,0,0.32,556.14,3101.64,26150386,99.85,0,0,0.17,556.13,3101.65,26150387,99.72,0,0,0.56,556.03,3101.74,26150388,99.84,0,0,0.16,555.34,3102.43,26150389,99.83,0,0,0.15,555.31,3102.45,26150390,99.81,0,0,0.33,555.08,3102.7,26150391,99.85,0,0,0.17,554.88,3102.89,26150392,99.7,0,0,0.54,555.26,3102.51,26150393,99.86,0,0,0.15,555.14,3102.62,26150394,99.85,0,0,0.14,555.19,3102.57,26150395,99.79,0,0,0.33,555.68,3102.1,26150396,99.85,0,0,0.15,555.67,3102.11,26150397,99.66,0,0,0.54,555.91,3101.86,26150398,99.86,0,0,0.15,555.38,3102.39,26150399,99.85,0,0,0.14,555.35,3102.41,26150400,99.77,0,0,0.3,555.37,3102.41,26150401,99.85,0,0,0.14,555.33,3102.44,26150402,99.72,0,0,0.56,555.57,3102.2,26150403,99.85,0,0,0.15,555.04,3102.73,26150404,99.85,0,0,0.15,555.15,3102.61,26150405,99.82,0,0,0.37,555.47,3102.31,26150406,99.83,0,0,0.17,555.42,3102.36,26150407,99.74,0,0,0.54,555.79,3101.98,26150408,99.84,0,0,0.18,555.63,3102.14,26150409,99.8,0,0,0.3,555.35,3102.39,26150410,99.74,0,0,0.32,555.1,3102.66,26150411,99.88,0,0,0.18,555.07,3102.68,26150412,99.73,0,0,0.3,555.4,3102.35,26150413,99.83,0,0,0.39,555.68,3102.06,26150414,99.86,0,0,0.15,555.4,3102.34,26150415,99.75,0,0,0.31,555.67,3102.08,26150416,99.85,0,0,0.16,555.66,3102.09,26150417,99.88,0,0,0.19,555.64,3102.11,26150418,99.74,0,0,0.54,555.36,3102.39,26150419,99.87,0,0,0.15,554.86,3102.88,26150420,99.82,0,0,0.31,554.85,3102.91,26150421,99.87,0,0,0.17,554.83,3102.93,26150422,99.85,0,0,0.16,554.83,3102.93,26150423,99.73,0,0,0.57,555.35,3102.4,26150424,99.86,0,0,0.15,555.02,3102.72,26150425,99.8,0,0,0.35,555.39,3102.37,26150426,99.86,0,0,0.14,555.42,3102.33,26150427,99.85,0,0,0.19,555.39,3102.36,26150428,99.74,0,0,0.55,555.74,3102.01,26150429,99.85,0,0,0.14,555.35,3102.39,26150430,99.8,0,0,0.31,555.6,3102.16,26150431,99.84,0,0,0.14,555.57,3102.18,26150432,99.87,0,0,0.16,555.56,3102.19,26150433,99.73,0,0,0.58,555.89,3101.86,26150434,99.83,0,0,0.16,555.52,3102.22,26150435,99.8,0,0,0.32,555.83,3101.93,26150436,99.85,0,0,0.16,555.94,3101.82,26150437,99.84,0,0,0.14,555.9,3101.85,26150438,99.7,0,0,0.46,556.15,3101.59,26150439,99.77,0,0,0.41,555.35,3102.37,26150440,99.78,0,0,0.33,555.85,3101.89,26150441,98.29,0,0,0.14,555.83,3101.9,26150442,99.85,0,0,0.14,555.81,3101.92,26150443,99.71,0,0,0.45,556.11,3101.62,26150444,99.87,0,0,0.28,555.52,3102.2,26150445,99.79,0,0,0.32,555.05,3102.69,26150446,99.86,0,0,0.15,555.01,3102.72,26150447,99.83,0,0,0.15,555.12,3102.61,26150448,99.63,0.02,1.4,0.54,555.5,3102.22,26150449,99.8,0.02,1.8,0.66,555.07,3102.64,26150450,99.76,0,0.67,0.45,555.27,3102.43,26150451,99.82,0,0,0.21,555.24,3102.46,26150452,99.84,0,0,0.16,555.35,3102.35,26150453,99.8,0.01,1.11,0.23,555.37,3102.31,26150454,99.69,0.01,0.7,0.82,555.39,3102.28,26150455,99.77,0.01,1.02,0.57,555.12,3102.55,26150456,99.85,0,0,0.16,555.02,3102.66,26150457,99.83,0,0,0.15,555,3102.67,26150458,99.85,0,0,0.16,554.97,3102.7,26150459,99.73,0,0,0.54,555.36,3102.3,26150460,99.71,0,0,0.33,554.23,3103.44,26150461,99.37,0,0,0.16,554.34,3103.33,26150462,99.85,0,0,0.14,554.35,3103.32,26150463,99.87,0,0,0.16,554.33,3103.34,26150464,99.68,0,0,0.57,555.75,3101.91,26150465,99.81,0,0,0.32,555.05,3102.63,26150466,99.86,0,0,0.15,555.01,3102.66,26150467,99.85,0,0,0.16,554.99,3102.67,26150468,99.83,0,0,0.14,554.97,3102.69,26150469,99.63,0,0,0.68,555.55,3102.08,26150470,99.84,0,0,0.31,555.44,3102.22,26150471,99.85,0,0,0.16,555.57,3102.09,26150472,99.86,0,0,0.14,555.6,3102.07,26150473,99.87,0,0,0.15,555.58,3102.09,26150474,99.72,0,0,0.56,555.68,3101.98,26150475,99.84,0,0,0.31,555.32,3102.36,26150476,99.92,0,0,0.14,555.29,3102.39,26150477,99.93,0,0,0.21,555.27,3102.4,26150478,99.93,0,0,0.14,555.25,3102.42,26150479,99.79,0,0,0.51,555.57,3102.09,26150480,99.83,0,0,0.39,555.22,3102.45,26150481,99.93,0,0,0.13,555.19,3102.48,26150482,99.9,0,0,0.15,555.31,3102.36,26150483,99.94,0,0,0.18,555.34,3102.32,26150484,99.81,0,0,0.54,555.96,3101.7,26150485,99.89,0,0,0.33,555.32,3102.35,26150486,99.93,0,0,0.15,555.29,3102.38,26150487,99.92,0,0,0.17,555.26,3102.4,26150488,99.93,0,0,0.14,555.24,3102.42,26150489,99.9,0,0,0.16,555.22,3102.44,26150490,99.67,0,0,0.72,555.2,3102.47,26150491,99.93,0,0,0.13,554.7,3102.96,26150492,99.95,0,0,0.15,554.69,3102.97,26150493,99.93,0,0,0.15,554.82,3102.84,26150494,99.92,0,0,0.14,554.87,3102.79,26150495,99.71,0,0,0.77,555.31,3102.36,26150496,99.93,0,0,0.13,554.83,3102.83,26150497,99.93,0,0,0.17,554.81,3102.85,26150498,99.93,0,0,0.15,554.79,3102.86,26150499,99.81,0,0,0.29,555.27,3102.36,26150500,99.72,0,0,0.77,555.66,3101.98,26150501,99.92,0,0,0.14,555.23,3102.4,26150502,99.94,0,0,0.16,555.21,3102.42,26150503,99.95,0,0,0.16,555.19,3102.43,26150504,99.91,0,0,0.14,555.28,3102.34,26150505,99.72,0,0,0.79,556.19,3101.45,26150506,99.93,0,0,0.18,555.34,3102.3,26150507,99.93,0,0,0.18,555.32,3102.31,26150508,99.93,0,0,0.14,555.3,3102.33,26150509,99.93,0,0,0.14,555.28,3102.34,26150510,99.69,0,0,0.74,555.6,3102.04,26150511,99.89,0,0,0.17,555.33,3102.3,26150512,99.93,0,0,0.2,555.19,3102.44,26150513,99.93,0,0,0.16,554.95,3102.7,26150514,99.93,0,0,0.15,554.94,3102.7,26150515,99.72,0,0,0.6,555.9,3101.76,26150516,99.91,0,0,0.3,555.6,3102.06,26150517,99.93,0,0,0.14,555.57,3102.08,26150518,99.91,0.01,0.02,0.14,555.53,3102.11,26150519,99.92,0,0,0.2,555.43,3102.2,26150520,99.73,0,0,0.74,556.02,3101.64,26150521,99.91,0,0,0.13,555.6,3102.05,26150522,99.88,0,0,0.17,555.57,3102.08,26150523,99.94,0,0,0.14,555.55,3102.09,26150524,99.92,0,0,0.15,555.53,3102.11,26150525,99.7,0,0,0.55,556.38,3101.28,26150526,99.93,0,0,0.3,554.77,3102.88,26150527,99.92,0,0,0.16,554.75,3102.9,26150528,99.93,0,0,0.14,554.73,3102.91,26150529,99.81,0,0,0.3,555.44,3102.18,26150530,99.87,0,0,0.34,555.46,3102.18,26150531,99.78,0,0,0.62,555.79,3101.85,26150532,99.92,0,0,0.13,555.57,3102.06,26150533,99.93,0,0,0.16,555.57,3102.05,26150534,99.93,0,0,0.16,555.55,3102.07,26150535,99.79,0,0,0.36,555.56,3102.08,26150536,99.8,0,0,0.56,556.05,3101.58,26150537,99.93,0,0,0.22,555.74,3101.89,26150538,99.93,0,0,0.18,555.72,3101.9,26150539,99.87,0,0,0.18,555.7,3101.92,26150540,99.84,0,0,0.32,555.46,3102.17,26150541,99.8,0,0,0.58,556.06,3101.58,26150542,99.95,0,0,0.14,555.23,3102.4,26150543,99.93,0,0,0.14,554.83,3102.79,26150544,99.93,0,0,0.16,554.81,3102.81,26150545,99.81,0,0,0.4,554.81,3102.82,26150546,99.81,0,0,0.55,555.2,3102.43,26150547,99.93,0,0,0.16,554.52,3103.1,26150548,99.93,0,0,0.18,554.49,3103.13,26150549,99.93,0,0,0.18,554.48,3103.14,26150550,99.86,0,0,0.32,554.79,3102.84,26150551,99.79,0,0,0.49,555.13,3102.49,26150552,99.91,0,0,0.21,555.03,3102.6,26150553,99.94,0,0,0.14,555.07,3102.55,26150554,99.93,0,0,0.15,555.05,3102.57,26150555,99.84,0,0,0.34,555.06,3102.58,26150556,99.82,0,0,0.53,555.38,3102.24,26150557,99.94,0,0,0.15,555.01,3102.61,26150558,99.94,0,0,0.14,555.01,3102.61,26150559,99.83,0,0,0.29,554.98,3102.62,26150560,99.78,0,0,0.31,554.51,3103.12,26150561,99.77,0,0,0.55,554.93,3102.7,26150562,99.93,0,0,0.15,554.93,3102.69,26150563,99.95,0,0,0.15,554.92,3102.7,26150564,99.95,0,0,0.14,555.07,3102.56,26150565,99.89,0,0,0.32,555.35,3102.3,26150566,99.79,0,0,0.32,555.58,3102.07,26150567,99.93,0,0,0.37,554.82,3102.82,26150568,99.94,0,0,0.16,554.8,3102.84,26150569,99.9,0,0,0.14,554.78,3102.86,26150570,99.88,0,0,0.32,554.78,3102.87,26150571,99.88,0,0,0.18,554.62,3103.03,26150572,99.78,0,0,0.58,555.62,3102.04,26150573,99.93,0,0,0.14,554.95,3102.71,26150574,99.93,0,0,0.15,554.94,3102.71,26150575,99.9,0,0,0.31,554.85,3102.82,26150576,99.95,0,0,0.17,554.85,3102.82,26150577,99.82,0,0.01,0.58,555.47,3102.19,26150578,99.92,0,0,0.17,554.78,3102.88,26150579,99.95,0,0,0.15,554.76,3102.89,26150580,99.81,0,0,0.3,554.04,3103.63,26150581,99.93,0,0,0.16,554,3103.66,26150582,99.82,0,0,0.54,555.26,3102.4,26150583,99.93,0,0,0.16,555.19,3102.46,26150584,99.95,0,0,0.14,555.27,3102.38,26150585,99.87,0,0,0.31,555.36,3102.31,26150586,99.93,0,0,0.17,555.33,3102.33,26150587,99.8,0,0,0.54,555.58,3102.08,26150588,99.9,0,0,0.18,555.05,3102.61,26150589,99.87,0,0,0.32,555.28,3102.35,26150590,99.86,0,0,0.33,555.02,3102.62,26150591,99.93,0,0,0.15,554.99,3102.64,26150592,99.81,0,0,0.58,555.39,3102.24,26150593,99.95,0,0,0.18,555.18,3102.45,26150594,99.94,0,0,0.18,555.16,3102.46,26150595,99.85,0,0,0.36,555.29,3102.35,26150596,99.93,0,0,0.18,555.32,3102.31,26150597,99.78,0,0,0.48,555.97,3101.66,26150598,99.94,0,0,0.31,555.02,3102.6,26150599,99.9,0,0,0.21,554.99,3102.63,26150600,99.89,0,0,0.35,554.82,3102.82,26150601,99.94,0,0,0.17,554.7,3102.93,26150602,99.8,0,0,0.38,555.14,3102.48,26150603,99.95,0,0,0.39,554.41,3103.21,26150604,99.94,0,0,0.17,554.56,3103.06,26150605,99.86,0,0,0.31,554.81,3102.82,26150606,99.94,0,0,0.14,554.8,3102.83,26150607,99.93,0,0,0.16,554.78,3102.85,26150608,99.81,0,0,0.59,555.33,3102.29,26150609,99.93,0,0,0.14,554.99,3102.63,26150610,99.83,0,0,0.3,555.22,3102.42,26150611,99.95,0,0,0.16,555.21,3102.42,26150612,99.94,0,0,0.14,555.19,3102.44,26150613,99.81,0,0,0.55,555.68,3101.95,26150614,99.92,0,0,0.17,555.38,3102.23,26150615,99.87,0,0,0.31,554.12,3103.52,26150616,99.96,0,0,0.18,554.08,3103.55,26150617,99.95,0,0,0.12,554.07,3103.56,26150618,99.03,0,0,0.5,555.05,3102.58,26150619,99.88,0,0,0.34,555.26,3102.34,26150620,99.86,0,0,0.3,555.01,3102.61,26150621,99.95,0,0,0.16,554.98,3102.63,26150622,99.94,0,0,0.15,554.97,3102.64,26150623,95.78,0,0,0.39,555.4,3102.21,26150624,99.93,0,0,0.29,555.16,3102.44,26150625,99.89,0,0,0.31,554.92,3102.7,26150626,99.95,0,0,0.14,555.04,3102.57,26150627,99.91,0,0,0.16,555.06,3102.55,26150628,99.77,0,0,0.5,555.21,3102.4,26150629,99.15,0,0,0.2,554.53,3103.07,26150630,99.88,0,0,0.32,554.76,3102.86,26150631,99.87,0,0,0.2,554.48,3103.13,26150632,99.62,0,0,0.14,554.23,3103.38,26150633,99.81,0,0,0.55,554.76,3102.85,26150634,99.95,0,0,0.16,555.18,3102.44,26150635,99.87,0,0,0.38,555.66,3101.97,26150636,99.95,0,0,0.12,555.65,3101.98,26150637,99.94,0,0,0.14,555.8,3101.82,26150638,99.82,0,0,0.32,556.45,3101.17,26150639,99.92,0,0,0.39,555.3,3102.32,26150640,99.85,0,0,0.3,554.57,3103.06,26150641,99.92,0,0,0.16,554.52,3103.1,26150642,99.92,0,0,0.14,554.48,3103.14,26150643,99.39,0,0,0.15,554.47,3103.15,26150644,99.81,0,0,0.58,555.63,3101.98,26150645,99.87,0,0,0.34,555.43,3102.2,26150646,99.95,0,0,0.16,555.56,3102.07,26150647,99.96,0,0,0.15,555.58,3102.04,26150648,99.93,0,0,0.18,555.55,3102.07,26150649,99.71,0,0,0.73,555.91,3101.69,26150650,99.73,0,0,0.32,555.54,3102.07,26150651,99.95,0,0,0.16,555.51,3102.1,26150652,99.94,0,0,0.16,555.48,3102.12,26150653,99.92,0,0,0.15,555.47,3102.13,26150654,99.8,0,0,0.56,556.31,3101.28,26150655,99.83,0,0,0.33,555.47,3102.13,26150656,99.9,0,0,0.21,555.42,3102.18,26150657,99.95,0,0,0.22,555.47,3102.13,26150658,99.95,0,0,0.18,555.57,3102.02,26150659,99.64,0.04,0.15,0.93,560.32,3097.14,26150660,99.88,0,0,0.32,565.41,3091.94,26150661,99.94,0,0,0.16,565.52,3091.83,26150662,99.94,0,0,0.15,565.48,3091.87,26150663,99.93,0,0,0.15,565.45,3091.9,26150664,99.79,0,0,0.41,566,3091.33,26150665,99.87,0,0,0.45,565.66,3091.69,26150666,99.93,0,0,0.14,565.67,3091.68,26150667,99.94,0,0,0.14,565.76,3091.58,26150668,99.93,0,0,0.16,565.73,3091.61,26150669,99.81,0,0,0.49,566.21,3091.12,26150670,99.84,0,0,0.36,566.42,3090.93,26150671,99.95,0,0,0.16,566.39,3090.96,26150672,99.93,0,0,0.14,566.35,3090.99,26150673,99.93,0,0,0.14,566.39,3090.95,26150674,95.31,0.35,0.01,77.98,578.34,3079.37,26150675,99.79,0,0,180.31,568.71,3088.42,26150676,99.94,0,0,0.18,568.7,3088.42,26150677,99.93,0,0,0.17,568.67,3088.45,26150678,99.91,0,0,0.14,568.71,3088.41,26150679,99.88,0,0,0.29,568.8,3088.27,26150680,99.73,0,0,0.7,567.26,3089.88,26150681,99.91,0,0,0.16,566.59,3090.55,26150682,98.84,0,0,0.14,566.55,3090.58,26150683,99.2,0,0,0.15,566.52,3090.61,26150684,99.93,0,0,0.15,566.49,3090.67,26150685,99.76,0,0,0.73,566.73,3090.45,26150686,99.93,0,0,0.14,566.38,3090.79,26150687,99.92,0.01,0.01,0.13,566.35,3090.83,26150688,99.92,0,0,0.16,566.31,3090.86,26150689,99.59,0,0,0.14,566.28,3090.89,26150690,99.78,0,0,0.7,566.63,3090.55,26150691,99.92,0,0,0.2,566.15,3091.03,26150692,99.93,0,0,0.14,565.86,3091.32,26150693,99.95,0,0,0.15,565.83,3091.34,26150694,99.93,0,0,0.14,565.8,3091.37,26150695,99.74,0,0,0.73,566.22,3090.96,26150696,99.96,0,0,0.14,565.37,3091.81,26150697,99.94,0,0,0.16,565.16,3092.01,26150698,99.9,0,0,0.14,565.13,3092.04,26150699,99.42,0,0,0.19,565.1,3092.07,26150700,99.25,0,0,9.48,565.64,3091.93,26150701,99.67,0,0,0.2,565.44,3092.16,26150702,99.93,0,0,0.2,565.4,3092.2,26150703,99.96,0,0,0.2,565.49,3092.11,26150704,99.69,0,0,0.2,565.55,3092.04,26150705,99.72,0,0,0.61,566.01,3091.64,26150706,98.33,0,0,0.31,565.51,3092.15,26150707,99.48,0,0,0.16,565.48,3092.18,26150708,99.93,0,0,0.17,565.44,3092.21,26150709,99.86,0,0,0.31,565.68,3091.96,26150710,99.73,0,0,0.64,566.19,3091.46,26150711,99.93,0,0,0.28,565.81,3091.84,26150712,99.93,0,0,0.13,565.78,3091.86,26150713,99.93,0,0,0.16,565.74,3091.89,26150714,99.93,0,0,0.14,565.71,3091.92,26150715,99.73,0,0,0.61,565.84,3091.8,26150716,99.92,0,0,0.31,565.72,3091.92,26150717,99.93,0,0,0.2,565.81,3091.82,26150718,99.92,0,0,0.16,565.77,3091.86,26150719,99.91,0.01,0.01,0.16,565.74,3091.89,26150720,99.89,0,0,0.36,565.72,3091.92,26150721,98.1,0,0,0.51,566.04,3091.6,26150722,99.93,0,0,0.17,565.66,3091.98,26150723,99.93,0,0,0.17,565.78,3091.85,26150724,99.73,0,0,0.15,565.78,3091.85,26150725,99.89,0,0,0.41,565.77,3091.88,26150726,99.78,0,0,0.54,565.89,3091.75,26150727,99.93,0,0,0.14,565.45,3092.19,26150728,99.29,0,0,0.14,565.42,3092.22,26150729,99.95,0,0,0.16,565.5,3092.13,26150730,99.9,0,0,0.35,565.58,3092.07,26150731,96.38,0,0,0.52,566,3091.65,26150732,99.93,0,0,0.14,565.5,3092.13,26150733,99.94,0,0,0.16,565.47,3092.16,26150734,99.9,0,0,0.15,565.43,3092.2,26150735,99.9,0,0,0.32,565.66,3091.98,26150736,99.79,0,0,0.55,565.88,3091.76,26150737,99.91,0,0,0.14,565.3,3092.34,26150738,99.9,0,0,0.14,565.26,3092.37,26150739,99.84,0,0,0.3,565.72,3091.89,26150740,99.89,0,0,0.33,565.72,3091.9,26150741,99.78,0,0,0.56,566.03,3091.59,26150742,99.93,0,0,0.14,565.7,3091.91,26150743,99.95,0,0,0.16,565.8,3091.81,26150744,99.94,0,0,0.15,565.77,3091.84,26150745,99.88,0,0,0.32,565.27,3092.35,26150746,99.8,0.01,0.02,0.42,565.58,3092.04,26150747,99.93,0,0.01,0.36,564.78,3092.82,26150748,99.92,0,0,0.16,564.75,3092.86,26150749,98.68,0,0,0.16,564.71,3092.89,26150750,99.89,0,0,0.31,565.19,3092.43,26150751,99.89,0,0,0.16,565.49,3092.12,26150752,99.77,0,0,0.59,566.38,3091.23,26150753,99.93,0,0,0.14,566.01,3091.6,26150754,99.91,0,0,0.15,565.97,3091.63,26150755,99.9,0,0,0.34,565.96,3091.67,26150756,99.02,0,0,0.13,565.93,3091.7,26150757,99.79,0,0,0.55,566.13,3091.49,26150758,99.93,0,0.03,0.18,565.8,3091.82,26150759,97.67,0,0,0.17,565.75,3091.87,26150760,99.58,0,0,0.39,565.98,3091.65,26150761,99.93,0,0,0.14,565.96,3091.67,26150762,99.77,0,0,0.55,566.12,3091.5,26150763,99.91,0,0,0.15,565.65,3091.97,26150764,97.42,0,0,0.14,565.8,3091.82,26150765,99.89,0,0,0.27,565.79,3091.84,26150766,99.77,0,0,0.16,565.76,3091.87,26150767,99.79,0,0,0.4,566.09,3091.54,26150768,99.9,0,0,0.28,565.69,3091.92,26150769,99.88,0,0,0.29,565.9,3091.7,26150770,97.91,0,0,0.27,565.72,3091.89,26150771,99.94,0,0,0.14,565.8,3091.81,26150772,99.75,0,0,0.5,566.54,3091.06,26150773,99.93,0,0,0.19,565.98,3091.62,26150774,99.91,0,0,0.14,565.95,3091.65,26150775,99.86,0,0,0.29,566.18,3091.43,26150776,99.89,0,0,0.14,566.15,3091.45,26150777,99.78,0,0,0.53,566.49,3091.12,26150778,99.9,0,0,0.27,566.02,3091.57,26150779,99.9,0.01,0.01,0.17,565.98,3091.62,26150780,99.89,0,0,0.3,566.2,3091.42,26150781,99.48,0,0,0.17,566.17,3091.44,26150782,99.93,0,0,0.15,566.13,3091.47,26150783,99.78,0,0,0.54,566.66,3090.94,26150784,99.9,0,0,0.14,566.25,3091.34,26150785,99.85,0,0,0.3,566,3091.61,26150786,99.89,0,0,0.16,565.96,3091.65,26150787,99.91,0.01,0,0.14,565.92,3091.68,26150788,99.76,0,0,0.58,566.24,3091.36,26150789,99.93,0,0,0.14,565.98,3091.61,26150790,99.83,0,0,0.26,565.56,3092.05,26150791,99.91,0,0,0.14,565.53,3092.08,26150792,99.94,0,0,0.16,565.48,3092.12,26150793,99.8,0,0,0.55,566.18,3091.41,26150794,99.92,0,0,0.15,565.91,3091.68,26150795,99.85,0,0,0.28,564.93,3092.68,26150796,99.92,0,0,0.15,565.04,3092.56,26150797,99.86,0,0,0.16,565.05,3092.55,26150798,99.8,0,0,0.54,566.1,3091.5,26150799,99.85,0,0,0.31,566.22,3091.36,26150800,99.83,0,0,0.29,565.95,3091.63,26150801,99.91,0,0,0.16,565.91,3091.67,26150802,99.93,0,0,0.15,565.95,3091.63,26150803,99.8,0,0,0.39,566.56,3091.02,26150804,99.93,0,0,0.31,566,3091.57,26150805,99.84,0,0,0.29,566.47,3091.12,26150806,99.93,0,0,0.14,566.44,3091.15,26150807,99.93,0,0.01,0.16,566.18,3091.4,26150808,99.81,0,0,0.57,566.55,3091.02,26150809,99.92,0,0,0.18,566.46,3091.11,26150810,99.84,0,0,0.3,566.53,3091.05,26150811,99.91,0,0,0.17,566.29,3091.3,26150812,99.91,0.01,0.01,0.18,565.95,3091.63,26150813,99.8,0,0,0.31,566.23,3091.35,26150814,99.92,0,0,0.36,565.68,3091.89,26150815,99.81,0,0,0.27,565.6,3091.99,26150816,99.92,0,0,0.16,565.52,3092.07,26150817,99.92,0,0,0.14,565.48,3092.1,26150818,99.79,0,0,0.45,565.85,3091.73,26150819,99.93,0,0,0.29,566.14,3091.43,26150820,99.79,0,0,0.27,566.21,3091.38,26150821,99.93,0,0,0.15,566.27,3091.33,26150822,99.93,0,0,0.16,566.24,3091.36,26150823,99.93,0,0,0.16,566.21,3091.38,26150824,99.75,0,0,0.56,566.53,3091.06,26150825,96.53,2.95,0.02,3.79,570.02,3088.61,26150826,99.88,0,0,77.49,568.6,3085.71,26150827,99.93,0,0,0.18,568.63,3085.68,26150828,99.92,0,0,0.18,568.74,3085.56,26150829,99.72,0,0,0.68,569.07,3085.21,26150830,99.88,0,0,0.29,568.46,3085.84,26150831,99.95,0,0,0.15,566.28,3088.09,26150832,99.93,0,0,0.16,566.25,3088.12,26150833,99.9,0,0,0.15,566.22,3088.14,26150834,99.78,0,0,0.55,566.74,3087.63,26150835,99.89,0,0,0.28,566.37,3088.03,26150836,99.93,0,0,0.16,566.35,3088.05,26150837,99.92,0,0,0.18,566.32,3088.08,26150838,99.92,0,0,0.14,566.28,3088.11,26150839,99.8,0.01,0.01,0.49,566.31,3088.09,26150840,99.87,0,0,0.3,566.46,3087.96,26150841,99.9,0,0,0.14,566.57,3087.84,26150842,99.89,0,0,0.16,566.59,3087.81,26150843,99.95,0,0,0.15,566.56,3087.84,26150844,99.77,0,0,0.49,566.88,3087.52,26150845,99.83,0,0.01,0.36,566.52,3087.9,26150846,99.87,0,0,0.14,566.47,3087.95,26150847,99.89,0,0,0.13,566.55,3087.86,26150848,99.95,0,0,0.15,566.59,3087.81,26150849,99.77,0,0,0.41,566.85,3087.55,26150850,99.8,0,0,0.44,566.54,3087.87,26150851,99.93,0,0,0.14,565.58,3088.83,26150852,99.93,0,0,0.14,565.49,3088.92,26150853,99.89,0,0,0.16,565.45,3088.95,26150854,99.74,0,0,0.3,565.91,3088.48,26150855,99.88,0,0,0.49,565.84,3088.57,26150856,99.88,0,0,0.18,565.8,3088.61,26150857,99.91,0,0,0.14,565.77,3088.63,26150858,99.89,0,0,0.15,565.74,3088.66,26150859,99.86,0,0,0.3,565.71,3088.66,26150860,99.7,0,0,0.7,566.31,3088.09,26150861,99.83,0,0,0.16,565.57,3088.82,26150862,99.88,0,0,0.15,565.55,3088.84,26150863,99.86,0,0,0.15,565.51,3088.88,26150864,99.84,0,0,0.13,565.48,3088.93,26150865,99.73,0,0,0.71,566.04,3088.39,26150866,99.91,0,0,0.14,565.76,3088.66,26150867,99.87,0.01,0.01,0.16,565.84,3088.57,26150868,99.82,0,0,0.14,565.8,3088.61,26150869,99.88,0,0,0.15,565.77,3088.64,26150870,99.65,0,0,0.67,566.02,3088.4,26150871,99.81,0,0,0.23,565.63,3088.79,26150872,99.83,0,0,0.19,565.44,3088.98,26150873,99.84,0,0,0.16,565.54,3088.87,26150874,99.84,0,0,0.15,565.6,3088.81,26150875,99.65,0,0,0.73,565.97,3088.45,26150876,99.84,0,0,0.13,565.8,3088.62,26150877,99.85,0,0,0.14,565.77,3088.64,26150878,99.87,0,0,0.17,565.74,3088.67,26150879,99.81,0,0,0.14,565.71,3088.7,26150880,99.61,0,0,0.61,565.67,3088.76,26150881,99.85,0,0,0.22,565.61,3088.81,26150882,99.83,0,0,0.14,565.55,3088.86,26150883,99.85,0,0,0.16,565.5,3088.91,26150884,99.83,0,0,0.14,565.47,3088.94,26150885,99.55,0,0,0.68,566.24,3088.19,26150886,99.87,0,0,0.15,565.36,3089.06,26150887,99.84,0,0,0.14,565.32,3089.09,26150888,99.84,0,0,0.16,565.29,3089.12,26150889,99.8,0,0,0.31,565.75,3088.64,26150890,99.65,0,0.01,0.48,565.96,3088.44,26150891,99.83,0,0,0.38,565.82,3088.58,26150892,99.87,0,0,0.14,565.85,3088.55,26150893,99.84,0,0,0.14,565.82,3088.58,26150894,99.85,0,0,0.16,565.78,3088.61,26150895,99.8,0,0,0.29,566.02,3088.39,26150896,99.7,0,0,0.52,566.17,3088.24,26150897,99.82,0,0,0.21,565.94,3088.46,26150898,99.86,0,0,0.14,566.07,3088.32,26150899,99.8,0.01,0.01,0.16,566.07,3088.32,26150900,99.81,0,0,0.3,566.05,3088.36,26150901,99.71,0,0,0.53,566.37,3088.04,26150902,99.84,0,0,0.14,565.98,3088.42,26150903,99.83,0,0.01,0.17,566.01,3088.38,26150904,99.83,0,0,0.14,566.09,3088.3,26150905,99.78,0,0,0.3,565.83,3088.57,26150906,99.72,0,0,0.54,566.14,3088.26,26150907,99.85,0,0,0.15,565.75,3088.64,26150908,99.85,0,0,0.16,565.72,3088.67,26150909,99.83,0,0,0.15,565.69,3088.7,26150910,99.8,0,0,0.27,566.29,3088.11,26150911,99.71,0,0,0.55,566.02,3088.38,26150912,99.84,0,0,0.14,565.05,3089.35,26150913,99.84,0,0,0.14,565.02,3089.39,26150914,99.82,0,0,0.15,564.99,3089.42,26150915,99.79,0,0,0.29,565.95,3088.47,26150916,99.71,0,0,0.55,566.59,3087.83,26150917,99.84,0,0,0.15,566.12,3088.3,26150918,99.85,0,0,0.15,566.09,3088.32,26150919,99.8,0,0,0.29,566.34,3088.04,26150920,99.78,0,0,0.32,566.34,3088.06,26150921,99.67,0,0,0.4,566.43,3087.96,26150922,99.85,0,0,0.29,565.23,3089.15,26150923,99.85,0,0,0.16,565.3,3089.08,26150924,99.82,0,0,0.15,565.35,3089.03,26150925,99.76,0,0,0.29,566.05,3088.34,26150926,99.68,0,0,0.43,566.39,3087.99,26150927,99.84,0,0.01,0.27,566,3088.38,26150928,99.83,0,0,0.15,565.96,3088.41,26150929,99.84,0,0,0.14,566,3088.37,26150930,99.82,0,0,0.27,566.59,3087.8,26150931,99.72,0,0,0.33,566.82,3087.56,26150932,99.84,0,0,0.39,566.03,3088.34,26150933,99.85,0,0,0.14,565.99,3088.38,26150934,99.82,0,0,0.14,565.96,3088.41,26150935,99.71,0,0,0.31,565.25,3089.14,26150936,99.84,0,0,0.14,565.32,3089.06,26150937,99.7,0,0,0.55,566.53,3087.85,26150938,99.85,0,0,0.14,566.3,3088.08,26150939,99.84,0,0,0.15,566.26,3088.11,26150940,99.78,0,0,0.32,566.25,3088.14,26150941,99.84,0,0,0.18,566.22,3088.17,26150942,99.72,0,0,0.55,565.85,3088.53,26150943,99.85,0,0,0.14,565.34,3089.03,26150944,99.83,0,0,0.14,565.31,3089.06,26150945,99.79,0,0,0.29,565.78,3088.6,26150946,99.83,0,0,0.14,565.76,3088.64,26150947,99.7,0,0,0.54,566.21,3088.18,26150948,99.87,0,0,0.15,565.95,3088.44,26150949,99.78,0,0,0.32,566.23,3088.15,26150950,99.81,0,0,0.31,566.1,3088.3,26150951,99.83,0,0,0.16,566.06,3088.34,26150952,99.71,0,0,0.54,566.78,3087.61,26150953,99.84,0,0,0.14,566.24,3088.15,26150954,99.85,0,0,0.14,566.21,3088.19,26150955,99.79,0,0,0.28,566.2,3088.22,26150956,99.85,0,0,0.14,566.28,3088.14,26150957,99.69,0,0,0.48,566.76,3087.66,26150958,99.83,0,0,0.33,566.28,3088.13,26150959,99.85,0.01,0.01,0.14,566.25,3088.16,26150960,99.78,0,0,0.27,566.23,3088.19,26150961,99.83,0,0,0.16,566.2,3088.22,26150962,99.83,0,0,0.14,566.27,3088.15,26150963,99.7,0,0,0.54,566.69,3087.72,26150964,99.85,0,0,0.14,566.31,3088.09,26150965,99.79,0,0,0.28,566.3,3088.12,26150966,99.83,0,0,0.14,566.27,3088.14,26150967,99.85,0,0,0.16,566.24,3088.17,26150968,99.7,0,0,0.6,565.94,3088.46,26150969,99.85,0,0,0.16,565.55,3088.85,26150970,99.77,0,0,0.31,566.58,3087.83,26150971,99.86,0,0,0.15,566.55,3087.85,26150972,99.83,0,0,0.16,566.52,3087.89,26150973,99.71,0,0,0.53,566.5,3087.9,26150974,99.81,0,0,0.16,565.96,3088.44,26150975,99.8,0,0,0.31,566.29,3088.12,26150976,99.83,0,0,0.14,566.34,3088.07,26150977,99.83,0,0,0.13,566.31,3088.09,26150978,99.7,0,0,0.4,566.77,3087.63,26150979,99.78,0,0,0.52,566.24,3088.13,26150980,99.79,0,0,0.28,566.24,3088.15,26150981,99.83,0,0,0.16,566.2,3088.19,26150982,99.84,0,0,0.14,566.28,3088.11,26150983,99.7,0,0,0.51,566.81,3087.57,26150984,99.84,0,0,0.22,566.29,3088.09,26150985,99.78,0,0,0.31,566.04,3088.35,26150986,99.85,0,0,0.18,565.99,3088.39,26150987,99.83,0.01,0.01,0.39,565.86,3088.52,26150988,99.66,0,0,0.53,566.18,3088.2,26150989,99.86,0,0,0.23,566.31,3088.05,26150990,99.8,0,0,0.32,566.54,3087.84,26150991,99.82,0,0,0.2,566.35,3088.02,26150992,99.83,0,0,0.18,565.98,3088.39,26150993,99.85,0,0,0.19,565.94,3088.43,26150994,99.7,0,0,0.55,565.31,3089.05,26150995,99.75,0,0,0.3,566.28,3088.1,26150996,99.83,0,0,0.18,566.29,3088.08,26150997,99.85,0,0,0.16,566.27,3088.11,26150998,99.83,0,0,0.17,566.24,3088.13,26150999,99.72,0,0,0.55,566.57,3087.79,26151000,99.78,0,0,0.3,566.2,3088.18,26151001,99.85,0,0,0.18,566.25,3088.13,26151002,99.82,0,0,0.18,566.31,3088.08,26151003,99.84,0,0,0.2,565.92,3088.47,26151004,99.72,0,0,0.56,565.93,3088.45,26151005,99.8,0,0,0.33,565.51,3088.89,26151006,99.83,0,0,0.2,565.47,3088.93,26151007,99.85,0,0,0.2,565.43,3088.96,26151008,99.86,0,0,0.2,565.52,3088.87,26151009,99.62,0,0,0.74,566.01,3088.34,26151010,99.8,0,0,0.36,565.31,3089.05,26151011,99.85,0,0,0.19,565.27,3089.09,26151012,99.79,0,0,0.18,565.23,3089.12,26151013,99.85,0,0,0.18,565.2,3089.16,26151014,99.72,0,0,0.56,565.69,3088.66,26151015,99.81,0,0,0.32,565.83,3088.53,26151016,99.84,0,0,0.14,565.79,3088.57,26151017,99.85,0,0,0.21,565.77,3088.59,26151018,99.84,0,0,0.14,565.74,3088.62,26151019,99.69,0.01,0.01,0.54,566.04,3088.31,26151020,99.78,0,0,0.28,565.43,3088.93,26151021,99.85,0,0,0.18,565.54,3088.82,26151022,99.83,0,0,0.15,565.55,3088.8,26151023,99.86,0,0,0.14,565.52,3088.83,26151024,99.7,0,0,0.47,565.81,3088.54,26151025,99.72,0,0,0.42,565.08,3089.28,26151026,99.86,0,0,0.2,564.95,3089.41,26151027,99.86,0,0,0.14,565.02,3089.33,26151028,99.85,0,0,0.14,565.06,3089.28,26151029,99.86,0,0,0.14,565.03,3089.32,26151030,99.61,0,0,0.7,566.08,3088.28,26151031,99.9,0,0,0.18,565.73,3088.63,26151032,99.9,0,0,0.18,565.7,3088.65,26151033,99.87,0,0,0.2,565.67,3088.68,26151034,99.93,0,0,0.2,565.71,3088.63,26151035,96.66,0.02,0.01,89.21,577.94,3078.65,26151036,99.92,0,0,0.18,568.32,3086.23,26151037,99.88,0,0,0.16,568.35,3086.2,26151038,99.93,0,0,0.18,568.43,3086.11,26151039,99.83,0,0,0.29,568.14,3086.36,26151040,99.75,0,0,0.73,567.05,3087.51,26151041,99.91,0,0,0.17,565.94,3088.62,26151042,99.91,0,0,0.19,565.9,3088.66,26151043,99.92,0,0,0.17,565.87,3088.69,26151044,99.93,0,0,0.17,565.95,3088.6,26151045,99.76,0,0,0.54,566.38,3088.21,26151046,99.92,0,0,0.29,565.99,3088.6,26151047,99.9,0,0.01,0.16,565.95,3088.63,26151048,99.91,0,0,0.14,565.92,3088.66,26151049,99.93,0,0,0.14,565.89,3088.68,26151050,99.77,0,0,0.61,566.17,3088.42,26151051,99.92,0,0,0.22,565.92,3088.67,26151052,99.93,0,0,0.16,565.55,3089.04,26151053,99.95,0,0,0.15,565.51,3089.07,26151054,99.9,0,0,0.14,565.48,3089.1,26151055,99.76,0,0,0.66,565.98,3088.61,26151056,99.94,0,0,0.16,564.94,3089.65,26151057,99.92,0,0,0.14,564.93,3089.65,26151058,99.92,0,0,0.15,565.07,3089.51,26151059,99.94,0,0,0.15,565.04,3089.53,26151060,99.7,0,0,0.54,565.9,3088.69,26151061,99.9,0,0,0.3,565.49,3089.1,26151062,99.89,0,0,0.14,565.46,3089.13,26151063,99.93,0,0,0.14,565.42,3089.16,26151064,99.93,0,0,0.17,565.44,3089.13,26151065,99.9,0,0,0.34,566.29,3088.3,26151066,99.8,0,0,0.56,566.54,3088.05,26151067,99.93,0,0,0.17,566,3088.58,26151068,99.94,0,0,0.18,565.96,3088.61,26151069,99.88,0,0,0.31,566.18,3088.38,26151070,99.88,0,0,0.32,565.93,3088.64,26151071,99.79,0,0,0.58,566.33,3088.24,26151072,99.9,0,0,0.17,566.01,3088.55,26151073,99.91,0,0,0.17,566.01,3088.55,26151074,99.93,0,0,0.18,565.97,3088.59,26151075,99.85,0,0,0.31,566.19,3088.38,26151076,99.73,0,0,0.59,566.51,3088.05,26151077,99.93,0,0,0.2,566.13,3088.43,26151078,99.93,0,0,0.17,566.23,3088.33,26151079,99.91,0.01,0.01,0.18,566.24,3088.31,26151080,99.83,0,0,0.33,566.24,3088.33,26151081,99.8,0,0,0.56,566.25,3088.32,26151082,99.92,0,0,0.18,565.65,3088.91,26151083,99.94,0,0,0.16,565.68,3088.87,26151084,99.93,0,0,0.17,565.78,3088.78,26151085,98.82,0,0,15.42,567.7,3087.1,26151086,99.74,0,0,0.56,566.38,3087.96,26151087,99.9,0,0,0.17,565.97,3088.38,26151088,99.93,0,0,0.18,565.94,3088.4,26151089,99.92,0,0,0.16,565.91,3088.43,26151090,99.9,0,0,0.29,566.21,3088.15,26151091,99.79,0,0,0.47,566.9,3087.47,26151092,99.95,0,0,0.29,566.27,3088.12,26151093,99.91,0,0,0.17,566.23,3088.15,26151094,99.95,0,0,0.17,566.2,3088.17,26151095,99.88,0,0,0.32,565.94,3088.45,26151096,99.78,0,0,0.47,566.43,3087.96,26151097,99.91,0,0,0.34,566,3088.38,26151098,99.94,0,0,0.16,566.06,3088.32,26151099,99.87,0,0,0.31,566.27,3088.11,26151100,99.83,0,0,0.34,566.02,3088.37,26151101,99.93,0,0,0.17,565.99,3088.4,26151102,99.78,0,0,0.58,566.65,3087.73,26151103,99.94,0,0,0.2,566.17,3088.21,26151104,99.94,0,0,0.19,566.24,3088.13,26151105,99.76,0,0,0.34,565.65,3088.74,26151106,99.91,0,0,0.17,565.54,3088.85,26151107,99.8,0,0.01,0.55,565.28,3089.1,26151108,97.1,0,0,16.55,569.78,3084.76,26151109,99.91,0,0,32.13,568.38,3088.63,26151110,99.84,0,0,0.39,567.9,3089.12,26151111,99.88,0,0,0.15,567.93,3089.1,26151112,99.79,0,0,0.55,568.86,3088.15,26151113,99.93,0,0,0.2,568.15,3088.87,26151114,99.92,0,0,0.14,566.03,3091.03,26151115,99.84,0,0,0.29,566.27,3090.81,26151116,99.93,0,0,0.17,566.24,3090.84,26151117,99.8,0,0,0.53,566.26,3090.82,26151118,99.92,0,0,0.16,565.8,3091.27,26151119,99.94,0,0,0.15,565.85,3091.23,26151120,99.88,0,0,0.28,566.08,3091.02,26151121,99.94,0,0,0.16,566.05,3091.05,26151122,99.81,0,0,0.54,566.47,3090.62,26151123,99.96,0,0,0.15,566.23,3090.86,26151124,99.92,0,0,0.16,566.2,3090.89,26151125,99.9,0,0,0.3,566.56,3090.54,26151126,99.93,0,0,0.15,566.59,3090.51,26151127,99.81,0,0,0.54,567.21,3089.89,26151128,99.08,0,0,0.15,566.28,3090.81,26151129,99.86,0,0,0.31,566,3091.06,26151130,99.88,0,0,0.28,566.23,3090.85,26151131,99.94,0,0,0.16,566.2,3090.88,26151132,99.8,0,0,0.35,566.68,3090.39,26151133,99.94,0,0,0.36,566.32,3090.74,26151134,99.94,0,0,0.15,566.29,3090.77,26151135,99.86,0,0,0.34,566.76,3090.32,26151136,99.94,0,0,0.13,566.74,3090.34,26151137,99.78,0,0,0.36,566.81,3090.27,26151138,99.92,0,0,0.38,566.25,3090.82,26151139,99.92,0.01,0.01,0.14,566.34,3090.72,26151140,99.89,0,0,0.31,566.56,3090.52,26151141,99.93,0,0,0.14,566.53,3090.55,26151142,99.94,0,0,0.16,566.5,3090.57,26151143,99.78,0,0,0.58,566.59,3090.48,26151144,99.94,0,0,0.14,566.19,3090.88,26151145,99.89,0,0,0.34,566.3,3090.77,26151146,99.93,0,0,0.19,566.35,3090.72,26151147,99.94,0,0,0.15,566.32,3090.75,26151148,99.8,0,0,0.55,567.03,3090.04,26151149,99.95,0,0,0.15,566.51,3090.55,26151150,99.89,0,0,0.32,566.5,3090.57,26151151,99.94,0,0,0.16,566.53,3090.55,26151152,99.94,0,0,0.18,566.6,3090.47,26151153,99.82,0,0,0.57,566.92,3090.14,26151154,99.93,0,0,0.14,566.54,3090.52,26151155,99.89,0,0,0.29,566.53,3090.55,26151156,99.93,0,0,0.14,566.5,3090.57,26151157,99.93,0,0,0.16,566.47,3090.6,26151158,99.82,0,0,0.55,566.4,3090.66,26151159,99.8,0,0,0.29,565.87,3091.17,26151160,99.86,0,0,0.34,565.84,3091.22,26151161,99.9,0,0,0.17,565.79,3091.26,26151162,99.93,0,0,0.17,565.76,3091.29,26151163,99.8,0,0,0.6,566.41,3090.64,26151164,99.95,0,0,0.18,565.69,3091.34,26151165,99.83,0,0,0.29,565.79,3091.26,26151166,99.93,0,0,0.14,565.84,3091.21,26151167,99.91,0.01,0.01,0.18,565.8,3091.24,26151168,99.77,0,0,0.56,566.11,3090.93,26151169,99.93,0,0,0.14,565.74,3091.3,26151170,99.85,0,0,0.28,565.73,3091.33,26151171,99.91,0,0,0.18,565.74,3091.31,26151172,99.91,0,0,0.16,565.59,3091.46,26151173,99.8,0,0,0.34,565.94,3091.1,26151174,99.91,0,0,0.38,566.26,3090.78,26151175,99.9,0,0,0.34,565.76,3091.29,26151176,99.92,0.02,0.97,0.29,565.78,3091.27,26151177,99.95,0,0,0.17,565.75,3091.29,26151178,99.75,0,0.02,0.31,566.08,3090.95,26151179,99.94,0,0,0.38,566.49,3090.54,26151180,99.89,0,0,0.28,566.57,3090.48,26151181,99.93,0,0,0.14,566.54,3090.51,26151182,99.9,0,0,0.16,566.5,3090.53,26151183,99.9,0,0,0.17,566.47,3090.57,26151184,99.77,0,0,0.57,566.35,3090.68,26151185,99.89,0,0,0.31,566.46,3090.58,26151186,99.93,0,0,0.14,566.57,3090.47,26151187,99.93,0,0,0.16,566.53,3090.5,26151188,99.93,0,0,0.14,566.5,3090.53,26151189,99.71,0,0,0.7,566.78,3090.23,26151190,99.87,0,0,0.35,566.45,3090.56,26151191,99.92,0,0,0.14,566.48,3090.54,26151192,99.9,0,0,0.13,566.58,3090.43,26151193,99.94,0,0,0.16,566.54,3090.46,26151194,99.79,0,0,0.56,566.86,3090.14,26151195,99.84,0,0,0.34,566.25,3090.76,26151196,99.93,0,0,0.13,566.21,3090.8,26151197,99.92,0,0,0.21,566.18,3090.83,26151198,99.91,0,0,0.14,566.26,3090.74,26151199,99.78,0.01,0.01,0.48,566.93,3090.06,26151200,99.84,0,0,0.32,565.84,3091.18,26151201,99.94,0,0,0.17,565.66,3091.36,26151202,99.92,0,0,0.14,565.51,3091.52,26151203,99.92,0,0,0.14,565.48,3091.55,26151204,99.78,0,0,0.5,566.62,3090.39,26151205,99.83,0,0,0.41,566.64,3090.39,26151206,99.92,0,0,0.14,566.56,3090.47,26151207,99.93,0,0,0.21,566.53,3090.49,26151208,99.93,0,0,0.15,566.5,3090.52,26151209,99.78,0,0,0.48,566.82,3090.2,26151210,99.86,0,0,0.34,566.46,3090.57,26151211,99.94,0,0,0.16,566.53,3090.49,26151212,99.94,0,0,0.14,566.58,3090.44,26151213,99.93,0,0,0.14,566.54,3090.47,26151214,99.79,0,0,0.4,566.91,3090.11,26151215,99.89,0,0,0.41,566.76,3090.27,26151216,99.93,0,0,0.14,566.71,3090.32,26151217,99.93,0,0,0.16,566.68,3090.35,26151218,99.93,0,0,0.14,566.77,3090.25,26151219,99.74,0.01,0.02,0.52,567.13,3089.86,26151220,99.85,0,0,0.52,566.25,3090.76,26151221,99.95,0,0,0.15,566.33,3090.67,26151222,99.95,0,0,0.14,566.3,3090.7,26151223,99.95,0,0,0.19,566.27,3090.73,26151224,99.93,0,0,0.14,566.05,3090.96,26151225,99.73,0,0,0.69,567.02,3090.01,26151226,99.95,0,0,0.17,566.45,3090.57,26151227,99.92,0.01,0.01,0.14,566.47,3090.55,26151228,99.94,0,0,0.16,566.57,3090.44,26151229,99.93,0,0,0.15,566.54,3090.47,26151230,99.75,0,0,0.7,566.89,3090.14,26151231,99.9,0,0,0.23,566.45,3090.58,26151232,99.93,0,0,0.14,566.2,3090.81,26151233,99.92,0,0,0.14,566.17,3090.84,26151234,99.94,0,0,0.15,566.24,3090.76,26151235,99.75,0,0,0.78,566.15,3090.87,26151236,99.92,0,0,0.16,565.28,3091.74,26151237,99.94,0,0,0.16,565.24,3091.77,26151238,99.93,0,0,0.14,565.21,3091.79,26151239,99.88,0,0,0.15,565.23,3091.77,26151240,99.72,0,0,0.7,567.38,3089.64,26151241,99.93,0,0,0.17,566.58,3090.43,26151242,99.95,0,0,0.14,566.56,3090.46,26151243,99.94,0,0,0.16,566.53,3090.48,26151244,99.9,0,0,0.16,566.5,3090.51,26151245,99.77,0,0,0.69,566.92,3090.11,26151246,99.94,0,0,0.16,566.2,3090.81,26151247,99.91,0,0,0.14,566.24,3090.77,26151248,99.92,0,0,0.18,566.32,3090.68,26151249,99.82,0.01,0.02,0.32,566.72,3090.26,26151250,99.74,0,0,0.66,566.97,3090.05,26151251,99.93,0,0,0.15,566.4,3090.61,26151252,99.93,0,0,0.14,566.51,3090.49,26151253,99.91,0,0,0.15,566.51,3090.49,26151254,99.92,0,0,0.14,566.48,3090.52,26151255,99.75,0,0,0.73,567.23,3089.79,26151256,99.94,0,0,0.19,566.68,3090.33,26151257,99.9,0,0,0.22,566.64,3090.36,26151258,99.93,0,0,0.16,566.74,3090.26,26151259,99.93,0.01,0.01,0.14,566.76,3090.24,26151260,99.87,0,0,0.26,567.07,3089.94,26151261,99.76,0,0,0.57,566.85,3090.16,26151262,99.92,0,0,0.14,566.45,3090.56,26151263,99.93,0,0,0.15,566.41,3090.6,26151264,99.93,0,0,0.16,566.47,3090.53,26151265,99.85,0,0,0.3,566.07,3090.95,26151266,99.75,0,0,0.53,566.83,3090.18,26151267,99.94,0,0,0.16,566.46,3090.54,26151268,99.93,0,0,0.14,566.44,3090.57,26151269,99.95,0,0,0.15,566.41,3090.59,26151270,99.82,0,0,0.28,566.94,3090.07,26151271,99.8,0,0,0.59,566.99,3090.02,26151272,99.93,0,0,0.16,566.51,3090.49,26151273,99.92,0,0,0.14,566.48,3090.53,26151274,99.93,0,0,0.15,566.44,3090.58,26151275,99.89,0,0,0.29,566.91,3090.12,26151276,99.8,0,0,0.56,567.09,3089.94,26151277,99.93,0,0,0.2,566.24,3090.79,26151278,99.93,0,0,0.19,566.26,3090.76,26151279,99.85,0,0,0.32,567.21,3089.79,26151280,99.87,0,0,0.3,566.97,3090.04,26151281,99.79,0,0,0.59,567.45,3089.56,26151282,99.94,0,0,0.16,566.89,3090.12,26151283,99.93,0,0,0.13,566.93,3090.07,26151284,99.9,0,0,0.14,567.05,3089.96,26151285,99.87,0,0,0.29,566.55,3090.48,26151286,99.77,0,0,0.55,566.94,3090.09,26151287,99.43,0,0.01,0.18,566.72,3090.3,26151288,99.94,0,0,0.18,566.69,3090.33,26151289,99.9,0,0,0.18,566.66,3090.36,26151290,99.87,0,0,0.35,567,3090.03,26151291,99.72,0,0,0.43,567.33,3089.7,26151292,99.9,0,0,0.3,566.5,3090.51,26151293,99.94,0,0,0.18,566.47,3090.55,26151294,99.92,0,0,0.18,566.44,3090.57,26151295,99.83,0,0,0.29,565.94,3091.08,26151296,99.79,0,0,0.46,566.34,3090.68,26151297,99.94,0,0,0.22,566.79,3090.23,26151298,99.91,0,0,0.17,566.75,3090.26,26151299,99.93,0,0,0.2,566.72,3090.29,26151300,99.84,0,0,0.32,566.7,3090.32,26151301,99.93,0,0,0.14,566.67,3090.35,26151302,99.79,0,0,0.61,566.99,3090.04,26151303,99.93,0,0,0.18,566.72,3090.31,26151304,99.92,0,0,0.18,566.77,3090.25,26151305,99.88,0,0,0.28,567.29,3089.75,26151306,99.54,0,0,0.3,567.62,3089.41,26151307,99.75,0,0,0.59,567.69,3089.35,26151308,99.93,0,0,0.14,566.88,3090.16,26151309,99.87,0,0,0.35,566.95,3090.06,26151310,99.82,0,0,0.28,566.55,3090.48,26151311,99.93,0,0,0.16,566.5,3090.53,26151312,99.78,0,0,0.52,566.93,3090.09,26151313,99.93,0,0,0.16,566.44,3090.58,26151314,99.92,0,0,0.14,566.4,3090.61,26151315,99.86,0,0,0.3,566.64,3090.39,26151316,99.91,0,0,0.14,566.71,3090.32,26151317,99.79,0,0,0.54,566.88,3090.14,26151318,99.95,0,0,0.19,566.48,3090.54,26151319,99.92,0.01,0.01,0.14,566.44,3090.58,26151320,99.9,0,0,0.31,566.67,3090.36,26151321,99.9,0,0,0.16,566.64,3090.38,26151322,99.8,0,0,0.56,566.96,3090.06,26151323,99.93,0,0,0.14,566.51,3090.5,26151324,99.93,0,0,0.18,566.48,3090.53,26151325,99.9,0,0,0.3,565.99,3091.04,26151326,99.93,0,0,0.16,565.94,3091.08,26151327,99.8,0,0,0.45,566.13,3090.89,26151328,99.94,0,0,0.29,565.38,3091.63,26151329,99.94,0,0,0.14,565.52,3091.49,26151330,99.89,0,0,0.29,566.52,3090.51,26151331,99.92,0,0,0.16,566.5,3090.52,26151332,99.77,0,0,0.39,567.07,3089.95,26151333,99.9,0,0,0.29,564.71,3092.31,26151334,99.89,0,0,0.16,564.66,3092.34,26151335,99.85,0,0,0.27,565.99,3091.04,26151336,99.92,0,0.01,0.19,566.02,3091,26151337,99.92,0,0,0.18,565.98,3091.04,26151338,99.81,0,0,0.55,567.33,3089.68,26151339,99.88,0,0,0.38,566.65,3090.34,26151340,99.86,0,0,0.33,565.92,3091.08,26151341,99.95,0,0,0.18,565.98,3091.02,26151342,99.91,0,0,0.18,566.02,3090.97,26151343,99.79,0,0,0.59,567.19,3089.8,26151344,99.94,0,0,0.18,566.69,3090.32,26151345,99.9,0,0,0.34,566.68,3090.35,26151346,99.95,0,0,0.13,566.64,3090.39,26151347,99.93,0,0.01,0.16,566.67,3090.35,26151348,99.79,0,0,0.56,567.17,3089.85,26151349,99.92,0,0,0.14,566.48,3090.54,26151350,99.89,0,0,0.34,566.95,3090.08,26151351,99.91,0,0,0.21,566.88,3090.15,26151352,99.92,0,0,0.18,566.4,3090.62,26151353,99.79,0,0,0.57,566.33,3090.68,26151354,99.91,0,0,0.18,565.21,3091.8,26151355,99.86,0,0,0.29,566.02,3091.01,26151356,99.91,0,0,0.16,566,3091.03,26151357,99.9,0,0,0.15,565.96,3091.06,26151358,99.78,0,0,0.49,566.41,3090.61,26151359,99.92,0,0,0.19,566.39,3090.63,26151360,99.85,0,0,0.29,566.38,3090.65,26151361,99.93,0,0,0.15,566.44,3090.58,26151362,99.93,0,0,0.16,566.5,3090.52,26151363,99.8,0,0,0.53,566.89,3090.13,26151364,99.94,0,0,0.16,566.69,3090.32,26151365,99.88,0,0,0.36,566.94,3090.08,26151366,99.94,0,0,0.18,566.88,3090.14,26151367,99.92,0,0,0.17,566.85,3090.16,26151368,99.79,0,0,0.32,567.56,3089.45,26151369,99.87,0,0,0.5,566.46,3090.52,26151370,99.86,0,0,0.32,566.23,3090.78,26151371,99.91,0,0,0.18,566.18,3090.81,26151372,99.9,0,0,0.19,566.15,3090.85,26151373,99.92,0,0,0.18,566.11,3090.88,26151374,99.8,0,0,0.59,566.87,3090.11,26151375,99.82,0,0,0.34,566.87,3090.12,26151376,99.91,0,0,0.18,566.74,3090.26,26151377,99.93,0,0,0.22,566.71,3090.28,26151378,99.94,0,0,0.18,566.68,3090.31,26151379,99.76,0.01,0.01,0.54,567.21,3089.77,26151380,99.9,0,0,0.32,566.87,3090.13,26151381,99.91,0,0,0.14,566.94,3090.06,26151382,99.92,0,0,0.13,566.99,3090,26151383,99.93,0,0,0.16,566.95,3090.04,26151384,99.8,0,0,0.55,566.72,3090.26,26151385,99.87,0,0,0.34,566.41,3090.59,26151386,99.94,0,0,0.18,566.38,3090.61,26151387,99.95,0,0,0.18,566.35,3090.64,26151388,99.94,0,0,0.18,566.45,3090.54,26151389,99.77,0,0,0.57,567.11,3089.88,26151390,99.89,0,0,0.3,566.96,3090.05,26151391,99.95,0,0,0.18,566.93,3090.07,26151392,99.93,0,0,0.18,566.9,3090.1,26151393,99.93,0,0,0.17,566.86,3090.13,26151394,99.76,0,0,0.59,567.16,3089.83,26151395,99.78,0,0,0.29,566.98,3090.01,26151396,99.94,0,0,0.14,566.95,3090.04,26151397,99.91,0,0,0.16,566.92,3090.07,26151398,99.95,0,0,0.14,566.88,3090.1,26151399,94.9,0.28,0.01,77.84,579.92,3077.2,26151400,99.64,0,0,180.22,569.28,3087.85,26151401,99.89,0,0,0.23,569.35,3087.78,26151402,99.86,0,0,0.14,569.39,3087.73,26151403,99.91,0,0,0.16,569.36,3087.76,26151404,99.72,0,0,0.42,569.54,3087.58,26151405,99.83,0,0,0.43,567.16,3090.01,26151406,99.9,0,0,0.14,567.13,3090.04,26151407,99.89,0,0.01,0.14,567.1,3090.06,26151408,99.9,0,0,0.16,567.18,3089.98,26151409,99.72,0,0,0.3,567.57,3089.58,26151410,99.88,0,0,0.54,566.71,3090.48,26151411,99.86,0,0,0.16,566.67,3090.54,26151412,99.85,0,0,0.17,566.4,3090.81,26151413,99.78,0,0,0.16,566.36,3090.85,26151414,99.87,0,0,0.13,566.33,3090.87,26151415,99.7,0,0,0.68,567.03,3090.19,26151416,99.88,0,0,0.16,566.73,3090.49,26151417,99.82,0,0,0.14,566.7,3090.51,26151418,99.85,0,0,0.18,566.66,3090.54,26151419,99.89,0,0,0.15,566.62,3090.59,26151420,99.61,0,0,0.7,566.82,3090.4,26151421,99.86,0,0,0.17,566.49,3090.72,26151422,99.84,0,0,0.13,566.45,3090.76,26151423,99.81,0,0,0.16,566.42,3090.78,26151424,99.83,0,0,0.13,566.39,3090.81,26151425,99.66,0,0,0.6,567.15,3090.06,26151426,99.85,0,0,0.29,566.83,3090.38,26151427,99.83,0,0,0.17,566.92,3090.28,26151428,99.88,0,0,0.14,566.95,3090.25,26151429,99.82,0,0,0.31,567.17,3090.01,26151430,99.67,0,0,0.66,567.81,3089.38,26151431,99.88,0,0,0.17,567.37,3089.82,26151432,99.85,0,0,0.14,567.34,3089.85,26151433,99.86,0,0,0.16,567.31,3089.88,26151434,99.85,0,0,0.15,567.43,3089.75,26151435,99.67,0,0,0.7,567.35,3089.84,26151436,99.83,0,0,0.17,567.2,3090,26151437,99.83,0.01,0.02,0.2,567.15,3090.04,26151438,99.84,0,0,0.15,567.09,3090.09,26151439,99.84,0.01,0.01,0.14,567.17,3090.01,26151440,99.68,0,0,0.46,567.32,3089.88,26151441,99.79,0,0,0.38,566.69,3090.5,26151442,99.84,0,0,0.14,566.64,3090.55,26151443,99.86,0,0,0.14,566.6,3090.58,26151444,99.86,0,0,0.18,566.66,3090.52,26151445,99.8,0,0,0.32,567.22,3089.97,26151446,99.71,0,0,0.53,567.33,3089.86,26151447,99.85,0,0,0.16,566.91,3090.28,26151448,99.86,0,0,0.15,566.87,3090.31,26151449,99.84,0,0,0.18,566.84,3090.34,26151450,99.82,0,0,0.29,566.84,3090.36,26151451,99.72,0,0,0.57,567.97,3089.22,26151452,99.86,0,0,0.16,567.69,3089.5,26151453,99.85,0,0,0.14,567.65,3089.53,26151454,99.87,0,0,0.16,567.62,3089.56,26151455,99.78,0,0,0.28,567.36,3089.83,26151456,99.72,0,0,0.55,568,3089.2,26151457,99.85,0,0,0.16,567.41,3089.79,26151458,99.85,0,0,0.15,567.46,3089.74,26151459,99.79,0,0,0.28,566.92,3090.25,26151460,99.79,0,0,0.29,567.39,3089.8,26151461,99.72,0,0,0.55,567.71,3089.47,26151462,99.84,0,0,0.16,567.1,3090.08,26151463,99.85,0,0,0.16,567.07,3090.11,26151464,99.83,0,0,0.14,567.09,3090.08,26151465,99.8,0,0,0.42,567.22,3089.97,26151466,99.71,0,0,0.52,567.53,3089.65,26151467,99.83,0.01,0.01,0.2,566.73,3090.46,26151468,99.86,0,0,0.17,566.37,3090.81,26151469,97.94,0,0,0.16,566.34,3090.84,26151470,99.77,0,0,0.3,566.37,3090.82,26151471,99.7,0,0,0.57,566.86,3090.33,26151472,99.85,0,0,0.21,566.44,3090.74,26151473,99.85,0,0,0.17,566.2,3090.98,26151474,99.87,0,0,0.19,566.12,3091.05,26151475,99.77,0,0,0.34,566.83,3090.36,26151476,99.74,0,0,0.43,567.09,3090.1,26151477,99.83,0,0,0.31,566.36,3090.82,26151478,99.85,0,0,0.14,566.49,3090.69,26151479,99.83,0,0,0.14,566.46,3090.72,26151480,99.74,0,0,0.29,566.69,3090.5,26151481,99.73,0,0,0.31,567.01,3090.17,26151482,99.82,0,0,0.41,566.87,3090.31,26151483,99.85,0,0,0.14,566.84,3090.34,26151484,99.84,0,0,0.14,566.86,3090.31,26151485,99.8,0,0,0.3,566.74,3090.44,26151486,99.81,0,0,0.14,566.7,3090.48,26151487,99.67,0,0,0.56,567.03,3090.15,26151488,99.86,0,0,0.15,566.63,3090.55,26151489,99.78,0,0,0.43,566.85,3090.3,26151490,99.79,0,0,0.33,567.09,3090.08,26151491,99.84,0,0,0.14,567.16,3090,26151492,99.69,0,0,0.53,567.23,3089.93,26151493,99.85,0,0,0.16,566.68,3090.47,26151494,99.85,0,0,0.14,566.65,3090.5,26151495,99.77,0,0,0.29,566.9,3090.27,26151496,99.85,0,0,0.16,566.86,3090.3,26151497,99.71,0,0,0.47,567.54,3089.62,26151498,99.84,0,0,0.32,566.9,3090.25,26151499,99.83,0.01,0.01,0.14,566.95,3090.2,26151500,99.79,0,0,0.33,566.7,3090.47,26151501,99.85,0,0,0.15,566.65,3090.51,26151502,99.69,0,0,0.54,567.21,3089.94,26151503,99.87,0,0,0.15,567.07,3090.08,26151504,99.84,0,0,0.14,567.1,3090.05,26151505,99.79,0,0,0.34,566.98,3090.18,26151506,99.84,0,0,0.18,566.93,3090.23,26151507,99.69,0,0,0.42,567.24,3089.91,26151508,99.85,0,0,0.29,566.86,3090.29,26151509,99.84,0,0,0.15,566.83,3090.32,26151510,99.77,0,0,0.34,566.57,3090.59,26151511,99.85,0,0,0.18,566.66,3090.5,26151512,99.72,0,0,0.43,567.04,3090.11,26151513,99.87,0,0,0.32,566.65,3090.5,26151514,99.85,0,0,0.18,566.61,3090.53,26151515,99.82,0,0,0.29,566.37,3090.79,26151516,99.84,0,0,0.14,566.33,3090.83,26151517,99.87,0,0,0.16,566.36,3090.79,26151518,99.72,0,0,0.57,566.81,3090.34,26151519,99.79,0,0,0.38,566.7,3090.43,26151520,99.78,0,0,0.29,566.9,3090.24,26151521,99.85,0,0,0.16,566.86,3090.28,26151522,99.83,0,0,0.14,566.84,3090.3,26151523,99.71,0,0,0.59,567.3,3089.83,26151524,99.86,0,0,0.13,566.6,3090.52,26151525,99.76,0,0,0.3,567.27,3089.87,26151526,99.84,0,0,0.17,567.2,3089.94,26151527,99.86,0,0.01,0.14,567.16,3089.97,26151528,99.71,0,0,0.55,567.57,3089.56,26151529,99.86,0,0,0.14,567.09,3090.03,26151530,99.8,0,0,0.29,567.09,3090.06,26151531,99.87,0,0,0.14,567.15,3089.99,26151532,99.82,0,0,0.19,566.96,3090.18,26151533,99.72,0,0,0.4,567.39,3089.74,26151534,99.86,0,0,0.29,567.13,3089.99,26151535,99.79,0,0,0.32,565.7,3091.46,26151536,99.84,0,0,0.17,565.61,3091.55,26151537,99.83,0,0,0.12,565.63,3091.52,26151538,99.71,0,0,0.56,566.47,3090.68,26151539,99.83,0,0,0.22,566.93,3090.21,26151540,99.81,0,0,0.29,567.16,3089.99,26151541,99.83,0,0,0.15,567.13,3090.02,26151542,99.85,0,0,0.14,567.1,3090.05,26151543,99.72,0,0,0.4,567.72,3089.42,26151544,99.86,0,0,0.29,567.08,3090.05,26151545,99.83,0,0,0.3,566.49,3090.67,26151546,99.85,0,0,0.13,566.44,3090.71,26151547,99.85,0,0,0.16,566.41,3090.73,26151548,99.85,0,0,0.14,566.38,3090.76,26151549,99.6,0,0,0.68,567.41,3089.7,26151550,99.81,0,0,0.27,567.31,3089.82,26151551,99.84,0,0,0.16,567.37,3089.75,26151552,99.58,0,0,0.15,567.32,3089.81,26151553,99.85,0,0,0.16,567.14,3089.98,26151554,99.71,0,0,0.53,567.46,3089.66,26151555,99.8,0,0,0.29,567.1,3090.03,26151556,99.84,0,0,0.15,567.06,3090.07,26151557,99.86,0,0,0.2,566.78,3090.34,26151558,99.87,0,0,0.15,566.9,3090.22,26151559,99.72,0.01,0.01,0.55,567.25,3089.89,26151560,99.82,0,0,0.3,566.89,3090.26,26151561,99.86,0,0,0.14,566.85,3090.29,26151562,99.85,0,0,0.16,566.82,3090.32,26151563,99.86,0,0,0.14,566.79,3090.34,26151564,99.73,0,0,0.55,567.02,3090.11,26151565,99.78,0,0,0.27,567.18,3089.97,26151566,99.85,0,0,0.16,567.15,3089.99,26151567,99.87,0,0,0.14,567.12,3090.02,26151568,99.87,0,0,0.16,567.09,3090.05,26151569,99.72,0,0,0.59,567.91,3089.22,26151570,99.78,0,0,0.31,567.06,3090.09,26151571,99.86,0,0,0.18,567.02,3090.12,26151572,99.85,0,0,0.16,567.14,3090,26151573,99.86,0,0,0.17,567.17,3089.96,26151574,99.73,0,0,0.44,567.79,3089.34,26151575,99.79,0,0,0.45,567.13,3090.02,26151576,99.85,0,0,0.16,567.09,3090.05,26151577,99.86,0,0,0.21,567.06,3090.08,26151578,99.83,0,0,0.17,567.09,3090.05,26151579,99.66,0,0,0.71,567.7,3089.41,26151580,99.81,0,0,0.38,567.5,3089.62,26151581,99.85,0,0,0.16,567.37,3089.74,26151582,99.85,0,0,0.15,567.34,3089.78,26151583,99.84,0,0,0.14,567.3,3089.81,26151584,99.86,0,0,0.16,567.27,3089.84,26151585,99.66,0,0,0.68,567.77,3089.36,26151586,99.88,0,0,0.16,567.41,3089.71,26151587,99.87,0.01,0.01,0.14,567.36,3089.75,26151588,99.91,0,0,0.14,567.33,3089.78,26151589,99.91,0,0,0.16,567.29,3089.81,26151590,95.75,0,0,0.67,567.42,3089.72,26151591,99.95,0,0,0.15,567.16,3089.98,26151592,99.9,0,0,0.19,566.7,3090.43,26151593,99.94,0,0,0.15,566.65,3090.48,26151594,99.93,0,0,0.17,566.62,3090.51,26151595,99.74,0,0,0.7,567.45,3089.7,26151596,99.91,0,0,0.15,567.06,3090.07,26151597,99.94,0,0,0.14,567.03,3090.1,26151598,99.93,0,0,0.16,567.13,3090.02,26151599,99.95,0,0,0.17,567.16,3089.98,26151600,99.75,0,0,0.6,567.75,3089.41,26151601,99.94,0,0,0.25,567.37,3089.79,26151602,99.92,0,0,0.14,567.34,3089.81,26151603,99.91,0,0,0.15,567.31,3089.84,26151604,99.93,0,0,0.14,567.27,3089.88,26151605,99.77,0,0,0.64,567.87,3089.29,26151606,99.93,0,0,0.22,566.91,3090.24,26151607,99.93,0,0,0.14,566.87,3090.28,26151608,99.94,0,0,0.14,566.84,3090.31,26151609,99.88,0,0,0.3,567.53,3089.59,26151610,99.78,0,0,0.71,568.06,3089.07,26151611,99.95,0,0,0.15,567.34,3089.78,26151612,99.6,0,0,0.14,567.38,3089.74,26151613,99.93,0,0,0.17,567.35,3089.77,26151614,99.94,0,0,0.14,567.31,3089.82,26151615,99.73,0,0,0.53,567.33,3089.82,26151616,99.91,0,0,0.35,566.28,3090.87,26151617,99.92,0,0,0.21,566.61,3090.54,26151618,99.93,0,0,0.14,565.7,3091.44,26151619,99.92,0.01,0.01,0.16,565.66,3091.48,26151620,99.72,0,0,0.53,566,3091.14,26151621,99.94,0,0,0.38,565.85,3091.3,26151622,99.93,0,0,0.14,565.81,3091.32,26151623,99.93,0,0,0.14,565.85,3091.29,26151624,99.94,0,0,0.16,565.93,3091.2,26151625,99.9,0,0,0.34,566.65,3090.5,26151626,99.77,0,0,0.56,566.75,3090.39,26151627,99.93,0,0,0.14,566.34,3090.8,26151628,99.91,0,0,0.18,566.31,3090.86,26151629,99.94,0,0,0.15,566.27,3090.89,26151630,99.83,0,0,0.35,566.64,3090.54,26151631,99.79,0,0,0.55,567.4,3089.78,26151632,99.93,0,0,0.15,567.12,3090.06,26151633,99.93,0,0,0.18,567.07,3090.1,26151634,99.94,0,0,0.16,567.03,3090.13,26151635,99.85,0,0,0.31,566.61,3090.58,26151636,99.8,0,0,0.59,567.53,3089.65,26151637,99.95,0,0,0.16,566.89,3090.28,26151638,99.93,0,0,0.14,566.86,3090.31,26151639,99.81,0,0,0.28,566.82,3090.32,26151640,99.86,0,0,0.37,565.86,3091.3,26151641,99.8,0,0,0.6,566.54,3090.62,26151642,99.94,0,0,0.15,566.15,3091.01,26151643,99.94,0,0,0.14,566.15,3091,26151644,99.93,0,0,0.15,566.12,3091.04,26151645,99.83,0.04,0.09,0.47,565.4,3091.78,26151646,99.78,0.01,0.05,0.6,566.13,3091.03,26151647,99.93,0,0.01,0.22,566.08,3091.08,26151648,99.93,0.01,0.08,0.17,566.07,3091.08,26151649,99.93,0,0.01,0.19,566.15,3090.99,26151650,99.88,0,0.01,0.32,566.85,3090.31,26151651,99.8,0,0,0.48,567.2,3089.95,26151652,99.89,0,0.02,0.39,566.59,3090.56,26151653,99.91,0,0,0.14,566.51,3090.64,26151654,99.95,0,0,0.16,566.62,3090.51,26151655,99.84,0,0,0.36,566.66,3090.49,26151656,99.94,0,0,0.18,566.62,3090.53,26151657,99.78,0,0,0.56,567.38,3089.76,26151658,99.92,0,0,0.19,567.05,3090.09,26151659,99.93,0,0,0.18,567.01,3090.12,26151660,99.85,0,0,0.31,565.31,3091.84,26151661,99.94,0,0,0.16,565.36,3091.79,26151662,99.8,0,0,0.56,567.11,3090.03,26151663,99.92,0,0,0.14,566.85,3090.29,26151664,99.93,0,0,0.15,566.81,3090.32,26151665,99.91,0,0,0.34,567.04,3090.11,26151666,99.9,0,0,0.14,567.01,3090.13,26151667,99.79,0,0,0.55,567.35,3089.79,26151668,99.94,0,0,0.14,567.13,3090,26151669,99.88,0,0,0.28,567.1,3090.02,26151670,99.87,0,0,0.31,565.88,3091.26,26151671,99.92,0,0.01,0.15,565.79,3091.34,26151672,99.77,0,0,0.69,566.89,3090.24,26151673,99.58,0,0,0.23,566.51,3090.62,26151674,99.93,0,0,0.16,566.62,3090.51,26151675,99.84,0,0,0.31,567.09,3090.05,26151676,99.94,0,0,0.16,567.07,3090.07,26151677,99.78,0,0,0.67,567.31,3089.81,26151678,99.93,0,0,0.21,566.75,3090.37,26151679,99.9,0.01,0.01,0.15,566.71,3090.41,26151680,99.88,0,0,0.29,567.1,3090.03,26151681,99.92,0,0,0.14,567.09,3090.04,26151682,99.8,0,0,0.5,567.21,3089.92,26151683,99.95,0,0,0.2,566.53,3090.59,26151684,99.94,0,0,0.15,566.5,3090.62,26151685,99.89,0,0,0.3,566.73,3090.4,26151686,99.95,0,0,0.14,566.81,3090.33,26151687,99.8,0,0,0.4,567.26,3089.87,26151688,99.93,0,0,0.29,567.07,3090.05,26151689,99.93,0,0,0.18,567.04,3090.08,26151690,99.87,0,0,0.3,566.8,3090.33,26151691,99.94,0,0,0.14,566.75,3090.38,26151692,99.77,0,0,0.34,567.44,3089.69,26151693,99.93,0.02,2.04,0.62,567,3090.1,26151694,99.93,0.02,1,0.22,567.01,3090.08,26151695,99.83,0.01,0.95,0.38,567.05,3090.05,26151696,99.93,0,0,0.19,567.05,3090.03,26151697,99.92,0.03,0.07,0.41,567.16,3089.9,26151698,99.78,0.11,0.01,0.69,567.56,3089.48,26151699,99.83,0.05,0,0.49,567.16,3089.8,26151700,99.88,0,0,0.31,567.22,3089.76,26151701,99.92,0,0,0.15,567.26,3089.71,26151702,99.9,0,0.01,0.16,567.23,3089.74,26151703,99.8,0.01,0.03,0.57,567.31,3089.64,26151704,99.95,0,0,0.21,566.67,3090.27,26151705,99.89,0,0,0.3,566.89,3090.07,26151706,99.93,0,0,0.16,567.02,3089.94,26151707,99.92,0,0.01,0.14,566.98,3089.97,26151708,99.74,0.01,0.01,0.76,567.87,3089.06,26151709,89.67,29.39,0.24,174.63,594.9,3055.53,26151710,99.84,0.02,0,70.28,574.14,3049.87,26151711,99.94,0,0,0.17,574.38,3049.65,26151712,98.36,0.02,0.01,0.23,579.4,3044.63,26151713,80.09,0.05,3.83,8.06,847.95,2775.91,26151714,99.91,0.03,1.98,0.25,575.87,3048.01,26151715,99.88,0,0,0.36,573.78,3050.13,26151716,99.94,0.02,0,0.18,573.79,3050.11,26151717,99.94,0.02,0,0.18,573.72,3050.18,26151718,99.8,0,0,0.58,574.12,3049.78,26151719,99.91,0,0,0.15,573.57,3050.32,26151720,99.17,0.02,0,0.44,572.77,3051.18,26151721,99.93,0,0,0.13,570.56,3053.39,26151722,79.57,0.04,1.92,4.65,930.17,2693.74,26151723,99.57,0.01,0.95,0.67,821.03,2802.89,26151724,99.88,0,0,0.18,619.93,3003.98,26151725,99.88,0,0,0.34,619.92,3004.02,26151726,99.9,0,0,0.19,619.89,3004.05,26151727,79.71,0.03,0.94,4.7,865.04,2758.84,26151728,99.59,0.03,3.81,0.58,852.14,2771.76,26151729,99.79,0.06,2.89,0.5,613.93,3009.89,26151730,99.88,0,0.01,0.41,574.56,3049.27,26151731,99.94,0.01,0.94,0.18,574.57,3049.26,26151732,99.93,0,0.01,0.21,574.5,3049.31,26151733,99.76,0.03,3.77,0.48,574.8,3049.01,26151734,99.8,0.07,7.76,0.61,574.18,3049.6,26151735,99.83,0.05,3.44,0.49,574.17,3049.59,26151736,99.92,0.02,0.95,0.3,574.3,3049.43,26151737,99.91,0.02,1.89,0.26,574.32,3049.39,26151738,99.92,0,0,0.19,574.27,3049.43,26151739,83.48,0.02,0.02,1.43,692.77,2930.88,26151740,75,0.13,7.67,8.36,1098.45,2525.2,26151741,99.87,0.04,3.58,0.55,1088.53,2535.14,26151742,99.77,0.01,0.13,0.27,690.14,2933.51,26151743,99.9,0.01,1.89,0.32,619.33,3004.31,26151744,99.78,0.01,0.01,0.62,590.94,3032.69,26151745,99.85,0,0,0.34,574.25,3049.4,26151746,99.94,0.04,1.87,0.15,574.24,3049.4,26151747,99.9,0.03,2.78,0.3,574.29,3049.34,26151748,99.93,0,0,0.14,574.29,3049.33,26151749,99.76,0.03,0.11,0.74,574.91,3048.71,26151750,99.83,0.25,0.05,0.62,574.46,3049.13,26151751,80.5,0.01,0.03,1.78,718.06,2905.6,26151752,88.85,0.03,1.82,3.66,996.15,2627.52,26151753,89.69,0.04,1.96,4.36,1115.06,2508.57,26151754,99.56,0.06,3.8,0.85,668.48,2955.14,26151755,99.84,0,0.01,0.36,621.73,3001.89,26151756,99.91,0.02,0.02,0.24,621.77,3001.85,26151757,79.63,0.08,5.72,4.79,1082.61,2540.94,26151758,99.74,0.03,3.46,0.28,691.4,2932.17,26151759,99.71,0.02,2.31,0.8,622.05,3001.49,26151760,99.9,0,0,0.32,621.61,3001.95,26151761,99.92,0,0,0.15,621.57,3001.98,26151762,99.89,0.09,4.89,0.24,621.66,3001.89,26151763,99.88,0.04,5.14,0.4,584.62,3038.89,26151764,96.67,0.05,4.66,14.55,584.96,3040.63,26151765,99.82,0,0.01,64.15,577.45,3045.94,26151766,99.93,0,0,0.14,577.39,3045.98,26151767,99.91,0.03,2.7,0.3,577.36,3046,26151768,99.87,0.05,5.51,0.55,577.33,3045.98,26151769,99.93,0,0,0.18,577.18,3046.11,26151770,99.74,0,0,0.7,575.27,3048.1,26151771,99.93,0,0,0.17,574.96,3048.4,26151772,99.91,0,0,0.18,574.52,3048.84,26151773,99.91,0.06,4.12,0.22,573.75,3049.59,26151774,99.91,0.01,0.41,0.26,573.61,3049.69,26151775,99.67,0.1,9.55,0.98,574.51,3048.77,26151776,99.95,0,0.01,0.25,574.1,3049.14,26151777,99.95,0,0,0.18,574.06,3049.17,26151778,99.93,0,0,0.14,574.03,3049.19,26151779,99.94,0,0,0.16,574,3049.22,26151780,99.66,0,0,0.75,574.54,3048.69,26151781,99.95,0,0,0.13,574.2,3049.03,26151782,99.91,0,0,0.14,574.28,3048.94,26151783,99.93,0,0,0.16,574.33,3048.89,26151784,99.94,0,0,0.14,574.31,3048.91,26151785,99.74,0,0,0.7,574.52,3048.71,26151786,99.95,0,0,0.16,574.03,3049.2,26151787,99.95,0,0,0.14,573.99,3049.23,26151788,99.95,0,0,0.14,573.97,3049.26,26151789,99.89,0,0,0.3,573.94,3049.26,26151790,99.74,0,0,0.71,573.81,3049.4,26151791,99.93,0,0,0.16,572.11,3051.1,26151792,99.91,0,0,0.16,572.07,3051.13,26151793,99.93,0,0,0.14,572.04,3051.16,26151794,99.93,0,0,0.14,572.02,3051.18,26151795,99.7,0.02,0.94,0.75,573.39,3049.83,26151796,99.93,0.01,0.21,0.25,573.03,3050.17,26151797,99.93,0.03,1.1,0.28,573.29,3049.9,26151798,99.93,0.02,0.16,0.24,573.25,3049.91,26151799,99.92,0.01,0.01,0.19,573.23,3049.93,26151800,99.73,0,0.01,0.59,574.32,3048.85,26151801,99.94,0,0.02,0.3,574.22,3048.95,26151802,99.93,0,0,0.14,574.18,3048.98,26151803,99.91,0,0,0.16,574.14,3049.01,26151804,99.9,0,0,0.14,574.19,3048.97,26151805,99.86,0,0,0.32,574.06,3049.1,26151806,99.8,0,0,0.55,574.11,3049.05,26151807,99.94,0,0,0.16,573.74,3049.42,26151808,99.93,0,0,0.14,573.71,3049.44,26151809,99.95,0,0,0.16,573.68,3049.47,26151810,99.82,0,0,0.35,572.71,3050.45,26151811,99.76,0,0,0.57,574.3,3048.86,26151812,99.95,0,0,0.17,574.02,3049.13,26151813,99.95,0,0,0.14,573.99,3049.17,26151814,99.93,0,0,0.16,573.95,3049.2,26151815,99.9,0,0,0.31,574.18,3048.99,26151816,99.8,0,0,0.6,574.51,3048.65,26151817,99.93,0,0,0.15,574.13,3049.03,26151818,99.92,0,0,0.16,574.26,3048.89,26151819,99.8,0,0,0.3,574.27,3048.86,26151820,99.89,0,0,0.36,574.74,3048.4,26151821,99.8,0,0,0.6,575.07,3048.07,26151822,99.95,0,0,0.14,574.19,3048.94,26151823,99.94,0,0,0.14,574.17,3048.96,26151824,99.93,0,0,0.17,574.13,3049.01,26151825,99.9,0,0,0.34,574.25,3048.91,26151826,99.79,0,0,0.53,574.05,3049.1,26151827,99.93,0,0.01,0.25,572.78,3050.37,26151828,99.9,0,0,0.2,572.74,3050.41,26151829,99.93,0,0,0.16,572.7,3050.44,26151830,99.89,0,0,0.35,573.9,3049.26,26151831,99.8,0,0,0.54,574.31,3048.84,26151832,99.9,0,0,0.2,574.28,3048.87,26151833,99.94,0,0,0.14,574.27,3048.88,26151834,99.91,0,0,0.18,574.24,3048.9,26151835,99.91,0,0,0.32,573.74,3049.42,26151836,99.79,0,0,0.4,574.27,3048.89,26151837,99.93,0,0,0.3,574.42,3048.73,26151838,99.94,0,0,0.14,574.39,3048.76,26151839,99.96,0,0,0.14,574.43,3048.72,26151840,99.83,0,0,0.3,573.57,3049.59,26151841,99.82,0,0,0.41,573.97,3049.18,26151842,99.94,0,0,0.32,574.23,3048.92,26151843,99.94,0,0,0.14,574.21,3048.94,26151844,99.93,0,0,0.14,574.18,3048.96,26151845,99.9,0,0,0.32,574.17,3048.99,26151846,99.93,0,0,0.15,574.14,3049.01,26151847,99.81,0,0,0.61,574.32,3048.82,26151848,99.94,0,0,0.16,574.02,3049.12,26151849,99.87,0,0,0.3,574.48,3048.63,26151850,99.87,0,0,0.34,573.74,3049.39,26151851,99.94,0,0,0.13,573.7,3049.43,26151852,99.8,0,0,0.57,574.79,3048.33,26151853,99.93,0,0,0.14,574.62,3048.5,26151854,99.93,0,0,0.15,574.65,3048.46,26151855,99.84,0,0,0.31,574.29,3048.84,26151856,99.93,0,0,0.16,574.25,3048.88,26151857,99.8,0,0,0.58,574.61,3048.51,26151858,99.95,0,0,0.14,574.19,3048.93,26151859,99.91,0.01,0.01,0.16,574.17,3048.94,26151860,99.88,0,0,0.34,574.63,3048.5,26151861,99.94,0,0,0.15,574.61,3048.51,26151862,99.8,0,0,0.41,574.94,3048.18,26151863,99.94,0,0,0.3,574.49,3048.63,26151864,99.93,0,0,0.13,574.47,3048.65,26151865,99.88,0,0,0.31,574.46,3048.67,26151866,99.93,0,0,0.16,574.43,3048.7,26151867,99.77,0,0,0.55,574.85,3048.27,26151868,99.92,0,0,0.16,574.61,3048.5,26151869,99.93,0,0,0.14,574.59,3048.53,26151870,99.9,0,0,0.35,574.79,3048.34,26151871,99.93,0,0,0.16,574.76,3048.36,26151872,99.79,0,0,0.55,574.74,3048.38,26151873,99.9,0,0,0.13,573.46,3049.65,26151874,99.93,0,0,0.16,573.43,3049.68,26151875,99.89,0,0,0.36,573.91,3049.22,26151876,99.92,0,0,0.16,573.89,3049.23,26151877,99.76,0,0,0.36,574.78,3048.34,26151878,99.95,0,0,0.36,574.5,3048.61,26151879,99.84,0,0,0.29,574.23,3048.86,26151880,99.88,0,0,0.36,574.71,3048.4,26151881,99.92,0,0,0.12,574.68,3048.43,26151882,99.93,0,0,0.19,574.65,3048.45,26151883,99.79,0,0,0.57,574.43,3048.67,26151884,99.94,0,0,0.16,573.96,3049.13,26151885,99.87,0,0,0.34,574.76,3048.35,26151886,99.92,0,0,0.17,574.73,3048.37,26151887,99.9,0,0.01,0.18,574.7,3048.4,26151888,99.78,0.01,0,0.54,574.35,3048.75,26151889,99.93,0,0,0.14,573.65,3049.44,26151890,99.85,0,0,0.32,574.13,3048.98,26151891,99.93,0,0,0.15,574.21,3048.9,26151892,99.93,0,0,0.18,572.43,3050.7,26151893,99.8,0,0,0.51,571.95,3051.2,26151894,99.93,0,0,0.2,571.87,3051.28,26151895,99.88,0,0,0.35,571.62,3051.54,26151896,99.95,0,0,0.15,571.59,3051.57,26151897,99.91,0,0,0.16,571.56,3051.59,26151898,99.8,0.01,0.01,0.41,571.99,3051.16,26151899,99.92,0,0,0.28,571.67,3051.48,26151900,99.86,0,0,0.32,571.46,3051.71,26151901,99.92,0,0,0.15,571.38,3051.77,26151902,99.93,0,0,0.13,571.35,3051.8,26151903,99.79,0,0,0.51,571.45,3051.7,26151904,99.93,0,0,0.2,570.79,3052.35,26151905,99.88,0,0,0.3,570.85,3052.32,26151906,99.92,0,0,0.14,570.95,3052.21,26151907,99.94,0,0,0.16,570.92,3052.24,26151908,99.8,0,0,0.39,571.48,3051.67,26151909,99.86,0,0,0.45,572.05,3051.08,26151910,99.81,0,0,0.38,571.59,3051.56,26151911,99.95,0,0,0.18,571.53,3051.61,26151912,99.93,0,0,0.15,571.62,3051.52,26151913,99.78,0,0,0.47,572.04,3051.09,26151914,99.94,0,0,0.24,572.12,3051.02,26151915,99.9,0,0,0.34,571.87,3051.3,26151916,99.93,0,0,0.18,571.84,3051.34,26151917,99.92,0,0,0.19,571.81,3051.36,26151918,99.78,0,0,0.46,572.14,3051.03,26151919,99.93,0.01,0.01,0.29,571.82,3051.35,26151920,99.88,0,0,0.32,571.96,3051.23,26151921,99.93,0,0,0.14,571.93,3051.24,26151922,99.93,0,0,0.17,571.91,3051.27,26151923,99.95,0,0,0.14,571.87,3051.3,26151924,99.79,0,0,0.57,571.97,3051.2,26151925,99.86,0,0,0.34,571.11,3052.08,26151926,99.93,0,0,0.16,571.07,3052.11,26151927,99.93,0,0,0.14,570.83,3052.34,26151928,99.93,0,0,0.15,570.21,3052.96,26151929,99.78,0,0,0.54,571.54,3051.62,26151930,99.85,0,0,0.31,571.16,3052.03,26151931,99.93,0,0,0.17,571.13,3052.05,26151932,99.93,0,0,0.18,571.1,3052.08,26151933,99.93,0,0,0.15,571.06,3052.11,26151934,99.8,0,0,0.46,571.84,3051.33,26151935,99.86,0,0,0.46,570.97,3052.21,26151936,99.93,0,0,0.15,570.94,3052.23,26151937,99.95,0,0,0.14,570.91,3052.26,26151938,99.92,0,0,0.16,570.88,3052.29,26151939,99.66,0,0,0.65,571.76,3051.38,26151940,99.85,0,0,0.38,571.32,3051.84,26151941,99.91,0,0,0.16,571.29,3051.86,26151942,99.94,0,0,0.15,571.41,3051.74,26151943,99.92,0,0,0.14,571.42,3051.73,26151944,99.78,0,0,0.55,571.62,3051.52,26151945,99.9,0,0,0.34,571.63,3051.53,26151946,99.91,0,0,0.14,571.61,3051.54,26151947,99.92,0,0.01,0.14,571.58,3051.57,26151948,99.93,0,0,0.16,571.55,3051.6,26151949,99.81,0,0,0.56,571.87,3051.27,26151950,99.88,0,0,0.32,571.21,3051.95,26151951,99.91,0,0,0.14,571.17,3051.98,26151952,99.89,0,0,0.2,570.78,3052.37,26151953,99.93,0,0,0.14,570.62,3052.53,26151954,99.37,0,0,0.3,571.25,3051.89,26151955,99.84,0,0,0.6,570.56,3052.59,26151956,99.88,0,0,0.14,570.57,3052.57,26151957,99.92,0,0,0.16,570.69,3052.45,26151958,99.9,0,0,0.14,570.67,3052.47,26151959,99.95,0,0,0.15,570.64,3052.5,26151960,99.66,0,0,0.73,571.51,3051.64,26151961,99.94,0,0,0.14,570.85,3052.3,26151962,99.92,0,0,0.13,570.81,3052.32,26151963,99.89,0,0,0.15,570.78,3052.35,26151964,99.88,0,0,0.14,570.82,3052.31,26151965,99.71,0,0,0.71,572.13,3051.01,26151966,99.9,0,0,0.14,571.63,3051.51,26151967,99.95,0,0,0.16,571.61,3051.53,26151968,99.95,0,0,0.15,571.57,3051.56,26151969,99.85,0,0,0.28,571.3,3051.8,26151970,99.73,0,0,0.74,571.66,3051.45,26151971,99.84,0,0,0.15,571.26,3051.86,26151972,99.84,0,0,0.14,571.4,3051.71,26151973,99.88,0,0,0.17,571.42,3051.69,26151974,99.86,0,0,0.14,571.39,3051.71,26151975,99.7,0,0,0.72,571.78,3051.34,26151976,99.89,0,0,0.19,571.11,3052.01,26151977,99.9,0,0,0.2,571.07,3052.04,26151978,99.87,0,0,0.14,571.04,3052.07,26151979,99.9,0.01,0.01,0.16,571.08,3052.03,26151980,99.72,0,0,0.73,572.02,3051.1,26151981,99.86,0,0,0.17,571.63,3051.48,26151982,99.84,0,0,0.16,571.6,3051.51,26151983,99.87,0,0,0.14,571.57,3051.54,26151984,99.85,0,0,0.14,571.54,3051.56,26151985,99.67,0,0,0.58,571.89,3051.23,26151986,99.87,0,0,0.32,571.58,3051.54,26151987,99.86,0,0,0.18,571.67,3051.44,26151988,99.85,0,0,0.2,571.65,3051.46,26151989,99.87,0,0,0.18,571.62,3051.49,26151990,99.61,0,0,0.55,571.96,3051.15,26151991,99.87,0,0,0.37,571.57,3051.54,26151992,99.85,0,0,0.16,571.55,3051.57,26151993,99.85,0,0,0.14,571.52,3051.59,26151994,99.85,0,0,0.15,571.59,3051.51,26151995,99.82,0,0,0.36,571.42,3051.7,26151996,99.71,0,0,0.61,572.17,3050.94,26151997,99.84,0,0,0.19,571.84,3051.27,26151998,99.84,0,0,0.18,571.81,3051.29,26151999,99.78,0,0,0.39,571.09,3052,26152000,99.78,0,0,0.43,571.52,3051.58,26152001,99.69,0,0,0.55,572.4,3050.69,26152002,99.85,0,0,0.15,571.9,3051.18,26152003,99.86,0,0,0.17,571.87,3051.21,26152004,99.85,0,0,0.17,571.84,3051.25,26152005,99.79,0,0,0.34,570.88,3052.23,26152006,99.73,0,0,0.58,571.43,3051.67,26152007,99.84,0,0.01,0.16,571.28,3051.83,26152008,99.84,0,0,0.15,571.28,3051.82,26152009,99.86,0,0,0.2,571.4,3051.7,26152010,99.81,0,0,0.37,571.63,3051.48,26152011,99.71,0,0,0.54,571.7,3051.41,26152012,99.81,0,0,0.19,571.07,3052.03,26152013,99.85,0,0,0.14,571.04,3052.06,26152014,99.76,0,0,0.15,571.01,3052.08,26152015,99.82,0,0,0.36,571.05,3052.06,26152016,99.73,0,0,0.52,571.78,3051.33,26152017,99.87,0,0,0.2,571.87,3051.24,26152018,99.85,0,0,0.14,571.84,3051.26,26152019,99.88,0,0,0.14,571.81,3051.29,26152020,99.79,0,0,0.33,571.56,3051.57,26152021,99.72,0,0,0.41,572.3,3050.83,26152022,99.48,0,0,0.5,572.22,3050.9,26152023,99.86,0,0,0.15,572.05,3051.07,26152024,99.87,0,0,0.14,572.15,3050.96,26152025,99.81,0,0,0.34,571.9,3051.23,26152026,99.75,0,0,0.3,572.52,3050.61,26152027,99.83,0,0,0.41,571.83,3051.29,26152028,99.86,0,0,0.14,571.8,3051.31,26152029,99.8,0,0,0.29,571.53,3051.56,26152030,99.76,0,0,0.35,572.05,3051.06,26152031,99.84,0,0,0.16,572.16,3050.95,26152032,99.7,0,0,0.54,572.27,3050.83,26152033,99.82,0,0,0.14,571.86,3051.24,26152034,99.86,0,0,0.17,571.82,3051.27,26152035,99.81,0,0,0.4,572.07,3051.04,26152036,99.83,0,0,0.17,572.04,3051.07,26152037,99.5,0,0,0.58,572.33,3050.77,26152038,99.84,0,0,0.14,572.05,3051.04,26152039,99.84,0.01,0.01,0.16,572.13,3050.96,26152040,99.82,0,0,0.39,572.11,3051,26152041,99.85,0,0,0.14,572.07,3051.03,26152042,99.7,0,0,0.55,572.71,3050.39,26152043,99.86,0,0,0.17,572.01,3051.08,26152044,99.86,0,0,0.15,571.98,3051.11,26152045,99.77,0,0,0.34,571.6,3051.5,26152046,99.85,0,0,0.16,571.64,3051.46,26152047,99.73,0,0,0.51,572.28,3050.81,26152048,99.86,0,0,0.19,571.82,3051.26,26152049,99.85,0,0,0.15,571.79,3051.29,26152050,99.75,0,0,0.34,572.06,3051.04,26152051,99.83,0,0,0.16,571.98,3051.11,26152052,99.72,0,0,0.58,572.41,3050.68,26152053,99.85,0,0,0.15,572.11,3050.97,26152054,99.84,0,0,0.17,572.08,3051,26152055,99.78,0,0,0.36,572.08,3051.01,26152056,99.85,0,0,0.15,572.04,3051.06,26152057,99.68,0,0,0.41,572.36,3050.72,26152058,99.85,0,0,0.29,571.97,3051.11,26152059,99.78,0,0,0.3,571.57,3051.49,26152060,99.78,0,0,0.34,571.87,3051.2,26152061,99.86,0,0,0.14,571.85,3051.22,26152062,99.83,0,0,0.16,571.82,3051.24,26152063,99.7,0,0,0.61,572.38,3050.68,26152064,99.87,0,0,0.16,572,3051.05,26152065,99.8,0,0,0.35,572,3051.08,26152066,99.86,0,0,0.15,571.97,3051.1,26152067,99.85,0,0.01,0.17,572.09,3050.98,26152068,99.69,0,0,0.54,572.44,3050.62,26152069,99.86,0,0,0.15,572.06,3051,26152070,99.82,0,0,0.34,572.05,3051.03,26152071,99.85,0,0,0.13,572.02,3051.05,26152072,99.83,0,0,0.2,571.99,3051.08,26152073,99.72,0.01,0.01,0.58,571.38,3051.68,26152074,99.86,0,0,0.19,570.58,3052.48,26152075,99.82,0,0,0.36,571.53,3051.54,26152076,99.85,0,0,0.15,571.51,3051.55,26152077,99.81,0,0,0.14,571.53,3051.53,26152078,99.71,0,0,0.61,572.3,3050.75,26152079,99.83,0.07,6.74,0.37,572.11,3050.9,26152080,99.72,0.03,2.63,0.61,571.72,3051.26,26152081,99.86,0,0,0.17,571.7,3051.27,26152082,99.86,0,0,0.13,571.48,3051.48,26152083,99.74,0,0,0.56,571.69,3051.26,26152084,99.83,0,0,0.14,571.3,3051.66,26152085,99.79,0.02,2.01,0.43,571.27,3051.69,26152086,99.84,0,0.06,0.23,571.28,3051.67,26152087,99.86,0,0.07,0.16,571.22,3051.73,26152088,99.74,0,0,0.6,571.65,3051.29,26152089,99.78,0,0,0.35,571.39,3051.52,26152090,99.82,0,0.06,0.34,571.45,3051.47,26152091,99.85,0,0,0.14,571.49,3051.43,26152092,99.85,0.03,1.15,0.26,571.46,3051.46,26152093,99.72,0.01,0.35,0.83,571.83,3051.07,26152094,99.87,0,0,0.14,571.44,3051.46,26152095,99.76,0,0,0.34,570.71,3052.21,26152096,99.84,0,0,0.16,570.66,3052.26,26152097,99.37,0,0,0.19,570.63,3052.28,26152098,99.72,0,0,0.55,571.11,3051.81,26152099,99.86,0.01,0.01,0.14,571.25,3051.66,26152100,99.81,0,0,0.36,571.47,3051.45,26152101,99.83,0,0,0.21,571.45,3051.47,26152102,99.84,0,0,0.17,571.42,3051.5,26152103,99.83,0,0,0.16,571.39,3051.52,26152104,99.71,0,0.01,0.56,571.7,3051.21,26152105,99.79,0,0,0.32,571.24,3051.68,26152106,99.86,0,0.01,0.16,571.24,3051.68,26152107,99.86,0,0.01,0.18,571.19,3051.72,26152108,99.83,0,0,0.15,571.15,3051.76,26152109,99.73,0,0,0.54,570.46,3052.44,26152110,99.76,0,0,0.34,571.07,3051.85,26152111,99.85,0.05,2.25,0.2,571.21,3051.71,26152112,99.81,0.02,1.99,0.29,571.26,3051.65,26152113,99.81,0.03,2.7,0.51,571.41,3051.47,26152114,99.69,0.01,2.22,0.84,571.83,3051.02,26152115,99.82,0,0.01,0.42,571.59,3051.28,26152116,99.85,0,0,0.16,571.56,3051.31,26152117,99.85,0,0,0.14,571.52,3051.34,26152118,99.87,0,0,0.15,571.67,3051.19,26152119,99.62,0,0,0.65,571.87,3050.96,26152120,99.82,0,0,0.38,571.4,3051.44,26152121,99.83,0,0,0.13,571.37,3051.47,26152122,99.86,0,0,0.16,571.34,3051.5,26152123,99.88,0,0,0.14,571.32,3051.51,26152124,99.73,0,0,0.5,571.64,3051.23,26152125,99.79,0,0,0.41,571.05,3051.85,26152126,99.85,0.01,0.11,0.15,571.15,3051.74,26152127,99.83,0,0.01,0.2,571.13,3051.76,26152128,99.84,0,0,0.16,571.09,3051.79,26152129,95.14,0.27,0.01,77.85,581.65,3041.56,26152130,99.73,0,0,180.31,573.83,3048.87,26152131,99.82,0,0,0.14,573.79,3048.9,26152132,99.82,0,0,0.2,573.67,3049.02,26152133,99.84,0,0,0.14,573.68,3049,26152134,99.72,0,0,0.41,573.97,3048.71,26152135,99.83,0,0,0.48,571.49,3051.24,26152136,99.85,0,0,0.14,571.46,3051.27,26152137,99.87,0,0,0.16,571.43,3051.29,26152138,99.87,0,0,0.14,571.4,3051.32,26152139,99.84,0,0,0.2,571.62,3051.1,26152140,98.94,0,0,10.29,571.82,3051.19,26152141,99.82,0,0,0.17,571.39,3051.67,26152142,99.88,0,0,0.17,571.36,3051.69,26152143,99.91,0,0,0.17,571.34,3051.71,26152144,99.9,0,0,0.16,571.31,3051.74,26152145,99.69,0,0,0.77,571.95,3051.12,26152146,99.94,0,0,0.16,571.52,3051.55,26152147,99.94,0,0,0.17,571.49,3051.57,26152148,99.92,0,0,0.18,571.58,3051.48,26152149,99.76,0,0,0.29,571.63,3051.41,26152150,99.76,0,0,0.72,572.18,3050.89,26152151,99.94,0,0,0.17,571.85,3051.23,26152152,99.94,0,0,0.18,571.81,3051.25,26152153,99.93,0,0,0.16,571.79,3051.27,26152154,99.94,0,0,0.17,571.76,3051.3,26152155,99.69,0,0,0.77,571.52,3051.55,26152156,99.94,0,0,0.19,571.62,3051.45,26152157,99.92,0,0,0.2,571.64,3051.43,26152158,99.91,0,0,0.2,571.61,3051.46,26152159,99.93,0.01,0.01,0.16,571.57,3051.49,26152160,99.72,0,0,0.71,571.64,3051.44,26152161,99.94,0,0,0.24,571.53,3051.55,26152162,99.92,0,0,0.17,571.5,3051.57,26152163,99.95,0,0,0.17,571.59,3051.48,26152164,99.95,0,0,0.17,571.66,3051.4,26152165,99.74,0,0,0.8,572.25,3050.83,26152166,99.82,0,0,0.15,571.88,3051.2,26152167,99.92,0,0,0.25,571.84,3051.22,26152168,99.95,0,0,0.2,571.81,3051.25,26152169,99.91,0,0,0.2,571.77,3051.29,26152170,99.75,0,0,0.65,572.17,3050.9,26152171,99.95,0,0,0.3,571.92,3051.15,26152172,99.92,0,0,0.17,571.89,3051.18,26152173,99.95,0,0,0.18,571.86,3051.2,26152174,99.94,0,0,0.19,571.83,3051.22,26152175,99.7,0,0,0.63,571.98,3051.09,26152176,99.95,0,0,0.3,572.04,3051.03,26152177,99.93,0,0,0.2,572.01,3051.05,26152178,99.95,0,0,0.16,572.09,3050.97,26152179,99.91,0,0,0.3,571.66,3051.37,26152180,99.9,0,0,0.37,571.86,3051.18,26152181,99.78,0,0,0.55,571.72,3051.32,26152182,99.93,0,0,0.14,571.31,3051.72,26152183,99.9,0,0,0.14,571.29,3051.74,26152184,99.95,0,0,0.17,571.25,3051.81,26152185,99.88,0,0,0.39,571.73,3051.36,26152186,99.8,0,0,0.56,572.35,3050.73,26152187,99.91,0,0.01,0.18,571.86,3051.22,26152188,99.91,0,0,0.14,571.82,3051.25,26152189,99.94,0,0,0.15,571.79,3051.28,26152190,99.88,0,0,0.33,571.78,3051.31,26152191,99.79,0,0.01,0.54,572.15,3050.93,26152192,99.94,0,0,0.18,571.55,3051.53,26152193,99.94,0,0,0.18,571.36,3051.71,26152194,99.95,0,0,0.14,571.33,3051.74,26152195,99.89,0,0,0.38,571.57,3051.51,26152196,99.81,0,0,0.54,571.78,3051.3,26152197,99.91,0,0,0.17,571.25,3051.82,26152198,99.94,0,0,0.15,571.22,3051.85,26152199,99.95,0,0,0.14,571.37,3051.7,26152200,99.86,0,0,0.38,571.85,3051.23,26152201,99.82,0,0,0.55,571.76,3051.32,26152202,99.92,0,0,0.15,570.81,3052.26,26152203,99.94,0,0,0.14,570.78,3052.29,26152204,99.94,0,0,0.15,570.75,3052.31,26152205,99.89,0,0,0.29,571.71,3051.37,26152206,99.79,0,0,0.49,572.18,3050.9,26152207,99.94,0,0,0.21,572.1,3050.97,26152208,99.93,0,0,0.15,572.07,3051,26152209,99.89,0,0,0.28,572.04,3051,26152210,99.9,0,0,0.3,572.03,3051.03,26152211,99.79,0,0,0.33,572.54,3050.51,26152212,99.95,0,0,0.38,571.97,3051.08,26152213,99.95,0,0,0.14,572,3051.05,26152214,99.92,0,0,0.14,572.13,3050.91,26152215,99.83,0,0,0.28,571.17,3051.88,26152216,99.94,0,0,0.16,571.11,3051.94,26152217,99.8,0,0,0.65,572.32,3050.73,26152218,99.92,0,0,0.14,572.03,3051.01,26152219,99.92,0.01,0.01,0.15,571.99,3051.05,26152220,99.91,0,0,0.29,572.23,3050.83,26152221,99.95,0,0,0.14,572.32,3050.73,26152222,99.77,0,0,0.57,572.49,3050.56,26152223,99.85,0,0,0.14,572.08,3050.96,26152224,99.91,0,0,0.15,572.05,3050.99,26152225,99.83,0,0,0.32,570.83,3052.22,26152226,99.95,0,0,0.13,570.77,3052.28,26152227,99.81,0,0,0.57,572.03,3051.01,26152228,99.93,0,0,0.14,571.56,3051.48,26152229,99.93,0,0,0.14,571.61,3051.43,26152230,99.86,0,0,0.28,571.84,3051.21,26152231,99.93,0,0,0.15,571.82,3051.23,26152232,99.8,0,0,0.56,572.69,3050.35,26152233,99.97,0,0,0.16,572.24,3050.8,26152234,99.94,0,0,0.15,572.06,3050.97,26152235,99.9,0,0,0.29,571.32,3051.73,26152236,99.92,0,0,0.18,571.37,3051.67,26152237,99.79,0,0,0.54,571.73,3051.32,26152238,99.93,0,0,0.16,571.06,3051.98,26152239,99.82,0,0,0.27,571.26,3051.75,26152240,99.86,0,0,0.29,571.26,3051.77,26152241,99.94,0,0,0.13,571.23,3051.8,26152242,99.79,0,0,0.41,571.72,3051.3,26152243,99.95,0,0,0.29,571.6,3051.42,26152244,99.95,0,0,0.14,571.57,3051.46,26152245,99.9,0,0,0.29,571.33,3051.72,26152246,99.94,0,0,0.16,571.29,3051.76,26152247,99.77,0,0.01,0.49,571.5,3051.55,26152248,99.58,0,0,0.18,570.73,3052.31,26152249,99.65,0,0,0.16,570.84,3052.2,26152250,99.88,0,0,0.27,571.66,3051.4,26152251,99.93,0,0,0.14,571.57,3051.48,26152252,99.77,0,0,0.42,571.72,3051.33,26152253,99.96,0,0,0.36,570.54,3052.51,26152254,99.95,0,0,0.14,570.5,3052.53,26152255,99.87,0,0,0.3,570.74,3052.31,26152256,99.95,0,0,0.16,570.76,3052.29,26152257,99.91,0,0,0.14,570.88,3052.17,26152258,99.81,0,0,0.57,571.28,3051.76,26152259,99.93,0,0,0.14,570.57,3052.46,26152260,99.79,0,0,0.28,569.62,3053.44,26152261,99.93,0,0,0.14,569.55,3053.5,26152262,99.93,0,0,0.16,569.52,3053.53,26152263,99.69,0,0,0.58,571.02,3052.02,26152264,99.96,0,0,0.14,571.05,3051.98,26152265,99.9,0,0,0.28,571.63,3051.42,26152266,99.93,0,0,0.14,571.61,3051.44,26152267,99.86,0,0,0.16,571.58,3051.46,26152268,99.75,0,0,0.54,571.78,3051.25,26152269,99.79,0,0,0.32,571.52,3051.49,26152270,99.9,0,0,0.29,571.51,3051.52,26152271,99.91,0,0,0.16,571.48,3051.54,26152272,99.91,0,0,0.14,571.55,3051.47,26152273,99.78,0,0,0.48,572.05,3050.96,26152274,99.93,0,0,0.2,571.83,3051.18,26152275,99.31,0,0,0.3,571.09,3051.93,26152276,99.93,0,0,0.17,571.05,3051.97,26152277,99.93,0,0,0.18,571.26,3051.75,26152278,99.78,0,0,0.5,571.59,3051.42,26152279,99.9,0.01,0.01,0.2,571.26,3051.75,26152280,99.85,0,0,0.3,571.61,3051.41,26152281,99.87,0,0,0.13,571.58,3051.43,26152282,99.92,0,0,0.16,571.55,3051.46,26152283,99.81,0,0,0.39,571.92,3051.08,26152284,99.91,0,0,0.3,571.74,3051.26,26152285,99.86,0,0,0.3,571.25,3051.77,26152286,99.91,0,0,0.16,571.23,3051.78,26152287,99.95,0,0,0.14,571.36,3051.65,26152288,99.79,0,0,0.38,571.7,3051.31,26152289,99.94,0,0,0.35,571.8,3051.22,26152290,99.87,0,0,0.27,571.79,3051.25,26152291,99.92,0,0,0.16,571.76,3051.27,26152292,99.93,0,0,0.14,571.73,3051.3,26152293,99.68,0,0,0.14,571.7,3051.33,26152294,99.3,0,0,0.54,572.37,3050.64,26152295,99.21,0,0,0.28,571.65,3051.39,26152296,99.92,0,0,0.16,571.58,3051.45,26152297,99.94,0,0,0.13,571.55,3051.48,26152298,99.93,0,0,0.2,571.51,3051.51,26152299,99.69,0,0,0.66,571.83,3051.17,26152300,99.86,0,0,0.28,571.72,3051.29,26152301,99.91,0,0,0.14,571.69,3051.32,26152302,99.92,0,0,0.16,571.77,3051.24,26152303,99.94,0,0,0.15,571.83,3051.18,26152304,99.74,0,0,0.5,572.02,3050.97,26152305,99.89,0,0,0.34,571.55,3051.46,26152306,99.9,0,0,0.14,571.51,3051.5,26152307,99.91,0,0.01,0.14,571.47,3051.53,26152308,99.93,0,0,0.15,571.44,3051.56,26152309,99.79,0,0,0.56,571.45,3051.54,26152310,99.9,0,0,0.31,571.07,3051.93,26152311,99.94,0,0,0.16,571.05,3051.95,26152312,99.91,0,0,0.2,571.28,3051.72,26152313,99.93,0,0,0.14,571.49,3051.51,26152314,99.79,0,0,0.43,571.64,3051.35,26152315,99.91,0,0,0.4,571.68,3051.32,26152316,99.94,0,0,0.16,571.74,3051.26,26152317,99.95,0,0,0.14,571.85,3051.15,26152318,99.93,0,0,0.14,571.82,3051.18,26152319,99.79,0,0,0.58,572.51,3050.48,26152320,99.87,0,0,0.27,571.54,3051.47,26152321,99.93,0,0,0.14,571.5,3051.5,26152322,99.91,0,0,0.17,571.47,3051.53,26152323,99.93,0,0,0.14,571.48,3051.51,26152324,99.95,0,0,0.16,571.59,3051.4,26152325,99.76,0,0,0.71,571.92,3051.08,26152326,99.92,0,0,0.16,571.54,3051.45,26152327,99.92,0,0,0.14,571.51,3051.48,26152328,99.93,0,0,0.15,571.47,3051.51,26152329,99.85,0,0,0.29,571.7,3051.26,26152330,99.74,0,0,0.72,572.36,3050.62,26152331,99.93,0,0,0.16,572.08,3050.9,26152332,99.94,0,0,0.14,572.05,3050.93,26152333,99.93,0,0,0.15,572.02,3050.96,26152334,99.93,0,0,0.13,571.99,3050.98,26152335,99.75,0,0,0.67,572.1,3050.89,26152336,99.94,0,0,0.15,571.71,3051.27,26152337,99.94,0,0,0.2,571.71,3051.27,26152338,99.93,0,0,0.14,571.84,3051.14,26152339,99.91,0.01,0.01,0.15,571.8,3051.17,26152340,99.76,0,0,0.71,572.39,3050.6,26152341,99.93,0,0,0.2,572,3050.99,26152342,99.94,0,0,0.18,571.97,3051.02,26152343,99.47,0,0,0.16,571.95,3051.04,26152344,99.39,0,0,0.14,571.92,3051.07,26152345,99.21,0,0,0.67,571.41,3051.6,26152346,99.63,0,0,0.16,571.33,3051.68,26152347,99.92,0,0,0.14,571.3,3051.71,26152348,99.95,0,0,0.16,571.26,3051.75,26152349,99.94,0,0,0.17,571.23,3051.77,26152350,99.73,0,0,0.64,572.22,3050.79,26152351,99.92,0,0,0.23,572,3051.01,26152352,99.93,0,0,0.14,572.05,3050.95,26152353,99.92,0,0,0.16,572.02,3050.98,26152354,99.94,0,0,0.14,571.99,3051.01,26152355,99.72,0,0,0.7,572.27,3050.75,26152356,99.92,0,0,0.16,571.71,3051.3,26152357,99.94,0,0,0.18,571.68,3051.33,26152358,99.94,0,0,0.18,571.71,3051.29,26152359,99.85,0,0,0.3,572.29,3050.69,26152360,99.73,0,0,0.7,571.68,3051.32,26152361,99.93,0,0,0.2,571.76,3051.23,26152362,99.93,0,0,0.16,571.73,3051.26,26152363,99.94,0,0,0.14,571.7,3051.29,26152364,99.93,0,0,0.13,571.66,3051.32,26152365,99.92,0,0,0.34,571.53,3051.47,26152366,99.78,0,0,0.54,572.18,3050.81,26152367,99.9,0,0.01,0.14,571.81,3051.18,26152368,99.92,0,0,0.14,571.78,3051.2,26152369,99.93,0,0,0.16,571.74,3051.24,26152370,99.9,0,0,0.27,571.98,3051.01,26152371,99.77,0,0,0.54,572.29,3050.7,26152372,99.91,0,0,0.19,571.74,3051.24,26152373,99.92,0,0,0.14,571.59,3051.39,26152374,99.94,0,0,0.14,571.56,3051.42,26152375,99.87,0,0,0.29,571.08,3051.92,26152376,99.78,0,0,0.57,572.17,3050.82,26152377,99.94,0,0,0.14,571.96,3051.02,26152378,99.83,0,0,0.17,571.93,3051.05,26152379,99.92,0,0,0.18,571.97,3051,26152380,99.88,0,0,0.33,572.08,3050.91,26152381,99.78,0,0,0.59,572.56,3050.43,26152382,99.94,0,0,0.15,572.26,3050.71,26152383,99.95,0,0,0.15,572.23,3050.74,26152384,99.94,0,0,0.16,572.21,3050.76,26152385,99.88,0,0,0.3,572.2,3050.78,26152386,99.8,0,0,0.55,572.64,3050.34,26152387,99.94,0,0,0.16,572.28,3050.7,26152388,99.93,0,0,0.14,572.29,3050.68,26152389,99.85,0,0,0.29,572.26,3050.7,26152390,99.87,0,0,0.28,571.84,3051.13,26152391,99.79,0,0.01,0.41,571.75,3051.21,26152392,99.95,0,0,0.29,571.18,3051.79,26152393,99.91,0,0,0.17,571.2,3051.76,26152394,99.95,0,0,0.14,571.09,3051.88,26152395,99.86,0,0,0.31,571.06,3051.93,26152396,99.8,0,0,0.5,571.44,3051.54,26152397,99.93,0,0,0.23,571.23,3051.74,26152398,99.93,0,0,0.14,571.2,3051.77,26152399,99.94,0.01,0.01,0.15,571.17,3051.8,26152400,99.89,0,0,0.27,570.97,3052.01,26152401,99.79,0,0,0.43,571.48,3051.5,26152402,99.95,0,0,0.34,571.52,3051.45,26152403,99.64,0,0,0.14,571.5,3051.47,26152404,99.94,0,0,0.14,571.46,3051.5,26152405,99.84,0,0,0.3,571.46,3051.52,26152406,99.93,0,0,0.14,571.43,3051.56,26152407,99.79,0,0,0.57,571.86,3051.13,26152408,99.94,0,0,0.16,571.24,3051.75,26152409,99.92,0,0,0.14,571.29,3051.69,26152410,99.84,0,0,0.29,571.29,3051.71,26152411,99.94,0,0,0.17,571.26,3051.74,26152412,99.79,0,0,0.52,571.77,3051.23,26152413,99.93,0,0,0.17,571.44,3051.55,26152414,99.94,0,0,0.15,571.42,3051.57,26152415,99.86,0,0,0.28,570.94,3052.06,26152416,99.93,0,0,0.13,571.01,3051.99,26152417,99.83,0,0,0.55,571.76,3051.23,26152418,99.95,0,0,0.14,571.54,3051.45,26152419,99.88,0,0,0.38,571.47,3051.49,26152420,99.9,0,0,0.27,570.78,3052.2,26152421,99.93,0,0,0.14,570.74,3052.23,26152422,99.8,0,0,0.58,571.51,3051.46,26152423,99.94,0,0,0.15,571.42,3051.54,26152424,99.93,0,0,0.14,571.49,3051.46,26152425,99.89,0,0,0.31,571.33,3051.65,26152426,99.91,0,0,0.13,571.29,3051.68,26152427,99.78,0,0.01,0.71,571.52,3051.45,26152428,99.92,0,0,0.24,570.97,3051.99,26152429,99.95,0,0,0.17,570.93,3052.02,26152430,99.82,0,0,0.3,571.41,3051.56,26152431,99.94,0,0,0.18,571.51,3051.45,26152432,99.78,0,0,0.59,571.87,3051.09,26152433,99.9,0,0,0.17,571.75,3051.21,26152434,99.95,0,0,0.17,571.72,3051.23,26152435,99.9,0,0,0.32,571.47,3051.5,26152436,99.94,0,0,0.17,571.43,3051.53,26152437,99.8,0,0,0.57,572.07,3050.88,26152438,99.93,0,0,0.16,571.5,3051.45,26152439,99.66,0,0,0.18,571.53,3051.41,26152440,99.8,0,0,0.3,571.77,3051.19,26152441,99.9,0,0,0.17,571.74,3051.22,26152442,99.94,0,0,0.16,571.71,3051.24,26152443,99.79,0,0,0.56,571.86,3051.09,26152444,99.89,0,0,0.17,571.41,3051.53,26152445,99.85,0,0,0.3,571.16,3051.8,26152446,99.93,0,0,0.18,571.24,3051.72,26152447,99.93,0,0,0.18,571.27,3051.68,26152448,99.8,0,0,0.6,571.59,3051.36,26152449,99.89,0,0,0.27,571.46,3051.46,26152450,99.88,0,0,0.29,571.45,3051.49,26152451,99.91,0,0,0.18,571.42,3051.52,26152452,99.92,0,0,0.17,571.39,3051.54,26152453,99.75,0,0,0.56,572,3050.93,26152454,99.94,0,0,0.17,571.76,3051.16,26152455,99.89,0,0,0.32,571.76,3051.18,26152456,99.94,0,0,0.17,571.73,3051.21,26152457,99.95,0,0,0.21,571.7,3051.23,26152458,99.8,0,0,0.56,572.02,3050.9,26152459,99.94,0.01,0.01,0.14,571.63,3051.29,26152460,99.85,0,0,0.3,571.77,3051.17,26152461,99.94,0,0,0.17,571.78,3051.16,26152462,99.34,0,0,0.18,571.75,3051.18,26152463,99.8,0,0,0.59,572.17,3050.76,26152464,99.94,0,0,0.2,571.93,3050.99,26152465,99.84,0,0,0.3,571.21,3051.73,26152466,99.94,0,0,0.17,571.16,3051.78,26152467,99.94,0,0,0.17,571.12,3051.81,26152468,99.81,0,0,0.42,572.08,3050.84,26152469,99.93,0,0,0.3,571.78,3051.16,26152470,99.84,0.01,0.01,0.3,571.22,3051.74,26152471,99.93,0,0,0.17,571.16,3051.79,26152472,99.93,0,0,0.17,571.28,3051.67,26152473,99.77,0,0,0.39,571.93,3051.02,26152474,99.92,0,0,0.37,571.75,3051.2,26152475,99.88,0,0,0.3,571.99,3050.97,26152476,99.93,0,0,0.16,571.96,3051,26152477,99.93,0,0,0.18,571.93,3051.02,26152478,99.94,0,0,0.16,571.89,3051.05,26152479,99.73,0,0,0.72,572.13,3050.79,26152480,99.91,0,0,0.3,572.04,3050.9,26152481,99.94,0,0,0.17,572,3050.93,26152482,99.91,0,0,0.18,571.97,3050.95,26152483,99.92,0,0,0.18,571.95,3050.98,26152484,99.8,0,0,0.56,572.27,3050.65,26152485,99.86,0,0,0.33,571.91,3051.02,26152486,99.93,0,0,0.17,571.88,3051.05,26152487,99.91,0,0.01,0.17,571.95,3050.97,26152488,99.93,0,0,0.17,572,3050.92,26152489,99.78,0,0,0.55,572.31,3050.6,26152490,99.9,0,0,0.29,572.19,3050.74,26152491,99.94,0,0,0.16,572.17,3050.76,26152492,99.9,0,0,0.19,571.95,3050.98,26152493,99.93,0,0,0.19,571.62,3051.3,26152494,96.78,0.02,0.01,14.58,581.01,3043.85,26152495,99.82,0,0,63.59,574.55,3048.33,26152496,99.93,0,0,0.17,574.52,3048.36,26152497,99.92,0,0,0.16,574.35,3048.53,26152498,99.95,0,0,0.17,574.4,3048.47,26152499,99.82,0,0,0.43,573.69,3049.19,26152500,99.71,0,0,0.47,571.95,3050.98,26152501,99.91,0,0,0.15,571.92,3051.01,26152502,99.88,0,0,0.16,571.89,3051.03,26152503,99.92,0,0,0.17,571.85,3051.06,26152504,99.8,0,0,0.41,572.05,3050.86,26152505,99.86,0,0,0.44,571.88,3051.07,26152506,99.89,0,0,0.16,571.98,3050.97,26152507,99.86,0,0,0.17,571.95,3050.99,26152508,99.91,0,0,0.15,571.92,3051.02,26152509,99.7,0,0,0.57,572.8,3050.11,26152510,99.85,0,0,0.46,572.13,3050.81,26152511,99.89,0,0,0.2,572.1,3050.85,26152512,99.9,0,0,0.18,572.07,3050.87,26152513,99.94,0,0,0.16,572.21,3050.72,26152514,99.93,0,0,0.2,572.23,3050.7,26152515,99.7,0,0,0.7,572.64,3050.3,26152516,99.88,0,0,0.16,571.94,3051,26152517,99.92,0,0,0.21,571.67,3051.26,26152518,99.89,0,0,0.16,571.64,3051.29,26152519,99.91,0.01,0.01,0.16,571.61,3051.32,26152520,99.7,0,0,0.68,571.96,3050.98,26152521,99.85,0,0,0.15,571.51,3051.43,26152522,99.8,0,0,0.18,571.47,3051.46,26152523,99.93,0,0,0.15,571.44,3051.48,26152524,99.92,0,0,0.16,571.42,3051.5,26152525,98.64,0,0,15.75,574.17,3049.21,26152526,99.89,0,0,0.22,571.85,3051.07,26152527,99.86,0,0,0.16,571.83,3051.09,26152528,99.84,0,0,0.19,571.9,3051,26152529,99.91,0,0,0.16,571.95,3050.95,26152530,99.69,0,0,0.66,572.5,3050.42,26152531,99.87,0,0,0.21,571.41,3051.5,26152532,99.88,0,0,0.16,571.38,3051.53,26152533,99.86,0,0,0.19,571.34,3051.56,26152534,99.84,0,0,0.18,571.31,3051.59,26152535,99.74,0,0,0.54,571.59,3051.33,26152536,99.91,0,0,0.28,570.96,3051.95,26152537,99.91,0,0,0.18,570.94,3051.98,26152538,99.85,0,0,0.15,570.91,3052,26152539,99.82,0,0,0.28,572.09,3050.79,26152540,99.71,0,0,0.56,572.65,3050.25,26152541,99.88,0,0,0.32,572.07,3050.82,26152542,99.87,0,0,0.15,572.13,3050.76,26152543,99.88,0,0,0.18,572.18,3050.71,26152544,99.86,0,0,0.16,572.14,3050.76,26152545,99.67,0,0,0.73,572.03,3050.89,26152546,99.85,0,0,0.15,571.12,3051.79,26152547,99.82,0,0.01,0.25,571.09,3051.82,26152548,99.84,0,0,0.17,571.11,3051.8,26152549,99.85,0,0,0.16,571.2,3051.71,26152550,98.77,0,0,1.43,572.79,3050.11,26152551,99.85,0,0,0.39,571.65,3051.27,26152552,99.81,0,0,0.19,571.53,3051.38,26152553,99.86,0,0,0.18,571.35,3051.55,26152554,99.85,0,0,0.17,571.32,3051.58,26152555,99.82,0,0,0.35,571.31,3051.61,26152556,99.69,0,0,0.58,572.06,3050.87,26152557,99.84,0,0,0.2,571.44,3051.48,26152558,99.85,0,0,0.18,571.42,3051.51,26152559,99.83,0,0,0.19,571.4,3051.52,26152560,99.73,0,0,0.35,571.86,3051.08,26152561,98.86,0,0,0.54,572.05,3050.89,26152562,99.83,0,0,0.15,571.32,3051.61,26152563,99.85,0,0,0.15,571.34,3051.59,26152564,99.85,0,0,0.15,571.47,3051.45,26152565,99.79,0,0,0.29,571.72,3051.22,26152566,99.7,0,0,0.55,572.01,3050.93,26152567,99.85,0,0,0.2,571.42,3051.53,26152568,99.86,0,0,0.14,571.39,3051.55,26152569,99.78,0,0,0.3,571.34,3051.58,26152570,99.82,0,0,0.28,571.15,3051.79,26152571,99.71,0,0,0.41,571.76,3051.17,26152572,99.83,0,0,0.28,571.69,3051.24,26152573,99.86,0,0,0.16,571.66,3051.26,26152574,99.85,0,0,0.15,571.64,3051.28,26152575,99.74,0,0,0.3,570.9,3052.03,26152576,99.7,0,0,0.41,571.31,3051.62,26152577,99.85,0,0,0.33,571.33,3051.6,26152578,99.87,0,0,0.15,571.37,3051.55,26152579,99.85,0.01,0.01,0.17,571.46,3051.46,26152580,99.81,0,0,0.3,571.45,3051.48,26152581,99.7,0,0,0.4,571.86,3051.07,26152582,99.85,0,0,0.27,571.87,3051.05,26152583,99.83,0,0,0.15,571.84,3051.08,26152584,99.81,0,0,0.15,571.82,3051.1,26152585,99.8,0,0,0.3,571.62,3051.32,26152586,99.75,0,0,0.32,572.07,3050.86,26152587,99.81,0,0,0.38,572.19,3050.74,26152588,99.85,0,0,0.15,572.14,3050.78,26152589,99.84,0,0,0.14,572.12,3050.8,26152590,99.8,0,0,0.34,571.87,3051.07,26152591,99.85,0,0,0.14,571.83,3051.1,26152592,99.7,0,0,0.58,572.49,3050.44,26152593,99.84,0,0,0.17,571.92,3051.01,26152594,99.85,0,0,0.16,571.93,3050.99,26152595,99.76,0.01,0.01,0.32,571.89,3051.04,26152596,99.84,0,0,0.18,571.84,3051.09,26152597,99.71,0,0,0.61,572.16,3050.77,26152598,99.82,0,0,0.16,571.85,3051.08,26152599,99.77,0,0,0.39,571.95,3050.95,26152600,99.79,0,0,0.3,572.02,3050.89,26152601,99.83,0,0,0.17,571.89,3051.02,26152602,99.73,0,0,0.57,572.37,3050.53,26152603,99.86,0,0,0.16,572.08,3050.82,26152604,99.82,0,0,0.14,572.05,3050.85,26152605,99.76,0,0,0.3,571.1,3051.81,26152606,99.85,0,0,0.17,571.14,3051.77,26152607,99.68,0,0.01,0.54,571.91,3050.99,26152608,99.84,0,0,0.14,571.9,3051,26152609,99.85,0,0,0.16,571.86,3051.03,26152610,99.79,0,0,0.3,572.09,3050.82,26152611,99.85,0,0,0.16,572.07,3050.84,26152612,99.69,0,0,0.55,572.29,3050.61,26152613,99.85,0,0,0.15,570.64,3052.26,26152614,99.81,0,0,0.15,570.71,3052.18,26152615,99.78,0,0,0.34,571.9,3051.02,26152616,99.83,0,0,0.15,571.9,3051.01,26152617,99.7,0,0,0.57,572.59,3050.32,26152618,99.83,0,0,0.14,572.08,3050.82,26152619,99.86,0,0,0.15,572.05,3050.84,26152620,99.75,0,0,0.3,571.66,3051.25,26152621,99.82,0,0,0.16,571.71,3051.2,26152622,99.85,0,0,0.16,571.68,3051.22,26152623,99.71,0,0,0.54,572.24,3050.66,26152624,99.82,0,0,0.14,571.86,3051.03,26152625,99.72,0,0,0.3,571.86,3051.05,26152626,99.86,0,0,0.16,571.83,3051.08,26152627,99.85,0,0,0.14,571.83,3051.07,26152628,99.69,0,0,0.55,572.06,3050.84,26152629,99.78,0,0,0.3,571.9,3050.97,26152630,99.79,0,0,0.34,571.89,3051,26152631,99.84,0,0,0.17,571.86,3051.02,26152632,99.83,0,0,0.14,571.83,3051.05,26152633,99.7,0.01,0.01,0.59,572.22,3050.66,26152634,99.79,0,0,0.15,571.87,3051,26152635,99.74,0,0,0.34,571.62,3051.27,26152636,99.83,0,0,0.13,571.58,3051.3,26152637,99.86,0,0,0.22,571.8,3051.08,26152638,99.7,0,0,0.51,572.34,3050.53,26152639,99.83,0.01,0.01,0.23,572.11,3050.76,26152640,99.77,0,0,0.34,572.16,3050.72,26152641,99.84,0,0,0.17,572.13,3050.75,26152642,99.85,0,0,0.14,572.1,3050.77,26152643,99.7,0,0,0.54,571.52,3051.35,26152644,99.83,0,0,0.17,570.07,3052.79,26152645,99.74,0,0,0.32,571.08,3051.79,26152646,99.85,0,0,0.16,571.12,3051.76,26152647,99.83,0,0,0.15,571.17,3051.69,26152648,99.72,0,0,0.44,571.72,3051.14,26152649,99.85,0,0,0.28,571.85,3051.01,26152650,99.75,0,0,0.31,572.08,3050.8,26152651,99.88,0,0,0.17,572.06,3050.82,26152652,99.86,0,0,0.14,572.03,3050.84,26152653,99.71,0,0,0.56,572.35,3050.51,26152654,99.86,0,0,0.14,572.11,3050.75,26152655,99.81,0,0,0.3,572.15,3050.73,26152656,99.85,0,0,0.14,572.12,3050.76,26152657,99.86,0,0,0.16,572.09,3050.78,26152658,99.72,0,0,0.4,572.42,3050.45,26152659,99.82,0,0,0.42,572.04,3050.8,26152660,99.77,0,0,0.3,572.04,3050.82,26152661,99.84,0,0,0.14,572.06,3050.79,26152662,99.85,0,0,0.16,572.2,3050.65,26152663,99.87,0,0,0.14,572.17,3050.68,26152664,99.72,0,0,0.55,572.64,3050.2,26152665,99.79,0,0,0.31,571.88,3050.98,26152666,99.85,0,0,0.18,571.85,3051.01,26152667,99.83,0,0.01,0.14,571.82,3051.03,26152668,99.84,0,0,0.15,571.8,3051.05,26152669,99.7,0,0,0.53,572.99,3049.85,26152670,99.76,0,0,0.29,572.41,3050.44,26152671,99.84,0,0,0.16,572.38,3050.48,26152672,99.83,0,0,0.21,572.2,3050.65,26152673,99.86,0,0,0.15,571.83,3051.02,26152674,99.67,0,0,0.57,571.21,3051.62,26152675,99.77,0,0,0.31,571.51,3051.34,26152676,99.83,0,0,0.15,571.66,3051.19,26152677,99.82,0,0,0.16,571.67,3051.18,26152678,99.8,0,0,0.15,571.64,3051.2,26152679,99.7,0,0,0.66,571.85,3050.99,26152680,99.77,0.01,0.06,0.32,571.61,3051.24,26152681,99.87,0,0,0.19,571.62,3051.24,26152682,99.85,0,0,0.14,571.6,3051.26,26152683,99.85,0,0,0.15,571.57,3051.29,26152684,99.72,0,0,0.52,572.03,3050.82,26152685,99.8,0,0,0.35,572.02,3050.84,26152686,99.85,0,0,0.15,572.09,3050.77,26152687,99.84,0,0,0.16,572.15,3050.71,26152688,99.86,0,0,0.15,572.13,3050.73,26152689,99.63,0,0,0.56,572.86,3049.97,26152690,99.76,0,0,0.42,572.07,3050.77,26152691,99.83,0,0,0.16,572.05,3050.79,26152692,99.84,0,0,0.14,572.01,3050.82,26152693,99.86,0,0,0.14,572.05,3050.78,26152694,99.71,0,0,0.41,572.37,3050.46,26152695,99.8,0,0,0.43,570.48,3052.36,26152696,99.85,0,0,0.16,570.38,3052.45,26152697,99.85,0,0,0.19,570.35,3052.48,26152698,99.86,0,0,0.15,570.31,3052.52,26152699,99.9,0.01,0.01,0.16,570.28,3052.55,26152700,99.64,0,0,0.68,571.62,3051.22,26152701,99.9,0,0,0.16,570.95,3051.89,26152702,99.91,0,0,0.14,570.92,3051.92,26152703,99.93,0,0,0.14,570.89,3051.94,26152704,99.91,0,0,0.14,570.86,3051.97,26152705,99.74,0,0,0.7,572.17,3050.67,26152706,99.93,0,0,0.13,571.81,3051.05,26152707,99.94,0,0,0.16,571.82,3051.05,26152708,99.92,0,0,0.14,571.93,3050.94,26152709,99.95,0,0,0.16,571.9,3050.97,26152710,99.73,0,0,0.7,571.65,3051.23,26152711,99.94,0,0,0.2,570.87,3052,26152712,99.91,0,0,0.14,570.84,3052.03,26152713,99.93,0,0,0.15,570.8,3052.06,26152714,99.93,0,0,0.16,570.82,3052.04,26152715,99.74,0.01,0.01,0.72,571.96,3050.92,26152716,99.91,0,0,0.17,571.32,3051.54,26152717,99.94,0,0,0.14,571.28,3051.58,26152718,99.94,0,0,0.15,571.34,3051.51,26152719,99.88,0,0,0.27,571.63,3051.21,26152720,99.75,0,0,0.57,572.23,3050.62,26152721,99.93,0,0,0.29,571.84,3051.01,26152722,99.93,0,0,0.16,571.81,3051.04,26152723,99.95,0,0,0.14,571.77,3051.06,26152724,99.94,0,0,0.14,571.79,3051.04,26152725,99.73,0,0,0.56,572.59,3050.26,26152726,99.95,0,0,0.29,571.64,3051.2,26152727,99.93,0,0.01,0.14,571.6,3051.25,26152728,99.87,0,0,0.14,571.55,3051.28,26152729,99.93,0,0,0.15,571.5,3051.33,26152730,99.88,0,0,0.33,571.86,3050.98,26152731,99.78,0,0,0.54,572.44,3050.39,26152732,99.89,0,0,0.2,571.95,3050.89,26152733,99.93,0,0,0.14,571.54,3051.29,26152734,99.93,0,0,0.15,571.49,3051.33,26152735,99.86,0,0,0.29,571.85,3050.99,26152736,99.77,0,0,0.56,572.22,3050.62,26152737,99.95,0,0,0.14,571.81,3051.02,26152738,99.89,0,0,0.15,571.77,3051.06,26152739,99.93,0,0,0.14,571.73,3051.09,26152740,99.83,0,0,0.33,571.88,3050.97,26152741,99.78,0,0,0.52,572.26,3050.58,26152742,99.92,0,0,0.16,571.86,3050.97,26152743,99.58,0,0,0.14,571.82,3051.01,26152744,99.94,0,0,0.18,571.77,3051.05,26152745,99.88,0,0,0.3,572.05,3050.8,26152746,99.78,0,0,0.57,572.49,3050.34,26152747,99.95,0,0,0.16,572.09,3050.74,26152748,99.92,0,0,0.14,572.05,3050.78,26152749,99.83,0,0,0.27,572,3050.8,26152750,99.85,0,0,0.29,571.62,3051.2,26152751,99.78,0,0,0.55,572.2,3050.61,26152752,99.93,0,0,0.17,572.09,3050.72,26152753,99.93,0,0,0.14,572.04,3050.76,26152754,99.9,0,0,0.14,572,3050.8,26152755,99.8,0,0,0.31,572.34,3050.48,26152756,99.76,0,0,0.55,572.79,3050.02,26152757,99.94,0,0,0.2,571.83,3050.97,26152758,99.9,0,0,0.15,571.78,3051.02,26152759,99.92,0.01,0.01,0.14,571.74,3051.06,26152760,99.88,0,0,0.3,571.84,3050.97,26152761,99.8,0,0,0.41,572.24,3050.56,26152762,99.93,0,0,0.31,572.08,3050.72,26152763,99.92,0,0,0.15,572.04,3050.76,26152764,99.94,0,0,0.14,572.01,3050.81,26152765,99.85,0,0,0.3,572.05,3050.78,26152766,99.78,0,0,0.4,572.41,3050.42,26152767,99.91,0,0,0.3,571.34,3051.48,26152768,99.92,0,0,0.17,571.29,3051.53,26152769,99.94,0,0,0.16,571.28,3051.53,26152770,99.88,0,0,0.34,572.36,3050.47,26152771,99.93,0,0,0.13,572.33,3050.49,26152772,99.79,0,0,0.53,571.06,3051.76,26152773,99.93,0,0,0.16,570.54,3052.28,26152774,99.93,0,0,0.14,570.53,3052.29,26152775,99.89,0,0,0.34,571.88,3050.95,26152776,99.92,0,0,0.16,571.86,3050.96,26152777,99.78,0,0,0.55,572.69,3050.12,26152778,99.93,0,0,0.15,572.27,3050.55,26152779,99.87,0,0,0.32,572.31,3050.48,26152780,99.9,0,0,0.3,572.15,3050.65,26152781,99.95,0,0,0.14,572.1,3050.7,26152782,99.8,0,0,0.58,572.54,3050.25,26152783,99.94,0,0,0.15,572.26,3050.53,26152784,99.92,0.02,0.1,0.19,572.28,3050.52,26152785,99.9,0,0,0.3,572.04,3050.78,26152786,99.92,0,0,0.16,572,3050.81,26152787,99.78,0,0.01,0.57,571.96,3050.85,26152788,99.94,0,0,0.16,571.39,3051.41,26152789,99.96,0,0,0.15,571.34,3051.46,26152790,99.86,0,0,0.29,572.07,3050.74,26152791,99.95,0,0,0.15,572.05,3050.76,26152792,99.79,0,0,0.6,572.74,3050.06,26152793,99.93,0,0,0.17,571.98,3050.82,26152794,99.93,0,0,0.14,572.01,3050.79,26152795,99.88,0,0,0.32,572.43,3050.4,26152796,99.92,0,0,0.13,572.35,3050.48,26152797,99.82,0,0,0.55,572.34,3050.48,26152798,99.95,0,0,0.15,570.81,3052.01,26152799,99.95,0,0,0.16,570.78,3052.03,26152800,99.81,0,0,0.31,571.73,3051.1,26152801,99.95,0,0,0.15,571.73,3051.09,26152802,99.8,0,0,0.55,572.21,3050.61,26152803,99.95,0,0,0.14,572.11,3050.71,26152804,99.22,0,0,0.14,572.08,3050.73,26152805,99.9,0,0,0.31,572.32,3050.51,26152806,99.93,0,0,0.14,572.29,3050.53,26152807,99.82,0,0,0.38,572.55,3050.26,26152808,99.95,0,0,0.36,571.48,3051.33,26152809,99.88,0,0,0.27,572.23,3050.56,26152810,99.87,0,0,0.29,572.64,3050.17,26152811,99.93,0,0,0.16,572.61,3050.19,26152812,99.93,0,0,0.16,572.58,3050.22,26152813,99.75,0,0,0.54,572.6,3050.2,26152814,99.93,0,0,0.15,572.03,3050.78,26152815,99.81,0,0,0.3,571.29,3051.54,26152816,99.93,0,0,0.15,571.29,3051.54,26152817,99.92,0,0,0.22,571.64,3051.18,26152818,99.79,0,0,0.55,572.48,3050.33,26152819,99.92,0.01,0.01,0.14,572.33,3050.48,26152820,99.89,0,0,0.29,572.31,3050.51,26152821,99.94,0,0,0.14,572.28,3050.54,26152822,99.94,0,0,0.17,572.25,3050.57,26152823,99.8,0,0,0.55,572.77,3050.04,26152824,99.93,0,0,0.15,572.62,3050.19,26152825,99.9,0,0,0.29,572.61,3050.22,26152826,99.67,0,0,0.14,572.58,3050.25,26152827,99.95,0,0,0.16,572.56,3050.26,26152828,99.78,0,0,0.55,572.32,3050.5,26152829,99.93,0,0,0.16,571.02,3051.79,26152830,99.83,0,0,0.3,571.98,3050.85,26152831,99.95,0,0,0.14,572.08,3050.74,26152832,99.94,0,0,0.16,572.12,3050.7,26152833,99.77,0.01,0,0.57,572.71,3050.11,26152834,99.9,0.01,0,0.15,572.55,3050.26,26152835,99.85,0.01,0,0.32,572.31,3050.51,26152836,99.93,0,0,0.15,572.33,3050.49,26152837,99.92,0.01,0.01,0.19,572.23,3050.59,26152838,99.78,0,0,0.63,572.8,3050,26152839,99.89,0,0,0.28,572.37,3050.41,26152840,99.84,0,0,0.3,572.81,3049.98,26152841,99.95,0,0,0.16,572.8,3049.99,26152842,99.93,0,0,0.14,572.77,3050.02,26152843,99.78,0,0,0.54,573,3049.77,26152844,99.94,0,0,0.14,572.21,3050.58,26152845,99.85,0,0,0.34,572.3,3050.51,26152846,99.93,0,0,0.14,572.35,3050.45,26152847,99.93,0,0.01,0.13,572.32,3050.48,26152848,99.84,0,0,0.33,572.64,3050.15,26152849,99.91,0,0,0.38,572.5,3050.29,26152850,99.86,0,0,0.29,572.5,3050.32,26152851,99.94,0,0,0.14,572.47,3050.36,26152852,99.92,0,0,0.18,572.49,3050.33,26152853,99.95,0,0,0.15,571.73,3051.08,26152854,99.8,0,0,0.58,572.07,3050.74,26152855,99.91,0,0,0.3,571.56,3051.26,26152856,99.94,0,0,0.16,571.53,3051.29,26152857,99.91,0,0,0.14,571.51,3051.31,26152858,99.94,0,0,0.16,571.49,3051.32,26152859,95.11,0.33,0.01,258.36,582.73,3039.89,26152860,99.89,0,0,0.38,574.31,3048.59,26152861,99.91,0,0,0.15,574.28,3048.62,26152862,99.93,0,0,0.16,574.24,3048.65,26152863,99.86,0,0,0.18,574.2,3048.68,26152864,99.77,0,0,0.52,573.29,3049.63,26152865,99.88,0,0,0.38,571.8,3051.16,26152866,99.95,0,0,0.17,571.89,3051.06,26152867,99.95,0,0,0.14,571.86,3051.09,26152868,99.93,0,0,0.15,571.83,3051.12,26152869,99.66,0,0,0.67,572.16,3050.77,26152870,99.88,0,0,0.29,571.55,3051.41,26152871,99.93,0,0,0.16,571.5,3051.45,26152872,99.92,0,0.01,0.14,571.56,3051.39,26152873,99.93,0,0,0.14,571.6,3051.34,26152874,99.74,0,0,0.54,572.28,3050.66,26152875,99.87,0,0,0.32,572.05,3050.9,26152876,99.93,0,0,0.13,572.01,3050.94,26152877,99.9,0,0,0.2,571.74,3051.2,26152878,99.95,0,0,0.16,571.79,3051.15,26152879,99.77,0.01,0.01,0.55,572.28,3050.65,26152880,99.88,0,0,0.29,572.35,3050.61,26152881,99.94,0,0,0.16,572.31,3050.64,26152882,99.93,0,0,0.14,572.27,3050.67,26152883,99.92,0,0,0.14,572.24,3050.7,26152884,99.79,0,0,0.52,572.53,3050.41,26152885,99.86,0,0,0.36,572.07,3050.89,26152886,99.95,0,0,0.14,572.11,3050.84,26152887,97.93,0,0,0.16,572.08,3050.86,26152888,99.93,0,0,0.15,572.06,3050.89,26152889,99.91,0,0,0.15,572.03,3050.91,26152890,99.64,0,0,0.74,572.31,3050.65,26152891,99.92,0,0,0.13,571.49,3051.46,26152892,99.92,0,0,0.15,571.52,3051.43,26152893,99.94,0,0,0.17,571.62,3051.32,26152894,99.94,0,0,0.14,571.59,3051.35,26152895,99.7,0,0,0.68,572.39,3050.58,26152896,99.93,0,0,0.14,572.28,3050.69,26152897,99.93,0,0,0.14,572.25,3050.71,26152898,99.92,0,0,0.15,572.22,3050.73,26152899,99.85,0,0,0.28,571.95,3050.98,26152900,99.75,0,0,0.7,572.6,3050.34,26152901,99.93,0,0,0.16,572.32,3050.62,26152902,99.92,0,0,0.15,572.29,3050.64,26152903,99.93,0,0,0.16,572.27,3050.66,26152904,99.95,0,0,0.14,572.23,3050.72,26152905,99.77,0,0,0.72,572.34,3050.63,26152906,99.92,0,0,0.14,571.95,3051.01,26152907,99.93,0.01,0.01,0.16,572.05,3050.9,26152908,99.92,0,0,0.14,572.09,3050.86,26152909,99.92,0,0,0.15,572.06,3050.89,26152910,99.75,0,0,0.63,572.33,3050.64,26152911,99.93,0,0,0.21,572.02,3050.94,26152912,99.89,0,0,0.17,571.93,3051.03,26152913,99.93,0,0,0.17,571.46,3051.49,26152914,99.94,0,0,0.14,571.56,3051.39,26152915,99.75,0,0,0.73,572.08,3050.88,26152916,99.91,0,0,0.16,571.83,3051.13,26152917,99.92,0,0,0.14,571.8,3051.16,26152918,99.94,0,0,0.15,571.77,3051.18,26152919,99.9,0,0,0.15,571.74,3051.21,26152920,99.74,0,0,0.69,571.74,3051.23,26152921,99.94,0,0,0.16,571.79,3051.17,26152922,99.93,0,0,0.13,571.86,3051.1,26152923,99.92,0,0,0.19,571.82,3051.13,26152924,99.92,0,0,0.17,571.79,3051.16,26152925,99.72,0,0,0.61,572.48,3050.49,26152926,99.93,0,0,0.26,572.49,3050.47,26152927,99.91,0,0,0.16,572.47,3050.49,26152928,99.93,0.01,0.01,0.14,572.47,3050.49,26152929,99.9,0,0,0.4,572.28,3050.67,26152930,99.85,0,0,0.35,572.27,3050.7,26152931,99.76,0,0,0.52,572.37,3050.6,26152932,99.94,0,0,0.16,571.96,3051,26152933,99.92,0,0,0.14,572.05,3050.91,26152934,99.93,0,0,0.15,572.08,3050.88,26152935,99.89,0,0,0.3,572.32,3050.66,26152936,99.8,0,0,0.57,572.42,3050.57,26152937,99.93,0,0,0.22,572,3050.98,26152938,99.91,0,0,0.19,571.96,3051.02,26152939,99.91,0.01,0.01,0.18,572.03,3050.94,26152940,99.86,0,0,0.37,572.67,3050.3,26152941,99.78,0,0,0.56,572.72,3050.25,26152942,99.95,0,0,0.16,572.28,3050.69,26152943,99.93,0,0,0.14,572.25,3050.71,26152944,99.9,0,0,0.16,572.22,3050.74,26152945,99.84,0,0,0.29,572.21,3050.77,26152946,99.79,0,0,0.57,572.77,3050.2,26152947,99.94,0,0,0.16,572.37,3050.59,26152948,99.93,0,0,0.15,572.34,3050.62,26152949,99.94,0,0,0.18,572.31,3050.65,26152950,99.88,0,0,0.34,572.3,3050.68,26152951,99.79,0,0,0.53,572.72,3050.26,26152952,99.92,0,0,0.18,572.49,3050.48,26152953,99.93,0,0,0.18,572.46,3050.5,26152954,99.92,0,0,0.2,572.53,3050.43,26152955,99.9,0,0,0.35,572.37,3050.61,26152956,99.78,0,0,0.57,572.74,3050.23,26152957,99.95,0,0,0.14,572.54,3050.42,26152958,99.93,0,0,0.14,572.51,3050.45,26152959,99.88,0,0,0.28,572.02,3050.92,26152960,99.9,0,0,0.32,572.47,3050.49,26152961,99.79,0,0,0.53,572.78,3050.17,26152962,99.93,0,0,0.14,572.36,3050.59,26152963,99.94,0,0,0.16,572.33,3050.62,26152964,99.94,0,0,0.15,572.3,3050.64,26152965,99.86,0,0,0.3,571.57,3051.39,26152966,99.8,0,0,0.38,572.34,3050.62,26152967,99.92,0,0.01,0.35,572.72,3050.23,26152968,99.91,0,0,0.18,572.7,3050.25,26152969,99.93,0,0,0.18,572.84,3050.1,26152970,99.88,0,0,0.29,572.6,3050.36,26152971,99.92,0,0,0.16,572.56,3050.4,26152972,99.75,0,0,0.59,573.06,3049.89,26152973,99.94,0,0,0.18,572.25,3050.7,26152974,99.92,0,0,0.15,572.22,3050.72,26152975,99.87,0.01,0.01,0.29,572.46,3050.5,26152976,99.93,0,0,0.21,572.51,3050.44,26152977,99.75,0,0,0.57,573.04,3049.9,26152978,99.91,0,0,0.18,572.69,3050.25,26152979,99.96,0,0,0.18,572.71,3050.23,26152980,99.87,0,0,0.27,572.85,3050.11,26152981,99.95,0,0,0.14,572.82,3050.14,26152982,99.79,0,0,0.56,572.96,3049.99,26152983,99.92,0,0,0.14,572.51,3050.43,26152984,99.95,0,0,0.16,572.48,3050.46,26152985,99.87,0,0,0.3,572.72,3050.24,26152986,99.86,0,0,0.19,572.69,3050.26,26152987,99.8,0,0,0.57,572.96,3049.98,26152988,99.92,0,0,0.14,572.57,3050.37,26152989,99.88,0,0,0.3,572.54,3050.38,26152990,99.87,0,0,0.29,572.61,3050.32,26152991,99.93,0,0,0.16,572.49,3050.43,26152992,99.79,0,0,0.54,572.82,3050.1,26152993,99.91,0,0,0.17,572.43,3050.48,26152994,99.92,0,0,0.15,572.4,3050.52,26152995,99.81,0,0,0.3,571.37,3051.57,26152996,99.92,0,0,0.16,571.35,3051.59,26152997,99.78,0,0,0.43,572.32,3050.62,26152998,99.91,0,0,0.29,572.52,3050.41,26152999,99.91,0.01,0.01,0.14,572.5,3050.43,26153000,99.85,0,0,0.29,572.72,3050.22,26153001,99.92,0,0,0.14,572.69,3050.25,26153002,99.76,0,0,0.33,573.1,3049.83,26153003,99.93,0,0,0.37,572.57,3050.36,26153004,99.93,0,0,0.14,572.54,3050.39,26153005,99.88,0,0,0.3,572.78,3050.16,26153006,99.92,0,0,0.18,572.75,3050.19,26153007,99.94,0,0,0.14,572.72,3050.22,26153008,99.78,0,0,0.54,573.19,3049.74,26153009,99.91,0,0,0.16,572.26,3050.67,26153010,99.88,0,0,0.3,572.33,3050.61,26153011,99.94,0,0,0.14,572.3,3050.64,26153012,99.93,0,0,0.16,572.26,3050.68,26153013,99.78,0,0,0.68,572.4,3050.53,26153014,99.91,0,0,0.18,571.93,3050.99,26153015,99.9,0,0,0.32,571.98,3050.96,26153016,99.93,0,0,0.21,572.08,3050.85,26153017,99.94,0,0,0.18,572.05,3050.88,26153018,99.79,0,0,0.58,572.38,3050.55,26153019,99.9,0,0,0.3,571.99,3050.92,26153020,99.89,0,0,0.32,572.22,3050.71,26153021,99.93,0,0,0.18,572.19,3050.74,26153022,99.91,0.01,0.15,0.3,572.26,3050.66,26153023,99.8,0,0,0.5,572.86,3050.05,26153024,99.95,0,0,0.2,572.15,3050.76,26153025,99.88,0,0,0.29,571.34,3051.58,26153026,96.77,0.02,0.01,77.27,577.09,3046.7,26153027,99.92,0,0.01,0.16,574.75,3047.75,26153028,99.78,0,0,0.49,575.34,3047.16,26153029,99.91,0,0,0.23,574.86,3047.63,26153030,99.88,0,0,0.29,574.86,3047.64,26153031,99.94,0,0,0.19,572.79,3049.78,26153032,99.9,0,0,0.15,572.39,3050.2,26153033,99.8,0,0,0.43,572.52,3050.07,26153034,99.93,0,0,0.29,572.34,3050.25,26153035,99.87,0,0,0.32,572.42,3050.2,26153036,99.94,0,0,0.14,572.52,3050.1,26153037,99.94,0,0,0.13,572.49,3050.13,26153038,99.82,0,0,0.59,572.78,3049.83,26153039,99.95,0,0,0.2,572.19,3050.41,26153040,99.78,0,0,0.34,571.49,3051.12,26153041,99.94,0,0,0.14,571.41,3051.2,26153042,99.94,0,0,0.14,571.38,3051.23,26153043,99.84,0,0,0.34,572.09,3050.51,26153044,99.92,0,0,0.38,572.25,3050.35,26153045,99.83,0.01,0.01,0.31,571.99,3050.63,26153046,99.93,0,0.01,0.19,571.91,3050.69,26153047,99.95,0,0,0.14,571.89,3050.72,26153048,99.94,0,0,0.14,571.86,3050.74,26153049,99.69,0,0,0.68,572.78,3049.81,26153050,99.86,0,0,0.34,572.28,3050.32,26153051,99.92,0,0,0.13,572.24,3050.35,26153052,99.9,0,0,0.14,572.21,3050.38,26153053,99.91,0,0,0.18,572.19,3050.4,26153054,99.8,0,0,0.55,572.5,3050.08,26153055,99.89,0,0,0.3,572.38,3050.22,26153056,99.95,0,0,0.14,572.4,3050.19,26153057,99.91,0,0,0.2,572.51,3050.08,26153058,99.94,0,0,0.15,572.47,3050.12,26153059,99.78,0.01,0.01,0.53,572.66,3049.92,26153060,99.85,0,0,0.33,572.65,3049.95,26153061,99.9,0,0,0.16,572.63,3049.97,26153062,99.89,0,0,0.14,572.64,3049.95,26153063,99.92,0,0,0.17,572.75,3049.83,26153064,99.8,0,0,0.5,572.95,3049.63,26153065,99.85,0,0,0.39,572.46,3050.14,26153066,99.94,0,0,0.17,572.43,3050.16,26153067,99.93,0,0,0.13,572.4,3050.18,26153068,99.9,0,0,0.15,572.37,3050.21,26153069,99.74,0,0,0.55,572.7,3049.88,26153070,99.88,0,0,0.33,572.43,3050.16,26153071,99.93,0,0,0.15,572.49,3050.1,26153072,99.89,0,0,0.14,572.46,3050.13,26153073,99.9,0,0,0.15,572.43,3050.15,26153074,99.78,0,0,0.59,573.05,3049.53,26153075,99.87,0.01,0.01,0.3,572.69,3049.91,26153076,99.9,0,0,0.16,572.72,3049.87,26153077,99.93,0,0,0.14,572.69,3049.9,26153078,99.91,0,0,0.14,572.66,3049.92,26153079,99.78,0,0,0.27,572.39,3050.18,26153080,99.71,0,0,0.66,572.74,3049.84,26153081,99.93,0,0,0.14,572.35,3050.23,26153082,99.89,0,0,0.15,572.43,3050.14,26153083,99.86,0,0,0.18,572.51,3050.05,26153084,99.93,0.01,0.01,0.21,572.45,3050.13,26153085,99.73,0,0,0.69,572.99,3049.61,26153086,99.88,0,0,0.14,572.61,3049.99,26153087,99.89,0,0.01,0.16,572.73,3049.86,26153088,99.88,0,0,0.14,572.73,3049.85,26153089,99.88,0,0,0.15,572.69,3049.89,26153090,99.66,0,0,0.68,572.8,3049.79,26153091,99.87,0,0,0.14,572.4,3050.19,26153092,99.86,0,0,0.16,572.37,3050.21,26153093,99.85,0,0,0.31,572.15,3050.44,26153094,99.88,0,0,0.16,572.26,3050.32,26153095,99.69,0,0,0.73,573.72,3048.87,26153096,99.84,0,0,0.13,572.96,3049.63,26153097,99.85,0,0.01,0.18,572.91,3049.68,26153098,99.84,0,0,0.15,572.84,3049.74,26153099,99.84,0,0,0.17,572.91,3049.67,26153100,99.54,0,0,0.7,572.84,3049.75,26153101,99.85,0,0,0.16,572.46,3050.12,26153102,99.84,0,0,0.14,572.43,3050.15,26153103,99.85,0,0,0.14,572.4,3050.17,26153104,99.86,0,0,0.16,572.37,3050.2,26153105,99.68,0,0,0.7,573.09,3049.5,26153106,99.84,0,0,0.16,572.4,3050.18,26153107,99.7,0,0,0.14,572.49,3050.09,26153108,99.84,0,0,0.16,572.46,3050.12,26153109,99.81,0,0,0.31,572.65,3049.89,26153110,99.61,0,0,0.71,573,3049.56,26153111,99.85,0,0,0.13,572.61,3049.94,26153112,99.85,0,0,0.15,572.58,3049.97,26153113,99.86,0,0,0.16,572.61,3049.93,26153114,99.83,0,0,0.14,572.71,3049.85,26153115,99.66,0,0,0.66,573.09,3049.49,26153116,99.83,0,0,0.39,572.92,3049.66,26153117,99.84,0,0,0.19,572.89,3049.68,26153118,99.84,0,0,0.14,572.86,3049.7,26153119,99.85,0.01,0.01,0.17,572.83,3049.73,26153120,99.82,0,0,0.31,572.83,3049.75,26153121,99.72,0,0,0.71,573.63,3048.94,26153122,99.84,0,0,0.18,572.95,3049.62,26153123,99.84,0,0,0.18,572.91,3049.65,26153124,99.84,0,0,0.18,572.88,3049.68,26153125,99.82,0.01,0.01,0.34,572.63,3049.95,26153126,99.72,0,0,0.59,572.93,3049.64,26153127,99.86,0,0,0.18,572.36,3050.2,26153128,99.81,0.02,0.96,0.16,572.47,3050.09,26153129,99.85,0,0,0.19,572.42,3050.13,26153130,99.81,0,0,0.3,572.65,3049.91,26153131,99.71,0,0,0.54,573.13,3049.43,26153132,99.82,0,0,0.16,572.83,3049.73,26153133,99.82,0,0,0.15,572.93,3049.63,26153134,99.85,0,0,0.15,572.96,3049.58,26153135,99.77,0,0,0.31,572.95,3049.61,26153136,99.69,0,0,0.55,573.38,3049.18,26153137,99.83,0,0,0.16,573.13,3049.42,26153138,99.85,0,0,0.14,573.1,3049.45,26153139,99.8,0,0,0.26,572.81,3049.71,26153140,99.8,0.01,0.12,0.46,572.95,3049.59,26153141,99.71,0,0,0.41,573.38,3049.15,26153142,99.81,0,0,0.27,572.85,3049.67,26153143,99.84,0,0,0.16,572.82,3049.7,26153144,99.85,0,0,0.14,572.79,3049.73,26153145,99.78,0,0,0.32,572.88,3049.65,26153146,99.7,0,0,0.52,573.28,3049.24,26153147,99.86,0,0.01,0.19,572.9,3049.62,26153148,99.85,0.01,0.01,0.16,572.87,3049.64,26153149,99.85,0,0,0.16,572.82,3049.69,26153150,99.79,0,0,0.43,572.83,3049.7,26153151,99.72,0,0,0.57,573.11,3049.41,26153152,99.85,0,0,0.2,572.6,3049.91,26153153,99.82,0,0,0.18,572.19,3050.31,26153154,99.85,0,0,0.17,572.14,3050.36,26153155,99.76,0,0,0.38,572.85,3049.67,26153156,99.85,0,0,0.16,572.83,3049.69,26153157,99.72,0,0,0.55,573.49,3049.02,26153158,99.87,0,0,0.14,572.77,3049.73,26153159,99.86,0,0,0.14,572.85,3049.65,26153160,99.8,0,0,0.32,573.19,3049.33,26153161,99.85,0,0,0.14,573.17,3049.35,26153162,99.72,0,0,0.54,573.49,3049.02,26153163,99.77,0,0,0.16,572.97,3049.54,26153164,99.84,0,0,0.14,572.33,3050.17,26153165,99.77,0,0,0.3,572.33,3050.19,26153166,99.84,0,0,0.16,572.38,3050.13,26153167,99.68,0,0,0.52,572.49,3050.02,26153168,98.95,0,0,0.21,571.93,3050.58,26153169,99.8,0,0,0.27,572.36,3050.12,26153170,99.79,0,0,0.29,572.37,3050.13,26153171,99.85,0,0,0.14,572.34,3050.16,26153172,99.71,0,0,0.55,572.65,3049.84,26153173,99.84,0,0,0.16,572.37,3050.11,26153174,99.83,0,0,0.15,572.43,3050.09,26153175,99.8,0,0,0.31,571.93,3050.6,26153176,99.85,0,0,0.16,571.89,3050.64,26153177,99.71,0,0,0.57,572.31,3050.21,26153178,99.85,0,0,0.23,572.07,3050.45,26153179,99.84,0.01,0.02,0.23,572.06,3050.45,26153180,99.83,0,0,0.32,572.12,3050.41,26153181,99.85,0,0,0.14,572.09,3050.43,26153182,99.73,0,0,0.49,572.48,3050.04,26153183,99.84,0,0,0.19,572.32,3050.19,26153184,99.84,0,0,0.15,572.42,3050.08,26153185,99.78,0,0,0.31,572.42,3050.11,26153186,99.86,0,0,0.14,572.38,3050.14,26153187,99.72,0,0,0.49,572.63,3049.88,26153188,99.86,0,0,0.22,571.81,3050.7,26153189,99.83,0,0,0.15,571.78,3050.73,26153190,99.83,0,0,0.32,571.87,3050.65,26153191,99.85,0,0,0.14,571.92,3050.6,26153192,99.86,0,0,0.16,571.89,3050.63,26153193,99.68,0,0,0.55,572.44,3050.07,26153194,99.85,0,0,0.15,572.08,3050.43,26153195,99.82,0,0,0.31,572.55,3049.97,26153196,99.86,0,0,0.16,572.36,3050.16,26153197,99.85,0,0,0.16,572.35,3050.17,26153198,99.7,0,0,0.57,571.8,3050.71,26153199,99.77,0,0,0.3,572.6,3049.89,26153200,99.78,0,0,0.3,572.62,3049.89,26153201,99.86,0,0,0.15,572.58,3049.92,26153202,99.87,0,0,0.17,572.56,3049.94,26153203,99.69,0,0,0.54,571.37,3051.12,26153204,99.84,0,0,0.14,570.03,3052.46,26153205,99.79,0,0,0.32,571.89,3050.62,26153206,99.85,0,0,0.14,571.95,3050.56,26153207,99.85,0,0.01,0.14,571.91,3050.58,26153208,99.71,0,0,0.5,572.46,3050.04,26153209,99.84,0,0,0.2,572.34,3050.15,26153210,99.76,0,0,0.32,572.85,3049.66,26153211,99.86,0,0,0.16,572.78,3049.72,26153212,99.86,0,0,0.15,572.9,3049.6,26153213,99.64,0,0,0.57,573.47,3049.03,26153214,99.85,0,0,0.17,572.38,3050.1,26153215,99.8,0,0,0.32,572.86,3049.64,26153216,99.83,0,0,0.14,572.84,3049.66,26153217,99.87,0,0,0.15,572.81,3049.69,26153218,99.72,0,0,0.47,573.08,3049.41,26153219,99.86,0,0,0.22,572.31,3050.18,26153220,99.79,0,0,0.3,572.68,3049.82,26153221,99.86,0,0,0.17,572.66,3049.84,26153222,99.86,0,0,0.14,572.63,3049.86,26153223,97.49,0.02,0.01,0.64,577.73,3046.29,26153224,98.95,0,0,77.39,576.28,3046.41,26153225,99.83,0,0,0.31,575.08,3047.64,26153226,99.86,0,0,0.14,575.05,3047.68,26153227,99.87,0,0,0.17,575.02,3047.7,26153228,99.86,0,0,0.14,574.99,3047.73,26153229,99.68,0,0,0.7,572.77,3049.95,26153230,99.82,0,0,0.39,572.53,3050.21,26153231,99.87,0,0,0.18,572.64,3050.1,26153232,99.86,0,0,0.18,572.66,3050.07,26153233,99.81,0,0,0.19,572.64,3050.09,26153234,99.72,0,0,0.56,573.14,3049.61,26153235,99.83,0,0,0.36,572.6,3050.17,26153236,99.82,0,0,0.18,572.57,3050.2,26153237,99.84,0,0,0.19,572.3,3050.47,26153238,99.85,0,0,0.14,572.31,3050.45,26153239,99.67,0.01,0.01,0.49,572.91,3049.84,26153240,99.81,0,0,0.37,572.14,3050.63,26153241,99.83,0,0,0.15,572.1,3050.66,26153242,99.85,0,0,0.15,572.08,3050.69,26153243,99.84,0,0,0.16,572.05,3050.71,26153244,99.7,0,0,0.48,572.93,3049.82,26153245,99.81,0,0,0.36,572.62,3050.15,26153246,99.85,0,0,0.16,572.66,3050.11,26153247,99.82,0,0,0.14,572.63,3050.13,26153248,99.87,0,0,0.14,572.6,3050.16,26153249,99.73,0,0,0.5,573,3049.75,26153250,99.8,0,0,0.34,572.81,3049.96,26153251,99.84,0.01,0.01,0.15,572.83,3049.94,26153252,99.88,0,0,0.18,572.91,3049.86,26153253,99.89,0,0,0.15,572.88,3049.88,26153254,99.78,0,0,0.42,573.2,3049.58,26153255,99.86,0,0,0.48,572.84,3049.95,26153256,99.92,0,0,0.18,572.81,3049.98,26153257,99.94,0,0,0.18,572.83,3049.96,26153258,99.95,0,0,0.14,572.94,3049.84,26153259,99.72,0,0,0.44,573.27,3049.49,26153260,99.89,0,0,0.51,572.89,3049.88,26153261,99.93,0,0,0.16,572.86,3049.91,26153262,99.95,0,0,0.14,572.82,3049.94,26153263,99.93,0,0,0.14,572.79,3049.97,26153264,99.91,0,0,0.15,572.76,3050,26153265,99.72,0,0,0.71,573.19,3049.58,26153266,99.95,0,0,0.14,572.66,3050.11,26153267,99.92,0,0.01,0.16,572.63,3050.13,26153268,99.92,0,0,0.14,572.59,3050.16,26153269,99.91,0,0,0.16,572.55,3050.2,26153270,99.74,0,0,0.74,572.92,3049.85,26153271,99.9,0,0,0.18,572.61,3050.16,26153272,99.95,0,0,0.18,572.67,3050.1,26153273,99.94,0,0,0.17,572.41,3050.34,26153274,99.95,0,0,0.18,572.36,3050.39,26153275,99.73,0,0,0.72,573.3,3049.46,26153276,99.93,0,0,0.18,573.06,3049.71,26153277,99.94,0,0,0.15,573.03,3049.73,26153278,99.93,0,0,0.15,573,3049.76,26153279,99.94,0,0,0.16,573.11,3049.64,26153280,99.68,0,0,0.72,573.02,3049.74,26153281,99.95,0,0,0.14,572.62,3050.14,26153282,99.93,0,0,0.16,572.59,3050.17,26153283,99.95,0,0,0.14,572.56,3050.2,26153284,99.95,0,0,0.15,572.53,3050.22,26153285,99.73,0,0,0.75,573.35,3049.42,26153286,99.95,0,0,0.19,573.12,3049.64,26153287,99.94,0,0,0.18,573.14,3049.62,26153288,99.93,0,0,0.14,573.1,3049.65,26153289,99.85,0,0,0.3,572.58,3050.15,26153290,99.7,0,0,0.72,572.72,3050.03,26153291,99.93,0,0,0.18,572.03,3050.71,26153292,99.91,0,0,0.16,572.05,3050.69,26153293,99.94,0,0,0.14,572.16,3050.57,26153294,99.93,0,0,0.14,572.13,3050.61,26153295,99.73,0.01,0.01,0.77,572.78,3049.98,26153296,99.95,0,0,0.15,571.11,3051.64,26153297,99.95,0,0,0.18,571.43,3051.32,26153298,99.93,0,0,0.17,571.4,3051.34,26153299,99.91,0.01,0.01,0.14,571.37,3051.37,26153300,99.7,0,0,0.52,572.85,3049.91,26153301,99.94,0,0,0.39,572.56,3050.2,26153302,99.93,0,0,0.18,572.52,3050.23,26153303,99.93,0,0,0.18,572.59,3050.15,26153304,99.94,0,0,0.16,572.65,3050.08,26153305,99.87,0,0,0.32,573.17,3049.59,26153306,99.81,0,0,0.56,573.26,3049.49,26153307,99.92,0,0,0.14,572.84,3049.91,26153308,99.94,0,0,0.15,572.81,3049.93,26153309,99.94,0,0,0.16,572.78,3049.96,26153310,99.42,0,0,0.3,573.05,3049.71,26153311,99.8,0,0,0.53,573.52,3049.23,26153312,99.95,0,0,0.16,573.15,3049.6,26153313,99.94,0,0,0.14,573.12,3049.63,26153314,99.94,0,0,0.16,573.09,3049.65,26153315,99.9,0,0,0.3,572.85,3049.91,26153316,99.81,0,0,0.54,573.34,3049.42,26153317,99.94,0,0,0.14,573.02,3049.73,26153318,99.89,0,0,0.15,572.97,3049.77,26153319,99.85,0,0,0.26,572.41,3050.31,26153320,99.84,0,0,0.34,572.16,3050.58,26153321,99.81,0,0,0.58,573.1,3049.63,26153322,99.93,0,0,0.18,572.58,3050.15,26153323,99.93,0,0,0.14,572.55,3050.18,26153324,99.9,0,0,0.17,572.51,3050.22,26153325,99.87,0,0,0.31,572.58,3050.18,26153326,99.8,0,0,0.54,573.01,3049.74,26153327,99.93,0,0.01,0.15,572.63,3050.12,26153328,99.93,0,0,0.15,572.59,3050.15,26153329,99.89,0,0,0.17,572.55,3050.18,26153330,99.9,0,0,0.33,572.53,3050.22,26153331,99.77,0,0,0.52,572.81,3049.94,26153332,99.92,0,0,0.15,572.41,3050.34,26153333,99.9,0,0,0.17,572.16,3050.58,26153334,99.92,0,0,0.15,572.09,3050.64,26153335,99.9,0,0,0.3,572.33,3050.42,26153336,99.8,0,0,0.56,572.71,3050.04,26153337,99.93,0,0,0.18,572.53,3050.22,26153338,99.93,0,0,0.15,572.5,3050.24,26153339,99.92,0,0,0.14,572.52,3050.21,26153340,99.85,0,0,0.29,572.66,3050.09,26153341,99.83,0,0,0.3,572.97,3049.78,26153342,99.89,0,0,0.41,571.86,3050.89,26153343,99.92,0,0,0.18,571.83,3050.91,26153344,99.94,0,0,0.16,571.8,3050.94,26153345,99.85,0,0,0.3,572.51,3050.24,26153346,99.94,0,0,0.16,572.54,3050.21,26153347,99.8,0,0,0.54,572.61,3050.14,26153348,99.92,0,0,0.14,572.16,3050.58,26153349,99.87,0,0,0.27,572.63,3050.09,26153350,99.88,0.01,0.01,0.37,572.6,3050.14,26153351,99.93,0,0,0.16,572.63,3050.1,26153352,99.8,0,0,0.54,573.32,3049.4,26153353,99.93,0,0,0.15,572.85,3049.86,26153354,99.94,0,0,0.15,572.82,3049.9,26153355,99.88,0,0,0.3,572.57,3050.17,26153356,99.94,0,0,0.14,572.54,3050.2,26153357,99.78,0,0,0.56,572.96,3049.77,26153358,99.93,0,0,0.23,572.58,3050.15,26153359,99.91,0.01,0.01,0.15,572.64,3050.09,26153360,99.87,0,0,0.32,572.62,3050.12,26153361,99.96,0,0,0.14,572.59,3050.14,26153362,99.79,0,0,0.39,572.92,3049.81,26153363,99.94,0,0,0.3,572.54,3050.19,26153364,99.92,0,0,0.15,572.51,3050.21,26153365,99.86,0,0,0.33,572.26,3050.47,26153366,99.91,0,0,0.17,572.34,3050.39,26153367,99.78,0,0,0.54,572.69,3050.03,26153368,99.96,0,0,0.15,572.11,3050.61,26153369,99.94,0,0,0.14,572.08,3050.64,26153370,99.83,0,0,0.31,572.55,3050.19,26153371,99.93,0,0,0.16,572.53,3050.2,26153372,99.95,0,0,0.14,572.5,3050.23,26153373,99.79,0,0,0.57,572.87,3049.85,26153374,99.94,0,0,0.14,572.63,3050.09,26153375,99.89,0,0,0.33,572.63,3050.11,26153376,99.95,0,0,0.12,572.6,3050.13,26153377,99.93,0,0,0.16,572.57,3050.16,26153378,99.81,0,0,0.6,573.1,3049.63,26153379,99.88,0,0,0.3,572.75,3049.95,26153380,99.88,0,0,0.32,572.74,3049.98,26153381,99.93,0,0,0.16,572.8,3049.91,26153382,99.94,0,0,0.15,572.86,3049.85,26153383,99.81,0,0,0.53,572.97,3049.73,26153384,99.91,0,0,0.17,572.55,3050.15,26153385,99.88,0,0,0.32,572.79,3049.92,26153386,99.95,0,0,0.16,572.76,3049.95,26153387,99.91,0,0.01,0.14,572.73,3049.98,26153388,99.78,0,0,0.57,572.93,3049.77,26153389,99.93,0,0,0.15,572.6,3050.09,26153390,99.9,0,0,0.32,572.84,3049.88,26153391,99.93,0,0,0.13,572.82,3049.89,26153392,99.93,0,0,0.16,572.75,3049.95,26153393,99.8,0,0,0.61,572.85,3049.84,26153394,99.95,0,0,0.16,572.47,3050.23,26153395,99.86,0,0,0.35,572.51,3050.2,26153396,99.93,0,0,0.14,572.65,3050.05,26153397,99.93,0,0,0.16,572.62,3050.09,26153398,99.77,0,0,0.54,573.52,3049.18,26153399,99.93,0,0,0.15,573.05,3049.64,26153400,99.88,0,0,0.32,573.05,3049.66,26153401,99.92,0,0,0.16,573.01,3049.7,26153402,99.92,0,0,0.15,572.97,3049.73,26153403,99.8,0,0,0.41,573.68,3049.01,26153404,99.92,0,0,0.31,573.1,3049.59,26153405,99.88,0,0,0.32,572.85,3049.86,26153406,99.93,0,0,0.16,572.81,3049.89,26153407,99.94,0,0,0.15,572.78,3049.92,26153408,99.94,0,0,0.15,572.75,3049.94,26153409,99.68,0,0,0.66,573.39,3049.27,26153410,99.36,0,0,0.3,572.86,3049.82,26153411,99.94,0,0,0.17,572.87,3049.81,26153412,99.93,0.01,0.01,0.17,572.78,3049.9,26153413,99.92,0,0,0.16,572.74,3049.93,26153414,99.77,0,0,0.57,572.61,3050.07,26153415,99.86,0,0,0.36,572.16,3050.54,26153416,99.93,0,0,0.19,572.12,3050.58,26153417,99.94,0,0,0.2,571.86,3050.84,26153418,99.95,0,0,0.16,571.82,3050.87,26153419,99.77,0.01,0.01,0.55,572.53,3050.15,26153420,99.88,0,0,0.36,572.28,3050.43,26153421,99.93,0,0,0.13,572.24,3050.46,26153422,99.93,0,0,0.17,572.3,3050.4,26153423,99.94,0,0,0.17,572.37,3050.32,26153424,99.8,0,0,0.54,573.34,3049.35,26153425,99.9,0,0,0.32,572.58,3050.12,26153426,99.95,0,0,0.14,572.53,3050.17,26153427,99.93,0,0,0.16,572.5,3050.2,26153428,99.94,0,0,0.14,572.47,3050.23,26153429,99.76,0,0,0.5,572.78,3049.91,26153430,99.85,0,0,0.37,573.34,3049.37,26153431,99.87,0,0,0.14,573.31,3049.39,26153432,99.95,0,0,0.14,573.28,3049.41,26153433,99.9,0,0,0.16,573.26,3049.43,26153434,99.8,0,0,0.54,573.57,3049.11,26153435,99.88,0,0,0.36,572.49,3050.21,26153436,99.94,0,0.02,0.16,572.51,3050.2,26153437,99.92,0,0,0.16,572.57,3050.14,26153438,99.92,0,0.01,0.16,572.52,3050.19,26153439,99.71,0,0,0.66,573.31,3049.37,26153440,99.88,0,0,0.32,573.21,3049.49,26153441,99.93,0,0,0.14,573.39,3049.31,26153442,99.93,0,0,0.15,573.36,3049.33,26153443,99.94,0,0,0.16,573.32,3049.36,26153444,99.79,0,0,0.39,573.85,3048.84,26153445,99.88,0,0,0.49,572.55,3050.15,26153446,99.94,0,0,0.16,572.51,3050.19,26153447,99.94,0,0.01,0.14,572.49,3050.2,26153448,99.95,0,0,0.14,572.63,3050.05,26153449,99.92,0,0,0.15,572.59,3050.09,26153450,99.73,0,0,0.69,572.83,3049.87,26153451,99.95,0,0,0.13,572.3,3050.39,26153452,99.94,0,0,0.16,572.28,3050.41,26153453,99.9,0,0,0.17,572.63,3050.06,26153454,99.91,0,0,0.14,572.76,3049.92,26153455,99.71,0,0,0.74,573.57,3049.12,26153456,99.93,0,0,0.16,573.35,3049.35,26153457,99.91,0,0,0.14,573.32,3049.37,26153458,99.92,0,0,0.14,573.29,3049.4,26153459,99.89,0,0,0.17,573.26,3049.42,26153460,99.66,0,0,0.71,573.4,3049.29,26153461,99.93,0,0,0.16,572.96,3049.73,26153462,99.91,0,0,0.17,573.05,3049.63,26153463,99.94,0,0,0.14,573.07,3049.6,26153464,99.9,0,0,0.15,573.04,3049.63,26153465,99.74,0,0,0.72,573.34,3049.34,26153466,99.95,0,0,0.14,572.51,3050.17,26153467,99.93,0,0,0.14,572.47,3050.2,26153468,99.91,0,0,0.16,572.44,3050.22,26153469,99.83,0,0,0.26,572.78,3049.86,26153470,99.71,0,0,0.69,573.51,3049.15,26153471,99.91,0,0,0.16,572.55,3050.1,26153472,99.94,0.01,0.01,0.14,572.51,3050.14,26153473,99.91,0,0,0.19,572.47,3050.17,26153474,99.93,0,0,0.15,572.58,3050.07,26153475,99.67,0,0,0.75,572.75,3049.92,26153476,99.92,0,0,0.2,572.53,3050.14,26153477,99.91,0,0,0.25,572.5,3050.17,26153478,99.95,0,0,0.14,572.46,3050.19,26153479,99.92,0.01,0.01,0.15,572.43,3050.23,26153480,99.73,0,0,0.56,572.78,3049.89,26153481,99.93,0,0,0.28,571.34,3051.33,26153482,99.95,0,0,0.16,571.3,3051.36,26153483,99.92,0,0,0.15,571.27,3051.39,26153484,99.92,0,0,0.15,571.24,3051.42,26153485,99.91,0,0,0.32,571.71,3050.96,26153486,99.81,0,0,0.53,572.95,3049.72,26153487,99.94,0,0,0.14,572.8,3049.87,26153488,99.94,0,0,0.16,572.83,3049.82,26153489,99.92,0,0,0.15,572.81,3049.85,26153490,99.88,0,0,0.3,572.79,3049.88,26153491,99.78,0,0,0.55,572.88,3049.78,26153492,99.9,0,0,0.16,572.48,3050.19,26153493,99.93,0,0,0.16,572.45,3050.21,26153494,99.93,0,0,0.15,572.52,3050.13,26153495,99.89,0,0,0.31,572.85,3049.82,26153496,99.78,0,0,0.59,573.17,3049.49,26153497,99.9,0,0,0.14,572.78,3049.88,26153498,99.93,0,0,0.15,572.76,3049.9,26153499,99.88,0,0,0.3,572.72,3049.9,26153500,99.87,0,0,0.3,572.72,3049.92,26153501,99.76,0,0,0.57,573.28,3049.35,26153502,99.91,0,0,0.16,572.85,3049.8,26153503,99.93,0,0,0.14,572.82,3049.82,26153504,99.93,0,0,0.15,572.8,3049.86,26153505,99.88,0,0,0.31,572.81,3049.87,26153506,99.79,0,0,0.4,573.27,3049.41,26153507,99.9,0,0.01,0.28,572.98,3049.73,26153508,99.92,0,0,0.18,572.95,3049.75,26153509,99.93,0,0,0.14,572.98,3049.72,26153510,99.85,0,0,0.33,572.85,3049.86,26153511,99.75,0,0,0.56,573.17,3049.54,26153512,99.9,0,0,0.15,572.79,3049.92,26153513,99.92,0,0,0.17,572.57,3050.13,26153514,99.91,0,0,0.15,572.48,3050.22,26153515,99.88,0,0,0.32,572.71,3050,26153516,99.81,0,0,0.55,572.91,3049.8,26153517,99.95,0,0,0.14,572.29,3050.41,26153518,99.9,0,0,0.14,572.32,3050.38,26153519,99.91,0,0,0.16,572.28,3050.41,26153520,99.77,0,0,0.31,572.27,3050.44,26153521,99.8,0,0,0.34,572.62,3050.09,26153522,99.94,0,0,0.38,572.7,3050.01,26153523,99.93,0,0,0.16,572.75,3049.95,26153524,99.93,0,0,0.16,572.81,3049.89,26153525,99.82,0,0,0.36,572.81,3049.91,26153526,99.91,0,0,0.13,572.78,3049.93,26153527,99.8,0,0,0.6,572.2,3050.5,26153528,99.93,0,0,0.18,571.49,3051.21,26153529,99.88,0,0,0.27,572.87,3049.8,26153530,99.91,0,0,0.3,572.76,3049.93,26153531,96.49,0,0,0.14,572.82,3049.87,26153532,99.79,0,0,0.54,573.38,3049.29,26153533,99.93,0,0,0.16,573,3049.67,26153534,99.92,0,0,0.15,572.97,3049.72,26153535,99.85,0,0,0.31,572.96,3049.74,26153536,99.87,0,0,0.16,572.93,3049.77,26153537,99.79,0,0,0.59,572.59,3050.11,26153538,99.91,0,0,0.18,572.07,3050.62,26153539,99.93,0.01,0.01,0.15,572.08,3050.61,26153540,99.88,0,0,0.35,573.02,3049.68,26153541,99.94,0,0,0.14,573,3049.69,26153542,99.79,0,0,0.41,573.42,3049.27,26153543,99.91,0,0,0.28,573.18,3049.5,26153544,99.93,0,0,0.15,573.22,3049.46,26153545,99.87,0,0,0.32,573.1,3049.6,26153546,99.93,0,0,0.15,573.05,3049.64,26153547,99.7,0,0,0.55,573.72,3048.97,26153548,99.94,0,0,0.19,572.98,3049.7,26153549,99.92,0,0,0.16,572.95,3049.73,26153550,99.86,0,0,0.36,572.95,3049.75,26153551,99.95,0,0,0.15,572.96,3049.73,26153552,99.77,0,0,0.3,573.78,3048.91,26153553,99.92,0,0,0.38,573.04,3049.64,26153554,99.91,0,0,0.14,573.02,3049.66,26153555,99.81,0,0,0.36,572.52,3050.17,26153556,99.9,0,0,0.13,572.48,3050.21,26153557,99.93,0,0,0.16,572.45,3050.24,26153558,99.37,0,0,0.77,573.57,3049.1,26153559,99.87,0,0,0.27,573.31,3049.34,26153560,99.84,0,0,0.32,573.04,3049.63,26153561,99.89,0,0,0.14,573.01,3049.66,26153562,99.93,0,0,0.15,572.98,3049.68,26153563,99.81,0,0,0.55,572.41,3050.25,26153564,99.88,0,0,0.18,571.69,3051.03,26153565,99.83,0,0,0.34,572.66,3050.08,26153566,99.93,0,0,0.17,572.78,3049.96,26153567,99.89,0,0.01,0.14,572.79,3049.95,26153568,99.75,0,0,0.56,572.83,3049.9,26153569,99.89,0,0,0.18,572.23,3050.5,26153570,99.86,0,0,0.33,572.21,3050.53,26153571,99.95,0,0,0.2,572.19,3050.55,26153572,99.93,0,0,0.18,572.16,3050.57,26153573,99.76,0,0,0.61,573.24,3049.48,26153574,99.9,0,0,0.18,573.26,3049.46,26153575,99.85,0,0,0.31,573.25,3049.49,26153576,99.94,0,0,0.14,573.22,3049.52,26153577,99.9,0,0,0.16,573.19,3049.54,26153578,99.8,0,0,0.56,573.52,3049.21,26153579,99.94,0,0,0.22,573.13,3049.59,26153580,99.5,0,0,10.61,572.74,3051.03,26153581,99.93,0,0,0.18,572.68,3051.14,26153582,99.92,0,0,0.18,572.65,3051.16,26153583,99.82,0,0,0.59,573.11,3050.7,26153584,99.91,0,0,0.18,573.08,3050.72,26153585,99.84,0,0,0.35,572.35,3051.48,26153586,99.92,0,0,0.17,572.29,3051.53,26153587,99.92,0,0,0.18,572.43,3051.39,26153588,98.24,0.36,0.01,0.66,573.72,3049.55,26153589,96.59,0,0,258.27,587.54,3036.7,26153590,99.88,0,0,0.35,575.45,3048.07,26153591,99.91,0,0,0.18,575.46,3048.06,26153592,99.9,0,0,0.14,575.58,3047.93,26153593,99.77,0,0,0.35,575.9,3047.6,26153594,99.92,0,0,0.43,573.63,3049.91,26153595,99.88,0,0,0.3,573.34,3050.23,26153596,99.9,0,0,0.16,573.31,3050.25,26153597,99.93,0,0,0.19,573.28,3050.28,26153598,99.93,0,0,0.14,573.26,3050.3,26153599,99.77,0.01,0.01,0.55,573.63,3049.92,26153600,99.85,0,0,0.29,572.42,3051.15,26153601,99.93,0,0,0.15,572.38,3051.19,26153602,99.92,0,0,0.16,572.35,3051.21,26153603,99.91,0,0,0.14,572.32,3051.23,26153604,99.81,0,0,0.55,572.97,3050.58,26153605,99.86,0,0,0.31,573.26,3050.31,26153606,99.92,0,0,0.17,573.37,3050.19,26153607,99.94,0,0,0.14,573.39,3050.17,26153608,99.94,0,0,0.15,573.36,3050.19,26153609,99.8,0,0,0.56,573.69,3049.87,26153610,99.85,0,0,0.32,573.13,3050.44,26153611,99.88,0.01,0.02,0.23,573.1,3050.47,26153612,99.9,0,0,0.16,573.1,3050.45,26153613,99.88,0,0,0.14,573.07,3050.48,26153614,99.79,0,0,0.54,573.38,3050.16,26153615,99.86,0,0,0.34,573.51,3050.05,26153616,99.9,0,0,0.17,573.64,3049.91,26153617,99.92,0,0,0.14,573.65,3049.91,26153618,99.92,0,0,0.16,573.62,3049.93,26153619,99.66,0,0,0.69,574.37,3049.16,26153620,99.81,0,0,0.29,572.89,3050.67,26153621,99.84,0,0,0.16,572.84,3050.72,26153622,99.91,0,0,0.13,572.85,3050.71,26153623,99.91,0,0,0.16,572.96,3050.59,26153624,99.75,0,0,0.49,573.41,3050.15,26153625,99.83,0,0,0.35,573.68,3049.91,26153626,99.92,0,0,0.15,573.34,3050.25,26153627,99.85,0.01,0.01,0.16,572.87,3050.73,26153628,99.86,0,0,0.14,572.84,3050.76,26153629,99.79,0,0,0.41,573.2,3050.39,26153630,99.86,0,0,0.43,572.99,3050.62,26153631,99.87,0,0,0.14,572.95,3050.65,26153632,99.88,0,0,0.16,572.92,3050.68,26153633,99.84,0,0,0.17,572.57,3051.03,26153634,99.88,0,0,0.16,572.38,3051.21,26153635,99.72,0,0,0.68,573.82,3049.79,26153636,99.9,0,0,0.16,573.07,3050.53,26153637,99.91,0,0,0.14,573.09,3050.51,26153638,99.85,0,0,0.15,573.21,3050.39,26153639,99.9,0,0,0.14,573.18,3050.41,26153640,99.66,0,0,0.79,573.27,3050.32,26153641,99.89,0,0,0.18,572.88,3050.71,26153642,99.9,0,0,0.14,572.84,3050.74,26153643,99.89,0,0,0.15,572.81,3050.77,26153644,99.89,0,0,0.14,572.82,3050.75,26153645,99.63,0,0,0.65,573.32,3050.27,26153646,99.87,0,0,0.13,572.93,3050.66,26153647,99.88,0,0,0.17,572.89,3050.69,26153648,99.85,0,0,0.14,572.86,3050.72,26153649,99.78,0,0,0.3,573.07,3050.48,26153650,99.7,0,0,0.65,573.18,3050.4,26153651,99.86,0,0,0.14,572.79,3050.78,26153652,99.85,0,0,0.16,572.9,3050.66,26153653,99.78,0,0,0.16,572.91,3050.65,26153654,99.84,0,0,0.15,572.86,3050.7,26153655,99.65,0,0,0.55,573.7,3049.86,26153656,99.83,0,0,0.3,573.42,3050.14,26153657,99.81,0,0,0.23,573.33,3050.22,26153658,99.83,0,0,0.14,573.41,3050.14,26153659,99.83,0.01,0.01,0.16,573.34,3050.21,26153660,99.66,0,0,0.62,573.44,3050.13,26153661,99.86,0,0,0.2,573.05,3050.51,26153662,99.85,0,0,0.15,573.09,3050.46,26153663,99.84,0,0,0.15,573.19,3050.37,26153664,99.85,0,0,0.15,573.15,3050.4,26153665,99.53,0,0,0.53,572.61,3050.96,26153666,99.85,0,0,0.29,572.86,3050.7,26153667,99.85,0,0,0.15,572.83,3050.73,26153668,99.86,0,0,0.16,572.79,3050.76,26153669,99.83,0,0,0.15,572.9,3050.65,26153670,99.63,0,0,0.7,573.85,3049.71,26153671,99.87,0,0,0.2,573.16,3050.4,26153672,99.83,0,0,0.14,573.12,3050.43,26153673,99.84,0,0,0.18,573.1,3050.46,26153674,99.83,0,0,0.18,573.06,3050.48,26153675,99.81,0,0,0.27,573.06,3050.5,26153676,99.71,0,0,0.62,573.55,3050.01,26153677,99.84,0,0,0.2,573.19,3050.37,26153678,99.83,0,0,0.2,573.16,3050.39,26153679,99.76,0,0,0.35,572.63,3050.91,26153680,99.81,0,0,0.33,572.86,3050.7,26153681,99.71,0,0,0.61,573.57,3049.99,26153682,99.85,0,0,0.2,573.3,3050.25,26153683,99.84,0,0,0.2,573.27,3050.28,26153684,99.85,0,0,0.19,573.33,3050.21,26153685,99.83,0,0,0.3,572.94,3050.62,26153686,99.72,0,0,0.58,573.42,3050.15,26153687,99.83,0,0.01,0.18,573.12,3050.44,26153688,99.82,0,0,0.14,573.09,3050.47,26153689,99.84,0,0,0.15,573.05,3050.52,26153690,99.83,0,0,0.25,573.04,3050.54,26153691,99.7,0,0,0.58,573.55,3050.03,26153692,99.85,0,0,0.15,573.41,3050.16,26153693,99.8,0,0,0.21,573.23,3050.34,26153694,99.82,0,0,0.18,573.1,3050.46,26153695,99.78,0,0,0.26,572.37,3051.21,26153696,99.72,0,0,0.51,573.13,3050.45,26153697,99.84,0,0,0.19,573.29,3050.29,26153698,99.81,0,0,0.15,573.26,3050.3,26153699,99.83,0,0,0.16,573.34,3050.23,26153700,99.75,0,0,0.26,572.24,3051.34,26153701,99.69,0,0,0.39,572.6,3050.97,26153702,99.84,0,0,0.3,572.41,3051.16,26153703,99.82,0,0,0.14,572.38,3051.19,26153704,99.84,0,0,0.16,572.34,3051.22,26153705,99.77,0,0,0.28,573.05,3050.53,26153706,99.69,0,0,0.42,573.73,3049.84,26153707,99.82,0,0,0.29,573.44,3050.13,26153708,99.83,0,0,0.14,573.4,3050.16,26153709,99.75,0,0,0.29,573.38,3050.16,26153710,99.78,0,0,0.25,572.17,3051.39,26153711,99.84,0,0,0.16,572.1,3051.45,26153712,99.69,0,0,0.55,573.57,3049.98,26153713,99.55,0,0,0.16,573.27,3050.28,26153714,99.81,0,0,0.15,573.33,3050.21,26153715,99.79,0,0,0.27,572.95,3050.61,26153716,99.85,0,0,0.14,572.9,3050.65,26153717,99.7,0,0,0.6,573.45,3050.1,26153718,99.83,0,0,0.14,573.09,3050.45,26153719,99.86,0.01,0.01,0.14,573.06,3050.48,26153720,99.75,0,0,0.26,572.34,3051.22,26153721,99.83,0,0,0.14,572.28,3051.27,26153722,99.7,0,0,0.56,573.29,3050.25,26153723,99.83,0,0,0.15,573.15,3050.4,26153724,99.84,0,0,0.14,573.11,3050.43,26153725,99.78,0,0,0.29,573.11,3050.45,26153726,99.85,0,0,0.14,573.08,3050.48,26153727,99.73,0,0,0.54,573.54,3050.01,26153728,99.85,0,0,0.2,573.25,3050.29,26153729,99.84,0,0,0.14,573.34,3050.2,26153730,99.81,0,0,0.25,573.64,3049.92,26153731,99.85,0,0,0.14,573.62,3049.94,26153732,99.72,0,0,0.44,573.91,3049.64,26153733,99.85,0,0.01,0.32,572.8,3050.75,26153734,96.67,0,0,0.14,572.76,3050.78,26153735,99.8,0,0,0.25,573.33,3050.23,26153736,99.85,0,0,0.16,573.4,3050.15,26153737,99.67,0,0,0.39,573.96,3049.59,26153738,99.83,0,0,0.29,573.59,3049.96,26153739,99.8,0,0,0.3,573.57,3049.95,26153740,99.81,0,0,0.25,573.56,3049.97,26153741,99.85,0,0,0.16,573.53,3050.01,26153742,99.69,0,0,0.33,573.95,3049.58,26153743,99.85,0,0,0.38,573.4,3050.12,26153744,99.83,0,0,0.15,573.38,3050.15,26153745,99.77,0,0,0.31,571.91,3051.63,26153746,99.83,0,0,0.15,571.86,3051.68,26153747,99.82,0,0.01,0.16,571.82,3051.71,26153748,99.69,0,0,0.55,573.73,3049.81,26153749,99.85,0,0,0.14,573.53,3050,26153750,99.79,0,0,0.26,573.94,3049.61,26153751,99.83,0,0,0.18,573.91,3049.63,26153752,99.82,0,0,0.14,573.88,3049.65,26153753,99.71,0,0,0.61,573.73,3049.8,26153754,99.85,0,0,0.17,573.08,3050.45,26153755,99.8,0,0,0.27,573.31,3050.23,26153756,99.86,0,0,0.16,573.3,3050.25,26153757,99.82,0,0,0.14,573.31,3050.23,26153758,99.68,0,0,0.58,573.95,3049.59,26153759,99.86,0,0,0.14,573.64,3049.89,26153760,99.71,0,0,0.27,572.46,3051.09,26153761,99.83,0,0,0.14,572.37,3051.17,26153762,99.86,0,0,0.18,572.34,3051.2,26153763,99.71,0,0,0.51,572.94,3050.59,26153764,99.84,0,0,0.2,572.8,3050.73,26153765,99.76,0,0,0.27,573.65,3049.89,26153766,99.86,0,0,0.16,573.64,3049.9,26153767,99.84,0,0,0.15,573.6,3049.95,26153768,99.68,0,0,0.5,573.51,3050.04,26153769,99.76,0,0,0.34,573.75,3049.78,26153770,99.78,0,0,0.26,573.54,3050.01,26153771,99.83,0,0,0.16,573.55,3049.99,26153772,99.83,0,0,0.15,573.67,3049.87,26153773,99.71,0,0,0.55,574.28,3049.26,26153774,98.2,0,0,0.14,573.61,3049.92,26153775,99.83,0,0,0.25,573.85,3049.7,26153776,99.83,0,0,0.14,573.82,3049.72,26153777,99.83,0,0,0.2,573.79,3049.75,26153778,99.7,0,0,0.32,574.07,3049.47,26153779,99.83,0.01,0.01,0.38,573.35,3050.18,26153780,99.82,0,0,0.25,573.16,3050.39,26153781,99.83,0,0,0.16,572.8,3050.74,26153782,99.83,0,0,0.14,572.1,3051.44,26153783,99.7,0,0,0.41,572.44,3051.09,26153784,99.86,0,0,0.3,572.3,3051.23,26153785,99.78,0,0,0.27,573.01,3050.53,26153786,99.82,0,0,0.14,573.13,3050.41,26153787,99.83,0,0.01,0.18,573.13,3050.41,26153788,99.85,0,0,0.13,573.09,3050.45,26153789,99.68,0,0,0.55,572.29,3051.23,26153790,99.78,0,0,0.29,572.55,3050.99,26153791,99.86,0,0,0.16,572.52,3051.02,26153792,99.85,0,0,0.15,572.59,3050.95,26153793,99.85,0,0,0.15,572.65,3050.88,26153794,99.73,0,0,0.55,572.61,3050.92,26153795,99.8,0,0,0.26,572.61,3050.93,26153796,99.84,0,0,0.14,572.59,3050.95,26153797,99.85,0,0,0.16,572.56,3050.97,26153798,99.87,0,0,0.14,572.54,3050.99,26153799,99.6,0,0,0.69,573.46,3050.04,26153800,99.78,0,0,0.29,572.64,3050.88,26153801,99.84,0,0,0.16,572.71,3050.8,26153802,99.85,0,0,0.14,572.69,3050.83,26153803,99.83,0,0,0.14,572.66,3050.85,26153804,99.69,0,0,0.53,573.1,3050.44,26153805,99.76,0,0,0.32,572.86,3050.69,26153806,99.87,0,0,0.14,572.84,3050.71,26153807,99.88,0,0.01,0.16,572.81,3050.73,26153808,99.86,0,0,0.14,572.85,3050.7,26153809,99.73,0,0,0.61,573.35,3050.19,26153810,99.76,0,0,0.24,573.25,3050.31,26153811,99.91,0,0,0.14,573.14,3050.41,26153812,99.9,0,0,0.16,573.11,3050.44,26153813,99.9,0,0,0.18,572.95,3050.6,26153814,99.77,0,0,0.41,573.17,3050.37,26153815,99.81,0,0,0.38,572.13,3051.43,26153816,99.93,0,0,0.16,572.22,3051.33,26153817,99.93,0,0,0.14,572.19,3051.36,26153818,99.93,0,0,0.14,572.17,3051.38,26153819,99.92,0,0,0.15,572.13,3051.41,26153820,99.63,0,0,0.65,572.39,3051.17,26153821,99.94,0,0,0.14,572.09,3051.46,26153822,99.92,0,0,0.16,572.07,3051.48,26153823,99.93,0,0,0.15,572.13,3051.42,26153824,99.89,0,0,0.16,572.18,3051.37,26153825,99.74,0,0,0.67,572.86,3050.7,26153826,99.93,0,0,0.14,572.14,3051.42,26153827,99.9,0,0,0.17,572.11,3051.44,26153828,99.94,0,0,0.14,572.09,3051.46,26153829,99.83,0,0,0.3,573.04,3050.49,26153830,99.76,0,0,0.64,573.32,3050.21,26153831,99.93,0,0,0.21,572.71,3050.83,26153832,99.92,0,0,0.13,572.68,3050.85,26153833,99.93,0,0,0.17,572.65,3050.88,26153834,99.89,0,0,0.14,572.62,3050.9,26153835,97.1,0,0,0.68,573.71,3049.83,26153836,99.94,0,0,0.16,573.33,3050.21,26153837,99.91,0,0,0.18,573.3,3050.23,26153838,99.92,0,0,0.14,573.33,3050.19,26153839,99.91,0.01,0.01,0.18,573.43,3050.09,26153840,99.77,0,0,0.55,573.93,3049.61,26153841,99.91,0,0,0.28,573.38,3050.15,26153842,99.9,0,0,0.17,573.35,3050.18,26153843,99.92,0,0,0.14,573.32,3050.21,26153844,99.9,0,0,0.14,573.29,3050.23,26153845,99.73,0,0,0.56,573.5,3050.04,26153846,99.94,0,0,0.34,573.44,3050.1,26153847,99.94,0,0,0.14,573.41,3050.12,26153848,99.93,0,0,0.14,573.39,3050.14,26153849,99.94,0,0,0.16,573.35,3050.17,26153850,99.76,0,0,0.47,573.77,3049.77,26153851,99.9,0,0,0.36,573.31,3050.21,26153852,99.93,0,0,0.16,573.28,3050.24,26153853,99.92,0,0,0.14,573.35,3050.16,26153854,99.94,0,0,0.14,573.44,3050.09,26153855,99.88,0,0,0.26,573.43,3050.12,26153856,99.77,0,0,0.61,573.91,3049.62,26153857,99.93,0,0,0.15,573.37,3050.17,26153858,99.93,0,0,0.16,573.33,3050.19,26153859,99.85,0,0,0.45,573.59,3049.91,26153860,99.88,0,0,0.29,573.9,3049.62,26153861,99.77,0,0,0.59,573.19,3050.33,26153862,99.92,0,0,0.14,572.19,3051.33,26153863,99.91,0,0,0.14,572.16,3051.35,26153864,99.9,0,0,0.15,572.12,3051.38,26153865,99.85,0,0,0.26,573.07,3050.45,26153866,99.79,0,0,0.55,573.6,3049.92,26153867,99.9,0,0.01,0.38,573.28,3050.24,26153868,99.91,0,0,0.14,573.2,3050.31,26153869,99.92,0,0,0.17,573.17,3050.34,26153870,99.86,0,0,0.27,573.39,3050.13,26153871,99.77,0,0,0.41,573.73,3049.79,26153872,99.94,0,0,0.31,573.33,3050.18,26153873,99.9,0,0,0.17,573.18,3050.36,26153874,99.9,0,0,0.15,573.07,3050.47,26153875,99.89,0,0,0.3,573.69,3049.86,26153876,99.79,0,0,0.54,574.28,3049.27,26153877,99.93,0,0,0.19,573.39,3050.16,26153878,99.93,0,0,0.14,573.36,3050.18,26153879,99.92,0,0,0.15,573.33,3050.21,26153880,99.79,0,0,0.27,573.57,3050.01,26153881,99.8,0,0,0.39,573.92,3049.65,26153882,99.93,0,0,0.3,573.69,3049.88,26153883,99.94,0,0,0.16,573.65,3049.91,26153884,99.92,0,0,0.16,573.62,3049.94,26153885,99.88,0,0,0.27,573.61,3049.96,26153886,99.94,0,0,0.13,573.57,3049.99,26153887,99.78,0,0,0.56,573.66,3049.91,26153888,99.9,0,0,0.17,573.35,3050.21,26153889,99.84,0,0,0.3,573.66,3049.88,26153890,99.88,0,0,0.3,573.41,3050.14,26153891,99.91,0,0,0.14,573.38,3050.17,26153892,99.79,0,0,0.59,574.09,3049.45,26153893,99.92,0,0,0.17,573.79,3049.74,26153894,99.92,0,0,0.18,573.76,3049.79,26153895,98.51,0,0,0.29,573.58,3049.99,26153896,99.93,0,0,0.14,573.67,3049.9,26153897,99.77,0,0,0.58,574.16,3049.4,26153898,99.94,0,0,0.18,573.85,3049.71,26153899,99.91,0.01,0.01,0.14,573.82,3049.73,26153900,99.89,0,0,0.25,573.81,3049.77,26153901,99.9,0,0,0.14,573.78,3049.8,26153902,99.79,0,0,0.57,574.03,3049.55,26153903,99.94,0,0,0.15,572.95,3050.63,26153904,99.94,0,0,0.16,572.92,3050.66,26153905,99.88,0,0,0.26,573.63,3049.96,26153906,99.94,0,0,0.19,573.61,3049.98,26153907,99.8,0,0,0.55,573.78,3049.8,26153908,99.95,0,0,0.18,573.55,3050.03,26153909,99.93,0,0,0.15,573.57,3049.99,26153910,99.83,0,0,0.27,573.7,3049.88,26153911,99.88,0.02,0.99,0.34,573.6,3049.98,26153912,99.79,0,0,0.58,573.93,3049.63,26153913,99.92,0,0,0.14,573.75,3049.81,26153914,99.92,0,0,0.19,573.84,3049.71,26153915,99.81,0,0,0.27,573.01,3050.57,26153916,99.9,0,0,0.16,572.91,3050.66,26153917,99.76,0,0,0.55,573.34,3050.23,26153918,99.93,0,0,0.18,573.58,3049.98,26153919,99.81,0,0,0.36,574.03,3049.5,26153920,99.89,0,0,0.31,573.8,3049.75,26153921,99.94,0,0,0.18,573.82,3049.73,26153922,99.95,0,0,0.18,573.92,3049.62,26153923,99.76,0,0,0.55,574.25,3049.29,26153924,99.92,0,0,0.15,573.86,3049.67,26153925,99.87,0,0,0.29,574.09,3049.46,26153926,99.93,0,0,0.17,574.07,3049.48,26153927,99.91,0,0.01,0.17,574.03,3049.51,26153928,99.78,0,0,0.63,574.35,3049.18,26153929,99.92,0,0,0.14,573.91,3049.62,26153930,99.9,0,0,0.25,573.9,3049.65,26153931,99.9,0,0,0.16,573.87,3049.68,26153932,99.93,0,0,0.14,573.85,3049.7,26153933,99.77,0,0,0.56,574.05,3049.48,26153934,99.92,0,0,0.16,573.53,3050,26153935,99.88,0,0,0.26,573.52,3050.02,26153936,99.93,0,0,0.16,573.48,3050.06,26153937,99.93,0,0,0.14,573.14,3050.39,26153938,99.8,0,0,0.54,573.62,3049.91,26153939,99.93,0,0,0.14,573.33,3050.19,26153940,99.88,0,0,0.25,573.32,3050.22,26153941,99.92,0,0,0.16,573.28,3050.26,26153942,99.95,0,0,0.16,573.26,3050.27,26153943,99.81,0,0,0.58,573.65,3049.88,26153944,99.93,0,0,0.17,573.14,3050.39,26153945,99.87,0,0,0.3,573.13,3050.41,26153946,99.95,0,0,0.14,573.1,3050.43,26153947,99.91,0,0,0.18,573.08,3050.45,26153948,99.81,0,0,0.57,573.26,3050.27,26153949,99.85,0,0,0.3,573.01,3050.5,26153950,99.87,0,0,0.3,573.27,3050.25,26153951,99.01,0,0,0.13,574.11,3049.4,26153952,99.92,0,0,0.36,573.63,3049.88,26153953,96.86,0.02,0.01,14.12,579.99,3045.26,26153954,99.85,0,0,63.88,575.7,3047.71,26153955,99.85,0,0,0.33,575.78,3047.64,26153956,99.91,0,0,0.16,575.75,3047.66,26153957,99.92,0,0,0.23,575.72,3047.69,26153958,99.92,0,0,0.17,575.69,3047.72,26153959,99.7,0.01,0.01,0.7,573.51,3049.93,26153960,99.86,0,0,0.29,571.77,3051.68,26153961,99.93,0,0,0.21,571.84,3051.6,26153962,99.92,0,0,0.2,571.9,3051.54,26153963,99.81,0,0,0.19,571.87,3051.57,26153964,99.77,0,0,0.6,573.48,3049.97,26153965,98.67,0,0,15.43,575.04,3048.62,26153966,99.94,0,0,0.21,572.76,3050.42,26153967,99.94,0,0,0.17,572.73,3050.45,26153968,99.93,0,0,0.17,572.71,3050.48,26153969,99.8,0,0,0.59,573.44,3049.75,26153970,99.88,0,0,0.28,573.35,3049.85,26153971,99.94,0,0,0.17,573.32,3049.88,26153972,99.93,0,0,0.17,573.28,3049.92,26153973,99.92,0,0,0.17,573.25,3049.94,26153974,99.81,0,0,0.57,573.68,3049.51,26153975,99.88,0,0,0.29,573.71,3049.5,26153976,99.9,0,0,0.18,573.73,3049.48,26153977,99.91,0,0,0.14,573.83,3049.36,26153978,99.91,0,0,0.15,573.8,3049.39,26153979,99.67,0,0,0.65,573.89,3049.28,26153980,99.84,0,0,0.37,573.52,3049.67,26153981,99.93,0,0,0.18,573.5,3049.7,26153982,99.91,0,0,0.18,573.46,3049.72,26153983,99.93,0,0,0.18,573.44,3049.75,26153984,99.79,0,0,0.55,573.88,3049.33,26153985,99.87,0,0,0.34,573.61,3049.63,26153986,99.91,0,0,0.13,573.57,3049.66,26153987,99.93,0,0.01,0.14,573.54,3049.68,26153988,99.92,0,0,0.16,573.51,3049.71,26153989,99.79,0,0,0.4,573.8,3049.42,26153990,99.84,0,0,0.46,573.56,3049.68,26153991,99.93,0,0,0.17,573.5,3049.73,26153992,99.92,0,0,0.14,573.59,3049.64,26153993,99.91,0,0,0.18,573.45,3049.77,26153994,99.93,0,0,0.15,573.28,3049.93,26153995,99.7,0,0,0.74,573.87,3049.36,26153996,99.94,0,0,0.16,573.49,3049.74,26153997,99.94,0,0,0.16,573.46,3049.76,26153998,99.93,0,0,0.15,573.43,3049.78,26153999,99.94,0,0,0.14,573.5,3049.72,26154000,99.65,0,0,0.66,573.95,3049.28,26154001,99.93,0,0,0.18,573.56,3049.67,26154002,99.92,0,0,0.18,573.53,3049.69,26154003,99.92,0,0,0.16,573.5,3049.71,26154004,99.94,0,0,0.16,573.47,3049.74,26154005,99.74,0,0,0.69,573.57,3049.66,26154006,99.95,0,0,0.14,573.19,3050.03,26154007,99.93,0,0,0.16,573.28,3049.94,26154008,99.92,0,0,0.13,573.32,3049.9,26154009,99.8,0,0,0.3,573.27,3049.91,26154010,99.73,0,0,0.52,574.01,3049.2,26154011,99.92,0,0,0.3,573.72,3049.48,26154012,99.94,0,0,0.16,573.69,3049.51,26154013,99.92,0,0,0.14,573.67,3049.53,26154014,99.95,0,0,0.14,573.78,3049.43,26154015,99.71,0,0,0.72,574.1,3049.13,26154016,99.94,0,0,0.14,573.57,3049.65,26154017,99.91,0,0,0.25,573.54,3049.68,26154018,99.94,0,0,0.15,573.51,3049.71,26154019,99.93,0.01,0.01,0.15,573.49,3049.73,26154020,99.76,0,0,0.71,574.01,3049.22,26154021,99.93,0,0,0.18,572.8,3050.43,26154022,99.91,0,0,0.18,572.86,3050.36,26154023,99.92,0,0,0.18,572.83,3050.39,26154024,99.91,0,0,0.18,572.8,3050.41,26154025,99.7,0,0,0.56,573.88,3049.35,26154026,99.92,0,0,0.27,573.5,3049.73,26154027,99.93,0,0,0.2,573.46,3049.76,26154028,99.92,0,0.01,0.17,573.47,3049.74,26154029,99.91,0,0.01,0.18,573.56,3049.65,26154030,99.72,0,0,0.62,573.5,3049.72,26154031,99.92,0,0,0.32,574.02,3049.21,26154032,99.91,0,0,0.18,573.99,3049.23,26154033,99.91,0,0,0.18,573.96,3049.26,26154034,99.95,0,0,0.18,573.93,3049.28,26154035,99.8,0,0,0.32,573.12,3050.11,26154036,99.79,0,0,0.57,573.89,3049.34,26154037,98.63,0,0,0.14,573.55,3049.67,26154038,99.92,0,0,0.15,573.52,3049.69,26154039,99.82,0,0,0.33,573.73,3049.46,26154040,99.87,0,0,0.27,573.72,3049.48,26154041,99.76,0,0,0.63,573.15,3050.05,26154042,99.92,0,0,0.18,571.95,3051.25,26154043,99.93,0,0,0.18,572.09,3051.11,26154044,99.91,0,0,0.18,572.07,3051.14,26154045,99.82,0,0,0.32,572.77,3050.45,26154046,99.77,0,0,0.59,573.79,3049.43,26154047,99.93,0,0.01,0.18,573.47,3049.74,26154048,99.93,0,0,0.16,573.44,3049.77,26154049,99.9,0,0,0.18,573.41,3049.8,26154050,99.89,0,0,0.26,573.52,3049.71,26154051,99.78,0,0,0.5,574.27,3048.95,26154052,99.91,0,0,0.21,574.02,3049.2,26154053,99.9,0,0,0.19,573.79,3049.42,26154054,99.92,0,0,0.16,573.47,3049.74,26154055,99.82,0,0,0.29,573.46,3049.76,26154056,99.77,0,0,0.4,574,3049.22,26154057,99.9,0.01,0.02,0.34,574,3049.22,26154058,99.91,0,0,0.15,573.99,3049.22,26154059,99.91,0,0,0.17,573.95,3049.25,26154060,99.81,0,0,0.29,573.69,3049.53,26154061,99.75,0,0,0.39,574.02,3049.2,26154062,99.91,0,0,0.35,573.98,3049.23,26154063,99.93,0,0,0.14,574.06,3049.15,26154064,99.9,0,0,0.16,574.03,3049.17,26154065,99.86,0,0,0.27,574.26,3048.95,26154066,99.8,0,0,0.31,574.49,3048.72,26154067,99.93,0,0,0.42,572.24,3050.97,26154068,99.89,0,0,0.16,572.21,3050.99,26154069,99.85,0,0,0.29,573.65,3049.52,26154070,99.83,0,0,0.32,574.07,3049.12,26154071,99.93,0,0,0.16,574.05,3049.14,26154072,99.79,0,0,0.58,573.93,3049.25,26154073,99.93,0,0,0.15,573.5,3049.68,26154074,99.93,0,0,0.16,573.47,3049.71,26154075,99.85,0,0,0.32,573.94,3049.25,26154076,99.92,0,0,0.14,573.91,3049.28,26154077,99.77,0,0,0.63,574.85,3048.34,26154078,99.92,0,0,0.17,574.28,3048.9,26154079,99.92,0.01,0.01,0.15,574.26,3048.92,26154080,99.85,0,0,0.27,574.06,3049.14,26154081,99.92,0,0,0.16,573.97,3049.22,26154082,99.75,0,0,0.57,574.57,3048.61,26154083,99.92,0,0,0.15,574.15,3049.03,26154084,99.91,0,0,0.14,574.21,3048.97,26154085,99.84,0,0,0.29,574.06,3049.13,26154086,99.92,0,0,0.17,574.02,3049.17,26154087,99.78,0,0,0.57,574.25,3048.94,26154088,99.92,0,0,0.15,573.71,3049.47,26154089,99.93,0,0,0.14,571.61,3051.56,26154090,99.84,0,0,0.27,570.95,3052.24,26154091,99.91,0,0,0.14,571.02,3052.17,26154092,99.78,0,0,0.57,571.44,3051.75,26154093,99.93,0,0,0.15,571.05,3052.12,26154094,99.93,0,0,0.15,571.02,3052.15,26154095,99.9,0,0,0.28,571.26,3051.93,26154096,99.93,0,0,0.15,571.22,3051.96,26154097,99.77,0,0,0.55,571.49,3051.69,26154098,99.6,0,0,0.25,571,3052.18,26154099,99.88,0,0,0.33,571.06,3052.09,26154100,99.86,0,0,0.32,571.06,3052.11,26154101,99.92,0,0,0.17,571.03,3052.14,26154102,99.76,0,0,0.35,571.36,3051.8,26154103,99.94,0,0,0.39,571.21,3051.94,26154104,99.89,0,0,0.15,571.18,3051.97,26154105,99.9,0,0,0.29,571.18,3051.99,26154106,99.92,0,0,0.14,571.34,3051.83,26154107,99.92,0,0.01,0.16,571.3,3051.86,26154108,99.76,0,0,0.54,571.41,3051.74,26154109,99.91,0,0,0.14,570.99,3052.17,26154110,99.86,0,0.01,0.29,571.2,3051.97,26154111,99.91,0,0,0.16,571.17,3052,26154112,99.91,0,0,0.14,571.31,3051.85,26154113,99.72,0,0,0.64,571.24,3051.91,26154114,99.9,0,0,0.15,570.56,3052.59,26154115,99.87,0,0,0.3,571.27,3051.89,26154116,99.9,0,0,0.14,571.26,3051.91,26154117,99.93,0,0,0.16,571.24,3051.92,26154118,99.79,0,0,0.4,571.56,3051.6,26154119,99.92,0,0,0.29,571.21,3051.94,26154120,99.81,0,0,0.29,570.15,3053.02,26154121,99.87,0,0,0.14,570.09,3053.07,26154122,99.9,0,0,0.15,570.06,3053.09,26154123,99.78,0,0,0.57,571.08,3052.07,26154124,99.91,0,0,0.2,570.97,3052.17,26154125,99.82,0,0,0.29,571.21,3051.95,26154126,99.92,0,0,0.16,571.18,3051.98,26154127,99.9,0,0,0.14,571.29,3051.86,26154128,99.77,0,0,0.58,571.95,3051.19,26154129,99.77,0,0,0.31,571.04,3052.07,26154130,99.83,0,0,0.32,570.3,3052.82,26154131,99.92,0,0,0.12,570.24,3052.87,26154132,99.9,0.01,0.01,0.2,570.3,3052.81,26154133,99.78,0,0,0.32,570.69,3052.42,26154134,99.93,0,0,0.39,571.02,3052.09,26154135,99.79,0,0,0.28,570.06,3053.07,26154136,99.93,0,0,0.17,569.99,3053.14,26154137,99.93,0,0,0.18,569.96,3053.17,26154138,99.63,0,0,0.32,570.33,3052.79,26154139,99.9,0.01,0.01,0.38,571.22,3051.9,26154140,99.89,0,0,0.27,571.54,3051.6,26154141,99.93,0,0,0.19,571.51,3051.62,26154142,99.93,0,0,0.17,571.48,3051.65,26154143,99.94,0,0,0.16,571.45,3051.68,26154144,99.79,0,0,0.56,571.56,3051.55,26154145,99.86,0,0,0.27,571.17,3051.96,26154146,99.91,0,0,0.16,571.27,3051.86,26154147,99.94,0,0,0.14,571.28,3051.84,26154148,99.93,0,0,0.14,571.26,3051.87,26154149,99.81,0,0,0.59,571.22,3051.9,26154150,99.89,0.01,0.08,0.3,571.24,3051.89,26154151,99.93,0,0,0.16,571.29,3051.84,26154152,99.92,0,0,0.16,571.25,3051.87,26154153,99.95,0,0,0.15,571.22,3051.89,26154154,99.78,0,0,0.53,571.48,3051.63,26154155,99.91,0,0,0.36,570.71,3052.43,26154156,99.92,0,0,0.14,570.69,3052.43,26154157,99.93,0,0,0.14,570.83,3052.29,26154158,99.93,0,0,0.15,570.81,3052.31,26154159,99.65,0,0,0.75,571.96,3051.15,26154160,99.88,0,0.01,0.3,571.24,3051.89,26154161,99.92,0,0,0.14,571.2,3051.92,26154162,99.9,0,0,0.14,571.18,3051.94,26154163,99.92,0,0,0.16,571.25,3051.86,26154164,99.78,0,0,0.42,571.66,3051.45,26154165,99.83,0,0,0.41,571.3,3051.83,26154166,99.92,0,0,0.16,571.26,3051.87,26154167,99.88,0,0.01,0.16,571.23,3051.89,26154168,99.92,0,0,0.16,571.19,3051.92,26154169,99.79,0,0,0.41,571.55,3051.56,26154170,99.82,0,0,0.45,571.49,3051.63,26154171,99.91,0,0,0.15,571.55,3051.57,26154172,99.92,0,0,0.14,571.52,3051.6,26154173,99.9,0,0,0.17,571.4,3051.71,26154174,99.8,0,0,0.32,571.57,3051.54,26154175,99.8,0,0,0.53,571.45,3051.67,26154176,99.9,0,0,0.14,571.42,3051.7,26154177,99.92,0,0,0.16,571.4,3051.71,26154178,99.92,0,0,0.13,571.55,3051.56,26154179,99.91,0,0,0.14,571.52,3051.58,26154180,99.52,0,0,0.69,572.05,3051.07,26154181,99.93,0,0,0.14,571.48,3051.63,26154182,99.9,0,0,0.14,571.45,3051.65,26154183,99.87,0,0,0.21,571.42,3051.68,26154184,99.88,0,0,0.2,571.39,3051.71,26154185,99.68,0,0,0.75,572.16,3050.95,26154186,99.92,0,0,0.14,571.75,3051.36,26154187,99.89,0,0,0.16,571.76,3051.35,26154188,99.88,0,0,0.15,571.73,3051.37,26154189,99.8,0,0,0.3,571.48,3051.58,26154190,99.69,0,0,0.68,571.43,3051.65,26154191,99.92,0,0,0.15,570.2,3052.88,26154192,99.86,0,0,0.18,570.19,3052.88,26154193,99.87,0.01,0.09,0.31,570.43,3052.63,26154194,79.81,0.04,0.03,6.32,758.79,2864.16,26154195,78.92,0.01,0.04,6.91,1084.92,2538.05,26154196,99.67,0,0,0.17,780.44,2842.58,26154197,99.82,0,0,0.22,621.12,3001.89,26154198,99.84,0.04,1.15,0.36,621.06,3001.94,26154199,99.88,0.05,1.78,0.14,621.02,3001.98,26154200,99.69,0,0.01,0.84,621.43,3001.57,26154201,99.82,0,0,0.29,582.92,3040.41,26154202,99.83,0,0,0.15,564.3,3059.29,26154203,99.88,0,0,0.18,558.45,3065.29,26154204,99.85,0,0,0.13,558.42,3065.31,26154205,99.7,0,0,0.57,558.49,3065.26,26154206,99.84,0,0,0.31,557.92,3065.85,26154207,99.88,0,0,0.14,557.9,3065.88,26154208,99.87,0,0,0.14,557.88,3065.91,26154209,99.84,0,0,0.15,557.96,3065.82,26154210,99.78,0,0,0.29,558.04,3065.76,26154211,99.73,0,0,0.55,558.69,3065.11,26154212,99.77,0,0,0.16,558,3065.8,26154213,99.83,0,0,0.14,557.98,3065.8,26154214,99.85,0,0,0.14,557.95,3065.83,26154215,99.81,0,0,0.34,557.96,3065.84,26154216,99.65,0,0,0.56,557.77,3066.02,26154217,99.85,0,0,0.14,557.18,3066.61,26154218,99.85,0,0,0.16,557.15,3066.63,26154219,99.75,0,0,0.35,557.94,3065.81,26154220,99.8,0,0,0.3,558.12,3065.65,26154221,99.73,0,0,0.57,558.58,3065.18,26154222,99.84,0,0,0.14,558.26,3065.5,26154223,99.85,0,0,0.16,558.24,3065.52,26154224,99.83,0,0,0.15,558.21,3065.56,26154225,99.78,0,0,0.29,558.47,3065.32,26154226,99.69,0,0,0.55,558.48,3065.3,26154227,99.83,0,0,0.16,557.93,3065.85,26154228,99.86,0,0,0.15,557.91,3065.87,26154229,99.85,0,0,0.14,557.88,3065.89,26154230,99.8,0,0,0.31,557.44,3066.35,26154231,99.71,0,0,0.54,557.72,3066.06,26154232,99.87,0,0,0.16,557.53,3066.25,26154233,99.83,0,0,0.16,557.43,3066.34,26154234,99.85,0,0,0.17,557.24,3066.53,26154235,99.76,0,0,0.32,558.2,3065.59,26154236,99.72,0,0,0.55,558.81,3064.99,26154237,99.86,0,0,0.16,558.19,3065.61,26154238,99.86,0,0,0.14,558.17,3065.63,26154239,99.82,0,0,0.16,558.15,3065.64,26154240,99.75,0,0,0.3,558.15,3065.66,26154241,99.72,0,0,0.52,558.68,3065.13,26154242,99.85,0,0,0.19,557.91,3065.89,26154243,99.85,0,0,0.15,558.02,3065.78,26154244,99.85,0,0,0.14,558,3065.79,26154245,99.79,0,0,0.31,558.24,3065.57,26154246,99.85,0,0,0.14,558.23,3065.57,26154247,99.72,0,0,0.57,558.55,3065.25,26154248,99.85,0,0,0.14,558.17,3065.62,26154249,99.76,0,0,0.29,558.15,3065.62,26154250,99.79,0,0,0.3,558.15,3065.64,26154251,99.83,0,0,0.19,558.13,3065.66,26154252,99.69,0,0,0.55,558.64,3065.13,26154253,99.85,0,0,0.16,558.48,3065.29,26154254,99.86,0,0,0.14,558.46,3065.33,26154255,99.79,0,0,0.32,558.7,3065.1,26154256,99.85,0,0,0.17,558.68,3065.11,26154257,99.73,0,0,0.6,558.61,3065.17,26154258,99.85,0,0,0.16,558.12,3065.66,26154259,99.85,0,0,0.15,558.11,3065.67,26154260,99.6,0,0,0.29,558,3065.8,26154261,99.85,0,0,0.14,558.03,3065.76,26154262,99.7,0,0,0.57,558.52,3065.27,26154263,99.86,0,0,0.15,558.24,3065.54,26154264,99.84,0,0,0.17,558.21,3065.57,26154265,99.81,0,0,0.33,558.71,3065.09,26154266,99.86,0,0,0.15,558.07,3065.72,26154267,99.71,0,0,0.44,558.03,3065.76,26154268,99.81,0,0,0.29,557.65,3066.13,26154269,99.83,0,0,0.15,557.63,3066.15,26154270,99.78,0,0,0.3,557.64,3066.16,26154271,99.86,0,0,0.16,557.67,3066.13,26154272,99.7,0,0,0.5,558.13,3065.65,26154273,99.84,0,0,0.19,557.76,3066.02,26154274,99.86,0,0,0.18,557.74,3066.04,26154275,99.8,0,0,0.32,557.49,3066.3,26154276,99.84,0,0,0.15,557.47,3066.32,26154277,99.7,0.06,2.39,0.53,558.17,3065.6,26154278,96.53,0,0,0.3,557.65,3066.12,26154279,99.73,0,0,0.38,557.64,3066.1,26154280,99.79,0,0,0.31,557.64,3066.11,26154281,99.85,0,0,0.14,557.59,3066.16,26154282,99.86,0,0,0.15,557.74,3066,26154283,99.69,0,0,0.58,558.07,3065.67,26154284,99.84,0,0,0.15,557.69,3066.08,26154285,99.76,0,0,0.31,556.5,3067.3,26154286,99.87,0,0,0.16,556.43,3067.36,26154287,99.83,0,0,0.15,556.4,3067.38,26154288,99.71,0,0,0.58,557.3,3066.48,26154289,99.85,0,0,0.14,557.09,3066.68,26154290,99.75,0,0,0.32,556.39,3067.41,26154291,99.83,0,0,0.16,556.48,3067.31,26154292,99.87,0,0,0.15,556.49,3067.3,26154293,99.67,0,0,0.61,557.37,3066.41,26154294,99.82,0.07,2.35,0.31,557.08,3066.69,26154295,99.82,0,0.01,0.37,557.15,3066.62,26154296,99.85,0,0,0.13,557.13,3066.64,26154297,99.85,0,0,0.17,557.11,3066.65,26154298,99.7,0,0,0.45,557.44,3066.31,26154299,99.85,0,0,0.23,557.15,3066.6,26154300,99.62,0.12,0.53,0.65,558.06,3065.69,26154301,99.48,0.43,7.19,0.76,559.03,3064.69,26154302,99.38,1.21,36.57,0.86,559.05,3064.67,26154303,99.13,1.75,56.96,1.39,559.84,3063.88,26154304,99.55,0.6,15.67,0.61,560.02,3063.69,26154305,99.76,0.06,0.11,0.62,560,3063.74,26154306,99.84,0.01,0.04,0.17,559.94,3063.8,26154307,99.82,0.05,0.05,0.27,560.03,3063.7,26154308,99.68,0.02,0.07,0.53,560.68,3063.05,26154309,99.71,0.07,0.1,0.63,560.27,3063.45,26154310,99.78,0.03,0.06,0.46,560.27,3063.46,26154311,99.84,0,0,0.14,560.31,3063.43,26154312,99.78,0.04,0.28,0.24,559.5,3064.23,26154313,99.71,0.16,0.16,0.63,559.19,3064.48,26154314,99.67,4.01,3.88,1.82,559.98,3061.29,26154315,57.85,0.13,4.41,11.77,1018.82,2600.41,26154316,99.67,0.09,4.1,0.63,972.17,2647.04,26154317,99.85,0,0.01,0.2,577.58,3041.63,26154318,99.85,0,0,0.14,565.14,3054.07,26154319,93.74,0.34,0.01,258.53,583.54,3036.81,26154320,99.79,0,0,0.35,567.93,3051.6,26154321,99.84,0,0.01,0.18,567.89,3051.64,26154322,99.85,0,0,0.14,567.86,3051.66,26154323,99.85,0,0,0.15,567.95,3051.57,26154324,99.69,0,0,0.63,566.64,3052.9,26154325,99.75,0,0,0.3,565.58,3053.98,26154326,99.86,0,0,0.16,565.55,3054,26154327,99.84,0,0.01,0.18,565.51,3054.04,26154328,99.86,0,0,0.15,565.49,3054.06,26154329,99.7,0,0,0.56,566.01,3053.53,26154330,99.79,0,0,0.31,565.96,3053.61,26154331,99.87,0,0,0.13,565.94,3053.62,26154332,99.86,0,0,0.16,566.03,3053.52,26154333,99.83,0,0,0.16,566.07,3053.48,26154334,99.72,0.01,0.01,0.5,566.28,3053.28,26154335,99.78,0,0,0.5,565.74,3053.84,26154336,99.83,0,0,0.13,565.72,3053.85,26154337,99.84,0,0,0.14,565.7,3053.87,26154338,99.86,0,0,0.16,565.67,3053.89,26154339,99.67,0,0,0.64,566.02,3053.52,26154340,99.75,0,0,0.41,564.68,3054.88,26154341,99.87,0,0,0.16,564.61,3054.94,26154342,99.83,0,0,0.14,564.6,3054.95,26154343,99.85,0,0,0.15,564.57,3054.97,26154344,99.72,0,0,0.59,565.22,3054.36,26154345,99.8,0,0,0.36,565.53,3054.06,26154346,99.82,0,0,0.18,565.53,3054.07,26154347,99.85,0,0,0.18,565.5,3054.09,26154348,99.85,0,0,0.16,565.47,3054.11,26154349,99.71,0,0,0.57,565.82,3053.76,26154350,99.81,0,0,0.35,566.07,3053.53,26154351,99.85,0,0,0.14,566.11,3053.48,26154352,99.84,0,0,0.18,566.08,3053.5,26154353,99.78,0.15,6.26,0.36,565.99,3053.58,26154354,99.7,0.02,0.97,0.49,566.55,3052.99,26154355,99.82,0,0,0.46,565.8,3053.75,26154356,99.85,0,0,0.14,565.76,3053.78,26154357,99.85,0,0,0.14,565.75,3053.79,26154358,99.85,0,0,0.15,565.72,3053.81,26154359,99.84,0,0,0.16,565.71,3053.82,26154360,99.65,0,0,0.74,566.72,3052.83,26154361,99.67,0.32,0.39,0.24,566.33,3053.2,26154362,99.91,0,0,0.15,566.34,3053.18,26154363,99.85,0.12,4.63,0.25,566.36,3053.13,26154364,99.92,0,0.05,0.17,566.22,3053.25,26154365,99.72,0,0,0.71,566.33,3053.16,26154366,99.93,0,0,0.14,565.94,3053.54,26154367,99.94,0,0,0.16,565.92,3053.57,26154368,99.92,0.01,0.01,0.14,565.89,3053.59,26154369,99.85,0,0,0.43,565.94,3053.51,26154370,99.71,0,0,0.69,566.53,3052.94,26154371,99.93,0,0,0.17,566.41,3053.05,26154372,99.9,0,0,0.13,566.4,3053.07,26154373,99.94,0,0,0.16,566.38,3053.08,26154374,99.91,0,0.01,0.14,566.34,3053.11,26154375,99.66,0,0,0.79,566.51,3052.95,26154376,99.94,0,0,0.18,566.22,3053.24,26154377,99.93,0,0,0.21,566.19,3053.26,26154378,99.93,0,0,0.14,566.17,3053.28,26154379,99.94,0,0,0.15,566.15,3053.3,26154380,99.75,0,0,0.67,566.52,3052.94,26154381,99.87,0.08,3.46,0.28,566.17,3053.28,26154382,99.93,0,0,0.21,563.83,3055.63,26154383,99.94,0,0,0.15,562.91,3056.56,26154384,99.94,0,0,0.18,562.99,3056.48,26154385,99.7,0,0,0.65,563.1,3056.42,26154386,99.95,0,0,0.31,563.09,3056.43,26154387,99.93,0,0,0.18,563.07,3056.44,26154388,99.94,0,0,0.16,563.04,3056.47,26154389,99.94,0,0,0.18,563.02,3056.48,26154390,99.68,0,0,0.75,563.19,3056.32,26154391,99.93,0.02,0.12,0.18,562.98,3056.53,26154392,99.91,0.09,2.97,0.33,563.01,3056.46,26154393,99.95,0,0.11,0.18,563.01,3056.46,26154394,99.95,0,0.01,0.15,563.06,3056.4,26154395,99.76,0,0,0.48,563.66,3055.81,26154396,99.94,0,0.05,0.46,563.03,3056.45,26154397,99.94,0.01,0.02,0.18,563.01,3056.46,26154398,99.93,0,0,0.14,563.06,3056.41,26154399,99.9,0,0,0.3,563.03,3056.41,26154400,99.88,0.01,0.03,0.33,563,3056.46,26154401,99.79,0,0,0.57,563.72,3055.73,26154402,99.92,0,0,0.14,562.92,3056.52,26154403,99.95,0,0,0.14,562.91,3056.54,26154404,99.95,0,0,0.14,562.96,3056.48,26154405,99.91,0,0,0.3,563.08,3056.38,26154406,99.8,0,0,0.6,563.73,3055.73,26154407,99.93,0,0,0.14,563.03,3056.42,26154408,99.92,0,0,0.14,563,3056.44,26154409,99.91,0,0,0.16,562.98,3056.46,26154410,99.83,0.08,3.15,0.39,562.71,3056.73,26154411,99.78,0,0.06,0.64,563.05,3056.37,26154412,99.93,0,0,0.18,562.42,3056.98,26154413,99.9,0,0,0.19,562.31,3057.1,26154414,99.95,0,0,0.14,561.88,3057.52,26154415,99.88,0,0,0.37,561.88,3057.54,26154416,99.78,0,0,0.39,562.47,3056.94,26154417,99.92,0,0,0.31,562.55,3056.86,26154418,99.91,0,0,0.14,562.52,3056.88,26154419,99.93,0,0,0.15,562.51,3056.89,26154420,99.79,0,0,0.4,562.02,3057.39,26154421,99.78,0,0,0.4,562.5,3056.91,26154422,99.93,0,0,0.31,562.45,3056.95,26154423,99.93,0,0,0.14,562.42,3056.98,26154424,99.92,0,0,0.14,562.4,3057,26154425,99.9,0,0,0.36,562.56,3056.85,26154426,99.79,0.01,0.02,0.46,562.79,3056.62,26154427,99.95,0,0,0.29,562.39,3057.02,26154428,99.94,0,0,0.14,562.39,3057.01,26154429,99.88,0,0,0.3,562.32,3057.06,26154430,99.88,0,0,0.31,562.53,3056.87,26154431,99.82,0,0,0.32,562.87,3056.52,26154432,99.93,0,0,0.39,562.74,3056.64,26154433,99.93,0,0,0.14,562.72,3056.66,26154434,99.91,0,0,0.15,562.7,3056.68,26154435,99.83,0,0,0.32,561.27,3058.13,26154436,99.94,0,0,0.13,561.19,3058.2,26154437,99.81,0,0,0.62,562.77,3056.62,26154438,99.93,0,0,0.16,562.13,3057.25,26154439,99.94,0,0,0.14,562.12,3057.25,26154440,99.9,0,0,0.32,561.7,3057.69,26154441,99.9,0,0,0.16,561.8,3057.59,26154442,99.8,0,0,0.55,562.89,3056.49,26154443,99.93,0,0,0.16,562.5,3056.88,26154444,99.91,0,0,0.14,562.47,3056.91,26154445,99.89,0,0,0.34,562.48,3056.91,26154446,99.94,0,0,0.15,562.45,3056.94,26154447,99.81,0,0,0.59,562.96,3056.43,26154448,99.92,0,0,0.18,562.41,3056.97,26154449,99.95,0,0,0.19,562.39,3056.98,26154450,99.9,0,0,0.33,562.39,3057,26154451,99.94,0,0,0.16,562.37,3057.02,26154452,99.78,0,0,0.57,562.84,3056.55,26154453,99.91,0,0,0.18,562.51,3056.88,26154454,99.96,0,0,0.18,562.48,3056.89,26154455,99.86,0,0,0.37,562.48,3056.91,26154456,99.93,0,0,0.16,562.45,3056.94,26154457,99.77,0,0,0.55,562.96,3056.42,26154458,99.92,0,0,0.14,562.9,3056.48,26154459,99.87,0,0,0.32,562.64,3056.72,26154460,99.86,0,0,0.34,562.64,3056.74,26154461,99.93,0,0,0.16,562.7,3056.67,26154462,99.76,0,0,0.57,563.47,3055.89,26154463,99.89,0,0,0.15,562.75,3056.61,26154464,99.93,0,0,0.15,562.71,3056.66,26154465,99.85,0,0,0.36,562.48,3056.91,26154466,99.93,0,0,0.15,562.44,3056.95,26154467,99.83,0.01,0.01,0.15,562.66,3056.72,26154468,99.84,0,0,0.61,562.58,3056.8,26154469,99.92,0,0,0.19,562.21,3057.17,26154470,99.82,0,0,0.37,562.75,3056.65,26154471,99.92,0,0,0.12,562.69,3056.71,26154472,99.93,0,0,0.16,562.67,3056.73,26154473,99.78,0,0,0.59,563.04,3056.36,26154474,99.94,0,0,0.15,562.38,3057.01,26154475,99.86,0,0,0.33,562.38,3057.03,26154476,99.92,0,0,0.14,562.35,3057.05,26154477,99.93,0,0,0.18,562.51,3056.9,26154478,99.8,0,0,0.55,562.86,3056.53,26154479,99.92,0,0,0.15,562.49,3056.9,26154480,99.84,0,0,0.31,562.73,3056.69,26154481,99.93,0,0,0.15,562.72,3056.7,26154482,99.93,0,0,0.16,562.69,3056.72,26154483,99.77,0,0,0.55,563.04,3056.37,26154484,99.93,0,0,0.15,562.65,3056.76,26154485,99.83,0,0,0.37,562.42,3057,26154486,99.92,0,0,0.16,562.38,3057.04,26154487,99.91,0,0,0.18,562.44,3056.97,26154488,99.79,0,0,0.55,562.88,3056.53,26154489,99.85,0,0,0.3,562.98,3056.4,26154490,99.88,0,0,0.3,562.75,3056.65,26154491,99.94,0,0,0.15,562.73,3056.67,26154492,99.94,0,0,0.16,562.71,3056.68,26154493,99.81,0,0,0.57,563.13,3056.26,26154494,99.93,0,0,0.14,562.91,3056.49,26154495,99.86,0,0,0.32,562.43,3056.99,26154496,99.94,0,0,0.15,562.39,3057.03,26154497,99.92,0,0,0.21,562.62,3056.79,26154498,99.8,0,0,0.46,563.44,3055.97,26154499,99.94,0,0,0.25,563.01,3056.39,26154500,99.85,0,0,0.31,563.25,3056.17,26154501,99.93,0,0,0.14,563.24,3056.18,26154502,99.93,0,0,0.16,563.21,3056.21,26154503,99.92,0,0,0.16,563.19,3056.22,26154504,99.78,0,0,0.57,563.04,3056.36,26154505,99.88,0,0,0.3,562.91,3056.51,26154506,99.93,0,0,0.17,562.9,3056.52,26154507,99.93,0,0,0.14,562.87,3056.54,26154508,99.63,0.27,1.43,0.25,563.91,3055.44,26154509,99.78,0.02,0.07,0.56,565.96,3053.38,26154510,99.88,0.02,0.02,0.34,565.69,3053.67,26154511,99.95,0.01,0.01,0.21,565.88,3053.48,26154512,99.87,0.04,0.04,0.24,565.87,3053.48,26154513,99.94,0,0,0.14,565.82,3053.52,26154514,99.78,0,0,0.55,566.07,3053.26,26154515,99.8,0.05,0.13,0.3,565.73,3053.62,26154516,99.91,0.01,0.01,0.16,565.63,3053.72,26154517,99.9,0,0,0.15,565.6,3053.75,26154518,99.92,0,0,0.16,565.64,3053.7,26154519,99.69,0,0,0.7,566.34,3052.98,26154520,99.86,0,0,0.31,565.75,3053.58,26154521,99.93,0,0,0.14,565.71,3053.62,26154522,99.95,0,0,0.16,565.69,3053.64,26154523,99.95,0,0,0.14,565.67,3053.65,26154524,99.79,0,0,0.56,566.34,3053,26154525,99.88,0,0,0.34,565.43,3053.94,26154526,99.93,0,0,0.14,565.39,3053.98,26154527,99.92,0,0,0.17,565.37,3054,26154528,99.91,0,0,0.18,565.35,3054.01,26154529,99.77,0.04,1.17,0.54,565.84,3053.5,26154530,99.81,0,0,0.45,565.36,3054,26154531,99.93,0.04,1.6,0.31,565.41,3053.93,26154532,99.95,0.01,0.59,0.19,565.43,3053.9,26154533,99.93,0,0,0.23,565.38,3053.94,26154534,99.81,0,0,0.51,565.71,3053.61,26154535,99.89,0,0,0.46,565.89,3053.45,26154536,99.94,0,0,0.16,565.86,3053.48,26154537,99.94,0,0,0.14,565.85,3053.48,26154538,99.95,0,0,0.14,565.82,3053.51,26154539,99.8,0,0,0.41,566.16,3053.16,26154540,99.83,0,0,0.5,565.88,3053.45,26154541,99.94,0,0,0.18,565.96,3053.37,26154542,99.94,0,0,0.18,565.94,3053.39,26154543,99.92,0,0,0.14,565.91,3053.41,26154544,99.95,0,0,0.17,565.88,3053.44,26154545,96.46,0.54,0.01,78.64,572.79,3047.53,26154546,99.93,0,0,0.6,568.37,3050.21,26154547,99.92,0,0,0.17,568.47,3050.11,26154548,99.93,0,0,0.14,568.45,3050.12,26154549,99.87,0,0,0.31,567.95,3050.6,26154550,99.68,0,0,0.77,567.7,3050.88,26154551,99.94,0,0,0.15,566.02,3052.61,26154552,99.93,0,0,0.15,565.99,3052.63,26154553,99.93,0,0,0.16,565.98,3052.64,26154554,99.93,0,0,0.14,565.95,3052.66,26154555,99.7,0,0,0.71,565.88,3052.75,26154556,99.92,0,0,0.14,565.68,3052.95,26154557,99.92,0,0,0.22,565.79,3052.83,26154558,99.93,0,0,0.14,565.83,3052.79,26154559,99.92,0,0,0.14,565.8,3052.81,26154560,99.7,0,0,0.97,566.22,3052.41,26154561,97.94,0,0,0.13,566.02,3052.6,26154562,99.93,0,0,0.14,565.27,3053.34,26154563,99.93,0,0,0.18,565.24,3053.38,26154564,99.94,0,0,0.16,565.22,3053.39,26154565,99.71,0,0,0.66,565.77,3052.85,26154566,99.91,0,0,0.35,565.44,3053.18,26154567,99.93,0,0,0.17,565.42,3053.19,26154568,99.93,0,0,0.14,565.46,3053.15,26154569,99.92,0,0,0.15,565.57,3053.04,26154570,99.71,0,0,0.74,565.75,3052.88,26154571,99.92,0,0,0.14,565.56,3053.08,26154572,99.93,0,0,0.2,565.53,3053.1,26154573,99.94,0,0,0.19,565.51,3053.12,26154574,99.93,0,0,0.14,565.48,3053.14,26154575,99.73,0,0,0.59,566.06,3052.59,26154576,99.93,0,0.01,0.32,565.2,3053.44,26154577,99.94,0,0,0.14,565.18,3053.45,26154578,99.95,0,0,0.15,565.21,3053.42,26154579,99.88,0,0,0.29,565.33,3053.28,26154580,99.88,0,0,0.3,565.57,3053.06,26154581,99.78,0,0,0.57,566.12,3052.5,26154582,99.92,0,0,0.14,565.78,3052.84,26154583,99.94,0,0,0.15,565.76,3052.85,26154584,99.92,0,0,0.14,565.74,3052.89,26154585,99.85,0.01,0.12,0.35,565.44,3053.19,26154586,99.8,0,0,0.61,565.75,3052.88,26154587,99.93,0,0,0.18,565.5,3053.13,26154588,99.92,0,0,0.14,565.54,3053.08,26154589,99.94,0,0,0.14,565.51,3053.11,26154590,99.86,0,0,0.48,565.27,3053.37,26154591,99.79,0,0,0.59,565.59,3053.04,26154592,99.92,0,0,0.14,565.21,3053.42,26154593,99.9,0,0,0.19,565.17,3053.45,26154594,99.93,0,0,0.16,564.93,3053.69,26154595,99.88,0,0,0.32,565.17,3053.46,26154596,99.75,0,0,0.68,565.65,3052.98,26154597,99.93,0,0,0.15,565.51,3053.12,26154598,99.95,0,0,0.15,565.54,3053.08,26154599,99.91,0,0,0.15,565.52,3053.1,26154600,99.81,0,0,0.31,565.27,3053.36,26154601,99.78,0,0,0.57,565.88,3052.75,26154602,99.92,0,0,0.19,565.47,3053.15,26154603,99.9,0,0,0.15,565.45,3053.17,26154604,99.93,0,0,0.14,565.43,3053.18,26154605,99.85,0,0,0.34,565.44,3053.2,26154606,99.77,0,0,0.58,565.77,3052.85,26154607,99.92,0,0,0.18,565.37,3053.25,26154608,99.93,0,0,0.18,565.48,3053.13,26154609,99.73,0,0,0.39,565.53,3053.06,26154610,99.89,0,0,0.4,565.58,3053.03,26154611,99.78,0,0,0.58,565.84,3052.76,26154612,99.93,0,0,0.17,565.47,3053.12,26154613,99.9,0,0,0.18,565.45,3053.14,26154614,99.91,0,0,0.18,565.43,3053.15,26154615,99.81,0,0,0.36,565.67,3052.94,26154616,99.76,0.01,0.01,0.54,566.05,3052.55,26154617,99.91,0,0,0.32,565.5,3053.1,26154618,99.93,0,0,0.14,565.47,3053.11,26154619,99.93,0,0,0.16,565.45,3053.13,26154620,99.75,0,0,0.31,565.46,3053.14,26154621,99.84,0,0,0.14,565.43,3053.17,26154622,99.77,0,0,0.63,566.33,3052.26,26154623,99.94,0,0,0.13,565.64,3052.95,26154624,99.93,0,0,0.19,565.66,3052.92,26154625,99.83,0,0,0.35,565.81,3052.79,26154626,99.93,0,0,0.18,565.78,3052.82,26154627,99.77,0,0,0.56,565.05,3053.55,26154628,97.33,0.04,0.06,6.27,568.23,3051.59,26154629,99.86,0,0,79.36,568.08,3049.27,26154630,99.89,0,0,0.34,567.97,3049.41,26154631,99.93,0,0,0.19,568.01,3049.37,26154632,99.79,0,0,0.61,568.33,3049.04,26154633,99.93,0,0,0.16,567.71,3049.65,26154634,99.92,0,0,0.2,565.75,3051.66,26154635,99.86,0,0,0.32,565.75,3051.68,26154636,99.93,0,0,0.14,565.73,3051.69,26154637,99.74,0.01,0.01,0.68,566.14,3051.27,26154638,99.94,0,0,0.15,565.78,3051.62,26154639,99.77,0,0,0.34,565.53,3051.84,26154640,99.86,0,0,0.36,564.07,3053.33,26154641,99.54,0,0,0.18,564.02,3053.37,26154642,99.79,0,0,0.57,565.04,3052.35,26154643,99.93,0,0,0.18,565.69,3051.69,26154644,99.93,0,0,0.18,565.66,3051.72,26154645,99.87,0,0,0.37,565.42,3051.97,26154646,99.92,0,0,0.18,565.45,3051.94,26154647,99.78,0,0,0.61,566.24,3051.15,26154648,99.93,0,0,0.17,566.02,3051.36,26154649,99.93,0,0,0.14,566,3051.38,26154650,99.78,0,0,0.36,564.84,3052.55,26154651,99.94,0,0,0.18,564.75,3052.64,26154652,99.77,0,0,0.31,565.11,3052.28,26154653,99.91,0,0,0.44,565.46,3051.92,26154654,99.93,0,0,0.18,565.67,3051.71,26154655,99.88,0,0,0.32,565.91,3051.48,26154656,99.93,0,0,0.14,565.89,3051.5,26154657,99.79,0,0,0.33,566.3,3051.08,26154658,99.94,0,0,0.41,566.08,3051.31,26154659,99.95,0,0,0.17,566.06,3051.32,26154660,99.77,0,0,0.39,558.61,3059.2,26154661,99.93,0,0,0.16,557.88,3059.96,26154662,99.93,0,0,0.16,557.86,3059.98,26154663,99.8,0,0,0.55,558.19,3059.65,26154664,99.93,0,0,0.14,557.82,3060.02,26154665,99.89,0,0,0.35,557.81,3060.05,26154666,99.93,0,0,0.14,557.79,3060.07,26154667,99.94,0,0,0.14,557.88,3059.98,26154668,99.75,0,0,0.58,558.6,3059.25,26154669,99.85,0,0,0.32,557.66,3060.16,26154670,99.88,0,0,0.31,557.16,3060.68,26154671,99.93,0,0,0.17,557.13,3060.71,26154672,99.94,0,0,0.14,557.11,3060.73,26154673,99.79,0,0,0.49,557.96,3059.87,26154674,99.95,0,0,0.2,558.05,3059.79,26154675,99.88,0,0,0.3,557.82,3060.04,26154676,99.92,0,0,0.16,557.79,3060.07,26154677,99.92,0,0,0.19,557.53,3060.32,26154678,99.76,0,0,0.48,558.19,3059.66,26154679,99.93,0,0,0.21,558.16,3059.68,26154680,99.81,0,0,0.31,558.15,3059.71,26154681,99.93,0,0,0.15,558.15,3059.73,26154682,99.94,0,0,0.16,558.12,3059.76,26154683,96.48,0.02,0.01,77.78,567.94,3051.69,26154684,99.94,0,0,0.36,560.3,3057.55,26154685,99.88,0,0,0.34,560.38,3057.49,26154686,99.94,0,0,0.13,560.36,3057.51,26154687,99.93,0,0,0.13,560.34,3057.52,26154688,99.76,0,0,0.61,560.12,3057.74,26154689,99.94,0,0,0.17,557.89,3060,26154690,99.86,0,0,0.32,557.89,3060.02,26154691,99.94,0,0,0.15,557.87,3060.03,26154692,99.92,0,0,0.17,557.85,3060.05,26154693,99.81,0,0,0.36,558.18,3059.71,26154694,99.92,0,0,0.35,558.3,3059.63,26154695,99.83,0,0,0.32,557.7,3060.25,26154696,99.92,0,0,0.16,557.72,3060.22,26154697,99.94,0,0,0.13,557.7,3060.24,26154698,99.92,0,0,0.16,557.68,3060.25,26154699,99.64,0,0,0.76,558.47,3059.44,26154700,99.84,0,0,0.33,558.15,3059.77,26154701,99.92,0,0,0.14,558.13,3059.79,26154702,99.94,0,0,0.15,558.11,3059.81,26154703,99.93,0,0,0.14,558.09,3059.82,26154704,99.78,0,0,0.55,558.54,3059.37,26154705,99.82,0,0,0.32,557.1,3060.82,26154706,99.93,0,0,0.15,557.16,3060.76,26154707,99.91,0,0,0.16,557.21,3060.7,26154708,99.91,0,0,0.14,556.29,3061.62,26154709,99.82,0,0,0.55,557.06,3060.85,26154710,99.88,0,0,0.32,557.17,3060.76,26154711,99.93,0,0,0.18,557.15,3060.77,26154712,99.9,0,0,0.14,557.12,3060.8,26154713,99.93,0,0,0.19,557.1,3060.81,26154714,99.8,0,0,0.59,557.44,3060.47,26154715,99.86,0,0,0.33,557.34,3060.59,26154716,99.92,0,0,0.16,557.31,3060.61,26154717,99.96,0,0,0.14,557.35,3060.56,26154718,99.94,0,0,0.15,557.46,3060.45,26154719,99.78,0,0,0.55,557.79,3060.12,26154720,99.82,0,0,0.3,557.43,3060.49,26154721,99.95,0,0,0.14,557.42,3060.5,26154722,99.92,0,0,0.16,557.39,3060.53,26154723,99.96,0,0,0.14,557.38,3060.53,26154724,99.78,0,0,0.54,557.75,3060.15,26154725,99.92,0,0,0.35,557.37,3060.55,26154726,99.93,0,0,0.14,557.34,3060.58,26154727,99.95,0,0,0.16,557.32,3060.59,26154728,99.91,0,0,0.14,557.3,3060.6,26154729,99.68,0,0,0.3,557.84,3060.04,26154730,99.78,0,0,0.7,557.78,3060.12,26154731,99.92,0,0,0.16,557.47,3060.43,26154732,99.9,0,0,0.13,557.45,3060.44,26154733,99.89,0,0,0.17,557.43,3060.46,26154734,99.9,0,0,0.14,557.41,3060.49,26154735,99.68,0,0,0.7,558.05,3059.87,26154736,99.95,0,0,0.16,557.6,3060.32,26154737,99.9,0,0,0.22,557.35,3060.57,26154738,99.89,0,0,0.14,557.31,3060.6,26154739,99.93,0,0,0.15,557.3,3060.61,26154740,99.69,0,0,0.7,557.79,3060.13,26154741,99.88,0,0,0.15,557.45,3060.47,26154742,99.89,0,0,0.16,557.43,3060.48,26154743,99.91,0,0,0.14,557.41,3060.5,26154744,99.85,0,0,0.14,557.39,3060.51,26154745,99.73,0,0,0.74,557.83,3060.09,26154746,99.92,0,0,0.16,557.62,3060.3,26154747,99.85,0,0,0.18,557.59,3060.32,26154748,99.91,0,0,0.17,557.57,3060.34,26154749,99.9,0,0,0.18,557.54,3060.36,26154750,99.7,0,0,0.77,557.76,3060.16,26154751,99.9,0,0,0.19,557.44,3060.47,26154752,99.86,0,0,0.19,557.39,3060.52,26154753,99.85,0,0,0.19,557.34,3060.56,26154754,99.86,0,0,0.21,557.32,3060.58,26154755,99.69,0,0.02,0.82,557.97,3059.94,26154756,99.88,0,0,0.14,557.68,3060.22,26154757,99.83,0,0,0.17,557.63,3060.27,26154758,99.89,0,0,0.17,557.6,3060.3,26154759,99.77,0,0,0.32,557.35,3060.53,26154760,99.66,0,0,0.66,557.49,3060.4,26154761,99.88,0,0,0.21,557.32,3060.56,26154762,99.89,0,0,0.14,557.3,3060.58,26154763,99.86,0,0,0.15,557.29,3060.59,26154764,99.86,0,0,0.14,557.35,3060.53,26154765,99.83,0,0,0.39,557.72,3060.18,26154766,99.69,0,0,0.61,558.05,3059.85,26154767,99.87,0,0,0.18,557.41,3060.48,26154768,99.87,0,0,0.16,557.4,3060.49,26154769,99.87,0,0,0.15,557.37,3060.51,26154770,99.78,0,0,0.33,557.35,3060.54,26154771,99.72,0,0,0.55,557.98,3059.92,26154772,99.85,0.01,0.01,0.19,557.66,3060.25,26154773,99.86,0,0,0.14,557.64,3060.26,26154774,99.83,0,0,0.2,557.37,3060.52,26154775,99.76,0,0,0.35,557.84,3060.06,26154776,99.69,0,0,0.55,558.02,3059.88,26154777,99.85,0,0,0.14,557.56,3060.34,26154778,99.84,0,0,0.15,557.54,3060.35,26154779,99.82,0,0,0.14,557.52,3060.38,26154780,99.8,0,0,0.38,557.88,3060.02,26154781,99.71,0,0,0.55,558.27,3059.63,26154782,99.85,0,0,0.14,557.91,3059.99,26154783,99.87,0,0,0.16,557.88,3060.01,26154784,99.83,0,0,0.15,557.87,3060.03,26154785,99.81,0,0,0.38,557.93,3059.98,26154786,99.67,0,0,0.54,558.43,3059.47,26154787,99.85,0,0,0.15,557.58,3060.32,26154788,99.83,0,0,0.14,557.55,3060.34,26154789,99.76,0,0,0.35,557.51,3060.36,26154790,99.78,0,0,0.38,557.58,3060.3,26154791,99.7,0,0,0.43,558.27,3059.61,26154792,99.88,0,0,0.32,557.93,3059.95,26154793,99.85,0,0,0.15,557.9,3059.97,26154794,99.85,0,0,0.15,557.88,3059.99,26154795,99.75,0,0,0.32,557.64,3060.24,26154796,99.65,0,0,0.39,558,3059.87,26154797,99.85,0,0,0.32,557.84,3060.03,26154798,99.85,0,0,0.14,557.81,3060.05,26154799,99.86,0,0,0.16,557.8,3060.07,26154800,99.8,0,0,0.33,557.8,3060.09,26154801,99.7,0,0,0.39,558.13,3059.75,26154802,99.8,0,0,0.29,557.88,3059.99,26154803,99.87,0,0,0.14,557.92,3059.95,26154804,99.85,0,0,0.14,557.9,3059.97,26154805,99.81,0,0,0.32,557.65,3060.23,26154806,99.86,0,0,0.16,557.63,3060.25,26154807,99.72,0,0,0.56,558.2,3059.68,26154808,99.87,0,0,0.15,557.82,3060.05,26154809,99.83,0,0,0.14,557.8,3060.07,26154810,99.8,0,0,0.31,557.8,3060.08,26154811,99.85,0,0,0.16,557.78,3060.1,26154812,99.74,0,0,0.54,558.48,3059.4,26154813,99.84,0,0,0.14,557.68,3060.19,26154814,99.85,0,0,0.14,557.65,3060.21,26154815,99.78,0,0,0.33,558.13,3059.75,26154816,99.81,0,0,0.14,558.11,3059.77,26154817,99.69,0,0,0.55,558.4,3059.47,26154818,99.83,0,0,0.15,557.8,3060.07,26154819,99.78,0,0,0.3,557.55,3060.29,26154820,99.78,0,0,0.31,557.79,3060.08,26154821,99.86,0,0,0.16,557.89,3059.98,26154822,99.71,0,0,0.57,558.18,3059.69,26154823,99.81,0,0.02,0.2,557.62,3060.24,26154824,99.82,0,0,0.16,557.59,3060.27,26154825,99.77,0,0,0.31,557.34,3060.53,26154826,99.85,0,0,0.17,557.31,3060.56,26154827,99.73,0,0,0.54,558,3059.87,26154828,99.84,0,0,0.15,558.14,3059.72,26154829,99.85,0,0,0.14,558.12,3059.74,26154830,99.79,0,0,0.36,558.36,3059.52,26154831,99.84,0,0,0.18,558.34,3059.53,26154832,99.7,0,0,0.5,558.6,3059.26,26154833,99.82,0,0,0.2,558.06,3059.8,26154834,99.81,0,0,0.18,557.57,3060.29,26154835,99.76,0,0,0.31,557.79,3060.09,26154836,99.85,0,0,0.16,557.77,3060.1,26154837,99.7,0,0,0.41,558.22,3059.64,26154838,99.85,0,0,0.29,557.9,3059.96,26154839,99.86,0,0,0.14,557.89,3059.97,26154840,99.72,0,0,0.32,557.9,3059.98,26154841,99.85,0.01,0,0.14,557.87,3060,26154842,99.84,0,0,0.16,557.78,3060.08,26154843,99.7,0,0,0.57,558.34,3059.52,26154844,99.85,0,0,0.15,558.07,3059.78,26154845,99.78,0,0,0.32,558.18,3059.7,26154846,99.86,0,0,0.16,558.16,3059.71,26154847,99.85,0,0,0.15,558.13,3059.73,26154848,99.7,0,0,0.57,558.86,3059,26154849,99.74,0,0,0.3,558.08,3059.76,26154850,99.78,0,0,0.31,558.32,3059.53,26154851,99.84,0,0,0.15,558.3,3059.55,26154852,99.85,0,0,0.15,558.3,3059.55,26154853,99.72,0,0,0.55,558.95,3058.89,26154854,99.85,0,0,0.14,558.25,3059.59,26154855,99.8,0,0,0.33,558.25,3059.61,26154856,99.81,0,0,0.14,558.33,3059.53,26154857,99.84,0,0,0.19,558.43,3059.44,26154858,99.7,0,0,0.56,558.56,3059.32,26154859,99.84,0,0,0.16,557.15,3060.73,26154860,99.8,0,0,0.35,557.39,3060.5,26154861,99.85,0,0,0.12,557.37,3060.51,26154862,99.86,0,0,0.17,557.35,3060.53,26154863,99.71,0,0,0.54,557.81,3060.07,26154864,99.85,0,0,0.18,557.29,3060.57,26154865,99.81,0,0,0.32,557.55,3060.34,26154866,99.85,0,0,0.15,557.52,3060.36,26154867,99.86,0,0,0.16,557.59,3060.29,26154868,99.73,0,0,0.33,558.02,3059.85,26154869,99.85,0,0,0.38,557.65,3060.22,26154870,99.78,0,0,0.33,557.66,3060.23,26154871,99.86,0,0,0.14,557.64,3060.25,26154872,99.85,0,0,0.16,557.62,3060.27,26154873,99.85,0,0,0.14,557.58,3060.29,26154874,99.71,0,0,0.55,557.93,3059.94,26154875,99.8,0,0,0.4,557.32,3060.56,26154876,99.86,0,0,0.14,557.3,3060.58,26154877,99.87,0,0,0.15,557.27,3060.61,26154878,99.85,0,0,0.16,557.25,3060.62,26154879,99.64,0,0,0.7,557.78,3060.07,26154880,99.75,0,0,0.34,557.67,3060.19,26154881,99.83,0,0,0.16,557.63,3060.22,26154882,99.84,0,0,0.14,557.61,3060.24,26154883,99.84,0,0,0.16,557.59,3060.26,26154884,99.72,0,0,0.55,557.78,3060.08,26154885,99.79,0,0,0.36,556.35,3061.53,26154886,99.84,0,0,0.16,556.31,3061.56,26154887,99.83,0,0,0.16,556.29,3061.58,26154888,99.86,0,0,0.14,556.32,3061.54,26154889,99.71,0,0,0.53,557.37,3060.49,26154890,99.77,0,0,0.32,557.65,3060.23,26154891,99.86,0,0,0.14,557.64,3060.23,26154892,99.86,0,0,0.15,557.61,3060.26,26154893,99.85,0,0,0.16,557.59,3060.28,26154894,99.68,0,0,0.47,557.7,3060.16,26154895,99.8,0,0,0.4,557.07,3060.8,26154896,99.87,0,0,0.15,557.04,3060.82,26154897,99.84,0,0,0.16,557.02,3060.84,26154898,99.85,0,0,0.16,557,3060.86,26154899,99.72,0,0,0.45,557.71,3060.14,26154900,99.73,0,0,0.45,556.47,3061.39,26154901,99.86,0,0,0.16,556.41,3061.46,26154902,99.85,0,0,0.15,556.39,3061.47,26154903,99.86,0,0,0.16,556.36,3061.49,26154904,99.73,0,0,0.36,556.74,3061.11,26154905,99.77,0,0,0.52,557.57,3060.3,26154906,99.86,0,0,0.14,557.56,3060.3,26154907,99.82,0,0,0.16,557.54,3060.32,26154908,99.83,0,0,0.14,557.52,3060.34,26154909,99.8,0,0,0.3,557.74,3060.09,26154910,99.63,0,0,0.74,557.89,3059.95,26154911,99.85,0,0,0.14,557.64,3060.19,26154912,99.86,0,0,0.15,557.62,3060.21,26154913,99.86,0,0,0.14,557.6,3060.23,26154914,99.86,0,0,0.14,557.59,3060.27,26154915,99.62,0,0,0.72,557.87,3060.01,26154916,99.85,0,0,0.16,557.56,3060.31,26154917,99.85,0,0,0.18,557.3,3060.58,26154918,99.89,0.01,0.01,0.16,557.29,3060.57,26154919,99.87,0,0.01,0.17,557.32,3060.55,26154920,99.64,0,0,0.72,557.97,3059.91,26154921,99.9,0,0,0.17,557.78,3060.09,26154922,99.9,0,0,0.16,557.75,3060.11,26154923,99.93,0,0,0.14,557.74,3060.12,26154924,98.34,0,0,0.15,557.71,3060.14,26154925,99.76,0,0,0.71,558.21,3059.67,26154926,99.93,0,0,0.14,557.66,3060.21,26154927,99.92,0,0,0.16,557.64,3060.23,26154928,99.95,0,0,0.14,557.62,3060.24,26154929,99.93,0,0,0.14,557.6,3060.26,26154930,99.7,0,0,0.7,558.02,3059.86,26154931,99.95,0,0,0.16,557.58,3060.29,26154932,99.94,0,0,0.14,557.56,3060.3,26154933,99.94,0,0,0.15,557.54,3060.32,26154934,99.95,0,0,0.15,557.52,3060.34,26154935,99.71,0,0,0.69,557.65,3060.23,26154936,99.91,0,0,0.21,557.26,3060.61,26154937,99.92,0,0,0.14,557.3,3060.57,26154938,99.93,0,0,0.15,557.41,3060.46,26154939,99.78,0,0,0.29,557.86,3059.98,26154940,99.7,0,0,0.75,558.05,3059.8,26154941,99.94,0,0,0.14,557.86,3059.99,26154942,99.91,0,0,0.17,557.83,3060.02,26154943,99.94,0,0,0.19,557.79,3060.05,26154944,99.9,0,0,0.15,557.77,3060.08,26154945,99.73,0,0,0.57,558.12,3059.75,26154946,99.94,0,0,0.29,557.75,3060.11,26154947,99.94,0,0,0.15,557.84,3060.02,26154948,99.92,0,0,0.18,557.88,3059.97,26154949,99.93,0,0,0.16,557.86,3059.99,26154950,99.9,0,0,0.33,557.86,3060.01,26154951,99.76,0,0,0.55,558.2,3059.66,26154952,99.92,0,0,0.18,557.81,3060.05,26154953,99.92,0,0,0.17,557.8,3060.05,26154954,99.9,0,0,0.2,557.55,3060.3,26154955,99.88,0,0,0.34,557.54,3060.32,26154956,99.82,0,0,0.62,558.03,3059.82,26154957,99.93,0,0,0.21,557.73,3060.11,26154958,99.93,0,0,0.14,557.71,3060.13,26154959,99.91,0,0,0.15,557.82,3060.01,26154960,99.85,0,0,0.37,557.88,3059.97,26154961,99.79,0,0,0.59,558.57,3059.28,26154962,99.93,0,0,0.18,557.84,3060.01,26154963,99.91,0,0,0.18,557.81,3060.03,26154964,99.93,0,0,0.19,557.79,3060.05,26154965,99.89,0,0,0.36,557.78,3060.07,26154966,99.81,0,0,0.54,558.34,3059.5,26154967,99.92,0,0,0.15,557.97,3059.87,26154968,99.95,0,0,0.14,557.96,3059.88,26154969,99.82,0,0.02,0.33,558.04,3059.77,26154970,99.88,0,0,0.33,557.84,3059.99,26154971,99.79,0,0,0.41,558.22,3059.61,26154972,99.95,0,0,0.28,558.03,3059.79,26154973,99.91,0,0,0.16,558.01,3059.81,26154974,99.94,0,0,0.15,557.98,3059.83,26154975,99.87,0,0,0.32,557.73,3060.09,26154976,99.81,0,0,0.48,558.04,3059.78,26154977,99.93,0,0,0.25,557.81,3060.01,26154978,99.93,0.01,0.03,0.16,557.8,3060.01,26154979,99.94,0,0,0.18,557.69,3060.12,26154980,99.87,0,0,0.34,557.1,3060.73,26154981,99.8,0,0,0.32,557.52,3060.3,26154982,99.93,0,0,0.38,558.08,3059.74,26154983,99.94,0,0,0.14,558.06,3059.76,26154984,99.92,0,0,0.14,558.05,3059.76,26154985,99.89,0,0,0.32,558.04,3059.79,26154986,99.94,0,0,0.14,558.03,3059.79,26154987,99.79,0,0,0.55,558.49,3059.33,26154988,99.93,0,0,0.15,558.03,3059.79,26154989,99.93,0,0,0.14,558.02,3059.79,26154990,99.87,0,0,0.32,558.04,3059.78,26154991,99.93,0,0,0.14,558.01,3059.82,26154992,99.79,0,0,0.53,558.52,3059.3,26154993,99.93,0,0,0.16,558.24,3059.57,26154994,99.95,0,0,0.16,558.24,3059.57,26154995,99.83,0,0,0.34,558.24,3059.58,26154996,99.92,0,0,0.16,558.22,3059.61,26154997,99.81,0,0,0.59,558.56,3059.26,26154998,99.95,0,0,0.2,558.2,3059.61,26154999,99.85,0,0,0.31,557.71,3060.07,26155000,99.92,0,0.01,0.34,557.96,3059.85,26155001,99.93,0,0,0.18,557.93,3059.87,26155002,99.8,0,0,0.54,558.41,3059.38,26155003,99.95,0,0,0.21,558.17,3059.62,26155004,98.1,0,0,0.17,558.17,3059.64,26155005,99.91,0,0,0.37,558.16,3059.68,26155006,99.93,0,0,0.16,558.12,3059.71,26155007,99.82,0,0,0.52,558.47,3059.36,26155008,99.92,0,0,0.2,557.43,3060.4,26155009,99.93,0,0,0.14,557.12,3060.7,26155010,99.9,0,0,0.32,557.38,3060.45,26155011,99.95,0,0,0.15,557.38,3060.45,26155012,99.82,0,0,0.41,557.73,3060.1,26155013,99.95,0,0,0.28,557.37,3060.45,26155014,99.93,0,0,0.18,556.93,3060.89,26155015,99.84,0,0,0.34,557.35,3060.49,26155016,99.93,0,0,0.14,557.35,3060.48,26155017,99.82,0,0,0.29,557.98,3059.84,26155018,99.9,0,0,0.39,556.85,3060.97,26155019,99.94,0,0,0.19,556.84,3060.97,26155020,99.38,0,0,10.88,557,3060.87,26155021,99.95,0,0,0.17,556.98,3060.93,26155022,99.92,0,0,0.12,556.97,3060.93,26155023,99.8,0,0,0.55,557.92,3059.98,26155024,99.9,0,0,0.14,557.45,3060.44,26155025,99.86,0,0,0.32,557.58,3060.37,26155026,99.91,0,0,0.16,557.47,3060.48,26155027,99.93,0,0,0.14,557.44,3060.5,26155028,99.77,0,0,0.56,557.34,3060.6,26155029,99.81,0,0,0.3,557.42,3060.5,26155030,99.86,0,0,0.34,557.68,3060.27,26155031,99.94,0,0,0.14,557.67,3060.28,26155032,99.95,0,0,0.13,557.65,3060.3,26155033,99.79,0,0,0.56,557.87,3060.07,26155034,99.95,0,0,0.18,557.39,3060.54,26155035,99.86,0,0,0.33,557.17,3060.78,26155036,99.93,0,0,0.14,557.12,3060.82,26155037,99.93,0,0,0.2,557.12,3060.82,26155038,99.79,0,0,0.45,557.48,3060.46,26155039,99.91,0,0,0.27,557.11,3060.82,26155040,99.89,0,0,0.32,557.37,3060.58,26155041,99.95,0,0,0.14,557.34,3060.6,26155042,99.95,0,0,0.16,557.38,3060.56,26155043,95.1,0.36,0.01,77.76,568.95,3049.07,26155044,99.85,0,0,180.98,560.1,3057.51,26155045,99.9,0,0,0.33,560.1,3057.53,26155046,99.95,0,0,0.14,560.08,3057.54,26155047,99.95,0,0,0.18,560.08,3057.54,26155048,99.83,0,0,0.32,560.4,3057.22,26155049,99.92,0,0,0.43,557.63,3060.03,26155050,99.87,0,0,0.38,557.64,3060.04,26155051,99.94,0,0,0.14,557.63,3060.05,26155052,99.95,0,0,0.16,557.63,3060.05,26155053,99.94,0,0.01,0.17,557.6,3060.07,26155054,99.78,0,0,0.61,558.2,3059.5,26155055,99.88,0,0,0.38,557.44,3060.27,26155056,99.94,0,0,0.18,557.35,3060.36,26155057,99.95,0,0,0.18,557.32,3060.39,26155058,99.93,0,0,0.16,557.31,3060.39,26155059,99.72,0,0,0.73,557.87,3059.81,26155060,99.88,0,0,0.31,557.52,3060.18,26155061,99.96,0,0,0.16,557.51,3060.18,26155062,99.93,0,0,0.16,557.48,3060.21,26155063,99.95,0,0,0.14,557.47,3060.21,26155064,99.79,0,0,0.53,557.94,3059.74,26155065,99.87,0,0,0.32,556.52,3061.18,26155066,99.96,0,0,0.16,556.49,3061.2,26155067,99.96,0,0,0.15,556.49,3061.2,26155068,99.94,0,0,0.14,556.49,3061.2,26155069,99.82,0,0,0.44,557.32,3060.36,26155070,99.87,0,0,0.51,557.08,3060.62,26155071,99.92,0,0,0.18,556.96,3060.73,26155072,99.95,0,0,0.18,556.95,3060.74,26155073,99.95,0,0,0.18,556.95,3060.74,26155074,99.79,0,0,0.49,557.33,3060.35,26155075,99.88,0,0,0.46,557.7,3060,26155076,99.95,0,0,0.16,557.69,3060,26155077,99.95,0,0,0.14,557.69,3060,26155078,99.95,0,0,0.15,557.66,3060.03,26155079,99.81,0,0,0.51,558.04,3059.64,26155080,99.83,0,0,0.48,558.15,3059.54,26155081,99.94,0,0,0.17,558.15,3059.54,26155082,99.93,0,0,0.15,558.15,3059.54,26155083,99.95,0,0,0.14,558.14,3059.54,26155084,99.96,0,0,0.17,558.14,3059.54,26155085,99.68,0,0,0.71,558.29,3059.4,26155086,99.94,0,0,0.18,557.66,3060.03,26155087,99.95,0,0,0.16,557.65,3060.04,26155088,99.94,0,0,0.17,557.62,3060.06,26155089,99.85,0,0,0.33,557.85,3059.81,26155090,99.79,0,0,0.69,558.32,3059.36,26155091,99.94,0,0,0.17,557.87,3059.8,26155092,99.94,0,0,0.2,557.87,3059.8,26155093,99.92,0,0,0.15,557.84,3059.82,26155094,99.92,0,0,0.15,557.83,3059.83,26155095,99.78,0,0,0.7,558.03,3059.65,26155096,99.94,0,0,0.16,557.84,3059.83,26155097,99.92,0,0,0.22,557.83,3059.83,26155098,99.91,0,0,0.15,557.81,3059.85,26155099,99.95,0,0,0.18,557.79,3059.86,26155100,99.75,0,0,0.7,558.01,3059.66,26155101,99.95,0,0,0.14,557.56,3060.11,26155102,99.93,0,0,0.16,557.64,3060.03,26155103,99.94,0,0,0.15,557.73,3059.93,26155104,99.95,0,0,0.15,557.71,3059.95,26155105,99.6,0,0,0.63,558.33,3059.34,26155106,99.93,0,0,0.21,557.97,3059.71,26155107,99.92,0,0,0.14,557.96,3059.71,26155108,99.93,0,0,0.16,557.96,3059.71,26155109,99.94,0,0,0.14,557.92,3059.74,26155110,99.8,0,0,0.63,558.13,3059.54,26155111,99.95,0,0,0.23,557.94,3059.74,26155112,99.93,0,0,0.14,557.93,3059.74,26155113,99.96,0,0,0.16,557.92,3059.74,26155114,99.95,0,0,0.15,557.89,3059.77,26155115,99.78,0,0,0.58,558.06,3059.62,26155116,99.9,0,0,0.41,549.75,3068.22,26155117,99.96,0,0,0.2,541.73,3076.58,26155118,99.95,0,0,0.14,541.7,3076.6,26155119,99.87,0,0,0.31,541.45,3076.82,26155120,99.89,0,0,0.29,541.7,3076.59,26155121,99.83,0,0,0.54,542.29,3076,26155122,99.95,0,0,0.17,541.94,3076.35,26155123,99.94,0,0,0.14,541.9,3076.38,26155124,99.95,0,0,0.15,541.9,3076.38,26155125,99.89,0,0,0.29,540.8,3077.5,26155126,99.8,0,0,0.56,542.22,3076.08,26155127,99.95,0,0,0.14,541.91,3076.38,26155128,99.95,0,0,0.14,541.9,3076.38,26155129,99.95,0,0,0.23,541.88,3076.4,26155130,99.87,0,0,0.31,541.89,3076.41,26155131,99.75,0,0,0.56,542.04,3076.25,26155132,99.95,0,0,0.16,541.63,3076.66,26155133,99.95,0,0,0.18,541.63,3076.66,26155134,96.15,3.52,0.02,4.3,547.97,3071.35,26155135,99.8,0,0,77.2,544.35,3070.02,26155136,99.78,0,0,0.55,544.68,3069.68,26155137,99.94,0,0,0.16,544.34,3070.03,26155138,99.95,0,0,0.18,544.33,3070.03,26155139,99.95,0,0,0.18,544.14,3070.22,26155140,99.82,0,0,0.31,540.75,3073.68,26155141,99.82,0,0,0.51,541.46,3072.97,26155142,99.95,0,0,0.23,540.92,3073.5,26155143,99.92,0,0,0.16,540.92,3073.5,26155144,99.95,0,0,0.17,540.92,3073.5,26155145,99.9,0,0,0.3,541.17,3073.32,26155146,99.81,0,0,0.43,541.67,3072.83,26155147,99.96,0,0,0.3,541.17,3073.32,26155148,99.92,0,0,0.17,541.17,3073.32,26155149,99.82,0,0,0.34,542.11,3072.35,26155150,99.88,0,0,0.3,542.12,3072.36,26155151,99.8,0,0,0.43,542.39,3072.09,26155152,99.93,0,0,0.35,541.87,3072.6,26155153,99.92,0,0,0.22,541.86,3072.6,26155154,99.92,0,0,0.2,541.86,3072.62,26155155,99.9,0,0,0.32,542.09,3072.4,26155156,99.8,0,0,0.55,542.44,3072.05,26155157,99.95,0,0,0.26,541.85,3072.64,26155158,99.9,0,0,0.17,541.41,3073.08,26155159,99.93,0,0,0.19,541.09,3073.39,26155160,99.9,0,0,0.3,540.87,3073.63,26155161,99.95,0,0,0.21,540.84,3073.65,26155162,99.82,0,0,0.58,540.94,3073.55,26155163,99.93,0,0,0.16,540.57,3073.91,26155164,99.91,0,0,0.17,540.57,3073.92,26155165,99.84,0,0,0.28,541.07,3073.44,26155166,99.93,0,0,0.19,541.08,3073.43,26155167,99.8,0,0,0.56,541.42,3073.09,26155168,99.89,0,0,0.17,541.04,3073.46,26155169,99.92,0,0,0.19,541.06,3073.44,26155170,99.87,0,0,0.32,541.24,3073.28,26155171,99.96,0,0,0.17,541.24,3073.28,26155172,99.8,0,0,0.55,542.13,3072.38,26155173,99.95,0,0,0.18,541.47,3073.03,26155174,99.93,0,0,0.16,541.47,3073.03,26155175,99.9,0,0,0.3,541.3,3073.22,26155176,99.95,0,0,0.18,541.21,3073.31,26155177,99.81,0,0,0.53,541.74,3072.77,26155178,99.92,0,0,0.21,541.2,3073.31,26155179,99.87,0,0,0.32,541.44,3073.04,26155180,99.86,0,0,0.3,541.46,3073.04,26155181,99.94,0,0,0.19,541.46,3073.04,26155182,99.8,0,0,0.62,541.88,3072.61,26155183,99.93,0,0,0.16,541.43,3073.06,26155184,99.89,0,0,0.17,541.41,3073.07,26155185,99.68,0,0,0.29,541.19,3073.31,26155186,99.94,0,0,0.17,541.17,3073.32,26155187,99.78,0,0,0.42,541.54,3072.94,26155188,99.88,0,0,0.33,541.41,3073.07,26155189,99.94,0,0,0.2,541.41,3073.07,26155190,99.92,0,0,0.35,541.41,3073.08,26155191,99.92,0,0,0.18,541.39,3073.1,26155192,99.94,0,0,0.18,541.38,3073.1,26155193,99.77,0,0,0.57,541.27,3073.21,26155194,99.91,0,0,0.22,540.88,3073.59,26155195,99.91,0,0,0.31,541.37,3073.12,26155196,99.96,0,0,0.18,541.35,3073.13,26155197,99.97,0,0,0.16,541.35,3073.13,26155198,99.76,0,0,0.56,541.88,3072.6,26155199,99.94,0,0,0.17,541.59,3072.89,26155200,99.83,0,0,0.3,541.61,3072.88,26155201,99.93,0,0,0.17,541.6,3072.89,26155202,99.92,0,0,0.17,541.6,3072.89,26155203,99.8,0,0,0.5,541.8,3072.68,26155204,99.94,0,0,0.22,541.34,3073.13,26155205,99.87,0,0,0.28,541.37,3073.13,26155206,99.93,0,0,0.17,541.35,3073.14,26155207,99.93,0,0,0.18,541.32,3073.16,26155208,99.81,0,0,0.42,541.9,3072.58,26155209,99.89,0,0,0.46,541.31,3073.15,26155210,99.88,0,0,0.33,541.56,3072.91,26155211,99.94,0,0,0.21,541.56,3072.91,26155212,99.9,0,0,0.17,541.56,3072.91,26155213,99.78,0,0,0.59,542.16,3072.3,26155214,99.93,0,0,0.17,541.79,3072.67,26155215,99.91,0,0,0.29,541.07,3073.41,26155216,99.93,0,0,0.17,541.16,3073.31,26155217,99.93,0,0,0.26,540.98,3073.49,26155218,99.8,0,0,0.43,541.37,3073.09,26155219,99.91,0,0,0.36,541.46,3073,26155220,99.89,0,0,0.29,541.97,3072.51,26155221,99.94,0,0,0.17,541.96,3072.51,26155222,99.94,0,0,0.19,541.95,3072.52,26155223,99.92,0,0,0.18,541.92,3072.54,26155224,99.8,0,0,0.56,542.05,3072.41,26155225,99.87,0,0,0.32,541.69,3072.78,26155226,99.09,0,0,0.18,541.67,3072.81,26155227,99.89,0,0,0.2,541.65,3072.82,26155228,99.91,0,0,0.16,541.65,3072.82,26155229,99.78,0,0,0.56,541.78,3072.7,26155230,99.79,0,0,0.29,540.47,3074.03,26155231,99.91,0,0,0.14,540.43,3074.06,26155232,99.95,0,0,0.16,540.4,3074.09,26155233,99.94,0,0,0.14,540.39,3074.09,26155234,99.76,0,0,0.56,541.67,3072.81,26155235,99.89,0,0,0.32,541.4,3073.1,26155236,99.95,0,0,0.14,541.38,3073.11,26155237,99.95,0,0,0.16,541.38,3073.11,26155238,99.94,0,0,0.14,541.37,3073.11,26155239,99.73,0,0,0.63,542.38,3072.07,26155240,99.85,0,0,0.37,541.63,3072.84,26155241,99.92,0,0,0.14,541.6,3072.87,26155242,99.93,0,0,0.16,541.59,3072.88,26155243,99.96,0,0,0.14,541.58,3072.88,26155244,99.79,0,0,0.56,541.93,3072.53,26155245,99.6,0,0,0.29,541.35,3073.12,26155246,99.94,0,0,0.15,541.35,3073.13,26155247,99.96,0,0,0.17,541.34,3073.13,26155248,99.93,0,0,0.14,541.31,3073.15,26155249,99.81,0,0,0.49,541.28,3073.18,26155250,99.91,0,0,0.33,540.82,3073.66,26155251,99.95,0,0,0.15,540.82,3073.65,26155252,99.95,0,0,0.16,540.82,3073.65,26155253,99.95,0,0,0.16,540.81,3073.65,26155254,99.77,0,0,0.66,541.53,3072.93,26155255,99.87,0,0,0.32,541.56,3072.91,26155256,99.93,0,0,0.16,541.53,3072.94,26155257,99.95,0,0,0.18,541.53,3072.94,26155258,99.95,0,0,0.16,541.52,3072.94,26155259,99.82,0,0,0.43,541.85,3072.61,26155260,99.78,0,0,0.42,540.37,3074.11,26155261,99.92,0,0,0.18,540.49,3073.98,26155262,99.94,0,0,0.16,540.48,3073.98,26155263,99.92,0,0.01,0.18,540.45,3074.01,26155264,99.93,0,0,0.15,540.41,3074.05,26155265,99.76,0,0,0.68,542.38,3072.1,26155266,99.95,0,0,0.15,541.65,3072.82,26155267,99.93,0,0,0.14,541.65,3072.82,26155268,99.93,0,0,0.17,541.64,3072.82,26155269,99.83,0,0,0.33,541.91,3072.52,26155270,99.71,0,0,0.7,542.03,3072.43,26155271,99.94,0,0,0.14,541.62,3072.82,26155272,99.94,0,0,0.18,541.62,3072.82,26155273,99.93,0,0,0.16,541.61,3072.82,26155274,99.95,0,0,0.18,541.61,3072.85,26155275,99.72,0,0,0.7,542.22,3072.25,26155276,99.9,0,0,0.15,541.87,3072.6,26155277,99.93,0,0,0.25,541.86,3072.6,26155278,99.94,0,0,0.14,541.83,3072.62,26155279,99.91,0,0,0.14,541.82,3072.63,26155280,99.73,0,0,0.62,541.59,3072.87,26155281,99.95,0,0,0.21,540.6,3073.86,26155282,99.94,0,0,0.14,540.6,3073.86,26155283,99.95,0,0,0.14,540.59,3073.86,26155284,99.9,0,0,0.15,540.59,3073.86,26155285,99.68,0,0,0.57,541.93,3072.54,26155286,99.84,0,0,0.28,542.05,3072.42,26155287,99.87,0,0.01,0.16,542.03,3072.43,26155288,99.93,0,0,0.15,542.01,3072.45,26155289,99.88,0,0.01,0.16,542.08,3072.37,26155290,99.66,0,0,0.77,542.48,3071.99,26155291,99.91,0,0.01,0.2,541.9,3072.56,26155292,99.95,0,0,0.18,541.89,3072.57,26155293,99.93,0,0,0.18,541.88,3072.57,26155294,99.9,0,0,0.16,541.86,3072.59,26155295,99.71,0,0,0.49,542.23,3072.24,26155296,99.95,0,0,0.37,542.1,3072.36,26155297,99.83,0,0,0.13,542.1,3072.36,26155298,99.89,0,0,0.18,542.09,3072.36,26155299,99.8,0,0,0.39,541.83,3072.59,26155300,99.79,0,0,0.31,541.82,3072.62,26155301,99.74,0,0,0.56,542.45,3071.98,26155302,99.87,0,0,0.13,541.8,3072.63,26155303,99.9,0,0,0.14,541.78,3072.65,26155304,99.88,0,0,0.15,541.76,3072.66,26155305,99.83,0,0,0.28,541.78,3072.65,26155306,99.79,0,0,0.56,541.67,3072.76,26155307,99.82,0,0,0.39,541.18,3073.25,26155308,99.89,0,0,0.15,540.76,3073.67,26155309,99.93,0,0,0.16,540.75,3073.67,26155310,99.88,0,0,0.29,540.52,3073.91,26155311,99.76,0,0,0.5,541.25,3073.18,26155312,99.92,0,0,0.2,541.25,3073.18,26155313,99.88,0,0.01,0.16,541.33,3073.1,26155314,99.84,0,0,0.19,541.26,3073.16,26155315,99.8,0,0,0.27,541.44,3072.99,26155316,99.75,0,0,0.54,541.53,3072.9,26155317,99.83,0,0,0.17,540.94,3073.48,26155318,99.82,0,0,0.18,540.91,3073.51,26155319,99.87,0,0,0.15,540.9,3073.52,26155320,99.78,0,0,0.34,541.17,3073.26,26155321,99.73,0,0,0.47,541.51,3072.92,26155322,99.88,0,0,0.2,541.15,3073.27,26155323,99.85,0,0,0.16,541.15,3073.27,26155324,99.82,0,0,0.14,541.14,3073.28,26155325,99.8,0,0,0.33,541.13,3073.3,26155326,99.73,0,0,0.59,541.47,3072.95,26155327,99.87,0,0,0.14,541.12,3073.3,26155328,99.85,0,0,0.15,541.09,3073.33,26155329,99.78,0,0,0.3,541.32,3073.07,26155330,99.78,0,0,0.28,540.88,3073.53,26155331,99.76,0,0,0.32,541.4,3073,26155332,99.84,0,0,0.38,541.58,3072.82,26155333,99.85,0,0,0.15,541.55,3072.85,26155334,99.83,0,0,0.14,541.54,3072.85,26155335,99.81,0,0,0.29,541.32,3073.08,26155336,99.87,0,0,0.14,541.31,3073.09,26155337,99.73,0,0,0.59,541.76,3072.63,26155338,99.85,0,0,0.14,541.29,3073.11,26155339,99.86,0,0,0.15,541.27,3073.14,26155340,99.82,0,0,0.28,541.04,3073.38,26155341,99.84,0,0,0.16,541.03,3073.39,26155342,99.7,0,0,0.52,541.38,3073.03,26155343,99.82,0,0,0.16,541.02,3073.39,26155344,99.83,0,0,0.14,541.1,3073.31,26155345,99.78,0,0,0.29,541.68,3072.74,26155346,99.85,0,0,0.16,541.68,3072.74,26155347,99.71,0,0,0.57,542.02,3072.4,26155348,99.85,0,0,0.15,541.67,3072.74,26155349,99.85,0,0,0.14,541.66,3072.74,26155350,99.8,0,0,0.29,541.69,3072.74,26155351,99.82,0,0,0.18,541.66,3072.76,26155352,99.73,0,0,0.6,541.87,3072.54,26155353,99.85,0,0,0.16,541.4,3073.02,26155354,99.84,0,0,0.15,541.39,3073.02,26155355,99.78,0,0,0.29,540.92,3073.51,26155356,99.84,0,0,0.16,540.88,3073.54,26155357,99.7,0,0,0.39,541.49,3072.93,26155358,99.83,0,0,0.28,541.61,3072.8,26155359,99.8,0,0,0.32,541.61,3072.78,26155360,99.82,0,0,0.3,541.14,3073.27,26155361,99.86,0,0,0.14,541.12,3073.28,26155362,99.72,0,0,0.5,541.3,3073.09,26155363,99.84,0,0,0.19,540.34,3074.05,26155364,99.83,0,0,0.15,540.34,3074.06,26155365,99.69,0,0,0.34,540.36,3074.06,26155366,99.87,0,0,0.14,540.35,3074.06,26155367,99.74,0,0,0.29,540.72,3073.7,26155368,99.82,0,0,0.41,541.57,3072.83,26155369,99.81,0,0,0.14,541.55,3072.85,26155370,99.81,0,0,0.31,541.31,3073.1,26155371,99.85,0,0,0.14,541.3,3073.11,26155372,99.86,0,0,0.13,541.29,3073.11,26155373,99.73,0,0,0.57,542.2,3072.2,26155374,99.84,0,0,0.18,541.69,3072.71,26155375,99.82,0,0,0.28,541.35,3073.07,26155376,99.85,0,0,0.17,541.27,3073.14,26155377,99.84,0,0,0.14,541.27,3073.14,26155378,99.7,0,0,0.54,541.44,3072.96,26155379,99.84,0,0,0.14,540.99,3073.41,26155380,99.73,0,0,0.3,540.2,3074.21,26155381,99.85,0,0,0.14,540.19,3074.22,26155382,99.85,0,0,0.19,540.15,3074.25,26155383,99.71,0,0,0.4,540.74,3073.67,26155384,99.83,0,0,0.28,540.62,3073.8,26155385,99.79,0,0,0.3,541.58,3072.86,26155386,99.88,0,0,0.14,541.61,3072.83,26155387,99.87,0,0,0.16,541.6,3072.83,26155388,99.69,0,0,0.5,541.86,3072.57,26155389,99.8,0,0,0.34,541.59,3072.82,26155390,99.82,0,0,0.29,541.61,3072.82,26155391,99.86,0,0,0.14,541.57,3072.85,26155392,99.82,0,0,0.14,541.57,3072.85,26155393,99.7,0,0,0.59,541.82,3072.59,26155394,99.85,0,0,0.14,540.87,3073.54,26155395,99.78,0,0,0.29,541.08,3073.34,26155396,99.84,0,0,0.15,541.05,3073.37,26155397,99.84,0,0,0.2,540.8,3073.61,26155398,99.83,0,0,0.17,540.79,3073.62,26155399,99.69,0,0,0.55,542.12,3072.28,26155400,99.8,0,0,0.35,541.54,3072.87,26155401,99.87,0,0,0.19,541.52,3072.9,26155402,99.85,0,0,0.16,541.5,3072.91,26155403,99.83,0,0,0.15,541.49,3072.91,26155404,96.47,0.02,0.01,77.76,553.27,3063.22,26155405,88.88,0,0,103.94,563.44,3035.49,26155406,95.29,0,0,52.87,555.87,3053,26155407,97.98,0,0,0.19,544.56,3072.62,26155408,99.84,0,0,0.15,544.55,3072.62,26155409,99.73,0,0,0.57,544.65,3072.53,26155410,99.77,0,0,0.36,544.34,3072.85,26155411,99.85,0,0,0.19,542.16,3075.07,26155412,99.85,0,0,0.14,541.6,3075.64,26155413,99.87,0,0,0.15,541.58,3075.66,26155414,99.72,0,0,0.55,542,3075.26,26155415,99.8,0,0,0.32,542.05,3075.22,26155416,99.85,0,0,0.16,542.07,3075.22,26155417,99.86,0,0,0.14,542.06,3075.23,26155418,99.85,0,0,0.14,542.06,3075.23,26155419,99.63,0,0,0.62,542.3,3074.95,26155420,99.73,0,0,0.35,542.05,3075.21,26155421,99.84,0,0,0.14,542.03,3075.23,26155422,99.86,0,0,0.16,542.03,3075.23,26155423,99.85,0,0,0.14,542.01,3075.23,26155424,99.72,0,0,0.57,542.15,3075.09,26155425,99.81,0,0,0.34,542.12,3075.14,26155426,99.85,0,0,0.16,542.09,3075.16,26155427,99.83,0,0,0.18,542.09,3075.16,26155428,99.83,0,0,0.18,542.08,3075.16,26155429,99.71,0,0,0.47,542.47,3074.78,26155430,99.81,0,0,0.51,542.08,3075.18,26155431,99.84,0,0,0.16,542.06,3075.2,26155432,99.86,0,0,0.14,542.05,3075.2,26155433,99.87,0,0,0.14,542.02,3075.23,26155434,99.72,0,0,0.56,542.17,3075.08,26155435,99.82,0,0,0.29,541.8,3075.47,26155436,99.81,0,0,0.14,541.79,3075.47,26155437,99.84,0,0,0.16,541.77,3075.49,26155438,99.84,0,0,0.14,541.75,3075.5,26155439,99.83,0,0,0.16,541.75,3075.51,26155440,99.54,0,0,0.69,541.72,3075.56,26155441,99.85,0,0,0.14,541.45,3075.82,26155442,99.85,0,0,0.14,541.44,3075.83,26155443,99.84,0,0,0.16,541.41,3075.86,26155444,99.85,0,0,0.13,541.41,3075.86,26155445,99.69,0,0,0.71,542.63,3074.66,26155446,99.85,0,0,0.16,542.41,3074.87,26155447,99.87,0,0,0.14,542.41,3074.87,26155448,99.86,0,0,0.14,542.38,3074.9,26155449,99.72,0,0,0.29,542.37,3074.88,26155450,99.68,0,0,0.66,542.58,3074.69,26155451,99.85,0,0,0.15,541.88,3075.39,26155452,99.87,0,0,0.17,541.87,3075.39,26155453,99.86,0,0,0.14,541.87,3075.39,26155454,99.85,0,0,0.14,541.85,3075.4,26155455,99.66,0,0,0.72,542.31,3074.95,26155456,99.86,0,0,0.16,542.09,3075.17,26155457,99.86,0,0,0.21,541.2,3076.06,26155458,99.86,0,0,0.14,541.1,3076.16,26155459,99.87,0,0,0.14,541.09,3076.16,26155460,99.66,0,0,0.69,542.04,3075.23,26155461,99.86,0,0,0.18,541.6,3075.66,26155462,99.86,0,0,0.18,541.56,3075.69,26155463,99.86,0,0,0.14,541.56,3075.7,26155464,99.85,0,0,0.17,541.55,3075.7,26155465,99.61,0,0,0.7,541.15,3076.11,26155466,99.85,0,0,0.16,540.08,3077.17,26155467,99.87,0,0,0.15,540.08,3077.18,26155468,99.87,0,0,0.14,540.04,3077.2,26155469,99.85,0,0,0.15,540.04,3077.2,26155470,99.64,0,0,0.61,541.49,3075.78,26155471,99.87,0,0,0.32,541.53,3075.73,26155472,99.86,0,0,0.17,541.53,3075.73,26155473,99.87,0,0,0.18,541.5,3075.75,26155474,99.9,0,0,0.16,541.49,3075.76,26155475,99.9,0,0,0.32,541.02,3076.24,26155476,99.77,0,0,0.55,541.6,3075.66,26155477,99.92,0,0,0.16,541.29,3075.96,26155478,99.93,0,0,0.18,541.44,3075.82,26155479,99.87,0,0,0.29,541.45,3075.78,26155480,99.88,0,0,0.29,541.94,3075.31,26155481,99.8,0,0,0.58,542.03,3075.21,26155482,99.96,0,0,0.18,541.66,3075.58,26155483,99.96,0,0,0.16,541.65,3075.58,26155484,99.95,0,0,0.17,541.65,3075.58,26155485,99.87,0,0,0.3,541.65,3075.6,26155486,99.8,0,0,0.59,542.35,3074.89,26155487,99.94,0.01,0,0.17,541.61,3075.62,26155488,99.51,0,0,0.27,541.89,3075.34,26155489,99.92,0,0,0.17,541.57,3075.65,26155490,99.9,0,0,0.34,541.82,3075.43,26155491,99.82,0,0,0.54,542.08,3075.16,26155492,99.94,0,0,0.18,541.32,3075.92,26155493,99.95,0,0,0.16,541.31,3075.92,26155494,99.93,0,0,0.21,541.15,3076.08,26155495,99.92,0,0,0.3,541.53,3075.71,26155496,99.8,0,0,0.52,541.9,3075.34,26155497,99.34,0,0,0.25,541.29,3075.95,26155498,99.93,0,0,0.17,541.28,3075.95,26155499,99.95,0,0,0.18,541.28,3075.95,26155500,99.84,0,0,0.32,541.78,3075.46,26155501,99.78,0,0,0.58,542.11,3075.13,26155502,99.94,0,0,0.17,541.74,3075.49,26155503,99.94,0,0,0.18,541.74,3075.49,26155504,99.96,0,0,0.16,541.8,3075.43,26155505,99.86,0,0,0.32,541.72,3075.52,26155506,99.82,0,0,0.41,542.04,3075.19,26155507,99.96,0,0,0.29,541.68,3075.55,26155508,99.96,0,0,0.21,541.68,3075.55,26155509,99.9,0,0,0.29,541.69,3075.51,26155510,99.84,0,0,0.32,541.93,3075.29,26155511,99.78,0,0,0.38,542.6,3074.62,26155512,99.93,0,0,0.38,541.92,3075.29,26155513,99.91,0,0,0.18,541.89,3075.32,26155514,99.94,0,0,0.19,541.89,3075.33,26155515,99.85,0,0,0.36,541.91,3075.33,26155516,99.93,0,0,0.17,541.9,3075.33,26155517,99.78,0,0,0.64,542.41,3074.82,26155518,99.95,0,0,0.2,541.86,3075.36,26155519,99.95,0,0.01,0.25,541.84,3075.4,26155520,99.87,0,0.01,0.35,542.08,3075.17,26155521,99.94,0,0,0.18,542.05,3075.2,26155522,99.78,0,0,0.63,541.84,3075.4,26155523,99.95,0,0,0.19,541.29,3075.95,26155524,99.92,0,0,0.17,541.27,3075.96,26155525,99.9,0,0,0.31,541.65,3075.6,26155526,99.94,0,0,0.18,541.68,3075.56,26155527,99.8,0,0,0.58,542.12,3075.12,26155528,99.93,0,0,0.17,541.86,3075.38,26155529,99.95,0,0,0.17,541.85,3075.38,26155530,99.9,0,0,0.3,541.87,3075.38,26155531,99.94,0,0,0.18,541.87,3075.38,26155532,99.77,0,0,0.56,542.22,3075.02,26155533,99.96,0,0,0.16,541.83,3075.41,26155534,99.95,0,0,0.17,541.82,3075.41,26155535,99.9,0,0,0.32,541.84,3075.41,26155536,99.95,0,0,0.17,541.83,3075.41,26155537,99.82,0,0,0.54,542.19,3075.05,26155538,99.95,0,0,0.17,541.83,3075.41,26155539,99.88,0,0,0.32,541.8,3075.43,26155540,99.9,0,0,0.32,541.81,3075.45,26155541,99.95,0,0,0.16,541.8,3075.46,26155542,99.8,0,0,0.42,542.16,3075.09,26155543,99.93,0,0,0.3,541.79,3075.46,26155544,99.95,0,0,0.17,541.79,3075.46,26155545,99.9,0,0,0.32,541.54,3075.72,26155546,99.96,0,0,0.18,541.52,3075.73,26155547,99.79,0,0,0.36,542.23,3075.02,26155548,99.71,0,0,0.38,542,3075.24,26155549,99.93,0,0,0.15,542,3075.24,26155550,99.88,0,0,0.3,542.01,3075.24,26155551,99.96,0,0,0.14,542.02,3075.24,26155552,99.93,0,0,0.14,542.16,3075.09,26155553,99.78,0,0,0.55,542.5,3074.74,26155554,99.94,0,0,0.16,541.88,3075.36,26155555,99.86,0,0,0.3,541.92,3075.34,26155556,99.95,0,0,0.14,541.92,3075.33,26155557,99.93,0,0,0.14,541.92,3075.33,26155558,99.78,0,0,0.58,542.24,3075,26155559,99.94,0,0,0.15,541.88,3075.36,26155560,99.84,0,0,0.3,541.9,3075.36,26155561,99.94,0,0,0.15,541.89,3075.37,26155562,99.94,0,0,0.15,541.85,3075.39,26155563,99.8,0,0,0.63,542.38,3074.86,26155564,99.94,0,0,0.18,542.09,3075.15,26155565,99.87,0,0,0.33,542.1,3075.16,26155566,99.95,0,0,0.19,542.07,3075.18,26155567,99.94,0,0,0.18,542.07,3075.18,26155568,99.82,0,0,0.58,542.94,3074.3,26155569,99.89,0,0,0.29,541.53,3075.68,26155570,99.87,0,0,0.28,542.03,3075.2,26155571,99.9,0,0,0.14,542.03,3075.2,26155572,99.94,0,0,0.16,542.03,3075.2,26155573,99.8,0,0,0.41,542.48,3074.73,26155574,99.95,0,0,0.3,541.52,3075.69,26155575,99.86,0,0,0.28,541.92,3075.31,26155576,99.95,0,0,0.14,541.77,3075.45,26155577,99.96,0,0,0.18,541.99,3075.23,26155578,99.82,0,0,0.5,542.53,3074.68,26155579,99.96,0,0,0.19,541.74,3075.47,26155580,99.92,0,0,0.28,542,3075.23,26155581,99.95,0,0,0.15,542,3075.23,26155582,99.95,0,0,0.14,541.99,3075.23,26155583,99.81,0,0,0.32,542.47,3074.74,26155584,99.94,0,0,0.37,541.95,3075.26,26155585,99.89,0,0,0.28,541.97,3075.26,26155586,99.94,0.04,0.97,0.32,542.05,3075.17,26155587,99.95,0,0,0.15,542.05,3075.16,26155588,99.91,0,0,0.14,542.04,3075.16,26155589,99.77,0,0.01,0.59,542.41,3074.79,26155590,99.89,0,0,0.32,542.28,3074.94,26155591,99.96,0,0,0.16,542.26,3074.95,26155592,99.95,0,0,0.14,542.26,3074.95,26155593,99.96,0,0,0.18,542.26,3074.95,26155594,99.81,0,0,0.55,542.39,3074.81,26155595,99.91,0,0,0.3,542.02,3075.19,26155596,99.95,0,0,0.14,542.01,3075.21,26155597,99.93,0,0,0.14,541.98,3075.23,26155598,99.95,0,0,0.15,541.98,3075.23,26155599,99.76,0,0,0.72,541.86,3075.32,26155600,99.87,0,0,0.3,542.47,3074.73,26155601,99.94,0,0,0.15,542.48,3074.72,26155602,99.93,0,0,0.16,542.47,3074.72,26155603,99.95,0,0,0.14,542.46,3074.72,26155604,99.81,0,0,0.59,543.11,3074.07,26155605,99.88,0,0,0.29,542.45,3074.75,26155606,99.93,0,0,0.14,542.44,3074.75,26155607,99.97,0,0,0.16,542.14,3075.05,26155608,99.83,0,0,0.14,541.45,3075.73,26155609,99.8,0,0,0.55,542.09,3075.09,26155610,99.87,0,0,0.37,541.68,3075.52,26155611,99.95,0,0,0.18,541.64,3075.55,26155612,99.95,0,0,0.18,541.64,3075.55,26155613,99.96,0,0,0.18,541.63,3075.55,26155614,99.77,0,0,0.63,541.85,3075.33,26155615,99.89,0,0,0.36,541.4,3075.79,26155616,99.93,0,0,0.16,541.4,3075.79,26155617,99.93,0,0,0.14,541.36,3075.82,26155618,99.96,0,0,0.14,541.36,3075.82,26155619,99.8,0,0,0.57,541.75,3075.43,26155620,99.85,0,0,0.3,541.85,3075.34,26155621,99.95,0,0,0.18,541.86,3075.33,26155622,99.97,0,0,0.14,541.85,3075.33,26155623,99.93,0,0,0.14,541.85,3075.33,26155624,99.81,0,0,0.4,542.19,3074.98,26155625,99.89,0,0,0.46,541.62,3075.57,26155626,99.93,0,0,0.17,541.59,3075.6,26155627,99.93,0,0,0.14,541.58,3075.61,26155628,99.93,0,0,0.15,541.57,3075.61,26155629,99.9,0,0,0.28,541.81,3075.37,26155630,99.77,0,0,0.7,542.55,3074.64,26155631,99.95,0,0,0.14,541.82,3075.36,26155632,99.93,0,0,0.16,541.81,3075.36,26155633,99.95,0,0,0.17,541.81,3075.36,26155634,99.9,0,0,0.14,541.58,3075.63,26155635,99.74,0,0,0.68,541.93,3075.31,26155636,99.93,0,0,0.16,541.55,3075.69,26155637,99.95,0,0,0.19,541.55,3075.69,26155638,99.94,0,0,0.16,541.54,3075.69,26155639,99.95,0,0,0.13,541.52,3075.7,26155640,99.78,0,0,0.68,542.13,3075.11,26155641,99.92,0,0,0.14,541.76,3075.47,26155642,99.94,0,0,0.16,541.76,3075.47,26155643,99.97,0,0,0.14,541.76,3075.48,26155644,99.93,0,0,0.15,541.76,3075.49,26155645,99.78,0,0,0.68,541.78,3075.48,26155646,99.95,0,0,0.15,541.52,3075.73,26155647,99.94,0,0,0.17,541.52,3075.73,26155648,99.95,0,0,0.14,541.49,3075.76,26155649,99.95,0,0,0.15,541.48,3075.77,26155650,99.75,0,0,0.71,541.85,3075.41,26155651,99.95,0,0,0.18,541.49,3075.77,26155652,99.95,0,0,0.18,541.48,3075.77,26155653,99.95,0,0,0.16,541.48,3075.77,26155654,99.95,0,0,0.16,541.47,3075.77,26155655,99.73,0,0,0.69,542.46,3074.8,26155656,99.93,0,0,0.13,541.64,3075.61,26155657,99.93,0,0,0.16,541.64,3075.61,26155658,99.94,0,0,0.19,541.63,3075.61,26155659,99.87,0,0,0.34,541.88,3075.34,26155660,99.82,0,0,0.27,541.08,3076.15,26155661,99.87,0,0,0.54,542.21,3075.02,26155662,99.93,0,0,0.14,541.85,3075.37,26155663,99.94,0,0,0.14,541.85,3075.37,26155664,99.94,0,0,0.14,541.84,3075.37,26155665,99.82,0,0,0.28,540.94,3076.29,26155666,99.81,0,0,0.58,541.64,3075.59,26155667,99.95,0,0,0.16,541.36,3075.86,26155668,98.86,0,0,0.14,541.35,3075.87,26155669,99.93,0,0,0.16,541.32,3075.89,26155670,99.88,0,0,0.32,541.34,3075.89,26155671,99.83,0,0,0.57,541.89,3075.34,26155672,99.95,0,0,0.14,541.57,3075.65,26155673,99.95,0,0,0.15,541.54,3075.68,26155674,99.93,0,0,0.15,541.29,3075.93,26155675,99.86,0,0,0.32,541.3,3075.93,26155676,99.81,0.03,0.95,0.61,542.11,3075.11,26155677,99.88,0,0,0.16,541.97,3075.25,26155678,99.96,0,0,0.15,542.01,3075.2,26155679,99.96,0,0,0.14,542.11,3075.09,26155680,99.89,0,0,0.27,541.89,3075.33,26155681,99.81,0.02,0.94,0.55,542.66,3074.55,26155682,99.96,0,0,0.24,542.03,3075.17,26155683,99.95,0,0,0.14,542.01,3075.19,26155684,99.94,0,0,0.15,542.01,3075.19,26155685,99.92,0,0,0.29,542.02,3075.19,26155686,99.82,0,0,0.49,542.59,3074.62,26155687,99.94,0,0,0.21,541.98,3075.22,26155688,99.93,0,0,0.15,541.98,3075.22,26155689,99.85,0,0,0.29,541.73,3075.44,26155690,99.89,0,0,0.3,541.73,3075.46,26155691,99.82,0,0,0.39,542.27,3074.91,26155692,99.97,0,0,0.29,542.21,3074.96,26155693,99.95,0,0,0.16,542.21,3074.96,26155694,99.94,0,0,0.14,542.19,3074.98,26155695,99.87,0,0,0.28,541.46,3075.72,26155696,99.94,0,0,0.18,541.45,3075.73,26155697,99.8,0,0,0.56,542.05,3075.13,26155698,99.96,0,0,0.14,541.69,3075.49,26155699,99.95,0,0,0.15,541.68,3075.49,26155700,99.9,0,0,0.28,541.71,3075.48,26155701,99.95,0,0,0.13,541.69,3075.49,26155702,99.76,0,0,0.55,541.56,3075.62,26155703,99.93,0,0,0.14,541.17,3076,26155704,99.95,0,0,0.14,541.16,3076.01,26155705,99.85,0,0,0.28,541.67,3075.52,26155706,99.95,0,0,0.16,541.66,3075.52,26155707,99.8,0,0,0.54,542.1,3075.08,26155708,99.9,0,0,0.14,541.84,3075.33,26155709,99.91,0,0,0.15,541.84,3075.33,26155710,99.81,0,0,0.28,540.92,3076.26,26155711,99.95,0,0,0.14,540.87,3076.32,26155712,99.8,0,0,0.57,542.01,3075.17,26155713,99.95,0,0,0.15,542.09,3075.09,26155714,99.91,0,0,0.14,542.06,3075.11,26155715,99.89,0,0,0.28,542.07,3075.11,26155716,99.96,0,0,0.16,542.06,3075.12,26155717,99.78,0,0,0.55,542.76,3074.42,26155718,92.83,6.03,0.14,202.55,561.33,3054.46,26155719,99.37,1.4,0.03,82.95,555.12,3057.97,26155720,99.89,0,0.02,0.32,555.93,3057.22,26155721,99.95,0,0,0.18,555.93,3057.23,26155722,99.78,0,0,0.43,556.19,3056.62,26155723,99.93,0,0,0.39,555.55,3057.08,26155724,99.94,0.04,1.93,0.29,553.62,3060.09,26155725,99.88,0.01,0.24,0.32,553.75,3059.97,26155726,99.93,0,0,0.16,553.72,3060,26155727,99.81,0,0,0.55,554.05,3059.68,26155728,99.93,0,0,0.13,553.71,3060.02,26155729,99.93,0,0,0.16,553.81,3059.94,26155730,99.87,0,0,0.28,553.64,3060.12,26155731,99.92,0,0,0.14,553.61,3060.15,26155732,99.8,0,0,0.42,553.98,3059.77,26155733,99.93,0,0,0.32,553.82,3059.93,26155734,99.9,0,0,0.16,553.57,3060.17,26155735,99.88,0,0,0.29,553.55,3060.21,26155736,99.92,0,0,0.17,553.53,3060.22,26155737,99.95,0,0,0.15,553.51,3060.24,26155738,99.78,0,0,0.59,554.44,3059.31,26155739,99.95,0,0,0.14,553.71,3060.03,26155740,99.85,0,0,0.29,553.97,3059.79,26155741,99.9,0,0,0.14,553.94,3059.81,26155742,99.93,0,0,0.17,554.06,3059.69,26155743,99.81,0,0,0.54,554.56,3059.18,26155744,99.92,0,0,0.16,553.83,3059.91,26155745,99.85,0,0,0.34,553.83,3059.92,26155746,99.93,0,0,0.13,553.8,3059.95,26155747,99.94,0,0,0.14,553.79,3059.95,26155748,99.78,0,0,0.6,554.49,3059.25,26155749,99.85,0,0,0.29,553.75,3059.95,26155750,99.83,0.06,2.4,0.59,554.06,3059.66,26155751,99.9,0,0,0.14,554.05,3059.65,26155752,99.93,0,0,0.14,554.04,3059.66,26155753,99.8,0,0,0.43,554.45,3059.24,26155754,99.9,0,0,0.34,553.99,3059.7,26155755,99.84,0,0,0.32,553.8,3059.91,26155756,99.92,0,0,0.14,553.74,3059.97,26155757,99.95,0,0,0.19,553.71,3059.99,26155758,99.77,0,0.01,0.43,553.54,3060.15,26155759,99.93,0,0,0.29,553.22,3060.47,26155760,99.85,0,0,0.29,553.32,3060.38,26155761,99.91,0,0,0.16,553.31,3060.39,26155762,99.91,0,0,0.14,553.29,3060.41,26155763,99.79,0,0,0.41,553.6,3060.09,26155764,99.93,0,0,0.29,553.02,3060.67,26155765,99.83,0,0,0.28,553.49,3060.22,26155766,99.94,0,0,0.14,553.49,3060.21,26155767,99.91,0.01,0.1,0.23,553.52,3060.18,26155768,99.94,0,0,0.2,553.54,3060.14,26155769,96.16,0.02,0.01,77.95,564.35,3051.49,26155770,99.86,0,0,0.3,555.51,3058.36,26155771,99.87,0,0,0.16,555.49,3058.38,26155772,99.92,0,0,0.14,555.48,3058.38,26155773,99.92,0,0,0.16,555.45,3058.41,26155774,99.78,0,0,0.58,553.83,3060.07,26155775,99.85,0,0,0.29,553.25,3060.67,26155776,99.91,0,0,0.14,553.25,3060.67,26155777,99.91,0,0,0.16,553.22,3060.7,26155778,99.91,0,0,0.15,553.21,3060.7,26155779,99.67,0,0,0.68,553.87,3060.01,26155780,99.85,0,0,0.28,553.19,3060.71,26155781,99.93,0,0,0.14,553.18,3060.72,26155782,99.92,0,0,0.18,553.21,3060.68,26155783,99.93,0,0,0.14,553.3,3060.59,26155784,99.8,0,0,0.43,553.85,3060.03,26155785,99.86,0,0,0.42,553.3,3060.6,26155786,99.9,0,0,0.15,553.27,3060.62,26155787,99.92,0,0,0.17,553.27,3060.62,26155788,99.91,0,0,0.14,553.25,3060.64,26155789,97.21,0,0,0.53,553.66,3060.22,26155790,99.91,0,0,0.28,553.25,3060.65,26155791,99.93,0,0,0.14,553.21,3060.68,26155792,99.94,0,0,0.16,553.21,3060.68,26155793,99.93,0,0,0.17,553.18,3060.71,26155794,99.78,0,0,0.45,553.52,3060.36,26155795,99.86,0,0,0.41,551.97,3061.93,26155796,99.95,0,0,0.15,551.92,3061.98,26155797,99.93,0,0,0.18,552.04,3061.85,26155798,99.91,0,0,0.14,552.1,3061.79,26155799,99.92,0,0,0.14,552.08,3061.8,26155800,99.67,0,0,0.71,553.87,3060.03,26155801,99.94,0,0,0.17,553.55,3060.35,26155802,99.94,0,0,0.16,553.51,3060.38,26155803,99.92,0,0,0.14,553.51,3060.38,26155804,99.94,0,0,0.14,553.48,3060.4,26155805,99.71,0,0,0.69,553.61,3060.29,26155806,99.93,0,0,0.16,553.22,3060.68,26155807,99.95,0,0,0.14,553.2,3060.69,26155808,99.91,0,0,0.15,553.17,3060.71,26155809,99.88,0,0,0.4,553.43,3060.43,26155810,99.75,0,0,0.69,553.85,3060.02,26155811,99.92,0,0,0.17,553.58,3060.3,26155812,99.93,0,0,0.17,553.56,3060.31,26155813,99.93,0,0,0.17,553.54,3060.33,26155814,99.94,0,0,0.15,553.52,3060.34,26155815,99.73,0,0,0.77,554.08,3059.79,26155816,99.94,0,0,0.17,553.5,3060.38,26155817,99.93,0,0,0.21,553.24,3060.63,26155818,99.93,0,0,0.17,553.22,3060.64,26155819,99.93,0,0,0.2,553.19,3060.67,26155820,99.76,0,0,0.72,553.86,3060.01,26155821,99.93,0,0,0.18,553.17,3060.7,26155822,99.91,0,0,0.18,553.16,3060.7,26155823,99.92,0,0,0.16,553.26,3060.6,26155824,99.92,0,0,0.17,553.31,3060.55,26155825,99.74,0,0.01,0.75,554.16,3059.71,26155826,99.9,0,0,0.2,553.02,3060.86,26155827,99.94,0,0,0.19,553,3060.88,26155828,99.93,0,0,0.16,552.98,3060.9,26155829,99.93,0,0,0.16,552.97,3060.9,26155830,99.75,0,0,0.56,553.83,3060.06,26155831,99.89,0,0,0.31,553.69,3060.19,26155832,99.91,0,0,0.15,553.66,3060.22,26155833,99.91,0,0,0.17,553.65,3060.22,26155834,99.89,0,0,0.15,553.65,3060.22,26155835,99.69,0,0,0.54,553.74,3060.15,26155836,99.88,0,0,0.27,553.8,3060.09,26155837,99.89,0,0,0.17,553.78,3060.1,26155838,99.88,0,0,0.14,553.75,3060.14,26155839,99.81,0,0,0.29,553.5,3060.37,26155840,99.8,0,0,0.31,553.5,3060.38,26155841,99.76,0,0,0.54,554.05,3059.83,26155842,99.88,0,0,0.15,553.72,3060.16,26155843,99.92,0,0,0.15,553.69,3060.18,26155844,99.89,0,0,0.14,553.68,3060.19,26155845,99.88,0,0,0.32,553.67,3060.21,26155846,99.74,0,0,0.55,554.11,3059.77,26155847,99.85,0,0,0.15,553.39,3060.49,26155848,99.9,0,0,0.16,553.44,3060.43,26155849,99.4,0,0,0.14,553.56,3060.31,26155850,99.85,0,0,0.3,553.79,3060.1,26155851,99.7,0,0,0.54,554.13,3059.75,26155852,99.88,0,0,0.14,553.75,3060.13,26155853,99.87,0,0,0.16,553.74,3060.13,26155854,99.88,0,0,0.19,553.53,3060.34,26155855,99.83,0,0,0.29,553.48,3060.41,26155856,99.75,0,0,0.49,553.93,3059.95,26155857,99.87,0,0,0.19,553.7,3060.18,26155858,99.9,0,0,0.16,553.68,3060.19,26155859,99.92,0,0,0.14,553.67,3060.2,26155860,99.83,0,0,0.29,552.46,3061.43,26155861,99.73,0,0,0.43,552.97,3060.91,26155862,99.83,0,0,0.32,553.56,3060.33,26155863,99.84,0.01,0.01,0.16,553.5,3060.39,26155864,98.97,0.01,0.01,0.55,553.43,3060.45,26155865,99.77,0,0.01,0.31,553.18,3060.71,26155866,99.73,0,0,0.56,553.77,3060.12,26155867,99.82,0,0,0.14,553.77,3060.11,26155868,99.85,0,0,0.15,553.75,3060.13,26155869,99.79,0,0,0.3,561.1,3052.75,26155870,99.79,0,0,0.3,561.59,3052.28,26155871,99.71,0,0,0.3,561.94,3051.93,26155872,99.86,0,0,0.4,561.57,3052.29,26155873,99.86,0,0,0.15,561.54,3052.32,26155874,99.8,0,0,0.15,561.54,3052.32,26155875,99.76,0,0,0.3,562.01,3051.86,26155876,99.83,0,0,0.16,562,3051.86,26155877,99.69,0,0,0.64,562.3,3051.56,26155878,99.82,0,0,0.14,562.04,3051.82,26155879,99.85,0,0,0.14,562.15,3051.7,26155880,99.83,0,0,0.32,561.93,3051.94,26155881,99.84,0,0,0.15,561.89,3051.98,26155882,99.72,0,0,0.54,562.35,3051.51,26155883,99.8,0,0,0.19,561.82,3052.03,26155884,99.85,0,0,0.14,561.81,3052.04,26155885,99.8,0,0,0.3,561.33,3052.54,26155886,99.85,0,0,0.14,561.3,3052.56,26155887,99.73,0,0,0.5,561.65,3052.21,26155888,99.84,0,0,0.2,561.26,3052.59,26155889,99.69,0,0,0.15,561.26,3052.59,26155890,99.81,0,0,0.3,561.57,3052.31,26155891,99.87,0,0,0.16,561.68,3052.19,26155892,99.68,0,0,0.54,562.13,3051.74,26155893,99.86,0,0,0.16,561.89,3051.98,26155894,99.85,0,0,0.16,561.88,3051.98,26155895,99.8,0,0,0.33,561.89,3051.98,26155896,99.86,0,0,0.13,561.86,3052.01,26155897,99.69,0,0,0.56,562.18,3051.68,26155898,99.86,0,0,0.19,561.82,3052.04,26155899,99.79,0,0,0.31,561.78,3052.05,26155900,99.78,0,0,0.29,561.8,3052.05,26155901,99.86,0,0,0.15,561.76,3052.09,26155902,99.72,0,0,0.51,562.16,3051.69,26155903,99.84,0,0,0.23,562.05,3051.79,26155904,99.86,0,0,0.2,561.99,3051.85,26155905,99.8,0,0,0.32,560.94,3052.91,26155906,99.85,0,0,0.15,560.9,3052.95,26155907,99.7,0,0,0.42,561.27,3052.58,26155908,99.85,0,0,0.27,561.12,3052.72,26155909,99.86,0,0,0.15,561.1,3052.73,26155910,96.37,0,0,0.33,561.11,3052.75,26155911,99.87,0,0,0.14,561.08,3052.78,26155912,99.83,0,0,0.16,561.08,3052.78,26155913,99.69,0,0.01,0.55,560.17,3053.68,26155914,99.84,0,0,0.21,559.56,3054.28,26155915,99.8,0.01,0.3,0.35,560.61,3053.25,26155916,99.85,0.01,0.29,0.26,560.66,3053.2,26155917,99.85,0,0,0.16,560.61,3053.24,26155918,99.68,0,0,0.54,561.48,3052.37,26155919,99.83,0,0,0.15,561.06,3052.78,26155920,99.75,0,0,0.34,560.36,3053.49,26155921,99.84,0,0,0.17,560.28,3053.57,26155922,99.85,0,0,0.14,560.05,3053.79,26155923,99.67,0,0,0.55,561.07,3052.77,26155924,99.85,0,0,0.14,560.99,3052.84,26155925,99.79,0,0,0.31,561.25,3052.6,26155926,99.86,0,0,0.16,561.24,3052.6,26155927,99.88,0,0,0.15,561.21,3052.63,26155928,99.7,0,0,0.5,561.56,3052.28,26155929,99.76,0,0,0.34,561.63,3052.18,26155930,99.78,0,0,0.29,561.41,3052.41,26155931,99.85,0,0,0.14,561.39,3052.45,26155932,99.85,0,0,0.16,561.37,3052.47,26155933,99.7,0,0,0.49,561.63,3052.2,26155934,99.84,0,0,0.21,561.08,3052.77,26155935,99.76,0,0,0.31,561.34,3052.53,26155936,99.85,0,0,0.17,561.31,3052.56,26155937,99.85,0,0,0.18,561.54,3052.32,26155938,99.72,0,0,0.56,561.78,3052.08,26155939,99.87,0,0,0.14,561.02,3052.84,26155940,99.81,0,0,0.3,561.25,3052.63,26155941,99.85,0,0,0.15,561.24,3052.63,26155942,99.87,0,0,0.16,561.33,3052.53,26155943,99.74,0,0,0.3,562.03,3051.83,26155944,99.79,0,0,0.39,560.38,3053.48,26155945,99.76,0,0,0.32,560.64,3053.24,26155946,99.87,0,0,0.14,560.63,3053.24,26155947,99.86,0,0,0.13,560.6,3053.27,26155948,99.85,0,0,0.16,560.6,3053.27,26155949,99.7,0,0,0.59,561.11,3052.75,26155950,99.77,0,0,0.32,560.82,3053.06,26155951,99.84,0,0,0.14,560.81,3053.07,26155952,99.86,0,0,0.16,560.78,3053.09,26155953,99.88,0,0,0.14,560.77,3053.09,26155954,99.69,0,0,0.55,561.59,3052.27,26155955,99.77,0,0.01,0.33,561.5,3052.37,26155956,99.85,0,0,0.19,561.65,3052.22,26155957,99.85,0,0,0.14,561.61,3052.25,26155958,99.85,0,0,0.15,561.59,3052.27,26155959,99.63,0,0,0.74,561.83,3052,26155960,99.8,0,0,0.31,561.59,3052.27,26155961,99.85,0,0,0.17,561.56,3052.29,26155962,99.87,0,0,0.14,561.54,3052.3,26155963,99.85,0,0,0.15,561.54,3052.3,26155964,99.73,0,0,0.48,561.86,3051.99,26155965,99.81,0,0,0.36,561.29,3052.58,26155966,99.86,0,0,0.16,561.26,3052.61,26155967,99.87,0,0,0.16,561.24,3052.63,26155968,99.86,0,0,0.14,561.24,3052.63,26155969,99.73,0,0,0.52,561.64,3052.22,26155970,99.79,0.01,0.01,0.41,561.56,3052.31,26155971,99.88,0,0,0.16,561.55,3052.32,26155972,99.86,0,0,0.15,561.51,3052.35,26155973,99.83,0,0,0.14,561.5,3052.35,26155974,99.7,0,0,0.72,561.89,3051.96,26155975,99.78,0,0,0.3,561.01,3052.86,26155976,99.84,0,0,0.18,560.97,3052.9,26155977,99.84,0,0,0.14,561.07,3052.78,26155978,99.85,0,0,0.16,561.12,3052.73,26155979,99.85,0,0,0.15,561.1,3052.75,26155980,99.62,0,0,0.69,561.95,3051.92,26155981,99.85,0,0,0.15,561.58,3052.29,26155982,99.85,0,0,0.14,561.57,3052.29,26155983,99.85,0,0,0.16,561.54,3052.32,26155984,99.85,0,0,0.16,561.52,3052.33,26155985,99.66,0,0,0.75,562.07,3051.79,26155986,99.87,0,0,0.16,561.74,3052.12,26155987,99.85,0,0,0.13,561.72,3052.13,26155988,99.85,0,0,0.16,561.71,3052.14,26155989,99.79,0,0,0.29,561.69,3052.14,26155990,99.68,0,0,0.68,561.87,3051.97,26155991,99.86,0,0,0.14,561.62,3052.22,26155992,99.86,0,0,0.19,561.6,3052.24,26155993,99.84,0,0,0.18,561.59,3052.24,26155994,99.84,0,0,0.16,561.56,3052.28,26155995,99.69,0,0,0.71,562.26,3051.61,26155996,99.85,0,0,0.16,561.55,3052.32,26155997,99.82,0,0,0.18,561.53,3052.33,26155998,99.84,0,0,0.14,561.51,3052.35,26155999,99.82,0,0,0.16,561.48,3052.37,26156000,99.7,0,0,0.92,562.1,3051.76,26156001,99.86,0,0,0.16,561.47,3052.38,26156002,99.85,0,0,0.14,561.44,3052.41,26156003,99.87,0,0,0.15,561.47,3052.38,26156004,99.84,0,0,0.15,561.6,3052.24,26156005,99.65,0,0,0.61,561.88,3051.98,26156006,99.86,0,0,0.35,561.84,3052.01,26156007,99.83,0,0,0.16,561.81,3052.04,26156008,99.84,0,0,0.14,561.81,3052.04,26156009,99.85,0,0,0.16,561.78,3052.07,26156010,99.64,0,0,0.54,562.32,3051.54,26156011,99.83,0,0,0.27,561.53,3052.32,26156012,99.85,0,0,0.14,561.5,3052.35,26156013,99.83,0,0,0.16,561.49,3052.35,26156014,99.85,0,0,0.14,561.46,3052.38,26156015,99.67,0,0,0.77,561.66,3052.19,26156016,99.85,0,0,0.16,561.7,3052.16,26156017,99.84,0,0,0.15,561.69,3052.16,26156018,99.85,0,0,0.17,561.83,3052.01,26156019,99.7,0,0,0.28,561.87,3051.95,26156020,99.81,0,0,0.3,562.1,3051.74,26156021,99.72,0,0,0.57,562.44,3051.4,26156022,99.85,0,0,0.16,562.07,3051.76,26156023,99.85,0,0,0.14,562.05,3051.78,26156024,99.85,0,0,0.15,562.03,3051.79,26156025,99.73,0,0,0.32,561.56,3052.28,26156026,99.72,0,0,0.59,562.21,3051.62,26156027,99.87,0,0,0.17,561.74,3052.08,26156028,99.86,0,0,0.15,561.73,3052.09,26156029,99.87,0,0,0.14,561.72,3052.09,26156030,99.83,0,0,0.41,561.71,3052.12,26156031,99.75,0,0,0.55,561.91,3051.94,26156032,99.91,0,0,0.14,561.53,3052.31,26156033,99.92,0,0,0.16,561.61,3052.22,26156034,99.9,0,0,0.16,561.53,3052.3,26156035,99.84,0,0,0.31,562.07,3051.78,26156036,99.76,0,0,0.54,562.28,3051.57,26156037,99.95,0,0,0.16,561.8,3052.04,26156038,99.94,0,0,0.17,561.79,3052.05,26156039,99.92,0,0,0.14,561.76,3052.07,26156040,99.9,0,0,0.32,561.78,3052.07,26156041,99.77,0,0,0.59,561.62,3052.22,26156042,99.92,0,0,0.16,560.76,3053.09,26156043,99.88,0.02,0.4,0.22,560.76,3053.08,26156044,99.91,0,0,0.17,560.69,3053.14,26156045,99.87,0,0,0.38,561.54,3052.3,26156046,99.78,0,0,0.41,562.44,3051.39,26156047,99.93,0,0,0.26,561.8,3052.02,26156048,99.95,0,0,0.16,561.78,3052.04,26156049,99.85,0.01,0.1,0.32,561.97,3051.82,26156050,99.88,0,0,0.34,561.91,3051.9,26156051,99.78,0,0,0.41,562.45,3051.35,26156052,99.94,0,0,0.28,562.09,3051.72,26156053,99.94,0,0,0.14,562.05,3051.75,26156054,99.93,0,0,0.15,562.05,3051.76,26156055,99.87,0,0,0.31,561.09,3052.75,26156056,99.78,0,0,0.4,561.4,3052.42,26156057,99.86,0.06,1.93,0.54,561.82,3051.84,26156058,99.93,0,0.01,0.19,561.96,3051.53,26156059,99.94,0,0,0.15,561.89,3051.57,26156060,99.86,0,0,0.31,563.85,3049.64,26156061,99.9,0,0,0.14,563.98,3049.51,26156062,99.78,0,0,0.57,564.06,3049.42,26156063,99.9,0,0,0.14,563.26,3050.22,26156064,99.92,0,0,0.16,563.25,3050.22,26156065,99.85,0,0,0.32,563.98,3049.51,26156066,99.92,0,0,0.14,563.97,3049.52,26156067,99.77,0,0,0.57,563.47,3050.01,26156068,99.92,0,0,0.17,562.45,3051.02,26156069,99.96,0,0,0.14,562.45,3051.02,26156070,99.86,0,0,0.29,563.41,3050.08,26156071,99.87,0.02,0.4,0.21,563.44,3050.04,26156072,99.8,0,0,0.6,564.31,3049.16,26156073,99.91,0,0.01,0.18,563.93,3049.54,26156074,99.91,0.01,0.1,0.2,563.91,3049.55,26156075,99.83,0,0,0.36,563.49,3049.98,26156076,99.93,0,0,0.15,563.5,3049.98,26156077,99.79,0,0,0.57,563.87,3049.6,26156078,99.91,0,0,0.14,563.22,3050.25,26156079,99.81,0,0,0.32,563.92,3049.52,26156080,99.84,0,0,0.34,563.69,3049.77,26156081,99.93,0,0,0.19,563.68,3049.78,26156082,99.78,0,0,0.43,564.06,3049.39,26156083,99.95,0,0,0.29,563.88,3049.56,26156084,99.93,0,0,0.14,563.86,3049.58,26156085,99.86,0,0,0.39,563.86,3049.59,26156086,99.94,0,0,0.18,563.85,3049.6,26156087,99.78,0,0,0.42,564.19,3049.26,26156088,99.95,0,0,0.3,563.82,3049.63,26156089,99.93,0,0,0.16,564,3049.44,26156090,99.88,0,0,0.3,564.26,3049.2,26156091,99.77,0,0,0.19,564.24,3049.21,26156092,99.78,0,0,0.57,564.49,3048.96,26156093,99.94,0,0,0.16,563.46,3049.98,26156094,99.93,0,0,0.21,563.44,3050,26156095,99.89,0,0,0.36,563.22,3050.24,26156096,99.91,0,0,0.18,563.19,3050.26,26156097,99.93,0,0,0.17,563.18,3050.27,26156098,99.79,0,0,0.56,563.96,3049.48,26156099,99.92,0,0,0.16,563.63,3049.81,26156100,99.84,0,0,0.32,563.62,3049.84,26156101,99.91,0,0,0.2,563.62,3049.83,26156102,99.94,0,0,0.17,563.76,3049.68,26156103,99.79,0,0,0.57,564.29,3049.15,26156104,99.94,0,0,0.14,563.97,3049.47,26156105,99.84,0.01,0.09,0.34,564.22,3049.23,26156106,99.9,0,0.01,0.21,564.12,3049.33,26156107,99.93,0,0,0.17,564.09,3049.35,26156108,99.79,0,0,0.54,564.44,3049,26156109,99.81,0.01,0.3,0.34,564.37,3049.03,26156110,99.88,0,0,0.37,564.21,3049.22,26156111,99.92,0,0,0.17,564.18,3049.24,26156112,99.92,0,0,0.17,564.16,3049.25,26156113,99.77,0,0,0.59,564.34,3049.07,26156114,99.9,0.01,0.2,0.18,563.89,3049.55,26156115,99.79,0.02,0.7,0.41,564.18,3049.26,26156116,99.93,0,0,0.2,564.21,3049.22,26156117,99.93,0,0,0.2,564.18,3049.25,26156118,99.78,0,0,0.43,564.81,3048.62,26156119,99.94,0,0,0.29,564.38,3049.04,26156120,99.88,0,0,0.28,564.16,3049.28,26156121,99.88,0,0,0.14,564.12,3049.32,26156122,99.52,0,0,0.56,564.32,3049.11,26156123,99.79,0,0,1,564.63,3048.8,26156124,99.92,0,0,0.14,564.07,3049.35,26156125,99.88,0,0,0.34,564.3,3049.13,26156126,99.93,0,0,0.14,564.3,3049.13,26156127,99.93,0,0,0.16,564.47,3048.96,26156128,99.77,0,0,0.4,564.8,3048.64,26156129,99.93,0,0,0.29,564.44,3048.99,26156130,99.83,0.01,0.1,0.35,564.55,3048.9,26156131,99.92,0,0,0.15,564.33,3049.12,26156132,99.92,0,0,0.13,564.32,3049.12,26156133,98.25,0.02,0.01,0.31,568.83,3044.91,26156134,97.78,0,0,77.9,564.44,3050.7,26156135,99.9,0,0,0.35,554.99,3058.86,26156136,99.95,0,0,0.13,555,3058.86,26156137,99.94,0,0,0.14,554.99,3058.86,26156138,99.94,0,0,0.18,554.99,3058.86,26156139,99.72,0,0,0.75,553.69,3060.17,26156140,99.9,0,0,0.34,552.81,3061.09,26156141,99.93,0,0,0.14,552.79,3061.11,26156142,99.95,0,0,0.16,552.78,3061.12,26156143,99.93,0,0,0.14,552.75,3061.14,26156144,99.81,0,0,0.57,553.11,3060.79,26156145,99.87,0,0,0.32,552.77,3061.16,26156146,99.95,0,0,0.13,552.76,3061.16,26156147,99.93,0,0,0.16,552.76,3061.16,26156148,99.95,0,0,0.14,552.85,3061.06,26156149,99.78,0,0,0.55,553.3,3060.61,26156150,99.88,0,0,0.3,553.2,3060.73,26156151,97.69,0,0,0.14,553.2,3060.72,26156152,99.94,0,0,0.16,553.19,3060.72,26156153,99.93,0,0,0.15,553.19,3060.72,26156154,99.75,0,0,0.53,553.41,3060.5,26156155,99.9,0,0,0.37,552.45,3061.48,26156156,99.95,0,0,0.13,552.43,3061.49,26156157,99.95,0,0,0.14,552.42,3061.49,26156158,99.95,0,0,0.16,552.42,3061.49,26156159,99.81,0,0,0.61,553.11,3060.79,26156160,99.82,0,0,0.31,552.19,3061.74,26156161,99.93,0,0,0.15,552.16,3061.77,26156162,99.95,0,0,0.17,552.15,3061.77,26156163,99.94,0,0,0.16,552.13,3061.79,26156164,99.81,0,0,0.49,552.78,3061.13,26156165,99.91,0,0,0.39,553.11,3060.82,26156166,99.93,0,0,0.15,553.08,3060.85,26156167,99.94,0,0,0.15,553.07,3060.85,26156168,99.94,0,0,0.16,553.05,3060.87,26156169,99.67,0,0,0.45,553.17,3060.73,26156170,99.87,0,0,0.51,553.12,3060.79,26156171,99.97,0,0,0.16,553.05,3060.86,26156172,99.93,0,0,0.14,553.05,3060.86,26156173,99.93,0,0,0.14,553.04,3060.86,26156174,99.95,0,0,0.14,553.04,3060.86,26156175,99.73,0,0,0.75,553.35,3060.56,26156176,99.94,0,0,0.14,552.96,3060.95,26156177,99.94,0,0,0.19,553.2,3060.71,26156178,99.96,0,0,0.16,553.2,3060.7,26156179,99.93,0,0,0.16,553.2,3060.7,26156180,99.72,0,0,0.75,553.58,3060.33,26156181,99.95,0,0,0.16,553.17,3060.73,26156182,99.93,0,0,0.16,553.17,3060.73,26156183,99.92,0,0,0.17,553.16,3060.73,26156184,99.96,0,0,0.13,553.16,3060.73,26156185,99.74,0,0,0.72,553.12,3060.79,26156186,99.94,0,0,0.16,552.65,3061.25,26156187,99.91,0,0,0.16,552.64,3061.25,26156188,99.94,0,0,0.14,552.64,3061.25,26156189,99.96,0,0,0.15,552.63,3061.25,26156190,99.76,0,0,0.55,553.3,3060.61,26156191,99.93,0,0,0.29,552.37,3061.53,26156192,99.94,0,0,0.14,552.36,3061.54,26156193,99.93,0,0,0.15,552.33,3061.56,26156194,99.94,0,0,0.15,552.33,3061.56,26156195,99.74,0,0,0.71,553.58,3060.32,26156196,99.92,0,0,0.16,553.08,3060.82,26156197,99.96,0,0,0.15,553.07,3060.83,26156198,99.93,0,0,0.14,553.04,3060.86,26156199,99.87,0,0,0.28,553.02,3060.85,26156200,99.74,0,0,0.65,553.14,3060.74,26156201,99.96,0,0,0.2,552.78,3061.1,26156202,99.95,0,0,0.15,552.86,3061.02,26156203,99.94,0,0,0.15,552.94,3060.95,26156204,99.93,0,0,0.14,552.94,3060.97,26156205,99.76,0,0,0.77,553.8,3060.13,26156206,99.97,0,0,0.2,553.06,3060.86,26156207,99.92,0.01,0.01,0.19,552.64,3061.28,26156208,99.95,0,0,0.17,552.57,3061.34,26156209,99.95,0,0,0.14,552.56,3061.35,26156210,99.75,0,0,0.5,552.66,3061.26,26156211,99.91,0,0,0.43,552.31,3061.61,26156212,99.21,0,0,0.18,552.3,3061.62,26156213,99.93,0,0,0.15,552.29,3061.62,26156214,99.91,0,0,0.17,552.22,3061.68,26156215,99.9,0,0,0.32,552.76,3061.17,26156216,99.81,0,0,0.55,551.9,3062.03,26156217,99.94,0,0,0.19,551.47,3062.45,26156218,99.94,0,0,0.14,551.47,3062.45,26156219,99.93,0,0,0.17,551.44,3062.47,26156220,99.83,0,0,0.32,552.18,3061.75,26156221,99.81,0,0,0.59,552.69,3061.23,26156222,99.94,0,0,0.18,551.93,3061.98,26156223,99.93,0,0,0.18,551.93,3061.98,26156224,99.94,0,0,0.16,551.92,3061.98,26156225,99.9,0,0,0.3,552.42,3061.51,26156226,99.82,0,0,0.41,553.04,3060.88,26156227,99.93,0,0,0.28,552.66,3061.26,26156228,99.93,0,0,0.14,552.63,3061.28,26156229,99.85,0,0,0.29,552.64,3061.25,26156230,99.89,0,0,0.31,551.46,3062.44,26156231,99.82,0,0,0.5,551.77,3062.13,26156232,99.92,0,0,0.22,551.41,3062.48,26156233,99.91,0.01,0.16,0.18,551.35,3062.53,26156234,99.95,0,0,0.17,551.32,3062.56,26156235,99.84,0,0.02,0.32,552.63,3061.26,26156236,99.78,0,0,0.42,553.05,3060.84,26156237,99.92,0,0,0.32,552.67,3061.22,26156238,99.93,0,0,0.17,552.66,3061.22,26156239,99.95,0,0,0.15,552.66,3061.22,26156240,99.87,0,0,0.34,552.92,3060.97,26156241,99.79,0,0,0.52,553.22,3060.67,26156242,99.95,0,0,0.19,552.66,3061.22,26156243,99.92,0,0,0.15,552.66,3061.22,26156244,99.9,0,0,0.17,552.64,3061.23,26156245,99.9,0,0,0.32,552.65,3061.25,26156246,99.95,0,0,0.13,552.64,3061.25,26156247,99.76,0,0,0.55,553.12,3060.77,26156248,99.94,0,0,0.14,552.38,3061.5,26156249,99.93,0,0,0.16,552.38,3061.5,26156250,99.9,0,0,0.32,552.39,3061.5,26156251,99.93,0,0,0.16,552.39,3061.5,26156252,99.81,0,0,0.57,552.98,3060.9,26156253,99.9,0,0,0.18,552.59,3061.29,26156254,99.7,0,0.09,0.15,552.58,3061.29,26156255,99.82,0.01,0.51,0.39,552.37,3061.52,26156256,99.93,0,0.11,0.21,552.33,3061.54,26156257,99.76,0,0,0.57,552.78,3061.09,26156258,99.9,0,0,0.18,552.51,3061.35,26156259,99.86,0,0.09,0.29,552.51,3061.32,26156260,99.89,0,0.01,0.34,552.64,3061.21,26156261,99.95,0,0,0.18,552.63,3061.21,26156262,99.79,0,0,0.43,553.07,3060.77,26156263,99.93,0,0,0.31,552.84,3060.99,26156264,99.92,0,0,0.15,552.82,3061.03,26156265,99.89,0,0,0.36,552.58,3061.28,26156266,99.94,0,0,0.19,552.55,3061.31,26156267,99.8,0,0,0.4,553.02,3060.84,26156268,99.94,0.01,0.01,0.3,552.85,3061.01,26156269,99.94,0,0,0.16,552.87,3060.98,26156270,99.9,0,0,0.32,552.89,3060.97,26156271,99.95,0,0.01,0.21,552.86,3060.99,26156272,99.47,0,0,0.5,553.19,3060.65,26156273,99.95,0,0,0.27,552.82,3061.01,26156274,99.92,0,0,0.17,552.73,3061.09,26156275,99.88,0,0,0.31,552.32,3061.52,26156276,99.94,0,0,0.14,552.3,3061.53,26156277,99.8,0,0,0.41,552.89,3060.94,26156278,99.91,0,0,0.29,551.53,3062.3,26156279,99.89,0,0.09,0.17,551.54,3062.28,26156280,99.87,0,0.01,0.33,552.93,3060.91,26156281,99.93,0,0,0.16,552.89,3060.95,26156282,99.93,0,0,0.14,552.89,3060.95,26156283,99.78,0,0,0.59,553.36,3060.47,26156284,99.94,0,0,0.16,552.85,3060.97,26156285,99.84,0,0,0.34,551.92,3061.92,26156286,99.94,0,0,0.17,551.87,3061.96,26156287,99.95,0,0,0.17,551.86,3061.97,26156288,99.8,0,0,0.63,552.72,3061.1,26156289,99.8,0,0,0.3,553.03,3060.77,26156290,99.88,0,0,0.33,552.09,3061.72,26156291,99.94,0,0,0.17,552.05,3061.76,26156292,99.93,0,0,0.16,552.05,3061.76,26156293,99.79,0,0.1,0.61,552.36,3061.44,26156294,99.92,0,0,0.19,551.97,3061.82,26156295,99.9,0,0,0.36,551.99,3061.82,26156296,99.94,0,0,0.18,551.98,3061.83,26156297,99.95,0,0,0.21,552.13,3061.67,26156298,99.81,0,0,0.57,553.1,3060.7,26156299,99.94,0,0,0.16,553.11,3060.68,26156300,99.9,0,0,0.33,553.11,3060.71,26156301,99.93,0,0,0.18,553.1,3060.71,26156302,99.94,0,0,0.18,553.09,3060.71,26156303,99.8,0,0,0.54,552.94,3060.86,26156304,99.95,0,0,0.19,552.06,3061.73,26156305,99.9,0,0,0.34,552.09,3061.72,26156306,99.94,0,0,0.21,552.08,3061.73,26156307,99.95,0,0,0.16,552.07,3061.73,26156308,99.79,0,0,0.56,552.39,3061.4,26156309,99.91,0,0,0.17,552.03,3061.76,26156310,99.86,0,0,0.33,553.02,3060.79,26156311,99.92,0,0,0.17,553.03,3060.78,26156312,99.95,0,0,0.17,553.02,3060.78,26156313,99.78,0.01,0.2,0.61,553.62,3060.18,26156314,99.94,0,0,0.16,552.62,3061.18,26156315,99.48,0,0,0.35,552.62,3061.19,26156316,99.94,0,0,0.18,552.6,3061.21,26156317,99.95,0,0,0.18,552.59,3061.21,26156318,99.95,0,0,0.16,552.59,3061.21,26156319,99.68,0,0,0.71,553.36,3060.41,26156320,99.89,0,0,0.33,553.09,3060.7,26156321,99.96,0,0,0.18,553.08,3060.7,26156322,99.94,0,0,0.16,553.08,3060.7,26156323,99.93,0,0,0.17,553.07,3060.71,26156324,99.8,0,0,0.6,552.81,3060.97,26156325,99.88,0,0,0.35,552.8,3061.01,26156326,99.94,0,0,0.17,552.78,3061.02,26156327,99.95,0,0,0.17,552.77,3061.03,26156328,99.93,0,0,0.18,552.76,3061.03,26156329,99.8,0,0,0.58,553.39,3060.4,26156330,99.86,0,0,0.41,553.09,3060.72,26156331,99.93,0,0,0.2,552.99,3060.82,26156332,99.91,0,0,0.2,552.98,3060.82,26156333,99.93,0,0,0.17,552.98,3060.82,26156334,99.74,0,0,0.6,553.29,3060.5,26156335,99.85,0,0,0.34,553.2,3060.61,26156336,99.96,0,0,0.17,553.2,3060.6,26156337,99.92,0,0,0.2,553.2,3060.6,26156338,99.94,0,0,0.17,553.19,3060.61,26156339,99.81,0,0,0.45,553.72,3060.06,26156340,99.78,0,0,0.43,552.21,3061.59,26156341,99.93,0,0,0.17,552.18,3061.62,26156342,99.92,0,0,0.18,552.18,3061.62,26156343,99.94,0,0,0.14,552.35,3061.44,26156344,99.79,0,0,0.53,553.13,3060.65,26156345,99.89,0,0,0.41,553.34,3060.46,26156346,99.94,0,0,0.17,553.32,3060.48,26156347,99.95,0,0,0.18,553.31,3060.48,26156348,99.95,0,0,0.15,553.31,3060.48,26156349,99.69,0,0,0.62,554.03,3059.73,26156350,99.9,0,0,0.45,553.07,3060.7,26156351,99.9,0,0,0.18,553.06,3060.71,26156352,99.93,0,0,0.17,553.05,3060.72,26156353,99.93,0,0,0.16,553.02,3060.74,26156354,99.95,0,0,0.14,553.02,3060.74,26156355,99.72,0,0,0.71,553.55,3060.22,26156356,99.95,0,0,0.16,553.03,3060.74,26156357,99.94,0,0,0.19,552.37,3061.39,26156358,99.94,0,0,0.16,552.27,3061.48,26156359,99.92,0,0,0.16,552.24,3061.51,26156360,99.75,0,0,0.74,552.77,3061,26156361,99.93,0,0,0.17,552.26,3061.51,26156362,99.93,0,0,0.18,552.25,3061.51,26156363,99.93,0,0,0.15,552.25,3061.51,26156364,99.92,0,0,0.17,552.24,3061.51,26156365,99.76,0,0,0.73,552.33,3061.43,26156366,99.91,0,0.1,0.21,551.94,3061.81,26156367,99.93,0,0,0.18,551.93,3061.82,26156368,99.94,0,0,0.16,551.9,3061.85,26156369,99.95,0,0,0.17,552.07,3061.68,26156370,99.76,0,0,0.81,552.97,3060.79,26156371,99.94,0,0,0.2,552.34,3061.41,26156372,99.92,0,0,0.19,552.31,3061.44,26156373,99.94,0,0,0.18,552.3,3061.45,26156374,99.96,0,0,0.18,552.29,3061.45,26156375,99.75,0,0,0.59,552.58,3061.18,26156376,99.95,0,0,0.28,551.82,3061.94,26156377,99.95,0,0,0.16,551.81,3061.94,26156378,99.93,0,0,0.15,551.81,3061.94,26156379,99.88,0,0,0.28,552.76,3060.96,26156380,99.76,0,0,0.71,553.14,3060.59,26156381,99.9,0,0,0.13,552.52,3061.21,26156382,99.93,0,0,0.14,552.51,3061.21,26156383,99.95,0,0,0.16,552.51,3061.21,26156384,99.9,0,0,0.14,552.51,3061.21,26156385,99.75,0,0,0.59,552.94,3060.8,26156386,99.92,0,0,0.27,551.01,3062.72,26156387,99.91,0,0,0.18,551.01,3062.72,26156388,99.93,0,0,0.14,551,3062.72,26156389,99.92,0,0,0.14,551,3062.72,26156390,99.88,0,0,0.32,552.44,3061.3,26156391,99.77,0,0,0.57,552.75,3060.98,26156392,99.91,0,0,0.18,552.21,3061.52,26156393,99.94,0,0,0.16,552.2,3061.52,26156394,99.92,0,0,0.19,552.27,3061.45,26156395,99.91,0,0,0.34,552.69,3061.05,26156396,99.78,0,0,0.61,553.05,3060.68,26156397,99.91,0,0,0.14,552.67,3061.06,26156398,99.94,0,0,0.18,552.66,3061.06,26156399,99.87,0,0,0.16,552.66,3061.06,26156400,99.87,0,0,0.32,552.68,3061.06,26156401,99.73,0,0,0.57,553.02,3060.71,26156402,99.92,0,0,0.16,552.63,3061.09,26156403,99.9,0,0,0.14,552.63,3061.09,26156404,99.93,0,0,0.17,552.62,3061.09,26156405,99.78,0,0,0.34,552.69,3061.04,26156406,99.7,0,0,0.51,552.45,3061.27,26156407,99.95,0,0,0.22,551.59,3062.14,26156408,99.92,0,0,0.14,551.56,3062.16,26156409,99.78,0,0,0.29,552.75,3060.95,26156410,99.9,0,0,0.3,552.76,3060.95,26156411,99.8,0,0,0.52,553.07,3060.64,26156412,99.89,0,0,0.18,551.98,3061.72,26156413,99.84,0,0,0.16,551.97,3061.72,26156414,99.93,0,0,0.14,551.97,3061.74,26156415,99.91,0,0,0.32,551.99,3061.74,26156416,99.79,0,0,0.57,552.46,3061.26,26156417,99.9,0,0,0.17,551.98,3061.74,26156418,99.89,0,0,0.16,551.97,3061.74,26156419,99.9,0,0,0.13,551.94,3061.77,26156420,99.86,0,0,0.32,552.44,3061.29,26156421,99.76,0,0,0.32,552.68,3061.06,26156422,99.87,0,0,0.38,550.47,3063.26,26156423,99.87,0,0,0.14,550.47,3063.26,26156424,99.86,0,0,0.16,550.43,3063.29,26156425,99.8,0,0,0.32,552.15,3061.6,26156426,99.87,0,0,0.14,552.17,3061.57,26156427,99.74,0,0,0.55,552.51,3061.22,26156428,99.88,0,0,0.15,552.16,3061.57,26156429,99.89,0,0,0.14,552.15,3061.57,26156430,99.81,0,0,0.31,552.17,3061.57,26156431,99.84,0,0,0.14,552.17,3061.57,26156432,99.72,0,0.01,0.6,552.71,3061.03,26156433,99.85,0,0,0.14,552.37,3061.36,26156434,99.85,0,0,0.15,552.37,3061.36,26156435,99.81,0,0,0.32,553.11,3060.63,26156436,99.87,0,0,0.13,553.12,3060.62,26156437,99.72,0,0,0.55,553.77,3059.96,26156438,99.85,0,0,0.15,553.32,3060.41,26156439,99.72,0,0,0.3,553.05,3060.65,26156440,99.79,0,0,0.32,552.82,3060.9,26156441,99.85,0,0,0.2,552.78,3060.94,26156442,99.71,0,0,0.57,553.39,3060.32,26156443,99.84,0,0,0.17,553.01,3060.7,26156444,99.87,0,0,0.17,552.98,3060.72,26156445,99.76,0,0,0.38,552.75,3060.96,26156446,99.85,0,0,0.16,552.74,3060.97,26156447,99.72,0,0,0.43,553.16,3060.54,26156448,99.86,0,0,0.31,552.95,3060.75,26156449,99.86,0,0,0.17,552.94,3060.75,26156450,99.73,0,0,0.34,553.18,3060.53,26156451,99.85,0,0,0.17,553.17,3060.54,26156452,99.72,0,0,0.45,553.44,3060.26,26156453,99.86,0,0,0.3,552.92,3060.79,26156454,99.4,0,0,0.19,552.89,3060.81,26156455,99.8,0,0,0.37,552.68,3061.04,26156456,99.86,0,0,0.18,552.68,3061.03,26156457,99.73,0,0,0.43,553.06,3060.64,26156458,99.85,0,0,0.3,552.88,3060.82,26156459,99.83,0,0,0.21,552.64,3061.06,26156460,99.14,0,0,11.05,552.09,3061.86,26156461,99.84,0,0,0.18,552.11,3061.9,26156462,99.7,0,0,0.32,552.62,3061.39,26156463,99.86,0,0,0.38,552.96,3061.06,26156464,99.84,0,0,0.15,552.96,3061.06,26156465,99.79,0,0,0.34,553.23,3060.84,26156466,99.85,0,0,0.16,553.23,3060.84,26156467,99.85,0,0,0.14,553.22,3060.84,26156468,99.73,0,0,0.55,553.55,3060.5,26156469,99.81,0,0,0.29,553.18,3060.85,26156470,99.82,0,0,0.34,553.44,3060.61,26156471,99.85,0,0,0.16,553.44,3060.61,26156472,99.86,0,0,0.15,553.44,3060.61,26156473,99.73,0,0,0.58,554.04,3060,26156474,99.85,0,0,0.17,553.18,3060.87,26156475,99.74,0,0,0.32,553.17,3060.9,26156476,99.86,0,0,0.14,553.17,3060.9,26156477,99.8,0,0,0.2,552.92,3061.14,26156478,99.71,0,0,0.59,553,3061.06,26156479,99.84,0,0,0.15,552.16,3061.9,26156480,99.79,0,0,0.32,552.96,3061.11,26156481,99.87,0,0,0.16,552.89,3061.18,26156482,99.86,0,0,0.14,552.89,3061.18,26156483,99.73,0,0,0.58,553.41,3060.65,26156484,99.85,0,0,0.14,553.37,3060.68,26156485,99.78,0,0,0.34,553.15,3060.92,26156486,99.83,0,0,0.14,553.12,3060.95,26156487,99.85,0,0,0.16,553.1,3060.96,26156488,99.73,0,0,0.57,553.36,3060.7,26156489,99.85,0,0,0.14,552.84,3061.21,26156490,99.69,0,0,0.32,551.91,3062.16,26156491,99.83,0,0,0.14,551.84,3062.22,26156492,99.84,0,0,0.18,551.84,3062.22,26156493,99.7,0,0,0.51,552.38,3061.68,26156494,99.84,0,0,0.21,552.81,3061.24,26156495,99.79,0,0,0.33,553.31,3060.76,26156496,99.85,0,0,0.16,553.31,3060.76,26156497,99.84,0,0,0.15,553.28,3060.78,26156498,98.51,0.3,0.01,0.6,554.71,3057.91,26156499,96.49,0,0,229.09,565.9,3049.64,26156500,99.81,0,0,0.42,555.8,3058.11,26156501,99.83,0,0,0.14,555.79,3058.12,26156502,99.83,0,0,0.16,555.78,3058.12,26156503,99.83,0,0,0.14,555.78,3058.12,26156504,99.7,0,0,0.58,553.86,3060.08,26156505,99.81,0,0,0.37,552.61,3061.35,26156506,99.84,0,0,0.14,552.4,3061.56,26156507,99.85,0,0,0.14,552.39,3061.57,26156508,99.83,0,0,0.15,552.36,3061.59,26156509,99.71,0,0,0.54,552.9,3061.05,26156510,99.83,0,0,0.33,552.63,3061.34,26156511,99.82,0.01,0.01,0.16,552.61,3061.35,26156512,99.81,0.04,0.03,0.18,552.58,3061.38,26156513,99.82,0.03,0.02,0.15,552.59,3061.37,26156514,99.63,0.02,0.02,0.54,552.87,3061.08,26156515,99.77,0.01,0.01,0.34,552.62,3061.35,26156516,99.83,0.02,0.01,0.17,552.6,3061.37,26156517,99.83,0.03,0.02,0.14,552.58,3061.38,26156518,99.86,0.02,0.02,0.16,552.57,3061.39,26156519,99.69,0.02,0.01,0.5,552.91,3061.04,26156520,99.74,0.01,0.01,0.47,551.57,3062.4,26156521,99.82,0.03,0.02,0.15,551.64,3062.32,26156522,99.82,0.03,0.02,0.13,551.63,3062.33,26156523,99.86,0.02,0.01,0.16,551.59,3062.36,26156524,99.7,0.03,0.02,0.51,552.09,3061.86,26156525,99.79,0,0,0.39,552.78,3061.19,26156526,99.85,0,0,0.13,552.76,3061.2,26156527,99.85,0,0,0.16,552.74,3061.22,26156528,99.81,0,0,0.16,552.73,3061.22,26156529,99.58,0,0,0.45,552.91,3061.02,26156530,99.8,0,0,0.54,553.27,3060.68,26156531,99.85,0,0,0.14,552.92,3061.03,26156532,99.86,0,0,0.16,552.89,3061.05,26156533,99.85,0,0,0.16,552.88,3061.05,26156534,99.86,0,0,0.14,552.88,3061.05,26156535,99.64,0,0,0.73,552.82,3061.14,26156536,99.84,0,0,0.14,552.4,3061.56,26156537,99.84,0,0,0.23,552.64,3061.32,26156538,99.85,0,0,0.15,552.64,3061.31,26156539,99.86,0,0,0.14,552.64,3061.31,26156540,99.68,0,0,0.64,552.75,3061.21,26156541,99.85,0,0,0.16,552.37,3061.59,26156542,99.86,0,0,0.14,552.37,3061.59,26156543,99.84,0,0,0.15,552.35,3061.6,26156544,99.83,0,0,0.14,552.33,3061.62,26156545,99.55,0,0,0.7,552.81,3061.16,26156546,99.85,0,0,0.14,552.83,3061.14,26156547,99.86,0,0,0.16,552.83,3061.14,26156548,99.87,0,0,0.16,552.83,3061.14,26156549,99.86,0,0,0.14,552.8,3061.17,26156550,99.66,0,0,0.61,553.04,3060.94,26156551,99.83,0,0,0.19,552.56,3061.42,26156552,99.86,0,0,0.16,552.55,3061.42,26156553,99.85,0,0,0.15,552.55,3061.42,26156554,99.86,0,0,0.15,552.53,3061.44,26156555,99.65,0,0,0.56,553.51,3060.48,26156556,99.85,0,0,0.29,552.53,3061.45,26156557,99.84,0,0,0.14,552.49,3061.48,26156558,99.83,0,0,0.14,552.58,3061.39,26156559,99.79,0,0,0.3,552.67,3061.27,26156560,99.66,0,0,0.51,553.23,3060.73,26156561,99.86,0,0,0.3,552.9,3061.06,26156562,99.85,0,0,0.14,552.88,3061.07,26156563,99.85,0,0,0.16,552.85,3061.09,26156564,99.86,0,0,0.14,552.84,3061.1,26156565,99.79,0,0,0.28,552.63,3061.33,26156566,99.72,0,0,0.54,552.73,3061.23,26156567,99.86,0,0,0.14,552.35,3061.61,26156568,99.87,0,0,0.15,552.33,3061.62,26156569,99.83,0,0,0.15,552.33,3061.62,26156570,99.77,0,0,0.27,552.6,3061.37,26156571,99.73,0,0,0.56,553.19,3060.77,26156572,99.85,0,0,0.14,552.83,3061.13,26156573,99.86,0,0,0.14,552.82,3061.13,26156574,99.84,0,0,0.18,552.79,3061.16,26156575,99.81,0,0,0.29,552.33,3061.63,26156576,99.69,0,0,0.55,552.67,3061.29,26156577,99.83,0,0,0.14,552.29,3061.67,26156578,99.86,0,0,0.14,552.27,3061.68,26156579,99.83,0,0,0.15,552.26,3061.68,26156580,99.75,0,0,0.29,551.09,3062.87,26156581,99.71,0,0,0.52,552.42,3061.53,26156582,99.86,0,0,0.16,552.26,3061.68,26156583,99.84,0,0,0.14,552.26,3061.68,26156584,99.86,0,0,0.15,552.25,3061.69,26156585,99.8,0,0,0.28,552.72,3061.23,26156586,99.74,0,0,0.41,553.08,3060.87,26156587,99.86,0,0,0.27,552.49,3061.46,26156588,99.94,0,0,0.16,552.47,3061.47,26156589,99.82,0,0,0.29,552.9,3061.02,26156590,99.89,0,0,0.28,552.92,3061.02,26156591,99.79,0,0,0.5,553.33,3060.61,26156592,99.91,0,0,0.21,553.15,3060.78,26156593,99.94,0,0,0.15,553.15,3060.78,26156594,99.93,0,0,0.15,553.15,3060.8,26156595,99.9,0,0,0.29,553.16,3060.8,26156596,99.81,0,0,0.39,553.51,3060.45,26156597,99.94,0,0,0.32,553.13,3060.82,26156598,99.94,0,0,0.16,553.12,3060.83,26156599,99.93,0,0,0.14,553.11,3060.83,26156600,99.88,0,0,0.27,552.65,3061.31,26156601,99.8,0,0,0.41,553,3060.95,26156602,99.93,0,0,0.28,552.85,3061.11,26156603,99.93,0,0,0.14,552.84,3061.11,26156604,99.93,0,0,0.14,552.84,3061.11,26156605,99.88,0,0,0.27,553.34,3060.62,26156606,99.92,0,0,0.14,553.34,3060.61,26156607,99.76,0,0,0.58,553.19,3060.76,26156608,99.91,0,0,0.14,552.81,3061.14,26156609,99.92,0,0,0.15,552.81,3061.14,26156610,99.88,0,0,0.27,553.07,3060.89,26156611,99.93,0,0,0.14,553.05,3060.91,26156612,99.8,0,0,0.59,553.65,3060.3,26156613,99.93,0,0,0.15,553.03,3060.92,26156614,99.92,0,0,0.14,553.02,3060.92,26156615,99.88,0,0,0.28,553.04,3060.92,26156616,99.93,0,0,0.14,553.03,3060.92,26156617,99.21,0,0,0.57,553.33,3060.62,26156618,99.93,0,0,0.16,552.75,3061.2,26156619,99.81,0,0,0.3,553,3060.92,26156620,99.88,0,0,0.26,553.02,3060.92,26156621,99.94,0,0,0.17,553.01,3060.95,26156622,99.78,0,0,0.41,553.42,3060.55,26156623,99.94,0,0,0.29,553.16,3060.8,26156624,99.93,0,0,0.14,553.15,3060.8,26156625,99.9,0,0,0.33,553.16,3060.8,26156626,99.92,0,0,0.15,553.16,3060.8,26156627,99.78,0,0,0.41,553.5,3060.46,26156628,99.93,0,0,0.28,553.15,3060.8,26156629,99.93,0,0,0.15,553.14,3060.81,26156630,99.88,0,0,0.28,553.38,3060.59,26156631,99.93,0,0,0.14,553.37,3060.59,26156632,99.8,0,0,0.5,553.65,3060.31,26156633,99.93,0,0,0.19,553.12,3060.84,26156634,99.95,0,0,0.16,553.09,3060.86,26156635,99.73,0,0,0.29,552.15,3061.81,26156636,99.88,0,0,0.15,552.11,3061.85,26156637,99.52,0,0,0.56,552.55,3061.41,26156638,99.94,0,0,0.16,552.84,3061.11,26156639,99.94,0,0,0.19,552.83,3061.11,26156640,99.84,0,0,0.29,552.6,3061.36,26156641,99.94,0,0,0.16,552.57,3061.39,26156642,99.93,0,0,0.14,552.56,3061.39,26156643,99.8,0,0,0.59,553.47,3060.48,26156644,99.95,0,0,0.17,552.8,3061.14,26156645,99.9,0,0,0.29,552.34,3061.63,26156646,99.93,0,0,0.18,552.29,3061.67,26156647,99.95,0,0,0.16,552.29,3061.67,26156648,99.79,0,0.01,0.6,553.55,3060.4,26156649,99.89,0,0,0.34,553.47,3060.46,26156650,99.88,0,0,0.35,553.24,3060.7,26156651,99.92,0,0,0.17,553.24,3060.69,26156652,99.95,0,0,0.21,553.38,3060.55,26156653,99.8,0,0,0.55,553.72,3060.19,26156654,99.93,0,0,0.17,553.35,3060.57,26156655,99.88,0,0,0.3,553.35,3060.6,26156656,99.94,0,0,0.17,553.19,3060.76,26156657,99.94,0,0,0.24,552.85,3061.09,26156658,99.8,0,0,0.59,552.75,3061.18,26156659,99.95,0,0,0.18,552.1,3061.83,26156660,99.9,0,0,0.3,551.61,3062.33,26156661,99.93,0,0,0.21,551.59,3062.35,26156662,99.95,0,0,0.16,551.58,3062.35,26156663,99.8,0,0,0.43,552.15,3061.78,26156664,99.9,0,0,0.33,552.07,3061.86,26156665,99.89,0,0,0.33,552.81,3061.13,26156666,99.93,0,0,0.17,552.82,3061.12,26156667,99.95,0,0,0.18,552.8,3061.13,26156668,99.81,0,0,0.55,553.07,3060.86,26156669,99.94,0,0,0.16,552.52,3061.4,26156670,99.84,0,0,0.29,552.78,3061.16,26156671,99.94,0,0,0.21,552.78,3061.15,26156672,99.93,0,0,0.2,552.78,3061.15,26156673,99.8,0,0,0.37,553.19,3060.73,26156674,99.92,0,0,0.36,552.5,3061.42,26156675,99.83,0,0,0.28,551.3,3062.63,26156676,99.92,0,0,0.14,551.27,3062.66,26156677,99.95,0,0,0.16,551.26,3062.67,26156678,99.95,0,0,0.15,551.23,3062.69,26156679,99.67,0,0,0.73,552.82,3061.08,26156680,99.85,0,0,0.31,552.52,3061.4,26156681,99.96,0,0,0.14,552.48,3061.44,26156682,99.93,0,0,0.19,552.47,3061.44,26156683,99.94,0,0,0.16,552.45,3061.45,26156684,99.8,0,0,0.57,553,3060.9,26156685,99.89,0,0,0.31,552.36,3061.55,26156686,99.95,0,0,0.14,552.39,3061.53,26156687,99.93,0,0,0.14,552.37,3061.54,26156688,99.95,0,0,0.16,552.35,3061.56,26156689,99.78,0,0,0.55,552.16,3061.74,26156690,99.86,0,0,0.3,552.58,3061.33,26156691,99.94,0,0,0.18,552.6,3061.31,26156692,99.93,0,0,0.18,552.59,3061.31,26156693,99.93,0,0,0.18,552.57,3061.33,26156694,99.8,0,0,0.55,552.91,3060.98,26156695,99.87,0,0,0.31,552.59,3061.32,26156696,99.93,0,0,0.19,552.55,3061.36,26156697,99.95,0,0,0.14,552.53,3061.38,26156698,99.95,0,0,0.16,552.53,3061.38,26156699,99.78,0,0,0.61,553.22,3060.67,26156700,99.86,0,0,0.3,552.78,3061.13,26156701,99.93,0,0,0.14,552.76,3061.15,26156702,99.94,0,0,0.15,552.74,3061.16,26156703,99.93,0,0,0.16,552.74,3061.16,26156704,99.81,0,0,0.51,553.14,3060.76,26156705,99.89,0,0,0.34,552.75,3061.16,26156706,99.95,0,0,0.14,552.72,3061.19,26156707,99.93,0,0,0.16,552.71,3061.19,26156708,99.93,0,0,0.14,552.71,3061.19,26156709,99.7,0,0,0.71,553.11,3060.77,26156710,99.88,0,0,0.33,552.23,3061.68,26156711,99.93,0,0,0.13,552.18,3061.72,26156712,99.93,0,0,0.18,552.34,3061.56,26156713,99.95,0,0,0.14,552.36,3061.54,26156714,99.8,0,0,0.38,552.74,3061.15,26156715,99.87,0,0,0.54,552.6,3061.3,26156716,99.92,0,0,0.14,552.58,3061.32,26156717,99.91,0,0,0.21,552.58,3061.31,26156718,99.92,0,0,0.14,552.57,3061.32,26156719,99.91,0,0,0.18,552.57,3061.32,26156720,99.69,0,0,0.66,553.14,3060.76,26156721,99.93,0,0,0.16,552.8,3061.11,26156722,99.92,0,0,0.14,552.79,3061.11,26156723,99.89,0,0,0.17,552.79,3061.11,26156724,99.93,0,0,0.17,552.76,3061.13,26156725,99.7,0,0,0.66,553.48,3060.42,26156726,99.94,0,0,0.17,552.76,3061.14,26156727,99.94,0,0,0.14,552.76,3061.14,26156728,99.91,0,0,0.15,552.76,3061.14,26156729,99.9,0,0,0.18,552.73,3061.16,26156730,99.69,0,0,0.71,553.3,3060.6,26156731,99.94,0,0,0.14,552.96,3060.94,26156732,99.92,0,0,0.18,552.94,3060.95,26156733,99.94,0,0,0.18,552.93,3060.95,26156734,99.92,0,0,0.16,552.93,3060.95,26156735,99.74,0,0,0.6,553.02,3060.87,26156736,99.93,0,0,0.32,552.83,3061.06,26156737,99.94,0,0,0.14,552.83,3061.06,26156738,99.94,0,0,0.16,552.81,3061.07,26156739,99.84,0,0,0.42,552.81,3061.08,26156740,99.73,0,0,0.69,553.23,3060.68,26156741,99.92,0,0,0.15,553.04,3060.86,26156742,99.91,0,0.01,0.18,553.03,3060.87,26156743,99.93,0,0,0.14,553,3060.9,26156744,99.95,0,0,0.15,553,3060.93,26156745,99.72,0,0,0.69,552.78,3061.16,26156746,99.95,0,0,0.14,552.76,3061.18,26156747,99.95,0,0,0.37,552.68,3061.25,26156748,99.91,0,0,0.14,552.48,3061.45,26156749,99.93,0,0,0.16,552.47,3061.45,26156750,99.77,0,0,0.54,553.33,3060.61,26156751,99.94,0,0,0.28,552.98,3060.96,26156752,99.95,0,0,0.16,552.97,3060.96,26156753,99.94,0,0,0.16,552.94,3060.99,26156754,99.94,0,0,0.15,552.93,3060.99,26156755,99.88,0,0,0.37,552.76,3061.17,26156756,97.32,0,0,0.53,553.27,3060.66,26156757,99.93,0,0,0.14,552.92,3061.01,26156758,99.95,0,0,0.18,552.9,3061.02,26156759,99.93,0,0,0.16,552.9,3061.02,26156760,99.86,0,0,0.3,552.92,3061.02,26156761,99.82,0,0,0.56,553.6,3060.34,26156762,99.94,0,0,0.14,553.32,3060.63,26156763,99.95,0,0,0.15,553.31,3060.64,26156764,99.93,0,0,0.15,553.3,3060.64,26156765,99.87,0,0,0.27,552.11,3061.84,26156766,99.82,0,0,0.5,553.03,3060.92,26156767,99.96,0,0,0.2,552.81,3061.13,26156768,99.93,0,0,0.14,552.81,3061.13,26156769,99.86,0,0,0.3,552.77,3061.14,26156770,99.89,0,0,0.29,553.03,3060.9,26156771,99.78,0,0,0.4,553.65,3060.28,26156772,99.92,0,0,0.3,553.25,3060.68,26156773,99.91,0,0,0.16,553.24,3060.68,26156774,99.92,0,0,0.17,553.24,3060.7,26156775,99.83,0,0,0.31,552.98,3060.98,26156776,99.8,0,0,0.45,553.46,3060.5,26156777,99.94,0,0,0.33,552.94,3061.01,26156778,99.93,0,0,0.16,552.93,3061.01,26156779,99.94,0,0,0.17,552.91,3061.02,26156780,99.88,0,0,0.3,553.16,3060.79,26156781,99.8,0,0,0.34,553.57,3060.37,26156782,99.93,0,0,0.4,553.48,3060.46,26156783,99.95,0,0,0.16,553.6,3060.34,26156784,99.93,0,0,0.18,553.58,3060.36,26156785,99.83,0,0,0.35,553.36,3060.6,26156786,99.79,0,0,0.34,553.68,3060.26,26156787,99.96,0,0,0.42,553.09,3060.85,26156788,99.94,0,0,0.16,553.07,3060.87,26156789,99.93,0,0,0.16,553.05,3060.88,26156790,99.86,0,0,0.27,553.31,3060.64,26156791,99.91,0,0,0.16,553.31,3060.64,26156792,99.82,0,0,0.55,553.63,3060.31,26156793,99.95,0,0,0.2,553.27,3060.67,26156794,99.95,0,0,0.2,553.27,3060.67,26156795,99.89,0,0,0.3,553.28,3060.67,26156796,99.89,0,0,0.17,553.28,3060.67,26156797,99.81,0,0,0.57,553.45,3060.49,26156798,98.75,0,0,0.16,553.02,3060.91,26156799,99.83,0,0,0.34,553.24,3060.67,26156800,99.88,0,0,0.3,553.25,3060.68,26156801,99.95,0,0,0.18,553.24,3060.68,26156802,99.81,0,0,0.41,553.71,3060.2,26156803,99.96,0,0,0.3,553.47,3060.44,26156804,99.95,0,0,0.17,553.47,3060.44,26156805,99.86,0,0,0.3,553.23,3060.7,26156806,99.95,0,0,0.17,553.21,3060.71,26156807,99.81,0,0,0.52,553.95,3059.97,26156808,99.94,0,0,0.22,553.2,3060.71,26156809,99.95,0,0,0.17,553.17,3060.74,26156810,99.86,0,0,0.29,553.19,3060.73,26156811,99.91,0,0,0.16,553.06,3060.86,26156812,99.8,0,0,0.6,552.82,3061.1,26156813,99.95,0,0,0.16,552.43,3061.48,26156814,99.94,0,0,0.16,552.44,3061.46,26156815,99.81,0,0,0.32,552.42,3061.5,26156816,99.93,0,0,0.17,552.35,3061.57,26156817,99.83,0,0,0.34,552.88,3061.04,26156818,99.9,0,0,0.41,552.33,3061.57,26156819,99.89,0,0,0.18,552.33,3061.57,26156820,99.79,0,0,0.29,551.41,3062.5,26156821,96.13,0.23,0.01,78.23,558.01,3056.86,26156822,99.9,0,0,62.82,554.97,3058.24,26156823,99.81,0,0,0.56,555.44,3057.77,26156824,99.93,0,0,0.2,554.96,3058.24,26156825,99.83,0,0,0.36,554.76,3058.46,26156826,99.91,0,0,0.21,554.04,3059.2,26156827,99.95,0,0,0.18,552.51,3060.76,26156828,99.78,0,0,0.55,553.04,3060.23,26156829,99.86,0,0,0.33,552.75,3060.49,26156830,99.87,0,0,0.35,552.75,3060.51,26156831,99.94,0,0,0.14,552.73,3060.53,26156832,99.9,0,0,0.15,552.73,3060.54,26156833,99.8,0,0,0.58,553.07,3060.19,26156834,99.91,0,0,0.15,552.72,3060.54,26156835,99.87,0,0,0.29,552.72,3060.55,26156836,99.93,0,0,0.16,552.7,3060.57,26156837,99.93,0,0,0.21,552.46,3060.81,26156838,99.76,0,0,0.41,552.93,3060.34,26156839,99.92,0,0,0.33,552.69,3060.57,26156840,99.9,0,0,0.33,552.93,3060.35,26156841,96.07,0,0,12.8,559.81,3050.09,26156842,99.9,0,0,34.21,554.63,3058.49,26156843,99.81,0,0,0.61,555.46,3057.67,26156844,99.94,0,0,0.16,555.13,3058,26156845,98.88,0,0,15.45,555.19,3058.48,26156846,99.92,0,0,0.14,553.45,3059.76,26156847,99.88,0,0,0.21,551.46,3061.79,26156848,99.76,0.01,0.03,0.65,552.03,3061.21,26156849,99.93,0,0,0.18,552.73,3060.51,26156850,99.81,0,0,0.28,551.61,3061.65,26156851,99.94,0,0,0.14,551.45,3061.8,26156852,99.93,0,0,0.16,551.43,3061.81,26156853,99.9,0,0,0.15,551.49,3061.75,26156854,99.81,0,0,0.57,553.17,3060.07,26156855,99.85,0,0,0.29,552.82,3060.43,26156856,99.9,0,0,0.13,552.8,3060.45,26156857,99.93,0,0,0.16,552.76,3060.48,26156858,99.92,0,0,0.14,552.74,3060.5,26156859,99.65,0,0,0.68,553.09,3060.13,26156860,99.83,0,0,0.3,552.74,3060.49,26156861,99.92,0,0,0.16,552.71,3060.51,26156862,99.93,0,0,0.14,552.69,3060.53,26156863,99.94,0,0,0.13,552.67,3060.54,26156864,96.56,0.02,0.01,77.71,566.08,3048.08,26156865,99.82,0,0,0.3,555.39,3058.03,26156866,99.93,0,0,0.17,555.35,3058.06,26156867,99.89,0,0,0.14,555.32,3058.09,26156868,99.93,0,0,0.15,555.3,3058.11,26156869,99.8,0,0,0.62,554.24,3059.2,26156870,99.84,0,0,0.34,552.35,3061.12,26156871,99.94,0,0,0.16,552.32,3061.15,26156872,99.91,0,0,0.14,552.3,3061.16,26156873,99.95,0,0,0.14,552.29,3061.17,26156874,99.77,0,0,0.63,553.09,3060.38,26156875,99.83,0,0,0.34,552.54,3060.95,26156876,99.91,0,0,0.16,552.47,3061.02,26156877,99.93,0,0,0.13,552.46,3061.03,26156878,99.92,0,0,0.16,552.42,3061.06,26156879,99.76,0,0,0.4,552.77,3060.7,26156880,99.83,0,0,0.4,552.83,3060.66,26156881,99.93,0,0,0.16,552.82,3060.67,26156882,99.92,0,0,0.14,552.8,3060.69,26156883,99.93,0,0,0.14,552.78,3060.7,26156884,99.78,0,0,0.55,553.15,3060.32,26156885,99.85,0,0,0.3,553,3060.5,26156886,99.91,0,0,0.14,552.98,3060.51,26156887,99.93,0,0,0.16,552.95,3060.54,26156888,99.91,0,0,0.14,552.92,3060.56,26156889,99.63,0,0,0.64,553.38,3060.08,26156890,99.86,0,0,0.41,552.57,3060.9,26156891,99.92,0,0,0.14,552.55,3060.92,26156892,99.93,0,0,0.16,552.51,3060.95,26156893,99.92,0,0,0.14,552.47,3060.99,26156894,99.9,0,0,0.15,552.44,3061.03,26156895,99.68,0,0,0.66,552.78,3060.72,26156896,99.92,0,0,0.15,552.07,3061.42,26156897,99.94,0,0,0.24,552.04,3061.44,26156898,99.93,0,0,0.2,552.02,3061.47,26156899,99.91,0,0,0.14,551.99,3061.5,26156900,99.69,0,0,0.72,553.52,3059.98,26156901,99.93,0,0,0.19,552.94,3060.55,26156902,99.92,0,0,0.14,552.91,3060.58,26156903,99.93,0,0,0.14,552.69,3060.8,26156904,99.93,0,0,0.19,552.79,3060.7,26156905,99.72,0,0,0.74,553.48,3060.02,26156906,99.93,0,0,0.16,552.75,3060.76,26156907,99.93,0,0,0.14,552.73,3060.77,26156908,99.95,0,0,0.16,552.7,3060.79,26156909,99.96,0,0,0.15,552.69,3060.8,26156910,99.7,0,0,0.73,553.3,3060.2,26156911,99.93,0,0,0.16,552.95,3060.55,26156912,99.93,0,0,0.14,552.92,3060.58,26156913,99.9,0,0,0.15,552.91,3060.58,26156914,99.93,0,0,0.16,552.91,3060.58,26156915,99.75,0,0,0.68,553.13,3060.38,26156916,99.91,0,0,0.16,553.17,3060.34,26156917,99.95,0,0,0.14,553.16,3060.34,26156918,99.91,0,0,0.15,553.13,3060.37,26156919,99.82,0,0,0.32,552.89,3060.58,26156920,99.74,0,0,0.69,553.13,3060.35,26156921,99.93,0,0,0.16,553.17,3060.31,26156922,99.89,0,0,0.13,553.31,3060.17,26156923,99.95,0,0,0.17,553.29,3060.18,26156924,99.95,0,0,0.14,553.27,3060.22,26156925,99.74,0,0,0.56,553.6,3059.91,26156926,99.94,0,0,0.35,553.03,3060.46,26156927,99.94,0,0,0.15,553.03,3060.46,26156928,99.92,0,0,0.14,553.03,3060.46,26156929,99.93,0,0,0.16,553.02,3060.46,26156930,99.88,0,0,0.29,553.02,3060.48,26156931,99.77,0,0,0.64,552.75,3060.75,26156932,99.87,0,0,0.16,552.26,3061.23,26156933,99.92,0,0,0.14,552.25,3061.23,26156934,99.93,0,0,0.15,552.25,3061.23,26156935,99.88,0,0,0.3,552.8,3060.7,26156936,99.8,0,0,0.56,553.49,3060.01,26156937,99.91,0,0,0.17,553.23,3060.26,26156938,99.95,0,0,0.14,553.2,3060.28,26156939,99.94,0,0,0.16,553.2,3060.28,26156940,99.71,0,0,0.29,553.25,3060.25,26156941,99.78,0,0,0.55,553.57,3059.92,26156942,99.94,0,0,0.17,553.18,3060.31,26156943,99.93,0,0,0.15,553.17,3060.31,26156944,99.94,0,0,0.14,553.17,3060.31,26156945,99.84,0,0,0.32,553.18,3060.31,26156946,99.81,0,0,0.56,553.52,3059.96,26156947,99.94,0,0,0.14,553.17,3060.31,26156948,99.88,0,0,0.16,553.15,3060.33,26156949,99.84,0,0,0.28,553.14,3060.32,26156950,99.87,0,0,0.34,553.15,3060.32,26156951,99.78,0,0,0.54,553.4,3060.07,26156952,99.92,0,0,0.17,552.9,3060.57,26156953,99.86,0,0,0.13,552.89,3060.57,26156954,99.88,0,0,0.15,552.87,3060.6,26156955,99.82,0,0,0.31,553.36,3060.13,26156956,99.8,0,0,0.55,553.86,3059.63,26156957,99.92,0,0,0.19,553.12,3060.37,26156958,99.9,0,0,0.14,553.2,3060.28,26156959,99.85,0,0,0.16,553.28,3060.2,26156960,99.8,0,0,0.27,552.8,3060.69,26156961,99.78,0,0,0.55,553.29,3060.19,26156962,99.95,0,0,0.17,553.52,3059.96,26156963,99.9,0,0,0.14,553.51,3059.96,26156964,99.93,0,0,0.16,553.51,3059.96,26156965,99.88,0,0,0.29,553.25,3060.24,26156966,99.95,0,0,0.13,552.26,3061.23,26156967,99.79,0,0,0.59,552.84,3060.64,26156968,99.9,0,0,0.14,552.5,3060.98,26156969,99.88,0,0,0.16,552.49,3060.98,26156970,99.88,0,0,0.29,552.51,3060.98,26156971,99.91,0,0,0.13,552.51,3060.98,26156972,99.79,0,0,0.57,552.64,3060.84,26156973,99.9,0,0,0.16,552.22,3061.26,26156974,99.84,0,0,0.14,552.22,3061.26,26156975,99.87,0,0,0.28,551.99,3061.5,26156976,99.86,0,0,0.17,551.98,3061.5,26156977,99.73,0,0,0.52,552.32,3061.16,26156978,99.9,0,0,0.15,551.96,3061.52,26156979,99.83,0,0,0.3,552.18,3061.28,26156980,99.85,0,0,0.27,552.67,3060.8,26156981,99.9,0,0,0.15,552.68,3060.79,26156982,99.73,0,0,0.57,552.88,3060.58,26156983,99.88,0,0,0.17,552.42,3061.04,26156984,99.88,0,0,0.14,552.42,3061.05,26156985,99.79,0,0,0.29,552.65,3060.84,26156986,99.87,0,0,0.15,552.65,3060.84,26156987,99.74,0,0,0.57,553.47,3060.01,26156988,99.87,0,0,0.14,552.88,3060.59,26156989,99.85,0,0,0.16,552.86,3060.61,26156990,99.78,0,0,0.27,552.39,3061.1,26156991,99.85,0,0,0.16,552.37,3061.11,26156992,99.73,0,0,0.56,553.15,3060.33,26156993,99.83,0,0,0.16,552.36,3061.11,26156994,99.82,0,0,0.15,552.38,3061.09,26156995,99.79,0,0,0.34,552.47,3061.02,26156996,99.87,0,0,0.12,552.56,3060.93,26156997,98.28,0,0,0.57,553.16,3060.32,26156998,99.85,0,0,0.15,552.53,3060.95,26156999,99.87,0,0,0.15,552.51,3060.96,26157000,99.76,0,0,0.29,551.34,3062.15,26157001,99.87,0,0,0.14,551.29,3062.19,26157002,99.85,0,0,0.16,551.29,3062.19,26157003,99.71,0,0,0.55,552.67,3060.8,26157004,99.85,0,0,0.14,552.25,3061.22,26157005,99.81,0,0,0.3,552.02,3061.47,26157006,99.84,0,0,0.18,552,3061.48,26157007,99.86,0,0,0.13,552,3061.48,26157008,99.73,0,0,0.55,552.9,3060.58,26157009,99.81,0,0,0.3,552.49,3060.96,26157010,99.78,0,0,0.27,552.95,3060.52,26157011,99.83,0,0,0.16,552.96,3060.5,26157012,99.85,0,0,0.14,552.96,3060.5,26157013,99.66,0,0,0.56,553.11,3060.34,26157014,99.86,0,0,0.14,552.7,3060.76,26157015,99.81,0,0,0.28,552.7,3060.79,26157016,99.86,0,0,0.14,552.69,3060.8,26157017,99.83,0,0,0.21,552.92,3060.55,26157018,99.73,0,0,0.52,552.86,3060.61,26157019,99.83,0,0,0.2,551.69,3061.78,26157020,99.78,0,0,0.29,551.95,3061.54,26157021,99.86,0,0,0.14,551.95,3061.54,26157022,99.83,0,0,0.15,551.93,3061.55,26157023,99.72,0,0,0.39,552.36,3061.11,26157024,99.86,0,0,0.29,552.15,3061.32,26157025,99.76,0,0,0.29,552.89,3060.59,26157026,99.87,0,0,0.21,552.9,3060.58,26157027,99.85,0,0,0.14,552.9,3060.58,26157028,99.73,0,0,0.41,553.22,3060.26,26157029,99.85,0,0,0.29,552.98,3060.49,26157030,99.73,0,0,0.29,552.82,3060.67,26157031,99.81,0,0,0.17,552.81,3060.67,26157032,99.85,0,0,0.16,552.8,3060.68,26157033,99.7,0,0,0.3,553.07,3060.4,26157034,99.84,0.04,0.03,0.42,551.95,3061.51,26157035,99.74,0.05,0.03,0.29,552.96,3060.52,26157036,99.84,0.04,0.03,0.18,552.94,3060.53,26157037,99.84,0.05,0.03,0.18,552.96,3060.51,26157038,99.66,0.04,0.03,0.43,553.3,3060.17,26157039,99.78,0.06,0.05,0.45,552.69,3060.75,26157040,99.44,0.03,0.02,0.28,552.96,3060.49,26157041,99.82,0.02,0.02,0.18,553.01,3060.44,26157042,99.83,0.01,0.01,0.15,552.91,3060.53,26157043,99.82,0,0,0.16,552.86,3060.58,26157044,99.72,0,0,0.59,553.56,3059.87,26157045,99.73,0,0,0.3,552.34,3061.11,26157046,99.85,0,0,0.14,552.3,3061.15,26157047,99.86,0,0,0.16,552.3,3061.16,26157048,99.84,0,0,0.14,552.28,3061.18,26157049,99.7,0,0,0.55,552.71,3060.75,26157050,99.81,0,0,0.28,553,3060.47,26157051,99.85,0,0,0.14,553.01,3060.46,26157052,99.86,0,0,0.16,553.01,3060.46,26157053,99.84,0,0,0.14,553.01,3060.46,26157054,99.73,0,0,0.56,553.35,3060.11,26157055,99.74,0,0,0.32,552.91,3060.56,26157056,99.84,0,0,0.16,552.74,3060.73,26157057,99.83,0,0,0.16,552.73,3060.73,26157058,99.83,0,0,0.14,552.73,3060.73,26157059,99.73,0,0,0.55,553.07,3060.39,26157060,99.74,0,0,0.29,552.49,3060.98,26157061,99.83,0,0,0.14,552.48,3060.98,26157062,99.86,0,0,0.14,552.46,3061,26157063,99.85,0,0,0.15,552.44,3061.01,26157064,99.69,0,0,0.5,553.06,3060.39,26157065,99.81,0,0,0.34,553.17,3060.3,26157066,99.87,0,0,0.16,553.16,3060.3,26157067,99.85,0,0,0.14,553.15,3060.3,26157068,99.86,0,0,0.14,553.15,3060.3,26157069,99.65,0,0,0.64,553.47,3059.96,26157070,99.77,0,0,0.34,552.4,3061.04,26157071,99.85,0,0,0.14,552.38,3061.07,26157072,99.83,0,0,0.18,552.37,3061.07,26157073,99.87,0,0,0.18,552.37,3061.07,26157074,99.69,0,0,0.34,553.04,3060.39,26157075,99.76,0,0,0.55,552.13,3061.3,26157076,99.84,0,0,0.19,552.12,3061.31,26157077,99.84,0,0,0.18,552.34,3061.08,26157078,99.83,0,0,0.16,552.35,3061.07,26157079,99.85,0,0,0.14,552.5,3060.91,26157080,99.61,0,0,0.7,552.85,3060.59,26157081,99.87,0,0,0.14,552.28,3061.16,26157082,99.87,0,0,0.14,552.27,3061.16,26157083,99.86,0,0,0.14,552.26,3061.16,26157084,99.83,0,0,0.16,552.23,3061.19,26157085,99.61,0,0,0.69,552.69,3060.74,26157086,99.85,0,0,0.16,552.49,3060.94,26157087,99.85,0,0,0.14,552.48,3060.94,26157088,99.84,0,0,0.15,552.48,3060.94,26157089,99.85,0,0,0.13,552.47,3060.94,26157090,99.62,0,0,0.67,552.76,3060.67,26157091,99.87,0,0,0.14,552.46,3060.97,26157092,99.86,0,0,0.16,552.45,3060.97,26157093,99.86,0,0,0.14,552.45,3060.97,26157094,99.85,0,0,0.16,552.44,3060.97,26157095,99.68,0,0,0.6,553.2,3060.24,26157096,99.86,0,0,0.27,552.95,3060.48,26157097,99.85,0,0,0.16,552.94,3060.49,26157098,99.84,0,0,0.14,552.91,3060.51,26157099,99.82,0,0,0.28,553.16,3060.24,26157100,99.66,0,0,0.65,553.35,3060.07,26157101,99.86,0,0,0.21,552.67,3060.73,26157102,99.86,0,0,0.14,552.67,3060.73,26157103,99.84,0,0,0.15,552.65,3060.75,26157104,99.86,0,0,0.14,552.63,3060.77,26157105,99.65,0,0,0.71,553.11,3060.3,26157106,99.85,0,0,0.14,551.17,3062.24,26157107,99.84,0,0,0.16,551.16,3062.24,26157108,99.86,0,0,0.15,551.16,3062.24,26157109,99.84,0,0,0.14,551.12,3062.27,26157110,99.68,0,0,0.43,553.55,3059.87,26157111,99.83,0,0,0.45,553.35,3060.06,26157112,99.88,0,0,0.15,553.34,3060.06,26157113,99.86,0,0,0.14,553.34,3060.06,26157114,99.87,0,0,0.14,553.33,3060.06,26157115,99.66,0,0,0.48,553.26,3060.14,26157116,99.83,0,0,0.38,551.62,3061.78,26157117,99.86,0,0,0.17,551.6,3061.8,26157118,98.78,0,0,0.15,551.47,3061.92,26157119,99.87,0,0,0.14,551.33,3062.06,26157120,99.77,0,0,0.29,552.12,3061.28,26157121,99.71,0,0,0.63,552.82,3060.58,26157122,99.87,0,0,0.14,552.51,3060.89,26157123,99.86,0,0,0.14,552.5,3060.89,26157124,99.87,0,0,0.15,552.5,3060.9,26157125,99.78,0,0,0.31,552.27,3061.16,26157126,99.69,0,0,0.57,552.59,3060.83,26157127,99.85,0,0,0.15,552.24,3061.18,26157128,99.86,0,0,0.15,552.23,3061.18,26157129,99.74,0,0,0.36,552.7,3060.69,26157130,99.78,0,0,0.29,552.7,3060.7,26157131,99.69,0,0,0.56,553.45,3059.95,26157132,99.85,0,0,0.16,552.69,3060.7,26157133,99.87,0,0,0.17,552.68,3060.7,26157134,99.85,0,0,0.14,552.68,3060.72,26157135,99.69,0.03,0.97,0.39,550.78,3062.63,26157136,99.72,0,0,0.51,551.71,3061.69,26157137,99.83,0,0,0.34,552.57,3060.83,26157138,99.85,0,0,0.15,552.55,3060.84,26157139,99.84,0,0,0.17,552.55,3060.84,26157140,99.78,0.01,0.04,0.36,553.06,3060.33,26157141,99.69,0.03,0.91,0.67,558.47,3054.72,26157142,99.88,0,0,0.13,559.23,3053.96,26157143,99.91,0,0,0.18,559.21,3053.98,26157144,99.91,0,0,0.16,559.35,3053.83,26157145,99.88,0.01,0.09,0.34,559.39,3053.81,26157146,99.8,0,0.01,0.62,559.64,3053.57,26157147,99.95,0,0,0.18,559.28,3053.93,26157148,99.93,0,0,0.15,559.28,3053.93,26157149,99.93,0,0,0.15,559.25,3053.95,26157150,99.86,0.04,1.57,0.29,559.55,3053.66,26157151,99.91,0,0,0.3,559.89,3053.32,26157152,99.75,0.05,2.01,0.79,562.9,3050.2,26157153,99.93,0,0.01,0.18,562.51,3050.58,26157154,99.95,0,0,0.17,562.47,3050.61,26157155,99.83,0,0,0.3,562.01,3051.09,26157156,99.93,0,0,0.14,561.99,3051.1,26157157,99.78,0,0,0.56,563.36,3049.73,26157158,99.95,0,0,0.15,563.21,3049.87,26157159,99.82,0.02,0.72,0.43,563.39,3049.66,26157160,99.8,0,0,0.32,563.16,3049.9,26157161,99.45,0,0,0.15,563.15,3049.91,26157162,99.81,0,0,0.57,563.85,3049.21,26157163,99.95,0,0,0.14,563.38,3049.66,26157164,99.96,0,0.01,0.17,563.36,3049.69,26157165,99.85,0,0,0.29,563.13,3049.93,26157166,99.93,0,0,0.16,563.12,3049.94,26157167,99.8,0,0,0.54,563.01,3050.04,26157168,99.92,0,0,0.16,562.11,3050.94,26157169,99.93,0,0,0.14,562.09,3050.96,26157170,99.85,0,0,0.29,563.09,3049.98,26157171,99.92,0,0,0.14,563.25,3049.81,26157172,99.78,0,0,0.55,563.73,3049.32,26157173,99.92,0,0,0.16,563.48,3049.57,26157174,99.94,0,0,0.14,563.47,3049.57,26157175,99.86,0.02,0.68,0.3,563.33,3049.73,26157176,99.94,0,0.01,0.22,563.23,3049.82,26157177,99.79,0.01,0.29,0.59,563.6,3049.44,26157178,99.92,0,0.09,0.16,563.37,3049.66,26157179,99.91,0,0.01,0.2,563.33,3049.7,26157180,99.79,0,0,0.29,562.63,3050.41,26157181,99.94,0,0,0.15,562.58,3050.46,26157182,99.77,0,0,0.58,563.57,3049.46,26157183,99.93,0.01,0.09,0.16,563.46,3049.57,26157184,99.92,0,0,0.17,563.39,3049.63,26157185,99.89,0,0.01,0.3,563.38,3049.66,26157186,99.95,0,0,0.16,563.37,3049.66,26157187,99.91,0,0,0.15,563.37,3049.66,26157188,99.77,0,0,0.59,562.73,3050.3,26157189,99.86,0,0,0.29,563.09,3049.91,26157190,99.9,0,0,0.31,563.36,3049.66,26157191,99.95,0,0,0.14,563.35,3049.66,26157192,99.92,0,0,0.14,563.35,3049.66,26157193,99.79,0,0,0.58,563.93,3049.07,26157194,99.92,0,0,0.16,563.58,3049.42,26157195,99.87,0,0,0.29,563.83,3049.18,26157196,99.91,0,0,0.14,563.81,3049.2,26157197,99.9,0,0,0.2,563.56,3049.44,26157198,99.79,0,0,0.55,563.25,3049.75,26157199,99.94,0,0,0.17,562.75,3050.25,26157200,99.9,0,0,0.32,563.22,3049.79,26157201,99.93,0,0,0.18,563.22,3049.8,26157202,99.89,0,0,0.15,563.22,3049.8,26157203,99.8,0,0,0.58,563.88,3049.14,26157204,99.93,0,0,0.16,563.68,3049.33,26157205,99.87,0,0,0.3,563.45,3049.58,26157206,99.95,0,0,0.14,563.43,3049.6,26157207,99.93,0,0,0.18,563.4,3049.62,26157208,99.8,0,0,0.55,563.87,3049.15,26157209,99.9,0,0,0.18,563.62,3049.39,26157210,99.87,0,0,0.3,563.15,3049.88,26157211,99.91,0,0,0.15,563.11,3049.92,26157212,99.92,0,0,0.18,563.1,3049.93,26157213,99.78,0,0,0.59,563.7,3049.31,26157214,99.93,0,0,0.15,563.58,3049.43,26157215,99.88,0,0,0.3,563.6,3049.43,26157216,99.95,0,0,0.14,563.56,3049.46,26157217,99.9,0,0,0.16,563.56,3049.46,26157218,99.8,0,0,0.41,563.89,3049.13,26157219,99.87,0.01,0.08,0.48,563.33,3049.65,26157220,99.85,0,0.01,0.34,563.65,3049.36,26157221,99.79,0,0.01,0.17,563.62,3049.38,26157222,99.95,0,0,0.14,563.59,3049.4,26157223,99.95,0,0,0.16,563.57,3049.42,26157224,99.81,0,0,0.54,564.15,3048.84,26157225,99.87,0,0,0.33,563.8,3049.2,26157226,99.96,0,0,0.16,563.8,3049.2,26157227,99.94,0,0,0.13,563.79,3049.2,26157228,99.94,0,0,0.17,563.79,3049.2,26157229,94.94,0.37,0.01,258.66,575.68,3037.34,26157230,99.86,0,0,0.36,566.27,3046.54,26157231,99.94,0,0,0.18,566.27,3046.53,26157232,99.94,0,0,0.18,566.27,3046.53,26157233,99.91,0,0,0.18,566.26,3046.53,26157234,99.78,0,0,0.61,565.39,3047.42,26157235,99.87,0,0,0.41,563.49,3049.35,26157236,99.94,0,0,0.18,563.34,3049.49,26157237,99.95,0,0,0.18,563.34,3049.49,26157238,99.95,0,0,0.18,563.33,3049.49,26157239,99.79,0,0,0.57,563.9,3048.93,26157240,99.88,0,0,0.33,564.08,3048.76,26157241,99.95,0,0,0.14,564.08,3048.75,26157242,99.93,0,0,0.18,564.07,3048.76,26157243,99.95,0,0,0.18,564.04,3048.79,26157244,99.81,0,0,0.56,564.28,3048.54,26157245,99.91,0,0,0.34,563.55,3049.28,26157246,99.93,0,0,0.18,563.53,3049.31,26157247,99.93,0,0,0.19,563.58,3049.25,26157248,99.96,0,0,0.18,563.7,3049.12,26157249,99.72,0,0,0.67,564.3,3048.51,26157250,99.9,0,0,0.43,563.96,3048.86,26157251,99.94,0,0,0.16,563.96,3048.86,26157252,99.96,0,0,0.14,563.95,3048.86,26157253,99.96,0,0,0.13,563.94,3048.87,26157254,99.81,0,0,0.41,564.28,3048.54,26157255,99.9,0,0,0.42,563.93,3048.91,26157256,99.95,0,0,0.15,563.93,3048.91,26157257,99.92,0,0,0.2,563.92,3048.91,26157258,99.92,0,0,0.14,563.92,3048.91,26157259,99.77,0,0,0.41,564.16,3048.67,26157260,99.87,0,0,0.41,563.94,3048.91,26157261,99.93,0,0,0.18,563.89,3048.95,26157262,99.95,0,0,0.15,563.89,3048.95,26157263,99.94,0,0,0.14,563.88,3048.96,26157264,99.92,0,0,0.15,563.85,3048.98,26157265,99.75,0,0,0.71,563.34,3049.51,26157266,99.95,0.01,0.14,0.16,562.88,3049.97,26157267,99.93,0.03,0.98,0.39,562.88,3049.95,26157268,99.95,0,0,0.14,562.86,3049.97,26157269,99.94,0,0,0.15,562.83,3049.98,26157270,99.73,0,0.01,0.77,564.5,3048.33,26157271,99.95,0,0,0.17,564.04,3048.79,26157272,99.9,0,0,0.14,564.04,3048.79,26157273,99.9,0,0,0.17,563.68,3049.14,26157274,99.93,0,0,0.16,563.02,3049.79,26157275,99.71,0,0,0.7,563.5,3049.33,26157276,99.93,0,0,0.15,563.03,3049.8,26157277,99.92,0,0,0.16,563.02,3049.8,26157278,99.94,0,0,0.14,563.02,3049.8,26157279,99.82,0,0,0.3,563.18,3049.61,26157280,99.73,0,0,0.67,563.09,3049.72,26157281,99.95,0,0,0.18,562.2,3050.61,26157282,99.94,0,0,0.14,562.2,3050.61,26157283,99.92,0,0,0.16,562.17,3050.63,26157284,99.9,0,0.08,0.2,562.05,3050.74,26157285,99.76,0,0.01,0.67,563.66,3049.15,26157286,99.95,0,0,0.21,563.27,3049.53,26157287,99.91,0,0,0.15,563.25,3049.55,26157288,99.93,0,0,0.14,563.38,3049.41,26157289,99.94,0,0,0.15,563.4,3049.39,26157290,99.73,0,0,0.55,562.6,3050.21,26157291,99.94,0,0,0.34,563.14,3049.67,26157292,99.93,0,0,0.14,563.13,3049.67,26157293,99.94,0,0,0.16,563.1,3049.7,26157294,99.95,0,0,0.16,563.09,3049.7,26157295,99.73,0,0,0.58,563.62,3049.19,26157296,99.94,0,0,0.28,563.35,3049.45,26157297,99.93,0,0,0.16,563.35,3049.45,26157298,99.96,0,0,0.18,563.34,3049.45,26157299,99.95,0,0,0.14,563.34,3049.47,26157300,99.76,0,0,0.47,563.52,3049.31,26157301,99.95,0,0,0.38,563.32,3049.52,26157302,99.92,0,0,0.16,563.32,3049.52,26157303,99.95,0,0,0.17,563.31,3049.52,26157304,99.95,0,0,0.16,563.31,3049.52,26157305,99.88,0,0,0.29,563.06,3049.78,26157306,99.78,0,0,0.57,563.61,3049.23,26157307,99.94,0,0,0.18,563.27,3049.56,26157308,99.95,0,0,0.14,563.25,3049.58,26157309,99.87,0,0,0.3,563.24,3049.56,26157310,99.87,0,0,0.29,563.27,3049.56,26157311,99.79,0,0,0.55,563.61,3049.21,26157312,99.93,0,0,0.18,563.32,3049.5,26157313,99.96,0,0,0.16,563.44,3049.37,26157314,99.93,0,0,0.14,563.43,3049.39,26157315,99.87,0,0,0.32,563.2,3049.63,26157316,99.8,0,0,0.56,564.02,3048.81,26157317,99.93,0,0,0.2,563.41,3049.42,26157318,99.38,2.68,0.04,2.2,564.08,3048.74,26157319,95.6,2.33,0.16,87.41,574.71,3038.94,26157320,99.47,0.39,2.12,1.55,576.99,3034.9,26157321,99.61,0.26,8.45,1.37,577.66,3034.05,26157322,99.46,0.8,36.01,0.81,577.32,3033.73,26157323,99.36,1.16,53.83,1.08,577.32,3032.76,26157324,99.66,0.45,20.21,0.75,575.89,3033.32,26157325,99.84,0,0,0.31,575.49,3033.54,26157326,99.79,0,0,0.49,575.84,3033.21,26157327,99.9,0,0,0.21,575.46,3033.59,26157328,99.72,0.19,0.93,0.31,576.22,3032.79,26157329,99.67,0.67,15.11,0.29,576.77,3032.23,26157330,99.35,1.97,62.84,0.58,577.62,3031.42,26157331,99.71,0.34,5.24,0.83,578.3,3030.76,26157332,99.93,0.01,0.01,0.39,578.64,3030.44,26157333,99.92,0.03,0.07,0.39,578.58,3030.51,26157334,99.9,0.04,0.06,0.31,578.66,3030.45,26157335,99.87,0.02,0.03,0.43,578.62,3030.53,26157336,99.75,0.05,0.1,0.69,579.41,3029.82,26157337,99.92,0.03,0.05,0.45,578.51,3030.74,26157338,99.94,0.02,0.04,0.27,578.53,3030.73,26157339,99.75,0.1,0.18,0.66,576.66,3032.52,26157340,99.82,0.06,0.08,0.47,577.85,3031.33,26157341,99.89,0.01,0.01,0.24,578.1,3031.09,26157342,99.85,0.01,0.02,0.6,577.91,3031.28,26157343,99.95,0.01,0.02,0.2,577.63,3031.56,26157344,99.8,1.78,1.81,1.49,577.65,3030.75,26157345,99.78,2.11,2.08,3.1,577.65,3029.87,26157346,99.89,0.28,0.27,0.92,578.25,3031.63,26157347,99.59,3.88,3.78,2.18,578.51,3033.71,26157348,78.78,0.05,0.09,8.37,839.19,2795.23,26157349,99.9,0.03,0.09,1.7,1100,2539.51,26157350,79.08,0.04,0.86,4.88,1019.74,2619.7,26157351,99.77,0,0,0.32,918.65,2720.71,26157352,99.78,0,0,0.59,625.52,3013.82,26157353,99.93,0,0.13,0.16,625.67,3013.67,26157354,99.89,0.01,0.48,0.25,625.61,3013.73,26157355,99.82,0,0,0.46,624.07,3015.31,26157356,99.88,0,0,0.21,622.8,3016.6,26157357,99.72,0.01,0.19,0.66,623.3,3016.1,26157358,99.92,0,0.01,0.2,623.02,3016.38,26157359,99.93,0,0,0.2,622.99,3016.4,26157360,99.85,0,0,0.38,623.15,3016.26,26157361,99.89,0,0,0.2,623.15,3016.25,26157362,99.74,0,0,0.59,623.61,3015.79,26157363,99.93,0,0,0.16,622.62,3016.77,26157364,99.92,0,0,0.18,622.64,3016.75,26157365,99.87,0,0,0.34,622.85,3016.55,26157366,99.91,0,0,0.19,622.82,3016.58,26157367,99.79,0,0,0.6,623.84,3015.55,26157368,99.94,0,0,0.16,623.16,3016.23,26157369,99.86,0,0,0.35,623.02,3016.35,26157370,99.89,0,0,0.33,622.76,3016.62,26157371,99.91,0,0,0.18,622.87,3016.5,26157372,99.78,0,0,0.43,623.44,3015.93,26157373,99.9,0,0,0.29,623.38,3015.99,26157374,99.9,0,0,0.15,623.35,3016.01,26157375,99.8,0,0,0.32,623.6,3015.78,26157376,99.92,0,0,0.14,623.58,3015.8,26157377,99.9,0,0,0.2,623.33,3016.04,26157378,99.76,0,0,0.57,624.11,3015.25,26157379,99.91,0.01,0.01,0.16,623.76,3015.61,26157380,99.83,0,0,0.31,623.74,3015.64,26157381,99.92,0,0,0.23,623.84,3015.54,26157382,99.91,0,0,0.15,623.89,3015.47,26157383,99.78,0,0,0.56,624.22,3015.15,26157384,99.9,0,0,0.14,623.84,3015.52,26157385,99.84,0,0,0.32,623.81,3015.57,26157386,99.94,0,0,0.14,623.32,3016.05,26157387,99.93,0,0,0.18,623.32,3016.05,26157388,99.75,0,0,0.56,623.66,3015.71,26157389,99.9,0,0,0.15,623.28,3016.09,26157390,99.82,0,0,0.34,621.84,3017.54,26157391,99.92,0,0,0.16,621.81,3017.56,26157392,99.89,0,0,0.14,621.94,3017.43,26157393,99.77,0,0,0.56,623.42,3015.94,26157394,99.9,0,0,0.14,623.13,3016.23,26157395,99.85,0,0,0.31,622.9,3016.48,26157396,99.89,0,0,0.16,622.86,3016.51,26157397,99.91,0,0,0.14,622.83,3016.54,26157398,99.77,0,0,0.55,623.64,3015.72,26157399,99.85,0,0,0.3,624.01,3015.33,26157400,99.87,0,0,0.3,623.79,3015.57,26157401,99.88,0,0,0.16,623.74,3015.61,26157402,99.91,0,0,0.14,623.74,3015.61,26157403,99.79,0,0,0.51,624.21,3015.14,26157404,99.9,0,0,0.19,623.15,3016.2,26157405,99.87,0,0,0.29,623.39,3015.97,26157406,99.9,0,0,0.15,623.37,3015.98,26157407,99.91,0,0,0.16,623.34,3016.01,26157408,99.78,0,0,0.41,624.16,3015.19,26157409,99.9,0,0,0.29,623.56,3015.78,26157410,99.85,0,0,0.31,623.34,3016.02,26157411,99.88,0,0,0.14,623.29,3016.07,26157412,99.91,0,0,0.14,623.26,3016.09,26157413,99.78,0,0,0.42,623.71,3015.63,26157414,99.93,0,0,0.31,623.71,3015.63,26157415,99.86,0,0,0.47,623.95,3015.41,26157416,99.9,0,0,0.15,623.88,3015.47,26157417,99.9,0,0,0.16,623.86,3015.49,26157418,99.78,0,0,0.4,624.17,3015.18,26157419,99.93,0,0,0.29,623.58,3015.78,26157420,99.82,0,0,0.3,623.83,3015.55,26157421,99.91,0,0,0.14,623.81,3015.57,26157422,99.9,0,0,0.16,623.63,3015.74,26157423,99.9,0,0,0.14,623.03,3016.34,26157424,99.75,0,0,0.59,623.6,3015.76,26157425,99.84,0,0,0.33,622.45,3016.93,26157426,99.9,0,0,0.14,622.5,3016.87,26157427,99.92,0,0,0.15,622.37,3017,26157428,99.93,0,0,0.14,621.66,3017.7,26157429,99.64,0,0,0.71,623.2,3016.14,26157430,99.83,0.03,0.96,0.34,622.68,3016.67,26157431,99.92,0.01,0.86,0.26,622.66,3016.67,26157432,99.9,0,0,0.14,622.55,3016.77,26157433,99.93,0,0,0.16,622.52,3016.8,26157434,99.76,0,0,0.56,623.3,3016.02,26157435,99.83,0,0,0.32,623.24,3016.1,26157436,99.92,0,0,0.16,623.23,3016.1,26157437,99.91,0,0,0.18,623.37,3015.95,26157438,99.92,0,0,0.16,623.35,3015.97,26157439,99.75,0.01,0.01,0.49,623.82,3015.49,26157440,99.87,0,0,0.38,623.57,3015.76,26157441,99.91,0,0,0.16,623.12,3016.22,26157442,99.93,0,0,0.14,622.54,3016.79,26157443,99.88,0,0,0.15,622.51,3016.81,26157444,99.74,0,0,0.74,623.23,3016.08,26157445,99.84,0,0,0.31,622.5,3016.84,26157446,99.93,0,0,0.16,622.48,3016.85,26157447,99.94,0,0,0.14,622.64,3016.69,26157448,99.92,0,0,0.14,622.61,3016.71,26157449,99.73,0,0,0.48,623.07,3016.25,26157450,99.9,0,0,0.51,623.33,3016,26157451,99.93,0,0,0.15,623.31,3016.02,26157452,99.94,0,0,0.14,623.28,3016.05,26157453,99.93,0,0,0.17,623.26,3016.07,26157454,99.78,0,0,0.57,623.59,3015.73,26157455,99.83,0,0,0.31,622.27,3017.06,26157456,99.95,0,0,0.18,622.23,3017.1,26157457,99.9,0,0,0.13,622.21,3017.11,26157458,99.93,0,0,0.14,622.38,3016.95,26157459,99.74,0,0,0.46,624.53,3014.77,26157460,99.92,0,0,0.53,623.86,3015.46,26157461,99.93,0,0,0.15,622.9,3016.41,26157462,99.91,0,0,0.18,622.82,3016.49,26157463,99.95,0,0,0.15,622.8,3016.5,26157464,99.92,0,0,0.16,622.77,3016.55,26157465,99.7,0,0,0.71,623.18,3016.15,26157466,99.93,0,0,0.13,622.75,3016.58,26157467,99.93,0,0,0.16,622.72,3016.6,26157468,99.9,0,0,0.14,622.8,3016.52,26157469,99.92,0,0,0.16,622.87,3016.44,26157470,99.69,0,0,0.82,623.63,3015.7,26157471,99.89,0,0,0.16,623.34,3015.98,26157472,99.91,0,0,0.14,623.3,3016.01,26157473,99.94,0,0,0.16,623.28,3016.03,26157474,99.91,0,0.01,0.18,623.24,3016.06,26157475,99.69,0,0,0.78,623.75,3015.57,26157476,99.9,0,0,0.18,623.21,3016.11,26157477,99.94,0,0,0.15,623.27,3016.04,26157478,99.91,0,0,0.14,623.36,3015.95,26157479,99.93,0,0,0.16,623.32,3015.98,26157480,99.7,0,0,0.78,624.03,3015.29,26157481,99.92,0,0,0.13,622.7,3016.62,26157482,99.9,0.01,0.1,0.15,622.27,3017.04,26157483,99.91,0,0,0.18,622.28,3017.03,26157484,99.94,0,0,0.14,622.37,3016.94,26157485,99.73,0,0,0.73,623.56,3015.76,26157486,99.89,0,0,0.21,623.09,3016.23,26157487,99.91,0,0,0.14,623.05,3016.26,26157488,99.93,0,0,0.14,623.03,3016.27,26157489,99.83,0.01,0.08,0.32,622.8,3016.48,26157490,99.68,0.01,0.01,0.59,622.98,3016.31,26157491,99.93,0,0,0.33,622.98,3016.31,26157492,99.93,0,0,0.16,622.95,3016.33,26157493,99.91,0,0,0.14,622.71,3016.56,26157494,99.92,0,0,0.15,622.75,3016.52,26157495,99.73,0,0,0.59,624.24,3015.04,26157496,99.93,0,0,0.27,623.31,3015.97,26157497,99.9,0,0,0.21,623.29,3015.99,26157498,99.88,0,0,0.14,623.27,3016,26157499,99.89,0.01,0.01,0.16,623.25,3016.03,26157500,99.74,0,0,0.54,623.6,3015.69,26157501,99.93,0,0,0.36,623.25,3016.03,26157502,99.93,0,0,0.16,622.46,3016.82,26157503,99.95,0,0,0.14,622.44,3016.84,26157504,99.9,0,0,0.15,622.48,3016.8,26157505,99.75,0,0,0.51,623.46,3015.83,26157506,99.89,0,0,0.39,623.57,3015.71,26157507,99.91,0,0,0.16,623.54,3015.74,26157508,99.93,0,0,0.14,623.53,3015.74,26157509,99.93,0,0,0.14,623.5,3015.77,26157510,99.85,0,0,0.32,623.52,3015.76,26157511,99.7,0,0,0.56,624.03,3015.25,26157512,99.92,0,0,0.14,623.71,3015.56,26157513,99.92,0,0,0.15,623.68,3015.59,26157514,99.9,0,0,0.14,623.67,3015.6,26157515,99.88,0,0,0.32,623.43,3015.86,26157516,99.82,0,0,0.57,624.15,3015.13,26157517,99.88,0,0,0.14,623.85,3015.42,26157518,99.9,0,0,0.18,623.84,3015.43,26157519,99.85,0,0,0.35,624.3,3014.94,26157520,99.84,0,0,0.38,624.3,3014.96,26157521,99.72,0,0,0.58,624.85,3014.4,26157522,99.85,0,0,0.16,623.94,3015.31,26157523,99.76,0,0,0.14,623.73,3015.51,26157524,99.85,0,0,0.15,623.72,3015.52,26157525,99.83,0,0,0.31,623.53,3015.73,26157526,99.78,0,0,0.57,623.72,3015.53,26157527,99.84,0,0,0.13,623.18,3016.07,26157528,99.93,0,0,0.16,623.27,3015.97,26157529,99.9,0,0,0.16,623.33,3015.91,26157530,99.89,0,0,0.33,623.56,3015.7,26157531,99.73,0,0,0.54,623.92,3015.33,26157532,99.85,0,0,0.16,623.76,3015.49,26157533,99.86,0,0,0.15,623.73,3015.51,26157534,99.85,0,0.02,0.17,623.71,3015.53,26157535,99.8,0,0,0.38,624.08,3015.18,26157536,99.75,0,0,0.42,624.19,3015.07,26157537,99.88,0,0,0.29,623.58,3015.68,26157538,99.84,0,0,0.14,623.56,3015.69,26157539,99.89,0,0,0.16,623.54,3015.71,26157540,99.76,0,0,0.31,623.78,3015.49,26157541,99.75,0,0,0.33,624.11,3015.15,26157542,99.82,0,0,0.4,623.95,3015.31,26157543,99.87,0,0,0.14,623.2,3016.05,26157544,99.85,0,0,0.17,623.2,3016.05,26157545,99.81,0,0,0.33,622.95,3016.32,26157546,99.84,0,0,0.16,622.94,3016.33,26157547,99.7,0,0,0.54,624.55,3014.73,26157548,99.85,0,0,0.14,624.07,3015.2,26157549,99.75,0,0,0.3,623.79,3015.46,26157550,99.79,0,0,0.31,623.79,3015.47,26157551,99.86,0,0,0.18,623.76,3015.5,26157552,99.72,0,0,0.55,624.34,3014.92,26157553,99.85,0,0,0.18,623.97,3015.28,26157554,99.85,0,0,0.15,623.96,3015.3,26157555,99.83,0,0,0.33,624.2,3015.08,26157556,99.86,0,0,0.16,624.19,3015.09,26157557,99.64,0,0,0.54,624.52,3014.75,26157558,99.84,0,0,0.2,624.14,3015.13,26157559,99.84,0.01,0.01,0.14,624.28,3014.99,26157560,99.8,0,0,0.32,624.54,3014.74,26157561,99.84,0.01,0.01,0.16,624.49,3014.79,26157562,99.72,0,0,0.6,624.86,3014.41,26157563,99.84,0.01,0.1,0.15,623.86,3015.4,26157564,99.83,0,0,0.18,623.74,3015.51,26157565,99.78,0.01,0.01,0.37,623.46,3015.81,26157566,99.84,0,0,0.14,623.41,3015.85,26157567,99.68,0,0,0.43,623.83,3015.43,26157568,99.86,0,0,0.3,623.62,3015.63,26157569,99.76,0,0,0.14,597.25,3042,26157570,99.74,0,0,0.33,576.47,3062.8,26157571,99.85,0,0,0.14,576.43,3062.83,26157572,99.7,0,0,0.43,576.9,3062.36,26157573,99.88,0,0,0.33,576.14,3063.11,26157574,99.85,0,0,0.14,576.12,3063.13,26157575,99.8,0,0,0.32,576.12,3063.14,26157576,99.81,0.01,0.08,0.22,575.39,3063.9,26157577,99.85,0,0,0.24,568.45,3071.23,26157578,99.7,0,0,0.56,569.51,3070.17,26157579,99.75,0,0,0.29,569.17,3070.49,26157580,99.78,0,0,0.33,568.46,3071.22,26157581,99.83,0,0,0.15,568.39,3071.29,26157582,99.85,0,0,0.14,567.83,3071.85,26157583,99.7,0,0,0.56,568.69,3070.99,26157584,99.83,0,0,0.14,568.32,3071.34,26157585,99.81,0,0,0.32,568.18,3071.51,26157586,99.87,0,0,0.16,568.25,3071.43,26157587,99.87,0,0,0.15,568.23,3071.45,26157588,99.71,0,0,0.65,568.55,3071.11,26157589,99.85,0,0,0.15,568.16,3071.5,26157590,99.79,0,0,0.3,568.42,3071.25,26157591,99.85,0,0,0.15,568.39,3071.28,26157592,99.83,0,0,0.16,568.38,3071.28,26157593,96.52,0.02,0.01,77.92,576.98,3064.77,26157594,99.84,0,0,0.25,569.64,3070.22,26157595,99.8,0,0,0.41,570.57,3069.33,26157596,99.85,0,0,0.16,570.36,3069.54,26157597,99.86,0,0,0.19,570.33,3069.56,26157598,99.71,0,0,0.59,569.79,3070.11,26157599,99.84,0,0,0.19,568.38,3071.54,26157600,99.79,0,0,0.36,568.39,3071.54,26157601,99.86,0,0,0.17,568.35,3071.57,26157602,99.08,0,0,0.17,568.34,3071.58,26157603,99.72,0,0,0.59,568.75,3071.18,26157604,99.85,0,0,0.18,568.22,3071.71,26157605,99.8,0,0,0.36,568.24,3071.71,26157606,99.84,0,0,0.21,568.21,3071.74,26157607,99.84,0,0,0.2,568.19,3071.76,26157608,99.7,0,0,0.63,568.97,3070.96,26157609,99.79,0,0,0.34,568.15,3071.77,26157610,99.83,0,0,0.35,567.91,3072.03,26157611,99.85,0,0,0.19,567.88,3072.05,26157612,99.84,0,0,0.16,567.86,3072.07,26157613,99.69,0,0,0.43,568.24,3071.69,26157614,99.85,0,0,0.31,568.25,3071.7,26157615,99.77,0,0,0.35,568.49,3071.48,26157616,99.83,0,0,0.18,568.46,3071.51,26157617,99.84,0,0,0.21,568.44,3071.52,26157618,99.69,0,0,0.43,568.8,3071.16,26157619,99.86,0.01,0.01,0.31,568.64,3071.31,26157620,99.8,0,0,0.39,568.16,3071.81,26157621,99.85,0,0,0.2,568.12,3071.85,26157622,99.86,0,0,0.2,568.11,3071.85,26157623,99.85,0.01,0.1,0.27,568.22,3071.74,26157624,99.7,0,0,0.57,568.75,3071.2,26157625,99.82,0,0,0.32,568.4,3071.56,26157626,99.86,0,0,0.16,568.37,3071.59,26157627,99.84,0,0,0.14,568.35,3071.61,26157628,99.86,0,0,0.16,568.33,3071.62,26157629,99.72,0,0,0.59,568.48,3071.46,26157630,99.81,0,0,0.36,568.33,3071.63,26157631,99.87,0,0,0.16,568.23,3071.73,26157632,99.86,0,0,0.17,568.21,3071.74,26157633,99.85,0,0,0.17,568.19,3071.76,26157634,99.73,0,0,0.62,568.8,3071.14,26157635,99.77,0,0,0.4,568.42,3071.54,26157636,99.84,0.01,0.01,0.16,568.36,3071.59,26157637,99.87,0,0,0.24,568.35,3071.6,26157638,99.86,0,0,0.16,568.49,3071.45,26157639,99.56,0,0,0.73,569.01,3070.91,26157640,99.76,0,0,0.34,568.94,3070.99,26157641,99.85,0,0,0.15,568.95,3070.98,26157642,99.86,0,0,0.16,568.92,3071,26157643,99.86,0,0,0.15,568.89,3071.03,26157644,98.23,0,0,0.45,569.16,3070.76,26157645,99.76,0,0,0.47,566.93,3073,26157646,99.85,0,0,0.14,566.9,3073.04,26157647,99.86,0,0,0.13,566.86,3073.07,26157648,99.83,0,0,0.16,566.94,3072.99,26157649,99.71,0,0,0.4,567.5,3072.42,26157650,99.81,0,0,0.45,568.47,3071.46,26157651,99.86,0,0,0.17,568.44,3071.49,26157652,99.83,0,0,0.14,568.43,3071.5,26157653,99.85,0,0,0.14,568.39,3071.53,26157654,99.88,0,0,0.15,568.38,3071.53,26157655,99.65,0,0,0.74,569.07,3070.86,26157656,99.85,0,0,0.15,568.35,3071.57,26157657,99.85,0,0,0.16,568.33,3071.59,26157658,99.82,0,0,0.14,568.35,3071.57,26157659,99.83,0,0,0.15,568.48,3071.44,26157660,99.63,0,0,0.7,567.45,3072.48,26157661,99.83,0,0,0.16,566.96,3072.97,26157662,99.85,0,0,0.16,566.92,3073,26157663,96.12,0,0,0.16,566.9,3073.02,26157664,99.85,0,0,0.13,566.88,3073.04,26157665,99.67,0,0,0.73,569.28,3070.65,26157666,99.85,0,0,0.17,568.58,3071.35,26157667,99.84,0,0,0.14,568.64,3071.28,26157668,99.85,0,0,0.15,568.72,3071.2,26157669,99.72,0,0,0.3,567.98,3071.92,26157670,99.68,0,0,0.67,568.87,3071.04,26157671,99.85,0,0,0.2,568.41,3071.5,26157672,99.84,0,0,0.16,568.38,3071.52,26157673,99.85,0,0,0.14,568.37,3071.53,26157674,99.84,0,0,0.14,568.34,3071.57,26157675,99.66,0,0,0.75,568.45,3071.48,26157676,99.88,0,0,0.16,567.57,3072.35,26157677,99.83,0,0,0.21,567.64,3072.27,26157678,99.85,0,0,0.14,567.72,3072.19,26157679,99.83,0.01,0.01,0.15,567.69,3072.21,26157680,99.68,0,0,0.74,569.22,3070.7,26157681,99.85,0.01,0.01,0.17,568.63,3071.29,26157682,99.85,0,0,0.14,568.57,3071.34,26157683,99.85,0,0,0.15,568.7,3071.21,26157684,99.83,0,0,0.14,568.68,3071.23,26157685,99.68,0,0,0.59,569.02,3070.91,26157686,99.86,0,0,0.34,568.91,3071.01,26157687,99.87,0,0,0.14,568.87,3071.04,26157688,99.85,0,0,0.15,568.86,3071.05,26157689,99.85,0,0,0.16,568.83,3071.07,26157690,99.66,0,0,0.75,569.1,3070.82,26157691,99.85,0,0,0.14,568.57,3071.35,26157692,99.86,0,0,0.14,568.55,3071.36,26157693,99.83,0,0,0.17,568.52,3071.38,26157694,99.85,0,0,0.14,568.61,3071.3,26157695,99.66,0,0,0.48,569.07,3070.85,26157696,99.9,0,0,0.4,568.92,3071,26157697,99.89,0,0,0.15,568.9,3071.01,26157698,99.91,0,0,0.17,568.88,3071.03,26157699,99.81,0,0,0.3,568.63,3071.26,26157700,99.85,0,0,0.3,568.88,3071.03,26157701,99.79,0,0,0.6,568.97,3070.92,26157702,99.93,0,0,0.14,568.58,3071.31,26157703,99.91,0,0,0.15,568.56,3071.33,26157704,99.88,0,0,0.14,568.52,3071.36,26157705,99.89,0,0,0.38,568.56,3071.34,26157706,99.8,0,0,0.59,569.2,3070.7,26157707,99.94,0,0,0.16,568.71,3071.19,26157708,99.95,0,0,0.18,568.69,3071.2,26157709,99.95,0,0,0.16,568.67,3071.22,26157710,99.9,0,0,0.32,568.67,3071.23,26157711,99.82,0,0,0.57,568.58,3071.31,26157712,99.94,0,0,0.18,567.89,3072,26157713,99.95,0,0,0.16,567.87,3072.02,26157714,99.94,0,0,0.17,567.85,3072.04,26157715,99.86,0,0,0.42,568.72,3071.18,26157716,99.8,0,0,0.48,568.68,3071.21,26157717,99.95,0,0,0.26,568.47,3071.42,26157718,99.94,0,0,0.17,568.46,3071.42,26157719,99.95,0,0,0.16,568.43,3071.45,26157720,99.88,0,0,0.38,569.17,3070.73,26157721,99.8,0,0,0.61,569.33,3070.57,26157722,99.93,0,0,0.16,568.14,3071.75,26157723,99.95,0,0,0.14,568.13,3071.76,26157724,99.95,0,0,0.15,568.09,3071.79,26157725,99.9,0,0,0.31,568.58,3071.32,26157726,99.82,0,0,0.56,568.94,3070.96,26157727,99.94,0,0,0.14,568.72,3071.17,26157728,99.92,0,0,0.16,568.69,3071.2,26157729,99.83,0,0,0.32,568.93,3070.93,26157730,99.83,0,0,0.33,569.15,3070.73,26157731,99.81,0,0,0.51,569.49,3070.38,26157732,99.93,0,0,0.21,569.1,3070.77,26157733,99.95,0,0,0.14,569.09,3070.77,26157734,99.95,0,0,0.16,568.41,3071.45,26157735,99.89,0,0,0.35,568.4,3071.48,26157736,99.82,0,0,0.32,568.94,3070.94,26157737,99.9,0,0,0.44,568.05,3071.82,26157738,99.93,0.01,0.01,0.17,568.08,3071.79,26157739,99.91,0.01,0.01,0.16,568.08,3071.78,26157740,99.9,0,0,0.32,568.32,3071.55,26157741,99.95,0,0,0.13,568.3,3071.57,26157742,99.78,0,0,0.57,568,3071.86,26157743,99.92,0,0,0.16,567.66,3072.2,26157744,99.8,0.03,0.12,0.18,569.12,3070.69,26157745,99.86,0.02,0.02,0.46,577.39,3062.24,26157746,99.91,0.01,0.01,0.29,577.72,3061.86,26157747,99.77,0.01,0,0.64,578.71,3060.85,26157748,99.9,0.01,0.28,0.28,578.66,3060.89,26157749,99.93,0,0,0.15,578.39,3061.14,26157750,99.87,0.01,0,0.36,578.65,3060.9,26157751,99.93,0.03,0.14,0.24,578.95,3060.6,26157752,99.81,0,0.07,0.63,579.09,3060.44,26157753,99.92,0,0,0.18,578.71,3060.82,26157754,99.89,0.03,0,0.19,578.67,3060.85,26157755,99.89,0.02,0,0.38,578.67,3060.87,26157756,99.91,0.04,0,0.25,578.69,3060.85,26157757,99.79,0.04,0.07,0.73,578.69,3060.84,26157758,99.93,0.02,0.14,0.27,577.43,3062.1,26157759,99.81,0.01,0.58,0.46,578.67,3060.78,26157760,99.81,0.01,0.48,0.43,578.44,3061.02,26157761,99.91,0.01,0.31,0.2,578.39,3061.05,26157762,99.78,0,0,0.56,578.86,3060.58,26157763,99.9,0,0.1,0.15,578.37,3061.07,26157764,99.87,0.01,0.24,0.19,578.37,3061.07,26157765,99.38,0.01,0.24,0.37,578.4,3061.06,26157766,99.93,0,0,0.19,578.33,3061.12,26157767,99.82,0,0,0.43,578.86,3060.59,26157768,99.95,0,0,0.29,578.66,3060.78,26157769,99.94,0,0,0.15,578.62,3060.82,26157770,99.9,0,0,0.31,578.62,3060.84,26157771,99.91,0.01,0.28,0.2,578.62,3060.83,26157772,99.8,0,0,0.48,578.82,3060.61,26157773,99.92,0,0,0.29,577.63,3061.8,26157774,99.93,0,0,0.17,577.56,3061.86,26157775,99.88,0,0,0.37,578.01,3061.43,26157776,99.93,0,0,0.21,577.96,3061.47,26157777,99.95,0,0.07,0.17,577.92,3061.51,26157778,99.8,0,0,0.58,577.96,3061.46,26157779,99.93,0,0,0.16,577.58,3061.85,26157780,99.86,0,0,0.3,577.35,3062.08,26157781,99.94,0,0,0.14,577.46,3061.97,26157782,99.93,0,0,0.18,577.41,3062.02,26157783,99.76,0.01,0.17,0.6,578.54,3060.88,26157784,99.68,0.01,0.16,0.19,578.42,3061,26157785,99.9,0,0.02,0.38,578.61,3060.82,26157786,99.91,0.02,0.25,0.19,578.58,3060.84,26157787,99.93,0.01,0.12,0.25,578.57,3060.84,26157788,99.66,0.03,0.92,0.75,579.43,3059.97,26157789,99.76,0.02,0.65,0.42,579.09,3060.28,26157790,99.89,0.01,0,0.43,578.86,3060.52,26157791,99.66,0.03,2.13,0.27,578.86,3060.49,26157792,99.74,0.03,1.61,0.3,578.76,3060.56,26157793,99.73,0.01,0.36,0.52,579.29,3060.01,26157794,99.89,0,0,0.28,579.01,3060.29,26157795,99.75,0.02,1,0.4,578.72,3060.58,26157796,99.93,0.01,0,0.2,578.74,3060.55,26157797,99.78,0.02,1.07,0.28,578.74,3060.53,26157798,99.7,0.02,0.71,0.66,579.51,3059.75,26157799,99.61,0.06,1.95,0.29,579,3060.24,26157800,99.86,0,0,0.41,578.92,3060.3,26157801,99.54,0.05,3.03,0.28,579.07,3060.11,26157802,99.93,0,0,0.24,579.18,3059.98,26157803,99.79,0,0,0.44,579.36,3059.79,26157804,99.93,0.01,0.01,0.32,578.61,3060.54,26157805,99.82,0.01,0.36,0.34,578.86,3060.3,26157806,99.93,0,0,0.19,578.88,3060.28,26157807,99.93,0,0,0.16,578.84,3060.31,26157808,99.81,0,0,0.52,579.15,3059.99,26157809,99.93,0,0,0.19,578.77,3060.37,26157810,99.89,0,0,0.33,578.93,3060.23,26157811,99.93,0.01,0.01,0.16,578.89,3060.27,26157812,99.9,0,0,0.18,578.78,3060.36,26157813,99.8,0,0,0.41,579.12,3060.02,26157814,99.94,0,0,0.29,578.91,3060.22,26157815,99.88,0,0,0.32,579.13,3060.02,26157816,99.93,0,0,0.16,579.1,3060.05,26157817,99.92,0,0,0.16,579.05,3060.09,26157818,99.94,0,0,0.14,579.02,3060.12,26157819,99.75,0,0,0.72,579.11,3059.99,26157820,99.86,0,0,0.3,578.92,3060.2,26157821,99.9,0.01,0.32,0.2,578.38,3060.73,26157822,99.94,0,0,0.16,578.25,3060.85,26157823,99.88,0.03,0.33,0.23,578.33,3060.77,26157824,99.77,0.02,0.07,0.65,578.63,3060.48,26157825,99.85,0,0,0.34,578.52,3060.6,26157826,99.93,0,0,0.17,578.49,3060.63,26157827,99.93,0.02,0,0.18,578.62,3060.5,26157828,99.94,0,0,0.13,578.58,3060.53,26157829,99.81,0,0,0.56,579.09,3060.02,26157830,99.89,0,0,0.31,578.54,3060.59,26157831,99.92,0,0,0.14,578.49,3060.63,26157832,99.93,0,0,0.21,578.51,3060.6,26157833,99.91,0,0,0.14,578.63,3060.48,26157834,99.79,0,0,0.55,579.3,3059.8,26157835,99.84,0,0,0.34,579.17,3059.96,26157836,99.93,0.02,0,0.2,578.95,3060.17,26157837,99.94,0.03,0,0.2,578.95,3060.17,26157838,99.94,0,0,0.15,578.84,3060.27,26157839,99.82,0,0,0.56,579.2,3059.9,26157840,99.81,0.02,0.32,0.36,578.63,3060.49,26157841,99.93,0,0,0.21,578.59,3060.52,26157842,99.88,0.02,0.32,0.22,578.49,3060.61,26157843,99.88,0.02,0.32,0.25,578.52,3060.57,26157844,99.79,0.04,0,0.65,578.93,3060.15,26157845,99.8,0.02,0.32,0.4,578.31,3060.79,26157846,99.91,0.04,0,0.25,578.25,3060.84,26157847,99.84,0.04,0.65,0.27,578.28,3060.79,26157848,99.9,0.02,0.33,0.24,578.32,3060.75,26157849,99.76,0,0,0.63,579.66,3059.38,26157850,99.8,0.04,0.32,0.52,578.75,3060.31,26157851,99.81,0.03,0.93,0.27,578.77,3060.26,26157852,99.88,0.01,0.37,0.21,578.81,3060.21,26157853,99.94,0,0,0.16,578.76,3060.25,26157854,99.77,0.02,0.33,0.46,579.22,3059.79,26157855,99.87,0,0,0.51,578.78,3060.23,26157856,99.91,0.02,0.32,0.23,578.69,3060.32,26157857,99.88,0.02,0.33,0.26,578.74,3060.26,26157858,99.86,0.03,0.65,0.25,578.67,3060.32,26157859,99.88,0.03,0.33,0.26,578.67,3060.31,26157860,99.75,0.01,0.01,0.76,579.27,3059.71,26157861,99.88,0.02,0.33,0.2,578.95,3060.02,26157862,99.86,0.02,0.33,0.27,578.88,3060.08,26157863,99.93,0,0,0.17,578.89,3060.06,26157864,99.93,0.05,0.01,0.25,578.87,3060.07,26157865,99.65,0.03,0.65,0.82,579.27,3059.68,26157866,99.88,0.02,0.33,0.26,578.96,3059.98,26157867,99.95,0,0,0.15,578.93,3060,26157868,99.88,0.02,0.33,0.25,578.87,3060.06,26157869,99.85,0.01,0.68,0.21,578.86,3060.05,26157870,99.75,0,0,0.8,579.44,3059.49,26157871,99.93,0,0,0.17,578.88,3060.04,26157872,99.9,0.01,0.33,0.18,578.85,3060.06,26157873,99.87,0.01,0.32,0.23,578.83,3060.06,26157874,99.86,0.03,0.65,0.24,578.83,3060.06,26157875,99.57,0.02,1.33,0.68,579.17,3059.71,26157876,99.93,0,0,0.28,578.81,3060.05,26157877,99.94,0,0,0.14,578.77,3060.08,26157878,99.93,0,0,0.16,578.74,3060.11,26157879,99.86,0,0,0.3,579.21,3059.62,26157880,99.75,0,0,0.73,579.49,3059.35,26157881,99.92,0,0,0.16,579.09,3059.75,26157882,99.93,0,0,0.16,579.05,3059.78,26157883,99.92,0,0,0.15,579.02,3059.81,26157884,99.93,0,0,0.16,578.96,3059.88,26157885,99.69,0,0,0.76,579.28,3059.58,26157886,99.89,0.01,0.32,0.19,579.18,3059.67,26157887,99.92,0,0,0.16,578.98,3059.86,26157888,99.95,0,0,0.17,578.95,3059.89,26157889,99.94,0,0,0.14,578.6,3060.24,26157890,99.74,0,0,0.7,578.83,3060.02,26157891,99.94,0,0,0.22,578.32,3060.53,26157892,99.92,0,0,0.14,578.28,3060.56,26157893,99.95,0,0,0.16,578.24,3060.6,26157894,99.93,0,0,0.16,578.19,3060.64,26157895,99.68,0.01,0.31,0.65,578.71,3060.14,26157896,99.83,0.01,0.66,0.36,578.04,3060.79,26157897,99.93,0,0,0.16,578.02,3060.8,26157898,99.84,0.03,0.65,0.23,578.04,3060.77,26157899,99.83,0.04,0.61,0.38,578.21,3060.6,26157900,99.1,0.01,0.69,11.34,578.22,3060.81,26157901,99.85,0.02,0.71,0.41,578.59,3060.49,26157902,99.83,0.04,0.65,0.28,578.59,3060.47,26157903,99.87,0.02,0.33,0.24,578.57,3060.48,26157904,99.93,0,0,0.17,578.55,3060.49,26157905,99.9,0.03,0,0.4,578.06,3061.01,26157906,99.79,0.02,0,0.59,578.83,3060.24,26157907,99.92,0.02,0,0.16,578.58,3060.49,26157908,99.93,0,0,0.17,578.52,3060.54,26157909,99.9,0,0,0.27,578.49,3060.55,26157910,99.92,0,0,0.31,577.99,3061.07,26157911,99.8,0.02,0,0.58,578.93,3060.12,26157912,99.9,0.02,0,0.21,578.83,3060.21,26157913,99.93,0.03,0,0.2,578.74,3060.3,26157914,99.8,0.05,0.97,0.29,578.77,3060.26,26157915,99.82,0.01,0.65,0.38,578.78,3060.25,26157916,99.72,0.01,0.65,0.63,578.83,3060.18,26157917,99.81,0.02,1,0.27,578.26,3060.73,26157918,99.8,0.02,0.97,0.2,578.22,3060.75,26157919,99.82,0.03,1.02,0.27,578.16,3060.79,26157920,99.85,0.01,0.33,0.43,578.17,3060.78,26157921,99.8,0,0,0.59,579.09,3059.85,26157922,99.92,0,0,0.14,578.66,3060.28,26157923,99.92,0.01,0.01,0.16,578.71,3060.22,26157924,99.9,0.01,0.01,0.17,578.68,3060.25,26157925,99.88,0,0,0.35,578.66,3060.29,26157926,99.8,0,0,0.52,579.17,3059.77,26157927,99.91,0,0,0.2,578.76,3060.18,26157928,99.8,0.03,0.84,0.23,578.45,3060.47,26157929,99.85,0.02,0.49,0.27,578.35,3060.56,26157930,99.76,0.01,0.85,0.38,578.43,3060.49,26157931,99.72,0.01,0.42,0.4,578.79,3060.11,26157932,99.77,0.03,1.36,0.54,578.86,3060.02,26157933,99.77,0.02,1.29,0.21,578.88,3059.98,26157934,99.93,0,0,0.14,578.9,3059.95,26157935,99.83,0.01,0.43,0.43,578.64,3060.23,26157936,99.81,0,0,0.35,579.02,3059.84,26157937,99.91,0,0,0.43,578.86,3060,26157938,99.9,0,0,0.18,578.82,3060.04,26157939,99.88,0,0,0.31,578.3,3060.53,26157940,99.9,0,0,0.38,578.05,3060.8,26157941,99.87,0.01,0.42,0.22,578.14,3060.7,26157942,99.78,0,0,0.56,579,3059.83,26157943,99.95,0,0,0.15,578.88,3059.95,26157944,99.94,0,0,0.15,578.87,3059.97,26157945,99.83,0,0,0.33,579.11,3059.75,26157946,99.93,0,0,0.15,579.06,3059.79,26157947,99.8,0,0,0.57,579.55,3059.3,26157948,99.94,0,0,0.14,578.75,3060.09,26157949,99.88,0,0,0.15,578.76,3060.08,26157950,99.83,0,0,0.31,579.14,3059.72,26157951,99.94,0,0,0.16,579.1,3059.75,26157952,99.79,0,0,0.51,579.45,3059.4,26157953,99.43,0.05,3.79,0.35,578.6,3060.21,26157954,99.93,0,0,0.2,578.54,3060.24,26157955,99.83,0,0,0.36,578.96,3059.84,26157956,99.91,0,0,0.17,578.8,3059.99,26157957,95.28,0.35,0.01,78.72,587.7,3051.63,26157958,99.89,0,0,179.58,581.29,3057.21,26157959,99.91,0,0,0.16,581.27,3057.23,26157960,99.85,0,0,0.38,580.78,3057.73,26157961,99.94,0,0,0.17,580.72,3057.78,26157962,99.78,0.01,0.01,0.59,580.84,3057.67,26157963,99.92,0,0,0.2,579.05,3059.49,26157964,99.9,0,0,0.19,579.02,3059.52,26157965,96.31,0,0,0.29,578.52,3060.04,26157966,99.93,0,0,0.14,578.48,3060.08,26157967,99.8,0,0,0.43,578.92,3059.63,26157968,99.93,0,0,0.29,579.09,3059.47,26157969,99.85,0,0,0.26,579.31,3059.23,26157970,99.88,0,0,0.28,579.06,3059.49,26157971,99.93,0,0,0.18,579.01,3059.54,26157972,99.84,0,0,0.17,579.26,3059.29,26157973,99.84,0,0,0.57,579.53,3059.01,26157974,99.93,0,0,0.16,579.27,3059.27,26157975,99.89,0,0,0.34,579.08,3059.47,26157976,99.95,0,0,0.17,579.04,3059.51,26157977,99.93,0,0,0.24,579,3059.55,26157978,99.79,0,0,0.61,579.47,3059.09,26157979,99.92,0.01,0.01,0.16,578.95,3059.6,26157980,99.86,0,0,0.28,578.96,3059.61,26157981,99.94,0,0,0.18,579.07,3059.49,26157982,99.91,0,0,0.18,579.03,3059.53,26157983,99.79,0,0,0.57,579.35,3059.2,26157984,99.87,0.01,0.01,0.17,578.96,3059.59,26157985,99.78,0,0,0.35,578.69,3059.87,26157986,99.93,0,0,0.18,578.81,3059.75,26157987,99.93,0,0,0.2,578.81,3059.75,26157988,99.8,0,0,0.58,579.45,3059.1,26157989,99.92,0,0,0.23,579.24,3059.31,26157990,99.8,0,0,0.34,578.1,3060.46,26157991,99.89,0,0,0.2,577.95,3060.61,26157992,99.93,0,0,0.2,578.01,3060.55,26157993,99.77,0,0,0.48,578.55,3060.01,26157994,99.91,0,0,0.36,578.28,3060.27,26157995,99.85,0,0,0.34,578.98,3059.59,26157996,99.94,0,0,0.2,578.97,3059.59,26157997,99.89,0,0,0.2,578.94,3059.62,26157998,99.78,0,0,0.63,579.59,3058.97,26157999,99.86,0,0,0.32,578.61,3059.93,26158000,99.85,0,0,0.32,579.06,3059.5,26158001,99.88,0,0,0.15,579.03,3059.52,26158002,99.9,0,0,0.18,579,3059.55,26158003,99.8,0,0,0.61,579.4,3059.14,26158004,99.89,0,0,0.19,578.96,3059.62,26158005,99.82,0,0,0.32,579.1,3059.5,26158006,99.9,0,0,0.2,579.07,3059.54,26158007,99.91,0,0,0.2,579.04,3059.56,26158008,99.93,0,0,0.21,578.99,3059.6,26158009,99.77,0,0,0.61,579.55,3059.04,26158010,99.85,0,0,0.34,578.74,3059.87,26158011,99.9,0,0,0.15,578.84,3059.76,26158012,99.9,0,0,0.19,578.81,3059.79,26158013,99.88,0,0,0.2,578.78,3059.81,26158014,99.8,0,0,0.61,579.32,3059.27,26158015,99.89,0,0,0.34,579.21,3059.39,26158016,99.88,0,0,0.23,579.2,3059.41,26158017,99.93,0,0,0.21,579.34,3059.26,26158018,99.9,0,0,0.2,579.25,3059.34,26158019,99.77,0,0,0.61,579.51,3059.08,26158020,99.83,0,0,0.29,579.2,3059.41,26158021,99.89,0,0,0.2,579.25,3059.36,26158022,99.92,0,0,0.2,579.31,3059.29,26158023,99.91,0,0,0.18,579.27,3059.32,26158024,99.75,0,0,0.61,579.6,3058.99,26158025,99.87,0,0,0.29,579.46,3059.14,26158026,99.9,0,0,0.17,579.45,3059.15,26158027,99.9,0,0,0.16,579.55,3059.04,26158028,99.93,0,0,0.18,579.51,3059.08,26158029,99.7,0,0,0.64,579.24,3059.32,26158030,99.88,0,0,0.33,578.69,3059.9,26158031,99.91,0,0,0.17,578.74,3059.84,26158032,99.92,0,0,0.18,578.77,3059.8,26158033,99.92,0,0,0.16,578.74,3059.83,26158034,99.8,0,0,0.61,579.27,3059.29,26158035,99.87,0,0,0.29,579.18,3059.41,26158036,99.93,0,0,0.17,579.34,3059.24,26158037,99.88,0,0,0.24,579.3,3059.27,26158038,99.94,0,0,0.15,579.27,3059.3,26158039,99.76,0.01,0.01,0.43,579.58,3058.98,26158040,99.84,0,0,0.46,578.81,3059.77,26158041,99.94,0,0,0.2,578.72,3059.86,26158042,99.92,0,0,0.15,578.84,3059.74,26158043,99.92,0,0,0.15,578.33,3060.24,26158044,99.77,0.01,0.01,0.43,578.45,3060.11,26158045,99.86,0,0,0.41,578.5,3060.08,26158046,99.9,0,0,0.13,578.47,3060.1,26158047,99.89,0,0,0.17,578.44,3060.13,26158048,99.93,0,0,0.14,578.49,3060.07,26158049,99.92,0,0,0.14,578.57,3059.99,26158050,99.65,0,0,0.67,578.81,3059.77,26158051,99.93,0,0,0.16,578.29,3060.29,26158052,99.92,0,0,0.16,578.25,3060.32,26158053,99.91,0,0,0.14,578.22,3060.35,26158054,99.93,0,0,0.14,578.18,3060.38,26158055,99.73,0,0,0.66,578.98,3059.6,26158056,99.92,0,0,0.14,578.57,3060.01,26158057,99.9,0,0,0.16,578.53,3060.04,26158058,99.93,0,0,0.15,578.5,3060.07,26158059,99.74,0,0,0.27,578.22,3060.32,26158060,99.76,0,0.01,0.66,578.95,3059.61,26158061,99.89,0,0,0.15,578.83,3059.72,26158062,99.89,0,0,0.16,578.79,3059.75,26158063,99.91,0,0,0.16,578.76,3059.78,26158064,99.94,0,0,0.14,578.74,3059.82,26158065,99.75,0,0,0.55,578.96,3059.61,26158066,99.92,0,0,0.32,578.43,3060.13,26158067,99.93,0,0,0.16,578.45,3060.12,26158068,99.85,0,0,0.16,578.56,3060,26158069,99.9,0,0,0.16,578.52,3060.03,26158070,99.72,0,0,0.71,579.02,3059.55,26158071,99.87,0,0,0.14,578.5,3060.07,26158072,99.84,0,0,0.14,578.47,3060.1,26158073,99.93,0,0,0.16,578.43,3060.13,26158074,99.85,0,0,0.14,578.4,3060.15,26158075,99.69,0,0,0.56,579.18,3059.39,26158076,99.86,0,0,0.32,578.33,3060.23,26158077,99.85,0,0,0.18,578.28,3060.28,26158078,99.85,0,0,0.17,578.24,3060.31,26158079,99.86,0,0,0.15,578.21,3060.35,26158080,99.62,0,0,0.7,579,3059.56,26158081,99.83,0,0,0.14,578.66,3059.9,26158082,99.85,0,0,0.18,578.83,3059.72,26158083,99.85,0,0,0.13,578.8,3059.75,26158084,99.83,0,0,0.14,578.77,3059.78,26158085,99.85,0,0,0.27,578.77,3059.8,26158086,99.64,0,0,0.56,579.16,3059.4,26158087,99.87,0,0,0.14,578.7,3059.86,26158088,99.9,0,0,0.15,578.7,3059.85,26158089,99.81,0,0,0.26,578.83,3059.7,26158090,99.76,0,0,0.27,578.81,3059.74,26158091,99.75,0,0,0.54,579.32,3059.23,26158092,99.83,0,0,0.16,578.99,3059.56,26158093,99.81,0,0,0.16,578.95,3059.59,26158094,99.87,0,0,0.15,578.94,3059.61,26158095,99.78,0,0,0.27,578.74,3059.83,26158096,99.69,0,0,0.57,579.18,3059.38,26158097,99.84,0,0,0.2,578.79,3059.77,26158098,99.84,0,0.01,0.15,578.76,3059.8,26158099,99.85,0.01,0.01,0.16,578.7,3059.85,26158100,99.8,0,0,0.3,578.93,3059.63,26158101,99.71,0,0,0.48,579.18,3059.38,26158102,99.84,0,0,0.22,578.8,3059.76,26158103,99.8,0,0,0.14,578.77,3059.79,26158104,99.83,0.01,0.01,0.14,578.73,3059.82,26158105,99.78,0,0,0.27,578.48,3060.08,26158106,99.65,0,0,0.57,578.9,3059.66,26158107,99.86,0,0,0.16,578.83,3059.73,26158108,99.85,0,0,0.14,578.79,3059.76,26158109,99.83,0,0,0.15,578.76,3059.79,26158110,99.76,0,0,0.3,578.26,3060.3,26158111,99.68,0,0,0.58,578.75,3059.81,26158112,99.84,0,0,0.13,578.92,3059.63,26158113,99.85,0,0,0.17,579.06,3059.49,26158114,99.83,0,0,0.14,579.02,3059.52,26158115,99.8,0,0,0.27,579.02,3059.54,26158116,99.72,0,0,0.41,579.33,3059.23,26158117,99.82,0,0,0.3,578.94,3059.61,26158118,99.84,0,0,0.14,578.94,3059.6,26158119,99.79,0,0,0.27,579.01,3059.51,26158120,99.79,0,0,0.3,578.98,3059.56,26158121,99.84,0,0,0.18,578.92,3059.61,26158122,99.7,0,0,0.55,579.33,3059.2,26158123,99.82,0,0,0.15,578.75,3059.77,26158124,99.83,0,0,0.14,578.68,3059.85,26158125,96.93,0.02,0.01,1.55,582.67,3057.13,26158126,99.79,0,0,77.02,580.47,3057.58,26158127,99.7,0,0,0.55,581.51,3056.54,26158128,99.84,0,0,0.14,581.2,3056.85,26158129,99.84,0,0,0.15,581.22,3056.82,26158130,99.8,0,0,0.3,580.43,3057.64,26158131,99.84,0,0,0.18,579.06,3059.03,26158132,99.7,0,0,0.51,579.46,3058.62,26158133,99.82,0,0,0.22,579.09,3058.98,26158134,99.85,0,0,0.15,579.02,3059.05,26158135,99.78,0,0,0.27,579.1,3058.99,26158136,99.79,0,0,0.19,578.86,3059.22,26158137,99.7,0,0,0.45,579.27,3058.81,26158138,99.85,0,0,0.24,579.13,3058.95,26158139,99.84,0,0,0.14,579.06,3059.01,26158140,99.74,0,0,0.27,577.33,3060.76,26158141,99.84,0,0,0.16,577.44,3060.64,26158142,99.7,0,0,0.54,578.25,3059.83,26158143,99.85,0,0,0.15,578.58,3059.5,26158144,99.84,0,0,0.14,578.54,3059.53,26158145,99.8,0,0,0.33,578.11,3059.97,26158146,99.61,0,0,0.14,578.15,3059.93,26158147,99.7,0,0,0.56,578.71,3059.37,26158148,99.84,0,0,0.14,579.02,3059.05,26158149,99.82,0,0,0.33,579.17,3058.91,26158150,99.76,0,0,0.29,577.52,3060.58,26158151,99.83,0,0,0.16,577.36,3060.73,26158152,99.7,0,0,0.36,577.81,3060.28,26158153,99.85,0,0,0.36,579.03,3059.05,26158154,99.83,0,0,0.15,579.13,3058.95,26158155,99.74,0,0,0.29,579.34,3058.76,26158156,99.85,0,0,0.16,579.29,3058.81,26158157,99.85,0,0,0.18,579.11,3058.98,26158158,99.68,0,0,0.55,579.63,3058.45,26158159,99.83,0.01,0.01,0.15,579.03,3059.05,26158160,99.74,0,0,0.28,579.09,3059.01,26158161,99.85,0,0,0.13,579.13,3058.96,26158162,99.84,0,0,0.16,579.06,3059.03,26158163,99.71,0,0,0.58,579.39,3058.69,26158164,99.78,0.01,0.01,0.15,579.08,3058.99,26158165,99.8,0,0,0.27,579.28,3058.81,26158166,99.83,0,0,0.14,579.28,3058.81,26158167,99.84,0,0,0.16,579.38,3058.7,26158168,99.71,0,0,0.5,579.54,3058.54,26158169,99.82,0,0,0.2,579.03,3059.05,26158170,99.8,0,0,0.3,579.1,3058.99,26158171,99.85,0,0,0.13,579.14,3058.94,26158172,99.8,0,0,0.16,579.1,3058.98,26158173,99.69,0,0,0.54,579.41,3058.66,26158174,99.84,0,0,0.14,579.02,3059.05,26158175,99.8,0,0,0.28,579.3,3058.79,26158176,99.83,0,0,0.15,579.41,3058.68,26158177,99.81,0,0,0.16,579.38,3058.7,26158178,99.7,0,0,0.55,579.69,3058.39,26158179,99.77,0,0,0.41,579.3,3058.75,26158180,99.8,0.01,0.01,0.28,579.29,3058.78,26158181,99.84,0,0,0.16,579.4,3058.66,26158182,99.85,0,0,0.14,579.37,3058.69,26158183,99.68,0,0,0.55,579.57,3058.48,26158184,99.83,0,0,0.17,578.8,3059.24,26158185,99.76,0,0,0.33,579.27,3058.79,26158186,99.85,0,0,0.14,579.24,3058.81,26158187,99.81,0,0,0.13,579.29,3058.76,26158188,99.71,0,0,0.59,579.88,3058.17,26158189,99.85,0,0,0.38,579.33,3058.73,26158190,99.83,0,0,0.26,579.32,3058.76,26158191,99.85,0,0,0.16,579.28,3058.79,26158192,99.85,0,0,0.14,579.24,3058.82,26158193,99.83,0,0,0.16,579.29,3058.77,26158194,99.71,0,0,0.55,579.74,3058.35,26158195,99.76,0,0,0.29,578.35,3059.76,26158196,99.78,0,0,0.2,578.74,3059.36,26158197,99.84,0,0,0.15,578.76,3059.33,26158198,99.83,0,0,0.16,578.67,3059.42,26158199,99.72,0,0,0.58,578.6,3059.49,26158200,99.76,0,0,0.28,577.89,3060.22,26158201,99.83,0,0,0.13,577.84,3060.26,26158202,99.85,0,0,0.16,577.81,3060.29,26158203,99.84,0,0,0.21,577.76,3060.33,26158204,99.7,0,0,0.55,578.7,3059.39,26158205,99.76,0,0,0.28,578.43,3059.67,26158206,99.85,0,0,0.16,578.36,3059.74,26158207,99.81,0,0,0.16,578.3,3059.79,26158208,99.85,0,0,0.14,578.41,3059.68,26158209,99.65,0,0,0.7,578.84,3059.23,26158210,99.81,0,0,0.31,578.84,3059.24,26158211,99.8,0,0,0.18,578.81,3059.27,26158212,99.81,0,0,0.17,578.83,3059.25,26158213,99.85,0,0,0.14,578.87,3059.2,26158214,99.7,0,0,0.54,579.1,3058.98,26158215,99.76,0,0,0.29,578.58,3059.51,26158216,99.8,0,0,0.17,578.54,3059.55,26158217,99.85,0,0,0.18,578.5,3059.58,26158218,99.85,0,0,0.15,578.65,3059.43,26158219,99.67,0.01,0.01,0.49,578.98,3059.1,26158220,99.76,0,0,0.34,578.85,3059.24,26158221,99.83,0,0,0.16,578.82,3059.27,26158222,99.83,0,0,0.14,578.8,3059.29,26158223,99.84,0,0,0.15,578.75,3059.33,26158224,99.65,0.01,0.01,0.32,579.27,3058.81,26158225,99.76,0,0.01,0.52,578.87,3059.22,26158226,99.83,0,0,0.16,578.84,3059.25,26158227,99.85,0,0,0.16,578.81,3059.28,26158228,99.83,0,0,0.14,578.77,3059.31,26158229,99.85,0,0,0.16,578.74,3059.34,26158230,99.59,0,0,0.71,577.87,3060.22,26158231,99.84,0,0,0.14,577.4,3060.69,26158232,99.84,0,0,0.13,577.37,3060.72,26158233,99.85,0,0,0.17,577.33,3060.75,26158234,99.84,0,0,0.14,577.3,3060.78,26158235,99.59,0,0,0.74,578.18,3059.91,26158236,99.81,0,0,0.15,577.75,3060.34,26158237,99.8,0,0,0.16,577.89,3060.19,26158238,99.85,0,0,0.14,577.87,3060.21,26158239,99.73,0,0,0.34,578.81,3059.24,26158240,99.59,0,0,0.71,578.85,3059.22,26158241,99.86,0,0,0.14,578.27,3059.79,26158242,99.83,0,0,0.17,578.24,3059.82,26158243,99.82,0,0,0.14,578.25,3059.81,26158244,99.83,0,0,0.15,578.39,3059.67,26158245,99.61,0,0,0.63,579.2,3058.87,26158246,99.81,0.01,0.03,0.22,578.82,3059.25,26158247,99.85,0,0,0.16,578.74,3059.32,26158248,99.58,0,0.02,0.16,578.88,3059.18,26158249,99.85,0,0,0.14,578.82,3059.24,26158250,99.65,0,0.02,0.68,579.3,3058.77,26158251,99.83,0,0,0.17,578.77,3059.3,26158252,99.85,0,0.02,0.15,578.88,3059.18,26158253,99.84,0,0,0.16,578.82,3059.24,26158254,99.85,0,0.02,0.15,578.78,3059.28,26158255,99.72,0,0,0.71,578.97,3059.1,26158256,99.88,0,0.02,0.18,578.69,3059.37,26158257,99.9,0,0,0.14,578.56,3059.5,26158258,99.88,0,0.02,0.17,578.51,3059.55,26158259,99.9,0,0,0.14,578.63,3059.42,26158260,99.76,0,0.02,0.43,579.28,3058.8,26158261,99.87,0,0,0.41,578.55,3059.52,26158262,99.93,0,0.02,0.14,578.51,3059.56,26158263,99.93,0,0,0.16,578.63,3059.43,26158264,99.93,0,0.02,0.15,578.59,3059.47,26158265,99.89,0,0,0.34,578.29,3059.77,26158266,99.79,0.01,0.02,0.55,578.85,3059.22,26158267,99.02,0,0,0.29,579.41,3058.64,26158268,99.93,0.01,0.02,0.26,579.01,3059.04,26158269,99.82,0,0,0.32,579.07,3058.96,26158270,99.86,0.01,0.02,0.31,579.02,3059.02,26158271,99.77,0,0,0.56,579.2,3058.84,26158272,99.9,0.01,0.02,0.14,578.77,3059.27,26158273,99.93,0,0,0.16,578.66,3059.4,26158274,99.93,0.01,0.02,0.17,578.52,3059.53,26158275,99.86,0,0,0.33,578.57,3059.49,26158276,99.78,0.01,0.02,0.62,579.04,3059.01,26158277,99.92,0,0,0.2,578.83,3059.22,26158278,99.93,0.01,0.02,0.14,578.76,3059.29,26158279,99.9,0.01,0.01,0.18,578.86,3059.18,26158280,99.88,0.01,0.02,0.29,578.79,3059.26,26158281,99.78,0,0,0.59,579.69,3058.36,26158282,99.92,0.01,0.02,0.16,579.01,3059.03,26158283,99.93,0,0,0.16,579.1,3058.94,26158284,99.9,0.01,0.03,0.16,579.02,3059.02,26158285,98.82,0,0,15.5,581.49,3056.91,26158286,99.76,0.01,0.02,0.52,578.94,3059.19,26158287,99.92,0,0,0.24,578.63,3059.49,26158288,99.91,0.01,0.02,0.17,578.56,3059.55,26158289,99.91,0,0,0.16,578.62,3059.49,26158290,99.84,0.01,0.02,0.29,579.06,3059.07,26158291,99.76,0,0,0.55,579.43,3058.7,26158292,99.91,0.01,0.02,0.2,578.8,3059.32,26158293,99.92,0,0,0.2,578.85,3059.26,26158294,99.91,0.01,0.03,0.18,578.83,3059.28,26158295,99.88,0,0,0.3,579.11,3059.02,26158296,99.78,0.01,0.02,0.43,579.48,3058.65,26158297,99.92,0,0,0.3,579.35,3058.77,26158298,99.92,0.01,0.02,0.14,579.34,3058.78,26158299,99.88,0,0,0.28,579.03,3059.06,26158300,99.85,0.01,0.02,0.29,579.12,3058.99,26158301,99.91,0,0,0.16,579.05,3059.06,26158302,99.79,0.01,0.02,0.56,578.72,3059.38,26158303,99.92,0,0,0.16,578.27,3059.82,26158304,99.9,0.01,0.02,0.14,578.38,3059.71,26158305,99.9,0,0,0.3,578.78,3059.33,26158306,99.91,0.01,0.02,0.16,578.83,3059.27,26158307,99.79,0,0,0.62,579.5,3058.6,26158308,99.93,0.01,0.02,0.18,578.81,3059.28,26158309,99.91,0,0,0.18,578.82,3059.26,26158310,99.9,0.01,0.02,0.41,579.03,3059.07,26158311,99.92,0,0,0.2,579.09,3059,26158312,99.78,0.01,0.02,0.58,579.6,3058.48,26158313,99.92,0,0,0.17,579.09,3059,26158314,99.9,0.01,0.02,0.2,579.01,3059.07,26158315,99.89,0,0,0.36,579.33,3058.77,26158316,99.9,0.01,0.02,0.19,579.07,3059.03,26158317,99.8,0,0,0.48,579.46,3058.62,26158318,99.93,0.01,0.02,0.32,579.02,3059.06,26158319,99.91,0,0,0.2,579.09,3058.98,26158320,99.84,0.01,0.02,0.31,578.31,3059.77,26158321,99.93,0,0,0.2,578.37,3059.71,26158322,96.28,0.04,0.03,77.56,588.08,3051.87,26158323,99.9,0,0,63.96,581.7,3056.62,26158324,99.91,0.01,0.02,0.19,581.72,3056.59,26158325,99.86,0,0.01,0.36,581.73,3056.6,26158326,99.92,0,0,0.17,581.71,3056.62,26158327,99.8,0.01,0.02,0.44,581.21,3057.12,26158328,99.93,0,0,0.37,579.01,3059.34,26158329,99.87,0.01,0.02,0.3,579.1,3059.24,26158330,99.88,0,0,0.32,579.32,3059.04,26158331,99.93,0.01,0.02,0.2,579.33,3059.03,26158332,99.78,0,0,0.54,579.73,3058.63,26158333,99.92,0.01,0.02,0.28,579.32,3059.03,26158334,99.93,0,0,0.19,579.25,3059.1,26158335,99.84,0.01,0.02,0.31,579.32,3059.04,26158336,99.93,0,0,0.18,579.25,3059.11,26158337,99.92,0.01,0.02,0.23,579.36,3059,26158338,99.76,0,0,0.6,578.66,3059.69,26158339,99.91,0.01,0.03,0.21,578.36,3059.98,26158340,99.88,0,0,0.35,579.04,3059.32,26158341,99.93,0.01,0.02,0.23,579.36,3058.99,26158342,99.93,0,0,0.21,579.33,3059.02,26158343,99.76,0.01,0.02,0.59,579.86,3058.49,26158344,99.91,0.01,0.01,0.17,579.56,3058.77,26158345,99.89,0.01,0.02,0.35,579.56,3058.8,26158346,99.93,0,0,0.21,579.55,3058.8,26158347,99.92,0.01,0.02,0.18,579.54,3058.8,26158348,99.77,0,0,0.58,579.72,3058.62,26158349,99.94,0.01,0.02,0.18,579.24,3059.1,26158350,99.89,0,0,0.39,578.73,3059.63,26158351,99.92,0.01,0.02,0.2,578.52,3059.84,26158352,99.93,0,0,0.17,578.62,3059.74,26158353,99.79,0.01,0.02,0.62,579.07,3059.28,26158354,99.9,0,0,0.17,578.36,3059.98,26158355,99.86,0.01,0.02,0.32,578.77,3059.59,26158356,99.93,0,0,0.18,578.86,3059.5,26158357,99.91,0.01,0.02,0.21,578.77,3059.58,26158358,99.8,0,0,0.6,579.31,3059.04,26158359,99.83,0.01,0.02,0.31,578.28,3060.04,26158360,99.89,0,0,0.32,578.6,3059.74,26158361,99.92,0.01,0.02,0.18,578.52,3059.82,26158362,99.93,0,0,0.16,578.59,3059.74,26158363,99.79,0.01,0.02,0.59,579.02,3059.31,26158364,99.95,0,0,0.16,578.57,3059.78,26158365,99.87,0.01,0.02,0.33,577.56,3060.81,26158366,99.93,0,0,0.19,577.61,3060.76,26158367,99.93,0.01,0.02,0.17,577.57,3060.8,26158368,99.8,0,0,0.57,578.02,3060.35,26158369,99.91,0.01,0.02,0.18,577.57,3060.79,26158370,99.86,0,0,0.29,577.59,3060.79,26158371,99.93,0.01,0.02,0.18,577.59,3060.79,26158372,99.93,0,0,0.17,577.55,3060.82,26158373,99.93,0.01,0.02,0.22,577.58,3060.78,26158374,99.8,0,0,0.58,577.67,3060.69,26158375,99.87,0.01,0.02,0.35,577.33,3061.04,26158376,99.9,0,0,0.22,577.68,3060.68,26158377,99.93,0,0.02,0.18,577.83,3060.52,26158378,99.93,0,0,0.17,577.78,3060.57,26158379,99.8,0,0.02,0.58,578.8,3059.55,26158380,99.77,0,0,0.3,576.74,3061.62,26158381,99.93,0,0.02,0.2,576.58,3061.78,26158382,99.94,0,0,0.16,576.54,3061.81,26158383,99.91,0,0.02,0.18,576.52,3061.83,26158384,99.77,0,0,0.61,578.36,3059.99,26158385,99.87,0,0.02,0.34,578.81,3059.55,26158386,99.9,0,0,0.18,578.79,3059.57,26158387,99.94,0,0.02,0.21,578.8,3059.56,26158388,99.91,0,0,0.22,578.87,3059.48,26158389,99.71,0,0.02,0.74,579.14,3059.19,26158390,99.84,0,0,0.41,579.02,3059.32,26158391,99.93,0,0.02,0.21,579.04,3059.29,26158392,99.93,0,0,0.2,579.09,3059.24,26158393,99.94,0,0.02,0.21,579.03,3059.29,26158394,99.8,0,0,0.44,579.58,3058.76,26158395,99.87,0,0.02,0.46,578.84,3059.51,26158396,99.93,0,0,0.17,578.84,3059.51,26158397,99.93,0,0.02,0.24,578.78,3059.57,26158398,99.92,0,0,0.15,578.73,3059.61,26158399,99.82,0.01,0.03,0.57,579.1,3059.24,26158400,99.9,0,0,0.29,579.07,3059.29,26158401,99.9,0,0.02,0.22,579.01,3059.34,26158402,99.93,0,0,0.16,578.97,3059.38,26158403,99.94,0,0.02,0.16,579.04,3059.3,26158404,99.81,0.01,0.01,0.4,579.4,3058.94,26158405,99.89,0,0.02,0.44,578.52,3059.83,26158406,99.93,0,0,0.16,578.46,3059.89,26158407,99.9,0,0.02,0.15,578.56,3059.79,26158408,99.92,0,0,0.14,578.58,3059.76,26158409,99.81,0,0.02,0.47,578.9,3059.44,26158410,99.92,0,0,0.45,578.75,3059.6,26158411,99.93,0,0.02,0.17,578.86,3059.49,26158412,99.91,0,0,0.16,578.81,3059.53,26158413,99.92,0,0.02,0.17,578.75,3059.58,26158414,99.93,0,0,0.18,578.72,3059.62,26158415,99.73,0,0.02,0.73,578.3,3060.05,26158416,99.93,0,0,0.13,577.82,3060.53,26158417,99.9,0,0.02,0.18,577.76,3060.58,26158418,99.93,0,0,0.14,577.79,3060.55,26158419,99.82,0,0.02,0.29,579.03,3059.28,26158420,99.77,0,0,0.7,578.76,3059.58,26158421,99.91,0,0.02,0.18,578.26,3060.07,26158422,99.91,0,0,0.14,578.35,3059.97,26158423,99.96,0,0.02,0.18,578.29,3060.03,26158424,99.93,0,0,0.16,578.25,3060.1,26158425,99.74,0,0.02,0.73,579.46,3058.91,26158426,99.91,0,0,0.15,578.85,3059.52,26158427,99.94,0,0.02,0.17,578.79,3059.57,26158428,99.92,0,0,0.18,578.74,3059.62,26158429,99.91,0,0.02,0.15,578.77,3059.58,26158430,99.74,0,0,0.61,579.61,3058.76,26158431,99.91,0,0.02,0.29,579.04,3059.32,26158432,99.91,0,0,0.14,578.99,3059.37,26158433,99.93,0,0.02,0.17,578.98,3059.37,26158434,99.95,0,0,0.14,579.1,3059.24,26158435,99.69,0,0.02,0.56,578.77,3059.59,26158436,99.93,0,0,0.34,578.15,3060.21,26158437,99.92,0,0.02,0.18,578.06,3060.3,26158438,99.95,0,0,0.16,578.11,3060.24,26158439,99.91,0,0.02,0.16,578.06,3060.29,26158440,99.67,0,0,0.49,579.12,3059.24,26158441,99.93,0,0.02,0.41,579.29,3059.07,26158442,99.93,0,0,0.16,579.32,3059.03,26158443,99.93,0,0.02,0.18,579.26,3059.09,26158444,99.94,0,0,0.19,579.21,3059.13,26158445,99.9,0,0.02,0.33,579.04,3059.32,26158446,99.76,0,0,0.57,579.64,3058.71,26158447,99.91,0,0.02,0.19,579.26,3059.08,26158448,99.94,0,0,0.16,579.21,3059.13,26158449,99.89,0,0.02,0.27,579.03,3059.29,26158450,99.88,0.01,0,0.3,579.07,3059.27,26158451,99.78,0.01,0.02,0.56,579.62,3058.72,26158452,99.93,0,0,0.18,579.29,3059.03,26158453,99.9,0.01,0.02,0.18,579.27,3059.05,26158454,99.93,0,0,0.17,579.29,3059.03,26158455,99.85,0.01,0.02,0.31,578.77,3059.56,26158456,99.79,0,0,0.63,578.81,3059.52,26158457,99.86,0.01,0.02,0.21,578.25,3060.07,26158458,99.93,0,0,0.16,578.32,3060,26158459,99.93,0.01,0.03,0.15,578.25,3060.07,26158460,99.87,0,0,0.28,579.06,3059.28,26158461,99.78,0.01,0.02,0.56,579.57,3058.76,26158462,99.95,0,0,0.17,579.31,3059.01,26158463,99.93,0.01,0.02,0.14,579.23,3059.09,26158464,99.92,0.01,0.01,0.16,579.21,3059.11,26158465,99.88,0,0.02,0.3,579.32,3059.01,26158466,99.77,0,0,0.56,579.61,3058.72,26158467,99.92,0,0.02,0.14,579.22,3059.1,26158468,99.91,0,0,0.16,579.34,3058.98,26158469,99.93,0,0.02,0.15,579.28,3059.04,26158470,99.89,0,0,0.29,578.98,3059.35,26158471,99.78,0,0.02,0.43,579.42,3058.91,26158472,99.92,0,0,0.3,579.3,3059.02,26158473,99.93,0,0.02,0.14,579.25,3059.07,26158474,99.93,0,0,0.16,579.2,3059.12,26158475,99.86,0,0.02,0.3,579.5,3058.83,26158476,99.79,0,0,0.42,579.89,3058.43,26158477,99.91,0.01,0.02,0.32,579.48,3058.83,26158478,99.94,0,0,0.19,579.53,3058.78,26158479,99.8,0.01,0.44,0.29,578.99,3059.29,26158480,99.83,0.01,0.44,0.4,578.76,3059.52,26158481,99.76,0.01,0.02,0.42,579.09,3059.19,26158482,99.87,0.01,0.45,0.33,579.44,3058.83,26158483,99.9,0.01,0.02,0.2,579.19,3059.07,26158484,99.9,0,0,0.16,579.19,3059.06,26158485,99.83,0,0.02,0.36,579.26,3059.01,26158486,99.93,0,0,0.22,579.19,3059.08,26158487,99.75,0,0.02,0.61,579.31,3058.95,26158488,99.95,0,0,0.17,579.02,3059.24,26158489,99.9,0,0.02,0.17,578.97,3059.29,26158490,99.88,0,0,0.32,578.92,3059.34,26158491,99.9,0,0.02,0.17,578.94,3059.32,26158492,99.78,0.01,0.02,0.59,580.13,3058.13,26158493,99.91,0.01,0.02,0.19,575.54,3062.81,26158494,99.93,0,0,0.24,568.76,3069.77,26158495,99.9,0,0.02,0.32,569.08,3069.47,26158496,99.89,0,0,0.25,568.95,3069.59,26158497,99.81,0,0.02,0.43,569.2,3069.33,26158498,99.92,0,0,0.34,568.29,3070.25,26158499,99.9,0,0.02,0.16,568.35,3070.22,26158500,99.89,0,0,0.32,568.95,3069.64,26158501,99.92,0,0.02,0.18,568.92,3069.68,26158502,99.8,0,0,0.59,569.47,3069.13,26158503,99.93,0,0.02,0.19,569.08,3069.51,26158504,99.94,0,0,0.2,569.04,3069.55,26158505,99.9,0,0.02,0.36,568.47,3070.14,26158506,99.91,0,0,0.19,568.18,3070.43,26158507,99.77,0.01,0.02,0.65,568.47,3070.14,26158508,99.93,0,0,0.2,568.06,3070.54,26158509,99.9,0,0.02,0.34,567.86,3070.71,26158510,99.91,0,0,0.33,568.41,3070.18,26158511,99.94,0,0.02,0.21,568.39,3070.2,26158512,99.79,0,0,0.46,568.67,3069.91,26158513,99.93,0,0.02,0.32,567.85,3070.72,26158514,99.93,0,0,0.17,567.94,3070.63,26158515,99.86,0,0.02,0.32,568.42,3070.17,26158516,99.92,0,0,0.18,568.37,3070.21,26158517,99.79,0,0.02,0.39,568.69,3069.9,26158518,99.93,0,0,0.42,568.05,3070.54,26158519,99.9,0.01,0.03,0.23,568.06,3070.52,26158520,99.89,0,0,0.36,568.16,3070.44,26158521,99.94,0,0.02,0.21,568.11,3070.48,26158522,99.94,0,0,0.17,568.07,3070.52,26158523,99.79,0,0.02,0.56,568.65,3069.93,26158524,99.94,0,0,0.17,568.44,3070.14,26158525,99.89,0,0.02,0.32,568.18,3070.42,26158526,99.93,0,0,0.19,568.12,3070.47,26158527,99.95,0,0.02,0.17,568.09,3070.5,26158528,99.8,0,0,0.61,568.6,3069.98,26158529,99.93,0,0.02,0.18,568.44,3070.14,26158530,99.84,0,0,0.32,567.69,3070.9,26158531,99.93,0,0.02,0.17,567.64,3070.95,26158532,99.94,0,0,0.18,567.59,3071,26158533,99.78,0,0.02,0.58,568.21,3070.37,26158534,99.95,0,0,0.17,568.18,3070.39,26158535,99.89,0,0.02,0.33,568.17,3070.42,26158536,99.95,0,0,0.18,568.12,3070.47,26158537,99.93,0,0.02,0.16,568.09,3070.49,26158538,99.81,0,0,0.45,568.84,3069.74,26158539,99.85,0.01,0.02,0.51,568.7,3069.85,26158540,99.88,0,0,0.36,571.28,3067.19,26158541,99.91,0.01,0.05,0.17,571.2,3067.27,26158542,99.95,0,0,0.19,571.27,3067.18,26158543,99.78,0,0.02,0.61,571.98,3066.46,26158544,99.94,0,0,0.18,571.72,3066.74,26158545,99.87,0,0.02,0.32,571.88,3066.61,26158546,99.96,0,0,0.18,571.85,3066.65,26158547,99.93,0,0.02,0.16,571.84,3066.65,26158548,99.78,0,0,0.41,572.36,3066.12,26158549,99.95,0,0.02,0.4,571.43,3067.05,26158550,99.83,0,0,0.37,571.15,3067.34,26158551,99.91,0,0,0.2,571.11,3067.38,26158552,99.95,0,0,0.18,571.1,3067.38,26158553,99.94,0,0,0.16,571.09,3067.39,26158554,99.79,0,0,0.61,571.84,3066.64,26158555,99.81,0,0,0.34,571.71,3066.79,26158556,99.88,0,0,0.18,571.76,3066.73,26158557,99.65,0.06,2.09,0.25,571.49,3066.99,26158558,99.83,0.03,0.9,0.21,571.49,3066.96,26158559,99.79,0,0,0.61,572.03,3066.41,26158560,99.83,0.02,0.4,0.34,571.8,3066.54,26158561,99.95,0.01,0.11,0.22,571.6,3066.49,26158562,99.89,0,0,0.16,571.57,3066.51,26158563,99.91,0,0,0.17,571.52,3066.56,26158564,99.79,0,0,0.58,571.81,3066.26,26158565,99.88,0,0,0.37,571.71,3066.37,26158566,99.88,0.14,0.38,0.33,571.77,3066.31,26158567,99.9,0.37,0.08,0.57,571.72,3066.36,26158568,99.94,0,0,0.19,571.58,3066.5,26158569,99.6,0.14,0.89,0.84,572.26,3065.79,26158570,99.86,0.01,0.01,0.32,571.29,3066.76,26158571,99.87,0.02,0.5,0.32,571.25,3066.79,26158572,99.93,0,0,0.16,571.2,3066.83,26158573,99.91,0,0,0.19,571.14,3066.89,26158574,99.78,0.01,0.04,0.61,572.4,3065.64,26158575,99.85,0.01,0.05,0.4,572.41,3065.64,26158576,99.9,0,0,0.21,572.54,3065.5,26158577,99.92,0,0,0.23,572.54,3065.5,26158578,99.92,0,0,0.21,572.53,3065.51,26158579,99.76,0.01,0.01,0.46,573.05,3064.98,26158580,99.9,0,0,0.45,571.93,3066.11,26158581,99.94,0,0,0.17,572.05,3065.99,26158582,99.92,0,0,0.15,572.03,3066.01,26158583,99.93,0,0,0.17,572.01,3066.03,26158584,99.78,0,0,0.32,572.47,3065.56,26158585,99.86,0,0,0.61,572.47,3065.57,26158586,99.93,0,0,0.21,572.45,3065.59,26158587,99.91,0,0,0.19,572.43,3065.61,26158588,99.94,0,0,0.19,572.4,3065.63,26158589,99.93,0,0,0.19,572.37,3065.66,26158590,99.71,0,0,0.71,572.78,3065.27,26158591,99.56,0,0,0.29,572.56,3065.48,26158592,99.93,0,0,0.2,572.53,3065.51,26158593,99.92,0,0,0.19,572.5,3065.53,26158594,99.92,0,0,0.22,572.47,3065.56,26158595,99.75,0,0,0.71,572.59,3065.45,26158596,99.92,0,0,0.19,572.2,3065.84,26158597,99.9,0,0,0.2,572.17,3065.87,26158598,99.94,0,0,0.2,572.16,3065.87,26158599,99.83,0.01,0.01,0.38,571.92,3066.08,26158600,99.71,0.01,0.01,0.79,572.76,3065.26,26158601,99.92,0.01,0,0.22,572.46,3065.56,26158602,99.84,0,0.01,0.23,572.38,3065.63,26158603,99.86,0.01,0,0.21,572.49,3065.52,26158604,99.89,0,0,0.19,572.46,3065.54,26158605,99.67,0,0,0.75,571.51,3066.51,26158606,99.88,0.02,0.41,0.28,571.65,3066.36,26158607,99.88,0.01,0.41,0.24,571.74,3066.27,26158608,99.93,0,0,0.2,571.74,3066.25,26158609,99.93,0,0,0.16,571.72,3066.27,26158610,99.7,0,0,0.74,572.9,3065.11,26158611,99.87,0,0,0.2,572.19,3065.82,26158612,99.95,0,0.02,0.2,572.14,3065.85,26158613,99.81,0.03,0.79,0.26,572.09,3065.9,26158614,99.88,0.02,0.03,0.23,571.96,3066.01,26158615,99.42,0.07,2.01,0.75,573.17,3064.82,26158616,99.73,0.03,1.24,0.37,572.33,3065.62,26158617,99.91,0,0.04,0.21,572.44,3065.48,26158618,99.84,0.01,0.39,0.16,572.42,3065.5,26158619,99.95,0,0.02,0.23,572.41,3065.5,26158620,99.84,0,0,0.34,571.19,3066.74,26158621,99.79,0,0,0.59,572.24,3065.67,26158622,99.91,0,0,0.19,571.86,3066.05,26158623,99.94,0,0,0.2,571.84,3066.07,26158624,99.85,0.03,0.42,0.28,571.67,3066.23,26158625,99.79,0.01,0.41,0.36,572.81,3065.1,26158626,99.77,0.02,0.01,0.62,572.91,3065,26158627,99.77,0.05,1.23,0.36,572.61,3065.27,26158628,99.16,0.16,5.35,0.41,572.54,3065.28,26158629,99.78,0.01,0.41,0.39,572.68,3065.08,26158630,99.57,0.06,2.05,0.4,572.88,3064.87,26158631,99.55,0.05,1.23,0.68,573.42,3064.29,26158632,99.85,0,0.01,0.21,572.57,3065.11,26158633,99.91,0,0,0.14,572.56,3065.12,26158634,99.93,0,0,0.15,572.54,3065.14,26158635,99.8,0,0,0.31,572.61,3065.08,26158636,99.78,0,0,0.57,572.94,3064.75,26158637,99.87,0.04,0.05,0.35,572.36,3065.32,26158638,99.91,0.02,0,0.19,572.4,3065.28,26158639,99.85,0.01,0.01,0.18,572.42,3065.25,26158640,99.82,0.04,0.41,0.39,572.38,3065.31,26158641,99.73,0,0,0.43,572.71,3064.97,26158642,99.9,0,0,0.3,572.32,3065.36,26158643,99.85,0.02,0,0.17,572.3,3065.37,26158644,99.68,0.06,1.65,0.25,572.38,3065.27,26158645,99.79,0.03,0.41,0.37,572.88,3064.77,26158646,99.78,0,0,0.56,573.15,3064.5,26158647,99.91,0,0,0.15,572.78,3064.87,26158648,99.8,0.05,0.42,0.23,572.82,3064.82,26158649,99.69,0.07,1.24,0.3,572.85,3064.77,26158650,99.72,0.03,0.42,0.38,572.52,3065.1,26158651,99.41,0.08,2.48,0.6,573.15,3064.43,26158652,99.71,0.04,0.81,0.32,573,3064.56,26158653,99.85,0.02,0.02,0.19,572.94,3064.61,26158654,99.85,0.02,0,0.2,573.03,3064.51,26158655,99.78,0.03,0.01,0.39,572.99,3064.57,26158656,99.72,0.03,0.01,0.51,573.3,3064.25,26158657,99.69,0.04,0.84,0.45,572.76,3064.77,26158658,99.78,0.01,0.41,0.19,572.72,3064.8,26158659,99.73,0.03,0.4,0.31,572.07,3065.43,26158660,99.58,0.06,1.65,0.39,572.25,3065.23,26158661,99.86,0,0.02,0.18,572.27,3065.21,26158662,99.44,0.09,2.07,0.83,571.31,3066.14,26158663,99.54,0.06,2.46,0.29,570.9,3066.5,26158664,99.55,0.06,2.16,0.27,571.15,3066.21,26158665,99.36,0.1,3.26,0.43,571.63,3065.71,26158666,99.7,0.02,0.88,0.23,571.73,3065.55,26158667,99.68,0,0,0.55,572.23,3065.05,26158668,99.83,0,0,0.14,572,3065.27,26158669,99.76,0,0,0.15,572.07,3065.22,26158670,99.77,0,0,0.28,572.07,3065.23,26158671,99.23,0,0,0.16,572.05,3065.26,26158672,99.7,0,0,0.55,572.69,3064.61,26158673,99.83,0,0,0.15,572.01,3065.29,26158674,99.84,0,0,0.16,571.98,3065.32,26158675,99.71,0,0,0.3,571.01,3066.3,26158676,99.82,0,0,0.18,570.96,3066.35,26158677,99.71,0,0,0.5,571.94,3065.35,26158678,99.82,0,0,0.21,572.31,3064.97,26158679,99.85,0,0,0.14,572.29,3064.99,26158680,99.75,0,0,0.29,572.54,3064.76,26158681,99.83,0,0,0.16,572.52,3064.78,26158682,99.68,0,0,0.5,572.74,3064.55,26158683,99.84,0,0,0.2,572.23,3065.05,26158684,99.84,0,0,0.15,572.21,3065.07,26158685,99.69,0,0,0.29,571.54,3065.75,26158686,99.86,0,0,0.15,571.45,3065.84,26158687,95.18,0.32,0.01,78.44,585.59,3051.15,26158688,99.78,0,0,179.68,573.71,3063.95,26158689,99.67,0,0,0.39,574.4,3063.23,26158690,97.89,0,0,0.32,574.43,3063.21,26158691,99.85,0,0,0.16,574.4,3063.23,26158692,99.69,0,0,0.44,574.32,3063.32,26158693,99.86,0,0,0.32,571.47,3066.2,26158694,99.85,0,0,0.14,571.45,3066.22,26158695,99.77,0,0,0.29,571.22,3066.46,26158696,99.85,0,0,0.16,571.19,3066.49,26158697,99.78,0.01,0.42,0.2,571.55,3066.12,26158698,99.73,0,0,0.59,572.3,3065.38,26158699,99.82,0.01,0.01,0.14,571.5,3066.17,26158700,99.8,0,0,0.3,571.71,3065.98,26158701,99.86,0,0,0.14,571.47,3066.21,26158702,99.85,0,0,0.14,571.45,3066.23,26158703,99.71,0,0,0.62,572.46,3065.22,26158704,99.84,0,0.01,0.18,571.9,3065.77,26158705,99.8,0,0,0.35,572.15,3065.54,26158706,99.85,0,0,0.18,572.13,3065.55,26158707,99.87,0,0,0.14,572.28,3065.4,26158708,99.71,0,0,0.6,572.18,3065.49,26158709,99.81,0,0,0.17,571.25,3066.42,26158710,99.78,0,0,0.31,571.7,3065.98,26158711,99.8,0,0,0.16,571.65,3066.04,26158712,99.85,0.01,0.01,0.14,571.7,3065.98,26158713,99.71,0,0,0.56,571.68,3066,26158714,99.83,0,0,0.16,570.9,3066.77,26158715,99.77,0,0,0.29,571.74,3065.95,26158716,99.83,0.01,0.02,0.15,571.68,3066,26158717,99.83,0.01,0.01,0.18,571.75,3065.93,26158718,99.73,0,0,0.55,571.98,3065.7,26158719,99.78,0,0,0.27,572.15,3065.5,26158720,99.76,0,0,0.32,571.5,3066.17,26158721,99.83,0,0,0.15,571.5,3066.17,26158722,99.83,0,0,0.14,571.44,3066.23,26158723,99.73,0,0,0.56,571.75,3065.91,26158724,99.85,0,0,0.15,571.52,3066.15,26158725,99.8,0,0,0.29,572.71,3064.98,26158726,99.84,0,0,0.15,572.68,3065,26158727,99.85,0,0,0.16,572.65,3065.03,26158728,99.7,0,0,0.42,573.28,3064.39,26158729,99.85,0,0,0.29,572.35,3065.32,26158730,99.78,0,0,0.3,572.2,3065.49,26158731,99.86,0,0,0.15,572.28,3065.4,26158732,99.85,0,0,0.14,572.25,3065.43,26158733,99.86,0,0,0.15,572.24,3065.44,26158734,99.72,0,0,0.55,572.17,3065.5,26158735,99.8,0,0,0.29,571.97,3065.72,26158736,99.84,0,0,0.18,571.8,3065.88,26158737,99.85,0,0,0.15,571.68,3066,26158738,99.85,0,0,0.16,571.66,3066.02,26158739,99.73,0,0,0.54,572.17,3065.5,26158740,99.71,0,0,0.29,571.17,3066.54,26158741,99.81,0,0,0.14,571.13,3066.58,26158742,99.84,0,0,0.17,571.3,3066.4,26158743,99.84,0,0,0.14,571.28,3066.42,26158744,99.72,0,0,0.55,572.21,3065.48,26158745,99.77,0,0,0.29,571.53,3066.17,26158746,99.88,0,0,0.16,571.49,3066.21,26158747,99.85,0,0,0.14,571.47,3066.23,26158748,99.86,0,0,0.14,571.45,3066.25,26158749,99.66,0,0,0.66,572.75,3064.92,26158750,99.8,0,0,0.27,572.42,3065.27,26158751,99.84,0,0,0.17,572.38,3065.31,26158752,99.84,0,0,0.14,572.37,3065.31,26158753,99.86,0,0,0.14,572.34,3065.33,26158754,99.74,0,0,0.5,572.77,3064.91,26158755,99.83,0,0,0.35,572.76,3064.92,26158756,99.85,0,0,0.14,572.74,3064.94,26158757,99.83,0,0,0.18,572.71,3064.97,26158758,99.85,0,0,0.15,572.7,3064.97,26158759,99.7,0.01,0.01,0.45,573.04,3064.63,26158760,99.82,0,0,0.41,572.19,3065.49,26158761,99.86,0,0,0.16,572.16,3065.52,26158762,99.68,0.04,1.24,0.22,572.06,3065.6,26158763,99.85,0,0,0.16,572,3065.66,26158764,99.71,0,0,0.43,572.38,3065.27,26158765,99.82,0,0,0.41,572.71,3064.96,26158766,99.85,0,0,0.15,572.69,3064.97,26158767,99.85,0,0,0.17,572.66,3064.99,26158768,99.79,0.01,0.41,0.15,572.48,3065.17,26158769,99.74,0.03,0.83,0.25,572.47,3065.16,26158770,99.68,0,0,0.72,572.9,3064.74,26158771,99.75,0.04,0.83,0.23,572.39,3065.24,26158772,99.8,0.03,0.35,0.18,572.35,3065.27,26158773,99.75,0.04,0.89,0.24,572.45,3065.15,26158774,99.72,0.05,0.71,0.3,572.36,3065.22,26158775,99.65,0,0.12,0.83,572.56,3065.03,26158776,99.84,0.02,0,0.21,571.89,3065.7,26158777,99.81,0.01,0.41,0.23,571.81,3065.77,26158778,99.45,0.09,3.26,0.17,571.83,3065.72,26158779,99.58,0.04,1.31,0.39,572.55,3064.92,26158780,99.63,0,0,0.71,572.99,3064.49,26158781,99.75,0.02,0.83,0.21,572.49,3064.98,26158782,99.85,0,0,0.16,572.44,3065.02,26158783,99.85,0,0,0.16,572.42,3065.03,26158784,99.85,0,0,0.14,572.4,3065.07,26158785,99.67,0,0,0.73,572.38,3065.11,26158786,99.85,0,0,0.14,571.82,3065.66,26158787,99.84,0.01,0.02,0.16,571.79,3065.68,26158788,99.79,0.01,0.39,0.21,571.84,3065.62,26158789,99.82,0,0,0.15,571.77,3065.68,26158790,99.67,0,0,0.68,572.84,3064.63,26158791,99.83,0,0,0.16,572.49,3064.98,26158792,99.86,0,0,0.15,572.47,3065,26158793,99.71,0.03,0.82,0.21,572.52,3064.93,26158794,99.8,0,0,0.16,572.52,3064.93,26158795,99.63,0,0,0.7,572.09,3065.37,26158796,99.83,0,0,0.22,572.09,3065.37,26158797,99.84,0,0,0.18,571.96,3065.5,26158798,99.85,0,0,0.18,571.95,3065.5,26158799,99.83,0,0,0.18,571.91,3065.53,26158800,99.6,0,0,0.55,572.38,3065.08,26158801,99.85,0,0,0.33,572.14,3065.32,26158802,99.85,0,0,0.14,572.11,3065.36,26158803,99.83,0,0,0.15,572.27,3065.2,26158804,99.85,0,0,0.16,572.25,3065.22,26158805,99.79,0,0,0.29,572.73,3064.75,26158806,99.62,0.02,0.81,0.59,573.08,3064.4,26158807,99.68,0.03,1.25,0.22,572.76,3064.69,26158808,99.86,0,0,0.15,572.72,3064.71,26158809,99.78,0,0,0.27,572.71,3064.7,26158810,99.85,0,0,0.28,572.95,3064.48,26158811,99.17,0.01,0.01,0.6,573.22,3064.21,26158812,99.92,0,0,0.14,572.82,3064.6,26158813,99.72,0.06,1.6,0.2,572.84,3064.57,26158814,99.9,0,0.05,0.21,571.97,3065.41,26158815,99.77,0.03,0.89,0.33,571.88,3065.51,26158816,99.74,0,0,0.57,572.32,3065.07,26158817,99.93,0,0,0.21,572.05,3065.33,26158818,99.93,0,0,0.14,572.17,3065.21,26158819,99.93,0.01,0.01,0.14,572.22,3065.15,26158820,99.89,0,0,0.31,572.21,3065.18,26158821,99.8,0,0,0.56,572.54,3064.84,26158822,99.9,0,0,0.18,572.16,3065.21,26158823,99.93,0.01,0.04,0.19,572.11,3065.24,26158824,99.93,0,0,0.14,572.06,3065.28,26158825,99.89,0,0,0.3,572.09,3065.26,26158826,99.81,0,0,0.58,572.58,3064.77,26158827,99.93,0.02,0,0.17,572.21,3065.13,26158828,99.93,0,0,0.18,572.15,3065.18,26158829,99.94,0,0,0.18,572.09,3065.24,26158830,99.88,0,0,0.32,572.1,3065.26,26158831,99.54,0.08,1.76,0.73,572.48,3064.86,26158832,99.95,0,0,0.16,572.07,3065.25,26158833,99.92,0.03,0,0.2,572.07,3065.25,26158834,99.94,0.03,0.05,0.29,572.1,3065.2,26158835,99.82,0,0,0.32,571.8,3065.52,26158836,99.78,0.02,0.04,0.37,572.2,3065.12,26158837,99.93,0.02,0,0.43,571.84,3065.48,26158838,99.93,0.02,0.01,0.22,571.83,3065.48,26158839,99.77,0,0,0.29,572.16,3065.12,26158840,99.88,0,0,0.29,572.4,3064.9,26158841,99.93,0.01,0.01,0.18,572.35,3064.95,26158842,99.75,0,0,0.59,572.86,3064.43,26158843,99.93,0.01,0.01,0.18,572.4,3064.89,26158844,99.76,0.07,1.21,0.41,572.34,3064.98,26158845,99.67,0.06,1.68,0.41,572.6,3064.69,26158846,99.9,0.01,0,0.2,572.52,3064.76,26158847,99.75,0,0,0.56,572.68,3064.6,26158848,99.82,0.04,0.83,0.27,572.33,3064.93,26158849,99.95,0.02,0,0.25,572.3,3064.95,26158850,99.8,0.05,0.78,0.37,572.26,3065.01,26158851,99.82,0.04,0.88,0.23,572.32,3064.93,26158852,99.46,0.08,2.42,0.67,572.61,3064.61,26158853,99.84,0.03,0.47,0.27,572.23,3064.96,26158854,99.72,0.04,1.65,0.29,572.17,3064.99,26158855,99.89,0,0,0.29,572.39,3064.78,26158856,99.93,0,0,0.31,572.1,3065.06,26158857,99.81,0,0,0.57,572.38,3064.78,26158858,99.93,0,0,0.17,572.02,3065.14,26158859,99.95,0,0,0.17,572,3065.15,26158860,99.88,0,0,0.33,571.76,3065.41,26158861,99.94,0,0,0.13,571.73,3065.43,26158862,99.79,0,0,0.5,572.35,3064.81,26158863,99.94,0,0,0.22,572.43,3064.72,26158864,99.91,0,0,0.14,572.4,3064.75,26158865,99.92,0,0,0.32,572.16,3065,26158866,99.95,0,0,0.16,572.13,3065.03,26158867,99.8,0,0,0.54,572.32,3064.84,26158868,99.95,0,0,0.17,571.42,3065.73,26158869,99.85,0,0,0.29,572.72,3064.41,26158870,99.87,0,0,0.29,572.5,3064.64,26158871,99.95,0,0,0.14,572.47,3064.66,26158872,99.82,0,0,0.32,572.79,3064.34,26158873,99.94,0,0,0.39,572.19,3064.94,26158874,99.95,0,0,0.15,572.17,3064.95,26158875,99.9,0,0,0.29,571.94,3065.2,26158876,99.95,0,0,0.16,571.91,3065.23,26158877,99.95,0,0,0.2,571.89,3065.25,26158878,99.78,0,0,0.57,572.94,3064.19,26158879,99.93,0.01,0.01,0.14,572.38,3064.75,26158880,99.85,0,0,0.3,572.52,3064.62,26158881,99.95,0,0,0.14,572.49,3064.65,26158882,99.94,0,0,0.14,572.46,3064.68,26158883,99.8,0,0,0.56,572.6,3064.53,26158884,99.93,0,0,0.15,571.92,3065.2,26158885,99.88,0,0,0.32,571.91,3065.23,26158886,99.96,0,0,0.17,571.91,3065.23,26158887,99.93,0,0,0.17,571.88,3065.25,26158888,99.82,0,0,0.77,572.34,3064.79,26158889,99.91,0,0,0.16,571.84,3065.29,26158890,99.85,0,0,0.31,572.27,3064.87,26158891,99.93,0,0,0.17,572.24,3064.89,26158892,99.95,0,0,0.18,572.23,3064.9,26158893,99.66,0.04,1.3,0.49,572.62,3064.5,26158894,99.88,0.02,0.43,0.44,572.42,3064.67,26158895,99.88,0,0,0.36,572.96,3064.15,26158896,99.83,0.02,0.83,0.22,572.89,3064.21,26158897,99.85,0.03,0.83,0.3,572.86,3064.22,26158898,99.8,0,0,0.46,573.19,3063.88,26158899,99.9,0,0,0.44,572.12,3064.92,26158900,99.91,0,0,0.36,571.87,3065.19,26158901,99.93,0,0,0.21,571.85,3065.21,26158902,99.95,0,0,0.2,571.81,3065.24,26158903,99.8,0,0,0.39,572.16,3064.89,26158904,99.95,0,0,0.43,572.25,3064.8,26158905,99.9,0,0,0.32,572.49,3064.58,26158906,99.94,0,0,0.2,572.48,3064.59,26158907,99.95,0,0,0.16,572.64,3064.42,26158908,99.76,0.05,1.35,0.25,572.33,3064.71,26158909,99.8,0.01,0,0.59,572.81,3064.22,26158910,99.85,0.02,0.42,0.45,572.63,3064.42,26158911,99.87,0.01,0.48,0.21,572.46,3064.57,26158912,99.94,0,0,0.16,572.52,3064.51,26158913,99.93,0,0,0.14,572.59,3064.44,26158914,99.81,0,0,0.55,572.91,3064.1,26158915,99.88,0,0,0.35,572.56,3064.47,26158916,99.88,0,0,0.21,572.4,3064.63,26158917,99.94,0,0,0.15,572.26,3064.76,26158918,99.83,0.02,0.77,0.14,572.26,3064.76,26158919,99.68,0.03,0.92,0.69,571.43,3065.56,26158920,99.77,0.02,0.88,0.4,571.99,3065.01,26158921,99.95,0,0.02,0.16,572.01,3064.98,26158922,99.93,0,0,0.14,572.08,3064.9,26158923,99.93,0,0,0.16,572.06,3064.91,26158924,99.78,0,0,0.5,573.02,3063.96,26158925,99.89,0.01,0.01,0.39,572.74,3064.27,26158926,99.93,0,0,0.16,572.7,3064.3,26158927,99.93,0,0,0.14,572.68,3064.32,26158928,99.9,0.02,0.4,0.22,572.59,3064.4,26158929,99.66,0.01,0.35,0.59,573.03,3063.93,26158930,99.87,0,0.08,0.52,572.71,3064.26,26158931,99.93,0,0,0.16,572.66,3064.31,26158932,99.93,0,0,0.13,572.73,3064.23,26158933,99.93,0,0,0.16,572.79,3064.17,26158934,99.8,0,0,0.56,573.08,3063.87,26158935,99.88,0,0,0.32,572.77,3064.2,26158936,99.88,0.03,0.41,0.2,572.75,3064.22,26158937,99.81,0.05,0.83,0.34,572.47,3064.47,26158938,99.94,0.01,0,0.16,572.55,3064.38,26158939,99.66,0.04,0.84,0.6,572.78,3064.14,26158940,99.82,0,0,0.34,571.72,3065.21,26158941,99.87,0.01,0.41,0.16,571.78,3065.14,26158942,99.91,0.01,0,0.21,571.76,3065.15,26158943,99.91,0.03,0,0.23,571.64,3065.3,26158944,99.77,0.04,0.01,0.39,572.09,3064.85,26158945,99.75,0.06,0.42,0.71,572.61,3064.34,26158946,99.92,0.04,0.01,0.22,572.19,3064.75,26158947,99.92,0.01,0.01,0.23,572.21,3064.73,26158948,99.9,0.05,0.01,0.31,572.21,3064.72,26158949,99.81,0.04,0.83,0.28,572.17,3064.76,26158950,99.68,0.01,0,0.82,573.43,3063.5,26158951,99.78,0.03,0.83,0.21,572.93,3063.98,26158952,99.69,0.08,1.65,0.32,572.87,3064.03,26158953,99.88,0,0.01,0.18,572.85,3064.03,26158954,99.9,0,0,0.15,572.95,3063.93,26158955,99.78,0,0,0.76,572.96,3063.92,26158956,99.93,0,0,0.14,572.67,3064.21,26158957,99.94,0,0,0.16,572.65,3064.23,26158958,99.94,0,0,0.14,572.63,3064.24,26158959,99.86,0,0,0.29,572.84,3064.02,26158960,99.7,0,0,0.66,573.31,3063.56,26158961,99.91,0,0,0.2,573.07,3063.8,26158962,99.83,0.03,0.83,0.24,572.96,3063.89,26158963,99.92,0,0,0.16,572.91,3063.93,26158964,99.91,0,0,0.17,572.9,3063.96,26158965,99.73,0,0,0.74,573.24,3063.65,26158966,99.9,0,0,0.13,571.91,3064.98,26158967,99.89,0.04,0.37,0.22,571.82,3065.06,26158968,99.77,0.05,1.27,0.26,571.81,3065.06,26158969,99.88,0.06,0.44,0.31,571.82,3065.02,26158970,99.72,0.05,0.43,0.66,572.11,3064.74,26158971,99.89,0.05,0.42,0.49,572.3,3064.54,26158972,99.86,0.02,0.42,0.23,572.53,3064.29,26158973,99.92,0,0,0.14,572.6,3064.21,26158974,99.93,0,0,0.16,572.57,3064.24,26158975,99.75,0,0,0.57,572.42,3064.41,26158976,99.9,0,0,0.32,571.57,3065.26,26158977,99.94,0,0,0.16,571.31,3065.51,26158978,99.93,0,0,0.17,571.29,3065.53,26158979,99.92,0,0,0.15,571.27,3065.54,26158980,99.86,0,0,0.34,572.24,3064.59,26158981,99.8,0,0,0.57,572.34,3064.48,26158982,99.95,0,0,0.14,572.05,3064.78,26158983,99.93,0,0,0.14,572.14,3064.68,26158984,99.95,0,0,0.16,572.11,3064.7,26158985,99.91,0,0,0.36,572.12,3064.71,26158986,99.79,0,0,0.55,572.6,3064.22,26158987,99.92,0,0,0.14,571.84,3064.98,26158988,99.95,0,0,0.15,571.81,3065.01,26158989,99.84,0,0,0.27,572.32,3064.48,26158990,99.88,0,0,0.29,572.03,3064.78,26158991,99.77,0,0,0.58,572.6,3064.2,26158992,99.95,0,0,0.18,571.98,3064.82,26158993,99.93,0.03,0.01,0.26,572.05,3064.75,26158994,99.83,0.04,0.83,0.25,572.11,3064.71,26158995,99.88,0.02,0,0.39,572.1,3064.74,26158996,99.75,0.01,0.42,0.4,572.68,3064.16,26158997,99.86,0.06,0.42,0.5,572.27,3064.55,26158998,99.94,0,0,0.18,572.3,3064.52,26158999,99.94,0.01,0.01,0.15,572.27,3064.54,26159000,99.9,0.01,0,0.35,572.01,3064.81,26159001,99.78,0,0,0.41,572.39,3064.43,26159002,99.93,0,0,0.33,572.26,3064.56,26159003,99.92,0,0,0.18,572.34,3064.47,26159004,99.9,0,0,0.14,572.32,3064.49,26159005,99.84,0,0,0.32,572.08,3064.75,26159006,99.79,0,0,0.41,572.49,3064.34,26159007,99.95,0.01,0,0.32,572.24,3064.57,26159008,99.93,0.01,0,0.19,572.18,3064.63,26159009,99.91,0,0,0.14,572.32,3064.48,26159010,99.9,0,0,0.29,572.6,3064.23,26159011,99.8,0,0,0.41,572.84,3063.98,26159012,99.83,0.04,0.82,0.35,572,3064.81,26159013,99.71,0.07,1.68,0.34,572,3064.79,26159014,99.81,0.04,0.83,0.25,571.9,3064.86,26159015,99.85,0,0,0.31,571.88,3064.89,26159016,99.82,0.04,0.83,0.2,572.01,3064.76,26159017,99.72,0.01,0.41,0.61,573.11,3063.63,26159018,99.85,0.01,0.42,0.2,572.41,3064.31,26159019,99.83,0,0,0.31,571.88,3064.82,26159020,99.9,0,0,0.3,572.03,3064.69,26159021,99.94,0,0,0.17,572.01,3064.71,26159022,99.8,0,0,0.56,572.73,3063.98,26159023,99.95,0,0,0.2,572.44,3064.26,26159024,99.95,0,0,0.16,572.41,3064.3,26159025,99.78,0.05,0.79,0.45,572.45,3064.28,26159026,99.88,0,0.04,0.25,572.44,3064.28,26159027,99.71,0.04,0.42,0.68,572.77,3063.93,26159028,99.93,0,0,0.18,572.42,3064.28,26159029,99.8,0.05,0.83,0.23,572.45,3064.24,26159030,99.85,0.02,0.42,0.43,572.16,3064.53,26159031,99.95,0.02,0,0.2,572.11,3064.58,26159032,99.7,0.05,0.83,0.66,572.17,3064.5,26159033,99.88,0.04,0.42,0.31,571.65,3065.01,26159034,99.95,0.02,0,0.19,571.62,3065.03,26159035,99.89,0.01,0,0.36,572.12,3064.56,26159036,99.91,0.06,0.01,0.3,572.03,3064.63,26159037,99.67,0.05,0.83,0.53,572.59,3064.06,26159038,99.7,0.06,1.66,0.48,571.79,3064.83,26159039,99.92,0,0.01,0.18,571.74,3064.86,26159040,99.83,0,0,0.34,572.47,3064.15,26159041,99.92,0,0,0.18,572.46,3064.16,26159042,99.79,0,0,0.45,573.27,3063.34,26159043,99.93,0,0,0.31,572.63,3063.98,26159044,99.94,0,0,0.17,572.6,3064,26159045,99.86,0,0,0.31,572.6,3064.02,26159046,99.91,0,0,0.2,572.58,3064.03,26159047,96,0.3,0.01,64.06,579.91,3057.02,26159048,98.93,0,0,193.14,579.84,3056.82,26159049,99.82,0,0,0.27,574.52,3062.07,26159050,99.84,0,0,0.34,575,3061.62,26159051,99.91,0.01,0.01,0.16,575.05,3061.57,26159052,99.93,0,0,0.13,575.05,3061.56,26159053,99.6,0,0,0.62,572.88,3063.76,26159054,99.77,0.04,1.25,0.23,572.18,3064.48,26159055,99.9,0,0,0.33,572.07,3064.61,26159056,99.93,0.01,0.01,0.16,572.13,3064.54,26159057,99.92,0,0,0.18,572.65,3064.01,26159058,99.8,0,0,0.56,572.99,3063.69,26159059,99.93,0.01,0.01,0.14,572.6,3064.07,26159060,99.91,0,0,0.3,572.61,3064.08,26159061,99.93,0,0,0.14,572.58,3064.11,26159062,99.92,0,0,0.17,572.6,3064.08,26159063,99.79,0,0,0.54,573.08,3063.6,26159064,99.95,0,0,0.16,572.72,3063.95,26159065,99.89,0,0.01,0.32,572.22,3064.47,26159066,99.93,0,0,0.16,572.18,3064.51,26159067,99.93,0,0,0.15,572.16,3064.52,26159068,99.79,0,0,0.7,569.82,3066.96,26159069,99.93,0,0,0.16,569.04,3067.76,26159070,99.85,0,0,0.32,568.79,3068.03,26159071,99.93,0,0,0.15,568.78,3068.03,26159072,99.93,0,0,0.18,568.93,3067.88,26159073,99.8,0,0,0.53,569.37,3067.44,26159074,99.92,0,0,0.25,569.14,3067.68,26159075,99.85,0,0,0.37,569.14,3067.69,26159076,99.93,0,0,0.18,569.12,3067.71,26159077,99.94,0,0,0.18,569.1,3067.72,26159078,99.79,0,0,0.57,569.43,3067.39,26159079,99.82,0,0,0.28,568.81,3067.98,26159080,99.91,0,0,0.3,568.57,3068.24,26159081,99.94,0,0,0.17,568.52,3068.28,26159082,99.96,0,0,0.14,568.55,3068.25,26159083,99.8,0,0,0.47,569.2,3067.59,26159084,99.94,0,0,0.25,569.13,3067.66,26159085,99.88,0,0,0.31,569.38,3067.43,26159086,99.95,0,0,0.17,569.35,3067.45,26159087,99.93,0,0,0.15,569.32,3067.47,26159088,99.95,0,0,0.14,569.3,3067.49,26159089,99.79,0,0,0.55,569.63,3067.18,26159090,99.83,0,0,0.3,569.29,3067.53,26159091,99.94,0,0,0.16,569.26,3067.56,26159092,99.95,0,0,0.15,569.31,3067.51,26159093,99.94,0,0,0.16,569.38,3067.43,26159094,99.8,0,0,0.54,569.49,3067.31,26159095,99.52,0,0,0.32,569.12,3067.7,26159096,99.91,0,0,0.19,569.1,3067.71,26159097,99.95,0,0,0.17,569.07,3067.74,26159098,99.94,0,0,0.14,569.06,3067.75,26159099,99.79,0,0,0.55,569.2,3067.61,26159100,99.84,0,0,0.3,569.03,3067.79,26159101,99.94,0,0,0.14,569.01,3067.8,26159102,99.92,0,0,0.14,569,3067.82,26159103,99.94,0,0,0.16,569.06,3067.75,26159104,99.83,0,0,0.54,569.5,3067.31,26159105,99.88,0,0,0.31,569.39,3067.44,26159106,99.92,0,0,0.18,569.35,3067.46,26159107,99.93,0,0,0.13,569.34,3067.48,26159108,99.92,0,0,0.16,569.31,3067.5,26159109,99.72,0,0,0.67,569.6,3067.19,26159110,99.87,0,0,0.3,569.05,3067.75,26159111,99.93,0,0,0.14,569.01,3067.79,26159112,99.92,0,0,0.16,569,3067.8,26159113,99.91,0,0,0.14,568.97,3067.83,26159114,99.79,0,0,0.41,569.51,3067.28,26159115,99.89,0,0,0.43,569.39,3067.42,26159116,99.93,0,0,0.15,569.37,3067.43,26159117,99.94,0,0,0.2,569.1,3067.7,26159118,99.95,0,0,0.16,569.09,3067.71,26159119,99.8,0.01,0.01,0.55,569.47,3067.32,26159120,99.92,0,0,0.38,569.04,3067.76,26159121,99.92,0,0,0.18,568.15,3068.65,26159122,99.94,0,0,0.14,568.01,3068.78,26159123,99.94,0,0,0.16,567.98,3068.81,26159124,99.81,0,0,0.32,568.83,3067.95,26159125,99.86,0,0,0.55,568.68,3068.12,26159126,99.92,0,0,0.16,568.67,3068.13,26159127,99.93,0,0,0.14,568.63,3068.16,26159128,99.58,0,0,0.19,568.63,3068.16,26159129,99.95,0,0,0.2,568.6,3068.19,26159130,99.69,0,0,0.69,569.24,3067.56,26159131,99.95,0,0,0.14,568.57,3068.23,26159132,99.95,0,0,0.16,568.57,3068.23,26159133,99.96,0,0,0.14,568.53,3068.26,26159134,99.93,0,0,0.15,568.53,3068.28,26159135,99.74,0.01,0.01,0.73,568.01,3068.81,26159136,99.93,0,0,0.19,567.34,3069.48,26159137,99.94,0,0,0.14,567.31,3069.5,26159138,99.94,0,0,0.2,567.27,3069.53,26159139,99.84,0,0,0.27,568.53,3068.25,26159140,99.7,0,0,0.7,568.91,3067.89,26159141,99.94,0,0,0.14,568.41,3068.39,26159142,99.93,0,0,0.16,568.39,3068.4,26159143,99.94,0,0,0.14,568.35,3068.43,26159144,99.94,0,0,0.15,568.12,3068.68,26159145,99.76,0,0,0.67,569.03,3067.79,26159146,99.95,0,0,0.21,568.57,3068.25,26159147,99.94,0,0,0.16,568.55,3068.27,26159148,99.93,0,0,0.14,568.52,3068.29,26159149,99.94,0,0,0.15,568.49,3068.31,26159150,99.71,0,0,0.67,569.24,3067.58,26159151,99.9,0,0,0.19,568.66,3068.15,26159152,99.87,0,0,0.15,568.61,3068.2,26159153,99.89,0,0,0.15,568.59,3068.22,26159154,99.94,0,0,0.14,568.57,3068.23,26159155,99.73,0,0,0.7,568.53,3068.29,26159156,99.93,0,0,0.23,566.92,3069.89,26159157,99.94,0,0,0.14,567.04,3069.77,26159158,99.94,0,0,0.17,567.18,3069.63,26159159,99.92,0,0,0.14,567.24,3069.56,26159160,99.68,0,0,0.6,568.29,3068.53,26159161,99.93,0,0,0.3,568.41,3068.4,26159162,99.91,0,0,0.14,568.39,3068.42,26159163,99.94,0,0,0.15,568.38,3068.43,26159164,99.92,0,0,0.14,568.35,3068.45,26159165,99.77,0,0,0.5,568.96,3067.86,26159166,99.95,0,0,0.38,568.82,3067.99,26159167,99.95,0,0,0.17,568.81,3068,26159168,99.93,0,0,0.14,568.78,3068.02,26159169,99.79,0.01,0.01,0.29,568.8,3067.98,26159170,99.81,0,0,0.33,568.86,3067.93,26159171,99.76,0,0,0.55,569.03,3067.76,26159172,99.92,0,0,0.14,568.57,3068.21,26159173,99.84,0,0,0.15,568.54,3068.24,26159174,99.9,0,0,0.15,568.53,3068.26,26159175,99.47,0,0,0.3,568.77,3068.04,26159176,99.78,0,0,0.55,569.11,3067.69,26159177,99.9,0,0,0.21,568.73,3068.07,26159178,99.93,0,0,0.14,568.85,3067.94,26159179,99.93,0.01,0.01,0.15,568.87,3067.92,26159180,99.8,0,0,0.31,567.92,3068.89,26159181,99.77,0,0,0.54,568.74,3068.06,26159182,99.9,0,0,0.17,568.82,3067.98,26159183,99.93,0,0,0.15,568.8,3067.99,26159184,99.85,0,0,0.14,568.78,3068.01,26159185,99.76,0,0,0.31,568.77,3068.04,26159186,99.55,0.02,0.46,0.85,571.59,3065.16,26159187,99.52,0.03,2.08,0.38,574.08,3062.57,26159188,99.73,0.02,1.25,0.21,574.11,3062.51,26159189,99.91,0,0,0.2,574.07,3062.53,26159190,99.58,0.03,2.09,0.42,573.88,3062.72,26159191,99.77,0,0,0.41,574.23,3062.34,26159192,99.88,0,0,0.29,573.65,3062.92,26159193,99.78,0.01,0.01,0.21,573.69,3062.87,26159194,99.82,0,0,0.14,573.7,3062.86,26159195,99.89,0,0,0.32,573.93,3062.64,26159196,99.76,0,0,0.41,574.22,3062.35,26159197,99.85,0,0,0.29,573.72,3062.84,26159198,99.84,0,0,0.15,573.78,3062.78,26159199,99.86,0,0,0.25,574.25,3062.29,26159200,99.82,0,0,0.34,573.99,3062.56,26159201,99.74,0,0,0.33,574.33,3062.22,26159202,99.88,0,0,0.39,573.95,3062.59,26159203,99.86,0,0,0.14,573.91,3062.63,26159204,99.85,0,0,0.14,573.89,3062.64,26159205,99.81,0,0,0.32,573.48,3063.07,26159206,99.87,0,0,0.17,573.55,3063,26159207,99.74,0,0,0.56,574.45,3062.09,26159208,99.86,0,0,0.15,573.99,3062.54,26159209,99.87,0,0,0.15,573.96,3062.57,26159210,99.85,0,0,0.37,574.2,3062.35,26159211,99.88,0,0,0.13,574.17,3062.38,26159212,99.7,0,0,0.55,574.34,3062.2,26159213,99.86,0,0,0.15,573.88,3062.66,26159214,99.85,0,0,0.14,573.93,3062.61,26159215,99.82,0,0,0.3,574.04,3062.51,26159216,99.83,0,0,0.19,573.92,3062.63,26159217,99.74,0,0,0.61,574.07,3062.47,26159218,99.85,0,0,0.15,573.7,3062.84,26159219,99.87,0,0,0.14,573.68,3062.86,26159220,99.79,0,0,0.3,573.42,3063.13,26159221,99.86,0,0,0.16,573.38,3063.16,26159222,99.72,0,0,0.54,574.04,3062.5,26159223,99.86,0,0,0.18,574,3062.53,26159224,99.86,0,0,0.14,573.98,3062.54,26159225,99.78,0,0,0.4,574.54,3062.01,26159226,99.84,0.01,0.03,0.13,574.42,3062.12,26159227,99.73,0,0,0.59,575.03,3061.51,26159228,99.86,0,0,0.19,574.25,3062.29,26159229,99.79,0,0,0.32,574.23,3062.28,26159230,99.6,0.02,1.25,0.45,574.2,3062.32,26159231,99.84,0,0,0.2,574.14,3062.37,26159232,99.72,0,0,0.42,574.49,3062.01,26159233,99.87,0,0,0.29,574.5,3061.99,26159234,99.86,0,0,0.14,574.49,3062.02,26159235,99.8,0,0,0.32,574.24,3062.29,26159236,99.83,0,0,0.16,574.21,3062.32,26159237,99.86,0,0,0.19,574.18,3062.34,26159238,99.75,0,0,0.55,574.74,3061.77,26159239,99.72,0.02,0.84,0.21,574.38,3062.12,26159240,99.83,0,0,0.33,574.11,3062.41,26159241,99.84,0,0,0.15,574.1,3062.41,26159242,99.85,0,0,0.15,574.25,3062.26,26159243,99.73,0,0,0.54,574.81,3061.69,26159244,99.86,0,0,0.15,574.43,3062.07,26159245,99.78,0,0,0.31,574.19,3062.32,26159246,99.85,0,0,0.14,574.14,3062.36,26159247,99.86,0,0.01,0.16,574.12,3062.38,26159248,99.72,0,0,0.57,574.64,3061.85,26159249,99.83,0,0,0.14,574.22,3062.27,26159250,99.81,0,0,0.32,574.22,3062.28,26159251,99.87,0,0,0.14,574.19,3062.32,26159252,99.85,0,0,0.16,574.17,3062.33,26159253,99.71,0,0,0.55,574.83,3061.66,26159254,99.85,0,0,0.15,574.36,3062.13,26159255,99.78,0.01,0.42,0.37,574.12,3062.39,26159256,99.8,0.01,0.06,0.27,575.06,3061.39,26159257,99.86,0,0,0.16,575.4,3061.03,26159258,99.71,0,0,0.55,576.41,3060.01,26159259,99.75,0,0,0.3,576.91,3059.48,26159260,99.81,0,0,0.34,577.16,3059.26,26159261,99.83,0,0,0.19,577.13,3059.28,26159262,99.85,0,0,0.18,577.1,3059.31,26159263,99.72,0,0,0.42,577.31,3059.08,26159264,99.87,0,0,0.33,576.79,3059.6,26159265,99.81,0,0,0.39,576.93,3059.47,26159266,99.86,0,0,0.18,576.93,3059.47,26159267,99.87,0,0,0.18,576.9,3059.49,26159268,99.72,0,0,0.57,577.58,3058.81,26159269,99.84,0,0,0.18,576.84,3059.54,26159270,99.81,0,0,0.3,576.12,3060.28,26159271,99.86,0,0,0.14,576.07,3060.32,26159272,99.84,0,0,0.16,576.04,3060.35,26159273,99.71,0,0,0.55,576.77,3059.62,26159274,99.85,0,0,0.18,576.66,3059.72,26159275,99.78,0,0.02,0.38,575.84,3060.57,26159276,99.82,0,0,0.2,575.48,3060.92,26159277,99.83,0,0.01,0.18,575.1,3061.3,26159278,99.86,0,0,0.17,575.21,3061.18,26159279,99.71,0,0,0.58,576.22,3060.16,26159280,99.79,0,0,0.31,575.7,3060.69,26159281,99.86,0,0,0.19,575.61,3060.78,26159282,99.85,0,0,0.15,575.56,3060.82,26159283,99.86,0,0,0.14,575.53,3060.85,26159284,99.71,0,0,0.59,576.97,3059.41,26159285,99.78,0,0,0.33,576.2,3060.2,26159286,99.85,0,0,0.17,576.15,3060.25,26159287,99.86,0,0,0.15,576.11,3060.28,26159288,99.85,0,0,0.15,576.09,3060.29,26159289,99.66,0,0,0.72,577.28,3059.07,26159290,99.75,0,0,0.38,576.31,3060.05,26159291,99.85,0,0,0.18,576.29,3060.07,26159292,99.85,0,0,0.2,576.43,3059.92,26159293,99.87,0,0,0.18,576.4,3059.95,26159294,99.71,0,0,0.59,576.76,3059.58,26159295,99.83,0,0,0.37,576.11,3060.25,26159296,99.45,0,0,0.14,576.08,3060.28,26159297,99.84,0,0,0.22,576.05,3060.3,26159298,99.86,0,0,0.17,576.02,3060.32,26159299,99.72,0.01,0.01,0.56,576.61,3059.73,26159300,99.78,0,0,0.36,576.41,3059.95,26159301,99.85,0,0,0.18,576.37,3059.98,26159302,99.8,0.01,0.42,0.22,576.43,3059.92,26159303,99.86,0,0,0.18,576.4,3059.94,26159304,99.73,0,0,0.58,576.82,3059.51,26159305,99.81,0,0,0.32,576.6,3059.75,26159306,99.83,0,0.01,0.16,576.58,3059.77,26159307,99.82,0.01,0.42,0.14,576.56,3059.79,26159308,99.87,0,0,0.21,576.59,3059.74,26159309,99.62,0.01,0.83,0.59,577.01,3059.32,26159310,99.75,0.01,0.42,0.37,576.64,3059.7,26159311,99.86,0,0,0.18,576.62,3059.72,26159312,99.86,0,0,0.14,576.59,3059.74,26159313,99.83,0,0,0.15,576.56,3059.77,26159314,99.74,0,0,0.32,576.96,3059.37,26159315,99.81,0,0,0.59,576.02,3060.32,26159316,99.85,0,0,0.16,576.02,3060.32,26159317,99.84,0,0,0.15,576.15,3060.18,26159318,99.86,0,0,0.14,576.11,3060.21,26159319,99.66,0.01,0.01,0.57,576.9,3059.4,26159320,99.81,0.02,0.03,0.47,576.56,3059.75,26159321,99.85,0.01,0.01,0.14,576.61,3059.7,26159322,99.85,0.04,0.02,0.16,576.58,3059.73,26159323,99.86,0.04,0.02,0.14,576.56,3059.75,26159324,99.83,0.03,0.02,0.18,576.58,3059.73,26159325,99.64,0.03,0.02,0.77,577.14,3059.19,26159326,99.83,0.04,0.03,0.22,576.84,3059.49,26159327,99.86,0.03,0.02,0.16,576.81,3059.52,26159328,99.84,0.05,0.04,0.2,576.82,3059.5,26159329,99.82,0.03,0.02,0.18,576.78,3059.54,26159330,99.69,0,0,0.74,577.27,3059.07,26159331,99.85,0,0,0.14,576.48,3059.85,26159332,99.85,0,0,0.17,576.66,3059.67,26159333,99.85,0,0,0.18,576.64,3059.68,26159334,99.83,0,0,0.18,576.6,3059.71,26159335,99.66,0,0,0.73,577.21,3059.12,26159336,99.84,0,0,0.18,576.69,3059.64,26159337,99.85,0,0,0.15,576.28,3060.04,26159338,99.86,0,0,0.14,576.25,3060.08,26159339,99.84,0,0,0.2,576.33,3060,26159340,99.19,0,0,11.22,576.79,3060.35,26159341,99.82,0,0,0.17,576.75,3060.45,26159342,99.84,0,0,0.14,576.72,3060.48,26159343,99.85,0,0,0.14,576.68,3060.51,26159344,99.84,0,0,0.16,576.66,3060.53,26159345,99.67,0,0,0.75,577.25,3059.97,26159346,99.85,0,0,0.16,576.88,3060.34,26159347,99.85,0,0,0.13,576.99,3060.23,26159348,99.86,0,0,0.16,577,3060.21,26159349,99.8,0,0,0.31,577.22,3059.99,26159350,99.68,0,0,0.79,577.41,3059.81,26159351,99.84,0,0,0.14,576.94,3060.28,26159352,99.87,0,0,0.13,576.91,3060.3,26159353,99.88,0,0,0.18,576.88,3060.33,26159354,99.82,0,0,0.14,576.92,3060.28,26159355,99.69,0,0,0.57,577.4,3059.82,26159356,99.84,0,0,0.35,577.24,3059.97,26159357,99.86,0,0,0.21,577.21,3060,26159358,99.86,0,0,0.16,577.18,3060.03,26159359,99.83,0.01,0.01,0.16,577.15,3060.06,26159360,99.8,0,0,0.34,577.14,3060.09,26159361,99.69,0,0,0.58,577.28,3059.94,26159362,99.88,0,0,0.16,577.03,3060.19,26159363,99.86,0,0,0.16,577,3060.21,26159364,99.88,0,0.01,0.21,576.96,3060.25,26159365,99.83,0,0,0.37,576.46,3060.77,26159366,99.76,0,0.01,0.55,576.76,3060.45,26159367,99.95,0,0,0.14,576.37,3060.84,26159368,99.94,0,0,0.15,576.43,3060.77,26159369,99.93,0,0,0.14,576.49,3060.7,26159370,99.9,0,0,0.32,576.97,3060.25,26159371,99.79,0,0,0.59,577.41,3059.8,26159372,99.93,0,0,0.14,576.66,3060.55,26159373,99.94,0,0,0.15,576.64,3060.56,26159374,99.94,0,0,0.16,576.61,3060.59,26159375,99.86,0,0,0.32,577.17,3060.05,26159376,99.79,0,0,0.59,577.47,3059.74,26159377,99.94,0,0,0.15,576.97,3060.24,26159378,99.94,0,0,0.14,576.94,3060.26,26159379,99.88,0,0,0.29,576.92,3060.26,26159380,99.86,0,0,0.39,577.14,3060.05,26159381,99.82,0,0,0.57,577.55,3059.64,26159382,99.93,0,0,0.18,577.44,3059.75,26159383,99.93,0,0,0.18,577.53,3059.65,26159384,99.92,0,0,0.18,577.5,3059.69,26159385,99.9,0,0,0.37,577.24,3059.97,26159386,99.79,0,0,0.55,577.1,3060.11,26159387,99.94,0,0,0.16,575.95,3061.26,26159388,99.95,0,0,0.18,575.92,3061.28,26159389,99.96,0,0,0.15,575.92,3061.28,26159390,99.89,0,0,0.38,576.63,3060.58,26159391,99.78,0,0,0.5,577.28,3059.93,26159392,99.93,0,0,0.2,577.01,3060.2,26159393,99.94,0,0,0.16,576.98,3060.22,26159394,99.93,0,0,0.16,576.95,3060.25,26159395,99.88,0,0,0.32,576.72,3060.49,26159396,99.81,0,0,0.32,577.31,3059.89,26159397,98.3,0,0,0.39,577.14,3060.06,26159398,99.93,0,0,0.14,577.24,3059.96,26159399,99.94,0,0,0.14,577.26,3059.93,26159400,99.83,0,0,0.37,576.31,3060.89,26159401,99.92,0,0,0.16,576.24,3060.97,26159402,99.78,0,0,0.59,577.18,3060.01,26159403,99.94,0,0,0.14,576.91,3060.28,26159404,99.93,0,0,0.16,576.88,3060.3,26159405,99.88,0,0,0.27,576.89,3060.31,26159406,99.93,0,0,0.16,577.03,3060.16,26159407,99.81,0,0,0.55,577.96,3059.23,26159408,99.93,0,0,0.16,577.71,3059.48,26159409,99.87,0,0,0.27,577.19,3059.97,26159410,99.9,0,0,0.27,577.17,3060.01,26159411,99.93,0,0,0.14,577.15,3060.03,26159412,94.95,0.29,0.01,257.5,588.54,3048.65,26159413,99.95,0,0,0.35,579.41,3057.26,26159414,99.91,0,0,0.15,579.51,3057.16,26159415,99.88,0,0,0.27,579.74,3056.95,26159416,99.91,0,0,0.16,579.72,3056.96,26159417,99.27,0,0,0.66,578.86,3057.82,26159418,99.94,0,0,0.17,577.25,3059.45,26159419,99.93,0.01,0.01,0.14,577.22,3059.48,26159420,99.9,0,0,0.27,577.21,3059.51,26159421,99.94,0,0,0.16,577.31,3059.4,26159422,99.82,0,0,0.55,577.7,3059.03,26159423,99.94,0,0,0.16,577.31,3059.45,26159424,99.93,0,0,0.14,577.28,3059.47,26159425,99.81,0,0,0.29,577.26,3059.51,26159426,99.91,0,0.01,0.14,577.23,3059.54,26159427,99.81,0,0,0.55,577.74,3059.02,26159428,99.93,0,0,0.15,577.84,3058.92,26159429,99.93,0,0,0.16,577.69,3059.06,26159430,99.88,0,0,0.26,576.57,3060.19,26159431,99.96,0,0,0.14,576.55,3060.21,26159432,99.77,0,0,0.42,577.05,3059.71,26159433,99.92,0,0,0.3,576.49,3060.27,26159434,99.95,0,0,0.19,576.45,3060.3,26159435,99.9,0,0,0.29,576.07,3060.7,26159436,99.95,0,0,0.14,576.11,3060.65,26159437,99.95,0,0,0.14,576.09,3060.67,26159438,99.8,0,0,0.57,576.65,3060.11,26159439,99.86,0,0,0.29,576.79,3059.95,26159440,99.83,0,0,0.27,575.81,3060.94,26159441,99.93,0,0,0.15,575.73,3061.02,26159442,99.94,0,0,0.15,575.73,3061.01,26159443,99.8,0,0,0.57,577.18,3059.56,26159444,99.94,0,0,0.16,576.81,3059.93,26159445,99.88,0,0,0.28,576.56,3060.2,26159446,99.92,0,0,0.16,576.52,3060.23,26159447,99.94,0,0,0.18,576.49,3060.25,26159448,99.8,0,0,0.57,577.02,3059.72,26159449,99.92,0,0,0.16,576.68,3060.05,26159450,99.89,0,0,0.28,576.78,3059.98,26159451,99.95,0,0,0.17,576.83,3059.92,26159452,99.93,0,0,0.17,576.8,3059.95,26159453,99.8,0,0,0.57,577.32,3059.42,26159454,99.95,0,0,0.18,576.5,3060.24,26159455,99.9,0.01,0.01,0.31,576.46,3060.3,26159456,99.89,0,0,0.18,576.54,3060.21,26159457,99.17,0,0,0.17,576.36,3060.39,26159458,99.8,0,0,0.45,577.01,3059.73,26159459,99.93,0,0,0.3,577.04,3059.7,26159460,99.89,0,0,0.29,576.29,3060.46,26159461,99.94,0,0,0.18,576.22,3060.52,26159462,99.93,0,0,0.18,576.2,3060.54,26159463,99.78,0,0,0.43,576.83,3059.9,26159464,99.95,0,0,0.3,576.85,3059.88,26159465,99.9,0,0,0.32,576.83,3059.92,26159466,99.94,0,0,0.2,576.8,3059.95,26159467,99.92,0,0,0.2,576.76,3059.98,26159468,99.79,0,0,0.63,577.15,3059.58,26159469,99.82,0,0,0.29,576.72,3059.99,26159470,99.89,0,0,0.31,576.72,3060.01,26159471,99.93,0,0,0.15,576.86,3059.87,26159472,99.93,0,0,0.2,576.83,3059.89,26159473,99.79,0,0,0.45,577.45,3059.27,26159474,99.95,0,0,0.3,576.77,3059.94,26159475,99.87,0,0,0.29,576.53,3060.2,26159476,99.93,0,0,0.17,576.49,3060.24,26159477,99.93,0,0,0.21,576.47,3060.25,26159478,99.94,0,0,0.17,576.45,3060.27,26159479,99.78,0.01,0.01,0.58,577.42,3059.29,26159480,99.9,0,0,0.33,576.84,3059.89,26159481,99.92,0,0.01,0.21,576.78,3059.94,26159482,99.94,0,0,0.2,576.74,3059.98,26159483,99.93,0,0,0.2,576.71,3060.01,26159484,99.8,0,0,0.63,577.49,3059.22,26159485,99.86,0,0,0.29,575.39,3061.34,26159486,99.93,0,0.01,0.17,575.35,3061.38,26159487,99.93,0,0,0.18,575.31,3061.41,26159488,99.93,0,0,0.16,575.3,3061.42,26159489,99.8,0,0,0.59,576.77,3059.94,26159490,99.86,0,0,0.29,576.72,3060,26159491,99.94,0,0,0.17,576.68,3060.04,26159492,99.95,0,0,0.17,576.79,3059.93,26159493,99.93,0,0,0.17,576.81,3059.9,26159494,99.8,0,0,0.53,577.56,3059.14,26159495,99.86,0,0,0.43,577.03,3059.69,26159496,99.91,0,0,0.2,576.99,3059.73,26159497,99.93,0,0,0.21,576.96,3059.75,26159498,99.93,0,0,0.2,576.93,3059.78,26159499,99.73,0,0,0.75,577.46,3059.23,26159500,99.87,0,0,0.31,577.3,3059.4,26159501,99.95,0,0,0.21,577.28,3059.41,26159502,99.94,0,0,0.2,577.25,3059.44,26159503,99.9,0,0,0.2,577.22,3059.47,26159504,99.8,0,0,0.6,577.44,3059.26,26159505,99.86,0,0,0.36,577.17,3059.53,26159506,99.93,0,0,0.15,577.15,3059.55,26159507,99.93,0,0,0.16,577.31,3059.39,26159508,99.93,0,0,0.18,577.29,3059.41,26159509,99.81,0,0,0.44,578.01,3058.68,26159510,99.88,0,0,0.43,577.01,3059.7,26159511,99.95,0,0,0.17,576.97,3059.73,26159512,99.93,0,0,0.17,576.94,3059.76,26159513,99.94,0,0,0.17,576.9,3059.79,26159514,99.8,0,0,0.43,577.49,3059.19,26159515,99.91,0,0,0.41,576.84,3059.86,26159516,99.9,0,0,0.18,576.87,3059.83,26159517,99.93,0,0,0.16,576.76,3059.93,26159518,99.93,0,0,0.15,576.74,3059.95,26159519,99.93,0,0,0.18,576.71,3059.97,26159520,99.74,0,0,0.69,577.49,3059.21,26159521,99.95,0,0,0.16,577.17,3059.53,26159522,99.9,0,0,0.16,577.32,3059.38,26159523,99.93,0,0,0.15,577.29,3059.4,26159524,99.93,0,0,0.16,577.26,3059.43,26159525,99.77,0,0,0.68,577.37,3059.34,26159526,99.94,0,0,0.14,576.97,3059.73,26159527,99.94,0,0,0.16,576.94,3059.76,26159528,99.93,0.01,0.01,0.19,577.02,3059.66,26159529,99.88,0,0,0.28,577,3059.67,26159530,99.77,0,0,0.66,577.67,3059.03,26159531,99.9,0,0,0.17,577.22,3059.47,26159532,99.95,0,0,0.15,577.18,3059.51,26159533,99.93,0,0,0.18,577.15,3059.54,26159534,99.92,0,0,0.14,577.25,3059.43,26159535,99.72,0,0,0.65,577.68,3059.01,26159536,99.94,0,0,0.21,577.28,3059.41,26159537,99.95,0,0,0.18,577.24,3059.44,26159538,99.95,0,0,0.14,577.21,3059.47,26159539,99.93,0.01,0.01,0.15,577.17,3059.5,26159540,99.72,0,0,0.61,577.52,3059.17,26159541,99.94,0,0,0.2,577.22,3059.47,26159542,99.93,0,0,0.16,577.29,3059.4,26159543,99.95,0,0,0.14,577.26,3059.42,26159544,99.93,0,0,0.14,577.22,3059.46,26159545,99.75,0,0,0.65,577.66,3059.03,26159546,99.91,0,0.01,0.19,577.43,3059.26,26159547,99.94,0,0,0.14,577.4,3059.28,26159548,99.93,0,0,0.16,577.45,3059.22,26159549,99.95,0,0,0.14,577.52,3059.15,26159550,99.74,0,0,0.55,578.26,3058.43,26159551,99.93,0,0,0.33,577.47,3059.21,26159552,99.94,0,0,0.18,577.45,3059.24,26159553,99.93,0,0,0.16,577.42,3059.26,26159554,99.94,0,0,0.15,577.38,3059.29,26159555,99.72,0,0,0.48,577.58,3059.11,26159556,99.92,0,0,0.38,577.29,3059.4,26159557,99.93,0,0,0.14,577.25,3059.43,26159558,99.94,0,0,0.16,577.23,3059.44,26159559,99.83,0,0,0.26,577.21,3059.44,26159560,99.71,0,0,0.49,577.77,3058.9,26159561,99.93,0,0,0.4,577.41,3059.25,26159562,99.92,0,0,0.14,577.38,3059.28,26159563,99.92,0,0,0.15,577.56,3059.1,26159564,99.92,0,0,0.16,577.52,3059.13,26159565,99.88,0,0,0.27,577.52,3059.15,26159566,99.78,0,0,0.56,577.63,3059.04,26159567,99.95,0,0,0.17,577.21,3059.45,26159568,99.92,0,0,0.14,577.17,3059.48,26159569,99.92,0,0,0.16,577.15,3059.5,26159570,99.88,0,0,0.27,577.57,3059.1,26159571,99.8,0,0,0.62,578.1,3058.57,26159572,99.94,0,0,0.14,577.52,3059.14,26159573,99.94,0,0,0.14,577.49,3059.16,26159574,99.93,0,0,0.14,577.46,3059.19,26159575,99.88,0,0,0.25,577.69,3058.98,26159576,99.78,0,0,0.52,577.6,3059.06,26159577,99.94,0,0,0.22,576.49,3060.17,26159578,99.94,0,0,0.15,576.56,3060.09,26159579,99.93,0,0,0.15,576.52,3060.13,26159580,99.84,0,0,0.25,576.77,3059.9,26159581,99.78,0,0,0.53,577.31,3059.35,26159582,99.95,0,0,0.22,576.2,3060.46,26159583,99.93,0,0,0.15,576.17,3060.48,26159584,99.94,0,0,0.14,576.22,3060.43,26159585,99.9,0,0,0.27,576.8,3059.87,26159586,99.82,0,0,0.44,577.13,3059.53,26159587,99.93,0,0,0.31,576.73,3059.93,26159588,99.92,0,0,0.14,576.71,3059.94,26159589,99.88,0,0,0.3,576.93,3059.7,26159590,99.88,0,0,0.28,576.92,3059.72,26159591,99.77,0,0,0.41,577.46,3059.18,26159592,99.92,0,0,0.3,577.05,3059.59,26159593,99.9,0,0,0.14,577.03,3059.6,26159594,99.89,0,0,0.15,577,3059.65,26159595,99.86,0,0,0.29,576.75,3059.91,26159596,99.82,0,0,0.33,577.06,3059.6,26159597,99.91,0,0,0.46,576.44,3060.21,26159598,99.92,0,0,0.15,576.41,3060.24,26159599,99.92,0.01,0.01,0.14,576.48,3060.17,26159600,99.86,0,0,0.25,577.11,3059.55,26159601,99.8,0,0,0.31,577.36,3059.32,26159602,99.91,0,0,0.41,576.99,3059.7,26159603,99.93,0,0.01,0.14,576.95,3059.74,26159604,99.93,0,0,0.17,576.9,3059.78,26159605,99.88,0,0,0.31,576.98,3059.72,26159606,99.92,0,0.01,0.18,577.04,3059.65,26159607,99.78,0,0,0.59,577.36,3059.33,26159608,99.92,0,0,0.18,576.97,3059.71,26159609,99.91,0,0,0.18,576.94,3059.74,26159610,99.84,0,0,0.33,575.74,3060.95,26159611,99.89,0,0,0.14,575.69,3061,26159612,99.81,0,0,0.6,577.13,3059.55,26159613,99.91,0,0,0.15,576.99,3059.69,26159614,99.95,0,0,0.15,576.97,3059.7,26159615,99.88,0,0,0.27,576.81,3059.88,26159616,99.91,0,0,0.14,576.75,3059.94,26159617,99.78,0,0,0.56,577.17,3059.52,26159618,99.93,0,0,0.15,577.04,3059.64,26159619,99.87,0,0,0.36,576.98,3059.68,26159620,99.88,0,0,0.27,576.97,3059.7,26159621,99.92,0.01,0.02,0.16,577.04,3059.63,26159622,99.77,0,0.01,0.69,577.34,3059.33,26159623,99.94,0,0,0.14,577.03,3059.63,26159624,99.93,0,0,0.15,576.97,3059.7,26159625,99.9,0,0,0.27,577.2,3059.5,26159626,99.92,0,0,0.14,577.32,3059.37,26159627,99.77,0,0,0.57,577.57,3059.12,26159628,99.91,0,0,0.43,577.19,3059.49,26159629,99.9,0,0,0.18,577.19,3059.48,26159630,99.87,0,0,0.29,577.02,3059.67,26159631,99.92,0,0,0.17,576.95,3059.74,26159632,99.79,0,0,0.54,577.53,3059.15,26159633,99.94,0,0,0.14,577.31,3059.37,26159634,99.93,0,0,0.15,577.24,3059.43,26159635,99.89,0,0,0.32,576.99,3059.69,26159636,99.9,0,0,0.14,577.04,3059.64,26159637,99.9,0,0,0.18,576.97,3059.7,26159638,99.8,0,0,0.58,577.1,3059.57,26159639,99.95,0,0,0.18,576.77,3059.9,26159640,99.84,0,0,0.3,577.23,3059.45,26159641,99.94,0,0,0.16,577.2,3059.48,26159642,99.93,0,0,0.14,577.23,3059.45,26159643,99.8,0,0,0.55,576.65,3060.02,26159644,99.93,0,0,0.15,576.19,3060.47,26159645,99.87,0,0,0.28,577,3059.67,26159646,99.94,0,0,0.14,576.98,3059.69,26159647,99.91,0,0,0.16,576.93,3059.74,26159648,99.78,0,0,0.56,577.73,3058.93,26159649,99.82,0,0,0.27,577.2,3059.44,26159650,99.84,0,0,0.31,577.47,3059.19,26159651,99.95,0,0,0.18,577.49,3059.16,26159652,99.94,0,0,0.13,577.42,3059.22,26159653,99.78,0,0,0.58,577.82,3058.82,26159654,99.93,0,0,0.15,577.26,3059.4,26159655,99.83,0,0,0.29,577.31,3059.36,26159656,99.91,0.01,0.01,0.18,577.17,3059.49,26159657,99.92,0,0,0.21,577.3,3059.36,26159658,99.77,0,0,0.57,577.71,3058.95,26159659,99.84,0.01,0.01,0.18,577.43,3059.22,26159660,99.78,0,0,0.31,577.23,3059.44,26159661,99.92,0,0,0.18,577.24,3059.42,26159662,99.92,0,0,0.18,577.17,3059.5,26159663,99.76,0,0,0.45,577.49,3059.16,26159664,99.9,0,0,0.29,576.96,3059.68,26159665,99.83,0,0,0.29,576.68,3059.98,26159666,99.88,0.01,0.01,0.16,576.74,3059.92,26159667,99.88,0,0,0.14,576.73,3059.93,26159668,99.76,0,0,0.51,577.55,3059.1,26159669,99.87,0,0,0.2,577.74,3058.9,26159670,99.87,0,0,0.26,577.22,3059.44,26159671,99.91,0,0,0.15,577.14,3059.52,26159672,99.9,0,0,0.16,577.27,3059.39,26159673,99.79,0,0,0.41,577.81,3058.84,26159674,99.88,0,0,0.29,577.38,3059.27,26159675,99.88,0,0,0.29,577.49,3059.17,26159676,99.92,0,0,0.14,577.49,3059.17,26159677,99.9,0,0,0.14,577.42,3059.24,26159678,99.91,0,0,0.15,577.46,3059.19,26159679,99.66,0,0,0.73,577.85,3058.77,26159680,99.88,0,0,0.28,577.43,3059.21,26159681,99.91,0,0,0.16,577.45,3059.19,26159682,99.9,0,0,0.14,577.48,3059.16,26159683,99.91,0,0,0.17,577.4,3059.23,26159684,99.77,0,0,0.55,577.59,3059.04,26159685,99.89,0,0,0.27,577.22,3059.42,26159686,99.91,0,0,0.16,577.16,3059.48,26159687,99.9,0,0,0.14,577.2,3059.43,26159688,99.92,0,0,0.15,577.21,3059.42,26159689,99.77,0,0,0.57,577.28,3059.35,26159690,99.89,0,0,0.29,577.01,3059.63,26159691,99.93,0,0,0.14,576.95,3059.69,26159692,99.93,0,0,0.15,576.89,3059.74,26159693,99.94,0,0,0.15,577,3059.63,26159694,99.78,0,0,0.59,577.87,3058.76,26159695,99.9,0,0,0.31,577.15,3059.5,26159696,99.92,0,0,0.18,577.28,3059.36,26159697,99.88,0,0,0.21,576.97,3059.67,26159698,99.93,0,0,0.18,576.93,3059.7,26159699,99.55,0.01,0.01,0.63,577.58,3059.05,26159700,99.84,0,0,0.28,576.68,3059.97,26159701,99.9,0,0,0.14,576.74,3059.9,26159702,99.9,0,0,0.18,576.73,3059.9,26159703,99.92,0,0,0.14,576.67,3059.97,26159704,99.8,0,0,0.57,577.27,3059.35,26159705,99.86,0,0,0.32,577.7,3058.94,26159706,99.9,0,0,0.14,577.64,3059,26159707,99.93,0,0,0.13,577.75,3058.89,26159708,99.93,0,0,0.16,577.67,3058.96,26159709,99.73,0,0,0.63,577.91,3058.7,26159710,99.85,0,0,0.34,577.5,3059.12,26159711,99.9,0,0,0.18,577.43,3059.19,26159712,99.93,0,0,0.18,577.37,3059.24,26159713,99.93,0,0,0.18,577.49,3059.12,26159714,99.77,0,0,0.43,577.77,3058.85,26159715,99.8,0,0,0.41,577.42,3059.22,26159716,99.9,0,0,0.14,577.53,3059.11,26159717,99.91,0,0,0.2,577.7,3058.93,26159718,99.9,0,0,0.14,577.64,3058.99,26159719,99.92,0.01,0.01,0.15,577.72,3058.9,26159720,99.32,0,0,0.7,578.85,3057.78,26159721,93.94,2.17,0.01,77.09,593.59,3032.88,26159722,99.92,0,0,0.14,580.14,3053,26159723,99.93,0.01,0,0.16,580.18,3052.96,26159724,99.89,0,0,0.15,580.18,3052.97,26159725,98.72,0.01,0,16.07,582.21,3051.13,26159726,99.89,0.01,0.01,0.26,578.5,3054.4,26159727,99.92,0,0,0.14,577.64,3055.27,26159728,99.91,0,0,0.16,577.63,3055.27,26159729,99.91,0,0,0.14,577.69,3055.22,26159730,99.65,0,0,0.69,578.11,3054.81,26159731,99.88,0,0,0.14,577.93,3054.99,26159732,99.88,0,0,0.16,577.96,3054.96,26159733,99.87,0,0,0.14,577.89,3055.02,26159734,99.88,0,0,0.14,577.92,3054.98,26159735,99.7,0,0,0.76,578.08,3054.83,26159736,99.85,0,0,0.18,577.66,3055.26,26159737,99.89,0,0,0.14,577.01,3055.9,26159738,99.9,0,0,0.15,576.97,3055.94,26159739,99.82,0,0,0.35,576.94,3055.94,26159740,99.64,0,0,0.63,577.76,3055.13,26159741,99.84,0,0,0.2,576.95,3055.94,26159742,99.89,0,0,0.16,576.88,3056,26159743,99.87,0,0,0.14,576.96,3055.92,26159744,99.87,0,0,0.15,576.89,3056.01,26159745,99.65,0,0,0.7,577.08,3055.83,26159746,99.88,0,0,0.14,576.96,3055.95,26159747,99.85,0,0,0.16,576.88,3056.02,26159748,99.89,0,0,0.15,576.93,3055.97,26159749,99.86,0,0,0.14,576.93,3055.97,26159750,99.69,0,0,0.76,576.51,3056.39,26159751,99.87,0,0,0.17,576.91,3056,26159752,99.88,0,0,0.15,576.95,3055.95,26159753,99.84,0,0,0.16,576.89,3056,26159754,99.85,0,0,0.13,576.96,3055.93,26159755,99.66,0,0,0.54,577.29,3055.61,26159756,99.86,0,0,0.37,576.87,3056.03,26159757,99.82,0,0,0.17,576.99,3055.91,26159758,99.89,0,0,0.16,576.91,3055.98,26159759,99.87,0,0,0.14,576.86,3056.03,26159760,99.81,0,0,0.28,577.23,3055.67,26159761,99.7,0,0,0.63,576.77,3056.13,26159762,99.85,0,0,0.15,576.12,3056.77,26159763,99.84,0,0,0.15,576.21,3056.69,26159764,99.83,0,0,0.14,576.19,3056.71,26159765,99.79,0,0,0.3,577.1,3055.81,26159766,99.71,0,0,0.54,577.22,3055.69,26159767,99.85,0,0,0.16,576.66,3056.24,26159768,99.83,0,0,0.15,576.62,3056.28,26159769,99.78,0,0,0.29,577.2,3055.68,26159770,99.8,0,0,0.34,577.14,3055.75,26159771,99.68,0,0,0.56,577.5,3055.38,26159772,99.83,0,0,0.14,577.21,3055.67,26159773,99.83,0,0,0.14,577.15,3055.73,26159774,99.82,0,0,0.14,577.14,3055.73,26159775,99.78,0,0,0.33,576.72,3056.17,26159776,95.1,0.3,0.01,77.98,590.46,3042.7,26159777,99.79,0,0,179.95,578.34,3054.65,26159778,99.85,0,0,0.16,578.38,3054.6,26159779,99.83,0.01,0.01,0.15,578.3,3054.68,26159780,99.56,0,0,0.29,578.9,3054.1,26159781,99.72,0,0,0.54,578.94,3054.07,26159782,99.85,0,0,0.21,577.27,3055.76,26159783,99.84,0,0,0.14,577.22,3055.8,26159784,99.84,0,0,0.18,577.15,3055.87,26159785,99.79,0,0,0.31,576.89,3056.15,26159786,99.7,0.01,0.01,0.59,577.41,3055.62,26159787,99.82,0,0,0.14,577.19,3055.83,26159788,99.79,0,0,0.15,577.13,3055.89,26159789,99.85,0,0,0.16,577.24,3055.78,26159790,99.78,0,0,0.39,576.72,3056.32,26159791,99.7,0,0,0.53,577.14,3055.89,26159792,99.85,0,0,0.14,577.42,3055.6,26159793,99.86,0,0,0.18,577.46,3055.56,26159794,99.87,0,0,0.14,577.39,3055.62,26159795,99.79,0,0,0.29,577.44,3055.59,26159796,99.7,0,0,0.32,577.82,3055.21,26159797,99.81,0,0,0.42,577.19,3055.83,26159798,99.83,0,0,0.17,577.12,3055.9,26159799,99.78,0,0,0.28,577.47,3055.53,26159800,99.8,0,0,0.31,577.17,3055.84,26159801,99.84,0,0,0.17,577.14,3055.87,26159802,99.68,0,0,0.56,577.92,3055.08,26159803,99.84,0,0,0.14,577.41,3055.59,26159804,99.87,0,0,0.13,577.35,3055.64,26159805,99.76,0,0,0.33,577.25,3055.77,26159806,99.83,0,0,0.15,577.19,3055.82,26159807,99.7,0,0,0.55,577.64,3055.36,26159808,99.83,0.01,0.01,0.19,577.44,3055.56,26159809,99.83,0,0,0.13,577.42,3055.58,26159810,99.78,0,0,0.3,577.67,3055.35,26159811,99.82,0,0,0.14,577.74,3055.27,26159812,99.71,0,0.01,0.54,578.04,3054.97,26159813,99.85,0,0.01,0.19,577.63,3055.38,26159814,99.85,0,0,0.15,577.6,3055.4,26159815,99.81,0,0,0.3,577.24,3055.78,26159816,99.86,0,0,0.16,577.26,3055.76,26159817,99.7,0,0,0.62,577.7,3055.31,26159818,99.85,0,0,0.15,576.95,3056.05,26159819,99.83,0,0,0.14,576.93,3056.07,26159820,99.79,0,0,0.3,577.64,3055.37,26159821,99.71,0,0,0.14,577.61,3055.4,26159822,99.72,0,0,0.52,578.1,3054.91,26159823,99.86,0,0,0.2,577.5,3055.5,26159824,99.83,0,0,0.15,577.47,3055.53,26159825,99.81,0,0,0.3,577.47,3055.55,26159826,99.86,0,0,0.16,577.43,3055.58,26159827,99.74,0,0,0.42,577.71,3055.3,26159828,99.85,0,0,0.29,577.13,3055.87,26159829,99.79,0,0,0.28,577.58,3055.4,26159830,99.78,0,0,0.34,577.76,3055.23,26159831,99.85,0,0,0.18,577.73,3055.26,26159832,99.74,0,0,0.56,578,3054.97,26159833,99.85,0,0,0.18,577.43,3055.55,26159834,99.84,0,0,0.18,577.39,3055.6,26159835,99.81,0,0,0.29,577.39,3055.63,26159836,99.87,0,0,0.15,577.35,3055.67,26159837,99.82,0,0,0.2,577.16,3055.86,26159838,99.68,0,0,0.55,578.07,3054.94,26159839,99.85,0.01,0.01,0.16,577.68,3055.32,26159840,99.77,0,0,0.3,577.42,3055.6,26159841,99.84,0,0,0.15,577.38,3055.64,26159842,99.86,0,0,0.15,577.35,3055.66,26159843,99.71,0,0,0.55,577.98,3055.04,26159844,99.85,0,0,0.16,577.49,3055.54,26159845,99.77,0,0,0.35,577.23,3055.81,26159846,99.84,0,0.01,0.18,577.19,3055.85,26159847,99.84,0,0.01,0.19,577.15,3055.89,26159848,99.7,0,0,0.59,577.88,3055.16,26159849,99.85,0,0,0.2,577.66,3055.39,26159850,99.75,0,0,0.32,576.17,3056.89,26159851,99.84,0,0,0.14,576.01,3057.05,26159852,99.85,0,0,0.16,575.98,3057.07,26159853,99.7,0,0,0.6,577.13,3055.92,26159854,99.86,0,0,0.14,577.65,3055.4,26159855,99.8,0,0,0.33,577.4,3055.67,26159856,99.83,0,0,0.16,577.39,3055.67,26159857,99.84,0,0,0.14,577.52,3055.54,26159858,99.7,0,0,0.59,577.95,3055.1,26159859,99.78,0,0,0.29,577.46,3055.56,26159860,99.78,0,0,0.27,576.98,3056.06,26159861,99.86,0,0,0.17,576.93,3056.11,26159862,99.84,0,0,0.14,576.89,3056.14,26159863,99.72,0,0,0.4,577.46,3055.57,26159864,99.85,0,0,0.3,577.66,3055.37,26159865,99.75,0,0,0.29,576.34,3056.7,26159866,99.83,0,0,0.14,576.25,3056.8,26159867,99.85,0,0,0.17,576.22,3056.83,26159868,99.66,0,0,0.51,576.83,3056.21,26159869,99.83,0,0,0.22,577.14,3055.9,26159870,99.8,0,0,0.3,577.63,3055.43,26159871,99.83,0,0,0.16,577.6,3055.45,26159872,99.85,0,0,0.17,577.77,3055.28,26159873,99.85,0,0,0.16,577.73,3055.31,26159874,99.69,0,0,0.57,578.05,3054.98,26159875,99.79,0,0,0.35,577.67,3055.39,26159876,99.85,0,0,0.21,577.63,3055.42,26159877,99.82,0,0,0.21,577.34,3055.7,26159878,99.83,0,0,0.19,577.18,3055.86,26159879,99.69,0,0,0.57,577.94,3055.09,26159880,99.79,0,0,0.38,577.95,3055.1,26159881,99.83,0,0,0.14,577.95,3055.1,26159882,99.82,0,0,0.16,577.89,3055.15,26159883,99.84,0,0,0.16,577.87,3055.17,26159884,99.7,0,0,0.56,578.3,3054.74,26159885,99.8,0,0,0.34,577.9,3055.15,26159886,99.82,0,0,0.14,577.85,3055.2,26159887,99.83,0,0,0.15,577.98,3055.06,26159888,99.84,0,0,0.15,577.93,3055.11,26159889,99.6,0,0,0.68,578.4,3054.62,26159890,99.69,0,0,0.3,577.03,3056,26159891,99.83,0,0,0.16,576.78,3056.25,26159892,99.83,0,0,0.14,576.67,3056.36,26159893,96.8,0.02,0.01,77.56,584.03,3049.72,26159894,99.68,0,0,0.52,579.76,3053.02,26159895,99.75,0,0,0.36,579.72,3053.08,26159896,99.84,0,0,0.17,579.73,3053.06,26159897,99.85,0,0,0.21,579.45,3053.34,26159898,99.83,0,0,0.21,577.95,3054.89,26159899,99.69,0.01,0.01,0.43,577.59,3055.26,26159900,99.77,0,0,0.44,577.07,3055.8,26159901,99.44,0,0,0.18,577.01,3055.85,26159902,99.43,0,0,0.16,577.13,3055.73,26159903,99.84,0,0,0.17,577.07,3055.79,26159904,99.69,0,0,0.46,577.35,3055.51,26159905,99.75,0,0,0.46,577.08,3055.83,26159906,99.83,0.01,0.01,0.16,577.1,3055.8,26159907,99.85,0,0,0.17,577.03,3055.87,26159908,99.84,0,0,0.18,577.04,3055.86,26159909,99.72,0,0,0.39,577.81,3055.08,26159910,99.8,0,0,0.56,577.09,3055.82,26159911,99.86,0,0,0.2,577.04,3055.87,26159912,99.86,0,0,0.2,577.15,3055.75,26159913,99.83,0,0,0.16,577.09,3055.81,26159914,99.84,0,0,0.18,577.03,3055.86,26159915,99.63,0,0,0.74,577.65,3055.26,26159916,99.84,0,0,0.17,577.35,3055.55,26159917,99.82,0,0,0.16,577.3,3055.6,26159918,99.84,0,0,0.14,577.29,3055.6,26159919,99.84,0,0,0.29,576.89,3055.99,26159920,99.67,0,0,0.69,577.45,3055.44,26159921,99.91,0,0,0.14,577.04,3055.85,26159922,99.92,0,0,0.16,577.06,3055.82,26159923,99.94,0,0,0.14,577.11,3055.77,26159924,99.95,0,0,0.15,577.05,3055.83,26159925,99.77,0,0,0.7,577.63,3055.26,26159926,99.94,0,0,0.15,577.37,3055.52,26159927,99.91,0,0,0.14,577.3,3055.59,26159928,99.93,0,0,0.16,577.26,3055.62,26159929,99.93,0,0,0.14,577.36,3055.52,26159930,99.74,0,0,0.59,577.78,3055.11,26159931,99.93,0,0,0.26,577.02,3055.87,26159932,99.92,0,0,0.13,577.12,3055.76,26159933,99.93,0,0,0.15,577.12,3055.76,26159934,99.93,0,0,0.15,577.06,3055.82,26159935,99.74,0,0,0.75,576.86,3056.03,26159936,99.57,0.04,2.45,0.28,576.08,3056.79,26159937,99.82,0.02,0.53,0.26,577.28,3055.52,26159938,99.92,0.01,0,0.16,577.89,3054.87,26159939,99.31,0.06,4.75,0.32,577.89,3054.83,26159940,99.58,0,0,0.87,573.26,3059.6,26159941,99.91,0,0,0.16,569.37,3063.6,26159942,99.93,0,0,0.14,569.5,3063.47,26159943,99.93,0,0,0.14,569.49,3063.47,26159944,99.94,0,0,0.16,569.47,3063.48,26159945,99.73,0,0,0.71,570.14,3062.85,26159946,99.93,0,0,0.14,569.7,3063.3,26159947,99.96,0,0,0.13,569.68,3063.32,26159948,99.94,0,0,0.16,569.66,3063.33,26159949,99.89,0,0,0.31,569.64,3063.33,26159950,99.72,0,0,0.6,570.13,3062.85,26159951,99.93,0,0,0.28,569.36,3063.62,26159952,99.94,0,0,0.13,569.32,3063.65,26159953,99.93,0,0,0.16,569.4,3063.57,26159954,99.93,0,0,0.14,569.5,3063.46,26159955,99.84,0,0,0.29,568.33,3064.65,26159956,99.79,0,0,0.57,569.38,3063.6,26159957,99.93,0,0,0.18,568.97,3064.01,26159958,99.91,0.01,0.02,0.17,568.93,3064.04,26159959,99.94,0.01,0.01,0.15,568.88,3064.08,26159960,99.87,0,0,0.28,569.12,3063.86,26159961,99.8,0,0,0.56,569.88,3063.1,26159962,99.94,0,0,0.15,569.76,3063.22,26159963,99.93,0,0,0.15,569.72,3063.25,26159964,99.4,0.11,4.21,0.27,569.42,3063.52,26159965,99.88,0,0,0.35,569.28,3063.63,26159966,99.81,0,0,0.54,569.79,3063.11,26159967,99.96,0,0,0.14,569.7,3063.2,26159968,99.63,0.07,2.59,0.26,569.63,3063.25,26159969,99.94,0,0,0.17,569.6,3063.25,26159970,99.88,0,0,0.28,569.62,3063.25,26159971,99.78,0,0,0.51,570.42,3062.44,26159972,99.95,0,0,0.2,569.81,3063.05,26159973,99.94,0,0,0.13,569.79,3063.06,26159974,99.78,0.04,1.23,0.17,569.7,3063.14,26159975,99.92,0,0,0.33,569.6,3063.25,26159976,99.79,0,0,0.41,570.05,3062.8,26159977,99.94,0,0,0.32,569.81,3063.03,26159978,99.91,0,0,0.18,569.8,3063.03,26159979,99.88,0,0,0.31,569.29,3063.52,26159980,99.88,0,0,0.33,569.77,3063.06,26159981,99.58,0.05,1.77,0.48,570.12,3062.69,26159982,99.94,0,0,0.35,569.81,3063,26159983,99.91,0,0,0.15,569.78,3063.02,26159984,99.88,0.01,0.44,0.21,569.74,3063.07,26159985,99.78,0.01,0.41,0.32,569.71,3063.11,26159986,99.66,0.03,1.24,0.64,570.09,3062.71,26159987,99.92,0,0,0.16,569.71,3063.09,26159988,99.93,0,0,0.14,569.68,3063.11,26159989,99.92,0,0,0.14,569.65,3063.13,26159990,99.91,0,0,0.29,569.66,3063.14,26159991,99.78,0,0,0.35,570.24,3062.56,26159992,99.95,0,0,0.39,568.82,3063.97,26159993,99.82,0,0,0.15,568.79,3063.99,26159994,99.93,0,0,0.15,568.78,3064.01,26159995,99.9,0,0,0.32,569.54,3063.25,26159996,99.91,0,0,0.14,569.49,3063.3,26159997,99.78,0,0,0.61,569.49,3063.3,26159998,99.93,0,0,0.16,568.94,3063.84,26159999,99.87,0,0,0.14,568.94,3063.84,26160000,99.86,0,0,0.27,569.64,3063.16,26160001,99.95,0,0,0.16,569.66,3063.13,26160002,99.64,0.01,0.41,0.61,569.92,3062.87,26160003,99.92,0,0,0.15,569.49,3063.29,26160004,99.94,0,0,0.14,569.47,3063.3,26160005,99.89,0,0,0.37,568.47,3064.32,26160006,99.92,0,0,0.19,568.39,3064.39,26160007,99.79,0,0,0.6,569.99,3062.79,26160008,99.94,0,0,0.18,569.77,3063.01,26160009,99.9,0,0,0.3,569.75,3063,26160010,99.86,0,0,0.29,569.99,3062.78,26160011,99.95,0,0,0.16,569.97,3062.8,26160012,99.8,0,0,0.58,569.55,3063.21,26160013,99.8,0.02,0.82,0.26,568.59,3064.15,26160014,99.91,0,0,0.18,568.76,3063.98,26160015,99.87,0,0,0.34,569.5,3063.25,26160016,99.93,0,0,0.18,569.48,3063.27,26160017,99.8,0,0,0.45,570.17,3062.57,26160018,99.91,0,0,0.33,569.66,3063.08,26160019,99.92,0.01,0.01,0.18,569.66,3063.07,26160020,99.91,0,0,0.32,569.75,3063,26160021,99.9,0,0,0.19,569.71,3063.03,26160022,99.81,0,0,0.57,570.13,3062.61,26160023,99.93,0,0,0.18,569.91,3062.82,26160024,99.93,0,0,0.18,569.88,3062.85,26160025,99.81,0,0,0.29,570.13,3062.62,26160026,99.95,0,0,0.14,570.11,3062.64,26160027,99.78,0,0,0.42,570.43,3062.31,26160028,99.93,0,0,0.33,570.16,3062.57,26160029,99.92,0,0,0.21,570.26,3062.47,26160030,99.84,0,0,0.34,570.01,3062.74,26160031,99.93,0,0,0.15,569.99,3062.75,26160032,99.8,0,0,0.54,570.35,3062.39,26160033,99.95,0,0,0.14,570.2,3062.53,26160034,99.91,0,0,0.18,570.18,3062.54,26160035,99.9,0,0,0.29,569.69,3063.05,26160036,99.94,0,0,0.16,569.63,3063.11,26160037,99.93,0,0,0.19,569.68,3063.05,26160038,99.8,0,0,0.58,570.11,3062.61,26160039,99.9,0,0,0.38,569.97,3062.73,26160040,99.84,0,0,0.3,570.23,3062.49,26160041,99.92,0,0,0.16,570.2,3062.52,26160042,99.9,0,0,0.14,570.18,3062.53,26160043,99.78,0,0,0.58,570.66,3062.05,26160044,99.9,0,0,0.18,569.91,3062.81,26160045,99.86,0,0,0.29,570,3062.74,26160046,99.9,0,0,0.15,569.37,3063.36,26160047,99.94,0,0,0.17,569.43,3063.3,26160048,99.77,0,0,0.56,569.86,3062.86,26160049,99.93,0,0,0.16,569.49,3063.23,26160050,99.89,0,0,0.3,569.49,3063.24,26160051,99.91,0,0,0.18,569.46,3063.27,26160052,99.95,0,0,0.14,569.44,3063.28,26160053,99.81,0,0,0.54,569.77,3062.94,26160054,99.95,0,0,0.14,569.41,3063.3,26160055,99.84,0,0,0.29,569.4,3063.32,26160056,99.95,0,0,0.18,569.39,3063.33,26160057,99.91,0,0,0.18,569.2,3063.53,26160058,99.8,0,0,0.56,569.94,3062.79,26160059,99.94,0,0,0.14,569.4,3063.33,26160060,99.88,0,0,0.29,569.52,3063.23,26160061,99.95,0,0,0.14,569.49,3063.25,26160062,99.95,0,0,0.16,569.47,3063.27,26160063,99.72,0,0,0.55,569.98,3062.76,26160064,99.93,0,0,0.14,569.43,3063.3,26160065,99.85,0,0,0.29,569.19,3063.56,26160066,99.93,0,0,0.14,569.15,3063.59,26160067,99.93,0,0,0.16,569.13,3063.61,26160068,99.78,0,0,0.42,569.52,3063.22,26160069,99.85,0,0,0.44,569.36,3063.34,26160070,99.89,0,0,0.3,569.52,3063.2,26160071,99.93,0.02,0.13,0.23,569.45,3063.27,26160072,99.89,0.04,1.76,0.46,569.55,3063.14,26160073,99.8,0,0,0.57,569.96,3062.73,26160074,99.92,0,0,0.16,570.15,3062.55,26160075,99.87,0,0,0.29,570.21,3062.52,26160076,99.92,0,0,0.16,570.18,3062.54,26160077,99.9,0,0,0.18,569.93,3062.78,26160078,99.95,0,0,0.15,569.89,3062.82,26160079,99.78,0.01,0.01,0.55,570.44,3062.26,26160080,99.9,0,0,0.3,570.11,3062.61,26160081,99.94,0,0,0.16,570.08,3062.64,26160082,99.93,0,0,0.14,570.06,3062.65,26160083,99.94,0,0,0.14,570.04,3062.67,26160084,99.81,0,0,0.56,570.7,3062,26160085,99.88,0,0,0.31,570.47,3062.25,26160086,99.95,0,0,0.15,570.44,3062.27,26160087,99.91,0,0,0.14,570.44,3062.27,26160088,99.94,0,0,0.16,570.41,3062.3,26160089,99.8,0,0,0.55,570.45,3062.27,26160090,99.88,0,0,0.29,570.14,3062.59,26160091,99.95,0,0,0.16,570.13,3062.6,26160092,99.93,0,0,0.14,570.1,3062.63,26160093,99.96,0,0,0.16,570.07,3062.65,26160094,99.82,0,0,0.54,570.43,3062.29,26160095,99.91,0,0,0.34,570.45,3062.29,26160096,99.92,0,0,0.13,570.48,3062.26,26160097,99.95,0,0,0.16,570.44,3062.29,26160098,99.93,0,0,0.15,570.43,3062.3,26160099,99.68,0,0,0.63,571.19,3061.51,26160100,99.88,0,0,0.34,570.17,3062.55,26160101,99.9,0,0,0.15,570.14,3062.58,26160102,99.96,0,0,0.15,570.1,3062.61,26160103,99.94,0,0,0.16,570.1,3062.61,26160104,99.82,0,0,0.4,570.72,3061.99,26160105,99.83,0,0,0.43,569.84,3062.9,26160106,99.97,0,0,0.16,569.88,3062.85,26160107,99.95,0,0,0.15,569.98,3062.75,26160108,99.93,0,0,0.14,569.95,3062.78,26160109,99.83,0,0,0.41,570.3,3062.42,26160110,99.9,0,0,0.41,570.42,3062.31,26160111,99.93,0,0,0.14,570.4,3062.33,26160112,99.96,0,0,0.16,570.38,3062.35,26160113,99.94,0,0,0.15,570.34,3062.38,26160114,99.78,0,0,0.41,570.66,3062.05,26160115,99.89,0,0,0.42,570.31,3062.41,26160116,99.92,0,0,0.16,570.31,3062.41,26160117,99.93,0,0,0.18,570.15,3062.57,26160118,99.93,0,0,0.14,570.21,3062.5,26160119,99.9,0,0,0.15,570.18,3062.53,26160120,99.75,0,0,0.68,570.79,3061.94,26160121,99.96,0,0,0.17,570.41,3062.32,26160122,99.95,0,0,0.15,570.4,3062.32,26160123,99.94,0,0,0.15,570.37,3062.35,26160124,99.95,0,0,0.16,570.36,3062.35,26160125,99.77,0,0,0.7,571.08,3061.65,26160126,99.93,0,0,0.14,570.59,3062.13,26160127,99.89,0,0,0.16,570.55,3062.16,26160128,99.94,0,0,0.14,570.55,3062.16,26160129,99.86,0,0.02,0.45,570.43,3062.25,26160130,99.75,0,0,0.67,570.79,3061.92,26160131,99.93,0,0,0.14,570.42,3062.28,26160132,99.94,0,0,0.16,570.39,3062.3,26160133,99.93,0,0,0.15,570.36,3062.33,26160134,99.96,0,0,0.14,570.35,3062.33,26160135,99.73,0,0,0.69,570.71,3062,26160136,99.92,0,0,0.16,570.32,3062.38,26160137,99.92,0,0,0.21,570.3,3062.39,26160138,99.93,0,0,0.16,570.28,3062.41,26160139,99.93,0.01,0.01,0.14,570.34,3062.34,26160140,95.12,0.27,0.01,78.48,580.34,3052.85,26160141,99.89,0,0,179.41,572.62,3060.04,26160142,99.93,0,0,0.14,572.62,3060.04,26160143,99.95,0,0,0.16,572.58,3060.07,26160144,98.55,0,0,0.14,572.57,3060.07,26160145,99.73,0,0,0.56,572.64,3060.03,26160146,99.93,0,0,0.36,570.37,3062.33,26160147,99.41,0,0,0.18,570.34,3062.35,26160148,99.94,0,0,0.14,570.33,3062.36,26160149,99.93,0,0,0.15,570.29,3062.39,26160150,99.75,0,0,0.7,569.94,3062.77,26160151,99.93,0,0,0.15,570.37,3062.36,26160152,99.94,0,0,0.15,570.46,3062.27,26160153,99.93,0,0,0.16,570.44,3062.28,26160154,99.93,0,0,0.15,570.42,3062.3,26160155,99.75,0,0,0.54,570.99,3061.75,26160156,99.92,0,0.03,0.36,570.37,3062.36,26160157,99.89,0.02,0.83,0.28,570.39,3062.34,26160158,99.93,0.03,1.09,0.19,570.36,3062.36,26160159,99.82,0.03,1.14,0.57,570.63,3062.05,26160160,99.87,0.02,0.86,0.46,570.66,3062.03,26160161,99.76,0.06,16.09,0.6,571.33,3061.36,26160162,99.91,0.06,2.46,0.61,570.74,3061.93,26160163,99.94,0,0,0.18,570.87,3061.78,26160164,99.94,0,0,0.15,570.65,3062,26160165,99.91,0,0,0.3,570.58,3062.08,26160166,99.79,0,0,0.56,570.74,3061.92,26160167,99.93,0,0,0.14,570.29,3062.36,26160168,99.91,0,0,0.15,570.26,3062.39,26160169,99.95,0,0,0.14,570.23,3062.41,26160170,99.91,0,0,0.29,570.49,3062.17,26160171,99.8,0,0,0.55,571.09,3061.57,26160172,99.95,0,0,0.16,570.88,3061.78,26160173,99.95,0,0,0.14,570.85,3061.8,26160174,99.92,0,0,0.16,570.83,3061.81,26160175,99.88,0,0,0.3,570.35,3062.32,26160176,99.81,0,0,0.54,570.53,3062.12,26160177,99.9,0,0,0.2,569.92,3062.74,26160178,99.93,0,0,0.14,569.78,3062.87,26160179,99.95,0,0,0.14,569.77,3062.88,26160180,99.85,0,0,0.3,570.48,3062.18,26160181,99.78,0,0,0.57,570.66,3061.99,26160182,99.94,0,0,0.16,569.56,3063.1,26160183,99.93,0,0,0.15,569.65,3063,26160184,99.62,0,0,0.16,569.63,3063.01,26160185,99.88,0,0,0.3,569.63,3063.03,26160186,99.81,0,0,0.51,570.17,3062.49,26160187,99.92,0,0,0.21,570.58,3062.08,26160188,99.92,0,0,0.15,570.56,3062.09,26160189,99.85,0,0,0.29,570.54,3062.09,26160190,99.85,0,0,0.34,570.54,3062.1,26160191,99.8,0,0,0.58,570.91,3061.73,26160192,99.93,0,0,0.17,570.74,3061.89,26160193,99.95,0,0,0.18,570.72,3061.91,26160194,99.95,0,0,0.18,570.7,3061.92,26160195,99.88,0,0,0.34,570.79,3061.85,26160196,99.8,0,0,0.34,571.22,3061.42,26160197,99.93,0,0,0.4,570.54,3062.1,26160198,99.94,0,0,0.16,569.86,3062.77,26160199,99.93,0.01,0.01,0.14,569.83,3062.8,26160200,99.86,0,0,0.29,569.59,3063.05,26160201,99.95,0,0,0.16,569.56,3063.08,26160202,99.8,0,0,0.58,570.59,3062.05,26160203,99.93,0,0,0.16,570.02,3062.63,26160204,99.93,0,0,0.14,569.99,3062.66,26160205,99.88,0,0,0.37,570.05,3062.6,26160206,99.93,0,0,0.16,569.96,3062.7,26160207,99.8,0,0,0.57,570.22,3062.43,26160208,99.9,0,0,0.15,569.87,3062.77,26160209,99.93,0,0,0.14,569.86,3062.79,26160210,99.88,0,0,0.29,570.08,3062.58,26160211,99.93,0,0,0.17,570.08,3062.57,26160212,99.75,0,0,0.54,570.4,3062.25,26160213,99.93,0,0,0.15,570.04,3062.61,26160214,99.95,0,0,0.16,570.01,3062.63,26160215,99.81,0,0,0.31,569.3,3063.36,26160216,99.94,0,0,0.15,569.25,3063.4,26160217,99.74,0,0,0.67,570.2,3062.45,26160218,99.95,0,0,0.16,569.72,3062.92,26160219,99.84,0,0,0.35,569.86,3062.75,26160220,99.89,0,0,0.32,570.1,3062.53,26160221,99.92,0,0,0.16,570.07,3062.55,26160222,99.79,0,0,0.53,570.61,3062.01,26160223,99.93,0,0,0.21,570.28,3062.33,26160224,99.92,0,0,0.17,570.24,3062.39,26160225,99.9,0,0,0.3,570.02,3062.63,26160226,99.91,0,0,0.18,569.98,3062.67,26160227,99.77,0,0,0.56,570.32,3062.32,26160228,99.95,0,0,0.17,569.94,3062.7,26160229,99.93,0,0,0.14,569.96,3062.68,26160230,99.9,0,0,0.32,570.4,3062.25,26160231,99.93,0,0,0.17,570.38,3062.27,26160232,99.81,0,0,0.44,570.67,3061.97,26160233,99.94,0,0,0.3,570.1,3062.55,26160234,99.94,0,0,0.17,570.08,3062.56,26160235,99.85,0,0,0.32,570.09,3062.57,26160236,99.95,0,0,0.18,570.04,3062.61,26160237,99.93,0,0,0.19,570.03,3062.61,26160238,99.8,0,0,0.59,570.97,3061.67,26160239,99.95,0,0,0.21,570.24,3062.4,26160240,99.88,0,0,0.36,569.99,3062.66,26160241,99.95,0,0,0.21,570.13,3062.52,26160242,99.92,0,0,0.2,570.12,3062.52,26160243,99.81,0,0,0.63,569.73,3062.91,26160244,99.95,0,0,0.2,569.11,3063.55,26160245,99.89,0,0,0.32,570.55,3062.13,26160246,99.92,0,0,0.17,570.57,3062.1,26160247,99.95,0,0,0.17,570.53,3062.13,26160248,99.82,0,0,0.57,570.71,3061.95,26160249,99.89,0,0,0.3,569.75,3062.89,26160250,99.81,0,0,0.37,570,3062.65,26160251,99.91,0,0,0.21,569.96,3062.68,26160252,99.92,0,0,0.2,569.96,3062.68,26160253,99.81,0,0,0.6,570.46,3062.17,26160254,99.95,0,0,0.16,570.1,3062.54,26160255,99.85,0,0,0.35,570.4,3062.27,26160256,99.94,0,0,0.2,570.34,3062.33,26160257,99.92,0,0,0.22,570.06,3062.59,26160258,99.79,0,0,0.59,570.38,3062.28,26160259,99.93,0.01,0.01,0.18,569.52,3063.13,26160260,99.88,0,0,0.32,569.77,3062.9,26160261,99.92,0.03,0.1,0.29,569.78,3062.86,26160262,99.94,0,0.01,0.2,569.69,3062.92,26160263,99.77,0,0,0.6,570.21,3062.39,26160264,99.93,0,0,0.22,570.32,3062.27,26160265,99.86,0.01,0.1,0.35,569.94,3062.62,26160266,99.92,0,0,0.2,569.91,3062.63,26160267,99.92,0,0,0.2,569.9,3062.64,26160268,99.78,0,0,0.59,570.31,3062.23,26160269,99.93,0,0,0.17,570.11,3062.42,26160270,99.82,0.01,0.01,0.33,569.3,3063.25,26160271,99.94,0,0,0.19,569.21,3063.34,26160272,99.93,0,0,0.18,569.18,3063.36,26160273,99.8,0,0,0.57,569.76,3062.77,26160274,99.93,0,0,0.19,570.34,3062.19,26160275,99.87,0,0,0.35,570.28,3062.27,26160276,99.95,0,0,0.2,570.25,3062.29,26160277,99.93,0,0,0.19,570.23,3062.31,26160278,99.93,0,0,0.19,570.21,3062.32,26160279,99.75,0,0,0.71,570.14,3062.38,26160280,99.88,0,0,0.35,570.43,3062.1,26160281,99.91,0,0,0.2,570.41,3062.12,26160282,99.89,0,0,0.19,570.4,3062.12,26160283,99.92,0,0,0.2,570.37,3062.16,26160284,99.81,0,0,0.58,570.51,3062.03,26160285,99.91,0,0,0.3,570.36,3062.2,26160286,99.95,0,0,0.18,570.55,3062.01,26160287,99.95,0,0,0.16,570.53,3062.02,26160288,99.91,0,0,0.16,570.51,3062.05,26160289,99.8,0,0,0.61,569.32,3063.23,26160290,99.9,0,0,0.36,569.97,3062.6,26160291,99.91,0,0,0.15,569.98,3062.58,26160292,99.88,0,0,0.14,569.95,3062.61,26160293,99.92,0,0,0.14,569.93,3062.62,26160294,99.71,0,0,0.56,570.76,3061.79,26160295,99.87,0,0,0.32,569.67,3062.89,26160296,99.87,0,0,0.15,569.64,3062.92,26160297,99.84,0,0,0.3,569.57,3062.98,26160298,99.83,0,0,0.15,569.54,3063.01,26160299,99.77,0,0,0.52,570.34,3062.2,26160300,99.76,0,0,0.34,570.75,3061.82,26160301,99.93,0,0,0.16,570.75,3061.81,26160302,99.86,0,0,0.15,570.71,3061.84,26160303,99.88,0,0,0.14,570.71,3061.84,26160304,99.75,0,0,0.42,570.96,3061.58,26160305,99.84,0,0,0.44,570.69,3061.88,26160306,99.9,0,0,0.14,570.65,3061.9,26160307,99.93,0,0,0.13,570.64,3061.91,26160308,99.9,0,0,0.17,570.61,3061.93,26160309,99.62,0,0,0.69,570.86,3061.64,26160310,99.81,0,0,0.29,570.55,3061.97,26160311,99.84,0,0,0.17,570.5,3062.02,26160312,99.85,0,0,0.14,570.49,3062.02,26160313,99.83,0,0,0.15,570.47,3062.04,26160314,99.75,0,0,0.37,571.17,3061.35,26160315,99.81,0,0,0.53,569.98,3062.56,26160316,99.88,0,0,0.16,569.94,3062.59,26160317,99.85,0,0,0.18,569.68,3062.85,26160318,99.86,0,0.01,0.16,569.63,3062.91,26160319,99.88,0.01,0.01,0.15,569.68,3062.86,26160320,99.66,0,0,0.71,570.75,3061.8,26160321,99.85,0,0,0.19,570.25,3062.3,26160322,99.86,0.03,0.95,0.22,570.26,3062.28,26160323,99.85,0,0,0.16,570.24,3062.3,26160324,99.87,0,0,0.17,570.22,3062.31,26160325,99.67,0,0,0.72,571.05,3061.5,26160326,98.95,0,0,0.17,570.69,3061.85,26160327,99.85,0,0,0.15,570.67,3061.87,26160328,99.85,0,0,0.16,570.65,3061.88,26160329,99.85,0,0,0.17,570.63,3061.9,26160330,99.67,0,0,0.9,570.93,3061.62,26160331,99.88,0,0,0.17,570.61,3061.93,26160332,99.86,0,0,0.18,570.59,3061.95,26160333,99.85,0,0,0.16,570.65,3061.88,26160334,99.87,0,0,0.17,570.75,3061.78,26160335,99.65,0,0,0.83,570.68,3061.87,26160336,99.87,0,0,0.2,569.75,3062.8,26160337,99.86,0,0,0.16,569.72,3062.82,26160338,99.85,0,0,0.15,569.71,3062.83,26160339,99.79,0,0,0.33,570.64,3061.87,26160340,99.7,0,0,0.64,571.23,3061.29,26160341,99.84,0.02,0.95,0.23,570.92,3061.59,26160342,99.84,0,0,0.18,570.93,3061.58,26160343,99.86,0,0,0.17,570.9,3061.6,26160344,99.84,0,0,0.15,570.69,3061.84,26160345,99.64,0,0,0.7,570.83,3061.71,26160346,99.88,0,0,0.16,570.6,3061.94,26160347,99.87,0,0,0.14,570.58,3061.96,26160348,99.87,0,0,0.15,570.57,3061.96,26160349,99.84,0,0,0.14,570.54,3061.99,26160350,99.68,0,0,0.66,571.22,3061.32,26160351,99.86,0,0,0.28,570.71,3061.83,26160352,99.85,0,0,0.17,570.69,3061.84,26160353,99.87,0,0,0.14,570.16,3062.37,26160354,99.83,0,0,0.15,569.68,3062.85,26160355,99.66,0,0,0.49,570.54,3062.01,26160356,99.86,0,0,0.39,569.91,3062.63,26160357,99.84,0,0,0.18,569.79,3062.74,26160358,99.85,0.01,0.01,0.21,569.7,3062.83,26160359,99.88,0,0,0.14,569.71,3062.82,26160360,99.81,0,0,0.31,569.7,3062.84,26160361,99.73,0,0,0.56,569.81,3062.73,26160362,99.86,0,0,0.16,569.41,3063.13,26160363,99.85,0,0,0.14,569.39,3063.14,26160364,99.85,0,0,0.14,569.37,3063.16,26160365,99.8,0,0,0.3,569.38,3063.16,26160366,99.71,0,0,0.56,570.34,3062.19,26160367,99.87,0,0,0.14,570.05,3062.48,26160368,99.85,0,0,0.16,570.05,3062.48,26160369,99.77,0,0,0.28,569.98,3062.53,26160370,99.76,0,0,0.3,570.23,3062.29,26160371,99.74,0,0,0.61,570.39,3062.13,26160372,99.84,0,0,0.15,569.95,3062.57,26160373,99.86,0,0,0.16,569.92,3062.59,26160374,99.88,0,0,0.14,569.9,3062.62,26160375,99.76,0,0,0.3,569.91,3062.63,26160376,99.71,0,0,0.59,570,3062.54,26160377,99.85,0,0,0.2,569.13,3063.41,26160378,99.84,0,0,0.16,569.09,3063.44,26160379,99.84,0.01,0.01,0.14,569.1,3063.43,26160380,99.8,0,0,0.3,569.5,3063.04,26160381,99.71,0,0,0.57,569.93,3062.6,26160382,99.85,0,0,0.14,569.7,3062.82,26160383,99.86,0,0,0.14,569.67,3062.85,26160384,99.8,0,0,0.16,569.66,3062.86,26160385,99.81,0.02,0.77,0.38,569.96,3062.56,26160386,99.71,0,0,0.63,570.12,3062.4,26160387,99.87,0,0,0.14,569.43,3063.08,26160388,99.85,0.04,1.59,0.25,569.42,3063.08,26160389,99.85,0,0,0.16,569.32,3063.18,26160390,99.8,0,0.02,0.32,569.85,3062.66,26160391,99.71,0.01,0.27,0.44,570.23,3062.27,26160392,99.85,0.02,0.88,0.36,569.59,3062.9,26160393,99.84,0,0,0.16,569.54,3062.95,26160394,99.82,0.1,5.55,0.46,569.59,3062.88,26160395,99.78,0,0,0.38,569.35,3063.12,26160396,99.75,0.01,0.24,0.4,569.97,3062.5,26160397,99.84,0,0,0.46,569.17,3063.28,26160398,99.83,0,0.01,0.21,569.1,3063.35,26160399,99.8,0,0,0.3,570.29,3062.13,26160400,99.78,0,0,0.3,569.34,3063.1,26160401,99.85,0,0,0.17,569.29,3063.15,26160402,99.73,0,0,0.58,570.04,3062.4,26160403,99.86,0,0,0.15,569.74,3062.69,26160404,99.87,0,0,0.15,569.73,3062.7,26160405,99.81,0,0,0.3,570.04,3062.4,26160406,99.85,0,0,0.15,570.14,3062.3,26160407,99.71,0,0,0.56,570.29,3062.15,26160408,99.85,0,0,0.15,569.84,3062.59,26160409,99.87,0,0,0.15,569.81,3062.62,26160410,99.82,0,0,0.3,569.82,3062.62,26160411,99.88,0,0,0.17,569.78,3062.66,26160412,99.75,0,0,0.58,570.27,3062.17,26160413,99.85,0,0,0.16,569.99,3062.44,26160414,99.86,0,0,0.15,569.95,3062.47,26160415,99.8,0,0,0.32,570.2,3062.25,26160416,99.87,0,0,0.14,570.12,3062.32,26160417,99.71,0,0,0.52,570.11,3062.32,26160418,99.85,0,0,0.2,569.34,3063.09,26160419,99.87,0,0,0.17,569.31,3063.12,26160420,99.76,0,0,0.32,570.5,3061.94,26160421,99.83,0,0,0.13,570.52,3061.92,26160422,99.74,0,0,0.5,571,3061.43,26160423,99.83,0,0,0.21,569.99,3062.44,26160424,99.84,0,0,0.14,569.96,3062.46,26160425,99.82,0,0,0.31,570.21,3062.23,26160426,99.86,0,0,0.17,570.38,3062.05,26160427,99.7,0,0,0.54,570.84,3061.59,26160428,99.86,0,0,0.14,570.32,3062.1,26160429,99.81,0,0,0.31,570.56,3061.83,26160430,99.81,0,0,0.3,569.83,3062.59,26160431,99.84,0,0,0.16,569.81,3062.6,26160432,99.86,0,0,0.15,569.77,3062.63,26160433,99.72,0,0,0.54,570.62,3061.78,26160434,99.86,0,0,0.15,570.23,3062.18,26160435,99.79,0,0,0.31,569.98,3062.44,26160436,99.83,0,0,0.13,569.96,3062.46,26160437,99.85,0,0,0.21,570.14,3062.28,26160438,99.71,0,0,0.55,570.49,3061.93,26160439,99.86,0.01,0.01,0.14,570.11,3062.3,26160440,99.8,0,0,0.31,570.11,3062.32,26160441,99.83,0,0,0.16,570.08,3062.34,26160442,99.85,0,0,0.13,570.06,3062.36,26160443,99.73,0,0,0.57,570.4,3062.02,26160444,99.86,0,0,0.14,570.01,3062.4,26160445,99.81,0,0,0.31,570.27,3062.16,26160446,99.83,0,0,0.14,570.24,3062.18,26160447,99.73,0,0,0.15,570.23,3062.19,26160448,99.71,0,0,0.55,570.58,3061.84,26160449,99.85,0,0,0.16,569.89,3062.52,26160450,99.82,0,0,0.3,570.36,3062.07,26160451,99.87,0,0,0.13,570.35,3062.07,26160452,99.84,0,0,0.16,570.32,3062.09,26160453,99.72,0,0,0.41,570.67,3061.74,26160454,99.85,0,0,0.3,570.28,3062.13,26160455,99.8,0,0,0.32,570.53,3061.9,26160456,99.82,0,0,0.16,570.51,3061.91,26160457,99.87,0,0,0.14,570.49,3061.92,26160458,99.73,0,0,0.51,570.59,3061.82,26160459,99.76,0,0,0.32,570.54,3061.85,26160460,99.81,0,0,0.29,569.43,3062.98,26160461,99.85,0,0,0.17,569.39,3063.01,26160462,99.85,0,0,0.14,569.37,3063.03,26160463,99.7,0,0,0.44,570.01,3062.38,26160464,99.86,0,0,0.29,570.31,3062.08,26160465,99.81,0,0,0.31,569.84,3062.57,26160466,99.83,0,0,0.14,569.8,3062.6,26160467,99.85,0,0,0.16,569.79,3062.61,26160468,99.73,0,0,0.41,570.51,3061.88,26160469,99.85,0,0,0.33,570.47,3061.93,26160470,99.76,0,0,0.32,570,3062.41,26160471,99.88,0,0,0.15,570.03,3062.37,26160472,99.87,0,0,0.16,570.13,3062.26,26160473,99.85,0,0,0.14,570.1,3062.29,26160474,99.72,0,0,0.55,571.05,3061.33,26160475,99.8,0,0,0.34,570.33,3062.07,26160476,99.88,0,0,0.14,570.3,3062.09,26160477,99.87,0,0,0.15,570.28,3062.11,26160478,99.93,0,0,0.17,570.25,3062.14,26160479,99.8,0,0,0.57,570.78,3061.6,26160480,99.84,0,0,0.29,570,3062.4,26160481,99.95,0,0,0.16,569.96,3062.43,26160482,99.95,0,0,0.15,570.01,3062.38,26160483,99.95,0,0,0.15,570.09,3062.29,26160484,99.8,0,0,0.61,571,3061.38,26160485,99.9,0,0,0.3,570.57,3061.83,26160486,99.95,0,0,0.16,570.53,3061.86,26160487,99.93,0,0,0.16,570.5,3061.89,26160488,99.93,0.03,0.96,0.18,570.63,3061.74,26160489,99.73,0,0,0.78,571.22,3061.13,26160490,99.88,0,0,0.34,570.8,3061.56,26160491,99.96,0,0,0.18,570.81,3061.55,26160492,99.95,0,0,0.18,570.79,3061.56,26160493,99.93,0,0,0.18,570.77,3061.58,26160494,99.82,0,0,0.42,571.18,3061.18,26160495,99.9,0,0,0.44,570.74,3061.64,26160496,99.95,0.01,0.01,0.19,570.78,3061.59,26160497,99.94,0,0,0.2,570.8,3061.57,26160498,99.94,0,0,0.14,570.77,3061.59,26160499,99.8,0.01,0.01,0.55,571.09,3061.27,26160500,99.84,0,0,0.34,570.75,3061.66,26160501,99.93,0,0,0.18,570.72,3061.69,26160502,99.91,0,0,0.16,570.7,3061.7,26160503,99.95,0,0,0.14,570.68,3061.72,26160504,95.26,0.31,0.01,78.02,584.47,3047.53,26160505,99.81,0,0,180.12,572.63,3059.71,26160506,99.95,0,0,0.16,572.7,3059.64,26160507,94.15,0,0,0.13,572.79,3059.55,26160508,99.95,0,0,0.14,572.54,3059.79,26160509,99.8,0,0,0.43,572.29,3060.05,26160510,99.88,0,0,0.45,569.84,3062.56,26160511,99.93,0,0,0.16,569.83,3062.56,26160512,99.94,0,0,0.16,569.8,3062.59,26160513,99.94,0,0,0.14,569.79,3062.59,26160514,99.93,0,0,0.15,569.76,3062.62,26160515,99.68,0,0,0.68,570.11,3062.31,26160516,99.93,0,0,0.14,569.5,3062.92,26160517,99.95,0,0,0.16,569.49,3062.92,26160518,99.94,0,0,0.16,569.64,3062.77,26160519,99.84,0,0,0.27,570.12,3062.26,26160520,99.75,0,0,0.69,569.91,3062.49,26160521,99.93,0,0,0.16,569.36,3063.03,26160522,99.95,0,0,0.16,569.34,3063.05,26160523,99.95,0,0,0.14,569.31,3063.07,26160524,99.95,0,0,0.15,569.31,3063.12,26160525,99.73,0,0,0.7,570.21,3062.24,26160526,99.94,0,0,0.14,570.03,3062.42,26160527,99.94,0,0,0.19,569.99,3062.45,26160528,99.91,0,0,0.14,570.1,3062.34,26160529,99.97,0,0,0.15,570.12,3062.32,26160530,99.77,0,0,0.72,569.93,3062.52,26160531,99.95,0,0,0.14,569.36,3063.09,26160532,99.9,0,0,0.14,569.34,3063.11,26160533,99.94,0,0,0.16,569.32,3063.13,26160534,99.93,0,0,0.14,569.3,3063.14,26160535,99.69,0.02,0.04,0.7,570.52,3061.93,26160536,99.85,0.03,0.18,0.21,577.2,3055.04,26160537,99.92,0,0,0.15,577.69,3054.54,26160538,99.94,0,0,0.16,578.12,3054.1,26160539,99.91,0,0,0.14,578.09,3054.13,26160540,99.71,0,0,0.71,580.25,3051.99,26160541,99.95,0,0,0.16,580.76,3051.47,26160542,99.88,0,0,0.18,580.72,3051.51,26160543,99.95,0,0,0.14,580.69,3051.53,26160544,99.93,0,0,0.14,580.75,3051.47,26160545,99.74,0,0,0.73,581.22,3051.01,26160546,99.93,0,0,0.14,580.83,3051.4,26160547,99.94,0,0,0.16,580.8,3051.43,26160548,99.94,0,0,0.14,580.76,3051.46,26160549,99.89,0,0,0.29,580.47,3051.71,26160550,99.72,0,0,0.56,581.27,3050.93,26160551,99.91,0,0,0.31,580.81,3051.38,26160552,99.94,0,0,0.18,580.81,3051.38,26160553,99.94,0,0,0.16,580.79,3051.4,26160554,99.95,0,0,0.15,580.58,3051.62,26160555,99.87,0.01,0.01,0.32,581.03,3051.18,26160556,99.8,0,0,0.55,579.15,3053.06,26160557,99.93,0,0,0.19,578.8,3053.41,26160558,99.94,0,0,0.15,578.77,3053.43,26160559,99.92,0.01,0.01,0.14,578.74,3053.46,26160560,99.87,0,0,0.29,580.66,3051.56,26160561,99.79,0,0,0.55,581.09,3051.12,26160562,99.91,0.01,0.94,0.17,580.82,3051.38,26160563,99.95,0,0,0.2,580.8,3051.4,26160564,99.94,0,0,0.16,580.76,3051.43,26160565,99.9,0,0,0.31,581,3051.2,26160566,99.81,0,0,0.55,581.13,3051.07,26160567,99.93,0,0,0.16,580.68,3051.52,26160568,97.66,0,0,0.14,580.65,3051.54,26160569,99.91,0,0,0.15,580.77,3051.42,26160570,99.88,0,0,0.34,581.04,3051.16,26160571,99.81,0,0,0.59,581.23,3050.97,26160572,99.95,0,0,0.18,580.73,3051.46,26160573,99.91,0,0,0.16,580.7,3051.49,26160574,99.95,0,0,0.18,580.66,3051.53,26160575,99.88,0.01,0.08,0.41,581,3051.21,26160576,99.79,0,0,0.54,581.54,3050.66,26160577,99.93,0,0,0.16,580.95,3051.25,26160578,99.92,0,0,0.14,580.91,3051.28,26160579,99.85,0,0,0.29,580.65,3051.52,26160580,99.84,0,0,0.29,580.81,3051.37,26160581,99.8,0,0,0.57,581.1,3051.07,26160582,99.93,0,0,0.14,580.52,3051.65,26160583,99.93,0,0,0.17,580.49,3051.68,26160584,99.93,0,0,0.16,580.47,3051.7,26160585,99.91,0,0,0.3,581.19,3051,26160586,99.81,0,0,0.61,581.47,3050.71,26160587,99.92,0,0,0.13,581.07,3051.1,26160588,99.93,0,0,0.16,581.04,3051.13,26160589,99.92,0,0,0.14,581,3051.16,26160590,99.91,0,0,0.29,580.99,3051.19,26160591,99.79,0,0,0.32,581.31,3050.87,26160592,99.96,0,0,0.39,580.92,3051.25,26160593,99.95,0,0,0.14,580.96,3051.21,26160594,99.93,0,0,0.18,581.05,3051.11,26160595,99.88,0.01,0.01,0.32,580.56,3051.61,26160596,99.93,0.01,0.01,0.15,580.51,3051.67,26160597,99.74,0,0,0.6,580.94,3051.23,26160598,99.94,0,0,0.15,580.19,3051.98,26160599,99.94,0,0,0.16,580.16,3052,26160600,99.89,0,0,0.3,580.58,3051.6,26160601,99.95,0,0,0.16,580.55,3051.63,26160602,99.79,0,0,0.55,580.69,3051.48,26160603,99.93,0,0,0.16,580.23,3051.93,26160604,99.91,0,0,0.14,580.2,3051.96,26160605,99.87,0,0,0.31,580.2,3051.98,26160606,99.93,0,0,0.14,580.17,3052.01,26160607,99.8,0,0,0.55,580.31,3051.86,26160608,99.93,0,0,0.15,579.8,3052.37,26160609,99.8,0,0,0.32,580.72,3051.41,26160610,99.86,0,0,0.32,580.73,3051.43,26160611,99.9,0,0,0.14,580.69,3051.46,26160612,99.78,0,0,0.55,580.88,3051.26,26160613,99.93,0,0,0.15,580.39,3051.75,26160614,99.95,0,0,0.14,580.54,3051.61,26160615,99.88,0,0,0.31,581.27,3050.9,26160616,99.89,0,0,0.14,581.25,3050.92,26160617,99.79,0,0,0.64,581.99,3050.17,26160618,99.95,0,0,0.14,581.42,3050.73,26160619,99.94,0.01,0.01,0.15,581.38,3050.77,26160620,99.85,0.01,0.02,0.33,580.47,3051.71,26160621,99.94,0,0,0.19,580.44,3051.74,26160622,99.81,0,0,0.55,581,3051.17,26160623,99.92,0.01,0.02,0.15,581.2,3050.97,26160624,99.93,0.01,0.59,0.21,581.25,3050.91,26160625,99.88,0,0,0.32,581.03,3051.15,26160626,99.9,0,0,0.16,580.96,3051.22,26160627,99.82,0,0,0.3,581.27,3050.9,26160628,99.92,0,0,0.4,580.65,3051.52,26160629,99.93,0,0,0.14,580.79,3051.38,26160630,99.85,0,0,0.29,581.03,3051.15,26160631,99.95,0,0,0.15,581,3051.18,26160632,99.84,0,0,0.32,581.33,3050.85,26160633,99.9,0,0,0.42,581.19,3050.98,26160634,99.93,0,0,0.18,581.16,3051.01,26160635,99.9,0,0,0.31,580.92,3051.27,26160636,99.94,0,0,0.18,581.06,3051.12,26160637,99.94,0,0,0.15,581.03,3051.15,26160638,99.79,0.01,0.07,0.57,581.33,3050.84,26160639,99.84,0.02,0.72,0.36,581.23,3050.89,26160640,99.88,0,0,0.34,581.2,3050.94,26160641,99.94,0,0.01,0.16,581.15,3050.98,26160642,99.93,0,0,0.14,581.12,3051.01,26160643,99.8,0,0,0.55,581.91,3050.21,26160644,99.94,0,0,0.15,581.49,3050.63,26160645,99.9,0.01,0.01,0.35,581.22,3050.91,26160646,99.92,0,0,0.18,581.17,3050.96,26160647,99.92,0,0,0.16,581.14,3050.99,26160648,99.8,0,0,0.41,581.57,3050.55,26160649,99.94,0,0,0.31,581.48,3050.63,26160650,99.9,0,0,0.31,581.75,3050.38,26160651,99.94,0,0,0.14,581.72,3050.4,26160652,99.92,0,0,0.16,581.69,3050.43,26160653,99.8,0,0,0.54,581.88,3050.24,26160654,99.92,0,0,0.17,581.38,3050.74,26160655,99.86,0.01,0.01,0.3,581.39,3050.76,26160656,99.91,0,0.01,0.14,581.51,3050.63,26160657,99.91,0,0,0.18,581.48,3050.66,26160658,99.8,0,0,0.43,581.64,3050.49,26160659,99.93,0,0,0.32,580.92,3051.21,26160660,99.82,0,0,0.31,581.39,3050.75,26160661,99.93,0,0,0.14,581.37,3050.77,26160662,99.95,0,0,0.14,581.5,3050.64,26160663,99.8,0,0,0.45,581.88,3050.25,26160664,99.93,0,0,0.3,580.71,3051.41,26160665,99.89,0,0,0.36,580.7,3051.45,26160666,99.94,0,0,0.18,580.68,3051.46,26160667,99.94,0,0,0.18,580.64,3051.49,26160668,99.93,0,0,0.18,580.61,3051.52,26160669,99.7,0,0,0.66,581.51,3050.62,26160670,99.86,0,0,0.35,580.99,3051.15,26160671,99.92,0,0,0.15,580.96,3051.18,26160672,99.93,0.01,0.01,0.14,580.93,3051.21,26160673,99.96,0,0,0.16,580.98,3051.15,26160674,99.79,0,0,0.57,581.3,3050.84,26160675,99.89,0,0,0.31,581.22,3050.94,26160676,99.95,0,0,0.14,581.16,3050.99,26160677,99.94,0,0,0.21,581.13,3051.02,26160678,99.95,0,0,0.14,581.1,3051.05,26160679,99.81,0.01,0.01,0.55,581.28,3050.86,26160680,99.81,0,0,0.3,579.33,3052.83,26160681,99.93,0,0,0.14,579.24,3052.92,26160682,99.95,0,0,0.14,579.2,3052.95,26160683,99.92,0,0,0.16,579.17,3052.98,26160684,99.83,0,0,0.55,580.75,3051.39,26160685,99.88,0,0,0.34,580.62,3051.53,26160686,99.95,0,0,0.16,580.74,3051.41,26160687,98.87,0,0,0.14,580.71,3051.44,26160688,98.82,0,0,0.14,580.69,3051.46,26160689,99.79,0,0,0.56,581.35,3050.78,26160690,99.9,0,0,0.31,580.65,3051.51,26160691,99.93,0,0,0.15,580.61,3051.54,26160692,99.93,0,0,0.16,580.58,3051.57,26160693,99.94,0,0,0.15,580.76,3051.38,26160694,99.77,0,0,0.56,581.22,3050.91,26160695,99.88,0,0,0.32,580.98,3051.17,26160696,99.92,0,0,0.14,580.94,3051.21,26160697,99.94,0,0,0.15,580.9,3051.24,26160698,99.04,0,0,0.14,580.87,3051.27,26160699,99.72,0,0,0.54,581.43,3050.68,26160700,99.89,0,0,0.44,581.25,3050.88,26160701,99.34,0,0,0.16,581.22,3050.91,26160702,99.92,0,0,0.13,581.19,3050.93,26160703,99.92,0,0,0.18,581.15,3050.96,26160704,99.81,0,0,0.43,581.45,3050.66,26160705,99.03,0,0,0.45,580.86,3051.26,26160706,99.92,0,0,0.14,580.99,3051.13,26160707,99.93,0,0,0.19,580.98,3051.14,26160708,99.95,0,0,0.14,580.94,3051.17,26160709,99.93,0,0,0.14,580.91,3051.2,26160710,99.74,0,0,0.71,581.48,3050.64,26160711,99.93,0,0,0.16,580.87,3051.25,26160712,99.93,0,0,0.18,580.85,3051.27,26160713,99.9,0,0,0.14,580.98,3051.13,26160714,99.95,0,0,0.15,580.96,3051.15,26160715,99.74,0,0.01,0.71,580.64,3051.49,26160716,99.93,0,0.01,0.16,579.92,3052.2,26160717,99.91,0,0,0.16,579.86,3052.26,26160718,99.74,0,0,0.15,579.61,3052.5,26160719,96.84,0,0,0.16,579.74,3052.37,26160720,99.71,0,0,0.7,581.65,3050.47,26160721,99.94,0,0,0.14,581.44,3050.68,26160722,99.65,0,0,0.14,581.41,3050.71,26160723,99.93,0,0,0.16,581.37,3050.74,26160724,99.95,0,0,0.14,581.34,3050.77,26160725,99.74,0,0,0.73,581.3,3050.82,26160726,99.86,0,0,0.17,580.98,3051.14,26160727,99.93,0,0,0.14,580.94,3051.17,26160728,99.9,0,0,0.15,580.91,3051.2,26160729,99.85,0,0,0.32,581.12,3050.95,26160730,99.73,0,0,0.71,581.94,3050.15,26160731,99.95,0,0,0.17,581.06,3051.02,26160732,99.94,0,0,0.14,581.21,3050.87,26160733,99.53,0,0,0.18,581.18,3050.9,26160734,99.93,0,0,0.15,581.15,3050.94,26160735,99.73,0,0,0.59,581.5,3050.61,26160736,99.92,0,0,0.29,581.11,3050.99,26160737,99.75,0,0,0.21,581.31,3050.79,26160738,99.93,0,0,0.14,581.37,3050.72,26160739,99.93,0.01,0.01,0.15,581.47,3050.62,26160740,99.31,0,0,0.56,581.82,3050.29,26160741,99.93,0,0,0.27,581.42,3050.68,26160742,99.97,0,0,0.19,581.39,3050.71,26160743,99.9,0,0,0.14,581.36,3050.74,26160744,99.94,0,0,0.14,581.33,3050.77,26160745,99.75,0,0,0.61,581.87,3050.24,26160746,99.92,0,0,0.29,581.71,3050.39,26160747,99.86,0,0,0.14,581.67,3050.42,26160748,99.94,0,0,0.16,581.63,3050.46,26160749,99.93,0,0,0.14,581.6,3050.49,26160750,99.72,0,0,0.3,581.59,3050.51,26160751,99.8,0,0,0.54,582.07,3050.03,26160752,99.94,0,0,0.16,581.48,3050.62,26160753,99.93,0,0,0.14,581.45,3050.64,26160754,96.58,0,0,0.15,581.42,3050.67,26160755,99.88,0,0,0.32,581.16,3050.94,26160756,99.81,0.01,0.01,0.54,581.65,3050.45,26160757,99.94,0,0,0.16,581.41,3050.69,26160758,99.87,0,0,0.16,581.45,3050.64,26160759,99.87,0,0,0.27,581.67,3050.4,26160760,99.9,0,0,0.35,581.4,3050.68,26160761,98.68,0,0,0.58,581.87,3050.21,26160762,99.92,0,0,0.17,581.57,3050.5,26160763,99.92,0,0,0.16,581.55,3050.52,26160764,99.93,0,0,0.14,581.7,3050.36,26160765,99.86,0,0,0.32,581.45,3050.62,26160766,99.8,0,0,0.54,581.76,3050.31,26160767,99.94,0,0,0.16,581.38,3050.69,26160768,99.95,0,0,0.15,581.34,3050.72,26160769,99.93,0,0,0.14,581.31,3050.75,26160770,99.86,0,0,0.32,581.37,3050.71,26160771,99.8,0,0,0.57,582.18,3049.89,26160772,99.93,0,0,0.14,581.66,3050.41,26160773,99.95,0,0,0.15,581.62,3050.44,26160774,99.92,0,0,0.14,581.6,3050.45,26160775,99.85,0.01,0.01,0.34,581.6,3050.48,26160776,99.77,0,0.01,0.41,581.86,3050.21,26160777,99.92,0,0,0.31,581.32,3050.74,26160778,99.89,0,0,0.15,580.94,3051.12,26160779,99,0,0,0.22,580.91,3051.15,26160780,99.47,0,0,5.79,581.23,3053.09,26160781,99.76,0,0,0.43,581.5,3052.91,26160782,99.65,0,0,0.31,581.36,3053.05,26160783,99.95,0,0,0.15,581.32,3053.09,26160784,99.92,0,0,0.14,581.37,3053.04,26160785,99.88,0,0,0.32,581.99,3052.47,26160786,99.25,0,0,0.52,582.29,3052.17,26160787,99.68,0,0,0.2,581.44,3053.02,26160788,99.93,0,0,0.15,581.4,3053.04,26160789,99.67,0,0,0.28,581.62,3052.83,26160790,99.87,0,0,0.31,581.39,3053.07,26160791,99.92,0,0,0.17,581.43,3053.03,26160792,99.79,0,0,0.54,582.62,3051.84,26160793,99.77,0,0,0.14,581.94,3052.52,26160794,99.93,0,0,0.14,581.9,3052.54,26160795,99.9,0,0,0.32,581.16,3053.3,26160796,99.53,0,0,0.16,581.12,3053.34,26160797,99.8,0,0,0.59,581.99,3052.46,26160798,99.94,0,0,0.18,582,3052.46,26160799,99.95,0.01,0.01,0.18,581.96,3052.49,26160800,99.9,0,0,0.31,581.94,3052.52,26160801,99.93,0,0,0.14,581.9,3052.56,26160802,99.82,0,0,0.55,582.06,3052.4,26160803,99.9,0,0,0.16,581.68,3052.78,26160804,99.92,0,0,0.18,581.69,3052.76,26160805,99.86,0,0,0.35,581.68,3052.79,26160806,99.92,0,0,0.12,581.64,3052.82,26160807,99.79,0,0,0.49,581.85,3052.61,26160808,99.88,0.03,1.45,0.38,581.36,3053.08,26160809,99.94,0,0,0.14,581.44,3052.99,26160810,99.87,0,0,0.31,581.73,3052.73,26160811,99.93,0,0,0.16,581.69,3052.76,26160812,99.8,0,0,0.54,582.42,3052.02,26160813,99.91,0,0,0.15,581.86,3052.58,26160814,99.35,0,0,0.14,581.83,3052.61,26160815,99.89,0,0,0.33,581.73,3052.72,26160816,99.93,0,0,0.14,581.41,3053.04,26160817,99.78,0,0,0.55,581.05,3053.39,26160818,99.93,0,0,0.14,580.66,3053.78,26160819,99.86,0.01,0.01,0.29,581.09,3053.33,26160820,99.83,0,0,0.36,581.47,3052.95,26160821,99.95,0,0,0.17,581.43,3052.99,26160822,99.8,0,0,0.55,581.71,3052.7,26160823,99.85,0.01,0.42,0.18,580.69,3053.72,26160824,99.93,0,0,0.16,580.41,3053.99,26160825,99.83,0.01,0.42,0.33,580.39,3054.02,26160826,99.91,0,0,0.21,580.45,3053.96,26160827,99.74,0.02,0.42,0.38,580.71,3053.69,26160828,99.92,0,0,0.43,580.44,3053.96,26160829,99.93,0,0,0.16,580.4,3053.99,26160830,99.86,0,0,0.34,580.14,3054.26,26160831,99.76,0,0,0.16,580.11,3054.29,26160832,99.93,0,0,0.14,580.08,3054.31,26160833,99.78,0,0,0.54,580.38,3054.01,26160834,99.93,0,0,0.15,579.85,3054.54,26160835,98.08,0.01,0.01,0.33,580.21,3054.19,26160836,99.91,0,0.01,0.16,580.18,3054.22,26160837,99.91,0,0,0.14,580.15,3054.25,26160838,99.76,0,0,0.61,579.64,3054.76,26160839,99.9,0,0,0.16,579.1,3055.29,26160840,99.83,0,0,0.38,580.27,3054.13,26160841,99.88,0,0,0.14,580.46,3053.94,26160842,99.88,0.01,0.13,0.23,580.38,3054.01,26160843,99.78,0,0.01,0.54,580.59,3053.79,26160844,99.9,0,0,0.15,580.15,3054.22,26160845,99.57,0,0,0.3,579.41,3054.99,26160846,99.83,0.01,0.4,0.16,579.39,3054.99,26160847,99.9,0,0,0.18,579.39,3054.99,26160848,99.75,0,0,0.49,579.34,3055.04,26160849,99.22,0,0,0.34,580.05,3054.3,26160850,99.3,0,0,0.26,580.55,3053.82,26160851,99.85,0,0,0.16,580.52,3053.85,26160852,99.82,0,0,0.14,580.68,3053.68,26160853,99.75,0,0,0.44,581,3053.36,26160854,99.85,0,0,0.29,579.64,3054.72,26160855,99.8,0,0,0.27,580.12,3054.25,26160856,99.86,0,0,0.14,580.09,3054.28,26160857,99.84,0,0,0.25,580.05,3054.31,26160858,99.72,0,0,0.39,580.44,3053.91,26160859,99.87,0.01,0.01,0.33,580.67,3053.68,26160860,99.65,0,0,0.32,580.2,3054.17,26160861,99.84,0,0,0.14,580.15,3054.21,26160862,99.89,0,0,0.13,580.13,3054.23,26160863,99.73,0,0,0.43,580.53,3053.82,26160864,99.88,0,0,0.28,580.55,3053.8,26160865,99.74,0,0,0.31,579.89,3054.48,26160866,99.85,0,0,0.16,579.95,3054.41,26160867,99.92,0,0,0.14,579.92,3054.44,26160868,99.83,0,0,0.14,579.89,3054.47,26160869,95,0.29,0.01,257.56,594.29,3040.06,26160870,98.48,0,0,0.28,582.81,3051.54,26160871,99.88,0,0,0.14,582.77,3051.57,26160872,99.83,0,0,0.19,582.9,3051.45,26160873,99.85,0,0,0.14,582.89,3051.45,26160874,99.72,0,0,0.58,580.75,3053.61,26160875,99.81,0,0,0.29,580.68,3053.72,26160876,99.43,0,0,0.14,580.67,3053.72,26160877,99.84,0,0,0.16,580.63,3053.77,26160878,99.86,0,0,0.14,580.61,3053.79,26160879,99.65,0,0,0.68,581.28,3053.1,26160880,99.73,0.01,0.02,0.28,580.73,3053.67,26160881,97.37,0.01,0.01,0.17,580.76,3053.63,26160882,99.84,0,0,0.14,580.74,3053.65,26160883,99.82,0,0,0.15,580.71,3053.68,26160884,99.71,0,0,0.55,580.72,3053.66,26160885,99.78,0,0,0.32,580.22,3054.18,26160886,99.83,0,0,0.14,580.13,3054.26,26160887,99.87,0,0,0.14,580.23,3054.16,26160888,99.84,0,0,0.17,580.25,3054.14,26160889,99.69,0,0,0.55,580.67,3053.71,26160890,99.8,0,0,0.28,580.69,3053.71,26160891,99.83,0,0,0.16,580.67,3053.74,26160892,99.85,0,0,0.15,580.63,3053.79,26160893,99.84,0,0,0.15,580.65,3053.77,26160894,99.7,0,0,0.48,581.55,3052.86,26160895,99.78,0.01,0.01,0.37,580.52,3053.91,26160896,99.83,0.01,0.01,0.18,580.4,3054.03,26160897,99.83,0,0,0.14,580.49,3053.93,26160898,96.08,49.44,0.07,124.85,586.52,3019.64,26160899,99.72,0,0,0.53,583.56,3001.77,26160900,99.74,0,0,0.48,582.47,3002.88,26160901,99.85,0,0,0.18,582.4,3002.95,26160902,99.85,0,0,0.18,582.36,3002.98,26160903,99.83,0,0,0.21,581.08,3004.3,26160904,99.69,0,0,0.44,580.52,3004.88,26160905,99.78,0,0,0.45,580.8,3004.61,26160906,99.85,0,0,0.17,580.77,3004.64,26160907,99.84,0,0,0.17,580.73,3004.68,26160908,99.84,0,0,0.16,580.7,3004.7,26160909,99.79,0,0,0.3,581,3004.38,26160910,99.58,0,0,0.69,581.55,3003.87,26160911,99.85,0,0,0.16,580.84,3004.58,26160912,99.82,0,0,0.19,580.8,3004.61,26160913,99.84,0,0,0.2,580.77,3004.64,26160914,99.86,0,0,0.16,580.73,3004.67,26160915,99.65,0,0,0.77,581.51,3003.91,26160916,99.85,0,0,0.2,581.24,3004.18,26160917,99.82,0,0,0.24,581.11,3004.31,26160918,99.85,0,0,0.2,581.06,3004.35,26160919,99.83,0.01,0.01,0.2,581.01,3004.39,26160920,99.66,0,0,0.75,581.29,3004.13,26160921,99.8,0,0,0.18,580.96,3004.45,26160922,99.84,0,0,0.17,581,3004.41,26160923,99.85,0,0,0.17,581.08,3004.33,26160924,99.86,0,0,0.16,581.04,3004.36,26160925,99.65,0,0,0.63,581.87,3003.55,26160926,99.82,0,0,0.26,581.24,3004.18,26160927,99.85,0,0,0.17,581.2,3004.21,26160928,99.83,0,0,0.17,581.17,3004.23,26160929,99.84,0,0,0.16,581.32,3004.08,26160930,99.65,0,0,0.54,581.75,3003.67,26160931,96.87,0,0,0.29,581.29,3004.13,26160932,99.83,0,0,0.18,581.25,3004.16,26160933,99.84,0,0,0.16,581.22,3004.19,26160934,99.83,0,0,0.17,581.19,3004.21,26160935,99.66,0,0,0.58,581.38,3004.04,26160936,99.84,0,0,0.34,581.08,3004.33,26160937,99.84,0,0,0.15,581.05,3004.36,26160938,99.84,0,0,0.18,581.01,3004.39,26160939,99.76,0,0,0.34,580.74,3004.64,26160940,99.64,0,0,0.7,581.42,3003.98,26160941,99.85,0,0,0.23,579.97,3005.43,26160942,99.85,0,0,0.17,580.12,3005.27,26160943,99.85,0,0,0.17,580.09,3005.3,26160944,99.84,0,0.01,0.16,580.06,3005.33,26160945,99.65,0,0,0.54,581.69,3003.71,26160946,99.85,0,0,0.37,581.23,3004.16,26160947,99.84,0,0,0.17,581.21,3004.18,26160948,99.75,0,0,0.17,581.35,3004.04,26160949,99.85,0,0,0.17,581.31,3004.07,26160950,99.8,0,0,0.29,581.31,3004.09,26160951,99.71,0,0,0.58,581.63,3003.77,26160952,99.83,0,0,0.16,581.25,3004.14,26160953,99.85,0,0,0.17,581.21,3004.18,26160954,99.83,0,0,0.17,581.19,3004.2,26160955,99.8,0.01,0.01,0.3,581.36,3004.04,26160956,99.68,0,0.01,0.57,581.67,3003.73,26160957,99.83,0,0,0.17,581.29,3004.1,26160958,99.83,0,0,0.2,580.76,3004.63,26160959,99.85,0,0,0.17,580.48,3004.92,26160960,99.8,0,0,0.31,581.45,3003.97,26160961,99.69,0,0,0.57,581.65,3003.76,26160962,99.86,0,0,0.19,581.1,3004.31,26160963,99.85,0,0,0.17,581.06,3004.34,26160964,99.84,0,0,0.17,581.03,3004.37,26160965,99.8,0,0,0.31,581.51,3003.9,26160966,99.71,0,0,0.52,581.69,3003.72,26160967,99.83,0,0,0.21,581.2,3004.21,26160968,99.84,0,0,0.17,581.23,3004.17,26160969,99.78,0,0,0.32,581.32,3004.06,26160970,99.76,0,0,0.33,581.29,3004.1,26160971,99.7,0,0,0.43,581.33,3004.06,26160972,99.84,0,0,0.33,579.97,3005.41,26160973,99.81,0,0,0.21,579.71,3005.67,26160974,99.83,0,0,0.21,579.68,3005.71,26160975,99.8,0,0,0.39,580.83,3004.58,26160976,99.71,0,0,0.43,581.25,3004.16,26160977,99.84,0,0,0.35,580.77,3004.63,26160978,99.86,0,0,0.17,580.74,3004.65,26160979,99.85,0.01,0.01,0.17,580.71,3004.68,26160980,99.8,0,0,0.29,580.7,3004.71,26160981,99.72,0,0,0.49,581.38,3004.03,26160982,99.83,0,0,0.28,581.07,3004.33,26160983,99.86,0,0,0.17,581.03,3004.36,26160984,99.85,0,0,0.17,581,3004.39,26160985,99.8,0,0,0.32,580.5,3004.91,26160986,99.7,0,0,0.42,580.79,3004.61,26160987,99.83,0,0,0.29,579.69,3005.71,26160988,99.85,0,0,0.2,579.85,3005.55,26160989,99.82,0,0,0.17,579.85,3005.54,26160990,99.79,0,0,0.29,580.8,3004.61,26160991,99.7,0,0,0.36,581.13,3004.28,26160992,99.84,0,0,0.4,580.99,3004.41,26160993,99.82,0,0,0.17,580.97,3004.43,26160994,99.82,0,0,0.18,580.93,3004.46,26160995,99.77,0,0,0.3,580.95,3004.46,26160996,99.84,0,0,0.18,580.82,3004.59,26160997,99.7,0,0,0.59,581.15,3004.29,26160998,99.85,0,0,0.2,580.76,3004.67,26160999,99.8,0,0,0.33,580.49,3004.92,26161000,99.8,0,0,0.39,580.46,3004.96,26161001,99.84,0,0,0.21,580.59,3004.84,26161002,99.69,0,0,0.6,581.41,3004.01,26161003,99.84,0,0,0.16,581.04,3004.38,26161004,99.85,0,0,0.17,581.01,3004.44,26161005,99.79,0,0,0.31,580.77,3004.7,26161006,99.86,0,0,0.17,580.73,3004.74,26161007,99.72,0,0,0.6,581.06,3004.4,26161008,99.84,0,0,0.2,580.85,3004.61,26161009,99.86,0,0.02,0.22,580.81,3004.64,26161010,99.76,0,0,0.34,581.03,3004.44,26161011,99.85,0,0,0.2,580.99,3004.47,26161012,99.69,0.02,0.01,0.45,581.38,3004.08,26161013,99.82,0.02,0.02,0.33,581,3004.46,26161014,99.82,0.02,0.02,0.16,581.01,3004.44,26161015,99.76,0.03,0.02,0.3,581.04,3004.43,26161016,99.84,0.03,0.02,0.17,581.01,3004.45,26161017,99.72,0.02,0.02,0.59,581.35,3004.1,26161018,99.8,0.02,0.02,0.2,580.84,3004.62,26161019,99.83,0.02,0.02,0.23,580.77,3004.67,26161020,99.71,0.02,0.02,0.32,580.3,3005.17,26161021,99.78,0.02,0.01,0.18,580.26,3005.2,26161022,99.68,0.02,0.01,0.44,580.75,3004.7,26161023,99.84,0.02,0.01,0.31,580.76,3004.69,26161024,99.8,0.02,0.02,0.18,580.72,3004.72,26161025,99.79,0.02,0.01,0.33,581.04,3004.42,26161026,99.84,0,0,0.19,580.97,3004.49,26161027,99.73,0,0,0.32,581.47,3003.98,26161028,99.83,0,0,0.47,581.24,3004.21,26161029,99.82,0,0,0.33,581.08,3004.34,26161030,99.83,0,0,0.29,581.07,3004.37,26161031,99.57,0,0,0.15,581.03,3004.4,26161032,99.88,0,0,0.16,581,3004.43,26161033,99.76,0,0,0.59,581.32,3004.11,26161034,99.92,0,0,0.14,580.72,3004.7,26161035,99.89,0,0,0.27,581.32,3004.12,26161036,99.91,0,0,0.14,581.34,3004.11,26161037,99.93,0,0,0.19,581.3,3004.14,26161038,99.75,0,0,0.56,581.42,3004.01,26161039,99.92,0.01,0.01,0.14,580.99,3004.44,26161040,99.87,0,0,0.27,580.98,3004.47,26161041,99.92,0,0,0.16,580.94,3004.5,26161042,99.9,0,0,0.16,581.1,3004.34,26161043,99.8,0,0,0.54,581.42,3004.02,26161044,99.94,0,0,0.17,581.03,3004.4,26161045,99.89,0,0,0.33,581.01,3004.43,26161046,99.92,0,0,0.16,580.98,3004.46,26161047,99.9,0,0,0.14,580.94,3004.5,26161048,99.77,0,0,0.57,581.21,3004.22,26161049,99.9,0,0,0.18,580.81,3004.61,26161050,99.82,0,0,0.3,581.33,3004.11,26161051,99.93,0,0,0.14,581.26,3004.18,26161052,99.93,0,0,0.16,581.24,3004.2,26161053,99.8,0,0,0.46,581.48,3003.95,26161054,99.94,0,0,0.27,580.93,3004.5,26161055,99.85,0,0,0.29,580.75,3004.69,26161056,99.9,0,0,0.13,580.82,3004.62,26161057,99.94,0,0,0.14,580.78,3004.65,26161058,99.8,0,0,0.42,581.27,3004.16,26161059,99.87,0,0,0.5,581.23,3004.17,26161060,99.8,0,0,0.3,581.2,3004.22,26161061,99.89,0,0,0.13,581.17,3004.24,26161062,99.93,0,0,0.14,581.3,3004.1,26161063,99.8,0,0,0.58,581.66,3003.75,26161064,99.9,0,0,0.2,581.26,3004.13,26161065,99.91,0,0,0.33,581.24,3004.16,26161066,99.91,0,0,0.19,581.21,3004.19,26161067,99.93,0,0,0.14,581.17,3004.22,26161068,99.93,0,0,0.4,580.8,3004.59,26161069,99.79,0,0,0.57,581.74,3003.65,26161070,99.86,0,0,0.3,581.29,3004.11,26161071,99.93,0,0,0.15,581.27,3004.13,26161072,99.94,0,0,0.16,581.23,3004.16,26161073,99.91,0,0,0.15,581.2,3004.19,26161074,99.8,0,0,0.54,580.53,3004.86,26161075,99.9,0.01,0.01,0.29,580.65,3004.76,26161076,99.91,0,0.01,0.14,580.84,3004.56,26161077,99.95,0,0,0.13,580.8,3004.59,26161078,99.9,0,0,0.18,580.77,3004.62,26161079,99.77,0,0,0.54,580.31,3005.08,26161080,99.79,0,0,0.28,581.43,3003.97,26161081,99.92,0,0,0.16,581.44,3003.96,26161082,99.94,0,0,0.14,581.42,3003.98,26161083,99.94,0,0,0.14,581.57,3003.82,26161084,99.79,0,0,0.58,581.73,3003.66,26161085,99.88,0,0,0.28,581.29,3004.12,26161086,99.92,0,0,0.14,581.24,3004.16,26161087,99.92,0,0,0.16,581.2,3004.19,26161088,99.93,0,0,0.14,581.18,3004.21,26161089,99.7,0,0,0.64,581.7,3003.67,26161090,99.84,0,0,0.33,581.32,3004.07,26161091,99.91,0,0,0.14,581.28,3004.11,26161092,99.93,0,0,0.16,581.24,3004.14,26161093,99.95,0,0,0.15,581.19,3004.18,26161094,99.8,0,0,0.43,581.66,3003.73,26161095,99.87,0,0,0.41,581.23,3004.17,26161096,99.93,0,0,0.2,581.31,3004.09,26161097,99.89,0,0,0.19,581.29,3004.11,26161098,99.92,0,0,0.2,581.25,3004.14,26161099,99.77,0.01,0.01,0.61,581.41,3003.97,26161100,99.82,0,0,0.27,581.43,3003.98,26161101,99.9,0,0,0.19,581.41,3003.99,26161102,99.92,0,0,0.18,581.45,3003.94,26161103,99.93,0,0,0.16,581.52,3003.88,26161104,99.8,0,0,0.41,581.83,3003.55,26161105,99.77,0,0,0.45,581.24,3004.16,26161106,99.93,0,0,0.19,581.19,3004.2,26161107,99.91,0,0,0.14,581.15,3004.23,26161108,99.92,0,0,0.14,581.2,3004.19,26161109,99.94,0,0,0.15,581.27,3004.11,26161110,99.71,0,0,0.73,582.03,3003.36,26161111,99.93,0,0,0.13,581.46,3003.92,26161112,99.91,0,0,0.14,581.44,3003.94,26161113,99.92,0,0,0.2,581.41,3003.97,26161114,99.94,0,0,0.16,581.38,3003.99,26161115,99.67,0,0,0.8,581.82,3003.56,26161116,99.91,0,0,0.17,581.51,3003.86,26161117,99.95,0,0,0.15,581.47,3003.89,26161118,99.93,0,0,0.18,581.44,3003.92,26161119,99.87,0,0,0.31,581.4,3003.93,26161120,99.71,0,0,0.75,581.05,3004.3,26161121,99.93,0,0,0.14,581.11,3004.24,26161122,99.91,0,0,0.14,581.27,3004.07,26161123,99.94,0,0,0.16,581.26,3004.08,26161124,99.89,0,0,0.14,581.23,3004.13,26161125,99.73,0,0,0.66,581.42,3003.96,26161126,99.91,0,0,0.25,581.44,3003.95,26161127,99.93,0,0,0.14,580.96,3004.42,26161128,99.94,0,0,0.14,580.64,3004.74,26161129,99.92,0,0,0.15,580.79,3004.58,26161130,99.71,0,0,0.54,581.74,3003.65,26161131,99.93,0,0,0.27,581.24,3004.14,26161132,99.94,0,0,0.16,581.22,3004.16,26161133,99.92,0.03,0,0.14,581.22,3004.16,26161134,99.93,0,0,0.16,581.25,3004.12,26161135,99.76,0.01,0.01,0.55,580.93,3004.45,26161136,99.9,0,0.01,0.3,580.71,3004.67,26161137,99.92,0,0,0.17,580.67,3004.71,26161138,99.91,0,0,0.18,580.26,3005.11,26161139,99.94,0,0,0.14,580.28,3005.09,26161140,99.66,0,0,0.49,580.92,3004.46,26161141,99.92,0,0,0.4,580.98,3004.39,26161142,99.92,0,0,0.18,580.95,3004.42,26161143,99.9,0,0,0.16,580.92,3004.45,26161144,99.91,0,0,0.14,580.89,3004.48,26161145,99.88,0,0,0.32,580.89,3004.49,26161146,99.8,0,0,0.55,581.37,3004.01,26161147,99.93,0,0,0.16,581,3004.38,26161148,99.93,0,0,0.14,580.97,3004.4,26161149,99.84,0,0,0.29,580.93,3004.41,26161150,99.9,0,0,0.31,580.67,3004.69,26161151,99.76,0,0,0.56,581.53,3003.82,26161152,98.59,0,0,0.16,580.88,3004.46,26161153,99.95,0,0,0.16,580.99,3004.35,26161154,99.92,0,0,0.15,580.95,3004.39,26161155,99.87,0,0,0.33,580.92,3004.43,26161156,99.78,0,0,0.58,581.7,3003.65,26161157,99.92,0,0,0.19,581.11,3004.23,26161158,99.9,0,0,0.14,581.23,3004.1,26161159,99.93,0.01,0.01,0.16,581.19,3004.15,26161160,99.85,0,0,0.27,581.17,3004.18,26161161,99.75,0,0,0.57,581.49,3003.86,26161162,99.92,0,0,0.18,581.13,3004.21,26161163,99.92,0,0,0.16,581.27,3004.07,26161164,99.93,0,0,0.17,581.23,3004.1,26161165,98.87,0,0,15.55,582.3,3003.61,26161166,99.77,0,0,0.51,580.95,3004.5,26161167,99.93,0,0,0.21,579.95,3005.5,26161168,99.9,0,0,0.14,579.93,3005.51,26161169,99.9,0,0,0.15,580.06,3005.37,26161170,99.8,0,0,0.34,581.04,3004.41,26161171,99.78,0,0,0.58,581.19,3004.26,26161172,99.94,0,0,0.15,580.23,3005.21,26161173,99.85,0,0,0.18,580.2,3005.24,26161174,99.87,0,0,0.2,580.16,3005.27,26161175,99.8,0,0,0.32,579.75,3005.7,26161176,99.81,0,0,0.34,580.6,3004.84,26161177,99.92,0,0,0.47,581.01,3004.42,26161178,99.9,0,0,0.14,580.98,3004.45,26161179,99.89,0,0,0.3,581.19,3004.22,26161180,99.9,0,0,0.29,580.46,3004.96,26161181,99.94,0,0,0.14,580.41,3005.01,26161182,99.74,0,0,0.57,580.99,3004.43,26161183,99.91,0,0,0.14,580.53,3004.89,26161184,99.95,0.01,0.01,0.16,580.46,3004.96,26161185,99.9,0,0,0.29,581.42,3004.02,26161186,99.92,0,0,0.16,581.4,3004.04,26161187,99.77,0,0,0.54,580.81,3004.63,26161188,99.93,0,0,0.16,580.03,3005.41,26161189,99.93,0,0,0.16,579.99,3005.44,26161190,99.91,0,0,0.34,580.21,3005.23,26161191,99.92,0,0,0.16,580.17,3005.28,26161192,99.79,0,0,0.58,581.4,3004.05,26161193,99.93,0,0,0.15,581.49,3003.96,26161194,99.95,0,0,0.15,581.5,3003.95,26161195,99.86,0.01,0.01,0.35,581.01,3004.45,26161196,88.13,0,0.01,383.97,602.42,2917.81,26161197,98.95,0,0,65.77,584.38,2831.61,26161198,99.9,0,0,0.26,583.05,2834.54,26161199,99.94,0,0,0.18,582.89,2834.62,26161200,99.81,0,0,0.34,583.82,2833.24,26161201,99.92,0,0,0.16,583.72,2833.25,26161202,99.79,0,0,0.62,582.31,2834.62,26161203,99.93,0,0,0.16,581.56,2835.29,26161204,99.93,0,0,0.17,581.44,2835.32,26161205,99.85,0,0,0.33,581.45,2835.11,26161206,99.94,0,0,0.15,581.53,2834.87,26161207,99.82,0,0,0.42,581.67,2834.58,26161208,99.92,0,0,0.31,580.17,2835.99,26161209,99.85,0,0,0.31,581.23,2834.51,26161210,99.89,0,0,0.32,581.61,2834.05,26161211,99.93,0,0,0.18,581.46,2834.1,26161212,99.8,0,0,0.32,581.74,2833.73,26161213,99.93,0,0,0.39,580.68,2834.7,26161214,99.93,0,0,0.14,580.57,2834.73,26161215,99.84,0,0,0.28,580.5,2834.74,26161216,99.94,0,0,0.14,580.37,2834.78,26161217,99.78,0,0,0.48,580.86,2834.21,26161218,99.94,0,0,0.3,580.39,2834.6,26161219,99.93,0.01,0.01,0.14,580.44,2834.46,26161220,99.83,0,0,0.27,580.85,2834,26161221,99.93,0,0,0.15,580.75,2834.01,26161222,99.92,0,0,0.16,580.64,2834.04,26161223,99.77,0,0,0.57,582.09,2832.51,26161224,99.92,0,0,0.18,581.39,2833.12,26161225,99.86,0,0,0.34,581.56,2832.87,26161226,99.94,0,0,0.14,581.61,2832.74,26161227,99.91,0,0,0.14,581.51,2832.76,26161228,99.78,0,0,0.6,581.79,2832.3,26161229,99.93,0,0,0.16,581.15,2832.82,26161230,99.9,0,0,0.33,581.33,2832.35,26161231,99.94,0,0,0.14,581.22,2832.38,26161232,99.93,0,0,0.16,581.11,2832.41,26161233,94.99,0.35,0.01,194.59,595.74,2817.53,26161234,99.91,0,0,63.72,582.75,2830.17,26161235,99.85,0,0.01,0.3,583.88,2828.98,26161236,99.93,0,0,0.15,583.94,2828.83,26161237,99.91,0,0,0.14,583.83,2828.86,26161238,99.81,0,0,0.63,583.12,2829.52,26161239,99.87,0,0,0.27,581.44,2831.13,26161240,99.83,0,0,0.29,581.35,2831.15,26161241,99.92,0,0,0.17,581.37,2831.04,26161242,99.93,0,0,0.14,581.27,2831.07,26161243,99.81,0,0,0.51,581.94,2830.31,26161244,99.92,0,0,0.23,581.29,2830.9,26161245,99.87,0,0,0.29,581.93,2830.2,26161246,99.92,0,0,0.14,581.83,2830.22,26161247,99.94,0,0,0.18,581.73,2830.23,26161248,99.77,0,0,0.61,582.3,2829.58,26161249,99.9,0,0,0.19,581.44,2830.36,26161250,99.87,0,0,0.35,581.58,2830.15,26161251,99.9,0,0,0.18,581.46,2830.19,26161252,99.92,0,0,0.15,581.36,2830.2,26161253,99.84,0,0,0.32,581.69,2829.79,26161254,99.88,0,0,0.38,581.81,2829.59,26161255,99.88,0.01,0.01,0.29,581.73,2829.61,26161256,99.91,0,0.01,0.14,581.61,2829.65,26161257,99.9,0,0,0.14,581.49,2829.68,26161258,99.92,0,0,0.19,581.21,2829.88,26161259,99.78,0,0,0.63,581.89,2829.01,26161260,99.82,0,0,0.34,581.86,2828.95,26161261,99.93,0,0,0.18,581.86,2828.87,26161262,99.93,0,0,0.18,581.74,2828.9,26161263,99.94,0,0,0.18,581.63,2828.93,26161264,99.8,0,0,0.54,581.88,2828.6,26161265,99.82,0,0,0.37,581.43,2828.98,26161266,99.91,0,0,0.16,581.32,2829,26161267,99.92,0,0,0.14,581.3,2828.94,26161268,99.93,0,0,0.14,581.33,2828.84,26161269,99.68,0.01,0.01,0.67,582.38,2827.68,26161270,99.81,0,0,0.34,581.3,2828.69,26161271,99.88,0,0,0.14,581.17,2828.74,26161272,99.94,0,0,0.16,581.22,2828.6,26161273,99.95,0,0,0.14,581.15,2828.59,26161274,99.78,0,0,0.59,581.75,2827.92,26161275,99.86,0,0,0.36,581.69,2827.92,26161276,99.93,0,0,0.18,581.58,2827.95,26161277,99.91,0,0,0.22,581.47,2827.98,26161278,99.93,0,0,0.17,581.35,2828.02,26161279,99.76,0.01,0.01,0.54,581.99,2827.3,26161280,99.87,0,0,0.3,581.59,2827.64,26161281,99.93,0,0,0.14,581.46,2827.68,26161282,99.94,0,0,0.15,580.86,2828.2,26161283,99.94,0,0,0.15,580.25,2828.72,26161284,99.8,0,0,0.55,580.46,2828.43,26161285,99.89,0,0,0.3,580.61,2828.22,26161286,99.93,0,0,0.16,580.63,2828.12,26161287,99.92,0,0,0.14,580.53,2828.14,26161288,99.92,0,0,0.15,580.43,2828.17,26161289,99.8,0,0,0.43,580.85,2827.7,26161290,99.87,0,0,0.45,581.25,2827.25,26161291,99.94,0,0,0.14,581.16,2827.28,26161292,99.88,0,0,0.15,581.14,2827.23,26161293,99.93,0,0,0.14,581.17,2827.15,26161294,99.94,0,0,0.14,581.12,2827.18,26161295,99.04,0,0,0.7,580.46,2827.83,26161296,99.91,0,0,0.16,580.01,2828.22,26161297,99.94,0,0,0.14,579.92,2828.26,26161298,99.93,0,0,0.16,579.86,2828.27,26161299,99.77,0,0,0.27,581.42,2826.64,26161300,99.74,0,0,0.7,582.07,2825.87,26161301,99.92,0,0,0.14,581.22,2826.67,26161302,99.91,0,0,0.16,581.13,2826.7,26161303,99.93,0,0,0.14,581.07,2826.73,26161304,99.94,0,0,0.15,581.01,2826.77,26161305,99.75,0,0,0.71,581.16,2826.6,26161306,99.84,0,0,0.14,580.6,2827.13,26161307,99.93,0,0,0.16,580.53,2827.16,26161308,99.93,0,0,0.18,580.62,2827.01,26161309,99.91,0,0,0.14,580.6,2826.96,26161310,99.72,0,0,0.71,581.03,2826.52,26161311,99.94,0,0,0.17,580.24,2827.29,26161312,99.92,0,0,0.14,580.2,2827.31,26161313,99.92,0,0,0.16,580.34,2827.14,26161314,99.92,0,0,0.18,580.26,2827.15,26161315,99.72,0.01,0.01,0.67,581.81,2825.58,26161316,99.93,0,0.01,0.22,581.36,2825.99,26161317,99.92,0,0,0.14,581.32,2826.02,26161318,99.91,0,0,0.18,581.11,2826.19,26161319,99.91,0,0,0.14,581.01,2826.23,26161320,99.7,0,0,0.73,582.45,2824.77,26161321,99.93,0,0,0.16,581.5,2825.69,26161322,99.92,0,0,0.14,581.42,2825.72,26161323,99.93,0,0,0.16,581.36,2825.75,26161324,99.93,0,0,0.14,581.37,2825.67,26161325,99.67,0,0,0.61,581.08,2825.92,26161326,99.9,0,0,0.28,581.3,2825.65,26161327,99.93,0,0,0.16,581.28,2825.63,26161328,99.93,0,0,0.14,581.4,2825.47,26161329,99.88,0,0,0.28,581.31,2825.47,26161330,99.89,0.01,0.01,0.3,581.73,2824.99,26161331,99.78,0,0,0.52,581.83,2824.81,26161332,99.93,0,0,0.16,581.49,2825.06,26161333,99.9,0,0,0.15,581.51,2824.98,26161334,99.89,0,0,0.14,581.44,2825,26161335,99.85,0,0,0.3,581.13,2825.27,26161336,99.79,0,0,0.6,581.88,2824.47,26161337,99.91,0,0,0.21,581.62,2824.67,26161338,99.93,0,0,0.2,581.62,2824.62,26161339,99.88,0.01,0.01,0.16,581.68,2824.5,26161340,99.88,0.01,0,0.3,581.69,2824.47,26161341,99.78,0,0,0.64,580.71,2825.32,26161342,99.92,0,0,0.16,580.06,2825.92,26161343,99.9,0,0,0.16,579.92,2825.99,26161344,99.92,0,0,0.16,579.86,2826.01,26161345,99.87,0,0,0.3,580.64,2825.18,26161346,99.81,0,0,0.58,581.44,2824.35,26161347,99.92,0,0,0.16,581.05,2824.71,26161348,99.91,0,0,0.15,580.95,2824.73,26161349,99.93,0,0,0.15,580.88,2824.77,26161350,99.87,0,0,0.34,581.43,2824.19,26161351,99.78,0,0,0.52,582.02,2823.56,26161352,99.94,0,0,0.2,581.78,2823.76,26161353,99.9,0,0,0.14,581.77,2823.71,26161354,99.92,0,0,0.14,581.65,2823.78,26161355,99,0,0,0.34,581.65,2823.74,26161356,99.75,0,0,0.44,581.92,2823.44,26161357,99.9,0,0,0.32,581.28,2824.03,26161358,99.91,0,0,0.16,581.19,2824.06,26161359,99.85,0,0,0.29,581.18,2823.98,26161360,99.86,0,0,0.3,581.69,2823.44,26161361,99.8,0,0,0.61,582.02,2823.07,26161362,99.88,0.01,0.01,0.16,581.77,2823.27,26161363,99.93,0,0,0.22,581.78,2823.2,26161364,99.93,0,0,0.18,581.73,2823.2,26161365,99.88,0,0,0.34,581.94,2822.97,26161366,99.79,0,0,0.39,582.19,2822.68,26161367,99.93,0,0,0.3,581.78,2823.05,26161368,99.9,0,0,0.14,581.7,2823.07,26161369,99.92,0,0,0.14,581.64,2823.08,26161370,99.89,0,0,0.3,582.02,2822.68,26161371,99.92,0,0,0.16,581.97,2822.7,26161372,99.78,0,0,0.63,582.26,2822.38,26161373,99.95,0,0,0.15,581.84,2822.74,26161374,99.92,0,0,0.15,581.81,2822.71,26161375,99.84,0.01,0.01,0.32,581.47,2823.02,26161376,99.91,0.01,0.01,0.14,581.47,2822.98,26161377,99.78,0,0,0.59,582.13,2822.27,26161378,99.92,0,0,0.2,581.03,2823.31,26161379,99.91,0,0,0.14,580.79,2823.49,26161380,99.88,0,0,0.3,580.97,2823.28,26161381,99.91,0,0,0.17,580.96,2823.24,26161382,99.76,0,0,0.55,581.25,2822.91,26161383,99.92,0,0,0.17,580.86,2823.25,26161384,99.93,0,0,0.15,580.89,2823.15,26161385,99.85,0,0,0.3,581.65,2822.35,26161386,99.93,0,0,0.16,581.78,2822.2,26161387,99.74,0,0,0.49,582.27,2821.66,26161388,99.9,0,0,0.2,582.14,2821.75,26161389,99.89,0,0,0.27,581.58,2822.24,26161390,99.86,0,0,0.29,581.53,2822.28,26161391,99.9,0,0,0.16,581.49,2822.3,26161392,99.75,0,0,0.45,581.27,2822.49,26161393,99.91,0,0,0.26,580.21,2823.51,26161394,99.89,0,0,0.16,580.27,2823.43,26161395,98.92,0,0,0.32,581.69,2822.01,26161396,99.88,0,0,0.16,581.63,2822.02,26161397,99.74,0,0,0.56,581.95,2821.67,26161398,99.86,0,0,0.2,581.72,2821.85,26161399,99.87,0.01,0.01,0.18,581.86,2821.67,26161400,99.87,0,0,0.32,581.84,2821.7,26161401,99.89,0.01,0.15,0.2,581.93,2821.54,26161402,99.77,0,0.01,0.39,582.37,2821.04,26161403,99.87,0,0,0.29,582.12,2821.26,26161404,99.82,0,0,0.17,581.9,2821.44,26161405,99.87,0,0,0.3,581.78,2821.56,26161406,99.89,0,0,0.17,581.82,2821.51,26161407,99.85,0,0,0.15,581.87,2821.44,26161408,99.75,0,0,0.54,582.62,2820.66,26161409,99.91,0,0,0.14,582.25,2821.01,26161410,99.88,0,0,0.29,581.98,2821.29,26161411,99.9,0,0,0.14,581.91,2821.33,26161412,99.78,0,0,0.16,582.03,2821.17,26161413,99.77,0,0,0.55,582.55,2820.63,26161414,99.9,0,0,0.16,582.15,2821,26161415,99.82,0,0,0.3,581.88,2821.27,26161416,99.88,0,0,0.15,581.81,2821.3,26161417,99.85,0,0,0.16,581.82,2821.26,26161418,99.72,0,0,0.58,582.75,2820.3,26161419,99.82,0,0,0.29,581.94,2821.05,26161420,99.79,0,0,0.3,582.03,2820.97,26161421,99.84,0.01,0.01,0.21,581.91,2821.08,26161422,99.82,0,0,0.14,581.86,2821.12,26161423,99.72,0,0,0.5,582.49,2820.46,26161424,99.89,0,0,0.2,581.89,2821.02,26161425,99.72,0,0,0.32,581.63,2821.29,26161426,99.85,0,0,0.13,581.57,2821.33,26161427,99.85,0,0,0.16,581.52,2821.36,26161428,99.72,0,0,0.43,582.12,2820.73,26161429,99.81,0,0,0.29,582.2,2820.6,26161430,99.77,0,0,0.3,581.08,2821.72,26161431,99.85,0,0,0.17,580.97,2821.8,26161432,99.82,0,0,0.15,580.92,2821.84,26161433,99.71,0,0,0.48,581.69,2821.03,26161434,99.85,0,0,0.19,582.09,2820.59,26161435,99.8,0,0,0.3,581.51,2821.17,26161436,99.84,0.01,0.01,0.16,581.42,2821.22,26161437,99.82,0,0,0.15,581.54,2821.06,26161438,99.7,0,0,0.45,581.76,2820.82,26161439,99.81,0,0,0.29,581.43,2821.12,26161440,99.8,0,0,0.32,581.21,2821.32,26161441,99.85,0,0,0.16,581.26,2821.23,26161442,99.82,0,0,0.17,581.2,2821.25,26161443,99.71,0,0,0.31,581.69,2820.74,26161444,99.83,0,0,0.39,580.59,2821.81,26161445,99.79,0,0,0.29,581.53,2820.86,26161446,99.83,0,0,0.16,581.5,2820.87,26161447,99.83,0,0,0.15,581.5,2820.83,26161448,99.85,0,0,0.15,581.73,2820.55,26161449,99.66,0,0,0.75,581.99,2820.25,26161450,99.8,0,0,0.32,581.7,2820.53,26161451,99.83,0,0,0.21,581.66,2820.56,26161452,99.85,0,0,0.16,581.62,2820.59,26161453,99.85,0,0,0.17,581.54,2820.62,26161454,99.71,0,0,0.55,582.04,2820.09,26161455,99.73,0,0,0.32,580.9,2821.21,26161456,99.85,0,0,0.17,580.82,2821.26,26161457,99.83,0,0,0.23,580.75,2821.29,26161458,99.84,0,0,0.17,580.71,2821.32,26161459,99.69,0.01,0.01,0.58,581.7,2820.3,26161460,99.79,0,0,0.31,581.77,2820.24,26161461,99.85,0,0,0.18,581.72,2820.25,26161462,99.85,0,0,0.18,581.64,2820.28,26161463,99.84,0,0,0.18,581.36,2820.51,26161464,99.69,0,0,0.57,581.82,2820.04,26161465,99.81,0,0,0.32,581.02,2820.84,26161466,99.85,0,0,0.19,580.98,2820.87,26161467,99.84,0,0,0.16,581.08,2820.74,26161468,99.83,0,0,0.17,581.05,2820.74,26161469,99.71,0,0,0.57,581.55,2820.2,26161470,99.78,0,0,0.32,581.43,2820.31,26161471,99.83,0,0,0.17,581.37,2820.34,26161472,99.85,0,0,0.17,581.32,2820.37,26161473,99.83,0,0,0.17,581.27,2820.4,26161474,99.72,0,0,0.45,581.67,2819.98,26161475,99.78,0,0,0.48,581.93,2819.71,26161476,99.86,0,0,0.19,581.85,2819.79,26161477,99.85,0,0,0.18,581.8,2819.82,26161478,99.84,0,0,0.18,581.76,2819.85,26161479,99.65,0,0,0.7,581.87,2819.69,26161480,99.81,0,0,0.32,581,2820.57,26161481,99.84,0,0,0.17,581.08,2820.46,26161482,99.84,0,0,0.17,581.03,2820.49,26161483,99.85,0,0,0.16,580.99,2820.52,26161484,99.73,0,0,0.3,581.67,2819.83,26161485,99.72,0,0,0.55,581.67,2819.84,26161486,99.85,0,0,0.16,581.61,2819.89,26161487,99.84,0,0,0.14,581.74,2819.74,26161488,99.85,0,0,0.14,581.72,2819.76,26161489,99.81,0,0,0.15,581.68,2819.79,26161490,99.6,0.01,0.44,0.77,582.41,2818.95,26161491,99.86,0,0,0.16,581.83,2819.52,26161492,99.85,0,0,0.14,581.79,2819.55,26161493,99.84,0,0,0.16,581.75,2819.58,26161494,99.84,0,0,0.13,581.72,2819.61,26161495,99.67,0,0,0.69,582.14,2819.2,26161496,99.83,0.01,0.01,0.14,582.07,2819.25,26161497,99.85,0,0,0.16,582.05,2819.27,26161498,99.83,0,0,0.18,581.75,2819.55,26161499,99.83,0,0,0.15,581.47,2819.82,26161500,99.61,0,0,0.71,581.38,2819.91,26161501,99.82,0,0,0.18,580.91,2820.36,26161502,99.85,0,0,0.15,580.89,2820.38,26161503,99.85,0,0,0.16,581.01,2820.25,26161504,99.83,0,0,0.14,581,2820.26,26161505,99.65,0,0,0.69,581.72,2819.54,26161506,99.78,0,0,0.16,580.92,2820.32,26161507,99.87,0,0,0.14,580.86,2820.35,26161508,99.85,0,0,0.16,580.82,2820.38,26161509,99.78,0,0,0.34,581.48,2819.42,26161510,99.64,0,0,0.65,582.4,2818.5,26161511,99.84,0,0,0.22,581.85,2819.04,26161512,99.85,0,0,0.14,581.81,2819.07,26161513,99.85,0,0,0.15,581.77,2819.1,26161514,99.85,0,0,0.14,581.73,2819.16,26161515,99.64,0,0,0.7,581.92,2818.98,26161516,99.85,0,0,0.14,581.83,2819.04,26161517,99.83,0,0,0.21,581.79,2819.07,26161518,99.86,0,0,0.15,581.75,2819.1,26161519,99.84,0.01,0.01,0.14,581.7,2819.13,26161520,99.65,0,0,0.71,581.76,2819.07,26161521,99.85,0,0,0.14,580.88,2819.93,26161522,99.85,0,0,0.18,581.04,2819.76,26161523,99.85,0,0,0.18,581.04,2819.76,26161524,99.86,0,0,0.18,581.01,2819.78,26161525,99.76,0,0,0.35,581.22,2819.56,26161526,99.71,0,0,0.55,581.27,2819.48,26161527,99.85,0,0,0.18,580.62,2820.12,26161528,99.85,0,0,0.18,580.58,2820.15,26161529,99.83,0,0,0.28,578.64,2822.12,26161530,99.79,0,0,0.34,570.32,2830.64,26161531,99.68,0,0,0.63,570.37,2830.57,26161532,99.86,0,0,0.18,569.92,2831,26161533,99.85,0,0,0.18,569.88,2831.03,26161534,99.82,0,0,0.18,569.86,2831.03,26161535,99.72,0,0,0.34,570.11,2830.81,26161536,99.71,0,0,0.55,571.35,2829.55,26161537,99.83,0,0,0.14,571.12,2829.77,26161538,99.82,0,0,0.14,571.08,2829.79,26161539,99.74,0,0,0.28,570.8,2830.02,26161540,99.76,0,0,0.29,570.08,2830.76,26161541,99.71,0,0,0.55,571.29,2829.52,26161542,99.85,0,0,0.16,570.96,2829.83,26161543,99.86,0,0,0.14,570.92,2829.86,26161544,99.84,0,0,0.16,570.91,2829.86,26161545,99.83,0,0,0.3,571.15,2829.64,26161546,99.71,0,0,0.55,570.99,2829.77,26161547,99.85,0,0,0.16,570.03,2830.72,26161548,99.84,0,0,0.18,570.01,2830.73,26161549,99.85,0,0,0.15,569.96,2830.75,26161550,99.8,0,0,0.35,570.44,2830.28,26161551,99.7,0,0,0.55,571,2829.71,26161552,99.86,0,0,0.15,570.88,2829.82,26161553,99.84,0,0,0.15,570.84,2829.83,26161554,99.84,0,0,0.16,570.81,2829.84,26161555,99.79,0,0,0.3,570.81,2829.86,26161556,99.72,0,0,0.41,571.51,2829.15,26161557,99.84,0,0,0.28,571.08,2829.58,26161558,99.83,0,0,0.2,570.94,2829.71,26161559,99.85,0,0,0.2,570.63,2829.98,26161560,99.79,0,0,0.3,571.11,2829.51,26161561,99.7,0,0,0.41,571.44,2829.17,26161562,99.86,0,0,0.33,571.28,2829.31,26161563,99.76,0.02,0.04,0.52,571.58,2828.94,26161564,99.78,0.03,0.18,0.23,574.57,2825.54,26161565,99.78,0,0,0.36,580.97,2818.39,26161566,99.7,0,0,0.41,581.55,2817.79,26161567,99.85,0,0,0.28,581.38,2817.96,26161568,99.85,0,0,0.15,581.33,2817.99,26161569,99.79,0,0,0.43,581.41,2817.75,26161570,99.82,0,0,0.3,581.86,2817.28,26161571,99.84,0,0,0.13,581.83,2817.31,26161572,99.7,0,0,0.59,582.13,2816.99,26161573,99.84,0,0,0.18,581.91,2817.19,26161574,99.83,0,0,0.18,581.87,2817.23,26161575,99.78,0,0,0.35,581.6,2817.5,26161576,98.88,0,0,0.18,581.55,2817.55,26161577,99.71,0,0,0.58,582,2817.08,26161578,99.83,0,0,0.15,581.47,2817.6,26161579,99.85,0.01,0.01,0.14,581.59,2817.46,26161580,99.79,0,0,0.29,581.81,2817.24,26161581,99.84,0,0.01,0.15,581.75,2817.3,26161582,99.71,0,0,0.61,581.31,2817.73,26161583,99.83,0,0,0.18,580.69,2818.34,26161584,99.85,0,0,0.18,580.82,2818.2,26161585,99.82,0,0,0.36,581.79,2817.23,26161586,99.85,0,0,0.18,581.73,2817.28,26161587,99.76,0,0,0.6,581.34,2817.66,26161588,99.9,0,0,0.18,580.43,2818.56,26161589,99.9,0,0,0.18,580.36,2818.59,26161590,99.87,0,0,0.32,581.15,2817.8,26161591,99.94,0,0,0.19,580.73,2818.22,26161592,99.77,0,0,0.58,581.4,2817.54,26161593,99.95,0,0,0.2,581.17,2817.77,26161594,99.94,0,0,0.18,581.12,2817.8,26161595,99.84,0,0,0.3,581.11,2817.83,26161596,99.95,0,0,0.19,581.07,2817.85,26161597,94.24,0.34,0.01,78.31,595.84,2803.05,26161598,99.85,0,0,180.03,583.63,2814.53,26161599,99.88,0,0,0.32,583.34,2814.78,26161600,99.9,0,0,0.3,583.56,2814.57,26161601,99.92,0,0,0.14,583.53,2814.6,26161602,99.8,0,0,0.6,583.52,2814.6,26161603,99.92,0,0,0.17,581.01,2817.16,26161604,99.95,0,0,0.14,580.98,2817.18,26161605,99.9,0,0,0.29,580.95,2817.21,26161606,99.92,0,0,0.14,580.91,2817.24,26161607,99.78,0,0,0.32,581.49,2816.65,26161608,99.92,0,0,0.38,581.09,2817.06,26161609,99.95,0,0,0.14,581.12,2817.03,26161610,99.85,0,0,0.28,580.99,2817.17,26161611,99.92,0,0,0.16,580.92,2817.22,26161612,99.92,0,0,0.16,580.88,2817.24,26161613,99.78,0,0,0.54,581.21,2816.9,26161614,99.95,0,0,0.15,580.81,2817.29,26161615,99.86,0,0,0.34,580.8,2817.32,26161616,99.95,0,0,0.14,580.94,2817.17,26161617,99.92,0,0,0.16,580.9,2817.2,26161618,99.76,0,0,0.56,581.46,2816.63,26161619,99.93,0,0,0.14,580.83,2817.26,26161620,99.81,0,0,0.3,580.57,2817.53,26161621,99.92,0,0,0.14,580.51,2817.56,26161622,99.93,0,0,0.14,580.48,2817.57,26161623,99.8,0.01,0.01,0.58,581.8,2816.23,26161624,99.91,0,0.01,0.16,581.31,2816.71,26161625,99.9,0,0,0.3,581.3,2816.73,26161626,99.93,0,0,0.16,581.26,2816.78,26161627,99.9,0,0,0.14,581.22,2816.81,26161628,99.78,0,0,0.49,581.13,2816.89,26161629,99.79,0,0,0.32,581,2816.99,26161630,99.88,0,0,0.28,581.32,2816.69,26161631,99.95,0,0,0.15,581.28,2816.71,26161632,99.93,0,0,0.16,581.24,2816.74,26161633,99.81,0,0,0.52,581.7,2816.28,26161634,99.93,0,0,0.2,581.42,2816.56,26161635,99.88,0,0,0.34,581.26,2816.73,26161636,99.92,0,0,0.19,581.31,2816.68,26161637,98.79,0,0,0.2,581.28,2816.71,26161638,99.78,0,0.01,0.56,581.95,2816.03,26161639,99.93,0.01,0.01,0.22,581.19,2816.78,26161640,99.85,0,0.01,0.29,581.18,2816.81,26161641,99.76,0.03,1.29,0.23,581.22,2816.78,26161642,99.58,0.06,2.7,0.25,581.23,2816.71,26161643,99.78,0,0,0.41,581.64,2816.29,26161644,99.93,0,0,0.29,581.65,2816.27,26161645,99.84,0,0,0.36,581.15,2816.77,26161646,99.93,0,0,0.13,581.11,2816.81,26161647,99.9,0,0,0.16,581.25,2816.67,26161648,99.8,0.01,0.01,0.39,581.61,2816.3,26161649,99.88,0.02,3.16,0.66,580.88,2814.89,26161650,99.82,0,0.21,0.29,581.22,2814.36,26161651,99.92,0,0.09,0.19,581.32,2814.24,26161652,99.89,0,0,0.18,581.28,2814.27,26161653,99.77,0,0,0.32,581.61,2813.93,26161654,99.93,0,0,0.37,581.93,2813.6,26161655,99.84,0,0,0.3,582.16,2813.38,26161656,99.95,0,0,0.15,582.25,2813.29,26161657,99.91,0,0,0.15,582.27,2813.25,26161658,99.07,0,0,0.14,582.23,2813.28,26161659,99.75,0,0,0.69,582.33,2813.13,26161660,99.86,0,0,0.3,582.15,2813.33,26161661,99.93,0,0,0.15,582.1,2813.37,26161662,99.89,0.01,0.01,0.17,582.11,2813.36,26161663,99.93,0,0,0.14,582.12,2813.34,26161664,99.79,0,0,0.56,582.43,2813.03,26161665,99.87,0,0,0.35,581.84,2813.64,26161666,99.91,0,0,0.13,582,2813.47,26161667,99.93,0,0,0.14,581.98,2813.48,26161668,99.95,0,0,0.16,581.94,2813.51,26161669,99.78,0,0.02,0.55,582.41,2813.03,26161670,99.88,0,0,0.29,582.11,2813.34,26161671,99.95,0,0,0.14,582.07,2813.38,26161672,99.93,0,0,0.16,582.21,2813.24,26161673,99.95,0,0,0.15,582.19,2813.26,26161674,99.77,0.01,0.01,0.63,582.61,2812.82,26161675,99.87,0,0,0.37,581.63,2813.81,26161676,99.94,0,0,0.17,581.58,2813.86,26161677,99.92,0,0,0.15,581.63,2813.81,26161678,99.89,0.02,0.13,0.18,581.58,2813.83,26161679,99.83,0,0,0.58,581.97,2813.41,26161680,99.86,0,0,0.3,581.84,2813.54,26161681,99.95,0,0,0.14,581.81,2813.57,26161682,99.92,0,0,0.16,581.78,2813.59,26161683,99.9,0.01,0.01,0.16,581.75,2813.62,26161684,99.76,0.01,0.01,0.56,582.31,2813.05,26161685,99.84,0,0,0.3,582.35,2813.03,26161686,99.9,0.01,1.77,0.14,582.32,2813.06,26161687,99.93,0.01,0.59,0.27,582.34,2812.95,26161688,99.88,0,0,0.18,582.39,2812.83,26161689,99.71,0,0,0.54,582.27,2812.93,26161690,99.88,0,0,0.46,581.72,2813.49,26161691,99.95,0,0,0.15,581.69,2813.51,26161692,99.93,0,0,0.15,581.65,2813.54,26161693,99.95,0,0,0.16,581.61,2813.57,26161694,99.92,0,0,0.13,581.57,2813.59,26161695,99.71,0,0,0.73,583.27,2811.9,26161696,99.93,0,0,0.18,582.92,2812.24,26161697,99.94,0,0,0.18,582.65,2812.51,26161698,99.92,0.01,0.01,0.16,582.61,2812.52,26161699,99.93,0.01,0.01,0.17,582.5,2812.35,26161700,99.7,0,0,0.67,583,2811.87,26161701,99.93,0.03,0.04,0.17,582.59,2812.27,26161702,99.9,0.06,0.07,0.3,582.51,2812.3,26161703,99.93,0,0,0.18,582.44,2812.36,26161704,99.93,0,0,0.14,582.42,2812.36,26161705,99.76,0,0,0.72,583.01,2811.79,26161706,99.93,0,0,0.13,582.31,2812.49,26161707,99.92,0,0,0.16,582.27,2812.52,26161708,99.93,0,0,0.14,582.23,2812.55,26161709,99.9,0,0,0.15,582.18,2812.58,26161710,99.78,0,0,0.64,582.35,2812.43,26161711,99.95,0,0,0.21,581.9,2812.88,26161712,99.93,0,0,0.13,582.04,2812.73,26161713,99.93,0,0,0.16,582.01,2812.76,26161714,99.94,0,0,0.14,581.98,2812.78,26161715,99.77,0,0,0.69,582.63,2812.14,26161716,99.93,0,0,0.14,582.43,2812.34,26161717,99.94,0,0,0.16,582.38,2812.37,26161718,99.93,0,0,0.14,582.35,2812.39,26161719,99.87,0.01,0.01,0.3,582.74,2811.96,26161720,99.76,0,0,0.74,583.23,2811.49,26161721,99.93,0,0,0.15,582.36,2812.35,26161722,99.91,0,0,0.13,582.49,2812.2,26161723,99.94,0,0,0.16,582.45,2812.24,26161724,99.95,0,0,0.14,582.41,2812.27,26161725,99.78,0,0,0.55,582.41,2812.28,26161726,99.93,0,0,0.3,582.36,2812.33,26161727,99.91,0,0,0.14,582.32,2812.36,26161728,99.95,0,0,0.14,582.33,2812.35,26161729,99.92,0,0,0.16,582.44,2812.23,26161730,99.71,0,0,0.56,582.7,2811.98,26161731,99.93,0,0,0.29,581.43,2813.25,26161732,99.94,0,0,0.16,581.39,2813.28,26161733,99.93,0,0,0.14,581.35,2813.31,26161734,99.93,0,0,0.15,581.32,2813.34,26161735,99.75,0,0,0.6,582.5,2812.17,26161736,99.94,0,0,0.27,582.92,2811.74,26161737,99.94,0,0,0.14,582.9,2811.76,26161738,99.93,0,0,0.33,582.72,2811.72,26161739,99.93,0,0,0.15,582.29,2811.58,26161740,99.82,0,0,0.29,582.33,2811.56,26161741,99.79,0,0,0.57,583.04,2810.84,26161742,99.95,0,0,0.15,582.53,2811.34,26161743,99.94,0,0.01,0.14,582.62,2811.25,26161744,99.93,0,0.01,0.15,582.58,2811.28,26161745,99.84,0,0,0.29,582.42,2811.46,26161746,99.81,0,0,0.58,582.29,2811.59,26161747,99.93,0,0,0.17,582,2811.87,26161748,99.92,0,0,0.17,581.98,2811.88,26161749,99.89,0,0,0.3,581.63,2812.2,26161750,99.85,0,0,0.32,582.08,2811.76,26161751,99.8,0,0,0.56,582.43,2811.4,26161752,99.95,0,0,0.18,582.04,2811.79,26161753,99.92,0,0,0.17,582,2811.82,26161754,99.92,0,0,0.18,581.97,2811.85,26161755,99.89,0,0,0.34,581.74,2812.09,26161756,99.76,0,0,0.43,582.03,2811.79,26161757,99.91,0,0,0.33,581.59,2812.22,26161758,99.5,0,0,0.14,581.55,2812.24,26161759,99.94,0.01,0.01,0.14,581.51,2812.28,26161760,99.9,0,0,0.29,581.5,2812.31,26161761,99.8,0,0,0.55,581.62,2812.2,26161762,99.91,0,0,0.17,581.24,2812.58,26161763,99.95,0,0,0.14,581.35,2812.46,26161764,99.9,0,0,0.15,581.32,2812.48,26161765,99.84,0,0,0.3,582.27,2811.55,26161766,99.79,0,0,0.56,582.48,2811.33,26161767,99.94,0,0,0.14,581.72,2812.09,26161768,99.91,0,0,0.16,581.69,2812.1,26161769,99.92,0,0,0.15,581.82,2811.96,26161770,99.83,0,0,0.29,581.81,2811.99,26161771,99.78,0,0,0.47,582.13,2811.52,26161772,99.88,0,0,0.45,581.7,2810.57,26161773,99.94,0,0,0.14,581.66,2810.6,26161774,99.92,0,0,0.14,581.63,2810.63,26161775,99.88,0,0,0.3,581.93,2810.35,26161776,99.95,0,0,0.17,582.01,2810.26,26161777,99.78,0,0.01,0.68,578.82,2813.4,26161778,99.93,0,0,0.25,571.46,2820.91,26161779,99.86,0,0,0.27,570.97,2821.37,26161780,99.84,0,0,0.29,571.17,2821.19,26161781,99.93,0,0,0.16,571.16,2821.2,26161782,99.78,0,0,0.55,572.03,2820.32,26161783,99.95,0,0,0.17,571.77,2820.57,26161784,99.94,0,0,0.14,571.74,2820.6,26161785,99.88,0,0,0.32,571.03,2821.32,26161786,99.93,0,0,0.14,570.98,2821.37,26161787,99.81,0,0,0.54,571.88,2820.46,26161788,99.93,0,0,0.17,571.68,2820.66,26161789,99.92,0,0,0.14,571.67,2820.67,26161790,99.88,0,0,0.41,570.47,2821.64,26161791,99.95,0,0,0.16,570.38,2821.72,26161792,99.8,0,0,0.48,571.48,2820.63,26161793,99.95,0,0,0.21,571.03,2821.08,26161794,99.94,0,0,0.16,571.01,2821.09,26161795,99.5,0,0,0.38,571.77,2820.26,26161796,99.93,0,0,0.26,571.56,2820.38,26161797,99.81,0,0,0.55,571.42,2820.52,26161798,99.91,0,0,0.19,570.46,2821.48,26161799,99.93,0,0,0.16,571,2820.93,26161800,99.86,0,0,0.34,571.71,2820.23,26161801,99.93,0,0,0.13,571.72,2820.23,26161802,99.78,0,0,0.55,572.04,2819.91,26161803,99.93,0,0,0.15,571.75,2820.2,26161804,99.93,0,0,0.16,571.83,2820.11,26161805,99.89,0,0,0.33,571.84,2820.11,26161806,99.96,0,0,0.16,571.81,2820.14,26161807,99.79,0,0,0.4,572.34,2819.6,26161808,99.93,0,0,0.32,571.27,2820.66,26161809,99.89,0,0,0.31,571.73,2820.18,26161810,99.87,0,0,0.3,571.47,2820.45,26161811,99.92,0,0,0.16,571.46,2820.46,26161812,99.8,0,0,0.43,571.75,2820.16,26161813,99.93,0,0,0.33,570.51,2821.41,26161814,99.94,0,0,0.2,570.62,2821.29,26161815,99.88,0,0,0.33,570.63,2821.29,26161816,99.93,0,0,0.15,570.6,2821.32,26161817,99.75,0,0,0.43,571.24,2820.66,26161818,99.4,0,0,0.37,571.77,2820.12,26161819,99.93,0.01,0.01,0.16,571.75,2820.12,26161820,99.9,0,0,0.3,571.75,2820.14,26161821,99.94,0,0,0.14,571.73,2820.16,26161822,99.93,0,0,0.13,571.71,2820.18,26161823,99.81,0,0,0.56,571.84,2820.04,26161824,99.93,0,0,0.16,571.47,2820.4,26161825,99.88,0,0,0.3,571.58,2820.3,26161826,99.94,0,0,0.14,571.55,2820.32,26161827,99.91,0,0,0.16,571.54,2820.33,26161828,99.77,0,0,0.55,571.86,2820.01,26161829,99.92,0,0,0.18,571.5,2820.36,26161830,99.88,0,0,0.29,571.74,2820.14,26161831,99.94,0,0,0.14,571.73,2820.15,26161832,99.95,0,0,0.16,571.69,2820.18,26161833,99.78,0,0,0.54,572.03,2819.84,26161834,99.93,0,0,0.16,571.65,2820.21,26161835,99.89,0,0,0.31,571.2,2820.68,26161836,99.91,0,0,0.15,571.31,2820.55,26161837,99.93,0,0,0.17,571.27,2820.58,26161838,99.8,0,0,0.53,572.01,2819.83,26161839,99.75,0,0,0.32,571.77,2820.05,26161840,99.87,0,0,0.36,572.05,2819.78,26161841,99.95,0,0,0.18,571.94,2819.89,26161842,99.94,0,0,0.18,571.93,2819.89,26161843,99.81,0,0,0.57,572.38,2819.44,26161844,99.94,0,0,0.15,571.88,2819.95,26161845,99.87,0,0,0.3,571.89,2819.96,26161846,99.93,0,0,0.15,571.91,2819.94,26161847,99.94,0,0,0.17,572.02,2819.81,26161848,99.8,0,0,0.4,572.34,2819.49,26161849,99.95,0,0,0.31,571.98,2819.85,26161850,99.86,0,0,0.31,571.97,2819.87,26161851,99.93,0,0,0.15,571.96,2819.87,26161852,99.93,0,0,0.18,571.93,2819.9,26161853,99.79,0,0,0.5,572.25,2819.57,26161854,99.93,0,0,0.25,571.88,2819.93,26161855,99.83,0,0,0.29,572.13,2819.7,26161856,99.93,0,0,0.14,572.11,2819.73,26161857,99.93,0,0,0.16,572.09,2819.74,26161858,99.84,0,0,0.21,572.28,2819.55,26161859,99.87,0,0,0.55,572.09,2819.73,26161860,99.88,0,0,0.3,572.22,2819.62,26161861,99.93,0,0,0.17,572.2,2819.62,26161862,99.95,0,0,0.17,572.17,2819.64,26161863,99.93,0,0,0.17,572.15,2819.66,26161864,99.8,0,0,0.56,572.28,2819.53,26161865,99.9,0,0,0.34,571.63,2820.19,26161866,99.95,0,0,0.18,571.61,2820.21,26161867,99.93,0.01,0.01,0.16,571.6,2820.21,26161868,99.94,0,0,0.18,571.7,2820.1,26161869,99.77,0,0,0.68,572.22,2819.55,26161870,99.89,0,0,0.34,572.14,2819.63,26161871,99.93,0,0,0.21,572.11,2819.66,26161872,99.93,0,0,0.2,572.1,2819.67,26161873,99.94,0,0,0.2,572.07,2819.69,26161874,99.81,0,0,0.57,572.27,2819.48,26161875,99.85,0,0,0.36,572.02,2819.73,26161876,99.93,0,0,0.16,572.01,2819.73,26161877,99.92,0,0,0.24,571.75,2819.99,26161878,99.91,0,0,0.17,571.9,2819.83,26161879,99.8,0.01,0.01,0.6,572.35,2819.38,26161880,99.86,0,0,0.35,572.11,2819.62,26161881,99.96,0,0,0.2,572.09,2819.64,26161882,99.93,0,0,0.2,572.07,2819.66,26161883,99.9,0,0,0.2,572.04,2819.68,26161884,99.77,0,0,0.6,572.02,2819.69,26161885,99.84,0,0,0.32,571.03,2820.7,26161886,99.55,0,0,0.29,571.32,2820.4,26161887,99.94,0,0,0.2,571.24,2820.47,26161888,99.91,0,0,0.2,571.21,2820.49,26161889,99.77,0,0,0.59,571.87,2819.83,26161890,99.84,0,0,0.35,572.45,2819.26,26161891,99.93,0,0,0.2,572.36,2819.34,26161892,99.93,0,0,0.18,572.34,2819.37,26161893,99.93,0,0,0.17,572.31,2819.39,26161894,99.76,0,0,0.47,572.65,2819.06,26161895,99.87,0,0,0.47,571.83,2819.92,26161896,99.92,0,0,0.2,571.77,2819.96,26161897,99.93,0,0,0.2,571.76,2819.98,26161898,99.9,0,0.01,0.19,571.76,2819.97,26161899,99.63,0,0,0.35,572.59,2819.11,26161900,99.68,0,0,0.71,572.49,2819.22,26161901,99.93,0,0,0.18,571.59,2820.11,26161902,99.92,0,0,0.16,571.56,2820.13,26161903,99.95,0,0,0.17,571.54,2820.14,26161904,99.92,0.01,0.01,0.18,571.53,2820.17,26161905,99.77,0,0,0.68,571.76,2819.96,26161906,99.93,0,0,0.17,571.35,2820.36,26161907,99.92,0,0,0.17,571.34,2820.37,26161908,99.91,0,0,0.17,571.31,2820.39,26161909,99.93,0,0,0.16,571.29,2820.41,26161910,99.73,0,0,0.75,571.94,2819.78,26161911,99.92,0,0,0.19,571.26,2820.44,26161912,99.91,0,0,0.19,571.23,2820.46,26161913,99.93,0,0,0.2,571.18,2820.49,26161914,99.93,0,0,0.21,571.17,2820.49,26161915,99.75,0,0,0.73,572.05,2819.63,26161916,99.93,0,0,0.16,571.83,2819.84,26161917,99.93,0,0,0.17,571.8,2819.87,26161918,99.91,0,0,0.2,571.82,2819.84,26161919,99.92,0,0,0.18,571.52,2820.15,26161920,99.64,0,0,0.6,572.11,2819.57,26161921,99.94,0,0,0.29,571.73,2819.93,26161922,99.94,0,0,0.18,571.72,2819.94,26161923,99.93,0,0,0.17,571.69,2819.96,26161924,99.93,0,0,0.17,571.68,2819.98,26161925,99.75,0,0,0.62,571.57,2820.1,26161926,99.93,0,0,0.32,570.92,2820.75,26161927,99.91,0,0,0.16,570.96,2820.7,26161928,99.91,0,0,0.18,571.06,2820.59,26161929,99.89,0,0,0.29,571.76,2819.87,26161930,99.73,0,0,0.6,572.11,2819.53,26161931,99.92,0,0,0.31,571.75,2819.89,26161932,99.94,0,0,0.17,571.71,2819.92,26161933,99.93,0,0,0.16,571.7,2819.92,26161934,99.89,0,0,0.16,571.47,2820.2,26161935,99.74,0,0,0.61,572.43,2819.27,26161936,99.92,0,0,0.31,571.66,2820.03,26161937,99.93,0,0,0.22,571.65,2820.03,26161938,99.93,0,0,0.17,571.62,2820.05,26161939,99.94,0.01,0.01,0.16,571.74,2819.93,26161940,99.85,0,0,0.31,571.78,2819.91,26161941,99.75,0,0,0.59,572.14,2819.53,26161942,99.95,0,0,0.16,571.49,2820.18,26161943,99.92,0,0,0.17,571.46,2820.21,26161944,99.93,0,0,0.19,571.44,2820.21,26161945,99.83,0,0,0.36,570.5,2821.16,26161946,99.8,0,0,0.64,570.95,2820.72,26161947,99.94,0,0,0.16,570.4,2821.26,26161948,99.91,0,0.02,0.2,570.5,2821.16,26161949,99.91,0,0,0.17,570.51,2821.14,26161950,99.84,0,0.01,0.33,570.5,2821.16,26161951,99.75,0,0,0.57,570.69,2820.98,26161952,99.9,0,0,0.17,570.19,2821.47,26161953,99.91,0,0,0.19,570.18,2821.48,26161954,99.93,0,0,0.16,570.15,2821.5,26161955,99.88,0,0,0.35,571.6,2820.07,26161956,99.81,0,0,0.56,571.44,2820.22,26161957,99.87,0,0,0.2,570.55,2821.1,26161958,99.89,0,0,0.19,570.55,2821.1,26161959,99.84,0,0,0.31,571.46,2820.16,26161960,99.29,0,0,0.37,571.73,2819.9,26161961,95.18,0.26,0.01,77.86,585.71,2806.26,26161962,99.84,0,0,179.41,574.16,2816.97,26161963,99.92,0,0,0.16,574.15,2816.98,26161964,99.89,0,0,0.17,574.12,2817.01,26161965,99.88,0,0,0.33,574.13,2817.01,26161966,99.81,0,0,0.64,574.14,2817,26161967,99.9,0,0,0.14,571.67,2819.49,26161968,99.83,0,0,0.16,571.65,2819.51,26161969,99.87,0,0,0.18,571.63,2819.52,26161970,99.88,0,0,0.33,571.88,2819.29,26161971,99.8,0,0,0.37,572.58,2818.59,26161972,99.88,0,0,0.39,572.06,2819.14,26161973,99.9,0,0,0.17,572.04,2819.15,26161974,99.89,0,0,0.16,572.01,2819.17,26161975,99.85,0,0,0.35,572.02,2819.18,26161976,99.89,0,0,0.17,571.99,2819.2,26161977,99.7,0,0,0.61,571.22,2819.97,26161978,99.81,0.01,0.01,0.24,570.78,2820.41,26161979,99.86,0,0,0.22,571.44,2819.73,26161980,99.79,0,0,0.35,571.8,2819.39,26161981,99.91,0,0,0.19,571.78,2819.4,26161982,99.75,0,0,0.58,571.38,2819.8,26161983,99.87,0,0,0.17,570.74,2820.43,26161984,99.92,0,0,0.18,570.73,2820.43,26161985,99.87,0,0,0.38,571.94,2819.24,26161986,99.88,0,0,0.17,571.91,2819.26,26161987,99.75,0,0,0.59,571.35,2819.83,26161988,99.84,0,0,0.14,570.64,2820.53,26161989,99.67,0,0,0.27,571.85,2819.29,26161990,99.75,0,0,0.35,571.08,2820.08,26161991,99.85,0,0,0.18,571.04,2820.11,26161992,99.73,0,0,0.57,571.94,2819.21,26161993,99.87,0,0,0.19,571.99,2819.16,26161994,99.85,0,0,0.15,571.96,2819.19,26161995,99.77,0,0,0.33,571.95,2819.22,26161996,99.81,0,0,0.15,571.92,2819.25,26161997,99.72,0,0,0.62,571.86,2819.3,26161998,99.85,0,0,0.18,570.88,2820.27,26161999,98.18,0.01,0.01,0.18,570.87,2820.28,26162000,99.79,0,0,0.35,570.1,2821.07,26162001,99.85,0,0,0.18,570.04,2821.13,26162002,99.7,0,0,0.58,570.68,2820.48,26162003,99.88,0,0,0.18,571.22,2819.93,26162004,99.85,0,0,0.18,571.21,2819.94,26162005,99.82,0,0,0.36,571.69,2819.48,26162006,99.85,0,0,0.18,571.68,2819.48,26162007,99.69,0,0,0.4,572.38,2818.78,26162008,99.86,0,0,0.37,571.63,2819.53,26162009,99.87,0,0,0.14,571.62,2819.54,26162010,99.83,0,0,0.36,571.63,2819.54,26162011,99.85,0,0,0.17,571.73,2819.44,26162012,99.87,0,0,0.14,571.77,2819.39,26162013,99.73,0,0,0.55,571.71,2819.45,26162014,99.84,0,0,0.14,570.98,2820.17,26162015,99.8,0,0,0.33,571.23,2819.93,26162016,99.83,0,0,0.15,571.2,2819.96,26162017,99.82,0,0,0.16,571.18,2819.98,26162018,99.71,0,0,0.55,571.82,2819.34,26162019,99.81,0,0,0.27,571.86,2819.27,26162020,99.7,0,0,0.35,571.88,2819.27,26162021,99.87,0,0,0.15,571.85,2819.29,26162022,99.87,0,0,0.14,571.96,2819.18,26162023,99.72,0,0,0.55,572.47,2818.66,26162024,99.87,0,0,0.16,572.21,2818.92,26162025,99.8,0,0,0.41,572.22,2818.93,26162026,99.84,0,0,0.16,572.19,2818.95,26162027,99.85,0,0,0.15,572.17,2818.97,26162028,99.72,0,0,0.49,572.51,2818.63,26162029,99.85,0,0,0.21,572.13,2819,26162030,99.78,0,0,0.31,572.12,2819.02,26162031,99.83,0.03,0,0.18,572.1,2819.04,26162032,99.86,0,0,0.14,572.16,2818.98,26162033,99.71,0,0,0.57,572.57,2818.56,26162034,99.85,0,0,0.18,572.34,2818.78,26162035,99.78,0,0,0.34,572.1,2819.04,26162036,99.85,0,0,0.14,572.07,2819.07,26162037,99.87,0,0,0.15,572.26,2818.87,26162038,99.7,0,0,0.52,572.62,2818.5,26162039,99.86,0,0,0.2,571.96,2819.15,26162040,99.78,0,0,0.32,572.26,2818.87,26162041,99.85,0,0,0.16,572.19,2818.94,26162042,99.86,0,0,0.14,572.18,2818.94,26162043,99.73,0,0,0.38,572.86,2818.26,26162044,99.85,0,0,0.37,572.14,2818.97,26162045,99.78,0.01,0.01,0.38,572.46,2818.67,26162046,99.85,0,0,0.18,572.49,2818.63,26162047,99.87,0,0,0.16,572.47,2818.65,26162048,99.86,0,0,0.14,572.45,2818.66,26162049,99.66,0,0,0.68,573.09,2818,26162050,99.75,0,0,0.3,571.72,2819.39,26162051,99.84,0,0,0.14,571.66,2819.45,26162052,99.85,0,0,0.16,571.64,2819.46,26162053,99.86,0,0,0.14,571.19,2819.91,26162054,99.72,0,0,0.55,571.49,2819.61,26162055,99.8,0,0,0.3,571.6,2819.52,26162056,99.85,0,0,0.15,571.64,2819.47,26162057,99.87,0,0,0.21,571.75,2819.36,26162058,99.86,0,0,0.14,571.72,2819.38,26162059,99.71,0.01,0.01,0.56,572.05,2819.05,26162060,99.38,0,0,0.31,571.94,2819.18,26162061,99.85,0,0,0.14,571.91,2819.2,26162062,99.85,0,0,0.14,571.9,2819.2,26162063,99.82,0,0,0.16,571.71,2819.39,26162064,99.71,0,0,0.56,571.96,2819.14,26162065,99.82,0,0,0.32,571.61,2819.5,26162066,99.85,0,0,0.17,571.64,2819.47,26162067,99.87,0,0,0.14,571.75,2819.36,26162068,99.86,0,0,0.17,571.71,2819.38,26162069,99.74,0,0,0.59,572.47,2818.63,26162070,99.82,0,0,0.39,571.94,2819.17,26162071,99.86,0,0,0.17,571.93,2819.18,26162072,99.87,0,0,0.14,571.9,2819.2,26162073,99.88,0,0,0.15,571.88,2819.22,26162074,99.73,0,0,0.44,572.34,2818.76,26162075,99.83,0,0,0.46,571.87,2819.24,26162076,99.87,0,0,0.14,571.84,2819.27,26162077,99.87,0,0,0.15,571.83,2819.28,26162078,99.86,0,0,0.14,571.91,2819.19,26162079,99.67,0,0,0.43,572.31,2818.76,26162080,99.8,0,0,0.51,571.96,2819.12,26162081,99.15,0,0,0.16,571.94,2819.14,26162082,99.84,0,0,0.14,571.93,2819.15,26162083,99.83,0,0,0.17,571.89,2819.18,26162084,99.88,0,0,0.14,571.88,2819.2,26162085,99.66,0,0,0.73,572.03,2819.1,26162086,99.88,0,0,0.15,571.63,2819.49,26162087,99.86,0,0,0.16,571.6,2819.52,26162088,99.88,0,0,0.14,571.58,2819.53,26162089,99.87,0,0,0.15,571.63,2819.48,26162090,99.67,0,0,0.73,571.84,2819.29,26162091,99.86,0,0,0.14,571.22,2819.9,26162092,99.86,0,0,0.16,571.2,2819.92,26162093,99.85,0,0,0.14,571.18,2819.93,26162094,99.85,0,0,0.14,571.16,2819.95,26162095,99.67,0,0,0.71,571.55,2819.57,26162096,99.87,0,0,0.16,570.89,2820.23,26162097,99.83,0,0,0.14,570.86,2820.26,26162098,99.83,0,0,0.16,570.87,2820.23,26162099,99.83,0,0,0.17,571.55,2819.55,26162100,99.56,0,0,0.56,571.37,2819.74,26162101,99.87,0,0,0.29,570.74,2820.38,26162102,99.85,0,0,0.16,570.73,2820.38,26162103,99.86,0,0,0.14,570.72,2820.39,26162104,99.86,0,0,0.15,570.69,2820.41,26162105,99.68,0,0,0.67,572.34,2818.78,26162106,99.86,0,0,0.19,571.91,2819.21,26162107,99.88,0,0,0.16,571.89,2819.22,26162108,99.87,0,0,0.14,571.87,2819.24,26162109,99.82,0,0,0.27,571.83,2819.26,26162110,99.68,0,0,0.7,572.02,2819.08,26162111,99.84,0,0,0.16,571.8,2819.3,26162112,99.85,0.01,0,0.14,571.99,2819.1,26162113,99.83,0,0,0.16,571.91,2819.17,26162114,99.85,0,0,0.14,571.88,2819.2,26162115,99.68,0,0,0.78,572.25,2818.84,26162116,99.86,0,0,0.13,571.85,2819.23,26162117,99.86,0,0,0.18,571.84,2819.24,26162118,99.85,0,0,0.16,571.81,2819.27,26162119,99.86,0.01,0.01,0.14,571.82,2819.25,26162120,99.28,0,0,0.34,572.58,2818.51,26162121,99.6,0,0,0.58,572.23,2818.86,26162122,99.86,0,0,0.15,572.19,2818.89,26162123,99.86,0,0,0.17,572.17,2818.91,26162124,99.84,0,0,0.15,572.15,2818.93,26162125,99.77,0,0,0.32,571.66,2819.42,26162126,99.71,0,0,0.58,572.74,2818.34,26162127,99.84,0,0,0.17,572.11,2818.97,26162128,99.86,0,0,0.15,572.08,2818.99,26162129,99.86,0,0,0.15,572.07,2819,26162130,99.8,0,0,0.35,572.31,2818.77,26162131,99.71,0,0,0.58,571.95,2819.13,26162132,99.87,0,0,0.14,571.23,2819.85,26162133,99.87,0,0,0.14,571.2,2819.88,26162134,99.83,0,0,0.14,571.19,2819.88,26162135,99.8,0,0,0.32,571.92,2819.17,26162136,99.7,0,0,0.54,572.42,2818.66,26162137,99.86,0,0,0.17,572.12,2818.96,26162138,99.86,0,0,0.14,572.1,2818.97,26162139,99.81,0,0,0.27,572.1,2818.95,26162140,99.81,0,0,0.36,572.08,2818.99,26162141,99.33,0,0,0.59,572.42,2818.64,26162142,99.9,0,0,0.15,572.05,2819,26162143,99.91,0,0,0.15,572.21,2818.84,26162144,99.92,0,0,0.15,572.18,2818.88,26162145,99.85,0,0,0.33,571.45,2819.63,26162146,99.81,0,0,0.56,571.85,2819.22,26162147,99.94,0,0,0.14,571.63,2819.44,26162148,99.93,0,0,0.15,571.63,2819.44,26162149,99.93,0,0,0.18,571.61,2819.45,26162150,99.86,0,0,0.35,572.32,2818.76,26162151,99.83,0,0,0.47,572.97,2818.1,26162152,99.95,0,0,0.3,572.05,2819.02,26162153,99.95,0,0,0.14,572.09,2818.98,26162154,99.96,0,0,0.15,572.2,2818.86,26162155,99.86,0,0,0.32,571.95,2819.12,26162156,99.95,0,0,0.14,571.94,2819.14,26162157,99.79,0,0,0.62,572.7,2818.36,26162158,99.93,0,0,0.14,572.14,2818.93,26162159,99.94,0,0,0.2,572.11,2818.95,26162160,99.89,0,0,0.39,572.34,2818.73,26162161,99.96,0,0,0.13,572.33,2818.73,26162162,99.79,0,0,0.62,572.75,2818.31,26162163,99.93,0,0,0.14,572.06,2819.03,26162164,99.93,0,0,0.16,572.02,2819.07,26162165,99.88,0,0,0.32,572.11,2818.99,26162166,99.92,0,0,0.13,572.18,2818.92,26162167,99.82,0,0,0.54,572.36,2818.74,26162168,99.95,0,0,0.16,571.9,2819.2,26162169,99.85,0,0,0.31,571.62,2819.45,26162170,99.89,0,0,0.33,572.36,2818.73,26162171,99.95,0,0,0.2,572.34,2818.75,26162172,99.8,0,0,0.61,572.55,2818.53,26162173,99.93,0,0.01,0.18,572.04,2819.04,26162174,99.96,0,0,0.16,572.01,2819.09,26162175,99.91,0,0,0.34,572.34,2818.79,26162176,99.93,0,0,0.17,572.43,2818.7,26162177,99.79,0,0,0.64,572.97,2818.15,26162178,99.96,0,0,0.18,572.39,2818.73,26162179,99.94,0.01,0.01,0.15,572.36,2818.76,26162180,99.9,0,0,0.33,572.61,2818.52,26162181,99.94,0,0,0.14,572.58,2818.54,26162182,99.82,0,0,0.55,572.99,2818.13,26162183,99.93,0,0,0.19,572.05,2819.07,26162184,99.93,0,0,0.16,572.04,2819.07,26162185,99.89,0,0,0.34,572.28,2818.85,26162186,99.95,0,0,0.15,572.35,2818.77,26162187,99.77,0,0,0.44,572.87,2818.25,26162188,99.95,0,0,0.29,572.45,2818.67,26162189,99.96,0,0,0.14,572.42,2818.7,26162190,99.89,0,0,0.34,572.67,2818.46,26162191,99.94,0,0,0.18,572.64,2818.48,26162192,99.93,0,0,0.15,572.63,2818.49,26162193,99.8,0,0,0.61,572.72,2818.4,26162194,99.91,0,0,0.15,572.34,2818.77,26162195,99.88,0,0,0.34,572.34,2818.79,26162196,99.93,0,0,0.14,572.32,2818.8,26162197,99.93,0,0,0.14,572.3,2818.82,26162198,99.79,0,0,0.56,572.7,2818.42,26162199,99.86,0,0,0.35,572.23,2818.85,26162200,99.88,0,0,0.32,571.54,2819.56,26162201,99.68,0,0,0.17,571.43,2819.66,26162202,99.59,0,0,0.15,571.4,2819.69,26162203,99.8,0,0,0.55,571.95,2819.13,26162204,99.95,0,0,0.15,571.61,2819.47,26162205,99.88,0,0,0.35,571.61,2819.48,26162206,99.92,0,0,0.16,571.58,2819.5,26162207,99.91,0,0,0.14,571.56,2819.53,26162208,99.8,0,0,0.55,572.81,2818.29,26162209,99.91,0,0,0.16,570.46,2820.63,26162210,99.82,0,0,0.31,570,2821.11,26162211,99.92,0,0,0.16,569.96,2821.15,26162212,99.95,0,0,0.2,569.94,2821.16,26162213,99.78,0,0,0.42,570.27,2820.83,26162214,99.95,0,0,0.29,569.9,2821.19,26162215,99.9,0,0,0.32,570.14,2820.97,26162216,99.95,0,0,0.16,570.13,2820.98,26162217,99.95,0,0,0.15,570.11,2821,26162218,99.75,0,0,0.51,570.34,2820.76,26162219,99.9,0,0,0.28,569.59,2821.5,26162220,99.24,0,0,8.32,569.69,2818.22,26162221,99.94,0,0,0.18,569.67,2818.19,26162222,99.95,0,0,0.14,569.66,2818.2,26162223,99.81,0,0,0.5,570.05,2817.8,26162224,99.93,0,0,0.2,569.87,2817.98,26162225,99.9,0,0,0.32,570.34,2817.55,26162226,99.93,0,0,0.14,570.34,2817.55,26162227,99.94,0,0,0.16,570.31,2817.57,26162228,99.78,0,0,0.55,570.96,2816.92,26162229,99.88,0,0,0.3,570.04,2817.82,26162230,99.89,0,0,0.38,569.79,2818.08,26162231,99.95,0,0,0.18,569.82,2818.04,26162232,99.94,0,0,0.19,569.93,2817.93,26162233,99.92,0,0,0.18,569.9,2817.96,26162234,99.81,0,0,0.58,570.85,2817,26162235,99.83,0,0,0.37,569.88,2817.98,26162236,99.94,0,0,0.18,569.85,2818.01,26162237,99.93,0,0,0.22,569.84,2818.02,26162238,99.92,0,0,0.18,569.81,2818.04,26162239,99.76,0.01,0.01,0.6,570.37,2817.48,26162240,99.89,0,0,0.37,570.04,2817.83,26162241,99.67,0,0,0.18,569.8,2818.06,26162242,99.93,0,0,0.15,569.9,2817.96,26162243,99.96,0,0,0.14,569.9,2817.95,26162244,99.8,0,0,0.55,570.23,2817.62,26162245,99.85,0.02,0.08,0.39,569.94,2817.81,26162246,99.93,0,0,0.16,569.89,2817.84,26162247,99.93,0,0,0.14,569.94,2817.78,26162248,99.94,0,0,0.16,570.05,2817.67,26162249,99.81,0,0,0.5,570.47,2817.24,26162250,99.85,0,0,0.36,570.27,2817.46,26162251,99.94,0,0,0.14,570.24,2817.49,26162252,99.93,0,0,0.16,570.22,2817.5,26162253,99.93,0,0,0.18,570.18,2817.54,26162254,99.79,0,0,0.41,570.52,2817.19,26162255,99.89,0,0,0.46,570.17,2817.56,26162256,99.93,0,0,0.16,570.18,2817.55,26162257,99.94,0,0,0.14,570.3,2817.43,26162258,99.92,0,0,0.16,570.28,2817.44,26162259,99.76,0,0,0.71,570.78,2816.91,26162260,99.84,0,0,0.37,570.02,2817.69,26162261,99.94,0.01,0.01,0.16,569.97,2817.74,26162262,99.91,0,0,0.13,569.89,2817.81,26162263,99.94,0,0,0.18,569.92,2817.77,26162264,99.79,0,0,0.43,570.4,2817.28,26162265,99.9,0,0,0.45,570.27,2817.44,26162266,99.94,0,0,0.16,570.25,2817.45,26162267,99.93,0,0,0.14,570.22,2817.47,26162268,99.95,0,0,0.17,570.21,2817.48,26162269,99.95,0,0,0.17,570.18,2817.5,26162270,99.77,0,0,0.73,570.53,2817.17,26162271,99.95,0,0,0.16,570.17,2817.54,26162272,99.92,0,0,0.16,570.15,2817.55,26162273,99.95,0,0,0.18,570.13,2817.57,26162274,99.93,0,0,0.16,570.11,2817.58,26162275,99.75,0,0,0.73,570.68,2817.02,26162276,99.95,0,0,0.17,570.28,2817.42,26162277,99.91,0,0,0.17,570.26,2817.44,26162278,99.93,0,0,0.17,570.22,2817.47,26162279,99.9,0,0,0.2,569.99,2817.7,26162280,99.75,0,0,0.76,570.73,2816.96,26162281,99.94,0,0,0.18,570.43,2817.26,26162282,99.92,0,0,0.16,570.4,2817.29,26162283,99.93,0,0,0.17,570.39,2817.29,26162284,99.94,0,0,0.17,570.36,2817.32,26162285,99.74,0,0,0.67,570.86,2816.84,26162286,99.95,0,0,0.21,570.65,2817.04,26162287,99.94,0,0,0.16,570.76,2816.93,26162288,99.91,0,0,0.18,570.73,2816.95,26162289,99.85,0,0,0.27,570.24,2817.42,26162290,99.74,0,0,0.58,570.57,2817.11,26162291,99.95,0,0,0.3,570.21,2817.46,26162292,99.94,0,0,0.17,570.18,2817.49,26162293,99.94,0,0,0.17,570.17,2817.49,26162294,99.93,0,0,0.17,570.15,2817.5,26162295,99.72,0,0,0.57,570.76,2816.91,26162296,99.94,0,0,0.3,570.37,2817.3,26162297,99.92,0,0,0.24,570.36,2817.3,26162298,99.93,0,0,0.17,570.35,2817.32,26162299,99.93,0.01,0.01,0.19,570.45,2817.2,26162300,99.75,0,0,0.5,571,2816.67,26162301,99.95,0,0,0.39,569.72,2817.95,26162302,99.96,0,0,0.17,569.71,2817.95,26162303,99.96,0,0,0.17,569.68,2817.98,26162304,99.9,0,0,0.15,569.68,2817.98,26162305,99.73,0,0,0.3,569.43,2818.25,26162306,99.79,0,0,0.52,570.64,2817.02,26162307,99.9,0.01,0.01,0.16,570.38,2817.28,26162308,99.91,0,0,0.18,570.43,2817.22,26162309,99.93,0,0,0.16,570.41,2817.24,26162310,99.9,0,0,0.28,570.64,2817.02,26162311,99.81,0,0,0.54,570.54,2817.12,26162312,99.93,0,0,0.17,570.11,2817.55,26162313,99.95,0,0,0.14,570.09,2817.56,26162314,99.95,0,0,0.15,570.07,2817.58,26162315,99.85,0,0,0.27,570.43,2817.24,26162316,99.8,0,0,0.55,570.14,2817.52,26162317,99.9,0,0,0.16,569.52,2818.13,26162318,99.93,0,0,0.2,569.49,2818.16,26162319,99.83,0,0,0.27,570.44,2817.19,26162320,99.89,0,0,0.28,570.69,2816.96,26162321,99.82,0,0,0.57,570.49,2817.15,26162322,99.93,0,0,0.15,569.65,2817.98,26162323,99.93,0,0,0.18,569.63,2818.01,26162324,99.93,0,0,0.15,569.61,2818.04,26162325,99.89,0,0,0.3,570.34,2817.32,26162326,95.12,0.29,0.01,78.46,582.91,2805.01,26162327,99.83,0,0,179.11,572.94,2814.22,26162328,99.94,0,0,0.15,572.93,2814.22,26162329,99.95,0,0,0.14,572.9,2814.25,26162330,99.84,0,0,0.27,573.16,2814.01,26162331,99.79,0,0.01,0.41,572.85,2814.32,26162332,99.94,0,0,0.33,570.44,2816.76,26162333,99.93,0,0,0.14,570.42,2816.77,26162334,99.93,0,0,0.15,570.4,2816.79,26162335,99.88,0,0,0.28,570.42,2816.79,26162336,99.8,0,0,0.55,570.96,2816.24,26162337,99.96,0,0,0.14,570.78,2816.42,26162338,99.93,0,0,0.15,570.77,2816.42,26162339,99.93,0,0,0.18,570.52,2816.67,26162340,99.79,0,0,0.28,570.34,2816.85,26162341,99.82,0,0,0.34,570.58,2816.61,26162342,99.93,0,0,0.38,570.45,2816.74,26162343,99.93,0,0,0.14,570.43,2816.76,26162344,99.92,0,0,0.14,570.41,2816.77,26162345,99.84,0,0,0.27,570.65,2816.55,26162346,99.93,0,0,0.17,570.62,2816.57,26162347,99.82,0,0,0.59,570.15,2817.04,26162348,99.94,0,0,0.14,569.79,2817.4,26162349,99.83,0,0,0.27,570.72,2816.46,26162350,99.86,0,0,0.27,570.76,2816.44,26162351,99.94,0,0,0.14,570.73,2816.46,26162352,99.8,0,0,0.57,571.2,2815.99,26162353,99.93,0,0,0.14,570.2,2816.98,26162354,99.9,0,0,0.15,570.17,2817.01,26162355,99.9,0,0,0.27,570.4,2816.8,26162356,99.9,0,0,0.16,570.39,2816.8,26162357,99.78,0,0,0.52,571.12,2816.07,26162358,99.95,0,0,0.19,570.61,2816.57,26162359,99.93,0.01,0.01,0.16,570.79,2816.39,26162360,99.92,0,0,0.28,570.79,2816.41,26162361,99.93,0,0,0.14,570.77,2816.44,26162362,99.83,0,0,0.55,570.84,2816.37,26162363,99.94,0,0,0.15,569.99,2817.21,26162364,99.95,0,0,0.17,569.97,2817.22,26162365,99.89,0,0,0.27,570.94,2816.27,26162366,99.93,0,0,0.14,570.94,2816.27,26162367,99.82,0,0,0.42,571.27,2815.94,26162368,99.94,0,0,0.28,570.9,2816.3,26162369,99.95,0,0,0.15,570.88,2816.32,26162370,99.92,0,0,0.28,571.04,2816.17,26162371,99.93,0,0,0.14,571.03,2816.18,26162372,99.83,0,0,0.51,571.19,2816.02,26162373,99.95,0,0,0.24,570.02,2817.18,26162374,99.94,0,0,0.15,569.99,2817.21,26162375,99.9,0,0,0.32,570.98,2816.24,26162376,99.96,0,0,0.18,570.95,2816.26,26162377,99.82,0,0,0.33,571.6,2815.61,26162378,99.91,0,0,0.38,571.16,2816.04,26162379,99.86,0,0,0.29,570.93,2816.25,26162380,99.8,0,0,0.33,569.93,2817.26,26162381,99.95,0,0,0.15,569.93,2817.25,26162382,99.94,0,0,0.16,570.06,2817.13,26162383,99.08,0,0,0.57,571.39,2815.79,26162384,99.93,0,0,0.14,570.99,2816.18,26162385,99.86,0,0,0.28,570.74,2816.44,26162386,99.91,0,0,0.16,569.95,2817.23,26162387,99.94,0,0,0.17,569.71,2817.46,26162388,99.81,0,0,0.55,570.37,2816.8,26162389,99.92,0,0,0.14,570.17,2817,26162390,99.88,0.01,0.01,0.3,570.26,2816.93,26162391,99.93,0,0,0.14,570.24,2816.94,26162392,99.93,0,0,0.18,570.2,2816.97,26162393,99.8,0,0,0.57,569.89,2817.28,26162394,99.93,0,0,0.15,569.18,2817.99,26162395,99.88,0,0,0.32,569.72,2817.46,26162396,99.92,0,0,0.17,569.65,2817.53,26162397,99.95,0,0,0.17,569.65,2817.53,26162398,99.78,0,0,0.54,570.71,2816.46,26162399,99.9,0,0,0.23,570.1,2817.06,26162400,99.8,0,0,0.3,570.27,2816.92,26162401,99.94,0,0,0.14,570.26,2816.91,26162402,99.92,0,0,0.15,570.23,2816.94,26162403,99.82,0,0,0.54,570.86,2816.31,26162404,99.95,0,0,0.2,570.2,2816.97,26162405,99.85,0,0,0.27,570.45,2816.73,26162406,99.93,0,0,0.16,570.42,2816.76,26162407,99.91,0,0,0.15,570.42,2816.76,26162408,99.76,0,0,0.42,570.82,2816.35,26162409,99.9,0,0,0.4,570.15,2817,26162410,99.87,0,0,0.34,570.15,2817.01,26162411,99.93,0,0,0.14,570.18,2816.98,26162412,99.9,0,0,0.16,570.29,2816.87,26162413,99.82,0,0,0.42,570.57,2816.58,26162414,99.94,0,0,0.28,570,2817.16,26162415,99.9,0,0,0.29,570,2817.18,26162416,99.91,0,0,0.16,569.98,2817.19,26162417,99.92,0,0,0.19,569.96,2817.22,26162418,99.92,0,0,0.16,569.93,2817.25,26162419,99.78,0.01,0.01,0.6,569.78,2817.4,26162420,99.89,0,0,0.32,570.39,2816.81,26162421,99.93,0,0,0.14,570.4,2816.8,26162422,99.65,0,0,0.13,570.36,2816.83,26162423,99.97,0,0,0.19,570.42,2816.77,26162424,99.8,0,0,0.57,570.84,2816.34,26162425,99.88,0,0,0.3,570.27,2816.93,26162426,99.92,0,0,0.16,570.24,2816.95,26162427,99.95,0,0,0.14,570.23,2816.96,26162428,99.93,0,0,0.14,570.2,2816.98,26162429,99.82,0,0,0.59,569.9,2817.28,26162430,99.89,0,0,0.28,569.93,2817.27,26162431,99.93,0,0,0.14,569.9,2817.29,26162432,99.95,0,0,0.16,569.9,2817.29,26162433,99.91,0,0,0.14,569.86,2817.32,26162434,99.77,0,0,0.55,570.65,2816.52,26162435,99.85,0,0,0.29,570.32,2816.88,26162436,99.93,0,0,0.13,570.28,2816.91,26162437,99.95,0,0,0.14,570.27,2816.92,26162438,99.96,0,0,0.17,570.23,2816.95,26162439,99.75,0,0,0.52,571.05,2816.11,26162440,99.91,0,0,0.46,570.21,2816.97,26162441,99.95,0,0,0.16,570.19,2816.98,26162442,99.93,0,0,0.15,570.16,2817.01,26162443,99.92,0,0,0.14,570.15,2817.03,26162444,99.8,0,0,0.47,570.55,2816.63,26162445,99.86,0,0,0.41,570.45,2816.74,26162446,99.92,0,0,0.14,570.54,2816.65,26162447,99.93,0,0,0.16,570.52,2816.67,26162448,99.92,0,0,0.16,570.5,2816.68,26162449,99.78,0,0,0.42,570.86,2816.31,26162450,99.88,0,0,0.41,570.67,2816.53,26162451,99.95,0,0,0.13,570.65,2816.54,26162452,99.94,0,0,0.16,570.63,2816.56,26162453,99.94,0,0,0.15,570.66,2816.52,26162454,99.82,0,0,0.41,571.43,2815.75,26162455,99.9,0,0,0.4,570.82,2816.37,26162456,99.91,0,0,0.16,570.75,2816.44,26162457,99.94,0,0,0.15,570.72,2816.46,26162458,99.94,0,0,0.14,570.71,2816.47,26162459,99.93,0,0,0.18,570.49,2816.69,26162460,99.6,0,0,0.65,570.32,2816.87,26162461,99.93,0,0,0.14,569.92,2817.27,26162462,99.95,0,0,0.16,569.91,2817.28,26162463,99.92,0,0,0.16,569.88,2817.3,26162464,99.93,0,0,0.14,569.87,2817.31,26162465,99.74,0,0,0.69,570.85,2816.34,26162466,99.95,0,0,0.14,570.52,2816.66,26162467,99.93,0,0,0.14,570.5,2816.68,26162468,99.92,0,0,0.16,570.48,2816.69,26162469,99.9,0,0,0.27,570.69,2816.46,26162470,99.8,0,0,0.66,571.45,2815.72,26162471,99.92,0,0,0.16,570.67,2816.49,26162472,99.95,0,0,0.16,570.64,2816.52,26162473,99.93,0,0,0.14,570.62,2816.53,26162474,99.94,0,0,0.16,570.6,2816.55,26162475,99.74,0,0,0.68,570.74,2816.43,26162476,99.93,0,0,0.15,570.51,2816.65,26162477,99.93,0,0,0.2,570.73,2816.43,26162478,99.93,0,0,0.16,570.7,2816.46,26162479,99.92,0.01,0.01,0.15,570.67,2816.48,26162480,99.73,0,0,0.62,571.02,2816.15,26162481,99.92,0,0,0.2,570.63,2816.53,26162482,99.93,0,0,0.14,570.61,2816.55,26162483,99.83,0,0,0.18,570.59,2816.56,26162484,99.93,0,0,0.15,570.74,2816.41,26162485,99.72,0,0,0.54,571.13,2816.03,26162486,99.96,0,0,0.3,570.49,2816.67,26162487,99.91,0,0,0.15,570.46,2816.7,26162488,99.93,0,0,0.17,570.45,2816.7,26162489,99.95,0,0,0.16,570.42,2816.73,26162490,99.73,0,0,0.73,570.94,2816.23,26162491,99.93,0,0,0.18,570.64,2816.55,26162492,99.93,0,0,0.17,570.6,2816.59,26162493,99.93,0,0,0.17,570.57,2816.61,26162494,99.93,0,0,0.16,570.72,2816.46,26162495,99.76,0,0,0.71,571.1,2816.1,26162496,99.95,0,0,0.17,570.71,2816.49,26162497,99.95,0,0,0.16,570.69,2816.5,26162498,99.9,0,0,0.21,570.67,2816.52,26162499,99.88,0,0,0.29,570.91,2816.25,26162500,99.73,0,0,0.47,571.23,2815.95,26162501,99.91,0,0,0.39,570.64,2816.54,26162502,99.95,0,0,0.18,570.61,2816.56,26162503,99.94,0,0,0.16,570.6,2816.57,26162504,99.93,0,0,0.16,570.58,2816.62,26162505,99.88,0,0,0.31,571.02,2816.2,26162506,99.78,0,0,0.64,571.41,2815.69,26162507,99.96,0,0,0.17,570.87,2816.23,26162508,99.92,0,0,0.43,570.58,2816.5,26162509,99.93,0,0,0.18,570.31,2816.76,26162510,99.86,0,0,0.3,571.09,2816,26162511,99.79,0,0,0.57,571.2,2815.89,26162512,99.9,0,0,0.18,570.75,2816.33,26162513,99.9,0,0,0.15,570.74,2816.35,26162514,99.92,0,0,0.16,570.72,2816.38,26162515,99.79,0,0,0.3,571.03,2816.08,26162516,99.76,0,0,0.52,571.05,2816.05,26162517,99.9,0,0,0.2,570.38,2816.72,26162518,99.88,0,0,0.16,570.35,2816.74,26162519,99.85,0,0,0.18,570.32,2816.77,26162520,99.83,0,0,0.3,570.1,2817.01,26162521,99.74,0,0,0.59,570.4,2816.71,26162522,99.94,0,0,0.2,570.04,2817.06,26162523,99.91,0,0,0.16,570.01,2817.08,26162524,99.88,0,0,0.16,569.99,2817.1,26162525,99.85,0,0,0.3,570.73,2816.38,26162526,99.78,0,0,0.45,571.02,2816.08,26162527,99.91,0,0,0.28,570.63,2816.46,26162528,99.86,0,0,0.15,570.62,2816.48,26162529,99.77,0,0,0.34,570.96,2815.73,26162530,99.83,0,0,0.27,570.71,2815.99,26162531,99.75,0,0,0.42,570.97,2815.73,26162532,99.88,0,0,0.28,569.93,2816.76,26162533,99.85,0,0,0.15,569.91,2816.78,26162534,99.91,0,0,0.14,569.89,2816.79,26162535,99.88,0,0,0.29,570.13,2816.57,26162536,99.7,0,0,0.37,570.44,2816.26,26162537,99.86,0,0,0.38,569.11,2817.58,26162538,99.86,0,0,0.14,569.11,2817.58,26162539,99.83,0.01,0.01,0.16,569.14,2817.54,26162540,99.79,0,0,0.29,569.51,2817.2,26162541,99.85,0,0,0.14,569.49,2817.21,26162542,99.7,0,0,0.6,569.38,2817.31,26162543,99.84,0,0,0.2,568.95,2817.73,26162544,99.85,0,0,0.14,568.91,2817.76,26162545,99.77,0,0,0.3,570.13,2816.56,26162546,99.85,0,0,0.16,570.12,2816.56,26162547,99.68,0,0,0.54,569.59,2817.09,26162548,99.85,0,0,0.16,569.1,2817.58,26162549,99.87,0,0,0.13,569.09,2817.58,26162550,99.79,0,0,0.34,569.81,2816.87,26162551,99.85,0,0,0.14,569.99,2816.69,26162552,99.72,0,0,0.59,570.9,2815.78,26162553,99.84,0,0,0.14,570.2,2816.47,26162554,99.87,0,0,0.15,570.17,2816.5,26162555,99.83,0,0,0.28,569.93,2816.75,26162556,99.86,0,0,0.17,569.87,2816.82,26162557,99.73,0,0,0.6,570.38,2816.3,26162558,99.87,0,0,0.14,569.93,2816.74,26162559,99.79,0,0,0.29,570.16,2816.48,26162560,99.79,0,0,0.3,570.14,2816.53,26162561,99.85,0,0,0.14,570.13,2816.53,26162562,99.71,0,0,0.5,569.99,2816.66,26162563,99.87,0,0,0.19,568.86,2817.79,26162564,99.88,0,0,0.13,568.82,2817.82,26162565,98.58,0,0,0.31,570.31,2816.36,26162566,99.88,0,0,0.14,570.31,2816.35,26162567,99.73,0,0,0.45,570.43,2816.23,26162568,99.85,0,0,0.23,569.22,2817.44,26162569,99.87,0,0,0.16,569.2,2817.45,26162570,99.82,0,0,0.29,570.39,2816.28,26162571,99.84,0,0,0.16,570.37,2816.29,26162572,99.72,0,0,0.36,570.7,2815.96,26162573,99.85,0,0,0.36,570.33,2816.32,26162574,99.87,0,0,0.14,570.31,2816.34,26162575,99.82,0,0,0.31,570.07,2816.6,26162576,99.86,0,0,0.13,570.04,2816.62,26162577,99.85,0,0,0.17,570.12,2816.53,26162578,99.71,0,0,0.57,570.78,2815.87,26162579,99.83,0,0,0.19,570.26,2816.39,26162580,99.79,0,0,0.29,569.95,2816.71,26162581,99.85,0,0,0.14,569.92,2816.74,26162582,99.86,0,0,0.13,569.9,2816.75,26162583,99.73,0,0,0.59,570,2816.64,26162584,99.87,0,0,0.14,569.37,2817.28,26162585,99.78,0,0,0.32,570.57,2816.09,26162586,99.85,0,0,0.16,570.58,2816.08,26162587,99.87,0,0,0.14,570.55,2816.1,26162588,99.73,0,0,0.58,570.82,2815.82,26162589,99.8,0,0,0.29,570.71,2815.9,26162590,99.79,0,0,0.33,570.48,2816.14,26162591,99.86,0,0,0.15,570.44,2816.18,26162592,99.87,0,0,0.16,570.42,2816.19,26162593,99.7,0,0,0.42,570.8,2815.81,26162594,99.85,0,0,0.28,570.38,2816.24,26162595,99.76,0,0,0.32,570.62,2816.02,26162596,99.85,0,0,0.15,570.61,2816.02,26162597,99.83,0,0,0.2,570.09,2816.54,26162598,99.72,0.01,0.01,0.5,570.6,2816.02,26162599,99.84,0.01,0.01,0.2,569.38,2817.24,26162600,99.82,0,0,0.28,570.68,2815.95,26162601,99.85,0,0,0.14,570.58,2816.04,26162602,99.85,0,0,0.16,570.57,2816.05,26162603,99.73,0,0,0.4,570.86,2815.76,26162604,99.85,0,0,0.29,570.28,2816.33,26162605,98.71,0,0,15.47,571.91,2814.51,26162606,99.84,0,0,0.15,569.75,2816.18,26162607,99.85,0,0,0.17,569.73,2816.2,26162608,99.72,0,0,0.4,570.16,2815.76,26162609,99.87,0,0,0.29,570.18,2815.73,26162610,99.82,0,0,0.29,570.66,2815.27,26162611,99.84,0,0,0.16,570.65,2815.27,26162612,99.86,0,0,0.13,570.62,2815.3,26162613,99.86,0,0,0.16,570.61,2815.31,26162614,99.69,0,0,0.57,570.93,2814.98,26162615,99.78,0,0,0.31,570.36,2815.57,26162616,99.83,0,0,0.14,570.34,2815.59,26162617,99.85,0,0,0.17,570.46,2815.45,26162618,99.84,0,0,0.15,570.43,2815.47,26162619,99.6,0,0,0.75,571.37,2814.51,26162620,90.86,3.26,0.01,119.49,593.83,2868.6,26162621,93.09,0.04,0.01,180.12,587.33,3113.21,26162622,99.85,0,0,0.21,575.72,3127.7,26162623,99.85,0,0,0.18,575.63,3127.73,26162624,99.7,0,0,0.65,576.1,3127.08,26162625,99.35,0,0,0.4,574.22,3128.71,26162626,99.84,0,0,0.16,571.47,3131.54,26162627,99.85,0,0,0.23,570.5,3132.48,26162628,99.85,0,0,0.14,570.42,3132.5,26162629,99.71,0,0,0.54,570.82,3132.06,26162630,99.76,0,0,0.34,570.52,3132.31,26162631,99.86,0,0,0.16,570.45,3132.32,26162632,99.85,0,0,0.14,570.43,3132.29,26162633,99.84,0,0,0.16,570.49,3132.17,26162634,99.7,0,0,0.48,570.65,3131.96,26162635,99.8,0,0,0.38,570.87,3131.7,26162636,99.84,0,0,0.18,570.76,3131.73,26162637,99.83,0,0,0.17,570.67,3131.76,26162638,99.84,0,0,0.17,570.59,3131.76,26162639,99.7,0,0,0.57,570.62,3131.68,26162640,99.76,0,0,0.36,570.01,3132.25,26162641,99.86,0,0,0.18,570.11,3132.07,26162642,99.84,0,0,0.15,570.03,3132.07,26162643,99.87,0,0,0.14,569.93,3132.1,26162644,99.71,0,0,0.41,570.81,3131.15,26162645,99.8,0,0,0.47,570.98,3130.95,26162646,99.86,0,0,0.15,570.86,3130.99,26162647,99.85,0,0,0.16,570.78,3131.02,26162648,99.85,0,0,0.16,570.7,3131.03,26162649,99.8,0,0,0.32,570.94,3130.57,26162650,99.59,0,0,0.68,570.97,3130.49,26162651,99.85,0,0,0.16,570.54,3130.85,26162652,99.83,0,0,0.14,570.45,3130.87,26162653,99.84,0.01,0.01,0.17,570.46,3130.8,26162654,99.84,0,0,0.14,570.42,3130.78,26162655,99.61,0,0,0.71,571.39,3129.76,26162656,99.85,0,0,0.14,570.99,3130.08,26162657,99.85,0,0,0.2,570.89,3130.11,26162658,99.87,0,0,0.15,570.81,3130.11,26162659,99.85,0.01,0.01,0.13,570.7,3130.14,26162660,99.64,0,0,0.7,571.51,3129.27,26162661,99.86,0,0,0.16,571,3129.71,26162662,99.83,0,0,0.14,570.92,3129.72,26162663,99.83,0,0,0.14,570.84,3129.74,26162664,99.85,0,0,0.15,570.77,3129.75,26162665,99.65,0,0,0.64,571.36,3129.12,26162666,99.85,0,0,0.21,571.11,3129.29,26162667,99.86,0,0,0.17,571.02,3129.32,26162668,99.88,0,0,0.14,570.93,3129.34,26162669,99.84,0,0,0.16,570.85,3129.35,26162670,99.67,0,0,0.76,571.15,3129.01,26162671,99.85,0,0,0.18,570.77,3129.33,26162672,99.85,0,0,0.13,570.81,3129.22,26162673,99.83,0,0,0.16,570.71,3129.25,26162674,99.85,0,0,0.15,570.66,3129.25,26162675,99.69,0,0,0.65,571.42,3128.45,26162676,99.85,0,0,0.19,570.78,3129.03,26162677,99.86,0,0,0.13,570.69,3129.06,26162678,99.87,0,0,0.16,570.64,3129.06,26162679,99.76,0,0,0.3,570.78,3128.85,26162680,99.64,0,0,0.72,570.54,3129.03,26162681,99.85,0,0,0.14,569.89,3129.6,26162682,99.86,0.01,0.03,0.14,569.79,3129.55,26162683,99.83,0,0,0.18,569.69,3129.52,26162684,99.84,0,0,0.14,569.61,3129.54,26162685,99.67,0,0,0.73,570.38,3128.72,26162686,98.44,0,0,0.14,569.95,3129.08,26162687,99.85,0,0,0.14,569.85,3129.11,26162688,99.86,0,0,0.16,569.8,3129.11,26162689,99.84,0,0,0.14,569.72,3129.12,26162690,96.55,0.25,0.01,64.15,576.9,3121.64,26162691,98.18,0,0,193.01,576.85,3122.64,26162692,99.86,0,0,0.15,572.86,3126.12,26162693,99.86,0,0,0.14,572.88,3126.04,26162694,99.86,0,0,0.14,572.81,3126.04,26162695,99.8,0,0,0.29,573.01,3125.81,26162696,99.72,0,0,0.57,570.88,3127.95,26162697,99.85,0,0,0.16,570.27,3128.53,26162698,99.88,0,0,0.14,570.22,3128.54,26162699,99.89,0,0,0.19,570.04,3128.65,26162700,99.79,0,0,0.27,570.32,3128.34,26162701,99.77,0,0,0.59,570.97,3127.63,26162702,99.89,0,0,0.14,570.17,3128.37,26162703,99.93,0,0,0.16,570.11,3128.38,26162704,99.93,0,0,0.15,570.05,3128.39,26162705,99.9,0,0,0.32,570.41,3128,26162706,99.82,0,0,0.49,570.93,3127.41,26162707,99.91,0,0,0.2,570.72,3127.55,26162708,99.9,0,0,0.14,570.63,3127.57,26162709,99.87,0,0,0.3,570.07,3128.05,26162710,99.88,0,0,0.32,570.48,3127.59,26162711,99.79,0,0,0.44,570.86,3127.14,26162712,99.93,0,0,0.24,570.58,3127.37,26162713,99.92,0,0,0.16,570.48,3127.4,26162714,99.92,0,0,0.16,570.42,3127.37,26162715,99.89,0,0,0.3,570.55,3127.19,26162716,99.8,0,0,0.44,570.49,3127.2,26162717,99.93,0.01,0.01,0.36,569.62,3128.01,26162718,99.93,0,0,0.2,569.52,3128.06,26162719,99.9,0.01,0.01,0.14,569.48,3128.08,26162720,99.9,0,0,0.3,569.44,3128.09,26162721,99.78,0,0,0.55,570.43,3127.06,26162722,99.95,0,0,0.12,570.54,3126.91,26162723,99.93,0,0,0.16,570.5,3126.91,26162724,99.94,0,0,0.14,570.6,3126.76,26162725,99.86,0,0,0.27,570.83,3126.53,26162726,99.79,0,0,0.32,571.18,3126.15,26162727,99.93,0,0,0.43,570.49,3126.79,26162728,99.92,0,0,0.18,570.44,3126.82,26162729,99.95,0,0,0.14,570.41,3126.82,26162730,99.88,0,0,0.31,570.38,3126.83,26162731,99.79,0,0,0.39,570.71,3126.48,26162732,99.94,0,0,0.35,570.77,3126.38,26162733,99.93,0,0,0.18,570.74,3126.39,26162734,99.93,0,0,0.18,570.69,3126.42,26162735,99.88,0,0,0.32,569.95,3127.14,26162736,99.9,0,0,0.18,570.04,3127.01,26162737,99.79,0,0,0.56,571,3126.01,26162738,99.93,0,0,0.14,570.67,3126.29,26162739,99.86,0,0,0.33,570.64,3126.28,26162740,99.89,0,0,0.3,570.61,3126.27,26162741,99.93,0,0,0.16,570.52,3126.32,26162742,99.8,0,0,0.58,570.92,3125.87,26162743,99.95,0,0,0.16,570.41,3126.35,26162744,99.93,0,0,0.14,570.36,3126.39,26162745,99.84,0,0,0.29,570.33,3126.4,26162746,99.93,0,0,0.14,570.36,3126.32,26162747,99.75,0.01,0.06,0.55,570.83,3125.8,26162748,99.95,0,0,0.15,570.44,3126.16,26162749,99.95,0,0,0.14,570.39,3126.18,26162750,99.85,0,0,0.29,570.63,3125.92,26162751,99.93,0,0,0.16,570.68,3125.81,26162752,99.78,0,0,0.49,570.42,3126,26162753,99.94,0,0,0.19,569.56,3126.82,26162754,99.93,0,0,0.15,569.52,3126.82,26162755,99.9,0,0,0.29,569.96,3126.37,26162756,99.92,0,0,0.19,569.92,3126.36,26162757,99.8,0,0,0.39,570.73,3125.5,26162758,99.91,0,0,0.28,570.76,3125.42,26162759,99.92,0,0,0.18,570.45,3125.7,26162760,99.87,0,0,0.29,568.99,3127.15,26162761,99.94,0,0,0.16,568.93,3127.19,26162762,99.8,0,0,0.4,569.53,3126.52,26162763,99.93,0,0,0.27,569.46,3126.55,26162764,99.93,0,0,0.15,569.43,3126.56,26162765,99.87,0,0,0.33,570.87,3125.13,26162766,99.95,0,0,0.17,570.84,3125.12,26162767,99.8,0,0,0.54,571.13,3124.79,26162768,99.95,0,0,0.14,570.71,3125.16,26162769,99.87,0,0,0.3,570.68,3125.14,26162770,99.9,0,0,0.28,570.88,3124.93,26162771,99.93,0.01,0.01,0.15,570.9,3124.88,26162772,99.82,0,0,0.32,571.44,3124.31,26162773,99.91,0,0,0.4,570.82,3124.9,26162774,99.92,0,0,0.15,570.81,3124.9,26162775,99.91,0,0,0.3,570.28,3125.41,26162776,99.94,0,0,0.15,570.24,3125.42,26162777,99.92,0,0,0.18,570.17,3125.45,26162778,99.75,0,0,0.56,571.14,3124.43,26162779,99.93,0.01,0.01,0.16,571.03,3124.52,26162780,99.87,0,0,0.3,570.76,3124.78,26162781,99.91,0,0,0.16,570.71,3124.8,26162782,99.93,0,0.02,0.17,570.61,3124.84,26162783,99.82,0,0,0.57,571.49,3123.92,26162784,99.94,0,0,0.15,571.23,3124.16,26162785,99.9,0,0,0.3,570.51,3124.88,26162786,99.96,0,0,0.16,570.46,3124.93,26162787,99.95,0,0,0.14,570.42,3124.93,26162788,99.8,0,0,0.55,571.48,3123.81,26162789,99.93,0,0,0.14,570.96,3124.28,26162790,99.82,0,0,0.28,569.77,3125.43,26162791,99.95,0,0,0.16,569.6,3125.56,26162792,99.94,0,0,0.16,569.54,3125.58,26162793,99.81,0,0,0.49,570.81,3124.29,26162794,99.94,0,0,0.2,571.18,3123.89,26162795,99.89,0,0,0.3,570.67,3124.38,26162796,99.95,0,0,0.14,570.6,3124.41,26162797,99.93,0,0,0.14,570.55,3124.43,26162798,99.83,0,0,0.4,570.95,3124.02,26162799,99.8,0,0,0.44,570.87,3124.05,26162800,99.83,0,0,0.28,570.88,3124.03,26162801,99.95,0,0,0.16,570.82,3124.05,26162802,99.94,0,0,0.14,570.79,3124.07,26162803,99.77,0,0,0.49,570.95,3123.89,26162804,99.95,0,0,0.25,569.73,3125.08,26162805,99.86,0,0,0.33,570.41,3124.38,26162806,99.95,0,0,0.14,570.35,3124.39,26162807,99.94,0,0,0.16,570.29,3124.39,26162808,99.96,0,0,0.16,570.23,3124.42,26162809,99.81,0,0,0.53,571.91,3122.7,26162810,99.9,0,0,0.32,571.13,3123.44,26162811,99.93,0,0,0.17,571.23,3123.32,26162812,99.93,0,0,0.14,571.19,3123.31,26162813,99.95,0,0,0.16,571.14,3123.32,26162814,99.79,0,0,0.54,570.84,3123.58,26162815,99.89,0,0,0.3,570.81,3123.6,26162816,99.94,0,0,0.16,570.78,3123.6,26162817,99.93,0,0,0.14,570.74,3123.63,26162818,99.95,0,0,0.14,570.71,3123.63,26162819,99.78,0,0,0.59,570.97,3123.35,26162820,99.89,0,0,0.28,570.65,3123.67,26162821,99.91,0,0,0.14,570.61,3123.69,26162822,99.95,0,0,0.17,570.58,3123.7,26162823,99.95,0,0,0.17,570.61,3123.66,26162824,99.79,0,0,0.55,571.47,3122.79,26162825,99.89,0,0,0.3,570.72,3123.56,26162826,99.94,0,0,0.14,570.66,3123.59,26162827,99.96,0,0,0.16,570.65,3123.59,26162828,99.93,0.01,0.01,0.15,570.6,3123.64,26162829,99.71,0,0,0.64,570.89,3123.32,26162830,99.91,0,0,0.33,570.1,3124.12,26162831,99.94,0,0,0.14,570.01,3124.18,26162832,99.94,0,0,0.16,570.04,3124.14,26162833,99.92,0,0,0.16,570.12,3124.04,26162834,99.81,0,0,0.56,570.57,3123.6,26162835,99.89,0,0,0.31,570.1,3124.08,26162836,99.93,0,0,0.14,570.06,3124.09,26162837,99.88,0,0,0.2,570.01,3124.13,26162838,99.94,0,0,0.14,569.98,3124.15,26162839,99.81,0.01,0.01,0.5,570.66,3123.46,26162840,99.9,0,0,0.34,570.19,3123.95,26162841,99.92,0,0,0.16,570.14,3123.97,26162842,99.93,0,0,0.14,570.18,3123.91,26162843,99.93,0,0,0.14,570.26,3123.81,26162844,99.79,0,0,0.4,570.59,3123.46,26162845,99.87,0,0,0.46,570.47,3123.58,26162846,99.95,0,0,0.14,570.39,3123.63,26162847,99.94,0,0,0.18,570.35,3123.66,26162848,99.92,0,0,0.15,570.32,3123.69,26162849,99.8,0,0,0.39,570.66,3123.34,26162850,99.86,0,0,0.44,569.33,3124.67,26162851,99.94,0,0,0.16,569.28,3124.71,26162852,99.94,0,0,0.14,569.24,3124.74,26162853,99.95,0,0,0.14,569.24,3124.73,26162854,99.93,0,0,0.14,569.39,3124.55,26162855,99.74,0,0,0.77,571.04,3122.89,26162856,99.92,0,0,0.12,570.32,3123.6,26162857,99.94,0,0,0.14,570.28,3123.62,26162858,99.95,0,0,0.18,570.26,3123.63,26162859,99.89,0,0,0.31,570.22,3123.62,26162860,99.71,0,0,0.66,570.62,3123.23,26162861,99.9,0,0,0.16,570.16,3123.68,26162862,99.94,0,0,0.14,570.14,3123.68,26162863,99.95,0,0,0.15,570.1,3123.69,26162864,99.95,0,0,0.14,570.06,3123.71,26162865,99.75,0,0,0.68,571.01,3122.76,26162866,99.94,0,0,0.18,570.68,3123.06,26162867,99.93,0,0,0.16,570.63,3123.09,26162868,99.93,0,0,0.14,570.6,3123.09,26162869,99.93,0,0,0.15,570.53,3123.13,26162870,99.78,0,0,0.73,570.73,3122.92,26162871,99.93,0,0,0.12,570.23,3123.4,26162872,99.95,0,0,0.14,570.2,3123.41,26162873,99.95,0,0,0.16,570.16,3123.43,26162874,99.94,0,0,0.14,570.13,3123.44,26162875,99.77,0,0,0.72,570.49,3123.09,26162876,99.93,0,0,0.16,569.61,3123.96,26162877,99.94,0,0,0.15,569.74,3123.8,26162878,99.91,0,0,0.16,569.71,3123.81,26162879,99.91,0,0,0.18,569.77,3123.73,26162880,99.75,0,0,0.71,570.65,3122.85,26162881,99.94,0,0,0.14,570.84,3122.65,26162882,99.94,0,0,0.16,570.82,3122.65,26162883,99.93,0,0,0.14,570.77,3122.68,26162884,99.93,0,0,0.16,570.73,3122.69,26162885,99.73,0,0,0.64,571,3122.41,26162886,99.93,0,0,0.2,570.43,3122.97,26162887,99.93,0,0,0.14,570.39,3122.99,26162888,99.94,0,0,0.16,570.33,3123.02,26162889,99.87,0,0,0.31,570.23,3123.07,26162890,99.77,0,0,0.55,571.19,3122.09,26162891,99.94,0,0,0.3,570.64,3122.6,26162892,99.93,0,0,0.14,570.6,3122.63,26162893,99.94,0,0,0.14,570.57,3122.63,26162894,99.94,0,0,0.15,570.52,3122.66,26162895,99.86,0,0,0.39,570.57,3122.61,26162896,99.81,0,0,0.6,570.8,3122.34,26162897,99.93,0,0,0.22,570.43,3122.7,26162898,99.94,0,0,0.18,570.41,3122.7,26162899,99.92,0.01,0.02,0.23,570.42,3122.69,26162900,99.84,0,0,0.34,569.71,3123.39,26162901,99.83,0,0,0.59,570.36,3122.72,26162902,99.93,0,0,0.18,570.13,3122.94,26162903,99.94,0,0,0.18,570.09,3122.97,26162904,99.93,0,0,0.18,570.08,3122.97,26162905,99.86,0,0,0.34,570.77,3122.29,26162906,99.82,0,0,0.54,570.3,3122.73,26162907,99.77,0,0,0.14,569.67,3123.34,26162908,99.93,0,0,0.14,569.64,3123.34,26162909,99.93,0,0,0.15,569.59,3123.37,26162910,99.92,0,0,0.27,571.01,3121.93,26162911,99.81,0,0,0.61,570.95,3121.98,26162912,99.93,0,0,0.15,570.23,3122.67,26162913,99.95,0,0,0.15,570.19,3122.7,26162914,99.93,0,0,0.17,570.17,3122.71,26162915,99.88,0,0,0.31,570.63,3122.24,26162916,99.81,0,0,0.55,570.57,3122.26,26162917,99.93,0,0,0.14,569.55,3123.25,26162918,99.93,0,0,0.16,569.63,3123.16,26162919,99.9,0,0,0.31,570.43,3122.33,26162920,99.9,0,0,0.3,570.41,3122.36,26162921,99.82,0,0,0.51,570.84,3121.91,26162922,99.93,0,0,0.2,570.84,3121.91,26162923,99.93,0,0,0.17,570.81,3121.92,26162924,99.93,0,0,0.17,570.77,3121.94,26162925,99.89,0,0,0.33,570.24,3122.47,26162926,99.8,0,0,0.34,570.67,3122.01,26162927,99.93,0,0,0.44,570.19,3122.48,26162928,99.51,0,0,0.2,570.16,3122.5,26162929,99.93,0,0,0.2,570.21,3122.43,26162930,99.87,0,0,0.31,570.59,3122.06,26162931,99.8,0,0,0.34,570.91,3121.73,26162932,99.9,0,0,0.42,570.54,3122.09,26162933,99.92,0,0,0.17,570.52,3122.1,26162934,99.95,0,0,0.18,570.49,3122.13,26162935,99.9,0,0,0.32,571,3121.64,26162936,99.93,0,0,0.14,570.95,3121.66,26162937,99.78,0,0,0.59,571.3,3121.31,26162938,99.94,0,0,0.14,570.91,3121.7,26162939,99.91,0.03,0,0.18,570.72,3121.89,26162940,99.85,0,0,0.29,570.48,3122.13,26162941,99.93,0,0,0.16,570.43,3122.17,26162942,99.8,0,0,0.55,570.55,3122.05,26162943,99.95,0,0,0.16,570.11,3122.48,26162944,99.93,0,0,0.15,570.1,3122.48,26162945,99.9,0,0,0.32,570.63,3121.96,26162946,99.93,0,0,0.16,570.74,3121.84,26162947,99.78,0,0,0.51,571.19,3121.37,26162948,99.93,0,0,0.19,570.94,3121.62,26162949,99.89,0,0,0.37,570.89,3121.63,26162950,99.88,0,0,0.31,571.19,3121.34,26162951,99.94,0,0,0.14,571.09,3121.42,26162952,99.8,0,0,0.41,571.38,3121.12,26162953,99.94,0,0,0.29,570.55,3121.94,26162954,99.91,0,0,0.15,570.51,3121.97,26162955,99.83,0,0,0.3,569.1,3123.4,26162956,99.94,0,0,0.15,569.07,3123.42,26162957,99.8,0,0,0.44,569.87,3122.61,26162958,99.93,0,0,0.29,569.64,3122.83,26162959,99.91,0.01,0.01,0.14,569.61,3122.84,26162960,99.84,0,0,0.29,570.32,3122.15,26162961,99.93,0.01,0.01,0.16,570.3,3122.16,26162962,99.81,0,0,0.41,570.61,3121.83,26162963,99.93,0,0,0.29,570.5,3121.95,26162964,99.9,0,0,0.17,570.57,3121.88,26162965,99.9,0,0,0.34,570.57,3121.88,26162966,99.94,0,0,0.13,570.53,3121.91,26162967,99.68,0,0,0.3,571.16,3121.27,26162968,99.9,0,0,0.39,570.22,3122.2,26162969,99.93,0,0,0.14,570.2,3122.21,26162970,99.9,0,0,0.29,571.18,3121.25,26162971,99.94,0,0,0.16,571.15,3121.27,26162972,99.93,0,0,0.14,571.12,3121.28,26162973,99.8,0,0,0.54,571.04,3121.34,26162974,99.94,0,0,0.14,570.76,3121.61,26162975,99.87,0,0,0.35,571,3121.39,26162976,99.94,0,0,0.14,570.99,3121.4,26162977,99.93,0,0,0.17,570.94,3121.42,26162978,99.8,0,0,0.57,570.61,3121.73,26162979,99.88,0,0,0.36,570.73,3121.44,26162980,99.88,0,0,0.36,570.23,3121.95,26162981,99.92,0,0,0.14,570.21,3121.96,26162982,99.93,0,0,0.13,570.16,3121.99,26162983,99.78,0,0,0.57,570.64,3121.5,26162984,99.94,0,0,0.16,570.34,3121.77,26162985,99.83,0.03,0.02,0.36,570,3122.13,26162986,99.87,0.05,0.03,0.15,569.96,3122.18,26162987,99.88,0.05,0.03,0.17,569.93,3122.2,26162988,98.65,0.04,0.02,0.38,570.24,3121.85,26162989,99.07,0.04,0.02,0.33,569.9,3122.16,26162990,99.83,0.04,0.02,0.33,569.64,3122.42,26162991,99.91,0.05,0.03,0.14,569.62,3122.43,26162992,99.92,0.02,0.02,0.16,569.64,3122.4,26162993,99.82,0,0,0.59,569.74,3122.3,26162994,99.9,0,0,0.18,568.86,3123.17,26162995,99.84,0,0,0.36,569.11,3122.94,26162996,99.9,0,0,0.18,569.06,3122.99,26162997,99.91,0,0,0.18,569.04,3122.99,26162998,99.78,0,0,0.43,569.96,3122.06,26162999,99.9,0,0,0.32,569.98,3122.03,26163000,99.82,0,0,0.29,570.16,3121.85,26163001,99.93,0,0,0.14,570.14,3121.85,26163002,99.82,0.02,0.04,0.25,570.52,3121.43,26163003,99.84,0,0,0.15,573.56,3118.26,26163004,99.87,0,0,0.57,575.69,3116.12,26163005,99.89,0,0,0.31,575.56,3116.26,26163006,99.93,0,0,0.14,575.55,3116.27,26163007,99.93,0,0,0.16,575.51,3116.3,26163008,99.93,0,0,0.14,575.46,3116.32,26163009,99.65,0.02,0.1,1.29,576.32,3115.18,26163010,99.87,0,0,0.33,580.5,3110.11,26163011,99.92,0,0,0.13,580.53,3110.07,26163012,99.92,0,0,0.16,580.65,3109.93,26163013,99.93,0,0,0.14,580.56,3110.02,26163014,99.81,0,0,0.59,580.91,3109.68,26163015,99.88,0,0,0.29,580.58,3110.02,26163016,99.92,0,0,0.14,580.53,3110.05,26163017,99.94,0,0,0.2,580.5,3110.08,26163018,99.93,0,0,0.14,580.49,3110.09,26163019,99.79,0.01,0.01,0.57,581.13,3109.44,26163020,99.88,0,0,0.3,580.6,3109.98,26163021,99.9,0,0,0.17,580.55,3110.02,26163022,99.92,0,0,0.14,580.52,3110.05,26163023,99.93,0,0,0.15,580.48,3110.08,26163024,99.8,0,0,0.54,580.94,3109.61,26163025,99.88,0,0,0.38,580.87,3109.7,26163026,99.93,0,0,0.14,580.82,3109.74,26163027,99.94,0,0,0.16,580.77,3109.77,26163028,99.92,0,0,0.14,580.74,3109.8,26163029,99.8,0,0,0.57,581.36,3109.16,26163030,99.9,0,0,0.32,580.96,3109.59,26163031,99.93,0,0,0.13,580.99,3109.55,26163032,99.93,0,0,0.17,581.07,3109.46,26163033,99.93,0,0,0.14,581.03,3109.49,26163034,99.79,0,0,0.59,581.31,3109.21,26163035,99.87,0,0,0.3,580.48,3110.04,26163036,99.93,0,0,0.19,580.43,3110.07,26163037,99.94,0,0,0.14,580.4,3110.1,26163038,99.93,0,0,0.15,580.57,3109.92,26163039,99.66,0,0,0.56,581.38,3109.08,26163040,99.83,0,0,0.44,580.53,3109.94,26163041,99.91,0,0,0.14,580.48,3109.98,26163042,99.92,0,0,0.16,580.43,3110.01,26163043,99.93,0,0,0.16,580.39,3110.04,26163044,99.91,0,0,0.14,580.37,3110.07,26163045,99.6,0,0,0.7,580.77,3109.67,26163046,99.9,0,0,0.16,579.98,3110.45,26163047,99.93,0,0,0.14,579.95,3110.48,26163048,99.93,0,0,0.14,579.9,3110.51,26163049,99.93,0,0,0.18,579.86,3110.54,26163050,99.7,0,0,0.7,581.67,3108.74,26163051,99.94,0,0,0.17,581.07,3109.33,26163052,99.92,0,0,0.14,581.2,3109.19,26163053,99.95,0,0,0.15,581.16,3109.23,26163054,99.93,0,0,0.14,581.11,3109.26,26163055,94.9,0.27,0.01,193.77,594.2,3096.83,26163056,99.88,0,0,63.66,582.46,3107.73,26163057,99.92,0,0,0.14,582.41,3107.75,26163058,99.92,0,0,0.15,582.36,3107.78,26163059,99.93,0,0,0.16,582.31,3107.82,26163060,99.64,0,0,0.73,581.8,3108.37,26163061,99.94,0,0,0.14,580.57,3109.63,26163062,99.93,0,0.01,0.16,580.53,3109.66,26163063,99.93,0,0,0.14,580.48,3109.7,26163064,99.93,0,0,0.15,580.44,3109.73,26163065,99.75,0,0,0.57,581.13,3109.06,26163066,99.93,0,0,0.34,581.05,3109.16,26163067,99.9,0,0,0.14,581.01,3109.17,26163068,99.93,0,0,0.14,580.96,3109.2,26163069,99.88,0,0.01,0.31,580.92,3109.22,26163070,99.75,0,0,0.7,581.08,3109.07,26163071,99.91,0,0,0.14,580.87,3109.27,26163072,99.93,0,0,0.14,580.85,3109.28,26163073,99.91,0,0,0.16,581,3109.13,26163074,99.88,0,0,0.14,580.97,3109.16,26163075,99.7,0,0,0.57,581.31,3108.83,26163076,99.92,0,0,0.3,580.91,3109.21,26163077,99.91,0,0,0.17,580.87,3109.25,26163078,99.93,0,0,0.16,580.84,3109.28,26163079,99.9,0.01,0.01,0.15,580.82,3109.28,26163080,99.87,0,0,0.28,581.21,3108.91,26163081,99.76,0,0,0.54,581.39,3108.73,26163082,99.9,0,0,0.16,580.9,3109.21,26163083,99.91,0,0,0.15,580.85,3109.24,26163084,99.92,0,0,0.15,580.83,3109.26,26163085,99.81,0,0,0.32,580.81,3109.29,26163086,99.77,0,0,0.54,581.38,3108.71,26163087,99.88,0,0,0.14,581.16,3108.92,26163088,99.91,0,0,0.14,581.12,3108.95,26163089,99.9,0,0,0.16,581.09,3108.97,26163090,99.78,0,0,0.3,580.95,3109,26163091,99.76,0,0,0.55,581.42,3108.53,26163092,99.85,0,0,0.14,581.14,3108.81,26163093,99.84,0,0,0.15,581.31,3108.63,26163094,99.84,0.01,0.01,0.2,581.2,3108.72,26163095,99.78,0,0,0.32,581.25,3108.68,26163096,99.7,0,0,0.54,581.63,3108.3,26163097,99.83,0,0,0.16,581.26,3108.66,26163098,99.86,0,0,0.14,581.22,3108.68,26163099,99.78,0,0,0.32,581.17,3108.71,26163100,99.81,0,0,0.3,579.97,3109.92,26163101,99.74,0,0,0.4,581.18,3108.71,26163102,99.87,0,0,0.28,581.12,3108.76,26163103,99.87,0,0,0.16,581.25,3108.62,26163104,99.85,0,0,0.15,581.2,3108.65,26163105,99.8,0,0,0.32,581.43,3108.45,26163106,99.69,0,0,0.5,581.88,3107.99,26163107,99.84,0,0,0.19,581.35,3108.51,26163108,99.86,0,0,0.16,581.32,3108.54,26163109,99.85,0,0,0.15,581.31,3108.55] \ No newline at end of file diff --git a/docs/static/data/examples/bench/series_arrays/convert.js b/docs/static/data/examples/bench/series_arrays/convert.js new file mode 100644 index 000000000..67821763a --- /dev/null +++ b/docs/static/data/examples/bench/series_arrays/convert.js @@ -0,0 +1,35 @@ +import fs from 'node:fs'; +import { round } from '@layerstack/utils'; + +function prepData(packed) { + // epoch,idl,recv,send,read,writ,used,free + const numFields = packed[0]; + packed = packed.slice(numFields + 1); + + var cpu = Array(packed.length / numFields); + var ram = Array(packed.length / numFields); + var tcp = Array(packed.length / numFields); + + for (let i = 0, j = 0; i < packed.length; i += numFields, j++) { + let date = packed[i] * 60 * 1000; + cpu[j] = { x: date, y: round(100 - packed[i + 1], 3) }; + ram[j] = { x: date, y: round((100 * packed[i + 5]) / (packed[i + 5] + packed[i + 6]), 2) }; + tcp[j] = { x: date, y: packed[i + 3] }; + } + + return { cpu, ram, tcp }; +} + +try { + const inputFile = '../packedData.json'; + const outputFile = 'data.json'; + + const packedData = JSON.parse(fs.readFileSync(inputFile, 'utf8')); + const data = prepData(packedData); + fs.writeFileSync(outputFile, JSON.stringify(data)); + + console.log(`Successfully transformed data from ${inputFile} to ${outputFile}`); +} catch (error) { + console.error('Error processing file:', error.message); + process.exit(1); +} diff --git a/docs/static/data/examples/bench/series_arrays/data.json b/docs/static/data/examples/bench/series_arrays/data.json new file mode 100644 index 000000000..bc80d2cd8 --- /dev/null +++ b/docs/static/data/examples/bench/series_arrays/data.json @@ -0,0 +1 @@ +{"cpu":[{"x":1566453600000,"y":0.54},{"x":1566453660000,"y":0.15},{"x":1566453720000,"y":0.16},{"x":1566453780000,"y":0.15},{"x":1566453840000,"y":0.19},{"x":1566453900000,"y":0.26},{"x":1566453960000,"y":0.32},{"x":1566454020000,"y":0.15},{"x":1566454080000,"y":0.15},{"x":1566454140000,"y":0.28},{"x":1566454200000,"y":0.29},{"x":1566454260000,"y":0.33},{"x":1566454320000,"y":0.18},{"x":1566454380000,"y":0.17},{"x":1566454440000,"y":0.17},{"x":1566454500000,"y":0.33},{"x":1566454560000,"y":0.32},{"x":1566454620000,"y":0.23},{"x":1566454680000,"y":0.15},{"x":1566454740000,"y":0.15},{"x":1566454800000,"y":0.24},{"x":1566454860000,"y":0.29},{"x":1566454920000,"y":0.16},{"x":1566454980000,"y":0.17},{"x":1566455040000,"y":0.17},{"x":1566455100000,"y":0.45},{"x":1566455160000,"y":0.28},{"x":1566455220000,"y":0.16},{"x":1566455280000,"y":0.17},{"x":1566455340000,"y":0.17},{"x":1566455400000,"y":0.24},{"x":1566455460000,"y":0.3},{"x":1566455520000,"y":0.19},{"x":1566455580000,"y":0.19},{"x":1566455640000,"y":0.17},{"x":1566455700000,"y":0.24},{"x":1566455760000,"y":0.29},{"x":1566455820000,"y":0.22},{"x":1566455880000,"y":0.18},{"x":1566455940000,"y":0.28},{"x":1566456000000,"y":0.26},{"x":1566456060000,"y":0.17},{"x":1566456120000,"y":0.3},{"x":1566456180000,"y":0.16},{"x":1566456240000,"y":0.21},{"x":1566456300000,"y":0.24},{"x":1566456360000,"y":0.16},{"x":1566456420000,"y":0.29},{"x":1566456480000,"y":0.17},{"x":1566456540000,"y":0.18},{"x":1566456600000,"y":0.27},{"x":1566456660000,"y":0.16},{"x":1566456720000,"y":0.33},{"x":1566456780000,"y":0.16},{"x":1566456840000,"y":0.19},{"x":1566456900000,"y":0.24},{"x":1566456960000,"y":0.18},{"x":1566457020000,"y":1.7},{"x":1566457080000,"y":0.18},{"x":1566457140000,"y":0.16},{"x":1566457200000,"y":0.34},{"x":1566457260000,"y":0.18},{"x":1566457320000,"y":0.28},{"x":1566457380000,"y":0.18},{"x":1566457440000,"y":0.17},{"x":1566457500000,"y":0.34},{"x":1566457560000,"y":0.17},{"x":1566457620000,"y":0.28},{"x":1566457680000,"y":0.17},{"x":1566457740000,"y":0.22},{"x":1566457800000,"y":0.23},{"x":1566457860000,"y":0.14},{"x":1566457920000,"y":0.29},{"x":1566457980000,"y":0.2},{"x":1566458040000,"y":0.16},{"x":1566458100000,"y":0.24},{"x":1566458160000,"y":0.16},{"x":1566458220000,"y":0.17},{"x":1566458280000,"y":0.29},{"x":1566458340000,"y":0.17},{"x":1566458400000,"y":0.38},{"x":1566458460000,"y":0.2},{"x":1566458520000,"y":0.16},{"x":1566458580000,"y":0.3},{"x":1566458640000,"y":0.18},{"x":1566458700000,"y":0.31},{"x":1566458760000,"y":0.16},{"x":1566458820000,"y":0.16},{"x":1566458880000,"y":0.29},{"x":1566458940000,"y":0.15},{"x":1566459000000,"y":0.31},{"x":1566459060000,"y":0.17},{"x":1566459120000,"y":0.17},{"x":1566459180000,"y":0.3},{"x":1566459240000,"y":0.2},{"x":1566459300000,"y":0.27},{"x":1566459360000,"y":0.16},{"x":1566459420000,"y":0.15},{"x":1566459480000,"y":0.3},{"x":1566459540000,"y":0.41},{"x":1566459600000,"y":0.28},{"x":1566459660000,"y":0.16},{"x":1566459720000,"y":0.15},{"x":1566459780000,"y":0.28},{"x":1566459840000,"y":0.15},{"x":1566459900000,"y":0.33},{"x":1566459960000,"y":0.18},{"x":1566460020000,"y":0.18},{"x":1566460080000,"y":0.17},{"x":1566460140000,"y":5.2},{"x":1566460200000,"y":0.23},{"x":1566460260000,"y":0.17},{"x":1566460320000,"y":0.16},{"x":1566460380000,"y":0.16},{"x":1566460440000,"y":0.33},{"x":1566460500000,"y":0.3},{"x":1566460560000,"y":0.19},{"x":1566460620000,"y":0.16},{"x":1566460680000,"y":0.92},{"x":1566460740000,"y":0.28},{"x":1566460800000,"y":0.33},{"x":1566460860000,"y":0.17},{"x":1566460920000,"y":0.21},{"x":1566460980000,"y":0.15},{"x":1566461040000,"y":0.32},{"x":1566461100000,"y":0.61},{"x":1566461160000,"y":1.48},{"x":1566461220000,"y":0.15},{"x":1566461280000,"y":0.17},{"x":1566461340000,"y":0.44},{"x":1566461400000,"y":0.23},{"x":1566461460000,"y":0.19},{"x":1566461520000,"y":0.17},{"x":1566461580000,"y":0.24},{"x":1566461640000,"y":0.33},{"x":1566461700000,"y":0.26},{"x":1566461760000,"y":0.17},{"x":1566461820000,"y":0.17},{"x":1566461880000,"y":0.17},{"x":1566461940000,"y":0.27},{"x":1566462000000,"y":0.25},{"x":1566462060000,"y":0.11},{"x":1566462120000,"y":0.1},{"x":1566462180000,"y":0.07},{"x":1566462240000,"y":0.09},{"x":1566462300000,"y":0.37},{"x":1566462360000,"y":0.08},{"x":1566462420000,"y":0.09},{"x":1566462480000,"y":0.08},{"x":1566462540000,"y":0.07},{"x":1566462600000,"y":0.34},{"x":1566462660000,"y":0.07},{"x":1566462720000,"y":0.08},{"x":1566462780000,"y":0.07},{"x":1566462840000,"y":0.07},{"x":1566462900000,"y":0.37},{"x":1566462960000,"y":0.07},{"x":1566463020000,"y":0.07},{"x":1566463080000,"y":0.07},{"x":1566463140000,"y":0.25},{"x":1566463200000,"y":0.26},{"x":1566463260000,"y":0.06},{"x":1566463320000,"y":0.1},{"x":1566463380000,"y":0.07},{"x":1566463440000,"y":0.09},{"x":1566463500000,"y":0.31},{"x":1566463560000,"y":0.08},{"x":1566463620000,"y":0.11},{"x":1566463680000,"y":0.11},{"x":1566463740000,"y":0.12},{"x":1566463800000,"y":0.26},{"x":1566463860000,"y":0.08},{"x":1566463920000,"y":0.09},{"x":1566463980000,"y":0.07},{"x":1566464040000,"y":0.1},{"x":1566464100000,"y":0.25},{"x":1566464160000,"y":0.06},{"x":1566464220000,"y":0.06},{"x":1566464280000,"y":0.07},{"x":1566464340000,"y":0.07},{"x":1566464400000,"y":0.36},{"x":1566464460000,"y":0.26},{"x":1566464520000,"y":0.08},{"x":1566464580000,"y":0.08},{"x":1566464640000,"y":0.09},{"x":1566464700000,"y":0.16},{"x":1566464760000,"y":0.23},{"x":1566464820000,"y":0.07},{"x":1566464880000,"y":0.09},{"x":1566464940000,"y":0.21},{"x":1566465000000,"y":0.22},{"x":1566465060000,"y":0.21},{"x":1566465120000,"y":0.09},{"x":1566465180000,"y":0.07},{"x":1566465240000,"y":0.09},{"x":1566465300000,"y":0.22},{"x":1566465360000,"y":0.3},{"x":1566465420000,"y":0.12},{"x":1566465480000,"y":0.07},{"x":1566465540000,"y":0.11},{"x":1566465600000,"y":0.22},{"x":1566465660000,"y":0.2},{"x":1566465720000,"y":0.1},{"x":1566465780000,"y":0.06},{"x":1566465840000,"y":0.09},{"x":1566465900000,"y":0.15},{"x":1566465960000,"y":0.27},{"x":1566466020000,"y":0.13},{"x":1566466080000,"y":0.11},{"x":1566466140000,"y":0.13},{"x":1566466200000,"y":0.17},{"x":1566466260000,"y":0.22},{"x":1566466320000,"y":0.09},{"x":1566466380000,"y":0.09},{"x":1566466440000,"y":0.09},{"x":1566466500000,"y":0.2},{"x":1566466560000,"y":0.22},{"x":1566466620000,"y":0.12},{"x":1566466680000,"y":0.06},{"x":1566466740000,"y":0.18},{"x":1566466800000,"y":0.15},{"x":1566466860000,"y":0.09},{"x":1566466920000,"y":0.2},{"x":1566466980000,"y":0.05},{"x":1566467040000,"y":0.07},{"x":1566467100000,"y":0.13},{"x":1566467160000,"y":0.1},{"x":1566467220000,"y":0.26},{"x":1566467280000,"y":0.07},{"x":1566467340000,"y":0.06},{"x":1566467400000,"y":0.14},{"x":1566467460000,"y":0.08},{"x":1566467520000,"y":0.22},{"x":1566467580000,"y":0.1},{"x":1566467640000,"y":0.1},{"x":1566467700000,"y":0.22},{"x":1566467760000,"y":0.07},{"x":1566467820000,"y":0.22},{"x":1566467880000,"y":0.06},{"x":1566467940000,"y":3.25},{"x":1566468000000,"y":0.29},{"x":1566468060000,"y":0.08},{"x":1566468120000,"y":0.24},{"x":1566468180000,"y":0.09},{"x":1566468240000,"y":0.08},{"x":1566468300000,"y":0.18},{"x":1566468360000,"y":0.07},{"x":1566468420000,"y":1.32},{"x":1566468480000,"y":0.06},{"x":1566468540000,"y":0.22},{"x":1566468600000,"y":0.17},{"x":1566468660000,"y":0.12},{"x":1566468720000,"y":0.25},{"x":1566468780000,"y":0.17},{"x":1566468840000,"y":0.19},{"x":1566468900000,"y":0.2},{"x":1566468960000,"y":0.2},{"x":1566469020000,"y":0.16},{"x":1566469080000,"y":0.33},{"x":1566469140000,"y":0.18},{"x":1566469200000,"y":0.27},{"x":1566469260000,"y":0.29},{"x":1566469320000,"y":0.29},{"x":1566469380000,"y":0.36},{"x":1566469440000,"y":0.18},{"x":1566469500000,"y":0.34},{"x":1566469560000,"y":0.2},{"x":1566469620000,"y":0.18},{"x":1566469680000,"y":0.29},{"x":1566469740000,"y":0.09},{"x":1566469800000,"y":0.23},{"x":1566469860000,"y":0.09},{"x":1566469920000,"y":0.12},{"x":1566469980000,"y":0.23},{"x":1566470040000,"y":0.11},{"x":1566470100000,"y":0.2},{"x":1566470160000,"y":0.12},{"x":1566470220000,"y":0.12},{"x":1566470280000,"y":0.24},{"x":1566470340000,"y":0.19},{"x":1566470400000,"y":0.24},{"x":1566470460000,"y":0.1},{"x":1566470520000,"y":0.13},{"x":1566470580000,"y":0.25},{"x":1566470640000,"y":0.19},{"x":1566470700000,"y":0.22},{"x":1566470760000,"y":0.13},{"x":1566470820000,"y":0.16},{"x":1566470880000,"y":0.15},{"x":1566470940000,"y":0.26},{"x":1566471000000,"y":0.27},{"x":1566471060000,"y":0.1},{"x":1566471120000,"y":0.1},{"x":1566471180000,"y":0.12},{"x":1566471240000,"y":0.23},{"x":1566471300000,"y":0.19},{"x":1566471360000,"y":0.13},{"x":1566471420000,"y":0.17},{"x":1566471480000,"y":0.12},{"x":1566471540000,"y":0.41},{"x":1566471600000,"y":0.34},{"x":1566471660000,"y":0.11},{"x":1566471720000,"y":17.91},{"x":1566471780000,"y":19.06},{"x":1566471840000,"y":0.28},{"x":1566471900000,"y":0.21},{"x":1566471960000,"y":0.17},{"x":1566472020000,"y":4.03},{"x":1566472080000,"y":0.13},{"x":1566472140000,"y":0.36},{"x":1566472200000,"y":0.24},{"x":1566472260000,"y":0.12},{"x":1566472320000,"y":0.14},{"x":1566472380000,"y":0.13},{"x":1566472440000,"y":0.32},{"x":1566472500000,"y":0.21},{"x":1566472560000,"y":0.13},{"x":1566472620000,"y":0.13},{"x":1566472680000,"y":0.09},{"x":1566472740000,"y":0.27},{"x":1566472800000,"y":0.19},{"x":1566472860000,"y":0.16},{"x":1566472920000,"y":0.13},{"x":1566472980000,"y":0.13},{"x":1566473040000,"y":0.12},{"x":1566473100000,"y":1.56},{"x":1566473160000,"y":0.13},{"x":1566473220000,"y":0.16},{"x":1566473280000,"y":0.12},{"x":1566473340000,"y":0.12},{"x":1566473400000,"y":0.37},{"x":1566473460000,"y":0.12},{"x":1566473520000,"y":0.14},{"x":1566473580000,"y":0.12},{"x":1566473640000,"y":0.11},{"x":1566473700000,"y":0.33},{"x":1566473760000,"y":0.15},{"x":1566473820000,"y":0.13},{"x":1566473880000,"y":0.13},{"x":1566473940000,"y":0.16},{"x":1566474000000,"y":0.37},{"x":1566474060000,"y":0.13},{"x":1566474120000,"y":0.11},{"x":1566474180000,"y":0.15},{"x":1566474240000,"y":0.15},{"x":1566474300000,"y":0.38},{"x":1566474360000,"y":0.1},{"x":1566474420000,"y":0.13},{"x":1566474480000,"y":0.17},{"x":1566474540000,"y":0.17},{"x":1566474600000,"y":0.36},{"x":1566474660000,"y":0.13},{"x":1566474720000,"y":0.14},{"x":1566474780000,"y":0.12},{"x":1566474840000,"y":0.14},{"x":1566474900000,"y":0.4},{"x":1566474960000,"y":0.13},{"x":1566475020000,"y":0.12},{"x":1566475080000,"y":0.15},{"x":1566475140000,"y":0.12},{"x":1566475200000,"y":0.38},{"x":1566475260000,"y":0.31},{"x":1566475320000,"y":0.19},{"x":1566475380000,"y":0.15},{"x":1566475440000,"y":0.15},{"x":1566475500000,"y":0.24},{"x":1566475560000,"y":0.32},{"x":1566475620000,"y":0.17},{"x":1566475680000,"y":0.12},{"x":1566475740000,"y":0.31},{"x":1566475800000,"y":0.32},{"x":1566475860000,"y":0.39},{"x":1566475920000,"y":0.25},{"x":1566475980000,"y":0.41},{"x":1566476040000,"y":0.31},{"x":1566476100000,"y":0.26},{"x":1566476160000,"y":0.35},{"x":1566476220000,"y":0.18},{"x":1566476280000,"y":0.19},{"x":1566476340000,"y":0.23},{"x":1566476400000,"y":0.27},{"x":1566476460000,"y":0.29},{"x":1566476520000,"y":0.25},{"x":1566476580000,"y":0.2},{"x":1566476640000,"y":0.19},{"x":1566476700000,"y":0.28},{"x":1566476760000,"y":0.3},{"x":1566476820000,"y":0.13},{"x":1566476880000,"y":0.17},{"x":1566476940000,"y":0.18},{"x":1566477000000,"y":0.39},{"x":1566477060000,"y":0.21},{"x":1566477120000,"y":0.21},{"x":1566477180000,"y":0.19},{"x":1566477240000,"y":0.15},{"x":1566477300000,"y":0.27},{"x":1566477360000,"y":0.16},{"x":1566477420000,"y":0.32},{"x":1566477480000,"y":0.13},{"x":1566477540000,"y":0.21},{"x":1566477600000,"y":0.27},{"x":1566477660000,"y":0.16},{"x":1566477720000,"y":0.34},{"x":1566477780000,"y":0.14},{"x":1566477840000,"y":0.17},{"x":1566477900000,"y":0.3},{"x":1566477960000,"y":0.15},{"x":1566478020000,"y":0.39},{"x":1566478080000,"y":0.15},{"x":1566478140000,"y":0.16},{"x":1566478200000,"y":0.26},{"x":1566478260000,"y":0.16},{"x":1566478320000,"y":0.28},{"x":1566478380000,"y":0.16},{"x":1566478440000,"y":0.15},{"x":1566478500000,"y":0.26},{"x":1566478560000,"y":0.16},{"x":1566478620000,"y":0.25},{"x":1566478680000,"y":0.17},{"x":1566478740000,"y":0.15},{"x":1566478800000,"y":0.45},{"x":1566478860000,"y":0.46},{"x":1566478920000,"y":0.31},{"x":1566478980000,"y":0.16},{"x":1566479040000,"y":0.2},{"x":1566479100000,"y":0.27},{"x":1566479160000,"y":0.16},{"x":1566479220000,"y":0.27},{"x":1566479280000,"y":0.12},{"x":1566479340000,"y":0.2},{"x":1566479400000,"y":0.28},{"x":1566479460000,"y":0.11},{"x":1566479520000,"y":0.09},{"x":1566479580000,"y":0.23},{"x":1566479640000,"y":0.1},{"x":1566479700000,"y":0.22},{"x":1566479760000,"y":0.13},{"x":1566479820000,"y":0.1},{"x":1566479880000,"y":0.24},{"x":1566479940000,"y":0.1},{"x":1566480000000,"y":0.21},{"x":1566480060000,"y":0.15},{"x":1566480120000,"y":0.09},{"x":1566480180000,"y":0.23},{"x":1566480240000,"y":0.14},{"x":1566480300000,"y":0.14},{"x":1566480360000,"y":0.08},{"x":1566480420000,"y":0.1},{"x":1566480480000,"y":0.22},{"x":1566480540000,"y":0.08},{"x":1566480600000,"y":0.15},{"x":1566480660000,"y":0.06},{"x":1566480720000,"y":0.08},{"x":1566480780000,"y":0.21},{"x":1566480840000,"y":0.08},{"x":1566480900000,"y":0.14},{"x":1566480960000,"y":0.09},{"x":1566481020000,"y":0.07},{"x":1566481080000,"y":0.2},{"x":1566481140000,"y":0.13},{"x":1566481200000,"y":0.24},{"x":1566481260000,"y":0.14},{"x":1566481320000,"y":0.08},{"x":1566481380000,"y":0.22},{"x":1566481440000,"y":0.07},{"x":1566481500000,"y":0.23},{"x":1566481560000,"y":0.07},{"x":1566481620000,"y":0.08},{"x":1566481680000,"y":0.1},{"x":1566481740000,"y":0.25},{"x":1566481800000,"y":0.21},{"x":1566481860000,"y":0.08},{"x":1566481920000,"y":0.1},{"x":1566481980000,"y":0.1},{"x":1566482040000,"y":5.36},{"x":1566482100000,"y":0.21},{"x":1566482160000,"y":0.07},{"x":1566482220000,"y":0.07},{"x":1566482280000,"y":0.09},{"x":1566482340000,"y":0.22},{"x":1566482400000,"y":0.29},{"x":1566482460000,"y":0.13},{"x":1566482520000,"y":0.08},{"x":1566482580000,"y":0.08},{"x":1566482640000,"y":0.23},{"x":1566482700000,"y":0.18},{"x":1566482760000,"y":0.11},{"x":1566482820000,"y":0.09},{"x":1566482880000,"y":0.12},{"x":1566482940000,"y":0.28},{"x":1566483000000,"y":0.19},{"x":1566483060000,"y":0.1},{"x":1566483120000,"y":0.08},{"x":1566483180000,"y":0.2},{"x":1566483240000,"y":0.25},{"x":1566483300000,"y":0.19},{"x":1566483360000,"y":0.12},{"x":1566483420000,"y":0.1},{"x":1566483480000,"y":0.11},{"x":1566483540000,"y":0.23},{"x":1566483600000,"y":0.23},{"x":1566483660000,"y":0.13},{"x":1566483720000,"y":0.12},{"x":1566483780000,"y":0.11},{"x":1566483840000,"y":0.11},{"x":1566483900000,"y":0.42},{"x":1566483960000,"y":0.17},{"x":1566484020000,"y":0.12},{"x":1566484080000,"y":0.13},{"x":1566484140000,"y":0.11},{"x":1566484200000,"y":0.28},{"x":1566484260000,"y":0.12},{"x":1566484320000,"y":0.12},{"x":1566484380000,"y":0.14},{"x":1566484440000,"y":0.11},{"x":1566484500000,"y":0.35},{"x":1566484560000,"y":0.17},{"x":1566484620000,"y":0.22},{"x":1566484680000,"y":0.15},{"x":1566484740000,"y":0.23},{"x":1566484800000,"y":0.43},{"x":1566484860000,"y":0.17},{"x":1566484920000,"y":0.21},{"x":1566484980000,"y":0.17},{"x":1566485040000,"y":0.18},{"x":1566485100000,"y":0.39},{"x":1566485160000,"y":0.16},{"x":1566485220000,"y":0.17},{"x":1566485280000,"y":0.14},{"x":1566485340000,"y":0.24},{"x":1566485400000,"y":0.49},{"x":1566485460000,"y":0.17},{"x":1566485520000,"y":0.17},{"x":1566485580000,"y":0.18},{"x":1566485640000,"y":0.25},{"x":1566485700000,"y":0.39},{"x":1566485760000,"y":0.23},{"x":1566485820000,"y":0.27},{"x":1566485880000,"y":0.19},{"x":1566485940000,"y":0.2},{"x":1566486000000,"y":0.62},{"x":1566486060000,"y":0.25},{"x":1566486120000,"y":0.2},{"x":1566486180000,"y":0.22},{"x":1566486240000,"y":0.2},{"x":1566486300000,"y":0.29},{"x":1566486360000,"y":0.33},{"x":1566486420000,"y":0.23},{"x":1566486480000,"y":0.25},{"x":1566486540000,"y":0.29},{"x":1566486600000,"y":0.3},{"x":1566486660000,"y":0.31},{"x":1566486720000,"y":0.21},{"x":1566486780000,"y":0.24},{"x":1566486840000,"y":0.22},{"x":1566486900000,"y":0.33},{"x":1566486960000,"y":0.35},{"x":1566487020000,"y":0.21},{"x":1566487080000,"y":0.22},{"x":1566487140000,"y":0.2},{"x":1566487200000,"y":0.45},{"x":1566487260000,"y":0.37},{"x":1566487320000,"y":0.21},{"x":1566487380000,"y":0.19},{"x":1566487440000,"y":0.16},{"x":1566487500000,"y":0.29},{"x":1566487560000,"y":0.26},{"x":1566487620000,"y":0.16},{"x":1566487680000,"y":0.14},{"x":1566487740000,"y":0.16},{"x":1566487800000,"y":0.27},{"x":1566487860000,"y":0.32},{"x":1566487920000,"y":0.24},{"x":1566487980000,"y":0.19},{"x":1566488040000,"y":4.56},{"x":1566488100000,"y":0.28},{"x":1566488160000,"y":0.37},{"x":1566488220000,"y":0.22},{"x":1566488280000,"y":0.22},{"x":1566488340000,"y":0.29},{"x":1566488400000,"y":0.34},{"x":1566488460000,"y":0.2},{"x":1566488520000,"y":0.33},{"x":1566488580000,"y":0.2},{"x":1566488640000,"y":0.2},{"x":1566488700000,"y":0.3},{"x":1566488760000,"y":0.2},{"x":1566488820000,"y":0.38},{"x":1566488880000,"y":0.22},{"x":1566488940000,"y":0.22},{"x":1566489000000,"y":0.37},{"x":1566489060000,"y":0.22},{"x":1566489120000,"y":0.36},{"x":1566489180000,"y":0.2},{"x":1566489240000,"y":0.27},{"x":1566489300000,"y":0.36},{"x":1566489360000,"y":0.23},{"x":1566489420000,"y":0.35},{"x":1566489480000,"y":0.19},{"x":1566489540000,"y":0.15},{"x":1566489600000,"y":0.32},{"x":1566489660000,"y":0.19},{"x":1566489720000,"y":0.29},{"x":1566489780000,"y":0.16},{"x":1566489840000,"y":0.14},{"x":1566489900000,"y":0.27},{"x":1566489960000,"y":0.19},{"x":1566490020000,"y":0.36},{"x":1566490080000,"y":0.18},{"x":1566490140000,"y":0.37},{"x":1566490200000,"y":0.36},{"x":1566490260000,"y":0.21},{"x":1566490320000,"y":0.34},{"x":1566490380000,"y":0.23},{"x":1566490440000,"y":0.25},{"x":1566490500000,"y":0.31},{"x":1566490560000,"y":0.22},{"x":1566490620000,"y":0.23},{"x":1566490680000,"y":0.34},{"x":1566490740000,"y":0.19},{"x":1566490800000,"y":0.32},{"x":1566490860000,"y":0.23},{"x":1566490920000,"y":0.22},{"x":1566490980000,"y":0.34},{"x":1566491040000,"y":0.2},{"x":1566491100000,"y":0.25},{"x":1566491160000,"y":0.27},{"x":1566491220000,"y":0.25},{"x":1566491280000,"y":0.35},{"x":1566491340000,"y":0.25},{"x":1566491400000,"y":0.36},{"x":1566491460000,"y":0.2},{"x":1566491520000,"y":0.23},{"x":1566491580000,"y":0.38},{"x":1566491640000,"y":0.2},{"x":1566491700000,"y":0.3},{"x":1566491760000,"y":0.22},{"x":1566491820000,"y":0.2},{"x":1566491880000,"y":0.33},{"x":1566491940000,"y":0.38},{"x":1566492000000,"y":0.3},{"x":1566492060000,"y":0.24},{"x":1566492120000,"y":5.59},{"x":1566492180000,"y":15.62},{"x":1566492240000,"y":0.2},{"x":1566492300000,"y":0.34},{"x":1566492360000,"y":0.22},{"x":1566492420000,"y":0.23},{"x":1566492480000,"y":0.32},{"x":1566492540000,"y":0.2},{"x":1566492600000,"y":0.23},{"x":1566492660000,"y":0.19},{"x":1566492720000,"y":0.17},{"x":1566492780000,"y":0.31},{"x":1566492840000,"y":0.27},{"x":1566492900000,"y":0.34},{"x":1566492960000,"y":0.19},{"x":1566493020000,"y":0.2},{"x":1566493080000,"y":0.25},{"x":1566493140000,"y":0.36},{"x":1566493200000,"y":0.42},{"x":1566493260000,"y":13.73},{"x":1566493320000,"y":5.51},{"x":1566493380000,"y":0.21},{"x":1566493440000,"y":1.44},{"x":1566493500000,"y":0.28},{"x":1566493560000,"y":0.25},{"x":1566493620000,"y":15.57},{"x":1566493680000,"y":1.22},{"x":1566493740000,"y":15.5},{"x":1566493800000,"y":1.9},{"x":1566493860000,"y":0.26},{"x":1566493920000,"y":0.23},{"x":1566493980000,"y":0.23},{"x":1566494040000,"y":12.39},{"x":1566494100000,"y":9.41},{"x":1566494160000,"y":0.47},{"x":1566494220000,"y":0.36},{"x":1566494280000,"y":0.27},{"x":1566494340000,"y":9.18},{"x":1566494400000,"y":19.32},{"x":1566494460000,"y":7.01},{"x":1566494520000,"y":8.02},{"x":1566494580000,"y":3.67},{"x":1566494640000,"y":12.22},{"x":1566494700000,"y":17.48},{"x":1566494760000,"y":15.48},{"x":1566494820000,"y":4.21},{"x":1566494880000,"y":0.27},{"x":1566494940000,"y":0.22},{"x":1566495000000,"y":2.92},{"x":1566495060000,"y":2.41},{"x":1566495120000,"y":3.62},{"x":1566495180000,"y":0.22},{"x":1566495240000,"y":0.17},{"x":1566495300000,"y":0.4},{"x":1566495360000,"y":0.14},{"x":1566495420000,"y":0.14},{"x":1566495480000,"y":0.13},{"x":1566495540000,"y":0.28},{"x":1566495600000,"y":0.37},{"x":1566495660000,"y":0.12},{"x":1566495720000,"y":2.17},{"x":1566495780000,"y":12.55},{"x":1566495840000,"y":15.51},{"x":1566495900000,"y":18.3},{"x":1566495960000,"y":0.37},{"x":1566496020000,"y":18.79},{"x":1566496080000,"y":17.38},{"x":1566496140000,"y":0.28},{"x":1566496200000,"y":2.8},{"x":1566496260000,"y":15.37},{"x":1566496320000,"y":15.21},{"x":1566496380000,"y":0.32},{"x":1566496440000,"y":0.19},{"x":1566496500000,"y":0.39},{"x":1566496560000,"y":0.15},{"x":1566496620000,"y":0.21},{"x":1566496680000,"y":0.21},{"x":1566496740000,"y":0.16},{"x":1566496800000,"y":0.61},{"x":1566496860000,"y":0.25},{"x":1566496920000,"y":0.17},{"x":1566496980000,"y":0.21},{"x":1566497040000,"y":0.14},{"x":1566497100000,"y":0.44},{"x":1566497160000,"y":0.17},{"x":1566497220000,"y":0.2},{"x":1566497280000,"y":15.22},{"x":1566497340000,"y":7.27},{"x":1566497400000,"y":11.46},{"x":1566497460000,"y":0.45},{"x":1566497520000,"y":0.24},{"x":1566497580000,"y":15.26},{"x":1566497640000,"y":0.36},{"x":1566497700000,"y":0.29},{"x":1566497760000,"y":0.39},{"x":1566497820000,"y":15.03},{"x":1566497880000,"y":0.4},{"x":1566497940000,"y":0.16},{"x":1566498000000,"y":0.27},{"x":1566498060000,"y":0.29},{"x":1566498120000,"y":0.12},{"x":1566498180000,"y":0.17},{"x":1566498240000,"y":0.15},{"x":1566498300000,"y":0.28},{"x":1566498360000,"y":0.29},{"x":1566498420000,"y":0.14},{"x":1566498480000,"y":0.15},{"x":1566498540000,"y":0.15},{"x":1566498600000,"y":0.29},{"x":1566498660000,"y":0.38},{"x":1566498720000,"y":0.25},{"x":1566498780000,"y":0.16},{"x":1566498840000,"y":0.17},{"x":1566498900000,"y":0.25},{"x":1566498960000,"y":0.27},{"x":1566499020000,"y":0.16},{"x":1566499080000,"y":0.17},{"x":1566499140000,"y":0.35},{"x":1566499200000,"y":0.32},{"x":1566499260000,"y":16.22},{"x":1566499320000,"y":0.19},{"x":1566499380000,"y":16.11},{"x":1566499440000,"y":0.16},{"x":1566499500000,"y":0.24},{"x":1566499560000,"y":0.32},{"x":1566499620000,"y":0.21},{"x":1566499680000,"y":0.17},{"x":1566499740000,"y":0.2},{"x":1566499800000,"y":0.3},{"x":1566499860000,"y":0.12},{"x":1566499920000,"y":0.31},{"x":1566499980000,"y":0.13},{"x":1566500040000,"y":0.12},{"x":1566500100000,"y":0.3},{"x":1566500160000,"y":0.14},{"x":1566500220000,"y":0.26},{"x":1566500280000,"y":0.12},{"x":1566500340000,"y":0.11},{"x":1566500400000,"y":0.5},{"x":1566500460000,"y":0.18},{"x":1566500520000,"y":0.34},{"x":1566500580000,"y":0.11},{"x":1566500640000,"y":0.11},{"x":1566500700000,"y":0.2},{"x":1566500760000,"y":0.16},{"x":1566500820000,"y":0.35},{"x":1566500880000,"y":0.17},{"x":1566500940000,"y":0.27},{"x":1566501000000,"y":0.22},{"x":1566501060000,"y":1.11},{"x":1566501120000,"y":0.25},{"x":1566501180000,"y":14.9},{"x":1566501240000,"y":0.35},{"x":1566501300000,"y":0.25},{"x":1566501360000,"y":0.14},{"x":1566501420000,"y":0.31},{"x":1566501480000,"y":0.14},{"x":1566501540000,"y":2.57},{"x":1566501600000,"y":8.21},{"x":1566501660000,"y":2.6},{"x":1566501720000,"y":2.38},{"x":1566501780000,"y":15.64},{"x":1566501840000,"y":15.65},{"x":1566501900000,"y":16.22},{"x":1566501960000,"y":15.73},{"x":1566502020000,"y":0.53},{"x":1566502080000,"y":0.18},{"x":1566502140000,"y":0.16},{"x":1566502200000,"y":0.33},{"x":1566502260000,"y":0.13},{"x":1566502320000,"y":4.41},{"x":1566502380000,"y":0.38},{"x":1566502440000,"y":1.06},{"x":1566502500000,"y":17.74},{"x":1566502560000,"y":0.34},{"x":1566502620000,"y":12.25},{"x":1566502680000,"y":4.12},{"x":1566502740000,"y":2.84},{"x":1566502800000,"y":16.35},{"x":1566502860000,"y":0.46},{"x":1566502920000,"y":0.22},{"x":1566502980000,"y":0.32},{"x":1566503040000,"y":0.17},{"x":1566503100000,"y":0.29},{"x":1566503160000,"y":0.12},{"x":1566503220000,"y":0.14},{"x":1566503280000,"y":0.33},{"x":1566503340000,"y":0.17},{"x":1566503400000,"y":0.21},{"x":1566503460000,"y":0.17},{"x":1566503520000,"y":0.14},{"x":1566503580000,"y":0.34},{"x":1566503640000,"y":0.18},{"x":1566503700000,"y":0.33},{"x":1566503760000,"y":0.22},{"x":1566503820000,"y":4.19},{"x":1566503880000,"y":3.89},{"x":1566503940000,"y":0.66},{"x":1566504000000,"y":1.31},{"x":1566504060000,"y":0.19},{"x":1566504120000,"y":0.17},{"x":1566504180000,"y":0.37},{"x":1566504240000,"y":0.13},{"x":1566504300000,"y":0.39},{"x":1566504360000,"y":0.22},{"x":1566504420000,"y":0.24},{"x":1566504480000,"y":16.97},{"x":1566504540000,"y":0.49},{"x":1566504600000,"y":0.32},{"x":1566504660000,"y":0.2},{"x":1566504720000,"y":0.16},{"x":1566504780000,"y":0.2},{"x":1566504840000,"y":0.4},{"x":1566504900000,"y":0.4},{"x":1566504960000,"y":0.15},{"x":1566505020000,"y":0.18},{"x":1566505080000,"y":0.18},{"x":1566505140000,"y":0.29},{"x":1566505200000,"y":0.36},{"x":1566505260000,"y":0.33},{"x":1566505320000,"y":0.23},{"x":1566505380000,"y":0.2},{"x":1566505440000,"y":0.48},{"x":1566505500000,"y":0.27},{"x":1566505560000,"y":0.21},{"x":1566505620000,"y":0.19},{"x":1566505680000,"y":0.17},{"x":1566505740000,"y":0.29},{"x":1566505800000,"y":0.24},{"x":1566505860000,"y":0.17},{"x":1566505920000,"y":0.17},{"x":1566505980000,"y":0.12},{"x":1566506040000,"y":0.31},{"x":1566506100000,"y":0.31},{"x":1566506160000,"y":0.15},{"x":1566506220000,"y":0.15},{"x":1566506280000,"y":0.16},{"x":1566506340000,"y":0.53},{"x":1566506400000,"y":0.29},{"x":1566506460000,"y":0.15},{"x":1566506520000,"y":0.17},{"x":1566506580000,"y":0.14},{"x":1566506640000,"y":0.17},{"x":1566506700000,"y":0.38},{"x":1566506760000,"y":0.17},{"x":1566506820000,"y":0.15},{"x":1566506880000,"y":0.17},{"x":1566506940000,"y":0.13},{"x":1566507000000,"y":0.44},{"x":1566507060000,"y":0.12},{"x":1566507120000,"y":0.12},{"x":1566507180000,"y":0.11},{"x":1566507240000,"y":0.11},{"x":1566507300000,"y":0.34},{"x":1566507360000,"y":0.15},{"x":1566507420000,"y":0.11},{"x":1566507480000,"y":0.12},{"x":1566507540000,"y":0.13},{"x":1566507600000,"y":0.62},{"x":1566507660000,"y":0.27},{"x":1566507720000,"y":0.2},{"x":1566507780000,"y":0.14},{"x":1566507840000,"y":0.17},{"x":1566507900000,"y":0.53},{"x":1566507960000,"y":0.22},{"x":1566508020000,"y":0.17},{"x":1566508080000,"y":0.12},{"x":1566508140000,"y":0.32},{"x":1566508200000,"y":16.99},{"x":1566508260000,"y":0.32},{"x":1566508320000,"y":0.13},{"x":1566508380000,"y":0.16},{"x":1566508440000,"y":0.14},{"x":1566508500000,"y":0.48},{"x":1566508560000,"y":0.15},{"x":1566508620000,"y":0.2},{"x":1566508680000,"y":0.12},{"x":1566508740000,"y":0.16},{"x":1566508800000,"y":0.45},{"x":1566508860000,"y":0.22},{"x":1566508920000,"y":0.16},{"x":1566508980000,"y":0.14},{"x":1566509040000,"y":0.21},{"x":1566509100000,"y":0.39},{"x":1566509160000,"y":0.46},{"x":1566509220000,"y":0.17},{"x":1566509280000,"y":0.2},{"x":1566509340000,"y":0.16},{"x":1566509400000,"y":0.39},{"x":1566509460000,"y":0.32},{"x":1566509520000,"y":0.21},{"x":1566509580000,"y":0.15},{"x":1566509640000,"y":0.14},{"x":1566509700000,"y":0.3},{"x":1566509760000,"y":0.33},{"x":1566509820000,"y":0.17},{"x":1566509880000,"y":0.16},{"x":1566509940000,"y":0.34},{"x":1566510000000,"y":0.26},{"x":1566510060000,"y":0.26},{"x":1566510120000,"y":0.16},{"x":1566510180000,"y":0.2},{"x":1566510240000,"y":0.19},{"x":1566510300000,"y":0.28},{"x":1566510360000,"y":0.37},{"x":1566510420000,"y":0.19},{"x":1566510480000,"y":0.21},{"x":1566510540000,"y":0.24},{"x":1566510600000,"y":0.41},{"x":1566510660000,"y":0.36},{"x":1566510720000,"y":0.17},{"x":1566510780000,"y":0.25},{"x":1566510840000,"y":0.15},{"x":1566510900000,"y":0.32},{"x":1566510960000,"y":0.33},{"x":1566511020000,"y":0.17},{"x":1566511080000,"y":0.16},{"x":1566511140000,"y":0.14},{"x":1566511200000,"y":0.33},{"x":1566511260000,"y":0.19},{"x":1566511320000,"y":0.32},{"x":1566511380000,"y":0.19},{"x":1566511440000,"y":0.29},{"x":1566511500000,"y":0.25},{"x":1566511560000,"y":0.32},{"x":1566511620000,"y":0.32},{"x":1566511680000,"y":0.15},{"x":1566511740000,"y":0.4},{"x":1566511800000,"y":0.25},{"x":1566511860000,"y":0.14},{"x":1566511920000,"y":0.25},{"x":1566511980000,"y":0.25},{"x":1566512040000,"y":0.25},{"x":1566512100000,"y":0.33},{"x":1566512160000,"y":0.16},{"x":1566512220000,"y":0.32},{"x":1566512280000,"y":0.21},{"x":1566512340000,"y":0.18},{"x":1566512400000,"y":0.3},{"x":1566512460000,"y":0.17},{"x":1566512520000,"y":0.29},{"x":1566512580000,"y":0.12},{"x":1566512640000,"y":0.12},{"x":1566512700000,"y":0.25},{"x":1566512760000,"y":0.17},{"x":1566512820000,"y":0.32},{"x":1566512880000,"y":0.17},{"x":1566512940000,"y":0.15},{"x":1566513000000,"y":0.28},{"x":1566513060000,"y":0.21},{"x":1566513120000,"y":0.32},{"x":1566513180000,"y":0.15},{"x":1566513240000,"y":0.13},{"x":1566513300000,"y":0.33},{"x":1566513360000,"y":0.17},{"x":1566513420000,"y":0.29},{"x":1566513480000,"y":0.12},{"x":1566513540000,"y":0.31},{"x":1566513600000,"y":0.27},{"x":1566513660000,"y":0.14},{"x":1566513720000,"y":0.17},{"x":1566513780000,"y":0.32},{"x":1566513840000,"y":0.17},{"x":1566513900000,"y":0.29},{"x":1566513960000,"y":0.21},{"x":1566514020000,"y":0.19},{"x":1566514080000,"y":0.32},{"x":1566514140000,"y":0.16},{"x":1566514200000,"y":0.29},{"x":1566514260000,"y":0.11},{"x":1566514320000,"y":0.2},{"x":1566514380000,"y":0.33},{"x":1566514440000,"y":0.16},{"x":1566514500000,"y":0.35},{"x":1566514560000,"y":0.16},{"x":1566514620000,"y":0.13},{"x":1566514680000,"y":0.28},{"x":1566514740000,"y":0.11},{"x":1566514800000,"y":0.39},{"x":1566514860000,"y":0.16},{"x":1566514920000,"y":0.15},{"x":1566514980000,"y":0.27},{"x":1566515040000,"y":0.16},{"x":1566515100000,"y":0.33},{"x":1566515160000,"y":0.17},{"x":1566515220000,"y":0.13},{"x":1566515280000,"y":0.27},{"x":1566515340000,"y":0.31},{"x":1566515400000,"y":0.37},{"x":1566515460000,"y":0.14},{"x":1566515520000,"y":0.13},{"x":1566515580000,"y":16.74},{"x":1566515640000,"y":0.14},{"x":1566515700000,"y":0.32},{"x":1566515760000,"y":0.18},{"x":1566515820000,"y":0.18},{"x":1566515880000,"y":0.27},{"x":1566515940000,"y":0.12},{"x":1566516000000,"y":0.2},{"x":1566516060000,"y":0.17},{"x":1566516120000,"y":0.12},{"x":1566516180000,"y":0.13},{"x":1566516240000,"y":0.27},{"x":1566516300000,"y":0.28},{"x":1566516360000,"y":0.1},{"x":1566516420000,"y":0.1},{"x":1566516480000,"y":0.12},{"x":1566516540000,"y":0.26},{"x":1566516600000,"y":0.26},{"x":1566516660000,"y":0.1},{"x":1566516720000,"y":0.15},{"x":1566516780000,"y":0.19},{"x":1566516840000,"y":0.28},{"x":1566516900000,"y":0.24},{"x":1566516960000,"y":0.14},{"x":1566517020000,"y":0.16},{"x":1566517080000,"y":0.15},{"x":1566517140000,"y":0.43},{"x":1566517200000,"y":0.34},{"x":1566517260000,"y":0.15},{"x":1566517320000,"y":0.14},{"x":1566517380000,"y":0.2},{"x":1566517440000,"y":0.34},{"x":1566517500000,"y":0.38},{"x":1566517560000,"y":0.12},{"x":1566517620000,"y":0.15},{"x":1566517680000,"y":0.14},{"x":1566517740000,"y":0.31},{"x":1566517800000,"y":0.27},{"x":1566517860000,"y":0.13},{"x":1566517920000,"y":0.13},{"x":1566517980000,"y":0.19},{"x":1566518040000,"y":0.32},{"x":1566518100000,"y":0.26},{"x":1566518160000,"y":0.16},{"x":1566518220000,"y":0.17},{"x":1566518280000,"y":0.17},{"x":1566518340000,"y":0.14},{"x":1566518400000,"y":0.5},{"x":1566518460000,"y":0.18},{"x":1566518520000,"y":0.17},{"x":1566518580000,"y":0.14},{"x":1566518640000,"y":0.2},{"x":1566518700000,"y":0.41},{"x":1566518760000,"y":0.19},{"x":1566518820000,"y":0.16},{"x":1566518880000,"y":0.19},{"x":1566518940000,"y":0.42},{"x":1566519000000,"y":0.48},{"x":1566519060000,"y":0.22},{"x":1566519120000,"y":0.17},{"x":1566519180000,"y":0.34},{"x":1566519240000,"y":0.31},{"x":1566519300000,"y":0.67},{"x":1566519360000,"y":0.25},{"x":1566519420000,"y":0.23},{"x":1566519480000,"y":0.2},{"x":1566519540000,"y":0.24},{"x":1566519600000,"y":0.4},{"x":1566519660000,"y":0.25},{"x":1566519720000,"y":0.22},{"x":1566519780000,"y":0.23},{"x":1566519840000,"y":0.27},{"x":1566519900000,"y":0.5},{"x":1566519960000,"y":0.23},{"x":1566520020000,"y":0.24},{"x":1566520080000,"y":0.2},{"x":1566520140000,"y":0.2},{"x":1566520200000,"y":0.42},{"x":1566520260000,"y":0.23},{"x":1566520320000,"y":0.23},{"x":1566520380000,"y":0.23},{"x":1566520440000,"y":0.22},{"x":1566520500000,"y":0.6},{"x":1566520560000,"y":0.38},{"x":1566520620000,"y":0.19},{"x":1566520680000,"y":0.24},{"x":1566520740000,"y":0.29},{"x":1566520800000,"y":0.32},{"x":1566520860000,"y":0.32},{"x":1566520920000,"y":0.2},{"x":1566520980000,"y":0.21},{"x":1566521040000,"y":0.22},{"x":1566521100000,"y":0.27},{"x":1566521160000,"y":0.32},{"x":1566521220000,"y":0.24},{"x":1566521280000,"y":0.22},{"x":1566521340000,"y":0.19},{"x":1566521400000,"y":0.29},{"x":1566521460000,"y":0.35},{"x":1566521520000,"y":0.19},{"x":1566521580000,"y":0.19},{"x":1566521640000,"y":0.19},{"x":1566521700000,"y":0.33},{"x":1566521760000,"y":0.34},{"x":1566521820000,"y":0.17},{"x":1566521880000,"y":0.19},{"x":1566521940000,"y":0.22},{"x":1566522000000,"y":0.49},{"x":1566522060000,"y":0.35},{"x":1566522120000,"y":0.21},{"x":1566522180000,"y":0.2},{"x":1566522240000,"y":0.27},{"x":1566522300000,"y":0.3},{"x":1566522360000,"y":0.35},{"x":1566522420000,"y":0.19},{"x":1566522480000,"y":0.18},{"x":1566522540000,"y":0.38},{"x":1566522600000,"y":0.46},{"x":1566522660000,"y":0.18},{"x":1566522720000,"y":0.31},{"x":1566522780000,"y":0.21},{"x":1566522840000,"y":0.23},{"x":1566522900000,"y":0.34},{"x":1566522960000,"y":0.22},{"x":1566523020000,"y":0.39},{"x":1566523080000,"y":0.23},{"x":1566523140000,"y":0.18},{"x":1566523200000,"y":0.29},{"x":1566523260000,"y":0.19},{"x":1566523320000,"y":0.34},{"x":1566523380000,"y":0.22},{"x":1566523440000,"y":0.18},{"x":1566523500000,"y":0.27},{"x":1566523560000,"y":0.17},{"x":1566523620000,"y":0.35},{"x":1566523680000,"y":0.22},{"x":1566523740000,"y":0.19},{"x":1566523800000,"y":0.32},{"x":1566523860000,"y":0.2},{"x":1566523920000,"y":0.34},{"x":1566523980000,"y":0.2},{"x":1566524040000,"y":0.18},{"x":1566524100000,"y":0.36},{"x":1566524160000,"y":0.21},{"x":1566524220000,"y":0.36},{"x":1566524280000,"y":0.2},{"x":1566524340000,"y":0.37},{"x":1566524400000,"y":0.31},{"x":1566524460000,"y":0.19},{"x":1566524520000,"y":0.34},{"x":1566524580000,"y":0.21},{"x":1566524640000,"y":0.19},{"x":1566524700000,"y":0.34},{"x":1566524760000,"y":0.21},{"x":1566524820000,"y":0.19},{"x":1566524880000,"y":0.4},{"x":1566524940000,"y":0.22},{"x":1566525000000,"y":0.33},{"x":1566525060000,"y":0.23},{"x":1566525120000,"y":0.18},{"x":1566525180000,"y":0.33},{"x":1566525240000,"y":0.58},{"x":1566525300000,"y":0.37},{"x":1566525360000,"y":0.29},{"x":1566525420000,"y":0.22},{"x":1566525480000,"y":0.39},{"x":1566525540000,"y":0.2},{"x":1566525600000,"y":0.44},{"x":1566525660000,"y":0.25},{"x":1566525720000,"y":0.27},{"x":1566525780000,"y":5.13},{"x":1566525840000,"y":0.37},{"x":1566525900000,"y":0.38},{"x":1566525960000,"y":0.28},{"x":1566526020000,"y":0.44},{"x":1566526080000,"y":0.37},{"x":1566526140000,"y":0.32},{"x":1566526200000,"y":0.29},{"x":1566526260000,"y":0.25},{"x":1566526320000,"y":0.21},{"x":1566526380000,"y":0.43},{"x":1566526440000,"y":0.28},{"x":1566526500000,"y":0.36},{"x":1566526560000,"y":0.22},{"x":1566526620000,"y":0.2},{"x":1566526680000,"y":0.39},{"x":1566526740000,"y":0.24},{"x":1566526800000,"y":0.34},{"x":1566526860000,"y":0.23},{"x":1566526920000,"y":0.24},{"x":1566526980000,"y":0.25},{"x":1566527040000,"y":0.37},{"x":1566527100000,"y":0.3},{"x":1566527160000,"y":0.2},{"x":1566527220000,"y":0.23},{"x":1566527280000,"y":0.2},{"x":1566527340000,"y":0.37},{"x":1566527400000,"y":0.36},{"x":1566527460000,"y":0.22},{"x":1566527520000,"y":0.24},{"x":1566527580000,"y":0.21},{"x":1566527640000,"y":0.36},{"x":1566527700000,"y":0.49},{"x":1566527760000,"y":0.23},{"x":1566527820000,"y":0.2},{"x":1566527880000,"y":0.21},{"x":1566527940000,"y":0.53},{"x":1566528000000,"y":0.32},{"x":1566528060000,"y":0.23},{"x":1566528120000,"y":0.22},{"x":1566528180000,"y":0.21},{"x":1566528240000,"y":0.36},{"x":1566528300000,"y":0.32},{"x":1566528360000,"y":0.24},{"x":1566528420000,"y":0.22},{"x":1566528480000,"y":0.24},{"x":1566528540000,"y":0.37},{"x":1566528600000,"y":0.39},{"x":1566528660000,"y":0.17},{"x":1566528720000,"y":0.12},{"x":1566528780000,"y":0.13},{"x":1566528840000,"y":0.28},{"x":1566528900000,"y":0.24},{"x":1566528960000,"y":0.12},{"x":1566529020000,"y":0.12},{"x":1566529080000,"y":0.13},{"x":1566529140000,"y":0.27},{"x":1566529200000,"y":0.58},{"x":1566529260000,"y":0.2},{"x":1566529320000,"y":0.17},{"x":1566529380000,"y":0.19},{"x":1566529440000,"y":0.13},{"x":1566529500000,"y":0.47},{"x":1566529560000,"y":0.19},{"x":1566529620000,"y":0.17},{"x":1566529680000,"y":1.23},{"x":1566529740000,"y":0.36},{"x":1566529800000,"y":0.47},{"x":1566529860000,"y":0.14},{"x":1566529920000,"y":0.16},{"x":1566529980000,"y":0.12},{"x":1566530040000,"y":0.28},{"x":1566530100000,"y":0.43},{"x":1566530160000,"y":0.12},{"x":1566530220000,"y":0.18},{"x":1566530280000,"y":0.15},{"x":1566530340000,"y":0.15},{"x":1566530400000,"y":0.36},{"x":1566530460000,"y":0.11},{"x":1566530520000,"y":0.15},{"x":1566530580000,"y":0.12},{"x":1566530640000,"y":0.11},{"x":1566530700000,"y":0.34},{"x":1566530760000,"y":0.12},{"x":1566530820000,"y":0.11},{"x":1566530880000,"y":0.13},{"x":1566530940000,"y":0.12},{"x":1566531000000,"y":0.4},{"x":1566531060000,"y":0.14},{"x":1566531120000,"y":0.17},{"x":1566531180000,"y":0.12},{"x":1566531240000,"y":0.12},{"x":1566531300000,"y":0.4},{"x":1566531360000,"y":0.12},{"x":1566531420000,"y":0.2},{"x":1566531480000,"y":0.12},{"x":1566531540000,"y":0.41},{"x":1566531600000,"y":0.41},{"x":1566531660000,"y":0.14},{"x":1566531720000,"y":0.18},{"x":1566531780000,"y":0.12},{"x":1566531840000,"y":0.13},{"x":1566531900000,"y":0.35},{"x":1566531960000,"y":0.25},{"x":1566532020000,"y":0.14},{"x":1566532080000,"y":0.1},{"x":1566532140000,"y":0.13},{"x":1566532200000,"y":0.2},{"x":1566532260000,"y":0.24},{"x":1566532320000,"y":0.12},{"x":1566532380000,"y":0.11},{"x":1566532440000,"y":0.13},{"x":1566532500000,"y":0.25},{"x":1566532560000,"y":0.3},{"x":1566532620000,"y":0.1},{"x":1566532680000,"y":0.11},{"x":1566532740000,"y":0.14},{"x":1566532800000,"y":0.39},{"x":1566532860000,"y":0.29},{"x":1566532920000,"y":0.19},{"x":1566532980000,"y":0.15},{"x":1566533040000,"y":0.14},{"x":1566533100000,"y":0.2},{"x":1566533160000,"y":0.25},{"x":1566533220000,"y":0.1},{"x":1566533280000,"y":0.14},{"x":1566533340000,"y":0.21},{"x":1566533400000,"y":0.25},{"x":1566533460000,"y":0.28},{"x":1566533520000,"y":0.12},{"x":1566533580000,"y":0.19},{"x":1566533640000,"y":0.17},{"x":1566533700000,"y":0.37},{"x":1566533760000,"y":0.34},{"x":1566533820000,"y":0.16},{"x":1566533880000,"y":0.12},{"x":1566533940000,"y":0.15},{"x":1566534000000,"y":0.29},{"x":1566534060000,"y":0.21},{"x":1566534120000,"y":0.3},{"x":1566534180000,"y":0.15},{"x":1566534240000,"y":0.17},{"x":1566534300000,"y":0.22},{"x":1566534360000,"y":0.14},{"x":1566534420000,"y":0.25},{"x":1566534480000,"y":0.15},{"x":1566534540000,"y":0.15},{"x":1566534600000,"y":0.33},{"x":1566534660000,"y":0.14},{"x":1566534720000,"y":0.35},{"x":1566534780000,"y":0.19},{"x":1566534840000,"y":0.13},{"x":1566534900000,"y":0.31},{"x":1566534960000,"y":0.15},{"x":1566535020000,"y":0.22},{"x":1566535080000,"y":0.1},{"x":1566535140000,"y":0.29},{"x":1566535200000,"y":0.23},{"x":1566535260000,"y":0.13},{"x":1566535320000,"y":0.26},{"x":1566535380000,"y":0.12},{"x":1566535440000,"y":0.15},{"x":1566535500000,"y":0.3},{"x":1566535560000,"y":0.13},{"x":1566535620000,"y":0.31},{"x":1566535680000,"y":0.12},{"x":1566535740000,"y":0.13},{"x":1566535800000,"y":0.21},{"x":1566535860000,"y":0.12},{"x":1566535920000,"y":0.3},{"x":1566535980000,"y":0.14},{"x":1566536040000,"y":0.13},{"x":1566536100000,"y":0.27},{"x":1566536160000,"y":0.15},{"x":1566536220000,"y":0.25},{"x":1566536280000,"y":0.17},{"x":1566536340000,"y":0.15},{"x":1566536400000,"y":1.82},{"x":1566536460000,"y":0.17},{"x":1566536520000,"y":0.11},{"x":1566536580000,"y":0.28},{"x":1566536640000,"y":0.14},{"x":1566536700000,"y":0.36},{"x":1566536760000,"y":0.18},{"x":1566536820000,"y":0.15},{"x":1566536880000,"y":0.25},{"x":1566536940000,"y":0.32},{"x":1566537000000,"y":0.2},{"x":1566537060000,"y":0.12},{"x":1566537120000,"y":0.12},{"x":1566537180000,"y":0.26},{"x":1566537240000,"y":0.15},{"x":1566537300000,"y":0.35},{"x":1566537360000,"y":0.19},{"x":1566537420000,"y":0.15},{"x":1566537480000,"y":0.3},{"x":1566537540000,"y":0.11},{"x":1566537600000,"y":0.31},{"x":1566537660000,"y":0.17},{"x":1566537720000,"y":0.13},{"x":1566537780000,"y":0.26},{"x":1566537840000,"y":0.13},{"x":1566537900000,"y":0.28},{"x":1566537960000,"y":0.15},{"x":1566538020000,"y":0.12},{"x":1566538080000,"y":0.37},{"x":1566538140000,"y":0.13},{"x":1566538200000,"y":0.37},{"x":1566538260000,"y":0.2},{"x":1566538320000,"y":0.16},{"x":1566538380000,"y":0.27},{"x":1566538440000,"y":0.15},{"x":1566538500000,"y":0.31},{"x":1566538560000,"y":0.11},{"x":1566538620000,"y":0.17},{"x":1566538680000,"y":0.14},{"x":1566538740000,"y":0.72},{"x":1566538800000,"y":0.24},{"x":1566538860000,"y":0.12},{"x":1566538920000,"y":0.15},{"x":1566538980000,"y":0.12},{"x":1566539040000,"y":0.25},{"x":1566539100000,"y":0.25},{"x":1566539160000,"y":0.13},{"x":1566539220000,"y":0.17},{"x":1566539280000,"y":0.14},{"x":1566539340000,"y":0.27},{"x":1566539400000,"y":0.23},{"x":1566539460000,"y":0.12},{"x":1566539520000,"y":0.15},{"x":1566539580000,"y":0.15},{"x":1566539640000,"y":0.25},{"x":1566539700000,"y":0.23},{"x":1566539760000,"y":0.12},{"x":1566539820000,"y":0.17},{"x":1566539880000,"y":0.15},{"x":1566539940000,"y":0.27},{"x":1566540000000,"y":0.4},{"x":1566540060000,"y":0.2},{"x":1566540120000,"y":0.19},{"x":1566540180000,"y":0.22},{"x":1566540240000,"y":0.32},{"x":1566540300000,"y":0.27},{"x":1566540360000,"y":0.15},{"x":1566540420000,"y":0.15},{"x":1566540480000,"y":0.15},{"x":1566540540000,"y":0.48},{"x":1566540600000,"y":6.99},{"x":1566540660000,"y":0.17},{"x":1566540720000,"y":0.1},{"x":1566540780000,"y":0.18},{"x":1566540840000,"y":0.16},{"x":1566540900000,"y":0.48},{"x":1566540960000,"y":0.11},{"x":1566541020000,"y":0.15},{"x":1566541080000,"y":0.19},{"x":1566541140000,"y":0.12},{"x":1566541200000,"y":0.34},{"x":1566541260000,"y":0.12},{"x":1566541320000,"y":0.13},{"x":1566541380000,"y":0.12},{"x":1566541440000,"y":0.11},{"x":1566541500000,"y":0.55},{"x":1566541560000,"y":0.16},{"x":1566541620000,"y":0.12},{"x":1566541680000,"y":0.17},{"x":1566541740000,"y":0.2},{"x":1566541800000,"y":0.51},{"x":1566541860000,"y":0.13},{"x":1566541920000,"y":0.19},{"x":1566541980000,"y":0.14},{"x":1566542040000,"y":0.12},{"x":1566542100000,"y":0.4},{"x":1566542160000,"y":0.12},{"x":1566542220000,"y":0.11},{"x":1566542280000,"y":0.06},{"x":1566542340000,"y":0.25},{"x":1566542400000,"y":0.41},{"x":1566542460000,"y":0.13},{"x":1566542520000,"y":0.12},{"x":1566542580000,"y":0.09},{"x":1566542640000,"y":0.07},{"x":1566542700000,"y":0.33},{"x":1566542760000,"y":0.12},{"x":1566542820000,"y":0.12},{"x":1566542880000,"y":0.12},{"x":1566542940000,"y":0.12},{"x":1566543000000,"y":0.25},{"x":1566543060000,"y":0.27},{"x":1566543120000,"y":0.09},{"x":1566543180000,"y":0.07},{"x":1566543240000,"y":0.09},{"x":1566543300000,"y":0.23},{"x":1566543360000,"y":0.31},{"x":1566543420000,"y":0.1},{"x":1566543480000,"y":0.09},{"x":1566543540000,"y":0.14},{"x":1566543600000,"y":0.23},{"x":1566543660000,"y":0.24},{"x":1566543720000,"y":0.12},{"x":1566543780000,"y":0.11},{"x":1566543840000,"y":0.14},{"x":1566543900000,"y":0.17},{"x":1566543960000,"y":0.26},{"x":1566544020000,"y":0.08},{"x":1566544080000,"y":0.09},{"x":1566544140000,"y":0.3},{"x":1566544200000,"y":0.31},{"x":1566544260000,"y":0.26},{"x":1566544320000,"y":0.12},{"x":1566544380000,"y":0.08},{"x":1566544440000,"y":0.15},{"x":1566544500000,"y":0.24},{"x":1566544560000,"y":0.23},{"x":1566544620000,"y":0.83},{"x":1566544680000,"y":0.11},{"x":1566544740000,"y":0.16},{"x":1566544800000,"y":0.36},{"x":1566544860000,"y":0.32},{"x":1566544920000,"y":0.15},{"x":1566544980000,"y":0.15},{"x":1566545040000,"y":0.1},{"x":1566545100000,"y":0.26},{"x":1566545160000,"y":0.09},{"x":1566545220000,"y":0.23},{"x":1566545280000,"y":0.1},{"x":1566545340000,"y":0.1},{"x":1566545400000,"y":0.3},{"x":1566545460000,"y":0.06},{"x":1566545520000,"y":0.29},{"x":1566545580000,"y":0.1},{"x":1566545640000,"y":0.09},{"x":1566545700000,"y":0.24},{"x":1566545760000,"y":0.13},{"x":1566545820000,"y":0.27},{"x":1566545880000,"y":0.12},{"x":1566545940000,"y":0.31},{"x":1566546000000,"y":0.24},{"x":1566546060000,"y":0.1},{"x":1566546120000,"y":0.28},{"x":1566546180000,"y":0.12},{"x":1566546240000,"y":0.11},{"x":1566546300000,"y":0.23},{"x":1566546360000,"y":0.1},{"x":1566546420000,"y":0.24},{"x":1566546480000,"y":0.15},{"x":1566546540000,"y":0.1},{"x":1566546600000,"y":0.31},{"x":1566546660000,"y":0.14},{"x":1566546720000,"y":0.28},{"x":1566546780000,"y":0.14},{"x":1566546840000,"y":0.11},{"x":1566546900000,"y":0.19},{"x":1566546960000,"y":0.08},{"x":1566547020000,"y":0.25},{"x":1566547080000,"y":0.12},{"x":1566547140000,"y":0.12},{"x":1566547200000,"y":0.44},{"x":1566547260000,"y":0.16},{"x":1566547320000,"y":0.16},{"x":1566547380000,"y":0.27},{"x":1566547440000,"y":0.13},{"x":1566547500000,"y":0.2},{"x":1566547560000,"y":0.14},{"x":1566547620000,"y":0.17},{"x":1566547680000,"y":5.43},{"x":1566547740000,"y":0.24},{"x":1566547800000,"y":0.29},{"x":1566547860000,"y":0.15},{"x":1566547920000,"y":0.08},{"x":1566547980000,"y":0.26},{"x":1566548040000,"y":0.18},{"x":1566548100000,"y":0.34},{"x":1566548160000,"y":0.2},{"x":1566548220000,"y":0.1},{"x":1566548280000,"y":1.04},{"x":1566548340000,"y":0.09},{"x":1566548400000,"y":0.26},{"x":1566548460000,"y":0.19},{"x":1566548520000,"y":0.17},{"x":1566548580000,"y":0.34},{"x":1566548640000,"y":0.1},{"x":1566548700000,"y":0.27},{"x":1566548760000,"y":0.1},{"x":1566548820000,"y":0.11},{"x":1566548880000,"y":0.32},{"x":1566548940000,"y":0.11},{"x":1566549000000,"y":0.34},{"x":1566549060000,"y":0.22},{"x":1566549120000,"y":0.17},{"x":1566549180000,"y":0.3},{"x":1566549240000,"y":0.22},{"x":1566549300000,"y":0.47},{"x":1566549360000,"y":0.18},{"x":1566549420000,"y":0.16},{"x":1566549480000,"y":0.3},{"x":1566549540000,"y":0.39},{"x":1566549600000,"y":0.25},{"x":1566549660000,"y":0.12},{"x":1566549720000,"y":0.18},{"x":1566549780000,"y":0.16},{"x":1566549840000,"y":0.3},{"x":1566549900000,"y":0.27},{"x":1566549960000,"y":0.14},{"x":1566550020000,"y":0.15},{"x":1566550080000,"y":0.15},{"x":1566550140000,"y":0.37},{"x":1566550200000,"y":0.22},{"x":1566550260000,"y":0.13},{"x":1566550320000,"y":0.12},{"x":1566550380000,"y":0.09},{"x":1566550440000,"y":0.28},{"x":1566550500000,"y":0.28},{"x":1566550560000,"y":0.19},{"x":1566550620000,"y":0.13},{"x":1566550680000,"y":0.12},{"x":1566550740000,"y":0.26},{"x":1566550800000,"y":0.56},{"x":1566550860000,"y":0.29},{"x":1566550920000,"y":0.22},{"x":1566550980000,"y":0.15},{"x":1566551040000,"y":0.29},{"x":1566551100000,"y":0.22},{"x":1566551160000,"y":0.17},{"x":1566551220000,"y":0.15},{"x":1566551280000,"y":0.15},{"x":1566551340000,"y":0.44},{"x":1566551400000,"y":0.31},{"x":1566551460000,"y":0.13},{"x":1566551520000,"y":0.16},{"x":1566551580000,"y":0.21},{"x":1566551640000,"y":0.11},{"x":1566551700000,"y":0.44},{"x":1566551760000,"y":0.12},{"x":1566551820000,"y":0.15},{"x":1566551880000,"y":0.15},{"x":1566551940000,"y":0.16},{"x":1566552000000,"y":0.44},{"x":1566552060000,"y":0.16},{"x":1566552120000,"y":0.18},{"x":1566552180000,"y":0.15},{"x":1566552240000,"y":0.18},{"x":1566552300000,"y":0.41},{"x":1566552360000,"y":0.18},{"x":1566552420000,"y":0.2},{"x":1566552480000,"y":0.27},{"x":1566552540000,"y":0.22},{"x":1566552600000,"y":0.58},{"x":1566552660000,"y":0.24},{"x":1566552720000,"y":0.22},{"x":1566552780000,"y":0.19},{"x":1566552840000,"y":0.23},{"x":1566552900000,"y":0.42},{"x":1566552960000,"y":0.22},{"x":1566553020000,"y":0.17},{"x":1566553080000,"y":0.17},{"x":1566553140000,"y":0.35},{"x":1566553200000,"y":0.48},{"x":1566553260000,"y":0.2},{"x":1566553320000,"y":0.18},{"x":1566553380000,"y":0.19},{"x":1566553440000,"y":0.2},{"x":1566553500000,"y":0.41},{"x":1566553560000,"y":0.24},{"x":1566553620000,"y":0.2},{"x":1566553680000,"y":0.19},{"x":1566553740000,"y":0.23},{"x":1566553800000,"y":0.31},{"x":1566553860000,"y":0.36},{"x":1566553920000,"y":0.23},{"x":1566553980000,"y":0.19},{"x":1566554040000,"y":0.18},{"x":1566554100000,"y":0.34},{"x":1566554160000,"y":0.31},{"x":1566554220000,"y":0.17},{"x":1566554280000,"y":0.17},{"x":1566554340000,"y":0.17},{"x":1566554400000,"y":0.47},{"x":1566554460000,"y":0.44},{"x":1566554520000,"y":0.21},{"x":1566554580000,"y":0.23},{"x":1566554640000,"y":0.24},{"x":1566554700000,"y":0.27},{"x":1566554760000,"y":0.32},{"x":1566554820000,"y":0.17},{"x":1566554880000,"y":0.2},{"x":1566554940000,"y":0.45},{"x":1566555000000,"y":0.3},{"x":1566555060000,"y":0.32},{"x":1566555120000,"y":0.18},{"x":1566555180000,"y":0.2},{"x":1566555240000,"y":0.22},{"x":1566555300000,"y":0.32},{"x":1566555360000,"y":0.33},{"x":1566555420000,"y":0.19},{"x":1566555480000,"y":0.21},{"x":1566555540000,"y":0.32},{"x":1566555600000,"y":0.42},{"x":1566555660000,"y":0.57},{"x":1566555720000,"y":0.29},{"x":1566555780000,"y":0.31},{"x":1566555840000,"y":0.28},{"x":1566555900000,"y":0.46},{"x":1566555960000,"y":0.38},{"x":1566556020000,"y":0.46},{"x":1566556080000,"y":0.31},{"x":1566556140000,"y":0.24},{"x":1566556200000,"y":0.37},{"x":1566556260000,"y":0.3},{"x":1566556320000,"y":0.4},{"x":1566556380000,"y":0.21},{"x":1566556440000,"y":0.22},{"x":1566556500000,"y":0.37},{"x":1566556560000,"y":0.2},{"x":1566556620000,"y":0.4},{"x":1566556680000,"y":0.24},{"x":1566556740000,"y":0.41},{"x":1566556800000,"y":0.4},{"x":1566556860000,"y":0.18},{"x":1566556920000,"y":0.37},{"x":1566556980000,"y":0.24},{"x":1566557040000,"y":0.28},{"x":1566557100000,"y":0.39},{"x":1566557160000,"y":0.25},{"x":1566557220000,"y":0.38},{"x":1566557280000,"y":0.23},{"x":1566557340000,"y":0.21},{"x":1566557400000,"y":0.3},{"x":1566557460000,"y":0.15},{"x":1566557520000,"y":0.37},{"x":1566557580000,"y":0.19},{"x":1566557640000,"y":0.2},{"x":1566557700000,"y":0.27},{"x":1566557760000,"y":0.21},{"x":1566557820000,"y":0.35},{"x":1566557880000,"y":0.19},{"x":1566557940000,"y":0.18},{"x":1566558000000,"y":0.47},{"x":1566558060000,"y":0.21},{"x":1566558120000,"y":0.36},{"x":1566558180000,"y":0.2},{"x":1566558240000,"y":0.2},{"x":1566558300000,"y":0.32},{"x":1566558360000,"y":0.19},{"x":1566558420000,"y":0.22},{"x":1566558480000,"y":0.38},{"x":1566558540000,"y":0.4},{"x":1566558600000,"y":0.41},{"x":1566558660000,"y":0.27},{"x":1566558720000,"y":0.26},{"x":1566558780000,"y":0.36},{"x":1566558840000,"y":0.28},{"x":1566558900000,"y":0.34},{"x":1566558960000,"y":0.2},{"x":1566559020000,"y":0.21},{"x":1566559080000,"y":0.34},{"x":1566559140000,"y":0.17},{"x":1566559200000,"y":0.29},{"x":1566559260000,"y":0.21},{"x":1566559320000,"y":0.21},{"x":1566559380000,"y":0.33},{"x":1566559440000,"y":0.19},{"x":1566559500000,"y":1.62},{"x":1566559560000,"y":0.18},{"x":1566559620000,"y":0.17},{"x":1566559680000,"y":0.34},{"x":1566559740000,"y":10.31},{"x":1566559800000,"y":0.36},{"x":1566559860000,"y":0.21},{"x":1566559920000,"y":0.22},{"x":1566559980000,"y":0.32},{"x":1566560040000,"y":0.17},{"x":1566560100000,"y":0.33},{"x":1566560160000,"y":0.22},{"x":1566560220000,"y":0.2},{"x":1566560280000,"y":0.31},{"x":1566560340000,"y":0.25},{"x":1566560400000,"y":0.33},{"x":1566560460000,"y":0.19},{"x":1566560520000,"y":0.15},{"x":1566560580000,"y":0.22},{"x":1566560640000,"y":0.33},{"x":1566560700000,"y":0.29},{"x":1566560760000,"y":0.2},{"x":1566560820000,"y":0.19},{"x":1566560880000,"y":0.22},{"x":1566560940000,"y":0.34},{"x":1566561000000,"y":0.33},{"x":1566561060000,"y":0.2},{"x":1566561120000,"y":0.2},{"x":1566561180000,"y":0.17},{"x":1566561240000,"y":0.34},{"x":1566561300000,"y":0.27},{"x":1566561360000,"y":0.2},{"x":1566561420000,"y":0.21},{"x":1566561480000,"y":0.2},{"x":1566561540000,"y":0.35},{"x":1566561600000,"y":0.52},{"x":1566561660000,"y":0.24},{"x":1566561720000,"y":0.19},{"x":1566561780000,"y":0.17},{"x":1566561840000,"y":0.31},{"x":1566561900000,"y":0.32},{"x":1566561960000,"y":0.14},{"x":1566562020000,"y":0.11},{"x":1566562080000,"y":0.15},{"x":1566562140000,"y":0.35},{"x":1566562200000,"y":0.29},{"x":1566562260000,"y":0.15},{"x":1566562320000,"y":0.12},{"x":1566562380000,"y":0.18},{"x":1566562440000,"y":0.34},{"x":1566562500000,"y":0.35},{"x":1566562560000,"y":0.14},{"x":1566562620000,"y":0.1},{"x":1566562680000,"y":0.1},{"x":1566562740000,"y":0.23},{"x":1566562800000,"y":0.31},{"x":1566562860000,"y":0.1},{"x":1566562920000,"y":0.1},{"x":1566562980000,"y":0.2},{"x":1566563040000,"y":0.25},{"x":1566563100000,"y":0.16},{"x":1566563160000,"y":0.12},{"x":1566563220000,"y":0.1},{"x":1566563280000,"y":0.09},{"x":1566563340000,"y":0.09},{"x":1566563400000,"y":0.49},{"x":1566563460000,"y":0.12},{"x":1566563520000,"y":0.14},{"x":1566563580000,"y":0.09},{"x":1566563640000,"y":0.1},{"x":1566563700000,"y":0.4},{"x":1566563760000,"y":0.07},{"x":1566563820000,"y":0.13},{"x":1566563880000,"y":0.11},{"x":1566563940000,"y":0.14},{"x":1566564000000,"y":0.45},{"x":1566564060000,"y":0.07},{"x":1566564120000,"y":0.11},{"x":1566564180000,"y":0.09},{"x":1566564240000,"y":0.08},{"x":1566564300000,"y":0.41},{"x":1566564360000,"y":0.11},{"x":1566564420000,"y":0.11},{"x":1566564480000,"y":0.12},{"x":1566564540000,"y":0.09},{"x":1566564600000,"y":0.35},{"x":1566564660000,"y":0.12},{"x":1566564720000,"y":0.09},{"x":1566564780000,"y":0.12},{"x":1566564840000,"y":0.07},{"x":1566564900000,"y":0.3},{"x":1566564960000,"y":0.1},{"x":1566565020000,"y":0.12},{"x":1566565080000,"y":0.07},{"x":1566565140000,"y":0.06},{"x":1566565200000,"y":0.42},{"x":1566565260000,"y":0.09},{"x":1566565320000,"y":0.08},{"x":1566565380000,"y":0.07},{"x":1566565440000,"y":0.09},{"x":1566565500000,"y":0.3},{"x":1566565560000,"y":0.11},{"x":1566565620000,"y":0.09},{"x":1566565680000,"y":0.1},{"x":1566565740000,"y":0.21},{"x":1566565800000,"y":0.24},{"x":1566565860000,"y":0.26},{"x":1566565920000,"y":0.11},{"x":1566565980000,"y":0.1},{"x":1566566040000,"y":0.14},{"x":1566566100000,"y":0.32},{"x":1566566160000,"y":0.28},{"x":1566566220000,"y":0.15},{"x":1566566280000,"y":0.07},{"x":1566566340000,"y":0.14},{"x":1566566400000,"y":0.21},{"x":1566566460000,"y":0.26},{"x":1566566520000,"y":0.08},{"x":1566566580000,"y":0.08},{"x":1566566640000,"y":0.08},{"x":1566566700000,"y":0.22},{"x":1566566760000,"y":0.24},{"x":1566566820000,"y":0.12},{"x":1566566880000,"y":0.15},{"x":1566566940000,"y":0.12},{"x":1566567000000,"y":0.23},{"x":1566567060000,"y":0.23},{"x":1566567120000,"y":0.13},{"x":1566567180000,"y":0.15},{"x":1566567240000,"y":0.14},{"x":1566567300000,"y":0.21},{"x":1566567360000,"y":0.25},{"x":1566567420000,"y":0.1},{"x":1566567480000,"y":0.17},{"x":1566567540000,"y":0.19},{"x":1566567600000,"y":0.19},{"x":1566567660000,"y":0.09},{"x":1566567720000,"y":0.25},{"x":1566567780000,"y":0.12},{"x":1566567840000,"y":0.11},{"x":1566567900000,"y":0.17},{"x":1566567960000,"y":0.07},{"x":1566568020000,"y":0.28},{"x":1566568080000,"y":0.09},{"x":1566568140000,"y":0.15},{"x":1566568200000,"y":0.16},{"x":1566568260000,"y":0.11},{"x":1566568320000,"y":0.2},{"x":1566568380000,"y":0.12},{"x":1566568440000,"y":0.11},{"x":1566568500000,"y":0.19},{"x":1566568560000,"y":0.1},{"x":1566568620000,"y":0.24},{"x":1566568680000,"y":0.1},{"x":1566568740000,"y":0.1},{"x":1566568800000,"y":0.34},{"x":1566568860000,"y":0.1},{"x":1566568920000,"y":0.24},{"x":1566568980000,"y":0.09},{"x":1566569040000,"y":0.12},{"x":1566569100000,"y":0.25},{"x":1566569160000,"y":0.1},{"x":1566569220000,"y":0.22},{"x":1566569280000,"y":0.07},{"x":1566569340000,"y":0.16},{"x":1566569400000,"y":0.24},{"x":1566569460000,"y":0.08},{"x":1566569520000,"y":5.04},{"x":1566569580000,"y":0.25},{"x":1566569640000,"y":0.1},{"x":1566569700000,"y":0.18},{"x":1566569760000,"y":0.1},{"x":1566569820000,"y":0.25},{"x":1566569880000,"y":0.12},{"x":1566569940000,"y":0.09},{"x":1566570000000,"y":0.17},{"x":1566570060000,"y":0.08},{"x":1566570120000,"y":0.26},{"x":1566570180000,"y":0.14},{"x":1566570240000,"y":0.13},{"x":1566570300000,"y":0.25},{"x":1566570360000,"y":0.15},{"x":1566570420000,"y":0.06},{"x":1566570480000,"y":0.3},{"x":1566570540000,"y":0.16},{"x":1566570600000,"y":0.17},{"x":1566570660000,"y":0.09},{"x":1566570720000,"y":0.17},{"x":1566570780000,"y":0.25},{"x":1566570840000,"y":0.12},{"x":1566570900000,"y":0.17},{"x":1566570960000,"y":0.1},{"x":1566571020000,"y":0.1},{"x":1566571080000,"y":0.2},{"x":1566571140000,"y":0.26},{"x":1566571200000,"y":0.23},{"x":1566571260000,"y":0.07},{"x":1566571320000,"y":0.1},{"x":1566571380000,"y":0.32},{"x":1566571440000,"y":0.11},{"x":1566571500000,"y":0.2},{"x":1566571560000,"y":0.08},{"x":1566571620000,"y":0.14},{"x":1566571680000,"y":0.24},{"x":1566571740000,"y":0.12},{"x":1566571800000,"y":0.26},{"x":1566571860000,"y":0.09},{"x":1566571920000,"y":0.1},{"x":1566571980000,"y":0.23},{"x":1566572040000,"y":0.1},{"x":1566572100000,"y":0.24},{"x":1566572160000,"y":0.14},{"x":1566572220000,"y":0.08},{"x":1566572280000,"y":0.28},{"x":1566572340000,"y":0.12},{"x":1566572400000,"y":0.39},{"x":1566572460000,"y":0.13},{"x":1566572520000,"y":0.16},{"x":1566572580000,"y":0.11},{"x":1566572640000,"y":0.27},{"x":1566572700000,"y":0.27},{"x":1566572760000,"y":0.12},{"x":1566572820000,"y":0.11},{"x":1566572880000,"y":0.12},{"x":1566572940000,"y":0.39},{"x":1566573000000,"y":0.22},{"x":1566573060000,"y":0.15},{"x":1566573120000,"y":0.07},{"x":1566573180000,"y":0.12},{"x":1566573240000,"y":0.32},{"x":1566573300000,"y":0.26},{"x":1566573360000,"y":0.12},{"x":1566573420000,"y":0.15},{"x":1566573480000,"y":0.12},{"x":1566573540000,"y":0.24},{"x":1566573600000,"y":0.21},{"x":1566573660000,"y":0.86},{"x":1566573720000,"y":0.1},{"x":1566573780000,"y":0.1},{"x":1566573840000,"y":0.29},{"x":1566573900000,"y":0.2},{"x":1566573960000,"y":0.1},{"x":1566574020000,"y":0.14},{"x":1566574080000,"y":0.1},{"x":1566574140000,"y":0.21},{"x":1566574200000,"y":0.3},{"x":1566574260000,"y":0.09},{"x":1566574320000,"y":0.13},{"x":1566574380000,"y":0.09},{"x":1566574440000,"y":0.23},{"x":1566574500000,"y":0.24},{"x":1566574560000,"y":0.11},{"x":1566574620000,"y":0.14},{"x":1566574680000,"y":0.09},{"x":1566574740000,"y":0.27},{"x":1566574800000,"y":0.37},{"x":1566574860000,"y":0.11},{"x":1566574920000,"y":0.12},{"x":1566574980000,"y":0.08},{"x":1566575040000,"y":0.09},{"x":1566575100000,"y":0.37},{"x":1566575160000,"y":0.12},{"x":1566575220000,"y":0.15},{"x":1566575280000,"y":0.15},{"x":1566575340000,"y":0.1},{"x":1566575400000,"y":0.31},{"x":1566575460000,"y":0.08},{"x":1566575520000,"y":0.1},{"x":1566575580000,"y":0.12},{"x":1566575640000,"y":0.12},{"x":1566575700000,"y":0.29},{"x":1566575760000,"y":0.1},{"x":1566575820000,"y":0.1},{"x":1566575880000,"y":0.11},{"x":1566575940000,"y":0.14},{"x":1566576000000,"y":0.49},{"x":1566576060000,"y":0.13},{"x":1566576120000,"y":0.15},{"x":1566576180000,"y":0.13},{"x":1566576240000,"y":0.09},{"x":1566576300000,"y":0.34},{"x":1566576360000,"y":0.37},{"x":1566576420000,"y":0.13},{"x":1566576480000,"y":0.12},{"x":1566576540000,"y":0.2},{"x":1566576600000,"y":0.41},{"x":1566576660000,"y":0.11},{"x":1566576720000,"y":0.13},{"x":1566576780000,"y":0.17},{"x":1566576840000,"y":5.84},{"x":1566576900000,"y":0.49},{"x":1566576960000,"y":0.1},{"x":1566577020000,"y":0.17},{"x":1566577080000,"y":0.11},{"x":1566577140000,"y":0.14},{"x":1566577200000,"y":0.19},{"x":1566577260000,"y":0.29},{"x":1566577320000,"y":0.12},{"x":1566577380000,"y":0.13},{"x":1566577440000,"y":0.15},{"x":1566577500000,"y":0.17},{"x":1566577560000,"y":0.3},{"x":1566577620000,"y":0.12},{"x":1566577680000,"y":0.11},{"x":1566577740000,"y":0.07},{"x":1566577800000,"y":0.22},{"x":1566577860000,"y":0.22},{"x":1566577920000,"y":0.1},{"x":1566577980000,"y":0.07},{"x":1566578040000,"y":0.08},{"x":1566578100000,"y":0.23},{"x":1566578160000,"y":0.23},{"x":1566578220000,"y":0.08},{"x":1566578280000,"y":0.08},{"x":1566578340000,"y":0.37},{"x":1566578400000,"y":0.2},{"x":1566578460000,"y":0.2},{"x":1566578520000,"y":0.09},{"x":1566578580000,"y":0.09},{"x":1566578640000,"y":0.07},{"x":1566578700000,"y":0.15},{"x":1566578760000,"y":0.23},{"x":1566578820000,"y":0.1},{"x":1566578880000,"y":0.1},{"x":1566578940000,"y":0.15},{"x":1566579000000,"y":0.33},{"x":1566579060000,"y":0.31},{"x":1566579120000,"y":0.11},{"x":1566579180000,"y":0.07},{"x":1566579240000,"y":0.11},{"x":1566579300000,"y":0.31},{"x":1566579360000,"y":0.26},{"x":1566579420000,"y":0.15},{"x":1566579480000,"y":0.17},{"x":1566579540000,"y":0.12},{"x":1566579600000,"y":0.3},{"x":1566579660000,"y":0.13},{"x":1566579720000,"y":0.33},{"x":1566579780000,"y":0.21},{"x":1566579840000,"y":0.15},{"x":1566579900000,"y":0.14},{"x":1566579960000,"y":0.14},{"x":1566580020000,"y":0.24},{"x":1566580080000,"y":0.1},{"x":1566580140000,"y":0.27},{"x":1566580200000,"y":0.21},{"x":1566580260000,"y":0.14},{"x":1566580320000,"y":0.3},{"x":1566580380000,"y":0.15},{"x":1566580440000,"y":0.11},{"x":1566580500000,"y":11.03},{"x":1566580560000,"y":0.12},{"x":1566580620000,"y":0.3},{"x":1566580680000,"y":0.1},{"x":1566580740000,"y":0.14},{"x":1566580800000,"y":0.26},{"x":1566580860000,"y":0.14},{"x":1566580920000,"y":0.47},{"x":1566580980000,"y":0.11},{"x":1566581040000,"y":0.07},{"x":1566581100000,"y":0.15},{"x":1566581160000,"y":0.07},{"x":1566581220000,"y":0.21},{"x":1566581280000,"y":0.14},{"x":1566581340000,"y":0.12},{"x":1566581400000,"y":0.39},{"x":1566581460000,"y":0.1},{"x":1566581520000,"y":0.24},{"x":1566581580000,"y":0.19},{"x":1566581640000,"y":0.17},{"x":1566581700000,"y":0.31},{"x":1566581760000,"y":0.09},{"x":1566581820000,"y":0.11},{"x":1566581880000,"y":0.29},{"x":1566581940000,"y":0.27},{"x":1566582000000,"y":0.29},{"x":1566582060000,"y":0.15},{"x":1566582120000,"y":0.16},{"x":1566582180000,"y":0.33},{"x":1566582240000,"y":0.13},{"x":1566582300000,"y":0.24},{"x":1566582360000,"y":0.1},{"x":1566582420000,"y":0.15},{"x":1566582480000,"y":0.27},{"x":1566582540000,"y":0.12},{"x":1566582600000,"y":0.22},{"x":1566582660000,"y":0.09},{"x":1566582720000,"y":0.09},{"x":1566582780000,"y":0.24},{"x":1566582840000,"y":0.11},{"x":1566582900000,"y":0.25},{"x":1566582960000,"y":0.09},{"x":1566583020000,"y":0.1},{"x":1566583080000,"y":0.23},{"x":1566583140000,"y":0.08},{"x":1566583200000,"y":0.41},{"x":1566583260000,"y":0.16},{"x":1566583320000,"y":0.14},{"x":1566583380000,"y":0.27},{"x":1566583440000,"y":0.13},{"x":1566583500000,"y":0.25},{"x":1566583560000,"y":0.15},{"x":1566583620000,"y":0.21},{"x":1566583680000,"y":0.25},{"x":1566583740000,"y":0.18},{"x":1566583800000,"y":0.21},{"x":1566583860000,"y":0.17},{"x":1566583920000,"y":0.12},{"x":1566583980000,"y":0.12},{"x":1566584040000,"y":0.28},{"x":1566584100000,"y":1.82},{"x":1566584160000,"y":0.23},{"x":1566584220000,"y":0.15},{"x":1566584280000,"y":0.22},{"x":1566584340000,"y":0.28},{"x":1566584400000,"y":0.21},{"x":1566584460000,"y":0.14},{"x":1566584520000,"y":0.53},{"x":1566584580000,"y":0.21},{"x":1566584640000,"y":0.32},{"x":1566584700000,"y":0.28},{"x":1566584760000,"y":0.14},{"x":1566584820000,"y":0.19},{"x":1566584880000,"y":0.18},{"x":1566584940000,"y":0.29},{"x":1566585000000,"y":0.35},{"x":1566585060000,"y":0.17},{"x":1566585120000,"y":0.14},{"x":1566585180000,"y":0.15},{"x":1566585240000,"y":0.29},{"x":1566585300000,"y":0.31},{"x":1566585360000,"y":0.18},{"x":1566585420000,"y":0.17},{"x":1566585480000,"y":0.14},{"x":1566585540000,"y":0.47},{"x":1566585600000,"y":0.29},{"x":1566585660000,"y":0.17},{"x":1566585720000,"y":0.16},{"x":1566585780000,"y":0.16},{"x":1566585840000,"y":0.33},{"x":1566585900000,"y":0.3},{"x":1566585960000,"y":0.15},{"x":1566586020000,"y":0.17},{"x":1566586080000,"y":0.18},{"x":1566586140000,"y":0.31},{"x":1566586200000,"y":0.29},{"x":1566586260000,"y":0.18},{"x":1566586320000,"y":0.16},{"x":1566586380000,"y":0.2},{"x":1566586440000,"y":0.17},{"x":1566586500000,"y":0.38},{"x":1566586560000,"y":0.17},{"x":1566586620000,"y":0.16},{"x":1566586680000,"y":0.21},{"x":1566586740000,"y":0.2},{"x":1566586800000,"y":0.49},{"x":1566586860000,"y":0.17},{"x":1566586920000,"y":0.18},{"x":1566586980000,"y":0.25},{"x":1566587040000,"y":11.04},{"x":1566587100000,"y":18.89},{"x":1566587160000,"y":0.48},{"x":1566587220000,"y":0.23},{"x":1566587280000,"y":0.17},{"x":1566587340000,"y":0.3},{"x":1566587400000,"y":0.42},{"x":1566587460000,"y":0.21},{"x":1566587520000,"y":0.21},{"x":1566587580000,"y":16.63},{"x":1566587640000,"y":16.78},{"x":1566587700000,"y":16.97},{"x":1566587760000,"y":0.28},{"x":1566587820000,"y":0.32},{"x":1566587880000,"y":0.18},{"x":1566587940000,"y":0.25},{"x":1566588000000,"y":0.49},{"x":1566588060000,"y":0.26},{"x":1566588120000,"y":0.21},{"x":1566588180000,"y":0.2},{"x":1566588240000,"y":0.19},{"x":1566588300000,"y":0.47},{"x":1566588360000,"y":14.34},{"x":1566588420000,"y":2.98},{"x":1566588480000,"y":0.17},{"x":1566588540000,"y":0.17},{"x":1566588600000,"y":0.44},{"x":1566588660000,"y":0.17},{"x":1566588720000,"y":0.22},{"x":1566588780000,"y":0.16},{"x":1566588840000,"y":0.2},{"x":1566588900000,"y":0.29},{"x":1566588960000,"y":0.32},{"x":1566589020000,"y":0.18},{"x":1566589080000,"y":0.21},{"x":1566589140000,"y":0.46},{"x":1566589200000,"y":0.39},{"x":1566589260000,"y":0.33},{"x":1566589320000,"y":0.2},{"x":1566589380000,"y":0.2},{"x":1566589440000,"y":0.22},{"x":1566589500000,"y":31.99},{"x":1566589560000,"y":1.82},{"x":1566589620000,"y":0.34},{"x":1566589680000,"y":0.22},{"x":1566589740000,"y":0.18},{"x":1566589800000,"y":0.31},{"x":1566589860000,"y":0.3},{"x":1566589920000,"y":0.17},{"x":1566589980000,"y":0.18},{"x":1566590040000,"y":0.17},{"x":1566590100000,"y":0.27},{"x":1566590160000,"y":0.31},{"x":1566590220000,"y":0.18},{"x":1566590280000,"y":0.2},{"x":1566590340000,"y":0.22},{"x":1566590400000,"y":0.55},{"x":1566590460000,"y":0.32},{"x":1566590520000,"y":0.18},{"x":1566590580000,"y":0.17},{"x":1566590640000,"y":0.19},{"x":1566590700000,"y":0.34},{"x":1566590760000,"y":0.34},{"x":1566590820000,"y":0.18},{"x":1566590880000,"y":0.17},{"x":1566590940000,"y":0.36},{"x":1566591000000,"y":0.29},{"x":1566591060000,"y":0.21},{"x":1566591120000,"y":0.35},{"x":1566591180000,"y":0.55},{"x":1566591240000,"y":0.65},{"x":1566591300000,"y":1.03},{"x":1566591360000,"y":0.61},{"x":1566591420000,"y":4.45},{"x":1566591480000,"y":0.75},{"x":1566591540000,"y":0.64},{"x":1566591600000,"y":0.35},{"x":1566591660000,"y":0.24},{"x":1566591720000,"y":0.37},{"x":1566591780000,"y":0.25},{"x":1566591840000,"y":1.5},{"x":1566591900000,"y":0.35},{"x":1566591960000,"y":0.23},{"x":1566592020000,"y":0.69},{"x":1566592080000,"y":0.6},{"x":1566592140000,"y":16.51},{"x":1566592200000,"y":0.54},{"x":1566592260000,"y":0.14},{"x":1566592320000,"y":0.31},{"x":1566592380000,"y":0.17},{"x":1566592440000,"y":0.17},{"x":1566592500000,"y":0.34},{"x":1566592560000,"y":0.21},{"x":1566592620000,"y":0.28},{"x":1566592680000,"y":0.15},{"x":1566592740000,"y":0.49},{"x":1566592800000,"y":0.32},{"x":1566592860000,"y":0.2},{"x":1566592920000,"y":0.37},{"x":1566592980000,"y":0.17},{"x":1566593040000,"y":0.21},{"x":1566593100000,"y":0.31},{"x":1566593160000,"y":0.16},{"x":1566593220000,"y":0.29},{"x":1566593280000,"y":0.21},{"x":1566593340000,"y":0.2},{"x":1566593400000,"y":0.36},{"x":1566593460000,"y":0.19},{"x":1566593520000,"y":0.28},{"x":1566593580000,"y":0.18},{"x":1566593640000,"y":0.2},{"x":1566593700000,"y":0.32},{"x":1566593760000,"y":0.2},{"x":1566593820000,"y":0.16},{"x":1566593880000,"y":0.32},{"x":1566593940000,"y":0.17},{"x":1566594000000,"y":0.58},{"x":1566594060000,"y":0.24},{"x":1566594120000,"y":0.27},{"x":1566594180000,"y":0.31},{"x":1566594240000,"y":0.17},{"x":1566594300000,"y":0.3},{"x":1566594360000,"y":0.16},{"x":1566594420000,"y":0.17},{"x":1566594480000,"y":0.32},{"x":1566594540000,"y":0.35},{"x":1566594600000,"y":0.26},{"x":1566594660000,"y":0.22},{"x":1566594720000,"y":0.2},{"x":1566594780000,"y":0.31},{"x":1566594840000,"y":0.17},{"x":1566594900000,"y":0.3},{"x":1566594960000,"y":0.16},{"x":1566595020000,"y":0.18},{"x":1566595080000,"y":0.33},{"x":1566595140000,"y":0.15},{"x":1566595200000,"y":0.28},{"x":1566595260000,"y":0.14},{"x":1566595320000,"y":0.15},{"x":1566595380000,"y":0.1},{"x":1566595440000,"y":0.25},{"x":1566595500000,"y":0.14},{"x":1566595560000,"y":0.07},{"x":1566595620000,"y":0.1},{"x":1566595680000,"y":0.1},{"x":1566595740000,"y":0.2},{"x":1566595800000,"y":0.19},{"x":1566595860000,"y":0.09},{"x":1566595920000,"y":0.11},{"x":1566595980000,"y":0.14},{"x":1566596040000,"y":0.23},{"x":1566596100000,"y":0.21},{"x":1566596160000,"y":0.11},{"x":1566596220000,"y":0.12},{"x":1566596280000,"y":0.09},{"x":1566596340000,"y":0.39},{"x":1566596400000,"y":0.18},{"x":1566596460000,"y":0.07},{"x":1566596520000,"y":0.13},{"x":1566596580000,"y":0.11},{"x":1566596640000,"y":0.23},{"x":1566596700000,"y":0.23},{"x":1566596760000,"y":0.1},{"x":1566596820000,"y":0.1},{"x":1566596880000,"y":0.14},{"x":1566596940000,"y":0.25},{"x":1566597000000,"y":0.28},{"x":1566597060000,"y":0.12},{"x":1566597120000,"y":0.1},{"x":1566597180000,"y":0.11},{"x":1566597240000,"y":0.23},{"x":1566597300000,"y":0.21},{"x":1566597360000,"y":0.15},{"x":1566597420000,"y":0.13},{"x":1566597480000,"y":0.09},{"x":1566597540000,"y":0.22},{"x":1566597600000,"y":0.32},{"x":1566597660000,"y":0.13},{"x":1566597720000,"y":0.13},{"x":1566597780000,"y":0.11},{"x":1566597840000,"y":0.12},{"x":1566597900000,"y":0.4},{"x":1566597960000,"y":0.09},{"x":1566598020000,"y":0.09},{"x":1566598080000,"y":0.09},{"x":1566598140000,"y":0.21},{"x":1566598200000,"y":0.31},{"x":1566598260000,"y":0.14},{"x":1566598320000,"y":0.12},{"x":1566598380000,"y":0.16},{"x":1566598440000,"y":0.17},{"x":1566598500000,"y":0.4},{"x":1566598560000,"y":0.1},{"x":1566598620000,"y":0.12},{"x":1566598680000,"y":0.13},{"x":1566598740000,"y":0.1},{"x":1566598800000,"y":0.36},{"x":1566598860000,"y":0.18},{"x":1566598920000,"y":0.22},{"x":1566598980000,"y":0.09},{"x":1566599040000,"y":0.12},{"x":1566599100000,"y":1.66},{"x":1566599160000,"y":0.1},{"x":1566599220000,"y":0.14},{"x":1566599280000,"y":0.12},{"x":1566599340000,"y":0.13},{"x":1566599400000,"y":0.49},{"x":1566599460000,"y":0.14},{"x":1566599520000,"y":0.12},{"x":1566599580000,"y":0.16},{"x":1566599640000,"y":0.1},{"x":1566599700000,"y":0.42},{"x":1566599760000,"y":0.16},{"x":1566599820000,"y":0.14},{"x":1566599880000,"y":0.12},{"x":1566599940000,"y":0.21},{"x":1566600000000,"y":0.26},{"x":1566600060000,"y":0.22},{"x":1566600120000,"y":0.14},{"x":1566600180000,"y":0.07},{"x":1566600240000,"y":0.09},{"x":1566600300000,"y":0.16},{"x":1566600360000,"y":0.21},{"x":1566600420000,"y":0.15},{"x":1566600480000,"y":0.08},{"x":1566600540000,"y":0.09},{"x":1566600600000,"y":0.19},{"x":1566600660000,"y":0.24},{"x":1566600720000,"y":0.09},{"x":1566600780000,"y":0.09},{"x":1566600840000,"y":0.11},{"x":1566600900000,"y":0.15},{"x":1566600960000,"y":0.24},{"x":1566601020000,"y":0.06},{"x":1566601080000,"y":0.09},{"x":1566601140000,"y":0.07},{"x":1566601200000,"y":0.28},{"x":1566601260000,"y":0.25},{"x":1566601320000,"y":0.13},{"x":1566601380000,"y":0.1},{"x":1566601440000,"y":0.09},{"x":1566601500000,"y":0.21},{"x":1566601560000,"y":0.21},{"x":1566601620000,"y":0.12},{"x":1566601680000,"y":0.07},{"x":1566601740000,"y":0.25},{"x":1566601800000,"y":0.23},{"x":1566601860000,"y":0.25},{"x":1566601920000,"y":0.08},{"x":1566601980000,"y":0.11},{"x":1566602040000,"y":0.1},{"x":1566602100000,"y":0.19},{"x":1566602160000,"y":0.22},{"x":1566602220000,"y":0.1},{"x":1566602280000,"y":0.82},{"x":1566602340000,"y":0.09},{"x":1566602400000,"y":0.22},{"x":1566602460000,"y":0.09},{"x":1566602520000,"y":0.24},{"x":1566602580000,"y":0.08},{"x":1566602640000,"y":0.09},{"x":1566602700000,"y":0.14},{"x":1566602760000,"y":0.08},{"x":1566602820000,"y":0.21},{"x":1566602880000,"y":0.11},{"x":1566602940000,"y":0.07},{"x":1566603000000,"y":0.23},{"x":1566603060000,"y":0.08},{"x":1566603120000,"y":0.26},{"x":1566603180000,"y":0.09},{"x":1566603240000,"y":0.1},{"x":1566603300000,"y":0.14},{"x":1566603360000,"y":0.06},{"x":1566603420000,"y":0.24},{"x":1566603480000,"y":0.11},{"x":1566603540000,"y":0.27},{"x":1566603600000,"y":0.21},{"x":1566603660000,"y":0.08},{"x":1566603720000,"y":0.22},{"x":1566603780000,"y":0.06},{"x":1566603840000,"y":0.07},{"x":1566603900000,"y":0.14},{"x":1566603960000,"y":0.07},{"x":1566604020000,"y":0.21},{"x":1566604080000,"y":0.1},{"x":1566604140000,"y":0.08},{"x":1566604200000,"y":0.16},{"x":1566604260000,"y":0.07},{"x":1566604320000,"y":0.24},{"x":1566604380000,"y":0.06},{"x":1566604440000,"y":0.1},{"x":1566604500000,"y":0.17},{"x":1566604560000,"y":0.07},{"x":1566604620000,"y":0.1},{"x":1566604680000,"y":0.24},{"x":1566604740000,"y":0.08},{"x":1566604800000,"y":0.28},{"x":1566604860000,"y":0.1},{"x":1566604920000,"y":0.1},{"x":1566604980000,"y":0.22},{"x":1566605040000,"y":0.11},{"x":1566605100000,"y":0.28},{"x":1566605160000,"y":0.06},{"x":1566605220000,"y":0.07},{"x":1566605280000,"y":0.2},{"x":1566605340000,"y":0.21},{"x":1566605400000,"y":0.14},{"x":1566605460000,"y":0.07},{"x":1566605520000,"y":0.07},{"x":1566605580000,"y":0.27},{"x":1566605640000,"y":0.13},{"x":1566605700000,"y":0.16},{"x":1566605760000,"y":0.14},{"x":1566605820000,"y":0.11},{"x":1566605880000,"y":0.2},{"x":1566605940000,"y":1.18},{"x":1566606000000,"y":0.17},{"x":1566606060000,"y":0.13},{"x":1566606120000,"y":0.14},{"x":1566606180000,"y":0.21},{"x":1566606240000,"y":0.1},{"x":1566606300000,"y":0.13},{"x":1566606360000,"y":0.24},{"x":1566606420000,"y":0.08},{"x":1566606480000,"y":0.2},{"x":1566606540000,"y":0.07},{"x":1566606600000,"y":0.21},{"x":1566606660000,"y":0.07},{"x":1566606720000,"y":0.09},{"x":1566606780000,"y":0.21},{"x":1566606840000,"y":0.1},{"x":1566606900000,"y":0.26},{"x":1566606960000,"y":0.09},{"x":1566607020000,"y":0.07},{"x":1566607080000,"y":0.07},{"x":1566607140000,"y":0.32},{"x":1566607200000,"y":0.24},{"x":1566607260000,"y":0.1},{"x":1566607320000,"y":0.09},{"x":1566607380000,"y":0.12},{"x":1566607440000,"y":0.2},{"x":1566607500000,"y":0.24},{"x":1566607560000,"y":0.07},{"x":1566607620000,"y":0.09},{"x":1566607680000,"y":0.07},{"x":1566607740000,"y":0.25},{"x":1566607800000,"y":0.27},{"x":1566607860000,"y":0.07},{"x":1566607920000,"y":0.07},{"x":1566607980000,"y":0.1},{"x":1566608040000,"y":0.22},{"x":1566608100000,"y":0.11},{"x":1566608160000,"y":0.07},{"x":1566608220000,"y":0.1},{"x":1566608280000,"y":0.07},{"x":1566608340000,"y":0.24},{"x":1566608400000,"y":0.31},{"x":1566608460000,"y":0.08},{"x":1566608520000,"y":0.07},{"x":1566608580000,"y":0.11},{"x":1566608640000,"y":0.22},{"x":1566608700000,"y":0.12},{"x":1566608760000,"y":0.1},{"x":1566608820000,"y":0.09},{"x":1566608880000,"y":0.09},{"x":1566608940000,"y":0.34},{"x":1566609000000,"y":0.25},{"x":1566609060000,"y":0.09},{"x":1566609120000,"y":0.07},{"x":1566609180000,"y":0.1},{"x":1566609240000,"y":0.22},{"x":1566609300000,"y":0.22},{"x":1566609360000,"y":0.1},{"x":1566609420000,"y":0.1},{"x":1566609480000,"y":0.08},{"x":1566609540000,"y":1},{"x":1566609600000,"y":0.27},{"x":1566609660000,"y":0.09},{"x":1566609720000,"y":0.09},{"x":1566609780000,"y":0.06},{"x":1566609840000,"y":0.07},{"x":1566609900000,"y":0.26},{"x":1566609960000,"y":0.07},{"x":1566610020000,"y":0.09},{"x":1566610080000,"y":0.06},{"x":1566610140000,"y":0.09},{"x":1566610200000,"y":0.42},{"x":1566610260000,"y":0.09},{"x":1566610320000,"y":0.09},{"x":1566610380000,"y":0.09},{"x":1566610440000,"y":0.08},{"x":1566610500000,"y":0.36},{"x":1566610560000,"y":0.1},{"x":1566610620000,"y":0.08},{"x":1566610680000,"y":0.08},{"x":1566610740000,"y":0.26},{"x":1566610800000,"y":0.42},{"x":1566610860000,"y":0.07},{"x":1566610920000,"y":0.08},{"x":1566610980000,"y":0.1},{"x":1566611040000,"y":0.09},{"x":1566611100000,"y":0.29},{"x":1566611160000,"y":0.08},{"x":1566611220000,"y":0.09},{"x":1566611280000,"y":0.09},{"x":1566611340000,"y":0.08},{"x":1566611400000,"y":0.31},{"x":1566611460000,"y":0.08},{"x":1566611520000,"y":0.1},{"x":1566611580000,"y":0.1},{"x":1566611640000,"y":0.07},{"x":1566611700000,"y":0.21},{"x":1566611760000,"y":0.24},{"x":1566611820000,"y":0.08},{"x":1566611880000,"y":0.1},{"x":1566611940000,"y":0.08},{"x":1566612000000,"y":0.33},{"x":1566612060000,"y":0.32},{"x":1566612120000,"y":0.15},{"x":1566612180000,"y":0.13},{"x":1566612240000,"y":0.16},{"x":1566612300000,"y":0.23},{"x":1566612360000,"y":0.29},{"x":1566612420000,"y":0.13},{"x":1566612480000,"y":0.1},{"x":1566612540000,"y":0.2},{"x":1566612600000,"y":0.25},{"x":1566612660000,"y":0.23},{"x":1566612720000,"y":0.17},{"x":1566612780000,"y":0.12},{"x":1566612840000,"y":0.15},{"x":1566612900000,"y":0.28},{"x":1566612960000,"y":0.22},{"x":1566613020000,"y":0.18},{"x":1566613080000,"y":0.1},{"x":1566613140000,"y":0.08},{"x":1566613200000,"y":0.2},{"x":1566613260000,"y":5},{"x":1566613320000,"y":0.26},{"x":1566613380000,"y":0.1},{"x":1566613440000,"y":0.09},{"x":1566613500000,"y":0.18},{"x":1566613560000,"y":0.21},{"x":1566613620000,"y":0.1},{"x":1566613680000,"y":0.07},{"x":1566613740000,"y":0.11},{"x":1566613800000,"y":0.19},{"x":1566613860000,"y":0.1},{"x":1566613920000,"y":0.3},{"x":1566613980000,"y":0.13},{"x":1566614040000,"y":0.1},{"x":1566614100000,"y":0.21},{"x":1566614160000,"y":0.12},{"x":1566614220000,"y":0.24},{"x":1566614280000,"y":0.1},{"x":1566614340000,"y":0.33},{"x":1566614400000,"y":0.2},{"x":1566614460000,"y":0.1},{"x":1566614520000,"y":0.26},{"x":1566614580000,"y":0.06},{"x":1566614640000,"y":0.07},{"x":1566614700000,"y":0.28},{"x":1566614760000,"y":0.1},{"x":1566614820000,"y":0.27},{"x":1566614880000,"y":0.1},{"x":1566614940000,"y":0.08},{"x":1566615000000,"y":0.23},{"x":1566615060000,"y":0.1},{"x":1566615120000,"y":0.32},{"x":1566615180000,"y":0.07},{"x":1566615240000,"y":0.12},{"x":1566615300000,"y":0.23},{"x":1566615360000,"y":0.12},{"x":1566615420000,"y":0.22},{"x":1566615480000,"y":0.08},{"x":1566615540000,"y":0.08},{"x":1566615600000,"y":0.48},{"x":1566615660000,"y":0.15},{"x":1566615720000,"y":0.28},{"x":1566615780000,"y":0.1},{"x":1566615840000,"y":0.08},{"x":1566615900000,"y":0.15},{"x":1566615960000,"y":0.1},{"x":1566616020000,"y":0.23},{"x":1566616080000,"y":0.08},{"x":1566616140000,"y":0.26},{"x":1566616200000,"y":0.18},{"x":1566616260000,"y":0.13},{"x":1566616320000,"y":0.1},{"x":1566616380000,"y":0.26},{"x":1566616440000,"y":1.28},{"x":1566616500000,"y":0.24},{"x":1566616560000,"y":0.11},{"x":1566616620000,"y":0.97},{"x":1566616680000,"y":0.26},{"x":1566616740000,"y":0.2},{"x":1566616800000,"y":0.25},{"x":1566616860000,"y":1.34},{"x":1566616920000,"y":0.19},{"x":1566616980000,"y":0.22},{"x":1566617040000,"y":0.09},{"x":1566617100000,"y":0.61},{"x":1566617160000,"y":0.07},{"x":1566617220000,"y":0.06},{"x":1566617280000,"y":0.48},{"x":1566617340000,"y":0.07},{"x":1566617400000,"y":0.4},{"x":1566617460000,"y":0.1},{"x":1566617520000,"y":1.39},{"x":1566617580000,"y":0.25},{"x":1566617640000,"y":0.1},{"x":1566617700000,"y":0.49},{"x":1566617760000,"y":0.06},{"x":1566617820000,"y":0.18},{"x":1566617880000,"y":0.25},{"x":1566617940000,"y":0.37},{"x":1566618000000,"y":0.3},{"x":1566618060000,"y":0.1},{"x":1566618120000,"y":0.35},{"x":1566618180000,"y":0.19},{"x":1566618240000,"y":0.07},{"x":1566618300000,"y":0.15},{"x":1566618360000,"y":0.26},{"x":1566618420000,"y":0.1},{"x":1566618480000,"y":0.21},{"x":1566618540000,"y":0.25},{"x":1566618600000,"y":0.2},{"x":1566618660000,"y":0.15},{"x":1566618720000,"y":0.1},{"x":1566618780000,"y":0.09},{"x":1566618840000,"y":0.28},{"x":1566618900000,"y":0.28},{"x":1566618960000,"y":0.12},{"x":1566619020000,"y":0.12},{"x":1566619080000,"y":0.14},{"x":1566619140000,"y":0.43},{"x":1566619200000,"y":0.52},{"x":1566619260000,"y":0.23},{"x":1566619320000,"y":0.17},{"x":1566619380000,"y":0.15},{"x":1566619440000,"y":0.31},{"x":1566619500000,"y":0.22},{"x":1566619560000,"y":0.17},{"x":1566619620000,"y":0.18},{"x":1566619680000,"y":0.15},{"x":1566619740000,"y":0.55},{"x":1566619800000,"y":0.27},{"x":1566619860000,"y":0.17},{"x":1566619920000,"y":0.17},{"x":1566619980000,"y":0.21},{"x":1566620040000,"y":0.29},{"x":1566620100000,"y":0.28},{"x":1566620160000,"y":0.16},{"x":1566620220000,"y":0.21},{"x":1566620280000,"y":2.22},{"x":1566620340000,"y":0.28},{"x":1566620400000,"y":0.51},{"x":1566620460000,"y":0.18},{"x":1566620520000,"y":0.35},{"x":1566620580000,"y":0.16},{"x":1566620640000,"y":0.18},{"x":1566620700000,"y":0.43},{"x":1566620760000,"y":0.52},{"x":1566620820000,"y":0.14},{"x":1566620880000,"y":0.17},{"x":1566620940000,"y":0.17},{"x":1566621000000,"y":0.62},{"x":1566621060000,"y":0.15},{"x":1566621120000,"y":0.18},{"x":1566621180000,"y":0.16},{"x":1566621240000,"y":0.15},{"x":1566621300000,"y":0.54},{"x":1566621360000,"y":0.15},{"x":1566621420000,"y":0.2},{"x":1566621480000,"y":0.14},{"x":1566621540000,"y":0.36},{"x":1566621600000,"y":0.4},{"x":1566621660000,"y":0.17},{"x":1566621720000,"y":0.17},{"x":1566621780000,"y":0.2},{"x":1566621840000,"y":0.16},{"x":1566621900000,"y":0.62},{"x":1566621960000,"y":0.17},{"x":1566622020000,"y":1.22},{"x":1566622080000,"y":0.18},{"x":1566622140000,"y":0.18},{"x":1566622200000,"y":0.46},{"x":1566622260000,"y":0.18},{"x":1566622320000,"y":0.18},{"x":1566622380000,"y":0.17},{"x":1566622440000,"y":0.57},{"x":1566622500000,"y":0.9},{"x":1566622560000,"y":0.16},{"x":1566622620000,"y":0.17},{"x":1566622680000,"y":0.33},{"x":1566622740000,"y":0.34},{"x":1566622800000,"y":1.51},{"x":1566622860000,"y":0.18},{"x":1566622920000,"y":0.15},{"x":1566622980000,"y":0.16},{"x":1566623040000,"y":0.3},{"x":1566623100000,"y":0.39},{"x":1566623160000,"y":0.47},{"x":1566623220000,"y":0.19},{"x":1566623280000,"y":0.31},{"x":1566623340000,"y":0.78},{"x":1566623400000,"y":0.24},{"x":1566623460000,"y":0.32},{"x":1566623520000,"y":0.15},{"x":1566623580000,"y":0.19},{"x":1566623640000,"y":0.15},{"x":1566623700000,"y":0.25},{"x":1566623760000,"y":0.34},{"x":1566623820000,"y":0.18},{"x":1566623880000,"y":0.17},{"x":1566623940000,"y":0.32},{"x":1566624000000,"y":0.31},{"x":1566624060000,"y":1.86},{"x":1566624120000,"y":0.19},{"x":1566624180000,"y":0.17},{"x":1566624240000,"y":0.17},{"x":1566624300000,"y":0.28},{"x":1566624360000,"y":0.34},{"x":1566624420000,"y":0.67},{"x":1566624480000,"y":0.19},{"x":1566624540000,"y":0.16},{"x":1566624600000,"y":0.29},{"x":1566624660000,"y":0.3},{"x":1566624720000,"y":0.18},{"x":1566624780000,"y":0.18},{"x":1566624840000,"y":0.17},{"x":1566624900000,"y":0.38},{"x":1566624960000,"y":0.15},{"x":1566625020000,"y":0.51},{"x":1566625080000,"y":0.17},{"x":1566625140000,"y":0.27},{"x":1566625200000,"y":0.24},{"x":1566625260000,"y":0.66},{"x":1566625320000,"y":0.29},{"x":1566625380000,"y":0.15},{"x":1566625440000,"y":0.16},{"x":1566625500000,"y":0.24},{"x":1566625560000,"y":0.14},{"x":1566625620000,"y":0.28},{"x":1566625680000,"y":0.34},{"x":1566625740000,"y":0.15},{"x":1566625800000,"y":0.48},{"x":1566625860000,"y":0.16},{"x":1566625920000,"y":0.3},{"x":1566625980000,"y":0.16},{"x":1566626040000,"y":0.16},{"x":1566626100000,"y":0.22},{"x":1566626160000,"y":0.15},{"x":1566626220000,"y":0.3},{"x":1566626280000,"y":0.16},{"x":1566626340000,"y":0.17},{"x":1566626400000,"y":0.45},{"x":1566626460000,"y":0.41},{"x":1566626520000,"y":0.37},{"x":1566626580000,"y":0.22},{"x":1566626640000,"y":0.24},{"x":1566626700000,"y":0.52},{"x":1566626760000,"y":0.21},{"x":1566626820000,"y":0.52},{"x":1566626880000,"y":0.2},{"x":1566626940000,"y":0.41},{"x":1566627000000,"y":0.32},{"x":1566627060000,"y":0.22},{"x":1566627120000,"y":0.41},{"x":1566627180000,"y":0.25},{"x":1566627240000,"y":0.57},{"x":1566627300000,"y":0.37},{"x":1566627360000,"y":0.27},{"x":1566627420000,"y":0.28},{"x":1566627480000,"y":0.43},{"x":1566627540000,"y":0.26},{"x":1566627600000,"y":0.31},{"x":1566627660000,"y":0.26},{"x":1566627720000,"y":0.25},{"x":1566627780000,"y":0.39},{"x":1566627840000,"y":0.27},{"x":1566627900000,"y":0.72},{"x":1566627960000,"y":0.23},{"x":1566628020000,"y":0.42},{"x":1566628080000,"y":0.38},{"x":1566628140000,"y":0.2},{"x":1566628200000,"y":0.36},{"x":1566628260000,"y":0.19},{"x":1566628320000,"y":0.19},{"x":1566628380000,"y":0.36},{"x":1566628440000,"y":0.22},{"x":1566628500000,"y":0.27},{"x":1566628560000,"y":0.2},{"x":1566628620000,"y":0.17},{"x":1566628680000,"y":0.32},{"x":1566628740000,"y":0.25},{"x":1566628800000,"y":0.24},{"x":1566628860000,"y":0.34},{"x":1566628920000,"y":0.19},{"x":1566628980000,"y":0.29},{"x":1566629040000,"y":0.4},{"x":1566629100000,"y":0.28},{"x":1566629160000,"y":0.32},{"x":1566629220000,"y":0.2},{"x":1566629280000,"y":0.27},{"x":1566629340000,"y":1.14},{"x":1566629400000,"y":0.28},{"x":1566629460000,"y":0.15},{"x":1566629520000,"y":0.13},{"x":1566629580000,"y":0.27},{"x":1566629640000,"y":0.12},{"x":1566629700000,"y":0.24},{"x":1566629760000,"y":0.14},{"x":1566629820000,"y":0.17},{"x":1566629880000,"y":0.18},{"x":1566629940000,"y":0.29},{"x":1566630000000,"y":0.46},{"x":1566630060000,"y":0.21},{"x":1566630120000,"y":0.2},{"x":1566630180000,"y":0.16},{"x":1566630240000,"y":1.24},{"x":1566630300000,"y":0.25},{"x":1566630360000,"y":0.14},{"x":1566630420000,"y":2.24},{"x":1566630480000,"y":1},{"x":1566630540000,"y":0.34},{"x":1566630600000,"y":0.26},{"x":1566630660000,"y":0.17},{"x":1566630720000,"y":0.12},{"x":1566630780000,"y":0.15},{"x":1566630840000,"y":0.3},{"x":1566630900000,"y":0.51},{"x":1566630960000,"y":0.15},{"x":1566631020000,"y":0.14},{"x":1566631080000,"y":0.15},{"x":1566631140000,"y":0.33},{"x":1566631200000,"y":0.32},{"x":1566631260000,"y":0.18},{"x":1566631320000,"y":1.46},{"x":1566631380000,"y":0.13},{"x":1566631440000,"y":0.32},{"x":1566631500000,"y":0.28},{"x":1566631560000,"y":0.12},{"x":1566631620000,"y":0.11},{"x":1566631680000,"y":0.14},{"x":1566631740000,"y":0.3},{"x":1566631800000,"y":0.33},{"x":1566631860000,"y":0.13},{"x":1566631920000,"y":0.16},{"x":1566631980000,"y":0.11},{"x":1566632040000,"y":0.12},{"x":1566632100000,"y":0.5},{"x":1566632160000,"y":0.12},{"x":1566632220000,"y":0.11},{"x":1566632280000,"y":0.13},{"x":1566632340000,"y":0.26},{"x":1566632400000,"y":0.89},{"x":1566632460000,"y":0.15},{"x":1566632520000,"y":0.14},{"x":1566632580000,"y":0.12},{"x":1566632640000,"y":0.13},{"x":1566632700000,"y":0.36},{"x":1566632760000,"y":0.2},{"x":1566632820000,"y":0.18},{"x":1566632880000,"y":0.14},{"x":1566632940000,"y":0.19},{"x":1566633000000,"y":0.44},{"x":1566633060000,"y":0.16},{"x":1566633120000,"y":0.13},{"x":1566633180000,"y":0.13},{"x":1566633240000,"y":0.13},{"x":1566633300000,"y":0.43},{"x":1566633360000,"y":0.18},{"x":1566633420000,"y":0.14},{"x":1566633480000,"y":1.95},{"x":1566633540000,"y":0.14},{"x":1566633600000,"y":0.63},{"x":1566633660000,"y":0.16},{"x":1566633720000,"y":1.1},{"x":1566633780000,"y":0.17},{"x":1566633840000,"y":0.15},{"x":1566633900000,"y":0.52},{"x":1566633960000,"y":0.15},{"x":1566634020000,"y":0.17},{"x":1566634080000,"y":0.18},{"x":1566634140000,"y":0.26},{"x":1566634200000,"y":0.25},{"x":1566634260000,"y":0.41},{"x":1566634320000,"y":0.2},{"x":1566634380000,"y":0.23},{"x":1566634440000,"y":0.17},{"x":1566634500000,"y":0.43},{"x":1566634560000,"y":2},{"x":1566634620000,"y":0.18},{"x":1566634680000,"y":0.15},{"x":1566634740000,"y":0.13},{"x":1566634800000,"y":0.36},{"x":1566634860000,"y":0.31},{"x":1566634920000,"y":0.17},{"x":1566634980000,"y":1.13},{"x":1566635040000,"y":0.13},{"x":1566635100000,"y":0.16},{"x":1566635160000,"y":5.16},{"x":1566635220000,"y":0.29},{"x":1566635280000,"y":0.15},{"x":1566635340000,"y":0.12},{"x":1566635400000,"y":0.37},{"x":1566635460000,"y":1.03},{"x":1566635520000,"y":0.19},{"x":1566635580000,"y":0.15},{"x":1566635640000,"y":0.2},{"x":1566635700000,"y":0.26},{"x":1566635760000,"y":0.35},{"x":1566635820000,"y":0.16},{"x":1566635880000,"y":0.16},{"x":1566635940000,"y":0.28},{"x":1566636000000,"y":0.27},{"x":1566636060000,"y":0.25},{"x":1566636120000,"y":0.12},{"x":1566636180000,"y":0.13},{"x":1566636240000,"y":0.12},{"x":1566636300000,"y":0.31},{"x":1566636360000,"y":0.26},{"x":1566636420000,"y":0.13},{"x":1566636480000,"y":0.11},{"x":1566636540000,"y":0.16},{"x":1566636600000,"y":0.24},{"x":1566636660000,"y":0.15},{"x":1566636720000,"y":1.2},{"x":1566636780000,"y":0.12},{"x":1566636840000,"y":0.15},{"x":1566636900000,"y":0.29},{"x":1566636960000,"y":0.14},{"x":1566637020000,"y":0.29},{"x":1566637080000,"y":0.13},{"x":1566637140000,"y":0.15},{"x":1566637200000,"y":0.54},{"x":1566637260000,"y":0.22},{"x":1566637320000,"y":0.28},{"x":1566637380000,"y":0.15},{"x":1566637440000,"y":0.12},{"x":1566637500000,"y":0.22},{"x":1566637560000,"y":0.07},{"x":1566637620000,"y":0.26},{"x":1566637680000,"y":0.14},{"x":1566637740000,"y":0.24},{"x":1566637800000,"y":0.34},{"x":1566637860000,"y":0.13},{"x":1566637920000,"y":0.27},{"x":1566637980000,"y":0.1},{"x":1566638040000,"y":0.21},{"x":1566638100000,"y":0.34},{"x":1566638160000,"y":0.15},{"x":1566638220000,"y":0.29},{"x":1566638280000,"y":0.12},{"x":1566638340000,"y":0.15},{"x":1566638400000,"y":0.27},{"x":1566638460000,"y":0.13},{"x":1566638520000,"y":0.3},{"x":1566638580000,"y":0.14},{"x":1566638640000,"y":0.14},{"x":1566638700000,"y":0.2},{"x":1566638760000,"y":0.14},{"x":1566638820000,"y":0.23},{"x":1566638880000,"y":0.18},{"x":1566638940000,"y":0.1},{"x":1566639000000,"y":0.33},{"x":1566639060000,"y":0.12},{"x":1566639120000,"y":0.09},{"x":1566639180000,"y":0.24},{"x":1566639240000,"y":0.07},{"x":1566639300000,"y":0.16},{"x":1566639360000,"y":0.07},{"x":1566639420000,"y":0.1},{"x":1566639480000,"y":0.24},{"x":1566639540000,"y":0.25},{"x":1566639600000,"y":0.16},{"x":1566639660000,"y":0.1},{"x":1566639720000,"y":0.11},{"x":1566639780000,"y":0.29},{"x":1566639840000,"y":0.1},{"x":1566639900000,"y":0.23},{"x":1566639960000,"y":0.06},{"x":1566640020000,"y":0.12},{"x":1566640080000,"y":0.23},{"x":1566640140000,"y":0.1},{"x":1566640200000,"y":0.23},{"x":1566640260000,"y":0.07},{"x":1566640320000,"y":0.06},{"x":1566640380000,"y":0.25},{"x":1566640440000,"y":0.08},{"x":1566640500000,"y":0.14},{"x":1566640560000,"y":0.12},{"x":1566640620000,"y":0.1},{"x":1566640680000,"y":0.24},{"x":1566640740000,"y":0.12},{"x":1566640800000,"y":0.47},{"x":1566640860000,"y":0.24},{"x":1566640920000,"y":0.19},{"x":1566640980000,"y":0.19},{"x":1566641040000,"y":0.4},{"x":1566641100000,"y":0.33},{"x":1566641160000,"y":0.12},{"x":1566641220000,"y":0.11},{"x":1566641280000,"y":0.13},{"x":1566641340000,"y":0.39},{"x":1566641400000,"y":0.31},{"x":1566641460000,"y":0.2},{"x":1566641520000,"y":0.21},{"x":1566641580000,"y":0.27},{"x":1566641640000,"y":0.37},{"x":1566641700000,"y":0.35},{"x":1566641760000,"y":0.22},{"x":1566641820000,"y":0.22},{"x":1566641880000,"y":0.27},{"x":1566641940000,"y":0.37},{"x":1566642000000,"y":0.29},{"x":1566642060000,"y":0.3},{"x":1566642120000,"y":0.32},{"x":1566642180000,"y":0.29},{"x":1566642240000,"y":0.31},{"x":1566642300000,"y":0.43},{"x":1566642360000,"y":0.32},{"x":1566642420000,"y":0.24},{"x":1566642480000,"y":0.21},{"x":1566642540000,"y":0.42},{"x":1566642600000,"y":0.35},{"x":1566642660000,"y":0.17},{"x":1566642720000,"y":0.22},{"x":1566642780000,"y":0.22},{"x":1566642840000,"y":0.27},{"x":1566642900000,"y":0.21},{"x":1566642960000,"y":0.23},{"x":1566643020000,"y":0.18},{"x":1566643080000,"y":0.1},{"x":1566643140000,"y":0.33},{"x":1566643200000,"y":0.54},{"x":1566643260000,"y":0.16},{"x":1566643320000,"y":0.16},{"x":1566643380000,"y":0.14},{"x":1566643440000,"y":0.14},{"x":1566643500000,"y":0.58},{"x":1566643560000,"y":0.11},{"x":1566643620000,"y":0.24},{"x":1566643680000,"y":0.22},{"x":1566643740000,"y":0.14},{"x":1566643800000,"y":0.46},{"x":1566643860000,"y":0.13},{"x":1566643920000,"y":0.15},{"x":1566643980000,"y":0.18},{"x":1566644040000,"y":0.17},{"x":1566644100000,"y":0.44},{"x":1566644160000,"y":0.18},{"x":1566644220000,"y":0.15},{"x":1566644280000,"y":0.21},{"x":1566644340000,"y":0.18},{"x":1566644400000,"y":0.54},{"x":1566644460000,"y":0.15},{"x":1566644520000,"y":0.15},{"x":1566644580000,"y":6.87},{"x":1566644640000,"y":0.17},{"x":1566644700000,"y":0.41},{"x":1566644760000,"y":0.14},{"x":1566644820000,"y":0.14},{"x":1566644880000,"y":0.16},{"x":1566644940000,"y":0.25},{"x":1566645000000,"y":0.45},{"x":1566645060000,"y":0.14},{"x":1566645120000,"y":0.13},{"x":1566645180000,"y":0.17},{"x":1566645240000,"y":0.11},{"x":1566645300000,"y":0.48},{"x":1566645360000,"y":0.12},{"x":1566645420000,"y":0.15},{"x":1566645480000,"y":0.12},{"x":1566645540000,"y":0.15},{"x":1566645600000,"y":0.3},{"x":1566645660000,"y":0.25},{"x":1566645720000,"y":0.15},{"x":1566645780000,"y":0.12},{"x":1566645840000,"y":0.12},{"x":1566645900000,"y":1.34},{"x":1566645960000,"y":0.28},{"x":1566646020000,"y":0.17},{"x":1566646080000,"y":0.16},{"x":1566646140000,"y":0.12},{"x":1566646200000,"y":0.26},{"x":1566646260000,"y":0.29},{"x":1566646320000,"y":0.18},{"x":1566646380000,"y":0.15},{"x":1566646440000,"y":0.15},{"x":1566646500000,"y":0.35},{"x":1566646560000,"y":0.33},{"x":1566646620000,"y":0.13},{"x":1566646680000,"y":0.14},{"x":1566646740000,"y":0.21},{"x":1566646800000,"y":0.22},{"x":1566646860000,"y":0.22},{"x":1566646920000,"y":0.11},{"x":1566646980000,"y":0.11},{"x":1566647040000,"y":0.11},{"x":1566647100000,"y":0.22},{"x":1566647160000,"y":0.26},{"x":1566647220000,"y":0.09},{"x":1566647280000,"y":0.1},{"x":1566647340000,"y":0.09},{"x":1566647400000,"y":0.19},{"x":1566647460000,"y":0.25},{"x":1566647520000,"y":0.12},{"x":1566647580000,"y":0.11},{"x":1566647640000,"y":0.08},{"x":1566647700000,"y":0.15},{"x":1566647760000,"y":0.09},{"x":1566647820000,"y":0.23},{"x":1566647880000,"y":2.98},{"x":1566647940000,"y":0.17},{"x":1566648000000,"y":0.33},{"x":1566648060000,"y":0.11},{"x":1566648120000,"y":0.27},{"x":1566648180000,"y":0.2},{"x":1566648240000,"y":0.15},{"x":1566648300000,"y":0.2},{"x":1566648360000,"y":0.15},{"x":1566648420000,"y":0.24},{"x":1566648480000,"y":0.12},{"x":1566648540000,"y":0.17},{"x":1566648600000,"y":0.26},{"x":1566648660000,"y":0.09},{"x":1566648720000,"y":0.36},{"x":1566648780000,"y":0.18},{"x":1566648840000,"y":0.13},{"x":1566648900000,"y":0.27},{"x":1566648960000,"y":0.15},{"x":1566649020000,"y":0.26},{"x":1566649080000,"y":0.08},{"x":1566649140000,"y":0.08},{"x":1566649200000,"y":0.19},{"x":1566649260000,"y":0.16},{"x":1566649320000,"y":0.23},{"x":1566649380000,"y":0.08},{"x":1566649440000,"y":0.14},{"x":1566649500000,"y":0.28},{"x":1566649560000,"y":0.12},{"x":1566649620000,"y":0.28},{"x":1566649680000,"y":0.12},{"x":1566649740000,"y":0.12},{"x":1566649800000,"y":1.44},{"x":1566649860000,"y":0.14},{"x":1566649920000,"y":0.1},{"x":1566649980000,"y":0.28},{"x":1566650040000,"y":0.08},{"x":1566650100000,"y":0.26},{"x":1566650160000,"y":0.13},{"x":1566650220000,"y":0.12},{"x":1566650280000,"y":0.21},{"x":1566650340000,"y":0.24},{"x":1566650400000,"y":0.25},{"x":1566650460000,"y":0.15},{"x":1566650520000,"y":0.15},{"x":1566650580000,"y":0.22},{"x":1566650640000,"y":0.1},{"x":1566650700000,"y":0.25},{"x":1566650760000,"y":0.77},{"x":1566650820000,"y":0.17},{"x":1566650880000,"y":0.25},{"x":1566650940000,"y":0.11},{"x":1566651000000,"y":0.29},{"x":1566651060000,"y":0.11},{"x":1566651120000,"y":0.09},{"x":1566651180000,"y":0.3},{"x":1566651240000,"y":0.1},{"x":1566651300000,"y":0.23},{"x":1566651360000,"y":0.11},{"x":1566651420000,"y":0.15},{"x":1566651480000,"y":0.26},{"x":1566651540000,"y":0.09},{"x":1566651600000,"y":0.33},{"x":1566651660000,"y":0.12},{"x":1566651720000,"y":0.16},{"x":1566651780000,"y":0.34},{"x":1566651840000,"y":0.2},{"x":1566651900000,"y":0.23},{"x":1566651960000,"y":0.18},{"x":1566652020000,"y":0.17},{"x":1566652080000,"y":0.34},{"x":1566652140000,"y":0.23},{"x":1566652200000,"y":0.28},{"x":1566652260000,"y":0.17},{"x":1566652320000,"y":0.19},{"x":1566652380000,"y":0.19},{"x":1566652440000,"y":0.44},{"x":1566652500000,"y":0.34},{"x":1566652560000,"y":0.17},{"x":1566652620000,"y":0.24},{"x":1566652680000,"y":0.21},{"x":1566652740000,"y":0.33},{"x":1566652800000,"y":0.29},{"x":1566652860000,"y":0.17},{"x":1566652920000,"y":0.24},{"x":1566652980000,"y":0.16},{"x":1566653040000,"y":0.32},{"x":1566653100000,"y":0.33},{"x":1566653160000,"y":0.18},{"x":1566653220000,"y":0.2},{"x":1566653280000,"y":0.2},{"x":1566653340000,"y":0.33},{"x":1566653400000,"y":0.29},{"x":1566653460000,"y":0.18},{"x":1566653520000,"y":0.18},{"x":1566653580000,"y":0.23},{"x":1566653640000,"y":0.32},{"x":1566653700000,"y":0.29},{"x":1566653760000,"y":0.16},{"x":1566653820000,"y":0.19},{"x":1566653880000,"y":0.17},{"x":1566653940000,"y":0.41},{"x":1566654000000,"y":0.3},{"x":1566654060000,"y":0.17},{"x":1566654120000,"y":0.21},{"x":1566654180000,"y":0.23},{"x":1566654240000,"y":0.29},{"x":1566654300000,"y":0.36},{"x":1566654360000,"y":0.17},{"x":1566654420000,"y":0.24},{"x":1566654480000,"y":0.19},{"x":1566654540000,"y":0.2},{"x":1566654600000,"y":0.42},{"x":1566654660000,"y":0.15},{"x":1566654720000,"y":0.16},{"x":1566654780000,"y":0.17},{"x":1566654840000,"y":0.18},{"x":1566654900000,"y":0.42},{"x":1566654960000,"y":0.19},{"x":1566655020000,"y":0.17},{"x":1566655080000,"y":0.16},{"x":1566655140000,"y":0.17},{"x":1566655200000,"y":0.49},{"x":1566655260000,"y":0.17},{"x":1566655320000,"y":0.17},{"x":1566655380000,"y":0.15},{"x":1566655440000,"y":0.16},{"x":1566655500000,"y":0.38},{"x":1566655560000,"y":0.17},{"x":1566655620000,"y":0.17},{"x":1566655680000,"y":0.22},{"x":1566655740000,"y":0.33},{"x":1566655800000,"y":0.39},{"x":1566655860000,"y":0.2},{"x":1566655920000,"y":0.21},{"x":1566655980000,"y":0.15},{"x":1566656040000,"y":0.2},{"x":1566656100000,"y":0.59},{"x":1566656160000,"y":0.2},{"x":1566656220000,"y":0.18},{"x":1566656280000,"y":0.17},{"x":1566656340000,"y":0.23},{"x":1566656400000,"y":0.45},{"x":1566656460000,"y":0.17},{"x":1566656520000,"y":0.18},{"x":1566656580000,"y":0.18},{"x":1566656640000,"y":0.22},{"x":1566656700000,"y":0.33},{"x":1566656760000,"y":0.33},{"x":1566656820000,"y":0.23},{"x":1566656880000,"y":0.17},{"x":1566656940000,"y":0.2},{"x":1566657000000,"y":0.34},{"x":1566657060000,"y":5.18},{"x":1566657120000,"y":0.27},{"x":1566657180000,"y":0.22},{"x":1566657240000,"y":0.22},{"x":1566657300000,"y":0.32},{"x":1566657360000,"y":0.34},{"x":1566657420000,"y":0.22},{"x":1566657480000,"y":0.18},{"x":1566657540000,"y":0.38},{"x":1566657600000,"y":0.29},{"x":1566657660000,"y":0.33},{"x":1566657720000,"y":0.2},{"x":1566657780000,"y":0.21},{"x":1566657840000,"y":0.16},{"x":1566657900000,"y":0.31},{"x":1566657960000,"y":0.32},{"x":1566658020000,"y":0.18},{"x":1566658080000,"y":0.15},{"x":1566658140000,"y":0.16},{"x":1566658200000,"y":0.26},{"x":1566658260000,"y":0.38},{"x":1566658320000,"y":0.2},{"x":1566658380000,"y":0.21},{"x":1566658440000,"y":0.19},{"x":1566658500000,"y":0.36},{"x":1566658560000,"y":0.34},{"x":1566658620000,"y":0.19},{"x":1566658680000,"y":0.16},{"x":1566658740000,"y":0.18},{"x":1566658800000,"y":0.49},{"x":1566658860000,"y":0.27},{"x":1566658920000,"y":0.42},{"x":1566658980000,"y":0.19},{"x":1566659040000,"y":0.17},{"x":1566659100000,"y":0.36},{"x":1566659160000,"y":0.19},{"x":1566659220000,"y":0.31},{"x":1566659280000,"y":0.16},{"x":1566659340000,"y":0.33},{"x":1566659400000,"y":0.27},{"x":1566659460000,"y":0.24},{"x":1566659520000,"y":0.3},{"x":1566659580000,"y":0.2},{"x":1566659640000,"y":0.18},{"x":1566659700000,"y":0.3},{"x":1566659760000,"y":0.16},{"x":1566659820000,"y":0.35},{"x":1566659880000,"y":0.17},{"x":1566659940000,"y":0.18},{"x":1566660000000,"y":0.25},{"x":1566660060000,"y":0.16},{"x":1566660120000,"y":0.37},{"x":1566660180000,"y":0.22},{"x":1566660240000,"y":0.17},{"x":1566660300000,"y":0.3},{"x":1566660360000,"y":0.17},{"x":1566660420000,"y":0.32},{"x":1566660480000,"y":0.99},{"x":1566660540000,"y":0.19},{"x":1566660600000,"y":1.44},{"x":1566660660000,"y":0.21},{"x":1566660720000,"y":0.31},{"x":1566660780000,"y":0.22},{"x":1566660840000,"y":0.19},{"x":1566660900000,"y":0.31},{"x":1566660960000,"y":0.16},{"x":1566661020000,"y":0.32},{"x":1566661080000,"y":0.19},{"x":1566661140000,"y":0.45},{"x":1566661200000,"y":0.29},{"x":1566661260000,"y":0.23},{"x":1566661320000,"y":0.17},{"x":1566661380000,"y":0.32},{"x":1566661440000,"y":0.17},{"x":1566661500000,"y":0.4},{"x":1566661560000,"y":0.19},{"x":1566661620000,"y":0.18},{"x":1566661680000,"y":0.35},{"x":1566661740000,"y":0.19},{"x":1566661800000,"y":0.2},{"x":1566661860000,"y":0.15},{"x":1566661920000,"y":0.12},{"x":1566661980000,"y":0.27},{"x":1566662040000,"y":0.12},{"x":1566662100000,"y":0.21},{"x":1566662160000,"y":0.13},{"x":1566662220000,"y":0.09},{"x":1566662280000,"y":0.25},{"x":1566662340000,"y":0.09},{"x":1566662400000,"y":0.24},{"x":1566662460000,"y":0.15},{"x":1566662520000,"y":0.09},{"x":1566662580000,"y":0.27},{"x":1566662640000,"y":0.09},{"x":1566662700000,"y":0.23},{"x":1566662760000,"y":0.1},{"x":1566662820000,"y":0.08},{"x":1566662880000,"y":0.22},{"x":1566662940000,"y":0.34},{"x":1566663000000,"y":0.22},{"x":1566663060000,"y":0.12},{"x":1566663120000,"y":0.22},{"x":1566663180000,"y":0.32},{"x":1566663240000,"y":0.17},{"x":1566663300000,"y":0.32},{"x":1566663360000,"y":0.1},{"x":1566663420000,"y":0.11},{"x":1566663480000,"y":0.13},{"x":1566663540000,"y":0.24},{"x":1566663600000,"y":0.25},{"x":1566663660000,"y":0.13},{"x":1566663720000,"y":0.1},{"x":1566663780000,"y":0.15},{"x":1566663840000,"y":0.27},{"x":1566663900000,"y":0.31},{"x":1566663960000,"y":0.09},{"x":1566664020000,"y":0.1},{"x":1566664080000,"y":0.08},{"x":1566664140000,"y":0.24},{"x":1566664200000,"y":0.23},{"x":1566664260000,"y":0.17},{"x":1566664320000,"y":0.16},{"x":1566664380000,"y":0.1},{"x":1566664440000,"y":0.29},{"x":1566664500000,"y":0.28},{"x":1566664560000,"y":0.11},{"x":1566664620000,"y":0.13},{"x":1566664680000,"y":0.16},{"x":1566664740000,"y":0.4},{"x":1566664800000,"y":0.26},{"x":1566664860000,"y":0.13},{"x":1566664920000,"y":0.13},{"x":1566664980000,"y":0.15},{"x":1566665040000,"y":0.26},{"x":1566665100000,"y":0.25},{"x":1566665160000,"y":0.15},{"x":1566665220000,"y":0.11},{"x":1566665280000,"y":0.18},{"x":1566665340000,"y":0.29},{"x":1566665400000,"y":0.35},{"x":1566665460000,"y":0.1},{"x":1566665520000,"y":0.11},{"x":1566665580000,"y":0.16},{"x":1566665640000,"y":0.17},{"x":1566665700000,"y":0.49},{"x":1566665760000,"y":0.15},{"x":1566665820000,"y":0.16},{"x":1566665880000,"y":0.17},{"x":1566665940000,"y":0.15},{"x":1566666000000,"y":0.67},{"x":1566666060000,"y":0.14},{"x":1566666120000,"y":0.11},{"x":1566666180000,"y":0.12},{"x":1566666240000,"y":0.13},{"x":1566666300000,"y":0.36},{"x":1566666360000,"y":0.13},{"x":1566666420000,"y":0.1},{"x":1566666480000,"y":0.12},{"x":1566666540000,"y":0.16},{"x":1566666600000,"y":0.34},{"x":1566666660000,"y":0.13},{"x":1566666720000,"y":0.11},{"x":1566666780000,"y":0.07},{"x":1566666840000,"y":0.11},{"x":1566666900000,"y":0.33},{"x":1566666960000,"y":0.1},{"x":1566667020000,"y":0.11},{"x":1566667080000,"y":0.1},{"x":1566667140000,"y":0.12},{"x":1566667200000,"y":0.33},{"x":1566667260000,"y":0.11},{"x":1566667320000,"y":0.1},{"x":1566667380000,"y":0.17},{"x":1566667440000,"y":0.13},{"x":1566667500000,"y":0.35},{"x":1566667560000,"y":0.08},{"x":1566667620000,"y":0.1},{"x":1566667680000,"y":0.1},{"x":1566667740000,"y":0.12},{"x":1566667800000,"y":0.23},{"x":1566667860000,"y":0.31},{"x":1566667920000,"y":0.1},{"x":1566667980000,"y":0.1},{"x":1566668040000,"y":0.11},{"x":1566668100000,"y":0.24},{"x":1566668160000,"y":0.21},{"x":1566668220000,"y":0.1},{"x":1566668280000,"y":0.1},{"x":1566668340000,"y":0.29},{"x":1566668400000,"y":0.29},{"x":1566668460000,"y":0.25},{"x":1566668520000,"y":0.15},{"x":1566668580000,"y":0.07},{"x":1566668640000,"y":0.12},{"x":1566668700000,"y":0.21},{"x":1566668760000,"y":0.25},{"x":1566668820000,"y":0.12},{"x":1566668880000,"y":0.17},{"x":1566668940000,"y":0.12},{"x":1566669000000,"y":0.24},{"x":1566669060000,"y":0.26},{"x":1566669120000,"y":0.14},{"x":1566669180000,"y":0.14},{"x":1566669240000,"y":0.12},{"x":1566669300000,"y":0.27},{"x":1566669360000,"y":0.25},{"x":1566669420000,"y":0.13},{"x":1566669480000,"y":0.15},{"x":1566669540000,"y":0.08},{"x":1566669600000,"y":0.31},{"x":1566669660000,"y":0.29},{"x":1566669720000,"y":0.15},{"x":1566669780000,"y":0.09},{"x":1566669840000,"y":0.12},{"x":1566669900000,"y":0.28},{"x":1566669960000,"y":0.25},{"x":1566670020000,"y":0.17},{"x":1566670080000,"y":0.09},{"x":1566670140000,"y":0.31},{"x":1566670200000,"y":0.23},{"x":1566670260000,"y":0.13},{"x":1566670320000,"y":0.3},{"x":1566670380000,"y":0.14},{"x":1566670440000,"y":0.09},{"x":1566670500000,"y":0.27},{"x":1566670560000,"y":0.14},{"x":1566670620000,"y":0.24},{"x":1566670680000,"y":0.11},{"x":1566670740000,"y":0.1},{"x":1566670800000,"y":0.2},{"x":1566670860000,"y":0.1},{"x":1566670920000,"y":0.24},{"x":1566670980000,"y":0.12},{"x":1566671040000,"y":0.13},{"x":1566671100000,"y":0.25},{"x":1566671160000,"y":0.1},{"x":1566671220000,"y":0.25},{"x":1566671280000,"y":0.14},{"x":1566671340000,"y":0.12},{"x":1566671400000,"y":0.24},{"x":1566671460000,"y":0.67},{"x":1566671520000,"y":0.32},{"x":1566671580000,"y":0.1},{"x":1566671640000,"y":0.07},{"x":1566671700000,"y":0.16},{"x":1566671760000,"y":0.07},{"x":1566671820000,"y":0.23},{"x":1566671880000,"y":0.11},{"x":1566671940000,"y":0.3},{"x":1566672000000,"y":0.21},{"x":1566672060000,"y":0.07},{"x":1566672120000,"y":0.12},{"x":1566672180000,"y":0.2},{"x":1566672240000,"y":0.09},{"x":1566672300000,"y":0.2},{"x":1566672360000,"y":0.07},{"x":1566672420000,"y":0.12},{"x":1566672480000,"y":0.23},{"x":1566672540000,"y":0.12},{"x":1566672600000,"y":0.26},{"x":1566672660000,"y":0.08},{"x":1566672720000,"y":0.09},{"x":1566672780000,"y":0.23},{"x":1566672840000,"y":0.13},{"x":1566672900000,"y":0.29},{"x":1566672960000,"y":0.14},{"x":1566673020000,"y":0.08},{"x":1566673080000,"y":0.21},{"x":1566673140000,"y":0.07},{"x":1566673200000,"y":0.4},{"x":1566673260000,"y":0.11},{"x":1566673320000,"y":0.1},{"x":1566673380000,"y":0.24},{"x":1566673440000,"y":0.06},{"x":1566673500000,"y":0.19},{"x":1566673560000,"y":0.1},{"x":1566673620000,"y":0.1},{"x":1566673680000,"y":0.22},{"x":1566673740000,"y":0.23},{"x":1566673800000,"y":0.19},{"x":1566673860000,"y":0.1},{"x":1566673920000,"y":0.08},{"x":1566673980000,"y":0.1},{"x":1566674040000,"y":0.23},{"x":1566674100000,"y":0.16},{"x":1566674160000,"y":0.1},{"x":1566674220000,"y":0.08},{"x":1566674280000,"y":0.08},{"x":1566674340000,"y":0.2},{"x":1566674400000,"y":0.18},{"x":1566674460000,"y":0.07},{"x":1566674520000,"y":0.11},{"x":1566674580000,"y":0.12},{"x":1566674640000,"y":0.22},{"x":1566674700000,"y":0.21},{"x":1566674760000,"y":0.07},{"x":1566674820000,"y":0.07},{"x":1566674880000,"y":0.1},{"x":1566674940000,"y":0.24},{"x":1566675000000,"y":0.29},{"x":1566675060000,"y":4.19},{"x":1566675120000,"y":0.12},{"x":1566675180000,"y":0.12},{"x":1566675240000,"y":0.25},{"x":1566675300000,"y":0.27},{"x":1566675360000,"y":0.07},{"x":1566675420000,"y":0.14},{"x":1566675480000,"y":0.1},{"x":1566675540000,"y":0.41},{"x":1566675600000,"y":0.27},{"x":1566675660000,"y":0.11},{"x":1566675720000,"y":0.08},{"x":1566675780000,"y":0.12},{"x":1566675840000,"y":0.27},{"x":1566675900000,"y":0.17},{"x":1566675960000,"y":0.07},{"x":1566676020000,"y":0.1},{"x":1566676080000,"y":0.11},{"x":1566676140000,"y":0.1},{"x":1566676200000,"y":0.51},{"x":1566676260000,"y":0.08},{"x":1566676320000,"y":0.1},{"x":1566676380000,"y":0.11},{"x":1566676440000,"y":0.11},{"x":1566676500000,"y":0.33},{"x":1566676560000,"y":0.15},{"x":1566676620000,"y":0.11},{"x":1566676680000,"y":0.08},{"x":1566676740000,"y":0.09},{"x":1566676800000,"y":0.49},{"x":1566676860000,"y":0.11},{"x":1566676920000,"y":0.12},{"x":1566676980000,"y":0.13},{"x":1566677040000,"y":0.08},{"x":1566677100000,"y":0.45},{"x":1566677160000,"y":0.12},{"x":1566677220000,"y":0.1},{"x":1566677280000,"y":0.09},{"x":1566677340000,"y":0.3},{"x":1566677400000,"y":0.33},{"x":1566677460000,"y":0.1},{"x":1566677520000,"y":0.14},{"x":1566677580000,"y":0.11},{"x":1566677640000,"y":0.23},{"x":1566677700000,"y":0.5},{"x":1566677760000,"y":0.15},{"x":1566677820000,"y":0.16},{"x":1566677880000,"y":0.11},{"x":1566677940000,"y":0.11},{"x":1566678000000,"y":0.47},{"x":1566678060000,"y":0.11},{"x":1566678120000,"y":0.12},{"x":1566678180000,"y":0.16},{"x":1566678240000,"y":0.12},{"x":1566678300000,"y":0.2},{"x":1566678360000,"y":0.3},{"x":1566678420000,"y":0.1},{"x":1566678480000,"y":0.09},{"x":1566678540000,"y":1.77},{"x":1566678600000,"y":0.19},{"x":1566678660000,"y":0.19},{"x":1566678720000,"y":0.12},{"x":1566678780000,"y":0.08},{"x":1566678840000,"y":0.1},{"x":1566678900000,"y":0.21},{"x":1566678960000,"y":5.09},{"x":1566679020000,"y":0.12},{"x":1566679080000,"y":0.16},{"x":1566679140000,"y":0.16},{"x":1566679200000,"y":0.2},{"x":1566679260000,"y":0.23},{"x":1566679320000,"y":0.1},{"x":1566679380000,"y":0.1},{"x":1566679440000,"y":0.1},{"x":1566679500000,"y":0.23},{"x":1566679560000,"y":0.23},{"x":1566679620000,"y":0.1},{"x":1566679680000,"y":0.12},{"x":1566679740000,"y":0.13},{"x":1566679800000,"y":0.16},{"x":1566679860000,"y":0.23},{"x":1566679920000,"y":0.09},{"x":1566679980000,"y":0.12},{"x":1566680040000,"y":0.1},{"x":1566680100000,"y":0.21},{"x":1566680160000,"y":0.24},{"x":1566680220000,"y":0.1},{"x":1566680280000,"y":0.12},{"x":1566680340000,"y":0.08},{"x":1566680400000,"y":0.44},{"x":1566680460000,"y":0.14},{"x":1566680520000,"y":0.25},{"x":1566680580000,"y":0.09},{"x":1566680640000,"y":0.09},{"x":1566680700000,"y":0.17},{"x":1566680760000,"y":0.1},{"x":1566680820000,"y":0.22},{"x":1566680880000,"y":0.06},{"x":1566680940000,"y":0.27},{"x":1566681000000,"y":0.14},{"x":1566681060000,"y":0.1},{"x":1566681120000,"y":0.22},{"x":1566681180000,"y":0.09},{"x":1566681240000,"y":0.07},{"x":1566681300000,"y":0.15},{"x":1566681360000,"y":0.1},{"x":1566681420000,"y":0.22},{"x":1566681480000,"y":0.07},{"x":1566681540000,"y":0.1},{"x":1566681600000,"y":0.15},{"x":1566681660000,"y":0.1},{"x":1566681720000,"y":0.23},{"x":1566681780000,"y":0.09},{"x":1566681840000,"y":0.1},{"x":1566681900000,"y":0.14},{"x":1566681960000,"y":0.09},{"x":1566682020000,"y":0.22},{"x":1566682080000,"y":0.08},{"x":1566682140000,"y":0.06},{"x":1566682200000,"y":0.19},{"x":1566682260000,"y":0.08},{"x":1566682320000,"y":0.23},{"x":1566682380000,"y":0.07},{"x":1566682440000,"y":0.07},{"x":1566682500000,"y":0.17},{"x":1566682560000,"y":0.14},{"x":1566682620000,"y":0.08},{"x":1566682680000,"y":0.24},{"x":1566682740000,"y":0.31},{"x":1566682800000,"y":0.25},{"x":1566682860000,"y":0.07},{"x":1566682920000,"y":0.08},{"x":1566682980000,"y":0.21},{"x":1566683040000,"y":0.08},{"x":1566683100000,"y":0.28},{"x":1566683160000,"y":0.07},{"x":1566683220000,"y":0.05},{"x":1566683280000,"y":0.24},{"x":1566683340000,"y":0.06},{"x":1566683400000,"y":0.22},{"x":1566683460000,"y":0.07},{"x":1566683520000,"y":0.08},{"x":1566683580000,"y":0.21},{"x":1566683640000,"y":0.08},{"x":1566683700000,"y":0.14},{"x":1566683760000,"y":0.1},{"x":1566683820000,"y":0.12},{"x":1566683880000,"y":0.27},{"x":1566683940000,"y":0.11},{"x":1566684000000,"y":0.27},{"x":1566684060000,"y":0.12},{"x":1566684120000,"y":0.11},{"x":1566684180000,"y":0.24},{"x":1566684240000,"y":0.06},{"x":1566684300000,"y":0.14},{"x":1566684360000,"y":0.14},{"x":1566684420000,"y":0.12},{"x":1566684480000,"y":0.22},{"x":1566684540000,"y":0.34},{"x":1566684600000,"y":0.23},{"x":1566684660000,"y":0.1},{"x":1566684720000,"y":0.14},{"x":1566684780000,"y":0.28},{"x":1566684840000,"y":0.17},{"x":1566684900000,"y":0.24},{"x":1566684960000,"y":0.1},{"x":1566685020000,"y":0.12},{"x":1566685080000,"y":0.1},{"x":1566685140000,"y":0.25},{"x":1566685200000,"y":0.26},{"x":1566685260000,"y":0.11},{"x":1566685320000,"y":0.15},{"x":1566685380000,"y":0.16},{"x":1566685440000,"y":0.28},{"x":1566685500000,"y":0.31},{"x":1566685560000,"y":0.15},{"x":1566685620000,"y":0.17},{"x":1566685680000,"y":0.16},{"x":1566685740000,"y":0.37},{"x":1566685800000,"y":0.3},{"x":1566685860000,"y":0.17},{"x":1566685920000,"y":0.2},{"x":1566685980000,"y":0.18},{"x":1566686040000,"y":0.32},{"x":1566686100000,"y":0.31},{"x":1566686160000,"y":0.18},{"x":1566686220000,"y":0.19},{"x":1566686280000,"y":0.2},{"x":1566686340000,"y":0.4},{"x":1566686400000,"y":0.36},{"x":1566686460000,"y":0.21},{"x":1566686520000,"y":0.2},{"x":1566686580000,"y":0.2},{"x":1566686640000,"y":0.3},{"x":1566686700000,"y":0.37},{"x":1566686760000,"y":0.19},{"x":1566686820000,"y":0.2},{"x":1566686880000,"y":0.18},{"x":1566686940000,"y":0.34},{"x":1566687000000,"y":0.3},{"x":1566687060000,"y":0.15},{"x":1566687120000,"y":0.21},{"x":1566687180000,"y":0.17},{"x":1566687240000,"y":0.2},{"x":1566687300000,"y":0.46},{"x":1566687360000,"y":0.17},{"x":1566687420000,"y":0.2},{"x":1566687480000,"y":0.17},{"x":1566687540000,"y":0.21},{"x":1566687600000,"y":0.52},{"x":1566687660000,"y":0.19},{"x":1566687720000,"y":0.2},{"x":1566687780000,"y":0.16},{"x":1566687840000,"y":0.16},{"x":1566687900000,"y":0.46},{"x":1566687960000,"y":0.15},{"x":1566688020000,"y":0.18},{"x":1566688080000,"y":0.17},{"x":1566688140000,"y":0.26},{"x":1566688200000,"y":0.55},{"x":1566688260000,"y":0.17},{"x":1566688320000,"y":0.18},{"x":1566688380000,"y":0.2},{"x":1566688440000,"y":0.17},{"x":1566688500000,"y":0.43},{"x":1566688560000,"y":0.22},{"x":1566688620000,"y":0.21},{"x":1566688680000,"y":0.22},{"x":1566688740000,"y":0.19},{"x":1566688800000,"y":0.46},{"x":1566688860000,"y":0.18},{"x":1566688920000,"y":0.17},{"x":1566688980000,"y":0.24},{"x":1566689040000,"y":0.17},{"x":1566689100000,"y":0.38},{"x":1566689160000,"y":0.2},{"x":1566689220000,"y":0.2},{"x":1566689280000,"y":0.18},{"x":1566689340000,"y":0.2},{"x":1566689400000,"y":1.74},{"x":1566689460000,"y":0.34},{"x":1566689520000,"y":0.2},{"x":1566689580000,"y":1.25},{"x":1566689640000,"y":0.15},{"x":1566689700000,"y":0.3},{"x":1566689760000,"y":0.29},{"x":1566689820000,"y":0.19},{"x":1566689880000,"y":0.17},{"x":1566689940000,"y":0.34},{"x":1566690000000,"y":0.39},{"x":1566690060000,"y":0.32},{"x":1566690120000,"y":0.2},{"x":1566690180000,"y":0.17},{"x":1566690240000,"y":0.15},{"x":1566690300000,"y":0.32},{"x":1566690360000,"y":0.28},{"x":1566690420000,"y":0.17},{"x":1566690480000,"y":0.21},{"x":1566690540000,"y":0.17},{"x":1566690600000,"y":0.34},{"x":1566690660000,"y":0.33},{"x":1566690720000,"y":0.18},{"x":1566690780000,"y":0.16},{"x":1566690840000,"y":0.17},{"x":1566690900000,"y":0.24},{"x":1566690960000,"y":0.35},{"x":1566691020000,"y":0.17},{"x":1566691080000,"y":0.16},{"x":1566691140000,"y":0.18},{"x":1566691200000,"y":0.43},{"x":1566691260000,"y":0.34},{"x":1566691320000,"y":0.17},{"x":1566691380000,"y":0.18},{"x":1566691440000,"y":0.18},{"x":1566691500000,"y":0.24},{"x":1566691560000,"y":0.19},{"x":1566691620000,"y":0.3},{"x":1566691680000,"y":0.17},{"x":1566691740000,"y":0.32},{"x":1566691800000,"y":0.28},{"x":1566691860000,"y":0.16},{"x":1566691920000,"y":0.33},{"x":1566691980000,"y":0.2},{"x":1566692040000,"y":0.23},{"x":1566692100000,"y":0.45},{"x":1566692160000,"y":0.17},{"x":1566692220000,"y":0.34},{"x":1566692280000,"y":0.19},{"x":1566692340000,"y":0.18},{"x":1566692400000,"y":0.37},{"x":1566692460000,"y":0.17},{"x":1566692520000,"y":0.34},{"x":1566692580000,"y":0.23},{"x":1566692640000,"y":0.19},{"x":1566692700000,"y":0.3},{"x":1566692760000,"y":0.18},{"x":1566692820000,"y":0.32},{"x":1566692880000,"y":0.23},{"x":1566692940000,"y":0.2},{"x":1566693000000,"y":0.31},{"x":1566693060000,"y":0.91},{"x":1566693120000,"y":0.32},{"x":1566693180000,"y":0.2},{"x":1566693240000,"y":1.57},{"x":1566693300000,"y":0.3},{"x":1566693360000,"y":0.19},{"x":1566693420000,"y":0.33},{"x":1566693480000,"y":0.17},{"x":1566693540000,"y":0.22},{"x":1566693600000,"y":0.25},{"x":1566693660000,"y":0.18},{"x":1566693720000,"y":0.15},{"x":1566693780000,"y":0.35},{"x":1566693840000,"y":0.15},{"x":1566693900000,"y":0.3},{"x":1566693960000,"y":0.17},{"x":1566694020000,"y":0.2},{"x":1566694080000,"y":0.31},{"x":1566694140000,"y":0.17},{"x":1566694200000,"y":0.35},{"x":1566694260000,"y":0.19},{"x":1566694320000,"y":0.19},{"x":1566694380000,"y":0.31},{"x":1566694440000,"y":0.17},{"x":1566694500000,"y":0.29},{"x":1566694560000,"y":0.17},{"x":1566694620000,"y":0.18},{"x":1566694680000,"y":0.35},{"x":1566694740000,"y":0.2},{"x":1566694800000,"y":0.52},{"x":1566694860000,"y":0.18},{"x":1566694920000,"y":0.17},{"x":1566694980000,"y":0.3},{"x":1566695040000,"y":0.18},{"x":1566695100000,"y":0.29},{"x":1566695160000,"y":0.19},{"x":1566695220000,"y":0.16},{"x":1566695280000,"y":0.26},{"x":1566695340000,"y":0.24},{"x":1566695400000,"y":0.18},{"x":1566695460000,"y":0.11},{"x":1566695520000,"y":0.12},{"x":1566695580000,"y":0.25},{"x":1566695640000,"y":0.09},{"x":1566695700000,"y":0.17},{"x":1566695760000,"y":0.1},{"x":1566695820000,"y":0.15},{"x":1566695880000,"y":0.23},{"x":1566695940000,"y":0.09},{"x":1566696000000,"y":0.17},{"x":1566696060000,"y":0.09},{"x":1566696120000,"y":0.07},{"x":1566696180000,"y":0.11},{"x":1566696240000,"y":0.22},{"x":1566696300000,"y":0.23},{"x":1566696360000,"y":0.1},{"x":1566696420000,"y":0.07},{"x":1566696480000,"y":0.09},{"x":1566696540000,"y":0.21},{"x":1566696600000,"y":0.3},{"x":1566696660000,"y":0.09},{"x":1566696720000,"y":0.1},{"x":1566696780000,"y":0.12},{"x":1566696840000,"y":0.71},{"x":1566696900000,"y":3.02},{"x":1566696960000,"y":0.11},{"x":1566697020000,"y":0.08},{"x":1566697080000,"y":0.12},{"x":1566697140000,"y":0.34},{"x":1566697200000,"y":0.19},{"x":1566697260000,"y":0.09},{"x":1566697320000,"y":0.09},{"x":1566697380000,"y":0.11},{"x":1566697440000,"y":0.2},{"x":1566697500000,"y":0.17},{"x":1566697560000,"y":0.06},{"x":1566697620000,"y":0.11},{"x":1566697680000,"y":0.08},{"x":1566697740000,"y":0.22},{"x":1566697800000,"y":0.17},{"x":1566697860000,"y":0.09},{"x":1566697920000,"y":0.07},{"x":1566697980000,"y":0.1},{"x":1566698040000,"y":0.21},{"x":1566698100000,"y":0.19},{"x":1566698160000,"y":0.13},{"x":1566698220000,"y":0.08},{"x":1566698280000,"y":0.09},{"x":1566698340000,"y":0.08},{"x":1566698400000,"y":0.42},{"x":1566698460000,"y":0.12},{"x":1566698520000,"y":0.13},{"x":1566698580000,"y":0.09},{"x":1566698640000,"y":0.11},{"x":1566698700000,"y":0.31},{"x":1566698760000,"y":0.14},{"x":1566698820000,"y":0.1},{"x":1566698880000,"y":0.07},{"x":1566698940000,"y":0.25},{"x":1566699000000,"y":0.31},{"x":1566699060000,"y":0.12},{"x":1566699120000,"y":0.1},{"x":1566699180000,"y":0.12},{"x":1566699240000,"y":0.07},{"x":1566699300000,"y":0.5},{"x":1566699360000,"y":0.11},{"x":1566699420000,"y":0.12},{"x":1566699480000,"y":0.1},{"x":1566699540000,"y":0.15},{"x":1566699600000,"y":0.34},{"x":1566699660000,"y":0.13},{"x":1566699720000,"y":0.1},{"x":1566699780000,"y":0.17},{"x":1566699840000,"y":0.12},{"x":1566699900000,"y":0.4},{"x":1566699960000,"y":0.1},{"x":1566700020000,"y":0.1},{"x":1566700080000,"y":0.12},{"x":1566700140000,"y":0.1},{"x":1566700200000,"y":0.44},{"x":1566700260000,"y":0.13},{"x":1566700320000,"y":0.14},{"x":1566700380000,"y":0.13},{"x":1566700440000,"y":0.12},{"x":1566700500000,"y":0.3},{"x":1566700560000,"y":0.24},{"x":1566700620000,"y":0.07},{"x":1566700680000,"y":0.1},{"x":1566700740000,"y":0.19},{"x":1566700800000,"y":0.23},{"x":1566700860000,"y":5.25},{"x":1566700920000,"y":0.17},{"x":1566700980000,"y":0.1},{"x":1566701040000,"y":0.07},{"x":1566701100000,"y":0.2},{"x":1566701160000,"y":0.25},{"x":1566701220000,"y":0.16},{"x":1566701280000,"y":0.12},{"x":1566701340000,"y":0.17},{"x":1566701400000,"y":0.18},{"x":1566701460000,"y":0.29},{"x":1566701520000,"y":0.16},{"x":1566701580000,"y":0.13},{"x":1566701640000,"y":0.1},{"x":1566701700000,"y":0.18},{"x":1566701760000,"y":0.25},{"x":1566701820000,"y":0.17},{"x":1566701880000,"y":0.2},{"x":1566701940000,"y":0.1},{"x":1566702000000,"y":0.55},{"x":1566702060000,"y":0.32},{"x":1566702120000,"y":0.15},{"x":1566702180000,"y":0.14},{"x":1566702240000,"y":0.1},{"x":1566702300000,"y":0.25},{"x":1566702360000,"y":0.31},{"x":1566702420000,"y":0.1},{"x":1566702480000,"y":0.14},{"x":1566702540000,"y":0.31},{"x":1566702600000,"y":0.25},{"x":1566702660000,"y":0.23},{"x":1566702720000,"y":0.12},{"x":1566702780000,"y":0.1},{"x":1566702840000,"y":0.12},{"x":1566702900000,"y":0.23},{"x":1566702960000,"y":0.13},{"x":1566703020000,"y":0.3},{"x":1566703080000,"y":0.09},{"x":1566703140000,"y":0.08},{"x":1566703200000,"y":0.17},{"x":1566703260000,"y":0.07},{"x":1566703320000,"y":0.22},{"x":1566703380000,"y":0.1},{"x":1566703440000,"y":0.07},{"x":1566703500000,"y":0.2},{"x":1566703560000,"y":0.13},{"x":1566703620000,"y":0.27},{"x":1566703680000,"y":0.15},{"x":1566703740000,"y":0.13},{"x":1566703800000,"y":0.25},{"x":1566703860000,"y":0.1},{"x":1566703920000,"y":0.24},{"x":1566703980000,"y":0.16},{"x":1566704040000,"y":0.1},{"x":1566704100000,"y":0.59},{"x":1566704160000,"y":0.1},{"x":1566704220000,"y":0.25},{"x":1566704280000,"y":0.1},{"x":1566704340000,"y":0.2},{"x":1566704400000,"y":0.3},{"x":1566704460000,"y":0.1},{"x":1566704520000,"y":0.24},{"x":1566704580000,"y":0.1},{"x":1566704640000,"y":0.15},{"x":1566704700000,"y":0.16},{"x":1566704760000,"y":0.12},{"x":1566704820000,"y":0.23},{"x":1566704880000,"y":0.14},{"x":1566704940000,"y":0.09},{"x":1566705000000,"y":0.28},{"x":1566705060000,"y":0.1},{"x":1566705120000,"y":0.15},{"x":1566705180000,"y":0.25},{"x":1566705240000,"y":0.13},{"x":1566705300000,"y":0.24},{"x":1566705360000,"y":0.11},{"x":1566705420000,"y":0.11},{"x":1566705480000,"y":0.2},{"x":1566705540000,"y":0.16},{"x":1566705600000,"y":0.41},{"x":1566705660000,"y":0.2},{"x":1566705720000,"y":0.13},{"x":1566705780000,"y":0.25},{"x":1566705840000,"y":0.13},{"x":1566705900000,"y":0.2},{"x":1566705960000,"y":0.14},{"x":1566706020000,"y":0.12},{"x":1566706080000,"y":0.28},{"x":1566706140000,"y":0.21},{"x":1566706200000,"y":0.19},{"x":1566706260000,"y":0.08},{"x":1566706320000,"y":0.12},{"x":1566706380000,"y":0.24},{"x":1566706440000,"y":0.18},{"x":1566706500000,"y":0.2},{"x":1566706560000,"y":0.14},{"x":1566706620000,"y":0.13},{"x":1566706680000,"y":0.23},{"x":1566706740000,"y":0.15},{"x":1566706800000,"y":0.23},{"x":1566706860000,"y":0.1},{"x":1566706920000,"y":0.13},{"x":1566706980000,"y":0.22},{"x":1566707040000,"y":0.13},{"x":1566707100000,"y":0.22},{"x":1566707160000,"y":0.14},{"x":1566707220000,"y":0.08},{"x":1566707280000,"y":0.1},{"x":1566707340000,"y":0.25},{"x":1566707400000,"y":0.38},{"x":1566707460000,"y":0.12},{"x":1566707520000,"y":0.12},{"x":1566707580000,"y":0.14},{"x":1566707640000,"y":0.24},{"x":1566707700000,"y":0.36},{"x":1566707760000,"y":0.72},{"x":1566707820000,"y":0.09},{"x":1566707880000,"y":0.1},{"x":1566707940000,"y":0.33},{"x":1566708000000,"y":0.19},{"x":1566708060000,"y":0.13},{"x":1566708120000,"y":0.11},{"x":1566708180000,"y":0.19},{"x":1566708240000,"y":0.27},{"x":1566708300000,"y":0.27},{"x":1566708360000,"y":0.13},{"x":1566708420000,"y":0.13},{"x":1566708480000,"y":0.13},{"x":1566708540000,"y":0.28},{"x":1566708600000,"y":0.25},{"x":1566708660000,"y":0.15},{"x":1566708720000,"y":0.12},{"x":1566708780000,"y":0.12},{"x":1566708840000,"y":0.27},{"x":1566708900000,"y":0.23},{"x":1566708960000,"y":0.16},{"x":1566709020000,"y":0.17},{"x":1566709080000,"y":0.2},{"x":1566709140000,"y":0.12},{"x":1566709200000,"y":1.86},{"x":1566709260000,"y":0.21},{"x":1566709320000,"y":0.18},{"x":1566709380000,"y":0.13},{"x":1566709440000,"y":0.16},{"x":1566709500000,"y":0.56},{"x":1566709560000,"y":0.17},{"x":1566709620000,"y":0.17},{"x":1566709680000,"y":0.09},{"x":1566709740000,"y":0.3},{"x":1566709800000,"y":0.43},{"x":1566709860000,"y":0.17},{"x":1566709920000,"y":0.15},{"x":1566709980000,"y":0.19},{"x":1566710040000,"y":0.19},{"x":1566710100000,"y":0.36},{"x":1566710160000,"y":0.14},{"x":1566710220000,"y":0.12},{"x":1566710280000,"y":0.09},{"x":1566710340000,"y":0.06},{"x":1566710400000,"y":0.35},{"x":1566710460000,"y":0.12},{"x":1566710520000,"y":0.08},{"x":1566710580000,"y":0.12},{"x":1566710640000,"y":0.08},{"x":1566710700000,"y":0.36},{"x":1566710760000,"y":0.15},{"x":1566710820000,"y":0.1},{"x":1566710880000,"y":0.08},{"x":1566710940000,"y":0.11},{"x":1566711000000,"y":0.26},{"x":1566711060000,"y":0.3},{"x":1566711120000,"y":0.15},{"x":1566711180000,"y":0.65},{"x":1566711240000,"y":0.1},{"x":1566711300000,"y":0.19},{"x":1566711360000,"y":0.26},{"x":1566711420000,"y":0.1},{"x":1566711480000,"y":0.14},{"x":1566711540000,"y":0.24},{"x":1566711600000,"y":0.22},{"x":1566711660000,"y":0.28},{"x":1566711720000,"y":0.15},{"x":1566711780000,"y":0.11},{"x":1566711840000,"y":0.1},{"x":1566711900000,"y":0.24},{"x":1566711960000,"y":0.27},{"x":1566712020000,"y":0.11},{"x":1566712080000,"y":0.11},{"x":1566712140000,"y":0.11},{"x":1566712200000,"y":0.21},{"x":1566712260000,"y":0.25},{"x":1566712320000,"y":0.13},{"x":1566712380000,"y":0.13},{"x":1566712440000,"y":0.08},{"x":1566712500000,"y":0.25},{"x":1566712560000,"y":0.24},{"x":1566712620000,"y":0.14},{"x":1566712680000,"y":0.13},{"x":1566712740000,"y":0.09},{"x":1566712800000,"y":0.36},{"x":1566712860000,"y":0.3},{"x":1566712920000,"y":0.15},{"x":1566712980000,"y":0.12},{"x":1566713040000,"y":0.11},{"x":1566713100000,"y":0.22},{"x":1566713160000,"y":0.14},{"x":1566713220000,"y":0.33},{"x":1566713280000,"y":0.15},{"x":1566713340000,"y":0.3},{"x":1566713400000,"y":0.22},{"x":1566713460000,"y":0.11},{"x":1566713520000,"y":0.31},{"x":1566713580000,"y":0.13},{"x":1566713640000,"y":0.19},{"x":1566713700000,"y":0.26},{"x":1566713760000,"y":0.14},{"x":1566713820000,"y":0.27},{"x":1566713880000,"y":0.12},{"x":1566713940000,"y":0.11},{"x":1566714000000,"y":0.18},{"x":1566714060000,"y":0.14},{"x":1566714120000,"y":0.28},{"x":1566714180000,"y":0.11},{"x":1566714240000,"y":0.11},{"x":1566714300000,"y":0.66},{"x":1566714360000,"y":0.09},{"x":1566714420000,"y":0.3},{"x":1566714480000,"y":0.14},{"x":1566714540000,"y":0.08},{"x":1566714600000,"y":0.35},{"x":1566714660000,"y":0.12},{"x":1566714720000,"y":0.31},{"x":1566714780000,"y":0.14},{"x":1566714840000,"y":0.14},{"x":1566714900000,"y":0.25},{"x":1566714960000,"y":0.09},{"x":1566715020000,"y":0.22},{"x":1566715080000,"y":0.1},{"x":1566715140000,"y":0.27},{"x":1566715200000,"y":0.24},{"x":1566715260000,"y":0.1},{"x":1566715320000,"y":0.28},{"x":1566715380000,"y":0.1},{"x":1566715440000,"y":0.18},{"x":1566715500000,"y":0.21},{"x":1566715560000,"y":0.11},{"x":1566715620000,"y":0.27},{"x":1566715680000,"y":0.31},{"x":1566715740000,"y":0.09},{"x":1566715800000,"y":0.19},{"x":1566715860000,"y":0.09},{"x":1566715920000,"y":0.08},{"x":1566715980000,"y":0.22},{"x":1566716040000,"y":0.12},{"x":1566716100000,"y":0.19},{"x":1566716160000,"y":0.13},{"x":1566716220000,"y":0.13},{"x":1566716280000,"y":0.25},{"x":1566716340000,"y":0.11},{"x":1566716400000,"y":0.46},{"x":1566716460000,"y":0.1},{"x":1566716520000,"y":0.16},{"x":1566716580000,"y":0.28},{"x":1566716640000,"y":0.1},{"x":1566716700000,"y":0.23},{"x":1566716760000,"y":0.1},{"x":1566716820000,"y":0.1},{"x":1566716880000,"y":0.25},{"x":1566716940000,"y":0.22},{"x":1566717000000,"y":0.14},{"x":1566717060000,"y":0.13},{"x":1566717120000,"y":0.13},{"x":1566717180000,"y":0.24},{"x":1566717240000,"y":0.16},{"x":1566717300000,"y":0.19},{"x":1566717360000,"y":0.1},{"x":1566717420000,"y":0.16},{"x":1566717480000,"y":0.32},{"x":1566717540000,"y":0.16},{"x":1566717600000,"y":0.24},{"x":1566717660000,"y":0.18},{"x":1566717720000,"y":0.18},{"x":1566717780000,"y":0.2},{"x":1566717840000,"y":0.33},{"x":1566717900000,"y":0.28},{"x":1566717960000,"y":0.12},{"x":1566718020000,"y":0.12},{"x":1566718080000,"y":0.14},{"x":1566718140000,"y":0.23},{"x":1566718200000,"y":0.28},{"x":1566718260000,"y":0.1},{"x":1566718320000,"y":0.1},{"x":1566718380000,"y":0.09},{"x":1566718440000,"y":0.56},{"x":1566718500000,"y":0.38},{"x":1566718560000,"y":0.11},{"x":1566718620000,"y":0.15},{"x":1566718680000,"y":0.15},{"x":1566718740000,"y":0.37},{"x":1566718800000,"y":0.24},{"x":1566718860000,"y":0.18},{"x":1566718920000,"y":0.18},{"x":1566718980000,"y":0.17},{"x":1566719040000,"y":0.26},{"x":1566719100000,"y":0.36},{"x":1566719160000,"y":0.14},{"x":1566719220000,"y":0.2},{"x":1566719280000,"y":0.2},{"x":1566719340000,"y":0.3},{"x":1566719400000,"y":0.25},{"x":1566719460000,"y":0.2},{"x":1566719520000,"y":0.17},{"x":1566719580000,"y":0.2},{"x":1566719640000,"y":6.31},{"x":1566719700000,"y":0.26},{"x":1566719760000,"y":0.17},{"x":1566719820000,"y":0.17},{"x":1566719880000,"y":0.18},{"x":1566719940000,"y":0.17},{"x":1566720000000,"y":0.83},{"x":1566720060000,"y":0.2},{"x":1566720120000,"y":0.22},{"x":1566720180000,"y":0.22},{"x":1566720240000,"y":0.16},{"x":1566720300000,"y":0.4},{"x":1566720360000,"y":0.19},{"x":1566720420000,"y":0.17},{"x":1566720480000,"y":0.21},{"x":1566720540000,"y":0.26},{"x":1566720600000,"y":0.44},{"x":1566720660000,"y":0.18},{"x":1566720720000,"y":0.16},{"x":1566720780000,"y":0.21},{"x":1566720840000,"y":0.22},{"x":1566720900000,"y":0.58},{"x":1566720960000,"y":0.23},{"x":1566721020000,"y":0.17},{"x":1566721080000,"y":0.22},{"x":1566721140000,"y":0.19},{"x":1566721200000,"y":0.45},{"x":1566721260000,"y":0.24},{"x":1566721320000,"y":0.19},{"x":1566721380000,"y":0.17},{"x":1566721440000,"y":0.19},{"x":1566721500000,"y":0.4},{"x":1566721560000,"y":0.17},{"x":1566721620000,"y":0.17},{"x":1566721680000,"y":0.18},{"x":1566721740000,"y":0.19},{"x":1566721800000,"y":0.47},{"x":1566721860000,"y":0.22},{"x":1566721920000,"y":0.19},{"x":1566721980000,"y":0.24},{"x":1566722040000,"y":0.22},{"x":1566722100000,"y":0.52},{"x":1566722160000,"y":0.18},{"x":1566722220000,"y":0.18},{"x":1566722280000,"y":0.16},{"x":1566722340000,"y":0.26},{"x":1566722400000,"y":0.26},{"x":1566722460000,"y":0.32},{"x":1566722520000,"y":0.21},{"x":1566722580000,"y":0.2},{"x":1566722640000,"y":0.16},{"x":1566722700000,"y":0.22},{"x":1566722760000,"y":3.42},{"x":1566722820000,"y":0.17},{"x":1566722880000,"y":0.2},{"x":1566722940000,"y":0.2},{"x":1566723000000,"y":0.24},{"x":1566723060000,"y":0.3},{"x":1566723120000,"y":0.19},{"x":1566723180000,"y":0.15},{"x":1566723240000,"y":0.16},{"x":1566723300000,"y":0.25},{"x":1566723360000,"y":0.3},{"x":1566723420000,"y":0.18},{"x":1566723480000,"y":0.16},{"x":1566723540000,"y":0.18},{"x":1566723600000,"y":0.61},{"x":1566723660000,"y":0.42},{"x":1566723720000,"y":0.29},{"x":1566723780000,"y":0.22},{"x":1566723840000,"y":0.19},{"x":1566723900000,"y":0.29},{"x":1566723960000,"y":0.31},{"x":1566724020000,"y":0.2},{"x":1566724080000,"y":0.16},{"x":1566724140000,"y":0.41},{"x":1566724200000,"y":0.28},{"x":1566724260000,"y":0.32},{"x":1566724320000,"y":0.26},{"x":1566724380000,"y":0.2},{"x":1566724440000,"y":0.23},{"x":1566724500000,"y":0.4},{"x":1566724560000,"y":0.18},{"x":1566724620000,"y":0.41},{"x":1566724680000,"y":0.22},{"x":1566724740000,"y":0.2},{"x":1566724800000,"y":0.31},{"x":1566724860000,"y":0.25},{"x":1566724920000,"y":0.32},{"x":1566724980000,"y":0.2},{"x":1566725040000,"y":0.22},{"x":1566725100000,"y":0.4},{"x":1566725160000,"y":0.21},{"x":1566725220000,"y":0.35},{"x":1566725280000,"y":0.24},{"x":1566725340000,"y":0.25},{"x":1566725400000,"y":0.42},{"x":1566725460000,"y":0.22},{"x":1566725520000,"y":0.37},{"x":1566725580000,"y":0.19},{"x":1566725640000,"y":0.21},{"x":1566725700000,"y":0.38},{"x":1566725760000,"y":0.23},{"x":1566725820000,"y":0.37},{"x":1566725880000,"y":0.21},{"x":1566725940000,"y":0.4},{"x":1566726000000,"y":0.32},{"x":1566726060000,"y":0.22},{"x":1566726120000,"y":0.32},{"x":1566726180000,"y":0.21},{"x":1566726240000,"y":0.2},{"x":1566726300000,"y":0.42},{"x":1566726360000,"y":0.25},{"x":1566726420000,"y":0.4},{"x":1566726480000,"y":0.22},{"x":1566726540000,"y":0.17},{"x":1566726600000,"y":0.36},{"x":1566726660000,"y":0.26},{"x":1566726720000,"y":0.19},{"x":1566726780000,"y":0.38},{"x":1566726840000,"y":0.21},{"x":1566726900000,"y":0.34},{"x":1566726960000,"y":0.21},{"x":1566727020000,"y":0.21},{"x":1566727080000,"y":0.33},{"x":1566727140000,"y":0.21},{"x":1566727200000,"y":0.43},{"x":1566727260000,"y":0.29},{"x":1566727320000,"y":0.29},{"x":1566727380000,"y":0.4},{"x":1566727440000,"y":0.22},{"x":1566727500000,"y":0.35},{"x":1566727560000,"y":0.22},{"x":1566727620000,"y":0.21},{"x":1566727680000,"y":0.35},{"x":1566727740000,"y":0.32},{"x":1566727800000,"y":0.31},{"x":1566727860000,"y":0.18},{"x":1566727920000,"y":0.27},{"x":1566727980000,"y":0.39},{"x":1566728040000,"y":0.32},{"x":1566728100000,"y":0.4},{"x":1566728160000,"y":0.23},{"x":1566728220000,"y":0.24},{"x":1566728280000,"y":0.35},{"x":1566728340000,"y":0.27},{"x":1566728400000,"y":0.42},{"x":1566728460000,"y":0.28},{"x":1566728520000,"y":0.22},{"x":1566728580000,"y":0.44},{"x":1566728640000,"y":0.19},{"x":1566728700000,"y":0.36},{"x":1566728760000,"y":0.15},{"x":1566728820000,"y":0.15},{"x":1566728880000,"y":0.38},{"x":1566728940000,"y":0.1},{"x":1566729000000,"y":0.26},{"x":1566729060000,"y":0.1},{"x":1566729120000,"y":0.13},{"x":1566729180000,"y":0.11},{"x":1566729240000,"y":0.32},{"x":1566729300000,"y":0.46},{"x":1566729360000,"y":0.1},{"x":1566729420000,"y":0.1},{"x":1566729480000,"y":0.12},{"x":1566729540000,"y":0.38},{"x":1566729600000,"y":0.24},{"x":1566729660000,"y":0.19},{"x":1566729720000,"y":0.24},{"x":1566729780000,"y":0.11},{"x":1566729840000,"y":0.32},{"x":1566729900000,"y":0.23},{"x":1566729960000,"y":0.15},{"x":1566730020000,"y":0.24},{"x":1566730080000,"y":0.12},{"x":1566730140000,"y":0.25},{"x":1566730200000,"y":0.23},{"x":1566730260000,"y":0.11},{"x":1566730320000,"y":0.09},{"x":1566730380000,"y":0.16},{"x":1566730440000,"y":0.29},{"x":1566730500000,"y":0.34},{"x":1566730560000,"y":0.14},{"x":1566730620000,"y":0.08},{"x":1566730680000,"y":0.09},{"x":1566730740000,"y":0.25},{"x":1566730800000,"y":0.45},{"x":1566730860000,"y":0.16},{"x":1566730920000,"y":0.12},{"x":1566730980000,"y":0.08},{"x":1566731040000,"y":0.27},{"x":1566731100000,"y":0.16},{"x":1566731160000,"y":0.18},{"x":1566731220000,"y":0.15},{"x":1566731280000,"y":0.19},{"x":1566731340000,"y":0.32},{"x":1566731400000,"y":0.2},{"x":1566731460000,"y":0.12},{"x":1566731520000,"y":0.09},{"x":1566731580000,"y":0.1},{"x":1566731640000,"y":12.71},{"x":1566731700000,"y":0.28},{"x":1566731760000,"y":0.14},{"x":1566731820000,"y":0.14},{"x":1566731880000,"y":0.19},{"x":1566731940000,"y":0.16},{"x":1566732000000,"y":0.44},{"x":1566732060000,"y":0.14},{"x":1566732120000,"y":0.12},{"x":1566732180000,"y":0.17},{"x":1566732240000,"y":0.13},{"x":1566732300000,"y":1.65},{"x":1566732360000,"y":0.13},{"x":1566732420000,"y":0.12},{"x":1566732480000,"y":0.1},{"x":1566732540000,"y":0.16},{"x":1566732600000,"y":0.4},{"x":1566732660000,"y":0.12},{"x":1566732720000,"y":0.15},{"x":1566732780000,"y":0.12},{"x":1566732840000,"y":0.11},{"x":1566732900000,"y":0.49},{"x":1566732960000,"y":0.28},{"x":1566733020000,"y":0.12},{"x":1566733080000,"y":0.12},{"x":1566733140000,"y":0.92},{"x":1566733200000,"y":0.45},{"x":1566733260000,"y":0.15},{"x":1566733320000,"y":0.2},{"x":1566733380000,"y":0.16},{"x":1566733440000,"y":0.15},{"x":1566733500000,"y":0.36},{"x":1566733560000,"y":0.17},{"x":1566733620000,"y":0.21},{"x":1566733680000,"y":0.12},{"x":1566733740000,"y":0.09},{"x":1566733800000,"y":0.45},{"x":1566733860000,"y":0.12},{"x":1566733920000,"y":0.13},{"x":1566733980000,"y":0.17},{"x":1566734040000,"y":0.12},{"x":1566734100000,"y":0.49},{"x":1566734160000,"y":0.12},{"x":1566734220000,"y":0.13},{"x":1566734280000,"y":0.1},{"x":1566734340000,"y":0.12},{"x":1566734400000,"y":0.4},{"x":1566734460000,"y":0.27},{"x":1566734520000,"y":0.13},{"x":1566734580000,"y":0.1},{"x":1566734640000,"y":0.17},{"x":1566734700000,"y":0.33},{"x":1566734760000,"y":0.3},{"x":1566734820000,"y":0.16},{"x":1566734880000,"y":0.15},{"x":1566734940000,"y":0.21},{"x":1566735000000,"y":0.25},{"x":1566735060000,"y":0.26},{"x":1566735120000,"y":0.2},{"x":1566735180000,"y":0.2},{"x":1566735240000,"y":0.14},{"x":1566735300000,"y":0.34},{"x":1566735360000,"y":0.27},{"x":1566735420000,"y":0.12},{"x":1566735480000,"y":0.16},{"x":1566735540000,"y":0.15},{"x":1566735600000,"y":0.28},{"x":1566735660000,"y":0.22},{"x":1566735720000,"y":0.1},{"x":1566735780000,"y":0.15},{"x":1566735840000,"y":0.1},{"x":1566735900000,"y":0.3},{"x":1566735960000,"y":0.27},{"x":1566736020000,"y":0.09},{"x":1566736080000,"y":0.15},{"x":1566736140000,"y":0.15},{"x":1566736200000,"y":0.26},{"x":1566736260000,"y":0.27},{"x":1566736320000,"y":0.12},{"x":1566736380000,"y":0.11},{"x":1566736440000,"y":0.1},{"x":1566736500000,"y":0.22},{"x":1566736560000,"y":0.25},{"x":1566736620000,"y":0.12},{"x":1566736680000,"y":0.1},{"x":1566736740000,"y":0.32},{"x":1566736800000,"y":0.2},{"x":1566736860000,"y":0.11},{"x":1566736920000,"y":0.23},{"x":1566736980000,"y":0.07},{"x":1566737040000,"y":0.09},{"x":1566737100000,"y":0.23},{"x":1566737160000,"y":0.08},{"x":1566737220000,"y":0.24},{"x":1566737280000,"y":0.24},{"x":1566737340000,"y":0.11},{"x":1566737400000,"y":0.23},{"x":1566737460000,"y":0.14},{"x":1566737520000,"y":0.32},{"x":1566737580000,"y":0.12},{"x":1566737640000,"y":0.15},{"x":1566737700000,"y":0.28},{"x":1566737760000,"y":0.18},{"x":1566737820000,"y":0.29},{"x":1566737880000,"y":0.21},{"x":1566737940000,"y":0.16},{"x":1566738000000,"y":0.45},{"x":1566738060000,"y":0.17},{"x":1566738120000,"y":0.3},{"x":1566738180000,"y":0.13},{"x":1566738240000,"y":0.12},{"x":1566738300000,"y":0.29},{"x":1566738360000,"y":0.16},{"x":1566738420000,"y":0.31},{"x":1566738480000,"y":0.12},{"x":1566738540000,"y":0.25},{"x":1566738600000,"y":0.17},{"x":1566738660000,"y":0.12},{"x":1566738720000,"y":0.27},{"x":1566738780000,"y":0.09},{"x":1566738840000,"y":0.11},{"x":1566738900000,"y":0.28},{"x":1566738960000,"y":0.12},{"x":1566739020000,"y":0.15},{"x":1566739080000,"y":0.27},{"x":1566739140000,"y":0.15},{"x":1566739200000,"y":0.22},{"x":1566739260000,"y":0.14},{"x":1566739320000,"y":0.15},{"x":1566739380000,"y":0.35},{"x":1566739440000,"y":0.14},{"x":1566739500000,"y":0.28},{"x":1566739560000,"y":0.12},{"x":1566739620000,"y":0.14},{"x":1566739680000,"y":0.27},{"x":1566739740000,"y":0.1},{"x":1566739800000,"y":0.26},{"x":1566739860000,"y":0.12},{"x":1566739920000,"y":0.09},{"x":1566739980000,"y":0.24},{"x":1566740040000,"y":0.1},{"x":1566740100000,"y":0.21},{"x":1566740160000,"y":0.35},{"x":1566740220000,"y":0.07},{"x":1566740280000,"y":0.25},{"x":1566740340000,"y":0.3},{"x":1566740400000,"y":0.54},{"x":1566740460000,"y":0.1},{"x":1566740520000,"y":0.12},{"x":1566740580000,"y":0.26},{"x":1566740640000,"y":0.11},{"x":1566740700000,"y":0.32},{"x":1566740760000,"y":0.07},{"x":1566740820000,"y":0.18},{"x":1566740880000,"y":0.28},{"x":1566740940000,"y":0.07},{"x":1566741000000,"y":0.19},{"x":1566741060000,"y":0.14},{"x":1566741120000,"y":0.1},{"x":1566741180000,"y":0.29},{"x":1566741240000,"y":0.11},{"x":1566741300000,"y":0.25},{"x":1566741360000,"y":0.13},{"x":1566741420000,"y":0.15},{"x":1566741480000,"y":0.18},{"x":1566741540000,"y":0.35},{"x":1566741600000,"y":0.42},{"x":1566741660000,"y":0.11},{"x":1566741720000,"y":0.14},{"x":1566741780000,"y":0.2},{"x":1566741840000,"y":0.26},{"x":1566741900000,"y":0.25},{"x":1566741960000,"y":0.15},{"x":1566742020000,"y":0.22},{"x":1566742080000,"y":0.15},{"x":1566742140000,"y":0.5},{"x":1566742200000,"y":0.25},{"x":1566742260000,"y":0.12},{"x":1566742320000,"y":0.25},{"x":1566742380000,"y":0.17},{"x":1566742440000,"y":0.36},{"x":1566742500000,"y":0.35},{"x":1566742560000,"y":0.1},{"x":1566742620000,"y":0.12},{"x":1566742680000,"y":0.1},{"x":1566742740000,"y":0.31},{"x":1566742800000,"y":0.28},{"x":1566742860000,"y":0.13},{"x":1566742920000,"y":0.1},{"x":1566742980000,"y":0.14},{"x":1566743040000,"y":0.24},{"x":1566743100000,"y":0.25},{"x":1566743160000,"y":0.11},{"x":1566743220000,"y":0.1},{"x":1566743280000,"y":0.18},{"x":1566743340000,"y":0.27},{"x":1566743400000,"y":0.26},{"x":1566743460000,"y":0.15},{"x":1566743520000,"y":0.13},{"x":1566743580000,"y":0.19},{"x":1566743640000,"y":0.3},{"x":1566743700000,"y":0.2},{"x":1566743760000,"y":0.27},{"x":1566743820000,"y":0.17},{"x":1566743880000,"y":0.17},{"x":1566743940000,"y":0.46},{"x":1566744000000,"y":0.27},{"x":1566744060000,"y":0.1},{"x":1566744120000,"y":0.1},{"x":1566744180000,"y":0.11},{"x":1566744240000,"y":0.17},{"x":1566744300000,"y":0.39},{"x":1566744360000,"y":0.14},{"x":1566744420000,"y":0.19},{"x":1566744480000,"y":0.1},{"x":1566744540000,"y":0.15},{"x":1566744600000,"y":5.26},{"x":1566744660000,"y":0.12},{"x":1566744720000,"y":0.11},{"x":1566744780000,"y":0.13},{"x":1566744840000,"y":0.1},{"x":1566744900000,"y":0.41},{"x":1566744960000,"y":0.13},{"x":1566745020000,"y":0.07},{"x":1566745080000,"y":0.1},{"x":1566745140000,"y":0.15},{"x":1566745200000,"y":0.69},{"x":1566745260000,"y":0.15},{"x":1566745320000,"y":0.16},{"x":1566745380000,"y":0.17},{"x":1566745440000,"y":0.14},{"x":1566745500000,"y":0.48},{"x":1566745560000,"y":0.13},{"x":1566745620000,"y":0.17},{"x":1566745680000,"y":0.15},{"x":1566745740000,"y":0.2},{"x":1566745800000,"y":0.3},{"x":1566745860000,"y":0.12},{"x":1566745920000,"y":0.13},{"x":1566745980000,"y":0.12},{"x":1566746040000,"y":0.11},{"x":1566746100000,"y":0.36},{"x":1566746160000,"y":0.12},{"x":1566746220000,"y":0.14},{"x":1566746280000,"y":0.14},{"x":1566746340000,"y":0.09},{"x":1566746400000,"y":0.2},{"x":1566746460000,"y":0.26},{"x":1566746520000,"y":0.15},{"x":1566746580000,"y":0.16},{"x":1566746640000,"y":0.14},{"x":1566746700000,"y":0.28},{"x":1566746760000,"y":0.26},{"x":1566746820000,"y":0.12},{"x":1566746880000,"y":0.13},{"x":1566746940000,"y":0.1},{"x":1566747000000,"y":0.31},{"x":1566747060000,"y":0.23},{"x":1566747120000,"y":0.14},{"x":1566747180000,"y":0.15},{"x":1566747240000,"y":0.15},{"x":1566747300000,"y":0.21},{"x":1566747360000,"y":0.22},{"x":1566747420000,"y":0.07},{"x":1566747480000,"y":0.11},{"x":1566747540000,"y":0.27},{"x":1566747600000,"y":1.59},{"x":1566747660000,"y":0.27},{"x":1566747720000,"y":0.1},{"x":1566747780000,"y":0.09},{"x":1566747840000,"y":0.1},{"x":1566747900000,"y":0.2},{"x":1566747960000,"y":0.25},{"x":1566748020000,"y":0.12},{"x":1566748080000,"y":0.09},{"x":1566748140000,"y":0.11},{"x":1566748200000,"y":0.25},{"x":1566748260000,"y":0.25},{"x":1566748320000,"y":0.1},{"x":1566748380000,"y":0.1},{"x":1566748440000,"y":0.09},{"x":1566748500000,"y":0.19},{"x":1566748560000,"y":0.12},{"x":1566748620000,"y":0.26},{"x":1566748680000,"y":0.1},{"x":1566748740000,"y":0.13},{"x":1566748800000,"y":0.33},{"x":1566748860000,"y":0.12},{"x":1566748920000,"y":0.27},{"x":1566748980000,"y":0.1},{"x":1566749040000,"y":0.15},{"x":1566749100000,"y":0.24},{"x":1566749160000,"y":0.12},{"x":1566749220000,"y":0.29},{"x":1566749280000,"y":0.1},{"x":1566749340000,"y":0.21},{"x":1566749400000,"y":0.29},{"x":1566749460000,"y":0.1},{"x":1566749520000,"y":0.27},{"x":1566749580000,"y":0.12},{"x":1566749640000,"y":0.07},{"x":1566749700000,"y":0.31},{"x":1566749760000,"y":0.14},{"x":1566749820000,"y":0.27},{"x":1566749880000,"y":0.12},{"x":1566749940000,"y":0.1},{"x":1566750000000,"y":0.26},{"x":1566750060000,"y":0.18},{"x":1566750120000,"y":0.26},{"x":1566750180000,"y":0.12},{"x":1566750240000,"y":0.1},{"x":1566750300000,"y":0.24},{"x":1566750360000,"y":0.12},{"x":1566750420000,"y":0.27},{"x":1566750480000,"y":0.08},{"x":1566750540000,"y":0.15},{"x":1566750600000,"y":0.25},{"x":1566750660000,"y":0.16},{"x":1566750720000,"y":0.27},{"x":1566750780000,"y":0.1},{"x":1566750840000,"y":0.1},{"x":1566750900000,"y":0.22},{"x":1566750960000,"y":0.1},{"x":1566751020000,"y":1.04},{"x":1566751080000,"y":0.12},{"x":1566751140000,"y":0.41},{"x":1566751200000,"y":0.28},{"x":1566751260000,"y":0.33},{"x":1566751320000,"y":0.15},{"x":1566751380000,"y":0.29},{"x":1566751440000,"y":0.23},{"x":1566751500000,"y":0.22},{"x":1566751560000,"y":0.14},{"x":1566751620000,"y":0.25},{"x":1566751680000,"y":0.32},{"x":1566751740000,"y":0.17},{"x":1566751800000,"y":0.36},{"x":1566751860000,"y":0.16},{"x":1566751920000,"y":0.17},{"x":1566751980000,"y":0.42},{"x":1566752040000,"y":0.18},{"x":1566752100000,"y":0.27},{"x":1566752160000,"y":0.16},{"x":1566752220000,"y":0.29},{"x":1566752280000,"y":0.33},{"x":1566752340000,"y":0.2},{"x":1566752400000,"y":0.49},{"x":1566752460000,"y":0.23},{"x":1566752520000,"y":0.22},{"x":1566752580000,"y":0.37},{"x":1566752640000,"y":0.26},{"x":1566752700000,"y":0.27},{"x":1566752760000,"y":0.23},{"x":1566752820000,"y":0.21},{"x":1566752880000,"y":0.37},{"x":1566752940000,"y":0.41},{"x":1566753000000,"y":0.33},{"x":1566753060000,"y":0.24},{"x":1566753120000,"y":0.23},{"x":1566753180000,"y":0.34},{"x":1566753240000,"y":0.2},{"x":1566753300000,"y":0.28},{"x":1566753360000,"y":0.22},{"x":1566753420000,"y":0.21},{"x":1566753480000,"y":0.42},{"x":1566753540000,"y":0.21},{"x":1566753600000,"y":0.32},{"x":1566753660000,"y":0.24},{"x":1566753720000,"y":0.2},{"x":1566753780000,"y":0.23},{"x":1566753840000,"y":0.35},{"x":1566753900000,"y":0.28},{"x":1566753960000,"y":0.2},{"x":1566754020000,"y":0.2},{"x":1566754080000,"y":0.19},{"x":1566754140000,"y":0.36},{"x":1566754200000,"y":0.38},{"x":1566754260000,"y":0.2},{"x":1566754320000,"y":0.22},{"x":1566754380000,"y":0.2},{"x":1566754440000,"y":0.38},{"x":1566754500000,"y":0.34},{"x":1566754560000,"y":0.27},{"x":1566754620000,"y":0.24},{"x":1566754680000,"y":0.24},{"x":1566754740000,"y":0.65},{"x":1566754800000,"y":0.39},{"x":1566754860000,"y":0.23},{"x":1566754920000,"y":0.19},{"x":1566754980000,"y":0.2},{"x":1566755040000,"y":0.35},{"x":1566755100000,"y":0.38},{"x":1566755160000,"y":0.24},{"x":1566755220000,"y":0.26},{"x":1566755280000,"y":0.2},{"x":1566755340000,"y":0.37},{"x":1566755400000,"y":0.27},{"x":1566755460000,"y":0.2},{"x":1566755520000,"y":0.23},{"x":1566755580000,"y":0.21},{"x":1566755640000,"y":0.37},{"x":1566755700000,"y":0.3},{"x":1566755760000,"y":0.22},{"x":1566755820000,"y":0.24},{"x":1566755880000,"y":0.21},{"x":1566755940000,"y":0.21},{"x":1566756000000,"y":0.54},{"x":1566756060000,"y":0.26},{"x":1566756120000,"y":0.22},{"x":1566756180000,"y":0.17},{"x":1566756240000,"y":0.19},{"x":1566756300000,"y":0.44},{"x":1566756360000,"y":0.18},{"x":1566756420000,"y":0.19},{"x":1566756480000,"y":0.2},{"x":1566756540000,"y":0.34},{"x":1566756600000,"y":0.44},{"x":1566756660000,"y":0.19},{"x":1566756720000,"y":0.21},{"x":1566756780000,"y":0.2},{"x":1566756840000,"y":0.19},{"x":1566756900000,"y":0.56},{"x":1566756960000,"y":0.21},{"x":1566757020000,"y":0.25},{"x":1566757080000,"y":0.21},{"x":1566757140000,"y":0.27},{"x":1566757200000,"y":0.53},{"x":1566757260000,"y":0.24},{"x":1566757320000,"y":0.21},{"x":1566757380000,"y":0.26},{"x":1566757440000,"y":0.21},{"x":1566757500000,"y":0.5},{"x":1566757560000,"y":0.19},{"x":1566757620000,"y":0.24},{"x":1566757680000,"y":0.21},{"x":1566757740000,"y":0.22},{"x":1566757800000,"y":0.49},{"x":1566757860000,"y":0.29},{"x":1566757920000,"y":0.32},{"x":1566757980000,"y":0.24},{"x":1566758040000,"y":0.2},{"x":1566758100000,"y":0.46},{"x":1566758160000,"y":0.24},{"x":1566758220000,"y":0.23},{"x":1566758280000,"y":0.28},{"x":1566758340000,"y":0.31},{"x":1566758400000,"y":0.34},{"x":1566758460000,"y":0.39},{"x":1566758520000,"y":0.22},{"x":1566758580000,"y":0.24},{"x":1566758640000,"y":0.2},{"x":1566758700000,"y":0.34},{"x":1566758760000,"y":0.34},{"x":1566758820000,"y":0.21},{"x":1566758880000,"y":0.19},{"x":1566758940000,"y":0.16},{"x":1566759000000,"y":0.32},{"x":1566759060000,"y":0.33},{"x":1566759120000,"y":0.21},{"x":1566759180000,"y":0.21},{"x":1566759240000,"y":0.21},{"x":1566759300000,"y":0.32},{"x":1566759360000,"y":0.38},{"x":1566759420000,"y":0.25},{"x":1566759480000,"y":0.22},{"x":1566759540000,"y":0.22},{"x":1566759600000,"y":0.87},{"x":1566759660000,"y":0.45},{"x":1566759720000,"y":0.19},{"x":1566759780000,"y":0.22},{"x":1566759840000,"y":0.26},{"x":1566759900000,"y":0.37},{"x":1566759960000,"y":0.37},{"x":1566760020000,"y":0.22},{"x":1566760080000,"y":0.21},{"x":1566760140000,"y":0.48},{"x":1566760200000,"y":0.37},{"x":1566760260000,"y":0.32},{"x":1566760320000,"y":0.2},{"x":1566760380000,"y":0.19},{"x":1566760440000,"y":0.22},{"x":1566760500000,"y":0.37},{"x":1566760560000,"y":0.22},{"x":1566760620000,"y":0.57},{"x":1566760680000,"y":0.29},{"x":1566760740000,"y":0.25},{"x":1566760800000,"y":0.4},{"x":1566760860000,"y":0.3},{"x":1566760920000,"y":0.38},{"x":1566760980000,"y":0.31},{"x":1566761040000,"y":0.22},{"x":1566761100000,"y":0.33},{"x":1566761160000,"y":0.2},{"x":1566761220000,"y":0.35},{"x":1566761280000,"y":0.24},{"x":1566761340000,"y":0.21},{"x":1566761400000,"y":0.32},{"x":1566761460000,"y":0.22},{"x":1566761520000,"y":0.51},{"x":1566761580000,"y":0.22},{"x":1566761640000,"y":0.22},{"x":1566761700000,"y":0.31},{"x":1566761760000,"y":0.18},{"x":1566761820000,"y":0.33},{"x":1566761880000,"y":0.2},{"x":1566761940000,"y":0.28},{"x":1566762000000,"y":0.32},{"x":1566762060000,"y":0.1},{"x":1566762120000,"y":0.23},{"x":1566762180000,"y":0.12},{"x":1566762240000,"y":0.12},{"x":1566762300000,"y":0.36},{"x":1566762360000,"y":0.13},{"x":1566762420000,"y":0.28},{"x":1566762480000,"y":0.15},{"x":1566762540000,"y":0.15},{"x":1566762600000,"y":0.25},{"x":1566762660000,"y":0.13},{"x":1566762720000,"y":0.27},{"x":1566762780000,"y":0.16},{"x":1566762840000,"y":0.12},{"x":1566762900000,"y":0.17},{"x":1566762960000,"y":0.12},{"x":1566763020000,"y":0.23},{"x":1566763080000,"y":0.13},{"x":1566763140000,"y":0.09},{"x":1566763200000,"y":0.3},{"x":1566763260000,"y":0.12},{"x":1566763320000,"y":0.11},{"x":1566763380000,"y":0.28},{"x":1566763440000,"y":0.2},{"x":1566763500000,"y":0.25},{"x":1566763560000,"y":0.15},{"x":1566763620000,"y":0.13},{"x":1566763680000,"y":0.34},{"x":1566763740000,"y":0.22},{"x":1566763800000,"y":0.32},{"x":1566763860000,"y":0.14},{"x":1566763920000,"y":0.17},{"x":1566763980000,"y":0.34},{"x":1566764040000,"y":0.19},{"x":1566764100000,"y":0.4},{"x":1566764160000,"y":0.17},{"x":1566764220000,"y":0.19},{"x":1566764280000,"y":0.25},{"x":1566764340000,"y":0.53},{"x":1566764400000,"y":0.29},{"x":1566764460000,"y":0.2},{"x":1566764520000,"y":0.22},{"x":1566764580000,"y":0.3},{"x":1566764640000,"y":0.17},{"x":1566764700000,"y":0.33},{"x":1566764760000,"y":0.11},{"x":1566764820000,"y":0.13},{"x":1566764880000,"y":0.26},{"x":1566764940000,"y":0.13},{"x":1566765000000,"y":0.27},{"x":1566765060000,"y":0.16},{"x":1566765120000,"y":0.17},{"x":1566765180000,"y":0.25},{"x":1566765240000,"y":0.1},{"x":1566765300000,"y":0.23},{"x":1566765360000,"y":0.11},{"x":1566765420000,"y":0.12},{"x":1566765480000,"y":0.27},{"x":1566765540000,"y":0.21},{"x":1566765600000,"y":0.19},{"x":1566765660000,"y":0.11},{"x":1566765720000,"y":0.11},{"x":1566765780000,"y":0.09},{"x":1566765840000,"y":0.24},{"x":1566765900000,"y":0.19},{"x":1566765960000,"y":0.15},{"x":1566766020000,"y":0.14},{"x":1566766080000,"y":0.13},{"x":1566766140000,"y":0.23},{"x":1566766200000,"y":0.17},{"x":1566766260000,"y":0.13},{"x":1566766320000,"y":0.12},{"x":1566766380000,"y":0.1},{"x":1566766440000,"y":4.88},{"x":1566766500000,"y":0.43},{"x":1566766560000,"y":0.15},{"x":1566766620000,"y":0.12},{"x":1566766680000,"y":0.12},{"x":1566766740000,"y":0.23},{"x":1566766800000,"y":0.47},{"x":1566766860000,"y":0.17},{"x":1566766920000,"y":0.18},{"x":1566766980000,"y":0.15},{"x":1566767040000,"y":0.27},{"x":1566767100000,"y":0.22},{"x":1566767160000,"y":0.19},{"x":1566767220000,"y":0.09},{"x":1566767280000,"y":0.11},{"x":1566767340000,"y":0.43},{"x":1566767400000,"y":0.29},{"x":1566767460000,"y":0.11},{"x":1566767520000,"y":0.11},{"x":1566767580000,"y":0.1},{"x":1566767640000,"y":0.22},{"x":1566767700000,"y":0.16},{"x":1566767760000,"y":0.09},{"x":1566767820000,"y":0.1},{"x":1566767880000,"y":0.1},{"x":1566767940000,"y":0.1},{"x":1566768000000,"y":0.38},{"x":1566768060000,"y":0.13},{"x":1566768120000,"y":0.09},{"x":1566768180000,"y":0.11},{"x":1566768240000,"y":0.17},{"x":1566768300000,"y":0.39},{"x":1566768360000,"y":0.16},{"x":1566768420000,"y":0.15},{"x":1566768480000,"y":0.09},{"x":1566768540000,"y":0.08},{"x":1566768600000,"y":0.47},{"x":1566768660000,"y":0.12},{"x":1566768720000,"y":0.1},{"x":1566768780000,"y":0.09},{"x":1566768840000,"y":0.13},{"x":1566768900000,"y":0.49},{"x":1566768960000,"y":0.12},{"x":1566769020000,"y":0.15},{"x":1566769080000,"y":0.12},{"x":1566769140000,"y":0.29},{"x":1566769200000,"y":0.38},{"x":1566769260000,"y":0.13},{"x":1566769320000,"y":0.16},{"x":1566769380000,"y":0.15},{"x":1566769440000,"y":0.13},{"x":1566769500000,"y":0.44},{"x":1566769560000,"y":0.18},{"x":1566769620000,"y":0.2},{"x":1566769680000,"y":0.11},{"x":1566769740000,"y":0.17},{"x":1566769800000,"y":0.39},{"x":1566769860000,"y":0.13},{"x":1566769920000,"y":0.12},{"x":1566769980000,"y":0.1},{"x":1566770040000,"y":0.14},{"x":1566770100000,"y":0.29},{"x":1566770160000,"y":0.32},{"x":1566770220000,"y":0.13},{"x":1566770280000,"y":0.1},{"x":1566770340000,"y":0.13},{"x":1566770400000,"y":0.44},{"x":1566770460000,"y":0.26},{"x":1566770520000,"y":0.11},{"x":1566770580000,"y":0.14},{"x":1566770640000,"y":0.15},{"x":1566770700000,"y":0.23},{"x":1566770760000,"y":0.27},{"x":1566770820000,"y":0.11},{"x":1566770880000,"y":0.15},{"x":1566770940000,"y":0.43},{"x":1566771000000,"y":0.35},{"x":1566771060000,"y":0.25},{"x":1566771120000,"y":0.22},{"x":1566771180000,"y":0.11},{"x":1566771240000,"y":0.1},{"x":1566771300000,"y":0.26},{"x":1566771360000,"y":0.27},{"x":1566771420000,"y":0.11},{"x":1566771480000,"y":0.12},{"x":1566771540000,"y":0.16},{"x":1566771600000,"y":0.34},{"x":1566771660000,"y":0.27},{"x":1566771720000,"y":0.12},{"x":1566771780000,"y":0.12},{"x":1566771840000,"y":0.15},{"x":1566771900000,"y":0.26},{"x":1566771960000,"y":0.12},{"x":1566772020000,"y":0.28},{"x":1566772080000,"y":0.15},{"x":1566772140000,"y":0.22},{"x":1566772200000,"y":0.23},{"x":1566772260000,"y":0.1},{"x":1566772320000,"y":0.28},{"x":1566772380000,"y":0.09},{"x":1566772440000,"y":0.11},{"x":1566772500000,"y":0.22},{"x":1566772560000,"y":0.1},{"x":1566772620000,"y":0.24},{"x":1566772680000,"y":0.09},{"x":1566772740000,"y":0.8},{"x":1566772800000,"y":0.26},{"x":1566772860000,"y":0.1},{"x":1566772920000,"y":1.04},{"x":1566772980000,"y":0.12},{"x":1566773040000,"y":0.15},{"x":1566773100000,"y":0.26},{"x":1566773160000,"y":0.13},{"x":1566773220000,"y":0.28},{"x":1566773280000,"y":0.18},{"x":1566773340000,"y":0.17},{"x":1566773400000,"y":0.29},{"x":1566773460000,"y":0.13},{"x":1566773520000,"y":0.3},{"x":1566773580000,"y":0.12},{"x":1566773640000,"y":0.11},{"x":1566773700000,"y":0.26},{"x":1566773760000,"y":0.13},{"x":1566773820000,"y":0.32},{"x":1566773880000,"y":0.26},{"x":1566773940000,"y":0.18},{"x":1566774000000,"y":0.57},{"x":1566774060000,"y":0.17},{"x":1566774120000,"y":0.17},{"x":1566774180000,"y":0.24},{"x":1566774240000,"y":0.1},{"x":1566774300000,"y":0.25},{"x":1566774360000,"y":0.12},{"x":1566774420000,"y":0.1},{"x":1566774480000,"y":0.25},{"x":1566774540000,"y":0.3},{"x":1566774600000,"y":0.29},{"x":1566774660000,"y":0.11},{"x":1566774720000,"y":0.11},{"x":1566774780000,"y":0.32},{"x":1566774840000,"y":0.11},{"x":1566774900000,"y":0.36},{"x":1566774960000,"y":0.18},{"x":1566775020000,"y":0.16},{"x":1566775080000,"y":0.32},{"x":1566775140000,"y":0.1},{"x":1566775200000,"y":0.26},{"x":1566775260000,"y":0.11},{"x":1566775320000,"y":0.09},{"x":1566775380000,"y":0.22},{"x":1566775440000,"y":0.13},{"x":1566775500000,"y":0.26},{"x":1566775560000,"y":0.15},{"x":1566775620000,"y":0.15},{"x":1566775680000,"y":0.21},{"x":1566775740000,"y":0.09},{"x":1566775800000,"y":0.31},{"x":1566775860000,"y":0.1},{"x":1566775920000,"y":0.16},{"x":1566775980000,"y":0.23},{"x":1566776040000,"y":0.12},{"x":1566776100000,"y":0.25},{"x":1566776160000,"y":0.09},{"x":1566776220000,"y":0.08},{"x":1566776280000,"y":0.06},{"x":1566776340000,"y":0.43},{"x":1566776400000,"y":0.22},{"x":1566776460000,"y":0.11},{"x":1566776520000,"y":0.1},{"x":1566776580000,"y":0.09},{"x":1566776640000,"y":0.22},{"x":1566776700000,"y":0.14},{"x":1566776760000,"y":0.09},{"x":1566776820000,"y":0.11},{"x":1566776880000,"y":0.1},{"x":1566776940000,"y":0.22},{"x":1566777000000,"y":0.19},{"x":1566777060000,"y":0.07},{"x":1566777120000,"y":0.11},{"x":1566777180000,"y":0.13},{"x":1566777240000,"y":0.24},{"x":1566777300000,"y":0.33},{"x":1566777360000,"y":0.1},{"x":1566777420000,"y":0.07},{"x":1566777480000,"y":0.09},{"x":1566777540000,"y":0.26},{"x":1566777600000,"y":0.34},{"x":1566777660000,"y":0.15},{"x":1566777720000,"y":0.1},{"x":1566777780000,"y":0.18},{"x":1566777840000,"y":0.26},{"x":1566777900000,"y":0.25},{"x":1566777960000,"y":0.09},{"x":1566778020000,"y":0.16},{"x":1566778080000,"y":0.14},{"x":1566778140000,"y":0.36},{"x":1566778200000,"y":0.23},{"x":1566778260000,"y":0.12},{"x":1566778320000,"y":0.17},{"x":1566778380000,"y":0.24},{"x":1566778440000,"y":0.2},{"x":1566778500000,"y":0.57},{"x":1566778560000,"y":0.11},{"x":1566778620000,"y":0.17},{"x":1566778680000,"y":0.08},{"x":1566778740000,"y":0.1},{"x":1566778800000,"y":0.47},{"x":1566778860000,"y":0.14},{"x":1566778920000,"y":0.12},{"x":1566778980000,"y":0.2},{"x":1566779040000,"y":0.17},{"x":1566779100000,"y":0.33},{"x":1566779160000,"y":0.12},{"x":1566779220000,"y":0.14},{"x":1566779280000,"y":0.16},{"x":1566779340000,"y":0.12},{"x":1566779400000,"y":0.4},{"x":1566779460000,"y":0.13},{"x":1566779520000,"y":0.16},{"x":1566779580000,"y":0.1},{"x":1566779640000,"y":0.09},{"x":1566779700000,"y":0.47},{"x":1566779760000,"y":0.14},{"x":1566779820000,"y":0.09},{"x":1566779880000,"y":0.17},{"x":1566779940000,"y":0.33},{"x":1566780000000,"y":1.54},{"x":1566780060000,"y":0.1},{"x":1566780120000,"y":0.12},{"x":1566780180000,"y":0.16},{"x":1566780240000,"y":0.11},{"x":1566780300000,"y":0.35},{"x":1566780360000,"y":0.09},{"x":1566780420000,"y":0.12},{"x":1566780480000,"y":0.11},{"x":1566780540000,"y":0.12},{"x":1566780600000,"y":0.27},{"x":1566780660000,"y":0.26},{"x":1566780720000,"y":0.12},{"x":1566780780000,"y":0.17},{"x":1566780840000,"y":0.11},{"x":1566780900000,"y":0.15},{"x":1566780960000,"y":0.26},{"x":1566781020000,"y":0.12},{"x":1566781080000,"y":0.12},{"x":1566781140000,"y":0.11},{"x":1566781200000,"y":0.45},{"x":1566781260000,"y":0.29},{"x":1566781320000,"y":0.12},{"x":1566781380000,"y":0.1},{"x":1566781440000,"y":0.1},{"x":1566781500000,"y":0.31},{"x":1566781560000,"y":0.23},{"x":1566781620000,"y":0.12},{"x":1566781680000,"y":0.1},{"x":1566781740000,"y":0.25},{"x":1566781800000,"y":0.26},{"x":1566781860000,"y":0.27},{"x":1566781920000,"y":0.09},{"x":1566781980000,"y":0.09},{"x":1566782040000,"y":0.08},{"x":1566782100000,"y":0.23},{"x":1566782160000,"y":0.26},{"x":1566782220000,"y":0.12},{"x":1566782280000,"y":0.09},{"x":1566782340000,"y":0.09},{"x":1566782400000,"y":0.24},{"x":1566782460000,"y":0.25},{"x":1566782520000,"y":0.12},{"x":1566782580000,"y":0.13},{"x":1566782640000,"y":0.12},{"x":1566782700000,"y":0.27},{"x":1566782760000,"y":0.24},{"x":1566782820000,"y":0.1},{"x":1566782880000,"y":0.12},{"x":1566782940000,"y":0.11},{"x":1566783000000,"y":0.24},{"x":1566783060000,"y":0.12},{"x":1566783120000,"y":0.27},{"x":1566783180000,"y":0.12},{"x":1566783240000,"y":0.08},{"x":1566783300000,"y":0.19},{"x":1566783360000,"y":0.12},{"x":1566783420000,"y":0.27},{"x":1566783480000,"y":0.12},{"x":1566783540000,"y":0.19},{"x":1566783600000,"y":0.23},{"x":1566783660000,"y":0.12},{"x":1566783720000,"y":0.32},{"x":1566783780000,"y":0.11},{"x":1566783840000,"y":0.1},{"x":1566783900000,"y":0.25},{"x":1566783960000,"y":0.12},{"x":1566784020000,"y":0.3},{"x":1566784080000,"y":0.17},{"x":1566784140000,"y":0.13},{"x":1566784200000,"y":0.27},{"x":1566784260000,"y":0.09},{"x":1566784320000,"y":0.26},{"x":1566784380000,"y":0.1},{"x":1566784440000,"y":0.12},{"x":1566784500000,"y":0.19},{"x":1566784560000,"y":0.13},{"x":1566784620000,"y":0.25},{"x":1566784680000,"y":0.08},{"x":1566784740000,"y":0.14},{"x":1566784800000,"y":0.3},{"x":1566784860000,"y":0.18},{"x":1566784920000,"y":0.33},{"x":1566784980000,"y":0.14},{"x":1566785040000,"y":0.18},{"x":1566785100000,"y":0.48},{"x":1566785160000,"y":0.23},{"x":1566785220000,"y":0.33},{"x":1566785280000,"y":0.22},{"x":1566785340000,"y":0.3},{"x":1566785400000,"y":0.29},{"x":1566785460000,"y":0.16},{"x":1566785520000,"y":0.17},{"x":1566785580000,"y":0.39},{"x":1566785640000,"y":0.28},{"x":1566785700000,"y":0.37},{"x":1566785760000,"y":0.25},{"x":1566785820000,"y":0.2},{"x":1566785880000,"y":0.33},{"x":1566785940000,"y":0.26},{"x":1566786000000,"y":0.33},{"x":1566786060000,"y":0.15},{"x":1566786120000,"y":0.17},{"x":1566786180000,"y":0.42},{"x":1566786240000,"y":0.22},{"x":1566786300000,"y":0.27},{"x":1566786360000,"y":0.17},{"x":1566786420000,"y":0.16},{"x":1566786480000,"y":0.32},{"x":1566786540000,"y":0.18},{"x":1566786600000,"y":0.36},{"x":1566786660000,"y":0.17},{"x":1566786720000,"y":0.17},{"x":1566786780000,"y":0.33},{"x":1566786840000,"y":0.17},{"x":1566786900000,"y":0.29},{"x":1566786960000,"y":0.16},{"x":1566787020000,"y":0.19},{"x":1566787080000,"y":0.33},{"x":1566787140000,"y":0.33},{"x":1566787200000,"y":0.31},{"x":1566787260000,"y":0.18},{"x":1566787320000,"y":0.18},{"x":1566787380000,"y":0.27},{"x":1566787440000,"y":0.22},{"x":1566787500000,"y":0.32},{"x":1566787560000,"y":0.19},{"x":1566787620000,"y":0.2},{"x":1566787680000,"y":0.18},{"x":1566787740000,"y":0.31},{"x":1566787800000,"y":0.3},{"x":1566787860000,"y":0.18},{"x":1566787920000,"y":0.18},{"x":1566787980000,"y":0.17},{"x":1566788040000,"y":0.33},{"x":1566788100000,"y":0.26},{"x":1566788160000,"y":0.2},{"x":1566788220000,"y":0.19},{"x":1566788280000,"y":0.22},{"x":1566788340000,"y":5.4},{"x":1566788400000,"y":0.69},{"x":1566788460000,"y":0.3},{"x":1566788520000,"y":0.23},{"x":1566788580000,"y":0.2},{"x":1566788640000,"y":0.35},{"x":1566788700000,"y":0.37},{"x":1566788760000,"y":0.27},{"x":1566788820000,"y":0.19},{"x":1566788880000,"y":0.2},{"x":1566788940000,"y":0.58},{"x":1566789000000,"y":0.36},{"x":1566789060000,"y":0.24},{"x":1566789120000,"y":0.22},{"x":1566789180000,"y":0.22},{"x":1566789240000,"y":0.46},{"x":1566789300000,"y":0.49},{"x":1566789360000,"y":0.22},{"x":1566789420000,"y":0.24},{"x":1566789480000,"y":0.22},{"x":1566789540000,"y":0.43},{"x":1566789600000,"y":0.29},{"x":1566789660000,"y":0.19},{"x":1566789720000,"y":0.2},{"x":1566789780000,"y":0.18},{"x":1566789840000,"y":0.23},{"x":1566789900000,"y":0.51},{"x":1566789960000,"y":0.21},{"x":1566790020000,"y":0.21},{"x":1566790080000,"y":0.19},{"x":1566790140000,"y":0.18},{"x":1566790200000,"y":0.54},{"x":1566790260000,"y":0.22},{"x":1566790320000,"y":0.22},{"x":1566790380000,"y":0.21},{"x":1566790440000,"y":0.17},{"x":1566790500000,"y":0.41},{"x":1566790560000,"y":0.22},{"x":1566790620000,"y":0.26},{"x":1566790680000,"y":0.2},{"x":1566790740000,"y":0.39},{"x":1566790800000,"y":0.47},{"x":1566790860000,"y":0.22},{"x":1566790920000,"y":0.2},{"x":1566790980000,"y":0.2},{"x":1566791040000,"y":0.19},{"x":1566791100000,"y":0.47},{"x":1566791160000,"y":0.23},{"x":1566791220000,"y":0.28},{"x":1566791280000,"y":0.22},{"x":1566791340000,"y":0.19},{"x":1566791400000,"y":0.44},{"x":1566791460000,"y":0.24},{"x":1566791520000,"y":0.21},{"x":1566791580000,"y":0.18},{"x":1566791640000,"y":0.23},{"x":1566791700000,"y":0.44},{"x":1566791760000,"y":0.21},{"x":1566791820000,"y":0.2},{"x":1566791880000,"y":0.17},{"x":1566791940000,"y":0.24},{"x":1566792000000,"y":0.71},{"x":1566792060000,"y":0.21},{"x":1566792120000,"y":0.26},{"x":1566792180000,"y":0.23},{"x":1566792240000,"y":0.2},{"x":1566792300000,"y":0.38},{"x":1566792360000,"y":0.39},{"x":1566792420000,"y":0.17},{"x":1566792480000,"y":0.21},{"x":1566792540000,"y":0.36},{"x":1566792600000,"y":0.29},{"x":1566792660000,"y":0.35},{"x":1566792720000,"y":0.25},{"x":1566792780000,"y":0.26},{"x":1566792840000,"y":0.2},{"x":1566792900000,"y":0.36},{"x":1566792960000,"y":0.38},{"x":1566793020000,"y":0.22},{"x":1566793080000,"y":0.21},{"x":1566793140000,"y":0.21},{"x":1566793200000,"y":0.32},{"x":1566793260000,"y":0.34},{"x":1566793320000,"y":0.23},{"x":1566793380000,"y":0.24},{"x":1566793440000,"y":0.23},{"x":1566793500000,"y":0.29},{"x":1566793560000,"y":0.34},{"x":1566793620000,"y":0.22},{"x":1566793680000,"y":0.23},{"x":1566793740000,"y":0.18},{"x":1566793800000,"y":0.39},{"x":1566793860000,"y":0.35},{"x":1566793920000,"y":0.21},{"x":1566793980000,"y":0.2},{"x":1566794040000,"y":0.19},{"x":1566794100000,"y":0.31},{"x":1566794160000,"y":0.35},{"x":1566794220000,"y":0.19},{"x":1566794280000,"y":0.2},{"x":1566794340000,"y":0.39},{"x":1566794400000,"y":0.35},{"x":1566794460000,"y":0.31},{"x":1566794520000,"y":0.74},{"x":1566794580000,"y":0.17},{"x":1566794640000,"y":0.22},{"x":1566794700000,"y":0.41},{"x":1566794760000,"y":0.31},{"x":1566794820000,"y":0.19},{"x":1566794880000,"y":0.17},{"x":1566794940000,"y":0.2},{"x":1566795000000,"y":0.29},{"x":1566795060000,"y":0.2},{"x":1566795120000,"y":0.37},{"x":1566795180000,"y":0.18},{"x":1566795240000,"y":0.17},{"x":1566795300000,"y":0.21},{"x":1566795360000,"y":0.17},{"x":1566795420000,"y":0.23},{"x":1566795480000,"y":0.12},{"x":1566795540000,"y":0.14},{"x":1566795600000,"y":1.34},{"x":1566795660000,"y":0.22},{"x":1566795720000,"y":0.25},{"x":1566795780000,"y":0.11},{"x":1566795840000,"y":0.09},{"x":1566795900000,"y":0.24},{"x":1566795960000,"y":0.1},{"x":1566796020000,"y":0.24},{"x":1566796080000,"y":0.13},{"x":1566796140000,"y":0.33},{"x":1566796200000,"y":0.27},{"x":1566796260000,"y":0.13},{"x":1566796320000,"y":0.23},{"x":1566796380000,"y":0.1},{"x":1566796440000,"y":0.14},{"x":1566796500000,"y":0.26},{"x":1566796560000,"y":0.1},{"x":1566796620000,"y":0.29},{"x":1566796680000,"y":0.12},{"x":1566796740000,"y":0.1},{"x":1566796800000,"y":0.24},{"x":1566796860000,"y":0.1},{"x":1566796920000,"y":0.27},{"x":1566796980000,"y":0.12},{"x":1566797040000,"y":0.16},{"x":1566797100000,"y":0.37},{"x":1566797160000,"y":0.12},{"x":1566797220000,"y":0.24},{"x":1566797280000,"y":0.16},{"x":1566797340000,"y":0.11},{"x":1566797400000,"y":0.21},{"x":1566797460000,"y":0.17},{"x":1566797520000,"y":0.18},{"x":1566797580000,"y":0.27},{"x":1566797640000,"y":0.07},{"x":1566797700000,"y":0.23},{"x":1566797760000,"y":0.08},{"x":1566797820000,"y":0.1},{"x":1566797880000,"y":0.25},{"x":1566797940000,"y":0.35},{"x":1566798000000,"y":0.34},{"x":1566798060000,"y":0.16},{"x":1566798120000,"y":0.16},{"x":1566798180000,"y":0.26},{"x":1566798240000,"y":0.15},{"x":1566798300000,"y":0.25},{"x":1566798360000,"y":0.14},{"x":1566798420000,"y":0.16},{"x":1566798480000,"y":0.32},{"x":1566798540000,"y":0.14},{"x":1566798600000,"y":0.33},{"x":1566798660000,"y":0.14},{"x":1566798720000,"y":0.16},{"x":1566798780000,"y":0.29},{"x":1566798840000,"y":0.12},{"x":1566798900000,"y":0.29},{"x":1566798960000,"y":0.08},{"x":1566799020000,"y":0.15},{"x":1566799080000,"y":0.22},{"x":1566799140000,"y":0.13},{"x":1566799200000,"y":0.47},{"x":1566799260000,"y":0.16},{"x":1566799320000,"y":0.17},{"x":1566799380000,"y":0.27},{"x":1566799440000,"y":0.17},{"x":1566799500000,"y":0.34},{"x":1566799560000,"y":0.22},{"x":1566799620000,"y":0.15},{"x":1566799680000,"y":0.13},{"x":1566799740000,"y":0.38},{"x":1566799800000,"y":0.24},{"x":1566799860000,"y":0.21},{"x":1566799920000,"y":0.16},{"x":1566799980000,"y":0.14},{"x":1566800040000,"y":0.38},{"x":1566800100000,"y":0.35},{"x":1566800160000,"y":0.13},{"x":1566800220000,"y":0.27},{"x":1566800280000,"y":0.24},{"x":1566800340000,"y":0.29},{"x":1566800400000,"y":0.36},{"x":1566800460000,"y":0.18},{"x":1566800520000,"y":0.14},{"x":1566800580000,"y":0.11},{"x":1566800640000,"y":0.32},{"x":1566800700000,"y":0.87},{"x":1566800760000,"y":0.28},{"x":1566800820000,"y":0.18},{"x":1566800880000,"y":0.15},{"x":1566800940000,"y":0.24},{"x":1566801000000,"y":0.3},{"x":1566801060000,"y":0.15},{"x":1566801120000,"y":0.13},{"x":1566801180000,"y":0.16},{"x":1566801240000,"y":0.25},{"x":1566801300000,"y":0.25},{"x":1566801360000,"y":0.17},{"x":1566801420000,"y":0.13},{"x":1566801480000,"y":0.15},{"x":1566801540000,"y":0.55},{"x":1566801600000,"y":0.38},{"x":1566801660000,"y":0.13},{"x":1566801720000,"y":1.58},{"x":1566801780000,"y":0.09},{"x":1566801840000,"y":0.12},{"x":1566801900000,"y":0.58},{"x":1566801960000,"y":1.14},{"x":1566802020000,"y":0.2},{"x":1566802080000,"y":0.29},{"x":1566802140000,"y":0.18},{"x":1566802200000,"y":0.51},{"x":1566802260000,"y":0.26},{"x":1566802320000,"y":0.21},{"x":1566802380000,"y":0.15},{"x":1566802440000,"y":0.13},{"x":1566802500000,"y":0.55},{"x":1566802560000,"y":0.24},{"x":1566802620000,"y":0.21},{"x":1566802680000,"y":0.17},{"x":1566802740000,"y":0.16},{"x":1566802800000,"y":0.69},{"x":1566802860000,"y":0.25},{"x":1566802920000,"y":0.21},{"x":1566802980000,"y":0.15},{"x":1566803040000,"y":0.19},{"x":1566803100000,"y":0.56},{"x":1566803160000,"y":0.21},{"x":1566803220000,"y":0.24},{"x":1566803280000,"y":0.12},{"x":1566803340000,"y":0.4},{"x":1566803400000,"y":0.41},{"x":1566803460000,"y":0.2},{"x":1566803520000,"y":0.3},{"x":1566803580000,"y":0.2},{"x":1566803640000,"y":0.12},{"x":1566803700000,"y":0.39},{"x":1566803760000,"y":0.43},{"x":1566803820000,"y":0.23},{"x":1566803880000,"y":0.22},{"x":1566803940000,"y":0.18},{"x":1566804000000,"y":0.37},{"x":1566804060000,"y":0.37},{"x":1566804120000,"y":0.25},{"x":1566804180000,"y":0.25},{"x":1566804240000,"y":0.3},{"x":1566804300000,"y":0.38},{"x":1566804360000,"y":0.41},{"x":1566804420000,"y":0.15},{"x":1566804480000,"y":0.15},{"x":1566804540000,"y":0.16},{"x":1566804600000,"y":0.48},{"x":1566804660000,"y":0.47},{"x":1566804720000,"y":0.23},{"x":1566804780000,"y":0.21},{"x":1566804840000,"y":0.21},{"x":1566804900000,"y":0.43},{"x":1566804960000,"y":0.32},{"x":1566805020000,"y":0.21},{"x":1566805080000,"y":0.18},{"x":1566805140000,"y":0.42},{"x":1566805200000,"y":0.31},{"x":1566805260000,"y":0.29},{"x":1566805320000,"y":0.23},{"x":1566805380000,"y":0.22},{"x":1566805440000,"y":0.24},{"x":1566805500000,"y":0.42},{"x":1566805560000,"y":0.33},{"x":1566805620000,"y":0.2},{"x":1566805680000,"y":0.3},{"x":1566805740000,"y":0.16},{"x":1566805800000,"y":0.46},{"x":1566805860000,"y":0.3},{"x":1566805920000,"y":0.16},{"x":1566805980000,"y":0.17},{"x":1566806040000,"y":0.16},{"x":1566806100000,"y":0.34},{"x":1566806160000,"y":0.15},{"x":1566806220000,"y":0.31},{"x":1566806280000,"y":0.15},{"x":1566806340000,"y":0.15},{"x":1566806400000,"y":0.76},{"x":1566806460000,"y":0.24},{"x":1566806520000,"y":0.41},{"x":1566806580000,"y":0.18},{"x":1566806640000,"y":0.15},{"x":1566806700000,"y":0.31},{"x":1566806760000,"y":0.15},{"x":1566806820000,"y":0.39},{"x":1566806880000,"y":0.2},{"x":1566806940000,"y":0.41},{"x":1566807000000,"y":0.27},{"x":1566807060000,"y":0.21},{"x":1566807120000,"y":0.46},{"x":1566807180000,"y":0.29},{"x":1566807240000,"y":0.36},{"x":1566807300000,"y":0.48},{"x":1566807360000,"y":0.23},{"x":1566807420000,"y":0.44},{"x":1566807480000,"y":0.27},{"x":1566807540000,"y":0.17},{"x":1566807600000,"y":0.41},{"x":1566807660000,"y":0.17},{"x":1566807720000,"y":0.35},{"x":1566807780000,"y":0.18},{"x":1566807840000,"y":0.24},{"x":1566807900000,"y":0.35},{"x":1566807960000,"y":0.2},{"x":1566808020000,"y":0.33},{"x":1566808080000,"y":0.18},{"x":1566808140000,"y":0.2},{"x":1566808200000,"y":0.43},{"x":1566808260000,"y":0.29},{"x":1566808320000,"y":0.42},{"x":1566808380000,"y":0.27},{"x":1566808440000,"y":0.31},{"x":1566808500000,"y":0.35},{"x":1566808560000,"y":0.29},{"x":1566808620000,"y":0.25},{"x":1566808680000,"y":0.48},{"x":1566808740000,"y":0.43},{"x":1566808800000,"y":0.36},{"x":1566808860000,"y":0.2},{"x":1566808920000,"y":0.24},{"x":1566808980000,"y":0.29},{"x":1566809040000,"y":0.2},{"x":1566809100000,"y":0.39},{"x":1566809160000,"y":0.25},{"x":1566809220000,"y":0.21},{"x":1566809280000,"y":0.32},{"x":1566809340000,"y":0.23},{"x":1566809400000,"y":0.38},{"x":1566809460000,"y":0.27},{"x":1566809520000,"y":0.23},{"x":1566809580000,"y":0.38},{"x":1566809640000,"y":0.25},{"x":1566809700000,"y":0.34},{"x":1566809760000,"y":0.2},{"x":1566809820000,"y":0.23},{"x":1566809880000,"y":0.34},{"x":1566809940000,"y":0.16},{"x":1566810000000,"y":0.72},{"x":1566810060000,"y":0.47},{"x":1566810120000,"y":0.44},{"x":1566810180000,"y":5.31},{"x":1566810240000,"y":0.33},{"x":1566810300000,"y":0.39},{"x":1566810360000,"y":0.21},{"x":1566810420000,"y":0.2},{"x":1566810480000,"y":0.31},{"x":1566810540000,"y":0.35},{"x":1566810600000,"y":0.38},{"x":1566810660000,"y":0.24},{"x":1566810720000,"y":0.18},{"x":1566810780000,"y":0.19},{"x":1566810840000,"y":0.37},{"x":1566810900000,"y":0.37},{"x":1566810960000,"y":0.18},{"x":1566811020000,"y":0.21},{"x":1566811080000,"y":0.2},{"x":1566811140000,"y":0.41},{"x":1566811200000,"y":0.43},{"x":1566811260000,"y":0.22},{"x":1566811320000,"y":0.21},{"x":1566811380000,"y":0.21},{"x":1566811440000,"y":0.37},{"x":1566811500000,"y":0.51},{"x":1566811560000,"y":0.27},{"x":1566811620000,"y":0.32},{"x":1566811680000,"y":0.38},{"x":1566811740000,"y":0.33},{"x":1566811800000,"y":0.45},{"x":1566811860000,"y":0.2},{"x":1566811920000,"y":0.24},{"x":1566811980000,"y":0.18},{"x":1566812040000,"y":0.33},{"x":1566812100000,"y":0.4},{"x":1566812160000,"y":0.23},{"x":1566812220000,"y":0.18},{"x":1566812280000,"y":0.24},{"x":1566812340000,"y":0.73},{"x":1566812400000,"y":0.56},{"x":1566812460000,"y":0.36},{"x":1566812520000,"y":0.35},{"x":1566812580000,"y":0.17},{"x":1566812640000,"y":1.24},{"x":1566812700000,"y":0.29},{"x":1566812760000,"y":0.15},{"x":1566812820000,"y":0.26},{"x":1566812880000,"y":0.27},{"x":1566812940000,"y":0.45},{"x":1566813000000,"y":0.29},{"x":1566813060000,"y":0.3},{"x":1566813120000,"y":0.3},{"x":1566813180000,"y":0.2},{"x":1566813240000,"y":0.16},{"x":1566813300000,"y":0.45},{"x":1566813360000,"y":0.2},{"x":1566813420000,"y":0.2},{"x":1566813480000,"y":0.14},{"x":1566813540000,"y":0.22},{"x":1566813600000,"y":0.6},{"x":1566813660000,"y":0.29},{"x":1566813720000,"y":0.17},{"x":1566813780000,"y":0.21},{"x":1566813840000,"y":0.21},{"x":1566813900000,"y":0.34},{"x":1566813960000,"y":0.18},{"x":1566814020000,"y":0.2},{"x":1566814080000,"y":0.22},{"x":1566814140000,"y":0.22},{"x":1566814200000,"y":0.45},{"x":1566814260000,"y":0.2},{"x":1566814320000,"y":0.17},{"x":1566814380000,"y":0.23},{"x":1566814440000,"y":0.36},{"x":1566814500000,"y":0.59},{"x":1566814560000,"y":0.14},{"x":1566814620000,"y":0.24},{"x":1566814680000,"y":0.21},{"x":1566814740000,"y":0.18},{"x":1566814800000,"y":0.68},{"x":1566814860000,"y":0.24},{"x":1566814920000,"y":0.22},{"x":1566814980000,"y":0.22},{"x":1566815040000,"y":0.19},{"x":1566815100000,"y":0.54},{"x":1566815160000,"y":0.35},{"x":1566815220000,"y":0.29},{"x":1566815280000,"y":0.3},{"x":1566815340000,"y":0.16},{"x":1566815400000,"y":0.32},{"x":1566815460000,"y":0.28},{"x":1566815520000,"y":0.19},{"x":1566815580000,"y":0.17},{"x":1566815640000,"y":0.22},{"x":1566815700000,"y":0.28},{"x":1566815760000,"y":3.66},{"x":1566815820000,"y":0.33},{"x":1566815880000,"y":0.17},{"x":1566815940000,"y":0.26},{"x":1566816000000,"y":0.41},{"x":1566816060000,"y":0.31},{"x":1566816120000,"y":0.2},{"x":1566816180000,"y":0.3},{"x":1566816240000,"y":0.19},{"x":1566816300000,"y":0.3},{"x":1566816360000,"y":0.31},{"x":1566816420000,"y":0.21},{"x":1566816480000,"y":0.63},{"x":1566816540000,"y":0.18},{"x":1566816600000,"y":0.37},{"x":1566816660000,"y":0.37},{"x":1566816720000,"y":0.21},{"x":1566816780000,"y":0.22},{"x":1566816840000,"y":0.23},{"x":1566816900000,"y":0.33},{"x":1566816960000,"y":0.36},{"x":1566817020000,"y":0.12},{"x":1566817080000,"y":0.27},{"x":1566817140000,"y":0.23},{"x":1566817200000,"y":0.39},{"x":1566817260000,"y":0.36},{"x":1566817320000,"y":0.13},{"x":1566817380000,"y":0.12},{"x":1566817440000,"y":0.12},{"x":1566817500000,"y":0.27},{"x":1566817560000,"y":0.23},{"x":1566817620000,"y":0.42},{"x":1566817680000,"y":0.18},{"x":1566817740000,"y":0.4},{"x":1566817800000,"y":0.36},{"x":1566817860000,"y":0.15},{"x":1566817920000,"y":0.36},{"x":1566817980000,"y":0.17},{"x":1566818040000,"y":0.15},{"x":1566818100000,"y":0.36},{"x":1566818160000,"y":0.24},{"x":1566818220000,"y":0.35},{"x":1566818280000,"y":0.23},{"x":1566818340000,"y":0.15},{"x":1566818400000,"y":0.3},{"x":1566818460000,"y":0.16},{"x":1566818520000,"y":0.34},{"x":1566818580000,"y":0.22},{"x":1566818640000,"y":0.2},{"x":1566818700000,"y":1.55},{"x":1566818760000,"y":0.25},{"x":1566818820000,"y":0.39},{"x":1566818880000,"y":0.25},{"x":1566818940000,"y":0.24},{"x":1566819000000,"y":0.41},{"x":1566819060000,"y":0.26},{"x":1566819120000,"y":0.37},{"x":1566819180000,"y":0.2},{"x":1566819240000,"y":0.23},{"x":1566819300000,"y":0.48},{"x":1566819360000,"y":0.32},{"x":1566819420000,"y":0.51},{"x":1566819480000,"y":0.27},{"x":1566819540000,"y":0.33},{"x":1566819600000,"y":0.47},{"x":1566819660000,"y":0.35},{"x":1566819720000,"y":0.49},{"x":1566819780000,"y":0.32},{"x":1566819840000,"y":0.3},{"x":1566819900000,"y":0.39},{"x":1566819960000,"y":0.23},{"x":1566820020000,"y":0.31},{"x":1566820080000,"y":0.51},{"x":1566820140000,"y":0.3},{"x":1566820200000,"y":0.36},{"x":1566820260000,"y":0.25},{"x":1566820320000,"y":0.27},{"x":1566820380000,"y":0.36},{"x":1566820440000,"y":0.2},{"x":1566820500000,"y":0.35},{"x":1566820560000,"y":0.29},{"x":1566820620000,"y":0.29},{"x":1566820680000,"y":0.4},{"x":1566820740000,"y":3.7},{"x":1566820800000,"y":0.61},{"x":1566820860000,"y":0.29},{"x":1566820920000,"y":0.24},{"x":1566820980000,"y":0.41},{"x":1566821040000,"y":0.27},{"x":1566821100000,"y":0.37},{"x":1566821160000,"y":0.29},{"x":1566821220000,"y":0.29},{"x":1566821280000,"y":0.4},{"x":1566821340000,"y":0.52},{"x":1566821400000,"y":0.41},{"x":1566821460000,"y":0.25},{"x":1566821520000,"y":0.39},{"x":1566821580000,"y":0.68},{"x":1566821640000,"y":0.35},{"x":1566821700000,"y":0.5},{"x":1566821760000,"y":0.38},{"x":1566821820000,"y":0.37},{"x":1566821880000,"y":0.46},{"x":1566821940000,"y":0.22},{"x":1566822000000,"y":0.38},{"x":1566822060000,"y":0.62},{"x":1566822120000,"y":0.28},{"x":1566822180000,"y":0.26},{"x":1566822240000,"y":0.53},{"x":1566822300000,"y":0.47},{"x":1566822360000,"y":0.37},{"x":1566822420000,"y":0.32},{"x":1566822480000,"y":0.38},{"x":1566822540000,"y":0.4},{"x":1566822600000,"y":0.41},{"x":1566822660000,"y":0.23},{"x":1566822720000,"y":0.31},{"x":1566822780000,"y":0.26},{"x":1566822840000,"y":0.42},{"x":1566822900000,"y":0.34},{"x":1566822960000,"y":0.23},{"x":1566823020000,"y":0.21},{"x":1566823080000,"y":0.29},{"x":1566823140000,"y":0.67},{"x":1566823200000,"y":0.41},{"x":1566823260000,"y":0.22},{"x":1566823320000,"y":0.29},{"x":1566823380000,"y":0.27},{"x":1566823440000,"y":0.4},{"x":1566823500000,"y":0.41},{"x":1566823560000,"y":1.59},{"x":1566823620000,"y":0.23},{"x":1566823680000,"y":0.28},{"x":1566823740000,"y":0.57},{"x":1566823800000,"y":0.43},{"x":1566823860000,"y":0.25},{"x":1566823920000,"y":0.27},{"x":1566823980000,"y":0.28},{"x":1566824040000,"y":0.45},{"x":1566824100000,"y":0.48},{"x":1566824160000,"y":0.25},{"x":1566824220000,"y":0.31},{"x":1566824280000,"y":0.23},{"x":1566824340000,"y":0.45},{"x":1566824400000,"y":0.6},{"x":1566824460000,"y":0.3},{"x":1566824520000,"y":0.24},{"x":1566824580000,"y":0.22},{"x":1566824640000,"y":0.23},{"x":1566824700000,"y":0.59},{"x":1566824760000,"y":0.26},{"x":1566824820000,"y":0.27},{"x":1566824880000,"y":0.23},{"x":1566824940000,"y":0.46},{"x":1566825000000,"y":0.56},{"x":1566825060000,"y":0.23},{"x":1566825120000,"y":0.24},{"x":1566825180000,"y":0.28},{"x":1566825240000,"y":0.24},{"x":1566825300000,"y":0.54},{"x":1566825360000,"y":0.28},{"x":1566825420000,"y":0.27},{"x":1566825480000,"y":0.25},{"x":1566825540000,"y":0.21},{"x":1566825600000,"y":0.62},{"x":1566825660000,"y":0.21},{"x":1566825720000,"y":0.3},{"x":1566825780000,"y":0.27},{"x":1566825840000,"y":0.28},{"x":1566825900000,"y":0.57},{"x":1566825960000,"y":0.2},{"x":1566826020000,"y":0.25},{"x":1566826080000,"y":0.35},{"x":1566826140000,"y":0.22},{"x":1566826200000,"y":0.55},{"x":1566826260000,"y":0.19},{"x":1566826320000,"y":0.3},{"x":1566826380000,"y":0.28},{"x":1566826440000,"y":0.32},{"x":1566826500000,"y":0.5},{"x":1566826560000,"y":0.29},{"x":1566826620000,"y":0.2},{"x":1566826680000,"y":0.21},{"x":1566826740000,"y":0.39},{"x":1566826800000,"y":0.3},{"x":1566826860000,"y":0.36},{"x":1566826920000,"y":0.21},{"x":1566826980000,"y":0.19},{"x":1566827040000,"y":0.2},{"x":1566827100000,"y":0.29},{"x":1566827160000,"y":0.81},{"x":1566827220000,"y":0.25},{"x":1566827280000,"y":0.22},{"x":1566827340000,"y":0.22},{"x":1566827400000,"y":0.68},{"x":1566827460000,"y":0.38},{"x":1566827520000,"y":0.28},{"x":1566827580000,"y":0.25},{"x":1566827640000,"y":0.28},{"x":1566827700000,"y":0.44},{"x":1566827760000,"y":0.45},{"x":1566827820000,"y":0.27},{"x":1566827880000,"y":0.22},{"x":1566827940000,"y":0.26},{"x":1566828000000,"y":0.61},{"x":1566828060000,"y":0.48},{"x":1566828120000,"y":0.41},{"x":1566828180000,"y":0.31},{"x":1566828240000,"y":0.29},{"x":1566828300000,"y":0.39},{"x":1566828360000,"y":0.42},{"x":1566828420000,"y":0.24},{"x":1566828480000,"y":0.23},{"x":1566828540000,"y":0.59},{"x":1566828600000,"y":0.34},{"x":1566828660000,"y":0.36},{"x":1566828720000,"y":0.39},{"x":1566828780000,"y":0.39},{"x":1566828840000,"y":0.35},{"x":1566828900000,"y":0.39},{"x":1566828960000,"y":0.32},{"x":1566829020000,"y":0.51},{"x":1566829080000,"y":0.25},{"x":1566829140000,"y":0.18},{"x":1566829200000,"y":0.34},{"x":1566829260000,"y":0.16},{"x":1566829320000,"y":0.34},{"x":1566829380000,"y":0.17},{"x":1566829440000,"y":0.2},{"x":1566829500000,"y":0.24},{"x":1566829560000,"y":0.19},{"x":1566829620000,"y":0.35},{"x":1566829680000,"y":0.18},{"x":1566829740000,"y":0.16},{"x":1566829800000,"y":0.34},{"x":1566829860000,"y":0.11},{"x":1566829920000,"y":0.37},{"x":1566829980000,"y":0.19},{"x":1566830040000,"y":0.12},{"x":1566830100000,"y":0.32},{"x":1566830160000,"y":0.19},{"x":1566830220000,"y":0.3},{"x":1566830280000,"y":0.21},{"x":1566830340000,"y":0.43},{"x":1566830400000,"y":0.25},{"x":1566830460000,"y":0.13},{"x":1566830520000,"y":0.39},{"x":1566830580000,"y":0.15},{"x":1566830640000,"y":0.19},{"x":1566830700000,"y":0.25},{"x":1566830760000,"y":0.2},{"x":1566830820000,"y":0.3},{"x":1566830880000,"y":0.13},{"x":1566830940000,"y":0.2},{"x":1566831000000,"y":0.24},{"x":1566831060000,"y":0.21},{"x":1566831120000,"y":0.13},{"x":1566831180000,"y":0.49},{"x":1566831240000,"y":0.17},{"x":1566831300000,"y":0.2},{"x":1566831360000,"y":0.17},{"x":1566831420000,"y":0.22},{"x":1566831480000,"y":0.31},{"x":1566831540000,"y":0.14},{"x":1566831600000,"y":0.63},{"x":1566831660000,"y":0.25},{"x":1566831720000,"y":0.19},{"x":1566831780000,"y":0.34},{"x":1566831840000,"y":0.19},{"x":1566831900000,"y":0.31},{"x":1566831960000,"y":0.13},{"x":1566832020000,"y":0.16},{"x":1566832080000,"y":5.22},{"x":1566832140000,"y":0.61},{"x":1566832200000,"y":0.3},{"x":1566832260000,"y":0.12},{"x":1566832320000,"y":0.11},{"x":1566832380000,"y":0.31},{"x":1566832440000,"y":0.16},{"x":1566832500000,"y":0.4},{"x":1566832560000,"y":0.14},{"x":1566832620000,"y":0.15},{"x":1566832680000,"y":0.27},{"x":1566832740000,"y":0.2},{"x":1566832800000,"y":0.32},{"x":1566832860000,"y":0.17},{"x":1566832920000,"y":0.17},{"x":1566832980000,"y":0.38},{"x":1566833040000,"y":0.13},{"x":1566833100000,"y":0.31},{"x":1566833160000,"y":0.17},{"x":1566833220000,"y":0.17},{"x":1566833280000,"y":0.16},{"x":1566833340000,"y":0.38},{"x":1566833400000,"y":0.41},{"x":1566833460000,"y":0.14},{"x":1566833520000,"y":0.19},{"x":1566833580000,"y":0.21},{"x":1566833640000,"y":0.34},{"x":1566833700000,"y":0.27},{"x":1566833760000,"y":0.16},{"x":1566833820000,"y":0.15},{"x":1566833880000,"y":0.13},{"x":1566833940000,"y":0.46},{"x":1566834000000,"y":0.34},{"x":1566834060000,"y":0.12},{"x":1566834120000,"y":0.13},{"x":1566834180000,"y":0.14},{"x":1566834240000,"y":0.33},{"x":1566834300000,"y":0.26},{"x":1566834360000,"y":0.15},{"x":1566834420000,"y":0.15},{"x":1566834480000,"y":4.32},{"x":1566834540000,"y":0.26},{"x":1566834600000,"y":0.31},{"x":1566834660000,"y":0.2},{"x":1566834720000,"y":0.11},{"x":1566834780000,"y":0.16},{"x":1566834840000,"y":0.33},{"x":1566834900000,"y":0.42},{"x":1566834960000,"y":0.21},{"x":1566835020000,"y":0.13},{"x":1566835080000,"y":0.21},{"x":1566835140000,"y":0.29},{"x":1566835200000,"y":0.41},{"x":1566835260000,"y":0.22},{"x":1566835320000,"y":0.13},{"x":1566835380000,"y":0.17},{"x":1566835440000,"y":0.14},{"x":1566835500000,"y":0.39},{"x":1566835560000,"y":0.26},{"x":1566835620000,"y":1.85},{"x":1566835680000,"y":0.13},{"x":1566835740000,"y":0.42},{"x":1566835800000,"y":0.41},{"x":1566835860000,"y":0.13},{"x":1566835920000,"y":0.12},{"x":1566835980000,"y":0.2},{"x":1566836040000,"y":0.16},{"x":1566836100000,"y":0.39},{"x":1566836160000,"y":0.18},{"x":1566836220000,"y":0.14},{"x":1566836280000,"y":0.12},{"x":1566836340000,"y":0.08},{"x":1566836400000,"y":0.38},{"x":1566836460000,"y":0.15},{"x":1566836520000,"y":0.15},{"x":1566836580000,"y":0.16},{"x":1566836640000,"y":0.12},{"x":1566836700000,"y":0.43},{"x":1566836760000,"y":0.14},{"x":1566836820000,"y":0.12},{"x":1566836880000,"y":0.18},{"x":1566836940000,"y":0.12},{"x":1566837000000,"y":0.42},{"x":1566837060000,"y":0.12},{"x":1566837120000,"y":0.15},{"x":1566837180000,"y":0.12},{"x":1566837240000,"y":0.12},{"x":1566837300000,"y":0.47},{"x":1566837360000,"y":0.16},{"x":1566837420000,"y":0.13},{"x":1566837480000,"y":0.18},{"x":1566837540000,"y":0.3},{"x":1566837600000,"y":0.49},{"x":1566837660000,"y":0.1},{"x":1566837720000,"y":0.2},{"x":1566837780000,"y":0.13},{"x":1566837840000,"y":0.14},{"x":1566837900000,"y":0.21},{"x":1566837960000,"y":0.33},{"x":1566838020000,"y":0.2},{"x":1566838080000,"y":0.14},{"x":1566838140000,"y":0.13},{"x":1566838200000,"y":0.32},{"x":1566838260000,"y":0.32},{"x":1566838320000,"y":1.49},{"x":1566838380000,"y":0.13},{"x":1566838440000,"y":0.15},{"x":1566838500000,"y":0.29},{"x":1566838560000,"y":0.32},{"x":1566838620000,"y":0.15},{"x":1566838680000,"y":0.16},{"x":1566838740000,"y":0.11},{"x":1566838800000,"y":0.49},{"x":1566838860000,"y":0.32},{"x":1566838920000,"y":0.33},{"x":1566838980000,"y":0.18},{"x":1566839040000,"y":0.21},{"x":1566839100000,"y":0.43},{"x":1566839160000,"y":0.32},{"x":1566839220000,"y":0.19},{"x":1566839280000,"y":0.19},{"x":1566839340000,"y":0.4},{"x":1566839400000,"y":0.39},{"x":1566839460000,"y":0.38},{"x":1566839520000,"y":0.15},{"x":1566839580000,"y":0.18},{"x":1566839640000,"y":0.2},{"x":1566839700000,"y":0.35},{"x":1566839760000,"y":0.13},{"x":1566839820000,"y":0.37},{"x":1566839880000,"y":0.13},{"x":1566839940000,"y":0.2},{"x":1566840000000,"y":0.28},{"x":1566840060000,"y":0.15},{"x":1566840120000,"y":0.26},{"x":1566840180000,"y":0.22},{"x":1566840240000,"y":0.22},{"x":1566840300000,"y":0.34},{"x":1566840360000,"y":0.21},{"x":1566840420000,"y":0.33},{"x":1566840480000,"y":0.25},{"x":1566840540000,"y":0.13},{"x":1566840600000,"y":0.42},{"x":1566840660000,"y":0.16},{"x":1566840720000,"y":0.35},{"x":1566840780000,"y":0.15},{"x":1566840840000,"y":0.17},{"x":1566840900000,"y":0.44},{"x":1566840960000,"y":0.23},{"x":1566841020000,"y":0.3},{"x":1566841080000,"y":0.22},{"x":1566841140000,"y":0.38},{"x":1566841200000,"y":0.37},{"x":1566841260000,"y":0.14},{"x":1566841320000,"y":0.39},{"x":1566841380000,"y":0.16},{"x":1566841440000,"y":0.27},{"x":1566841500000,"y":0.23},{"x":1566841560000,"y":0.17},{"x":1566841620000,"y":0.42},{"x":1566841680000,"y":0.23},{"x":1566841740000,"y":0.2},{"x":1566841800000,"y":0.22},{"x":1566841860000,"y":0.15},{"x":1566841920000,"y":0.33},{"x":1566841980000,"y":0.28},{"x":1566842040000,"y":0.2},{"x":1566842100000,"y":0.41},{"x":1566842160000,"y":0.22},{"x":1566842220000,"y":0.22},{"x":1566842280000,"y":0.34},{"x":1566842340000,"y":0.15},{"x":1566842400000,"y":0.41},{"x":1566842460000,"y":0.16},{"x":1566842520000,"y":0.17},{"x":1566842580000,"y":0.38},{"x":1566842640000,"y":0.18},{"x":1566842700000,"y":0.27},{"x":1566842760000,"y":0.17},{"x":1566842820000,"y":0.29},{"x":1566842880000,"y":0.42},{"x":1566842940000,"y":0.5},{"x":1566843000000,"y":0.28},{"x":1566843060000,"y":0.27},{"x":1566843120000,"y":0.18},{"x":1566843180000,"y":0.38},{"x":1566843240000,"y":0.26},{"x":1566843300000,"y":0.36},{"x":1566843360000,"y":0.22},{"x":1566843420000,"y":0.25},{"x":1566843480000,"y":0.35},{"x":1566843540000,"y":0.2},{"x":1566843600000,"y":0.31},{"x":1566843660000,"y":0.12},{"x":1566843720000,"y":0.15},{"x":1566843780000,"y":0.31},{"x":1566843840000,"y":0.23},{"x":1566843900000,"y":0.32},{"x":1566843960000,"y":0.15},{"x":1566844020000,"y":0.18},{"x":1566844080000,"y":0.19},{"x":1566844140000,"y":0.34},{"x":1566844200000,"y":0.39},{"x":1566844260000,"y":0.16},{"x":1566844320000,"y":0.18},{"x":1566844380000,"y":0.15},{"x":1566844440000,"y":0.41},{"x":1566844500000,"y":0.31},{"x":1566844560000,"y":0.2},{"x":1566844620000,"y":0.2},{"x":1566844680000,"y":0.22},{"x":1566844740000,"y":0.63},{"x":1566844800000,"y":0.3},{"x":1566844860000,"y":0.19},{"x":1566844920000,"y":0.22},{"x":1566844980000,"y":0.21},{"x":1566845040000,"y":0.36},{"x":1566845100000,"y":0.35},{"x":1566845160000,"y":0.21},{"x":1566845220000,"y":0.25},{"x":1566845280000,"y":0.2},{"x":1566845340000,"y":0.32},{"x":1566845400000,"y":0.24},{"x":1566845460000,"y":0.11},{"x":1566845520000,"y":0.95},{"x":1566845580000,"y":0.18},{"x":1566845640000,"y":0.33},{"x":1566845700000,"y":0.26},{"x":1566845760000,"y":0.27},{"x":1566845820000,"y":0.23},{"x":1566845880000,"y":0.2},{"x":1566845940000,"y":0.4},{"x":1566846000000,"y":0.65},{"x":1566846060000,"y":0.16},{"x":1566846120000,"y":0.16},{"x":1566846180000,"y":0.19},{"x":1566846240000,"y":0.36},{"x":1566846300000,"y":0.42},{"x":1566846360000,"y":0.16},{"x":1566846420000,"y":0.15},{"x":1566846480000,"y":0.13},{"x":1566846540000,"y":0.48},{"x":1566846600000,"y":0.71},{"x":1566846660000,"y":0.14},{"x":1566846720000,"y":0.13},{"x":1566846780000,"y":0.14},{"x":1566846840000,"y":0.15},{"x":1566846900000,"y":0.55},{"x":1566846960000,"y":0.17},{"x":1566847020000,"y":0.18},{"x":1566847080000,"y":0.17},{"x":1566847140000,"y":0.15},{"x":1566847200000,"y":0.49},{"x":1566847260000,"y":0.17},{"x":1566847320000,"y":0.16},{"x":1566847380000,"y":0.17},{"x":1566847440000,"y":0.2},{"x":1566847500000,"y":0.46},{"x":1566847560000,"y":0.12},{"x":1566847620000,"y":0.16},{"x":1566847680000,"y":0.29},{"x":1566847740000,"y":0.15},{"x":1566847800000,"y":0.39},{"x":1566847860000,"y":0.13},{"x":1566847920000,"y":0.23},{"x":1566847980000,"y":0.22},{"x":1566848040000,"y":0.13},{"x":1566848100000,"y":0.48},{"x":1566848160000,"y":0.16},{"x":1566848220000,"y":0.11},{"x":1566848280000,"y":0.12},{"x":1566848340000,"y":0.23},{"x":1566848400000,"y":0.43},{"x":1566848460000,"y":0.22},{"x":1566848520000,"y":0.18},{"x":1566848580000,"y":0.22},{"x":1566848640000,"y":0.15},{"x":1566848700000,"y":0.28},{"x":1566848760000,"y":0.37},{"x":1566848820000,"y":0.2},{"x":1566848880000,"y":0.22},{"x":1566848940000,"y":0.25},{"x":1566849000000,"y":0.32},{"x":1566849060000,"y":0.4},{"x":1566849120000,"y":0.2},{"x":1566849180000,"y":0.2},{"x":1566849240000,"y":0.23},{"x":1566849300000,"y":0.29},{"x":1566849360000,"y":0.32},{"x":1566849420000,"y":0.22},{"x":1566849480000,"y":0.21},{"x":1566849540000,"y":0.26},{"x":1566849600000,"y":0.51},{"x":1566849660000,"y":0.36},{"x":1566849720000,"y":0.18},{"x":1566849780000,"y":0.16},{"x":1566849840000,"y":0.3},{"x":1566849900000,"y":0.32},{"x":1566849960000,"y":0.3},{"x":1566850020000,"y":0.19},{"x":1566850080000,"y":0.2},{"x":1566850140000,"y":0.31},{"x":1566850200000,"y":0.29},{"x":1566850260000,"y":0.35},{"x":1566850320000,"y":0.23},{"x":1566850380000,"y":0.28},{"x":1566850440000,"y":0.38},{"x":1566850500000,"y":0.3},{"x":1566850560000,"y":0.45},{"x":1566850620000,"y":0.3},{"x":1566850680000,"y":0.33},{"x":1566850740000,"y":0.17},{"x":1566850800000,"y":0.3},{"x":1566850860000,"y":0.2},{"x":1566850920000,"y":0.34},{"x":1566850980000,"y":0.22},{"x":1566851040000,"y":0.24},{"x":1566851100000,"y":0.25},{"x":1566851160000,"y":0.13},{"x":1566851220000,"y":0.28},{"x":1566851280000,"y":0.17},{"x":1566851340000,"y":0.14},{"x":1566851400000,"y":0.31},{"x":1566851460000,"y":0.27},{"x":1566851520000,"y":0.37},{"x":1566851580000,"y":0.24},{"x":1566851640000,"y":0.26},{"x":1566851700000,"y":0.41},{"x":1566851760000,"y":0.19},{"x":1566851820000,"y":0.37},{"x":1566851880000,"y":0.2},{"x":1566851940000,"y":0.31},{"x":1566852000000,"y":0.28},{"x":1566852060000,"y":0.13},{"x":1566852120000,"y":0.38},{"x":1566852180000,"y":0.24},{"x":1566852240000,"y":0.23},{"x":1566852300000,"y":0.38},{"x":1566852360000,"y":0.22},{"x":1566852420000,"y":0.51},{"x":1566852480000,"y":0.2},{"x":1566852540000,"y":0.21},{"x":1566852600000,"y":0.44},{"x":1566852660000,"y":0.23},{"x":1566852720000,"y":0.39},{"x":1566852780000,"y":0.24},{"x":1566852840000,"y":0.21},{"x":1566852900000,"y":0.4},{"x":1566852960000,"y":0.19},{"x":1566853020000,"y":0.2},{"x":1566853080000,"y":0.38},{"x":1566853140000,"y":0.19},{"x":1566853200000,"y":0.5},{"x":1566853260000,"y":0.32},{"x":1566853320000,"y":0.24},{"x":1566853380000,"y":0.39},{"x":1566853440000,"y":0.24},{"x":1566853500000,"y":0.37},{"x":1566853560000,"y":0.24},{"x":1566853620000,"y":0.24},{"x":1566853680000,"y":0.32},{"x":1566853740000,"y":0.45},{"x":1566853800000,"y":0.31},{"x":1566853860000,"y":0.19},{"x":1566853920000,"y":0.27},{"x":1566853980000,"y":5.52},{"x":1566854040000,"y":0.29},{"x":1566854100000,"y":0.39},{"x":1566854160000,"y":0.26},{"x":1566854220000,"y":0.26},{"x":1566854280000,"y":0.4},{"x":1566854340000,"y":0.22},{"x":1566854400000,"y":0.37},{"x":1566854460000,"y":0.2},{"x":1566854520000,"y":0.26},{"x":1566854580000,"y":0.47},{"x":1566854640000,"y":0.3},{"x":1566854700000,"y":0.32},{"x":1566854760000,"y":0.22},{"x":1566854820000,"y":0.21},{"x":1566854880000,"y":0.35},{"x":1566854940000,"y":0.2},{"x":1566855000000,"y":0.29},{"x":1566855060000,"y":0.2},{"x":1566855120000,"y":0.21},{"x":1566855180000,"y":0.32},{"x":1566855240000,"y":0.24},{"x":1566855300000,"y":0.28},{"x":1566855360000,"y":0.22},{"x":1566855420000,"y":0.24},{"x":1566855480000,"y":0.29},{"x":1566855540000,"y":0.61},{"x":1566855600000,"y":0.3},{"x":1566855660000,"y":0.27},{"x":1566855720000,"y":0.31},{"x":1566855780000,"y":0.19},{"x":1566855840000,"y":0.44},{"x":1566855900000,"y":0.4},{"x":1566855960000,"y":0.27},{"x":1566856020000,"y":0.28},{"x":1566856080000,"y":0.23},{"x":1566856140000,"y":0.42},{"x":1566856200000,"y":1.12},{"x":1566856260000,"y":0.26},{"x":1566856320000,"y":0.23},{"x":1566856380000,"y":0.19},{"x":1566856440000,"y":0.37},{"x":1566856500000,"y":0.34},{"x":1566856560000,"y":0.22},{"x":1566856620000,"y":0.25},{"x":1566856680000,"y":0.22},{"x":1566856740000,"y":0.33},{"x":1566856800000,"y":0.52},{"x":1566856860000,"y":0.22},{"x":1566856920000,"y":0.22},{"x":1566856980000,"y":0.26},{"x":1566857040000,"y":0.38},{"x":1566857100000,"y":0.42},{"x":1566857160000,"y":0.29},{"x":1566857220000,"y":0.23},{"x":1566857280000,"y":0.22},{"x":1566857340000,"y":0.52},{"x":1566857400000,"y":0.33},{"x":1566857460000,"y":0.25},{"x":1566857520000,"y":0.26},{"x":1566857580000,"y":0.31},{"x":1566857640000,"y":0.29},{"x":1566857700000,"y":0.45},{"x":1566857760000,"y":0.19},{"x":1566857820000,"y":0.22},{"x":1566857880000,"y":0.25},{"x":1566857940000,"y":0.22},{"x":1566858000000,"y":0.49},{"x":1566858060000,"y":0.21},{"x":1566858120000,"y":0.2},{"x":1566858180000,"y":0.16},{"x":1566858240000,"y":0.23},{"x":1566858300000,"y":0.47},{"x":1566858360000,"y":0.22},{"x":1566858420000,"y":0.18},{"x":1566858480000,"y":0.25},{"x":1566858540000,"y":0.17},{"x":1566858600000,"y":0.49},{"x":1566858660000,"y":0.22},{"x":1566858720000,"y":0.24},{"x":1566858780000,"y":0.21},{"x":1566858840000,"y":0.21},{"x":1566858900000,"y":0.64},{"x":1566858960000,"y":0.27},{"x":1566859020000,"y":0.21},{"x":1566859080000,"y":0.22},{"x":1566859140000,"y":0.45},{"x":1566859200000,"y":0.47},{"x":1566859260000,"y":0.32},{"x":1566859320000,"y":0.22},{"x":1566859380000,"y":0.2},{"x":1566859440000,"y":0.24},{"x":1566859500000,"y":0.34},{"x":1566859560000,"y":0.37},{"x":1566859620000,"y":0.28},{"x":1566859680000,"y":0.21},{"x":1566859740000,"y":0.2},{"x":1566859800000,"y":0.38},{"x":1566859860000,"y":0.39},{"x":1566859920000,"y":0.21},{"x":1566859980000,"y":0.23},{"x":1566860040000,"y":0.21},{"x":1566860100000,"y":0.29},{"x":1566860160000,"y":0.35},{"x":1566860220000,"y":0.24},{"x":1566860280000,"y":0.15},{"x":1566860340000,"y":0.25},{"x":1566860400000,"y":0.5},{"x":1566860460000,"y":0.35},{"x":1566860520000,"y":0.17},{"x":1566860580000,"y":0.22},{"x":1566860640000,"y":0.2},{"x":1566860700000,"y":0.33},{"x":1566860760000,"y":0.34},{"x":1566860820000,"y":0.22},{"x":1566860880000,"y":0.17},{"x":1566860940000,"y":0.5},{"x":1566861000000,"y":0.31},{"x":1566861060000,"y":0.3},{"x":1566861120000,"y":0.23},{"x":1566861180000,"y":0.2},{"x":1566861240000,"y":0.17},{"x":1566861300000,"y":0.43},{"x":1566861360000,"y":0.36},{"x":1566861420000,"y":0.21},{"x":1566861480000,"y":0.2},{"x":1566861540000,"y":0.2},{"x":1566861600000,"y":0.28},{"x":1566861660000,"y":0.25},{"x":1566861720000,"y":0.44},{"x":1566861780000,"y":0.2},{"x":1566861840000,"y":0.22},{"x":1566861900000,"y":0.61},{"x":1566861960000,"y":0.74},{"x":1566862020000,"y":0.77},{"x":1566862080000,"y":0.36},{"x":1566862140000,"y":0.15},{"x":1566862200000,"y":0.38},{"x":1566862260000,"y":0.16},{"x":1566862320000,"y":0.39},{"x":1566862380000,"y":0.15},{"x":1566862440000,"y":1.73},{"x":1566862500000,"y":19.97},{"x":1566862560000,"y":0.1},{"x":1566862620000,"y":0.27},{"x":1566862680000,"y":0.12},{"x":1566862740000,"y":0.31},{"x":1566862800000,"y":0.24},{"x":1566862860000,"y":0.12},{"x":1566862920000,"y":0.31},{"x":1566862980000,"y":0.12},{"x":1566863040000,"y":0.11},{"x":1566863100000,"y":0.26},{"x":1566863160000,"y":0.11},{"x":1566863220000,"y":0.39},{"x":1566863280000,"y":0.15},{"x":1566863340000,"y":0.15},{"x":1566863400000,"y":0.28},{"x":1566863460000,"y":0.11},{"x":1566863520000,"y":0.32},{"x":1566863580000,"y":0.16},{"x":1566863640000,"y":0.13},{"x":1566863700000,"y":0.3},{"x":1566863760000,"y":0.18},{"x":1566863820000,"y":0.14},{"x":1566863880000,"y":0.3},{"x":1566863940000,"y":0.14},{"x":1566864000000,"y":0.4},{"x":1566864060000,"y":0.15},{"x":1566864120000,"y":0.17},{"x":1566864180000,"y":0.25},{"x":1566864240000,"y":0.29},{"x":1566864300000,"y":0.31},{"x":1566864360000,"y":0.21},{"x":1566864420000,"y":0.17},{"x":1566864480000,"y":0.33},{"x":1566864540000,"y":0.29},{"x":1566864600000,"y":0.21},{"x":1566864660000,"y":0.14},{"x":1566864720000,"y":0.19},{"x":1566864780000,"y":0.29},{"x":1566864840000,"y":0.19},{"x":1566864900000,"y":0.43},{"x":1566864960000,"y":0.2},{"x":1566865020000,"y":0.15},{"x":1566865080000,"y":0.38},{"x":1566865140000,"y":0.17},{"x":1566865200000,"y":0.28},{"x":1566865260000,"y":0.2},{"x":1566865320000,"y":0.12},{"x":1566865380000,"y":0.37},{"x":1566865440000,"y":0.2},{"x":1566865500000,"y":0.31},{"x":1566865560000,"y":0.17},{"x":1566865620000,"y":0.16},{"x":1566865680000,"y":0.37},{"x":1566865740000,"y":0.19},{"x":1566865800000,"y":0.42},{"x":1566865860000,"y":0.12},{"x":1566865920000,"y":0.2},{"x":1566865980000,"y":0.28},{"x":1566866040000,"y":0.22},{"x":1566866100000,"y":0.51},{"x":1566866160000,"y":0.27},{"x":1566866220000,"y":0.15},{"x":1566866280000,"y":0.16},{"x":1566866340000,"y":0.68},{"x":1566866400000,"y":0.29},{"x":1566866460000,"y":0.18},{"x":1566866520000,"y":0.27},{"x":1566866580000,"y":0.21},{"x":1566866640000,"y":0.36},{"x":1566866700000,"y":0.34},{"x":1566866760000,"y":0.14},{"x":1566866820000,"y":0.16},{"x":1566866880000,"y":0.12},{"x":1566866940000,"y":0.29},{"x":1566867000000,"y":0.24},{"x":1566867060000,"y":0.15},{"x":1566867120000,"y":0.2},{"x":1566867180000,"y":0.17},{"x":1566867240000,"y":1.19},{"x":1566867300000,"y":0.24},{"x":1566867360000,"y":0.18},{"x":1566867420000,"y":0.13},{"x":1566867480000,"y":0.15},{"x":1566867540000,"y":0.28},{"x":1566867600000,"y":0.44},{"x":1566867660000,"y":0.15},{"x":1566867720000,"y":0.16},{"x":1566867780000,"y":0.19},{"x":1566867840000,"y":0.43},{"x":1566867900000,"y":0.96},{"x":1566867960000,"y":0.31},{"x":1566868020000,"y":0.21},{"x":1566868080000,"y":0.21},{"x":1566868140000,"y":0.63},{"x":1566868200000,"y":0.47},{"x":1566868260000,"y":0.13},{"x":1566868320000,"y":0.15},{"x":1566868380000,"y":0.23},{"x":1566868440000,"y":0.39},{"x":1566868500000,"y":0.3},{"x":1566868560000,"y":0.11},{"x":1566868620000,"y":0.17},{"x":1566868680000,"y":0.12},{"x":1566868740000,"y":0.15},{"x":1566868800000,"y":0.66},{"x":1566868860000,"y":0.15},{"x":1566868920000,"y":0.17},{"x":1566868980000,"y":0.22},{"x":1566869040000,"y":0.17},{"x":1566869100000,"y":0.44},{"x":1566869160000,"y":0.18},{"x":1566869220000,"y":0.15},{"x":1566869280000,"y":0.24},{"x":1566869340000,"y":0.16},{"x":1566869400000,"y":0.51},{"x":1566869460000,"y":0.12},{"x":1566869520000,"y":0.15},{"x":1566869580000,"y":0.14},{"x":1566869640000,"y":0.13},{"x":1566869700000,"y":0.45},{"x":1566869760000,"y":0.09},{"x":1566869820000,"y":0.12},{"x":1566869880000,"y":0.12},{"x":1566869940000,"y":0.35},{"x":1566870000000,"y":0.38},{"x":1566870060000,"y":0.1},{"x":1566870120000,"y":0.11},{"x":1566870180000,"y":0.13},{"x":1566870240000,"y":0.12},{"x":1566870300000,"y":0.39},{"x":1566870360000,"y":0.12},{"x":1566870420000,"y":0.15},{"x":1566870480000,"y":0.13},{"x":1566870540000,"y":0.2},{"x":1566870600000,"y":0.41},{"x":1566870660000,"y":0.1},{"x":1566870720000,"y":0.13},{"x":1566870780000,"y":0.09},{"x":1566870840000,"y":0.08},{"x":1566870900000,"y":0.43},{"x":1566870960000,"y":0.15},{"x":1566871020000,"y":0.12},{"x":1566871080000,"y":0.09},{"x":1566871140000,"y":0.1},{"x":1566871200000,"y":0.42},{"x":1566871260000,"y":0.33},{"x":1566871320000,"y":0.16},{"x":1566871380000,"y":0.27},{"x":1566871440000,"y":0.23},{"x":1566871500000,"y":0.36},{"x":1566871560000,"y":0.32},{"x":1566871620000,"y":0.2},{"x":1566871680000,"y":0.2},{"x":1566871740000,"y":0.45},{"x":1566871800000,"y":0.33},{"x":1566871860000,"y":0.3},{"x":1566871920000,"y":0.1},{"x":1566871980000,"y":0.15},{"x":1566872040000,"y":0.15},{"x":1566872100000,"y":0.37},{"x":1566872160000,"y":0.29},{"x":1566872220000,"y":0.13},{"x":1566872280000,"y":0.16},{"x":1566872340000,"y":0.12},{"x":1566872400000,"y":0.26},{"x":1566872460000,"y":0.4},{"x":1566872520000,"y":0.13},{"x":1566872580000,"y":0.11},{"x":1566872640000,"y":0.13},{"x":1566872700000,"y":0.36},{"x":1566872760000,"y":0.13},{"x":1566872820000,"y":0.33},{"x":1566872880000,"y":0.15},{"x":1566872940000,"y":0.13},{"x":1566873000000,"y":0.35},{"x":1566873060000,"y":0.11},{"x":1566873120000,"y":0.38},{"x":1566873180000,"y":0.11},{"x":1566873240000,"y":0.1},{"x":1566873300000,"y":0.24},{"x":1566873360000,"y":0.16},{"x":1566873420000,"y":0.32},{"x":1566873480000,"y":0.14},{"x":1566873540000,"y":0.24},{"x":1566873600000,"y":0.45},{"x":1566873660000,"y":0.15},{"x":1566873720000,"y":0.29},{"x":1566873780000,"y":0.22},{"x":1566873840000,"y":0.17},{"x":1566873900000,"y":0.44},{"x":1566873960000,"y":0.19},{"x":1566874020000,"y":0.36},{"x":1566874080000,"y":0.2},{"x":1566874140000,"y":0.16},{"x":1566874200000,"y":0.35},{"x":1566874260000,"y":0.18},{"x":1566874320000,"y":0.36},{"x":1566874380000,"y":0.18},{"x":1566874440000,"y":0.19},{"x":1566874500000,"y":0.29},{"x":1566874560000,"y":0.17},{"x":1566874620000,"y":0.69},{"x":1566874680000,"y":0.19},{"x":1566874740000,"y":0.17},{"x":1566874800000,"y":0.47},{"x":1566874860000,"y":0.33},{"x":1566874920000,"y":0.34},{"x":1566874980000,"y":0.18},{"x":1566875040000,"y":0.24},{"x":1566875100000,"y":0.4},{"x":1566875160000,"y":0.24},{"x":1566875220000,"y":0.17},{"x":1566875280000,"y":0.39},{"x":1566875340000,"y":0.51},{"x":1566875400000,"y":0.3},{"x":1566875460000,"y":0.13},{"x":1566875520000,"y":0.2},{"x":1566875580000,"y":0.3},{"x":1566875640000,"y":0.18},{"x":1566875700000,"y":0.31},{"x":1566875760000,"y":0.15},{"x":1566875820000,"y":0.17},{"x":1566875880000,"y":5.25},{"x":1566875940000,"y":0.13},{"x":1566876000000,"y":0.22},{"x":1566876060000,"y":0.13},{"x":1566876120000,"y":0.18},{"x":1566876180000,"y":0.25},{"x":1566876240000,"y":0.17},{"x":1566876300000,"y":0.41},{"x":1566876360000,"y":0.15},{"x":1566876420000,"y":0.19},{"x":1566876480000,"y":0.3},{"x":1566876540000,"y":0.17},{"x":1566876600000,"y":0.35},{"x":1566876660000,"y":0.12},{"x":1566876720000,"y":0.12},{"x":1566876780000,"y":0.31},{"x":1566876840000,"y":0.13},{"x":1566876900000,"y":0.26},{"x":1566876960000,"y":0.13},{"x":1566877020000,"y":0.2},{"x":1566877080000,"y":0.34},{"x":1566877140000,"y":0.24},{"x":1566877200000,"y":0.33},{"x":1566877260000,"y":0.13},{"x":1566877320000,"y":0.13},{"x":1566877380000,"y":0.11},{"x":1566877440000,"y":0.29},{"x":1566877500000,"y":0.35},{"x":1566877560000,"y":0.17},{"x":1566877620000,"y":0.22},{"x":1566877680000,"y":0.13},{"x":1566877740000,"y":0.29},{"x":1566877800000,"y":0.29},{"x":1566877860000,"y":0.15},{"x":1566877920000,"y":0.12},{"x":1566877980000,"y":0.16},{"x":1566878040000,"y":0.26},{"x":1566878100000,"y":0.3},{"x":1566878160000,"y":0.15},{"x":1566878220000,"y":0.22},{"x":1566878280000,"y":0.1},{"x":1566878340000,"y":0.27},{"x":1566878400000,"y":0.42},{"x":1566878460000,"y":0.19},{"x":1566878520000,"y":0.2},{"x":1566878580000,"y":0.13},{"x":1566878640000,"y":0.24},{"x":1566878700000,"y":0.26},{"x":1566878760000,"y":0.18},{"x":1566878820000,"y":0.17},{"x":1566878880000,"y":0.11},{"x":1566878940000,"y":0.37},{"x":1566879000000,"y":0.26},{"x":1566879060000,"y":0.2},{"x":1566879120000,"y":0.18},{"x":1566879180000,"y":0.26},{"x":1566879240000,"y":0.35},{"x":1566879300000,"y":0.31},{"x":1566879360000,"y":0.15},{"x":1566879420000,"y":0.2},{"x":1566879480000,"y":0.15},{"x":1566879540000,"y":0.29},{"x":1566879600000,"y":0.25},{"x":1566879660000,"y":0.14},{"x":1566879720000,"y":0.1},{"x":1566879780000,"y":0.12},{"x":1566879840000,"y":0.14},{"x":1566879900000,"y":0.56},{"x":1566879960000,"y":0.15},{"x":1566880020000,"y":0.15},{"x":1566880080000,"y":0.19},{"x":1566880140000,"y":0.13},{"x":1566880200000,"y":0.47},{"x":1566880260000,"y":0.13},{"x":1566880320000,"y":0.17},{"x":1566880380000,"y":0.12},{"x":1566880440000,"y":0.12},{"x":1566880500000,"y":0.39},{"x":1566880560000,"y":0.12},{"x":1566880620000,"y":0.12},{"x":1566880680000,"y":0.13},{"x":1566880740000,"y":0.29},{"x":1566880800000,"y":0.4},{"x":1566880860000,"y":0.1},{"x":1566880920000,"y":0.13},{"x":1566880980000,"y":0.12},{"x":1566881040000,"y":0.11},{"x":1566881100000,"y":0.54},{"x":1566881160000,"y":0.11},{"x":1566881220000,"y":0.15},{"x":1566881280000,"y":0.15},{"x":1566881340000,"y":0.13},{"x":1566881400000,"y":0.38},{"x":1566881460000,"y":0.11},{"x":1566881520000,"y":0.45},{"x":1566881580000,"y":0.3},{"x":1566881640000,"y":0.1},{"x":1566881700000,"y":1.1},{"x":1566881760000,"y":0.18},{"x":1566881820000,"y":0.15},{"x":1566881880000,"y":0.14},{"x":1566881940000,"y":0.13},{"x":1566882000000,"y":1.35},{"x":1566882060000,"y":0.31},{"x":1566882120000,"y":0.11},{"x":1566882180000,"y":0.13},{"x":1566882240000,"y":0.13},{"x":1566882300000,"y":0.29},{"x":1566882360000,"y":0.28},{"x":1566882420000,"y":0.14},{"x":1566882480000,"y":0.1},{"x":1566882540000,"y":0.19},{"x":1566882600000,"y":0.25},{"x":1566882660000,"y":0.24},{"x":1566882720000,"y":0.13},{"x":1566882780000,"y":0.08},{"x":1566882840000,"y":0.09},{"x":1566882900000,"y":0.17},{"x":1566882960000,"y":0.27},{"x":1566883020000,"y":0.09},{"x":1566883080000,"y":0.14},{"x":1566883140000,"y":0.11},{"x":1566883200000,"y":0.25},{"x":1566883260000,"y":0.25},{"x":1566883320000,"y":0.08},{"x":1566883380000,"y":0.12},{"x":1566883440000,"y":0.13},{"x":1566883500000,"y":0.28},{"x":1566883560000,"y":0.24},{"x":1566883620000,"y":0.1},{"x":1566883680000,"y":0.18},{"x":1566883740000,"y":0.15},{"x":1566883800000,"y":0.38},{"x":1566883860000,"y":0.32},{"x":1566883920000,"y":0.2},{"x":1566883980000,"y":0.12},{"x":1566884040000,"y":0.13},{"x":1566884100000,"y":0.2},{"x":1566884160000,"y":0.12},{"x":1566884220000,"y":0.32},{"x":1566884280000,"y":0.17},{"x":1566884340000,"y":0.25},{"x":1566884400000,"y":0.24},{"x":1566884460000,"y":0.18},{"x":1566884520000,"y":0.31},{"x":1566884580000,"y":0.19},{"x":1566884640000,"y":0.18},{"x":1566884700000,"y":0.32},{"x":1566884760000,"y":0.2},{"x":1566884820000,"y":0.34},{"x":1566884880000,"y":0.1},{"x":1566884940000,"y":0.17},{"x":1566885000000,"y":0.37},{"x":1566885060000,"y":0.14},{"x":1566885120000,"y":0.33},{"x":1566885180000,"y":2.41},{"x":1566885240000,"y":0.19},{"x":1566885300000,"y":0.31},{"x":1566885360000,"y":0.15},{"x":1566885420000,"y":0.33},{"x":1566885480000,"y":0.19},{"x":1566885540000,"y":0.17},{"x":1566885600000,"y":0.44},{"x":1566885660000,"y":0.31},{"x":1566885720000,"y":0.34},{"x":1566885780000,"y":0.22},{"x":1566885840000,"y":0.25},{"x":1566885900000,"y":0.3},{"x":1566885960000,"y":0.26},{"x":1566886020000,"y":0.38},{"x":1566886080000,"y":0.25},{"x":1566886140000,"y":0.61},{"x":1566886200000,"y":0.37},{"x":1566886260000,"y":0.27},{"x":1566886320000,"y":0.47},{"x":1566886380000,"y":0.39},{"x":1566886440000,"y":0.35},{"x":1566886500000,"y":0.47},{"x":1566886560000,"y":0.33},{"x":1566886620000,"y":0.27},{"x":1566886680000,"y":0.35},{"x":1566886740000,"y":0.22},{"x":1566886800000,"y":0.32},{"x":1566886860000,"y":0.21},{"x":1566886920000,"y":0.27},{"x":1566886980000,"y":0.35},{"x":1566887040000,"y":0.26},{"x":1566887100000,"y":0.7},{"x":1566887160000,"y":0.23},{"x":1566887220000,"y":0.23},{"x":1566887280000,"y":0.41},{"x":1566887340000,"y":0.22},{"x":1566887400000,"y":0.41},{"x":1566887460000,"y":0.2},{"x":1566887520000,"y":0.22},{"x":1566887580000,"y":0.3},{"x":1566887640000,"y":0.16},{"x":1566887700000,"y":0.32},{"x":1566887760000,"y":0.18},{"x":1566887820000,"y":0.19},{"x":1566887880000,"y":0.36},{"x":1566887940000,"y":0.48},{"x":1566888000000,"y":0.34},{"x":1566888060000,"y":0.22},{"x":1566888120000,"y":0.21},{"x":1566888180000,"y":0.35},{"x":1566888240000,"y":0.25},{"x":1566888300000,"y":0.33},{"x":1566888360000,"y":0.26},{"x":1566888420000,"y":0.2},{"x":1566888480000,"y":0.37},{"x":1566888540000,"y":0.29},{"x":1566888600000,"y":0.31},{"x":1566888660000,"y":0.19},{"x":1566888720000,"y":0.22},{"x":1566888780000,"y":1.42},{"x":1566888840000,"y":0.36},{"x":1566888900000,"y":0.32},{"x":1566888960000,"y":0.6},{"x":1566889020000,"y":0.25},{"x":1566889080000,"y":0.22},{"x":1566889140000,"y":0.38},{"x":1566889200000,"y":0.59},{"x":1566889260000,"y":0.25},{"x":1566889320000,"y":0.29},{"x":1566889380000,"y":0.22},{"x":1566889440000,"y":0.37},{"x":1566889500000,"y":0.37},{"x":1566889560000,"y":0.22},{"x":1566889620000,"y":0.21},{"x":1566889680000,"y":0.2},{"x":1566889740000,"y":0.55},{"x":1566889800000,"y":0.31},{"x":1566889860000,"y":0.18},{"x":1566889920000,"y":0.2},{"x":1566889980000,"y":0.21},{"x":1566890040000,"y":0.33},{"x":1566890100000,"y":0.34},{"x":1566890160000,"y":0.21},{"x":1566890220000,"y":0.21},{"x":1566890280000,"y":0.2},{"x":1566890340000,"y":0.34},{"x":1566890400000,"y":0.41},{"x":1566890460000,"y":0.27},{"x":1566890520000,"y":0.2},{"x":1566890580000,"y":0.22},{"x":1566890640000,"y":0.21},{"x":1566890700000,"y":0.57},{"x":1566890760000,"y":0.21},{"x":1566890820000,"y":0.17},{"x":1566890880000,"y":0.22},{"x":1566890940000,"y":0.19},{"x":1566891000000,"y":0.63},{"x":1566891060000,"y":0.17},{"x":1566891120000,"y":0.25},{"x":1566891180000,"y":0.22},{"x":1566891240000,"y":0.22},{"x":1566891300000,"y":0.42},{"x":1566891360000,"y":0.17},{"x":1566891420000,"y":0.18},{"x":1566891480000,"y":0.19},{"x":1566891540000,"y":0.32},{"x":1566891600000,"y":0.47},{"x":1566891660000,"y":0.22},{"x":1566891720000,"y":0.25},{"x":1566891780000,"y":0.18},{"x":1566891840000,"y":0.22},{"x":1566891900000,"y":0.54},{"x":1566891960000,"y":0.2},{"x":1566892020000,"y":0.26},{"x":1566892080000,"y":0.19},{"x":1566892140000,"y":0.17},{"x":1566892200000,"y":0.53},{"x":1566892260000,"y":0.2},{"x":1566892320000,"y":0.2},{"x":1566892380000,"y":0.19},{"x":1566892440000,"y":0.21},{"x":1566892500000,"y":0.48},{"x":1566892560000,"y":0.17},{"x":1566892620000,"y":0.26},{"x":1566892680000,"y":0.17},{"x":1566892740000,"y":0.26},{"x":1566892800000,"y":0.76},{"x":1566892860000,"y":0.31},{"x":1566892920000,"y":0.27},{"x":1566892980000,"y":0.2},{"x":1566893040000,"y":0.22},{"x":1566893100000,"y":0.34},{"x":1566893160000,"y":0.35},{"x":1566893220000,"y":0.23},{"x":1566893280000,"y":0.23},{"x":1566893340000,"y":0.32},{"x":1566893400000,"y":0.34},{"x":1566893460000,"y":0.34},{"x":1566893520000,"y":0.21},{"x":1566893580000,"y":0.25},{"x":1566893640000,"y":0.31},{"x":1566893700000,"y":0.31},{"x":1566893760000,"y":0.34},{"x":1566893820000,"y":0.2},{"x":1566893880000,"y":0.29},{"x":1566893940000,"y":0.17},{"x":1566894000000,"y":0.31},{"x":1566894060000,"y":0.38},{"x":1566894120000,"y":0.22},{"x":1566894180000,"y":0.18},{"x":1566894240000,"y":0.17},{"x":1566894300000,"y":0.31},{"x":1566894360000,"y":0.32},{"x":1566894420000,"y":0.17},{"x":1566894480000,"y":0.18},{"x":1566894540000,"y":0.16},{"x":1566894600000,"y":0.37},{"x":1566894660000,"y":0.33},{"x":1566894720000,"y":0.23},{"x":1566894780000,"y":0.23},{"x":1566894840000,"y":0.22},{"x":1566894900000,"y":0.39},{"x":1566894960000,"y":0.43},{"x":1566895020000,"y":0.3},{"x":1566895080000,"y":0.2},{"x":1566895140000,"y":0.24},{"x":1566895200000,"y":0.33},{"x":1566895260000,"y":0.31},{"x":1566895320000,"y":0.22},{"x":1566895380000,"y":0.13},{"x":1566895440000,"y":0.18},{"x":1566895500000,"y":0.37},{"x":1566895560000,"y":0.09},{"x":1566895620000,"y":0.33},{"x":1566895680000,"y":0.15},{"x":1566895740000,"y":0.1},{"x":1566895800000,"y":0.26},{"x":1566895860000,"y":0.12},{"x":1566895920000,"y":0.27},{"x":1566895980000,"y":0.12},{"x":1566896040000,"y":0.12},{"x":1566896100000,"y":0.26},{"x":1566896160000,"y":0.63},{"x":1566896220000,"y":0.3},{"x":1566896280000,"y":0.14},{"x":1566896340000,"y":0.13},{"x":1566896400000,"y":0.64},{"x":1566896460000,"y":0.17},{"x":1566896520000,"y":0.39},{"x":1566896580000,"y":0.1},{"x":1566896640000,"y":0.15},{"x":1566896700000,"y":0.3},{"x":1566896760000,"y":0.17},{"x":1566896820000,"y":0.35},{"x":1566896880000,"y":0.1},{"x":1566896940000,"y":0.2},{"x":1566897000000,"y":0.3},{"x":1566897060000,"y":0.1},{"x":1566897120000,"y":0.3},{"x":1566897180000,"y":0.09},{"x":1566897240000,"y":0.14},{"x":1566897300000,"y":0.29},{"x":1566897360000,"y":0.17},{"x":1566897420000,"y":0.3},{"x":1566897480000,"y":0.1},{"x":1566897540000,"y":0.15},{"x":1566897600000,"y":0.22},{"x":1566897660000,"y":0.17},{"x":1566897720000,"y":0.12},{"x":1566897780000,"y":5.2},{"x":1566897840000,"y":0.16},{"x":1566897900000,"y":0.32},{"x":1566897960000,"y":0.15},{"x":1566898020000,"y":0.1},{"x":1566898080000,"y":0.36},{"x":1566898140000,"y":0.17},{"x":1566898200000,"y":0.27},{"x":1566898260000,"y":0.13},{"x":1566898320000,"y":0.12},{"x":1566898380000,"y":0.27},{"x":1566898440000,"y":0.12},{"x":1566898500000,"y":0.23},{"x":1566898560000,"y":0.14},{"x":1566898620000,"y":0.11},{"x":1566898680000,"y":0.23},{"x":1566898740000,"y":0.25},{"x":1566898800000,"y":0.3},{"x":1566898860000,"y":0.15},{"x":1566898920000,"y":0.15},{"x":1566898980000,"y":0.22},{"x":1566899040000,"y":0.15},{"x":1566899100000,"y":0.22},{"x":1566899160000,"y":0.12},{"x":1566899220000,"y":0.12},{"x":1566899280000,"y":0.31},{"x":1566899340000,"y":0.14},{"x":1566899400000,"y":0.29},{"x":1566899460000,"y":0.11},{"x":1566899520000,"y":0.13},{"x":1566899580000,"y":0.25},{"x":1566899640000,"y":0.14},{"x":1566899700000,"y":0.34},{"x":1566899760000,"y":0.1},{"x":1566899820000,"y":0.12},{"x":1566899880000,"y":0.33},{"x":1566899940000,"y":0.13},{"x":1566900000000,"y":0.33},{"x":1566900060000,"y":0.13},{"x":1566900120000,"y":0.13},{"x":1566900180000,"y":0.12},{"x":1566900240000,"y":0.26},{"x":1566900300000,"y":0.19},{"x":1566900360000,"y":0.2},{"x":1566900420000,"y":0.19},{"x":1566900480000,"y":0.14},{"x":1566900540000,"y":0.34},{"x":1566900600000,"y":0.28},{"x":1566900660000,"y":0.12},{"x":1566900720000,"y":0.11},{"x":1566900780000,"y":0.15},{"x":1566900840000,"y":0.33},{"x":1566900900000,"y":0.29},{"x":1566900960000,"y":0.21},{"x":1566901020000,"y":0.27},{"x":1566901080000,"y":0.34},{"x":1566901140000,"y":0.5},{"x":1566901200000,"y":0.44},{"x":1566901260000,"y":0.15},{"x":1566901320000,"y":0.22},{"x":1566901380000,"y":0.16},{"x":1566901440000,"y":0.34},{"x":1566901500000,"y":0.41},{"x":1566901560000,"y":0.12},{"x":1566901620000,"y":0.23},{"x":1566901680000,"y":0.22},{"x":1566901740000,"y":0.3},{"x":1566901800000,"y":0.26},{"x":1566901860000,"y":0.08},{"x":1566901920000,"y":0.14},{"x":1566901980000,"y":0.12},{"x":1566902040000,"y":0.3},{"x":1566902100000,"y":0.23},{"x":1566902160000,"y":0.12},{"x":1566902220000,"y":0.13},{"x":1566902280000,"y":0.14},{"x":1566902340000,"y":0.33},{"x":1566902400000,"y":0.33},{"x":1566902460000,"y":0.13},{"x":1566902520000,"y":0.16},{"x":1566902580000,"y":0.2},{"x":1566902640000,"y":0.15},{"x":1566902700000,"y":0.34},{"x":1566902760000,"y":0.1},{"x":1566902820000,"y":0.27},{"x":1566902880000,"y":0.18},{"x":1566902940000,"y":0.11},{"x":1566903000000,"y":0.37},{"x":1566903060000,"y":0.12},{"x":1566903120000,"y":0.14},{"x":1566903180000,"y":0.16},{"x":1566903240000,"y":0.17},{"x":1566903300000,"y":0.37},{"x":1566903360000,"y":0.12},{"x":1566903420000,"y":0.15},{"x":1566903480000,"y":1.53},{"x":1566903540000,"y":0.11},{"x":1566903600000,"y":0.63},{"x":1566903660000,"y":0.17},{"x":1566903720000,"y":0.12},{"x":1566903780000,"y":0.12},{"x":1566903840000,"y":0.17},{"x":1566903900000,"y":0.41},{"x":1566903960000,"y":0.12},{"x":1566904020000,"y":0.17},{"x":1566904080000,"y":0.17},{"x":1566904140000,"y":0.43},{"x":1566904200000,"y":0.32},{"x":1566904260000,"y":0.28},{"x":1566904320000,"y":0.14},{"x":1566904380000,"y":0.14},{"x":1566904440000,"y":0.17},{"x":1566904500000,"y":0.31},{"x":1566904560000,"y":0.29},{"x":1566904620000,"y":0.15},{"x":1566904680000,"y":0.15},{"x":1566904740000,"y":0.16},{"x":1566904800000,"y":0.27},{"x":1566904860000,"y":0.27},{"x":1566904920000,"y":0.08},{"x":1566904980000,"y":0.1},{"x":1566905040000,"y":0.15},{"x":1566905100000,"y":1.2},{"x":1566905160000,"y":0.22},{"x":1566905220000,"y":0.08},{"x":1566905280000,"y":0.09},{"x":1566905340000,"y":0.14},{"x":1566905400000,"y":0.26},{"x":1566905460000,"y":0.25},{"x":1566905520000,"y":0.14},{"x":1566905580000,"y":0.13},{"x":1566905640000,"y":0.13},{"x":1566905700000,"y":0.17},{"x":1566905760000,"y":0.32},{"x":1566905820000,"y":0.13},{"x":1566905880000,"y":0.12},{"x":1566905940000,"y":0.24},{"x":1566906000000,"y":0.27},{"x":1566906060000,"y":6.55},{"x":1566906120000,"y":0.17},{"x":1566906180000,"y":0.15},{"x":1566906240000,"y":0.13},{"x":1566906300000,"y":0.21},{"x":1566906360000,"y":0.31},{"x":1566906420000,"y":0.19},{"x":1566906480000,"y":0.16},{"x":1566906540000,"y":0.14},{"x":1566906600000,"y":0.34},{"x":1566906660000,"y":0.3},{"x":1566906720000,"y":0.17},{"x":1566906780000,"y":0.11},{"x":1566906840000,"y":0.13},{"x":1566906900000,"y":0.22},{"x":1566906960000,"y":0.2},{"x":1566907020000,"y":0.27},{"x":1566907080000,"y":0.15},{"x":1566907140000,"y":0.14},{"x":1566907200000,"y":0.47},{"x":1566907260000,"y":0.12},{"x":1566907320000,"y":0.45},{"x":1566907380000,"y":0.21},{"x":1566907440000,"y":0.17},{"x":1566907500000,"y":0.31},{"x":1566907560000,"y":0.12},{"x":1566907620000,"y":0.26},{"x":1566907680000,"y":0.12},{"x":1566907740000,"y":0.24},{"x":1566907800000,"y":0.35},{"x":1566907860000,"y":0.2},{"x":1566907920000,"y":0.35},{"x":1566907980000,"y":0.24},{"x":1566908040000,"y":0.25},{"x":1566908100000,"y":0.47},{"x":1566908160000,"y":0.15},{"x":1566908220000,"y":0.47},{"x":1566908280000,"y":0.28},{"x":1566908340000,"y":0.27},{"x":1566908400000,"y":0.46},{"x":1566908460000,"y":0.12},{"x":1566908520000,"y":0.41},{"x":1566908580000,"y":0.16},{"x":1566908640000,"y":0.19},{"x":1566908700000,"y":0.24},{"x":1566908760000,"y":0.16},{"x":1566908820000,"y":0.25},{"x":1566908880000,"y":0.14},{"x":1566908940000,"y":0.11},{"x":1566909000000,"y":0.24},{"x":1566909060000,"y":0.15},{"x":1566909120000,"y":0.32},{"x":1566909180000,"y":0.1},{"x":1566909240000,"y":0.11},{"x":1566909300000,"y":0.36},{"x":1566909360000,"y":0.13},{"x":1566909420000,"y":0.12},{"x":1566909480000,"y":0.33},{"x":1566909540000,"y":0.3},{"x":1566909600000,"y":0.18},{"x":1566909660000,"y":0.1},{"x":1566909720000,"y":0.15},{"x":1566909780000,"y":0.26},{"x":1566909840000,"y":0.16},{"x":1566909900000,"y":0.29},{"x":1566909960000,"y":0.18},{"x":1566910020000,"y":0.19},{"x":1566910080000,"y":0.28},{"x":1566910140000,"y":0.2},{"x":1566910200000,"y":0.38},{"x":1566910260000,"y":0.12},{"x":1566910320000,"y":0.13},{"x":1566910380000,"y":0.26},{"x":1566910440000,"y":0.1},{"x":1566910500000,"y":0.32},{"x":1566910560000,"y":0.19},{"x":1566910620000,"y":0.15},{"x":1566910680000,"y":0.25},{"x":1566910740000,"y":0.15},{"x":1566910800000,"y":0.32},{"x":1566910860000,"y":0.18},{"x":1566910920000,"y":0.12},{"x":1566910980000,"y":0.31},{"x":1566911040000,"y":0.17},{"x":1566911100000,"y":0.28},{"x":1566911160000,"y":0.16},{"x":1566911220000,"y":0.17},{"x":1566911280000,"y":5.26},{"x":1566911340000,"y":0.42},{"x":1566911400000,"y":0.3},{"x":1566911460000,"y":0.17},{"x":1566911520000,"y":0.15},{"x":1566911580000,"y":0.3},{"x":1566911640000,"y":0.15},{"x":1566911700000,"y":0.3},{"x":1566911760000,"y":0.14},{"x":1566911820000,"y":0.17},{"x":1566911880000,"y":0.34},{"x":1566911940000,"y":0.12},{"x":1566912000000,"y":0.36},{"x":1566912060000,"y":0.16},{"x":1566912120000,"y":0.13},{"x":1566912180000,"y":0.12},{"x":1566912240000,"y":0.29},{"x":1566912300000,"y":0.31},{"x":1566912360000,"y":0.17},{"x":1566912420000,"y":0.1},{"x":1566912480000,"y":0.12},{"x":1566912540000,"y":0.31},{"x":1566912600000,"y":0.23},{"x":1566912660000,"y":0.13},{"x":1566912720000,"y":0.14},{"x":1566912780000,"y":0.16},{"x":1566912840000,"y":0.33},{"x":1566912900000,"y":0.37},{"x":1566912960000,"y":0.15},{"x":1566913020000,"y":0.19},{"x":1566913080000,"y":0.15},{"x":1566913140000,"y":0.45},{"x":1566913200000,"y":0.27},{"x":1566913260000,"y":0.17},{"x":1566913320000,"y":0.2},{"x":1566913380000,"y":0.2},{"x":1566913440000,"y":0.31},{"x":1566913500000,"y":0.24},{"x":1566913560000,"y":0.11},{"x":1566913620000,"y":0.14},{"x":1566913680000,"y":0.18},{"x":1566913740000,"y":0.28},{"x":1566913800000,"y":0.28},{"x":1566913860000,"y":0.17},{"x":1566913920000,"y":0.14},{"x":1566913980000,"y":0.17},{"x":1566914040000,"y":0.39},{"x":1566914100000,"y":0.3},{"x":1566914160000,"y":0.17},{"x":1566914220000,"y":0.25},{"x":1566914280000,"y":0.14},{"x":1566914340000,"y":0.37},{"x":1566914400000,"y":0.59},{"x":1566914460000,"y":0.25},{"x":1566914520000,"y":0.13},{"x":1566914580000,"y":0.15},{"x":1566914640000,"y":0.21},{"x":1566914700000,"y":0.81},{"x":1566914760000,"y":0.14},{"x":1566914820000,"y":0.15},{"x":1566914880000,"y":0.2},{"x":1566914940000,"y":0.29},{"x":1566915000000,"y":0.45},{"x":1566915060000,"y":0.19},{"x":1566915120000,"y":0.14},{"x":1566915180000,"y":0.27},{"x":1566915240000,"y":0.25},{"x":1566915300000,"y":0.47},{"x":1566915360000,"y":0.18},{"x":1566915420000,"y":0.24},{"x":1566915480000,"y":0.17},{"x":1566915540000,"y":0.16},{"x":1566915600000,"y":0.49},{"x":1566915660000,"y":0.17},{"x":1566915720000,"y":0.12},{"x":1566915780000,"y":0.18},{"x":1566915840000,"y":0.17},{"x":1566915900000,"y":0.48},{"x":1566915960000,"y":0.12},{"x":1566916020000,"y":0.13},{"x":1566916080000,"y":0.15},{"x":1566916140000,"y":0.15},{"x":1566916200000,"y":0.52},{"x":1566916260000,"y":0.15},{"x":1566916320000,"y":0.2},{"x":1566916380000,"y":0.15},{"x":1566916440000,"y":0.19},{"x":1566916500000,"y":0.42},{"x":1566916560000,"y":0.13},{"x":1566916620000,"y":0.09},{"x":1566916680000,"y":0.15},{"x":1566916740000,"y":0.3},{"x":1566916800000,"y":0.58},{"x":1566916860000,"y":0.14},{"x":1566916920000,"y":0.22},{"x":1566916980000,"y":0.18},{"x":1566917040000,"y":0.21},{"x":1566917100000,"y":0.31},{"x":1566917160000,"y":0.29},{"x":1566917220000,"y":0.17},{"x":1566917280000,"y":0.15},{"x":1566917340000,"y":0.16},{"x":1566917400000,"y":0.21},{"x":1566917460000,"y":0.35},{"x":1566917520000,"y":0.21},{"x":1566917580000,"y":0.15},{"x":1566917640000,"y":0.14},{"x":1566917700000,"y":0.43},{"x":1566917760000,"y":0.37},{"x":1566917820000,"y":0.21},{"x":1566917880000,"y":0.23},{"x":1566917940000,"y":1.04},{"x":1566918000000,"y":0.45},{"x":1566918060000,"y":0.5},{"x":1566918120000,"y":0.29},{"x":1566918180000,"y":0.22},{"x":1566918240000,"y":0.15},{"x":1566918300000,"y":0.26},{"x":1566918360000,"y":0.35},{"x":1566918420000,"y":0.19},{"x":1566918480000,"y":0.14},{"x":1566918540000,"y":0.34},{"x":1566918600000,"y":0.33},{"x":1566918660000,"y":0.33},{"x":1566918720000,"y":0.17},{"x":1566918780000,"y":0.16},{"x":1566918840000,"y":0.17},{"x":1566918900000,"y":0.36},{"x":1566918960000,"y":0.3},{"x":1566919020000,"y":0.21},{"x":1566919080000,"y":0.21},{"x":1566919140000,"y":0.22},{"x":1566919200000,"y":0.38},{"x":1566919260000,"y":0.41},{"x":1566919320000,"y":0.21},{"x":1566919380000,"y":0.21},{"x":1566919440000,"y":0.19},{"x":1566919500000,"y":0.31},{"x":1566919560000,"y":1.75},{"x":1566919620000,"y":2.54},{"x":1566919680000,"y":0.25},{"x":1566919740000,"y":0.24},{"x":1566919800000,"y":0.45},{"x":1566919860000,"y":0.2},{"x":1566919920000,"y":0.36},{"x":1566919980000,"y":0.17},{"x":1566920040000,"y":0.17},{"x":1566920100000,"y":0.36},{"x":1566920160000,"y":0.27},{"x":1566920220000,"y":0.32},{"x":1566920280000,"y":0.17},{"x":1566920340000,"y":0.38},{"x":1566920400000,"y":0.33},{"x":1566920460000,"y":0.23},{"x":1566920520000,"y":0.4},{"x":1566920580000,"y":0.22},{"x":1566920640000,"y":0.24},{"x":1566920700000,"y":0.41},{"x":1566920760000,"y":0.25},{"x":1566920820000,"y":0.44},{"x":1566920880000,"y":0.2},{"x":1566920940000,"y":0.22},{"x":1566921000000,"y":0.3},{"x":1566921060000,"y":0.21},{"x":1566921120000,"y":0.42},{"x":1566921180000,"y":0.21},{"x":1566921240000,"y":0.25},{"x":1566921300000,"y":0.39},{"x":1566921360000,"y":0.25},{"x":1566921420000,"y":0.35},{"x":1566921480000,"y":0.63},{"x":1566921540000,"y":0.25},{"x":1566921600000,"y":0.52},{"x":1566921660000,"y":0.26},{"x":1566921720000,"y":0.37},{"x":1566921780000,"y":0.23},{"x":1566921840000,"y":0.22},{"x":1566921900000,"y":0.49},{"x":1566921960000,"y":0.23},{"x":1566922020000,"y":0.32},{"x":1566922080000,"y":0.22},{"x":1566922140000,"y":0.53},{"x":1566922200000,"y":0.36},{"x":1566922260000,"y":0.18},{"x":1566922320000,"y":0.31},{"x":1566922380000,"y":0.23},{"x":1566922440000,"y":0.23},{"x":1566922500000,"y":0.29},{"x":1566922560000,"y":0.2},{"x":1566922620000,"y":0.29},{"x":1566922680000,"y":0.37},{"x":1566922740000,"y":0.23},{"x":1566922800000,"y":0.28},{"x":1566922860000,"y":0.2},{"x":1566922920000,"y":0.22},{"x":1566922980000,"y":0.35},{"x":1566923040000,"y":0.17},{"x":1566923100000,"y":0.34},{"x":1566923160000,"y":0.25},{"x":1566923220000,"y":0.2},{"x":1566923280000,"y":0.32},{"x":1566923340000,"y":0.18},{"x":1566923400000,"y":0.27},{"x":1566923460000,"y":0.21},{"x":1566923520000,"y":0.26},{"x":1566923580000,"y":0.34},{"x":1566923640000,"y":0.17},{"x":1566923700000,"y":0.26},{"x":1566923760000,"y":0.21},{"x":1566923820000,"y":0.18},{"x":1566923880000,"y":0.36},{"x":1566923940000,"y":0.36},{"x":1566924000000,"y":0.47},{"x":1566924060000,"y":0.22},{"x":1566924120000,"y":0.22},{"x":1566924180000,"y":0.42},{"x":1566924240000,"y":5.87},{"x":1566924300000,"y":6.72},{"x":1566924360000,"y":0.21},{"x":1566924420000,"y":10.36},{"x":1566924480000,"y":0.44},{"x":1566924540000,"y":0.24},{"x":1566924600000,"y":0.36},{"x":1566924660000,"y":0.37},{"x":1566924720000,"y":0.23},{"x":1566924780000,"y":0.22},{"x":1566924840000,"y":0.43},{"x":1566924900000,"y":0.3},{"x":1566924960000,"y":0.18},{"x":1566925020000,"y":0.21},{"x":1566925080000,"y":0.19},{"x":1566925140000,"y":0.37},{"x":1566925200000,"y":1.13},{"x":1566925260000,"y":0.22},{"x":1566925320000,"y":0.24},{"x":1566925380000,"y":0.24},{"x":1566925440000,"y":0.39},{"x":1566925500000,"y":0.33},{"x":1566925560000,"y":0.22},{"x":1566925620000,"y":0.2},{"x":1566925680000,"y":0.2},{"x":1566925740000,"y":0.46},{"x":1566925800000,"y":0.38},{"x":1566925860000,"y":0.21},{"x":1566925920000,"y":0.23},{"x":1566925980000,"y":0.24},{"x":1566926040000,"y":0.34},{"x":1566926100000,"y":0.39},{"x":1566926160000,"y":0.2},{"x":1566926220000,"y":0.19},{"x":1566926280000,"y":0.18},{"x":1566926340000,"y":0.31},{"x":1566926400000,"y":0.37},{"x":1566926460000,"y":0.22},{"x":1566926520000,"y":0.2},{"x":1566926580000,"y":0.17},{"x":1566926640000,"y":0.32},{"x":1566926700000,"y":0.35},{"x":1566926760000,"y":0.25},{"x":1566926820000,"y":0.18},{"x":1566926880000,"y":0.27},{"x":1566926940000,"y":0.18},{"x":1566927000000,"y":0.5},{"x":1566927060000,"y":0.23},{"x":1566927120000,"y":0.2},{"x":1566927180000,"y":0.2},{"x":1566927240000,"y":0.22},{"x":1566927300000,"y":0.41},{"x":1566927360000,"y":0.24},{"x":1566927420000,"y":0.23},{"x":1566927480000,"y":0.23},{"x":1566927540000,"y":0.49},{"x":1566927600000,"y":0.53},{"x":1566927660000,"y":0.24},{"x":1566927720000,"y":0.22},{"x":1566927780000,"y":0.19},{"x":1566927840000,"y":0.2},{"x":1566927900000,"y":0.41},{"x":1566927960000,"y":0.22},{"x":1566928020000,"y":0.23},{"x":1566928080000,"y":0.3},{"x":1566928140000,"y":0.28},{"x":1566928200000,"y":0.46},{"x":1566928260000,"y":0.22},{"x":1566928320000,"y":0.2},{"x":1566928380000,"y":0.19},{"x":1566928440000,"y":0.27},{"x":1566928500000,"y":0.49},{"x":1566928560000,"y":0.18},{"x":1566928620000,"y":0.18},{"x":1566928680000,"y":0.18},{"x":1566928740000,"y":0.14},{"x":1566928800000,"y":0.55},{"x":1566928860000,"y":0.1},{"x":1566928920000,"y":0.17},{"x":1566928980000,"y":0.15},{"x":1566929040000,"y":0.15},{"x":1566929100000,"y":0.34},{"x":1566929160000,"y":0.16},{"x":1566929220000,"y":0.14},{"x":1566929280000,"y":0.2},{"x":1566929340000,"y":0.48},{"x":1566929400000,"y":0.21},{"x":1566929460000,"y":0.25},{"x":1566929520000,"y":0.14},{"x":1566929580000,"y":0.22},{"x":1566929640000,"y":0.15},{"x":1566929700000,"y":0.27},{"x":1566929760000,"y":0.33},{"x":1566929820000,"y":0.14},{"x":1566929880000,"y":0.16},{"x":1566929940000,"y":0.13},{"x":1566930000000,"y":0.25},{"x":1566930060000,"y":0.3},{"x":1566930120000,"y":0.15},{"x":1566930180000,"y":0.17},{"x":1566930240000,"y":0.12},{"x":1566930300000,"y":0.27},{"x":1566930360000,"y":0.29},{"x":1566930420000,"y":0.23},{"x":1566930480000,"y":0.14},{"x":1566930540000,"y":0.13},{"x":1566930600000,"y":0.27},{"x":1566930660000,"y":0.3},{"x":1566930720000,"y":0.17},{"x":1566930780000,"y":0.12},{"x":1566930840000,"y":0.12},{"x":1566930900000,"y":0.31},{"x":1566930960000,"y":0.31},{"x":1566931020000,"y":0.15},{"x":1566931080000,"y":0.15},{"x":1566931140000,"y":0.33},{"x":1566931200000,"y":0.31},{"x":1566931260000,"y":0.27},{"x":1566931320000,"y":0.12},{"x":1566931380000,"y":0.14},{"x":1566931440000,"y":0.17},{"x":1566931500000,"y":0.22},{"x":1566931560000,"y":0.26},{"x":1566931620000,"y":0.19},{"x":1566931680000,"y":0.17},{"x":1566931740000,"y":0.12},{"x":1566931800000,"y":0.2},{"x":1566931860000,"y":0.28},{"x":1566931920000,"y":0.22},{"x":1566931980000,"y":0.17},{"x":1566932040000,"y":0.21},{"x":1566932100000,"y":0.26},{"x":1566932160000,"y":0.16},{"x":1566932220000,"y":16.96},{"x":1566932280000,"y":0.27},{"x":1566932340000,"y":0.13},{"x":1566932400000,"y":0.43},{"x":1566932460000,"y":0.21},{"x":1566932520000,"y":0.28},{"x":1566932580000,"y":0.13},{"x":1566932640000,"y":0.17},{"x":1566932700000,"y":0.23},{"x":1566932760000,"y":0.15},{"x":1566932820000,"y":0.3},{"x":1566932880000,"y":0.17},{"x":1566932940000,"y":0.52},{"x":1566933000000,"y":17.57},{"x":1566933060000,"y":19.9},{"x":1566933120000,"y":34.14},{"x":1566933180000,"y":0.13},{"x":1566933240000,"y":0.3},{"x":1566933300000,"y":0.32},{"x":1566933360000,"y":0.19},{"x":1566933420000,"y":15.04},{"x":1566933480000,"y":2.57},{"x":1566933540000,"y":17.38},{"x":1566933600000,"y":17.89},{"x":1566933660000,"y":0.72},{"x":1566933720000,"y":0.74},{"x":1566933780000,"y":0.15},{"x":1566933840000,"y":0.16},{"x":1566933900000,"y":0.24},{"x":1566933960000,"y":0.18},{"x":1566934020000,"y":0.31},{"x":1566934080000,"y":0.16},{"x":1566934140000,"y":0.15},{"x":1566934200000,"y":0.39},{"x":1566934260000,"y":0.23},{"x":1566934320000,"y":17.33},{"x":1566934380000,"y":0.88},{"x":1566934440000,"y":17.28},{"x":1566934500000,"y":0.54},{"x":1566934560000,"y":0.16},{"x":1566934620000,"y":0.17},{"x":1566934680000,"y":0.34},{"x":1566934740000,"y":0.35},{"x":1566934800000,"y":0.25},{"x":1566934860000,"y":0.13},{"x":1566934920000,"y":0.12},{"x":1566934980000,"y":0.29},{"x":1566935040000,"y":0.15},{"x":1566935100000,"y":17.42},{"x":1566935160000,"y":0.37},{"x":1566935220000,"y":0.18},{"x":1566935280000,"y":0.29},{"x":1566935340000,"y":0.13},{"x":1566935400000,"y":0.22},{"x":1566935460000,"y":0.11},{"x":1566935520000,"y":0.13},{"x":1566935580000,"y":0.29},{"x":1566935640000,"y":0.17},{"x":1566935700000,"y":0.24},{"x":1566935760000,"y":0.13},{"x":1566935820000,"y":0.18},{"x":1566935880000,"y":0.29},{"x":1566935940000,"y":0.24},{"x":1566936000000,"y":0.37},{"x":1566936060000,"y":0.26},{"x":1566936120000,"y":0.15},{"x":1566936180000,"y":0.27},{"x":1566936240000,"y":0.26},{"x":1566936300000,"y":0.28},{"x":1566936360000,"y":0.2},{"x":1566936420000,"y":0.22},{"x":1566936480000,"y":0.15},{"x":1566936540000,"y":0.66},{"x":1566936600000,"y":0.26},{"x":1566936660000,"y":0.12},{"x":1566936720000,"y":0.13},{"x":1566936780000,"y":0.18},{"x":1566936840000,"y":0.42},{"x":1566936900000,"y":0.34},{"x":1566936960000,"y":0.24},{"x":1566937020000,"y":0.31},{"x":1566937080000,"y":0.16},{"x":1566937140000,"y":0.37},{"x":1566937200000,"y":0.2},{"x":1566937260000,"y":0.15},{"x":1566937320000,"y":0.16},{"x":1566937380000,"y":0.21},{"x":1566937440000,"y":0.45},{"x":1566937500000,"y":0.25},{"x":1566937560000,"y":0.14},{"x":1566937620000,"y":0.12},{"x":1566937680000,"y":0.14},{"x":1566937740000,"y":0.23},{"x":1566937800000,"y":0.26},{"x":1566937860000,"y":0.1},{"x":1566937920000,"y":0.14},{"x":1566937980000,"y":0.15},{"x":1566938040000,"y":0.33},{"x":1566938100000,"y":0.26},{"x":1566938160000,"y":0.14},{"x":1566938220000,"y":0.12},{"x":1566938280000,"y":0.1},{"x":1566938340000,"y":0.4},{"x":1566938400000,"y":0.35},{"x":1566938460000,"y":0.15},{"x":1566938520000,"y":0.13},{"x":1566938580000,"y":0.13},{"x":1566938640000,"y":0.25},{"x":1566938700000,"y":0.27},{"x":1566938760000,"y":0.12},{"x":1566938820000,"y":0.15},{"x":1566938880000,"y":0.12},{"x":1566938940000,"y":0.24},{"x":1566939000000,"y":0.19},{"x":1566939060000,"y":0.11},{"x":1566939120000,"y":0.12},{"x":1566939180000,"y":0.13},{"x":1566939240000,"y":0.09},{"x":1566939300000,"y":0.36},{"x":1566939360000,"y":0.12},{"x":1566939420000,"y":0.09},{"x":1566939480000,"y":0.07},{"x":1566939540000,"y":0.08},{"x":1566939600000,"y":0.56},{"x":1566939660000,"y":0.15},{"x":1566939720000,"y":0.15},{"x":1566939780000,"y":0.09},{"x":1566939840000,"y":0.1},{"x":1566939900000,"y":0.34},{"x":1566939960000,"y":0.11},{"x":1566940020000,"y":0.08},{"x":1566940080000,"y":0.08},{"x":1566940140000,"y":0.28},{"x":1566940200000,"y":0.38},{"x":1566940260000,"y":0.11},{"x":1566940320000,"y":0.08},{"x":1566940380000,"y":0.08},{"x":1566940440000,"y":0.14},{"x":1566940500000,"y":0.44},{"x":1566940560000,"y":0.13},{"x":1566940620000,"y":0.12},{"x":1566940680000,"y":0.12},{"x":1566940740000,"y":0.12},{"x":1566940800000,"y":0.46},{"x":1566940860000,"y":0.12},{"x":1566940920000,"y":0.12},{"x":1566940980000,"y":0.12},{"x":1566941040000,"y":0.12},{"x":1566941100000,"y":0.33},{"x":1566941160000,"y":0.13},{"x":1566941220000,"y":0.08},{"x":1566941280000,"y":0.09},{"x":1566941340000,"y":0.16},{"x":1566941400000,"y":2.07},{"x":1566941460000,"y":2.07},{"x":1566941520000,"y":0.1},{"x":1566941580000,"y":0.12},{"x":1566941640000,"y":0.11},{"x":1566941700000,"y":0.2},{"x":1566941760000,"y":0.27},{"x":1566941820000,"y":0.1},{"x":1566941880000,"y":0.16},{"x":1566941940000,"y":0.26},{"x":1566942000000,"y":0.21},{"x":1566942060000,"y":0.22},{"x":1566942120000,"y":0.12},{"x":1566942180000,"y":2.15},{"x":1566942240000,"y":15.56},{"x":1566942300000,"y":0.42},{"x":1566942360000,"y":0.27},{"x":1566942420000,"y":0.13},{"x":1566942480000,"y":0.12},{"x":1566942540000,"y":0.08},{"x":1566942600000,"y":0.23},{"x":1566942660000,"y":0.29},{"x":1566942720000,"y":0.11},{"x":1566942780000,"y":0.1},{"x":1566942840000,"y":0.09},{"x":1566942900000,"y":0.31},{"x":1566942960000,"y":0.27},{"x":1566943020000,"y":0.11},{"x":1566943080000,"y":0.12},{"x":1566943140000,"y":16.31},{"x":1566943200000,"y":0.54},{"x":1566943260000,"y":17.1},{"x":1566943320000,"y":16.69},{"x":1566943380000,"y":12.4},{"x":1566943440000,"y":4.94},{"x":1566943500000,"y":17.1},{"x":1566943560000,"y":16.4},{"x":1566943620000,"y":0.24},{"x":1566943680000,"y":0.11},{"x":1566943740000,"y":16.43},{"x":1566943800000,"y":0.38},{"x":1566943860000,"y":0.25},{"x":1566943920000,"y":0.11},{"x":1566943980000,"y":0.17},{"x":1566944040000,"y":0.12},{"x":1566944100000,"y":0.21},{"x":1566944160000,"y":0.12},{"x":1566944220000,"y":0.29},{"x":1566944280000,"y":16.83},{"x":1566944340000,"y":16.76},{"x":1566944400000,"y":0.43},{"x":1566944460000,"y":0.13},{"x":1566944520000,"y":0.27},{"x":1566944580000,"y":0.16},{"x":1566944640000,"y":0.1},{"x":1566944700000,"y":0.18},{"x":1566944760000,"y":0.12},{"x":1566944820000,"y":0.25},{"x":1566944880000,"y":0.16},{"x":1566944940000,"y":0.13},{"x":1566945000000,"y":0.25},{"x":1566945060000,"y":0.1},{"x":1566945120000,"y":0.24},{"x":1566945180000,"y":0.15},{"x":1566945240000,"y":0.12},{"x":1566945300000,"y":0.22},{"x":1566945360000,"y":0.08},{"x":1566945420000,"y":0.22},{"x":1566945480000,"y":0.12},{"x":1566945540000,"y":0.22},{"x":1566945600000,"y":0.23},{"x":1566945660000,"y":0.09},{"x":1566945720000,"y":0.22},{"x":1566945780000,"y":0.07},{"x":1566945840000,"y":0.08},{"x":1566945900000,"y":0.29},{"x":1566945960000,"y":0.09},{"x":1566946020000,"y":0.28},{"x":1566946080000,"y":0.12},{"x":1566946140000,"y":0.11},{"x":1566946200000,"y":0.31},{"x":1566946260000,"y":0.17},{"x":1566946320000,"y":0.29},{"x":1566946380000,"y":0.14},{"x":1566946440000,"y":0.12},{"x":1566946500000,"y":0.18},{"x":1566946560000,"y":0.07},{"x":1566946620000,"y":0.09},{"x":1566946680000,"y":0.3},{"x":1566946740000,"y":0.11},{"x":1566946800000,"y":0.45},{"x":1566946860000,"y":0.13},{"x":1566946920000,"y":0.12},{"x":1566946980000,"y":0.22},{"x":1566947040000,"y":0.07},{"x":1566947100000,"y":0.23},{"x":1566947160000,"y":0.16},{"x":1566947220000,"y":0.31},{"x":1566947280000,"y":0.51},{"x":1566947340000,"y":0.97},{"x":1566947400000,"y":0.21},{"x":1566947460000,"y":0.11},{"x":1566947520000,"y":0.12},{"x":1566947580000,"y":0.64},{"x":1566947640000,"y":0.12},{"x":1566947700000,"y":0.22},{"x":1566947760000,"y":0.1},{"x":1566947820000,"y":0.14},{"x":1566947880000,"y":0.2},{"x":1566947940000,"y":0.13},{"x":1566948000000,"y":0.21},{"x":1566948060000,"y":16.37},{"x":1566948120000,"y":0.23},{"x":1566948180000,"y":0.2},{"x":1566948240000,"y":0.11},{"x":1566948300000,"y":0.21},{"x":1566948360000,"y":0.1},{"x":1566948420000,"y":0.07},{"x":1566948480000,"y":0.23},{"x":1566948540000,"y":0.09},{"x":1566948600000,"y":0.29},{"x":1566948660000,"y":0.08},{"x":1566948720000,"y":0.1},{"x":1566948780000,"y":0.06},{"x":1566948840000,"y":0.23},{"x":1566948900000,"y":0.16},{"x":1566948960000,"y":0.09},{"x":1566949020000,"y":0.1},{"x":1566949080000,"y":0.09},{"x":1566949140000,"y":0.38},{"x":1566949200000,"y":0.24},{"x":1566949260000,"y":0.07},{"x":1566949320000,"y":0.09},{"x":1566949380000,"y":0.06},{"x":1566949440000,"y":0.19},{"x":1566949500000,"y":0.13},{"x":1566949560000,"y":0.08},{"x":1566949620000,"y":0.06},{"x":1566949680000,"y":0.12},{"x":1566949740000,"y":0.2},{"x":1566949800000,"y":0.18},{"x":1566949860000,"y":0.06},{"x":1566949920000,"y":0.1},{"x":1566949980000,"y":0.11},{"x":1566950040000,"y":0.27},{"x":1566950100000,"y":0.3},{"x":1566950160000,"y":0.1},{"x":1566950220000,"y":0.07},{"x":1566950280000,"y":0.06},{"x":1566950340000,"y":0.25},{"x":1566950400000,"y":0.42},{"x":1566950460000,"y":0.1},{"x":1566950520000,"y":0.11},{"x":1566950580000,"y":0.19},{"x":1566950640000,"y":0.27},{"x":1566950700000,"y":0.19},{"x":1566950760000,"y":0.19},{"x":1566950820000,"y":0.15},{"x":1566950880000,"y":0.09},{"x":1566950940000,"y":0.31},{"x":1566951000000,"y":0.24},{"x":1566951060000,"y":0.11},{"x":1566951120000,"y":0.12},{"x":1566951180000,"y":0.21},{"x":1566951240000,"y":0.15},{"x":1566951300000,"y":0.47},{"x":1566951360000,"y":0.19},{"x":1566951420000,"y":0.13},{"x":1566951480000,"y":0.09},{"x":1566951540000,"y":0.17},{"x":1566951600000,"y":0.38},{"x":1566951660000,"y":0.15},{"x":1566951720000,"y":0.22},{"x":1566951780000,"y":0.17},{"x":1566951840000,"y":0.1},{"x":1566951900000,"y":0.38},{"x":1566951960000,"y":0.22},{"x":1566952020000,"y":0.2},{"x":1566952080000,"y":0.22},{"x":1566952140000,"y":0.15},{"x":1566952200000,"y":0.39},{"x":1566952260000,"y":0.13},{"x":1566952320000,"y":0.2},{"x":1566952380000,"y":0.2},{"x":1566952440000,"y":0.26},{"x":1566952500000,"y":0.47},{"x":1566952560000,"y":0.18},{"x":1566952620000,"y":0.16},{"x":1566952680000,"y":0.16},{"x":1566952740000,"y":0.33},{"x":1566952800000,"y":0.51},{"x":1566952860000,"y":0.2},{"x":1566952920000,"y":0.18},{"x":1566952980000,"y":0.19},{"x":1566953040000,"y":0.17},{"x":1566953100000,"y":0.45},{"x":1566953160000,"y":0.19},{"x":1566953220000,"y":0.17},{"x":1566953280000,"y":0.22},{"x":1566953340000,"y":0.2},{"x":1566953400000,"y":0.51},{"x":1566953460000,"y":0.17},{"x":1566953520000,"y":0.17},{"x":1566953580000,"y":0.22},{"x":1566953640000,"y":0.2},{"x":1566953700000,"y":0.27},{"x":1566953760000,"y":0.34},{"x":1566953820000,"y":0.21},{"x":1566953880000,"y":0.2},{"x":1566953940000,"y":0.21},{"x":1566954000000,"y":0.52},{"x":1566954060000,"y":0.32},{"x":1566954120000,"y":0.17},{"x":1566954180000,"y":0.19},{"x":1566954240000,"y":0.19},{"x":1566954300000,"y":0.35},{"x":1566954360000,"y":0.33},{"x":1566954420000,"y":0.17},{"x":1566954480000,"y":0.2},{"x":1566954540000,"y":0.33},{"x":1566954600000,"y":0.32},{"x":1566954660000,"y":0.31},{"x":1566954720000,"y":0.18},{"x":1566954780000,"y":0.17},{"x":1566954840000,"y":0.17},{"x":1566954900000,"y":0.26},{"x":1566954960000,"y":0.36},{"x":1566955020000,"y":0.2},{"x":1566955080000,"y":0.17},{"x":1566955140000,"y":0.17},{"x":1566955200000,"y":0.29},{"x":1566955260000,"y":0.38},{"x":1566955320000,"y":0.22},{"x":1566955380000,"y":0.18},{"x":1566955440000,"y":0.18},{"x":1566955500000,"y":0.3},{"x":1566955560000,"y":0.34},{"x":1566955620000,"y":0.17},{"x":1566955680000,"y":0.17},{"x":1566955740000,"y":0.16},{"x":1566955800000,"y":0.29},{"x":1566955860000,"y":0.3},{"x":1566955920000,"y":0.16},{"x":1566955980000,"y":0.15},{"x":1566956040000,"y":0.17},{"x":1566956100000,"y":0.28},{"x":1566956160000,"y":0.2},{"x":1566956220000,"y":0.35},{"x":1566956280000,"y":0.17},{"x":1566956340000,"y":0.3},{"x":1566956400000,"y":0.24},{"x":1566956460000,"y":0.17},{"x":1566956520000,"y":0.28},{"x":1566956580000,"y":0.17},{"x":1566956640000,"y":0.18},{"x":1566956700000,"y":0.22},{"x":1566956760000,"y":0.22},{"x":1566956820000,"y":0.31},{"x":1566956880000,"y":0.14},{"x":1566956940000,"y":0.21},{"x":1566957000000,"y":0.29},{"x":1566957060000,"y":0.16},{"x":1566957120000,"y":0.32},{"x":1566957180000,"y":0.17},{"x":1566957240000,"y":0.22},{"x":1566957300000,"y":0.31},{"x":1566957360000,"y":0.16},{"x":1566957420000,"y":0.34},{"x":1566957480000,"y":0.2},{"x":1566957540000,"y":0.19},{"x":1566957600000,"y":0.47},{"x":1566957660000,"y":0.27},{"x":1566957720000,"y":0.92},{"x":1566957780000,"y":0.22},{"x":1566957840000,"y":0.19},{"x":1566957900000,"y":0.41},{"x":1566957960000,"y":0.19},{"x":1566958020000,"y":0.32},{"x":1566958080000,"y":0.19},{"x":1566958140000,"y":0.32},{"x":1566958200000,"y":0.38},{"x":1566958260000,"y":0.18},{"x":1566958320000,"y":0.17},{"x":1566958380000,"y":0.34},{"x":1566958440000,"y":0.23},{"x":1566958500000,"y":0.26},{"x":1566958560000,"y":0.22},{"x":1566958620000,"y":0.17},{"x":1566958680000,"y":0.3},{"x":1566958740000,"y":0.17},{"x":1566958800000,"y":0.24},{"x":1566958860000,"y":0.17},{"x":1566958920000,"y":0.17},{"x":1566958980000,"y":0.38},{"x":1566959040000,"y":0.19},{"x":1566959100000,"y":0.29},{"x":1566959160000,"y":0.18},{"x":1566959220000,"y":0.17},{"x":1566959280000,"y":0.37},{"x":1566959340000,"y":0.18},{"x":1566959400000,"y":0.31},{"x":1566959460000,"y":0.22},{"x":1566959520000,"y":0.19},{"x":1566959580000,"y":0.34},{"x":1566959640000,"y":0.18},{"x":1566959700000,"y":0.27},{"x":1566959760000,"y":0.18},{"x":1566959820000,"y":0.17},{"x":1566959880000,"y":0.32},{"x":1566959940000,"y":0.38},{"x":1566960000000,"y":0.28},{"x":1566960060000,"y":0.18},{"x":1566960120000,"y":0.2},{"x":1566960180000,"y":0.39},{"x":1566960240000,"y":0.2},{"x":1566960300000,"y":0.27},{"x":1566960360000,"y":0.19},{"x":1566960420000,"y":0.17},{"x":1566960480000,"y":0.35},{"x":1566960540000,"y":0.2},{"x":1566960600000,"y":0.3},{"x":1566960660000,"y":0.19},{"x":1566960720000,"y":0.18},{"x":1566960780000,"y":0.36},{"x":1566960840000,"y":0.17},{"x":1566960900000,"y":0.31},{"x":1566960960000,"y":0.17},{"x":1566961020000,"y":0.19},{"x":1566961080000,"y":0.16},{"x":1566961140000,"y":0.35},{"x":1566961200000,"y":0.43},{"x":1566961260000,"y":0.22},{"x":1566961320000,"y":0.38},{"x":1566961380000,"y":0.2},{"x":1566961440000,"y":0.37},{"x":1566961500000,"y":0.24},{"x":1566961560000,"y":0.2},{"x":1566961620000,"y":0.2},{"x":1566961680000,"y":0.18},{"x":1566961740000,"y":0.52},{"x":1566961800000,"y":0.28},{"x":1566961860000,"y":0.14},{"x":1566961920000,"y":0.15},{"x":1566961980000,"y":0.13},{"x":1566962040000,"y":0.24},{"x":1566962100000,"y":0.18},{"x":1566962160000,"y":0.09},{"x":1566962220000,"y":0.1},{"x":1566962280000,"y":0.11},{"x":1566962340000,"y":0.23},{"x":1566962400000,"y":0.25},{"x":1566962460000,"y":0.11},{"x":1566962520000,"y":0.1},{"x":1566962580000,"y":0.15},{"x":1566962640000,"y":0.27},{"x":1566962700000,"y":0.19},{"x":1566962760000,"y":0.14},{"x":1566962820000,"y":0.07},{"x":1566962880000,"y":0.07},{"x":1566962940000,"y":0.23},{"x":1566963000000,"y":0.28},{"x":1566963060000,"y":0.09},{"x":1566963120000,"y":0.17},{"x":1566963180000,"y":0.12},{"x":1566963240000,"y":3.15},{"x":1566963300000,"y":2.14},{"x":1566963360000,"y":0.08},{"x":1566963420000,"y":0.1},{"x":1566963480000,"y":0.12},{"x":1566963540000,"y":0.31},{"x":1566963600000,"y":0.12},{"x":1566963660000,"y":0.11},{"x":1566963720000,"y":0.11},{"x":1566963780000,"y":0.08},{"x":1566963840000,"y":0.13},{"x":1566963900000,"y":0.3},{"x":1566963960000,"y":0.09},{"x":1566964020000,"y":0.1},{"x":1566964080000,"y":0.12},{"x":1566964140000,"y":0.13},{"x":1566964200000,"y":0.32},{"x":1566964260000,"y":0.09},{"x":1566964320000,"y":0.1},{"x":1566964380000,"y":0.1},{"x":1566964440000,"y":0.1},{"x":1566964500000,"y":0.29},{"x":1566964560000,"y":0.1},{"x":1566964620000,"y":0.12},{"x":1566964680000,"y":0.07},{"x":1566964740000,"y":0.1},{"x":1566964800000,"y":0.44},{"x":1566964860000,"y":0.09},{"x":1566964920000,"y":0.13},{"x":1566964980000,"y":0.08},{"x":1566965040000,"y":0.07},{"x":1566965100000,"y":0.29},{"x":1566965160000,"y":0.12},{"x":1566965220000,"y":0.1},{"x":1566965280000,"y":0.07},{"x":1566965340000,"y":0.25},{"x":1566965400000,"y":0.36},{"x":1566965460000,"y":0.09},{"x":1566965520000,"y":0.08},{"x":1566965580000,"y":0.1},{"x":1566965640000,"y":0.51},{"x":1566965700000,"y":0.45},{"x":1566965760000,"y":0.1},{"x":1566965820000,"y":0.12},{"x":1566965880000,"y":0.1},{"x":1566965940000,"y":0.14},{"x":1566966000000,"y":0.3},{"x":1566966060000,"y":0.08},{"x":1566966120000,"y":0.14},{"x":1566966180000,"y":0.13},{"x":1566966240000,"y":0.11},{"x":1566966300000,"y":0.16},{"x":1566966360000,"y":0.26},{"x":1566966420000,"y":0.09},{"x":1566966480000,"y":0.08},{"x":1566966540000,"y":0.1},{"x":1566966600000,"y":0.18},{"x":1566966660000,"y":0.25},{"x":1566966720000,"y":0.07},{"x":1566966780000,"y":0.08},{"x":1566966840000,"y":0.1},{"x":1566966900000,"y":0.25},{"x":1566966960000,"y":0.24},{"x":1566967020000,"y":0.11},{"x":1566967080000,"y":0.08},{"x":1566967140000,"y":0.22},{"x":1566967200000,"y":0.23},{"x":1566967260000,"y":0.22},{"x":1566967320000,"y":0.12},{"x":1566967380000,"y":0.08},{"x":1566967440000,"y":0.11},{"x":1566967500000,"y":0.23},{"x":1566967560000,"y":0.2},{"x":1566967620000,"y":0.06},{"x":1566967680000,"y":0.08},{"x":1566967740000,"y":0.1},{"x":1566967800000,"y":0.23},{"x":1566967860000,"y":0.21},{"x":1566967920000,"y":0.11},{"x":1566967980000,"y":0.09},{"x":1566968040000,"y":0.08},{"x":1566968100000,"y":0.25},{"x":1566968160000,"y":0.24},{"x":1566968220000,"y":0.13},{"x":1566968280000,"y":0.08},{"x":1566968340000,"y":0.12},{"x":1566968400000,"y":0.8},{"x":1566968460000,"y":0.23},{"x":1566968520000,"y":0.16},{"x":1566968580000,"y":0.09},{"x":1566968640000,"y":0.1},{"x":1566968700000,"y":0.16},{"x":1566968760000,"y":0.09},{"x":1566968820000,"y":0.33},{"x":1566968880000,"y":0.53},{"x":1566968940000,"y":0.99},{"x":1566969000000,"y":0.2},{"x":1566969060000,"y":0.1},{"x":1566969120000,"y":0.21},{"x":1566969180000,"y":0.09},{"x":1566969240000,"y":0.07},{"x":1566969300000,"y":0.23},{"x":1566969360000,"y":0.07},{"x":1566969420000,"y":0.22},{"x":1566969480000,"y":0.07},{"x":1566969540000,"y":0.08},{"x":1566969600000,"y":0.18},{"x":1566969660000,"y":0.11},{"x":1566969720000,"y":0.22},{"x":1566969780000,"y":0.09},{"x":1566969840000,"y":0.09},{"x":1566969900000,"y":0.14},{"x":1566969960000,"y":0.11},{"x":1566970020000,"y":0.24},{"x":1566970080000,"y":0.11},{"x":1566970140000,"y":0.08},{"x":1566970200000,"y":0.27},{"x":1566970260000,"y":0.16},{"x":1566970320000,"y":0.27},{"x":1566970380000,"y":0.09},{"x":1566970440000,"y":0.07},{"x":1566970500000,"y":0.19},{"x":1566970560000,"y":0.11},{"x":1566970620000,"y":0.2},{"x":1566970680000,"y":0.14},{"x":1566970740000,"y":0.36},{"x":1566970800000,"y":0.22},{"x":1566970860000,"y":0.07},{"x":1566970920000,"y":0.12},{"x":1566970980000,"y":0.27},{"x":1566971040000,"y":0.09},{"x":1566971100000,"y":0.1},{"x":1566971160000,"y":0.07},{"x":1566971220000,"y":0.1},{"x":1566971280000,"y":0.24},{"x":1566971340000,"y":0.07},{"x":1566971400000,"y":0.19},{"x":1566971460000,"y":0.1},{"x":1566971520000,"y":0.11},{"x":1566971580000,"y":0.24},{"x":1566971640000,"y":0.1},{"x":1566971700000,"y":0.16},{"x":1566971760000,"y":0.1},{"x":1566971820000,"y":0.07},{"x":1566971880000,"y":0.2},{"x":1566971940000,"y":0.09},{"x":1566972000000,"y":0.21},{"x":1566972060000,"y":0.15},{"x":1566972120000,"y":0.07},{"x":1566972180000,"y":0.27},{"x":1566972240000,"y":0.08},{"x":1566972300000,"y":0.19},{"x":1566972360000,"y":0.17},{"x":1566972420000,"y":0.14},{"x":1566972480000,"y":0.22},{"x":1566972540000,"y":0.95},{"x":1566972600000,"y":0.19},{"x":1566972660000,"y":0.12},{"x":1566972720000,"y":0.2},{"x":1566972780000,"y":0.33},{"x":1566972840000,"y":0.1},{"x":1566972900000,"y":0.25},{"x":1566972960000,"y":0.08},{"x":1566973020000,"y":0.15},{"x":1566973080000,"y":0.26},{"x":1566973140000,"y":0.1},{"x":1566973200000,"y":0.19},{"x":1566973260000,"y":0.17},{"x":1566973320000,"y":0.12},{"x":1566973380000,"y":0.11},{"x":1566973440000,"y":0.21},{"x":1566973500000,"y":0.46},{"x":1566973560000,"y":0.09},{"x":1566973620000,"y":0.15},{"x":1566973680000,"y":0.08},{"x":1566973740000,"y":0.23},{"x":1566973800000,"y":0.31},{"x":1566973860000,"y":0.14},{"x":1566973920000,"y":0.1},{"x":1566973980000,"y":0.13},{"x":1566974040000,"y":0.26},{"x":1566974100000,"y":0.28},{"x":1566974160000,"y":0.16},{"x":1566974220000,"y":0.07},{"x":1566974280000,"y":0.12},{"x":1566974340000,"y":0.36},{"x":1566974400000,"y":0.24},{"x":1566974460000,"y":0.12},{"x":1566974520000,"y":0.13},{"x":1566974580000,"y":0.06},{"x":1566974640000,"y":0.35},{"x":1566974700000,"y":0.25},{"x":1566974760000,"y":0.1},{"x":1566974820000,"y":0.11},{"x":1566974880000,"y":0.11},{"x":1566974940000,"y":0.19},{"x":1566975000000,"y":0.23},{"x":1566975060000,"y":0.07},{"x":1566975120000,"y":0.1},{"x":1566975180000,"y":0.1},{"x":1566975240000,"y":0.27},{"x":1566975300000,"y":0.22},{"x":1566975360000,"y":0.1},{"x":1566975420000,"y":0.13},{"x":1566975480000,"y":0.08},{"x":1566975540000,"y":0.28},{"x":1566975600000,"y":0.35},{"x":1566975660000,"y":0.11},{"x":1566975720000,"y":0.08},{"x":1566975780000,"y":0.1},{"x":1566975840000,"y":0.11},{"x":1566975900000,"y":0.3},{"x":1566975960000,"y":0.12},{"x":1566976020000,"y":0.12},{"x":1566976080000,"y":0.07},{"x":1566976140000,"y":0.15},{"x":1566976200000,"y":0.41},{"x":1566976260000,"y":0.12},{"x":1566976320000,"y":0.12},{"x":1566976380000,"y":0.09},{"x":1566976440000,"y":0.1},{"x":1566976500000,"y":0.34},{"x":1566976560000,"y":0.1},{"x":1566976620000,"y":0.1},{"x":1566976680000,"y":0.08},{"x":1566976740000,"y":0.1},{"x":1566976800000,"y":0.41},{"x":1566976860000,"y":0.17},{"x":1566976920000,"y":0.13},{"x":1566976980000,"y":0.12},{"x":1566977040000,"y":0.08},{"x":1566977100000,"y":0.42},{"x":1566977160000,"y":0.12},{"x":1566977220000,"y":0.07},{"x":1566977280000,"y":0.09},{"x":1566977340000,"y":0.1},{"x":1566977400000,"y":0.39},{"x":1566977460000,"y":0.07},{"x":1566977520000,"y":0.1},{"x":1566977580000,"y":0.11},{"x":1566977640000,"y":0.13},{"x":1566977700000,"y":0.47},{"x":1566977760000,"y":0.11},{"x":1566977820000,"y":0.1},{"x":1566977880000,"y":0.08},{"x":1566977940000,"y":0.17},{"x":1566978000000,"y":0.37},{"x":1566978060000,"y":0.1},{"x":1566978120000,"y":0.15},{"x":1566978180000,"y":0.08},{"x":1566978240000,"y":0.12},{"x":1566978300000,"y":0.26},{"x":1566978360000,"y":0.21},{"x":1566978420000,"y":0.1},{"x":1566978480000,"y":0.07},{"x":1566978540000,"y":0.17},{"x":1566978600000,"y":0.16},{"x":1566978660000,"y":0.25},{"x":1566978720000,"y":0.09},{"x":1566978780000,"y":0.15},{"x":1566978840000,"y":0.13},{"x":1566978900000,"y":0.17},{"x":1566978960000,"y":0.23},{"x":1566979020000,"y":0.11},{"x":1566979080000,"y":0.16},{"x":1566979140000,"y":0.08},{"x":1566979200000,"y":0.44},{"x":1566979260000,"y":0.3},{"x":1566979320000,"y":0.11},{"x":1566979380000,"y":0.12},{"x":1566979440000,"y":0.1},{"x":1566979500000,"y":0.19},{"x":1566979560000,"y":0.23},{"x":1566979620000,"y":0.08},{"x":1566979680000,"y":0.08},{"x":1566979740000,"y":0.18},{"x":1566979800000,"y":0.25},{"x":1566979860000,"y":0.22},{"x":1566979920000,"y":0.11},{"x":1566979980000,"y":0.22},{"x":1566980040000,"y":0.17},{"x":1566980100000,"y":0.37},{"x":1566980160000,"y":0.27},{"x":1566980220000,"y":0.14},{"x":1566980280000,"y":0.15},{"x":1566980340000,"y":0.12},{"x":1566980400000,"y":0.15},{"x":1566980460000,"y":0.21},{"x":1566980520000,"y":0.1},{"x":1566980580000,"y":0.08},{"x":1566980640000,"y":0.1},{"x":1566980700000,"y":0.18},{"x":1566980760000,"y":0.07},{"x":1566980820000,"y":0.25},{"x":1566980880000,"y":0.13},{"x":1566980940000,"y":0.1},{"x":1566981000000,"y":0.3},{"x":1566981060000,"y":0.09},{"x":1566981120000,"y":0.36},{"x":1566981180000,"y":0.13},{"x":1566981240000,"y":0.14},{"x":1566981300000,"y":0.22},{"x":1566981360000,"y":0.09},{"x":1566981420000,"y":0.23},{"x":1566981480000,"y":0.1},{"x":1566981540000,"y":0.13},{"x":1566981600000,"y":0.22},{"x":1566981660000,"y":0.11},{"x":1566981720000,"y":0.25},{"x":1566981780000,"y":0.1},{"x":1566981840000,"y":0.08},{"x":1566981900000,"y":0.17},{"x":1566981960000,"y":0.09},{"x":1566982020000,"y":0.25},{"x":1566982080000,"y":0.09},{"x":1566982140000,"y":0.15},{"x":1566982200000,"y":0.27},{"x":1566982260000,"y":0.1},{"x":1566982320000,"y":0.23},{"x":1566982380000,"y":0.09},{"x":1566982440000,"y":0.07},{"x":1566982500000,"y":0.22},{"x":1566982560000,"y":0.11},{"x":1566982620000,"y":0.23},{"x":1566982680000,"y":0.12},{"x":1566982740000,"y":0.11},{"x":1566982800000,"y":0.36},{"x":1566982860000,"y":0.12},{"x":1566982920000,"y":0.1},{"x":1566982980000,"y":0.24},{"x":1566983040000,"y":0.67},{"x":1566983100000,"y":0.27},{"x":1566983160000,"y":0.07},{"x":1566983220000,"y":0.1},{"x":1566983280000,"y":0.19},{"x":1566983340000,"y":0.17},{"x":1566983400000,"y":0.21},{"x":1566983460000,"y":0.09},{"x":1566983520000,"y":0.1},{"x":1566983580000,"y":0.24},{"x":1566983640000,"y":0.08},{"x":1566983700000,"y":0.27},{"x":1566983760000,"y":0.09},{"x":1566983820000,"y":0.13},{"x":1566983880000,"y":0.24},{"x":1566983940000,"y":0.16},{"x":1566984000000,"y":0.19},{"x":1566984060000,"y":0.12},{"x":1566984120000,"y":0.12},{"x":1566984180000,"y":0.37},{"x":1566984240000,"y":0.1},{"x":1566984300000,"y":0.33},{"x":1566984360000,"y":0.2},{"x":1566984420000,"y":0.25},{"x":1566984480000,"y":0.27},{"x":1566984540000,"y":0.13},{"x":1566984600000,"y":0.43},{"x":1566984660000,"y":0.12},{"x":1566984720000,"y":0.24},{"x":1566984780000,"y":0.26},{"x":1566984840000,"y":0.14},{"x":1566984900000,"y":0.33},{"x":1566984960000,"y":0.24},{"x":1566985020000,"y":0.15},{"x":1566985080000,"y":3.74},{"x":1566985140000,"y":1.73},{"x":1566985200000,"y":0.22},{"x":1566985260000,"y":0.14},{"x":1566985320000,"y":0.12},{"x":1566985380000,"y":0.15},{"x":1566985440000,"y":0.36},{"x":1566985500000,"y":0.25},{"x":1566985560000,"y":0.15},{"x":1566985620000,"y":0.19},{"x":1566985680000,"y":0.17},{"x":1566985740000,"y":0.33},{"x":1566985800000,"y":0.29},{"x":1566985860000,"y":0.15},{"x":1566985920000,"y":0.17},{"x":1566985980000,"y":0.18},{"x":1566986040000,"y":0.29},{"x":1566986100000,"y":0.25},{"x":1566986160000,"y":0.17},{"x":1566986220000,"y":0.18},{"x":1566986280000,"y":0.2},{"x":1566986340000,"y":0.32},{"x":1566986400000,"y":0.46},{"x":1566986460000,"y":0.23},{"x":1566986520000,"y":0.19},{"x":1566986580000,"y":0.22},{"x":1566986640000,"y":1.01},{"x":1566986700000,"y":0.38},{"x":1566986760000,"y":0.25},{"x":1566986820000,"y":0.2},{"x":1566986880000,"y":0.17},{"x":1566986940000,"y":0.53},{"x":1566987000000,"y":0.39},{"x":1566987060000,"y":0.18},{"x":1566987120000,"y":0.27},{"x":1566987180000,"y":0.29},{"x":1566987240000,"y":0.43},{"x":1566987300000,"y":0.33},{"x":1566987360000,"y":0.19},{"x":1566987420000,"y":0.29},{"x":1566987480000,"y":0.22},{"x":1566987540000,"y":0.37},{"x":1566987600000,"y":0.33},{"x":1566987660000,"y":0.35},{"x":1566987720000,"y":0.22},{"x":1566987780000,"y":0.31},{"x":1566987840000,"y":0.4},{"x":1566987900000,"y":0.58},{"x":1566987960000,"y":0.27},{"x":1566988020000,"y":0.3},{"x":1566988080000,"y":0.32},{"x":1566988140000,"y":0.26},{"x":1566988200000,"y":0.72},{"x":1566988260000,"y":0.2},{"x":1566988320000,"y":0.27},{"x":1566988380000,"y":0.2},{"x":1566988440000,"y":0.19},{"x":1566988500000,"y":0.49},{"x":1566988560000,"y":0.22},{"x":1566988620000,"y":0.18},{"x":1566988680000,"y":0.22},{"x":1566988740000,"y":0.29},{"x":1566988800000,"y":0.46},{"x":1566988860000,"y":0.19},{"x":1566988920000,"y":0.17},{"x":1566988980000,"y":0.18},{"x":1566989040000,"y":0.18},{"x":1566989100000,"y":0.5},{"x":1566989160000,"y":0.17},{"x":1566989220000,"y":0.2},{"x":1566989280000,"y":0.22},{"x":1566989340000,"y":0.3},{"x":1566989400000,"y":0.46},{"x":1566989460000,"y":0.15},{"x":1566989520000,"y":0.21},{"x":1566989580000,"y":0.19},{"x":1566989640000,"y":0.19},{"x":1566989700000,"y":0.46},{"x":1566989760000,"y":0.23},{"x":1566989820000,"y":0.2},{"x":1566989880000,"y":0.21},{"x":1566989940000,"y":0.22},{"x":1566990000000,"y":0.53},{"x":1566990060000,"y":0.18},{"x":1566990120000,"y":0.19},{"x":1566990180000,"y":0.2},{"x":1566990240000,"y":0.23},{"x":1566990300000,"y":0.9},{"x":1566990360000,"y":0.33},{"x":1566990420000,"y":0.2},{"x":1566990480000,"y":0.19},{"x":1566990540000,"y":0.38},{"x":1566990600000,"y":0.37},{"x":1566990660000,"y":0.37},{"x":1566990720000,"y":0.2},{"x":1566990780000,"y":0.21},{"x":1566990840000,"y":0.16},{"x":1566990900000,"y":0.33},{"x":1566990960000,"y":0.38},{"x":1566991020000,"y":0.19},{"x":1566991080000,"y":0.17},{"x":1566991140000,"y":0.15},{"x":1566991200000,"y":0.28},{"x":1566991260000,"y":0.31},{"x":1566991320000,"y":0.2},{"x":1566991380000,"y":0.2},{"x":1566991440000,"y":0.2},{"x":1566991500000,"y":1.76},{"x":1566991560000,"y":0.33},{"x":1566991620000,"y":0.22},{"x":1566991680000,"y":0.18},{"x":1566991740000,"y":0.25},{"x":1566991800000,"y":0.39},{"x":1566991860000,"y":0.31},{"x":1566991920000,"y":0.22},{"x":1566991980000,"y":0.18},{"x":1566992040000,"y":0.23},{"x":1566992100000,"y":0.35},{"x":1566992160000,"y":0.31},{"x":1566992220000,"y":0.19},{"x":1566992280000,"y":0.18},{"x":1566992340000,"y":0.35},{"x":1566992400000,"y":0.31},{"x":1566992460000,"y":0.26},{"x":1566992520000,"y":0.3},{"x":1566992580000,"y":6.75},{"x":1566992640000,"y":0.21},{"x":1566992700000,"y":0.27},{"x":1566992760000,"y":0.16},{"x":1566992820000,"y":0.35},{"x":1566992880000,"y":0.2},{"x":1566992940000,"y":0.21},{"x":1566993000000,"y":0.34},{"x":1566993060000,"y":0.21},{"x":1566993120000,"y":0.34},{"x":1566993180000,"y":0.17},{"x":1566993240000,"y":0.17},{"x":1566993300000,"y":0.31},{"x":1566993360000,"y":0.19},{"x":1566993420000,"y":0.31},{"x":1566993480000,"y":0.24},{"x":1566993540000,"y":0.19},{"x":1566993600000,"y":0.35},{"x":1566993660000,"y":0.26},{"x":1566993720000,"y":0.45},{"x":1566993780000,"y":0.2},{"x":1566993840000,"y":0.24},{"x":1566993900000,"y":0.37},{"x":1566993960000,"y":0.21},{"x":1566994020000,"y":0.42},{"x":1566994080000,"y":0.25},{"x":1566994140000,"y":0.48},{"x":1566994200000,"y":0.28},{"x":1566994260000,"y":0.17},{"x":1566994320000,"y":0.96},{"x":1566994380000,"y":0.24},{"x":1566994440000,"y":0.22},{"x":1566994500000,"y":0.43},{"x":1566994560000,"y":0.22},{"x":1566994620000,"y":0.35},{"x":1566994680000,"y":0.21},{"x":1566994740000,"y":0.22},{"x":1566994800000,"y":0.31},{"x":1566994860000,"y":0.17},{"x":1566994920000,"y":0.18},{"x":1566994980000,"y":0.28},{"x":1566995040000,"y":0.18},{"x":1566995100000,"y":0.27},{"x":1566995160000,"y":0.17},{"x":1566995220000,"y":0.16},{"x":1566995280000,"y":0.31},{"x":1566995340000,"y":0.1},{"x":1566995400000,"y":0.27},{"x":1566995460000,"y":0.17},{"x":1566995520000,"y":0.12},{"x":1566995580000,"y":0.3},{"x":1566995640000,"y":0.14},{"x":1566995700000,"y":0.3},{"x":1566995760000,"y":0.14},{"x":1566995820000,"y":0.08},{"x":1566995880000,"y":0.26},{"x":1566995940000,"y":0.34},{"x":1566996000000,"y":0.27},{"x":1566996060000,"y":0.12},{"x":1566996120000,"y":0.11},{"x":1566996180000,"y":0.25},{"x":1566996240000,"y":0.13},{"x":1566996300000,"y":0.34},{"x":1566996360000,"y":0.12},{"x":1566996420000,"y":0.15},{"x":1566996480000,"y":0.32},{"x":1566996540000,"y":0.12},{"x":1566996600000,"y":0.24},{"x":1566996660000,"y":0.11},{"x":1566996720000,"y":0.13},{"x":1566996780000,"y":0.34},{"x":1566996840000,"y":0.11},{"x":1566996900000,"y":0.25},{"x":1566996960000,"y":0.15},{"x":1566997020000,"y":0.14},{"x":1566997080000,"y":0.27},{"x":1566997140000,"y":0.14},{"x":1566997200000,"y":0.41},{"x":1566997260000,"y":0.13},{"x":1566997320000,"y":0.12},{"x":1566997380000,"y":0.1},{"x":1566997440000,"y":0.31},{"x":1566997500000,"y":0.24},{"x":1566997560000,"y":0.07},{"x":1566997620000,"y":0.1},{"x":1566997680000,"y":0.1},{"x":1566997740000,"y":0.31},{"x":1566997800000,"y":0.19},{"x":1566997860000,"y":0.11},{"x":1566997920000,"y":0.68},{"x":1566997980000,"y":0.13},{"x":1566998040000,"y":0.25},{"x":1566998100000,"y":0.31},{"x":1566998160000,"y":0.17},{"x":1566998220000,"y":0.14},{"x":1566998280000,"y":0.11},{"x":1566998340000,"y":0.26},{"x":1566998400000,"y":0.2},{"x":1566998460000,"y":0.16},{"x":1566998520000,"y":0.13},{"x":1566998580000,"y":0.12},{"x":1566998640000,"y":0.25},{"x":1566998700000,"y":0.21},{"x":1566998760000,"y":0.09},{"x":1566998820000,"y":0.19},{"x":1566998880000,"y":0.11},{"x":1566998940000,"y":0.24},{"x":1566999000000,"y":0.34},{"x":1566999060000,"y":0.14},{"x":1566999120000,"y":0.11},{"x":1566999180000,"y":0.09},{"x":1566999240000,"y":0.24},{"x":1566999300000,"y":0.23},{"x":1566999360000,"y":0.09},{"x":1566999420000,"y":0.1},{"x":1566999480000,"y":0.1},{"x":1566999540000,"y":0.41},{"x":1566999600000,"y":0.21},{"x":1566999660000,"y":0.15},{"x":1566999720000,"y":0.1},{"x":1566999780000,"y":0.15},{"x":1566999840000,"y":0.29},{"x":1566999900000,"y":0.2},{"x":1566999960000,"y":0.1},{"x":1567000020000,"y":0.2},{"x":1567000080000,"y":0.1},{"x":1567000140000,"y":0.13},{"x":1567000200000,"y":0.44},{"x":1567000260000,"y":0.09},{"x":1567000320000,"y":0.16},{"x":1567000380000,"y":0.11},{"x":1567000440000,"y":0.11},{"x":1567000500000,"y":0.36},{"x":1567000560000,"y":0.13},{"x":1567000620000,"y":0.19},{"x":1567000680000,"y":0.12},{"x":1567000740000,"y":0.13},{"x":1567000800000,"y":0.44},{"x":1567000860000,"y":0.16},{"x":1567000920000,"y":0.2},{"x":1567000980000,"y":0.17},{"x":1567001040000,"y":0.13},{"x":1567001100000,"y":0.42},{"x":1567001160000,"y":0.15},{"x":1567001220000,"y":0.14},{"x":1567001280000,"y":0.1},{"x":1567001340000,"y":0.26},{"x":1567001400000,"y":0.4},{"x":1567001460000,"y":0.13},{"x":1567001520000,"y":0.25},{"x":1567001580000,"y":0.17},{"x":1567001640000,"y":0.19},{"x":1567001700000,"y":0.56},{"x":1567001760000,"y":0.18},{"x":1567001820000,"y":0.12},{"x":1567001880000,"y":0.11},{"x":1567001940000,"y":0.1},{"x":1567002000000,"y":0.44},{"x":1567002060000,"y":0.1},{"x":1567002120000,"y":0.12},{"x":1567002180000,"y":0.1},{"x":1567002240000,"y":0.09},{"x":1567002300000,"y":0.24},{"x":1567002360000,"y":0.24},{"x":1567002420000,"y":0.13},{"x":1567002480000,"y":0.11},{"x":1567002540000,"y":0.13},{"x":1567002600000,"y":0.25},{"x":1567002660000,"y":0.26},{"x":1567002720000,"y":0.14},{"x":1567002780000,"y":0.14},{"x":1567002840000,"y":0.12},{"x":1567002900000,"y":0.3},{"x":1567002960000,"y":0.27},{"x":1567003020000,"y":0.09},{"x":1567003080000,"y":0.13},{"x":1567003140000,"y":0.3},{"x":1567003200000,"y":0.21},{"x":1567003260000,"y":0.26},{"x":1567003320000,"y":0.12},{"x":1567003380000,"y":0.11},{"x":1567003440000,"y":0.16},{"x":1567003500000,"y":0.37},{"x":1567003560000,"y":0.27},{"x":1567003620000,"y":0.15},{"x":1567003680000,"y":0.17},{"x":1567003740000,"y":0.2},{"x":1567003800000,"y":0.23},{"x":1567003860000,"y":0.27},{"x":1567003920000,"y":0.13},{"x":1567003980000,"y":0.14},{"x":1567004040000,"y":0.12},{"x":1567004100000,"y":0.27},{"x":1567004160000,"y":0.3},{"x":1567004220000,"y":0.16},{"x":1567004280000,"y":0.14},{"x":1567004340000,"y":0.14},{"x":1567004400000,"y":0.39},{"x":1567004460000,"y":0.33},{"x":1567004520000,"y":0.2},{"x":1567004580000,"y":0.15},{"x":1567004640000,"y":0.16},{"x":1567004700000,"y":0.2},{"x":1567004760000,"y":0.15},{"x":1567004820000,"y":0.29},{"x":1567004880000,"y":0.15},{"x":1567004940000,"y":0.32},{"x":1567005000000,"y":0.22},{"x":1567005060000,"y":0.11},{"x":1567005120000,"y":0.27},{"x":1567005180000,"y":1.54},{"x":1567005240000,"y":0.18},{"x":1567005300000,"y":0.19},{"x":1567005360000,"y":0.17},{"x":1567005420000,"y":0.27},{"x":1567005480000,"y":0.12},{"x":1567005540000,"y":0.12},{"x":1567005600000,"y":0.26},{"x":1567005660000,"y":0.16},{"x":1567005720000,"y":0.27},{"x":1567005780000,"y":0.11},{"x":1567005840000,"y":0.16},{"x":1567005900000,"y":0.15},{"x":1567005960000,"y":0.08},{"x":1567006020000,"y":0.26},{"x":1567006080000,"y":0.1},{"x":1567006140000,"y":0.11},{"x":1567006200000,"y":0.27},{"x":1567006260000,"y":0.14},{"x":1567006320000,"y":0.27},{"x":1567006380000,"y":0.1},{"x":1567006440000,"y":0.1},{"x":1567006500000,"y":0.34},{"x":1567006560000,"y":0.11},{"x":1567006620000,"y":0.11},{"x":1567006680000,"y":0.21},{"x":1567006740000,"y":0.22},{"x":1567006800000,"y":0.21},{"x":1567006860000,"y":0.07},{"x":1567006920000,"y":0.08},{"x":1567006980000,"y":5.13},{"x":1567007040000,"y":0.1},{"x":1567007100000,"y":0.2},{"x":1567007160000,"y":0.11},{"x":1567007220000,"y":0.15},{"x":1567007280000,"y":0.28},{"x":1567007340000,"y":0.07},{"x":1567007400000,"y":0.24},{"x":1567007460000,"y":0.08},{"x":1567007520000,"y":0.09},{"x":1567007580000,"y":0.22},{"x":1567007640000,"y":0.15},{"x":1567007700000,"y":0.28},{"x":1567007760000,"y":0.14},{"x":1567007820000,"y":0.09},{"x":1567007880000,"y":0.23},{"x":1567007940000,"y":0.1},{"x":1567008000000,"y":0.31},{"x":1567008060000,"y":0.19},{"x":1567008120000,"y":0.11},{"x":1567008180000,"y":0.22},{"x":1567008240000,"y":0.12},{"x":1567008300000,"y":0.17},{"x":1567008360000,"y":0.12},{"x":1567008420000,"y":0.08},{"x":1567008480000,"y":0.23},{"x":1567008540000,"y":0.38},{"x":1567008600000,"y":0.24},{"x":1567008660000,"y":0.09},{"x":1567008720000,"y":0.2},{"x":1567008780000,"y":0.28},{"x":1567008840000,"y":0.11},{"x":1567008900000,"y":0.28},{"x":1567008960000,"y":0.14},{"x":1567009020000,"y":0.18},{"x":1567009080000,"y":0.16},{"x":1567009140000,"y":0.35},{"x":1567009200000,"y":0.21},{"x":1567009260000,"y":0.13},{"x":1567009320000,"y":0.13},{"x":1567009380000,"y":0.13},{"x":1567009440000,"y":0.22},{"x":1567009500000,"y":0.25},{"x":1567009560000,"y":0.07},{"x":1567009620000,"y":0.15},{"x":1567009680000,"y":0.15},{"x":1567009740000,"y":0.24},{"x":1567009800000,"y":0.27},{"x":1567009860000,"y":0.15},{"x":1567009920000,"y":0.12},{"x":1567009980000,"y":0.18},{"x":1567010040000,"y":0.25},{"x":1567010100000,"y":0.25},{"x":1567010160000,"y":0.13},{"x":1567010220000,"y":0.16},{"x":1567010280000,"y":0.17},{"x":1567010340000,"y":0.42},{"x":1567010400000,"y":0.21},{"x":1567010460000,"y":0.1},{"x":1567010520000,"y":0.14},{"x":1567010580000,"y":0.1},{"x":1567010640000,"y":0.22},{"x":1567010700000,"y":0.27},{"x":1567010760000,"y":0.14},{"x":1567010820000,"y":0.14},{"x":1567010880000,"y":0.17},{"x":1567010940000,"y":0.25},{"x":1567011000000,"y":0.28},{"x":1567011060000,"y":0.08},{"x":1567011120000,"y":0.14},{"x":1567011180000,"y":0.07},{"x":1567011240000,"y":0.22},{"x":1567011300000,"y":0.31},{"x":1567011360000,"y":0.16},{"x":1567011420000,"y":0.11},{"x":1567011480000,"y":0.11},{"x":1567011540000,"y":0.1},{"x":1567011600000,"y":0.48},{"x":1567011660000,"y":0.13},{"x":1567011720000,"y":0.13},{"x":1567011780000,"y":0.1},{"x":1567011840000,"y":0.15},{"x":1567011900000,"y":0.42},{"x":1567011960000,"y":0.12},{"x":1567012020000,"y":0.14},{"x":1567012080000,"y":0.15},{"x":1567012140000,"y":0.32},{"x":1567012200000,"y":0.38},{"x":1567012260000,"y":0.15},{"x":1567012320000,"y":0.21},{"x":1567012380000,"y":0.12},{"x":1567012440000,"y":0.17},{"x":1567012500000,"y":0.35},{"x":1567012560000,"y":0.12},{"x":1567012620000,"y":0.14},{"x":1567012680000,"y":0.1},{"x":1567012740000,"y":0.1},{"x":1567012800000,"y":0.37},{"x":1567012860000,"y":0.22},{"x":1567012920000,"y":0.08},{"x":1567012980000,"y":0.1},{"x":1567013040000,"y":0.09},{"x":1567013100000,"y":0.36},{"x":1567013160000,"y":0.12},{"x":1567013220000,"y":0.17},{"x":1567013280000,"y":0.11},{"x":1567013340000,"y":0.1},{"x":1567013400000,"y":0.47},{"x":1567013460000,"y":0.11},{"x":1567013520000,"y":0.12},{"x":1567013580000,"y":0.18},{"x":1567013640000,"y":0.12},{"x":1567013700000,"y":0.5},{"x":1567013760000,"y":0.12},{"x":1567013820000,"y":0.15},{"x":1567013880000,"y":0.11},{"x":1567013940000,"y":0.15},{"x":1567014000000,"y":0.18},{"x":1567014060000,"y":0.33},{"x":1567014120000,"y":0.14},{"x":1567014180000,"y":0.11},{"x":1567014240000,"y":0.14},{"x":1567014300000,"y":0.23},{"x":1567014360000,"y":0.25},{"x":1567014420000,"y":0.14},{"x":1567014480000,"y":0.18},{"x":1567014540000,"y":0.17},{"x":1567014600000,"y":0.25},{"x":1567014660000,"y":0.24},{"x":1567014720000,"y":0.1},{"x":1567014780000,"y":0.11},{"x":1567014840000,"y":0.09},{"x":1567014900000,"y":0.17},{"x":1567014960000,"y":0.27},{"x":1567015020000,"y":0.15},{"x":1567015080000,"y":0.15},{"x":1567015140000,"y":0.08},{"x":1567015200000,"y":0.37},{"x":1567015260000,"y":0.3},{"x":1567015320000,"y":0.12},{"x":1567015380000,"y":0.21},{"x":1567015440000,"y":0.17},{"x":1567015500000,"y":0.27},{"x":1567015560000,"y":0.29},{"x":1567015620000,"y":0.16},{"x":1567015680000,"y":0.43},{"x":1567015740000,"y":0.36},{"x":1567015800000,"y":0.32},{"x":1567015860000,"y":0.3},{"x":1567015920000,"y":0.18},{"x":1567015980000,"y":0.14},{"x":1567016040000,"y":0.16},{"x":1567016100000,"y":0.31},{"x":1567016160000,"y":0.3},{"x":1567016220000,"y":0.1},{"x":1567016280000,"y":0.16},{"x":1567016340000,"y":0.19},{"x":1567016400000,"y":0.24},{"x":1567016460000,"y":0.15},{"x":1567016520000,"y":0.27},{"x":1567016580000,"y":0.14},{"x":1567016640000,"y":0.16},{"x":1567016700000,"y":0.24},{"x":1567016760000,"y":0.17},{"x":1567016820000,"y":0.31},{"x":1567016880000,"y":0.08},{"x":1567016940000,"y":0.17},{"x":1567017000000,"y":0.21},{"x":1567017060000,"y":0.12},{"x":1567017120000,"y":0.32},{"x":1567017180000,"y":0.17},{"x":1567017240000,"y":0.17},{"x":1567017300000,"y":0.26},{"x":1567017360000,"y":0.09},{"x":1567017420000,"y":0.22},{"x":1567017480000,"y":0.14},{"x":1567017540000,"y":0.24},{"x":1567017600000,"y":0.26},{"x":1567017660000,"y":0.09},{"x":1567017720000,"y":0.28},{"x":1567017780000,"y":0.12},{"x":1567017840000,"y":0.08},{"x":1567017900000,"y":0.26},{"x":1567017960000,"y":0.12},{"x":1567018020000,"y":0.37},{"x":1567018080000,"y":0.18},{"x":1567018140000,"y":0.09},{"x":1567018200000,"y":0.21},{"x":1567018260000,"y":0.17},{"x":1567018320000,"y":0.17},{"x":1567018380000,"y":0.39},{"x":1567018440000,"y":3.41},{"x":1567018500000,"y":2.63},{"x":1567018560000,"y":0.2},{"x":1567018620000,"y":17.07},{"x":1567018680000,"y":0.55},{"x":1567018740000,"y":0.29},{"x":1567018800000,"y":0.51},{"x":1567018860000,"y":0.33},{"x":1567018920000,"y":0.31},{"x":1567018980000,"y":0.31},{"x":1567019040000,"y":0.23},{"x":1567019100000,"y":0.37},{"x":1567019160000,"y":0.25},{"x":1567019220000,"y":0.22},{"x":1567019280000,"y":0.34},{"x":1567019340000,"y":0.38},{"x":1567019400000,"y":0.27},{"x":1567019460000,"y":0.26},{"x":1567019520000,"y":0.3},{"x":1567019580000,"y":0.46},{"x":1567019640000,"y":0.22},{"x":1567019700000,"y":0.32},{"x":1567019760000,"y":0.24},{"x":1567019820000,"y":0.21},{"x":1567019880000,"y":0.34},{"x":1567019940000,"y":0.19},{"x":1567020000000,"y":0.38},{"x":1567020060000,"y":0.21},{"x":1567020120000,"y":0.22},{"x":1567020180000,"y":0.39},{"x":1567020240000,"y":0.23},{"x":1567020300000,"y":0.38},{"x":1567020360000,"y":0.26},{"x":1567020420000,"y":0.25},{"x":1567020480000,"y":0.41},{"x":1567020540000,"y":0.21},{"x":1567020600000,"y":0.4},{"x":1567020660000,"y":0.25},{"x":1567020720000,"y":0.27},{"x":1567020780000,"y":0.39},{"x":1567020840000,"y":0.27},{"x":1567020900000,"y":0.33},{"x":1567020960000,"y":0.29},{"x":1567021020000,"y":0.22},{"x":1567021080000,"y":0.22},{"x":1567021140000,"y":0.63},{"x":1567021200000,"y":0.36},{"x":1567021260000,"y":0.23},{"x":1567021320000,"y":0.22},{"x":1567021380000,"y":0.23},{"x":1567021440000,"y":0.42},{"x":1567021500000,"y":0.29},{"x":1567021560000,"y":0.2},{"x":1567021620000,"y":0.26},{"x":1567021680000,"y":0.31},{"x":1567021740000,"y":0.49},{"x":1567021800000,"y":0.34},{"x":1567021860000,"y":0.24},{"x":1567021920000,"y":0.27},{"x":1567021980000,"y":0.2},{"x":1567022040000,"y":0.39},{"x":1567022100000,"y":0.28},{"x":1567022160000,"y":0.31},{"x":1567022220000,"y":0.25},{"x":1567022280000,"y":0.2},{"x":1567022340000,"y":0.31},{"x":1567022400000,"y":0.47},{"x":1567022460000,"y":0.2},{"x":1567022520000,"y":0.24},{"x":1567022580000,"y":0.19},{"x":1567022640000,"y":0.31},{"x":1567022700000,"y":0.33},{"x":1567022760000,"y":0.17},{"x":1567022820000,"y":0.22},{"x":1567022880000,"y":0.22},{"x":1567022940000,"y":0.93},{"x":1567023000000,"y":0.34},{"x":1567023060000,"y":0.2},{"x":1567023120000,"y":0.22},{"x":1567023180000,"y":0.32},{"x":1567023240000,"y":0.43},{"x":1567023300000,"y":0.41},{"x":1567023360000,"y":0.26},{"x":1567023420000,"y":0.36},{"x":1567023480000,"y":0.28},{"x":1567023540000,"y":0.27},{"x":1567023600000,"y":0.49},{"x":1567023660000,"y":0.21},{"x":1567023720000,"y":0.22},{"x":1567023780000,"y":0.18},{"x":1567023840000,"y":0.18},{"x":1567023900000,"y":0.52},{"x":1567023960000,"y":0.2},{"x":1567024020000,"y":0.23},{"x":1567024080000,"y":0.27},{"x":1567024140000,"y":0.19},{"x":1567024200000,"y":0.52},{"x":1567024260000,"y":0.19},{"x":1567024320000,"y":0.2},{"x":1567024380000,"y":0.26},{"x":1567024440000,"y":0.22},{"x":1567024500000,"y":0.6},{"x":1567024560000,"y":0.19},{"x":1567024620000,"y":0.18},{"x":1567024680000,"y":0.19},{"x":1567024740000,"y":0.5},{"x":1567024800000,"y":0.43},{"x":1567024860000,"y":0.17},{"x":1567024920000,"y":0.32},{"x":1567024980000,"y":0.25},{"x":1567025040000,"y":0.25},{"x":1567025100000,"y":0.57},{"x":1567025160000,"y":0.27},{"x":1567025220000,"y":0.26},{"x":1567025280000,"y":0.21},{"x":1567025340000,"y":0.23},{"x":1567025400000,"y":0.44},{"x":1567025460000,"y":0.2},{"x":1567025520000,"y":0.24},{"x":1567025580000,"y":0.19},{"x":1567025640000,"y":0.21},{"x":1567025700000,"y":0.45},{"x":1567025760000,"y":0.2},{"x":1567025820000,"y":0.24},{"x":1567025880000,"y":0.25},{"x":1567025940000,"y":0.25},{"x":1567026000000,"y":0.52},{"x":1567026060000,"y":0.45},{"x":1567026120000,"y":0.24},{"x":1567026180000,"y":0.23},{"x":1567026240000,"y":0.22},{"x":1567026300000,"y":0.4},{"x":1567026360000,"y":0.42},{"x":1567026420000,"y":0.23},{"x":1567026480000,"y":0.21},{"x":1567026540000,"y":0.46},{"x":1567026600000,"y":0.36},{"x":1567026660000,"y":0.35},{"x":1567026720000,"y":0.19},{"x":1567026780000,"y":0.17},{"x":1567026840000,"y":0.21},{"x":1567026900000,"y":0.43},{"x":1567026960000,"y":0.38},{"x":1567027020000,"y":0.19},{"x":1567027080000,"y":0.18},{"x":1567027140000,"y":0.21},{"x":1567027200000,"y":7.18},{"x":1567027260000,"y":0.49},{"x":1567027320000,"y":0.19},{"x":1567027380000,"y":0.19},{"x":1567027440000,"y":0.2},{"x":1567027500000,"y":0.31},{"x":1567027560000,"y":0.32},{"x":1567027620000,"y":0.22},{"x":1567027680000,"y":0.19},{"x":1567027740000,"y":0.17},{"x":1567027800000,"y":0.36},{"x":1567027860000,"y":0.39},{"x":1567027920000,"y":0.26},{"x":1567027980000,"y":0.22},{"x":1567028040000,"y":0.22},{"x":1567028100000,"y":0.38},{"x":1567028160000,"y":0.36},{"x":1567028220000,"y":0.2},{"x":1567028280000,"y":0.22},{"x":1567028340000,"y":0.41},{"x":1567028400000,"y":0.35},{"x":1567028460000,"y":0.24},{"x":1567028520000,"y":0.39},{"x":1567028580000,"y":0.22},{"x":1567028640000,"y":0.13},{"x":1567028700000,"y":0.24},{"x":1567028760000,"y":0.13},{"x":1567028820000,"y":3.46},{"x":1567028880000,"y":0.17},{"x":1567028940000,"y":0.1},{"x":1567029000000,"y":0.2},{"x":1567029060000,"y":0.18},{"x":1567029120000,"y":0.3},{"x":1567029180000,"y":0.11},{"x":1567029240000,"y":0.14},{"x":1567029300000,"y":0.25},{"x":1567029360000,"y":0.13},{"x":1567029420000,"y":0.29},{"x":1567029480000,"y":0.1},{"x":1567029540000,"y":0.12},{"x":1567029600000,"y":0.33},{"x":1567029660000,"y":0.2},{"x":1567029720000,"y":0.27},{"x":1567029780000,"y":0.14},{"x":1567029840000,"y":0.1},{"x":1567029900000,"y":0.29},{"x":1567029960000,"y":0.11},{"x":1567030020000,"y":0.22},{"x":1567030080000,"y":0.15},{"x":1567030140000,"y":0.26},{"x":1567030200000,"y":0.21},{"x":1567030260000,"y":0.12},{"x":1567030320000,"y":0.38},{"x":1567030380000,"y":0.16},{"x":1567030440000,"y":0.13},{"x":1567030500000,"y":0.2},{"x":1567030560000,"y":0.13},{"x":1567030620000,"y":0.13},{"x":1567030680000,"y":0.28},{"x":1567030740000,"y":0.11},{"x":1567030800000,"y":0.24},{"x":1567030860000,"y":0.12},{"x":1567030920000,"y":0.15},{"x":1567030980000,"y":0.32},{"x":1567031040000,"y":0.17},{"x":1567031100000,"y":0.25},{"x":1567031160000,"y":0.11},{"x":1567031220000,"y":0.16},{"x":1567031280000,"y":0.32},{"x":1567031340000,"y":0.09},{"x":1567031400000,"y":0.28},{"x":1567031460000,"y":0.13},{"x":1567031520000,"y":0.15},{"x":1567031580000,"y":0.28},{"x":1567031640000,"y":0.09},{"x":1567031700000,"y":0.26},{"x":1567031760000,"y":0.11},{"x":1567031820000,"y":0.16},{"x":1567031880000,"y":0.26},{"x":1567031940000,"y":0.29},{"x":1567032000000,"y":0.3},{"x":1567032060000,"y":0.17},{"x":1567032120000,"y":0.17},{"x":1567032180000,"y":0.27},{"x":1567032240000,"y":0.09},{"x":1567032300000,"y":0.33},{"x":1567032360000,"y":0.08},{"x":1567032420000,"y":0.15},{"x":1567032480000,"y":0.34},{"x":1567032540000,"y":0.14},{"x":1567032600000,"y":0.18},{"x":1567032660000,"y":0.15},{"x":1567032720000,"y":0.13},{"x":1567032780000,"y":0.3},{"x":1567032840000,"y":0.14},{"x":1567032900000,"y":0.21},{"x":1567032960000,"y":0.15},{"x":1567033020000,"y":0.16},{"x":1567033080000,"y":0.1},{"x":1567033140000,"y":0.26},{"x":1567033200000,"y":0.37},{"x":1567033260000,"y":0.17},{"x":1567033320000,"y":0.14},{"x":1567033380000,"y":0.15},{"x":1567033440000,"y":0.34},{"x":1567033500000,"y":0.26},{"x":1567033560000,"y":0.16},{"x":1567033620000,"y":0.17},{"x":1567033680000,"y":0.13},{"x":1567033740000,"y":0.51},{"x":1567033800000,"y":0.27},{"x":1567033860000,"y":0.13},{"x":1567033920000,"y":0.12},{"x":1567033980000,"y":0.13},{"x":1567034040000,"y":0.29},{"x":1567034100000,"y":0.25},{"x":1567034160000,"y":0.15},{"x":1567034220000,"y":0.18},{"x":1567034280000,"y":0.16},{"x":1567034340000,"y":0.25},{"x":1567034400000,"y":0.24},{"x":1567034460000,"y":0.12},{"x":1567034520000,"y":0.1},{"x":1567034580000,"y":0.11},{"x":1567034640000,"y":0.23},{"x":1567034700000,"y":0.21},{"x":1567034760000,"y":0.1},{"x":1567034820000,"y":0.19},{"x":1567034880000,"y":0.17},{"x":1567034940000,"y":0.3},{"x":1567035000000,"y":0.32},{"x":1567035060000,"y":0.12},{"x":1567035120000,"y":0.15},{"x":1567035180000,"y":0.14},{"x":1567035240000,"y":0.26},{"x":1567035300000,"y":0.24},{"x":1567035360000,"y":0.15},{"x":1567035420000,"y":0.13},{"x":1567035480000,"y":0.12},{"x":1567035540000,"y":0.25},{"x":1567035600000,"y":0.44},{"x":1567035660000,"y":0.11},{"x":1567035720000,"y":0.12},{"x":1567035780000,"y":0.13},{"x":1567035840000,"y":0.15},{"x":1567035900000,"y":0.35},{"x":1567035960000,"y":0.1},{"x":1567036020000,"y":0.19},{"x":1567036080000,"y":0.11},{"x":1567036140000,"y":0.15},{"x":1567036200000,"y":0.35},{"x":1567036260000,"y":0.14},{"x":1567036320000,"y":0.11},{"x":1567036380000,"y":0.19},{"x":1567036440000,"y":0.16},{"x":1567036500000,"y":0.41},{"x":1567036560000,"y":0.11},{"x":1567036620000,"y":0.18},{"x":1567036680000,"y":0.1},{"x":1567036740000,"y":0.18},{"x":1567036800000,"y":0.83},{"x":1567036860000,"y":0.14},{"x":1567036920000,"y":0.12},{"x":1567036980000,"y":0.1},{"x":1567037040000,"y":0.12},{"x":1567037100000,"y":0.38},{"x":1567037160000,"y":0.12},{"x":1567037220000,"y":0.14},{"x":1567037280000,"y":0.08},{"x":1567037340000,"y":0.35},{"x":1567037400000,"y":1.24},{"x":1567037460000,"y":0.11},{"x":1567037520000,"y":0.14},{"x":1567037580000,"y":0.19},{"x":1567037640000,"y":0.29},{"x":1567037700000,"y":0.65},{"x":1567037760000,"y":0.17},{"x":1567037820000,"y":0.15},{"x":1567037880000,"y":0.23},{"x":1567037940000,"y":0.15},{"x":1567038000000,"y":0.31},{"x":1567038060000,"y":0.33},{"x":1567038120000,"y":0.17},{"x":1567038180000,"y":0.15},{"x":1567038240000,"y":0.1},{"x":1567038300000,"y":0.26},{"x":1567038360000,"y":0.32},{"x":1567038420000,"y":0.16},{"x":1567038480000,"y":0.13},{"x":1567038540000,"y":0.13},{"x":1567038600000,"y":0.34},{"x":1567038660000,"y":0.28},{"x":1567038720000,"y":0.11},{"x":1567038780000,"y":0.12},{"x":1567038840000,"y":0.19},{"x":1567038900000,"y":0.4},{"x":1567038960000,"y":0.34},{"x":1567039020000,"y":0.12},{"x":1567039080000,"y":0.2},{"x":1567039140000,"y":0.28},{"x":1567039200000,"y":0.23},{"x":1567039260000,"y":0.32},{"x":1567039320000,"y":0.1},{"x":1567039380000,"y":0.1},{"x":1567039440000,"y":0.17},{"x":1567039500000,"y":0.18},{"x":1567039560000,"y":0.26},{"x":1567039620000,"y":0.17},{"x":1567039680000,"y":0.17},{"x":1567039740000,"y":0.11},{"x":1567039800000,"y":0.25},{"x":1567039860000,"y":0.28},{"x":1567039920000,"y":0.12},{"x":1567039980000,"y":0.15},{"x":1567040040000,"y":0.1},{"x":1567040100000,"y":0.2},{"x":1567040160000,"y":0.26},{"x":1567040220000,"y":0.07},{"x":1567040280000,"y":0.08},{"x":1567040340000,"y":0.1},{"x":1567040400000,"y":0.37},{"x":1567040460000,"y":0.17},{"x":1567040520000,"y":0.23},{"x":1567040580000,"y":0.08},{"x":1567040640000,"y":0.14},{"x":1567040700000,"y":0.25},{"x":1567040760000,"y":0.1},{"x":1567040820000,"y":0.26},{"x":1567040880000,"y":0.15},{"x":1567040940000,"y":0.4},{"x":1567041000000,"y":0.34},{"x":1567041060000,"y":0.09},{"x":1567041120000,"y":0.27},{"x":1567041180000,"y":0.13},{"x":1567041240000,"y":0.16},{"x":1567041300000,"y":0.34},{"x":1567041360000,"y":0.19},{"x":1567041420000,"y":0.34},{"x":1567041480000,"y":0.1},{"x":1567041540000,"y":0.14},{"x":1567041600000,"y":0.2},{"x":1567041660000,"y":0.19},{"x":1567041720000,"y":0.25},{"x":1567041780000,"y":0.11},{"x":1567041840000,"y":0.08},{"x":1567041900000,"y":0.23},{"x":1567041960000,"y":0.14},{"x":1567042020000,"y":0.31},{"x":1567042080000,"y":0.14},{"x":1567042140000,"y":0.09},{"x":1567042200000,"y":0.25},{"x":1567042260000,"y":0.1},{"x":1567042320000,"y":0.2},{"x":1567042380000,"y":0.27},{"x":1567042440000,"y":0.2},{"x":1567042500000,"y":0.28},{"x":1567042560000,"y":0.15},{"x":1567042620000,"y":0.13},{"x":1567042680000,"y":0.33},{"x":1567042740000,"y":0.48},{"x":1567042800000,"y":0.31},{"x":1567042860000,"y":0.12},{"x":1567042920000,"y":0.12},{"x":1567042980000,"y":0.28},{"x":1567043040000,"y":0.16},{"x":1567043100000,"y":0.42},{"x":1567043160000,"y":0.12},{"x":1567043220000,"y":0.17},{"x":1567043280000,"y":0.3},{"x":1567043340000,"y":0.12},{"x":1567043400000,"y":0.33},{"x":1567043460000,"y":0.08},{"x":1567043520000,"y":0.21},{"x":1567043580000,"y":0.34},{"x":1567043640000,"y":0.13},{"x":1567043700000,"y":0.26},{"x":1567043760000,"y":0.18},{"x":1567043820000,"y":0.16},{"x":1567043880000,"y":0.31},{"x":1567043940000,"y":0.12},{"x":1567044000000,"y":0.35},{"x":1567044060000,"y":0.19},{"x":1567044120000,"y":0.21},{"x":1567044180000,"y":0.42},{"x":1567044240000,"y":0.23},{"x":1567044300000,"y":0.22},{"x":1567044360000,"y":0.2},{"x":1567044420000,"y":0.16},{"x":1567044480000,"y":0.13},{"x":1567044540000,"y":0.59},{"x":1567044600000,"y":0.19},{"x":1567044660000,"y":0.14},{"x":1567044720000,"y":0.12},{"x":1567044780000,"y":0.32},{"x":1567044840000,"y":0.34},{"x":1567044900000,"y":0.34},{"x":1567044960000,"y":0.12},{"x":1567045020000,"y":0.53},{"x":1567045080000,"y":0.14},{"x":1567045140000,"y":0.26},{"x":1567045200000,"y":0.25},{"x":1567045260000,"y":0.17},{"x":1567045320000,"y":0.13},{"x":1567045380000,"y":0.1},{"x":1567045440000,"y":0.28},{"x":1567045500000,"y":0.27},{"x":1567045560000,"y":0.17},{"x":1567045620000,"y":0.15},{"x":1567045680000,"y":0.1},{"x":1567045740000,"y":0.23},{"x":1567045800000,"y":0.26},{"x":1567045860000,"y":0.09},{"x":1567045920000,"y":0.16},{"x":1567045980000,"y":0.14},{"x":1567046040000,"y":0.27},{"x":1567046100000,"y":0.22},{"x":1567046160000,"y":0.09},{"x":1567046220000,"y":0.14},{"x":1567046280000,"y":0.12},{"x":1567046340000,"y":0.35},{"x":1567046400000,"y":0.21},{"x":1567046460000,"y":0.11},{"x":1567046520000,"y":0.17},{"x":1567046580000,"y":0.15},{"x":1567046640000,"y":0.22},{"x":1567046700000,"y":0.17},{"x":1567046760000,"y":0.11},{"x":1567046820000,"y":0.12},{"x":1567046880000,"y":0.12},{"x":1567046940000,"y":0.12},{"x":1567047000000,"y":0.52},{"x":1567047060000,"y":0.07},{"x":1567047120000,"y":0.07},{"x":1567047180000,"y":0.12},{"x":1567047240000,"y":0.1},{"x":1567047300000,"y":0.35},{"x":1567047360000,"y":0.12},{"x":1567047420000,"y":0.12},{"x":1567047480000,"y":0.13},{"x":1567047540000,"y":0.1},{"x":1567047600000,"y":0.52},{"x":1567047660000,"y":0.2},{"x":1567047720000,"y":0.11},{"x":1567047780000,"y":0.12},{"x":1567047840000,"y":0.12},{"x":1567047900000,"y":0.43},{"x":1567047960000,"y":0.16},{"x":1567048020000,"y":0.19},{"x":1567048080000,"y":0.1},{"x":1567048140000,"y":0.45},{"x":1567048200000,"y":0.49},{"x":1567048260000,"y":1.49},{"x":1567048320000,"y":0.08},{"x":1567048380000,"y":0.13},{"x":1567048440000,"y":0.09},{"x":1567048500000,"y":0.35},{"x":1567048560000,"y":0.1},{"x":1567048620000,"y":0.1},{"x":1567048680000,"y":1.08},{"x":1567048740000,"y":0.15},{"x":1567048800000,"y":0.31},{"x":1567048860000,"y":0.12},{"x":1567048920000,"y":0.07},{"x":1567048980000,"y":0.12},{"x":1567049040000,"y":0.1},{"x":1567049100000,"y":0.33},{"x":1567049160000,"y":0.09},{"x":1567049220000,"y":0.11},{"x":1567049280000,"y":0.08},{"x":1567049340000,"y":0.08},{"x":1567049400000,"y":0.19},{"x":1567049460000,"y":0.23},{"x":1567049520000,"y":0.11},{"x":1567049580000,"y":0.15},{"x":1567049640000,"y":0.13},{"x":1567049700000,"y":0.24},{"x":1567049760000,"y":0.24},{"x":1567049820000,"y":0.12},{"x":1567049880000,"y":0.1},{"x":1567049940000,"y":0.33},{"x":1567050000000,"y":0.31},{"x":1567050060000,"y":0.25},{"x":1567050120000,"y":0.12},{"x":1567050180000,"y":0.11},{"x":1567050240000,"y":0.16},{"x":1567050300000,"y":0.29},{"x":1567050360000,"y":0.25},{"x":1567050420000,"y":0.15},{"x":1567050480000,"y":0.1},{"x":1567050540000,"y":0.19},{"x":1567050600000,"y":0.27},{"x":1567050660000,"y":4.96},{"x":1567050720000,"y":0.2},{"x":1567050780000,"y":0.19},{"x":1567050840000,"y":0.17},{"x":1567050900000,"y":0.27},{"x":1567050960000,"y":0.28},{"x":1567051020000,"y":0.15},{"x":1567051080000,"y":0.13},{"x":1567051140000,"y":0.13},{"x":1567051200000,"y":0.45},{"x":1567051260000,"y":0.34},{"x":1567051320000,"y":0.26},{"x":1567051380000,"y":0.2},{"x":1567051440000,"y":0.16},{"x":1567051500000,"y":0.21},{"x":1567051560000,"y":0.32},{"x":1567051620000,"y":0.2},{"x":1567051680000,"y":0.12},{"x":1567051740000,"y":0.64},{"x":1567051800000,"y":0.26},{"x":1567051860000,"y":0.16},{"x":1567051920000,"y":0.35},{"x":1567051980000,"y":0.13},{"x":1567052040000,"y":0.2},{"x":1567052100000,"y":0.31},{"x":1567052160000,"y":0.23},{"x":1567052220000,"y":0.33},{"x":1567052280000,"y":0.14},{"x":1567052340000,"y":0.15},{"x":1567052400000,"y":0.35},{"x":1567052460000,"y":0.22},{"x":1567052520000,"y":0.3},{"x":1567052580000,"y":0.17},{"x":1567052640000,"y":0.16},{"x":1567052700000,"y":0.34},{"x":1567052760000,"y":0.2},{"x":1567052820000,"y":0.36},{"x":1567052880000,"y":0.21},{"x":1567052940000,"y":0.17},{"x":1567053000000,"y":0.31},{"x":1567053060000,"y":0.23},{"x":1567053120000,"y":0.35},{"x":1567053180000,"y":0.21},{"x":1567053240000,"y":0.19},{"x":1567053300000,"y":0.29},{"x":1567053360000,"y":0.24},{"x":1567053420000,"y":0.36},{"x":1567053480000,"y":0.22},{"x":1567053540000,"y":0.33},{"x":1567053600000,"y":0.27},{"x":1567053660000,"y":0.19},{"x":1567053720000,"y":0.46},{"x":1567053780000,"y":0.25},{"x":1567053840000,"y":0.17},{"x":1567053900000,"y":0.28},{"x":1567053960000,"y":0.17},{"x":1567054020000,"y":0.24},{"x":1567054080000,"y":0.32},{"x":1567054140000,"y":0.17},{"x":1567054200000,"y":0.29},{"x":1567054260000,"y":0.17},{"x":1567054320000,"y":0.17},{"x":1567054380000,"y":0.3},{"x":1567054440000,"y":0.21},{"x":1567054500000,"y":0.3},{"x":1567054560000,"y":0.2},{"x":1567054620000,"y":0.21},{"x":1567054680000,"y":0.36},{"x":1567054740000,"y":0.28},{"x":1567054800000,"y":1.37},{"x":1567054860000,"y":0.22},{"x":1567054920000,"y":0.2},{"x":1567054980000,"y":0.38},{"x":1567055040000,"y":0.22},{"x":1567055100000,"y":0.44},{"x":1567055160000,"y":0.2},{"x":1567055220000,"y":0.2},{"x":1567055280000,"y":0.34},{"x":1567055340000,"y":0.28},{"x":1567055400000,"y":0.29},{"x":1567055460000,"y":0.18},{"x":1567055520000,"y":0.2},{"x":1567055580000,"y":0.3},{"x":1567055640000,"y":0.2},{"x":1567055700000,"y":0.32},{"x":1567055760000,"y":0.17},{"x":1567055820000,"y":0.21},{"x":1567055880000,"y":0.33},{"x":1567055940000,"y":0.17},{"x":1567056000000,"y":0.27},{"x":1567056060000,"y":0.22},{"x":1567056120000,"y":0.21},{"x":1567056180000,"y":0.35},{"x":1567056240000,"y":0.21},{"x":1567056300000,"y":0.29},{"x":1567056360000,"y":0.21},{"x":1567056420000,"y":0.17},{"x":1567056480000,"y":0.26},{"x":1567056540000,"y":0.34},{"x":1567056600000,"y":0.33},{"x":1567056660000,"y":0.25},{"x":1567056720000,"y":0.25},{"x":1567056780000,"y":0.2},{"x":1567056840000,"y":0.41},{"x":1567056900000,"y":0.33},{"x":1567056960000,"y":0.21},{"x":1567057020000,"y":0.2},{"x":1567057080000,"y":0.21},{"x":1567057140000,"y":0.55},{"x":1567057200000,"y":0.37},{"x":1567057260000,"y":0.22},{"x":1567057320000,"y":0.2},{"x":1567057380000,"y":0.21},{"x":1567057440000,"y":0.38},{"x":1567057500000,"y":0.42},{"x":1567057560000,"y":0.2},{"x":1567057620000,"y":0.25},{"x":1567057680000,"y":0.22},{"x":1567057740000,"y":0.32},{"x":1567057800000,"y":0.33},{"x":1567057860000,"y":0.2},{"x":1567057920000,"y":0.2},{"x":1567057980000,"y":0.24},{"x":1567058040000,"y":0.35},{"x":1567058100000,"y":0.27},{"x":1567058160000,"y":0.26},{"x":1567058220000,"y":0.2},{"x":1567058280000,"y":0.18},{"x":1567058340000,"y":0.31},{"x":1567058400000,"y":0.35},{"x":1567058460000,"y":0.26},{"x":1567058520000,"y":0.23},{"x":1567058580000,"y":0.21},{"x":1567058640000,"y":0.4},{"x":1567058700000,"y":0.39},{"x":1567058760000,"y":0.21},{"x":1567058820000,"y":0.26},{"x":1567058880000,"y":0.2},{"x":1567058940000,"y":0.4},{"x":1567059000000,"y":0.28},{"x":1567059060000,"y":0.25},{"x":1567059120000,"y":0.25},{"x":1567059180000,"y":1.1},{"x":1567059240000,"y":0.27},{"x":1567059300000,"y":0.53},{"x":1567059360000,"y":0.18},{"x":1567059420000,"y":0.25},{"x":1567059480000,"y":0.27},{"x":1567059540000,"y":0.16},{"x":1567059600000,"y":0.4},{"x":1567059660000,"y":0.19},{"x":1567059720000,"y":0.21},{"x":1567059780000,"y":0.22},{"x":1567059840000,"y":7.2},{"x":1567059900000,"y":0.99},{"x":1567059960000,"y":0.19},{"x":1567060020000,"y":0.19},{"x":1567060080000,"y":0.23},{"x":1567060140000,"y":0.2},{"x":1567060200000,"y":0.51},{"x":1567060260000,"y":0.21},{"x":1567060320000,"y":0.18},{"x":1567060380000,"y":0.2},{"x":1567060440000,"y":0.21},{"x":1567060500000,"y":0.47},{"x":1567060560000,"y":0.2},{"x":1567060620000,"y":0.24},{"x":1567060680000,"y":0.22},{"x":1567060740000,"y":0.27},{"x":1567060800000,"y":0.52},{"x":1567060860000,"y":0.24},{"x":1567060920000,"y":0.18},{"x":1567060980000,"y":0.2},{"x":1567061040000,"y":0.2},{"x":1567061100000,"y":0.45},{"x":1567061160000,"y":0.24},{"x":1567061220000,"y":0.18},{"x":1567061280000,"y":0.24},{"x":1567061340000,"y":0.25},{"x":1567061400000,"y":0.43},{"x":1567061460000,"y":0.19},{"x":1567061520000,"y":0.26},{"x":1567061580000,"y":0.18},{"x":1567061640000,"y":0.19},{"x":1567061700000,"y":0.26},{"x":1567061760000,"y":0.33},{"x":1567061820000,"y":0.15},{"x":1567061880000,"y":0.15},{"x":1567061940000,"y":0.15},{"x":1567062000000,"y":0.48},{"x":1567062060000,"y":0.25},{"x":1567062120000,"y":0.13},{"x":1567062180000,"y":0.17},{"x":1567062240000,"y":0.2},{"x":1567062300000,"y":0.21},{"x":1567062360000,"y":0.27},{"x":1567062420000,"y":0.13},{"x":1567062480000,"y":0.15},{"x":1567062540000,"y":0.13},{"x":1567062600000,"y":0.23},{"x":1567062660000,"y":0.25},{"x":1567062720000,"y":0.1},{"x":1567062780000,"y":0.11},{"x":1567062840000,"y":0.1},{"x":1567062900000,"y":0.23},{"x":1567062960000,"y":0.23},{"x":1567063020000,"y":0.19},{"x":1567063080000,"y":0.14},{"x":1567063140000,"y":0.23},{"x":1567063200000,"y":0.2},{"x":1567063260000,"y":0.39},{"x":1567063320000,"y":0.16},{"x":1567063380000,"y":0.19},{"x":1567063440000,"y":0.14},{"x":1567063500000,"y":0.28},{"x":1567063560000,"y":0.25},{"x":1567063620000,"y":0.07},{"x":1567063680000,"y":0.2},{"x":1567063740000,"y":0.11},{"x":1567063800000,"y":0.27},{"x":1567063860000,"y":0.22},{"x":1567063920000,"y":0.1},{"x":1567063980000,"y":0.13},{"x":1567064040000,"y":0.09},{"x":1567064100000,"y":0.24},{"x":1567064160000,"y":0.11},{"x":1567064220000,"y":0.25},{"x":1567064280000,"y":0.14},{"x":1567064340000,"y":0.21},{"x":1567064400000,"y":0.26},{"x":1567064460000,"y":0.11},{"x":1567064520000,"y":0.47},{"x":1567064580000,"y":0.14},{"x":1567064640000,"y":0.1},{"x":1567064700000,"y":0.24},{"x":1567064760000,"y":0.1},{"x":1567064820000,"y":0.28},{"x":1567064880000,"y":0.12},{"x":1567064940000,"y":0.21},{"x":1567065000000,"y":0.22},{"x":1567065060000,"y":0.12},{"x":1567065120000,"y":0.3},{"x":1567065180000,"y":0.14},{"x":1567065240000,"y":0.08},{"x":1567065300000,"y":0.2},{"x":1567065360000,"y":0.12},{"x":1567065420000,"y":0.26},{"x":1567065480000,"y":0.15},{"x":1567065540000,"y":0.12},{"x":1567065600000,"y":0.35},{"x":1567065660000,"y":0.21},{"x":1567065720000,"y":0.39},{"x":1567065780000,"y":0.1},{"x":1567065840000,"y":0.2},{"x":1567065900000,"y":0.33},{"x":1567065960000,"y":0.12},{"x":1567066020000,"y":0.25},{"x":1567066080000,"y":0.13},{"x":1567066140000,"y":0.18},{"x":1567066200000,"y":0.35},{"x":1567066260000,"y":0.22},{"x":1567066320000,"y":0.38},{"x":1567066380000,"y":0.49},{"x":1567066440000,"y":0.17},{"x":1567066500000,"y":0.56},{"x":1567066560000,"y":0.11},{"x":1567066620000,"y":0.21},{"x":1567066680000,"y":0.38},{"x":1567066740000,"y":0.16},{"x":1567066800000,"y":2.15},{"x":1567066860000,"y":0.2},{"x":1567066920000,"y":0.13},{"x":1567066980000,"y":0.27},{"x":1567067040000,"y":0.09},{"x":1567067100000,"y":0.32},{"x":1567067160000,"y":0.08},{"x":1567067220000,"y":0.11},{"x":1567067280000,"y":0.27},{"x":1567067340000,"y":0.12},{"x":1567067400000,"y":0.21},{"x":1567067460000,"y":0.17},{"x":1567067520000,"y":0.2},{"x":1567067580000,"y":0.34},{"x":1567067640000,"y":0.14},{"x":1567067700000,"y":0.27},{"x":1567067760000,"y":0.15},{"x":1567067820000,"y":0.16},{"x":1567067880000,"y":0.22},{"x":1567067940000,"y":0.36},{"x":1567068000000,"y":0.24},{"x":1567068060000,"y":0.13},{"x":1567068120000,"y":0.14},{"x":1567068180000,"y":0.34},{"x":1567068240000,"y":0.19},{"x":1567068300000,"y":0.3},{"x":1567068360000,"y":0.13},{"x":1567068420000,"y":0.08},{"x":1567068480000,"y":0.25},{"x":1567068540000,"y":0.11},{"x":1567068600000,"y":0.2},{"x":1567068660000,"y":0.17},{"x":1567068720000,"y":0.2},{"x":1567068780000,"y":0.1},{"x":1567068840000,"y":0.28},{"x":1567068900000,"y":0.25},{"x":1567068960000,"y":0.13},{"x":1567069020000,"y":0.12},{"x":1567069080000,"y":0.1},{"x":1567069140000,"y":0.31},{"x":1567069200000,"y":0.48},{"x":1567069260000,"y":0.17},{"x":1567069320000,"y":0.12},{"x":1567069380000,"y":0.11},{"x":1567069440000,"y":0.32},{"x":1567069500000,"y":0.26},{"x":1567069560000,"y":0.15},{"x":1567069620000,"y":0.12},{"x":1567069680000,"y":0.2},{"x":1567069740000,"y":0.51},{"x":1567069800000,"y":0.21},{"x":1567069860000,"y":0.1},{"x":1567069920000,"y":0.08},{"x":1567069980000,"y":0.1},{"x":1567070040000,"y":0.25},{"x":1567070100000,"y":0.22},{"x":1567070160000,"y":0.1},{"x":1567070220000,"y":0.11},{"x":1567070280000,"y":0.11},{"x":1567070340000,"y":0.27},{"x":1567070400000,"y":0.23},{"x":1567070460000,"y":0.1},{"x":1567070520000,"y":0.1},{"x":1567070580000,"y":0.1},{"x":1567070640000,"y":0.23},{"x":1567070700000,"y":0.24},{"x":1567070760000,"y":0.17},{"x":1567070820000,"y":0.15},{"x":1567070880000,"y":0.12},{"x":1567070940000,"y":0.27},{"x":1567071000000,"y":0.31},{"x":1567071060000,"y":0.13},{"x":1567071120000,"y":0.1},{"x":1567071180000,"y":0.12},{"x":1567071240000,"y":0.1},{"x":1567071300000,"y":0.37},{"x":1567071360000,"y":0.11},{"x":1567071420000,"y":0.1},{"x":1567071480000,"y":0.12},{"x":1567071540000,"y":0.3},{"x":1567071600000,"y":0.62},{"x":1567071660000,"y":0.18},{"x":1567071720000,"y":0.14},{"x":1567071780000,"y":0.14},{"x":1567071840000,"y":0.19},{"x":1567071900000,"y":0.51},{"x":1567071960000,"y":0.19},{"x":1567072020000,"y":0.18},{"x":1567072080000,"y":0.11},{"x":1567072140000,"y":0.15},{"x":1567072200000,"y":0.39},{"x":1567072260000,"y":0.11},{"x":1567072320000,"y":0.1},{"x":1567072380000,"y":0.1},{"x":1567072440000,"y":0.11},{"x":1567072500000,"y":4.12},{"x":1567072560000,"y":0.16},{"x":1567072620000,"y":0.15},{"x":1567072680000,"y":0.14},{"x":1567072740000,"y":0.1},{"x":1567072800000,"y":0.46},{"x":1567072860000,"y":0.15},{"x":1567072920000,"y":0.15},{"x":1567072980000,"y":0.18},{"x":1567073040000,"y":0.22},{"x":1567073100000,"y":0.43},{"x":1567073160000,"y":0.2},{"x":1567073220000,"y":0.13},{"x":1567073280000,"y":0.17},{"x":1567073340000,"y":0.36},{"x":1567073400000,"y":0.42},{"x":1567073460000,"y":0.13},{"x":1567073520000,"y":0.14},{"x":1567073580000,"y":0.16},{"x":1567073640000,"y":0.14},{"x":1567073700000,"y":1.88},{"x":1567073760000,"y":0.29},{"x":1567073820000,"y":0.12},{"x":1567073880000,"y":0.11},{"x":1567073940000,"y":0.15},{"x":1567074000000,"y":0.25},{"x":1567074060000,"y":0.34},{"x":1567074120000,"y":0.11},{"x":1567074180000,"y":0.12},{"x":1567074240000,"y":0.13},{"x":1567074300000,"y":0.33},{"x":1567074360000,"y":0.36},{"x":1567074420000,"y":0.16},{"x":1567074480000,"y":0.22},{"x":1567074540000,"y":0.16},{"x":1567074600000,"y":0.36},{"x":1567074660000,"y":0.43},{"x":1567074720000,"y":0.16},{"x":1567074780000,"y":0.13},{"x":1567074840000,"y":0.14},{"x":1567074900000,"y":0.27},{"x":1567074960000,"y":0.28},{"x":1567075020000,"y":0.11},{"x":1567075080000,"y":0.13},{"x":1567075140000,"y":0.4},{"x":1567075200000,"y":0.21},{"x":1567075260000,"y":0.31},{"x":1567075320000,"y":0.11},{"x":1567075380000,"y":0.16},{"x":1567075440000,"y":0.12},{"x":1567075500000,"y":0.34},{"x":1567075560000,"y":0.25},{"x":1567075620000,"y":0.21},{"x":1567075680000,"y":0.1},{"x":1567075740000,"y":0.16},{"x":1567075800000,"y":0.26},{"x":1567075860000,"y":0.14},{"x":1567075920000,"y":0.26},{"x":1567075980000,"y":0.19},{"x":1567076040000,"y":0.12},{"x":1567076100000,"y":0.27},{"x":1567076160000,"y":0.11},{"x":1567076220000,"y":0.26},{"x":1567076280000,"y":0.14},{"x":1567076340000,"y":0.15},{"x":1567076400000,"y":0.45},{"x":1567076460000,"y":0.12},{"x":1567076520000,"y":0.27},{"x":1567076580000,"y":0.15},{"x":1567076640000,"y":0.16},{"x":1567076700000,"y":0.21},{"x":1567076760000,"y":0.14},{"x":1567076820000,"y":0.27},{"x":1567076880000,"y":0.17},{"x":1567076940000,"y":0.41},{"x":1567077000000,"y":0.28},{"x":1567077060000,"y":0.1},{"x":1567077120000,"y":0.36},{"x":1567077180000,"y":0.14},{"x":1567077240000,"y":0.25},{"x":1567077300000,"y":3.29},{"x":1567077360000,"y":1.42},{"x":1567077420000,"y":0.24},{"x":1567077480000,"y":0.13},{"x":1567077540000,"y":0.11},{"x":1567077600000,"y":0.3},{"x":1567077660000,"y":0.13},{"x":1567077720000,"y":0.23},{"x":1567077780000,"y":0.19},{"x":1567077840000,"y":0.12},{"x":1567077900000,"y":1.47},{"x":1567077960000,"y":0.12},{"x":1567078020000,"y":0.24},{"x":1567078080000,"y":0.15},{"x":1567078140000,"y":0.1},{"x":1567078200000,"y":0.28},{"x":1567078260000,"y":0.1},{"x":1567078320000,"y":0.17},{"x":1567078380000,"y":0.25},{"x":1567078440000,"y":0.15},{"x":1567078500000,"y":0.27},{"x":1567078560000,"y":0.12},{"x":1567078620000,"y":0.12},{"x":1567078680000,"y":0.3},{"x":1567078740000,"y":12.84},{"x":1567078800000,"y":6.11},{"x":1567078860000,"y":0.15},{"x":1567078920000,"y":0.18},{"x":1567078980000,"y":0.35},{"x":1567079040000,"y":0.17},{"x":1567079100000,"y":0.28},{"x":1567079160000,"y":0.14},{"x":1567079220000,"y":0.21},{"x":1567079280000,"y":0.34},{"x":1567079340000,"y":0.16},{"x":1567079400000,"y":0.23},{"x":1567079460000,"y":0.12},{"x":1567079520000,"y":0.11},{"x":1567079580000,"y":0.32},{"x":1567079640000,"y":0.23},{"x":1567079700000,"y":0.19},{"x":1567079760000,"y":0.14},{"x":1567079820000,"y":0.13},{"x":1567079880000,"y":0.26},{"x":1567079940000,"y":0.24},{"x":1567080000000,"y":0.38},{"x":1567080060000,"y":0.18},{"x":1567080120000,"y":0.19},{"x":1567080180000,"y":0.28},{"x":1567080240000,"y":0.12},{"x":1567080300000,"y":0.25},{"x":1567080360000,"y":0.11},{"x":1567080420000,"y":0.13},{"x":1567080480000,"y":0.13},{"x":1567080540000,"y":0.72},{"x":1567080600000,"y":0.26},{"x":1567080660000,"y":0.1},{"x":1567080720000,"y":0.16},{"x":1567080780000,"y":0.28},{"x":1567080840000,"y":0.35},{"x":1567080900000,"y":0.35},{"x":1567080960000,"y":0.16},{"x":1567081020000,"y":0.15},{"x":1567081080000,"y":0.15},{"x":1567081140000,"y":0.32},{"x":1567081200000,"y":0.34},{"x":1567081260000,"y":0.2},{"x":1567081320000,"y":0.16},{"x":1567081380000,"y":0.15},{"x":1567081440000,"y":0.3},{"x":1567081500000,"y":0.22},{"x":1567081560000,"y":0.13},{"x":1567081620000,"y":0.16},{"x":1567081680000,"y":0.18},{"x":1567081740000,"y":0.32},{"x":1567081800000,"y":0.31},{"x":1567081860000,"y":0.15},{"x":1567081920000,"y":0.15},{"x":1567081980000,"y":0.19},{"x":1567082040000,"y":0.34},{"x":1567082100000,"y":0.39},{"x":1567082160000,"y":0.13},{"x":1567082220000,"y":0.19},{"x":1567082280000,"y":0.2},{"x":1567082340000,"y":0.52},{"x":1567082400000,"y":0.42},{"x":1567082460000,"y":0.18},{"x":1567082520000,"y":0.15},{"x":1567082580000,"y":0.17},{"x":1567082640000,"y":0.25},{"x":1567082700000,"y":0.75},{"x":1567082760000,"y":0.11},{"x":1567082820000,"y":0.13},{"x":1567082880000,"y":0.11},{"x":1567082940000,"y":0.1},{"x":1567083000000,"y":0.47},{"x":1567083060000,"y":0.12},{"x":1567083120000,"y":0.19},{"x":1567083180000,"y":0.16},{"x":1567083240000,"y":0.12},{"x":1567083300000,"y":0.34},{"x":1567083360000,"y":0.19},{"x":1567083420000,"y":0.16},{"x":1567083480000,"y":0.14},{"x":1567083540000,"y":0.17},{"x":1567083600000,"y":0.52},{"x":1567083660000,"y":0.18},{"x":1567083720000,"y":0.25},{"x":1567083780000,"y":0.22},{"x":1567083840000,"y":0.19},{"x":1567083900000,"y":0.46},{"x":1567083960000,"y":0.12},{"x":1567084020000,"y":0.18},{"x":1567084080000,"y":0.22},{"x":1567084140000,"y":0.31},{"x":1567084200000,"y":0.59},{"x":1567084260000,"y":0.21},{"x":1567084320000,"y":0.18},{"x":1567084380000,"y":0.15},{"x":1567084440000,"y":0.24},{"x":1567084500000,"y":0.52},{"x":1567084560000,"y":0.17},{"x":1567084620000,"y":0.17},{"x":1567084680000,"y":0.24},{"x":1567084740000,"y":0.17},{"x":1567084800000,"y":0.42},{"x":1567084860000,"y":0.18},{"x":1567084920000,"y":0.23},{"x":1567084980000,"y":0.3},{"x":1567085040000,"y":0.27},{"x":1567085100000,"y":0.41},{"x":1567085160000,"y":0.39},{"x":1567085220000,"y":0.16},{"x":1567085280000,"y":0.27},{"x":1567085340000,"y":0.18},{"x":1567085400000,"y":0.27},{"x":1567085460000,"y":0.41},{"x":1567085520000,"y":0.24},{"x":1567085580000,"y":0.28},{"x":1567085640000,"y":0.26},{"x":1567085700000,"y":0.4},{"x":1567085760000,"y":0.43},{"x":1567085820000,"y":0.2},{"x":1567085880000,"y":0.29},{"x":1567085940000,"y":0.52},{"x":1567086000000,"y":0.28},{"x":1567086060000,"y":0.32},{"x":1567086120000,"y":0.17},{"x":1567086180000,"y":0.19},{"x":1567086240000,"y":0.17},{"x":1567086300000,"y":0.3},{"x":1567086360000,"y":0.32},{"x":1567086420000,"y":0.2},{"x":1567086480000,"y":0.22},{"x":1567086540000,"y":0.25},{"x":1567086600000,"y":0.38},{"x":1567086660000,"y":0.44},{"x":1567086720000,"y":0.22},{"x":1567086780000,"y":0.18},{"x":1567086840000,"y":0.17},{"x":1567086900000,"y":0.32},{"x":1567086960000,"y":0.32},{"x":1567087020000,"y":0.22},{"x":1567087080000,"y":0.17},{"x":1567087140000,"y":0.24},{"x":1567087200000,"y":0.47},{"x":1567087260000,"y":0.38},{"x":1567087320000,"y":0.21},{"x":1567087380000,"y":0.18},{"x":1567087440000,"y":0.21},{"x":1567087500000,"y":0.32},{"x":1567087560000,"y":0.34},{"x":1567087620000,"y":0.2},{"x":1567087680000,"y":0.19},{"x":1567087740000,"y":0.36},{"x":1567087800000,"y":0.27},{"x":1567087860000,"y":0.24},{"x":1567087920000,"y":0.35},{"x":1567087980000,"y":0.29},{"x":1567088040000,"y":0.21},{"x":1567088100000,"y":0.29},{"x":1567088160000,"y":0.19},{"x":1567088220000,"y":0.35},{"x":1567088280000,"y":0.17},{"x":1567088340000,"y":0.19},{"x":1567088400000,"y":0.27},{"x":1567088460000,"y":0.18},{"x":1567088520000,"y":0.35},{"x":1567088580000,"y":0.2},{"x":1567088640000,"y":0.21},{"x":1567088700000,"y":0.31},{"x":1567088760000,"y":0.22},{"x":1567088820000,"y":0.43},{"x":1567088880000,"y":0.25},{"x":1567088940000,"y":0.19},{"x":1567089000000,"y":0.39},{"x":1567089060000,"y":0.21},{"x":1567089120000,"y":0.37},{"x":1567089180000,"y":0.25},{"x":1567089240000,"y":0.29},{"x":1567089300000,"y":0.37},{"x":1567089360000,"y":0.21},{"x":1567089420000,"y":0.37},{"x":1567089480000,"y":0.19},{"x":1567089540000,"y":0.34},{"x":1567089600000,"y":0.33},{"x":1567089660000,"y":0.24},{"x":1567089720000,"y":0.38},{"x":1567089780000,"y":0.22},{"x":1567089840000,"y":0.29},{"x":1567089900000,"y":0.34},{"x":1567089960000,"y":0.18},{"x":1567090020000,"y":0.24},{"x":1567090080000,"y":0.43},{"x":1567090140000,"y":0.25},{"x":1567090200000,"y":0.46},{"x":1567090260000,"y":0.25},{"x":1567090320000,"y":0.24},{"x":1567090380000,"y":0.39},{"x":1567090440000,"y":0.34},{"x":1567090500000,"y":0.38},{"x":1567090560000,"y":0.28},{"x":1567090620000,"y":0.27},{"x":1567090680000,"y":0.41},{"x":1567090740000,"y":0.22},{"x":1567090800000,"y":0.55},{"x":1567090860000,"y":0.36},{"x":1567090920000,"y":0.34},{"x":1567090980000,"y":0.46},{"x":1567091040000,"y":0.27},{"x":1567091100000,"y":0.38},{"x":1567091160000,"y":0.28},{"x":1567091220000,"y":0.3},{"x":1567091280000,"y":0.36},{"x":1567091340000,"y":0.51},{"x":1567091400000,"y":0.4},{"x":1567091460000,"y":0.3},{"x":1567091520000,"y":0.25},{"x":1567091580000,"y":0.36},{"x":1567091640000,"y":0.27},{"x":1567091700000,"y":0.41},{"x":1567091760000,"y":0.22},{"x":1567091820000,"y":0.22},{"x":1567091880000,"y":0.33},{"x":1567091940000,"y":0.21},{"x":1567092000000,"y":0.34},{"x":1567092060000,"y":0.28},{"x":1567092120000,"y":0.27},{"x":1567092180000,"y":0.28},{"x":1567092240000,"y":0.48},{"x":1567092300000,"y":0.44},{"x":1567092360000,"y":0.29},{"x":1567092420000,"y":0.24},{"x":1567092480000,"y":0.29},{"x":1567092540000,"y":0.4},{"x":1567092600000,"y":0.37},{"x":1567092660000,"y":0.32},{"x":1567092720000,"y":0.33},{"x":1567092780000,"y":0.26},{"x":1567092840000,"y":0.4},{"x":1567092900000,"y":0.4},{"x":1567092960000,"y":0.24},{"x":1567093020000,"y":0.19},{"x":1567093080000,"y":0.25},{"x":1567093140000,"y":0.74},{"x":1567093200000,"y":0.36},{"x":1567093260000,"y":0.25},{"x":1567093320000,"y":0.22},{"x":1567093380000,"y":0.31},{"x":1567093440000,"y":0.44},{"x":1567093500000,"y":0.51},{"x":1567093560000,"y":0.25},{"x":1567093620000,"y":0.27},{"x":1567093680000,"y":0.29},{"x":1567093740000,"y":0.37},{"x":1567093800000,"y":0.42},{"x":1567093860000,"y":0.29},{"x":1567093920000,"y":0.22},{"x":1567093980000,"y":0.22},{"x":1567094040000,"y":0.51},{"x":1567094100000,"y":0.4},{"x":1567094160000,"y":0.33},{"x":1567094220000,"y":0.25},{"x":1567094280000,"y":0.23},{"x":1567094340000,"y":0.23},{"x":1567094400000,"y":9.02},{"x":1567094460000,"y":0.4},{"x":1567094520000,"y":0.23},{"x":1567094580000,"y":0.22},{"x":1567094640000,"y":0.23},{"x":1567094700000,"y":0.56},{"x":1567094760000,"y":0.27},{"x":1567094820000,"y":0.22},{"x":1567094880000,"y":0.25},{"x":1567094940000,"y":0.4},{"x":1567095000000,"y":0.46},{"x":1567095060000,"y":0.27},{"x":1567095120000,"y":0.34},{"x":1567095180000,"y":0.56},{"x":1567095240000,"y":0.29},{"x":1567095300000,"y":0.52},{"x":1567095360000,"y":0.22},{"x":1567095420000,"y":0.27},{"x":1567095480000,"y":0.2},{"x":1567095540000,"y":0.14},{"x":1567095600000,"y":0.56},{"x":1567095660000,"y":0.17},{"x":1567095720000,"y":0.15},{"x":1567095780000,"y":0.15},{"x":1567095840000,"y":0.21},{"x":1567095900000,"y":3.2},{"x":1567095960000,"y":0.19},{"x":1567096020000,"y":0.18},{"x":1567096080000,"y":0.19},{"x":1567096140000,"y":0.21},{"x":1567096200000,"y":0.57},{"x":1567096260000,"y":0.18},{"x":1567096320000,"y":0.29},{"x":1567096380000,"y":0.18},{"x":1567096440000,"y":0.22},{"x":1567096500000,"y":0.42},{"x":1567096560000,"y":0.52},{"x":1567096620000,"y":0.2},{"x":1567096680000,"y":0.16},{"x":1567096740000,"y":0.36},{"x":1567096800000,"y":0.29},{"x":1567096860000,"y":0.36},{"x":1567096920000,"y":0.21},{"x":1567096980000,"y":0.33},{"x":1567097040000,"y":0.27},{"x":1567097100000,"y":0.49},{"x":1567097160000,"y":0.3},{"x":1567097220000,"y":0.24},{"x":1567097280000,"y":0.2},{"x":1567097340000,"y":0.22},{"x":1567097400000,"y":0.33},{"x":1567097460000,"y":0.41},{"x":1567097520000,"y":0.53},{"x":1567097580000,"y":1.01},{"x":1567097640000,"y":0.82},{"x":1567097700000,"y":1.05},{"x":1567097760000,"y":0.32},{"x":1567097820000,"y":0.22},{"x":1567097880000,"y":0.16},{"x":1567097940000,"y":0.23},{"x":1567098000000,"y":0.53},{"x":1567098060000,"y":0.45},{"x":1567098120000,"y":0.17},{"x":1567098180000,"y":0.28},{"x":1567098240000,"y":0.24},{"x":1567098300000,"y":0.59},{"x":1567098360000,"y":0.34},{"x":1567098420000,"y":20.91},{"x":1567098480000,"y":0.19},{"x":1567098540000,"y":0.62},{"x":1567098600000,"y":0.38},{"x":1567098660000,"y":0.45},{"x":1567098720000,"y":0.28},{"x":1567098780000,"y":0.38},{"x":1567098840000,"y":0.24},{"x":1567098900000,"y":0.35},{"x":1567098960000,"y":0.42},{"x":1567099020000,"y":0.19},{"x":1567099080000,"y":0.19},{"x":1567099140000,"y":0.28},{"x":1567099200000,"y":0.42},{"x":1567099260000,"y":0.23},{"x":1567099320000,"y":0.55},{"x":1567099380000,"y":0.2},{"x":1567099440000,"y":0.22},{"x":1567099500000,"y":0.37},{"x":1567099560000,"y":0.15},{"x":1567099620000,"y":0.41},{"x":1567099680000,"y":0.22},{"x":1567099740000,"y":0.23},{"x":1567099800000,"y":0.37},{"x":1567099860000,"y":0.15},{"x":1567099920000,"y":0.33},{"x":1567099980000,"y":0.19},{"x":1567100040000,"y":0.2},{"x":1567100100000,"y":0.38},{"x":1567100160000,"y":0.15},{"x":1567100220000,"y":0.35},{"x":1567100280000,"y":0.17},{"x":1567100340000,"y":0.33},{"x":1567100400000,"y":0.36},{"x":1567100460000,"y":0.19},{"x":1567100520000,"y":0.3},{"x":1567100580000,"y":0.18},{"x":1567100640000,"y":0.19},{"x":1567100700000,"y":0.33},{"x":1567100760000,"y":0.19},{"x":1567100820000,"y":0.38},{"x":1567100880000,"y":0.18},{"x":1567100940000,"y":0.2},{"x":1567101000000,"y":0.41},{"x":1567101060000,"y":0.25},{"x":1567101120000,"y":0.32},{"x":1567101180000,"y":0.12},{"x":1567101240000,"y":0.12},{"x":1567101300000,"y":0.4},{"x":1567101360000,"y":0.16},{"x":1567101420000,"y":0.25},{"x":1567101480000,"y":0.16},{"x":1567101540000,"y":0.16},{"x":1567101600000,"y":0.41},{"x":1567101660000,"y":0.29},{"x":1567101720000,"y":0.2},{"x":1567101780000,"y":0.3},{"x":1567101840000,"y":0.24},{"x":1567101900000,"y":0.46},{"x":1567101960000,"y":0.17},{"x":1567102020000,"y":0.19},{"x":1567102080000,"y":0.35},{"x":1567102140000,"y":0.39},{"x":1567102200000,"y":0.52},{"x":1567102260000,"y":0.18},{"x":1567102320000,"y":0.16},{"x":1567102380000,"y":0.36},{"x":1567102440000,"y":0.24},{"x":1567102500000,"y":0.44},{"x":1567102560000,"y":0.15},{"x":1567102620000,"y":0.25},{"x":1567102680000,"y":0.38},{"x":1567102740000,"y":1.95},{"x":1567102800000,"y":0.37},{"x":1567102860000,"y":0.23},{"x":1567102920000,"y":0.22},{"x":1567102980000,"y":0.49},{"x":1567103040000,"y":0.27},{"x":1567103100000,"y":0.38},{"x":1567103160000,"y":1.74},{"x":1567103220000,"y":0.19},{"x":1567103280000,"y":0.37},{"x":1567103340000,"y":0.12},{"x":1567103400000,"y":0.38},{"x":1567103460000,"y":0.17},{"x":1567103520000,"y":0.17},{"x":1567103580000,"y":0.31},{"x":1567103640000,"y":0.16},{"x":1567103700000,"y":0.33},{"x":1567103760000,"y":0.21},{"x":1567103820000,"y":0.11},{"x":1567103880000,"y":0.13},{"x":1567103940000,"y":0.58},{"x":1567104000000,"y":0.31},{"x":1567104060000,"y":0.22},{"x":1567104120000,"y":0.18},{"x":1567104180000,"y":0.17},{"x":1567104240000,"y":0.3},{"x":1567104300000,"y":0.31},{"x":1567104360000,"y":0.19},{"x":1567104420000,"y":0.2},{"x":1567104480000,"y":0.18},{"x":1567104540000,"y":0.32},{"x":1567104600000,"y":0.22},{"x":1567104660000,"y":0.16},{"x":1567104720000,"y":0.13},{"x":1567104780000,"y":0.21},{"x":1567104840000,"y":0.31},{"x":1567104900000,"y":0.25},{"x":1567104960000,"y":0.24},{"x":1567105020000,"y":0.15},{"x":1567105080000,"y":0.15},{"x":1567105140000,"y":0.36},{"x":1567105200000,"y":0.43},{"x":1567105260000,"y":0.17},{"x":1567105320000,"y":0.16},{"x":1567105380000,"y":0.19},{"x":1567105440000,"y":0.52},{"x":1567105500000,"y":0.34},{"x":1567105560000,"y":0.16},{"x":1567105620000,"y":0.26},{"x":1567105680000,"y":0.17},{"x":1567105740000,"y":0.54},{"x":1567105800000,"y":0.3},{"x":1567105860000,"y":0.26},{"x":1567105920000,"y":0.31},{"x":1567105980000,"y":0.19},{"x":1567106040000,"y":0.39},{"x":1567106100000,"y":0.38},{"x":1567106160000,"y":0.15},{"x":1567106220000,"y":20.03},{"x":1567106280000,"y":0.51},{"x":1567106340000,"y":19.4},{"x":1567106400000,"y":19.3},{"x":1567106460000,"y":0.37},{"x":1567106520000,"y":19.67},{"x":1567106580000,"y":0.58},{"x":1567106640000,"y":0.33},{"x":1567106700000,"y":0.67},{"x":1567106760000,"y":0.25},{"x":1567106820000,"y":0.28},{"x":1567106880000,"y":0.32},{"x":1567106940000,"y":0.3},{"x":1567107000000,"y":0.65},{"x":1567107060000,"y":0.25},{"x":1567107120000,"y":0.32},{"x":1567107180000,"y":0.23},{"x":1567107240000,"y":18.9},{"x":1567107300000,"y":0.57},{"x":1567107360000,"y":20.33},{"x":1567107420000,"y":1.57},{"x":1567107480000,"y":22.68},{"x":1567107540000,"y":0.71},{"x":1567107600000,"y":0.55},{"x":1567107660000,"y":0.17},{"x":1567107720000,"y":0.24},{"x":1567107780000,"y":2.54},{"x":1567107840000,"y":18.61},{"x":1567107900000,"y":20.13},{"x":1567107960000,"y":0.39},{"x":1567108020000,"y":0.32},{"x":1567108080000,"y":0.24},{"x":1567108140000,"y":0.17},{"x":1567108200000,"y":2.05},{"x":1567108260000,"y":18.81},{"x":1567108320000,"y":19.11},{"x":1567108380000,"y":19.4},{"x":1567108440000,"y":0.5},{"x":1567108500000,"y":0.54},{"x":1567108560000,"y":0.34},{"x":1567108620000,"y":0.19},{"x":1567108680000,"y":0.2},{"x":1567108740000,"y":0.24},{"x":1567108800000,"y":0.76},{"x":1567108860000,"y":0.2},{"x":1567108920000,"y":0.3},{"x":1567108980000,"y":0.18},{"x":1567109040000,"y":0.26},{"x":1567109100000,"y":0.31},{"x":1567109160000,"y":0.42},{"x":1567109220000,"y":0.3},{"x":1567109280000,"y":0.31},{"x":1567109340000,"y":0.61},{"x":1567109400000,"y":0.3},{"x":1567109460000,"y":0.43},{"x":1567109520000,"y":0.35},{"x":1567109580000,"y":0.5},{"x":1567109640000,"y":0.35},{"x":1567109700000,"y":8.22},{"x":1567109760000,"y":13.72},{"x":1567109820000,"y":0.53},{"x":1567109880000,"y":0.25},{"x":1567109940000,"y":0.13},{"x":1567110000000,"y":0.32},{"x":1567110060000,"y":0.43},{"x":1567110120000,"y":0.29},{"x":1567110180000,"y":0.3},{"x":1567110240000,"y":0.29},{"x":1567110300000,"y":0.33},{"x":1567110360000,"y":0.3},{"x":1567110420000,"y":0.56},{"x":1567110480000,"y":0.48},{"x":1567110540000,"y":0.35},{"x":1567110600000,"y":0.51},{"x":1567110660000,"y":0.39},{"x":1567110720000,"y":0.47},{"x":1567110780000,"y":19.07},{"x":1567110840000,"y":0.5},{"x":1567110900000,"y":1},{"x":1567110960000,"y":20.81},{"x":1567111020000,"y":0.8},{"x":1567111080000,"y":0.27},{"x":1567111140000,"y":0.39},{"x":1567111200000,"y":0.27},{"x":1567111260000,"y":0.37},{"x":1567111320000,"y":0.26},{"x":1567111380000,"y":0.19},{"x":1567111440000,"y":0.21},{"x":1567111500000,"y":0.29},{"x":1567111560000,"y":0.19},{"x":1567111620000,"y":0.49},{"x":1567111680000,"y":0.18},{"x":1567111740000,"y":0.17},{"x":1567111800000,"y":0.36},{"x":1567111860000,"y":0.21},{"x":1567111920000,"y":0.31},{"x":1567111980000,"y":0.17},{"x":1567112040000,"y":0.17},{"x":1567112100000,"y":0.32},{"x":1567112160000,"y":0.21},{"x":1567112220000,"y":0.41},{"x":1567112280000,"y":0.22},{"x":1567112340000,"y":0.2},{"x":1567112400000,"y":0.53},{"x":1567112460000,"y":0.38},{"x":1567112520000,"y":0.42},{"x":1567112580000,"y":0.24},{"x":1567112640000,"y":0.18},{"x":1567112700000,"y":0.5},{"x":1567112760000,"y":0.3},{"x":1567112820000,"y":0.45},{"x":1567112880000,"y":0.28},{"x":1567112940000,"y":0.51},{"x":1567113000000,"y":0.48},{"x":1567113060000,"y":0.25},{"x":1567113120000,"y":0.31},{"x":1567113180000,"y":0.16},{"x":1567113240000,"y":0.24},{"x":1567113300000,"y":0.41},{"x":1567113360000,"y":0.2},{"x":1567113420000,"y":0.51},{"x":1567113480000,"y":0.23},{"x":1567113540000,"y":0.21},{"x":1567113600000,"y":0.52},{"x":1567113660000,"y":0.15},{"x":1567113720000,"y":0.3},{"x":1567113780000,"y":0.16},{"x":1567113840000,"y":0.14},{"x":1567113900000,"y":0.26},{"x":1567113960000,"y":0.12},{"x":1567114020000,"y":0.15},{"x":1567114080000,"y":0.31},{"x":1567114140000,"y":0.15},{"x":1567114200000,"y":0.3},{"x":1567114260000,"y":0.11},{"x":1567114320000,"y":0.18},{"x":1567114380000,"y":0.3},{"x":1567114440000,"y":0.22},{"x":1567114500000,"y":0.23},{"x":1567114560000,"y":0.13},{"x":1567114620000,"y":0.13},{"x":1567114680000,"y":0.3},{"x":1567114740000,"y":0.37},{"x":1567114800000,"y":0.3},{"x":1567114860000,"y":0.11},{"x":1567114920000,"y":0.14},{"x":1567114980000,"y":0.26},{"x":1567115040000,"y":0.17},{"x":1567115100000,"y":0.24},{"x":1567115160000,"y":0.15},{"x":1567115220000,"y":0.17},{"x":1567115280000,"y":0.37},{"x":1567115340000,"y":0.16},{"x":1567115400000,"y":0.35},{"x":1567115460000,"y":0.08},{"x":1567115520000,"y":0.1},{"x":1567115580000,"y":0.31},{"x":1567115640000,"y":0.17},{"x":1567115700000,"y":0.29},{"x":1567115760000,"y":0.12},{"x":1567115820000,"y":0.15},{"x":1567115880000,"y":0.33},{"x":1567115940000,"y":0.16},{"x":1567116000000,"y":0.4},{"x":1567116060000,"y":0.13},{"x":1567116120000,"y":0.22},{"x":1567116180000,"y":0.22},{"x":1567116240000,"y":5.45},{"x":1567116300000,"y":0.24},{"x":1567116360000,"y":0.16},{"x":1567116420000,"y":0.13},{"x":1567116480000,"y":0.2},{"x":1567116540000,"y":0.48},{"x":1567116600000,"y":0.39},{"x":1567116660000,"y":0.17},{"x":1567116720000,"y":0.16},{"x":1567116780000,"y":0.21},{"x":1567116840000,"y":0.32},{"x":1567116900000,"y":0.31},{"x":1567116960000,"y":0.15},{"x":1567117020000,"y":0.15},{"x":1567117080000,"y":0.18},{"x":1567117140000,"y":0.32},{"x":1567117200000,"y":0.25},{"x":1567117260000,"y":0.12},{"x":1567117320000,"y":0.17},{"x":1567117380000,"y":0.13},{"x":1567117440000,"y":0.3},{"x":1567117500000,"y":0.23},{"x":1567117560000,"y":0.11},{"x":1567117620000,"y":0.15},{"x":1567117680000,"y":0.17},{"x":1567117740000,"y":0.35},{"x":1567117800000,"y":0.28},{"x":1567117860000,"y":0.12},{"x":1567117920000,"y":0.11},{"x":1567117980000,"y":0.15},{"x":1567118040000,"y":0.31},{"x":1567118100000,"y":0.39},{"x":1567118160000,"y":0.17},{"x":1567118220000,"y":0.12},{"x":1567118280000,"y":0.16},{"x":1567118340000,"y":0.3},{"x":1567118400000,"y":0.48},{"x":1567118460000,"y":0.21},{"x":1567118520000,"y":0.22},{"x":1567118580000,"y":0.2},{"x":1567118640000,"y":0.18},{"x":1567118700000,"y":0.52},{"x":1567118760000,"y":0.12},{"x":1567118820000,"y":0.29},{"x":1567118880000,"y":0.2},{"x":1567118940000,"y":0.28},{"x":1567119000000,"y":0.44},{"x":1567119060000,"y":0.17},{"x":1567119120000,"y":0.17},{"x":1567119180000,"y":0.21},{"x":1567119240000,"y":0.22},{"x":1567119300000,"y":0.63},{"x":1567119360000,"y":0.17},{"x":1567119420000,"y":0.17},{"x":1567119480000,"y":0.17},{"x":1567119540000,"y":0.17},{"x":1567119600000,"y":0.64},{"x":1567119660000,"y":0.2},{"x":1567119720000,"y":0.19},{"x":1567119780000,"y":0.2},{"x":1567119840000,"y":0.24},{"x":1567119900000,"y":0.55},{"x":1567119960000,"y":0.21},{"x":1567120020000,"y":0.21},{"x":1567120080000,"y":0.23},{"x":1567120140000,"y":0.34},{"x":1567120200000,"y":0.48},{"x":1567120260000,"y":0.22},{"x":1567120320000,"y":0.21},{"x":1567120380000,"y":0.16},{"x":1567120440000,"y":0.16},{"x":1567120500000,"y":0.53},{"x":1567120560000,"y":0.17},{"x":1567120620000,"y":0.17},{"x":1567120680000,"y":0.17},{"x":1567120740000,"y":0.19},{"x":1567120800000,"y":0.41},{"x":1567120860000,"y":0.21},{"x":1567120920000,"y":0.66},{"x":1567120980000,"y":0.16},{"x":1567121040000,"y":0.17},{"x":1567121100000,"y":0.34},{"x":1567121160000,"y":0.3},{"x":1567121220000,"y":0.24},{"x":1567121280000,"y":0.21},{"x":1567121340000,"y":0.18},{"x":1567121400000,"y":0.44},{"x":1567121460000,"y":0.33},{"x":1567121520000,"y":0.21},{"x":1567121580000,"y":0.22},{"x":1567121640000,"y":0.17},{"x":1567121700000,"y":0.29},{"x":1567121760000,"y":0.3},{"x":1567121820000,"y":0.17},{"x":1567121880000,"y":0.18},{"x":1567121940000,"y":0.35},{"x":1567122000000,"y":0.29},{"x":1567122060000,"y":0.32},{"x":1567122120000,"y":0.16},{"x":1567122180000,"y":0.17},{"x":1567122240000,"y":0.14},{"x":1567122300000,"y":0.36},{"x":1567122360000,"y":0.32},{"x":1567122420000,"y":0.17},{"x":1567122480000,"y":0.17},{"x":1567122540000,"y":0.17},{"x":1567122600000,"y":0.24},{"x":1567122660000,"y":0.33},{"x":1567122720000,"y":0.16},{"x":1567122780000,"y":0.17},{"x":1567122840000,"y":0.19},{"x":1567122900000,"y":0.3},{"x":1567122960000,"y":0.32},{"x":1567123020000,"y":0.19},{"x":1567123080000,"y":0.17},{"x":1567123140000,"y":0.2},{"x":1567123200000,"y":0.35},{"x":1567123260000,"y":0.23},{"x":1567123320000,"y":0.36},{"x":1567123380000,"y":0.2},{"x":1567123440000,"y":0.22},{"x":1567123500000,"y":0.34},{"x":1567123560000,"y":0.17},{"x":1567123620000,"y":0.33},{"x":1567123680000,"y":0.16},{"x":1567123740000,"y":0.33},{"x":1567123800000,"y":0.33},{"x":1567123860000,"y":0.19},{"x":1567123920000,"y":0.36},{"x":1567123980000,"y":0.19},{"x":1567124040000,"y":0.2},{"x":1567124100000,"y":0.34},{"x":1567124160000,"y":0.26},{"x":1567124220000,"y":0.39},{"x":1567124280000,"y":0.22},{"x":1567124340000,"y":0.15},{"x":1567124400000,"y":0.28},{"x":1567124460000,"y":0.23},{"x":1567124520000,"y":1.82},{"x":1567124580000,"y":0.27},{"x":1567124640000,"y":0.17},{"x":1567124700000,"y":0.27},{"x":1567124760000,"y":0.18},{"x":1567124820000,"y":0.32},{"x":1567124880000,"y":0.17},{"x":1567124940000,"y":0.15},{"x":1567125000000,"y":0.29},{"x":1567125060000,"y":0.18},{"x":1567125120000,"y":0.29},{"x":1567125180000,"y":0.16},{"x":1567125240000,"y":0.23},{"x":1567125300000,"y":0.38},{"x":1567125360000,"y":0.25},{"x":1567125420000,"y":0.28},{"x":1567125480000,"y":0.19},{"x":1567125540000,"y":0.48},{"x":1567125600000,"y":0.32},{"x":1567125660000,"y":0.2},{"x":1567125720000,"y":0.19},{"x":1567125780000,"y":0.33},{"x":1567125840000,"y":0.18},{"x":1567125900000,"y":0.36},{"x":1567125960000,"y":0.17},{"x":1567126020000,"y":0.19},{"x":1567126080000,"y":0.37},{"x":1567126140000,"y":0.17},{"x":1567126200000,"y":0.29},{"x":1567126260000,"y":0.19},{"x":1567126320000,"y":0.16},{"x":1567126380000,"y":0.37},{"x":1567126440000,"y":0.18},{"x":1567126500000,"y":0.25},{"x":1567126560000,"y":0.19},{"x":1567126620000,"y":0.2},{"x":1567126680000,"y":0.32},{"x":1567126740000,"y":0.17},{"x":1567126800000,"y":0.4},{"x":1567126860000,"y":0.17},{"x":1567126920000,"y":0.22},{"x":1567126980000,"y":0.3},{"x":1567127040000,"y":0.15},{"x":1567127100000,"y":0.24},{"x":1567127160000,"y":0.19},{"x":1567127220000,"y":0.15},{"x":1567127280000,"y":0.3},{"x":1567127340000,"y":0.45},{"x":1567127400000,"y":0.29},{"x":1567127460000,"y":0.58},{"x":1567127520000,"y":0.19},{"x":1567127580000,"y":0.38},{"x":1567127640000,"y":0.23},{"x":1567127700000,"y":0.38},{"x":1567127760000,"y":0.2},{"x":1567127820000,"y":0.17},{"x":1567127880000,"y":0.15},{"x":1567127940000,"y":0.34},{"x":1567128000000,"y":0.34},{"x":1567128060000,"y":0.2},{"x":1567128120000,"y":1.41},{"x":1567128180000,"y":0.18},{"x":1567128240000,"y":0.32},{"x":1567128300000,"y":0.22},{"x":1567128360000,"y":0.2},{"x":1567128420000,"y":0.17},{"x":1567128480000,"y":0.18},{"x":1567128540000,"y":0.33},{"x":1567128600000,"y":1.37},{"x":1567128660000,"y":0.14},{"x":1567128720000,"y":0.14},{"x":1567128780000,"y":0.1},{"x":1567128840000,"y":0.26},{"x":1567128900000,"y":0.19},{"x":1567128960000,"y":0.1},{"x":1567129020000,"y":0.07},{"x":1567129080000,"y":0.08},{"x":1567129140000,"y":0.47},{"x":1567129200000,"y":0.23},{"x":1567129260000,"y":0.12},{"x":1567129320000,"y":0.09},{"x":1567129380000,"y":0.1},{"x":1567129440000,"y":0.21},{"x":1567129500000,"y":0.28},{"x":1567129560000,"y":0.09},{"x":1567129620000,"y":0.13},{"x":1567129680000,"y":0.11},{"x":1567129740000,"y":0.23},{"x":1567129800000,"y":0.22},{"x":1567129860000,"y":0.12},{"x":1567129920000,"y":0.13},{"x":1567129980000,"y":0.15},{"x":1567130040000,"y":0.23},{"x":1567130100000,"y":0.19},{"x":1567130160000,"y":0.15},{"x":1567130220000,"y":0.1},{"x":1567130280000,"y":0.09},{"x":1567130340000,"y":0.1},{"x":1567130400000,"y":0.54},{"x":1567130460000,"y":0.23},{"x":1567130520000,"y":0.16},{"x":1567130580000,"y":0.12},{"x":1567130640000,"y":0.14},{"x":1567130700000,"y":0.37},{"x":1567130760000,"y":0.11},{"x":1567130820000,"y":0.12},{"x":1567130880000,"y":0.17},{"x":1567130940000,"y":0.22},{"x":1567131000000,"y":0.39},{"x":1567131060000,"y":0.1},{"x":1567131120000,"y":0.13},{"x":1567131180000,"y":0.26},{"x":1567131240000,"y":0.15},{"x":1567131300000,"y":0.44},{"x":1567131360000,"y":0.12},{"x":1567131420000,"y":0.15},{"x":1567131480000,"y":0.16},{"x":1567131540000,"y":0.14},{"x":1567131600000,"y":0.31},{"x":1567131660000,"y":0.19},{"x":1567131720000,"y":2},{"x":1567131780000,"y":0.13},{"x":1567131840000,"y":0.19},{"x":1567131900000,"y":0.36},{"x":1567131960000,"y":0.1},{"x":1567132020000,"y":0.12},{"x":1567132080000,"y":0.1},{"x":1567132140000,"y":0.16},{"x":1567132200000,"y":1.17},{"x":1567132260000,"y":0.12},{"x":1567132320000,"y":0.12},{"x":1567132380000,"y":0.15},{"x":1567132440000,"y":0.15},{"x":1567132500000,"y":0.31},{"x":1567132560000,"y":0.24},{"x":1567132620000,"y":0.15},{"x":1567132680000,"y":0.14},{"x":1567132740000,"y":0.26},{"x":1567132800000,"y":0.21},{"x":1567132860000,"y":0.25},{"x":1567132920000,"y":0.15},{"x":1567132980000,"y":0.13},{"x":1567133040000,"y":0.13},{"x":1567133100000,"y":0.22},{"x":1567133160000,"y":0.25},{"x":1567133220000,"y":0.13},{"x":1567133280000,"y":0.1},{"x":1567133340000,"y":0.1},{"x":1567133400000,"y":0.28},{"x":1567133460000,"y":0.24},{"x":1567133520000,"y":0.11},{"x":1567133580000,"y":0.11},{"x":1567133640000,"y":0.12},{"x":1567133700000,"y":0.15},{"x":1567133760000,"y":0.25},{"x":1567133820000,"y":0.14},{"x":1567133880000,"y":0.1},{"x":1567133940000,"y":0.13},{"x":1567134000000,"y":0.5},{"x":1567134060000,"y":0.3},{"x":1567134120000,"y":0.13},{"x":1567134180000,"y":0.09},{"x":1567134240000,"y":0.1},{"x":1567134300000,"y":0.3},{"x":1567134360000,"y":0.35},{"x":1567134420000,"y":0.12},{"x":1567134480000,"y":0.09},{"x":1567134540000,"y":0.38},{"x":1567134600000,"y":0.27},{"x":1567134660000,"y":0.25},{"x":1567134720000,"y":0.09},{"x":1567134780000,"y":0.12},{"x":1567134840000,"y":0.15},{"x":1567134900000,"y":0.28},{"x":1567134960000,"y":0.09},{"x":1567135020000,"y":0.28},{"x":1567135080000,"y":0.1},{"x":1567135140000,"y":0.16},{"x":1567135200000,"y":0.25},{"x":1567135260000,"y":0.09},{"x":1567135320000,"y":0.2},{"x":1567135380000,"y":0.49},{"x":1567135440000,"y":0.08},{"x":1567135500000,"y":0.19},{"x":1567135560000,"y":0.08},{"x":1567135620000,"y":0.29},{"x":1567135680000,"y":0.11},{"x":1567135740000,"y":0.13},{"x":1567135800000,"y":0.16},{"x":1567135860000,"y":0.09},{"x":1567135920000,"y":0.24},{"x":1567135980000,"y":0.08},{"x":1567136040000,"y":0.07},{"x":1567136100000,"y":0.26},{"x":1567136160000,"y":0.09},{"x":1567136220000,"y":0.21},{"x":1567136280000,"y":0.09},{"x":1567136340000,"y":0.28},{"x":1567136400000,"y":0.22},{"x":1567136460000,"y":0.08},{"x":1567136520000,"y":0.23},{"x":1567136580000,"y":0.09},{"x":1567136640000,"y":0.08},{"x":1567136700000,"y":0.21},{"x":1567136760000,"y":0.11},{"x":1567136820000,"y":0.27},{"x":1567136880000,"y":0.08},{"x":1567136940000,"y":0.1},{"x":1567137000000,"y":0.22},{"x":1567137060000,"y":0.09},{"x":1567137120000,"y":0.23},{"x":1567137180000,"y":0.12},{"x":1567137240000,"y":0.11},{"x":1567137300000,"y":0.2},{"x":1567137360000,"y":0.07},{"x":1567137420000,"y":0.22},{"x":1567137480000,"y":0.13},{"x":1567137540000,"y":0.09},{"x":1567137600000,"y":0.32},{"x":1567137660000,"y":0.12},{"x":1567137720000,"y":0.09},{"x":1567137780000,"y":0.25},{"x":1567137840000,"y":0.08},{"x":1567137900000,"y":0.27},{"x":1567137960000,"y":0.1},{"x":1567138020000,"y":0.09},{"x":1567138080000,"y":5.16},{"x":1567138140000,"y":0.27},{"x":1567138200000,"y":0.14},{"x":1567138260000,"y":0.1},{"x":1567138320000,"y":0.12},{"x":1567138380000,"y":0.25},{"x":1567138440000,"y":0.11},{"x":1567138500000,"y":0.15},{"x":1567138560000,"y":0.05},{"x":1567138620000,"y":0.07},{"x":1567138680000,"y":0.2},{"x":1567138740000,"y":0.1},{"x":1567138800000,"y":0.17},{"x":1567138860000,"y":0.06},{"x":1567138920000,"y":0.08},{"x":1567138980000,"y":0.21},{"x":1567139040000,"y":0.09},{"x":1567139100000,"y":0.25},{"x":1567139160000,"y":0.07},{"x":1567139220000,"y":0.12},{"x":1567139280000,"y":0.2},{"x":1567139340000,"y":0.09},{"x":1567139400000,"y":0.25},{"x":1567139460000,"y":0.1},{"x":1567139520000,"y":0.08},{"x":1567139580000,"y":0.22},{"x":1567139640000,"y":0.1},{"x":1567139700000,"y":0.2},{"x":1567139760000,"y":0.08},{"x":1567139820000,"y":0.07},{"x":1567139880000,"y":0.09},{"x":1567139940000,"y":0.31},{"x":1567140000000,"y":0.13},{"x":1567140060000,"y":0.08},{"x":1567140120000,"y":0.07},{"x":1567140180000,"y":0.09},{"x":1567140240000,"y":0.22},{"x":1567140300000,"y":0.12},{"x":1567140360000,"y":0.07},{"x":1567140420000,"y":0.1},{"x":1567140480000,"y":0.08},{"x":1567140540000,"y":0.21},{"x":1567140600000,"y":0.18},{"x":1567140660000,"y":0.07},{"x":1567140720000,"y":0.08},{"x":1567140780000,"y":0.09},{"x":1567140840000,"y":0.22},{"x":1567140900000,"y":0.16},{"x":1567140960000,"y":0.09},{"x":1567141020000,"y":0.08},{"x":1567141080000,"y":0.07},{"x":1567141140000,"y":0.21},{"x":1567141200000,"y":0.53},{"x":1567141260000,"y":0.07},{"x":1567141320000,"y":0.07},{"x":1567141380000,"y":0.06},{"x":1567141440000,"y":0.26},{"x":1567141500000,"y":0.22},{"x":1567141560000,"y":0.1},{"x":1567141620000,"y":0.09},{"x":1567141680000,"y":0.07},{"x":1567141740000,"y":0.27},{"x":1567141800000,"y":0.21},{"x":1567141860000,"y":0.11},{"x":1567141920000,"y":0.1},{"x":1567141980000,"y":0.07},{"x":1567142040000,"y":0.22},{"x":1567142100000,"y":0.21},{"x":1567142160000,"y":0.1},{"x":1567142220000,"y":0.1},{"x":1567142280000,"y":0.09},{"x":1567142340000,"y":0.09},{"x":1567142400000,"y":0.33},{"x":1567142460000,"y":0.09},{"x":1567142520000,"y":0.12},{"x":1567142580000,"y":0.1},{"x":1567142640000,"y":0.35},{"x":1567142700000,"y":0.3},{"x":1567142760000,"y":0.12},{"x":1567142820000,"y":0.1},{"x":1567142880000,"y":0.08},{"x":1567142940000,"y":0.12},{"x":1567143000000,"y":0.39},{"x":1567143060000,"y":0.09},{"x":1567143120000,"y":0.07},{"x":1567143180000,"y":0.06},{"x":1567143240000,"y":0.07},{"x":1567143300000,"y":0.33},{"x":1567143360000,"y":0.05},{"x":1567143420000,"y":0.08},{"x":1567143480000,"y":0.1},{"x":1567143540000,"y":0.15},{"x":1567143600000,"y":0.3},{"x":1567143660000,"y":0.08},{"x":1567143720000,"y":0.08},{"x":1567143780000,"y":0.07},{"x":1567143840000,"y":0.18},{"x":1567143900000,"y":0.32},{"x":1567143960000,"y":0.1},{"x":1567144020000,"y":0.11},{"x":1567144080000,"y":0.07},{"x":1567144140000,"y":0.08},{"x":1567144200000,"y":0.31},{"x":1567144260000,"y":0.07},{"x":1567144320000,"y":0.1},{"x":1567144380000,"y":0.08},{"x":1567144440000,"y":0.1},{"x":1567144500000,"y":0.38},{"x":1567144560000,"y":0.07},{"x":1567144620000,"y":0.63},{"x":1567144680000,"y":0.07},{"x":1567144740000,"y":0.1},{"x":1567144800000,"y":0.5},{"x":1567144860000,"y":0.17},{"x":1567144920000,"y":0.07},{"x":1567144980000,"y":0.07},{"x":1567145040000,"y":0.12},{"x":1567145100000,"y":0.19},{"x":1567145160000,"y":0.32},{"x":1567145220000,"y":0.11},{"x":1567145280000,"y":0.08},{"x":1567145340000,"y":0.1},{"x":1567145400000,"y":0.18},{"x":1567145460000,"y":0.23},{"x":1567145520000,"y":0.09},{"x":1567145580000,"y":0.1},{"x":1567145640000,"y":0.11},{"x":1567145700000,"y":0.22},{"x":1567145760000,"y":0.2},{"x":1567145820000,"y":0.12},{"x":1567145880000,"y":0.09},{"x":1567145940000,"y":0.07},{"x":1567146000000,"y":0.15},{"x":1567146060000,"y":0.23},{"x":1567146120000,"y":0.11},{"x":1567146180000,"y":0.06},{"x":1567146240000,"y":0.07},{"x":1567146300000,"y":1.73},{"x":1567146360000,"y":0.23},{"x":1567146420000,"y":0.09},{"x":1567146480000,"y":0.15},{"x":1567146540000,"y":0.15},{"x":1567146600000,"y":0.17},{"x":1567146660000,"y":0.27},{"x":1567146720000,"y":0.12},{"x":1567146780000,"y":0.08},{"x":1567146840000,"y":0.1},{"x":1567146900000,"y":0.17},{"x":1567146960000,"y":0.19},{"x":1567147020000,"y":0.08},{"x":1567147080000,"y":0.06},{"x":1567147140000,"y":0.17},{"x":1567147200000,"y":0.23},{"x":1567147260000,"y":0.25},{"x":1567147320000,"y":0.08},{"x":1567147380000,"y":0.12},{"x":1567147440000,"y":0.11},{"x":1567147500000,"y":0.15},{"x":1567147560000,"y":0.09},{"x":1567147620000,"y":0.26},{"x":1567147680000,"y":0.09},{"x":1567147740000,"y":0.07},{"x":1567147800000,"y":0.17},{"x":1567147860000,"y":0.09},{"x":1567147920000,"y":0.21},{"x":1567147980000,"y":0.08},{"x":1567148040000,"y":0.1},{"x":1567148100000,"y":0.12},{"x":1567148160000,"y":0.09},{"x":1567148220000,"y":0.2},{"x":1567148280000,"y":0.09},{"x":1567148340000,"y":0.07},{"x":1567148400000,"y":0.28},{"x":1567148460000,"y":0.11},{"x":1567148520000,"y":0.27},{"x":1567148580000,"y":0.11},{"x":1567148640000,"y":0.08},{"x":1567148700000,"y":0.21},{"x":1567148760000,"y":0.11},{"x":1567148820000,"y":0.23},{"x":1567148880000,"y":0.08},{"x":1567148940000,"y":0.17},{"x":1567149000000,"y":0.21},{"x":1567149060000,"y":0.06},{"x":1567149120000,"y":0.2},{"x":1567149180000,"y":0.1},{"x":1567149240000,"y":0.11},{"x":1567149300000,"y":0.23},{"x":1567149360000,"y":0.05},{"x":1567149420000,"y":0.1},{"x":1567149480000,"y":0.23},{"x":1567149540000,"y":0.12},{"x":1567149600000,"y":0.15},{"x":1567149660000,"y":0.08},{"x":1567149720000,"y":0.12},{"x":1567149780000,"y":0.32},{"x":1567149840000,"y":0.12},{"x":1567149900000,"y":0.15},{"x":1567149960000,"y":0.11},{"x":1567150020000,"y":0.15},{"x":1567150080000,"y":0.24},{"x":1567150140000,"y":0.15},{"x":1567150200000,"y":0.22},{"x":1567150260000,"y":0.12},{"x":1567150320000,"y":0.11},{"x":1567150380000,"y":0.29},{"x":1567150440000,"y":0.1},{"x":1567150500000,"y":0.25},{"x":1567150560000,"y":0.07},{"x":1567150620000,"y":0.12},{"x":1567150680000,"y":0.29},{"x":1567150740000,"y":0.37},{"x":1567150800000,"y":0.27},{"x":1567150860000,"y":0.21},{"x":1567150920000,"y":0.1},{"x":1567150980000,"y":0.27},{"x":1567151040000,"y":0.22},{"x":1567151100000,"y":0.22},{"x":1567151160000,"y":0.14},{"x":1567151220000,"y":0.19},{"x":1567151280000,"y":0.31},{"x":1567151340000,"y":0.2},{"x":1567151400000,"y":0.29},{"x":1567151460000,"y":0.09},{"x":1567151520000,"y":0.1},{"x":1567151580000,"y":0.28},{"x":1567151640000,"y":0.16},{"x":1567151700000,"y":0.28},{"x":1567151760000,"y":0.15},{"x":1567151820000,"y":0.16},{"x":1567151880000,"y":0.27},{"x":1567151940000,"y":0.1},{"x":1567152000000,"y":0.4},{"x":1567152060000,"y":0.15},{"x":1567152120000,"y":0.2},{"x":1567152180000,"y":0.2},{"x":1567152240000,"y":0.36},{"x":1567152300000,"y":0.29},{"x":1567152360000,"y":0.18},{"x":1567152420000,"y":0.17},{"x":1567152480000,"y":0.17},{"x":1567152540000,"y":0.35},{"x":1567152600000,"y":0.31},{"x":1567152660000,"y":0.14},{"x":1567152720000,"y":0.2},{"x":1567152780000,"y":0.21},{"x":1567152840000,"y":0.38},{"x":1567152900000,"y":0.32},{"x":1567152960000,"y":0.22},{"x":1567153020000,"y":0.19},{"x":1567153080000,"y":0.17},{"x":1567153140000,"y":0.31},{"x":1567153200000,"y":0.32},{"x":1567153260000,"y":0.18},{"x":1567153320000,"y":0.21},{"x":1567153380000,"y":0.18},{"x":1567153440000,"y":0.34},{"x":1567153500000,"y":0.32},{"x":1567153560000,"y":0.2},{"x":1567153620000,"y":0.17},{"x":1567153680000,"y":0.18},{"x":1567153740000,"y":0.32},{"x":1567153800000,"y":0.31},{"x":1567153860000,"y":0.17},{"x":1567153920000,"y":0.22},{"x":1567153980000,"y":0.16},{"x":1567154040000,"y":0.3},{"x":1567154100000,"y":0.34},{"x":1567154160000,"y":0.2},{"x":1567154220000,"y":0.17},{"x":1567154280000,"y":0.15},{"x":1567154340000,"y":0.62},{"x":1567154400000,"y":0.29},{"x":1567154460000,"y":0.16},{"x":1567154520000,"y":0.17},{"x":1567154580000,"y":0.15},{"x":1567154640000,"y":0.23},{"x":1567154700000,"y":0.43},{"x":1567154760000,"y":0.16},{"x":1567154820000,"y":0.18},{"x":1567154880000,"y":0.17},{"x":1567154940000,"y":0.16},{"x":1567155000000,"y":0.38},{"x":1567155060000,"y":0.16},{"x":1567155120000,"y":0.15},{"x":1567155180000,"y":0.2},{"x":1567155240000,"y":0.15},{"x":1567155300000,"y":0.33},{"x":1567155360000,"y":0.19},{"x":1567155420000,"y":0.16},{"x":1567155480000,"y":0.19},{"x":1567155540000,"y":0.14},{"x":1567155600000,"y":0.7},{"x":1567155660000,"y":0.21},{"x":1567155720000,"y":0.2},{"x":1567155780000,"y":0.2},{"x":1567155840000,"y":0.15},{"x":1567155900000,"y":0.42},{"x":1567155960000,"y":0.14},{"x":1567156020000,"y":0.16},{"x":1567156080000,"y":0.16},{"x":1567156140000,"y":0.3},{"x":1567156200000,"y":0.46},{"x":1567156260000,"y":0.17},{"x":1567156320000,"y":0.25},{"x":1567156380000,"y":0.15},{"x":1567156440000,"y":0.15},{"x":1567156500000,"y":0.44},{"x":1567156560000,"y":0.16},{"x":1567156620000,"y":0.17},{"x":1567156680000,"y":0.18},{"x":1567156740000,"y":0.15},{"x":1567156800000,"y":0.37},{"x":1567156860000,"y":0.18},{"x":1567156920000,"y":0.17},{"x":1567156980000,"y":0.13},{"x":1567157040000,"y":0.17},{"x":1567157100000,"y":0.24},{"x":1567157160000,"y":0.3},{"x":1567157220000,"y":0.15},{"x":1567157280000,"y":0.15},{"x":1567157340000,"y":0.2},{"x":1567157400000,"y":0.27},{"x":1567157460000,"y":0.31},{"x":1567157520000,"y":0.2},{"x":1567157580000,"y":2.49},{"x":1567157640000,"y":0.17},{"x":1567157700000,"y":0.22},{"x":1567157760000,"y":0.32},{"x":1567157820000,"y":0.13},{"x":1567157880000,"y":0.16},{"x":1567157940000,"y":0.28},{"x":1567158000000,"y":0.22},{"x":1567158060000,"y":0.33},{"x":1567158120000,"y":0.15},{"x":1567158180000,"y":0.14},{"x":1567158240000,"y":0.16},{"x":1567158300000,"y":0.25},{"x":1567158360000,"y":0.3},{"x":1567158420000,"y":0.15},{"x":1567158480000,"y":0.15},{"x":1567158540000,"y":0.16},{"x":1567158600000,"y":0.25},{"x":1567158660000,"y":0.3},{"x":1567158720000,"y":0.17},{"x":1567158780000,"y":0.17},{"x":1567158840000,"y":0.14},{"x":1567158900000,"y":0.28},{"x":1567158960000,"y":0.29},{"x":1567159020000,"y":0.17},{"x":1567159080000,"y":0.18},{"x":1567159140000,"y":0.2},{"x":1567159200000,"y":0.35},{"x":1567159260000,"y":0.3},{"x":1567159320000,"y":0.19},{"x":1567159380000,"y":0.14},{"x":1567159440000,"y":0.16},{"x":1567159500000,"y":0.28},{"x":1567159560000,"y":0.17},{"x":1567159620000,"y":0.29},{"x":1567159680000,"y":0.15},{"x":1567159740000,"y":0.24},{"x":1567159800000,"y":0.26},{"x":1567159860000,"y":0.17},{"x":1567159920000,"y":3.52},{"x":1567159980000,"y":0.17},{"x":1567160040000,"y":0.22},{"x":1567160100000,"y":0.32},{"x":1567160160000,"y":0.19},{"x":1567160220000,"y":0.32},{"x":1567160280000,"y":0.17},{"x":1567160340000,"y":0.19},{"x":1567160400000,"y":0.24},{"x":1567160460000,"y":0.19},{"x":1567160520000,"y":0.34},{"x":1567160580000,"y":0.18},{"x":1567160640000,"y":0.22},{"x":1567160700000,"y":0.42},{"x":1567160760000,"y":0.21},{"x":1567160820000,"y":5.57},{"x":1567160880000,"y":0.18},{"x":1567160940000,"y":0.26},{"x":1567161000000,"y":0.37},{"x":1567161060000,"y":0.22},{"x":1567161120000,"y":0.33},{"x":1567161180000,"y":0.21},{"x":1567161240000,"y":0.2},{"x":1567161300000,"y":0.29},{"x":1567161360000,"y":0.17},{"x":1567161420000,"y":0.32},{"x":1567161480000,"y":0.16},{"x":1567161540000,"y":0.25},{"x":1567161600000,"y":0.3},{"x":1567161660000,"y":0.18},{"x":1567161720000,"y":0.17},{"x":1567161780000,"y":0.3},{"x":1567161840000,"y":0.16},{"x":1567161900000,"y":0.23},{"x":1567161960000,"y":0.12},{"x":1567162020000,"y":0.11},{"x":1567162080000,"y":0.2},{"x":1567162140000,"y":0.1},{"x":1567162200000,"y":0.12},{"x":1567162260000,"y":0.11},{"x":1567162320000,"y":0.1},{"x":1567162380000,"y":0.24},{"x":1567162440000,"y":0.07},{"x":1567162500000,"y":0.17},{"x":1567162560000,"y":0.08},{"x":1567162620000,"y":0.08},{"x":1567162680000,"y":0.24},{"x":1567162740000,"y":0.07},{"x":1567162800000,"y":0.33},{"x":1567162860000,"y":0.11},{"x":1567162920000,"y":0.13},{"x":1567162980000,"y":0.24},{"x":1567163040000,"y":0.12},{"x":1567163100000,"y":0.15},{"x":1567163160000,"y":0.07},{"x":1567163220000,"y":0.08},{"x":1567163280000,"y":0.22},{"x":1567163340000,"y":0.22},{"x":1567163400000,"y":0.23},{"x":1567163460000,"y":0.1},{"x":1567163520000,"y":0.1},{"x":1567163580000,"y":0.24},{"x":1567163640000,"y":0.08},{"x":1567163700000,"y":0.23},{"x":1567163760000,"y":0.1},{"x":1567163820000,"y":0.09},{"x":1567163880000,"y":0.22},{"x":1567163940000,"y":8.2},{"x":1567164000000,"y":10.12},{"x":1567164060000,"y":0.12},{"x":1567164120000,"y":0.13},{"x":1567164180000,"y":0.1},{"x":1567164240000,"y":0.22},{"x":1567164300000,"y":1.68},{"x":1567164360000,"y":0.11},{"x":1567164420000,"y":0.07},{"x":1567164480000,"y":0.07},{"x":1567164540000,"y":0.25},{"x":1567164600000,"y":0.14},{"x":1567164660000,"y":0.1},{"x":1567164720000,"y":0.1},{"x":1567164780000,"y":0.07},{"x":1567164840000,"y":0.22},{"x":1567164900000,"y":0.23},{"x":1567164960000,"y":0.09},{"x":1567165020000,"y":0.09},{"x":1567165080000,"y":0.1},{"x":1567165140000,"y":0.29},{"x":1567165200000,"y":0.18},{"x":1567165260000,"y":0.11},{"x":1567165320000,"y":0.08},{"x":1567165380000,"y":0.06},{"x":1567165440000,"y":0.23},{"x":1567165500000,"y":0.17},{"x":1567165560000,"y":0.07},{"x":1567165620000,"y":0.1},{"x":1567165680000,"y":0.1},{"x":1567165740000,"y":0.22},{"x":1567165800000,"y":0.21},{"x":1567165860000,"y":0.09},{"x":1567165920000,"y":0.1},{"x":1567165980000,"y":0.09},{"x":1567166040000,"y":0.23},{"x":1567166100000,"y":0.16},{"x":1567166160000,"y":0.1},{"x":1567166220000,"y":0.08},{"x":1567166280000,"y":0.09},{"x":1567166340000,"y":0.22},{"x":1567166400000,"y":0.27},{"x":1567166460000,"y":0.07},{"x":1567166520000,"y":0.08},{"x":1567166580000,"y":0.08},{"x":1567166640000,"y":0.12},{"x":1567166700000,"y":0.35},{"x":1567166760000,"y":0.1},{"x":1567166820000,"y":0.08},{"x":1567166880000,"y":0.11},{"x":1567166940000,"y":0.32},{"x":1567167000000,"y":0.38},{"x":1567167060000,"y":0.1},{"x":1567167120000,"y":0.13},{"x":1567167180000,"y":0.14},{"x":1567167240000,"y":0.1},{"x":1567167300000,"y":0.4},{"x":1567167360000,"y":0.13},{"x":1567167420000,"y":0.12},{"x":1567167480000,"y":0.08},{"x":1567167540000,"y":0.1},{"x":1567167600000,"y":0.36},{"x":1567167660000,"y":0.14},{"x":1567167720000,"y":0.15},{"x":1567167780000,"y":0.07},{"x":1567167840000,"y":0.1},{"x":1567167900000,"y":0.38},{"x":1567167960000,"y":0.1},{"x":1567168020000,"y":0.12},{"x":1567168080000,"y":0.42},{"x":1567168140000,"y":0.11},{"x":1567168200000,"y":0.38},{"x":1567168260000,"y":0.1},{"x":1567168320000,"y":0.12},{"x":1567168380000,"y":0.09},{"x":1567168440000,"y":0.1},{"x":1567168500000,"y":0.38},{"x":1567168560000,"y":0.99},{"x":1567168620000,"y":0.09},{"x":1567168680000,"y":0.12},{"x":1567168740000,"y":0.23},{"x":1567168800000,"y":0.16},{"x":1567168860000,"y":0.23},{"x":1567168920000,"y":0.11},{"x":1567168980000,"y":0.11},{"x":1567169040000,"y":0.15},{"x":1567169100000,"y":0.24},{"x":1567169160000,"y":0.29},{"x":1567169220000,"y":0.12},{"x":1567169280000,"y":0.08},{"x":1567169340000,"y":0.11},{"x":1567169400000,"y":0.22},{"x":1567169460000,"y":0.21},{"x":1567169520000,"y":0.08},{"x":1567169580000,"y":0.09},{"x":1567169640000,"y":0.11},{"x":1567169700000,"y":0.23},{"x":1567169760000,"y":0.22},{"x":1567169820000,"y":0.07},{"x":1567169880000,"y":0.05},{"x":1567169940000,"y":0.09},{"x":1567170000000,"y":0.25},{"x":1567170060000,"y":0.23},{"x":1567170120000,"y":0.13},{"x":1567170180000,"y":0.08},{"x":1567170240000,"y":0.08},{"x":1567170300000,"y":0.13},{"x":1567170360000,"y":0.21},{"x":1567170420000,"y":0.1},{"x":1567170480000,"y":0.08},{"x":1567170540000,"y":0.2},{"x":1567170600000,"y":0.15},{"x":1567170660000,"y":0.25},{"x":1567170720000,"y":0.1},{"x":1567170780000,"y":0.09},{"x":1567170840000,"y":0.09},{"x":1567170900000,"y":0.25},{"x":1567170960000,"y":0.2},{"x":1567171020000,"y":0.12},{"x":1567171080000,"y":0.09},{"x":1567171140000,"y":0.08},{"x":1567171200000,"y":0.19},{"x":1567171260000,"y":0.25},{"x":1567171320000,"y":0.12},{"x":1567171380000,"y":0.08},{"x":1567171440000,"y":0.08},{"x":1567171500000,"y":0.22},{"x":1567171560000,"y":0.08},{"x":1567171620000,"y":0.23},{"x":1567171680000,"y":0.07},{"x":1567171740000,"y":1.44},{"x":1567171800000,"y":0.27},{"x":1567171860000,"y":0.12},{"x":1567171920000,"y":0.26},{"x":1567171980000,"y":0.09},{"x":1567172040000,"y":0.12},{"x":1567172100000,"y":0.32},{"x":1567172160000,"y":0.35},{"x":1567172220000,"y":0.25},{"x":1567172280000,"y":0.1},{"x":1567172340000,"y":0.25},{"x":1567172400000,"y":0.19},{"x":1567172460000,"y":0.08},{"x":1567172520000,"y":0.25},{"x":1567172580000,"y":0.08},{"x":1567172640000,"y":0.07},{"x":1567172700000,"y":0.21},{"x":1567172760000,"y":0.08},{"x":1567172820000,"y":0.25},{"x":1567172880000,"y":0.08},{"x":1567172940000,"y":0.11},{"x":1567173000000,"y":0.23},{"x":1567173060000,"y":0.1},{"x":1567173120000,"y":0.23},{"x":1567173180000,"y":0.07},{"x":1567173240000,"y":0.1},{"x":1567173300000,"y":0.24},{"x":1567173360000,"y":0.1},{"x":1567173420000,"y":0.07},{"x":1567173480000,"y":0.23},{"x":1567173540000,"y":0.1},{"x":1567173600000,"y":0.27},{"x":1567173660000,"y":0.11},{"x":1567173720000,"y":0.1},{"x":1567173780000,"y":0.32},{"x":1567173840000,"y":0.1},{"x":1567173900000,"y":0.28},{"x":1567173960000,"y":0.12},{"x":1567174020000,"y":0.11},{"x":1567174080000,"y":0.25},{"x":1567174140000,"y":0.22},{"x":1567174200000,"y":0.21},{"x":1567174260000,"y":0.11},{"x":1567174320000,"y":0.17},{"x":1567174380000,"y":0.26},{"x":1567174440000,"y":0.1},{"x":1567174500000,"y":0.32},{"x":1567174560000,"y":0.07},{"x":1567174620000,"y":0.1},{"x":1567174680000,"y":0.22},{"x":1567174740000,"y":0.07},{"x":1567174800000,"y":0.17},{"x":1567174860000,"y":0.1},{"x":1567174920000,"y":0.1},{"x":1567174980000,"y":0.23},{"x":1567175040000,"y":0.1},{"x":1567175100000,"y":0.19},{"x":1567175160000,"y":0.06},{"x":1567175220000,"y":0.07},{"x":1567175280000,"y":0.22},{"x":1567175340000,"y":0.16},{"x":1567175400000,"y":0.32},{"x":1567175460000,"y":0.11},{"x":1567175520000,"y":0.16},{"x":1567175580000,"y":0.23},{"x":1567175640000,"y":0.1},{"x":1567175700000,"y":0.26},{"x":1567175760000,"y":0.11},{"x":1567175820000,"y":0.12},{"x":1567175880000,"y":0.23},{"x":1567175940000,"y":0.42},{"x":1567176000000,"y":0.27},{"x":1567176060000,"y":0.17},{"x":1567176120000,"y":0.13},{"x":1567176180000,"y":0.12},{"x":1567176240000,"y":0.26},{"x":1567176300000,"y":0.29},{"x":1567176360000,"y":0.09},{"x":1567176420000,"y":0.14},{"x":1567176480000,"y":0.12},{"x":1567176540000,"y":0.29},{"x":1567176600000,"y":0.27},{"x":1567176660000,"y":0.12},{"x":1567176720000,"y":0.09},{"x":1567176780000,"y":0.1},{"x":1567176840000,"y":0.24},{"x":1567176900000,"y":0.16},{"x":1567176960000,"y":0.09},{"x":1567177020000,"y":0.1},{"x":1567177080000,"y":0.1},{"x":1567177140000,"y":0.25},{"x":1567177200000,"y":0.27},{"x":1567177260000,"y":0.14},{"x":1567177320000,"y":0.13},{"x":1567177380000,"y":0.08},{"x":1567177440000,"y":0.26},{"x":1567177500000,"y":0.17},{"x":1567177560000,"y":0.1},{"x":1567177620000,"y":0.11},{"x":1567177680000,"y":0.12},{"x":1567177740000,"y":0.49},{"x":1567177800000,"y":0.21},{"x":1567177860000,"y":0.1},{"x":1567177920000,"y":0.1},{"x":1567177980000,"y":0.08},{"x":1567178040000,"y":0.23},{"x":1567178100000,"y":0.21},{"x":1567178160000,"y":0.12},{"x":1567178220000,"y":0.1},{"x":1567178280000,"y":0.1},{"x":1567178340000,"y":0.25},{"x":1567178400000,"y":0.33},{"x":1567178460000,"y":0.12},{"x":1567178520000,"y":0.1},{"x":1567178580000,"y":0.09},{"x":1567178640000,"y":0.1},{"x":1567178700000,"y":0.42},{"x":1567178760000,"y":0.1},{"x":1567178820000,"y":0.11},{"x":1567178880000,"y":0.1},{"x":1567178940000,"y":0.1},{"x":1567179000000,"y":0.43},{"x":1567179060000,"y":0.12},{"x":1567179120000,"y":0.1},{"x":1567179180000,"y":0.09},{"x":1567179240000,"y":0.1},{"x":1567179300000,"y":0.3},{"x":1567179360000,"y":0.07},{"x":1567179420000,"y":0.09},{"x":1567179480000,"y":0.12},{"x":1567179540000,"y":0.22},{"x":1567179600000,"y":0.29},{"x":1567179660000,"y":0.1},{"x":1567179720000,"y":0.08},{"x":1567179780000,"y":0.12},{"x":1567179840000,"y":0.11},{"x":1567179900000,"y":0.39},{"x":1567179960000,"y":0.14},{"x":1567180020000,"y":0.11},{"x":1567180080000,"y":0.1},{"x":1567180140000,"y":0.13},{"x":1567180200000,"y":0.34},{"x":1567180260000,"y":0.14},{"x":1567180320000,"y":0.15},{"x":1567180380000,"y":0.12},{"x":1567180440000,"y":0.1},{"x":1567180500000,"y":0.38},{"x":1567180560000,"y":0.15},{"x":1567180620000,"y":0.13},{"x":1567180680000,"y":0.12},{"x":1567180740000,"y":0.12},{"x":1567180800000,"y":0.49},{"x":1567180860000,"y":0.11},{"x":1567180920000,"y":0.16},{"x":1567180980000,"y":0.15},{"x":1567181040000,"y":0.15},{"x":1567181100000,"y":0.21},{"x":1567181160000,"y":0.24},{"x":1567181220000,"y":0.11},{"x":1567181280000,"y":0.13},{"x":1567181340000,"y":0.36},{"x":1567181400000,"y":0.3},{"x":1567181460000,"y":0.29},{"x":1567181520000,"y":0.13},{"x":1567181580000,"y":0.19},{"x":1567181640000,"y":0.13},{"x":1567181700000,"y":0.24},{"x":1567181760000,"y":5.3},{"x":1567181820000,"y":0.17},{"x":1567181880000,"y":0.08},{"x":1567181940000,"y":0.15},{"x":1567182000000,"y":0.24},{"x":1567182060000,"y":0.25},{"x":1567182120000,"y":0.1},{"x":1567182180000,"y":0.09},{"x":1567182240000,"y":0.1},{"x":1567182300000,"y":0.28},{"x":1567182360000,"y":0.25},{"x":1567182420000,"y":0.12},{"x":1567182480000,"y":0.12},{"x":1567182540000,"y":0.11},{"x":1567182600000,"y":0.2},{"x":1567182660000,"y":0.26},{"x":1567182720000,"y":0.13},{"x":1567182780000,"y":0.11},{"x":1567182840000,"y":0.13},{"x":1567182900000,"y":0.32},{"x":1567182960000,"y":0.25},{"x":1567183020000,"y":0.1},{"x":1567183080000,"y":0.14},{"x":1567183140000,"y":0.32},{"x":1567183200000,"y":0.27},{"x":1567183260000,"y":0.19},{"x":1567183320000,"y":0.18},{"x":1567183380000,"y":0.15},{"x":1567183440000,"y":0.15},{"x":1567183500000,"y":0.31},{"x":1567183560000,"y":0.1},{"x":1567183620000,"y":0.31},{"x":1567183680000,"y":0.13},{"x":1567183740000,"y":0.12},{"x":1567183800000,"y":0.2},{"x":1567183860000,"y":0.17},{"x":1567183920000,"y":0.28},{"x":1567183980000,"y":0.13},{"x":1567184040000,"y":0.18},{"x":1567184100000,"y":0.25},{"x":1567184160000,"y":0.18},{"x":1567184220000,"y":0.28},{"x":1567184280000,"y":0.18},{"x":1567184340000,"y":0.19},{"x":1567184400000,"y":0.38},{"x":1567184460000,"y":0.16},{"x":1567184520000,"y":0.27},{"x":1567184580000,"y":0.12},{"x":1567184640000,"y":0.12},{"x":1567184700000,"y":0.33},{"x":1567184760000,"y":0.17},{"x":1567184820000,"y":0.25},{"x":1567184880000,"y":0.1},{"x":1567184940000,"y":0.27},{"x":1567185000000,"y":0.28},{"x":1567185060000,"y":0.22},{"x":1567185120000,"y":0.33},{"x":1567185180000,"y":0.15},{"x":1567185240000,"y":0.19},{"x":1567185300000,"y":0.3},{"x":1567185360000,"y":0.12},{"x":1567185420000,"y":0.34},{"x":1567185480000,"y":0.22},{"x":1567185540000,"y":0.19},{"x":1567185600000,"y":0.36},{"x":1567185660000,"y":0.17},{"x":1567185720000,"y":0.2},{"x":1567185780000,"y":0.33},{"x":1567185840000,"y":0.17},{"x":1567185900000,"y":0.26},{"x":1567185960000,"y":0.19},{"x":1567186020000,"y":0.2},{"x":1567186080000,"y":0.32},{"x":1567186140000,"y":0.18},{"x":1567186200000,"y":0.28},{"x":1567186260000,"y":0.18},{"x":1567186320000,"y":0.16},{"x":1567186380000,"y":0.31},{"x":1567186440000,"y":0.19},{"x":1567186500000,"y":0.32},{"x":1567186560000,"y":0.18},{"x":1567186620000,"y":0.16},{"x":1567186680000,"y":0.32},{"x":1567186740000,"y":0.29},{"x":1567186800000,"y":0.31},{"x":1567186860000,"y":0.19},{"x":1567186920000,"y":0.2},{"x":1567186980000,"y":0.33},{"x":1567187040000,"y":0.21},{"x":1567187100000,"y":0.24},{"x":1567187160000,"y":0.16},{"x":1567187220000,"y":0.22},{"x":1567187280000,"y":0.36},{"x":1567187340000,"y":0.21},{"x":1567187400000,"y":0.26},{"x":1567187460000,"y":0.18},{"x":1567187520000,"y":0.2},{"x":1567187580000,"y":0.33},{"x":1567187640000,"y":0.21},{"x":1567187700000,"y":0.36},{"x":1567187760000,"y":0.2},{"x":1567187820000,"y":0.18},{"x":1567187880000,"y":0.32},{"x":1567187940000,"y":0.18},{"x":1567188000000,"y":0.46},{"x":1567188060000,"y":0.24},{"x":1567188120000,"y":0.21},{"x":1567188180000,"y":0.2},{"x":1567188240000,"y":0.46},{"x":1567188300000,"y":0.29},{"x":1567188360000,"y":0.18},{"x":1567188420000,"y":0.19},{"x":1567188480000,"y":0.2},{"x":1567188540000,"y":0.42},{"x":1567188600000,"y":0.27},{"x":1567188660000,"y":0.21},{"x":1567188720000,"y":0.21},{"x":1567188780000,"y":0.15},{"x":1567188840000,"y":0.32},{"x":1567188900000,"y":0.31},{"x":1567188960000,"y":0.17},{"x":1567189020000,"y":0.2},{"x":1567189080000,"y":0.16},{"x":1567189140000,"y":0.33},{"x":1567189200000,"y":0.25},{"x":1567189260000,"y":0.15},{"x":1567189320000,"y":0.2},{"x":1567189380000,"y":0.19},{"x":1567189440000,"y":0.35},{"x":1567189500000,"y":0.34},{"x":1567189560000,"y":0.2},{"x":1567189620000,"y":0.22},{"x":1567189680000,"y":0.21},{"x":1567189740000,"y":0.34},{"x":1567189800000,"y":0.38},{"x":1567189860000,"y":0.21},{"x":1567189920000,"y":1.6},{"x":1567189980000,"y":0.17},{"x":1567190040000,"y":0.31},{"x":1567190100000,"y":0.25},{"x":1567190160000,"y":0.18},{"x":1567190220000,"y":0.17},{"x":1567190280000,"y":0.17},{"x":1567190340000,"y":0.42},{"x":1567190400000,"y":0.32},{"x":1567190460000,"y":0.19},{"x":1567190520000,"y":0.19},{"x":1567190580000,"y":0.18},{"x":1567190640000,"y":0.2},{"x":1567190700000,"y":0.52},{"x":1567190760000,"y":0.2},{"x":1567190820000,"y":0.2},{"x":1567190880000,"y":0.22},{"x":1567190940000,"y":0.21},{"x":1567191000000,"y":0.51},{"x":1567191060000,"y":0.18},{"x":1567191120000,"y":0.21},{"x":1567191180000,"y":0.17},{"x":1567191240000,"y":0.22},{"x":1567191300000,"y":0.38},{"x":1567191360000,"y":0.16},{"x":1567191420000,"y":0.18},{"x":1567191480000,"y":0.17},{"x":1567191540000,"y":0.18},{"x":1567191600000,"y":0.54},{"x":1567191660000,"y":0.19},{"x":1567191720000,"y":0.19},{"x":1567191780000,"y":0.16},{"x":1567191840000,"y":0.22},{"x":1567191900000,"y":0.41},{"x":1567191960000,"y":0.22},{"x":1567192020000,"y":0.21},{"x":1567192080000,"y":0.18},{"x":1567192140000,"y":0.29},{"x":1567192200000,"y":0.41},{"x":1567192260000,"y":0.17},{"x":1567192320000,"y":0.18},{"x":1567192380000,"y":0.17},{"x":1567192440000,"y":0.21},{"x":1567192500000,"y":0.51},{"x":1567192560000,"y":0.17},{"x":1567192620000,"y":0.18},{"x":1567192680000,"y":0.2},{"x":1567192740000,"y":0.17},{"x":1567192800000,"y":0.52},{"x":1567192860000,"y":0.17},{"x":1567192920000,"y":0.18},{"x":1567192980000,"y":0.19},{"x":1567193040000,"y":0.16},{"x":1567193100000,"y":0.3},{"x":1567193160000,"y":0.34},{"x":1567193220000,"y":0.2},{"x":1567193280000,"y":0.16},{"x":1567193340000,"y":0.2},{"x":1567193400000,"y":0.25},{"x":1567193460000,"y":0.35},{"x":1567193520000,"y":0.18},{"x":1567193580000,"y":0.18},{"x":1567193640000,"y":0.22},{"x":1567193700000,"y":0.27},{"x":1567193760000,"y":0.32},{"x":1567193820000,"y":0.17},{"x":1567193880000,"y":0.17},{"x":1567193940000,"y":0.33},{"x":1567194000000,"y":0.26},{"x":1567194060000,"y":0.36},{"x":1567194120000,"y":0.21},{"x":1567194180000,"y":0.17},{"x":1567194240000,"y":0.19},{"x":1567194300000,"y":0.39},{"x":1567194360000,"y":0.34},{"x":1567194420000,"y":0.24},{"x":1567194480000,"y":0.22},{"x":1567194540000,"y":0.21},{"x":1567194600000,"y":0.37},{"x":1567194660000,"y":0.33},{"x":1567194720000,"y":0.22},{"x":1567194780000,"y":0.19},{"x":1567194840000,"y":0.18},{"x":1567194900000,"y":0.31},{"x":1567194960000,"y":0.32},{"x":1567195020000,"y":0.17},{"x":1567195080000,"y":0.18},{"x":1567195140000,"y":0.15},{"x":1567195200000,"y":0.45},{"x":1567195260000,"y":0.17},{"x":1567195320000,"y":0.27},{"x":1567195380000,"y":0.12},{"x":1567195440000,"y":0.13},{"x":1567195500000,"y":0.27},{"x":1567195560000,"y":0.12},{"x":1567195620000,"y":0.27},{"x":1567195680000,"y":0.09},{"x":1567195740000,"y":0.17},{"x":1567195800000,"y":0.2},{"x":1567195860000,"y":0.16},{"x":1567195920000,"y":0.32},{"x":1567195980000,"y":0.15},{"x":1567196040000,"y":0.21},{"x":1567196100000,"y":0.24},{"x":1567196160000,"y":0.15},{"x":1567196220000,"y":0.38},{"x":1567196280000,"y":0.24},{"x":1567196340000,"y":0.22},{"x":1567196400000,"y":0.27},{"x":1567196460000,"y":0.2},{"x":1567196520000,"y":0.35},{"x":1567196580000,"y":0.15},{"x":1567196640000,"y":0.16},{"x":1567196700000,"y":0.39},{"x":1567196760000,"y":0.11},{"x":1567196820000,"y":0.3},{"x":1567196880000,"y":0.15},{"x":1567196940000,"y":0.15},{"x":1567197000000,"y":0.37},{"x":1567197060000,"y":0.13},{"x":1567197120000,"y":0.26},{"x":1567197180000,"y":0.17},{"x":1567197240000,"y":0.14},{"x":1567197300000,"y":0.38},{"x":1567197360000,"y":0.16},{"x":1567197420000,"y":0.29},{"x":1567197480000,"y":0.15},{"x":1567197540000,"y":0.3},{"x":1567197600000,"y":0.35},{"x":1567197660000,"y":0.24},{"x":1567197720000,"y":0.12},{"x":1567197780000,"y":0.32},{"x":1567197840000,"y":0.12},{"x":1567197900000,"y":0.33},{"x":1567197960000,"y":0.16},{"x":1567198020000,"y":0.21},{"x":1567198080000,"y":0.3},{"x":1567198140000,"y":0.2},{"x":1567198200000,"y":0.27},{"x":1567198260000,"y":0.14},{"x":1567198320000,"y":0.13},{"x":1567198380000,"y":0.25},{"x":1567198440000,"y":0.16},{"x":1567198500000,"y":0.34},{"x":1567198560000,"y":0.19},{"x":1567198620000,"y":0.16},{"x":1567198680000,"y":0.29},{"x":1567198740000,"y":0.12},{"x":1567198800000,"y":0.54},{"x":1567198860000,"y":0.24},{"x":1567198920000,"y":0.2},{"x":1567198980000,"y":0.29},{"x":1567199040000,"y":0.32},{"x":1567199100000,"y":0.4},{"x":1567199160000,"y":0.15},{"x":1567199220000,"y":0.12},{"x":1567199280000,"y":0.28},{"x":1567199340000,"y":0.25},{"x":1567199400000,"y":0.33},{"x":1567199460000,"y":0.14},{"x":1567199520000,"y":0.15},{"x":1567199580000,"y":0.29},{"x":1567199640000,"y":0.17},{"x":1567199700000,"y":0.27},{"x":1567199760000,"y":0.15},{"x":1567199820000,"y":0.13},{"x":1567199880000,"y":0.29},{"x":1567199940000,"y":0.13},{"x":1567200000000,"y":0.27},{"x":1567200060000,"y":0.17},{"x":1567200120000,"y":0.15},{"x":1567200180000,"y":0.11},{"x":1567200240000,"y":0.31},{"x":1567200300000,"y":0.33},{"x":1567200360000,"y":0.12},{"x":1567200420000,"y":0.1},{"x":1567200480000,"y":0.16},{"x":1567200540000,"y":0.28},{"x":1567200600000,"y":0.37},{"x":1567200660000,"y":0.12},{"x":1567200720000,"y":0.14},{"x":1567200780000,"y":2.51},{"x":1567200840000,"y":0.29},{"x":1567200900000,"y":0.34},{"x":1567200960000,"y":0.14},{"x":1567201020000,"y":0.1},{"x":1567201080000,"y":0.16},{"x":1567201140000,"y":0.56},{"x":1567201200000,"y":0.56},{"x":1567201260000,"y":0.13},{"x":1567201320000,"y":0.17},{"x":1567201380000,"y":0.12},{"x":1567201440000,"y":0.27},{"x":1567201500000,"y":0.41},{"x":1567201560000,"y":0.08},{"x":1567201620000,"y":0.17},{"x":1567201680000,"y":0.11},{"x":1567201740000,"y":0.3},{"x":1567201800000,"y":0.27},{"x":1567201860000,"y":0.15},{"x":1567201920000,"y":0.16},{"x":1567201980000,"y":0.16},{"x":1567202040000,"y":0.31},{"x":1567202100000,"y":0.35},{"x":1567202160000,"y":0.21},{"x":1567202220000,"y":0.11},{"x":1567202280000,"y":0.17},{"x":1567202340000,"y":0.27},{"x":1567202400000,"y":0.41},{"x":1567202460000,"y":0.15},{"x":1567202520000,"y":0.17},{"x":1567202580000,"y":0.15},{"x":1567202640000,"y":0.16},{"x":1567202700000,"y":0.43},{"x":1567202760000,"y":0.19},{"x":1567202820000,"y":0.16},{"x":1567202880000,"y":0.13},{"x":1567202940000,"y":0.44},{"x":1567203000000,"y":0.5},{"x":1567203060000,"y":0.15},{"x":1567203120000,"y":0.22},{"x":1567203180000,"y":0.18},{"x":1567203240000,"y":0.2},{"x":1567203300000,"y":0.34},{"x":1567203360000,"y":0.1},{"x":1567203420000,"y":0.11},{"x":1567203480000,"y":0.13},{"x":1567203540000,"y":0.12},{"x":1567203600000,"y":3.68},{"x":1567203660000,"y":0.26},{"x":1567203720000,"y":0.12},{"x":1567203780000,"y":0.13},{"x":1567203840000,"y":0.12},{"x":1567203900000,"y":0.41},{"x":1567203960000,"y":0.14},{"x":1567204020000,"y":0.12},{"x":1567204080000,"y":0.15},{"x":1567204140000,"y":0.18},{"x":1567204200000,"y":0.49},{"x":1567204260000,"y":0.12},{"x":1567204320000,"y":0.11},{"x":1567204380000,"y":0.16},{"x":1567204440000,"y":0.16},{"x":1567204500000,"y":0.29},{"x":1567204560000,"y":0.29},{"x":1567204620000,"y":0.12},{"x":1567204680000,"y":0.1},{"x":1567204740000,"y":0.35},{"x":1567204800000,"y":0.19},{"x":1567204860000,"y":0.41},{"x":1567204920000,"y":0.18},{"x":1567204980000,"y":0.1},{"x":1567205040000,"y":0.1},{"x":1567205100000,"y":0.32},{"x":1567205160000,"y":0.24},{"x":1567205220000,"y":0.09},{"x":1567205280000,"y":0.11},{"x":1567205340000,"y":0.12},{"x":1567205400000,"y":0.23},{"x":1567205460000,"y":0.28},{"x":1567205520000,"y":0.07},{"x":1567205580000,"y":0.17},{"x":1567205640000,"y":0.08},{"x":1567205700000,"y":0.19},{"x":1567205760000,"y":0.25},{"x":1567205820000,"y":0.14},{"x":1567205880000,"y":0.12},{"x":1567205940000,"y":0.08},{"x":1567206000000,"y":0.33},{"x":1567206060000,"y":0.24},{"x":1567206120000,"y":0.13},{"x":1567206180000,"y":0.12},{"x":1567206240000,"y":0.13},{"x":1567206300000,"y":0.19},{"x":1567206360000,"y":0.29},{"x":1567206420000,"y":0.11},{"x":1567206480000,"y":0.09},{"x":1567206540000,"y":0.29},{"x":1567206600000,"y":0.26},{"x":1567206660000,"y":0.21},{"x":1567206720000,"y":0.18},{"x":1567206780000,"y":0.11},{"x":1567206840000,"y":0.1},{"x":1567206900000,"y":0.31},{"x":1567206960000,"y":0.27},{"x":1567207020000,"y":0.26},{"x":1567207080000,"y":0.13},{"x":1567207140000,"y":0.17},{"x":1567207200000,"y":0.3},{"x":1567207260000,"y":0.12},{"x":1567207320000,"y":0.23},{"x":1567207380000,"y":0.12},{"x":1567207440000,"y":0.11},{"x":1567207500000,"y":0.25},{"x":1567207560000,"y":0.08},{"x":1567207620000,"y":0.25},{"x":1567207680000,"y":0.12},{"x":1567207740000,"y":0.12},{"x":1567207800000,"y":0.33},{"x":1567207860000,"y":0.11},{"x":1567207920000,"y":0.24},{"x":1567207980000,"y":0.1},{"x":1567208040000,"y":0.14},{"x":1567208100000,"y":0.21},{"x":1567208160000,"y":0.13},{"x":1567208220000,"y":0.29},{"x":1567208280000,"y":0.11},{"x":1567208340000,"y":0.34},{"x":1567208400000,"y":0.24},{"x":1567208460000,"y":0.12},{"x":1567208520000,"y":0.24},{"x":1567208580000,"y":0.13},{"x":1567208640000,"y":0.11},{"x":1567208700000,"y":0.24},{"x":1567208760000,"y":0.12},{"x":1567208820000,"y":0.27},{"x":1567208880000,"y":0.14},{"x":1567208940000,"y":0.1},{"x":1567209000000,"y":0.26},{"x":1567209060000,"y":0.1},{"x":1567209120000,"y":0.11},{"x":1567209180000,"y":0.27},{"x":1567209240000,"y":0.09},{"x":1567209300000,"y":0.22},{"x":1567209360000,"y":0.16},{"x":1567209420000,"y":0.13},{"x":1567209480000,"y":0.22},{"x":1567209540000,"y":0.1},{"x":1567209600000,"y":0.37},{"x":1567209660000,"y":0.16},{"x":1567209720000,"y":0.12},{"x":1567209780000,"y":0.27},{"x":1567209840000,"y":0.14},{"x":1567209900000,"y":0.27},{"x":1567209960000,"y":0.12},{"x":1567210020000,"y":0.15},{"x":1567210080000,"y":0.24},{"x":1567210140000,"y":0.31},{"x":1567210200000,"y":0.25},{"x":1567210260000,"y":0.08},{"x":1567210320000,"y":0.11},{"x":1567210380000,"y":0.31},{"x":1567210440000,"y":0.16},{"x":1567210500000,"y":0.47},{"x":1567210560000,"y":0.15},{"x":1567210620000,"y":0.12},{"x":1567210680000,"y":0.23},{"x":1567210740000,"y":0.09},{"x":1567210800000,"y":0.28},{"x":1567210860000,"y":0.11},{"x":1567210920000,"y":0.11},{"x":1567210980000,"y":0.27},{"x":1567211040000,"y":0.1},{"x":1567211100000,"y":0.2},{"x":1567211160000,"y":0.11},{"x":1567211220000,"y":0.12},{"x":1567211280000,"y":0.23},{"x":1567211340000,"y":0.1},{"x":1567211400000,"y":0.28},{"x":1567211460000,"y":0.11},{"x":1567211520000,"y":0.14},{"x":1567211580000,"y":0.08},{"x":1567211640000,"y":0.32},{"x":1567211700000,"y":0.3},{"x":1567211760000,"y":0.09},{"x":1567211820000,"y":0.11},{"x":1567211880000,"y":0.1},{"x":1567211940000,"y":0.45},{"x":1567212000000,"y":0.2},{"x":1567212060000,"y":0.07},{"x":1567212120000,"y":0.1},{"x":1567212180000,"y":0.09},{"x":1567212240000,"y":0.25},{"x":1567212300000,"y":0.2},{"x":1567212360000,"y":0.12},{"x":1567212420000,"y":0.14},{"x":1567212480000,"y":0.11},{"x":1567212540000,"y":0.23},{"x":1567212600000,"y":0.26},{"x":1567212660000,"y":0.12},{"x":1567212720000,"y":0.12},{"x":1567212780000,"y":0.12},{"x":1567212840000,"y":0.23},{"x":1567212900000,"y":0.27},{"x":1567212960000,"y":0.13},{"x":1567213020000,"y":0.14},{"x":1567213080000,"y":0.13},{"x":1567213140000,"y":0.67},{"x":1567213200000,"y":0.4},{"x":1567213260000,"y":0.17},{"x":1567213320000,"y":0.13},{"x":1567213380000,"y":0.13},{"x":1567213440000,"y":0.26},{"x":1567213500000,"y":0.25},{"x":1567213560000,"y":0.1},{"x":1567213620000,"y":0.16},{"x":1567213680000,"y":0.14},{"x":1567213740000,"y":0.43},{"x":1567213800000,"y":0.27},{"x":1567213860000,"y":0.11},{"x":1567213920000,"y":0.15},{"x":1567213980000,"y":0.1},{"x":1567214040000,"y":0.1},{"x":1567214100000,"y":0.47},{"x":1567214160000,"y":0.09},{"x":1567214220000,"y":0.17},{"x":1567214280000,"y":0.15},{"x":1567214340000,"y":0.1},{"x":1567214400000,"y":0.41},{"x":1567214460000,"y":0.16},{"x":1567214520000,"y":0.12},{"x":1567214580000,"y":0.12},{"x":1567214640000,"y":0.1},{"x":1567214700000,"y":0.5},{"x":1567214760000,"y":0.15},{"x":1567214820000,"y":0.11},{"x":1567214880000,"y":0.2},{"x":1567214940000,"y":0.19},{"x":1567215000000,"y":0.4},{"x":1567215060000,"y":0.1},{"x":1567215120000,"y":0.11},{"x":1567215180000,"y":0.1},{"x":1567215240000,"y":0.14},{"x":1567215300000,"y":0.38},{"x":1567215360000,"y":0.1},{"x":1567215420000,"y":0.12},{"x":1567215480000,"y":0.17},{"x":1567215540000,"y":0.39},{"x":1567215600000,"y":0.42},{"x":1567215660000,"y":0.09},{"x":1567215720000,"y":0.08},{"x":1567215780000,"y":0.08},{"x":1567215840000,"y":0.11},{"x":1567215900000,"y":0.38},{"x":1567215960000,"y":0.11},{"x":1567216020000,"y":0.16},{"x":1567216080000,"y":0.15},{"x":1567216140000,"y":0.19},{"x":1567216200000,"y":0.4},{"x":1567216260000,"y":0.13},{"x":1567216320000,"y":0.13},{"x":1567216380000,"y":0.11},{"x":1567216440000,"y":0.14},{"x":1567216500000,"y":0.3},{"x":1567216560000,"y":0.34},{"x":1567216620000,"y":0.1},{"x":1567216680000,"y":0.11},{"x":1567216740000,"y":0.13},{"x":1567216800000,"y":0.35},{"x":1567216860000,"y":0.35},{"x":1567216920000,"y":0.23},{"x":1567216980000,"y":0.17},{"x":1567217040000,"y":0.22},{"x":1567217100000,"y":0.28},{"x":1567217160000,"y":0.31},{"x":1567217220000,"y":0.16},{"x":1567217280000,"y":0.23},{"x":1567217340000,"y":0.29},{"x":1567217400000,"y":0.27},{"x":1567217460000,"y":0.37},{"x":1567217520000,"y":0.18},{"x":1567217580000,"y":0.28},{"x":1567217640000,"y":0.19},{"x":1567217700000,"y":0.32},{"x":1567217760000,"y":0.29},{"x":1567217820000,"y":0.22},{"x":1567217880000,"y":0.21},{"x":1567217940000,"y":0.15},{"x":1567218000000,"y":0.26},{"x":1567218060000,"y":0.28},{"x":1567218120000,"y":0.15},{"x":1567218180000,"y":0.17},{"x":1567218240000,"y":0.14},{"x":1567218300000,"y":0.28},{"x":1567218360000,"y":0.33},{"x":1567218420000,"y":0.22},{"x":1567218480000,"y":0.15},{"x":1567218540000,"y":0.18},{"x":1567218600000,"y":0.47},{"x":1567218660000,"y":0.16},{"x":1567218720000,"y":0.29},{"x":1567218780000,"y":0.15},{"x":1567218840000,"y":0.16},{"x":1567218900000,"y":0.32},{"x":1567218960000,"y":0.17},{"x":1567219020000,"y":0.35},{"x":1567219080000,"y":0.17},{"x":1567219140000,"y":0.38},{"x":1567219200000,"y":0.28},{"x":1567219260000,"y":0.17},{"x":1567219320000,"y":0.3},{"x":1567219380000,"y":1.16},{"x":1567219440000,"y":0.17},{"x":1567219500000,"y":0.34},{"x":1567219560000,"y":0.19},{"x":1567219620000,"y":0.38},{"x":1567219680000,"y":0.24},{"x":1567219740000,"y":0.23},{"x":1567219800000,"y":0.24},{"x":1567219860000,"y":0.17},{"x":1567219920000,"y":0.32},{"x":1567219980000,"y":0.17},{"x":1567220040000,"y":0.2},{"x":1567220100000,"y":0.27},{"x":1567220160000,"y":0.2},{"x":1567220220000,"y":0.32},{"x":1567220280000,"y":0.19},{"x":1567220340000,"y":0.19},{"x":1567220400000,"y":0.58},{"x":1567220460000,"y":0.33},{"x":1567220520000,"y":0.27},{"x":1567220580000,"y":0.36},{"x":1567220640000,"y":0.24},{"x":1567220700000,"y":0.41},{"x":1567220760000,"y":0.2},{"x":1567220820000,"y":0.26},{"x":1567220880000,"y":0.37},{"x":1567220940000,"y":0.39},{"x":1567221000000,"y":0.51},{"x":1567221060000,"y":0.22},{"x":1567221120000,"y":0.2},{"x":1567221180000,"y":0.34},{"x":1567221240000,"y":0.21},{"x":1567221300000,"y":0.34},{"x":1567221360000,"y":0.18},{"x":1567221420000,"y":0.63},{"x":1567221480000,"y":0.38},{"x":1567221540000,"y":0.2},{"x":1567221600000,"y":0.36},{"x":1567221660000,"y":0.24},{"x":1567221720000,"y":0.2},{"x":1567221780000,"y":0.46},{"x":1567221840000,"y":0.22},{"x":1567221900000,"y":0.31},{"x":1567221960000,"y":0.21},{"x":1567222020000,"y":0.18},{"x":1567222080000,"y":0.35},{"x":1567222140000,"y":0.25},{"x":1567222200000,"y":0.44},{"x":1567222260000,"y":0.2},{"x":1567222320000,"y":0.21},{"x":1567222380000,"y":0.37},{"x":1567222440000,"y":0.25},{"x":1567222500000,"y":0.49},{"x":1567222560000,"y":0.2},{"x":1567222620000,"y":0.2},{"x":1567222680000,"y":0.72},{"x":1567222740000,"y":0.42},{"x":1567222800000,"y":0.5},{"x":1567222860000,"y":0.18},{"x":1567222920000,"y":0.27},{"x":1567222980000,"y":0.18},{"x":1567223040000,"y":0.32},{"x":1567223100000,"y":0.34},{"x":1567223160000,"y":0.22},{"x":1567223220000,"y":0.2},{"x":1567223280000,"y":0.32},{"x":1567223340000,"y":0.42},{"x":1567223400000,"y":0.39},{"x":1567223460000,"y":0.17},{"x":1567223520000,"y":0.24},{"x":1567223580000,"y":0.18},{"x":1567223640000,"y":0.39},{"x":1567223700000,"y":0.34},{"x":1567223760000,"y":0.27},{"x":1567223820000,"y":0.18},{"x":1567223880000,"y":0.19},{"x":1567223940000,"y":0.33},{"x":1567224000000,"y":0.48},{"x":1567224060000,"y":0.28},{"x":1567224120000,"y":0.24},{"x":1567224180000,"y":0.24},{"x":1567224240000,"y":0.45},{"x":1567224300000,"y":0.37},{"x":1567224360000,"y":0.25},{"x":1567224420000,"y":2.19},{"x":1567224480000,"y":0.17},{"x":1567224540000,"y":0.47},{"x":1567224600000,"y":0.39},{"x":1567224660000,"y":0.21},{"x":1567224720000,"y":0.19},{"x":1567224780000,"y":0.21},{"x":1567224840000,"y":0.34},{"x":1567224900000,"y":0.41},{"x":1567224960000,"y":0.17},{"x":1567225020000,"y":0.36},{"x":1567225080000,"y":0.2},{"x":1567225140000,"y":0.4},{"x":1567225200000,"y":0.31},{"x":1567225260000,"y":0.18},{"x":1567225320000,"y":0.16},{"x":1567225380000,"y":0.16},{"x":1567225440000,"y":0.18},{"x":1567225500000,"y":5.92},{"x":1567225560000,"y":0.21},{"x":1567225620000,"y":0.15},{"x":1567225680000,"y":0.2},{"x":1567225740000,"y":0.17},{"x":1567225800000,"y":0.57},{"x":1567225860000,"y":0.17},{"x":1567225920000,"y":4.7},{"x":1567225980000,"y":0.21},{"x":1567226040000,"y":0.17},{"x":1567226100000,"y":0.48},{"x":1567226160000,"y":0.16},{"x":1567226220000,"y":0.21},{"x":1567226280000,"y":0.22},{"x":1567226340000,"y":0.23},{"x":1567226400000,"y":0.42},{"x":1567226460000,"y":0.18},{"x":1567226520000,"y":0.64},{"x":1567226580000,"y":0.24},{"x":1567226640000,"y":0.25},{"x":1567226700000,"y":0.55},{"x":1567226760000,"y":0.18},{"x":1567226820000,"y":0.27},{"x":1567226880000,"y":0.23},{"x":1567226940000,"y":0.17},{"x":1567227000000,"y":2.12},{"x":1567227060000,"y":0.15},{"x":1567227120000,"y":0.17},{"x":1567227180000,"y":0.17},{"x":1567227240000,"y":0.19},{"x":1567227300000,"y":0.38},{"x":1567227360000,"y":0.16},{"x":1567227420000,"y":1.18},{"x":1567227480000,"y":0.17},{"x":1567227540000,"y":0.17},{"x":1567227600000,"y":0.94},{"x":1567227660000,"y":0.36},{"x":1567227720000,"y":0.22},{"x":1567227780000,"y":0.17},{"x":1567227840000,"y":3.77},{"x":1567227900000,"y":0.42},{"x":1567227960000,"y":0.46},{"x":1567228020000,"y":0.17},{"x":1567228080000,"y":0.29},{"x":1567228140000,"y":0.26},{"x":1567228200000,"y":0.36},{"x":1567228260000,"y":0.82},{"x":1567228320000,"y":1.63},{"x":1567228380000,"y":0.17},{"x":1567228440000,"y":0.25},{"x":1567228500000,"y":0.29},{"x":1567228560000,"y":0.31},{"x":1567228620000,"y":0.21},{"x":1567228680000,"y":0.11},{"x":1567228740000,"y":0.14},{"x":1567228800000,"y":0.27},{"x":1567228860000,"y":0.26},{"x":1567228920000,"y":0.23},{"x":1567228980000,"y":0.1},{"x":1567229040000,"y":0.1},{"x":1567229100000,"y":0.34},{"x":1567229160000,"y":0.71},{"x":1567229220000,"y":0.08},{"x":1567229280000,"y":0.09},{"x":1567229340000,"y":2.03},{"x":1567229400000,"y":0.34},{"x":1567229460000,"y":0.3},{"x":1567229520000,"y":0.14},{"x":1567229580000,"y":0.11},{"x":1567229640000,"y":0.08},{"x":1567229700000,"y":0.16},{"x":1567229760000,"y":0.27},{"x":1567229820000,"y":0.1},{"x":1567229880000,"y":0.11},{"x":1567229940000,"y":0.14},{"x":1567230000000,"y":1.42},{"x":1567230060000,"y":0.24},{"x":1567230120000,"y":0.08},{"x":1567230180000,"y":0.09},{"x":1567230240000,"y":0.13},{"x":1567230300000,"y":2.42},{"x":1567230360000,"y":0.1},{"x":1567230420000,"y":1.65},{"x":1567230480000,"y":0.11},{"x":1567230540000,"y":0.09},{"x":1567230600000,"y":0.23},{"x":1567230660000,"y":0.07},{"x":1567230720000,"y":0.31},{"x":1567230780000,"y":0.15},{"x":1567230840000,"y":0.49},{"x":1567230900000,"y":0.27},{"x":1567230960000,"y":0.09},{"x":1567231020000,"y":0.25},{"x":1567231080000,"y":0.08},{"x":1567231140000,"y":0.12},{"x":1567231200000,"y":0.35},{"x":1567231260000,"y":0.82},{"x":1567231320000,"y":0.32},{"x":1567231380000,"y":0.11},{"x":1567231440000,"y":0.11},{"x":1567231500000,"y":0.29},{"x":1567231560000,"y":0.11},{"x":1567231620000,"y":0.22},{"x":1567231680000,"y":0.16},{"x":1567231740000,"y":0.46},{"x":1567231800000,"y":0.35},{"x":1567231860000,"y":0.13},{"x":1567231920000,"y":0.45},{"x":1567231980000,"y":0.1},{"x":1567232040000,"y":0.1},{"x":1567232100000,"y":0.22},{"x":1567232160000,"y":0.85},{"x":1567232220000,"y":0.33},{"x":1567232280000,"y":0.15},{"x":1567232340000,"y":0.13},{"x":1567232400000,"y":0.25},{"x":1567232460000,"y":0.1},{"x":1567232520000,"y":0.29},{"x":1567232580000,"y":0.17},{"x":1567232640000,"y":0.09},{"x":1567232700000,"y":0.38},{"x":1567232760000,"y":0.1},{"x":1567232820000,"y":0.12},{"x":1567232880000,"y":0.3},{"x":1567232940000,"y":0.2},{"x":1567233000000,"y":0.43},{"x":1567233060000,"y":0.16},{"x":1567233120000,"y":0.11},{"x":1567233180000,"y":0.37},{"x":1567233240000,"y":0.12},{"x":1567233300000,"y":0.37},{"x":1567233360000,"y":0.1},{"x":1567233420000,"y":0.18},{"x":1567233480000,"y":0.67},{"x":1567233540000,"y":0.2},{"x":1567233600000,"y":0.19},{"x":1567233660000,"y":0.17},{"x":1567233720000,"y":0.14},{"x":1567233780000,"y":0.23},{"x":1567233840000,"y":0.13},{"x":1567233900000,"y":0.27},{"x":1567233960000,"y":0.12},{"x":1567234020000,"y":0.12},{"x":1567234080000,"y":1.96},{"x":1567234140000,"y":0.09},{"x":1567234200000,"y":0.26},{"x":1567234260000,"y":0.13},{"x":1567234320000,"y":0.1},{"x":1567234380000,"y":0.24},{"x":1567234440000,"y":0.11},{"x":1567234500000,"y":1.83},{"x":1567234560000,"y":0.13},{"x":1567234620000,"y":0.12},{"x":1567234680000,"y":0.32},{"x":1567234740000,"y":0.14},{"x":1567234800000,"y":0.35},{"x":1567234860000,"y":0.12},{"x":1567234920000,"y":0.08},{"x":1567234980000,"y":0.1},{"x":1567235040000,"y":0.35},{"x":1567235100000,"y":0.23},{"x":1567235160000,"y":0.09},{"x":1567235220000,"y":0.13},{"x":1567235280000,"y":0.1},{"x":1567235340000,"y":0.54},{"x":1567235400000,"y":0.26},{"x":1567235460000,"y":0.17},{"x":1567235520000,"y":0.11},{"x":1567235580000,"y":0.82},{"x":1567235640000,"y":0.29},{"x":1567235700000,"y":0.3},{"x":1567235760000,"y":0.1},{"x":1567235820000,"y":0.18},{"x":1567235880000,"y":0.12},{"x":1567235940000,"y":0.33},{"x":1567236000000,"y":0.31},{"x":1567236060000,"y":0.15},{"x":1567236120000,"y":0.14},{"x":1567236180000,"y":0.13},{"x":1567236240000,"y":0.27},{"x":1567236300000,"y":0.27},{"x":1567236360000,"y":0.16},{"x":1567236420000,"y":0.08},{"x":1567236480000,"y":0.1},{"x":1567236540000,"y":0.25},{"x":1567236600000,"y":0.31},{"x":1567236660000,"y":0.11},{"x":1567236720000,"y":0.16},{"x":1567236780000,"y":0.19},{"x":1567236840000,"y":0.27},{"x":1567236900000,"y":0.38},{"x":1567236960000,"y":0.15},{"x":1567237020000,"y":0.13},{"x":1567237080000,"y":2.34},{"x":1567237140000,"y":0.27},{"x":1567237200000,"y":0.6},{"x":1567237260000,"y":0.09},{"x":1567237320000,"y":0.33},{"x":1567237380000,"y":0.14},{"x":1567237440000,"y":0.13},{"x":1567237500000,"y":0.55},{"x":1567237560000,"y":0.12},{"x":1567237620000,"y":0.15},{"x":1567237680000,"y":0.13},{"x":1567237740000,"y":0.12},{"x":1567237800000,"y":0.36},{"x":1567237860000,"y":0.2},{"x":1567237920000,"y":0.23},{"x":1567237980000,"y":0.14},{"x":1567238040000,"y":0.12},{"x":1567238100000,"y":0.42},{"x":1567238160000,"y":0.25},{"x":1567238220000,"y":0.13},{"x":1567238280000,"y":0.12},{"x":1567238340000,"y":0.12},{"x":1567238400000,"y":0.71},{"x":1567238460000,"y":0.21},{"x":1567238520000,"y":0.2},{"x":1567238580000,"y":0.23},{"x":1567238640000,"y":0.19},{"x":1567238700000,"y":0.43},{"x":1567238760000,"y":0.12},{"x":1567238820000,"y":0.1},{"x":1567238880000,"y":0.12},{"x":1567238940000,"y":0.29},{"x":1567239000000,"y":0.52},{"x":1567239060000,"y":0.17},{"x":1567239120000,"y":0.12},{"x":1567239180000,"y":0.18},{"x":1567239240000,"y":0.18},{"x":1567239300000,"y":0.56},{"x":1567239360000,"y":0.15},{"x":1567239420000,"y":0.18},{"x":1567239480000,"y":0.21},{"x":1567239540000,"y":0.18},{"x":1567239600000,"y":0.19},{"x":1567239660000,"y":0.32},{"x":1567239720000,"y":0.12},{"x":1567239780000,"y":0.2},{"x":1567239840000,"y":0.11},{"x":1567239900000,"y":0.29},{"x":1567239960000,"y":0.23},{"x":1567240020000,"y":0.16},{"x":1567240080000,"y":2.74},{"x":1567240140000,"y":0.19},{"x":1567240200000,"y":0.35},{"x":1567240260000,"y":0.28},{"x":1567240320000,"y":0.23},{"x":1567240380000,"y":0.19},{"x":1567240440000,"y":0.17},{"x":1567240500000,"y":0.37},{"x":1567240560000,"y":0.55},{"x":1567240620000,"y":0.16},{"x":1567240680000,"y":0.13},{"x":1567240740000,"y":0.41},{"x":1567240800000,"y":0.28},{"x":1567240860000,"y":0.22},{"x":1567240920000,"y":0.15},{"x":1567240980000,"y":0.14},{"x":1567241040000,"y":0.12},{"x":1567241100000,"y":0.29},{"x":1567241160000,"y":0.3},{"x":1567241220000,"y":0.25},{"x":1567241280000,"y":0.09},{"x":1567241340000,"y":0.07},{"x":1567241400000,"y":0.28},{"x":1567241460000,"y":0.27},{"x":1567241520000,"y":0.17},{"x":1567241580000,"y":0.17},{"x":1567241640000,"y":0.2},{"x":1567241700000,"y":0.24},{"x":1567241760000,"y":0.22},{"x":1567241820000,"y":0.13},{"x":1567241880000,"y":0.1},{"x":1567241940000,"y":0.12},{"x":1567242000000,"y":0.42},{"x":1567242060000,"y":0.18},{"x":1567242120000,"y":0.34},{"x":1567242180000,"y":0.11},{"x":1567242240000,"y":0.19},{"x":1567242300000,"y":0.28},{"x":1567242360000,"y":0.16},{"x":1567242420000,"y":0.31},{"x":1567242480000,"y":0.2},{"x":1567242540000,"y":0.38},{"x":1567242600000,"y":0.3},{"x":1567242660000,"y":0.19},{"x":1567242720000,"y":0.31},{"x":1567242780000,"y":0.12},{"x":1567242840000,"y":0.09},{"x":1567242900000,"y":0.3},{"x":1567242960000,"y":0.18},{"x":1567243020000,"y":0.33},{"x":1567243080000,"y":0.1},{"x":1567243140000,"y":0.16},{"x":1567243200000,"y":0.34},{"x":1567243260000,"y":0.15},{"x":1567243320000,"y":0.23},{"x":1567243380000,"y":0.13},{"x":1567243440000,"y":0.13},{"x":1567243500000,"y":0.21},{"x":1567243560000,"y":0.19},{"x":1567243620000,"y":0.31},{"x":1567243680000,"y":0.29},{"x":1567243740000,"y":0.14},{"x":1567243800000,"y":0.36},{"x":1567243860000,"y":0.18},{"x":1567243920000,"y":0.34},{"x":1567243980000,"y":0.11},{"x":1567244040000,"y":0.14},{"x":1567244100000,"y":0.28},{"x":1567244160000,"y":0.12},{"x":1567244220000,"y":0.24},{"x":1567244280000,"y":0.11},{"x":1567244340000,"y":0.31},{"x":1567244400000,"y":0.4},{"x":1567244460000,"y":0.17},{"x":1567244520000,"y":0.13},{"x":1567244580000,"y":0.34},{"x":1567244640000,"y":0.17},{"x":1567244700000,"y":0.33},{"x":1567244760000,"y":0.15},{"x":1567244820000,"y":0.16},{"x":1567244880000,"y":0.31},{"x":1567244940000,"y":0.18},{"x":1567245000000,"y":0.35},{"x":1567245060000,"y":0.17},{"x":1567245120000,"y":0.15},{"x":1567245180000,"y":0.3},{"x":1567245240000,"y":0.23},{"x":1567245300000,"y":0.32},{"x":1567245360000,"y":0.17},{"x":1567245420000,"y":0.17},{"x":1567245480000,"y":0.28},{"x":1567245540000,"y":0.11},{"x":1567245600000,"y":0.39},{"x":1567245660000,"y":0.17},{"x":1567245720000,"y":0.17},{"x":1567245780000,"y":0.23},{"x":1567245840000,"y":0.15},{"x":1567245900000,"y":0.31},{"x":1567245960000,"y":0.11},{"x":1567246020000,"y":0.17},{"x":1567246080000,"y":0.26},{"x":1567246140000,"y":0.3},{"x":1567246200000,"y":0.19},{"x":1567246260000,"y":0.16},{"x":1567246320000,"y":0.12},{"x":1567246380000,"y":0.35},{"x":1567246440000,"y":0.32},{"x":1567246500000,"y":0.32},{"x":1567246560000,"y":0.1},{"x":1567246620000,"y":0.21},{"x":1567246680000,"y":0.17},{"x":1567246740000,"y":0.35},{"x":1567246800000,"y":0.31},{"x":1567246860000,"y":0.19},{"x":1567246920000,"y":0.15},{"x":1567246980000,"y":0.15},{"x":1567247040000,"y":0.27},{"x":1567247100000,"y":0.44},{"x":1567247160000,"y":0.17},{"x":1567247220000,"y":0.21},{"x":1567247280000,"y":0.35},{"x":1567247340000,"y":3.6},{"x":1567247400000,"y":0.33},{"x":1567247460000,"y":0.31},{"x":1567247520000,"y":0.13},{"x":1567247580000,"y":0.21},{"x":1567247640000,"y":0.32},{"x":1567247700000,"y":0.18},{"x":1567247760000,"y":0.11},{"x":1567247820000,"y":0.17},{"x":1567247880000,"y":0.15},{"x":1567247940000,"y":0.5},{"x":1567248000000,"y":0.28},{"x":1567248060000,"y":0.13},{"x":1567248120000,"y":0.95},{"x":1567248180000,"y":0.12},{"x":1567248240000,"y":0.28},{"x":1567248300000,"y":0.33},{"x":1567248360000,"y":0.18},{"x":1567248420000,"y":0.15},{"x":1567248480000,"y":0.2},{"x":1567248540000,"y":0.37},{"x":1567248600000,"y":0.27},{"x":1567248660000,"y":0.14},{"x":1567248720000,"y":0.1},{"x":1567248780000,"y":0.16},{"x":1567248840000,"y":0.1},{"x":1567248900000,"y":0.51},{"x":1567248960000,"y":0.16},{"x":1567249020000,"y":0.12},{"x":1567249080000,"y":0.13},{"x":1567249140000,"y":0.14},{"x":1567249200000,"y":0.56},{"x":1567249260000,"y":0.08},{"x":1567249320000,"y":0.13},{"x":1567249380000,"y":0.16},{"x":1567249440000,"y":0.12},{"x":1567249500000,"y":0.38},{"x":1567249560000,"y":0.14},{"x":1567249620000,"y":0.2},{"x":1567249680000,"y":0.12},{"x":1567249740000,"y":0.16},{"x":1567249800000,"y":0.41},{"x":1567249860000,"y":0.18},{"x":1567249920000,"y":0.14},{"x":1567249980000,"y":0.14},{"x":1567250040000,"y":0.24},{"x":1567250100000,"y":0.56},{"x":1567250160000,"y":0.18},{"x":1567250220000,"y":0.15},{"x":1567250280000,"y":7.28},{"x":1567250340000,"y":0.14},{"x":1567250400000,"y":0.5},{"x":1567250460000,"y":0.25},{"x":1567250520000,"y":0.24},{"x":1567250580000,"y":0.12},{"x":1567250640000,"y":0.24},{"x":1567250700000,"y":2.17},{"x":1567250760000,"y":0.18},{"x":1567250820000,"y":0.16},{"x":1567250880000,"y":0.3},{"x":1567250940000,"y":0.2},{"x":1567251000000,"y":0.24},{"x":1567251060000,"y":0.5},{"x":1567251120000,"y":0.15},{"x":1567251180000,"y":0.15},{"x":1567251240000,"y":0.32},{"x":1567251300000,"y":0.34},{"x":1567251360000,"y":0.32},{"x":1567251420000,"y":0.17},{"x":1567251480000,"y":0.16},{"x":1567251540000,"y":0.31},{"x":1567251600000,"y":0.24},{"x":1567251660000,"y":0.36},{"x":1567251720000,"y":0.17},{"x":1567251780000,"y":0.13},{"x":1567251840000,"y":0.11},{"x":1567251900000,"y":0.39},{"x":1567251960000,"y":0.27},{"x":1567252020000,"y":0.23},{"x":1567252080000,"y":0.18},{"x":1567252140000,"y":0.21},{"x":1567252200000,"y":2.6},{"x":1567252260000,"y":0.32},{"x":1567252320000,"y":0.21},{"x":1567252380000,"y":0.19},{"x":1567252440000,"y":0.29},{"x":1567252500000,"y":0.37},{"x":1567252560000,"y":0.39},{"x":1567252620000,"y":0.22},{"x":1567252680000,"y":0.23},{"x":1567252740000,"y":0.2},{"x":1567252800000,"y":0.45},{"x":1567252860000,"y":0.36},{"x":1567252920000,"y":0.26},{"x":1567252980000,"y":0.19},{"x":1567253040000,"y":0.21},{"x":1567253100000,"y":0.33},{"x":1567253160000,"y":0.37},{"x":1567253220000,"y":0.27},{"x":1567253280000,"y":0.21},{"x":1567253340000,"y":0.28},{"x":1567253400000,"y":0.38},{"x":1567253460000,"y":0.26},{"x":1567253520000,"y":0.54},{"x":1567253580000,"y":0.31},{"x":1567253640000,"y":0.34},{"x":1567253700000,"y":0.53},{"x":1567253760000,"y":0.49},{"x":1567253820000,"y":0.43},{"x":1567253880000,"y":0.29},{"x":1567253940000,"y":0.29},{"x":1567254000000,"y":0.5},{"x":1567254060000,"y":0.23},{"x":1567254120000,"y":0.32},{"x":1567254180000,"y":0.2},{"x":1567254240000,"y":0.25},{"x":1567254300000,"y":0.38},{"x":1567254360000,"y":0.26},{"x":1567254420000,"y":0.43},{"x":1567254480000,"y":0.3},{"x":1567254540000,"y":0.22},{"x":1567254600000,"y":0.49},{"x":1567254660000,"y":0.21},{"x":1567254720000,"y":0.38},{"x":1567254780000,"y":0.22},{"x":1567254840000,"y":0.26},{"x":1567254900000,"y":0.43},{"x":1567254960000,"y":0.29},{"x":1567255020000,"y":0.39},{"x":1567255080000,"y":0.2},{"x":1567255140000,"y":0.4},{"x":1567255200000,"y":0.38},{"x":1567255260000,"y":0.22},{"x":1567255320000,"y":0.22},{"x":1567255380000,"y":0.37},{"x":1567255440000,"y":0.2},{"x":1567255500000,"y":0.37},{"x":1567255560000,"y":0.26},{"x":1567255620000,"y":0.21},{"x":1567255680000,"y":0.47},{"x":1567255740000,"y":0.32},{"x":1567255800000,"y":0.38},{"x":1567255860000,"y":0.25},{"x":1567255920000,"y":0.25},{"x":1567255980000,"y":0.4},{"x":1567256040000,"y":0.2},{"x":1567256100000,"y":0.28},{"x":1567256160000,"y":0.2},{"x":1567256220000,"y":0.19},{"x":1567256280000,"y":0.39},{"x":1567256340000,"y":0.22},{"x":1567256400000,"y":0.46},{"x":1567256460000,"y":0.17},{"x":1567256520000,"y":0.23},{"x":1567256580000,"y":0.37},{"x":1567256640000,"y":0.22},{"x":1567256700000,"y":0.41},{"x":1567256760000,"y":0.19},{"x":1567256820000,"y":0.23},{"x":1567256880000,"y":0.39},{"x":1567256940000,"y":0.34},{"x":1567257000000,"y":0.31},{"x":1567257060000,"y":0.16},{"x":1567257120000,"y":0.19},{"x":1567257180000,"y":0.33},{"x":1567257240000,"y":0.2},{"x":1567257300000,"y":0.28},{"x":1567257360000,"y":0.17},{"x":1567257420000,"y":0.24},{"x":1567257480000,"y":0.3},{"x":1567257540000,"y":0.19},{"x":1567257600000,"y":0.29},{"x":1567257660000,"y":0.2},{"x":1567257720000,"y":0.25},{"x":1567257780000,"y":0.31},{"x":1567257840000,"y":0.25},{"x":1567257900000,"y":0.29},{"x":1567257960000,"y":0.2},{"x":1567258020000,"y":0.18},{"x":1567258080000,"y":0.2},{"x":1567258140000,"y":0.32},{"x":1567258200000,"y":0.43},{"x":1567258260000,"y":0.3},{"x":1567258320000,"y":0.21},{"x":1567258380000,"y":0.26},{"x":1567258440000,"y":0.44},{"x":1567258500000,"y":0.28},{"x":1567258560000,"y":0.23},{"x":1567258620000,"y":0.2},{"x":1567258680000,"y":0.2},{"x":1567258740000,"y":0.59},{"x":1567258800000,"y":0.43},{"x":1567258860000,"y":0.2},{"x":1567258920000,"y":0.19},{"x":1567258980000,"y":0.19},{"x":1567259040000,"y":0.38},{"x":1567259100000,"y":0.34},{"x":1567259160000,"y":0.2},{"x":1567259220000,"y":0.2},{"x":1567259280000,"y":0.2},{"x":1567259340000,"y":0.38},{"x":1567259400000,"y":0.34},{"x":1567259460000,"y":0.17},{"x":1567259520000,"y":2.1},{"x":1567259580000,"y":0.19},{"x":1567259640000,"y":0.37},{"x":1567259700000,"y":0.25},{"x":1567259760000,"y":0.22},{"x":1567259820000,"y":0.24},{"x":1567259880000,"y":0.19},{"x":1567259940000,"y":0.33},{"x":1567260000000,"y":0.44},{"x":1567260060000,"y":0.2},{"x":1567260120000,"y":0.2},{"x":1567260180000,"y":0.17},{"x":1567260240000,"y":0.2},{"x":1567260300000,"y":0.62},{"x":1567260360000,"y":0.2},{"x":1567260420000,"y":0.19},{"x":1567260480000,"y":0.2},{"x":1567260540000,"y":0.39},{"x":1567260600000,"y":0.45},{"x":1567260660000,"y":0.18},{"x":1567260720000,"y":0.3},{"x":1567260780000,"y":0.28},{"x":1567260840000,"y":0.2},{"x":1567260900000,"y":0.46},{"x":1567260960000,"y":0.17},{"x":1567261020000,"y":0.19},{"x":1567261080000,"y":0.16},{"x":1567261140000,"y":0.19},{"x":1567261200000,"y":0.46},{"x":1567261260000,"y":0.19},{"x":1567261320000,"y":0.19},{"x":1567261380000,"y":0.19},{"x":1567261440000,"y":0.16},{"x":1567261500000,"y":0.45},{"x":1567261560000,"y":0.18},{"x":1567261620000,"y":0.16},{"x":1567261680000,"y":0.2},{"x":1567261740000,"y":0.17},{"x":1567261800000,"y":0.47},{"x":1567261860000,"y":0.25},{"x":1567261920000,"y":0.25},{"x":1567261980000,"y":0.3},{"x":1567262040000,"y":0.17},{"x":1567262100000,"y":0.38},{"x":1567262160000,"y":0.17},{"x":1567262220000,"y":0.13},{"x":1567262280000,"y":0.17},{"x":1567262340000,"y":0.21},{"x":1567262400000,"y":0.39},{"x":1567262460000,"y":0.14},{"x":1567262520000,"y":0.14},{"x":1567262580000,"y":0.12},{"x":1567262640000,"y":0.13},{"x":1567262700000,"y":2.44},{"x":1567262760000,"y":0.3},{"x":1567262820000,"y":0.12},{"x":1567262880000,"y":0.16},{"x":1567262940000,"y":0.19},{"x":1567263000000,"y":0.28},{"x":1567263060000,"y":0.2},{"x":1567263120000,"y":1.36},{"x":1567263180000,"y":0.17},{"x":1567263240000,"y":0.13},{"x":1567263300000,"y":0.26},{"x":1567263360000,"y":0.29},{"x":1567263420000,"y":0.12},{"x":1567263480000,"y":0.15},{"x":1567263540000,"y":0.15},{"x":1567263600000,"y":0.46},{"x":1567263660000,"y":0.41},{"x":1567263720000,"y":0.22},{"x":1567263780000,"y":0.11},{"x":1567263840000,"y":0.15},{"x":1567263900000,"y":0.19},{"x":1567263960000,"y":0.29},{"x":1567264020000,"y":0.1},{"x":1567264080000,"y":0.09},{"x":1567264140000,"y":0.33},{"x":1567264200000,"y":0.23},{"x":1567264260000,"y":0.3},{"x":1567264320000,"y":0.13},{"x":1567264380000,"y":0.11},{"x":1567264440000,"y":0.11},{"x":1567264500000,"y":0.23},{"x":1567264560000,"y":0.3},{"x":1567264620000,"y":0.16},{"x":1567264680000,"y":0.15},{"x":1567264740000,"y":0.1},{"x":1567264800000,"y":0.23},{"x":1567264860000,"y":0.32},{"x":1567264920000,"y":0.09},{"x":1567264980000,"y":0.14},{"x":1567265040000,"y":0.13},{"x":1567265100000,"y":0.3},{"x":1567265160000,"y":0.11},{"x":1567265220000,"y":0.28},{"x":1567265280000,"y":0.14},{"x":1567265340000,"y":0.15},{"x":1567265400000,"y":0.4},{"x":1567265460000,"y":0.11},{"x":1567265520000,"y":0.3},{"x":1567265580000,"y":0.11},{"x":1567265640000,"y":0.15},{"x":1567265700000,"y":0.4},{"x":1567265760000,"y":0.15},{"x":1567265820000,"y":0.37},{"x":1567265880000,"y":0.15},{"x":1567265940000,"y":0.34},{"x":1567266000000,"y":0.37},{"x":1567266060000,"y":0.15},{"x":1567266120000,"y":0.32},{"x":1567266180000,"y":0.11},{"x":1567266240000,"y":0.09},{"x":1567266300000,"y":0.28},{"x":1567266360000,"y":0.14},{"x":1567266420000,"y":0.29},{"x":1567266480000,"y":0.12},{"x":1567266540000,"y":0.12},{"x":1567266600000,"y":0.25},{"x":1567266660000,"y":0.09},{"x":1567266720000,"y":0.27},{"x":1567266780000,"y":0.12},{"x":1567266840000,"y":0.13},{"x":1567266900000,"y":0.31},{"x":1567266960000,"y":0.18},{"x":1567267020000,"y":0.35},{"x":1567267080000,"y":0.1},{"x":1567267140000,"y":0.1},{"x":1567267200000,"y":0.36},{"x":1567267260000,"y":0.14},{"x":1567267320000,"y":0.1},{"x":1567267380000,"y":0.27},{"x":1567267440000,"y":0.11},{"x":1567267500000,"y":0.22},{"x":1567267560000,"y":0.15},{"x":1567267620000,"y":0.13},{"x":1567267680000,"y":0.24},{"x":1567267740000,"y":0.19},{"x":1567267800000,"y":0.3},{"x":1567267860000,"y":0.1},{"x":1567267920000,"y":0.14},{"x":1567267980000,"y":0.35},{"x":1567268040000,"y":0.17},{"x":1567268100000,"y":0.23},{"x":1567268160000,"y":0.17},{"x":1567268220000,"y":0.08},{"x":1567268280000,"y":0.24},{"x":1567268340000,"y":0.15},{"x":1567268400000,"y":0.21},{"x":1567268460000,"y":0.12},{"x":1567268520000,"y":0.19},{"x":1567268580000,"y":0.27},{"x":1567268640000,"y":0.23},{"x":1567268700000,"y":0.27},{"x":1567268760000,"y":0.11},{"x":1567268820000,"y":0.14},{"x":1567268880000,"y":0.4},{"x":1567268940000,"y":0.13},{"x":1567269000000,"y":0.44},{"x":1567269060000,"y":0.19},{"x":1567269120000,"y":0.26},{"x":1567269180000,"y":2.33},{"x":1567269240000,"y":4.04},{"x":1567269300000,"y":0.51},{"x":1567269360000,"y":0.14},{"x":1567269420000,"y":0.19},{"x":1567269480000,"y":0.19},{"x":1567269540000,"y":0.46},{"x":1567269600000,"y":0.32},{"x":1567269660000,"y":0.15},{"x":1567269720000,"y":0.19},{"x":1567269780000,"y":0.13},{"x":1567269840000,"y":0.36},{"x":1567269900000,"y":0.22},{"x":1567269960000,"y":0.19},{"x":1567270020000,"y":0.17},{"x":1567270080000,"y":0.17},{"x":1567270140000,"y":0.32},{"x":1567270200000,"y":0.24},{"x":1567270260000,"y":0.1},{"x":1567270320000,"y":0.13},{"x":1567270380000,"y":0.15},{"x":1567270440000,"y":0.32},{"x":1567270500000,"y":0.3},{"x":1567270560000,"y":0.25},{"x":1567270620000,"y":0.12},{"x":1567270680000,"y":0.15},{"x":1567270740000,"y":0.29},{"x":1567270800000,"y":0.5},{"x":1567270860000,"y":0.16},{"x":1567270920000,"y":0.18},{"x":1567270980000,"y":0.15},{"x":1567271040000,"y":0.26},{"x":1567271100000,"y":0.26},{"x":1567271160000,"y":0.18},{"x":1567271220000,"y":0.17},{"x":1567271280000,"y":0.18},{"x":1567271340000,"y":0.52},{"x":1567271400000,"y":0.39},{"x":1567271460000,"y":0.21},{"x":1567271520000,"y":0.16},{"x":1567271580000,"y":0.12},{"x":1567271640000,"y":0.24},{"x":1567271700000,"y":0.52},{"x":1567271760000,"y":0.13},{"x":1567271820000,"y":0.24},{"x":1567271880000,"y":0.16},{"x":1567271940000,"y":0.16},{"x":1567272000000,"y":0.35},{"x":1567272060000,"y":0.15},{"x":1567272120000,"y":0.19},{"x":1567272180000,"y":0.14},{"x":1567272240000,"y":0.2},{"x":1567272300000,"y":0.37},{"x":1567272360000,"y":0.17},{"x":1567272420000,"y":0.13},{"x":1567272480000,"y":0.16},{"x":1567272540000,"y":0.12},{"x":1567272600000,"y":0.42},{"x":1567272660000,"y":0.12},{"x":1567272720000,"y":0.22},{"x":1567272780000,"y":0.15},{"x":1567272840000,"y":0.14},{"x":1567272900000,"y":0.39},{"x":1567272960000,"y":0.11},{"x":1567273020000,"y":0.12},{"x":1567273080000,"y":0.11},{"x":1567273140000,"y":0.28},{"x":1567273200000,"y":0.44},{"x":1567273260000,"y":0.12},{"x":1567273320000,"y":0.13},{"x":1567273380000,"y":0.12},{"x":1567273440000,"y":0.16},{"x":1567273500000,"y":0.17},{"x":1567273560000,"y":0.27},{"x":1567273620000,"y":0.09},{"x":1567273680000,"y":0.09},{"x":1567273740000,"y":0.14},{"x":1567273800000,"y":0.2},{"x":1567273860000,"y":0.24},{"x":1567273920000,"y":0.11},{"x":1567273980000,"y":0.11},{"x":1567274040000,"y":0.08},{"x":1567274100000,"y":0.3},{"x":1567274160000,"y":0.22},{"x":1567274220000,"y":0.13},{"x":1567274280000,"y":0.12},{"x":1567274340000,"y":0.11},{"x":1567274400000,"y":0.4},{"x":1567274460000,"y":0.24},{"x":1567274520000,"y":0.1},{"x":1567274580000,"y":0.13},{"x":1567274640000,"y":0.14},{"x":1567274700000,"y":0.19},{"x":1567274760000,"y":0.27},{"x":1567274820000,"y":0.13},{"x":1567274880000,"y":0.11},{"x":1567274940000,"y":0.34},{"x":1567275000000,"y":0.3},{"x":1567275060000,"y":0.29},{"x":1567275120000,"y":0.12},{"x":1567275180000,"y":0.11},{"x":1567275240000,"y":0.12},{"x":1567275300000,"y":0.19},{"x":1567275360000,"y":0.23},{"x":1567275420000,"y":0.16},{"x":1567275480000,"y":0.1},{"x":1567275540000,"y":0.12},{"x":1567275600000,"y":0.18},{"x":1567275660000,"y":0.26},{"x":1567275720000,"y":0.14},{"x":1567275780000,"y":0.14},{"x":1567275840000,"y":0.11},{"x":1567275900000,"y":0.42},{"x":1567275960000,"y":0.16},{"x":1567276020000,"y":0.43},{"x":1567276080000,"y":0.2},{"x":1567276140000,"y":0.11},{"x":1567276200000,"y":0.44},{"x":1567276260000,"y":0.17},{"x":1567276320000,"y":0.32},{"x":1567276380000,"y":0.14},{"x":1567276440000,"y":0.12},{"x":1567276500000,"y":0.32},{"x":1567276560000,"y":0.1},{"x":1567276620000,"y":0.41},{"x":1567276680000,"y":0.24},{"x":1567276740000,"y":0.38},{"x":1567276800000,"y":0.25},{"x":1567276860000,"y":0.22},{"x":1567276920000,"y":0.28},{"x":1567276980000,"y":0.14},{"x":1567277040000,"y":0.18},{"x":1567277100000,"y":0.26},{"x":1567277160000,"y":0.19},{"x":1567277220000,"y":0.5},{"x":1567277280000,"y":0.21},{"x":1567277340000,"y":0.2},{"x":1567277400000,"y":0.38},{"x":1567277460000,"y":0.24},{"x":1567277520000,"y":0.32},{"x":1567277580000,"y":0.2},{"x":1567277640000,"y":0.14},{"x":1567277700000,"y":0.23},{"x":1567277760000,"y":0.15},{"x":1567277820000,"y":0.27},{"x":1567277880000,"y":0.17},{"x":1567277940000,"y":0.2},{"x":1567278000000,"y":0.66},{"x":1567278060000,"y":0.27},{"x":1567278120000,"y":0.3},{"x":1567278180000,"y":0.15},{"x":1567278240000,"y":0.17},{"x":1567278300000,"y":0.28},{"x":1567278360000,"y":0.27},{"x":1567278420000,"y":0.18},{"x":1567278480000,"y":0.3},{"x":1567278540000,"y":0.51},{"x":1567278600000,"y":0.38},{"x":1567278660000,"y":0.2},{"x":1567278720000,"y":0.29},{"x":1567278780000,"y":0.28},{"x":1567278840000,"y":0.25},{"x":1567278900000,"y":0.37},{"x":1567278960000,"y":0.21},{"x":1567279020000,"y":0.15},{"x":1567279080000,"y":0.33},{"x":1567279140000,"y":0.19},{"x":1567279200000,"y":0.34},{"x":1567279260000,"y":0.15},{"x":1567279320000,"y":0.23},{"x":1567279380000,"y":0.3},{"x":1567279440000,"y":0.12},{"x":1567279500000,"y":0.33},{"x":1567279560000,"y":0.14},{"x":1567279620000,"y":0.15},{"x":1567279680000,"y":0.28},{"x":1567279740000,"y":0.16},{"x":1567279800000,"y":0.38},{"x":1567279860000,"y":0.22},{"x":1567279920000,"y":0.39},{"x":1567279980000,"y":0.42},{"x":1567280040000,"y":0.19},{"x":1567280100000,"y":0.39},{"x":1567280160000,"y":0.15},{"x":1567280220000,"y":0.16},{"x":1567280280000,"y":0.28},{"x":1567280340000,"y":0.36},{"x":1567280400000,"y":0.39},{"x":1567280460000,"y":0.16},{"x":1567280520000,"y":0.24},{"x":1567280580000,"y":0.41},{"x":1567280640000,"y":0.17},{"x":1567280700000,"y":0.4},{"x":1567280760000,"y":0.17},{"x":1567280820000,"y":0.28},{"x":1567280880000,"y":0.19},{"x":1567280940000,"y":0.36},{"x":1567281000000,"y":0.25},{"x":1567281060000,"y":0.22},{"x":1567281120000,"y":0.18},{"x":1567281180000,"y":0.25},{"x":1567281240000,"y":0.32},{"x":1567281300000,"y":0.28},{"x":1567281360000,"y":0.15},{"x":1567281420000,"y":0.19},{"x":1567281480000,"y":0.17},{"x":1567281540000,"y":0.27},{"x":1567281600000,"y":0.52},{"x":1567281660000,"y":0.21},{"x":1567281720000,"y":0.21},{"x":1567281780000,"y":0.15},{"x":1567281840000,"y":0.42},{"x":1567281900000,"y":0.33},{"x":1567281960000,"y":0.18},{"x":1567282020000,"y":0.16},{"x":1567282080000,"y":0.2},{"x":1567282140000,"y":0.6},{"x":1567282200000,"y":0.35},{"x":1567282260000,"y":0.12},{"x":1567282320000,"y":0.31},{"x":1567282380000,"y":0.33},{"x":1567282440000,"y":0.36},{"x":1567282500000,"y":0.48},{"x":1567282560000,"y":0.32},{"x":1567282620000,"y":0.3},{"x":1567282680000,"y":0.29},{"x":1567282740000,"y":0.7},{"x":1567282800000,"y":0.42},{"x":1567282860000,"y":0.15},{"x":1567282920000,"y":0.11},{"x":1567282980000,"y":0.4},{"x":1567283040000,"y":0.12},{"x":1567283100000,"y":0.47},{"x":1567283160000,"y":0.17},{"x":1567283220000,"y":0.12},{"x":1567283280000,"y":0.21},{"x":1567283340000,"y":0.16},{"x":1567283400000,"y":0.6},{"x":1567283460000,"y":0.16},{"x":1567283520000,"y":0.27},{"x":1567283580000,"y":0.12},{"x":1567283640000,"y":0.27},{"x":1567283700000,"y":0.43},{"x":1567283760000,"y":0.2},{"x":1567283820000,"y":3.17},{"x":1567283880000,"y":0.15},{"x":1567283940000,"y":0.36},{"x":1567284000000,"y":0.48},{"x":1567284060000,"y":0.19},{"x":1567284120000,"y":0.2},{"x":1567284180000,"y":0.12},{"x":1567284240000,"y":0.22},{"x":1567284300000,"y":0.53},{"x":1567284360000,"y":0.1},{"x":1567284420000,"y":0.21},{"x":1567284480000,"y":0.2},{"x":1567284540000,"y":0.17},{"x":1567284600000,"y":0.42},{"x":1567284660000,"y":0.17},{"x":1567284720000,"y":0.12},{"x":1567284780000,"y":0.23},{"x":1567284840000,"y":0.15},{"x":1567284900000,"y":0.49},{"x":1567284960000,"y":4.65},{"x":1567285020000,"y":0.16},{"x":1567285080000,"y":0.17},{"x":1567285140000,"y":0.23},{"x":1567285200000,"y":0.63},{"x":1567285260000,"y":0.58},{"x":1567285320000,"y":0.27},{"x":1567285380000,"y":0.16},{"x":1567285440000,"y":0.22},{"x":1567285500000,"y":0.41},{"x":1567285560000,"y":0.35},{"x":1567285620000,"y":0.21},{"x":1567285680000,"y":0.23},{"x":1567285740000,"y":0.39},{"x":1567285800000,"y":0.39},{"x":1567285860000,"y":0.35},{"x":1567285920000,"y":0.32},{"x":1567285980000,"y":0.2},{"x":1567286040000,"y":0.23},{"x":1567286100000,"y":0.31},{"x":1567286160000,"y":0.4},{"x":1567286220000,"y":0.31},{"x":1567286280000,"y":0.21},{"x":1567286340000,"y":0.2},{"x":1567286400000,"y":0.36},{"x":1567286460000,"y":0.4},{"x":1567286520000,"y":0.37},{"x":1567286580000,"y":0.21},{"x":1567286640000,"y":0.2},{"x":1567286700000,"y":0.3},{"x":1567286760000,"y":0.37},{"x":1567286820000,"y":0.19},{"x":1567286880000,"y":0.31},{"x":1567286940000,"y":0.27},{"x":1567287000000,"y":0.36},{"x":1567287060000,"y":0.42},{"x":1567287120000,"y":0.24},{"x":1567287180000,"y":0.2},{"x":1567287240000,"y":0.22},{"x":1567287300000,"y":0.43},{"x":1567287360000,"y":0.2},{"x":1567287420000,"y":0.35},{"x":1567287480000,"y":0.29},{"x":1567287540000,"y":0.51},{"x":1567287600000,"y":0.36},{"x":1567287660000,"y":0.21},{"x":1567287720000,"y":0.41},{"x":1567287780000,"y":0.31},{"x":1567287840000,"y":0.29},{"x":1567287900000,"y":0.53},{"x":1567287960000,"y":0.25},{"x":1567288020000,"y":0.42},{"x":1567288080000,"y":0.2},{"x":1567288140000,"y":0.23},{"x":1567288200000,"y":0.34},{"x":1567288260000,"y":0.19},{"x":1567288320000,"y":0.39},{"x":1567288380000,"y":0.2},{"x":1567288440000,"y":0.22},{"x":1567288500000,"y":0.31},{"x":1567288560000,"y":0.22},{"x":1567288620000,"y":0.38},{"x":1567288680000,"y":0.18},{"x":1567288740000,"y":0.24},{"x":1567288800000,"y":0.39},{"x":1567288860000,"y":0.24},{"x":1567288920000,"y":0.35},{"x":1567288980000,"y":0.25},{"x":1567289040000,"y":0.24},{"x":1567289100000,"y":0.35},{"x":1567289160000,"y":0.23},{"x":1567289220000,"y":0.36},{"x":1567289280000,"y":0.23},{"x":1567289340000,"y":0.5},{"x":1567289400000,"y":0.3},{"x":1567289460000,"y":0.19},{"x":1567289520000,"y":0.43},{"x":1567289580000,"y":0.37},{"x":1567289640000,"y":0.23},{"x":1567289700000,"y":0.57},{"x":1567289760000,"y":0.29},{"x":1567289820000,"y":0.35},{"x":1567289880000,"y":0.3},{"x":1567289940000,"y":0.23},{"x":1567290000000,"y":0.39},{"x":1567290060000,"y":0.25},{"x":1567290120000,"y":0.22},{"x":1567290180000,"y":0.4},{"x":1567290240000,"y":0.2},{"x":1567290300000,"y":0.39},{"x":1567290360000,"y":0.18},{"x":1567290420000,"y":0.2},{"x":1567290480000,"y":0.37},{"x":1567290540000,"y":0.22},{"x":1567290600000,"y":0.47},{"x":1567290660000,"y":0.24},{"x":1567290720000,"y":0.25},{"x":1567290780000,"y":0.36},{"x":1567290840000,"y":0.27},{"x":1567290900000,"y":0.41},{"x":1567290960000,"y":0.19},{"x":1567291020000,"y":0.26},{"x":1567291080000,"y":3.5},{"x":1567291140000,"y":0.59},{"x":1567291200000,"y":0.41},{"x":1567291260000,"y":0.25},{"x":1567291320000,"y":0.24},{"x":1567291380000,"y":0.35},{"x":1567291440000,"y":0.18},{"x":1567291500000,"y":0.32},{"x":1567291560000,"y":0.17},{"x":1567291620000,"y":0.23},{"x":1567291680000,"y":0.43},{"x":1567291740000,"y":3.15},{"x":1567291800000,"y":0.32},{"x":1567291860000,"y":0.24},{"x":1567291920000,"y":0.24},{"x":1567291980000,"y":0.44},{"x":1567292040000,"y":0.3},{"x":1567292100000,"y":0.32},{"x":1567292160000,"y":0.21},{"x":1567292220000,"y":0.23},{"x":1567292280000,"y":0.31},{"x":1567292340000,"y":0.21},{"x":1567292400000,"y":0.46},{"x":1567292460000,"y":0.24},{"x":1567292520000,"y":0.19},{"x":1567292580000,"y":0.24},{"x":1567292640000,"y":0.45},{"x":1567292700000,"y":0.33},{"x":1567292760000,"y":0.2},{"x":1567292820000,"y":0.18},{"x":1567292880000,"y":0.2},{"x":1567292940000,"y":0.55},{"x":1567293000000,"y":0.41},{"x":1567293060000,"y":0.22},{"x":1567293120000,"y":0.2},{"x":1567293180000,"y":0.19},{"x":1567293240000,"y":0.33},{"x":1567293300000,"y":0.31},{"x":1567293360000,"y":0.17},{"x":1567293420000,"y":0.19},{"x":1567293480000,"y":0.21},{"x":1567293540000,"y":0.37},{"x":1567293600000,"y":0.42},{"x":1567293660000,"y":0.24},{"x":1567293720000,"y":0.24},{"x":1567293780000,"y":0.27},{"x":1567293840000,"y":0.39},{"x":1567293900000,"y":0.51},{"x":1567293960000,"y":0.22},{"x":1567294020000,"y":0.23},{"x":1567294080000,"y":0.23},{"x":1567294140000,"y":0.33},{"x":1567294200000,"y":0.34},{"x":1567294260000,"y":0.24},{"x":1567294320000,"y":0.25},{"x":1567294380000,"y":0.29},{"x":1567294440000,"y":0.35},{"x":1567294500000,"y":0.35},{"x":1567294560000,"y":0.2},{"x":1567294620000,"y":0.25},{"x":1567294680000,"y":0.24},{"x":1567294740000,"y":0.49},{"x":1567294800000,"y":0.35},{"x":1567294860000,"y":0.25},{"x":1567294920000,"y":0.26},{"x":1567294980000,"y":0.21},{"x":1567295040000,"y":0.21},{"x":1567295100000,"y":0.53},{"x":1567295160000,"y":0.26},{"x":1567295220000,"y":0.24},{"x":1567295280000,"y":0.2},{"x":1567295340000,"y":0.19},{"x":1567295400000,"y":0.58},{"x":1567295460000,"y":0.24},{"x":1567295520000,"y":0.11},{"x":1567295580000,"y":0.11},{"x":1567295640000,"y":0.16},{"x":1567295700000,"y":0.41},{"x":1567295760000,"y":0.18},{"x":1567295820000,"y":0.19},{"x":1567295880000,"y":0.13},{"x":1567295940000,"y":0.1},{"x":1567296000000,"y":0.74},{"x":1567296060000,"y":0.2},{"x":1567296120000,"y":0.16},{"x":1567296180000,"y":0.11},{"x":1567296240000,"y":0.18},{"x":1567296300000,"y":0.39},{"x":1567296360000,"y":0.15},{"x":1567296420000,"y":0.1},{"x":1567296480000,"y":0.16},{"x":1567296540000,"y":0.4},{"x":1567296600000,"y":0.47},{"x":1567296660000,"y":0.1},{"x":1567296720000,"y":0.2},{"x":1567296780000,"y":0.16},{"x":1567296840000,"y":0.18},{"x":1567296900000,"y":0.55},{"x":1567296960000,"y":0.2},{"x":1567297020000,"y":0.15},{"x":1567297080000,"y":0.21},{"x":1567297140000,"y":0.13},{"x":1567297200000,"y":0.46},{"x":1567297260000,"y":0.17},{"x":1567297320000,"y":0.12},{"x":1567297380000,"y":0.17},{"x":1567297440000,"y":0.15},{"x":1567297500000,"y":0.39},{"x":1567297560000,"y":0.14},{"x":1567297620000,"y":0.13},{"x":1567297680000,"y":0.12},{"x":1567297740000,"y":0.12},{"x":1567297800000,"y":0.32},{"x":1567297860000,"y":0.31},{"x":1567297920000,"y":0.15},{"x":1567297980000,"y":0.21},{"x":1567298040000,"y":0.16},{"x":1567298100000,"y":0.6},{"x":1567298160000,"y":0.45},{"x":1567298220000,"y":0.25},{"x":1567298280000,"y":0.17},{"x":1567298340000,"y":0.28},{"x":1567298400000,"y":0.27},{"x":1567298460000,"y":0.33},{"x":1567298520000,"y":0.15},{"x":1567298580000,"y":0.16},{"x":1567298640000,"y":0.12},{"x":1567298700000,"y":0.34},{"x":1567298760000,"y":0.25},{"x":1567298820000,"y":0.28},{"x":1567298880000,"y":0.24},{"x":1567298940000,"y":0.14},{"x":1567299000000,"y":3.28},{"x":1567299060000,"y":0.53},{"x":1567299120000,"y":0.14},{"x":1567299180000,"y":0.18},{"x":1567299240000,"y":0.1},{"x":1567299300000,"y":0.28},{"x":1567299360000,"y":0.33},{"x":1567299420000,"y":0.19},{"x":1567299480000,"y":1.24},{"x":1567299540000,"y":0.11},{"x":1567299600000,"y":0.54},{"x":1567299660000,"y":0.14},{"x":1567299720000,"y":0.44},{"x":1567299780000,"y":0.11},{"x":1567299840000,"y":0.17},{"x":1567299900000,"y":0.31},{"x":1567299960000,"y":0.11},{"x":1567300020000,"y":0.33},{"x":1567300080000,"y":0.14},{"x":1567300140000,"y":0.38},{"x":1567300200000,"y":0.26},{"x":1567300260000,"y":0.09},{"x":1567300320000,"y":0.25},{"x":1567300380000,"y":0.09},{"x":1567300440000,"y":0.09},{"x":1567300500000,"y":0.26},{"x":1567300560000,"y":0.14},{"x":1567300620000,"y":0.25},{"x":1567300680000,"y":0.06},{"x":1567300740000,"y":0.09},{"x":1567300800000,"y":0.27},{"x":1567300860000,"y":0.13},{"x":1567300920000,"y":0.27},{"x":1567300980000,"y":0.1},{"x":1567301040000,"y":0.12},{"x":1567301100000,"y":0.33},{"x":1567301160000,"y":0.09},{"x":1567301220000,"y":0.3},{"x":1567301280000,"y":0.15},{"x":1567301340000,"y":0.11},{"x":1567301400000,"y":0.31},{"x":1567301460000,"y":0.26},{"x":1567301520000,"y":0.33},{"x":1567301580000,"y":0.14},{"x":1567301640000,"y":0.14},{"x":1567301700000,"y":0.4},{"x":1567301760000,"y":0.1},{"x":1567301820000,"y":0.12},{"x":1567301880000,"y":0.31},{"x":1567301940000,"y":0.28},{"x":1567302000000,"y":0.23},{"x":1567302060000,"y":0.1},{"x":1567302120000,"y":0.12},{"x":1567302180000,"y":0.35},{"x":1567302240000,"y":0.13},{"x":1567302300000,"y":0.33},{"x":1567302360000,"y":0.13},{"x":1567302420000,"y":0.17},{"x":1567302480000,"y":0.35},{"x":1567302540000,"y":0.12},{"x":1567302600000,"y":0.25},{"x":1567302660000,"y":0.21},{"x":1567302720000,"y":0.55},{"x":1567302780000,"y":0.29},{"x":1567302840000,"y":0.14},{"x":1567302900000,"y":0.24},{"x":1567302960000,"y":0.15},{"x":1567303020000,"y":0.1},{"x":1567303080000,"y":0.22},{"x":1567303140000,"y":0.78},{"x":1567303200000,"y":0.42},{"x":1567303260000,"y":0.18},{"x":1567303320000,"y":0.2},{"x":1567303380000,"y":0.33},{"x":1567303440000,"y":0.21},{"x":1567303500000,"y":0.37},{"x":1567303560000,"y":0.15},{"x":1567303620000,"y":0.24},{"x":1567303680000,"y":0.3},{"x":1567303740000,"y":0.38},{"x":1567303800000,"y":0.33},{"x":1567303860000,"y":0.22},{"x":1567303920000,"y":0.15},{"x":1567303980000,"y":0.28},{"x":1567304040000,"y":0.15},{"x":1567304100000,"y":0.27},{"x":1567304160000,"y":0.14},{"x":1567304220000,"y":0.2},{"x":1567304280000,"y":0.25},{"x":1567304340000,"y":0.16},{"x":1567304400000,"y":0.24},{"x":1567304460000,"y":0.14},{"x":1567304520000,"y":0.17},{"x":1567304580000,"y":0.11},{"x":1567304640000,"y":0.32},{"x":1567304700000,"y":0.23},{"x":1567304760000,"y":0.12},{"x":1567304820000,"y":0.15},{"x":1567304880000,"y":0.14},{"x":1567304940000,"y":0.31},{"x":1567305000000,"y":0.29},{"x":1567305060000,"y":0.17},{"x":1567305120000,"y":0.22},{"x":1567305180000,"y":0.16},{"x":1567305240000,"y":0.27},{"x":1567305300000,"y":0.31},{"x":1567305360000,"y":0.12},{"x":1567305420000,"y":0.18},{"x":1567305480000,"y":0.08},{"x":1567305540000,"y":0.41},{"x":1567305600000,"y":0.3},{"x":1567305660000,"y":0.12},{"x":1567305720000,"y":0.16},{"x":1567305780000,"y":0.09},{"x":1567305840000,"y":0.27},{"x":1567305900000,"y":0.3},{"x":1567305960000,"y":0.13},{"x":1567306020000,"y":0.18},{"x":1567306080000,"y":0.17},{"x":1567306140000,"y":0.27},{"x":1567306200000,"y":0.27},{"x":1567306260000,"y":0.12},{"x":1567306320000,"y":0.14},{"x":1567306380000,"y":0.12},{"x":1567306440000,"y":0.25},{"x":1567306500000,"y":0.21},{"x":1567306560000,"y":0.12},{"x":1567306620000,"y":0.13},{"x":1567306680000,"y":0.12},{"x":1567306740000,"y":0.25},{"x":1567306800000,"y":1.56},{"x":1567306860000,"y":0.24},{"x":1567306920000,"y":0.12},{"x":1567306980000,"y":0.11},{"x":1567307040000,"y":0.16},{"x":1567307100000,"y":0.47},{"x":1567307160000,"y":0.11},{"x":1567307220000,"y":0.1},{"x":1567307280000,"y":0.17},{"x":1567307340000,"y":0.2},{"x":1567307400000,"y":0.41},{"x":1567307460000,"y":0.12},{"x":1567307520000,"y":0.19},{"x":1567307580000,"y":0.12},{"x":1567307640000,"y":0.17},{"x":1567307700000,"y":0.44},{"x":1567307760000,"y":0.18},{"x":1567307820000,"y":0.14},{"x":1567307880000,"y":0.09},{"x":1567307940000,"y":0.23},{"x":1567308000000,"y":0.5},{"x":1567308060000,"y":0.13},{"x":1567308120000,"y":0.15},{"x":1567308180000,"y":0.25},{"x":1567308240000,"y":0.12},{"x":1567308300000,"y":0.52},{"x":1567308360000,"y":0.14},{"x":1567308420000,"y":0.12},{"x":1567308480000,"y":0.15},{"x":1567308540000,"y":0.13},{"x":1567308600000,"y":0.45},{"x":1567308660000,"y":0.12},{"x":1567308720000,"y":0.1},{"x":1567308780000,"y":0.21},{"x":1567308840000,"y":0.52},{"x":1567308900000,"y":0.5},{"x":1567308960000,"y":0.14},{"x":1567309020000,"y":0.12},{"x":1567309080000,"y":0.18},{"x":1567309140000,"y":0.17},{"x":1567309200000,"y":0.46},{"x":1567309260000,"y":0.1},{"x":1567309320000,"y":0.17},{"x":1567309380000,"y":0.12},{"x":1567309440000,"y":0.16},{"x":1567309500000,"y":0.4},{"x":1567309560000,"y":0.21},{"x":1567309620000,"y":0.17},{"x":1567309680000,"y":0.18},{"x":1567309740000,"y":0.15},{"x":1567309800000,"y":0.22},{"x":1567309860000,"y":0.25},{"x":1567309920000,"y":0.12},{"x":1567309980000,"y":0.12},{"x":1567310040000,"y":0.19},{"x":1567310100000,"y":0.26},{"x":1567310160000,"y":0.32},{"x":1567310220000,"y":0.14},{"x":1567310280000,"y":0.12},{"x":1567310340000,"y":0.14},{"x":1567310400000,"y":0.51},{"x":1567310460000,"y":0.33},{"x":1567310520000,"y":0.18},{"x":1567310580000,"y":0.17},{"x":1567310640000,"y":0.17},{"x":1567310700000,"y":0.39},{"x":1567310760000,"y":0.36},{"x":1567310820000,"y":0.19},{"x":1567310880000,"y":0.25},{"x":1567310940000,"y":0.26},{"x":1567311000000,"y":0.27},{"x":1567311060000,"y":0.3},{"x":1567311120000,"y":0.13},{"x":1567311180000,"y":0.15},{"x":1567311240000,"y":0.22},{"x":1567311300000,"y":0.49},{"x":1567311360000,"y":0.29},{"x":1567311420000,"y":0.21},{"x":1567311480000,"y":0.14},{"x":1567311540000,"y":0.17},{"x":1567311600000,"y":0.54},{"x":1567311660000,"y":0.13},{"x":1567311720000,"y":0.32},{"x":1567311780000,"y":0.12},{"x":1567311840000,"y":0.12},{"x":1567311900000,"y":0.34},{"x":1567311960000,"y":0.13},{"x":1567312020000,"y":0.29},{"x":1567312080000,"y":0.21},{"x":1567312140000,"y":0.12},{"x":1567312200000,"y":0.29},{"x":1567312260000,"y":0.13},{"x":1567312320000,"y":0.27},{"x":1567312380000,"y":0.14},{"x":1567312440000,"y":0.14},{"x":1567312500000,"y":0.24},{"x":1567312560000,"y":0.12},{"x":1567312620000,"y":0.28},{"x":1567312680000,"y":0.13},{"x":1567312740000,"y":0.3},{"x":1567312800000,"y":0.29},{"x":1567312860000,"y":0.16},{"x":1567312920000,"y":5.08},{"x":1567312980000,"y":0.27},{"x":1567313040000,"y":0.2},{"x":1567313100000,"y":0.49},{"x":1567313160000,"y":0.15},{"x":1567313220000,"y":0.35},{"x":1567313280000,"y":0.14},{"x":1567313340000,"y":0.12},{"x":1567313400000,"y":0.44},{"x":1567313460000,"y":0.15},{"x":1567313520000,"y":0.35},{"x":1567313580000,"y":0.17},{"x":1567313640000,"y":0.12},{"x":1567313700000,"y":0.37},{"x":1567313760000,"y":0.19},{"x":1567313820000,"y":0.43},{"x":1567313880000,"y":0.15},{"x":1567313940000,"y":0.24},{"x":1567314000000,"y":2.29},{"x":1567314060000,"y":0.28},{"x":1567314120000,"y":0.29},{"x":1567314180000,"y":0.54},{"x":1567314240000,"y":0.3},{"x":1567314300000,"y":0.53},{"x":1567314360000,"y":0.27},{"x":1567314420000,"y":0.22},{"x":1567314480000,"y":0.31},{"x":1567314540000,"y":0.31},{"x":1567314600000,"y":0.29},{"x":1567314660000,"y":0.18},{"x":1567314720000,"y":0.18},{"x":1567314780000,"y":0.32},{"x":1567314840000,"y":0.16},{"x":1567314900000,"y":0.49},{"x":1567314960000,"y":0.19},{"x":1567315020000,"y":0.17},{"x":1567315080000,"y":0.26},{"x":1567315140000,"y":0.19},{"x":1567315200000,"y":0.32},{"x":1567315260000,"y":0.13},{"x":1567315320000,"y":0.15},{"x":1567315380000,"y":0.26},{"x":1567315440000,"y":0.18},{"x":1567315500000,"y":0.22},{"x":1567315560000,"y":0.2},{"x":1567315620000,"y":0.13},{"x":1567315680000,"y":0.25},{"x":1567315740000,"y":0.17},{"x":1567315800000,"y":0.51},{"x":1567315860000,"y":0.2},{"x":1567315920000,"y":0.22},{"x":1567315980000,"y":0.42},{"x":1567316040000,"y":0.2},{"x":1567316100000,"y":0.3},{"x":1567316160000,"y":0.12},{"x":1567316220000,"y":0.17},{"x":1567316280000,"y":0.17},{"x":1567316340000,"y":0.52},{"x":1567316400000,"y":0.4},{"x":1567316460000,"y":0.17},{"x":1567316520000,"y":0.15},{"x":1567316580000,"y":0.13},{"x":1567316640000,"y":0.32},{"x":1567316700000,"y":0.35},{"x":1567316760000,"y":0.18},{"x":1567316820000,"y":0.2},{"x":1567316880000,"y":0.15},{"x":1567316940000,"y":0.3},{"x":1567317000000,"y":0.33},{"x":1567317060000,"y":0.13},{"x":1567317120000,"y":0.22},{"x":1567317180000,"y":1.86},{"x":1567317240000,"y":0.26},{"x":1567317300000,"y":0.34},{"x":1567317360000,"y":0.19},{"x":1567317420000,"y":0.13},{"x":1567317480000,"y":0.24},{"x":1567317540000,"y":0.32},{"x":1567317600000,"y":0.47},{"x":1567317660000,"y":1.45},{"x":1567317720000,"y":0.25},{"x":1567317780000,"y":0.21},{"x":1567317840000,"y":0.32},{"x":1567317900000,"y":0.27},{"x":1567317960000,"y":0.22},{"x":1567318020000,"y":0.2},{"x":1567318080000,"y":0.25},{"x":1567318140000,"y":0.58},{"x":1567318200000,"y":0.37},{"x":1567318260000,"y":0.16},{"x":1567318320000,"y":0.15},{"x":1567318380000,"y":0.21},{"x":1567318440000,"y":0.33},{"x":1567318500000,"y":0.59},{"x":1567318560000,"y":0.32},{"x":1567318620000,"y":0.35},{"x":1567318680000,"y":0.22},{"x":1567318740000,"y":0.2},{"x":1567318800000,"y":0.57},{"x":1567318860000,"y":0.17},{"x":1567318920000,"y":0.28},{"x":1567318980000,"y":0.26},{"x":1567319040000,"y":0.2},{"x":1567319100000,"y":1.12},{"x":1567319160000,"y":0.2},{"x":1567319220000,"y":0.24},{"x":1567319280000,"y":0.39},{"x":1567319340000,"y":0.27},{"x":1567319400000,"y":0.54},{"x":1567319460000,"y":0.26},{"x":1567319520000,"y":0.24},{"x":1567319580000,"y":0.24},{"x":1567319640000,"y":0.31},{"x":1567319700000,"y":0.57},{"x":1567319760000,"y":0.3},{"x":1567319820000,"y":0.26},{"x":1567319880000,"y":0.27},{"x":1567319940000,"y":0.64},{"x":1567320000000,"y":0.59},{"x":1567320060000,"y":0.26},{"x":1567320120000,"y":0.21},{"x":1567320180000,"y":0.3},{"x":1567320240000,"y":0.34},{"x":1567320300000,"y":0.53},{"x":1567320360000,"y":0.32},{"x":1567320420000,"y":0.39},{"x":1567320480000,"y":0.34},{"x":1567320540000,"y":0.33},{"x":1567320600000,"y":0.59},{"x":1567320660000,"y":0.2},{"x":1567320720000,"y":0.25},{"x":1567320780000,"y":0.22},{"x":1567320840000,"y":0.27},{"x":1567320900000,"y":0.39},{"x":1567320960000,"y":0.47},{"x":1567321020000,"y":0.2},{"x":1567321080000,"y":0.2},{"x":1567321140000,"y":0.2},{"x":1567321200000,"y":0.48},{"x":1567321260000,"y":0.4},{"x":1567321320000,"y":1.93},{"x":1567321380000,"y":0.21},{"x":1567321440000,"y":0.31},{"x":1567321500000,"y":0.47},{"x":1567321560000,"y":0.41},{"x":1567321620000,"y":0.29},{"x":1567321680000,"y":0.24},{"x":1567321740000,"y":0.55},{"x":1567321800000,"y":0.42},{"x":1567321860000,"y":0.47},{"x":1567321920000,"y":0.27},{"x":1567321980000,"y":0.26},{"x":1567322040000,"y":0.29},{"x":1567322100000,"y":0.41},{"x":1567322160000,"y":0.38},{"x":1567322220000,"y":0.24},{"x":1567322280000,"y":0.29},{"x":1567322340000,"y":0.42},{"x":1567322400000,"y":0.43},{"x":1567322460000,"y":0.49},{"x":1567322520000,"y":0.36},{"x":1567322580000,"y":0.4},{"x":1567322640000,"y":0.27},{"x":1567322700000,"y":0.6},{"x":1567322760000,"y":0.45},{"x":1567322820000,"y":0.29},{"x":1567322880000,"y":0.29},{"x":1567322940000,"y":0.33},{"x":1567323000000,"y":0.62},{"x":1567323060000,"y":0.38},{"x":1567323120000,"y":0.26},{"x":1567323180000,"y":0.22},{"x":1567323240000,"y":0.22},{"x":1567323300000,"y":0.48},{"x":1567323360000,"y":0.28},{"x":1567323420000,"y":0.47},{"x":1567323480000,"y":0.26},{"x":1567323540000,"y":0.5},{"x":1567323600000,"y":0.48},{"x":1567323660000,"y":0.22},{"x":1567323720000,"y":0.44},{"x":1567323780000,"y":0.25},{"x":1567323840000,"y":0.24},{"x":1567323900000,"y":0.33},{"x":1567323960000,"y":0.22},{"x":1567324020000,"y":0.34},{"x":1567324080000,"y":0.24},{"x":1567324140000,"y":0.3},{"x":1567324200000,"y":0.42},{"x":1567324260000,"y":0.25},{"x":1567324320000,"y":0.45},{"x":1567324380000,"y":0.2},{"x":1567324440000,"y":0.22},{"x":1567324500000,"y":0.41},{"x":1567324560000,"y":0.2},{"x":1567324620000,"y":0.37},{"x":1567324680000,"y":0.26},{"x":1567324740000,"y":0.23},{"x":1567324800000,"y":0.69},{"x":1567324860000,"y":0.37},{"x":1567324920000,"y":0.5},{"x":1567324980000,"y":0.31},{"x":1567325040000,"y":0.18},{"x":1567325100000,"y":0.4},{"x":1567325160000,"y":0.22},{"x":1567325220000,"y":0.27},{"x":1567325280000,"y":0.41},{"x":1567325340000,"y":0.54},{"x":1567325400000,"y":0.35},{"x":1567325460000,"y":0.25},{"x":1567325520000,"y":0.32},{"x":1567325580000,"y":0.58},{"x":1567325640000,"y":0.32},{"x":1567325700000,"y":0.43},{"x":1567325760000,"y":0.43},{"x":1567325820000,"y":0.38},{"x":1567325880000,"y":0.39},{"x":1567325940000,"y":0.25},{"x":1567326000000,"y":0.43},{"x":1567326060000,"y":0.32},{"x":1567326120000,"y":0.29},{"x":1567326180000,"y":0.33},{"x":1567326240000,"y":0.2},{"x":1567326300000,"y":0.41},{"x":1567326360000,"y":0.24},{"x":1567326420000,"y":0.25},{"x":1567326480000,"y":0.36},{"x":1567326540000,"y":0.27},{"x":1567326600000,"y":0.56},{"x":1567326660000,"y":0.35},{"x":1567326720000,"y":0.32},{"x":1567326780000,"y":0.39},{"x":1567326840000,"y":0.29},{"x":1567326900000,"y":0.39},{"x":1567326960000,"y":0.25},{"x":1567327020000,"y":0.23},{"x":1567327080000,"y":0.35},{"x":1567327140000,"y":0.44},{"x":1567327200000,"y":0.55},{"x":1567327260000,"y":0.32},{"x":1567327320000,"y":0.37},{"x":1567327380000,"y":0.47},{"x":1567327440000,"y":0.29},{"x":1567327500000,"y":0.36},{"x":1567327560000,"y":0.23},{"x":1567327620000,"y":0.32},{"x":1567327680000,"y":0.34},{"x":1567327740000,"y":0.51},{"x":1567327800000,"y":0.43},{"x":1567327860000,"y":0.23},{"x":1567327920000,"y":0.35},{"x":1567327980000,"y":0.31},{"x":1567328040000,"y":0.46},{"x":1567328100000,"y":0.36},{"x":1567328160000,"y":0.34},{"x":1567328220000,"y":0.29},{"x":1567328280000,"y":0.2},{"x":1567328340000,"y":0.39},{"x":1567328400000,"y":0.66},{"x":1567328460000,"y":0.43},{"x":1567328520000,"y":0.44},{"x":1567328580000,"y":0.92},{"x":1567328640000,"y":0.46},{"x":1567328700000,"y":0.37},{"x":1567328760000,"y":0.15},{"x":1567328820000,"y":0.13},{"x":1567328880000,"y":0.13},{"x":1567328940000,"y":0.65},{"x":1567329000000,"y":0.44},{"x":1567329060000,"y":0.17},{"x":1567329120000,"y":0.2},{"x":1567329180000,"y":0.32},{"x":1567329240000,"y":0.41},{"x":1567329300000,"y":0.38},{"x":1567329360000,"y":0.15},{"x":1567329420000,"y":0.19},{"x":1567329480000,"y":0.18},{"x":1567329540000,"y":0.24},{"x":1567329600000,"y":0.65},{"x":1567329660000,"y":0.35},{"x":1567329720000,"y":0.19},{"x":1567329780000,"y":0.19},{"x":1567329840000,"y":0.19},{"x":1567329900000,"y":0.75},{"x":1567329960000,"y":0.27},{"x":1567330020000,"y":0.28},{"x":1567330080000,"y":0.17},{"x":1567330140000,"y":0.24},{"x":1567330200000,"y":0.59},{"x":1567330260000,"y":0.23},{"x":1567330320000,"y":0.2},{"x":1567330380000,"y":0.18},{"x":1567330440000,"y":0.15},{"x":1567330500000,"y":0.43},{"x":1567330560000,"y":0.16},{"x":1567330620000,"y":0.28},{"x":1567330680000,"y":0.19},{"x":1567330740000,"y":0.46},{"x":1567330800000,"y":0.52},{"x":1567330860000,"y":0.31},{"x":1567330920000,"y":0.21},{"x":1567330980000,"y":0.21},{"x":1567331040000,"y":0.18},{"x":1567331100000,"y":0.46},{"x":1567331160000,"y":0.17},{"x":1567331220000,"y":0.21},{"x":1567331280000,"y":0.19},{"x":1567331340000,"y":0.19},{"x":1567331400000,"y":0.51},{"x":1567331460000,"y":0.16},{"x":1567331520000,"y":0.17},{"x":1567331580000,"y":0.17},{"x":1567331640000,"y":0.2},{"x":1567331700000,"y":0.77},{"x":1567331760000,"y":0.18},{"x":1567331820000,"y":0.22},{"x":1567331880000,"y":0.17},{"x":1567331940000,"y":0.16},{"x":1567332000000,"y":0.67},{"x":1567332060000,"y":0.39},{"x":1567332120000,"y":0.17},{"x":1567332180000,"y":0.17},{"x":1567332240000,"y":0.23},{"x":1567332300000,"y":0.34},{"x":1567332360000,"y":0.34},{"x":1567332420000,"y":0.2},{"x":1567332480000,"y":0.17},{"x":1567332540000,"y":0.32},{"x":1567332600000,"y":0.3},{"x":1567332660000,"y":0.31},{"x":1567332720000,"y":0.2},{"x":1567332780000,"y":0.36},{"x":1567332840000,"y":0.25},{"x":1567332900000,"y":0.45},{"x":1567332960000,"y":0.49},{"x":1567333020000,"y":0.32},{"x":1567333080000,"y":0.12},{"x":1567333140000,"y":0.27},{"x":1567333200000,"y":0.44},{"x":1567333260000,"y":0.41},{"x":1567333320000,"y":0.28},{"x":1567333380000,"y":0.17},{"x":1567333440000,"y":0.23},{"x":1567333500000,"y":0.46},{"x":1567333560000,"y":0.51},{"x":1567333620000,"y":0.33},{"x":1567333680000,"y":0.24},{"x":1567333740000,"y":0.16},{"x":1567333800000,"y":0.42},{"x":1567333860000,"y":0.3},{"x":1567333920000,"y":0.23},{"x":1567333980000,"y":0.22},{"x":1567334040000,"y":0.15},{"x":1567334100000,"y":0.25},{"x":1567334160000,"y":0.24},{"x":1567334220000,"y":0.36},{"x":1567334280000,"y":0.31},{"x":1567334340000,"y":0.45},{"x":1567334400000,"y":0.3},{"x":1567334460000,"y":0.12},{"x":1567334520000,"y":0.32},{"x":1567334580000,"y":0.2},{"x":1567334640000,"y":0.15},{"x":1567334700000,"y":0.35},{"x":1567334760000,"y":0.23},{"x":1567334820000,"y":3.66},{"x":1567334880000,"y":0.15},{"x":1567334940000,"y":0.2},{"x":1567335000000,"y":0.33},{"x":1567335060000,"y":0.14},{"x":1567335120000,"y":0.29},{"x":1567335180000,"y":0.2},{"x":1567335240000,"y":0.22},{"x":1567335300000,"y":0.33},{"x":1567335360000,"y":0.53},{"x":1567335420000,"y":0.32},{"x":1567335480000,"y":0.17},{"x":1567335540000,"y":0.13},{"x":1567335600000,"y":0.59},{"x":1567335660000,"y":0.18},{"x":1567335720000,"y":0.31},{"x":1567335780000,"y":0.17},{"x":1567335840000,"y":1.07},{"x":1567335900000,"y":0.34},{"x":1567335960000,"y":0.18},{"x":1567336020000,"y":0.35},{"x":1567336080000,"y":0.2},{"x":1567336140000,"y":0.29},{"x":1567336200000,"y":0.3},{"x":1567336260000,"y":0.1},{"x":1567336320000,"y":0.28},{"x":1567336380000,"y":0.15},{"x":1567336440000,"y":0.17},{"x":1567336500000,"y":0.32},{"x":1567336560000,"y":0.13},{"x":1567336620000,"y":0.22},{"x":1567336680000,"y":0.34},{"x":1567336740000,"y":0.15},{"x":1567336800000,"y":0.25},{"x":1567336860000,"y":0.18},{"x":1567336920000,"y":0.13},{"x":1567336980000,"y":0.36},{"x":1567337040000,"y":0.25},{"x":1567337100000,"y":1.78},{"x":1567337160000,"y":0.1},{"x":1567337220000,"y":0.19},{"x":1567337280000,"y":0.28},{"x":1567337340000,"y":0.15},{"x":1567337400000,"y":0.41},{"x":1567337460000,"y":0.2},{"x":1567337520000,"y":0.27},{"x":1567337580000,"y":0.24},{"x":1567337640000,"y":0.17},{"x":1567337700000,"y":0.44},{"x":1567337760000,"y":0.2},{"x":1567337820000,"y":0.19},{"x":1567337880000,"y":0.31},{"x":1567337940000,"y":0.29},{"x":1567338000000,"y":0.38},{"x":1567338060000,"y":0.24},{"x":1567338120000,"y":0.3},{"x":1567338180000,"y":0.3},{"x":1567338240000,"y":0.25},{"x":1567338300000,"y":3.09},{"x":1567338360000,"y":0.22},{"x":1567338420000,"y":0.35},{"x":1567338480000,"y":0.36},{"x":1567338540000,"y":0.25},{"x":1567338600000,"y":0.4},{"x":1567338660000,"y":0.14},{"x":1567338720000,"y":0.29},{"x":1567338780000,"y":0.26},{"x":1567338840000,"y":0.18},{"x":1567338900000,"y":0.3},{"x":1567338960000,"y":0.2},{"x":1567339020000,"y":0.22},{"x":1567339080000,"y":0.14},{"x":1567339140000,"y":0.33},{"x":1567339200000,"y":0.52},{"x":1567339260000,"y":0.18},{"x":1567339320000,"y":0.23},{"x":1567339380000,"y":0.17},{"x":1567339440000,"y":2},{"x":1567339500000,"y":0.33},{"x":1567339560000,"y":0.29},{"x":1567339620000,"y":0.24},{"x":1567339680000,"y":0.21},{"x":1567339740000,"y":0.41},{"x":1567339800000,"y":0.27},{"x":1567339860000,"y":0.18},{"x":1567339920000,"y":0.15},{"x":1567339980000,"y":0.21},{"x":1567340040000,"y":0.42},{"x":1567340100000,"y":0.36},{"x":1567340160000,"y":0.15},{"x":1567340220000,"y":0.2},{"x":1567340280000,"y":0.32},{"x":1567340340000,"y":0.26},{"x":1567340400000,"y":0.33},{"x":1567340460000,"y":0.18},{"x":1567340520000,"y":0.2},{"x":1567340580000,"y":0.13},{"x":1567340640000,"y":0.2},{"x":1567340700000,"y":0.42},{"x":1567340760000,"y":0.14},{"x":1567340820000,"y":0.15},{"x":1567340880000,"y":0.2},{"x":1567340940000,"y":0.14},{"x":1567341000000,"y":0.42},{"x":1567341060000,"y":0.14},{"x":1567341120000,"y":0.14},{"x":1567341180000,"y":0.15},{"x":1567341240000,"y":0.13},{"x":1567341300000,"y":0.49},{"x":1567341360000,"y":0.17},{"x":1567341420000,"y":0.12},{"x":1567341480000,"y":0.17},{"x":1567341540000,"y":0.41},{"x":1567341600000,"y":0.38},{"x":1567341660000,"y":0.1},{"x":1567341720000,"y":0.15},{"x":1567341780000,"y":0.21},{"x":1567341840000,"y":0.13},{"x":1567341900000,"y":0.36},{"x":1567341960000,"y":0.15},{"x":1567342020000,"y":0.27},{"x":1567342080000,"y":0.18},{"x":1567342140000,"y":0.27},{"x":1567342200000,"y":0.38},{"x":1567342260000,"y":0.19},{"x":1567342320000,"y":0.25},{"x":1567342380000,"y":0.17},{"x":1567342440000,"y":0.13},{"x":1567342500000,"y":0.39},{"x":1567342560000,"y":0.14},{"x":1567342620000,"y":0.67},{"x":1567342680000,"y":0.15},{"x":1567342740000,"y":0.16},{"x":1567342800000,"y":0.56},{"x":1567342860000,"y":0.29},{"x":1567342920000,"y":0.16},{"x":1567342980000,"y":0.22},{"x":1567343040000,"y":0.23},{"x":1567343100000,"y":5.8},{"x":1567343160000,"y":0.33},{"x":1567343220000,"y":0.23},{"x":1567343280000,"y":0.27},{"x":1567343340000,"y":0.42},{"x":1567343400000,"y":0.26},{"x":1567343460000,"y":0.24},{"x":1567343520000,"y":0.2},{"x":1567343580000,"y":0.19},{"x":1567343640000,"y":0.19},{"x":1567343700000,"y":0.36},{"x":1567343760000,"y":0.29},{"x":1567343820000,"y":0.18},{"x":1567343880000,"y":0.22},{"x":1567343940000,"y":0.15},{"x":1567344000000,"y":0.39},{"x":1567344060000,"y":0.28},{"x":1567344120000,"y":0.15},{"x":1567344180000,"y":0.17},{"x":1567344240000,"y":0.19},{"x":1567344300000,"y":0.38},{"x":1567344360000,"y":0.33},{"x":1567344420000,"y":0.12},{"x":1567344480000,"y":0.27},{"x":1567344540000,"y":0.27},{"x":1567344600000,"y":0.31},{"x":1567344660000,"y":0.3},{"x":1567344720000,"y":0.2},{"x":1567344780000,"y":0.13},{"x":1567344840000,"y":0.22},{"x":1567344900000,"y":0.26},{"x":1567344960000,"y":0.3},{"x":1567345020000,"y":0.11},{"x":1567345080000,"y":0.12},{"x":1567345140000,"y":0.38},{"x":1567345200000,"y":0.3},{"x":1567345260000,"y":0.19},{"x":1567345320000,"y":0.39},{"x":1567345380000,"y":0.13},{"x":1567345440000,"y":0.2},{"x":1567345500000,"y":0.38},{"x":1567345560000,"y":0.15},{"x":1567345620000,"y":0.29},{"x":1567345680000,"y":0.17},{"x":1567345740000,"y":0.19},{"x":1567345800000,"y":0.28},{"x":1567345860000,"y":0.17},{"x":1567345920000,"y":0.33},{"x":1567345980000,"y":0.12},{"x":1567346040000,"y":0.17},{"x":1567346100000,"y":0.37},{"x":1567346160000,"y":0.16},{"x":1567346220000,"y":0.26},{"x":1567346280000,"y":0.17},{"x":1567346340000,"y":0.13},{"x":1567346400000,"y":0.4},{"x":1567346460000,"y":0.12},{"x":1567346520000,"y":0.34},{"x":1567346580000,"y":0.21},{"x":1567346640000,"y":0.12},{"x":1567346700000,"y":0.27},{"x":1567346760000,"y":0.16},{"x":1567346820000,"y":0.3},{"x":1567346880000,"y":0.16},{"x":1567346940000,"y":0.36},{"x":1567347000000,"y":0.37},{"x":1567347060000,"y":0.22},{"x":1567347120000,"y":0.37},{"x":1567347180000,"y":0.34},{"x":1567347240000,"y":0.21},{"x":1567347300000,"y":0.35},{"x":1567347360000,"y":0.2},{"x":1567347420000,"y":0.19},{"x":1567347480000,"y":0.3},{"x":1567347540000,"y":0.21},{"x":1567347600000,"y":0.46},{"x":1567347660000,"y":0.22},{"x":1567347720000,"y":0.13},{"x":1567347780000,"y":0.29},{"x":1567347840000,"y":0.2},{"x":1567347900000,"y":0.26},{"x":1567347960000,"y":0.12},{"x":1567348020000,"y":0.13},{"x":1567348080000,"y":0.38},{"x":1567348140000,"y":0.19},{"x":1567348200000,"y":0.32},{"x":1567348260000,"y":0.17},{"x":1567348320000,"y":0.26},{"x":1567348380000,"y":0.36},{"x":1567348440000,"y":0.14},{"x":1567348500000,"y":0.37},{"x":1567348560000,"y":0.24},{"x":1567348620000,"y":0.29},{"x":1567348680000,"y":0.42},{"x":1567348740000,"y":0.46},{"x":1567348800000,"y":0.38},{"x":1567348860000,"y":0.24},{"x":1567348920000,"y":0.22},{"x":1567348980000,"y":0.37},{"x":1567349040000,"y":0.11},{"x":1567349100000,"y":0.34},{"x":1567349160000,"y":0.16},{"x":1567349220000,"y":0.2},{"x":1567349280000,"y":0.37},{"x":1567349340000,"y":0.13},{"x":1567349400000,"y":0.29},{"x":1567349460000,"y":0.17},{"x":1567349520000,"y":0.16},{"x":1567349580000,"y":0.27},{"x":1567349640000,"y":0.19},{"x":1567349700000,"y":0.29},{"x":1567349760000,"y":0.13},{"x":1567349820000,"y":0.28},{"x":1567349880000,"y":0.2},{"x":1567349940000,"y":0.37},{"x":1567350000000,"y":0.53},{"x":1567350060000,"y":0.29},{"x":1567350120000,"y":0.29},{"x":1567350180000,"y":0.22},{"x":1567350240000,"y":0.32},{"x":1567350300000,"y":0.47},{"x":1567350360000,"y":0.21},{"x":1567350420000,"y":0.25},{"x":1567350480000,"y":0.19},{"x":1567350540000,"y":0.58},{"x":1567350600000,"y":0.25},{"x":1567350660000,"y":0.16},{"x":1567350720000,"y":0.18},{"x":1567350780000,"y":0.12},{"x":1567350840000,"y":0.35},{"x":1567350900000,"y":0.42},{"x":1567350960000,"y":0.23},{"x":1567351020000,"y":0.26},{"x":1567351080000,"y":0.2},{"x":1567351140000,"y":0.36},{"x":1567351200000,"y":0.3},{"x":1567351260000,"y":0.18},{"x":1567351320000,"y":0.18},{"x":1567351380000,"y":0.2},{"x":1567351440000,"y":0.37},{"x":1567351500000,"y":0.24},{"x":1567351560000,"y":0.18},{"x":1567351620000,"y":0.23},{"x":1567351680000,"y":0.25},{"x":1567351740000,"y":0.35},{"x":1567351800000,"y":0.41},{"x":1567351860000,"y":0.17},{"x":1567351920000,"y":0.32},{"x":1567351980000,"y":0.23},{"x":1567352040000,"y":0.37},{"x":1567352100000,"y":0.36},{"x":1567352160000,"y":0.34},{"x":1567352220000,"y":0.24},{"x":1567352280000,"y":0.22},{"x":1567352340000,"y":0.48},{"x":1567352400000,"y":0.49},{"x":1567352460000,"y":0.26},{"x":1567352520000,"y":0.22},{"x":1567352580000,"y":0.26},{"x":1567352640000,"y":0.23},{"x":1567352700000,"y":0.56},{"x":1567352760000,"y":0.33},{"x":1567352820000,"y":0.32},{"x":1567352880000,"y":0.24},{"x":1567352940000,"y":0.29},{"x":1567353000000,"y":0.44},{"x":1567353060000,"y":0.19},{"x":1567353120000,"y":0.25},{"x":1567353180000,"y":0.23},{"x":1567353240000,"y":0.34},{"x":1567353300000,"y":0.6},{"x":1567353360000,"y":0.29},{"x":1567353420000,"y":0.27},{"x":1567353480000,"y":0.2},{"x":1567353540000,"y":0.33},{"x":1567353600000,"y":0.62},{"x":1567353660000,"y":0.32},{"x":1567353720000,"y":0.23},{"x":1567353780000,"y":0.24},{"x":1567353840000,"y":0.21},{"x":1567353900000,"y":0.51},{"x":1567353960000,"y":0.29},{"x":1567354020000,"y":0.3},{"x":1567354080000,"y":0.2},{"x":1567354140000,"y":0.36},{"x":1567354200000,"y":0.42},{"x":1567354260000,"y":0.33},{"x":1567354320000,"y":0.24},{"x":1567354380000,"y":0.26},{"x":1567354440000,"y":0.36},{"x":1567354500000,"y":0.43},{"x":1567354560000,"y":0.24},{"x":1567354620000,"y":0.25},{"x":1567354680000,"y":0.29},{"x":1567354740000,"y":0.33},{"x":1567354800000,"y":0.33},{"x":1567354860000,"y":0.51},{"x":1567354920000,"y":0.22},{"x":1567354980000,"y":0.23},{"x":1567355040000,"y":0.22},{"x":1567355100000,"y":0.38},{"x":1567355160000,"y":0.35},{"x":1567355220000,"y":0.29},{"x":1567355280000,"y":0.22},{"x":1567355340000,"y":0.19},{"x":1567355400000,"y":0.36},{"x":1567355460000,"y":0.42},{"x":1567355520000,"y":0.29},{"x":1567355580000,"y":0.25},{"x":1567355640000,"y":0.2},{"x":1567355700000,"y":0.45},{"x":1567355760000,"y":0.38},{"x":1567355820000,"y":0.24},{"x":1567355880000,"y":0.22},{"x":1567355940000,"y":0.62},{"x":1567356000000,"y":0.37},{"x":1567356060000,"y":0.4},{"x":1567356120000,"y":0.27},{"x":1567356180000,"y":0.25},{"x":1567356240000,"y":0.34},{"x":1567356300000,"y":0.48},{"x":1567356360000,"y":0.42},{"x":1567356420000,"y":0.48},{"x":1567356480000,"y":0.25},{"x":1567356540000,"y":0.23},{"x":1567356600000,"y":0.49},{"x":1567356660000,"y":0.23},{"x":1567356720000,"y":5.73},{"x":1567356780000,"y":0.19},{"x":1567356840000,"y":0.29},{"x":1567356900000,"y":0.45},{"x":1567356960000,"y":0.27},{"x":1567357020000,"y":0.56},{"x":1567357080000,"y":0.24},{"x":1567357140000,"y":2.66},{"x":1567357200000,"y":0.57},{"x":1567357260000,"y":0.37},{"x":1567357320000,"y":0.44},{"x":1567357380000,"y":0.27},{"x":1567357440000,"y":0.21},{"x":1567357500000,"y":0.36},{"x":1567357560000,"y":0.27},{"x":1567357620000,"y":0.47},{"x":1567357680000,"y":0.37},{"x":1567357740000,"y":0.64},{"x":1567357800000,"y":0.35},{"x":1567357860000,"y":0.32},{"x":1567357920000,"y":0.36},{"x":1567357980000,"y":0.24},{"x":1567358040000,"y":0.27},{"x":1567358100000,"y":0.38},{"x":1567358160000,"y":0.29},{"x":1567358220000,"y":0.42},{"x":1567358280000,"y":0.25},{"x":1567358340000,"y":0.24},{"x":1567358400000,"y":0.36},{"x":1567358460000,"y":0.26},{"x":1567358520000,"y":0.37},{"x":1567358580000,"y":0.2},{"x":1567358640000,"y":0.31},{"x":1567358700000,"y":0.46},{"x":1567358760000,"y":0.25},{"x":1567358820000,"y":0.22},{"x":1567358880000,"y":0.49},{"x":1567358940000,"y":0.26},{"x":1567359000000,"y":0.43},{"x":1567359060000,"y":0.29},{"x":1567359120000,"y":0.35},{"x":1567359180000,"y":0.42},{"x":1567359240000,"y":0.29},{"x":1567359300000,"y":0.5},{"x":1567359360000,"y":0.22},{"x":1567359420000,"y":0.29},{"x":1567359480000,"y":0.39},{"x":1567359540000,"y":0.61},{"x":1567359600000,"y":0.32},{"x":1567359660000,"y":0.3},{"x":1567359720000,"y":0.26},{"x":1567359780000,"y":0.45},{"x":1567359840000,"y":0.28},{"x":1567359900000,"y":0.38},{"x":1567359960000,"y":0.26},{"x":1567360020000,"y":0.36},{"x":1567360080000,"y":0.43},{"x":1567360140000,"y":0.26},{"x":1567360200000,"y":0.44},{"x":1567360260000,"y":0.23},{"x":1567360320000,"y":0.25},{"x":1567360380000,"y":0.35},{"x":1567360440000,"y":0.23},{"x":1567360500000,"y":0.42},{"x":1567360560000,"y":0.26},{"x":1567360620000,"y":0.25},{"x":1567360680000,"y":0.37},{"x":1567360740000,"y":0.21},{"x":1567360800000,"y":3.21},{"x":1567360860000,"y":0.28},{"x":1567360920000,"y":0.3},{"x":1567360980000,"y":0.44},{"x":1567361040000,"y":0.22},{"x":1567361100000,"y":0.35},{"x":1567361160000,"y":0.29},{"x":1567361220000,"y":0.34},{"x":1567361280000,"y":0.32},{"x":1567361340000,"y":0.54},{"x":1567361400000,"y":0.47},{"x":1567361460000,"y":0.34},{"x":1567361520000,"y":0.38},{"x":1567361580000,"y":0.44},{"x":1567361640000,"y":0.62},{"x":1567361700000,"y":0.51},{"x":1567361760000,"y":0.24},{"x":1567361820000,"y":0.29},{"x":1567361880000,"y":0.25},{"x":1567361940000,"y":0.39},{"x":1567362000000,"y":0.5},{"x":1567362060000,"y":0.24},{"x":1567362120000,"y":0.29},{"x":1567362180000,"y":0.16},{"x":1567362240000,"y":0.3},{"x":1567362300000,"y":0.47},{"x":1567362360000,"y":0.26},{"x":1567362420000,"y":0.34},{"x":1567362480000,"y":0.3},{"x":1567362540000,"y":0.39},{"x":1567362600000,"y":0.52},{"x":1567362660000,"y":0.22},{"x":1567362720000,"y":0.3},{"x":1567362780000,"y":0.22},{"x":1567362840000,"y":0.35},{"x":1567362900000,"y":0.39},{"x":1567362960000,"y":0.21},{"x":1567363020000,"y":0.22},{"x":1567363080000,"y":0.24},{"x":1567363140000,"y":0.64},{"x":1567363200000,"y":0.31},{"x":1567363260000,"y":0.19},{"x":1567363320000,"y":0.19},{"x":1567363380000,"y":0.13},{"x":1567363440000,"y":0.39},{"x":1567363500000,"y":0.36},{"x":1567363560000,"y":0.17},{"x":1567363620000,"y":0.27},{"x":1567363680000,"y":0.23},{"x":1567363740000,"y":0.17},{"x":1567363800000,"y":0.54},{"x":1567363860000,"y":0.15},{"x":1567363920000,"y":0.15},{"x":1567363980000,"y":0.24},{"x":1567364040000,"y":0.17},{"x":1567364100000,"y":0.53},{"x":1567364160000,"y":0.16},{"x":1567364220000,"y":0.14},{"x":1567364280000,"y":0.1},{"x":1567364340000,"y":0.11},{"x":1567364400000,"y":0.64},{"x":1567364460000,"y":0.2},{"x":1567364520000,"y":0.14},{"x":1567364580000,"y":0.15},{"x":1567364640000,"y":0.19},{"x":1567364700000,"y":0.4},{"x":1567364760000,"y":0.16},{"x":1567364820000,"y":0.18},{"x":1567364880000,"y":0.17},{"x":1567364940000,"y":0.28},{"x":1567365000000,"y":0.46},{"x":1567365060000,"y":0.17},{"x":1567365120000,"y":0.25},{"x":1567365180000,"y":0.12},{"x":1567365240000,"y":0.32},{"x":1567365300000,"y":0.48},{"x":1567365360000,"y":0.19},{"x":1567365420000,"y":0.21},{"x":1567365480000,"y":0.15},{"x":1567365540000,"y":0.23},{"x":1567365600000,"y":0.54},{"x":1567365660000,"y":0.15},{"x":1567365720000,"y":0.22},{"x":1567365780000,"y":0.12},{"x":1567365840000,"y":0.15},{"x":1567365900000,"y":0.45},{"x":1567365960000,"y":0.24},{"x":1567366020000,"y":0.18},{"x":1567366080000,"y":0.16},{"x":1567366140000,"y":0.13},{"x":1567366200000,"y":0.46},{"x":1567366260000,"y":0.4},{"x":1567366320000,"y":0.22},{"x":1567366380000,"y":0.21},{"x":1567366440000,"y":0.24},{"x":1567366500000,"y":0.36},{"x":1567366560000,"y":0.27},{"x":1567366620000,"y":0.14},{"x":1567366680000,"y":0.18},{"x":1567366740000,"y":0.38},{"x":1567366800000,"y":0.3},{"x":1567366860000,"y":0.32},{"x":1567366920000,"y":0.13},{"x":1567366980000,"y":0.2},{"x":1567367040000,"y":0.12},{"x":1567367100000,"y":0.41},{"x":1567367160000,"y":0.32},{"x":1567367220000,"y":0.27},{"x":1567367280000,"y":0.19},{"x":1567367340000,"y":0.23},{"x":1567367400000,"y":0.29},{"x":1567367460000,"y":0.39},{"x":1567367520000,"y":0.18},{"x":1567367580000,"y":0.17},{"x":1567367640000,"y":0.12},{"x":1567367700000,"y":0.3},{"x":1567367760000,"y":0.32},{"x":1567367820000,"y":0.23},{"x":1567367880000,"y":0.1},{"x":1567367940000,"y":0.11},{"x":1567368000000,"y":0.44},{"x":1567368060000,"y":0.35},{"x":1567368120000,"y":0.26},{"x":1567368180000,"y":0.12},{"x":1567368240000,"y":0.23},{"x":1567368300000,"y":0.32},{"x":1567368360000,"y":0.12},{"x":1567368420000,"y":0.31},{"x":1567368480000,"y":0.12},{"x":1567368540000,"y":0.43},{"x":1567368600000,"y":0.32},{"x":1567368660000,"y":0.15},{"x":1567368720000,"y":0.33},{"x":1567368780000,"y":0.47},{"x":1567368840000,"y":0.32},{"x":1567368900000,"y":0.31},{"x":1567368960000,"y":0.16},{"x":1567369020000,"y":0.38},{"x":1567369080000,"y":0.15},{"x":1567369140000,"y":0.18},{"x":1567369200000,"y":0.34},{"x":1567369260000,"y":0.32},{"x":1567369320000,"y":0.4},{"x":1567369380000,"y":0.12},{"x":1567369440000,"y":0.18},{"x":1567369500000,"y":0.26},{"x":1567369560000,"y":0.08},{"x":1567369620000,"y":0.32},{"x":1567369680000,"y":0.21},{"x":1567369740000,"y":0.15},{"x":1567369800000,"y":0.42},{"x":1567369860000,"y":0.19},{"x":1567369920000,"y":0.35},{"x":1567369980000,"y":0.18},{"x":1567370040000,"y":0.21},{"x":1567370100000,"y":0.28},{"x":1567370160000,"y":0.21},{"x":1567370220000,"y":0.32},{"x":1567370280000,"y":0.12},{"x":1567370340000,"y":0.34},{"x":1567370400000,"y":0.32},{"x":1567370460000,"y":0.12},{"x":1567370520000,"y":0.31},{"x":1567370580000,"y":0.2},{"x":1567370640000,"y":0.2},{"x":1567370700000,"y":0.35},{"x":1567370760000,"y":0.2},{"x":1567370820000,"y":0.34},{"x":1567370880000,"y":0.24},{"x":1567370940000,"y":0.14},{"x":1567371000000,"y":0.4},{"x":1567371060000,"y":0.29},{"x":1567371120000,"y":0.17},{"x":1567371180000,"y":0.39},{"x":1567371240000,"y":0.17},{"x":1567371300000,"y":0.34},{"x":1567371360000,"y":0.26},{"x":1567371420000,"y":0.25},{"x":1567371480000,"y":0.43},{"x":1567371540000,"y":0.15},{"x":1567371600000,"y":0.49},{"x":1567371660000,"y":0.3},{"x":1567371720000,"y":0.21},{"x":1567371780000,"y":0.27},{"x":1567371840000,"y":0.19},{"x":1567371900000,"y":0.26},{"x":1567371960000,"y":0.24},{"x":1567372020000,"y":0.21},{"x":1567372080000,"y":0.3},{"x":1567372140000,"y":0.47},{"x":1567372200000,"y":0.28},{"x":1567372260000,"y":0.1},{"x":1567372320000,"y":0.16},{"x":1567372380000,"y":0.28},{"x":1567372440000,"y":0.15},{"x":1567372500000,"y":0.24},{"x":1567372560000,"y":0.09},{"x":1567372620000,"y":0.16},{"x":1567372680000,"y":0.24},{"x":1567372740000,"y":0.09},{"x":1567372800000,"y":0.25},{"x":1567372860000,"y":0.12},{"x":1567372920000,"y":0.16},{"x":1567372980000,"y":0.36},{"x":1567373040000,"y":0.18},{"x":1567373100000,"y":0.35},{"x":1567373160000,"y":0.18},{"x":1567373220000,"y":0.15},{"x":1567373280000,"y":0.31},{"x":1567373340000,"y":0.12},{"x":1567373400000,"y":0.28},{"x":1567373460000,"y":0.12},{"x":1567373520000,"y":0.15},{"x":1567373580000,"y":0.18},{"x":1567373640000,"y":0.25},{"x":1567373700000,"y":0.27},{"x":1567373760000,"y":3.5},{"x":1567373820000,"y":0.26},{"x":1567373880000,"y":0.12},{"x":1567373940000,"y":0.47},{"x":1567374000000,"y":0.27},{"x":1567374060000,"y":0.16},{"x":1567374120000,"y":0.16},{"x":1567374180000,"y":0.1},{"x":1567374240000,"y":0.32},{"x":1567374300000,"y":0.29},{"x":1567374360000,"y":0.12},{"x":1567374420000,"y":0.14},{"x":1567374480000,"y":0.13},{"x":1567374540000,"y":0.29},{"x":1567374600000,"y":0.3},{"x":1567374660000,"y":0.17},{"x":1567374720000,"y":0.12},{"x":1567374780000,"y":0.13},{"x":1567374840000,"y":0.26},{"x":1567374900000,"y":0.21},{"x":1567374960000,"y":0.14},{"x":1567375020000,"y":0.11},{"x":1567375080000,"y":0.08},{"x":1567375140000,"y":0.26},{"x":1567375200000,"y":0.39},{"x":1567375260000,"y":0.16},{"x":1567375320000,"y":0.19},{"x":1567375380000,"y":0.12},{"x":1567375440000,"y":0.32},{"x":1567375500000,"y":0.34},{"x":1567375560000,"y":0.15},{"x":1567375620000,"y":0.15},{"x":1567375680000,"y":0.15},{"x":1567375740000,"y":1.38},{"x":1567375800000,"y":0.33},{"x":1567375860000,"y":0.18},{"x":1567375920000,"y":0.14},{"x":1567375980000,"y":0.17},{"x":1567376040000,"y":0.18},{"x":1567376100000,"y":0.51},{"x":1567376160000,"y":0.14},{"x":1567376220000,"y":0.19},{"x":1567376280000,"y":0.25},{"x":1567376340000,"y":0.13},{"x":1567376400000,"y":0.37},{"x":1567376460000,"y":0.2},{"x":1567376520000,"y":0.15},{"x":1567376580000,"y":0.14},{"x":1567376640000,"y":0.12},{"x":1567376700000,"y":0.43},{"x":1567376760000,"y":0.1},{"x":1567376820000,"y":0.12},{"x":1567376880000,"y":0.13},{"x":1567376940000,"y":0.14},{"x":1567377000000,"y":0.33},{"x":1567377060000,"y":0.16},{"x":1567377120000,"y":0.12},{"x":1567377180000,"y":0.14},{"x":1567377240000,"y":0.11},{"x":1567377300000,"y":0.46},{"x":1567377360000,"y":0.13},{"x":1567377420000,"y":0.16},{"x":1567377480000,"y":0.11},{"x":1567377540000,"y":0.38},{"x":1567377600000,"y":0.45},{"x":1567377660000,"y":0.14},{"x":1567377720000,"y":0.13},{"x":1567377780000,"y":0.15},{"x":1567377840000,"y":0.19},{"x":1567377900000,"y":0.36},{"x":1567377960000,"y":0.09},{"x":1567378020000,"y":0.15},{"x":1567378080000,"y":0.16},{"x":1567378140000,"y":0.19},{"x":1567378200000,"y":0.53},{"x":1567378260000,"y":0.26},{"x":1567378320000,"y":0.13},{"x":1567378380000,"y":0.13},{"x":1567378440000,"y":0.23},{"x":1567378500000,"y":0.37},{"x":1567378560000,"y":3.52},{"x":1567378620000,"y":0.12},{"x":1567378680000,"y":0.12},{"x":1567378740000,"y":0.1},{"x":1567378800000,"y":0.39},{"x":1567378860000,"y":0.36},{"x":1567378920000,"y":0.12},{"x":1567378980000,"y":0.19},{"x":1567379040000,"y":0.25},{"x":1567379100000,"y":0.31},{"x":1567379160000,"y":0.35},{"x":1567379220000,"y":0.12},{"x":1567379280000,"y":0.2},{"x":1567379340000,"y":0.7},{"x":1567379400000,"y":0.31},{"x":1567379460000,"y":0.23},{"x":1567379520000,"y":0.13},{"x":1567379580000,"y":0.12},{"x":1567379640000,"y":0.12},{"x":1567379700000,"y":0.39},{"x":1567379760000,"y":0.3},{"x":1567379820000,"y":0.21},{"x":1567379880000,"y":0.15},{"x":1567379940000,"y":0.18},{"x":1567380000000,"y":0.26},{"x":1567380060000,"y":0.28},{"x":1567380120000,"y":0.16},{"x":1567380180000,"y":0.12},{"x":1567380240000,"y":0.12},{"x":1567380300000,"y":0.25},{"x":1567380360000,"y":0.26},{"x":1567380420000,"y":0.14},{"x":1567380480000,"y":0.12},{"x":1567380540000,"y":0.11},{"x":1567380600000,"y":0.34},{"x":1567380660000,"y":0.17},{"x":1567380720000,"y":0.34},{"x":1567380780000,"y":0.13},{"x":1567380840000,"y":0.17},{"x":1567380900000,"y":0.23},{"x":1567380960000,"y":0.14},{"x":1567381020000,"y":0.25},{"x":1567381080000,"y":0.11},{"x":1567381140000,"y":0.43},{"x":1567381200000,"y":0.33},{"x":1567381260000,"y":0.76},{"x":1567381320000,"y":0.35},{"x":1567381380000,"y":0.2},{"x":1567381440000,"y":0.15},{"x":1567381500000,"y":0.31},{"x":1567381560000,"y":0.14},{"x":1567381620000,"y":0.35},{"x":1567381680000,"y":0.2},{"x":1567381740000,"y":0.17},{"x":1567381800000,"y":0.37},{"x":1567381860000,"y":0.18},{"x":1567381920000,"y":0.45},{"x":1567381980000,"y":0.35},{"x":1567382040000,"y":0.17},{"x":1567382100000,"y":0.31},{"x":1567382160000,"y":0.16},{"x":1567382220000,"y":0.28},{"x":1567382280000,"y":0.11},{"x":1567382340000,"y":0.19},{"x":1567382400000,"y":0.56},{"x":1567382460000,"y":1.06},{"x":1567382520000,"y":0.38},{"x":1567382580000,"y":0.13},{"x":1567382640000,"y":0.14},{"x":1567382700000,"y":0.3},{"x":1567382760000,"y":0.22},{"x":1567382820000,"y":0.31},{"x":1567382880000,"y":0.15},{"x":1567382940000,"y":0.43},{"x":1567383000000,"y":0.33},{"x":1567383060000,"y":0.15},{"x":1567383120000,"y":0.17},{"x":1567383180000,"y":0.47},{"x":1567383240000,"y":0.23},{"x":1567383300000,"y":0.5},{"x":1567383360000,"y":0.31},{"x":1567383420000,"y":0.2},{"x":1567383480000,"y":0.5},{"x":1567383540000,"y":0.14},{"x":1567383600000,"y":0.37},{"x":1567383660000,"y":0.13},{"x":1567383720000,"y":0.18},{"x":1567383780000,"y":0.4},{"x":1567383840000,"y":0.24},{"x":1567383900000,"y":0.25},{"x":1567383960000,"y":0.12},{"x":1567384020000,"y":0.15},{"x":1567384080000,"y":0.35},{"x":1567384140000,"y":0.25},{"x":1567384200000,"y":0.36},{"x":1567384260000,"y":0.27},{"x":1567384320000,"y":0.25},{"x":1567384380000,"y":0.31},{"x":1567384440000,"y":0.25},{"x":1567384500000,"y":0.68},{"x":1567384560000,"y":0.52},{"x":1567384620000,"y":0.33},{"x":1567384680000,"y":0.3},{"x":1567384740000,"y":0.47},{"x":1567384800000,"y":0.4},{"x":1567384860000,"y":0.21},{"x":1567384920000,"y":0.13},{"x":1567384980000,"y":0.3},{"x":1567385040000,"y":0.16},{"x":1567385100000,"y":0.31},{"x":1567385160000,"y":0.16},{"x":1567385220000,"y":0.16},{"x":1567385280000,"y":0.32},{"x":1567385340000,"y":0.15},{"x":1567385400000,"y":0.35},{"x":1567385460000,"y":0.19},{"x":1567385520000,"y":0.16},{"x":1567385580000,"y":0.19},{"x":1567385640000,"y":0.41},{"x":1567385700000,"y":0.34},{"x":1567385760000,"y":0.25},{"x":1567385820000,"y":0.17},{"x":1567385880000,"y":0.2},{"x":1567385940000,"y":0.33},{"x":1567386000000,"y":0.57},{"x":1567386060000,"y":0.19},{"x":1567386120000,"y":0.22},{"x":1567386180000,"y":0.22},{"x":1567386240000,"y":0.38},{"x":1567386300000,"y":0.43},{"x":1567386360000,"y":0.2},{"x":1567386420000,"y":0.29},{"x":1567386480000,"y":0.23},{"x":1567386540000,"y":0.44},{"x":1567386600000,"y":0.28},{"x":1567386660000,"y":0.18},{"x":1567386720000,"y":0.18},{"x":1567386780000,"y":0.19},{"x":1567386840000,"y":0.3},{"x":1567386900000,"y":0.28},{"x":1567386960000,"y":0.22},{"x":1567387020000,"y":0.2},{"x":1567387080000,"y":0.22},{"x":1567387140000,"y":0.37},{"x":1567387200000,"y":0.31},{"x":1567387260000,"y":0.18},{"x":1567387320000,"y":0.25},{"x":1567387380000,"y":0.21},{"x":1567387440000,"y":0.38},{"x":1567387500000,"y":0.34},{"x":1567387560000,"y":0.21},{"x":1567387620000,"y":0.16},{"x":1567387680000,"y":0.22},{"x":1567387740000,"y":0.2},{"x":1567387800000,"y":0.57},{"x":1567387860000,"y":0.2},{"x":1567387920000,"y":0.27},{"x":1567387980000,"y":0.21},{"x":1567388040000,"y":0.19},{"x":1567388100000,"y":0.51},{"x":1567388160000,"y":0.19},{"x":1567388220000,"y":0.19},{"x":1567388280000,"y":0.21},{"x":1567388340000,"y":0.28},{"x":1567388400000,"y":0.57},{"x":1567388460000,"y":0.26},{"x":1567388520000,"y":0.24},{"x":1567388580000,"y":0.2},{"x":1567388640000,"y":0.2},{"x":1567388700000,"y":0.47},{"x":1567388760000,"y":0.18},{"x":1567388820000,"y":0.22},{"x":1567388880000,"y":0.24},{"x":1567388940000,"y":0.19},{"x":1567389000000,"y":0.48},{"x":1567389060000,"y":0.23},{"x":1567389120000,"y":0.25},{"x":1567389180000,"y":0.19},{"x":1567389240000,"y":0.22},{"x":1567389300000,"y":0.51},{"x":1567389360000,"y":0.19},{"x":1567389420000,"y":0.22},{"x":1567389480000,"y":0.26},{"x":1567389540000,"y":0.23},{"x":1567389600000,"y":0.61},{"x":1567389660000,"y":0.27},{"x":1567389720000,"y":0.25},{"x":1567389780000,"y":0.24},{"x":1567389840000,"y":0.26},{"x":1567389900000,"y":0.59},{"x":1567389960000,"y":0.38},{"x":1567390020000,"y":0.3},{"x":1567390080000,"y":0.29},{"x":1567390140000,"y":0.36},{"x":1567390200000,"y":0.43},{"x":1567390260000,"y":0.37},{"x":1567390320000,"y":0.91},{"x":1567390380000,"y":0.34},{"x":1567390440000,"y":0.29},{"x":1567390500000,"y":0.4},{"x":1567390560000,"y":0.37},{"x":1567390620000,"y":0.3},{"x":1567390680000,"y":0.28},{"x":1567390740000,"y":0.2},{"x":1567390800000,"y":0.31},{"x":1567390860000,"y":0.55},{"x":1567390920000,"y":0.21},{"x":1567390980000,"y":0.2},{"x":1567391040000,"y":0.34},{"x":1567391100000,"y":0.43},{"x":1567391160000,"y":0.37},{"x":1567391220000,"y":0.28},{"x":1567391280000,"y":0.22},{"x":1567391340000,"y":0.21},{"x":1567391400000,"y":0.43},{"x":1567391460000,"y":0.33},{"x":1567391520000,"y":0.39},{"x":1567391580000,"y":0.24},{"x":1567391640000,"y":0.29},{"x":1567391700000,"y":0.38},{"x":1567391760000,"y":0.31},{"x":1567391820000,"y":0.31},{"x":1567391880000,"y":0.21},{"x":1567391940000,"y":0.39},{"x":1567392000000,"y":0.45},{"x":1567392060000,"y":0.35},{"x":1567392120000,"y":0.32},{"x":1567392180000,"y":0.19},{"x":1567392240000,"y":0.25},{"x":1567392300000,"y":0.4},{"x":1567392360000,"y":0.36},{"x":1567392420000,"y":0.59},{"x":1567392480000,"y":0.3},{"x":1567392540000,"y":0.32},{"x":1567392600000,"y":0.34},{"x":1567392660000,"y":0.25},{"x":1567392720000,"y":0.37},{"x":1567392780000,"y":0.23},{"x":1567392840000,"y":0.24},{"x":1567392900000,"y":0.36},{"x":1567392960000,"y":0.26},{"x":1567393020000,"y":0.48},{"x":1567393080000,"y":0.21},{"x":1567393140000,"y":0.17},{"x":1567393200000,"y":0.59},{"x":1567393260000,"y":0.29},{"x":1567393320000,"y":0.45},{"x":1567393380000,"y":0.45},{"x":1567393440000,"y":0.29},{"x":1567393500000,"y":0.42},{"x":1567393560000,"y":0.23},{"x":1567393620000,"y":0.36},{"x":1567393680000,"y":0.22},{"x":1567393740000,"y":0.3},{"x":1567393800000,"y":0.38},{"x":1567393860000,"y":0.23},{"x":1567393920000,"y":0.4},{"x":1567393980000,"y":0.24},{"x":1567394040000,"y":0.2},{"x":1567394100000,"y":0.36},{"x":1567394160000,"y":0.2},{"x":1567394220000,"y":0.25},{"x":1567394280000,"y":0.35},{"x":1567394340000,"y":0.2},{"x":1567394400000,"y":0.39},{"x":1567394460000,"y":0.22},{"x":1567394520000,"y":0.2},{"x":1567394580000,"y":0.32},{"x":1567394640000,"y":0.2},{"x":1567394700000,"y":0.33},{"x":1567394760000,"y":0.24},{"x":1567394820000,"y":0.22},{"x":1567394880000,"y":0.36},{"x":1567394940000,"y":0.21},{"x":1567395000000,"y":0.32},{"x":1567395060000,"y":0.24},{"x":1567395120000,"y":0.26},{"x":1567395180000,"y":0.31},{"x":1567395240000,"y":0.26},{"x":1567395300000,"y":0.38},{"x":1567395360000,"y":0.18},{"x":1567395420000,"y":0.19},{"x":1567395480000,"y":0.3},{"x":1567395540000,"y":0.33},{"x":1567395600000,"y":0.32},{"x":1567395660000,"y":0.15},{"x":1567395720000,"y":0.2},{"x":1567395780000,"y":0.29},{"x":1567395840000,"y":0.22},{"x":1567395900000,"y":0.29},{"x":1567395960000,"y":0.12},{"x":1567396020000,"y":0.17},{"x":1567396080000,"y":0.36},{"x":1567396140000,"y":0.18},{"x":1567396200000,"y":0.3},{"x":1567396260000,"y":0.13},{"x":1567396320000,"y":0.18},{"x":1567396380000,"y":0.28},{"x":1567396440000,"y":0.2},{"x":1567396500000,"y":0.24},{"x":1567396560000,"y":0.14},{"x":1567396620000,"y":0.11},{"x":1567396680000,"y":0.1},{"x":1567396740000,"y":0.27},{"x":1567396800000,"y":0.52},{"x":1567396860000,"y":0.25},{"x":1567396920000,"y":0.22},{"x":1567396980000,"y":0.17},{"x":1567397040000,"y":0.26},{"x":1567397100000,"y":0.3},{"x":1567397160000,"y":0.1},{"x":1567397220000,"y":0.19},{"x":1567397280000,"y":0.11},{"x":1567397340000,"y":0.56},{"x":1567397400000,"y":0.29},{"x":1567397460000,"y":0.14},{"x":1567397520000,"y":0.13},{"x":1567397580000,"y":0.22},{"x":1567397640000,"y":0.4},{"x":1567397700000,"y":0.21},{"x":1567397760000,"y":0.2},{"x":1567397820000,"y":0.26},{"x":1567397880000,"y":0.13},{"x":1567397940000,"y":0.31},{"x":1567398000000,"y":0.26},{"x":1567398060000,"y":0.15},{"x":1567398120000,"y":0.16},{"x":1567398180000,"y":0.19},{"x":1567398240000,"y":0.36},{"x":1567398300000,"y":0.31},{"x":1567398360000,"y":0.18},{"x":1567398420000,"y":0.18},{"x":1567398480000,"y":0.14},{"x":1567398540000,"y":0.31},{"x":1567398600000,"y":0.4},{"x":1567398660000,"y":0.21},{"x":1567398720000,"y":0.18},{"x":1567398780000,"y":0.13},{"x":1567398840000,"y":0.35},{"x":1567398900000,"y":0.29},{"x":1567398960000,"y":0.2},{"x":1567399020000,"y":0.17},{"x":1567399080000,"y":0.14},{"x":1567399140000,"y":0.33},{"x":1567399200000,"y":0.56},{"x":1567399260000,"y":0.14},{"x":1567399320000,"y":0.15},{"x":1567399380000,"y":0.16},{"x":1567399440000,"y":0.2},{"x":1567399500000,"y":0.52},{"x":1567399560000,"y":0.28},{"x":1567399620000,"y":0.24},{"x":1567399680000,"y":0.13},{"x":1567399740000,"y":0.19},{"x":1567399800000,"y":0.34},{"x":1567399860000,"y":0.16},{"x":1567399920000,"y":0.19},{"x":1567399980000,"y":0.12},{"x":1567400040000,"y":0.23},{"x":1567400100000,"y":0.41},{"x":1567400160000,"y":0.19},{"x":1567400220000,"y":0.11},{"x":1567400280000,"y":0.16},{"x":1567400340000,"y":0.17},{"x":1567400400000,"y":6.64},{"x":1567400460000,"y":0.32},{"x":1567400520000,"y":0.2},{"x":1567400580000,"y":0.12},{"x":1567400640000,"y":0.19},{"x":1567400700000,"y":0.55},{"x":1567400760000,"y":0.24},{"x":1567400820000,"y":0.19},{"x":1567400880000,"y":0.2},{"x":1567400940000,"y":0.43},{"x":1567401000000,"y":0.43},{"x":1567401060000,"y":0.17},{"x":1567401120000,"y":0.2},{"x":1567401180000,"y":0.19},{"x":1567401240000,"y":0.59},{"x":1567401300000,"y":0.43},{"x":1567401360000,"y":0.1},{"x":1567401420000,"y":0.13},{"x":1567401480000,"y":0.12},{"x":1567401540000,"y":0.14},{"x":1567401600000,"y":0.22},{"x":1567401660000,"y":0.41},{"x":1567401720000,"y":0.17},{"x":1567401780000,"y":0.12},{"x":1567401840000,"y":0.15},{"x":1567401900000,"y":0.24},{"x":1567401960000,"y":0.26},{"x":1567402020000,"y":0.1},{"x":1567402080000,"y":0.2},{"x":1567402140000,"y":0.1},{"x":1567402200000,"y":0.32},{"x":1567402260000,"y":0.36},{"x":1567402320000,"y":0.15},{"x":1567402380000,"y":0.12},{"x":1567402440000,"y":0.12},{"x":1567402500000,"y":0.29},{"x":1567402560000,"y":0.27},{"x":1567402620000,"y":0.13},{"x":1567402680000,"y":0.19},{"x":1567402740000,"y":0.39},{"x":1567402800000,"y":0.3},{"x":1567402860000,"y":0.32},{"x":1567402920000,"y":0.27},{"x":1567402980000,"y":0.18},{"x":1567403040000,"y":0.15},{"x":1567403100000,"y":0.31},{"x":1567403160000,"y":0.33},{"x":1567403220000,"y":0.2},{"x":1567403280000,"y":0.17},{"x":1567403340000,"y":0.09},{"x":1567403400000,"y":0.4},{"x":1567403460000,"y":0.15},{"x":1567403520000,"y":0.28},{"x":1567403580000,"y":0.15},{"x":1567403640000,"y":0.17},{"x":1567403700000,"y":0.27},{"x":1567403760000,"y":0.15},{"x":1567403820000,"y":0.38},{"x":1567403880000,"y":0.18},{"x":1567403940000,"y":0.17},{"x":1567404000000,"y":0.4},{"x":1567404060000,"y":0.29},{"x":1567404120000,"y":0.33},{"x":1567404180000,"y":0.27},{"x":1567404240000,"y":0.51},{"x":1567404300000,"y":0.46},{"x":1567404360000,"y":0.31},{"x":1567404420000,"y":0.43},{"x":1567404480000,"y":0.21},{"x":1567404540000,"y":0.41},{"x":1567404600000,"y":0.32},{"x":1567404660000,"y":0.18},{"x":1567404720000,"y":0.29},{"x":1567404780000,"y":0.2},{"x":1567404840000,"y":0.71},{"x":1567404900000,"y":0.39},{"x":1567404960000,"y":0.29},{"x":1567405020000,"y":0.5},{"x":1567405080000,"y":0.19},{"x":1567405140000,"y":0.21},{"x":1567405200000,"y":0.29},{"x":1567405260000,"y":0.12},{"x":1567405320000,"y":0.3},{"x":1567405380000,"y":0.11},{"x":1567405440000,"y":0.12},{"x":1567405500000,"y":0.55},{"x":1567405560000,"y":0.14},{"x":1567405620000,"y":0.1},{"x":1567405680000,"y":0.31},{"x":1567405740000,"y":0.17},{"x":1567405800000,"y":0.25},{"x":1567405860000,"y":0.15},{"x":1567405920000,"y":0.19},{"x":1567405980000,"y":0.3},{"x":1567406040000,"y":0.15},{"x":1567406100000,"y":0.31},{"x":1567406160000,"y":0.13},{"x":1567406220000,"y":0.12},{"x":1567406280000,"y":0.3},{"x":1567406340000,"y":0.44},{"x":1567406400000,"y":0.25},{"x":1567406460000,"y":0.1},{"x":1567406520000,"y":0.19},{"x":1567406580000,"y":0.29},{"x":1567406640000,"y":0.12},{"x":1567406700000,"y":0.3},{"x":1567406760000,"y":0.2},{"x":1567406820000,"y":0.17},{"x":1567406880000,"y":0.35},{"x":1567406940000,"y":0.14},{"x":1567407000000,"y":0.25},{"x":1567407060000,"y":0.11},{"x":1567407120000,"y":0.2},{"x":1567407180000,"y":0.27},{"x":1567407240000,"y":0.18},{"x":1567407300000,"y":0.27},{"x":1567407360000,"y":0.1},{"x":1567407420000,"y":0.13},{"x":1567407480000,"y":0.23},{"x":1567407540000,"y":0.16},{"x":1567407600000,"y":0.48},{"x":1567407660000,"y":0.12},{"x":1567407720000,"y":0.22},{"x":1567407780000,"y":0.31},{"x":1567407840000,"y":0.23},{"x":1567407900000,"y":0.35},{"x":1567407960000,"y":0.21},{"x":1567408020000,"y":0.18},{"x":1567408080000,"y":0.22},{"x":1567408140000,"y":0.75},{"x":1567408200000,"y":0.31},{"x":1567408260000,"y":0.14},{"x":1567408320000,"y":0.16},{"x":1567408380000,"y":0.2},{"x":1567408440000,"y":0.55},{"x":1567408500000,"y":0.52},{"x":1567408560000,"y":0.15},{"x":1567408620000,"y":0.13},{"x":1567408680000,"y":0.15},{"x":1567408740000,"y":0.37},{"x":1567408800000,"y":0.31},{"x":1567408860000,"y":0.2},{"x":1567408920000,"y":0.2},{"x":1567408980000,"y":0.3},{"x":1567409040000,"y":0.46},{"x":1567409100000,"y":0.41},{"x":1567409160000,"y":0.24},{"x":1567409220000,"y":0.15},{"x":1567409280000,"y":0.19},{"x":1567409340000,"y":0.27},{"x":1567409400000,"y":0.48},{"x":1567409460000,"y":0.13},{"x":1567409520000,"y":0.21},{"x":1567409580000,"y":0.2},{"x":1567409640000,"y":0.31},{"x":1567409700000,"y":0.37},{"x":1567409760000,"y":0.19},{"x":1567409820000,"y":0.14},{"x":1567409880000,"y":0.15},{"x":1567409940000,"y":0.52},{"x":1567410000000,"y":0.2},{"x":1567410060000,"y":0.15},{"x":1567410120000,"y":0.15},{"x":1567410180000,"y":0.23},{"x":1567410240000,"y":0.35},{"x":1567410300000,"y":0.35},{"x":1567410360000,"y":0.17},{"x":1567410420000,"y":0.15},{"x":1567410480000,"y":0.19},{"x":1567410540000,"y":0.15},{"x":1567410600000,"y":0.49},{"x":1567410660000,"y":0.15},{"x":1567410720000,"y":0.17},{"x":1567410780000,"y":0.18},{"x":1567410840000,"y":0.27},{"x":1567410900000,"y":0.44},{"x":1567410960000,"y":0.2},{"x":1567411020000,"y":0.16},{"x":1567411080000,"y":0.18},{"x":1567411140000,"y":0.16},{"x":1567411200000,"y":0.72},{"x":1567411260000,"y":0.2},{"x":1567411320000,"y":0.23},{"x":1567411380000,"y":0.24},{"x":1567411440000,"y":0.24},{"x":1567411500000,"y":0.45},{"x":1567411560000,"y":0.16},{"x":1567411620000,"y":0.17},{"x":1567411680000,"y":0.19},{"x":1567411740000,"y":0.37},{"x":1567411800000,"y":0.5},{"x":1567411860000,"y":0.15},{"x":1567411920000,"y":0.28},{"x":1567411980000,"y":0.32},{"x":1567412040000,"y":0.25},{"x":1567412100000,"y":0.62},{"x":1567412160000,"y":0.41},{"x":1567412220000,"y":0.29},{"x":1567412280000,"y":0.26},{"x":1567412340000,"y":0.32},{"x":1567412400000,"y":0.52},{"x":1567412460000,"y":0.15},{"x":1567412520000,"y":0.17},{"x":1567412580000,"y":0.11},{"x":1567412640000,"y":0.14},{"x":1567412700000,"y":0.31},{"x":1567412760000,"y":0.33},{"x":1567412820000,"y":0.15},{"x":1567412880000,"y":0.18},{"x":1567412940000,"y":0.2},{"x":1567413000000,"y":0.43},{"x":1567413060000,"y":0.56},{"x":1567413120000,"y":0.26},{"x":1567413180000,"y":0.17},{"x":1567413240000,"y":0.17},{"x":1567413300000,"y":0.34},{"x":1567413360000,"y":0.42},{"x":1567413420000,"y":0.24},{"x":1567413480000,"y":0.17},{"x":1567413540000,"y":0.33},{"x":1567413600000,"y":0.24},{"x":1567413660000,"y":0.29},{"x":1567413720000,"y":0.15},{"x":1567413780000,"y":0.12},{"x":1567413840000,"y":0.2},{"x":1567413900000,"y":0.41},{"x":1567413960000,"y":0.29},{"x":1567414020000,"y":0.15},{"x":1567414080000,"y":0.25},{"x":1567414140000,"y":0.2},{"x":1567414200000,"y":0.22},{"x":1567414260000,"y":0.32},{"x":1567414320000,"y":0.12},{"x":1567414380000,"y":0.13},{"x":1567414440000,"y":0.15},{"x":1567414500000,"y":0.23},{"x":1567414560000,"y":0.33},{"x":1567414620000,"y":0.2},{"x":1567414680000,"y":0.16},{"x":1567414740000,"y":0.14},{"x":1567414800000,"y":0.44},{"x":1567414860000,"y":0.38},{"x":1567414920000,"y":0.29},{"x":1567414980000,"y":0.27},{"x":1567415040000,"y":0.29},{"x":1567415100000,"y":0.27},{"x":1567415160000,"y":0.2},{"x":1567415220000,"y":0.41},{"x":1567415280000,"y":0.2},{"x":1567415340000,"y":0.49},{"x":1567415400000,"y":0.38},{"x":1567415460000,"y":0.12},{"x":1567415520000,"y":0.32},{"x":1567415580000,"y":0.21},{"x":1567415640000,"y":0.25},{"x":1567415700000,"y":0.28},{"x":1567415760000,"y":2.73},{"x":1567415820000,"y":0.3},{"x":1567415880000,"y":0.15},{"x":1567415940000,"y":4.48},{"x":1567416000000,"y":0.3},{"x":1567416060000,"y":0.15},{"x":1567416120000,"y":0.3},{"x":1567416180000,"y":0.16},{"x":1567416240000,"y":0.12},{"x":1567416300000,"y":0.53},{"x":1567416360000,"y":0.22},{"x":1567416420000,"y":0.35},{"x":1567416480000,"y":0.19},{"x":1567416540000,"y":0.27},{"x":1567416600000,"y":0.33},{"x":1567416660000,"y":0.14},{"x":1567416720000,"y":0.37},{"x":1567416780000,"y":0.2},{"x":1567416840000,"y":0.23},{"x":1567416900000,"y":0.34},{"x":1567416960000,"y":0.1},{"x":1567417020000,"y":0.37},{"x":1567417080000,"y":0.19},{"x":1567417140000,"y":0.27},{"x":1567417200000,"y":0.34},{"x":1567417260000,"y":0.15},{"x":1567417320000,"y":0.29},{"x":1567417380000,"y":0.15},{"x":1567417440000,"y":0.18},{"x":1567417500000,"y":0.35},{"x":1567417560000,"y":0.21},{"x":1567417620000,"y":0.36},{"x":1567417680000,"y":0.32},{"x":1567417740000,"y":0.14},{"x":1567417800000,"y":0.45},{"x":1567417860000,"y":0.2},{"x":1567417920000,"y":0.24},{"x":1567417980000,"y":0.28},{"x":1567418040000,"y":0.23},{"x":1567418100000,"y":0.22},{"x":1567418160000,"y":0.14},{"x":1567418220000,"y":0.22},{"x":1567418280000,"y":0.37},{"x":1567418340000,"y":0.28},{"x":1567418400000,"y":0.54},{"x":1567418460000,"y":0.27},{"x":1567418520000,"y":0.3},{"x":1567418580000,"y":0.44},{"x":1567418640000,"y":0.19},{"x":1567418700000,"y":0.33},{"x":1567418760000,"y":0.19},{"x":1567418820000,"y":0.2},{"x":1567418880000,"y":0.49},{"x":1567418940000,"y":0.51},{"x":1567419000000,"y":0.36},{"x":1567419060000,"y":0.24},{"x":1567419120000,"y":0.2},{"x":1567419180000,"y":0.46},{"x":1567419240000,"y":0.37},{"x":1567419300000,"y":0.52},{"x":1567419360000,"y":0.27},{"x":1567419420000,"y":0.41},{"x":1567419480000,"y":0.55},{"x":1567419540000,"y":0.36},{"x":1567419600000,"y":0.62},{"x":1567419660000,"y":0.38},{"x":1567419720000,"y":0.25},{"x":1567419780000,"y":0.7},{"x":1567419840000,"y":0.27},{"x":1567419900000,"y":0.41},{"x":1567419960000,"y":0.39},{"x":1567420020000,"y":0.51},{"x":1567420080000,"y":0.27},{"x":1567420140000,"y":0.41},{"x":1567420200000,"y":0.42},{"x":1567420260000,"y":0.26},{"x":1567420320000,"y":0.24},{"x":1567420380000,"y":0.23},{"x":1567420440000,"y":0.37},{"x":1567420500000,"y":0.39},{"x":1567420560000,"y":0.21},{"x":1567420620000,"y":0.18},{"x":1567420680000,"y":0.24},{"x":1567420740000,"y":0.62},{"x":1567420800000,"y":0.39},{"x":1567420860000,"y":0.34},{"x":1567420920000,"y":0.22},{"x":1567420980000,"y":0.23},{"x":1567421040000,"y":0.34},{"x":1567421100000,"y":0.35},{"x":1567421160000,"y":0.2},{"x":1567421220000,"y":0.27},{"x":1567421280000,"y":0.22},{"x":1567421340000,"y":0.32},{"x":1567421400000,"y":0.34},{"x":1567421460000,"y":0.2},{"x":1567421520000,"y":0.19},{"x":1567421580000,"y":0.18},{"x":1567421640000,"y":0.32},{"x":1567421700000,"y":0.35},{"x":1567421760000,"y":0.19},{"x":1567421820000,"y":0.18},{"x":1567421880000,"y":0.21},{"x":1567421940000,"y":0.35},{"x":1567422000000,"y":0.42},{"x":1567422060000,"y":0.23},{"x":1567422120000,"y":0.2},{"x":1567422180000,"y":0.24},{"x":1567422240000,"y":0.19},{"x":1567422300000,"y":3.85},{"x":1567422360000,"y":0.2},{"x":1567422420000,"y":0.21},{"x":1567422480000,"y":0.24},{"x":1567422540000,"y":0.44},{"x":1567422600000,"y":0.49},{"x":1567422660000,"y":0.19},{"x":1567422720000,"y":0.2},{"x":1567422780000,"y":0.22},{"x":1567422840000,"y":0.24},{"x":1567422900000,"y":0.54},{"x":1567422960000,"y":0.28},{"x":1567423020000,"y":0.28},{"x":1567423080000,"y":0.19},{"x":1567423140000,"y":0.21},{"x":1567423200000,"y":0.56},{"x":1567423260000,"y":0.25},{"x":1567423320000,"y":0.25},{"x":1567423380000,"y":0.17},{"x":1567423440000,"y":0.21},{"x":1567423500000,"y":1.77},{"x":1567423560000,"y":0.19},{"x":1567423620000,"y":0.24},{"x":1567423680000,"y":0.27},{"x":1567423740000,"y":0.2},{"x":1567423800000,"y":0.5},{"x":1567423860000,"y":0.22},{"x":1567423920000,"y":0.27},{"x":1567423980000,"y":7.18},{"x":1567424040000,"y":0.23},{"x":1567424100000,"y":0.61},{"x":1567424160000,"y":0.2},{"x":1567424220000,"y":0.2},{"x":1567424280000,"y":0.22},{"x":1567424340000,"y":0.58},{"x":1567424400000,"y":0.5},{"x":1567424460000,"y":0.22},{"x":1567424520000,"y":0.22},{"x":1567424580000,"y":0.28},{"x":1567424640000,"y":0.22},{"x":1567424700000,"y":0.42},{"x":1567424760000,"y":0.42},{"x":1567424820000,"y":0.23},{"x":1567424880000,"y":0.27},{"x":1567424940000,"y":0.21},{"x":1567425000000,"y":0.32},{"x":1567425060000,"y":0.33},{"x":1567425120000,"y":0.2},{"x":1567425180000,"y":0.22},{"x":1567425240000,"y":0.22},{"x":1567425300000,"y":0.34},{"x":1567425360000,"y":0.39},{"x":1567425420000,"y":0.21},{"x":1567425480000,"y":0.19},{"x":1567425540000,"y":0.2},{"x":1567425600000,"y":0.43},{"x":1567425660000,"y":0.39},{"x":1567425720000,"y":0.2},{"x":1567425780000,"y":0.23},{"x":1567425840000,"y":0.29},{"x":1567425900000,"y":0.4},{"x":1567425960000,"y":0.47},{"x":1567426020000,"y":0.19},{"x":1567426080000,"y":0.2},{"x":1567426140000,"y":0.47},{"x":1567426200000,"y":0.34},{"x":1567426260000,"y":0.35},{"x":1567426320000,"y":0.25},{"x":1567426380000,"y":0.32},{"x":1567426440000,"y":0.27},{"x":1567426500000,"y":0.4},{"x":1567426560000,"y":0.41},{"x":1567426620000,"y":0.24},{"x":1567426680000,"y":0.21},{"x":1567426740000,"y":0.19},{"x":1567426800000,"y":0.4},{"x":1567426860000,"y":0.37},{"x":1567426920000,"y":0.2},{"x":1567426980000,"y":0.24},{"x":1567427040000,"y":0.2},{"x":1567427100000,"y":0.26},{"x":1567427160000,"y":0.2},{"x":1567427220000,"y":0.31},{"x":1567427280000,"y":0.18},{"x":1567427340000,"y":0.2},{"x":1567427400000,"y":0.32},{"x":1567427460000,"y":0.17},{"x":1567427520000,"y":0.48},{"x":1567427580000,"y":0.22},{"x":1567427640000,"y":0.19},{"x":1567427700000,"y":0.35},{"x":1567427760000,"y":0.25},{"x":1567427820000,"y":0.35},{"x":1567427880000,"y":0.19},{"x":1567427940000,"y":0.43},{"x":1567428000000,"y":0.38},{"x":1567428060000,"y":0.25},{"x":1567428120000,"y":0.45},{"x":1567428180000,"y":0.22},{"x":1567428240000,"y":0.26},{"x":1567428300000,"y":0.33},{"x":1567428360000,"y":0.22},{"x":1567428420000,"y":0.43},{"x":1567428480000,"y":0.21},{"x":1567428540000,"y":0.25},{"x":1567428600000,"y":0.32},{"x":1567428660000,"y":0.13},{"x":1567428720000,"y":0.32},{"x":1567428780000,"y":0.17},{"x":1567428840000,"y":0.17},{"x":1567428900000,"y":0.35},{"x":1567428960000,"y":0.11},{"x":1567429020000,"y":0.33},{"x":1567429080000,"y":0.18},{"x":1567429140000,"y":0.17},{"x":1567429200000,"y":0.65},{"x":1567429260000,"y":0.24},{"x":1567429320000,"y":0.27},{"x":1567429380000,"y":0.29},{"x":1567429440000,"y":0.16},{"x":1567429500000,"y":0.26},{"x":1567429560000,"y":0.17},{"x":1567429620000,"y":1.44},{"x":1567429680000,"y":0.29},{"x":1567429740000,"y":0.43},{"x":1567429800000,"y":0.34},{"x":1567429860000,"y":0.12},{"x":1567429920000,"y":0.16},{"x":1567429980000,"y":0.3},{"x":1567430040000,"y":0.17},{"x":1567430100000,"y":0.28},{"x":1567430160000,"y":0.11},{"x":1567430220000,"y":0.23},{"x":1567430280000,"y":0.29},{"x":1567430340000,"y":2.71},{"x":1567430400000,"y":0.3},{"x":1567430460000,"y":0.17},{"x":1567430520000,"y":0.15},{"x":1567430580000,"y":0.38},{"x":1567430640000,"y":0.16},{"x":1567430700000,"y":0.28},{"x":1567430760000,"y":0.17},{"x":1567430820000,"y":0.17},{"x":1567430880000,"y":0.28},{"x":1567430940000,"y":0.12},{"x":1567431000000,"y":0.43},{"x":1567431060000,"y":0.15},{"x":1567431120000,"y":0.14},{"x":1567431180000,"y":0.3},{"x":1567431240000,"y":0.15},{"x":1567431300000,"y":0.4},{"x":1567431360000,"y":0.16},{"x":1567431420000,"y":0.16},{"x":1567431480000,"y":0.33},{"x":1567431540000,"y":0.4},{"x":1567431600000,"y":0.34},{"x":1567431660000,"y":0.2},{"x":1567431720000,"y":0.17},{"x":1567431780000,"y":0.11},{"x":1567431840000,"y":0.37},{"x":1567431900000,"y":0.34},{"x":1567431960000,"y":0.15},{"x":1567432020000,"y":0.19},{"x":1567432080000,"y":0.16},{"x":1567432140000,"y":0.38},{"x":1567432200000,"y":0.4},{"x":1567432260000,"y":0.1},{"x":1567432320000,"y":0.2},{"x":1567432380000,"y":0.21},{"x":1567432440000,"y":0.3},{"x":1567432500000,"y":0.25},{"x":1567432560000,"y":0.14},{"x":1567432620000,"y":0.22},{"x":1567432680000,"y":0.17},{"x":1567432740000,"y":0.31},{"x":1567432800000,"y":0.47},{"x":1567432860000,"y":0.19},{"x":1567432920000,"y":0.2},{"x":1567432980000,"y":0.17},{"x":1567433040000,"y":0.35},{"x":1567433100000,"y":0.44},{"x":1567433160000,"y":0.19},{"x":1567433220000,"y":0.15},{"x":1567433280000,"y":2.39},{"x":1567433340000,"y":0.38},{"x":1567433400000,"y":0.3},{"x":1567433460000,"y":0.27},{"x":1567433520000,"y":0.29},{"x":1567433580000,"y":0.24},{"x":1567433640000,"y":0.26},{"x":1567433700000,"y":0.3},{"x":1567433760000,"y":0.14},{"x":1567433820000,"y":0.18},{"x":1567433880000,"y":0.17},{"x":1567433940000,"y":0.32},{"x":1567434000000,"y":0.36},{"x":1567434060000,"y":0.21},{"x":1567434120000,"y":0.16},{"x":1567434180000,"y":0.13},{"x":1567434240000,"y":0.13},{"x":1567434300000,"y":0.47},{"x":1567434360000,"y":0.16},{"x":1567434420000,"y":0.16},{"x":1567434480000,"y":0.18},{"x":1567434540000,"y":0.21},{"x":1567434600000,"y":0.59},{"x":1567434660000,"y":0.13},{"x":1567434720000,"y":0.2},{"x":1567434780000,"y":0.23},{"x":1567434840000,"y":0.19},{"x":1567434900000,"y":0.5},{"x":1567434960000,"y":0.17},{"x":1567435020000,"y":0.23},{"x":1567435080000,"y":0.12},{"x":1567435140000,"y":0.41},{"x":1567435200000,"y":0.57},{"x":1567435260000,"y":0.25},{"x":1567435320000,"y":0.19},{"x":1567435380000,"y":0.15},{"x":1567435440000,"y":0.22},{"x":1567435500000,"y":0.46},{"x":1567435560000,"y":0.16},{"x":1567435620000,"y":0.26},{"x":1567435680000,"y":0.13},{"x":1567435740000,"y":0.19},{"x":1567435800000,"y":0.37},{"x":1567435860000,"y":0.19},{"x":1567435920000,"y":0.15},{"x":1567435980000,"y":0.17},{"x":1567436040000,"y":0.15},{"x":1567436100000,"y":0.43},{"x":1567436160000,"y":0.17},{"x":1567436220000,"y":0.15},{"x":1567436280000,"y":0.17},{"x":1567436340000,"y":0.16},{"x":1567436400000,"y":0.62},{"x":1567436460000,"y":0.31},{"x":1567436520000,"y":0.25},{"x":1567436580000,"y":0.17},{"x":1567436640000,"y":0.21},{"x":1567436700000,"y":0.49},{"x":1567436760000,"y":0.14},{"x":1567436820000,"y":0.16},{"x":1567436880000,"y":0.2},{"x":1567436940000,"y":0.35},{"x":1567437000000,"y":0.34},{"x":1567437060000,"y":0.25},{"x":1567437120000,"y":0.19},{"x":1567437180000,"y":0.2},{"x":1567437240000,"y":0.18},{"x":1567437300000,"y":0.31},{"x":1567437360000,"y":0.37},{"x":1567437420000,"y":0.17},{"x":1567437480000,"y":0.16},{"x":1567437540000,"y":0.15},{"x":1567437600000,"y":0.27},{"x":1567437660000,"y":0.3},{"x":1567437720000,"y":0.13},{"x":1567437780000,"y":0.17},{"x":1567437840000,"y":0.24},{"x":1567437900000,"y":0.28},{"x":1567437960000,"y":0.26},{"x":1567438020000,"y":0.11},{"x":1567438080000,"y":0.19},{"x":1567438140000,"y":0.14},{"x":1567438200000,"y":0.41},{"x":1567438260000,"y":0.35},{"x":1567438320000,"y":0.2},{"x":1567438380000,"y":0.17},{"x":1567438440000,"y":0.16},{"x":1567438500000,"y":0.39},{"x":1567438560000,"y":0.32},{"x":1567438620000,"y":0.17},{"x":1567438680000,"y":0.2},{"x":1567438740000,"y":0.33},{"x":1567438800000,"y":0.32},{"x":1567438860000,"y":0.31},{"x":1567438920000,"y":0.14},{"x":1567438980000,"y":0.13},{"x":1567439040000,"y":0.17},{"x":1567439100000,"y":0.29},{"x":1567439160000,"y":0.35},{"x":1567439220000,"y":0.25},{"x":1567439280000,"y":0.24},{"x":1567439340000,"y":0.16},{"x":1567439400000,"y":0.26},{"x":1567439460000,"y":0.15},{"x":1567439520000,"y":0.38},{"x":1567439580000,"y":0.16},{"x":1567439640000,"y":0.18},{"x":1567439700000,"y":0.2},{"x":1567439760000,"y":0.2},{"x":1567439820000,"y":0.32},{"x":1567439880000,"y":0.15},{"x":1567439940000,"y":0.16},{"x":1567440000000,"y":0.38},{"x":1567440060000,"y":0.15},{"x":1567440120000,"y":0.32},{"x":1567440180000,"y":0.21},{"x":1567440240000,"y":0.33},{"x":1567440300000,"y":0.34},{"x":1567440360000,"y":0.12},{"x":1567440420000,"y":0.36},{"x":1567440480000,"y":0.22},{"x":1567440540000,"y":0.53},{"x":1567440600000,"y":0.4},{"x":1567440660000,"y":0.22},{"x":1567440720000,"y":0.29},{"x":1567440780000,"y":0.18},{"x":1567440840000,"y":0.23},{"x":1567440900000,"y":0.38},{"x":1567440960000,"y":0.2},{"x":1567441020000,"y":0.15},{"x":1567441080000,"y":0.31},{"x":1567441140000,"y":0.15},{"x":1567441200000,"y":0.28},{"x":1567441260000,"y":0.22},{"x":1567441320000,"y":0.17},{"x":1567441380000,"y":0.29},{"x":1567441440000,"y":0.18},{"x":1567441500000,"y":0.32},{"x":1567441560000,"y":0.18},{"x":1567441620000,"y":0.15},{"x":1567441680000,"y":0.4},{"x":1567441740000,"y":0.2},{"x":1567441800000,"y":0.46},{"x":1567441860000,"y":0.19},{"x":1567441920000,"y":0.21},{"x":1567441980000,"y":0.38},{"x":1567442040000,"y":0.15},{"x":1567442100000,"y":0.42},{"x":1567442160000,"y":0.16},{"x":1567442220000,"y":0.21},{"x":1567442280000,"y":0.3},{"x":1567442340000,"y":0.44},{"x":1567442400000,"y":0.56},{"x":1567442460000,"y":0.26},{"x":1567442520000,"y":0.26},{"x":1567442580000,"y":0.46},{"x":1567442640000,"y":0.25},{"x":1567442700000,"y":0.34},{"x":1567442760000,"y":0.2},{"x":1567442820000,"y":0.31},{"x":1567442880000,"y":0.53},{"x":1567442940000,"y":0.31},{"x":1567443000000,"y":0.39},{"x":1567443060000,"y":0.28},{"x":1567443120000,"y":0.19},{"x":1567443180000,"y":0.3},{"x":1567443240000,"y":0.33},{"x":1567443300000,"y":0.43},{"x":1567443360000,"y":0.22},{"x":1567443420000,"y":0.19},{"x":1567443480000,"y":0.25},{"x":1567443540000,"y":0.36},{"x":1567443600000,"y":0.33},{"x":1567443660000,"y":0.15},{"x":1567443720000,"y":0.17},{"x":1567443780000,"y":0.17},{"x":1567443840000,"y":0.37},{"x":1567443900000,"y":0.34},{"x":1567443960000,"y":0.13},{"x":1567444020000,"y":0.17},{"x":1567444080000,"y":0.1},{"x":1567444140000,"y":5.73},{"x":1567444200000,"y":0.41},{"x":1567444260000,"y":0.13},{"x":1567444320000,"y":0.12},{"x":1567444380000,"y":0.17},{"x":1567444440000,"y":0.42},{"x":1567444500000,"y":0.32},{"x":1567444560000,"y":0.22},{"x":1567444620000,"y":0.23},{"x":1567444680000,"y":0.7},{"x":1567444740000,"y":0.28},{"x":1567444800000,"y":0.32},{"x":1567444860000,"y":0.2},{"x":1567444920000,"y":2.57},{"x":1567444980000,"y":0.24},{"x":1567445040000,"y":0.29},{"x":1567445100000,"y":0.36},{"x":1567445160000,"y":0.22},{"x":1567445220000,"y":0.25},{"x":1567445280000,"y":0.15},{"x":1567445340000,"y":0.26},{"x":1567445400000,"y":0.28},{"x":1567445460000,"y":0.17},{"x":1567445520000,"y":0.24},{"x":1567445580000,"y":0.14},{"x":1567445640000,"y":0.32},{"x":1567445700000,"y":0.23},{"x":1567445760000,"y":0.18},{"x":1567445820000,"y":0.27},{"x":1567445880000,"y":0.17},{"x":1567445940000,"y":0.46},{"x":1567446000000,"y":0.52},{"x":1567446060000,"y":0.23},{"x":1567446120000,"y":0.19},{"x":1567446180000,"y":0.15},{"x":1567446240000,"y":0.17},{"x":1567446300000,"y":0.48},{"x":1567446360000,"y":0.18},{"x":1567446420000,"y":0.26},{"x":1567446480000,"y":0.3},{"x":1567446540000,"y":0.22},{"x":1567446600000,"y":0.63},{"x":1567446660000,"y":0.21},{"x":1567446720000,"y":0.22},{"x":1567446780000,"y":0.19},{"x":1567446840000,"y":0.21},{"x":1567446900000,"y":0.54},{"x":1567446960000,"y":0.19},{"x":1567447020000,"y":0.2},{"x":1567447080000,"y":0.15},{"x":1567447140000,"y":0.12},{"x":1567447200000,"y":0.76},{"x":1567447260000,"y":0.22},{"x":1567447320000,"y":0.17},{"x":1567447380000,"y":0.2},{"x":1567447440000,"y":0.19},{"x":1567447500000,"y":0.53},{"x":1567447560000,"y":0.21},{"x":1567447620000,"y":0.2},{"x":1567447680000,"y":0.16},{"x":1567447740000,"y":0.27},{"x":1567447800000,"y":0.46},{"x":1567447860000,"y":0.15},{"x":1567447920000,"y":0.19},{"x":1567447980000,"y":0.14},{"x":1567448040000,"y":0.16},{"x":1567448100000,"y":0.43},{"x":1567448160000,"y":0.22},{"x":1567448220000,"y":0.17},{"x":1567448280000,"y":0.14},{"x":1567448340000,"y":0.12},{"x":1567448400000,"y":0.33},{"x":1567448460000,"y":0.29},{"x":1567448520000,"y":0.26},{"x":1567448580000,"y":1.76},{"x":1567448640000,"y":6.88},{"x":1567448700000,"y":3},{"x":1567448760000,"y":0.31},{"x":1567448820000,"y":0.18},{"x":1567448880000,"y":0.24},{"x":1567448940000,"y":0.2},{"x":1567449000000,"y":0.34},{"x":1567449060000,"y":0.28},{"x":1567449120000,"y":0.17},{"x":1567449180000,"y":0.21},{"x":1567449240000,"y":0.17},{"x":1567449300000,"y":0.24},{"x":1567449360000,"y":0.34},{"x":1567449420000,"y":0.15},{"x":1567449480000,"y":0.13},{"x":1567449540000,"y":0.38},{"x":1567449600000,"y":0.36},{"x":1567449660000,"y":0.35},{"x":1567449720000,"y":0.18},{"x":1567449780000,"y":0.23},{"x":1567449840000,"y":0.14},{"x":1567449900000,"y":0.32},{"x":1567449960000,"y":0.33},{"x":1567450020000,"y":0.31},{"x":1567450080000,"y":0.23},{"x":1567450140000,"y":0.22},{"x":1567450200000,"y":0.33},{"x":1567450260000,"y":0.4},{"x":1567450320000,"y":0.22},{"x":1567450380000,"y":0.12},{"x":1567450440000,"y":0.14},{"x":1567450500000,"y":0.27},{"x":1567450560000,"y":0.3},{"x":1567450620000,"y":0.18},{"x":1567450680000,"y":0.17},{"x":1567450740000,"y":0.21},{"x":1567450800000,"y":0.52},{"x":1567450860000,"y":0.2},{"x":1567450920000,"y":0.3},{"x":1567450980000,"y":0.15},{"x":1567451040000,"y":0.23},{"x":1567451100000,"y":0.36},{"x":1567451160000,"y":0.21},{"x":1567451220000,"y":0.38},{"x":1567451280000,"y":0.32},{"x":1567451340000,"y":0.57},{"x":1567451400000,"y":0.5},{"x":1567451460000,"y":0.24},{"x":1567451520000,"y":0.35},{"x":1567451580000,"y":0.19},{"x":1567451640000,"y":0.21},{"x":1567451700000,"y":0.43},{"x":1567451760000,"y":0.23},{"x":1567451820000,"y":0.36},{"x":1567451880000,"y":0.2},{"x":1567451940000,"y":0.23},{"x":1567452000000,"y":0.42},{"x":1567452060000,"y":0.21},{"x":1567452120000,"y":0.37},{"x":1567452180000,"y":0.22},{"x":1567452240000,"y":0.24},{"x":1567452300000,"y":0.31},{"x":1567452360000,"y":0.27},{"x":1567452420000,"y":0.41},{"x":1567452480000,"y":0.25},{"x":1567452540000,"y":0.29},{"x":1567452600000,"y":0.36},{"x":1567452660000,"y":0.29},{"x":1567452720000,"y":0.4},{"x":1567452780000,"y":0.25},{"x":1567452840000,"y":0.2},{"x":1567452900000,"y":0.42},{"x":1567452960000,"y":0.27},{"x":1567453020000,"y":0.4},{"x":1567453080000,"y":0.29},{"x":1567453140000,"y":0.46},{"x":1567453200000,"y":0.4},{"x":1567453260000,"y":0.24},{"x":1567453320000,"y":0.33},{"x":1567453380000,"y":0.42},{"x":1567453440000,"y":0.23},{"x":1567453500000,"y":0.45},{"x":1567453560000,"y":0.2},{"x":1567453620000,"y":0.31},{"x":1567453680000,"y":0.46},{"x":1567453740000,"y":0.31},{"x":1567453800000,"y":0.41},{"x":1567453860000,"y":0.21},{"x":1567453920000,"y":0.28},{"x":1567453980000,"y":0.33},{"x":1567454040000,"y":0.22},{"x":1567454100000,"y":0.34},{"x":1567454160000,"y":0.24},{"x":1567454220000,"y":0.25},{"x":1567454280000,"y":0.38},{"x":1567454340000,"y":0.22},{"x":1567454400000,"y":0.53},{"x":1567454460000,"y":0.27},{"x":1567454520000,"y":0.28},{"x":1567454580000,"y":0.34},{"x":1567454640000,"y":0.25},{"x":1567454700000,"y":0.38},{"x":1567454760000,"y":0.31},{"x":1567454820000,"y":0.22},{"x":1567454880000,"y":0.36},{"x":1567454940000,"y":0.38},{"x":1567455000000,"y":0.46},{"x":1567455060000,"y":0.23},{"x":1567455120000,"y":0.28},{"x":1567455180000,"y":0.47},{"x":1567455240000,"y":0.39},{"x":1567455300000,"y":0.52},{"x":1567455360000,"y":0.34},{"x":1567455420000,"y":0.38},{"x":1567455480000,"y":0.36},{"x":1567455540000,"y":0.44},{"x":1567455600000,"y":0.36},{"x":1567455660000,"y":0.23},{"x":1567455720000,"y":0.28},{"x":1567455780000,"y":0.29},{"x":1567455840000,"y":1.11},{"x":1567455900000,"y":0.4},{"x":1567455960000,"y":0.2},{"x":1567456020000,"y":0.22},{"x":1567456080000,"y":0.23},{"x":1567456140000,"y":0.33},{"x":1567456200000,"y":0.42},{"x":1567456260000,"y":0.2},{"x":1567456320000,"y":0.24},{"x":1567456380000,"y":0.24},{"x":1567456440000,"y":0.41},{"x":1567456500000,"y":0.42},{"x":1567456560000,"y":0.18},{"x":1567456620000,"y":0.2},{"x":1567456680000,"y":0.19},{"x":1567456740000,"y":0.5},{"x":1567456800000,"y":0.31},{"x":1567456860000,"y":0.2},{"x":1567456920000,"y":0.18},{"x":1567456980000,"y":0.22},{"x":1567457040000,"y":0.33},{"x":1567457100000,"y":0.31},{"x":1567457160000,"y":0.21},{"x":1567457220000,"y":0.22},{"x":1567457280000,"y":0.25},{"x":1567457340000,"y":0.38},{"x":1567457400000,"y":0.38},{"x":1567457460000,"y":0.21},{"x":1567457520000,"y":0.22},{"x":1567457580000,"y":0.21},{"x":1567457640000,"y":0.4},{"x":1567457700000,"y":0.34},{"x":1567457760000,"y":0.19},{"x":1567457820000,"y":0.21},{"x":1567457880000,"y":0.23},{"x":1567457940000,"y":0.26},{"x":1567458000000,"y":0.92},{"x":1567458060000,"y":0.45},{"x":1567458120000,"y":0.27},{"x":1567458180000,"y":0.22},{"x":1567458240000,"y":0.29},{"x":1567458300000,"y":0.63},{"x":1567458360000,"y":0.24},{"x":1567458420000,"y":0.26},{"x":1567458480000,"y":0.41},{"x":1567458540000,"y":0.45},{"x":1567458600000,"y":0.52},{"x":1567458660000,"y":0.2},{"x":1567458720000,"y":0.24},{"x":1567458780000,"y":0.25},{"x":1567458840000,"y":0.2},{"x":1567458900000,"y":0.44},{"x":1567458960000,"y":0.25},{"x":1567459020000,"y":0.22},{"x":1567459080000,"y":0.24},{"x":1567459140000,"y":0.23},{"x":1567459200000,"y":0.43},{"x":1567459260000,"y":0.24},{"x":1567459320000,"y":0.2},{"x":1567459380000,"y":0.24},{"x":1567459440000,"y":0.68},{"x":1567459500000,"y":0.56},{"x":1567459560000,"y":0.21},{"x":1567459620000,"y":0.22},{"x":1567459680000,"y":0.23},{"x":1567459740000,"y":0.33},{"x":1567459800000,"y":0.58},{"x":1567459860000,"y":0.22},{"x":1567459920000,"y":0.27},{"x":1567459980000,"y":0.25},{"x":1567460040000,"y":0.19},{"x":1567460100000,"y":0.49},{"x":1567460160000,"y":0.19},{"x":1567460220000,"y":0.2},{"x":1567460280000,"y":0.2},{"x":1567460340000,"y":0.55},{"x":1567460400000,"y":0.53},{"x":1567460460000,"y":0.39},{"x":1567460520000,"y":0.25},{"x":1567460580000,"y":0.23},{"x":1567460640000,"y":0.34},{"x":1567460700000,"y":0.46},{"x":1567460760000,"y":0.44},{"x":1567460820000,"y":0.27},{"x":1567460880000,"y":0.24},{"x":1567460940000,"y":0.23},{"x":1567461000000,"y":0.38},{"x":1567461060000,"y":0.38},{"x":1567461120000,"y":0.23},{"x":1567461180000,"y":0.26},{"x":1567461240000,"y":0.22},{"x":1567461300000,"y":0.36},{"x":1567461360000,"y":0.36},{"x":1567461420000,"y":0.23},{"x":1567461480000,"y":0.28},{"x":1567461540000,"y":0.22},{"x":1567461600000,"y":0.51},{"x":1567461660000,"y":0.42},{"x":1567461720000,"y":0.24},{"x":1567461780000,"y":0.19},{"x":1567461840000,"y":0.3},{"x":1567461900000,"y":0.4},{"x":1567461960000,"y":0.34},{"x":1567462020000,"y":0.19},{"x":1567462080000,"y":0.21},{"x":1567462140000,"y":0.49},{"x":1567462200000,"y":0.45},{"x":1567462260000,"y":0.31},{"x":1567462320000,"y":1.46},{"x":1567462380000,"y":0.29},{"x":1567462440000,"y":0.21},{"x":1567462500000,"y":0.35},{"x":1567462560000,"y":0.26},{"x":1567462620000,"y":0.19},{"x":1567462680000,"y":0.17},{"x":1567462740000,"y":0.13},{"x":1567462800000,"y":0.3},{"x":1567462860000,"y":0.48},{"x":1567462920000,"y":0.36},{"x":1567462980000,"y":0.13},{"x":1567463040000,"y":0.19},{"x":1567463100000,"y":0.91},{"x":1567463160000,"y":0.16},{"x":1567463220000,"y":0.31},{"x":1567463280000,"y":0.22},{"x":1567463340000,"y":0.31},{"x":1567463400000,"y":0.44},{"x":1567463460000,"y":0.29},{"x":1567463520000,"y":0.34},{"x":1567463580000,"y":0.2},{"x":1567463640000,"y":0.17},{"x":1567463700000,"y":0.39},{"x":1567463760000,"y":0.14},{"x":1567463820000,"y":0.32},{"x":1567463880000,"y":0.15},{"x":1567463940000,"y":0.38},{"x":1567464000000,"y":0.43},{"x":1567464060000,"y":0.2},{"x":1567464120000,"y":0.35},{"x":1567464180000,"y":0.16},{"x":1567464240000,"y":0.18},{"x":1567464300000,"y":0.39},{"x":1567464360000,"y":0.17},{"x":1567464420000,"y":0.35},{"x":1567464480000,"y":0.21},{"x":1567464540000,"y":0.29},{"x":1567464600000,"y":0.32},{"x":1567464660000,"y":0.11},{"x":1567464720000,"y":0.28},{"x":1567464780000,"y":0.19},{"x":1567464840000,"y":0.19},{"x":1567464900000,"y":0.32},{"x":1567464960000,"y":0.2},{"x":1567465020000,"y":0.32},{"x":1567465080000,"y":0.27},{"x":1567465140000,"y":0.17},{"x":1567465200000,"y":0.48},{"x":1567465260000,"y":0.19},{"x":1567465320000,"y":0.22},{"x":1567465380000,"y":0.38},{"x":1567465440000,"y":0.24},{"x":1567465500000,"y":0.37},{"x":1567465560000,"y":0.18},{"x":1567465620000,"y":0.24},{"x":1567465680000,"y":0.38},{"x":1567465740000,"y":0.32},{"x":1567465800000,"y":0.31},{"x":1567465860000,"y":0.23},{"x":1567465920000,"y":0.25},{"x":1567465980000,"y":3.92},{"x":1567466040000,"y":0.17},{"x":1567466100000,"y":0.39},{"x":1567466160000,"y":0.17},{"x":1567466220000,"y":0.16},{"x":1567466280000,"y":0.3},{"x":1567466340000,"y":0.14},{"x":1567466400000,"y":0.36},{"x":1567466460000,"y":0.12},{"x":1567466520000,"y":0.12},{"x":1567466580000,"y":0.27},{"x":1567466640000,"y":0.11},{"x":1567466700000,"y":0.22},{"x":1567466760000,"y":0.15},{"x":1567466820000,"y":0.14},{"x":1567466880000,"y":0.26},{"x":1567466940000,"y":0.18},{"x":1567467000000,"y":0.29},{"x":1567467060000,"y":0.1},{"x":1567467120000,"y":0.13},{"x":1567467180000,"y":0.2},{"x":1567467240000,"y":0.26},{"x":1567467300000,"y":0.2},{"x":1567467360000,"y":0.16},{"x":1567467420000,"y":0.1},{"x":1567467480000,"y":0.2},{"x":1567467540000,"y":0.38},{"x":1567467600000,"y":0.26},{"x":1567467660000,"y":0.17},{"x":1567467720000,"y":0.24},{"x":1567467780000,"y":0.15},{"x":1567467840000,"y":0.26},{"x":1567467900000,"y":0.23},{"x":1567467960000,"y":0.17},{"x":1567468020000,"y":0.24},{"x":1567468080000,"y":0.19},{"x":1567468140000,"y":0.33},{"x":1567468200000,"y":0.31},{"x":1567468260000,"y":0.15},{"x":1567468320000,"y":0.15},{"x":1567468380000,"y":0.14},{"x":1567468440000,"y":0.29},{"x":1567468500000,"y":0.33},{"x":1567468560000,"y":0.16},{"x":1567468620000,"y":0.14},{"x":1567468680000,"y":0.21},{"x":1567468740000,"y":0.29},{"x":1567468800000,"y":0.63},{"x":1567468860000,"y":0.2},{"x":1567468920000,"y":0.15},{"x":1567468980000,"y":0.22},{"x":1567469040000,"y":0.41},{"x":1567469100000,"y":0.28},{"x":1567469160000,"y":0.13},{"x":1567469220000,"y":0.13},{"x":1567469280000,"y":0.12},{"x":1567469340000,"y":0.39},{"x":1567469400000,"y":0.3},{"x":1567469460000,"y":0.16},{"x":1567469520000,"y":0.23},{"x":1567469580000,"y":0.33},{"x":1567469640000,"y":0.37},{"x":1567469700000,"y":0.79},{"x":1567469760000,"y":0.27},{"x":1567469820000,"y":0.22},{"x":1567469880000,"y":0.22},{"x":1567469940000,"y":0.14},{"x":1567470000000,"y":0.51},{"x":1567470060000,"y":0.24},{"x":1567470120000,"y":0.27},{"x":1567470180000,"y":0.25},{"x":1567470240000,"y":0.14},{"x":1567470300000,"y":0.46},{"x":1567470360000,"y":0.12},{"x":1567470420000,"y":0.12},{"x":1567470480000,"y":0.18},{"x":1567470540000,"y":0.15},{"x":1567470600000,"y":0.47},{"x":1567470660000,"y":0.13},{"x":1567470720000,"y":0.16},{"x":1567470780000,"y":0.13},{"x":1567470840000,"y":0.22},{"x":1567470900000,"y":0.66},{"x":1567470960000,"y":0.22},{"x":1567471020000,"y":0.17},{"x":1567471080000,"y":0.17},{"x":1567471140000,"y":0.33},{"x":1567471200000,"y":0.42},{"x":1567471260000,"y":0.17},{"x":1567471320000,"y":0.17},{"x":1567471380000,"y":0.55},{"x":1567471440000,"y":0.22},{"x":1567471500000,"y":0.49},{"x":1567471560000,"y":0.22},{"x":1567471620000,"y":0.22},{"x":1567471680000,"y":0.22},{"x":1567471740000,"y":0.2},{"x":1567471800000,"y":0.5},{"x":1567471860000,"y":0.21},{"x":1567471920000,"y":0.23},{"x":1567471980000,"y":0.2},{"x":1567472040000,"y":0.19},{"x":1567472100000,"y":0.28},{"x":1567472160000,"y":0.36},{"x":1567472220000,"y":0.15},{"x":1567472280000,"y":0.18},{"x":1567472340000,"y":0.17},{"x":1567472400000,"y":0.56},{"x":1567472460000,"y":0.34},{"x":1567472520000,"y":0.19},{"x":1567472580000,"y":0.16},{"x":1567472640000,"y":0.24},{"x":1567472700000,"y":0.37},{"x":1567472760000,"y":0.32},{"x":1567472820000,"y":0.17},{"x":1567472880000,"y":0.29},{"x":1567472940000,"y":0.24},{"x":1567473000000,"y":0.4},{"x":1567473060000,"y":0.4},{"x":1567473120000,"y":0.24},{"x":1567473180000,"y":0.17},{"x":1567473240000,"y":0.57},{"x":1567473300000,"y":0.3},{"x":1567473360000,"y":0.46},{"x":1567473420000,"y":0.21},{"x":1567473480000,"y":0.29},{"x":1567473540000,"y":0.23},{"x":1567473600000,"y":0.3},{"x":1567473660000,"y":0.33},{"x":1567473720000,"y":0.12},{"x":1567473780000,"y":0.12},{"x":1567473840000,"y":0.23},{"x":1567473900000,"y":0.34},{"x":1567473960000,"y":0.34},{"x":1567474020000,"y":0.12},{"x":1567474080000,"y":0.19},{"x":1567474140000,"y":0.14},{"x":1567474200000,"y":0.34},{"x":1567474260000,"y":0.25},{"x":1567474320000,"y":0.54},{"x":1567474380000,"y":0.14},{"x":1567474440000,"y":0.16},{"x":1567474500000,"y":0.34},{"x":1567474560000,"y":0.32},{"x":1567474620000,"y":0.21},{"x":1567474680000,"y":0.15},{"x":1567474740000,"y":0.34},{"x":1567474800000,"y":0.36},{"x":1567474860000,"y":0.12},{"x":1567474920000,"y":0.33},{"x":1567474980000,"y":0.22},{"x":1567475040000,"y":0.15},{"x":1567475100000,"y":0.3},{"x":1567475160000,"y":0.19},{"x":1567475220000,"y":0.32},{"x":1567475280000,"y":0.2},{"x":1567475340000,"y":0.18},{"x":1567475400000,"y":0.36},{"x":1567475460000,"y":0.2},{"x":1567475520000,"y":0.29},{"x":1567475580000,"y":0.15},{"x":1567475640000,"y":0.17},{"x":1567475700000,"y":0.28},{"x":1567475760000,"y":0.14},{"x":1567475820000,"y":0.3},{"x":1567475880000,"y":0.1},{"x":1567475940000,"y":0.11},{"x":1567476000000,"y":0.36},{"x":1567476060000,"y":0.18},{"x":1567476120000,"y":0.3},{"x":1567476180000,"y":0.25},{"x":1567476240000,"y":0.21},{"x":1567476300000,"y":0.22},{"x":1567476360000,"y":0.15},{"x":1567476420000,"y":0.46},{"x":1567476480000,"y":0.14},{"x":1567476540000,"y":0.36},{"x":1567476600000,"y":0.25},{"x":1567476660000,"y":0.1},{"x":1567476720000,"y":0.27},{"x":1567476780000,"y":0.21},{"x":1567476840000,"y":1},{"x":1567476900000,"y":0.32},{"x":1567476960000,"y":0.17},{"x":1567477020000,"y":0.28},{"x":1567477080000,"y":0.17},{"x":1567477140000,"y":0.2},{"x":1567477200000,"y":0.26},{"x":1567477260000,"y":0.24},{"x":1567477320000,"y":0.13},{"x":1567477380000,"y":0.29},{"x":1567477440000,"y":0.22},{"x":1567477500000,"y":0.3},{"x":1567477560000,"y":0.14},{"x":1567477620000,"y":0.12},{"x":1567477680000,"y":0.28},{"x":1567477740000,"y":0.15},{"x":1567477800000,"y":0.35},{"x":1567477860000,"y":0.14},{"x":1567477920000,"y":0.22},{"x":1567477980000,"y":0.34},{"x":1567478040000,"y":0.2},{"x":1567478100000,"y":0.24},{"x":1567478160000,"y":0.2},{"x":1567478220000,"y":0.13},{"x":1567478280000,"y":0.29},{"x":1567478340000,"y":0.25},{"x":1567478400000,"y":0.25},{"x":1567478460000,"y":0.2},{"x":1567478520000,"y":0.19},{"x":1567478580000,"y":0.27},{"x":1567478640000,"y":0.15},{"x":1567478700000,"y":0.29},{"x":1567478760000,"y":0.17},{"x":1567478820000,"y":0.2},{"x":1567478880000,"y":0.35},{"x":1567478940000,"y":0.14},{"x":1567479000000,"y":0.3},{"x":1567479060000,"y":0.18},{"x":1567479120000,"y":0.17},{"x":1567479180000,"y":0.27},{"x":1567479240000,"y":0.15},{"x":1567479300000,"y":0.32},{"x":1567479360000,"y":0.16},{"x":1567479420000,"y":0.12},{"x":1567479480000,"y":0.17},{"x":1567479540000,"y":0.3},{"x":1567479600000,"y":0.59},{"x":1567479660000,"y":0.29},{"x":1567479720000,"y":0.29},{"x":1567479780000,"y":0.16},{"x":1567479840000,"y":0.33},{"x":1567479900000,"y":0.34},{"x":1567479960000,"y":0.2},{"x":1567480020000,"y":0.17},{"x":1567480080000,"y":0.13},{"x":1567480140000,"y":0.51},{"x":1567480200000,"y":0.26},{"x":1567480260000,"y":0.13},{"x":1567480320000,"y":0.15},{"x":1567480380000,"y":0.2},{"x":1567480440000,"y":0.29},{"x":1567480500000,"y":0.31},{"x":1567480560000,"y":0.17},{"x":1567480620000,"y":0.13},{"x":1567480680000,"y":0.15},{"x":1567480740000,"y":0.25},{"x":1567480800000,"y":0.33},{"x":1567480860000,"y":0.13},{"x":1567480920000,"y":0.11},{"x":1567480980000,"y":0.09},{"x":1567481040000,"y":0.28},{"x":1567481100000,"y":0.23},{"x":1567481160000,"y":0.12},{"x":1567481220000,"y":0.12},{"x":1567481280000,"y":0.19},{"x":1567481340000,"y":0.24},{"x":1567481400000,"y":0.32},{"x":1567481460000,"y":0.15},{"x":1567481520000,"y":0.14},{"x":1567481580000,"y":0.17},{"x":1567481640000,"y":0.26},{"x":1567481700000,"y":0.29},{"x":1567481760000,"y":0.11},{"x":1567481820000,"y":0.11},{"x":1567481880000,"y":0.18},{"x":1567481940000,"y":0.33},{"x":1567482000000,"y":0.55},{"x":1567482060000,"y":0.18},{"x":1567482120000,"y":0.17},{"x":1567482180000,"y":0.14},{"x":1567482240000,"y":0.11},{"x":1567482300000,"y":0.34},{"x":1567482360000,"y":0.16},{"x":1567482420000,"y":0.15},{"x":1567482480000,"y":0.17},{"x":1567482540000,"y":0.19},{"x":1567482600000,"y":0.4},{"x":1567482660000,"y":0.17},{"x":1567482720000,"y":0.13},{"x":1567482780000,"y":0.12},{"x":1567482840000,"y":0.08},{"x":1567482900000,"y":0.33},{"x":1567482960000,"y":0.13},{"x":1567483020000,"y":0.11},{"x":1567483080000,"y":0.13},{"x":1567483140000,"y":0.11},{"x":1567483200000,"y":0.58},{"x":1567483260000,"y":0.18},{"x":1567483320000,"y":0.15},{"x":1567483380000,"y":0.2},{"x":1567483440000,"y":0.17},{"x":1567483500000,"y":0.41},{"x":1567483560000,"y":0.14},{"x":1567483620000,"y":0.17},{"x":1567483680000,"y":0.16},{"x":1567483740000,"y":0.38},{"x":1567483800000,"y":0.46},{"x":1567483860000,"y":0.17},{"x":1567483920000,"y":0.19},{"x":1567483980000,"y":0.24},{"x":1567484040000,"y":0.24},{"x":1567484100000,"y":0.35},{"x":1567484160000,"y":1.23},{"x":1567484220000,"y":0.18},{"x":1567484280000,"y":0.13},{"x":1567484340000,"y":0.13},{"x":1567484400000,"y":0.29},{"x":1567484460000,"y":0.38},{"x":1567484520000,"y":0.24},{"x":1567484580000,"y":0.24},{"x":1567484640000,"y":0.19},{"x":1567484700000,"y":0.28},{"x":1567484760000,"y":0.26},{"x":1567484820000,"y":0.2},{"x":1567484880000,"y":0.14},{"x":1567484940000,"y":0.2},{"x":1567485000000,"y":0.25},{"x":1567485060000,"y":0.3},{"x":1567485120000,"y":0.16},{"x":1567485180000,"y":0.2},{"x":1567485240000,"y":0.21},{"x":1567485300000,"y":0.36},{"x":1567485360000,"y":0.38},{"x":1567485420000,"y":0.19},{"x":1567485480000,"y":0.15},{"x":1567485540000,"y":0.3},{"x":1567485600000,"y":0.26},{"x":1567485660000,"y":0.34},{"x":1567485720000,"y":0.24},{"x":1567485780000,"y":0.26},{"x":1567485840000,"y":0.22},{"x":1567485900000,"y":0.45},{"x":1567485960000,"y":0.41},{"x":1567486020000,"y":0.27},{"x":1567486080000,"y":0.29},{"x":1567486140000,"y":0.22},{"x":1567486200000,"y":0.51},{"x":1567486260000,"y":0.38},{"x":1567486320000,"y":0.25},{"x":1567486380000,"y":0.32},{"x":1567486440000,"y":0.23},{"x":1567486500000,"y":0.41},{"x":1567486560000,"y":0.3},{"x":1567486620000,"y":0.41},{"x":1567486680000,"y":0.27},{"x":1567486740000,"y":0.22},{"x":1567486800000,"y":1.33},{"x":1567486860000,"y":0.26},{"x":1567486920000,"y":0.41},{"x":1567486980000,"y":0.22},{"x":1567487040000,"y":0.24},{"x":1567487100000,"y":0.45},{"x":1567487160000,"y":0.21},{"x":1567487220000,"y":0.39},{"x":1567487280000,"y":0.23},{"x":1567487340000,"y":0.41},{"x":1567487400000,"y":0.33},{"x":1567487460000,"y":0.17},{"x":1567487520000,"y":0.35},{"x":1567487580000,"y":0.2},{"x":1567487640000,"y":0.18},{"x":1567487700000,"y":0.29},{"x":1567487760000,"y":0.22},{"x":1567487820000,"y":5.06},{"x":1567487880000,"y":0.39},{"x":1567487940000,"y":0.22},{"x":1567488000000,"y":0.4},{"x":1567488060000,"y":0.29},{"x":1567488120000,"y":0.35},{"x":1567488180000,"y":0.2},{"x":1567488240000,"y":0.27},{"x":1567488300000,"y":0.4},{"x":1567488360000,"y":0.25},{"x":1567488420000,"y":0.37},{"x":1567488480000,"y":0.59},{"x":1567488540000,"y":0.22},{"x":1567488600000,"y":0.44},{"x":1567488660000,"y":0.26},{"x":1567488720000,"y":0.38},{"x":1567488780000,"y":0.26},{"x":1567488840000,"y":0.29},{"x":1567488900000,"y":0.27},{"x":1567488960000,"y":0.22},{"x":1567489020000,"y":0.33},{"x":1567489080000,"y":0.26},{"x":1567489140000,"y":0.28},{"x":1567489200000,"y":0.35},{"x":1567489260000,"y":0.23},{"x":1567489320000,"y":0.34},{"x":1567489380000,"y":0.36},{"x":1567489440000,"y":0.29},{"x":1567489500000,"y":0.47},{"x":1567489560000,"y":0.22},{"x":1567489620000,"y":0.26},{"x":1567489680000,"y":0.48},{"x":1567489740000,"y":0.24},{"x":1567489800000,"y":0.37},{"x":1567489860000,"y":0.21},{"x":1567489920000,"y":0.28},{"x":1567489980000,"y":0.32},{"x":1567490040000,"y":0.26},{"x":1567490100000,"y":0.42},{"x":1567490160000,"y":0.28},{"x":1567490220000,"y":0.2},{"x":1567490280000,"y":0.34},{"x":1567490340000,"y":0.25},{"x":1567490400000,"y":0.49},{"x":1567490460000,"y":0.38},{"x":1567490520000,"y":0.26},{"x":1567490580000,"y":0.37},{"x":1567490640000,"y":0.28},{"x":1567490700000,"y":0.39},{"x":1567490760000,"y":0.3},{"x":1567490820000,"y":0.21},{"x":1567490880000,"y":0.41},{"x":1567490940000,"y":0.39},{"x":1567491000000,"y":0.49},{"x":1567491060000,"y":0.25},{"x":1567491120000,"y":0.29},{"x":1567491180000,"y":0.59},{"x":1567491240000,"y":0.43},{"x":1567491300000,"y":0.39},{"x":1567491360000,"y":0.46},{"x":1567491420000,"y":0.55},{"x":1567491480000,"y":0.27},{"x":1567491540000,"y":0.46},{"x":1567491600000,"y":0.37},{"x":1567491660000,"y":0.29},{"x":1567491720000,"y":0.3},{"x":1567491780000,"y":0.34},{"x":1567491840000,"y":0.42},{"x":1567491900000,"y":0.65},{"x":1567491960000,"y":0.24},{"x":1567492020000,"y":0.3},{"x":1567492080000,"y":0.31},{"x":1567492140000,"y":0.59},{"x":1567492200000,"y":0.54},{"x":1567492260000,"y":0.25},{"x":1567492320000,"y":0.36},{"x":1567492380000,"y":0.32},{"x":1567492440000,"y":0.46},{"x":1567492500000,"y":0.39},{"x":1567492560000,"y":0.26},{"x":1567492620000,"y":0.29},{"x":1567492680000,"y":0.33},{"x":1567492740000,"y":0.6},{"x":1567492800000,"y":0.48},{"x":1567492860000,"y":0.28},{"x":1567492920000,"y":0.29},{"x":1567492980000,"y":0.26},{"x":1567493040000,"y":0.43},{"x":1567493100000,"y":0.3},{"x":1567493160000,"y":0.37},{"x":1567493220000,"y":0.27},{"x":1567493280000,"y":0.28},{"x":1567493340000,"y":0.44},{"x":1567493400000,"y":0.45},{"x":1567493460000,"y":0.23},{"x":1567493520000,"y":0.31},{"x":1567493580000,"y":0.29},{"x":1567493640000,"y":0.38},{"x":1567493700000,"y":0.35},{"x":1567493760000,"y":0.24},{"x":1567493820000,"y":0.22},{"x":1567493880000,"y":0.24},{"x":1567493940000,"y":0.26},{"x":1567494000000,"y":0.83},{"x":1567494060000,"y":0.23},{"x":1567494120000,"y":0.35},{"x":1567494180000,"y":0.28},{"x":1567494240000,"y":0.26},{"x":1567494300000,"y":0.51},{"x":1567494360000,"y":0.27},{"x":1567494420000,"y":0.31},{"x":1567494480000,"y":0.3},{"x":1567494540000,"y":0.43},{"x":1567494600000,"y":0.61},{"x":1567494660000,"y":0.31},{"x":1567494720000,"y":0.37},{"x":1567494780000,"y":0.27},{"x":1567494840000,"y":0.27},{"x":1567494900000,"y":0.62},{"x":1567494960000,"y":0.22},{"x":1567495020000,"y":0.22},{"x":1567495080000,"y":0.31},{"x":1567495140000,"y":0.27},{"x":1567495200000,"y":0.67},{"x":1567495260000,"y":0.32},{"x":1567495320000,"y":0.27},{"x":1567495380000,"y":0.29},{"x":1567495440000,"y":0.32},{"x":1567495500000,"y":0.56},{"x":1567495560000,"y":0.21},{"x":1567495620000,"y":0.11},{"x":1567495680000,"y":0.17},{"x":1567495740000,"y":0.16},{"x":1567495800000,"y":0.56},{"x":1567495860000,"y":0.2},{"x":1567495920000,"y":0.2},{"x":1567495980000,"y":0.17},{"x":1567496040000,"y":0.17},{"x":1567496100000,"y":0.36},{"x":1567496160000,"y":0.19},{"x":1567496220000,"y":0.22},{"x":1567496280000,"y":0.19},{"x":1567496340000,"y":0.45},{"x":1567496400000,"y":0.42},{"x":1567496460000,"y":0.43},{"x":1567496520000,"y":0.2},{"x":1567496580000,"y":0.2},{"x":1567496640000,"y":0.21},{"x":1567496700000,"y":0.29},{"x":1567496760000,"y":0.39},{"x":1567496820000,"y":0.27},{"x":1567496880000,"y":0.27},{"x":1567496940000,"y":0.18},{"x":1567497000000,"y":0.35},{"x":1567497060000,"y":0.38},{"x":1567497120000,"y":0.32},{"x":1567497180000,"y":0.15},{"x":1567497240000,"y":0.2},{"x":1567497300000,"y":0.33},{"x":1567497360000,"y":0.35},{"x":1567497420000,"y":0.18},{"x":1567497480000,"y":0.19},{"x":1567497540000,"y":0.16},{"x":1567497600000,"y":0.64},{"x":1567497660000,"y":0.39},{"x":1567497720000,"y":0.28},{"x":1567497780000,"y":0.17},{"x":1567497840000,"y":0.23},{"x":1567497900000,"y":0.27},{"x":1567497960000,"y":0.32},{"x":1567498020000,"y":0.16},{"x":1567498080000,"y":0.17},{"x":1567498140000,"y":0.5},{"x":1567498200000,"y":0.35},{"x":1567498260000,"y":0.34},{"x":1567498320000,"y":0.18},{"x":1567498380000,"y":0.27},{"x":1567498440000,"y":0.27},{"x":1567498500000,"y":0.44},{"x":1567498560000,"y":0.34},{"x":1567498620000,"y":0.41},{"x":1567498680000,"y":0.22},{"x":1567498740000,"y":0.29},{"x":1567498800000,"y":0.39},{"x":1567498860000,"y":0.2},{"x":1567498920000,"y":0.4},{"x":1567498980000,"y":0.21},{"x":1567499040000,"y":0.21},{"x":1567499100000,"y":0.34},{"x":1567499160000,"y":0.21},{"x":1567499220000,"y":0.33},{"x":1567499280000,"y":0.24},{"x":1567499340000,"y":0.15},{"x":1567499400000,"y":0.57},{"x":1567499460000,"y":0.26},{"x":1567499520000,"y":0.38},{"x":1567499580000,"y":0.2},{"x":1567499640000,"y":0.21},{"x":1567499700000,"y":0.45},{"x":1567499760000,"y":0.4},{"x":1567499820000,"y":0.31},{"x":1567499880000,"y":0.19},{"x":1567499940000,"y":0.3},{"x":1567500000000,"y":0.36},{"x":1567500060000,"y":0.22},{"x":1567500120000,"y":0.37},{"x":1567500180000,"y":0.23},{"x":1567500240000,"y":0.19},{"x":1567500300000,"y":0.24},{"x":1567500360000,"y":0.14},{"x":1567500420000,"y":0.33},{"x":1567500480000,"y":0.24},{"x":1567500540000,"y":0.24},{"x":1567500600000,"y":0.37},{"x":1567500660000,"y":0.23},{"x":1567500720000,"y":0.32},{"x":1567500780000,"y":0.18},{"x":1567500840000,"y":0.2},{"x":1567500900000,"y":0.37},{"x":1567500960000,"y":0.24},{"x":1567501020000,"y":0.17},{"x":1567501080000,"y":0.39},{"x":1567501140000,"y":0.18},{"x":1567501200000,"y":0.72},{"x":1567501260000,"y":0.46},{"x":1567501320000,"y":0.29},{"x":1567501380000,"y":0.38},{"x":1567501440000,"y":0.25},{"x":1567501500000,"y":0.42},{"x":1567501560000,"y":0.15},{"x":1567501620000,"y":0.12},{"x":1567501680000,"y":0.39},{"x":1567501740000,"y":0.33},{"x":1567501800000,"y":0.26},{"x":1567501860000,"y":0.26},{"x":1567501920000,"y":0.22},{"x":1567501980000,"y":0.29},{"x":1567502040000,"y":0.26},{"x":1567502100000,"y":0.38},{"x":1567502160000,"y":0.22},{"x":1567502220000,"y":0.31},{"x":1567502280000,"y":0.31},{"x":1567502340000,"y":0.2},{"x":1567502400000,"y":0.32},{"x":1567502460000,"y":0.21},{"x":1567502520000,"y":0.19},{"x":1567502580000,"y":0.34},{"x":1567502640000,"y":0.15},{"x":1567502700000,"y":0.34},{"x":1567502760000,"y":0.17},{"x":1567502820000,"y":0.21},{"x":1567502880000,"y":0.42},{"x":1567502940000,"y":0.25},{"x":1567503000000,"y":0.64},{"x":1567503060000,"y":0.5},{"x":1567503120000,"y":0.23},{"x":1567503180000,"y":0.14},{"x":1567503240000,"y":0.37},{"x":1567503300000,"y":0.48},{"x":1567503360000,"y":0.17},{"x":1567503420000,"y":0.21},{"x":1567503480000,"y":0.28},{"x":1567503540000,"y":0.61},{"x":1567503600000,"y":0.53},{"x":1567503660000,"y":0.26},{"x":1567503720000,"y":0.25},{"x":1567503780000,"y":0.2},{"x":1567503840000,"y":0.44},{"x":1567503900000,"y":0.38},{"x":1567503960000,"y":0.23},{"x":1567504020000,"y":0.24},{"x":1567504080000,"y":0.28},{"x":1567504140000,"y":0.3},{"x":1567504200000,"y":0.33},{"x":1567504260000,"y":0.25},{"x":1567504320000,"y":0.22},{"x":1567504380000,"y":0.27},{"x":1567504440000,"y":0.46},{"x":1567504500000,"y":0.39},{"x":1567504560000,"y":0.21},{"x":1567504620000,"y":0.19},{"x":1567504680000,"y":0.2},{"x":1567504740000,"y":0.42},{"x":1567504800000,"y":0.49},{"x":1567504860000,"y":0.32},{"x":1567504920000,"y":0.25},{"x":1567504980000,"y":0.15},{"x":1567505040000,"y":0.33},{"x":1567505100000,"y":0.4},{"x":1567505160000,"y":0.22},{"x":1567505220000,"y":0.19},{"x":1567505280000,"y":0.3},{"x":1567505340000,"y":0.46},{"x":1567505400000,"y":0.7},{"x":1567505460000,"y":0.16},{"x":1567505520000,"y":0.22},{"x":1567505580000,"y":0.42},{"x":1567505640000,"y":0.33},{"x":1567505700000,"y":0.63},{"x":1567505760000,"y":0.27},{"x":1567505820000,"y":0.31},{"x":1567505880000,"y":0.26},{"x":1567505940000,"y":0.2},{"x":1567506000000,"y":0.52},{"x":1567506060000,"y":0.32},{"x":1567506120000,"y":0.21},{"x":1567506180000,"y":0.27},{"x":1567506240000,"y":0.35},{"x":1567506300000,"y":0.56},{"x":1567506360000,"y":0.23},{"x":1567506420000,"y":0.5},{"x":1567506480000,"y":0.33},{"x":1567506540000,"y":0.16},{"x":1567506600000,"y":0.52},{"x":1567506660000,"y":0.28},{"x":1567506720000,"y":0.26},{"x":1567506780000,"y":0.29},{"x":1567506840000,"y":0.2},{"x":1567506900000,"y":0.44},{"x":1567506960000,"y":0.22},{"x":1567507020000,"y":0.13},{"x":1567507080000,"y":0.26},{"x":1567507140000,"y":0.52},{"x":1567507200000,"y":0.59},{"x":1567507260000,"y":0.17},{"x":1567507320000,"y":0.21},{"x":1567507380000,"y":0.21},{"x":1567507440000,"y":0.23},{"x":1567507500000,"y":0.48},{"x":1567507560000,"y":0.26},{"x":1567507620000,"y":0.27},{"x":1567507680000,"y":0.26},{"x":1567507740000,"y":0.17},{"x":1567507800000,"y":0.58},{"x":1567507860000,"y":0.17},{"x":1567507920000,"y":0.14},{"x":1567507980000,"y":0.22},{"x":1567508040000,"y":0.19},{"x":1567508100000,"y":0.36},{"x":1567508160000,"y":0.37},{"x":1567508220000,"y":0.22},{"x":1567508280000,"y":0.16},{"x":1567508340000,"y":0.22},{"x":1567508400000,"y":0.58},{"x":1567508460000,"y":0.4},{"x":1567508520000,"y":0.21},{"x":1567508580000,"y":0.17},{"x":1567508640000,"y":0.18},{"x":1567508700000,"y":0.41},{"x":1567508760000,"y":0.42},{"x":1567508820000,"y":0.19},{"x":1567508880000,"y":0.2},{"x":1567508940000,"y":0.43},{"x":1567509000000,"y":0.35},{"x":1567509060000,"y":0.37},{"x":1567509120000,"y":0.21},{"x":1567509180000,"y":0.17},{"x":1567509240000,"y":0.2},{"x":1567509300000,"y":0.24},{"x":1567509360000,"y":0.32},{"x":1567509420000,"y":0.2},{"x":1567509480000,"y":0.17},{"x":1567509540000,"y":0.17},{"x":1567509600000,"y":0.22},{"x":1567509660000,"y":4.13},{"x":1567509720000,"y":0.28},{"x":1567509780000,"y":0.23},{"x":1567509840000,"y":0.21},{"x":1567509900000,"y":1.59},{"x":1567509960000,"y":0.48},{"x":1567510020000,"y":0.26},{"x":1567510080000,"y":0.19},{"x":1567510140000,"y":0.21},{"x":1567510200000,"y":0.35},{"x":1567510260000,"y":3.7},{"x":1567510320000,"y":0.92},{"x":1567510380000,"y":0.29},{"x":1567510440000,"y":0.3},{"x":1567510500000,"y":0.41},{"x":1567510560000,"y":0.26},{"x":1567510620000,"y":0.36},{"x":1567510680000,"y":0.2},{"x":1567510740000,"y":0.43},{"x":1567510800000,"y":0.41},{"x":1567510860000,"y":0.19},{"x":1567510920000,"y":0.39},{"x":1567510980000,"y":0.15},{"x":1567511040000,"y":0.26},{"x":1567511100000,"y":0.43},{"x":1567511160000,"y":0.22},{"x":1567511220000,"y":0.4},{"x":1567511280000,"y":0.34},{"x":1567511340000,"y":0.15},{"x":1567511400000,"y":0.4},{"x":1567511460000,"y":0.2},{"x":1567511520000,"y":0.47},{"x":1567511580000,"y":0.17},{"x":1567511640000,"y":0.2},{"x":1567511700000,"y":0.33},{"x":1567511760000,"y":0.2},{"x":1567511820000,"y":0.33},{"x":1567511880000,"y":0.15},{"x":1567511940000,"y":0.24},{"x":1567512000000,"y":0.6},{"x":1567512060000,"y":0.27},{"x":1567512120000,"y":0.3},{"x":1567512180000,"y":0.18},{"x":1567512240000,"y":0.18},{"x":1567512300000,"y":0.34},{"x":1567512360000,"y":0.2},{"x":1567512420000,"y":0.33},{"x":1567512480000,"y":0.31},{"x":1567512540000,"y":0.37},{"x":1567512600000,"y":0.32},{"x":1567512660000,"y":0.22},{"x":1567512720000,"y":0.25},{"x":1567512780000,"y":0.56},{"x":1567512840000,"y":0.38},{"x":1567512900000,"y":0.32},{"x":1567512960000,"y":0.27},{"x":1567513020000,"y":0.26},{"x":1567513080000,"y":0.39},{"x":1567513140000,"y":0.26},{"x":1567513200000,"y":0.29},{"x":1567513260000,"y":0.27},{"x":1567513320000,"y":0.3},{"x":1567513380000,"y":0.32},{"x":1567513440000,"y":0.29},{"x":1567513500000,"y":0.35},{"x":1567513560000,"y":0.21},{"x":1567513620000,"y":0.23},{"x":1567513680000,"y":0.35},{"x":1567513740000,"y":0.2},{"x":1567513800000,"y":0.34},{"x":1567513860000,"y":0.22},{"x":1567513920000,"y":0.32},{"x":1567513980000,"y":0.29},{"x":1567514040000,"y":0.22},{"x":1567514100000,"y":0.4},{"x":1567514160000,"y":0.26},{"x":1567514220000,"y":0.28},{"x":1567514280000,"y":0.36},{"x":1567514340000,"y":0.4},{"x":1567514400000,"y":0.49},{"x":1567514460000,"y":0.15},{"x":1567514520000,"y":0.17},{"x":1567514580000,"y":0.35},{"x":1567514640000,"y":0.25},{"x":1567514700000,"y":0.38},{"x":1567514760000,"y":0.25},{"x":1567514820000,"y":0.2},{"x":1567514880000,"y":0.35},{"x":1567514940000,"y":0.25},{"x":1567515000000,"y":0.38},{"x":1567515060000,"y":0.2},{"x":1567515120000,"y":0.2},{"x":1567515180000,"y":0.2},{"x":1567515240000,"y":0.33},{"x":1567515300000,"y":0.26},{"x":1567515360000,"y":0.21},{"x":1567515420000,"y":0.22},{"x":1567515480000,"y":0.17},{"x":1567515540000,"y":0.32},{"x":1567515600000,"y":0.49},{"x":1567515660000,"y":0.21},{"x":1567515720000,"y":0.18},{"x":1567515780000,"y":0.16},{"x":1567515840000,"y":0.32},{"x":1567515900000,"y":0.35},{"x":1567515960000,"y":0.17},{"x":1567516020000,"y":0.19},{"x":1567516080000,"y":0.22},{"x":1567516140000,"y":0.67},{"x":1567516200000,"y":0.31},{"x":1567516260000,"y":0.17},{"x":1567516320000,"y":0.2},{"x":1567516380000,"y":0.23},{"x":1567516440000,"y":0.36},{"x":1567516500000,"y":0.42},{"x":1567516560000,"y":0.25},{"x":1567516620000,"y":0.24},{"x":1567516680000,"y":0.32},{"x":1567516740000,"y":0.39},{"x":1567516800000,"y":1.77},{"x":1567516860000,"y":0.2},{"x":1567516920000,"y":0.2},{"x":1567516980000,"y":0.25},{"x":1567517040000,"y":0.2},{"x":1567517100000,"y":0.66},{"x":1567517160000,"y":0.2},{"x":1567517220000,"y":0.24},{"x":1567517280000,"y":0.29},{"x":1567517340000,"y":0.19},{"x":1567517400000,"y":0.52},{"x":1567517460000,"y":0.21},{"x":1567517520000,"y":0.37},{"x":1567517580000,"y":0.27},{"x":1567517640000,"y":0.29},{"x":1567517700000,"y":0.61},{"x":1567517760000,"y":0.24},{"x":1567517820000,"y":0.13},{"x":1567517880000,"y":0.17},{"x":1567517940000,"y":0.49},{"x":1567518000000,"y":0.66},{"x":1567518060000,"y":0.23},{"x":1567518120000,"y":0.3},{"x":1567518180000,"y":0.28},{"x":1567518240000,"y":0.27},{"x":1567518300000,"y":0.6},{"x":1567518360000,"y":0.27},{"x":1567518420000,"y":0.35},{"x":1567518480000,"y":0.31},{"x":1567518540000,"y":0.28},{"x":1567518600000,"y":0.54},{"x":1567518660000,"y":0.29},{"x":1567518720000,"y":0.22},{"x":1567518780000,"y":0.23},{"x":1567518840000,"y":0.23},{"x":1567518900000,"y":0.49},{"x":1567518960000,"y":0.28},{"x":1567519020000,"y":0.27},{"x":1567519080000,"y":0.27},{"x":1567519140000,"y":0.27},{"x":1567519200000,"y":0.57},{"x":1567519260000,"y":0.48},{"x":1567519320000,"y":0.25},{"x":1567519380000,"y":0.22},{"x":1567519440000,"y":0.34},{"x":1567519500000,"y":0.56},{"x":1567519560000,"y":0.49},{"x":1567519620000,"y":0.31},{"x":1567519680000,"y":0.29},{"x":1567519740000,"y":0.49},{"x":1567519800000,"y":0.48},{"x":1567519860000,"y":0.55},{"x":1567519920000,"y":0.35},{"x":1567519980000,"y":0.51},{"x":1567520040000,"y":0.44},{"x":1567520100000,"y":0.56},{"x":1567520160000,"y":0.57},{"x":1567520220000,"y":0.39},{"x":1567520280000,"y":0.32},{"x":1567520340000,"y":0.32},{"x":1567520400000,"y":0.55},{"x":1567520460000,"y":1.57},{"x":1567520520000,"y":0.29},{"x":1567520580000,"y":0.3},{"x":1567520640000,"y":0.26},{"x":1567520700000,"y":0.45},{"x":1567520760000,"y":0.49},{"x":1567520820000,"y":0.36},{"x":1567520880000,"y":0.29},{"x":1567520940000,"y":0.27},{"x":1567521000000,"y":0.47},{"x":1567521060000,"y":0.61},{"x":1567521120000,"y":0.38},{"x":1567521180000,"y":0.28},{"x":1567521240000,"y":0.48},{"x":1567521300000,"y":0.5},{"x":1567521360000,"y":0.47},{"x":1567521420000,"y":0.35},{"x":1567521480000,"y":0.37},{"x":1567521540000,"y":0.6},{"x":1567521600000,"y":0.5},{"x":1567521660000,"y":0.22},{"x":1567521720000,"y":0.45},{"x":1567521780000,"y":0.21},{"x":1567521840000,"y":0.17},{"x":1567521900000,"y":0.39},{"x":1567521960000,"y":0.19},{"x":1567522020000,"y":0.37},{"x":1567522080000,"y":0.23},{"x":1567522140000,"y":0.25},{"x":1567522200000,"y":0.33},{"x":1567522260000,"y":0.2},{"x":1567522320000,"y":0.46},{"x":1567522380000,"y":0.21},{"x":1567522440000,"y":0.18},{"x":1567522500000,"y":0.25},{"x":1567522560000,"y":0.25},{"x":1567522620000,"y":0.39},{"x":1567522680000,"y":0.2},{"x":1567522740000,"y":0.2},{"x":1567522800000,"y":0.37},{"x":1567522860000,"y":0.18},{"x":1567522920000,"y":0.37},{"x":1567522980000,"y":0.18},{"x":1567523040000,"y":0.18},{"x":1567523100000,"y":0.3},{"x":1567523160000,"y":0.17},{"x":1567523220000,"y":0.32},{"x":1567523280000,"y":0.16},{"x":1567523340000,"y":0.36},{"x":1567523400000,"y":0.31},{"x":1567523460000,"y":0.2},{"x":1567523520000,"y":0.42},{"x":1567523580000,"y":0.25},{"x":1567523640000,"y":0.21},{"x":1567523700000,"y":0.29},{"x":1567523760000,"y":0.17},{"x":1567523820000,"y":0.2},{"x":1567523880000,"y":0.37},{"x":1567523940000,"y":0.2},{"x":1567524000000,"y":0.31},{"x":1567524060000,"y":0.24},{"x":1567524120000,"y":0.21},{"x":1567524180000,"y":0.35},{"x":1567524240000,"y":0.18},{"x":1567524300000,"y":0.23},{"x":1567524360000,"y":0.16},{"x":1567524420000,"y":0.18},{"x":1567524480000,"y":0.35},{"x":1567524540000,"y":0.2},{"x":1567524600000,"y":0.27},{"x":1567524660000,"y":0.19},{"x":1567524720000,"y":0.2},{"x":1567524780000,"y":0.32},{"x":1567524840000,"y":0.85},{"x":1567524900000,"y":0.28},{"x":1567524960000,"y":0.17},{"x":1567525020000,"y":0.26},{"x":1567525080000,"y":0.3},{"x":1567525140000,"y":0.36},{"x":1567525200000,"y":0.25},{"x":1567525260000,"y":0.17},{"x":1567525320000,"y":0.17},{"x":1567525380000,"y":0.33},{"x":1567525440000,"y":0.17},{"x":1567525500000,"y":0.27},{"x":1567525560000,"y":0.19},{"x":1567525620000,"y":0.17},{"x":1567525680000,"y":0.31},{"x":1567525740000,"y":0.16},{"x":1567525800000,"y":0.35},{"x":1567525860000,"y":0.18},{"x":1567525920000,"y":0.22},{"x":1567525980000,"y":0.31},{"x":1567526040000,"y":0.27},{"x":1567526100000,"y":0.42},{"x":1567526160000,"y":0.29},{"x":1567526220000,"y":0.21},{"x":1567526280000,"y":0.19},{"x":1567526340000,"y":0.35},{"x":1567526400000,"y":0.31},{"x":1567526460000,"y":0.17},{"x":1567526520000,"y":0.18},{"x":1567526580000,"y":0.22},{"x":1567526640000,"y":0.31},{"x":1567526700000,"y":0.23},{"x":1567526760000,"y":0.2},{"x":1567526820000,"y":0.2},{"x":1567526880000,"y":0.17},{"x":1567526940000,"y":0.61},{"x":1567527000000,"y":0.28},{"x":1567527060000,"y":5.67},{"x":1567527120000,"y":0.17},{"x":1567527180000,"y":0.25},{"x":1567527240000,"y":0.41},{"x":1567527300000,"y":0.34},{"x":1567527360000,"y":0.18},{"x":1567527420000,"y":0.2},{"x":1567527480000,"y":0.2},{"x":1567527540000,"y":0.38},{"x":1567527600000,"y":0.32},{"x":1567527660000,"y":0.2},{"x":1567527720000,"y":0.17},{"x":1567527780000,"y":0.18},{"x":1567527840000,"y":0.31},{"x":1567527900000,"y":0.29},{"x":1567527960000,"y":0.19},{"x":1567528020000,"y":0.22},{"x":1567528080000,"y":0.22},{"x":1567528140000,"y":0.37},{"x":1567528200000,"y":0.26},{"x":1567528260000,"y":0.18},{"x":1567528320000,"y":0.16},{"x":1567528380000,"y":0.19},{"x":1567528440000,"y":0.24},{"x":1567528500000,"y":0.57},{"x":1567528560000,"y":0.16},{"x":1567528620000,"y":0.1},{"x":1567528680000,"y":0.13},{"x":1567528740000,"y":0.21},{"x":1567528800000,"y":0.42},{"x":1567528860000,"y":0.16},{"x":1567528920000,"y":0.14},{"x":1567528980000,"y":0.15},{"x":1567529040000,"y":0.1},{"x":1567529100000,"y":0.32},{"x":1567529160000,"y":0.15},{"x":1567529220000,"y":0.14},{"x":1567529280000,"y":0.12},{"x":1567529340000,"y":0.1},{"x":1567529400000,"y":0.41},{"x":1567529460000,"y":0.08},{"x":1567529520000,"y":0.09},{"x":1567529580000,"y":0.12},{"x":1567529640000,"y":0.11},{"x":1567529700000,"y":0.37},{"x":1567529760000,"y":0.13},{"x":1567529820000,"y":0.12},{"x":1567529880000,"y":0.12},{"x":1567529940000,"y":0.09},{"x":1567530000000,"y":0.4},{"x":1567530060000,"y":0.13},{"x":1567530120000,"y":0.12},{"x":1567530180000,"y":0.11},{"x":1567530240000,"y":0.13},{"x":1567530300000,"y":0.29},{"x":1567530360000,"y":0.15},{"x":1567530420000,"y":0.12},{"x":1567530480000,"y":0.09},{"x":1567530540000,"y":0.21},{"x":1567530600000,"y":0.21},{"x":1567530660000,"y":0.25},{"x":1567530720000,"y":0.1},{"x":1567530780000,"y":0.1},{"x":1567530840000,"y":0.14},{"x":1567530900000,"y":0.28},{"x":1567530960000,"y":0.3},{"x":1567531020000,"y":0.12},{"x":1567531080000,"y":0.14},{"x":1567531140000,"y":0.1},{"x":1567531200000,"y":0.25},{"x":1567531260000,"y":0.28},{"x":1567531320000,"y":0.12},{"x":1567531380000,"y":1.04},{"x":1567531440000,"y":0.13},{"x":1567531500000,"y":0.26},{"x":1567531560000,"y":4.11},{"x":1567531620000,"y":0.2},{"x":1567531680000,"y":0.15},{"x":1567531740000,"y":0.12},{"x":1567531800000,"y":0.28},{"x":1567531860000,"y":0.31},{"x":1567531920000,"y":0.16},{"x":1567531980000,"y":0.17},{"x":1567532040000,"y":0.2},{"x":1567532100000,"y":0.27},{"x":1567532160000,"y":0.31},{"x":1567532220000,"y":0.19},{"x":1567532280000,"y":0.15},{"x":1567532340000,"y":0.38},{"x":1567532400000,"y":0.21},{"x":1567532460000,"y":0.25},{"x":1567532520000,"y":0.13},{"x":1567532580000,"y":0.14},{"x":1567532640000,"y":0.1},{"x":1567532700000,"y":0.29},{"x":1567532760000,"y":0.15},{"x":1567532820000,"y":0.34},{"x":1567532880000,"y":0.13},{"x":1567532940000,"y":0.13},{"x":1567533000000,"y":0.26},{"x":1567533060000,"y":0.11},{"x":1567533120000,"y":0.31},{"x":1567533180000,"y":0.14},{"x":1567533240000,"y":0.12},{"x":1567533300000,"y":0.21},{"x":1567533360000,"y":0.17},{"x":1567533420000,"y":0.26},{"x":1567533480000,"y":0.16},{"x":1567533540000,"y":0.17},{"x":1567533600000,"y":0.37},{"x":1567533660000,"y":0.14},{"x":1567533720000,"y":0.29},{"x":1567533780000,"y":0.18},{"x":1567533840000,"y":0.13},{"x":1567533900000,"y":0.25},{"x":1567533960000,"y":0.17},{"x":1567534020000,"y":0.27},{"x":1567534080000,"y":0.14},{"x":1567534140000,"y":0.41},{"x":1567534200000,"y":0.23},{"x":1567534260000,"y":0.14},{"x":1567534320000,"y":0.34},{"x":1567534380000,"y":0.1},{"x":1567534440000,"y":0.12},{"x":1567534500000,"y":0.22},{"x":1567534560000,"y":0.18},{"x":1567534620000,"y":0.28},{"x":1567534680000,"y":0.14},{"x":1567534740000,"y":0.16},{"x":1567534800000,"y":0.24},{"x":1567534860000,"y":0.14},{"x":1567534920000,"y":0.23},{"x":1567534980000,"y":0.11},{"x":1567535040000,"y":0.15},{"x":1567535100000,"y":0.26},{"x":1567535160000,"y":0.11},{"x":1567535220000,"y":0.12},{"x":1567535280000,"y":0.36},{"x":1567535340000,"y":0.13},{"x":1567535400000,"y":0.21},{"x":1567535460000,"y":0.17},{"x":1567535520000,"y":0.17},{"x":1567535580000,"y":0.33},{"x":1567535640000,"y":0.2},{"x":1567535700000,"y":0.26},{"x":1567535760000,"y":0.14},{"x":1567535820000,"y":0.15},{"x":1567535880000,"y":0.35},{"x":1567535940000,"y":0.34},{"x":1567536000000,"y":0.22},{"x":1567536060000,"y":0.15},{"x":1567536120000,"y":0.12},{"x":1567536180000,"y":0.3},{"x":1567536240000,"y":0.09},{"x":1567536300000,"y":0.2},{"x":1567536360000,"y":0.19},{"x":1567536420000,"y":0.23},{"x":1567536480000,"y":0.29},{"x":1567536540000,"y":0.19},{"x":1567536600000,"y":0.36},{"x":1567536660000,"y":0.1},{"x":1567536720000,"y":0.14},{"x":1567536780000,"y":0.32},{"x":1567536840000,"y":0.12},{"x":1567536900000,"y":0.21},{"x":1567536960000,"y":0.12},{"x":1567537020000,"y":0.12},{"x":1567537080000,"y":0.4},{"x":1567537140000,"y":0.13},{"x":1567537200000,"y":0.36},{"x":1567537260000,"y":0.18},{"x":1567537320000,"y":0.2},{"x":1567537380000,"y":0.26},{"x":1567537440000,"y":0.12},{"x":1567537500000,"y":0.24},{"x":1567537560000,"y":0.17},{"x":1567537620000,"y":0.17},{"x":1567537680000,"y":0.11},{"x":1567537740000,"y":0.69},{"x":1567537800000,"y":0.2},{"x":1567537860000,"y":0.13},{"x":1567537920000,"y":0.16},{"x":1567537980000,"y":0.14},{"x":1567538040000,"y":0.25},{"x":1567538100000,"y":0.26},{"x":1567538160000,"y":0.17},{"x":1567538220000,"y":0.19},{"x":1567538280000,"y":0.12},{"x":1567538340000,"y":0.29},{"x":1567538400000,"y":0.34},{"x":1567538460000,"y":0.13},{"x":1567538520000,"y":0.14},{"x":1567538580000,"y":0.15},{"x":1567538640000,"y":0.98},{"x":1567538700000,"y":0.21},{"x":1567538760000,"y":0.12},{"x":1567538820000,"y":0.09},{"x":1567538880000,"y":0.12},{"x":1567538940000,"y":0.32},{"x":1567539000000,"y":0.26},{"x":1567539060000,"y":0.23},{"x":1567539120000,"y":0.12},{"x":1567539180000,"y":0.15},{"x":1567539240000,"y":0.34},{"x":1567539300000,"y":0.95},{"x":1567539360000,"y":0.14},{"x":1567539420000,"y":0.16},{"x":1567539480000,"y":0.17},{"x":1567539540000,"y":0.51},{"x":1567539600000,"y":0.28},{"x":1567539660000,"y":0.15},{"x":1567539720000,"y":0.12},{"x":1567539780000,"y":0.16},{"x":1567539840000,"y":0.19},{"x":1567539900000,"y":0.49},{"x":1567539960000,"y":0.15},{"x":1567540020000,"y":0.15},{"x":1567540080000,"y":0.26},{"x":1567540140000,"y":0.19},{"x":1567540200000,"y":0.53},{"x":1567540260000,"y":0.14},{"x":1567540320000,"y":0.17},{"x":1567540380000,"y":0.12},{"x":1567540440000,"y":0.14},{"x":1567540500000,"y":0.44},{"x":1567540560000,"y":0.21},{"x":1567540620000,"y":0.17},{"x":1567540680000,"y":0.13},{"x":1567540740000,"y":0.15},{"x":1567540800000,"y":0.44},{"x":1567540860000,"y":0.14},{"x":1567540920000,"y":0.15},{"x":1567540980000,"y":0.15},{"x":1567541040000,"y":0.13},{"x":1567541100000,"y":0.37},{"x":1567541160000,"y":0.14},{"x":1567541220000,"y":0.11},{"x":1567541280000,"y":0.17},{"x":1567541340000,"y":0.25},{"x":1567541400000,"y":0.32},{"x":1567541460000,"y":0.15},{"x":1567541520000,"y":0.11},{"x":1567541580000,"y":0.21},{"x":1567541640000,"y":0.14},{"x":1567541700000,"y":0.46},{"x":1567541760000,"y":0.14},{"x":1567541820000,"y":0.16},{"x":1567541880000,"y":0.13},{"x":1567541940000,"y":0.12},{"x":1567542000000,"y":0.44},{"x":1567542060000,"y":0.1},{"x":1567542120000,"y":0.18},{"x":1567542180000,"y":0.12},{"x":1567542240000,"y":1.52},{"x":1567542300000,"y":0.29},{"x":1567542360000,"y":0.36},{"x":1567542420000,"y":0.11},{"x":1567542480000,"y":0.1},{"x":1567542540000,"y":0.22},{"x":1567542600000,"y":0.17},{"x":1567542660000,"y":0.21},{"x":1567542720000,"y":0.1},{"x":1567542780000,"y":0.11},{"x":1567542840000,"y":0.16},{"x":1567542900000,"y":0.28},{"x":1567542960000,"y":0.33},{"x":1567543020000,"y":0.17},{"x":1567543080000,"y":0.11},{"x":1567543140000,"y":0.33},{"x":1567543200000,"y":0.19},{"x":1567543260000,"y":0.3},{"x":1567543320000,"y":0.1},{"x":1567543380000,"y":0.12},{"x":1567543440000,"y":0.14},{"x":1567543500000,"y":0.22},{"x":1567543560000,"y":0.3},{"x":1567543620000,"y":0.12},{"x":1567543680000,"y":0.08},{"x":1567543740000,"y":0.15},{"x":1567543800000,"y":0.2},{"x":1567543860000,"y":0.36},{"x":1567543920000,"y":0.16},{"x":1567543980000,"y":0.15},{"x":1567544040000,"y":0.1},{"x":1567544100000,"y":0.21},{"x":1567544160000,"y":0.08},{"x":1567544220000,"y":0.3},{"x":1567544280000,"y":0.12},{"x":1567544340000,"y":0.15},{"x":1567544400000,"y":0.28},{"x":1567544460000,"y":0.18},{"x":1567544520000,"y":0.24},{"x":1567544580000,"y":0.1},{"x":1567544640000,"y":0.11},{"x":1567544700000,"y":0.17},{"x":1567544760000,"y":0.11},{"x":1567544820000,"y":0.35},{"x":1567544880000,"y":0.12},{"x":1567544940000,"y":0.39},{"x":1567545000000,"y":0.22},{"x":1567545060000,"y":0.12},{"x":1567545120000,"y":0.25},{"x":1567545180000,"y":0.1},{"x":1567545240000,"y":0.11},{"x":1567545300000,"y":0.21},{"x":1567545360000,"y":0.13},{"x":1567545420000,"y":0.25},{"x":1567545480000,"y":0.13},{"x":1567545540000,"y":0.14},{"x":1567545600000,"y":0.2},{"x":1567545660000,"y":0.1},{"x":1567545720000,"y":0.29},{"x":1567545780000,"y":0.1},{"x":1567545840000,"y":0.09},{"x":1567545900000,"y":0.3},{"x":1567545960000,"y":0.2},{"x":1567546020000,"y":0.26},{"x":1567546080000,"y":0.17},{"x":1567546140000,"y":0.08},{"x":1567546200000,"y":0.15},{"x":1567546260000,"y":0.07},{"x":1567546320000,"y":0.15},{"x":1567546380000,"y":0.27},{"x":1567546440000,"y":0.15},{"x":1567546500000,"y":0.17},{"x":1567546560000,"y":0.13},{"x":1567546620000,"y":1.47},{"x":1567546680000,"y":0.32},{"x":1567546740000,"y":0.19},{"x":1567546800000,"y":0.2},{"x":1567546860000,"y":0.1},{"x":1567546920000,"y":0.08},{"x":1567546980000,"y":0.37},{"x":1567547040000,"y":0.16},{"x":1567547100000,"y":0.15},{"x":1567547160000,"y":0.08},{"x":1567547220000,"y":0.14},{"x":1567547280000,"y":0.3},{"x":1567547340000,"y":0.18},{"x":1567547400000,"y":0.22},{"x":1567547460000,"y":0.11},{"x":1567547520000,"y":0.12},{"x":1567547580000,"y":0.26},{"x":1567547640000,"y":0.14},{"x":1567547700000,"y":0.23},{"x":1567547760000,"y":0.17},{"x":1567547820000,"y":0.1},{"x":1567547880000,"y":0.12},{"x":1567547940000,"y":0.27},{"x":1567548000000,"y":0.27},{"x":1567548060000,"y":0.2},{"x":1567548120000,"y":0.17},{"x":1567548180000,"y":0.12},{"x":1567548240000,"y":0.31},{"x":1567548300000,"y":0.19},{"x":1567548360000,"y":0.14},{"x":1567548420000,"y":0.15},{"x":1567548480000,"y":0.09},{"x":1567548540000,"y":0.31},{"x":1567548600000,"y":0.21},{"x":1567548660000,"y":0.11},{"x":1567548720000,"y":0.13},{"x":1567548780000,"y":0.12},{"x":1567548840000,"y":0.24},{"x":1567548900000,"y":0.18},{"x":1567548960000,"y":0.1},{"x":1567549020000,"y":0.17},{"x":1567549080000,"y":0.12},{"x":1567549140000,"y":0.27},{"x":1567549200000,"y":0.27},{"x":1567549260000,"y":0.12},{"x":1567549320000,"y":0.15},{"x":1567549380000,"y":0.14},{"x":1567549440000,"y":0.32},{"x":1567549500000,"y":0.2},{"x":1567549560000,"y":0.11},{"x":1567549620000,"y":0.14},{"x":1567549680000,"y":0.11},{"x":1567549740000,"y":0.29},{"x":1567549800000,"y":0.25},{"x":1567549860000,"y":0.08},{"x":1567549920000,"y":0.09},{"x":1567549980000,"y":0.08},{"x":1567550040000,"y":0.36},{"x":1567550100000,"y":0.21},{"x":1567550160000,"y":0.11},{"x":1567550220000,"y":0.12},{"x":1567550280000,"y":0.88},{"x":1567550340000,"y":0.19},{"x":1567550400000,"y":0.65},{"x":1567550460000,"y":0.15},{"x":1567550520000,"y":0.18},{"x":1567550580000,"y":0.14},{"x":1567550640000,"y":0.1},{"x":1567550700000,"y":0.39},{"x":1567550760000,"y":0.22},{"x":1567550820000,"y":0.2},{"x":1567550880000,"y":0.15},{"x":1567550940000,"y":0.21},{"x":1567551000000,"y":0.35},{"x":1567551060000,"y":0.21},{"x":1567551120000,"y":0.17},{"x":1567551180000,"y":0.13},{"x":1567551240000,"y":0.15},{"x":1567551300000,"y":0.35},{"x":1567551360000,"y":0.18},{"x":1567551420000,"y":0.12},{"x":1567551480000,"y":0.15},{"x":1567551540000,"y":0.22},{"x":1567551600000,"y":0.37},{"x":1567551660000,"y":0.16},{"x":1567551720000,"y":0.18},{"x":1567551780000,"y":0.17},{"x":1567551840000,"y":0.12},{"x":1567551900000,"y":0.35},{"x":1567551960000,"y":0.18},{"x":1567552020000,"y":0.14},{"x":1567552080000,"y":0.17},{"x":1567552140000,"y":0.21},{"x":1567552200000,"y":0.38},{"x":1567552260000,"y":0.18},{"x":1567552320000,"y":0.15},{"x":1567552380000,"y":0.2},{"x":1567552440000,"y":0.14},{"x":1567552500000,"y":0.23},{"x":1567552560000,"y":0.31},{"x":1567552620000,"y":0.2},{"x":1567552680000,"y":0.18},{"x":1567552740000,"y":0.18},{"x":1567552800000,"y":0.27},{"x":1567552860000,"y":0.36},{"x":1567552920000,"y":0.23},{"x":1567552980000,"y":0.18},{"x":1567553040000,"y":0.19},{"x":1567553100000,"y":0.36},{"x":1567553160000,"y":0.34},{"x":1567553220000,"y":0.21},{"x":1567553280000,"y":0.19},{"x":1567553340000,"y":0.2},{"x":1567553400000,"y":0.27},{"x":1567553460000,"y":3.94},{"x":1567553520000,"y":0.22},{"x":1567553580000,"y":0.18},{"x":1567553640000,"y":0.19},{"x":1567553700000,"y":0.26},{"x":1567553760000,"y":0.31},{"x":1567553820000,"y":0.16},{"x":1567553880000,"y":0.2},{"x":1567553940000,"y":0.34},{"x":1567554000000,"y":0.26},{"x":1567554060000,"y":0.28},{"x":1567554120000,"y":0.24},{"x":1567554180000,"y":0.15},{"x":1567554240000,"y":0.18},{"x":1567554300000,"y":0.27},{"x":1567554360000,"y":0.36},{"x":1567554420000,"y":0.2},{"x":1567554480000,"y":0.16},{"x":1567554540000,"y":0.18},{"x":1567554600000,"y":0.32},{"x":1567554660000,"y":0.19},{"x":1567554720000,"y":0.36},{"x":1567554780000,"y":0.22},{"x":1567554840000,"y":0.18},{"x":1567554900000,"y":0.28},{"x":1567554960000,"y":0.19},{"x":1567555020000,"y":0.35},{"x":1567555080000,"y":0.27},{"x":1567555140000,"y":0.15},{"x":1567555200000,"y":0.28},{"x":1567555260000,"y":0.22},{"x":1567555320000,"y":0.3},{"x":1567555380000,"y":0.2},{"x":1567555440000,"y":0.2},{"x":1567555500000,"y":0.26},{"x":1567555560000,"y":0.19},{"x":1567555620000,"y":0.31},{"x":1567555680000,"y":0.15},{"x":1567555740000,"y":0.31},{"x":1567555800000,"y":0.26},{"x":1567555860000,"y":0.17},{"x":1567555920000,"y":0.32},{"x":1567555980000,"y":0.17},{"x":1567556040000,"y":0.24},{"x":1567556100000,"y":0.29},{"x":1567556160000,"y":0.2},{"x":1567556220000,"y":0.37},{"x":1567556280000,"y":0.19},{"x":1567556340000,"y":0.17},{"x":1567556400000,"y":0.28},{"x":1567556460000,"y":0.17},{"x":1567556520000,"y":0.34},{"x":1567556580000,"y":0.24},{"x":1567556640000,"y":0.22},{"x":1567556700000,"y":0.37},{"x":1567556760000,"y":1.39},{"x":1567556820000,"y":0.25},{"x":1567556880000,"y":0.43},{"x":1567556940000,"y":0.18},{"x":1567557000000,"y":0.37},{"x":1567557060000,"y":0.19},{"x":1567557120000,"y":0.2},{"x":1567557180000,"y":0.33},{"x":1567557240000,"y":0.23},{"x":1567557300000,"y":0.27},{"x":1567557360000,"y":0.2},{"x":1567557420000,"y":0.19},{"x":1567557480000,"y":0.34},{"x":1567557540000,"y":0.4},{"x":1567557600000,"y":0.28},{"x":1567557660000,"y":0.16},{"x":1567557720000,"y":0.19},{"x":1567557780000,"y":0.31},{"x":1567557840000,"y":0.19},{"x":1567557900000,"y":0.26},{"x":1567557960000,"y":0.21},{"x":1567558020000,"y":0.22},{"x":1567558080000,"y":0.33},{"x":1567558140000,"y":0.21},{"x":1567558200000,"y":0.32},{"x":1567558260000,"y":0.18},{"x":1567558320000,"y":0.21},{"x":1567558380000,"y":0.37},{"x":1567558440000,"y":0.2},{"x":1567558500000,"y":0.28},{"x":1567558560000,"y":0.25},{"x":1567558620000,"y":0.25},{"x":1567558680000,"y":0.3},{"x":1567558740000,"y":0.18},{"x":1567558800000,"y":0.4},{"x":1567558860000,"y":0.27},{"x":1567558920000,"y":0.24},{"x":1567558980000,"y":0.2},{"x":1567559040000,"y":0.87},{"x":1567559100000,"y":0.35},{"x":1567559160000,"y":0.18},{"x":1567559220000,"y":0.2},{"x":1567559280000,"y":0.2},{"x":1567559340000,"y":0.52},{"x":1567559400000,"y":0.25},{"x":1567559460000,"y":0.19},{"x":1567559520000,"y":0.2},{"x":1567559580000,"y":0.19},{"x":1567559640000,"y":0.3},{"x":1567559700000,"y":0.28},{"x":1567559760000,"y":0.17},{"x":1567559820000,"y":0.15},{"x":1567559880000,"y":0.18},{"x":1567559940000,"y":0.32},{"x":1567560000000,"y":0.25},{"x":1567560060000,"y":0.17},{"x":1567560120000,"y":0.2},{"x":1567560180000,"y":0.23},{"x":1567560240000,"y":0.37},{"x":1567560300000,"y":0.32},{"x":1567560360000,"y":0.2},{"x":1567560420000,"y":0.21},{"x":1567560480000,"y":0.22},{"x":1567560540000,"y":0.41},{"x":1567560600000,"y":0.31},{"x":1567560660000,"y":0.17},{"x":1567560720000,"y":0.2},{"x":1567560780000,"y":0.21},{"x":1567560840000,"y":0.41},{"x":1567560900000,"y":0.31},{"x":1567560960000,"y":0.18},{"x":1567561020000,"y":0.18},{"x":1567561080000,"y":0.27},{"x":1567561140000,"y":0.77},{"x":1567561200000,"y":0.54},{"x":1567561260000,"y":0.17},{"x":1567561320000,"y":0.19},{"x":1567561380000,"y":0.17},{"x":1567561440000,"y":0.25},{"x":1567561500000,"y":0.52},{"x":1567561560000,"y":0.15},{"x":1567561620000,"y":0.17},{"x":1567561680000,"y":0.2},{"x":1567561740000,"y":0.18},{"x":1567561800000,"y":0.53},{"x":1567561860000,"y":0.17},{"x":1567561920000,"y":0.18},{"x":1567561980000,"y":0.12},{"x":1567562040000,"y":0.12},{"x":1567562100000,"y":0.41},{"x":1567562160000,"y":0.13},{"x":1567562220000,"y":0.1},{"x":1567562280000,"y":0.13},{"x":1567562340000,"y":0.15},{"x":1567562400000,"y":0.39},{"x":1567562460000,"y":0.11},{"x":1567562520000,"y":0.11},{"x":1567562580000,"y":0.15},{"x":1567562640000,"y":0.15},{"x":1567562700000,"y":0.53},{"x":1567562760000,"y":0.16},{"x":1567562820000,"y":0.15},{"x":1567562880000,"y":0.12},{"x":1567562940000,"y":0.29},{"x":1567563000000,"y":0.34},{"x":1567563060000,"y":0.15},{"x":1567563120000,"y":0.2},{"x":1567563180000,"y":0.09},{"x":1567563240000,"y":0.13},{"x":1567563300000,"y":0.44},{"x":1567563360000,"y":0.09},{"x":1567563420000,"y":0.15},{"x":1567563480000,"y":0.1},{"x":1567563540000,"y":0.19},{"x":1567563600000,"y":0.26},{"x":1567563660000,"y":0.33},{"x":1567563720000,"y":0.12},{"x":1567563780000,"y":0.12},{"x":1567563840000,"y":0.12},{"x":1567563900000,"y":0.26},{"x":1567563960000,"y":0.23},{"x":1567564020000,"y":0.85},{"x":1567564080000,"y":0.16},{"x":1567564140000,"y":0.12},{"x":1567564200000,"y":0.26},{"x":1567564260000,"y":0.29},{"x":1567564320000,"y":0.12},{"x":1567564380000,"y":0.1},{"x":1567564440000,"y":0.15},{"x":1567564500000,"y":0.19},{"x":1567564560000,"y":0.26},{"x":1567564620000,"y":0.13},{"x":1567564680000,"y":0.15},{"x":1567564740000,"y":0.24},{"x":1567564800000,"y":0.18},{"x":1567564860000,"y":0.24},{"x":1567564920000,"y":0.15},{"x":1567564980000,"y":0.1},{"x":1567565040000,"y":0.08},{"x":1567565100000,"y":0.21},{"x":1567565160000,"y":0.25},{"x":1567565220000,"y":0.07},{"x":1567565280000,"y":0.08},{"x":1567565340000,"y":0.12},{"x":1567565400000,"y":0.24},{"x":1567565460000,"y":0.25},{"x":1567565520000,"y":0.13},{"x":1567565580000,"y":0.09},{"x":1567565640000,"y":0.1},{"x":1567565700000,"y":0.17},{"x":1567565760000,"y":0.1},{"x":1567565820000,"y":0.21},{"x":1567565880000,"y":0.1},{"x":1567565940000,"y":0.1},{"x":1567566000000,"y":0.25},{"x":1567566060000,"y":0.12},{"x":1567566120000,"y":0.25},{"x":1567566180000,"y":0.1},{"x":1567566240000,"y":0.09},{"x":1567566300000,"y":0.21},{"x":1567566360000,"y":0.15},{"x":1567566420000,"y":0.29},{"x":1567566480000,"y":0.09},{"x":1567566540000,"y":0.22},{"x":1567566600000,"y":0.14},{"x":1567566660000,"y":0.13},{"x":1567566720000,"y":0.28},{"x":1567566780000,"y":0.1},{"x":1567566840000,"y":0.1},{"x":1567566900000,"y":0.19},{"x":1567566960000,"y":0.09},{"x":1567567020000,"y":0.23},{"x":1567567080000,"y":0.1},{"x":1567567140000,"y":0.14},{"x":1567567200000,"y":0.17},{"x":1567567260000,"y":0.09},{"x":1567567320000,"y":0.23},{"x":1567567380000,"y":0.08},{"x":1567567440000,"y":0.1},{"x":1567567500000,"y":0.2},{"x":1567567560000,"y":0.07},{"x":1567567620000,"y":0.1},{"x":1567567680000,"y":0.25},{"x":1567567740000,"y":0.1},{"x":1567567800000,"y":0.28},{"x":1567567860000,"y":0.07},{"x":1567567920000,"y":0.09},{"x":1567567980000,"y":0.25},{"x":1567568040000,"y":0.12},{"x":1567568100000,"y":0.2},{"x":1567568160000,"y":0.18},{"x":1567568220000,"y":0.18},{"x":1567568280000,"y":0.34},{"x":1567568340000,"y":0.23},{"x":1567568400000,"y":0.28},{"x":1567568460000,"y":0.1},{"x":1567568520000,"y":0.1},{"x":1567568580000,"y":0.23},{"x":1567568640000,"y":0.11},{"x":1567568700000,"y":0.23},{"x":1567568760000,"y":0.12},{"x":1567568820000,"y":0.08},{"x":1567568880000,"y":0.34},{"x":1567568940000,"y":0.11},{"x":1567569000000,"y":0.22},{"x":1567569060000,"y":0.07},{"x":1567569120000,"y":0.13},{"x":1567569180000,"y":0.24},{"x":1567569240000,"y":0.14},{"x":1567569300000,"y":0.17},{"x":1567569360000,"y":0.14},{"x":1567569420000,"y":0.1},{"x":1567569480000,"y":0.14},{"x":1567569540000,"y":0.26},{"x":1567569600000,"y":0.28},{"x":1567569660000,"y":0.08},{"x":1567569720000,"y":0.11},{"x":1567569780000,"y":0.11},{"x":1567569840000,"y":0.27},{"x":1567569900000,"y":0.22},{"x":1567569960000,"y":0.12},{"x":1567570020000,"y":0.13},{"x":1567570080000,"y":0.11},{"x":1567570140000,"y":0.41},{"x":1567570200000,"y":0.32},{"x":1567570260000,"y":0.1},{"x":1567570320000,"y":0.15},{"x":1567570380000,"y":0.1},{"x":1567570440000,"y":0.27},{"x":1567570500000,"y":0.14},{"x":1567570560000,"y":0.1},{"x":1567570620000,"y":0.16},{"x":1567570680000,"y":0.13},{"x":1567570740000,"y":0.24},{"x":1567570800000,"y":0.19},{"x":1567570860000,"y":0.07},{"x":1567570920000,"y":0.08},{"x":1567570980000,"y":0.12},{"x":1567571040000,"y":0.27},{"x":1567571100000,"y":0.2},{"x":1567571160000,"y":0.07},{"x":1567571220000,"y":0.1},{"x":1567571280000,"y":0.11},{"x":1567571340000,"y":0.23},{"x":1567571400000,"y":0.22},{"x":1567571460000,"y":0.09},{"x":1567571520000,"y":0.12},{"x":1567571580000,"y":0.1},{"x":1567571640000,"y":0.16},{"x":1567571700000,"y":0.46},{"x":1567571760000,"y":0.1},{"x":1567571820000,"y":0.13},{"x":1567571880000,"y":0.12},{"x":1567571940000,"y":0.39},{"x":1567572000000,"y":0.84},{"x":1567572060000,"y":0.11},{"x":1567572120000,"y":0.09},{"x":1567572180000,"y":0.16},{"x":1567572240000,"y":0.1},{"x":1567572300000,"y":0.31},{"x":1567572360000,"y":0.07},{"x":1567572420000,"y":0.1},{"x":1567572480000,"y":0.09},{"x":1567572540000,"y":0.11},{"x":1567572600000,"y":0.3},{"x":1567572660000,"y":0.11},{"x":1567572720000,"y":0.11},{"x":1567572780000,"y":0.08},{"x":1567572840000,"y":0.14},{"x":1567572900000,"y":0.3},{"x":1567572960000,"y":0.07},{"x":1567573020000,"y":0.1},{"x":1567573080000,"y":0.1},{"x":1567573140000,"y":0.1},{"x":1567573200000,"y":1.06},{"x":1567573260000,"y":0.11},{"x":1567573320000,"y":0.1},{"x":1567573380000,"y":0.15},{"x":1567573440000,"y":0.13},{"x":1567573500000,"y":0.35},{"x":1567573560000,"y":0.12},{"x":1567573620000,"y":0.2},{"x":1567573680000,"y":0.1},{"x":1567573740000,"y":0.25},{"x":1567573800000,"y":0.42},{"x":1567573860000,"y":0.12},{"x":1567573920000,"y":0.12},{"x":1567573980000,"y":0.12},{"x":1567574040000,"y":0.14},{"x":1567574100000,"y":0.2},{"x":1567574160000,"y":0.25},{"x":1567574220000,"y":0.1},{"x":1567574280000,"y":0.09},{"x":1567574340000,"y":0.09},{"x":1567574400000,"y":0.17},{"x":1567574460000,"y":0.22},{"x":1567574520000,"y":0.11},{"x":1567574580000,"y":0.1},{"x":1567574640000,"y":0.16},{"x":1567574700000,"y":0.14},{"x":1567574760000,"y":0.27},{"x":1567574820000,"y":0.07},{"x":1567574880000,"y":3.62},{"x":1567574940000,"y":0.1},{"x":1567575000000,"y":0.21},{"x":1567575060000,"y":0.3},{"x":1567575120000,"y":0.21},{"x":1567575180000,"y":0.17},{"x":1567575240000,"y":0.13},{"x":1567575300000,"y":0.26},{"x":1567575360000,"y":5.03},{"x":1567575420000,"y":0.27},{"x":1567575480000,"y":0.13},{"x":1567575540000,"y":0.22},{"x":1567575600000,"y":0.26},{"x":1567575660000,"y":0.24},{"x":1567575720000,"y":0.14},{"x":1567575780000,"y":0.08},{"x":1567575840000,"y":0.1},{"x":1567575900000,"y":0.23},{"x":1567575960000,"y":0.23},{"x":1567576020000,"y":0.13},{"x":1567576080000,"y":0.11},{"x":1567576140000,"y":0.15},{"x":1567576200000,"y":0.17},{"x":1567576260000,"y":0.16},{"x":1567576320000,"y":0.42},{"x":1567576380000,"y":0.1},{"x":1567576440000,"y":0.12},{"x":1567576500000,"y":0.24},{"x":1567576560000,"y":0.12},{"x":1567576620000,"y":0.28},{"x":1567576680000,"y":0.12},{"x":1567576740000,"y":0.17},{"x":1567576800000,"y":0.27},{"x":1567576860000,"y":0.18},{"x":1567576920000,"y":0.3},{"x":1567576980000,"y":0.15},{"x":1567577040000,"y":0.1},{"x":1567577100000,"y":0.24},{"x":1567577160000,"y":0.14},{"x":1567577220000,"y":0.27},{"x":1567577280000,"y":0.17},{"x":1567577340000,"y":0.43},{"x":1567577400000,"y":0.22},{"x":1567577460000,"y":0.14},{"x":1567577520000,"y":0.42},{"x":1567577580000,"y":0.15},{"x":1567577640000,"y":0.12},{"x":1567577700000,"y":0.25},{"x":1567577760000,"y":0.18},{"x":1567577820000,"y":0.26},{"x":1567577880000,"y":0.1},{"x":1567577940000,"y":0.1},{"x":1567578000000,"y":0.24},{"x":1567578060000,"y":0.17},{"x":1567578120000,"y":0.27},{"x":1567578180000,"y":0.09},{"x":1567578240000,"y":0.1},{"x":1567578300000,"y":0.26},{"x":1567578360000,"y":0.1},{"x":1567578420000,"y":0.08},{"x":1567578480000,"y":0.3},{"x":1567578540000,"y":0.09},{"x":1567578600000,"y":0.26},{"x":1567578660000,"y":0.1},{"x":1567578720000,"y":0.1},{"x":1567578780000,"y":0.26},{"x":1567578840000,"y":0.11},{"x":1567578900000,"y":0.24},{"x":1567578960000,"y":0.07},{"x":1567579020000,"y":0.12},{"x":1567579080000,"y":0.3},{"x":1567579140000,"y":0.22},{"x":1567579200000,"y":0.22},{"x":1567579260000,"y":0.19},{"x":1567579320000,"y":0.11},{"x":1567579380000,"y":0.26},{"x":1567579440000,"y":0.1},{"x":1567579500000,"y":0.24},{"x":1567579560000,"y":0.15},{"x":1567579620000,"y":0.13},{"x":1567579680000,"y":0.31},{"x":1567579740000,"y":0.12},{"x":1567579800000,"y":0.22},{"x":1567579860000,"y":0.07},{"x":1567579920000,"y":0.11},{"x":1567579980000,"y":0.27},{"x":1567580040000,"y":0.12},{"x":1567580100000,"y":0.16},{"x":1567580160000,"y":0.15},{"x":1567580220000,"y":0.12},{"x":1567580280000,"y":0.25},{"x":1567580340000,"y":0.07},{"x":1567580400000,"y":0.22},{"x":1567580460000,"y":0.11},{"x":1567580520000,"y":0.1},{"x":1567580580000,"y":0.25},{"x":1567580640000,"y":0.14},{"x":1567580700000,"y":0.29},{"x":1567580760000,"y":0.11},{"x":1567580820000,"y":0.08},{"x":1567580880000,"y":0.1},{"x":1567580940000,"y":0.46},{"x":1567581000000,"y":0.21},{"x":1567581060000,"y":0.12},{"x":1567581120000,"y":0.09},{"x":1567581180000,"y":0.11},{"x":1567581240000,"y":0.24},{"x":1567581300000,"y":0.24},{"x":1567581360000,"y":0.09},{"x":1567581420000,"y":0.1},{"x":1567581480000,"y":0.14},{"x":1567581540000,"y":0.26},{"x":1567581600000,"y":0.27},{"x":1567581660000,"y":0.13},{"x":1567581720000,"y":0.12},{"x":1567581780000,"y":0.11},{"x":1567581840000,"y":0.26},{"x":1567581900000,"y":0.18},{"x":1567581960000,"y":0.1},{"x":1567582020000,"y":0.11},{"x":1567582080000,"y":0.11},{"x":1567582140000,"y":1.11},{"x":1567582200000,"y":0.23},{"x":1567582260000,"y":0.13},{"x":1567582320000,"y":0.14},{"x":1567582380000,"y":0.1},{"x":1567582440000,"y":0.27},{"x":1567582500000,"y":0.22},{"x":1567582560000,"y":0.14},{"x":1567582620000,"y":0.06},{"x":1567582680000,"y":0.12},{"x":1567582740000,"y":0.28},{"x":1567582800000,"y":0.39},{"x":1567582860000,"y":0.11},{"x":1567582920000,"y":0.17},{"x":1567582980000,"y":0.13},{"x":1567583040000,"y":0.11},{"x":1567583100000,"y":0.37},{"x":1567583160000,"y":0.14},{"x":1567583220000,"y":0.1},{"x":1567583280000,"y":0.11},{"x":1567583340000,"y":0.08},{"x":1567583400000,"y":0.28},{"x":1567583460000,"y":0.11},{"x":1567583520000,"y":0.13},{"x":1567583580000,"y":0.08},{"x":1567583640000,"y":0.12},{"x":1567583700000,"y":0.28},{"x":1567583760000,"y":0.14},{"x":1567583820000,"y":0.13},{"x":1567583880000,"y":0.05},{"x":1567583940000,"y":0.09},{"x":1567584000000,"y":0.38},{"x":1567584060000,"y":0.25},{"x":1567584120000,"y":0.15},{"x":1567584180000,"y":0.14},{"x":1567584240000,"y":0.19},{"x":1567584300000,"y":0.39},{"x":1567584360000,"y":0.17},{"x":1567584420000,"y":0.19},{"x":1567584480000,"y":0.14},{"x":1567584540000,"y":0.36},{"x":1567584600000,"y":0.3},{"x":1567584660000,"y":0.15},{"x":1567584720000,"y":0.23},{"x":1567584780000,"y":0.16},{"x":1567584840000,"y":0.14},{"x":1567584900000,"y":0.28},{"x":1567584960000,"y":0.24},{"x":1567585020000,"y":0.17},{"x":1567585080000,"y":0.14},{"x":1567585140000,"y":0.19},{"x":1567585200000,"y":0.19},{"x":1567585260000,"y":0.3},{"x":1567585320000,"y":0.12},{"x":1567585380000,"y":0.12},{"x":1567585440000,"y":0.14},{"x":1567585500000,"y":0.22},{"x":1567585560000,"y":0.28},{"x":1567585620000,"y":0.13},{"x":1567585680000,"y":0.15},{"x":1567585740000,"y":0.12},{"x":1567585800000,"y":0.29},{"x":1567585860000,"y":0.31},{"x":1567585920000,"y":0.21},{"x":1567585980000,"y":0.17},{"x":1567586040000,"y":0.21},{"x":1567586100000,"y":0.24},{"x":1567586160000,"y":0.35},{"x":1567586220000,"y":0.15},{"x":1567586280000,"y":0.18},{"x":1567586340000,"y":0.41},{"x":1567586400000,"y":0.24},{"x":1567586460000,"y":0.35},{"x":1567586520000,"y":0.16},{"x":1567586580000,"y":0.17},{"x":1567586640000,"y":0.18},{"x":1567586700000,"y":0.25},{"x":1567586760000,"y":0.29},{"x":1567586820000,"y":0.18},{"x":1567586880000,"y":0.18},{"x":1567586940000,"y":0.2},{"x":1567587000000,"y":0.29},{"x":1567587060000,"y":0.17},{"x":1567587120000,"y":0.3},{"x":1567587180000,"y":0.22},{"x":1567587240000,"y":0.17},{"x":1567587300000,"y":0.21},{"x":1567587360000,"y":0.2},{"x":1567587420000,"y":0.32},{"x":1567587480000,"y":0.16},{"x":1567587540000,"y":0.17},{"x":1567587600000,"y":0.29},{"x":1567587660000,"y":0.22},{"x":1567587720000,"y":0.33},{"x":1567587780000,"y":0.17},{"x":1567587840000,"y":0.15},{"x":1567587900000,"y":0.27},{"x":1567587960000,"y":0.19},{"x":1567588020000,"y":0.31},{"x":1567588080000,"y":0.17},{"x":1567588140000,"y":0.39},{"x":1567588200000,"y":0.28},{"x":1567588260000,"y":0.17},{"x":1567588320000,"y":0.31},{"x":1567588380000,"y":0.16},{"x":1567588440000,"y":0.2},{"x":1567588500000,"y":0.2},{"x":1567588560000,"y":0.15},{"x":1567588620000,"y":0.3},{"x":1567588680000,"y":0.18},{"x":1567588740000,"y":0.17},{"x":1567588800000,"y":0.19},{"x":1567588860000,"y":0.15},{"x":1567588920000,"y":0.35},{"x":1567588980000,"y":0.18},{"x":1567589040000,"y":0.15},{"x":1567589100000,"y":0.28},{"x":1567589160000,"y":0.18},{"x":1567589220000,"y":0.18},{"x":1567589280000,"y":0.38},{"x":1567589340000,"y":0.14},{"x":1567589400000,"y":0.25},{"x":1567589460000,"y":0.16},{"x":1567589520000,"y":0.2},{"x":1567589580000,"y":0.31},{"x":1567589640000,"y":0.21},{"x":1567589700000,"y":0.26},{"x":1567589760000,"y":0.2},{"x":1567589820000,"y":0.17},{"x":1567589880000,"y":0.33},{"x":1567589940000,"y":0.39},{"x":1567590000000,"y":0.26},{"x":1567590060000,"y":0.19},{"x":1567590120000,"y":0.17},{"x":1567590180000,"y":0.31},{"x":1567590240000,"y":0.18},{"x":1567590300000,"y":0.3},{"x":1567590360000,"y":0.22},{"x":1567590420000,"y":0.2},{"x":1567590480000,"y":0.36},{"x":1567590540000,"y":0.23},{"x":1567590600000,"y":0.32},{"x":1567590660000,"y":0.15},{"x":1567590720000,"y":0.18},{"x":1567590780000,"y":0.36},{"x":1567590840000,"y":0.18},{"x":1567590900000,"y":0.21},{"x":1567590960000,"y":0.18},{"x":1567591020000,"y":0.17},{"x":1567591080000,"y":0.35},{"x":1567591140000,"y":0.18},{"x":1567591200000,"y":0.28},{"x":1567591260000,"y":0.16},{"x":1567591320000,"y":0.16},{"x":1567591380000,"y":0.22},{"x":1567591440000,"y":0.45},{"x":1567591500000,"y":0.31},{"x":1567591560000,"y":0.22},{"x":1567591620000,"y":0.21},{"x":1567591680000,"y":0.19},{"x":1567591740000,"y":0.59},{"x":1567591800000,"y":0.31},{"x":1567591860000,"y":0.2},{"x":1567591920000,"y":0.2},{"x":1567591980000,"y":0.22},{"x":1567592040000,"y":0.3},{"x":1567592100000,"y":0.27},{"x":1567592160000,"y":0.18},{"x":1567592220000,"y":0.25},{"x":1567592280000,"y":0.15},{"x":1567592340000,"y":0.33},{"x":1567592400000,"y":0.39},{"x":1567592460000,"y":0.17},{"x":1567592520000,"y":0.2},{"x":1567592580000,"y":0.21},{"x":1567592640000,"y":0.34},{"x":1567592700000,"y":0.33},{"x":1567592760000,"y":0.21},{"x":1567592820000,"y":0.17},{"x":1567592880000,"y":0.17},{"x":1567592940000,"y":0.33},{"x":1567593000000,"y":0.28},{"x":1567593060000,"y":0.16},{"x":1567593120000,"y":0.19},{"x":1567593180000,"y":0.16},{"x":1567593240000,"y":0.31},{"x":1567593300000,"y":0.22},{"x":1567593360000,"y":0.17},{"x":1567593420000,"y":0.19},{"x":1567593480000,"y":0.16},{"x":1567593540000,"y":0.31},{"x":1567593600000,"y":0.48},{"x":1567593660000,"y":0.25},{"x":1567593720000,"y":0.2},{"x":1567593780000,"y":0.51},{"x":1567593840000,"y":0.23},{"x":1567593900000,"y":0.41},{"x":1567593960000,"y":0.18},{"x":1567594020000,"y":0.18},{"x":1567594080000,"y":0.23},{"x":1567594140000,"y":0.2},{"x":1567594200000,"y":0.44},{"x":1567594260000,"y":0.2},{"x":1567594320000,"y":0.17},{"x":1567594380000,"y":0.22},{"x":1567594440000,"y":0.18},{"x":1567594500000,"y":0.4},{"x":1567594560000,"y":0.18},{"x":1567594620000,"y":0.19},{"x":1567594680000,"y":0.17},{"x":1567594740000,"y":0.15},{"x":1567594800000,"y":0.53},{"x":1567594860000,"y":0.17},{"x":1567594920000,"y":0.22},{"x":1567594980000,"y":0.17},{"x":1567595040000,"y":0.18},{"x":1567595100000,"y":0.44},{"x":1567595160000,"y":0.15},{"x":1567595220000,"y":0.15},{"x":1567595280000,"y":0.1},{"x":1567595340000,"y":0.17},{"x":1567595400000,"y":0.31},{"x":1567595460000,"y":0.17},{"x":1567595520000,"y":0.12},{"x":1567595580000,"y":0.1},{"x":1567595640000,"y":12.9},{"x":1567595700000,"y":3.29},{"x":1567595760000,"y":0.26},{"x":1567595820000,"y":0.12},{"x":1567595880000,"y":0.1},{"x":1567595940000,"y":0.09},{"x":1567596000000,"y":0.2},{"x":1567596060000,"y":0.25},{"x":1567596120000,"y":0.07},{"x":1567596180000,"y":0.08},{"x":1567596240000,"y":0.07},{"x":1567596300000,"y":1.52},{"x":1567596360000,"y":0.23},{"x":1567596420000,"y":0.11},{"x":1567596480000,"y":0.1},{"x":1567596540000,"y":0.07},{"x":1567596600000,"y":0.19},{"x":1567596660000,"y":1.03},{"x":1567596720000,"y":0.07},{"x":1567596780000,"y":0.07},{"x":1567596840000,"y":0.09},{"x":1567596900000,"y":0.22},{"x":1567596960000,"y":0.28},{"x":1567597020000,"y":0.1},{"x":1567597080000,"y":0.1},{"x":1567597140000,"y":0.15},{"x":1567597200000,"y":0.12},{"x":1567597260000,"y":4.01},{"x":1567597320000,"y":0.17},{"x":1567597380000,"y":0.13},{"x":1567597440000,"y":0.39},{"x":1567597500000,"y":0.23},{"x":1567597560000,"y":0.23},{"x":1567597620000,"y":0.11},{"x":1567597680000,"y":0.14},{"x":1567597740000,"y":0.08},{"x":1567597800000,"y":0.17},{"x":1567597860000,"y":0.1},{"x":1567597920000,"y":0.27},{"x":1567597980000,"y":0.09},{"x":1567598040000,"y":0.12},{"x":1567598100000,"y":0.15},{"x":1567598160000,"y":0.1},{"x":1567598220000,"y":0.26},{"x":1567598280000,"y":0.14},{"x":1567598340000,"y":0.13},{"x":1567598400000,"y":0.23},{"x":1567598460000,"y":0.12},{"x":1567598520000,"y":0.36},{"x":1567598580000,"y":0.12},{"x":1567598640000,"y":0.14},{"x":1567598700000,"y":0.3},{"x":1567598760000,"y":0.14},{"x":1567598820000,"y":0.28},{"x":1567598880000,"y":0.12},{"x":1567598940000,"y":0.32},{"x":1567599000000,"y":0.21},{"x":1567599060000,"y":0.09},{"x":1567599120000,"y":0.25},{"x":1567599180000,"y":0.14},{"x":1567599240000,"y":0.07},{"x":1567599300000,"y":0.19},{"x":1567599360000,"y":0.09},{"x":1567599420000,"y":0.24},{"x":1567599480000,"y":0.09},{"x":1567599540000,"y":0.1},{"x":1567599600000,"y":0.17},{"x":1567599660000,"y":0.11},{"x":1567599720000,"y":0.27},{"x":1567599780000,"y":0.09},{"x":1567599840000,"y":0.08},{"x":1567599900000,"y":0.16},{"x":1567599960000,"y":0.08},{"x":1567600020000,"y":0.2},{"x":1567600080000,"y":0.11},{"x":1567600140000,"y":0.08},{"x":1567600200000,"y":0.23},{"x":1567600260000,"y":0.06},{"x":1567600320000,"y":0.06},{"x":1567600380000,"y":0.27},{"x":1567600440000,"y":0.15},{"x":1567600500000,"y":0.21},{"x":1567600560000,"y":0.1},{"x":1567600620000,"y":0.09},{"x":1567600680000,"y":0.21},{"x":1567600740000,"y":0.27},{"x":1567600800000,"y":0.19},{"x":1567600860000,"y":0.08},{"x":1567600920000,"y":0.09},{"x":1567600980000,"y":0.31},{"x":1567601040000,"y":0.07},{"x":1567601100000,"y":0.76},{"x":1567601160000,"y":0.14},{"x":1567601220000,"y":0.15},{"x":1567601280000,"y":0.34},{"x":1567601340000,"y":0.09},{"x":1567601400000,"y":0.25},{"x":1567601460000,"y":0.11},{"x":1567601520000,"y":0.11},{"x":1567601580000,"y":0.22},{"x":1567601640000,"y":0.15},{"x":1567601700000,"y":0.22},{"x":1567601760000,"y":0.12},{"x":1567601820000,"y":0.12},{"x":1567601880000,"y":0.27},{"x":1567601940000,"y":0.17},{"x":1567602000000,"y":0.28},{"x":1567602060000,"y":0.08},{"x":1567602120000,"y":0.06},{"x":1567602180000,"y":0.12},{"x":1567602240000,"y":0.29},{"x":1567602300000,"y":0.34},{"x":1567602360000,"y":0.12},{"x":1567602420000,"y":0.14},{"x":1567602480000,"y":0.11},{"x":1567602540000,"y":0.45},{"x":1567602600000,"y":0.21},{"x":1567602660000,"y":0.07},{"x":1567602720000,"y":0.08},{"x":1567602780000,"y":0.09},{"x":1567602840000,"y":0.26},{"x":1567602900000,"y":0.16},{"x":1567602960000,"y":0.1},{"x":1567603020000,"y":0.08},{"x":1567603080000,"y":0.08},{"x":1567603140000,"y":0.23},{"x":1567603200000,"y":0.15},{"x":1567603260000,"y":0.1},{"x":1567603320000,"y":0.08},{"x":1567603380000,"y":0.08},{"x":1567603440000,"y":0.22},{"x":1567603500000,"y":0.15},{"x":1567603560000,"y":0.14},{"x":1567603620000,"y":0.1},{"x":1567603680000,"y":0.1},{"x":1567603740000,"y":0.3},{"x":1567603800000,"y":0.24},{"x":1567603860000,"y":0.11},{"x":1567603920000,"y":0.1},{"x":1567603980000,"y":0.14},{"x":1567604040000,"y":0.22},{"x":1567604100000,"y":0.28},{"x":1567604160000,"y":0.12},{"x":1567604220000,"y":0.13},{"x":1567604280000,"y":0.12},{"x":1567604340000,"y":0.24},{"x":1567604400000,"y":0.52},{"x":1567604460000,"y":0.11},{"x":1567604520000,"y":0.1},{"x":1567604580000,"y":0.11},{"x":1567604640000,"y":0.09},{"x":1567604700000,"y":0.35},{"x":1567604760000,"y":0.11},{"x":1567604820000,"y":0.11},{"x":1567604880000,"y":0.11},{"x":1567604940000,"y":0.15},{"x":1567605000000,"y":0.35},{"x":1567605060000,"y":0.09},{"x":1567605120000,"y":0.09},{"x":1567605180000,"y":0.1},{"x":1567605240000,"y":0.13},{"x":1567605300000,"y":0.38},{"x":1567605360000,"y":0.12},{"x":1567605420000,"y":0.12},{"x":1567605480000,"y":0.15},{"x":1567605540000,"y":0.11},{"x":1567605600000,"y":0.39},{"x":1567605660000,"y":0.12},{"x":1567605720000,"y":0.1},{"x":1567605780000,"y":0.14},{"x":1567605840000,"y":0.1},{"x":1567605900000,"y":0.34},{"x":1567605960000,"y":0.1},{"x":1567606020000,"y":0.09},{"x":1567606080000,"y":0.1},{"x":1567606140000,"y":0.23},{"x":1567606200000,"y":0.39},{"x":1567606260000,"y":0.12},{"x":1567606320000,"y":0.1},{"x":1567606380000,"y":0.13},{"x":1567606440000,"y":0.11},{"x":1567606500000,"y":0.34},{"x":1567606560000,"y":0.08},{"x":1567606620000,"y":0.12},{"x":1567606680000,"y":0.08},{"x":1567606740000,"y":0.1},{"x":1567606800000,"y":0.22},{"x":1567606860000,"y":0.23},{"x":1567606920000,"y":0.1},{"x":1567606980000,"y":0.11},{"x":1567607040000,"y":0.1},{"x":1567607100000,"y":0.13},{"x":1567607160000,"y":0.25},{"x":1567607220000,"y":0.11},{"x":1567607280000,"y":0.1},{"x":1567607340000,"y":0.07},{"x":1567607400000,"y":0.25},{"x":1567607460000,"y":0.33},{"x":1567607520000,"y":0.13},{"x":1567607580000,"y":0.1},{"x":1567607640000,"y":0.1},{"x":1567607700000,"y":0.3},{"x":1567607760000,"y":0.28},{"x":1567607820000,"y":0.12},{"x":1567607880000,"y":0.16},{"x":1567607940000,"y":0.31},{"x":1567608000000,"y":0.23},{"x":1567608060000,"y":0.28},{"x":1567608120000,"y":0.11},{"x":1567608180000,"y":0.08},{"x":1567608240000,"y":0.12},{"x":1567608300000,"y":0.16},{"x":1567608360000,"y":0.23},{"x":1567608420000,"y":0.14},{"x":1567608480000,"y":0.13},{"x":1567608540000,"y":0.14},{"x":1567608600000,"y":0.24},{"x":1567608660000,"y":0.24},{"x":1567608720000,"y":0.08},{"x":1567608780000,"y":0.08},{"x":1567608840000,"y":0.12},{"x":1567608900000,"y":0.13},{"x":1567608960000,"y":0.07},{"x":1567609020000,"y":0.29},{"x":1567609080000,"y":0.12},{"x":1567609140000,"y":0.1},{"x":1567609200000,"y":0.3},{"x":1567609260000,"y":0.17},{"x":1567609320000,"y":0.23},{"x":1567609380000,"y":0.12},{"x":1567609440000,"y":0.21},{"x":1567609500000,"y":0.22},{"x":1567609560000,"y":0.12},{"x":1567609620000,"y":0.28},{"x":1567609680000,"y":0.08},{"x":1567609740000,"y":0.28},{"x":1567609800000,"y":0.23},{"x":1567609860000,"y":5.21},{"x":1567609920000,"y":0.38},{"x":1567609980000,"y":0.09},{"x":1567610040000,"y":0.12},{"x":1567610100000,"y":0.17},{"x":1567610160000,"y":0.1},{"x":1567610220000,"y":0.24},{"x":1567610280000,"y":0.11},{"x":1567610340000,"y":0.08},{"x":1567610400000,"y":0.19},{"x":1567610460000,"y":0.12},{"x":1567610520000,"y":0.27},{"x":1567610580000,"y":0.11},{"x":1567610640000,"y":0.13},{"x":1567610700000,"y":0.2},{"x":1567610760000,"y":0.15},{"x":1567610820000,"y":0.23},{"x":1567610880000,"y":0.12},{"x":1567610940000,"y":0.13},{"x":1567611000000,"y":0.2},{"x":1567611060000,"y":0.12},{"x":1567611120000,"y":0.15},{"x":1567611180000,"y":0.96},{"x":1567611240000,"y":0.15},{"x":1567611300000,"y":0.18},{"x":1567611360000,"y":0.08},{"x":1567611420000,"y":0.1},{"x":1567611480000,"y":0.24},{"x":1567611540000,"y":0.23},{"x":1567611600000,"y":0.2},{"x":1567611660000,"y":0.12},{"x":1567611720000,"y":0.12},{"x":1567611780000,"y":0.26},{"x":1567611840000,"y":0.11},{"x":1567611900000,"y":0.24},{"x":1567611960000,"y":0.1},{"x":1567612020000,"y":0.08},{"x":1567612080000,"y":0.24},{"x":1567612140000,"y":0.06},{"x":1567612200000,"y":0.2},{"x":1567612260000,"y":0.15},{"x":1567612320000,"y":0.1},{"x":1567612380000,"y":0.27},{"x":1567612440000,"y":0.1},{"x":1567612500000,"y":0.19},{"x":1567612560000,"y":0.15},{"x":1567612620000,"y":0.13},{"x":1567612680000,"y":0.22},{"x":1567612740000,"y":0.08},{"x":1567612800000,"y":0.3},{"x":1567612860000,"y":0.08},{"x":1567612920000,"y":0.1},{"x":1567612980000,"y":0.2},{"x":1567613040000,"y":0.1},{"x":1567613100000,"y":0.14},{"x":1567613160000,"y":0.1},{"x":1567613220000,"y":0.12},{"x":1567613280000,"y":0.14},{"x":1567613340000,"y":0.34},{"x":1567613400000,"y":0.22},{"x":1567613460000,"y":0.1},{"x":1567613520000,"y":0.09},{"x":1567613580000,"y":0.11},{"x":1567613640000,"y":0.24},{"x":1567613700000,"y":0.2},{"x":1567613760000,"y":0.1},{"x":1567613820000,"y":0.09},{"x":1567613880000,"y":0.13},{"x":1567613940000,"y":0.24},{"x":1567614000000,"y":0.17},{"x":1567614060000,"y":0.08},{"x":1567614120000,"y":0.1},{"x":1567614180000,"y":0.13},{"x":1567614240000,"y":0.24},{"x":1567614300000,"y":0.23},{"x":1567614360000,"y":0.11},{"x":1567614420000,"y":0.16},{"x":1567614480000,"y":0.09},{"x":1567614540000,"y":0.22},{"x":1567614600000,"y":0.22},{"x":1567614660000,"y":0.13},{"x":1567614720000,"y":0.1},{"x":1567614780000,"y":0.28},{"x":1567614840000,"y":0.28},{"x":1567614900000,"y":0.26},{"x":1567614960000,"y":0.12},{"x":1567615020000,"y":0.12},{"x":1567615080000,"y":0.1},{"x":1567615140000,"y":0.57},{"x":1567615200000,"y":0.22},{"x":1567615260000,"y":0.09},{"x":1567615320000,"y":0.1},{"x":1567615380000,"y":0.1},{"x":1567615440000,"y":0.08},{"x":1567615500000,"y":0.39},{"x":1567615560000,"y":0.1},{"x":1567615620000,"y":0.1},{"x":1567615680000,"y":0.52},{"x":1567615740000,"y":0.08},{"x":1567615800000,"y":0.32},{"x":1567615860000,"y":0.17},{"x":1567615920000,"y":0.09},{"x":1567615980000,"y":0.09},{"x":1567616040000,"y":0.09},{"x":1567616100000,"y":0.4},{"x":1567616160000,"y":0.13},{"x":1567616220000,"y":0.1},{"x":1567616280000,"y":0.09},{"x":1567616340000,"y":0.1},{"x":1567616400000,"y":0.44},{"x":1567616460000,"y":0.14},{"x":1567616520000,"y":0.1},{"x":1567616580000,"y":0.1},{"x":1567616640000,"y":0.13},{"x":1567616700000,"y":0.28},{"x":1567616760000,"y":0.09},{"x":1567616820000,"y":0.14},{"x":1567616880000,"y":0.11},{"x":1567616940000,"y":0.25},{"x":1567617000000,"y":0.36},{"x":1567617060000,"y":0.14},{"x":1567617120000,"y":0.16},{"x":1567617180000,"y":0.08},{"x":1567617240000,"y":0.07},{"x":1567617300000,"y":0.38},{"x":1567617360000,"y":0.1},{"x":1567617420000,"y":0.1},{"x":1567617480000,"y":0.18},{"x":1567617540000,"y":0.21},{"x":1567617600000,"y":0.17},{"x":1567617660000,"y":0.26},{"x":1567617720000,"y":0.17},{"x":1567617780000,"y":0.12},{"x":1567617840000,"y":0.1},{"x":1567617900000,"y":0.26},{"x":1567617960000,"y":0.33},{"x":1567618020000,"y":0.12},{"x":1567618080000,"y":0.13},{"x":1567618140000,"y":0.14},{"x":1567618200000,"y":0.23},{"x":1567618260000,"y":0.34},{"x":1567618320000,"y":0.1},{"x":1567618380000,"y":0.08},{"x":1567618440000,"y":0.14},{"x":1567618500000,"y":0.27},{"x":1567618560000,"y":0.25},{"x":1567618620000,"y":0.14},{"x":1567618680000,"y":0.12},{"x":1567618740000,"y":0.28},{"x":1567618800000,"y":0.31},{"x":1567618860000,"y":0.27},{"x":1567618920000,"y":0.18},{"x":1567618980000,"y":0.17},{"x":1567619040000,"y":0.15},{"x":1567619100000,"y":0.2},{"x":1567619160000,"y":4.99},{"x":1567619220000,"y":0.27},{"x":1567619280000,"y":0.22},{"x":1567619340000,"y":0.21},{"x":1567619400000,"y":0.26},{"x":1567619460000,"y":0.32},{"x":1567619520000,"y":0.21},{"x":1567619580000,"y":0.2},{"x":1567619640000,"y":0.22},{"x":1567619700000,"y":0.32},{"x":1567619760000,"y":0.22},{"x":1567619820000,"y":0.38},{"x":1567619880000,"y":0.18},{"x":1567619940000,"y":0.17},{"x":1567620000000,"y":0.32},{"x":1567620060000,"y":0.18},{"x":1567620120000,"y":0.38},{"x":1567620180000,"y":0.2},{"x":1567620240000,"y":0.18},{"x":1567620300000,"y":0.34},{"x":1567620360000,"y":0.19},{"x":1567620420000,"y":0.37},{"x":1567620480000,"y":0.23},{"x":1567620540000,"y":0.44},{"x":1567620600000,"y":0.27},{"x":1567620660000,"y":0.17},{"x":1567620720000,"y":0.31},{"x":1567620780000,"y":0.15},{"x":1567620840000,"y":0.19},{"x":1567620900000,"y":0.24},{"x":1567620960000,"y":0.16},{"x":1567621020000,"y":0.37},{"x":1567621080000,"y":0.17},{"x":1567621140000,"y":0.17},{"x":1567621200000,"y":0.23},{"x":1567621260000,"y":0.19},{"x":1567621320000,"y":0.4},{"x":1567621380000,"y":0.17},{"x":1567621440000,"y":0.19},{"x":1567621500000,"y":0.24},{"x":1567621560000,"y":0.17},{"x":1567621620000,"y":0.38},{"x":1567621680000,"y":0.19},{"x":1567621740000,"y":0.18},{"x":1567621800000,"y":0.27},{"x":1567621860000,"y":0.18},{"x":1567621920000,"y":0.35},{"x":1567621980000,"y":0.18},{"x":1567622040000,"y":0.15},{"x":1567622100000,"y":0.35},{"x":1567622160000,"y":0.14},{"x":1567622220000,"y":0.2},{"x":1567622280000,"y":0.41},{"x":1567622340000,"y":0.4},{"x":1567622400000,"y":0.26},{"x":1567622460000,"y":0.19},{"x":1567622520000,"y":0.24},{"x":1567622580000,"y":0.32},{"x":1567622640000,"y":0.17},{"x":1567622700000,"y":0.36},{"x":1567622760000,"y":0.2},{"x":1567622820000,"y":0.22},{"x":1567622880000,"y":0.37},{"x":1567622940000,"y":0.17},{"x":1567623000000,"y":0.26},{"x":1567623060000,"y":0.2},{"x":1567623120000,"y":0.19},{"x":1567623180000,"y":0.39},{"x":1567623240000,"y":0.17},{"x":1567623300000,"y":0.25},{"x":1567623360000,"y":0.2},{"x":1567623420000,"y":0.17},{"x":1567623480000,"y":0.35},{"x":1567623540000,"y":0.26},{"x":1567623600000,"y":0.3},{"x":1567623660000,"y":0.18},{"x":1567623720000,"y":0.18},{"x":1567623780000,"y":0.33},{"x":1567623840000,"y":0.16},{"x":1567623900000,"y":0.24},{"x":1567623960000,"y":0.18},{"x":1567624020000,"y":0.16},{"x":1567624080000,"y":0.34},{"x":1567624140000,"y":0.4},{"x":1567624200000,"y":0.32},{"x":1567624260000,"y":0.2},{"x":1567624320000,"y":0.17},{"x":1567624380000,"y":0.19},{"x":1567624440000,"y":0.37},{"x":1567624500000,"y":0.31},{"x":1567624560000,"y":0.19},{"x":1567624620000,"y":0.21},{"x":1567624680000,"y":0.16},{"x":1567624740000,"y":0.29},{"x":1567624800000,"y":0.32},{"x":1567624860000,"y":0.16},{"x":1567624920000,"y":0.18},{"x":1567624980000,"y":0.17},{"x":1567625040000,"y":0.37},{"x":1567625100000,"y":0.22},{"x":1567625160000,"y":0.17},{"x":1567625220000,"y":0.2},{"x":1567625280000,"y":0.18},{"x":1567625340000,"y":0.35},{"x":1567625400000,"y":0.32},{"x":1567625460000,"y":0.17},{"x":1567625520000,"y":0.22},{"x":1567625580000,"y":0.2},{"x":1567625640000,"y":0.32},{"x":1567625700000,"y":0.28},{"x":1567625760000,"y":0.47},{"x":1567625820000,"y":0.17},{"x":1567625880000,"y":0.16},{"x":1567625940000,"y":0.52},{"x":1567626000000,"y":0.3},{"x":1567626060000,"y":0.15},{"x":1567626120000,"y":0.16},{"x":1567626180000,"y":0.16},{"x":1567626240000,"y":0.32},{"x":1567626300000,"y":0.35},{"x":1567626360000,"y":0.2},{"x":1567626420000,"y":0.17},{"x":1567626480000,"y":0.2},{"x":1567626540000,"y":0.19},{"x":1567626600000,"y":0.49},{"x":1567626660000,"y":0.19},{"x":1567626720000,"y":0.19},{"x":1567626780000,"y":0.17},{"x":1567626840000,"y":0.2},{"x":1567626900000,"y":0.42},{"x":1567626960000,"y":0.21},{"x":1567627020000,"y":0.18},{"x":1567627080000,"y":0.23},{"x":1567627140000,"y":0.17},{"x":1567627200000,"y":0.49},{"x":1567627260000,"y":0.16},{"x":1567627320000,"y":0.15},{"x":1567627380000,"y":0.17},{"x":1567627440000,"y":0.18},{"x":1567627500000,"y":0.38},{"x":1567627560000,"y":0.18},{"x":1567627620000,"y":0.19},{"x":1567627680000,"y":0.17},{"x":1567627740000,"y":0.27},{"x":1567627800000,"y":0.53},{"x":1567627860000,"y":0.19},{"x":1567627920000,"y":0.21},{"x":1567627980000,"y":0.23},{"x":1567628040000,"y":0.24},{"x":1567628100000,"y":0.48},{"x":1567628160000,"y":0.2},{"x":1567628220000,"y":0.21},{"x":1567628280000,"y":0.18},{"x":1567628340000,"y":0.19},{"x":1567628400000,"y":0.41},{"x":1567628460000,"y":0.15},{"x":1567628520000,"y":0.18},{"x":1567628580000,"y":0.16},{"x":1567628640000,"y":0.11},{"x":1567628700000,"y":0.22},{"x":1567628760000,"y":0.26},{"x":1567628820000,"y":0.15},{"x":1567628880000,"y":0.13},{"x":1567628940000,"y":0.14},{"x":1567629000000,"y":0.24},{"x":1567629060000,"y":0.32},{"x":1567629120000,"y":0.11},{"x":1567629180000,"y":0.14},{"x":1567629240000,"y":0.12},{"x":1567629300000,"y":0.27},{"x":1567629360000,"y":0.3},{"x":1567629420000,"y":0.08},{"x":1567629480000,"y":0.1},{"x":1567629540000,"y":0.29},{"x":1567629600000,"y":0.2},{"x":1567629660000,"y":0.24},{"x":1567629720000,"y":0.11},{"x":1567629780000,"y":0.1},{"x":1567629840000,"y":0.12},{"x":1567629900000,"y":0.17},{"x":1567629960000,"y":0.67},{"x":1567630020000,"y":0.09},{"x":1567630080000,"y":0.12},{"x":1567630140000,"y":0.09},{"x":1567630200000,"y":0.18},{"x":1567630260000,"y":2.17},{"x":1567630320000,"y":0.12},{"x":1567630380000,"y":0.09},{"x":1567630440000,"y":0.09},{"x":1567630500000,"y":0.25},{"x":1567630560000,"y":0.33},{"x":1567630620000,"y":0.12},{"x":1567630680000,"y":0.13},{"x":1567630740000,"y":0.09},{"x":1567630800000,"y":0.26},{"x":1567630860000,"y":0.24},{"x":1567630920000,"y":0.1},{"x":1567630980000,"y":0.09},{"x":1567631040000,"y":0.1},{"x":1567631100000,"y":0.18},{"x":1567631160000,"y":0.09},{"x":1567631220000,"y":0.23},{"x":1567631280000,"y":0.12},{"x":1567631340000,"y":0.27},{"x":1567631400000,"y":0.19},{"x":1567631460000,"y":0.08},{"x":1567631520000,"y":0.22},{"x":1567631580000,"y":0.14},{"x":1567631640000,"y":0.12},{"x":1567631700000,"y":0.21},{"x":1567631760000,"y":0.07},{"x":1567631820000,"y":0.3},{"x":1567631880000,"y":0.1},{"x":1567631940000,"y":0.09},{"x":1567632000000,"y":0.21},{"x":1567632060000,"y":0.11},{"x":1567632120000,"y":0.2},{"x":1567632180000,"y":0.09},{"x":1567632240000,"y":0.08},{"x":1567632300000,"y":0.24},{"x":1567632360000,"y":0.12},{"x":1567632420000,"y":0.25},{"x":1567632480000,"y":0.1},{"x":1567632540000,"y":0.11},{"x":1567632600000,"y":0.24},{"x":1567632660000,"y":0.12},{"x":1567632720000,"y":0.25},{"x":1567632780000,"y":0.07},{"x":1567632840000,"y":0.09},{"x":1567632900000,"y":0.22},{"x":1567632960000,"y":0.12},{"x":1567633020000,"y":0.23},{"x":1567633080000,"y":0.18},{"x":1567633140000,"y":0.14},{"x":1567633200000,"y":0.17},{"x":1567633260000,"y":0.1},{"x":1567633320000,"y":0.08},{"x":1567633380000,"y":0.25},{"x":1567633440000,"y":0.07},{"x":1567633500000,"y":0.16},{"x":1567633560000,"y":0.08},{"x":1567633620000,"y":0.1},{"x":1567633680000,"y":0.25},{"x":1567633740000,"y":0.08},{"x":1567633800000,"y":0.23},{"x":1567633860000,"y":0.12},{"x":1567633920000,"y":0.11},{"x":1567633980000,"y":0.21},{"x":1567634040000,"y":0.08},{"x":1567634100000,"y":0.19},{"x":1567634160000,"y":0.13},{"x":1567634220000,"y":0.07},{"x":1567634280000,"y":0.23},{"x":1567634340000,"y":0.1},{"x":1567634400000,"y":0.22},{"x":1567634460000,"y":0.17},{"x":1567634520000,"y":0.14},{"x":1567634580000,"y":0.28},{"x":1567634640000,"y":0.14},{"x":1567634700000,"y":0.21},{"x":1567634760000,"y":0.09},{"x":1567634820000,"y":0.12},{"x":1567634880000,"y":0.26},{"x":1567634940000,"y":0.19},{"x":1567635000000,"y":0.17},{"x":1567635060000,"y":0.1},{"x":1567635120000,"y":0.11},{"x":1567635180000,"y":0.18},{"x":1567635240000,"y":0.23},{"x":1567635300000,"y":0.2},{"x":1567635360000,"y":0.09},{"x":1567635420000,"y":0.09},{"x":1567635480000,"y":0.11},{"x":1567635540000,"y":0.22},{"x":1567635600000,"y":0.15},{"x":1567635660000,"y":0.07},{"x":1567635720000,"y":0.08},{"x":1567635780000,"y":0.09},{"x":1567635840000,"y":0.22},{"x":1567635900000,"y":0.23},{"x":1567635960000,"y":0.14},{"x":1567636020000,"y":0.09},{"x":1567636080000,"y":0.13},{"x":1567636140000,"y":0.24},{"x":1567636200000,"y":0.27},{"x":1567636260000,"y":0.19},{"x":1567636320000,"y":0.14},{"x":1567636380000,"y":0.1},{"x":1567636440000,"y":0.25},{"x":1567636500000,"y":0.23},{"x":1567636560000,"y":0.09},{"x":1567636620000,"y":0.09},{"x":1567636680000,"y":0.1},{"x":1567636740000,"y":0.28},{"x":1567636800000,"y":0.21},{"x":1567636860000,"y":0.09},{"x":1567636920000,"y":0.14},{"x":1567636980000,"y":0.09},{"x":1567637040000,"y":0.22},{"x":1567637100000,"y":0.13},{"x":1567637160000,"y":0.11},{"x":1567637220000,"y":0.1},{"x":1567637280000,"y":0.14},{"x":1567637340000,"y":0.21},{"x":1567637400000,"y":0.14},{"x":1567637460000,"y":0.1},{"x":1567637520000,"y":0.12},{"x":1567637580000,"y":0.07},{"x":1567637640000,"y":0.1},{"x":1567637700000,"y":0.32},{"x":1567637760000,"y":0.13},{"x":1567637820000,"y":0.06},{"x":1567637880000,"y":0.08},{"x":1567637940000,"y":0.1},{"x":1567638000000,"y":0.47},{"x":1567638060000,"y":0.08},{"x":1567638120000,"y":0.09},{"x":1567638180000,"y":0.1},{"x":1567638240000,"y":0.1},{"x":1567638300000,"y":0.34},{"x":1567638360000,"y":0.08},{"x":1567638420000,"y":0.07},{"x":1567638480000,"y":0.13},{"x":1567638540000,"y":0.16},{"x":1567638600000,"y":0.38},{"x":1567638660000,"y":0.11},{"x":1567638720000,"y":0.09},{"x":1567638780000,"y":0.11},{"x":1567638840000,"y":0.07},{"x":1567638900000,"y":0.35},{"x":1567638960000,"y":0.09},{"x":1567639020000,"y":0.1},{"x":1567639080000,"y":0.06},{"x":1567639140000,"y":0.11},{"x":1567639200000,"y":0.37},{"x":1567639260000,"y":0.07},{"x":1567639320000,"y":0.11},{"x":1567639380000,"y":0.08},{"x":1567639440000,"y":0.09},{"x":1567639500000,"y":0.28},{"x":1567639560000,"y":0.13},{"x":1567639620000,"y":0.1},{"x":1567639680000,"y":0.07},{"x":1567639740000,"y":0.1},{"x":1567639800000,"y":0.36},{"x":1567639860000,"y":0.07},{"x":1567639920000,"y":0.07},{"x":1567639980000,"y":0.08},{"x":1567640040000,"y":0.1},{"x":1567640100000,"y":0.15},{"x":1567640160000,"y":0.23},{"x":1567640220000,"y":0.1},{"x":1567640280000,"y":0.53},{"x":1567640340000,"y":0.13},{"x":1567640400000,"y":0.14},{"x":1567640460000,"y":0.25},{"x":1567640520000,"y":0.12},{"x":1567640580000,"y":0.08},{"x":1567640640000,"y":0.13},{"x":1567640700000,"y":0.18},{"x":1567640760000,"y":0.22},{"x":1567640820000,"y":0.1},{"x":1567640880000,"y":0.08},{"x":1567640940000,"y":0.08},{"x":1567641000000,"y":0.17},{"x":1567641060000,"y":3.76},{"x":1567641120000,"y":0.91},{"x":1567641180000,"y":0.07},{"x":1567641240000,"y":0.09},{"x":1567641300000,"y":0.22},{"x":1567641360000,"y":0.22},{"x":1567641420000,"y":0.09},{"x":1567641480000,"y":0.1},{"x":1567641540000,"y":0.09},{"x":1567641600000,"y":0.29},{"x":1567641660000,"y":0.23},{"x":1567641720000,"y":0.09},{"x":1567641780000,"y":0.15},{"x":1567641840000,"y":0.11},{"x":1567641900000,"y":0.19},{"x":1567641960000,"y":0.22},{"x":1567642020000,"y":0.14},{"x":1567642080000,"y":0.1},{"x":1567642140000,"y":0.22},{"x":1567642200000,"y":0.21},{"x":1567642260000,"y":0.24},{"x":1567642320000,"y":0.14},{"x":1567642380000,"y":0.08},{"x":1567642440000,"y":0.15},{"x":1567642500000,"y":0.28},{"x":1567642560000,"y":0.14},{"x":1567642620000,"y":0.25},{"x":1567642680000,"y":0.16},{"x":1567642740000,"y":0.08},{"x":1567642800000,"y":0.17},{"x":1567642860000,"y":0.1},{"x":1567642920000,"y":0.23},{"x":1567642980000,"y":0.1},{"x":1567643040000,"y":0.13},{"x":1567643100000,"y":0.25},{"x":1567643160000,"y":0.13},{"x":1567643220000,"y":0.27},{"x":1567643280000,"y":0.12},{"x":1567643340000,"y":0.1},{"x":1567643400000,"y":0.16},{"x":1567643460000,"y":0.05},{"x":1567643520000,"y":0.22},{"x":1567643580000,"y":0.14},{"x":1567643640000,"y":0.13},{"x":1567643700000,"y":0.19},{"x":1567643760000,"y":0.1},{"x":1567643820000,"y":0.39},{"x":1567643880000,"y":0.13},{"x":1567643940000,"y":0.21},{"x":1567644000000,"y":0.21},{"x":1567644060000,"y":0.15},{"x":1567644120000,"y":0.34},{"x":1567644180000,"y":0.11},{"x":1567644240000,"y":0.13},{"x":1567644300000,"y":0.2},{"x":1567644360000,"y":0.13},{"x":1567644420000,"y":0.3},{"x":1567644480000,"y":0.11},{"x":1567644540000,"y":0.1},{"x":1567644600000,"y":0.31},{"x":1567644660000,"y":0.11},{"x":1567644720000,"y":0.29},{"x":1567644780000,"y":0.15},{"x":1567644840000,"y":0.07},{"x":1567644900000,"y":0.22},{"x":1567644960000,"y":0.11},{"x":1567645020000,"y":0.11},{"x":1567645080000,"y":0.34},{"x":1567645140000,"y":0.09},{"x":1567645200000,"y":0.29},{"x":1567645260000,"y":0.08},{"x":1567645320000,"y":0.08},{"x":1567645380000,"y":0.26},{"x":1567645440000,"y":0.08},{"x":1567645500000,"y":0.17},{"x":1567645560000,"y":0.09},{"x":1567645620000,"y":0.11},{"x":1567645680000,"y":0.24},{"x":1567645740000,"y":0.25},{"x":1567645800000,"y":0.19},{"x":1567645860000,"y":0.11},{"x":1567645920000,"y":0.1},{"x":1567645980000,"y":0.3},{"x":1567646040000,"y":0.1},{"x":1567646100000,"y":0.24},{"x":1567646160000,"y":0.1},{"x":1567646220000,"y":0.1},{"x":1567646280000,"y":0.25},{"x":1567646340000,"y":0.12},{"x":1567646400000,"y":0.23},{"x":1567646460000,"y":0.1},{"x":1567646520000,"y":0.1},{"x":1567646580000,"y":0.29},{"x":1567646640000,"y":0.12},{"x":1567646700000,"y":0.2},{"x":1567646760000,"y":0.11},{"x":1567646820000,"y":0.1},{"x":1567646880000,"y":0.2},{"x":1567646940000,"y":0.13},{"x":1567647000000,"y":0.2},{"x":1567647060000,"y":0.1},{"x":1567647120000,"y":0.1},{"x":1567647180000,"y":0.08},{"x":1567647240000,"y":0.21},{"x":1567647300000,"y":0.25},{"x":1567647360000,"y":0.12},{"x":1567647420000,"y":0.1},{"x":1567647480000,"y":0.1},{"x":1567647540000,"y":0.32},{"x":1567647600000,"y":0.16},{"x":1567647660000,"y":0.08},{"x":1567647720000,"y":0.1},{"x":1567647780000,"y":0.1},{"x":1567647840000,"y":0.19},{"x":1567647900000,"y":0.2},{"x":1567647960000,"y":0.11},{"x":1567648020000,"y":0.12},{"x":1567648080000,"y":0.1},{"x":1567648140000,"y":0.21},{"x":1567648200000,"y":0.21},{"x":1567648260000,"y":0.12},{"x":1567648320000,"y":0.11},{"x":1567648380000,"y":0.6},{"x":1567648440000,"y":0.26},{"x":1567648500000,"y":0.19},{"x":1567648560000,"y":0.14},{"x":1567648620000,"y":0.12},{"x":1567648680000,"y":0.08},{"x":1567648740000,"y":0.23},{"x":1567648800000,"y":0.25},{"x":1567648860000,"y":0.14},{"x":1567648920000,"y":0.11},{"x":1567648980000,"y":0.14},{"x":1567649040000,"y":0.13},{"x":1567649100000,"y":0.39},{"x":1567649160000,"y":0.12},{"x":1567649220000,"y":0.11},{"x":1567649280000,"y":0.08},{"x":1567649340000,"y":0.2},{"x":1567649400000,"y":0.35},{"x":1567649460000,"y":0.1},{"x":1567649520000,"y":0.15},{"x":1567649580000,"y":0.15},{"x":1567649640000,"y":0.14},{"x":1567649700000,"y":0.36},{"x":1567649760000,"y":0.12},{"x":1567649820000,"y":0.08},{"x":1567649880000,"y":0.09},{"x":1567649940000,"y":0.14},{"x":1567650000000,"y":0.36},{"x":1567650060000,"y":0.11},{"x":1567650120000,"y":0.17},{"x":1567650180000,"y":0.08},{"x":1567650240000,"y":0.09},{"x":1567650300000,"y":0.35},{"x":1567650360000,"y":0.13},{"x":1567650420000,"y":0.15},{"x":1567650480000,"y":0.17},{"x":1567650540000,"y":0.15},{"x":1567650600000,"y":0.35},{"x":1567650660000,"y":0.15},{"x":1567650720000,"y":0.13},{"x":1567650780000,"y":0.17},{"x":1567650840000,"y":0.07},{"x":1567650900000,"y":0.43},{"x":1567650960000,"y":0.17},{"x":1567651020000,"y":0.2},{"x":1567651080000,"y":0.19},{"x":1567651140000,"y":0.31},{"x":1567651200000,"y":0.22},{"x":1567651260000,"y":0.35},{"x":1567651320000,"y":0.18},{"x":1567651380000,"y":0.15},{"x":1567651440000,"y":0.08},{"x":1567651500000,"y":0.18},{"x":1567651560000,"y":0.3},{"x":1567651620000,"y":0.19},{"x":1567651680000,"y":0.1},{"x":1567651740000,"y":0.17},{"x":1567651800000,"y":0.2},{"x":1567651860000,"y":0.27},{"x":1567651920000,"y":0.12},{"x":1567651980000,"y":0.11},{"x":1567652040000,"y":0.18},{"x":1567652100000,"y":0.25},{"x":1567652160000,"y":0.32},{"x":1567652220000,"y":0.13},{"x":1567652280000,"y":0.12},{"x":1567652340000,"y":0.17},{"x":1567652400000,"y":0.34},{"x":1567652460000,"y":0.36},{"x":1567652520000,"y":0.2},{"x":1567652580000,"y":0.22},{"x":1567652640000,"y":0.17},{"x":1567652700000,"y":0.28},{"x":1567652760000,"y":0.29},{"x":1567652820000,"y":0.15},{"x":1567652880000,"y":0.21},{"x":1567652940000,"y":0.39},{"x":1567653000000,"y":0.29},{"x":1567653060000,"y":0.3},{"x":1567653120000,"y":0.2},{"x":1567653180000,"y":0.15},{"x":1567653240000,"y":0.19},{"x":1567653300000,"y":0.3},{"x":1567653360000,"y":0.17},{"x":1567653420000,"y":0.32},{"x":1567653480000,"y":0.18},{"x":1567653540000,"y":0.17},{"x":1567653600000,"y":0.27},{"x":1567653660000,"y":0.17},{"x":1567653720000,"y":0.32},{"x":1567653780000,"y":0.18},{"x":1567653840000,"y":0.19},{"x":1567653900000,"y":0.26},{"x":1567653960000,"y":0.18},{"x":1567654020000,"y":0.32},{"x":1567654080000,"y":0.22},{"x":1567654140000,"y":0.16},{"x":1567654200000,"y":0.28},{"x":1567654260000,"y":0.19},{"x":1567654320000,"y":0.32},{"x":1567654380000,"y":0.2},{"x":1567654440000,"y":0.17},{"x":1567654500000,"y":0.32},{"x":1567654560000,"y":0.21},{"x":1567654620000,"y":0.28},{"x":1567654680000,"y":0.16},{"x":1567654740000,"y":0.75},{"x":1567654800000,"y":1.04},{"x":1567654860000,"y":0.17},{"x":1567654920000,"y":0.31},{"x":1567654980000,"y":0.14},{"x":1567655040000,"y":0.16},{"x":1567655100000,"y":0.28},{"x":1567655160000,"y":0.17},{"x":1567655220000,"y":0.3},{"x":1567655280000,"y":0.18},{"x":1567655340000,"y":0.16},{"x":1567655400000,"y":0.24},{"x":1567655460000,"y":0.18},{"x":1567655520000,"y":0.31},{"x":1567655580000,"y":0.19},{"x":1567655640000,"y":1.25},{"x":1567655700000,"y":0.23},{"x":1567655760000,"y":0.17},{"x":1567655820000,"y":0.15},{"x":1567655880000,"y":0.32},{"x":1567655940000,"y":0.17},{"x":1567656000000,"y":0.31},{"x":1567656060000,"y":0.17},{"x":1567656120000,"y":0.22},{"x":1567656180000,"y":0.3},{"x":1567656240000,"y":0.18},{"x":1567656300000,"y":0.24},{"x":1567656360000,"y":0.19},{"x":1567656420000,"y":0.2},{"x":1567656480000,"y":0.31},{"x":1567656540000,"y":0.35},{"x":1567656600000,"y":0.29},{"x":1567656660000,"y":0.18},{"x":1567656720000,"y":0.19},{"x":1567656780000,"y":0.34},{"x":1567656840000,"y":0.17},{"x":1567656900000,"y":0.26},{"x":1567656960000,"y":0.17},{"x":1567657020000,"y":0.16},{"x":1567657080000,"y":0.33},{"x":1567657140000,"y":0.17},{"x":1567657200000,"y":0.3},{"x":1567657260000,"y":0.17},{"x":1567657320000,"y":0.18},{"x":1567657380000,"y":0.3},{"x":1567657440000,"y":0.17},{"x":1567657500000,"y":0.26},{"x":1567657560000,"y":0.14},{"x":1567657620000,"y":0.17},{"x":1567657680000,"y":0.32},{"x":1567657740000,"y":0.16},{"x":1567657800000,"y":0.19},{"x":1567657860000,"y":0.19},{"x":1567657920000,"y":0.19},{"x":1567657980000,"y":0.16},{"x":1567658040000,"y":0.33},{"x":1567658100000,"y":0.27},{"x":1567658160000,"y":0.17},{"x":1567658220000,"y":0.14},{"x":1567658280000,"y":0.17},{"x":1567658340000,"y":0.42},{"x":1567658400000,"y":0.27},{"x":1567658460000,"y":0.23},{"x":1567658520000,"y":0.21},{"x":1567658580000,"y":0.19},{"x":1567658640000,"y":0.32},{"x":1567658700000,"y":0.3},{"x":1567658760000,"y":0.16},{"x":1567658820000,"y":0.22},{"x":1567658880000,"y":0.15},{"x":1567658940000,"y":0.33},{"x":1567659000000,"y":0.28},{"x":1567659060000,"y":0.2},{"x":1567659120000,"y":0.24},{"x":1567659180000,"y":0.16},{"x":1567659240000,"y":0.31},{"x":1567659300000,"y":0.26},{"x":1567659360000,"y":0.19},{"x":1567659420000,"y":0.17},{"x":1567659480000,"y":0.2},{"x":1567659540000,"y":0.3},{"x":1567659600000,"y":0.93},{"x":1567659660000,"y":0.16},{"x":1567659720000,"y":0.17},{"x":1567659780000,"y":0.14},{"x":1567659840000,"y":0.2},{"x":1567659900000,"y":0.47},{"x":1567659960000,"y":0.16},{"x":1567660020000,"y":0.16},{"x":1567660080000,"y":0.22},{"x":1567660140000,"y":0.46},{"x":1567660200000,"y":0.39},{"x":1567660260000,"y":0.19},{"x":1567660320000,"y":0.17},{"x":1567660380000,"y":0.17},{"x":1567660440000,"y":0.17},{"x":1567660500000,"y":0.41},{"x":1567660560000,"y":0.21},{"x":1567660620000,"y":0.26},{"x":1567660680000,"y":0.2},{"x":1567660740000,"y":0.18},{"x":1567660800000,"y":0.46},{"x":1567660860000,"y":0.17},{"x":1567660920000,"y":0.15},{"x":1567660980000,"y":0.19},{"x":1567661040000,"y":0.15},{"x":1567661100000,"y":0.4},{"x":1567661160000,"y":0.19},{"x":1567661220000,"y":0.16},{"x":1567661280000,"y":0.17},{"x":1567661340000,"y":0.18},{"x":1567661400000,"y":0.49},{"x":1567661460000,"y":0.17},{"x":1567661520000,"y":0.16},{"x":1567661580000,"y":0.15},{"x":1567661640000,"y":0.15},{"x":1567661700000,"y":0.35},{"x":1567661760000,"y":0.22},{"x":1567661820000,"y":0.13},{"x":1567661880000,"y":0.18},{"x":1567661940000,"y":0.21},{"x":1567662000000,"y":0.22},{"x":1567662060000,"y":0.29},{"x":1567662120000,"y":0.1},{"x":1567662180000,"y":0.14},{"x":1567662240000,"y":0.11},{"x":1567662300000,"y":0.17},{"x":1567662360000,"y":0.23},{"x":1567662420000,"y":0.13},{"x":1567662480000,"y":0.17},{"x":1567662540000,"y":0.11},{"x":1567662600000,"y":0.18},{"x":1567662660000,"y":0.2},{"x":1567662720000,"y":0.12},{"x":1567662780000,"y":0.1},{"x":1567662840000,"y":0.11},{"x":1567662900000,"y":0.21},{"x":1567662960000,"y":4.9},{"x":1567663020000,"y":0.24},{"x":1567663080000,"y":0.08},{"x":1567663140000,"y":0.07},{"x":1567663200000,"y":0.29},{"x":1567663260000,"y":0.24},{"x":1567663320000,"y":0.09},{"x":1567663380000,"y":0.1},{"x":1567663440000,"y":0.15},{"x":1567663500000,"y":0.19},{"x":1567663560000,"y":0.22},{"x":1567663620000,"y":0.14},{"x":1567663680000,"y":0.11},{"x":1567663740000,"y":0.23},{"x":1567663800000,"y":0.2},{"x":1567663860000,"y":0.17},{"x":1567663920000,"y":0.29},{"x":1567663980000,"y":0.1},{"x":1567664040000,"y":0.1},{"x":1567664100000,"y":0.18},{"x":1567664160000,"y":0.14},{"x":1567664220000,"y":0.32},{"x":1567664280000,"y":0.15},{"x":1567664340000,"y":0.1},{"x":1567664400000,"y":0.2},{"x":1567664460000,"y":0.08},{"x":1567664520000,"y":0.23},{"x":1567664580000,"y":0.08},{"x":1567664640000,"y":0.11},{"x":1567664700000,"y":0.2},{"x":1567664760000,"y":0.12},{"x":1567664820000,"y":0.24},{"x":1567664880000,"y":0.07},{"x":1567664940000,"y":0.11},{"x":1567665000000,"y":0.19},{"x":1567665060000,"y":0.13},{"x":1567665120000,"y":0.23},{"x":1567665180000,"y":0.11},{"x":1567665240000,"y":0.06},{"x":1567665300000,"y":0.25},{"x":1567665360000,"y":0.13},{"x":1567665420000,"y":0.26},{"x":1567665480000,"y":0.13},{"x":1567665540000,"y":0.28},{"x":1567665600000,"y":0.18},{"x":1567665660000,"y":0.1},{"x":1567665720000,"y":0.25},{"x":1567665780000,"y":0.11},{"x":1567665840000,"y":0.13},{"x":1567665900000,"y":0.23},{"x":1567665960000,"y":0.07},{"x":1567666020000,"y":0.15},{"x":1567666080000,"y":0.27},{"x":1567666140000,"y":0.1},{"x":1567666200000,"y":0.12},{"x":1567666260000,"y":0.1},{"x":1567666320000,"y":0.16},{"x":1567666380000,"y":0.23},{"x":1567666440000,"y":0.1},{"x":1567666500000,"y":0.17},{"x":1567666560000,"y":0.11},{"x":1567666620000,"y":0.1},{"x":1567666680000,"y":0.27},{"x":1567666740000,"y":0.11},{"x":1567666800000,"y":0.23},{"x":1567666860000,"y":0.1},{"x":1567666920000,"y":0.1},{"x":1567666980000,"y":0.23},{"x":1567667040000,"y":0.07},{"x":1567667100000,"y":0.17},{"x":1567667160000,"y":0.1},{"x":1567667220000,"y":0.07},{"x":1567667280000,"y":0.26},{"x":1567667340000,"y":0.37},{"x":1567667400000,"y":0.21},{"x":1567667460000,"y":0.13},{"x":1567667520000,"y":0.16},{"x":1567667580000,"y":0.21},{"x":1567667640000,"y":0.13},{"x":1567667700000,"y":0.26},{"x":1567667760000,"y":0.15},{"x":1567667820000,"y":0.14},{"x":1567667880000,"y":0.27},{"x":1567667940000,"y":0.14},{"x":1567668000000,"y":0.22},{"x":1567668060000,"y":0.14},{"x":1567668120000,"y":0.1},{"x":1567668180000,"y":0.26},{"x":1567668240000,"y":0.1},{"x":1567668300000,"y":0.22},{"x":1567668360000,"y":0.15},{"x":1567668420000,"y":0.09},{"x":1567668480000,"y":0.1},{"x":1567668540000,"y":0.3},{"x":1567668600000,"y":0.22},{"x":1567668660000,"y":0.13},{"x":1567668720000,"y":0.12},{"x":1567668780000,"y":0.15},{"x":1567668840000,"y":0.32},{"x":1567668900000,"y":0.16},{"x":1567668960000,"y":0.07},{"x":1567669020000,"y":0.11},{"x":1567669080000,"y":0.13},{"x":1567669140000,"y":0.39},{"x":1567669200000,"y":0.22},{"x":1567669260000,"y":0.11},{"x":1567669320000,"y":0.14},{"x":1567669380000,"y":0.09},{"x":1567669440000,"y":0.26},{"x":1567669500000,"y":0.17},{"x":1567669560000,"y":0.08},{"x":1567669620000,"y":0.1},{"x":1567669680000,"y":0.1},{"x":1567669740000,"y":0.21},{"x":1567669800000,"y":0.2},{"x":1567669860000,"y":0.12},{"x":1567669920000,"y":0.08},{"x":1567669980000,"y":0.09},{"x":1567670040000,"y":0.21},{"x":1567670100000,"y":0.31},{"x":1567670160000,"y":1.73},{"x":1567670220000,"y":0.12},{"x":1567670280000,"y":0.07},{"x":1567670340000,"y":0.24},{"x":1567670400000,"y":0.31},{"x":1567670460000,"y":0.1},{"x":1567670520000,"y":0.09},{"x":1567670580000,"y":0.09},{"x":1567670640000,"y":0.08},{"x":1567670700000,"y":0.37},{"x":1567670760000,"y":0.13},{"x":1567670820000,"y":0.07},{"x":1567670880000,"y":0.09},{"x":1567670940000,"y":0.29},{"x":1567671000000,"y":0.29},{"x":1567671060000,"y":0.08},{"x":1567671120000,"y":0.09},{"x":1567671180000,"y":0.12},{"x":1567671240000,"y":0.14},{"x":1567671300000,"y":0.41},{"x":1567671360000,"y":0.12},{"x":1567671420000,"y":0.09},{"x":1567671480000,"y":0.08},{"x":1567671540000,"y":0.11},{"x":1567671600000,"y":0.32},{"x":1567671660000,"y":0.09},{"x":1567671720000,"y":0.16},{"x":1567671780000,"y":0.06},{"x":1567671840000,"y":0.1},{"x":1567671900000,"y":0.45},{"x":1567671960000,"y":0.13},{"x":1567672020000,"y":0.13},{"x":1567672080000,"y":0.07},{"x":1567672140000,"y":0.13},{"x":1567672200000,"y":0.43},{"x":1567672260000,"y":0.1},{"x":1567672320000,"y":0.09},{"x":1567672380000,"y":0.09},{"x":1567672440000,"y":0.14},{"x":1567672500000,"y":0.39},{"x":1567672560000,"y":0.12},{"x":1567672620000,"y":0.12},{"x":1567672680000,"y":0.1},{"x":1567672740000,"y":0.27},{"x":1567672800000,"y":0.31},{"x":1567672860000,"y":0.09},{"x":1567672920000,"y":0.11},{"x":1567672980000,"y":0.07},{"x":1567673040000,"y":0.12},{"x":1567673100000,"y":0.22},{"x":1567673160000,"y":0.29},{"x":1567673220000,"y":0.11},{"x":1567673280000,"y":0.16},{"x":1567673340000,"y":0.08},{"x":1567673400000,"y":0.17},{"x":1567673460000,"y":0.27},{"x":1567673520000,"y":0.14},{"x":1567673580000,"y":0.11},{"x":1567673640000,"y":0.08},{"x":1567673700000,"y":0.1},{"x":1567673760000,"y":0.23},{"x":1567673820000,"y":0.05},{"x":1567673880000,"y":0.09},{"x":1567673940000,"y":0.08},{"x":1567674000000,"y":0.29},{"x":1567674060000,"y":0.25},{"x":1567674120000,"y":0.11},{"x":1567674180000,"y":0.08},{"x":1567674240000,"y":0.1},{"x":1567674300000,"y":0.19},{"x":1567674360000,"y":0.23},{"x":1567674420000,"y":0.11},{"x":1567674480000,"y":0.05},{"x":1567674540000,"y":0.27},{"x":1567674600000,"y":0.17},{"x":1567674660000,"y":0.23},{"x":1567674720000,"y":0.14},{"x":1567674780000,"y":0.08},{"x":1567674840000,"y":0.09},{"x":1567674900000,"y":0.12},{"x":1567674960000,"y":0.08},{"x":1567675020000,"y":0.23},{"x":1567675080000,"y":0.08},{"x":1567675140000,"y":0.09},{"x":1567675200000,"y":0.17},{"x":1567675260000,"y":0.08},{"x":1567675320000,"y":0.25},{"x":1567675380000,"y":0.07},{"x":1567675440000,"y":0.08},{"x":1567675500000,"y":0.18},{"x":1567675560000,"y":0.09},{"x":1567675620000,"y":0.22},{"x":1567675680000,"y":0.11},{"x":1567675740000,"y":0.09},{"x":1567675800000,"y":0.22},{"x":1567675860000,"y":0.12},{"x":1567675920000,"y":0.28},{"x":1567675980000,"y":0.11},{"x":1567676040000,"y":0.12},{"x":1567676100000,"y":0.21},{"x":1567676160000,"y":0.08},{"x":1567676220000,"y":0.24},{"x":1567676280000,"y":0.09},{"x":1567676340000,"y":0.26},{"x":1567676400000,"y":0.25},{"x":1567676460000,"y":0.09},{"x":1567676520000,"y":0.26},{"x":1567676580000,"y":1.38},{"x":1567676640000,"y":0.1},{"x":1567676700000,"y":0.18},{"x":1567676760000,"y":0.09},{"x":1567676820000,"y":0.27},{"x":1567676880000,"y":0.07},{"x":1567676940000,"y":0.1},{"x":1567677000000,"y":0.24},{"x":1567677060000,"y":5.78},{"x":1567677120000,"y":0.39},{"x":1567677180000,"y":0.11},{"x":1567677240000,"y":0.13},{"x":1567677300000,"y":0.15},{"x":1567677360000,"y":0.09},{"x":1567677420000,"y":1.48},{"x":1567677480000,"y":0.09},{"x":1567677540000,"y":0.1},{"x":1567677600000,"y":0.17},{"x":1567677660000,"y":0.07},{"x":1567677720000,"y":0.07},{"x":1567677780000,"y":0.21},{"x":1567677840000,"y":0.07},{"x":1567677900000,"y":0.12},{"x":1567677960000,"y":0.11},{"x":1567678020000,"y":0.09},{"x":1567678080000,"y":0.24},{"x":1567678140000,"y":0.28},{"x":1567678200000,"y":0.19},{"x":1567678260000,"y":0.11},{"x":1567678320000,"y":0.13},{"x":1567678380000,"y":0.26},{"x":1567678440000,"y":0.1},{"x":1567678500000,"y":0.21},{"x":1567678560000,"y":0.11},{"x":1567678620000,"y":0.14},{"x":1567678680000,"y":0.26},{"x":1567678740000,"y":0.07},{"x":1567678800000,"y":0.23},{"x":1567678860000,"y":0.12},{"x":1567678920000,"y":0.1},{"x":1567678980000,"y":0.29},{"x":1567679040000,"y":0.17},{"x":1567679100000,"y":0.26},{"x":1567679160000,"y":0.09},{"x":1567679220000,"y":0.14},{"x":1567679280000,"y":0.42},{"x":1567679340000,"y":0.08},{"x":1567679400000,"y":0.17},{"x":1567679460000,"y":0.13},{"x":1567679520000,"y":0.11},{"x":1567679580000,"y":0.19},{"x":1567679640000,"y":0.17},{"x":1567679700000,"y":0.21},{"x":1567679760000,"y":0.1},{"x":1567679820000,"y":0.13},{"x":1567679880000,"y":0.12},{"x":1567679940000,"y":0.41},{"x":1567680000000,"y":0.17},{"x":1567680060000,"y":0.11},{"x":1567680120000,"y":0.15},{"x":1567680180000,"y":0.07},{"x":1567680240000,"y":0.22},{"x":1567680300000,"y":0.2},{"x":1567680360000,"y":0.12},{"x":1567680420000,"y":0.12},{"x":1567680480000,"y":0.11},{"x":1567680540000,"y":0.26},{"x":1567680600000,"y":0.26},{"x":1567680660000,"y":0.1},{"x":1567680720000,"y":0.07},{"x":1567680780000,"y":0.1},{"x":1567680840000,"y":0.35},{"x":1567680900000,"y":0.15},{"x":1567680960000,"y":0.09},{"x":1567681020000,"y":0.12},{"x":1567681080000,"y":0.16},{"x":1567681140000,"y":0.29},{"x":1567681200000,"y":0.22},{"x":1567681260000,"y":0.11},{"x":1567681320000,"y":0.13},{"x":1567681380000,"y":0.08},{"x":1567681440000,"y":0.28},{"x":1567681500000,"y":0.25},{"x":1567681560000,"y":0.11},{"x":1567681620000,"y":0.1},{"x":1567681680000,"y":0.09},{"x":1567681740000,"y":0.18},{"x":1567681800000,"y":0.32},{"x":1567681860000,"y":0.13},{"x":1567681920000,"y":0.1},{"x":1567681980000,"y":0.1},{"x":1567682040000,"y":0.11},{"x":1567682100000,"y":0.37},{"x":1567682160000,"y":0.11},{"x":1567682220000,"y":0.08},{"x":1567682280000,"y":0.09},{"x":1567682340000,"y":0.1},{"x":1567682400000,"y":0.34},{"x":1567682460000,"y":0.12},{"x":1567682520000,"y":0.11},{"x":1567682580000,"y":0.08},{"x":1567682640000,"y":0.1},{"x":1567682700000,"y":1.81},{"x":1567682760000,"y":0.1},{"x":1567682820000,"y":0.1},{"x":1567682880000,"y":0.1},{"x":1567682940000,"y":0.12},{"x":1567683000000,"y":0.33},{"x":1567683060000,"y":0.12},{"x":1567683120000,"y":0.11},{"x":1567683180000,"y":0.13},{"x":1567683240000,"y":0.1},{"x":1567683300000,"y":0.42},{"x":1567683360000,"y":0.16},{"x":1567683420000,"y":0.13},{"x":1567683480000,"y":0.15},{"x":1567683540000,"y":0.37},{"x":1567683600000,"y":0.35},{"x":1567683660000,"y":0.13},{"x":1567683720000,"y":0.16},{"x":1567683780000,"y":0.12},{"x":1567683840000,"y":0.14},{"x":1567683900000,"y":2.41},{"x":1567683960000,"y":24.72},{"x":1567684020000,"y":0.15},{"x":1567684080000,"y":0.17},{"x":1567684140000,"y":0.17},{"x":1567684200000,"y":0.13},{"x":1567684260000,"y":0.32},{"x":1567684320000,"y":0.21},{"x":1567684380000,"y":0.13},{"x":1567684440000,"y":0.19},{"x":1567684500000,"y":0.22},{"x":1567684560000,"y":0.28},{"x":1567684620000,"y":0.1},{"x":1567684680000,"y":0.1},{"x":1567684740000,"y":0.15},{"x":1567684800000,"y":0.28},{"x":1567684860000,"y":4.06},{"x":1567684920000,"y":0.22},{"x":1567684980000,"y":0.12},{"x":1567685040000,"y":0.14},{"x":1567685100000,"y":0.25},{"x":1567685160000,"y":0.27},{"x":1567685220000,"y":0.12},{"x":1567685280000,"y":0.22},{"x":1567685340000,"y":0.24},{"x":1567685400000,"y":0.22},{"x":1567685460000,"y":0.24},{"x":1567685520000,"y":0.16},{"x":1567685580000,"y":0.13},{"x":1567685640000,"y":0.39},{"x":1567685700000,"y":0.25},{"x":1567685760000,"y":0.38},{"x":1567685820000,"y":0.26},{"x":1567685880000,"y":0.17},{"x":1567685940000,"y":0.18},{"x":1567686000000,"y":0.65},{"x":1567686060000,"y":0.35},{"x":1567686120000,"y":0.17},{"x":1567686180000,"y":0.2},{"x":1567686240000,"y":0.17},{"x":1567686300000,"y":0.21},{"x":1567686360000,"y":0.17},{"x":1567686420000,"y":0.32},{"x":1567686480000,"y":0.18},{"x":1567686540000,"y":0.27},{"x":1567686600000,"y":0.23},{"x":1567686660000,"y":0.2},{"x":1567686720000,"y":0.32},{"x":1567686780000,"y":0.2},{"x":1567686840000,"y":0.16},{"x":1567686900000,"y":0.27},{"x":1567686960000,"y":0.14},{"x":1567687020000,"y":0.29},{"x":1567687080000,"y":0.15},{"x":1567687140000,"y":0.27},{"x":1567687200000,"y":0.29},{"x":1567687260000,"y":0.19},{"x":1567687320000,"y":0.31},{"x":1567687380000,"y":0.15},{"x":1567687440000,"y":0.19},{"x":1567687500000,"y":0.23},{"x":1567687560000,"y":0.16},{"x":1567687620000,"y":0.33},{"x":1567687680000,"y":0.19},{"x":1567687740000,"y":0.26},{"x":1567687800000,"y":0.25},{"x":1567687860000,"y":0.16},{"x":1567687920000,"y":0.35},{"x":1567687980000,"y":0.21},{"x":1567688040000,"y":0.17},{"x":1567688100000,"y":0.29},{"x":1567688160000,"y":0.21},{"x":1567688220000,"y":0.32},{"x":1567688280000,"y":0.16},{"x":1567688340000,"y":0.15},{"x":1567688400000,"y":1.25},{"x":1567688460000,"y":0.19},{"x":1567688520000,"y":0.31},{"x":1567688580000,"y":0.17},{"x":1567688640000,"y":0.18},{"x":1567688700000,"y":0.3},{"x":1567688760000,"y":0.2},{"x":1567688820000,"y":0.24},{"x":1567688880000,"y":0.36},{"x":1567688940000,"y":0.31},{"x":1567689000000,"y":0.28},{"x":1567689060000,"y":0.19},{"x":1567689120000,"y":0.2},{"x":1567689180000,"y":0.39},{"x":1567689240000,"y":0.18},{"x":1567689300000,"y":0.32},{"x":1567689360000,"y":0.21},{"x":1567689420000,"y":0.22},{"x":1567689480000,"y":0.32},{"x":1567689540000,"y":0.16},{"x":1567689600000,"y":0.3},{"x":1567689660000,"y":0.17},{"x":1567689720000,"y":0.21},{"x":1567689780000,"y":0.32},{"x":1567689840000,"y":0.19},{"x":1567689900000,"y":0.33},{"x":1567689960000,"y":0.19},{"x":1567690020000,"y":0.18},{"x":1567690080000,"y":0.32},{"x":1567690140000,"y":0.22},{"x":1567690200000,"y":0.27},{"x":1567690260000,"y":0.21},{"x":1567690320000,"y":0.17},{"x":1567690380000,"y":0.31},{"x":1567690440000,"y":0.18},{"x":1567690500000,"y":0.25},{"x":1567690560000,"y":0.19},{"x":1567690620000,"y":0.19},{"x":1567690680000,"y":0.34},{"x":1567690740000,"y":0.37},{"x":1567690800000,"y":0.28},{"x":1567690860000,"y":0.16},{"x":1567690920000,"y":0.16},{"x":1567690980000,"y":0.16},{"x":1567691040000,"y":0.39},{"x":1567691100000,"y":0.27},{"x":1567691160000,"y":0.24},{"x":1567691220000,"y":0.21},{"x":1567691280000,"y":0.24},{"x":1567691340000,"y":0.4},{"x":1567691400000,"y":0.24},{"x":1567691460000,"y":0.17},{"x":1567691520000,"y":0.2},{"x":1567691580000,"y":0.16},{"x":1567691640000,"y":0.34},{"x":1567691700000,"y":0.34},{"x":1567691760000,"y":0.2},{"x":1567691820000,"y":0.18},{"x":1567691880000,"y":0.16},{"x":1567691940000,"y":0.3},{"x":1567692000000,"y":0.29},{"x":1567692060000,"y":0.21},{"x":1567692120000,"y":0.2},{"x":1567692180000,"y":0.17},{"x":1567692240000,"y":0.33},{"x":1567692300000,"y":0.24},{"x":1567692360000,"y":0.17},{"x":1567692420000,"y":0.16},{"x":1567692480000,"y":0.16},{"x":1567692540000,"y":0.41},{"x":1567692600000,"y":0.24},{"x":1567692660000,"y":0.18},{"x":1567692720000,"y":0.21},{"x":1567692780000,"y":0.18},{"x":1567692840000,"y":0.36},{"x":1567692900000,"y":0.27},{"x":1567692960000,"y":0.2},{"x":1567693020000,"y":0.17},{"x":1567693080000,"y":0.15},{"x":1567693140000,"y":0.2},{"x":1567693200000,"y":0.51},{"x":1567693260000,"y":0.16},{"x":1567693320000,"y":0.19},{"x":1567693380000,"y":0.21},{"x":1567693440000,"y":0.2},{"x":1567693500000,"y":0.47},{"x":1567693560000,"y":0.2},{"x":1567693620000,"y":0.19},{"x":1567693680000,"y":0.16},{"x":1567693740000,"y":0.21},{"x":1567693800000,"y":0.41},{"x":1567693860000,"y":0.18},{"x":1567693920000,"y":0.17},{"x":1567693980000,"y":0.21},{"x":1567694040000,"y":0.17},{"x":1567694100000,"y":0.42},{"x":1567694160000,"y":0.17},{"x":1567694220000,"y":0.2},{"x":1567694280000,"y":0.2},{"x":1567694340000,"y":0.24},{"x":1567694400000,"y":0.43},{"x":1567694460000,"y":0.19},{"x":1567694520000,"y":0.17},{"x":1567694580000,"y":0.21},{"x":1567694640000,"y":0.19},{"x":1567694700000,"y":0.44},{"x":1567694760000,"y":0.17},{"x":1567694820000,"y":0.24},{"x":1567694880000,"y":0.2},{"x":1567694940000,"y":0.2},{"x":1567695000000,"y":0.35},{"x":1567695060000,"y":0.22},{"x":1567695120000,"y":0.18},{"x":1567695180000,"y":0.17},{"x":1567695240000,"y":0.18},{"x":1567695300000,"y":0.35},{"x":1567695360000,"y":0.15},{"x":1567695420000,"y":0.12},{"x":1567695480000,"y":0.14},{"x":1567695540000,"y":0.1},{"x":1567695600000,"y":0.31},{"x":1567695660000,"y":0.29},{"x":1567695720000,"y":0.1},{"x":1567695780000,"y":0.1},{"x":1567695840000,"y":0.09},{"x":1567695900000,"y":0.28},{"x":1567695960000,"y":0.25},{"x":1567696020000,"y":0.16},{"x":1567696080000,"y":0.1},{"x":1567696140000,"y":0.26},{"x":1567696200000,"y":0.22},{"x":1567696260000,"y":0.27},{"x":1567696320000,"y":0.11},{"x":1567696380000,"y":0.11},{"x":1567696440000,"y":0.1},{"x":1567696500000,"y":0.17},{"x":1567696560000,"y":0.23},{"x":1567696620000,"y":0.12},{"x":1567696680000,"y":0.15},{"x":1567696740000,"y":0.13},{"x":1567696800000,"y":0.21},{"x":1567696860000,"y":0.32},{"x":1567696920000,"y":0.1},{"x":1567696980000,"y":0.09},{"x":1567697040000,"y":0.1},{"x":1567697100000,"y":0.19},{"x":1567697160000,"y":0.29},{"x":1567697220000,"y":0.16},{"x":1567697280000,"y":0.15},{"x":1567697340000,"y":0.11},{"x":1567697400000,"y":0.21},{"x":1567697460000,"y":0.13},{"x":1567697520000,"y":0.24},{"x":1567697580000,"y":0.1},{"x":1567697640000,"y":0.08},{"x":1567697700000,"y":0.21},{"x":1567697760000,"y":0.15},{"x":1567697820000,"y":0.28},{"x":1567697880000,"y":0.09},{"x":1567697940000,"y":0.27},{"x":1567698000000,"y":0.19},{"x":1567698060000,"y":0.08},{"x":1567698120000,"y":0.3},{"x":1567698180000,"y":0.07},{"x":1567698240000,"y":0.15},{"x":1567698300000,"y":0.12},{"x":1567698360000,"y":0.06},{"x":1567698420000,"y":0.24},{"x":1567698480000,"y":0.09},{"x":1567698540000,"y":0.08},{"x":1567698600000,"y":0.14},{"x":1567698660000,"y":0.12},{"x":1567698720000,"y":0.33},{"x":1567698780000,"y":0.11},{"x":1567698840000,"y":0.1},{"x":1567698900000,"y":0.24},{"x":1567698960000,"y":0.11},{"x":1567699020000,"y":0.25},{"x":1567699080000,"y":0.1},{"x":1567699140000,"y":0.1},{"x":1567699200000,"y":0.22},{"x":1567699260000,"y":0.1},{"x":1567699320000,"y":0.27},{"x":1567699380000,"y":0.11},{"x":1567699440000,"y":0.1},{"x":1567699500000,"y":0.15},{"x":1567699560000,"y":0.1},{"x":1567699620000,"y":0.06},{"x":1567699680000,"y":0.21},{"x":1567699740000,"y":0.28},{"x":1567699800000,"y":0.17},{"x":1567699860000,"y":0.11},{"x":1567699920000,"y":0.15},{"x":1567699980000,"y":0.27},{"x":1567700040000,"y":0.13},{"x":1567700100000,"y":0.22},{"x":1567700160000,"y":0.17},{"x":1567700220000,"y":0.13},{"x":1567700280000,"y":0.29},{"x":1567700340000,"y":0.11},{"x":1567700400000,"y":0.25},{"x":1567700460000,"y":0.1},{"x":1567700520000,"y":0.1},{"x":1567700580000,"y":0.23},{"x":1567700640000,"y":0.11},{"x":1567700700000,"y":0.19},{"x":1567700760000,"y":0.13},{"x":1567700820000,"y":0.15},{"x":1567700880000,"y":0.31},{"x":1567700940000,"y":0.07},{"x":1567701000000,"y":0.15},{"x":1567701060000,"y":0.08},{"x":1567701120000,"y":0.12},{"x":1567701180000,"y":0.22},{"x":1567701240000,"y":0.11},{"x":1567701300000,"y":0.26},{"x":1567701360000,"y":0.2},{"x":1567701420000,"y":0.11},{"x":1567701480000,"y":0.22},{"x":1567701540000,"y":0.29},{"x":1567701600000,"y":0.24},{"x":1567701660000,"y":0.12},{"x":1567701720000,"y":0.1},{"x":1567701780000,"y":0.11},{"x":1567701840000,"y":0.28},{"x":1567701900000,"y":0.2},{"x":1567701960000,"y":0.11},{"x":1567702020000,"y":0.13},{"x":1567702080000,"y":0.14},{"x":1567702140000,"y":0.22},{"x":1567702200000,"y":0.24},{"x":1567702260000,"y":0.08},{"x":1567702320000,"y":0.17},{"x":1567702380000,"y":0.08},{"x":1567702440000,"y":0.33},{"x":1567702500000,"y":0.19},{"x":1567702560000,"y":0.28},{"x":1567702620000,"y":0.11},{"x":1567702680000,"y":0.15},{"x":1567702740000,"y":0.28},{"x":1567702800000,"y":0.21},{"x":1567702860000,"y":0.14},{"x":1567702920000,"y":0.28},{"x":1567702980000,"y":0.12},{"x":1567703040000,"y":0.25},{"x":1567703100000,"y":0.22},{"x":1567703160000,"y":0.13},{"x":1567703220000,"y":0.11},{"x":1567703280000,"y":0.1},{"x":1567703340000,"y":0.48},{"x":1567703400000,"y":0.24},{"x":1567703460000,"y":0.07},{"x":1567703520000,"y":0.09},{"x":1567703580000,"y":0.15},{"x":1567703640000,"y":0.28},{"x":1567703700000,"y":0.25},{"x":1567703760000,"y":0.19},{"x":1567703820000,"y":0.15},{"x":1567703880000,"y":0.17},{"x":1567703940000,"y":0.58},{"x":1567704000000,"y":1.34},{"x":1567704060000,"y":0.7},{"x":1567704120000,"y":0.68},{"x":1567704180000,"y":0.13},{"x":1567704240000,"y":0.22},{"x":1567704300000,"y":0.43},{"x":1567704360000,"y":0.14},{"x":1567704420000,"y":0.12},{"x":1567704480000,"y":0.11},{"x":1567704540000,"y":0.13},{"x":1567704600000,"y":0.39},{"x":1567704660000,"y":0.12},{"x":1567704720000,"y":0.17},{"x":1567704780000,"y":0.14},{"x":1567704840000,"y":19.34},{"x":1567704900000,"y":0.78},{"x":1567704960000,"y":0.21},{"x":1567705020000,"y":0.12},{"x":1567705080000,"y":0.17},{"x":1567705140000,"y":0.33},{"x":1567705200000,"y":19.87},{"x":1567705260000,"y":14.65},{"x":1567705320000,"y":5.35},{"x":1567705380000,"y":0.39},{"x":1567705440000,"y":0.14},{"x":1567705500000,"y":0.45},{"x":1567705560000,"y":19.49},{"x":1567705620000,"y":0.15},{"x":1567705680000,"y":0.36},{"x":1567705740000,"y":18.77},{"x":1567705800000,"y":0.63},{"x":1567705860000,"y":0.14},{"x":1567705920000,"y":0.84},{"x":1567705980000,"y":19.47},{"x":1567706040000,"y":19.1},{"x":1567706100000,"y":0.41},{"x":1567706160000,"y":0.35},{"x":1567706220000,"y":0.14},{"x":1567706280000,"y":0.1},{"x":1567706340000,"y":0.15},{"x":1567706400000,"y":0.24},{"x":1567706460000,"y":0.32},{"x":1567706520000,"y":0.14},{"x":1567706580000,"y":0.12},{"x":1567706640000,"y":0.12},{"x":1567706700000,"y":0.25},{"x":1567706760000,"y":5.11},{"x":1567706820000,"y":0.15},{"x":1567706880000,"y":0.15},{"x":1567706940000,"y":0.45},{"x":1567707000000,"y":0.21},{"x":1567707060000,"y":0.3},{"x":1567707120000,"y":0.17},{"x":1567707180000,"y":0.14},{"x":1567707240000,"y":0.15},{"x":1567707300000,"y":0.31},{"x":1567707360000,"y":0.34},{"x":1567707420000,"y":0.17},{"x":1567707480000,"y":0.15},{"x":1567707540000,"y":0.14},{"x":1567707600000,"y":0.27},{"x":1567707660000,"y":0.31},{"x":1567707720000,"y":0.15},{"x":1567707780000,"y":0.15},{"x":1567707840000,"y":0.2},{"x":1567707900000,"y":0.4},{"x":1567707960000,"y":0.33},{"x":1567708020000,"y":0.16},{"x":1567708080000,"y":0.16},{"x":1567708140000,"y":0.17},{"x":1567708200000,"y":0.26},{"x":1567708260000,"y":0.31},{"x":1567708320000,"y":0.2},{"x":1567708380000,"y":0.17},{"x":1567708440000,"y":0.18},{"x":1567708500000,"y":0.26},{"x":1567708560000,"y":0.21},{"x":1567708620000,"y":0.38},{"x":1567708680000,"y":0.19},{"x":1567708740000,"y":0.4},{"x":1567708800000,"y":0.35},{"x":1567708860000,"y":0.27},{"x":1567708920000,"y":0.46},{"x":1567708980000,"y":0.2},{"x":1567709040000,"y":0.17},{"x":1567709100000,"y":0.27},{"x":1567709160000,"y":0.25},{"x":1567709220000,"y":0.35},{"x":1567709280000,"y":0.14},{"x":1567709340000,"y":0.22},{"x":1567709400000,"y":0.25},{"x":1567709460000,"y":0.14},{"x":1567709520000,"y":0.39},{"x":1567709580000,"y":0.16},{"x":1567709640000,"y":0.18},{"x":1567709700000,"y":0.26},{"x":1567709760000,"y":0.14},{"x":1567709820000,"y":0.29},{"x":1567709880000,"y":0.15},{"x":1567709940000,"y":0.13},{"x":1567710000000,"y":0.33},{"x":1567710060000,"y":0.13},{"x":1567710120000,"y":0.51},{"x":1567710180000,"y":0.17},{"x":1567710240000,"y":0.2},{"x":1567710300000,"y":0.28},{"x":1567710360000,"y":0.19},{"x":1567710420000,"y":0.33},{"x":1567710480000,"y":0.16},{"x":1567710540000,"y":0.42},{"x":1567710600000,"y":0.26},{"x":1567710660000,"y":0.18},{"x":1567710720000,"y":0.18},{"x":1567710780000,"y":0.33},{"x":1567710840000,"y":0.19},{"x":1567710900000,"y":0.31},{"x":1567710960000,"y":0.18},{"x":1567711020000,"y":0.13},{"x":1567711080000,"y":0.3},{"x":1567711140000,"y":0.22},{"x":1567711200000,"y":0.26},{"x":1567711260000,"y":0.18},{"x":1567711320000,"y":0.23},{"x":1567711380000,"y":0.27},{"x":1567711440000,"y":0.16},{"x":1567711500000,"y":0.21},{"x":1567711560000,"y":0.14},{"x":1567711620000,"y":0.19},{"x":1567711680000,"y":0.27},{"x":1567711740000,"y":0.17},{"x":1567711800000,"y":0.2},{"x":1567711860000,"y":0.3},{"x":1567711920000,"y":0.15},{"x":1567711980000,"y":0.25},{"x":1567712040000,"y":0.14},{"x":1567712100000,"y":0.17},{"x":1567712160000,"y":0.18},{"x":1567712220000,"y":0.15},{"x":1567712280000,"y":0.3},{"x":1567712340000,"y":0.3},{"x":1567712400000,"y":0.21},{"x":1567712460000,"y":0.13},{"x":1567712520000,"y":0.12},{"x":1567712580000,"y":0.28},{"x":1567712640000,"y":0.17},{"x":1567712700000,"y":0.24},{"x":1567712760000,"y":0.12},{"x":1567712820000,"y":0.14},{"x":1567712880000,"y":0.11},{"x":1567712940000,"y":0.24},{"x":1567713000000,"y":1.16},{"x":1567713060000,"y":0.1},{"x":1567713120000,"y":0.14},{"x":1567713180000,"y":0.11},{"x":1567713240000,"y":0.27},{"x":1567713300000,"y":0.25},{"x":1567713360000,"y":0.19},{"x":1567713420000,"y":0.1},{"x":1567713480000,"y":0.09},{"x":1567713540000,"y":0.27},{"x":1567713600000,"y":0.29},{"x":1567713660000,"y":0.12},{"x":1567713720000,"y":0.09},{"x":1567713780000,"y":0.57},{"x":1567713840000,"y":0.2},{"x":1567713900000,"y":0.15},{"x":1567713960000,"y":0.11},{"x":1567714020000,"y":0.09},{"x":1567714080000,"y":0.1},{"x":1567714140000,"y":0.4},{"x":1567714200000,"y":0.2},{"x":1567714260000,"y":0.15},{"x":1567714320000,"y":0.15},{"x":1567714380000,"y":0.13},{"x":1567714440000,"y":0.29},{"x":1567714500000,"y":0.22},{"x":1567714560000,"y":0.14},{"x":1567714620000,"y":0.1},{"x":1567714680000,"y":0.12},{"x":1567714740000,"y":0.2},{"x":1567714800000,"y":0.34},{"x":1567714860000,"y":0.14},{"x":1567714920000,"y":0.12},{"x":1567714980000,"y":0.14},{"x":1567715040000,"y":0.1},{"x":1567715100000,"y":0.36},{"x":1567715160000,"y":0.14},{"x":1567715220000,"y":0.15},{"x":1567715280000,"y":0.16},{"x":1567715340000,"y":0.13},{"x":1567715400000,"y":0.42},{"x":1567715460000,"y":0.2},{"x":1567715520000,"y":0.16},{"x":1567715580000,"y":0.12},{"x":1567715640000,"y":0.16},{"x":1567715700000,"y":0.36},{"x":1567715760000,"y":0.16},{"x":1567715820000,"y":0.17},{"x":1567715880000,"y":0.14},{"x":1567715940000,"y":0.38},{"x":1567716000000,"y":0.38},{"x":1567716060000,"y":0.14},{"x":1567716120000,"y":0.09},{"x":1567716180000,"y":0.22},{"x":1567716240000,"y":0.14},{"x":1567716300000,"y":0.37},{"x":1567716360000,"y":0.15},{"x":1567716420000,"y":0.07},{"x":1567716480000,"y":0.12},{"x":1567716540000,"y":0.14},{"x":1567716600000,"y":1.64},{"x":1567716660000,"y":0.16},{"x":1567716720000,"y":0.17},{"x":1567716780000,"y":0.16},{"x":1567716840000,"y":0.15},{"x":1567716900000,"y":0.24},{"x":1567716960000,"y":0.3},{"x":1567717020000,"y":0.15},{"x":1567717080000,"y":0.1},{"x":1567717140000,"y":0.14},{"x":1567717200000,"y":0.3},{"x":1567717260000,"y":0.35},{"x":1567717320000,"y":0.12},{"x":1567717380000,"y":0.15},{"x":1567717440000,"y":0.2},{"x":1567717500000,"y":0.32},{"x":1567717560000,"y":0.32},{"x":1567717620000,"y":0.22},{"x":1567717680000,"y":0.24},{"x":1567717740000,"y":0.37},{"x":1567717800000,"y":0.24},{"x":1567717860000,"y":0.26},{"x":1567717920000,"y":0.21},{"x":1567717980000,"y":0.2},{"x":1567718040000,"y":0.15},{"x":1567718100000,"y":0.34},{"x":1567718160000,"y":0.35},{"x":1567718220000,"y":0.17},{"x":1567718280000,"y":0.2},{"x":1567718340000,"y":0.17},{"x":1567718400000,"y":0.27},{"x":1567718460000,"y":0.38},{"x":1567718520000,"y":0.17},{"x":1567718580000,"y":0.17},{"x":1567718640000,"y":0.19},{"x":1567718700000,"y":0.26},{"x":1567718760000,"y":0.32},{"x":1567718820000,"y":0.15},{"x":1567718880000,"y":0.17},{"x":1567718940000,"y":0.21},{"x":1567719000000,"y":0.33},{"x":1567719060000,"y":0.3},{"x":1567719120000,"y":0.18},{"x":1567719180000,"y":0.18},{"x":1567719240000,"y":0.2},{"x":1567719300000,"y":0.25},{"x":1567719360000,"y":0.2},{"x":1567719420000,"y":0.36},{"x":1567719480000,"y":0.21},{"x":1567719540000,"y":0.26},{"x":1567719600000,"y":0.31},{"x":1567719660000,"y":0.21},{"x":1567719720000,"y":0.36},{"x":1567719780000,"y":0.2},{"x":1567719840000,"y":0.23},{"x":1567719900000,"y":0.22},{"x":1567719960000,"y":0.17},{"x":1567720020000,"y":0.3},{"x":1567720080000,"y":0.18},{"x":1567720140000,"y":0.19},{"x":1567720200000,"y":0.26},{"x":1567720260000,"y":0.2},{"x":1567720320000,"y":0.39},{"x":1567720380000,"y":0.17},{"x":1567720440000,"y":0.19},{"x":1567720500000,"y":0.31},{"x":1567720560000,"y":0.22},{"x":1567720620000,"y":0.36},{"x":1567720680000,"y":0.22},{"x":1567720740000,"y":0.17},{"x":1567720800000,"y":0.26},{"x":1567720860000,"y":0.24},{"x":1567720920000,"y":0.42},{"x":1567720980000,"y":0.16},{"x":1567721040000,"y":1.48},{"x":1567721100000,"y":0.24},{"x":1567721160000,"y":0.21},{"x":1567721220000,"y":0.35},{"x":1567721280000,"y":0.2},{"x":1567721340000,"y":0.23},{"x":1567721400000,"y":0.23},{"x":1567721460000,"y":0.17},{"x":1567721520000,"y":0.43},{"x":1567721580000,"y":0.22},{"x":1567721640000,"y":0.24},{"x":1567721700000,"y":0.41},{"x":1567721760000,"y":0.21},{"x":1567721820000,"y":0.24},{"x":1567721880000,"y":0.32},{"x":1567721940000,"y":0.21},{"x":1567722000000,"y":0.26},{"x":1567722060000,"y":0.19},{"x":1567722120000,"y":0.18},{"x":1567722180000,"y":0.35},{"x":1567722240000,"y":0.25},{"x":1567722300000,"y":0.24},{"x":1567722360000,"y":0.26},{"x":1567722420000,"y":0.2},{"x":1567722480000,"y":0.3},{"x":1567722540000,"y":0.2},{"x":1567722600000,"y":0.24},{"x":1567722660000,"y":0.21},{"x":1567722720000,"y":0.18},{"x":1567722780000,"y":0.34},{"x":1567722840000,"y":0.19},{"x":1567722900000,"y":0.34},{"x":1567722960000,"y":0.2},{"x":1567723020000,"y":0.22},{"x":1567723080000,"y":0.34},{"x":1567723140000,"y":0.28},{"x":1567723200000,"y":0.31},{"x":1567723260000,"y":0.19},{"x":1567723320000,"y":0.21},{"x":1567723380000,"y":0.31},{"x":1567723440000,"y":0.2},{"x":1567723500000,"y":0.32},{"x":1567723560000,"y":0.17},{"x":1567723620000,"y":0.21},{"x":1567723680000,"y":0.21},{"x":1567723740000,"y":0.36},{"x":1567723800000,"y":0.28},{"x":1567723860000,"y":0.22},{"x":1567723920000,"y":0.2},{"x":1567723980000,"y":0.17},{"x":1567724040000,"y":0.32},{"x":1567724100000,"y":0.28},{"x":1567724160000,"y":0.18},{"x":1567724220000,"y":0.19},{"x":1567724280000,"y":0.2},{"x":1567724340000,"y":0.31},{"x":1567724400000,"y":0.3},{"x":1567724460000,"y":0.23},{"x":1567724520000,"y":0.18},{"x":1567724580000,"y":0.22},{"x":1567724640000,"y":0.31},{"x":1567724700000,"y":0.23},{"x":1567724760000,"y":0.2},{"x":1567724820000,"y":0.2},{"x":1567724880000,"y":0.19},{"x":1567724940000,"y":0.47},{"x":1567725000000,"y":0.33},{"x":1567725060000,"y":0.18},{"x":1567725120000,"y":0.18},{"x":1567725180000,"y":0.2},{"x":1567725240000,"y":0.37},{"x":1567725300000,"y":0.26},{"x":1567725360000,"y":0.17},{"x":1567725420000,"y":0.24},{"x":1567725480000,"y":0.19},{"x":1567725540000,"y":0.35},{"x":1567725600000,"y":0.28},{"x":1567725660000,"y":0.19},{"x":1567725720000,"y":0.21},{"x":1567725780000,"y":0.18},{"x":1567725840000,"y":0.16},{"x":1567725900000,"y":0.5},{"x":1567725960000,"y":0.16},{"x":1567726020000,"y":0.18},{"x":1567726080000,"y":0.2},{"x":1567726140000,"y":0.19},{"x":1567726200000,"y":0.54},{"x":1567726260000,"y":0.18},{"x":1567726320000,"y":0.18},{"x":1567726380000,"y":0.18},{"x":1567726440000,"y":0.18},{"x":1567726500000,"y":0.42},{"x":1567726560000,"y":0.21},{"x":1567726620000,"y":0.16},{"x":1567726680000,"y":0.2},{"x":1567726740000,"y":0.27},{"x":1567726800000,"y":0.46},{"x":1567726860000,"y":0.23},{"x":1567726920000,"y":0.22},{"x":1567726980000,"y":0.2},{"x":1567727040000,"y":0.17},{"x":1567727100000,"y":0.38},{"x":1567727160000,"y":0.17},{"x":1567727220000,"y":0.22},{"x":1567727280000,"y":0.17},{"x":1567727340000,"y":0.16},{"x":1567727400000,"y":0.38},{"x":1567727460000,"y":0.19},{"x":1567727520000,"y":0.18},{"x":1567727580000,"y":0.17},{"x":1567727640000,"y":0.18},{"x":1567727700000,"y":0.38},{"x":1567727760000,"y":0.16},{"x":1567727820000,"y":0.16},{"x":1567727880000,"y":0.17},{"x":1567727940000,"y":0.2},{"x":1567728000000,"y":0.51},{"x":1567728060000,"y":0.19},{"x":1567728120000,"y":0.24},{"x":1567728180000,"y":0.2},{"x":1567728240000,"y":0.2},{"x":1567728300000,"y":0.25},{"x":1567728360000,"y":0.32},{"x":1567728420000,"y":0.18},{"x":1567728480000,"y":0.16},{"x":1567728540000,"y":0.26},{"x":1567728600000,"y":0.24},{"x":1567728660000,"y":5.36},{"x":1567728720000,"y":0.12},{"x":1567728780000,"y":0.16},{"x":1567728840000,"y":0.19},{"x":1567728900000,"y":0.28},{"x":1567728960000,"y":0.29},{"x":1567729020000,"y":0.17},{"x":1567729080000,"y":0.13},{"x":1567729140000,"y":0.17},{"x":1567729200000,"y":0.15},{"x":1567729260000,"y":0.22},{"x":1567729320000,"y":0.14},{"x":1567729380000,"y":0.08},{"x":1567729440000,"y":0.11},{"x":1567729500000,"y":0.17},{"x":1567729560000,"y":0.22},{"x":1567729620000,"y":0.12},{"x":1567729680000,"y":0.13},{"x":1567729740000,"y":0.09},{"x":1567729800000,"y":0.23},{"x":1567729860000,"y":0.27},{"x":1567729920000,"y":0.12},{"x":1567729980000,"y":0.11},{"x":1567730040000,"y":0.12},{"x":1567730100000,"y":0.25},{"x":1567730160000,"y":0.27},{"x":1567730220000,"y":0.13},{"x":1567730280000,"y":0.09},{"x":1567730340000,"y":0.24},{"x":1567730400000,"y":0.23},{"x":1567730460000,"y":0.24},{"x":1567730520000,"y":0.14},{"x":1567730580000,"y":0.09},{"x":1567730640000,"y":0.13},{"x":1567730700000,"y":0.24},{"x":1567730760000,"y":0.09},{"x":1567730820000,"y":0.3},{"x":1567730880000,"y":0.13},{"x":1567730940000,"y":0.13},{"x":1567731000000,"y":0.17},{"x":1567731060000,"y":0.1},{"x":1567731120000,"y":0.24},{"x":1567731180000,"y":0.15},{"x":1567731240000,"y":0.07},{"x":1567731300000,"y":0.22},{"x":1567731360000,"y":0.15},{"x":1567731420000,"y":0.24},{"x":1567731480000,"y":0.1},{"x":1567731540000,"y":0.12},{"x":1567731600000,"y":0.26},{"x":1567731660000,"y":0.09},{"x":1567731720000,"y":0.29},{"x":1567731780000,"y":0.1},{"x":1567731840000,"y":0.1},{"x":1567731900000,"y":0.18},{"x":1567731960000,"y":1.43},{"x":1567732020000,"y":0.21},{"x":1567732080000,"y":0.12},{"x":1567732140000,"y":0.19},{"x":1567732200000,"y":0.15},{"x":1567732260000,"y":0.12},{"x":1567732320000,"y":0.14},{"x":1567732380000,"y":0.29},{"x":1567732440000,"y":0.12},{"x":1567732500000,"y":0.19},{"x":1567732560000,"y":0.11},{"x":1567732620000,"y":0.14},{"x":1567732680000,"y":0.24},{"x":1567732740000,"y":0.1},{"x":1567732800000,"y":0.27},{"x":1567732860000,"y":0.18},{"x":1567732920000,"y":0.08},{"x":1567732980000,"y":0.25},{"x":1567733040000,"y":0.09},{"x":1567733100000,"y":0.21},{"x":1567733160000,"y":0.07},{"x":1567733220000,"y":0.09},{"x":1567733280000,"y":0.25},{"x":1567733340000,"y":0.19},{"x":1567733400000,"y":0.22},{"x":1567733460000,"y":0.11},{"x":1567733520000,"y":0.11},{"x":1567733580000,"y":0.32},{"x":1567733640000,"y":0.08},{"x":1567733700000,"y":0.21},{"x":1567733760000,"y":0.1},{"x":1567733820000,"y":0.09},{"x":1567733880000,"y":0.26},{"x":1567733940000,"y":0.34},{"x":1567734000000,"y":0.2},{"x":1567734060000,"y":0.12},{"x":1567734120000,"y":0.17},{"x":1567734180000,"y":0.22},{"x":1567734240000,"y":0.12},{"x":1567734300000,"y":0.17},{"x":1567734360000,"y":0.09},{"x":1567734420000,"y":0.12},{"x":1567734480000,"y":0.09},{"x":1567734540000,"y":0.21},{"x":1567734600000,"y":0.21},{"x":1567734660000,"y":0.09},{"x":1567734720000,"y":0.07},{"x":1567734780000,"y":0.08},{"x":1567734840000,"y":0.23},{"x":1567734900000,"y":0.17},{"x":1567734960000,"y":0.1},{"x":1567735020000,"y":0.07},{"x":1567735080000,"y":0.1},{"x":1567735140000,"y":0.25},{"x":1567735200000,"y":0.22},{"x":1567735260000,"y":0.18},{"x":1567735320000,"y":0.19},{"x":1567735380000,"y":0.14},{"x":1567735440000,"y":0.27},{"x":1567735500000,"y":0.25},{"x":1567735560000,"y":0.1},{"x":1567735620000,"y":0.08},{"x":1567735680000,"y":0.08},{"x":1567735740000,"y":0.44},{"x":1567735800000,"y":0.24},{"x":1567735860000,"y":0.11},{"x":1567735920000,"y":0.12},{"x":1567735980000,"y":0.12},{"x":1567736040000,"y":0.24},{"x":1567736100000,"y":0.19},{"x":1567736160000,"y":0.08},{"x":1567736220000,"y":0.11},{"x":1567736280000,"y":0.07},{"x":1567736340000,"y":0.27},{"x":1567736400000,"y":0.22},{"x":1567736460000,"y":0.12},{"x":1567736520000,"y":0.11},{"x":1567736580000,"y":0.07},{"x":1567736640000,"y":0.23},{"x":1567736700000,"y":0.16},{"x":1567736760000,"y":0.1},{"x":1567736820000,"y":0.09},{"x":1567736880000,"y":0.08},{"x":1567736940000,"y":0.07},{"x":1567737000000,"y":0.5},{"x":1567737060000,"y":0.12},{"x":1567737120000,"y":0.1},{"x":1567737180000,"y":0.06},{"x":1567737240000,"y":0.06},{"x":1567737300000,"y":0.31},{"x":1567737360000,"y":0.16},{"x":1567737420000,"y":0.08},{"x":1567737480000,"y":0.07},{"x":1567737540000,"y":0.21},{"x":1567737600000,"y":0.28},{"x":1567737660000,"y":0.13},{"x":1567737720000,"y":0.08},{"x":1567737780000,"y":0.07},{"x":1567737840000,"y":0.07},{"x":1567737900000,"y":0.32},{"x":1567737960000,"y":0.06},{"x":1567738020000,"y":0.08},{"x":1567738080000,"y":0.1},{"x":1567738140000,"y":0.15},{"x":1567738200000,"y":0.35},{"x":1567738260000,"y":0.08},{"x":1567738320000,"y":0.1},{"x":1567738380000,"y":0.89},{"x":1567738440000,"y":0.09},{"x":1567738500000,"y":0.29},{"x":1567738560000,"y":0.1},{"x":1567738620000,"y":0.07},{"x":1567738680000,"y":0.08},{"x":1567738740000,"y":0.06},{"x":1567738800000,"y":0.46},{"x":1567738860000,"y":0.12},{"x":1567738920000,"y":0.08},{"x":1567738980000,"y":0.05},{"x":1567739040000,"y":0.1},{"x":1567739100000,"y":0.22},{"x":1567739160000,"y":0.31},{"x":1567739220000,"y":0.07},{"x":1567739280000,"y":0.08},{"x":1567739340000,"y":0.32},{"x":1567739400000,"y":0.2},{"x":1567739460000,"y":0.25},{"x":1567739520000,"y":0.12},{"x":1567739580000,"y":0.11},{"x":1567739640000,"y":0.12},{"x":1567739700000,"y":0.17},{"x":1567739760000,"y":0.26},{"x":1567739820000,"y":0.1},{"x":1567739880000,"y":0.1},{"x":1567739940000,"y":0.12},{"x":1567740000000,"y":0.22},{"x":1567740060000,"y":0.25},{"x":1567740120000,"y":0.12},{"x":1567740180000,"y":0.14},{"x":1567740240000,"y":0.11},{"x":1567740300000,"y":0.21},{"x":1567740360000,"y":0.21},{"x":1567740420000,"y":0.11},{"x":1567740480000,"y":0.1},{"x":1567740540000,"y":0.12},{"x":1567740600000,"y":0.19},{"x":1567740660000,"y":0.28},{"x":1567740720000,"y":0.09},{"x":1567740780000,"y":0.1},{"x":1567740840000,"y":0.15},{"x":1567740900000,"y":0.23},{"x":1567740960000,"y":0.13},{"x":1567741020000,"y":0.3},{"x":1567741080000,"y":0.1},{"x":1567741140000,"y":0.26},{"x":1567741200000,"y":0.26},{"x":1567741260000,"y":0.12},{"x":1567741320000,"y":0.27},{"x":1567741380000,"y":0.16},{"x":1567741440000,"y":0.12},{"x":1567741500000,"y":0.23},{"x":1567741560000,"y":0.1},{"x":1567741620000,"y":0.29},{"x":1567741680000,"y":0.14},{"x":1567741740000,"y":0.15},{"x":1567741800000,"y":0.24},{"x":1567741860000,"y":0.12},{"x":1567741920000,"y":0.26},{"x":1567741980000,"y":0.15},{"x":1567742040000,"y":0.09},{"x":1567742100000,"y":0.23},{"x":1567742160000,"y":0.14},{"x":1567742220000,"y":0.25},{"x":1567742280000,"y":0.1},{"x":1567742340000,"y":0.1},{"x":1567742400000,"y":0.28},{"x":1567742460000,"y":0.16},{"x":1567742520000,"y":0.27},{"x":1567742580000,"y":0.13},{"x":1567742640000,"y":0.17},{"x":1567742700000,"y":0.2},{"x":1567742760000,"y":0.11},{"x":1567742820000,"y":0.37},{"x":1567742880000,"y":0.13},{"x":1567742940000,"y":0.36},{"x":1567743000000,"y":0.3},{"x":1567743060000,"y":0.14},{"x":1567743120000,"y":0.17},{"x":1567743180000,"y":0.34},{"x":1567743240000,"y":0.12},{"x":1567743300000,"y":0.29},{"x":1567743360000,"y":0.14},{"x":1567743420000,"y":0.15},{"x":1567743480000,"y":0.27},{"x":1567743540000,"y":0.08},{"x":1567743600000,"y":0.18},{"x":1567743660000,"y":0.15},{"x":1567743720000,"y":0.1},{"x":1567743780000,"y":0.29},{"x":1567743840000,"y":0.08},{"x":1567743900000,"y":0.26},{"x":1567743960000,"y":0.13},{"x":1567744020000,"y":0.1},{"x":1567744080000,"y":0.22},{"x":1567744140000,"y":0.1},{"x":1567744200000,"y":0.25},{"x":1567744260000,"y":0.14},{"x":1567744320000,"y":0.08},{"x":1567744380000,"y":0.25},{"x":1567744440000,"y":0.12},{"x":1567744500000,"y":0.15},{"x":1567744560000,"y":0.1},{"x":1567744620000,"y":0.08},{"x":1567744680000,"y":0.24},{"x":1567744740000,"y":0.27},{"x":1567744800000,"y":0.2},{"x":1567744860000,"y":0.11},{"x":1567744920000,"y":0.15},{"x":1567744980000,"y":0.24},{"x":1567745040000,"y":0.1},{"x":1567745100000,"y":0.23},{"x":1567745160000,"y":0.11},{"x":1567745220000,"y":0.1},{"x":1567745280000,"y":0.1},{"x":1567745340000,"y":0.3},{"x":1567745400000,"y":0.33},{"x":1567745460000,"y":0.13},{"x":1567745520000,"y":0.12},{"x":1567745580000,"y":0.1},{"x":1567745640000,"y":0.23},{"x":1567745700000,"y":0.16},{"x":1567745760000,"y":0.1},{"x":1567745820000,"y":0.07},{"x":1567745880000,"y":0.11},{"x":1567745940000,"y":0.25},{"x":1567746000000,"y":0.84},{"x":1567746060000,"y":0.09},{"x":1567746120000,"y":0.09},{"x":1567746180000,"y":0.09},{"x":1567746240000,"y":0.24},{"x":1567746300000,"y":0.23},{"x":1567746360000,"y":0.18},{"x":1567746420000,"y":0.14},{"x":1567746480000,"y":0.14},{"x":1567746540000,"y":0.39},{"x":1567746600000,"y":0.17},{"x":1567746660000,"y":0.14},{"x":1567746720000,"y":0.12},{"x":1567746780000,"y":0.12},{"x":1567746840000,"y":0.26},{"x":1567746900000,"y":0.32},{"x":1567746960000,"y":0.12},{"x":1567747020000,"y":0.09},{"x":1567747080000,"y":0.1},{"x":1567747140000,"y":0.26},{"x":1567747200000,"y":0.24},{"x":1567747260000,"y":0.11},{"x":1567747320000,"y":0.09},{"x":1567747380000,"y":0.17},{"x":1567747440000,"y":0.11},{"x":1567747500000,"y":0.39},{"x":1567747560000,"y":0.12},{"x":1567747620000,"y":0.05},{"x":1567747680000,"y":0.11},{"x":1567747740000,"y":0.09},{"x":1567747800000,"y":0.37},{"x":1567747860000,"y":0.08},{"x":1567747920000,"y":0.12},{"x":1567747980000,"y":0.1},{"x":1567748040000,"y":0.09},{"x":1567748100000,"y":0.34},{"x":1567748160000,"y":0.15},{"x":1567748220000,"y":0.08},{"x":1567748280000,"y":0.12},{"x":1567748340000,"y":0.28},{"x":1567748400000,"y":0.41},{"x":1567748460000,"y":0.08},{"x":1567748520000,"y":0.12},{"x":1567748580000,"y":0.14},{"x":1567748640000,"y":0.14},{"x":1567748700000,"y":0.34},{"x":1567748760000,"y":0.09},{"x":1567748820000,"y":0.1},{"x":1567748880000,"y":0.1},{"x":1567748940000,"y":0.14},{"x":1567749000000,"y":0.49},{"x":1567749060000,"y":0.13},{"x":1567749120000,"y":0.09},{"x":1567749180000,"y":0.09},{"x":1567749240000,"y":0.17},{"x":1567749300000,"y":0.35},{"x":1567749360000,"y":0.07},{"x":1567749420000,"y":0.14},{"x":1567749480000,"y":0.1},{"x":1567749540000,"y":0.06},{"x":1567749600000,"y":0.42},{"x":1567749660000,"y":0.13},{"x":1567749720000,"y":0.16},{"x":1567749780000,"y":0.11},{"x":1567749840000,"y":0.1},{"x":1567749900000,"y":0.19},{"x":1567749960000,"y":0.3},{"x":1567750020000,"y":0.09},{"x":1567750080000,"y":0.08},{"x":1567750140000,"y":0.48},{"x":1567750200000,"y":0.19},{"x":1567750260000,"y":0.26},{"x":1567750320000,"y":0.18},{"x":1567750380000,"y":0.15},{"x":1567750440000,"y":0.17},{"x":1567750500000,"y":0.33},{"x":1567750560000,"y":5.04},{"x":1567750620000,"y":0.42},{"x":1567750680000,"y":0.17},{"x":1567750740000,"y":0.17},{"x":1567750800000,"y":0.25},{"x":1567750860000,"y":0.25},{"x":1567750920000,"y":0.14},{"x":1567750980000,"y":0.13},{"x":1567751040000,"y":0.08},{"x":1567751100000,"y":0.33},{"x":1567751160000,"y":0.27},{"x":1567751220000,"y":0.15},{"x":1567751280000,"y":0.2},{"x":1567751340000,"y":0.23},{"x":1567751400000,"y":0.32},{"x":1567751460000,"y":0.41},{"x":1567751520000,"y":0.26},{"x":1567751580000,"y":0.19},{"x":1567751640000,"y":0.12},{"x":1567751700000,"y":0.22},{"x":1567751760000,"y":0.43},{"x":1567751820000,"y":0.24},{"x":1567751880000,"y":0.13},{"x":1567751940000,"y":0.29},{"x":1567752000000,"y":0.26},{"x":1567752060000,"y":0.21},{"x":1567752120000,"y":0.29},{"x":1567752180000,"y":0.15},{"x":1567752240000,"y":0.24},{"x":1567752300000,"y":0.31},{"x":1567752360000,"y":0.16},{"x":1567752420000,"y":0.37},{"x":1567752480000,"y":0.22},{"x":1567752540000,"y":0.13},{"x":1567752600000,"y":0.29},{"x":1567752660000,"y":0.17},{"x":1567752720000,"y":0.28},{"x":1567752780000,"y":0.19},{"x":1567752840000,"y":0.15},{"x":1567752900000,"y":0.27},{"x":1567752960000,"y":0.2},{"x":1567753020000,"y":0.34},{"x":1567753080000,"y":0.25},{"x":1567753140000,"y":0.17},{"x":1567753200000,"y":0.32},{"x":1567753260000,"y":0.17},{"x":1567753320000,"y":0.37},{"x":1567753380000,"y":0.16},{"x":1567753440000,"y":0.16},{"x":1567753500000,"y":0.27},{"x":1567753560000,"y":0.26},{"x":1567753620000,"y":0.3},{"x":1567753680000,"y":0.17},{"x":1567753740000,"y":0.35},{"x":1567753800000,"y":0.25},{"x":1567753860000,"y":0.24},{"x":1567753920000,"y":0.17},{"x":1567753980000,"y":0.33},{"x":1567754040000,"y":0.24},{"x":1567754100000,"y":0.26},{"x":1567754160000,"y":0.17},{"x":1567754220000,"y":0.2},{"x":1567754280000,"y":0.31},{"x":1567754340000,"y":0.16},{"x":1567754400000,"y":0.25},{"x":1567754460000,"y":0.2},{"x":1567754520000,"y":0.18},{"x":1567754580000,"y":0.33},{"x":1567754640000,"y":0.17},{"x":1567754700000,"y":0.33},{"x":1567754760000,"y":0.26},{"x":1567754820000,"y":0.17},{"x":1567754880000,"y":0.4},{"x":1567754940000,"y":0.24},{"x":1567755000000,"y":0.36},{"x":1567755060000,"y":0.18},{"x":1567755120000,"y":0.27},{"x":1567755180000,"y":0.31},{"x":1567755240000,"y":0.19},{"x":1567755300000,"y":0.29},{"x":1567755360000,"y":0.18},{"x":1567755420000,"y":0.19},{"x":1567755480000,"y":0.41},{"x":1567755540000,"y":0.38},{"x":1567755600000,"y":0.29},{"x":1567755660000,"y":0.18},{"x":1567755720000,"y":0.17},{"x":1567755780000,"y":0.18},{"x":1567755840000,"y":0.34},{"x":1567755900000,"y":0.26},{"x":1567755960000,"y":0.22},{"x":1567756020000,"y":0.17},{"x":1567756080000,"y":0.2},{"x":1567756140000,"y":0.36},{"x":1567756200000,"y":0.26},{"x":1567756260000,"y":0.18},{"x":1567756320000,"y":0.21},{"x":1567756380000,"y":0.17},{"x":1567756440000,"y":0.42},{"x":1567756500000,"y":0.21},{"x":1567756560000,"y":0.17},{"x":1567756620000,"y":0.18},{"x":1567756680000,"y":0.17},{"x":1567756740000,"y":0.33},{"x":1567756800000,"y":0.33},{"x":1567756860000,"y":0.23},{"x":1567756920000,"y":0.22},{"x":1567756980000,"y":0.2},{"x":1567757040000,"y":0.35},{"x":1567757100000,"y":5.61},{"x":1567757160000,"y":0.28},{"x":1567757220000,"y":0.22},{"x":1567757280000,"y":0.2},{"x":1567757340000,"y":2.72},{"x":1567757400000,"y":0.31},{"x":1567757460000,"y":0.18},{"x":1567757520000,"y":0.28},{"x":1567757580000,"y":0.17},{"x":1567757640000,"y":0.36},{"x":1567757700000,"y":0.33},{"x":1567757760000,"y":0.19},{"x":1567757820000,"y":0.19},{"x":1567757880000,"y":0.16},{"x":1567757940000,"y":0.22},{"x":1567758000000,"y":0.6},{"x":1567758060000,"y":0.22},{"x":1567758120000,"y":0.15},{"x":1567758180000,"y":0.17},{"x":1567758240000,"y":0.17},{"x":1567758300000,"y":0.36},{"x":1567758360000,"y":0.2},{"x":1567758420000,"y":0.19},{"x":1567758480000,"y":0.17},{"x":1567758540000,"y":0.22},{"x":1567758600000,"y":0.47},{"x":1567758660000,"y":0.18},{"x":1567758720000,"y":0.21},{"x":1567758780000,"y":0.24},{"x":1567758840000,"y":0.17},{"x":1567758900000,"y":0.47},{"x":1567758960000,"y":0.24},{"x":1567759020000,"y":0.19},{"x":1567759080000,"y":0.2},{"x":1567759140000,"y":0.34},{"x":1567759200000,"y":0.39},{"x":1567759260000,"y":0.17},{"x":1567759320000,"y":0.2},{"x":1567759380000,"y":0.15},{"x":1567759440000,"y":0.2},{"x":1567759500000,"y":0.46},{"x":1567759560000,"y":0.21},{"x":1567759620000,"y":0.22},{"x":1567759680000,"y":0.2},{"x":1567759740000,"y":0.2},{"x":1567759800000,"y":0.47},{"x":1567759860000,"y":0.19},{"x":1567759920000,"y":0.23},{"x":1567759980000,"y":0.17},{"x":1567760040000,"y":0.18},{"x":1567760100000,"y":0.25},{"x":1567760160000,"y":0.37},{"x":1567760220000,"y":0.19},{"x":1567760280000,"y":0.19},{"x":1567760340000,"y":0.17},{"x":1567760400000,"y":0.27},{"x":1567760460000,"y":0.44},{"x":1567760520000,"y":0.2},{"x":1567760580000,"y":0.22},{"x":1567760640000,"y":0.2},{"x":1567760700000,"y":0.23},{"x":1567760760000,"y":0.31},{"x":1567760820000,"y":0.2},{"x":1567760880000,"y":0.21},{"x":1567760940000,"y":0.35},{"x":1567761000000,"y":0.57},{"x":1567761060000,"y":0.33},{"x":1567761120000,"y":0.19},{"x":1567761180000,"y":0.15},{"x":1567761240000,"y":0.18},{"x":1567761300000,"y":0.37},{"x":1567761360000,"y":0.31},{"x":1567761420000,"y":0.18},{"x":1567761480000,"y":0.17},{"x":1567761540000,"y":0.17},{"x":1567761600000,"y":0.31},{"x":1567761660000,"y":0.29},{"x":1567761720000,"y":0.15},{"x":1567761780000,"y":0.16},{"x":1567761840000,"y":0.15},{"x":1567761900000,"y":0.24},{"x":1567761960000,"y":0.28},{"x":1567762020000,"y":0.11},{"x":1567762080000,"y":0.12},{"x":1567762140000,"y":0.1},{"x":1567762200000,"y":0.24},{"x":1567762260000,"y":0.25},{"x":1567762320000,"y":0.1},{"x":1567762380000,"y":0.1},{"x":1567762440000,"y":0.13},{"x":1567762500000,"y":0.25},{"x":1567762560000,"y":0.08},{"x":1567762620000,"y":0.24},{"x":1567762680000,"y":0.08},{"x":1567762740000,"y":0.15},{"x":1567762800000,"y":0.14},{"x":1567762860000,"y":0.07},{"x":1567762920000,"y":0.22},{"x":1567762980000,"y":0.09},{"x":1567763040000,"y":0.07},{"x":1567763100000,"y":0.17},{"x":1567763160000,"y":0.09},{"x":1567763220000,"y":0.27},{"x":1567763280000,"y":0.09},{"x":1567763340000,"y":0.09},{"x":1567763400000,"y":0.24},{"x":1567763460000,"y":0.11},{"x":1567763520000,"y":0.3},{"x":1567763580000,"y":0.11},{"x":1567763640000,"y":0.1},{"x":1567763700000,"y":0.17},{"x":1567763760000,"y":3.94},{"x":1567763820000,"y":0.22},{"x":1567763880000,"y":0.07},{"x":1567763940000,"y":0.1},{"x":1567764000000,"y":0.28},{"x":1567764060000,"y":0.11},{"x":1567764120000,"y":0.21},{"x":1567764180000,"y":0.08},{"x":1567764240000,"y":0.1},{"x":1567764300000,"y":0.2},{"x":1567764360000,"y":0.07},{"x":1567764420000,"y":0.3},{"x":1567764480000,"y":0.1},{"x":1567764540000,"y":0.26},{"x":1567764600000,"y":0.23},{"x":1567764660000,"y":3.59},{"x":1567764720000,"y":0.14},{"x":1567764780000,"y":0.34},{"x":1567764840000,"y":0.12},{"x":1567764900000,"y":0.19},{"x":1567764960000,"y":0.19},{"x":1567765020000,"y":0.14},{"x":1567765080000,"y":0.29},{"x":1567765140000,"y":0.08},{"x":1567765200000,"y":0.15},{"x":1567765260000,"y":0.09},{"x":1567765320000,"y":0.12},{"x":1567765380000,"y":0.3},{"x":1567765440000,"y":0.12},{"x":1567765500000,"y":0.23},{"x":1567765560000,"y":0.12},{"x":1567765620000,"y":0.15},{"x":1567765680000,"y":0.36},{"x":1567765740000,"y":0.15},{"x":1567765800000,"y":0.2},{"x":1567765860000,"y":0.13},{"x":1567765920000,"y":0.08},{"x":1567765980000,"y":0.28},{"x":1567766040000,"y":0.08},{"x":1567766100000,"y":0.21},{"x":1567766160000,"y":0.1},{"x":1567766220000,"y":0.13},{"x":1567766280000,"y":0.24},{"x":1567766340000,"y":0.24},{"x":1567766400000,"y":0.21},{"x":1567766460000,"y":0.14},{"x":1567766520000,"y":0.09},{"x":1567766580000,"y":0.26},{"x":1567766640000,"y":0.11},{"x":1567766700000,"y":0.19},{"x":1567766760000,"y":0.14},{"x":1567766820000,"y":0.12},{"x":1567766880000,"y":0.3},{"x":1567766940000,"y":0.14},{"x":1567767000000,"y":0.21},{"x":1567767060000,"y":0.1},{"x":1567767120000,"y":0.09},{"x":1567767180000,"y":0.1},{"x":1567767240000,"y":0.27},{"x":1567767300000,"y":0.26},{"x":1567767360000,"y":0.4},{"x":1567767420000,"y":0.07},{"x":1567767480000,"y":0.1},{"x":1567767540000,"y":0.23},{"x":1567767600000,"y":0.38},{"x":1567767660000,"y":0.1},{"x":1567767720000,"y":0.11},{"x":1567767780000,"y":0.14},{"x":1567767840000,"y":0.28},{"x":1567767900000,"y":0.25},{"x":1567767960000,"y":0.09},{"x":1567768020000,"y":0.12},{"x":1567768080000,"y":0.08},{"x":1567768140000,"y":0.32},{"x":1567768200000,"y":0.14},{"x":1567768260000,"y":1.69},{"x":1567768320000,"y":0.12},{"x":1567768380000,"y":0.12},{"x":1567768440000,"y":0.28},{"x":1567768500000,"y":0.15},{"x":1567768560000,"y":0.07},{"x":1567768620000,"y":0.07},{"x":1567768680000,"y":0.07},{"x":1567768740000,"y":0.2},{"x":1567768800000,"y":0.19},{"x":1567768860000,"y":15.86},{"x":1567768920000,"y":3.34},{"x":1567768980000,"y":0.1},{"x":1567769040000,"y":0.1},{"x":1567769100000,"y":1.62},{"x":1567769160000,"y":0.07},{"x":1567769220000,"y":0.07},{"x":1567769280000,"y":0.1},{"x":1567769340000,"y":0.07},{"x":1567769400000,"y":0.38},{"x":1567769460000,"y":0.07},{"x":1567769520000,"y":0.09},{"x":1567769580000,"y":0.09},{"x":1567769640000,"y":0.06},{"x":1567769700000,"y":0.33},{"x":1567769760000,"y":0.11},{"x":1567769820000,"y":0.07},{"x":1567769880000,"y":0.07},{"x":1567769940000,"y":0.24},{"x":1567770000000,"y":0.39},{"x":1567770060000,"y":0.11},{"x":1567770120000,"y":0.08},{"x":1567770180000,"y":0.15},{"x":1567770240000,"y":0.12},{"x":1567770300000,"y":0.38},{"x":1567770360000,"y":0.09},{"x":1567770420000,"y":0.11},{"x":1567770480000,"y":0.08},{"x":1567770540000,"y":0.14},{"x":1567770600000,"y":0.28},{"x":1567770660000,"y":0.16},{"x":1567770720000,"y":0.09},{"x":1567770780000,"y":0.11},{"x":1567770840000,"y":0.12},{"x":1567770900000,"y":0.33},{"x":1567770960000,"y":0.1},{"x":1567771020000,"y":0.11},{"x":1567771080000,"y":0.14},{"x":1567771140000,"y":0.1},{"x":1567771200000,"y":0.4},{"x":1567771260000,"y":0.09},{"x":1567771320000,"y":0.09},{"x":1567771380000,"y":0.11},{"x":1567771440000,"y":0.12},{"x":1567771500000,"y":0.16},{"x":1567771560000,"y":0.28},{"x":1567771620000,"y":0.08},{"x":1567771680000,"y":0.12},{"x":1567771740000,"y":0.19},{"x":1567771800000,"y":0.25},{"x":1567771860000,"y":0.27},{"x":1567771920000,"y":0.08},{"x":1567771980000,"y":0.1},{"x":1567772040000,"y":0.12},{"x":1567772100000,"y":0.2},{"x":1567772160000,"y":0.26},{"x":1567772220000,"y":0.16},{"x":1567772280000,"y":0.09},{"x":1567772340000,"y":0.14},{"x":1567772400000,"y":0.17},{"x":1567772460000,"y":5.25},{"x":1567772520000,"y":0.08},{"x":1567772580000,"y":0.11},{"x":1567772640000,"y":0.07},{"x":1567772700000,"y":0.19},{"x":1567772760000,"y":0.2},{"x":1567772820000,"y":0.08},{"x":1567772880000,"y":0.16},{"x":1567772940000,"y":0.12},{"x":1567773000000,"y":0.12},{"x":1567773060000,"y":0.2},{"x":1567773120000,"y":0.11},{"x":1567773180000,"y":0.07},{"x":1567773240000,"y":0.08},{"x":1567773300000,"y":0.18},{"x":1567773360000,"y":0.27},{"x":1567773420000,"y":0.07},{"x":1567773480000,"y":0.15},{"x":1567773540000,"y":0.22},{"x":1567773600000,"y":0.17},{"x":1567773660000,"y":0.21},{"x":1567773720000,"y":0.13},{"x":1567773780000,"y":0.11},{"x":1567773840000,"y":0.11},{"x":1567773900000,"y":0.17},{"x":1567773960000,"y":0.12},{"x":1567774020000,"y":0.31},{"x":1567774080000,"y":0.08},{"x":1567774140000,"y":0.07},{"x":1567774200000,"y":0.24},{"x":1567774260000,"y":0.11},{"x":1567774320000,"y":0.24},{"x":1567774380000,"y":0.07},{"x":1567774440000,"y":0.1},{"x":1567774500000,"y":0.17},{"x":1567774560000,"y":0.12},{"x":1567774620000,"y":0.25},{"x":1567774680000,"y":0.1},{"x":1567774740000,"y":0.06},{"x":1567774800000,"y":0.29},{"x":1567774860000,"y":0.1},{"x":1567774920000,"y":0.2},{"x":1567774980000,"y":0.15},{"x":1567775040000,"y":0.12},{"x":1567775100000,"y":0.16},{"x":1567775160000,"y":0.1},{"x":1567775220000,"y":0.21},{"x":1567775280000,"y":0.08},{"x":1567775340000,"y":0.27},{"x":1567775400000,"y":0.16},{"x":1567775460000,"y":0.09},{"x":1567775520000,"y":0.22},{"x":1567775580000,"y":0.1},{"x":1567775640000,"y":0.06},{"x":1567775700000,"y":0.22},{"x":1567775760000,"y":0.1},{"x":1567775820000,"y":0.27},{"x":1567775880000,"y":0.06},{"x":1567775940000,"y":0.11},{"x":1567776000000,"y":0.22},{"x":1567776060000,"y":0.17},{"x":1567776120000,"y":0.35},{"x":1567776180000,"y":0.34},{"x":1567776240000,"y":0.13},{"x":1567776300000,"y":0.2},{"x":1567776360000,"y":0.15},{"x":1567776420000,"y":0.12},{"x":1567776480000,"y":0.29},{"x":1567776540000,"y":0.08},{"x":1567776600000,"y":0.25},{"x":1567776660000,"y":0.09},{"x":1567776720000,"y":0.13},{"x":1567776780000,"y":0.23},{"x":1567776840000,"y":0.08},{"x":1567776900000,"y":0.18},{"x":1567776960000,"y":0.13},{"x":1567777020000,"y":0.12},{"x":1567777080000,"y":0.37},{"x":1567777140000,"y":0.24},{"x":1567777200000,"y":0.25},{"x":1567777260000,"y":0.11},{"x":1567777320000,"y":0.13},{"x":1567777380000,"y":0.24},{"x":1567777440000,"y":0.11},{"x":1567777500000,"y":0.17},{"x":1567777560000,"y":0.11},{"x":1567777620000,"y":0.12},{"x":1567777680000,"y":0.31},{"x":1567777740000,"y":0.08},{"x":1567777800000,"y":0.22},{"x":1567777860000,"y":0.12},{"x":1567777920000,"y":0.08},{"x":1567777980000,"y":0.24},{"x":1567778040000,"y":0.08},{"x":1567778100000,"y":0.3},{"x":1567778160000,"y":0.08},{"x":1567778220000,"y":0.83},{"x":1567778280000,"y":0.08},{"x":1567778340000,"y":0.24},{"x":1567778400000,"y":0.27},{"x":1567778460000,"y":0.1},{"x":1567778520000,"y":0.08},{"x":1567778580000,"y":0.13},{"x":1567778640000,"y":0.24},{"x":1567778700000,"y":0.22},{"x":1567778760000,"y":0.07},{"x":1567778820000,"y":0.12},{"x":1567778880000,"y":0.1},{"x":1567778940000,"y":0.32},{"x":1567779000000,"y":0.15},{"x":1567779060000,"y":0.12},{"x":1567779120000,"y":1.4},{"x":1567779180000,"y":0.08},{"x":1567779240000,"y":0.2},{"x":1567779300000,"y":0.2},{"x":1567779360000,"y":0.1},{"x":1567779420000,"y":0.1},{"x":1567779480000,"y":0.11},{"x":1567779540000,"y":0.25},{"x":1567779600000,"y":0.19},{"x":1567779660000,"y":0.1},{"x":1567779720000,"y":0.13},{"x":1567779780000,"y":0.13},{"x":1567779840000,"y":0.24},{"x":1567779900000,"y":0.29},{"x":1567779960000,"y":0.15},{"x":1567780020000,"y":0.13},{"x":1567780080000,"y":0.12},{"x":1567780140000,"y":0.22},{"x":1567780200000,"y":0.24},{"x":1567780260000,"y":0.09},{"x":1567780320000,"y":0.1},{"x":1567780380000,"y":0.1},{"x":1567780440000,"y":0.29},{"x":1567780500000,"y":0.18},{"x":1567780560000,"y":0.09},{"x":1567780620000,"y":0.07},{"x":1567780680000,"y":0.09},{"x":1567780740000,"y":0.28},{"x":1567780800000,"y":0.39},{"x":1567780860000,"y":0.1},{"x":1567780920000,"y":0.1},{"x":1567780980000,"y":0.11},{"x":1567781040000,"y":0.09},{"x":1567781100000,"y":0.3},{"x":1567781160000,"y":0.1},{"x":1567781220000,"y":0.11},{"x":1567781280000,"y":0.11},{"x":1567781340000,"y":0.09},{"x":1567781400000,"y":0.28},{"x":1567781460000,"y":0.12},{"x":1567781520000,"y":0.09},{"x":1567781580000,"y":0.13},{"x":1567781640000,"y":0.09},{"x":1567781700000,"y":0.37},{"x":1567781760000,"y":0.13},{"x":1567781820000,"y":0.12},{"x":1567781880000,"y":0.13},{"x":1567781940000,"y":0.08},{"x":1567782000000,"y":0.4},{"x":1567782060000,"y":0.08},{"x":1567782120000,"y":0.12},{"x":1567782180000,"y":1.19},{"x":1567782240000,"y":0.11},{"x":1567782300000,"y":0.34},{"x":1567782360000,"y":0.12},{"x":1567782420000,"y":0.13},{"x":1567782480000,"y":0.13},{"x":1567782540000,"y":0.31},{"x":1567782600000,"y":0.38},{"x":1567782660000,"y":0.12},{"x":1567782720000,"y":0.12},{"x":1567782780000,"y":0.1},{"x":1567782840000,"y":0.09},{"x":1567782900000,"y":0.24},{"x":1567782960000,"y":0.23},{"x":1567783020000,"y":0.09},{"x":1567783080000,"y":0.12},{"x":1567783140000,"y":0.06},{"x":1567783200000,"y":0.15},{"x":1567783260000,"y":0.27},{"x":1567783320000,"y":0.1},{"x":1567783380000,"y":0.06},{"x":1567783440000,"y":0.13},{"x":1567783500000,"y":0.15},{"x":1567783560000,"y":0.26},{"x":1567783620000,"y":0.07},{"x":1567783680000,"y":0.07},{"x":1567783740000,"y":0.09},{"x":1567783800000,"y":0.25},{"x":1567783860000,"y":0.33},{"x":1567783920000,"y":0.13},{"x":1567783980000,"y":0.06},{"x":1567784040000,"y":0.12},{"x":1567784100000,"y":0.17},{"x":1567784160000,"y":0.24},{"x":1567784220000,"y":0.07},{"x":1567784280000,"y":0.12},{"x":1567784340000,"y":0.37},{"x":1567784400000,"y":0.28},{"x":1567784460000,"y":0.32},{"x":1567784520000,"y":0.12},{"x":1567784580000,"y":0.15},{"x":1567784640000,"y":0.17},{"x":1567784700000,"y":0.24},{"x":1567784760000,"y":0.08},{"x":1567784820000,"y":0.3},{"x":1567784880000,"y":0.14},{"x":1567784940000,"y":0.17},{"x":1567785000000,"y":0.25},{"x":1567785060000,"y":0.18},{"x":1567785120000,"y":0.23},{"x":1567785180000,"y":0.15},{"x":1567785240000,"y":0.14},{"x":1567785300000,"y":0.19},{"x":1567785360000,"y":0.12},{"x":1567785420000,"y":0.28},{"x":1567785480000,"y":0.27},{"x":1567785540000,"y":0.14},{"x":1567785600000,"y":0.23},{"x":1567785660000,"y":0.16},{"x":1567785720000,"y":0.32},{"x":1567785780000,"y":0.16},{"x":1567785840000,"y":0.2},{"x":1567785900000,"y":0.28},{"x":1567785960000,"y":0.17},{"x":1567786020000,"y":0.3},{"x":1567786080000,"y":0.18},{"x":1567786140000,"y":0.36},{"x":1567786200000,"y":0.24},{"x":1567786260000,"y":0.17},{"x":1567786320000,"y":0.37},{"x":1567786380000,"y":0.22},{"x":1567786440000,"y":0.23},{"x":1567786500000,"y":0.27},{"x":1567786560000,"y":0.2},{"x":1567786620000,"y":0.39},{"x":1567786680000,"y":0.17},{"x":1567786740000,"y":0.2},{"x":1567786800000,"y":0.33},{"x":1567786860000,"y":0.17},{"x":1567786920000,"y":0.36},{"x":1567786980000,"y":0.17},{"x":1567787040000,"y":0.18},{"x":1567787100000,"y":0.26},{"x":1567787160000,"y":0.2},{"x":1567787220000,"y":0.19},{"x":1567787280000,"y":0.32},{"x":1567787340000,"y":0.2},{"x":1567787400000,"y":0.24},{"x":1567787460000,"y":0.16},{"x":1567787520000,"y":0.57},{"x":1567787580000,"y":0.3},{"x":1567787640000,"y":0.2},{"x":1567787700000,"y":0.24},{"x":1567787760000,"y":0.19},{"x":1567787820000,"y":0.17},{"x":1567787880000,"y":0.32},{"x":1567787940000,"y":0.34},{"x":1567788000000,"y":0.22},{"x":1567788060000,"y":0.17},{"x":1567788120000,"y":0.2},{"x":1567788180000,"y":0.33},{"x":1567788240000,"y":0.18},{"x":1567788300000,"y":0.29},{"x":1567788360000,"y":0.17},{"x":1567788420000,"y":0.17},{"x":1567788480000,"y":0.34},{"x":1567788540000,"y":0.16},{"x":1567788600000,"y":0.31},{"x":1567788660000,"y":0.18},{"x":1567788720000,"y":0.16},{"x":1567788780000,"y":0.31},{"x":1567788840000,"y":0.18},{"x":1567788900000,"y":0.29},{"x":1567788960000,"y":0.15},{"x":1567789020000,"y":0.15},{"x":1567789080000,"y":0.37},{"x":1567789140000,"y":0.17},{"x":1567789200000,"y":0.31},{"x":1567789260000,"y":0.18},{"x":1567789320000,"y":0.23},{"x":1567789380000,"y":0.35},{"x":1567789440000,"y":0.2},{"x":1567789500000,"y":0.19},{"x":1567789560000,"y":0.22},{"x":1567789620000,"y":0.2},{"x":1567789680000,"y":0.2},{"x":1567789740000,"y":9.78},{"x":1567789800000,"y":9.82},{"x":1567789860000,"y":19.42},{"x":1567789920000,"y":15.72},{"x":1567789980000,"y":3.83},{"x":1567790040000,"y":0.5},{"x":1567790100000,"y":0.29},{"x":1567790160000,"y":0.18},{"x":1567790220000,"y":0.17},{"x":1567790280000,"y":0.44},{"x":1567790340000,"y":0.81},{"x":1567790400000,"y":0.73},{"x":1567790460000,"y":0.85},{"x":1567790520000,"y":0.21},{"x":1567790580000,"y":0.19},{"x":1567790640000,"y":0.31},{"x":1567790700000,"y":0.29},{"x":1567790760000,"y":0.17},{"x":1567790820000,"y":0.21},{"x":1567790880000,"y":0.19},{"x":1567790940000,"y":0.31},{"x":1567791000000,"y":0.4},{"x":1567791060000,"y":0.2},{"x":1567791120000,"y":0.18},{"x":1567791180000,"y":0.22},{"x":1567791240000,"y":0.41},{"x":1567791300000,"y":1.48},{"x":1567791360000,"y":0.21},{"x":1567791420000,"y":0.17},{"x":1567791480000,"y":0.16},{"x":1567791540000,"y":0.57},{"x":1567791600000,"y":0.25},{"x":1567791660000,"y":0.22},{"x":1567791720000,"y":0.22},{"x":1567791780000,"y":0.2},{"x":1567791840000,"y":0.34},{"x":1567791900000,"y":0.47},{"x":1567791960000,"y":0.26},{"x":1567792020000,"y":0.18},{"x":1567792080000,"y":0.2},{"x":1567792140000,"y":0.37},{"x":1567792200000,"y":0.31},{"x":1567792260000,"y":0.22},{"x":1567792320000,"y":19.49},{"x":1567792380000,"y":0.47},{"x":1567792440000,"y":0.19},{"x":1567792500000,"y":0.68},{"x":1567792560000,"y":0.2},{"x":1567792620000,"y":0.21},{"x":1567792680000,"y":0.16},{"x":1567792740000,"y":0.2},{"x":1567792800000,"y":0.49},{"x":1567792860000,"y":0.16},{"x":1567792920000,"y":0.19},{"x":1567792980000,"y":0.17},{"x":1567793040000,"y":0.17},{"x":1567793100000,"y":0.38},{"x":1567793160000,"y":0.19},{"x":1567793220000,"y":0.23},{"x":1567793280000,"y":0.16},{"x":1567793340000,"y":0.24},{"x":1567793400000,"y":0.47},{"x":1567793460000,"y":0.2},{"x":1567793520000,"y":0.18},{"x":1567793580000,"y":0.21},{"x":1567793640000,"y":0.18},{"x":1567793700000,"y":0.45},{"x":1567793760000,"y":0.19},{"x":1567793820000,"y":0.2},{"x":1567793880000,"y":0.17},{"x":1567793940000,"y":0.21},{"x":1567794000000,"y":0.41},{"x":1567794060000,"y":0.18},{"x":1567794120000,"y":0.17},{"x":1567794180000,"y":0.15},{"x":1567794240000,"y":0.17},{"x":1567794300000,"y":0.98},{"x":1567794360000,"y":3.66},{"x":1567794420000,"y":0.17},{"x":1567794480000,"y":0.17},{"x":1567794540000,"y":0.2},{"x":1567794600000,"y":0.29},{"x":1567794660000,"y":0.36},{"x":1567794720000,"y":0.22},{"x":1567794780000,"y":0.15},{"x":1567794840000,"y":0.15},{"x":1567794900000,"y":0.24},{"x":1567794960000,"y":0.35},{"x":1567795020000,"y":0.15},{"x":1567795080000,"y":0.18},{"x":1567795140000,"y":0.37},{"x":1567795200000,"y":0.24},{"x":1567795260000,"y":0.26},{"x":1567795320000,"y":0.11},{"x":1567795380000,"y":0.07},{"x":1567795440000,"y":0.08},{"x":1567795500000,"y":0.15},{"x":1567795560000,"y":0.24},{"x":1567795620000,"y":0.14},{"x":1567795680000,"y":0.15},{"x":1567795740000,"y":0.12},{"x":1567795800000,"y":0.17},{"x":1567795860000,"y":0.25},{"x":1567795920000,"y":0.1},{"x":1567795980000,"y":0.13},{"x":1567796040000,"y":0.1},{"x":1567796100000,"y":0.28},{"x":1567796160000,"y":0.31},{"x":1567796220000,"y":0.13},{"x":1567796280000,"y":0.15},{"x":1567796340000,"y":2.46},{"x":1567796400000,"y":0.34},{"x":1567796460000,"y":0.15},{"x":1567796520000,"y":0.39},{"x":1567796580000,"y":0.18},{"x":1567796640000,"y":0.1},{"x":1567796700000,"y":0.29},{"x":1567796760000,"y":0.1},{"x":1567796820000,"y":0.26},{"x":1567796880000,"y":0.08},{"x":1567796940000,"y":0.24},{"x":1567797000000,"y":0.19},{"x":1567797060000,"y":0.1},{"x":1567797120000,"y":0.26},{"x":1567797180000,"y":0.13},{"x":1567797240000,"y":0.15},{"x":1567797300000,"y":0.12},{"x":1567797360000,"y":0.08},{"x":1567797420000,"y":0.25},{"x":1567797480000,"y":0.11},{"x":1567797540000,"y":0.12},{"x":1567797600000,"y":0.18},{"x":1567797660000,"y":0.07},{"x":1567797720000,"y":0.24},{"x":1567797780000,"y":0.09},{"x":1567797840000,"y":0.08},{"x":1567797900000,"y":0.13},{"x":1567797960000,"y":0.08},{"x":1567798020000,"y":0.2},{"x":1567798080000,"y":0.09},{"x":1567798140000,"y":0.09},{"x":1567798200000,"y":0.18},{"x":1567798260000,"y":0.08},{"x":1567798320000,"y":0.06},{"x":1567798380000,"y":0.27},{"x":1567798440000,"y":0.09},{"x":1567798500000,"y":0.19},{"x":1567798560000,"y":0.1},{"x":1567798620000,"y":0.11},{"x":1567798680000,"y":0.23},{"x":1567798740000,"y":0.31},{"x":1567798800000,"y":0.19},{"x":1567798860000,"y":0.09},{"x":1567798920000,"y":0.07},{"x":1567798980000,"y":0.22},{"x":1567799040000,"y":0.11},{"x":1567799100000,"y":0.25},{"x":1567799160000,"y":0.12},{"x":1567799220000,"y":0.14},{"x":1567799280000,"y":0.23},{"x":1567799340000,"y":0.08},{"x":1567799400000,"y":0.13},{"x":1567799460000,"y":0.07},{"x":1567799520000,"y":0.07},{"x":1567799580000,"y":0.22},{"x":1567799640000,"y":0.1},{"x":1567799700000,"y":0.17},{"x":1567799760000,"y":0.09},{"x":1567799820000,"y":0.11},{"x":1567799880000,"y":0.21},{"x":1567799940000,"y":0.08},{"x":1567800000000,"y":0.22},{"x":1567800060000,"y":0.07},{"x":1567800120000,"y":0.07},{"x":1567800180000,"y":0.25},{"x":1567800240000,"y":0.15},{"x":1567800300000,"y":0.17},{"x":1567800360000,"y":0.2},{"x":1567800420000,"y":0.11},{"x":1567800480000,"y":18.39},{"x":1567800540000,"y":0.8},{"x":1567800600000,"y":18.67},{"x":1567800660000,"y":0.12},{"x":1567800720000,"y":19.73},{"x":1567800780000,"y":0.14},{"x":1567800840000,"y":0.57},{"x":1567800900000,"y":0.21},{"x":1567800960000,"y":0.13},{"x":1567801020000,"y":0.1},{"x":1567801080000,"y":0.08},{"x":1567801140000,"y":0.22},{"x":1567801200000,"y":0.2},{"x":1567801260000,"y":0.09},{"x":1567801320000,"y":0.1},{"x":1567801380000,"y":0.09},{"x":1567801440000,"y":0.24},{"x":1567801500000,"y":0.15},{"x":1567801560000,"y":0.11},{"x":1567801620000,"y":0.14},{"x":1567801680000,"y":0.12},{"x":1567801740000,"y":0.25},{"x":1567801800000,"y":0.19},{"x":1567801860000,"y":0.1},{"x":1567801920000,"y":0.13},{"x":1567801980000,"y":0.08},{"x":1567802040000,"y":0.23},{"x":1567802100000,"y":0.17},{"x":1567802160000,"y":0.14},{"x":1567802220000,"y":0.17},{"x":1567802280000,"y":0.12},{"x":1567802340000,"y":0.43},{"x":1567802400000,"y":0.19},{"x":1567802460000,"y":0.1},{"x":1567802520000,"y":0.07},{"x":1567802580000,"y":0.1},{"x":1567802640000,"y":0.25},{"x":1567802700000,"y":0.22},{"x":1567802760000,"y":0.11},{"x":1567802820000,"y":0.1},{"x":1567802880000,"y":0.08},{"x":1567802940000,"y":0.12},{"x":1567803000000,"y":0.51},{"x":1567803060000,"y":0.13},{"x":1567803120000,"y":0.12},{"x":1567803180000,"y":0.17},{"x":1567803240000,"y":0.1},{"x":1567803300000,"y":0.33},{"x":1567803360000,"y":0.12},{"x":1567803420000,"y":0.11},{"x":1567803480000,"y":0.1},{"x":1567803540000,"y":0.08},{"x":1567803600000,"y":0.32},{"x":1567803660000,"y":0.19},{"x":1567803720000,"y":0.13},{"x":1567803780000,"y":0.11},{"x":1567803840000,"y":0.14},{"x":1567803900000,"y":0.38},{"x":1567803960000,"y":0.85},{"x":1567804020000,"y":0.1},{"x":1567804080000,"y":0.1},{"x":1567804140000,"y":0.24},{"x":1567804200000,"y":0.3},{"x":1567804260000,"y":0.12},{"x":1567804320000,"y":0.09},{"x":1567804380000,"y":0.09},{"x":1567804440000,"y":0.12},{"x":1567804500000,"y":0.32},{"x":1567804560000,"y":0.1},{"x":1567804620000,"y":0.11},{"x":1567804680000,"y":0.1},{"x":1567804740000,"y":0.09},{"x":1567804800000,"y":0.4},{"x":1567804860000,"y":0.11},{"x":1567804920000,"y":0.12},{"x":1567804980000,"y":0.13},{"x":1567805040000,"y":0.08},{"x":1567805100000,"y":0.21},{"x":1567805160000,"y":0.25},{"x":1567805220000,"y":0.08},{"x":1567805280000,"y":0.11},{"x":1567805340000,"y":0.1},{"x":1567805400000,"y":0.2},{"x":1567805460000,"y":0.24},{"x":1567805520000,"y":0.08},{"x":1567805580000,"y":0.08},{"x":1567805640000,"y":0.12},{"x":1567805700000,"y":0.22},{"x":1567805760000,"y":0.28},{"x":1567805820000,"y":0.15},{"x":1567805880000,"y":0.12},{"x":1567805940000,"y":0.24},{"x":1567806000000,"y":0.24},{"x":1567806060000,"y":0.24},{"x":1567806120000,"y":0.1},{"x":1567806180000,"y":0.12},{"x":1567806240000,"y":0.14},{"x":1567806300000,"y":0.25},{"x":1567806360000,"y":0.26},{"x":1567806420000,"y":0.12},{"x":1567806480000,"y":0.14},{"x":1567806540000,"y":0.08},{"x":1567806600000,"y":0.16},{"x":1567806660000,"y":0.22},{"x":1567806720000,"y":0.12},{"x":1567806780000,"y":0.12},{"x":1567806840000,"y":0.12},{"x":1567806900000,"y":0.19},{"x":1567806960000,"y":0.24},{"x":1567807020000,"y":0.17},{"x":1567807080000,"y":0.12},{"x":1567807140000,"y":0.1},{"x":1567807200000,"y":0.16},{"x":1567807260000,"y":0.32},{"x":1567807320000,"y":0.12},{"x":1567807380000,"y":0.1},{"x":1567807440000,"y":0.1},{"x":1567807500000,"y":0.25},{"x":1567807560000,"y":0.09},{"x":1567807620000,"y":0.27},{"x":1567807680000,"y":0.15},{"x":1567807740000,"y":0.21},{"x":1567807800000,"y":0.2},{"x":1567807860000,"y":0.11},{"x":1567807920000,"y":0.31},{"x":1567807980000,"y":0.1},{"x":1567808040000,"y":0.13},{"x":1567808100000,"y":0.17},{"x":1567808160000,"y":0.13},{"x":1567808220000,"y":0.27},{"x":1567808280000,"y":0.13},{"x":1567808340000,"y":0.1},{"x":1567808400000,"y":0.2},{"x":1567808460000,"y":0.15},{"x":1567808520000,"y":0.31},{"x":1567808580000,"y":0.1},{"x":1567808640000,"y":0.12},{"x":1567808700000,"y":0.23},{"x":1567808760000,"y":0.16},{"x":1567808820000,"y":0.27},{"x":1567808880000,"y":0.11},{"x":1567808940000,"y":0.15},{"x":1567809000000,"y":0.23},{"x":1567809060000,"y":0.1},{"x":1567809120000,"y":0.29},{"x":1567809180000,"y":0.07},{"x":1567809240000,"y":0.09},{"x":1567809300000,"y":0.28},{"x":1567809360000,"y":0.25},{"x":1567809420000,"y":0.27},{"x":1567809480000,"y":0.11},{"x":1567809540000,"y":0.23},{"x":1567809600000,"y":0.26},{"x":1567809660000,"y":0.07},{"x":1567809720000,"y":0.08},{"x":1567809780000,"y":13.01},{"x":1567809840000,"y":7.24},{"x":1567809900000,"y":0.37},{"x":1567809960000,"y":0.17},{"x":1567810020000,"y":0.12},{"x":1567810080000,"y":18.88},{"x":1567810140000,"y":0.22},{"x":1567810200000,"y":7.75},{"x":1567810260000,"y":11.75},{"x":1567810320000,"y":0.5},{"x":1567810380000,"y":0.3},{"x":1567810440000,"y":0.12},{"x":1567810500000,"y":0.25},{"x":1567810560000,"y":0.11},{"x":1567810620000,"y":0.14},{"x":1567810680000,"y":0.32},{"x":1567810740000,"y":0.14},{"x":1567810800000,"y":0.31},{"x":1567810860000,"y":0.21},{"x":1567810920000,"y":0.11},{"x":1567810980000,"y":0.28},{"x":1567811040000,"y":0.12},{"x":1567811100000,"y":0.24},{"x":1567811160000,"y":0.15},{"x":1567811220000,"y":0.12},{"x":1567811280000,"y":0.25},{"x":1567811340000,"y":0.36},{"x":1567811400000,"y":0.24},{"x":1567811460000,"y":0.12},{"x":1567811520000,"y":0.14},{"x":1567811580000,"y":0.13},{"x":1567811640000,"y":0.3},{"x":1567811700000,"y":0.17},{"x":1567811760000,"y":0.15},{"x":1567811820000,"y":0.18},{"x":1567811880000,"y":0.12},{"x":1567811940000,"y":0.42},{"x":1567812000000,"y":0.18},{"x":1567812060000,"y":0.16},{"x":1567812120000,"y":0.1},{"x":1567812180000,"y":0.14},{"x":1567812240000,"y":0.25},{"x":1567812300000,"y":0.19},{"x":1567812360000,"y":0.11},{"x":1567812420000,"y":0.12},{"x":1567812480000,"y":0.12},{"x":1567812540000,"y":0.25},{"x":1567812600000,"y":0.27},{"x":1567812660000,"y":0.12},{"x":1567812720000,"y":0.09},{"x":1567812780000,"y":0.1},{"x":1567812840000,"y":0.23},{"x":1567812900000,"y":0.2},{"x":1567812960000,"y":0.1},{"x":1567813020000,"y":0.12},{"x":1567813080000,"y":0.11},{"x":1567813140000,"y":0.48},{"x":1567813200000,"y":0.22},{"x":1567813260000,"y":0.1},{"x":1567813320000,"y":0.11},{"x":1567813380000,"y":0.08},{"x":1567813440000,"y":0.11},{"x":1567813500000,"y":0.36},{"x":1567813560000,"y":0.14},{"x":1567813620000,"y":0.1},{"x":1567813680000,"y":0.12},{"x":1567813740000,"y":0.15},{"x":1567813800000,"y":0.37},{"x":1567813860000,"y":0.11},{"x":1567813920000,"y":0.15},{"x":1567813980000,"y":0.09},{"x":1567814040000,"y":0.08},{"x":1567814100000,"y":0.35},{"x":1567814160000,"y":0.09},{"x":1567814220000,"y":0.07},{"x":1567814280000,"y":0.14},{"x":1567814340000,"y":0.1},{"x":1567814400000,"y":0.37},{"x":1567814460000,"y":0.12},{"x":1567814520000,"y":1.52},{"x":1567814580000,"y":0.13},{"x":1567814640000,"y":0.09},{"x":1567814700000,"y":0.36},{"x":1567814760000,"y":0.08},{"x":1567814820000,"y":0.06},{"x":1567814880000,"y":0.09},{"x":1567814940000,"y":0.25},{"x":1567815000000,"y":0.41},{"x":1567815060000,"y":0.07},{"x":1567815120000,"y":0.13},{"x":1567815180000,"y":0.17},{"x":1567815240000,"y":0.13},{"x":1567815300000,"y":0.36},{"x":1567815360000,"y":1},{"x":1567815420000,"y":0.11},{"x":1567815480000,"y":0.16},{"x":1567815540000,"y":0.08},{"x":1567815600000,"y":0.29},{"x":1567815660000,"y":0.1},{"x":1567815720000,"y":0.12},{"x":1567815780000,"y":0.16},{"x":1567815840000,"y":0.1},{"x":1567815900000,"y":0.16},{"x":1567815960000,"y":0.29},{"x":1567816020000,"y":0.19},{"x":1567816080000,"y":0.15},{"x":1567816140000,"y":0.12},{"x":1567816200000,"y":0.19},{"x":1567816260000,"y":5.02},{"x":1567816320000,"y":0.1},{"x":1567816380000,"y":0.11},{"x":1567816440000,"y":0.13},{"x":1567816500000,"y":0.27},{"x":1567816560000,"y":0.28},{"x":1567816620000,"y":0.1},{"x":1567816680000,"y":0.51},{"x":1567816740000,"y":0.27},{"x":1567816800000,"y":0.19},{"x":1567816860000,"y":0.23},{"x":1567816920000,"y":0.08},{"x":1567816980000,"y":0.14},{"x":1567817040000,"y":0.1},{"x":1567817100000,"y":0.22},{"x":1567817160000,"y":0.29},{"x":1567817220000,"y":0.15},{"x":1567817280000,"y":0.16},{"x":1567817340000,"y":0.1},{"x":1567817400000,"y":0.27},{"x":1567817460000,"y":0.33},{"x":1567817520000,"y":0.11},{"x":1567817580000,"y":0.16},{"x":1567817640000,"y":0.11},{"x":1567817700000,"y":0.23},{"x":1567817760000,"y":0.35},{"x":1567817820000,"y":0.12},{"x":1567817880000,"y":0.18},{"x":1567817940000,"y":0.16},{"x":1567818000000,"y":0.18},{"x":1567818060000,"y":0.1},{"x":1567818120000,"y":0.74},{"x":1567818180000,"y":0.2},{"x":1567818240000,"y":0.12},{"x":1567818300000,"y":0.27},{"x":1567818360000,"y":0.15},{"x":1567818420000,"y":1.06},{"x":1567818480000,"y":0.24},{"x":1567818540000,"y":0.25},{"x":1567818600000,"y":0.26},{"x":1567818660000,"y":0.13},{"x":1567818720000,"y":0.27},{"x":1567818780000,"y":0.1},{"x":1567818840000,"y":0.13},{"x":1567818900000,"y":0.24},{"x":1567818960000,"y":0.12},{"x":1567819020000,"y":0.29},{"x":1567819080000,"y":0.15},{"x":1567819140000,"y":0.18},{"x":1567819200000,"y":0.29},{"x":1567819260000,"y":0.14},{"x":1567819320000,"y":0.3},{"x":1567819380000,"y":0.17},{"x":1567819440000,"y":0.16},{"x":1567819500000,"y":0.33},{"x":1567819560000,"y":0.17},{"x":1567819620000,"y":0.32},{"x":1567819680000,"y":0.15},{"x":1567819740000,"y":0.2},{"x":1567819800000,"y":0.21},{"x":1567819860000,"y":0.17},{"x":1567819920000,"y":0.33},{"x":1567819980000,"y":0.18},{"x":1567820040000,"y":0.19},{"x":1567820100000,"y":0.27},{"x":1567820160000,"y":0.15},{"x":1567820220000,"y":0.18},{"x":1567820280000,"y":0.31},{"x":1567820340000,"y":0.34},{"x":1567820400000,"y":0.26},{"x":1567820460000,"y":0.14},{"x":1567820520000,"y":0.18},{"x":1567820580000,"y":0.37},{"x":1567820640000,"y":0.18},{"x":1567820700000,"y":0.26},{"x":1567820760000,"y":0.16},{"x":1567820820000,"y":0.17},{"x":1567820880000,"y":0.31},{"x":1567820940000,"y":0.17},{"x":1567821000000,"y":0.29},{"x":1567821060000,"y":0.17},{"x":1567821120000,"y":0.16},{"x":1567821180000,"y":0.31},{"x":1567821240000,"y":0.18},{"x":1567821300000,"y":0.22},{"x":1567821360000,"y":0.17},{"x":1567821420000,"y":0.15},{"x":1567821480000,"y":0.3},{"x":1567821540000,"y":0.19},{"x":1567821600000,"y":0.33},{"x":1567821660000,"y":0.2},{"x":1567821720000,"y":0.21},{"x":1567821780000,"y":0.33},{"x":1567821840000,"y":0.17},{"x":1567821900000,"y":0.25},{"x":1567821960000,"y":0.19},{"x":1567822020000,"y":0.18},{"x":1567822080000,"y":0.33},{"x":1567822140000,"y":0.24},{"x":1567822200000,"y":0.25},{"x":1567822260000,"y":0.15},{"x":1567822320000,"y":0.25},{"x":1567822380000,"y":0.38},{"x":1567822440000,"y":0.17},{"x":1567822500000,"y":0.31},{"x":1567822560000,"y":0.18},{"x":1567822620000,"y":0.2},{"x":1567822680000,"y":0.17},{"x":1567822740000,"y":0.33},{"x":1567822800000,"y":0.32},{"x":1567822860000,"y":0.24},{"x":1567822920000,"y":0.17},{"x":1567822980000,"y":0.17},{"x":1567823040000,"y":0.32},{"x":1567823100000,"y":0.23},{"x":1567823160000,"y":0.16},{"x":1567823220000,"y":0.16},{"x":1567823280000,"y":0.17},{"x":1567823340000,"y":0.37},{"x":1567823400000,"y":0.29},{"x":1567823460000,"y":0.19},{"x":1567823520000,"y":0.21},{"x":1567823580000,"y":0.18},{"x":1567823640000,"y":0.32},{"x":1567823700000,"y":0.3},{"x":1567823760000,"y":0.19},{"x":1567823820000,"y":0.19},{"x":1567823880000,"y":0.21},{"x":1567823940000,"y":0.5},{"x":1567824000000,"y":0.28},{"x":1567824060000,"y":0.15},{"x":1567824120000,"y":0.21},{"x":1567824180000,"y":0.22},{"x":1567824240000,"y":0.38},{"x":1567824300000,"y":0.26},{"x":1567824360000,"y":0.26},{"x":1567824420000,"y":0.21},{"x":1567824480000,"y":0.18},{"x":1567824540000,"y":0.32},{"x":1567824600000,"y":0.27},{"x":1567824660000,"y":0.17},{"x":1567824720000,"y":0.17},{"x":1567824780000,"y":0.17},{"x":1567824840000,"y":0.2},{"x":1567824900000,"y":0.43},{"x":1567824960000,"y":0.18},{"x":1567825020000,"y":0.18},{"x":1567825080000,"y":0.18},{"x":1567825140000,"y":0.19},{"x":1567825200000,"y":0.62},{"x":1567825260000,"y":0.21},{"x":1567825320000,"y":0.15},{"x":1567825380000,"y":1.94},{"x":1567825440000,"y":0.17},{"x":1567825500000,"y":0.39},{"x":1567825560000,"y":0.18},{"x":1567825620000,"y":0.15},{"x":1567825680000,"y":0.19},{"x":1567825740000,"y":0.35},{"x":1567825800000,"y":0.49},{"x":1567825860000,"y":0.18},{"x":1567825920000,"y":0.22},{"x":1567825980000,"y":0.21},{"x":1567826040000,"y":0.17},{"x":1567826100000,"y":0.37},{"x":1567826160000,"y":0.16},{"x":1567826220000,"y":0.17},{"x":1567826280000,"y":1.36},{"x":1567826340000,"y":0.17},{"x":1567826400000,"y":2.48},{"x":1567826460000,"y":0.18},{"x":1567826520000,"y":0.18},{"x":1567826580000,"y":0.33},{"x":1567826640000,"y":0.54},{"x":1567826700000,"y":0.34},{"x":1567826760000,"y":0.19},{"x":1567826820000,"y":0.17},{"x":1567826880000,"y":0.2},{"x":1567826940000,"y":0.15},{"x":1567827000000,"y":0.41},{"x":1567827060000,"y":0.29},{"x":1567827120000,"y":0.18},{"x":1567827180000,"y":0.16},{"x":1567827240000,"y":0.16},{"x":1567827300000,"y":0.29},{"x":1567827360000,"y":0.3},{"x":1567827420000,"y":1.47},{"x":1567827480000,"y":0.18},{"x":1567827540000,"y":0.33},{"x":1567827600000,"y":0.28},{"x":1567827660000,"y":1.21},{"x":1567827720000,"y":0.18},{"x":1567827780000,"y":0.16},{"x":1567827840000,"y":0.15},{"x":1567827900000,"y":0.27},{"x":1567827960000,"y":0.35},{"x":1567828020000,"y":0.16},{"x":1567828080000,"y":0.2},{"x":1567828140000,"y":0.16},{"x":1567828200000,"y":0.29},{"x":1567828260000,"y":0.93},{"x":1567828320000,"y":0.17},{"x":1567828380000,"y":0.19},{"x":1567828440000,"y":0.15},{"x":1567828500000,"y":0.23},{"x":1567828560000,"y":0.3},{"x":1567828620000,"y":0.11},{"x":1567828680000,"y":0.12},{"x":1567828740000,"y":0.1},{"x":1567828800000,"y":0.25},{"x":1567828860000,"y":0.27},{"x":1567828920000,"y":0.11},{"x":1567828980000,"y":0.1},{"x":1567829040000,"y":1.23},{"x":1567829100000,"y":1.87},{"x":1567829160000,"y":0.27},{"x":1567829220000,"y":0.07},{"x":1567829280000,"y":0.11},{"x":1567829340000,"y":1.13},{"x":1567829400000,"y":0.6},{"x":1567829460000,"y":0.11},{"x":1567829520000,"y":1.1},{"x":1567829580000,"y":0.09},{"x":1567829640000,"y":0.08},{"x":1567829700000,"y":0.19},{"x":1567829760000,"y":0.63},{"x":1567829820000,"y":0.31},{"x":1567829880000,"y":0.1},{"x":1567829940000,"y":0.72},{"x":1567830000000,"y":0.21},{"x":1567830060000,"y":0.13},{"x":1567830120000,"y":0.23},{"x":1567830180000,"y":0.33},{"x":1567830240000,"y":0.11},{"x":1567830300000,"y":0.16},{"x":1567830360000,"y":0.11},{"x":1567830420000,"y":0.24},{"x":1567830480000,"y":0.12},{"x":1567830540000,"y":0.1},{"x":1567830600000,"y":0.16},{"x":1567830660000,"y":0.15},{"x":1567830720000,"y":0.32},{"x":1567830780000,"y":0.08},{"x":1567830840000,"y":0.14},{"x":1567830900000,"y":0.2},{"x":1567830960000,"y":0.15},{"x":1567831020000,"y":0.6},{"x":1567831080000,"y":0.09},{"x":1567831140000,"y":0.31},{"x":1567831200000,"y":0.17},{"x":1567831260000,"y":0.1},{"x":1567831320000,"y":0.25},{"x":1567831380000,"y":0.11},{"x":1567831440000,"y":0.22},{"x":1567831500000,"y":0.22},{"x":1567831560000,"y":0.09},{"x":1567831620000,"y":0.27},{"x":1567831680000,"y":1.87},{"x":1567831740000,"y":0.1},{"x":1567831800000,"y":0.21},{"x":1567831860000,"y":0.12},{"x":1567831920000,"y":0.12},{"x":1567831980000,"y":0.3},{"x":1567832040000,"y":0.09},{"x":1567832100000,"y":1.42},{"x":1567832160000,"y":0.1},{"x":1567832220000,"y":0.1},{"x":1567832280000,"y":0.45},{"x":1567832340000,"y":0.11},{"x":1567832400000,"y":1.4},{"x":1567832460000,"y":0.12},{"x":1567832520000,"y":0.15},{"x":1567832580000,"y":0.26},{"x":1567832640000,"y":0.16},{"x":1567832700000,"y":0.17},{"x":1567832760000,"y":0.48},{"x":1567832820000,"y":0.09},{"x":1567832880000,"y":0.26},{"x":1567832940000,"y":0.22},{"x":1567833000000,"y":0.15},{"x":1567833060000,"y":0.2},{"x":1567833120000,"y":0.15},{"x":1567833180000,"y":1.4},{"x":1567833240000,"y":0.11},{"x":1567833300000,"y":0.18},{"x":1567833360000,"y":0.13},{"x":1567833420000,"y":0.07},{"x":1567833480000,"y":0.23},{"x":1567833540000,"y":0.07},{"x":1567833600000,"y":3.81},{"x":1567833660000,"y":0.14},{"x":1567833720000,"y":0.11},{"x":1567833780000,"y":0.25},{"x":1567833840000,"y":0.1},{"x":1567833900000,"y":0.64},{"x":1567833960000,"y":0.07},{"x":1567834020000,"y":1.53},{"x":1567834080000,"y":0.11},{"x":1567834140000,"y":0.26},{"x":1567834200000,"y":0.27},{"x":1567834260000,"y":0.08},{"x":1567834320000,"y":0.16},{"x":1567834380000,"y":0.13},{"x":1567834440000,"y":0.3},{"x":1567834500000,"y":0.25},{"x":1567834560000,"y":0.13},{"x":1567834620000,"y":0.15},{"x":1567834680000,"y":0.12},{"x":1567834740000,"y":0.36},{"x":1567834800000,"y":0.18},{"x":1567834860000,"y":1.11},{"x":1567834920000,"y":0.12},{"x":1567834980000,"y":0.12},{"x":1567835040000,"y":0.24},{"x":1567835100000,"y":0.17},{"x":1567835160000,"y":0.1},{"x":1567835220000,"y":0.07},{"x":1567835280000,"y":0.09},{"x":1567835340000,"y":0.26},{"x":1567835400000,"y":0.2},{"x":1567835460000,"y":0.12},{"x":1567835520000,"y":1.93},{"x":1567835580000,"y":0.12},{"x":1567835640000,"y":0.29},{"x":1567835700000,"y":0.2},{"x":1567835760000,"y":0.09},{"x":1567835820000,"y":0.07},{"x":1567835880000,"y":0.07},{"x":1567835940000,"y":0.22},{"x":1567836000000,"y":0.25},{"x":1567836060000,"y":0.15},{"x":1567836120000,"y":0.57},{"x":1567836180000,"y":0.1},{"x":1567836240000,"y":1.71},{"x":1567836300000,"y":0.48},{"x":1567836360000,"y":0.12},{"x":1567836420000,"y":0.14},{"x":1567836480000,"y":0.08},{"x":1567836540000,"y":0.3},{"x":1567836600000,"y":0.33},{"x":1567836660000,"y":0.09},{"x":1567836720000,"y":0.11},{"x":1567836780000,"y":0.1},{"x":1567836840000,"y":0.1},{"x":1567836900000,"y":0.3},{"x":1567836960000,"y":0.15},{"x":1567837020000,"y":0.2},{"x":1567837080000,"y":0.13},{"x":1567837140000,"y":0.17},{"x":1567837200000,"y":0.32},{"x":1567837260000,"y":0.1},{"x":1567837320000,"y":0.17},{"x":1567837380000,"y":0.15},{"x":1567837440000,"y":0.11},{"x":1567837500000,"y":0.41},{"x":1567837560000,"y":0.13},{"x":1567837620000,"y":0.1},{"x":1567837680000,"y":0.09},{"x":1567837740000,"y":0.11},{"x":1567837800000,"y":0.54},{"x":1567837860000,"y":0.11},{"x":1567837920000,"y":0.09},{"x":1567837980000,"y":0.17},{"x":1567838040000,"y":0.14},{"x":1567838100000,"y":2.43},{"x":1567838160000,"y":3.17},{"x":1567838220000,"y":0.16},{"x":1567838280000,"y":0.15},{"x":1567838340000,"y":0.76},{"x":1567838400000,"y":0.34},{"x":1567838460000,"y":0.12},{"x":1567838520000,"y":0.14},{"x":1567838580000,"y":0.14},{"x":1567838640000,"y":0.13},{"x":1567838700000,"y":0.16},{"x":1567838760000,"y":0.3},{"x":1567838820000,"y":0.1},{"x":1567838880000,"y":0.14},{"x":1567838940000,"y":0.41},{"x":1567839000000,"y":0.2},{"x":1567839060000,"y":0.27},{"x":1567839120000,"y":0.08},{"x":1567839180000,"y":0.1},{"x":1567839240000,"y":0.13},{"x":1567839300000,"y":0.14},{"x":1567839360000,"y":0.22},{"x":1567839420000,"y":0.1},{"x":1567839480000,"y":0.08},{"x":1567839540000,"y":0.1},{"x":1567839600000,"y":0.27},{"x":1567839660000,"y":0.27},{"x":1567839720000,"y":0.14},{"x":1567839780000,"y":0.11},{"x":1567839840000,"y":0.08},{"x":1567839900000,"y":0.19},{"x":1567839960000,"y":0.21},{"x":1567840020000,"y":0.09},{"x":1567840080000,"y":0.11},{"x":1567840140000,"y":0.29},{"x":1567840200000,"y":0.23},{"x":1567840260000,"y":0.24},{"x":1567840320000,"y":0.16},{"x":1567840380000,"y":0.14},{"x":1567840440000,"y":0.12},{"x":1567840500000,"y":0.25},{"x":1567840560000,"y":0.21},{"x":1567840620000,"y":0.14},{"x":1567840680000,"y":0.09},{"x":1567840740000,"y":0.11},{"x":1567840800000,"y":0.19},{"x":1567840860000,"y":0.14},{"x":1567840920000,"y":0.26},{"x":1567840980000,"y":0.11},{"x":1567841040000,"y":0.25},{"x":1567841100000,"y":0.29},{"x":1567841160000,"y":0.09},{"x":1567841220000,"y":0.23},{"x":1567841280000,"y":0.1},{"x":1567841340000,"y":0.1},{"x":1567841400000,"y":0.18},{"x":1567841460000,"y":0.1},{"x":1567841520000,"y":0.3},{"x":1567841580000,"y":0.11},{"x":1567841640000,"y":0.16},{"x":1567841700000,"y":0.19},{"x":1567841760000,"y":0.15},{"x":1567841820000,"y":0.39},{"x":1567841880000,"y":0.13},{"x":1567841940000,"y":0.38},{"x":1567842000000,"y":0.22},{"x":1567842060000,"y":0.1},{"x":1567842120000,"y":0.33},{"x":1567842180000,"y":0.07},{"x":1567842240000,"y":0.08},{"x":1567842300000,"y":0.21},{"x":1567842360000,"y":1.09},{"x":1567842420000,"y":0.29},{"x":1567842480000,"y":0.11},{"x":1567842540000,"y":0.11},{"x":1567842600000,"y":0.31},{"x":1567842660000,"y":0.12},{"x":1567842720000,"y":0.11},{"x":1567842780000,"y":0.2},{"x":1567842840000,"y":0.08},{"x":1567842900000,"y":0.17},{"x":1567842960000,"y":0.14},{"x":1567843020000,"y":0.15},{"x":1567843080000,"y":0.33},{"x":1567843140000,"y":0.12},{"x":1567843200000,"y":0.27},{"x":1567843260000,"y":0.07},{"x":1567843320000,"y":0.1},{"x":1567843380000,"y":0.93},{"x":1567843440000,"y":0.1},{"x":1567843500000,"y":0.18},{"x":1567843560000,"y":0.1},{"x":1567843620000,"y":0.09},{"x":1567843680000,"y":0.25},{"x":1567843740000,"y":0.31},{"x":1567843800000,"y":0.22},{"x":1567843860000,"y":0.08},{"x":1567843920000,"y":0.13},{"x":1567843980000,"y":0.25},{"x":1567844040000,"y":0.19},{"x":1567844100000,"y":0.3},{"x":1567844160000,"y":0.1},{"x":1567844220000,"y":0.12},{"x":1567844280000,"y":1.67},{"x":1567844340000,"y":0.09},{"x":1567844400000,"y":0.23},{"x":1567844460000,"y":0.11},{"x":1567844520000,"y":0.09},{"x":1567844580000,"y":0.24},{"x":1567844640000,"y":0.13},{"x":1567844700000,"y":0.3},{"x":1567844760000,"y":0.15},{"x":1567844820000,"y":0.09},{"x":1567844880000,"y":0.11},{"x":1567844940000,"y":0.33},{"x":1567845000000,"y":0.24},{"x":1567845060000,"y":0.14},{"x":1567845120000,"y":0.14},{"x":1567845180000,"y":0.11},{"x":1567845240000,"y":0.54},{"x":1567845300000,"y":0.33},{"x":1567845360000,"y":0.12},{"x":1567845420000,"y":0.17},{"x":1567845480000,"y":0.13},{"x":1567845540000,"y":0.43},{"x":1567845600000,"y":0.25},{"x":1567845660000,"y":0.15},{"x":1567845720000,"y":0.2},{"x":1567845780000,"y":1.23},{"x":1567845840000,"y":0.25},{"x":1567845900000,"y":0.27},{"x":1567845960000,"y":0.17},{"x":1567846020000,"y":0.17},{"x":1567846080000,"y":0.15},{"x":1567846140000,"y":0.25},{"x":1567846200000,"y":0.15},{"x":1567846260000,"y":0.15},{"x":1567846320000,"y":0.13},{"x":1567846380000,"y":0.14},{"x":1567846440000,"y":0.32},{"x":1567846500000,"y":0.23},{"x":1567846560000,"y":0.16},{"x":1567846620000,"y":0.92},{"x":1567846680000,"y":0.15},{"x":1567846740000,"y":0.27},{"x":1567846800000,"y":0.25},{"x":1567846860000,"y":0.17},{"x":1567846920000,"y":0.17},{"x":1567846980000,"y":0.11},{"x":1567847040000,"y":0.28},{"x":1567847100000,"y":0.21},{"x":1567847160000,"y":0.13},{"x":1567847220000,"y":0.13},{"x":1567847280000,"y":0.15},{"x":1567847340000,"y":0.34},{"x":1567847400000,"y":0.78},{"x":1567847460000,"y":0.1},{"x":1567847520000,"y":0.26},{"x":1567847580000,"y":0.15},{"x":1567847640000,"y":0.12},{"x":1567847700000,"y":0.4},{"x":1567847760000,"y":0.17},{"x":1567847820000,"y":0.13},{"x":1567847880000,"y":0.11},{"x":1567847940000,"y":1.59},{"x":1567848000000,"y":0.48},{"x":1567848060000,"y":0.18},{"x":1567848120000,"y":1.09},{"x":1567848180000,"y":0.1},{"x":1567848240000,"y":0.12},{"x":1567848300000,"y":0.32},{"x":1567848360000,"y":0.1},{"x":1567848420000,"y":0.15},{"x":1567848480000,"y":0.17},{"x":1567848540000,"y":0.12},{"x":1567848600000,"y":0.42},{"x":1567848660000,"y":0.12},{"x":1567848720000,"y":0.12},{"x":1567848780000,"y":0.44},{"x":1567848840000,"y":0.12},{"x":1567848900000,"y":0.4},{"x":1567848960000,"y":0.07},{"x":1567849020000,"y":0.11},{"x":1567849080000,"y":0.1},{"x":1567849140000,"y":0.24},{"x":1567849200000,"y":1.58},{"x":1567849260000,"y":0.12},{"x":1567849320000,"y":0.1},{"x":1567849380000,"y":0.07},{"x":1567849440000,"y":0.15},{"x":1567849500000,"y":0.28},{"x":1567849560000,"y":0.25},{"x":1567849620000,"y":0.07},{"x":1567849680000,"y":0.1},{"x":1567849740000,"y":0.09},{"x":1567849800000,"y":0.17},{"x":1567849860000,"y":0.28},{"x":1567849920000,"y":0.13},{"x":1567849980000,"y":0.14},{"x":1567850040000,"y":0.14},{"x":1567850100000,"y":0.27},{"x":1567850160000,"y":0.29},{"x":1567850220000,"y":0.11},{"x":1567850280000,"y":0.23},{"x":1567850340000,"y":0.13},{"x":1567850400000,"y":0.37},{"x":1567850460000,"y":0.36},{"x":1567850520000,"y":0.15},{"x":1567850580000,"y":0.11},{"x":1567850640000,"y":0.14},{"x":1567850700000,"y":0.33},{"x":1567850760000,"y":0.35},{"x":1567850820000,"y":0.14},{"x":1567850880000,"y":0.07},{"x":1567850940000,"y":0.76},{"x":1567851000000,"y":0.24},{"x":1567851060000,"y":0.32},{"x":1567851120000,"y":0.13},{"x":1567851180000,"y":0.18},{"x":1567851240000,"y":0.14},{"x":1567851300000,"y":0.25},{"x":1567851360000,"y":8.82},{"x":1567851420000,"y":0.22},{"x":1567851480000,"y":0.1},{"x":1567851540000,"y":0.19},{"x":1567851600000,"y":0.19},{"x":1567851660000,"y":0.33},{"x":1567851720000,"y":0.12},{"x":1567851780000,"y":0.27},{"x":1567851840000,"y":0.29},{"x":1567851900000,"y":0.39},{"x":1567851960000,"y":0.18},{"x":1567852020000,"y":0.42},{"x":1567852080000,"y":0.21},{"x":1567852140000,"y":0.2},{"x":1567852200000,"y":0.31},{"x":1567852260000,"y":0.18},{"x":1567852320000,"y":0.34},{"x":1567852380000,"y":0.2},{"x":1567852440000,"y":0.23},{"x":1567852500000,"y":0.38},{"x":1567852560000,"y":0.22},{"x":1567852620000,"y":0.39},{"x":1567852680000,"y":0.17},{"x":1567852740000,"y":0.31},{"x":1567852800000,"y":0.29},{"x":1567852860000,"y":0.16},{"x":1567852920000,"y":0.3},{"x":1567852980000,"y":0.19},{"x":1567853040000,"y":0.24},{"x":1567853100000,"y":0.24},{"x":1567853160000,"y":0.22},{"x":1567853220000,"y":0.34},{"x":1567853280000,"y":0.17},{"x":1567853340000,"y":0.23},{"x":1567853400000,"y":0.31},{"x":1567853460000,"y":0.2},{"x":1567853520000,"y":0.41},{"x":1567853580000,"y":0.84},{"x":1567853640000,"y":0.18},{"x":1567853700000,"y":0.25},{"x":1567853760000,"y":0.2},{"x":1567853820000,"y":0.35},{"x":1567853880000,"y":0.19},{"x":1567853940000,"y":0.21},{"x":1567854000000,"y":0.33},{"x":1567854060000,"y":0.19},{"x":1567854120000,"y":0.2},{"x":1567854180000,"y":0.47},{"x":1567854240000,"y":0.17},{"x":1567854300000,"y":0.27},{"x":1567854360000,"y":0.19},{"x":1567854420000,"y":0.16},{"x":1567854480000,"y":0.34},{"x":1567854540000,"y":0.4},{"x":1567854600000,"y":0.29},{"x":1567854660000,"y":0.2},{"x":1567854720000,"y":0.17},{"x":1567854780000,"y":0.43},{"x":1567854840000,"y":0.2},{"x":1567854900000,"y":0.29},{"x":1567854960000,"y":0.2},{"x":1567855020000,"y":0.2},{"x":1567855080000,"y":0.37},{"x":1567855140000,"y":0.18},{"x":1567855200000,"y":0.24},{"x":1567855260000,"y":0.22},{"x":1567855320000,"y":0.19},{"x":1567855380000,"y":3.87},{"x":1567855440000,"y":0.18},{"x":1567855500000,"y":1.53},{"x":1567855560000,"y":0.2},{"x":1567855620000,"y":0.17},{"x":1567855680000,"y":0.39},{"x":1567855740000,"y":0.19},{"x":1567855800000,"y":0.27},{"x":1567855860000,"y":0.21},{"x":1567855920000,"y":0.21},{"x":1567855980000,"y":0.35},{"x":1567856040000,"y":0.17},{"x":1567856100000,"y":0.29},{"x":1567856160000,"y":0.19},{"x":1567856220000,"y":0.17},{"x":1567856280000,"y":0.17},{"x":1567856340000,"y":0.48},{"x":1567856400000,"y":0.27},{"x":1567856460000,"y":0.15},{"x":1567856520000,"y":0.17},{"x":1567856580000,"y":0.19},{"x":1567856640000,"y":3.97},{"x":1567856700000,"y":0.29},{"x":1567856760000,"y":0.18},{"x":1567856820000,"y":0.21},{"x":1567856880000,"y":0.22},{"x":1567856940000,"y":0.31},{"x":1567857000000,"y":0.4},{"x":1567857060000,"y":0.17},{"x":1567857120000,"y":0.19},{"x":1567857180000,"y":0.16},{"x":1567857240000,"y":0.32},{"x":1567857300000,"y":0.28},{"x":1567857360000,"y":0.18},{"x":1567857420000,"y":0.17},{"x":1567857480000,"y":0.2},{"x":1567857540000,"y":0.36},{"x":1567857600000,"y":0.28},{"x":1567857660000,"y":0.25},{"x":1567857720000,"y":0.22},{"x":1567857780000,"y":0.16},{"x":1567857840000,"y":0.37},{"x":1567857900000,"y":0.33},{"x":1567857960000,"y":0.2},{"x":1567858020000,"y":0.62},{"x":1567858080000,"y":3.21},{"x":1567858140000,"y":0.42},{"x":1567858200000,"y":0.31},{"x":1567858260000,"y":0.17},{"x":1567858320000,"y":0.22},{"x":1567858380000,"y":0.22},{"x":1567858440000,"y":0.31},{"x":1567858500000,"y":0.29},{"x":1567858560000,"y":0.38},{"x":1567858620000,"y":0.18},{"x":1567858680000,"y":0.22},{"x":1567858740000,"y":0.24},{"x":1567858800000,"y":0.47},{"x":1567858860000,"y":0.18},{"x":1567858920000,"y":0.18},{"x":1567858980000,"y":1.58},{"x":1567859040000,"y":0.17},{"x":1567859100000,"y":0.46},{"x":1567859160000,"y":0.21},{"x":1567859220000,"y":0.2},{"x":1567859280000,"y":0.26},{"x":1567859340000,"y":0.17},{"x":1567859400000,"y":0.45},{"x":1567859460000,"y":0.2},{"x":1567859520000,"y":0.17},{"x":1567859580000,"y":0.18},{"x":1567859640000,"y":0.19},{"x":1567859700000,"y":0.46},{"x":1567859760000,"y":0.16},{"x":1567859820000,"y":0.19},{"x":1567859880000,"y":0.19},{"x":1567859940000,"y":0.29},{"x":1567860000000,"y":3.85},{"x":1567860060000,"y":0.22},{"x":1567860120000,"y":0.17},{"x":1567860180000,"y":0.16},{"x":1567860240000,"y":0.17},{"x":1567860300000,"y":0.25},{"x":1567860360000,"y":0.3},{"x":1567860420000,"y":0.18},{"x":1567860480000,"y":0.18},{"x":1567860540000,"y":0.17},{"x":1567860600000,"y":0.27},{"x":1567860660000,"y":0.3},{"x":1567860720000,"y":0.17},{"x":1567860780000,"y":0.21},{"x":1567860840000,"y":0.15},{"x":1567860900000,"y":0.25},{"x":1567860960000,"y":0.3},{"x":1567861020000,"y":0.18},{"x":1567861080000,"y":0.16},{"x":1567861140000,"y":0.17},{"x":1567861200000,"y":0.36},{"x":1567861260000,"y":0.32},{"x":1567861320000,"y":0.19},{"x":1567861380000,"y":0.19},{"x":1567861440000,"y":0.18},{"x":1567861500000,"y":0.27},{"x":1567861560000,"y":0.37},{"x":1567861620000,"y":0.17},{"x":1567861680000,"y":1.4},{"x":1567861740000,"y":0.27},{"x":1567861800000,"y":0.19},{"x":1567861860000,"y":0.28},{"x":1567861920000,"y":0.13},{"x":1567861980000,"y":0.11},{"x":1567862040000,"y":0.11},{"x":1567862100000,"y":0.18},{"x":1567862160000,"y":0.28},{"x":1567862220000,"y":0.08},{"x":1567862280000,"y":0.08},{"x":1567862340000,"y":0.11},{"x":1567862400000,"y":0.2},{"x":1567862460000,"y":0.25},{"x":1567862520000,"y":0.58},{"x":1567862580000,"y":0.12},{"x":1567862640000,"y":0.07},{"x":1567862700000,"y":0.15},{"x":1567862760000,"y":0.09},{"x":1567862820000,"y":0.29},{"x":1567862880000,"y":0.07},{"x":1567862940000,"y":0.14},{"x":1567863000000,"y":0.23},{"x":1567863060000,"y":0.1},{"x":1567863120000,"y":0.27},{"x":1567863180000,"y":0.11},{"x":1567863240000,"y":0.14},{"x":1567863300000,"y":0.24},{"x":1567863360000,"y":0.13},{"x":1567863420000,"y":0.27},{"x":1567863480000,"y":0.12},{"x":1567863540000,"y":0.3},{"x":1567863600000,"y":0.28},{"x":1567863660000,"y":0.1},{"x":1567863720000,"y":0.26},{"x":1567863780000,"y":0.12},{"x":1567863840000,"y":0.12},{"x":1567863900000,"y":0.26},{"x":1567863960000,"y":0.18},{"x":1567864020000,"y":0.28},{"x":1567864080000,"y":0.12},{"x":1567864140000,"y":0.14},{"x":1567864200000,"y":0.21},{"x":1567864260000,"y":0.12},{"x":1567864320000,"y":0.25},{"x":1567864380000,"y":0.1},{"x":1567864440000,"y":0.12},{"x":1567864500000,"y":0.17},{"x":1567864560000,"y":0.08},{"x":1567864620000,"y":0.23},{"x":1567864680000,"y":0.1},{"x":1567864740000,"y":0.12},{"x":1567864800000,"y":0.21},{"x":1567864860000,"y":0.09},{"x":1567864920000,"y":0.25},{"x":1567864980000,"y":0.11},{"x":1567865040000,"y":0.14},{"x":1567865100000,"y":0.21},{"x":1567865160000,"y":0.11},{"x":1567865220000,"y":0.1},{"x":1567865280000,"y":0.29},{"x":1567865340000,"y":0.27},{"x":1567865400000,"y":0.22},{"x":1567865460000,"y":0.09},{"x":1567865520000,"y":0.1},{"x":1567865580000,"y":0.23},{"x":1567865640000,"y":0.11},{"x":1567865700000,"y":0.2},{"x":1567865760000,"y":0.11},{"x":1567865820000,"y":0.13},{"x":1567865880000,"y":0.25},{"x":1567865940000,"y":0.14},{"x":1567866000000,"y":0.17},{"x":1567866060000,"y":0.11},{"x":1567866120000,"y":0.91},{"x":1567866180000,"y":0.34},{"x":1567866240000,"y":0.1},{"x":1567866300000,"y":0.22},{"x":1567866360000,"y":0.12},{"x":1567866420000,"y":0.1},{"x":1567866480000,"y":0.24},{"x":1567866540000,"y":0.1},{"x":1567866600000,"y":0.18},{"x":1567866660000,"y":0.12},{"x":1567866720000,"y":0.12},{"x":1567866780000,"y":0.32},{"x":1567866840000,"y":0.11},{"x":1567866900000,"y":0.17},{"x":1567866960000,"y":0.1},{"x":1567867020000,"y":0.15},{"x":1567867080000,"y":0.22},{"x":1567867140000,"y":0.32},{"x":1567867200000,"y":0.18},{"x":1567867260000,"y":0.09},{"x":1567867320000,"y":0.1},{"x":1567867380000,"y":0.22},{"x":1567867440000,"y":0.14},{"x":1567867500000,"y":0.21},{"x":1567867560000,"y":0.08},{"x":1567867620000,"y":0.08},{"x":1567867680000,"y":0.07},{"x":1567867740000,"y":0.24},{"x":1567867800000,"y":0.21},{"x":1567867860000,"y":0.1},{"x":1567867920000,"y":0.11},{"x":1567867980000,"y":0.14},{"x":1567868040000,"y":0.32},{"x":1567868100000,"y":0.19},{"x":1567868160000,"y":0.12},{"x":1567868220000,"y":0.1},{"x":1567868280000,"y":0.1},{"x":1567868340000,"y":0.25},{"x":1567868400000,"y":0.25},{"x":1567868460000,"y":0.18},{"x":1567868520000,"y":0.12},{"x":1567868580000,"y":0.1},{"x":1567868640000,"y":0.25},{"x":1567868700000,"y":0.19},{"x":1567868760000,"y":0.1},{"x":1567868820000,"y":0.12},{"x":1567868880000,"y":0.14},{"x":1567868940000,"y":0.39},{"x":1567869000000,"y":0.27},{"x":1567869060000,"y":0.09},{"x":1567869120000,"y":0.13},{"x":1567869180000,"y":0.05},{"x":1567869240000,"y":0.23},{"x":1567869300000,"y":0.23},{"x":1567869360000,"y":0.12},{"x":1567869420000,"y":0.17},{"x":1567869480000,"y":0.12},{"x":1567869540000,"y":0.29},{"x":1567869600000,"y":0.19},{"x":1567869660000,"y":0.07},{"x":1567869720000,"y":0.15},{"x":1567869780000,"y":0.12},{"x":1567869840000,"y":0.1},{"x":1567869900000,"y":0.42},{"x":1567869960000,"y":0.17},{"x":1567870020000,"y":0.11},{"x":1567870080000,"y":0.1},{"x":1567870140000,"y":0.16},{"x":1567870200000,"y":0.52},{"x":1567870260000,"y":0.08},{"x":1567870320000,"y":0.09},{"x":1567870380000,"y":0.09},{"x":1567870440000,"y":0.15},{"x":1567870500000,"y":0.32},{"x":1567870560000,"y":0.1},{"x":1567870620000,"y":0.12},{"x":1567870680000,"y":0.12},{"x":1567870740000,"y":0.32},{"x":1567870800000,"y":0.34},{"x":1567870860000,"y":0.1},{"x":1567870920000,"y":0.2},{"x":1567870980000,"y":0.1},{"x":1567871040000,"y":0.13},{"x":1567871100000,"y":0.42},{"x":1567871160000,"y":0.13},{"x":1567871220000,"y":0.11},{"x":1567871280000,"y":0.11},{"x":1567871340000,"y":0.12},{"x":1567871400000,"y":0.46},{"x":1567871460000,"y":0.15},{"x":1567871520000,"y":0.09},{"x":1567871580000,"y":0.12},{"x":1567871640000,"y":0.13},{"x":1567871700000,"y":0.39},{"x":1567871760000,"y":0.1},{"x":1567871820000,"y":0.12},{"x":1567871880000,"y":0.18},{"x":1567871940000,"y":0.1},{"x":1567872000000,"y":0.4},{"x":1567872060000,"y":0.13},{"x":1567872120000,"y":0.11},{"x":1567872180000,"y":0.13},{"x":1567872240000,"y":0.1},{"x":1567872300000,"y":0.25},{"x":1567872360000,"y":0.26},{"x":1567872420000,"y":0.1},{"x":1567872480000,"y":0.12},{"x":1567872540000,"y":0.27},{"x":1567872600000,"y":1.62},{"x":1567872660000,"y":0.24},{"x":1567872720000,"y":0.14},{"x":1567872780000,"y":0.13},{"x":1567872840000,"y":0.15},{"x":1567872900000,"y":0.26},{"x":1567872960000,"y":0.22},{"x":1567873020000,"y":0.12},{"x":1567873080000,"y":0.09},{"x":1567873140000,"y":0.08},{"x":1567873200000,"y":0.17},{"x":1567873260000,"y":0.21},{"x":1567873320000,"y":0.1},{"x":1567873380000,"y":0.15},{"x":1567873440000,"y":1.81},{"x":1567873500000,"y":0.16},{"x":1567873560000,"y":0.27},{"x":1567873620000,"y":0.1},{"x":1567873680000,"y":0.1},{"x":1567873740000,"y":0.08},{"x":1567873800000,"y":0.25},{"x":1567873860000,"y":0.24},{"x":1567873920000,"y":0.09},{"x":1567873980000,"y":0.1},{"x":1567874040000,"y":0.1},{"x":1567874100000,"y":0.24},{"x":1567874160000,"y":0.2},{"x":1567874220000,"y":0.14},{"x":1567874280000,"y":0.12},{"x":1567874340000,"y":0.17},{"x":1567874400000,"y":0.23},{"x":1567874460000,"y":0.1},{"x":1567874520000,"y":0.26},{"x":1567874580000,"y":0.12},{"x":1567874640000,"y":0.09},{"x":1567874700000,"y":0.29},{"x":1567874760000,"y":0.13},{"x":1567874820000,"y":0.26},{"x":1567874880000,"y":0.12},{"x":1567874940000,"y":0.13},{"x":1567875000000,"y":0.23},{"x":1567875060000,"y":0.16},{"x":1567875120000,"y":0.24},{"x":1567875180000,"y":0.07},{"x":1567875240000,"y":0.15},{"x":1567875300000,"y":0.18},{"x":1567875360000,"y":0.08},{"x":1567875420000,"y":0.29},{"x":1567875480000,"y":0.07},{"x":1567875540000,"y":0.1},{"x":1567875600000,"y":0.23},{"x":1567875660000,"y":0.1},{"x":1567875720000,"y":0.22},{"x":1567875780000,"y":0.1},{"x":1567875840000,"y":0.08},{"x":1567875900000,"y":0.25},{"x":1567875960000,"y":0.08},{"x":1567876020000,"y":0.27},{"x":1567876080000,"y":0.1},{"x":1567876140000,"y":0.16},{"x":1567876200000,"y":0.25},{"x":1567876260000,"y":0.13},{"x":1567876320000,"y":0.13},{"x":1567876380000,"y":0.27},{"x":1567876440000,"y":0.08},{"x":1567876500000,"y":0.22},{"x":1567876560000,"y":0.1},{"x":1567876620000,"y":0.08},{"x":1567876680000,"y":0.24},{"x":1567876740000,"y":0.09},{"x":1567876800000,"y":0.21},{"x":1567876860000,"y":0.15},{"x":1567876920000,"y":0.11},{"x":1567876980000,"y":0.29},{"x":1567877040000,"y":0.1},{"x":1567877100000,"y":0.57},{"x":1567877160000,"y":0.09},{"x":1567877220000,"y":0.08},{"x":1567877280000,"y":0.29},{"x":1567877340000,"y":0.1},{"x":1567877400000,"y":0.22},{"x":1567877460000,"y":0.12},{"x":1567877520000,"y":0.12},{"x":1567877580000,"y":0.23},{"x":1567877640000,"y":0.1},{"x":1567877700000,"y":0.24},{"x":1567877760000,"y":0.17},{"x":1567877820000,"y":0.16},{"x":1567877880000,"y":0.26},{"x":1567877940000,"y":0.22},{"x":1567878000000,"y":0.23},{"x":1567878060000,"y":0.11},{"x":1567878120000,"y":0.09},{"x":1567878180000,"y":0.29},{"x":1567878240000,"y":0.09},{"x":1567878300000,"y":0.23},{"x":1567878360000,"y":0.08},{"x":1567878420000,"y":0.11},{"x":1567878480000,"y":0.11},{"x":1567878540000,"y":0.25},{"x":1567878600000,"y":0.22},{"x":1567878660000,"y":0.11},{"x":1567878720000,"y":0.12},{"x":1567878780000,"y":0.15},{"x":1567878840000,"y":0.29},{"x":1567878900000,"y":0.18},{"x":1567878960000,"y":0.09},{"x":1567879020000,"y":0.1},{"x":1567879080000,"y":0.12},{"x":1567879140000,"y":0.24},{"x":1567879200000,"y":0.25},{"x":1567879260000,"y":0.09},{"x":1567879320000,"y":0.08},{"x":1567879380000,"y":0.1},{"x":1567879440000,"y":0.24},{"x":1567879500000,"y":0.2},{"x":1567879560000,"y":0.09},{"x":1567879620000,"y":0.15},{"x":1567879680000,"y":0.1},{"x":1567879740000,"y":0.35},{"x":1567879800000,"y":0.24},{"x":1567879860000,"y":0.08},{"x":1567879920000,"y":0.11},{"x":1567879980000,"y":0.17},{"x":1567880040000,"y":0.32},{"x":1567880100000,"y":0.31},{"x":1567880160000,"y":0.18},{"x":1567880220000,"y":0.13},{"x":1567880280000,"y":0.12},{"x":1567880340000,"y":0.3},{"x":1567880400000,"y":0.15},{"x":1567880460000,"y":0.09},{"x":1567880520000,"y":0.1},{"x":1567880580000,"y":0.08},{"x":1567880640000,"y":0.3},{"x":1567880700000,"y":1.74},{"x":1567880760000,"y":0.13},{"x":1567880820000,"y":0.15},{"x":1567880880000,"y":0.08},{"x":1567880940000,"y":0.1},{"x":1567881000000,"y":0.46},{"x":1567881060000,"y":0.11},{"x":1567881120000,"y":0.12},{"x":1567881180000,"y":0.1},{"x":1567881240000,"y":0.06},{"x":1567881300000,"y":0.33},{"x":1567881360000,"y":0.1},{"x":1567881420000,"y":0.13},{"x":1567881480000,"y":0.13},{"x":1567881540000,"y":0.21},{"x":1567881600000,"y":0.39},{"x":1567881660000,"y":0.11},{"x":1567881720000,"y":0.12},{"x":1567881780000,"y":0.13},{"x":1567881840000,"y":0.08},{"x":1567881900000,"y":5.44},{"x":1567881960000,"y":0.15},{"x":1567882020000,"y":0.11},{"x":1567882080000,"y":0.11},{"x":1567882140000,"y":0.1},{"x":1567882200000,"y":0.33},{"x":1567882260000,"y":0.12},{"x":1567882320000,"y":0.11},{"x":1567882380000,"y":0.12},{"x":1567882440000,"y":0.09},{"x":1567882500000,"y":0.31},{"x":1567882560000,"y":0.13},{"x":1567882620000,"y":0.15},{"x":1567882680000,"y":0.12},{"x":1567882740000,"y":0.13},{"x":1567882800000,"y":0.45},{"x":1567882860000,"y":0.19},{"x":1567882920000,"y":0.14},{"x":1567882980000,"y":0.12},{"x":1567883040000,"y":0.12},{"x":1567883100000,"y":0.26},{"x":1567883160000,"y":0.38},{"x":1567883220000,"y":0.12},{"x":1567883280000,"y":0.12},{"x":1567883340000,"y":0.37},{"x":1567883400000,"y":0.26},{"x":1567883460000,"y":0.34},{"x":1567883520000,"y":0.14},{"x":1567883580000,"y":0.11},{"x":1567883640000,"y":0.07},{"x":1567883700000,"y":0.23},{"x":1567883760000,"y":0.3},{"x":1567883820000,"y":0.19},{"x":1567883880000,"y":0.17},{"x":1567883940000,"y":0.14},{"x":1567884000000,"y":0.3},{"x":1567884060000,"y":0.37},{"x":1567884120000,"y":0.2},{"x":1567884180000,"y":0.16},{"x":1567884240000,"y":0.17},{"x":1567884300000,"y":0.17},{"x":1567884360000,"y":1.36},{"x":1567884420000,"y":0.21},{"x":1567884480000,"y":0.14},{"x":1567884540000,"y":0.18},{"x":1567884600000,"y":0.16},{"x":1567884660000,"y":0.23},{"x":1567884720000,"y":0.19},{"x":1567884780000,"y":0.21},{"x":1567884840000,"y":0.14},{"x":1567884900000,"y":0.19},{"x":1567884960000,"y":0.25},{"x":1567885020000,"y":0.1},{"x":1567885080000,"y":0.1},{"x":1567885140000,"y":0.32},{"x":1567885200000,"y":0.26},{"x":1567885260000,"y":0.15},{"x":1567885320000,"y":0.36},{"x":1567885380000,"y":0.21},{"x":1567885440000,"y":0.16},{"x":1567885500000,"y":0.22},{"x":1567885560000,"y":0.16},{"x":1567885620000,"y":0.33},{"x":1567885680000,"y":0.16},{"x":1567885740000,"y":0.18},{"x":1567885800000,"y":0.24},{"x":1567885860000,"y":0.24},{"x":1567885920000,"y":0.31},{"x":1567885980000,"y":0.2},{"x":1567886040000,"y":0.19},{"x":1567886100000,"y":0.34},{"x":1567886160000,"y":0.22},{"x":1567886220000,"y":0.41},{"x":1567886280000,"y":0.24},{"x":1567886340000,"y":0.2},{"x":1567886400000,"y":0.38},{"x":1567886460000,"y":0.2},{"x":1567886520000,"y":0.37},{"x":1567886580000,"y":0.22},{"x":1567886640000,"y":0.25},{"x":1567886700000,"y":0.28},{"x":1567886760000,"y":0.2},{"x":1567886820000,"y":0.39},{"x":1567886880000,"y":0.21},{"x":1567886940000,"y":0.31},{"x":1567887000000,"y":0.32},{"x":1567887060000,"y":0.21},{"x":1567887120000,"y":0.37},{"x":1567887180000,"y":0.2},{"x":1567887240000,"y":0.22},{"x":1567887300000,"y":0.33},{"x":1567887360000,"y":0.34},{"x":1567887420000,"y":0.21},{"x":1567887480000,"y":0.4},{"x":1567887540000,"y":0.25},{"x":1567887600000,"y":0.38},{"x":1567887660000,"y":0.2},{"x":1567887720000,"y":0.18},{"x":1567887780000,"y":0.34},{"x":1567887840000,"y":0.24},{"x":1567887900000,"y":0.29},{"x":1567887960000,"y":0.2},{"x":1567888020000,"y":0.19},{"x":1567888080000,"y":0.32},{"x":1567888140000,"y":0.18},{"x":1567888200000,"y":0.27},{"x":1567888260000,"y":0.16},{"x":1567888320000,"y":0.2},{"x":1567888380000,"y":0.32},{"x":1567888440000,"y":0.17},{"x":1567888500000,"y":0.25},{"x":1567888560000,"y":0.19},{"x":1567888620000,"y":0.19},{"x":1567888680000,"y":0.31},{"x":1567888740000,"y":0.29},{"x":1567888800000,"y":0.26},{"x":1567888860000,"y":0.2},{"x":1567888920000,"y":0.19},{"x":1567888980000,"y":0.31},{"x":1567889040000,"y":0.2},{"x":1567889100000,"y":0.29},{"x":1567889160000,"y":0.2},{"x":1567889220000,"y":0.17},{"x":1567889280000,"y":0.31},{"x":1567889340000,"y":0.22},{"x":1567889400000,"y":0.31},{"x":1567889460000,"y":0.22},{"x":1567889520000,"y":0.23},{"x":1567889580000,"y":0.22},{"x":1567889640000,"y":0.34},{"x":1567889700000,"y":0.28},{"x":1567889760000,"y":0.19},{"x":1567889820000,"y":0.23},{"x":1567889880000,"y":0.21},{"x":1567889940000,"y":0.35},{"x":1567890000000,"y":0.3},{"x":1567890060000,"y":0.22},{"x":1567890120000,"y":0.22},{"x":1567890180000,"y":0.2},{"x":1567890240000,"y":0.35},{"x":1567890300000,"y":0.35},{"x":1567890360000,"y":0.16},{"x":1567890420000,"y":0.17},{"x":1567890480000,"y":0.22},{"x":1567890540000,"y":0.45},{"x":1567890600000,"y":0.32},{"x":1567890660000,"y":0.17},{"x":1567890720000,"y":0.17},{"x":1567890780000,"y":0.2},{"x":1567890840000,"y":0.33},{"x":1567890900000,"y":0.31},{"x":1567890960000,"y":0.19},{"x":1567891020000,"y":0.17},{"x":1567891080000,"y":0.19},{"x":1567891140000,"y":0.36},{"x":1567891200000,"y":0.23},{"x":1567891260000,"y":0.17},{"x":1567891320000,"y":0.2},{"x":1567891380000,"y":0.2},{"x":1567891440000,"y":0.2},{"x":1567891500000,"y":0.46},{"x":1567891560000,"y":0.2},{"x":1567891620000,"y":0.18},{"x":1567891680000,"y":0.18},{"x":1567891740000,"y":0.18},{"x":1567891800000,"y":0.5},{"x":1567891860000,"y":0.22},{"x":1567891920000,"y":0.19},{"x":1567891980000,"y":0.16},{"x":1567892040000,"y":0.19},{"x":1567892100000,"y":0.39},{"x":1567892160000,"y":0.24},{"x":1567892220000,"y":0.18},{"x":1567892280000,"y":0.2},{"x":1567892340000,"y":0.4},{"x":1567892400000,"y":0.41},{"x":1567892460000,"y":0.16},{"x":1567892520000,"y":0.2},{"x":1567892580000,"y":0.19},{"x":1567892640000,"y":0.19},{"x":1567892700000,"y":0.46},{"x":1567892760000,"y":0.17},{"x":1567892820000,"y":0.2},{"x":1567892880000,"y":0.17},{"x":1567892940000,"y":0.22},{"x":1567893000000,"y":0.45},{"x":1567893060000,"y":0.17},{"x":1567893120000,"y":0.15},{"x":1567893180000,"y":0.16},{"x":1567893240000,"y":0.17},{"x":1567893300000,"y":0.35},{"x":1567893360000,"y":0.18},{"x":1567893420000,"y":0.2},{"x":1567893480000,"y":0.17},{"x":1567893540000,"y":0.17},{"x":1567893600000,"y":0.49},{"x":1567893660000,"y":0.4},{"x":1567893720000,"y":0.18},{"x":1567893780000,"y":0.2},{"x":1567893840000,"y":0.22},{"x":1567893900000,"y":0.34},{"x":1567893960000,"y":0.37},{"x":1567894020000,"y":0.18},{"x":1567894080000,"y":0.2},{"x":1567894140000,"y":0.42},{"x":1567894200000,"y":0.32},{"x":1567894260000,"y":0.32},{"x":1567894320000,"y":0.19},{"x":1567894380000,"y":0.19},{"x":1567894440000,"y":0.23},{"x":1567894500000,"y":0.28},{"x":1567894560000,"y":0.32},{"x":1567894620000,"y":0.21},{"x":1567894680000,"y":0.2},{"x":1567894740000,"y":0.16},{"x":1567894800000,"y":0.32},{"x":1567894860000,"y":0.36},{"x":1567894920000,"y":0.24},{"x":1567894980000,"y":0.17},{"x":1567895040000,"y":0.16},{"x":1567895100000,"y":0.2},{"x":1567895160000,"y":0.27},{"x":1567895220000,"y":2.53},{"x":1567895280000,"y":0.16},{"x":1567895340000,"y":0.13},{"x":1567895400000,"y":0.21},{"x":1567895460000,"y":0.27},{"x":1567895520000,"y":0.06},{"x":1567895580000,"y":0.09},{"x":1567895640000,"y":0.08},{"x":1567895700000,"y":0.18},{"x":1567895760000,"y":0.26},{"x":1567895820000,"y":0.1},{"x":1567895880000,"y":0.13},{"x":1567895940000,"y":0.22},{"x":1567896000000,"y":0.21},{"x":1567896060000,"y":0.1},{"x":1567896120000,"y":0.24},{"x":1567896180000,"y":0.11},{"x":1567896240000,"y":0.12},{"x":1567896300000,"y":0.19},{"x":1567896360000,"y":0.1},{"x":1567896420000,"y":0.27},{"x":1567896480000,"y":0.2},{"x":1567896540000,"y":0.12},{"x":1567896600000,"y":0.23},{"x":1567896660000,"y":0.08},{"x":1567896720000,"y":0.25},{"x":1567896780000,"y":0.11},{"x":1567896840000,"y":0.12},{"x":1567896900000,"y":0.22},{"x":1567896960000,"y":0.14},{"x":1567897020000,"y":0.25},{"x":1567897080000,"y":0.1},{"x":1567897140000,"y":0.08},{"x":1567897200000,"y":0.2},{"x":1567897260000,"y":0.12},{"x":1567897320000,"y":0.25},{"x":1567897380000,"y":0.11},{"x":1567897440000,"y":0.1},{"x":1567897500000,"y":0.31},{"x":1567897560000,"y":0.11},{"x":1567897620000,"y":0.21},{"x":1567897680000,"y":0.1},{"x":1567897740000,"y":0.28},{"x":1567897800000,"y":0.21},{"x":1567897860000,"y":0.09},{"x":1567897920000,"y":0.25},{"x":1567897980000,"y":0.65},{"x":1567898040000,"y":0.1},{"x":1567898100000,"y":0.21},{"x":1567898160000,"y":0.09},{"x":1567898220000,"y":0.09},{"x":1567898280000,"y":0.28},{"x":1567898340000,"y":0.1},{"x":1567898400000,"y":0.22},{"x":1567898460000,"y":0.09},{"x":1567898520000,"y":0.08},{"x":1567898580000,"y":0.26},{"x":1567898640000,"y":0.09},{"x":1567898700000,"y":0.22},{"x":1567898760000,"y":0.1},{"x":1567898820000,"y":0.13},{"x":1567898880000,"y":0.21},{"x":1567898940000,"y":0.1},{"x":1567899000000,"y":0.24},{"x":1567899060000,"y":0.07},{"x":1567899120000,"y":0.08},{"x":1567899180000,"y":0.21},{"x":1567899240000,"y":0.1},{"x":1567899300000,"y":0.19},{"x":1567899360000,"y":0.1},{"x":1567899420000,"y":0.08},{"x":1567899480000,"y":0.24},{"x":1567899540000,"y":0.25},{"x":1567899600000,"y":0.27},{"x":1567899660000,"y":0.12},{"x":1567899720000,"y":0.07},{"x":1567899780000,"y":0.23},{"x":1567899840000,"y":0.09},{"x":1567899900000,"y":0.15},{"x":1567899960000,"y":0.08},{"x":1567900020000,"y":0.08},{"x":1567900080000,"y":0.23},{"x":1567900140000,"y":0.07},{"x":1567900200000,"y":0.24},{"x":1567900260000,"y":0.11},{"x":1567900320000,"y":0.09},{"x":1567900380000,"y":0.08},{"x":1567900440000,"y":0.25},{"x":1567900500000,"y":0.2},{"x":1567900560000,"y":0.1},{"x":1567900620000,"y":0.07},{"x":1567900680000,"y":0.08},{"x":1567900740000,"y":0.28},{"x":1567900800000,"y":0.27},{"x":1567900860000,"y":0.09},{"x":1567900920000,"y":0.07},{"x":1567900980000,"y":0.1},{"x":1567901040000,"y":0.25},{"x":1567901100000,"y":0.16},{"x":1567901160000,"y":0.08},{"x":1567901220000,"y":0.09},{"x":1567901280000,"y":0.11},{"x":1567901340000,"y":0.48},{"x":1567901400000,"y":0.19},{"x":1567901460000,"y":0.09},{"x":1567901520000,"y":0.12},{"x":1567901580000,"y":0.1},{"x":1567901640000,"y":0.27},{"x":1567901700000,"y":0.24},{"x":1567901760000,"y":0.1},{"x":1567901820000,"y":0.1},{"x":1567901880000,"y":0.08},{"x":1567901940000,"y":0.2},{"x":1567902000000,"y":0.22},{"x":1567902060000,"y":0.12},{"x":1567902120000,"y":0.09},{"x":1567902180000,"y":0.11},{"x":1567902240000,"y":0.22},{"x":1567902300000,"y":0.24},{"x":1567902360000,"y":0.07},{"x":1567902420000,"y":0.08},{"x":1567902480000,"y":0.65},{"x":1567902540000,"y":0.08},{"x":1567902600000,"y":0.37},{"x":1567902660000,"y":0.07},{"x":1567902720000,"y":0.08},{"x":1567902780000,"y":0.07},{"x":1567902840000,"y":0.08},{"x":1567902900000,"y":0.37},{"x":1567902960000,"y":0.07},{"x":1567903020000,"y":0.11},{"x":1567903080000,"y":0.16},{"x":1567903140000,"y":0.2},{"x":1567903200000,"y":0.28},{"x":1567903260000,"y":0.05},{"x":1567903320000,"y":0.07},{"x":1567903380000,"y":0.06},{"x":1567903440000,"y":0.07},{"x":1567903500000,"y":0.31},{"x":1567903560000,"y":0.08},{"x":1567903620000,"y":0.08},{"x":1567903680000,"y":0.07},{"x":1567903740000,"y":0.1},{"x":1567903800000,"y":3.44},{"x":1567903860000,"y":0.1},{"x":1567903920000,"y":0.08},{"x":1567903980000,"y":0.09},{"x":1567904040000,"y":0.09},{"x":1567904100000,"y":0.37},{"x":1567904160000,"y":0.08},{"x":1567904220000,"y":0.07},{"x":1567904280000,"y":0.1},{"x":1567904340000,"y":0.1},{"x":1567904400000,"y":0.36},{"x":1567904460000,"y":0.09},{"x":1567904520000,"y":0.09},{"x":1567904580000,"y":0.12},{"x":1567904640000,"y":0.07},{"x":1567904700000,"y":0.33},{"x":1567904760000,"y":0.08},{"x":1567904820000,"y":0.08},{"x":1567904880000,"y":0.08},{"x":1567904940000,"y":0.23},{"x":1567905000000,"y":0.14},{"x":1567905060000,"y":0.25},{"x":1567905120000,"y":0.08},{"x":1567905180000,"y":0.09},{"x":1567905240000,"y":0.51},{"x":1567905300000,"y":2.1},{"x":1567905360000,"y":0.24},{"x":1567905420000,"y":0.1},{"x":1567905480000,"y":0.07},{"x":1567905540000,"y":0.09},{"x":1567905600000,"y":0.21},{"x":1567905660000,"y":0.24},{"x":1567905720000,"y":0.07},{"x":1567905780000,"y":0.09},{"x":1567905840000,"y":0.09},{"x":1567905900000,"y":0.15},{"x":1567905960000,"y":0.2},{"x":1567906020000,"y":0.08},{"x":1567906080000,"y":0.08},{"x":1567906140000,"y":1.35},{"x":1567906200000,"y":0.16},{"x":1567906260000,"y":0.23},{"x":1567906320000,"y":0.08},{"x":1567906380000,"y":0.07},{"x":1567906440000,"y":0.07},{"x":1567906500000,"y":0.14},{"x":1567906560000,"y":0.22},{"x":1567906620000,"y":0.1},{"x":1567906680000,"y":0.09},{"x":1567906740000,"y":0.23},{"x":1567906800000,"y":0.14},{"x":1567906860000,"y":0.17},{"x":1567906920000,"y":0.1},{"x":1567906980000,"y":0.07},{"x":1567907040000,"y":0.07},{"x":1567907100000,"y":0.17},{"x":1567907160000,"y":0.09},{"x":1567907220000,"y":0.19},{"x":1567907280000,"y":0.09},{"x":1567907340000,"y":0.09},{"x":1567907400000,"y":0.19},{"x":1567907460000,"y":0.12},{"x":1567907520000,"y":0.25},{"x":1567907580000,"y":0.08},{"x":1567907640000,"y":0.07},{"x":1567907700000,"y":0.19},{"x":1567907760000,"y":0.08},{"x":1567907820000,"y":0.21},{"x":1567907880000,"y":0.07},{"x":1567907940000,"y":0.06},{"x":1567908000000,"y":0.29},{"x":1567908060000,"y":0.15},{"x":1567908120000,"y":0.26},{"x":1567908180000,"y":0.08},{"x":1567908240000,"y":0.19},{"x":1567908300000,"y":0.22},{"x":1567908360000,"y":0.11},{"x":1567908420000,"y":0.22},{"x":1567908480000,"y":0.12},{"x":1567908540000,"y":0.26},{"x":1567908600000,"y":0.2},{"x":1567908660000,"y":0.08},{"x":1567908720000,"y":0.22},{"x":1567908780000,"y":0.12},{"x":1567908840000,"y":0.1},{"x":1567908900000,"y":0.26},{"x":1567908960000,"y":0.11},{"x":1567909020000,"y":0.09},{"x":1567909080000,"y":0.25},{"x":1567909140000,"y":0.07},{"x":1567909200000,"y":0.22},{"x":1567909260000,"y":0.1},{"x":1567909320000,"y":0.1},{"x":1567909380000,"y":0.25},{"x":1567909440000,"y":0.07},{"x":1567909500000,"y":0.2},{"x":1567909560000,"y":0.07},{"x":1567909620000,"y":0.07},{"x":1567909680000,"y":0.26},{"x":1567909740000,"y":0.71},{"x":1567909800000,"y":0.28},{"x":1567909860000,"y":0.08},{"x":1567909920000,"y":0.12},{"x":1567909980000,"y":0.24},{"x":1567910040000,"y":0.1},{"x":1567910100000,"y":0.25},{"x":1567910160000,"y":0.09},{"x":1567910220000,"y":0.07},{"x":1567910280000,"y":0.29},{"x":1567910340000,"y":0.3},{"x":1567910400000,"y":0.21},{"x":1567910460000,"y":0.11},{"x":1567910520000,"y":0.1},{"x":1567910580000,"y":0.21},{"x":1567910640000,"y":0.12},{"x":1567910700000,"y":0.18},{"x":1567910760000,"y":0.09},{"x":1567910820000,"y":0.13},{"x":1567910880000,"y":0.25},{"x":1567910940000,"y":0.06},{"x":1567911000000,"y":0.19},{"x":1567911060000,"y":0.07},{"x":1567911120000,"y":0.07},{"x":1567911180000,"y":0.07},{"x":1567911240000,"y":0.25},{"x":1567911300000,"y":0.21},{"x":1567911360000,"y":0.08},{"x":1567911420000,"y":0.06},{"x":1567911480000,"y":0.1},{"x":1567911540000,"y":0.23},{"x":1567911600000,"y":0.26},{"x":1567911660000,"y":0.1},{"x":1567911720000,"y":0.11},{"x":1567911780000,"y":0.06},{"x":1567911840000,"y":0.22},{"x":1567911900000,"y":0.18},{"x":1567911960000,"y":0.08},{"x":1567912020000,"y":0.15},{"x":1567912080000,"y":0.1},{"x":1567912140000,"y":0.39},{"x":1567912200000,"y":0.19},{"x":1567912260000,"y":0.1},{"x":1567912320000,"y":0.08},{"x":1567912380000,"y":0.08},{"x":1567912440000,"y":0.25},{"x":1567912500000,"y":0.19},{"x":1567912560000,"y":0.08},{"x":1567912620000,"y":0.09},{"x":1567912680000,"y":0.07},{"x":1567912740000,"y":0.27},{"x":1567912800000,"y":0.19},{"x":1567912860000,"y":0.08},{"x":1567912920000,"y":0.12},{"x":1567912980000,"y":0.11},{"x":1567913040000,"y":0.23},{"x":1567913100000,"y":0.17},{"x":1567913160000,"y":0.07},{"x":1567913220000,"y":0.14},{"x":1567913280000,"y":0.09},{"x":1567913340000,"y":0.12},{"x":1567913400000,"y":0.49},{"x":1567913460000,"y":0.08},{"x":1567913520000,"y":0.08},{"x":1567913580000,"y":0.08},{"x":1567913640000,"y":0.09},{"x":1567913700000,"y":0.46},{"x":1567913760000,"y":0.09},{"x":1567913820000,"y":0.07},{"x":1567913880000,"y":0.09},{"x":1567913940000,"y":0.21},{"x":1567914000000,"y":0.31},{"x":1567914060000,"y":0.1},{"x":1567914120000,"y":0.11},{"x":1567914180000,"y":0.09},{"x":1567914240000,"y":0.12},{"x":1567914300000,"y":0.28},{"x":1567914360000,"y":0.53},{"x":1567914420000,"y":0.11},{"x":1567914480000,"y":0.1},{"x":1567914540000,"y":0.1},{"x":1567914600000,"y":0.27},{"x":1567914660000,"y":0.1},{"x":1567914720000,"y":0.1},{"x":1567914780000,"y":0.13},{"x":1567914840000,"y":0.09},{"x":1567914900000,"y":0.31},{"x":1567914960000,"y":0.07},{"x":1567915020000,"y":0.12},{"x":1567915080000,"y":0.13},{"x":1567915140000,"y":0.06},{"x":1567915200000,"y":0.33},{"x":1567915260000,"y":0.1},{"x":1567915320000,"y":0.1},{"x":1567915380000,"y":0.09},{"x":1567915440000,"y":0.07},{"x":1567915500000,"y":0.15},{"x":1567915560000,"y":0.22},{"x":1567915620000,"y":0.09},{"x":1567915680000,"y":0.1},{"x":1567915740000,"y":0.26},{"x":1567915800000,"y":0.17},{"x":1567915860000,"y":0.21},{"x":1567915920000,"y":0.1},{"x":1567915980000,"y":0.14},{"x":1567916040000,"y":0.09},{"x":1567916100000,"y":0.2},{"x":1567916160000,"y":0.25},{"x":1567916220000,"y":0.12},{"x":1567916280000,"y":0.12},{"x":1567916340000,"y":0.11},{"x":1567916400000,"y":0.28},{"x":1567916460000,"y":0.26},{"x":1567916520000,"y":0.13},{"x":1567916580000,"y":0.12},{"x":1567916640000,"y":0.11},{"x":1567916700000,"y":0.19},{"x":1567916760000,"y":0.29},{"x":1567916820000,"y":0.1},{"x":1567916880000,"y":0.17},{"x":1567916940000,"y":0.1},{"x":1567917000000,"y":0.15},{"x":1567917060000,"y":0.28},{"x":1567917120000,"y":0.09},{"x":1567917180000,"y":0.09},{"x":1567917240000,"y":0.08},{"x":1567917300000,"y":0.22},{"x":1567917360000,"y":0.28},{"x":1567917420000,"y":0.14},{"x":1567917480000,"y":0.15},{"x":1567917540000,"y":0.32},{"x":1567917600000,"y":0.19},{"x":1567917660000,"y":0.25},{"x":1567917720000,"y":0.1},{"x":1567917780000,"y":0.12},{"x":1567917840000,"y":0.16},{"x":1567917900000,"y":0.22},{"x":1567917960000,"y":0.2},{"x":1567918020000,"y":0.3},{"x":1567918080000,"y":0.08},{"x":1567918140000,"y":0.09},{"x":1567918200000,"y":0.2},{"x":1567918260000,"y":0.1},{"x":1567918320000,"y":0.3},{"x":1567918380000,"y":0.1},{"x":1567918440000,"y":0.15},{"x":1567918500000,"y":0.25},{"x":1567918560000,"y":0.13},{"x":1567918620000,"y":0.29},{"x":1567918680000,"y":0.19},{"x":1567918740000,"y":0.18},{"x":1567918800000,"y":1.05},{"x":1567918860000,"y":0.14},{"x":1567918920000,"y":0.29},{"x":1567918980000,"y":0.18},{"x":1567919040000,"y":0.17},{"x":1567919100000,"y":0.22},{"x":1567919160000,"y":0.16},{"x":1567919220000,"y":0.35},{"x":1567919280000,"y":0.22},{"x":1567919340000,"y":0.35},{"x":1567919400000,"y":0.26},{"x":1567919460000,"y":0.19},{"x":1567919520000,"y":0.34},{"x":1567919580000,"y":0.19},{"x":1567919640000,"y":0.18},{"x":1567919700000,"y":0.34},{"x":1567919760000,"y":0.18},{"x":1567919820000,"y":0.19},{"x":1567919880000,"y":0.45},{"x":1567919940000,"y":0.19},{"x":1567920000000,"y":0.28},{"x":1567920060000,"y":0.18},{"x":1567920120000,"y":0.17},{"x":1567920180000,"y":0.31},{"x":1567920240000,"y":0.19},{"x":1567920300000,"y":0.29},{"x":1567920360000,"y":0.16},{"x":1567920420000,"y":0.22},{"x":1567920480000,"y":0.34},{"x":1567920540000,"y":0.21},{"x":1567920600000,"y":0.25},{"x":1567920660000,"y":0.2},{"x":1567920720000,"y":0.18},{"x":1567920780000,"y":0.33},{"x":1567920840000,"y":0.18},{"x":1567920900000,"y":0.35},{"x":1567920960000,"y":0.18},{"x":1567921020000,"y":0.18},{"x":1567921080000,"y":0.33},{"x":1567921140000,"y":0.28},{"x":1567921200000,"y":0.29},{"x":1567921260000,"y":0.17},{"x":1567921320000,"y":0.18},{"x":1567921380000,"y":0.34},{"x":1567921440000,"y":0.2},{"x":1567921500000,"y":0.28},{"x":1567921560000,"y":0.2},{"x":1567921620000,"y":0.23},{"x":1567921680000,"y":0.3},{"x":1567921740000,"y":0.2},{"x":1567921800000,"y":0.31},{"x":1567921860000,"y":0.2},{"x":1567921920000,"y":0.22},{"x":1567921980000,"y":0.15},{"x":1567922040000,"y":0.37},{"x":1567922100000,"y":0.24},{"x":1567922160000,"y":0.18},{"x":1567922220000,"y":0.2},{"x":1567922280000,"y":0.15},{"x":1567922340000,"y":0.29},{"x":1567922400000,"y":0.33},{"x":1567922460000,"y":0.17},{"x":1567922520000,"y":0.19},{"x":1567922580000,"y":0.18},{"x":1567922640000,"y":0.37},{"x":1567922700000,"y":0.3},{"x":1567922760000,"y":0.2},{"x":1567922820000,"y":0.19},{"x":1567922880000,"y":0.18},{"x":1567922940000,"y":0.52},{"x":1567923000000,"y":0.24},{"x":1567923060000,"y":0.17},{"x":1567923120000,"y":0.18},{"x":1567923180000,"y":0.2},{"x":1567923240000,"y":0.37},{"x":1567923300000,"y":0.32},{"x":1567923360000,"y":0.15},{"x":1567923420000,"y":0.2},{"x":1567923480000,"y":0.2},{"x":1567923540000,"y":0.34},{"x":1567923600000,"y":0.33},{"x":1567923660000,"y":0.17},{"x":1567923720000,"y":0.17},{"x":1567923780000,"y":0.19},{"x":1567923840000,"y":0.3},{"x":1567923900000,"y":0.4},{"x":1567923960000,"y":0.16},{"x":1567924020000,"y":0.21},{"x":1567924080000,"y":0.17},{"x":1567924140000,"y":0.18},{"x":1567924200000,"y":0.5},{"x":1567924260000,"y":0.18},{"x":1567924320000,"y":2.34},{"x":1567924380000,"y":0.16},{"x":1567924440000,"y":0.16},{"x":1567924500000,"y":0.42},{"x":1567924560000,"y":0.19},{"x":1567924620000,"y":0.15},{"x":1567924680000,"y":0.17},{"x":1567924740000,"y":0.27},{"x":1567924800000,"y":0.4},{"x":1567924860000,"y":0.15},{"x":1567924920000,"y":0.17},{"x":1567924980000,"y":0.15},{"x":1567925040000,"y":0.18},{"x":1567925100000,"y":0.5},{"x":1567925160000,"y":0.17},{"x":1567925220000,"y":0.19},{"x":1567925280000,"y":0.15},{"x":1567925340000,"y":0.18},{"x":1567925400000,"y":0.39},{"x":1567925460000,"y":0.15},{"x":1567925520000,"y":0.16},{"x":1567925580000,"y":0.17},{"x":1567925640000,"y":0.18},{"x":1567925700000,"y":5.13},{"x":1567925760000,"y":0.45},{"x":1567925820000,"y":0.14},{"x":1567925880000,"y":0.18},{"x":1567925940000,"y":0.16},{"x":1567926000000,"y":0.34},{"x":1567926060000,"y":0.29},{"x":1567926120000,"y":0.19},{"x":1567926180000,"y":0.2},{"x":1567926240000,"y":0.18},{"x":1567926300000,"y":0.25},{"x":1567926360000,"y":0.41},{"x":1567926420000,"y":0.23},{"x":1567926480000,"y":0.17},{"x":1567926540000,"y":0.3},{"x":1567926600000,"y":0.29},{"x":1567926660000,"y":0.3},{"x":1567926720000,"y":0.19},{"x":1567926780000,"y":0.16},{"x":1567926840000,"y":0.2},{"x":1567926900000,"y":0.29},{"x":1567926960000,"y":0.3},{"x":1567927020000,"y":0.17},{"x":1567927080000,"y":0.18},{"x":1567927140000,"y":0.18},{"x":1567927200000,"y":1.9},{"x":1567927260000,"y":0.37},{"x":1567927320000,"y":0.29},{"x":1567927380000,"y":0.18},{"x":1567927440000,"y":0.18},{"x":1567927500000,"y":0.29},{"x":1567927560000,"y":0.37},{"x":1567927620000,"y":0.2},{"x":1567927680000,"y":0.18},{"x":1567927740000,"y":0.18},{"x":1567927800000,"y":0.29},{"x":1567927860000,"y":0.32},{"x":1567927920000,"y":0.16},{"x":1567927980000,"y":1.38},{"x":1567928040000,"y":0.17},{"x":1567928100000,"y":0.28},{"x":1567928160000,"y":0.31},{"x":1567928220000,"y":0.17},{"x":1567928280000,"y":0.17},{"x":1567928340000,"y":0.26},{"x":1567928400000,"y":0.23},{"x":1567928460000,"y":0.14},{"x":1567928520000,"y":0.25},{"x":1567928580000,"y":0.11},{"x":1567928640000,"y":0.14},{"x":1567928700000,"y":0.16},{"x":1567928760000,"y":0.14},{"x":1567928820000,"y":0.26},{"x":1567928880000,"y":0.1},{"x":1567928940000,"y":0.08},{"x":1567929000000,"y":0.13},{"x":1567929060000,"y":0.13},{"x":1567929120000,"y":0.21},{"x":1567929180000,"y":0.1},{"x":1567929240000,"y":0.08},{"x":1567929300000,"y":0.21},{"x":1567929360000,"y":0.14},{"x":1567929420000,"y":0.27},{"x":1567929480000,"y":0.08},{"x":1567929540000,"y":0.08},{"x":1567929600000,"y":0.28},{"x":1567929660000,"y":0.09},{"x":1567929720000,"y":0.27},{"x":1567929780000,"y":0.11},{"x":1567929840000,"y":0.08},{"x":1567929900000,"y":0.16},{"x":1567929960000,"y":0.1},{"x":1567930020000,"y":0.23},{"x":1567930080000,"y":0.07},{"x":1567930140000,"y":0.17},{"x":1567930200000,"y":0.24},{"x":1567930260000,"y":0.16},{"x":1567930320000,"y":0.26},{"x":1567930380000,"y":0.1},{"x":1567930440000,"y":0.16},{"x":1567930500000,"y":0.22},{"x":1567930560000,"y":0.17},{"x":1567930620000,"y":0.09},{"x":1567930680000,"y":0.28},{"x":1567930740000,"y":0.11},{"x":1567930800000,"y":0.19},{"x":1567930860000,"y":0.09},{"x":1567930920000,"y":0.1},{"x":1567930980000,"y":0.24},{"x":1567931040000,"y":0.07},{"x":1567931100000,"y":0.17},{"x":1567931160000,"y":0.1},{"x":1567931220000,"y":0.08},{"x":1567931280000,"y":0.24},{"x":1567931340000,"y":0.08},{"x":1567931400000,"y":0.19},{"x":1567931460000,"y":0.09},{"x":1567931520000,"y":0.07},{"x":1567931580000,"y":0.26},{"x":1567931640000,"y":0.08},{"x":1567931700000,"y":0.21},{"x":1567931760000,"y":0.13},{"x":1567931820000,"y":0.08},{"x":1567931880000,"y":0.27},{"x":1567931940000,"y":0.29},{"x":1567932000000,"y":0.22},{"x":1567932060000,"y":0.09},{"x":1567932120000,"y":0.09},{"x":1567932180000,"y":0.26},{"x":1567932240000,"y":0.1},{"x":1567932300000,"y":0.26},{"x":1567932360000,"y":0.1},{"x":1567932420000,"y":0.09},{"x":1567932480000,"y":0.26},{"x":1567932540000,"y":0.11},{"x":1567932600000,"y":0.25},{"x":1567932660000,"y":0.09},{"x":1567932720000,"y":0.09},{"x":1567932780000,"y":0.28},{"x":1567932840000,"y":0.12},{"x":1567932900000,"y":0.13},{"x":1567932960000,"y":0.07},{"x":1567933020000,"y":0.1},{"x":1567933080000,"y":0.09},{"x":1567933140000,"y":0.23},{"x":1567933200000,"y":0.29},{"x":1567933260000,"y":0.1},{"x":1567933320000,"y":0.1},{"x":1567933380000,"y":0.09},{"x":1567933440000,"y":0.24},{"x":1567933500000,"y":0.16},{"x":1567933560000,"y":0.08},{"x":1567933620000,"y":0.1},{"x":1567933680000,"y":0.14},{"x":1567933740000,"y":0.43},{"x":1567933800000,"y":0.22},{"x":1567933860000,"y":0.07},{"x":1567933920000,"y":0.11},{"x":1567933980000,"y":0.13},{"x":1567934040000,"y":0.33},{"x":1567934100000,"y":0.21},{"x":1567934160000,"y":0.11},{"x":1567934220000,"y":0.1},{"x":1567934280000,"y":0.14},{"x":1567934340000,"y":0.25},{"x":1567934400000,"y":0.21},{"x":1567934460000,"y":0.3},{"x":1567934520000,"y":0.1},{"x":1567934580000,"y":0.12},{"x":1567934640000,"y":0.25},{"x":1567934700000,"y":0.24},{"x":1567934760000,"y":0.13},{"x":1567934820000,"y":0.08},{"x":1567934880000,"y":0.12},{"x":1567934940000,"y":0.27},{"x":1567935000000,"y":0.18},{"x":1567935060000,"y":0.08},{"x":1567935120000,"y":0.1},{"x":1567935180000,"y":0.08},{"x":1567935240000,"y":0.13},{"x":1567935300000,"y":0.34},{"x":1567935360000,"y":0.09},{"x":1567935420000,"y":0.08},{"x":1567935480000,"y":0.12},{"x":1567935540000,"y":0.31},{"x":1567935600000,"y":0.4},{"x":1567935660000,"y":0.11},{"x":1567935720000,"y":0.1},{"x":1567935780000,"y":0.12},{"x":1567935840000,"y":0.09},{"x":1567935900000,"y":0.34},{"x":1567935960000,"y":0.09},{"x":1567936020000,"y":0.09},{"x":1567936080000,"y":0.09},{"x":1567936140000,"y":0.09},{"x":1567936200000,"y":0.35},{"x":1567936260000,"y":0.1},{"x":1567936320000,"y":0.12},{"x":1567936380000,"y":0.08},{"x":1567936440000,"y":0.09},{"x":1567936500000,"y":0.36},{"x":1567936560000,"y":0.09},{"x":1567936620000,"y":0.09},{"x":1567936680000,"y":0.07},{"x":1567936740000,"y":0.08},{"x":1567936800000,"y":0.4},{"x":1567936860000,"y":0.08},{"x":1567936920000,"y":0.1},{"x":1567936980000,"y":0.1},{"x":1567937040000,"y":0.1},{"x":1567937100000,"y":0.34},{"x":1567937160000,"y":0.11},{"x":1567937220000,"y":0.1},{"x":1567937280000,"y":0.09},{"x":1567937340000,"y":0.31},{"x":1567937400000,"y":0.18},{"x":1567937460000,"y":0.22},{"x":1567937520000,"y":0.11},{"x":1567937580000,"y":0.11},{"x":1567937640000,"y":0.11},{"x":1567937700000,"y":0.18},{"x":1567937760000,"y":0.27},{"x":1567937820000,"y":0.09},{"x":1567937880000,"y":0.18},{"x":1567937940000,"y":0.13},{"x":1567938000000,"y":0.17},{"x":1567938060000,"y":1.04},{"x":1567938120000,"y":0.1},{"x":1567938180000,"y":0.12},{"x":1567938240000,"y":0.1},{"x":1567938300000,"y":0.24},{"x":1567938360000,"y":0.29},{"x":1567938420000,"y":0.11},{"x":1567938480000,"y":0.1},{"x":1567938540000,"y":0.14},{"x":1567938600000,"y":0.19},{"x":1567938660000,"y":0.27},{"x":1567938720000,"y":0.14},{"x":1567938780000,"y":0.11},{"x":1567938840000,"y":0.1},{"x":1567938900000,"y":0.26},{"x":1567938960000,"y":0.3},{"x":1567939020000,"y":0.09},{"x":1567939080000,"y":0.11},{"x":1567939140000,"y":0.19},{"x":1567939200000,"y":0.23},{"x":1567939260000,"y":0.3},{"x":1567939320000,"y":0.1},{"x":1567939380000,"y":0.09},{"x":1567939440000,"y":0.13},{"x":1567939500000,"y":0.15},{"x":1567939560000,"y":0.1},{"x":1567939620000,"y":0.27},{"x":1567939680000,"y":0.19},{"x":1567939740000,"y":0.1},{"x":1567939800000,"y":0.18},{"x":1567939860000,"y":0.07},{"x":1567939920000,"y":0.3},{"x":1567939980000,"y":0.09},{"x":1567940040000,"y":0.08},{"x":1567940100000,"y":0.28},{"x":1567940160000,"y":0.15},{"x":1567940220000,"y":0.21},{"x":1567940280000,"y":0.1},{"x":1567940340000,"y":0.1},{"x":1567940400000,"y":0.29},{"x":1567940460000,"y":0.1},{"x":1567940520000,"y":0.3},{"x":1567940580000,"y":0.16},{"x":1567940640000,"y":0.08},{"x":1567940700000,"y":0.22},{"x":1567940760000,"y":0.12},{"x":1567940820000,"y":3.62},{"x":1567940880000,"y":0.17},{"x":1567940940000,"y":0.25},{"x":1567941000000,"y":0.2},{"x":1567941060000,"y":0.08},{"x":1567941120000,"y":0.24},{"x":1567941180000,"y":0.09},{"x":1567941240000,"y":0.08},{"x":1567941300000,"y":0.16},{"x":1567941360000,"y":0.08},{"x":1567941420000,"y":0.22},{"x":1567941480000,"y":0.12},{"x":1567941540000,"y":0.1},{"x":1567941600000,"y":0.26},{"x":1567941660000,"y":0.1},{"x":1567941720000,"y":0.18},{"x":1567941780000,"y":0.24},{"x":1567941840000,"y":0.11},{"x":1567941900000,"y":1.84},{"x":1567941960000,"y":0.12},{"x":1567942020000,"y":0.11},{"x":1567942080000,"y":0.37},{"x":1567942140000,"y":0.12},{"x":1567942200000,"y":0.22},{"x":1567942260000,"y":0.09},{"x":1567942320000,"y":0.13},{"x":1567942380000,"y":0.27},{"x":1567942440000,"y":0.22},{"x":1567942500000,"y":0.14},{"x":1567942560000,"y":0.09},{"x":1567942620000,"y":0.13},{"x":1567942680000,"y":0.25},{"x":1567942740000,"y":0.2},{"x":1567942800000,"y":0.19},{"x":1567942860000,"y":0.1},{"x":1567942920000,"y":0.14},{"x":1567942980000,"y":0.25},{"x":1567943040000,"y":0.12},{"x":1567943100000,"y":0.24},{"x":1567943160000,"y":0.14},{"x":1567943220000,"y":0.12},{"x":1567943280000,"y":0.24},{"x":1567943340000,"y":0.08},{"x":1567943400000,"y":0.21},{"x":1567943460000,"y":0.1},{"x":1567943520000,"y":0.12},{"x":1567943580000,"y":0.14},{"x":1567943640000,"y":0.27},{"x":1567943700000,"y":0.24},{"x":1567943760000,"y":0.1},{"x":1567943820000,"y":0.08},{"x":1567943880000,"y":0.09},{"x":1567943940000,"y":0.28},{"x":1567944000000,"y":0.28},{"x":1567944060000,"y":0.15},{"x":1567944120000,"y":0.14},{"x":1567944180000,"y":0.12},{"x":1567944240000,"y":0.25},{"x":1567944300000,"y":0.19},{"x":1567944360000,"y":0.12},{"x":1567944420000,"y":0.12},{"x":1567944480000,"y":0.12},{"x":1567944540000,"y":0.36},{"x":1567944600000,"y":0.19},{"x":1567944660000,"y":0.15},{"x":1567944720000,"y":0.1},{"x":1567944780000,"y":0.14},{"x":1567944840000,"y":0.34},{"x":1567944900000,"y":0.29},{"x":1567944960000,"y":0.1},{"x":1567945020000,"y":0.11},{"x":1567945080000,"y":0.15},{"x":1567945140000,"y":0.24},{"x":1567945200000,"y":0.19},{"x":1567945260000,"y":0.77},{"x":1567945320000,"y":0.1},{"x":1567945380000,"y":0.07},{"x":1567945440000,"y":0.27},{"x":1567945500000,"y":0.24},{"x":1567945560000,"y":0.07},{"x":1567945620000,"y":0.13},{"x":1567945680000,"y":0.09},{"x":1567945740000,"y":0.07},{"x":1567945800000,"y":0.34},{"x":1567945860000,"y":0.08},{"x":1567945920000,"y":0.11},{"x":1567945980000,"y":0.1},{"x":1567946040000,"y":0.14},{"x":1567946100000,"y":0.43},{"x":1567946160000,"y":0.12},{"x":1567946220000,"y":0.12},{"x":1567946280000,"y":0.16},{"x":1567946340000,"y":0.3},{"x":1567946400000,"y":0.39},{"x":1567946460000,"y":0.13},{"x":1567946520000,"y":0.11},{"x":1567946580000,"y":0.08},{"x":1567946640000,"y":0.11},{"x":1567946700000,"y":0.32},{"x":1567946760000,"y":0.09},{"x":1567946820000,"y":0.17},{"x":1567946880000,"y":0.13},{"x":1567946940000,"y":0.1},{"x":1567947000000,"y":0.33},{"x":1567947060000,"y":0.07},{"x":1567947120000,"y":0.12},{"x":1567947180000,"y":0.13},{"x":1567947240000,"y":0.1},{"x":1567947300000,"y":0.34},{"x":1567947360000,"y":0.11},{"x":1567947420000,"y":0.12},{"x":1567947480000,"y":0.12},{"x":1567947540000,"y":0.12},{"x":1567947600000,"y":4.65},{"x":1567947660000,"y":0.85},{"x":1567947720000,"y":0.13},{"x":1567947780000,"y":0.13},{"x":1567947840000,"y":0.11},{"x":1567947900000,"y":0.18},{"x":1567947960000,"y":0.39},{"x":1567948020000,"y":0.1},{"x":1567948080000,"y":0.1},{"x":1567948140000,"y":0.33},{"x":1567948200000,"y":0.2},{"x":1567948260000,"y":0.26},{"x":1567948320000,"y":0.12},{"x":1567948380000,"y":0.11},{"x":1567948440000,"y":0.09},{"x":1567948500000,"y":0.2},{"x":1567948560000,"y":0.23},{"x":1567948620000,"y":0.12},{"x":1567948680000,"y":0.09},{"x":1567948740000,"y":0.08},{"x":1567948800000,"y":0.23},{"x":1567948860000,"y":0.26},{"x":1567948920000,"y":0.08},{"x":1567948980000,"y":0.13},{"x":1567949040000,"y":0.12},{"x":1567949100000,"y":0.18},{"x":1567949160000,"y":0.23},{"x":1567949220000,"y":0.12},{"x":1567949280000,"y":0.15},{"x":1567949340000,"y":0.12},{"x":1567949400000,"y":0.22},{"x":1567949460000,"y":0.23},{"x":1567949520000,"y":0.12},{"x":1567949580000,"y":0.11},{"x":1567949640000,"y":0.12},{"x":1567949700000,"y":0.47},{"x":1567949760000,"y":0.27},{"x":1567949820000,"y":0.1},{"x":1567949880000,"y":0.11},{"x":1567949940000,"y":0.3},{"x":1567950000000,"y":0.19},{"x":1567950060000,"y":0.29},{"x":1567950120000,"y":0.1},{"x":1567950180000,"y":0.15},{"x":1567950240000,"y":0.1},{"x":1567950300000,"y":0.22},{"x":1567950360000,"y":0.09},{"x":1567950420000,"y":0.27},{"x":1567950480000,"y":0.1},{"x":1567950540000,"y":0.1},{"x":1567950600000,"y":0.23},{"x":1567950660000,"y":0.09},{"x":1567950720000,"y":0.28},{"x":1567950780000,"y":0.12},{"x":1567950840000,"y":0.15},{"x":1567950900000,"y":0.2},{"x":1567950960000,"y":0.14},{"x":1567951020000,"y":0.29},{"x":1567951080000,"y":0.25},{"x":1567951140000,"y":0.12},{"x":1567951200000,"y":0.27},{"x":1567951260000,"y":0.12},{"x":1567951320000,"y":0.33},{"x":1567951380000,"y":0.19},{"x":1567951440000,"y":0.15},{"x":1567951500000,"y":0.29},{"x":1567951560000,"y":0.12},{"x":1567951620000,"y":0.27},{"x":1567951680000,"y":0.19},{"x":1567951740000,"y":0.36},{"x":1567951800000,"y":0.26},{"x":1567951860000,"y":0.12},{"x":1567951920000,"y":0.29},{"x":1567951980000,"y":0.18},{"x":1567952040000,"y":0.17},{"x":1567952100000,"y":0.26},{"x":1567952160000,"y":0.17},{"x":1567952220000,"y":0.39},{"x":1567952280000,"y":0.16},{"x":1567952340000,"y":0.17},{"x":1567952400000,"y":0.21},{"x":1567952460000,"y":0.16},{"x":1567952520000,"y":1.71},{"x":1567952580000,"y":0.18},{"x":1567952640000,"y":0.22},{"x":1567952700000,"y":0.31},{"x":1567952760000,"y":0.2},{"x":1567952820000,"y":0.22},{"x":1567952880000,"y":0.43},{"x":1567952940000,"y":0.15},{"x":1567953000000,"y":0.32},{"x":1567953060000,"y":0.2},{"x":1567953120000,"y":0.16},{"x":1567953180000,"y":0.36},{"x":1567953240000,"y":0.15},{"x":1567953300000,"y":1.69},{"x":1567953360000,"y":0.17},{"x":1567953420000,"y":0.2},{"x":1567953480000,"y":0.35},{"x":1567953540000,"y":0.43},{"x":1567953600000,"y":0.37},{"x":1567953660000,"y":0.2},{"x":1567953720000,"y":0.17},{"x":1567953780000,"y":0.33},{"x":1567953840000,"y":0.18},{"x":1567953900000,"y":0.25},{"x":1567953960000,"y":0.16},{"x":1567954020000,"y":0.16},{"x":1567954080000,"y":0.3},{"x":1567954140000,"y":0.16},{"x":1567954200000,"y":0.28},{"x":1567954260000,"y":0.15},{"x":1567954320000,"y":0.17},{"x":1567954380000,"y":0.3},{"x":1567954440000,"y":0.2},{"x":1567954500000,"y":0.33},{"x":1567954560000,"y":0.16},{"x":1567954620000,"y":0.21},{"x":1567954680000,"y":0.29},{"x":1567954740000,"y":0.17},{"x":1567954800000,"y":0.35},{"x":1567954860000,"y":0.18},{"x":1567954920000,"y":0.18},{"x":1567954980000,"y":0.17},{"x":1567955040000,"y":0.38},{"x":1567955100000,"y":0.26},{"x":1567955160000,"y":0.16},{"x":1567955220000,"y":0.16},{"x":1567955280000,"y":0.18},{"x":1567955340000,"y":0.44},{"x":1567955400000,"y":0.26},{"x":1567955460000,"y":0.2},{"x":1567955520000,"y":0.2},{"x":1567955580000,"y":0.15},{"x":1567955640000,"y":0.36},{"x":1567955700000,"y":0.29},{"x":1567955760000,"y":0.2},{"x":1567955820000,"y":0.2},{"x":1567955880000,"y":0.17},{"x":1567955940000,"y":0.31},{"x":1567956000000,"y":0.31},{"x":1567956060000,"y":0.18},{"x":1567956120000,"y":0.2},{"x":1567956180000,"y":0.18},{"x":1567956240000,"y":0.32},{"x":1567956300000,"y":0.34},{"x":1567956360000,"y":0.21},{"x":1567956420000,"y":0.16},{"x":1567956480000,"y":0.17},{"x":1567956540000,"y":0.32},{"x":1567956600000,"y":0.3},{"x":1567956660000,"y":0.17},{"x":1567956720000,"y":0.16},{"x":1567956780000,"y":0.2},{"x":1567956840000,"y":3.37},{"x":1567956900000,"y":0.98},{"x":1567956960000,"y":0.18},{"x":1567957020000,"y":0.2},{"x":1567957080000,"y":0.24},{"x":1567957140000,"y":0.32},{"x":1567957200000,"y":0.5},{"x":1567957260000,"y":0.2},{"x":1567957320000,"y":0.25},{"x":1567957380000,"y":0.2},{"x":1567957440000,"y":0.15},{"x":1567957500000,"y":0.42},{"x":1567957560000,"y":0.18},{"x":1567957620000,"y":0.2},{"x":1567957680000,"y":0.2},{"x":1567957740000,"y":0.19},{"x":1567957800000,"y":0.41},{"x":1567957860000,"y":0.16},{"x":1567957920000,"y":0.17},{"x":1567957980000,"y":0.17},{"x":1567958040000,"y":0.18},{"x":1567958100000,"y":0.44},{"x":1567958160000,"y":0.15},{"x":1567958220000,"y":0.18},{"x":1567958280000,"y":0.18},{"x":1567958340000,"y":0.17},{"x":1567958400000,"y":0.48},{"x":1567958460000,"y":0.2},{"x":1567958520000,"y":0.16},{"x":1567958580000,"y":0.2},{"x":1567958640000,"y":0.16},{"x":1567958700000,"y":0.43},{"x":1567958760000,"y":0.17},{"x":1567958820000,"y":0.18},{"x":1567958880000,"y":0.21},{"x":1567958940000,"y":0.25},{"x":1567959000000,"y":0.44},{"x":1567959060000,"y":0.16},{"x":1567959120000,"y":0.2},{"x":1567959180000,"y":0.19},{"x":1567959240000,"y":0.17},{"x":1567959300000,"y":0.28},{"x":1567959360000,"y":0.32},{"x":1567959420000,"y":0.19},{"x":1567959480000,"y":0.2},{"x":1567959540000,"y":0.19},{"x":1567959600000,"y":0.23},{"x":1567959660000,"y":0.36},{"x":1567959720000,"y":0.27},{"x":1567959780000,"y":1.45},{"x":1567959840000,"y":0.17},{"x":1567959900000,"y":0.31},{"x":1567959960000,"y":0.29},{"x":1567960020000,"y":0.17},{"x":1567960080000,"y":0.2},{"x":1567960140000,"y":0.19},{"x":1567960200000,"y":0.25},{"x":1567960260000,"y":0.3},{"x":1567960320000,"y":0.17},{"x":1567960380000,"y":0.19},{"x":1567960440000,"y":0.2},{"x":1567960500000,"y":0.34},{"x":1567960560000,"y":1.58},{"x":1567960620000,"y":0.24},{"x":1567960680000,"y":0.22},{"x":1567960740000,"y":0.34},{"x":1567960800000,"y":0.31},{"x":1567960860000,"y":0.39},{"x":1567960920000,"y":0.19},{"x":1567960980000,"y":0.2},{"x":1567961040000,"y":0.2},{"x":1567961100000,"y":0.3},{"x":1567961160000,"y":0.32},{"x":1567961220000,"y":0.2},{"x":1567961280000,"y":0.2},{"x":1567961340000,"y":0.15},{"x":1567961400000,"y":0.26},{"x":1567961460000,"y":0.32},{"x":1567961520000,"y":0.15},{"x":1567961580000,"y":0.18},{"x":1567961640000,"y":0.19},{"x":1567961700000,"y":0.3},{"x":1567961760000,"y":0.17},{"x":1567961820000,"y":0.41},{"x":1567961880000,"y":0.15},{"x":1567961940000,"y":0.13},{"x":1567962000000,"y":0.29},{"x":1567962060000,"y":0.09},{"x":1567962120000,"y":0.25},{"x":1567962180000,"y":0.08},{"x":1567962240000,"y":0.1},{"x":1567962300000,"y":0.17},{"x":1567962360000,"y":0.09},{"x":1567962420000,"y":0.28},{"x":1567962480000,"y":0.09},{"x":1567962540000,"y":0.18},{"x":1567962600000,"y":0.18},{"x":1567962660000,"y":0.1},{"x":1567962720000,"y":0.25},{"x":1567962780000,"y":0.09},{"x":1567962840000,"y":0.09},{"x":1567962900000,"y":0.19},{"x":1567962960000,"y":0.09},{"x":1567963020000,"y":0.31},{"x":1567963080000,"y":0.11},{"x":1567963140000,"y":0.1},{"x":1567963200000,"y":0.14},{"x":1567963260000,"y":0.09},{"x":1567963320000,"y":0.24},{"x":1567963380000,"y":0.11},{"x":1567963440000,"y":0.12},{"x":1567963500000,"y":0.2},{"x":1567963560000,"y":0.09},{"x":1567963620000,"y":0.21},{"x":1567963680000,"y":0.13},{"x":1567963740000,"y":0.12},{"x":1567963800000,"y":0.2},{"x":1567963860000,"y":0.16},{"x":1567963920000,"y":0.1},{"x":1567963980000,"y":0.31},{"x":1567964040000,"y":0.16},{"x":1567964100000,"y":0.2},{"x":1567964160000,"y":0.1},{"x":1567964220000,"y":0.1},{"x":1567964280000,"y":0.3},{"x":1567964340000,"y":0.17},{"x":1567964400000,"y":0.17},{"x":1567964460000,"y":0.12},{"x":1567964520000,"y":0.08},{"x":1567964580000,"y":0.25},{"x":1567964640000,"y":0.09},{"x":1567964700000,"y":0.21},{"x":1567964760000,"y":0.11},{"x":1567964820000,"y":0.12},{"x":1567964880000,"y":0.33},{"x":1567964940000,"y":0.11},{"x":1567965000000,"y":0.16},{"x":1567965060000,"y":0.09},{"x":1567965120000,"y":0.08},{"x":1567965180000,"y":0.25},{"x":1567965240000,"y":0.1},{"x":1567965300000,"y":0.2},{"x":1567965360000,"y":0.07},{"x":1567965420000,"y":0.1},{"x":1567965480000,"y":0.25},{"x":1567965540000,"y":0.08},{"x":1567965600000,"y":0.24},{"x":1567965660000,"y":0.09},{"x":1567965720000,"y":0.1},{"x":1567965780000,"y":0.25},{"x":1567965840000,"y":0.1},{"x":1567965900000,"y":0.19},{"x":1567965960000,"y":0.08},{"x":1567966020000,"y":0.12},{"x":1567966080000,"y":0.24},{"x":1567966140000,"y":0.23},{"x":1567966200000,"y":0.2},{"x":1567966260000,"y":0.13},{"x":1567966320000,"y":0.1},{"x":1567966380000,"y":0.1},{"x":1567966440000,"y":0.31},{"x":1567966500000,"y":0.25},{"x":1567966560000,"y":0.15},{"x":1567966620000,"y":0.1},{"x":1567966680000,"y":0.09},{"x":1567966740000,"y":0.29},{"x":1567966800000,"y":0.16},{"x":1567966860000,"y":0.11},{"x":1567966920000,"y":0.09},{"x":1567966980000,"y":0.06},{"x":1567967040000,"y":1.42},{"x":1567967100000,"y":0.2},{"x":1567967160000,"y":0.1},{"x":1567967220000,"y":0.1},{"x":1567967280000,"y":0.08},{"x":1567967340000,"y":0.22},{"x":1567967400000,"y":0.15},{"x":1567967460000,"y":0.08},{"x":1567967520000,"y":0.1},{"x":1567967580000,"y":0.09},{"x":1567967640000,"y":0.3},{"x":1567967700000,"y":0.15},{"x":1567967760000,"y":0.1},{"x":1567967820000,"y":0.08},{"x":1567967880000,"y":0.15},{"x":1567967940000,"y":0.47},{"x":1567968000000,"y":0.19},{"x":1567968060000,"y":0.1},{"x":1567968120000,"y":0.1},{"x":1567968180000,"y":0.09},{"x":1567968240000,"y":0.26},{"x":1567968300000,"y":0.26},{"x":1567968360000,"y":0.11},{"x":1567968420000,"y":0.2},{"x":1567968480000,"y":0.08},{"x":1567968540000,"y":0.25},{"x":1567968600000,"y":0.19},{"x":1567968660000,"y":0.1},{"x":1567968720000,"y":0.12},{"x":1567968780000,"y":0.1},{"x":1567968840000,"y":0.1},{"x":1567968900000,"y":0.45},{"x":1567968960000,"y":0.12},{"x":1567969020000,"y":0.1},{"x":1567969080000,"y":0.07},{"x":1567969140000,"y":0.08},{"x":1567969200000,"y":0.6},{"x":1567969260000,"y":0.12},{"x":1567969320000,"y":0.09},{"x":1567969380000,"y":0.08},{"x":1567969440000,"y":0.12},{"x":1567969500000,"y":6.4},{"x":1567969560000,"y":0.19},{"x":1567969620000,"y":0.11},{"x":1567969680000,"y":0.11},{"x":1567969740000,"y":0.24},{"x":1567969800000,"y":0.32},{"x":1567969860000,"y":0.1},{"x":1567969920000,"y":0.08},{"x":1567969980000,"y":0.12},{"x":1567970040000,"y":0.09},{"x":1567970100000,"y":0.36},{"x":1567970160000,"y":0.11},{"x":1567970220000,"y":0.12},{"x":1567970280000,"y":0.12},{"x":1567970340000,"y":0.09},{"x":1567970400000,"y":0.31},{"x":1567970460000,"y":0.12},{"x":1567970520000,"y":0.08},{"x":1567970580000,"y":0.13},{"x":1567970640000,"y":0.09},{"x":1567970700000,"y":0.39},{"x":1567970760000,"y":0.12},{"x":1567970820000,"y":0.09},{"x":1567970880000,"y":0.1},{"x":1567970940000,"y":0.1},{"x":1567971000000,"y":0.3},{"x":1567971060000,"y":0.17},{"x":1567971120000,"y":0.07},{"x":1567971180000,"y":0.1},{"x":1567971240000,"y":0.1},{"x":1567971300000,"y":0.15},{"x":1567971360000,"y":0.24},{"x":1567971420000,"y":0.1},{"x":1567971480000,"y":0.11},{"x":1567971540000,"y":0.23},{"x":1567971600000,"y":0.11},{"x":1567971660000,"y":0.27},{"x":1567971720000,"y":0.13},{"x":1567971780000,"y":0.09},{"x":1567971840000,"y":0.09},{"x":1567971900000,"y":0.18},{"x":1567971960000,"y":0.22},{"x":1567972020000,"y":0.1},{"x":1567972080000,"y":0.07},{"x":1567972140000,"y":0.07},{"x":1567972200000,"y":0.21},{"x":1567972260000,"y":0.24},{"x":1567972320000,"y":0.11},{"x":1567972380000,"y":0.07},{"x":1567972440000,"y":0.1},{"x":1567972500000,"y":0.2},{"x":1567972560000,"y":0.25},{"x":1567972620000,"y":0.08},{"x":1567972680000,"y":0.09},{"x":1567972740000,"y":0.1},{"x":1567972800000,"y":0.24},{"x":1567972860000,"y":0.24},{"x":1567972920000,"y":0.08},{"x":1567972980000,"y":0.08},{"x":1567973040000,"y":0.08},{"x":1567973100000,"y":0.21},{"x":1567973160000,"y":0.24},{"x":1567973220000,"y":0.08},{"x":1567973280000,"y":0.06},{"x":1567973340000,"y":0.28},{"x":1567973400000,"y":0.24},{"x":1567973460000,"y":0.1},{"x":1567973520000,"y":0.23},{"x":1567973580000,"y":0.08},{"x":1567973640000,"y":0.08},{"x":1567973700000,"y":0.17},{"x":1567973760000,"y":0.11},{"x":1567973820000,"y":0.26},{"x":1567973880000,"y":0.11},{"x":1567973940000,"y":0.07},{"x":1567974000000,"y":0.19},{"x":1567974060000,"y":0.09},{"x":1567974120000,"y":0.23},{"x":1567974180000,"y":0.08},{"x":1567974240000,"y":0.06},{"x":1567974300000,"y":2.19},{"x":1567974360000,"y":0.09},{"x":1567974420000,"y":0.25},{"x":1567974480000,"y":0.08},{"x":1567974540000,"y":0.09},{"x":1567974600000,"y":0.2},{"x":1567974660000,"y":0.09},{"x":1567974720000,"y":0.27},{"x":1567974780000,"y":0.12},{"x":1567974840000,"y":0.1},{"x":1567974900000,"y":0.22},{"x":1567974960000,"y":0.1},{"x":1567975020000,"y":0.27},{"x":1567975080000,"y":0.14},{"x":1567975140000,"y":0.32},{"x":1567975200000,"y":0.23},{"x":1567975260000,"y":0.14},{"x":1567975320000,"y":0.24},{"x":1567975380000,"y":0.09},{"x":1567975440000,"y":0.12},{"x":1567975500000,"y":0.26},{"x":1567975560000,"y":0.1},{"x":1567975620000,"y":0.32},{"x":1567975680000,"y":0.13},{"x":1567975740000,"y":0.14},{"x":1567975800000,"y":0.19},{"x":1567975860000,"y":0.12},{"x":1567975920000,"y":0.1},{"x":1567975980000,"y":0.25},{"x":1567976040000,"y":0.15},{"x":1567976100000,"y":0.21},{"x":1567976160000,"y":0.11},{"x":1567976220000,"y":0.13},{"x":1567976280000,"y":0.3},{"x":1567976340000,"y":0.13},{"x":1567976400000,"y":0.26},{"x":1567976460000,"y":0.12},{"x":1567976520000,"y":0.13},{"x":1567976580000,"y":0.25},{"x":1567976640000,"y":0.11},{"x":1567976700000,"y":0.23},{"x":1567976760000,"y":0.11},{"x":1567976820000,"y":0.15},{"x":1567976880000,"y":0.24},{"x":1567976940000,"y":0.29},{"x":1567977000000,"y":0.27},{"x":1567977060000,"y":0.16},{"x":1567977120000,"y":0.08},{"x":1567977180000,"y":0.33},{"x":1567977240000,"y":0.11},{"x":1567977300000,"y":0.23},{"x":1567977360000,"y":0.12},{"x":1567977420000,"y":0.13},{"x":1567977480000,"y":0.25},{"x":1567977540000,"y":0.12},{"x":1567977600000,"y":0.26},{"x":1567977660000,"y":0.17},{"x":1567977720000,"y":0.14},{"x":1567977780000,"y":0.3},{"x":1567977840000,"y":0.11},{"x":1567977900000,"y":0.24},{"x":1567977960000,"y":1.98},{"x":1567978020000,"y":0.1},{"x":1567978080000,"y":0.3},{"x":1567978140000,"y":0.12},{"x":1567978200000,"y":0.21},{"x":1567978260000,"y":0.1},{"x":1567978320000,"y":0.09},{"x":1567978380000,"y":0.12},{"x":1567978440000,"y":0.36},{"x":1567978500000,"y":0.26},{"x":1567978560000,"y":0.1},{"x":1567978620000,"y":0.1},{"x":1567978680000,"y":0.13},{"x":1567978740000,"y":0.54},{"x":1567978800000,"y":1.96},{"x":1567978860000,"y":0.13},{"x":1567978920000,"y":0.08},{"x":1567978980000,"y":0.11},{"x":1567979040000,"y":0.3},{"x":1567979100000,"y":0.18},{"x":1567979160000,"y":0.1},{"x":1567979220000,"y":0.13},{"x":1567979280000,"y":0.1},{"x":1567979340000,"y":0.27},{"x":1567979400000,"y":0.23},{"x":1567979460000,"y":0.14},{"x":1567979520000,"y":0.1},{"x":1567979580000,"y":0.13},{"x":1567979640000,"y":0.25},{"x":1567979700000,"y":0.24},{"x":1567979760000,"y":0.12},{"x":1567979820000,"y":0.11},{"x":1567979880000,"y":0.12},{"x":1567979940000,"y":0.33},{"x":1567980000000,"y":0.31},{"x":1567980060000,"y":0.15},{"x":1567980120000,"y":0.17},{"x":1567980180000,"y":0.21},{"x":1567980240000,"y":0.33},{"x":1567980300000,"y":0.22},{"x":1567980360000,"y":0.09},{"x":1567980420000,"y":0.11},{"x":1567980480000,"y":0.09},{"x":1567980540000,"y":0.39},{"x":1567980600000,"y":0.2},{"x":1567980660000,"y":0.14},{"x":1567980720000,"y":0.11},{"x":1567980780000,"y":0.11},{"x":1567980840000,"y":0.12},{"x":1567980900000,"y":0.41},{"x":1567980960000,"y":0.14},{"x":1567981020000,"y":0.13},{"x":1567981080000,"y":0.07},{"x":1567981140000,"y":0.11},{"x":1567981200000,"y":0.35},{"x":1567981260000,"y":0.08},{"x":1567981320000,"y":0.07},{"x":1567981380000,"y":0.07},{"x":1567981440000,"y":0.07},{"x":1567981500000,"y":0.37},{"x":1567981560000,"y":0.07},{"x":1567981620000,"y":0.08},{"x":1567981680000,"y":0.11},{"x":1567981740000,"y":0.08},{"x":1567981800000,"y":0.34},{"x":1567981860000,"y":0.12},{"x":1567981920000,"y":0.07},{"x":1567981980000,"y":0.1},{"x":1567982040000,"y":0.09},{"x":1567982100000,"y":0.28},{"x":1567982160000,"y":0.09},{"x":1567982220000,"y":0.12},{"x":1567982280000,"y":0.12},{"x":1567982340000,"y":0.24},{"x":1567982400000,"y":0.37},{"x":1567982460000,"y":3.18},{"x":1567982520000,"y":0.1},{"x":1567982580000,"y":0.11},{"x":1567982640000,"y":0.12},{"x":1567982700000,"y":0.4},{"x":1567982760000,"y":0.12},{"x":1567982820000,"y":0.12},{"x":1567982880000,"y":0.12},{"x":1567982940000,"y":0.1},{"x":1567983000000,"y":0.17},{"x":1567983060000,"y":0.25},{"x":1567983120000,"y":0.1},{"x":1567983180000,"y":0.07},{"x":1567983240000,"y":0.1},{"x":1567983300000,"y":0.15},{"x":1567983360000,"y":0.31},{"x":1567983420000,"y":0.07},{"x":1567983480000,"y":0.1},{"x":1567983540000,"y":0.1},{"x":1567983600000,"y":0.19},{"x":1567983660000,"y":0.24},{"x":1567983720000,"y":0.12},{"x":1567983780000,"y":0.1},{"x":1567983840000,"y":0.09},{"x":1567983900000,"y":0.21},{"x":1567983960000,"y":0.27},{"x":1567984020000,"y":0.1},{"x":1567984080000,"y":0.15},{"x":1567984140000,"y":0.29},{"x":1567984200000,"y":0.24},{"x":1567984260000,"y":0.24},{"x":1567984320000,"y":0.15},{"x":1567984380000,"y":0.08},{"x":1567984440000,"y":0.11},{"x":1567984500000,"y":0.31},{"x":1567984560000,"y":0.28},{"x":1567984620000,"y":0.14},{"x":1567984680000,"y":0.16},{"x":1567984740000,"y":0.13},{"x":1567984800000,"y":0.33},{"x":1567984860000,"y":0.32},{"x":1567984920000,"y":0.17},{"x":1567984980000,"y":0.15},{"x":1567985040000,"y":0.13},{"x":1567985100000,"y":0.19},{"x":1567985160000,"y":0.09},{"x":1567985220000,"y":1.7},{"x":1567985280000,"y":0.16},{"x":1567985340000,"y":0.12},{"x":1567985400000,"y":0.2},{"x":1567985460000,"y":0.17},{"x":1567985520000,"y":0.36},{"x":1567985580000,"y":0.15},{"x":1567985640000,"y":0.15},{"x":1567985700000,"y":0.24},{"x":1567985760000,"y":0.15},{"x":1567985820000,"y":0.28},{"x":1567985880000,"y":0.22},{"x":1567985940000,"y":0.41},{"x":1567986000000,"y":0.22},{"x":1567986060000,"y":0.17},{"x":1567986120000,"y":0.34},{"x":1567986180000,"y":0.16},{"x":1567986240000,"y":0.18},{"x":1567986300000,"y":0.24},{"x":1567986360000,"y":0.21},{"x":1567986420000,"y":0.37},{"x":1567986480000,"y":0.18},{"x":1567986540000,"y":0.2},{"x":1567986600000,"y":0.28},{"x":1567986660000,"y":0.19},{"x":1567986720000,"y":0.3},{"x":1567986780000,"y":0.19},{"x":1567986840000,"y":0.2},{"x":1567986900000,"y":0.29},{"x":1567986960000,"y":0.17},{"x":1567987020000,"y":0.32},{"x":1567987080000,"y":0.2},{"x":1567987140000,"y":0.19},{"x":1567987200000,"y":0.33},{"x":1567987260000,"y":0.15},{"x":1567987320000,"y":0.32},{"x":1567987380000,"y":0.17},{"x":1567987440000,"y":0.18},{"x":1567987500000,"y":0.2},{"x":1567987560000,"y":0.17},{"x":1567987620000,"y":0.15},{"x":1567987680000,"y":0.32},{"x":1567987740000,"y":0.4},{"x":1567987800000,"y":0.23},{"x":1567987860000,"y":0.2},{"x":1567987920000,"y":0.19},{"x":1567987980000,"y":0.32},{"x":1567988040000,"y":0.17},{"x":1567988100000,"y":0.34},{"x":1567988160000,"y":0.18},{"x":1567988220000,"y":0.18},{"x":1567988280000,"y":0.34},{"x":1567988340000,"y":0.18},{"x":1567988400000,"y":0.29},{"x":1567988460000,"y":0.19},{"x":1567988520000,"y":0.19},{"x":1567988580000,"y":0.3},{"x":1567988640000,"y":0.18},{"x":1567988700000,"y":0.27},{"x":1567988760000,"y":0.17},{"x":1567988820000,"y":0.18},{"x":1567988880000,"y":0.31},{"x":1567988940000,"y":0.19},{"x":1567989000000,"y":0.33},{"x":1567989060000,"y":0.17},{"x":1567989120000,"y":0.18},{"x":1567989180000,"y":0.32},{"x":1567989240000,"y":0.17},{"x":1567989300000,"y":0.34},{"x":1567989360000,"y":0.18},{"x":1567989420000,"y":0.15},{"x":1567989480000,"y":0.31},{"x":1567989540000,"y":0.42},{"x":1567989600000,"y":0.29},{"x":1567989660000,"y":0.18},{"x":1567989720000,"y":0.16},{"x":1567989780000,"y":0.32},{"x":1567989840000,"y":0.2},{"x":1567989900000,"y":0.24},{"x":1567989960000,"y":0.15},{"x":1567990020000,"y":0.15},{"x":1567990080000,"y":0.17},{"x":1567990140000,"y":0.34},{"x":1567990200000,"y":0.23},{"x":1567990260000,"y":0.21},{"x":1567990320000,"y":0.16},{"x":1567990380000,"y":0.17},{"x":1567990440000,"y":0.33},{"x":1567990500000,"y":0.24},{"x":1567990560000,"y":0.18},{"x":1567990620000,"y":0.15},{"x":1567990680000,"y":0.18},{"x":1567990740000,"y":0.31},{"x":1567990800000,"y":0.31},{"x":1567990860000,"y":0.17},{"x":1567990920000,"y":0.18},{"x":1567990980000,"y":0.17},{"x":1567991040000,"y":0.32},{"x":1567991100000,"y":0.24},{"x":1567991160000,"y":0.19},{"x":1567991220000,"y":0.19},{"x":1567991280000,"y":0.15},{"x":1567991340000,"y":6.04},{"x":1567991400000,"y":0.65},{"x":1567991460000,"y":0.2},{"x":1567991520000,"y":0.16},{"x":1567991580000,"y":0.22},{"x":1567991640000,"y":0.36},{"x":1567991700000,"y":0.26},{"x":1567991760000,"y":0.18},{"x":1567991820000,"y":0.18},{"x":1567991880000,"y":0.16},{"x":1567991940000,"y":0.3},{"x":1567992000000,"y":0.21},{"x":1567992060000,"y":0.17},{"x":1567992120000,"y":0.19},{"x":1567992180000,"y":0.2},{"x":1567992240000,"y":0.32},{"x":1567992300000,"y":0.25},{"x":1567992360000,"y":0.2},{"x":1567992420000,"y":0.15},{"x":1567992480000,"y":0.77},{"x":1567992540000,"y":0.2},{"x":1567992600000,"y":0.5},{"x":1567992660000,"y":0.17},{"x":1567992720000,"y":0.17},{"x":1567992780000,"y":0.17},{"x":1567992840000,"y":0.17},{"x":1567992900000,"y":0.48},{"x":1567992960000,"y":0.18},{"x":1567993020000,"y":0.15},{"x":1567993080000,"y":0.18},{"x":1567993140000,"y":0.37},{"x":1567993200000,"y":0.46},{"x":1567993260000,"y":0.16},{"x":1567993320000,"y":0.19},{"x":1567993380000,"y":0.2},{"x":1567993440000,"y":0.18},{"x":1567993500000,"y":0.37},{"x":1567993560000,"y":0.19},{"x":1567993620000,"y":0.2},{"x":1567993680000,"y":0.18},{"x":1567993740000,"y":0.18},{"x":1567993800000,"y":0.42},{"x":1567993860000,"y":0.2},{"x":1567993920000,"y":0.24},{"x":1567993980000,"y":0.17},{"x":1567994040000,"y":0.17},{"x":1567994100000,"y":0.45},{"x":1567994160000,"y":0.16},{"x":1567994220000,"y":0.15},{"x":1567994280000,"y":0.17},{"x":1567994340000,"y":0.2},{"x":1567994400000,"y":0.4},{"x":1567994460000,"y":0.18},{"x":1567994520000,"y":0.18},{"x":1567994580000,"y":0.19},{"x":1567994640000,"y":0.2},{"x":1567994700000,"y":0.39},{"x":1567994760000,"y":0.2},{"x":1567994820000,"y":0.21},{"x":1567994880000,"y":0.19},{"x":1567994940000,"y":0.34},{"x":1567995000000,"y":0.37},{"x":1567995060000,"y":0.18},{"x":1567995120000,"y":0.19},{"x":1567995180000,"y":0.22},{"x":1567995240000,"y":0.15},{"x":1567995300000,"y":0.17},{"x":1567995360000,"y":0.29},{"x":1567995420000,"y":0.1},{"x":1567995480000,"y":0.12},{"x":1567995540000,"y":0.1},{"x":1567995600000,"y":0.22},{"x":1567995660000,"y":0.31},{"x":1567995720000,"y":0.08},{"x":1567995780000,"y":0.08},{"x":1567995840000,"y":0.12},{"x":1567995900000,"y":0.26},{"x":1567995960000,"y":0.25},{"x":1567996020000,"y":0.09},{"x":1567996080000,"y":0.09},{"x":1567996140000,"y":0.09},{"x":1567996200000,"y":0.2},{"x":1567996260000,"y":0.2},{"x":1567996320000,"y":0.1},{"x":1567996380000,"y":0.1},{"x":1567996440000,"y":0.08},{"x":1567996500000,"y":0.14},{"x":1567996560000,"y":0.25},{"x":1567996620000,"y":0.1},{"x":1567996680000,"y":0.14},{"x":1567996740000,"y":0.23},{"x":1567996800000,"y":0.2},{"x":1567996860000,"y":0.24},{"x":1567996920000,"y":0.29},{"x":1567996980000,"y":0.1},{"x":1567997040000,"y":0.09},{"x":1567997100000,"y":0.15},{"x":1567997160000,"y":0.25},{"x":1567997220000,"y":0.09},{"x":1567997280000,"y":0.08},{"x":1567997340000,"y":0.11},{"x":1567997400000,"y":0.19},{"x":1567997460000,"y":0.08},{"x":1567997520000,"y":0.39},{"x":1567997580000,"y":0.09},{"x":1567997640000,"y":0.11},{"x":1567997700000,"y":0.22},{"x":1567997760000,"y":0.15},{"x":1567997820000,"y":0.3},{"x":1567997880000,"y":0.13},{"x":1567997940000,"y":0.12},{"x":1567998000000,"y":0.26},{"x":1567998060000,"y":0.12},{"x":1567998120000,"y":0.22},{"x":1567998180000,"y":0.1},{"x":1567998240000,"y":0.08},{"x":1567998300000,"y":0.15},{"x":1567998360000,"y":0.1},{"x":1567998420000,"y":0.24},{"x":1567998480000,"y":0.08},{"x":1567998540000,"y":0.18},{"x":1567998600000,"y":0.14},{"x":1567998660000,"y":0.08},{"x":1567998720000,"y":0.23},{"x":1567998780000,"y":0.06},{"x":1567998840000,"y":0.1},{"x":1567998900000,"y":0.12},{"x":1567998960000,"y":0.09},{"x":1567999020000,"y":0.23},{"x":1567999080000,"y":0.08},{"x":1567999140000,"y":0.07},{"x":1567999200000,"y":0.18},{"x":1567999260000,"y":0.1},{"x":1567999320000,"y":0.24},{"x":1567999380000,"y":0.1},{"x":1567999440000,"y":0.08},{"x":1567999500000,"y":0.1},{"x":1567999560000,"y":0.09},{"x":1567999620000,"y":0.21},{"x":1567999680000,"y":0.06},{"x":1567999740000,"y":0.08},{"x":1567999800000,"y":0.23},{"x":1567999860000,"y":0.07},{"x":1567999920000,"y":0.08},{"x":1567999980000,"y":0.24},{"x":1568000040000,"y":0.09},{"x":1568000100000,"y":0.18},{"x":1568000160000,"y":0.11},{"x":1568000220000,"y":0.07},{"x":1568000280000,"y":0.2},{"x":1568000340000,"y":0.24},{"x":1568000400000,"y":0.24},{"x":1568000460000,"y":0.09},{"x":1568000520000,"y":0.1},{"x":1568000580000,"y":0.73},{"x":1568000640000,"y":0.09},{"x":1568000700000,"y":0.18},{"x":1568000760000,"y":0.08},{"x":1568000820000,"y":0.12},{"x":1568000880000,"y":0.26},{"x":1568000940000,"y":0.1},{"x":1568001000000,"y":0.16},{"x":1568001060000,"y":0.07},{"x":1568001120000,"y":0.11},{"x":1568001180000,"y":0.22},{"x":1568001240000,"y":0.1},{"x":1568001300000,"y":0.12},{"x":1568001360000,"y":0.08},{"x":1568001420000,"y":0.1},{"x":1568001480000,"y":0.25},{"x":1568001540000,"y":0.07},{"x":1568001600000,"y":0.24},{"x":1568001660000,"y":0.12},{"x":1568001720000,"y":0.11},{"x":1568001780000,"y":0.22},{"x":1568001840000,"y":0.09},{"x":1568001900000,"y":0.18},{"x":1568001960000,"y":0.07},{"x":1568002020000,"y":0.08},{"x":1568002080000,"y":0.2},{"x":1568002140000,"y":0.27},{"x":1568002200000,"y":0.17},{"x":1568002260000,"y":0.09},{"x":1568002320000,"y":0.1},{"x":1568002380000,"y":0.07},{"x":1568002440000,"y":0.27},{"x":1568002500000,"y":0.19},{"x":1568002560000,"y":0.1},{"x":1568002620000,"y":0.11},{"x":1568002680000,"y":0.11},{"x":1568002740000,"y":0.24},{"x":1568002800000,"y":0.22},{"x":1568002860000,"y":0.1},{"x":1568002920000,"y":0.09},{"x":1568002980000,"y":0.08},{"x":1568003040000,"y":0.24},{"x":1568003100000,"y":0.21},{"x":1568003160000,"y":0.08},{"x":1568003220000,"y":0.07},{"x":1568003280000,"y":0.12},{"x":1568003340000,"y":1.23},{"x":1568003400000,"y":0.17},{"x":1568003460000,"y":0.09},{"x":1568003520000,"y":0.1},{"x":1568003580000,"y":0.09},{"x":1568003640000,"y":0.21},{"x":1568003700000,"y":0.13},{"x":1568003760000,"y":0.12},{"x":1568003820000,"y":0.1},{"x":1568003880000,"y":0.07},{"x":1568003940000,"y":0.4},{"x":1568004000000,"y":0.19},{"x":1568004060000,"y":0.08},{"x":1568004120000,"y":0.1},{"x":1568004180000,"y":0.1},{"x":1568004240000,"y":1.06},{"x":1568004300000,"y":0.17},{"x":1568004360000,"y":0.09},{"x":1568004420000,"y":0.1},{"x":1568004480000,"y":0.1},{"x":1568004540000,"y":0.1},{"x":1568004600000,"y":0.31},{"x":1568004660000,"y":0.09},{"x":1568004720000,"y":0.07},{"x":1568004780000,"y":0.07},{"x":1568004840000,"y":0.12},{"x":1568004900000,"y":0.36},{"x":1568004960000,"y":0.1},{"x":1568005020000,"y":0.09},{"x":1568005080000,"y":0.1},{"x":1568005140000,"y":0.1},{"x":1568005200000,"y":1.17},{"x":1568005260000,"y":0.08},{"x":1568005320000,"y":0.07},{"x":1568005380000,"y":0.08},{"x":1568005440000,"y":0.07},{"x":1568005500000,"y":0.35},{"x":1568005560000,"y":0.15},{"x":1568005620000,"y":0.1},{"x":1568005680000,"y":0.07},{"x":1568005740000,"y":0.19},{"x":1568005800000,"y":0.37},{"x":1568005860000,"y":0.09},{"x":1568005920000,"y":0.09},{"x":1568005980000,"y":0.07},{"x":1568006040000,"y":0.1},{"x":1568006100000,"y":0.31},{"x":1568006160000,"y":0.12},{"x":1568006220000,"y":0.1},{"x":1568006280000,"y":0.1},{"x":1568006340000,"y":0.08},{"x":1568006400000,"y":0.32},{"x":1568006460000,"y":0.13},{"x":1568006520000,"y":0.1},{"x":1568006580000,"y":0.07},{"x":1568006640000,"y":0.08},{"x":1568006700000,"y":0.31},{"x":1568006760000,"y":0.09},{"x":1568006820000,"y":0.1},{"x":1568006880000,"y":0.11},{"x":1568006940000,"y":0.11},{"x":1568007000000,"y":0.21},{"x":1568007060000,"y":0.29},{"x":1568007120000,"y":0.12},{"x":1568007180000,"y":0.09},{"x":1568007240000,"y":0.08},{"x":1568007300000,"y":0.22},{"x":1568007360000,"y":0.24},{"x":1568007420000,"y":0.08},{"x":1568007480000,"y":0.11},{"x":1568007540000,"y":0.17},{"x":1568007600000,"y":0.11},{"x":1568007660000,"y":0.23},{"x":1568007720000,"y":0.1},{"x":1568007780000,"y":0.18},{"x":1568007840000,"y":4.2},{"x":1568007900000,"y":0.15},{"x":1568007960000,"y":0.26},{"x":1568008020000,"y":0.1},{"x":1568008080000,"y":0.07},{"x":1568008140000,"y":0.07},{"x":1568008200000,"y":0.17},{"x":1568008260000,"y":0.23},{"x":1568008320000,"y":0.1},{"x":1568008380000,"y":0.12},{"x":1568008440000,"y":0.1},{"x":1568008500000,"y":0.18},{"x":1568008560000,"y":6.28},{"x":1568008620000,"y":0.1},{"x":1568008680000,"y":0.09},{"x":1568008740000,"y":0.1},{"x":1568008800000,"y":0.27},{"x":1568008860000,"y":0.11},{"x":1568008920000,"y":0.22},{"x":1568008980000,"y":0.1},{"x":1568009040000,"y":0.12},{"x":1568009100000,"y":0.24},{"x":1568009160000,"y":0.07},{"x":1568009220000,"y":0.22},{"x":1568009280000,"y":0.13},{"x":1568009340000,"y":0.28},{"x":1568009400000,"y":0.19},{"x":1568009460000,"y":0.12},{"x":1568009520000,"y":0.24},{"x":1568009580000,"y":0.12},{"x":1568009640000,"y":0.13},{"x":1568009700000,"y":0.24},{"x":1568009760000,"y":0.12},{"x":1568009820000,"y":0.35},{"x":1568009880000,"y":0.09},{"x":1568009940000,"y":0.12},{"x":1568010000000,"y":0.16},{"x":1568010060000,"y":0.08},{"x":1568010120000,"y":0.25},{"x":1568010180000,"y":0.07},{"x":1568010240000,"y":0.09},{"x":1568010300000,"y":0.25},{"x":1568010360000,"y":0.12},{"x":1568010420000,"y":0.23},{"x":1568010480000,"y":0.07},{"x":1568010540000,"y":0.15},{"x":1568010600000,"y":3.02},{"x":1568010660000,"y":0.12},{"x":1568010720000,"y":0.22},{"x":1568010780000,"y":0.08},{"x":1568010840000,"y":0.06},{"x":1568010900000,"y":0.2},{"x":1568010960000,"y":0.1},{"x":1568011020000,"y":0.22},{"x":1568011080000,"y":0.14},{"x":1568011140000,"y":0.27},{"x":1568011200000,"y":0.19},{"x":1568011260000,"y":0.1},{"x":1568011320000,"y":0.12},{"x":1568011380000,"y":0.26},{"x":1568011440000,"y":2.09},{"x":1568011500000,"y":0.19},{"x":1568011560000,"y":0.12},{"x":1568011620000,"y":0.12},{"x":1568011680000,"y":0.23},{"x":1568011740000,"y":0.07},{"x":1568011800000,"y":0.17},{"x":1568011860000,"y":0.08},{"x":1568011920000,"y":0.07},{"x":1568011980000,"y":0.26},{"x":1568012040000,"y":0.06},{"x":1568012100000,"y":0.14},{"x":1568012160000,"y":0.11},{"x":1568012220000,"y":0.06},{"x":1568012280000,"y":0.24},{"x":1568012340000,"y":0.07},{"x":1568012400000,"y":0.2},{"x":1568012460000,"y":0.12},{"x":1568012520000,"y":0.07},{"x":1568012580000,"y":0.26},{"x":1568012640000,"y":0.09},{"x":1568012700000,"y":0.2},{"x":1568012760000,"y":0.09},{"x":1568012820000,"y":0.12},{"x":1568012880000,"y":0.23},{"x":1568012940000,"y":0.17},{"x":1568013000000,"y":0.2},{"x":1568013060000,"y":0.12},{"x":1568013120000,"y":0.11},{"x":1568013180000,"y":3.09},{"x":1568013240000,"y":0.97},{"x":1568013300000,"y":0.19},{"x":1568013360000,"y":0.08},{"x":1568013420000,"y":0.11},{"x":1568013480000,"y":0.14},{"x":1568013540000,"y":0.31},{"x":1568013600000,"y":0.21},{"x":1568013660000,"y":0.15},{"x":1568013720000,"y":0.17},{"x":1568013780000,"y":0.1},{"x":1568013840000,"y":0.31},{"x":1568013900000,"y":0.19},{"x":1568013960000,"y":0.12},{"x":1568014020000,"y":0.07},{"x":1568014080000,"y":0.09},{"x":1568014140000,"y":0.23},{"x":1568014200000,"y":0.22},{"x":1568014260000,"y":0.12},{"x":1568014320000,"y":0.13},{"x":1568014380000,"y":0.1},{"x":1568014440000,"y":0.29},{"x":1568014500000,"y":0.26},{"x":1568014560000,"y":0.09},{"x":1568014620000,"y":0.11},{"x":1568014680000,"y":0.1},{"x":1568014740000,"y":0.38},{"x":1568014800000,"y":0.22},{"x":1568014860000,"y":0.13},{"x":1568014920000,"y":0.1},{"x":1568014980000,"y":0.12},{"x":1568015040000,"y":0.21},{"x":1568015100000,"y":1.44},{"x":1568015160000,"y":0.09},{"x":1568015220000,"y":0.11},{"x":1568015280000,"y":0.09},{"x":1568015340000,"y":0.23},{"x":1568015400000,"y":0.16},{"x":1568015460000,"y":0.09},{"x":1568015520000,"y":0.12},{"x":1568015580000,"y":0.1},{"x":1568015640000,"y":0.21},{"x":1568015700000,"y":0.19},{"x":1568015760000,"y":0.08},{"x":1568015820000,"y":0.12},{"x":1568015880000,"y":0.09},{"x":1568015940000,"y":0.23},{"x":1568016000000,"y":0.22},{"x":1568016060000,"y":0.13},{"x":1568016120000,"y":0.1},{"x":1568016180000,"y":0.1},{"x":1568016240000,"y":0.11},{"x":1568016300000,"y":0.35},{"x":1568016360000,"y":0.07},{"x":1568016420000,"y":0.13},{"x":1568016480000,"y":0.11},{"x":1568016540000,"y":0.28},{"x":1568016600000,"y":0.36},{"x":1568016660000,"y":0.15},{"x":1568016720000,"y":0.14},{"x":1568016780000,"y":0.08},{"x":1568016840000,"y":0.09},{"x":1568016900000,"y":0.38},{"x":1568016960000,"y":0.09},{"x":1568017020000,"y":0.1},{"x":1568017080000,"y":0.16},{"x":1568017140000,"y":0.16},{"x":1568017200000,"y":0.41},{"x":1568017260000,"y":0.09},{"x":1568017320000,"y":0.16},{"x":1568017380000,"y":0.09},{"x":1568017440000,"y":0.09},{"x":1568017500000,"y":0.36},{"x":1568017560000,"y":0.15},{"x":1568017620000,"y":0.14},{"x":1568017680000,"y":0.15},{"x":1568017740000,"y":0.15},{"x":1568017800000,"y":0.36},{"x":1568017860000,"y":2.61},{"x":1568017920000,"y":0.15},{"x":1568017980000,"y":0.12},{"x":1568018040000,"y":0.15},{"x":1568018100000,"y":0.35},{"x":1568018160000,"y":0.2},{"x":1568018220000,"y":0.12},{"x":1568018280000,"y":0.16},{"x":1568018340000,"y":0.38},{"x":1568018400000,"y":0.27},{"x":1568018460000,"y":0.26},{"x":1568018520000,"y":0.11},{"x":1568018580000,"y":0.17},{"x":1568018640000,"y":0.16},{"x":1568018700000,"y":0.21},{"x":1568018760000,"y":0.27},{"x":1568018820000,"y":0.15},{"x":1568018880000,"y":0.14},{"x":1568018940000,"y":0.12},{"x":1568019000000,"y":0.28},{"x":1568019060000,"y":0.31},{"x":1568019120000,"y":0.16},{"x":1568019180000,"y":0.15},{"x":1568019240000,"y":0.15},{"x":1568019300000,"y":0.29},{"x":1568019360000,"y":0.32},{"x":1568019420000,"y":0.15},{"x":1568019480000,"y":0.15},{"x":1568019540000,"y":0.24},{"x":1568019600000,"y":0.3},{"x":1568019660000,"y":0.38},{"x":1568019720000,"y":0.2},{"x":1568019780000,"y":0.17},{"x":1568019840000,"y":0.17},{"x":1568019900000,"y":0.24},{"x":1568019960000,"y":0.34},{"x":1568020020000,"y":0.21},{"x":1568020080000,"y":0.17},{"x":1568020140000,"y":0.32},{"x":1568020200000,"y":0.27},{"x":1568020260000,"y":0.33},{"x":1568020320000,"y":0.17},{"x":1568020380000,"y":0.17},{"x":1568020440000,"y":0.18},{"x":1568020500000,"y":0.3},{"x":1568020560000,"y":0.3},{"x":1568020620000,"y":0.2},{"x":1568020680000,"y":0.17},{"x":1568020740000,"y":0.15},{"x":1568020800000,"y":0.3},{"x":1568020860000,"y":0.16},{"x":1568020920000,"y":0.32},{"x":1568020980000,"y":0.2},{"x":1568021040000,"y":0.2},{"x":1568021100000,"y":0.37},{"x":1568021160000,"y":0.16},{"x":1568021220000,"y":0.32},{"x":1568021280000,"y":0.17},{"x":1568021340000,"y":0.18},{"x":1568021400000,"y":0.36},{"x":1568021460000,"y":1.57},{"x":1568021520000,"y":0.45},{"x":1568021580000,"y":0.16},{"x":1568021640000,"y":0.16},{"x":1568021700000,"y":0.27},{"x":1568021760000,"y":0.17},{"x":1568021820000,"y":0.41},{"x":1568021880000,"y":0.17},{"x":1568021940000,"y":0.28},{"x":1568022000000,"y":0.26},{"x":1568022060000,"y":0.18},{"x":1568022120000,"y":0.29},{"x":1568022180000,"y":0.17},{"x":1568022240000,"y":0.17},{"x":1568022300000,"y":1.4},{"x":1568022360000,"y":0.18},{"x":1568022420000,"y":0.33},{"x":1568022480000,"y":0.17},{"x":1568022540000,"y":0.15},{"x":1568022600000,"y":0.3},{"x":1568022660000,"y":0.18},{"x":1568022720000,"y":0.29},{"x":1568022780000,"y":0.2},{"x":1568022840000,"y":0.17},{"x":1568022900000,"y":0.26},{"x":1568022960000,"y":0.19},{"x":1568023020000,"y":0.18},{"x":1568023080000,"y":0.3},{"x":1568023140000,"y":0.18},{"x":1568023200000,"y":0.31},{"x":1568023260000,"y":0.15},{"x":1568023320000,"y":0.18},{"x":1568023380000,"y":0.31},{"x":1568023440000,"y":0.16},{"x":1568023500000,"y":0.23},{"x":1568023560000,"y":0.18},{"x":1568023620000,"y":0.15},{"x":1568023680000,"y":0.3},{"x":1568023740000,"y":0.32},{"x":1568023800000,"y":0.27},{"x":1568023860000,"y":0.17},{"x":1568023920000,"y":0.21},{"x":1568023980000,"y":0.3},{"x":1568024040000,"y":0.21},{"x":1568024100000,"y":0.23},{"x":1568024160000,"y":0.18},{"x":1568024220000,"y":0.19},{"x":1568024280000,"y":0.31},{"x":1568024340000,"y":0.28},{"x":1568024400000,"y":0.31},{"x":1568024460000,"y":0.17},{"x":1568024520000,"y":0.2},{"x":1568024580000,"y":0.38},{"x":1568024640000,"y":0.19},{"x":1568024700000,"y":0.34},{"x":1568024760000,"y":0.21},{"x":1568024820000,"y":0.17},{"x":1568024880000,"y":0.33},{"x":1568024940000,"y":0.2},{"x":1568025000000,"y":0.32},{"x":1568025060000,"y":0.21},{"x":1568025120000,"y":0.22},{"x":1568025180000,"y":0.19},{"x":1568025240000,"y":0.39},{"x":1568025300000,"y":0.27},{"x":1568025360000,"y":0.2},{"x":1568025420000,"y":0.19},{"x":1568025480000,"y":0.16},{"x":1568025540000,"y":0.45},{"x":1568025600000,"y":0.27},{"x":1568025660000,"y":0.16},{"x":1568025720000,"y":0.17},{"x":1568025780000,"y":0.17},{"x":1568025840000,"y":0.31},{"x":1568025900000,"y":0.27},{"x":1568025960000,"y":0.19},{"x":1568026020000,"y":0.52},{"x":1568026080000,"y":0.2},{"x":1568026140000,"y":0.34},{"x":1568026200000,"y":0.25},{"x":1568026260000,"y":0.17},{"x":1568026320000,"y":0.18},{"x":1568026380000,"y":0.16},{"x":1568026440000,"y":0.31},{"x":1568026500000,"y":0.24},{"x":1568026560000,"y":0.25},{"x":1568026620000,"y":0.18},{"x":1568026680000,"y":0.18},{"x":1568026740000,"y":0.32},{"x":1568026800000,"y":0.29},{"x":1568026860000,"y":0.19},{"x":1568026920000,"y":0.17},{"x":1568026980000,"y":0.18},{"x":1568027040000,"y":0.41},{"x":1568027100000,"y":0.28},{"x":1568027160000,"y":0.17},{"x":1568027220000,"y":0.17},{"x":1568027280000,"y":0.17},{"x":1568027340000,"y":0.53},{"x":1568027400000,"y":0.31},{"x":1568027460000,"y":0.17},{"x":1568027520000,"y":0.2},{"x":1568027580000,"y":0.17},{"x":1568027640000,"y":0.16},{"x":1568027700000,"y":0.46},{"x":1568027760000,"y":0.17},{"x":1568027820000,"y":0.24},{"x":1568027880000,"y":0.16},{"x":1568027940000,"y":0.2},{"x":1568028000000,"y":0.41},{"x":1568028060000,"y":0.21},{"x":1568028120000,"y":0.17},{"x":1568028180000,"y":0.16},{"x":1568028240000,"y":0.18},{"x":1568028300000,"y":1.83},{"x":1568028360000,"y":0.18},{"x":1568028420000,"y":0.16},{"x":1568028480000,"y":0.17},{"x":1568028540000,"y":0.17},{"x":1568028600000,"y":0.41},{"x":1568028660000,"y":1.6},{"x":1568028720000,"y":0.14},{"x":1568028780000,"y":0.1},{"x":1568028840000,"y":8.13},{"x":1568028900000,"y":0.39},{"x":1568028960000,"y":0.11},{"x":1568029020000,"y":0.08},{"x":1568029080000,"y":0.13},{"x":1568029140000,"y":0.37},{"x":1568029200000,"y":0.39},{"x":1568029260000,"y":0.15},{"x":1568029320000,"y":0.11},{"x":1568029380000,"y":0.08},{"x":1568029440000,"y":0.11},{"x":1568029500000,"y":0.35},{"x":1568029560000,"y":0.14},{"x":1568029620000,"y":0.1},{"x":1568029680000,"y":4.37},{"x":1568029740000,"y":0.1},{"x":1568029800000,"y":0.23},{"x":1568029860000,"y":0.23},{"x":1568029920000,"y":0.12},{"x":1568029980000,"y":0.12},{"x":1568030040000,"y":0.1},{"x":1568030100000,"y":0.19},{"x":1568030160000,"y":0.25},{"x":1568030220000,"y":0.13},{"x":1568030280000,"y":0.11},{"x":1568030340000,"y":0.09},{"x":1568030400000,"y":0.18},{"x":1568030460000,"y":0.22},{"x":1568030520000,"y":0.08},{"x":1568030580000,"y":0.11},{"x":1568030640000,"y":0.12},{"x":1568030700000,"y":0.19},{"x":1568030760000,"y":0.24},{"x":1568030820000,"y":0.09},{"x":1568030880000,"y":0.08},{"x":1568030940000,"y":0.21},{"x":1568031000000,"y":0.19},{"x":1568031060000,"y":0.23},{"x":1568031120000,"y":0.12},{"x":1568031180000,"y":0.14},{"x":1568031240000,"y":0.14},{"x":1568031300000,"y":0.23},{"x":1568031360000,"y":0.3},{"x":1568031420000,"y":0.1},{"x":1568031480000,"y":0.08},{"x":1568031540000,"y":0.13},{"x":1568031600000,"y":0.24},{"x":1568031660000,"y":0.26},{"x":1568031720000,"y":0.12},{"x":1568031780000,"y":0.1},{"x":1568031840000,"y":0.09},{"x":1568031900000,"y":0.22},{"x":1568031960000,"y":0.07},{"x":1568032020000,"y":0.26},{"x":1568032080000,"y":0.11},{"x":1568032140000,"y":0.1},{"x":1568032200000,"y":0.25},{"x":1568032260000,"y":0.1},{"x":1568032320000,"y":0.66},{"x":1568032380000,"y":0.09},{"x":1568032440000,"y":0.13},{"x":1568032500000,"y":0.13},{"x":1568032560000,"y":0.11},{"x":1568032620000,"y":0.25},{"x":1568032680000,"y":0.11},{"x":1568032740000,"y":0.21},{"x":1568032800000,"y":0.18},{"x":1568032860000,"y":0.1},{"x":1568032920000,"y":0.2},{"x":1568032980000,"y":0.11},{"x":1568033040000,"y":0.13},{"x":1568033100000,"y":0.16},{"x":1568033160000,"y":0.1},{"x":1568033220000,"y":0.25},{"x":1568033280000,"y":0.09},{"x":1568033340000,"y":0.07},{"x":1568033400000,"y":0.17},{"x":1568033460000,"y":0.1},{"x":1568033520000,"y":0.23},{"x":1568033580000,"y":0.06},{"x":1568033640000,"y":0.08},{"x":1568033700000,"y":0.24},{"x":1568033760000,"y":0.09},{"x":1568033820000,"y":0.22},{"x":1568033880000,"y":0.11},{"x":1568033940000,"y":0.1},{"x":1568034000000,"y":0.21},{"x":1568034060000,"y":0.07},{"x":1568034120000,"y":0.1},{"x":1568034180000,"y":0.22},{"x":1568034240000,"y":0.11},{"x":1568034300000,"y":0.19},{"x":1568034360000,"y":0.12},{"x":1568034420000,"y":0.1},{"x":1568034480000,"y":0.25},{"x":1568034540000,"y":0.21},{"x":1568034600000,"y":0.23},{"x":1568034660000,"y":0.1},{"x":1568034720000,"y":0.08},{"x":1568034780000,"y":0.2},{"x":1568034840000,"y":0.11},{"x":1568034900000,"y":0.14},{"x":1568034960000,"y":0.1},{"x":1568035020000,"y":0.11},{"x":1568035080000,"y":4.96},{"x":1568035140000,"y":0.36},{"x":1568035200000,"y":0.17},{"x":1568035260000,"y":0.08},{"x":1568035320000,"y":0.09},{"x":1568035380000,"y":0.22},{"x":1568035440000,"y":0.15},{"x":1568035500000,"y":0.19},{"x":1568035560000,"y":0.11},{"x":1568035620000,"y":0.07},{"x":1568035680000,"y":0.21},{"x":1568035740000,"y":0.08},{"x":1568035800000,"y":0.21},{"x":1568035860000,"y":0.14},{"x":1568035920000,"y":0.08},{"x":1568035980000,"y":0.27},{"x":1568036040000,"y":0.06},{"x":1568036100000,"y":0.16},{"x":1568036160000,"y":0.07},{"x":1568036220000,"y":0.07},{"x":1568036280000,"y":0.08},{"x":1568036340000,"y":0.4},{"x":1568036400000,"y":0.19},{"x":1568036460000,"y":0.08},{"x":1568036520000,"y":0.08},{"x":1568036580000,"y":0.07},{"x":1568036640000,"y":0.3},{"x":1568036700000,"y":0.21},{"x":1568036760000,"y":0.11},{"x":1568036820000,"y":0.1},{"x":1568036880000,"y":0.12},{"x":1568036940000,"y":0.29},{"x":1568037000000,"y":0.23},{"x":1568037060000,"y":0.09},{"x":1568037120000,"y":0.13},{"x":1568037180000,"y":0.1},{"x":1568037240000,"y":0.27},{"x":1568037300000,"y":0.23},{"x":1568037360000,"y":0.11},{"x":1568037420000,"y":0.12},{"x":1568037480000,"y":0.1},{"x":1568037540000,"y":0.25},{"x":1568037600000,"y":0.23},{"x":1568037660000,"y":0.15},{"x":1568037720000,"y":0.13},{"x":1568037780000,"y":0.11},{"x":1568037840000,"y":0.27},{"x":1568037900000,"y":0.26},{"x":1568037960000,"y":0.15},{"x":1568038020000,"y":0.09},{"x":1568038080000,"y":0.11},{"x":1568038140000,"y":0.53},{"x":1568038200000,"y":0.31},{"x":1568038260000,"y":0.15},{"x":1568038320000,"y":0.11},{"x":1568038380000,"y":0.14},{"x":1568038440000,"y":0.17},{"x":1568038500000,"y":0.44},{"x":1568038560000,"y":0.1},{"x":1568038620000,"y":0.16},{"x":1568038680000,"y":0.09},{"x":1568038740000,"y":0.08},{"x":1568038800000,"y":0.37},{"x":1568038860000,"y":0.12},{"x":1568038920000,"y":0.13},{"x":1568038980000,"y":0.11},{"x":1568039040000,"y":0.14},{"x":1568039100000,"y":0.38},{"x":1568039160000,"y":0.13},{"x":1568039220000,"y":0.09},{"x":1568039280000,"y":0.14},{"x":1568039340000,"y":0.11},{"x":1568039400000,"y":0.4},{"x":1568039460000,"y":0.17},{"x":1568039520000,"y":0.12},{"x":1568039580000,"y":0.18},{"x":1568039640000,"y":0.15},{"x":1568039700000,"y":0.37},{"x":1568039760000,"y":0.14},{"x":1568039820000,"y":0.09},{"x":1568039880000,"y":0.14},{"x":1568039940000,"y":0.32},{"x":1568040000000,"y":0.44},{"x":1568040060000,"y":0.11},{"x":1568040120000,"y":0.19},{"x":1568040180000,"y":0.11},{"x":1568040240000,"y":0.11},{"x":1568040300000,"y":0.34},{"x":1568040360000,"y":0.14},{"x":1568040420000,"y":0.17},{"x":1568040480000,"y":0.1},{"x":1568040540000,"y":0.09},{"x":1568040600000,"y":0.15},{"x":1568040660000,"y":0.29},{"x":1568040720000,"y":0.11},{"x":1568040780000,"y":0.08},{"x":1568040840000,"y":0.11},{"x":1568040900000,"y":0.22},{"x":1568040960000,"y":0.29},{"x":1568041020000,"y":0.12},{"x":1568041080000,"y":0.11},{"x":1568041140000,"y":0.08},{"x":1568041200000,"y":0.24},{"x":1568041260000,"y":0.32},{"x":1568041320000,"y":0.12},{"x":1568041380000,"y":0.11},{"x":1568041440000,"y":0.12},{"x":1568041500000,"y":0.17},{"x":1568041560000,"y":0.3},{"x":1568041620000,"y":0.13},{"x":1568041680000,"y":0.19},{"x":1568041740000,"y":0.3},{"x":1568041800000,"y":0.23},{"x":1568041860000,"y":0.31},{"x":1568041920000,"y":0.13},{"x":1568041980000,"y":0.1},{"x":1568042040000,"y":0.11},{"x":1568042100000,"y":0.2},{"x":1568042160000,"y":0.31},{"x":1568042220000,"y":0.09},{"x":1568042280000,"y":0.11},{"x":1568042340000,"y":0.15},{"x":1568042400000,"y":0.23},{"x":1568042460000,"y":0.3},{"x":1568042520000,"y":0.09},{"x":1568042580000,"y":0.12},{"x":1568042640000,"y":0.12},{"x":1568042700000,"y":0.22},{"x":1568042760000,"y":0.11},{"x":1568042820000,"y":0.26},{"x":1568042880000,"y":0.11},{"x":1568042940000,"y":0.11},{"x":1568043000000,"y":0.26},{"x":1568043060000,"y":0.12},{"x":1568043120000,"y":0.27},{"x":1568043180000,"y":0.12},{"x":1568043240000,"y":0.11},{"x":1568043300000,"y":0.22},{"x":1568043360000,"y":0.13},{"x":1568043420000,"y":0.29},{"x":1568043480000,"y":0.09},{"x":1568043540000,"y":0.22},{"x":1568043600000,"y":0.17},{"x":1568043660000,"y":0.1},{"x":1568043720000,"y":0.28},{"x":1568043780000,"y":0.09},{"x":1568043840000,"y":0.12},{"x":1568043900000,"y":0.26},{"x":1568043960000,"y":0.11},{"x":1568044020000,"y":0.26},{"x":1568044080000,"y":0.14},{"x":1568044140000,"y":0.12},{"x":1568044200000,"y":0.26},{"x":1568044260000,"y":1.3},{"x":1568044320000,"y":0.2},{"x":1568044380000,"y":0.14},{"x":1568044440000,"y":0.15},{"x":1568044500000,"y":0.2},{"x":1568044560000,"y":0.07},{"x":1568044620000,"y":0.25},{"x":1568044680000,"y":0.1},{"x":1568044740000,"y":0.1},{"x":1568044800000,"y":0.24},{"x":1568044860000,"y":0.1},{"x":1568044920000,"y":0.08},{"x":1568044980000,"y":0.23},{"x":1568045040000,"y":0.09},{"x":1568045100000,"y":0.12},{"x":1568045160000,"y":0.09},{"x":1568045220000,"y":0.09},{"x":1568045280000,"y":0.25},{"x":1568045340000,"y":0.3},{"x":1568045400000,"y":0.19},{"x":1568045460000,"y":0.14},{"x":1568045520000,"y":0.08},{"x":1568045580000,"y":0.3},{"x":1568045640000,"y":0.12},{"x":1568045700000,"y":0.23},{"x":1568045760000,"y":0.11},{"x":1568045820000,"y":0.14},{"x":1568045880000,"y":0.26},{"x":1568045940000,"y":0.12},{"x":1568046000000,"y":0.25},{"x":1568046060000,"y":0.15},{"x":1568046120000,"y":0.12},{"x":1568046180000,"y":0.24},{"x":1568046240000,"y":0.1},{"x":1568046300000,"y":0.18},{"x":1568046360000,"y":0.14},{"x":1568046420000,"y":0.11},{"x":1568046480000,"y":0.25},{"x":1568046540000,"y":0.13},{"x":1568046600000,"y":0.31},{"x":1568046660000,"y":0.1},{"x":1568046720000,"y":0.13},{"x":1568046780000,"y":0.3},{"x":1568046840000,"y":0.59},{"x":1568046900000,"y":0.14},{"x":1568046960000,"y":0.2},{"x":1568047020000,"y":0.13},{"x":1568047080000,"y":0.14},{"x":1568047140000,"y":0.32},{"x":1568047200000,"y":0.15},{"x":1568047260000,"y":0.1},{"x":1568047320000,"y":0.14},{"x":1568047380000,"y":0.1},{"x":1568047440000,"y":0.26},{"x":1568047500000,"y":0.14},{"x":1568047560000,"y":0.07},{"x":1568047620000,"y":0.12},{"x":1568047680000,"y":0.09},{"x":1568047740000,"y":0.22},{"x":1568047800000,"y":0.17},{"x":1568047860000,"y":0.52},{"x":1568047920000,"y":0.21},{"x":1568047980000,"y":0.13},{"x":1568048040000,"y":0.26},{"x":1568048100000,"y":0.25},{"x":1568048160000,"y":0.15},{"x":1568048220000,"y":0.1},{"x":1568048280000,"y":0.15},{"x":1568048340000,"y":0.27},{"x":1568048400000,"y":0.34},{"x":1568048460000,"y":0.11},{"x":1568048520000,"y":0.12},{"x":1568048580000,"y":0.1},{"x":1568048640000,"y":0.24},{"x":1568048700000,"y":0.21},{"x":1568048760000,"y":0.1},{"x":1568048820000,"y":0.14},{"x":1568048880000,"y":0.14},{"x":1568048940000,"y":0.28},{"x":1568049000000,"y":0.15},{"x":1568049060000,"y":0.11},{"x":1568049120000,"y":0.13},{"x":1568049180000,"y":0.09},{"x":1568049240000,"y":0.26},{"x":1568049300000,"y":0.19},{"x":1568049360000,"y":0.12},{"x":1568049420000,"y":0.11},{"x":1568049480000,"y":0.09},{"x":1568049540000,"y":0.64},{"x":1568049600000,"y":0.34},{"x":1568049660000,"y":0.11},{"x":1568049720000,"y":0.1},{"x":1568049780000,"y":0.09},{"x":1568049840000,"y":0.14},{"x":1568049900000,"y":0.37},{"x":1568049960000,"y":0.15},{"x":1568050020000,"y":0.12},{"x":1568050080000,"y":0.16},{"x":1568050140000,"y":0.15},{"x":1568050200000,"y":0.35},{"x":1568050260000,"y":0.12},{"x":1568050320000,"y":0.12},{"x":1568050380000,"y":0.19},{"x":1568050440000,"y":0.12},{"x":1568050500000,"y":0.38},{"x":1568050560000,"y":0.16},{"x":1568050620000,"y":0.17},{"x":1568050680000,"y":0.15},{"x":1568050740000,"y":9.39},{"x":1568050800000,"y":13.36},{"x":1568050860000,"y":0.24},{"x":1568050920000,"y":0.12},{"x":1568050980000,"y":0.17},{"x":1568051040000,"y":0.17},{"x":1568051100000,"y":0.35},{"x":1568051160000,"y":0.16},{"x":1568051220000,"y":0.12},{"x":1568051280000,"y":0.14},{"x":1568051340000,"y":0.15},{"x":1568051400000,"y":0.5},{"x":1568051460000,"y":0.15},{"x":1568051520000,"y":1.33},{"x":1568051580000,"y":0.13},{"x":1568051640000,"y":0.16},{"x":1568051700000,"y":0.4},{"x":1568051760000,"y":0.16},{"x":1568051820000,"y":0.21},{"x":1568051880000,"y":0.14},{"x":1568051940000,"y":0.19},{"x":1568052000000,"y":0.33},{"x":1568052060000,"y":0.36},{"x":1568052120000,"y":0.21},{"x":1568052180000,"y":0.18},{"x":1568052240000,"y":0.2},{"x":1568052300000,"y":0.24},{"x":1568052360000,"y":0.32},{"x":1568052420000,"y":0.21},{"x":1568052480000,"y":0.16},{"x":1568052540000,"y":0.28},{"x":1568052600000,"y":0.31},{"x":1568052660000,"y":0.32},{"x":1568052720000,"y":0.22},{"x":1568052780000,"y":0.21},{"x":1568052840000,"y":0.22},{"x":1568052900000,"y":0.25},{"x":1568052960000,"y":0.3},{"x":1568053020000,"y":0.22},{"x":1568053080000,"y":0.19},{"x":1568053140000,"y":0.21},{"x":1568053200000,"y":0.23},{"x":1568053260000,"y":0.37},{"x":1568053320000,"y":0.18},{"x":1568053380000,"y":0.22},{"x":1568053440000,"y":0.2},{"x":1568053500000,"y":0.42},{"x":1568053560000,"y":0.31},{"x":1568053620000,"y":0.2},{"x":1568053680000,"y":0.19},{"x":1568053740000,"y":0.45},{"x":1568053800000,"y":0.97},{"x":1568053860000,"y":0.71},{"x":1568053920000,"y":0.67},{"x":1568053980000,"y":0.17},{"x":1568054040000,"y":0.2},{"x":1568054100000,"y":0.29},{"x":1568054160000,"y":0.17},{"x":1568054220000,"y":0.35},{"x":1568054280000,"y":0.23},{"x":1568054340000,"y":0.35},{"x":1568054400000,"y":0.2},{"x":1568054460000,"y":0.22},{"x":1568054520000,"y":0.31},{"x":1568054580000,"y":0.2},{"x":1568054640000,"y":0.25},{"x":1568054700000,"y":0.29},{"x":1568054760000,"y":0.21},{"x":1568054820000,"y":0.35},{"x":1568054880000,"y":0.21},{"x":1568054940000,"y":0.21},{"x":1568055000000,"y":0.29},{"x":1568055060000,"y":0.19},{"x":1568055120000,"y":0.34},{"x":1568055180000,"y":0.19},{"x":1568055240000,"y":0.17},{"x":1568055300000,"y":0.26},{"x":1568055360000,"y":18.78},{"x":1568055420000,"y":0.47},{"x":1568055480000,"y":0.17},{"x":1568055540000,"y":0.19},{"x":1568055600000,"y":0.31},{"x":1568055660000,"y":0.2},{"x":1568055720000,"y":0.32},{"x":1568055780000,"y":0.22},{"x":1568055840000,"y":0.26},{"x":1568055900000,"y":32.22},{"x":1568055960000,"y":27.74},{"x":1568056020000,"y":0.39},{"x":1568056080000,"y":0.46},{"x":1568056140000,"y":0.37},{"x":1568056200000,"y":0.36},{"x":1568056260000,"y":0.28},{"x":1568056320000,"y":0.17},{"x":1568056380000,"y":0.33},{"x":1568056440000,"y":0.18},{"x":1568056500000,"y":0.29},{"x":1568056560000,"y":0.24},{"x":1568056620000,"y":0.21},{"x":1568056680000,"y":0.35},{"x":1568056740000,"y":0.19},{"x":1568056800000,"y":0.3},{"x":1568056860000,"y":0.31},{"x":1568056920000,"y":0.21},{"x":1568056980000,"y":3.62},{"x":1568057040000,"y":0.24},{"x":1568057100000,"y":0.35},{"x":1568057160000,"y":0.2},{"x":1568057220000,"y":0.2},{"x":1568057280000,"y":0.32},{"x":1568057340000,"y":0.2},{"x":1568057400000,"y":0.31},{"x":1568057460000,"y":0.22},{"x":1568057520000,"y":0.22},{"x":1568057580000,"y":0.34},{"x":1568057640000,"y":0.2},{"x":1568057700000,"y":0.37},{"x":1568057760000,"y":1.84},{"x":1568057820000,"y":0.2},{"x":1568057880000,"y":0.37},{"x":1568057940000,"y":0.31},{"x":1568058000000,"y":0.34},{"x":1568058060000,"y":0.24},{"x":1568058120000,"y":0.17},{"x":1568058180000,"y":0.35},{"x":1568058240000,"y":0.18},{"x":1568058300000,"y":0.35},{"x":1568058360000,"y":0.2},{"x":1568058420000,"y":0.22},{"x":1568058480000,"y":0.18},{"x":1568058540000,"y":0.37},{"x":1568058600000,"y":0.3},{"x":1568058660000,"y":0.19},{"x":1568058720000,"y":0.22},{"x":1568058780000,"y":0.2},{"x":1568058840000,"y":0.33},{"x":1568058900000,"y":0.24},{"x":1568058960000,"y":0.21},{"x":1568059020000,"y":0.19},{"x":1568059080000,"y":0.26},{"x":1568059140000,"y":0.34},{"x":1568059200000,"y":0.36},{"x":1568059260000,"y":0.17},{"x":1568059320000,"y":0.2},{"x":1568059380000,"y":0.23},{"x":1568059440000,"y":0.32},{"x":1568059500000,"y":0.29},{"x":1568059560000,"y":0.19},{"x":1568059620000,"y":0.23},{"x":1568059680000,"y":0.19},{"x":1568059740000,"y":0.54},{"x":1568059800000,"y":0.29},{"x":1568059860000,"y":0.23},{"x":1568059920000,"y":0.24},{"x":1568059980000,"y":0.22},{"x":1568060040000,"y":0.42},{"x":1568060100000,"y":0.4},{"x":1568060160000,"y":0.21},{"x":1568060220000,"y":0.24},{"x":1568060280000,"y":0.21},{"x":1568060340000,"y":0.39},{"x":1568060400000,"y":0.23},{"x":1568060460000,"y":0.18},{"x":1568060520000,"y":0.2},{"x":1568060580000,"y":0.21},{"x":1568060640000,"y":0.37},{"x":1568060700000,"y":0.37},{"x":1568060760000,"y":0.25},{"x":1568060820000,"y":0.24},{"x":1568060880000,"y":0.21},{"x":1568060940000,"y":0.19},{"x":1568061000000,"y":0.58},{"x":1568061060000,"y":0.25},{"x":1568061120000,"y":0.21},{"x":1568061180000,"y":0.18},{"x":1568061240000,"y":0.2},{"x":1568061300000,"y":0.43},{"x":1568061360000,"y":0.28},{"x":1568061420000,"y":0.21},{"x":1568061480000,"y":0.18},{"x":1568061540000,"y":0.41},{"x":1568061600000,"y":0.42},{"x":1568061660000,"y":0.18},{"x":1568061720000,"y":0.18},{"x":1568061780000,"y":0.19},{"x":1568061840000,"y":0.2},{"x":1568061900000,"y":0.38},{"x":1568061960000,"y":0.13},{"x":1568062020000,"y":0.14},{"x":1568062080000,"y":0.13},{"x":1568062140000,"y":0.09},{"x":1568062200000,"y":0.38},{"x":1568062260000,"y":0.09},{"x":1568062320000,"y":0.08},{"x":1568062380000,"y":0.08},{"x":1568062440000,"y":0.53},{"x":1568062500000,"y":0.37},{"x":1568062560000,"y":0.11},{"x":1568062620000,"y":0.12},{"x":1568062680000,"y":0.11},{"x":1568062740000,"y":0.1},{"x":1568062800000,"y":0.33},{"x":1568062860000,"y":0.19},{"x":1568062920000,"y":0.1},{"x":1568062980000,"y":0.11},{"x":1568063040000,"y":0.12},{"x":1568063100000,"y":0.3},{"x":1568063160000,"y":0.13},{"x":1568063220000,"y":0.15},{"x":1568063280000,"y":0.11},{"x":1568063340000,"y":0.36},{"x":1568063400000,"y":0.27},{"x":1568063460000,"y":0.3},{"x":1568063520000,"y":0.11},{"x":1568063580000,"y":0.1},{"x":1568063640000,"y":0.09},{"x":1568063700000,"y":0.22},{"x":1568063760000,"y":0.25},{"x":1568063820000,"y":0.16},{"x":1568063880000,"y":0.08},{"x":1568063940000,"y":0.11},{"x":1568064000000,"y":0.19},{"x":1568064060000,"y":0.31},{"x":1568064120000,"y":0.08},{"x":1568064180000,"y":0.11},{"x":1568064240000,"y":0.1},{"x":1568064300000,"y":0.24},{"x":1568064360000,"y":0.25},{"x":1568064420000,"y":0.09},{"x":1568064480000,"y":0.27},{"x":1568064540000,"y":0.15},{"x":1568064600000,"y":0.21},{"x":1568064660000,"y":0.27},{"x":1568064720000,"y":0.1},{"x":1568064780000,"y":0.07},{"x":1568064840000,"y":0.19},{"x":1568064900000,"y":0.14},{"x":1568064960000,"y":0.22},{"x":1568065020000,"y":0.16},{"x":1568065080000,"y":0.09},{"x":1568065140000,"y":0.25},{"x":1568065200000,"y":0.16},{"x":1568065260000,"y":0.2},{"x":1568065320000,"y":0.15},{"x":1568065380000,"y":0.08},{"x":1568065440000,"y":0.1},{"x":1568065500000,"y":0.17},{"x":1568065560000,"y":0.26},{"x":1568065620000,"y":0.12},{"x":1568065680000,"y":0.07},{"x":1568065740000,"y":0.08},{"x":1568065800000,"y":0.21},{"x":1568065860000,"y":0.14},{"x":1568065920000,"y":0.3},{"x":1568065980000,"y":0.12},{"x":1568066040000,"y":0.17},{"x":1568066100000,"y":0.24},{"x":1568066160000,"y":0.1},{"x":1568066220000,"y":0.27},{"x":1568066280000,"y":0.1},{"x":1568066340000,"y":0.1},{"x":1568066400000,"y":0.31},{"x":1568066460000,"y":0.1},{"x":1568066520000,"y":0.22},{"x":1568066580000,"y":0.1},{"x":1568066640000,"y":0.12},{"x":1568066700000,"y":0.18},{"x":1568066760000,"y":0.12},{"x":1568066820000,"y":0.33},{"x":1568066880000,"y":0.08},{"x":1568066940000,"y":0.2},{"x":1568067000000,"y":0.17},{"x":1568067060000,"y":0.08},{"x":1568067120000,"y":0.28},{"x":1568067180000,"y":0.12},{"x":1568067240000,"y":0.11},{"x":1568067300000,"y":0.19},{"x":1568067360000,"y":0.17},{"x":1568067420000,"y":18.71},{"x":1568067480000,"y":0.15},{"x":1568067540000,"y":0.38},{"x":1568067600000,"y":0.19},{"x":1568067660000,"y":0.12},{"x":1568067720000,"y":0.18},{"x":1568067780000,"y":0.11},{"x":1568067840000,"y":0.08},{"x":1568067900000,"y":0.26},{"x":1568067960000,"y":0.08},{"x":1568068020000,"y":0.22},{"x":1568068080000,"y":0.1},{"x":1568068140000,"y":0.12},{"x":1568068200000,"y":0.19},{"x":1568068260000,"y":0.1},{"x":1568068320000,"y":0.07},{"x":1568068380000,"y":0.23},{"x":1568068440000,"y":0.08},{"x":1568068500000,"y":0.2},{"x":1568068560000,"y":0.11},{"x":1568068620000,"y":0.1},{"x":1568068680000,"y":0.29},{"x":1568068740000,"y":0.26},{"x":1568068800000,"y":0.23},{"x":1568068860000,"y":0.13},{"x":1568068920000,"y":0.06},{"x":1568068980000,"y":0.26},{"x":1568069040000,"y":0.06},{"x":1568069100000,"y":0.12},{"x":1568069160000,"y":0.06},{"x":1568069220000,"y":0.1},{"x":1568069280000,"y":0.25},{"x":1568069340000,"y":0.07},{"x":1568069400000,"y":0.16},{"x":1568069460000,"y":0.11},{"x":1568069520000,"y":18.26},{"x":1568069580000,"y":19.3},{"x":1568069640000,"y":19.08},{"x":1568069700000,"y":0.77},{"x":1568069760000,"y":0.1},{"x":1568069820000,"y":19.31},{"x":1568069880000,"y":0.43},{"x":1568069940000,"y":18.94},{"x":1568070000000,"y":0.43},{"x":1568070060000,"y":18.66},{"x":1568070120000,"y":0.53},{"x":1568070180000,"y":0.12},{"x":1568070240000,"y":0.3},{"x":1568070300000,"y":0.23},{"x":1568070360000,"y":0.1},{"x":1568070420000,"y":0.12},{"x":1568070480000,"y":0.14},{"x":1568070540000,"y":18.97},{"x":1568070600000,"y":0.46},{"x":1568070660000,"y":0.12},{"x":1568070720000,"y":0.12},{"x":1568070780000,"y":0.13},{"x":1568070840000,"y":0.24},{"x":1568070900000,"y":0.2},{"x":1568070960000,"y":0.12},{"x":1568071020000,"y":0.13},{"x":1568071080000,"y":0.1},{"x":1568071140000,"y":0.24},{"x":1568071200000,"y":0.16},{"x":1568071260000,"y":0.1},{"x":1568071320000,"y":0.11},{"x":1568071380000,"y":0.13},{"x":1568071440000,"y":0.35},{"x":1568071500000,"y":0.18},{"x":1568071560000,"y":0.15},{"x":1568071620000,"y":0.15},{"x":1568071680000,"y":0.08},{"x":1568071740000,"y":0.23},{"x":1568071800000,"y":0.17},{"x":1568071860000,"y":0.11},{"x":1568071920000,"y":0.16},{"x":1568071980000,"y":0.11},{"x":1568072040000,"y":0.22},{"x":1568072100000,"y":0.17},{"x":1568072160000,"y":0.1},{"x":1568072220000,"y":0.1},{"x":1568072280000,"y":1.86},{"x":1568072340000,"y":0.33},{"x":1568072400000,"y":0.19},{"x":1568072460000,"y":0.1},{"x":1568072520000,"y":0.08},{"x":1568072580000,"y":0.1},{"x":1568072640000,"y":0.12},{"x":1568072700000,"y":0.4},{"x":1568072760000,"y":0.09},{"x":1568072820000,"y":0.07},{"x":1568072880000,"y":0.09},{"x":1568072940000,"y":0.09},{"x":1568073000000,"y":0.38},{"x":1568073060000,"y":0.09},{"x":1568073120000,"y":0.1},{"x":1568073180000,"y":0.1},{"x":1568073240000,"y":0.12},{"x":1568073300000,"y":0.32},{"x":1568073360000,"y":0.11},{"x":1568073420000,"y":0.11},{"x":1568073480000,"y":0.07},{"x":1568073540000,"y":0.08},{"x":1568073600000,"y":0.41},{"x":1568073660000,"y":0.1},{"x":1568073720000,"y":0.09},{"x":1568073780000,"y":0.1},{"x":1568073840000,"y":0.11},{"x":1568073900000,"y":0.28},{"x":1568073960000,"y":0.11},{"x":1568074020000,"y":0.13},{"x":1568074080000,"y":0.12},{"x":1568074140000,"y":0.19},{"x":1568074200000,"y":0.34},{"x":1568074260000,"y":0.11},{"x":1568074320000,"y":0.09},{"x":1568074380000,"y":0.1},{"x":1568074440000,"y":0.12},{"x":1568074500000,"y":0.32},{"x":1568074560000,"y":0.12},{"x":1568074620000,"y":0.14},{"x":1568074680000,"y":0.12},{"x":1568074740000,"y":0.12},{"x":1568074800000,"y":0.4},{"x":1568074860000,"y":0.09},{"x":1568074920000,"y":0.1},{"x":1568074980000,"y":0.12},{"x":1568075040000,"y":0.09},{"x":1568075100000,"y":0.21},{"x":1568075160000,"y":0.22},{"x":1568075220000,"y":0.08},{"x":1568075280000,"y":0.09},{"x":1568075340000,"y":0.08},{"x":1568075400000,"y":0.2},{"x":1568075460000,"y":0.36},{"x":1568075520000,"y":0.07},{"x":1568075580000,"y":0.09},{"x":1568075640000,"y":0.11},{"x":1568075700000,"y":0.15},{"x":1568075760000,"y":0.28},{"x":1568075820000,"y":0.08},{"x":1568075880000,"y":0.09},{"x":1568075940000,"y":0.93},{"x":1568076000000,"y":0.3},{"x":1568076060000,"y":0.23},{"x":1568076120000,"y":0.08},{"x":1568076180000,"y":0.12},{"x":1568076240000,"y":0.11},{"x":1568076300000,"y":0.17},{"x":1568076360000,"y":0.23},{"x":1568076420000,"y":0.11},{"x":1568076480000,"y":0.12},{"x":1568076540000,"y":0.1},{"x":1568076600000,"y":0.19},{"x":1568076660000,"y":0.28},{"x":1568076720000,"y":0.08},{"x":1568076780000,"y":0.08},{"x":1568076840000,"y":0.07},{"x":1568076900000,"y":0.17},{"x":1568076960000,"y":0.82},{"x":1568077020000,"y":0.07},{"x":1568077080000,"y":0.08},{"x":1568077140000,"y":0.11},{"x":1568077200000,"y":0.33},{"x":1568077260000,"y":0.24},{"x":1568077320000,"y":0.11},{"x":1568077380000,"y":0.08},{"x":1568077440000,"y":0.13},{"x":1568077500000,"y":0.12},{"x":1568077560000,"y":0.08},{"x":1568077620000,"y":0.22},{"x":1568077680000,"y":0.07},{"x":1568077740000,"y":0.23},{"x":1568077800000,"y":0.18},{"x":1568077860000,"y":0.12},{"x":1568077920000,"y":0.25},{"x":1568077980000,"y":0.1},{"x":1568078040000,"y":0.08},{"x":1568078100000,"y":0.21},{"x":1568078160000,"y":0.13},{"x":1568078220000,"y":0.27},{"x":1568078280000,"y":0.11},{"x":1568078340000,"y":0.08},{"x":1568078400000,"y":0.25},{"x":1568078460000,"y":0.13},{"x":1568078520000,"y":0.22},{"x":1568078580000,"y":0.06},{"x":1568078640000,"y":0.07},{"x":1568078700000,"y":0.18},{"x":1568078760000,"y":0.07},{"x":1568078820000,"y":4.87},{"x":1568078880000,"y":0.26},{"x":1568078940000,"y":0.11},{"x":1568079000000,"y":0.23},{"x":1568079060000,"y":0.08},{"x":1568079120000,"y":0.22},{"x":1568079180000,"y":0.09},{"x":1568079240000,"y":0.1},{"x":1568079300000,"y":0.17},{"x":1568079360000,"y":0.1},{"x":1568079420000,"y":0.2},{"x":1568079480000,"y":0.08},{"x":1568079540000,"y":0.14},{"x":1568079600000,"y":0.21},{"x":1568079660000,"y":0.09},{"x":1568079720000,"y":0.24},{"x":1568079780000,"y":0.11},{"x":1568079840000,"y":0.08},{"x":1568079900000,"y":0.19},{"x":1568079960000,"y":0.09},{"x":1568080020000,"y":0.1},{"x":1568080080000,"y":0.24},{"x":1568080140000,"y":0.09},{"x":1568080200000,"y":0.16},{"x":1568080260000,"y":0.1},{"x":1568080320000,"y":0.1},{"x":1568080380000,"y":0.22},{"x":1568080440000,"y":0.08},{"x":1568080500000,"y":0.17},{"x":1568080560000,"y":0.12},{"x":1568080620000,"y":0.08},{"x":1568080680000,"y":0.22},{"x":1568080740000,"y":0.07},{"x":1568080800000,"y":0.31},{"x":1568080860000,"y":0.09},{"x":1568080920000,"y":0.09},{"x":1568080980000,"y":0.24},{"x":1568081040000,"y":0.1},{"x":1568081100000,"y":0.15},{"x":1568081160000,"y":0.12},{"x":1568081220000,"y":0.08},{"x":1568081280000,"y":0.23},{"x":1568081340000,"y":0.27},{"x":1568081400000,"y":0.13},{"x":1568081460000,"y":0.07},{"x":1568081520000,"y":0.1},{"x":1568081580000,"y":0.25},{"x":1568081640000,"y":0.07},{"x":1568081700000,"y":0.14},{"x":1568081760000,"y":0.08},{"x":1568081820000,"y":0.12},{"x":1568081880000,"y":0.22},{"x":1568081940000,"y":0.07},{"x":1568082000000,"y":0.18},{"x":1568082060000,"y":0.07},{"x":1568082120000,"y":0.1},{"x":1568082180000,"y":0.09},{"x":1568082240000,"y":0.26},{"x":1568082300000,"y":0.18},{"x":1568082360000,"y":0.08},{"x":1568082420000,"y":0.07},{"x":1568082480000,"y":0.06},{"x":1568082540000,"y":0.26},{"x":1568082600000,"y":0.22},{"x":1568082660000,"y":0.07},{"x":1568082720000,"y":0.06},{"x":1568082780000,"y":0.1},{"x":1568082840000,"y":0.21},{"x":1568082900000,"y":0.19},{"x":1568082960000,"y":0.07},{"x":1568083020000,"y":0.07},{"x":1568083080000,"y":0.07},{"x":1568083140000,"y":0.39},{"x":1568083200000,"y":0.2},{"x":1568083260000,"y":0.09},{"x":1568083320000,"y":0.12},{"x":1568083380000,"y":0.07},{"x":1568083440000,"y":0.23},{"x":1568083500000,"y":0.14},{"x":1568083560000,"y":0.1},{"x":1568083620000,"y":0.08},{"x":1568083680000,"y":0.09},{"x":1568083740000,"y":0.22},{"x":1568083800000,"y":0.12},{"x":1568083860000,"y":0.07},{"x":1568083920000,"y":0.1},{"x":1568083980000,"y":0.09},{"x":1568084040000,"y":0.26},{"x":1568084100000,"y":0.27},{"x":1568084160000,"y":0.13},{"x":1568084220000,"y":0.13},{"x":1568084280000,"y":0.1},{"x":1568084340000,"y":0.22},{"x":1568084400000,"y":0.34},{"x":1568084460000,"y":0.2},{"x":1568084520000,"y":0.07},{"x":1568084580000,"y":0.09},{"x":1568084640000,"y":0.14},{"x":1568084700000,"y":0.41},{"x":1568084760000,"y":0.12},{"x":1568084820000,"y":0.11},{"x":1568084880000,"y":0.13},{"x":1568084940000,"y":0.24},{"x":1568085000000,"y":0.27},{"x":1568085060000,"y":0.06},{"x":1568085120000,"y":0.12},{"x":1568085180000,"y":0.1},{"x":1568085240000,"y":0.12},{"x":1568085300000,"y":0.38},{"x":1568085360000,"y":0.09},{"x":1568085420000,"y":0.15},{"x":1568085480000,"y":0.12},{"x":1568085540000,"y":0.14},{"x":1568085600000,"y":0.43},{"x":1568085660000,"y":0.13},{"x":1568085720000,"y":0.14},{"x":1568085780000,"y":0.15},{"x":1568085840000,"y":0.19},{"x":1568085900000,"y":0.35},{"x":1568085960000,"y":0.17},{"x":1568086020000,"y":0.17},{"x":1568086080000,"y":0.17},{"x":1568086140000,"y":0.18},{"x":1568086200000,"y":0.41},{"x":1568086260000,"y":0.15},{"x":1568086320000,"y":0.16},{"x":1568086380000,"y":0.18},{"x":1568086440000,"y":0.18},{"x":1568086500000,"y":0.39},{"x":1568086560000,"y":0.17},{"x":1568086620000,"y":0.18},{"x":1568086680000,"y":0.16},{"x":1568086740000,"y":0.31},{"x":1568086800000,"y":1.07},{"x":1568086860000,"y":0.17},{"x":1568086920000,"y":0.2},{"x":1568086980000,"y":0.21},{"x":1568087040000,"y":0.15},{"x":1568087100000,"y":0.27},{"x":1568087160000,"y":0.32},{"x":1568087220000,"y":0.23},{"x":1568087280000,"y":0.17},{"x":1568087340000,"y":0.15},{"x":1568087400000,"y":0.28},{"x":1568087460000,"y":0.32},{"x":1568087520000,"y":0.16},{"x":1568087580000,"y":0.19},{"x":1568087640000,"y":0.17},{"x":1568087700000,"y":0.33},{"x":1568087760000,"y":0.3},{"x":1568087820000,"y":0.17},{"x":1568087880000,"y":0.19},{"x":1568087940000,"y":0.17},{"x":1568088000000,"y":0.29},{"x":1568088060000,"y":0.32},{"x":1568088120000,"y":0.16},{"x":1568088180000,"y":0.15},{"x":1568088240000,"y":0.16},{"x":1568088300000,"y":0.31},{"x":1568088360000,"y":0.29},{"x":1568088420000,"y":0.16},{"x":1568088480000,"y":0.17},{"x":1568088540000,"y":0.36},{"x":1568088600000,"y":0.25},{"x":1568088660000,"y":0.34},{"x":1568088720000,"y":0.17},{"x":1568088780000,"y":0.19},{"x":1568088840000,"y":0.17},{"x":1568088900000,"y":0.3},{"x":1568088960000,"y":0.34},{"x":1568089020000,"y":0.17},{"x":1568089080000,"y":0.17},{"x":1568089140000,"y":0.18},{"x":1568089200000,"y":0.3},{"x":1568089260000,"y":0.32},{"x":1568089320000,"y":0.17},{"x":1568089380000,"y":0.16},{"x":1568089440000,"y":0.19},{"x":1568089500000,"y":0.27},{"x":1568089560000,"y":0.15},{"x":1568089620000,"y":0.33},{"x":1568089680000,"y":0.18},{"x":1568089740000,"y":0.15},{"x":1568089800000,"y":0.19},{"x":1568089860000,"y":0.18},{"x":1568089920000,"y":0.34},{"x":1568089980000,"y":0.17},{"x":1568090040000,"y":0.16},{"x":1568090100000,"y":0.25},{"x":1568090160000,"y":0.17},{"x":1568090220000,"y":0.32},{"x":1568090280000,"y":0.17},{"x":1568090340000,"y":0.35},{"x":1568090400000,"y":0.29},{"x":1568090460000,"y":4.96},{"x":1568090520000,"y":0.38},{"x":1568090580000,"y":0.18},{"x":1568090640000,"y":0.19},{"x":1568090700000,"y":0.33},{"x":1568090760000,"y":0.21},{"x":1568090820000,"y":0.4},{"x":1568090880000,"y":0.2},{"x":1568090940000,"y":0.22},{"x":1568091000000,"y":0.24},{"x":1568091060000,"y":0.16},{"x":1568091120000,"y":0.29},{"x":1568091180000,"y":0.21},{"x":1568091240000,"y":0.19},{"x":1568091300000,"y":0.25},{"x":1568091360000,"y":0.19},{"x":1568091420000,"y":1.81},{"x":1568091480000,"y":0.2},{"x":1568091540000,"y":0.17},{"x":1568091600000,"y":0.85},{"x":1568091660000,"y":0.18},{"x":1568091720000,"y":0.33},{"x":1568091780000,"y":0.19},{"x":1568091840000,"y":0.17},{"x":1568091900000,"y":0.25},{"x":1568091960000,"y":0.23},{"x":1568092020000,"y":0.2},{"x":1568092080000,"y":0.37},{"x":1568092140000,"y":0.33},{"x":1568092200000,"y":0.27},{"x":1568092260000,"y":0.16},{"x":1568092320000,"y":0.19},{"x":1568092380000,"y":0.3},{"x":1568092440000,"y":0.18},{"x":1568092500000,"y":0.24},{"x":1568092560000,"y":0.18},{"x":1568092620000,"y":0.17},{"x":1568092680000,"y":0.34},{"x":1568092740000,"y":0.2},{"x":1568092800000,"y":0.29},{"x":1568092860000,"y":0.19},{"x":1568092920000,"y":0.22},{"x":1568092980000,"y":0.37},{"x":1568093040000,"y":0.19},{"x":1568093100000,"y":0.31},{"x":1568093160000,"y":0.19},{"x":1568093220000,"y":0.24},{"x":1568093280000,"y":0.31},{"x":1568093340000,"y":0.19},{"x":1568093400000,"y":0.27},{"x":1568093460000,"y":0.19},{"x":1568093520000,"y":0.2},{"x":1568093580000,"y":0.38},{"x":1568093640000,"y":0.21},{"x":1568093700000,"y":0.27},{"x":1568093760000,"y":0.18},{"x":1568093820000,"y":0.15},{"x":1568093880000,"y":0.29},{"x":1568093940000,"y":0.37},{"x":1568094000000,"y":0.35},{"x":1568094060000,"y":0.23},{"x":1568094120000,"y":0.2},{"x":1568094180000,"y":0.17},{"x":1568094240000,"y":0.32},{"x":1568094300000,"y":0.25},{"x":1568094360000,"y":0.17},{"x":1568094420000,"y":0.18},{"x":1568094480000,"y":0.21},{"x":1568094540000,"y":0.32},{"x":1568094600000,"y":0.29},{"x":1568094660000,"y":0.18},{"x":1568094720000,"y":0.21},{"x":1568094780000,"y":0.17},{"x":1568094840000,"y":0.3},{"x":1568094900000,"y":0.25},{"x":1568094960000,"y":0.21},{"x":1568095020000,"y":0.25},{"x":1568095080000,"y":0.15},{"x":1568095140000,"y":0.24},{"x":1568095200000,"y":0.27},{"x":1568095260000,"y":0.18},{"x":1568095320000,"y":0.12},{"x":1568095380000,"y":0.13},{"x":1568095440000,"y":0.32},{"x":1568095500000,"y":0.22},{"x":1568095560000,"y":0.11},{"x":1568095620000,"y":0.12},{"x":1568095680000,"y":0.11},{"x":1568095740000,"y":0.4},{"x":1568095800000,"y":0.17},{"x":1568095860000,"y":0.09},{"x":1568095920000,"y":0.11},{"x":1568095980000,"y":0.18},{"x":1568096040000,"y":0.12},{"x":1568096100000,"y":0.5},{"x":1568096160000,"y":0.05},{"x":1568096220000,"y":0.1},{"x":1568096280000,"y":0.06},{"x":1568096340000,"y":0.11},{"x":1568096400000,"y":0.33},{"x":1568096460000,"y":0.07},{"x":1568096520000,"y":0.07},{"x":1568096580000,"y":0.1},{"x":1568096640000,"y":0.1},{"x":1568096700000,"y":0.38},{"x":1568096760000,"y":0.1},{"x":1568096820000,"y":0.09},{"x":1568096880000,"y":0.11},{"x":1568096940000,"y":0.11},{"x":1568097000000,"y":0.43},{"x":1568097060000,"y":0.1},{"x":1568097120000,"y":0.09},{"x":1568097180000,"y":0.12},{"x":1568097240000,"y":0.11},{"x":1568097300000,"y":0.27},{"x":1568097360000,"y":0.1},{"x":1568097420000,"y":0.08},{"x":1568097480000,"y":0.09},{"x":1568097540000,"y":0.32},{"x":1568097600000,"y":0.37},{"x":1568097660000,"y":0.09},{"x":1568097720000,"y":0.07},{"x":1568097780000,"y":0.09},{"x":1568097840000,"y":0.1},{"x":1568097900000,"y":0.32},{"x":1568097960000,"y":0.12},{"x":1568098020000,"y":0.13},{"x":1568098080000,"y":0.1},{"x":1568098140000,"y":0.07},{"x":1568098200000,"y":0.3},{"x":1568098260000,"y":0.11},{"x":1568098320000,"y":0.08},{"x":1568098380000,"y":0.06},{"x":1568098440000,"y":0.09},{"x":1568098500000,"y":0.18},{"x":1568098560000,"y":0.29},{"x":1568098620000,"y":0.08},{"x":1568098680000,"y":1.84},{"x":1568098740000,"y":0.1},{"x":1568098800000,"y":0.15},{"x":1568098860000,"y":0.3},{"x":1568098920000,"y":0.07},{"x":1568098980000,"y":0.08},{"x":1568099040000,"y":0.09},{"x":1568099100000,"y":0.18},{"x":1568099160000,"y":0.24},{"x":1568099220000,"y":0.08},{"x":1568099280000,"y":0.12},{"x":1568099340000,"y":0.24},{"x":1568099400000,"y":0.2},{"x":1568099460000,"y":0.27},{"x":1568099520000,"y":0.12},{"x":1568099580000,"y":0.1},{"x":1568099640000,"y":0.1},{"x":1568099700000,"y":0.19},{"x":1568099760000,"y":0.22},{"x":1568099820000,"y":0.1},{"x":1568099880000,"y":0.06},{"x":1568099940000,"y":0.09},{"x":1568100000000,"y":0.33},{"x":1568100060000,"y":0.26},{"x":1568100120000,"y":0.1},{"x":1568100180000,"y":0.1},{"x":1568100240000,"y":0.17},{"x":1568100300000,"y":0.24},{"x":1568100360000,"y":0.25},{"x":1568100420000,"y":0.07},{"x":1568100480000,"y":0.14},{"x":1568100540000,"y":0.11},{"x":1568100600000,"y":0.18},{"x":1568100660000,"y":3.18},{"x":1568100720000,"y":2.14},{"x":1568100780000,"y":0.06},{"x":1568100840000,"y":0.1},{"x":1568100900000,"y":0.16},{"x":1568100960000,"y":0.15},{"x":1568101020000,"y":0.26},{"x":1568101080000,"y":0.08},{"x":1568101140000,"y":5.72},{"x":1568101200000,"y":0.17},{"x":1568101260000,"y":0.11},{"x":1568101320000,"y":0.29},{"x":1568101380000,"y":0.8},{"x":1568101440000,"y":0.13},{"x":1568101500000,"y":0.23},{"x":1568101560000,"y":0.09},{"x":1568101620000,"y":0.35},{"x":1568101680000,"y":0.08},{"x":1568101740000,"y":0.11},{"x":1568101800000,"y":0.22},{"x":1568101860000,"y":0.12},{"x":1568101920000,"y":0.25},{"x":1568101980000,"y":0.15},{"x":1568102040000,"y":0.12},{"x":1568102100000,"y":0.25},{"x":1568102160000,"y":0.08},{"x":1568102220000,"y":0.28},{"x":1568102280000,"y":0.74},{"x":1568102340000,"y":0.1},{"x":1568102400000,"y":0.23},{"x":1568102460000,"y":0.09},{"x":1568102520000,"y":0.25},{"x":1568102580000,"y":0.11},{"x":1568102640000,"y":0.12},{"x":1568102700000,"y":0.15},{"x":1568102760000,"y":0.09},{"x":1568102820000,"y":0.28},{"x":1568102880000,"y":0.09},{"x":1568102940000,"y":0.33},{"x":1568103000000,"y":0.18},{"x":1568103060000,"y":0.07},{"x":1568103120000,"y":0.23},{"x":1568103180000,"y":0.1},{"x":1568103240000,"y":0.13},{"x":1568103300000,"y":0.25},{"x":1568103360000,"y":0.11},{"x":1568103420000,"y":0.13},{"x":1568103480000,"y":0.35},{"x":1568103540000,"y":0.08},{"x":1568103600000,"y":0.22},{"x":1568103660000,"y":0.08},{"x":1568103720000,"y":0.07},{"x":1568103780000,"y":0.25},{"x":1568103840000,"y":0.07},{"x":1568103900000,"y":0.15},{"x":1568103960000,"y":0.11},{"x":1568104020000,"y":0.1},{"x":1568104080000,"y":0.24},{"x":1568104140000,"y":0.07},{"x":1568104200000,"y":0.29},{"x":1568104260000,"y":0.12},{"x":1568104320000,"y":0.09},{"x":1568104380000,"y":0.26},{"x":1568104440000,"y":0.17},{"x":1568104500000,"y":0.24},{"x":1568104560000,"y":0.09},{"x":1568104620000,"y":0.1},{"x":1568104680000,"y":0.28},{"x":1568104740000,"y":0.22},{"x":1568104800000,"y":0.19},{"x":1568104860000,"y":0.12},{"x":1568104920000,"y":0.08},{"x":1568104980000,"y":0.28},{"x":1568105040000,"y":0.09},{"x":1568105100000,"y":0.13},{"x":1568105160000,"y":0.08},{"x":1568105220000,"y":0.13},{"x":1568105280000,"y":0.23},{"x":1568105340000,"y":0.07},{"x":1568105400000,"y":0.17},{"x":1568105460000,"y":0.11},{"x":1568105520000,"y":0.1},{"x":1568105580000,"y":0.23},{"x":1568105640000,"y":0.09},{"x":1568105700000,"y":0.17},{"x":1568105760000,"y":0.09},{"x":1568105820000,"y":0.09},{"x":1568105880000,"y":0.09},{"x":1568105940000,"y":0.28},{"x":1568106000000,"y":0.3},{"x":1568106060000,"y":0.1},{"x":1568106120000,"y":0.09},{"x":1568106180000,"y":0.09},{"x":1568106240000,"y":0.21},{"x":1568106300000,"y":0.21},{"x":1568106360000,"y":0.12},{"x":1568106420000,"y":0.11},{"x":1568106480000,"y":0.1},{"x":1568106540000,"y":0.39},{"x":1568106600000,"y":0.19},{"x":1568106660000,"y":0.07},{"x":1568106720000,"y":0.07},{"x":1568106780000,"y":0.1},{"x":1568106840000,"y":0.27},{"x":1568106900000,"y":0.17},{"x":1568106960000,"y":0.1},{"x":1568107020000,"y":0.1},{"x":1568107080000,"y":0.08},{"x":1568107140000,"y":0.24},{"x":1568107200000,"y":0.23},{"x":1568107260000,"y":0.11},{"x":1568107320000,"y":0.12},{"x":1568107380000,"y":0.11},{"x":1568107440000,"y":0.22},{"x":1568107500000,"y":0.19},{"x":1568107560000,"y":0.07},{"x":1568107620000,"y":0.12},{"x":1568107680000,"y":0.13},{"x":1568107740000,"y":0.13},{"x":1568107800000,"y":0.31},{"x":1568107860000,"y":0.08},{"x":1568107920000,"y":0.13},{"x":1568107980000,"y":0.1},{"x":1568108040000,"y":0.1},{"x":1568108100000,"y":0.4},{"x":1568108160000,"y":0.12},{"x":1568108220000,"y":0.11},{"x":1568108280000,"y":0.12},{"x":1568108340000,"y":0.32},{"x":1568108400000,"y":0.45},{"x":1568108460000,"y":0.1},{"x":1568108520000,"y":0.09},{"x":1568108580000,"y":1.06},{"x":1568108640000,"y":0.11},{"x":1568108700000,"y":0.33},{"x":1568108760000,"y":0.13},{"x":1568108820000,"y":0.09},{"x":1568108880000,"y":0.08},{"x":1568108940000,"y":0.1},{"x":1568109000000,"y":0.33},{"x":1568109060000,"y":0.11},{"x":1568109120000,"y":0.07},{"x":1568109180000,"y":0.07},{"x":1568109240000,"y":0.08},{"x":1568109300000,"y":0.25},{"x":1568109360000,"y":0.07},{"x":1568109420000,"y":0.09},{"x":1568109480000,"y":0.09},{"x":1568109540000,"y":0.1},{"x":1568109600000,"y":1.75},{"x":1568109660000,"y":0.13},{"x":1568109720000,"y":0.12},{"x":1568109780000,"y":0.09},{"x":1568109840000,"y":0.09},{"x":1568109900000,"y":0.34},{"x":1568109960000,"y":0.09},{"x":1568110020000,"y":0.1},{"x":1568110080000,"y":0.1},{"x":1568110140000,"y":0.25},{"x":1568110200000,"y":0.2},{"x":1568110260000,"y":0.24},{"x":1568110320000,"y":0.07},{"x":1568110380000,"y":0.07},{"x":1568110440000,"y":0.07},{"x":1568110500000,"y":0.19},{"x":1568110560000,"y":0.23},{"x":1568110620000,"y":0.14},{"x":1568110680000,"y":0.12},{"x":1568110740000,"y":0.1},{"x":1568110800000,"y":0.22},{"x":1568110860000,"y":0.25},{"x":1568110920000,"y":0.11},{"x":1568110980000,"y":0.12},{"x":1568111040000,"y":0.13},{"x":1568111100000,"y":0.28},{"x":1568111160000,"y":0.25},{"x":1568111220000,"y":0.11},{"x":1568111280000,"y":0.17},{"x":1568111340000,"y":0.1},{"x":1568111400000,"y":0.2},{"x":1568111460000,"y":0.37},{"x":1568111520000,"y":0.09},{"x":1568111580000,"y":0.1},{"x":1568111640000,"y":0.11},{"x":1568111700000,"y":0.18},{"x":1568111760000,"y":0.23},{"x":1568111820000,"y":0.1},{"x":1568111880000,"y":0.08},{"x":1568111940000,"y":0.32},{"x":1568112000000,"y":0.27},{"x":1568112060000,"y":0.27},{"x":1568112120000,"y":0.12},{"x":1568112180000,"y":0.09},{"x":1568112240000,"y":0.12},{"x":1568112300000,"y":0.25},{"x":1568112360000,"y":0.22},{"x":1568112420000,"y":0.13},{"x":1568112480000,"y":0.12},{"x":1568112540000,"y":0.14},{"x":1568112600000,"y":0.24},{"x":1568112660000,"y":0.14},{"x":1568112720000,"y":0.35},{"x":1568112780000,"y":0.1},{"x":1568112840000,"y":0.1},{"x":1568112900000,"y":0.24},{"x":1568112960000,"y":0.17},{"x":1568113020000,"y":0.23},{"x":1568113080000,"y":0.12},{"x":1568113140000,"y":0.06},{"x":1568113200000,"y":11.34},{"x":1568113260000,"y":0.11},{"x":1568113320000,"y":0.23},{"x":1568113380000,"y":0.12},{"x":1568113440000,"y":0.14},{"x":1568113500000,"y":0.25},{"x":1568113560000,"y":0.08},{"x":1568113620000,"y":0.22},{"x":1568113680000,"y":0.07},{"x":1568113740000,"y":0.28},{"x":1568113800000,"y":0.19},{"x":1568113860000,"y":0.06},{"x":1568113920000,"y":0.23},{"x":1568113980000,"y":0.07},{"x":1568114040000,"y":0.12},{"x":1568114100000,"y":0.22},{"x":1568114160000,"y":0.12},{"x":1568114220000,"y":0.29},{"x":1568114280000,"y":0.13},{"x":1568114340000,"y":0.1},{"x":1568114400000,"y":0.21},{"x":1568114460000,"y":0.15},{"x":1568114520000,"y":0.24},{"x":1568114580000,"y":0.12},{"x":1568114640000,"y":0.07},{"x":1568114700000,"y":1.28},{"x":1568114760000,"y":0.1},{"x":1568114820000,"y":0.23},{"x":1568114880000,"y":0.06},{"x":1568114940000,"y":0.13},{"x":1568115000000,"y":0.22},{"x":1568115060000,"y":0.12},{"x":1568115120000,"y":0.1},{"x":1568115180000,"y":0.28},{"x":1568115240000,"y":0.07},{"x":1568115300000,"y":0.28},{"x":1568115360000,"y":0.12},{"x":1568115420000,"y":0.1},{"x":1568115480000,"y":0.23},{"x":1568115540000,"y":0.22},{"x":1568115600000,"y":0.26},{"x":1568115660000,"y":0.12},{"x":1568115720000,"y":0.09},{"x":1568115780000,"y":0.28},{"x":1568115840000,"y":0.08},{"x":1568115900000,"y":0.24},{"x":1568115960000,"y":0.11},{"x":1568116020000,"y":0.15},{"x":1568116080000,"y":0.24},{"x":1568116140000,"y":0.1},{"x":1568116200000,"y":0.17},{"x":1568116260000,"y":0.07},{"x":1568116320000,"y":0.1},{"x":1568116380000,"y":0.26},{"x":1568116440000,"y":0.15},{"x":1568116500000,"y":0.23},{"x":1568116560000,"y":0.08},{"x":1568116620000,"y":0.1},{"x":1568116680000,"y":0.26},{"x":1568116740000,"y":0.11},{"x":1568116800000,"y":0.24},{"x":1568116860000,"y":0.11},{"x":1568116920000,"y":1.02},{"x":1568116980000,"y":0.32},{"x":1568117040000,"y":0.12},{"x":1568117100000,"y":0.28},{"x":1568117160000,"y":0.1},{"x":1568117220000,"y":0.09},{"x":1568117280000,"y":0.23},{"x":1568117340000,"y":0.25},{"x":1568117400000,"y":0.24},{"x":1568117460000,"y":0.18},{"x":1568117520000,"y":0.13},{"x":1568117580000,"y":0.15},{"x":1568117640000,"y":0.4},{"x":1568117700000,"y":0.24},{"x":1568117760000,"y":0.2},{"x":1568117820000,"y":0.16},{"x":1568117880000,"y":0.14},{"x":1568117940000,"y":0.3},{"x":1568118000000,"y":0.24},{"x":1568118060000,"y":0.12},{"x":1568118120000,"y":0.15},{"x":1568118180000,"y":0.22},{"x":1568118240000,"y":0.29},{"x":1568118300000,"y":0.21},{"x":1568118360000,"y":0.13},{"x":1568118420000,"y":0.1},{"x":1568118480000,"y":0.15},{"x":1568118540000,"y":0.23},{"x":1568118600000,"y":0.27},{"x":1568118660000,"y":0.17},{"x":1568118720000,"y":0.17},{"x":1568118780000,"y":0.19},{"x":1568118840000,"y":0.37},{"x":1568118900000,"y":0.26},{"x":1568118960000,"y":0.16},{"x":1568119020000,"y":0.22},{"x":1568119080000,"y":0.17},{"x":1568119140000,"y":0.52},{"x":1568119200000,"y":0.26},{"x":1568119260000,"y":0.17},{"x":1568119320000,"y":0.15},{"x":1568119380000,"y":0.17},{"x":1568119440000,"y":0.31},{"x":1568119500000,"y":0.3},{"x":1568119560000,"y":0.17},{"x":1568119620000,"y":0.17},{"x":1568119680000,"y":0.17},{"x":1568119740000,"y":0.28},{"x":1568119800000,"y":0.3},{"x":1568119860000,"y":0.17},{"x":1568119920000,"y":0.15},{"x":1568119980000,"y":0.2},{"x":1568120040000,"y":0.17},{"x":1568120100000,"y":0.41},{"x":1568120160000,"y":0.19},{"x":1568120220000,"y":0.17},{"x":1568120280000,"y":0.22},{"x":1568120340000,"y":0.25},{"x":1568120400000,"y":0.44},{"x":1568120460000,"y":0.2},{"x":1568120520000,"y":0.17},{"x":1568120580000,"y":1.6},{"x":1568120640000,"y":0.17},{"x":1568120700000,"y":0.44},{"x":1568120760000,"y":0.17},{"x":1568120820000,"y":0.28},{"x":1568120880000,"y":0.2},{"x":1568120940000,"y":0.38},{"x":1568121000000,"y":0.42},{"x":1568121060000,"y":0.3},{"x":1568121120000,"y":0.31},{"x":1568121180000,"y":0.21},{"x":1568121240000,"y":0.24},{"x":1568121300000,"y":0.47},{"x":1568121360000,"y":0.21},{"x":1568121420000,"y":0.19},{"x":1568121480000,"y":0.17},{"x":1568121540000,"y":0.17},{"x":1568121600000,"y":0.48},{"x":1568121660000,"y":0.16},{"x":1568121720000,"y":0.17},{"x":1568121780000,"y":0.17},{"x":1568121840000,"y":0.17},{"x":1568121900000,"y":0.28},{"x":1568121960000,"y":0.3},{"x":1568122020000,"y":0.18},{"x":1568122080000,"y":0.22},{"x":1568122140000,"y":0.17},{"x":1568122200000,"y":0.22},{"x":1568122260000,"y":0.32},{"x":1568122320000,"y":0.18},{"x":1568122380000,"y":0.18},{"x":1568122440000,"y":0.15},{"x":1568122500000,"y":0.24},{"x":1568122560000,"y":5.09},{"x":1568122620000,"y":0.2},{"x":1568122680000,"y":0.19},{"x":1568122740000,"y":0.25},{"x":1568122800000,"y":0.29},{"x":1568122860000,"y":0.35},{"x":1568122920000,"y":0.18},{"x":1568122980000,"y":0.2},{"x":1568123040000,"y":0.18},{"x":1568123100000,"y":0.27},{"x":1568123160000,"y":0.33},{"x":1568123220000,"y":0.18},{"x":1568123280000,"y":0.18},{"x":1568123340000,"y":0.2},{"x":1568123400000,"y":0.32},{"x":1568123460000,"y":0.4},{"x":1568123520000,"y":0.18},{"x":1568123580000,"y":0.26},{"x":1568123640000,"y":0.21},{"x":1568123700000,"y":0.35},{"x":1568123760000,"y":0.35},{"x":1568123820000,"y":0.28},{"x":1568123880000,"y":0.24},{"x":1568123940000,"y":0.2},{"x":1568124000000,"y":0.32},{"x":1568124060000,"y":0.39},{"x":1568124120000,"y":0.31},{"x":1568124180000,"y":0.17},{"x":1568124240000,"y":0.18},{"x":1568124300000,"y":0.26},{"x":1568124360000,"y":0.25},{"x":1568124420000,"y":0.38},{"x":1568124480000,"y":0.21},{"x":1568124540000,"y":0.34},{"x":1568124600000,"y":0.25},{"x":1568124660000,"y":0.2},{"x":1568124720000,"y":0.33},{"x":1568124780000,"y":0.22},{"x":1568124840000,"y":0.21},{"x":1568124900000,"y":0.33},{"x":1568124960000,"y":0.23},{"x":1568125020000,"y":0.38},{"x":1568125080000,"y":0.19},{"x":1568125140000,"y":0.21},{"x":1568125200000,"y":0.27},{"x":1568125260000,"y":0.19},{"x":1568125320000,"y":0.35},{"x":1568125380000,"y":0.19},{"x":1568125440000,"y":0.19},{"x":1568125500000,"y":0.24},{"x":1568125560000,"y":0.17},{"x":1568125620000,"y":0.34},{"x":1568125680000,"y":0.2},{"x":1568125740000,"y":0.19},{"x":1568125800000,"y":0.3},{"x":1568125860000,"y":0.19},{"x":1568125920000,"y":0.35},{"x":1568125980000,"y":0.17},{"x":1568126040000,"y":0.16},{"x":1568126100000,"y":0.4},{"x":1568126160000,"y":0.19},{"x":1568126220000,"y":0.37},{"x":1568126280000,"y":0.18},{"x":1568126340000,"y":0.42},{"x":1568126400000,"y":0.37},{"x":1568126460000,"y":0.16},{"x":1568126520000,"y":0.28},{"x":1568126580000,"y":0.17},{"x":1568126640000,"y":0.19},{"x":1568126700000,"y":0.23},{"x":1568126760000,"y":0.2},{"x":1568126820000,"y":0.19},{"x":1568126880000,"y":0.35},{"x":1568126940000,"y":0.19},{"x":1568127000000,"y":0.29},{"x":1568127060000,"y":0.21},{"x":1568127120000,"y":0.17},{"x":1568127180000,"y":0.32},{"x":1568127240000,"y":0.2},{"x":1568127300000,"y":0.3},{"x":1568127360000,"y":0.19},{"x":1568127420000,"y":0.21},{"x":1568127480000,"y":0.32},{"x":1568127540000,"y":0.2},{"x":1568127600000,"y":0.32},{"x":1568127660000,"y":0.2},{"x":1568127720000,"y":0.19},{"x":1568127780000,"y":0.34},{"x":1568127840000,"y":0.17},{"x":1568127900000,"y":0.31},{"x":1568127960000,"y":0.21},{"x":1568128020000,"y":0.16},{"x":1568128080000,"y":0.34},{"x":1568128140000,"y":0.32},{"x":1568128200000,"y":0.29},{"x":1568128260000,"y":0.21},{"x":1568128320000,"y":0.22},{"x":1568128380000,"y":0.37},{"x":1568128440000,"y":0.17},{"x":1568128500000,"y":0.31},{"x":1568128560000,"y":0.14},{"x":1568128620000,"y":0.14},{"x":1568128680000,"y":0.27},{"x":1568128740000,"y":0.12},{"x":1568128800000,"y":0.19},{"x":1568128860000,"y":0.1},{"x":1568128920000,"y":0.09},{"x":1568128980000,"y":0.1},{"x":1568129040000,"y":0.26},{"x":1568129100000,"y":0.16},{"x":1568129160000,"y":0.09},{"x":1568129220000,"y":0.1},{"x":1568129280000,"y":0.08},{"x":1568129340000,"y":0.24},{"x":1568129400000,"y":0.22},{"x":1568129460000,"y":0.09},{"x":1568129520000,"y":0.1},{"x":1568129580000,"y":0.1},{"x":1568129640000,"y":0.22},{"x":1568129700000,"y":0.19},{"x":1568129760000,"y":0.12},{"x":1568129820000,"y":0.1},{"x":1568129880000,"y":0.07},{"x":1568129940000,"y":0.39},{"x":1568130000000,"y":0.22},{"x":1568130060000,"y":0.07},{"x":1568130120000,"y":0.12},{"x":1568130180000,"y":0.1},{"x":1568130240000,"y":0.22},{"x":1568130300000,"y":0.24},{"x":1568130360000,"y":0.7},{"x":1568130420000,"y":0.16},{"x":1568130480000,"y":0.12},{"x":1568130540000,"y":0.27},{"x":1568130600000,"y":0.23},{"x":1568130660000,"y":0.08},{"x":1568130720000,"y":0.14},{"x":1568130780000,"y":0.07},{"x":1568130840000,"y":0.25},{"x":1568130900000,"y":0.14},{"x":1568130960000,"y":0.07},{"x":1568131020000,"y":0.15},{"x":1568131080000,"y":0.1},{"x":1568131140000,"y":0.29},{"x":1568131200000,"y":0.16},{"x":1568131260000,"y":0.11},{"x":1568131320000,"y":0.1},{"x":1568131380000,"y":0.1},{"x":1568131440000,"y":0.25},{"x":1568131500000,"y":0.19},{"x":1568131560000,"y":0.08},{"x":1568131620000,"y":0.07},{"x":1568131680000,"y":0.1},{"x":1568131740000,"y":0.2},{"x":1568131800000,"y":0.32},{"x":1568131860000,"y":0.12},{"x":1568131920000,"y":0.09},{"x":1568131980000,"y":0.1},{"x":1568132040000,"y":0.15},{"x":1568132100000,"y":0.3},{"x":1568132160000,"y":0.17},{"x":1568132220000,"y":0.09},{"x":1568132280000,"y":0.1},{"x":1568132340000,"y":0.13},{"x":1568132400000,"y":0.47},{"x":1568132460000,"y":0.13},{"x":1568132520000,"y":0.09},{"x":1568132580000,"y":0.12},{"x":1568132640000,"y":0.15},{"x":1568132700000,"y":0.33},{"x":1568132760000,"y":0.07},{"x":1568132820000,"y":0.12},{"x":1568132880000,"y":0.15},{"x":1568132940000,"y":0.12},{"x":1568133000000,"y":0.38},{"x":1568133060000,"y":0.09},{"x":1568133120000,"y":0.19},{"x":1568133180000,"y":0.09},{"x":1568133240000,"y":0.11},{"x":1568133300000,"y":0.41},{"x":1568133360000,"y":0.09},{"x":1568133420000,"y":0.09},{"x":1568133480000,"y":0.07},{"x":1568133540000,"y":0.16},{"x":1568133600000,"y":0.2},{"x":1568133660000,"y":0.24},{"x":1568133720000,"y":0.1},{"x":1568133780000,"y":0.1},{"x":1568133840000,"y":0.1},{"x":1568133900000,"y":0.18},{"x":1568133960000,"y":0.25},{"x":1568134020000,"y":0.56},{"x":1568134080000,"y":0.07},{"x":1568134140000,"y":0.18},{"x":1568134200000,"y":0.18},{"x":1568134260000,"y":0.23},{"x":1568134320000,"y":0.07},{"x":1568134380000,"y":0.12},{"x":1568134440000,"y":0.1},{"x":1568134500000,"y":0.19},{"x":1568134560000,"y":0.24},{"x":1568134620000,"y":0.1},{"x":1568134680000,"y":0.1},{"x":1568134740000,"y":0.09},{"x":1568134800000,"y":0.24},{"x":1568134860000,"y":0.31},{"x":1568134920000,"y":0.07},{"x":1568134980000,"y":0.08},{"x":1568135040000,"y":0.51},{"x":1568135100000,"y":0.24},{"x":1568135160000,"y":0.25},{"x":1568135220000,"y":0.11},{"x":1568135280000,"y":0.14},{"x":1568135340000,"y":0.17},{"x":1568135400000,"y":0.18},{"x":1568135460000,"y":0.22},{"x":1568135520000,"y":0.1},{"x":1568135580000,"y":0.12},{"x":1568135640000,"y":0.13},{"x":1568135700000,"y":0.15},{"x":1568135760000,"y":0.26},{"x":1568135820000,"y":0.1},{"x":1568135880000,"y":0.1},{"x":1568135940000,"y":0.12},{"x":1568136000000,"y":0.17},{"x":1568136060000,"y":0.11},{"x":1568136120000,"y":0.31},{"x":1568136180000,"y":0.11},{"x":1568136240000,"y":0.1},{"x":1568136300000,"y":0.13},{"x":1568136360000,"y":0.07},{"x":1568136420000,"y":0.3},{"x":1568136480000,"y":0.1},{"x":1568136540000,"y":0.09},{"x":1568136600000,"y":0.17},{"x":1568136660000,"y":0.07},{"x":1568136720000,"y":0.24},{"x":1568136780000,"y":0.08},{"x":1568136840000,"y":0.08},{"x":1568136900000,"y":0.22},{"x":1568136960000,"y":0.09},{"x":1568137020000,"y":0.24},{"x":1568137080000,"y":0.11},{"x":1568137140000,"y":0.15},{"x":1568137200000,"y":0.14},{"x":1568137260000,"y":0.09},{"x":1568137320000,"y":0.24},{"x":1568137380000,"y":0.06},{"x":1568137440000,"y":0.11},{"x":1568137500000,"y":0.17},{"x":1568137560000,"y":0.06},{"x":1568137620000,"y":0.22},{"x":1568137680000,"y":0.09},{"x":1568137740000,"y":0.08},{"x":1568137800000,"y":0.18},{"x":1568137860000,"y":0.08},{"x":1568137920000,"y":0.09},{"x":1568137980000,"y":0.27},{"x":1568138040000,"y":0.08},{"x":1568138100000,"y":0.26},{"x":1568138160000,"y":0.09},{"x":1568138220000,"y":0.08},{"x":1568138280000,"y":0.25},{"x":1568138340000,"y":0.11},{"x":1568138400000,"y":0.22},{"x":1568138460000,"y":0.08},{"x":1568138520000,"y":0.07},{"x":1568138580000,"y":0.22},{"x":1568138640000,"y":0.08},{"x":1568138700000,"y":0.19},{"x":1568138760000,"y":0.11},{"x":1568138820000,"y":0.08},{"x":1568138880000,"y":0.26},{"x":1568138940000,"y":0.24},{"x":1568139000000,"y":0.19},{"x":1568139060000,"y":0.1},{"x":1568139120000,"y":0.23},{"x":1568139180000,"y":0.26},{"x":1568139240000,"y":0.09},{"x":1568139300000,"y":0.2},{"x":1568139360000,"y":0.11},{"x":1568139420000,"y":0.14},{"x":1568139480000,"y":0.24},{"x":1568139540000,"y":0.14},{"x":1568139600000,"y":0.22},{"x":1568139660000,"y":0.18},{"x":1568139720000,"y":0.09},{"x":1568139780000,"y":0.22},{"x":1568139840000,"y":0.07},{"x":1568139900000,"y":0.3},{"x":1568139960000,"y":0.09},{"x":1568140020000,"y":0.1},{"x":1568140080000,"y":0.25},{"x":1568140140000,"y":0.09},{"x":1568140200000,"y":0.13},{"x":1568140260000,"y":0.09},{"x":1568140320000,"y":0.14},{"x":1568140380000,"y":0.1},{"x":1568140440000,"y":0.26},{"x":1568140500000,"y":0.15},{"x":1568140560000,"y":0.09},{"x":1568140620000,"y":0.08},{"x":1568140680000,"y":0.08},{"x":1568140740000,"y":0.32},{"x":1568140800000,"y":0.2},{"x":1568140860000,"y":0.07},{"x":1568140920000,"y":0.12},{"x":1568140980000,"y":0.09},{"x":1568141040000,"y":0.25},{"x":1568141100000,"y":0.19},{"x":1568141160000,"y":0.1},{"x":1568141220000,"y":0.07},{"x":1568141280000,"y":0.09},{"x":1568141340000,"y":0.28},{"x":1568141400000,"y":0.18},{"x":1568141460000,"y":0.1},{"x":1568141520000,"y":0.32},{"x":1568141580000,"y":0.52},{"x":1568141640000,"y":0.58},{"x":1568141700000,"y":0.68},{"x":1568141760000,"y":0.72},{"x":1568141820000,"y":1.89},{"x":1568141880000,"y":0.42},{"x":1568141940000,"y":0.27},{"x":1568142000000,"y":0.27},{"x":1568142060000,"y":19.95},{"x":1568142120000,"y":0.1},{"x":1568142180000,"y":0.21},{"x":1568142240000,"y":0.23},{"x":1568142300000,"y":0.21},{"x":1568142360000,"y":0.08},{"x":1568142420000,"y":0.15},{"x":1568142480000,"y":0.09},{"x":1568142540000,"y":0.4},{"x":1568142600000,"y":0.24},{"x":1568142660000,"y":0.12},{"x":1568142720000,"y":0.11},{"x":1568142780000,"y":0.12},{"x":1568142840000,"y":0.24},{"x":1568142900000,"y":0.15},{"x":1568142960000,"y":0.13},{"x":1568143020000,"y":0.1},{"x":1568143080000,"y":0.12},{"x":1568143140000,"y":0.12},{"x":1568143200000,"y":0.39},{"x":1568143260000,"y":0.07},{"x":1568143320000,"y":0.11},{"x":1568143380000,"y":0.09},{"x":1568143440000,"y":0.12},{"x":1568143500000,"y":0.29},{"x":1568143560000,"y":0.12},{"x":1568143620000,"y":0.09},{"x":1568143680000,"y":0.12},{"x":1568143740000,"y":0.12},{"x":1568143800000,"y":0.35},{"x":1568143860000,"y":0.11},{"x":1568143920000,"y":18.42},{"x":1568143980000,"y":0.26},{"x":1568144040000,"y":0.09},{"x":1568144100000,"y":0.45},{"x":1568144160000,"y":0.18},{"x":1568144220000,"y":0.12},{"x":1568144280000,"y":16.53},{"x":1568144340000,"y":18.94},{"x":1568144400000,"y":12.2},{"x":1568144460000,"y":31.72},{"x":1568144520000,"y":0.15},{"x":1568144580000,"y":0.29},{"x":1568144640000,"y":19},{"x":1568144700000,"y":0.58},{"x":1568144760000,"y":0.13},{"x":1568144820000,"y":0.12},{"x":1568144880000,"y":0.09},{"x":1568144940000,"y":0.1},{"x":1568145000000,"y":0.31},{"x":1568145060000,"y":0.09},{"x":1568145120000,"y":0.1},{"x":1568145180000,"y":0.17},{"x":1568145240000,"y":0.11},{"x":1568145300000,"y":0.28},{"x":1568145360000,"y":0.1},{"x":1568145420000,"y":0.1},{"x":1568145480000,"y":0.12},{"x":1568145540000,"y":0.09},{"x":1568145600000,"y":0.22},{"x":1568145660000,"y":0.23},{"x":1568145720000,"y":0.08},{"x":1568145780000,"y":0.13},{"x":1568145840000,"y":0.14},{"x":1568145900000,"y":0.21},{"x":1568145960000,"y":0.22},{"x":1568146020000,"y":0.11},{"x":1568146080000,"y":0.14},{"x":1568146140000,"y":0.35},{"x":1568146200000,"y":0.32},{"x":1568146260000,"y":0.27},{"x":1568146320000,"y":0.08},{"x":1568146380000,"y":0.1},{"x":1568146440000,"y":0.2},{"x":1568146500000,"y":0.25},{"x":1568146560000,"y":0.27},{"x":1568146620000,"y":0.22},{"x":1568146680000,"y":0.11},{"x":1568146740000,"y":0.11},{"x":1568146800000,"y":0.19},{"x":1568146860000,"y":0.26},{"x":1568146920000,"y":0.07},{"x":1568146980000,"y":0.12},{"x":1568147040000,"y":0.12},{"x":1568147100000,"y":0.19},{"x":1568147160000,"y":0.3},{"x":1568147220000,"y":0.1},{"x":1568147280000,"y":0.11},{"x":1568147340000,"y":0.1},{"x":1568147400000,"y":0.21},{"x":1568147460000,"y":0.1},{"x":1568147520000,"y":0.2},{"x":1568147580000,"y":0.1},{"x":1568147640000,"y":0.1},{"x":1568147700000,"y":0.22},{"x":1568147760000,"y":0.07},{"x":1568147820000,"y":0.23},{"x":1568147880000,"y":0.11},{"x":1568147940000,"y":0.26},{"x":1568148000000,"y":0.17},{"x":1568148060000,"y":0.14},{"x":1568148120000,"y":0.33},{"x":1568148180000,"y":0.13},{"x":1568148240000,"y":0.12},{"x":1568148300000,"y":0.25},{"x":1568148360000,"y":0.13},{"x":1568148420000,"y":0.37},{"x":1568148480000,"y":1.35},{"x":1568148540000,"y":0.09},{"x":1568148600000,"y":0.24},{"x":1568148660000,"y":0.14},{"x":1568148720000,"y":0.2},{"x":1568148780000,"y":0.1},{"x":1568148840000,"y":0.07},{"x":1568148900000,"y":0.12},{"x":1568148960000,"y":0.09},{"x":1568149020000,"y":0.21},{"x":1568149080000,"y":0.09},{"x":1568149140000,"y":0.1},{"x":1568149200000,"y":0.27},{"x":1568149260000,"y":0.09},{"x":1568149320000,"y":0.25},{"x":1568149380000,"y":0.12},{"x":1568149440000,"y":0.13},{"x":1568149500000,"y":0.16},{"x":1568149560000,"y":0.12},{"x":1568149620000,"y":0.2},{"x":1568149680000,"y":0.08},{"x":1568149740000,"y":0.26},{"x":1568149800000,"y":0.16},{"x":1568149860000,"y":0.12},{"x":1568149920000,"y":0.13},{"x":1568149980000,"y":0.2},{"x":1568150040000,"y":0.09},{"x":1568150100000,"y":0.19},{"x":1568150160000,"y":0.12},{"x":1568150220000,"y":0.1},{"x":1568150280000,"y":0.25},{"x":1568150340000,"y":0.11},{"x":1568150400000,"y":0.22},{"x":1568150460000,"y":0.09},{"x":1568150520000,"y":0.14},{"x":1568150580000,"y":0.21},{"x":1568150640000,"y":0.18},{"x":1568150700000,"y":0.19},{"x":1568150760000,"y":0.09},{"x":1568150820000,"y":0.11},{"x":1568150880000,"y":0.31},{"x":1568150940000,"y":0.17},{"x":1568151000000,"y":0.22},{"x":1568151060000,"y":0.14},{"x":1568151120000,"y":0.56},{"x":1568151180000,"y":0.24},{"x":1568151240000,"y":0.08},{"x":1568151300000,"y":0.16},{"x":1568151360000,"y":0.11},{"x":1568151420000,"y":0.18},{"x":1568151480000,"y":0.3},{"x":1568151540000,"y":0.27},{"x":1568151600000,"y":0.22},{"x":1568151660000,"y":0.17},{"x":1568151720000,"y":0.2},{"x":1568151780000,"y":0.27},{"x":1568151840000,"y":0.12},{"x":1568151900000,"y":0.27},{"x":1568151960000,"y":0.14},{"x":1568152020000,"y":0.13},{"x":1568152080000,"y":0.23},{"x":1568152140000,"y":0.15},{"x":1568152200000,"y":0.24},{"x":1568152260000,"y":0.19},{"x":1568152320000,"y":0.17},{"x":1568152380000,"y":0.16},{"x":1568152440000,"y":0.3},{"x":1568152500000,"y":0.32},{"x":1568152560000,"y":0.13},{"x":1568152620000,"y":0.15},{"x":1568152680000,"y":0.18},{"x":1568152740000,"y":0.32},{"x":1568152800000,"y":0.31},{"x":1568152860000,"y":0.18},{"x":1568152920000,"y":0.16},{"x":1568152980000,"y":0.19},{"x":1568153040000,"y":0.3},{"x":1568153100000,"y":0.26},{"x":1568153160000,"y":0.15},{"x":1568153220000,"y":1.73},{"x":1568153280000,"y":0.15},{"x":1568153340000,"y":0.39},{"x":1568153400000,"y":0.19},{"x":1568153460000,"y":0.17},{"x":1568153520000,"y":0.16},{"x":1568153580000,"y":0.15},{"x":1568153640000,"y":0.3},{"x":1568153700000,"y":0.24},{"x":1568153760000,"y":0.17},{"x":1568153820000,"y":0.15},{"x":1568153880000,"y":0.14},{"x":1568153940000,"y":0.29},{"x":1568154000000,"y":0.25},{"x":1568154060000,"y":0.15},{"x":1568154120000,"y":0.13},{"x":1568154180000,"y":0.18},{"x":1568154240000,"y":0.33},{"x":1568154300000,"y":0.24},{"x":1568154360000,"y":0.14},{"x":1568154420000,"y":0.15},{"x":1568154480000,"y":0.18},{"x":1568154540000,"y":0.31},{"x":1568154600000,"y":0.22},{"x":1568154660000,"y":0.15},{"x":1568154720000,"y":0.16},{"x":1568154780000,"y":0.14},{"x":1568154840000,"y":0.18},{"x":1568154900000,"y":0.43},{"x":1568154960000,"y":0.15},{"x":1568155020000,"y":0.16},{"x":1568155080000,"y":0.16},{"x":1568155140000,"y":0.32},{"x":1568155200000,"y":0.4},{"x":1568155260000,"y":0.24},{"x":1568155320000,"y":0.16},{"x":1568155380000,"y":0.17},{"x":1568155440000,"y":0.16},{"x":1568155500000,"y":0.34},{"x":1568155560000,"y":0.15},{"x":1568155620000,"y":0.13},{"x":1568155680000,"y":1.06},{"x":1568155740000,"y":0.15},{"x":1568155800000,"y":0.33},{"x":1568155860000,"y":0.15},{"x":1568155920000,"y":0.15},{"x":1568155980000,"y":0.15},{"x":1568156040000,"y":0.13},{"x":1568156100000,"y":0.37},{"x":1568156160000,"y":0.15},{"x":1568156220000,"y":0.13},{"x":1568156280000,"y":0.16},{"x":1568156340000,"y":0.14},{"x":1568156400000,"y":0.51},{"x":1568156460000,"y":0.15},{"x":1568156520000,"y":0.15},{"x":1568156580000,"y":0.2},{"x":1568156640000,"y":0.15},{"x":1568156700000,"y":0.34},{"x":1568156760000,"y":0.15},{"x":1568156820000,"y":0.15},{"x":1568156880000,"y":0.15},{"x":1568156940000,"y":0.24},{"x":1568157000000,"y":0.37},{"x":1568157060000,"y":0.22},{"x":1568157120000,"y":0.17},{"x":1568157180000,"y":0.17},{"x":1568157240000,"y":0.17},{"x":1568157300000,"y":0.26},{"x":1568157360000,"y":0.28},{"x":1568157420000,"y":0.17},{"x":1568157480000,"y":0.16},{"x":1568157540000,"y":0.17},{"x":1568157600000,"y":0.26},{"x":1568157660000,"y":0.32},{"x":1568157720000,"y":0.17},{"x":1568157780000,"y":0.17},{"x":1568157840000,"y":0.15},{"x":1568157900000,"y":0.22},{"x":1568157960000,"y":0.29},{"x":1568158020000,"y":0.18},{"x":1568158080000,"y":0.15},{"x":1568158140000,"y":0.15},{"x":1568158200000,"y":0.19},{"x":1568158260000,"y":0.32},{"x":1568158320000,"y":0.15},{"x":1568158380000,"y":0.16},{"x":1568158440000,"y":0.17},{"x":1568158500000,"y":0.25},{"x":1568158560000,"y":0.3},{"x":1568158620000,"y":0.15},{"x":1568158680000,"y":0.13},{"x":1568158740000,"y":0.24},{"x":1568158800000,"y":0.2},{"x":1568158860000,"y":0.32},{"x":1568158920000,"y":0.15},{"x":1568158980000,"y":0.16},{"x":1568159040000,"y":0.16},{"x":1568159100000,"y":0.23},{"x":1568159160000,"y":0.31},{"x":1568159220000,"y":0.17},{"x":1568159280000,"y":0.17},{"x":1568159340000,"y":0.16},{"x":1568159400000,"y":0.21},{"x":1568159460000,"y":0.17},{"x":1568159520000,"y":0.32},{"x":1568159580000,"y":0.18},{"x":1568159640000,"y":0.14},{"x":1568159700000,"y":0.21},{"x":1568159760000,"y":0.16},{"x":1568159820000,"y":0.33},{"x":1568159880000,"y":0.17},{"x":1568159940000,"y":0.2},{"x":1568160000000,"y":0.35},{"x":1568160060000,"y":0.15},{"x":1568160120000,"y":0.32},{"x":1568160180000,"y":0.16},{"x":1568160240000,"y":0.17},{"x":1568160300000,"y":0.27},{"x":1568160360000,"y":0.13},{"x":1568160420000,"y":0.28},{"x":1568160480000,"y":1.08},{"x":1568160540000,"y":0.23},{"x":1568160600000,"y":0.22},{"x":1568160660000,"y":0.17},{"x":1568160720000,"y":0.32},{"x":1568160780000,"y":0.17},{"x":1568160840000,"y":0.15},{"x":1568160900000,"y":0.23},{"x":1568160960000,"y":0.17},{"x":1568161020000,"y":0.33},{"x":1568161080000,"y":0.16},{"x":1568161140000,"y":0.2},{"x":1568161200000,"y":0.24},{"x":1568161260000,"y":0.16},{"x":1568161320000,"y":0.29},{"x":1568161380000,"y":0.16},{"x":1568161440000,"y":0.15},{"x":1568161500000,"y":0.23},{"x":1568161560000,"y":0.16},{"x":1568161620000,"y":0.27},{"x":1568161680000,"y":0.15},{"x":1568161740000,"y":0.14},{"x":1568161800000,"y":0.18},{"x":1568161860000,"y":0.12},{"x":1568161920000,"y":0.12},{"x":1568161980000,"y":0.24},{"x":1568162040000,"y":0.12},{"x":1568162100000,"y":0.2},{"x":1568162160000,"y":0.07},{"x":1568162220000,"y":0.11},{"x":1568162280000,"y":0.22},{"x":1568162340000,"y":0.28},{"x":1568162400000,"y":0.1},{"x":1568162460000,"y":0.07},{"x":1568162520000,"y":0.06},{"x":1568162580000,"y":0.2},{"x":1568162640000,"y":0.09},{"x":1568162700000,"y":0.2},{"x":1568162760000,"y":0.06},{"x":1568162820000,"y":0.07},{"x":1568162880000,"y":0.2},{"x":1568162940000,"y":0.07},{"x":1568163000000,"y":0.15},{"x":1568163060000,"y":0.07},{"x":1568163120000,"y":0.09},{"x":1568163180000,"y":0.23},{"x":1568163240000,"y":0.07},{"x":1568163300000,"y":0.1},{"x":1568163360000,"y":0.06},{"x":1568163420000,"y":0.07},{"x":1568163480000,"y":0.2},{"x":1568163540000,"y":0.06},{"x":1568163600000,"y":0.2},{"x":1568163660000,"y":0.07},{"x":1568163720000,"y":0.06},{"x":1568163780000,"y":0.19},{"x":1568163840000,"y":0.07},{"x":1568163900000,"y":0.13},{"x":1568163960000,"y":0.07},{"x":1568164020000,"y":0.06},{"x":1568164080000,"y":0.2},{"x":1568164140000,"y":0.27},{"x":1568164200000,"y":0.19},{"x":1568164260000,"y":0.07},{"x":1568164320000,"y":0.06},{"x":1568164380000,"y":0.08},{"x":1568164440000,"y":0.22},{"x":1568164500000,"y":0.17},{"x":1568164560000,"y":0.08},{"x":1568164620000,"y":0.08},{"x":1568164680000,"y":0.06},{"x":1568164740000,"y":0.22},{"x":1568164800000,"y":0.12},{"x":1568164860000,"y":0.07},{"x":1568164920000,"y":0.09},{"x":1568164980000,"y":0.1},{"x":1568165040000,"y":0.21},{"x":1568165100000,"y":0.15},{"x":1568165160000,"y":0.1},{"x":1568165220000,"y":0.09},{"x":1568165280000,"y":0.11},{"x":1568165340000,"y":0.23},{"x":1568165400000,"y":0.21},{"x":1568165460000,"y":0.07},{"x":1568165520000,"y":0.07},{"x":1568165580000,"y":0.06},{"x":1568165640000,"y":0.24},{"x":1568165700000,"y":0.17},{"x":1568165760000,"y":0.13},{"x":1568165820000,"y":0.08},{"x":1568165880000,"y":0.08},{"x":1568165940000,"y":0.43},{"x":1568166000000,"y":0.16},{"x":1568166060000,"y":0.09},{"x":1568166120000,"y":0.08},{"x":1568166180000,"y":0.1},{"x":1568166240000,"y":4.9},{"x":1568166300000,"y":0.32},{"x":1568166360000,"y":0.05},{"x":1568166420000,"y":0.1},{"x":1568166480000,"y":0.05},{"x":1568166540000,"y":0.2},{"x":1568166600000,"y":0.11},{"x":1568166660000,"y":0.05},{"x":1568166720000,"y":0.05},{"x":1568166780000,"y":0.07},{"x":1568166840000,"y":0.06},{"x":1568166900000,"y":0.28},{"x":1568166960000,"y":0.06},{"x":1568167020000,"y":0.08},{"x":1568167080000,"y":0.08},{"x":1568167140000,"y":0.07},{"x":1568167200000,"y":0.36},{"x":1568167260000,"y":0.1},{"x":1568167320000,"y":0.08},{"x":1568167380000,"y":0.06},{"x":1568167440000,"y":0.06},{"x":1568167500000,"y":0.26},{"x":1568167560000,"y":0.08},{"x":1568167620000,"y":0.07},{"x":1568167680000,"y":0.32},{"x":1568167740000,"y":0.16},{"x":1568167800000,"y":0.3},{"x":1568167860000,"y":0.04},{"x":1568167920000,"y":0.05},{"x":1568167980000,"y":0.07},{"x":1568168040000,"y":0.08},{"x":1568168100000,"y":0.27},{"x":1568168160000,"y":0.06},{"x":1568168220000,"y":0.08},{"x":1568168280000,"y":0.05},{"x":1568168340000,"y":0.05},{"x":1568168400000,"y":0.27},{"x":1568168460000,"y":0.05},{"x":1568168520000,"y":0.1},{"x":1568168580000,"y":0.08},{"x":1568168640000,"y":0.07},{"x":1568168700000,"y":0.25},{"x":1568168760000,"y":0.07},{"x":1568168820000,"y":0.05},{"x":1568168880000,"y":0.05},{"x":1568168940000,"y":0.04},{"x":1568169000000,"y":0.31},{"x":1568169060000,"y":0.05},{"x":1568169120000,"y":0.05},{"x":1568169180000,"y":0.06},{"x":1568169240000,"y":0.08},{"x":1568169300000,"y":0.2},{"x":1568169360000,"y":0.19},{"x":1568169420000,"y":0.06},{"x":1568169480000,"y":0.05},{"x":1568169540000,"y":0.14},{"x":1568169600000,"y":0.17},{"x":1568169660000,"y":0.22},{"x":1568169720000,"y":0.05},{"x":1568169780000,"y":0.05},{"x":1568169840000,"y":0.07},{"x":1568169900000,"y":0.18},{"x":1568169960000,"y":0.22},{"x":1568170020000,"y":0.05},{"x":1568170080000,"y":0.07},{"x":1568170140000,"y":0.06},{"x":1568170200000,"y":0.16},{"x":1568170260000,"y":0.19},{"x":1568170320000,"y":0.06},{"x":1568170380000,"y":0.07},{"x":1568170440000,"y":0.08},{"x":1568170500000,"y":0.12},{"x":1568170560000,"y":0.21},{"x":1568170620000,"y":0.05},{"x":1568170680000,"y":0.06},{"x":1568170740000,"y":0.06},{"x":1568170800000,"y":0.13},{"x":1568170860000,"y":0.25},{"x":1568170920000,"y":0.08},{"x":1568170980000,"y":0.08},{"x":1568171040000,"y":0.05},{"x":1568171100000,"y":0.12},{"x":1568171160000,"y":0.11},{"x":1568171220000,"y":0.13},{"x":1568171280000,"y":0.05},{"x":1568171340000,"y":0.22},{"x":1568171400000,"y":0.17},{"x":1568171460000,"y":0.07},{"x":1568171520000,"y":0.21},{"x":1568171580000,"y":0.06},{"x":1568171640000,"y":0.05},{"x":1568171700000,"y":0.14},{"x":1568171760000,"y":0.07},{"x":1568171820000,"y":0.23},{"x":1568171880000,"y":0.05},{"x":1568171940000,"y":0.07},{"x":1568172000000,"y":0.17},{"x":1568172060000,"y":0.1},{"x":1568172120000,"y":0.22},{"x":1568172180000,"y":0.09},{"x":1568172240000,"y":0.08},{"x":1568172300000,"y":0.13},{"x":1568172360000,"y":0.06},{"x":1568172420000,"y":0.21},{"x":1568172480000,"y":0.06},{"x":1568172540000,"y":0.05},{"x":1568172600000,"y":0.15},{"x":1568172660000,"y":0.05},{"x":1568172720000,"y":0.2},{"x":1568172780000,"y":0.07},{"x":1568172840000,"y":0.05},{"x":1568172900000,"y":0.12},{"x":1568172960000,"y":0.07},{"x":1568173020000,"y":0.19},{"x":1568173080000,"y":0.05},{"x":1568173140000,"y":0.25},{"x":1568173200000,"y":0.18},{"x":1568173260000,"y":0.11},{"x":1568173320000,"y":0.2},{"x":1568173380000,"y":0.08},{"x":1568173440000,"y":0.1},{"x":1568173500000,"y":0.17},{"x":1568173560000,"y":0.05},{"x":1568173620000,"y":0.09},{"x":1568173680000,"y":0.38},{"x":1568173740000,"y":0.05},{"x":1568173800000,"y":0.13},{"x":1568173860000,"y":0.1},{"x":1568173920000,"y":0.06},{"x":1568173980000,"y":0.2},{"x":1568174040000,"y":0.06},{"x":1568174100000,"y":0.13},{"x":1568174160000,"y":0.07},{"x":1568174220000,"y":0.05},{"x":1568174280000,"y":0.21},{"x":1568174340000,"y":0.09},{"x":1568174400000,"y":0.2},{"x":1568174460000,"y":0.07},{"x":1568174520000,"y":0.06},{"x":1568174580000,"y":0.2},{"x":1568174640000,"y":0.05},{"x":1568174700000,"y":0.14},{"x":1568174760000,"y":0.06},{"x":1568174820000,"y":0.05},{"x":1568174880000,"y":0.22},{"x":1568174940000,"y":0.18},{"x":1568175000000,"y":0.22},{"x":1568175060000,"y":0.04},{"x":1568175120000,"y":0.07},{"x":1568175180000,"y":0.2},{"x":1568175240000,"y":0.06},{"x":1568175300000,"y":0.11},{"x":1568175360000,"y":0.05},{"x":1568175420000,"y":0.09},{"x":1568175480000,"y":0.22},{"x":1568175540000,"y":0.07},{"x":1568175600000,"y":0.16},{"x":1568175660000,"y":0.1},{"x":1568175720000,"y":0.05},{"x":1568175780000,"y":0.21},{"x":1568175840000,"y":0.05},{"x":1568175900000,"y":0.12},{"x":1568175960000,"y":0.05},{"x":1568176020000,"y":0.08},{"x":1568176080000,"y":0.09},{"x":1568176140000,"y":0.19},{"x":1568176200000,"y":0.19},{"x":1568176260000,"y":0.07},{"x":1568176320000,"y":0.07},{"x":1568176380000,"y":0.05},{"x":1568176440000,"y":0.24},{"x":1568176500000,"y":0.17},{"x":1568176560000,"y":0.08},{"x":1568176620000,"y":0.06},{"x":1568176680000,"y":0.08},{"x":1568176740000,"y":0.34},{"x":1568176800000,"y":0.2},{"x":1568176860000,"y":0.09},{"x":1568176920000,"y":0.09},{"x":1568176980000,"y":0.07},{"x":1568177040000,"y":0.22},{"x":1568177100000,"y":0.14},{"x":1568177160000,"y":0.07},{"x":1568177220000,"y":0.07},{"x":1568177280000,"y":0.09},{"x":1568177340000,"y":0.22},{"x":1568177400000,"y":0.14},{"x":1568177460000,"y":0.06},{"x":1568177520000,"y":0.08},{"x":1568177580000,"y":0.1},{"x":1568177640000,"y":0.22},{"x":1568177700000,"y":0.1},{"x":1568177760000,"y":0.06},{"x":1568177820000,"y":0.07},{"x":1568177880000,"y":0.07},{"x":1568177940000,"y":0.2},{"x":1568178000000,"y":0.87},{"x":1568178060000,"y":0.06},{"x":1568178120000,"y":0.06},{"x":1568178180000,"y":0.1},{"x":1568178240000,"y":0.26},{"x":1568178300000,"y":0.22},{"x":1568178360000,"y":0.11},{"x":1568178420000,"y":0.06},{"x":1568178480000,"y":0.07},{"x":1568178540000,"y":0.32},{"x":1568178600000,"y":0.14},{"x":1568178660000,"y":0.07},{"x":1568178720000,"y":0.06},{"x":1568178780000,"y":0.07},{"x":1568178840000,"y":0.05},{"x":1568178900000,"y":0.32},{"x":1568178960000,"y":0.07},{"x":1568179020000,"y":0.11},{"x":1568179080000,"y":0.11},{"x":1568179140000,"y":0.09},{"x":1568179200000,"y":0.29},{"x":1568179260000,"y":0.07},{"x":1568179320000,"y":0.07},{"x":1568179380000,"y":0.07},{"x":1568179440000,"y":0.06},{"x":1568179500000,"y":0.24},{"x":1568179560000,"y":0.03},{"x":1568179620000,"y":0.07},{"x":1568179680000,"y":0.04},{"x":1568179740000,"y":0.05},{"x":1568179800000,"y":0.29},{"x":1568179860000,"y":0.13},{"x":1568179920000,"y":0.06},{"x":1568179980000,"y":0.05},{"x":1568180040000,"y":0.09},{"x":1568180100000,"y":0.27},{"x":1568180160000,"y":0.11},{"x":1568180220000,"y":0.08},{"x":1568180280000,"y":0.07},{"x":1568180340000,"y":0.24},{"x":1568180400000,"y":0.32},{"x":1568180460000,"y":0.12},{"x":1568180520000,"y":0.07},{"x":1568180580000,"y":0.07},{"x":1568180640000,"y":0.05},{"x":1568180700000,"y":0.28},{"x":1568180760000,"y":0.08},{"x":1568180820000,"y":0.08},{"x":1568180880000,"y":0.1},{"x":1568180940000,"y":0.81},{"x":1568181000000,"y":0.3},{"x":1568181060000,"y":0.09},{"x":1568181120000,"y":0.07},{"x":1568181180000,"y":0.05},{"x":1568181240000,"y":0.07},{"x":1568181300000,"y":0.21},{"x":1568181360000,"y":0.25},{"x":1568181420000,"y":0.09},{"x":1568181480000,"y":0.06},{"x":1568181540000,"y":0.04},{"x":1568181600000,"y":0.17},{"x":1568181660000,"y":0.22},{"x":1568181720000,"y":0.11},{"x":1568181780000,"y":0.1},{"x":1568181840000,"y":0.08},{"x":1568181900000,"y":0.15},{"x":1568181960000,"y":0.24},{"x":1568182020000,"y":0.08},{"x":1568182080000,"y":0.06},{"x":1568182140000,"y":0.18},{"x":1568182200000,"y":0.14},{"x":1568182260000,"y":0.25},{"x":1568182320000,"y":0.11},{"x":1568182380000,"y":0.09},{"x":1568182440000,"y":0.17},{"x":1568182500000,"y":0.24},{"x":1568182560000,"y":0.23},{"x":1568182620000,"y":0.09},{"x":1568182680000,"y":0.1},{"x":1568182740000,"y":0.1},{"x":1568182800000,"y":0.15},{"x":1568182860000,"y":0.21},{"x":1568182920000,"y":0.08},{"x":1568182980000,"y":0.09},{"x":1568183040000,"y":0.1},{"x":1568183100000,"y":0.29},{"x":1568183160000,"y":0.1},{"x":1568183220000,"y":0.23},{"x":1568183280000,"y":0.08},{"x":1568183340000,"y":0.06},{"x":1568183400000,"y":0.18},{"x":1568183460000,"y":0.07},{"x":1568183520000,"y":0.22},{"x":1568183580000,"y":0.1},{"x":1568183640000,"y":0.1},{"x":1568183700000,"y":0.15},{"x":1568183760000,"y":0.09},{"x":1568183820000,"y":0.22},{"x":1568183880000,"y":0.22},{"x":1568183940000,"y":0.13},{"x":1568184000000,"y":0.19},{"x":1568184060000,"y":0.1},{"x":1568184120000,"y":0.32},{"x":1568184180000,"y":0.19},{"x":1568184240000,"y":0.14},{"x":1568184300000,"y":0.16},{"x":1568184360000,"y":0.11},{"x":1568184420000,"y":0.33},{"x":1568184480000,"y":0.16},{"x":1568184540000,"y":0.18},{"x":1568184600000,"y":0.15},{"x":1568184660000,"y":0.09},{"x":1568184720000,"y":0.25},{"x":1568184780000,"y":0.1},{"x":1568184840000,"y":0.16},{"x":1568184900000,"y":0.2},{"x":1568184960000,"y":0.13},{"x":1568185020000,"y":0.38},{"x":1568185080000,"y":0.15},{"x":1568185140000,"y":0.16},{"x":1568185200000,"y":0.24},{"x":1568185260000,"y":0.1},{"x":1568185320000,"y":0.29},{"x":1568185380000,"y":0.1},{"x":1568185440000,"y":0.11},{"x":1568185500000,"y":0.32},{"x":1568185560000,"y":0.14},{"x":1568185620000,"y":0.13},{"x":1568185680000,"y":0.41},{"x":1568185740000,"y":0.27},{"x":1568185800000,"y":0.23},{"x":1568185860000,"y":0.2},{"x":1568185920000,"y":0.18},{"x":1568185980000,"y":0.32},{"x":1568186040000,"y":0.15},{"x":1568186100000,"y":0.23},{"x":1568186160000,"y":0.15},{"x":1568186220000,"y":0.13},{"x":1568186280000,"y":0.3},{"x":1568186340000,"y":0.14},{"x":1568186400000,"y":0.4},{"x":1568186460000,"y":0.17},{"x":1568186520000,"y":0.17},{"x":1568186580000,"y":0.29},{"x":1568186640000,"y":0.2},{"x":1568186700000,"y":0.32},{"x":1568186760000,"y":0.16},{"x":1568186820000,"y":0.15},{"x":1568186880000,"y":0.32},{"x":1568186940000,"y":0.17},{"x":1568187000000,"y":0.29},{"x":1568187060000,"y":0.16},{"x":1568187120000,"y":0.16},{"x":1568187180000,"y":0.28},{"x":1568187240000,"y":0.16},{"x":1568187300000,"y":0.25},{"x":1568187360000,"y":0.21},{"x":1568187420000,"y":0.16},{"x":1568187480000,"y":0.35},{"x":1568187540000,"y":0.22},{"x":1568187600000,"y":0.21},{"x":1568187660000,"y":0.17},{"x":1568187720000,"y":0.19},{"x":1568187780000,"y":0.27},{"x":1568187840000,"y":0.16},{"x":1568187900000,"y":0.33},{"x":1568187960000,"y":0.14},{"x":1568188020000,"y":0.15},{"x":1568188080000,"y":0.14},{"x":1568188140000,"y":5.51},{"x":1568188200000,"y":0.18},{"x":1568188260000,"y":0.2},{"x":1568188320000,"y":0.15},{"x":1568188380000,"y":0.15},{"x":1568188440000,"y":0.42},{"x":1568188500000,"y":0.24},{"x":1568188560000,"y":0.15},{"x":1568188620000,"y":0.2},{"x":1568188680000,"y":0.15},{"x":1568188740000,"y":0.28},{"x":1568188800000,"y":0.27},{"x":1568188860000,"y":0.18},{"x":1568188920000,"y":0.17},{"x":1568188980000,"y":0.17},{"x":1568189040000,"y":0.27},{"x":1568189100000,"y":0.27},{"x":1568189160000,"y":0.17},{"x":1568189220000,"y":0.15},{"x":1568189280000,"y":0.13},{"x":1568189340000,"y":0.39},{"x":1568189400000,"y":0.35},{"x":1568189460000,"y":0.14},{"x":1568189520000,"y":0.13},{"x":1568189580000,"y":0.17},{"x":1568189640000,"y":0.36},{"x":1568189700000,"y":0.18},{"x":1568189760000,"y":0.15},{"x":1568189820000,"y":0.17},{"x":1568189880000,"y":0.16},{"x":1568189940000,"y":0.28},{"x":1568190000000,"y":0.17},{"x":1568190060000,"y":0.15},{"x":1568190120000,"y":0.13},{"x":1568190180000,"y":0.14},{"x":1568190240000,"y":0.3},{"x":1568190300000,"y":0.2},{"x":1568190360000,"y":0.16},{"x":1568190420000,"y":0.16},{"x":1568190480000,"y":0.15},{"x":1568190540000,"y":0.14},{"x":1568190600000,"y":0.38},{"x":1568190660000,"y":0.15},{"x":1568190720000,"y":0.16},{"x":1568190780000,"y":0.15},{"x":1568190840000,"y":0.17},{"x":1568190900000,"y":0.37},{"x":1568190960000,"y":0.15},{"x":1568191020000,"y":0.14},{"x":1568191080000,"y":0.14},{"x":1568191140000,"y":0.25},{"x":1568191200000,"y":0.35},{"x":1568191260000,"y":0.17},{"x":1568191320000,"y":0.17},{"x":1568191380000,"y":0.16},{"x":1568191440000,"y":0.14},{"x":1568191500000,"y":0.4},{"x":1568191560000,"y":0.17},{"x":1568191620000,"y":0.14},{"x":1568191680000,"y":0.14},{"x":1568191740000,"y":0.15},{"x":1568191800000,"y":0.8},{"x":1568191860000,"y":1.41},{"x":1568191920000,"y":0.21},{"x":1568191980000,"y":0.15},{"x":1568192040000,"y":0.15},{"x":1568192100000,"y":0.38},{"x":1568192160000,"y":0.15},{"x":1568192220000,"y":0.15},{"x":1568192280000,"y":0.15},{"x":1568192340000,"y":0.17},{"x":1568192400000,"y":0.63},{"x":1568192460000,"y":0.22},{"x":1568192520000,"y":0.16},{"x":1568192580000,"y":0.14},{"x":1568192640000,"y":0.16},{"x":1568192700000,"y":0.37},{"x":1568192760000,"y":0.16},{"x":1568192820000,"y":0.15},{"x":1568192880000,"y":0.16},{"x":1568192940000,"y":0.25},{"x":1568193000000,"y":0.31},{"x":1568193060000,"y":0.29},{"x":1568193120000,"y":0.99},{"x":1568193180000,"y":0.19},{"x":1568193240000,"y":0.15},{"x":1568193300000,"y":0.28},{"x":1568193360000,"y":0.39},{"x":1568193420000,"y":0.18},{"x":1568193480000,"y":0.16},{"x":1568193540000,"y":0.15},{"x":1568193600000,"y":0.24},{"x":1568193660000,"y":0.32},{"x":1568193720000,"y":0.14},{"x":1568193780000,"y":0.15},{"x":1568193840000,"y":0.16},{"x":1568193900000,"y":0.2},{"x":1568193960000,"y":0.32},{"x":1568194020000,"y":0.14},{"x":1568194080000,"y":0.16},{"x":1568194140000,"y":0.21},{"x":1568194200000,"y":0.24},{"x":1568194260000,"y":0.28},{"x":1568194320000,"y":0.16},{"x":1568194380000,"y":0.15},{"x":1568194440000,"y":0.15},{"x":1568194500000,"y":0.23},{"x":1568194560000,"y":0.28},{"x":1568194620000,"y":0.13},{"x":1568194680000,"y":0.15},{"x":1568194740000,"y":0.32},{"x":1568194800000,"y":0.2},{"x":1568194860000,"y":0.3},{"x":1568194920000,"y":0.18},{"x":1568194980000,"y":0.19},{"x":1568195040000,"y":0.12},{"x":1568195100000,"y":0.2},{"x":1568195160000,"y":0.22},{"x":1568195220000,"y":0.13},{"x":1568195280000,"y":0.12},{"x":1568195340000,"y":0.13},{"x":1568195400000,"y":0.17},{"x":1568195460000,"y":0.12},{"x":1568195520000,"y":0.21},{"x":1568195580000,"y":0.06},{"x":1568195640000,"y":0.07},{"x":1568195700000,"y":0.18},{"x":1568195760000,"y":0.07},{"x":1568195820000,"y":0.18},{"x":1568195880000,"y":0.05},{"x":1568195940000,"y":0.07},{"x":1568196000000,"y":0.23},{"x":1568196060000,"y":0.09},{"x":1568196120000,"y":0.24},{"x":1568196180000,"y":0.08},{"x":1568196240000,"y":0.07},{"x":1568196300000,"y":0.21},{"x":1568196360000,"y":0.05},{"x":1568196420000,"y":0.23},{"x":1568196480000,"y":0.07},{"x":1568196540000,"y":0.22},{"x":1568196600000,"y":0.18},{"x":1568196660000,"y":0.07},{"x":1568196720000,"y":0.24},{"x":1568196780000,"y":0.07},{"x":1568196840000,"y":0.06},{"x":1568196900000,"y":0.15},{"x":1568196960000,"y":0.07},{"x":1568197020000,"y":0.21},{"x":1568197080000,"y":0.05},{"x":1568197140000,"y":0.08},{"x":1568197200000,"y":0.21},{"x":1568197260000,"y":0.07},{"x":1568197320000,"y":0.1},{"x":1568197380000,"y":0.25},{"x":1568197440000,"y":0.1},{"x":1568197500000,"y":0.22},{"x":1568197560000,"y":0.11},{"x":1568197620000,"y":0.09},{"x":1568197680000,"y":0.27},{"x":1568197740000,"y":0.15},{"x":1568197800000,"y":0.19},{"x":1568197860000,"y":0.08},{"x":1568197920000,"y":0.06},{"x":1568197980000,"y":0.26},{"x":1568198040000,"y":0.09},{"x":1568198100000,"y":0.18},{"x":1568198160000,"y":0.06},{"x":1568198220000,"y":0.09},{"x":1568198280000,"y":0.21},{"x":1568198340000,"y":4.92},{"x":1568198400000,"y":0.35},{"x":1568198460000,"y":0.1},{"x":1568198520000,"y":0.11},{"x":1568198580000,"y":0.2},{"x":1568198640000,"y":0.1},{"x":1568198700000,"y":0.15},{"x":1568198760000,"y":0.06},{"x":1568198820000,"y":0.09},{"x":1568198880000,"y":0.26},{"x":1568198940000,"y":0.07},{"x":1568199000000,"y":0.22},{"x":1568199060000,"y":0.12},{"x":1568199120000,"y":0.15},{"x":1568199180000,"y":0.22},{"x":1568199240000,"y":0.07},{"x":1568199300000,"y":0.22},{"x":1568199360000,"y":0.07},{"x":1568199420000,"y":0.07},{"x":1568199480000,"y":0.3},{"x":1568199540000,"y":0.07},{"x":1568199600000,"y":0.19},{"x":1568199660000,"y":0.05},{"x":1568199720000,"y":0.14},{"x":1568199780000,"y":0.08},{"x":1568199840000,"y":0.25},{"x":1568199900000,"y":0.18},{"x":1568199960000,"y":0.09},{"x":1568200020000,"y":0.07},{"x":1568200080000,"y":0.06},{"x":1568200140000,"y":0.35},{"x":1568200200000,"y":0.2},{"x":1568200260000,"y":0.08},{"x":1568200320000,"y":0.11},{"x":1568200380000,"y":0.1},{"x":1568200440000,"y":0.25},{"x":1568200500000,"y":0.27},{"x":1568200560000,"y":0.07},{"x":1568200620000,"y":0.07},{"x":1568200680000,"y":0.06},{"x":1568200740000,"y":0.22},{"x":1568200800000,"y":0.17},{"x":1568200860000,"y":0.08},{"x":1568200920000,"y":0.08},{"x":1568200980000,"y":0.06},{"x":1568201040000,"y":0.2},{"x":1568201100000,"y":1.4},{"x":1568201160000,"y":0.12},{"x":1568201220000,"y":0.05},{"x":1568201280000,"y":0.08},{"x":1568201340000,"y":0.23},{"x":1568201400000,"y":0.1},{"x":1568201460000,"y":0.07},{"x":1568201520000,"y":0.05},{"x":1568201580000,"y":0.75},{"x":1568201640000,"y":10.96},{"x":1568201700000,"y":0.14},{"x":1568201760000,"y":0.05},{"x":1568201820000,"y":0.07},{"x":1568201880000,"y":0.05},{"x":1568201940000,"y":0.34},{"x":1568202000000,"y":0.15},{"x":1568202060000,"y":0.12},{"x":1568202120000,"y":0.05},{"x":1568202180000,"y":0.1},{"x":1568202240000,"y":0.11},{"x":1568202300000,"y":0.32},{"x":1568202360000,"y":0.06},{"x":1568202420000,"y":0.07},{"x":1568202480000,"y":0.09},{"x":1568202540000,"y":0.06},{"x":1568202600000,"y":0.31},{"x":1568202660000,"y":0.13},{"x":1568202720000,"y":0.1},{"x":1568202780000,"y":0.24},{"x":1568202840000,"y":0.1},{"x":1568202900000,"y":0.32},{"x":1568202960000,"y":0.12},{"x":1568203020000,"y":0.08},{"x":1568203080000,"y":0.12},{"x":1568203140000,"y":0.07},{"x":1568203200000,"y":0.36},{"x":1568203260000,"y":0.11},{"x":1568203320000,"y":0.09},{"x":1568203380000,"y":0.07},{"x":1568203440000,"y":0.08},{"x":1568203500000,"y":0.32},{"x":1568203560000,"y":0.06},{"x":1568203620000,"y":0.09},{"x":1568203680000,"y":0.07},{"x":1568203740000,"y":0.19},{"x":1568203800000,"y":0.64},{"x":1568203860000,"y":0.1},{"x":1568203920000,"y":0.07},{"x":1568203980000,"y":0.1},{"x":1568204040000,"y":0.06},{"x":1568204100000,"y":0.29},{"x":1568204160000,"y":0.07},{"x":1568204220000,"y":0.08},{"x":1568204280000,"y":0.1},{"x":1568204340000,"y":0.1},{"x":1568204400000,"y":0.19},{"x":1568204460000,"y":0.23},{"x":1568204520000,"y":0.06},{"x":1568204580000,"y":0.05},{"x":1568204640000,"y":0.07},{"x":1568204700000,"y":0.19},{"x":1568204760000,"y":0.25},{"x":1568204820000,"y":0.06},{"x":1568204880000,"y":0.08},{"x":1568204940000,"y":0.07},{"x":1568205000000,"y":0.19},{"x":1568205060000,"y":0.22},{"x":1568205120000,"y":0.07},{"x":1568205180000,"y":0.12},{"x":1568205240000,"y":0.11},{"x":1568205300000,"y":0.18},{"x":1568205360000,"y":0.3},{"x":1568205420000,"y":0.15},{"x":1568205480000,"y":0.05},{"x":1568205540000,"y":0.22},{"x":1568205600000,"y":0.21},{"x":1568205660000,"y":0.22},{"x":1568205720000,"y":0.1},{"x":1568205780000,"y":0.07},{"x":1568205840000,"y":0.06},{"x":1568205900000,"y":0.12},{"x":1568205960000,"y":0.35},{"x":1568206020000,"y":0.1},{"x":1568206080000,"y":0.11},{"x":1568206140000,"y":0.08},{"x":1568206200000,"y":0.11},{"x":1568206260000,"y":0.21},{"x":1568206320000,"y":0.09},{"x":1568206380000,"y":0.05},{"x":1568206440000,"y":0.07},{"x":1568206500000,"y":0.18},{"x":1568206560000,"y":0.23},{"x":1568206620000,"y":0.07},{"x":1568206680000,"y":0.07},{"x":1568206740000,"y":0.05},{"x":1568206800000,"y":0.25},{"x":1568206860000,"y":0.07},{"x":1568206920000,"y":0.2},{"x":1568206980000,"y":0.07},{"x":1568207040000,"y":0.06},{"x":1568207100000,"y":0.21},{"x":1568207160000,"y":0.12},{"x":1568207220000,"y":0.25},{"x":1568207280000,"y":0.09},{"x":1568207340000,"y":0.29},{"x":1568207400000,"y":0.14},{"x":1568207460000,"y":0.07},{"x":1568207520000,"y":0.24},{"x":1568207580000,"y":0.76},{"x":1568207640000,"y":0.07},{"x":1568207700000,"y":0.21},{"x":1568207760000,"y":0.07},{"x":1568207820000,"y":0.21},{"x":1568207880000,"y":0.09},{"x":1568207940000,"y":0.09},{"x":1568208000000,"y":0.17},{"x":1568208060000,"y":0.08},{"x":1568208120000,"y":0.22},{"x":1568208180000,"y":0.13},{"x":1568208240000,"y":0.07},{"x":1568208300000,"y":0.1},{"x":1568208360000,"y":0.06},{"x":1568208420000,"y":0.2},{"x":1568208480000,"y":0.06},{"x":1568208540000,"y":0.14},{"x":1568208600000,"y":0.17},{"x":1568208660000,"y":0.08},{"x":1568208720000,"y":0.22},{"x":1568208780000,"y":0.07},{"x":1568208840000,"y":0.07},{"x":1568208900000,"y":0.17},{"x":1568208960000,"y":0.07},{"x":1568209020000,"y":0.2},{"x":1568209080000,"y":0.09},{"x":1568209140000,"y":0.22},{"x":1568209200000,"y":0.14},{"x":1568209260000,"y":0.12},{"x":1568209320000,"y":0.1},{"x":1568209380000,"y":0.32},{"x":1568209440000,"y":0.09},{"x":1568209500000,"y":0.16},{"x":1568209560000,"y":0.09},{"x":1568209620000,"y":0.1},{"x":1568209680000,"y":0.21},{"x":1568209740000,"y":0.09},{"x":1568209800000,"y":0.18},{"x":1568209860000,"y":0.09},{"x":1568209920000,"y":0.07},{"x":1568209980000,"y":5.09},{"x":1568210040000,"y":2.52},{"x":1568210100000,"y":0.19},{"x":1568210160000,"y":0.07},{"x":1568210220000,"y":0.07},{"x":1568210280000,"y":0.2},{"x":1568210340000,"y":0.07},{"x":1568210400000,"y":0.24},{"x":1568210460000,"y":0.07},{"x":1568210520000,"y":0.1},{"x":1568210580000,"y":0.29},{"x":1568210640000,"y":0.08},{"x":1568210700000,"y":0.21},{"x":1568210760000,"y":0.1},{"x":1568210820000,"y":0.08},{"x":1568210880000,"y":0.2},{"x":1568210940000,"y":0.14},{"x":1568211000000,"y":0.22},{"x":1568211060000,"y":0.12},{"x":1568211120000,"y":0.13},{"x":1568211180000,"y":0.26},{"x":1568211240000,"y":0.1},{"x":1568211300000,"y":0.21},{"x":1568211360000,"y":0.08},{"x":1568211420000,"y":0.14},{"x":1568211480000,"y":0.07},{"x":1568211540000,"y":0.29},{"x":1568211600000,"y":0.24},{"x":1568211660000,"y":0.07},{"x":1568211720000,"y":0.08},{"x":1568211780000,"y":0.08},{"x":1568211840000,"y":0.21},{"x":1568211900000,"y":0.19},{"x":1568211960000,"y":0.1},{"x":1568212020000,"y":0.09},{"x":1568212080000,"y":0.1},{"x":1568212140000,"y":0.24},{"x":1568212200000,"y":0.22},{"x":1568212260000,"y":0.09},{"x":1568212320000,"y":0.1},{"x":1568212380000,"y":0.1},{"x":1568212440000,"y":0.25},{"x":1568212500000,"y":0.15},{"x":1568212560000,"y":0.1},{"x":1568212620000,"y":0.13},{"x":1568212680000,"y":0.08},{"x":1568212740000,"y":0.38},{"x":1568212800000,"y":0.12},{"x":1568212860000,"y":0.13},{"x":1568212920000,"y":0.08},{"x":1568212980000,"y":0.08},{"x":1568213040000,"y":0.2},{"x":1568213100000,"y":0.24},{"x":1568213160000,"y":0.08},{"x":1568213220000,"y":0.1},{"x":1568213280000,"y":0.07},{"x":1568213340000,"y":0.25},{"x":1568213400000,"y":0.26},{"x":1568213460000,"y":0.09},{"x":1568213520000,"y":0.11},{"x":1568213580000,"y":0.12},{"x":1568213640000,"y":0.44},{"x":1568213700000,"y":0.59},{"x":1568213760000,"y":0.14},{"x":1568213820000,"y":0.1},{"x":1568213880000,"y":0.12},{"x":1568213940000,"y":0.11},{"x":1568214000000,"y":0.6},{"x":1568214060000,"y":0.1},{"x":1568214120000,"y":0.12},{"x":1568214180000,"y":0.12},{"x":1568214240000,"y":0.08},{"x":1568214300000,"y":0.32},{"x":1568214360000,"y":0.17},{"x":1568214420000,"y":0.14},{"x":1568214480000,"y":0.09},{"x":1568214540000,"y":0.19},{"x":1568214600000,"y":0.32},{"x":1568214660000,"y":0.1},{"x":1568214720000,"y":0.08},{"x":1568214780000,"y":0.12},{"x":1568214840000,"y":0.17},{"x":1568214900000,"y":0.33},{"x":1568214960000,"y":0.08},{"x":1568215020000,"y":0.1},{"x":1568215080000,"y":0.09},{"x":1568215140000,"y":0.1},{"x":1568215200000,"y":0.27},{"x":1568215260000,"y":0.13},{"x":1568215320000,"y":0.1},{"x":1568215380000,"y":0.09},{"x":1568215440000,"y":0.14},{"x":1568215500000,"y":0.33},{"x":1568215560000,"y":0.09},{"x":1568215620000,"y":0.08},{"x":1568215680000,"y":0.11},{"x":1568215740000,"y":0.11},{"x":1568215800000,"y":0.37},{"x":1568215860000,"y":0.1},{"x":1568215920000,"y":0.08},{"x":1568215980000,"y":0.14},{"x":1568216040000,"y":0.11},{"x":1568216100000,"y":0.39},{"x":1568216160000,"y":0.09},{"x":1568216220000,"y":0.1},{"x":1568216280000,"y":0.08},{"x":1568216340000,"y":0.24},{"x":1568216400000,"y":0.16},{"x":1568216460000,"y":0.27},{"x":1568216520000,"y":0.09},{"x":1568216580000,"y":0.12},{"x":1568216640000,"y":0.07},{"x":1568216700000,"y":0.17},{"x":1568216760000,"y":0.24},{"x":1568216820000,"y":0.11},{"x":1568216880000,"y":0.07},{"x":1568216940000,"y":0.08},{"x":1568217000000,"y":0.12},{"x":1568217060000,"y":0.25},{"x":1568217120000,"y":0.05},{"x":1568217180000,"y":0.08},{"x":1568217240000,"y":0.09},{"x":1568217300000,"y":0.53},{"x":1568217360000,"y":0.49},{"x":1568217420000,"y":0.26},{"x":1568217480000,"y":0.08},{"x":1568217540000,"y":0.05},{"x":1568217600000,"y":0.17},{"x":1568217660000,"y":0.23},{"x":1568217720000,"y":0.11},{"x":1568217780000,"y":0.08},{"x":1568217840000,"y":0.1},{"x":1568217900000,"y":0.13},{"x":1568217960000,"y":0.24},{"x":1568218020000,"y":0.17},{"x":1568218080000,"y":0.09},{"x":1568218140000,"y":0.17},{"x":1568218200000,"y":0.2},{"x":1568218260000,"y":8.54},{"x":1568218320000,"y":0.1},{"x":1568218380000,"y":0.12},{"x":1568218440000,"y":0.1},{"x":1568218500000,"y":0.22},{"x":1568218560000,"y":0.24},{"x":1568218620000,"y":0.15},{"x":1568218680000,"y":0.11},{"x":1568218740000,"y":0.17},{"x":1568218800000,"y":0.21},{"x":1568218860000,"y":0.15},{"x":1568218920000,"y":0.32},{"x":1568218980000,"y":0.14},{"x":1568219040000,"y":0.15},{"x":1568219100000,"y":0.24},{"x":1568219160000,"y":0.15},{"x":1568219220000,"y":0.4},{"x":1568219280000,"y":0.17},{"x":1568219340000,"y":0.17},{"x":1568219400000,"y":0.25},{"x":1568219460000,"y":0.22},{"x":1568219520000,"y":0.3},{"x":1568219580000,"y":0.16},{"x":1568219640000,"y":0.15},{"x":1568219700000,"y":0.2},{"x":1568219760000,"y":0.14},{"x":1568219820000,"y":0.29},{"x":1568219880000,"y":0.17},{"x":1568219940000,"y":0.25},{"x":1568220000000,"y":0.25},{"x":1568220060000,"y":0.22},{"x":1568220120000,"y":0.29},{"x":1568220180000,"y":0.16},{"x":1568220240000,"y":0.16},{"x":1568220300000,"y":0.24},{"x":1568220360000,"y":0.17},{"x":1568220420000,"y":0.29},{"x":1568220480000,"y":0.24},{"x":1568220540000,"y":19.51},{"x":1568220600000,"y":18.73},{"x":1568220660000,"y":0.22},{"x":1568220720000,"y":0.54},{"x":1568220780000,"y":0.17},{"x":1568220840000,"y":18.74},{"x":1568220900000,"y":18.53},{"x":1568220960000,"y":19.9},{"x":1568221020000,"y":0.47},{"x":1568221080000,"y":0.35},{"x":1568221140000,"y":18.68},{"x":1568221200000,"y":0.31},{"x":1568221260000,"y":0.36},{"x":1568221320000,"y":0.17},{"x":1568221380000,"y":0.31},{"x":1568221440000,"y":0.21},{"x":1568221500000,"y":0.3},{"x":1568221560000,"y":0.15},{"x":1568221620000,"y":0.22},{"x":1568221680000,"y":0.36},{"x":1568221740000,"y":0.2},{"x":1568221800000,"y":0.22},{"x":1568221860000,"y":0.2},{"x":1568221920000,"y":0.24},{"x":1568221980000,"y":18.71},{"x":1568222040000,"y":0.31},{"x":1568222100000,"y":0.2},{"x":1568222160000,"y":0.18},{"x":1568222220000,"y":0.17},{"x":1568222280000,"y":0.28},{"x":1568222340000,"y":0.17},{"x":1568222400000,"y":0.27},{"x":1568222460000,"y":0.15},{"x":1568222520000,"y":0.16},{"x":1568222580000,"y":0.29},{"x":1568222640000,"y":0.18},{"x":1568222700000,"y":0.25},{"x":1568222760000,"y":0.16},{"x":1568222820000,"y":0.15},{"x":1568222880000,"y":0.29},{"x":1568222940000,"y":0.17},{"x":1568223000000,"y":0.33},{"x":1568223060000,"y":0.16},{"x":1568223120000,"y":0.17},{"x":1568223180000,"y":0.17},{"x":1568223240000,"y":0.35},{"x":1568223300000,"y":0.32},{"x":1568223360000,"y":0.18},{"x":1568223420000,"y":0.17},{"x":1568223480000,"y":0.19},{"x":1568223540000,"y":0.37},{"x":1568223600000,"y":0.24},{"x":1568223660000,"y":0.19},{"x":1568223720000,"y":0.2},{"x":1568223780000,"y":0.17},{"x":1568223840000,"y":0.34},{"x":1568223900000,"y":0.29},{"x":1568223960000,"y":0.22},{"x":1568224020000,"y":0.16},{"x":1568224080000,"y":0.17},{"x":1568224140000,"y":0.36},{"x":1568224200000,"y":0.23},{"x":1568224260000,"y":0.17},{"x":1568224320000,"y":0.24},{"x":1568224380000,"y":0.15},{"x":1568224440000,"y":0.32},{"x":1568224500000,"y":0.22},{"x":1568224560000,"y":0.22},{"x":1568224620000,"y":0.2},{"x":1568224680000,"y":0.19},{"x":1568224740000,"y":0.3},{"x":1568224800000,"y":0.27},{"x":1568224860000,"y":0.17},{"x":1568224920000,"y":0.18},{"x":1568224980000,"y":0.17},{"x":1568225040000,"y":0.3},{"x":1568225100000,"y":0.23},{"x":1568225160000,"y":0.19},{"x":1568225220000,"y":0.2},{"x":1568225280000,"y":0.19},{"x":1568225340000,"y":0.29},{"x":1568225400000,"y":0.55},{"x":1568225460000,"y":0.15},{"x":1568225520000,"y":0.18},{"x":1568225580000,"y":0.16},{"x":1568225640000,"y":0.16},{"x":1568225700000,"y":0.57},{"x":1568225760000,"y":0.17},{"x":1568225820000,"y":0.2},{"x":1568225880000,"y":0.25},{"x":1568225940000,"y":0.17},{"x":1568226000000,"y":0.45},{"x":1568226060000,"y":0.28},{"x":1568226120000,"y":0.2},{"x":1568226180000,"y":0.19},{"x":1568226240000,"y":0.15},{"x":1568226300000,"y":0.38},{"x":1568226360000,"y":0.14},{"x":1568226420000,"y":0.17},{"x":1568226480000,"y":0.24},{"x":1568226540000,"y":0.2},{"x":1568226600000,"y":0.43},{"x":1568226660000,"y":0.21},{"x":1568226720000,"y":0.17},{"x":1568226780000,"y":0.22},{"x":1568226840000,"y":0.2},{"x":1568226900000,"y":0.42},{"x":1568226960000,"y":0.15},{"x":1568227020000,"y":0.17},{"x":1568227080000,"y":0.21},{"x":1568227140000,"y":0.29},{"x":1568227200000,"y":0.43},{"x":1568227260000,"y":0.17},{"x":1568227320000,"y":0.25},{"x":1568227380000,"y":0.15},{"x":1568227440000,"y":0.24},{"x":1568227500000,"y":0.41},{"x":1568227560000,"y":0.16},{"x":1568227620000,"y":0.17},{"x":1568227680000,"y":0.16},{"x":1568227740000,"y":0.16},{"x":1568227800000,"y":0.23},{"x":1568227860000,"y":0.34},{"x":1568227920000,"y":0.15},{"x":1568227980000,"y":0.22},{"x":1568228040000,"y":0.15},{"x":1568228100000,"y":0.27},{"x":1568228160000,"y":0.31},{"x":1568228220000,"y":0.16},{"x":1568228280000,"y":0.19},{"x":1568228340000,"y":0.18},{"x":1568228400000,"y":0.33},{"x":1568228460000,"y":0.3},{"x":1568228520000,"y":0.18},{"x":1568228580000,"y":0.16},{"x":1568228640000,"y":0.12},{"x":1568228700000,"y":0.2},{"x":1568228760000,"y":0.25},{"x":1568228820000,"y":0.08},{"x":1568228880000,"y":0.1},{"x":1568228940000,"y":0.3},{"x":1568229000000,"y":0.15},{"x":1568229060000,"y":0.22},{"x":1568229120000,"y":0.1},{"x":1568229180000,"y":0.11},{"x":1568229240000,"y":0.12},{"x":1568229300000,"y":0.16},{"x":1568229360000,"y":0.55},{"x":1568229420000,"y":0.08},{"x":1568229480000,"y":0.09},{"x":1568229540000,"y":0.1},{"x":1568229600000,"y":0.22},{"x":1568229660000,"y":0.26},{"x":1568229720000,"y":0.08},{"x":1568229780000,"y":0.12},{"x":1568229840000,"y":0.12},{"x":1568229900000,"y":0.2},{"x":1568229960000,"y":0.2},{"x":1568230020000,"y":0.07},{"x":1568230080000,"y":0.1},{"x":1568230140000,"y":0.08},{"x":1568230200000,"y":0.27},{"x":1568230260000,"y":0.09},{"x":1568230320000,"y":0.24},{"x":1568230380000,"y":0.1},{"x":1568230440000,"y":0.1},{"x":1568230500000,"y":0.14},{"x":1568230560000,"y":0.1},{"x":1568230620000,"y":0.29},{"x":1568230680000,"y":0.07},{"x":1568230740000,"y":0.19},{"x":1568230800000,"y":0.21},{"x":1568230860000,"y":0.12},{"x":1568230920000,"y":0.24},{"x":1568230980000,"y":0.1},{"x":1568231040000,"y":0.12},{"x":1568231100000,"y":0.22},{"x":1568231160000,"y":0.09},{"x":1568231220000,"y":0.25},{"x":1568231280000,"y":0.1},{"x":1568231340000,"y":0.1},{"x":1568231400000,"y":0.22},{"x":1568231460000,"y":0.07},{"x":1568231520000,"y":0.34},{"x":1568231580000,"y":0.08},{"x":1568231640000,"y":10.34},{"x":1568231700000,"y":9.36},{"x":1568231760000,"y":0.28},{"x":1568231820000,"y":5.52},{"x":1568231880000,"y":0.35},{"x":1568231940000,"y":0.09},{"x":1568232000000,"y":0.33},{"x":1568232060000,"y":0.17},{"x":1568232120000,"y":0.26},{"x":1568232180000,"y":0.07},{"x":1568232240000,"y":0.08},{"x":1568232300000,"y":0.13},{"x":1568232360000,"y":0.15},{"x":1568232420000,"y":0.22},{"x":1568232480000,"y":0.06},{"x":1568232540000,"y":0.16},{"x":1568232600000,"y":0.14},{"x":1568232660000,"y":0.1},{"x":1568232720000,"y":0.16},{"x":1568232780000,"y":0.26},{"x":1568232840000,"y":0.08},{"x":1568232900000,"y":0.22},{"x":1568232960000,"y":0.13},{"x":1568233020000,"y":0.11},{"x":1568233080000,"y":0.23},{"x":1568233140000,"y":0.12},{"x":1568233200000,"y":0.2},{"x":1568233260000,"y":0.09},{"x":1568233320000,"y":0.07},{"x":1568233380000,"y":0.28},{"x":1568233440000,"y":0.09},{"x":1568233500000,"y":0.28},{"x":1568233560000,"y":0.12},{"x":1568233620000,"y":0.11},{"x":1568233680000,"y":0.22},{"x":1568233740000,"y":0.07},{"x":1568233800000,"y":0.19},{"x":1568233860000,"y":0.09},{"x":1568233920000,"y":0.08},{"x":1568233980000,"y":0.23},{"x":1568234040000,"y":0.09},{"x":1568234100000,"y":0.11},{"x":1568234160000,"y":0.11},{"x":1568234220000,"y":0.09},{"x":1568234280000,"y":0.21},{"x":1568234340000,"y":0.2},{"x":1568234400000,"y":0.16},{"x":1568234460000,"y":0.12},{"x":1568234520000,"y":0.17},{"x":1568234580000,"y":0.25},{"x":1568234640000,"y":0.12},{"x":1568234700000,"y":0.22},{"x":1568234760000,"y":0.13},{"x":1568234820000,"y":0.11},{"x":1568234880000,"y":0.09},{"x":1568234940000,"y":0.24},{"x":1568235000000,"y":0.15},{"x":1568235060000,"y":0.08},{"x":1568235120000,"y":0.07},{"x":1568235180000,"y":0.09},{"x":1568235240000,"y":0.24},{"x":1568235300000,"y":0.17},{"x":1568235360000,"y":0.13},{"x":1568235420000,"y":0.13},{"x":1568235480000,"y":0.12},{"x":1568235540000,"y":0.27},{"x":1568235600000,"y":0.31},{"x":1568235660000,"y":0.17},{"x":1568235720000,"y":0.07},{"x":1568235780000,"y":0.11},{"x":1568235840000,"y":1.87},{"x":1568235900000,"y":0.19},{"x":1568235960000,"y":0.15},{"x":1568236020000,"y":0.12},{"x":1568236080000,"y":0.19},{"x":1568236140000,"y":0.47},{"x":1568236200000,"y":0.22},{"x":1568236260000,"y":0.14},{"x":1568236320000,"y":0.12},{"x":1568236380000,"y":0.11},{"x":1568236440000,"y":0.27},{"x":1568236500000,"y":0.18},{"x":1568236560000,"y":0.1},{"x":1568236620000,"y":0.51},{"x":1568236680000,"y":0.12},{"x":1568236740000,"y":0.25},{"x":1568236800000,"y":0.19},{"x":1568236860000,"y":0.1},{"x":1568236920000,"y":0.1},{"x":1568236980000,"y":0.1},{"x":1568237040000,"y":0.27},{"x":1568237100000,"y":0.22},{"x":1568237160000,"y":0.1},{"x":1568237220000,"y":0.15},{"x":1568237280000,"y":0.15},{"x":1568237340000,"y":0.25},{"x":1568237400000,"y":0.23},{"x":1568237460000,"y":0.11},{"x":1568237520000,"y":0.22},{"x":1568237580000,"y":0.45},{"x":1568237640000,"y":0.1},{"x":1568237700000,"y":0.51},{"x":1568237760000,"y":0.13},{"x":1568237820000,"y":0.15},{"x":1568237880000,"y":0.15},{"x":1568237940000,"y":0.23},{"x":1568238000000,"y":0.39},{"x":1568238060000,"y":0.11},{"x":1568238120000,"y":0.13},{"x":1568238180000,"y":0.11},{"x":1568238240000,"y":0.1},{"x":1568238300000,"y":0.37},{"x":1568238360000,"y":0.1},{"x":1568238420000,"y":0.11},{"x":1568238480000,"y":0.15},{"x":1568238540000,"y":0.11},{"x":1568238600000,"y":0.31},{"x":1568238660000,"y":0.26},{"x":1568238720000,"y":0.54},{"x":1568238780000,"y":0.82},{"x":1568238840000,"y":0.61},{"x":1568238900000,"y":0.9},{"x":1568238960000,"y":0.15},{"x":1568239020000,"y":0.1},{"x":1568239080000,"y":0.13},{"x":1568239140000,"y":0.12},{"x":1568239200000,"y":10.48},{"x":1568239260000,"y":9.11},{"x":1568239320000,"y":0.1},{"x":1568239380000,"y":8.11},{"x":1568239440000,"y":0.22},{"x":1568239500000,"y":21.19},{"x":1568239560000,"y":0.26},{"x":1568239620000,"y":19.03},{"x":1568239680000,"y":0.09},{"x":1568239740000,"y":1.04},{"x":1568239800000,"y":0.33},{"x":1568239860000,"y":0.1},{"x":1568239920000,"y":0.13},{"x":1568239980000,"y":0.1},{"x":1568240040000,"y":0.15},{"x":1568240100000,"y":0.23},{"x":1568240160000,"y":0.25},{"x":1568240220000,"y":0.1},{"x":1568240280000,"y":0.55},{"x":1568240340000,"y":0.13},{"x":1568240400000,"y":0.12},{"x":1568240460000,"y":0.26},{"x":1568240520000,"y":0.08},{"x":1568240580000,"y":0.17},{"x":1568240640000,"y":0.09},{"x":1568240700000,"y":0.19},{"x":1568240760000,"y":0.25},{"x":1568240820000,"y":0.1},{"x":1568240880000,"y":0.13},{"x":1568240940000,"y":0.11},{"x":1568241000000,"y":0.14},{"x":1568241060000,"y":0.25},{"x":1568241120000,"y":0.12},{"x":1568241180000,"y":0.09},{"x":1568241240000,"y":0.12},{"x":1568241300000,"y":4.11},{"x":1568241360000,"y":18.53},{"x":1568241420000,"y":14.23},{"x":1568241480000,"y":22.79},{"x":1568241540000,"y":0.46},{"x":1568241600000,"y":10.21},{"x":1568241660000,"y":15.19},{"x":1568241720000,"y":19.78},{"x":1568241780000,"y":0.31},{"x":1568241840000,"y":0.11},{"x":1568241900000,"y":0.23},{"x":1568241960000,"y":18.95},{"x":1568242020000,"y":15.72},{"x":1568242080000,"y":4.32},{"x":1568242140000,"y":0.15},{"x":1568242200000,"y":37.63},{"x":1568242260000,"y":2.47},{"x":1568242320000,"y":0.55},{"x":1568242380000,"y":0.13},{"x":1568242440000,"y":0.09},{"x":1568242500000,"y":0.29},{"x":1568242560000,"y":0.09},{"x":1568242620000,"y":0.24},{"x":1568242680000,"y":18.46},{"x":1568242740000,"y":0.41},{"x":1568242800000,"y":0.23},{"x":1568242860000,"y":0.1},{"x":1568242920000,"y":0.25},{"x":1568242980000,"y":0.06},{"x":1568243040000,"y":0.12},{"x":1568243100000,"y":0.18},{"x":1568243160000,"y":0.1},{"x":1568243220000,"y":0.26},{"x":1568243280000,"y":0.07},{"x":1568243340000,"y":0.22},{"x":1568243400000,"y":0.15},{"x":1568243460000,"y":0.1},{"x":1568243520000,"y":0.25},{"x":1568243580000,"y":0.1},{"x":1568243640000,"y":0.09},{"x":1568243700000,"y":0.19},{"x":1568243760000,"y":0.1},{"x":1568243820000,"y":0.26},{"x":1568243880000,"y":0.22},{"x":1568243940000,"y":0.25},{"x":1568244000000,"y":0.21},{"x":1568244060000,"y":0.13},{"x":1568244120000,"y":0.27},{"x":1568244180000,"y":0.08},{"x":1568244240000,"y":0.09},{"x":1568244300000,"y":0.35},{"x":1568244360000,"y":0.12},{"x":1568244420000,"y":0.28},{"x":1568244480000,"y":7.58},{"x":1568244540000,"y":11.18},{"x":1568244600000,"y":0.19},{"x":1568244660000,"y":0.09},{"x":1568244720000,"y":0.29},{"x":1568244780000,"y":0.12},{"x":1568244840000,"y":0.06},{"x":1568244900000,"y":0.14},{"x":1568244960000,"y":0.08},{"x":1568245020000,"y":0.09},{"x":1568245080000,"y":0.22},{"x":1568245140000,"y":0.14},{"x":1568245200000,"y":0.13},{"x":1568245260000,"y":0.09},{"x":1568245320000,"y":0.09},{"x":1568245380000,"y":0.24},{"x":1568245440000,"y":0.12},{"x":1568245500000,"y":0.14},{"x":1568245560000,"y":0.09},{"x":1568245620000,"y":0.09},{"x":1568245680000,"y":0.22},{"x":1568245740000,"y":0.09},{"x":1568245800000,"y":0.15},{"x":1568245860000,"y":0.1},{"x":1568245920000,"y":0.11},{"x":1568245980000,"y":0.27},{"x":1568246040000,"y":0.07},{"x":1568246100000,"y":0.15},{"x":1568246160000,"y":0.09},{"x":1568246220000,"y":0.1},{"x":1568246280000,"y":0.22},{"x":1568246340000,"y":0.09},{"x":1568246400000,"y":0.22},{"x":1568246460000,"y":0.07},{"x":1568246520000,"y":0.1},{"x":1568246580000,"y":0.22},{"x":1568246640000,"y":0.1},{"x":1568246700000,"y":0.15},{"x":1568246760000,"y":0.09},{"x":1568246820000,"y":0.08},{"x":1568246880000,"y":0.21},{"x":1568246940000,"y":0.19},{"x":1568247000000,"y":0.27},{"x":1568247060000,"y":0.08},{"x":1568247120000,"y":0.09},{"x":1568247180000,"y":0.07},{"x":1568247240000,"y":0.29},{"x":1568247300000,"y":0.22},{"x":1568247360000,"y":0.08},{"x":1568247420000,"y":0.1},{"x":1568247480000,"y":0.12},{"x":1568247540000,"y":0.24},{"x":1568247600000,"y":0.2},{"x":1568247660000,"y":0.09},{"x":1568247720000,"y":0.07},{"x":1568247780000,"y":0.1},{"x":1568247840000,"y":0.19},{"x":1568247900000,"y":0.21},{"x":1568247960000,"y":0.07},{"x":1568248020000,"y":0.08},{"x":1568248080000,"y":0.11},{"x":1568248140000,"y":0.29},{"x":1568248200000,"y":0.19},{"x":1568248260000,"y":0.11},{"x":1568248320000,"y":0.09},{"x":1568248380000,"y":0.09},{"x":1568248440000,"y":0.22},{"x":1568248500000,"y":0.21},{"x":1568248560000,"y":0.06},{"x":1568248620000,"y":0.09},{"x":1568248680000,"y":0.11},{"x":1568248740000,"y":0.39},{"x":1568248800000,"y":0.14},{"x":1568248860000,"y":0.12},{"x":1568248920000,"y":0.1},{"x":1568248980000,"y":0.07},{"x":1568249040000,"y":0.22},{"x":1568249100000,"y":0.19},{"x":1568249160000,"y":0.12},{"x":1568249220000,"y":0.09},{"x":1568249280000,"y":0.15},{"x":1568249340000,"y":0.26},{"x":1568249400000,"y":0.2},{"x":1568249460000,"y":0.09},{"x":1568249520000,"y":0.1},{"x":1568249580000,"y":0.11},{"x":1568249640000,"y":0.08},{"x":1568249700000,"y":0.52},{"x":1568249760000,"y":0.07},{"x":1568249820000,"y":0.08},{"x":1568249880000,"y":0.1},{"x":1568249940000,"y":0.15},{"x":1568250000000,"y":0.43},{"x":1568250060000,"y":0.14},{"x":1568250120000,"y":0.1},{"x":1568250180000,"y":0.08},{"x":1568250240000,"y":0.08},{"x":1568250300000,"y":0.26},{"x":1568250360000,"y":0.08},{"x":1568250420000,"y":0.09},{"x":1568250480000,"y":0.14},{"x":1568250540000,"y":0.3},{"x":1568250600000,"y":0.32},{"x":1568250660000,"y":0.14},{"x":1568250720000,"y":0.15},{"x":1568250780000,"y":0.15},{"x":1568250840000,"y":0.1},{"x":1568250900000,"y":0.34},{"x":1568250960000,"y":0.13},{"x":1568251020000,"y":0.16},{"x":1568251080000,"y":0.13},{"x":1568251140000,"y":0.25},{"x":1568251200000,"y":0.37},{"x":1568251260000,"y":0.15},{"x":1568251320000,"y":0.09},{"x":1568251380000,"y":0.13},{"x":1568251440000,"y":0.1},{"x":1568251500000,"y":0.38},{"x":1568251560000,"y":0.15},{"x":1568251620000,"y":0.16},{"x":1568251680000,"y":0.16},{"x":1568251740000,"y":0.12},{"x":1568251800000,"y":0.33},{"x":1568251860000,"y":0.12},{"x":1568251920000,"y":0.12},{"x":1568251980000,"y":0.15},{"x":1568252040000,"y":0.19},{"x":1568252100000,"y":0.2},{"x":1568252160000,"y":0.28},{"x":1568252220000,"y":0.13},{"x":1568252280000,"y":0.12},{"x":1568252340000,"y":0.25},{"x":1568252400000,"y":0.2},{"x":1568252460000,"y":0.3},{"x":1568252520000,"y":0.15},{"x":1568252580000,"y":0.14},{"x":1568252640000,"y":0.15},{"x":1568252700000,"y":0.24},{"x":1568252760000,"y":0.32},{"x":1568252820000,"y":0.17},{"x":1568252880000,"y":0.17},{"x":1568252940000,"y":0.14},{"x":1568253000000,"y":0.33},{"x":1568253060000,"y":0.26},{"x":1568253120000,"y":0.18},{"x":1568253180000,"y":0.16},{"x":1568253240000,"y":0.18},{"x":1568253300000,"y":0.27},{"x":1568253360000,"y":0.33},{"x":1568253420000,"y":0.17},{"x":1568253480000,"y":0.15},{"x":1568253540000,"y":0.15},{"x":1568253600000,"y":1.4},{"x":1568253660000,"y":5.41},{"x":1568253720000,"y":0.37},{"x":1568253780000,"y":0.15},{"x":1568253840000,"y":0.19},{"x":1568253900000,"y":0.25},{"x":1568253960000,"y":0.31},{"x":1568254020000,"y":0.15},{"x":1568254080000,"y":0.13},{"x":1568254140000,"y":0.29},{"x":1568254200000,"y":0.26},{"x":1568254260000,"y":0.17},{"x":1568254320000,"y":0.29},{"x":1568254380000,"y":0.16},{"x":1568254440000,"y":0.18},{"x":1568254500000,"y":0.27},{"x":1568254560000,"y":0.15},{"x":1568254620000,"y":0.3},{"x":1568254680000,"y":0.16},{"x":1568254740000,"y":0.17},{"x":1568254800000,"y":0.24},{"x":1568254860000,"y":0.17},{"x":1568254920000,"y":0.33},{"x":1568254980000,"y":0.17},{"x":1568255040000,"y":0.16},{"x":1568255100000,"y":0.18},{"x":1568255160000,"y":0.14},{"x":1568255220000,"y":0.32},{"x":1568255280000,"y":0.16},{"x":1568255340000,"y":0.17},{"x":1568255400000,"y":0.22},{"x":1568255460000,"y":0.15},{"x":1568255520000,"y":0.3},{"x":1568255580000,"y":0.15},{"x":1568255640000,"y":0.14},{"x":1568255700000,"y":0.26},{"x":1568255760000,"y":0.19},{"x":1568255820000,"y":0.3},{"x":1568255880000,"y":0.15},{"x":1568255940000,"y":0.26},{"x":1568256000000,"y":0.22},{"x":1568256060000,"y":0.19},{"x":1568256120000,"y":0.18},{"x":1568256180000,"y":0.32},{"x":1568256240000,"y":0.2},{"x":1568256300000,"y":0.24},{"x":1568256360000,"y":0.17},{"x":1568256420000,"y":0.21},{"x":1568256480000,"y":0.34},{"x":1568256540000,"y":0.17},{"x":1568256600000,"y":0.26},{"x":1568256660000,"y":0.18},{"x":1568256720000,"y":0.16},{"x":1568256780000,"y":0.3},{"x":1568256840000,"y":0.15},{"x":1568256900000,"y":0.21},{"x":1568256960000,"y":0.16},{"x":1568257020000,"y":0.15},{"x":1568257080000,"y":0.28},{"x":1568257140000,"y":0.17},{"x":1568257200000,"y":0.34},{"x":1568257260000,"y":1.19},{"x":1568257320000,"y":0.16},{"x":1568257380000,"y":0.28},{"x":1568257440000,"y":0.15},{"x":1568257500000,"y":0.22},{"x":1568257560000,"y":0.15},{"x":1568257620000,"y":0.15},{"x":1568257680000,"y":0.28},{"x":1568257740000,"y":0.26},{"x":1568257800000,"y":0.22},{"x":1568257860000,"y":0.17},{"x":1568257920000,"y":0.19},{"x":1568257980000,"y":0.29},{"x":1568258040000,"y":0.18},{"x":1568258100000,"y":0.3},{"x":1568258160000,"y":0.17},{"x":1568258220000,"y":0.18},{"x":1568258280000,"y":0.15},{"x":1568258340000,"y":0.3},{"x":1568258400000,"y":0.24},{"x":1568258460000,"y":1.07},{"x":1568258520000,"y":0.17},{"x":1568258580000,"y":0.17},{"x":1568258640000,"y":0.27},{"x":1568258700000,"y":0.31},{"x":1568258760000,"y":0.15},{"x":1568258820000,"y":0.15},{"x":1568258880000,"y":0.17},{"x":1568258940000,"y":0.33},{"x":1568259000000,"y":0.21},{"x":1568259060000,"y":0.18},{"x":1568259120000,"y":0.16},{"x":1568259180000,"y":0.15},{"x":1568259240000,"y":0.35},{"x":1568259300000,"y":0.21},{"x":1568259360000,"y":0.19},{"x":1568259420000,"y":0.17},{"x":1568259480000,"y":0.18},{"x":1568259540000,"y":0.42},{"x":1568259600000,"y":0.22},{"x":1568259660000,"y":0.17},{"x":1568259720000,"y":0.17},{"x":1568259780000,"y":0.18},{"x":1568259840000,"y":0.3},{"x":1568259900000,"y":0.26},{"x":1568259960000,"y":0.18},{"x":1568260020000,"y":0.19},{"x":1568260080000,"y":0.16},{"x":1568260140000,"y":0.17},{"x":1568260200000,"y":0.34},{"x":1568260260000,"y":0.2},{"x":1568260320000,"y":0.16},{"x":1568260380000,"y":0.15},{"x":1568260440000,"y":0.17},{"x":1568260500000,"y":0.36},{"x":1568260560000,"y":0.16},{"x":1568260620000,"y":0.14},{"x":1568260680000,"y":0.15},{"x":1568260740000,"y":0.15},{"x":1568260800000,"y":0.48},{"x":1568260860000,"y":1.54},{"x":1568260920000,"y":0.16},{"x":1568260980000,"y":0.14},{"x":1568261040000,"y":0.16},{"x":1568261100000,"y":0.36},{"x":1568261160000,"y":0.17},{"x":1568261220000,"y":0.15},{"x":1568261280000,"y":0.14},{"x":1568261340000,"y":0.26},{"x":1568261400000,"y":0.36},{"x":1568261460000,"y":0.15},{"x":1568261520000,"y":0.15},{"x":1568261580000,"y":0.14},{"x":1568261640000,"y":0.14},{"x":1568261700000,"y":0.3},{"x":1568261760000,"y":0.14},{"x":1568261820000,"y":0.17},{"x":1568261880000,"y":0.13},{"x":1568261940000,"y":0.14},{"x":1568262000000,"y":0.36},{"x":1568262060000,"y":0.09},{"x":1568262120000,"y":1.05},{"x":1568262180000,"y":0.08},{"x":1568262240000,"y":0.09},{"x":1568262300000,"y":0.28},{"x":1568262360000,"y":0.07},{"x":1568262420000,"y":0.07},{"x":1568262480000,"y":0.07},{"x":1568262540000,"y":0.06},{"x":1568262600000,"y":0.16},{"x":1568262660000,"y":0.25},{"x":1568262720000,"y":0.08},{"x":1568262780000,"y":0.06},{"x":1568262840000,"y":0.07},{"x":1568262900000,"y":0.56},{"x":1568262960000,"y":0.19},{"x":1568263020000,"y":0.06},{"x":1568263080000,"y":0.08},{"x":1568263140000,"y":0.24},{"x":1568263200000,"y":0.17},{"x":1568263260000,"y":0.23},{"x":1568263320000,"y":0.12},{"x":1568263380000,"y":0.08},{"x":1568263440000,"y":0.07},{"x":1568263500000,"y":0.18},{"x":1568263560000,"y":0.24},{"x":1568263620000,"y":0.12},{"x":1568263680000,"y":0.06},{"x":1568263740000,"y":0.08},{"x":1568263800000,"y":0.19},{"x":1568263860000,"y":0.21},{"x":1568263920000,"y":0.06},{"x":1568263980000,"y":0.07},{"x":1568264040000,"y":0.1},{"x":1568264100000,"y":0.15},{"x":1568264160000,"y":0.23},{"x":1568264220000,"y":0.05},{"x":1568264280000,"y":0.08},{"x":1568264340000,"y":0.07},{"x":1568264400000,"y":0.62},{"x":1568264460000,"y":0.05},{"x":1568264520000,"y":0.23},{"x":1568264580000,"y":0.11},{"x":1568264640000,"y":0.06},{"x":1568264700000,"y":0.19},{"x":1568264760000,"y":0.06},{"x":1568264820000,"y":0.23},{"x":1568264880000,"y":0.08},{"x":1568264940000,"y":0.25},{"x":1568265000000,"y":0.14},{"x":1568265060000,"y":0.06},{"x":1568265120000,"y":0.21},{"x":1568265180000,"y":0.09},{"x":1568265240000,"y":0.06},{"x":1568265300000,"y":0.22},{"x":1568265360000,"y":0.05},{"x":1568265420000,"y":0.2},{"x":1568265480000,"y":0.06},{"x":1568265540000,"y":0.05},{"x":1568265600000,"y":0.19},{"x":1568265660000,"y":0.06},{"x":1568265720000,"y":0.19},{"x":1568265780000,"y":0.15},{"x":1568265840000,"y":0.06},{"x":1568265900000,"y":0.15},{"x":1568265960000,"y":0.08},{"x":1568266020000,"y":0.19},{"x":1568266080000,"y":0.1},{"x":1568266140000,"y":0.06},{"x":1568266200000,"y":0.15},{"x":1568266260000,"y":0.07},{"x":1568266320000,"y":0.18},{"x":1568266380000,"y":0.07},{"x":1568266440000,"y":0.05},{"x":1568266500000,"y":0.14},{"x":1568266560000,"y":0.08},{"x":1568266620000,"y":0.23},{"x":1568266680000,"y":0.09},{"x":1568266740000,"y":0.23},{"x":1568266800000,"y":0.14},{"x":1568266860000,"y":0.05},{"x":1568266920000,"y":0.26},{"x":1568266980000,"y":0.05},{"x":1568267040000,"y":0.06},{"x":1568267100000,"y":0.17},{"x":1568267160000,"y":0.1},{"x":1568267220000,"y":0.06},{"x":1568267280000,"y":0.28},{"x":1568267340000,"y":0.08},{"x":1568267400000,"y":0.16},{"x":1568267460000,"y":0.08},{"x":1568267520000,"y":0.05},{"x":1568267580000,"y":0.22},{"x":1568267640000,"y":0.06},{"x":1568267700000,"y":0.2},{"x":1568267760000,"y":0.06},{"x":1568267820000,"y":0.1},{"x":1568267880000,"y":0.33},{"x":1568267940000,"y":0.06},{"x":1568268000000,"y":0.24},{"x":1568268060000,"y":0.1},{"x":1568268120000,"y":0.07},{"x":1568268180000,"y":0.29},{"x":1568268240000,"y":0.12},{"x":1568268300000,"y":0.15},{"x":1568268360000,"y":0.09},{"x":1568268420000,"y":0.08},{"x":1568268480000,"y":0.21},{"x":1568268540000,"y":0.44},{"x":1568268600000,"y":0.14},{"x":1568268660000,"y":0.12},{"x":1568268720000,"y":0.13},{"x":1568268780000,"y":0.24},{"x":1568268840000,"y":0.07},{"x":1568268900000,"y":0.14},{"x":1568268960000,"y":0.12},{"x":1568269020000,"y":0.08},{"x":1568269080000,"y":0.2},{"x":1568269140000,"y":0.09},{"x":1568269200000,"y":0.13},{"x":1568269260000,"y":0.09},{"x":1568269320000,"y":0.07},{"x":1568269380000,"y":0.25},{"x":1568269440000,"y":0.1},{"x":1568269500000,"y":0.29},{"x":1568269560000,"y":0.07},{"x":1568269620000,"y":0.07},{"x":1568269680000,"y":0.07},{"x":1568269740000,"y":0.26},{"x":1568269800000,"y":0.19},{"x":1568269860000,"y":0.11},{"x":1568269920000,"y":0.09},{"x":1568269980000,"y":0.07},{"x":1568270040000,"y":0.24},{"x":1568270100000,"y":0.19},{"x":1568270160000,"y":0.07},{"x":1568270220000,"y":0.1},{"x":1568270280000,"y":0.06},{"x":1568270340000,"y":0.27},{"x":1568270400000,"y":0.11},{"x":1568270460000,"y":0.05},{"x":1568270520000,"y":0.09},{"x":1568270580000,"y":0.1},{"x":1568270640000,"y":0.2},{"x":1568270700000,"y":0.15},{"x":1568270760000,"y":0.08},{"x":1568270820000,"y":0.1},{"x":1568270880000,"y":0.07},{"x":1568270940000,"y":0.2},{"x":1568271000000,"y":0.11},{"x":1568271060000,"y":0.06},{"x":1568271120000,"y":0.08},{"x":1568271180000,"y":0.09},{"x":1568271240000,"y":0.18},{"x":1568271300000,"y":0.13},{"x":1568271360000,"y":0.1},{"x":1568271420000,"y":0.09},{"x":1568271480000,"y":0.09},{"x":1568271540000,"y":0.2},{"x":1568271600000,"y":0.14},{"x":1568271660000,"y":0.08},{"x":1568271720000,"y":0.1},{"x":1568271780000,"y":0.07},{"x":1568271840000,"y":0.1},{"x":1568271900000,"y":0.26},{"x":1568271960000,"y":0.09},{"x":1568272020000,"y":0.06},{"x":1568272080000,"y":0.06},{"x":1568272140000,"y":0.26},{"x":1568272200000,"y":0.33},{"x":1568272260000,"y":0.07},{"x":1568272320000,"y":0.07},{"x":1568272380000,"y":0.05},{"x":1568272440000,"y":0.07},{"x":1568272500000,"y":0.32},{"x":1568272560000,"y":0.05},{"x":1568272620000,"y":0.08},{"x":1568272680000,"y":0.1},{"x":1568272740000,"y":0.07},{"x":1568272800000,"y":0.39},{"x":1568272860000,"y":0.07},{"x":1568272920000,"y":0.07},{"x":1568272980000,"y":0.12},{"x":1568273040000,"y":0.06},{"x":1568273100000,"y":0.27},{"x":1568273160000,"y":0.07},{"x":1568273220000,"y":0.1},{"x":1568273280000,"y":0.12},{"x":1568273340000,"y":0.08},{"x":1568273400000,"y":0.3},{"x":1568273460000,"y":0.08},{"x":1568273520000,"y":0.12},{"x":1568273580000,"y":0.06},{"x":1568273640000,"y":0.07},{"x":1568273700000,"y":0.34},{"x":1568273760000,"y":0.06},{"x":1568273820000,"y":0.07},{"x":1568273880000,"y":0.1},{"x":1568273940000,"y":0.23},{"x":1568274000000,"y":0.33},{"x":1568274060000,"y":0.06},{"x":1568274120000,"y":0.08},{"x":1568274180000,"y":0.06},{"x":1568274240000,"y":0.06},{"x":1568274300000,"y":0.32},{"x":1568274360000,"y":0.05},{"x":1568274420000,"y":0.06},{"x":1568274480000,"y":0.06},{"x":1568274540000,"y":0.06},{"x":1568274600000,"y":0.15},{"x":1568274660000,"y":0.26},{"x":1568274720000,"y":0.09},{"x":1568274780000,"y":0.09},{"x":1568274840000,"y":0.07},{"x":1568274900000,"y":0.13},{"x":1568274960000,"y":0.23},{"x":1568275020000,"y":0.05},{"x":1568275080000,"y":0.1},{"x":1568275140000,"y":0.07},{"x":1568275200000,"y":0.17},{"x":1568275260000,"y":0.2},{"x":1568275320000,"y":0.07},{"x":1568275380000,"y":0.62},{"x":1568275440000,"y":0.06},{"x":1568275500000,"y":0.12},{"x":1568275560000,"y":4.9},{"x":1568275620000,"y":0.14},{"x":1568275680000,"y":0.08},{"x":1568275740000,"y":0.21},{"x":1568275800000,"y":0.15},{"x":1568275860000,"y":0.22},{"x":1568275920000,"y":0.06},{"x":1568275980000,"y":0.1},{"x":1568276040000,"y":0.1},{"x":1568276100000,"y":0.17},{"x":1568276160000,"y":0.23},{"x":1568276220000,"y":0.06},{"x":1568276280000,"y":0.06},{"x":1568276340000,"y":0.05},{"x":1568276400000,"y":0.19},{"x":1568276460000,"y":0.22},{"x":1568276520000,"y":0.1},{"x":1568276580000,"y":0.1},{"x":1568276640000,"y":0.06},{"x":1568276700000,"y":0.18},{"x":1568276760000,"y":0.19},{"x":1568276820000,"y":0.05},{"x":1568276880000,"y":0.07},{"x":1568276940000,"y":0.12},{"x":1568277000000,"y":0.23},{"x":1568277060000,"y":0.08},{"x":1568277120000,"y":0.25},{"x":1568277180000,"y":0.05},{"x":1568277240000,"y":0.07},{"x":1568277300000,"y":0.15},{"x":1568277360000,"y":0.06},{"x":1568277420000,"y":0.2},{"x":1568277480000,"y":0.05},{"x":1568277540000,"y":0.14},{"x":1568277600000,"y":0.16},{"x":1568277660000,"y":0.07},{"x":1568277720000,"y":0.23},{"x":1568277780000,"y":0.07},{"x":1568277840000,"y":0.06},{"x":1568277900000,"y":0.14},{"x":1568277960000,"y":0.09},{"x":1568278020000,"y":0.25},{"x":1568278080000,"y":0.12},{"x":1568278140000,"y":0.07},{"x":1568278200000,"y":0.15},{"x":1568278260000,"y":0.08},{"x":1568278320000,"y":0.23},{"x":1568278380000,"y":0.08},{"x":1568278440000,"y":0.08},{"x":1568278500000,"y":0.19},{"x":1568278560000,"y":0.07},{"x":1568278620000,"y":0.19},{"x":1568278680000,"y":0.05},{"x":1568278740000,"y":0.1},{"x":1568278800000,"y":0.17},{"x":1568278860000,"y":0.1},{"x":1568278920000,"y":0.25},{"x":1568278980000,"y":0.24},{"x":1568279040000,"y":0.05},{"x":1568279100000,"y":0.18},{"x":1568279160000,"y":0.05},{"x":1568279220000,"y":0.22},{"x":1568279280000,"y":0.09},{"x":1568279340000,"y":0.21},{"x":1568279400000,"y":0.12},{"x":1568279460000,"y":0.1},{"x":1568279520000,"y":0.1},{"x":1568279580000,"y":0.24},{"x":1568279640000,"y":0.07},{"x":1568279700000,"y":0.12},{"x":1568279760000,"y":0.1},{"x":1568279820000,"y":0.07},{"x":1568279880000,"y":0.25},{"x":1568279940000,"y":0.07},{"x":1568280000000,"y":0.18},{"x":1568280060000,"y":0.08},{"x":1568280120000,"y":0.07},{"x":1568280180000,"y":0.25},{"x":1568280240000,"y":0.1},{"x":1568280300000,"y":0.17},{"x":1568280360000,"y":0.06},{"x":1568280420000,"y":0.07},{"x":1568280480000,"y":0.24},{"x":1568280540000,"y":0.08},{"x":1568280600000,"y":0.14},{"x":1568280660000,"y":0.09},{"x":1568280720000,"y":0.07},{"x":1568280780000,"y":0.2},{"x":1568280840000,"y":0.06},{"x":1568280900000,"y":0.21},{"x":1568280960000,"y":0.1},{"x":1568281020000,"y":0.08},{"x":1568281080000,"y":0.22},{"x":1568281140000,"y":0.22},{"x":1568281200000,"y":0.13},{"x":1568281260000,"y":0.09},{"x":1568281320000,"y":0.09},{"x":1568281380000,"y":0.18},{"x":1568281440000,"y":0.11},{"x":1568281500000,"y":0.19},{"x":1568281560000,"y":0.11},{"x":1568281620000,"y":0.08},{"x":1568281680000,"y":0.18},{"x":1568281740000,"y":0.09},{"x":1568281800000,"y":0.2},{"x":1568281860000,"y":0.07},{"x":1568281920000,"y":0.09},{"x":1568281980000,"y":0.07},{"x":1568282040000,"y":0.22},{"x":1568282100000,"y":0.12},{"x":1568282160000,"y":0.09},{"x":1568282220000,"y":0.07},{"x":1568282280000,"y":0.07},{"x":1568282340000,"y":0.19},{"x":1568282400000,"y":0.17},{"x":1568282460000,"y":0.09},{"x":1568282520000,"y":0.07},{"x":1568282580000,"y":0.08},{"x":1568282640000,"y":3.06},{"x":1568282700000,"y":0.15},{"x":1568282760000,"y":0.06},{"x":1568282820000,"y":0.07},{"x":1568282880000,"y":0.07},{"x":1568282940000,"y":0.42},{"x":1568283000000,"y":0.18},{"x":1568283060000,"y":0.07},{"x":1568283120000,"y":0.11},{"x":1568283180000,"y":0.05},{"x":1568283240000,"y":0.22},{"x":1568283300000,"y":0.16},{"x":1568283360000,"y":0.05},{"x":1568283420000,"y":0.08},{"x":1568283480000,"y":0.06},{"x":1568283540000,"y":0.27},{"x":1568283600000,"y":0.2},{"x":1568283660000,"y":0.09},{"x":1568283720000,"y":0.08},{"x":1568283780000,"y":0.09},{"x":1568283840000,"y":0.6},{"x":1568283900000,"y":0.29},{"x":1568283960000,"y":0.12},{"x":1568284020000,"y":0.05},{"x":1568284080000,"y":0.12},{"x":1568284140000,"y":0.13},{"x":1568284200000,"y":0.35},{"x":1568284260000,"y":0.07},{"x":1568284320000,"y":0.12},{"x":1568284380000,"y":0.11},{"x":1568284440000,"y":0.12},{"x":1568284500000,"y":0.33},{"x":1568284560000,"y":0.05},{"x":1568284620000,"y":0.07},{"x":1568284680000,"y":0.05},{"x":1568284740000,"y":0.26},{"x":1568284800000,"y":0.31},{"x":1568284860000,"y":0.11},{"x":1568284920000,"y":0.12},{"x":1568284980000,"y":0.16},{"x":1568285040000,"y":0.06},{"x":1568285100000,"y":0.31},{"x":1568285160000,"y":0.08},{"x":1568285220000,"y":0.14},{"x":1568285280000,"y":0.16},{"x":1568285340000,"y":0.16},{"x":1568285400000,"y":0.41},{"x":1568285460000,"y":0.1},{"x":1568285520000,"y":0.2},{"x":1568285580000,"y":0.15},{"x":1568285640000,"y":0.09},{"x":1568285700000,"y":0.37},{"x":1568285760000,"y":0.14},{"x":1568285820000,"y":0.22},{"x":1568285880000,"y":0.15},{"x":1568285940000,"y":0.19},{"x":1568286000000,"y":0.3},{"x":1568286060000,"y":0.34},{"x":1568286120000,"y":0.15},{"x":1568286180000,"y":0.13},{"x":1568286240000,"y":1.4},{"x":1568286300000,"y":0.3},{"x":1568286360000,"y":0.29},{"x":1568286420000,"y":0.15},{"x":1568286480000,"y":0.15},{"x":1568286540000,"y":0.24},{"x":1568286600000,"y":0.19},{"x":1568286660000,"y":0.29},{"x":1568286720000,"y":0.16},{"x":1568286780000,"y":0.15},{"x":1568286840000,"y":0.19},{"x":1568286900000,"y":0.19},{"x":1568286960000,"y":0.3},{"x":1568287020000,"y":5.31},{"x":1568287080000,"y":4.95},{"x":1568287140000,"y":0.18},{"x":1568287200000,"y":0.2},{"x":1568287260000,"y":0.29},{"x":1568287320000,"y":0.16},{"x":1568287380000,"y":0.17},{"x":1568287440000,"y":1.01},{"x":1568287500000,"y":1.62},{"x":1568287560000,"y":0.3},{"x":1568287620000,"y":0.17},{"x":1568287680000,"y":0.16},{"x":1568287740000,"y":0.18},{"x":1568287800000,"y":0.2},{"x":1568287860000,"y":0.3},{"x":1568287920000,"y":0.15},{"x":1568287980000,"y":0.18},{"x":1568288040000,"y":0.15},{"x":1568288100000,"y":0.24},{"x":1568288160000,"y":0.32},{"x":1568288220000,"y":0.15},{"x":1568288280000,"y":0.17},{"x":1568288340000,"y":0.27},{"x":1568288400000,"y":0.2},{"x":1568288460000,"y":0.15},{"x":1568288520000,"y":0.3},{"x":1568288580000,"y":0.15},{"x":1568288640000,"y":0.14},{"x":1568288700000,"y":0.29},{"x":1568288760000,"y":0.14},{"x":1568288820000,"y":0.3},{"x":1568288880000,"y":0.15},{"x":1568288940000,"y":0.17},{"x":1568289000000,"y":0.3},{"x":1568289060000,"y":0.16},{"x":1568289120000,"y":0.31},{"x":1568289180000,"y":0.17},{"x":1568289240000,"y":0.16},{"x":1568289300000,"y":0.21},{"x":1568289360000,"y":0.18},{"x":1568289420000,"y":0.33},{"x":1568289480000,"y":0.14},{"x":1568289540000,"y":0.15},{"x":1568289600000,"y":0.25},{"x":1568289660000,"y":0.15},{"x":1568289720000,"y":0.31},{"x":1568289780000,"y":0.16},{"x":1568289840000,"y":1.92},{"x":1568289900000,"y":0.21},{"x":1568289960000,"y":0.17},{"x":1568290020000,"y":0.29},{"x":1568290080000,"y":0.16},{"x":1568290140000,"y":0.38},{"x":1568290200000,"y":0.28},{"x":1568290260000,"y":0.18},{"x":1568290320000,"y":0.41},{"x":1568290380000,"y":0.17},{"x":1568290440000,"y":0.19},{"x":1568290500000,"y":0.26},{"x":1568290560000,"y":0.15},{"x":1568290620000,"y":0.28},{"x":1568290680000,"y":0.14},{"x":1568290740000,"y":0.17},{"x":1568290800000,"y":0.24},{"x":1568290860000,"y":0.18},{"x":1568290920000,"y":0.15},{"x":1568290980000,"y":0.29},{"x":1568291040000,"y":0.15},{"x":1568291100000,"y":0.67},{"x":1568291160000,"y":0.16},{"x":1568291220000,"y":0.15},{"x":1568291280000,"y":0.31},{"x":1568291340000,"y":0.15},{"x":1568291400000,"y":0.25},{"x":1568291460000,"y":0.17},{"x":1568291520000,"y":0.16},{"x":1568291580000,"y":0.3},{"x":1568291640000,"y":0.15},{"x":1568291700000,"y":0.28},{"x":1568291760000,"y":0.17},{"x":1568291820000,"y":0.18},{"x":1568291880000,"y":0.29},{"x":1568291940000,"y":0.22},{"x":1568292000000,"y":0.19},{"x":1568292060000,"y":0.15},{"x":1568292120000,"y":0.17},{"x":1568292180000,"y":0.29},{"x":1568292240000,"y":0.16},{"x":1568292300000,"y":0.22},{"x":1568292360000,"y":0.16},{"x":1568292420000,"y":0.16},{"x":1568292480000,"y":0.33},{"x":1568292540000,"y":0.17},{"x":1568292600000,"y":0.28},{"x":1568292660000,"y":0.17},{"x":1568292720000,"y":0.16},{"x":1568292780000,"y":0.31},{"x":1568292840000,"y":0.17},{"x":1568292900000,"y":0.23},{"x":1568292960000,"y":0.17},{"x":1568293020000,"y":0.16},{"x":1568293080000,"y":0.28},{"x":1568293140000,"y":0.17},{"x":1568293200000,"y":0.34},{"x":1568293260000,"y":0.15},{"x":1568293320000,"y":0.18},{"x":1568293380000,"y":0.17},{"x":1568293440000,"y":0.32},{"x":1568293500000,"y":0.25},{"x":1568293560000,"y":0.16},{"x":1568293620000,"y":0.18},{"x":1568293680000,"y":0.19},{"x":1568293740000,"y":0.45},{"x":1568293800000,"y":0.31},{"x":1568293860000,"y":0.21},{"x":1568293920000,"y":0.17},{"x":1568293980000,"y":0.18},{"x":1568294040000,"y":0.3},{"x":1568294100000,"y":0.23},{"x":1568294160000,"y":0.2},{"x":1568294220000,"y":0.21},{"x":1568294280000,"y":0.17},{"x":1568294340000,"y":0.31},{"x":1568294400000,"y":0.21},{"x":1568294460000,"y":0.15},{"x":1568294520000,"y":0.15},{"x":1568294580000,"y":0.18},{"x":1568294640000,"y":0.29},{"x":1568294700000,"y":0.25},{"x":1568294760000,"y":0.22},{"x":1568294820000,"y":0.19},{"x":1568294880000,"y":0.15},{"x":1568294940000,"y":0.27},{"x":1568295000000,"y":0.22},{"x":1568295060000,"y":0.16},{"x":1568295120000,"y":0.17},{"x":1568295180000,"y":0.13},{"x":1568295240000,"y":0.28},{"x":1568295300000,"y":0.25},{"x":1568295360000,"y":0.14},{"x":1568295420000,"y":0.08},{"x":1568295480000,"y":0.1},{"x":1568295540000,"y":0.25},{"x":1568295600000,"y":0.42},{"x":1568295660000,"y":0.07},{"x":1568295720000,"y":0.12},{"x":1568295780000,"y":0.1},{"x":1568295840000,"y":0.11},{"x":1568295900000,"y":0.3},{"x":1568295960000,"y":0.07},{"x":1568296020000,"y":0.1},{"x":1568296080000,"y":0.08},{"x":1568296140000,"y":0.07},{"x":1568296200000,"y":0.34},{"x":1568296260000,"y":0.09},{"x":1568296320000,"y":0.08},{"x":1568296380000,"y":0.08},{"x":1568296440000,"y":0.07},{"x":1568296500000,"y":0.29},{"x":1568296560000,"y":0.07},{"x":1568296620000,"y":0.06},{"x":1568296680000,"y":0.11},{"x":1568296740000,"y":0.08},{"x":1568296800000,"y":0.31},{"x":1568296860000,"y":0.08},{"x":1568296920000,"y":0.06},{"x":1568296980000,"y":0.07},{"x":1568297040000,"y":0.1},{"x":1568297100000,"y":0.27},{"x":1568297160000,"y":0.07},{"x":1568297220000,"y":0.12},{"x":1568297280000,"y":0.1},{"x":1568297340000,"y":0.15},{"x":1568297400000,"y":5.08},{"x":1568297460000,"y":0.17},{"x":1568297520000,"y":0.07},{"x":1568297580000,"y":0.11},{"x":1568297640000,"y":0.07},{"x":1568297700000,"y":0.36},{"x":1568297760000,"y":0.06},{"x":1568297820000,"y":0.08},{"x":1568297880000,"y":0.08},{"x":1568297940000,"y":0.08},{"x":1568298000000,"y":0.18},{"x":1568298060000,"y":0.2},{"x":1568298120000,"y":0.09},{"x":1568298180000,"y":0.07},{"x":1568298240000,"y":0.05},{"x":1568298300000,"y":0.39},{"x":1568298360000,"y":0.24},{"x":1568298420000,"y":0.07},{"x":1568298480000,"y":0.1},{"x":1568298540000,"y":0.06},{"x":1568298600000,"y":0.21},{"x":1568298660000,"y":0.23},{"x":1568298720000,"y":0.09},{"x":1568298780000,"y":0.1},{"x":1568298840000,"y":0.08},{"x":1568298900000,"y":0.25},{"x":1568298960000,"y":0.25},{"x":1568299020000,"y":0.07},{"x":1568299080000,"y":0.09},{"x":1568299140000,"y":0.25},{"x":1568299200000,"y":0.2},{"x":1568299260000,"y":0.23},{"x":1568299320000,"y":0.09},{"x":1568299380000,"y":0.11},{"x":1568299440000,"y":0.13},{"x":1568299500000,"y":0.14},{"x":1568299560000,"y":0.24},{"x":1568299620000,"y":0.11},{"x":1568299680000,"y":0.05},{"x":1568299740000,"y":0.1},{"x":1568299800000,"y":0.15},{"x":1568299860000,"y":0.25},{"x":1568299920000,"y":0.09},{"x":1568299980000,"y":0.12},{"x":1568300040000,"y":0.11},{"x":1568300100000,"y":0.22},{"x":1568300160000,"y":0.23},{"x":1568300220000,"y":0.07},{"x":1568300280000,"y":0.12},{"x":1568300340000,"y":0.07},{"x":1568300400000,"y":0.17},{"x":1568300460000,"y":0.23},{"x":1568300520000,"y":0.12},{"x":1568300580000,"y":0.11},{"x":1568300640000,"y":0.1},{"x":1568300700000,"y":1.53},{"x":1568300760000,"y":0.12},{"x":1568300820000,"y":0.24},{"x":1568300880000,"y":0.07},{"x":1568300940000,"y":0.25},{"x":1568301000000,"y":0.21},{"x":1568301060000,"y":0.1},{"x":1568301120000,"y":0.25},{"x":1568301180000,"y":0.08},{"x":1568301240000,"y":0.07},{"x":1568301300000,"y":0.14},{"x":1568301360000,"y":0.07},{"x":1568301420000,"y":0.22},{"x":1568301480000,"y":0.07},{"x":1568301540000,"y":0.1},{"x":1568301600000,"y":0.21},{"x":1568301660000,"y":0.09},{"x":1568301720000,"y":0.24},{"x":1568301780000,"y":0.08},{"x":1568301840000,"y":0.08},{"x":1568301900000,"y":2.05},{"x":1568301960000,"y":0.1},{"x":1568302020000,"y":0.22},{"x":1568302080000,"y":0.14},{"x":1568302140000,"y":0.1},{"x":1568302200000,"y":0.23},{"x":1568302260000,"y":0.1},{"x":1568302320000,"y":0.27},{"x":1568302380000,"y":0.1},{"x":1568302440000,"y":0.06},{"x":1568302500000,"y":0.18},{"x":1568302560000,"y":0.09},{"x":1568302620000,"y":0.21},{"x":1568302680000,"y":0.1},{"x":1568302740000,"y":0.24},{"x":1568302800000,"y":0.15},{"x":1568302860000,"y":0.07},{"x":1568302920000,"y":0.23},{"x":1568302980000,"y":0.09},{"x":1568303040000,"y":0.09},{"x":1568303100000,"y":0.15},{"x":1568303160000,"y":0.08},{"x":1568303220000,"y":0.09},{"x":1568303280000,"y":0.21},{"x":1568303340000,"y":0.1},{"x":1568303400000,"y":0.15},{"x":1568303460000,"y":0.08},{"x":1568303520000,"y":0.09},{"x":1568303580000,"y":0.21},{"x":1568303640000,"y":0.09},{"x":1568303700000,"y":0.13},{"x":1568303760000,"y":0.1},{"x":1568303820000,"y":0.06},{"x":1568303880000,"y":0.24},{"x":1568303940000,"y":0.11},{"x":1568304000000,"y":0.19},{"x":1568304060000,"y":0.09},{"x":1568304120000,"y":0.1},{"x":1568304180000,"y":0.24},{"x":1568304240000,"y":0.08},{"x":1568304300000,"y":4.77},{"x":1568304360000,"y":6.32},{"x":1568304420000,"y":0.1},{"x":1568304480000,"y":0.22},{"x":1568304540000,"y":0.19},{"x":1568304600000,"y":0.15},{"x":1568304660000,"y":0.09},{"x":1568304720000,"y":0.08},{"x":1568304780000,"y":0.25},{"x":1568304840000,"y":0.12},{"x":1568304900000,"y":0.23},{"x":1568304960000,"y":0.11},{"x":1568305020000,"y":0.08},{"x":1568305080000,"y":0.27},{"x":1568305140000,"y":0.08},{"x":1568305200000,"y":0.16},{"x":1568305260000,"y":0.08},{"x":1568305320000,"y":0.1},{"x":1568305380000,"y":0.09},{"x":1568305440000,"y":0.26},{"x":1568305500000,"y":0.19},{"x":1568305560000,"y":0.09},{"x":1568305620000,"y":0.14},{"x":1568305680000,"y":0.15},{"x":1568305740000,"y":0.23},{"x":1568305800000,"y":0.21},{"x":1568305860000,"y":0.09},{"x":1568305920000,"y":0.09},{"x":1568305980000,"y":0.08},{"x":1568306040000,"y":0.21},{"x":1568306100000,"y":0.21},{"x":1568306160000,"y":0.15},{"x":1568306220000,"y":0.1},{"x":1568306280000,"y":0.1},{"x":1568306340000,"y":0.34},{"x":1568306400000,"y":0.24},{"x":1568306460000,"y":0.07},{"x":1568306520000,"y":0.12},{"x":1568306580000,"y":0.13},{"x":1568306640000,"y":0.25},{"x":1568306700000,"y":0.18},{"x":1568306760000,"y":0.1},{"x":1568306820000,"y":0.07},{"x":1568306880000,"y":0.07},{"x":1568306940000,"y":0.27},{"x":1568307000000,"y":0.18},{"x":1568307060000,"y":0.09},{"x":1568307120000,"y":0.12},{"x":1568307180000,"y":0.06},{"x":1568307240000,"y":0.22},{"x":1568307300000,"y":0.22},{"x":1568307360000,"y":0.1},{"x":1568307420000,"y":0.07},{"x":1568307480000,"y":0.09},{"x":1568307540000,"y":0.08},{"x":1568307600000,"y":0.44},{"x":1568307660000,"y":0.09},{"x":1568307720000,"y":0.1},{"x":1568307780000,"y":0.08},{"x":1568307840000,"y":0.07},{"x":1568307900000,"y":0.3},{"x":1568307960000,"y":0.1},{"x":1568308020000,"y":0.07},{"x":1568308080000,"y":0.12},{"x":1568308140000,"y":0.27},{"x":1568308200000,"y":0.34},{"x":1568308260000,"y":0.1},{"x":1568308320000,"y":0.08},{"x":1568308380000,"y":0.08},{"x":1568308440000,"y":0.08},{"x":1568308500000,"y":0.34},{"x":1568308560000,"y":0.07},{"x":1568308620000,"y":0.07},{"x":1568308680000,"y":0.07},{"x":1568308740000,"y":0.09},{"x":1568308800000,"y":0.37},{"x":1568308860000,"y":0.06},{"x":1568308920000,"y":0.09},{"x":1568308980000,"y":0.08},{"x":1568309040000,"y":0.05},{"x":1568309100000,"y":0.31},{"x":1568309160000,"y":0.26},{"x":1568309220000,"y":0.1},{"x":1568309280000,"y":0.1},{"x":1568309340000,"y":0.07},{"x":1568309400000,"y":0.19},{"x":1568309460000,"y":0.29},{"x":1568309520000,"y":0.11},{"x":1568309580000,"y":0.08},{"x":1568309640000,"y":0.1},{"x":1568309700000,"y":0.24},{"x":1568309760000,"y":0.25},{"x":1568309820000,"y":0.14},{"x":1568309880000,"y":0.11},{"x":1568309940000,"y":0.16},{"x":1568310000000,"y":0.18},{"x":1568310060000,"y":0.25},{"x":1568310120000,"y":0.24},{"x":1568310180000,"y":0.12},{"x":1568310240000,"y":0.61},{"x":1568310300000,"y":0.19},{"x":1568310360000,"y":0.25},{"x":1568310420000,"y":0.15},{"x":1568310480000,"y":0.09},{"x":1568310540000,"y":0.08},{"x":1568310600000,"y":0.2},{"x":1568310660000,"y":0.24},{"x":1568310720000,"y":0.11},{"x":1568310780000,"y":0.12},{"x":1568310840000,"y":0.08},{"x":1568310900000,"y":0.19},{"x":1568310960000,"y":0.28},{"x":1568311020000,"y":0.09},{"x":1568311080000,"y":0.08},{"x":1568311140000,"y":0.09},{"x":1568311200000,"y":0.24},{"x":1568311260000,"y":0.26},{"x":1568311320000,"y":0.11},{"x":1568311380000,"y":0.1},{"x":1568311440000,"y":0.1},{"x":1568311500000,"y":0.21},{"x":1568311560000,"y":0.12},{"x":1568311620000,"y":0.27},{"x":1568311680000,"y":0.15},{"x":1568311740000,"y":0.13},{"x":1568311800000,"y":1.15},{"x":1568311860000,"y":0.08},{"x":1568311920000,"y":0.25},{"x":1568311980000,"y":0.1},{"x":1568312040000,"y":0.07},{"x":1568312100000,"y":0.18},{"x":1568312160000,"y":0.55},{"x":1568312220000,"y":0.25},{"x":1568312280000,"y":0.54},{"x":1568312340000,"y":0.52},{"x":1568312400000,"y":0.21},{"x":1568312460000,"y":0.1},{"x":1568312520000,"y":0.28},{"x":1568312580000,"y":0.11},{"x":1568312640000,"y":0.1},{"x":1568312700000,"y":0.2},{"x":1568312760000,"y":0.63},{"x":1568312820000,"y":0.26},{"x":1568312880000,"y":0.12},{"x":1568312940000,"y":0.08},{"x":1568313000000,"y":0.23},{"x":1568313060000,"y":0.1},{"x":1568313120000,"y":0.27},{"x":1568313180000,"y":0.11},{"x":1568313240000,"y":0.14},{"x":1568313300000,"y":0.18},{"x":1568313360000,"y":0.11},{"x":1568313420000,"y":0.23},{"x":1568313480000,"y":0.09},{"x":1568313540000,"y":0.28},{"x":1568313600000,"y":4.58},{"x":1568313660000,"y":18.79},{"x":1568313720000,"y":0.3},{"x":1568313780000,"y":16.24},{"x":1568313840000,"y":2.97},{"x":1568313900000,"y":0.41},{"x":1568313960000,"y":0.1},{"x":1568314020000,"y":0.16},{"x":1568314080000,"y":0.31},{"x":1568314140000,"y":0.11},{"x":1568314200000,"y":0.26},{"x":1568314260000,"y":0.14},{"x":1568314320000,"y":0.1},{"x":1568314380000,"y":0.29},{"x":1568314440000,"y":0.11},{"x":1568314500000,"y":0.19},{"x":1568314560000,"y":0.11},{"x":1568314620000,"y":0.09},{"x":1568314680000,"y":0.26},{"x":1568314740000,"y":0.15},{"x":1568314800000,"y":0.25},{"x":1568314860000,"y":0.09},{"x":1568314920000,"y":20.66},{"x":1568314980000,"y":0.48},{"x":1568315040000,"y":0.15},{"x":1568315100000,"y":0.27},{"x":1568315160000,"y":0.16},{"x":1568315220000,"y":0.13},{"x":1568315280000,"y":0.28},{"x":1568315340000,"y":0.27},{"x":1568315400000,"y":0.23},{"x":1568315460000,"y":0.13},{"x":1568315520000,"y":0.13},{"x":1568315580000,"y":0.29},{"x":1568315640000,"y":0.16},{"x":1568315700000,"y":0.32},{"x":1568315760000,"y":0.15},{"x":1568315820000,"y":0.16},{"x":1568315880000,"y":0.27},{"x":1568315940000,"y":0.17},{"x":1568316000000,"y":0.27},{"x":1568316060000,"y":0.09},{"x":1568316120000,"y":0.12},{"x":1568316180000,"y":0.16},{"x":1568316240000,"y":0.28},{"x":1568316300000,"y":0.23},{"x":1568316360000,"y":0.08},{"x":1568316420000,"y":0.15},{"x":1568316480000,"y":0.12},{"x":1568316540000,"y":0.31},{"x":1568316600000,"y":0.25},{"x":1568316660000,"y":0.1},{"x":1568316720000,"y":0.12},{"x":1568316780000,"y":0.17},{"x":1568316840000,"y":0.32},{"x":1568316900000,"y":0.22},{"x":1568316960000,"y":0.1},{"x":1568317020000,"y":0.12},{"x":1568317080000,"y":0.15},{"x":1568317140000,"y":0.53},{"x":1568317200000,"y":0.28},{"x":1568317260000,"y":0.12},{"x":1568317320000,"y":0.13},{"x":1568317380000,"y":0.2},{"x":1568317440000,"y":0.29},{"x":1568317500000,"y":0.27},{"x":1568317560000,"y":0.15},{"x":1568317620000,"y":0.23},{"x":1568317680000,"y":0.19},{"x":1568317740000,"y":0.35},{"x":1568317800000,"y":0.32},{"x":1568317860000,"y":0.2},{"x":1568317920000,"y":0.12},{"x":1568317980000,"y":0.18},{"x":1568318040000,"y":0.33},{"x":1568318100000,"y":0.48},{"x":1568318160000,"y":0.49},{"x":1568318220000,"y":0.7},{"x":1568318280000,"y":0.57},{"x":1568318340000,"y":0.92},{"x":1568318400000,"y":0.37},{"x":1568318460000,"y":0.21},{"x":1568318520000,"y":0.2},{"x":1568318580000,"y":0.15},{"x":1568318640000,"y":0.23},{"x":1568318700000,"y":19.6},{"x":1568318760000,"y":0.22},{"x":1568318820000,"y":0.56},{"x":1568318880000,"y":0.19},{"x":1568318940000,"y":0.29},{"x":1568319000000,"y":0.51},{"x":1568319060000,"y":0.17},{"x":1568319120000,"y":0.18},{"x":1568319180000,"y":0.17},{"x":1568319240000,"y":0.16},{"x":1568319300000,"y":4.23},{"x":1568319360000,"y":0.22},{"x":1568319420000,"y":0.21},{"x":1568319480000,"y":0.17},{"x":1568319540000,"y":0.21},{"x":1568319600000,"y":0.42},{"x":1568319660000,"y":0.19},{"x":1568319720000,"y":0.25},{"x":1568319780000,"y":0.17},{"x":1568319840000,"y":0.2},{"x":1568319900000,"y":0.39},{"x":1568319960000,"y":0.17},{"x":1568320020000,"y":0.19},{"x":1568320080000,"y":0.19},{"x":1568320140000,"y":0.16},{"x":1568320200000,"y":0.45},{"x":1568320260000,"y":0.17},{"x":1568320320000,"y":0.19},{"x":1568320380000,"y":0.17},{"x":1568320440000,"y":0.15},{"x":1568320500000,"y":0.4},{"x":1568320560000,"y":0.16},{"x":1568320620000,"y":0.17},{"x":1568320680000,"y":0.16},{"x":1568320740000,"y":0.21},{"x":1568320800000,"y":0.27},{"x":1568320860000,"y":0.3},{"x":1568320920000,"y":0.17},{"x":1568320980000,"y":0.27},{"x":1568321040000,"y":0.2},{"x":1568321100000,"y":0.3},{"x":1568321160000,"y":0.3},{"x":1568321220000,"y":0.19},{"x":1568321280000,"y":0.21},{"x":1568321340000,"y":0.2},{"x":1568321400000,"y":0.26},{"x":1568321460000,"y":0.32},{"x":1568321520000,"y":0.17},{"x":1568321580000,"y":0.18},{"x":1568321640000,"y":0.2},{"x":1568321700000,"y":0.25},{"x":1568321760000,"y":0.3},{"x":1568321820000,"y":0.14},{"x":1568321880000,"y":0.17},{"x":1568321940000,"y":0.17},{"x":1568322000000,"y":0.35},{"x":1568322060000,"y":0.3},{"x":1568322120000,"y":0.15},{"x":1568322180000,"y":0.15},{"x":1568322240000,"y":0.24},{"x":1568322300000,"y":0.23},{"x":1568322360000,"y":0.35},{"x":1568322420000,"y":0.18},{"x":1568322480000,"y":0.17},{"x":1568322540000,"y":0.27},{"x":1568322600000,"y":0.26},{"x":1568322660000,"y":0.32},{"x":1568322720000,"y":0.16},{"x":1568322780000,"y":0.2},{"x":1568322840000,"y":0.22},{"x":1568322900000,"y":0.2},{"x":1568322960000,"y":0.31},{"x":1568323020000,"y":0.16},{"x":1568323080000,"y":0.21},{"x":1568323140000,"y":0.17},{"x":1568323200000,"y":0.27},{"x":1568323260000,"y":0.3},{"x":1568323320000,"y":0.16},{"x":1568323380000,"y":0.19},{"x":1568323440000,"y":0.18},{"x":1568323500000,"y":0.25},{"x":1568323560000,"y":0.19},{"x":1568323620000,"y":0.31},{"x":1568323680000,"y":0.2},{"x":1568323740000,"y":19.15},{"x":1568323800000,"y":19.48},{"x":1568323860000,"y":0.36},{"x":1568323920000,"y":0.38},{"x":1568323980000,"y":0.2},{"x":1568324040000,"y":3.45},{"x":1568324100000,"y":0.36},{"x":1568324160000,"y":0.22},{"x":1568324220000,"y":0.3},{"x":1568324280000,"y":0.18},{"x":1568324340000,"y":0.33},{"x":1568324400000,"y":0.31},{"x":1568324460000,"y":0.19},{"x":1568324520000,"y":0.3},{"x":1568324580000,"y":0.18},{"x":1568324640000,"y":0.19},{"x":1568324700000,"y":0.22},{"x":1568324760000,"y":0.16},{"x":1568324820000,"y":0.32},{"x":1568324880000,"y":0.19},{"x":1568324940000,"y":0.2},{"x":1568325000000,"y":0.25},{"x":1568325060000,"y":0.17},{"x":1568325120000,"y":0.35},{"x":1568325180000,"y":0.17},{"x":1568325240000,"y":0.19},{"x":1568325300000,"y":0.27},{"x":1568325360000,"y":0.19},{"x":1568325420000,"y":0.35},{"x":1568325480000,"y":0.2},{"x":1568325540000,"y":0.2},{"x":1568325600000,"y":0.31},{"x":1568325660000,"y":0.24},{"x":1568325720000,"y":0.19},{"x":1568325780000,"y":0.37},{"x":1568325840000,"y":0.19},{"x":1568325900000,"y":0.28},{"x":1568325960000,"y":0.21},{"x":1568326020000,"y":0.21},{"x":1568326080000,"y":0.35},{"x":1568326140000,"y":0.38},{"x":1568326200000,"y":0.34},{"x":1568326260000,"y":0.15},{"x":1568326320000,"y":0.22},{"x":1568326380000,"y":0.33},{"x":1568326440000,"y":0.17},{"x":1568326500000,"y":0.2},{"x":1568326560000,"y":0.15},{"x":1568326620000,"y":19.28},{"x":1568326680000,"y":0.55},{"x":1568326740000,"y":0.19},{"x":1568326800000,"y":0.3},{"x":1568326860000,"y":19.56},{"x":1568326920000,"y":0.32},{"x":1568326980000,"y":0.39},{"x":1568327040000,"y":0.2},{"x":1568327100000,"y":14.48},{"x":1568327160000,"y":5.47},{"x":1568327220000,"y":19.12},{"x":1568327280000,"y":0.53},{"x":1568327340000,"y":3.91},{"x":1568327400000,"y":18.17},{"x":1568327460000,"y":8.35},{"x":1568327520000,"y":12.24},{"x":1568327580000,"y":0.59},{"x":1568327640000,"y":18.83},{"x":1568327700000,"y":0.51},{"x":1568327760000,"y":18.95},{"x":1568327820000,"y":0.35},{"x":1568327880000,"y":32.03},{"x":1568327940000,"y":8.35},{"x":1568328000000,"y":19.06},{"x":1568328060000,"y":19.74},{"x":1568328120000,"y":19.61},{"x":1568328180000,"y":0.23},{"x":1568328240000,"y":0.52},{"x":1568328300000,"y":19.83},{"x":1568328360000,"y":19.18},{"x":1568328420000,"y":9.97},{"x":1568328480000,"y":29.29},{"x":1568328540000,"y":0.32},{"x":1568328600000,"y":19.47},{"x":1568328660000,"y":0.18},{"x":1568328720000,"y":2.41},{"x":1568328780000,"y":24.76},{"x":1568328840000,"y":12.72},{"x":1568328900000,"y":19.32},{"x":1568328960000,"y":0.42},{"x":1568329020000,"y":0.08},{"x":1568329080000,"y":2.48},{"x":1568329140000,"y":17.52},{"x":1568329200000,"y":20.13},{"x":1568329260000,"y":0.26},{"x":1568329320000,"y":0.15},{"x":1568329380000,"y":0.17},{"x":1568329440000,"y":0.23},{"x":1568329500000,"y":0.19},{"x":1568329560000,"y":0.11},{"x":1568329620000,"y":0.1},{"x":1568329680000,"y":0.43},{"x":1568329740000,"y":2.36},{"x":1568329800000,"y":0.18},{"x":1568329860000,"y":11.03},{"x":1568329920000,"y":8.04},{"x":1568329980000,"y":0.3},{"x":1568330040000,"y":0.29},{"x":1568330100000,"y":0.19},{"x":1568330160000,"y":0.12},{"x":1568330220000,"y":0.11},{"x":1568330280000,"y":0.09},{"x":1568330340000,"y":0.38},{"x":1568330400000,"y":0.33},{"x":1568330460000,"y":0.11},{"x":1568330520000,"y":0.11},{"x":1568330580000,"y":0.1},{"x":1568330640000,"y":0.1},{"x":1568330700000,"y":19.01},{"x":1568330760000,"y":0.3},{"x":1568330820000,"y":0.11},{"x":1568330880000,"y":1.37},{"x":1568330940000,"y":0.16},{"x":1568331000000,"y":0.36},{"x":1568331060000,"y":0.17},{"x":1568331120000,"y":18.04},{"x":1568331180000,"y":0.97},{"x":1568331240000,"y":13.48},{"x":1568331300000,"y":7.15},{"x":1568331360000,"y":0.12},{"x":1568331420000,"y":0.11},{"x":1568331480000,"y":0.1},{"x":1568331540000,"y":0.27},{"x":1568331600000,"y":0.32},{"x":1568331660000,"y":19.11},{"x":1568331720000,"y":0.4},{"x":1568331780000,"y":0.17},{"x":1568331840000,"y":19.29},{"x":1568331900000,"y":0.46},{"x":1568331960000,"y":0.13},{"x":1568332020000,"y":0.14},{"x":1568332080000,"y":0.2},{"x":1568332140000,"y":0.13},{"x":1568332200000,"y":0.37},{"x":1568332260000,"y":0.1},{"x":1568332320000,"y":0.13},{"x":1568332380000,"y":0.1},{"x":1568332440000,"y":0.11},{"x":1568332500000,"y":0.19},{"x":1568332560000,"y":0.33},{"x":1568332620000,"y":0.15},{"x":1568332680000,"y":0.25},{"x":1568332740000,"y":11.26},{"x":1568332800000,"y":10.88},{"x":1568332860000,"y":0.42},{"x":1568332920000,"y":0.1},{"x":1568332980000,"y":0.1},{"x":1568333040000,"y":0.09},{"x":1568333100000,"y":0.18},{"x":1568333160000,"y":0.26},{"x":1568333220000,"y":0.12},{"x":1568333280000,"y":0.09},{"x":1568333340000,"y":0.22},{"x":1568333400000,"y":0.21},{"x":1568333460000,"y":0.21},{"x":1568333520000,"y":0.1},{"x":1568333580000,"y":0.13},{"x":1568333640000,"y":0.13},{"x":1568333700000,"y":0.16},{"x":1568333760000,"y":0.27},{"x":1568333820000,"y":0.14},{"x":1568333880000,"y":0.14},{"x":1568333940000,"y":0.14},{"x":1568334000000,"y":0.23},{"x":1568334060000,"y":0.29},{"x":1568334120000,"y":0.1},{"x":1568334180000,"y":1.53},{"x":1568334240000,"y":19.93},{"x":1568334300000,"y":18.7},{"x":1568334360000,"y":0.4},{"x":1568334420000,"y":0.13},{"x":1568334480000,"y":0.12},{"x":1568334540000,"y":0.12},{"x":1568334600000,"y":0.18},{"x":1568334660000,"y":0.25},{"x":1568334720000,"y":0.12},{"x":1568334780000,"y":0.09},{"x":1568334840000,"y":0.11},{"x":1568334900000,"y":0.22},{"x":1568334960000,"y":0.07},{"x":1568335020000,"y":0.24},{"x":1568335080000,"y":0.08},{"x":1568335140000,"y":0.28},{"x":1568335200000,"y":0.16},{"x":1568335260000,"y":0.07},{"x":1568335320000,"y":0.23},{"x":1568335380000,"y":0.08},{"x":1568335440000,"y":0.08},{"x":1568335500000,"y":0.21},{"x":1568335560000,"y":0.1},{"x":1568335620000,"y":0.3},{"x":1568335680000,"y":0.09},{"x":1568335740000,"y":0.08},{"x":1568335800000,"y":0.15},{"x":1568335860000,"y":0.07},{"x":1568335920000,"y":0.2},{"x":1568335980000,"y":0.07},{"x":1568336040000,"y":0.09},{"x":1568336100000,"y":0.12},{"x":1568336160000,"y":0.1},{"x":1568336220000,"y":0.22},{"x":1568336280000,"y":0.07},{"x":1568336340000,"y":0.1},{"x":1568336400000,"y":0.22},{"x":1568336460000,"y":0.09},{"x":1568336520000,"y":0.22},{"x":1568336580000,"y":0.12},{"x":1568336640000,"y":0.15},{"x":1568336700000,"y":0.17},{"x":1568336760000,"y":0.12},{"x":1568336820000,"y":0.27},{"x":1568336880000,"y":0.08},{"x":1568336940000,"y":0.79},{"x":1568337000000,"y":0.16},{"x":1568337060000,"y":0.09},{"x":1568337120000,"y":0.11},{"x":1568337180000,"y":0.24},{"x":1568337240000,"y":0.1},{"x":1568337300000,"y":0.18},{"x":1568337360000,"y":0.09},{"x":1568337420000,"y":0.13},{"x":1568337480000,"y":0.22},{"x":1568337540000,"y":0.07},{"x":1568337600000,"y":0.16},{"x":1568337660000,"y":0.09},{"x":1568337720000,"y":0.1},{"x":1568337780000,"y":0.2},{"x":1568337840000,"y":0.06},{"x":1568337900000,"y":0.12},{"x":1568337960000,"y":0.07},{"x":1568338020000,"y":0.08},{"x":1568338080000,"y":0.2},{"x":1568338140000,"y":0.07},{"x":1568338200000,"y":0.15},{"x":1568338260000,"y":0.1},{"x":1568338320000,"y":0.05},{"x":1568338380000,"y":0.24},{"x":1568338440000,"y":0.07},{"x":1568338500000,"y":0.16},{"x":1568338560000,"y":0.06},{"x":1568338620000,"y":0.05},{"x":1568338680000,"y":0.19},{"x":1568338740000,"y":0.22},{"x":1568338800000,"y":0.18},{"x":1568338860000,"y":0.1},{"x":1568338920000,"y":0.07},{"x":1568338980000,"y":0.22},{"x":1568339040000,"y":0.07},{"x":1568339100000,"y":0.17},{"x":1568339160000,"y":0.07},{"x":1568339220000,"y":0.07},{"x":1568339280000,"y":0.07},{"x":1568339340000,"y":0.22},{"x":1568339400000,"y":0.2},{"x":1568339460000,"y":0.07},{"x":1568339520000,"y":0.08},{"x":1568339580000,"y":0.07},{"x":1568339640000,"y":0.21},{"x":1568339700000,"y":0.19},{"x":1568339760000,"y":0.08},{"x":1568339820000,"y":0.17},{"x":1568339880000,"y":0.18},{"x":1568339940000,"y":0.2},{"x":1568340000000,"y":0.21},{"x":1568340060000,"y":0.05},{"x":1568340120000,"y":0.07},{"x":1568340180000,"y":0.07},{"x":1568340240000,"y":0.21},{"x":1568340300000,"y":0.1},{"x":1568340360000,"y":0.08},{"x":1568340420000,"y":0.1},{"x":1568340480000,"y":0.06},{"x":1568340540000,"y":0.33},{"x":1568340600000,"y":0.1},{"x":1568340660000,"y":0.07},{"x":1568340720000,"y":0.1},{"x":1568340780000,"y":0.12},{"x":1568340840000,"y":0.22},{"x":1568340900000,"y":0.23},{"x":1568340960000,"y":0.07},{"x":1568341020000,"y":0.08},{"x":1568341080000,"y":0.08},{"x":1568341140000,"y":3.33},{"x":1568341200000,"y":2.09},{"x":1568341260000,"y":0.07},{"x":1568341320000,"y":0.07},{"x":1568341380000,"y":0.07},{"x":1568341440000,"y":0.12},{"x":1568341500000,"y":0.41},{"x":1568341560000,"y":0.07},{"x":1568341620000,"y":0.07},{"x":1568341680000,"y":0.08},{"x":1568341740000,"y":0.07},{"x":1568341800000,"y":0.32},{"x":1568341860000,"y":0.08},{"x":1568341920000,"y":0.08},{"x":1568341980000,"y":0.05},{"x":1568342040000,"y":0.12},{"x":1568342100000,"y":0.29},{"x":1568342160000,"y":0.07},{"x":1568342220000,"y":0.09},{"x":1568342280000,"y":0.06},{"x":1568342340000,"y":0.14},{"x":1568342400000,"y":0.27},{"x":1568342460000,"y":0.07},{"x":1568342520000,"y":0.07},{"x":1568342580000,"y":0.09},{"x":1568342640000,"y":0.05},{"x":1568342700000,"y":0.31},{"x":1568342760000,"y":0.07},{"x":1568342820000,"y":0.07},{"x":1568342880000,"y":0.05},{"x":1568342940000,"y":0.06},{"x":1568343000000,"y":0.3},{"x":1568343060000,"y":0.05},{"x":1568343120000,"y":0.06},{"x":1568343180000,"y":0.06},{"x":1568343240000,"y":0.06},{"x":1568343300000,"y":0.3},{"x":1568343360000,"y":0.11},{"x":1568343420000,"y":0.07},{"x":1568343480000,"y":0.07},{"x":1568343540000,"y":0.06},{"x":1568343600000,"y":0.14},{"x":1568343660000,"y":0.24},{"x":1568343720000,"y":0.07},{"x":1568343780000,"y":0.05},{"x":1568343840000,"y":0.07},{"x":1568343900000,"y":0.16},{"x":1568343960000,"y":0.22},{"x":1568344020000,"y":0.05},{"x":1568344080000,"y":0.07},{"x":1568344140000,"y":0.24},{"x":1568344200000,"y":0.18},{"x":1568344260000,"y":0.22},{"x":1568344320000,"y":0.07},{"x":1568344380000,"y":0.07},{"x":1568344440000,"y":0.09},{"x":1568344500000,"y":0.14},{"x":1568344560000,"y":0.2},{"x":1568344620000,"y":0.08},{"x":1568344680000,"y":0.05},{"x":1568344740000,"y":0.05},{"x":1568344800000,"y":0.14},{"x":1568344860000,"y":0.21},{"x":1568344920000,"y":0.08},{"x":1568344980000,"y":0.05},{"x":1568345040000,"y":0.09},{"x":1568345100000,"y":0.14},{"x":1568345160000,"y":0.2},{"x":1568345220000,"y":0.12},{"x":1568345280000,"y":1.22},{"x":1568345340000,"y":0.5},{"x":1568345400000,"y":0.2},{"x":1568345460000,"y":0.2},{"x":1568345520000,"y":0.06},{"x":1568345580000,"y":0.04},{"x":1568345640000,"y":0.07},{"x":1568345700000,"y":0.18},{"x":1568345760000,"y":0.21},{"x":1568345820000,"y":0.1},{"x":1568345880000,"y":0.06},{"x":1568345940000,"y":0.27},{"x":1568346000000,"y":0.12},{"x":1568346060000,"y":0.05},{"x":1568346120000,"y":0.22},{"x":1568346180000,"y":0.13},{"x":1568346240000,"y":0.1},{"x":1568346300000,"y":0.2},{"x":1568346360000,"y":0.07},{"x":1568346420000,"y":0.23},{"x":1568346480000,"y":0.08},{"x":1568346540000,"y":0.08},{"x":1568346600000,"y":0.17},{"x":1568346660000,"y":0.1},{"x":1568346720000,"y":0.23},{"x":1568346780000,"y":0.08},{"x":1568346840000,"y":0.07},{"x":1568346900000,"y":0.17},{"x":1568346960000,"y":0.08},{"x":1568347020000,"y":0.22},{"x":1568347080000,"y":0.08},{"x":1568347140000,"y":0.06},{"x":1568347200000,"y":0.17},{"x":1568347260000,"y":0.08},{"x":1568347320000,"y":0.2},{"x":1568347380000,"y":0.07},{"x":1568347440000,"y":0.07},{"x":1568347500000,"y":0.1},{"x":1568347560000,"y":0.08},{"x":1568347620000,"y":0.2},{"x":1568347680000,"y":0.06},{"x":1568347740000,"y":0.16},{"x":1568347800000,"y":0.16},{"x":1568347860000,"y":0.09},{"x":1568347920000,"y":0.2},{"x":1568347980000,"y":0.08},{"x":1568348040000,"y":0.07},{"x":1568348100000,"y":0.16},{"x":1568348160000,"y":0.06},{"x":1568348220000,"y":0.08},{"x":1568348280000,"y":0.24},{"x":1568348340000,"y":0.04},{"x":1568348400000,"y":0.11},{"x":1568348460000,"y":0.08},{"x":1568348520000,"y":0.05},{"x":1568348580000,"y":0.2},{"x":1568348640000,"y":0.07},{"x":1568348700000,"y":0.17},{"x":1568348760000,"y":0.09},{"x":1568348820000,"y":0.1},{"x":1568348880000,"y":0.2},{"x":1568348940000,"y":0.07},{"x":1568349000000,"y":0.24},{"x":1568349060000,"y":0.07},{"x":1568349120000,"y":0.09},{"x":1568349180000,"y":0.21},{"x":1568349240000,"y":0.1},{"x":1568349300000,"y":0.2},{"x":1568349360000,"y":0.06},{"x":1568349420000,"y":0.05},{"x":1568349480000,"y":0.2},{"x":1568349540000,"y":0.12},{"x":1568349600000,"y":0.1},{"x":1568349660000,"y":0.09},{"x":1568349720000,"y":0.07},{"x":1568349780000,"y":0.28},{"x":1568349840000,"y":0.06},{"x":1568349900000,"y":0.13},{"x":1568349960000,"y":0.09},{"x":1568350020000,"y":0.08},{"x":1568350080000,"y":0.19},{"x":1568350140000,"y":0.1},{"x":1568350200000,"y":0.13},{"x":1568350260000,"y":0.07},{"x":1568350320000,"y":0.09},{"x":1568350380000,"y":0.05},{"x":1568350440000,"y":0.26},{"x":1568350500000,"y":0.15},{"x":1568350560000,"y":0.07},{"x":1568350620000,"y":0.08},{"x":1568350680000,"y":0.12},{"x":1568350740000,"y":0.29},{"x":1568350800000,"y":0.66},{"x":1568350860000,"y":0.17},{"x":1568350920000,"y":0.14},{"x":1568350980000,"y":0.15},{"x":1568351040000,"y":0.26},{"x":1568351100000,"y":0.27},{"x":1568351160000,"y":0.09},{"x":1568351220000,"y":0.04},{"x":1568351280000,"y":0.05},{"x":1568351340000,"y":0.3},{"x":1568351400000,"y":0.25},{"x":1568351460000,"y":0.15},{"x":1568351520000,"y":0.25},{"x":1568351580000,"y":0.12},{"x":1568351640000,"y":0.26},{"x":1568351700000,"y":0.23},{"x":1568351760000,"y":0.1},{"x":1568351820000,"y":0.14},{"x":1568351880000,"y":0.17},{"x":1568351940000,"y":0.23},{"x":1568352000000,"y":0.17},{"x":1568352060000,"y":0.17},{"x":1568352120000,"y":0.17},{"x":1568352180000,"y":0.15},{"x":1568352240000,"y":0.16},{"x":1568352300000,"y":0.4},{"x":1568352360000,"y":0.16},{"x":1568352420000,"y":0.15},{"x":1568352480000,"y":0.13},{"x":1568352540000,"y":0.16},{"x":1568352600000,"y":0.38},{"x":1568352660000,"y":0.12},{"x":1568352720000,"y":0.16},{"x":1568352780000,"y":0.14},{"x":1568352840000,"y":0.15},{"x":1568352900000,"y":0.4},{"x":1568352960000,"y":0.18},{"x":1568353020000,"y":0.15},{"x":1568353080000,"y":0.17},{"x":1568353140000,"y":0.26},{"x":1568353200000,"y":0.36},{"x":1568353260000,"y":0.16},{"x":1568353320000,"y":0.16},{"x":1568353380000,"y":0.2},{"x":1568353440000,"y":0.17},{"x":1568353500000,"y":0.35},{"x":1568353560000,"y":0.18},{"x":1568353620000,"y":0.16},{"x":1568353680000,"y":0.13},{"x":1568353740000,"y":0.14},{"x":1568353800000,"y":0.33},{"x":1568353860000,"y":0.17},{"x":1568353920000,"y":0.15},{"x":1568353980000,"y":0.17},{"x":1568354040000,"y":0.14},{"x":1568354100000,"y":0.34},{"x":1568354160000,"y":0.16},{"x":1568354220000,"y":0.14},{"x":1568354280000,"y":0.16},{"x":1568354340000,"y":0.13},{"x":1568354400000,"y":0.23},{"x":1568354460000,"y":0.3},{"x":1568354520000,"y":0.15},{"x":1568354580000,"y":0.14},{"x":1568354640000,"y":0.14},{"x":1568354700000,"y":0.23},{"x":1568354760000,"y":0.32},{"x":1568354820000,"y":0.17},{"x":1568354880000,"y":0.17},{"x":1568354940000,"y":0.24},{"x":1568355000000,"y":0.28},{"x":1568355060000,"y":0.29},{"x":1568355120000,"y":0.17},{"x":1568355180000,"y":0.15},{"x":1568355240000,"y":0.15},{"x":1568355300000,"y":0.2},{"x":1568355360000,"y":0.32},{"x":1568355420000,"y":0.17},{"x":1568355480000,"y":0.15},{"x":1568355540000,"y":0.14},{"x":1568355600000,"y":0.18},{"x":1568355660000,"y":0.3},{"x":1568355720000,"y":0.15},{"x":1568355780000,"y":0.16},{"x":1568355840000,"y":0.15},{"x":1568355900000,"y":0.3},{"x":1568355960000,"y":0.3},{"x":1568356020000,"y":0.14},{"x":1568356080000,"y":0.16},{"x":1568356140000,"y":0.14},{"x":1568356200000,"y":0.26},{"x":1568356260000,"y":0.46},{"x":1568356320000,"y":0.12},{"x":1568356380000,"y":0.13},{"x":1568356440000,"y":0.19},{"x":1568356500000,"y":0.24},{"x":1568356560000,"y":0.16},{"x":1568356620000,"y":0.27},{"x":1568356680000,"y":0.17},{"x":1568356740000,"y":0.27},{"x":1568356800000,"y":0.26},{"x":1568356860000,"y":0.15},{"x":1568356920000,"y":0.27},{"x":1568356980000,"y":0.19},{"x":1568357040000,"y":0.2},{"x":1568357100000,"y":0.27},{"x":1568357160000,"y":0.17},{"x":1568357220000,"y":0.31},{"x":1568357280000,"y":0.15},{"x":1568357340000,"y":0.19},{"x":1568357400000,"y":0.26},{"x":1568357460000,"y":0.17},{"x":1568357520000,"y":0.29},{"x":1568357580000,"y":0.17},{"x":1568357640000,"y":0.18},{"x":1568357700000,"y":0.2},{"x":1568357760000,"y":0.14},{"x":1568357820000,"y":0.28},{"x":1568357880000,"y":0.17},{"x":1568357940000,"y":0.17},{"x":1568358000000,"y":0.23},{"x":1568358060000,"y":0.18},{"x":1568358120000,"y":0.29},{"x":1568358180000,"y":0.14},{"x":1568358240000,"y":0.19},{"x":1568358300000,"y":0.21},{"x":1568358360000,"y":0.18},{"x":1568358420000,"y":0.29},{"x":1568358480000,"y":0.18},{"x":1568358540000,"y":0.27},{"x":1568358600000,"y":0.24},{"x":1568358660000,"y":0.15},{"x":1568358720000,"y":0.2},{"x":1568358780000,"y":0.3},{"x":1568358840000,"y":0.16},{"x":1568358900000,"y":0.23},{"x":1568358960000,"y":0.19},{"x":1568359020000,"y":0.17},{"x":1568359080000,"y":0.31},{"x":1568359140000,"y":0.14},{"x":1568359200000,"y":0.25},{"x":1568359260000,"y":0.2},{"x":1568359320000,"y":0.18},{"x":1568359380000,"y":0.29},{"x":1568359440000,"y":0.19},{"x":1568359500000,"y":0.2},{"x":1568359560000,"y":0.15},{"x":1568359620000,"y":0.17},{"x":1568359680000,"y":0.37},{"x":1568359740000,"y":0.17},{"x":1568359800000,"y":0.31},{"x":1568359860000,"y":0.18},{"x":1568359920000,"y":0.22},{"x":1568359980000,"y":0.3},{"x":1568360040000,"y":0.17},{"x":1568360100000,"y":0.31},{"x":1568360160000,"y":0.16},{"x":1568360220000,"y":0.26},{"x":1568360280000,"y":0.35},{"x":1568360340000,"y":0.37},{"x":1568360400000,"y":0.25},{"x":1568360460000,"y":0.2},{"x":1568360520000,"y":0.17},{"x":1568360580000,"y":0.34},{"x":1568360640000,"y":0.14},{"x":1568360700000,"y":0.22},{"x":1568360760000,"y":0.19},{"x":1568360820000,"y":0.2},{"x":1568360880000,"y":0.17},{"x":1568360940000,"y":0.33},{"x":1568361000000,"y":0.2},{"x":1568361060000,"y":0.16},{"x":1568361120000,"y":0.17},{"x":1568361180000,"y":0.18},{"x":1568361240000,"y":0.33},{"x":1568361300000,"y":0.24},{"x":1568361360000,"y":0.17},{"x":1568361420000,"y":0.13},{"x":1568361480000,"y":0.2},{"x":1568361540000,"y":0.32},{"x":1568361600000,"y":0.27},{"x":1568361660000,"y":0.15},{"x":1568361720000,"y":0.16},{"x":1568361780000,"y":0.15},{"x":1568361840000,"y":0.28},{"x":1568361900000,"y":0.17},{"x":1568361960000,"y":0.14},{"x":1568362020000,"y":0.09},{"x":1568362080000,"y":0.11},{"x":1568362140000,"y":0.39},{"x":1568362200000,"y":0.16},{"x":1568362260000,"y":0.1},{"x":1568362320000,"y":0.09},{"x":1568362380000,"y":0.09},{"x":1568362440000,"y":0.3},{"x":1568362500000,"y":0.2},{"x":1568362560000,"y":0.08},{"x":1568362620000,"y":0.06},{"x":1568362680000,"y":0.06},{"x":1568362740000,"y":0.19},{"x":1568362800000,"y":0.14},{"x":1568362860000,"y":0.06},{"x":1568362920000,"y":0.06},{"x":1568362980000,"y":0.08},{"x":1568363040000,"y":0.09},{"x":1568363100000,"y":5.42},{"x":1568363160000,"y":0.07},{"x":1568363220000,"y":0.1},{"x":1568363280000,"y":0.1},{"x":1568363340000,"y":0.09},{"x":1568363400000,"y":0.29},{"x":1568363460000,"y":0.08},{"x":1568363520000,"y":0.08},{"x":1568363580000,"y":0.05},{"x":1568363640000,"y":0.09},{"x":1568363700000,"y":0.26},{"x":1568363760000,"y":0.11},{"x":1568363820000,"y":0.09},{"x":1568363880000,"y":0.05},{"x":1568363940000,"y":0.24},{"x":1568364000000,"y":0.29},{"x":1568364060000,"y":0.11},{"x":1568364120000,"y":0.1},{"x":1568364180000,"y":0.08},{"x":1568364240000,"y":0.07},{"x":1568364300000,"y":0.27},{"x":1568364360000,"y":0.1},{"x":1568364420000,"y":0.09},{"x":1568364480000,"y":0.08},{"x":1568364540000,"y":0.11},{"x":1568364600000,"y":0.34},{"x":1568364660000,"y":0.07},{"x":1568364720000,"y":0.08},{"x":1568364780000,"y":0.1},{"x":1568364840000,"y":0.1},{"x":1568364900000,"y":0.32},{"x":1568364960000,"y":0.09},{"x":1568365020000,"y":0.08},{"x":1568365080000,"y":0.07},{"x":1568365140000,"y":0.07},{"x":1568365200000,"y":0.19},{"x":1568365260000,"y":0.24},{"x":1568365320000,"y":0.08},{"x":1568365380000,"y":0.12},{"x":1568365440000,"y":0.1},{"x":1568365500000,"y":0.17},{"x":1568365560000,"y":0.2},{"x":1568365620000,"y":0.07},{"x":1568365680000,"y":0.12},{"x":1568365740000,"y":0.2},{"x":1568365800000,"y":0.25},{"x":1568365860000,"y":0.22},{"x":1568365920000,"y":0.12},{"x":1568365980000,"y":2.04},{"x":1568366040000,"y":0.23},{"x":1568366100000,"y":0.14},{"x":1568366160000,"y":0.22},{"x":1568366220000,"y":0.1},{"x":1568366280000,"y":0.07},{"x":1568366340000,"y":0.08},{"x":1568366400000,"y":0.14},{"x":1568366460000,"y":0.23},{"x":1568366520000,"y":0.06},{"x":1568366580000,"y":0.1},{"x":1568366640000,"y":0.06},{"x":1568366700000,"y":0.13},{"x":1568366760000,"y":0.19},{"x":1568366820000,"y":0.04},{"x":1568366880000,"y":0.09},{"x":1568366940000,"y":0.05},{"x":1568367000000,"y":0.15},{"x":1568367060000,"y":0.25},{"x":1568367120000,"y":0.1},{"x":1568367180000,"y":0.08},{"x":1568367240000,"y":0.06},{"x":1568367300000,"y":0.13},{"x":1568367360000,"y":0.04},{"x":1568367420000,"y":0.22},{"x":1568367480000,"y":0.06},{"x":1568367540000,"y":0.19},{"x":1568367600000,"y":0.15},{"x":1568367660000,"y":0.05},{"x":1568367720000,"y":0.22},{"x":1568367780000,"y":0.1},{"x":1568367840000,"y":0.07},{"x":1568367900000,"y":0.17},{"x":1568367960000,"y":0.08},{"x":1568368020000,"y":0.19},{"x":1568368080000,"y":0.05},{"x":1568368140000,"y":0.08},{"x":1568368200000,"y":0.17},{"x":1568368260000,"y":0.13},{"x":1568368320000,"y":0.19},{"x":1568368380000,"y":0.07},{"x":1568368440000,"y":0.07},{"x":1568368500000,"y":0.13},{"x":1568368560000,"y":0.07},{"x":1568368620000,"y":0.2},{"x":1568368680000,"y":0.07},{"x":1568368740000,"y":0.06},{"x":1568368800000,"y":0.21},{"x":1568368860000,"y":0.14},{"x":1568368920000,"y":0.21},{"x":1568368980000,"y":0.08},{"x":1568369040000,"y":0.07},{"x":1568369100000,"y":0.13},{"x":1568369160000,"y":0.06},{"x":1568369220000,"y":0.23},{"x":1568369280000,"y":0.07},{"x":1568369340000,"y":0.11},{"x":1568369400000,"y":0.14},{"x":1568369460000,"y":0.07},{"x":1568369520000,"y":0.09},{"x":1568369580000,"y":0.25},{"x":1568369640000,"y":1.41},{"x":1568369700000,"y":0.16},{"x":1568369760000,"y":0.07},{"x":1568369820000,"y":0.09},{"x":1568369880000,"y":0.19},{"x":1568369940000,"y":0.06},{"x":1568370000000,"y":0.19},{"x":1568370060000,"y":0.08},{"x":1568370120000,"y":0.1},{"x":1568370180000,"y":0.21},{"x":1568370240000,"y":0.1},{"x":1568370300000,"y":0.4},{"x":1568370360000,"y":4.55},{"x":1568370420000,"y":0.11},{"x":1568370480000,"y":0.27},{"x":1568370540000,"y":0.08},{"x":1568370600000,"y":0.24},{"x":1568370660000,"y":0.12},{"x":1568370720000,"y":1.51},{"x":1568370780000,"y":0.21},{"x":1568370840000,"y":0.05},{"x":1568370900000,"y":0.17},{"x":1568370960000,"y":0.06},{"x":1568371020000,"y":0.06},{"x":1568371080000,"y":0.22},{"x":1568371140000,"y":0.11},{"x":1568371200000,"y":0.1},{"x":1568371260000,"y":0.07},{"x":1568371320000,"y":0.07},{"x":1568371380000,"y":0.22},{"x":1568371440000,"y":0.1},{"x":1568371500000,"y":0.16},{"x":1568371560000,"y":0.07},{"x":1568371620000,"y":0.06},{"x":1568371680000,"y":0.05},{"x":1568371740000,"y":0.28},{"x":1568371800000,"y":0.15},{"x":1568371860000,"y":0.07},{"x":1568371920000,"y":0.09},{"x":1568371980000,"y":0.1},{"x":1568372040000,"y":0.22},{"x":1568372100000,"y":0.17},{"x":1568372160000,"y":0.13},{"x":1568372220000,"y":0.1},{"x":1568372280000,"y":0.1},{"x":1568372340000,"y":0.26},{"x":1568372400000,"y":0.22},{"x":1568372460000,"y":0.07},{"x":1568372520000,"y":0.07},{"x":1568372580000,"y":0.1},{"x":1568372640000,"y":0.22},{"x":1568372700000,"y":0.19},{"x":1568372760000,"y":0.07},{"x":1568372820000,"y":0.08},{"x":1568372880000,"y":0.07},{"x":1568372940000,"y":0.34},{"x":1568373000000,"y":0.14},{"x":1568373060000,"y":0.09},{"x":1568373120000,"y":0.05},{"x":1568373180000,"y":0.08},{"x":1568373240000,"y":0.27},{"x":1568373300000,"y":0.16},{"x":1568373360000,"y":0.1},{"x":1568373420000,"y":0.05},{"x":1568373480000,"y":0.08},{"x":1568373540000,"y":0.13},{"x":1568373600000,"y":0.29},{"x":1568373660000,"y":0.08},{"x":1568373720000,"y":0.08},{"x":1568373780000,"y":0.07},{"x":1568373840000,"y":0.08},{"x":1568373900000,"y":1.58},{"x":1568373960000,"y":0.09},{"x":1568374020000,"y":0.07},{"x":1568374080000,"y":0.09},{"x":1568374140000,"y":0.11},{"x":1568374200000,"y":0.27},{"x":1568374260000,"y":0.07},{"x":1568374320000,"y":0.08},{"x":1568374380000,"y":0.07},{"x":1568374440000,"y":0.09},{"x":1568374500000,"y":0.28},{"x":1568374560000,"y":0.1},{"x":1568374620000,"y":0.08},{"x":1568374680000,"y":0.09},{"x":1568374740000,"y":0.14},{"x":1568374800000,"y":0.27},{"x":1568374860000,"y":0.07},{"x":1568374920000,"y":0.07},{"x":1568374980000,"y":0.08},{"x":1568375040000,"y":0.09},{"x":1568375100000,"y":0.36},{"x":1568375160000,"y":0.07},{"x":1568375220000,"y":0.11},{"x":1568375280000,"y":0.12},{"x":1568375340000,"y":0.1},{"x":1568375400000,"y":4.92},{"x":1568375460000,"y":2.8},{"x":1568375520000,"y":0.09},{"x":1568375580000,"y":0.11},{"x":1568375640000,"y":0.1},{"x":1568375700000,"y":0.3},{"x":1568375760000,"y":0.08},{"x":1568375820000,"y":0.05},{"x":1568375880000,"y":0.09},{"x":1568375940000,"y":0.08},{"x":1568376000000,"y":0.23},{"x":1568376060000,"y":0.23},{"x":1568376120000,"y":0.11},{"x":1568376180000,"y":0.1},{"x":1568376240000,"y":0.14},{"x":1568376300000,"y":0.12},{"x":1568376360000,"y":0.22},{"x":1568376420000,"y":0.05},{"x":1568376480000,"y":0.07},{"x":1568376540000,"y":0.17},{"x":1568376600000,"y":0.14},{"x":1568376660000,"y":0.21},{"x":1568376720000,"y":0.1},{"x":1568376780000,"y":0.06},{"x":1568376840000,"y":0.07},{"x":1568376900000,"y":0.1},{"x":1568376960000,"y":0.24},{"x":1568377020000,"y":0.09},{"x":1568377080000,"y":0.08},{"x":1568377140000,"y":0.07},{"x":1568377200000,"y":0.11},{"x":1568377260000,"y":0.2},{"x":1568377320000,"y":0.08},{"x":1568377380000,"y":0.07},{"x":1568377440000,"y":0.06},{"x":1568377500000,"y":0.12},{"x":1568377560000,"y":0.21},{"x":1568377620000,"y":0.09},{"x":1568377680000,"y":0.06},{"x":1568377740000,"y":0.1},{"x":1568377800000,"y":0.22},{"x":1568377860000,"y":0.21},{"x":1568377920000,"y":0.12},{"x":1568377980000,"y":1.88},{"x":1568378040000,"y":0.08},{"x":1568378100000,"y":0.12},{"x":1568378160000,"y":0.1},{"x":1568378220000,"y":0.22},{"x":1568378280000,"y":0.07},{"x":1568378340000,"y":0.23},{"x":1568378400000,"y":0.18},{"x":1568378460000,"y":0.05},{"x":1568378520000,"y":0.21},{"x":1568378580000,"y":0.11},{"x":1568378640000,"y":0.1},{"x":1568378700000,"y":0.19},{"x":1568378760000,"y":0.1},{"x":1568378820000,"y":0.22},{"x":1568378880000,"y":0.11},{"x":1568378940000,"y":0.06},{"x":1568379000000,"y":0.12},{"x":1568379060000,"y":0.08},{"x":1568379120000,"y":0.2},{"x":1568379180000,"y":0.11},{"x":1568379240000,"y":0.12},{"x":1568379300000,"y":0.17},{"x":1568379360000,"y":0.07},{"x":1568379420000,"y":0.21},{"x":1568379480000,"y":0.08},{"x":1568379540000,"y":0.07},{"x":1568379600000,"y":0.14},{"x":1568379660000,"y":0.08},{"x":1568379720000,"y":0.2},{"x":1568379780000,"y":0.05},{"x":1568379840000,"y":0.08},{"x":1568379900000,"y":0.16},{"x":1568379960000,"y":0.1},{"x":1568380020000,"y":0.22},{"x":1568380080000,"y":0.07},{"x":1568380140000,"y":0.15},{"x":1568380200000,"y":0.12},{"x":1568380260000,"y":0.1},{"x":1568380320000,"y":0.1},{"x":1568380380000,"y":0.28},{"x":1568380440000,"y":0.08},{"x":1568380500000,"y":0.18},{"x":1568380560000,"y":0.09},{"x":1568380620000,"y":0.1},{"x":1568380680000,"y":0.24},{"x":1568380740000,"y":0.05},{"x":1568380800000,"y":0.18},{"x":1568380860000,"y":0.07},{"x":1568380920000,"y":0.06},{"x":1568380980000,"y":0.57},{"x":1568381040000,"y":0.07},{"x":1568381100000,"y":0.16},{"x":1568381160000,"y":0.08},{"x":1568381220000,"y":0.1},{"x":1568381280000,"y":0.25},{"x":1568381340000,"y":0.11},{"x":1568381400000,"y":0.18},{"x":1568381460000,"y":0.1},{"x":1568381520000,"y":0.07},{"x":1568381580000,"y":0.22},{"x":1568381640000,"y":0.08},{"x":1568381700000,"y":0.17},{"x":1568381760000,"y":0.09},{"x":1568381820000,"y":0.08},{"x":1568381880000,"y":0.23},{"x":1568381940000,"y":0.2},{"x":1568382000000,"y":0.18},{"x":1568382060000,"y":0.07},{"x":1568382120000,"y":0.06},{"x":1568382180000,"y":0.24},{"x":1568382240000,"y":0.07},{"x":1568382300000,"y":0.12},{"x":1568382360000,"y":0.11},{"x":1568382420000,"y":0.09},{"x":1568382480000,"y":0.1},{"x":1568382540000,"y":0.22},{"x":1568382600000,"y":0.24},{"x":1568382660000,"y":0.07},{"x":1568382720000,"y":0.06},{"x":1568382780000,"y":0.07},{"x":1568382840000,"y":0.2},{"x":1568382900000,"y":0.19},{"x":1568382960000,"y":0.07},{"x":1568383020000,"y":0.1},{"x":1568383080000,"y":0.11},{"x":1568383140000,"y":0.21},{"x":1568383200000,"y":0.17},{"x":1568383260000,"y":0.08},{"x":1568383320000,"y":0.09},{"x":1568383380000,"y":0.07},{"x":1568383440000,"y":0.27},{"x":1568383500000,"y":0.22},{"x":1568383560000,"y":0.13},{"x":1568383620000,"y":0.11},{"x":1568383680000,"y":0.1},{"x":1568383740000,"y":0.4},{"x":1568383800000,"y":0.16},{"x":1568383860000,"y":0.15},{"x":1568383920000,"y":0.1},{"x":1568383980000,"y":0.07},{"x":1568384040000,"y":0.21},{"x":1568384100000,"y":1.53},{"x":1568384160000,"y":0.1},{"x":1568384220000,"y":0.1},{"x":1568384280000,"y":0.09},{"x":1568384340000,"y":0.28},{"x":1568384400000,"y":0.12},{"x":1568384460000,"y":0.17},{"x":1568384520000,"y":0.12},{"x":1568384580000,"y":0.12},{"x":1568384640000,"y":0.15},{"x":1568384700000,"y":0.3},{"x":1568384760000,"y":0.18},{"x":1568384820000,"y":0.13},{"x":1568384880000,"y":0.17},{"x":1568384940000,"y":0.14},{"x":1568385000000,"y":5.29},{"x":1568385060000,"y":0.17},{"x":1568385120000,"y":0.1},{"x":1568385180000,"y":0.1},{"x":1568385240000,"y":0.2},{"x":1568385300000,"y":0.31},{"x":1568385360000,"y":0.12},{"x":1568385420000,"y":0.1},{"x":1568385480000,"y":0.1},{"x":1568385540000,"y":0.22},{"x":1568385600000,"y":0.39},{"x":1568385660000,"y":0.1},{"x":1568385720000,"y":0.16},{"x":1568385780000,"y":0.13},{"x":1568385840000,"y":0.21},{"x":1568385900000,"y":0.32},{"x":1568385960000,"y":0.16},{"x":1568386020000,"y":0.17},{"x":1568386080000,"y":0.13},{"x":1568386140000,"y":0.18},{"x":1568386200000,"y":0.35},{"x":1568386260000,"y":0.17},{"x":1568386320000,"y":0.19},{"x":1568386380000,"y":0.15},{"x":1568386440000,"y":0.14},{"x":1568386500000,"y":0.44},{"x":1568386560000,"y":0.15},{"x":1568386620000,"y":0.18},{"x":1568386680000,"y":0.17},{"x":1568386740000,"y":0.16},{"x":1568386800000,"y":0.27},{"x":1568386860000,"y":0.34},{"x":1568386920000,"y":0.18},{"x":1568386980000,"y":0.14},{"x":1568387040000,"y":0.17},{"x":1568387100000,"y":0.2},{"x":1568387160000,"y":0.27},{"x":1568387220000,"y":0.15},{"x":1568387280000,"y":0.14},{"x":1568387340000,"y":0.21},{"x":1568387400000,"y":0.22},{"x":1568387460000,"y":0.29},{"x":1568387520000,"y":0.16},{"x":1568387580000,"y":0.17},{"x":1568387640000,"y":0.17},{"x":1568387700000,"y":0.28},{"x":1568387760000,"y":2.01},{"x":1568387820000,"y":0.21},{"x":1568387880000,"y":0.18},{"x":1568387940000,"y":0.17},{"x":1568388000000,"y":0.22},{"x":1568388060000,"y":0.35},{"x":1568388120000,"y":0.14},{"x":1568388180000,"y":0.19},{"x":1568388240000,"y":0.15},{"x":1568388300000,"y":0.22},{"x":1568388360000,"y":0.29},{"x":1568388420000,"y":0.16},{"x":1568388480000,"y":0.17},{"x":1568388540000,"y":0.16},{"x":1568388600000,"y":0.27},{"x":1568388660000,"y":0.31},{"x":1568388720000,"y":1.04},{"x":1568388780000,"y":0.19},{"x":1568388840000,"y":0.15},{"x":1568388900000,"y":0.29},{"x":1568388960000,"y":0.16},{"x":1568389020000,"y":0.3},{"x":1568389080000,"y":0.15},{"x":1568389140000,"y":0.2},{"x":1568389200000,"y":0.25},{"x":1568389260000,"y":0.17},{"x":1568389320000,"y":0.3},{"x":1568389380000,"y":0.19},{"x":1568389440000,"y":0.17},{"x":1568389500000,"y":0.25},{"x":1568389560000,"y":0.17},{"x":1568389620000,"y":0.34},{"x":1568389680000,"y":0.18},{"x":1568389740000,"y":0.19},{"x":1568389800000,"y":0.19},{"x":1568389860000,"y":0.15},{"x":1568389920000,"y":0.3},{"x":1568389980000,"y":0.21},{"x":1568390040000,"y":0.17},{"x":1568390100000,"y":0.2},{"x":1568390160000,"y":0.16},{"x":1568390220000,"y":0.3},{"x":1568390280000,"y":0.16},{"x":1568390340000,"y":0.2},{"x":1568390400000,"y":0.24},{"x":1568390460000,"y":0.17},{"x":1568390520000,"y":0.29},{"x":1568390580000,"y":0.16},{"x":1568390640000,"y":0.16},{"x":1568390700000,"y":0.21},{"x":1568390760000,"y":0.16},{"x":1568390820000,"y":0.24},{"x":1568390880000,"y":0.17},{"x":1568390940000,"y":0.24},{"x":1568391000000,"y":0.24},{"x":1568391060000,"y":0.16},{"x":1568391120000,"y":0.16},{"x":1568391180000,"y":0.29},{"x":1568391240000,"y":0.2},{"x":1568391300000,"y":0.25},{"x":1568391360000,"y":0.86},{"x":1568391420000,"y":0.17},{"x":1568391480000,"y":0.31},{"x":1568391540000,"y":0.18},{"x":1568391600000,"y":0.27},{"x":1568391660000,"y":0.19},{"x":1568391720000,"y":0.19},{"x":1568391780000,"y":0.29},{"x":1568391840000,"y":0.15},{"x":1568391900000,"y":0.22},{"x":1568391960000,"y":0.17},{"x":1568392020000,"y":0.16},{"x":1568392080000,"y":0.3},{"x":1568392140000,"y":0.17},{"x":1568392200000,"y":0.29},{"x":1568392260000,"y":0.15},{"x":1568392320000,"y":0.16},{"x":1568392380000,"y":0.33},{"x":1568392440000,"y":0.17},{"x":1568392500000,"y":0.21},{"x":1568392560000,"y":0.15},{"x":1568392620000,"y":0.16},{"x":1568392680000,"y":0.3},{"x":1568392740000,"y":0.22},{"x":1568392800000,"y":0.22},{"x":1568392860000,"y":0.16},{"x":1568392920000,"y":0.17},{"x":1568392980000,"y":0.25},{"x":1568393040000,"y":0.32},{"x":1568393100000,"y":0.24},{"x":1568393160000,"y":0.17},{"x":1568393220000,"y":0.17},{"x":1568393280000,"y":0.15},{"x":1568393340000,"y":0.39},{"x":1568393400000,"y":0.21},{"x":1568393460000,"y":0.16},{"x":1568393520000,"y":0.17},{"x":1568393580000,"y":0.19},{"x":1568393640000,"y":0.29},{"x":1568393700000,"y":0.24},{"x":1568393760000,"y":0.17},{"x":1568393820000,"y":0.14},{"x":1568393880000,"y":0.14},{"x":1568393940000,"y":0.27},{"x":1568394000000,"y":0.27},{"x":1568394060000,"y":0.2},{"x":1568394120000,"y":0.17},{"x":1568394180000,"y":0.17},{"x":1568394240000,"y":0.3},{"x":1568394300000,"y":0.24},{"x":1568394360000,"y":0.15},{"x":1568394420000,"y":0.17},{"x":1568394480000,"y":0.16},{"x":1568394540000,"y":0.41},{"x":1568394600000,"y":0.24},{"x":1568394660000,"y":0.15},{"x":1568394720000,"y":0.15},{"x":1568394780000,"y":0.17},{"x":1568394840000,"y":0.16},{"x":1568394900000,"y":0.43},{"x":1568394960000,"y":0.13},{"x":1568395020000,"y":0.16},{"x":1568395080000,"y":0.15},{"x":1568395140000,"y":0.15},{"x":1568395200000,"y":0.37},{"x":1568395260000,"y":0.1},{"x":1568395320000,"y":0.1},{"x":1568395380000,"y":0.1},{"x":1568395440000,"y":0.13},{"x":1568395500000,"y":0.27},{"x":1568395560000,"y":0.07},{"x":1568395620000,"y":0.09},{"x":1568395680000,"y":0.08},{"x":1568395740000,"y":0.07},{"x":1568395800000,"y":0.24},{"x":1568395860000,"y":0.09},{"x":1568395920000,"y":0.09},{"x":1568395980000,"y":0.07},{"x":1568396040000,"y":0.06},{"x":1568396100000,"y":0.3},{"x":1568396160000,"y":0.49},{"x":1568396220000,"y":0.05},{"x":1568396280000,"y":0.08},{"x":1568396340000,"y":0.24},{"x":1568396400000,"y":0.35},{"x":1568396460000,"y":0.1},{"x":1568396520000,"y":0.06},{"x":1568396580000,"y":0.1},{"x":1568396640000,"y":0.09},{"x":1568396700000,"y":0.3},{"x":1568396760000,"y":0.1},{"x":1568396820000,"y":0.05},{"x":1568396880000,"y":0.1},{"x":1568396940000,"y":0.09},{"x":1568397000000,"y":0.2},{"x":1568397060000,"y":0.24},{"x":1568397120000,"y":0.07},{"x":1568397180000,"y":0.09},{"x":1568397240000,"y":0.09},{"x":1568397300000,"y":0.14},{"x":1568397360000,"y":0.27},{"x":1568397420000,"y":0.1},{"x":1568397480000,"y":0.07},{"x":1568397540000,"y":0.09},{"x":1568397600000,"y":0.18},{"x":1568397660000,"y":0.22},{"x":1568397720000,"y":0.06},{"x":1568397780000,"y":0.07},{"x":1568397840000,"y":0.07},{"x":1568397900000,"y":0.14},{"x":1568397960000,"y":0.21},{"x":1568398020000,"y":0.07},{"x":1568398080000,"y":0.1},{"x":1568398140000,"y":0.18},{"x":1568398200000,"y":0.12},{"x":1568398260000,"y":0.22},{"x":1568398320000,"y":0.09},{"x":1568398380000,"y":0.08},{"x":1568398440000,"y":0.09},{"x":1568398500000,"y":0.15},{"x":1568398560000,"y":0.2},{"x":1568398620000,"y":0.12},{"x":1568398680000,"y":0.1},{"x":1568398740000,"y":0.11},{"x":1568398800000,"y":0.17},{"x":1568398860000,"y":0.22},{"x":1568398920000,"y":0.07},{"x":1568398980000,"y":0.06},{"x":1568399040000,"y":0.06},{"x":1568399100000,"y":0.17},{"x":1568399160000,"y":0.07},{"x":1568399220000,"y":0.2},{"x":1568399280000,"y":0.05},{"x":1568399340000,"y":0.07},{"x":1568399400000,"y":0.17},{"x":1568399460000,"y":0.05},{"x":1568399520000,"y":0.2},{"x":1568399580000,"y":0.07},{"x":1568399640000,"y":0.06},{"x":1568399700000,"y":0.16},{"x":1568399760000,"y":0.09},{"x":1568399820000,"y":3.73},{"x":1568399880000,"y":0.08},{"x":1568399940000,"y":0.19},{"x":1568400000000,"y":0.18},{"x":1568400060000,"y":0.06},{"x":1568400120000,"y":0.2},{"x":1568400180000,"y":0.09},{"x":1568400240000,"y":0.08},{"x":1568400300000,"y":0.13},{"x":1568400360000,"y":0.08},{"x":1568400420000,"y":0.18},{"x":1568400480000,"y":0.09},{"x":1568400540000,"y":0.06},{"x":1568400600000,"y":0.1},{"x":1568400660000,"y":0.06},{"x":1568400720000,"y":0.21},{"x":1568400780000,"y":0.07},{"x":1568400840000,"y":0.09},{"x":1568400900000,"y":0.12},{"x":1568400960000,"y":0.05},{"x":1568401020000,"y":0.21},{"x":1568401080000,"y":0.07},{"x":1568401140000,"y":0.14},{"x":1568401200000,"y":0.18},{"x":1568401260000,"y":0.19},{"x":1568401320000,"y":0.46},{"x":1568401380000,"y":0.84},{"x":1568401440000,"y":0.51},{"x":1568401500000,"y":0.7},{"x":1568401560000,"y":0.11},{"x":1568401620000,"y":0.1},{"x":1568401680000,"y":0.21},{"x":1568401740000,"y":0.18},{"x":1568401800000,"y":0.17},{"x":1568401860000,"y":0.07},{"x":1568401920000,"y":0.08},{"x":1568401980000,"y":0.23},{"x":1568402040000,"y":0.1},{"x":1568402100000,"y":19.12},{"x":1568402160000,"y":0.15},{"x":1568402220000,"y":0.22},{"x":1568402280000,"y":0.24},{"x":1568402340000,"y":0.1},{"x":1568402400000,"y":0.18},{"x":1568402460000,"y":0.08},{"x":1568402520000,"y":0.1},{"x":1568402580000,"y":0.22},{"x":1568402640000,"y":0.1},{"x":1568402700000,"y":0.21},{"x":1568402760000,"y":0.1},{"x":1568402820000,"y":0.04},{"x":1568402880000,"y":0.22},{"x":1568402940000,"y":0.08},{"x":1568403000000,"y":0.19},{"x":1568403060000,"y":0.05},{"x":1568403120000,"y":0.07},{"x":1568403180000,"y":0.07},{"x":1568403240000,"y":0.22},{"x":1568403300000,"y":0.12},{"x":1568403360000,"y":0.08},{"x":1568403420000,"y":0.07},{"x":1568403480000,"y":0.05},{"x":1568403540000,"y":0.3},{"x":1568403600000,"y":0.21},{"x":1568403660000,"y":0.06},{"x":1568403720000,"y":0.05},{"x":1568403780000,"y":0.11},{"x":1568403840000,"y":0.23},{"x":1568403900000,"y":0.14},{"x":1568403960000,"y":0.07},{"x":1568404020000,"y":0.1},{"x":1568404080000,"y":0.1},{"x":1568404140000,"y":0.19},{"x":1568404200000,"y":0.17},{"x":1568404260000,"y":0.05},{"x":1568404320000,"y":0.05},{"x":1568404380000,"y":0.06},{"x":1568404440000,"y":0.18},{"x":1568404500000,"y":0.17},{"x":1568404560000,"y":0.12},{"x":1568404620000,"y":0.05},{"x":1568404680000,"y":0.09},{"x":1568404740000,"y":0.23},{"x":1568404800000,"y":0.24},{"x":1568404860000,"y":0.05},{"x":1568404920000,"y":0.06},{"x":1568404980000,"y":0.07},{"x":1568405040000,"y":0.2},{"x":1568405100000,"y":0.2},{"x":1568405160000,"y":0.07},{"x":1568405220000,"y":0.05},{"x":1568405280000,"y":0.06},{"x":1568405340000,"y":0.13},{"x":1568405400000,"y":0.27},{"x":1568405460000,"y":0.1},{"x":1568405520000,"y":0.09},{"x":1568405580000,"y":0.1},{"x":1568405640000,"y":0.06},{"x":1568405700000,"y":0.28},{"x":1568405760000,"y":0.07},{"x":1568405820000,"y":0.07},{"x":1568405880000,"y":0.05},{"x":1568405940000,"y":0.05},{"x":1568406000000,"y":0.3},{"x":1568406060000,"y":0.06},{"x":1568406120000,"y":0.07},{"x":1568406180000,"y":0.05},{"x":1568406240000,"y":0.05},{"x":1568406300000,"y":0.35},{"x":1568406360000,"y":0.09},{"x":1568406420000,"y":0.07},{"x":1568406480000,"y":0.08},{"x":1568406540000,"y":0.05},{"x":1568406600000,"y":5.09},{"x":1568406660000,"y":0.41},{"x":1568406720000,"y":0.09},{"x":1568406780000,"y":0.06},{"x":1568406840000,"y":0.06},{"x":1568406900000,"y":0.27},{"x":1568406960000,"y":0.1},{"x":1568407020000,"y":0.07},{"x":1568407080000,"y":0.07},{"x":1568407140000,"y":0.11},{"x":1568407200000,"y":0.28},{"x":1568407260000,"y":0.07},{"x":1568407320000,"y":0.09},{"x":1568407380000,"y":0.09},{"x":1568407440000,"y":0.12},{"x":1568407500000,"y":0.11},{"x":1568407560000,"y":0.23},{"x":1568407620000,"y":0.06},{"x":1568407680000,"y":0.07},{"x":1568407740000,"y":0.1},{"x":1568407800000,"y":0.1},{"x":1568407860000,"y":0.21},{"x":1568407920000,"y":0.07},{"x":1568407980000,"y":0.06},{"x":1568408040000,"y":0.05},{"x":1568408100000,"y":0.12},{"x":1568408160000,"y":0.19},{"x":1568408220000,"y":0.1},{"x":1568408280000,"y":0.07},{"x":1568408340000,"y":0.07},{"x":1568408400000,"y":0.22},{"x":1568408460000,"y":0.2},{"x":1568408520000,"y":0.08},{"x":1568408580000,"y":0.07},{"x":1568408640000,"y":0.05},{"x":1568408700000,"y":0.14},{"x":1568408760000,"y":0.25},{"x":1568408820000,"y":0.07},{"x":1568408880000,"y":0.09},{"x":1568408940000,"y":0.16},{"x":1568409000000,"y":0.15},{"x":1568409060000,"y":0.22},{"x":1568409120000,"y":0.07},{"x":1568409180000,"y":0.05},{"x":1568409240000,"y":0.08},{"x":1568409300000,"y":0.14},{"x":1568409360000,"y":0.22},{"x":1568409420000,"y":0.08},{"x":1568409480000,"y":0.06},{"x":1568409540000,"y":0.06},{"x":1568409600000,"y":0.16},{"x":1568409660000,"y":0.09},{"x":1568409720000,"y":0.22},{"x":1568409780000,"y":0.09},{"x":1568409840000,"y":0.06},{"x":1568409900000,"y":0.16},{"x":1568409960000,"y":0.05},{"x":1568410020000,"y":0.25},{"x":1568410080000,"y":0.1},{"x":1568410140000,"y":0.05},{"x":1568410200000,"y":0.15},{"x":1568410260000,"y":0.09},{"x":1568410320000,"y":0.22},{"x":1568410380000,"y":0.1},{"x":1568410440000,"y":0.05},{"x":1568410500000,"y":0.15},{"x":1568410560000,"y":0.07},{"x":1568410620000,"y":0.2},{"x":1568410680000,"y":1.54},{"x":1568410740000,"y":0.16},{"x":1568410800000,"y":0.12},{"x":1568410860000,"y":0.06},{"x":1568410920000,"y":0.22},{"x":1568410980000,"y":0.06},{"x":1568411040000,"y":0.07},{"x":1568411100000,"y":0.14},{"x":1568411160000,"y":0.07},{"x":1568411220000,"y":0.2},{"x":1568411280000,"y":0.06},{"x":1568411340000,"y":0.07},{"x":1568411400000,"y":0.1},{"x":1568411460000,"y":0.07},{"x":1568411520000,"y":0.17},{"x":1568411580000,"y":0.09},{"x":1568411640000,"y":0.07},{"x":1568411700000,"y":0.15},{"x":1568411760000,"y":0.07},{"x":1568411820000,"y":0.08},{"x":1568411880000,"y":0.2},{"x":1568411940000,"y":0.08},{"x":1568412000000,"y":0.26},{"x":1568412060000,"y":0.07},{"x":1568412120000,"y":0.07},{"x":1568412180000,"y":0.18},{"x":1568412240000,"y":0.07},{"x":1568412300000,"y":0.19},{"x":1568412360000,"y":0.07},{"x":1568412420000,"y":0.08},{"x":1568412480000,"y":0.22},{"x":1568412540000,"y":0.12},{"x":1568412600000,"y":0.13},{"x":1568412660000,"y":0.07},{"x":1568412720000,"y":0.07},{"x":1568412780000,"y":0.21},{"x":1568412840000,"y":0.1},{"x":1568412900000,"y":0.11},{"x":1568412960000,"y":0.06},{"x":1568413020000,"y":0.1},{"x":1568413080000,"y":0.2},{"x":1568413140000,"y":0.12},{"x":1568413200000,"y":0.14},{"x":1568413260000,"y":0.08},{"x":1568413320000,"y":0.11},{"x":1568413380000,"y":0.24},{"x":1568413440000,"y":0.09},{"x":1568413500000,"y":0.14},{"x":1568413560000,"y":0.08},{"x":1568413620000,"y":0.06},{"x":1568413680000,"y":0.06},{"x":1568413740000,"y":0.2},{"x":1568413800000,"y":0.14},{"x":1568413860000,"y":0.08},{"x":1568413920000,"y":0.09},{"x":1568413980000,"y":0.05},{"x":1568414040000,"y":0.22},{"x":1568414100000,"y":0.22},{"x":1568414160000,"y":0.07},{"x":1568414220000,"y":0.06},{"x":1568414280000,"y":0.07},{"x":1568414340000,"y":1.31},{"x":1568414400000,"y":0.2},{"x":1568414460000,"y":0.06},{"x":1568414520000,"y":0.07},{"x":1568414580000,"y":0.07},{"x":1568414640000,"y":0.22},{"x":1568414700000,"y":0.17},{"x":1568414760000,"y":0.06},{"x":1568414820000,"y":0.07},{"x":1568414880000,"y":0.08},{"x":1568414940000,"y":0.19},{"x":1568415000000,"y":0.13},{"x":1568415060000,"y":0.08},{"x":1568415120000,"y":0.09},{"x":1568415180000,"y":0.05},{"x":1568415240000,"y":0.21},{"x":1568415300000,"y":0.12},{"x":1568415360000,"y":0.07},{"x":1568415420000,"y":0.1},{"x":1568415480000,"y":0.07},{"x":1568415540000,"y":0.2},{"x":1568415600000,"y":0.15},{"x":1568415660000,"y":0.09},{"x":1568415720000,"y":0.09},{"x":1568415780000,"y":0.11},{"x":1568415840000,"y":0.25},{"x":1568415900000,"y":0.12},{"x":1568415960000,"y":0.06},{"x":1568416020000,"y":0.06},{"x":1568416080000,"y":0.07},{"x":1568416140000,"y":0.14},{"x":1568416200000,"y":0.29},{"x":1568416260000,"y":0.08},{"x":1568416320000,"y":0.08},{"x":1568416380000,"y":0.08},{"x":1568416440000,"y":0.12},{"x":1568416500000,"y":0.27},{"x":1568416560000,"y":0.08},{"x":1568416620000,"y":0.07},{"x":1568416680000,"y":0.07},{"x":1568416740000,"y":0.07},{"x":1568416800000,"y":0.32},{"x":1568416860000,"y":0.07},{"x":1568416920000,"y":0.06},{"x":1568416980000,"y":0.09},{"x":1568417040000,"y":0.12},{"x":1568417100000,"y":0.31},{"x":1568417160000,"y":0.14},{"x":1568417220000,"y":0.11},{"x":1568417280000,"y":0.08},{"x":1568417340000,"y":0.11},{"x":1568417400000,"y":0.4},{"x":1568417460000,"y":0.1},{"x":1568417520000,"y":0.07},{"x":1568417580000,"y":0.16},{"x":1568417640000,"y":0.12},{"x":1568417700000,"y":0.26},{"x":1568417760000,"y":0.1},{"x":1568417820000,"y":0.1},{"x":1568417880000,"y":0.15},{"x":1568417940000,"y":0.2},{"x":1568418000000,"y":0.79},{"x":1568418060000,"y":0.09},{"x":1568418120000,"y":0.11},{"x":1568418180000,"y":0.1},{"x":1568418240000,"y":0.11},{"x":1568418300000,"y":0.2},{"x":1568418360000,"y":0.24},{"x":1568418420000,"y":0.11},{"x":1568418480000,"y":0.13},{"x":1568418540000,"y":0.1},{"x":1568418600000,"y":0.15},{"x":1568418660000,"y":0.28},{"x":1568418720000,"y":0.12},{"x":1568418780000,"y":0.16},{"x":1568418840000,"y":0.15},{"x":1568418900000,"y":0.22},{"x":1568418960000,"y":0.3},{"x":1568419020000,"y":0.13},{"x":1568419080000,"y":0.17},{"x":1568419140000,"y":0.17},{"x":1568419200000,"y":0.29},{"x":1568419260000,"y":0.29},{"x":1568419320000,"y":0.14},{"x":1568419380000,"y":0.15},{"x":1568419440000,"y":0.18},{"x":1568419500000,"y":0.22},{"x":1568419560000,"y":0.28},{"x":1568419620000,"y":0.15},{"x":1568419680000,"y":0.19},{"x":1568419740000,"y":0.25},{"x":1568419800000,"y":0.25},{"x":1568419860000,"y":0.29},{"x":1568419920000,"y":0.15},{"x":1568419980000,"y":0.15},{"x":1568420040000,"y":0.16},{"x":1568420100000,"y":0.26},{"x":1568420160000,"y":0.31},{"x":1568420220000,"y":0.17},{"x":1568420280000,"y":0.16},{"x":1568420340000,"y":0.15},{"x":1568420400000,"y":0.21},{"x":1568420460000,"y":0.29},{"x":1568420520000,"y":0.18},{"x":1568420580000,"y":0.14},{"x":1568420640000,"y":0.15},{"x":1568420700000,"y":0.19},{"x":1568420760000,"y":0.15},{"x":1568420820000,"y":0.32},{"x":1568420880000,"y":0.16},{"x":1568420940000,"y":0.16},{"x":1568421000000,"y":0.24},{"x":1568421060000,"y":0.13},{"x":1568421120000,"y":0.29},{"x":1568421180000,"y":0.16},{"x":1568421240000,"y":0.15},{"x":1568421300000,"y":0.26},{"x":1568421360000,"y":0.15},{"x":1568421420000,"y":0.3},{"x":1568421480000,"y":0.14},{"x":1568421540000,"y":0.22},{"x":1568421600000,"y":0.22},{"x":1568421660000,"y":0.15},{"x":1568421720000,"y":0.27},{"x":1568421780000,"y":0.18},{"x":1568421840000,"y":0.18},{"x":1568421900000,"y":0.21},{"x":1568421960000,"y":0.16},{"x":1568422020000,"y":0.28},{"x":1568422080000,"y":0.15},{"x":1568422140000,"y":0.13},{"x":1568422200000,"y":0.24},{"x":1568422260000,"y":0.17},{"x":1568422320000,"y":0.27},{"x":1568422380000,"y":0.13},{"x":1568422440000,"y":0.15},{"x":1568422500000,"y":0.26},{"x":1568422560000,"y":0.14},{"x":1568422620000,"y":0.29},{"x":1568422680000,"y":0.16},{"x":1568422740000,"y":0.18},{"x":1568422800000,"y":0.31},{"x":1568422860000,"y":0.16},{"x":1568422920000,"y":0.29},{"x":1568422980000,"y":0.15},{"x":1568423040000,"y":0.16},{"x":1568423100000,"y":0.22},{"x":1568423160000,"y":0.14},{"x":1568423220000,"y":0.13},{"x":1568423280000,"y":0.28},{"x":1568423340000,"y":0.24},{"x":1568423400000,"y":0.24},{"x":1568423460000,"y":0.13},{"x":1568423520000,"y":0.14},{"x":1568423580000,"y":0.28},{"x":1568423640000,"y":0.16},{"x":1568423700000,"y":0.22},{"x":1568423760000,"y":0.15},{"x":1568423820000,"y":0.15},{"x":1568423880000,"y":0.29},{"x":1568423940000,"y":0.16},{"x":1568424000000,"y":0.25},{"x":1568424060000,"y":0.18},{"x":1568424120000,"y":0.16},{"x":1568424180000,"y":0.29},{"x":1568424240000,"y":0.15},{"x":1568424300000,"y":0.21},{"x":1568424360000,"y":0.15},{"x":1568424420000,"y":0.16},{"x":1568424480000,"y":0.3},{"x":1568424540000,"y":0.17},{"x":1568424600000,"y":0.27},{"x":1568424660000,"y":0.17},{"x":1568424720000,"y":0.16},{"x":1568424780000,"y":0.28},{"x":1568424840000,"y":0.15},{"x":1568424900000,"y":0.25},{"x":1568424960000,"y":0.16},{"x":1568425020000,"y":0.17},{"x":1568425080000,"y":0.3},{"x":1568425140000,"y":0.26},{"x":1568425200000,"y":0.23},{"x":1568425260000,"y":2.02},{"x":1568425320000,"y":0.17},{"x":1568425380000,"y":0.37},{"x":1568425440000,"y":0.24},{"x":1568425500000,"y":0.22},{"x":1568425560000,"y":0.17},{"x":1568425620000,"y":0.18},{"x":1568425680000,"y":0.15},{"x":1568425740000,"y":0.31},{"x":1568425800000,"y":0.2},{"x":1568425860000,"y":0.16},{"x":1568425920000,"y":0.16},{"x":1568425980000,"y":0.17},{"x":1568426040000,"y":0.32},{"x":1568426100000,"y":0.22},{"x":1568426160000,"y":0.15},{"x":1568426220000,"y":0.17},{"x":1568426280000,"y":0.18},{"x":1568426340000,"y":0.28},{"x":1568426400000,"y":0.23},{"x":1568426460000,"y":0.15},{"x":1568426520000,"y":0.18},{"x":1568426580000,"y":0.16},{"x":1568426640000,"y":0.36},{"x":1568426700000,"y":0.28},{"x":1568426760000,"y":0.16},{"x":1568426820000,"y":0.16},{"x":1568426880000,"y":0.18},{"x":1568426940000,"y":0.37},{"x":1568427000000,"y":0.25},{"x":1568427060000,"y":0.18},{"x":1568427120000,"y":0.17},{"x":1568427180000,"y":0.17},{"x":1568427240000,"y":0.32},{"x":1568427300000,"y":0.25},{"x":1568427360000,"y":0.17},{"x":1568427420000,"y":0.2},{"x":1568427480000,"y":0.17},{"x":1568427540000,"y":0.16},{"x":1568427600000,"y":0.39},{"x":1568427660000,"y":0.17},{"x":1568427720000,"y":0.17},{"x":1568427780000,"y":0.17},{"x":1568427840000,"y":0.18},{"x":1568427900000,"y":0.41},{"x":1568427960000,"y":0.17},{"x":1568428020000,"y":0.22},{"x":1568428080000,"y":0.18},{"x":1568428140000,"y":0.15},{"x":1568428200000,"y":0.34},{"x":1568428260000,"y":0.15},{"x":1568428320000,"y":0.17},{"x":1568428380000,"y":0.15},{"x":1568428440000,"y":0.12},{"x":1568428500000,"y":5},{"x":1568428560000,"y":0.45},{"x":1568428620000,"y":0.11},{"x":1568428680000,"y":0.1},{"x":1568428740000,"y":0.18},{"x":1568428800000,"y":0.32},{"x":1568428860000,"y":0.12},{"x":1568428920000,"y":0.1},{"x":1568428980000,"y":0.11},{"x":1568429040000,"y":0.12},{"x":1568429100000,"y":0.29},{"x":1568429160000,"y":0.14},{"x":1568429220000,"y":0.07},{"x":1568429280000,"y":0.09},{"x":1568429340000,"y":0.07},{"x":1568429400000,"y":0.14},{"x":1568429460000,"y":0.27},{"x":1568429520000,"y":0.16},{"x":1568429580000,"y":0.08},{"x":1568429640000,"y":0.1},{"x":1568429700000,"y":0.12},{"x":1568429760000,"y":0.22},{"x":1568429820000,"y":0.09},{"x":1568429880000,"y":0.07},{"x":1568429940000,"y":0.09},{"x":1568430000000,"y":0.28},{"x":1568430060000,"y":0.24},{"x":1568430120000,"y":0.08},{"x":1568430180000,"y":0.08},{"x":1568430240000,"y":0.07},{"x":1568430300000,"y":0.19},{"x":1568430360000,"y":0.28},{"x":1568430420000,"y":0.07},{"x":1568430480000,"y":0.1},{"x":1568430540000,"y":0.15},{"x":1568430600000,"y":0.23},{"x":1568430660000,"y":0.2},{"x":1568430720000,"y":0.08},{"x":1568430780000,"y":0.09},{"x":1568430840000,"y":0.11},{"x":1568430900000,"y":0.22},{"x":1568430960000,"y":0.2},{"x":1568431020000,"y":0.06},{"x":1568431080000,"y":0.07},{"x":1568431140000,"y":0.1},{"x":1568431200000,"y":0.18},{"x":1568431260000,"y":0.07},{"x":1568431320000,"y":0.25},{"x":1568431380000,"y":0.17},{"x":1568431440000,"y":0.11},{"x":1568431500000,"y":0.15},{"x":1568431560000,"y":0.09},{"x":1568431620000,"y":0.28},{"x":1568431680000,"y":0.15},{"x":1568431740000,"y":0.11},{"x":1568431800000,"y":0.62},{"x":1568431860000,"y":0.09},{"x":1568431920000,"y":0.21},{"x":1568431980000,"y":0.12},{"x":1568432040000,"y":0.56},{"x":1568432100000,"y":0.16},{"x":1568432160000,"y":0.1},{"x":1568432220000,"y":0.58},{"x":1568432280000,"y":0.1},{"x":1568432340000,"y":0.26},{"x":1568432400000,"y":0.2},{"x":1568432460000,"y":0.08},{"x":1568432520000,"y":0.29},{"x":1568432580000,"y":0.1},{"x":1568432640000,"y":0.12},{"x":1568432700000,"y":0.21},{"x":1568432760000,"y":0.06},{"x":1568432820000,"y":0.25},{"x":1568432880000,"y":0.1},{"x":1568432940000,"y":0.05},{"x":1568433000000,"y":0.14},{"x":1568433060000,"y":0.09},{"x":1568433120000,"y":1.78},{"x":1568433180000,"y":0.07},{"x":1568433240000,"y":0.09},{"x":1568433300000,"y":0.14},{"x":1568433360000,"y":0.08},{"x":1568433420000,"y":0.1},{"x":1568433480000,"y":0.25},{"x":1568433540000,"y":0.81},{"x":1568433600000,"y":0.21},{"x":1568433660000,"y":0.1},{"x":1568433720000,"y":0.07},{"x":1568433780000,"y":0.57},{"x":1568433840000,"y":0.12},{"x":1568433900000,"y":0.21},{"x":1568433960000,"y":0.1},{"x":1568434020000,"y":0.12},{"x":1568434080000,"y":0.22},{"x":1568434140000,"y":0.69},{"x":1568434200000,"y":0.18},{"x":1568434260000,"y":0.09},{"x":1568434320000,"y":0.07},{"x":1568434380000,"y":1.21},{"x":1568434440000,"y":0.1},{"x":1568434500000,"y":0.15},{"x":1568434560000,"y":0.14},{"x":1568434620000,"y":0.38},{"x":1568434680000,"y":0.27},{"x":1568434740000,"y":0.11},{"x":1568434800000,"y":0.38},{"x":1568434860000,"y":0.12},{"x":1568434920000,"y":0.07},{"x":1568434980000,"y":0.23},{"x":1568435040000,"y":0.07},{"x":1568435100000,"y":0.2},{"x":1568435160000,"y":0.09},{"x":1568435220000,"y":0.08},{"x":1568435280000,"y":0.24},{"x":1568435340000,"y":0.08},{"x":1568435400000,"y":0.13},{"x":1568435460000,"y":0.11},{"x":1568435520000,"y":0.07},{"x":1568435580000,"y":0.2},{"x":1568435640000,"y":0.96},{"x":1568435700000,"y":0.18},{"x":1568435760000,"y":0.08},{"x":1568435820000,"y":0.09},{"x":1568435880000,"y":0.33},{"x":1568435940000,"y":0.34},{"x":1568436000000,"y":0.22},{"x":1568436060000,"y":0.09},{"x":1568436120000,"y":0.1},{"x":1568436180000,"y":2.59},{"x":1568436240000,"y":0.25},{"x":1568436300000,"y":0.15},{"x":1568436360000,"y":0.1},{"x":1568436420000,"y":0.09},{"x":1568436480000,"y":0.08},{"x":1568436540000,"y":0.68},{"x":1568436600000,"y":0.18},{"x":1568436660000,"y":0.07},{"x":1568436720000,"y":0.09},{"x":1568436780000,"y":0.14},{"x":1568436840000,"y":0.23},{"x":1568436900000,"y":0.18},{"x":1568436960000,"y":0.08},{"x":1568437020000,"y":0.07},{"x":1568437080000,"y":0.1},{"x":1568437140000,"y":0.23},{"x":1568437200000,"y":0.82},{"x":1568437260000,"y":0.09},{"x":1568437320000,"y":0.09},{"x":1568437380000,"y":0.06},{"x":1568437440000,"y":0.2},{"x":1568437500000,"y":0.15},{"x":1568437560000,"y":0.27},{"x":1568437620000,"y":0.1},{"x":1568437680000,"y":0.1},{"x":1568437740000,"y":0.14},{"x":1568437800000,"y":0.27},{"x":1568437860000,"y":0.07},{"x":1568437920000,"y":0.1},{"x":1568437980000,"y":0.1},{"x":1568438040000,"y":0.1},{"x":1568438100000,"y":0.3},{"x":1568438160000,"y":0.08},{"x":1568438220000,"y":0.09},{"x":1568438280000,"y":0.1},{"x":1568438340000,"y":0.1},{"x":1568438400000,"y":0.3},{"x":1568438460000,"y":0.1},{"x":1568438520000,"y":0.11},{"x":1568438580000,"y":4.36},{"x":1568438640000,"y":0.13},{"x":1568438700000,"y":0.29},{"x":1568438760000,"y":0.09},{"x":1568438820000,"y":0.1},{"x":1568438880000,"y":0.06},{"x":1568438940000,"y":0.09},{"x":1568439000000,"y":0.32},{"x":1568439060000,"y":0.1},{"x":1568439120000,"y":0.1},{"x":1568439180000,"y":0.06},{"x":1568439240000,"y":0.58},{"x":1568439300000,"y":0.33},{"x":1568439360000,"y":0.08},{"x":1568439420000,"y":0.09},{"x":1568439480000,"y":0.08},{"x":1568439540000,"y":0.18},{"x":1568439600000,"y":0.3},{"x":1568439660000,"y":0.06},{"x":1568439720000,"y":1.64},{"x":1568439780000,"y":1.39},{"x":1568439840000,"y":0.1},{"x":1568439900000,"y":0.62},{"x":1568439960000,"y":0.07},{"x":1568440020000,"y":0.08},{"x":1568440080000,"y":0.09},{"x":1568440140000,"y":0.1},{"x":1568440200000,"y":0.3},{"x":1568440260000,"y":0.08},{"x":1568440320000,"y":0.08},{"x":1568440380000,"y":0.08},{"x":1568440440000,"y":0.1},{"x":1568440500000,"y":0.18},{"x":1568440560000,"y":0.24},{"x":1568440620000,"y":0.09},{"x":1568440680000,"y":0.09},{"x":1568440740000,"y":0.08},{"x":1568440800000,"y":0.23},{"x":1568440860000,"y":0.22},{"x":1568440920000,"y":0.07},{"x":1568440980000,"y":0.08},{"x":1568441040000,"y":0.12},{"x":1568441100000,"y":0.14},{"x":1568441160000,"y":0.23},{"x":1568441220000,"y":0.07},{"x":1568441280000,"y":0.1},{"x":1568441340000,"y":0.24},{"x":1568441400000,"y":0.17},{"x":1568441460000,"y":0.28},{"x":1568441520000,"y":0.08},{"x":1568441580000,"y":0.83},{"x":1568441640000,"y":0.05},{"x":1568441700000,"y":0.14},{"x":1568441760000,"y":0.25},{"x":1568441820000,"y":0.14},{"x":1568441880000,"y":0.09},{"x":1568441940000,"y":0.1},{"x":1568442000000,"y":0.18},{"x":1568442060000,"y":0.25},{"x":1568442120000,"y":0.08},{"x":1568442180000,"y":0.07},{"x":1568442240000,"y":0.08},{"x":1568442300000,"y":0.16},{"x":1568442360000,"y":0.22},{"x":1568442420000,"y":0.1},{"x":1568442480000,"y":0.09},{"x":1568442540000,"y":0.09},{"x":1568442600000,"y":0.1},{"x":1568442660000,"y":0.11},{"x":1568442720000,"y":0.23},{"x":1568442780000,"y":0.09},{"x":1568442840000,"y":0.12},{"x":1568442900000,"y":0.15},{"x":1568442960000,"y":0.08},{"x":1568443020000,"y":0.22},{"x":1568443080000,"y":0.1},{"x":1568443140000,"y":0.17},{"x":1568443200000,"y":0.17},{"x":1568443260000,"y":0.12},{"x":1568443320000,"y":0.4},{"x":1568443380000,"y":0.1},{"x":1568443440000,"y":0.12},{"x":1568443500000,"y":0.2},{"x":1568443560000,"y":0.1},{"x":1568443620000,"y":0.24},{"x":1568443680000,"y":0.13},{"x":1568443740000,"y":0.1},{"x":1568443800000,"y":0.15},{"x":1568443860000,"y":0.07},{"x":1568443920000,"y":0.31},{"x":1568443980000,"y":0.1},{"x":1568444040000,"y":0.07},{"x":1568444100000,"y":0.14},{"x":1568444160000,"y":0.09},{"x":1568444220000,"y":0.22},{"x":1568444280000,"y":0.09},{"x":1568444340000,"y":0.15},{"x":1568444400000,"y":0.23},{"x":1568444460000,"y":0.07},{"x":1568444520000,"y":0.27},{"x":1568444580000,"y":0.08},{"x":1568444640000,"y":0.12},{"x":1568444700000,"y":0.2},{"x":1568444760000,"y":0.19},{"x":1568444820000,"y":0.08},{"x":1568444880000,"y":0.24},{"x":1568444940000,"y":0.21},{"x":1568445000000,"y":0.16},{"x":1568445060000,"y":0.1},{"x":1568445120000,"y":0.1},{"x":1568445180000,"y":0.23},{"x":1568445240000,"y":0.14},{"x":1568445300000,"y":0.15},{"x":1568445360000,"y":0.12},{"x":1568445420000,"y":0.1},{"x":1568445480000,"y":0.23},{"x":1568445540000,"y":0.11},{"x":1568445600000,"y":0.64},{"x":1568445660000,"y":0.74},{"x":1568445720000,"y":0.11},{"x":1568445780000,"y":0.25},{"x":1568445840000,"y":0.15},{"x":1568445900000,"y":0.13},{"x":1568445960000,"y":0.1},{"x":1568446020000,"y":0.1},{"x":1568446080000,"y":0.21},{"x":1568446140000,"y":0.15},{"x":1568446200000,"y":0.24},{"x":1568446260000,"y":0.11},{"x":1568446320000,"y":0.07},{"x":1568446380000,"y":0.22},{"x":1568446440000,"y":0.12},{"x":1568446500000,"y":0.25},{"x":1568446560000,"y":0.08},{"x":1568446620000,"y":0.1},{"x":1568446680000,"y":1.3},{"x":1568446740000,"y":0.3},{"x":1568446800000,"y":0.24},{"x":1568446860000,"y":0.13},{"x":1568446920000,"y":0.09},{"x":1568446980000,"y":0.12},{"x":1568447040000,"y":2.39},{"x":1568447100000,"y":0.18},{"x":1568447160000,"y":0.1},{"x":1568447220000,"y":0.12},{"x":1568447280000,"y":0.1},{"x":1568447340000,"y":4.24},{"x":1568447400000,"y":0.2},{"x":1568447460000,"y":0.11},{"x":1568447520000,"y":0.12},{"x":1568447580000,"y":0.12},{"x":1568447640000,"y":0.22},{"x":1568447700000,"y":0.17},{"x":1568447760000,"y":0.11},{"x":1568447820000,"y":0.11},{"x":1568447880000,"y":0.11},{"x":1568447940000,"y":0.27},{"x":1568448000000,"y":0.17},{"x":1568448060000,"y":0.08},{"x":1568448120000,"y":0.11},{"x":1568448180000,"y":0.08},{"x":1568448240000,"y":0.21},{"x":1568448300000,"y":0.12},{"x":1568448360000,"y":0.11},{"x":1568448420000,"y":0.12},{"x":1568448480000,"y":0.07},{"x":1568448540000,"y":0.3},{"x":1568448600000,"y":0.14},{"x":1568448660000,"y":0.1},{"x":1568448720000,"y":0.12},{"x":1568448780000,"y":0.11},{"x":1568448840000,"y":0.27},{"x":1568448900000,"y":0.23},{"x":1568448960000,"y":0.09},{"x":1568449020000,"y":3.91},{"x":1568449080000,"y":1},{"x":1568449140000,"y":0.22},{"x":1568449200000,"y":0.16},{"x":1568449260000,"y":0.09},{"x":1568449320000,"y":0.11},{"x":1568449380000,"y":0.11},{"x":1568449440000,"y":0.1},{"x":1568449500000,"y":0.33},{"x":1568449560000,"y":0.09},{"x":1568449620000,"y":0.11},{"x":1568449680000,"y":0.08},{"x":1568449740000,"y":0.1},{"x":1568449800000,"y":0.39},{"x":1568449860000,"y":0.14},{"x":1568449920000,"y":0.13},{"x":1568449980000,"y":0.1},{"x":1568450040000,"y":0.13},{"x":1568450100000,"y":0.33},{"x":1568450160000,"y":0.07},{"x":1568450220000,"y":0.12},{"x":1568450280000,"y":0.13},{"x":1568450340000,"y":1.37},{"x":1568450400000,"y":4.99},{"x":1568450460000,"y":0.5},{"x":1568450520000,"y":0.15},{"x":1568450580000,"y":0.14},{"x":1568450640000,"y":0.51},{"x":1568450700000,"y":0.34},{"x":1568450760000,"y":1.53},{"x":1568450820000,"y":0.16},{"x":1568450880000,"y":0.15},{"x":1568450940000,"y":0.12},{"x":1568451000000,"y":0.32},{"x":1568451060000,"y":0.18},{"x":1568451120000,"y":0.1},{"x":1568451180000,"y":0.08},{"x":1568451240000,"y":0.16},{"x":1568451300000,"y":0.2},{"x":1568451360000,"y":0.32},{"x":1568451420000,"y":0.17},{"x":1568451480000,"y":0.2},{"x":1568451540000,"y":0.12},{"x":1568451600000,"y":1.12},{"x":1568451660000,"y":0.26},{"x":1568451720000,"y":0.18},{"x":1568451780000,"y":0.17},{"x":1568451840000,"y":0.18},{"x":1568451900000,"y":0.22},{"x":1568451960000,"y":0.32},{"x":1568452020000,"y":0.17},{"x":1568452080000,"y":0.16},{"x":1568452140000,"y":0.22},{"x":1568452200000,"y":0.24},{"x":1568452260000,"y":0.34},{"x":1568452320000,"y":0.11},{"x":1568452380000,"y":0.15},{"x":1568452440000,"y":0.2},{"x":1568452500000,"y":0.27},{"x":1568452560000,"y":0.31},{"x":1568452620000,"y":0.17},{"x":1568452680000,"y":0.27},{"x":1568452740000,"y":0.17},{"x":1568452800000,"y":0.21},{"x":1568452860000,"y":0.3},{"x":1568452920000,"y":0.15},{"x":1568452980000,"y":0.16},{"x":1568453040000,"y":0.2},{"x":1568453100000,"y":1.15},{"x":1568453160000,"y":0.3},{"x":1568453220000,"y":0.15},{"x":1568453280000,"y":0.18},{"x":1568453340000,"y":0.16},{"x":1568453400000,"y":0.3},{"x":1568453460000,"y":0.17},{"x":1568453520000,"y":0.73},{"x":1568453580000,"y":0.15},{"x":1568453640000,"y":0.17},{"x":1568453700000,"y":0.24},{"x":1568453760000,"y":0.17},{"x":1568453820000,"y":0.32},{"x":1568453880000,"y":0.2},{"x":1568453940000,"y":0.27},{"x":1568454000000,"y":0.28},{"x":1568454060000,"y":0.2},{"x":1568454120000,"y":0.28},{"x":1568454180000,"y":1.34},{"x":1568454240000,"y":1.12},{"x":1568454300000,"y":0.24},{"x":1568454360000,"y":0.18},{"x":1568454420000,"y":0.32},{"x":1568454480000,"y":0.18},{"x":1568454540000,"y":0.16},{"x":1568454600000,"y":1.14},{"x":1568454660000,"y":0.17},{"x":1568454720000,"y":0.35},{"x":1568454780000,"y":0.19},{"x":1568454840000,"y":0.2},{"x":1568454900000,"y":0.26},{"x":1568454960000,"y":0.2},{"x":1568455020000,"y":4.8},{"x":1568455080000,"y":0.19},{"x":1568455140000,"y":0.19},{"x":1568455200000,"y":0.31},{"x":1568455260000,"y":0.17},{"x":1568455320000,"y":0.31},{"x":1568455380000,"y":0.17},{"x":1568455440000,"y":0.22},{"x":1568455500000,"y":0.31},{"x":1568455560000,"y":0.25},{"x":1568455620000,"y":1.44},{"x":1568455680000,"y":0.22},{"x":1568455740000,"y":0.31},{"x":1568455800000,"y":0.22},{"x":1568455860000,"y":0.54},{"x":1568455920000,"y":0.15},{"x":1568455980000,"y":0.48},{"x":1568456040000,"y":0.17},{"x":1568456100000,"y":0.21},{"x":1568456160000,"y":0.2},{"x":1568456220000,"y":0.19},{"x":1568456280000,"y":0.32},{"x":1568456340000,"y":0.22},{"x":1568456400000,"y":0.31},{"x":1568456460000,"y":0.17},{"x":1568456520000,"y":0.22},{"x":1568456580000,"y":0.34},{"x":1568456640000,"y":0.19},{"x":1568456700000,"y":1.3},{"x":1568456760000,"y":0.2},{"x":1568456820000,"y":0.17},{"x":1568456880000,"y":0.3},{"x":1568456940000,"y":0.16},{"x":1568457000000,"y":0.29},{"x":1568457060000,"y":0.18},{"x":1568457120000,"y":0.15},{"x":1568457180000,"y":0.31},{"x":1568457240000,"y":0.14},{"x":1568457300000,"y":0.25},{"x":1568457360000,"y":0.19},{"x":1568457420000,"y":0.15},{"x":1568457480000,"y":0.3},{"x":1568457540000,"y":0.6},{"x":1568457600000,"y":0.27},{"x":1568457660000,"y":0.19},{"x":1568457720000,"y":0.19},{"x":1568457780000,"y":0.3},{"x":1568457840000,"y":0.16},{"x":1568457900000,"y":1.84},{"x":1568457960000,"y":0.16},{"x":1568458020000,"y":0.17},{"x":1568458080000,"y":0.34},{"x":1568458140000,"y":0.19},{"x":1568458200000,"y":0.82},{"x":1568458260000,"y":0.17},{"x":1568458320000,"y":0.17},{"x":1568458380000,"y":0.16},{"x":1568458440000,"y":0.29},{"x":1568458500000,"y":0.2},{"x":1568458560000,"y":0.19},{"x":1568458620000,"y":0.17},{"x":1568458680000,"y":0.18},{"x":1568458740000,"y":0.32},{"x":1568458800000,"y":0.3},{"x":1568458860000,"y":0.2},{"x":1568458920000,"y":0.19},{"x":1568458980000,"y":0.16},{"x":1568459040000,"y":0.27},{"x":1568459100000,"y":0.27},{"x":1568459160000,"y":0.2},{"x":1568459220000,"y":0.17},{"x":1568459280000,"y":0.18},{"x":1568459340000,"y":0.45},{"x":1568459400000,"y":0.3},{"x":1568459460000,"y":0.25},{"x":1568459520000,"y":0.17},{"x":1568459580000,"y":0.2},{"x":1568459640000,"y":0.34},{"x":1568459700000,"y":0.22},{"x":1568459760000,"y":0.18},{"x":1568459820000,"y":0.18},{"x":1568459880000,"y":0.15},{"x":1568459940000,"y":0.31},{"x":1568460000000,"y":0.28},{"x":1568460060000,"y":0.2},{"x":1568460120000,"y":0.17},{"x":1568460180000,"y":0.17},{"x":1568460240000,"y":0.16},{"x":1568460300000,"y":1.74},{"x":1568460360000,"y":0.2},{"x":1568460420000,"y":0.17},{"x":1568460480000,"y":0.16},{"x":1568460540000,"y":0.16},{"x":1568460600000,"y":0.37},{"x":1568460660000,"y":0.21},{"x":1568460720000,"y":0.22},{"x":1568460780000,"y":0.18},{"x":1568460840000,"y":6.02},{"x":1568460900000,"y":0.48},{"x":1568460960000,"y":1.4},{"x":1568461020000,"y":0.15},{"x":1568461080000,"y":0.19},{"x":1568461140000,"y":0.35},{"x":1568461200000,"y":0.37},{"x":1568461260000,"y":0.2},{"x":1568461320000,"y":0.17},{"x":1568461380000,"y":0.2},{"x":1568461440000,"y":0.17},{"x":1568461500000,"y":0.45},{"x":1568461560000,"y":0.19},{"x":1568461620000,"y":0.15},{"x":1568461680000,"y":0.15},{"x":1568461740000,"y":0.15},{"x":1568461800000,"y":0.33},{"x":1568461860000,"y":0.14},{"x":1568461920000,"y":0.16},{"x":1568461980000,"y":0.55},{"x":1568462040000,"y":0.18},{"x":1568462100000,"y":0.25},{"x":1568462160000,"y":0.1},{"x":1568462220000,"y":0.75},{"x":1568462280000,"y":0.1},{"x":1568462340000,"y":0.09},{"x":1568462400000,"y":0.21},{"x":1568462460000,"y":0.2},{"x":1568462520000,"y":0.07},{"x":1568462580000,"y":0.08},{"x":1568462640000,"y":0.09},{"x":1568462700000,"y":0.12},{"x":1568462760000,"y":0.2},{"x":1568462820000,"y":0.09},{"x":1568462880000,"y":0.36},{"x":1568462940000,"y":0.2},{"x":1568463000000,"y":0.13},{"x":1568463060000,"y":0.23},{"x":1568463120000,"y":0.08},{"x":1568463180000,"y":0.1},{"x":1568463240000,"y":0.08},{"x":1568463300000,"y":0.17},{"x":1568463360000,"y":0.26},{"x":1568463420000,"y":0.1},{"x":1568463480000,"y":0.11},{"x":1568463540000,"y":0.11},{"x":1568463600000,"y":0.17},{"x":1568463660000,"y":0.24},{"x":1568463720000,"y":0.1},{"x":1568463780000,"y":0.1},{"x":1568463840000,"y":0.08},{"x":1568463900000,"y":0.65},{"x":1568463960000,"y":3.28},{"x":1568464020000,"y":0.08},{"x":1568464080000,"y":0.1},{"x":1568464140000,"y":0.09},{"x":1568464200000,"y":0.19},{"x":1568464260000,"y":0.25},{"x":1568464320000,"y":0.09},{"x":1568464380000,"y":0.07},{"x":1568464440000,"y":0.12},{"x":1568464500000,"y":0.15},{"x":1568464560000,"y":0.19},{"x":1568464620000,"y":0.1},{"x":1568464680000,"y":0.12},{"x":1568464740000,"y":0.28},{"x":1568464800000,"y":0.17},{"x":1568464860000,"y":0.11},{"x":1568464920000,"y":0.23},{"x":1568464980000,"y":0.1},{"x":1568465040000,"y":0.09},{"x":1568465100000,"y":0.15},{"x":1568465160000,"y":0.15},{"x":1568465220000,"y":0.28},{"x":1568465280000,"y":0.08},{"x":1568465340000,"y":0.09},{"x":1568465400000,"y":0.15},{"x":1568465460000,"y":0.07},{"x":1568465520000,"y":0.24},{"x":1568465580000,"y":0.08},{"x":1568465640000,"y":0.07},{"x":1568465700000,"y":0.16},{"x":1568465760000,"y":0.09},{"x":1568465820000,"y":0.21},{"x":1568465880000,"y":0.07},{"x":1568465940000,"y":0.07},{"x":1568466000000,"y":0.22},{"x":1568466060000,"y":0.07},{"x":1568466120000,"y":0.25},{"x":1568466180000,"y":0.07},{"x":1568466240000,"y":0.11},{"x":1568466300000,"y":0.23},{"x":1568466360000,"y":0.1},{"x":1568466420000,"y":0.27},{"x":1568466480000,"y":0.07},{"x":1568466540000,"y":0.16},{"x":1568466600000,"y":0.15},{"x":1568466660000,"y":0.1},{"x":1568466720000,"y":0.22},{"x":1568466780000,"y":0.06},{"x":1568466840000,"y":0.1},{"x":1568466900000,"y":0.19},{"x":1568466960000,"y":0.1},{"x":1568467020000,"y":0.09},{"x":1568467080000,"y":0.27},{"x":1568467140000,"y":0.09},{"x":1568467200000,"y":0.24},{"x":1568467260000,"y":0.09},{"x":1568467320000,"y":0.1},{"x":1568467380000,"y":0.27},{"x":1568467440000,"y":0.11},{"x":1568467500000,"y":0.19},{"x":1568467560000,"y":0.08},{"x":1568467620000,"y":0.07},{"x":1568467680000,"y":0.25},{"x":1568467740000,"y":0.1},{"x":1568467800000,"y":0.17},{"x":1568467860000,"y":0.1},{"x":1568467920000,"y":0.08},{"x":1568467980000,"y":0.22},{"x":1568468040000,"y":0.09},{"x":1568468100000,"y":0.17},{"x":1568468160000,"y":0.12},{"x":1568468220000,"y":0.09},{"x":1568468280000,"y":0.25},{"x":1568468340000,"y":0.18},{"x":1568468400000,"y":0.19},{"x":1568468460000,"y":0.1},{"x":1568468520000,"y":0.09},{"x":1568468580000,"y":0.26},{"x":1568468640000,"y":0.14},{"x":1568468700000,"y":0.18},{"x":1568468760000,"y":0.1},{"x":1568468820000,"y":0.11},{"x":1568468880000,"y":0.22},{"x":1568468940000,"y":0.07},{"x":1568469000000,"y":0.15},{"x":1568469060000,"y":0.07},{"x":1568469120000,"y":0.11},{"x":1568469180000,"y":0.11},{"x":1568469240000,"y":0.28},{"x":1568469300000,"y":0.15},{"x":1568469360000,"y":0.08},{"x":1568469420000,"y":0.11},{"x":1568469480000,"y":0.1},{"x":1568469540000,"y":0.24},{"x":1568469600000,"y":0.15},{"x":1568469660000,"y":0.09},{"x":1568469720000,"y":0.08},{"x":1568469780000,"y":0.09},{"x":1568469840000,"y":0.22},{"x":1568469900000,"y":0.17},{"x":1568469960000,"y":0.11},{"x":1568470020000,"y":0.09},{"x":1568470080000,"y":0.08},{"x":1568470140000,"y":0.48},{"x":1568470200000,"y":0.25},{"x":1568470260000,"y":0.07},{"x":1568470320000,"y":0.08},{"x":1568470380000,"y":0.09},{"x":1568470440000,"y":0.2},{"x":1568470500000,"y":0.16},{"x":1568470560000,"y":0.07},{"x":1568470620000,"y":0.1},{"x":1568470680000,"y":0.08},{"x":1568470740000,"y":0.23},{"x":1568470800000,"y":0.17},{"x":1568470860000,"y":0.12},{"x":1568470920000,"y":0.07},{"x":1568470980000,"y":0.1},{"x":1568471040000,"y":0.23},{"x":1568471100000,"y":0.19},{"x":1568471160000,"y":0.07},{"x":1568471220000,"y":0.1},{"x":1568471280000,"y":0.09},{"x":1568471340000,"y":0.21},{"x":1568471400000,"y":0.23},{"x":1568471460000,"y":0.13},{"x":1568471520000,"y":0.09},{"x":1568471580000,"y":0.11},{"x":1568471640000,"y":0.09},{"x":1568471700000,"y":0.31},{"x":1568471760000,"y":0.08},{"x":1568471820000,"y":0.08},{"x":1568471880000,"y":0.08},{"x":1568471940000,"y":0.13},{"x":1568472000000,"y":0.3},{"x":1568472060000,"y":0.09},{"x":1568472120000,"y":0.1},{"x":1568472180000,"y":0.12},{"x":1568472240000,"y":0.11},{"x":1568472300000,"y":5.33},{"x":1568472360000,"y":0.22},{"x":1568472420000,"y":0.13},{"x":1568472480000,"y":0.08},{"x":1568472540000,"y":0.08},{"x":1568472600000,"y":0.33},{"x":1568472660000,"y":0.07},{"x":1568472720000,"y":0.08},{"x":1568472780000,"y":0.09},{"x":1568472840000,"y":0.09},{"x":1568472900000,"y":0.32},{"x":1568472960000,"y":0.08},{"x":1568473020000,"y":0.09},{"x":1568473080000,"y":0.08},{"x":1568473140000,"y":0.08},{"x":1568473200000,"y":0.41},{"x":1568473260000,"y":0.1},{"x":1568473320000,"y":0.11},{"x":1568473380000,"y":0.07},{"x":1568473440000,"y":0.09},{"x":1568473500000,"y":0.28},{"x":1568473560000,"y":0.07},{"x":1568473620000,"y":0.08},{"x":1568473680000,"y":0.1},{"x":1568473740000,"y":0.13},{"x":1568473800000,"y":0.14},{"x":1568473860000,"y":0.24},{"x":1568473920000,"y":0.1},{"x":1568473980000,"y":0.1},{"x":1568474040000,"y":0.04},{"x":1568474100000,"y":0.12},{"x":1568474160000,"y":0.24},{"x":1568474220000,"y":0.1},{"x":1568474280000,"y":0.07},{"x":1568474340000,"y":0.09},{"x":1568474400000,"y":0.13},{"x":1568474460000,"y":0.22},{"x":1568474520000,"y":0.06},{"x":1568474580000,"y":0.1},{"x":1568474640000,"y":0.11},{"x":1568474700000,"y":0.17},{"x":1568474760000,"y":0.23},{"x":1568474820000,"y":0.09},{"x":1568474880000,"y":0.09},{"x":1568474940000,"y":0.09},{"x":1568475000000,"y":0.23},{"x":1568475060000,"y":0.22},{"x":1568475120000,"y":0.09},{"x":1568475180000,"y":0.09},{"x":1568475240000,"y":0.13},{"x":1568475300000,"y":0.16},{"x":1568475360000,"y":0.23},{"x":1568475420000,"y":0.08},{"x":1568475480000,"y":0.07},{"x":1568475540000,"y":0.12},{"x":1568475600000,"y":0.21},{"x":1568475660000,"y":0.17},{"x":1568475720000,"y":0.11},{"x":1568475780000,"y":0.1},{"x":1568475840000,"y":0.1},{"x":1568475900000,"y":0.15},{"x":1568475960000,"y":0.2},{"x":1568476020000,"y":0.13},{"x":1568476080000,"y":0.13},{"x":1568476140000,"y":0.1},{"x":1568476200000,"y":0.2},{"x":1568476260000,"y":0.08},{"x":1568476320000,"y":0.22},{"x":1568476380000,"y":0.08},{"x":1568476440000,"y":0.09},{"x":1568476500000,"y":0.17},{"x":1568476560000,"y":0.06},{"x":1568476620000,"y":0.22},{"x":1568476680000,"y":0.08},{"x":1568476740000,"y":0.07},{"x":1568476800000,"y":0.17},{"x":1568476860000,"y":0.09},{"x":1568476920000,"y":0.22},{"x":1568476980000,"y":0.1},{"x":1568477040000,"y":0.08},{"x":1568477100000,"y":0.13},{"x":1568477160000,"y":0.09},{"x":1568477220000,"y":0.21},{"x":1568477280000,"y":0.1},{"x":1568477340000,"y":0.14},{"x":1568477400000,"y":0.15},{"x":1568477460000,"y":0.1},{"x":1568477520000,"y":0.22},{"x":1568477580000,"y":0.12},{"x":1568477640000,"y":0.12},{"x":1568477700000,"y":0.27},{"x":1568477760000,"y":0.11},{"x":1568477820000,"y":0.13},{"x":1568477880000,"y":0.23},{"x":1568477940000,"y":0.08},{"x":1568478000000,"y":0.19},{"x":1568478060000,"y":0.1},{"x":1568478120000,"y":0.1},{"x":1568478180000,"y":0.2},{"x":1568478240000,"y":0.08},{"x":1568478300000,"y":0.18},{"x":1568478360000,"y":0.07},{"x":1568478420000,"y":0.95},{"x":1568478480000,"y":0.24},{"x":1568478540000,"y":0.07},{"x":1568478600000,"y":0.17},{"x":1568478660000,"y":0.09},{"x":1568478720000,"y":0.11},{"x":1568478780000,"y":0.27},{"x":1568478840000,"y":0.11},{"x":1568478900000,"y":0.16},{"x":1568478960000,"y":0.1},{"x":1568479020000,"y":0.09},{"x":1568479080000,"y":0.22},{"x":1568479140000,"y":0.17},{"x":1568479200000,"y":0.15},{"x":1568479260000,"y":0.09},{"x":1568479320000,"y":0.09},{"x":1568479380000,"y":0.26},{"x":1568479440000,"y":0.12},{"x":1568479500000,"y":0.15},{"x":1568479560000,"y":0.1},{"x":1568479620000,"y":0.1},{"x":1568479680000,"y":0.23},{"x":1568479740000,"y":0.11},{"x":1568479800000,"y":0.16},{"x":1568479860000,"y":0.1},{"x":1568479920000,"y":0.1},{"x":1568479980000,"y":0.12},{"x":1568480040000,"y":0.27},{"x":1568480100000,"y":0.17},{"x":1568480160000,"y":0.09},{"x":1568480220000,"y":0.07},{"x":1568480280000,"y":0.09},{"x":1568480340000,"y":0.23},{"x":1568480400000,"y":0.24},{"x":1568480460000,"y":0.1},{"x":1568480520000,"y":0.11},{"x":1568480580000,"y":0.09},{"x":1568480640000,"y":0.2},{"x":1568480700000,"y":0.21},{"x":1568480760000,"y":0.09},{"x":1568480820000,"y":0.1},{"x":1568480880000,"y":0.09},{"x":1568480940000,"y":0.34},{"x":1568481000000,"y":0.17},{"x":1568481060000,"y":0.08},{"x":1568481120000,"y":0.07},{"x":1568481180000,"y":0.07},{"x":1568481240000,"y":0.23},{"x":1568481300000,"y":0.22},{"x":1568481360000,"y":0.09},{"x":1568481420000,"y":0.1},{"x":1568481480000,"y":0.06},{"x":1568481540000,"y":0.28},{"x":1568481600000,"y":0.16},{"x":1568481660000,"y":0.12},{"x":1568481720000,"y":0.09},{"x":1568481780000,"y":0.09},{"x":1568481840000,"y":0.23},{"x":1568481900000,"y":0.16},{"x":1568481960000,"y":0.07},{"x":1568482020000,"y":0.09},{"x":1568482080000,"y":0.08},{"x":1568482140000,"y":0.21},{"x":1568482200000,"y":0.18},{"x":1568482260000,"y":0.1},{"x":1568482320000,"y":0.1},{"x":1568482380000,"y":0.12},{"x":1568482440000,"y":0.09},{"x":1568482500000,"y":0.43},{"x":1568482560000,"y":0.07},{"x":1568482620000,"y":0.09},{"x":1568482680000,"y":0.15},{"x":1568482740000,"y":0.24},{"x":1568482800000,"y":0.35},{"x":1568482860000,"y":0.09},{"x":1568482920000,"y":0.09},{"x":1568482980000,"y":0.12},{"x":1568483040000,"y":0.13},{"x":1568483100000,"y":0.33},{"x":1568483160000,"y":0.08},{"x":1568483220000,"y":0.11},{"x":1568483280000,"y":0.1},{"x":1568483340000,"y":0.09},{"x":1568483400000,"y":0.34},{"x":1568483460000,"y":0.11},{"x":1568483520000,"y":0.12},{"x":1568483580000,"y":0.11},{"x":1568483640000,"y":0.11},{"x":1568483700000,"y":0.38},{"x":1568483760000,"y":0.12},{"x":1568483820000,"y":0.12},{"x":1568483880000,"y":0.07},{"x":1568483940000,"y":0.1},{"x":1568484000000,"y":0.45},{"x":1568484060000,"y":0.16},{"x":1568484120000,"y":0.14},{"x":1568484180000,"y":0.12},{"x":1568484240000,"y":0.17},{"x":1568484300000,"y":0.22},{"x":1568484360000,"y":0.31},{"x":1568484420000,"y":0.1},{"x":1568484480000,"y":0.16},{"x":1568484540000,"y":0.17},{"x":1568484600000,"y":0.18},{"x":1568484660000,"y":0.27},{"x":1568484720000,"y":0.12},{"x":1568484780000,"y":0.19},{"x":1568484840000,"y":0.16},{"x":1568484900000,"y":0.16},{"x":1568484960000,"y":0.33},{"x":1568485020000,"y":0.19},{"x":1568485080000,"y":0.12},{"x":1568485140000,"y":0.12},{"x":1568485200000,"y":0.24},{"x":1568485260000,"y":0.31},{"x":1568485320000,"y":0.13},{"x":1568485380000,"y":0.16},{"x":1568485440000,"y":0.15},{"x":1568485500000,"y":0.31},{"x":1568485560000,"y":0.31},{"x":1568485620000,"y":0.14},{"x":1568485680000,"y":0.19},{"x":1568485740000,"y":0.15},{"x":1568485800000,"y":0.25},{"x":1568485860000,"y":0.32},{"x":1568485920000,"y":0.15},{"x":1568485980000,"y":0.17},{"x":1568486040000,"y":0.16},{"x":1568486100000,"y":0.24},{"x":1568486160000,"y":0.3},{"x":1568486220000,"y":0.18},{"x":1568486280000,"y":0.19},{"x":1568486340000,"y":0.32},{"x":1568486400000,"y":0.28},{"x":1568486460000,"y":0.29},{"x":1568486520000,"y":0.17},{"x":1568486580000,"y":0.2},{"x":1568486640000,"y":0.19},{"x":1568486700000,"y":0.25},{"x":1568486760000,"y":0.21},{"x":1568486820000,"y":0.35},{"x":1568486880000,"y":0.18},{"x":1568486940000,"y":0.17},{"x":1568487000000,"y":0.21},{"x":1568487060000,"y":0.17},{"x":1568487120000,"y":0.33},{"x":1568487180000,"y":0.16},{"x":1568487240000,"y":0.17},{"x":1568487300000,"y":0.27},{"x":1568487360000,"y":0.17},{"x":1568487420000,"y":0.35},{"x":1568487480000,"y":0.15},{"x":1568487540000,"y":0.15},{"x":1568487600000,"y":0.31},{"x":1568487660000,"y":0.19},{"x":1568487720000,"y":0.3},{"x":1568487780000,"y":0.15},{"x":1568487840000,"y":0.2},{"x":1568487900000,"y":0.26},{"x":1568487960000,"y":0.18},{"x":1568488020000,"y":0.3},{"x":1568488080000,"y":0.15},{"x":1568488140000,"y":0.24},{"x":1568488200000,"y":0.24},{"x":1568488260000,"y":0.17},{"x":1568488320000,"y":0.3},{"x":1568488380000,"y":0.14},{"x":1568488440000,"y":0.15},{"x":1568488500000,"y":0.28},{"x":1568488560000,"y":0.19},{"x":1568488620000,"y":0.35},{"x":1568488680000,"y":0.17},{"x":1568488740000,"y":0.18},{"x":1568488800000,"y":0.33},{"x":1568488860000,"y":0.19},{"x":1568488920000,"y":0.16},{"x":1568488980000,"y":0.38},{"x":1568489040000,"y":0.15},{"x":1568489100000,"y":0.21},{"x":1568489160000,"y":0.18},{"x":1568489220000,"y":0.18},{"x":1568489280000,"y":0.31},{"x":1568489340000,"y":0.16},{"x":1568489400000,"y":0.29},{"x":1568489460000,"y":0.17},{"x":1568489520000,"y":0.27},{"x":1568489580000,"y":0.37},{"x":1568489640000,"y":0.17},{"x":1568489700000,"y":0.27},{"x":1568489760000,"y":0.18},{"x":1568489820000,"y":0.18},{"x":1568489880000,"y":0.31},{"x":1568489940000,"y":0.39},{"x":1568490000000,"y":0.34},{"x":1568490060000,"y":0.18},{"x":1568490120000,"y":0.19},{"x":1568490180000,"y":0.38},{"x":1568490240000,"y":0.2},{"x":1568490300000,"y":0.28},{"x":1568490360000,"y":0.18},{"x":1568490420000,"y":0.2},{"x":1568490480000,"y":0.31},{"x":1568490540000,"y":0.18},{"x":1568490600000,"y":0.24},{"x":1568490660000,"y":0.17},{"x":1568490720000,"y":0.17},{"x":1568490780000,"y":0.28},{"x":1568490840000,"y":0.18},{"x":1568490900000,"y":0.31},{"x":1568490960000,"y":0.17},{"x":1568491020000,"y":0.2},{"x":1568491080000,"y":0.18},{"x":1568491140000,"y":0.39},{"x":1568491200000,"y":0.24},{"x":1568491260000,"y":0.18},{"x":1568491320000,"y":0.18},{"x":1568491380000,"y":0.19},{"x":1568491440000,"y":0.35},{"x":1568491500000,"y":0.22},{"x":1568491560000,"y":0.2},{"x":1568491620000,"y":0.2},{"x":1568491680000,"y":0.17},{"x":1568491740000,"y":0.41},{"x":1568491800000,"y":0.23},{"x":1568491860000,"y":0.15},{"x":1568491920000,"y":0.18},{"x":1568491980000,"y":0.18},{"x":1568492040000,"y":0.35},{"x":1568492100000,"y":0.21},{"x":1568492160000,"y":0.16},{"x":1568492220000,"y":0.17},{"x":1568492280000,"y":0.18},{"x":1568492340000,"y":0.35},{"x":1568492400000,"y":0.28},{"x":1568492460000,"y":0.17},{"x":1568492520000,"y":0.18},{"x":1568492580000,"y":0.16},{"x":1568492640000,"y":0.31},{"x":1568492700000,"y":0.29},{"x":1568492760000,"y":0.16},{"x":1568492820000,"y":0.22},{"x":1568492880000,"y":0.19},{"x":1568492940000,"y":0.31},{"x":1568493000000,"y":0.25},{"x":1568493060000,"y":0.21},{"x":1568493120000,"y":0.17},{"x":1568493180000,"y":0.17},{"x":1568493240000,"y":0.16},{"x":1568493300000,"y":0.44},{"x":1568493360000,"y":0.15},{"x":1568493420000,"y":0.18},{"x":1568493480000,"y":0.15},{"x":1568493540000,"y":0.34},{"x":1568493600000,"y":0.38},{"x":1568493660000,"y":0.17},{"x":1568493720000,"y":0.2},{"x":1568493780000,"y":0.19},{"x":1568493840000,"y":0.19},{"x":1568493900000,"y":0.42},{"x":1568493960000,"y":0.16},{"x":1568494020000,"y":0.48},{"x":1568494080000,"y":0.22},{"x":1568494140000,"y":0.17},{"x":1568494200000,"y":5.14},{"x":1568494260000,"y":0.51},{"x":1568494320000,"y":0.16},{"x":1568494380000,"y":0.17},{"x":1568494440000,"y":0.19},{"x":1568494500000,"y":0.37},{"x":1568494560000,"y":0.17},{"x":1568494620000,"y":0.2},{"x":1568494680000,"y":0.2},{"x":1568494740000,"y":0.16},{"x":1568494800000,"y":0.47},{"x":1568494860000,"y":0.22},{"x":1568494920000,"y":0.17},{"x":1568494980000,"y":0.17},{"x":1568495040000,"y":0.17},{"x":1568495100000,"y":0.25},{"x":1568495160000,"y":0.31},{"x":1568495220000,"y":0.12},{"x":1568495280000,"y":0.14},{"x":1568495340000,"y":0.26},{"x":1568495400000,"y":0.21},{"x":1568495460000,"y":0.21},{"x":1568495520000,"y":0.12},{"x":1568495580000,"y":0.1},{"x":1568495640000,"y":0.1},{"x":1568495700000,"y":0.22},{"x":1568495760000,"y":0.25},{"x":1568495820000,"y":0.12},{"x":1568495880000,"y":0.09},{"x":1568495940000,"y":0.08},{"x":1568496000000,"y":0.15},{"x":1568496060000,"y":0.24},{"x":1568496120000,"y":0.1},{"x":1568496180000,"y":0.07},{"x":1568496240000,"y":0.09},{"x":1568496300000,"y":0.11},{"x":1568496360000,"y":0.25},{"x":1568496420000,"y":0.14},{"x":1568496480000,"y":0.1},{"x":1568496540000,"y":0.09},{"x":1568496600000,"y":0.19},{"x":1568496660000,"y":0.23},{"x":1568496720000,"y":0.13},{"x":1568496780000,"y":0.1},{"x":1568496840000,"y":0.09},{"x":1568496900000,"y":0.2},{"x":1568496960000,"y":0.2},{"x":1568497020000,"y":0.12},{"x":1568497080000,"y":0.14},{"x":1568497140000,"y":0.18},{"x":1568497200000,"y":0.14},{"x":1568497260000,"y":0.07},{"x":1568497320000,"y":0.25},{"x":1568497380000,"y":0.12},{"x":1568497440000,"y":0.09},{"x":1568497500000,"y":0.18},{"x":1568497560000,"y":0.06},{"x":1568497620000,"y":0.23},{"x":1568497680000,"y":0.13},{"x":1568497740000,"y":0.1},{"x":1568497800000,"y":0.26},{"x":1568497860000,"y":0.1},{"x":1568497920000,"y":0.23},{"x":1568497980000,"y":0.1},{"x":1568498040000,"y":0.1},{"x":1568498100000,"y":0.19},{"x":1568498160000,"y":0.1},{"x":1568498220000,"y":0.23},{"x":1568498280000,"y":0.12},{"x":1568498340000,"y":0.09},{"x":1568498400000,"y":0.13},{"x":1568498460000,"y":0.1},{"x":1568498520000,"y":0.2},{"x":1568498580000,"y":0.11},{"x":1568498640000,"y":0.1},{"x":1568498700000,"y":0.17},{"x":1568498760000,"y":0.08},{"x":1568498820000,"y":0.22},{"x":1568498880000,"y":0.1},{"x":1568498940000,"y":0.2},{"x":1568499000000,"y":0.19},{"x":1568499060000,"y":0.08},{"x":1568499120000,"y":0.1},{"x":1568499180000,"y":0.22},{"x":1568499240000,"y":0.12},{"x":1568499300000,"y":0.17},{"x":1568499360000,"y":0.08},{"x":1568499420000,"y":0.1},{"x":1568499480000,"y":0.25},{"x":1568499540000,"y":0.1},{"x":1568499600000,"y":0.16},{"x":1568499660000,"y":0.07},{"x":1568499720000,"y":0.07},{"x":1568499780000,"y":0.23},{"x":1568499840000,"y":0.08},{"x":1568499900000,"y":0.16},{"x":1568499960000,"y":0.06},{"x":1568500020000,"y":0.1},{"x":1568500080000,"y":0.26},{"x":1568500140000,"y":0.1},{"x":1568500200000,"y":0.15},{"x":1568500260000,"y":0.11},{"x":1568500320000,"y":0.1},{"x":1568500380000,"y":0.25},{"x":1568500440000,"y":0.11},{"x":1568500500000,"y":0.17},{"x":1568500560000,"y":0.09},{"x":1568500620000,"y":0.11},{"x":1568500680000,"y":0.23},{"x":1568500740000,"y":0.25},{"x":1568500800000,"y":0.19},{"x":1568500860000,"y":0.08},{"x":1568500920000,"y":0.11},{"x":1568500980000,"y":0.22},{"x":1568501040000,"y":0.07},{"x":1568501100000,"y":0.18},{"x":1568501160000,"y":0.08},{"x":1568501220000,"y":0.08},{"x":1568501280000,"y":0.11},{"x":1568501340000,"y":0.23},{"x":1568501400000,"y":0.11},{"x":1568501460000,"y":0.07},{"x":1568501520000,"y":0.07},{"x":1568501580000,"y":0.08},{"x":1568501640000,"y":0.22},{"x":1568501700000,"y":0.23},{"x":1568501760000,"y":0.08},{"x":1568501820000,"y":0.07},{"x":1568501880000,"y":0.1},{"x":1568501940000,"y":0.2},{"x":1568502000000,"y":0.21},{"x":1568502060000,"y":0.08},{"x":1568502120000,"y":0.08},{"x":1568502180000,"y":0.07},{"x":1568502240000,"y":0.25},{"x":1568502300000,"y":0.15},{"x":1568502360000,"y":0.09},{"x":1568502420000,"y":0.08},{"x":1568502480000,"y":0.09},{"x":1568502540000,"y":0.36},{"x":1568502600000,"y":0.17},{"x":1568502660000,"y":0.08},{"x":1568502720000,"y":0.09},{"x":1568502780000,"y":0.07},{"x":1568502840000,"y":0.22},{"x":1568502900000,"y":0.16},{"x":1568502960000,"y":0.08},{"x":1568503020000,"y":0.07},{"x":1568503080000,"y":0.07},{"x":1568503140000,"y":0.2},{"x":1568503200000,"y":0.15},{"x":1568503260000,"y":0.09},{"x":1568503320000,"y":0.07},{"x":1568503380000,"y":0.09},{"x":1568503440000,"y":0.1},{"x":1568503500000,"y":0.35},{"x":1568503560000,"y":0.09},{"x":1568503620000,"y":0.08},{"x":1568503680000,"y":0.07},{"x":1568503740000,"y":0.09},{"x":1568503800000,"y":1.76},{"x":1568503860000,"y":0.06},{"x":1568503920000,"y":0.08},{"x":1568503980000,"y":0.09},{"x":1568504040000,"y":0.09},{"x":1568504100000,"y":0.27},{"x":1568504160000,"y":0.07},{"x":1568504220000,"y":0.09},{"x":1568504280000,"y":0.1},{"x":1568504340000,"y":0.15},{"x":1568504400000,"y":0.26},{"x":1568504460000,"y":0.07},{"x":1568504520000,"y":0.06},{"x":1568504580000,"y":0.08},{"x":1568504640000,"y":0.06},{"x":1568504700000,"y":0.32},{"x":1568504760000,"y":0.07},{"x":1568504820000,"y":0.08},{"x":1568504880000,"y":0.07},{"x":1568504940000,"y":1.64},{"x":1568505000000,"y":0.27},{"x":1568505060000,"y":0.09},{"x":1568505120000,"y":0.11},{"x":1568505180000,"y":0.08},{"x":1568505240000,"y":0.09},{"x":1568505300000,"y":0.32},{"x":1568505360000,"y":0.07},{"x":1568505420000,"y":0.09},{"x":1568505480000,"y":0.09},{"x":1568505540000,"y":0.07},{"x":1568505600000,"y":0.2},{"x":1568505660000,"y":0.23},{"x":1568505720000,"y":0.07},{"x":1568505780000,"y":0.07},{"x":1568505840000,"y":0.07},{"x":1568505900000,"y":0.19},{"x":1568505960000,"y":0.24},{"x":1568506020000,"y":0.1},{"x":1568506080000,"y":0.12},{"x":1568506140000,"y":0.2},{"x":1568506200000,"y":0.2},{"x":1568506260000,"y":0.22},{"x":1568506320000,"y":0.1},{"x":1568506380000,"y":0.09},{"x":1568506440000,"y":0.1},{"x":1568506500000,"y":0.16},{"x":1568506560000,"y":0.21},{"x":1568506620000,"y":0.07},{"x":1568506680000,"y":0.08},{"x":1568506740000,"y":0.07},{"x":1568506800000,"y":0.13},{"x":1568506860000,"y":0.23},{"x":1568506920000,"y":0.07},{"x":1568506980000,"y":0.06},{"x":1568507040000,"y":0.1},{"x":1568507100000,"y":0.21},{"x":1568507160000,"y":0.22},{"x":1568507220000,"y":0.08},{"x":1568507280000,"y":0.08},{"x":1568507340000,"y":0.07},{"x":1568507400000,"y":0.16},{"x":1568507460000,"y":0.2},{"x":1568507520000,"y":0.08},{"x":1568507580000,"y":0.07},{"x":1568507640000,"y":0.07},{"x":1568507700000,"y":0.24},{"x":1568507760000,"y":0.11},{"x":1568507820000,"y":0.23},{"x":1568507880000,"y":0.08},{"x":1568507940000,"y":0.15},{"x":1568508000000,"y":0.15},{"x":1568508060000,"y":0.08},{"x":1568508120000,"y":0.23},{"x":1568508180000,"y":0.09},{"x":1568508240000,"y":0.08},{"x":1568508300000,"y":0.23},{"x":1568508360000,"y":0.1},{"x":1568508420000,"y":0.26},{"x":1568508480000,"y":0.08},{"x":1568508540000,"y":0.06},{"x":1568508600000,"y":0.11},{"x":1568508660000,"y":0.06},{"x":1568508720000,"y":0.2},{"x":1568508780000,"y":0.09},{"x":1568508840000,"y":0.09},{"x":1568508900000,"y":0.16},{"x":1568508960000,"y":0.1},{"x":1568509020000,"y":0.2},{"x":1568509080000,"y":0.07},{"x":1568509140000,"y":0.08},{"x":1568509200000,"y":0.25},{"x":1568509260000,"y":0.08},{"x":1568509320000,"y":0.23},{"x":1568509380000,"y":0.09},{"x":1568509440000,"y":0.1},{"x":1568509500000,"y":0.17},{"x":1568509560000,"y":0.09},{"x":1568509620000,"y":0.22},{"x":1568509680000,"y":0.07},{"x":1568509740000,"y":0.24},{"x":1568509800000,"y":0.24},{"x":1568509860000,"y":0.1},{"x":1568509920000,"y":0.08},{"x":1568509980000,"y":0.25},{"x":1568510040000,"y":0.06},{"x":1568510100000,"y":0.19},{"x":1568510160000,"y":0.08},{"x":1568510220000,"y":0.08},{"x":1568510280000,"y":0.27},{"x":1568510340000,"y":0.09},{"x":1568510400000,"y":0.14},{"x":1568510460000,"y":0.11},{"x":1568510520000,"y":0.07},{"x":1568510580000,"y":0.21},{"x":1568510640000,"y":0.07},{"x":1568510700000,"y":0.12},{"x":1568510760000,"y":0.07},{"x":1568510820000,"y":0.1},{"x":1568510880000,"y":0.24},{"x":1568510940000,"y":0.07},{"x":1568511000000,"y":0.13},{"x":1568511060000,"y":0.09},{"x":1568511120000,"y":0.1},{"x":1568511180000,"y":0.21},{"x":1568511240000,"y":0.07},{"x":1568511300000,"y":0.14},{"x":1568511360000,"y":0.11},{"x":1568511420000,"y":0.09},{"x":1568511480000,"y":0.22},{"x":1568511540000,"y":0.21},{"x":1568511600000,"y":0.14},{"x":1568511660000,"y":0.09},{"x":1568511720000,"y":0.08},{"x":1568511780000,"y":0.28},{"x":1568511840000,"y":0.07},{"x":1568511900000,"y":0.14},{"x":1568511960000,"y":0.07},{"x":1568512020000,"y":0.07},{"x":1568512080000,"y":0.08},{"x":1568512140000,"y":0.26},{"x":1568512200000,"y":0.17},{"x":1568512260000,"y":0.06},{"x":1568512320000,"y":0.09},{"x":1568512380000,"y":0.07},{"x":1568512440000,"y":0.23},{"x":1568512500000,"y":0.14},{"x":1568512560000,"y":0.12},{"x":1568512620000,"y":0.07},{"x":1568512680000,"y":0.09},{"x":1568512740000,"y":0.19},{"x":1568512800000,"y":0.16},{"x":1568512860000,"y":0.09},{"x":1568512920000,"y":0.07},{"x":1568512980000,"y":0.07},{"x":1568513040000,"y":0.3},{"x":1568513100000,"y":0.15},{"x":1568513160000,"y":0.1},{"x":1568513220000,"y":0.12},{"x":1568513280000,"y":0.11},{"x":1568513340000,"y":0.31},{"x":1568513400000,"y":0.18},{"x":1568513460000,"y":0.14},{"x":1568513520000,"y":0.08},{"x":1568513580000,"y":0.1},{"x":1568513640000,"y":0.2},{"x":1568513700000,"y":0.23},{"x":1568513760000,"y":0.06},{"x":1568513820000,"y":0.09},{"x":1568513880000,"y":0.13},{"x":1568513940000,"y":0.23},{"x":1568514000000,"y":0.14},{"x":1568514060000,"y":0.08},{"x":1568514120000,"y":0.08},{"x":1568514180000,"y":0.08},{"x":1568514240000,"y":0.09},{"x":1568514300000,"y":0.29},{"x":1568514360000,"y":0.08},{"x":1568514420000,"y":0.08},{"x":1568514480000,"y":0.11},{"x":1568514540000,"y":0.1},{"x":1568514600000,"y":0.27},{"x":1568514660000,"y":0.09},{"x":1568514720000,"y":0.53},{"x":1568514780000,"y":0.08},{"x":1568514840000,"y":0.07},{"x":1568514900000,"y":0.29},{"x":1568514960000,"y":0.08},{"x":1568515020000,"y":0.07},{"x":1568515080000,"y":0.1},{"x":1568515140000,"y":0.16},{"x":1568515200000,"y":0.28},{"x":1568515260000,"y":0.08},{"x":1568515320000,"y":0.08},{"x":1568515380000,"y":0.11},{"x":1568515440000,"y":0.12},{"x":1568515500000,"y":0.4},{"x":1568515560000,"y":0.09},{"x":1568515620000,"y":0.08},{"x":1568515680000,"y":0.1},{"x":1568515740000,"y":0.15},{"x":1568515800000,"y":5.01},{"x":1568515860000,"y":0.3},{"x":1568515920000,"y":0.14},{"x":1568515980000,"y":0.09},{"x":1568516040000,"y":0.11},{"x":1568516100000,"y":0.33},{"x":1568516160000,"y":0.14},{"x":1568516220000,"y":0.11},{"x":1568516280000,"y":0.11},{"x":1568516340000,"y":0.09},{"x":1568516400000,"y":0.34},{"x":1568516460000,"y":0.26},{"x":1568516520000,"y":0.08},{"x":1568516580000,"y":0.1},{"x":1568516640000,"y":0.13},{"x":1568516700000,"y":0.14},{"x":1568516760000,"y":0.21},{"x":1568516820000,"y":0.11},{"x":1568516880000,"y":0.07},{"x":1568516940000,"y":0.17},{"x":1568517000000,"y":0.18},{"x":1568517060000,"y":0.25},{"x":1568517120000,"y":0.11},{"x":1568517180000,"y":0.1},{"x":1568517240000,"y":0.13},{"x":1568517300000,"y":0.15},{"x":1568517360000,"y":0.24},{"x":1568517420000,"y":0.14},{"x":1568517480000,"y":0.09},{"x":1568517540000,"y":0.11},{"x":1568517600000,"y":0.18},{"x":1568517660000,"y":0.31},{"x":1568517720000,"y":0.14},{"x":1568517780000,"y":0.18},{"x":1568517840000,"y":0.14},{"x":1568517900000,"y":0.2},{"x":1568517960000,"y":0.25},{"x":1568518020000,"y":0.14},{"x":1568518080000,"y":0.11},{"x":1568518140000,"y":0.12},{"x":1568518200000,"y":0.25},{"x":1568518260000,"y":0.21},{"x":1568518320000,"y":0.15},{"x":1568518380000,"y":0.12},{"x":1568518440000,"y":0.17},{"x":1568518500000,"y":0.23},{"x":1568518560000,"y":0.11},{"x":1568518620000,"y":0.3},{"x":1568518680000,"y":0.14},{"x":1568518740000,"y":0.35},{"x":1568518800000,"y":0.23},{"x":1568518860000,"y":0.19},{"x":1568518920000,"y":0.36},{"x":1568518980000,"y":0.23},{"x":1568519040000,"y":0.19},{"x":1568519100000,"y":0.25},{"x":1568519160000,"y":0.16},{"x":1568519220000,"y":0.29},{"x":1568519280000,"y":0.12},{"x":1568519340000,"y":0.17},{"x":1568519400000,"y":0.24},{"x":1568519460000,"y":0.22},{"x":1568519520000,"y":0.32},{"x":1568519580000,"y":0.16},{"x":1568519640000,"y":0.17},{"x":1568519700000,"y":0.19},{"x":1568519760000,"y":0.16},{"x":1568519820000,"y":0.3},{"x":1568519880000,"y":0.15},{"x":1568519940000,"y":0.16},{"x":1568520000000,"y":0.25},{"x":1568520060000,"y":0.17},{"x":1568520120000,"y":0.31},{"x":1568520180000,"y":0.17},{"x":1568520240000,"y":0.19},{"x":1568520300000,"y":0.27},{"x":1568520360000,"y":0.17},{"x":1568520420000,"y":0.17},{"x":1568520480000,"y":0.3},{"x":1568520540000,"y":0.28},{"x":1568520600000,"y":0.24},{"x":1568520660000,"y":0.18},{"x":1568520720000,"y":0.16},{"x":1568520780000,"y":0.3},{"x":1568520840000,"y":0.16},{"x":1568520900000,"y":0.26},{"x":1568520960000,"y":0.15},{"x":1568521020000,"y":0.21},{"x":1568521080000,"y":0.32},{"x":1568521140000,"y":0.17},{"x":1568521200000,"y":0.27},{"x":1568521260000,"y":0.17},{"x":1568521320000,"y":0.16},{"x":1568521380000,"y":0.3},{"x":1568521440000,"y":0.19},{"x":1568521500000,"y":0.21},{"x":1568521560000,"y":0.18},{"x":1568521620000,"y":0.17},{"x":1568521680000,"y":0.29},{"x":1568521740000,"y":0.14},{"x":1568521800000,"y":0.23},{"x":1568521860000,"y":0.18},{"x":1568521920000,"y":0.2},{"x":1568521980000,"y":0.31},{"x":1568522040000,"y":0.18},{"x":1568522100000,"y":0.23},{"x":1568522160000,"y":0.15},{"x":1568522220000,"y":0.17},{"x":1568522280000,"y":0.28},{"x":1568522340000,"y":0.3},{"x":1568522400000,"y":0.27},{"x":1568522460000,"y":0.19},{"x":1568522520000,"y":0.18},{"x":1568522580000,"y":0.18},{"x":1568522640000,"y":0.32},{"x":1568522700000,"y":0.24},{"x":1568522760000,"y":0.17},{"x":1568522820000,"y":0.16},{"x":1568522880000,"y":0.17},{"x":1568522940000,"y":0.3},{"x":1568523000000,"y":0.27},{"x":1568523060000,"y":0.19},{"x":1568523120000,"y":0.15},{"x":1568523180000,"y":0.17},{"x":1568523240000,"y":0.32},{"x":1568523300000,"y":0.3},{"x":1568523360000,"y":0.19},{"x":1568523420000,"y":0.17},{"x":1568523480000,"y":0.15},{"x":1568523540000,"y":0.33},{"x":1568523600000,"y":0.66},{"x":1568523660000,"y":0.18},{"x":1568523720000,"y":0.17},{"x":1568523780000,"y":0.19},{"x":1568523840000,"y":0.31},{"x":1568523900000,"y":0.26},{"x":1568523960000,"y":0.19},{"x":1568524020000,"y":0.2},{"x":1568524080000,"y":0.15},{"x":1568524140000,"y":0.41},{"x":1568524200000,"y":0.22},{"x":1568524260000,"y":0.16},{"x":1568524320000,"y":0.19},{"x":1568524380000,"y":0.17},{"x":1568524440000,"y":0.33},{"x":1568524500000,"y":0.26},{"x":1568524560000,"y":0.16},{"x":1568524620000,"y":0.18},{"x":1568524680000,"y":0.19},{"x":1568524740000,"y":0.17},{"x":1568524800000,"y":0.38},{"x":1568524860000,"y":0.2},{"x":1568524920000,"y":0.17},{"x":1568524980000,"y":0.19},{"x":1568525040000,"y":0.16},{"x":1568525100000,"y":0.43},{"x":1568525160000,"y":0.15},{"x":1568525220000,"y":0.17},{"x":1568525280000,"y":0.14},{"x":1568525340000,"y":0.17},{"x":1568525400000,"y":0.37},{"x":1568525460000,"y":0.15},{"x":1568525520000,"y":0.15},{"x":1568525580000,"y":0.17},{"x":1568525640000,"y":0.17},{"x":1568525700000,"y":0.45},{"x":1568525760000,"y":0.18},{"x":1568525820000,"y":0.17},{"x":1568525880000,"y":0.15},{"x":1568525940000,"y":0.26},{"x":1568526000000,"y":0.37},{"x":1568526060000,"y":0.17},{"x":1568526120000,"y":0.19},{"x":1568526180000,"y":0.16},{"x":1568526240000,"y":0.16},{"x":1568526300000,"y":0.39},{"x":1568526360000,"y":0.18},{"x":1568526420000,"y":0.18},{"x":1568526480000,"y":0.19},{"x":1568526540000,"y":0.16},{"x":1568526600000,"y":0.42},{"x":1568526660000,"y":0.14},{"x":1568526720000,"y":0.21},{"x":1568526780000,"y":0.15},{"x":1568526840000,"y":0.72},{"x":1568526900000,"y":0.25},{"x":1568526960000,"y":0.32},{"x":1568527020000,"y":0.18},{"x":1568527080000,"y":0.16},{"x":1568527140000,"y":0.16},{"x":1568527200000,"y":0.27},{"x":1568527260000,"y":0.31},{"x":1568527320000,"y":0.16},{"x":1568527380000,"y":0.17},{"x":1568527440000,"y":0.2},{"x":1568527500000,"y":0.27},{"x":1568527560000,"y":0.35},{"x":1568527620000,"y":0.16},{"x":1568527680000,"y":0.18},{"x":1568527740000,"y":0.32},{"x":1568527800000,"y":0.26},{"x":1568527860000,"y":0.31},{"x":1568527920000,"y":0.15},{"x":1568527980000,"y":0.18},{"x":1568528040000,"y":0.2},{"x":1568528100000,"y":0.32},{"x":1568528160000,"y":0.3},{"x":1568528220000,"y":0.17},{"x":1568528280000,"y":0.18},{"x":1568528340000,"y":0.18},{"x":1568528400000,"y":0.22},{"x":1568528460000,"y":0.34},{"x":1568528520000,"y":0.15},{"x":1568528580000,"y":0.13},{"x":1568528640000,"y":0.11},{"x":1568528700000,"y":0.24},{"x":1568528760000,"y":0.24},{"x":1568528820000,"y":0.08},{"x":1568528880000,"y":0.1},{"x":1568528940000,"y":0.1},{"x":1568529000000,"y":0.24},{"x":1568529060000,"y":0.1},{"x":1568529120000,"y":0.25},{"x":1568529180000,"y":0.07},{"x":1568529240000,"y":0.11},{"x":1568529300000,"y":1.78},{"x":1568529360000,"y":0.09},{"x":1568529420000,"y":0.23},{"x":1568529480000,"y":0.1},{"x":1568529540000,"y":0.19},{"x":1568529600000,"y":0.16},{"x":1568529660000,"y":0.1},{"x":1568529720000,"y":0.24},{"x":1568529780000,"y":0.12},{"x":1568529840000,"y":0.08},{"x":1568529900000,"y":0.19},{"x":1568529960000,"y":0.09},{"x":1568530020000,"y":0.24},{"x":1568530080000,"y":0.09},{"x":1568530140000,"y":0.12},{"x":1568530200000,"y":0.16},{"x":1568530260000,"y":0.07},{"x":1568530320000,"y":0.18},{"x":1568530380000,"y":0.11},{"x":1568530440000,"y":0.91},{"x":1568530500000,"y":0.16},{"x":1568530560000,"y":0.09},{"x":1568530620000,"y":0.25},{"x":1568530680000,"y":0.07},{"x":1568530740000,"y":0.06},{"x":1568530800000,"y":0.32},{"x":1568530860000,"y":0.1},{"x":1568530920000,"y":0.25},{"x":1568530980000,"y":0.09},{"x":1568531040000,"y":0.09},{"x":1568531100000,"y":0.13},{"x":1568531160000,"y":0.1},{"x":1568531220000,"y":0.21},{"x":1568531280000,"y":0.06},{"x":1568531340000,"y":0.23},{"x":1568531400000,"y":0.16},{"x":1568531460000,"y":0.08},{"x":1568531520000,"y":0.09},{"x":1568531580000,"y":0.25},{"x":1568531640000,"y":0.11},{"x":1568531700000,"y":0.18},{"x":1568531760000,"y":0.1},{"x":1568531820000,"y":0.07},{"x":1568531880000,"y":0.23},{"x":1568531940000,"y":0.06},{"x":1568532000000,"y":0.14},{"x":1568532060000,"y":0.1},{"x":1568532120000,"y":0.08},{"x":1568532180000,"y":0.24},{"x":1568532240000,"y":0.1},{"x":1568532300000,"y":0.23},{"x":1568532360000,"y":0.11},{"x":1568532420000,"y":0.12},{"x":1568532480000,"y":0.24},{"x":1568532540000,"y":0.1},{"x":1568532600000,"y":0.26},{"x":1568532660000,"y":0.07},{"x":1568532720000,"y":0.1},{"x":1568532780000,"y":0.23},{"x":1568532840000,"y":0.07},{"x":1568532900000,"y":0.12},{"x":1568532960000,"y":0.08},{"x":1568533020000,"y":0.11},{"x":1568533080000,"y":0.27},{"x":1568533140000,"y":0.16},{"x":1568533200000,"y":0.17},{"x":1568533260000,"y":0.11},{"x":1568533320000,"y":0.1},{"x":1568533380000,"y":0.25},{"x":1568533440000,"y":0.07},{"x":1568533500000,"y":0.18},{"x":1568533560000,"y":0.1},{"x":1568533620000,"y":0.09},{"x":1568533680000,"y":0.18},{"x":1568533740000,"y":0.12},{"x":1568533800000,"y":0.12},{"x":1568533860000,"y":0.11},{"x":1568533920000,"y":0.09},{"x":1568533980000,"y":0.17},{"x":1568534040000,"y":0.1},{"x":1568534100000,"y":0.91},{"x":1568534160000,"y":0.11},{"x":1568534220000,"y":0.09},{"x":1568534280000,"y":0.09},{"x":1568534340000,"y":0.25},{"x":1568534400000,"y":0.26},{"x":1568534460000,"y":0.1},{"x":1568534520000,"y":0.09},{"x":1568534580000,"y":0.07},{"x":1568534640000,"y":0.21},{"x":1568534700000,"y":0.17},{"x":1568534760000,"y":0.06},{"x":1568534820000,"y":0.08},{"x":1568534880000,"y":0.07},{"x":1568534940000,"y":0.29},{"x":1568535000000,"y":0.16},{"x":1568535060000,"y":0.09},{"x":1568535120000,"y":0.09},{"x":1568535180000,"y":0.08},{"x":1568535240000,"y":0.22},{"x":1568535300000,"y":0.12},{"x":1568535360000,"y":0.09},{"x":1568535420000,"y":0.11},{"x":1568535480000,"y":0.07},{"x":1568535540000,"y":0.24},{"x":1568535600000,"y":0.11},{"x":1568535660000,"y":0.09},{"x":1568535720000,"y":0.08},{"x":1568535780000,"y":0.07},{"x":1568535840000,"y":0.22},{"x":1568535900000,"y":0.14},{"x":1568535960000,"y":0.05},{"x":1568536020000,"y":0.08},{"x":1568536080000,"y":0.08},{"x":1568536140000,"y":5.47},{"x":1568536200000,"y":0.33},{"x":1568536260000,"y":0.07},{"x":1568536320000,"y":0.1},{"x":1568536380000,"y":0.09},{"x":1568536440000,"y":0.1},{"x":1568536500000,"y":1.76},{"x":1568536560000,"y":0.07},{"x":1568536620000,"y":0.07},{"x":1568536680000,"y":0.06},{"x":1568536740000,"y":0.21},{"x":1568536800000,"y":0.32},{"x":1568536860000,"y":0.08},{"x":1568536920000,"y":0.05},{"x":1568536980000,"y":0.11},{"x":1568537040000,"y":0.07},{"x":1568537100000,"y":0.33},{"x":1568537160000,"y":0.08},{"x":1568537220000,"y":0.07},{"x":1568537280000,"y":0.07},{"x":1568537340000,"y":0.07},{"x":1568537400000,"y":0.29},{"x":1568537460000,"y":0.07},{"x":1568537520000,"y":0.07},{"x":1568537580000,"y":0.07},{"x":1568537640000,"y":0.07},{"x":1568537700000,"y":3.56},{"x":1568537760000,"y":0.05},{"x":1568537820000,"y":0.12},{"x":1568537880000,"y":0.1},{"x":1568537940000,"y":0.08},{"x":1568538000000,"y":0.36},{"x":1568538060000,"y":0.1},{"x":1568538120000,"y":0.06},{"x":1568538180000,"y":0.07},{"x":1568538240000,"y":0.07},{"x":1568538300000,"y":0.32},{"x":1568538360000,"y":0.09},{"x":1568538420000,"y":0.1},{"x":1568538480000,"y":0.07},{"x":1568538540000,"y":0.23},{"x":1568538600000,"y":0.29},{"x":1568538660000,"y":0.07},{"x":1568538720000,"y":0.09},{"x":1568538780000,"y":0.09},{"x":1568538840000,"y":0.07},{"x":1568538900000,"y":0.17},{"x":1568538960000,"y":0.24},{"x":1568539020000,"y":0.09},{"x":1568539080000,"y":0.09},{"x":1568539140000,"y":0.08},{"x":1568539200000,"y":0.17},{"x":1568539260000,"y":0.28},{"x":1568539320000,"y":0.07},{"x":1568539380000,"y":0.06},{"x":1568539440000,"y":0.08},{"x":1568539500000,"y":0.18},{"x":1568539560000,"y":0.24},{"x":1568539620000,"y":0.07},{"x":1568539680000,"y":0.06},{"x":1568539740000,"y":0.08},{"x":1568539800000,"y":0.12},{"x":1568539860000,"y":0.2},{"x":1568539920000,"y":0.1},{"x":1568539980000,"y":0.07},{"x":1568540040000,"y":0.07},{"x":1568540100000,"y":0.91},{"x":1568540160000,"y":0.24},{"x":1568540220000,"y":0.06},{"x":1568540280000,"y":0.08},{"x":1568540340000,"y":0.2},{"x":1568540400000,"y":0.16},{"x":1568540460000,"y":0.25},{"x":1568540520000,"y":0.1},{"x":1568540580000,"y":0.08},{"x":1568540640000,"y":0.06},{"x":1568540700000,"y":0.17},{"x":1568540760000,"y":0.22},{"x":1568540820000,"y":0.13},{"x":1568540880000,"y":0.07},{"x":1568540940000,"y":0.09},{"x":1568541000000,"y":0.16},{"x":1568541060000,"y":0.19},{"x":1568541120000,"y":0.09},{"x":1568541180000,"y":0.1},{"x":1568541240000,"y":0.11},{"x":1568541300000,"y":0.14},{"x":1568541360000,"y":0.1},{"x":1568541420000,"y":0.21},{"x":1568541480000,"y":0.07},{"x":1568541540000,"y":0.07},{"x":1568541600000,"y":0.2},{"x":1568541660000,"y":0.12},{"x":1568541720000,"y":0.24},{"x":1568541780000,"y":0.06},{"x":1568541840000,"y":0.1},{"x":1568541900000,"y":0.24},{"x":1568541960000,"y":0.1},{"x":1568542020000,"y":0.22},{"x":1568542080000,"y":0.1},{"x":1568542140000,"y":0.22},{"x":1568542200000,"y":0.2},{"x":1568542260000,"y":0.08},{"x":1568542320000,"y":0.2},{"x":1568542380000,"y":0.07},{"x":1568542440000,"y":0.07},{"x":1568542500000,"y":0.13},{"x":1568542560000,"y":0.09},{"x":1568542620000,"y":0.23},{"x":1568542680000,"y":0.07},{"x":1568542740000,"y":0.08},{"x":1568542800000,"y":0.18},{"x":1568542860000,"y":0.1},{"x":1568542920000,"y":0.2},{"x":1568542980000,"y":0.1},{"x":1568543040000,"y":0.09},{"x":1568543100000,"y":0.16},{"x":1568543160000,"y":0.09},{"x":1568543220000,"y":0.25},{"x":1568543280000,"y":0.09},{"x":1568543340000,"y":0.09},{"x":1568543400000,"y":0.13},{"x":1568543460000,"y":0.12},{"x":1568543520000,"y":0.1},{"x":1568543580000,"y":0.22},{"x":1568543640000,"y":0.09},{"x":1568543700000,"y":2.44},{"x":1568543760000,"y":0.09},{"x":1568543820000,"y":0.08},{"x":1568543880000,"y":0.24},{"x":1568543940000,"y":0.27},{"x":1568544000000,"y":0.16},{"x":1568544060000,"y":0.08},{"x":1568544120000,"y":0.08},{"x":1568544180000,"y":0.24},{"x":1568544240000,"y":0.08},{"x":1568544300000,"y":0.19},{"x":1568544360000,"y":0.09},{"x":1568544420000,"y":0.07},{"x":1568544480000,"y":0.27},{"x":1568544540000,"y":0.09},{"x":1568544600000,"y":0.2},{"x":1568544660000,"y":0.1},{"x":1568544720000,"y":0.08},{"x":1568544780000,"y":0.22},{"x":1568544840000,"y":0.07},{"x":1568544900000,"y":0.2},{"x":1568544960000,"y":0.74},{"x":1568545020000,"y":0.05},{"x":1568545080000,"y":0.24},{"x":1568545140000,"y":0.07},{"x":1568545200000,"y":9.65},{"x":1568545260000,"y":0.1},{"x":1568545320000,"y":0.07},{"x":1568545380000,"y":0.2},{"x":1568545440000,"y":0.08},{"x":1568545500000,"y":0.14},{"x":1568545560000,"y":0.07},{"x":1568545620000,"y":0.07},{"x":1568545680000,"y":0.2},{"x":1568545740000,"y":0.22},{"x":1568545800000,"y":0.13},{"x":1568545860000,"y":0.09},{"x":1568545920000,"y":0.09},{"x":1568545980000,"y":0.09},{"x":1568546040000,"y":0.22},{"x":1568546100000,"y":0.18},{"x":1568546160000,"y":0.08},{"x":1568546220000,"y":0.12},{"x":1568546280000,"y":0.1},{"x":1568546340000,"y":0.25},{"x":1568546400000,"y":0.19},{"x":1568546460000,"y":0.07},{"x":1568546520000,"y":0.12},{"x":1568546580000,"y":0.12},{"x":1568546640000,"y":0.23},{"x":1568546700000,"y":1.42},{"x":1568546760000,"y":0.12},{"x":1568546820000,"y":0.09},{"x":1568546880000,"y":0.08},{"x":1568546940000,"y":0.29},{"x":1568547000000,"y":0.15},{"x":1568547060000,"y":0.07},{"x":1568547120000,"y":0.1},{"x":1568547180000,"y":0.13},{"x":1568547240000,"y":0.23},{"x":1568547300000,"y":0.23},{"x":1568547360000,"y":0.09},{"x":1568547420000,"y":0.06},{"x":1568547480000,"y":0.08},{"x":1568547540000,"y":0.4},{"x":1568547600000,"y":0.23},{"x":1568547660000,"y":0.1},{"x":1568547720000,"y":0.11},{"x":1568547780000,"y":0.09},{"x":1568547840000,"y":0.26},{"x":1568547900000,"y":0.24},{"x":1568547960000,"y":0.1},{"x":1568548020000,"y":0.1},{"x":1568548080000,"y":0.08},{"x":1568548140000,"y":0.22},{"x":1568548200000,"y":0.13},{"x":1568548260000,"y":0.1},{"x":1568548320000,"y":0.09},{"x":1568548380000,"y":0.09},{"x":1568548440000,"y":0.07},{"x":1568548500000,"y":0.43},{"x":1568548560000,"y":0.19},{"x":1568548620000,"y":0.05},{"x":1568548680000,"y":0.1},{"x":1568548740000,"y":0.08},{"x":1568548800000,"y":0.29},{"x":1568548860000,"y":0.11},{"x":1568548920000,"y":0.09},{"x":1568548980000,"y":0.06},{"x":1568549040000,"y":0.09},{"x":1568549100000,"y":0.27},{"x":1568549160000,"y":0.08},{"x":1568549220000,"y":0.08},{"x":1568549280000,"y":0.09},{"x":1568549340000,"y":0.16},{"x":1568549400000,"y":0.28},{"x":1568549460000,"y":0.07},{"x":1568549520000,"y":0.08},{"x":1568549580000,"y":0.06},{"x":1568549640000,"y":0.11},{"x":1568549700000,"y":0.3},{"x":1568549760000,"y":0.09},{"x":1568549820000,"y":0.11},{"x":1568549880000,"y":0.09},{"x":1568549940000,"y":0.1},{"x":1568550000000,"y":0.34},{"x":1568550060000,"y":0.07},{"x":1568550120000,"y":0.08},{"x":1568550180000,"y":0.11},{"x":1568550240000,"y":0.07},{"x":1568550300000,"y":0.32},{"x":1568550360000,"y":0.12},{"x":1568550420000,"y":0.09},{"x":1568550480000,"y":0.1},{"x":1568550540000,"y":0.12},{"x":1568550600000,"y":0.35},{"x":1568550660000,"y":0.13},{"x":1568550720000,"y":0.09},{"x":1568550780000,"y":0.11},{"x":1568550840000,"y":0.11},{"x":1568550900000,"y":0.29},{"x":1568550960000,"y":0.12},{"x":1568551020000,"y":2.19},{"x":1568551080000,"y":0.12},{"x":1568551140000,"y":0.17},{"x":1568551200000,"y":0.19},{"x":1568551260000,"y":0.31},{"x":1568551320000,"y":0.12},{"x":1568551380000,"y":0.13},{"x":1568551440000,"y":0.12},{"x":1568551500000,"y":0.21},{"x":1568551560000,"y":0.25},{"x":1568551620000,"y":0.18},{"x":1568551680000,"y":0.15},{"x":1568551740000,"y":0.13},{"x":1568551800000,"y":0.22},{"x":1568551860000,"y":0.28},{"x":1568551920000,"y":0.16},{"x":1568551980000,"y":0.1},{"x":1568552040000,"y":0.12},{"x":1568552100000,"y":0.23},{"x":1568552160000,"y":0.25},{"x":1568552220000,"y":0.14},{"x":1568552280000,"y":0.14},{"x":1568552340000,"y":0.15},{"x":1568552400000,"y":0.25},{"x":1568552460000,"y":0.37},{"x":1568552520000,"y":0.18},{"x":1568552580000,"y":0.16},{"x":1568552640000,"y":0.13},{"x":1568552700000,"y":0.22},{"x":1568552760000,"y":0.29},{"x":1568552820000,"y":0.15},{"x":1568552880000,"y":0.17},{"x":1568552940000,"y":0.31},{"x":1568553000000,"y":0.23},{"x":1568553060000,"y":0.28},{"x":1568553120000,"y":0.16},{"x":1568553180000,"y":0.15},{"x":1568553240000,"y":0.14},{"x":1568553300000,"y":0.23},{"x":1568553360000,"y":0.16},{"x":1568553420000,"y":0.31},{"x":1568553480000,"y":0.17},{"x":1568553540000,"y":0.16},{"x":1568553600000,"y":0.2},{"x":1568553660000,"y":0.15},{"x":1568553720000,"y":0.31},{"x":1568553780000,"y":0.16},{"x":1568553840000,"y":0.15},{"x":1568553900000,"y":0.19},{"x":1568553960000,"y":0.17},{"x":1568554020000,"y":0.27},{"x":1568554080000,"y":0.17},{"x":1568554140000,"y":0.16},{"x":1568554200000,"y":0.28},{"x":1568554260000,"y":0.17},{"x":1568554320000,"y":0.29},{"x":1568554380000,"y":0.18},{"x":1568554440000,"y":0.17},{"x":1568554500000,"y":0.25},{"x":1568554560000,"y":0.14},{"x":1568554620000,"y":0.62},{"x":1568554680000,"y":0.17},{"x":1568554740000,"y":0.24},{"x":1568554800000,"y":0.24},{"x":1568554860000,"y":0.17},{"x":1568554920000,"y":0.3},{"x":1568554980000,"y":0.2},{"x":1568555040000,"y":0.17},{"x":1568555100000,"y":0.3},{"x":1568555160000,"y":0.19},{"x":1568555220000,"y":0.31},{"x":1568555280000,"y":0.15},{"x":1568555340000,"y":0.16},{"x":1568555400000,"y":0.24},{"x":1568555460000,"y":0.19},{"x":1568555520000,"y":0.25},{"x":1568555580000,"y":0.2},{"x":1568555640000,"y":0.17},{"x":1568555700000,"y":0.26},{"x":1568555760000,"y":0.15},{"x":1568555820000,"y":0.17},{"x":1568555880000,"y":0.27},{"x":1568555940000,"y":0.17},{"x":1568556000000,"y":0.29},{"x":1568556060000,"y":0.15},{"x":1568556120000,"y":0.18},{"x":1568556180000,"y":0.3},{"x":1568556240000,"y":0.16},{"x":1568556300000,"y":0.18},{"x":1568556360000,"y":0.19},{"x":1568556420000,"y":0.19},{"x":1568556480000,"y":0.32},{"x":1568556540000,"y":0.4},{"x":1568556600000,"y":0.26},{"x":1568556660000,"y":0.16},{"x":1568556720000,"y":0.15},{"x":1568556780000,"y":0.3},{"x":1568556840000,"y":0.15},{"x":1568556900000,"y":0.23},{"x":1568556960000,"y":0.17},{"x":1568557020000,"y":0.18},{"x":1568557080000,"y":0.3},{"x":1568557140000,"y":0.16},{"x":1568557200000,"y":0.28},{"x":1568557260000,"y":0.15},{"x":1568557320000,"y":0.15},{"x":1568557380000,"y":0.3},{"x":1568557440000,"y":0.15},{"x":1568557500000,"y":0.21},{"x":1568557560000,"y":0.17},{"x":1568557620000,"y":0.15},{"x":1568557680000,"y":0.28},{"x":1568557740000,"y":0.18},{"x":1568557800000,"y":0.25},{"x":1568557860000,"y":0.17},{"x":1568557920000,"y":0.15},{"x":1568557980000,"y":0.31},{"x":1568558040000,"y":0.17},{"x":1568558100000,"y":0.28},{"x":1568558160000,"y":0.16},{"x":1568558220000,"y":0.2},{"x":1568558280000,"y":0.16},{"x":1568558340000,"y":0.41},{"x":1568558400000,"y":0.28},{"x":1568558460000,"y":0.17},{"x":1568558520000,"y":0.18},{"x":1568558580000,"y":0.18},{"x":1568558640000,"y":0.27},{"x":1568558700000,"y":0.22},{"x":1568558760000,"y":0.19},{"x":1568558820000,"y":0.19},{"x":1568558880000,"y":0.16},{"x":1568558940000,"y":0.32},{"x":1568559000000,"y":0.23},{"x":1568559060000,"y":0.2},{"x":1568559120000,"y":0.25},{"x":1568559180000,"y":0.2},{"x":1568559240000,"y":0.28},{"x":1568559300000,"y":0.24},{"x":1568559360000,"y":0.14},{"x":1568559420000,"y":0.17},{"x":1568559480000,"y":0.27},{"x":1568559540000,"y":5.05},{"x":1568559600000,"y":0.48},{"x":1568559660000,"y":0.2},{"x":1568559720000,"y":0.17},{"x":1568559780000,"y":0.18},{"x":1568559840000,"y":0.33},{"x":1568559900000,"y":0.29},{"x":1568559960000,"y":0.16},{"x":1568560020000,"y":0.14},{"x":1568560080000,"y":0.2},{"x":1568560140000,"y":0.39},{"x":1568560200000,"y":0.32},{"x":1568560260000,"y":0.15},{"x":1568560320000,"y":0.16},{"x":1568560380000,"y":0.16},{"x":1568560440000,"y":0.32},{"x":1568560500000,"y":0.24},{"x":1568560560000,"y":0.2},{"x":1568560620000,"y":0.17},{"x":1568560680000,"y":0.15},{"x":1568560740000,"y":0.17},{"x":1568560800000,"y":0.32},{"x":1568560860000,"y":0.16},{"x":1568560920000,"y":0.17},{"x":1568560980000,"y":0.17},{"x":1568561040000,"y":0.14},{"x":1568561100000,"y":0.35},{"x":1568561160000,"y":0.15},{"x":1568561220000,"y":0.17},{"x":1568561280000,"y":0.15},{"x":1568561340000,"y":0.18},{"x":1568561400000,"y":0.35},{"x":1568561460000,"y":0.19},{"x":1568561520000,"y":0.14},{"x":1568561580000,"y":0.16},{"x":1568561640000,"y":0.17},{"x":1568561700000,"y":0.44},{"x":1568561760000,"y":0.17},{"x":1568561820000,"y":0.16},{"x":1568561880000,"y":0.17},{"x":1568561940000,"y":0.25},{"x":1568562000000,"y":0.37},{"x":1568562060000,"y":0.11},{"x":1568562120000,"y":0.11},{"x":1568562180000,"y":0.15},{"x":1568562240000,"y":0.1},{"x":1568562300000,"y":0.37},{"x":1568562360000,"y":0.08},{"x":1568562420000,"y":0.09},{"x":1568562480000,"y":0.12},{"x":1568562540000,"y":0.07},{"x":1568562600000,"y":0.32},{"x":1568562660000,"y":0.1},{"x":1568562720000,"y":0.06},{"x":1568562780000,"y":0.07},{"x":1568562840000,"y":0.09},{"x":1568562900000,"y":0.18},{"x":1568562960000,"y":0.22},{"x":1568563020000,"y":0.07},{"x":1568563080000,"y":0.1},{"x":1568563140000,"y":0.06},{"x":1568563200000,"y":0.16},{"x":1568563260000,"y":0.28},{"x":1568563320000,"y":0.08},{"x":1568563380000,"y":0.07},{"x":1568563440000,"y":0.07},{"x":1568563500000,"y":0.12},{"x":1568563560000,"y":0.19},{"x":1568563620000,"y":0.11},{"x":1568563680000,"y":0.05},{"x":1568563740000,"y":0.12},{"x":1568563800000,"y":0.13},{"x":1568563860000,"y":0.27},{"x":1568563920000,"y":0.06},{"x":1568563980000,"y":0.06},{"x":1568564040000,"y":0.04},{"x":1568564100000,"y":0.19},{"x":1568564160000,"y":0.19},{"x":1568564220000,"y":0.13},{"x":1568564280000,"y":0.08},{"x":1568564340000,"y":0.1},{"x":1568564400000,"y":0.14},{"x":1568564460000,"y":0.22},{"x":1568564520000,"y":0.07},{"x":1568564580000,"y":0.08},{"x":1568564640000,"y":0.09},{"x":1568564700000,"y":0.16},{"x":1568564760000,"y":0.21},{"x":1568564820000,"y":0.06},{"x":1568564880000,"y":0.08},{"x":1568564940000,"y":0.1},{"x":1568565000000,"y":0.22},{"x":1568565060000,"y":0.24},{"x":1568565120000,"y":0.1},{"x":1568565180000,"y":0.07},{"x":1568565240000,"y":0.07},{"x":1568565300000,"y":0.17},{"x":1568565360000,"y":0.07},{"x":1568565420000,"y":0.25},{"x":1568565480000,"y":0.1},{"x":1568565540000,"y":0.12},{"x":1568565600000,"y":0.19},{"x":1568565660000,"y":0.1},{"x":1568565720000,"y":0.18},{"x":1568565780000,"y":0.07},{"x":1568565840000,"y":0.07},{"x":1568565900000,"y":0.15},{"x":1568565960000,"y":0.06},{"x":1568566020000,"y":0.21},{"x":1568566080000,"y":0.09},{"x":1568566140000,"y":0.07},{"x":1568566200000,"y":0.12},{"x":1568566260000,"y":0.05},{"x":1568566320000,"y":0.19},{"x":1568566380000,"y":0.08},{"x":1568566440000,"y":0.08},{"x":1568566500000,"y":0.15},{"x":1568566560000,"y":0.06},{"x":1568566620000,"y":0.2},{"x":1568566680000,"y":0.09},{"x":1568566740000,"y":0.09},{"x":1568566800000,"y":1.03},{"x":1568566860000,"y":0.14},{"x":1568566920000,"y":0.24},{"x":1568566980000,"y":0.07},{"x":1568567040000,"y":0.08},{"x":1568567100000,"y":0.17},{"x":1568567160000,"y":0.08},{"x":1568567220000,"y":0.24},{"x":1568567280000,"y":0.1},{"x":1568567340000,"y":0.19},{"x":1568567400000,"y":0.22},{"x":1568567460000,"y":0.11},{"x":1568567520000,"y":0.07},{"x":1568567580000,"y":0.2},{"x":1568567640000,"y":0.05},{"x":1568567700000,"y":0.17},{"x":1568567760000,"y":0.06},{"x":1568567820000,"y":0.07},{"x":1568567880000,"y":0.2},{"x":1568567940000,"y":0.11},{"x":1568568000000,"y":0.22},{"x":1568568060000,"y":0.06},{"x":1568568120000,"y":0.06},{"x":1568568180000,"y":0.22},{"x":1568568240000,"y":0.06},{"x":1568568300000,"y":0.11},{"x":1568568360000,"y":0.05},{"x":1568568420000,"y":0.05},{"x":1568568480000,"y":0.25},{"x":1568568540000,"y":0.05},{"x":1568568600000,"y":0.16},{"x":1568568660000,"y":0.06},{"x":1568568720000,"y":0.08},{"x":1568568780000,"y":0.2},{"x":1568568840000,"y":0.08},{"x":1568568900000,"y":0.1},{"x":1568568960000,"y":0.08},{"x":1568569020000,"y":0.05},{"x":1568569080000,"y":0.24},{"x":1568569140000,"y":0.24},{"x":1568569200000,"y":0.15},{"x":1568569260000,"y":0.1},{"x":1568569320000,"y":0.08},{"x":1568569380000,"y":0.2},{"x":1568569440000,"y":0.08},{"x":1568569500000,"y":0.22},{"x":1568569560000,"y":0.07},{"x":1568569620000,"y":0.08},{"x":1568569680000,"y":0.06},{"x":1568569740000,"y":0.2},{"x":1568569800000,"y":0.14},{"x":1568569860000,"y":0.11},{"x":1568569920000,"y":0.06},{"x":1568569980000,"y":0.09},{"x":1568570040000,"y":0.19},{"x":1568570100000,"y":0.17},{"x":1568570160000,"y":0.05},{"x":1568570220000,"y":0.1},{"x":1568570280000,"y":0.09},{"x":1568570340000,"y":0.24},{"x":1568570400000,"y":0.16},{"x":1568570460000,"y":0.1},{"x":1568570520000,"y":0.05},{"x":1568570580000,"y":0.07},{"x":1568570640000,"y":0.2},{"x":1568570700000,"y":0.15},{"x":1568570760000,"y":0.08},{"x":1568570820000,"y":0.08},{"x":1568570880000,"y":0.08},{"x":1568570940000,"y":0.27},{"x":1568571000000,"y":0.14},{"x":1568571060000,"y":0.1},{"x":1568571120000,"y":0.08},{"x":1568571180000,"y":0.09},{"x":1568571240000,"y":0.23},{"x":1568571300000,"y":0.14},{"x":1568571360000,"y":0.07},{"x":1568571420000,"y":0.1},{"x":1568571480000,"y":0.07},{"x":1568571540000,"y":0.17},{"x":1568571600000,"y":0.18},{"x":1568571660000,"y":0.06},{"x":1568571720000,"y":0.08},{"x":1568571780000,"y":0.07},{"x":1568571840000,"y":0.06},{"x":1568571900000,"y":0.26},{"x":1568571960000,"y":0.07},{"x":1568572020000,"y":0.06},{"x":1568572080000,"y":0.05},{"x":1568572140000,"y":0.47},{"x":1568572200000,"y":0.34},{"x":1568572260000,"y":0.07},{"x":1568572320000,"y":0.08},{"x":1568572380000,"y":0.06},{"x":1568572440000,"y":0.05},{"x":1568572500000,"y":0.34},{"x":1568572560000,"y":0.06},{"x":1568572620000,"y":0.05},{"x":1568572680000,"y":0.1},{"x":1568572740000,"y":0.14},{"x":1568572800000,"y":0.23},{"x":1568572860000,"y":0.07},{"x":1568572920000,"y":0.07},{"x":1568572980000,"y":0.07},{"x":1568573040000,"y":0.09},{"x":1568573100000,"y":0.29},{"x":1568573160000,"y":0.08},{"x":1568573220000,"y":0.06},{"x":1568573280000,"y":0.08},{"x":1568573340000,"y":0.08},{"x":1568573400000,"y":0.37},{"x":1568573460000,"y":0.05},{"x":1568573520000,"y":0.05},{"x":1568573580000,"y":0.08},{"x":1568573640000,"y":0.07},{"x":1568573700000,"y":0.22},{"x":1568573760000,"y":0.23},{"x":1568573820000,"y":0.08},{"x":1568573880000,"y":0.06},{"x":1568573940000,"y":0.1},{"x":1568574000000,"y":0.23},{"x":1568574060000,"y":0.27},{"x":1568574120000,"y":0.06},{"x":1568574180000,"y":0.08},{"x":1568574240000,"y":0.08},{"x":1568574300000,"y":0.17},{"x":1568574360000,"y":0.2},{"x":1568574420000,"y":0.08},{"x":1568574480000,"y":0.1},{"x":1568574540000,"y":0.2},{"x":1568574600000,"y":0.12},{"x":1568574660000,"y":0.21},{"x":1568574720000,"y":0.07},{"x":1568574780000,"y":0.08},{"x":1568574840000,"y":0.07},{"x":1568574900000,"y":0.13},{"x":1568574960000,"y":0.19},{"x":1568575020000,"y":0.06},{"x":1568575080000,"y":0.06},{"x":1568575140000,"y":0.07},{"x":1568575200000,"y":0.14},{"x":1568575260000,"y":0.22},{"x":1568575320000,"y":0.09},{"x":1568575380000,"y":0.07},{"x":1568575440000,"y":0.09},{"x":1568575500000,"y":0.12},{"x":1568575560000,"y":0.18},{"x":1568575620000,"y":0.06},{"x":1568575680000,"y":0.06},{"x":1568575740000,"y":0.06},{"x":1568575800000,"y":0.15},{"x":1568575860000,"y":0.2},{"x":1568575920000,"y":0.06},{"x":1568575980000,"y":0.04},{"x":1568576040000,"y":0.07},{"x":1568576100000,"y":0.18},{"x":1568576160000,"y":0.05},{"x":1568576220000,"y":0.23},{"x":1568576280000,"y":0.06},{"x":1568576340000,"y":0.27},{"x":1568576400000,"y":0.17},{"x":1568576460000,"y":0.1},{"x":1568576520000,"y":0.2},{"x":1568576580000,"y":0.07},{"x":1568576640000,"y":0.07},{"x":1568576700000,"y":0.21},{"x":1568576760000,"y":0.05},{"x":1568576820000,"y":0.24},{"x":1568576880000,"y":0.11},{"x":1568576940000,"y":0.07},{"x":1568577000000,"y":0.18},{"x":1568577060000,"y":0.08},{"x":1568577120000,"y":0.24},{"x":1568577180000,"y":0.09},{"x":1568577240000,"y":0.09},{"x":1568577300000,"y":0.13},{"x":1568577360000,"y":0.06},{"x":1568577420000,"y":0.17},{"x":1568577480000,"y":0.12},{"x":1568577540000,"y":0.1},{"x":1568577600000,"y":0.17},{"x":1568577660000,"y":0.06},{"x":1568577720000,"y":0.24},{"x":1568577780000,"y":0.04},{"x":1568577840000,"y":0.07},{"x":1568577900000,"y":0.09},{"x":1568577960000,"y":0.06},{"x":1568578020000,"y":0.19},{"x":1568578080000,"y":0.06},{"x":1568578140000,"y":0.19},{"x":1568578200000,"y":0.14},{"x":1568578260000,"y":0.05},{"x":1568578320000,"y":0.09},{"x":1568578380000,"y":0.2},{"x":1568578440000,"y":0.07},{"x":1568578500000,"y":0.13},{"x":1568578560000,"y":0.07},{"x":1568578620000,"y":0.07},{"x":1568578680000,"y":0.21},{"x":1568578740000,"y":0.05},{"x":1568578800000,"y":0.18},{"x":1568578860000,"y":0.05},{"x":1568578920000,"y":0.06},{"x":1568578980000,"y":0.22},{"x":1568579040000,"y":0.06},{"x":1568579100000,"y":0.14},{"x":1568579160000,"y":0.1},{"x":1568579220000,"y":0.07},{"x":1568579280000,"y":0.25},{"x":1568579340000,"y":0.05},{"x":1568579400000,"y":0.18},{"x":1568579460000,"y":0.06},{"x":1568579520000,"y":0.06},{"x":1568579580000,"y":0.19},{"x":1568579640000,"y":0.1},{"x":1568579700000,"y":0.18},{"x":1568579760000,"y":0.11},{"x":1568579820000,"y":0.07},{"x":1568579880000,"y":0.2},{"x":1568579940000,"y":0.26},{"x":1568580000000,"y":0.18},{"x":1568580060000,"y":0.11},{"x":1568580120000,"y":0.11},{"x":1568580180000,"y":0.2},{"x":1568580240000,"y":0.06},{"x":1568580300000,"y":0.16},{"x":1568580360000,"y":0.05},{"x":1568580420000,"y":0.09},{"x":1568580480000,"y":0.07},{"x":1568580540000,"y":0.22},{"x":1568580600000,"y":0.15},{"x":1568580660000,"y":0.07},{"x":1568580720000,"y":0.09},{"x":1568580780000,"y":0.04},{"x":1568580840000,"y":0.2},{"x":1568580900000,"y":0.1},{"x":1568580960000,"y":0.05},{"x":1568581020000,"y":0.04},{"x":1568581080000,"y":0.06},{"x":1568581140000,"y":0.22},{"x":1568581200000,"y":0.18},{"x":1568581260000,"y":0.09},{"x":1568581320000,"y":0.25},{"x":1568581380000,"y":0.06},{"x":1568581440000,"y":4.84},{"x":1568581500000,"y":0.29},{"x":1568581560000,"y":0.07},{"x":1568581620000,"y":0.07},{"x":1568581680000,"y":0.06},{"x":1568581740000,"y":0.32},{"x":1568581800000,"y":0.21},{"x":1568581860000,"y":0.05},{"x":1568581920000,"y":0.08},{"x":1568581980000,"y":0.11},{"x":1568582040000,"y":0.24},{"x":1568582100000,"y":0.1},{"x":1568582160000,"y":0.05},{"x":1568582220000,"y":0.1},{"x":1568582280000,"y":0.06},{"x":1568582340000,"y":0.19},{"x":1568582400000,"y":0.09},{"x":1568582460000,"y":0.05},{"x":1568582520000,"y":0.08},{"x":1568582580000,"y":0.08},{"x":1568582640000,"y":0.12},{"x":1568582700000,"y":0.33},{"x":1568582760000,"y":0.1},{"x":1568582820000,"y":0.05},{"x":1568582880000,"y":0.05},{"x":1568582940000,"y":0.07},{"x":1568583000000,"y":0.32},{"x":1568583060000,"y":0.07},{"x":1568583120000,"y":0.1},{"x":1568583180000,"y":0.08},{"x":1568583240000,"y":0.07},{"x":1568583300000,"y":0.27},{"x":1568583360000,"y":0.06},{"x":1568583420000,"y":0.07},{"x":1568583480000,"y":0.05},{"x":1568583540000,"y":0.24},{"x":1568583600000,"y":0.27},{"x":1568583660000,"y":0.05},{"x":1568583720000,"y":0.05},{"x":1568583780000,"y":0.04},{"x":1568583840000,"y":0.12},{"x":1568583900000,"y":0.4},{"x":1568583960000,"y":0.19},{"x":1568584020000,"y":0.05},{"x":1568584080000,"y":0.05},{"x":1568584140000,"y":0.16},{"x":1568584200000,"y":0.31},{"x":1568584260000,"y":0.15},{"x":1568584320000,"y":0.15},{"x":1568584380000,"y":0.09},{"x":1568584440000,"y":0.16},{"x":1568584500000,"y":0.32},{"x":1568584560000,"y":0.09},{"x":1568584620000,"y":0.15},{"x":1568584680000,"y":0.05},{"x":1568584740000,"y":0.09},{"x":1568584800000,"y":0.12},{"x":1568584860000,"y":0.23},{"x":1568584920000,"y":0.08},{"x":1568584980000,"y":0.28},{"x":1568585040000,"y":0.09},{"x":1568585100000,"y":0.13},{"x":1568585160000,"y":0.2},{"x":1568585220000,"y":0.09},{"x":1568585280000,"y":0.08},{"x":1568585340000,"y":0.17},{"x":1568585400000,"y":0.14},{"x":1568585460000,"y":0.24},{"x":1568585520000,"y":0.13},{"x":1568585580000,"y":0.15},{"x":1568585640000,"y":0.14},{"x":1568585700000,"y":0.24},{"x":1568585760000,"y":0.28},{"x":1568585820000,"y":0.14},{"x":1568585880000,"y":0.17},{"x":1568585940000,"y":0.16},{"x":1568586000000,"y":0.28},{"x":1568586060000,"y":0.27},{"x":1568586120000,"y":0.15},{"x":1568586180000,"y":0.14},{"x":1568586240000,"y":0.14},{"x":1568586300000,"y":0.19},{"x":1568586360000,"y":0.29},{"x":1568586420000,"y":0.16},{"x":1568586480000,"y":0.14},{"x":1568586540000,"y":0.14},{"x":1568586600000,"y":0.25},{"x":1568586660000,"y":0.28},{"x":1568586720000,"y":0.15},{"x":1568586780000,"y":0.14},{"x":1568586840000,"y":0.12},{"x":1568586900000,"y":0.25},{"x":1568586960000,"y":0.3},{"x":1568587020000,"y":0.17},{"x":1568587080000,"y":0.14},{"x":1568587140000,"y":0.26},{"x":1568587200000,"y":0.22},{"x":1568587260000,"y":0.16},{"x":1568587320000,"y":0.29},{"x":1568587380000,"y":0.15},{"x":1568587440000,"y":0.17},{"x":1568587500000,"y":0.22},{"x":1568587560000,"y":0.13},{"x":1568587620000,"y":0.28},{"x":1568587680000,"y":0.17},{"x":1568587740000,"y":0.16},{"x":1568587800000,"y":0.16},{"x":1568587860000,"y":0.16},{"x":1568587920000,"y":0.26},{"x":1568587980000,"y":0.14},{"x":1568588040000,"y":0.19},{"x":1568588100000,"y":0.24},{"x":1568588160000,"y":0.15},{"x":1568588220000,"y":0.27},{"x":1568588280000,"y":0.15},{"x":1568588340000,"y":0.14},{"x":1568588400000,"y":0.26},{"x":1568588460000,"y":0.15},{"x":1568588520000,"y":0.34},{"x":1568588580000,"y":0.16},{"x":1568588640000,"y":0.16},{"x":1568588700000,"y":0.29},{"x":1568588760000,"y":0.15},{"x":1568588820000,"y":0.31},{"x":1568588880000,"y":0.15},{"x":1568588940000,"y":0.24},{"x":1568589000000,"y":0.26},{"x":1568589060000,"y":0.12},{"x":1568589120000,"y":0.26},{"x":1568589180000,"y":0.23},{"x":1568589240000,"y":0.14},{"x":1568589300000,"y":0.24},{"x":1568589360000,"y":0.16},{"x":1568589420000,"y":0.15},{"x":1568589480000,"y":0.28},{"x":1568589540000,"y":0.15},{"x":1568589600000,"y":0.28},{"x":1568589660000,"y":0.14},{"x":1568589720000,"y":0.14},{"x":1568589780000,"y":0.28},{"x":1568589840000,"y":0.15},{"x":1568589900000,"y":0.2},{"x":1568589960000,"y":0.17},{"x":1568590020000,"y":0.18},{"x":1568590080000,"y":0.29},{"x":1568590140000,"y":0.13},{"x":1568590200000,"y":0.19},{"x":1568590260000,"y":0.15},{"x":1568590320000,"y":0.15},{"x":1568590380000,"y":0.29},{"x":1568590440000,"y":0.15},{"x":1568590500000,"y":0.23},{"x":1568590560000,"y":0.16},{"x":1568590620000,"y":0.14},{"x":1568590680000,"y":0.32},{"x":1568590740000,"y":0.27},{"x":1568590800000,"y":0.27},{"x":1568590860000,"y":0.13},{"x":1568590920000,"y":0.16},{"x":1568590980000,"y":0.27},{"x":1568591040000,"y":0.15},{"x":1568591100000,"y":0.23},{"x":1568591160000,"y":0.2},{"x":1568591220000,"y":0.17},{"x":1568591280000,"y":0.17},{"x":1568591340000,"y":0.28},{"x":1568591400000,"y":0.2},{"x":1568591460000,"y":0.14},{"x":1568591520000,"y":0.14},{"x":1568591580000,"y":0.15},{"x":1568591640000,"y":0.28},{"x":1568591700000,"y":0.21},{"x":1568591760000,"y":0.16},{"x":1568591820000,"y":0.15},{"x":1568591880000,"y":0.15},{"x":1568591940000,"y":0.29},{"x":1568592000000,"y":0.3},{"x":1568592060000,"y":0.14},{"x":1568592120000,"y":0.14},{"x":1568592180000,"y":0.18},{"x":1568592240000,"y":0.27},{"x":1568592300000,"y":0.2},{"x":1568592360000,"y":0.16},{"x":1568592420000,"y":0.14},{"x":1568592480000,"y":0.18},{"x":1568592540000,"y":0.35},{"x":1568592600000,"y":0.19},{"x":1568592660000,"y":0.15},{"x":1568592720000,"y":0.17},{"x":1568592780000,"y":0.13},{"x":1568592840000,"y":0.3},{"x":1568592900000,"y":0.2},{"x":1568592960000,"y":0.16},{"x":1568593020000,"y":0.17},{"x":1568593080000,"y":0.13},{"x":1568593140000,"y":0.3},{"x":1568593200000,"y":0.24},{"x":1568593260000,"y":0.15},{"x":1568593320000,"y":0.15},{"x":1568593380000,"y":0.16},{"x":1568593440000,"y":0.32},{"x":1568593500000,"y":0.25},{"x":1568593560000,"y":0.17},{"x":1568593620000,"y":0.15},{"x":1568593680000,"y":0.18},{"x":1568593740000,"y":0.14},{"x":1568593800000,"y":0.41},{"x":1568593860000,"y":0.16},{"x":1568593920000,"y":0.17},{"x":1568593980000,"y":0.14},{"x":1568594040000,"y":0.17},{"x":1568594100000,"y":0.38},{"x":1568594160000,"y":0.14},{"x":1568594220000,"y":0.14},{"x":1568594280000,"y":0.16},{"x":1568594340000,"y":0.22},{"x":1568594400000,"y":0.37},{"x":1568594460000,"y":0.15},{"x":1568594520000,"y":0.14},{"x":1568594580000,"y":0.14},{"x":1568594640000,"y":0.15},{"x":1568594700000,"y":0.34},{"x":1568594760000,"y":0.16},{"x":1568594820000,"y":0.14},{"x":1568594880000,"y":0.17},{"x":1568594940000,"y":0.14},{"x":1568595000000,"y":0.32},{"x":1568595060000,"y":0.14},{"x":1568595120000,"y":0.12},{"x":1568595180000,"y":0.14},{"x":1568595240000,"y":0.14},{"x":1568595300000,"y":0.29},{"x":1568595360000,"y":0.14},{"x":1568595420000,"y":0.08},{"x":1568595480000,"y":0.08},{"x":1568595540000,"y":0.06},{"x":1568595600000,"y":0.3},{"x":1568595660000,"y":0.06},{"x":1568595720000,"y":0.09},{"x":1568595780000,"y":0.08},{"x":1568595840000,"y":0.08},{"x":1568595900000,"y":0.12},{"x":1568595960000,"y":0.2},{"x":1568596020000,"y":0.06},{"x":1568596080000,"y":0.07},{"x":1568596140000,"y":0.26},{"x":1568596200000,"y":0.19},{"x":1568596260000,"y":0.19},{"x":1568596320000,"y":0.05},{"x":1568596380000,"y":0.06},{"x":1568596440000,"y":0.09},{"x":1568596500000,"y":0.14},{"x":1568596560000,"y":0.25},{"x":1568596620000,"y":0.08},{"x":1568596680000,"y":0.07},{"x":1568596740000,"y":0.05},{"x":1568596800000,"y":0.19},{"x":1568596860000,"y":0.21},{"x":1568596920000,"y":0.05},{"x":1568596980000,"y":0.05},{"x":1568597040000,"y":0.08},{"x":1568597100000,"y":0.16},{"x":1568597160000,"y":0.19},{"x":1568597220000,"y":0.08},{"x":1568597280000,"y":0.07},{"x":1568597340000,"y":0.07},{"x":1568597400000,"y":0.09},{"x":1568597460000,"y":0.23},{"x":1568597520000,"y":0.09},{"x":1568597580000,"y":0.07},{"x":1568597640000,"y":0.05},{"x":1568597700000,"y":0.11},{"x":1568597760000,"y":0.26},{"x":1568597820000,"y":0.05},{"x":1568597880000,"y":0.05},{"x":1568597940000,"y":0.17},{"x":1568598000000,"y":0.1},{"x":1568598060000,"y":0.21},{"x":1568598120000,"y":0.07},{"x":1568598180000,"y":0.05},{"x":1568598240000,"y":0.07},{"x":1568598300000,"y":0.09},{"x":1568598360000,"y":0.07},{"x":1568598420000,"y":0.21},{"x":1568598480000,"y":0.05},{"x":1568598540000,"y":0.05},{"x":1568598600000,"y":0.11},{"x":1568598660000,"y":0.04},{"x":1568598720000,"y":0.2},{"x":1568598780000,"y":0.06},{"x":1568598840000,"y":0.05},{"x":1568598900000,"y":0.09},{"x":1568598960000,"y":0.07},{"x":1568599020000,"y":0.19},{"x":1568599080000,"y":0.05},{"x":1568599140000,"y":0.05},{"x":1568599200000,"y":0.12},{"x":1568599260000,"y":0.05},{"x":1568599320000,"y":0.2},{"x":1568599380000,"y":0.05},{"x":1568599440000,"y":0.07},{"x":1568599500000,"y":0.15},{"x":1568599560000,"y":0.05},{"x":1568599620000,"y":0.2},{"x":1568599680000,"y":0.05},{"x":1568599740000,"y":0.23},{"x":1568599800000,"y":0.14},{"x":1568599860000,"y":0.05},{"x":1568599920000,"y":0.21},{"x":1568599980000,"y":0.06},{"x":1568600040000,"y":0.05},{"x":1568600100000,"y":0.17},{"x":1568600160000,"y":0.05},{"x":1568600220000,"y":0.19},{"x":1568600280000,"y":0.05},{"x":1568600340000,"y":0.07},{"x":1568600400000,"y":0.13},{"x":1568600460000,"y":0.05},{"x":1568600520000,"y":0.05},{"x":1568600580000,"y":0.22},{"x":1568600640000,"y":0.1},{"x":1568600700000,"y":0.11},{"x":1568600760000,"y":0.04},{"x":1568600820000,"y":0.05},{"x":1568600880000,"y":0.22},{"x":1568600940000,"y":0.05},{"x":1568601000000,"y":0.15},{"x":1568601060000,"y":0.04},{"x":1568601120000,"y":0.05},{"x":1568601180000,"y":0.17},{"x":1568601240000,"y":0.06},{"x":1568601300000,"y":0.12},{"x":1568601360000,"y":0.07},{"x":1568601420000,"y":0.07},{"x":1568601480000,"y":0.18},{"x":1568601540000,"y":0.12},{"x":1568601600000,"y":0.12},{"x":1568601660000,"y":0.06},{"x":1568601720000,"y":0.08},{"x":1568601780000,"y":0.17},{"x":1568601840000,"y":0.07},{"x":1568601900000,"y":0.15},{"x":1568601960000,"y":0.09},{"x":1568602020000,"y":0.07},{"x":1568602080000,"y":0.2},{"x":1568602140000,"y":0.05},{"x":1568602200000,"y":0.17},{"x":1568602260000,"y":0.05},{"x":1568602320000,"y":0.07},{"x":1568602380000,"y":0.2},{"x":1568602440000,"y":0.06},{"x":1568602500000,"y":0.12},{"x":1568602560000,"y":0.07},{"x":1568602620000,"y":0.06},{"x":1568602680000,"y":0.05},{"x":1568602740000,"y":0.19},{"x":1568602800000,"y":0.19},{"x":1568602860000,"y":0.05},{"x":1568602920000,"y":0.05},{"x":1568602980000,"y":0.05},{"x":1568603040000,"y":0.2},{"x":1568603100000,"y":0.11},{"x":1568603160000,"y":0.06},{"x":1568603220000,"y":0.04},{"x":1568603280000,"y":0.06},{"x":1568603340000,"y":4.99},{"x":1568603400000,"y":0.2},{"x":1568603460000,"y":0.07},{"x":1568603520000,"y":0.06},{"x":1568603580000,"y":0.05},{"x":1568603640000,"y":0.19},{"x":1568603700000,"y":0.1},{"x":1568603760000,"y":0.05},{"x":1568603820000,"y":0.1},{"x":1568603880000,"y":0.05},{"x":1568603940000,"y":0.17},{"x":1568604000000,"y":0.14},{"x":1568604060000,"y":0.04},{"x":1568604120000,"y":0.05},{"x":1568604180000,"y":0.05},{"x":1568604240000,"y":0.17},{"x":1568604300000,"y":0.1},{"x":1568604360000,"y":0.05},{"x":1568604420000,"y":0.06},{"x":1568604480000,"y":0.08},{"x":1568604540000,"y":0.19},{"x":1568604600000,"y":0.19},{"x":1568604660000,"y":0.08},{"x":1568604720000,"y":0.06},{"x":1568604780000,"y":0.05},{"x":1568604840000,"y":0.15},{"x":1568604900000,"y":0.14},{"x":1568604960000,"y":0.07},{"x":1568605020000,"y":0.05},{"x":1568605080000,"y":0.06},{"x":1568605140000,"y":0.14},{"x":1568605200000,"y":0.28},{"x":1568605260000,"y":0.06},{"x":1568605320000,"y":0.07},{"x":1568605380000,"y":0.05},{"x":1568605440000,"y":0.07},{"x":1568605500000,"y":0.29},{"x":1568605560000,"y":0.08},{"x":1568605620000,"y":0.05},{"x":1568605680000,"y":0.06},{"x":1568605740000,"y":0.08},{"x":1568605800000,"y":0.23},{"x":1568605860000,"y":0.06},{"x":1568605920000,"y":0.08},{"x":1568605980000,"y":0.06},{"x":1568606040000,"y":0.06},{"x":1568606100000,"y":0.28},{"x":1568606160000,"y":0.07},{"x":1568606220000,"y":0.05},{"x":1568606280000,"y":0.04},{"x":1568606340000,"y":0.05},{"x":1568606400000,"y":0.26},{"x":1568606460000,"y":0.04},{"x":1568606520000,"y":0.08},{"x":1568606580000,"y":0.06},{"x":1568606640000,"y":0.06},{"x":1568606700000,"y":0.28},{"x":1568606760000,"y":2.1},{"x":1568606820000,"y":0.05},{"x":1568606880000,"y":0.05},{"x":1568606940000,"y":0.15},{"x":1568607000000,"y":0.1},{"x":1568607060000,"y":0.23},{"x":1568607120000,"y":0.06},{"x":1568607180000,"y":0.06},{"x":1568607240000,"y":0.09},{"x":1568607300000,"y":0.19},{"x":1568607360000,"y":0.22},{"x":1568607420000,"y":0.08},{"x":1568607480000,"y":0.06},{"x":1568607540000,"y":0.08},{"x":1568607600000,"y":0.12},{"x":1568607660000,"y":0.19},{"x":1568607720000,"y":0.07},{"x":1568607780000,"y":0.05},{"x":1568607840000,"y":0.07},{"x":1568607900000,"y":0.13},{"x":1568607960000,"y":0.2},{"x":1568608020000,"y":0.06},{"x":1568608080000,"y":0.08},{"x":1568608140000,"y":0.05},{"x":1568608200000,"y":0.19},{"x":1568608260000,"y":0.19},{"x":1568608320000,"y":0.08},{"x":1568608380000,"y":0.06},{"x":1568608440000,"y":0.1},{"x":1568608500000,"y":0.15},{"x":1568608560000,"y":0.23},{"x":1568608620000,"y":0.07},{"x":1568608680000,"y":0.06},{"x":1568608740000,"y":0.19},{"x":1568608800000,"y":0.11},{"x":1568608860000,"y":0.2},{"x":1568608920000,"y":0.07},{"x":1568608980000,"y":0.1},{"x":1568609040000,"y":0.07},{"x":1568609100000,"y":0.12},{"x":1568609160000,"y":1.3},{"x":1568609220000,"y":0.2},{"x":1568609280000,"y":0.06},{"x":1568609340000,"y":0.06},{"x":1568609400000,"y":0.1},{"x":1568609460000,"y":0.07},{"x":1568609520000,"y":0.19},{"x":1568609580000,"y":0.06},{"x":1568609640000,"y":0.07},{"x":1568609700000,"y":0.13},{"x":1568609760000,"y":0.06},{"x":1568609820000,"y":0.18},{"x":1568609880000,"y":0.07},{"x":1568609940000,"y":0.07},{"x":1568610000000,"y":0.69},{"x":1568610060000,"y":0.08},{"x":1568610120000,"y":0.2},{"x":1568610180000,"y":0.07},{"x":1568610240000,"y":0.06},{"x":1568610300000,"y":0.21},{"x":1568610360000,"y":0.08},{"x":1568610420000,"y":0.2},{"x":1568610480000,"y":0.06},{"x":1568610540000,"y":0.23},{"x":1568610600000,"y":0.18},{"x":1568610660000,"y":0.05},{"x":1568610720000,"y":0.2},{"x":1568610780000,"y":0.07},{"x":1568610840000,"y":0.06},{"x":1568610900000,"y":0.16},{"x":1568610960000,"y":0.08},{"x":1568611020000,"y":0.21},{"x":1568611080000,"y":0.1},{"x":1568611140000,"y":0.07},{"x":1568611200000,"y":0.14},{"x":1568611260000,"y":0.05},{"x":1568611320000,"y":0.08},{"x":1568611380000,"y":0.25},{"x":1568611440000,"y":0.09},{"x":1568611500000,"y":0.22},{"x":1568611560000,"y":0.04},{"x":1568611620000,"y":0.06},{"x":1568611680000,"y":0.2},{"x":1568611740000,"y":0.06},{"x":1568611800000,"y":0.15},{"x":1568611860000,"y":0.05},{"x":1568611920000,"y":0.09},{"x":1568611980000,"y":0.2},{"x":1568612040000,"y":0.1},{"x":1568612100000,"y":0.16},{"x":1568612160000,"y":0.07},{"x":1568612220000,"y":0.06},{"x":1568612280000,"y":0.2},{"x":1568612340000,"y":0.17},{"x":1568612400000,"y":0.14},{"x":1568612460000,"y":0.05},{"x":1568612520000,"y":0.08},{"x":1568612580000,"y":0.19},{"x":1568612640000,"y":0.06},{"x":1568612700000,"y":0.12},{"x":1568612760000,"y":1.51},{"x":1568612820000,"y":0.08},{"x":1568612880000,"y":0.2},{"x":1568612940000,"y":0.08},{"x":1568613000000,"y":0.15},{"x":1568613060000,"y":0.05},{"x":1568613120000,"y":0.08},{"x":1568613180000,"y":0.1},{"x":1568613240000,"y":0.26},{"x":1568613300000,"y":0.17},{"x":1568613360000,"y":0.06},{"x":1568613420000,"y":0.08},{"x":1568613480000,"y":0.09},{"x":1568613540000,"y":0.2},{"x":1568613600000,"y":0.14},{"x":1568613660000,"y":0.11},{"x":1568613720000,"y":0.1},{"x":1568613780000,"y":0.05},{"x":1568613840000,"y":0.19},{"x":1568613900000,"y":0.12},{"x":1568613960000,"y":0.05},{"x":1568614020000,"y":3.81},{"x":1568614080000,"y":0.06},{"x":1568614140000,"y":0.34},{"x":1568614200000,"y":0.11},{"x":1568614260000,"y":0.08},{"x":1568614320000,"y":0.07},{"x":1568614380000,"y":0.12},{"x":1568614440000,"y":0.2},{"x":1568614500000,"y":0.15},{"x":1568614560000,"y":0.09},{"x":1568614620000,"y":0.12},{"x":1568614680000,"y":0.07},{"x":1568614740000,"y":0.18},{"x":1568614800000,"y":0.19},{"x":1568614860000,"y":0.06},{"x":1568614920000,"y":0.07},{"x":1568614980000,"y":0.07},{"x":1568615040000,"y":0.2},{"x":1568615100000,"y":0.28},{"x":1568615160000,"y":0.07},{"x":1568615220000,"y":0.07},{"x":1568615280000,"y":0.12},{"x":1568615340000,"y":0.07},{"x":1568615400000,"y":0.34},{"x":1568615460000,"y":0.07},{"x":1568615520000,"y":0.07},{"x":1568615580000,"y":0.07},{"x":1568615640000,"y":0.06},{"x":1568615700000,"y":0.23},{"x":1568615760000,"y":0.08},{"x":1568615820000,"y":0.07},{"x":1568615880000,"y":0.11},{"x":1568615940000,"y":0.17},{"x":1568616000000,"y":0.3},{"x":1568616060000,"y":0.05},{"x":1568616120000,"y":0.05},{"x":1568616180000,"y":0.06},{"x":1568616240000,"y":0.05},{"x":1568616300000,"y":0.23},{"x":1568616360000,"y":0.38},{"x":1568616420000,"y":0.06},{"x":1568616480000,"y":0.05},{"x":1568616540000,"y":0.07},{"x":1568616600000,"y":0.26},{"x":1568616660000,"y":0.1},{"x":1568616720000,"y":0.07},{"x":1568616780000,"y":0.06},{"x":1568616840000,"y":0.06},{"x":1568616900000,"y":0.29},{"x":1568616960000,"y":0.08},{"x":1568617020000,"y":0.12},{"x":1568617080000,"y":0.08},{"x":1568617140000,"y":0.05},{"x":1568617200000,"y":0.28},{"x":1568617260000,"y":0.05},{"x":1568617320000,"y":0.08},{"x":1568617380000,"y":0.06},{"x":1568617440000,"y":0.09},{"x":1568617500000,"y":0.21},{"x":1568617560000,"y":0.22},{"x":1568617620000,"y":0.08},{"x":1568617680000,"y":0.12},{"x":1568617740000,"y":0.23},{"x":1568617800000,"y":0.21},{"x":1568617860000,"y":0.22},{"x":1568617920000,"y":0.15},{"x":1568617980000,"y":0.1},{"x":1568618040000,"y":0.08},{"x":1568618100000,"y":0.15},{"x":1568618160000,"y":0.2},{"x":1568618220000,"y":0.08},{"x":1568618280000,"y":0.15},{"x":1568618340000,"y":0.1},{"x":1568618400000,"y":0.25},{"x":1568618460000,"y":0.24},{"x":1568618520000,"y":0.16},{"x":1568618580000,"y":0.15},{"x":1568618640000,"y":0.18},{"x":1568618700000,"y":0.17},{"x":1568618760000,"y":0.28},{"x":1568618820000,"y":0.12},{"x":1568618880000,"y":0.13},{"x":1568618940000,"y":0.12},{"x":1568619000000,"y":0.17},{"x":1568619060000,"y":0.26},{"x":1568619120000,"y":0.14},{"x":1568619180000,"y":0.13},{"x":1568619240000,"y":0.17},{"x":1568619300000,"y":0.25},{"x":1568619360000,"y":0.28},{"x":1568619420000,"y":0.17},{"x":1568619480000,"y":0.14},{"x":1568619540000,"y":0.25},{"x":1568619600000,"y":0.24},{"x":1568619660000,"y":0.14},{"x":1568619720000,"y":0.29},{"x":1568619780000,"y":0.18},{"x":1568619840000,"y":0.15},{"x":1568619900000,"y":0.26},{"x":1568619960000,"y":0.15},{"x":1568620020000,"y":0.52},{"x":1568620080000,"y":0.13},{"x":1568620140000,"y":0.14},{"x":1568620200000,"y":0.19},{"x":1568620260000,"y":0.17},{"x":1568620320000,"y":0.3},{"x":1568620380000,"y":0.15},{"x":1568620440000,"y":0.14},{"x":1568620500000,"y":0.2},{"x":1568620560000,"y":0.15},{"x":1568620620000,"y":0.27},{"x":1568620680000,"y":0.15},{"x":1568620740000,"y":0.15},{"x":1568620800000,"y":0.46},{"x":1568620860000,"y":0.19},{"x":1568620920000,"y":0.27},{"x":1568620980000,"y":0.14},{"x":1568621040000,"y":0.14},{"x":1568621100000,"y":0.23},{"x":1568621160000,"y":0.19},{"x":1568621220000,"y":0.28},{"x":1568621280000,"y":0.16},{"x":1568621340000,"y":0.2},{"x":1568621400000,"y":0.18},{"x":1568621460000,"y":0.14},{"x":1568621520000,"y":0.29},{"x":1568621580000,"y":0.14},{"x":1568621640000,"y":0.14},{"x":1568621700000,"y":0.24},{"x":1568621760000,"y":0.17},{"x":1568621820000,"y":0.29},{"x":1568621880000,"y":0.15},{"x":1568621940000,"y":0.14},{"x":1568622000000,"y":0.19},{"x":1568622060000,"y":0.18},{"x":1568622120000,"y":0.15},{"x":1568622180000,"y":0.3},{"x":1568622240000,"y":0.15},{"x":1568622300000,"y":0.22},{"x":1568622360000,"y":0.13},{"x":1568622420000,"y":0.12},{"x":1568622480000,"y":0.28},{"x":1568622540000,"y":0.14},{"x":1568622600000,"y":0.2},{"x":1568622660000,"y":0.15},{"x":1568622720000,"y":0.15},{"x":1568622780000,"y":0.28},{"x":1568622840000,"y":0.14},{"x":1568622900000,"y":0.3},{"x":1568622960000,"y":0.15},{"x":1568623020000,"y":0.13},{"x":1568623080000,"y":0.28},{"x":1568623140000,"y":0.28},{"x":1568623200000,"y":0.23},{"x":1568623260000,"y":0.14},{"x":1568623320000,"y":0.14},{"x":1568623380000,"y":0.26},{"x":1568623440000,"y":0.13},{"x":1568623500000,"y":0.19},{"x":1568623560000,"y":0.17},{"x":1568623620000,"y":0.16},{"x":1568623680000,"y":0.27},{"x":1568623740000,"y":0.15},{"x":1568623800000,"y":0.17},{"x":1568623860000,"y":0.14},{"x":1568623920000,"y":0.15},{"x":1568623980000,"y":0.27},{"x":1568624040000,"y":0.17},{"x":1568624100000,"y":0.19},{"x":1568624160000,"y":0.13},{"x":1568624220000,"y":0.13},{"x":1568624280000,"y":0.15},{"x":1568624340000,"y":0.31},{"x":1568624400000,"y":0.29},{"x":1568624460000,"y":0.13},{"x":1568624520000,"y":0.18},{"x":1568624580000,"y":0.17},{"x":1568624640000,"y":0.33},{"x":1568624700000,"y":0.35},{"x":1568624760000,"y":0.16},{"x":1568624820000,"y":0.14},{"x":1568624880000,"y":0.13},{"x":1568624940000,"y":0.38},{"x":1568625000000,"y":0.21},{"x":1568625060000,"y":0.14},{"x":1568625120000,"y":0.15},{"x":1568625180000,"y":0.12},{"x":1568625240000,"y":4.83},{"x":1568625300000,"y":0.35},{"x":1568625360000,"y":0.15},{"x":1568625420000,"y":0.16},{"x":1568625480000,"y":0.15},{"x":1568625540000,"y":0.27},{"x":1568625600000,"y":0.23},{"x":1568625660000,"y":0.16},{"x":1568625720000,"y":0.18},{"x":1568625780000,"y":0.15},{"x":1568625840000,"y":0.28},{"x":1568625900000,"y":0.2},{"x":1568625960000,"y":0.16},{"x":1568626020000,"y":0.15},{"x":1568626080000,"y":0.19},{"x":1568626140000,"y":0.15},{"x":1568626200000,"y":0.38},{"x":1568626260000,"y":0.15},{"x":1568626320000,"y":0.15},{"x":1568626380000,"y":0.14},{"x":1568626440000,"y":0.15},{"x":1568626500000,"y":0.3},{"x":1568626560000,"y":0.14},{"x":1568626620000,"y":0.14},{"x":1568626680000,"y":0.15},{"x":1568626740000,"y":0.29},{"x":1568626800000,"y":0.38},{"x":1568626860000,"y":0.17},{"x":1568626920000,"y":0.16},{"x":1568626980000,"y":0.14},{"x":1568627040000,"y":0.13},{"x":1568627100000,"y":0.34},{"x":1568627160000,"y":0.2},{"x":1568627220000,"y":0.18},{"x":1568627280000,"y":0.17},{"x":1568627340000,"y":0.15},{"x":1568627400000,"y":0.33},{"x":1568627460000,"y":0.15},{"x":1568627520000,"y":0.12},{"x":1568627580000,"y":0.15},{"x":1568627640000,"y":0.17},{"x":1568627700000,"y":0.34},{"x":1568627760000,"y":0.14},{"x":1568627820000,"y":0.15},{"x":1568627880000,"y":0.19},{"x":1568627940000,"y":0.17},{"x":1568628000000,"y":0.42},{"x":1568628060000,"y":0.15},{"x":1568628120000,"y":0.15},{"x":1568628180000,"y":0.16},{"x":1568628240000,"y":0.16},{"x":1568628300000,"y":0.23},{"x":1568628360000,"y":0.29},{"x":1568628420000,"y":0.14},{"x":1568628480000,"y":0.11},{"x":1568628540000,"y":1.77},{"x":1568628600000,"y":0.14},{"x":1568628660000,"y":0.23},{"x":1568628720000,"y":0.08},{"x":1568628780000,"y":0.06},{"x":1568628840000,"y":0.07},{"x":1568628900000,"y":0.13},{"x":1568628960000,"y":0.21},{"x":1568629020000,"y":0.1},{"x":1568629080000,"y":0.1},{"x":1568629140000,"y":0.06},{"x":1568629200000,"y":0.1},{"x":1568629260000,"y":0.21},{"x":1568629320000,"y":0.06},{"x":1568629380000,"y":0.07},{"x":1568629440000,"y":0.06},{"x":1568629500000,"y":0.21},{"x":1568629560000,"y":0.24},{"x":1568629620000,"y":0.05},{"x":1568629680000,"y":3.77},{"x":1568629740000,"y":0.06},{"x":1568629800000,"y":0.12},{"x":1568629860000,"y":0.21},{"x":1568629920000,"y":0.06},{"x":1568629980000,"y":0.07},{"x":1568630040000,"y":0.08},{"x":1568630100000,"y":0.16},{"x":1568630160000,"y":0.2},{"x":1568630220000,"y":0.08},{"x":1568630280000,"y":0.1},{"x":1568630340000,"y":0.17},{"x":1568630400000,"y":0.15},{"x":1568630460000,"y":0.06},{"x":1568630520000,"y":0.2},{"x":1568630580000,"y":0.06},{"x":1568630640000,"y":0.06},{"x":1568630700000,"y":0.14},{"x":1568630760000,"y":0.1},{"x":1568630820000,"y":0.21},{"x":1568630880000,"y":0.07},{"x":1568630940000,"y":0.06},{"x":1568631000000,"y":0.15},{"x":1568631060000,"y":0.08},{"x":1568631120000,"y":0.2},{"x":1568631180000,"y":0.08},{"x":1568631240000,"y":0.09},{"x":1568631300000,"y":0.14},{"x":1568631360000,"y":0.08},{"x":1568631420000,"y":0.19},{"x":1568631480000,"y":0.06},{"x":1568631540000,"y":0.05},{"x":1568631600000,"y":0.17},{"x":1568631660000,"y":0.05},{"x":1568631720000,"y":0.21},{"x":1568631780000,"y":0.06},{"x":1568631840000,"y":0.05},{"x":1568631900000,"y":0.15},{"x":1568631960000,"y":0.06},{"x":1568632020000,"y":0.2},{"x":1568632080000,"y":0.1},{"x":1568632140000,"y":0.32},{"x":1568632200000,"y":0.09},{"x":1568632260000,"y":0.09},{"x":1568632320000,"y":0.2},{"x":1568632380000,"y":0.06},{"x":1568632440000,"y":0.05},{"x":1568632500000,"y":0.17},{"x":1568632560000,"y":0.07},{"x":1568632620000,"y":0.24},{"x":1568632680000,"y":0.06},{"x":1568632740000,"y":0.05},{"x":1568632800000,"y":0.17},{"x":1568632860000,"y":0.07},{"x":1568632920000,"y":0.07},{"x":1568632980000,"y":0.2},{"x":1568633040000,"y":0.05},{"x":1568633100000,"y":1.2},{"x":1568633160000,"y":0.08},{"x":1568633220000,"y":0.05},{"x":1568633280000,"y":0.19},{"x":1568633340000,"y":0.06},{"x":1568633400000,"y":0.14},{"x":1568633460000,"y":0.05},{"x":1568633520000,"y":0.52},{"x":1568633580000,"y":6.94},{"x":1568633640000,"y":0.05},{"x":1568633700000,"y":0.1},{"x":1568633760000,"y":0.09},{"x":1568633820000,"y":0.07},{"x":1568633880000,"y":0.2},{"x":1568633940000,"y":0.16},{"x":1568634000000,"y":0.13},{"x":1568634060000,"y":0.07},{"x":1568634120000,"y":0.08},{"x":1568634180000,"y":0.19},{"x":1568634240000,"y":0.07},{"x":1568634300000,"y":0.13},{"x":1568634360000,"y":0.1},{"x":1568634420000,"y":0.07},{"x":1568634480000,"y":0.2},{"x":1568634540000,"y":0.05},{"x":1568634600000,"y":0.11},{"x":1568634660000,"y":0.07},{"x":1568634720000,"y":0.1},{"x":1568634780000,"y":0.23},{"x":1568634840000,"y":0.07},{"x":1568634900000,"y":0.15},{"x":1568634960000,"y":0.07},{"x":1568635020000,"y":0.05},{"x":1568635080000,"y":0.21},{"x":1568635140000,"y":0.06},{"x":1568635200000,"y":0.16},{"x":1568635260000,"y":0.05},{"x":1568635320000,"y":0.07},{"x":1568635380000,"y":0.07},{"x":1568635440000,"y":0.26},{"x":1568635500000,"y":0.18},{"x":1568635560000,"y":0.05},{"x":1568635620000,"y":0.04},{"x":1568635680000,"y":0.05},{"x":1568635740000,"y":0.27},{"x":1568635800000,"y":0.12},{"x":1568635860000,"y":0.07},{"x":1568635920000,"y":0.08},{"x":1568635980000,"y":0.06},{"x":1568636040000,"y":0.21},{"x":1568636100000,"y":0.11},{"x":1568636160000,"y":0.05},{"x":1568636220000,"y":0.05},{"x":1568636280000,"y":0.06},{"x":1568636340000,"y":0.18},{"x":1568636400000,"y":0.13},{"x":1568636460000,"y":0.05},{"x":1568636520000,"y":0.07},{"x":1568636580000,"y":0.06},{"x":1568636640000,"y":0.18},{"x":1568636700000,"y":0.12},{"x":1568636760000,"y":0.05},{"x":1568636820000,"y":0.05},{"x":1568636880000,"y":0.05},{"x":1568636940000,"y":0.18},{"x":1568637000000,"y":0.1},{"x":1568637060000,"y":0.05},{"x":1568637120000,"y":0.05},{"x":1568637180000,"y":0.04},{"x":1568637240000,"y":0.18},{"x":1568637300000,"y":0.15},{"x":1568637360000,"y":0.08},{"x":1568637420000,"y":0.06},{"x":1568637480000,"y":0.05},{"x":1568637540000,"y":0.25},{"x":1568637600000,"y":0.18},{"x":1568637660000,"y":0.04},{"x":1568637720000,"y":0.05},{"x":1568637780000,"y":0.06},{"x":1568637840000,"y":0.06},{"x":1568637900000,"y":0.32},{"x":1568637960000,"y":0.12},{"x":1568638020000,"y":0.05},{"x":1568638080000,"y":0.05},{"x":1568638140000,"y":0.8},{"x":1568638200000,"y":0.27},{"x":1568638260000,"y":0.06},{"x":1568638320000,"y":0.05},{"x":1568638380000,"y":0.05},{"x":1568638440000,"y":0.07},{"x":1568638500000,"y":0.31},{"x":1568638560000,"y":0.05},{"x":1568638620000,"y":0.03},{"x":1568638680000,"y":0.05},{"x":1568638740000,"y":0.05},{"x":1568638800000,"y":0.36},{"x":1568638860000,"y":0.05},{"x":1568638920000,"y":0.07},{"x":1568638980000,"y":0.07},{"x":1568639040000,"y":0.05},{"x":1568639100000,"y":0.24},{"x":1568639160000,"y":0.07},{"x":1568639220000,"y":0.05},{"x":1568639280000,"y":0.06},{"x":1568639340000,"y":0.14},{"x":1568639400000,"y":0.22},{"x":1568639460000,"y":0.09},{"x":1568639520000,"y":0.07},{"x":1568639580000,"y":0.09},{"x":1568639640000,"y":0.05},{"x":1568639700000,"y":0.29},{"x":1568639760000,"y":0.08},{"x":1568639820000,"y":0.07},{"x":1568639880000,"y":0.09},{"x":1568639940000,"y":0.07},{"x":1568640000000,"y":0.13},{"x":1568640060000,"y":0.31},{"x":1568640120000,"y":0.11},{"x":1568640180000,"y":0.06},{"x":1568640240000,"y":0.05},{"x":1568640300000,"y":0.17},{"x":1568640360000,"y":0.2},{"x":1568640420000,"y":0.07},{"x":1568640480000,"y":0.09},{"x":1568640540000,"y":0.08},{"x":1568640600000,"y":0.14},{"x":1568640660000,"y":0.2},{"x":1568640720000,"y":0.05},{"x":1568640780000,"y":0.05},{"x":1568640840000,"y":0.05},{"x":1568640900000,"y":0.13},{"x":1568640960000,"y":0.22},{"x":1568641020000,"y":0.05},{"x":1568641080000,"y":0.06},{"x":1568641140000,"y":0.14},{"x":1568641200000,"y":0.1},{"x":1568641260000,"y":0.18},{"x":1568641320000,"y":0.06},{"x":1568641380000,"y":0.07},{"x":1568641440000,"y":0.05},{"x":1568641500000,"y":0.12},{"x":1568641560000,"y":0.21},{"x":1568641620000,"y":0.07},{"x":1568641680000,"y":0.08},{"x":1568641740000,"y":0.06},{"x":1568641800000,"y":0.17},{"x":1568641860000,"y":0.21},{"x":1568641920000,"y":0.05},{"x":1568641980000,"y":0.05},{"x":1568642040000,"y":0.07},{"x":1568642100000,"y":0.14},{"x":1568642160000,"y":0.2},{"x":1568642220000,"y":0.04},{"x":1568642280000,"y":0.07},{"x":1568642340000,"y":0.07},{"x":1568642400000,"y":0.15},{"x":1568642460000,"y":0.07},{"x":1568642520000,"y":0.19},{"x":1568642580000,"y":0.07},{"x":1568642640000,"y":0.07},{"x":1568642700000,"y":0.15},{"x":1568642760000,"y":0.05},{"x":1568642820000,"y":0.18},{"x":1568642880000,"y":0.06},{"x":1568642940000,"y":0.15},{"x":1568643000000,"y":0.14},{"x":1568643060000,"y":0.09},{"x":1568643120000,"y":0.25},{"x":1568643180000,"y":0.09},{"x":1568643240000,"y":0.07},{"x":1568643300000,"y":0.11},{"x":1568643360000,"y":0.1},{"x":1568643420000,"y":0.19},{"x":1568643480000,"y":0.05},{"x":1568643540000,"y":0.07},{"x":1568643600000,"y":0.09},{"x":1568643660000,"y":0.06},{"x":1568643720000,"y":0.17},{"x":1568643780000,"y":0.07},{"x":1568643840000,"y":0.04},{"x":1568643900000,"y":0.12},{"x":1568643960000,"y":0.06},{"x":1568644020000,"y":0.19},{"x":1568644080000,"y":0.09},{"x":1568644140000,"y":0.07},{"x":1568644200000,"y":0.16},{"x":1568644260000,"y":0.1},{"x":1568644320000,"y":0.19},{"x":1568644380000,"y":0.06},{"x":1568644440000,"y":0.07},{"x":1568644500000,"y":0.16},{"x":1568644560000,"y":0.05},{"x":1568644620000,"y":0.05},{"x":1568644680000,"y":0.19},{"x":1568644740000,"y":0.28},{"x":1568644800000,"y":0.21},{"x":1568644860000,"y":0.08},{"x":1568644920000,"y":0.09},{"x":1568644980000,"y":0.2},{"x":1568645040000,"y":0.12},{"x":1568645100000,"y":0.16},{"x":1568645160000,"y":0.07},{"x":1568645220000,"y":0.07},{"x":1568645280000,"y":0.25},{"x":1568645340000,"y":0.07},{"x":1568645400000,"y":0.31},{"x":1568645460000,"y":0.06},{"x":1568645520000,"y":0.06},{"x":1568645580000,"y":0.22},{"x":1568645640000,"y":0.06},{"x":1568645700000,"y":0.1},{"x":1568645760000,"y":0.06},{"x":1568645820000,"y":0.1},{"x":1568645880000,"y":0.19},{"x":1568645940000,"y":0.07},{"x":1568646000000,"y":0.18},{"x":1568646060000,"y":0.06},{"x":1568646120000,"y":0.05},{"x":1568646180000,"y":0.23},{"x":1568646240000,"y":0.07},{"x":1568646300000,"y":0.15},{"x":1568646360000,"y":0.07},{"x":1568646420000,"y":0.07},{"x":1568646480000,"y":0.18},{"x":1568646540000,"y":0.13},{"x":1568646600000,"y":0.15},{"x":1568646660000,"y":1.14},{"x":1568646720000,"y":0.08},{"x":1568646780000,"y":0.2},{"x":1568646840000,"y":0.07},{"x":1568646900000,"y":0.16},{"x":1568646960000,"y":0.08},{"x":1568647020000,"y":0.07},{"x":1568647080000,"y":0.06},{"x":1568647140000,"y":4.97},{"x":1568647200000,"y":0.17},{"x":1568647260000,"y":0.1},{"x":1568647320000,"y":0.12},{"x":1568647380000,"y":0.05},{"x":1568647440000,"y":0.19},{"x":1568647500000,"y":0.11},{"x":1568647560000,"y":0.06},{"x":1568647620000,"y":0.06},{"x":1568647680000,"y":0.05},{"x":1568647740000,"y":0.19},{"x":1568647800000,"y":0.19},{"x":1568647860000,"y":0.05},{"x":1568647920000,"y":0.05},{"x":1568647980000,"y":0.08},{"x":1568648040000,"y":0.23},{"x":1568648100000,"y":0.08},{"x":1568648160000,"y":0.05},{"x":1568648220000,"y":0.05},{"x":1568648280000,"y":0.05},{"x":1568648340000,"y":0.25},{"x":1568648400000,"y":0.11},{"x":1568648460000,"y":0.04},{"x":1568648520000,"y":0.05},{"x":1568648580000,"y":0.09},{"x":1568648640000,"y":0.2},{"x":1568648700000,"y":0.09},{"x":1568648760000,"y":0.09},{"x":1568648820000,"y":0.09},{"x":1568648880000,"y":0.1},{"x":1568648940000,"y":0.18},{"x":1568649000000,"y":0.09},{"x":1568649060000,"y":0.07},{"x":1568649120000,"y":0.03},{"x":1568649180000,"y":0.08},{"x":1568649240000,"y":0.18},{"x":1568649300000,"y":0.14},{"x":1568649360000,"y":0.05},{"x":1568649420000,"y":0.11},{"x":1568649480000,"y":0.06},{"x":1568649540000,"y":0.06},{"x":1568649600000,"y":0.31},{"x":1568649660000,"y":0.09},{"x":1568649720000,"y":0.06},{"x":1568649780000,"y":0.07},{"x":1568649840000,"y":0.09},{"x":1568649900000,"y":0.27},{"x":1568649960000,"y":0.11},{"x":1568650020000,"y":0.11},{"x":1568650080000,"y":0.11},{"x":1568650140000,"y":0.11},{"x":1568650200000,"y":0.35},{"x":1568650260000,"y":1.27},{"x":1568650320000,"y":0.08},{"x":1568650380000,"y":0.07},{"x":1568650440000,"y":0.12},{"x":1568650500000,"y":0.33},{"x":1568650560000,"y":0.11},{"x":1568650620000,"y":0.07},{"x":1568650680000,"y":0.06},{"x":1568650740000,"y":0.18},{"x":1568650800000,"y":0.39},{"x":1568650860000,"y":0.06},{"x":1568650920000,"y":0.03},{"x":1568650980000,"y":0.05},{"x":1568651040000,"y":0.05},{"x":1568651100000,"y":0.25},{"x":1568651160000,"y":0.08},{"x":1568651220000,"y":0.09},{"x":1568651280000,"y":0.13},{"x":1568651340000,"y":0.05},{"x":1568651400000,"y":0.36},{"x":1568651460000,"y":0.08},{"x":1568651520000,"y":0.12},{"x":1568651580000,"y":0.18},{"x":1568651640000,"y":0.15},{"x":1568651700000,"y":0.3},{"x":1568651760000,"y":0.08},{"x":1568651820000,"y":0.08},{"x":1568651880000,"y":0.12},{"x":1568651940000,"y":0.14},{"x":1568652000000,"y":0.17},{"x":1568652060000,"y":0.21},{"x":1568652120000,"y":0.07},{"x":1568652180000,"y":0.12},{"x":1568652240000,"y":0.12},{"x":1568652300000,"y":0.27},{"x":1568652360000,"y":0.37},{"x":1568652420000,"y":0.16},{"x":1568652480000,"y":0.21},{"x":1568652540000,"y":0.17},{"x":1568652600000,"y":0.27},{"x":1568652660000,"y":3.95},{"x":1568652720000,"y":0.18},{"x":1568652780000,"y":0.13},{"x":1568652840000,"y":0.16},{"x":1568652900000,"y":0.24},{"x":1568652960000,"y":0.3},{"x":1568653020000,"y":0.17},{"x":1568653080000,"y":0.15},{"x":1568653140000,"y":0.14},{"x":1568653200000,"y":0.22},{"x":1568653260000,"y":0.29},{"x":1568653320000,"y":0.15},{"x":1568653380000,"y":0.15},{"x":1568653440000,"y":0.17},{"x":1568653500000,"y":0.18},{"x":1568653560000,"y":0.27},{"x":1568653620000,"y":0.17},{"x":1568653680000,"y":0.15},{"x":1568653740000,"y":0.21},{"x":1568653800000,"y":0.21},{"x":1568653860000,"y":0.3},{"x":1568653920000,"y":0.51},{"x":1568653980000,"y":0.17},{"x":1568654040000,"y":0.19},{"x":1568654100000,"y":0.22},{"x":1568654160000,"y":0.3},{"x":1568654220000,"y":0.17},{"x":1568654280000,"y":0.15},{"x":1568654340000,"y":0.15},{"x":1568654400000,"y":0.18},{"x":1568654460000,"y":0.16},{"x":1568654520000,"y":0.31},{"x":1568654580000,"y":0.15},{"x":1568654640000,"y":0.14},{"x":1568654700000,"y":0.2},{"x":1568654760000,"y":0.17},{"x":1568654820000,"y":0.33},{"x":1568654880000,"y":0.13},{"x":1568654940000,"y":0.17},{"x":1568655000000,"y":0.22},{"x":1568655060000,"y":0.13},{"x":1568655120000,"y":0.28},{"x":1568655180000,"y":0.15},{"x":1568655240000,"y":0.15},{"x":1568655300000,"y":0.22},{"x":1568655360000,"y":0.2},{"x":1568655420000,"y":0.28},{"x":1568655480000,"y":0.15},{"x":1568655540000,"y":0.26},{"x":1568655600000,"y":0.21},{"x":1568655660000,"y":0.16},{"x":1568655720000,"y":0.28},{"x":1568655780000,"y":0.15},{"x":1568655840000,"y":0.13},{"x":1568655900000,"y":0.22},{"x":1568655960000,"y":0.2},{"x":1568656020000,"y":0.28},{"x":1568656080000,"y":0.15},{"x":1568656140000,"y":0.17},{"x":1568656200000,"y":0.25},{"x":1568656260000,"y":0.16},{"x":1568656320000,"y":0.33},{"x":1568656380000,"y":0.14},{"x":1568656440000,"y":0.15},{"x":1568656500000,"y":0.24},{"x":1568656560000,"y":0.15},{"x":1568656620000,"y":0.3},{"x":1568656680000,"y":0.18},{"x":1568656740000,"y":0.18},{"x":1568656800000,"y":0.2},{"x":1568656860000,"y":0.18},{"x":1568656920000,"y":0.19},{"x":1568656980000,"y":0.34},{"x":1568657040000,"y":0.15},{"x":1568657100000,"y":0.2},{"x":1568657160000,"y":0.18},{"x":1568657220000,"y":0.2},{"x":1568657280000,"y":0.29},{"x":1568657340000,"y":0.24},{"x":1568657400000,"y":0.19},{"x":1568657460000,"y":0.17},{"x":1568657520000,"y":0.16},{"x":1568657580000,"y":0.33},{"x":1568657640000,"y":0.17},{"x":1568657700000,"y":0.2},{"x":1568657760000,"y":0.15},{"x":1568657820000,"y":0.18},{"x":1568657880000,"y":0.3},{"x":1568657940000,"y":0.17},{"x":1568658000000,"y":0.2},{"x":1568658060000,"y":0.23},{"x":1568658120000,"y":0.15},{"x":1568658180000,"y":0.26},{"x":1568658240000,"y":0.18},{"x":1568658300000,"y":0.26},{"x":1568658360000,"y":0.16},{"x":1568658420000,"y":0.16},{"x":1568658480000,"y":0.31},{"x":1568658540000,"y":0.15},{"x":1568658600000,"y":3.11},{"x":1568658660000,"y":2.68},{"x":1568658720000,"y":0.17},{"x":1568658780000,"y":0.31},{"x":1568658840000,"y":0.18},{"x":1568658900000,"y":0.25},{"x":1568658960000,"y":0.16},{"x":1568659020000,"y":0.15},{"x":1568659080000,"y":0.29},{"x":1568659140000,"y":0.32},{"x":1568659200000,"y":0.29},{"x":1568659260000,"y":0.22},{"x":1568659320000,"y":0.16},{"x":1568659380000,"y":0.17},{"x":1568659440000,"y":0.32},{"x":1568659500000,"y":0.21},{"x":1568659560000,"y":0.17},{"x":1568659620000,"y":0.17},{"x":1568659680000,"y":0.16},{"x":1568659740000,"y":0.27},{"x":1568659800000,"y":0.22},{"x":1568659860000,"y":0.19},{"x":1568659920000,"y":0.17},{"x":1568659980000,"y":0.19},{"x":1568660040000,"y":0.32},{"x":1568660100000,"y":0.22},{"x":1568660160000,"y":0.16},{"x":1568660220000,"y":0.14},{"x":1568660280000,"y":0.16},{"x":1568660340000,"y":0.26},{"x":1568660400000,"y":0.21},{"x":1568660460000,"y":0.17},{"x":1568660520000,"y":0.17},{"x":1568660580000,"y":0.15},{"x":1568660640000,"y":0.3},{"x":1568660700000,"y":0.23},{"x":1568660760000,"y":0.15},{"x":1568660820000,"y":0.16},{"x":1568660880000,"y":0.17},{"x":1568660940000,"y":0.39},{"x":1568661000000,"y":0.25},{"x":1568661060000,"y":0.16},{"x":1568661120000,"y":0.16},{"x":1568661180000,"y":0.15},{"x":1568661240000,"y":0.14},{"x":1568661300000,"y":0.35},{"x":1568661360000,"y":0.17},{"x":1568661420000,"y":0.15},{"x":1568661480000,"y":0.17},{"x":1568661540000,"y":0.15},{"x":1568661600000,"y":0.39},{"x":1568661660000,"y":0.16},{"x":1568661720000,"y":0.15},{"x":1568661780000,"y":0.14},{"x":1568661840000,"y":0.12},{"x":1568661900000,"y":0.34},{"x":1568661960000,"y":0.1},{"x":1568662020000,"y":0.09},{"x":1568662080000,"y":0.09},{"x":1568662140000,"y":0.08},{"x":1568662200000,"y":0.23},{"x":1568662260000,"y":0.05},{"x":1568662320000,"y":0.05},{"x":1568662380000,"y":0.07},{"x":1568662440000,"y":0.07},{"x":1568662500000,"y":0.27},{"x":1568662560000,"y":0.09},{"x":1568662620000,"y":0.05},{"x":1568662680000,"y":0.05},{"x":1568662740000,"y":0.13},{"x":1568662800000,"y":0.28},{"x":1568662860000,"y":0.05},{"x":1568662920000,"y":0.07},{"x":1568662980000,"y":0.06},{"x":1568663040000,"y":0.07},{"x":1568663100000,"y":0.22},{"x":1568663160000,"y":0.13},{"x":1568663220000,"y":0.09},{"x":1568663280000,"y":0.07},{"x":1568663340000,"y":0.06},{"x":1568663400000,"y":0.25},{"x":1568663460000,"y":0.11},{"x":1568663520000,"y":0.07},{"x":1568663580000,"y":0.07},{"x":1568663640000,"y":0.06},{"x":1568663700000,"y":0.11},{"x":1568663760000,"y":0.21},{"x":1568663820000,"y":0.08},{"x":1568663880000,"y":0.07},{"x":1568663940000,"y":0.07},{"x":1568664000000,"y":0.15},{"x":1568664060000,"y":0.2},{"x":1568664120000,"y":0.08},{"x":1568664180000,"y":0.2},{"x":1568664240000,"y":0.07},{"x":1568664300000,"y":0.19},{"x":1568664360000,"y":0.29},{"x":1568664420000,"y":0.08},{"x":1568664480000,"y":0.07},{"x":1568664540000,"y":0.22},{"x":1568664600000,"y":0.11},{"x":1568664660000,"y":0.19},{"x":1568664720000,"y":0.27},{"x":1568664780000,"y":0.07},{"x":1568664840000,"y":0.07},{"x":1568664900000,"y":0.24},{"x":1568664960000,"y":0.25},{"x":1568665020000,"y":0.08},{"x":1568665080000,"y":0.05},{"x":1568665140000,"y":0.07},{"x":1568665200000,"y":0.13},{"x":1568665260000,"y":0.2},{"x":1568665320000,"y":0.07},{"x":1568665380000,"y":0.07},{"x":1568665440000,"y":0.05},{"x":1568665500000,"y":0.12},{"x":1568665560000,"y":0.22},{"x":1568665620000,"y":0.09},{"x":1568665680000,"y":0.06},{"x":1568665740000,"y":0.06},{"x":1568665800000,"y":0.17},{"x":1568665860000,"y":0.06},{"x":1568665920000,"y":0.22},{"x":1568665980000,"y":0.09},{"x":1568666040000,"y":0.06},{"x":1568666100000,"y":0.19},{"x":1568666160000,"y":0.09},{"x":1568666220000,"y":0.22},{"x":1568666280000,"y":0.07},{"x":1568666340000,"y":0.19},{"x":1568666400000,"y":0.16},{"x":1568666460000,"y":0.09},{"x":1568666520000,"y":0.2},{"x":1568666580000,"y":0.06},{"x":1568666640000,"y":0.07},{"x":1568666700000,"y":0.15},{"x":1568666760000,"y":0.08},{"x":1568666820000,"y":0.24},{"x":1568666880000,"y":0.07},{"x":1568666940000,"y":0.11},{"x":1568667000000,"y":0.18},{"x":1568667060000,"y":0.07},{"x":1568667120000,"y":0.22},{"x":1568667180000,"y":0.06},{"x":1568667240000,"y":0.08},{"x":1568667300000,"y":0.16},{"x":1568667360000,"y":0.05},{"x":1568667420000,"y":0.18},{"x":1568667480000,"y":0.08},{"x":1568667540000,"y":0.07},{"x":1568667600000,"y":0.15},{"x":1568667660000,"y":0.09},{"x":1568667720000,"y":0.21},{"x":1568667780000,"y":0.06},{"x":1568667840000,"y":0.09},{"x":1568667900000,"y":0.14},{"x":1568667960000,"y":0.07},{"x":1568668020000,"y":0.21},{"x":1568668080000,"y":0.06},{"x":1568668140000,"y":0.13},{"x":1568668200000,"y":0.12},{"x":1568668260000,"y":0.06},{"x":1568668320000,"y":0.05},{"x":1568668380000,"y":0.21},{"x":1568668440000,"y":0.07},{"x":1568668500000,"y":0.21},{"x":1568668560000,"y":0.08},{"x":1568668620000,"y":0.07},{"x":1568668680000,"y":0.2},{"x":1568668740000,"y":0.08},{"x":1568668800000,"y":0.11},{"x":1568668860000,"y":0.07},{"x":1568668920000,"y":0.05},{"x":1568668980000,"y":4.91},{"x":1568669040000,"y":0.07},{"x":1568669100000,"y":0.19},{"x":1568669160000,"y":0.08},{"x":1568669220000,"y":0.09},{"x":1568669280000,"y":0.2},{"x":1568669340000,"y":0.08},{"x":1568669400000,"y":0.18},{"x":1568669460000,"y":0.05},{"x":1568669520000,"y":0.07},{"x":1568669580000,"y":0.18},{"x":1568669640000,"y":0.06},{"x":1568669700000,"y":0.17},{"x":1568669760000,"y":0.06},{"x":1568669820000,"y":0.07},{"x":1568669880000,"y":0.21},{"x":1568669940000,"y":0.13},{"x":1568670000000,"y":0.11},{"x":1568670060000,"y":0.06},{"x":1568670120000,"y":0.05},{"x":1568670180000,"y":0.21},{"x":1568670240000,"y":0.05},{"x":1568670300000,"y":0.09},{"x":1568670360000,"y":0.09},{"x":1568670420000,"y":0.05},{"x":1568670480000,"y":0.22},{"x":1568670540000,"y":0.05},{"x":1568670600000,"y":0.1},{"x":1568670660000,"y":0.07},{"x":1568670720000,"y":0.1},{"x":1568670780000,"y":0.07},{"x":1568670840000,"y":0.27},{"x":1568670900000,"y":0.12},{"x":1568670960000,"y":0.08},{"x":1568671020000,"y":0.07},{"x":1568671080000,"y":0.08},{"x":1568671140000,"y":0.19},{"x":1568671200000,"y":0.12},{"x":1568671260000,"y":0.04},{"x":1568671320000,"y":0.06},{"x":1568671380000,"y":0.06},{"x":1568671440000,"y":0.22},{"x":1568671500000,"y":0.16},{"x":1568671560000,"y":0.06},{"x":1568671620000,"y":0.09},{"x":1568671680000,"y":0.12},{"x":1568671740000,"y":0.33},{"x":1568671800000,"y":0.19},{"x":1568671860000,"y":0.05},{"x":1568671920000,"y":0.07},{"x":1568671980000,"y":0.32},{"x":1568672040000,"y":0.2},{"x":1568672100000,"y":0.18},{"x":1568672160000,"y":0.06},{"x":1568672220000,"y":0.05},{"x":1568672280000,"y":0.07},{"x":1568672340000,"y":0.23},{"x":1568672400000,"y":0.17},{"x":1568672460000,"y":0.04},{"x":1568672520000,"y":0.07},{"x":1568672580000,"y":0.11},{"x":1568672640000,"y":0.22},{"x":1568672700000,"y":0.14},{"x":1568672760000,"y":0.07},{"x":1568672820000,"y":0.05},{"x":1568672880000,"y":0.05},{"x":1568672940000,"y":0.22},{"x":1568673000000,"y":0.13},{"x":1568673060000,"y":0.06},{"x":1568673120000,"y":0.06},{"x":1568673180000,"y":0.06},{"x":1568673240000,"y":0.19},{"x":1568673300000,"y":0.14},{"x":1568673360000,"y":0.07},{"x":1568673420000,"y":0.44},{"x":1568673480000,"y":0.07},{"x":1568673540000,"y":0.11},{"x":1568673600000,"y":0.31},{"x":1568673660000,"y":0.08},{"x":1568673720000,"y":0.07},{"x":1568673780000,"y":0.06},{"x":1568673840000,"y":0.1},{"x":1568673900000,"y":0.26},{"x":1568673960000,"y":0.07},{"x":1568674020000,"y":0.05},{"x":1568674080000,"y":0.09},{"x":1568674140000,"y":0.09},{"x":1568674200000,"y":0.25},{"x":1568674260000,"y":0.07},{"x":1568674320000,"y":0.08},{"x":1568674380000,"y":0.05},{"x":1568674440000,"y":0.06},{"x":1568674500000,"y":0.24},{"x":1568674560000,"y":0.07},{"x":1568674620000,"y":0.05},{"x":1568674680000,"y":0.05},{"x":1568674740000,"y":0.06},{"x":1568674800000,"y":0.33},{"x":1568674860000,"y":0.05},{"x":1568674920000,"y":0.09},{"x":1568674980000,"y":0.06},{"x":1568675040000,"y":0.06},{"x":1568675100000,"y":0.27},{"x":1568675160000,"y":0.08},{"x":1568675220000,"y":0.08},{"x":1568675280000,"y":0.06},{"x":1568675340000,"y":0.13},{"x":1568675400000,"y":0.24},{"x":1568675460000,"y":0.08},{"x":1568675520000,"y":0.07},{"x":1568675580000,"y":0.09},{"x":1568675640000,"y":0.1},{"x":1568675700000,"y":0.14},{"x":1568675760000,"y":0.2},{"x":1568675820000,"y":0.07},{"x":1568675880000,"y":0.06},{"x":1568675940000,"y":0.08},{"x":1568676000000,"y":0.15},{"x":1568676060000,"y":0.21},{"x":1568676120000,"y":0.07},{"x":1568676180000,"y":0.06},{"x":1568676240000,"y":0.07},{"x":1568676300000,"y":0.12},{"x":1568676360000,"y":0.22},{"x":1568676420000,"y":0.07},{"x":1568676480000,"y":0.07},{"x":1568676540000,"y":0.08},{"x":1568676600000,"y":0.54},{"x":1568676660000,"y":0.2},{"x":1568676720000,"y":0.06},{"x":1568676780000,"y":0.06},{"x":1568676840000,"y":0.06},{"x":1568676900000,"y":0.12},{"x":1568676960000,"y":0.2},{"x":1568677020000,"y":0.43},{"x":1568677080000,"y":0.06},{"x":1568677140000,"y":0.13},{"x":1568677200000,"y":0.1},{"x":1568677260000,"y":0.2},{"x":1568677320000,"y":0.06},{"x":1568677380000,"y":0.08},{"x":1568677440000,"y":0.06},{"x":1568677500000,"y":0.15},{"x":1568677560000,"y":0.24},{"x":1568677620000,"y":0.1},{"x":1568677680000,"y":0.07},{"x":1568677740000,"y":0.07},{"x":1568677800000,"y":0.15},{"x":1568677860000,"y":0.1},{"x":1568677920000,"y":0.22},{"x":1568677980000,"y":0.16},{"x":1568678040000,"y":0.08},{"x":1568678100000,"y":0.19},{"x":1568678160000,"y":0.04},{"x":1568678220000,"y":0.2},{"x":1568678280000,"y":0.06},{"x":1568678340000,"y":0.08},{"x":1568678400000,"y":0.16},{"x":1568678460000,"y":0.06},{"x":1568678520000,"y":0.2},{"x":1568678580000,"y":0.07},{"x":1568678640000,"y":0.05},{"x":1568678700000,"y":0.13},{"x":1568678760000,"y":0.07},{"x":1568678820000,"y":0.22},{"x":1568678880000,"y":0.06},{"x":1568678940000,"y":0.14},{"x":1568679000000,"y":0.11},{"x":1568679060000,"y":0.07},{"x":1568679120000,"y":0.22},{"x":1568679180000,"y":0.54},{"x":1568679240000,"y":0.07},{"x":1568679300000,"y":0.14},{"x":1568679360000,"y":0.05},{"x":1568679420000,"y":0.19},{"x":1568679480000,"y":0.07},{"x":1568679540000,"y":0.05},{"x":1568679600000,"y":0.15},{"x":1568679660000,"y":0.07},{"x":1568679720000,"y":0.23},{"x":1568679780000,"y":0.08},{"x":1568679840000,"y":0.05},{"x":1568679900000,"y":0.17},{"x":1568679960000,"y":0.09},{"x":1568680020000,"y":0.09},{"x":1568680080000,"y":0.23},{"x":1568680140000,"y":0.08},{"x":1568680200000,"y":0.15},{"x":1568680260000,"y":0.06},{"x":1568680320000,"y":0.07},{"x":1568680380000,"y":0.19},{"x":1568680440000,"y":0.07},{"x":1568680500000,"y":0.15},{"x":1568680560000,"y":0.07},{"x":1568680620000,"y":0.09},{"x":1568680680000,"y":0.21},{"x":1568680740000,"y":0.13},{"x":1568680800000,"y":0.15},{"x":1568680860000,"y":0.09},{"x":1568680920000,"y":0.1},{"x":1568680980000,"y":0.2},{"x":1568681040000,"y":0.06},{"x":1568681100000,"y":0.12},{"x":1568681160000,"y":0.06},{"x":1568681220000,"y":0.11},{"x":1568681280000,"y":0.21},{"x":1568681340000,"y":0.1},{"x":1568681400000,"y":0.15},{"x":1568681460000,"y":0.08},{"x":1568681520000,"y":0.1},{"x":1568681580000,"y":0.22},{"x":1568681640000,"y":0.09},{"x":1568681700000,"y":0.13},{"x":1568681760000,"y":0.1},{"x":1568681820000,"y":0.07},{"x":1568681880000,"y":0.24},{"x":1568681940000,"y":0.06},{"x":1568682000000,"y":0.24},{"x":1568682060000,"y":0.08},{"x":1568682120000,"y":0.07},{"x":1568682180000,"y":0.05},{"x":1568682240000,"y":0.21},{"x":1568682300000,"y":0.16},{"x":1568682360000,"y":0.07},{"x":1568682420000,"y":0.09},{"x":1568682480000,"y":0.08},{"x":1568682540000,"y":0.35},{"x":1568682600000,"y":0.17},{"x":1568682660000,"y":0.09},{"x":1568682720000,"y":0.08},{"x":1568682780000,"y":0.07},{"x":1568682840000,"y":0.22},{"x":1568682900000,"y":0.14},{"x":1568682960000,"y":0.08},{"x":1568683020000,"y":0.08},{"x":1568683080000,"y":0.06},{"x":1568683140000,"y":0.22},{"x":1568683200000,"y":0.23},{"x":1568683260000,"y":0.1},{"x":1568683320000,"y":0.08},{"x":1568683380000,"y":0.07},{"x":1568683440000,"y":0.23},{"x":1568683500000,"y":0.14},{"x":1568683560000,"y":0.1},{"x":1568683620000,"y":0.09},{"x":1568683680000,"y":0.09},{"x":1568683740000,"y":0.25},{"x":1568683800000,"y":0.15},{"x":1568683860000,"y":0.1},{"x":1568683920000,"y":0.06},{"x":1568683980000,"y":0.11},{"x":1568684040000,"y":0.25},{"x":1568684100000,"y":0.12},{"x":1568684160000,"y":0.11},{"x":1568684220000,"y":0.15},{"x":1568684280000,"y":0.11},{"x":1568684340000,"y":0.35},{"x":1568684400000,"y":0.18},{"x":1568684460000,"y":0.1},{"x":1568684520000,"y":0.13},{"x":1568684580000,"y":0.15},{"x":1568684640000,"y":0.15},{"x":1568684700000,"y":0.33},{"x":1568684760000,"y":0.15},{"x":1568684820000,"y":0.1},{"x":1568684880000,"y":0.06},{"x":1568684940000,"y":0.1},{"x":1568685000000,"y":0.26},{"x":1568685060000,"y":0.1},{"x":1568685120000,"y":0.12},{"x":1568685180000,"y":0.29},{"x":1568685240000,"y":0.15},{"x":1568685300000,"y":0.33},{"x":1568685360000,"y":0.11},{"x":1568685420000,"y":0.1},{"x":1568685480000,"y":0.15},{"x":1568685540000,"y":0.16},{"x":1568685600000,"y":0.43},{"x":1568685660000,"y":0.11},{"x":1568685720000,"y":0.14},{"x":1568685780000,"y":0.12},{"x":1568685840000,"y":0.12},{"x":1568685900000,"y":0.32},{"x":1568685960000,"y":0.14},{"x":1568686020000,"y":0.14},{"x":1568686080000,"y":0.19},{"x":1568686140000,"y":0.23},{"x":1568686200000,"y":0.4},{"x":1568686260000,"y":0.15},{"x":1568686320000,"y":0.15},{"x":1568686380000,"y":0.31},{"x":1568686440000,"y":0.17},{"x":1568686500000,"y":0.37},{"x":1568686560000,"y":0.14},{"x":1568686620000,"y":0.18},{"x":1568686680000,"y":0.15},{"x":1568686740000,"y":0.17},{"x":1568686800000,"y":0.21},{"x":1568686860000,"y":0.32},{"x":1568686920000,"y":0.16},{"x":1568686980000,"y":0.15},{"x":1568687040000,"y":0.15},{"x":1568687100000,"y":0.21},{"x":1568687160000,"y":0.32},{"x":1568687220000,"y":0.15},{"x":1568687280000,"y":0.17},{"x":1568687340000,"y":0.15},{"x":1568687400000,"y":0.25},{"x":1568687460000,"y":0.31},{"x":1568687520000,"y":0.13},{"x":1568687580000,"y":0.16},{"x":1568687640000,"y":0.23},{"x":1568687700000,"y":0.27},{"x":1568687760000,"y":0.31},{"x":1568687820000,"y":0.15},{"x":1568687880000,"y":0.15},{"x":1568687940000,"y":0.27},{"x":1568688000000,"y":0.25},{"x":1568688060000,"y":0.31},{"x":1568688120000,"y":0.16},{"x":1568688180000,"y":0.14},{"x":1568688240000,"y":0.15},{"x":1568688300000,"y":0.24},{"x":1568688360000,"y":0.33},{"x":1568688420000,"y":0.2},{"x":1568688480000,"y":0.15},{"x":1568688540000,"y":0.17},{"x":1568688600000,"y":0.24},{"x":1568688660000,"y":0.29},{"x":1568688720000,"y":0.18},{"x":1568688780000,"y":0.15},{"x":1568688840000,"y":1.13},{"x":1568688900000,"y":0.25},{"x":1568688960000,"y":0.16},{"x":1568689020000,"y":0.32},{"x":1568689080000,"y":0.14},{"x":1568689140000,"y":0.15},{"x":1568689200000,"y":0.28},{"x":1568689260000,"y":0.15},{"x":1568689320000,"y":0.3},{"x":1568689380000,"y":0.17},{"x":1568689440000,"y":0.15},{"x":1568689500000,"y":0.25},{"x":1568689560000,"y":0.17},{"x":1568689620000,"y":0.34},{"x":1568689680000,"y":0.16},{"x":1568689740000,"y":0.3},{"x":1568689800000,"y":0.21},{"x":1568689860000,"y":0.15},{"x":1568689920000,"y":0.28},{"x":1568689980000,"y":0.15},{"x":1568690040000,"y":0.15},{"x":1568690100000,"y":0.24},{"x":1568690160000,"y":0.2},{"x":1568690220000,"y":0.35},{"x":1568690280000,"y":0.17},{"x":1568690340000,"y":0.16},{"x":1568690400000,"y":0.29},{"x":1568690460000,"y":0.15},{"x":1568690520000,"y":0.31},{"x":1568690580000,"y":0.16},{"x":1568690640000,"y":0.3},{"x":1568690700000,"y":0.2},{"x":1568690760000,"y":0.18},{"x":1568690820000,"y":5},{"x":1568690880000,"y":0.32},{"x":1568690940000,"y":0.16},{"x":1568691000000,"y":0.21},{"x":1568691060000,"y":0.15},{"x":1568691120000,"y":0.15},{"x":1568691180000,"y":0.3},{"x":1568691240000,"y":0.22},{"x":1568691300000,"y":0.23},{"x":1568691360000,"y":0.18},{"x":1568691420000,"y":0.17},{"x":1568691480000,"y":0.32},{"x":1568691540000,"y":0.22},{"x":1568691600000,"y":0.24},{"x":1568691660000,"y":0.17},{"x":1568691720000,"y":0.15},{"x":1568691780000,"y":0.33},{"x":1568691840000,"y":0.22},{"x":1568691900000,"y":0.27},{"x":1568691960000,"y":0.16},{"x":1568692020000,"y":0.19},{"x":1568692080000,"y":0.3},{"x":1568692140000,"y":0.19},{"x":1568692200000,"y":0.22},{"x":1568692260000,"y":0.18},{"x":1568692320000,"y":0.17},{"x":1568692380000,"y":0.32},{"x":1568692440000,"y":0.17},{"x":1568692500000,"y":0.25},{"x":1568692560000,"y":0.19},{"x":1568692620000,"y":0.16},{"x":1568692680000,"y":0.31},{"x":1568692740000,"y":0.16},{"x":1568692800000,"y":0.29},{"x":1568692860000,"y":0.15},{"x":1568692920000,"y":0.14},{"x":1568692980000,"y":0.35},{"x":1568693040000,"y":0.17},{"x":1568693100000,"y":0.23},{"x":1568693160000,"y":0.16},{"x":1568693220000,"y":0.15},{"x":1568693280000,"y":0.18},{"x":1568693340000,"y":0.44},{"x":1568693400000,"y":0.3},{"x":1568693460000,"y":0.16},{"x":1568693520000,"y":0.15},{"x":1568693580000,"y":0.15},{"x":1568693640000,"y":0.38},{"x":1568693700000,"y":0.22},{"x":1568693760000,"y":0.17},{"x":1568693820000,"y":0.22},{"x":1568693880000,"y":0.15},{"x":1568693940000,"y":0.32},{"x":1568694000000,"y":0.34},{"x":1568694060000,"y":6.11},{"x":1568694120000,"y":1.27},{"x":1568694180000,"y":0.17},{"x":1568694240000,"y":0.32},{"x":1568694300000,"y":0.26},{"x":1568694360000,"y":0.17},{"x":1568694420000,"y":0.17},{"x":1568694480000,"y":0.17},{"x":1568694540000,"y":0.32},{"x":1568694600000,"y":0.27},{"x":1568694660000,"y":0.16},{"x":1568694720000,"y":0.17},{"x":1568694780000,"y":0.2},{"x":1568694840000,"y":0.39},{"x":1568694900000,"y":0.26},{"x":1568694960000,"y":0.16},{"x":1568695020000,"y":0.18},{"x":1568695080000,"y":0.16},{"x":1568695140000,"y":0.43},{"x":1568695200000,"y":0.3},{"x":1568695260000,"y":0.12},{"x":1568695320000,"y":0.1},{"x":1568695380000,"y":0.14},{"x":1568695440000,"y":0.31},{"x":1568695500000,"y":0.19},{"x":1568695560000,"y":3.99},{"x":1568695620000,"y":11.24},{"x":1568695680000,"y":4.36},{"x":1568695740000,"y":10.94},{"x":1568695800000,"y":18.7},{"x":1568695860000,"y":18.48},{"x":1568695920000,"y":0.29},{"x":1568695980000,"y":19.14},{"x":1568696040000,"y":0.16},{"x":1568696100000,"y":0.3},{"x":1568696160000,"y":0.27},{"x":1568696220000,"y":0.08},{"x":1568696280000,"y":18.47},{"x":1568696340000,"y":18.09},{"x":1568696400000,"y":1.06},{"x":1568696460000,"y":1.65},{"x":1568696520000,"y":20.56},{"x":1568696580000,"y":0.28},{"x":1568696640000,"y":0.1},{"x":1568696700000,"y":0.31},{"x":1568696760000,"y":21.94},{"x":1568696820000,"y":0.25},{"x":1568696880000,"y":0.09},{"x":1568696940000,"y":0.15},{"x":1568697000000,"y":0.29},{"x":1568697060000,"y":0.18},{"x":1568697120000,"y":0.09},{"x":1568697180000,"y":0.09},{"x":1568697240000,"y":0.1},{"x":1568697300000,"y":0.3},{"x":1568697360000,"y":0.09},{"x":1568697420000,"y":0.1},{"x":1568697480000,"y":0.1},{"x":1568697540000,"y":0.1},{"x":1568697600000,"y":0.35},{"x":1568697660000,"y":0.2},{"x":1568697720000,"y":0.18},{"x":1568697780000,"y":11.87},{"x":1568697840000,"y":11.14},{"x":1568697900000,"y":0.45},{"x":1568697960000,"y":0.12},{"x":1568698020000,"y":0.09},{"x":1568698080000,"y":0.09},{"x":1568698140000,"y":0.07},{"x":1568698200000,"y":0.26},{"x":1568698260000,"y":0.26},{"x":1568698320000,"y":0.11},{"x":1568698380000,"y":0.07},{"x":1568698440000,"y":0.08},{"x":1568698500000,"y":0.12},{"x":1568698560000,"y":0.24},{"x":1568698620000,"y":0.08},{"x":1568698680000,"y":0.07},{"x":1568698740000,"y":0.2},{"x":1568698800000,"y":22.72},{"x":1568698860000,"y":0.44},{"x":1568698920000,"y":0.09},{"x":1568698980000,"y":0.08},{"x":1568699040000,"y":0.08},{"x":1568699100000,"y":0.13},{"x":1568699160000,"y":0.2},{"x":1568699220000,"y":0.2},{"x":1568699280000,"y":0.29},{"x":1568699340000,"y":0.09},{"x":1568699400000,"y":0.19},{"x":1568699460000,"y":4.69},{"x":1568699520000,"y":18.02},{"x":1568699580000,"y":9.36},{"x":1568699640000,"y":13.47},{"x":1568699700000,"y":20.89},{"x":1568699760000,"y":0.36},{"x":1568699820000,"y":28.66},{"x":1568699880000,"y":17.78},{"x":1568699940000,"y":5.31},{"x":1568700000000,"y":0.22},{"x":1568700060000,"y":22.88},{"x":1568700120000,"y":0.29},{"x":1568700180000,"y":0.08},{"x":1568700240000,"y":0.07},{"x":1568700300000,"y":0.16},{"x":1568700360000,"y":0.06},{"x":1568700420000,"y":0.23},{"x":1568700480000,"y":0.08},{"x":1568700540000,"y":0.15},{"x":1568700600000,"y":0.17},{"x":1568700660000,"y":0.07},{"x":1568700720000,"y":0.21},{"x":1568700780000,"y":0.1},{"x":1568700840000,"y":0.09},{"x":1568700900000,"y":0.14},{"x":1568700960000,"y":0.08},{"x":1568701020000,"y":0.23},{"x":1568701080000,"y":0.07},{"x":1568701140000,"y":0.13},{"x":1568701200000,"y":0.14},{"x":1568701260000,"y":0.06},{"x":1568701320000,"y":0.2},{"x":1568701380000,"y":0.07},{"x":1568701440000,"y":0.1},{"x":1568701500000,"y":0.19},{"x":1568701560000,"y":0.05},{"x":1568701620000,"y":0.21},{"x":1568701680000,"y":0.08},{"x":1568701740000,"y":0.09},{"x":1568701800000,"y":0.12},{"x":1568701860000,"y":0.07},{"x":1568701920000,"y":0.21},{"x":1568701980000,"y":0.08},{"x":1568702040000,"y":0.08},{"x":1568702100000,"y":0.22},{"x":1568702160000,"y":0.06},{"x":1568702220000,"y":0.25},{"x":1568702280000,"y":0.11},{"x":1568702340000,"y":0.21},{"x":1568702400000,"y":0.17},{"x":1568702460000,"y":0.06},{"x":1568702520000,"y":0.08},{"x":1568702580000,"y":0.24},{"x":1568702640000,"y":0.07},{"x":1568702700000,"y":0.2},{"x":1568702760000,"y":0.08},{"x":1568702820000,"y":0.11},{"x":1568702880000,"y":0.2},{"x":1568702940000,"y":0.09},{"x":1568703000000,"y":0.18},{"x":1568703060000,"y":0.08},{"x":1568703120000,"y":0.07},{"x":1568703180000,"y":0.23},{"x":1568703240000,"y":0.12},{"x":1568703300000,"y":0.15},{"x":1568703360000,"y":0.07},{"x":1568703420000,"y":0.08},{"x":1568703480000,"y":0.27},{"x":1568703540000,"y":0.07},{"x":1568703600000,"y":0.12},{"x":1568703660000,"y":0.15},{"x":1568703720000,"y":0.11},{"x":1568703780000,"y":0.23},{"x":1568703840000,"y":0.1},{"x":1568703900000,"y":0.13},{"x":1568703960000,"y":0.1},{"x":1568704020000,"y":0.1},{"x":1568704080000,"y":0.22},{"x":1568704140000,"y":0.17},{"x":1568704200000,"y":0.17},{"x":1568704260000,"y":0.11},{"x":1568704320000,"y":0.09},{"x":1568704380000,"y":0.23},{"x":1568704440000,"y":0.07},{"x":1568704500000,"y":0.17},{"x":1568704560000,"y":0.07},{"x":1568704620000,"y":0.1},{"x":1568704680000,"y":0.22},{"x":1568704740000,"y":0.14},{"x":1568704800000,"y":0.15},{"x":1568704860000,"y":0.15},{"x":1568704920000,"y":0.08},{"x":1568704980000,"y":0.1},{"x":1568705040000,"y":0.25},{"x":1568705100000,"y":0.24},{"x":1568705160000,"y":0.08},{"x":1568705220000,"y":0.08},{"x":1568705280000,"y":0.1},{"x":1568705340000,"y":0.22},{"x":1568705400000,"y":0.18},{"x":1568705460000,"y":0.09},{"x":1568705520000,"y":0.09},{"x":1568705580000,"y":0.1},{"x":1568705640000,"y":0.22},{"x":1568705700000,"y":0.2},{"x":1568705760000,"y":0.11},{"x":1568705820000,"y":0.12},{"x":1568705880000,"y":0.07},{"x":1568705940000,"y":0.32},{"x":1568706000000,"y":0.13},{"x":1568706060000,"y":0.09},{"x":1568706120000,"y":0.09},{"x":1568706180000,"y":0.16},{"x":1568706240000,"y":0.28},{"x":1568706300000,"y":0.16},{"x":1568706360000,"y":0.1},{"x":1568706420000,"y":0.14},{"x":1568706480000,"y":0.07},{"x":1568706540000,"y":0.21},{"x":1568706600000,"y":0.13},{"x":1568706660000,"y":0.1},{"x":1568706720000,"y":0.1},{"x":1568706780000,"y":0.11},{"x":1568706840000,"y":0.09},{"x":1568706900000,"y":0.27},{"x":1568706960000,"y":0.08},{"x":1568707020000,"y":0.08},{"x":1568707080000,"y":0.1},{"x":1568707140000,"y":0.07},{"x":1568707200000,"y":0.52},{"x":1568707260000,"y":0.08},{"x":1568707320000,"y":0.1},{"x":1568707380000,"y":0.1},{"x":1568707440000,"y":0.09},{"x":1568707500000,"y":0.34},{"x":1568707560000,"y":0.08},{"x":1568707620000,"y":0.11},{"x":1568707680000,"y":0.1},{"x":1568707740000,"y":0.33},{"x":1568707800000,"y":0.29},{"x":1568707860000,"y":0.08},{"x":1568707920000,"y":0.08},{"x":1568707980000,"y":0.07},{"x":1568708040000,"y":0.11},{"x":1568708100000,"y":0.39},{"x":1568708160000,"y":0.07},{"x":1568708220000,"y":0.09},{"x":1568708280000,"y":0.09},{"x":1568708340000,"y":0.1},{"x":1568708400000,"y":0.3},{"x":1568708460000,"y":0.1},{"x":1568708520000,"y":0.11},{"x":1568708580000,"y":0.07},{"x":1568708640000,"y":0.1},{"x":1568708700000,"y":0.24},{"x":1568708760000,"y":0.08},{"x":1568708820000,"y":0.08},{"x":1568708880000,"y":0.09},{"x":1568708940000,"y":0.08},{"x":1568709000000,"y":0.12},{"x":1568709060000,"y":0.25},{"x":1568709120000,"y":0.07},{"x":1568709180000,"y":0.09},{"x":1568709240000,"y":0.1},{"x":1568709300000,"y":0.15},{"x":1568709360000,"y":0.26},{"x":1568709420000,"y":0.08},{"x":1568709480000,"y":0.07},{"x":1568709540000,"y":0.15},{"x":1568709600000,"y":0.14},{"x":1568709660000,"y":0.29},{"x":1568709720000,"y":0.09},{"x":1568709780000,"y":0.08},{"x":1568709840000,"y":0.08},{"x":1568709900000,"y":0.16},{"x":1568709960000,"y":0.25},{"x":1568710020000,"y":0.12},{"x":1568710080000,"y":0.09},{"x":1568710140000,"y":0.12},{"x":1568710200000,"y":0.16},{"x":1568710260000,"y":0.26},{"x":1568710320000,"y":0.11},{"x":1568710380000,"y":0.1},{"x":1568710440000,"y":0.07},{"x":1568710500000,"y":0.19},{"x":1568710560000,"y":0.21},{"x":1568710620000,"y":1.8},{"x":1568710680000,"y":0.09},{"x":1568710740000,"y":0.1},{"x":1568710800000,"y":0.19},{"x":1568710860000,"y":0.25},{"x":1568710920000,"y":0.07},{"x":1568710980000,"y":0.09},{"x":1568711040000,"y":0.09},{"x":1568711100000,"y":0.22},{"x":1568711160000,"y":0.21},{"x":1568711220000,"y":0.07},{"x":1568711280000,"y":0.11},{"x":1568711340000,"y":0.15},{"x":1568711400000,"y":0.14},{"x":1568711460000,"y":0.09},{"x":1568711520000,"y":0.25},{"x":1568711580000,"y":0.07},{"x":1568711640000,"y":0.11},{"x":1568711700000,"y":0.14},{"x":1568711760000,"y":0.08},{"x":1568711820000,"y":0.33},{"x":1568711880000,"y":0.07},{"x":1568711940000,"y":0.14},{"x":1568712000000,"y":0.13},{"x":1568712060000,"y":0.08},{"x":1568712120000,"y":0.23},{"x":1568712180000,"y":0.09},{"x":1568712240000,"y":0.07},{"x":1568712300000,"y":0.14},{"x":1568712360000,"y":0.1},{"x":1568712420000,"y":0.25},{"x":1568712480000,"y":0.08},{"x":1568712540000,"y":0.1},{"x":1568712600000,"y":0.23},{"x":1568712660000,"y":0.09},{"x":1568712720000,"y":3.67},{"x":1568712780000,"y":0.16},{"x":1568712840000,"y":0.13},{"x":1568712900000,"y":0.15},{"x":1568712960000,"y":0.08},{"x":1568713020000,"y":0.29},{"x":1568713080000,"y":0.11},{"x":1568713140000,"y":0.19},{"x":1568713200000,"y":0.13},{"x":1568713260000,"y":0.09},{"x":1568713320000,"y":0.24},{"x":1568713380000,"y":0.1},{"x":1568713440000,"y":0.08},{"x":1568713500000,"y":0.13},{"x":1568713560000,"y":0.09},{"x":1568713620000,"y":0.13},{"x":1568713680000,"y":0.31},{"x":1568713740000,"y":0.1},{"x":1568713800000,"y":0.19},{"x":1568713860000,"y":0.08},{"x":1568713920000,"y":0.1},{"x":1568713980000,"y":0.26},{"x":1568714040000,"y":0.08},{"x":1568714100000,"y":0.17},{"x":1568714160000,"y":0.11},{"x":1568714220000,"y":0.07},{"x":1568714280000,"y":0.27},{"x":1568714340000,"y":0.07},{"x":1568714400000,"y":0.13},{"x":1568714460000,"y":0.07},{"x":1568714520000,"y":0.09},{"x":1568714580000,"y":0.19},{"x":1568714640000,"y":0.08},{"x":1568714700000,"y":0.15},{"x":1568714760000,"y":0.07},{"x":1568714820000,"y":0.05},{"x":1568714880000,"y":0.24},{"x":1568714940000,"y":0.17},{"x":1568715000000,"y":0.14},{"x":1568715060000,"y":0.08},{"x":1568715120000,"y":0.08},{"x":1568715180000,"y":0.22},{"x":1568715240000,"y":0.07},{"x":1568715300000,"y":0.1},{"x":1568715360000,"y":0.07},{"x":1568715420000,"y":0.1},{"x":1568715480000,"y":0.26},{"x":1568715540000,"y":0.07},{"x":1568715600000,"y":0.18},{"x":1568715660000,"y":0.13},{"x":1568715720000,"y":0.09},{"x":1568715780000,"y":0.27},{"x":1568715840000,"y":0.13},{"x":1568715900000,"y":0.2},{"x":1568715960000,"y":0.07},{"x":1568716020000,"y":0.09},{"x":1568716080000,"y":0.08},{"x":1568716140000,"y":0.27},{"x":1568716200000,"y":0.15},{"x":1568716260000,"y":0.07},{"x":1568716320000,"y":0.1},{"x":1568716380000,"y":0.07},{"x":1568716440000,"y":0.26},{"x":1568716500000,"y":0.19},{"x":1568716560000,"y":0.05},{"x":1568716620000,"y":0.1},{"x":1568716680000,"y":0.11},{"x":1568716740000,"y":0.29},{"x":1568716800000,"y":0.22},{"x":1568716860000,"y":0.1},{"x":1568716920000,"y":0.15},{"x":1568716980000,"y":0.1},{"x":1568717040000,"y":0.23},{"x":1568717100000,"y":0.14},{"x":1568717160000,"y":0.12},{"x":1568717220000,"y":0.09},{"x":1568717280000,"y":0.11},{"x":1568717340000,"y":0.26},{"x":1568717400000,"y":0.2},{"x":1568717460000,"y":0.14},{"x":1568717520000,"y":0.15},{"x":1568717580000,"y":0.12},{"x":1568717640000,"y":0.29},{"x":1568717700000,"y":0.25},{"x":1568717760000,"y":0.15},{"x":1568717820000,"y":0.09},{"x":1568717880000,"y":0.14},{"x":1568717940000,"y":0.12},{"x":1568718000000,"y":0.41},{"x":1568718060000,"y":0.12},{"x":1568718120000,"y":0.17},{"x":1568718180000,"y":0.14},{"x":1568718240000,"y":0.15},{"x":1568718300000,"y":0.43},{"x":1568718360000,"y":0.1},{"x":1568718420000,"y":0.12},{"x":1568718480000,"y":0.15},{"x":1568718540000,"y":0.29},{"x":1568718600000,"y":0.41},{"x":1568718660000,"y":0.14},{"x":1568718720000,"y":0.16},{"x":1568718780000,"y":0.14},{"x":1568718840000,"y":0.15},{"x":1568718900000,"y":0.43},{"x":1568718960000,"y":0.14},{"x":1568719020000,"y":0.13},{"x":1568719080000,"y":0.16},{"x":1568719140000,"y":1.28},{"x":1568719200000,"y":0.44},{"x":1568719260000,"y":0.14},{"x":1568719320000,"y":0.17},{"x":1568719380000,"y":0.17},{"x":1568719440000,"y":0.16},{"x":1568719500000,"y":1.51},{"x":1568719560000,"y":0.15},{"x":1568719620000,"y":0.13},{"x":1568719680000,"y":0.67},{"x":1568719740000,"y":0.58},{"x":1568719800000,"y":0.41},{"x":1568719860000,"y":0.18},{"x":1568719920000,"y":0.14},{"x":1568719980000,"y":0.14},{"x":1568720040000,"y":0.16},{"x":1568720100000,"y":0.25},{"x":1568720160000,"y":0.28},{"x":1568720220000,"y":0.17},{"x":1568720280000,"y":0.15},{"x":1568720340000,"y":0.22},{"x":1568720400000,"y":0.2},{"x":1568720460000,"y":0.33},{"x":1568720520000,"y":0.14},{"x":1568720580000,"y":0.15},{"x":1568720640000,"y":0.17},{"x":1568720700000,"y":0.22},{"x":1568720760000,"y":0.31},{"x":1568720820000,"y":0.2},{"x":1568720880000,"y":0.17},{"x":1568720940000,"y":0.16},{"x":1568721000000,"y":0.2},{"x":1568721060000,"y":0.3},{"x":1568721120000,"y":0.18},{"x":1568721180000,"y":0.16},{"x":1568721240000,"y":0.16},{"x":1568721300000,"y":0.24},{"x":1568721360000,"y":0.31},{"x":1568721420000,"y":0.14},{"x":1568721480000,"y":0.16},{"x":1568721540000,"y":0.14},{"x":1568721600000,"y":0.23},{"x":1568721660000,"y":0.32},{"x":1568721720000,"y":0.17},{"x":1568721780000,"y":0.17},{"x":1568721840000,"y":0.13},{"x":1568721900000,"y":0.23},{"x":1568721960000,"y":0.3},{"x":1568722020000,"y":0.16},{"x":1568722080000,"y":0.16},{"x":1568722140000,"y":0.31},{"x":1568722200000,"y":0.25},{"x":1568722260000,"y":0.28},{"x":1568722320000,"y":0.17},{"x":1568722380000,"y":0.15},{"x":1568722440000,"y":0.18},{"x":1568722500000,"y":0.26},{"x":1568722560000,"y":0.32},{"x":1568722620000,"y":0.15},{"x":1568722680000,"y":0.18},{"x":1568722740000,"y":0.15},{"x":1568722800000,"y":0.29},{"x":1568722860000,"y":0.19},{"x":1568722920000,"y":0.34},{"x":1568722980000,"y":0.16},{"x":1568723040000,"y":0.16},{"x":1568723100000,"y":0.18},{"x":1568723160000,"y":0.17},{"x":1568723220000,"y":0.29},{"x":1568723280000,"y":0.15},{"x":1568723340000,"y":0.16},{"x":1568723400000,"y":0.18},{"x":1568723460000,"y":0.17},{"x":1568723520000,"y":0.3},{"x":1568723580000,"y":0.17},{"x":1568723640000,"y":0.17},{"x":1568723700000,"y":0.21},{"x":1568723760000,"y":0.17},{"x":1568723820000,"y":0.32},{"x":1568723880000,"y":0.17},{"x":1568723940000,"y":0.3},{"x":1568724000000,"y":0.23},{"x":1568724060000,"y":0.13},{"x":1568724120000,"y":0.3},{"x":1568724180000,"y":0.17},{"x":1568724240000,"y":0.18},{"x":1568724300000,"y":0.25},{"x":1568724360000,"y":0.18},{"x":1568724420000,"y":0.31},{"x":1568724480000,"y":0.15},{"x":1568724540000,"y":0.17},{"x":1568724600000,"y":0.2},{"x":1568724660000,"y":0.16},{"x":1568724720000,"y":0.31},{"x":1568724780000,"y":0.15},{"x":1568724840000,"y":0.16},{"x":1568724900000,"y":0.24},{"x":1568724960000,"y":0.19},{"x":1568725020000,"y":0.32},{"x":1568725080000,"y":0.15},{"x":1568725140000,"y":0.16},{"x":1568725200000,"y":0.27},{"x":1568725260000,"y":0.16},{"x":1568725320000,"y":0.18},{"x":1568725380000,"y":0.3},{"x":1568725440000,"y":0.17},{"x":1568725500000,"y":0.22},{"x":1568725560000,"y":0.17},{"x":1568725620000,"y":0.17},{"x":1568725680000,"y":0.32},{"x":1568725740000,"y":0.32},{"x":1568725800000,"y":0.2},{"x":1568725860000,"y":0.17},{"x":1568725920000,"y":0.14},{"x":1568725980000,"y":0.3},{"x":1568726040000,"y":0.16},{"x":1568726100000,"y":0.24},{"x":1568726160000,"y":0.17},{"x":1568726220000,"y":0.16},{"x":1568726280000,"y":0.28},{"x":1568726340000,"y":0.16},{"x":1568726400000,"y":0.68},{"x":1568726460000,"y":0.17},{"x":1568726520000,"y":0.17},{"x":1568726580000,"y":0.3},{"x":1568726640000,"y":0.15},{"x":1568726700000,"y":0.26},{"x":1568726760000,"y":0.16},{"x":1568726820000,"y":0.14},{"x":1568726880000,"y":0.29},{"x":1568726940000,"y":0.17},{"x":1568727000000,"y":0.22},{"x":1568727060000,"y":0.14},{"x":1568727120000,"y":0.15},{"x":1568727180000,"y":0.28},{"x":1568727240000,"y":0.15},{"x":1568727300000,"y":0.27},{"x":1568727360000,"y":0.17},{"x":1568727420000,"y":0.16},{"x":1568727480000,"y":0.3},{"x":1568727540000,"y":0.31},{"x":1568727600000,"y":0.21},{"x":1568727660000,"y":0.17},{"x":1568727720000,"y":0.17},{"x":1568727780000,"y":0.17},{"x":1568727840000,"y":0.3},{"x":1568727900000,"y":0.31},{"x":1568727960000,"y":0.15},{"x":1568728020000,"y":0.17},{"x":1568728080000,"y":0.18},{"x":1568728140000,"y":0.58},{"x":1568728200000,"y":0.23},{"x":1568728260000,"y":0.17},{"x":1568728320000,"y":0.15},{"x":1568728380000,"y":0.15},{"x":1568728440000,"y":0.3},{"x":1568728500000,"y":0.16},{"x":1568728560000,"y":0.12},{"x":1568728620000,"y":0.11},{"x":1568728680000,"y":0.12},{"x":1568728740000,"y":0.21},{"x":1568728800000,"y":0.13},{"x":1568728860000,"y":0.53},{"x":1568728920000,"y":0.07},{"x":1568728980000,"y":0.07},{"x":1568729040000,"y":0.2},{"x":1568729100000,"y":0.13},{"x":1568729160000,"y":0.08},{"x":1568729220000,"y":0.06},{"x":1568729280000,"y":0.06},{"x":1568729340000,"y":0.28},{"x":1568729400000,"y":0.16},{"x":1568729460000,"y":0.06},{"x":1568729520000,"y":0.07},{"x":1568729580000,"y":0.08},{"x":1568729640000,"y":0.2},{"x":1568729700000,"y":0.15},{"x":1568729760000,"y":0.06},{"x":1568729820000,"y":0.07},{"x":1568729880000,"y":0.06},{"x":1568729940000,"y":0.2},{"x":1568730000000,"y":0.18},{"x":1568730060000,"y":0.07},{"x":1568730120000,"y":0.1},{"x":1568730180000,"y":0.08},{"x":1568730240000,"y":0.19},{"x":1568730300000,"y":0.15},{"x":1568730360000,"y":0.06},{"x":1568730420000,"y":0.1},{"x":1568730480000,"y":0.08},{"x":1568730540000,"y":0.09},{"x":1568730600000,"y":0.43},{"x":1568730660000,"y":0.06},{"x":1568730720000,"y":0.08},{"x":1568730780000,"y":0.05},{"x":1568730840000,"y":0.07},{"x":1568730900000,"y":0.28},{"x":1568730960000,"y":0.08},{"x":1568731020000,"y":0.05},{"x":1568731080000,"y":0.06},{"x":1568731140000,"y":0.2},{"x":1568731200000,"y":0.26},{"x":1568731260000,"y":0.07},{"x":1568731320000,"y":0.05},{"x":1568731380000,"y":0.06},{"x":1568731440000,"y":0.08},{"x":1568731500000,"y":0.37},{"x":1568731560000,"y":0.08},{"x":1568731620000,"y":0.09},{"x":1568731680000,"y":0.07},{"x":1568731740000,"y":0.06},{"x":1568731800000,"y":0.27},{"x":1568731860000,"y":0.06},{"x":1568731920000,"y":0.07},{"x":1568731980000,"y":0.06},{"x":1568732040000,"y":0.09},{"x":1568732100000,"y":0.22},{"x":1568732160000,"y":0.06},{"x":1568732220000,"y":0.09},{"x":1568732280000,"y":0.09},{"x":1568732340000,"y":0.08},{"x":1568732400000,"y":0.32},{"x":1568732460000,"y":1.34},{"x":1568732520000,"y":0.07},{"x":1568732580000,"y":0.07},{"x":1568732640000,"y":0.07},{"x":1568732700000,"y":0.12},{"x":1568732760000,"y":0.21},{"x":1568732820000,"y":0.09},{"x":1568732880000,"y":0.08},{"x":1568732940000,"y":0.13},{"x":1568733000000,"y":0.13},{"x":1568733060000,"y":0.2},{"x":1568733120000,"y":0.06},{"x":1568733180000,"y":0.05},{"x":1568733240000,"y":0.05},{"x":1568733300000,"y":0.11},{"x":1568733360000,"y":0.22},{"x":1568733420000,"y":0.06},{"x":1568733480000,"y":0.1},{"x":1568733540000,"y":0.08},{"x":1568733600000,"y":0.12},{"x":1568733660000,"y":0.23},{"x":1568733720000,"y":0.08},{"x":1568733780000,"y":0.07},{"x":1568733840000,"y":0.07},{"x":1568733900000,"y":0.2},{"x":1568733960000,"y":0.22},{"x":1568734020000,"y":0.07},{"x":1568734080000,"y":0.05},{"x":1568734140000,"y":0.08},{"x":1568734200000,"y":0.11},{"x":1568734260000,"y":0.19},{"x":1568734320000,"y":0.06},{"x":1568734380000,"y":0.09},{"x":1568734440000,"y":0.08},{"x":1568734500000,"y":0.16},{"x":1568734560000,"y":5.01},{"x":1568734620000,"y":0.19},{"x":1568734680000,"y":0.09},{"x":1568734740000,"y":0.11},{"x":1568734800000,"y":0.18},{"x":1568734860000,"y":0.24},{"x":1568734920000,"y":0.1},{"x":1568734980000,"y":0.09},{"x":1568735040000,"y":0.08},{"x":1568735100000,"y":0.15},{"x":1568735160000,"y":0.07},{"x":1568735220000,"y":0.22},{"x":1568735280000,"y":0.07},{"x":1568735340000,"y":0.06},{"x":1568735400000,"y":0.13},{"x":1568735460000,"y":0.13},{"x":1568735520000,"y":0.21},{"x":1568735580000,"y":0.05},{"x":1568735640000,"y":0.06},{"x":1568735700000,"y":0.15},{"x":1568735760000,"y":0.07},{"x":1568735820000,"y":0.2},{"x":1568735880000,"y":0.05},{"x":1568735940000,"y":0.07},{"x":1568736000000,"y":0.12},{"x":1568736060000,"y":0.07},{"x":1568736120000,"y":0.19},{"x":1568736180000,"y":0.05},{"x":1568736240000,"y":0.17},{"x":1568736300000,"y":0.2},{"x":1568736360000,"y":0.33},{"x":1568736420000,"y":0.19},{"x":1568736480000,"y":0.08},{"x":1568736540000,"y":0.12},{"x":1568736600000,"y":0.1},{"x":1568736660000,"y":0.05},{"x":1568736720000,"y":0.2},{"x":1568736780000,"y":0.07},{"x":1568736840000,"y":0.05},{"x":1568736900000,"y":0.14},{"x":1568736960000,"y":0.05},{"x":1568737020000,"y":0.18},{"x":1568737080000,"y":0.07},{"x":1568737140000,"y":0.05},{"x":1568737200000,"y":0.14},{"x":1568737260000,"y":0.14},{"x":1568737320000,"y":0.69},{"x":1568737380000,"y":1.53},{"x":1568737440000,"y":0.21},{"x":1568737500000,"y":0.28},{"x":1568737560000,"y":0.42},{"x":1568737620000,"y":0.12},{"x":1568737680000,"y":0.22},{"x":1568737740000,"y":0.08},{"x":1568737800000,"y":0.19},{"x":1568737860000,"y":0.06},{"x":1568737920000,"y":0.05},{"x":1568737980000,"y":0.2},{"x":1568738040000,"y":0.08},{"x":1568738100000,"y":0.18},{"x":1568738160000,"y":0.05},{"x":1568738220000,"y":0.07},{"x":1568738280000,"y":0.2},{"x":1568738340000,"y":0.14},{"x":1568738400000,"y":0.11},{"x":1568738460000,"y":0.05},{"x":1568738520000,"y":0.08},{"x":1568738580000,"y":0.19},{"x":1568738640000,"y":0.06},{"x":1568738700000,"y":0.1},{"x":1568738760000,"y":0.1},{"x":1568738820000,"y":0.1},{"x":1568738880000,"y":0.21},{"x":1568738940000,"y":0.06},{"x":1568739000000,"y":0.09},{"x":1568739060000,"y":0.05},{"x":1568739120000,"y":0.06},{"x":1568739180000,"y":0.2},{"x":1568739240000,"y":0.05},{"x":1568739300000,"y":0.12},{"x":1568739360000,"y":0.04},{"x":1568739420000,"y":0.06},{"x":1568739480000,"y":0.2},{"x":1568739540000,"y":0.06},{"x":1568739600000,"y":0.17},{"x":1568739660000,"y":0.05},{"x":1568739720000,"y":0.07},{"x":1568739780000,"y":0.18},{"x":1568739840000,"y":0.05},{"x":1568739900000,"y":0.11},{"x":1568739960000,"y":0.06},{"x":1568740020000,"y":0.06},{"x":1568740080000,"y":0.21},{"x":1568740140000,"y":0.12},{"x":1568740200000,"y":0.12},{"x":1568740260000,"y":0.06},{"x":1568740320000,"y":0.05},{"x":1568740380000,"y":0.06},{"x":1568740440000,"y":0.2},{"x":1568740500000,"y":0.15},{"x":1568740560000,"y":0.05},{"x":1568740620000,"y":0.05},{"x":1568740680000,"y":0.08},{"x":1568740740000,"y":0.22},{"x":1568740800000,"y":0.14},{"x":1568740860000,"y":0.05},{"x":1568740920000,"y":0.05},{"x":1568740980000,"y":0.06},{"x":1568741040000,"y":0.21},{"x":1568741100000,"y":0.12},{"x":1568741160000,"y":0.08},{"x":1568741220000,"y":0.07},{"x":1568741280000,"y":0.07},{"x":1568741340000,"y":0.19},{"x":1568741400000,"y":0.11},{"x":1568741460000,"y":0.06},{"x":1568741520000,"y":0.05},{"x":1568741580000,"y":0.06},{"x":1568741640000,"y":0.2},{"x":1568741700000,"y":0.11},{"x":1568741760000,"y":0.05},{"x":1568741820000,"y":0.09},{"x":1568741880000,"y":0.06},{"x":1568741940000,"y":0.25},{"x":1568742000000,"y":0.1},{"x":1568742060000,"y":0.06},{"x":1568742120000,"y":0.05},{"x":1568742180000,"y":0.07},{"x":1568742240000,"y":0.05},{"x":1568742300000,"y":0.25},{"x":1568742360000,"y":0.08},{"x":1568742420000,"y":0.08},{"x":1568742480000,"y":0.08},{"x":1568742540000,"y":0.05},{"x":1568742600000,"y":0.3},{"x":1568742660000,"y":0.06},{"x":1568742720000,"y":0.07},{"x":1568742780000,"y":0.08},{"x":1568742840000,"y":0.1},{"x":1568742900000,"y":0.28},{"x":1568742960000,"y":0.06},{"x":1568743020000,"y":0.07},{"x":1568743080000,"y":0.06},{"x":1568743140000,"y":0.05},{"x":1568743200000,"y":0.26},{"x":1568743260000,"y":0.07},{"x":1568743320000,"y":0.05},{"x":1568743380000,"y":0.07},{"x":1568743440000,"y":0.07},{"x":1568743500000,"y":0.25},{"x":1568743560000,"y":0.06},{"x":1568743620000,"y":0.07},{"x":1568743680000,"y":0.08},{"x":1568743740000,"y":0.12},{"x":1568743800000,"y":0.25},{"x":1568743860000,"y":0.09},{"x":1568743920000,"y":0.05},{"x":1568743980000,"y":0.07},{"x":1568744040000,"y":0.06},{"x":1568744100000,"y":0.25},{"x":1568744160000,"y":0.07},{"x":1568744220000,"y":0.05},{"x":1568744280000,"y":0.05},{"x":1568744340000,"y":0.08},{"x":1568744400000,"y":0.29},{"x":1568744460000,"y":0.08},{"x":1568744520000,"y":0.05},{"x":1568744580000,"y":0.07},{"x":1568744640000,"y":0.06},{"x":1568744700000,"y":0.12},{"x":1568744760000,"y":0.19},{"x":1568744820000,"y":0.05},{"x":1568744880000,"y":0.06},{"x":1568744940000,"y":0.04},{"x":1568745000000,"y":0.1},{"x":1568745060000,"y":0.23},{"x":1568745120000,"y":0.06},{"x":1568745180000,"y":0.09},{"x":1568745240000,"y":0.09},{"x":1568745300000,"y":0.13},{"x":1568745360000,"y":0.19},{"x":1568745420000,"y":0.07},{"x":1568745480000,"y":0.1},{"x":1568745540000,"y":0.12},{"x":1568745600000,"y":0.12},{"x":1568745660000,"y":0.23},{"x":1568745720000,"y":0.08},{"x":1568745780000,"y":0.05},{"x":1568745840000,"y":0.05},{"x":1568745900000,"y":0.12},{"x":1568745960000,"y":0.2},{"x":1568746020000,"y":0.07},{"x":1568746080000,"y":0.1},{"x":1568746140000,"y":0.05},{"x":1568746200000,"y":0.11},{"x":1568746260000,"y":0.24},{"x":1568746320000,"y":0.07},{"x":1568746380000,"y":0.11},{"x":1568746440000,"y":0.09},{"x":1568746500000,"y":0.15},{"x":1568746560000,"y":0.19},{"x":1568746620000,"y":0.05},{"x":1568746680000,"y":0.07},{"x":1568746740000,"y":0.16},{"x":1568746800000,"y":0.17},{"x":1568746860000,"y":0.21},{"x":1568746920000,"y":0.05},{"x":1568746980000,"y":0.05},{"x":1568747040000,"y":0.07},{"x":1568747100000,"y":0.16},{"x":1568747160000,"y":0.08},{"x":1568747220000,"y":0.21},{"x":1568747280000,"y":0.07},{"x":1568747340000,"y":0.22},{"x":1568747400000,"y":0.18},{"x":1568747460000,"y":0.07},{"x":1568747520000,"y":0.21},{"x":1568747580000,"y":0.07},{"x":1568747640000,"y":0.09},{"x":1568747700000,"y":0.16},{"x":1568747760000,"y":0.08},{"x":1568747820000,"y":0.22},{"x":1568747880000,"y":0.09},{"x":1568747940000,"y":0.09},{"x":1568748000000,"y":0.14},{"x":1568748060000,"y":0.08},{"x":1568748120000,"y":0.26},{"x":1568748180000,"y":0.07},{"x":1568748240000,"y":0.09},{"x":1568748300000,"y":0.14},{"x":1568748360000,"y":0.07},{"x":1568748420000,"y":0.22},{"x":1568748480000,"y":0.06},{"x":1568748540000,"y":0.07},{"x":1568748600000,"y":0.15},{"x":1568748660000,"y":0.07},{"x":1568748720000,"y":0.2},{"x":1568748780000,"y":0.1},{"x":1568748840000,"y":0.08},{"x":1568748900000,"y":0.17},{"x":1568748960000,"y":0.07},{"x":1568749020000,"y":0.24},{"x":1568749080000,"y":0.07},{"x":1568749140000,"y":0.33},{"x":1568749200000,"y":0.2},{"x":1568749260000,"y":0.09},{"x":1568749320000,"y":0.07},{"x":1568749380000,"y":0.24},{"x":1568749440000,"y":0.08},{"x":1568749500000,"y":0.17},{"x":1568749560000,"y":0.08},{"x":1568749620000,"y":0.13},{"x":1568749680000,"y":0.3},{"x":1568749740000,"y":0.09},{"x":1568749800000,"y":0.18},{"x":1568749860000,"y":0.11},{"x":1568749920000,"y":0.08},{"x":1568749980000,"y":0.23},{"x":1568750040000,"y":0.09},{"x":1568750100000,"y":0.11},{"x":1568750160000,"y":0.06},{"x":1568750220000,"y":0.1},{"x":1568750280000,"y":0.24},{"x":1568750340000,"y":0.08},{"x":1568750400000,"y":0.15},{"x":1568750460000,"y":0.12},{"x":1568750520000,"y":0.1},{"x":1568750580000,"y":0.23},{"x":1568750640000,"y":0.07},{"x":1568750700000,"y":0.2},{"x":1568750760000,"y":0.09},{"x":1568750820000,"y":0.12},{"x":1568750880000,"y":0.24},{"x":1568750940000,"y":0.24},{"x":1568751000000,"y":0.19},{"x":1568751060000,"y":0.1},{"x":1568751120000,"y":0.11},{"x":1568751180000,"y":0.3},{"x":1568751240000,"y":0.07},{"x":1568751300000,"y":0.18},{"x":1568751360000,"y":0.07},{"x":1568751420000,"y":0.06},{"x":1568751480000,"y":0.15},{"x":1568751540000,"y":0.28},{"x":1568751600000,"y":0.18},{"x":1568751660000,"y":0.12},{"x":1568751720000,"y":0.15},{"x":1568751780000,"y":0.08},{"x":1568751840000,"y":0.23},{"x":1568751900000,"y":0.23},{"x":1568751960000,"y":0.13},{"x":1568752020000,"y":0.11},{"x":1568752080000,"y":0.09},{"x":1568752140000,"y":0.31},{"x":1568752200000,"y":0.22},{"x":1568752260000,"y":0.15},{"x":1568752320000,"y":0.15},{"x":1568752380000,"y":0.12},{"x":1568752440000,"y":0.28},{"x":1568752500000,"y":0.24},{"x":1568752560000,"y":0.15},{"x":1568752620000,"y":0.14},{"x":1568752680000,"y":0.13},{"x":1568752740000,"y":0.32},{"x":1568752800000,"y":0.18},{"x":1568752860000,"y":0.14},{"x":1568752920000,"y":0.16},{"x":1568752980000,"y":0.15},{"x":1568753040000,"y":0.3},{"x":1568753100000,"y":0.17},{"x":1568753160000,"y":0.17},{"x":1568753220000,"y":0.16},{"x":1568753280000,"y":5.1},{"x":1568753340000,"y":0.3},{"x":1568753400000,"y":0.22},{"x":1568753460000,"y":0.16},{"x":1568753520000,"y":0.19},{"x":1568753580000,"y":0.16},{"x":1568753640000,"y":0.28},{"x":1568753700000,"y":0.2},{"x":1568753760000,"y":0.12},{"x":1568753820000,"y":0.17},{"x":1568753880000,"y":0.17},{"x":1568753940000,"y":0.15},{"x":1568754000000,"y":0.41},{"x":1568754060000,"y":0.14},{"x":1568754120000,"y":0.15},{"x":1568754180000,"y":0.14},{"x":1568754240000,"y":0.14},{"x":1568754300000,"y":0.32},{"x":1568754360000,"y":0.15},{"x":1568754420000,"y":0.14},{"x":1568754480000,"y":0.16},{"x":1568754540000,"y":0.23},{"x":1568754600000,"y":0.34},{"x":1568754660000,"y":0.14},{"x":1568754720000,"y":0.15},{"x":1568754780000,"y":0.21},{"x":1568754840000,"y":0.26},{"x":1568754900000,"y":0.4},{"x":1568754960000,"y":0.15},{"x":1568755020000,"y":0.14},{"x":1568755080000,"y":0.13},{"x":1568755140000,"y":0.17},{"x":1568755200000,"y":0.41},{"x":1568755260000,"y":0.16},{"x":1568755320000,"y":0.16},{"x":1568755380000,"y":0.15},{"x":1568755440000,"y":0.17},{"x":1568755500000,"y":0.32},{"x":1568755560000,"y":0.14},{"x":1568755620000,"y":0.17},{"x":1568755680000,"y":0.15},{"x":1568755740000,"y":0.15},{"x":1568755800000,"y":0.16},{"x":1568755860000,"y":0.29},{"x":1568755920000,"y":0.12},{"x":1568755980000,"y":0.15},{"x":1568756040000,"y":0.15},{"x":1568756100000,"y":0.2},{"x":1568756160000,"y":0.3},{"x":1568756220000,"y":0.15},{"x":1568756280000,"y":0.17},{"x":1568756340000,"y":0.22},{"x":1568756400000,"y":0.23},{"x":1568756460000,"y":3.35},{"x":1568756520000,"y":0.15},{"x":1568756580000,"y":0.14},{"x":1568756640000,"y":0.15},{"x":1568756700000,"y":0.19},{"x":1568756760000,"y":0.28},{"x":1568756820000,"y":0.15},{"x":1568756880000,"y":0.19},{"x":1568756940000,"y":0.15},{"x":1568757000000,"y":0.22},{"x":1568757060000,"y":0.3},{"x":1568757120000,"y":0.16},{"x":1568757180000,"y":0.17},{"x":1568757240000,"y":0.16},{"x":1568757300000,"y":0.18},{"x":1568757360000,"y":0.3},{"x":1568757420000,"y":0.17},{"x":1568757480000,"y":0.14},{"x":1568757540000,"y":0.16},{"x":1568757600000,"y":0.21},{"x":1568757660000,"y":0.27},{"x":1568757720000,"y":0.19},{"x":1568757780000,"y":0.15},{"x":1568757840000,"y":0.13},{"x":1568757900000,"y":0.23},{"x":1568757960000,"y":0.27},{"x":1568758020000,"y":0.17},{"x":1568758080000,"y":0.12},{"x":1568758140000,"y":0.26},{"x":1568758200000,"y":0.22},{"x":1568758260000,"y":0.16},{"x":1568758320000,"y":0.28},{"x":1568758380000,"y":0.16},{"x":1568758440000,"y":0.15},{"x":1568758500000,"y":0.2},{"x":1568758560000,"y":0.15},{"x":1568758620000,"y":0.28},{"x":1568758680000,"y":0.14},{"x":1568758740000,"y":0.12},{"x":1568758800000,"y":0.19},{"x":1568758860000,"y":0.14},{"x":1568758920000,"y":0.28},{"x":1568758980000,"y":0.17},{"x":1568759040000,"y":0.16},{"x":1568759100000,"y":0.18},{"x":1568759160000,"y":0.12},{"x":1568759220000,"y":0.3},{"x":1568759280000,"y":0.13},{"x":1568759340000,"y":0.14},{"x":1568759400000,"y":0.2},{"x":1568759460000,"y":0.14},{"x":1568759520000,"y":0.28},{"x":1568759580000,"y":0.17},{"x":1568759640000,"y":0.13},{"x":1568759700000,"y":0.21},{"x":1568759760000,"y":0.13},{"x":1568759820000,"y":0.29},{"x":1568759880000,"y":0.16},{"x":1568759940000,"y":0.22},{"x":1568760000000,"y":0.17},{"x":1568760060000,"y":0.17},{"x":1568760120000,"y":0.28},{"x":1568760180000,"y":0.17},{"x":1568760240000,"y":0.17},{"x":1568760300000,"y":0.18},{"x":1568760360000,"y":0.15},{"x":1568760420000,"y":0.28},{"x":1568760480000,"y":0.2},{"x":1568760540000,"y":0.15},{"x":1568760600000,"y":0.22},{"x":1568760660000,"y":0.15},{"x":1568760720000,"y":0.3},{"x":1568760780000,"y":0.15},{"x":1568760840000,"y":0.17},{"x":1568760900000,"y":0.22},{"x":1568760960000,"y":0.12},{"x":1568761020000,"y":0.14},{"x":1568761080000,"y":0.28},{"x":1568761140000,"y":0.15},{"x":1568761200000,"y":0.3},{"x":1568761260000,"y":0.15},{"x":1568761320000,"y":0.17},{"x":1568761380000,"y":0.27},{"x":1568761440000,"y":0.14},{"x":1568761500000,"y":0.19},{"x":1568761560000,"y":0.15},{"x":1568761620000,"y":0.16},{"x":1568761680000,"y":0.28},{"x":1568761740000,"y":0.19},{"x":1568761800000,"y":0.15},{"x":1568761860000,"y":0.13},{"x":1568761920000,"y":0.12},{"x":1568761980000,"y":0.23},{"x":1568762040000,"y":0.1},{"x":1568762100000,"y":0.13},{"x":1568762160000,"y":0.08},{"x":1568762220000,"y":0.08},{"x":1568762280000,"y":0.2},{"x":1568762340000,"y":0.07},{"x":1568762400000,"y":0.1},{"x":1568762460000,"y":0.07},{"x":1568762520000,"y":0.07},{"x":1568762580000,"y":0.19},{"x":1568762640000,"y":0.06},{"x":1568762700000,"y":0.13},{"x":1568762760000,"y":0.07},{"x":1568762820000,"y":0.05},{"x":1568762880000,"y":0.19},{"x":1568762940000,"y":0.09},{"x":1568763000000,"y":0.16},{"x":1568763060000,"y":0.06},{"x":1568763120000,"y":0.08},{"x":1568763180000,"y":0.21},{"x":1568763240000,"y":0.07},{"x":1568763300000,"y":0.15},{"x":1568763360000,"y":0.11},{"x":1568763420000,"y":0.1},{"x":1568763480000,"y":0.06},{"x":1568763540000,"y":0.29},{"x":1568763600000,"y":0.18},{"x":1568763660000,"y":0.05},{"x":1568763720000,"y":0.08},{"x":1568763780000,"y":0.08},{"x":1568763840000,"y":0.21},{"x":1568763900000,"y":0.19},{"x":1568763960000,"y":0.08},{"x":1568764020000,"y":0.09},{"x":1568764080000,"y":0.09},{"x":1568764140000,"y":0.18},{"x":1568764200000,"y":0.1},{"x":1568764260000,"y":0.13},{"x":1568764320000,"y":0.06},{"x":1568764380000,"y":0.05},{"x":1568764440000,"y":0.19},{"x":1568764500000,"y":0.09},{"x":1568764560000,"y":0.07},{"x":1568764620000,"y":0.05},{"x":1568764680000,"y":0.07},{"x":1568764740000,"y":0.19},{"x":1568764800000,"y":0.19},{"x":1568764860000,"y":0.06},{"x":1568764920000,"y":0.07},{"x":1568764980000,"y":0.07},{"x":1568765040000,"y":0.21},{"x":1568765100000,"y":0.12},{"x":1568765160000,"y":0.09},{"x":1568765220000,"y":0.08},{"x":1568765280000,"y":0.07},{"x":1568765340000,"y":0.34},{"x":1568765400000,"y":0.13},{"x":1568765460000,"y":0.07},{"x":1568765520000,"y":0.11},{"x":1568765580000,"y":0.06},{"x":1568765640000,"y":0.09},{"x":1568765700000,"y":0.43},{"x":1568765760000,"y":0.07},{"x":1568765820000,"y":0.08},{"x":1568765880000,"y":0.1},{"x":1568765940000,"y":0.08},{"x":1568766000000,"y":0.27},{"x":1568766060000,"y":0.07},{"x":1568766120000,"y":0.05},{"x":1568766180000,"y":0.07},{"x":1568766240000,"y":0.06},{"x":1568766300000,"y":0.27},{"x":1568766360000,"y":0.07},{"x":1568766420000,"y":0.06},{"x":1568766480000,"y":0.07},{"x":1568766540000,"y":0.09},{"x":1568766600000,"y":0.31},{"x":1568766660000,"y":0.09},{"x":1568766720000,"y":0.07},{"x":1568766780000,"y":0.07},{"x":1568766840000,"y":0.06},{"x":1568766900000,"y":0.28},{"x":1568766960000,"y":0.06},{"x":1568767020000,"y":0.05},{"x":1568767080000,"y":0.05},{"x":1568767140000,"y":0.13},{"x":1568767200000,"y":0.26},{"x":1568767260000,"y":0.05},{"x":1568767320000,"y":0.05},{"x":1568767380000,"y":0.05},{"x":1568767440000,"y":0.06},{"x":1568767500000,"y":0.27},{"x":1568767560000,"y":0.09},{"x":1568767620000,"y":0.1},{"x":1568767680000,"y":0.1},{"x":1568767740000,"y":0.06},{"x":1568767800000,"y":0.28},{"x":1568767860000,"y":0.1},{"x":1568767920000,"y":0.07},{"x":1568767980000,"y":0.1},{"x":1568768040000,"y":0.08},{"x":1568768100000,"y":0.15},{"x":1568768160000,"y":0.2},{"x":1568768220000,"y":0.09},{"x":1568768280000,"y":0.07},{"x":1568768340000,"y":0.07},{"x":1568768400000,"y":0.25},{"x":1568768460000,"y":0.22},{"x":1568768520000,"y":0.07},{"x":1568768580000,"y":0.07},{"x":1568768640000,"y":0.06},{"x":1568768700000,"y":0.21},{"x":1568768760000,"y":0.2},{"x":1568768820000,"y":0.05},{"x":1568768880000,"y":0.07},{"x":1568768940000,"y":0.11},{"x":1568769000000,"y":0.21},{"x":1568769060000,"y":0.21},{"x":1568769120000,"y":0.07},{"x":1568769180000,"y":0.08},{"x":1568769240000,"y":0.06},{"x":1568769300000,"y":0.16},{"x":1568769360000,"y":0.24},{"x":1568769420000,"y":0.07},{"x":1568769480000,"y":0.08},{"x":1568769540000,"y":0.08},{"x":1568769600000,"y":0.12},{"x":1568769660000,"y":0.18},{"x":1568769720000,"y":0.05},{"x":1568769780000,"y":0.06},{"x":1568769840000,"y":0.05},{"x":1568769900000,"y":0.12},{"x":1568769960000,"y":0.21},{"x":1568770020000,"y":0.06},{"x":1568770080000,"y":0.05},{"x":1568770140000,"y":0.05},{"x":1568770200000,"y":0.14},{"x":1568770260000,"y":0.06},{"x":1568770320000,"y":0.2},{"x":1568770380000,"y":0.12},{"x":1568770440000,"y":0.05},{"x":1568770500000,"y":0.16},{"x":1568770560000,"y":0.08},{"x":1568770620000,"y":0.2},{"x":1568770680000,"y":0.07},{"x":1568770740000,"y":0.25},{"x":1568770800000,"y":0.15},{"x":1568770860000,"y":0.07},{"x":1568770920000,"y":0.2},{"x":1568770980000,"y":0.12},{"x":1568771040000,"y":0.06},{"x":1568771100000,"y":0.15},{"x":1568771160000,"y":0.06},{"x":1568771220000,"y":0.2},{"x":1568771280000,"y":0.09},{"x":1568771340000,"y":0.09},{"x":1568771400000,"y":0.13},{"x":1568771460000,"y":0.07},{"x":1568771520000,"y":0.19},{"x":1568771580000,"y":0.11},{"x":1568771640000,"y":0.11},{"x":1568771700000,"y":0.09},{"x":1568771760000,"y":0.08},{"x":1568771820000,"y":0.22},{"x":1568771880000,"y":0.04},{"x":1568771940000,"y":0.07},{"x":1568772000000,"y":0.17},{"x":1568772060000,"y":0.08},{"x":1568772120000,"y":0.2},{"x":1568772180000,"y":0.08},{"x":1568772240000,"y":0.07},{"x":1568772300000,"y":0.14},{"x":1568772360000,"y":3.85},{"x":1568772420000,"y":0.19},{"x":1568772480000,"y":0.06},{"x":1568772540000,"y":0.17},{"x":1568772600000,"y":0.17},{"x":1568772660000,"y":0.07},{"x":1568772720000,"y":0.1},{"x":1568772780000,"y":0.22},{"x":1568772840000,"y":0.1},{"x":1568772900000,"y":0.13},{"x":1568772960000,"y":0.1},{"x":1568773020000,"y":0.09},{"x":1568773080000,"y":0.22},{"x":1568773140000,"y":0.1},{"x":1568773200000,"y":0.15},{"x":1568773260000,"y":0.06},{"x":1568773320000,"y":0.1},{"x":1568773380000,"y":0.2},{"x":1568773440000,"y":0.07},{"x":1568773500000,"y":0.15},{"x":1568773560000,"y":0.06},{"x":1568773620000,"y":0.07},{"x":1568773680000,"y":0.21},{"x":1568773740000,"y":0.1},{"x":1568773800000,"y":0.14},{"x":1568773860000,"y":0.06},{"x":1568773920000,"y":0.05},{"x":1568773980000,"y":0.22},{"x":1568774040000,"y":0.06},{"x":1568774100000,"y":0.1},{"x":1568774160000,"y":0.09},{"x":1568774220000,"y":0.07},{"x":1568774280000,"y":0.22},{"x":1568774340000,"y":0.13},{"x":1568774400000,"y":0.15},{"x":1568774460000,"y":0.07},{"x":1568774520000,"y":0.06},{"x":1568774580000,"y":0.22},{"x":1568774640000,"y":0.07},{"x":1568774700000,"y":0.15},{"x":1568774760000,"y":0.07},{"x":1568774820000,"y":0.07},{"x":1568774880000,"y":0.11},{"x":1568774940000,"y":0.22},{"x":1568775000000,"y":0.1},{"x":1568775060000,"y":0.06},{"x":1568775120000,"y":0.07},{"x":1568775180000,"y":0.07},{"x":1568775240000,"y":0.18},{"x":1568775300000,"y":0.17},{"x":1568775360000,"y":0.08},{"x":1568775420000,"y":0.07},{"x":1568775480000,"y":0.06},{"x":1568775540000,"y":0.18},{"x":1568775600000,"y":0.21},{"x":1568775660000,"y":0.05},{"x":1568775720000,"y":0.07},{"x":1568775780000,"y":0.1},{"x":1568775840000,"y":0.2},{"x":1568775900000,"y":0.19},{"x":1568775960000,"y":0.09},{"x":1568776020000,"y":0.06},{"x":1568776080000,"y":0.06},{"x":1568776140000,"y":0.27},{"x":1568776200000,"y":0.18},{"x":1568776260000,"y":0.11},{"x":1568776320000,"y":0.1},{"x":1568776380000,"y":0.1},{"x":1568776440000,"y":0.18},{"x":1568776500000,"y":0.1},{"x":1568776560000,"y":0.05},{"x":1568776620000,"y":0.1},{"x":1568776680000,"y":0.07},{"x":1568776740000,"y":0.23},{"x":1568776800000,"y":0.11},{"x":1568776860000,"y":0.08},{"x":1568776920000,"y":0.12},{"x":1568776980000,"y":0.05},{"x":1568777040000,"y":0.18},{"x":1568777100000,"y":0.1},{"x":1568777160000,"y":0.07},{"x":1568777220000,"y":0.06},{"x":1568777280000,"y":1.55},{"x":1568777340000,"y":0.1},{"x":1568777400000,"y":0.33},{"x":1568777460000,"y":0.05},{"x":1568777520000,"y":0.06},{"x":1568777580000,"y":0.05},{"x":1568777640000,"y":0.07},{"x":1568777700000,"y":0.25},{"x":1568777760000,"y":0.07},{"x":1568777820000,"y":0.09},{"x":1568777880000,"y":0.07},{"x":1568777940000,"y":0.27},{"x":1568778000000,"y":0.26},{"x":1568778060000,"y":0.07},{"x":1568778120000,"y":0.09},{"x":1568778180000,"y":0.07},{"x":1568778240000,"y":0.05},{"x":1568778300000,"y":4.89},{"x":1568778360000,"y":0.08},{"x":1568778420000,"y":0.08},{"x":1568778480000,"y":0.08},{"x":1568778540000,"y":0.07},{"x":1568778600000,"y":0.29},{"x":1568778660000,"y":0.07},{"x":1568778720000,"y":0.07},{"x":1568778780000,"y":0.04},{"x":1568778840000,"y":0.05},{"x":1568778900000,"y":0.3},{"x":1568778960000,"y":0.06},{"x":1568779020000,"y":0.07},{"x":1568779080000,"y":0.07},{"x":1568779140000,"y":0.08},{"x":1568779200000,"y":0.25},{"x":1568779260000,"y":0.07},{"x":1568779320000,"y":0.05},{"x":1568779380000,"y":0.07},{"x":1568779440000,"y":0.07},{"x":1568779500000,"y":0.23},{"x":1568779560000,"y":0.08},{"x":1568779620000,"y":0.11},{"x":1568779680000,"y":0.05},{"x":1568779740000,"y":0.17},{"x":1568779800000,"y":0.12},{"x":1568779860000,"y":0.18},{"x":1568779920000,"y":0.09},{"x":1568779980000,"y":0.12},{"x":1568780040000,"y":0.11},{"x":1568780100000,"y":0.14},{"x":1568780160000,"y":0.2},{"x":1568780220000,"y":0.05},{"x":1568780280000,"y":0.09},{"x":1568780340000,"y":0.08},{"x":1568780400000,"y":0.14},{"x":1568780460000,"y":0.19},{"x":1568780520000,"y":0.07},{"x":1568780580000,"y":0.08},{"x":1568780640000,"y":0.06},{"x":1568780700000,"y":0.11},{"x":1568780760000,"y":0.2},{"x":1568780820000,"y":0.09},{"x":1568780880000,"y":0.05},{"x":1568780940000,"y":0.67},{"x":1568781000000,"y":0.14},{"x":1568781060000,"y":0.23},{"x":1568781120000,"y":0.06},{"x":1568781180000,"y":0.08},{"x":1568781240000,"y":0.08},{"x":1568781300000,"y":0.12},{"x":1568781360000,"y":0.19},{"x":1568781420000,"y":0.09},{"x":1568781480000,"y":0.07},{"x":1568781540000,"y":0.18},{"x":1568781600000,"y":0.19},{"x":1568781660000,"y":0.21},{"x":1568781720000,"y":0.06},{"x":1568781780000,"y":0.05},{"x":1568781840000,"y":0.06},{"x":1568781900000,"y":0.15},{"x":1568781960000,"y":0.07},{"x":1568782020000,"y":0.22},{"x":1568782080000,"y":0.08},{"x":1568782140000,"y":0.06},{"x":1568782200000,"y":0.1},{"x":1568782260000,"y":0.07},{"x":1568782320000,"y":0.2},{"x":1568782380000,"y":0.05},{"x":1568782440000,"y":0.07},{"x":1568782500000,"y":0.12},{"x":1568782560000,"y":0.06},{"x":1568782620000,"y":0.2},{"x":1568782680000,"y":0.08},{"x":1568782740000,"y":0.09},{"x":1568782800000,"y":0.44},{"x":1568782860000,"y":0.08},{"x":1568782920000,"y":0.2},{"x":1568782980000,"y":0.07},{"x":1568783040000,"y":0.09},{"x":1568783100000,"y":0.15},{"x":1568783160000,"y":0.08},{"x":1568783220000,"y":0.19},{"x":1568783280000,"y":0.09},{"x":1568783340000,"y":0.15},{"x":1568783400000,"y":0.12},{"x":1568783460000,"y":0.07},{"x":1568783520000,"y":0.23},{"x":1568783580000,"y":0.07},{"x":1568783640000,"y":0.05},{"x":1568783700000,"y":0.12},{"x":1568783760000,"y":0.15},{"x":1568783820000,"y":0.25},{"x":1568783880000,"y":0.11},{"x":1568783940000,"y":0.12},{"x":1568784000000,"y":0.2},{"x":1568784060000,"y":0.12},{"x":1568784120000,"y":0.24},{"x":1568784180000,"y":0.11},{"x":1568784240000,"y":0.13},{"x":1568784300000,"y":0.16},{"x":1568784360000,"y":0.15},{"x":1568784420000,"y":0.16},{"x":1568784480000,"y":0.22},{"x":1568784540000,"y":0.08},{"x":1568784600000,"y":0.33},{"x":1568784660000,"y":0.15},{"x":1568784720000,"y":0.1},{"x":1568784780000,"y":0.29},{"x":1568784840000,"y":0.11},{"x":1568784900000,"y":0.19},{"x":1568784960000,"y":0.15},{"x":1568785020000,"y":0.15},{"x":1568785080000,"y":0.25},{"x":1568785140000,"y":0.23},{"x":1568785200000,"y":0.21},{"x":1568785260000,"y":0.15},{"x":1568785320000,"y":0.08},{"x":1568785380000,"y":0.25},{"x":1568785440000,"y":0.1},{"x":1568785500000,"y":0.14},{"x":1568785560000,"y":0.15},{"x":1568785620000,"y":0.17},{"x":1568785680000,"y":0.3},{"x":1568785740000,"y":0.15},{"x":1568785800000,"y":0.2},{"x":1568785860000,"y":0.17},{"x":1568785920000,"y":0.15},{"x":1568785980000,"y":0.27},{"x":1568786040000,"y":0.15},{"x":1568786100000,"y":0.22},{"x":1568786160000,"y":0.15},{"x":1568786220000,"y":0.16},{"x":1568786280000,"y":0.29},{"x":1568786340000,"y":0.17},{"x":1568786400000,"y":0.24},{"x":1568786460000,"y":0.17},{"x":1568786520000,"y":0.17},{"x":1568786580000,"y":0.3},{"x":1568786640000,"y":0.18},{"x":1568786700000,"y":0.22},{"x":1568786760000,"y":0.15},{"x":1568786820000,"y":0.15},{"x":1568786880000,"y":0.29},{"x":1568786940000,"y":0.39},{"x":1568787000000,"y":0.26},{"x":1568787060000,"y":0.15},{"x":1568787120000,"y":0.18},{"x":1568787180000,"y":0.17},{"x":1568787240000,"y":0.33},{"x":1568787300000,"y":0.24},{"x":1568787360000,"y":0.17},{"x":1568787420000,"y":0.16},{"x":1568787480000,"y":0.15},{"x":1568787540000,"y":0.3},{"x":1568787600000,"y":0.27},{"x":1568787660000,"y":0.12},{"x":1568787720000,"y":0.15},{"x":1568787780000,"y":0.13},{"x":1568787840000,"y":0.29},{"x":1568787900000,"y":0.27},{"x":1568787960000,"y":0.14},{"x":1568788020000,"y":0.16},{"x":1568788080000,"y":0.15},{"x":1568788140000,"y":0.27},{"x":1568788200000,"y":0.24},{"x":1568788260000,"y":0.15},{"x":1568788320000,"y":0.15},{"x":1568788380000,"y":4.98},{"x":1568788440000,"y":0.4},{"x":1568788500000,"y":0.2},{"x":1568788560000,"y":0.2},{"x":1568788620000,"y":0.18},{"x":1568788680000,"y":0.16},{"x":1568788740000,"y":0.34},{"x":1568788800000,"y":0.21},{"x":1568788860000,"y":0.17},{"x":1568788920000,"y":0.15},{"x":1568788980000,"y":0.13},{"x":1568789040000,"y":0.17},{"x":1568789100000,"y":0.37},{"x":1568789160000,"y":0.13},{"x":1568789220000,"y":0.2},{"x":1568789280000,"y":0.17},{"x":1568789340000,"y":0.17},{"x":1568789400000,"y":0.33},{"x":1568789460000,"y":0.17},{"x":1568789520000,"y":0.16},{"x":1568789580000,"y":0.18},{"x":1568789640000,"y":0.13},{"x":1568789700000,"y":0.37},{"x":1568789760000,"y":0.13},{"x":1568789820000,"y":0.15},{"x":1568789880000,"y":0.19},{"x":1568789940000,"y":0.16},{"x":1568790000000,"y":0.4},{"x":1568790060000,"y":0.17},{"x":1568790120000,"y":0.19},{"x":1568790180000,"y":0.13},{"x":1568790240000,"y":0.14},{"x":1568790300000,"y":0.41},{"x":1568790360000,"y":0.17},{"x":1568790420000,"y":0.17},{"x":1568790480000,"y":0.15},{"x":1568790540000,"y":0.21},{"x":1568790600000,"y":0.32},{"x":1568790660000,"y":0.14},{"x":1568790720000,"y":0.16},{"x":1568790780000,"y":0.16},{"x":1568790840000,"y":0.15},{"x":1568790900000,"y":0.36},{"x":1568790960000,"y":0.19},{"x":1568791020000,"y":0.16},{"x":1568791080000,"y":0.18},{"x":1568791140000,"y":0.18},{"x":1568791200000,"y":0.33},{"x":1568791260000,"y":0.15},{"x":1568791320000,"y":0.16},{"x":1568791380000,"y":0.15},{"x":1568791440000,"y":0.16},{"x":1568791500000,"y":0.2},{"x":1568791560000,"y":0.31},{"x":1568791620000,"y":0.17},{"x":1568791680000,"y":0.17},{"x":1568791740000,"y":0.17},{"x":1568791800000,"y":0.26},{"x":1568791860000,"y":0.3},{"x":1568791920000,"y":0.17},{"x":1568791980000,"y":0.18},{"x":1568792040000,"y":0.17},{"x":1568792100000,"y":0.22},{"x":1568792160000,"y":0.29},{"x":1568792220000,"y":0.15},{"x":1568792280000,"y":0.17},{"x":1568792340000,"y":0.22},{"x":1568792400000,"y":0.22},{"x":1568792460000,"y":0.27},{"x":1568792520000,"y":0.17},{"x":1568792580000,"y":0.16},{"x":1568792640000,"y":0.16},{"x":1568792700000,"y":0.22},{"x":1568792760000,"y":0.29},{"x":1568792820000,"y":0.14},{"x":1568792880000,"y":0.17},{"x":1568792940000,"y":0.19},{"x":1568793000000,"y":0.26},{"x":1568793060000,"y":0.27},{"x":1568793120000,"y":0.17},{"x":1568793180000,"y":0.14},{"x":1568793240000,"y":0.17},{"x":1568793300000,"y":0.25},{"x":1568793360000,"y":0.32},{"x":1568793420000,"y":0.16},{"x":1568793480000,"y":0.15},{"x":1568793540000,"y":0.17},{"x":1568793600000,"y":0.26},{"x":1568793660000,"y":0.2},{"x":1568793720000,"y":0.33},{"x":1568793780000,"y":0.18},{"x":1568793840000,"y":0.14},{"x":1568793900000,"y":0.22},{"x":1568793960000,"y":0.19},{"x":1568794020000,"y":0.3},{"x":1568794080000,"y":0.2},{"x":1568794140000,"y":2.4},{"x":1568794200000,"y":0.22},{"x":1568794260000,"y":0.16},{"x":1568794320000,"y":0.31},{"x":1568794380000,"y":0.18},{"x":1568794440000,"y":0.16},{"x":1568794500000,"y":0.21},{"x":1568794560000,"y":0.15},{"x":1568794620000,"y":0.3},{"x":1568794680000,"y":0.13},{"x":1568794740000,"y":0.18},{"x":1568794800000,"y":0.22},{"x":1568794860000,"y":0.19},{"x":1568794920000,"y":0.28},{"x":1568794980000,"y":0.16},{"x":1568795040000,"y":0.15},{"x":1568795100000,"y":0.21},{"x":1568795160000,"y":0.18},{"x":1568795220000,"y":0.3},{"x":1568795280000,"y":0.13},{"x":1568795340000,"y":0.12},{"x":1568795400000,"y":0.84},{"x":1568795460000,"y":0.06},{"x":1568795520000,"y":0.19},{"x":1568795580000,"y":0.08},{"x":1568795640000,"y":0.07},{"x":1568795700000,"y":0.17},{"x":1568795760000,"y":0.09},{"x":1568795820000,"y":0.2},{"x":1568795880000,"y":0.07},{"x":1568795940000,"y":0.19},{"x":1568796000000,"y":0.19},{"x":1568796060000,"y":0.07},{"x":1568796120000,"y":0.06},{"x":1568796180000,"y":0.18},{"x":1568796240000,"y":0.12},{"x":1568796300000,"y":0.13},{"x":1568796360000,"y":0.08},{"x":1568796420000,"y":0.07},{"x":1568796480000,"y":0.24},{"x":1568796540000,"y":0.08},{"x":1568796600000,"y":0.13},{"x":1568796660000,"y":0.08},{"x":1568796720000,"y":0.08},{"x":1568796780000,"y":0.2},{"x":1568796840000,"y":0.07},{"x":1568796900000,"y":0.13},{"x":1568796960000,"y":0.08},{"x":1568797020000,"y":0.07},{"x":1568797080000,"y":0.2},{"x":1568797140000,"y":0.09},{"x":1568797200000,"y":0.26},{"x":1568797260000,"y":0.09},{"x":1568797320000,"y":0.12},{"x":1568797380000,"y":0.2},{"x":1568797440000,"y":0.07},{"x":1568797500000,"y":0.12},{"x":1568797560000,"y":0.06},{"x":1568797620000,"y":0.09},{"x":1568797680000,"y":0.2},{"x":1568797740000,"y":0.16},{"x":1568797800000,"y":0.12},{"x":1568797860000,"y":0.08},{"x":1568797920000,"y":0.05},{"x":1568797980000,"y":0.22},{"x":1568798040000,"y":0.06},{"x":1568798100000,"y":0.15},{"x":1568798160000,"y":0.07},{"x":1568798220000,"y":0.07},{"x":1568798280000,"y":0.2},{"x":1568798340000,"y":0.06},{"x":1568798400000,"y":0.15},{"x":1568798460000,"y":0.08},{"x":1568798520000,"y":0.06},{"x":1568798580000,"y":0.05},{"x":1568798640000,"y":0.26},{"x":1568798700000,"y":0.17},{"x":1568798760000,"y":0.06},{"x":1568798820000,"y":0.09},{"x":1568798880000,"y":0.06},{"x":1568798940000,"y":0.25},{"x":1568799000000,"y":1.58},{"x":1568799060000,"y":0.09},{"x":1568799120000,"y":0.07},{"x":1568799180000,"y":0.06},{"x":1568799240000,"y":0.2},{"x":1568799300000,"y":0.1},{"x":1568799360000,"y":0.06},{"x":1568799420000,"y":0.07},{"x":1568799480000,"y":0.08},{"x":1568799540000,"y":0.29},{"x":1568799600000,"y":0.11},{"x":1568799660000,"y":0.07},{"x":1568799720000,"y":0.05},{"x":1568799780000,"y":0.06},{"x":1568799840000,"y":0.22},{"x":1568799900000,"y":0.14},{"x":1568799960000,"y":0.07},{"x":1568800020000,"y":0.1},{"x":1568800080000,"y":0.11},{"x":1568800140000,"y":3.79},{"x":1568800200000,"y":0.14},{"x":1568800260000,"y":0.09},{"x":1568800320000,"y":0.07},{"x":1568800380000,"y":0.1},{"x":1568800440000,"y":0.2},{"x":1568800500000,"y":0.14},{"x":1568800560000,"y":0.07},{"x":1568800620000,"y":0.08},{"x":1568800680000,"y":0.06},{"x":1568800740000,"y":0.25},{"x":1568800800000,"y":0.13},{"x":1568800860000,"y":0.07},{"x":1568800920000,"y":0.07},{"x":1568800980000,"y":0.08},{"x":1568801040000,"y":0.22},{"x":1568801100000,"y":0.16},{"x":1568801160000,"y":0.08},{"x":1568801220000,"y":0.1},{"x":1568801280000,"y":0.07},{"x":1568801340000,"y":0.17},{"x":1568801400000,"y":0.3},{"x":1568801460000,"y":0.06},{"x":1568801520000,"y":0.06},{"x":1568801580000,"y":0.07},{"x":1568801640000,"y":0.08},{"x":1568801700000,"y":0.31},{"x":1568801760000,"y":0.07},{"x":1568801820000,"y":0.07},{"x":1568801880000,"y":0.1},{"x":1568801940000,"y":0.07},{"x":1568802000000,"y":0.24},{"x":1568802060000,"y":0.06},{"x":1568802120000,"y":0.09},{"x":1568802180000,"y":0.07},{"x":1568802240000,"y":0.08},{"x":1568802300000,"y":0.27},{"x":1568802360000,"y":0.07},{"x":1568802420000,"y":0.08},{"x":1568802480000,"y":0.06},{"x":1568802540000,"y":0.07},{"x":1568802600000,"y":0.28},{"x":1568802660000,"y":0.97},{"x":1568802720000,"y":0.11},{"x":1568802780000,"y":0.1},{"x":1568802840000,"y":0.05},{"x":1568802900000,"y":0.24},{"x":1568802960000,"y":0.05},{"x":1568803020000,"y":0.05},{"x":1568803080000,"y":0.06},{"x":1568803140000,"y":0.13},{"x":1568803200000,"y":0.2},{"x":1568803260000,"y":0.14},{"x":1568803320000,"y":0.07},{"x":1568803380000,"y":0.07},{"x":1568803440000,"y":0.08},{"x":1568803500000,"y":0.12},{"x":1568803560000,"y":0.2},{"x":1568803620000,"y":0.1},{"x":1568803680000,"y":0.1},{"x":1568803740000,"y":0.07},{"x":1568803800000,"y":0.18},{"x":1568803860000,"y":0.26},{"x":1568803920000,"y":0.07},{"x":1568803980000,"y":0.08},{"x":1568804040000,"y":0.08},{"x":1568804100000,"y":0.15},{"x":1568804160000,"y":0.21},{"x":1568804220000,"y":0.07},{"x":1568804280000,"y":0.09},{"x":1568804340000,"y":0.06},{"x":1568804400000,"y":0.22},{"x":1568804460000,"y":0.2},{"x":1568804520000,"y":0.07},{"x":1568804580000,"y":0.11},{"x":1568804640000,"y":0.04},{"x":1568804700000,"y":0.16},{"x":1568804760000,"y":0.25},{"x":1568804820000,"y":0.07},{"x":1568804880000,"y":0.05},{"x":1568804940000,"y":0.13},{"x":1568805000000,"y":0.17},{"x":1568805060000,"y":0.23},{"x":1568805120000,"y":0.09},{"x":1568805180000,"y":0.09},{"x":1568805240000,"y":0.07},{"x":1568805300000,"y":0.11},{"x":1568805360000,"y":0.2},{"x":1568805420000,"y":0.08},{"x":1568805480000,"y":0.07},{"x":1568805540000,"y":0.09},{"x":1568805600000,"y":0.13},{"x":1568805660000,"y":0.08},{"x":1568805720000,"y":0.2},{"x":1568805780000,"y":0.07},{"x":1568805840000,"y":0.06},{"x":1568805900000,"y":1.21},{"x":1568805960000,"y":9.06},{"x":1568806020000,"y":0.21},{"x":1568806080000,"y":0.1},{"x":1568806140000,"y":0.07},{"x":1568806200000,"y":0.17},{"x":1568806260000,"y":0.07},{"x":1568806320000,"y":0.2},{"x":1568806380000,"y":0.08},{"x":1568806440000,"y":0.13},{"x":1568806500000,"y":0.18},{"x":1568806560000,"y":0.08},{"x":1568806620000,"y":0.22},{"x":1568806680000,"y":0.07},{"x":1568806740000,"y":0.14},{"x":1568806800000,"y":0.16},{"x":1568806860000,"y":0.07},{"x":1568806920000,"y":0.19},{"x":1568806980000,"y":0.1},{"x":1568807040000,"y":0.07},{"x":1568807100000,"y":0.15},{"x":1568807160000,"y":0.08},{"x":1568807220000,"y":0.22},{"x":1568807280000,"y":0.11},{"x":1568807340000,"y":0.08},{"x":1568807400000,"y":0.1},{"x":1568807460000,"y":0.05},{"x":1568807520000,"y":0.25},{"x":1568807580000,"y":0.06},{"x":1568807640000,"y":0.1},{"x":1568807700000,"y":0.15},{"x":1568807760000,"y":0.1},{"x":1568807820000,"y":0.23},{"x":1568807880000,"y":0.08},{"x":1568807940000,"y":0.07},{"x":1568808000000,"y":0.12},{"x":1568808060000,"y":0.06},{"x":1568808120000,"y":0.07},{"x":1568808180000,"y":0.2},{"x":1568808240000,"y":0.12},{"x":1568808300000,"y":0.12},{"x":1568808360000,"y":0.1},{"x":1568808420000,"y":0.1},{"x":1568808480000,"y":0.21},{"x":1568808540000,"y":0.18},{"x":1568808600000,"y":0.17},{"x":1568808660000,"y":0.1},{"x":1568808720000,"y":0.11},{"x":1568808780000,"y":0.25},{"x":1568808840000,"y":0.07},{"x":1568808900000,"y":0.18},{"x":1568808960000,"y":0.07},{"x":1568809020000,"y":0.12},{"x":1568809080000,"y":0.23},{"x":1568809140000,"y":0.07},{"x":1568809200000,"y":0.17},{"x":1568809260000,"y":0.1},{"x":1568809320000,"y":0.08},{"x":1568809380000,"y":0.2},{"x":1568809440000,"y":0.07},{"x":1568809500000,"y":0.16},{"x":1568809560000,"y":0.08},{"x":1568809620000,"y":0.06},{"x":1568809680000,"y":0.24},{"x":1568809740000,"y":0.08},{"x":1568809800000,"y":0.19},{"x":1568809860000,"y":0.09},{"x":1568809920000,"y":0.08},{"x":1568809980000,"y":0.22},{"x":1568810040000,"y":0.1},{"x":1568810100000,"y":0.16},{"x":1568810160000,"y":0.08},{"x":1568810220000,"y":0.09},{"x":1568810280000,"y":0.07},{"x":1568810340000,"y":0.28},{"x":1568810400000,"y":0.19},{"x":1568810460000,"y":0.07},{"x":1568810520000,"y":0.08},{"x":1568810580000,"y":0.12},{"x":1568810640000,"y":0.25},{"x":1568810700000,"y":0.13},{"x":1568810760000,"y":0.08},{"x":1568810820000,"y":0.1},{"x":1568810880000,"y":0.11},{"x":1568810940000,"y":0.19},{"x":1568811000000,"y":0.16},{"x":1568811060000,"y":0.06},{"x":1568811120000,"y":0.08},{"x":1568811180000,"y":0.07},{"x":1568811240000,"y":0.2},{"x":1568811300000,"y":0.14},{"x":1568811360000,"y":0.1},{"x":1568811420000,"y":0.11},{"x":1568811480000,"y":0.09},{"x":1568811540000,"y":0.2},{"x":1568811600000,"y":0.2},{"x":1568811660000,"y":0.1},{"x":1568811720000,"y":0.09},{"x":1568811780000,"y":0.06},{"x":1568811840000,"y":0.25},{"x":1568811900000,"y":0.19},{"x":1568811960000,"y":0.08},{"x":1568812020000,"y":0.08},{"x":1568812080000,"y":0.09},{"x":1568812140000,"y":0.29},{"x":1568812200000,"y":0.13},{"x":1568812260000,"y":0.08},{"x":1568812320000,"y":0.1},{"x":1568812380000,"y":0.07},{"x":1568812440000,"y":0.21},{"x":1568812500000,"y":0.14},{"x":1568812560000,"y":0.08},{"x":1568812620000,"y":0.1},{"x":1568812680000,"y":0.09},{"x":1568812740000,"y":0.21},{"x":1568812800000,"y":0.12},{"x":1568812860000,"y":0.1},{"x":1568812920000,"y":0.06},{"x":1568812980000,"y":0.12},{"x":1568813040000,"y":0.09},{"x":1568813100000,"y":0.33},{"x":1568813160000,"y":0.1},{"x":1568813220000,"y":0.09},{"x":1568813280000,"y":0.09},{"x":1568813340000,"y":0.1},{"x":1568813400000,"y":0.4},{"x":1568813460000,"y":0.08},{"x":1568813520000,"y":0.06},{"x":1568813580000,"y":0.13},{"x":1568813640000,"y":0.07},{"x":1568813700000,"y":0.29},{"x":1568813760000,"y":0.09},{"x":1568813820000,"y":0.07},{"x":1568813880000,"y":0.06},{"x":1568813940000,"y":0.19},{"x":1568814000000,"y":0.32},{"x":1568814060000,"y":0.07},{"x":1568814120000,"y":0.08},{"x":1568814180000,"y":0.1},{"x":1568814240000,"y":0.07},{"x":1568814300000,"y":0.32},{"x":1568814360000,"y":0.07},{"x":1568814420000,"y":0.12},{"x":1568814480000,"y":0.1},{"x":1568814540000,"y":0.06},{"x":1568814600000,"y":0.28},{"x":1568814660000,"y":0.06},{"x":1568814720000,"y":0.06},{"x":1568814780000,"y":0.08},{"x":1568814840000,"y":0.08},{"x":1568814900000,"y":0.22},{"x":1568814960000,"y":0.11},{"x":1568815020000,"y":0.07},{"x":1568815080000,"y":0.06},{"x":1568815140000,"y":0.1},{"x":1568815200000,"y":0.3},{"x":1568815260000,"y":0.1},{"x":1568815320000,"y":0.07},{"x":1568815380000,"y":0.07},{"x":1568815440000,"y":0.09},{"x":1568815500000,"y":0.16},{"x":1568815560000,"y":0.27},{"x":1568815620000,"y":0.07},{"x":1568815680000,"y":0.09},{"x":1568815740000,"y":0.26},{"x":1568815800000,"y":0.14},{"x":1568815860000,"y":0.22},{"x":1568815920000,"y":0.08},{"x":1568815980000,"y":0.11},{"x":1568816040000,"y":0.06},{"x":1568816100000,"y":0.15},{"x":1568816160000,"y":0.24},{"x":1568816220000,"y":0.11},{"x":1568816280000,"y":0.08},{"x":1568816340000,"y":0.1},{"x":1568816400000,"y":0.16},{"x":1568816460000,"y":0.23},{"x":1568816520000,"y":0.08},{"x":1568816580000,"y":0.07},{"x":1568816640000,"y":0.09},{"x":1568816700000,"y":0.13},{"x":1568816760000,"y":0.25},{"x":1568816820000,"y":0.12},{"x":1568816880000,"y":0.1},{"x":1568816940000,"y":0.07},{"x":1568817000000,"y":0.2},{"x":1568817060000,"y":0.24},{"x":1568817120000,"y":0.07},{"x":1568817180000,"y":0.67},{"x":1568817240000,"y":0.09},{"x":1568817300000,"y":0.15},{"x":1568817360000,"y":0.19},{"x":1568817420000,"y":0.23},{"x":1568817480000,"y":0.14},{"x":1568817540000,"y":0.17},{"x":1568817600000,"y":0.22},{"x":1568817660000,"y":0.1},{"x":1568817720000,"y":0.28},{"x":1568817780000,"y":0.17},{"x":1568817840000,"y":0.13},{"x":1568817900000,"y":0.14},{"x":1568817960000,"y":0.12},{"x":1568818020000,"y":0.27},{"x":1568818080000,"y":0.13},{"x":1568818140000,"y":0.08},{"x":1568818200000,"y":0.16},{"x":1568818260000,"y":0.1},{"x":1568818320000,"y":0.22},{"x":1568818380000,"y":0.09},{"x":1568818440000,"y":0.09},{"x":1568818500000,"y":0.17},{"x":1568818560000,"y":0.11},{"x":1568818620000,"y":0.28},{"x":1568818680000,"y":0.12},{"x":1568818740000,"y":0.11},{"x":1568818800000,"y":0.17},{"x":1568818860000,"y":0.18},{"x":1568818920000,"y":0.27},{"x":1568818980000,"y":0.12},{"x":1568819040000,"y":0.15},{"x":1568819100000,"y":0.2},{"x":1568819160000,"y":0.16},{"x":1568819220000,"y":0.3},{"x":1568819280000,"y":0.17},{"x":1568819340000,"y":0.24},{"x":1568819400000,"y":0.27},{"x":1568819460000,"y":0.17},{"x":1568819520000,"y":0.34},{"x":1568819580000,"y":0.17},{"x":1568819640000,"y":0.19},{"x":1568819700000,"y":0.21},{"x":1568819760000,"y":0.16},{"x":1568819820000,"y":0.19},{"x":1568819880000,"y":0.3},{"x":1568819940000,"y":0.16},{"x":1568820000000,"y":0.24},{"x":1568820060000,"y":0.17},{"x":1568820120000,"y":0.14},{"x":1568820180000,"y":0.27},{"x":1568820240000,"y":0.15},{"x":1568820300000,"y":0.21},{"x":1568820360000,"y":0.14},{"x":1568820420000,"y":0.16},{"x":1568820480000,"y":0.28},{"x":1568820540000,"y":0.17},{"x":1568820600000,"y":0.22},{"x":1568820660000,"y":0.15},{"x":1568820720000,"y":0.17},{"x":1568820780000,"y":0.41},{"x":1568820840000,"y":0.16},{"x":1568820900000,"y":0.19},{"x":1568820960000,"y":0.14},{"x":1568821020000,"y":0.15},{"x":1568821080000,"y":0.27},{"x":1568821140000,"y":0.19},{"x":1568821200000,"y":0.21},{"x":1568821260000,"y":0.16},{"x":1568821320000,"y":0.13},{"x":1568821380000,"y":0.29},{"x":1568821440000,"y":0.14},{"x":1568821500000,"y":0.2},{"x":1568821560000,"y":0.15},{"x":1568821620000,"y":0.14},{"x":1568821680000,"y":0.3},{"x":1568821740000,"y":0.17},{"x":1568821800000,"y":0.19},{"x":1568821860000,"y":0.14},{"x":1568821920000,"y":0.16},{"x":1568821980000,"y":0.12},{"x":1568822040000,"y":4.76},{"x":1568822100000,"y":0.2},{"x":1568822160000,"y":0.13},{"x":1568822220000,"y":0.17},{"x":1568822280000,"y":0.15},{"x":1568822340000,"y":0.31},{"x":1568822400000,"y":0.22},{"x":1568822460000,"y":0.16},{"x":1568822520000,"y":0.15},{"x":1568822580000,"y":0.17},{"x":1568822640000,"y":0.28},{"x":1568822700000,"y":0.23},{"x":1568822760000,"y":0.15},{"x":1568822820000,"y":0.17},{"x":1568822880000,"y":0.14},{"x":1568822940000,"y":0.31},{"x":1568823000000,"y":0.18},{"x":1568823060000,"y":0.15},{"x":1568823120000,"y":0.15},{"x":1568823180000,"y":0.16},{"x":1568823240000,"y":0.27},{"x":1568823300000,"y":0.21},{"x":1568823360000,"y":0.14},{"x":1568823420000,"y":0.15},{"x":1568823480000,"y":0.16},{"x":1568823540000,"y":0.3},{"x":1568823600000,"y":0.21},{"x":1568823660000,"y":0.15},{"x":1568823720000,"y":0.17},{"x":1568823780000,"y":0.16},{"x":1568823840000,"y":0.27},{"x":1568823900000,"y":0.21},{"x":1568823960000,"y":0.15},{"x":1568824020000,"y":0.14},{"x":1568824080000,"y":0.17},{"x":1568824140000,"y":0.27},{"x":1568824200000,"y":0.18},{"x":1568824260000,"y":0.15},{"x":1568824320000,"y":0.14},{"x":1568824380000,"y":0.15},{"x":1568824440000,"y":0.16},{"x":1568824500000,"y":0.35},{"x":1568824560000,"y":0.14},{"x":1568824620000,"y":0.17},{"x":1568824680000,"y":0.15},{"x":1568824740000,"y":0.18},{"x":1568824800000,"y":0.39},{"x":1568824860000,"y":0.79},{"x":1568824920000,"y":0.16},{"x":1568824980000,"y":0.15},{"x":1568825040000,"y":0.15},{"x":1568825100000,"y":0.32},{"x":1568825160000,"y":0.16},{"x":1568825220000,"y":0.2},{"x":1568825280000,"y":0.17},{"x":1568825340000,"y":0.13},{"x":1568825400000,"y":0.33},{"x":1568825460000,"y":0.15},{"x":1568825520000,"y":0.14},{"x":1568825580000,"y":0.16},{"x":1568825640000,"y":0.13},{"x":1568825700000,"y":0.34},{"x":1568825760000,"y":0.15},{"x":1568825820000,"y":0.15},{"x":1568825880000,"y":0.15},{"x":1568825940000,"y":0.12},{"x":1568826000000,"y":0.43},{"x":1568826060000,"y":0.16},{"x":1568826120000,"y":0.15},{"x":1568826180000,"y":0.15},{"x":1568826240000,"y":0.17},{"x":1568826300000,"y":0.33},{"x":1568826360000,"y":0.15},{"x":1568826420000,"y":0.19},{"x":1568826480000,"y":0.17},{"x":1568826540000,"y":0.19},{"x":1568826600000,"y":0.43},{"x":1568826660000,"y":0.2},{"x":1568826720000,"y":0.15},{"x":1568826780000,"y":0.15},{"x":1568826840000,"y":0.15},{"x":1568826900000,"y":0.22},{"x":1568826960000,"y":0.3},{"x":1568827020000,"y":0.14},{"x":1568827080000,"y":0.17},{"x":1568827140000,"y":0.15},{"x":1568827200000,"y":0.21},{"x":1568827260000,"y":0.29},{"x":1568827320000,"y":0.16},{"x":1568827380000,"y":0.14},{"x":1568827440000,"y":0.14},{"x":1568827500000,"y":0.22},{"x":1568827560000,"y":0.28},{"x":1568827620000,"y":0.13},{"x":1568827680000,"y":0.13},{"x":1568827740000,"y":0.13},{"x":1568827800000,"y":0.2},{"x":1568827860000,"y":0.28},{"x":1568827920000,"y":0.15},{"x":1568827980000,"y":0.14},{"x":1568828040000,"y":0.13},{"x":1568828100000,"y":0.17},{"x":1568828160000,"y":0.27},{"x":1568828220000,"y":0.12},{"x":1568828280000,"y":0.15},{"x":1568828340000,"y":0.19},{"x":1568828400000,"y":0.34},{"x":1568828460000,"y":0.28},{"x":1568828520000,"y":0.12},{"x":1568828580000,"y":0.1},{"x":1568828640000,"y":0.08},{"x":1568828700000,"y":0.17},{"x":1568828760000,"y":0.22},{"x":1568828820000,"y":0.1},{"x":1568828880000,"y":0.08},{"x":1568828940000,"y":0.05},{"x":1568829000000,"y":0.17},{"x":1568829060000,"y":0.07},{"x":1568829120000,"y":0.22},{"x":1568829180000,"y":0.08},{"x":1568829240000,"y":0.06},{"x":1568829300000,"y":0.1},{"x":1568829360000,"y":0.07},{"x":1568829420000,"y":0.18},{"x":1568829480000,"y":0.07},{"x":1568829540000,"y":0.05},{"x":1568829600000,"y":0.17},{"x":1568829660000,"y":0.07},{"x":1568829720000,"y":0.19},{"x":1568829780000,"y":0.07},{"x":1568829840000,"y":0.07},{"x":1568829900000,"y":0.11},{"x":1568829960000,"y":0.1},{"x":1568830020000,"y":0.22},{"x":1568830080000,"y":0.1},{"x":1568830140000,"y":0.15},{"x":1568830200000,"y":0.16},{"x":1568830260000,"y":0.11},{"x":1568830320000,"y":1.5},{"x":1568830380000,"y":0.07},{"x":1568830440000,"y":0.07},{"x":1568830500000,"y":0.13},{"x":1568830560000,"y":0.06},{"x":1568830620000,"y":0.21},{"x":1568830680000,"y":0.06},{"x":1568830740000,"y":0.05},{"x":1568830800000,"y":0.15},{"x":1568830860000,"y":0.06},{"x":1568830920000,"y":0.2},{"x":1568830980000,"y":0.07},{"x":1568831040000,"y":0.06},{"x":1568831100000,"y":0.18},{"x":1568831160000,"y":0.05},{"x":1568831220000,"y":0.2},{"x":1568831280000,"y":0.07},{"x":1568831340000,"y":0.06},{"x":1568831400000,"y":0.17},{"x":1568831460000,"y":0.04},{"x":1568831520000,"y":0.2},{"x":1568831580000,"y":0.06},{"x":1568831640000,"y":0.32},{"x":1568831700000,"y":0.13},{"x":1568831760000,"y":0.12},{"x":1568831820000,"y":0.05},{"x":1568831880000,"y":0.58},{"x":1568831940000,"y":0.18},{"x":1568832000000,"y":0.13},{"x":1568832060000,"y":0.08},{"x":1568832120000,"y":0.06},{"x":1568832180000,"y":0.24},{"x":1568832240000,"y":0.05},{"x":1568832300000,"y":0.13},{"x":1568832360000,"y":0.05},{"x":1568832420000,"y":0.06},{"x":1568832480000,"y":0.18},{"x":1568832540000,"y":0.08},{"x":1568832600000,"y":0.1},{"x":1568832660000,"y":0.04},{"x":1568832720000,"y":0.07},{"x":1568832780000,"y":0.21},{"x":1568832840000,"y":0.05},{"x":1568832900000,"y":0.1},{"x":1568832960000,"y":0.05},{"x":1568833020000,"y":0.05},{"x":1568833080000,"y":0.19},{"x":1568833140000,"y":0.07},{"x":1568833200000,"y":0.19},{"x":1568833260000,"y":0.1},{"x":1568833320000,"y":0.05},{"x":1568833380000,"y":0.18},{"x":1568833440000,"y":0.06},{"x":1568833500000,"y":0.14},{"x":1568833560000,"y":0.07},{"x":1568833620000,"y":0.06},{"x":1568833680000,"y":0.17},{"x":1568833740000,"y":0.16},{"x":1568833800000,"y":0.1},{"x":1568833860000,"y":0.07},{"x":1568833920000,"y":0.33},{"x":1568833980000,"y":0.2},{"x":1568834040000,"y":0.05},{"x":1568834100000,"y":0.17},{"x":1568834160000,"y":0.05},{"x":1568834220000,"y":0.05},{"x":1568834280000,"y":0.07},{"x":1568834340000,"y":0.21},{"x":1568834400000,"y":0.17},{"x":1568834460000,"y":0.05},{"x":1568834520000,"y":0.07},{"x":1568834580000,"y":0.07},{"x":1568834640000,"y":0.2},{"x":1568834700000,"y":0.1},{"x":1568834760000,"y":0.05},{"x":1568834820000,"y":0.05},{"x":1568834880000,"y":0.04},{"x":1568834940000,"y":0.19},{"x":1568835000000,"y":0.08},{"x":1568835060000,"y":0.05},{"x":1568835120000,"y":0.05},{"x":1568835180000,"y":0.06},{"x":1568835240000,"y":0.18},{"x":1568835300000,"y":0.15},{"x":1568835360000,"y":0.05},{"x":1568835420000,"y":0.07},{"x":1568835480000,"y":0.09},{"x":1568835540000,"y":0.3},{"x":1568835600000,"y":0.11},{"x":1568835660000,"y":0.05},{"x":1568835720000,"y":0.1},{"x":1568835780000,"y":0.05},{"x":1568835840000,"y":0.2},{"x":1568835900000,"y":0.15},{"x":1568835960000,"y":0.06},{"x":1568836020000,"y":0.06},{"x":1568836080000,"y":0.07},{"x":1568836140000,"y":0.2},{"x":1568836200000,"y":0.16},{"x":1568836260000,"y":0.07},{"x":1568836320000,"y":0.1},{"x":1568836380000,"y":0.05},{"x":1568836440000,"y":0.21},{"x":1568836500000,"y":0.16},{"x":1568836560000,"y":0.05},{"x":1568836620000,"y":0.07},{"x":1568836680000,"y":0.07},{"x":1568836740000,"y":0.18},{"x":1568836800000,"y":0.21},{"x":1568836860000,"y":0.08},{"x":1568836920000,"y":0.06},{"x":1568836980000,"y":0.05},{"x":1568837040000,"y":0.05},{"x":1568837100000,"y":0.29},{"x":1568837160000,"y":0.07},{"x":1568837220000,"y":0.05},{"x":1568837280000,"y":0.07},{"x":1568837340000,"y":0.13},{"x":1568837400000,"y":0.25},{"x":1568837460000,"y":0.06},{"x":1568837520000,"y":0.06},{"x":1568837580000,"y":0.17},{"x":1568837640000,"y":0.04},{"x":1568837700000,"y":0.25},{"x":1568837760000,"y":0.08},{"x":1568837820000,"y":0.07},{"x":1568837880000,"y":0.05},{"x":1568837940000,"y":0.05},{"x":1568838000000,"y":0.25},{"x":1568838060000,"y":0.06},{"x":1568838120000,"y":0.06},{"x":1568838180000,"y":0.05},{"x":1568838240000,"y":0.07},{"x":1568838300000,"y":0.25},{"x":1568838360000,"y":0.05},{"x":1568838420000,"y":0.06},{"x":1568838480000,"y":0.05},{"x":1568838540000,"y":0.06},{"x":1568838600000,"y":0.24},{"x":1568838660000,"y":0.06},{"x":1568838720000,"y":0.05},{"x":1568838780000,"y":0.06},{"x":1568838840000,"y":0.07},{"x":1568838900000,"y":0.26},{"x":1568838960000,"y":0.07},{"x":1568839020000,"y":0.06},{"x":1568839080000,"y":0.05},{"x":1568839140000,"y":0.15},{"x":1568839200000,"y":0.24},{"x":1568839260000,"y":0.16},{"x":1568839320000,"y":0.07},{"x":1568839380000,"y":0.06},{"x":1568839440000,"y":0.06},{"x":1568839500000,"y":0.19},{"x":1568839560000,"y":0.21},{"x":1568839620000,"y":0.07},{"x":1568839680000,"y":0.07},{"x":1568839740000,"y":0.1},{"x":1568839800000,"y":0.19},{"x":1568839860000,"y":0.18},{"x":1568839920000,"y":0.06},{"x":1568839980000,"y":0.06},{"x":1568840040000,"y":0.07},{"x":1568840100000,"y":0.1},{"x":1568840160000,"y":0.19},{"x":1568840220000,"y":0.05},{"x":1568840280000,"y":0.06},{"x":1568840340000,"y":0.04},{"x":1568840400000,"y":0.17},{"x":1568840460000,"y":0.19},{"x":1568840520000,"y":0.06},{"x":1568840580000,"y":0.06},{"x":1568840640000,"y":0.04},{"x":1568840700000,"y":0.13},{"x":1568840760000,"y":0.2},{"x":1568840820000,"y":0.05},{"x":1568840880000,"y":0.05},{"x":1568840940000,"y":0.15},{"x":1568841000000,"y":0.1},{"x":1568841060000,"y":0.19},{"x":1568841120000,"y":0.07},{"x":1568841180000,"y":0.06},{"x":1568841240000,"y":0.05},{"x":1568841300000,"y":0.14},{"x":1568841360000,"y":0.21},{"x":1568841420000,"y":0.09},{"x":1568841480000,"y":0.06},{"x":1568841540000,"y":0.05},{"x":1568841600000,"y":0.13},{"x":1568841660000,"y":0.06},{"x":1568841720000,"y":0.19},{"x":1568841780000,"y":0.09},{"x":1568841840000,"y":0.05},{"x":1568841900000,"y":0.22},{"x":1568841960000,"y":0.07},{"x":1568842020000,"y":0.21},{"x":1568842080000,"y":0.07},{"x":1568842140000,"y":0.07},{"x":1568842200000,"y":0.09},{"x":1568842260000,"y":0.07},{"x":1568842320000,"y":0.19},{"x":1568842380000,"y":0.05},{"x":1568842440000,"y":0.06},{"x":1568842500000,"y":0.11},{"x":1568842560000,"y":0.07},{"x":1568842620000,"y":0.2},{"x":1568842680000,"y":0.07},{"x":1568842740000,"y":0.13},{"x":1568842800000,"y":0.1},{"x":1568842860000,"y":0.06},{"x":1568842920000,"y":0.17},{"x":1568842980000,"y":0.05},{"x":1568843040000,"y":0.06},{"x":1568843100000,"y":0.12},{"x":1568843160000,"y":0.06},{"x":1568843220000,"y":0.2},{"x":1568843280000,"y":0.07},{"x":1568843340000,"y":0.06},{"x":1568843400000,"y":0.12},{"x":1568843460000,"y":0.04},{"x":1568843520000,"y":0.18},{"x":1568843580000,"y":0.06},{"x":1568843640000,"y":0.06},{"x":1568843700000,"y":0.11},{"x":1568843760000,"y":0.05},{"x":1568843820000,"y":3.67},{"x":1568843880000,"y":1.29},{"x":1568843940000,"y":0.06},{"x":1568844000000,"y":0.16},{"x":1568844060000,"y":0.07},{"x":1568844120000,"y":0.07},{"x":1568844180000,"y":0.2},{"x":1568844240000,"y":0.07},{"x":1568844300000,"y":0.15},{"x":1568844360000,"y":0.05},{"x":1568844420000,"y":0.06},{"x":1568844480000,"y":0.18},{"x":1568844540000,"y":0.13},{"x":1568844600000,"y":0.14},{"x":1568844660000,"y":0.07},{"x":1568844720000,"y":0.07},{"x":1568844780000,"y":0.21},{"x":1568844840000,"y":0.05},{"x":1568844900000,"y":0.17},{"x":1568844960000,"y":0.04},{"x":1568845020000,"y":0.06},{"x":1568845080000,"y":0.22},{"x":1568845140000,"y":0.05},{"x":1568845200000,"y":0.12},{"x":1568845260000,"y":0.06},{"x":1568845320000,"y":0.07},{"x":1568845380000,"y":0.18},{"x":1568845440000,"y":0.05},{"x":1568845500000,"y":0.12},{"x":1568845560000,"y":0.08},{"x":1568845620000,"y":0.06},{"x":1568845680000,"y":0.2},{"x":1568845740000,"y":0.1},{"x":1568845800000,"y":0.1},{"x":1568845860000,"y":0.07},{"x":1568845920000,"y":0.08},{"x":1568845980000,"y":0.19},{"x":1568846040000,"y":0.06},{"x":1568846100000,"y":0.12},{"x":1568846160000,"y":0.06},{"x":1568846220000,"y":0.06},{"x":1568846280000,"y":0.08},{"x":1568846340000,"y":0.32},{"x":1568846400000,"y":0.16},{"x":1568846460000,"y":0.07},{"x":1568846520000,"y":0.1},{"x":1568846580000,"y":0.07},{"x":1568846640000,"y":0.2},{"x":1568846700000,"y":0.11},{"x":1568846760000,"y":0.07},{"x":1568846820000,"y":0.07},{"x":1568846880000,"y":0.07},{"x":1568846940000,"y":0.2},{"x":1568847000000,"y":0.13},{"x":1568847060000,"y":0.05},{"x":1568847120000,"y":0.05},{"x":1568847180000,"y":0.06},{"x":1568847240000,"y":0.2},{"x":1568847300000,"y":0.09},{"x":1568847360000,"y":0.04},{"x":1568847420000,"y":0.05},{"x":1568847480000,"y":0.07},{"x":1568847540000,"y":0.22},{"x":1568847600000,"y":0.16},{"x":1568847660000,"y":0.08},{"x":1568847720000,"y":0.05},{"x":1568847780000,"y":0.07},{"x":1568847840000,"y":0.18},{"x":1568847900000,"y":0.15},{"x":1568847960000,"y":0.06},{"x":1568848020000,"y":0.07},{"x":1568848080000,"y":0.06},{"x":1568848140000,"y":0.24},{"x":1568848200000,"y":0.12},{"x":1568848260000,"y":0.06},{"x":1568848320000,"y":0.05},{"x":1568848380000,"y":0.24},{"x":1568848440000,"y":0.22},{"x":1568848500000,"y":0.09},{"x":1568848560000,"y":0.07},{"x":1568848620000,"y":0.07},{"x":1568848680000,"y":0.11},{"x":1568848740000,"y":0.08},{"x":1568848800000,"y":0.26},{"x":1568848860000,"y":0.07},{"x":1568848920000,"y":0.05},{"x":1568848980000,"y":0.06},{"x":1568849040000,"y":0.05},{"x":1568849100000,"y":0.27},{"x":1568849160000,"y":0.04},{"x":1568849220000,"y":0.05},{"x":1568849280000,"y":0.04},{"x":1568849340000,"y":0.06},{"x":1568849400000,"y":0.22},{"x":1568849460000,"y":0.06},{"x":1568849520000,"y":0.06},{"x":1568849580000,"y":0.05},{"x":1568849640000,"y":0.04},{"x":1568849700000,"y":0.26},{"x":1568849760000,"y":0.07},{"x":1568849820000,"y":2.68},{"x":1568849880000,"y":0.08},{"x":1568849940000,"y":0.16},{"x":1568850000000,"y":0.23},{"x":1568850060000,"y":0.05},{"x":1568850120000,"y":0.07},{"x":1568850180000,"y":0.06},{"x":1568850240000,"y":0.05},{"x":1568850300000,"y":0.26},{"x":1568850360000,"y":0.06},{"x":1568850420000,"y":0.09},{"x":1568850480000,"y":0.07},{"x":1568850540000,"y":0.1},{"x":1568850600000,"y":0.25},{"x":1568850660000,"y":0.05},{"x":1568850720000,"y":0.04},{"x":1568850780000,"y":0.07},{"x":1568850840000,"y":0.11},{"x":1568850900000,"y":0.29},{"x":1568850960000,"y":0.15},{"x":1568851020000,"y":0.16},{"x":1568851080000,"y":0.13},{"x":1568851140000,"y":0.07},{"x":1568851200000,"y":0.08},{"x":1568851260000,"y":0.19},{"x":1568851320000,"y":0.05},{"x":1568851380000,"y":0.14},{"x":1568851440000,"y":0.12},{"x":1568851500000,"y":0.1},{"x":1568851560000,"y":0.2},{"x":1568851620000,"y":0.11},{"x":1568851680000,"y":0.09},{"x":1568851740000,"y":0.2},{"x":1568851800000,"y":0.11},{"x":1568851860000,"y":0.2},{"x":1568851920000,"y":0.08},{"x":1568851980000,"y":0.15},{"x":1568852040000,"y":0.1},{"x":1568852100000,"y":0.15},{"x":1568852160000,"y":0.23},{"x":1568852220000,"y":0.09},{"x":1568852280000,"y":0.1},{"x":1568852340000,"y":0.1},{"x":1568852400000,"y":0.2},{"x":1568852460000,"y":0.25},{"x":1568852520000,"y":0.12},{"x":1568852580000,"y":0.11},{"x":1568852640000,"y":0.12},{"x":1568852700000,"y":0.16},{"x":1568852760000,"y":0.27},{"x":1568852820000,"y":0.14},{"x":1568852880000,"y":0.15},{"x":1568852940000,"y":0.13},{"x":1568853000000,"y":0.19},{"x":1568853060000,"y":0.26},{"x":1568853120000,"y":0.15},{"x":1568853180000,"y":0.13},{"x":1568853240000,"y":0.12},{"x":1568853300000,"y":0.17},{"x":1568853360000,"y":0.12},{"x":1568853420000,"y":1.06},{"x":1568853480000,"y":0.14},{"x":1568853540000,"y":0.2},{"x":1568853600000,"y":0.2},{"x":1568853660000,"y":0.12},{"x":1568853720000,"y":0.27},{"x":1568853780000,"y":0.12},{"x":1568853840000,"y":0.13},{"x":1568853900000,"y":0.19},{"x":1568853960000,"y":0.13},{"x":1568854020000,"y":0.27},{"x":1568854080000,"y":0.13},{"x":1568854140000,"y":0.15},{"x":1568854200000,"y":0.25},{"x":1568854260000,"y":0.12},{"x":1568854320000,"y":0.27},{"x":1568854380000,"y":0.14},{"x":1568854440000,"y":0.13},{"x":1568854500000,"y":0.19},{"x":1568854560000,"y":0.13},{"x":1568854620000,"y":0.27},{"x":1568854680000,"y":0.12},{"x":1568854740000,"y":0.13},{"x":1568854800000,"y":0.2},{"x":1568854860000,"y":0.12},{"x":1568854920000,"y":0.27},{"x":1568854980000,"y":0.14},{"x":1568855040000,"y":0.14},{"x":1568855100000,"y":0.17},{"x":1568855160000,"y":0.14},{"x":1568855220000,"y":0.26},{"x":1568855280000,"y":0.13},{"x":1568855340000,"y":0.16},{"x":1568855400000,"y":0.19},{"x":1568855460000,"y":0.12},{"x":1568855520000,"y":0.27},{"x":1568855580000,"y":0.14},{"x":1568855640000,"y":0.13},{"x":1568855700000,"y":0.18},{"x":1568855760000,"y":0.12},{"x":1568855820000,"y":0.15},{"x":1568855880000,"y":0.27},{"x":1568855940000,"y":0.12},{"x":1568856000000,"y":0.16},{"x":1568856060000,"y":0.12},{"x":1568856120000,"y":0.15},{"x":1568856180000,"y":0.26},{"x":1568856240000,"y":0.13},{"x":1568856300000,"y":0.16},{"x":1568856360000,"y":0.12},{"x":1568856420000,"y":0.13},{"x":1568856480000,"y":0.27},{"x":1568856540000,"y":0.13},{"x":1568856600000,"y":0.24},{"x":1568856660000,"y":0.13},{"x":1568856720000,"y":0.14},{"x":1568856780000,"y":0.26},{"x":1568856840000,"y":0.13},{"x":1568856900000,"y":0.2},{"x":1568856960000,"y":0.12},{"x":1568857020000,"y":0.13},{"x":1568857080000,"y":0.29},{"x":1568857140000,"y":0.21},{"x":1568857200000,"y":0.2},{"x":1568857260000,"y":0.13},{"x":1568857320000,"y":0.15},{"x":1568857380000,"y":0.27},{"x":1568857440000,"y":0.13},{"x":1568857500000,"y":0.2},{"x":1568857560000,"y":0.14},{"x":1568857620000,"y":0.13},{"x":1568857680000,"y":0.27},{"x":1568857740000,"y":0.17},{"x":1568857800000,"y":0.16},{"x":1568857860000,"y":0.14},{"x":1568857920000,"y":0.14},{"x":1568857980000,"y":0.28},{"x":1568858040000,"y":0.15},{"x":1568858100000,"y":0.19},{"x":1568858160000,"y":0.14},{"x":1568858220000,"y":0.13},{"x":1568858280000,"y":0.14},{"x":1568858340000,"y":0.27},{"x":1568858400000,"y":0.18},{"x":1568858460000,"y":0.13},{"x":1568858520000,"y":0.13},{"x":1568858580000,"y":0.14},{"x":1568858640000,"y":0.27},{"x":1568858700000,"y":0.2},{"x":1568858760000,"y":0.14},{"x":1568858820000,"y":0.14},{"x":1568858880000,"y":0.12},{"x":1568858940000,"y":0.35},{"x":1568859000000,"y":0.21},{"x":1568859060000,"y":0.15},{"x":1568859120000,"y":0.15},{"x":1568859180000,"y":0.12},{"x":1568859240000,"y":0.27},{"x":1568859300000,"y":0.27},{"x":1568859360000,"y":0.15},{"x":1568859420000,"y":0.15},{"x":1568859480000,"y":0.14},{"x":1568859540000,"y":0.27},{"x":1568859600000,"y":0.2},{"x":1568859660000,"y":0.13},{"x":1568859720000,"y":0.15},{"x":1568859780000,"y":0.13},{"x":1568859840000,"y":0.29},{"x":1568859900000,"y":0.2},{"x":1568859960000,"y":0.13},{"x":1568860020000,"y":0.13},{"x":1568860080000,"y":0.13},{"x":1568860140000,"y":0.27},{"x":1568860200000,"y":0.24},{"x":1568860260000,"y":0.13},{"x":1568860320000,"y":0.15},{"x":1568860380000,"y":0.13},{"x":1568860440000,"y":0.27},{"x":1568860500000,"y":0.17},{"x":1568860560000,"y":0.14},{"x":1568860620000,"y":0.13},{"x":1568860680000,"y":0.3},{"x":1568860740000,"y":0.23},{"x":1568860800000,"y":0.31},{"x":1568860860000,"y":0.12},{"x":1568860920000,"y":0.14},{"x":1568860980000,"y":0.16},{"x":1568861040000,"y":0.12},{"x":1568861100000,"y":0.32},{"x":1568861160000,"y":0.14},{"x":1568861220000,"y":0.15},{"x":1568861280000,"y":0.14},{"x":1568861340000,"y":0.15},{"x":1568861400000,"y":0.31},{"x":1568861460000,"y":0.15},{"x":1568861520000,"y":0.13},{"x":1568861580000,"y":0.15},{"x":1568861640000,"y":0.14},{"x":1568861700000,"y":0.32},{"x":1568861760000,"y":0.14},{"x":1568861820000,"y":0.12},{"x":1568861880000,"y":0.11},{"x":1568861940000,"y":0.1},{"x":1568862000000,"y":0.29},{"x":1568862060000,"y":0.06},{"x":1568862120000,"y":0.04},{"x":1568862180000,"y":0.07},{"x":1568862240000,"y":0.05},{"x":1568862300000,"y":0.25},{"x":1568862360000,"y":0.06},{"x":1568862420000,"y":0.07},{"x":1568862480000,"y":0.05},{"x":1568862540000,"y":0.13},{"x":1568862600000,"y":0.23},{"x":1568862660000,"y":0.05},{"x":1568862720000,"y":0.05},{"x":1568862780000,"y":0.07},{"x":1568862840000,"y":0.05},{"x":1568862900000,"y":0.22},{"x":1568862960000,"y":0.12},{"x":1568863020000,"y":0.08},{"x":1568863080000,"y":0.03},{"x":1568863140000,"y":0.05},{"x":1568863200000,"y":0.15},{"x":1568863260000,"y":0.17},{"x":1568863320000,"y":0.04},{"x":1568863380000,"y":0.05},{"x":1568863440000,"y":0.05},{"x":1568863500000,"y":0.1},{"x":1568863560000,"y":0.15},{"x":1568863620000,"y":0.06},{"x":1568863680000,"y":0.06},{"x":1568863740000,"y":0.05},{"x":1568863800000,"y":0.07},{"x":1568863860000,"y":0.19},{"x":1568863920000,"y":0.06},{"x":1568863980000,"y":0.05},{"x":1568864040000,"y":0.06},{"x":1568864100000,"y":0.1},{"x":1568864160000,"y":0.2},{"x":1568864220000,"y":0.05},{"x":1568864280000,"y":0.83},{"x":1568864340000,"y":0.12},{"x":1568864400000,"y":0.09},{"x":1568864460000,"y":0.18},{"x":1568864520000,"y":0.07},{"x":1568864580000,"y":0.05},{"x":1568864640000,"y":0.06},{"x":1568864700000,"y":0.09},{"x":1568864760000,"y":0.2},{"x":1568864820000,"y":0.05},{"x":1568864880000,"y":0.08},{"x":1568864940000,"y":0.07},{"x":1568865000000,"y":0.07},{"x":1568865060000,"y":0.18},{"x":1568865120000,"y":0.06},{"x":1568865180000,"y":0.05},{"x":1568865240000,"y":0.06},{"x":1568865300000,"y":0.1},{"x":1568865360000,"y":0.06},{"x":1568865420000,"y":0.18},{"x":1568865480000,"y":0.04},{"x":1568865540000,"y":0.05},{"x":1568865600000,"y":0.14},{"x":1568865660000,"y":0.05},{"x":1568865720000,"y":4.9},{"x":1568865780000,"y":0.05},{"x":1568865840000,"y":0.06},{"x":1568865900000,"y":0.12},{"x":1568865960000,"y":0.04},{"x":1568866020000,"y":0.19},{"x":1568866080000,"y":0.04},{"x":1568866140000,"y":0.11},{"x":1568866200000,"y":0.15},{"x":1568866260000,"y":0.04},{"x":1568866320000,"y":0.2},{"x":1568866380000,"y":0.05},{"x":1568866440000,"y":0.03},{"x":1568866500000,"y":0.11},{"x":1568866560000,"y":0.07},{"x":1568866620000,"y":0.22},{"x":1568866680000,"y":0.05},{"x":1568866740000,"y":0.05},{"x":1568866800000,"y":0.1},{"x":1568866860000,"y":0.05},{"x":1568866920000,"y":0.17},{"x":1568866980000,"y":0.05},{"x":1568867040000,"y":0.06},{"x":1568867100000,"y":0.07},{"x":1568867160000,"y":0.04},{"x":1568867220000,"y":0.19},{"x":1568867280000,"y":0.06},{"x":1568867340000,"y":0.05},{"x":1568867400000,"y":0.1},{"x":1568867460000,"y":0.06},{"x":1568867520000,"y":0.18},{"x":1568867580000,"y":0.08},{"x":1568867640000,"y":0.06},{"x":1568867700000,"y":0.1},{"x":1568867760000,"y":0.06},{"x":1568867820000,"y":0.18},{"x":1568867880000,"y":0.05},{"x":1568867940000,"y":0.3},{"x":1568868000000,"y":0.1},{"x":1568868060000,"y":0.07},{"x":1568868120000,"y":0.05},{"x":1568868180000,"y":0.21},{"x":1568868240000,"y":0.06},{"x":1568868300000,"y":0.11},{"x":1568868360000,"y":0.05},{"x":1568868420000,"y":0.05},{"x":1568868480000,"y":0.19},{"x":1568868540000,"y":0.06},{"x":1568868600000,"y":0.09},{"x":1568868660000,"y":0.07},{"x":1568868720000,"y":0.05},{"x":1568868780000,"y":0.21},{"x":1568868840000,"y":0.08},{"x":1568868900000,"y":0.16},{"x":1568868960000,"y":0.06},{"x":1568869020000,"y":0.06},{"x":1568869080000,"y":0.19},{"x":1568869140000,"y":0.05},{"x":1568869200000,"y":5.76},{"x":1568869260000,"y":0.18},{"x":1568869320000,"y":0.05},{"x":1568869380000,"y":0.18},{"x":1568869440000,"y":0.05},{"x":1568869500000,"y":0.11},{"x":1568869560000,"y":0.05},{"x":1568869620000,"y":0.06},{"x":1568869680000,"y":0.19},{"x":1568869740000,"y":0.11},{"x":1568869800000,"y":0.09},{"x":1568869860000,"y":0.07},{"x":1568869920000,"y":0.06},{"x":1568869980000,"y":0.17},{"x":1568870040000,"y":0.07},{"x":1568870100000,"y":0.1},{"x":1568870160000,"y":0.05},{"x":1568870220000,"y":0.05},{"x":1568870280000,"y":0.2},{"x":1568870340000,"y":0.07},{"x":1568870400000,"y":0.08},{"x":1568870460000,"y":0.06},{"x":1568870520000,"y":0.06},{"x":1568870580000,"y":0.05},{"x":1568870640000,"y":0.2},{"x":1568870700000,"y":0.1},{"x":1568870760000,"y":0.08},{"x":1568870820000,"y":0.05},{"x":1568870880000,"y":0.09},{"x":1568870940000,"y":0.21},{"x":1568871000000,"y":0.12},{"x":1568871060000,"y":0.03},{"x":1568871120000,"y":0.05},{"x":1568871180000,"y":0.05},{"x":1568871240000,"y":0.2},{"x":1568871300000,"y":0.08},{"x":1568871360000,"y":0.08},{"x":1568871420000,"y":0.05},{"x":1568871480000,"y":0.05},{"x":1568871540000,"y":1.31},{"x":1568871600000,"y":0.1},{"x":1568871660000,"y":0.05},{"x":1568871720000,"y":0.07},{"x":1568871780000,"y":0.05},{"x":1568871840000,"y":0.2},{"x":1568871900000,"y":0.12},{"x":1568871960000,"y":0.09},{"x":1568872020000,"y":0.07},{"x":1568872080000,"y":0.06},{"x":1568872140000,"y":0.19},{"x":1568872200000,"y":0.11},{"x":1568872260000,"y":0.05},{"x":1568872320000,"y":0.03},{"x":1568872380000,"y":0.07},{"x":1568872440000,"y":0.17},{"x":1568872500000,"y":0.11},{"x":1568872560000,"y":0.05},{"x":1568872620000,"y":0.07},{"x":1568872680000,"y":0.05},{"x":1568872740000,"y":0.2},{"x":1568872800000,"y":0.16},{"x":1568872860000,"y":0.04},{"x":1568872920000,"y":0.05},{"x":1568872980000,"y":0.05},{"x":1568873040000,"y":0.05},{"x":1568873100000,"y":0.25},{"x":1568873160000,"y":0.07},{"x":1568873220000,"y":0.06},{"x":1568873280000,"y":0.06},{"x":1568873340000,"y":0.12},{"x":1568873400000,"y":0.22},{"x":1568873460000,"y":0.07},{"x":1568873520000,"y":0.05},{"x":1568873580000,"y":0.07},{"x":1568873640000,"y":0.05},{"x":1568873700000,"y":0.27},{"x":1568873760000,"y":1.9},{"x":1568873820000,"y":0.07},{"x":1568873880000,"y":0.07},{"x":1568873940000,"y":0.05},{"x":1568874000000,"y":0.25},{"x":1568874060000,"y":0.07},{"x":1568874120000,"y":0.06},{"x":1568874180000,"y":0.05},{"x":1568874240000,"y":0.07},{"x":1568874300000,"y":0.32},{"x":1568874360000,"y":0.06},{"x":1568874420000,"y":0.08},{"x":1568874480000,"y":0.07},{"x":1568874540000,"y":0.05},{"x":1568874600000,"y":0.23},{"x":1568874660000,"y":0.07},{"x":1568874720000,"y":0.06},{"x":1568874780000,"y":0.06},{"x":1568874840000,"y":0.05},{"x":1568874900000,"y":0.24},{"x":1568874960000,"y":0.05},{"x":1568875020000,"y":0.07},{"x":1568875080000,"y":0.07},{"x":1568875140000,"y":0.15},{"x":1568875200000,"y":0.15},{"x":1568875260000,"y":0.2},{"x":1568875320000,"y":0.07},{"x":1568875380000,"y":0.07},{"x":1568875440000,"y":0.05},{"x":1568875500000,"y":0.16},{"x":1568875560000,"y":0.22},{"x":1568875620000,"y":0.06},{"x":1568875680000,"y":0.08},{"x":1568875740000,"y":0.08},{"x":1568875800000,"y":0.07},{"x":1568875860000,"y":0.2},{"x":1568875920000,"y":0.08},{"x":1568875980000,"y":0.05},{"x":1568876040000,"y":0.07},{"x":1568876100000,"y":0.13},{"x":1568876160000,"y":0.23},{"x":1568876220000,"y":0.05},{"x":1568876280000,"y":0.06},{"x":1568876340000,"y":0.06},{"x":1568876400000,"y":0.12},{"x":1568876460000,"y":0.19},{"x":1568876520000,"y":0.06},{"x":1568876580000,"y":0.1},{"x":1568876640000,"y":0.06},{"x":1568876700000,"y":0.1},{"x":1568876760000,"y":0.2},{"x":1568876820000,"y":0.07},{"x":1568876880000,"y":0.06},{"x":1568876940000,"y":0.1},{"x":1568877000000,"y":0.1},{"x":1568877060000,"y":0.2},{"x":1568877120000,"y":0.06},{"x":1568877180000,"y":0.07},{"x":1568877240000,"y":0.07},{"x":1568877300000,"y":0.12},{"x":1568877360000,"y":0.21},{"x":1568877420000,"y":0.06},{"x":1568877480000,"y":0.07},{"x":1568877540000,"y":0.07},{"x":1568877600000,"y":0.19},{"x":1568877660000,"y":0.05},{"x":1568877720000,"y":0.22},{"x":1568877780000,"y":0.07},{"x":1568877840000,"y":0.08},{"x":1568877900000,"y":0.2},{"x":1568877960000,"y":0.05},{"x":1568878020000,"y":0.21},{"x":1568878080000,"y":0.05},{"x":1568878140000,"y":0.08},{"x":1568878200000,"y":0.16},{"x":1568878260000,"y":0.06},{"x":1568878320000,"y":0.19},{"x":1568878380000,"y":0.08},{"x":1568878440000,"y":0.05},{"x":1568878500000,"y":0.14},{"x":1568878560000,"y":0.07},{"x":1568878620000,"y":0.22},{"x":1568878680000,"y":0.08},{"x":1568878740000,"y":0.15},{"x":1568878800000,"y":0.1},{"x":1568878860000,"y":0.09},{"x":1568878920000,"y":0.22},{"x":1568878980000,"y":0.08},{"x":1568879040000,"y":0.05},{"x":1568879100000,"y":0.12},{"x":1568879160000,"y":0.05},{"x":1568879220000,"y":0.19},{"x":1568879280000,"y":0.09},{"x":1568879340000,"y":0.07},{"x":1568879400000,"y":0.14},{"x":1568879460000,"y":0.07},{"x":1568879520000,"y":0.22},{"x":1568879580000,"y":0.05},{"x":1568879640000,"y":0.05},{"x":1568879700000,"y":0.12},{"x":1568879760000,"y":0.06},{"x":1568879820000,"y":0.19},{"x":1568879880000,"y":0.07},{"x":1568879940000,"y":0.12},{"x":1568880000000,"y":0.14},{"x":1568880060000,"y":0.1},{"x":1568880120000,"y":0.07},{"x":1568880180000,"y":0.2},{"x":1568880240000,"y":0.05},{"x":1568880300000,"y":0.13},{"x":1568880360000,"y":0.07},{"x":1568880420000,"y":0.07},{"x":1568880480000,"y":0.2},{"x":1568880540000,"y":0.17},{"x":1568880600000,"y":0.15},{"x":1568880660000,"y":0.07},{"x":1568880720000,"y":0.05},{"x":1568880780000,"y":0.25},{"x":1568880840000,"y":0.07},{"x":1568880900000,"y":0.12},{"x":1568880960000,"y":0.07},{"x":1568881020000,"y":0.08},{"x":1568881080000,"y":0.19},{"x":1568881140000,"y":0.05},{"x":1568881200000,"y":0.14},{"x":1568881260000,"y":0.05},{"x":1568881320000,"y":0.05},{"x":1568881380000,"y":0.18},{"x":1568881440000,"y":0.07},{"x":1568881500000,"y":0.15},{"x":1568881560000,"y":0.05},{"x":1568881620000,"y":0.06},{"x":1568881680000,"y":0.18},{"x":1568881740000,"y":0.05},{"x":1568881800000,"y":0.11},{"x":1568881860000,"y":0.05},{"x":1568881920000,"y":0.05},{"x":1568881980000,"y":0.21},{"x":1568882040000,"y":0.07},{"x":1568882100000,"y":0.1},{"x":1568882160000,"y":0.09},{"x":1568882220000,"y":0.05},{"x":1568882280000,"y":0.19},{"x":1568882340000,"y":0.11},{"x":1568882400000,"y":0.1},{"x":1568882460000,"y":0.06},{"x":1568882520000,"y":0.07},{"x":1568882580000,"y":0.19},{"x":1568882640000,"y":0.07},{"x":1568882700000,"y":0.15},{"x":1568882760000,"y":0.05},{"x":1568882820000,"y":0.06},{"x":1568882880000,"y":0.06},{"x":1568882940000,"y":0.22},{"x":1568883000000,"y":0.14},{"x":1568883060000,"y":0.07},{"x":1568883120000,"y":0.07},{"x":1568883180000,"y":0.06},{"x":1568883240000,"y":0.22},{"x":1568883300000,"y":0.15},{"x":1568883360000,"y":0.09},{"x":1568883420000,"y":0.09},{"x":1568883480000,"y":0.1},{"x":1568883540000,"y":0.2},{"x":1568883600000,"y":0.18},{"x":1568883660000,"y":0.06},{"x":1568883720000,"y":0.09},{"x":1568883780000,"y":0.1},{"x":1568883840000,"y":0.22},{"x":1568883900000,"y":0.15},{"x":1568883960000,"y":0.05},{"x":1568884020000,"y":0.1},{"x":1568884080000,"y":0.1},{"x":1568884140000,"y":0.29},{"x":1568884200000,"y":0.17},{"x":1568884260000,"y":0.05},{"x":1568884320000,"y":0.06},{"x":1568884380000,"y":0.08},{"x":1568884440000,"y":0.23},{"x":1568884500000,"y":0.1},{"x":1568884560000,"y":0.07},{"x":1568884620000,"y":0.13},{"x":1568884680000,"y":0.19},{"x":1568884740000,"y":0.24},{"x":1568884800000,"y":0.1},{"x":1568884860000,"y":0.09},{"x":1568884920000,"y":0.1},{"x":1568884980000,"y":0.07},{"x":1568885040000,"y":0.15},{"x":1568885100000,"y":0.22},{"x":1568885160000,"y":0.07},{"x":1568885220000,"y":0.12},{"x":1568885280000,"y":0.1},{"x":1568885340000,"y":0.12},{"x":1568885400000,"y":0.36},{"x":1568885460000,"y":0.14},{"x":1568885520000,"y":0.12},{"x":1568885580000,"y":0.12},{"x":1568885640000,"y":0.12},{"x":1568885700000,"y":0.27},{"x":1568885760000,"y":0.12},{"x":1568885820000,"y":0.1},{"x":1568885880000,"y":0.09},{"x":1568885940000,"y":0.18},{"x":1568886000000,"y":0.31},{"x":1568886060000,"y":0.15},{"x":1568886120000,"y":0.18},{"x":1568886180000,"y":0.16},{"x":1568886240000,"y":0.13},{"x":1568886300000,"y":0.34},{"x":1568886360000,"y":0.15},{"x":1568886420000,"y":0.17},{"x":1568886480000,"y":0.15},{"x":1568886540000,"y":0.15},{"x":1568886600000,"y":0.37},{"x":1568886660000,"y":0.15},{"x":1568886720000,"y":0.14},{"x":1568886780000,"y":0.15},{"x":1568886840000,"y":0.13},{"x":1568886900000,"y":0.34},{"x":1568886960000,"y":0.14},{"x":1568887020000,"y":0.16},{"x":1568887080000,"y":0.13},{"x":1568887140000,"y":0.16},{"x":1568887200000,"y":0.38},{"x":1568887260000,"y":0.15},{"x":1568887320000,"y":0.16},{"x":1568887380000,"y":0.17},{"x":1568887440000,"y":0.14},{"x":1568887500000,"y":3.45},{"x":1568887560000,"y":0.52},{"x":1568887620000,"y":0.13},{"x":1568887680000,"y":0.15},{"x":1568887740000,"y":0.22},{"x":1568887800000,"y":0.18},{"x":1568887860000,"y":0.32},{"x":1568887920000,"y":0.15},{"x":1568887980000,"y":0.14},{"x":1568888040000,"y":0.13},{"x":1568888100000,"y":0.19},{"x":1568888160000,"y":0.3},{"x":1568888220000,"y":0.14},{"x":1568888280000,"y":0.14},{"x":1568888340000,"y":1.61},{"x":1568888400000,"y":0.2},{"x":1568888460000,"y":0.3},{"x":1568888520000,"y":0.17},{"x":1568888580000,"y":0.15},{"x":1568888640000,"y":0.16},{"x":1568888700000,"y":0.2},{"x":1568888760000,"y":0.3},{"x":1568888820000,"y":0.15},{"x":1568888880000,"y":0.15},{"x":1568888940000,"y":0.14},{"x":1568889000000,"y":0.22},{"x":1568889060000,"y":0.27},{"x":1568889120000,"y":0.15},{"x":1568889180000,"y":0.15},{"x":1568889240000,"y":0.15},{"x":1568889300000,"y":0.21},{"x":1568889360000,"y":0.28},{"x":1568889420000,"y":0.12},{"x":1568889480000,"y":0.14},{"x":1568889540000,"y":0.22},{"x":1568889600000,"y":0.17},{"x":1568889660000,"y":0.28},{"x":1568889720000,"y":0.16},{"x":1568889780000,"y":0.15},{"x":1568889840000,"y":0.15},{"x":1568889900000,"y":0.18},{"x":1568889960000,"y":0.27},{"x":1568890020000,"y":0.14},{"x":1568890080000,"y":0.14},{"x":1568890140000,"y":0.15},{"x":1568890200000,"y":0.2},{"x":1568890260000,"y":0.14},{"x":1568890320000,"y":0.28},{"x":1568890380000,"y":0.15},{"x":1568890440000,"y":0.15},{"x":1568890500000,"y":0.22},{"x":1568890560000,"y":0.15},{"x":1568890620000,"y":0.27},{"x":1568890680000,"y":0.14},{"x":1568890740000,"y":0.14},{"x":1568890800000,"y":0.65},{"x":1568890860000,"y":0.15},{"x":1568890920000,"y":0.27},{"x":1568890980000,"y":0.16},{"x":1568891040000,"y":0.15},{"x":1568891100000,"y":0.18},{"x":1568891160000,"y":0.14},{"x":1568891220000,"y":0.27},{"x":1568891280000,"y":0.14},{"x":1568891340000,"y":0.2},{"x":1568891400000,"y":0.18},{"x":1568891460000,"y":0.16},{"x":1568891520000,"y":9.64},{"x":1568891580000,"y":0.54},{"x":1568891640000,"y":0.16},{"x":1568891700000,"y":0.18},{"x":1568891760000,"y":0.16},{"x":1568891820000,"y":0.27},{"x":1568891880000,"y":0.13},{"x":1568891940000,"y":0.14},{"x":1568892000000,"y":0.17},{"x":1568892060000,"y":0.15},{"x":1568892120000,"y":0.27},{"x":1568892180000,"y":0.15},{"x":1568892240000,"y":0.15},{"x":1568892300000,"y":1.32},{"x":1568892360000,"y":0.13},{"x":1568892420000,"y":0.13},{"x":1568892480000,"y":0.32},{"x":1568892540000,"y":0.15},{"x":1568892600000,"y":0.28},{"x":1568892660000,"y":0.14},{"x":1568892720000,"y":0.15},{"x":1568892780000,"y":0.28},{"x":1568892840000,"y":0.12},{"x":1568892900000,"y":0.2},{"x":1568892960000,"y":0.14},{"x":1568893020000,"y":0.19},{"x":1568893080000,"y":0.26},{"x":1568893140000,"y":0.22},{"x":1568893200000,"y":0.2},{"x":1568893260000,"y":0.14},{"x":1568893320000,"y":0.12},{"x":1568893380000,"y":0.71},{"x":1568893440000,"y":0.12},{"x":1568893500000,"y":0.19},{"x":1568893560000,"y":0.13},{"x":1568893620000,"y":0.19},{"x":1568893680000,"y":0.27},{"x":1568893740000,"y":0.17},{"x":1568893800000,"y":0.22},{"x":1568893860000,"y":0.13},{"x":1568893920000,"y":0.13},{"x":1568893980000,"y":0.3},{"x":1568894040000,"y":0.17},{"x":1568894100000,"y":0.2},{"x":1568894160000,"y":0.15},{"x":1568894220000,"y":0.14},{"x":1568894280000,"y":0.27},{"x":1568894340000,"y":0.15},{"x":1568894400000,"y":0.24},{"x":1568894460000,"y":0.13},{"x":1568894520000,"y":0.14},{"x":1568894580000,"y":0.25},{"x":1568894640000,"y":0.17},{"x":1568894700000,"y":0.21},{"x":1568894760000,"y":0.15},{"x":1568894820000,"y":0.13},{"x":1568894880000,"y":0.14},{"x":1568894940000,"y":0.39},{"x":1568895000000,"y":0.24},{"x":1568895060000,"y":0.13},{"x":1568895120000,"y":0.14},{"x":1568895180000,"y":0.13},{"x":1568895240000,"y":0.29},{"x":1568895300000,"y":0.16},{"x":1568895360000,"y":0.07},{"x":1568895420000,"y":0.07},{"x":1568895480000,"y":0.06},{"x":1568895540000,"y":0.21},{"x":1568895600000,"y":1.1},{"x":1568895660000,"y":0.06},{"x":1568895720000,"y":0.06},{"x":1568895780000,"y":0.07},{"x":1568895840000,"y":0.2},{"x":1568895900000,"y":0.12},{"x":1568895960000,"y":0.07},{"x":1568896020000,"y":0.07},{"x":1568896080000,"y":0.07},{"x":1568896140000,"y":0.22},{"x":1568896200000,"y":0.12},{"x":1568896260000,"y":0.07},{"x":1568896320000,"y":0.06},{"x":1568896380000,"y":0.07},{"x":1568896440000,"y":0.18},{"x":1568896500000,"y":0.11},{"x":1568896560000,"y":0.07},{"x":1568896620000,"y":0.07},{"x":1568896680000,"y":0.06},{"x":1568896740000,"y":0.12},{"x":1568896800000,"y":0.24},{"x":1568896860000,"y":0.05},{"x":1568896920000,"y":0.06},{"x":1568896980000,"y":0.06},{"x":1568897040000,"y":0.07},{"x":1568897100000,"y":0.28},{"x":1568897160000,"y":0.04},{"x":1568897220000,"y":0.09},{"x":1568897280000,"y":0.08},{"x":1568897340000,"y":0.04},{"x":1568897400000,"y":0.3},{"x":1568897460000,"y":0.06},{"x":1568897520000,"y":0.05},{"x":1568897580000,"y":0.05},{"x":1568897640000,"y":0.06},{"x":1568897700000,"y":0.27},{"x":1568897760000,"y":0.07},{"x":1568897820000,"y":0.05},{"x":1568897880000,"y":0.09},{"x":1568897940000,"y":0.09},{"x":1568898000000,"y":0.32},{"x":1568898060000,"y":0.08},{"x":1568898120000,"y":0.07},{"x":1568898180000,"y":0.05},{"x":1568898240000,"y":0.05},{"x":1568898300000,"y":0.26},{"x":1568898360000,"y":0.06},{"x":1568898420000,"y":0.04},{"x":1568898480000,"y":0.07},{"x":1568898540000,"y":0.24},{"x":1568898600000,"y":0.22},{"x":1568898660000,"y":0.06},{"x":1568898720000,"y":0.09},{"x":1568898780000,"y":0.07},{"x":1568898840000,"y":0.05},{"x":1568898900000,"y":0.26},{"x":1568898960000,"y":0.07},{"x":1568899020000,"y":0.05},{"x":1568899080000,"y":0.08},{"x":1568899140000,"y":0.05},{"x":1568899200000,"y":0.25},{"x":1568899260000,"y":0.06},{"x":1568899320000,"y":0.07},{"x":1568899380000,"y":0.06},{"x":1568899440000,"y":0.07},{"x":1568899500000,"y":0.12},{"x":1568899560000,"y":0.2},{"x":1568899620000,"y":0.06},{"x":1568899680000,"y":0.05},{"x":1568899740000,"y":0.06},{"x":1568899800000,"y":0.13},{"x":1568899860000,"y":0.18},{"x":1568899920000,"y":0.06},{"x":1568899980000,"y":0.09},{"x":1568900040000,"y":0.07},{"x":1568900100000,"y":0.17},{"x":1568900160000,"y":0.2},{"x":1568900220000,"y":0.05},{"x":1568900280000,"y":0.08},{"x":1568900340000,"y":0.18},{"x":1568900400000,"y":0.15},{"x":1568900460000,"y":0.2},{"x":1568900520000,"y":0.07},{"x":1568900580000,"y":0.09},{"x":1568900640000,"y":0.35},{"x":1568900700000,"y":0.14},{"x":1568900760000,"y":0.19},{"x":1568900820000,"y":0.07},{"x":1568900880000,"y":0.07},{"x":1568900940000,"y":0.09},{"x":1568901000000,"y":0.15},{"x":1568901060000,"y":0.21},{"x":1568901120000,"y":0.07},{"x":1568901180000,"y":0.08},{"x":1568901240000,"y":0.1},{"x":1568901300000,"y":0.13},{"x":1568901360000,"y":0.2},{"x":1568901420000,"y":0.07},{"x":1568901480000,"y":0.11},{"x":1568901540000,"y":0.1},{"x":1568901600000,"y":0.12},{"x":1568901660000,"y":0.09},{"x":1568901720000,"y":0.18},{"x":1568901780000,"y":0.11},{"x":1568901840000,"y":0.06},{"x":1568901900000,"y":0.11},{"x":1568901960000,"y":0.07},{"x":1568902020000,"y":0.21},{"x":1568902080000,"y":0.07},{"x":1568902140000,"y":0.17},{"x":1568902200000,"y":0.14},{"x":1568902260000,"y":0.11},{"x":1568902320000,"y":0.21},{"x":1568902380000,"y":0.05},{"x":1568902440000,"y":0.06},{"x":1568902500000,"y":0.12},{"x":1568902560000,"y":0.06},{"x":1568902620000,"y":0.21},{"x":1568902680000,"y":0.06},{"x":1568902740000,"y":0.08},{"x":1568902800000,"y":0.16},{"x":1568902860000,"y":0.04},{"x":1568902920000,"y":0.2},{"x":1568902980000,"y":0.07},{"x":1568903040000,"y":0.1},{"x":1568903100000,"y":0.16},{"x":1568903160000,"y":0.06},{"x":1568903220000,"y":0.21},{"x":1568903280000,"y":0.09},{"x":1568903340000,"y":0.08},{"x":1568903400000,"y":0.15},{"x":1568903460000,"y":0.06},{"x":1568903520000,"y":0.2},{"x":1568903580000,"y":0.11},{"x":1568903640000,"y":0.06},{"x":1568903700000,"y":0.2},{"x":1568903760000,"y":0.06},{"x":1568903820000,"y":0.22},{"x":1568903880000,"y":0.06},{"x":1568903940000,"y":0.2},{"x":1568904000000,"y":0.13},{"x":1568904060000,"y":0.09},{"x":1568904120000,"y":0.05},{"x":1568904180000,"y":0.2},{"x":1568904240000,"y":0.35},{"x":1568904300000,"y":0.13},{"x":1568904360000,"y":0.08},{"x":1568904420000,"y":0.09},{"x":1568904480000,"y":0.23},{"x":1568904540000,"y":0.06},{"x":1568904600000,"y":0.12},{"x":1568904660000,"y":0.08},{"x":1568904720000,"y":0.07},{"x":1568904780000,"y":0.21},{"x":1568904840000,"y":0.08},{"x":1568904900000,"y":0.1},{"x":1568904960000,"y":0.06},{"x":1568905020000,"y":0.06},{"x":1568905080000,"y":0.18},{"x":1568905140000,"y":0.06},{"x":1568905200000,"y":0.15},{"x":1568905260000,"y":0.06},{"x":1568905320000,"y":0.05},{"x":1568905380000,"y":0.2},{"x":1568905440000,"y":0.06},{"x":1568905500000,"y":0.12},{"x":1568905560000,"y":0.08},{"x":1568905620000,"y":0.06},{"x":1568905680000,"y":0.19},{"x":1568905740000,"y":0.12},{"x":1568905800000,"y":0.1},{"x":1568905860000,"y":0.05},{"x":1568905920000,"y":0.05},{"x":1568905980000,"y":0.21},{"x":1568906040000,"y":0.07},{"x":1568906100000,"y":0.11},{"x":1568906160000,"y":0.06},{"x":1568906220000,"y":0.08},{"x":1568906280000,"y":0.08},{"x":1568906340000,"y":0.22},{"x":1568906400000,"y":0.13},{"x":1568906460000,"y":0.07},{"x":1568906520000,"y":0.06},{"x":1568906580000,"y":0.1},{"x":1568906640000,"y":0.2},{"x":1568906700000,"y":0.1},{"x":1568906760000,"y":0.06},{"x":1568906820000,"y":0.05},{"x":1568906880000,"y":0.05},{"x":1568906940000,"y":0.19},{"x":1568907000000,"y":0.15},{"x":1568907060000,"y":0.06},{"x":1568907120000,"y":0.05},{"x":1568907180000,"y":0.05},{"x":1568907240000,"y":0.19},{"x":1568907300000,"y":0.1},{"x":1568907360000,"y":0.07},{"x":1568907420000,"y":0.06},{"x":1568907480000,"y":0.04},{"x":1568907540000,"y":0.26},{"x":1568907600000,"y":0.14},{"x":1568907660000,"y":0.06},{"x":1568907720000,"y":0.06},{"x":1568907780000,"y":0.04},{"x":1568907840000,"y":0.19},{"x":1568907900000,"y":0.19},{"x":1568907960000,"y":0.07},{"x":1568908020000,"y":0.05},{"x":1568908080000,"y":0.07},{"x":1568908140000,"y":0.18},{"x":1568908200000,"y":0.16},{"x":1568908260000,"y":0.06},{"x":1568908320000,"y":0.07},{"x":1568908380000,"y":0.06},{"x":1568908440000,"y":0.07},{"x":1568908500000,"y":0.25},{"x":1568908560000,"y":0.07},{"x":1568908620000,"y":0.07},{"x":1568908680000,"y":0.07},{"x":1568908740000,"y":0.68},{"x":1568908800000,"y":0.31},{"x":1568908860000,"y":0.07},{"x":1568908920000,"y":0.05},{"x":1568908980000,"y":0.08},{"x":1568909040000,"y":0.07},{"x":1568909100000,"y":0.23},{"x":1568909160000,"y":0.07},{"x":1568909220000,"y":0.05},{"x":1568909280000,"y":0.05},{"x":1568909340000,"y":0.14},{"x":1568909400000,"y":4.83},{"x":1568909460000,"y":0.17},{"x":1568909520000,"y":0.07},{"x":1568909580000,"y":0.08},{"x":1568909640000,"y":0.06},{"x":1568909700000,"y":0.28},{"x":1568909760000,"y":0.07},{"x":1568909820000,"y":0.06},{"x":1568909880000,"y":0.06},{"x":1568909940000,"y":0.05},{"x":1568910000000,"y":0.27},{"x":1568910060000,"y":0.06},{"x":1568910120000,"y":0.09},{"x":1568910180000,"y":0.07},{"x":1568910240000,"y":0.07},{"x":1568910300000,"y":0.31},{"x":1568910360000,"y":0.06},{"x":1568910420000,"y":0.13},{"x":1568910480000,"y":0.06},{"x":1568910540000,"y":0.07},{"x":1568910600000,"y":0.09},{"x":1568910660000,"y":0.24},{"x":1568910720000,"y":0.07},{"x":1568910780000,"y":0.06},{"x":1568910840000,"y":0.07},{"x":1568910900000,"y":0.12},{"x":1568910960000,"y":0.19},{"x":1568911020000,"y":0.05},{"x":1568911080000,"y":0.05},{"x":1568911140000,"y":0.11},{"x":1568911200000,"y":0.11},{"x":1568911260000,"y":0.19},{"x":1568911320000,"y":0.06},{"x":1568911380000,"y":0.06},{"x":1568911440000,"y":0.06},{"x":1568911500000,"y":0.1},{"x":1568911560000,"y":0.2},{"x":1568911620000,"y":0.05},{"x":1568911680000,"y":0.07},{"x":1568911740000,"y":0.07},{"x":1568911800000,"y":0.19},{"x":1568911860000,"y":0.22},{"x":1568911920000,"y":0.05},{"x":1568911980000,"y":0.07},{"x":1568912040000,"y":0.07},{"x":1568912100000,"y":0.11},{"x":1568912160000,"y":0.19},{"x":1568912220000,"y":0.07},{"x":1568912280000,"y":0.07},{"x":1568912340000,"y":0.05},{"x":1568912400000,"y":0.17},{"x":1568912460000,"y":0.21},{"x":1568912520000,"y":0.06},{"x":1568912580000,"y":0.07},{"x":1568912640000,"y":0.05},{"x":1568912700000,"y":0.15},{"x":1568912760000,"y":0.18},{"x":1568912820000,"y":0.07},{"x":1568912880000,"y":0.08},{"x":1568912940000,"y":0.16},{"x":1568913000000,"y":0.15},{"x":1568913060000,"y":0.06},{"x":1568913120000,"y":0.23},{"x":1568913180000,"y":0.05},{"x":1568913240000,"y":0.12},{"x":1568913300000,"y":0.17},{"x":1568913360000,"y":0.1},{"x":1568913420000,"y":0.21},{"x":1568913480000,"y":0.06},{"x":1568913540000,"y":0.06},{"x":1568913600000,"y":0.09},{"x":1568913660000,"y":0.05},{"x":1568913720000,"y":0.19},{"x":1568913780000,"y":0.05},{"x":1568913840000,"y":0.08},{"x":1568913900000,"y":0.1},{"x":1568913960000,"y":0.06},{"x":1568914020000,"y":0.24},{"x":1568914080000,"y":0.1},{"x":1568914140000,"y":0.1},{"x":1568914200000,"y":0.12},{"x":1568914260000,"y":0.08},{"x":1568914320000,"y":0.22},{"x":1568914380000,"y":0.1},{"x":1568914440000,"y":0.07},{"x":1568914500000,"y":0.11},{"x":1568914560000,"y":0.07},{"x":1568914620000,"y":0.2},{"x":1568914680000,"y":0.07},{"x":1568914740000,"y":0.22},{"x":1568914800000,"y":0.09},{"x":1568914860000,"y":0.3},{"x":1568914920000,"y":0.4},{"x":1568914980000,"y":0.23},{"x":1568915040000,"y":0.22},{"x":1568915100000,"y":0.12},{"x":1568915160000,"y":0.11},{"x":1568915220000,"y":0.12},{"x":1568915280000,"y":0.23},{"x":1568915340000,"y":0.1},{"x":1568915400000,"y":0.14},{"x":1568915460000,"y":0.1},{"x":1568915520000,"y":0.1},{"x":1568915580000,"y":0.22},{"x":1568915640000,"y":0.1},{"x":1568915700000,"y":0.14},{"x":1568915760000,"y":0.08},{"x":1568915820000,"y":0.12},{"x":1568915880000,"y":0.2},{"x":1568915940000,"y":0.07},{"x":1568916000000,"y":0.14},{"x":1568916060000,"y":0.12},{"x":1568916120000,"y":0.1},{"x":1568916180000,"y":0.21},{"x":1568916240000,"y":0.22},{"x":1568916300000,"y":0.48},{"x":1568916360000,"y":0.46},{"x":1568916420000,"y":0.43},{"x":1568916480000,"y":0.45},{"x":1568916540000,"y":0.38},{"x":1568916600000,"y":19.23},{"x":1568916660000,"y":0.08},{"x":1568916720000,"y":0.06},{"x":1568916780000,"y":0.2},{"x":1568916840000,"y":0.05},{"x":1568916900000,"y":0.16},{"x":1568916960000,"y":0.11},{"x":1568917020000,"y":0.11},{"x":1568917080000,"y":0.21},{"x":1568917140000,"y":0.07},{"x":1568917200000,"y":0.15},{"x":1568917260000,"y":0.05},{"x":1568917320000,"y":0.05},{"x":1568917380000,"y":0.78},{"x":1568917440000,"y":0.07},{"x":1568917500000,"y":0.12},{"x":1568917560000,"y":0.06},{"x":1568917620000,"y":0.1},{"x":1568917680000,"y":0.07},{"x":1568917740000,"y":0.2},{"x":1568917800000,"y":0.14},{"x":1568917860000,"y":0.09},{"x":1568917920000,"y":0.06},{"x":1568917980000,"y":0.05},{"x":1568918040000,"y":0.25},{"x":1568918100000,"y":0.23},{"x":1568918160000,"y":0.11},{"x":1568918220000,"y":0.05},{"x":1568918280000,"y":0.05},{"x":1568918340000,"y":0.29},{"x":1568918400000,"y":0.19},{"x":1568918460000,"y":0.07},{"x":1568918520000,"y":19.07},{"x":1568918580000,"y":0.24},{"x":1568918640000,"y":2.17},{"x":1568918700000,"y":0.17},{"x":1568918760000,"y":0.13},{"x":1568918820000,"y":0.15},{"x":1568918880000,"y":14.75},{"x":1568918940000,"y":7.9},{"x":1568919000000,"y":17.55},{"x":1568919060000,"y":0.3},{"x":1568919120000,"y":0.19},{"x":1568919180000,"y":19.12},{"x":1568919240000,"y":0.44},{"x":1568919300000,"y":0.23},{"x":1568919360000,"y":19.3},{"x":1568919420000,"y":0.28},{"x":1568919480000,"y":0.14},{"x":1568919540000,"y":19.3},{"x":1568919600000,"y":0.3},{"x":1568919660000,"y":0.29},{"x":1568919720000,"y":19.18},{"x":1568919780000,"y":0.19},{"x":1568919840000,"y":0.47},{"x":1568919900000,"y":0.24},{"x":1568919960000,"y":0.16},{"x":1568920020000,"y":18.96},{"x":1568920080000,"y":0.3},{"x":1568920140000,"y":19.02},{"x":1568920200000,"y":19.55},{"x":1568920260000,"y":0.37},{"x":1568920320000,"y":0.17},{"x":1568920380000,"y":4.15},{"x":1568920440000,"y":33.91},{"x":1568920500000,"y":0.56},{"x":1568920560000,"y":0.14},{"x":1568920620000,"y":0.2},{"x":1568920680000,"y":0.15},{"x":1568920740000,"y":0.13},{"x":1568920800000,"y":0.32},{"x":1568920860000,"y":0.14},{"x":1568920920000,"y":0.62},{"x":1568920980000,"y":0.15},{"x":1568921040000,"y":20.4},{"x":1568921100000,"y":0.34},{"x":1568921160000,"y":0.42},{"x":1568921220000,"y":0.18},{"x":1568921280000,"y":19.86},{"x":1568921340000,"y":0.18},{"x":1568921400000,"y":0.64},{"x":1568921460000,"y":0.17},{"x":1568921520000,"y":0.17},{"x":1568921580000,"y":0.19},{"x":1568921640000,"y":0.19},{"x":1568921700000,"y":0.34},{"x":1568921760000,"y":0.14},{"x":1568921820000,"y":0.17},{"x":1568921880000,"y":0.17},{"x":1568921940000,"y":0.26},{"x":1568922000000,"y":0.32},{"x":1568922060000,"y":0.19},{"x":1568922120000,"y":0.15},{"x":1568922180000,"y":0.16},{"x":1568922240000,"y":0.47},{"x":1568922300000,"y":0.85},{"x":1568922360000,"y":0.3},{"x":1568922420000,"y":0.17},{"x":1568922480000,"y":0.17},{"x":1568922540000,"y":0.22},{"x":1568922600000,"y":0.4},{"x":1568922660000,"y":19.02},{"x":1568922720000,"y":0.3},{"x":1568922780000,"y":19},{"x":1568922840000,"y":0.39},{"x":1568922900000,"y":0.22},{"x":1568922960000,"y":0.32},{"x":1568923020000,"y":0.14},{"x":1568923080000,"y":19.19},{"x":1568923140000,"y":19.69},{"x":1568923200000,"y":0.36},{"x":1568923260000,"y":19.29},{"x":1568923320000,"y":0.16},{"x":1568923380000,"y":0.33},{"x":1568923440000,"y":0.15},{"x":1568923500000,"y":0.23},{"x":1568923560000,"y":0.33},{"x":1568923620000,"y":0.17},{"x":1568923680000,"y":0.17},{"x":1568923740000,"y":0.27},{"x":1568923800000,"y":0.23},{"x":1568923860000,"y":0.18},{"x":1568923920000,"y":0.3},{"x":1568923980000,"y":0.17},{"x":1568924040000,"y":0.21},{"x":1568924100000,"y":0.27},{"x":1568924160000,"y":0.17},{"x":1568924220000,"y":0.31},{"x":1568924280000,"y":0.17},{"x":1568924340000,"y":0.18},{"x":1568924400000,"y":0.27},{"x":1568924460000,"y":0.17},{"x":1568924520000,"y":0.31},{"x":1568924580000,"y":0.16},{"x":1568924640000,"y":0.17},{"x":1568924700000,"y":0.21},{"x":1568924760000,"y":0.15},{"x":1568924820000,"y":0.29},{"x":1568924880000,"y":0.19},{"x":1568924940000,"y":0.15},{"x":1568925000000,"y":0.21},{"x":1568925060000,"y":0.16},{"x":1568925120000,"y":0.28},{"x":1568925180000,"y":0.19},{"x":1568925240000,"y":0.19},{"x":1568925300000,"y":0.22},{"x":1568925360000,"y":0.16},{"x":1568925420000,"y":0.3},{"x":1568925480000,"y":0.16},{"x":1568925540000,"y":0.24},{"x":1568925600000,"y":0.22},{"x":1568925660000,"y":0.22},{"x":1568925720000,"y":0.31},{"x":1568925780000,"y":0.17},{"x":1568925840000,"y":0.16},{"x":1568925900000,"y":0.23},{"x":1568925960000,"y":0.92},{"x":1568926020000,"y":0.15},{"x":1568926080000,"y":0.34},{"x":1568926140000,"y":0.14},{"x":1568926200000,"y":0.21},{"x":1568926260000,"y":0.16},{"x":1568926320000,"y":0.16},{"x":1568926380000,"y":0.32},{"x":1568926440000,"y":0.15},{"x":1568926500000,"y":0.22},{"x":1568926560000,"y":0.16},{"x":1568926620000,"y":0.18},{"x":1568926680000,"y":0.31},{"x":1568926740000,"y":0.16},{"x":1568926800000,"y":0.22},{"x":1568926860000,"y":0.15},{"x":1568926920000,"y":0.16},{"x":1568926980000,"y":0.3},{"x":1568927040000,"y":0.14},{"x":1568927100000,"y":0.22},{"x":1568927160000,"y":0.17},{"x":1568927220000,"y":0.17},{"x":1568927280000,"y":0.28},{"x":1568927340000,"y":0.23},{"x":1568927400000,"y":0.22},{"x":1568927460000,"y":0.16},{"x":1568927520000,"y":0.15},{"x":1568927580000,"y":0.29},{"x":1568927640000,"y":0.19},{"x":1568927700000,"y":0.2},{"x":1568927760000,"y":0.14},{"x":1568927820000,"y":0.17},{"x":1568927880000,"y":0.17},{"x":1568927940000,"y":0.32},{"x":1568928000000,"y":0.21},{"x":1568928060000,"y":0.15},{"x":1568928120000,"y":0.16},{"x":1568928180000,"y":0.17},{"x":1568928240000,"y":0.36},{"x":1568928300000,"y":0.23},{"x":1568928360000,"y":0.13},{"x":1568928420000,"y":0.15},{"x":1568928480000,"y":0.15},{"x":1568928540000,"y":0.28},{"x":1568928600000,"y":0.22},{"x":1568928660000,"y":0.13},{"x":1568928720000,"y":0.08},{"x":1568928780000,"y":0.07},{"x":1568928840000,"y":0.24},{"x":1568928900000,"y":0.17},{"x":1568928960000,"y":0.08},{"x":1568929020000,"y":0.06},{"x":1568929080000,"y":0.07},{"x":1568929140000,"y":0.23},{"x":1568929200000,"y":0.15},{"x":1568929260000,"y":0.07},{"x":1568929320000,"y":0.06},{"x":1568929380000,"y":0.12},{"x":1568929440000,"y":0.21},{"x":1568929500000,"y":0.13},{"x":1568929560000,"y":0.5},{"x":1568929620000,"y":0.26},{"x":1568929680000,"y":0.07},{"x":1568929740000,"y":0.21},{"x":1568929800000,"y":0.13},{"x":1568929860000,"y":0.1},{"x":1568929920000,"y":0.09},{"x":1568929980000,"y":0.1},{"x":1568930040000,"y":0.19},{"x":1568930100000,"y":0.1},{"x":1568930160000,"y":0.09},{"x":1568930220000,"y":0.07},{"x":1568930280000,"y":0.09},{"x":1568930340000,"y":0.06},{"x":1568930400000,"y":0.28},{"x":1568930460000,"y":0.09},{"x":1568930520000,"y":0.08},{"x":1568930580000,"y":0.07},{"x":1568930640000,"y":0.07},{"x":1568930700000,"y":0.37},{"x":1568930760000,"y":0.09},{"x":1568930820000,"y":0.11},{"x":1568930880000,"y":0.07},{"x":1568930940000,"y":0.15},{"x":1568931000000,"y":0.27},{"x":1568931060000,"y":0.07},{"x":1568931120000,"y":0.09},{"x":1568931180000,"y":0.08},{"x":1568931240000,"y":0.07},{"x":1568931300000,"y":3.34},{"x":1568931360000,"y":0.08},{"x":1568931420000,"y":0.09},{"x":1568931480000,"y":0.1},{"x":1568931540000,"y":0.14},{"x":1568931600000,"y":0.27},{"x":1568931660000,"y":0.07},{"x":1568931720000,"y":0.08},{"x":1568931780000,"y":0.07},{"x":1568931840000,"y":0.14},{"x":1568931900000,"y":0.27},{"x":1568931960000,"y":0.07},{"x":1568932020000,"y":0.08},{"x":1568932080000,"y":0.07},{"x":1568932140000,"y":0.17},{"x":1568932200000,"y":0.41},{"x":1568932260000,"y":0.06},{"x":1568932320000,"y":0.08},{"x":1568932380000,"y":0.08},{"x":1568932440000,"y":0.25},{"x":1568932500000,"y":19.37},{"x":1568932560000,"y":0.41},{"x":1568932620000,"y":0.05},{"x":1568932680000,"y":0.08},{"x":1568932740000,"y":0.1},{"x":1568932800000,"y":0.12},{"x":1568932860000,"y":0.22},{"x":1568932920000,"y":0.06},{"x":1568932980000,"y":0.06},{"x":1568933040000,"y":0.05},{"x":1568933100000,"y":0.11},{"x":1568933160000,"y":0.2},{"x":1568933220000,"y":0.12},{"x":1568933280000,"y":0.1},{"x":1568933340000,"y":0.05},{"x":1568933400000,"y":0.12},{"x":1568933460000,"y":0.2},{"x":1568933520000,"y":0.06},{"x":1568933580000,"y":0.06},{"x":1568933640000,"y":0.07},{"x":1568933700000,"y":0.14},{"x":1568933760000,"y":0.2},{"x":1568933820000,"y":19.09},{"x":1568933880000,"y":0.1},{"x":1568933940000,"y":0.06},{"x":1568934000000,"y":0.21},{"x":1568934060000,"y":0.19},{"x":1568934120000,"y":0.05},{"x":1568934180000,"y":0.05},{"x":1568934240000,"y":0.05},{"x":1568934300000,"y":0.12},{"x":1568934360000,"y":0.18},{"x":1568934420000,"y":0.05},{"x":1568934480000,"y":0.09},{"x":1568934540000,"y":0.14},{"x":1568934600000,"y":0.14},{"x":1568934660000,"y":0.04},{"x":1568934720000,"y":0.24},{"x":1568934780000,"y":0.06},{"x":1568934840000,"y":0.06},{"x":1568934900000,"y":0.15},{"x":1568934960000,"y":0.07},{"x":1568935020000,"y":0.22},{"x":1568935080000,"y":0.08},{"x":1568935140000,"y":0.07},{"x":1568935200000,"y":0.11},{"x":1568935260000,"y":0.05},{"x":1568935320000,"y":0.18},{"x":1568935380000,"y":0.06},{"x":1568935440000,"y":0.06},{"x":1568935500000,"y":0.11},{"x":1568935560000,"y":0.45},{"x":1568935620000,"y":0.2},{"x":1568935680000,"y":0.08},{"x":1568935740000,"y":0.05},{"x":1568935800000,"y":0.12},{"x":1568935860000,"y":0.05},{"x":1568935920000,"y":0.2},{"x":1568935980000,"y":0.09},{"x":1568936040000,"y":0.07},{"x":1568936100000,"y":0.12},{"x":1568936160000,"y":0.05},{"x":1568936220000,"y":0.2},{"x":1568936280000,"y":0.07},{"x":1568936340000,"y":0.1},{"x":1568936400000,"y":0.15},{"x":1568936460000,"y":0.05},{"x":1568936520000,"y":0.21},{"x":1568936580000,"y":0.07},{"x":1568936640000,"y":0.06},{"x":1568936700000,"y":0.13},{"x":1568936760000,"y":0.07},{"x":1568936820000,"y":0.21},{"x":1568936880000,"y":0.07},{"x":1568936940000,"y":0.05},{"x":1568937000000,"y":0.15},{"x":1568937060000,"y":0.05},{"x":1568937120000,"y":0.08},{"x":1568937180000,"y":0.25},{"x":1568937240000,"y":0.05},{"x":1568937300000,"y":0.13},{"x":1568937360000,"y":0.09},{"x":1568937420000,"y":0.07},{"x":1568937480000,"y":0.25},{"x":1568937540000,"y":0.07},{"x":1568937600000,"y":0.16},{"x":1568937660000,"y":0.08},{"x":1568937720000,"y":0.05},{"x":1568937780000,"y":0.18},{"x":1568937840000,"y":0.05},{"x":1568937900000,"y":0.12},{"x":1568937960000,"y":0.07},{"x":1568938020000,"y":0.06},{"x":1568938080000,"y":0.2},{"x":1568938140000,"y":0.12},{"x":1568938200000,"y":0.17},{"x":1568938260000,"y":0.06},{"x":1568938320000,"y":0.08},{"x":1568938380000,"y":0.2},{"x":1568938440000,"y":0.09},{"x":1568938500000,"y":0.12},{"x":1568938560000,"y":0.05},{"x":1568938620000,"y":0.08},{"x":1568938680000,"y":0.2},{"x":1568938740000,"y":0.08},{"x":1568938800000,"y":0.1},{"x":1568938860000,"y":0.05},{"x":1568938920000,"y":0.07},{"x":1568938980000,"y":0.07},{"x":1568939040000,"y":0.22},{"x":1568939100000,"y":0.11},{"x":1568939160000,"y":0.05},{"x":1568939220000,"y":0.07},{"x":1568939280000,"y":0.06},{"x":1568939340000,"y":0.21},{"x":1568939400000,"y":0.1},{"x":1568939460000,"y":0.06},{"x":1568939520000,"y":0.07},{"x":1568939580000,"y":0.07},{"x":1568939640000,"y":0.18},{"x":1568939700000,"y":0.17},{"x":1568939760000,"y":0.06},{"x":1568939820000,"y":0.06},{"x":1568939880000,"y":0.05},{"x":1568939940000,"y":0.28},{"x":1568940000000,"y":0.13},{"x":1568940060000,"y":0.07},{"x":1568940120000,"y":0.05},{"x":1568940180000,"y":0.04},{"x":1568940240000,"y":0.19},{"x":1568940300000,"y":0.1},{"x":1568940360000,"y":0.05},{"x":1568940420000,"y":0.06},{"x":1568940480000,"y":0.07},{"x":1568940540000,"y":0.21},{"x":1568940600000,"y":0.17},{"x":1568940660000,"y":0.07},{"x":1568940720000,"y":0.06},{"x":1568940780000,"y":0.07},{"x":1568940840000,"y":0.19},{"x":1568940900000,"y":0.17},{"x":1568940960000,"y":0.09},{"x":1568941020000,"y":0.07},{"x":1568941080000,"y":0.07},{"x":1568941140000,"y":0.05},{"x":1568941200000,"y":0.38},{"x":1568941260000,"y":0.07},{"x":1568941320000,"y":0.05},{"x":1568941380000,"y":0.06},{"x":1568941440000,"y":0.06},{"x":1568941500000,"y":0.27},{"x":1568941560000,"y":0.07},{"x":1568941620000,"y":0.08},{"x":1568941680000,"y":0.06},{"x":1568941740000,"y":0.15},{"x":1568941800000,"y":0.22},{"x":1568941860000,"y":0.09},{"x":1568941920000,"y":0.06},{"x":1568941980000,"y":0.06},{"x":1568942040000,"y":0.05},{"x":1568942100000,"y":0.23},{"x":1568942160000,"y":0.05},{"x":1568942220000,"y":0.07},{"x":1568942280000,"y":0.08},{"x":1568942340000,"y":0.07},{"x":1568942400000,"y":0.25},{"x":1568942460000,"y":0.09},{"x":1568942520000,"y":0.05},{"x":1568942580000,"y":0.05},{"x":1568942640000,"y":0.05},{"x":1568942700000,"y":0.17},{"x":1568942760000,"y":0.16},{"x":1568942820000,"y":0.05},{"x":1568942880000,"y":0.05},{"x":1568942940000,"y":0.06},{"x":1568943000000,"y":0.11},{"x":1568943060000,"y":0.21},{"x":1568943120000,"y":0.06},{"x":1568943180000,"y":0.07},{"x":1568943240000,"y":0.07},{"x":1568943300000,"y":0.1},{"x":1568943360000,"y":0.2},{"x":1568943420000,"y":0.08},{"x":1568943480000,"y":0.06},{"x":1568943540000,"y":0.18},{"x":1568943600000,"y":0.11},{"x":1568943660000,"y":0.19},{"x":1568943720000,"y":0.07},{"x":1568943780000,"y":0.05},{"x":1568943840000,"y":0.08},{"x":1568943900000,"y":0.12},{"x":1568943960000,"y":0.2},{"x":1568944020000,"y":0.07},{"x":1568944080000,"y":0.07},{"x":1568944140000,"y":0.07},{"x":1568944200000,"y":0.15},{"x":1568944260000,"y":0.25},{"x":1568944320000,"y":0.06},{"x":1568944380000,"y":0.06},{"x":1568944440000,"y":0.09},{"x":1568944500000,"y":0.12},{"x":1568944560000,"y":0.18},{"x":1568944620000,"y":0.08},{"x":1568944680000,"y":0.07},{"x":1568944740000,"y":0.06},{"x":1568944800000,"y":0.16},{"x":1568944860000,"y":0.07},{"x":1568944920000,"y":0.2},{"x":1568944980000,"y":0.05},{"x":1568945040000,"y":0.05},{"x":1568945100000,"y":0.09},{"x":1568945160000,"y":0.08},{"x":1568945220000,"y":0.21},{"x":1568945280000,"y":0.05},{"x":1568945340000,"y":0.12},{"x":1568945400000,"y":0.1},{"x":1568945460000,"y":0.05},{"x":1568945520000,"y":0.2},{"x":1568945580000,"y":0.09},{"x":1568945640000,"y":0.07},{"x":1568945700000,"y":0.1},{"x":1568945760000,"y":0.07},{"x":1568945820000,"y":0.2},{"x":1568945880000,"y":0.05},{"x":1568945940000,"y":0.05},{"x":1568946000000,"y":0.1},{"x":1568946060000,"y":0.05},{"x":1568946120000,"y":0.19},{"x":1568946180000,"y":0.05},{"x":1568946240000,"y":0.07},{"x":1568946300000,"y":0.13},{"x":1568946360000,"y":0.1},{"x":1568946420000,"y":0.23},{"x":1568946480000,"y":0.09},{"x":1568946540000,"y":1.94},{"x":1568946600000,"y":0.1},{"x":1568946660000,"y":0.08},{"x":1568946720000,"y":0.2},{"x":1568946780000,"y":0.07},{"x":1568946840000,"y":0.08},{"x":1568946900000,"y":0.11},{"x":1568946960000,"y":0.07},{"x":1568947020000,"y":0.07},{"x":1568947080000,"y":0.22},{"x":1568947140000,"y":0.12},{"x":1568947200000,"y":0.12},{"x":1568947260000,"y":0.09},{"x":1568947320000,"y":0.08},{"x":1568947380000,"y":0.2},{"x":1568947440000,"y":0.08},{"x":1568947500000,"y":0.12},{"x":1568947560000,"y":0.08},{"x":1568947620000,"y":0.05},{"x":1568947680000,"y":0.18},{"x":1568947740000,"y":0.12},{"x":1568947800000,"y":0.12},{"x":1568947860000,"y":0.07},{"x":1568947920000,"y":0.06},{"x":1568947980000,"y":0.2},{"x":1568948040000,"y":0.05},{"x":1568948100000,"y":0.14},{"x":1568948160000,"y":0.05},{"x":1568948220000,"y":0.08},{"x":1568948280000,"y":0.17},{"x":1568948340000,"y":0.07},{"x":1568948400000,"y":0.23},{"x":1568948460000,"y":0.06},{"x":1568948520000,"y":0.06},{"x":1568948580000,"y":0.21},{"x":1568948640000,"y":0.07},{"x":1568948700000,"y":0.12},{"x":1568948760000,"y":0.08},{"x":1568948820000,"y":0.07},{"x":1568948880000,"y":0.19},{"x":1568948940000,"y":0.11},{"x":1568949000000,"y":0.11},{"x":1568949060000,"y":0.08},{"x":1568949120000,"y":0.07},{"x":1568949180000,"y":0.21},{"x":1568949240000,"y":0.06},{"x":1568949300000,"y":0.1},{"x":1568949360000,"y":0.06},{"x":1568949420000,"y":0.07},{"x":1568949480000,"y":0.07},{"x":1568949540000,"y":0.23},{"x":1568949600000,"y":0.12},{"x":1568949660000,"y":0.08},{"x":1568949720000,"y":0.05},{"x":1568949780000,"y":0.06},{"x":1568949840000,"y":0.18},{"x":1568949900000,"y":0.11},{"x":1568949960000,"y":0.08},{"x":1568950020000,"y":0.06},{"x":1568950080000,"y":0.04},{"x":1568950140000,"y":0.18},{"x":1568950200000,"y":0.16},{"x":1568950260000,"y":0.06},{"x":1568950320000,"y":0.04},{"x":1568950380000,"y":0.07},{"x":1568950440000,"y":0.18},{"x":1568950500000,"y":0.16},{"x":1568950560000,"y":0.08},{"x":1568950620000,"y":0.1},{"x":1568950680000,"y":0.06},{"x":1568950740000,"y":0.3},{"x":1568950800000,"y":0.14},{"x":1568950860000,"y":0.11},{"x":1568950920000,"y":0.07},{"x":1568950980000,"y":0.08},{"x":1568951040000,"y":0.19},{"x":1568951100000,"y":0.15},{"x":1568951160000,"y":0.1},{"x":1568951220000,"y":0.09},{"x":1568951280000,"y":0.07},{"x":1568951340000,"y":0.22},{"x":1568951400000,"y":0.28},{"x":1568951460000,"y":0.1},{"x":1568951520000,"y":0.1},{"x":1568951580000,"y":0.11},{"x":1568951640000,"y":0.25},{"x":1568951700000,"y":0.15},{"x":1568951760000,"y":0.1},{"x":1568951820000,"y":0.1},{"x":1568951880000,"y":0.12},{"x":1568951940000,"y":0.08},{"x":1568952000000,"y":0.33},{"x":1568952060000,"y":0.11},{"x":1568952120000,"y":0.11},{"x":1568952180000,"y":0.12},{"x":1568952240000,"y":0.14},{"x":1568952300000,"y":0.31},{"x":1568952360000,"y":0.12},{"x":1568952420000,"y":0.15},{"x":1568952480000,"y":0.14},{"x":1568952540000,"y":0.25},{"x":1568952600000,"y":0.32},{"x":1568952660000,"y":0.12},{"x":1568952720000,"y":0.17},{"x":1568952780000,"y":0.16},{"x":1568952840000,"y":0.15},{"x":1568952900000,"y":0.37},{"x":1568952960000,"y":0.14},{"x":1568953020000,"y":0.16},{"x":1568953080000,"y":0.16},{"x":1568953140000,"y":0.16},{"x":1568953200000,"y":4.97},{"x":1568953260000,"y":0.25},{"x":1568953320000,"y":0.14},{"x":1568953380000,"y":0.13},{"x":1568953440000,"y":0.14},{"x":1568953500000,"y":0.33},{"x":1568953560000,"y":0.14},{"x":1568953620000,"y":0.14},{"x":1568953680000,"y":0.12},{"x":1568953740000,"y":0.14},{"x":1568953800000,"y":0.37},{"x":1568953860000,"y":0.14},{"x":1568953920000,"y":0.15},{"x":1568953980000,"y":0.15},{"x":1568954040000,"y":0.15},{"x":1568954100000,"y":0.24},{"x":1568954160000,"y":0.3},{"x":1568954220000,"y":0.18},{"x":1568954280000,"y":0.15},{"x":1568954340000,"y":0.23},{"x":1568954400000,"y":0.22},{"x":1568954460000,"y":0.27},{"x":1568954520000,"y":0.17},{"x":1568954580000,"y":0.15},{"x":1568954640000,"y":0.14},{"x":1568954700000,"y":0.26},{"x":1568954760000,"y":0.3},{"x":1568954820000,"y":0.13},{"x":1568954880000,"y":0.15},{"x":1568954940000,"y":0.14},{"x":1568955000000,"y":0.64},{"x":1568955060000,"y":2.23},{"x":1568955120000,"y":0.12},{"x":1568955180000,"y":0.15},{"x":1568955240000,"y":0.14},{"x":1568955300000,"y":0.21},{"x":1568955360000,"y":0.27},{"x":1568955420000,"y":0.15},{"x":1568955480000,"y":0.14},{"x":1568955540000,"y":0.16},{"x":1568955600000,"y":0.44},{"x":1568955660000,"y":0.27},{"x":1568955720000,"y":0.13},{"x":1568955780000,"y":0.15},{"x":1568955840000,"y":0.16},{"x":1568955900000,"y":0.23},{"x":1568955960000,"y":0.28},{"x":1568956020000,"y":0.16},{"x":1568956080000,"y":2.99},{"x":1568956140000,"y":0.9},{"x":1568956200000,"y":0.2},{"x":1568956260000,"y":0.25},{"x":1568956320000,"y":0.17},{"x":1568956380000,"y":0.14},{"x":1568956440000,"y":0.15},{"x":1568956500000,"y":0.19},{"x":1568956560000,"y":0.16},{"x":1568956620000,"y":0.28},{"x":1568956680000,"y":0.13},{"x":1568956740000,"y":0.17},{"x":1568956800000,"y":0.23},{"x":1568956860000,"y":0.17},{"x":1568956920000,"y":0.27},{"x":1568956980000,"y":0.15},{"x":1568957040000,"y":0.14},{"x":1568957100000,"y":0.24},{"x":1568957160000,"y":0.16},{"x":1568957220000,"y":0.28},{"x":1568957280000,"y":0.13},{"x":1568957340000,"y":0.13},{"x":1568957400000,"y":0.21},{"x":1568957460000,"y":0.12},{"x":1568957520000,"y":0.27},{"x":1568957580000,"y":0.14},{"x":1568957640000,"y":0.13},{"x":1568957700000,"y":0.17},{"x":1568957760000,"y":0.15},{"x":1568957820000,"y":0.27},{"x":1568957880000,"y":0.13},{"x":1568957940000,"y":0.21},{"x":1568958000000,"y":0.2},{"x":1568958060000,"y":0.13},{"x":1568958120000,"y":0.29},{"x":1568958180000,"y":0.14},{"x":1568958240000,"y":0.16},{"x":1568958300000,"y":0.2},{"x":1568958360000,"y":0.14},{"x":1568958420000,"y":0.31},{"x":1568958480000,"y":0.13},{"x":1568958540000,"y":0.12},{"x":1568958600000,"y":0.22},{"x":1568958660000,"y":0.13},{"x":1568958720000,"y":0.15},{"x":1568958780000,"y":0.29},{"x":1568958840000,"y":0.15},{"x":1568958900000,"y":0.21},{"x":1568958960000,"y":0.14},{"x":1568959020000,"y":0.15},{"x":1568959080000,"y":0.28},{"x":1568959140000,"y":0.14},{"x":1568959200000,"y":0.19},{"x":1568959260000,"y":0.16},{"x":1568959320000,"y":0.14},{"x":1568959380000,"y":0.3},{"x":1568959440000,"y":0.14},{"x":1568959500000,"y":0.25},{"x":1568959560000,"y":0.15},{"x":1568959620000,"y":0.14},{"x":1568959680000,"y":0.29},{"x":1568959740000,"y":0.23},{"x":1568959800000,"y":0.22},{"x":1568959860000,"y":0.21},{"x":1568959920000,"y":0.17},{"x":1568959980000,"y":0.28},{"x":1568960040000,"y":0.18},{"x":1568960100000,"y":0.25},{"x":1568960160000,"y":0.17},{"x":1568960220000,"y":0.15},{"x":1568960280000,"y":0.3},{"x":1568960340000,"y":0.16},{"x":1568960400000,"y":0.2},{"x":1568960460000,"y":0.15},{"x":1568960520000,"y":0.17},{"x":1568960580000,"y":0.3},{"x":1568960640000,"y":0.13},{"x":1568960700000,"y":0.24},{"x":1568960760000,"y":0.14},{"x":1568960820000,"y":0.13},{"x":1568960880000,"y":0.29},{"x":1568960940000,"y":0.14},{"x":1568961000000,"y":0.2},{"x":1568961060000,"y":0.15},{"x":1568961120000,"y":0.15},{"x":1568961180000,"y":0.14},{"x":1568961240000,"y":0.27},{"x":1568961300000,"y":0.2},{"x":1568961360000,"y":0.13},{"x":1568961420000,"y":0.14},{"x":1568961480000,"y":0.15},{"x":1568961540000,"y":0.36},{"x":1568961600000,"y":0.24},{"x":1568961660000,"y":0.13},{"x":1568961720000,"y":0.12},{"x":1568961780000,"y":0.15},{"x":1568961840000,"y":0.23},{"x":1568961900000,"y":0.15},{"x":1568961960000,"y":0.1},{"x":1568962020000,"y":0.09},{"x":1568962080000,"y":0.08},{"x":1568962140000,"y":0.19},{"x":1568962200000,"y":0.13},{"x":1568962260000,"y":0.05},{"x":1568962320000,"y":0.06},{"x":1568962380000,"y":0.09},{"x":1568962440000,"y":0.2},{"x":1568962500000,"y":0.1},{"x":1568962560000,"y":0.07},{"x":1568962620000,"y":0.06},{"x":1568962680000,"y":0.05},{"x":1568962740000,"y":0.21},{"x":1568962800000,"y":0.13},{"x":1568962860000,"y":0.05},{"x":1568962920000,"y":0.06},{"x":1568962980000,"y":0.08},{"x":1568963040000,"y":0.2},{"x":1568963100000,"y":0.13},{"x":1568963160000,"y":0.06},{"x":1568963220000,"y":0.05},{"x":1568963280000,"y":0.06},{"x":1568963340000,"y":0.29},{"x":1568963400000,"y":0.1},{"x":1568963460000,"y":0.08},{"x":1568963520000,"y":0.06},{"x":1568963580000,"y":0.04},{"x":1568963640000,"y":0.05},{"x":1568963700000,"y":0.26},{"x":1568963760000,"y":0.05},{"x":1568963820000,"y":0.07},{"x":1568963880000,"y":0.05},{"x":1568963940000,"y":0.05},{"x":1568964000000,"y":0.25},{"x":1568964060000,"y":0.08},{"x":1568964120000,"y":0.05},{"x":1568964180000,"y":0.07},{"x":1568964240000,"y":0.08},{"x":1568964300000,"y":0.26},{"x":1568964360000,"y":0.05},{"x":1568964420000,"y":0.05},{"x":1568964480000,"y":0.08},{"x":1568964540000,"y":0.07},{"x":1568964600000,"y":0.25},{"x":1568964660000,"y":0.05},{"x":1568964720000,"y":1.84},{"x":1568964780000,"y":0.07},{"x":1568964840000,"y":0.07},{"x":1568964900000,"y":0.27},{"x":1568964960000,"y":0.05},{"x":1568965020000,"y":0.08},{"x":1568965080000,"y":0.07},{"x":1568965140000,"y":0.16},{"x":1568965200000,"y":0.25},{"x":1568965260000,"y":0.08},{"x":1568965320000,"y":0.06},{"x":1568965380000,"y":0.08},{"x":1568965440000,"y":0.05},{"x":1568965500000,"y":0.25},{"x":1568965560000,"y":0.07},{"x":1568965620000,"y":0.07},{"x":1568965680000,"y":0.06},{"x":1568965740000,"y":0.05},{"x":1568965800000,"y":0.14},{"x":1568965860000,"y":0.21},{"x":1568965920000,"y":0.05},{"x":1568965980000,"y":0.23},{"x":1568966040000,"y":0.08},{"x":1568966100000,"y":0.12},{"x":1568966160000,"y":0.24},{"x":1568966220000,"y":0.05},{"x":1568966280000,"y":0.05},{"x":1568966340000,"y":0.05},{"x":1568966400000,"y":0.19},{"x":1568966460000,"y":0.22},{"x":1568966520000,"y":0.08},{"x":1568966580000,"y":0.06},{"x":1568966640000,"y":0.05},{"x":1568966700000,"y":0.12},{"x":1568966760000,"y":0.2},{"x":1568966820000,"y":0.05},{"x":1568966880000,"y":0.05},{"x":1568966940000,"y":0.18},{"x":1568967000000,"y":0.12},{"x":1568967060000,"y":0.21},{"x":1568967120000,"y":0.07},{"x":1568967180000,"y":0.07},{"x":1568967240000,"y":0.11},{"x":1568967300000,"y":0.14},{"x":1568967360000,"y":0.22},{"x":1568967420000,"y":0.07},{"x":1568967480000,"y":0.07},{"x":1568967540000,"y":0.06},{"x":1568967600000,"y":0.1},{"x":1568967660000,"y":0.21},{"x":1568967720000,"y":0.05},{"x":1568967780000,"y":0.07},{"x":1568967840000,"y":0.07},{"x":1568967900000,"y":0.11},{"x":1568967960000,"y":0.19},{"x":1568968020000,"y":0.08},{"x":1568968080000,"y":0.1},{"x":1568968140000,"y":0.07},{"x":1568968200000,"y":0.15},{"x":1568968260000,"y":0.19},{"x":1568968320000,"y":0.07},{"x":1568968380000,"y":0.06},{"x":1568968440000,"y":0.06},{"x":1568968500000,"y":0.11},{"x":1568968560000,"y":0.07},{"x":1568968620000,"y":0.22},{"x":1568968680000,"y":0.06},{"x":1568968740000,"y":0.16},{"x":1568968800000,"y":0.15},{"x":1568968860000,"y":0.06},{"x":1568968920000,"y":0.21},{"x":1568968980000,"y":0.06},{"x":1568969040000,"y":0.06},{"x":1568969100000,"y":0.12},{"x":1568969160000,"y":0.08},{"x":1568969220000,"y":0.19},{"x":1568969280000,"y":0.08},{"x":1568969340000,"y":0.09},{"x":1568969400000,"y":0.14},{"x":1568969460000,"y":0.09},{"x":1568969520000,"y":0.18},{"x":1568969580000,"y":2.11},{"x":1568969640000,"y":0.06},{"x":1568969700000,"y":0.13},{"x":1568969760000,"y":0.05},{"x":1568969820000,"y":0.19},{"x":1568969880000,"y":0.09},{"x":1568969940000,"y":0.07},{"x":1568970000000,"y":0.18},{"x":1568970060000,"y":0.1},{"x":1568970120000,"y":0.2},{"x":1568970180000,"y":0.1},{"x":1568970240000,"y":0.08},{"x":1568970300000,"y":0.15},{"x":1568970360000,"y":0.05},{"x":1568970420000,"y":0.06},{"x":1568970480000,"y":0.18},{"x":1568970540000,"y":0.11},{"x":1568970600000,"y":0.13},{"x":1568970660000,"y":0.05},{"x":1568970720000,"y":0.1},{"x":1568970780000,"y":0.21},{"x":1568970840000,"y":0.07},{"x":1568970900000,"y":0.13},{"x":1568970960000,"y":0.08},{"x":1568971020000,"y":0.07},{"x":1568971080000,"y":0.22},{"x":1568971140000,"y":0.1},{"x":1568971200000,"y":0.1},{"x":1568971260000,"y":0.09},{"x":1568971320000,"y":0.07},{"x":1568971380000,"y":0.22},{"x":1568971440000,"y":0.07},{"x":1568971500000,"y":0.17},{"x":1568971560000,"y":0.07},{"x":1568971620000,"y":0.05},{"x":1568971680000,"y":0.2},{"x":1568971740000,"y":0.06},{"x":1568971800000,"y":0.12},{"x":1568971860000,"y":0.05},{"x":1568971920000,"y":0.06},{"x":1568971980000,"y":0.18},{"x":1568972040000,"y":0.06},{"x":1568972100000,"y":0.12},{"x":1568972160000,"y":0.08},{"x":1568972220000,"y":0.07},{"x":1568972280000,"y":0.2},{"x":1568972340000,"y":0.13},{"x":1568972400000,"y":0.15},{"x":1568972460000,"y":0.09},{"x":1568972520000,"y":0.06},{"x":1568972580000,"y":0.22},{"x":1568972640000,"y":0.06},{"x":1568972700000,"y":0.11},{"x":1568972760000,"y":0.1},{"x":1568972820000,"y":0.06},{"x":1568972880000,"y":0.07},{"x":1568972940000,"y":0.18},{"x":1568973000000,"y":0.15},{"x":1568973060000,"y":0.05},{"x":1568973120000,"y":0.07},{"x":1568973180000,"y":0.1},{"x":1568973240000,"y":0.18},{"x":1568973300000,"y":0.11},{"x":1568973360000,"y":0.06},{"x":1568973420000,"y":0.05},{"x":1568973480000,"y":0.05},{"x":1568973540000,"y":0.2},{"x":1568973600000,"y":0.19},{"x":1568973660000,"y":0.07},{"x":1568973720000,"y":0.09},{"x":1568973780000,"y":0.08},{"x":1568973840000,"y":0.2},{"x":1568973900000,"y":0.13},{"x":1568973960000,"y":0.08},{"x":1568974020000,"y":0.04},{"x":1568974080000,"y":0.07},{"x":1568974140000,"y":0.27},{"x":1568974200000,"y":0.1},{"x":1568974260000,"y":0.06},{"x":1568974320000,"y":0.06},{"x":1568974380000,"y":0.07},{"x":1568974440000,"y":0.21},{"x":1568974500000,"y":0.1},{"x":1568974560000,"y":0.05},{"x":1568974620000,"y":0.07},{"x":1568974680000,"y":0.04},{"x":1568974740000,"y":0.17},{"x":1568974800000,"y":0.12},{"x":1568974860000,"y":0.07},{"x":1568974920000,"y":0.04},{"x":1568974980000,"y":0.05},{"x":1568975040000,"y":2.79},{"x":1568975100000,"y":1.24},{"x":1568975160000,"y":0.05},{"x":1568975220000,"y":0.05},{"x":1568975280000,"y":0.05},{"x":1568975340000,"y":0.05},{"x":1568975400000,"y":0.36},{"x":1568975460000,"y":0.05},{"x":1568975520000,"y":0.07},{"x":1568975580000,"y":0.12},{"x":1568975640000,"y":0.05},{"x":1568975700000,"y":0.27},{"x":1568975760000,"y":0.05},{"x":1568975820000,"y":0.06},{"x":1568975880000,"y":0.05},{"x":1568975940000,"y":0.17},{"x":1568976000000,"y":0.25},{"x":1568976060000,"y":0.07},{"x":1568976120000,"y":0.06},{"x":1568976180000,"y":0.05},{"x":1568976240000,"y":0.07},{"x":1568976300000,"y":0.26},{"x":1568976360000,"y":0.05},{"x":1568976420000,"y":0.07},{"x":1568976480000,"y":0.11},{"x":1568976540000,"y":0.1},{"x":1568976600000,"y":0.32},{"x":1568976660000,"y":0.08},{"x":1568976720000,"y":0.08},{"x":1568976780000,"y":0.07},{"x":1568976840000,"y":0.05},{"x":1568976900000,"y":0.26},{"x":1568976960000,"y":0.09},{"x":1568977020000,"y":0.06},{"x":1568977080000,"y":0.08},{"x":1568977140000,"y":0.06},{"x":1568977200000,"y":0.28},{"x":1568977260000,"y":0.07},{"x":1568977320000,"y":0.08},{"x":1568977380000,"y":0.06},{"x":1568977440000,"y":0.07},{"x":1568977500000,"y":0.15},{"x":1568977560000,"y":4.86},{"x":1568977620000,"y":1.15},{"x":1568977680000,"y":0.09},{"x":1568977740000,"y":0.17},{"x":1568977800000,"y":0.15},{"x":1568977860000,"y":0.23},{"x":1568977920000,"y":0.09},{"x":1568977980000,"y":0.06},{"x":1568978040000,"y":0.1},{"x":1568978100000,"y":0.14},{"x":1568978160000,"y":0.19},{"x":1568978220000,"y":0.07},{"x":1568978280000,"y":0.07},{"x":1568978340000,"y":0.09},{"x":1568978400000,"y":0.12},{"x":1568978460000,"y":0.21},{"x":1568978520000,"y":0.06},{"x":1568978580000,"y":0.08},{"x":1568978640000,"y":0.07},{"x":1568978700000,"y":1.23},{"x":1568978760000,"y":0.19},{"x":1568978820000,"y":0.05},{"x":1568978880000,"y":0.06},{"x":1568978940000,"y":0.05},{"x":1568979000000,"y":0.1},{"x":1568979060000,"y":0.19},{"x":1568979120000,"y":0.06},{"x":1568979180000,"y":0.06},{"x":1568979240000,"y":0.07},{"x":1568979300000,"y":0.13},{"x":1568979360000,"y":0.25},{"x":1568979420000,"y":0.12},{"x":1568979480000,"y":0.11},{"x":1568979540000,"y":0.17},{"x":1568979600000,"y":0.14},{"x":1568979660000,"y":0.08},{"x":1568979720000,"y":0.22},{"x":1568979780000,"y":0.08},{"x":1568979840000,"y":0.09},{"x":1568979900000,"y":0.11},{"x":1568979960000,"y":0.11},{"x":1568980020000,"y":0.25},{"x":1568980080000,"y":0.07},{"x":1568980140000,"y":0.12},{"x":1568980200000,"y":0.13},{"x":1568980260000,"y":0.09},{"x":1568980320000,"y":0.24},{"x":1568980380000,"y":0.07},{"x":1568980440000,"y":0.08},{"x":1568980500000,"y":0.19},{"x":1568980560000,"y":0.07},{"x":1568980620000,"y":0.22},{"x":1568980680000,"y":0.06},{"x":1568980740000,"y":0.05},{"x":1568980800000,"y":0.16},{"x":1568980860000,"y":0.06},{"x":1568980920000,"y":0.22},{"x":1568980980000,"y":0.06},{"x":1568981040000,"y":0.07},{"x":1568981100000,"y":0.13},{"x":1568981160000,"y":0.08},{"x":1568981220000,"y":0.24},{"x":1568981280000,"y":0.07},{"x":1568981340000,"y":0.15},{"x":1568981400000,"y":0.15},{"x":1568981460000,"y":0.08},{"x":1568981520000,"y":0.2},{"x":1568981580000,"y":0.08},{"x":1568981640000,"y":0.08},{"x":1568981700000,"y":0.11},{"x":1568981760000,"y":0.09},{"x":1568981820000,"y":0.19},{"x":1568981880000,"y":0.08},{"x":1568981940000,"y":0.09},{"x":1568982000000,"y":0.12},{"x":1568982060000,"y":0.05},{"x":1568982120000,"y":0.09},{"x":1568982180000,"y":0.2},{"x":1568982240000,"y":0.07},{"x":1568982300000,"y":0.14},{"x":1568982360000,"y":0.07},{"x":1568982420000,"y":0.12},{"x":1568982480000,"y":0.22},{"x":1568982540000,"y":0.05},{"x":1568982600000,"y":0.13},{"x":1568982660000,"y":0.06},{"x":1568982720000,"y":0.1},{"x":1568982780000,"y":0.2},{"x":1568982840000,"y":1.46},{"x":1568982900000,"y":0.18},{"x":1568982960000,"y":0.12},{"x":1568983020000,"y":0.07},{"x":1568983080000,"y":0.22},{"x":1568983140000,"y":0.17},{"x":1568983200000,"y":0.16},{"x":1568983260000,"y":0.08},{"x":1568983320000,"y":0.07},{"x":1568983380000,"y":0.23},{"x":1568983440000,"y":0.09},{"x":1568983500000,"y":0.23},{"x":1568983560000,"y":0.08},{"x":1568983620000,"y":0.07},{"x":1568983680000,"y":0.22},{"x":1568983740000,"y":0.06},{"x":1568983800000,"y":0.14},{"x":1568983860000,"y":0.09},{"x":1568983920000,"y":0.09},{"x":1568983980000,"y":0.21},{"x":1568984040000,"y":0.09},{"x":1568984100000,"y":0.12},{"x":1568984160000,"y":0.08},{"x":1568984220000,"y":0.06},{"x":1568984280000,"y":0.1},{"x":1568984340000,"y":0.23},{"x":1568984400000,"y":0.18},{"x":1568984460000,"y":0.11},{"x":1568984520000,"y":0.12},{"x":1568984580000,"y":0.08},{"x":1568984640000,"y":0.2},{"x":1568984700000,"y":0.2},{"x":1568984760000,"y":0.11},{"x":1568984820000,"y":0.1},{"x":1568984880000,"y":0.14},{"x":1568984940000,"y":0.29},{"x":1568985000000,"y":0.14},{"x":1568985060000,"y":0.15},{"x":1568985120000,"y":0.15},{"x":1568985180000,"y":0.12},{"x":1568985240000,"y":0.24},{"x":1568985300000,"y":0.27},{"x":1568985360000,"y":0.14},{"x":1568985420000,"y":0.13},{"x":1568985480000,"y":0.14},{"x":1568985540000,"y":0.28},{"x":1568985600000,"y":0.18},{"x":1568985660000,"y":0.15},{"x":1568985720000,"y":0.19},{"x":1568985780000,"y":0.19},{"x":1568985840000,"y":0.25},{"x":1568985900000,"y":0.22},{"x":1568985960000,"y":0.15},{"x":1568986020000,"y":0.16},{"x":1568986080000,"y":0.15},{"x":1568986140000,"y":0.26},{"x":1568986200000,"y":0.28},{"x":1568986260000,"y":0.15},{"x":1568986320000,"y":0.18},{"x":1568986380000,"y":0.15},{"x":1568986440000,"y":0.15},{"x":1568986500000,"y":0.37},{"x":1568986560000,"y":0.17},{"x":1568986620000,"y":0.55},{"x":1568986680000,"y":0.17},{"x":1568986740000,"y":0.26},{"x":1568986800000,"y":0.33},{"x":1568986860000,"y":0.19},{"x":1568986920000,"y":0.19},{"x":1568986980000,"y":0.17},{"x":1568987040000,"y":0.16},{"x":1568987100000,"y":0.34},{"x":1568987160000,"y":0.19},{"x":1568987220000,"y":0.15},{"x":1568987280000,"y":0.18},{"x":1568987340000,"y":0.15},{"x":1568987400000,"y":0.34},{"x":1568987460000,"y":0.2},{"x":1568987520000,"y":0.16},{"x":1568987580000,"y":0.14},{"x":1568987640000,"y":1.6},{"x":1568987700000,"y":0.39},{"x":1568987760000,"y":0.15},{"x":1568987820000,"y":0.14},{"x":1568987880000,"y":0.15},{"x":1568987940000,"y":0.17},{"x":1568988000000,"y":0.22},{"x":1568988060000,"y":0.27},{"x":1568988120000,"y":0.17},{"x":1568988180000,"y":0.15},{"x":1568988240000,"y":0.16},{"x":1568988300000,"y":0.19},{"x":1568988360000,"y":0.31},{"x":1568988420000,"y":0.17},{"x":1568988480000,"y":0.22},{"x":1568988540000,"y":0.3},{"x":1568988600000,"y":0.25},{"x":1568988660000,"y":0.28},{"x":1568988720000,"y":0.2},{"x":1568988780000,"y":0.15},{"x":1568988840000,"y":0.14},{"x":1568988900000,"y":0.21},{"x":1568988960000,"y":0.3},{"x":1568989020000,"y":0.13},{"x":1568989080000,"y":0.16},{"x":1568989140000,"y":0.15},{"x":1568989200000,"y":0.19},{"x":1568989260000,"y":0.27},{"x":1568989320000,"y":0.15},{"x":1568989380000,"y":0.16},{"x":1568989440000,"y":0.13},{"x":1568989500000,"y":0.25},{"x":1568989560000,"y":0.3},{"x":1568989620000,"y":0.15},{"x":1568989680000,"y":0.15},{"x":1568989740000,"y":0.14},{"x":1568989800000,"y":0.23},{"x":1568989860000,"y":0.16},{"x":1568989920000,"y":0.28},{"x":1568989980000,"y":0.15},{"x":1568990040000,"y":0.14},{"x":1568990100000,"y":1.51},{"x":1568990160000,"y":0.17},{"x":1568990220000,"y":0.28},{"x":1568990280000,"y":0.15},{"x":1568990340000,"y":0.22},{"x":1568990400000,"y":0.2},{"x":1568990460000,"y":0.16},{"x":1568990520000,"y":0.28},{"x":1568990580000,"y":0.15},{"x":1568990640000,"y":0.14},{"x":1568990700000,"y":0.19},{"x":1568990760000,"y":0.15},{"x":1568990820000,"y":0.3},{"x":1568990880000,"y":0.14},{"x":1568990940000,"y":0.15},{"x":1568991000000,"y":0.19},{"x":1568991060000,"y":0.17},{"x":1568991120000,"y":0.3},{"x":1568991180000,"y":0.16},{"x":1568991240000,"y":0.17},{"x":1568991300000,"y":1.54},{"x":1568991360000,"y":0.17},{"x":1568991420000,"y":0.3},{"x":1568991480000,"y":0.15},{"x":1568991540000,"y":0.14},{"x":1568991600000,"y":0.25},{"x":1568991660000,"y":0.15},{"x":1568991720000,"y":0.29},{"x":1568991780000,"y":0.17},{"x":1568991840000,"y":0.14},{"x":1568991900000,"y":0.22},{"x":1568991960000,"y":0.15},{"x":1568992020000,"y":0.16},{"x":1568992080000,"y":0.3},{"x":1568992140000,"y":0.2},{"x":1568992200000,"y":0.2},{"x":1568992260000,"y":0.15},{"x":1568992320000,"y":0.15},{"x":1568992380000,"y":0.3},{"x":1568992440000,"y":0.15},{"x":1568992500000,"y":0.23},{"x":1568992560000,"y":0.16},{"x":1568992620000,"y":0.16},{"x":1568992680000,"y":0.27},{"x":1568992740000,"y":0.16},{"x":1568992800000,"y":0.21},{"x":1568992860000,"y":0.14},{"x":1568992920000,"y":0.18},{"x":1568992980000,"y":0.29},{"x":1568993040000,"y":0.13},{"x":1568993100000,"y":0.25},{"x":1568993160000,"y":0.16},{"x":1568993220000,"y":0.13},{"x":1568993280000,"y":0.27},{"x":1568993340000,"y":0.14},{"x":1568993400000,"y":0.2},{"x":1568993460000,"y":0.13},{"x":1568993520000,"y":0.16},{"x":1568993580000,"y":0.28},{"x":1568993640000,"y":0.15},{"x":1568993700000,"y":0.2},{"x":1568993760000,"y":0.45},{"x":1568993820000,"y":0.16},{"x":1568993880000,"y":0.28},{"x":1568993940000,"y":0.27},{"x":1568994000000,"y":0.21},{"x":1568994060000,"y":0.17},{"x":1568994120000,"y":0.15},{"x":1568994180000,"y":0.15},{"x":1568994240000,"y":0.29},{"x":1568994300000,"y":0.24},{"x":1568994360000,"y":0.15},{"x":1568994420000,"y":0.13},{"x":1568994480000,"y":0.14},{"x":1568994540000,"y":0.29},{"x":1568994600000,"y":0.23},{"x":1568994660000,"y":0.2},{"x":1568994720000,"y":0.13},{"x":1568994780000,"y":0.16},{"x":1568994840000,"y":0.31},{"x":1568994900000,"y":0.22},{"x":1568994960000,"y":0.12},{"x":1568995020000,"y":0.13},{"x":1568995080000,"y":0.17},{"x":1568995140000,"y":0.29},{"x":1568995200000,"y":0.2},{"x":1568995260000,"y":0.08},{"x":1568995320000,"y":0.09},{"x":1568995380000,"y":0.11},{"x":1568995440000,"y":0.22},{"x":1568995500000,"y":0.19},{"x":1568995560000,"y":0.07},{"x":1568995620000,"y":0.05},{"x":1568995680000,"y":0.07},{"x":1568995740000,"y":0.29},{"x":1568995800000,"y":0.12},{"x":1568995860000,"y":0.05},{"x":1568995920000,"y":0.07},{"x":1568995980000,"y":0.08},{"x":1568996040000,"y":0.2},{"x":1568996100000,"y":0.13},{"x":1568996160000,"y":0.07},{"x":1568996220000,"y":0.07},{"x":1568996280000,"y":0.07},{"x":1568996340000,"y":0.18},{"x":1568996400000,"y":0.11},{"x":1568996460000,"y":0.08},{"x":1568996520000,"y":0.07},{"x":1568996580000,"y":0.05},{"x":1568996640000,"y":0.06},{"x":1568996700000,"y":5.19},{"x":1568996760000,"y":0.08},{"x":1568996820000,"y":0.09},{"x":1568996880000,"y":0.07},{"x":1568996940000,"y":0.04},{"x":1568997000000,"y":0.23},{"x":1568997060000,"y":0.07},{"x":1568997120000,"y":0.03},{"x":1568997180000,"y":0.07},{"x":1568997240000,"y":0.05},{"x":1568997300000,"y":0.23},{"x":1568997360000,"y":0.07},{"x":1568997420000,"y":0.07},{"x":1568997480000,"y":0.07},{"x":1568997540000,"y":0.13},{"x":1568997600000,"y":0.22},{"x":1568997660000,"y":0.05},{"x":1568997720000,"y":0.07},{"x":1568997780000,"y":0.11},{"x":1568997840000,"y":0.07},{"x":1568997900000,"y":0.26},{"x":1568997960000,"y":0.06},{"x":1568998020000,"y":0.08},{"x":1568998080000,"y":0.06},{"x":1568998140000,"y":0.06},{"x":1568998200000,"y":0.23},{"x":1568998260000,"y":0.08},{"x":1568998320000,"y":0.05},{"x":1568998380000,"y":0.06},{"x":1568998440000,"y":0.07},{"x":1568998500000,"y":0.25},{"x":1568998560000,"y":0.12},{"x":1568998620000,"y":0.05},{"x":1568998680000,"y":0.07},{"x":1568998740000,"y":0.05},{"x":1568998800000,"y":0.24},{"x":1568998860000,"y":0.22},{"x":1568998920000,"y":0.07},{"x":1568998980000,"y":0.05},{"x":1568999040000,"y":0.06},{"x":1568999100000,"y":0.12},{"x":1568999160000,"y":0.18},{"x":1568999220000,"y":0.08},{"x":1568999280000,"y":0.06},{"x":1568999340000,"y":0.12},{"x":1568999400000,"y":0.11},{"x":1568999460000,"y":0.22},{"x":1568999520000,"y":0.07},{"x":1568999580000,"y":0.06},{"x":1568999640000,"y":0.09},{"x":1568999700000,"y":0.1},{"x":1568999760000,"y":0.2},{"x":1568999820000,"y":0.07},{"x":1568999880000,"y":0.08},{"x":1568999940000,"y":0.08},{"x":1569000000000,"y":0.12},{"x":1569000060000,"y":0.19},{"x":1569000120000,"y":0.06},{"x":1569000180000,"y":0.05},{"x":1569000240000,"y":0.06},{"x":1569000300000,"y":0.1},{"x":1569000360000,"y":0.18},{"x":1569000420000,"y":0.08},{"x":1569000480000,"y":0.05},{"x":1569000540000,"y":0.06},{"x":1569000600000,"y":0.13},{"x":1569000660000,"y":0.21},{"x":1569000720000,"y":0.08},{"x":1569000780000,"y":0.1},{"x":1569000840000,"y":0.07},{"x":1569000900000,"y":0.11},{"x":1569000960000,"y":0.09},{"x":1569001020000,"y":0.22},{"x":1569001080000,"y":0.08},{"x":1569001140000,"y":0.15},{"x":1569001200000,"y":0.12},{"x":1569001260000,"y":0.05},{"x":1569001320000,"y":0.19},{"x":1569001380000,"y":0.07},{"x":1569001440000,"y":0.05},{"x":1569001500000,"y":0.12},{"x":1569001560000,"y":0.05},{"x":1569001620000,"y":0.22},{"x":1569001680000,"y":0.07},{"x":1569001740000,"y":0.09},{"x":1569001800000,"y":0.16},{"x":1569001860000,"y":0.07},{"x":1569001920000,"y":0.2},{"x":1569001980000,"y":0.06},{"x":1569002040000,"y":0.06},{"x":1569002100000,"y":0.11},{"x":1569002160000,"y":0.06},{"x":1569002220000,"y":0.19},{"x":1569002280000,"y":0.06},{"x":1569002340000,"y":0.05},{"x":1569002400000,"y":0.14},{"x":1569002460000,"y":0.07},{"x":1569002520000,"y":0.2},{"x":1569002580000,"y":0.06},{"x":1569002640000,"y":0.05},{"x":1569002700000,"y":0.12},{"x":1569002760000,"y":0.06},{"x":1569002820000,"y":0.23},{"x":1569002880000,"y":0.07},{"x":1569002940000,"y":0.13},{"x":1569003000000,"y":0.12},{"x":1569003060000,"y":0.06},{"x":1569003120000,"y":0.07},{"x":1569003180000,"y":0.23},{"x":1569003240000,"y":0.07},{"x":1569003300000,"y":0.12},{"x":1569003360000,"y":0.06},{"x":1569003420000,"y":0.07},{"x":1569003480000,"y":0.2},{"x":1569003540000,"y":0.07},{"x":1569003600000,"y":0.12},{"x":1569003660000,"y":0.06},{"x":1569003720000,"y":0.07},{"x":1569003780000,"y":0.22},{"x":1569003840000,"y":0.07},{"x":1569003900000,"y":0.1},{"x":1569003960000,"y":0.08},{"x":1569004020000,"y":0.05},{"x":1569004080000,"y":0.17},{"x":1569004140000,"y":0.08},{"x":1569004200000,"y":0.15},{"x":1569004260000,"y":0.05},{"x":1569004320000,"y":0.08},{"x":1569004380000,"y":0.2},{"x":1569004440000,"y":0.04},{"x":1569004500000,"y":0.12},{"x":1569004560000,"y":0.06},{"x":1569004620000,"y":0.47},{"x":1569004680000,"y":0.95},{"x":1569004740000,"y":0.14},{"x":1569004800000,"y":0.1},{"x":1569004860000,"y":0.05},{"x":1569004920000,"y":0.04},{"x":1569004980000,"y":0.17},{"x":1569005040000,"y":0.09},{"x":1569005100000,"y":0.16},{"x":1569005160000,"y":0.07},{"x":1569005220000,"y":0.08},{"x":1569005280000,"y":0.09},{"x":1569005340000,"y":0.22},{"x":1569005400000,"y":0.15},{"x":1569005460000,"y":0.07},{"x":1569005520000,"y":0.06},{"x":1569005580000,"y":0.05},{"x":1569005640000,"y":0.19},{"x":1569005700000,"y":0.13},{"x":1569005760000,"y":0.08},{"x":1569005820000,"y":0.07},{"x":1569005880000,"y":0.08},{"x":1569005940000,"y":0.25},{"x":1569006000000,"y":0.15},{"x":1569006060000,"y":0.06},{"x":1569006120000,"y":0.07},{"x":1569006180000,"y":0.07},{"x":1569006240000,"y":0.21},{"x":1569006300000,"y":0.09},{"x":1569006360000,"y":0.05},{"x":1569006420000,"y":0.06},{"x":1569006480000,"y":0.08},{"x":1569006540000,"y":0.24},{"x":1569006600000,"y":0.13},{"x":1569006660000,"y":0.07},{"x":1569006720000,"y":0.09},{"x":1569006780000,"y":0.1},{"x":1569006840000,"y":0.19},{"x":1569006900000,"y":0.12},{"x":1569006960000,"y":0.05},{"x":1569007020000,"y":0.06},{"x":1569007080000,"y":0.07},{"x":1569007140000,"y":0.12},{"x":1569007200000,"y":0.17},{"x":1569007260000,"y":0.05},{"x":1569007320000,"y":0.07},{"x":1569007380000,"y":0.05},{"x":1569007440000,"y":0.07},{"x":1569007500000,"y":0.25},{"x":1569007560000,"y":0.06},{"x":1569007620000,"y":0.09},{"x":1569007680000,"y":0.05},{"x":1569007740000,"y":0.07},{"x":1569007800000,"y":0.27},{"x":1569007860000,"y":0.08},{"x":1569007920000,"y":0.06},{"x":1569007980000,"y":0.08},{"x":1569008040000,"y":0.06},{"x":1569008100000,"y":0.27},{"x":1569008160000,"y":0.06},{"x":1569008220000,"y":0.09},{"x":1569008280000,"y":0.06},{"x":1569008340000,"y":0.1},{"x":1569008400000,"y":0.27},{"x":1569008460000,"y":0.07},{"x":1569008520000,"y":0.09},{"x":1569008580000,"y":0.07},{"x":1569008640000,"y":0.07},{"x":1569008700000,"y":0.31},{"x":1569008760000,"y":0.06},{"x":1569008820000,"y":0.07},{"x":1569008880000,"y":0.08},{"x":1569008940000,"y":0.08},{"x":1569009000000,"y":0.31},{"x":1569009060000,"y":0.1},{"x":1569009120000,"y":0.07},{"x":1569009180000,"y":0.07},{"x":1569009240000,"y":0.07},{"x":1569009300000,"y":0.25},{"x":1569009360000,"y":0.07},{"x":1569009420000,"y":0.06},{"x":1569009480000,"y":0.07},{"x":1569009540000,"y":0.09},{"x":1569009600000,"y":0.1},{"x":1569009660000,"y":0.22},{"x":1569009720000,"y":0.07},{"x":1569009780000,"y":0.08},{"x":1569009840000,"y":0.06},{"x":1569009900000,"y":0.1},{"x":1569009960000,"y":0.18},{"x":1569010020000,"y":0.06},{"x":1569010080000,"y":0.08},{"x":1569010140000,"y":0.11},{"x":1569010200000,"y":0.12},{"x":1569010260000,"y":0.22},{"x":1569010320000,"y":0.09},{"x":1569010380000,"y":0.07},{"x":1569010440000,"y":0.08},{"x":1569010500000,"y":0.11},{"x":1569010560000,"y":0.2},{"x":1569010620000,"y":0.07},{"x":1569010680000,"y":0.06},{"x":1569010740000,"y":0.09},{"x":1569010800000,"y":0.13},{"x":1569010860000,"y":0.23},{"x":1569010920000,"y":0.05},{"x":1569010980000,"y":0.07},{"x":1569011040000,"y":0.09},{"x":1569011100000,"y":0.1},{"x":1569011160000,"y":0.2},{"x":1569011220000,"y":0.07},{"x":1569011280000,"y":0.05},{"x":1569011340000,"y":0.07},{"x":1569011400000,"y":0.12},{"x":1569011460000,"y":0.25},{"x":1569011520000,"y":0.11},{"x":1569011580000,"y":0.04},{"x":1569011640000,"y":0.08},{"x":1569011700000,"y":0.17},{"x":1569011760000,"y":0.1},{"x":1569011820000,"y":0.2},{"x":1569011880000,"y":0.06},{"x":1569011940000,"y":0.12},{"x":1569012000000,"y":0.14},{"x":1569012060000,"y":0.07},{"x":1569012120000,"y":0.19},{"x":1569012180000,"y":0.06},{"x":1569012240000,"y":0.05},{"x":1569012300000,"y":0.22},{"x":1569012360000,"y":0.06},{"x":1569012420000,"y":0.22},{"x":1569012480000,"y":0.07},{"x":1569012540000,"y":0.05},{"x":1569012600000,"y":0.11},{"x":1569012660000,"y":0.08},{"x":1569012720000,"y":0.24},{"x":1569012780000,"y":0.07},{"x":1569012840000,"y":0.06},{"x":1569012900000,"y":0.11},{"x":1569012960000,"y":0.07},{"x":1569013020000,"y":0.2},{"x":1569013080000,"y":0.06},{"x":1569013140000,"y":0.08},{"x":1569013200000,"y":0.11},{"x":1569013260000,"y":0.11},{"x":1569013320000,"y":0.24},{"x":1569013380000,"y":0.1},{"x":1569013440000,"y":0.07},{"x":1569013500000,"y":0.12},{"x":1569013560000,"y":0.07},{"x":1569013620000,"y":0.21},{"x":1569013680000,"y":0.07},{"x":1569013740000,"y":0.12},{"x":1569013800000,"y":0.11},{"x":1569013860000,"y":0.09},{"x":1569013920000,"y":0.05},{"x":1569013980000,"y":0.22},{"x":1569014040000,"y":0.06},{"x":1569014100000,"y":0.11},{"x":1569014160000,"y":0.05},{"x":1569014220000,"y":0.06},{"x":1569014280000,"y":0.2},{"x":1569014340000,"y":0.09},{"x":1569014400000,"y":0.13},{"x":1569014460000,"y":0.05},{"x":1569014520000,"y":0.07},{"x":1569014580000,"y":0.18},{"x":1569014640000,"y":0.09},{"x":1569014700000,"y":0.13},{"x":1569014760000,"y":0.05},{"x":1569014820000,"y":0.07},{"x":1569014880000,"y":0.19},{"x":1569014940000,"y":0.07},{"x":1569015000000,"y":0.13},{"x":1569015060000,"y":0.07},{"x":1569015120000,"y":0.05},{"x":1569015180000,"y":0.19},{"x":1569015240000,"y":0.1},{"x":1569015300000,"y":0.11},{"x":1569015360000,"y":0.05},{"x":1569015420000,"y":0.09},{"x":1569015480000,"y":0.25},{"x":1569015540000,"y":0.1},{"x":1569015600000,"y":0.12},{"x":1569015660000,"y":0.08},{"x":1569015720000,"y":0.07},{"x":1569015780000,"y":0.2},{"x":1569015840000,"y":0.06},{"x":1569015900000,"y":0.11},{"x":1569015960000,"y":0.07},{"x":1569016020000,"y":0.06},{"x":1569016080000,"y":0.07},{"x":1569016140000,"y":0.19},{"x":1569016200000,"y":0.12},{"x":1569016260000,"y":0.09},{"x":1569016320000,"y":0.07},{"x":1569016380000,"y":0.09},{"x":1569016440000,"y":0.2},{"x":1569016500000,"y":0.11},{"x":1569016560000,"y":0.07},{"x":1569016620000,"y":0.06},{"x":1569016680000,"y":0.05},{"x":1569016740000,"y":0.22},{"x":1569016800000,"y":0.29},{"x":1569016860000,"y":0.09},{"x":1569016920000,"y":0.07},{"x":1569016980000,"y":0.08},{"x":1569017040000,"y":0.21},{"x":1569017100000,"y":0.17},{"x":1569017160000,"y":0.07},{"x":1569017220000,"y":0.11},{"x":1569017280000,"y":0.08},{"x":1569017340000,"y":0.25},{"x":1569017400000,"y":0.25},{"x":1569017460000,"y":0.13},{"x":1569017520000,"y":0.13},{"x":1569017580000,"y":0.15},{"x":1569017640000,"y":0.26},{"x":1569017700000,"y":0.15},{"x":1569017760000,"y":0.09},{"x":1569017820000,"y":0.13},{"x":1569017880000,"y":0.1},{"x":1569017940000,"y":0.25},{"x":1569018000000,"y":0.17},{"x":1569018060000,"y":0.1},{"x":1569018120000,"y":0.15},{"x":1569018180000,"y":0.08},{"x":1569018240000,"y":0.05},{"x":1569018300000,"y":0.3},{"x":1569018360000,"y":0.11},{"x":1569018420000,"y":0.1},{"x":1569018480000,"y":0.11},{"x":1569018540000,"y":0.12},{"x":1569018600000,"y":3.9},{"x":1569018660000,"y":0.15},{"x":1569018720000,"y":0.13},{"x":1569018780000,"y":0.13},{"x":1569018840000,"y":0.12},{"x":1569018900000,"y":0.34},{"x":1569018960000,"y":0.12},{"x":1569019020000,"y":0.11},{"x":1569019080000,"y":0.15},{"x":1569019140000,"y":0.2},{"x":1569019200000,"y":0.28},{"x":1569019260000,"y":0.14},{"x":1569019320000,"y":0.2},{"x":1569019380000,"y":0.14},{"x":1569019440000,"y":0.14},{"x":1569019500000,"y":0.33},{"x":1569019560000,"y":0.14},{"x":1569019620000,"y":0.14},{"x":1569019680000,"y":0.15},{"x":1569019740000,"y":0.13},{"x":1569019800000,"y":0.31},{"x":1569019860000,"y":0.18},{"x":1569019920000,"y":0.15},{"x":1569019980000,"y":0.13},{"x":1569020040000,"y":0.15},{"x":1569020100000,"y":0.32},{"x":1569020160000,"y":0.14},{"x":1569020220000,"y":0.18},{"x":1569020280000,"y":0.13},{"x":1569020340000,"y":0.14},{"x":1569020400000,"y":0.38},{"x":1569020460000,"y":0.12},{"x":1569020520000,"y":0.16},{"x":1569020580000,"y":0.15},{"x":1569020640000,"y":0.15},{"x":1569020700000,"y":0.17},{"x":1569020760000,"y":0.3},{"x":1569020820000,"y":0.14},{"x":1569020880000,"y":0.15},{"x":1569020940000,"y":0.2},{"x":1569021000000,"y":0.25},{"x":1569021060000,"y":0.28},{"x":1569021120000,"y":0.16},{"x":1569021180000,"y":0.17},{"x":1569021240000,"y":0.16},{"x":1569021300000,"y":0.22},{"x":1569021360000,"y":0.29},{"x":1569021420000,"y":0.17},{"x":1569021480000,"y":0.12},{"x":1569021540000,"y":0.14},{"x":1569021600000,"y":0.19},{"x":1569021660000,"y":0.28},{"x":1569021720000,"y":0.15},{"x":1569021780000,"y":0.16},{"x":1569021840000,"y":0.14},{"x":1569021900000,"y":0.2},{"x":1569021960000,"y":0.28},{"x":1569022020000,"y":0.15},{"x":1569022080000,"y":0.13},{"x":1569022140000,"y":0.15},{"x":1569022200000,"y":0.2},{"x":1569022260000,"y":0.28},{"x":1569022320000,"y":0.14},{"x":1569022380000,"y":0.13},{"x":1569022440000,"y":0.15},{"x":1569022500000,"y":0.18},{"x":1569022560000,"y":0.29},{"x":1569022620000,"y":0.14},{"x":1569022680000,"y":0.19},{"x":1569022740000,"y":0.21},{"x":1569022800000,"y":0.18},{"x":1569022860000,"y":0.16},{"x":1569022920000,"y":0.3},{"x":1569022980000,"y":0.14},{"x":1569023040000,"y":0.13},{"x":1569023100000,"y":0.18},{"x":1569023160000,"y":0.15},{"x":1569023220000,"y":0.28},{"x":1569023280000,"y":0.16},{"x":1569023340000,"y":0.17},{"x":1569023400000,"y":0.19},{"x":1569023460000,"y":0.15},{"x":1569023520000,"y":0.3},{"x":1569023580000,"y":0.14},{"x":1569023640000,"y":0.15},{"x":1569023700000,"y":0.21},{"x":1569023760000,"y":0.15},{"x":1569023820000,"y":0.34},{"x":1569023880000,"y":0.14},{"x":1569023940000,"y":0.15},{"x":1569024000000,"y":0.23},{"x":1569024060000,"y":0.15},{"x":1569024120000,"y":0.28},{"x":1569024180000,"y":0.15},{"x":1569024240000,"y":0.15},{"x":1569024300000,"y":0.18},{"x":1569024360000,"y":0.17},{"x":1569024420000,"y":0.26},{"x":1569024480000,"y":0.16},{"x":1569024540000,"y":0.2},{"x":1569024600000,"y":0.26},{"x":1569024660000,"y":0.12},{"x":1569024720000,"y":0.27},{"x":1569024780000,"y":0.17},{"x":1569024840000,"y":0.14},{"x":1569024900000,"y":0.25},{"x":1569024960000,"y":0.15},{"x":1569025020000,"y":0.12},{"x":1569025080000,"y":0.26},{"x":1569025140000,"y":0.13},{"x":1569025200000,"y":0.18},{"x":1569025260000,"y":0.13},{"x":1569025320000,"y":0.15},{"x":1569025380000,"y":0.27},{"x":1569025440000,"y":0.14},{"x":1569025500000,"y":0.2},{"x":1569025560000,"y":0.14},{"x":1569025620000,"y":0.15},{"x":1569025680000,"y":0.26},{"x":1569025740000,"y":0.15},{"x":1569025800000,"y":0.2},{"x":1569025860000,"y":0.16},{"x":1569025920000,"y":0.13},{"x":1569025980000,"y":0.27},{"x":1569026040000,"y":0.17},{"x":1569026100000,"y":0.2},{"x":1569026160000,"y":0.15},{"x":1569026220000,"y":0.16},{"x":1569026280000,"y":0.3},{"x":1569026340000,"y":0.23},{"x":1569026400000,"y":0.22},{"x":1569026460000,"y":1.71},{"x":1569026520000,"y":0.15},{"x":1569026580000,"y":0.29},{"x":1569026640000,"y":0.13},{"x":1569026700000,"y":0.21},{"x":1569026760000,"y":0.14},{"x":1569026820000,"y":0.17},{"x":1569026880000,"y":0.37},{"x":1569026940000,"y":0.2},{"x":1569027000000,"y":0.24},{"x":1569027060000,"y":0.18},{"x":1569027120000,"y":0.16},{"x":1569027180000,"y":0.2},{"x":1569027240000,"y":0.31},{"x":1569027300000,"y":0.23},{"x":1569027360000,"y":0.15},{"x":1569027420000,"y":0.17},{"x":1569027480000,"y":0.15},{"x":1569027540000,"y":0.27},{"x":1569027600000,"y":0.29},{"x":1569027660000,"y":0.63},{"x":1569027720000,"y":0.15},{"x":1569027780000,"y":0.13},{"x":1569027840000,"y":0.32},{"x":1569027900000,"y":0.19},{"x":1569027960000,"y":0.14},{"x":1569028020000,"y":0.15},{"x":1569028080000,"y":0.17},{"x":1569028140000,"y":0.37},{"x":1569028200000,"y":0.16},{"x":1569028260000,"y":0.15},{"x":1569028320000,"y":0.14},{"x":1569028380000,"y":0.13},{"x":1569028440000,"y":0.28},{"x":1569028500000,"y":0.16},{"x":1569028560000,"y":0.08},{"x":1569028620000,"y":0.07},{"x":1569028680000,"y":0.07},{"x":1569028740000,"y":0.21},{"x":1569028800000,"y":0.17},{"x":1569028860000,"y":0.07},{"x":1569028920000,"y":0.1},{"x":1569028980000,"y":0.06},{"x":1569029040000,"y":0.19},{"x":1569029100000,"y":0.11},{"x":1569029160000,"y":0.07},{"x":1569029220000,"y":0.08},{"x":1569029280000,"y":0.07},{"x":1569029340000,"y":0.1},{"x":1569029400000,"y":0.33},{"x":1569029460000,"y":0.07},{"x":1569029520000,"y":0.05},{"x":1569029580000,"y":0.07},{"x":1569029640000,"y":0.08},{"x":1569029700000,"y":0.29},{"x":1569029760000,"y":0.07},{"x":1569029820000,"y":0.07},{"x":1569029880000,"y":0.07},{"x":1569029940000,"y":0.19},{"x":1569030000000,"y":0.28},{"x":1569030060000,"y":0.08},{"x":1569030120000,"y":0.06},{"x":1569030180000,"y":0.05},{"x":1569030240000,"y":0.09},{"x":1569030300000,"y":0.28},{"x":1569030360000,"y":0.07},{"x":1569030420000,"y":0.07},{"x":1569030480000,"y":0.07},{"x":1569030540000,"y":0.07},{"x":1569030600000,"y":0.31},{"x":1569030660000,"y":0.11},{"x":1569030720000,"y":0.07},{"x":1569030780000,"y":0.07},{"x":1569030840000,"y":0.07},{"x":1569030900000,"y":0.28},{"x":1569030960000,"y":0.09},{"x":1569031020000,"y":0.07},{"x":1569031080000,"y":0.09},{"x":1569031140000,"y":0.08},{"x":1569031200000,"y":0.27},{"x":1569031260000,"y":0.09},{"x":1569031320000,"y":0.12},{"x":1569031380000,"y":0.06},{"x":1569031440000,"y":0.08},{"x":1569031500000,"y":0.3},{"x":1569031560000,"y":0.07},{"x":1569031620000,"y":0.08},{"x":1569031680000,"y":0.07},{"x":1569031740000,"y":0.19},{"x":1569031800000,"y":0.13},{"x":1569031860000,"y":0.22},{"x":1569031920000,"y":0.08},{"x":1569031980000,"y":0.07},{"x":1569032040000,"y":0.07},{"x":1569032100000,"y":0.21},{"x":1569032160000,"y":0.2},{"x":1569032220000,"y":0.07},{"x":1569032280000,"y":0.07},{"x":1569032340000,"y":0.13},{"x":1569032400000,"y":0.16},{"x":1569032460000,"y":0.2},{"x":1569032520000,"y":0.05},{"x":1569032580000,"y":0.07},{"x":1569032640000,"y":0.07},{"x":1569032700000,"y":0.19},{"x":1569032760000,"y":0.19},{"x":1569032820000,"y":0.07},{"x":1569032880000,"y":0.07},{"x":1569032940000,"y":0.07},{"x":1569033000000,"y":0.14},{"x":1569033060000,"y":0.21},{"x":1569033120000,"y":0.09},{"x":1569033180000,"y":0.06},{"x":1569033240000,"y":0.07},{"x":1569033300000,"y":0.16},{"x":1569033360000,"y":0.18},{"x":1569033420000,"y":0.06},{"x":1569033480000,"y":0.06},{"x":1569033540000,"y":0.17},{"x":1569033600000,"y":0.22},{"x":1569033660000,"y":0.23},{"x":1569033720000,"y":0.07},{"x":1569033780000,"y":0.05},{"x":1569033840000,"y":0.05},{"x":1569033900000,"y":0.11},{"x":1569033960000,"y":0.21},{"x":1569034020000,"y":0.07},{"x":1569034080000,"y":0.06},{"x":1569034140000,"y":0.1},{"x":1569034200000,"y":0.12},{"x":1569034260000,"y":0.12},{"x":1569034320000,"y":0.22},{"x":1569034380000,"y":0.07},{"x":1569034440000,"y":0.07},{"x":1569034500000,"y":0.1},{"x":1569034560000,"y":0.05},{"x":1569034620000,"y":0.18},{"x":1569034680000,"y":0.08},{"x":1569034740000,"y":0.05},{"x":1569034800000,"y":0.19},{"x":1569034860000,"y":0.07},{"x":1569034920000,"y":0.18},{"x":1569034980000,"y":0.07},{"x":1569035040000,"y":0.05},{"x":1569035100000,"y":0.13},{"x":1569035160000,"y":0.07},{"x":1569035220000,"y":0.2},{"x":1569035280000,"y":0.1},{"x":1569035340000,"y":0.13},{"x":1569035400000,"y":0.14},{"x":1569035460000,"y":0.07},{"x":1569035520000,"y":0.19},{"x":1569035580000,"y":0.05},{"x":1569035640000,"y":0.06},{"x":1569035700000,"y":0.15},{"x":1569035760000,"y":0.07},{"x":1569035820000,"y":0.22},{"x":1569035880000,"y":0.06},{"x":1569035940000,"y":0.1},{"x":1569036000000,"y":0.11},{"x":1569036060000,"y":0.06},{"x":1569036120000,"y":0.2},{"x":1569036180000,"y":0.05},{"x":1569036240000,"y":0.06},{"x":1569036300000,"y":0.14},{"x":1569036360000,"y":0.06},{"x":1569036420000,"y":0.07},{"x":1569036480000,"y":0.19},{"x":1569036540000,"y":0.07},{"x":1569036600000,"y":0.17},{"x":1569036660000,"y":0.05},{"x":1569036720000,"y":0.06},{"x":1569036780000,"y":0.19},{"x":1569036840000,"y":0.08},{"x":1569036900000,"y":0.13},{"x":1569036960000,"y":0.04},{"x":1569037020000,"y":0.05},{"x":1569037080000,"y":0.97},{"x":1569037140000,"y":0.12},{"x":1569037200000,"y":0.14},{"x":1569037260000,"y":0.05},{"x":1569037320000,"y":0.06},{"x":1569037380000,"y":4.22},{"x":1569037440000,"y":0.07},{"x":1569037500000,"y":0.11},{"x":1569037560000,"y":0.05},{"x":1569037620000,"y":0.09},{"x":1569037680000,"y":0.23},{"x":1569037740000,"y":0.85},{"x":1569037800000,"y":0.12},{"x":1569037860000,"y":0.13},{"x":1569037920000,"y":0.38},{"x":1569037980000,"y":0.19},{"x":1569038040000,"y":0.05},{"x":1569038100000,"y":0.13},{"x":1569038160000,"y":0.05},{"x":1569038220000,"y":0.06},{"x":1569038280000,"y":0.18},{"x":1569038340000,"y":0.08},{"x":1569038400000,"y":0.15},{"x":1569038460000,"y":0.08},{"x":1569038520000,"y":0.08},{"x":1569038580000,"y":0.61},{"x":1569038640000,"y":0.19},{"x":1569038700000,"y":0.13},{"x":1569038760000,"y":0.05},{"x":1569038820000,"y":0.04},{"x":1569038880000,"y":0.07},{"x":1569038940000,"y":0.29},{"x":1569039000000,"y":0.27},{"x":1569039060000,"y":0.05},{"x":1569039120000,"y":0.06},{"x":1569039180000,"y":0.08},{"x":1569039240000,"y":0.2},{"x":1569039300000,"y":0.17},{"x":1569039360000,"y":0.1},{"x":1569039420000,"y":0.05},{"x":1569039480000,"y":0.05},{"x":1569039540000,"y":0.36},{"x":1569039600000,"y":0.12},{"x":1569039660000,"y":0.06},{"x":1569039720000,"y":0.06},{"x":1569039780000,"y":0.07},{"x":1569039840000,"y":0.21},{"x":1569039900000,"y":0.13},{"x":1569039960000,"y":0.07},{"x":1569040020000,"y":0.06},{"x":1569040080000,"y":0.07},{"x":1569040140000,"y":0.19},{"x":1569040200000,"y":0.16},{"x":1569040260000,"y":0.05},{"x":1569040320000,"y":0.07},{"x":1569040380000,"y":0.07},{"x":1569040440000,"y":4.69},{"x":1569040500000,"y":0.21},{"x":1569040560000,"y":0.06},{"x":1569040620000,"y":0.07},{"x":1569040680000,"y":0.09},{"x":1569040740000,"y":0.12},{"x":1569040800000,"y":0.27},{"x":1569040860000,"y":0.09},{"x":1569040920000,"y":1.16},{"x":1569040980000,"y":0.8},{"x":1569041040000,"y":0.07},{"x":1569041100000,"y":0.24},{"x":1569041160000,"y":0.07},{"x":1569041220000,"y":0.08},{"x":1569041280000,"y":0.08},{"x":1569041340000,"y":0.41},{"x":1569041400000,"y":0.22},{"x":1569041460000,"y":0.08},{"x":1569041520000,"y":0.07},{"x":1569041580000,"y":0.05},{"x":1569041640000,"y":0.07},{"x":1569041700000,"y":0.26},{"x":1569041760000,"y":0.04},{"x":1569041820000,"y":0.06},{"x":1569041880000,"y":0.1},{"x":1569041940000,"y":0.58},{"x":1569042000000,"y":0.75},{"x":1569042060000,"y":0.33},{"x":1569042120000,"y":0.07},{"x":1569042180000,"y":0.04},{"x":1569042240000,"y":0.31},{"x":1569042300000,"y":0.28},{"x":1569042360000,"y":1.67},{"x":1569042420000,"y":0.52},{"x":1569042480000,"y":0.07},{"x":1569042540000,"y":0.14},{"x":1569042600000,"y":0.27},{"x":1569042660000,"y":0.07},{"x":1569042720000,"y":0.07},{"x":1569042780000,"y":0.07},{"x":1569042840000,"y":0.07},{"x":1569042900000,"y":0.27},{"x":1569042960000,"y":0.08},{"x":1569043020000,"y":0.07},{"x":1569043080000,"y":0.08},{"x":1569043140000,"y":0.09},{"x":1569043200000,"y":0.11},{"x":1569043260000,"y":1.9},{"x":1569043320000,"y":0.07},{"x":1569043380000,"y":0.07},{"x":1569043440000,"y":0.27},{"x":1569043500000,"y":0.11},{"x":1569043560000,"y":0.22},{"x":1569043620000,"y":0.07},{"x":1569043680000,"y":0.71},{"x":1569043740000,"y":0.05},{"x":1569043800000,"y":0.1},{"x":1569043860000,"y":3.62},{"x":1569043920000,"y":0.07},{"x":1569043980000,"y":0.06},{"x":1569044040000,"y":0.1},{"x":1569044100000,"y":0.1},{"x":1569044160000,"y":0.21},{"x":1569044220000,"y":0.09},{"x":1569044280000,"y":0.1},{"x":1569044340000,"y":0.16},{"x":1569044400000,"y":0.11},{"x":1569044460000,"y":0.22},{"x":1569044520000,"y":0.07},{"x":1569044580000,"y":0.05},{"x":1569044640000,"y":0.06},{"x":1569044700000,"y":0.12},{"x":1569044760000,"y":0.2},{"x":1569044820000,"y":0.07},{"x":1569044880000,"y":0.08},{"x":1569044940000,"y":1.32},{"x":1569045000000,"y":0.11},{"x":1569045060000,"y":0.11},{"x":1569045120000,"y":0.23},{"x":1569045180000,"y":0.07},{"x":1569045240000,"y":0.09},{"x":1569045300000,"y":0.1},{"x":1569045360000,"y":0.98},{"x":1569045420000,"y":0.21},{"x":1569045480000,"y":0.07},{"x":1569045540000,"y":2.33},{"x":1569045600000,"y":0.42},{"x":1569045660000,"y":0.07},{"x":1569045720000,"y":0.23},{"x":1569045780000,"y":0.09},{"x":1569045840000,"y":2.58},{"x":1569045900000,"y":0.11},{"x":1569045960000,"y":0.23},{"x":1569046020000,"y":0.21},{"x":1569046080000,"y":0.1},{"x":1569046140000,"y":0.12},{"x":1569046200000,"y":2.09},{"x":1569046260000,"y":0.06},{"x":1569046320000,"y":0.25},{"x":1569046380000,"y":0.07},{"x":1569046440000,"y":0.09},{"x":1569046500000,"y":0.14},{"x":1569046560000,"y":0.11},{"x":1569046620000,"y":0.22},{"x":1569046680000,"y":0.1},{"x":1569046740000,"y":0.1},{"x":1569046800000,"y":0.11},{"x":1569046860000,"y":0.52},{"x":1569046920000,"y":0.07},{"x":1569046980000,"y":0.22},{"x":1569047040000,"y":0.1},{"x":1569047100000,"y":0.15},{"x":1569047160000,"y":0.11},{"x":1569047220000,"y":0.09},{"x":1569047280000,"y":0.24},{"x":1569047340000,"y":0.07},{"x":1569047400000,"y":0.17},{"x":1569047460000,"y":0.09},{"x":1569047520000,"y":0.06},{"x":1569047580000,"y":0.2},{"x":1569047640000,"y":0.08},{"x":1569047700000,"y":0.15},{"x":1569047760000,"y":0.08},{"x":1569047820000,"y":0.14},{"x":1569047880000,"y":0.2},{"x":1569047940000,"y":0.15},{"x":1569048000000,"y":0.17},{"x":1569048060000,"y":0.09},{"x":1569048120000,"y":0.07},{"x":1569048180000,"y":0.2},{"x":1569048240000,"y":0.07},{"x":1569048300000,"y":0.16},{"x":1569048360000,"y":0.07},{"x":1569048420000,"y":0.07},{"x":1569048480000,"y":0.19},{"x":1569048540000,"y":0.08},{"x":1569048600000,"y":0.16},{"x":1569048660000,"y":0.09},{"x":1569048720000,"y":0.09},{"x":1569048780000,"y":0.2},{"x":1569048840000,"y":0.08},{"x":1569048900000,"y":0.19},{"x":1569048960000,"y":0.08},{"x":1569049020000,"y":0.08},{"x":1569049080000,"y":0.21},{"x":1569049140000,"y":0.07},{"x":1569049200000,"y":0.21},{"x":1569049260000,"y":0.07},{"x":1569049320000,"y":0.07},{"x":1569049380000,"y":0.07},{"x":1569049440000,"y":0.25},{"x":1569049500000,"y":3.47},{"x":1569049560000,"y":0.12},{"x":1569049620000,"y":0.07},{"x":1569049680000,"y":0.08},{"x":1569049740000,"y":0.28},{"x":1569049800000,"y":0.12},{"x":1569049860000,"y":0.05},{"x":1569049920000,"y":0.07},{"x":1569049980000,"y":0.1},{"x":1569050040000,"y":0.22},{"x":1569050100000,"y":0.11},{"x":1569050160000,"y":0.07},{"x":1569050220000,"y":0.08},{"x":1569050280000,"y":0.08},{"x":1569050340000,"y":0.2},{"x":1569050400000,"y":0.13},{"x":1569050460000,"y":0.1},{"x":1569050520000,"y":0.11},{"x":1569050580000,"y":0.05},{"x":1569050640000,"y":0.23},{"x":1569050700000,"y":0.17},{"x":1569050760000,"y":0.13},{"x":1569050820000,"y":0.11},{"x":1569050880000,"y":0.05},{"x":1569050940000,"y":0.23},{"x":1569051000000,"y":0.2},{"x":1569051060000,"y":0.07},{"x":1569051120000,"y":0.07},{"x":1569051180000,"y":0.11},{"x":1569051240000,"y":0.26},{"x":1569051300000,"y":0.12},{"x":1569051360000,"y":0.12},{"x":1569051420000,"y":0.09},{"x":1569051480000,"y":0.11},{"x":1569051540000,"y":0.14},{"x":1569051600000,"y":0.3},{"x":1569051660000,"y":0.17},{"x":1569051720000,"y":0.12},{"x":1569051780000,"y":0.14},{"x":1569051840000,"y":0.16},{"x":1569051900000,"y":0.27},{"x":1569051960000,"y":0.09},{"x":1569052020000,"y":0.13},{"x":1569052080000,"y":0.18},{"x":1569052140000,"y":0.12},{"x":1569052200000,"y":0.35},{"x":1569052260000,"y":0.19},{"x":1569052320000,"y":0.17},{"x":1569052380000,"y":0.16},{"x":1569052440000,"y":0.16},{"x":1569052500000,"y":0.35},{"x":1569052560000,"y":0.16},{"x":1569052620000,"y":0.15},{"x":1569052680000,"y":0.13},{"x":1569052740000,"y":0.19},{"x":1569052800000,"y":0.39},{"x":1569052860000,"y":0.15},{"x":1569052920000,"y":0.17},{"x":1569052980000,"y":0.15},{"x":1569053040000,"y":0.17},{"x":1569053100000,"y":0.45},{"x":1569053160000,"y":0.13},{"x":1569053220000,"y":0.16},{"x":1569053280000,"y":0.16},{"x":1569053340000,"y":0.2},{"x":1569053400000,"y":0.35},{"x":1569053460000,"y":0.17},{"x":1569053520000,"y":0.13},{"x":1569053580000,"y":0.16},{"x":1569053640000,"y":0.15},{"x":1569053700000,"y":0.2},{"x":1569053760000,"y":0.3},{"x":1569053820000,"y":0.18},{"x":1569053880000,"y":0.14},{"x":1569053940000,"y":0.2},{"x":1569054000000,"y":0.19},{"x":1569054060000,"y":0.29},{"x":1569054120000,"y":0.16},{"x":1569054180000,"y":0.17},{"x":1569054240000,"y":0.17},{"x":1569054300000,"y":0.22},{"x":1569054360000,"y":0.28},{"x":1569054420000,"y":0.15},{"x":1569054480000,"y":0.15},{"x":1569054540000,"y":0.17},{"x":1569054600000,"y":0.2},{"x":1569054660000,"y":0.29},{"x":1569054720000,"y":0.16},{"x":1569054780000,"y":0.16},{"x":1569054840000,"y":0.18},{"x":1569054900000,"y":0.21},{"x":1569054960000,"y":0.29},{"x":1569055020000,"y":0.16},{"x":1569055080000,"y":0.15},{"x":1569055140000,"y":0.2},{"x":1569055200000,"y":0.22},{"x":1569055260000,"y":0.33},{"x":1569055320000,"y":0.15},{"x":1569055380000,"y":0.15},{"x":1569055440000,"y":0.18},{"x":1569055500000,"y":0.24},{"x":1569055560000,"y":0.32},{"x":1569055620000,"y":0.16},{"x":1569055680000,"y":0.17},{"x":1569055740000,"y":0.16},{"x":1569055800000,"y":0.18},{"x":1569055860000,"y":0.28},{"x":1569055920000,"y":0.16},{"x":1569055980000,"y":0.15},{"x":1569056040000,"y":0.18},{"x":1569056100000,"y":0.29},{"x":1569056160000,"y":0.16},{"x":1569056220000,"y":0.3},{"x":1569056280000,"y":0.15},{"x":1569056340000,"y":0.16},{"x":1569056400000,"y":0.22},{"x":1569056460000,"y":0.16},{"x":1569056520000,"y":0.28},{"x":1569056580000,"y":0.15},{"x":1569056640000,"y":0.17},{"x":1569056700000,"y":0.21},{"x":1569056760000,"y":0.17},{"x":1569056820000,"y":0.3},{"x":1569056880000,"y":0.13},{"x":1569056940000,"y":0.22},{"x":1569057000000,"y":0.19},{"x":1569057060000,"y":0.17},{"x":1569057120000,"y":0.29},{"x":1569057180000,"y":0.16},{"x":1569057240000,"y":0.15},{"x":1569057300000,"y":0.21},{"x":1569057360000,"y":0.15},{"x":1569057420000,"y":0.31},{"x":1569057480000,"y":0.17},{"x":1569057540000,"y":0.15},{"x":1569057600000,"y":0.22},{"x":1569057660000,"y":0.17},{"x":1569057720000,"y":0.17},{"x":1569057780000,"y":0.3},{"x":1569057840000,"y":0.15},{"x":1569057900000,"y":0.21},{"x":1569057960000,"y":0.17},{"x":1569058020000,"y":0.15},{"x":1569058080000,"y":0.3},{"x":1569058140000,"y":0.15},{"x":1569058200000,"y":0.23},{"x":1569058260000,"y":0.14},{"x":1569058320000,"y":0.17},{"x":1569058380000,"y":0.29},{"x":1569058440000,"y":0.19},{"x":1569058500000,"y":0.2},{"x":1569058560000,"y":0.17},{"x":1569058620000,"y":0.17},{"x":1569058680000,"y":0.3},{"x":1569058740000,"y":0.22},{"x":1569058800000,"y":0.21},{"x":1569058860000,"y":0.17},{"x":1569058920000,"y":0.16},{"x":1569058980000,"y":0.3},{"x":1569059040000,"y":0.16},{"x":1569059100000,"y":0.22},{"x":1569059160000,"y":0.15},{"x":1569059220000,"y":0.17},{"x":1569059280000,"y":0.34},{"x":1569059340000,"y":0.14},{"x":1569059400000,"y":0.2},{"x":1569059460000,"y":0.18},{"x":1569059520000,"y":0.17},{"x":1569059580000,"y":0.15},{"x":1569059640000,"y":0.3},{"x":1569059700000,"y":0.25},{"x":1569059760000,"y":0.17},{"x":1569059820000,"y":0.15},{"x":1569059880000,"y":0.17},{"x":1569059940000,"y":0.28},{"x":1569060000000,"y":0.22},{"x":1569060060000,"y":0.15},{"x":1569060120000,"y":0.18},{"x":1569060180000,"y":0.16},{"x":1569060240000,"y":0.28},{"x":1569060300000,"y":0.2},{"x":1569060360000,"y":0.17},{"x":1569060420000,"y":0.15},{"x":1569060480000,"y":0.14},{"x":1569060540000,"y":0.38},{"x":1569060600000,"y":0.2},{"x":1569060660000,"y":0.15},{"x":1569060720000,"y":0.21},{"x":1569060780000,"y":0.15},{"x":1569060840000,"y":0.28},{"x":1569060900000,"y":0.19},{"x":1569060960000,"y":0.16},{"x":1569061020000,"y":0.15},{"x":1569061080000,"y":0.16},{"x":1569061140000,"y":0.31},{"x":1569061200000,"y":0.22},{"x":1569061260000,"y":0.15},{"x":1569061320000,"y":0.17},{"x":1569061380000,"y":0.14},{"x":1569061440000,"y":0.3},{"x":1569061500000,"y":0.28},{"x":1569061560000,"y":0.14},{"x":1569061620000,"y":0.14},{"x":1569061680000,"y":0.15},{"x":1569061740000,"y":0.14},{"x":1569061800000,"y":0.39},{"x":1569061860000,"y":0.1},{"x":1569061920000,"y":0.1},{"x":1569061980000,"y":0.13},{"x":1569062040000,"y":0.07},{"x":1569062100000,"y":3.34},{"x":1569062160000,"y":0.08},{"x":1569062220000,"y":0.12},{"x":1569062280000,"y":0.07},{"x":1569062340000,"y":0.17},{"x":1569062400000,"y":0.25},{"x":1569062460000,"y":0.09},{"x":1569062520000,"y":0.09},{"x":1569062580000,"y":0.08},{"x":1569062640000,"y":0.07},{"x":1569062700000,"y":0.24},{"x":1569062760000,"y":0.08},{"x":1569062820000,"y":0.1},{"x":1569062880000,"y":0.09},{"x":1569062940000,"y":0.07},{"x":1569063000000,"y":0.23},{"x":1569063060000,"y":0.08},{"x":1569063120000,"y":0.07},{"x":1569063180000,"y":0.05},{"x":1569063240000,"y":0.1},{"x":1569063300000,"y":0.24},{"x":1569063360000,"y":0.06},{"x":1569063420000,"y":0.08},{"x":1569063480000,"y":0.08},{"x":1569063540000,"y":0.06},{"x":1569063600000,"y":0.3},{"x":1569063660000,"y":0.1},{"x":1569063720000,"y":0.11},{"x":1569063780000,"y":0.07},{"x":1569063840000,"y":0.07},{"x":1569063900000,"y":0.1},{"x":1569063960000,"y":0.2},{"x":1569064020000,"y":0.07},{"x":1569064080000,"y":0.06},{"x":1569064140000,"y":0.12},{"x":1569064200000,"y":0.12},{"x":1569064260000,"y":0.21},{"x":1569064320000,"y":0.1},{"x":1569064380000,"y":0.09},{"x":1569064440000,"y":0.07},{"x":1569064500000,"y":0.15},{"x":1569064560000,"y":0.27},{"x":1569064620000,"y":0.07},{"x":1569064680000,"y":0.07},{"x":1569064740000,"y":0.09},{"x":1569064800000,"y":0.17},{"x":1569064860000,"y":0.2},{"x":1569064920000,"y":0.08},{"x":1569064980000,"y":0.06},{"x":1569065040000,"y":0.07},{"x":1569065100000,"y":1.18},{"x":1569065160000,"y":0.26},{"x":1569065220000,"y":0.1},{"x":1569065280000,"y":0.07},{"x":1569065340000,"y":0.08},{"x":1569065400000,"y":0.1},{"x":1569065460000,"y":0.21},{"x":1569065520000,"y":0.05},{"x":1569065580000,"y":0.09},{"x":1569065640000,"y":0.05},{"x":1569065700000,"y":0.12},{"x":1569065760000,"y":0.22},{"x":1569065820000,"y":0.09},{"x":1569065880000,"y":0.06},{"x":1569065940000,"y":0.13},{"x":1569066000000,"y":0.17},{"x":1569066060000,"y":0.07},{"x":1569066120000,"y":0.22},{"x":1569066180000,"y":0.06},{"x":1569066240000,"y":0.06},{"x":1569066300000,"y":0.24},{"x":1569066360000,"y":0.09},{"x":1569066420000,"y":0.2},{"x":1569066480000,"y":2.9},{"x":1569066540000,"y":0.09},{"x":1569066600000,"y":0.16},{"x":1569066660000,"y":0.12},{"x":1569066720000,"y":0.21},{"x":1569066780000,"y":0.07},{"x":1569066840000,"y":0.08},{"x":1569066900000,"y":0.16},{"x":1569066960000,"y":0.07},{"x":1569067020000,"y":0.2},{"x":1569067080000,"y":0.08},{"x":1569067140000,"y":0.06},{"x":1569067200000,"y":0.12},{"x":1569067260000,"y":0.06},{"x":1569067320000,"y":0.19},{"x":1569067380000,"y":0.04},{"x":1569067440000,"y":0.08},{"x":1569067500000,"y":0.1},{"x":1569067560000,"y":0.07},{"x":1569067620000,"y":0.19},{"x":1569067680000,"y":0.92},{"x":1569067740000,"y":0.14},{"x":1569067800000,"y":0.12},{"x":1569067860000,"y":0.06},{"x":1569067920000,"y":0.2},{"x":1569067980000,"y":0.06},{"x":1569068040000,"y":0.06},{"x":1569068100000,"y":0.14},{"x":1569068160000,"y":0.06},{"x":1569068220000,"y":0.22},{"x":1569068280000,"y":0.08},{"x":1569068340000,"y":0.08},{"x":1569068400000,"y":0.11},{"x":1569068460000,"y":0.07},{"x":1569068520000,"y":0.06},{"x":1569068580000,"y":0.22},{"x":1569068640000,"y":0.06},{"x":1569068700000,"y":0.11},{"x":1569068760000,"y":0.07},{"x":1569068820000,"y":0.06},{"x":1569068880000,"y":0.2},{"x":1569068940000,"y":0.05},{"x":1569069000000,"y":0.11},{"x":1569069060000,"y":0.06},{"x":1569069120000,"y":0.06},{"x":1569069180000,"y":0.18},{"x":1569069240000,"y":0.07},{"x":1569069300000,"y":0.11},{"x":1569069360000,"y":0.07},{"x":1569069420000,"y":0.07},{"x":1569069480000,"y":0.18},{"x":1569069540000,"y":0.2},{"x":1569069600000,"y":0.14},{"x":1569069660000,"y":0.1},{"x":1569069720000,"y":0.07},{"x":1569069780000,"y":0.2},{"x":1569069840000,"y":0.05},{"x":1569069900000,"y":0.17},{"x":1569069960000,"y":0.07},{"x":1569070020000,"y":0.09},{"x":1569070080000,"y":0.23},{"x":1569070140000,"y":0.07},{"x":1569070200000,"y":0.15},{"x":1569070260000,"y":0.09},{"x":1569070320000,"y":0.09},{"x":1569070380000,"y":0.2},{"x":1569070440000,"y":0.09},{"x":1569070500000,"y":0.1},{"x":1569070560000,"y":0.08},{"x":1569070620000,"y":0.05},{"x":1569070680000,"y":0.25},{"x":1569070740000,"y":0.06},{"x":1569070800000,"y":0.11},{"x":1569070860000,"y":0.07},{"x":1569070920000,"y":0.1},{"x":1569070980000,"y":0.1},{"x":1569071040000,"y":0.23},{"x":1569071100000,"y":0.11},{"x":1569071160000,"y":0.07},{"x":1569071220000,"y":0.07},{"x":1569071280000,"y":0.07},{"x":1569071340000,"y":0.29},{"x":1569071400000,"y":0.13},{"x":1569071460000,"y":0.08},{"x":1569071520000,"y":0.1},{"x":1569071580000,"y":0.06},{"x":1569071640000,"y":0.21},{"x":1569071700000,"y":0.16},{"x":1569071760000,"y":0.07},{"x":1569071820000,"y":0.08},{"x":1569071880000,"y":0.09},{"x":1569071940000,"y":0.22},{"x":1569072000000,"y":0.16},{"x":1569072060000,"y":0.06},{"x":1569072120000,"y":0.08},{"x":1569072180000,"y":0.08},{"x":1569072240000,"y":0.22},{"x":1569072300000,"y":0.17},{"x":1569072360000,"y":0.08},{"x":1569072420000,"y":0.07},{"x":1569072480000,"y":0.07},{"x":1569072540000,"y":0.22},{"x":1569072600000,"y":0.14},{"x":1569072660000,"y":0.06},{"x":1569072720000,"y":0.06},{"x":1569072780000,"y":0.07},{"x":1569072840000,"y":0.21},{"x":1569072900000,"y":0.11},{"x":1569072960000,"y":0.07},{"x":1569073020000,"y":0.07},{"x":1569073080000,"y":0.07},{"x":1569073140000,"y":0.26},{"x":1569073200000,"y":0.15},{"x":1569073260000,"y":0.05},{"x":1569073320000,"y":0.05},{"x":1569073380000,"y":0.05},{"x":1569073440000,"y":0.07},{"x":1569073500000,"y":0.27},{"x":1569073560000,"y":0.05},{"x":1569073620000,"y":0.08},{"x":1569073680000,"y":0.06},{"x":1569073740000,"y":0.07},{"x":1569073800000,"y":0.25},{"x":1569073860000,"y":0.1},{"x":1569073920000,"y":0.07},{"x":1569073980000,"y":0.08},{"x":1569074040000,"y":0.06},{"x":1569074100000,"y":0.25},{"x":1569074160000,"y":0.08},{"x":1569074220000,"y":0.06},{"x":1569074280000,"y":0.07},{"x":1569074340000,"y":0.12},{"x":1569074400000,"y":0.28},{"x":1569074460000,"y":0.07},{"x":1569074520000,"y":0.05},{"x":1569074580000,"y":0.06},{"x":1569074640000,"y":0.1},{"x":1569074700000,"y":0.23},{"x":1569074760000,"y":0.06},{"x":1569074820000,"y":0.09},{"x":1569074880000,"y":0.08},{"x":1569074940000,"y":0.18},{"x":1569075000000,"y":0.26},{"x":1569075060000,"y":0.07},{"x":1569075120000,"y":0.07},{"x":1569075180000,"y":0.09},{"x":1569075240000,"y":0.08},{"x":1569075300000,"y":0.25},{"x":1569075360000,"y":0.06},{"x":1569075420000,"y":0.1},{"x":1569075480000,"y":0.07},{"x":1569075540000,"y":0.07},{"x":1569075600000,"y":0.13},{"x":1569075660000,"y":0.24},{"x":1569075720000,"y":0.08},{"x":1569075780000,"y":0.07},{"x":1569075840000,"y":0.07},{"x":1569075900000,"y":0.15},{"x":1569075960000,"y":0.25},{"x":1569076020000,"y":0.06},{"x":1569076080000,"y":0.07},{"x":1569076140000,"y":0.05},{"x":1569076200000,"y":0.18},{"x":1569076260000,"y":0.2},{"x":1569076320000,"y":0.07},{"x":1569076380000,"y":0.08},{"x":1569076440000,"y":0.07},{"x":1569076500000,"y":0.11},{"x":1569076560000,"y":0.2},{"x":1569076620000,"y":0.07},{"x":1569076680000,"y":0.07},{"x":1569076740000,"y":0.15},{"x":1569076800000,"y":0.13},{"x":1569076860000,"y":0.21},{"x":1569076920000,"y":0.06},{"x":1569076980000,"y":0.07},{"x":1569077040000,"y":0.1},{"x":1569077100000,"y":0.13},{"x":1569077160000,"y":0.23},{"x":1569077220000,"y":0.57},{"x":1569077280000,"y":0.06},{"x":1569077340000,"y":0.1},{"x":1569077400000,"y":0.13},{"x":1569077460000,"y":0.28},{"x":1569077520000,"y":0.1},{"x":1569077580000,"y":0.06},{"x":1569077640000,"y":0.08},{"x":1569077700000,"y":0.17},{"x":1569077760000,"y":0.21},{"x":1569077820000,"y":0.06},{"x":1569077880000,"y":0.09},{"x":1569077940000,"y":0.07},{"x":1569078000000,"y":0.16},{"x":1569078060000,"y":0.07},{"x":1569078120000,"y":0.21},{"x":1569078180000,"y":0.07},{"x":1569078240000,"y":0.08},{"x":1569078300000,"y":0.12},{"x":1569078360000,"y":0.46},{"x":1569078420000,"y":0.25},{"x":1569078480000,"y":0.07},{"x":1569078540000,"y":0.13},{"x":1569078600000,"y":0.18},{"x":1569078660000,"y":0.07},{"x":1569078720000,"y":0.22},{"x":1569078780000,"y":0.07},{"x":1569078840000,"y":0.08},{"x":1569078900000,"y":0.14},{"x":1569078960000,"y":0.09},{"x":1569079020000,"y":0.21},{"x":1569079080000,"y":0.05},{"x":1569079140000,"y":0.08},{"x":1569079200000,"y":0.1},{"x":1569079260000,"y":0.1},{"x":1569079320000,"y":0.2},{"x":1569079380000,"y":0.07},{"x":1569079440000,"y":0.07},{"x":1569079500000,"y":0.1},{"x":1569079560000,"y":0.07},{"x":1569079620000,"y":0.2},{"x":1569079680000,"y":0.06},{"x":1569079740000,"y":0.06},{"x":1569079800000,"y":0.11},{"x":1569079860000,"y":0.08},{"x":1569079920000,"y":0.23},{"x":1569079980000,"y":0.1},{"x":1569080040000,"y":0.11},{"x":1569080100000,"y":0.15},{"x":1569080160000,"y":0.08},{"x":1569080220000,"y":0.08},{"x":1569080280000,"y":0.19},{"x":1569080340000,"y":0.12},{"x":1569080400000,"y":0.14},{"x":1569080460000,"y":0.05},{"x":1569080520000,"y":0.09},{"x":1569080580000,"y":0.21},{"x":1569080640000,"y":0.06},{"x":1569080700000,"y":0.1},{"x":1569080760000,"y":0.05},{"x":1569080820000,"y":0.07},{"x":1569080880000,"y":0.21},{"x":1569080940000,"y":0.08},{"x":1569081000000,"y":0.11},{"x":1569081060000,"y":0.09},{"x":1569081120000,"y":0.08},{"x":1569081180000,"y":0.21},{"x":1569081240000,"y":0.09},{"x":1569081300000,"y":0.14},{"x":1569081360000,"y":0.09},{"x":1569081420000,"y":0.1},{"x":1569081480000,"y":0.22},{"x":1569081540000,"y":0.08},{"x":1569081600000,"y":0.15},{"x":1569081660000,"y":0.07},{"x":1569081720000,"y":0.07},{"x":1569081780000,"y":0.2},{"x":1569081840000,"y":0.06},{"x":1569081900000,"y":0.12},{"x":1569081960000,"y":0.06},{"x":1569082020000,"y":0.08},{"x":1569082080000,"y":0.21},{"x":1569082140000,"y":0.13},{"x":1569082200000,"y":0.14},{"x":1569082260000,"y":0.09},{"x":1569082320000,"y":0.1},{"x":1569082380000,"y":0.08},{"x":1569082440000,"y":0.2},{"x":1569082500000,"y":0.18},{"x":1569082560000,"y":0.09},{"x":1569082620000,"y":0.07},{"x":1569082680000,"y":0.06},{"x":1569082740000,"y":0.24},{"x":1569082800000,"y":0.1},{"x":1569082860000,"y":0.09},{"x":1569082920000,"y":0.08},{"x":1569082980000,"y":0.07},{"x":1569083040000,"y":0.2},{"x":1569083100000,"y":0.13},{"x":1569083160000,"y":0.06},{"x":1569083220000,"y":0.05},{"x":1569083280000,"y":0.06},{"x":1569083340000,"y":0.23},{"x":1569083400000,"y":0.11},{"x":1569083460000,"y":0.05},{"x":1569083520000,"y":0.07},{"x":1569083580000,"y":0.07},{"x":1569083640000,"y":0.24},{"x":1569083700000,"y":0.22},{"x":1569083760000,"y":0.06},{"x":1569083820000,"y":0.09},{"x":1569083880000,"y":0.05},{"x":1569083940000,"y":5.1},{"x":1569084000000,"y":0.36},{"x":1569084060000,"y":0.11},{"x":1569084120000,"y":0.14},{"x":1569084180000,"y":0.09},{"x":1569084240000,"y":0.28},{"x":1569084300000,"y":0.17},{"x":1569084360000,"y":0.1},{"x":1569084420000,"y":0.11},{"x":1569084480000,"y":0.1},{"x":1569084540000,"y":0.28},{"x":1569084600000,"y":0.12},{"x":1569084660000,"y":0.14},{"x":1569084720000,"y":0.15},{"x":1569084780000,"y":0.22},{"x":1569084840000,"y":0.13},{"x":1569084900000,"y":0.3},{"x":1569084960000,"y":0.12},{"x":1569085020000,"y":0.18},{"x":1569085080000,"y":0.15},{"x":1569085140000,"y":0.11},{"x":1569085200000,"y":0.39},{"x":1569085260000,"y":0.14},{"x":1569085320000,"y":0.16},{"x":1569085380000,"y":0.19},{"x":1569085440000,"y":0.17},{"x":1569085500000,"y":0.34},{"x":1569085560000,"y":0.15},{"x":1569085620000,"y":0.17},{"x":1569085680000,"y":0.12},{"x":1569085740000,"y":0.18},{"x":1569085800000,"y":0.33},{"x":1569085860000,"y":0.12},{"x":1569085920000,"y":0.15},{"x":1569085980000,"y":0.14},{"x":1569086040000,"y":0.15},{"x":1569086100000,"y":0.33},{"x":1569086160000,"y":0.17},{"x":1569086220000,"y":0.17},{"x":1569086280000,"y":0.16},{"x":1569086340000,"y":0.16},{"x":1569086400000,"y":0.32},{"x":1569086460000,"y":0.21},{"x":1569086520000,"y":0.16},{"x":1569086580000,"y":0.14},{"x":1569086640000,"y":0.14},{"x":1569086700000,"y":0.2},{"x":1569086760000,"y":0.29},{"x":1569086820000,"y":0.15},{"x":1569086880000,"y":0.14},{"x":1569086940000,"y":0.16},{"x":1569087000000,"y":0.18},{"x":1569087060000,"y":0.28},{"x":1569087120000,"y":0.14},{"x":1569087180000,"y":0.15},{"x":1569087240000,"y":0.13},{"x":1569087300000,"y":0.22},{"x":1569087360000,"y":0.28},{"x":1569087420000,"y":0.15},{"x":1569087480000,"y":0.15},{"x":1569087540000,"y":0.21},{"x":1569087600000,"y":0.21},{"x":1569087660000,"y":0.28},{"x":1569087720000,"y":0.16},{"x":1569087780000,"y":0.15},{"x":1569087840000,"y":0.17},{"x":1569087900000,"y":0.2},{"x":1569087960000,"y":0.29},{"x":1569088020000,"y":0.17},{"x":1569088080000,"y":0.14},{"x":1569088140000,"y":2.06},{"x":1569088200000,"y":0.23},{"x":1569088260000,"y":0.3},{"x":1569088320000,"y":0.15},{"x":1569088380000,"y":0.15},{"x":1569088440000,"y":0.13},{"x":1569088500000,"y":0.23},{"x":1569088560000,"y":0.26},{"x":1569088620000,"y":0.17},{"x":1569088680000,"y":0.15},{"x":1569088740000,"y":0.17},{"x":1569088800000,"y":0.26},{"x":1569088860000,"y":0.27},{"x":1569088920000,"y":0.18},{"x":1569088980000,"y":0.15},{"x":1569089040000,"y":0.16},{"x":1569089100000,"y":0.2},{"x":1569089160000,"y":0.19},{"x":1569089220000,"y":0.33},{"x":1569089280000,"y":0.14},{"x":1569089340000,"y":0.22},{"x":1569089400000,"y":0.21},{"x":1569089460000,"y":0.16},{"x":1569089520000,"y":0.31},{"x":1569089580000,"y":0.15},{"x":1569089640000,"y":0.15},{"x":1569089700000,"y":0.23},{"x":1569089760000,"y":0.15},{"x":1569089820000,"y":0.29},{"x":1569089880000,"y":0.16},{"x":1569089940000,"y":0.17},{"x":1569090000000,"y":0.21},{"x":1569090060000,"y":0.15},{"x":1569090120000,"y":0.31},{"x":1569090180000,"y":0.13},{"x":1569090240000,"y":0.16},{"x":1569090300000,"y":0.21},{"x":1569090360000,"y":0.16},{"x":1569090420000,"y":0.31},{"x":1569090480000,"y":0.15},{"x":1569090540000,"y":0.16},{"x":1569090600000,"y":0.23},{"x":1569090660000,"y":0.15},{"x":1569090720000,"y":0.28},{"x":1569090780000,"y":0.13},{"x":1569090840000,"y":0.15},{"x":1569090900000,"y":0.18},{"x":1569090960000,"y":0.16},{"x":1569091020000,"y":0.13},{"x":1569091080000,"y":0.28},{"x":1569091140000,"y":0.21},{"x":1569091200000,"y":0.22},{"x":1569091260000,"y":0.15},{"x":1569091320000,"y":0.17},{"x":1569091380000,"y":0.29},{"x":1569091440000,"y":0.14},{"x":1569091500000,"y":0.24},{"x":1569091560000,"y":0.16},{"x":1569091620000,"y":0.14},{"x":1569091680000,"y":0.29},{"x":1569091740000,"y":0.14},{"x":1569091800000,"y":0.2},{"x":1569091860000,"y":0.13},{"x":1569091920000,"y":0.18},{"x":1569091980000,"y":0.28},{"x":1569092040000,"y":0.14},{"x":1569092100000,"y":0.21},{"x":1569092160000,"y":0.16},{"x":1569092220000,"y":0.17},{"x":1569092280000,"y":0.29},{"x":1569092340000,"y":0.17},{"x":1569092400000,"y":0.19},{"x":1569092460000,"y":0.17},{"x":1569092520000,"y":0.15},{"x":1569092580000,"y":0.28},{"x":1569092640000,"y":0.14},{"x":1569092700000,"y":0.17},{"x":1569092760000,"y":0.15},{"x":1569092820000,"y":0.15},{"x":1569092880000,"y":0.15},{"x":1569092940000,"y":0.4},{"x":1569093000000,"y":0.19},{"x":1569093060000,"y":0.16},{"x":1569093120000,"y":0.42},{"x":1569093180000,"y":0.15},{"x":1569093240000,"y":0.29},{"x":1569093300000,"y":0.2},{"x":1569093360000,"y":0.16},{"x":1569093420000,"y":0.14},{"x":1569093480000,"y":0.13},{"x":1569093540000,"y":0.28},{"x":1569093600000,"y":0.18},{"x":1569093660000,"y":0.14},{"x":1569093720000,"y":0.15},{"x":1569093780000,"y":0.14},{"x":1569093840000,"y":0.27},{"x":1569093900000,"y":0.22},{"x":1569093960000,"y":0.15},{"x":1569094020000,"y":0.13},{"x":1569094080000,"y":0.13},{"x":1569094140000,"y":0.28},{"x":1569094200000,"y":0.22},{"x":1569094260000,"y":0.14},{"x":1569094320000,"y":0.15},{"x":1569094380000,"y":0.14},{"x":1569094440000,"y":0.27},{"x":1569094500000,"y":0.21},{"x":1569094560000,"y":0.15},{"x":1569094620000,"y":0.14},{"x":1569094680000,"y":0.17},{"x":1569094740000,"y":0.34},{"x":1569094800000,"y":0.19},{"x":1569094860000,"y":0.15},{"x":1569094920000,"y":0.15},{"x":1569094980000,"y":0.16},{"x":1569095040000,"y":0.14},{"x":1569095100000,"y":0.34},{"x":1569095160000,"y":0.12},{"x":1569095220000,"y":0.13},{"x":1569095280000,"y":0.09},{"x":1569095340000,"y":0.09},{"x":1569095400000,"y":4.25},{"x":1569095460000,"y":0.05},{"x":1569095520000,"y":0.1},{"x":1569095580000,"y":0.06},{"x":1569095640000,"y":0.07},{"x":1569095700000,"y":0.26},{"x":1569095760000,"y":0.09},{"x":1569095820000,"y":0.06},{"x":1569095880000,"y":0.07},{"x":1569095940000,"y":0.05},{"x":1569096000000,"y":0.25},{"x":1569096060000,"y":0.06},{"x":1569096120000,"y":0.08},{"x":1569096180000,"y":0.09},{"x":1569096240000,"y":0.07},{"x":1569096300000,"y":0.23},{"x":1569096360000,"y":0.07},{"x":1569096420000,"y":0.07},{"x":1569096480000,"y":0.06},{"x":1569096540000,"y":0.12},{"x":1569096600000,"y":0.22},{"x":1569096660000,"y":0.05},{"x":1569096720000,"y":0.4},{"x":1569096780000,"y":0.07},{"x":1569096840000,"y":0.06},{"x":1569096900000,"y":0.27},{"x":1569096960000,"y":0.09},{"x":1569097020000,"y":0.08},{"x":1569097080000,"y":0.07},{"x":1569097140000,"y":0.08},{"x":1569097200000,"y":0.28},{"x":1569097260000,"y":0.06},{"x":1569097320000,"y":0.07},{"x":1569097380000,"y":0.07},{"x":1569097440000,"y":0.06},{"x":1569097500000,"y":0.1},{"x":1569097560000,"y":0.23},{"x":1569097620000,"y":0.07},{"x":1569097680000,"y":0.09},{"x":1569097740000,"y":0.06},{"x":1569097800000,"y":0.17},{"x":1569097860000,"y":0.21},{"x":1569097920000,"y":0.07},{"x":1569097980000,"y":0.07},{"x":1569098040000,"y":0.06},{"x":1569098100000,"y":0.15},{"x":1569098160000,"y":0.2},{"x":1569098220000,"y":0.05},{"x":1569098280000,"y":0.07},{"x":1569098340000,"y":0.19},{"x":1569098400000,"y":0.14},{"x":1569098460000,"y":0.2},{"x":1569098520000,"y":0.06},{"x":1569098580000,"y":0.06},{"x":1569098640000,"y":0.07},{"x":1569098700000,"y":0.17},{"x":1569098760000,"y":0.22},{"x":1569098820000,"y":0.07},{"x":1569098880000,"y":0.07},{"x":1569098940000,"y":0.07},{"x":1569099000000,"y":0.12},{"x":1569099060000,"y":0.2},{"x":1569099120000,"y":0.11},{"x":1569099180000,"y":0.09},{"x":1569099240000,"y":0.05},{"x":1569099300000,"y":0.16},{"x":1569099360000,"y":0.06},{"x":1569099420000,"y":0.22},{"x":1569099480000,"y":0.08},{"x":1569099540000,"y":0.07},{"x":1569099600000,"y":0.15},{"x":1569099660000,"y":0.06},{"x":1569099720000,"y":0.2},{"x":1569099780000,"y":0.08},{"x":1569099840000,"y":0.07},{"x":1569099900000,"y":0.09},{"x":1569099960000,"y":0.1},{"x":1569100020000,"y":0.21},{"x":1569100080000,"y":0.06},{"x":1569100140000,"y":0.12},{"x":1569100200000,"y":0.13},{"x":1569100260000,"y":0.08},{"x":1569100320000,"y":0.23},{"x":1569100380000,"y":0.42},{"x":1569100440000,"y":0.07},{"x":1569100500000,"y":0.16},{"x":1569100560000,"y":0.06},{"x":1569100620000,"y":0.22},{"x":1569100680000,"y":0.07},{"x":1569100740000,"y":0.1},{"x":1569100800000,"y":0.12},{"x":1569100860000,"y":0.08},{"x":1569100920000,"y":0.2},{"x":1569100980000,"y":0.05},{"x":1569101040000,"y":0.06},{"x":1569101100000,"y":0.11},{"x":1569101160000,"y":0.05},{"x":1569101220000,"y":0.2},{"x":1569101280000,"y":0.07},{"x":1569101340000,"y":0.07},{"x":1569101400000,"y":0.13},{"x":1569101460000,"y":0.06},{"x":1569101520000,"y":0.23},{"x":1569101580000,"y":0.07},{"x":1569101640000,"y":0.07},{"x":1569101700000,"y":0.17},{"x":1569101760000,"y":0.07},{"x":1569101820000,"y":0.08},{"x":1569101880000,"y":0.22},{"x":1569101940000,"y":0.17},{"x":1569102000000,"y":0.12},{"x":1569102060000,"y":0.08},{"x":1569102120000,"y":0.1},{"x":1569102180000,"y":0.2},{"x":1569102240000,"y":0.05},{"x":1569102300000,"y":0.11},{"x":1569102360000,"y":0.07},{"x":1569102420000,"y":0.08},{"x":1569102480000,"y":0.26},{"x":1569102540000,"y":10.33},{"x":1569102600000,"y":0.16},{"x":1569102660000,"y":0.06},{"x":1569102720000,"y":1.64},{"x":1569102780000,"y":19.91},{"x":1569102840000,"y":0.09},{"x":1569102900000,"y":0.12},{"x":1569102960000,"y":0.06},{"x":1569103020000,"y":0.06},{"x":1569103080000,"y":0.2},{"x":1569103140000,"y":0.09},{"x":1569103200000,"y":0.83},{"x":1569103260000,"y":0.07},{"x":1569103320000,"y":20.43},{"x":1569103380000,"y":0.43},{"x":1569103440000,"y":0.12},{"x":1569103500000,"y":0.12},{"x":1569103560000,"y":0.1},{"x":1569103620000,"y":20.29},{"x":1569103680000,"y":0.41},{"x":1569103740000,"y":0.21},{"x":1569103800000,"y":0.12},{"x":1569103860000,"y":0.06},{"x":1569103920000,"y":0.07},{"x":1569103980000,"y":0.24},{"x":1569104040000,"y":0.2},{"x":1569104100000,"y":0.17},{"x":1569104160000,"y":0.08},{"x":1569104220000,"y":0.09},{"x":1569104280000,"y":0.08},{"x":1569104340000,"y":16.52},{"x":1569104400000,"y":25},{"x":1569104460000,"y":0.13},{"x":1569104520000,"y":0.23},{"x":1569104580000,"y":0.1},{"x":1569104640000,"y":0.22},{"x":1569104700000,"y":0.15},{"x":1569104760000,"y":0.06},{"x":1569104820000,"y":0.1},{"x":1569104880000,"y":0.07},{"x":1569104940000,"y":0.24},{"x":1569105000000,"y":0.17},{"x":1569105060000,"y":19.5},{"x":1569105120000,"y":11.15},{"x":1569105180000,"y":10.31},{"x":1569105240000,"y":0.44},{"x":1569105300000,"y":0.16},{"x":1569105360000,"y":0.09},{"x":1569105420000,"y":20.37},{"x":1569105480000,"y":0.26},{"x":1569105540000,"y":0.29},{"x":1569105600000,"y":0.1},{"x":1569105660000,"y":0.08},{"x":1569105720000,"y":0.11},{"x":1569105780000,"y":0.12},{"x":1569105840000,"y":3.33},{"x":1569105900000,"y":0.18},{"x":1569105960000,"y":0.07},{"x":1569106020000,"y":0.09},{"x":1569106080000,"y":0.13},{"x":1569106140000,"y":0.07},{"x":1569106200000,"y":0.26},{"x":1569106260000,"y":0.07},{"x":1569106320000,"y":0.09},{"x":1569106380000,"y":0.09},{"x":1569106440000,"y":0.09},{"x":1569106500000,"y":0.33},{"x":1569106560000,"y":0.05},{"x":1569106620000,"y":0.05},{"x":1569106680000,"y":0.07},{"x":1569106740000,"y":0.06},{"x":1569106800000,"y":0.34},{"x":1569106860000,"y":0.05},{"x":1569106920000,"y":0.09},{"x":1569106980000,"y":0.07},{"x":1569107040000,"y":0.06},{"x":1569107100000,"y":0.26},{"x":1569107160000,"y":0.05},{"x":1569107220000,"y":0.05},{"x":1569107280000,"y":0.05},{"x":1569107340000,"y":0.11},{"x":1569107400000,"y":0.26},{"x":1569107460000,"y":0.07},{"x":1569107520000,"y":0.09},{"x":1569107580000,"y":0.07},{"x":1569107640000,"y":0.07},{"x":1569107700000,"y":0.3},{"x":1569107760000,"y":0.07},{"x":1569107820000,"y":0.07},{"x":1569107880000,"y":0.07},{"x":1569107940000,"y":0.08},{"x":1569108000000,"y":0.27},{"x":1569108060000,"y":0.06},{"x":1569108120000,"y":0.07},{"x":1569108180000,"y":0.09},{"x":1569108240000,"y":0.1},{"x":1569108300000,"y":0.14},{"x":1569108360000,"y":0.2},{"x":1569108420000,"y":0.06},{"x":1569108480000,"y":0.07},{"x":1569108540000,"y":0.05},{"x":1569108600000,"y":0.18},{"x":1569108660000,"y":0.24},{"x":1569108720000,"y":0.05},{"x":1569108780000,"y":0.05},{"x":1569108840000,"y":0.07},{"x":1569108900000,"y":0.1},{"x":1569108960000,"y":0.2},{"x":1569109020000,"y":0.07},{"x":1569109080000,"y":0.08},{"x":1569109140000,"y":0.2},{"x":1569109200000,"y":0.11},{"x":1569109260000,"y":0.2},{"x":1569109320000,"y":0.05},{"x":1569109380000,"y":0.06},{"x":1569109440000,"y":0.07},{"x":1569109500000,"y":0.1},{"x":1569109560000,"y":0.21},{"x":1569109620000,"y":0.07},{"x":1569109680000,"y":0.1},{"x":1569109740000,"y":0.07},{"x":1569109800000,"y":0.11},{"x":1569109860000,"y":0.2},{"x":1569109920000,"y":0.1},{"x":1569109980000,"y":0.06},{"x":1569110040000,"y":0.09},{"x":1569110100000,"y":0.09},{"x":1569110160000,"y":0.21},{"x":1569110220000,"y":0.07},{"x":1569110280000,"y":0.06},{"x":1569110340000,"y":0.04},{"x":1569110400000,"y":0.17},{"x":1569110460000,"y":0.18},{"x":1569110520000,"y":0.06},{"x":1569110580000,"y":0.06},{"x":1569110640000,"y":0.07},{"x":1569110700000,"y":0.1},{"x":1569110760000,"y":0.07},{"x":1569110820000,"y":0.19},{"x":1569110880000,"y":0.06},{"x":1569110940000,"y":0.13},{"x":1569111000000,"y":0.13},{"x":1569111060000,"y":0.06},{"x":1569111120000,"y":0.2},{"x":1569111180000,"y":0.07},{"x":1569111240000,"y":0.07},{"x":1569111300000,"y":0.16},{"x":1569111360000,"y":0.07},{"x":1569111420000,"y":0.2},{"x":1569111480000,"y":0.05},{"x":1569111540000,"y":0.09},{"x":1569111600000,"y":0.12},{"x":1569111660000,"y":0.06},{"x":1569111720000,"y":0.2},{"x":1569111780000,"y":0.06},{"x":1569111840000,"y":0.07},{"x":1569111900000,"y":0.12},{"x":1569111960000,"y":0.07},{"x":1569112020000,"y":0.23},{"x":1569112080000,"y":0.08},{"x":1569112140000,"y":0.07},{"x":1569112200000,"y":0.1},{"x":1569112260000,"y":0.07},{"x":1569112320000,"y":0.21},{"x":1569112380000,"y":0.1},{"x":1569112440000,"y":0.07},{"x":1569112500000,"y":0.11},{"x":1569112560000,"y":0.08},{"x":1569112620000,"y":0.24},{"x":1569112680000,"y":0.05},{"x":1569112740000,"y":0.16},{"x":1569112800000,"y":0.12},{"x":1569112860000,"y":0.08},{"x":1569112920000,"y":0.07},{"x":1569112980000,"y":0.21},{"x":1569113040000,"y":0.06},{"x":1569113100000,"y":0.13},{"x":1569113160000,"y":0.08},{"x":1569113220000,"y":0.1},{"x":1569113280000,"y":0.22},{"x":1569113340000,"y":0.07},{"x":1569113400000,"y":0.15},{"x":1569113460000,"y":0.07},{"x":1569113520000,"y":0.07},{"x":1569113580000,"y":0.2},{"x":1569113640000,"y":0.07},{"x":1569113700000,"y":0.12},{"x":1569113760000,"y":0.05},{"x":1569113820000,"y":0.09},{"x":1569113880000,"y":0.2},{"x":1569113940000,"y":0.08},{"x":1569114000000,"y":0.14},{"x":1569114060000,"y":0.08},{"x":1569114120000,"y":0.07},{"x":1569114180000,"y":0.21},{"x":1569114240000,"y":0.07},{"x":1569114300000,"y":0.12},{"x":1569114360000,"y":0.08},{"x":1569114420000,"y":0.06},{"x":1569114480000,"y":0.2},{"x":1569114540000,"y":0.14},{"x":1569114600000,"y":0.19},{"x":1569114660000,"y":0.05},{"x":1569114720000,"y":0.07},{"x":1569114780000,"y":0.22},{"x":1569114840000,"y":0.06},{"x":1569114900000,"y":0.1},{"x":1569114960000,"y":0.07},{"x":1569115020000,"y":0.08},{"x":1569115080000,"y":0.22},{"x":1569115140000,"y":0.07},{"x":1569115200000,"y":0.12},{"x":1569115260000,"y":0.07},{"x":1569115320000,"y":0.07},{"x":1569115380000,"y":0.05},{"x":1569115440000,"y":0.21},{"x":1569115500000,"y":0.14},{"x":1569115560000,"y":0.07},{"x":1569115620000,"y":0.07},{"x":1569115680000,"y":0.07},{"x":1569115740000,"y":0.22},{"x":1569115800000,"y":0.15},{"x":1569115860000,"y":0.07},{"x":1569115920000,"y":0.07},{"x":1569115980000,"y":0.07},{"x":1569116040000,"y":0.2},{"x":1569116100000,"y":0.14},{"x":1569116160000,"y":0.07},{"x":1569116220000,"y":0.05},{"x":1569116280000,"y":0.08},{"x":1569116340000,"y":0.34},{"x":1569116400000,"y":0.15},{"x":1569116460000,"y":0.09},{"x":1569116520000,"y":0.06},{"x":1569116580000,"y":0.08},{"x":1569116640000,"y":0.22},{"x":1569116700000,"y":0.1},{"x":1569116760000,"y":0.09},{"x":1569116820000,"y":0.08},{"x":1569116880000,"y":0.07},{"x":1569116940000,"y":0.19},{"x":1569117000000,"y":0.12},{"x":1569117060000,"y":0.09},{"x":1569117120000,"y":0.11},{"x":1569117180000,"y":0.07},{"x":1569117240000,"y":0.63},{"x":1569117300000,"y":0.16},{"x":1569117360000,"y":0.12},{"x":1569117420000,"y":0.08},{"x":1569117480000,"y":0.1},{"x":1569117540000,"y":0.05},{"x":1569117600000,"y":0.34},{"x":1569117660000,"y":0.06},{"x":1569117720000,"y":0.08},{"x":1569117780000,"y":0.11},{"x":1569117840000,"y":0.12},{"x":1569117900000,"y":0.29},{"x":1569117960000,"y":0.1},{"x":1569118020000,"y":0.05},{"x":1569118080000,"y":0.05},{"x":1569118140000,"y":0.15},{"x":1569118200000,"y":0.27},{"x":1569118260000,"y":0.16},{"x":1569118320000,"y":0.16},{"x":1569118380000,"y":0.12},{"x":1569118440000,"y":0.14},{"x":1569118500000,"y":0.3},{"x":1569118560000,"y":0.11},{"x":1569118620000,"y":0.1},{"x":1569118680000,"y":0.13},{"x":1569118740000,"y":0.1},{"x":1569118800000,"y":0.28},{"x":1569118860000,"y":0.14},{"x":1569118920000,"y":0.16},{"x":1569118980000,"y":0.13},{"x":1569119040000,"y":0.15},{"x":1569119100000,"y":0.33},{"x":1569119160000,"y":0.13},{"x":1569119220000,"y":0.14},{"x":1569119280000,"y":0.15},{"x":1569119340000,"y":0.13},{"x":1569119400000,"y":0.39},{"x":1569119460000,"y":0.13},{"x":1569119520000,"y":0.15},{"x":1569119580000,"y":0.15},{"x":1569119640000,"y":0.15},{"x":1569119700000,"y":0.18},{"x":1569119760000,"y":0.29},{"x":1569119820000,"y":0.16},{"x":1569119880000,"y":0.16},{"x":1569119940000,"y":0.22},{"x":1569120000000,"y":0.22},{"x":1569120060000,"y":0.31},{"x":1569120120000,"y":0.15},{"x":1569120180000,"y":0.14},{"x":1569120240000,"y":0.15},{"x":1569120300000,"y":0.21},{"x":1569120360000,"y":0.27},{"x":1569120420000,"y":0.16},{"x":1569120480000,"y":0.16},{"x":1569120540000,"y":0.14},{"x":1569120600000,"y":0.19},{"x":1569120660000,"y":0.29},{"x":1569120720000,"y":0.19},{"x":1569120780000,"y":0.15},{"x":1569120840000,"y":0.24},{"x":1569120900000,"y":0.18},{"x":1569120960000,"y":0.27},{"x":1569121020000,"y":0.13},{"x":1569121080000,"y":0.15},{"x":1569121140000,"y":0.12},{"x":1569121200000,"y":0.21},{"x":1569121260000,"y":0.28},{"x":1569121320000,"y":0.52},{"x":1569121380000,"y":0.14},{"x":1569121440000,"y":0.13},{"x":1569121500000,"y":0.19},{"x":1569121560000,"y":0.25},{"x":1569121620000,"y":0.17},{"x":1569121680000,"y":0.14},{"x":1569121740000,"y":0.2},{"x":1569121800000,"y":0.24},{"x":1569121860000,"y":0.16},{"x":1569121920000,"y":0.3},{"x":1569121980000,"y":0.18},{"x":1569122040000,"y":0.14},{"x":1569122100000,"y":0.19},{"x":1569122160000,"y":0.17},{"x":1569122220000,"y":0.5},{"x":1569122280000,"y":0.16},{"x":1569122340000,"y":0.16},{"x":1569122400000,"y":0.18},{"x":1569122460000,"y":0.15},{"x":1569122520000,"y":0.3},{"x":1569122580000,"y":0.14},{"x":1569122640000,"y":0.14},{"x":1569122700000,"y":0.23},{"x":1569122760000,"y":0.15},{"x":1569122820000,"y":0.27},{"x":1569122880000,"y":0.14},{"x":1569122940000,"y":0.15},{"x":1569123000000,"y":0.25},{"x":1569123060000,"y":0.17},{"x":1569123120000,"y":0.28},{"x":1569123180000,"y":0.15},{"x":1569123240000,"y":0.16},{"x":1569123300000,"y":0.22},{"x":1569123360000,"y":0.15},{"x":1569123420000,"y":0.32},{"x":1569123480000,"y":0.15},{"x":1569123540000,"y":0.22},{"x":1569123600000,"y":0.22},{"x":1569123660000,"y":0.14},{"x":1569123720000,"y":0.17},{"x":1569123780000,"y":0.3},{"x":1569123840000,"y":0.13},{"x":1569123900000,"y":0.2},{"x":1569123960000,"y":0.14},{"x":1569124020000,"y":0.15},{"x":1569124080000,"y":0.31},{"x":1569124140000,"y":0.14},{"x":1569124200000,"y":0.18},{"x":1569124260000,"y":0.15},{"x":1569124320000,"y":0.17},{"x":1569124380000,"y":0.28},{"x":1569124440000,"y":0.14},{"x":1569124500000,"y":0.18},{"x":1569124560000,"y":0.15},{"x":1569124620000,"y":0.19},{"x":1569124680000,"y":0.29},{"x":1569124740000,"y":0.17},{"x":1569124800000,"y":0.28},{"x":1569124860000,"y":0.14},{"x":1569124920000,"y":0.14},{"x":1569124980000,"y":0.26},{"x":1569125040000,"y":0.17},{"x":1569125100000,"y":0.21},{"x":1569125160000,"y":0.16},{"x":1569125220000,"y":0.14},{"x":1569125280000,"y":0.26},{"x":1569125340000,"y":0.22},{"x":1569125400000,"y":0.18},{"x":1569125460000,"y":0.15},{"x":1569125520000,"y":0.15},{"x":1569125580000,"y":0.28},{"x":1569125640000,"y":0.13},{"x":1569125700000,"y":0.24},{"x":1569125760000,"y":0.16},{"x":1569125820000,"y":0.63},{"x":1569125880000,"y":0.28},{"x":1569125940000,"y":0.14},{"x":1569126000000,"y":0.19},{"x":1569126060000,"y":0.17},{"x":1569126120000,"y":0.16},{"x":1569126180000,"y":0.17},{"x":1569126240000,"y":0.29},{"x":1569126300000,"y":0.21},{"x":1569126360000,"y":0.14},{"x":1569126420000,"y":0.14},{"x":1569126480000,"y":0.17},{"x":1569126540000,"y":0.27},{"x":1569126600000,"y":0.24},{"x":1569126660000,"y":0.15},{"x":1569126720000,"y":0.19},{"x":1569126780000,"y":0.19},{"x":1569126840000,"y":0.31},{"x":1569126900000,"y":0.18},{"x":1569126960000,"y":0.15},{"x":1569127020000,"y":0.15},{"x":1569127080000,"y":0.13},{"x":1569127140000,"y":0.38},{"x":1569127200000,"y":0.18},{"x":1569127260000,"y":0.17},{"x":1569127320000,"y":0.14},{"x":1569127380000,"y":0.12},{"x":1569127440000,"y":0.27},{"x":1569127500000,"y":0.21},{"x":1569127560000,"y":0.15},{"x":1569127620000,"y":0.17},{"x":1569127680000,"y":0.16},{"x":1569127740000,"y":4.86},{"x":1569127800000,"y":0.27},{"x":1569127860000,"y":0.18},{"x":1569127920000,"y":0.18},{"x":1569127980000,"y":0.16},{"x":1569128040000,"y":0.28},{"x":1569128100000,"y":0.17},{"x":1569128160000,"y":0.15},{"x":1569128220000,"y":0.13},{"x":1569128280000,"y":0.13},{"x":1569128340000,"y":0.16},{"x":1569128400000,"y":1.06},{"x":1569128460000,"y":0.18},{"x":1569128520000,"y":0.12},{"x":1569128580000,"y":0.09},{"x":1569128640000,"y":0.1},{"x":1569128700000,"y":0.31},{"x":1569128760000,"y":0.06},{"x":1569128820000,"y":0.06},{"x":1569128880000,"y":0.08},{"x":1569128940000,"y":0.24},{"x":1569129000000,"y":0.24},{"x":1569129060000,"y":0.06},{"x":1569129120000,"y":0.06},{"x":1569129180000,"y":0.07},{"x":1569129240000,"y":0.06},{"x":1569129300000,"y":0.31},{"x":1569129360000,"y":0.06},{"x":1569129420000,"y":0.08},{"x":1569129480000,"y":0.09},{"x":1569129540000,"y":0.07},{"x":1569129600000,"y":0.28},{"x":1569129660000,"y":0.06},{"x":1569129720000,"y":0.08},{"x":1569129780000,"y":0.05},{"x":1569129840000,"y":0.05},{"x":1569129900000,"y":0.26},{"x":1569129960000,"y":0.18},{"x":1569130020000,"y":0.08},{"x":1569130080000,"y":0.05},{"x":1569130140000,"y":0.09},{"x":1569130200000,"y":0.25},{"x":1569130260000,"y":0.05},{"x":1569130320000,"y":0.08},{"x":1569130380000,"y":0.05},{"x":1569130440000,"y":0.06},{"x":1569130500000,"y":0.3},{"x":1569130560000,"y":0.05},{"x":1569130620000,"y":0.07},{"x":1569130680000,"y":0.05},{"x":1569130740000,"y":0.09},{"x":1569130800000,"y":0.1},{"x":1569130860000,"y":0.22},{"x":1569130920000,"y":0.07},{"x":1569130980000,"y":0.1},{"x":1569131040000,"y":0.05},{"x":1569131100000,"y":0.12},{"x":1569131160000,"y":0.2},{"x":1569131220000,"y":0.09},{"x":1569131280000,"y":0.09},{"x":1569131340000,"y":0.06},{"x":1569131400000,"y":0.12},{"x":1569131460000,"y":0.21},{"x":1569131520000,"y":0.06},{"x":1569131580000,"y":0.06},{"x":1569131640000,"y":0.05},{"x":1569131700000,"y":0.11},{"x":1569131760000,"y":0.19},{"x":1569131820000,"y":0.09},{"x":1569131880000,"y":0.06},{"x":1569131940000,"y":0.05},{"x":1569132000000,"y":0.14},{"x":1569132060000,"y":0.18},{"x":1569132120000,"y":0.08},{"x":1569132180000,"y":0.06},{"x":1569132240000,"y":0.06},{"x":1569132300000,"y":0.11},{"x":1569132360000,"y":0.21},{"x":1569132420000,"y":0.06},{"x":1569132480000,"y":0.07},{"x":1569132540000,"y":0.11},{"x":1569132600000,"y":0.1},{"x":1569132660000,"y":0.21},{"x":1569132720000,"y":0.05},{"x":1569132780000,"y":0.05},{"x":1569132840000,"y":0.08},{"x":1569132900000,"y":0.17},{"x":1569132960000,"y":0.06},{"x":1569133020000,"y":0.2},{"x":1569133080000,"y":0.08},{"x":1569133140000,"y":0.08},{"x":1569133200000,"y":0.09},{"x":1569133260000,"y":0.05},{"x":1569133320000,"y":0.23},{"x":1569133380000,"y":0.15},{"x":1569133440000,"y":0.09},{"x":1569133500000,"y":0.17},{"x":1569133560000,"y":0.05},{"x":1569133620000,"y":0.19},{"x":1569133680000,"y":0.07},{"x":1569133740000,"y":0.07},{"x":1569133800000,"y":0.14},{"x":1569133860000,"y":0.07},{"x":1569133920000,"y":0.2},{"x":1569133980000,"y":0.03},{"x":1569134040000,"y":0.06},{"x":1569134100000,"y":0.1},{"x":1569134160000,"y":0.08},{"x":1569134220000,"y":0.21},{"x":1569134280000,"y":0.07},{"x":1569134340000,"y":0.18},{"x":1569134400000,"y":0.14},{"x":1569134460000,"y":0.06},{"x":1569134520000,"y":0.21},{"x":1569134580000,"y":0.05},{"x":1569134640000,"y":0.05},{"x":1569134700000,"y":0.1},{"x":1569134760000,"y":0.06},{"x":1569134820000,"y":0.23},{"x":1569134880000,"y":0.42},{"x":1569134940000,"y":0.35},{"x":1569135000000,"y":0.12},{"x":1569135060000,"y":0.07},{"x":1569135120000,"y":0.23},{"x":1569135180000,"y":0.04},{"x":1569135240000,"y":0.05},{"x":1569135300000,"y":0.13},{"x":1569135360000,"y":0.05},{"x":1569135420000,"y":0.09},{"x":1569135480000,"y":0.19},{"x":1569135540000,"y":0.07},{"x":1569135600000,"y":0.21},{"x":1569135660000,"y":0.07},{"x":1569135720000,"y":0.07},{"x":1569135780000,"y":0.31},{"x":1569135840000,"y":0.04},{"x":1569135900000,"y":0.1},{"x":1569135960000,"y":0.07},{"x":1569136020000,"y":0.14},{"x":1569136080000,"y":0.25},{"x":1569136140000,"y":0.21},{"x":1569136200000,"y":0.1},{"x":1569136260000,"y":0.09},{"x":1569136320000,"y":0.09},{"x":1569136380000,"y":0.22},{"x":1569136440000,"y":0.07},{"x":1569136500000,"y":0.69},{"x":1569136560000,"y":0.07},{"x":1569136620000,"y":0.07},{"x":1569136680000,"y":0.22},{"x":1569136740000,"y":0.1},{"x":1569136800000,"y":0.15},{"x":1569136860000,"y":0.13},{"x":1569136920000,"y":0.08},{"x":1569136980000,"y":0.19},{"x":1569137040000,"y":0.09},{"x":1569137100000,"y":0.14},{"x":1569137160000,"y":0.09},{"x":1569137220000,"y":0.05},{"x":1569137280000,"y":0.21},{"x":1569137340000,"y":0.06},{"x":1569137400000,"y":0.13},{"x":1569137460000,"y":0.08},{"x":1569137520000,"y":0.07},{"x":1569137580000,"y":0.32},{"x":1569137640000,"y":0.7},{"x":1569137700000,"y":0.79},{"x":1569137760000,"y":0.08},{"x":1569137820000,"y":0.06},{"x":1569137880000,"y":0.07},{"x":1569137940000,"y":0.31},{"x":1569138000000,"y":0.14},{"x":1569138060000,"y":0.09},{"x":1569138120000,"y":0.08},{"x":1569138180000,"y":0.06},{"x":1569138240000,"y":0.26},{"x":1569138300000,"y":0.11},{"x":1569138360000,"y":0.1},{"x":1569138420000,"y":0.09},{"x":1569138480000,"y":0.07},{"x":1569138540000,"y":0.21},{"x":1569138600000,"y":0.1},{"x":1569138660000,"y":0.06},{"x":1569138720000,"y":0.09},{"x":1569138780000,"y":0.07},{"x":1569138840000,"y":0.21},{"x":1569138900000,"y":0.09},{"x":1569138960000,"y":0.06},{"x":1569139020000,"y":0.05},{"x":1569139080000,"y":0.07},{"x":1569139140000,"y":0.21},{"x":1569139200000,"y":0.13},{"x":1569139260000,"y":0.07},{"x":1569139320000,"y":0.09},{"x":1569139380000,"y":0.07},{"x":1569139440000,"y":0.05},{"x":1569139500000,"y":0.24},{"x":1569139560000,"y":0.08},{"x":1569139620000,"y":0.08},{"x":1569139680000,"y":0.07},{"x":1569139740000,"y":0.15},{"x":1569139800000,"y":0.26},{"x":1569139860000,"y":0.07},{"x":1569139920000,"y":0.06},{"x":1569139980000,"y":0.07},{"x":1569140040000,"y":0.07},{"x":1569140100000,"y":0.25},{"x":1569140160000,"y":0.06},{"x":1569140220000,"y":0.06},{"x":1569140280000,"y":0.07},{"x":1569140340000,"y":0.09},{"x":1569140400000,"y":0.24},{"x":1569140460000,"y":0.07},{"x":1569140520000,"y":0.06},{"x":1569140580000,"y":0.53},{"x":1569140640000,"y":0.61},{"x":1569140700000,"y":0.79},{"x":1569140760000,"y":0.37},{"x":1569140820000,"y":0.08},{"x":1569140880000,"y":0.05},{"x":1569140940000,"y":0.06},{"x":1569141000000,"y":0.27},{"x":1569141060000,"y":0.08},{"x":1569141120000,"y":0.07},{"x":1569141180000,"y":0.08},{"x":1569141240000,"y":0.06},{"x":1569141300000,"y":0.28},{"x":1569141360000,"y":0.08},{"x":1569141420000,"y":0.06},{"x":1569141480000,"y":0.06},{"x":1569141540000,"y":0.15},{"x":1569141600000,"y":0.27},{"x":1569141660000,"y":0.07},{"x":1569141720000,"y":0.07},{"x":1569141780000,"y":0.06},{"x":1569141840000,"y":0.07},{"x":1569141900000,"y":0.08},{"x":1569141960000,"y":0.22},{"x":1569142020000,"y":0.1},{"x":1569142080000,"y":0.08},{"x":1569142140000,"y":0.07},{"x":1569142200000,"y":0.1},{"x":1569142260000,"y":0.23},{"x":1569142320000,"y":0.09},{"x":1569142380000,"y":0.08},{"x":1569142440000,"y":0.06},{"x":1569142500000,"y":0.13},{"x":1569142560000,"y":0.22},{"x":1569142620000,"y":0.06},{"x":1569142680000,"y":0.17},{"x":1569142740000,"y":0.08},{"x":1569142800000,"y":0.12},{"x":1569142860000,"y":0.22},{"x":1569142920000,"y":0.06},{"x":1569142980000,"y":0.05},{"x":1569143040000,"y":0.06},{"x":1569143100000,"y":0.12},{"x":1569143160000,"y":0.2},{"x":1569143220000,"y":0.06},{"x":1569143280000,"y":0.07},{"x":1569143340000,"y":0.15},{"x":1569143400000,"y":0.13},{"x":1569143460000,"y":0.21},{"x":1569143520000,"y":0.05},{"x":1569143580000,"y":0.09},{"x":1569143640000,"y":0.05},{"x":1569143700000,"y":0.14},{"x":1569143760000,"y":0.2},{"x":1569143820000,"y":0.07},{"x":1569143880000,"y":0.07},{"x":1569143940000,"y":0.06},{"x":1569144000000,"y":0.11},{"x":1569144060000,"y":0.21},{"x":1569144120000,"y":0.05},{"x":1569144180000,"y":0.36},{"x":1569144240000,"y":0.06},{"x":1569144300000,"y":0.16},{"x":1569144360000,"y":0.07},{"x":1569144420000,"y":0.21},{"x":1569144480000,"y":0.06},{"x":1569144540000,"y":0.08},{"x":1569144600000,"y":0.16},{"x":1569144660000,"y":0.06},{"x":1569144720000,"y":0.21},{"x":1569144780000,"y":0.07},{"x":1569144840000,"y":0.06},{"x":1569144900000,"y":0.14},{"x":1569144960000,"y":0.07},{"x":1569145020000,"y":0.17},{"x":1569145080000,"y":0.05},{"x":1569145140000,"y":0.12},{"x":1569145200000,"y":0.1},{"x":1569145260000,"y":0.07},{"x":1569145320000,"y":0.2},{"x":1569145380000,"y":0.06},{"x":1569145440000,"y":0.07},{"x":1569145500000,"y":0.11},{"x":1569145560000,"y":0.09},{"x":1569145620000,"y":0.22},{"x":1569145680000,"y":0.08},{"x":1569145740000,"y":0.05},{"x":1569145800000,"y":0.18},{"x":1569145860000,"y":0.06},{"x":1569145920000,"y":0.22},{"x":1569145980000,"y":0.1},{"x":1569146040000,"y":0.05},{"x":1569146100000,"y":0.1},{"x":1569146160000,"y":0.06},{"x":1569146220000,"y":0.2},{"x":1569146280000,"y":0.07},{"x":1569146340000,"y":0.34},{"x":1569146400000,"y":0.2},{"x":1569146460000,"y":0.1},{"x":1569146520000,"y":0.06},{"x":1569146580000,"y":0.21},{"x":1569146640000,"y":0.11},{"x":1569146700000,"y":0.15},{"x":1569146760000,"y":0.07},{"x":1569146820000,"y":0.07},{"x":1569146880000,"y":0.2},{"x":1569146940000,"y":0.11},{"x":1569147000000,"y":0.12},{"x":1569147060000,"y":0.09},{"x":1569147120000,"y":0.08},{"x":1569147180000,"y":0.25},{"x":1569147240000,"y":0.06},{"x":1569147300000,"y":0.11},{"x":1569147360000,"y":0.06},{"x":1569147420000,"y":0.05},{"x":1569147480000,"y":0.2},{"x":1569147540000,"y":0.06},{"x":1569147600000,"y":0.15},{"x":1569147660000,"y":0.06},{"x":1569147720000,"y":0.66},{"x":1569147780000,"y":0.2},{"x":1569147840000,"y":0.06},{"x":1569147900000,"y":0.16},{"x":1569147960000,"y":0.06},{"x":1569148020000,"y":0.06},{"x":1569148080000,"y":0.19},{"x":1569148140000,"y":0.07},{"x":1569148200000,"y":0.16},{"x":1569148260000,"y":0.07},{"x":1569148320000,"y":0.07},{"x":1569148380000,"y":0.23},{"x":1569148440000,"y":0.08},{"x":1569148500000,"y":0.12},{"x":1569148560000,"y":0.07},{"x":1569148620000,"y":0.07},{"x":1569148680000,"y":0.06},{"x":1569148740000,"y":0.27},{"x":1569148800000,"y":0.09},{"x":1569148860000,"y":0.06},{"x":1569148920000,"y":0.09},{"x":1569148980000,"y":0.08},{"x":1569149040000,"y":0.2},{"x":1569149100000,"y":0.14},{"x":1569149160000,"y":0.07},{"x":1569149220000,"y":0.09},{"x":1569149280000,"y":0.07},{"x":1569149340000,"y":0.22},{"x":1569149400000,"y":0.1},{"x":1569149460000,"y":0.06},{"x":1569149520000,"y":0.1},{"x":1569149580000,"y":0.07},{"x":1569149640000,"y":3.22},{"x":1569149700000,"y":0.18},{"x":1569149760000,"y":0.07},{"x":1569149820000,"y":0.08},{"x":1569149880000,"y":0.05},{"x":1569149940000,"y":0.18},{"x":1569150000000,"y":0.29},{"x":1569150060000,"y":0.09},{"x":1569150120000,"y":0.12},{"x":1569150180000,"y":0.08},{"x":1569150240000,"y":0.2},{"x":1569150300000,"y":0.14},{"x":1569150360000,"y":0.11},{"x":1569150420000,"y":0.14},{"x":1569150480000,"y":0.09},{"x":1569150540000,"y":0.3},{"x":1569150600000,"y":0.15},{"x":1569150660000,"y":0.11},{"x":1569150720000,"y":0.1},{"x":1569150780000,"y":0.06},{"x":1569150840000,"y":0.07},{"x":1569150900000,"y":0.3},{"x":1569150960000,"y":0.12},{"x":1569151020000,"y":0.08},{"x":1569151080000,"y":0.11},{"x":1569151140000,"y":0.09},{"x":1569151200000,"y":0.3},{"x":1569151260000,"y":0.15},{"x":1569151320000,"y":0.2},{"x":1569151380000,"y":0.07},{"x":1569151440000,"y":0.08},{"x":1569151500000,"y":1.36},{"x":1569151560000,"y":0.11},{"x":1569151620000,"y":0.14},{"x":1569151680000,"y":0.16},{"x":1569151740000,"y":0.09},{"x":1569151800000,"y":0.31},{"x":1569151860000,"y":0.13},{"x":1569151920000,"y":0.12},{"x":1569151980000,"y":0.14},{"x":1569152040000,"y":0.16},{"x":1569152100000,"y":0.26},{"x":1569152160000,"y":0.09},{"x":1569152220000,"y":0.09},{"x":1569152280000,"y":0.15},{"x":1569152340000,"y":0.18},{"x":1569152400000,"y":0.29},{"x":1569152460000,"y":0.12},{"x":1569152520000,"y":0.13},{"x":1569152580000,"y":0.12},{"x":1569152640000,"y":0.14},{"x":1569152700000,"y":0.33},{"x":1569152760000,"y":0.15},{"x":1569152820000,"y":0.18},{"x":1569152880000,"y":0.16},{"x":1569152940000,"y":0.15},{"x":1569153000000,"y":1.23},{"x":1569153060000,"y":0.15},{"x":1569153120000,"y":0.19},{"x":1569153180000,"y":0.14},{"x":1569153240000,"y":0.15},{"x":1569153300000,"y":0.18},{"x":1569153360000,"y":0.31},{"x":1569153420000,"y":0.16},{"x":1569153480000,"y":0.15},{"x":1569153540000,"y":0.17},{"x":1569153600000,"y":0.27},{"x":1569153660000,"y":1.14},{"x":1569153720000,"y":0.17},{"x":1569153780000,"y":0.15},{"x":1569153840000,"y":0.15},{"x":1569153900000,"y":0.21},{"x":1569153960000,"y":0.3},{"x":1569154020000,"y":0.15},{"x":1569154080000,"y":0.14},{"x":1569154140000,"y":0.22},{"x":1569154200000,"y":0.18},{"x":1569154260000,"y":0.29},{"x":1569154320000,"y":0.17},{"x":1569154380000,"y":0.14},{"x":1569154440000,"y":0.15},{"x":1569154500000,"y":0.26},{"x":1569154560000,"y":0.3},{"x":1569154620000,"y":0.15},{"x":1569154680000,"y":0.13},{"x":1569154740000,"y":0.15},{"x":1569154800000,"y":0.19},{"x":1569154860000,"y":0.3},{"x":1569154920000,"y":0.15},{"x":1569154980000,"y":0.17},{"x":1569155040000,"y":0.19},{"x":1569155100000,"y":0.2},{"x":1569155160000,"y":0.25},{"x":1569155220000,"y":0.19},{"x":1569155280000,"y":0.15},{"x":1569155340000,"y":0.16},{"x":1569155400000,"y":0.2},{"x":1569155460000,"y":0.15},{"x":1569155520000,"y":0.3},{"x":1569155580000,"y":0.16},{"x":1569155640000,"y":0.15},{"x":1569155700000,"y":0.24},{"x":1569155760000,"y":0.16},{"x":1569155820000,"y":0.29},{"x":1569155880000,"y":0.18},{"x":1569155940000,"y":0.23},{"x":1569156000000,"y":0.21},{"x":1569156060000,"y":0.17},{"x":1569156120000,"y":0.27},{"x":1569156180000,"y":0.14},{"x":1569156240000,"y":0.18},{"x":1569156300000,"y":0.24},{"x":1569156360000,"y":0.15},{"x":1569156420000,"y":0.32},{"x":1569156480000,"y":0.16},{"x":1569156540000,"y":0.15},{"x":1569156600000,"y":0.21},{"x":1569156660000,"y":0.15},{"x":1569156720000,"y":0.31},{"x":1569156780000,"y":0.15},{"x":1569156840000,"y":0.19},{"x":1569156900000,"y":0.22},{"x":1569156960000,"y":0.17},{"x":1569157020000,"y":0.3},{"x":1569157080000,"y":0.17},{"x":1569157140000,"y":0.14},{"x":1569157200000,"y":0.25},{"x":1569157260000,"y":0.18},{"x":1569157320000,"y":0.15},{"x":1569157380000,"y":0.29},{"x":1569157440000,"y":0.18},{"x":1569157500000,"y":0.28},{"x":1569157560000,"y":0.14},{"x":1569157620000,"y":0.15},{"x":1569157680000,"y":0.31},{"x":1569157740000,"y":0.22},{"x":1569157800000,"y":0.21},{"x":1569157860000,"y":0.16},{"x":1569157920000,"y":0.17},{"x":1569157980000,"y":0.3},{"x":1569158040000,"y":0.21},{"x":1569158100000,"y":0.26},{"x":1569158160000,"y":0.17},{"x":1569158220000,"y":0.14},{"x":1569158280000,"y":0.3},{"x":1569158340000,"y":0.17},{"x":1569158400000,"y":0.23},{"x":1569158460000,"y":0.16},{"x":1569158520000,"y":0.15},{"x":1569158580000,"y":0.3},{"x":1569158640000,"y":0.17},{"x":1569158700000,"y":0.26},{"x":1569158760000,"y":0.15},{"x":1569158820000,"y":0.17},{"x":1569158880000,"y":0.28},{"x":1569158940000,"y":0.15},{"x":1569159000000,"y":0.25},{"x":1569159060000,"y":0.12},{"x":1569159120000,"y":0.14},{"x":1569159180000,"y":0.29},{"x":1569159240000,"y":0.14},{"x":1569159300000,"y":0.19},{"x":1569159360000,"y":0.15},{"x":1569159420000,"y":0.14},{"x":1569159480000,"y":0.28},{"x":1569159540000,"y":0.18},{"x":1569159600000,"y":0.23},{"x":1569159660000,"y":0.16},{"x":1569159720000,"y":0.15},{"x":1569159780000,"y":0.13},{"x":1569159840000,"y":0.28},{"x":1569159900000,"y":0.21},{"x":1569159960000,"y":0.15},{"x":1569160020000,"y":0.17},{"x":1569160080000,"y":0.16},{"x":1569160140000,"y":0.3},{"x":1569160200000,"y":0.24},{"x":1569160260000,"y":0.16},{"x":1569160320000,"y":0.17},{"x":1569160380000,"y":0.14},{"x":1569160440000,"y":0.33},{"x":1569160500000,"y":0.23},{"x":1569160560000,"y":0.17},{"x":1569160620000,"y":0.18},{"x":1569160680000,"y":0.2},{"x":1569160740000,"y":0.3},{"x":1569160800000,"y":0.23},{"x":1569160860000,"y":0.13},{"x":1569160920000,"y":0.15},{"x":1569160980000,"y":0.15},{"x":1569161040000,"y":0.28},{"x":1569161100000,"y":0.2},{"x":1569161160000,"y":0.15},{"x":1569161220000,"y":0.16},{"x":1569161280000,"y":0.14},{"x":1569161340000,"y":0.37},{"x":1569161400000,"y":0.24},{"x":1569161460000,"y":0.17},{"x":1569161520000,"y":0.16},{"x":1569161580000,"y":0.14},{"x":1569161640000,"y":0.29},{"x":1569161700000,"y":0.2},{"x":1569161760000,"y":0.15},{"x":1569161820000,"y":0.15},{"x":1569161880000,"y":0.14},{"x":1569161940000,"y":0.1},{"x":1569162000000,"y":0.36},{"x":1569162060000,"y":0.1},{"x":1569162120000,"y":0.09},{"x":1569162180000,"y":0.07},{"x":1569162240000,"y":0.09},{"x":1569162300000,"y":0.26},{"x":1569162360000,"y":0.07},{"x":1569162420000,"y":0.06},{"x":1569162480000,"y":0.08},{"x":1569162540000,"y":0.05},{"x":1569162600000,"y":0.27},{"x":1569162660000,"y":0.06},{"x":1569162720000,"y":0.09},{"x":1569162780000,"y":0.07},{"x":1569162840000,"y":0.07},{"x":1569162900000,"y":0.26},{"x":1569162960000,"y":0.09},{"x":1569163020000,"y":0.06},{"x":1569163080000,"y":0.06},{"x":1569163140000,"y":0.12},{"x":1569163200000,"y":0.25},{"x":1569163260000,"y":0.07},{"x":1569163320000,"y":0.07},{"x":1569163380000,"y":0.05},{"x":1569163440000,"y":0.06},{"x":1569163500000,"y":0.27},{"x":1569163560000,"y":0.05},{"x":1569163620000,"y":0.07},{"x":1569163680000,"y":0.13},{"x":1569163740000,"y":0.07},{"x":1569163800000,"y":0.12},{"x":1569163860000,"y":0.22},{"x":1569163920000,"y":0.11},{"x":1569163980000,"y":0.07},{"x":1569164040000,"y":0.07},{"x":1569164100000,"y":0.14},{"x":1569164160000,"y":0.23},{"x":1569164220000,"y":0.05},{"x":1569164280000,"y":0.11},{"x":1569164340000,"y":0.07},{"x":1569164400000,"y":0.17},{"x":1569164460000,"y":0.22},{"x":1569164520000,"y":0.08},{"x":1569164580000,"y":0.42},{"x":1569164640000,"y":0.06},{"x":1569164700000,"y":0.12},{"x":1569164760000,"y":0.22},{"x":1569164820000,"y":0.05},{"x":1569164880000,"y":0.08},{"x":1569164940000,"y":0.17},{"x":1569165000000,"y":0.15},{"x":1569165060000,"y":0.22},{"x":1569165120000,"y":0.07},{"x":1569165180000,"y":0.07},{"x":1569165240000,"y":0.1},{"x":1569165300000,"y":0.2},{"x":1569165360000,"y":0.24},{"x":1569165420000,"y":0.06},{"x":1569165480000,"y":0.1},{"x":1569165540000,"y":0.08},{"x":1569165600000,"y":0.12},{"x":1569165660000,"y":0.2},{"x":1569165720000,"y":0.07},{"x":1569165780000,"y":0.08},{"x":1569165840000,"y":0.06},{"x":1569165900000,"y":0.15},{"x":1569165960000,"y":0.22},{"x":1569166020000,"y":0.09},{"x":1569166080000,"y":0.08},{"x":1569166140000,"y":0.06},{"x":1569166200000,"y":0.12},{"x":1569166260000,"y":0.07},{"x":1569166320000,"y":0.21},{"x":1569166380000,"y":0.07},{"x":1569166440000,"y":0.07},{"x":1569166500000,"y":0.11},{"x":1569166560000,"y":0.08},{"x":1569166620000,"y":0.22},{"x":1569166680000,"y":0.07},{"x":1569166740000,"y":0.13},{"x":1569166800000,"y":0.1},{"x":1569166860000,"y":0.05},{"x":1569166920000,"y":0.2},{"x":1569166980000,"y":0.06},{"x":1569167040000,"y":0.08},{"x":1569167100000,"y":0.1},{"x":1569167160000,"y":0.08},{"x":1569167220000,"y":0.22},{"x":1569167280000,"y":0.06},{"x":1569167340000,"y":0.04},{"x":1569167400000,"y":0.14},{"x":1569167460000,"y":0.05},{"x":1569167520000,"y":0.21},{"x":1569167580000,"y":0.07},{"x":1569167640000,"y":0.07},{"x":1569167700000,"y":0.12},{"x":1569167760000,"y":0.08},{"x":1569167820000,"y":0.18},{"x":1569167880000,"y":0.05},{"x":1569167940000,"y":0.05},{"x":1569168000000,"y":0.19},{"x":1569168060000,"y":0.05},{"x":1569168120000,"y":0.2},{"x":1569168180000,"y":0.05},{"x":1569168240000,"y":0.78},{"x":1569168300000,"y":0.1},{"x":1569168360000,"y":0.07},{"x":1569168420000,"y":0.18},{"x":1569168480000,"y":0.05},{"x":1569168540000,"y":0.12},{"x":1569168600000,"y":0.13},{"x":1569168660000,"y":0.07},{"x":1569168720000,"y":0.07},{"x":1569168780000,"y":0.25},{"x":1569168840000,"y":0.07},{"x":1569168900000,"y":0.19},{"x":1569168960000,"y":0.07},{"x":1569169020000,"y":0.08},{"x":1569169080000,"y":0.21},{"x":1569169140000,"y":0.08},{"x":1569169200000,"y":0.11},{"x":1569169260000,"y":0.06},{"x":1569169320000,"y":0.06},{"x":1569169380000,"y":0.2},{"x":1569169440000,"y":0.07},{"x":1569169500000,"y":0.1},{"x":1569169560000,"y":0.33},{"x":1569169620000,"y":0.05},{"x":1569169680000,"y":0.22},{"x":1569169740000,"y":0.07},{"x":1569169800000,"y":0.17},{"x":1569169860000,"y":0.05},{"x":1569169920000,"y":0.06},{"x":1569169980000,"y":0.23},{"x":1569170040000,"y":0.1},{"x":1569170100000,"y":0.15},{"x":1569170160000,"y":0.07},{"x":1569170220000,"y":0.08},{"x":1569170280000,"y":0.22},{"x":1569170340000,"y":0.11},{"x":1569170400000,"y":0.16},{"x":1569170460000,"y":0.05},{"x":1569170520000,"y":0.07},{"x":1569170580000,"y":0.22},{"x":1569170640000,"y":0.06},{"x":1569170700000,"y":0.15},{"x":1569170760000,"y":0.07},{"x":1569170820000,"y":0.07},{"x":1569170880000,"y":0.16},{"x":1569170940000,"y":0.09},{"x":1569171000000,"y":0.14},{"x":1569171060000,"y":0.06},{"x":1569171120000,"y":0.08},{"x":1569171180000,"y":0.05},{"x":1569171240000,"y":0.2},{"x":1569171300000,"y":0.09},{"x":1569171360000,"y":0.06},{"x":1569171420000,"y":0.09},{"x":1569171480000,"y":0.06},{"x":1569171540000,"y":4.89},{"x":1569171600000,"y":0.11},{"x":1569171660000,"y":0.09},{"x":1569171720000,"y":0.07},{"x":1569171780000,"y":0.14},{"x":1569171840000,"y":0.23},{"x":1569171900000,"y":0.12},{"x":1569171960000,"y":0.05},{"x":1569172020000,"y":0.05},{"x":1569172080000,"y":0.07},{"x":1569172140000,"y":0.34},{"x":1569172200000,"y":0.12},{"x":1569172260000,"y":0.07},{"x":1569172320000,"y":0.08},{"x":1569172380000,"y":0.07},{"x":1569172440000,"y":0.26},{"x":1569172500000,"y":0.13},{"x":1569172560000,"y":0.07},{"x":1569172620000,"y":0.1},{"x":1569172680000,"y":0.05},{"x":1569172740000,"y":0.23},{"x":1569172800000,"y":0.12},{"x":1569172860000,"y":0.06},{"x":1569172920000,"y":0.07},{"x":1569172980000,"y":0.08},{"x":1569173040000,"y":0.21},{"x":1569173100000,"y":0.14},{"x":1569173160000,"y":0.05},{"x":1569173220000,"y":2.07},{"x":1569173280000,"y":0.07},{"x":1569173340000,"y":0.09},{"x":1569173400000,"y":0.36},{"x":1569173460000,"y":0.08},{"x":1569173520000,"y":0.08},{"x":1569173580000,"y":0.06},{"x":1569173640000,"y":0.06},{"x":1569173700000,"y":0.3},{"x":1569173760000,"y":0.07},{"x":1569173820000,"y":0.07},{"x":1569173880000,"y":0.08},{"x":1569173940000,"y":0.15},{"x":1569174000000,"y":0.25},{"x":1569174060000,"y":0.07},{"x":1569174120000,"y":0.08},{"x":1569174180000,"y":0.07},{"x":1569174240000,"y":0.05},{"x":1569174300000,"y":0.23},{"x":1569174360000,"y":0.08},{"x":1569174420000,"y":0.07},{"x":1569174480000,"y":0.08},{"x":1569174540000,"y":0.08},{"x":1569174600000,"y":0.25},{"x":1569174660000,"y":0.07},{"x":1569174720000,"y":0.11},{"x":1569174780000,"y":0.07},{"x":1569174840000,"y":0.06},{"x":1569174900000,"y":0.25},{"x":1569174960000,"y":0.09},{"x":1569175020000,"y":0.08},{"x":1569175080000,"y":0.06},{"x":1569175140000,"y":0.1},{"x":1569175200000,"y":0.26},{"x":1569175260000,"y":0.06},{"x":1569175320000,"y":0.07},{"x":1569175380000,"y":0.08},{"x":1569175440000,"y":0.08},{"x":1569175500000,"y":0.28},{"x":1569175560000,"y":0.07},{"x":1569175620000,"y":0.09},{"x":1569175680000,"y":0.07},{"x":1569175740000,"y":0.1},{"x":1569175800000,"y":0.15},{"x":1569175860000,"y":0.24},{"x":1569175920000,"y":0.06},{"x":1569175980000,"y":0.08},{"x":1569176040000,"y":0.07},{"x":1569176100000,"y":0.11},{"x":1569176160000,"y":0.2},{"x":1569176220000,"y":0.07},{"x":1569176280000,"y":0.09},{"x":1569176340000,"y":0.09},{"x":1569176400000,"y":0.14},{"x":1569176460000,"y":0.22},{"x":1569176520000,"y":0.05},{"x":1569176580000,"y":0.07},{"x":1569176640000,"y":0.1},{"x":1569176700000,"y":0.16},{"x":1569176760000,"y":0.21},{"x":1569176820000,"y":0.06},{"x":1569176880000,"y":0.07},{"x":1569176940000,"y":0.06},{"x":1569177000000,"y":0.12},{"x":1569177060000,"y":0.21},{"x":1569177120000,"y":0.08},{"x":1569177180000,"y":0.07},{"x":1569177240000,"y":0.08},{"x":1569177300000,"y":0.1},{"x":1569177360000,"y":0.22},{"x":1569177420000,"y":0.05},{"x":1569177480000,"y":0.07},{"x":1569177540000,"y":0.12},{"x":1569177600000,"y":0.1},{"x":1569177660000,"y":0.21},{"x":1569177720000,"y":0.07},{"x":1569177780000,"y":0.06},{"x":1569177840000,"y":0.06},{"x":1569177900000,"y":0.14},{"x":1569177960000,"y":0.2},{"x":1569178020000,"y":0.08},{"x":1569178080000,"y":0.09},{"x":1569178140000,"y":0.07},{"x":1569178200000,"y":0.12},{"x":1569178260000,"y":0.08},{"x":1569178320000,"y":0.25},{"x":1569178380000,"y":0.06},{"x":1569178440000,"y":0.08},{"x":1569178500000,"y":0.13},{"x":1569178560000,"y":0.07},{"x":1569178620000,"y":0.25},{"x":1569178680000,"y":0.09},{"x":1569178740000,"y":0.04},{"x":1569178800000,"y":0.13},{"x":1569178860000,"y":0.05},{"x":1569178920000,"y":0.21},{"x":1569178980000,"y":0.08},{"x":1569179040000,"y":0.05},{"x":1569179100000,"y":0.13},{"x":1569179160000,"y":0.14},{"x":1569179220000,"y":0.2},{"x":1569179280000,"y":0.08},{"x":1569179340000,"y":0.12},{"x":1569179400000,"y":0.13},{"x":1569179460000,"y":0.07},{"x":1569179520000,"y":0.21},{"x":1569179580000,"y":0.09},{"x":1569179640000,"y":0.08},{"x":1569179700000,"y":0.19},{"x":1569179760000,"y":0.08},{"x":1569179820000,"y":0.22},{"x":1569179880000,"y":0.09},{"x":1569179940000,"y":0.09},{"x":1569180000000,"y":0.15},{"x":1569180060000,"y":0.08},{"x":1569180120000,"y":0.24},{"x":1569180180000,"y":0.07},{"x":1569180240000,"y":0.07},{"x":1569180300000,"y":0.12},{"x":1569180360000,"y":0.08},{"x":1569180420000,"y":0.06},{"x":1569180480000,"y":0.22},{"x":1569180540000,"y":0.09},{"x":1569180600000,"y":0.12},{"x":1569180660000,"y":0.06},{"x":1569180720000,"y":0.07},{"x":1569180780000,"y":0.22},{"x":1569180840000,"y":0.09},{"x":1569180900000,"y":0.1},{"x":1569180960000,"y":0.07},{"x":1569181020000,"y":0.06},{"x":1569181080000,"y":0.21},{"x":1569181140000,"y":0.1},{"x":1569181200000,"y":0.11},{"x":1569181260000,"y":0.07},{"x":1569181320000,"y":0.09},{"x":1569181380000,"y":0.2},{"x":1569181440000,"y":0.05},{"x":1569181500000,"y":0.12},{"x":1569181560000,"y":3.23},{"x":1569181620000,"y":0.08},{"x":1569181680000,"y":0.22},{"x":1569181740000,"y":0.09},{"x":1569181800000,"y":0.12},{"x":1569181860000,"y":0.06},{"x":1569181920000,"y":0.1},{"x":1569181980000,"y":0.2},{"x":1569182040000,"y":0.07},{"x":1569182100000,"y":0.13},{"x":1569182160000,"y":0.06},{"x":1569182220000,"y":0.06},{"x":1569182280000,"y":0.18},{"x":1569182340000,"y":0.05},{"x":1569182400000,"y":0.22},{"x":1569182460000,"y":0.06},{"x":1569182520000,"y":0.06},{"x":1569182580000,"y":0.16},{"x":1569182640000,"y":0.08},{"x":1569182700000,"y":0.17},{"x":1569182760000,"y":0.07},{"x":1569182820000,"y":0.05},{"x":1569182880000,"y":0.06},{"x":1569182940000,"y":0.31},{"x":1569183000000,"y":0.14},{"x":1569183060000,"y":0.08},{"x":1569183120000,"y":0.1},{"x":1569183180000,"y":0.09},{"x":1569183240000,"y":0.2},{"x":1569183300000,"y":0.11},{"x":1569183360000,"y":0.05},{"x":1569183420000,"y":0.09},{"x":1569183480000,"y":0.06},{"x":1569183540000,"y":0.22},{"x":1569183600000,"y":0.15},{"x":1569183660000,"y":0.1},{"x":1569183720000,"y":0.11},{"x":1569183780000,"y":0.08},{"x":1569183840000,"y":0.2},{"x":1569183900000,"y":0.15},{"x":1569183960000,"y":0.06},{"x":1569184020000,"y":0.07},{"x":1569184080000,"y":0.1},{"x":1569184140000,"y":0.26},{"x":1569184200000,"y":0.12},{"x":1569184260000,"y":0.07},{"x":1569184320000,"y":0.11},{"x":1569184380000,"y":0.1},{"x":1569184440000,"y":0.22},{"x":1569184500000,"y":0.13},{"x":1569184560000,"y":0.1},{"x":1569184620000,"y":0.07},{"x":1569184680000,"y":0.09},{"x":1569184740000,"y":0.22},{"x":1569184800000,"y":0.29},{"x":1569184860000,"y":0.07},{"x":1569184920000,"y":0.11},{"x":1569184980000,"y":0.14},{"x":1569185040000,"y":0.07},{"x":1569185100000,"y":0.27},{"x":1569185160000,"y":0.12},{"x":1569185220000,"y":0.11},{"x":1569185280000,"y":0.12},{"x":1569185340000,"y":0.12},{"x":1569185400000,"y":0.34},{"x":1569185460000,"y":0.13},{"x":1569185520000,"y":0.14},{"x":1569185580000,"y":0.15},{"x":1569185640000,"y":0.12},{"x":1569185700000,"y":0.31},{"x":1569185760000,"y":0.16},{"x":1569185820000,"y":0.15},{"x":1569185880000,"y":0.16},{"x":1569185940000,"y":0.16},{"x":1569186000000,"y":0.46},{"x":1569186060000,"y":0.15},{"x":1569186120000,"y":0.16},{"x":1569186180000,"y":0.15},{"x":1569186240000,"y":0.14},{"x":1569186300000,"y":0.32},{"x":1569186360000,"y":0.16},{"x":1569186420000,"y":0.3},{"x":1569186480000,"y":0.16},{"x":1569186540000,"y":0.19},{"x":1569186600000,"y":0.39},{"x":1569186660000,"y":0.15},{"x":1569186720000,"y":0.15},{"x":1569186780000,"y":0.14},{"x":1569186840000,"y":0.17},{"x":1569186900000,"y":0.34},{"x":1569186960000,"y":0.17},{"x":1569187020000,"y":0.16},{"x":1569187080000,"y":0.16},{"x":1569187140000,"y":0.15},{"x":1569187200000,"y":0.18},{"x":1569187260000,"y":0.28},{"x":1569187320000,"y":0.16},{"x":1569187380000,"y":0.16},{"x":1569187440000,"y":0.16},{"x":1569187500000,"y":0.18},{"x":1569187560000,"y":0.28},{"x":1569187620000,"y":0.14},{"x":1569187680000,"y":0.19},{"x":1569187740000,"y":0.15},{"x":1569187800000,"y":0.19},{"x":1569187860000,"y":0.29},{"x":1569187920000,"y":0.18},{"x":1569187980000,"y":0.18},{"x":1569188040000,"y":0.15},{"x":1569188100000,"y":0.23},{"x":1569188160000,"y":0.31},{"x":1569188220000,"y":0.17},{"x":1569188280000,"y":0.15},{"x":1569188340000,"y":0.2},{"x":1569188400000,"y":0.2},{"x":1569188460000,"y":0.29},{"x":1569188520000,"y":0.19},{"x":1569188580000,"y":0.16},{"x":1569188640000,"y":0.15},{"x":1569188700000,"y":0.22},{"x":1569188760000,"y":0.3},{"x":1569188820000,"y":0.14},{"x":1569188880000,"y":0.15},{"x":1569188940000,"y":0.15},{"x":1569189000000,"y":0.21},{"x":1569189060000,"y":0.28},{"x":1569189120000,"y":0.15},{"x":1569189180000,"y":0.18},{"x":1569189240000,"y":0.15},{"x":1569189300000,"y":0.24},{"x":1569189360000,"y":0.15},{"x":1569189420000,"y":0.28},{"x":1569189480000,"y":0.13},{"x":1569189540000,"y":0.14},{"x":1569189600000,"y":0.2},{"x":1569189660000,"y":0.15},{"x":1569189720000,"y":0.28},{"x":1569189780000,"y":0.23},{"x":1569189840000,"y":0.16},{"x":1569189900000,"y":0.23},{"x":1569189960000,"y":0.16},{"x":1569190020000,"y":0.32},{"x":1569190080000,"y":1.05},{"x":1569190140000,"y":0.2},{"x":1569190200000,"y":0.21},{"x":1569190260000,"y":0.15},{"x":1569190320000,"y":0.29},{"x":1569190380000,"y":0.16},{"x":1569190440000,"y":0.17},{"x":1569190500000,"y":0.2},{"x":1569190560000,"y":0.15},{"x":1569190620000,"y":0.29},{"x":1569190680000,"y":0.15},{"x":1569190740000,"y":0.16},{"x":1569190800000,"y":0.17},{"x":1569190860000,"y":0.15},{"x":1569190920000,"y":0.27},{"x":1569190980000,"y":0.16},{"x":1569191040000,"y":0.16},{"x":1569191100000,"y":0.22},{"x":1569191160000,"y":0.14},{"x":1569191220000,"y":0.28},{"x":1569191280000,"y":0.14},{"x":1569191340000,"y":0.17},{"x":1569191400000,"y":0.17},{"x":1569191460000,"y":0.15},{"x":1569191520000,"y":0.14},{"x":1569191580000,"y":0.32},{"x":1569191640000,"y":0.15},{"x":1569191700000,"y":0.18},{"x":1569191760000,"y":0.14},{"x":1569191820000,"y":0.15},{"x":1569191880000,"y":0.3},{"x":1569191940000,"y":0.23},{"x":1569192000000,"y":0.22},{"x":1569192060000,"y":0.14},{"x":1569192120000,"y":0.13},{"x":1569192180000,"y":0.31},{"x":1569192240000,"y":0.16},{"x":1569192300000,"y":0.21},{"x":1569192360000,"y":0.15},{"x":1569192420000,"y":0.15},{"x":1569192480000,"y":0.29},{"x":1569192540000,"y":0.16},{"x":1569192600000,"y":0.24},{"x":1569192660000,"y":0.14},{"x":1569192720000,"y":0.14},{"x":1569192780000,"y":0.36},{"x":1569192840000,"y":0.15},{"x":1569192900000,"y":0.2},{"x":1569192960000,"y":0.17},{"x":1569193020000,"y":0.13},{"x":1569193080000,"y":0.28},{"x":1569193140000,"y":0.14},{"x":1569193200000,"y":0.21},{"x":1569193260000,"y":0.14},{"x":1569193320000,"y":0.14},{"x":1569193380000,"y":2.51},{"x":1569193440000,"y":1.05},{"x":1569193500000,"y":0.17},{"x":1569193560000,"y":0.14},{"x":1569193620000,"y":0.13},{"x":1569193680000,"y":0.14},{"x":1569193740000,"y":0.32},{"x":1569193800000,"y":0.18},{"x":1569193860000,"y":0.13},{"x":1569193920000,"y":0.14},{"x":1569193980000,"y":0.19},{"x":1569194040000,"y":0.28},{"x":1569194100000,"y":0.17},{"x":1569194160000,"y":0.18},{"x":1569194220000,"y":0.16},{"x":1569194280000,"y":0.15},{"x":1569194340000,"y":0.33},{"x":1569194400000,"y":0.19},{"x":1569194460000,"y":0.17},{"x":1569194520000,"y":0.15},{"x":1569194580000,"y":0.16},{"x":1569194640000,"y":0.3},{"x":1569194700000,"y":0.19},{"x":1569194760000,"y":0.15},{"x":1569194820000,"y":0.18},{"x":1569194880000,"y":0.13},{"x":1569194940000,"y":0.27},{"x":1569195000000,"y":0.2},{"x":1569195060000,"y":0.16},{"x":1569195120000,"y":0.12},{"x":1569195180000,"y":0.11},{"x":1569195240000,"y":0.22},{"x":1569195300000,"y":0.14},{"x":1569195360000,"y":0.08},{"x":1569195420000,"y":0.06},{"x":1569195480000,"y":0.05},{"x":1569195540000,"y":0.28},{"x":1569195600000,"y":0.11},{"x":1569195660000,"y":0.07},{"x":1569195720000,"y":0.05},{"x":1569195780000,"y":0.07},{"x":1569195840000,"y":0.09},{"x":1569195900000,"y":0.28},{"x":1569195960000,"y":0.05},{"x":1569196020000,"y":0.08},{"x":1569196080000,"y":0.08},{"x":1569196140000,"y":0.09},{"x":1569196200000,"y":0.26},{"x":1569196260000,"y":0.1},{"x":1569196320000,"y":0.05},{"x":1569196380000,"y":0.06},{"x":1569196440000,"y":0.05},{"x":1569196500000,"y":0.27},{"x":1569196560000,"y":0.07},{"x":1569196620000,"y":0.06},{"x":1569196680000,"y":0.07},{"x":1569196740000,"y":0.06},{"x":1569196800000,"y":0.32},{"x":1569196860000,"y":0.05},{"x":1569196920000,"y":0.07},{"x":1569196980000,"y":0.05},{"x":1569197040000,"y":0.05},{"x":1569197100000,"y":0.27},{"x":1569197160000,"y":0.05},{"x":1569197220000,"y":0.06},{"x":1569197280000,"y":0.07},{"x":1569197340000,"y":0.15},{"x":1569197400000,"y":0.3},{"x":1569197460000,"y":0.07},{"x":1569197520000,"y":0.09},{"x":1569197580000,"y":0.06},{"x":1569197640000,"y":0.07},{"x":1569197700000,"y":0.27},{"x":1569197760000,"y":0.05},{"x":1569197820000,"y":0.05},{"x":1569197880000,"y":0.07},{"x":1569197940000,"y":0.09},{"x":1569198000000,"y":0.3},{"x":1569198060000,"y":0.06},{"x":1569198120000,"y":0.07},{"x":1569198180000,"y":0.07},{"x":1569198240000,"y":0.06},{"x":1569198300000,"y":0.13},{"x":1569198360000,"y":0.19},{"x":1569198420000,"y":0.08},{"x":1569198480000,"y":0.06},{"x":1569198540000,"y":0.06},{"x":1569198600000,"y":0.58},{"x":1569198660000,"y":0.2},{"x":1569198720000,"y":0.05},{"x":1569198780000,"y":0.06},{"x":1569198840000,"y":0.06},{"x":1569198900000,"y":0.1},{"x":1569198960000,"y":0.19},{"x":1569199020000,"y":0.06},{"x":1569199080000,"y":0.11},{"x":1569199140000,"y":0.15},{"x":1569199200000,"y":0.16},{"x":1569199260000,"y":0.19},{"x":1569199320000,"y":0.07},{"x":1569199380000,"y":0.07},{"x":1569199440000,"y":0.1},{"x":1569199500000,"y":0.13},{"x":1569199560000,"y":0.2},{"x":1569199620000,"y":0.07},{"x":1569199680000,"y":0.07},{"x":1569199740000,"y":0.11},{"x":1569199800000,"y":0.1},{"x":1569199860000,"y":0.23},{"x":1569199920000,"y":0.08},{"x":1569199980000,"y":0.1},{"x":1569200040000,"y":0.08},{"x":1569200100000,"y":0.1},{"x":1569200160000,"y":0.2},{"x":1569200220000,"y":0.07},{"x":1569200280000,"y":0.07},{"x":1569200340000,"y":0.08},{"x":1569200400000,"y":0.15},{"x":1569200460000,"y":0.17},{"x":1569200520000,"y":0.11},{"x":1569200580000,"y":0.08},{"x":1569200640000,"y":0.06},{"x":1569200700000,"y":0.15},{"x":1569200760000,"y":0.06},{"x":1569200820000,"y":0.2},{"x":1569200880000,"y":0.08},{"x":1569200940000,"y":0.13},{"x":1569201000000,"y":0.12},{"x":1569201060000,"y":0.07},{"x":1569201120000,"y":0.2},{"x":1569201180000,"y":0.07},{"x":1569201240000,"y":0.06},{"x":1569201300000,"y":0.12},{"x":1569201360000,"y":0.06},{"x":1569201420000,"y":0.22},{"x":1569201480000,"y":0.07},{"x":1569201540000,"y":0.09},{"x":1569201600000,"y":0.13},{"x":1569201660000,"y":0.04},{"x":1569201720000,"y":0.21},{"x":1569201780000,"y":0.06},{"x":1569201840000,"y":0.08},{"x":1569201900000,"y":0.14},{"x":1569201960000,"y":0.09},{"x":1569202020000,"y":0.22},{"x":1569202080000,"y":0.04},{"x":1569202140000,"y":0.06},{"x":1569202200000,"y":0.17},{"x":1569202260000,"y":0.07},{"x":1569202320000,"y":0.05},{"x":1569202380000,"y":0.21},{"x":1569202440000,"y":0.06},{"x":1569202500000,"y":0.11},{"x":1569202560000,"y":0.05},{"x":1569202620000,"y":0.07},{"x":1569202680000,"y":0.19},{"x":1569202740000,"y":0.12},{"x":1569202800000,"y":0.12},{"x":1569202860000,"y":0.07},{"x":1569202920000,"y":0.06},{"x":1569202980000,"y":0.19},{"x":1569203040000,"y":0.09},{"x":1569203100000,"y":0.12},{"x":1569203160000,"y":0.05},{"x":1569203220000,"y":0.09},{"x":1569203280000,"y":0.22},{"x":1569203340000,"y":0.07},{"x":1569203400000,"y":0.1},{"x":1569203460000,"y":0.07},{"x":1569203520000,"y":0.07},{"x":1569203580000,"y":0.2},{"x":1569203640000,"y":0.05},{"x":1569203700000,"y":0.14},{"x":1569203760000,"y":0.07},{"x":1569203820000,"y":0.07},{"x":1569203880000,"y":0.23},{"x":1569203940000,"y":0.07},{"x":1569204000000,"y":0.12},{"x":1569204060000,"y":0.08},{"x":1569204120000,"y":0.08},{"x":1569204180000,"y":0.2},{"x":1569204240000,"y":0.08},{"x":1569204300000,"y":0.12},{"x":1569204360000,"y":0.07},{"x":1569204420000,"y":0.06},{"x":1569204480000,"y":0.06},{"x":1569204540000,"y":0.32},{"x":1569204600000,"y":0.64},{"x":1569204660000,"y":0.06},{"x":1569204720000,"y":0.07},{"x":1569204780000,"y":0.08},{"x":1569204840000,"y":0.23},{"x":1569204900000,"y":0.14},{"x":1569204960000,"y":0.07},{"x":1569205020000,"y":0.06},{"x":1569205080000,"y":0.05},{"x":1569205140000,"y":0.23},{"x":1569205200000,"y":0.12},{"x":1569205260000,"y":0.07},{"x":1569205320000,"y":0.07},{"x":1569205380000,"y":0.06},{"x":1569205440000,"y":0.2},{"x":1569205500000,"y":0.1},{"x":1569205560000,"y":0.05},{"x":1569205620000,"y":0.07},{"x":1569205680000,"y":0.06},{"x":1569205740000,"y":0.24},{"x":1569205800000,"y":0.15},{"x":1569205860000,"y":0.13},{"x":1569205920000,"y":0.05},{"x":1569205980000,"y":0.1},{"x":1569206040000,"y":0.2},{"x":1569206100000,"y":0.12},{"x":1569206160000,"y":0.06},{"x":1569206220000,"y":0.08},{"x":1569206280000,"y":0.08},{"x":1569206340000,"y":0.29},{"x":1569206400000,"y":0.12},{"x":1569206460000,"y":0.07},{"x":1569206520000,"y":0.07},{"x":1569206580000,"y":0.06},{"x":1569206640000,"y":0.21},{"x":1569206700000,"y":0.12},{"x":1569206760000,"y":0.06},{"x":1569206820000,"y":0.06},{"x":1569206880000,"y":0.05},{"x":1569206940000,"y":0.08},{"x":1569207000000,"y":0.27},{"x":1569207060000,"y":0.05},{"x":1569207120000,"y":0.06},{"x":1569207180000,"y":0.1},{"x":1569207240000,"y":0.09},{"x":1569207300000,"y":0.29},{"x":1569207360000,"y":0.07},{"x":1569207420000,"y":0.09},{"x":1569207480000,"y":0.08},{"x":1569207540000,"y":0.11},{"x":1569207600000,"y":0.34},{"x":1569207660000,"y":0.07},{"x":1569207720000,"y":0.09},{"x":1569207780000,"y":0.06},{"x":1569207840000,"y":0.1},{"x":1569207900000,"y":0.26},{"x":1569207960000,"y":0.05},{"x":1569208020000,"y":0.07},{"x":1569208080000,"y":0.09},{"x":1569208140000,"y":0.17},{"x":1569208200000,"y":0.29},{"x":1569208260000,"y":0.09},{"x":1569208320000,"y":0.06},{"x":1569208380000,"y":0.09},{"x":1569208440000,"y":0.07},{"x":1569208500000,"y":0.33},{"x":1569208560000,"y":0.08},{"x":1569208620000,"y":0.09},{"x":1569208680000,"y":0.05},{"x":1569208740000,"y":0.08},{"x":1569208800000,"y":0.27},{"x":1569208860000,"y":0.07},{"x":1569208920000,"y":0.05},{"x":1569208980000,"y":0.08},{"x":1569209040000,"y":0.08},{"x":1569209100000,"y":0.09},{"x":1569209160000,"y":0.19},{"x":1569209220000,"y":0.06},{"x":1569209280000,"y":0.06},{"x":1569209340000,"y":0.08},{"x":1569209400000,"y":0.12},{"x":1569209460000,"y":0.22},{"x":1569209520000,"y":0.1},{"x":1569209580000,"y":0.07},{"x":1569209640000,"y":0.07},{"x":1569209700000,"y":0.11},{"x":1569209760000,"y":0.22},{"x":1569209820000,"y":0.1},{"x":1569209880000,"y":0.07},{"x":1569209940000,"y":0.12},{"x":1569210000000,"y":0.13},{"x":1569210060000,"y":0.24},{"x":1569210120000,"y":0.09},{"x":1569210180000,"y":0.07},{"x":1569210240000,"y":0.07},{"x":1569210300000,"y":0.12},{"x":1569210360000,"y":0.21},{"x":1569210420000,"y":0.1},{"x":1569210480000,"y":0.08},{"x":1569210540000,"y":0.07},{"x":1569210600000,"y":0.15},{"x":1569210660000,"y":0.25},{"x":1569210720000,"y":0.1},{"x":1569210780000,"y":0.08},{"x":1569210840000,"y":0.09},{"x":1569210900000,"y":0.12},{"x":1569210960000,"y":0.19},{"x":1569211020000,"y":0.05},{"x":1569211080000,"y":0.1},{"x":1569211140000,"y":0.09},{"x":1569211200000,"y":0.23},{"x":1569211260000,"y":0.2},{"x":1569211320000,"y":0.06},{"x":1569211380000,"y":0.07},{"x":1569211440000,"y":0.07},{"x":1569211500000,"y":0.18},{"x":1569211560000,"y":0.09},{"x":1569211620000,"y":0.2},{"x":1569211680000,"y":0.07},{"x":1569211740000,"y":0.12},{"x":1569211800000,"y":0.09},{"x":1569211860000,"y":3.51},{"x":1569211920000,"y":0.21},{"x":1569211980000,"y":0.07},{"x":1569212040000,"y":0.08},{"x":1569212100000,"y":0.15},{"x":1569212160000,"y":0.13},{"x":1569212220000,"y":0.21},{"x":1569212280000,"y":0.09},{"x":1569212340000,"y":0.07},{"x":1569212400000,"y":0.12},{"x":1569212460000,"y":0.06},{"x":1569212520000,"y":0.21},{"x":1569212580000,"y":0.09},{"x":1569212640000,"y":0.07},{"x":1569212700000,"y":0.13},{"x":1569212760000,"y":0.07},{"x":1569212820000,"y":0.3},{"x":1569212880000,"y":0.06},{"x":1569212940000,"y":0.08},{"x":1569213000000,"y":0.14},{"x":1569213060000,"y":0.05},{"x":1569213120000,"y":0.23},{"x":1569213180000,"y":0.08},{"x":1569213240000,"y":0.09},{"x":1569213300000,"y":0.19},{"x":1569213360000,"y":0.1},{"x":1569213420000,"y":0.07},{"x":1569213480000,"y":0.63},{"x":1569213540000,"y":0.13},{"x":1569213600000,"y":0.16},{"x":1569213660000,"y":0.11},{"x":1569213720000,"y":0.07},{"x":1569213780000,"y":0.19},{"x":1569213840000,"y":0.12},{"x":1569213900000,"y":0.17},{"x":1569213960000,"y":0.07},{"x":1569214020000,"y":0.11},{"x":1569214080000,"y":0.25},{"x":1569214140000,"y":0.11},{"x":1569214200000,"y":0.14},{"x":1569214260000,"y":0.05},{"x":1569214320000,"y":0.07},{"x":1569214380000,"y":0.24},{"x":1569214440000,"y":0.1},{"x":1569214500000,"y":0.15},{"x":1569214560000,"y":0.06},{"x":1569214620000,"y":0.1},{"x":1569214680000,"y":0.2},{"x":1569214740000,"y":0.06},{"x":1569214800000,"y":0.5},{"x":1569214860000,"y":0.07},{"x":1569214920000,"y":0.08},{"x":1569214980000,"y":0.18},{"x":1569215040000,"y":0.09},{"x":1569215100000,"y":0.16},{"x":1569215160000,"y":0.08},{"x":1569215220000,"y":0.08},{"x":1569215280000,"y":1.76},{"x":1569215340000,"y":3.41},{"x":1569215400000,"y":0.12},{"x":1569215460000,"y":0.09},{"x":1569215520000,"y":0.1},{"x":1569215580000,"y":0.23},{"x":1569215640000,"y":0.08},{"x":1569215700000,"y":0.12},{"x":1569215760000,"y":0.1},{"x":1569215820000,"y":0.07},{"x":1569215880000,"y":0.07},{"x":1569215940000,"y":0.23},{"x":1569216000000,"y":0.15},{"x":1569216060000,"y":0.07},{"x":1569216120000,"y":0.08},{"x":1569216180000,"y":0.09},{"x":1569216240000,"y":0.19},{"x":1569216300000,"y":0.14},{"x":1569216360000,"y":0.08},{"x":1569216420000,"y":0.06},{"x":1569216480000,"y":0.06},{"x":1569216540000,"y":0.2},{"x":1569216600000,"y":0.15},{"x":1569216660000,"y":0.12},{"x":1569216720000,"y":0.1},{"x":1569216780000,"y":0.12},{"x":1569216840000,"y":0.21},{"x":1569216900000,"y":0.14},{"x":1569216960000,"y":0.1},{"x":1569217020000,"y":0.08},{"x":1569217080000,"y":0.08},{"x":1569217140000,"y":0.34},{"x":1569217200000,"y":0.19},{"x":1569217260000,"y":0.16},{"x":1569217320000,"y":0.09},{"x":1569217380000,"y":0.09},{"x":1569217440000,"y":0.25},{"x":1569217500000,"y":0.17},{"x":1569217560000,"y":0.08},{"x":1569217620000,"y":0.15},{"x":1569217680000,"y":0.14},{"x":1569217740000,"y":0.21},{"x":1569217800000,"y":0.14},{"x":1569217860000,"y":0.13},{"x":1569217920000,"y":0.12},{"x":1569217980000,"y":0.16},{"x":1569218040000,"y":0.12},{"x":1569218100000,"y":0.28},{"x":1569218160000,"y":0.1},{"x":1569218220000,"y":0.09},{"x":1569218280000,"y":0.15},{"x":1569218340000,"y":0.1},{"x":1569218400000,"y":0.34},{"x":1569218460000,"y":0.11},{"x":1569218520000,"y":0.1},{"x":1569218580000,"y":0.11},{"x":1569218640000,"y":0.11},{"x":1569218700000,"y":0.37},{"x":1569218760000,"y":0.13},{"x":1569218820000,"y":0.12},{"x":1569218880000,"y":0.15},{"x":1569218940000,"y":0.22},{"x":1569219000000,"y":0.3},{"x":1569219060000,"y":0.14},{"x":1569219120000,"y":0.15},{"x":1569219180000,"y":0.22},{"x":1569219240000,"y":0.16},{"x":1569219300000,"y":0.35},{"x":1569219360000,"y":0.17},{"x":1569219420000,"y":0.19},{"x":1569219480000,"y":0.17},{"x":1569219540000,"y":0.17},{"x":1569219600000,"y":0.34},{"x":1569219660000,"y":0.14},{"x":1569219720000,"y":0.15},{"x":1569219780000,"y":0.16},{"x":1569219840000,"y":0.15},{"x":1569219900000,"y":0.47},{"x":1569219960000,"y":0.15},{"x":1569220020000,"y":0.15},{"x":1569220080000,"y":0.14},{"x":1569220140000,"y":0.17},{"x":1569220200000,"y":0.37},{"x":1569220260000,"y":0.13},{"x":1569220320000,"y":0.17},{"x":1569220380000,"y":0.16},{"x":1569220440000,"y":0.17},{"x":1569220500000,"y":0.19},{"x":1569220560000,"y":0.29},{"x":1569220620000,"y":0.16},{"x":1569220680000,"y":0.17},{"x":1569220740000,"y":0.24},{"x":1569220800000,"y":0.19},{"x":1569220860000,"y":0.29},{"x":1569220920000,"y":0.15},{"x":1569220980000,"y":0.16},{"x":1569221040000,"y":0.15},{"x":1569221100000,"y":0.17},{"x":1569221160000,"y":0.28},{"x":1569221220000,"y":0.17},{"x":1569221280000,"y":0.18},{"x":1569221340000,"y":0.16},{"x":1569221400000,"y":0.17},{"x":1569221460000,"y":0.3},{"x":1569221520000,"y":0.15},{"x":1569221580000,"y":0.2},{"x":1569221640000,"y":0.18},{"x":1569221700000,"y":0.22},{"x":1569221760000,"y":0.28},{"x":1569221820000,"y":0.16},{"x":1569221880000,"y":0.19},{"x":1569221940000,"y":0.17},{"x":1569222000000,"y":0.25},{"x":1569222060000,"y":0.31},{"x":1569222120000,"y":0.16},{"x":1569222180000,"y":0.18},{"x":1569222240000,"y":0.16},{"x":1569222300000,"y":0.23},{"x":1569222360000,"y":0.31},{"x":1569222420000,"y":0.18},{"x":1569222480000,"y":0.17},{"x":1569222540000,"y":0.25},{"x":1569222600000,"y":0.22},{"x":1569222660000,"y":0.16},{"x":1569222720000,"y":0.31},{"x":1569222780000,"y":0.45},{"x":1569222840000,"y":0.19},{"x":1569222900000,"y":0.21},{"x":1569222960000,"y":0.15},{"x":1569223020000,"y":0.3},{"x":1569223080000,"y":0.17},{"x":1569223140000,"y":0.14},{"x":1569223200000,"y":0.25},{"x":1569223260000,"y":0.17},{"x":1569223320000,"y":0.3},{"x":1569223380000,"y":0.17},{"x":1569223440000,"y":0.16},{"x":1569223500000,"y":0.22},{"x":1569223560000,"y":0.15},{"x":1569223620000,"y":0.27},{"x":1569223680000,"y":0.15},{"x":1569223740000,"y":0.16},{"x":1569223800000,"y":0.19},{"x":1569223860000,"y":0.15},{"x":1569223920000,"y":0.28},{"x":1569223980000,"y":0.15},{"x":1569224040000,"y":3.33},{"x":1569224100000,"y":0.2},{"x":1569224160000,"y":0.15},{"x":1569224220000,"y":0.33},{"x":1569224280000,"y":0.17},{"x":1569224340000,"y":0.2},{"x":1569224400000,"y":0.19},{"x":1569224460000,"y":0.15},{"x":1569224520000,"y":0.31},{"x":1569224580000,"y":0.15},{"x":1569224640000,"y":0.17},{"x":1569224700000,"y":0.23},{"x":1569224760000,"y":0.17},{"x":1569224820000,"y":0.18},{"x":1569224880000,"y":0.31},{"x":1569224940000,"y":0.15},{"x":1569225000000,"y":0.21},{"x":1569225060000,"y":0.17},{"x":1569225120000,"y":0.18},{"x":1569225180000,"y":0.29},{"x":1569225240000,"y":0.15},{"x":1569225300000,"y":0.2},{"x":1569225360000,"y":0.14},{"x":1569225420000,"y":0.18},{"x":1569225480000,"y":0.32},{"x":1569225540000,"y":0.14},{"x":1569225600000,"y":0.29},{"x":1569225660000,"y":0.17},{"x":1569225720000,"y":0.14},{"x":1569225780000,"y":0.29},{"x":1569225840000,"y":0.16},{"x":1569225900000,"y":0.24},{"x":1569225960000,"y":0.14},{"x":1569226020000,"y":0.16},{"x":1569226080000,"y":0.32},{"x":1569226140000,"y":0.24},{"x":1569226200000,"y":0.22},{"x":1569226260000,"y":0.17},{"x":1569226320000,"y":0.17},{"x":1569226380000,"y":0.29},{"x":1569226440000,"y":1.8},{"x":1569226500000,"y":0.17},{"x":1569226560000,"y":0.17},{"x":1569226620000,"y":0.17},{"x":1569226680000,"y":0.3},{"x":1569226740000,"y":0.17},{"x":1569226800000,"y":0.18},{"x":1569226860000,"y":0.17},{"x":1569226920000,"y":0.17},{"x":1569226980000,"y":0.3},{"x":1569227040000,"y":0.14},{"x":1569227100000,"y":0.22},{"x":1569227160000,"y":0.18},{"x":1569227220000,"y":0.17},{"x":1569227280000,"y":0.15},{"x":1569227340000,"y":0.32},{"x":1569227400000,"y":0.22},{"x":1569227460000,"y":0.14},{"x":1569227520000,"y":0.15},{"x":1569227580000,"y":0.15},{"x":1569227640000,"y":0.27},{"x":1569227700000,"y":0.2},{"x":1569227760000,"y":0.16},{"x":1569227820000,"y":0.15},{"x":1569227880000,"y":0.13},{"x":1569227940000,"y":0.4},{"x":1569228000000,"y":0.22},{"x":1569228060000,"y":0.16},{"x":1569228120000,"y":0.15},{"x":1569228180000,"y":0.17},{"x":1569228240000,"y":0.31},{"x":1569228300000,"y":0.24},{"x":1569228360000,"y":0.13},{"x":1569228420000,"y":0.12},{"x":1569228480000,"y":0.14},{"x":1569228540000,"y":0.27},{"x":1569228600000,"y":0.24},{"x":1569228660000,"y":0.09},{"x":1569228720000,"y":0.1},{"x":1569228780000,"y":0.1},{"x":1569228840000,"y":0.23},{"x":1569228900000,"y":0.19},{"x":1569228960000,"y":0.07},{"x":1569229020000,"y":0.07},{"x":1569229080000,"y":0.07},{"x":1569229140000,"y":0.08},{"x":1569229200000,"y":0.37},{"x":1569229260000,"y":0.06},{"x":1569229320000,"y":0.08},{"x":1569229380000,"y":0.07},{"x":1569229440000,"y":0.11},{"x":1569229500000,"y":0.26},{"x":1569229560000,"y":0.07},{"x":1569229620000,"y":0.1},{"x":1569229680000,"y":0.06},{"x":1569229740000,"y":0.17},{"x":1569229800000,"y":0.24},{"x":1569229860000,"y":0.07},{"x":1569229920000,"y":0.08},{"x":1569229980000,"y":0.07},{"x":1569230040000,"y":0.11},{"x":1569230100000,"y":2.9},{"x":1569230160000,"y":0.06},{"x":1569230220000,"y":0.09},{"x":1569230280000,"y":0.08},{"x":1569230340000,"y":0.09},{"x":1569230400000,"y":0.23},{"x":1569230460000,"y":0.09},{"x":1569230520000,"y":0.1},{"x":1569230580000,"y":0.08},{"x":1569230640000,"y":0.1},{"x":1569230700000,"y":0.27},{"x":1569230760000,"y":0.06},{"x":1569230820000,"y":0.06},{"x":1569230880000,"y":0.07},{"x":1569230940000,"y":0.06},{"x":1569231000000,"y":0.24},{"x":1569231060000,"y":0.1},{"x":1569231120000,"y":0.07},{"x":1569231180000,"y":0.08},{"x":1569231240000,"y":0.06},{"x":1569231300000,"y":0.12},{"x":1569231360000,"y":0.23},{"x":1569231420000,"y":0.07},{"x":1569231480000,"y":0.07},{"x":1569231540000,"y":0.15},{"x":1569231600000,"y":0.12},{"x":1569231660000,"y":0.23},{"x":1569231720000,"y":0.08},{"x":1569231780000,"y":0.09},{"x":1569231840000,"y":0.1},{"x":1569231900000,"y":0.15},{"x":1569231960000,"y":0.21},{"x":1569232020000,"y":0.1},{"x":1569232080000,"y":0.09},{"x":1569232140000,"y":0.08},{"x":1569232200000,"y":0.14},{"x":1569232260000,"y":0.23},{"x":1569232320000,"y":0.06},{"x":1569232380000,"y":0.1},{"x":1569232440000,"y":0.1},{"x":1569232500000,"y":0.11},{"x":1569232560000,"y":0.21},{"x":1569232620000,"y":0.07},{"x":1569232680000,"y":0.07},{"x":1569232740000,"y":0.08},{"x":1569232800000,"y":0.21},{"x":1569232860000,"y":0.2},{"x":1569232920000,"y":0.07},{"x":1569232980000,"y":0.06},{"x":1569233040000,"y":0.08},{"x":1569233100000,"y":0.12},{"x":1569233160000,"y":0.06},{"x":1569233220000,"y":0.22},{"x":1569233280000,"y":0.1},{"x":1569233340000,"y":0.16},{"x":1569233400000,"y":0.12},{"x":1569233460000,"y":0.09},{"x":1569233520000,"y":0.21},{"x":1569233580000,"y":0.08},{"x":1569233640000,"y":0.08},{"x":1569233700000,"y":1.49},{"x":1569233760000,"y":0.07},{"x":1569233820000,"y":0.23},{"x":1569233880000,"y":0.06},{"x":1569233940000,"y":0.09},{"x":1569234000000,"y":0.11},{"x":1569234060000,"y":0.1},{"x":1569234120000,"y":0.21},{"x":1569234180000,"y":0.06},{"x":1569234240000,"y":0.06},{"x":1569234300000,"y":0.12},{"x":1569234360000,"y":0.06},{"x":1569234420000,"y":0.2},{"x":1569234480000,"y":0.05},{"x":1569234540000,"y":0.07},{"x":1569234600000,"y":0.17},{"x":1569234660000,"y":0.12},{"x":1569234720000,"y":0.21},{"x":1569234780000,"y":0.08},{"x":1569234840000,"y":0.08},{"x":1569234900000,"y":0.19},{"x":1569234960000,"y":0.1},{"x":1569235020000,"y":0.24},{"x":1569235080000,"y":0.07},{"x":1569235140000,"y":0.19},{"x":1569235200000,"y":0.11},{"x":1569235260000,"y":0.06},{"x":1569235320000,"y":0.05},{"x":1569235380000,"y":0.24},{"x":1569235440000,"y":0.08},{"x":1569235500000,"y":0.13},{"x":1569235560000,"y":0.07},{"x":1569235620000,"y":0.09},{"x":1569235680000,"y":0.22},{"x":1569235740000,"y":0.08},{"x":1569235800000,"y":0.1},{"x":1569235860000,"y":0.1},{"x":1569235920000,"y":0.07},{"x":1569235980000,"y":0.23},{"x":1569236040000,"y":0.08},{"x":1569236100000,"y":0.12},{"x":1569236160000,"y":0.07},{"x":1569236220000,"y":0.07},{"x":1569236280000,"y":0.2},{"x":1569236340000,"y":0.07},{"x":1569236400000,"y":0.12},{"x":1569236460000,"y":0.08},{"x":1569236520000,"y":0.05},{"x":1569236580000,"y":0.19},{"x":1569236640000,"y":0.07},{"x":1569236700000,"y":0.13},{"x":1569236760000,"y":0.05},{"x":1569236820000,"y":0.09},{"x":1569236880000,"y":0.19},{"x":1569236940000,"y":0.15},{"x":1569237000000,"y":0.13},{"x":1569237060000,"y":0.99},{"x":1569237120000,"y":0.08},{"x":1569237180000,"y":3.14},{"x":1569237240000,"y":0.15},{"x":1569237300000,"y":0.15},{"x":1569237360000,"y":0.09},{"x":1569237420000,"y":0.08},{"x":1569237480000,"y":0.08},{"x":1569237540000,"y":0.3},{"x":1569237600000,"y":0.14},{"x":1569237660000,"y":0.07},{"x":1569237720000,"y":0.08},{"x":1569237780000,"y":0.19},{"x":1569237840000,"y":0.23},{"x":1569237900000,"y":1.33},{"x":1569237960000,"y":0.06},{"x":1569238020000,"y":0.06},{"x":1569238080000,"y":0.07},{"x":1569238140000,"y":0.2},{"x":1569238200000,"y":0.12},{"x":1569238260000,"y":0.06},{"x":1569238320000,"y":0.07},{"x":1569238380000,"y":0.08},{"x":1569238440000,"y":0.19},{"x":1569238500000,"y":0.12},{"x":1569238560000,"y":0.1},{"x":1569238620000,"y":0.09},{"x":1569238680000,"y":0.09},{"x":1569238740000,"y":0.33},{"x":1569238800000,"y":0.16},{"x":1569238860000,"y":0.07},{"x":1569238920000,"y":0.09},{"x":1569238980000,"y":0.07},{"x":1569239040000,"y":0.21},{"x":1569239100000,"y":0.13},{"x":1569239160000,"y":0.09},{"x":1569239220000,"y":0.07},{"x":1569239280000,"y":0.08},{"x":1569239340000,"y":0.21},{"x":1569239400000,"y":0.16},{"x":1569239460000,"y":0.07},{"x":1569239520000,"y":0.08},{"x":1569239580000,"y":0.09},{"x":1569239640000,"y":0.07},{"x":1569239700000,"y":0.3},{"x":1569239760000,"y":0.06},{"x":1569239820000,"y":0.06},{"x":1569239880000,"y":0.07},{"x":1569239940000,"y":0.06},{"x":1569240000000,"y":0.35},{"x":1569240060000,"y":0.07},{"x":1569240120000,"y":0.08},{"x":1569240180000,"y":0.08},{"x":1569240240000,"y":0.06},{"x":1569240300000,"y":0.26},{"x":1569240360000,"y":0.05},{"x":1569240420000,"y":0.07},{"x":1569240480000,"y":0.08},{"x":1569240540000,"y":0.2},{"x":1569240600000,"y":0.27},{"x":1569240660000,"y":0.08},{"x":1569240720000,"y":0.06},{"x":1569240780000,"y":0.08},{"x":1569240840000,"y":0.05},{"x":1569240900000,"y":0.29},{"x":1569240960000,"y":0.06},{"x":1569241020000,"y":0.09},{"x":1569241080000,"y":0.06},{"x":1569241140000,"y":0.07},{"x":1569241200000,"y":0.24},{"x":1569241260000,"y":0.07},{"x":1569241320000,"y":0.09},{"x":1569241380000,"y":0.08},{"x":1569241440000,"y":0.09},{"x":1569241500000,"y":0.3},{"x":1569241560000,"y":0.08},{"x":1569241620000,"y":0.07},{"x":1569241680000,"y":0.08},{"x":1569241740000,"y":0.09},{"x":1569241800000,"y":0.28},{"x":1569241860000,"y":0.08},{"x":1569241920000,"y":0.09},{"x":1569241980000,"y":0.09},{"x":1569242040000,"y":0.05},{"x":1569242100000,"y":0.2},{"x":1569242160000,"y":0.21},{"x":1569242220000,"y":1.37},{"x":1569242280000,"y":0.08},{"x":1569242340000,"y":0.18},{"x":1569242400000,"y":0.13},{"x":1569242460000,"y":0.24},{"x":1569242520000,"y":0.08},{"x":1569242580000,"y":0.07},{"x":1569242640000,"y":0.09},{"x":1569242700000,"y":0.18},{"x":1569242760000,"y":0.23},{"x":1569242820000,"y":0.07},{"x":1569242880000,"y":0.07},{"x":1569242940000,"y":0.1},{"x":1569243000000,"y":0.11},{"x":1569243060000,"y":0.22},{"x":1569243120000,"y":0.09},{"x":1569243180000,"y":0.1},{"x":1569243240000,"y":0.08},{"x":1569243300000,"y":0.18},{"x":1569243360000,"y":0.23},{"x":1569243420000,"y":0.1},{"x":1569243480000,"y":0.09},{"x":1569243540000,"y":0.09},{"x":1569243600000,"y":0.19},{"x":1569243660000,"y":0.25},{"x":1569243720000,"y":0.09},{"x":1569243780000,"y":0.07},{"x":1569243840000,"y":0.1},{"x":1569243900000,"y":0.14},{"x":1569243960000,"y":0.2},{"x":1569244020000,"y":0.07},{"x":1569244080000,"y":0.11},{"x":1569244140000,"y":0.15},{"x":1569244200000,"y":0.17},{"x":1569244260000,"y":0.07},{"x":1569244320000,"y":0.21},{"x":1569244380000,"y":0.07},{"x":1569244440000,"y":0.07},{"x":1569244500000,"y":0.15},{"x":1569244560000,"y":0.08},{"x":1569244620000,"y":0.23},{"x":1569244680000,"y":0.08},{"x":1569244740000,"y":0.08},{"x":1569244800000,"y":0.15},{"x":1569244860000,"y":0.08},{"x":1569244920000,"y":0.25},{"x":1569244980000,"y":0.08},{"x":1569245040000,"y":0.09},{"x":1569245100000,"y":0.16},{"x":1569245160000,"y":0.08},{"x":1569245220000,"y":0.22},{"x":1569245280000,"y":0.08},{"x":1569245340000,"y":0.07},{"x":1569245400000,"y":0.16},{"x":1569245460000,"y":0.09},{"x":1569245520000,"y":0.22},{"x":1569245580000,"y":0.07},{"x":1569245640000,"y":0.07},{"x":1569245700000,"y":0.1},{"x":1569245760000,"y":0.07},{"x":1569245820000,"y":0.23},{"x":1569245880000,"y":0.4},{"x":1569245940000,"y":0.12},{"x":1569246000000,"y":0.14},{"x":1569246060000,"y":0.08},{"x":1569246120000,"y":0.24},{"x":1569246180000,"y":0.06},{"x":1569246240000,"y":0.11},{"x":1569246300000,"y":0.1},{"x":1569246360000,"y":0.08},{"x":1569246420000,"y":0.08},{"x":1569246480000,"y":0.24},{"x":1569246540000,"y":0.09},{"x":1569246600000,"y":0.14},{"x":1569246660000,"y":0.09},{"x":1569246720000,"y":0.09},{"x":1569246780000,"y":0.28},{"x":1569246840000,"y":0.1},{"x":1569246900000,"y":0.13},{"x":1569246960000,"y":0.1},{"x":1569247020000,"y":0.07},{"x":1569247080000,"y":0.21},{"x":1569247140000,"y":0.08},{"x":1569247200000,"y":0.19},{"x":1569247260000,"y":0.13},{"x":1569247320000,"y":0.1},{"x":1569247380000,"y":0.22},{"x":1569247440000,"y":0.09},{"x":1569247500000,"y":0.18},{"x":1569247560000,"y":0.08},{"x":1569247620000,"y":0.1},{"x":1569247680000,"y":0.23},{"x":1569247740000,"y":0.23},{"x":1569247800000,"y":0.17},{"x":1569247860000,"y":0.08},{"x":1569247920000,"y":0.1},{"x":1569247980000,"y":0.22},{"x":1569248040000,"y":0.07},{"x":1569248100000,"y":0.21},{"x":1569248160000,"y":0.07},{"x":1569248220000,"y":0.07},{"x":1569248280000,"y":0.37},{"x":1569248340000,"y":0.1},{"x":1569248400000,"y":0.11},{"x":1569248460000,"y":0.07},{"x":1569248520000,"y":0.07},{"x":1569248580000,"y":0.06},{"x":1569248640000,"y":0.21},{"x":1569248700000,"y":0.14},{"x":1569248760000,"y":0.09},{"x":1569248820000,"y":0.06},{"x":1569248880000,"y":0.07},{"x":1569248940000,"y":0.19},{"x":1569249000000,"y":0.11},{"x":1569249060000,"y":0.07},{"x":1569249120000,"y":0.08},{"x":1569249180000,"y":0.05},{"x":1569249240000,"y":0.22},{"x":1569249300000,"y":0.09},{"x":1569249360000,"y":0.08},{"x":1569249420000,"y":0.07},{"x":1569249480000,"y":0.07},{"x":1569249540000,"y":0.35},{"x":1569249600000,"y":0.12},{"x":1569249660000,"y":0.08},{"x":1569249720000,"y":0.1},{"x":1569249780000,"y":0.08},{"x":1569249840000,"y":0.22},{"x":1569249900000,"y":0.17},{"x":1569249960000,"y":0.08},{"x":1569250020000,"y":0.12},{"x":1569250080000,"y":0.08},{"x":1569250140000,"y":0.21},{"x":1569250200000,"y":0.18},{"x":1569250260000,"y":0.09},{"x":1569250320000,"y":0.08},{"x":1569250380000,"y":0.1},{"x":1569250440000,"y":0.2},{"x":1569250500000,"y":0.2},{"x":1569250560000,"y":0.1},{"x":1569250620000,"y":0.08},{"x":1569250680000,"y":0.08},{"x":1569250740000,"y":0.09},{"x":1569250800000,"y":0.48},{"x":1569250860000,"y":0.07},{"x":1569250920000,"y":0.1},{"x":1569250980000,"y":0.13},{"x":1569251040000,"y":0.12},{"x":1569251100000,"y":0.32},{"x":1569251160000,"y":0.08},{"x":1569251220000,"y":0.11},{"x":1569251280000,"y":0.12},{"x":1569251340000,"y":0.2},{"x":1569251400000,"y":0.31},{"x":1569251460000,"y":0.08},{"x":1569251520000,"y":0.14},{"x":1569251580000,"y":0.13},{"x":1569251640000,"y":20.19},{"x":1569251700000,"y":21.08},{"x":1569251760000,"y":0.33},{"x":1569251820000,"y":0.18},{"x":1569251880000,"y":0.16},{"x":1569251940000,"y":0.12},{"x":1569252000000,"y":0.31},{"x":1569252060000,"y":0.18},{"x":1569252120000,"y":0.17},{"x":1569252180000,"y":0.12},{"x":1569252240000,"y":0.15},{"x":1569252300000,"y":0.3},{"x":1569252360000,"y":0.16},{"x":1569252420000,"y":0.12},{"x":1569252480000,"y":0.13},{"x":1569252540000,"y":0.16},{"x":1569252600000,"y":0.22},{"x":1569252660000,"y":0.27},{"x":1569252720000,"y":0.23},{"x":1569252780000,"y":0.17},{"x":1569252840000,"y":0.15},{"x":1569252900000,"y":0.19},{"x":1569252960000,"y":0.35},{"x":1569253020000,"y":0.15},{"x":1569253080000,"y":0.15},{"x":1569253140000,"y":0.25},{"x":1569253200000,"y":0.2},{"x":1569253260000,"y":0.27},{"x":1569253320000,"y":0.16},{"x":1569253380000,"y":0.15},{"x":1569253440000,"y":0.17},{"x":1569253500000,"y":0.22},{"x":1569253560000,"y":0.31},{"x":1569253620000,"y":0.17},{"x":1569253680000,"y":0.14},{"x":1569253740000,"y":0.15},{"x":1569253800000,"y":0.2},{"x":1569253860000,"y":0.29},{"x":1569253920000,"y":0.13},{"x":1569253980000,"y":0.17},{"x":1569254040000,"y":0.15},{"x":1569254100000,"y":0.24},{"x":1569254160000,"y":0.28},{"x":1569254220000,"y":0.14},{"x":1569254280000,"y":0.14},{"x":1569254340000,"y":0.18},{"x":1569254400000,"y":0.25},{"x":1569254460000,"y":0.28},{"x":1569254520000,"y":0.15},{"x":1569254580000,"y":0.15},{"x":1569254640000,"y":0.15},{"x":1569254700000,"y":0.21},{"x":1569254760000,"y":0.15},{"x":1569254820000,"y":0.28},{"x":1569254880000,"y":0.15},{"x":1569254940000,"y":0.24},{"x":1569255000000,"y":0.21},{"x":1569255060000,"y":0.17},{"x":1569255120000,"y":0.31},{"x":1569255180000,"y":0.15},{"x":1569255240000,"y":0.14},{"x":1569255300000,"y":0.21},{"x":1569255360000,"y":0.15},{"x":1569255420000,"y":0.27},{"x":1569255480000,"y":0.15},{"x":1569255540000,"y":0.15},{"x":1569255600000,"y":0.4},{"x":1569255660000,"y":0.15},{"x":1569255720000,"y":0.3},{"x":1569255780000,"y":0.14},{"x":1569255840000,"y":0.16},{"x":1569255900000,"y":0.19},{"x":1569255960000,"y":0.14},{"x":1569256020000,"y":0.29},{"x":1569256080000,"y":0.19},{"x":1569256140000,"y":0.17},{"x":1569256200000,"y":0.22},{"x":1569256260000,"y":0.14},{"x":1569256320000,"y":0.3},{"x":1569256380000,"y":0.16},{"x":1569256440000,"y":0.14},{"x":1569256500000,"y":0.2},{"x":1569256560000,"y":0.16},{"x":1569256620000,"y":0.3},{"x":1569256680000,"y":3.47},{"x":1569256740000,"y":0.27},{"x":1569256800000,"y":0.21},{"x":1569256860000,"y":0.15},{"x":1569256920000,"y":0.14},{"x":1569256980000,"y":0.31},{"x":1569257040000,"y":0.16},{"x":1569257100000,"y":0.24},{"x":1569257160000,"y":0.13},{"x":1569257220000,"y":0.17},{"x":1569257280000,"y":0.29},{"x":1569257340000,"y":0.15},{"x":1569257400000,"y":0.25},{"x":1569257460000,"y":0.17},{"x":1569257520000,"y":0.13},{"x":1569257580000,"y":0.33},{"x":1569257640000,"y":0.18},{"x":1569257700000,"y":0.18},{"x":1569257760000,"y":0.15},{"x":1569257820000,"y":0.15},{"x":1569257880000,"y":0.3},{"x":1569257940000,"y":0.15},{"x":1569258000000,"y":0.38},{"x":1569258060000,"y":0.52},{"x":1569258120000,"y":0.62},{"x":1569258180000,"y":0.87},{"x":1569258240000,"y":0.45},{"x":1569258300000,"y":0.24},{"x":1569258360000,"y":0.16},{"x":1569258420000,"y":0.18},{"x":1569258480000,"y":0.32},{"x":1569258540000,"y":0.29},{"x":1569258600000,"y":0.22},{"x":1569258660000,"y":0.16},{"x":1569258720000,"y":0.22},{"x":1569258780000,"y":0.29},{"x":1569258840000,"y":0.33},{"x":1569258900000,"y":42.15},{"x":1569258960000,"y":0.33},{"x":1569259020000,"y":0.15},{"x":1569259080000,"y":0.15},{"x":1569259140000,"y":6.26},{"x":1569259200000,"y":0.21},{"x":1569259260000,"y":0.16},{"x":1569259320000,"y":0.15},{"x":1569259380000,"y":0.15},{"x":1569259440000,"y":0.31},{"x":1569259500000,"y":0.25},{"x":1569259560000,"y":0.14},{"x":1569259620000,"y":0.16},{"x":1569259680000,"y":0.14},{"x":1569259740000,"y":0.3},{"x":1569259800000,"y":0.21},{"x":1569259860000,"y":0.13},{"x":1569259920000,"y":0.14},{"x":1569259980000,"y":0.17},{"x":1569260040000,"y":0.28},{"x":1569260100000,"y":0.22},{"x":1569260160000,"y":0.17},{"x":1569260220000,"y":0.16},{"x":1569260280000,"y":0.14},{"x":1569260340000,"y":0.33},{"x":1569260400000,"y":0.25},{"x":1569260460000,"y":0.13},{"x":1569260520000,"y":0.17},{"x":1569260580000,"y":0.15},{"x":1569260640000,"y":0.28},{"x":1569260700000,"y":0.2},{"x":1569260760000,"y":0.18},{"x":1569260820000,"y":0.15},{"x":1569260880000,"y":0.15},{"x":1569260940000,"y":0.29},{"x":1569261000000,"y":0.19},{"x":1569261060000,"y":0.15},{"x":1569261120000,"y":0.16},{"x":1569261180000,"y":0.22},{"x":1569261240000,"y":0.3},{"x":1569261300000,"y":0.18},{"x":1569261360000,"y":0.15},{"x":1569261420000,"y":0.15},{"x":1569261480000,"y":0.15},{"x":1569261540000,"y":0.16},{"x":1569261600000,"y":0.35},{"x":1569261660000,"y":0.33},{"x":1569261720000,"y":0.09},{"x":1569261780000,"y":0.15},{"x":1569261840000,"y":0.08},{"x":1569261900000,"y":0.28},{"x":1569261960000,"y":0.07},{"x":1569262020000,"y":0.06},{"x":1569262080000,"y":0.08},{"x":1569262140000,"y":0.15},{"x":1569262200000,"y":0.29},{"x":1569262260000,"y":0.07},{"x":1569262320000,"y":0.1},{"x":1569262380000,"y":0.06},{"x":1569262440000,"y":0.09},{"x":1569262500000,"y":0.34},{"x":1569262560000,"y":0.06},{"x":1569262620000,"y":0.07},{"x":1569262680000,"y":0.07},{"x":1569262740000,"y":0.06},{"x":1569262800000,"y":0.25},{"x":1569262860000,"y":0.13},{"x":1569262920000,"y":0.07},{"x":1569262980000,"y":0.06},{"x":1569263040000,"y":0.06},{"x":1569263100000,"y":0.3},{"x":1569263160000,"y":0.05},{"x":1569263220000,"y":0.07},{"x":1569263280000,"y":0.06},{"x":1569263340000,"y":0.06},{"x":1569263400000,"y":0.32},{"x":1569263460000,"y":0.07},{"x":1569263520000,"y":0.09},{"x":1569263580000,"y":0.05},{"x":1569263640000,"y":0.05},{"x":1569263700000,"y":0.24},{"x":1569263760000,"y":0.06},{"x":1569263820000,"y":0.06},{"x":1569263880000,"y":0.07},{"x":1569263940000,"y":0.1},{"x":1569264000000,"y":0.12},{"x":1569264060000,"y":0.21},{"x":1569264120000,"y":0.08},{"x":1569264180000,"y":0.05},{"x":1569264240000,"y":0.05},{"x":1569264300000,"y":0.09},{"x":1569264360000,"y":0.2},{"x":1569264420000,"y":0.07},{"x":1569264480000,"y":0.08},{"x":1569264540000,"y":0.09},{"x":1569264600000,"y":0.17},{"x":1569264660000,"y":0.22},{"x":1569264720000,"y":0.07},{"x":1569264780000,"y":0.1},{"x":1569264840000,"y":0.05},{"x":1569264900000,"y":0.12},{"x":1569264960000,"y":0.22},{"x":1569265020000,"y":0.08},{"x":1569265080000,"y":0.09},{"x":1569265140000,"y":0.07},{"x":1569265200000,"y":0.21},{"x":1569265260000,"y":0.22},{"x":1569265320000,"y":0.07},{"x":1569265380000,"y":0.07},{"x":1569265440000,"y":0.08},{"x":1569265500000,"y":0.1},{"x":1569265560000,"y":0.21},{"x":1569265620000,"y":0.05},{"x":1569265680000,"y":0.06},{"x":1569265740000,"y":0.12},{"x":1569265800000,"y":0.12},{"x":1569265860000,"y":0.18},{"x":1569265920000,"y":0.07},{"x":1569265980000,"y":0.07},{"x":1569266040000,"y":0.09},{"x":1569266100000,"y":0.17},{"x":1569266160000,"y":0.06},{"x":1569266220000,"y":0.19},{"x":1569266280000,"y":0.07},{"x":1569266340000,"y":0.06},{"x":1569266400000,"y":0.1},{"x":1569266460000,"y":0.1},{"x":1569266520000,"y":0.2},{"x":1569266580000,"y":0.07},{"x":1569266640000,"y":0.09},{"x":1569266700000,"y":0.11},{"x":1569266760000,"y":0.06},{"x":1569266820000,"y":0.19},{"x":1569266880000,"y":0.08},{"x":1569266940000,"y":0.05},{"x":1569267000000,"y":0.1},{"x":1569267060000,"y":0.06},{"x":1569267120000,"y":0.22},{"x":1569267180000,"y":0.09},{"x":1569267240000,"y":0.04},{"x":1569267300000,"y":0.14},{"x":1569267360000,"y":0.07},{"x":1569267420000,"y":0.23},{"x":1569267480000,"y":0.08},{"x":1569267540000,"y":0.13},{"x":1569267600000,"y":0.14},{"x":1569267660000,"y":0.07},{"x":1569267720000,"y":0.24},{"x":1569267780000,"y":0.11},{"x":1569267840000,"y":0.07},{"x":1569267900000,"y":0.15},{"x":1569267960000,"y":0.07},{"x":1569268020000,"y":0.17},{"x":1569268080000,"y":0.16},{"x":1569268140000,"y":0.08},{"x":1569268200000,"y":0.18},{"x":1569268260000,"y":0.08},{"x":1569268320000,"y":0.07},{"x":1569268380000,"y":0.22},{"x":1569268440000,"y":0.06},{"x":1569268500000,"y":0.14},{"x":1569268560000,"y":0.08},{"x":1569268620000,"y":0.07},{"x":1569268680000,"y":0.2},{"x":1569268740000,"y":0.08},{"x":1569268800000,"y":0.16},{"x":1569268860000,"y":0.07},{"x":1569268920000,"y":0.07},{"x":1569268980000,"y":0.23},{"x":1569269040000,"y":0.07},{"x":1569269100000,"y":0.17},{"x":1569269160000,"y":0.08},{"x":1569269220000,"y":0.09},{"x":1569269280000,"y":0.21},{"x":1569269340000,"y":0.15},{"x":1569269400000,"y":0.12},{"x":1569269460000,"y":0.06},{"x":1569269520000,"y":0.06},{"x":1569269580000,"y":0.19},{"x":1569269640000,"y":0.07},{"x":1569269700000,"y":0.14},{"x":1569269760000,"y":0.06},{"x":1569269820000,"y":0.08},{"x":1569269880000,"y":0.2},{"x":1569269940000,"y":0.06},{"x":1569270000000,"y":0.15},{"x":1569270060000,"y":0.07},{"x":1569270120000,"y":0.07},{"x":1569270180000,"y":0.08},{"x":1569270240000,"y":0.22},{"x":1569270300000,"y":0.12},{"x":1569270360000,"y":0.07},{"x":1569270420000,"y":0.07},{"x":1569270480000,"y":0.37},{"x":1569270540000,"y":0.22},{"x":1569270600000,"y":0.12},{"x":1569270660000,"y":0.05},{"x":1569270720000,"y":0.13},{"x":1569270780000,"y":0.06},{"x":1569270840000,"y":0.22},{"x":1569270900000,"y":0.2},{"x":1569270960000,"y":0.09},{"x":1569271020000,"y":0.1},{"x":1569271080000,"y":0.08},{"x":1569271140000,"y":0.31},{"x":1569271200000,"y":0.14},{"x":1569271260000,"y":0.07},{"x":1569271320000,"y":0.05},{"x":1569271380000,"y":0.05},{"x":1569271440000,"y":0.21},{"x":1569271500000,"y":0.12},{"x":1569271560000,"y":0.07},{"x":1569271620000,"y":0.08},{"x":1569271680000,"y":0.09},{"x":1569271740000,"y":0.23},{"x":1569271800000,"y":0.19},{"x":1569271860000,"y":0.07},{"x":1569271920000,"y":0.05},{"x":1569271980000,"y":0.07},{"x":1569272040000,"y":0.19},{"x":1569272100000,"y":0.11},{"x":1569272160000,"y":0.06},{"x":1569272220000,"y":0.06},{"x":1569272280000,"y":0.05},{"x":1569272340000,"y":0.2},{"x":1569272400000,"y":0.17},{"x":1569272460000,"y":0.06},{"x":1569272520000,"y":0.06},{"x":1569272580000,"y":0.08},{"x":1569272640000,"y":0.05},{"x":1569272700000,"y":3.54},{"x":1569272760000,"y":0.07},{"x":1569272820000,"y":0.08},{"x":1569272880000,"y":0.07},{"x":1569272940000,"y":0.13},{"x":1569273000000,"y":0.32},{"x":1569273060000,"y":0.06},{"x":1569273120000,"y":0.07},{"x":1569273180000,"y":0.07},{"x":1569273240000,"y":0.07},{"x":1569273300000,"y":0.3},{"x":1569273360000,"y":0.08},{"x":1569273420000,"y":0.08},{"x":1569273480000,"y":0.07},{"x":1569273540000,"y":0.08},{"x":1569273600000,"y":0.3},{"x":1569273660000,"y":2.06},{"x":1569273720000,"y":0.07},{"x":1569273780000,"y":0.07},{"x":1569273840000,"y":0.06},{"x":1569273900000,"y":0.29},{"x":1569273960000,"y":0.09},{"x":1569274020000,"y":0.07},{"x":1569274080000,"y":0.07},{"x":1569274140000,"y":0.08},{"x":1569274200000,"y":0.29},{"x":1569274260000,"y":0.08},{"x":1569274320000,"y":0.07},{"x":1569274380000,"y":0.06},{"x":1569274440000,"y":0.07},{"x":1569274500000,"y":0.27},{"x":1569274560000,"y":0.07},{"x":1569274620000,"y":0.06},{"x":1569274680000,"y":0.05},{"x":1569274740000,"y":0.12},{"x":1569274800000,"y":0.12},{"x":1569274860000,"y":0.22},{"x":1569274920000,"y":0.08},{"x":1569274980000,"y":0.06},{"x":1569275040000,"y":0.08},{"x":1569275100000,"y":0.15},{"x":1569275160000,"y":0.2},{"x":1569275220000,"y":0.07},{"x":1569275280000,"y":0.08},{"x":1569275340000,"y":0.06},{"x":1569275400000,"y":0.14},{"x":1569275460000,"y":0.21},{"x":1569275520000,"y":0.08},{"x":1569275580000,"y":0.1},{"x":1569275640000,"y":0.07},{"x":1569275700000,"y":0.12},{"x":1569275760000,"y":0.25},{"x":1569275820000,"y":0.07},{"x":1569275880000,"y":0.05},{"x":1569275940000,"y":0.09},{"x":1569276000000,"y":0.19},{"x":1569276060000,"y":0.22},{"x":1569276120000,"y":0.08},{"x":1569276180000,"y":0.1},{"x":1569276240000,"y":0.07},{"x":1569276300000,"y":0.15},{"x":1569276360000,"y":0.23},{"x":1569276420000,"y":0.08},{"x":1569276480000,"y":0.07},{"x":1569276540000,"y":0.27},{"x":1569276600000,"y":0.11},{"x":1569276660000,"y":0.22},{"x":1569276720000,"y":0.07},{"x":1569276780000,"y":0.1},{"x":1569276840000,"y":0.09},{"x":1569276900000,"y":0.19},{"x":1569276960000,"y":0.24},{"x":1569277020000,"y":0.09},{"x":1569277080000,"y":0.07},{"x":1569277140000,"y":0.07},{"x":1569277200000,"y":0.25},{"x":1569277260000,"y":0.16},{"x":1569277320000,"y":0.23},{"x":1569277380000,"y":0.06},{"x":1569277440000,"y":0.07},{"x":1569277500000,"y":0.17},{"x":1569277560000,"y":0.07},{"x":1569277620000,"y":0.23},{"x":1569277680000,"y":2.67},{"x":1569277740000,"y":0.14},{"x":1569277800000,"y":0.11},{"x":1569277860000,"y":0.07},{"x":1569277920000,"y":0.21},{"x":1569277980000,"y":0.07},{"x":1569278040000,"y":0.08},{"x":1569278100000,"y":0.14},{"x":1569278160000,"y":0.07},{"x":1569278220000,"y":0.26},{"x":1569278280000,"y":0.06},{"x":1569278340000,"y":0.23},{"x":1569278400000,"y":0.14},{"x":1569278460000,"y":0.46},{"x":1569278520000,"y":0.21},{"x":1569278580000,"y":0.07},{"x":1569278640000,"y":0.07},{"x":1569278700000,"y":0.13},{"x":1569278760000,"y":0.08},{"x":1569278820000,"y":0.22},{"x":1569278880000,"y":0.07},{"x":1569278940000,"y":0.07},{"x":1569279000000,"y":0.22},{"x":1569279060000,"y":0.06},{"x":1569279120000,"y":0.23},{"x":1569279180000,"y":0.09},{"x":1569279240000,"y":0.07},{"x":1569279300000,"y":0.12},{"x":1569279360000,"y":0.07},{"x":1569279420000,"y":0.21},{"x":1569279480000,"y":0.06},{"x":1569279540000,"y":0.05},{"x":1569279600000,"y":0.23},{"x":1569279660000,"y":0.07},{"x":1569279720000,"y":0.07},{"x":1569279780000,"y":0.2},{"x":1569279840000,"y":0.07},{"x":1569279900000,"y":0.11},{"x":1569279960000,"y":0.07},{"x":1569280020000,"y":0.06},{"x":1569280080000,"y":0.25},{"x":1569280140000,"y":0.15},{"x":1569280200000,"y":0.12},{"x":1569280260000,"y":0.07},{"x":1569280320000,"y":0.06},{"x":1569280380000,"y":0.21},{"x":1569280440000,"y":0.05},{"x":1569280500000,"y":0.12},{"x":1569280560000,"y":0.08},{"x":1569280620000,"y":0.08},{"x":1569280680000,"y":0.24},{"x":1569280740000,"y":0.07},{"x":1569280800000,"y":0.19},{"x":1569280860000,"y":0.07},{"x":1569280920000,"y":0.06},{"x":1569280980000,"y":3.52},{"x":1569281040000,"y":0.06},{"x":1569281100000,"y":0.12},{"x":1569281160000,"y":0.06},{"x":1569281220000,"y":0.07},{"x":1569281280000,"y":0.24},{"x":1569281340000,"y":0.06},{"x":1569281400000,"y":0.14},{"x":1569281460000,"y":0.06},{"x":1569281520000,"y":0.08},{"x":1569281580000,"y":0.19},{"x":1569281640000,"y":0.08},{"x":1569281700000,"y":0.17},{"x":1569281760000,"y":0.08},{"x":1569281820000,"y":0.06},{"x":1569281880000,"y":0.08},{"x":1569281940000,"y":0.36},{"x":1569282000000,"y":0.16},{"x":1569282060000,"y":0.08},{"x":1569282120000,"y":0.06},{"x":1569282180000,"y":0.07},{"x":1569282240000,"y":0.22},{"x":1569282300000,"y":0.18},{"x":1569282360000,"y":0.07},{"x":1569282420000,"y":0.09},{"x":1569282480000,"y":0.09},{"x":1569282540000,"y":0.18},{"x":1569282600000,"y":0.12},{"x":1569282660000,"y":0.07},{"x":1569282720000,"y":0.1},{"x":1569282780000,"y":0.07},{"x":1569282840000,"y":0.2},{"x":1569282900000,"y":0.14},{"x":1569282960000,"y":0.08},{"x":1569283020000,"y":0.04},{"x":1569283080000,"y":0.06},{"x":1569283140000,"y":0.22},{"x":1569283200000,"y":0.18},{"x":1569283260000,"y":0.05},{"x":1569283320000,"y":0.08},{"x":1569283380000,"y":0.04},{"x":1569283440000,"y":0.22},{"x":1569283500000,"y":0.08},{"x":1569283560000,"y":0.07},{"x":1569283620000,"y":0.05},{"x":1569283680000,"y":0.09},{"x":1569283740000,"y":0.32},{"x":1569283800000,"y":0.22},{"x":1569283860000,"y":0.08},{"x":1569283920000,"y":0.1},{"x":1569283980000,"y":0.11},{"x":1569284040000,"y":0.1},{"x":1569284100000,"y":0.32},{"x":1569284160000,"y":0.05},{"x":1569284220000,"y":0.1},{"x":1569284280000,"y":0.11},{"x":1569284340000,"y":0.07},{"x":1569284400000,"y":0.31},{"x":1569284460000,"y":0.12},{"x":1569284520000,"y":0.11},{"x":1569284580000,"y":0.09},{"x":1569284640000,"y":0.15},{"x":1569284700000,"y":0.27},{"x":1569284760000,"y":0.08},{"x":1569284820000,"y":0.15},{"x":1569284880000,"y":0.09},{"x":1569284940000,"y":0.1},{"x":1569285000000,"y":0.3},{"x":1569285060000,"y":0.1},{"x":1569285120000,"y":0.14},{"x":1569285180000,"y":0.15},{"x":1569285240000,"y":0.14},{"x":1569285300000,"y":0.31},{"x":1569285360000,"y":0.12},{"x":1569285420000,"y":0.17},{"x":1569285480000,"y":0.11},{"x":1569285540000,"y":0.23},{"x":1569285600000,"y":0.34},{"x":1569285660000,"y":0.12},{"x":1569285720000,"y":0.11},{"x":1569285780000,"y":0.14},{"x":1569285840000,"y":0.14},{"x":1569285900000,"y":0.17},{"x":1569285960000,"y":0.31},{"x":1569286020000,"y":0.13},{"x":1569286080000,"y":0.13},{"x":1569286140000,"y":0.13},{"x":1569286200000,"y":0.22},{"x":1569286260000,"y":0.28},{"x":1569286320000,"y":0.15},{"x":1569286380000,"y":0.14},{"x":1569286440000,"y":0.17},{"x":1569286500000,"y":0.24},{"x":1569286560000,"y":0.31},{"x":1569286620000,"y":0.15},{"x":1569286680000,"y":0.16},{"x":1569286740000,"y":0.18},{"x":1569286800000,"y":0.2},{"x":1569286860000,"y":0.29},{"x":1569286920000,"y":0.15},{"x":1569286980000,"y":0.13},{"x":1569287040000,"y":0.17},{"x":1569287100000,"y":0.19},{"x":1569287160000,"y":0.33},{"x":1569287220000,"y":0.15},{"x":1569287280000,"y":0.17},{"x":1569287340000,"y":0.24},{"x":1569287400000,"y":0.22},{"x":1569287460000,"y":0.3},{"x":1569287520000,"y":0.12},{"x":1569287580000,"y":0.15},{"x":1569287640000,"y":0.15},{"x":1569287700000,"y":0.25},{"x":1569287760000,"y":0.35},{"x":1569287820000,"y":0.15},{"x":1569287880000,"y":0.15},{"x":1569287940000,"y":0.14},{"x":1569288000000,"y":0.2},{"x":1569288060000,"y":0.3},{"x":1569288120000,"y":0.2},{"x":1569288180000,"y":0.13},{"x":1569288240000,"y":0.15},{"x":1569288300000,"y":0.19},{"x":1569288360000,"y":0.14},{"x":1569288420000,"y":0.28},{"x":1569288480000,"y":0.13},{"x":1569288540000,"y":0.17},{"x":1569288600000,"y":0.2},{"x":1569288660000,"y":0.15},{"x":1569288720000,"y":0.26},{"x":1569288780000,"y":0.16},{"x":1569288840000,"y":0.15},{"x":1569288900000,"y":0.22},{"x":1569288960000,"y":0.19},{"x":1569289020000,"y":0.31},{"x":1569289080000,"y":0.17},{"x":1569289140000,"y":0.22},{"x":1569289200000,"y":0.22},{"x":1569289260000,"y":0.14},{"x":1569289320000,"y":0.29},{"x":1569289380000,"y":0.19},{"x":1569289440000,"y":0.18},{"x":1569289500000,"y":0.23},{"x":1569289560000,"y":0.15},{"x":1569289620000,"y":0.27},{"x":1569289680000,"y":0.16},{"x":1569289740000,"y":0.15},{"x":1569289800000,"y":0.21},{"x":1569289860000,"y":0.16},{"x":1569289920000,"y":0.3},{"x":1569289980000,"y":0.18},{"x":1569290040000,"y":0.19},{"x":1569290100000,"y":0.24},{"x":1569290160000,"y":0.15},{"x":1569290220000,"y":0.3},{"x":1569290280000,"y":0.15},{"x":1569290340000,"y":0.14},{"x":1569290400000,"y":0.28},{"x":1569290460000,"y":0.15},{"x":1569290520000,"y":0.16},{"x":1569290580000,"y":0.3},{"x":1569290640000,"y":0.15},{"x":1569290700000,"y":0.22},{"x":1569290760000,"y":0.14},{"x":1569290820000,"y":0.15},{"x":1569290880000,"y":0.3},{"x":1569290940000,"y":0.26},{"x":1569291000000,"y":0.22},{"x":1569291060000,"y":0.16},{"x":1569291120000,"y":0.15},{"x":1569291180000,"y":0.28},{"x":1569291240000,"y":0.15},{"x":1569291300000,"y":0.2},{"x":1569291360000,"y":0.19},{"x":1569291420000,"y":0.16},{"x":1569291480000,"y":0.3},{"x":1569291540000,"y":0.16},{"x":1569291600000,"y":0.2},{"x":1569291660000,"y":0.15},{"x":1569291720000,"y":0.14},{"x":1569291780000,"y":0.29},{"x":1569291840000,"y":0.15},{"x":1569291900000,"y":0.19},{"x":1569291960000,"y":0.15},{"x":1569292020000,"y":0.14},{"x":1569292080000,"y":0.27},{"x":1569292140000,"y":0.15},{"x":1569292200000,"y":0.22},{"x":1569292260000,"y":0.14},{"x":1569292320000,"y":0.15},{"x":1569292380000,"y":0.15},{"x":1569292440000,"y":0.29},{"x":1569292500000,"y":0.2},{"x":1569292560000,"y":0.14},{"x":1569292620000,"y":0.13},{"x":1569292680000,"y":0.15},{"x":1569292740000,"y":0.36},{"x":1569292800000,"y":0.25},{"x":1569292860000,"y":0.17},{"x":1569292920000,"y":0.16},{"x":1569292980000,"y":0.16},{"x":1569293040000,"y":0.28},{"x":1569293100000,"y":0.21},{"x":1569293160000,"y":0.16},{"x":1569293220000,"y":0.17},{"x":1569293280000,"y":0.14},{"x":1569293340000,"y":0.29},{"x":1569293400000,"y":0.23},{"x":1569293460000,"y":0.14},{"x":1569293520000,"y":0.14},{"x":1569293580000,"y":0.15},{"x":1569293640000,"y":0.32},{"x":1569293700000,"y":0.2},{"x":1569293760000,"y":0.13},{"x":1569293820000,"y":0.16},{"x":1569293880000,"y":0.15},{"x":1569293940000,"y":0.28},{"x":1569294000000,"y":0.27},{"x":1569294060000,"y":0.14},{"x":1569294120000,"y":0.15},{"x":1569294180000,"y":0.14},{"x":1569294240000,"y":0.27},{"x":1569294300000,"y":0.23},{"x":1569294360000,"y":0.14},{"x":1569294420000,"y":0.18},{"x":1569294480000,"y":0.17},{"x":1569294540000,"y":0.2},{"x":1569294600000,"y":0.37},{"x":1569294660000,"y":0.15},{"x":1569294720000,"y":0.14},{"x":1569294780000,"y":0.14},{"x":1569294840000,"y":0.14},{"x":1569294900000,"y":0.38},{"x":1569294960000,"y":0.15},{"x":1569295020000,"y":0.15},{"x":1569295080000,"y":0.11},{"x":1569295140000,"y":0.13},{"x":1569295200000,"y":0.36},{"x":1569295260000,"y":0.1},{"x":1569295320000,"y":0.1},{"x":1569295380000,"y":0.07},{"x":1569295440000,"y":1.66},{"x":1569295500000,"y":0.24},{"x":1569295560000,"y":0.07},{"x":1569295620000,"y":0.08},{"x":1569295680000,"y":0.05},{"x":1569295740000,"y":0.07},{"x":1569295800000,"y":0.3},{"x":1569295860000,"y":0.05},{"x":1569295920000,"y":0.06},{"x":1569295980000,"y":0.06},{"x":1569296040000,"y":0.05},{"x":1569296100000,"y":0.29},{"x":1569296160000,"y":0.09},{"x":1569296220000,"y":0.08},{"x":1569296280000,"y":0.07},{"x":1569296340000,"y":0.22},{"x":1569296400000,"y":0.3},{"x":1569296460000,"y":0.06},{"x":1569296520000,"y":0.09},{"x":1569296580000,"y":0.06},{"x":1569296640000,"y":0.1},{"x":1569296700000,"y":0.27},{"x":1569296760000,"y":0.06},{"x":1569296820000,"y":0.06},{"x":1569296880000,"y":0.08},{"x":1569296940000,"y":0.07},{"x":1569297000000,"y":0.1},{"x":1569297060000,"y":0.24},{"x":1569297120000,"y":0.08},{"x":1569297180000,"y":0.08},{"x":1569297240000,"y":0.1},{"x":1569297300000,"y":0.12},{"x":1569297360000,"y":0.18},{"x":1569297420000,"y":0.07},{"x":1569297480000,"y":0.07},{"x":1569297540000,"y":0.09},{"x":1569297600000,"y":0.15},{"x":1569297660000,"y":0.21},{"x":1569297720000,"y":0.07},{"x":1569297780000,"y":0.09},{"x":1569297840000,"y":0.07},{"x":1569297900000,"y":0.11},{"x":1569297960000,"y":0.19},{"x":1569298020000,"y":0.08},{"x":1569298080000,"y":0.05},{"x":1569298140000,"y":0.18},{"x":1569298200000,"y":0.12},{"x":1569298260000,"y":0.21},{"x":1569298320000,"y":0.05},{"x":1569298380000,"y":0.09},{"x":1569298440000,"y":0.06},{"x":1569298500000,"y":0.13},{"x":1569298560000,"y":0.19},{"x":1569298620000,"y":0.07},{"x":1569298680000,"y":0.07},{"x":1569298740000,"y":0.06},{"x":1569298800000,"y":0.13},{"x":1569298860000,"y":0.2},{"x":1569298920000,"y":0.07},{"x":1569298980000,"y":0.06},{"x":1569299040000,"y":0.08},{"x":1569299100000,"y":0.11},{"x":1569299160000,"y":0.06},{"x":1569299220000,"y":0.21},{"x":1569299280000,"y":0.07},{"x":1569299340000,"y":0.07},{"x":1569299400000,"y":0.13},{"x":1569299460000,"y":0.07},{"x":1569299520000,"y":0.21},{"x":1569299580000,"y":0.07},{"x":1569299640000,"y":0.05},{"x":1569299700000,"y":0.17},{"x":1569299760000,"y":0.08},{"x":1569299820000,"y":0.19},{"x":1569299880000,"y":0.05},{"x":1569299940000,"y":0.15},{"x":1569300000000,"y":0.08},{"x":1569300060000,"y":0.07},{"x":1569300120000,"y":0.2},{"x":1569300180000,"y":0.05},{"x":1569300240000,"y":1.9},{"x":1569300300000,"y":0.09},{"x":1569300360000,"y":0.07},{"x":1569300420000,"y":0.18},{"x":1569300480000,"y":0.08},{"x":1569300540000,"y":0.07},{"x":1569300600000,"y":0.1},{"x":1569300660000,"y":0.05},{"x":1569300720000,"y":0.18},{"x":1569300780000,"y":0.05},{"x":1569300840000,"y":0.07},{"x":1569300900000,"y":0.16},{"x":1569300960000,"y":0.07},{"x":1569301020000,"y":0.18},{"x":1569301080000,"y":0.1},{"x":1569301140000,"y":0.06},{"x":1569301200000,"y":0.62},{"x":1569301260000,"y":0.05},{"x":1569301320000,"y":0.08},{"x":1569301380000,"y":0.2},{"x":1569301440000,"y":0.1},{"x":1569301500000,"y":0.14},{"x":1569301560000,"y":0.09},{"x":1569301620000,"y":0.07},{"x":1569301680000,"y":0.23},{"x":1569301740000,"y":0.19},{"x":1569301800000,"y":0.14},{"x":1569301860000,"y":0.06},{"x":1569301920000,"y":0.05},{"x":1569301980000,"y":0.21},{"x":1569302040000,"y":0.05},{"x":1569302100000,"y":0.14},{"x":1569302160000,"y":0.07},{"x":1569302220000,"y":0.07},{"x":1569302280000,"y":0.21},{"x":1569302340000,"y":0.09},{"x":1569302400000,"y":0.11},{"x":1569302460000,"y":0.05},{"x":1569302520000,"y":0.05},{"x":1569302580000,"y":4.9},{"x":1569302640000,"y":0.15},{"x":1569302700000,"y":0.1},{"x":1569302760000,"y":0.05},{"x":1569302820000,"y":0.05},{"x":1569302880000,"y":0.17},{"x":1569302940000,"y":0.08},{"x":1569303000000,"y":0.13},{"x":1569303060000,"y":0.06},{"x":1569303120000,"y":0.05},{"x":1569303180000,"y":0.06},{"x":1569303240000,"y":0.22},{"x":1569303300000,"y":0.12},{"x":1569303360000,"y":0.06},{"x":1569303420000,"y":0.05},{"x":1569303480000,"y":0.07},{"x":1569303540000,"y":0.28},{"x":1569303600000,"y":0.12},{"x":1569303660000,"y":0.04},{"x":1569303720000,"y":0.07},{"x":1569303780000,"y":0.05},{"x":1569303840000,"y":0.21},{"x":1569303900000,"y":0.13},{"x":1569303960000,"y":0.04},{"x":1569304020000,"y":0.04},{"x":1569304080000,"y":0.06},{"x":1569304140000,"y":0.18},{"x":1569304200000,"y":0.13},{"x":1569304260000,"y":0.08},{"x":1569304320000,"y":0.05},{"x":1569304380000,"y":0.05},{"x":1569304440000,"y":0.21},{"x":1569304500000,"y":0.12},{"x":1569304560000,"y":0.05},{"x":1569304620000,"y":0.05},{"x":1569304680000,"y":0.05},{"x":1569304740000,"y":0.19},{"x":1569304800000,"y":0.17},{"x":1569304860000,"y":0.06},{"x":1569304920000,"y":0.07},{"x":1569304980000,"y":0.05},{"x":1569305040000,"y":0.04},{"x":1569305100000,"y":0.32},{"x":1569305160000,"y":0.06},{"x":1569305220000,"y":0.05},{"x":1569305280000,"y":0.06},{"x":1569305340000,"y":0.15},{"x":1569305400000,"y":0.21},{"x":1569305460000,"y":0.06},{"x":1569305520000,"y":0.06},{"x":1569305580000,"y":0.08},{"x":1569305640000,"y":0.08},{"x":1569305700000,"y":0.22},{"x":1569305760000,"y":0.06},{"x":1569305820000,"y":0.08},{"x":1569305880000,"y":0.09},{"x":1569305940000,"y":0.05},{"x":1569306000000,"y":0.25},{"x":1569306060000,"y":0.05},{"x":1569306120000,"y":0.07},{"x":1569306180000,"y":0.06},{"x":1569306240000,"y":0.05},{"x":1569306300000,"y":0.4},{"x":1569306360000,"y":0.07},{"x":1569306420000,"y":0.08},{"x":1569306480000,"y":0.07},{"x":1569306540000,"y":0.06},{"x":1569306600000,"y":0.2},{"x":1569306660000,"y":0.05},{"x":1569306720000,"y":0.07},{"x":1569306780000,"y":0.04},{"x":1569306840000,"y":0.05},{"x":1569306900000,"y":0.22},{"x":1569306960000,"y":0.1},{"x":1569307020000,"y":0.04},{"x":1569307080000,"y":0.05},{"x":1569307140000,"y":0.13},{"x":1569307200000,"y":0.11},{"x":1569307260000,"y":0.17},{"x":1569307320000,"y":0.05},{"x":1569307380000,"y":0.06},{"x":1569307440000,"y":0.05},{"x":1569307500000,"y":0.11},{"x":1569307560000,"y":0.2},{"x":1569307620000,"y":0.05},{"x":1569307680000,"y":0.05},{"x":1569307740000,"y":0.05},{"x":1569307800000,"y":0.13},{"x":1569307860000,"y":0.25},{"x":1569307920000,"y":0.05},{"x":1569307980000,"y":0.05},{"x":1569308040000,"y":3.85},{"x":1569308100000,"y":0.2},{"x":1569308160000,"y":0.22},{"x":1569308220000,"y":0.06},{"x":1569308280000,"y":0.05},{"x":1569308340000,"y":0.05},{"x":1569308400000,"y":0.18},{"x":1569308460000,"y":0.18},{"x":1569308520000,"y":0.05},{"x":1569308580000,"y":0.08},{"x":1569308640000,"y":0.05},{"x":1569308700000,"y":0.1},{"x":1569308760000,"y":0.19},{"x":1569308820000,"y":0.04},{"x":1569308880000,"y":0.08},{"x":1569308940000,"y":0.18},{"x":1569309000000,"y":0.12},{"x":1569309060000,"y":0.2},{"x":1569309120000,"y":0.07},{"x":1569309180000,"y":0.08},{"x":1569309240000,"y":0.08},{"x":1569309300000,"y":0.1},{"x":1569309360000,"y":0.2},{"x":1569309420000,"y":0.05},{"x":1569309480000,"y":0.1},{"x":1569309540000,"y":0.07},{"x":1569309600000,"y":0.1},{"x":1569309660000,"y":0.05},{"x":1569309720000,"y":0.18},{"x":1569309780000,"y":0.07},{"x":1569309840000,"y":0.09},{"x":1569309900000,"y":0.16},{"x":1569309960000,"y":0.07},{"x":1569310020000,"y":0.2},{"x":1569310080000,"y":0.11},{"x":1569310140000,"y":0.08},{"x":1569310200000,"y":0.13},{"x":1569310260000,"y":0.04},{"x":1569310320000,"y":0.2},{"x":1569310380000,"y":0.05},{"x":1569310440000,"y":0.07},{"x":1569310500000,"y":0.1},{"x":1569310560000,"y":0.05},{"x":1569310620000,"y":0.19},{"x":1569310680000,"y":0.08},{"x":1569310740000,"y":0.13},{"x":1569310800000,"y":0.14},{"x":1569310860000,"y":0.06},{"x":1569310920000,"y":0.2},{"x":1569310980000,"y":0.07},{"x":1569311040000,"y":0.11},{"x":1569311100000,"y":0.32},{"x":1569311160000,"y":0.06},{"x":1569311220000,"y":0.22},{"x":1569311280000,"y":0.12},{"x":1569311340000,"y":0.06},{"x":1569311400000,"y":0.08},{"x":1569311460000,"y":0.08},{"x":1569311520000,"y":0.06},{"x":1569311580000,"y":0.23},{"x":1569311640000,"y":0.09},{"x":1569311700000,"y":0.09},{"x":1569311760000,"y":0.04},{"x":1569311820000,"y":0.03},{"x":1569311880000,"y":0.24},{"x":1569311940000,"y":0.06},{"x":1569312000000,"y":0.17},{"x":1569312060000,"y":0.07},{"x":1569312120000,"y":0.08},{"x":1569312180000,"y":0.2},{"x":1569312240000,"y":0.06},{"x":1569312300000,"y":0.13},{"x":1569312360000,"y":0.07},{"x":1569312420000,"y":0.07},{"x":1569312480000,"y":0.19},{"x":1569312540000,"y":0.11},{"x":1569312600000,"y":0.12},{"x":1569312660000,"y":0.06},{"x":1569312720000,"y":0.1},{"x":1569312780000,"y":0.22},{"x":1569312840000,"y":0.07},{"x":1569312900000,"y":0.09},{"x":1569312960000,"y":0.07},{"x":1569313020000,"y":0.07},{"x":1569313080000,"y":0.2},{"x":1569313140000,"y":0.09},{"x":1569313200000,"y":0.11},{"x":1569313260000,"y":0.06},{"x":1569313320000,"y":0.06},{"x":1569313380000,"y":0.08},{"x":1569313440000,"y":0.2},{"x":1569313500000,"y":0.13},{"x":1569313560000,"y":0.91},{"x":1569313620000,"y":0.11},{"x":1569313680000,"y":0.09},{"x":1569313740000,"y":0.22},{"x":1569313800000,"y":0.21},{"x":1569313860000,"y":0.09},{"x":1569313920000,"y":0.05},{"x":1569313980000,"y":0.06},{"x":1569314040000,"y":0.24},{"x":1569314100000,"y":0.11},{"x":1569314160000,"y":0.05},{"x":1569314220000,"y":0.05},{"x":1569314280000,"y":0.06},{"x":1569314340000,"y":0.27},{"x":1569314400000,"y":0.15},{"x":1569314460000,"y":0.08},{"x":1569314520000,"y":0.07},{"x":1569314580000,"y":0.04},{"x":1569314640000,"y":0.21},{"x":1569314700000,"y":0.4},{"x":1569314760000,"y":0.06},{"x":1569314820000,"y":0.04},{"x":1569314880000,"y":0.07},{"x":1569314940000,"y":0.19},{"x":1569315000000,"y":0.09},{"x":1569315060000,"y":0.05},{"x":1569315120000,"y":0.05},{"x":1569315180000,"y":0.05},{"x":1569315240000,"y":0.23},{"x":1569315300000,"y":0.13},{"x":1569315360000,"y":0.07},{"x":1569315420000,"y":0.05},{"x":1569315480000,"y":0.05},{"x":1569315540000,"y":0.18},{"x":1569315600000,"y":0.22},{"x":1569315660000,"y":0.08},{"x":1569315720000,"y":0.06},{"x":1569315780000,"y":0.08},{"x":1569315840000,"y":0.07},{"x":1569315900000,"y":0.24},{"x":1569315960000,"y":0.05},{"x":1569316020000,"y":0.07},{"x":1569316080000,"y":0.07},{"x":1569316140000,"y":0.17},{"x":1569316200000,"y":0.29},{"x":1569316260000,"y":0.06},{"x":1569316320000,"y":0.06},{"x":1569316380000,"y":0.07},{"x":1569316440000,"y":0.05},{"x":1569316500000,"y":0.28},{"x":1569316560000,"y":0.1},{"x":1569316620000,"y":0.07},{"x":1569316680000,"y":0.06},{"x":1569316740000,"y":0.09},{"x":1569316800000,"y":0.27},{"x":1569316860000,"y":0.05},{"x":1569316920000,"y":0.06},{"x":1569316980000,"y":0.05},{"x":1569317040000,"y":0.1},{"x":1569317100000,"y":0.32},{"x":1569317160000,"y":0.16},{"x":1569317220000,"y":0.13},{"x":1569317280000,"y":0.07},{"x":1569317340000,"y":0.12},{"x":1569317400000,"y":0.34},{"x":1569317460000,"y":0.09},{"x":1569317520000,"y":0.05},{"x":1569317580000,"y":0.07},{"x":1569317640000,"y":0.1},{"x":1569317700000,"y":0.29},{"x":1569317760000,"y":0.05},{"x":1569317820000,"y":0.17},{"x":1569317880000,"y":0.11},{"x":1569317940000,"y":0.2},{"x":1569318000000,"y":0.21},{"x":1569318060000,"y":0.26},{"x":1569318120000,"y":0.13},{"x":1569318180000,"y":0.1},{"x":1569318240000,"y":0.12},{"x":1569318300000,"y":0.17},{"x":1569318360000,"y":0.21},{"x":1569318420000,"y":0.18},{"x":1569318480000,"y":0.11},{"x":1569318540000,"y":0.07},{"x":1569318600000,"y":0.12},{"x":1569318660000,"y":0.24},{"x":1569318720000,"y":0.08},{"x":1569318780000,"y":0.12},{"x":1569318840000,"y":0.16},{"x":1569318900000,"y":0.2},{"x":1569318960000,"y":0.25},{"x":1569319020000,"y":0.17},{"x":1569319080000,"y":0.18},{"x":1569319140000,"y":0.13},{"x":1569319200000,"y":0.22},{"x":1569319260000,"y":0.27},{"x":1569319320000,"y":0.12},{"x":1569319380000,"y":0.15},{"x":1569319440000,"y":0.18},{"x":1569319500000,"y":0.2},{"x":1569319560000,"y":0.27},{"x":1569319620000,"y":0.13},{"x":1569319680000,"y":0.15},{"x":1569319740000,"y":0.22},{"x":1569319800000,"y":0.22},{"x":1569319860000,"y":0.24},{"x":1569319920000,"y":0.16},{"x":1569319980000,"y":0.15},{"x":1569320040000,"y":0.17},{"x":1569320100000,"y":0.19},{"x":1569320160000,"y":0.13},{"x":1569320220000,"y":0.27},{"x":1569320280000,"y":0.15},{"x":1569320340000,"y":0.14},{"x":1569320400000,"y":0.18},{"x":1569320460000,"y":0.16},{"x":1569320520000,"y":0.3},{"x":1569320580000,"y":0.18},{"x":1569320640000,"y":0.17},{"x":1569320700000,"y":0.22},{"x":1569320760000,"y":0.15},{"x":1569320820000,"y":0.29},{"x":1569320880000,"y":0.15},{"x":1569320940000,"y":0.15},{"x":1569321000000,"y":0.2},{"x":1569321060000,"y":0.18},{"x":1569321120000,"y":0.27},{"x":1569321180000,"y":0.15},{"x":1569321240000,"y":0.16},{"x":1569321300000,"y":0.22},{"x":1569321360000,"y":0.16},{"x":1569321420000,"y":0.3},{"x":1569321480000,"y":0.17},{"x":1569321540000,"y":0.2},{"x":1569321600000,"y":0.18},{"x":1569321660000,"y":0.14},{"x":1569321720000,"y":0.28},{"x":1569321780000,"y":0.16},{"x":1569321840000,"y":0.17},{"x":1569321900000,"y":0.31},{"x":1569321960000,"y":0.13},{"x":1569322020000,"y":0.26},{"x":1569322080000,"y":0.18},{"x":1569322140000,"y":0.19},{"x":1569322200000,"y":0.19},{"x":1569322260000,"y":0.15},{"x":1569322320000,"y":0.14},{"x":1569322380000,"y":0.27},{"x":1569322440000,"y":0.16},{"x":1569322500000,"y":0.18},{"x":1569322560000,"y":0.15},{"x":1569322620000,"y":0.16},{"x":1569322680000,"y":0.3},{"x":1569322740000,"y":0.16},{"x":1569322800000,"y":0.27},{"x":1569322860000,"y":0.15},{"x":1569322920000,"y":0.15},{"x":1569322980000,"y":0.29},{"x":1569323040000,"y":0.17},{"x":1569323100000,"y":0.21},{"x":1569323160000,"y":0.12},{"x":1569323220000,"y":0.13},{"x":1569323280000,"y":0.31},{"x":1569323340000,"y":0.2},{"x":1569323400000,"y":0.18},{"x":1569323460000,"y":0.14},{"x":1569323520000,"y":0.18},{"x":1569323580000,"y":0.3},{"x":1569323640000,"y":0.15},{"x":1569323700000,"y":0.22},{"x":1569323760000,"y":0.16},{"x":1569323820000,"y":0.16},{"x":1569323880000,"y":0.17},{"x":1569323940000,"y":0.31},{"x":1569324000000,"y":0.2},{"x":1569324060000,"y":0.13},{"x":1569324120000,"y":0.15},{"x":1569324180000,"y":0.17},{"x":1569324240000,"y":3.53},{"x":1569324300000,"y":11.12},{"x":1569324360000,"y":4.71},{"x":1569324420000,"y":2.02},{"x":1569324480000,"y":0.16},{"x":1569324540000,"y":0.27},{"x":1569324600000,"y":0.23},{"x":1569324660000,"y":0.15},{"x":1569324720000,"y":0.15},{"x":1569324780000,"y":0.13},{"x":1569324840000,"y":0.28},{"x":1569324900000,"y":0.2},{"x":1569324960000,"y":0.15},{"x":1569325020000,"y":0.14},{"x":1569325080000,"y":0.15},{"x":1569325140000,"y":0.37},{"x":1569325200000,"y":0.27},{"x":1569325260000,"y":0.16},{"x":1569325320000,"y":0.14},{"x":1569325380000,"y":0.15},{"x":1569325440000,"y":0.28},{"x":1569325500000,"y":0.19},{"x":1569325560000,"y":0.15},{"x":1569325620000,"y":0.17},{"x":1569325680000,"y":0.17},{"x":1569325740000,"y":0.29},{"x":1569325800000,"y":0.19},{"x":1569325860000,"y":0.16},{"x":1569325920000,"y":0.14},{"x":1569325980000,"y":0.13},{"x":1569326040000,"y":0.28},{"x":1569326100000,"y":0.18},{"x":1569326160000,"y":0.19},{"x":1569326220000,"y":0.16},{"x":1569326280000,"y":0.16},{"x":1569326340000,"y":0.17},{"x":1569326400000,"y":0.46},{"x":1569326460000,"y":0.15},{"x":1569326520000,"y":0.15},{"x":1569326580000,"y":0.16},{"x":1569326640000,"y":0.15},{"x":1569326700000,"y":0.31},{"x":1569326760000,"y":0.15},{"x":1569326820000,"y":0.13},{"x":1569326880000,"y":0.14},{"x":1569326940000,"y":0.28},{"x":1569327000000,"y":0.32},{"x":1569327060000,"y":0.15},{"x":1569327120000,"y":0.13},{"x":1569327180000,"y":0.14},{"x":1569327240000,"y":0.15},{"x":1569327300000,"y":0.34},{"x":1569327360000,"y":0.14},{"x":1569327420000,"y":0.14},{"x":1569327480000,"y":0.14},{"x":1569327540000,"y":0.13},{"x":1569327600000,"y":0.34},{"x":1569327660000,"y":0.14},{"x":1569327720000,"y":0.14},{"x":1569327780000,"y":0.14},{"x":1569327840000,"y":0.15},{"x":1569327900000,"y":0.39},{"x":1569327960000,"y":0.15},{"x":1569328020000,"y":0.13},{"x":1569328080000,"y":0.13},{"x":1569328140000,"y":0.15},{"x":1569328200000,"y":0.36},{"x":1569328260000,"y":0.13},{"x":1569328320000,"y":0.14},{"x":1569328380000,"y":0.13},{"x":1569328440000,"y":0.1},{"x":1569328500000,"y":0.1},{"x":1569328560000,"y":0.23},{"x":1569328620000,"y":0.08},{"x":1569328680000,"y":0.07},{"x":1569328740000,"y":0.13},{"x":1569328800000,"y":0.12},{"x":1569328860000,"y":0.2},{"x":1569328920000,"y":0.04},{"x":1569328980000,"y":0.04},{"x":1569329040000,"y":0.05},{"x":1569329100000,"y":0.13},{"x":1569329160000,"y":0.2},{"x":1569329220000,"y":0.06},{"x":1569329280000,"y":0.49},{"x":1569329340000,"y":0.08},{"x":1569329400000,"y":0.1},{"x":1569329460000,"y":0.18},{"x":1569329520000,"y":0.06},{"x":1569329580000,"y":0.05},{"x":1569329640000,"y":0.07},{"x":1569329700000,"y":0.08},{"x":1569329760000,"y":0.2},{"x":1569329820000,"y":0.66},{"x":1569329880000,"y":0.07},{"x":1569329940000,"y":0.05},{"x":1569330000000,"y":0.16},{"x":1569330060000,"y":0.22},{"x":1569330120000,"y":0.06},{"x":1569330180000,"y":0.06},{"x":1569330240000,"y":0.04},{"x":1569330300000,"y":0.14},{"x":1569330360000,"y":0.18},{"x":1569330420000,"y":0.04},{"x":1569330480000,"y":0.04},{"x":1569330540000,"y":0.1},{"x":1569330600000,"y":0.16},{"x":1569330660000,"y":0.22},{"x":1569330720000,"y":0.07},{"x":1569330780000,"y":0.09},{"x":1569330840000,"y":0.06},{"x":1569330900000,"y":0.15},{"x":1569330960000,"y":0.07},{"x":1569331020000,"y":0.22},{"x":1569331080000,"y":0.05},{"x":1569331140000,"y":0.05},{"x":1569331200000,"y":0.13},{"x":1569331260000,"y":0.06},{"x":1569331320000,"y":0.22},{"x":1569331380000,"y":0.05},{"x":1569331440000,"y":0.08},{"x":1569331500000,"y":0.1},{"x":1569331560000,"y":0.06},{"x":1569331620000,"y":0.2},{"x":1569331680000,"y":0.07},{"x":1569331740000,"y":0.05},{"x":1569331800000,"y":0.1},{"x":1569331860000,"y":0.06},{"x":1569331920000,"y":0.23},{"x":1569331980000,"y":0.04},{"x":1569332040000,"y":0.05},{"x":1569332100000,"y":0.1},{"x":1569332160000,"y":0.05},{"x":1569332220000,"y":0.18},{"x":1569332280000,"y":0.05},{"x":1569332340000,"y":0.12},{"x":1569332400000,"y":0.1},{"x":1569332460000,"y":0.05},{"x":1569332520000,"y":0.2},{"x":1569332580000,"y":0.07},{"x":1569332640000,"y":0.05},{"x":1569332700000,"y":0.1},{"x":1569332760000,"y":0.04},{"x":1569332820000,"y":0.21},{"x":1569332880000,"y":0.29},{"x":1569332940000,"y":0.07},{"x":1569333000000,"y":0.12},{"x":1569333060000,"y":0.04},{"x":1569333120000,"y":0.07},{"x":1569333180000,"y":0.22},{"x":1569333240000,"y":0.06},{"x":1569333300000,"y":0.14},{"x":1569333360000,"y":0.05},{"x":1569333420000,"y":0.07},{"x":1569333480000,"y":0.22},{"x":1569333540000,"y":0.06},{"x":1569333600000,"y":0.16},{"x":1569333660000,"y":0.06},{"x":1569333720000,"y":0.06},{"x":1569333780000,"y":0.2},{"x":1569333840000,"y":0.06},{"x":1569333900000,"y":0.13},{"x":1569333960000,"y":0.05},{"x":1569334020000,"y":0.06},{"x":1569334080000,"y":0.18},{"x":1569334140000,"y":0.11},{"x":1569334200000,"y":0.13},{"x":1569334260000,"y":0.1},{"x":1569334320000,"y":0.06},{"x":1569334380000,"y":0.2},{"x":1569334440000,"y":0.05},{"x":1569334500000,"y":0.14},{"x":1569334560000,"y":0.05},{"x":1569334620000,"y":0.04},{"x":1569334680000,"y":0.18},{"x":1569334740000,"y":0.04},{"x":1569334800000,"y":0.08},{"x":1569334860000,"y":0.05},{"x":1569334920000,"y":0.05},{"x":1569334980000,"y":0.19},{"x":1569335040000,"y":0.06},{"x":1569335100000,"y":0.11},{"x":1569335160000,"y":0.06},{"x":1569335220000,"y":0.05},{"x":1569335280000,"y":0.09},{"x":1569335340000,"y":0.23},{"x":1569335400000,"y":0.11},{"x":1569335460000,"y":0.04},{"x":1569335520000,"y":0.05},{"x":1569335580000,"y":0.04},{"x":1569335640000,"y":0.19},{"x":1569335700000,"y":0.09},{"x":1569335760000,"y":0.05},{"x":1569335820000,"y":0.07},{"x":1569335880000,"y":0.05},{"x":1569335940000,"y":0.24},{"x":1569336000000,"y":0.13},{"x":1569336060000,"y":0.06},{"x":1569336120000,"y":0.07},{"x":1569336180000,"y":0.05},{"x":1569336240000,"y":0.19},{"x":1569336300000,"y":0.12},{"x":1569336360000,"y":0.07},{"x":1569336420000,"y":0.03},{"x":1569336480000,"y":0.17},{"x":1569336540000,"y":0.2},{"x":1569336600000,"y":0.13},{"x":1569336660000,"y":0.05},{"x":1569336720000,"y":0.05},{"x":1569336780000,"y":0.04},{"x":1569336840000,"y":0.23},{"x":1569336900000,"y":0.11},{"x":1569336960000,"y":0.07},{"x":1569337020000,"y":0.07},{"x":1569337080000,"y":0.04},{"x":1569337140000,"y":0.2},{"x":1569337200000,"y":0.15},{"x":1569337260000,"y":0.05},{"x":1569337320000,"y":0.03},{"x":1569337380000,"y":0.07},{"x":1569337440000,"y":0.19},{"x":1569337500000,"y":0.11},{"x":1569337560000,"y":0.07},{"x":1569337620000,"y":0.07},{"x":1569337680000,"y":0.07},{"x":1569337740000,"y":0.1},{"x":1569337800000,"y":0.23},{"x":1569337860000,"y":0.05},{"x":1569337920000,"y":0.07},{"x":1569337980000,"y":0.05},{"x":1569338040000,"y":0.1},{"x":1569338100000,"y":0.26},{"x":1569338160000,"y":0.07},{"x":1569338220000,"y":0.05},{"x":1569338280000,"y":0.06},{"x":1569338340000,"y":0.05},{"x":1569338400000,"y":0.22},{"x":1569338460000,"y":0.08},{"x":1569338520000,"y":0.06},{"x":1569338580000,"y":0.03},{"x":1569338640000,"y":0.07},{"x":1569338700000,"y":0.22},{"x":1569338760000,"y":0.05},{"x":1569338820000,"y":0.06},{"x":1569338880000,"y":0.05},{"x":1569338940000,"y":0.05},{"x":1569339000000,"y":0.25},{"x":1569339060000,"y":0.05},{"x":1569339120000,"y":0.05},{"x":1569339180000,"y":0.05},{"x":1569339240000,"y":0.05},{"x":1569339300000,"y":0.27},{"x":1569339360000,"y":0.07},{"x":1569339420000,"y":0.07},{"x":1569339480000,"y":0.06},{"x":1569339540000,"y":0.13},{"x":1569339600000,"y":0.18},{"x":1569339660000,"y":0.13},{"x":1569339720000,"y":0.07},{"x":1569339780000,"y":0.06},{"x":1569339840000,"y":0.06},{"x":1569339900000,"y":0.18},{"x":1569339960000,"y":0.19},{"x":1569340020000,"y":0.05},{"x":1569340080000,"y":1.14},{"x":1569340140000,"y":0.07},{"x":1569340200000,"y":0.12},{"x":1569340260000,"y":0.17},{"x":1569340320000,"y":0.05},{"x":1569340380000,"y":0.05},{"x":1569340440000,"y":0.07},{"x":1569340500000,"y":0.14},{"x":1569340560000,"y":0.19},{"x":1569340620000,"y":0.12},{"x":1569340680000,"y":0.04},{"x":1569340740000,"y":0.04},{"x":1569340800000,"y":0.11},{"x":1569340860000,"y":0.19},{"x":1569340920000,"y":0.04},{"x":1569340980000,"y":0.05},{"x":1569341040000,"y":0.06},{"x":1569341100000,"y":0.08},{"x":1569341160000,"y":0.18},{"x":1569341220000,"y":0.06},{"x":1569341280000,"y":0.07},{"x":1569341340000,"y":0.15},{"x":1569341400000,"y":0.11},{"x":1569341460000,"y":0.18},{"x":1569341520000,"y":0.03},{"x":1569341580000,"y":0.05},{"x":1569341640000,"y":0.06},{"x":1569341700000,"y":0.13},{"x":1569341760000,"y":0.06},{"x":1569341820000,"y":0.2},{"x":1569341880000,"y":0.04},{"x":1569341940000,"y":0.05},{"x":1569342000000,"y":0.1},{"x":1569342060000,"y":0.05},{"x":1569342120000,"y":0.24},{"x":1569342180000,"y":0.07},{"x":1569342240000,"y":0.05},{"x":1569342300000,"y":0.15},{"x":1569342360000,"y":0.05},{"x":1569342420000,"y":0.2},{"x":1569342480000,"y":0.1},{"x":1569342540000,"y":0.09},{"x":1569342600000,"y":0.19},{"x":1569342660000,"y":0.05},{"x":1569342720000,"y":0.2},{"x":1569342780000,"y":0.05},{"x":1569342840000,"y":0.09},{"x":1569342900000,"y":0.11},{"x":1569342960000,"y":0.04},{"x":1569343020000,"y":0.22},{"x":1569343080000,"y":7.17},{"x":1569343140000,"y":0.63},{"x":1569343200000,"y":0.11},{"x":1569343260000,"y":0.05},{"x":1569343320000,"y":0.22},{"x":1569343380000,"y":0.07},{"x":1569343440000,"y":0.06},{"x":1569343500000,"y":0.12},{"x":1569343560000,"y":0.07},{"x":1569343620000,"y":0.19},{"x":1569343680000,"y":0.07},{"x":1569343740000,"y":0.07},{"x":1569343800000,"y":0.13},{"x":1569343860000,"y":0.08},{"x":1569343920000,"y":0.2},{"x":1569343980000,"y":0.07},{"x":1569344040000,"y":0.1},{"x":1569344100000,"y":0.12},{"x":1569344160000,"y":0.08},{"x":1569344220000,"y":0.05},{"x":1569344280000,"y":0.22},{"x":1569344340000,"y":0.05},{"x":1569344400000,"y":0.15},{"x":1569344460000,"y":0.1},{"x":1569344520000,"y":0.07},{"x":1569344580000,"y":0.19},{"x":1569344640000,"y":0.08},{"x":1569344700000,"y":0.15},{"x":1569344760000,"y":0.07},{"x":1569344820000,"y":0.06},{"x":1569344880000,"y":0.22},{"x":1569344940000,"y":0.15},{"x":1569345000000,"y":0.17},{"x":1569345060000,"y":0.1},{"x":1569345120000,"y":0.07},{"x":1569345180000,"y":0.2},{"x":1569345240000,"y":0.1},{"x":1569345300000,"y":0.16},{"x":1569345360000,"y":0.08},{"x":1569345420000,"y":0.05},{"x":1569345480000,"y":0.23},{"x":1569345540000,"y":0.07},{"x":1569345600000,"y":0.15},{"x":1569345660000,"y":0.09},{"x":1569345720000,"y":0.09},{"x":1569345780000,"y":0.21},{"x":1569345840000,"y":0.07},{"x":1569345900000,"y":0.17},{"x":1569345960000,"y":0.06},{"x":1569346020000,"y":0.09},{"x":1569346080000,"y":0.06},{"x":1569346140000,"y":3.84},{"x":1569346200000,"y":0.14},{"x":1569346260000,"y":0.13},{"x":1569346320000,"y":0.08},{"x":1569346380000,"y":0.08},{"x":1569346440000,"y":0.22},{"x":1569346500000,"y":0.15},{"x":1569346560000,"y":0.09},{"x":1569346620000,"y":0.09},{"x":1569346680000,"y":0.09},{"x":1569346740000,"y":0.33},{"x":1569346800000,"y":0.15},{"x":1569346860000,"y":0.07},{"x":1569346920000,"y":0.08},{"x":1569346980000,"y":0.07},{"x":1569347040000,"y":0.2},{"x":1569347100000,"y":0.14},{"x":1569347160000,"y":0.1},{"x":1569347220000,"y":0.08},{"x":1569347280000,"y":0.09},{"x":1569347340000,"y":2.79},{"x":1569347400000,"y":0.09},{"x":1569347460000,"y":0.07},{"x":1569347520000,"y":0.06},{"x":1569347580000,"y":0.07},{"x":1569347640000,"y":0.22},{"x":1569347700000,"y":0.14},{"x":1569347760000,"y":0.05},{"x":1569347820000,"y":0.07},{"x":1569347880000,"y":0.09},{"x":1569347940000,"y":0.08},{"x":1569348000000,"y":0.33},{"x":1569348060000,"y":0.06},{"x":1569348120000,"y":0.06},{"x":1569348180000,"y":0.08},{"x":1569348240000,"y":0.06},{"x":1569348300000,"y":0.29},{"x":1569348360000,"y":0.07},{"x":1569348420000,"y":0.05},{"x":1569348480000,"y":0.09},{"x":1569348540000,"y":0.12},{"x":1569348600000,"y":0.25},{"x":1569348660000,"y":0.08},{"x":1569348720000,"y":0.07},{"x":1569348780000,"y":0.07},{"x":1569348840000,"y":0.06},{"x":1569348900000,"y":0.27},{"x":1569348960000,"y":0.06},{"x":1569349020000,"y":0.07},{"x":1569349080000,"y":0.07},{"x":1569349140000,"y":0.07},{"x":1569349200000,"y":0.24},{"x":1569349260000,"y":0.07},{"x":1569349320000,"y":0.09},{"x":1569349380000,"y":0.08},{"x":1569349440000,"y":0.08},{"x":1569349500000,"y":0.26},{"x":1569349560000,"y":0.1},{"x":1569349620000,"y":0.06},{"x":1569349680000,"y":0.07},{"x":1569349740000,"y":0.07},{"x":1569349800000,"y":0.25},{"x":1569349860000,"y":0.11},{"x":1569349920000,"y":0.09},{"x":1569349980000,"y":0.09},{"x":1569350040000,"y":0.11},{"x":1569350100000,"y":0.31},{"x":1569350160000,"y":0.12},{"x":1569350220000,"y":0.11},{"x":1569350280000,"y":0.12},{"x":1569350340000,"y":0.19},{"x":1569350400000,"y":0.2},{"x":1569350460000,"y":0.24},{"x":1569350520000,"y":0.12},{"x":1569350580000,"y":0.08},{"x":1569350640000,"y":0.11},{"x":1569350700000,"y":0.12},{"x":1569350760000,"y":0.26},{"x":1569350820000,"y":0.15},{"x":1569350880000,"y":0.1},{"x":1569350940000,"y":0.6},{"x":1569351000000,"y":0.15},{"x":1569351060000,"y":0.3},{"x":1569351120000,"y":0.12},{"x":1569351180000,"y":0.13},{"x":1569351240000,"y":0.12},{"x":1569351300000,"y":0.17},{"x":1569351360000,"y":0.25},{"x":1569351420000,"y":0.13},{"x":1569351480000,"y":0.1},{"x":1569351540000,"y":0.08},{"x":1569351600000,"y":0.17},{"x":1569351660000,"y":0.27},{"x":1569351720000,"y":0.17},{"x":1569351780000,"y":0.16},{"x":1569351840000,"y":1.03},{"x":1569351900000,"y":0.23},{"x":1569351960000,"y":0.27},{"x":1569352020000,"y":0.18},{"x":1569352080000,"y":0.15},{"x":1569352140000,"y":0.21},{"x":1569352200000,"y":0.21},{"x":1569352260000,"y":0.29},{"x":1569352320000,"y":0.14},{"x":1569352380000,"y":0.14},{"x":1569352440000,"y":0.2},{"x":1569352500000,"y":0.24},{"x":1569352560000,"y":0.17},{"x":1569352620000,"y":0.31},{"x":1569352680000,"y":0.18},{"x":1569352740000,"y":0.15},{"x":1569352800000,"y":0.17},{"x":1569352860000,"y":0.16},{"x":1569352920000,"y":0.28},{"x":1569352980000,"y":0.2},{"x":1569353040000,"y":0.15},{"x":1569353100000,"y":0.2},{"x":1569353160000,"y":0.15},{"x":1569353220000,"y":0.27},{"x":1569353280000,"y":0.16},{"x":1569353340000,"y":0.31},{"x":1569353400000,"y":0.19},{"x":1569353460000,"y":0.13},{"x":1569353520000,"y":0.32},{"x":1569353580000,"y":0.14},{"x":1569353640000,"y":0.15},{"x":1569353700000,"y":0.2},{"x":1569353760000,"y":0.14},{"x":1569353820000,"y":0.31},{"x":1569353880000,"y":0.14},{"x":1569353940000,"y":0.21},{"x":1569354000000,"y":0.22},{"x":1569354060000,"y":0.14},{"x":1569354120000,"y":0.28},{"x":1569354180000,"y":0.16},{"x":1569354240000,"y":0.14},{"x":1569354300000,"y":0.2},{"x":1569354360000,"y":0.15},{"x":1569354420000,"y":0.3},{"x":1569354480000,"y":0.15},{"x":1569354540000,"y":0.14},{"x":1569354600000,"y":3.63},{"x":1569354660000,"y":0.13},{"x":1569354720000,"y":0.17},{"x":1569354780000,"y":0.31},{"x":1569354840000,"y":0.16},{"x":1569354900000,"y":0.2},{"x":1569354960000,"y":0.15},{"x":1569355020000,"y":0.15},{"x":1569355080000,"y":0.32},{"x":1569355140000,"y":0.17},{"x":1569355200000,"y":0.25},{"x":1569355260000,"y":0.16},{"x":1569355320000,"y":0.15},{"x":1569355380000,"y":0.33},{"x":1569355440000,"y":0.15},{"x":1569355500000,"y":0.21},{"x":1569355560000,"y":0.14},{"x":1569355620000,"y":0.12},{"x":1569355680000,"y":0.3},{"x":1569355740000,"y":0.24},{"x":1569355800000,"y":0.22},{"x":1569355860000,"y":0.15},{"x":1569355920000,"y":0.15},{"x":1569355980000,"y":0.3},{"x":1569356040000,"y":0.16},{"x":1569356100000,"y":0.24},{"x":1569356160000,"y":0.15},{"x":1569356220000,"y":0.15},{"x":1569356280000,"y":0.28},{"x":1569356340000,"y":0.13},{"x":1569356400000,"y":0.19},{"x":1569356460000,"y":0.15},{"x":1569356520000,"y":0.13},{"x":1569356580000,"y":0.26},{"x":1569356640000,"y":0.21},{"x":1569356700000,"y":0.24},{"x":1569356760000,"y":0.13},{"x":1569356820000,"y":0.14},{"x":1569356880000,"y":0.15},{"x":1569356940000,"y":0.3},{"x":1569357000000,"y":0.23},{"x":1569357060000,"y":0.16},{"x":1569357120000,"y":0.14},{"x":1569357180000,"y":0.12},{"x":1569357240000,"y":0.31},{"x":1569357300000,"y":0.23},{"x":1569357360000,"y":0.15},{"x":1569357420000,"y":0.15},{"x":1569357480000,"y":0.15},{"x":1569357540000,"y":0.37},{"x":1569357600000,"y":0.2},{"x":1569357660000,"y":0.15},{"x":1569357720000,"y":0.13},{"x":1569357780000,"y":0.15},{"x":1569357840000,"y":0.27},{"x":1569357900000,"y":0.19},{"x":1569357960000,"y":0.14},{"x":1569358020000,"y":0.13},{"x":1569358080000,"y":0.14},{"x":1569358140000,"y":0.27},{"x":1569358200000,"y":0.21},{"x":1569358260000,"y":0.12},{"x":1569358320000,"y":0.14},{"x":1569358380000,"y":0.17},{"x":1569358440000,"y":0.3},{"x":1569358500000,"y":0.22},{"x":1569358560000,"y":0.16},{"x":1569358620000,"y":0.16},{"x":1569358680000,"y":0.15},{"x":1569358740000,"y":0.15},{"x":1569358800000,"y":0.38},{"x":1569358860000,"y":0.15},{"x":1569358920000,"y":0.15},{"x":1569358980000,"y":0.15},{"x":1569359040000,"y":0.15},{"x":1569359100000,"y":0.34},{"x":1569359160000,"y":0.13},{"x":1569359220000,"y":0.15},{"x":1569359280000,"y":0.15},{"x":1569359340000,"y":0.21},{"x":1569359400000,"y":0.32},{"x":1569359460000,"y":0.14},{"x":1569359520000,"y":0.14},{"x":1569359580000,"y":0.16},{"x":1569359640000,"y":0.16},{"x":1569359700000,"y":0.31},{"x":1569359760000,"y":0.15},{"x":1569359820000,"y":0.18},{"x":1569359880000,"y":0.16},{"x":1569359940000,"y":0.18},{"x":1569360000000,"y":0.3},{"x":1569360060000,"y":0.14},{"x":1569360120000,"y":0.15},{"x":1569360180000,"y":0.13},{"x":1569360240000,"y":0.16},{"x":1569360300000,"y":0.35},{"x":1569360360000,"y":0.14},{"x":1569360420000,"y":0.17},{"x":1569360480000,"y":0.16},{"x":1569360540000,"y":0.15},{"x":1569360600000,"y":0.36},{"x":1569360660000,"y":0.17},{"x":1569360720000,"y":0.15},{"x":1569360780000,"y":0.17},{"x":1569360840000,"y":0.15},{"x":1569360900000,"y":0.33},{"x":1569360960000,"y":0.15},{"x":1569361020000,"y":0.16},{"x":1569361080000,"y":0.15},{"x":1569361140000,"y":0.3},{"x":1569361200000,"y":0.19},{"x":1569361260000,"y":0.28},{"x":1569361320000,"y":0.15},{"x":1569361380000,"y":0.15},{"x":1569361440000,"y":0.15},{"x":1569361500000,"y":0.27},{"x":1569361560000,"y":0.28},{"x":1569361620000,"y":0.13},{"x":1569361680000,"y":0.14},{"x":1569361740000,"y":0.13},{"x":1569361800000,"y":0.17},{"x":1569361860000,"y":0.25},{"x":1569361920000,"y":0.09},{"x":1569361980000,"y":0.08},{"x":1569362040000,"y":0.1},{"x":1569362100000,"y":0.16},{"x":1569362160000,"y":0.24},{"x":1569362220000,"y":0.05},{"x":1569362280000,"y":0.06},{"x":1569362340000,"y":0.08},{"x":1569362400000,"y":0.1},{"x":1569362460000,"y":0.23},{"x":1569362520000,"y":0.08},{"x":1569362580000,"y":0.12},{"x":1569362640000,"y":0.09},{"x":1569362700000,"y":0.13},{"x":1569362760000,"y":0.22},{"x":1569362820000,"y":0.07},{"x":1569362880000,"y":0.05},{"x":1569362940000,"y":0.15},{"x":1569363000000,"y":0.12},{"x":1569363060000,"y":0.22},{"x":1569363120000,"y":0.06},{"x":1569363180000,"y":0.06},{"x":1569363240000,"y":0.07},{"x":1569363300000,"y":0.13},{"x":1569363360000,"y":0.22},{"x":1569363420000,"y":0.14},{"x":1569363480000,"y":0.07},{"x":1569363540000,"y":0.06},{"x":1569363600000,"y":0.14},{"x":1569363660000,"y":0.1},{"x":1569363720000,"y":0.22},{"x":1569363780000,"y":0.1},{"x":1569363840000,"y":0.08},{"x":1569363900000,"y":0.15},{"x":1569363960000,"y":0.08},{"x":1569364020000,"y":0.23},{"x":1569364080000,"y":0.08},{"x":1569364140000,"y":0.04},{"x":1569364200000,"y":0.14},{"x":1569364260000,"y":0.13},{"x":1569364320000,"y":0.2},{"x":1569364380000,"y":0.09},{"x":1569364440000,"y":0.09},{"x":1569364500000,"y":0.17},{"x":1569364560000,"y":0.07},{"x":1569364620000,"y":0.21},{"x":1569364680000,"y":0.09},{"x":1569364740000,"y":0.19},{"x":1569364800000,"y":0.16},{"x":1569364860000,"y":0.07},{"x":1569364920000,"y":0.22},{"x":1569364980000,"y":0.05},{"x":1569365040000,"y":0.07},{"x":1569365100000,"y":0.14},{"x":1569365160000,"y":0.06},{"x":1569365220000,"y":0.22},{"x":1569365280000,"y":0.05},{"x":1569365340000,"y":0.07},{"x":1569365400000,"y":0.12},{"x":1569365460000,"y":0.23},{"x":1569365520000,"y":0.22},{"x":1569365580000,"y":0.06},{"x":1569365640000,"y":0.07},{"x":1569365700000,"y":0.11},{"x":1569365760000,"y":0.09},{"x":1569365820000,"y":0.07},{"x":1569365880000,"y":0.21},{"x":1569365940000,"y":0.08},{"x":1569366000000,"y":0.16},{"x":1569366060000,"y":0.09},{"x":1569366120000,"y":0.06},{"x":1569366180000,"y":0.21},{"x":1569366240000,"y":0.06},{"x":1569366300000,"y":0.16},{"x":1569366360000,"y":0.1},{"x":1569366420000,"y":0.07},{"x":1569366480000,"y":0.21},{"x":1569366540000,"y":0.19},{"x":1569366600000,"y":0.12},{"x":1569366660000,"y":0.08},{"x":1569366720000,"y":0.08},{"x":1569366780000,"y":0.23},{"x":1569366840000,"y":0.1},{"x":1569366900000,"y":0.21},{"x":1569366960000,"y":0.07},{"x":1569367020000,"y":0.07},{"x":1569367080000,"y":0.22},{"x":1569367140000,"y":0.06},{"x":1569367200000,"y":0.12},{"x":1569367260000,"y":0.12},{"x":1569367320000,"y":0.48},{"x":1569367380000,"y":0.21},{"x":1569367440000,"y":0.08},{"x":1569367500000,"y":0.12},{"x":1569367560000,"y":0.07},{"x":1569367620000,"y":0.07},{"x":1569367680000,"y":0.23},{"x":1569367740000,"y":0.07},{"x":1569367800000,"y":0.17},{"x":1569367860000,"y":0.08},{"x":1569367920000,"y":0.08},{"x":1569367980000,"y":1.75},{"x":1569368040000,"y":2.22},{"x":1569368100000,"y":0.1},{"x":1569368160000,"y":0.05},{"x":1569368220000,"y":0.06},{"x":1569368280000,"y":0.06},{"x":1569368340000,"y":0.28},{"x":1569368400000,"y":0.1},{"x":1569368460000,"y":0.07},{"x":1569368520000,"y":0.05},{"x":1569368580000,"y":0.07},{"x":1569368640000,"y":0.19},{"x":1569368700000,"y":0.13},{"x":1569368760000,"y":0.05},{"x":1569368820000,"y":0.07},{"x":1569368880000,"y":0.05},{"x":1569368940000,"y":0.22},{"x":1569369000000,"y":0.12},{"x":1569369060000,"y":2.31},{"x":1569369120000,"y":0.06},{"x":1569369180000,"y":0.07},{"x":1569369240000,"y":0.25},{"x":1569369300000,"y":0.1},{"x":1569369360000,"y":0.05},{"x":1569369420000,"y":0.05},{"x":1569369480000,"y":0.05},{"x":1569369540000,"y":0.19},{"x":1569369600000,"y":0.18},{"x":1569369660000,"y":0.07},{"x":1569369720000,"y":0.05},{"x":1569369780000,"y":0.06},{"x":1569369840000,"y":0.19},{"x":1569369900000,"y":0.09},{"x":1569369960000,"y":0.07},{"x":1569370020000,"y":0.06},{"x":1569370080000,"y":0.06},{"x":1569370140000,"y":0.33},{"x":1569370200000,"y":0.13},{"x":1569370260000,"y":0.03},{"x":1569370320000,"y":0.07},{"x":1569370380000,"y":0.07},{"x":1569370440000,"y":0.05},{"x":1569370500000,"y":0.27},{"x":1569370560000,"y":0.06},{"x":1569370620000,"y":0.06},{"x":1569370680000,"y":0.04},{"x":1569370740000,"y":0.07},{"x":1569370800000,"y":0.28},{"x":1569370860000,"y":0.05},{"x":1569370920000,"y":0.07},{"x":1569370980000,"y":0.08},{"x":1569371040000,"y":0.04},{"x":1569371100000,"y":0.26},{"x":1569371160000,"y":0.06},{"x":1569371220000,"y":0.09},{"x":1569371280000,"y":0.06},{"x":1569371340000,"y":0.04},{"x":1569371400000,"y":0.24},{"x":1569371460000,"y":0.07},{"x":1569371520000,"y":0.06},{"x":1569371580000,"y":0.07},{"x":1569371640000,"y":0.06},{"x":1569371700000,"y":0.26},{"x":1569371760000,"y":0.08},{"x":1569371820000,"y":0.04},{"x":1569371880000,"y":0.07},{"x":1569371940000,"y":0.13},{"x":1569372000000,"y":0.26},{"x":1569372060000,"y":0.04},{"x":1569372120000,"y":0.05},{"x":1569372180000,"y":0.06},{"x":1569372240000,"y":0.07},{"x":1569372300000,"y":0.24},{"x":1569372360000,"y":0.03},{"x":1569372420000,"y":0.08},{"x":1569372480000,"y":0.05},{"x":1569372540000,"y":0.05},{"x":1569372600000,"y":0.25},{"x":1569372660000,"y":0.09},{"x":1569372720000,"y":0.79},{"x":1569372780000,"y":0.07},{"x":1569372840000,"y":0.09},{"x":1569372900000,"y":0.1},{"x":1569372960000,"y":0.19},{"x":1569373020000,"y":0.06},{"x":1569373080000,"y":0.06},{"x":1569373140000,"y":0.07},{"x":1569373200000,"y":0.17},{"x":1569373260000,"y":0.19},{"x":1569373320000,"y":0.06},{"x":1569373380000,"y":0.07},{"x":1569373440000,"y":0.06},{"x":1569373500000,"y":0.1},{"x":1569373560000,"y":0.18},{"x":1569373620000,"y":0.07},{"x":1569373680000,"y":0.07},{"x":1569373740000,"y":0.15},{"x":1569373800000,"y":0.11},{"x":1569373860000,"y":0.18},{"x":1569373920000,"y":0.08},{"x":1569373980000,"y":0.09},{"x":1569374040000,"y":0.05},{"x":1569374100000,"y":0.16},{"x":1569374160000,"y":0.22},{"x":1569374220000,"y":0.08},{"x":1569374280000,"y":0.07},{"x":1569374340000,"y":0.05},{"x":1569374400000,"y":0.13},{"x":1569374460000,"y":0.21},{"x":1569374520000,"y":0.05},{"x":1569374580000,"y":0.08},{"x":1569374640000,"y":0.1},{"x":1569374700000,"y":0.1},{"x":1569374760000,"y":0.05},{"x":1569374820000,"y":0.24},{"x":1569374880000,"y":0.06},{"x":1569374940000,"y":0.07},{"x":1569375000000,"y":0.1},{"x":1569375060000,"y":0.07},{"x":1569375120000,"y":0.19},{"x":1569375180000,"y":0.1},{"x":1569375240000,"y":0.3},{"x":1569375300000,"y":0.18},{"x":1569375360000,"y":0.07},{"x":1569375420000,"y":0.24},{"x":1569375480000,"y":0.1},{"x":1569375540000,"y":0.14},{"x":1569375600000,"y":0.11},{"x":1569375660000,"y":0.05},{"x":1569375720000,"y":0.21},{"x":1569375780000,"y":0.07},{"x":1569375840000,"y":0.08},{"x":1569375900000,"y":0.11},{"x":1569375960000,"y":0.06},{"x":1569376020000,"y":0.2},{"x":1569376080000,"y":0.06},{"x":1569376140000,"y":0.06},{"x":1569376200000,"y":0.1},{"x":1569376260000,"y":0.05},{"x":1569376320000,"y":0.53},{"x":1569376380000,"y":0.05},{"x":1569376440000,"y":0.08},{"x":1569376500000,"y":0.12},{"x":1569376560000,"y":0.06},{"x":1569376620000,"y":0.2},{"x":1569376680000,"y":0.09},{"x":1569376740000,"y":0.11},{"x":1569376800000,"y":0.13},{"x":1569376860000,"y":0.07},{"x":1569376920000,"y":0.07},{"x":1569376980000,"y":0.22},{"x":1569377040000,"y":0.06},{"x":1569377100000,"y":0.16},{"x":1569377160000,"y":0.06},{"x":1569377220000,"y":0.05},{"x":1569377280000,"y":0.2},{"x":1569377340000,"y":0.2},{"x":1569377400000,"y":0.12},{"x":1569377460000,"y":0.06},{"x":1569377520000,"y":0.07},{"x":1569377580000,"y":0.21},{"x":1569377640000,"y":0.08},{"x":1569377700000,"y":0.1},{"x":1569377760000,"y":0.06},{"x":1569377820000,"y":0.05},{"x":1569377880000,"y":0.19},{"x":1569377940000,"y":0.06},{"x":1569378000000,"y":0.1},{"x":1569378060000,"y":0.07},{"x":1569378120000,"y":0.06},{"x":1569378180000,"y":0.2},{"x":1569378240000,"y":0.05},{"x":1569378300000,"y":0.1},{"x":1569378360000,"y":0.06},{"x":1569378420000,"y":0.05},{"x":1569378480000,"y":0.21},{"x":1569378540000,"y":0.09},{"x":1569378600000,"y":0.14},{"x":1569378660000,"y":0.08},{"x":1569378720000,"y":0.05},{"x":1569378780000,"y":0.22},{"x":1569378840000,"y":0.06},{"x":1569378900000,"y":0.52},{"x":1569378960000,"y":0.06},{"x":1569379020000,"y":0.05},{"x":1569379080000,"y":0.05},{"x":1569379140000,"y":0.32},{"x":1569379200000,"y":0.11},{"x":1569379260000,"y":0.04},{"x":1569379320000,"y":0.06},{"x":1569379380000,"y":0.07},{"x":1569379440000,"y":0.2},{"x":1569379500000,"y":0.12},{"x":1569379560000,"y":0.06},{"x":1569379620000,"y":0.05},{"x":1569379680000,"y":0.07},{"x":1569379740000,"y":0.2},{"x":1569379800000,"y":0.14},{"x":1569379860000,"y":0.07},{"x":1569379920000,"y":0.09},{"x":1569379980000,"y":0.07},{"x":1569380040000,"y":0.26},{"x":1569380100000,"y":0.15},{"x":1569380160000,"y":0.04},{"x":1569380220000,"y":0.08},{"x":1569380280000,"y":0.06},{"x":1569380340000,"y":0.19},{"x":1569380400000,"y":0.22},{"x":1569380460000,"y":0.07},{"x":1569380520000,"y":0.08},{"x":1569380580000,"y":0.06},{"x":1569380640000,"y":0.21},{"x":1569380700000,"y":0.11},{"x":1569380760000,"y":0.06},{"x":1569380820000,"y":0.05},{"x":1569380880000,"y":0.05},{"x":1569380940000,"y":0.31},{"x":1569381000000,"y":0.1},{"x":1569381060000,"y":0.1},{"x":1569381120000,"y":0.07},{"x":1569381180000,"y":0.07},{"x":1569381240000,"y":0.05},{"x":1569381300000,"y":0.28},{"x":1569381360000,"y":0.05},{"x":1569381420000,"y":0.06},{"x":1569381480000,"y":0.06},{"x":1569381540000,"y":0.08},{"x":1569381600000,"y":0.25},{"x":1569381660000,"y":0.07},{"x":1569381720000,"y":0.07},{"x":1569381780000,"y":0.07},{"x":1569381840000,"y":0.08},{"x":1569381900000,"y":0.24},{"x":1569381960000,"y":0.09},{"x":1569382020000,"y":0.07},{"x":1569382080000,"y":0.06},{"x":1569382140000,"y":0.05},{"x":1569382200000,"y":0.24},{"x":1569382260000,"y":0.06},{"x":1569382320000,"y":0.08},{"x":1569382380000,"y":0.06},{"x":1569382440000,"y":0.04},{"x":1569382500000,"y":0.25},{"x":1569382560000,"y":0.05},{"x":1569382620000,"y":0.05},{"x":1569382680000,"y":0.07},{"x":1569382740000,"y":0.12},{"x":1569382800000,"y":0.24},{"x":1569382860000,"y":0.1},{"x":1569382920000,"y":0.07},{"x":1569382980000,"y":0.05},{"x":1569383040000,"y":0.1},{"x":1569383100000,"y":0.25},{"x":1569383160000,"y":0.08},{"x":1569383220000,"y":0.09},{"x":1569383280000,"y":0.07},{"x":1569383340000,"y":0.08},{"x":1569383400000,"y":0.12},{"x":1569383460000,"y":0.23},{"x":1569383520000,"y":0.09},{"x":1569383580000,"y":0.06},{"x":1569383640000,"y":0.08},{"x":1569383700000,"y":0.09},{"x":1569383760000,"y":0.22},{"x":1569383820000,"y":0.09},{"x":1569383880000,"y":0.06},{"x":1569383940000,"y":0.13},{"x":1569384000000,"y":0.13},{"x":1569384060000,"y":0.27},{"x":1569384120000,"y":0.08},{"x":1569384180000,"y":0.1},{"x":1569384240000,"y":0.07},{"x":1569384300000,"y":0.22},{"x":1569384360000,"y":0.3},{"x":1569384420000,"y":0.05},{"x":1569384480000,"y":0.08},{"x":1569384540000,"y":0.22},{"x":1569384600000,"y":0.1},{"x":1569384660000,"y":0.2},{"x":1569384720000,"y":0.11},{"x":1569384780000,"y":0.16},{"x":1569384840000,"y":0.07},{"x":1569384900000,"y":0.09},{"x":1569384960000,"y":0.21},{"x":1569385020000,"y":0.1},{"x":1569385080000,"y":0.11},{"x":1569385140000,"y":0.1},{"x":1569385200000,"y":0.14},{"x":1569385260000,"y":0.24},{"x":1569385320000,"y":0.13},{"x":1569385380000,"y":0.13},{"x":1569385440000,"y":0.14},{"x":1569385500000,"y":0.2},{"x":1569385560000,"y":0.13},{"x":1569385620000,"y":0.26},{"x":1569385680000,"y":0.12},{"x":1569385740000,"y":0.11},{"x":1569385800000,"y":0.19},{"x":1569385860000,"y":0.16},{"x":1569385920000,"y":0.28},{"x":1569385980000,"y":0.15},{"x":1569386040000,"y":0.15},{"x":1569386100000,"y":0.19},{"x":1569386160000,"y":0.13},{"x":1569386220000,"y":0.28},{"x":1569386280000,"y":0.15},{"x":1569386340000,"y":0.28},{"x":1569386400000,"y":0.21},{"x":1569386460000,"y":0.15},{"x":1569386520000,"y":0.29},{"x":1569386580000,"y":0.16},{"x":1569386640000,"y":0.13},{"x":1569386700000,"y":0.24},{"x":1569386760000,"y":0.15},{"x":1569386820000,"y":0.28},{"x":1569386880000,"y":0.14},{"x":1569386940000,"y":0.14},{"x":1569387000000,"y":0.27},{"x":1569387060000,"y":0.15},{"x":1569387120000,"y":0.28},{"x":1569387180000,"y":0.14},{"x":1569387240000,"y":0.6},{"x":1569387300000,"y":0.2},{"x":1569387360000,"y":0.14},{"x":1569387420000,"y":0.27},{"x":1569387480000,"y":0.15},{"x":1569387540000,"y":0.17},{"x":1569387600000,"y":0.86},{"x":1569387660000,"y":0.16},{"x":1569387720000,"y":0.3},{"x":1569387780000,"y":0.14},{"x":1569387840000,"y":0.16},{"x":1569387900000,"y":0.21},{"x":1569387960000,"y":0.15},{"x":1569388020000,"y":0.15},{"x":1569388080000,"y":0.27},{"x":1569388140000,"y":0.19},{"x":1569388200000,"y":0.18},{"x":1569388260000,"y":0.15},{"x":1569388320000,"y":0.14},{"x":1569388380000,"y":0.27},{"x":1569388440000,"y":0.15},{"x":1569388500000,"y":0.26},{"x":1569388560000,"y":0.14},{"x":1569388620000,"y":0.2},{"x":1569388680000,"y":0.29},{"x":1569388740000,"y":0.16},{"x":1569388800000,"y":0.21},{"x":1569388860000,"y":0.13},{"x":1569388920000,"y":0.14},{"x":1569388980000,"y":0.27},{"x":1569389040000,"y":0.15},{"x":1569389100000,"y":0.22},{"x":1569389160000,"y":0.17},{"x":1569389220000,"y":0.15},{"x":1569389280000,"y":0.27},{"x":1569389340000,"y":0.15},{"x":1569389400000,"y":0.31},{"x":1569389460000,"y":0.17},{"x":1569389520000,"y":0.16},{"x":1569389580000,"y":0.3},{"x":1569389640000,"y":0.16},{"x":1569389700000,"y":0.21},{"x":1569389760000,"y":0.15},{"x":1569389820000,"y":0.16},{"x":1569389880000,"y":1.49},{"x":1569389940000,"y":3.51},{"x":1569390000000,"y":0.19},{"x":1569390060000,"y":0.17},{"x":1569390120000,"y":0.17},{"x":1569390180000,"y":0.17},{"x":1569390240000,"y":0.3},{"x":1569390300000,"y":0.19},{"x":1569390360000,"y":0.16},{"x":1569390420000,"y":0.15},{"x":1569390480000,"y":0.17},{"x":1569390540000,"y":0.29},{"x":1569390600000,"y":0.17},{"x":1569390660000,"y":0.18},{"x":1569390720000,"y":0.19},{"x":1569390780000,"y":0.18},{"x":1569390840000,"y":0.37},{"x":1569390900000,"y":0.23},{"x":1569390960000,"y":0.17},{"x":1569391020000,"y":0.17},{"x":1569391080000,"y":0.14},{"x":1569391140000,"y":0.31},{"x":1569391200000,"y":0.26},{"x":1569391260000,"y":0.18},{"x":1569391320000,"y":0.18},{"x":1569391380000,"y":0.14},{"x":1569391440000,"y":0.3},{"x":1569391500000,"y":0.21},{"x":1569391560000,"y":0.15},{"x":1569391620000,"y":0.15},{"x":1569391680000,"y":0.19},{"x":1569391740000,"y":0.42},{"x":1569391800000,"y":0.2},{"x":1569391860000,"y":0.15},{"x":1569391920000,"y":0.14},{"x":1569391980000,"y":0.15},{"x":1569392040000,"y":0.14},{"x":1569392100000,"y":0.36},{"x":1569392160000,"y":0.16},{"x":1569392220000,"y":0.16},{"x":1569392280000,"y":0.15},{"x":1569392340000,"y":0.14},{"x":1569392400000,"y":0.32},{"x":1569392460000,"y":0.15},{"x":1569392520000,"y":0.14},{"x":1569392580000,"y":0.16},{"x":1569392640000,"y":0.17},{"x":1569392700000,"y":0.45},{"x":1569392760000,"y":0.15},{"x":1569392820000,"y":0.14},{"x":1569392880000,"y":0.13},{"x":1569392940000,"y":0.14},{"x":1569393000000,"y":0.34},{"x":1569393060000,"y":0.17},{"x":1569393120000,"y":0.14},{"x":1569393180000,"y":0.15},{"x":1569393240000,"y":0.14},{"x":1569393300000,"y":0.35},{"x":1569393360000,"y":0.15},{"x":1569393420000,"y":0.16},{"x":1569393480000,"y":0.17},{"x":1569393540000,"y":0.21},{"x":1569393600000,"y":0.34},{"x":1569393660000,"y":0.14},{"x":1569393720000,"y":0.15},{"x":1569393780000,"y":0.15},{"x":1569393840000,"y":0.14},{"x":1569393900000,"y":0.21},{"x":1569393960000,"y":0.28},{"x":1569394020000,"y":0.14},{"x":1569394080000,"y":0.13},{"x":1569394140000,"y":0.17},{"x":1569394200000,"y":0.23},{"x":1569394260000,"y":0.27},{"x":1569394320000,"y":0.15},{"x":1569394380000,"y":0.14},{"x":1569394440000,"y":0.16},{"x":1569394500000,"y":0.19},{"x":1569394560000,"y":0.31},{"x":1569394620000,"y":0.17},{"x":1569394680000,"y":0.14},{"x":1569394740000,"y":0.17},{"x":1569394800000,"y":0.25},{"x":1569394860000,"y":0.29},{"x":1569394920000,"y":0.14},{"x":1569394980000,"y":0.16},{"x":1569395040000,"y":0.14},{"x":1569395100000,"y":0.2},{"x":1569395160000,"y":0.26},{"x":1569395220000,"y":0.14},{"x":1569395280000,"y":0.06},{"x":1569395340000,"y":0.18},{"x":1569395400000,"y":0.11},{"x":1569395460000,"y":0.21},{"x":1569395520000,"y":0.09},{"x":1569395580000,"y":0.06},{"x":1569395640000,"y":0.07},{"x":1569395700000,"y":0.1},{"x":1569395760000,"y":0.19},{"x":1569395820000,"y":0.06},{"x":1569395880000,"y":0.06},{"x":1569395940000,"y":0.07},{"x":1569396000000,"y":0.12},{"x":1569396060000,"y":0.2},{"x":1569396120000,"y":0.07},{"x":1569396180000,"y":0.07},{"x":1569396240000,"y":0.07},{"x":1569396300000,"y":0.12},{"x":1569396360000,"y":0.08},{"x":1569396420000,"y":0.24},{"x":1569396480000,"y":0.09},{"x":1569396540000,"y":0.08},{"x":1569396600000,"y":0.12},{"x":1569396660000,"y":0.07},{"x":1569396720000,"y":0.2},{"x":1569396780000,"y":0.07},{"x":1569396840000,"y":0.08},{"x":1569396900000,"y":0.12},{"x":1569396960000,"y":0.07},{"x":1569397020000,"y":0.79},{"x":1569397080000,"y":0.07},{"x":1569397140000,"y":0.19},{"x":1569397200000,"y":0.12},{"x":1569397260000,"y":0.06},{"x":1569397320000,"y":0.22},{"x":1569397380000,"y":0.06},{"x":1569397440000,"y":0.07},{"x":1569397500000,"y":0.1},{"x":1569397560000,"y":0.08},{"x":1569397620000,"y":0.22},{"x":1569397680000,"y":0.07},{"x":1569397740000,"y":0.07},{"x":1569397800000,"y":0.12},{"x":1569397860000,"y":0.07},{"x":1569397920000,"y":0.2},{"x":1569397980000,"y":0.07},{"x":1569398040000,"y":0.05},{"x":1569398100000,"y":0.27},{"x":1569398160000,"y":0.12},{"x":1569398220000,"y":0.48},{"x":1569398280000,"y":0.06},{"x":1569398340000,"y":0.06},{"x":1569398400000,"y":0.16},{"x":1569398460000,"y":0.06},{"x":1569398520000,"y":0.07},{"x":1569398580000,"y":0.2},{"x":1569398640000,"y":0.05},{"x":1569398700000,"y":0.1},{"x":1569398760000,"y":0.07},{"x":1569398820000,"y":0.05},{"x":1569398880000,"y":0.21},{"x":1569398940000,"y":0.11},{"x":1569399000000,"y":0.12},{"x":1569399060000,"y":0.08},{"x":1569399120000,"y":0.05},{"x":1569399180000,"y":0.2},{"x":1569399240000,"y":0.07},{"x":1569399300000,"y":0.12},{"x":1569399360000,"y":0.06},{"x":1569399420000,"y":0.06},{"x":1569399480000,"y":0.2},{"x":1569399540000,"y":0.05},{"x":1569399600000,"y":0.1},{"x":1569399660000,"y":0.07},{"x":1569399720000,"y":0.05},{"x":1569399780000,"y":0.2},{"x":1569399840000,"y":0.1},{"x":1569399900000,"y":0.11},{"x":1569399960000,"y":0.07},{"x":1569400020000,"y":0.05},{"x":1569400080000,"y":0.19},{"x":1569400140000,"y":0.06},{"x":1569400200000,"y":0.16},{"x":1569400260000,"y":0.06},{"x":1569400320000,"y":0.07},{"x":1569400380000,"y":0.2},{"x":1569400440000,"y":0.08},{"x":1569400500000,"y":0.17},{"x":1569400560000,"y":0.08},{"x":1569400620000,"y":0.05},{"x":1569400680000,"y":0.05},{"x":1569400740000,"y":0.33},{"x":1569400800000,"y":0.15},{"x":1569400860000,"y":0.04},{"x":1569400920000,"y":0.07},{"x":1569400980000,"y":0.06},{"x":1569401040000,"y":0.2},{"x":1569401100000,"y":0.11},{"x":1569401160000,"y":0.05},{"x":1569401220000,"y":0.07},{"x":1569401280000,"y":0.05},{"x":1569401340000,"y":0.22},{"x":1569401400000,"y":0.14},{"x":1569401460000,"y":0.06},{"x":1569401520000,"y":0.07},{"x":1569401580000,"y":0.07},{"x":1569401640000,"y":0.2},{"x":1569401700000,"y":0.13},{"x":1569401760000,"y":0.07},{"x":1569401820000,"y":0.05},{"x":1569401880000,"y":0.05},{"x":1569401940000,"y":0.22},{"x":1569402000000,"y":0.14},{"x":1569402060000,"y":0.07},{"x":1569402120000,"y":0.06},{"x":1569402180000,"y":0.07},{"x":1569402240000,"y":0.19},{"x":1569402300000,"y":0.11},{"x":1569402360000,"y":0.05},{"x":1569402420000,"y":0.07},{"x":1569402480000,"y":0.07},{"x":1569402540000,"y":0.3},{"x":1569402600000,"y":0.12},{"x":1569402660000,"y":0.07},{"x":1569402720000,"y":0.07},{"x":1569402780000,"y":0.05},{"x":1569402840000,"y":0.2},{"x":1569402900000,"y":0.13},{"x":1569402960000,"y":0.08},{"x":1569403020000,"y":0.09},{"x":1569403080000,"y":0.08},{"x":1569403140000,"y":0.09},{"x":1569403200000,"y":0.31},{"x":1569403260000,"y":0.07},{"x":1569403320000,"y":0.08},{"x":1569403380000,"y":0.11},{"x":1569403440000,"y":0.07},{"x":1569403500000,"y":0.3},{"x":1569403560000,"y":0.06},{"x":1569403620000,"y":0.06},{"x":1569403680000,"y":0.09},{"x":1569403740000,"y":0.1},{"x":1569403800000,"y":0.31},{"x":1569403860000,"y":0.06},{"x":1569403920000,"y":0.08},{"x":1569403980000,"y":0.06},{"x":1569404040000,"y":0.08},{"x":1569404100000,"y":0.26},{"x":1569404160000,"y":0.07},{"x":1569404220000,"y":0.06},{"x":1569404280000,"y":0.06},{"x":1569404340000,"y":0.16},{"x":1569404400000,"y":0.27},{"x":1569404460000,"y":0.08},{"x":1569404520000,"y":0.09},{"x":1569404580000,"y":0.07},{"x":1569404640000,"y":0.05},{"x":1569404700000,"y":0.28},{"x":1569404760000,"y":0.05},{"x":1569404820000,"y":0.05},{"x":1569404880000,"y":0.09},{"x":1569404940000,"y":0.07},{"x":1569405000000,"y":0.23},{"x":1569405060000,"y":0.06},{"x":1569405120000,"y":0.05},{"x":1569405180000,"y":0.06},{"x":1569405240000,"y":0.06},{"x":1569405300000,"y":0.12},{"x":1569405360000,"y":2.68},{"x":1569405420000,"y":0.07},{"x":1569405480000,"y":0.05},{"x":1569405540000,"y":0.07},{"x":1569405600000,"y":0.14},{"x":1569405660000,"y":0.18},{"x":1569405720000,"y":0.06},{"x":1569405780000,"y":0.05},{"x":1569405840000,"y":0.07},{"x":1569405900000,"y":0.13},{"x":1569405960000,"y":0.18},{"x":1569406020000,"y":0.04},{"x":1569406080000,"y":0.07},{"x":1569406140000,"y":0.14},{"x":1569406200000,"y":0.11},{"x":1569406260000,"y":0.22},{"x":1569406320000,"y":0.08},{"x":1569406380000,"y":0.09},{"x":1569406440000,"y":0.08},{"x":1569406500000,"y":0.17},{"x":1569406560000,"y":0.2},{"x":1569406620000,"y":0.06},{"x":1569406680000,"y":0.07},{"x":1569406740000,"y":0.06},{"x":1569406800000,"y":0.12},{"x":1569406860000,"y":0.2},{"x":1569406920000,"y":0.07},{"x":1569406980000,"y":0.05},{"x":1569407040000,"y":0.07},{"x":1569407100000,"y":0.17},{"x":1569407160000,"y":0.21},{"x":1569407220000,"y":0.04},{"x":1569407280000,"y":0.06},{"x":1569407340000,"y":0.07},{"x":1569407400000,"y":0.14},{"x":1569407460000,"y":0.09},{"x":1569407520000,"y":0.18},{"x":1569407580000,"y":0.05},{"x":1569407640000,"y":0.05},{"x":1569407700000,"y":0.11},{"x":1569407760000,"y":0.11},{"x":1569407820000,"y":0.19},{"x":1569407880000,"y":1.25},{"x":1569407940000,"y":0.17},{"x":1569408000000,"y":0.12},{"x":1569408060000,"y":0.05},{"x":1569408120000,"y":0.19},{"x":1569408180000,"y":0.04},{"x":1569408240000,"y":0.05},{"x":1569408300000,"y":0.14},{"x":1569408360000,"y":0.05},{"x":1569408420000,"y":0.19},{"x":1569408480000,"y":0.06},{"x":1569408540000,"y":0.05},{"x":1569408600000,"y":0.14},{"x":1569408660000,"y":0.09},{"x":1569408720000,"y":0.2},{"x":1569408780000,"y":0.05},{"x":1569408840000,"y":0.06},{"x":1569408900000,"y":0.19},{"x":1569408960000,"y":0.07},{"x":1569409020000,"y":0.17},{"x":1569409080000,"y":0.1},{"x":1569409140000,"y":0.11},{"x":1569409200000,"y":0.21},{"x":1569409260000,"y":3.87},{"x":1569409320000,"y":0.1},{"x":1569409380000,"y":0.19},{"x":1569409440000,"y":0.07},{"x":1569409500000,"y":0.17},{"x":1569409560000,"y":0.09},{"x":1569409620000,"y":0.05},{"x":1569409680000,"y":0.22},{"x":1569409740000,"y":0.14},{"x":1569409800000,"y":0.13},{"x":1569409860000,"y":0.06},{"x":1569409920000,"y":0.1},{"x":1569409980000,"y":0.2},{"x":1569410040000,"y":0.09},{"x":1569410100000,"y":0.13},{"x":1569410160000,"y":0.07},{"x":1569410220000,"y":0.07},{"x":1569410280000,"y":0.24},{"x":1569410340000,"y":0.08},{"x":1569410400000,"y":0.1},{"x":1569410460000,"y":3.93},{"x":1569410520000,"y":0.1},{"x":1569410580000,"y":0.19},{"x":1569410640000,"y":0.06},{"x":1569410700000,"y":1.12},{"x":1569410760000,"y":0.08},{"x":1569410820000,"y":0.12},{"x":1569410880000,"y":0.24},{"x":1569410940000,"y":0.07},{"x":1569411000000,"y":0.19},{"x":1569411060000,"y":0.06},{"x":1569411120000,"y":0.07},{"x":1569411180000,"y":0.1},{"x":1569411240000,"y":0.19},{"x":1569411300000,"y":0.15},{"x":1569411360000,"y":0.1},{"x":1569411420000,"y":0.07},{"x":1569411480000,"y":0.08},{"x":1569411540000,"y":0.35},{"x":1569411600000,"y":0.17},{"x":1569411660000,"y":0.08},{"x":1569411720000,"y":0.07},{"x":1569411780000,"y":0.06},{"x":1569411840000,"y":3.44},{"x":1569411900000,"y":0.18},{"x":1569411960000,"y":0.07},{"x":1569412020000,"y":0.11},{"x":1569412080000,"y":0.07},{"x":1569412140000,"y":0.2},{"x":1569412200000,"y":0.16},{"x":1569412260000,"y":0.06},{"x":1569412320000,"y":0.09},{"x":1569412380000,"y":0.05},{"x":1569412440000,"y":0.23},{"x":1569412500000,"y":0.17},{"x":1569412560000,"y":0.09},{"x":1569412620000,"y":0.07},{"x":1569412680000,"y":0.08},{"x":1569412740000,"y":0.24},{"x":1569412800000,"y":0.17},{"x":1569412860000,"y":0.07},{"x":1569412920000,"y":0.08},{"x":1569412980000,"y":0.07},{"x":1569413040000,"y":0.22},{"x":1569413100000,"y":0.15},{"x":1569413160000,"y":0.09},{"x":1569413220000,"y":0.07},{"x":1569413280000,"y":0.09},{"x":1569413340000,"y":0.37},{"x":1569413400000,"y":0.14},{"x":1569413460000,"y":0.08},{"x":1569413520000,"y":0.07},{"x":1569413580000,"y":0.08},{"x":1569413640000,"y":0.1},{"x":1569413700000,"y":0.32},{"x":1569413760000,"y":0.08},{"x":1569413820000,"y":0.06},{"x":1569413880000,"y":0.07},{"x":1569413940000,"y":0.09},{"x":1569414000000,"y":0.31},{"x":1569414060000,"y":0.07},{"x":1569414120000,"y":0.08},{"x":1569414180000,"y":0.07},{"x":1569414240000,"y":0.07},{"x":1569414300000,"y":0.28},{"x":1569414360000,"y":0.07},{"x":1569414420000,"y":0.07},{"x":1569414480000,"y":0.05},{"x":1569414540000,"y":0.04},{"x":1569414600000,"y":0.3},{"x":1569414660000,"y":0.07},{"x":1569414720000,"y":0.07},{"x":1569414780000,"y":0.1},{"x":1569414840000,"y":0.07},{"x":1569414900000,"y":0.25},{"x":1569414960000,"y":0.09},{"x":1569415020000,"y":0.05},{"x":1569415080000,"y":0.09},{"x":1569415140000,"y":0.18},{"x":1569415200000,"y":0.26},{"x":1569415260000,"y":0.07},{"x":1569415320000,"y":0.11},{"x":1569415380000,"y":0.05},{"x":1569415440000,"y":0.05},{"x":1569415500000,"y":0.26},{"x":1569415560000,"y":0.06},{"x":1569415620000,"y":0.06},{"x":1569415680000,"y":0.08},{"x":1569415740000,"y":0.07},{"x":1569415800000,"y":0.12},{"x":1569415860000,"y":0.23},{"x":1569415920000,"y":0.13},{"x":1569415980000,"y":0.08},{"x":1569416040000,"y":0.07},{"x":1569416100000,"y":0.12},{"x":1569416160000,"y":0.2},{"x":1569416220000,"y":0.09},{"x":1569416280000,"y":0.05},{"x":1569416340000,"y":0.06},{"x":1569416400000,"y":0.29},{"x":1569416460000,"y":0.22},{"x":1569416520000,"y":0.06},{"x":1569416580000,"y":0.07},{"x":1569416640000,"y":0.06},{"x":1569416700000,"y":0.16},{"x":1569416760000,"y":0.19},{"x":1569416820000,"y":0.06},{"x":1569416880000,"y":0.12},{"x":1569416940000,"y":0.16},{"x":1569417000000,"y":0.13},{"x":1569417060000,"y":0.22},{"x":1569417120000,"y":0.08},{"x":1569417180000,"y":0.14},{"x":1569417240000,"y":0.12},{"x":1569417300000,"y":0.18},{"x":1569417360000,"y":0.2},{"x":1569417420000,"y":0.08},{"x":1569417480000,"y":0.1},{"x":1569417540000,"y":0.15},{"x":1569417600000,"y":0.2},{"x":1569417660000,"y":0.22},{"x":1569417720000,"y":0.05},{"x":1569417780000,"y":0.1},{"x":1569417840000,"y":0.07},{"x":1569417900000,"y":0.12},{"x":1569417960000,"y":0.05},{"x":1569418020000,"y":0.21},{"x":1569418080000,"y":0.1},{"x":1569418140000,"y":0.12},{"x":1569418200000,"y":0.12},{"x":1569418260000,"y":0.09},{"x":1569418320000,"y":0.21},{"x":1569418380000,"y":0.1},{"x":1569418440000,"y":0.16},{"x":1569418500000,"y":0.13},{"x":1569418560000,"y":0.14},{"x":1569418620000,"y":0.27},{"x":1569418680000,"y":0.1},{"x":1569418740000,"y":0.17},{"x":1569418800000,"y":0.15},{"x":1569418860000,"y":0.1},{"x":1569418920000,"y":0.27},{"x":1569418980000,"y":0.12},{"x":1569419040000,"y":0.12},{"x":1569419100000,"y":0.21},{"x":1569419160000,"y":0.13},{"x":1569419220000,"y":0.26},{"x":1569419280000,"y":0.13},{"x":1569419340000,"y":0.15},{"x":1569419400000,"y":0.22},{"x":1569419460000,"y":0.15},{"x":1569419520000,"y":0.27},{"x":1569419580000,"y":0.17},{"x":1569419640000,"y":0.18},{"x":1569419700000,"y":0.21},{"x":1569419760000,"y":0.13},{"x":1569419820000,"y":1.72},{"x":1569419880000,"y":0.15},{"x":1569419940000,"y":0.13},{"x":1569420000000,"y":0.24},{"x":1569420060000,"y":0.13},{"x":1569420120000,"y":0.15},{"x":1569420180000,"y":0.29},{"x":1569420240000,"y":0.15},{"x":1569420300000,"y":0.19},{"x":1569420360000,"y":0.16},{"x":1569420420000,"y":0.14},{"x":1569420480000,"y":0.27},{"x":1569420540000,"y":0.19},{"x":1569420600000,"y":0.22},{"x":1569420660000,"y":0.17},{"x":1569420720000,"y":0.15},{"x":1569420780000,"y":0.34},{"x":1569420840000,"y":0.14},{"x":1569420900000,"y":0.19},{"x":1569420960000,"y":0.14},{"x":1569421020000,"y":0.17},{"x":1569421080000,"y":0.27},{"x":1569421140000,"y":0.17},{"x":1569421200000,"y":0.22},{"x":1569421260000,"y":0.14},{"x":1569421320000,"y":0.17},{"x":1569421380000,"y":0.28},{"x":1569421440000,"y":0.14},{"x":1569421500000,"y":0.24},{"x":1569421560000,"y":0.13},{"x":1569421620000,"y":0.15},{"x":1569421680000,"y":0.27},{"x":1569421740000,"y":0.15},{"x":1569421800000,"y":0.27},{"x":1569421860000,"y":0.19},{"x":1569421920000,"y":0.15},{"x":1569421980000,"y":0.3},{"x":1569422040000,"y":0.16},{"x":1569422100000,"y":0.26},{"x":1569422160000,"y":0.16},{"x":1569422220000,"y":0.16},{"x":1569422280000,"y":0.34},{"x":1569422340000,"y":0.22},{"x":1569422400000,"y":0.56},{"x":1569422460000,"y":0.18},{"x":1569422520000,"y":0.17},{"x":1569422580000,"y":0.18},{"x":1569422640000,"y":0.28},{"x":1569422700000,"y":0.27},{"x":1569422760000,"y":0.15},{"x":1569422820000,"y":0.14},{"x":1569422880000,"y":0.16},{"x":1569422940000,"y":0.3},{"x":1569423000000,"y":0.19},{"x":1569423060000,"y":0.15},{"x":1569423120000,"y":0.14},{"x":1569423180000,"y":0.16},{"x":1569423240000,"y":0.27},{"x":1569423300000,"y":0.26},{"x":1569423360000,"y":0.16},{"x":1569423420000,"y":0.17},{"x":1569423480000,"y":0.17},{"x":1569423540000,"y":0.27},{"x":1569423600000,"y":0.26},{"x":1569423660000,"y":0.17},{"x":1569423720000,"y":0.14},{"x":1569423780000,"y":0.15},{"x":1569423840000,"y":0.31},{"x":1569423900000,"y":0.19},{"x":1569423960000,"y":0.13},{"x":1569424020000,"y":0.15},{"x":1569424080000,"y":0.14},{"x":1569424140000,"y":0.35},{"x":1569424200000,"y":0.23},{"x":1569424260000,"y":0.15},{"x":1569424320000,"y":0.17},{"x":1569424380000,"y":0.13},{"x":1569424440000,"y":0.31},{"x":1569424500000,"y":0.24},{"x":1569424560000,"y":0.16},{"x":1569424620000,"y":0.16},{"x":1569424680000,"y":0.17},{"x":1569424740000,"y":0.15},{"x":1569424800000,"y":0.39},{"x":1569424860000,"y":0.13},{"x":1569424920000,"y":0.13},{"x":1569424980000,"y":0.14},{"x":1569425040000,"y":0.17},{"x":1569425100000,"y":0.39},{"x":1569425160000,"y":0.15},{"x":1569425220000,"y":0.15},{"x":1569425280000,"y":0.16},{"x":1569425340000,"y":0.15},{"x":1569425400000,"y":0.38},{"x":1569425460000,"y":0.13},{"x":1569425520000,"y":0.14},{"x":1569425580000,"y":0.14},{"x":1569425640000,"y":0.15},{"x":1569425700000,"y":0.32},{"x":1569425760000,"y":0.14},{"x":1569425820000,"y":0.15},{"x":1569425880000,"y":0.16},{"x":1569425940000,"y":0.18},{"x":1569426000000,"y":0.34},{"x":1569426060000,"y":0.14},{"x":1569426120000,"y":0.14},{"x":1569426180000,"y":0.16},{"x":1569426240000,"y":0.14},{"x":1569426300000,"y":0.35},{"x":1569426360000,"y":0.15},{"x":1569426420000,"y":0.16},{"x":1569426480000,"y":0.14},{"x":1569426540000,"y":0.16},{"x":1569426600000,"y":0.32},{"x":1569426660000,"y":0.17},{"x":1569426720000,"y":0.12},{"x":1569426780000,"y":0.14},{"x":1569426840000,"y":0.13},{"x":1569426900000,"y":0.34},{"x":1569426960000,"y":0.17},{"x":1569427020000,"y":0.14},{"x":1569427080000,"y":1.22},{"x":1569427140000,"y":0.13},{"x":1569427200000,"y":0.23},{"x":1569427260000,"y":0.29},{"x":1569427320000,"y":0.13},{"x":1569427380000,"y":0.14},{"x":1569427440000,"y":0.13},{"x":1569427500000,"y":0.22},{"x":1569427560000,"y":0.31},{"x":1569427620000,"y":0.15},{"x":1569427680000,"y":0.14},{"x":1569427740000,"y":0.26},{"x":1569427800000,"y":0.22},{"x":1569427860000,"y":0.31},{"x":1569427920000,"y":0.15},{"x":1569427980000,"y":0.13},{"x":1569428040000,"y":0.15},{"x":1569428100000,"y":0.31},{"x":1569428160000,"y":0.28},{"x":1569428220000,"y":0.17},{"x":1569428280000,"y":0.15},{"x":1569428340000,"y":0.16},{"x":1569428400000,"y":0.22},{"x":1569428460000,"y":0.31},{"x":1569428520000,"y":0.12},{"x":1569428580000,"y":0.09},{"x":1569428640000,"y":0.09},{"x":1569428700000,"y":0.12},{"x":1569428760000,"y":0.2},{"x":1569428820000,"y":0.05},{"x":1569428880000,"y":0.07},{"x":1569428940000,"y":0.07},{"x":1569429000000,"y":0.14},{"x":1569429060000,"y":0.09},{"x":1569429120000,"y":0.25},{"x":1569429180000,"y":0.07},{"x":1569429240000,"y":0.05},{"x":1569429300000,"y":0.17},{"x":1569429360000,"y":0.07},{"x":1569429420000,"y":0.22},{"x":1569429480000,"y":0.05},{"x":1569429540000,"y":0.18},{"x":1569429600000,"y":0.2},{"x":1569429660000,"y":0.55},{"x":1569429720000,"y":0.19},{"x":1569429780000,"y":0.05},{"x":1569429840000,"y":0.04},{"x":1569429900000,"y":0.15},{"x":1569429960000,"y":0.07},{"x":1569430020000,"y":0.2},{"x":1569430080000,"y":0.08},{"x":1569430140000,"y":0.07},{"x":1569430200000,"y":0.15},{"x":1569430260000,"y":0.08},{"x":1569430320000,"y":0.22},{"x":1569430380000,"y":0.08},{"x":1569430440000,"y":0.06},{"x":1569430500000,"y":0.14},{"x":1569430560000,"y":0.06},{"x":1569430620000,"y":0.21},{"x":1569430680000,"y":0.08},{"x":1569430740000,"y":0.09},{"x":1569430800000,"y":0.21},{"x":1569430860000,"y":0.06},{"x":1569430920000,"y":0.23},{"x":1569430980000,"y":0.07},{"x":1569431040000,"y":0.08},{"x":1569431100000,"y":0.11},{"x":1569431160000,"y":0.05},{"x":1569431220000,"y":0.09},{"x":1569431280000,"y":0.23},{"x":1569431340000,"y":0.14},{"x":1569431400000,"y":0.1},{"x":1569431460000,"y":0.05},{"x":1569431520000,"y":0.08},{"x":1569431580000,"y":0.21},{"x":1569431640000,"y":0.08},{"x":1569431700000,"y":0.13},{"x":1569431760000,"y":0.09},{"x":1569431820000,"y":0.1},{"x":1569431880000,"y":0.21},{"x":1569431940000,"y":0.06},{"x":1569432000000,"y":0.1},{"x":1569432060000,"y":0.07},{"x":1569432120000,"y":0.11},{"x":1569432180000,"y":0.2},{"x":1569432240000,"y":0.07},{"x":1569432300000,"y":0.13},{"x":1569432360000,"y":0.05},{"x":1569432420000,"y":0.07},{"x":1569432480000,"y":0.2},{"x":1569432540000,"y":0.1},{"x":1569432600000,"y":0.13},{"x":1569432660000,"y":0.09},{"x":1569432720000,"y":0.08},{"x":1569432780000,"y":0.22},{"x":1569432840000,"y":0.07},{"x":1569432900000,"y":0.12},{"x":1569432960000,"y":0.05},{"x":1569433020000,"y":0.1},{"x":1569433080000,"y":0.2},{"x":1569433140000,"y":0.13},{"x":1569433200000,"y":0.15},{"x":1569433260000,"y":0.21},{"x":1569433320000,"y":0.05},{"x":1569433380000,"y":0.05},{"x":1569433440000,"y":0.19},{"x":1569433500000,"y":0.13},{"x":1569433560000,"y":0.04},{"x":1569433620000,"y":0.06},{"x":1569433680000,"y":0.06},{"x":1569433740000,"y":5.06},{"x":1569433800000,"y":0.14},{"x":1569433860000,"y":0.06},{"x":1569433920000,"y":0.06},{"x":1569433980000,"y":0.09},{"x":1569434040000,"y":0.22},{"x":1569434100000,"y":0.13},{"x":1569434160000,"y":0.06},{"x":1569434220000,"y":0.05},{"x":1569434280000,"y":0.05},{"x":1569434340000,"y":0.21},{"x":1569434400000,"y":0.12},{"x":1569434460000,"y":0.05},{"x":1569434520000,"y":0.07},{"x":1569434580000,"y":0.05},{"x":1569434640000,"y":0.19},{"x":1569434700000,"y":0.09},{"x":1569434760000,"y":0.07},{"x":1569434820000,"y":0.07},{"x":1569434880000,"y":0.04},{"x":1569434940000,"y":0.28},{"x":1569435000000,"y":0.1},{"x":1569435060000,"y":0.06},{"x":1569435120000,"y":0.04},{"x":1569435180000,"y":0.04},{"x":1569435240000,"y":0.19},{"x":1569435300000,"y":0.1},{"x":1569435360000,"y":0.05},{"x":1569435420000,"y":0.08},{"x":1569435480000,"y":0.08},{"x":1569435540000,"y":0.23},{"x":1569435600000,"y":0.13},{"x":1569435660000,"y":0.07},{"x":1569435720000,"y":0.05},{"x":1569435780000,"y":0.06},{"x":1569435840000,"y":0.08},{"x":1569435900000,"y":0.25},{"x":1569435960000,"y":0.05},{"x":1569436020000,"y":0.07},{"x":1569436080000,"y":0.05},{"x":1569436140000,"y":0.06},{"x":1569436200000,"y":0.27},{"x":1569436260000,"y":0.05},{"x":1569436320000,"y":0.1},{"x":1569436380000,"y":0.1},{"x":1569436440000,"y":0.07},{"x":1569436500000,"y":0.29},{"x":1569436560000,"y":0.07},{"x":1569436620000,"y":0.08},{"x":1569436680000,"y":0.06},{"x":1569436740000,"y":0.18},{"x":1569436800000,"y":0.27},{"x":1569436860000,"y":0.05},{"x":1569436920000,"y":0.06},{"x":1569436980000,"y":0.08},{"x":1569437040000,"y":0.1},{"x":1569437100000,"y":0.24},{"x":1569437160000,"y":0.05},{"x":1569437220000,"y":0.09},{"x":1569437280000,"y":0.07},{"x":1569437340000,"y":0.06},{"x":1569437400000,"y":0.27},{"x":1569437460000,"y":0.06},{"x":1569437520000,"y":0.07},{"x":1569437580000,"y":0.06},{"x":1569437640000,"y":0.05},{"x":1569437700000,"y":0.27},{"x":1569437760000,"y":0.06},{"x":1569437820000,"y":0.07},{"x":1569437880000,"y":0.04},{"x":1569437940000,"y":0.05},{"x":1569438000000,"y":0.24},{"x":1569438060000,"y":0.05},{"x":1569438120000,"y":0.08},{"x":1569438180000,"y":0.05},{"x":1569438240000,"y":0.05},{"x":1569438300000,"y":0.12},{"x":1569438360000,"y":0.22},{"x":1569438420000,"y":0.06},{"x":1569438480000,"y":0.05},{"x":1569438540000,"y":0.13},{"x":1569438600000,"y":0.13},{"x":1569438660000,"y":0.21},{"x":1569438720000,"y":0.07},{"x":1569438780000,"y":0.04},{"x":1569438840000,"y":0.07},{"x":1569438900000,"y":0.13},{"x":1569438960000,"y":0.2},{"x":1569439020000,"y":0.07},{"x":1569439080000,"y":0.62},{"x":1569439140000,"y":4.4},{"x":1569439200000,"y":0.53},{"x":1569439260000,"y":0.39},{"x":1569439320000,"y":0.54},{"x":1569439380000,"y":0.64},{"x":1569439440000,"y":0.34},{"x":1569439500000,"y":0.16},{"x":1569439560000,"y":0.21},{"x":1569439620000,"y":0.1},{"x":1569439680000,"y":0.28},{"x":1569439740000,"y":0.33},{"x":1569439800000,"y":0.65},{"x":1569439860000,"y":0.29},{"x":1569439920000,"y":0.07},{"x":1569439980000,"y":0.08},{"x":1569440040000,"y":0.1},{"x":1569440100000,"y":0.13},{"x":1569440160000,"y":0.25},{"x":1569440220000,"y":0.08},{"x":1569440280000,"y":0.06},{"x":1569440340000,"y":0.25},{"x":1569440400000,"y":0.18},{"x":1569440460000,"y":0.11},{"x":1569440520000,"y":0.15},{"x":1569440580000,"y":0.05},{"x":1569440640000,"y":0.2},{"x":1569440700000,"y":0.22},{"x":1569440760000,"y":0.11},{"x":1569440820000,"y":0.41},{"x":1569440880000,"y":21.22},{"x":1569440940000,"y":0.1},{"x":1569441000000,"y":20.92},{"x":1569441060000,"y":0.23},{"x":1569441120000,"y":0.22},{"x":1569441180000,"y":0.07},{"x":1569441240000,"y":0.11},{"x":1569441300000,"y":0.18},{"x":1569441360000,"y":0.12},{"x":1569441420000,"y":0.28},{"x":1569441480000,"y":0.08},{"x":1569441540000,"y":0.07},{"x":1569441600000,"y":0.15},{"x":1569441660000,"y":0.11},{"x":1569441720000,"y":0.26},{"x":1569441780000,"y":0.07},{"x":1569441840000,"y":0.08},{"x":1569441900000,"y":0.13},{"x":1569441960000,"y":0.09},{"x":1569442020000,"y":0.21},{"x":1569442080000,"y":0.06},{"x":1569442140000,"y":0.14},{"x":1569442200000,"y":0.11},{"x":1569442260000,"y":0.09},{"x":1569442320000,"y":0.22},{"x":1569442380000,"y":0.1},{"x":1569442440000,"y":0.1},{"x":1569442500000,"y":0.2},{"x":1569442560000,"y":0.08},{"x":1569442620000,"y":0.1},{"x":1569442680000,"y":0.24},{"x":1569442740000,"y":0.09},{"x":1569442800000,"y":0.17},{"x":1569442860000,"y":0.08},{"x":1569442920000,"y":0.09},{"x":1569442980000,"y":0.22},{"x":1569443040000,"y":0.1},{"x":1569443100000,"y":0.16},{"x":1569443160000,"y":0.06},{"x":1569443220000,"y":0.07},{"x":1569443280000,"y":0.25},{"x":1569443340000,"y":0.1},{"x":1569443400000,"y":0.18},{"x":1569443460000,"y":0.08},{"x":1569443520000,"y":0.11},{"x":1569443580000,"y":0.23},{"x":1569443640000,"y":0.1},{"x":1569443700000,"y":0.15},{"x":1569443760000,"y":0.11},{"x":1569443820000,"y":0.09},{"x":1569443880000,"y":0.23},{"x":1569443940000,"y":0.15},{"x":1569444000000,"y":0.13},{"x":1569444060000,"y":0.12},{"x":1569444120000,"y":0.09},{"x":1569444180000,"y":0.21},{"x":1569444240000,"y":0.1},{"x":1569444300000,"y":0.13},{"x":1569444360000,"y":0.1},{"x":1569444420000,"y":0.09},{"x":1569444480000,"y":0.22},{"x":1569444540000,"y":0.1},{"x":1569444600000,"y":0.15},{"x":1569444660000,"y":0.12},{"x":1569444720000,"y":0.09},{"x":1569444780000,"y":0.22},{"x":1569444840000,"y":0.07},{"x":1569444900000,"y":0.14},{"x":1569444960000,"y":0.1},{"x":1569445020000,"y":0.1},{"x":1569445080000,"y":0.22},{"x":1569445140000,"y":0.07},{"x":1569445200000,"y":0.18},{"x":1569445260000,"y":0.09},{"x":1569445320000,"y":0.1},{"x":1569445380000,"y":0.1},{"x":1569445440000,"y":0.25},{"x":1569445500000,"y":0.16},{"x":1569445560000,"y":0.1},{"x":1569445620000,"y":0.08},{"x":1569445680000,"y":0.07},{"x":1569445740000,"y":0.36},{"x":1569445800000,"y":0.17},{"x":1569445860000,"y":0.08},{"x":1569445920000,"y":0.1},{"x":1569445980000,"y":0.07},{"x":1569446040000,"y":0.24},{"x":1569446100000,"y":0.17},{"x":1569446160000,"y":0.08},{"x":1569446220000,"y":0.09},{"x":1569446280000,"y":0.08},{"x":1569446340000,"y":0.25},{"x":1569446400000,"y":0.13},{"x":1569446460000,"y":0.09},{"x":1569446520000,"y":0.07},{"x":1569446580000,"y":0.12},{"x":1569446640000,"y":0.26},{"x":1569446700000,"y":0.16},{"x":1569446760000,"y":0.07},{"x":1569446820000,"y":0.06},{"x":1569446880000,"y":0.08},{"x":1569446940000,"y":0.27},{"x":1569447000000,"y":0.1},{"x":1569447060000,"y":0.07},{"x":1569447120000,"y":0.06},{"x":1569447180000,"y":0.07},{"x":1569447240000,"y":0.22},{"x":1569447300000,"y":0.17},{"x":1569447360000,"y":0.05},{"x":1569447420000,"y":0.1},{"x":1569447480000,"y":0.07},{"x":1569447540000,"y":0.26},{"x":1569447600000,"y":0.08},{"x":1569447660000,"y":0.07},{"x":1569447720000,"y":0.09},{"x":1569447780000,"y":0.05},{"x":1569447840000,"y":0.08},{"x":1569447900000,"y":0.3},{"x":1569447960000,"y":0.07},{"x":1569448020000,"y":0.07},{"x":1569448080000,"y":0.1},{"x":1569448140000,"y":0.08},{"x":1569448200000,"y":0.31},{"x":1569448260000,"y":0.11},{"x":1569448320000,"y":0.09},{"x":1569448380000,"y":0.06},{"x":1569448440000,"y":0.09},{"x":1569448500000,"y":0.31},{"x":1569448560000,"y":0.1},{"x":1569448620000,"y":0.06},{"x":1569448680000,"y":0.09},{"x":1569448740000,"y":0.07},{"x":1569448800000,"y":0.3},{"x":1569448860000,"y":0.08},{"x":1569448920000,"y":0.1},{"x":1569448980000,"y":0.09},{"x":1569449040000,"y":0.06},{"x":1569449100000,"y":0.27},{"x":1569449160000,"y":0.11},{"x":1569449220000,"y":0.09},{"x":1569449280000,"y":0.07},{"x":1569449340000,"y":0.17},{"x":1569449400000,"y":0.32},{"x":1569449460000,"y":0.07},{"x":1569449520000,"y":0.07},{"x":1569449580000,"y":0.09},{"x":1569449640000,"y":0.08},{"x":1569449700000,"y":0.27},{"x":1569449760000,"y":0.07},{"x":1569449820000,"y":0.1},{"x":1569449880000,"y":0.12},{"x":1569449940000,"y":0.11},{"x":1569450000000,"y":0.26},{"x":1569450060000,"y":0.07},{"x":1569450120000,"y":0.07},{"x":1569450180000,"y":0.05},{"x":1569450240000,"y":0.1},{"x":1569450300000,"y":0.25},{"x":1569450360000,"y":0.11},{"x":1569450420000,"y":0.09},{"x":1569450480000,"y":0.07},{"x":1569450540000,"y":0.07},{"x":1569450600000,"y":0.15},{"x":1569450660000,"y":0.3},{"x":1569450720000,"y":0.08},{"x":1569450780000,"y":0.08},{"x":1569450840000,"y":0.1},{"x":1569450900000,"y":0.12},{"x":1569450960000,"y":0.18},{"x":1569451020000,"y":0.12},{"x":1569451080000,"y":0.1},{"x":1569451140000,"y":0.15},{"x":1569451200000,"y":0.16},{"x":1569451260000,"y":0.28},{"x":1569451320000,"y":0.15},{"x":1569451380000,"y":0.24},{"x":1569451440000,"y":0.15},{"x":1569451500000,"y":0.17},{"x":1569451560000,"y":0.22},{"x":1569451620000,"y":0.16},{"x":1569451680000,"y":0.07},{"x":1569451740000,"y":0.1},{"x":1569451800000,"y":0.11},{"x":1569451860000,"y":0.27},{"x":1569451920000,"y":0.15},{"x":1569451980000,"y":0.14},{"x":1569452040000,"y":0.15},{"x":1569452100000,"y":0.2},{"x":1569452160000,"y":0.25},{"x":1569452220000,"y":0.12},{"x":1569452280000,"y":0.16},{"x":1569452340000,"y":0.11},{"x":1569452400000,"y":0.24},{"x":1569452460000,"y":0.25},{"x":1569452520000,"y":0.18},{"x":1569452580000,"y":0.13},{"x":1569452640000,"y":0.15},{"x":1569452700000,"y":0.19},{"x":1569452760000,"y":0.16},{"x":1569452820000,"y":0.3},{"x":1569452880000,"y":0.15},{"x":1569452940000,"y":0.25},{"x":1569453000000,"y":0.21},{"x":1569453060000,"y":0.14},{"x":1569453120000,"y":0.28},{"x":1569453180000,"y":0.15},{"x":1569453240000,"y":0.15},{"x":1569453300000,"y":0.17},{"x":1569453360000,"y":0.14},{"x":1569453420000,"y":0.36},{"x":1569453480000,"y":0.16},{"x":1569453540000,"y":0.16},{"x":1569453600000,"y":0.2},{"x":1569453660000,"y":0.16},{"x":1569453720000,"y":0.28},{"x":1569453780000,"y":0.16},{"x":1569453840000,"y":0.17},{"x":1569453900000,"y":0.22},{"x":1569453960000,"y":0.16},{"x":1569454020000,"y":0.32},{"x":1569454080000,"y":0.14},{"x":1569454140000,"y":0.24},{"x":1569454200000,"y":0.26},{"x":1569454260000,"y":0.15},{"x":1569454320000,"y":0.3},{"x":1569454380000,"y":0.12},{"x":1569454440000,"y":0.15},{"x":1569454500000,"y":0.2},{"x":1569454560000,"y":0.19},{"x":1569454620000,"y":0.15},{"x":1569454680000,"y":0.3},{"x":1569454740000,"y":0.25},{"x":1569454800000,"y":0.22},{"x":1569454860000,"y":0.17},{"x":1569454920000,"y":0.15},{"x":1569454980000,"y":0.3},{"x":1569455040000,"y":0.17},{"x":1569455100000,"y":0.19},{"x":1569455160000,"y":0.13},{"x":1569455220000,"y":0.13},{"x":1569455280000,"y":0.29},{"x":1569455340000,"y":0.15},{"x":1569455400000,"y":0.21},{"x":1569455460000,"y":0.15},{"x":1569455520000,"y":0.17},{"x":1569455580000,"y":3.48},{"x":1569455640000,"y":0.16},{"x":1569455700000,"y":0.2},{"x":1569455760000,"y":0.15},{"x":1569455820000,"y":0.14},{"x":1569455880000,"y":0.29},{"x":1569455940000,"y":0.16},{"x":1569456000000,"y":0.21},{"x":1569456060000,"y":0.14},{"x":1569456120000,"y":0.92},{"x":1569456180000,"y":0.28},{"x":1569456240000,"y":0.15},{"x":1569456300000,"y":0.2},{"x":1569456360000,"y":0.16},{"x":1569456420000,"y":0.16},{"x":1569456480000,"y":0.3},{"x":1569456540000,"y":0.21},{"x":1569456600000,"y":0.17},{"x":1569456660000,"y":0.15},{"x":1569456720000,"y":0.16},{"x":1569456780000,"y":0.31},{"x":1569456840000,"y":0.15},{"x":1569456900000,"y":0.23},{"x":1569456960000,"y":0.17},{"x":1569457020000,"y":0.16},{"x":1569457080000,"y":0.31},{"x":1569457140000,"y":0.14},{"x":1569457200000,"y":0.2},{"x":1569457260000,"y":0.15},{"x":1569457320000,"y":0.14},{"x":1569457380000,"y":0.15},{"x":1569457440000,"y":0.3},{"x":1569457500000,"y":0.18},{"x":1569457560000,"y":0.14},{"x":1569457620000,"y":0.16},{"x":1569457680000,"y":0.14},{"x":1569457740000,"y":0.28},{"x":1569457800000,"y":0.19},{"x":1569457860000,"y":0.13},{"x":1569457920000,"y":0.14},{"x":1569457980000,"y":0.15},{"x":1569458040000,"y":0.27},{"x":1569458100000,"y":0.23},{"x":1569458160000,"y":0.16},{"x":1569458220000,"y":0.13},{"x":1569458280000,"y":0.14},{"x":1569458340000,"y":0.44},{"x":1569458400000,"y":0.24},{"x":1569458460000,"y":0.15},{"x":1569458520000,"y":0.14},{"x":1569458580000,"y":0.14},{"x":1569458640000,"y":1.77},{"x":1569458700000,"y":0.24},{"x":1569458760000,"y":0.15},{"x":1569458820000,"y":0.14},{"x":1569458880000,"y":0.17},{"x":1569458940000,"y":0.29},{"x":1569459000000,"y":0.19},{"x":1569459060000,"y":0.14},{"x":1569459120000,"y":0.17},{"x":1569459180000,"y":0.15},{"x":1569459240000,"y":0.12},{"x":1569459300000,"y":0.35},{"x":1569459360000,"y":0.15},{"x":1569459420000,"y":0.15},{"x":1569459480000,"y":0.18},{"x":1569459540000,"y":0.17},{"x":1569459600000,"y":0.37},{"x":1569459660000,"y":0.17},{"x":1569459720000,"y":0.15},{"x":1569459780000,"y":3.88},{"x":1569459840000,"y":0.15},{"x":1569459900000,"y":0.33},{"x":1569459960000,"y":0.15},{"x":1569460020000,"y":0.16},{"x":1569460080000,"y":0.15},{"x":1569460140000,"y":0.28},{"x":1569460200000,"y":0.32},{"x":1569460260000,"y":0.15},{"x":1569460320000,"y":0.16},{"x":1569460380000,"y":0.15},{"x":1569460440000,"y":0.16},{"x":1569460500000,"y":0.34},{"x":1569460560000,"y":0.12},{"x":1569460620000,"y":0.17},{"x":1569460680000,"y":0.15},{"x":1569460740000,"y":0.17},{"x":1569460800000,"y":0.32},{"x":1569460860000,"y":0.15},{"x":1569460920000,"y":0.15},{"x":1569460980000,"y":0.15},{"x":1569461040000,"y":0.17},{"x":1569461100000,"y":0.32},{"x":1569461160000,"y":0.14},{"x":1569461220000,"y":0.13},{"x":1569461280000,"y":0.15},{"x":1569461340000,"y":0.15},{"x":1569461400000,"y":0.34},{"x":1569461460000,"y":0.15},{"x":1569461520000,"y":0.14},{"x":1569461580000,"y":0.17},{"x":1569461640000,"y":0.15},{"x":1569461700000,"y":0.34},{"x":1569461760000,"y":0.1},{"x":1569461820000,"y":0.11},{"x":1569461880000,"y":0.09},{"x":1569461940000,"y":0.19},{"x":1569462000000,"y":0.15},{"x":1569462060000,"y":0.21},{"x":1569462120000,"y":0.07},{"x":1569462180000,"y":0.09},{"x":1569462240000,"y":0.12},{"x":1569462300000,"y":0.11},{"x":1569462360000,"y":0.2},{"x":1569462420000,"y":0.06},{"x":1569462480000,"y":0.05},{"x":1569462540000,"y":0.05},{"x":1569462600000,"y":0.1},{"x":1569462660000,"y":0.18},{"x":1569462720000,"y":0.06},{"x":1569462780000,"y":0.05},{"x":1569462840000,"y":0.06},{"x":1569462900000,"y":0.14},{"x":1569462960000,"y":0.2},{"x":1569463020000,"y":0.05},{"x":1569463080000,"y":0.06},{"x":1569463140000,"y":0.05},{"x":1569463200000,"y":0.12},{"x":1569463260000,"y":0.2},{"x":1569463320000,"y":0.07},{"x":1569463380000,"y":0.05},{"x":1569463440000,"y":0.05},{"x":1569463500000,"y":0.1},{"x":1569463560000,"y":0.18},{"x":1569463620000,"y":0.06},{"x":1569463680000,"y":0.08},{"x":1569463740000,"y":0.17},{"x":1569463800000,"y":0.17},{"x":1569463860000,"y":0.19},{"x":1569463920000,"y":0.07},{"x":1569463980000,"y":0.05},{"x":1569464040000,"y":0.05},{"x":1569464100000,"y":0.11},{"x":1569464160000,"y":0.18},{"x":1569464220000,"y":0.1},{"x":1569464280000,"y":0.07},{"x":1569464340000,"y":0.09},{"x":1569464400000,"y":0.1},{"x":1569464460000,"y":0.05},{"x":1569464520000,"y":0.22},{"x":1569464580000,"y":0.08},{"x":1569464640000,"y":0.2},{"x":1569464700000,"y":0.14},{"x":1569464760000,"y":0.09},{"x":1569464820000,"y":0.23},{"x":1569464880000,"y":0.1},{"x":1569464940000,"y":0.07},{"x":1569465000000,"y":0.13},{"x":1569465060000,"y":0.07},{"x":1569465120000,"y":0.19},{"x":1569465180000,"y":0.08},{"x":1569465240000,"y":0.11},{"x":1569465300000,"y":0.11},{"x":1569465360000,"y":0.09},{"x":1569465420000,"y":0.21},{"x":1569465480000,"y":0.07},{"x":1569465540000,"y":0.19},{"x":1569465600000,"y":0.19},{"x":1569465660000,"y":0.09},{"x":1569465720000,"y":0.22},{"x":1569465780000,"y":0.1},{"x":1569465840000,"y":0.13},{"x":1569465900000,"y":0.62},{"x":1569465960000,"y":0.07},{"x":1569466020000,"y":0.18},{"x":1569466080000,"y":0.05},{"x":1569466140000,"y":0.06},{"x":1569466200000,"y":0.1},{"x":1569466260000,"y":0.09},{"x":1569466320000,"y":0.2},{"x":1569466380000,"y":0.08},{"x":1569466440000,"y":0.07},{"x":1569466500000,"y":0.12},{"x":1569466560000,"y":0.07},{"x":1569466620000,"y":0.05},{"x":1569466680000,"y":0.2},{"x":1569466740000,"y":0.07},{"x":1569466800000,"y":0.14},{"x":1569466860000,"y":0.06},{"x":1569466920000,"y":0.07},{"x":1569466980000,"y":0.24},{"x":1569467040000,"y":0.32},{"x":1569467100000,"y":0.1},{"x":1569467160000,"y":0.09},{"x":1569467220000,"y":0.07},{"x":1569467280000,"y":0.34},{"x":1569467340000,"y":0.24},{"x":1569467400000,"y":0.11},{"x":1569467460000,"y":0.34},{"x":1569467520000,"y":0.26},{"x":1569467580000,"y":0.27},{"x":1569467640000,"y":0.11},{"x":1569467700000,"y":0.25},{"x":1569467760000,"y":0.07},{"x":1569467820000,"y":0.22},{"x":1569467880000,"y":0.3},{"x":1569467940000,"y":0.39},{"x":1569468000000,"y":0.14},{"x":1569468060000,"y":0.46},{"x":1569468120000,"y":0.07},{"x":1569468180000,"y":0.21},{"x":1569468240000,"y":0.07},{"x":1569468300000,"y":0.18},{"x":1569468360000,"y":0.07},{"x":1569468420000,"y":0.07},{"x":1569468480000,"y":0.19},{"x":1569468540000,"y":0.07},{"x":1569468600000,"y":0.11},{"x":1569468660000,"y":0.07},{"x":1569468720000,"y":0.1},{"x":1569468780000,"y":0.2},{"x":1569468840000,"y":0.06},{"x":1569468900000,"y":0.12},{"x":1569468960000,"y":0.07},{"x":1569469020000,"y":0.08},{"x":1569469080000,"y":0.06},{"x":1569469140000,"y":0.25},{"x":1569469200000,"y":0.14},{"x":1569469260000,"y":0.1},{"x":1569469320000,"y":0.06},{"x":1569469380000,"y":0.12},{"x":1569469440000,"y":0.23},{"x":1569469500000,"y":0.15},{"x":1569469560000,"y":0.07},{"x":1569469620000,"y":0.07},{"x":1569469680000,"y":0.06},{"x":1569469740000,"y":0.19},{"x":1569469800000,"y":0.11},{"x":1569469860000,"y":0.08},{"x":1569469920000,"y":0.07},{"x":1569469980000,"y":0.09},{"x":1569470040000,"y":0.21},{"x":1569470100000,"y":0.16},{"x":1569470160000,"y":0.07},{"x":1569470220000,"y":0.06},{"x":1569470280000,"y":0.06},{"x":1569470340000,"y":0.18},{"x":1569470400000,"y":0.19},{"x":1569470460000,"y":0.07},{"x":1569470520000,"y":0.12},{"x":1569470580000,"y":0.12},{"x":1569470640000,"y":0.21},{"x":1569470700000,"y":0.2},{"x":1569470760000,"y":0.09},{"x":1569470820000,"y":0.16},{"x":1569470880000,"y":0.1},{"x":1569470940000,"y":0.24},{"x":1569471000000,"y":0.2},{"x":1569471060000,"y":0.19},{"x":1569471120000,"y":0.12},{"x":1569471180000,"y":0.06},{"x":1569471240000,"y":0.23},{"x":1569471300000,"y":0.13},{"x":1569471360000,"y":0.09},{"x":1569471420000,"y":0.12},{"x":1569471480000,"y":0.14},{"x":1569471540000,"y":0.12},{"x":1569471600000,"y":0.25},{"x":1569471660000,"y":0.12},{"x":1569471720000,"y":0.14},{"x":1569471780000,"y":0.07},{"x":1569471840000,"y":0.07},{"x":1569471900000,"y":0.35},{"x":1569471960000,"y":0.12},{"x":1569472020000,"y":0.05},{"x":1569472080000,"y":0.12},{"x":1569472140000,"y":0.15},{"x":1569472200000,"y":0.25},{"x":1569472260000,"y":0.07},{"x":1569472320000,"y":0.1},{"x":1569472380000,"y":0.13},{"x":1569472440000,"y":0.14},{"x":1569472500000,"y":0.43},{"x":1569472560000,"y":0.07},{"x":1569472620000,"y":0.06},{"x":1569472680000,"y":0.07},{"x":1569472740000,"y":0.14},{"x":1569472800000,"y":0.25},{"x":1569472860000,"y":0.08},{"x":1569472920000,"y":0.07},{"x":1569472980000,"y":0.08},{"x":1569473040000,"y":0.07},{"x":1569473100000,"y":0.31},{"x":1569473160000,"y":0.11},{"x":1569473220000,"y":0.08},{"x":1569473280000,"y":0.05},{"x":1569473340000,"y":0.06},{"x":1569473400000,"y":0.26},{"x":1569473460000,"y":0.06},{"x":1569473520000,"y":0.08},{"x":1569473580000,"y":0.05},{"x":1569473640000,"y":0.07},{"x":1569473700000,"y":0.32},{"x":1569473760000,"y":0.17},{"x":1569473820000,"y":0.07},{"x":1569473880000,"y":0.16},{"x":1569473940000,"y":0.17},{"x":1569474000000,"y":0.9},{"x":1569474060000,"y":0.15},{"x":1569474120000,"y":0.17},{"x":1569474180000,"y":0.13},{"x":1569474240000,"y":0.07},{"x":1569474300000,"y":0.1},{"x":1569474360000,"y":0.21},{"x":1569474420000,"y":0.08},{"x":1569474480000,"y":0.07},{"x":1569474540000,"y":0.1},{"x":1569474600000,"y":0.08},{"x":1569474660000,"y":0.2},{"x":1569474720000,"y":0.1},{"x":1569474780000,"y":0.07},{"x":1569474840000,"y":0.2},{"x":1569474900000,"y":0.18},{"x":1569474960000,"y":0.28},{"x":1569475020000,"y":0.19},{"x":1569475080000,"y":0.2},{"x":1569475140000,"y":0.18},{"x":1569475200000,"y":0.15},{"x":1569475260000,"y":0.2},{"x":1569475320000,"y":0.08},{"x":1569475380000,"y":0.08},{"x":1569475440000,"y":0.1},{"x":1569475500000,"y":0.12},{"x":1569475560000,"y":0.2},{"x":1569475620000,"y":0.09},{"x":1569475680000,"y":0.2},{"x":1569475740000,"y":0.15},{"x":1569475800000,"y":0.24},{"x":1569475860000,"y":0.28},{"x":1569475920000,"y":0.23},{"x":1569475980000,"y":0.23},{"x":1569476040000,"y":0.07},{"x":1569476100000,"y":0.17},{"x":1569476160000,"y":0.19},{"x":1569476220000,"y":0.09},{"x":1569476280000,"y":0.1},{"x":1569476340000,"y":0.12},{"x":1569476400000,"y":0.1},{"x":1569476460000,"y":0.13},{"x":1569476520000,"y":0.22},{"x":1569476580000,"y":0.05},{"x":1569476640000,"y":0.06},{"x":1569476700000,"y":0.17},{"x":1569476760000,"y":0.07},{"x":1569476820000,"y":0.2},{"x":1569476880000,"y":0.06},{"x":1569476940000,"y":0.12},{"x":1569477000000,"y":0.17},{"x":1569477060000,"y":0.06},{"x":1569477120000,"y":0.21},{"x":1569477180000,"y":0.57},{"x":1569477240000,"y":0.07},{"x":1569477300000,"y":0.17},{"x":1569477360000,"y":0.09},{"x":1569477420000,"y":4.72},{"x":1569477480000,"y":0.11},{"x":1569477540000,"y":0.09},{"x":1569477600000,"y":0.15},{"x":1569477660000,"y":0.06},{"x":1569477720000,"y":0.22},{"x":1569477780000,"y":0.08},{"x":1569477840000,"y":0.1},{"x":1569477900000,"y":3.69},{"x":1569477960000,"y":0.07},{"x":1569478020000,"y":0.2},{"x":1569478080000,"y":0.07},{"x":1569478140000,"y":0.15},{"x":1569478200000,"y":0.12},{"x":1569478260000,"y":0.07},{"x":1569478320000,"y":0.16},{"x":1569478380000,"y":0.16},{"x":1569478440000,"y":0.07},{"x":1569478500000,"y":0.11},{"x":1569478560000,"y":0.05},{"x":1569478620000,"y":0.07},{"x":1569478680000,"y":0.21},{"x":1569478740000,"y":0.08},{"x":1569478800000,"y":0.14},{"x":1569478860000,"y":0.06},{"x":1569478920000,"y":0.09},{"x":1569478980000,"y":0.21},{"x":1569479040000,"y":0.13},{"x":1569479100000,"y":0.22},{"x":1569479160000,"y":0.07},{"x":1569479220000,"y":0.07},{"x":1569479280000,"y":0.2},{"x":1569479340000,"y":0.08},{"x":1569479400000,"y":0.2},{"x":1569479460000,"y":0.11},{"x":1569479520000,"y":0.07},{"x":1569479580000,"y":0.23},{"x":1569479640000,"y":0.09},{"x":1569479700000,"y":0.15},{"x":1569479760000,"y":0.06},{"x":1569479820000,"y":0.11},{"x":1569479880000,"y":0.22},{"x":1569479940000,"y":0.14},{"x":1569480000000,"y":0.15},{"x":1569480060000,"y":0.12},{"x":1569480120000,"y":0.1},{"x":1569480180000,"y":0.2},{"x":1569480240000,"y":0.11},{"x":1569480300000,"y":0.18},{"x":1569480360000,"y":0.1},{"x":1569480420000,"y":0.09},{"x":1569480480000,"y":0.07},{"x":1569480540000,"y":0.23},{"x":1569480600000,"y":0.15},{"x":1569480660000,"y":0.1},{"x":1569480720000,"y":0.1},{"x":1569480780000,"y":0.12},{"x":1569480840000,"y":0.2},{"x":1569480900000,"y":0.11},{"x":1569480960000,"y":0.12},{"x":1569481020000,"y":0.07},{"x":1569481080000,"y":0.1},{"x":1569481140000,"y":0.23},{"x":1569481200000,"y":0.17},{"x":1569481260000,"y":0.11},{"x":1569481320000,"y":0.08},{"x":1569481380000,"y":0.09},{"x":1569481440000,"y":0.25},{"x":1569481500000,"y":0.13},{"x":1569481560000,"y":0.1},{"x":1569481620000,"y":0.1},{"x":1569481680000,"y":0.07},{"x":1569481740000,"y":0.3},{"x":1569481800000,"y":0.12},{"x":1569481860000,"y":0.09},{"x":1569481920000,"y":0.08},{"x":1569481980000,"y":0.08},{"x":1569482040000,"y":0.2},{"x":1569482100000,"y":0.13},{"x":1569482160000,"y":0.07},{"x":1569482220000,"y":0.12},{"x":1569482280000,"y":0.06},{"x":1569482340000,"y":0.24},{"x":1569482400000,"y":0.16},{"x":1569482460000,"y":0.06},{"x":1569482520000,"y":0.08},{"x":1569482580000,"y":0.08},{"x":1569482640000,"y":0.23},{"x":1569482700000,"y":0.14},{"x":1569482760000,"y":0.1},{"x":1569482820000,"y":0.11},{"x":1569482880000,"y":0.07},{"x":1569482940000,"y":0.08},{"x":1569483000000,"y":0.35},{"x":1569483060000,"y":0.07},{"x":1569483120000,"y":0.08},{"x":1569483180000,"y":0.09},{"x":1569483240000,"y":0.07},{"x":1569483300000,"y":0.27},{"x":1569483360000,"y":0.08},{"x":1569483420000,"y":0.1},{"x":1569483480000,"y":0.07},{"x":1569483540000,"y":0.26},{"x":1569483600000,"y":0.24},{"x":1569483660000,"y":0.11},{"x":1569483720000,"y":0.11},{"x":1569483780000,"y":0.09},{"x":1569483840000,"y":0.06},{"x":1569483900000,"y":0.25},{"x":1569483960000,"y":0.08},{"x":1569484020000,"y":0.07},{"x":1569484080000,"y":0.15},{"x":1569484140000,"y":0.1},{"x":1569484200000,"y":0.28},{"x":1569484260000,"y":0.13},{"x":1569484320000,"y":0.16},{"x":1569484380000,"y":0.07},{"x":1569484440000,"y":0.15},{"x":1569484500000,"y":0.31},{"x":1569484560000,"y":0.14},{"x":1569484620000,"y":0.15},{"x":1569484680000,"y":0.15},{"x":1569484740000,"y":0.14},{"x":1569484800000,"y":0.38},{"x":1569484860000,"y":0.17},{"x":1569484920000,"y":0.15},{"x":1569484980000,"y":0.15},{"x":1569485040000,"y":0.17},{"x":1569485100000,"y":0.15},{"x":1569485160000,"y":0.36},{"x":1569485220000,"y":0.13},{"x":1569485280000,"y":0.1},{"x":1569485340000,"y":0.19},{"x":1569485400000,"y":0.24},{"x":1569485460000,"y":0.25},{"x":1569485520000,"y":0.17},{"x":1569485580000,"y":0.19},{"x":1569485640000,"y":0.13},{"x":1569485700000,"y":0.22},{"x":1569485760000,"y":0.31},{"x":1569485820000,"y":0.16},{"x":1569485880000,"y":0.16},{"x":1569485940000,"y":0.15},{"x":1569486000000,"y":0.2},{"x":1569486060000,"y":0.29},{"x":1569486120000,"y":0.16},{"x":1569486180000,"y":0.2},{"x":1569486240000,"y":0.17},{"x":1569486300000,"y":0.22},{"x":1569486360000,"y":0.35},{"x":1569486420000,"y":0.14},{"x":1569486480000,"y":0.15},{"x":1569486540000,"y":0.17},{"x":1569486600000,"y":0.24},{"x":1569486660000,"y":0.32},{"x":1569486720000,"y":0.16},{"x":1569486780000,"y":0.15},{"x":1569486840000,"y":0.17},{"x":1569486900000,"y":0.2},{"x":1569486960000,"y":0.28},{"x":1569487020000,"y":0.18},{"x":1569487080000,"y":0.16},{"x":1569487140000,"y":0.21},{"x":1569487200000,"y":0.21},{"x":1569487260000,"y":0.16},{"x":1569487320000,"y":0.3},{"x":1569487380000,"y":0.18},{"x":1569487440000,"y":0.17},{"x":1569487500000,"y":3.07},{"x":1569487560000,"y":0.21},{"x":1569487620000,"y":0.3},{"x":1569487680000,"y":0.16},{"x":1569487740000,"y":0.16},{"x":1569487800000,"y":0.2},{"x":1569487860000,"y":0.16},{"x":1569487920000,"y":0.3},{"x":1569487980000,"y":0.18},{"x":1569488040000,"y":0.15},{"x":1569488100000,"y":0.22},{"x":1569488160000,"y":0.21},{"x":1569488220000,"y":0.3},{"x":1569488280000,"y":0.15},{"x":1569488340000,"y":0.16},{"x":1569488400000,"y":0.26},{"x":1569488460000,"y":0.16},{"x":1569488520000,"y":0.3},{"x":1569488580000,"y":0.15},{"x":1569488640000,"y":0.16},{"x":1569488700000,"y":0.2},{"x":1569488760000,"y":0.39},{"x":1569488820000,"y":0.3},{"x":1569488880000,"y":0.16},{"x":1569488940000,"y":0.18},{"x":1569489000000,"y":0.24},{"x":1569489060000,"y":0.17},{"x":1569489120000,"y":0.3},{"x":1569489180000,"y":0.15},{"x":1569489240000,"y":0.17},{"x":1569489300000,"y":0.26},{"x":1569489360000,"y":0.15},{"x":1569489420000,"y":0.15},{"x":1569489480000,"y":0.32},{"x":1569489540000,"y":0.17},{"x":1569489600000,"y":0.26},{"x":1569489660000,"y":0.15},{"x":1569489720000,"y":0.16},{"x":1569489780000,"y":0.29},{"x":1569489840000,"y":0.22},{"x":1569489900000,"y":0.2},{"x":1569489960000,"y":0.17},{"x":1569490020000,"y":0.16},{"x":1569490080000,"y":0.29},{"x":1569490140000,"y":0.18},{"x":1569490200000,"y":0.2},{"x":1569490260000,"y":0.15},{"x":1569490320000,"y":0.2},{"x":1569490380000,"y":0.31},{"x":1569490440000,"y":0.16},{"x":1569490500000,"y":0.2},{"x":1569490560000,"y":0.17},{"x":1569490620000,"y":0.19},{"x":1569490680000,"y":0.3},{"x":1569490740000,"y":0.23},{"x":1569490800000,"y":0.2},{"x":1569490860000,"y":0.16},{"x":1569490920000,"y":0.15},{"x":1569490980000,"y":0.32},{"x":1569491040000,"y":0.17},{"x":1569491100000,"y":0.24},{"x":1569491160000,"y":0.15},{"x":1569491220000,"y":0.19},{"x":1569491280000,"y":0.29},{"x":1569491340000,"y":0.15},{"x":1569491400000,"y":0.17},{"x":1569491460000,"y":0.15},{"x":1569491520000,"y":0.15},{"x":1569491580000,"y":0.17},{"x":1569491640000,"y":0.29},{"x":1569491700000,"y":0.24},{"x":1569491760000,"y":0.22},{"x":1569491820000,"y":0.16},{"x":1569491880000,"y":0.17},{"x":1569491940000,"y":0.28},{"x":1569492000000,"y":0.24},{"x":1569492060000,"y":0.17},{"x":1569492120000,"y":0.15},{"x":1569492180000,"y":0.16},{"x":1569492240000,"y":0.3},{"x":1569492300000,"y":0.24},{"x":1569492360000,"y":0.15},{"x":1569492420000,"y":0.19},{"x":1569492480000,"y":0.15},{"x":1569492540000,"y":0.35},{"x":1569492600000,"y":0.19},{"x":1569492660000,"y":0.2},{"x":1569492720000,"y":0.19},{"x":1569492780000,"y":0.15},{"x":1569492840000,"y":0.3},{"x":1569492900000,"y":0.24},{"x":1569492960000,"y":0.2},{"x":1569493020000,"y":0.15},{"x":1569493080000,"y":0.15},{"x":1569493140000,"y":0.33},{"x":1569493200000,"y":0.24},{"x":1569493260000,"y":0.17},{"x":1569493320000,"y":0.17},{"x":1569493380000,"y":0.16},{"x":1569493440000,"y":0.35},{"x":1569493500000,"y":0.24},{"x":1569493560000,"y":0.17},{"x":1569493620000,"y":0.15},{"x":1569493680000,"y":0.17},{"x":1569493740000,"y":0.15},{"x":1569493800000,"y":0.41},{"x":1569493860000,"y":0.16},{"x":1569493920000,"y":0.16},{"x":1569493980000,"y":0.15},{"x":1569494040000,"y":0.16},{"x":1569494100000,"y":0.41},{"x":1569494160000,"y":0.19},{"x":1569494220000,"y":0.2},{"x":1569494280000,"y":0.15},{"x":1569494340000,"y":0.27},{"x":1569494400000,"y":0.41},{"x":1569494460000,"y":0.14},{"x":1569494520000,"y":0.17},{"x":1569494580000,"y":0.18},{"x":1569494640000,"y":0.17},{"x":1569494700000,"y":0.39},{"x":1569494760000,"y":0.19},{"x":1569494820000,"y":0.15},{"x":1569494880000,"y":0.42},{"x":1569494940000,"y":0.15},{"x":1569495000000,"y":0.35},{"x":1569495060000,"y":0.17},{"x":1569495120000,"y":0.15},{"x":1569495180000,"y":0.16},{"x":1569495240000,"y":0.15},{"x":1569495300000,"y":0.28},{"x":1569495360000,"y":0.12},{"x":1569495420000,"y":0.1},{"x":1569495480000,"y":0.12},{"x":1569495540000,"y":0.1},{"x":1569495600000,"y":0.24},{"x":1569495660000,"y":0.13},{"x":1569495720000,"y":0.07},{"x":1569495780000,"y":0.07},{"x":1569495840000,"y":0.07},{"x":1569495900000,"y":0.11},{"x":1569495960000,"y":0.21},{"x":1569496020000,"y":0.98},{"x":1569496080000,"y":0.07},{"x":1569496140000,"y":0.18},{"x":1569496200000,"y":0.14},{"x":1569496260000,"y":0.23},{"x":1569496320000,"y":0.1},{"x":1569496380000,"y":0.07},{"x":1569496440000,"y":0.07},{"x":1569496500000,"y":0.14},{"x":1569496560000,"y":0.22},{"x":1569496620000,"y":0.08},{"x":1569496680000,"y":0.07},{"x":1569496740000,"y":0.1},{"x":1569496800000,"y":0.12},{"x":1569496860000,"y":0.22},{"x":1569496920000,"y":0.08},{"x":1569496980000,"y":0.07},{"x":1569497040000,"y":0.1},{"x":1569497100000,"y":1.18},{"x":1569497160000,"y":0.24},{"x":1569497220000,"y":0.08},{"x":1569497280000,"y":0.09},{"x":1569497340000,"y":0.09},{"x":1569497400000,"y":0.16},{"x":1569497460000,"y":0.24},{"x":1569497520000,"y":0.09},{"x":1569497580000,"y":0.08},{"x":1569497640000,"y":0.09},{"x":1569497700000,"y":0.12},{"x":1569497760000,"y":0.22},{"x":1569497820000,"y":0.08},{"x":1569497880000,"y":0.08},{"x":1569497940000,"y":0.12},{"x":1569498000000,"y":0.15},{"x":1569498060000,"y":0.09},{"x":1569498120000,"y":0.21},{"x":1569498180000,"y":0.08},{"x":1569498240000,"y":0.1},{"x":1569498300000,"y":0.1},{"x":1569498360000,"y":0.09},{"x":1569498420000,"y":0.21},{"x":1569498480000,"y":0.07},{"x":1569498540000,"y":0.09},{"x":1569498600000,"y":0.1},{"x":1569498660000,"y":0.08},{"x":1569498720000,"y":0.22},{"x":1569498780000,"y":0.08},{"x":1569498840000,"y":0.1},{"x":1569498900000,"y":0.11},{"x":1569498960000,"y":0.1},{"x":1569499020000,"y":0.2},{"x":1569499080000,"y":0.07},{"x":1569499140000,"y":0.09},{"x":1569499200000,"y":0.16},{"x":1569499260000,"y":0.07},{"x":1569499320000,"y":3.72},{"x":1569499380000,"y":0.1},{"x":1569499440000,"y":0.09},{"x":1569499500000,"y":0.14},{"x":1569499560000,"y":0.08},{"x":1569499620000,"y":0.2},{"x":1569499680000,"y":0.07},{"x":1569499740000,"y":0.13},{"x":1569499800000,"y":0.12},{"x":1569499860000,"y":0.07},{"x":1569499920000,"y":0.22},{"x":1569499980000,"y":0.08},{"x":1569500040000,"y":0.07},{"x":1569500100000,"y":0.16},{"x":1569500160000,"y":0.07},{"x":1569500220000,"y":0.08},{"x":1569500280000,"y":0.24},{"x":1569500340000,"y":0.09},{"x":1569500400000,"y":0.12},{"x":1569500460000,"y":0.07},{"x":1569500520000,"y":0.07},{"x":1569500580000,"y":0.24},{"x":1569500640000,"y":0.09},{"x":1569500700000,"y":0.11},{"x":1569500760000,"y":0.07},{"x":1569500820000,"y":0.08},{"x":1569500880000,"y":0.23},{"x":1569500940000,"y":0.06},{"x":1569501000000,"y":0.11},{"x":1569501060000,"y":0.08},{"x":1569501120000,"y":0.07},{"x":1569501180000,"y":0.21},{"x":1569501240000,"y":0.1},{"x":1569501300000,"y":0.14},{"x":1569501360000,"y":0.07},{"x":1569501420000,"y":0.09},{"x":1569501480000,"y":0.2},{"x":1569501540000,"y":0.17},{"x":1569501600000,"y":0.11},{"x":1569501660000,"y":0.08},{"x":1569501720000,"y":0.07},{"x":1569501780000,"y":0.21},{"x":1569501840000,"y":0.05},{"x":1569501900000,"y":0.13},{"x":1569501960000,"y":0.07},{"x":1569502020000,"y":0.07},{"x":1569502080000,"y":0.2},{"x":1569502140000,"y":0.09},{"x":1569502200000,"y":0.14},{"x":1569502260000,"y":0.07},{"x":1569502320000,"y":0.07},{"x":1569502380000,"y":0.07},{"x":1569502440000,"y":0.2},{"x":1569502500000,"y":0.13},{"x":1569502560000,"y":0.1},{"x":1569502620000,"y":0.07},{"x":1569502680000,"y":0.07},{"x":1569502740000,"y":0.2},{"x":1569502800000,"y":0.23},{"x":1569502860000,"y":0.07},{"x":1569502920000,"y":0.06},{"x":1569502980000,"y":0.09},{"x":1569503040000,"y":0.23},{"x":1569503100000,"y":0.13},{"x":1569503160000,"y":0.1},{"x":1569503220000,"y":0.06},{"x":1569503280000,"y":0.09},{"x":1569503340000,"y":0.29},{"x":1569503400000,"y":0.16},{"x":1569503460000,"y":0.07},{"x":1569503520000,"y":0.07},{"x":1569503580000,"y":0.06},{"x":1569503640000,"y":0.2},{"x":1569503700000,"y":0.13},{"x":1569503760000,"y":0.07},{"x":1569503820000,"y":0.07},{"x":1569503880000,"y":0.08},{"x":1569503940000,"y":0.18},{"x":1569504000000,"y":0.1},{"x":1569504060000,"y":0.1},{"x":1569504120000,"y":0.07},{"x":1569504180000,"y":0.06},{"x":1569504240000,"y":0.19},{"x":1569504300000,"y":0.11},{"x":1569504360000,"y":0.07},{"x":1569504420000,"y":0.1},{"x":1569504480000,"y":0.08},{"x":1569504540000,"y":0.19},{"x":1569504600000,"y":0.08},{"x":1569504660000,"y":0.07},{"x":1569504720000,"y":0.09},{"x":1569504780000,"y":0.08},{"x":1569504840000,"y":0.07},{"x":1569504900000,"y":0.27},{"x":1569504960000,"y":0.07},{"x":1569505020000,"y":0.1},{"x":1569505080000,"y":0.07},{"x":1569505140000,"y":0.18},{"x":1569505200000,"y":0.23},{"x":1569505260000,"y":0.09},{"x":1569505320000,"y":0.09},{"x":1569505380000,"y":0.04},{"x":1569505440000,"y":0.07},{"x":1569505500000,"y":0.26},{"x":1569505560000,"y":0.09},{"x":1569505620000,"y":0.06},{"x":1569505680000,"y":0.08},{"x":1569505740000,"y":0.09},{"x":1569505800000,"y":0.26},{"x":1569505860000,"y":0.09},{"x":1569505920000,"y":0.09},{"x":1569505980000,"y":0.07},{"x":1569506040000,"y":0.05},{"x":1569506100000,"y":0.31},{"x":1569506160000,"y":0.07},{"x":1569506220000,"y":0.08},{"x":1569506280000,"y":0.05},{"x":1569506340000,"y":0.09},{"x":1569506400000,"y":0.33},{"x":1569506460000,"y":0.07},{"x":1569506520000,"y":0.07},{"x":1569506580000,"y":0.07},{"x":1569506640000,"y":0.06},{"x":1569506700000,"y":0.1},{"x":1569506760000,"y":0.24},{"x":1569506820000,"y":0.09},{"x":1569506880000,"y":0.06},{"x":1569506940000,"y":0.11},{"x":1569507000000,"y":0.12},{"x":1569507060000,"y":0.22},{"x":1569507120000,"y":0.07},{"x":1569507180000,"y":0.1},{"x":1569507240000,"y":0.07},{"x":1569507300000,"y":0.15},{"x":1569507360000,"y":0.21},{"x":1569507420000,"y":0.14},{"x":1569507480000,"y":0.07},{"x":1569507540000,"y":0.07},{"x":1569507600000,"y":0.13},{"x":1569507660000,"y":0.22},{"x":1569507720000,"y":0.05},{"x":1569507780000,"y":0.07},{"x":1569507840000,"y":0.08},{"x":1569507900000,"y":0.12},{"x":1569507960000,"y":0.23},{"x":1569508020000,"y":0.08},{"x":1569508080000,"y":0.09},{"x":1569508140000,"y":0.07},{"x":1569508200000,"y":0.11},{"x":1569508260000,"y":0.22},{"x":1569508320000,"y":0.08},{"x":1569508380000,"y":0.07},{"x":1569508440000,"y":0.07},{"x":1569508500000,"y":0.14},{"x":1569508560000,"y":0.21},{"x":1569508620000,"y":0.09},{"x":1569508680000,"y":0.06},{"x":1569508740000,"y":0.2},{"x":1569508800000,"y":0.17},{"x":1569508860000,"y":0.24},{"x":1569508920000,"y":0.13},{"x":1569508980000,"y":0.1},{"x":1569509040000,"y":0.1},{"x":1569509100000,"y":0.17},{"x":1569509160000,"y":0.07},{"x":1569509220000,"y":0.25},{"x":1569509280000,"y":0.05},{"x":1569509340000,"y":0.1},{"x":1569509400000,"y":0.12},{"x":1569509460000,"y":0.1},{"x":1569509520000,"y":0.22},{"x":1569509580000,"y":0.09},{"x":1569509640000,"y":0.07},{"x":1569509700000,"y":0.1},{"x":1569509760000,"y":0.11},{"x":1569509820000,"y":0.19},{"x":1569509880000,"y":0.08},{"x":1569509940000,"y":0.1},{"x":1569510000000,"y":0.11},{"x":1569510060000,"y":0.08},{"x":1569510120000,"y":0.2},{"x":1569510180000,"y":0.07},{"x":1569510240000,"y":0.06},{"x":1569510300000,"y":0.1},{"x":1569510360000,"y":0.09},{"x":1569510420000,"y":0.23},{"x":1569510480000,"y":0.07},{"x":1569510540000,"y":0.1},{"x":1569510600000,"y":0.09},{"x":1569510660000,"y":0.06},{"x":1569510720000,"y":0.21},{"x":1569510780000,"y":0.07},{"x":1569510840000,"y":0.07},{"x":1569510900000,"y":0.14},{"x":1569510960000,"y":0.08},{"x":1569511020000,"y":0.21},{"x":1569511080000,"y":0.07},{"x":1569511140000,"y":0.1},{"x":1569511200000,"y":0.11},{"x":1569511260000,"y":0.06},{"x":1569511320000,"y":0.06},{"x":1569511380000,"y":0.21},{"x":1569511440000,"y":0.06},{"x":1569511500000,"y":0.11},{"x":1569511560000,"y":0.07},{"x":1569511620000,"y":0.05},{"x":1569511680000,"y":0.2},{"x":1569511740000,"y":0.07},{"x":1569511800000,"y":0.16},{"x":1569511860000,"y":0.07},{"x":1569511920000,"y":0.06},{"x":1569511980000,"y":0.22},{"x":1569512040000,"y":0.05},{"x":1569512100000,"y":0.11},{"x":1569512160000,"y":0.05},{"x":1569512220000,"y":0.07},{"x":1569512280000,"y":0.19},{"x":1569512340000,"y":0.15},{"x":1569512400000,"y":0.12},{"x":1569512460000,"y":0.09},{"x":1569512520000,"y":0.05},{"x":1569512580000,"y":0.22},{"x":1569512640000,"y":0.06},{"x":1569512700000,"y":0.13},{"x":1569512760000,"y":0.04},{"x":1569512820000,"y":0.07},{"x":1569512880000,"y":0.22},{"x":1569512940000,"y":0.05},{"x":1569513000000,"y":0.17},{"x":1569513060000,"y":0.09},{"x":1569513120000,"y":0.05},{"x":1569513180000,"y":0.06},{"x":1569513240000,"y":0.21},{"x":1569513300000,"y":0.19},{"x":1569513360000,"y":0.12},{"x":1569513420000,"y":0.35},{"x":1569513480000,"y":0.17},{"x":1569513540000,"y":0.21},{"x":1569513600000,"y":0.17},{"x":1569513660000,"y":0.05},{"x":1569513720000,"y":0.11},{"x":1569513780000,"y":0.09},{"x":1569513840000,"y":0.21},{"x":1569513900000,"y":0.12},{"x":1569513960000,"y":0.12},{"x":1569514020000,"y":0.1},{"x":1569514080000,"y":0.06},{"x":1569514140000,"y":0.4},{"x":1569514200000,"y":0.14},{"x":1569514260000,"y":0.13},{"x":1569514320000,"y":0.07},{"x":1569514380000,"y":0.09},{"x":1569514440000,"y":0.22},{"x":1569514500000,"y":0.15},{"x":1569514560000,"y":0.1},{"x":1569514620000,"y":0.08},{"x":1569514680000,"y":0.08},{"x":1569514740000,"y":0.24},{"x":1569514800000,"y":0.1},{"x":1569514860000,"y":0.06},{"x":1569514920000,"y":0.08},{"x":1569514980000,"y":0.07},{"x":1569515040000,"y":0.22},{"x":1569515100000,"y":0.14},{"x":1569515160000,"y":0.07},{"x":1569515220000,"y":0.09},{"x":1569515280000,"y":0.06},{"x":1569515340000,"y":0.07},{"x":1569515400000,"y":0.29},{"x":1569515460000,"y":0.44},{"x":1569515520000,"y":0.07},{"x":1569515580000,"y":0.08},{"x":1569515640000,"y":0.08},{"x":1569515700000,"y":0.25},{"x":1569515760000,"y":0.08},{"x":1569515820000,"y":0.1},{"x":1569515880000,"y":0.06},{"x":1569515940000,"y":0.17},{"x":1569516000000,"y":0.29},{"x":1569516060000,"y":0.08},{"x":1569516120000,"y":0.16},{"x":1569516180000,"y":0.14},{"x":1569516240000,"y":0.11},{"x":1569516300000,"y":0.33},{"x":1569516360000,"y":0.12},{"x":1569516420000,"y":0.12},{"x":1569516480000,"y":0.07},{"x":1569516540000,"y":0.07},{"x":1569516600000,"y":0.3},{"x":1569516660000,"y":0.13},{"x":1569516720000,"y":0.05},{"x":1569516780000,"y":0.19},{"x":1569516840000,"y":0.12},{"x":1569516900000,"y":0.58},{"x":1569516960000,"y":0.27},{"x":1569517020000,"y":0.09},{"x":1569517080000,"y":0.16},{"x":1569517140000,"y":0.05},{"x":1569517200000,"y":0.16},{"x":1569517260000,"y":0.21},{"x":1569517320000,"y":0.09},{"x":1569517380000,"y":0.06},{"x":1569517440000,"y":0.15},{"x":1569517500000,"y":0.21},{"x":1569517560000,"y":0.23},{"x":1569517620000,"y":0.23},{"x":1569517680000,"y":0.84},{"x":1569517740000,"y":0.22},{"x":1569517800000,"y":0.43},{"x":1569517860000,"y":0.45},{"x":1569517920000,"y":0.15},{"x":1569517980000,"y":0.09},{"x":1569518040000,"y":0.07},{"x":1569518100000,"y":0.2},{"x":1569518160000,"y":0.22},{"x":1569518220000,"y":0.13},{"x":1569518280000,"y":0.09},{"x":1569518340000,"y":0.15},{"x":1569518400000,"y":0.18},{"x":1569518460000,"y":0.27},{"x":1569518520000,"y":0.1},{"x":1569518580000,"y":0.15},{"x":1569518640000,"y":0.32},{"x":1569518700000,"y":0.21},{"x":1569518760000,"y":0.22},{"x":1569518820000,"y":0.09},{"x":1569518880000,"y":0.2},{"x":1569518940000,"y":0.31},{"x":1569519000000,"y":0.28},{"x":1569519060000,"y":0.59},{"x":1569519120000,"y":0.29},{"x":1569519180000,"y":0.15},{"x":1569519240000,"y":0.15},{"x":1569519300000,"y":0.22},{"x":1569519360000,"y":0.28},{"x":1569519420000,"y":0.31},{"x":1569519480000,"y":0.22},{"x":1569519540000,"y":0.27},{"x":1569519600000,"y":0.42},{"x":1569519660000,"y":0.14},{"x":1569519720000,"y":0.56},{"x":1569519780000,"y":0.46},{"x":1569519840000,"y":0.45},{"x":1569519900000,"y":0.64},{"x":1569519960000,"y":0.3},{"x":1569520020000,"y":0.32},{"x":1569520080000,"y":0.17},{"x":1569520140000,"y":0.24},{"x":1569520200000,"y":0.23},{"x":1569520260000,"y":0.77},{"x":1569520320000,"y":0.3},{"x":1569520380000,"y":0.17},{"x":1569520440000,"y":0.16},{"x":1569520500000,"y":0.29},{"x":1569520560000,"y":0.18},{"x":1569520620000,"y":0.29},{"x":1569520680000,"y":0.18},{"x":1569520740000,"y":0.15},{"x":1569520800000,"y":0.25},{"x":1569520860000,"y":0.17},{"x":1569520920000,"y":0.32},{"x":1569520980000,"y":0.16},{"x":1569521040000,"y":0.16},{"x":1569521100000,"y":0.31},{"x":1569521160000,"y":0.14},{"x":1569521220000,"y":4.82},{"x":1569521280000,"y":0.22},{"x":1569521340000,"y":0.33},{"x":1569521400000,"y":2.11},{"x":1569521460000,"y":0.15},{"x":1569521520000,"y":0.31},{"x":1569521580000,"y":0.14},{"x":1569521640000,"y":0.15},{"x":1569521700000,"y":0.23},{"x":1569521760000,"y":0.15},{"x":1569521820000,"y":0.22},{"x":1569521880000,"y":0.27},{"x":1569521940000,"y":0.18},{"x":1569522000000,"y":0.2},{"x":1569522060000,"y":0.14},{"x":1569522120000,"y":0.15},{"x":1569522180000,"y":0.29},{"x":1569522240000,"y":0.16},{"x":1569522300000,"y":0.2},{"x":1569522360000,"y":0.15},{"x":1569522420000,"y":0.13},{"x":1569522480000,"y":0.29},{"x":1569522540000,"y":0.19},{"x":1569522600000,"y":0.22},{"x":1569522660000,"y":0.2},{"x":1569522720000,"y":0.15},{"x":1569522780000,"y":0.29},{"x":1569522840000,"y":0.17},{"x":1569522900000,"y":0.23},{"x":1569522960000,"y":0.17},{"x":1569523020000,"y":0.17},{"x":1569523080000,"y":0.27},{"x":1569523140000,"y":0.22},{"x":1569523200000,"y":0.24},{"x":1569523260000,"y":0.17},{"x":1569523320000,"y":0.17},{"x":1569523380000,"y":0.27},{"x":1569523440000,"y":0.15},{"x":1569523500000,"y":0.2},{"x":1569523560000,"y":0.16},{"x":1569523620000,"y":0.15},{"x":1569523680000,"y":0.3},{"x":1569523740000,"y":0.15},{"x":1569523800000,"y":0.22},{"x":1569523860000,"y":0.14},{"x":1569523920000,"y":0.15},{"x":1569523980000,"y":0.14},{"x":1569524040000,"y":0.28},{"x":1569524100000,"y":0.2},{"x":1569524160000,"y":0.16},{"x":1569524220000,"y":0.15},{"x":1569524280000,"y":0.15},{"x":1569524340000,"y":0.27},{"x":1569524400000,"y":0.29},{"x":1569524460000,"y":0.19},{"x":1569524520000,"y":0.16},{"x":1569524580000,"y":0.16},{"x":1569524640000,"y":0.28},{"x":1569524700000,"y":0.23},{"x":1569524760000,"y":0.12},{"x":1569524820000,"y":0.15},{"x":1569524880000,"y":0.14},{"x":1569524940000,"y":0.34},{"x":1569525000000,"y":0.2},{"x":1569525060000,"y":0.16},{"x":1569525120000,"y":0.16},{"x":1569525180000,"y":0.14},{"x":1569525240000,"y":0.26},{"x":1569525300000,"y":0.17},{"x":1569525360000,"y":0.15},{"x":1569525420000,"y":0.17},{"x":1569525480000,"y":0.15},{"x":1569525540000,"y":0.3},{"x":1569525600000,"y":0.18},{"x":1569525660000,"y":0.14},{"x":1569525720000,"y":0.32},{"x":1569525780000,"y":0.15},{"x":1569525840000,"y":0.29},{"x":1569525900000,"y":0.18},{"x":1569525960000,"y":0.15},{"x":1569526020000,"y":0.15},{"x":1569526080000,"y":0.21},{"x":1569526140000,"y":0.26},{"x":1569526200000,"y":0.32},{"x":1569526260000,"y":0.25},{"x":1569526320000,"y":0.2},{"x":1569526380000,"y":0.25},{"x":1569526440000,"y":0.28},{"x":1569526500000,"y":0.35},{"x":1569526560000,"y":0.16},{"x":1569526620000,"y":0.19},{"x":1569526680000,"y":0.55},{"x":1569526740000,"y":0.42},{"x":1569526800000,"y":0.37},{"x":1569526860000,"y":0.25},{"x":1569526920000,"y":0.15},{"x":1569526980000,"y":0.15},{"x":1569527040000,"y":0.15},{"x":1569527100000,"y":0.33},{"x":1569527160000,"y":0.15},{"x":1569527220000,"y":0.16},{"x":1569527280000,"y":0.21},{"x":1569527340000,"y":0.18},{"x":1569527400000,"y":0.33},{"x":1569527460000,"y":0.17},{"x":1569527520000,"y":0.14},{"x":1569527580000,"y":0.29},{"x":1569527640000,"y":0.2},{"x":1569527700000,"y":0.37},{"x":1569527760000,"y":0.17},{"x":1569527820000,"y":0.16},{"x":1569527880000,"y":0.15},{"x":1569527940000,"y":0.17},{"x":1569528000000,"y":0.4},{"x":1569528060000,"y":0.15},{"x":1569528120000,"y":0.15},{"x":1569528180000,"y":0.17},{"x":1569528240000,"y":0.15},{"x":1569528300000,"y":0.21},{"x":1569528360000,"y":0.38},{"x":1569528420000,"y":0.32},{"x":1569528480000,"y":0.14},{"x":1569528540000,"y":0.22},{"x":1569528600000,"y":0.15},{"x":1569528660000,"y":0.83},{"x":1569528720000,"y":0.08},{"x":1569528780000,"y":0.28},{"x":1569528840000,"y":0.1},{"x":1569528900000,"y":0.23},{"x":1569528960000,"y":0.26},{"x":1569529020000,"y":0.07},{"x":1569529080000,"y":0.07},{"x":1569529140000,"y":0.07},{"x":1569529200000,"y":0.11},{"x":1569529260000,"y":0.2},{"x":1569529320000,"y":0.1},{"x":1569529380000,"y":0.07},{"x":1569529440000,"y":0.07},{"x":1569529500000,"y":0.11},{"x":1569529560000,"y":0.19},{"x":1569529620000,"y":0.07},{"x":1569529680000,"y":0.07},{"x":1569529740000,"y":0.06},{"x":1569529800000,"y":0.12},{"x":1569529860000,"y":0.46},{"x":1569529920000,"y":0.05},{"x":1569529980000,"y":0.08},{"x":1569530040000,"y":0.06},{"x":1569530100000,"y":0.18},{"x":1569530160000,"y":0.22},{"x":1569530220000,"y":0.07},{"x":1569530280000,"y":0.07},{"x":1569530340000,"y":0.23},{"x":1569530400000,"y":0.12},{"x":1569530460000,"y":0.07},{"x":1569530520000,"y":0.25},{"x":1569530580000,"y":0.07},{"x":1569530640000,"y":0.24},{"x":1569530700000,"y":0.33},{"x":1569530760000,"y":0.1},{"x":1569530820000,"y":0.25},{"x":1569530880000,"y":0.18},{"x":1569530940000,"y":0.05},{"x":1569531000000,"y":0.2},{"x":1569531060000,"y":0.18},{"x":1569531120000,"y":0.54},{"x":1569531180000,"y":0.16},{"x":1569531240000,"y":0.28},{"x":1569531300000,"y":0.11},{"x":1569531360000,"y":0.07},{"x":1569531420000,"y":0.19},{"x":1569531480000,"y":0.07},{"x":1569531540000,"y":0.05},{"x":1569531600000,"y":0.12},{"x":1569531660000,"y":0.06},{"x":1569531720000,"y":0.21},{"x":1569531780000,"y":0.06},{"x":1569531840000,"y":0.09},{"x":1569531900000,"y":0.08},{"x":1569531960000,"y":0.05},{"x":1569532020000,"y":0.2},{"x":1569532080000,"y":0.05},{"x":1569532140000,"y":0.15},{"x":1569532200000,"y":0.13},{"x":1569532260000,"y":0.05},{"x":1569532320000,"y":0.18},{"x":1569532380000,"y":0.06},{"x":1569532440000,"y":0.05},{"x":1569532500000,"y":0.1},{"x":1569532560000,"y":0.05},{"x":1569532620000,"y":0.05},{"x":1569532680000,"y":0.22},{"x":1569532740000,"y":0.07},{"x":1569532800000,"y":0.15},{"x":1569532860000,"y":0.05},{"x":1569532920000,"y":0.06},{"x":1569532980000,"y":0.2},{"x":1569533040000,"y":0.07},{"x":1569533100000,"y":0.12},{"x":1569533160000,"y":0.04},{"x":1569533220000,"y":0.07},{"x":1569533280000,"y":0.18},{"x":1569533340000,"y":0.09},{"x":1569533400000,"y":0.15},{"x":1569533460000,"y":0.07},{"x":1569533520000,"y":0.05},{"x":1569533580000,"y":0.34},{"x":1569533640000,"y":0.12},{"x":1569533700000,"y":0.12},{"x":1569533760000,"y":0.17},{"x":1569533820000,"y":0.15},{"x":1569533880000,"y":0.2},{"x":1569533940000,"y":0.1},{"x":1569534000000,"y":0.09},{"x":1569534060000,"y":0.07},{"x":1569534120000,"y":0.05},{"x":1569534180000,"y":0.2},{"x":1569534240000,"y":0.05},{"x":1569534300000,"y":0.1},{"x":1569534360000,"y":0.06},{"x":1569534420000,"y":0.05},{"x":1569534480000,"y":0.24},{"x":1569534540000,"y":0.2},{"x":1569534600000,"y":0.15},{"x":1569534660000,"y":0.13},{"x":1569534720000,"y":0.06},{"x":1569534780000,"y":0.07},{"x":1569534840000,"y":0.19},{"x":1569534900000,"y":0.12},{"x":1569534960000,"y":0.12},{"x":1569535020000,"y":0.06},{"x":1569535080000,"y":0.17},{"x":1569535140000,"y":0.32},{"x":1569535200000,"y":0.23},{"x":1569535260000,"y":0.05},{"x":1569535320000,"y":0.07},{"x":1569535380000,"y":0.07},{"x":1569535440000,"y":0.22},{"x":1569535500000,"y":0.11},{"x":1569535560000,"y":0.07},{"x":1569535620000,"y":0.07},{"x":1569535680000,"y":0.1},{"x":1569535740000,"y":0.34},{"x":1569535800000,"y":0.13},{"x":1569535860000,"y":0.07},{"x":1569535920000,"y":0.07},{"x":1569535980000,"y":0.07},{"x":1569536040000,"y":0.2},{"x":1569536100000,"y":0.12},{"x":1569536160000,"y":0.12},{"x":1569536220000,"y":0.19},{"x":1569536280000,"y":0.06},{"x":1569536340000,"y":0.34},{"x":1569536400000,"y":0.18},{"x":1569536460000,"y":0.13},{"x":1569536520000,"y":0.09},{"x":1569536580000,"y":0.09},{"x":1569536640000,"y":0.23},{"x":1569536700000,"y":0.25},{"x":1569536760000,"y":0.08},{"x":1569536820000,"y":0.08},{"x":1569536880000,"y":0.1},{"x":1569536940000,"y":0.19},{"x":1569537000000,"y":0.32},{"x":1569537060000,"y":0.22},{"x":1569537120000,"y":0.31},{"x":1569537180000,"y":0.12},{"x":1569537240000,"y":0.1},{"x":1569537300000,"y":0.22},{"x":1569537360000,"y":0.07},{"x":1569537420000,"y":0.06},{"x":1569537480000,"y":0.06},{"x":1569537540000,"y":0.14},{"x":1569537600000,"y":0.3},{"x":1569537660000,"y":0.09},{"x":1569537720000,"y":0.17},{"x":1569537780000,"y":0.08},{"x":1569537840000,"y":0.09},{"x":1569537900000,"y":0.27},{"x":1569537960000,"y":0.1},{"x":1569538020000,"y":0.11},{"x":1569538080000,"y":0.23},{"x":1569538140000,"y":0.12},{"x":1569538200000,"y":0.28},{"x":1569538260000,"y":0.11},{"x":1569538320000,"y":0.14},{"x":1569538380000,"y":0.08},{"x":1569538440000,"y":0.07},{"x":1569538500000,"y":0.25},{"x":1569538560000,"y":0.1},{"x":1569538620000,"y":0.06},{"x":1569538680000,"y":0.07},{"x":1569538740000,"y":0.08},{"x":1569538800000,"y":0.14},{"x":1569538860000,"y":0.2},{"x":1569538920000,"y":0.05},{"x":1569538980000,"y":0.07},{"x":1569539040000,"y":0.05},{"x":1569539100000,"y":0.09},{"x":1569539160000,"y":0.21},{"x":1569539220000,"y":0.08},{"x":1569539280000,"y":0.05},{"x":1569539340000,"y":0.16},{"x":1569539400000,"y":0.12},{"x":1569539460000,"y":0.23},{"x":1569539520000,"y":0.05},{"x":1569539580000,"y":0.07},{"x":1569539640000,"y":0.17},{"x":1569539700000,"y":0.12},{"x":1569539760000,"y":0.25},{"x":1569539820000,"y":0.14},{"x":1569539880000,"y":0.06},{"x":1569539940000,"y":0.06},{"x":1569540000000,"y":0.1},{"x":1569540060000,"y":0.22},{"x":1569540120000,"y":0.07},{"x":1569540180000,"y":0.08},{"x":1569540240000,"y":0.1},{"x":1569540300000,"y":0.16},{"x":1569540360000,"y":0.21},{"x":1569540420000,"y":0.05},{"x":1569540480000,"y":0.07},{"x":1569540540000,"y":0.09},{"x":1569540600000,"y":0.1},{"x":1569540660000,"y":0.2},{"x":1569540720000,"y":0.17},{"x":1569540780000,"y":0.29},{"x":1569540840000,"y":0.19},{"x":1569540900000,"y":0.15},{"x":1569540960000,"y":0.18},{"x":1569541020000,"y":0.28},{"x":1569541080000,"y":0.15},{"x":1569541140000,"y":0.17},{"x":1569541200000,"y":0.1},{"x":1569541260000,"y":0.06},{"x":1569541320000,"y":0.2},{"x":1569541380000,"y":0.05},{"x":1569541440000,"y":0.05},{"x":1569541500000,"y":0.22},{"x":1569541560000,"y":0.12},{"x":1569541620000,"y":0.29},{"x":1569541680000,"y":0.07},{"x":1569541740000,"y":0.2},{"x":1569541800000,"y":0.15},{"x":1569541860000,"y":0.05},{"x":1569541920000,"y":0.3},{"x":1569541980000,"y":0.12},{"x":1569542040000,"y":0.05},{"x":1569542100000,"y":0.11},{"x":1569542160000,"y":0.09},{"x":1569542220000,"y":0.33},{"x":1569542280000,"y":0.3},{"x":1569542340000,"y":0.08},{"x":1569542400000,"y":0.17},{"x":1569542460000,"y":0.08},{"x":1569542520000,"y":0.21},{"x":1569542580000,"y":0.07},{"x":1569542640000,"y":0.06},{"x":1569542700000,"y":0.14},{"x":1569542760000,"y":0.09},{"x":1569542820000,"y":4},{"x":1569542880000,"y":1.07},{"x":1569542940000,"y":0.18},{"x":1569543000000,"y":0.16},{"x":1569543060000,"y":0.09},{"x":1569543120000,"y":0.07},{"x":1569543180000,"y":0.4},{"x":1569543240000,"y":0.23},{"x":1569543300000,"y":0.1},{"x":1569543360000,"y":0.07},{"x":1569543420000,"y":0.08},{"x":1569543480000,"y":0.2},{"x":1569543540000,"y":0.07},{"x":1569543600000,"y":0.09},{"x":1569543660000,"y":0.07},{"x":1569543720000,"y":0.08},{"x":1569543780000,"y":0.21},{"x":1569543840000,"y":0.05},{"x":1569543900000,"y":0.11},{"x":1569543960000,"y":0.07},{"x":1569544020000,"y":0.07},{"x":1569544080000,"y":0.21},{"x":1569544140000,"y":0.07},{"x":1569544200000,"y":0.15},{"x":1569544260000,"y":0.07},{"x":1569544320000,"y":0.07},{"x":1569544380000,"y":0.2},{"x":1569544440000,"y":0.08},{"x":1569544500000,"y":0.15},{"x":1569544560000,"y":0.07},{"x":1569544620000,"y":0.06},{"x":1569544680000,"y":0.21},{"x":1569544740000,"y":0.18},{"x":1569544800000,"y":0.09},{"x":1569544860000,"y":0.06},{"x":1569544920000,"y":0.04},{"x":1569544980000,"y":0.2},{"x":1569545040000,"y":0.06},{"x":1569545100000,"y":0.12},{"x":1569545160000,"y":0.05},{"x":1569545220000,"y":0.07},{"x":1569545280000,"y":0.05},{"x":1569545340000,"y":0.21},{"x":1569545400000,"y":0.17},{"x":1569545460000,"y":0.06},{"x":1569545520000,"y":0.05},{"x":1569545580000,"y":0.06},{"x":1569545640000,"y":0.2},{"x":1569545700000,"y":0.48},{"x":1569545760000,"y":0.09},{"x":1569545820000,"y":0.05},{"x":1569545880000,"y":0.06},{"x":1569545940000,"y":0.21},{"x":1569546000000,"y":0.16},{"x":1569546060000,"y":0.06},{"x":1569546120000,"y":0.08},{"x":1569546180000,"y":0.06},{"x":1569546240000,"y":0.17},{"x":1569546300000,"y":0.12},{"x":1569546360000,"y":0.08},{"x":1569546420000,"y":0.07},{"x":1569546480000,"y":0.08},{"x":1569546540000,"y":0.28},{"x":1569546600000,"y":0.13},{"x":1569546660000,"y":0.07},{"x":1569546720000,"y":0.08},{"x":1569546780000,"y":0.09},{"x":1569546840000,"y":0.21},{"x":1569546900000,"y":0.11},{"x":1569546960000,"y":0.07},{"x":1569547020000,"y":0.06},{"x":1569547080000,"y":0.05},{"x":1569547140000,"y":0.2},{"x":1569547200000,"y":0.08},{"x":1569547260000,"y":0.08},{"x":1569547320000,"y":0.06},{"x":1569547380000,"y":0.06},{"x":1569547440000,"y":0.19},{"x":1569547500000,"y":0.14},{"x":1569547560000,"y":0.08},{"x":1569547620000,"y":0.07},{"x":1569547680000,"y":0.42},{"x":1569547740000,"y":0.05},{"x":1569547800000,"y":0.31},{"x":1569547860000,"y":0.05},{"x":1569547920000,"y":0.05},{"x":1569547980000,"y":0.04},{"x":1569548040000,"y":0.07},{"x":1569548100000,"y":0.26},{"x":1569548160000,"y":0.07},{"x":1569548220000,"y":0.06},{"x":1569548280000,"y":0.06},{"x":1569548340000,"y":0.16},{"x":1569548400000,"y":0.3},{"x":1569548460000,"y":0.06},{"x":1569548520000,"y":0.07},{"x":1569548580000,"y":0.06},{"x":1569548640000,"y":0.06},{"x":1569548700000,"y":0.24},{"x":1569548760000,"y":0.05},{"x":1569548820000,"y":0.06},{"x":1569548880000,"y":0.07},{"x":1569548940000,"y":0.06},{"x":1569549000000,"y":0.29},{"x":1569549060000,"y":0.1},{"x":1569549120000,"y":0.13},{"x":1569549180000,"y":0.11},{"x":1569549240000,"y":0.06},{"x":1569549300000,"y":0.27},{"x":1569549360000,"y":0.07},{"x":1569549420000,"y":0.06},{"x":1569549480000,"y":0.06},{"x":1569549540000,"y":0.08},{"x":1569549600000,"y":0.32},{"x":1569549660000,"y":0.07},{"x":1569549720000,"y":0.09},{"x":1569549780000,"y":0.06},{"x":1569549840000,"y":0.08},{"x":1569549900000,"y":0.23},{"x":1569549960000,"y":0.05},{"x":1569550020000,"y":0.05},{"x":1569550080000,"y":0.07},{"x":1569550140000,"y":0.21},{"x":1569550200000,"y":0.19},{"x":1569550260000,"y":0.24},{"x":1569550320000,"y":0.08},{"x":1569550380000,"y":0.16},{"x":1569550440000,"y":0.1},{"x":1569550500000,"y":0.53},{"x":1569550560000,"y":0.22},{"x":1569550620000,"y":0.1},{"x":1569550680000,"y":0.07},{"x":1569550740000,"y":0.07},{"x":1569550800000,"y":0.2},{"x":1569550860000,"y":0.23},{"x":1569550920000,"y":0.1},{"x":1569550980000,"y":0.07},{"x":1569551040000,"y":0.15},{"x":1569551100000,"y":0.24},{"x":1569551160000,"y":0.45},{"x":1569551220000,"y":0.48},{"x":1569551280000,"y":0.27},{"x":1569551340000,"y":0.09},{"x":1569551400000,"y":0.42},{"x":1569551460000,"y":0.23},{"x":1569551520000,"y":0.12},{"x":1569551580000,"y":0.22},{"x":1569551640000,"y":0.18},{"x":1569551700000,"y":0.11},{"x":1569551760000,"y":0.24},{"x":1569551820000,"y":0.15},{"x":1569551880000,"y":0.16},{"x":1569551940000,"y":0.14},{"x":1569552000000,"y":0.18},{"x":1569552060000,"y":0.26},{"x":1569552120000,"y":0.12},{"x":1569552180000,"y":0.14},{"x":1569552240000,"y":0.15},{"x":1569552300000,"y":0.19},{"x":1569552360000,"y":0.13},{"x":1569552420000,"y":0.26},{"x":1569552480000,"y":0.14},{"x":1569552540000,"y":0.13},{"x":1569552600000,"y":0.15},{"x":1569552660000,"y":0.12},{"x":1569552720000,"y":0.3},{"x":1569552780000,"y":0.14},{"x":1569552840000,"y":0.15},{"x":1569552900000,"y":0.18},{"x":1569552960000,"y":0.17},{"x":1569553020000,"y":0.26},{"x":1569553080000,"y":0.15},{"x":1569553140000,"y":0.13},{"x":1569553200000,"y":0.21},{"x":1569553260000,"y":0.14},{"x":1569553320000,"y":0.28},{"x":1569553380000,"y":0.14},{"x":1569553440000,"y":0.14},{"x":1569553500000,"y":0.22},{"x":1569553560000,"y":0.16},{"x":1569553620000,"y":0.27},{"x":1569553680000,"y":0.14},{"x":1569553740000,"y":0.21},{"x":1569553800000,"y":0.4},{"x":1569553860000,"y":0.16},{"x":1569553920000,"y":0.28},{"x":1569553980000,"y":0.13},{"x":1569554040000,"y":0.14},{"x":1569554100000,"y":0.2},{"x":1569554160000,"y":0.17},{"x":1569554220000,"y":0.14},{"x":1569554280000,"y":0.25},{"x":1569554340000,"y":0.28},{"x":1569554400000,"y":0.17},{"x":1569554460000,"y":0.16},{"x":1569554520000,"y":0.15},{"x":1569554580000,"y":0.27},{"x":1569554640000,"y":0.14},{"x":1569554700000,"y":0.22},{"x":1569554760000,"y":0.15},{"x":1569554820000,"y":0.14},{"x":1569554880000,"y":0.28},{"x":1569554940000,"y":0.17},{"x":1569555000000,"y":0.19},{"x":1569555060000,"y":0.13},{"x":1569555120000,"y":0.15},{"x":1569555180000,"y":0.29},{"x":1569555240000,"y":0.15},{"x":1569555300000,"y":0.22},{"x":1569555360000,"y":0.2},{"x":1569555420000,"y":0.14},{"x":1569555480000,"y":0.29},{"x":1569555540000,"y":0.25},{"x":1569555600000,"y":0.19},{"x":1569555660000,"y":0.17},{"x":1569555720000,"y":0.15},{"x":1569555780000,"y":0.28},{"x":1569555840000,"y":0.13},{"x":1569555900000,"y":0.19},{"x":1569555960000,"y":0.14},{"x":1569556020000,"y":0.13},{"x":1569556080000,"y":0.28},{"x":1569556140000,"y":0.16},{"x":1569556200000,"y":0.19},{"x":1569556260000,"y":0.14},{"x":1569556320000,"y":0.16},{"x":1569556380000,"y":0.29},{"x":1569556440000,"y":0.15},{"x":1569556500000,"y":0.22},{"x":1569556560000,"y":0.18},{"x":1569556620000,"y":0.17},{"x":1569556680000,"y":0.14},{"x":1569556740000,"y":0.29},{"x":1569556800000,"y":0.21},{"x":1569556860000,"y":0.14},{"x":1569556920000,"y":0.15},{"x":1569556980000,"y":0.14},{"x":1569557040000,"y":0.29},{"x":1569557100000,"y":0.22},{"x":1569557160000,"y":0.15},{"x":1569557220000,"y":0.14},{"x":1569557280000,"y":0.15},{"x":1569557340000,"y":0.34},{"x":1569557400000,"y":0.25},{"x":1569557460000,"y":0.15},{"x":1569557520000,"y":0.15},{"x":1569557580000,"y":0.13},{"x":1569557640000,"y":0.29},{"x":1569557700000,"y":0.17},{"x":1569557760000,"y":0.55},{"x":1569557820000,"y":0.16},{"x":1569557880000,"y":0.14},{"x":1569557940000,"y":0.28},{"x":1569558000000,"y":0.22},{"x":1569558060000,"y":0.15},{"x":1569558120000,"y":0.2},{"x":1569558180000,"y":0.14},{"x":1569558240000,"y":0.27},{"x":1569558300000,"y":0.19},{"x":1569558360000,"y":0.17},{"x":1569558420000,"y":0.18},{"x":1569558480000,"y":0.13},{"x":1569558540000,"y":0.38},{"x":1569558600000,"y":0.25},{"x":1569558660000,"y":0.14},{"x":1569558720000,"y":0.14},{"x":1569558780000,"y":0.17},{"x":1569558840000,"y":0.26},{"x":1569558900000,"y":0.19},{"x":1569558960000,"y":0.15},{"x":1569559020000,"y":0.16},{"x":1569559080000,"y":0.14},{"x":1569559140000,"y":0.34},{"x":1569559200000,"y":0.19},{"x":1569559260000,"y":0.15},{"x":1569559320000,"y":0.15},{"x":1569559380000,"y":0.14},{"x":1569559440000,"y":0.17},{"x":1569559500000,"y":0.36},{"x":1569559560000,"y":0.17},{"x":1569559620000,"y":0.14},{"x":1569559680000,"y":0.16},{"x":1569559740000,"y":0.18},{"x":1569559800000,"y":0.31},{"x":1569559860000,"y":0.15},{"x":1569559920000,"y":0.15},{"x":1569559980000,"y":0.15},{"x":1569560040000,"y":0.17},{"x":1569560100000,"y":0.34},{"x":1569560160000,"y":0.16},{"x":1569560220000,"y":0.15},{"x":1569560280000,"y":0.14},{"x":1569560340000,"y":0.16},{"x":1569560400000,"y":0.81},{"x":1569560460000,"y":0.18},{"x":1569560520000,"y":0.16},{"x":1569560580000,"y":0.15},{"x":1569560640000,"y":0.16},{"x":1569560700000,"y":0.33},{"x":1569560760000,"y":0.15},{"x":1569560820000,"y":0.15},{"x":1569560880000,"y":0.14},{"x":1569560940000,"y":0.2},{"x":1569561000000,"y":0.32},{"x":1569561060000,"y":0.16},{"x":1569561120000,"y":0.13},{"x":1569561180000,"y":0.12},{"x":1569561240000,"y":0.18},{"x":1569561300000,"y":0.31},{"x":1569561360000,"y":0.16},{"x":1569561420000,"y":0.14},{"x":1569561480000,"y":0.14},{"x":1569561540000,"y":0.17},{"x":1569561600000,"y":0.2},{"x":1569561660000,"y":0.31},{"x":1569561720000,"y":0.12},{"x":1569561780000,"y":0.14},{"x":1569561840000,"y":0.12},{"x":1569561900000,"y":0.17},{"x":1569561960000,"y":0.24},{"x":1569562020000,"y":0.05},{"x":1569562080000,"y":0.06},{"x":1569562140000,"y":0.07},{"x":1569562200000,"y":0.1},{"x":1569562260000,"y":0.21},{"x":1569562320000,"y":0.07},{"x":1569562380000,"y":0.06},{"x":1569562440000,"y":0.06},{"x":1569562500000,"y":0.14},{"x":1569562560000,"y":0.21},{"x":1569562620000,"y":0.06},{"x":1569562680000,"y":0.06},{"x":1569562740000,"y":0.12},{"x":1569562800000,"y":0.14},{"x":1569562860000,"y":0.18},{"x":1569562920000,"y":0.07},{"x":1569562980000,"y":0.07},{"x":1569563040000,"y":0.08},{"x":1569563100000,"y":0.1},{"x":1569563160000,"y":0.21},{"x":1569563220000,"y":0.06},{"x":1569563280000,"y":0.05},{"x":1569563340000,"y":0.04},{"x":1569563400000,"y":0.11},{"x":1569563460000,"y":0.22},{"x":1569563520000,"y":0.07},{"x":1569563580000,"y":0.06},{"x":1569563640000,"y":0.07},{"x":1569563700000,"y":0.12},{"x":1569563760000,"y":0.19},{"x":1569563820000,"y":1.7},{"x":1569563880000,"y":0.07},{"x":1569563940000,"y":0.06},{"x":1569564000000,"y":0.17},{"x":1569564060000,"y":0.08},{"x":1569564120000,"y":0.22},{"x":1569564180000,"y":0.06},{"x":1569564240000,"y":0.07},{"x":1569564300000,"y":0.12},{"x":1569564360000,"y":0.07},{"x":1569564420000,"y":0.19},{"x":1569564480000,"y":0.07},{"x":1569564540000,"y":0.13},{"x":1569564600000,"y":0.1},{"x":1569564660000,"y":0.07},{"x":1569564720000,"y":5.05},{"x":1569564780000,"y":0.05},{"x":1569564840000,"y":0.09},{"x":1569564900000,"y":0.12},{"x":1569564960000,"y":0.09},{"x":1569565020000,"y":0.73},{"x":1569565080000,"y":0.06},{"x":1569565140000,"y":0.07},{"x":1569565200000,"y":0.1},{"x":1569565260000,"y":0.06},{"x":1569565320000,"y":0.18},{"x":1569565380000,"y":0.06},{"x":1569565440000,"y":0.07},{"x":1569565500000,"y":0.19},{"x":1569565560000,"y":0.09},{"x":1569565620000,"y":0.19},{"x":1569565680000,"y":0.07},{"x":1569565740000,"y":0.07},{"x":1569565800000,"y":0.12},{"x":1569565860000,"y":0.04},{"x":1569565920000,"y":0.23},{"x":1569565980000,"y":0.08},{"x":1569566040000,"y":0.05},{"x":1569566100000,"y":0.1},{"x":1569566160000,"y":0.05},{"x":1569566220000,"y":0.05},{"x":1569566280000,"y":0.2},{"x":1569566340000,"y":0.14},{"x":1569566400000,"y":0.17},{"x":1569566460000,"y":0.07},{"x":1569566520000,"y":0.06},{"x":1569566580000,"y":0.2},{"x":1569566640000,"y":0.06},{"x":1569566700000,"y":0.12},{"x":1569566760000,"y":0.08},{"x":1569566820000,"y":0.06},{"x":1569566880000,"y":0.2},{"x":1569566940000,"y":0.08},{"x":1569567000000,"y":0.11},{"x":1569567060000,"y":0.05},{"x":1569567120000,"y":0.07},{"x":1569567180000,"y":0.2},{"x":1569567240000,"y":0.05},{"x":1569567300000,"y":0.1},{"x":1569567360000,"y":0.11},{"x":1569567420000,"y":0.83},{"x":1569567480000,"y":0.2},{"x":1569567540000,"y":0.07},{"x":1569567600000,"y":0.11},{"x":1569567660000,"y":0.06},{"x":1569567720000,"y":0.07},{"x":1569567780000,"y":0.22},{"x":1569567840000,"y":0.05},{"x":1569567900000,"y":0.1},{"x":1569567960000,"y":0.06},{"x":1569568020000,"y":0.08},{"x":1569568080000,"y":0.21},{"x":1569568140000,"y":0.18},{"x":1569568200000,"y":0.11},{"x":1569568260000,"y":0.07},{"x":1569568320000,"y":0.07},{"x":1569568380000,"y":0.21},{"x":1569568440000,"y":0.05},{"x":1569568500000,"y":0.13},{"x":1569568560000,"y":0.07},{"x":1569568620000,"y":0.07},{"x":1569568680000,"y":0.06},{"x":1569568740000,"y":0.22},{"x":1569568800000,"y":0.1},{"x":1569568860000,"y":0.08},{"x":1569568920000,"y":0.06},{"x":1569568980000,"y":0.07},{"x":1569569040000,"y":0.2},{"x":1569569100000,"y":0.14},{"x":1569569160000,"y":0.07},{"x":1569569220000,"y":0.07},{"x":1569569280000,"y":0.07},{"x":1569569340000,"y":0.2},{"x":1569569400000,"y":0.14},{"x":1569569460000,"y":0.06},{"x":1569569520000,"y":0.05},{"x":1569569580000,"y":0.07},{"x":1569569640000,"y":0.2},{"x":1569569700000,"y":0.14},{"x":1569569760000,"y":0.09},{"x":1569569820000,"y":0.07},{"x":1569569880000,"y":0.07},{"x":1569569940000,"y":0.27},{"x":1569570000000,"y":0.13},{"x":1569570060000,"y":0.05},{"x":1569570120000,"y":0.06},{"x":1569570180000,"y":0.1},{"x":1569570240000,"y":0.2},{"x":1569570300000,"y":0.14},{"x":1569570360000,"y":0.07},{"x":1569570420000,"y":0.07},{"x":1569570480000,"y":0.07},{"x":1569570540000,"y":0.19},{"x":1569570600000,"y":0.12},{"x":1569570660000,"y":0.05},{"x":1569570720000,"y":0.07},{"x":1569570780000,"y":0.06},{"x":1569570840000,"y":0.2},{"x":1569570900000,"y":0.09},{"x":1569570960000,"y":0.1},{"x":1569571020000,"y":0.07},{"x":1569571080000,"y":0.07},{"x":1569571140000,"y":0.07},{"x":1569571200000,"y":0.26},{"x":1569571260000,"y":0.05},{"x":1569571320000,"y":0.1},{"x":1569571380000,"y":0.07},{"x":1569571440000,"y":0.07},{"x":1569571500000,"y":0.23},{"x":1569571560000,"y":0.06},{"x":1569571620000,"y":0.06},{"x":1569571680000,"y":0.07},{"x":1569571740000,"y":0.12},{"x":1569571800000,"y":0.23},{"x":1569571860000,"y":0.1},{"x":1569571920000,"y":0.05},{"x":1569571980000,"y":0.07},{"x":1569572040000,"y":0.08},{"x":1569572100000,"y":0.28},{"x":1569572160000,"y":0.06},{"x":1569572220000,"y":0.05},{"x":1569572280000,"y":0.05},{"x":1569572340000,"y":0.07},{"x":1569572400000,"y":0.28},{"x":1569572460000,"y":0.06},{"x":1569572520000,"y":0.07},{"x":1569572580000,"y":0.05},{"x":1569572640000,"y":0.07},{"x":1569572700000,"y":0.25},{"x":1569572760000,"y":0.09},{"x":1569572820000,"y":0.06},{"x":1569572880000,"y":0.07},{"x":1569572940000,"y":0.05},{"x":1569573000000,"y":0.26},{"x":1569573060000,"y":0.07},{"x":1569573120000,"y":0.06},{"x":1569573180000,"y":0.07},{"x":1569573240000,"y":0.06},{"x":1569573300000,"y":0.28},{"x":1569573360000,"y":0.08},{"x":1569573420000,"y":0.07},{"x":1569573480000,"y":0.06},{"x":1569573540000,"y":0.17},{"x":1569573600000,"y":0.29},{"x":1569573660000,"y":0.07},{"x":1569573720000,"y":0.08},{"x":1569573780000,"y":0.08},{"x":1569573840000,"y":0.08},{"x":1569573900000,"y":0.12},{"x":1569573960000,"y":0.22},{"x":1569574020000,"y":0.05},{"x":1569574080000,"y":0.08},{"x":1569574140000,"y":0.08},{"x":1569574200000,"y":0.12},{"x":1569574260000,"y":0.2},{"x":1569574320000,"y":0.06},{"x":1569574380000,"y":0.06},{"x":1569574440000,"y":0.07},{"x":1569574500000,"y":0.12},{"x":1569574560000,"y":0.22},{"x":1569574620000,"y":0.06},{"x":1569574680000,"y":0.06},{"x":1569574740000,"y":0.07},{"x":1569574800000,"y":0.16},{"x":1569574860000,"y":0.22},{"x":1569574920000,"y":0.05},{"x":1569574980000,"y":0.07},{"x":1569575040000,"y":0.06},{"x":1569575100000,"y":0.1},{"x":1569575160000,"y":0.18},{"x":1569575220000,"y":0.07},{"x":1569575280000,"y":0.08},{"x":1569575340000,"y":0.12},{"x":1569575400000,"y":0.12},{"x":1569575460000,"y":0.23},{"x":1569575520000,"y":0.08},{"x":1569575580000,"y":0.1},{"x":1569575640000,"y":0.11},{"x":1569575700000,"y":0.14},{"x":1569575760000,"y":0.18},{"x":1569575820000,"y":0.09},{"x":1569575880000,"y":0.08},{"x":1569575940000,"y":0.08},{"x":1569576000000,"y":0.14},{"x":1569576060000,"y":0.2},{"x":1569576120000,"y":0.09},{"x":1569576180000,"y":0.07},{"x":1569576240000,"y":0.07},{"x":1569576300000,"y":0.12},{"x":1569576360000,"y":0.08},{"x":1569576420000,"y":0.22},{"x":1569576480000,"y":0.08},{"x":1569576540000,"y":0.09},{"x":1569576600000,"y":0.16},{"x":1569576660000,"y":0.11},{"x":1569576720000,"y":0.19},{"x":1569576780000,"y":0.09},{"x":1569576840000,"y":0.05},{"x":1569576900000,"y":0.12},{"x":1569576960000,"y":0.09},{"x":1569577020000,"y":0.22},{"x":1569577080000,"y":0.07},{"x":1569577140000,"y":0.13},{"x":1569577200000,"y":0.12},{"x":1569577260000,"y":0.08},{"x":1569577320000,"y":0.23},{"x":1569577380000,"y":0.06},{"x":1569577440000,"y":0.07},{"x":1569577500000,"y":0.1},{"x":1569577560000,"y":0.08},{"x":1569577620000,"y":0.23},{"x":1569577680000,"y":0.09},{"x":1569577740000,"y":0.1},{"x":1569577800000,"y":0.13},{"x":1569577860000,"y":0.08},{"x":1569577920000,"y":0.21},{"x":1569577980000,"y":0.06},{"x":1569578040000,"y":0.07},{"x":1569578100000,"y":0.11},{"x":1569578160000,"y":0.1},{"x":1569578220000,"y":0.1},{"x":1569578280000,"y":0.2},{"x":1569578340000,"y":0.05},{"x":1569578400000,"y":0.16},{"x":1569578460000,"y":0.06},{"x":1569578520000,"y":0.07},{"x":1569578580000,"y":0.2},{"x":1569578640000,"y":0.07},{"x":1569578700000,"y":0.13},{"x":1569578760000,"y":0.06},{"x":1569578820000,"y":0.09},{"x":1569578880000,"y":0.22},{"x":1569578940000,"y":0.18},{"x":1569579000000,"y":0.16},{"x":1569579060000,"y":0.05},{"x":1569579120000,"y":0.06},{"x":1569579180000,"y":0.22},{"x":1569579240000,"y":0.07},{"x":1569579300000,"y":0.17},{"x":1569579360000,"y":0.09},{"x":1569579420000,"y":0.08},{"x":1569579480000,"y":0.23},{"x":1569579540000,"y":0.16},{"x":1569579600000,"y":0.22},{"x":1569579660000,"y":0.08},{"x":1569579720000,"y":0.08},{"x":1569579780000,"y":0.24},{"x":1569579840000,"y":0.1},{"x":1569579900000,"y":0.17},{"x":1569579960000,"y":0.12},{"x":1569580020000,"y":0.12},{"x":1569580080000,"y":0.24},{"x":1569580140000,"y":0.13},{"x":1569580200000,"y":0.13},{"x":1569580260000,"y":0.09},{"x":1569580320000,"y":0.1},{"x":1569580380000,"y":0.21},{"x":1569580440000,"y":0.12},{"x":1569580500000,"y":0.12},{"x":1569580560000,"y":0.08},{"x":1569580620000,"y":0.1},{"x":1569580680000,"y":0.09},{"x":1569580740000,"y":0.34},{"x":1569580800000,"y":0.12},{"x":1569580860000,"y":0.09},{"x":1569580920000,"y":0.1},{"x":1569580980000,"y":0.09},{"x":1569581040000,"y":0.23},{"x":1569581100000,"y":0.11},{"x":1569581160000,"y":0.09},{"x":1569581220000,"y":0.1},{"x":1569581280000,"y":0.08},{"x":1569581340000,"y":0.23},{"x":1569581400000,"y":0.11},{"x":1569581460000,"y":0.07},{"x":1569581520000,"y":0.07},{"x":1569581580000,"y":0.06},{"x":1569581640000,"y":0.22},{"x":1569581700000,"y":0.1},{"x":1569581760000,"y":0.08},{"x":1569581820000,"y":0.12},{"x":1569581880000,"y":0.07},{"x":1569581940000,"y":0.45},{"x":1569582000000,"y":0.16},{"x":1569582060000,"y":0.1},{"x":1569582120000,"y":0.1},{"x":1569582180000,"y":0.08},{"x":1569582240000,"y":0.2},{"x":1569582300000,"y":0.14},{"x":1569582360000,"y":0.1},{"x":1569582420000,"y":0.07},{"x":1569582480000,"y":0.07},{"x":1569582540000,"y":0.27},{"x":1569582600000,"y":0.15},{"x":1569582660000,"y":0.1},{"x":1569582720000,"y":0.07},{"x":1569582780000,"y":0.07},{"x":1569582840000,"y":0.23},{"x":1569582900000,"y":0.2},{"x":1569582960000,"y":0.1},{"x":1569583020000,"y":0.09},{"x":1569583080000,"y":0.1},{"x":1569583140000,"y":0.08},{"x":1569583200000,"y":0.68},{"x":1569583260000,"y":6.06},{"x":1569583320000,"y":0.08},{"x":1569583380000,"y":0.07},{"x":1569583440000,"y":0.11},{"x":1569583500000,"y":1.28},{"x":1569583560000,"y":0.11},{"x":1569583620000,"y":0.08},{"x":1569583680000,"y":0.09},{"x":1569583740000,"y":0.09},{"x":1569583800000,"y":0.35},{"x":1569583860000,"y":0.12},{"x":1569583920000,"y":0.12},{"x":1569583980000,"y":0.13},{"x":1569584040000,"y":0.12},{"x":1569584100000,"y":0.3},{"x":1569584160000,"y":0.15},{"x":1569584220000,"y":0.11},{"x":1569584280000,"y":0.1},{"x":1569584340000,"y":0.18},{"x":1569584400000,"y":0.36},{"x":1569584460000,"y":0.16},{"x":1569584520000,"y":0.11},{"x":1569584580000,"y":0.13},{"x":1569584640000,"y":0.13},{"x":1569584700000,"y":0.35},{"x":1569584760000,"y":0.12},{"x":1569584820000,"y":0.15},{"x":1569584880000,"y":0.11},{"x":1569584940000,"y":0.14},{"x":1569585000000,"y":0.31},{"x":1569585060000,"y":0.13},{"x":1569585120000,"y":0.12},{"x":1569585180000,"y":0.16},{"x":1569585240000,"y":0.15},{"x":1569585300000,"y":0.34},{"x":1569585360000,"y":0.14},{"x":1569585420000,"y":0.18},{"x":1569585480000,"y":0.11},{"x":1569585540000,"y":0.13},{"x":1569585600000,"y":0.19},{"x":1569585660000,"y":0.3},{"x":1569585720000,"y":0.15},{"x":1569585780000,"y":0.16},{"x":1569585840000,"y":0.17},{"x":1569585900000,"y":0.21},{"x":1569585960000,"y":0.29},{"x":1569586020000,"y":0.15},{"x":1569586080000,"y":0.17},{"x":1569586140000,"y":0.22},{"x":1569586200000,"y":0.2},{"x":1569586260000,"y":0.32},{"x":1569586320000,"y":0.17},{"x":1569586380000,"y":0.17},{"x":1569586440000,"y":0.18},{"x":1569586500000,"y":0.22},{"x":1569586560000,"y":4.9},{"x":1569586620000,"y":0.21},{"x":1569586680000,"y":0.15},{"x":1569586740000,"y":0.17},{"x":1569586800000,"y":0.44},{"x":1569586860000,"y":0.28},{"x":1569586920000,"y":0.15},{"x":1569586980000,"y":0.16},{"x":1569587040000,"y":0.16},{"x":1569587100000,"y":0.21},{"x":1569587160000,"y":0.3},{"x":1569587220000,"y":0.18},{"x":1569587280000,"y":0.21},{"x":1569587340000,"y":0.15},{"x":1569587400000,"y":0.22},{"x":1569587460000,"y":0.3},{"x":1569587520000,"y":0.15},{"x":1569587580000,"y":0.14},{"x":1569587640000,"y":0.13},{"x":1569587700000,"y":0.21},{"x":1569587760000,"y":0.3},{"x":1569587820000,"y":0.19},{"x":1569587880000,"y":0.17},{"x":1569587940000,"y":0.22},{"x":1569588000000,"y":0.2},{"x":1569588060000,"y":0.16},{"x":1569588120000,"y":0.32},{"x":1569588180000,"y":0.16},{"x":1569588240000,"y":0.13},{"x":1569588300000,"y":0.24},{"x":1569588360000,"y":0.17},{"x":1569588420000,"y":0.3},{"x":1569588480000,"y":0.17},{"x":1569588540000,"y":0.17},{"x":1569588600000,"y":0.22},{"x":1569588660000,"y":0.18},{"x":1569588720000,"y":0.29},{"x":1569588780000,"y":0.15},{"x":1569588840000,"y":0.15},{"x":1569588900000,"y":0.19},{"x":1569588960000,"y":0.14},{"x":1569589020000,"y":0.3},{"x":1569589080000,"y":0.15},{"x":1569589140000,"y":0.17},{"x":1569589200000,"y":0.21},{"x":1569589260000,"y":0.29},{"x":1569589320000,"y":0.28},{"x":1569589380000,"y":0.14},{"x":1569589440000,"y":0.17},{"x":1569589500000,"y":0.19},{"x":1569589560000,"y":0.14},{"x":1569589620000,"y":0.26},{"x":1569589680000,"y":0.15},{"x":1569589740000,"y":0.21},{"x":1569589800000,"y":0.22},{"x":1569589860000,"y":0.15},{"x":1569589920000,"y":0.26},{"x":1569589980000,"y":0.15},{"x":1569590040000,"y":0.16},{"x":1569590100000,"y":0.19},{"x":1569590160000,"y":0.13},{"x":1569590220000,"y":0.18},{"x":1569590280000,"y":0.32},{"x":1569590340000,"y":0.15},{"x":1569590400000,"y":0.23},{"x":1569590460000,"y":0.16},{"x":1569590520000,"y":0.14},{"x":1569590580000,"y":0.29},{"x":1569590640000,"y":0.15},{"x":1569590700000,"y":0.23},{"x":1569590760000,"y":0.16},{"x":1569590820000,"y":0.16},{"x":1569590880000,"y":0.3},{"x":1569590940000,"y":0.15},{"x":1569591000000,"y":0.25},{"x":1569591060000,"y":0.16},{"x":1569591120000,"y":0.15},{"x":1569591180000,"y":0.3},{"x":1569591240000,"y":0.14},{"x":1569591300000,"y":0.2},{"x":1569591360000,"y":0.17},{"x":1569591420000,"y":0.16},{"x":1569591480000,"y":0.3},{"x":1569591540000,"y":0.22},{"x":1569591600000,"y":0.22},{"x":1569591660000,"y":0.14},{"x":1569591720000,"y":0.16},{"x":1569591780000,"y":0.28},{"x":1569591840000,"y":0.15},{"x":1569591900000,"y":0.25},{"x":1569591960000,"y":0.17},{"x":1569592020000,"y":0.15},{"x":1569592080000,"y":0.34},{"x":1569592140000,"y":0.17},{"x":1569592200000,"y":0.2},{"x":1569592260000,"y":0.17},{"x":1569592320000,"y":0.15},{"x":1569592380000,"y":0.15},{"x":1569592440000,"y":0.31},{"x":1569592500000,"y":0.21},{"x":1569592560000,"y":0.15},{"x":1569592620000,"y":0.18},{"x":1569592680000,"y":0.17},{"x":1569592740000,"y":0.31},{"x":1569592800000,"y":0.21},{"x":1569592860000,"y":0.17},{"x":1569592920000,"y":0.18},{"x":1569592980000,"y":0.16},{"x":1569593040000,"y":0.3},{"x":1569593100000,"y":0.2},{"x":1569593160000,"y":0.18},{"x":1569593220000,"y":0.17},{"x":1569593280000,"y":0.16},{"x":1569593340000,"y":0.4},{"x":1569593400000,"y":0.31},{"x":1569593460000,"y":0.17},{"x":1569593520000,"y":0.17},{"x":1569593580000,"y":3.2},{"x":1569593640000,"y":0.32},{"x":1569593700000,"y":0.25},{"x":1569593760000,"y":0.16},{"x":1569593820000,"y":0.15},{"x":1569593880000,"y":0.17},{"x":1569593940000,"y":0.31},{"x":1569594000000,"y":0.23},{"x":1569594060000,"y":0.56},{"x":1569594120000,"y":0.57},{"x":1569594180000,"y":0.16},{"x":1569594240000,"y":0.31},{"x":1569594300000,"y":0.25},{"x":1569594360000,"y":0.17},{"x":1569594420000,"y":0.15},{"x":1569594480000,"y":0.16},{"x":1569594540000,"y":0.28},{"x":1569594600000,"y":0.2},{"x":1569594660000,"y":0.14},{"x":1569594720000,"y":0.14},{"x":1569594780000,"y":0.17},{"x":1569594840000,"y":0.16},{"x":1569594900000,"y":0.37},{"x":1569594960000,"y":0.16},{"x":1569595020000,"y":0.18},{"x":1569595080000,"y":0.16},{"x":1569595140000,"y":0.16},{"x":1569595200000,"y":0.33},{"x":1569595260000,"y":0.09},{"x":1569595320000,"y":0.08},{"x":1569595380000,"y":0.06},{"x":1569595440000,"y":0.05},{"x":1569595500000,"y":0.23},{"x":1569595560000,"y":0.06},{"x":1569595620000,"y":0.09},{"x":1569595680000,"y":0.07},{"x":1569595740000,"y":0.07},{"x":1569595800000,"y":0.26},{"x":1569595860000,"y":0.07},{"x":1569595920000,"y":0.08},{"x":1569595980000,"y":0.07},{"x":1569596040000,"y":0.07},{"x":1569596100000,"y":0.26},{"x":1569596160000,"y":0.43},{"x":1569596220000,"y":0.18},{"x":1569596280000,"y":0.08},{"x":1569596340000,"y":0.69},{"x":1569596400000,"y":0.42},{"x":1569596460000,"y":0.09},{"x":1569596520000,"y":0.07},{"x":1569596580000,"y":0.07},{"x":1569596640000,"y":0.06},{"x":1569596700000,"y":0.27},{"x":1569596760000,"y":0.07},{"x":1569596820000,"y":0.04},{"x":1569596880000,"y":0.06},{"x":1569596940000,"y":0.11},{"x":1569597000000,"y":0.28},{"x":1569597060000,"y":0.07},{"x":1569597120000,"y":0.06},{"x":1569597180000,"y":0.07},{"x":1569597240000,"y":0.07},{"x":1569597300000,"y":0.16},{"x":1569597360000,"y":0.21},{"x":1569597420000,"y":0.07},{"x":1569597480000,"y":0.09},{"x":1569597540000,"y":0.06},{"x":1569597600000,"y":0.13},{"x":1569597660000,"y":0.2},{"x":1569597720000,"y":0.06},{"x":1569597780000,"y":0.07},{"x":1569597840000,"y":0.6},{"x":1569597900000,"y":0.12},{"x":1569597960000,"y":0.19},{"x":1569598020000,"y":0.04},{"x":1569598080000,"y":0.37},{"x":1569598140000,"y":0.06},{"x":1569598200000,"y":0.12},{"x":1569598260000,"y":0.22},{"x":1569598320000,"y":0.05},{"x":1569598380000,"y":0.06},{"x":1569598440000,"y":0.22},{"x":1569598500000,"y":0.08},{"x":1569598560000,"y":0.21},{"x":1569598620000,"y":0.06},{"x":1569598680000,"y":0.09},{"x":1569598740000,"y":0.12},{"x":1569598800000,"y":0.12},{"x":1569598860000,"y":0.42},{"x":1569598920000,"y":0.06},{"x":1569598980000,"y":0.09},{"x":1569599040000,"y":0.12},{"x":1569599100000,"y":0.22},{"x":1569599160000,"y":0.34},{"x":1569599220000,"y":0.08},{"x":1569599280000,"y":0.07},{"x":1569599340000,"y":0.08},{"x":1569599400000,"y":0.09},{"x":1569599460000,"y":0.22},{"x":1569599520000,"y":0.05},{"x":1569599580000,"y":0.18},{"x":1569599640000,"y":0.07},{"x":1569599700000,"y":0.1},{"x":1569599760000,"y":0.09},{"x":1569599820000,"y":0.22},{"x":1569599880000,"y":0.07},{"x":1569599940000,"y":0.13},{"x":1569600000000,"y":0.14},{"x":1569600060000,"y":0.05},{"x":1569600120000,"y":0.36},{"x":1569600180000,"y":0.08},{"x":1569600240000,"y":0.06},{"x":1569600300000,"y":0.11},{"x":1569600360000,"y":0.08},{"x":1569600420000,"y":0.21},{"x":1569600480000,"y":0.06},{"x":1569600540000,"y":0.1},{"x":1569600600000,"y":0.14},{"x":1569600660000,"y":0.05},{"x":1569600720000,"y":0.2},{"x":1569600780000,"y":0.2},{"x":1569600840000,"y":0.09},{"x":1569600900000,"y":0.13},{"x":1569600960000,"y":0.07},{"x":1569601020000,"y":0.2},{"x":1569601080000,"y":0.09},{"x":1569601140000,"y":0.08},{"x":1569601200000,"y":0.09},{"x":1569601260000,"y":0.1},{"x":1569601320000,"y":0.19},{"x":1569601380000,"y":0.07},{"x":1569601440000,"y":0.07},{"x":1569601500000,"y":0.19},{"x":1569601560000,"y":0.05},{"x":1569601620000,"y":0.22},{"x":1569601680000,"y":0.07},{"x":1569601740000,"y":0.08},{"x":1569601800000,"y":0.16},{"x":1569601860000,"y":0.07},{"x":1569601920000,"y":0.2},{"x":1569601980000,"y":0.05},{"x":1569602040000,"y":0.09},{"x":1569602100000,"y":0.1},{"x":1569602160000,"y":0.06},{"x":1569602220000,"y":0.07},{"x":1569602280000,"y":0.2},{"x":1569602340000,"y":0.1},{"x":1569602400000,"y":0.16},{"x":1569602460000,"y":0.08},{"x":1569602520000,"y":0.1},{"x":1569602580000,"y":0.22},{"x":1569602640000,"y":0.1},{"x":1569602700000,"y":0.14},{"x":1569602760000,"y":0.1},{"x":1569602820000,"y":0.06},{"x":1569602880000,"y":0.23},{"x":1569602940000,"y":0.07},{"x":1569603000000,"y":0.11},{"x":1569603060000,"y":0.09},{"x":1569603120000,"y":0.05},{"x":1569603180000,"y":0.19},{"x":1569603240000,"y":0.05},{"x":1569603300000,"y":0.16},{"x":1569603360000,"y":0.05},{"x":1569603420000,"y":0.09},{"x":1569603480000,"y":0.2},{"x":1569603540000,"y":0.06},{"x":1569603600000,"y":0.12},{"x":1569603660000,"y":0.05},{"x":1569603720000,"y":0.05},{"x":1569603780000,"y":0.28},{"x":1569603840000,"y":0.07},{"x":1569603900000,"y":0.15},{"x":1569603960000,"y":0.07},{"x":1569604020000,"y":0.07},{"x":1569604080000,"y":0.22},{"x":1569604140000,"y":0.15},{"x":1569604200000,"y":0.11},{"x":1569604260000,"y":0.07},{"x":1569604320000,"y":0.11},{"x":1569604380000,"y":0.2},{"x":1569604440000,"y":0.08},{"x":1569604500000,"y":0.13},{"x":1569604560000,"y":0.08},{"x":1569604620000,"y":0.1},{"x":1569604680000,"y":0.05},{"x":1569604740000,"y":0.22},{"x":1569604800000,"y":0.1},{"x":1569604860000,"y":0.06},{"x":1569604920000,"y":0.07},{"x":1569604980000,"y":0.06},{"x":1569605040000,"y":0.19},{"x":1569605100000,"y":0.12},{"x":1569605160000,"y":0.05},{"x":1569605220000,"y":0.09},{"x":1569605280000,"y":0.06},{"x":1569605340000,"y":0.2},{"x":1569605400000,"y":0.12},{"x":1569605460000,"y":0.05},{"x":1569605520000,"y":0.07},{"x":1569605580000,"y":0.04},{"x":1569605640000,"y":0.18},{"x":1569605700000,"y":0.09},{"x":1569605760000,"y":0.08},{"x":1569605820000,"y":0.05},{"x":1569605880000,"y":0.07},{"x":1569605940000,"y":0.32},{"x":1569606000000,"y":0.12},{"x":1569606060000,"y":0.1},{"x":1569606120000,"y":0.04},{"x":1569606180000,"y":0.06},{"x":1569606240000,"y":0.18},{"x":1569606300000,"y":0.17},{"x":1569606360000,"y":0.03},{"x":1569606420000,"y":0.05},{"x":1569606480000,"y":0.07},{"x":1569606540000,"y":0.17},{"x":1569606600000,"y":0.1},{"x":1569606660000,"y":0.07},{"x":1569606720000,"y":0.04},{"x":1569606780000,"y":0.06},{"x":1569606840000,"y":0.22},{"x":1569606900000,"y":0.11},{"x":1569606960000,"y":0.08},{"x":1569607020000,"y":0.07},{"x":1569607080000,"y":0.07},{"x":1569607140000,"y":0.1},{"x":1569607200000,"y":0.25},{"x":1569607260000,"y":0.04},{"x":1569607320000,"y":0.05},{"x":1569607380000,"y":0.06},{"x":1569607440000,"y":0.05},{"x":1569607500000,"y":0.23},{"x":1569607560000,"y":0.07},{"x":1569607620000,"y":0.11},{"x":1569607680000,"y":0.06},{"x":1569607740000,"y":0.14},{"x":1569607800000,"y":0.25},{"x":1569607860000,"y":0.07},{"x":1569607920000,"y":0.06},{"x":1569607980000,"y":0.07},{"x":1569608040000,"y":0.04},{"x":1569608100000,"y":0.27},{"x":1569608160000,"y":0.08},{"x":1569608220000,"y":0.08},{"x":1569608280000,"y":0.07},{"x":1569608340000,"y":0.07},{"x":1569608400000,"y":4.88},{"x":1569608460000,"y":0.11},{"x":1569608520000,"y":0.07},{"x":1569608580000,"y":0.05},{"x":1569608640000,"y":1.45},{"x":1569608700000,"y":0.27},{"x":1569608760000,"y":0.07},{"x":1569608820000,"y":0.59},{"x":1569608880000,"y":0.06},{"x":1569608940000,"y":0.07},{"x":1569609000000,"y":0.25},{"x":1569609060000,"y":0.07},{"x":1569609120000,"y":0.06},{"x":1569609180000,"y":0.07},{"x":1569609240000,"y":0.07},{"x":1569609300000,"y":0.25},{"x":1569609360000,"y":0.08},{"x":1569609420000,"y":0.11},{"x":1569609480000,"y":0.07},{"x":1569609540000,"y":0.18},{"x":1569609600000,"y":0.13},{"x":1569609660000,"y":0.24},{"x":1569609720000,"y":0.09},{"x":1569609780000,"y":0.06},{"x":1569609840000,"y":0.06},{"x":1569609900000,"y":0.09},{"x":1569609960000,"y":0.21},{"x":1569610020000,"y":0.07},{"x":1569610080000,"y":0.09},{"x":1569610140000,"y":0.05},{"x":1569610200000,"y":0.09},{"x":1569610260000,"y":0.2},{"x":1569610320000,"y":0.05},{"x":1569610380000,"y":0.05},{"x":1569610440000,"y":0.08},{"x":1569610500000,"y":0.12},{"x":1569610560000,"y":0.19},{"x":1569610620000,"y":0.1},{"x":1569610680000,"y":0.07},{"x":1569610740000,"y":0.05},{"x":1569610800000,"y":0.15},{"x":1569610860000,"y":0.22},{"x":1569610920000,"y":0.06},{"x":1569610980000,"y":0.07},{"x":1569611040000,"y":0.38},{"x":1569611100000,"y":0.12},{"x":1569611160000,"y":0.19},{"x":1569611220000,"y":0.08},{"x":1569611280000,"y":0.08},{"x":1569611340000,"y":0.15},{"x":1569611400000,"y":0.15},{"x":1569611460000,"y":0.2},{"x":1569611520000,"y":0.07},{"x":1569611580000,"y":0.05},{"x":1569611640000,"y":0.05},{"x":1569611700000,"y":0.12},{"x":1569611760000,"y":0.2},{"x":1569611820000,"y":0.07},{"x":1569611880000,"y":0.06},{"x":1569611940000,"y":0.07},{"x":1569612000000,"y":0.14},{"x":1569612060000,"y":0.05},{"x":1569612120000,"y":0.2},{"x":1569612180000,"y":0.07},{"x":1569612240000,"y":0.07},{"x":1569612300000,"y":0.12},{"x":1569612360000,"y":0.07},{"x":1569612420000,"y":0.2},{"x":1569612480000,"y":0.1},{"x":1569612540000,"y":0.07},{"x":1569612600000,"y":0.12},{"x":1569612660000,"y":0.07},{"x":1569612720000,"y":0.25},{"x":1569612780000,"y":0.07},{"x":1569612840000,"y":0.05},{"x":1569612900000,"y":0.19},{"x":1569612960000,"y":0.06},{"x":1569613020000,"y":0.26},{"x":1569613080000,"y":0.05},{"x":1569613140000,"y":0.16},{"x":1569613200000,"y":0.11},{"x":1569613260000,"y":0.08},{"x":1569613320000,"y":0.21},{"x":1569613380000,"y":0.07},{"x":1569613440000,"y":0.08},{"x":1569613500000,"y":0.1},{"x":1569613560000,"y":0.09},{"x":1569613620000,"y":0.23},{"x":1569613680000,"y":0.05},{"x":1569613740000,"y":0.07},{"x":1569613800000,"y":0.1},{"x":1569613860000,"y":0.07},{"x":1569613920000,"y":0.19},{"x":1569613980000,"y":0.06},{"x":1569614040000,"y":0.06},{"x":1569614100000,"y":0.15},{"x":1569614160000,"y":0.05},{"x":1569614220000,"y":0.07},{"x":1569614280000,"y":0.2},{"x":1569614340000,"y":0.05},{"x":1569614400000,"y":0.12},{"x":1569614460000,"y":0.05},{"x":1569614520000,"y":0.08},{"x":1569614580000,"y":0.19},{"x":1569614640000,"y":0.05},{"x":1569614700000,"y":0.11},{"x":1569614760000,"y":0.08},{"x":1569614820000,"y":0.05},{"x":1569614880000,"y":0.18},{"x":1569614940000,"y":0.11},{"x":1569615000000,"y":0.19},{"x":1569615060000,"y":0.09},{"x":1569615120000,"y":0.08},{"x":1569615180000,"y":0.19},{"x":1569615240000,"y":0.05},{"x":1569615300000,"y":0.15},{"x":1569615360000,"y":0.06},{"x":1569615420000,"y":0.08},{"x":1569615480000,"y":0.21},{"x":1569615540000,"y":0.07},{"x":1569615600000,"y":0.12},{"x":1569615660000,"y":0.08},{"x":1569615720000,"y":0.06},{"x":1569615780000,"y":0.23},{"x":1569615840000,"y":0.07},{"x":1569615900000,"y":0.14},{"x":1569615960000,"y":0.08},{"x":1569616020000,"y":0.08},{"x":1569616080000,"y":0.22},{"x":1569616140000,"y":0.07},{"x":1569616200000,"y":0.18},{"x":1569616260000,"y":0.06},{"x":1569616320000,"y":0.07},{"x":1569616380000,"y":0.2},{"x":1569616440000,"y":0.07},{"x":1569616500000,"y":0.13},{"x":1569616560000,"y":0.05},{"x":1569616620000,"y":0.07},{"x":1569616680000,"y":0.07},{"x":1569616740000,"y":0.25},{"x":1569616800000,"y":0.12},{"x":1569616860000,"y":0.09},{"x":1569616920000,"y":0.11},{"x":1569616980000,"y":0.08},{"x":1569617040000,"y":0.19},{"x":1569617100000,"y":0.09},{"x":1569617160000,"y":0.05},{"x":1569617220000,"y":0.05},{"x":1569617280000,"y":0.09},{"x":1569617340000,"y":0.2},{"x":1569617400000,"y":0.1},{"x":1569617460000,"y":0.09},{"x":1569617520000,"y":0.12},{"x":1569617580000,"y":0.08},{"x":1569617640000,"y":0.29},{"x":1569617700000,"y":0.13},{"x":1569617760000,"y":0.13},{"x":1569617820000,"y":0.16},{"x":1569617880000,"y":0.17},{"x":1569617940000,"y":0.23},{"x":1569618000000,"y":0.24},{"x":1569618060000,"y":0.07},{"x":1569618120000,"y":0.14},{"x":1569618180000,"y":0.12},{"x":1569618240000,"y":0.25},{"x":1569618300000,"y":0.16},{"x":1569618360000,"y":0.1},{"x":1569618420000,"y":0.07},{"x":1569618480000,"y":0.1},{"x":1569618540000,"y":0.38},{"x":1569618600000,"y":0.19},{"x":1569618660000,"y":0.16},{"x":1569618720000,"y":0.15},{"x":1569618780000,"y":0.17},{"x":1569618840000,"y":0.25},{"x":1569618900000,"y":0.19},{"x":1569618960000,"y":0.12},{"x":1569619020000,"y":0.15},{"x":1569619080000,"y":0.14},{"x":1569619140000,"y":0.12},{"x":1569619200000,"y":0.34},{"x":1569619260000,"y":0.15},{"x":1569619320000,"y":0.14},{"x":1569619380000,"y":0.15},{"x":1569619440000,"y":0.13},{"x":1569619500000,"y":0.33},{"x":1569619560000,"y":1.05},{"x":1569619620000,"y":0.15},{"x":1569619680000,"y":0.15},{"x":1569619740000,"y":0.15},{"x":1569619800000,"y":0.33},{"x":1569619860000,"y":0.12},{"x":1569619920000,"y":0.14},{"x":1569619980000,"y":0.15},{"x":1569620040000,"y":0.13},{"x":1569620100000,"y":0.35},{"x":1569620160000,"y":0.13},{"x":1569620220000,"y":0.14},{"x":1569620280000,"y":0.15},{"x":1569620340000,"y":0.21},{"x":1569620400000,"y":0.3},{"x":1569620460000,"y":0.16},{"x":1569620520000,"y":0.16},{"x":1569620580000,"y":0.14},{"x":1569620640000,"y":0.16},{"x":1569620700000,"y":0.36},{"x":1569620760000,"y":0.12},{"x":1569620820000,"y":0.13},{"x":1569620880000,"y":0.13},{"x":1569620940000,"y":0.16},{"x":1569621000000,"y":0.32},{"x":1569621060000,"y":0.14},{"x":1569621120000,"y":0.15},{"x":1569621180000,"y":0.13},{"x":1569621240000,"y":0.17},{"x":1569621300000,"y":0.34},{"x":1569621360000,"y":0.14},{"x":1569621420000,"y":0.16},{"x":1569621480000,"y":0.15},{"x":1569621540000,"y":0.12},{"x":1569621600000,"y":0.19},{"x":1569621660000,"y":0.27},{"x":1569621720000,"y":0.14},{"x":1569621780000,"y":0.15},{"x":1569621840000,"y":0.15},{"x":1569621900000,"y":0.2},{"x":1569621960000,"y":0.29},{"x":1569622020000,"y":0.13},{"x":1569622080000,"y":0.15},{"x":1569622140000,"y":0.23},{"x":1569622200000,"y":0.24},{"x":1569622260000,"y":0.26},{"x":1569622320000,"y":0.16},{"x":1569622380000,"y":0.14},{"x":1569622440000,"y":0.12},{"x":1569622500000,"y":0.24},{"x":1569622560000,"y":0.29},{"x":1569622620000,"y":0.15},{"x":1569622680000,"y":0.16},{"x":1569622740000,"y":0.16},{"x":1569622800000,"y":0.2},{"x":1569622860000,"y":0.29},{"x":1569622920000,"y":0.15},{"x":1569622980000,"y":0.14},{"x":1569623040000,"y":0.2},{"x":1569623100000,"y":0.19},{"x":1569623160000,"y":0.29},{"x":1569623220000,"y":0.13},{"x":1569623280000,"y":0.15},{"x":1569623340000,"y":0.15},{"x":1569623400000,"y":0.2},{"x":1569623460000,"y":0.29},{"x":1569623520000,"y":0.15},{"x":1569623580000,"y":0.16},{"x":1569623640000,"y":0.18},{"x":1569623700000,"y":0.22},{"x":1569623760000,"y":0.25},{"x":1569623820000,"y":0.16},{"x":1569623880000,"y":0.17},{"x":1569623940000,"y":0.2},{"x":1569624000000,"y":0.22},{"x":1569624060000,"y":0.15},{"x":1569624120000,"y":0.27},{"x":1569624180000,"y":0.14},{"x":1569624240000,"y":0.13},{"x":1569624300000,"y":0.19},{"x":1569624360000,"y":0.15},{"x":1569624420000,"y":0.29},{"x":1569624480000,"y":0.15},{"x":1569624540000,"y":0.13},{"x":1569624600000,"y":0.18},{"x":1569624660000,"y":0.12},{"x":1569624720000,"y":0.25},{"x":1569624780000,"y":0.15},{"x":1569624840000,"y":0.14},{"x":1569624900000,"y":0.2},{"x":1569624960000,"y":0.13},{"x":1569625020000,"y":0.29},{"x":1569625080000,"y":0.15},{"x":1569625140000,"y":0.13},{"x":1569625200000,"y":0.24},{"x":1569625260000,"y":0.17},{"x":1569625320000,"y":0.26},{"x":1569625380000,"y":0.17},{"x":1569625440000,"y":0.16},{"x":1569625500000,"y":0.18},{"x":1569625560000,"y":0.14},{"x":1569625620000,"y":0.3},{"x":1569625680000,"y":0.14},{"x":1569625740000,"y":0.19},{"x":1569625800000,"y":0.19},{"x":1569625860000,"y":0.16},{"x":1569625920000,"y":0.14},{"x":1569625980000,"y":0.28},{"x":1569626040000,"y":0.14},{"x":1569626100000,"y":0.21},{"x":1569626160000,"y":0.17},{"x":1569626220000,"y":0.15},{"x":1569626280000,"y":0.29},{"x":1569626340000,"y":0.14},{"x":1569626400000,"y":0.2},{"x":1569626460000,"y":0.17},{"x":1569626520000,"y":0.15},{"x":1569626580000,"y":0.27},{"x":1569626640000,"y":0.14},{"x":1569626700000,"y":0.19},{"x":1569626760000,"y":0.17},{"x":1569626820000,"y":0.27},{"x":1569626880000,"y":0.29},{"x":1569626940000,"y":0.15},{"x":1569627000000,"y":0.18},{"x":1569627060000,"y":0.13},{"x":1569627120000,"y":0.16},{"x":1569627180000,"y":0.28},{"x":1569627240000,"y":0.15},{"x":1569627300000,"y":0.2},{"x":1569627360000,"y":0.18},{"x":1569627420000,"y":0.13},{"x":1569627480000,"y":0.27},{"x":1569627540000,"y":0.24},{"x":1569627600000,"y":0.19},{"x":1569627660000,"y":0.15},{"x":1569627720000,"y":0.15},{"x":1569627780000,"y":0.3},{"x":1569627840000,"y":0.14},{"x":1569627900000,"y":0.19},{"x":1569627960000,"y":0.17},{"x":1569628020000,"y":0.15},{"x":1569628080000,"y":0.27},{"x":1569628140000,"y":0.15},{"x":1569628200000,"y":0.24},{"x":1569628260000,"y":0.12},{"x":1569628320000,"y":0.13},{"x":1569628380000,"y":0.15},{"x":1569628440000,"y":0.28},{"x":1569628500000,"y":0.2},{"x":1569628560000,"y":0.12},{"x":1569628620000,"y":0.13},{"x":1569628680000,"y":0.07},{"x":1569628740000,"y":0.2},{"x":1569628800000,"y":0.16},{"x":1569628860000,"y":0.05},{"x":1569628920000,"y":0.05},{"x":1569628980000,"y":0.05},{"x":1569629040000,"y":0.2},{"x":1569629100000,"y":0.1},{"x":1569629160000,"y":0.05},{"x":1569629220000,"y":0.07},{"x":1569629280000,"y":0.07},{"x":1569629340000,"y":0.27},{"x":1569629400000,"y":0.12},{"x":1569629460000,"y":0.04},{"x":1569629520000,"y":0.05},{"x":1569629580000,"y":0.07},{"x":1569629640000,"y":0.18},{"x":1569629700000,"y":0.1},{"x":1569629760000,"y":0.05},{"x":1569629820000,"y":0.06},{"x":1569629880000,"y":0.06},{"x":1569629940000,"y":0.2},{"x":1569630000000,"y":0.16},{"x":1569630060000,"y":0.07},{"x":1569630120000,"y":0.09},{"x":1569630180000,"y":0.05},{"x":1569630240000,"y":4.74},{"x":1569630300000,"y":0.19},{"x":1569630360000,"y":0.05},{"x":1569630420000,"y":5.85},{"x":1569630480000,"y":0.05},{"x":1569630540000,"y":0.2},{"x":1569630600000,"y":0.12},{"x":1569630660000,"y":0.07},{"x":1569630720000,"y":0.06},{"x":1569630780000,"y":0.06},{"x":1569630840000,"y":0.07},{"x":1569630900000,"y":0.32},{"x":1569630960000,"y":0.07},{"x":1569631020000,"y":0.05},{"x":1569631080000,"y":0.06},{"x":1569631140000,"y":0.16},{"x":1569631200000,"y":0.25},{"x":1569631260000,"y":0.07},{"x":1569631320000,"y":0.05},{"x":1569631380000,"y":0.05},{"x":1569631440000,"y":0.05},{"x":1569631500000,"y":0.27},{"x":1569631560000,"y":0.06},{"x":1569631620000,"y":0.06},{"x":1569631680000,"y":0.09},{"x":1569631740000,"y":0.03},{"x":1569631800000,"y":0.23},{"x":1569631860000,"y":0.05},{"x":1569631920000,"y":0.1},{"x":1569631980000,"y":0.06},{"x":1569632040000,"y":0.07},{"x":1569632100000,"y":0.31},{"x":1569632160000,"y":0.15},{"x":1569632220000,"y":0.08},{"x":1569632280000,"y":0.06},{"x":1569632340000,"y":0.09},{"x":1569632400000,"y":0.29},{"x":1569632460000,"y":0.05},{"x":1569632520000,"y":0.12},{"x":1569632580000,"y":0.05},{"x":1569632640000,"y":0.07},{"x":1569632700000,"y":0.26},{"x":1569632760000,"y":0.07},{"x":1569632820000,"y":0.06},{"x":1569632880000,"y":0.06},{"x":1569632940000,"y":0.11},{"x":1569633000000,"y":0.28},{"x":1569633060000,"y":0.09},{"x":1569633120000,"y":0.06},{"x":1569633180000,"y":0.06},{"x":1569633240000,"y":0.05},{"x":1569633300000,"y":0.13},{"x":1569633360000,"y":0.2},{"x":1569633420000,"y":0.07},{"x":1569633480000,"y":0.06},{"x":1569633540000,"y":0.08},{"x":1569633600000,"y":0.13},{"x":1569633660000,"y":0.21},{"x":1569633720000,"y":0.09},{"x":1569633780000,"y":0.05},{"x":1569633840000,"y":0.06},{"x":1569633900000,"y":0.1},{"x":1569633960000,"y":0.19},{"x":1569634020000,"y":0.07},{"x":1569634080000,"y":2.34},{"x":1569634140000,"y":0.09},{"x":1569634200000,"y":0.12},{"x":1569634260000,"y":0.19},{"x":1569634320000,"y":0.05},{"x":1569634380000,"y":0.09},{"x":1569634440000,"y":0.05},{"x":1569634500000,"y":0.12},{"x":1569634560000,"y":0.21},{"x":1569634620000,"y":0.07},{"x":1569634680000,"y":0.08},{"x":1569634740000,"y":0.15},{"x":1569634800000,"y":0.16},{"x":1569634860000,"y":0.2},{"x":1569634920000,"y":0.07},{"x":1569634980000,"y":0.07},{"x":1569635040000,"y":0.07},{"x":1569635100000,"y":0.09},{"x":1569635160000,"y":0.19},{"x":1569635220000,"y":0.08},{"x":1569635280000,"y":0.07},{"x":1569635340000,"y":0.08},{"x":1569635400000,"y":0.09},{"x":1569635460000,"y":0.21},{"x":1569635520000,"y":0.04},{"x":1569635580000,"y":0.05},{"x":1569635640000,"y":0.07},{"x":1569635700000,"y":0.12},{"x":1569635760000,"y":0.07},{"x":1569635820000,"y":0.26},{"x":1569635880000,"y":0.06},{"x":1569635940000,"y":0.06},{"x":1569636000000,"y":0.11},{"x":1569636060000,"y":0.05},{"x":1569636120000,"y":0.21},{"x":1569636180000,"y":0.07},{"x":1569636240000,"y":0.09},{"x":1569636300000,"y":0.13},{"x":1569636360000,"y":0.07},{"x":1569636420000,"y":0.2},{"x":1569636480000,"y":0.07},{"x":1569636540000,"y":0.2},{"x":1569636600000,"y":0.14},{"x":1569636660000,"y":0.1},{"x":1569636720000,"y":0.22},{"x":1569636780000,"y":0.07},{"x":1569636840000,"y":0.05},{"x":1569636900000,"y":0.12},{"x":1569636960000,"y":0.11},{"x":1569637020000,"y":0.21},{"x":1569637080000,"y":0.05},{"x":1569637140000,"y":0.06},{"x":1569637200000,"y":0.15},{"x":1569637260000,"y":0.06},{"x":1569637320000,"y":0.19},{"x":1569637380000,"y":0.08},{"x":1569637440000,"y":0.07},{"x":1569637500000,"y":0.12},{"x":1569637560000,"y":0.1},{"x":1569637620000,"y":0.18},{"x":1569637680000,"y":0.08},{"x":1569637740000,"y":0.07},{"x":1569637800000,"y":0.15},{"x":1569637860000,"y":0.05},{"x":1569637920000,"y":0.16},{"x":1569637980000,"y":0.1},{"x":1569638040000,"y":0.07},{"x":1569638100000,"y":0.1},{"x":1569638160000,"y":0.06},{"x":1569638220000,"y":0.06},{"x":1569638280000,"y":0.21},{"x":1569638340000,"y":0.16},{"x":1569638400000,"y":0.12},{"x":1569638460000,"y":0.06},{"x":1569638520000,"y":0.07},{"x":1569638580000,"y":0.2},{"x":1569638640000,"y":0.06},{"x":1569638700000,"y":0.1},{"x":1569638760000,"y":0.08},{"x":1569638820000,"y":0.08},{"x":1569638880000,"y":0.2},{"x":1569638940000,"y":0.06},{"x":1569639000000,"y":0.1},{"x":1569639060000,"y":0.06},{"x":1569639120000,"y":0.08},{"x":1569639180000,"y":0.2},{"x":1569639240000,"y":0.08},{"x":1569639300000,"y":0.14},{"x":1569639360000,"y":0.09},{"x":1569639420000,"y":0.09},{"x":1569639480000,"y":0.2},{"x":1569639540000,"y":0.07},{"x":1569639600000,"y":0.18},{"x":1569639660000,"y":0.07},{"x":1569639720000,"y":0.05},{"x":1569639780000,"y":0.2},{"x":1569639840000,"y":0.07},{"x":1569639900000,"y":0.11},{"x":1569639960000,"y":0.06},{"x":1569640020000,"y":0.06},{"x":1569640080000,"y":0.07},{"x":1569640140000,"y":0.3},{"x":1569640200000,"y":0.14},{"x":1569640260000,"y":0.08},{"x":1569640320000,"y":0.07},{"x":1569640380000,"y":0.04},{"x":1569640440000,"y":0.21},{"x":1569640500000,"y":0.11},{"x":1569640560000,"y":0.05},{"x":1569640620000,"y":0.06},{"x":1569640680000,"y":0.05},{"x":1569640740000,"y":0.19},{"x":1569640800000,"y":0.19},{"x":1569640860000,"y":0.07},{"x":1569640920000,"y":0.05},{"x":1569640980000,"y":0.08},{"x":1569641040000,"y":0.17},{"x":1569641100000,"y":0.12},{"x":1569641160000,"y":0.05},{"x":1569641220000,"y":1.13},{"x":1569641280000,"y":1.18},{"x":1569641340000,"y":0.21},{"x":1569641400000,"y":0.1},{"x":1569641460000,"y":0.07},{"x":1569641520000,"y":0.07},{"x":1569641580000,"y":0.06},{"x":1569641640000,"y":0.23},{"x":1569641700000,"y":0.12},{"x":1569641760000,"y":0.08},{"x":1569641820000,"y":0.06},{"x":1569641880000,"y":0.96},{"x":1569641940000,"y":0.28},{"x":1569642000000,"y":0.11},{"x":1569642060000,"y":0.66},{"x":1569642120000,"y":0.08},{"x":1569642180000,"y":0.08},{"x":1569642240000,"y":0.19},{"x":1569642300000,"y":0.97},{"x":1569642360000,"y":0.08},{"x":1569642420000,"y":0.07},{"x":1569642480000,"y":0.05},{"x":1569642540000,"y":0.07},{"x":1569642600000,"y":0.26},{"x":1569642660000,"y":0.07},{"x":1569642720000,"y":0.07},{"x":1569642780000,"y":0.1},{"x":1569642840000,"y":0.05},{"x":1569642900000,"y":0.26},{"x":1569642960000,"y":0.07},{"x":1569643020000,"y":0.09},{"x":1569643080000,"y":0.26},{"x":1569643140000,"y":3.16},{"x":1569643200000,"y":0.29},{"x":1569643260000,"y":0.06},{"x":1569643320000,"y":0.35},{"x":1569643380000,"y":0.07},{"x":1569643440000,"y":0.05},{"x":1569643500000,"y":0.26},{"x":1569643560000,"y":0.14},{"x":1569643620000,"y":0.07},{"x":1569643680000,"y":0.1},{"x":1569643740000,"y":0.15},{"x":1569643800000,"y":0.27},{"x":1569643860000,"y":0.05},{"x":1569643920000,"y":0.06},{"x":1569643980000,"y":0.47},{"x":1569644040000,"y":0.07},{"x":1569644100000,"y":0.27},{"x":1569644160000,"y":0.08},{"x":1569644220000,"y":0.25},{"x":1569644280000,"y":0.07},{"x":1569644340000,"y":0.07},{"x":1569644400000,"y":0.69},{"x":1569644460000,"y":0.07},{"x":1569644520000,"y":0.03},{"x":1569644580000,"y":0.1},{"x":1569644640000,"y":0.06},{"x":1569644700000,"y":0.25},{"x":1569644760000,"y":0.08},{"x":1569644820000,"y":0.14},{"x":1569644880000,"y":0.06},{"x":1569644940000,"y":0.07},{"x":1569645000000,"y":0.28},{"x":1569645060000,"y":0.2},{"x":1569645120000,"y":0.06},{"x":1569645180000,"y":0.07},{"x":1569645240000,"y":3.42},{"x":1569645300000,"y":0.12},{"x":1569645360000,"y":0.19},{"x":1569645420000,"y":0.06},{"x":1569645480000,"y":0.13},{"x":1569645540000,"y":0.13},{"x":1569645600000,"y":0.1},{"x":1569645660000,"y":1.32},{"x":1569645720000,"y":0.08},{"x":1569645780000,"y":0.08},{"x":1569645840000,"y":0.07},{"x":1569645900000,"y":0.14},{"x":1569645960000,"y":0.2},{"x":1569646020000,"y":0.06},{"x":1569646080000,"y":0.05},{"x":1569646140000,"y":0.07},{"x":1569646200000,"y":0.14},{"x":1569646260000,"y":0.2},{"x":1569646320000,"y":0.07},{"x":1569646380000,"y":0.05},{"x":1569646440000,"y":0.08},{"x":1569646500000,"y":0.15},{"x":1569646560000,"y":0.23},{"x":1569646620000,"y":0.08},{"x":1569646680000,"y":0.11},{"x":1569646740000,"y":1},{"x":1569646800000,"y":0.53},{"x":1569646860000,"y":0.24},{"x":1569646920000,"y":0.35},{"x":1569646980000,"y":0.05},{"x":1569647040000,"y":0.08},{"x":1569647100000,"y":0.12},{"x":1569647160000,"y":0.75},{"x":1569647220000,"y":0.32},{"x":1569647280000,"y":0.07},{"x":1569647340000,"y":0.33},{"x":1569647400000,"y":0.13},{"x":1569647460000,"y":0.08},{"x":1569647520000,"y":0.21},{"x":1569647580000,"y":0.23},{"x":1569647640000,"y":0.07},{"x":1569647700000,"y":0.1},{"x":1569647760000,"y":0.47},{"x":1569647820000,"y":0.2},{"x":1569647880000,"y":0.06},{"x":1569647940000,"y":0.05},{"x":1569648000000,"y":0.1},{"x":1569648060000,"y":0.07},{"x":1569648120000,"y":0.18},{"x":1569648180000,"y":0.1},{"x":1569648240000,"y":0.08},{"x":1569648300000,"y":0.14},{"x":1569648360000,"y":0.08},{"x":1569648420000,"y":0.21},{"x":1569648480000,"y":0.12},{"x":1569648540000,"y":0.06},{"x":1569648600000,"y":0.13},{"x":1569648660000,"y":0.07},{"x":1569648720000,"y":0.2},{"x":1569648780000,"y":0.09},{"x":1569648840000,"y":0.65},{"x":1569648900000,"y":0.11},{"x":1569648960000,"y":0.07},{"x":1569649020000,"y":0.22},{"x":1569649080000,"y":0.07},{"x":1569649140000,"y":0.14},{"x":1569649200000,"y":0.17},{"x":1569649260000,"y":0.05},{"x":1569649320000,"y":0.2},{"x":1569649380000,"y":0.15},{"x":1569649440000,"y":0.07},{"x":1569649500000,"y":0.17},{"x":1569649560000,"y":0.09},{"x":1569649620000,"y":0.26},{"x":1569649680000,"y":0.08},{"x":1569649740000,"y":0.07},{"x":1569649800000,"y":0.14},{"x":1569649860000,"y":0.24},{"x":1569649920000,"y":0.07},{"x":1569649980000,"y":0.22},{"x":1569650040000,"y":0.07},{"x":1569650100000,"y":1.92},{"x":1569650160000,"y":0.09},{"x":1569650220000,"y":0.09},{"x":1569650280000,"y":0.24},{"x":1569650340000,"y":0.1},{"x":1569650400000,"y":0.17},{"x":1569650460000,"y":0.12},{"x":1569650520000,"y":0.12},{"x":1569650580000,"y":0.22},{"x":1569650640000,"y":0.1},{"x":1569650700000,"y":0.43},{"x":1569650760000,"y":0.17},{"x":1569650820000,"y":0.1},{"x":1569650880000,"y":0.25},{"x":1569650940000,"y":0.78},{"x":1569651000000,"y":0.7},{"x":1569651060000,"y":0.15},{"x":1569651120000,"y":0.18},{"x":1569651180000,"y":0.25},{"x":1569651240000,"y":0.15},{"x":1569651300000,"y":0.2},{"x":1569651360000,"y":0.14},{"x":1569651420000,"y":0.16},{"x":1569651480000,"y":0.28},{"x":1569651540000,"y":0.13},{"x":1569651600000,"y":0.35},{"x":1569651660000,"y":0.16},{"x":1569651720000,"y":0.11},{"x":1569651780000,"y":0.27},{"x":1569651840000,"y":0.12},{"x":1569651900000,"y":0.26},{"x":1569651960000,"y":0.15},{"x":1569652020000,"y":0.08},{"x":1569652080000,"y":0.17},{"x":1569652140000,"y":5},{"x":1569652200000,"y":1.52},{"x":1569652260000,"y":0.12},{"x":1569652320000,"y":0.17},{"x":1569652380000,"y":0.15},{"x":1569652440000,"y":0.28},{"x":1569652500000,"y":0.19},{"x":1569652560000,"y":0.57},{"x":1569652620000,"y":0.16},{"x":1569652680000,"y":0.14},{"x":1569652740000,"y":0.35},{"x":1569652800000,"y":0.27},{"x":1569652860000,"y":2.63},{"x":1569652920000,"y":0.16},{"x":1569652980000,"y":0.18},{"x":1569653040000,"y":0.29},{"x":1569653100000,"y":0.22},{"x":1569653160000,"y":0.17},{"x":1569653220000,"y":0.13},{"x":1569653280000,"y":0.16},{"x":1569653340000,"y":0.31},{"x":1569653400000,"y":0.2},{"x":1569653460000,"y":0.17},{"x":1569653520000,"y":0.15},{"x":1569653580000,"y":0.16},{"x":1569653640000,"y":0.3},{"x":1569653700000,"y":0.22},{"x":1569653760000,"y":0.17},{"x":1569653820000,"y":0.17},{"x":1569653880000,"y":3.92},{"x":1569653940000,"y":0.28},{"x":1569654000000,"y":0.26},{"x":1569654060000,"y":0.15},{"x":1569654120000,"y":0.15},{"x":1569654180000,"y":0.17},{"x":1569654240000,"y":0.31},{"x":1569654300000,"y":0.22},{"x":1569654360000,"y":0.15},{"x":1569654420000,"y":0.16},{"x":1569654480000,"y":0.16},{"x":1569654540000,"y":0.21},{"x":1569654600000,"y":0.42},{"x":1569654660000,"y":0.15},{"x":1569654720000,"y":0.18},{"x":1569654780000,"y":0.16},{"x":1569654840000,"y":0.14},{"x":1569654900000,"y":0.35},{"x":1569654960000,"y":0.15},{"x":1569655020000,"y":0.18},{"x":1569655080000,"y":0.15},{"x":1569655140000,"y":0.17},{"x":1569655200000,"y":0.34},{"x":1569655260000,"y":0.2},{"x":1569655320000,"y":0.16},{"x":1569655380000,"y":0.15},{"x":1569655440000,"y":0.14},{"x":1569655500000,"y":0.35},{"x":1569655560000,"y":0.18},{"x":1569655620000,"y":0.15},{"x":1569655680000,"y":0.17},{"x":1569655740000,"y":0.16},{"x":1569655800000,"y":0.35},{"x":1569655860000,"y":3.13},{"x":1569655920000,"y":0.17},{"x":1569655980000,"y":0.16},{"x":1569656040000,"y":0.17},{"x":1569656100000,"y":0.34},{"x":1569656160000,"y":0.16},{"x":1569656220000,"y":0.16},{"x":1569656280000,"y":0.16},{"x":1569656340000,"y":0.24},{"x":1569656400000,"y":0.36},{"x":1569656460000,"y":0.15},{"x":1569656520000,"y":0.15},{"x":1569656580000,"y":0.15},{"x":1569656640000,"y":0.16},{"x":1569656700000,"y":0.35},{"x":1569656760000,"y":0.15},{"x":1569656820000,"y":0.16},{"x":1569656880000,"y":0.25},{"x":1569656940000,"y":0.15},{"x":1569657000000,"y":0.2},{"x":1569657060000,"y":0.29},{"x":1569657120000,"y":0.17},{"x":1569657180000,"y":0.15},{"x":1569657240000,"y":0.17},{"x":1569657300000,"y":0.2},{"x":1569657360000,"y":0.32},{"x":1569657420000,"y":0.17},{"x":1569657480000,"y":0.17},{"x":1569657540000,"y":0.15},{"x":1569657600000,"y":0.2},{"x":1569657660000,"y":0.31},{"x":1569657720000,"y":0.14},{"x":1569657780000,"y":0.15},{"x":1569657840000,"y":0.16},{"x":1569657900000,"y":0.2},{"x":1569657960000,"y":0.29},{"x":1569658020000,"y":0.17},{"x":1569658080000,"y":0.16},{"x":1569658140000,"y":0.22},{"x":1569658200000,"y":0.24},{"x":1569658260000,"y":0.3},{"x":1569658320000,"y":0.16},{"x":1569658380000,"y":0.19},{"x":1569658440000,"y":0.17},{"x":1569658500000,"y":0.2},{"x":1569658560000,"y":0.29},{"x":1569658620000,"y":0.16},{"x":1569658680000,"y":0.14},{"x":1569658740000,"y":0.15},{"x":1569658800000,"y":0.2},{"x":1569658860000,"y":0.28},{"x":1569658920000,"y":0.17},{"x":1569658980000,"y":0.14},{"x":1569659040000,"y":0.15},{"x":1569659100000,"y":0.2},{"x":1569659160000,"y":0.3},{"x":1569659220000,"y":0.17},{"x":1569659280000,"y":0.15},{"x":1569659340000,"y":0.18},{"x":1569659400000,"y":0.21},{"x":1569659460000,"y":0.3},{"x":1569659520000,"y":0.16},{"x":1569659580000,"y":0.18},{"x":1569659640000,"y":0.18},{"x":1569659700000,"y":0.23},{"x":1569659760000,"y":0.16},{"x":1569659820000,"y":0.3},{"x":1569659880000,"y":0.15},{"x":1569659940000,"y":0.2},{"x":1569660000000,"y":0.2},{"x":1569660060000,"y":0.16},{"x":1569660120000,"y":0.31},{"x":1569660180000,"y":0.16},{"x":1569660240000,"y":0.15},{"x":1569660300000,"y":0.21},{"x":1569660360000,"y":0.14},{"x":1569660420000,"y":0.28},{"x":1569660480000,"y":0.16},{"x":1569660540000,"y":0.14},{"x":1569660600000,"y":0.24},{"x":1569660660000,"y":0.15},{"x":1569660720000,"y":0.31},{"x":1569660780000,"y":0.18},{"x":1569660840000,"y":0.18},{"x":1569660900000,"y":0.24},{"x":1569660960000,"y":0.16},{"x":1569661020000,"y":0.28},{"x":1569661080000,"y":0.2},{"x":1569661140000,"y":0.17},{"x":1569661200000,"y":0.29},{"x":1569661260000,"y":0.22},{"x":1569661320000,"y":0.32},{"x":1569661380000,"y":0.16},{"x":1569661440000,"y":0.2},{"x":1569661500000,"y":0.21},{"x":1569661560000,"y":0.16},{"x":1569661620000,"y":0.27},{"x":1569661680000,"y":0.17},{"x":1569661740000,"y":0.18},{"x":1569661800000,"y":0.17},{"x":1569661860000,"y":0.43},{"x":1569661920000,"y":0.12},{"x":1569661980000,"y":0.24},{"x":1569662040000,"y":0.08},{"x":1569662100000,"y":0.11},{"x":1569662160000,"y":0.09},{"x":1569662220000,"y":0.07},{"x":1569662280000,"y":0.25},{"x":1569662340000,"y":0.08},{"x":1569662400000,"y":0.13},{"x":1569662460000,"y":0.08},{"x":1569662520000,"y":0.1},{"x":1569662580000,"y":0.2},{"x":1569662640000,"y":0.06},{"x":1569662700000,"y":0.11},{"x":1569662760000,"y":0.08},{"x":1569662820000,"y":0.1},{"x":1569662880000,"y":0.23},{"x":1569662940000,"y":0.1},{"x":1569663000000,"y":0.18},{"x":1569663060000,"y":0.07},{"x":1569663120000,"y":0.07},{"x":1569663180000,"y":0.2},{"x":1569663240000,"y":0.06},{"x":1569663300000,"y":0.15},{"x":1569663360000,"y":0.1},{"x":1569663420000,"y":0.06},{"x":1569663480000,"y":0.2},{"x":1569663540000,"y":0.13},{"x":1569663600000,"y":0.2},{"x":1569663660000,"y":0.11},{"x":1569663720000,"y":0.07},{"x":1569663780000,"y":0.2},{"x":1569663840000,"y":0.1},{"x":1569663900000,"y":0.09},{"x":1569663960000,"y":0.09},{"x":1569664020000,"y":0.07},{"x":1569664080000,"y":0.07},{"x":1569664140000,"y":0.21},{"x":1569664200000,"y":0.14},{"x":1569664260000,"y":0.07},{"x":1569664320000,"y":0.06},{"x":1569664380000,"y":0.09},{"x":1569664440000,"y":0.2},{"x":1569664500000,"y":0.1},{"x":1569664560000,"y":0.09},{"x":1569664620000,"y":0.05},{"x":1569664680000,"y":0.1},{"x":1569664740000,"y":0.23},{"x":1569664800000,"y":0.21},{"x":1569664860000,"y":0.08},{"x":1569664920000,"y":0.06},{"x":1569664980000,"y":0.06},{"x":1569665040000,"y":0.21},{"x":1569665100000,"y":0.12},{"x":1569665160000,"y":0.08},{"x":1569665220000,"y":0.08},{"x":1569665280000,"y":0.07},{"x":1569665340000,"y":0.3},{"x":1569665400000,"y":0.16},{"x":1569665460000,"y":0.09},{"x":1569665520000,"y":0.07},{"x":1569665580000,"y":0.05},{"x":1569665640000,"y":0.2},{"x":1569665700000,"y":0.13},{"x":1569665760000,"y":0.07},{"x":1569665820000,"y":0.11},{"x":1569665880000,"y":0.08},{"x":1569665940000,"y":0.23},{"x":1569666000000,"y":0.18},{"x":1569666060000,"y":0.1},{"x":1569666120000,"y":0.08},{"x":1569666180000,"y":0.07},{"x":1569666240000,"y":0.2},{"x":1569666300000,"y":0.23},{"x":1569666360000,"y":0.07},{"x":1569666420000,"y":0.09},{"x":1569666480000,"y":0.08},{"x":1569666540000,"y":0.06},{"x":1569666600000,"y":0.29},{"x":1569666660000,"y":0.07},{"x":1569666720000,"y":0.09},{"x":1569666780000,"y":0.08},{"x":1569666840000,"y":0.06},{"x":1569666900000,"y":0.33},{"x":1569666960000,"y":0.09},{"x":1569667020000,"y":0.05},{"x":1569667080000,"y":0.07},{"x":1569667140000,"y":0.13},{"x":1569667200000,"y":0.29},{"x":1569667260000,"y":0.07},{"x":1569667320000,"y":0.09},{"x":1569667380000,"y":0.06},{"x":1569667440000,"y":0.11},{"x":1569667500000,"y":0.27},{"x":1569667560000,"y":0.09},{"x":1569667620000,"y":0.07},{"x":1569667680000,"y":0.06},{"x":1569667740000,"y":0.08},{"x":1569667800000,"y":0.29},{"x":1569667860000,"y":0.07},{"x":1569667920000,"y":0.06},{"x":1569667980000,"y":0.08},{"x":1569668040000,"y":0.07},{"x":1569668100000,"y":0.24},{"x":1569668160000,"y":0.1},{"x":1569668220000,"y":0.08},{"x":1569668280000,"y":0.09},{"x":1569668340000,"y":0.06},{"x":1569668400000,"y":0.34},{"x":1569668460000,"y":0.08},{"x":1569668520000,"y":0.08},{"x":1569668580000,"y":0.1},{"x":1569668640000,"y":0.09},{"x":1569668700000,"y":0.12},{"x":1569668760000,"y":0.2},{"x":1569668820000,"y":0.07},{"x":1569668880000,"y":0.07},{"x":1569668940000,"y":0.16},{"x":1569669000000,"y":0.1},{"x":1569669060000,"y":0.24},{"x":1569669120000,"y":1.41},{"x":1569669180000,"y":0.05},{"x":1569669240000,"y":0.08},{"x":1569669300000,"y":0.13},{"x":1569669360000,"y":0.22},{"x":1569669420000,"y":0.08},{"x":1569669480000,"y":0.1},{"x":1569669540000,"y":0.07},{"x":1569669600000,"y":0.15},{"x":1569669660000,"y":0.25},{"x":1569669720000,"y":0.08},{"x":1569669780000,"y":0.08},{"x":1569669840000,"y":0.07},{"x":1569669900000,"y":1.13},{"x":1569669960000,"y":0.23},{"x":1569670020000,"y":0.07},{"x":1569670080000,"y":0.1},{"x":1569670140000,"y":0.1},{"x":1569670200000,"y":0.2},{"x":1569670260000,"y":0.22},{"x":1569670320000,"y":0.06},{"x":1569670380000,"y":0.15},{"x":1569670440000,"y":0.13},{"x":1569670500000,"y":0.2},{"x":1569670560000,"y":0.19},{"x":1569670620000,"y":0.08},{"x":1569670680000,"y":0.1},{"x":1569670740000,"y":0.11},{"x":1569670800000,"y":0.1},{"x":1569670860000,"y":0.06},{"x":1569670920000,"y":0.26},{"x":1569670980000,"y":0.09},{"x":1569671040000,"y":0.05},{"x":1569671100000,"y":0.1},{"x":1569671160000,"y":0.08},{"x":1569671220000,"y":0.23},{"x":1569671280000,"y":0.07},{"x":1569671340000,"y":0.07},{"x":1569671400000,"y":0.09},{"x":1569671460000,"y":0.08},{"x":1569671520000,"y":0.21},{"x":1569671580000,"y":0.07},{"x":1569671640000,"y":0.05},{"x":1569671700000,"y":0.14},{"x":1569671760000,"y":11.87},{"x":1569671820000,"y":1.05},{"x":1569671880000,"y":0.1},{"x":1569671940000,"y":0.06},{"x":1569672000000,"y":0.19},{"x":1569672060000,"y":0.08},{"x":1569672120000,"y":0.21},{"x":1569672180000,"y":0.07},{"x":1569672240000,"y":0.07},{"x":1569672300000,"y":0.15},{"x":1569672360000,"y":0.06},{"x":1569672420000,"y":0.18},{"x":1569672480000,"y":0.08},{"x":1569672540000,"y":0.15},{"x":1569672600000,"y":0.11},{"x":1569672660000,"y":0.07},{"x":1569672720000,"y":0.2},{"x":1569672780000,"y":0.07},{"x":1569672840000,"y":0.07},{"x":1569672900000,"y":0.16},{"x":1569672960000,"y":0.06},{"x":1569673020000,"y":0.22},{"x":1569673080000,"y":0.06},{"x":1569673140000,"y":0.07},{"x":1569673200000,"y":0.17},{"x":1569673260000,"y":0.07},{"x":1569673320000,"y":0.08},{"x":1569673380000,"y":0.23},{"x":1569673440000,"y":0.08},{"x":1569673500000,"y":0.14},{"x":1569673560000,"y":0.06},{"x":1569673620000,"y":0.09},{"x":1569673680000,"y":0.22},{"x":1569673740000,"y":0.07},{"x":1569673800000,"y":0.1},{"x":1569673860000,"y":0.06},{"x":1569673920000,"y":0.07},{"x":1569673980000,"y":5.01},{"x":1569674040000,"y":0.09},{"x":1569674100000,"y":0.15},{"x":1569674160000,"y":0.07},{"x":1569674220000,"y":0.09},{"x":1569674280000,"y":0.19},{"x":1569674340000,"y":0.13},{"x":1569674400000,"y":0.17},{"x":1569674460000,"y":0.08},{"x":1569674520000,"y":0.07},{"x":1569674580000,"y":0.19},{"x":1569674640000,"y":0.08},{"x":1569674700000,"y":0.13},{"x":1569674760000,"y":0.08},{"x":1569674820000,"y":0.06},{"x":1569674880000,"y":0.23},{"x":1569674940000,"y":0.1},{"x":1569675000000,"y":0.13},{"x":1569675060000,"y":0.1},{"x":1569675120000,"y":0.08},{"x":1569675180000,"y":0.16},{"x":1569675240000,"y":0.12},{"x":1569675300000,"y":0.12},{"x":1569675360000,"y":0.09},{"x":1569675420000,"y":0.1},{"x":1569675480000,"y":0.08},{"x":1569675540000,"y":0.22},{"x":1569675600000,"y":0.18},{"x":1569675660000,"y":0.07},{"x":1569675720000,"y":0.07},{"x":1569675780000,"y":0.06},{"x":1569675840000,"y":0.2},{"x":1569675900000,"y":0.18},{"x":1569675960000,"y":0.09},{"x":1569676020000,"y":0.08},{"x":1569676080000,"y":0.07},{"x":1569676140000,"y":0.32},{"x":1569676200000,"y":0.19},{"x":1569676260000,"y":0.12},{"x":1569676320000,"y":0.06},{"x":1569676380000,"y":0.05},{"x":1569676440000,"y":0.22},{"x":1569676500000,"y":0.14},{"x":1569676560000,"y":0.07},{"x":1569676620000,"y":0.09},{"x":1569676680000,"y":0.07},{"x":1569676740000,"y":0.24},{"x":1569676800000,"y":0.13},{"x":1569676860000,"y":0.07},{"x":1569676920000,"y":0.06},{"x":1569676980000,"y":0.06},{"x":1569677040000,"y":0.2},{"x":1569677100000,"y":0.11},{"x":1569677160000,"y":0.07},{"x":1569677220000,"y":0.08},{"x":1569677280000,"y":0.08},{"x":1569677340000,"y":0.2},{"x":1569677400000,"y":0.13},{"x":1569677460000,"y":0.06},{"x":1569677520000,"y":0.12},{"x":1569677580000,"y":0.07},{"x":1569677640000,"y":0.06},{"x":1569677700000,"y":0.96},{"x":1569677760000,"y":0.09},{"x":1569677820000,"y":0.06},{"x":1569677880000,"y":0.07},{"x":1569677940000,"y":0.23},{"x":1569678000000,"y":0.26},{"x":1569678060000,"y":0.08},{"x":1569678120000,"y":0.09},{"x":1569678180000,"y":0.07},{"x":1569678240000,"y":0.06},{"x":1569678300000,"y":0.25},{"x":1569678360000,"y":0.16},{"x":1569678420000,"y":0.07},{"x":1569678480000,"y":0.07},{"x":1569678540000,"y":0.09},{"x":1569678600000,"y":0.28},{"x":1569678660000,"y":0.06},{"x":1569678720000,"y":0.08},{"x":1569678780000,"y":0.08},{"x":1569678840000,"y":0.08},{"x":1569678900000,"y":0.28},{"x":1569678960000,"y":0.07},{"x":1569679020000,"y":0.08},{"x":1569679080000,"y":0.09},{"x":1569679140000,"y":0.09},{"x":1569679200000,"y":0.3},{"x":1569679260000,"y":0.07},{"x":1569679320000,"y":0.08},{"x":1569679380000,"y":0.07},{"x":1569679440000,"y":0.07},{"x":1569679500000,"y":0.33},{"x":1569679560000,"y":0.1},{"x":1569679620000,"y":0.07},{"x":1569679680000,"y":0.07},{"x":1569679740000,"y":0.12},{"x":1569679800000,"y":0.11},{"x":1569679860000,"y":0.22},{"x":1569679920000,"y":0.07},{"x":1569679980000,"y":0.1},{"x":1569680040000,"y":0.11},{"x":1569680100000,"y":0.15},{"x":1569680160000,"y":0.21},{"x":1569680220000,"y":0.09},{"x":1569680280000,"y":0.07},{"x":1569680340000,"y":0.12},{"x":1569680400000,"y":0.12},{"x":1569680460000,"y":0.22},{"x":1569680520000,"y":0.08},{"x":1569680580000,"y":0.1},{"x":1569680640000,"y":0.08},{"x":1569680700000,"y":0.13},{"x":1569680760000,"y":0.19},{"x":1569680820000,"y":0.08},{"x":1569680880000,"y":0.09},{"x":1569680940000,"y":0.07},{"x":1569681000000,"y":0.13},{"x":1569681060000,"y":0.22},{"x":1569681120000,"y":0.06},{"x":1569681180000,"y":0.1},{"x":1569681240000,"y":0.08},{"x":1569681300000,"y":1},{"x":1569681360000,"y":0.25},{"x":1569681420000,"y":0.1},{"x":1569681480000,"y":0.09},{"x":1569681540000,"y":0.15},{"x":1569681600000,"y":0.14},{"x":1569681660000,"y":0.2},{"x":1569681720000,"y":0.12},{"x":1569681780000,"y":0.07},{"x":1569681840000,"y":0.07},{"x":1569681900000,"y":0.12},{"x":1569681960000,"y":0.21},{"x":1569682020000,"y":0.07},{"x":1569682080000,"y":0.1},{"x":1569682140000,"y":0.08},{"x":1569682200000,"y":0.11},{"x":1569682260000,"y":0.08},{"x":1569682320000,"y":0.22},{"x":1569682380000,"y":0.05},{"x":1569682440000,"y":0.08},{"x":1569682500000,"y":0.16},{"x":1569682560000,"y":0.09},{"x":1569682620000,"y":0.22},{"x":1569682680000,"y":0.08},{"x":1569682740000,"y":0.09},{"x":1569682800000,"y":0.12},{"x":1569682860000,"y":0.09},{"x":1569682920000,"y":0.24},{"x":1569682980000,"y":0.08},{"x":1569683040000,"y":0.07},{"x":1569683100000,"y":0.15},{"x":1569683160000,"y":0.07},{"x":1569683220000,"y":0.26},{"x":1569683280000,"y":0.1},{"x":1569683340000,"y":0.11},{"x":1569683400000,"y":0.14},{"x":1569683460000,"y":0.1},{"x":1569683520000,"y":0.25},{"x":1569683580000,"y":0.09},{"x":1569683640000,"y":0.11},{"x":1569683700000,"y":1.08},{"x":1569683760000,"y":0.12},{"x":1569683820000,"y":0.26},{"x":1569683880000,"y":0.14},{"x":1569683940000,"y":0.13},{"x":1569684000000,"y":0.13},{"x":1569684060000,"y":0.11},{"x":1569684120000,"y":0.23},{"x":1569684180000,"y":0.13},{"x":1569684240000,"y":0.18},{"x":1569684300000,"y":0.13},{"x":1569684360000,"y":0.11},{"x":1569684420000,"y":0.15},{"x":1569684480000,"y":0.25},{"x":1569684540000,"y":0.09},{"x":1569684600000,"y":0.12},{"x":1569684660000,"y":0.1},{"x":1569684720000,"y":0.22},{"x":1569684780000,"y":0.23},{"x":1569684840000,"y":0.1},{"x":1569684900000,"y":0.18},{"x":1569684960000,"y":0.12},{"x":1569685020000,"y":0.15},{"x":1569685080000,"y":0.28},{"x":1569685140000,"y":0.18},{"x":1569685200000,"y":0.21},{"x":1569685260000,"y":0.16},{"x":1569685320000,"y":0.18},{"x":1569685380000,"y":0.28},{"x":1569685440000,"y":0.11},{"x":1569685500000,"y":0.28},{"x":1569685560000,"y":0.15},{"x":1569685620000,"y":0.15},{"x":1569685680000,"y":0.28},{"x":1569685740000,"y":0.19},{"x":1569685800000,"y":0.23},{"x":1569685860000,"y":0.15},{"x":1569685920000,"y":0.18},{"x":1569685980000,"y":0.29},{"x":1569686040000,"y":0.15},{"x":1569686100000,"y":0.2},{"x":1569686160000,"y":0.16},{"x":1569686220000,"y":0.18},{"x":1569686280000,"y":0.3},{"x":1569686340000,"y":0.19},{"x":1569686400000,"y":0.2},{"x":1569686460000,"y":0.15},{"x":1569686520000,"y":0.18},{"x":1569686580000,"y":0.29},{"x":1569686640000,"y":0.17},{"x":1569686700000,"y":0.21},{"x":1569686760000,"y":0.17},{"x":1569686820000,"y":0.17},{"x":1569686880000,"y":0.15},{"x":1569686940000,"y":0.34},{"x":1569687000000,"y":0.2},{"x":1569687060000,"y":0.17},{"x":1569687120000,"y":0.15},{"x":1569687180000,"y":0.15},{"x":1569687240000,"y":0.29},{"x":1569687300000,"y":0.27},{"x":1569687360000,"y":0.15},{"x":1569687420000,"y":0.17},{"x":1569687480000,"y":0.16},{"x":1569687540000,"y":0.31},{"x":1569687600000,"y":0.21},{"x":1569687660000,"y":0.15},{"x":1569687720000,"y":0.15},{"x":1569687780000,"y":0.16},{"x":1569687840000,"y":0.31},{"x":1569687900000,"y":0.19},{"x":1569687960000,"y":0.15},{"x":1569688020000,"y":0.16},{"x":1569688080000,"y":0.17},{"x":1569688140000,"y":0.29},{"x":1569688200000,"y":0.22},{"x":1569688260000,"y":0.17},{"x":1569688320000,"y":0.15},{"x":1569688380000,"y":0.17},{"x":1569688440000,"y":0.28},{"x":1569688500000,"y":0.22},{"x":1569688560000,"y":0.14},{"x":1569688620000,"y":0.15},{"x":1569688680000,"y":0.16},{"x":1569688740000,"y":0.35},{"x":1569688800000,"y":0.19},{"x":1569688860000,"y":0.16},{"x":1569688920000,"y":0.16},{"x":1569688980000,"y":0.15},{"x":1569689040000,"y":0.27},{"x":1569689100000,"y":0.28},{"x":1569689160000,"y":0.15},{"x":1569689220000,"y":0.16},{"x":1569689280000,"y":0.15},{"x":1569689340000,"y":0.19},{"x":1569689400000,"y":0.4},{"x":1569689460000,"y":0.14},{"x":1569689520000,"y":0.15},{"x":1569689580000,"y":0.16},{"x":1569689640000,"y":0.16},{"x":1569689700000,"y":0.33},{"x":1569689760000,"y":0.17},{"x":1569689820000,"y":0.15},{"x":1569689880000,"y":0.17},{"x":1569689940000,"y":0.17},{"x":1569690000000,"y":0.39},{"x":1569690060000,"y":0.18},{"x":1569690120000,"y":0.15},{"x":1569690180000,"y":0.15},{"x":1569690240000,"y":0.17},{"x":1569690300000,"y":0.35},{"x":1569690360000,"y":0.22},{"x":1569690420000,"y":0.13},{"x":1569690480000,"y":0.15},{"x":1569690540000,"y":0.22},{"x":1569690600000,"y":0.36},{"x":1569690660000,"y":0.16},{"x":1569690720000,"y":0.15},{"x":1569690780000,"y":0.15},{"x":1569690840000,"y":0.15},{"x":1569690900000,"y":0.36},{"x":1569690960000,"y":0.15},{"x":1569691020000,"y":0.17},{"x":1569691080000,"y":0.14},{"x":1569691140000,"y":0.16},{"x":1569691200000,"y":0.35},{"x":1569691260000,"y":0.15},{"x":1569691320000,"y":0.15},{"x":1569691380000,"y":0.15},{"x":1569691440000,"y":0.14},{"x":1569691500000,"y":0.24},{"x":1569691560000,"y":0.29},{"x":1569691620000,"y":0.15},{"x":1569691680000,"y":0.15},{"x":1569691740000,"y":0.17},{"x":1569691800000,"y":0.21},{"x":1569691860000,"y":0.32},{"x":1569691920000,"y":0.14},{"x":1569691980000,"y":0.15},{"x":1569692040000,"y":0.18},{"x":1569692100000,"y":0.28},{"x":1569692160000,"y":0.29},{"x":1569692220000,"y":0.17},{"x":1569692280000,"y":0.18},{"x":1569692340000,"y":0.26},{"x":1569692400000,"y":0.24},{"x":1569692460000,"y":0.29},{"x":1569692520000,"y":0.15},{"x":1569692580000,"y":0.14},{"x":1569692640000,"y":0.16},{"x":1569692700000,"y":0.17},{"x":1569692760000,"y":0.29},{"x":1569692820000,"y":0.15},{"x":1569692880000,"y":0.16},{"x":1569692940000,"y":0.15},{"x":1569693000000,"y":0.2},{"x":1569693060000,"y":0.3},{"x":1569693120000,"y":0.14},{"x":1569693180000,"y":0.16},{"x":1569693240000,"y":0.16},{"x":1569693300000,"y":0.21},{"x":1569693360000,"y":0.28},{"x":1569693420000,"y":0.16},{"x":1569693480000,"y":0.17},{"x":1569693540000,"y":0.15},{"x":1569693600000,"y":0.21},{"x":1569693660000,"y":0.3},{"x":1569693720000,"y":0.14},{"x":1569693780000,"y":0.24},{"x":1569693840000,"y":0.22},{"x":1569693900000,"y":0.22},{"x":1569693960000,"y":0.3},{"x":1569694020000,"y":0.15},{"x":1569694080000,"y":0.15},{"x":1569694140000,"y":0.21},{"x":1569694200000,"y":0.18},{"x":1569694260000,"y":0.16},{"x":1569694320000,"y":0.3},{"x":1569694380000,"y":0.16},{"x":1569694440000,"y":0.17},{"x":1569694500000,"y":0.22},{"x":1569694560000,"y":1.12},{"x":1569694620000,"y":0.29},{"x":1569694680000,"y":0.17},{"x":1569694740000,"y":0.15},{"x":1569694800000,"y":0.21},{"x":1569694860000,"y":0.16},{"x":1569694920000,"y":0.29},{"x":1569694980000,"y":0.17},{"x":1569695040000,"y":0.15},{"x":1569695100000,"y":0.18},{"x":1569695160000,"y":0.15},{"x":1569695220000,"y":0.24},{"x":1569695280000,"y":0.1},{"x":1569695340000,"y":0.1},{"x":1569695400000,"y":0.13},{"x":1569695460000,"y":0.06},{"x":1569695520000,"y":0.23},{"x":1569695580000,"y":0.05},{"x":1569695640000,"y":0.06},{"x":1569695700000,"y":0.16},{"x":1569695760000,"y":0.05},{"x":1569695820000,"y":5.76},{"x":1569695880000,"y":0.15},{"x":1569695940000,"y":0.12},{"x":1569696000000,"y":0.1},{"x":1569696060000,"y":0.08},{"x":1569696120000,"y":0.2},{"x":1569696180000,"y":0.08},{"x":1569696240000,"y":0.05},{"x":1569696300000,"y":0.1},{"x":1569696360000,"y":0.08},{"x":1569696420000,"y":0.22},{"x":1569696480000,"y":0.08},{"x":1569696540000,"y":0.05},{"x":1569696600000,"y":0.15},{"x":1569696660000,"y":0.08},{"x":1569696720000,"y":0.08},{"x":1569696780000,"y":0.22},{"x":1569696840000,"y":0.05},{"x":1569696900000,"y":0.14},{"x":1569696960000,"y":0.05},{"x":1569697020000,"y":0.08},{"x":1569697080000,"y":0.24},{"x":1569697140000,"y":0.07},{"x":1569697200000,"y":0.19},{"x":1569697260000,"y":0.08},{"x":1569697320000,"y":0.07},{"x":1569697380000,"y":0.2},{"x":1569697440000,"y":0.09},{"x":1569697500000,"y":0.1},{"x":1569697560000,"y":0.07},{"x":1569697620000,"y":0.1},{"x":1569697680000,"y":0.22},{"x":1569697740000,"y":0.21},{"x":1569697800000,"y":0.12},{"x":1569697860000,"y":0.05},{"x":1569697920000,"y":0.07},{"x":1569697980000,"y":0.19},{"x":1569698040000,"y":0.07},{"x":1569698100000,"y":0.12},{"x":1569698160000,"y":0.08},{"x":1569698220000,"y":1.21},{"x":1569698280000,"y":0.22},{"x":1569698340000,"y":0.07},{"x":1569698400000,"y":0.15},{"x":1569698460000,"y":0.24},{"x":1569698520000,"y":0.42},{"x":1569698580000,"y":0.22},{"x":1569698640000,"y":0.07},{"x":1569698700000,"y":0.16},{"x":1569698760000,"y":0.07},{"x":1569698820000,"y":0.1},{"x":1569698880000,"y":0.2},{"x":1569698940000,"y":0.12},{"x":1569699000000,"y":0.18},{"x":1569699060000,"y":0.08},{"x":1569699120000,"y":0.11},{"x":1569699180000,"y":0.23},{"x":1569699240000,"y":0.07},{"x":1569699300000,"y":0.16},{"x":1569699360000,"y":0.05},{"x":1569699420000,"y":0.09},{"x":1569699480000,"y":0.93},{"x":1569699540000,"y":0.25},{"x":1569699600000,"y":0.14},{"x":1569699660000,"y":0.07},{"x":1569699720000,"y":0.11},{"x":1569699780000,"y":0.07},{"x":1569699840000,"y":0.21},{"x":1569699900000,"y":0.13},{"x":1569699960000,"y":0.09},{"x":1569700020000,"y":0.07},{"x":1569700080000,"y":0.05},{"x":1569700140000,"y":0.22},{"x":1569700200000,"y":0.12},{"x":1569700260000,"y":0.05},{"x":1569700320000,"y":0.07},{"x":1569700380000,"y":0.05},{"x":1569700440000,"y":0.23},{"x":1569700500000,"y":0.13},{"x":1569700560000,"y":0.06},{"x":1569700620000,"y":0.08},{"x":1569700680000,"y":0.11},{"x":1569700740000,"y":0.17},{"x":1569700800000,"y":0.14},{"x":1569700860000,"y":0.05},{"x":1569700920000,"y":0.08},{"x":1569700980000,"y":0.1},{"x":1569701040000,"y":0.24},{"x":1569701100000,"y":0.16},{"x":1569701160000,"y":0.1},{"x":1569701220000,"y":0.07},{"x":1569701280000,"y":0.12},{"x":1569701340000,"y":0.29},{"x":1569701400000,"y":0.12},{"x":1569701460000,"y":0.05},{"x":1569701520000,"y":0.07},{"x":1569701580000,"y":0.05},{"x":1569701640000,"y":0.08},{"x":1569701700000,"y":0.29},{"x":1569701760000,"y":0.07},{"x":1569701820000,"y":0.06},{"x":1569701880000,"y":0.08},{"x":1569701940000,"y":0.07},{"x":1569702000000,"y":0.3},{"x":1569702060000,"y":0.07},{"x":1569702120000,"y":0.1},{"x":1569702180000,"y":0.07},{"x":1569702240000,"y":0.07},{"x":1569702300000,"y":0.24},{"x":1569702360000,"y":0.07},{"x":1569702420000,"y":0.08},{"x":1569702480000,"y":0.07},{"x":1569702540000,"y":0.1},{"x":1569702600000,"y":0.22},{"x":1569702660000,"y":0.05},{"x":1569702720000,"y":0.07},{"x":1569702780000,"y":0.07},{"x":1569702840000,"y":0.06},{"x":1569702900000,"y":0.23},{"x":1569702960000,"y":0.07},{"x":1569703020000,"y":0.06},{"x":1569703080000,"y":0.07},{"x":1569703140000,"y":0.13},{"x":1569703200000,"y":0.24},{"x":1569703260000,"y":0.07},{"x":1569703320000,"y":0.09},{"x":1569703380000,"y":0.06},{"x":1569703440000,"y":0.05},{"x":1569703500000,"y":0.22},{"x":1569703560000,"y":0.07},{"x":1569703620000,"y":0.09},{"x":1569703680000,"y":0.05},{"x":1569703740000,"y":0.08},{"x":1569703800000,"y":0.29},{"x":1569703860000,"y":0.07},{"x":1569703920000,"y":0.06},{"x":1569703980000,"y":0.07},{"x":1569704040000,"y":0.07},{"x":1569704100000,"y":0.25},{"x":1569704160000,"y":0.06},{"x":1569704220000,"y":0.06},{"x":1569704280000,"y":0.07},{"x":1569704340000,"y":0.07},{"x":1569704400000,"y":0.18},{"x":1569704460000,"y":0.21},{"x":1569704520000,"y":0.05},{"x":1569704580000,"y":0.06},{"x":1569704640000,"y":0.07},{"x":1569704700000,"y":0.16},{"x":1569704760000,"y":0.19},{"x":1569704820000,"y":0.07},{"x":1569704880000,"y":0.08},{"x":1569704940000,"y":0.11},{"x":1569705000000,"y":0.15},{"x":1569705060000,"y":0.2},{"x":1569705120000,"y":0.05},{"x":1569705180000,"y":0.08},{"x":1569705240000,"y":0.08},{"x":1569705300000,"y":0.11},{"x":1569705360000,"y":0.24},{"x":1569705420000,"y":0.09},{"x":1569705480000,"y":0.5},{"x":1569705540000,"y":0.06},{"x":1569705600000,"y":0.1},{"x":1569705660000,"y":0.2},{"x":1569705720000,"y":0.09},{"x":1569705780000,"y":0.05},{"x":1569705840000,"y":0.1},{"x":1569705900000,"y":0.16},{"x":1569705960000,"y":0.21},{"x":1569706020000,"y":0.06},{"x":1569706080000,"y":0.09},{"x":1569706140000,"y":0.08},{"x":1569706200000,"y":0.17},{"x":1569706260000,"y":0.22},{"x":1569706320000,"y":0.12},{"x":1569706380000,"y":0.06},{"x":1569706440000,"y":0.08},{"x":1569706500000,"y":0.12},{"x":1569706560000,"y":0.05},{"x":1569706620000,"y":0.22},{"x":1569706680000,"y":0.07},{"x":1569706740000,"y":0.14},{"x":1569706800000,"y":0.16},{"x":1569706860000,"y":0.07},{"x":1569706920000,"y":0.22},{"x":1569706980000,"y":0.05},{"x":1569707040000,"y":0.06},{"x":1569707100000,"y":0.12},{"x":1569707160000,"y":0.07},{"x":1569707220000,"y":0.19},{"x":1569707280000,"y":0.07},{"x":1569707340000,"y":0.08},{"x":1569707400000,"y":0.12},{"x":1569707460000,"y":0.05},{"x":1569707520000,"y":0.2},{"x":1569707580000,"y":0.05},{"x":1569707640000,"y":0.06},{"x":1569707700000,"y":0.5},{"x":1569707760000,"y":0.07},{"x":1569707820000,"y":0.19},{"x":1569707880000,"y":0.09},{"x":1569707940000,"y":0.07},{"x":1569708000000,"y":0.14},{"x":1569708060000,"y":0.07},{"x":1569708120000,"y":0.22},{"x":1569708180000,"y":0.07},{"x":1569708240000,"y":0.07},{"x":1569708300000,"y":0.11},{"x":1569708360000,"y":0.04},{"x":1569708420000,"y":0.21},{"x":1569708480000,"y":0.07},{"x":1569708540000,"y":0.11},{"x":1569708600000,"y":0.13},{"x":1569708660000,"y":0.08},{"x":1569708720000,"y":0.2},{"x":1569708780000,"y":0.07},{"x":1569708840000,"y":0.06},{"x":1569708900000,"y":0.12},{"x":1569708960000,"y":0.07},{"x":1569709020000,"y":0.25},{"x":1569709080000,"y":0.6},{"x":1569709140000,"y":0.07},{"x":1569709200000,"y":0.1},{"x":1569709260000,"y":0.06},{"x":1569709320000,"y":0.07},{"x":1569709380000,"y":0.19},{"x":1569709440000,"y":0.07},{"x":1569709500000,"y":0.12},{"x":1569709560000,"y":0.06},{"x":1569709620000,"y":0.09},{"x":1569709680000,"y":0.23},{"x":1569709740000,"y":0.08},{"x":1569709800000,"y":0.12},{"x":1569709860000,"y":0.06},{"x":1569709920000,"y":0.05},{"x":1569709980000,"y":0.22},{"x":1569710040000,"y":0.07},{"x":1569710100000,"y":0.11},{"x":1569710160000,"y":0.09},{"x":1569710220000,"y":0.07},{"x":1569710280000,"y":0.2},{"x":1569710340000,"y":0.25},{"x":1569710400000,"y":0.13},{"x":1569710460000,"y":0.05},{"x":1569710520000,"y":0.06},{"x":1569710580000,"y":0.19},{"x":1569710640000,"y":0.06},{"x":1569710700000,"y":0.13},{"x":1569710760000,"y":0.07},{"x":1569710820000,"y":0.06},{"x":1569710880000,"y":0.2},{"x":1569710940000,"y":0.05},{"x":1569711000000,"y":0.14},{"x":1569711060000,"y":0.07},{"x":1569711120000,"y":0.07},{"x":1569711180000,"y":0.21},{"x":1569711240000,"y":0.07},{"x":1569711300000,"y":0.17},{"x":1569711360000,"y":0.07},{"x":1569711420000,"y":0.07},{"x":1569711480000,"y":0.16},{"x":1569711540000,"y":0.13},{"x":1569711600000,"y":0.12},{"x":1569711660000,"y":0.07},{"x":1569711720000,"y":0.05},{"x":1569711780000,"y":0.07},{"x":1569711840000,"y":0.2},{"x":1569711900000,"y":0.1},{"x":1569711960000,"y":0.05},{"x":1569712020000,"y":0.07},{"x":1569712080000,"y":0.06},{"x":1569712140000,"y":0.23},{"x":1569712200000,"y":0.11},{"x":1569712260000,"y":0.07},{"x":1569712320000,"y":0.07},{"x":1569712380000,"y":0.06},{"x":1569712440000,"y":0.19},{"x":1569712500000,"y":0.15},{"x":1569712560000,"y":0.07},{"x":1569712620000,"y":0.08},{"x":1569712680000,"y":0.09},{"x":1569712740000,"y":0.2},{"x":1569712800000,"y":0.14},{"x":1569712860000,"y":0.04},{"x":1569712920000,"y":0.07},{"x":1569712980000,"y":0.1},{"x":1569713040000,"y":0.23},{"x":1569713100000,"y":0.16},{"x":1569713160000,"y":0.45},{"x":1569713220000,"y":0.06},{"x":1569713280000,"y":0.09},{"x":1569713340000,"y":0.23},{"x":1569713400000,"y":0.16},{"x":1569713460000,"y":0.07},{"x":1569713520000,"y":0.07},{"x":1569713580000,"y":0.07},{"x":1569713640000,"y":0.24},{"x":1569713700000,"y":0.13},{"x":1569713760000,"y":0.08},{"x":1569713820000,"y":0.07},{"x":1569713880000,"y":0.1},{"x":1569713940000,"y":0.37},{"x":1569714000000,"y":0.32},{"x":1569714060000,"y":0.07},{"x":1569714120000,"y":0.08},{"x":1569714180000,"y":0.05},{"x":1569714240000,"y":0.08},{"x":1569714300000,"y":0.23},{"x":1569714360000,"y":0.07},{"x":1569714420000,"y":0.08},{"x":1569714480000,"y":0.09},{"x":1569714540000,"y":0.07},{"x":1569714600000,"y":0.27},{"x":1569714660000,"y":0.08},{"x":1569714720000,"y":0.09},{"x":1569714780000,"y":0.07},{"x":1569714840000,"y":0.07},{"x":1569714900000,"y":0.25},{"x":1569714960000,"y":0.07},{"x":1569715020000,"y":0.07},{"x":1569715080000,"y":0.09},{"x":1569715140000,"y":0.08},{"x":1569715200000,"y":0.36},{"x":1569715260000,"y":0.06},{"x":1569715320000,"y":0.06},{"x":1569715380000,"y":0.07},{"x":1569715440000,"y":0.07},{"x":1569715500000,"y":0.25},{"x":1569715560000,"y":0.07},{"x":1569715620000,"y":0.09},{"x":1569715680000,"y":0.09},{"x":1569715740000,"y":0.11},{"x":1569715800000,"y":0.27},{"x":1569715860000,"y":0.08},{"x":1569715920000,"y":0.06},{"x":1569715980000,"y":0.07},{"x":1569716040000,"y":0.11},{"x":1569716100000,"y":0.26},{"x":1569716160000,"y":0.08},{"x":1569716220000,"y":0.07},{"x":1569716280000,"y":0.07},{"x":1569716340000,"y":0.06},{"x":1569716400000,"y":0.15},{"x":1569716460000,"y":0.25},{"x":1569716520000,"y":0.05},{"x":1569716580000,"y":0.08},{"x":1569716640000,"y":0.07},{"x":1569716700000,"y":0.17},{"x":1569716760000,"y":0.2},{"x":1569716820000,"y":0.06},{"x":1569716880000,"y":0.09},{"x":1569716940000,"y":0.09},{"x":1569717000000,"y":0.16},{"x":1569717060000,"y":0.25},{"x":1569717120000,"y":0.1},{"x":1569717180000,"y":0.09},{"x":1569717240000,"y":0.07},{"x":1569717300000,"y":0.12},{"x":1569717360000,"y":0.19},{"x":1569717420000,"y":0.13},{"x":1569717480000,"y":0.11},{"x":1569717540000,"y":0.16},{"x":1569717600000,"y":0.71},{"x":1569717660000,"y":4.82},{"x":1569717720000,"y":0.16},{"x":1569717780000,"y":0.08},{"x":1569717840000,"y":0.11},{"x":1569717900000,"y":0.12},{"x":1569717960000,"y":0.19},{"x":1569718020000,"y":0.1},{"x":1569718080000,"y":0.17},{"x":1569718140000,"y":0.13},{"x":1569718200000,"y":0.12},{"x":1569718260000,"y":0.2},{"x":1569718320000,"y":0.12},{"x":1569718380000,"y":0.1},{"x":1569718440000,"y":0.11},{"x":1569718500000,"y":0.15},{"x":1569718560000,"y":0.11},{"x":1569718620000,"y":0.3},{"x":1569718680000,"y":0.19},{"x":1569718740000,"y":0.14},{"x":1569718800000,"y":0.21},{"x":1569718860000,"y":0.09},{"x":1569718920000,"y":0.25},{"x":1569718980000,"y":0.13},{"x":1569719040000,"y":0.08},{"x":1569719100000,"y":0.13},{"x":1569719160000,"y":0.12},{"x":1569719220000,"y":0.25},{"x":1569719280000,"y":0.16},{"x":1569719340000,"y":0.33},{"x":1569719400000,"y":0.25},{"x":1569719460000,"y":0.15},{"x":1569719520000,"y":0.27},{"x":1569719580000,"y":0.13},{"x":1569719640000,"y":0.15},{"x":1569719700000,"y":0.23},{"x":1569719760000,"y":0.19},{"x":1569719820000,"y":0.28},{"x":1569719880000,"y":0.15},{"x":1569719940000,"y":1.82},{"x":1569720000000,"y":0.21},{"x":1569720060000,"y":0.15},{"x":1569720120000,"y":0.3},{"x":1569720180000,"y":0.12},{"x":1569720240000,"y":0.15},{"x":1569720300000,"y":0.18},{"x":1569720360000,"y":0.15},{"x":1569720420000,"y":0.31},{"x":1569720480000,"y":0.14},{"x":1569720540000,"y":0.13},{"x":1569720600000,"y":0.17},{"x":1569720660000,"y":0.15},{"x":1569720720000,"y":0.13},{"x":1569720780000,"y":0.27},{"x":1569720840000,"y":0.16},{"x":1569720900000,"y":0.2},{"x":1569720960000,"y":0.17},{"x":1569721020000,"y":0.18},{"x":1569721080000,"y":0.29},{"x":1569721140000,"y":0.19},{"x":1569721200000,"y":0.3},{"x":1569721260000,"y":0.13},{"x":1569721320000,"y":0.13},{"x":1569721380000,"y":0.28},{"x":1569721440000,"y":0.13},{"x":1569721500000,"y":0.2},{"x":1569721560000,"y":0.16},{"x":1569721620000,"y":0.15},{"x":1569721680000,"y":0.28},{"x":1569721740000,"y":0.15},{"x":1569721800000,"y":0.22},{"x":1569721860000,"y":0.17},{"x":1569721920000,"y":0.14},{"x":1569721980000,"y":0.29},{"x":1569722040000,"y":0.15},{"x":1569722100000,"y":0.22},{"x":1569722160000,"y":0.15},{"x":1569722220000,"y":0.13},{"x":1569722280000,"y":0.3},{"x":1569722340000,"y":0.14},{"x":1569722400000,"y":0.22},{"x":1569722460000,"y":0.15},{"x":1569722520000,"y":0.14},{"x":1569722580000,"y":0.27},{"x":1569722640000,"y":0.15},{"x":1569722700000,"y":0.22},{"x":1569722760000,"y":0.15},{"x":1569722820000,"y":0.13},{"x":1569722880000,"y":0.14},{"x":1569722940000,"y":0.34},{"x":1569723000000,"y":0.25},{"x":1569723060000,"y":0.16},{"x":1569723120000,"y":0.15},{"x":1569723180000,"y":0.14},{"x":1569723240000,"y":0.28},{"x":1569723300000,"y":0.2},{"x":1569723360000,"y":0.15},{"x":1569723420000,"y":0.13},{"x":1569723480000,"y":0.14},{"x":1569723540000,"y":0.29},{"x":1569723600000,"y":0.62},{"x":1569723660000,"y":0.15},{"x":1569723720000,"y":0.15},{"x":1569723780000,"y":0.18},{"x":1569723840000,"y":0.29},{"x":1569723900000,"y":0.18},{"x":1569723960000,"y":0.15},{"x":1569724020000,"y":0.13},{"x":1569724080000,"y":0.14},{"x":1569724140000,"y":0.26},{"x":1569724200000,"y":0.18},{"x":1569724260000,"y":0.14},{"x":1569724320000,"y":0.13},{"x":1569724380000,"y":0.12},{"x":1569724440000,"y":0.27},{"x":1569724500000,"y":0.17},{"x":1569724560000,"y":0.13},{"x":1569724620000,"y":0.13},{"x":1569724680000,"y":0.14},{"x":1569724740000,"y":0.33},{"x":1569724800000,"y":0.2},{"x":1569724860000,"y":0.85},{"x":1569724920000,"y":0.16},{"x":1569724980000,"y":0.17},{"x":1569725040000,"y":0.12},{"x":1569725100000,"y":0.34},{"x":1569725160000,"y":0.12},{"x":1569725220000,"y":0.14},{"x":1569725280000,"y":0.12},{"x":1569725340000,"y":0.13},{"x":1569725400000,"y":0.33},{"x":1569725460000,"y":0.14},{"x":1569725520000,"y":0.14},{"x":1569725580000,"y":0.15},{"x":1569725640000,"y":0.15},{"x":1569725700000,"y":0.33},{"x":1569725760000,"y":0.13},{"x":1569725820000,"y":0.17},{"x":1569725880000,"y":0.17},{"x":1569725940000,"y":0.17},{"x":1569726000000,"y":0.44},{"x":1569726060000,"y":0.13},{"x":1569726120000,"y":0.15},{"x":1569726180000,"y":0.14},{"x":1569726240000,"y":0.14},{"x":1569726300000,"y":0.32},{"x":1569726360000,"y":0.14},{"x":1569726420000,"y":0.12},{"x":1569726480000,"y":0.13},{"x":1569726540000,"y":0.18},{"x":1569726600000,"y":0.32},{"x":1569726660000,"y":0.16},{"x":1569726720000,"y":0.15},{"x":1569726780000,"y":0.17},{"x":1569726840000,"y":0.15},{"x":1569726900000,"y":0.32},{"x":1569726960000,"y":0.14},{"x":1569727020000,"y":0.14},{"x":1569727080000,"y":0.15},{"x":1569727140000,"y":0.14},{"x":1569727200000,"y":0.72},{"x":1569727260000,"y":0.4},{"x":1569727320000,"y":0.14},{"x":1569727380000,"y":0.14},{"x":1569727440000,"y":0.16},{"x":1569727500000,"y":0.23},{"x":1569727560000,"y":0.29},{"x":1569727620000,"y":0.16},{"x":1569727680000,"y":0.14},{"x":1569727740000,"y":0.14},{"x":1569727800000,"y":0.2},{"x":1569727860000,"y":0.29},{"x":1569727920000,"y":0.13},{"x":1569727980000,"y":0.13},{"x":1569728040000,"y":0.17},{"x":1569728100000,"y":0.2},{"x":1569728160000,"y":0.3},{"x":1569728220000,"y":0.14},{"x":1569728280000,"y":0.14},{"x":1569728340000,"y":0.19},{"x":1569728400000,"y":0.19},{"x":1569728460000,"y":0.67},{"x":1569728520000,"y":0.1},{"x":1569728580000,"y":0.09},{"x":1569728640000,"y":0.08},{"x":1569728700000,"y":0.15},{"x":1569728760000,"y":0.19},{"x":1569728820000,"y":0.06},{"x":1569728880000,"y":0.07},{"x":1569728940000,"y":0.07},{"x":1569729000000,"y":0.14},{"x":1569729060000,"y":0.17},{"x":1569729120000,"y":0.05},{"x":1569729180000,"y":0.05},{"x":1569729240000,"y":0.04},{"x":1569729300000,"y":0.14},{"x":1569729360000,"y":0.05},{"x":1569729420000,"y":0.21},{"x":1569729480000,"y":0.07},{"x":1569729540000,"y":0.06},{"x":1569729600000,"y":0.11},{"x":1569729660000,"y":0.04},{"x":1569729720000,"y":0.21},{"x":1569729780000,"y":0.07},{"x":1569729840000,"y":0.07},{"x":1569729900000,"y":0.12},{"x":1569729960000,"y":0.08},{"x":1569730020000,"y":0.18},{"x":1569730080000,"y":0.05},{"x":1569730140000,"y":0.15},{"x":1569730200000,"y":0.11},{"x":1569730260000,"y":0.05},{"x":1569730320000,"y":0.2},{"x":1569730380000,"y":0.07},{"x":1569730440000,"y":0.04},{"x":1569730500000,"y":0.09},{"x":1569730560000,"y":0.07},{"x":1569730620000,"y":0.21},{"x":1569730680000,"y":0.04},{"x":1569730740000,"y":0.06},{"x":1569730800000,"y":0.1},{"x":1569730860000,"y":0.06},{"x":1569730920000,"y":0.18},{"x":1569730980000,"y":0.07},{"x":1569731040000,"y":0.07},{"x":1569731100000,"y":0.11},{"x":1569731160000,"y":0.05},{"x":1569731220000,"y":0.23},{"x":1569731280000,"y":0.05},{"x":1569731340000,"y":0.04},{"x":1569731400000,"y":0.11},{"x":1569731460000,"y":0.06},{"x":1569731520000,"y":0.07},{"x":1569731580000,"y":0.2},{"x":1569731640000,"y":0.09},{"x":1569731700000,"y":0.12},{"x":1569731760000,"y":0.07},{"x":1569731820000,"y":0.07},{"x":1569731880000,"y":0.21},{"x":1569731940000,"y":0.14},{"x":1569732000000,"y":0.12},{"x":1569732060000,"y":0.32},{"x":1569732120000,"y":0.41},{"x":1569732180000,"y":0.2},{"x":1569732240000,"y":0.05},{"x":1569732300000,"y":0.12},{"x":1569732360000,"y":0.08},{"x":1569732420000,"y":0.09},{"x":1569732480000,"y":0.2},{"x":1569732540000,"y":0.09},{"x":1569732600000,"y":0.18},{"x":1569732660000,"y":0.08},{"x":1569732720000,"y":0.05},{"x":1569732780000,"y":0.22},{"x":1569732840000,"y":0.05},{"x":1569732900000,"y":0.1},{"x":1569732960000,"y":0.05},{"x":1569733020000,"y":0.05},{"x":1569733080000,"y":0.25},{"x":1569733140000,"y":0.1},{"x":1569733200000,"y":0.76},{"x":1569733260000,"y":0.06},{"x":1569733320000,"y":0.05},{"x":1569733380000,"y":0.19},{"x":1569733440000,"y":0.07},{"x":1569733500000,"y":0.1},{"x":1569733560000,"y":0.07},{"x":1569733620000,"y":0.06},{"x":1569733680000,"y":0.22},{"x":1569733740000,"y":0.12},{"x":1569733800000,"y":0.11},{"x":1569733860000,"y":0.05},{"x":1569733920000,"y":0.06},{"x":1569733980000,"y":0.08},{"x":1569734040000,"y":0.19},{"x":1569734100000,"y":0.17},{"x":1569734160000,"y":0.06},{"x":1569734220000,"y":0.07},{"x":1569734280000,"y":0.08},{"x":1569734340000,"y":0.24},{"x":1569734400000,"y":0.11},{"x":1569734460000,"y":0.33},{"x":1569734520000,"y":0.07},{"x":1569734580000,"y":0.04},{"x":1569734640000,"y":0.2},{"x":1569734700000,"y":0.15},{"x":1569734760000,"y":0.07},{"x":1569734820000,"y":0.07},{"x":1569734880000,"y":0.06},{"x":1569734940000,"y":0.19},{"x":1569735000000,"y":0.15},{"x":1569735060000,"y":0.06},{"x":1569735120000,"y":0.07},{"x":1569735180000,"y":0.07},{"x":1569735240000,"y":0.21},{"x":1569735300000,"y":0.11},{"x":1569735360000,"y":0.07},{"x":1569735420000,"y":0.06},{"x":1569735480000,"y":0.08},{"x":1569735540000,"y":0.24},{"x":1569735600000,"y":0.16},{"x":1569735660000,"y":0.06},{"x":1569735720000,"y":0.09},{"x":1569735780000,"y":0.06},{"x":1569735840000,"y":0.21},{"x":1569735900000,"y":0.1},{"x":1569735960000,"y":0.06},{"x":1569736020000,"y":0.07},{"x":1569736080000,"y":0.05},{"x":1569736140000,"y":0.05},{"x":1569736200000,"y":0.23},{"x":1569736260000,"y":0.05},{"x":1569736320000,"y":0.08},{"x":1569736380000,"y":0.05},{"x":1569736440000,"y":0.07},{"x":1569736500000,"y":0.25},{"x":1569736560000,"y":0.05},{"x":1569736620000,"y":0.09},{"x":1569736680000,"y":0.07},{"x":1569736740000,"y":0.1},{"x":1569736800000,"y":0.25},{"x":1569736860000,"y":0.06},{"x":1569736920000,"y":0.08},{"x":1569736980000,"y":0.07},{"x":1569737040000,"y":0.06},{"x":1569737100000,"y":0.26},{"x":1569737160000,"y":0.05},{"x":1569737220000,"y":0.06},{"x":1569737280000,"y":0.09},{"x":1569737340000,"y":0.15},{"x":1569737400000,"y":0.26},{"x":1569737460000,"y":0.05},{"x":1569737520000,"y":0.06},{"x":1569737580000,"y":0.06},{"x":1569737640000,"y":0.07},{"x":1569737700000,"y":0.28},{"x":1569737760000,"y":0.06},{"x":1569737820000,"y":0.08},{"x":1569737880000,"y":0.07},{"x":1569737940000,"y":0.07},{"x":1569738000000,"y":0.25},{"x":1569738060000,"y":0.05},{"x":1569738120000,"y":0.04},{"x":1569738180000,"y":0.04},{"x":1569738240000,"y":0.1},{"x":1569738300000,"y":0.27},{"x":1569738360000,"y":0.21},{"x":1569738420000,"y":0.1},{"x":1569738480000,"y":0.09},{"x":1569738540000,"y":0.07},{"x":1569738600000,"y":0.1},{"x":1569738660000,"y":0.19},{"x":1569738720000,"y":0.07},{"x":1569738780000,"y":0.05},{"x":1569738840000,"y":0.05},{"x":1569738900000,"y":0.15},{"x":1569738960000,"y":0.2},{"x":1569739020000,"y":0.1},{"x":1569739080000,"y":0.07},{"x":1569739140000,"y":0.17},{"x":1569739200000,"y":0.11},{"x":1569739260000,"y":0.18},{"x":1569739320000,"y":0.07},{"x":1569739380000,"y":0.07},{"x":1569739440000,"y":0.07},{"x":1569739500000,"y":0.11},{"x":1569739560000,"y":4.88},{"x":1569739620000,"y":0.17},{"x":1569739680000,"y":0.06},{"x":1569739740000,"y":0.05},{"x":1569739800000,"y":0.16},{"x":1569739860000,"y":0.21},{"x":1569739920000,"y":0.06},{"x":1569739980000,"y":0.07},{"x":1569740040000,"y":0.07},{"x":1569740100000,"y":0.12},{"x":1569740160000,"y":0.2},{"x":1569740220000,"y":0.04},{"x":1569740280000,"y":0.07},{"x":1569740340000,"y":0.07},{"x":1569740400000,"y":0.21},{"x":1569740460000,"y":0.18},{"x":1569740520000,"y":0.07},{"x":1569740580000,"y":0.07},{"x":1569740640000,"y":0.08},{"x":1569740700000,"y":0.16},{"x":1569740760000,"y":0.07},{"x":1569740820000,"y":0.18},{"x":1569740880000,"y":0.06},{"x":1569740940000,"y":0.17},{"x":1569741000000,"y":0.14},{"x":1569741060000,"y":0.06},{"x":1569741120000,"y":0.2},{"x":1569741180000,"y":0.07},{"x":1569741240000,"y":0.1},{"x":1569741300000,"y":0.1},{"x":1569741360000,"y":0.1},{"x":1569741420000,"y":0.22},{"x":1569741480000,"y":0.05},{"x":1569741540000,"y":0.07},{"x":1569741600000,"y":0.08},{"x":1569741660000,"y":0.07},{"x":1569741720000,"y":0.17},{"x":1569741780000,"y":0.06},{"x":1569741840000,"y":0.05},{"x":1569741900000,"y":0.11},{"x":1569741960000,"y":0.07},{"x":1569742020000,"y":0.18},{"x":1569742080000,"y":0.06},{"x":1569742140000,"y":0.05},{"x":1569742200000,"y":0.08},{"x":1569742260000,"y":0.07},{"x":1569742320000,"y":0.17},{"x":1569742380000,"y":0.05},{"x":1569742440000,"y":0.06},{"x":1569742500000,"y":0.1},{"x":1569742560000,"y":0.04},{"x":1569742620000,"y":0.18},{"x":1569742680000,"y":0.09},{"x":1569742740000,"y":0.14},{"x":1569742800000,"y":0.2},{"x":1569742860000,"y":0.05},{"x":1569742920000,"y":0.06},{"x":1569742980000,"y":0.92},{"x":1569743040000,"y":0.07},{"x":1569743100000,"y":0.14},{"x":1569743160000,"y":0.09},{"x":1569743220000,"y":0.06},{"x":1569743280000,"y":0.19},{"x":1569743340000,"y":0.08},{"x":1569743400000,"y":0.12},{"x":1569743460000,"y":0.07},{"x":1569743520000,"y":0.07},{"x":1569743580000,"y":0.2},{"x":1569743640000,"y":0.07},{"x":1569743700000,"y":0.12},{"x":1569743760000,"y":0.08},{"x":1569743820000,"y":0.05},{"x":1569743880000,"y":0.22},{"x":1569743940000,"y":0.1},{"x":1569744000000,"y":0.2},{"x":1569744060000,"y":0.06},{"x":1569744120000,"y":0.08},{"x":1569744180000,"y":0.18},{"x":1569744240000,"y":0.05},{"x":1569744300000,"y":0.15},{"x":1569744360000,"y":0.07},{"x":1569744420000,"y":0.09},{"x":1569744480000,"y":0.24},{"x":1569744540000,"y":0.1},{"x":1569744600000,"y":0.13},{"x":1569744660000,"y":0.07},{"x":1569744720000,"y":0.1},{"x":1569744780000,"y":0.18},{"x":1569744840000,"y":0.06},{"x":1569744900000,"y":0.1},{"x":1569744960000,"y":0.09},{"x":1569745020000,"y":0.08},{"x":1569745080000,"y":0.08},{"x":1569745140000,"y":0.22},{"x":1569745200000,"y":0.11},{"x":1569745260000,"y":0.07},{"x":1569745320000,"y":0.35},{"x":1569745380000,"y":0.03},{"x":1569745440000,"y":0.2},{"x":1569745500000,"y":0.12},{"x":1569745560000,"y":0.08},{"x":1569745620000,"y":0.05},{"x":1569745680000,"y":0.07},{"x":1569745740000,"y":0.18},{"x":1569745800000,"y":0.11},{"x":1569745860000,"y":0.07},{"x":1569745920000,"y":0.05},{"x":1569745980000,"y":0.09},{"x":1569746040000,"y":0.23},{"x":1569746100000,"y":0.15},{"x":1569746160000,"y":0.07},{"x":1569746220000,"y":0.05},{"x":1569746280000,"y":0.04},{"x":1569746340000,"y":0.25},{"x":1569746400000,"y":0.09},{"x":1569746460000,"y":0.05},{"x":1569746520000,"y":0.07},{"x":1569746580000,"y":0.08},{"x":1569746640000,"y":0.2},{"x":1569746700000,"y":0.14},{"x":1569746760000,"y":0.08},{"x":1569746820000,"y":0.07},{"x":1569746880000,"y":0.08},{"x":1569746940000,"y":0.22},{"x":1569747000000,"y":0.12},{"x":1569747060000,"y":0.05},{"x":1569747120000,"y":0.06},{"x":1569747180000,"y":0.06},{"x":1569747240000,"y":0.18},{"x":1569747300000,"y":0.1},{"x":1569747360000,"y":0.09},{"x":1569747420000,"y":0.06},{"x":1569747480000,"y":0.06},{"x":1569747540000,"y":0.07},{"x":1569747600000,"y":0.4},{"x":1569747660000,"y":0.07},{"x":1569747720000,"y":0.05},{"x":1569747780000,"y":0.08},{"x":1569747840000,"y":0.07},{"x":1569747900000,"y":0.26},{"x":1569747960000,"y":0.05},{"x":1569748020000,"y":0.07},{"x":1569748080000,"y":0.08},{"x":1569748140000,"y":0.1},{"x":1569748200000,"y":0.2},{"x":1569748260000,"y":0.08},{"x":1569748320000,"y":0.05},{"x":1569748380000,"y":0.07},{"x":1569748440000,"y":0.06},{"x":1569748500000,"y":0.26},{"x":1569748560000,"y":0.07},{"x":1569748620000,"y":0.07},{"x":1569748680000,"y":0.07},{"x":1569748740000,"y":0.08},{"x":1569748800000,"y":0.27},{"x":1569748860000,"y":0.08},{"x":1569748920000,"y":0.07},{"x":1569748980000,"y":0.17},{"x":1569749040000,"y":0.07},{"x":1569749100000,"y":0.28},{"x":1569749160000,"y":0.04},{"x":1569749220000,"y":0.09},{"x":1569749280000,"y":0.07},{"x":1569749340000,"y":0.05},{"x":1569749400000,"y":0.27},{"x":1569749460000,"y":0.07},{"x":1569749520000,"y":0.07},{"x":1569749580000,"y":0.07},{"x":1569749640000,"y":0.07},{"x":1569749700000,"y":0.24},{"x":1569749760000,"y":0.05},{"x":1569749820000,"y":0.05},{"x":1569749880000,"y":0.1},{"x":1569749940000,"y":0.12},{"x":1569750000000,"y":0.27},{"x":1569750060000,"y":0.09},{"x":1569750120000,"y":0.05},{"x":1569750180000,"y":0.06},{"x":1569750240000,"y":0.07},{"x":1569750300000,"y":0.12},{"x":1569750360000,"y":0.22},{"x":1569750420000,"y":0.04},{"x":1569750480000,"y":0.08},{"x":1569750540000,"y":0.07},{"x":1569750600000,"y":0.14},{"x":1569750660000,"y":0.21},{"x":1569750720000,"y":0.1},{"x":1569750780000,"y":0.1},{"x":1569750840000,"y":0.08},{"x":1569750900000,"y":0.21},{"x":1569750960000,"y":0.24},{"x":1569751020000,"y":0.1},{"x":1569751080000,"y":0.12},{"x":1569751140000,"y":0.15},{"x":1569751200000,"y":0.17},{"x":1569751260000,"y":0.26},{"x":1569751320000,"y":0.06},{"x":1569751380000,"y":0.09},{"x":1569751440000,"y":0.12},{"x":1569751500000,"y":0.15},{"x":1569751560000,"y":0.22},{"x":1569751620000,"y":0.09},{"x":1569751680000,"y":0.14},{"x":1569751740000,"y":0.23},{"x":1569751800000,"y":0.17},{"x":1569751860000,"y":0.25},{"x":1569751920000,"y":0.12},{"x":1569751980000,"y":0.15},{"x":1569752040000,"y":0.09},{"x":1569752100000,"y":0.12},{"x":1569752160000,"y":0.3},{"x":1569752220000,"y":0.14},{"x":1569752280000,"y":0.14},{"x":1569752340000,"y":0.17},{"x":1569752400000,"y":0.21},{"x":1569752460000,"y":0.15},{"x":1569752520000,"y":0.3},{"x":1569752580000,"y":0.16},{"x":1569752640000,"y":0.15},{"x":1569752700000,"y":0.23},{"x":1569752760000,"y":0.15},{"x":1569752820000,"y":0.32},{"x":1569752880000,"y":0.15},{"x":1569752940000,"y":0.13},{"x":1569753000000,"y":0.21},{"x":1569753060000,"y":0.15},{"x":1569753120000,"y":0.28},{"x":1569753180000,"y":0.16},{"x":1569753240000,"y":0.13},{"x":1569753300000,"y":0.17},{"x":1569753360000,"y":0.14},{"x":1569753420000,"y":0.27},{"x":1569753480000,"y":0.13},{"x":1569753540000,"y":0.21},{"x":1569753600000,"y":0.21},{"x":1569753660000,"y":0.15},{"x":1569753720000,"y":0.29},{"x":1569753780000,"y":0.13},{"x":1569753840000,"y":0.12},{"x":1569753900000,"y":1.42},{"x":1569753960000,"y":0.12},{"x":1569754020000,"y":0.27},{"x":1569754080000,"y":0.15},{"x":1569754140000,"y":0.13},{"x":1569754200000,"y":0.18},{"x":1569754260000,"y":0.16},{"x":1569754320000,"y":0.28},{"x":1569754380000,"y":0.15},{"x":1569754440000,"y":0.13},{"x":1569754500000,"y":0.18},{"x":1569754560000,"y":0.14},{"x":1569754620000,"y":0.15},{"x":1569754680000,"y":0.29},{"x":1569754740000,"y":0.17},{"x":1569754800000,"y":0.21},{"x":1569754860000,"y":0.15},{"x":1569754920000,"y":0.14},{"x":1569754980000,"y":0.27},{"x":1569755040000,"y":0.13},{"x":1569755100000,"y":0.22},{"x":1569755160000,"y":0.15},{"x":1569755220000,"y":0.13},{"x":1569755280000,"y":0.27},{"x":1569755340000,"y":0.2},{"x":1569755400000,"y":0.21},{"x":1569755460000,"y":0.14},{"x":1569755520000,"y":0.13},{"x":1569755580000,"y":0.3},{"x":1569755640000,"y":0.15},{"x":1569755700000,"y":0.24},{"x":1569755760000,"y":0.15},{"x":1569755820000,"y":0.17},{"x":1569755880000,"y":0.28},{"x":1569755940000,"y":0.16},{"x":1569756000000,"y":0.18},{"x":1569756060000,"y":0.15},{"x":1569756120000,"y":0.15},{"x":1569756180000,"y":0.27},{"x":1569756240000,"y":0.15},{"x":1569756300000,"y":1.29},{"x":1569756360000,"y":0.16},{"x":1569756420000,"y":0.15},{"x":1569756480000,"y":0.28},{"x":1569756540000,"y":0.13},{"x":1569756600000,"y":0.18},{"x":1569756660000,"y":0.16},{"x":1569756720000,"y":0.14},{"x":1569756780000,"y":0.14},{"x":1569756840000,"y":0.31},{"x":1569756900000,"y":0.22},{"x":1569756960000,"y":0.17},{"x":1569757020000,"y":0.15},{"x":1569757080000,"y":0.16},{"x":1569757140000,"y":0.4},{"x":1569757200000,"y":9.14},{"x":1569757260000,"y":6.91},{"x":1569757320000,"y":0.15},{"x":1569757380000,"y":0.15},{"x":1569757440000,"y":0.3},{"x":1569757500000,"y":0.65},{"x":1569757560000,"y":0.16},{"x":1569757620000,"y":0.15},{"x":1569757680000,"y":0.15},{"x":1569757740000,"y":0.29},{"x":1569757800000,"y":0.24},{"x":1569757860000,"y":0.14},{"x":1569757920000,"y":0.15},{"x":1569757980000,"y":0.16},{"x":1569758040000,"y":0.3},{"x":1569758100000,"y":0.2},{"x":1569758160000,"y":0.16},{"x":1569758220000,"y":0.17},{"x":1569758280000,"y":0.16},{"x":1569758340000,"y":0.3},{"x":1569758400000,"y":0.24},{"x":1569758460000,"y":0.14},{"x":1569758520000,"y":0.16},{"x":1569758580000,"y":0.13},{"x":1569758640000,"y":0.29},{"x":1569758700000,"y":0.2},{"x":1569758760000,"y":0.14},{"x":1569758820000,"y":0.15},{"x":1569758880000,"y":0.15},{"x":1569758940000,"y":0.2},{"x":1569759000000,"y":0.41},{"x":1569759060000,"y":0.15},{"x":1569759120000,"y":0.17},{"x":1569759180000,"y":0.16},{"x":1569759240000,"y":0.16},{"x":1569759300000,"y":0.39},{"x":1569759360000,"y":0.15},{"x":1569759420000,"y":0.15},{"x":1569759480000,"y":0.13},{"x":1569759540000,"y":0.15},{"x":1569759600000,"y":0.36},{"x":1569759660000,"y":0.14},{"x":1569759720000,"y":0.17},{"x":1569759780000,"y":0.17},{"x":1569759840000,"y":0.15},{"x":1569759900000,"y":0.35},{"x":1569759960000,"y":0.15},{"x":1569760020000,"y":0.14},{"x":1569760080000,"y":0.12},{"x":1569760140000,"y":0.16},{"x":1569760200000,"y":0.33},{"x":1569760260000,"y":0.15},{"x":1569760320000,"y":0.15},{"x":1569760380000,"y":0.17},{"x":1569760440000,"y":0.15},{"x":1569760500000,"y":0.31},{"x":1569760560000,"y":0.15},{"x":1569760620000,"y":0.14},{"x":1569760680000,"y":0.13},{"x":1569760740000,"y":0.24},{"x":1569760800000,"y":0.36},{"x":1569760860000,"y":0.15},{"x":1569760920000,"y":0.14},{"x":1569760980000,"y":0.17},{"x":1569761040000,"y":0.16},{"x":1569761100000,"y":0.33},{"x":1569761160000,"y":1.56},{"x":1569761220000,"y":0.15},{"x":1569761280000,"y":0.14},{"x":1569761340000,"y":0.16},{"x":1569761400000,"y":3.45},{"x":1569761460000,"y":1.82},{"x":1569761520000,"y":0.14},{"x":1569761580000,"y":0.14},{"x":1569761640000,"y":0.14},{"x":1569761700000,"y":0.2},{"x":1569761760000,"y":0.28},{"x":1569761820000,"y":0.15},{"x":1569761880000,"y":0.12},{"x":1569761940000,"y":0.11},{"x":1569762000000,"y":0.21},{"x":1569762060000,"y":0.23},{"x":1569762120000,"y":0.11},{"x":1569762180000,"y":0.07},{"x":1569762240000,"y":0.07},{"x":1569762300000,"y":0.1},{"x":1569762360000,"y":0.18},{"x":1569762420000,"y":0.09},{"x":1569762480000,"y":0.1},{"x":1569762540000,"y":0.13},{"x":1569762600000,"y":0.12},{"x":1569762660000,"y":0.21},{"x":1569762720000,"y":0.07},{"x":1569762780000,"y":0.08},{"x":1569762840000,"y":0.08},{"x":1569762900000,"y":0.11},{"x":1569762960000,"y":0.2},{"x":1569763020000,"y":0.07},{"x":1569763080000,"y":0.07},{"x":1569763140000,"y":0.1},{"x":1569763200000,"y":0.1},{"x":1569763260000,"y":0.22},{"x":1569763320000,"y":0.05},{"x":1569763380000,"y":0.07},{"x":1569763440000,"y":0.06},{"x":1569763500000,"y":0.14},{"x":1569763560000,"y":0.21},{"x":1569763620000,"y":0.07},{"x":1569763680000,"y":0.08},{"x":1569763740000,"y":0.05},{"x":1569763800000,"y":0.12},{"x":1569763860000,"y":0.21},{"x":1569763920000,"y":0.06},{"x":1569763980000,"y":0.07},{"x":1569764040000,"y":0.07},{"x":1569764100000,"y":0.12},{"x":1569764160000,"y":0.1},{"x":1569764220000,"y":0.21},{"x":1569764280000,"y":0.07},{"x":1569764340000,"y":0.14},{"x":1569764400000,"y":0.11},{"x":1569764460000,"y":0.07},{"x":1569764520000,"y":0.2},{"x":1569764580000,"y":0.05},{"x":1569764640000,"y":0.07},{"x":1569764700000,"y":0.16},{"x":1569764760000,"y":0.07},{"x":1569764820000,"y":0.25},{"x":1569764880000,"y":0.05},{"x":1569764940000,"y":0.05},{"x":1569765000000,"y":0.15},{"x":1569765060000,"y":0.07},{"x":1569765120000,"y":0.22},{"x":1569765180000,"y":0.06},{"x":1569765240000,"y":0.07},{"x":1569765300000,"y":0.1},{"x":1569765360000,"y":0.08},{"x":1569765420000,"y":0.2},{"x":1569765480000,"y":0.09},{"x":1569765540000,"y":0.08},{"x":1569765600000,"y":0.13},{"x":1569765660000,"y":0.06},{"x":1569765720000,"y":0.2},{"x":1569765780000,"y":0.07},{"x":1569765840000,"y":0.07},{"x":1569765900000,"y":0.13},{"x":1569765960000,"y":0.05},{"x":1569766020000,"y":0.2},{"x":1569766080000,"y":0.05},{"x":1569766140000,"y":0.13},{"x":1569766200000,"y":0.1},{"x":1569766260000,"y":0.07},{"x":1569766320000,"y":0.18},{"x":1569766380000,"y":0.09},{"x":1569766440000,"y":0.08},{"x":1569766500000,"y":0.09},{"x":1569766560000,"y":0.06},{"x":1569766620000,"y":0.08},{"x":1569766680000,"y":0.25},{"x":1569766740000,"y":0.07},{"x":1569766800000,"y":0.13},{"x":1569766860000,"y":0.09},{"x":1569766920000,"y":0.07},{"x":1569766980000,"y":0.18},{"x":1569767040000,"y":0.06},{"x":1569767100000,"y":0.1},{"x":1569767160000,"y":0.04},{"x":1569767220000,"y":0.05},{"x":1569767280000,"y":0.2},{"x":1569767340000,"y":0.07},{"x":1569767400000,"y":0.18},{"x":1569767460000,"y":0.05},{"x":1569767520000,"y":0.06},{"x":1569767580000,"y":0.19},{"x":1569767640000,"y":0.06},{"x":1569767700000,"y":0.11},{"x":1569767760000,"y":0.05},{"x":1569767820000,"y":0.07},{"x":1569767880000,"y":0.17},{"x":1569767940000,"y":0.2},{"x":1569768000000,"y":0.17},{"x":1569768060000,"y":0.05},{"x":1569768120000,"y":0.06},{"x":1569768180000,"y":0.23},{"x":1569768240000,"y":0.05},{"x":1569768300000,"y":0.14},{"x":1569768360000,"y":0.05},{"x":1569768420000,"y":0.06},{"x":1569768480000,"y":0.04},{"x":1569768540000,"y":0.19},{"x":1569768600000,"y":0.1},{"x":1569768660000,"y":0.07},{"x":1569768720000,"y":0.07},{"x":1569768780000,"y":0.05},{"x":1569768840000,"y":0.21},{"x":1569768900000,"y":0.11},{"x":1569768960000,"y":0.06},{"x":1569769020000,"y":0.07},{"x":1569769080000,"y":0.05},{"x":1569769140000,"y":0.22},{"x":1569769200000,"y":0.11},{"x":1569769260000,"y":0.09},{"x":1569769320000,"y":0.05},{"x":1569769380000,"y":0.05},{"x":1569769440000,"y":0.21},{"x":1569769500000,"y":0.11},{"x":1569769560000,"y":0.06},{"x":1569769620000,"y":0.04},{"x":1569769680000,"y":0.07},{"x":1569769740000,"y":0.29},{"x":1569769800000,"y":0.09},{"x":1569769860000,"y":0.06},{"x":1569769920000,"y":0.06},{"x":1569769980000,"y":0.08},{"x":1569770040000,"y":0.19},{"x":1569770100000,"y":0.11},{"x":1569770160000,"y":0.07},{"x":1569770220000,"y":0.12},{"x":1569770280000,"y":0.06},{"x":1569770340000,"y":0.19},{"x":1569770400000,"y":0.1},{"x":1569770460000,"y":0.08},{"x":1569770520000,"y":0.07},{"x":1569770580000,"y":0.07},{"x":1569770640000,"y":0.21},{"x":1569770700000,"y":0.13},{"x":1569770760000,"y":0.05},{"x":1569770820000,"y":0.06},{"x":1569770880000,"y":0.08},{"x":1569770940000,"y":0.2},{"x":1569771000000,"y":0.14},{"x":1569771060000,"y":0.06},{"x":1569771120000,"y":0.06},{"x":1569771180000,"y":0.05},{"x":1569771240000,"y":0.07},{"x":1569771300000,"y":0.26},{"x":1569771360000,"y":0.08},{"x":1569771420000,"y":0.06},{"x":1569771480000,"y":0.05},{"x":1569771540000,"y":0.11},{"x":1569771600000,"y":0.29},{"x":1569771660000,"y":0.1},{"x":1569771720000,"y":0.06},{"x":1569771780000,"y":0.05},{"x":1569771840000,"y":0.05},{"x":1569771900000,"y":0.25},{"x":1569771960000,"y":0.06},{"x":1569772020000,"y":0.07},{"x":1569772080000,"y":0.07},{"x":1569772140000,"y":0.07},{"x":1569772200000,"y":0.22},{"x":1569772260000,"y":0.07},{"x":1569772320000,"y":0.05},{"x":1569772380000,"y":0.05},{"x":1569772440000,"y":0.06},{"x":1569772500000,"y":0.23},{"x":1569772560000,"y":0.07},{"x":1569772620000,"y":0.06},{"x":1569772680000,"y":0.09},{"x":1569772740000,"y":0.09},{"x":1569772800000,"y":0.25},{"x":1569772860000,"y":0.06},{"x":1569772920000,"y":0.06},{"x":1569772980000,"y":0.07},{"x":1569773040000,"y":0.07},{"x":1569773100000,"y":0.27},{"x":1569773160000,"y":0.07},{"x":1569773220000,"y":0.07},{"x":1569773280000,"y":0.06},{"x":1569773340000,"y":0.13},{"x":1569773400000,"y":0.23},{"x":1569773460000,"y":0.06},{"x":1569773520000,"y":0.07},{"x":1569773580000,"y":0.06},{"x":1569773640000,"y":0.06},{"x":1569773700000,"y":0.14},{"x":1569773760000,"y":0.19},{"x":1569773820000,"y":0.07},{"x":1569773880000,"y":0.06},{"x":1569773940000,"y":0.08},{"x":1569774000000,"y":0.16},{"x":1569774060000,"y":0.17},{"x":1569774120000,"y":0.07},{"x":1569774180000,"y":0.06},{"x":1569774240000,"y":0.07},{"x":1569774300000,"y":0.14},{"x":1569774360000,"y":0.18},{"x":1569774420000,"y":0.23},{"x":1569774480000,"y":0.07},{"x":1569774540000,"y":0.07},{"x":1569774600000,"y":0.08},{"x":1569774660000,"y":0.19},{"x":1569774720000,"y":0.07},{"x":1569774780000,"y":0.05},{"x":1569774840000,"y":0.07},{"x":1569774900000,"y":0.12},{"x":1569774960000,"y":0.19},{"x":1569775020000,"y":0.07},{"x":1569775080000,"y":0.07},{"x":1569775140000,"y":0.1},{"x":1569775200000,"y":0.1},{"x":1569775260000,"y":0.18},{"x":1569775320000,"y":0.07},{"x":1569775380000,"y":0.07},{"x":1569775440000,"y":0.07},{"x":1569775500000,"y":0.11},{"x":1569775560000,"y":0.2},{"x":1569775620000,"y":0.07},{"x":1569775680000,"y":0.49},{"x":1569775740000,"y":0.07},{"x":1569775800000,"y":0.13},{"x":1569775860000,"y":0.2},{"x":1569775920000,"y":0.1},{"x":1569775980000,"y":0.08},{"x":1569776040000,"y":0.05},{"x":1569776100000,"y":0.1},{"x":1569776160000,"y":0.07},{"x":1569776220000,"y":0.22},{"x":1569776280000,"y":0.06},{"x":1569776340000,"y":0.09},{"x":1569776400000,"y":0.15},{"x":1569776460000,"y":0.07},{"x":1569776520000,"y":0.2},{"x":1569776580000,"y":0.05},{"x":1569776640000,"y":0.07},{"x":1569776700000,"y":0.1},{"x":1569776760000,"y":0.07},{"x":1569776820000,"y":0.22},{"x":1569776880000,"y":0.07},{"x":1569776940000,"y":0.11},{"x":1569777000000,"y":0.12},{"x":1569777060000,"y":0.06},{"x":1569777120000,"y":0.2},{"x":1569777180000,"y":0.06},{"x":1569777240000,"y":0.09},{"x":1569777300000,"y":0.17},{"x":1569777360000,"y":0.06},{"x":1569777420000,"y":0.2},{"x":1569777480000,"y":0.07},{"x":1569777540000,"y":0.09},{"x":1569777600000,"y":0.16},{"x":1569777660000,"y":0.07},{"x":1569777720000,"y":0.19},{"x":1569777780000,"y":0.07},{"x":1569777840000,"y":0.1},{"x":1569777900000,"y":0.1},{"x":1569777960000,"y":0.06},{"x":1569778020000,"y":0.32},{"x":1569778080000,"y":0.1},{"x":1569778140000,"y":0.07},{"x":1569778200000,"y":0.1},{"x":1569778260000,"y":0.06},{"x":1569778320000,"y":0.07},{"x":1569778380000,"y":0.2},{"x":1569778440000,"y":0.06},{"x":1569778500000,"y":0.13},{"x":1569778560000,"y":0.06},{"x":1569778620000,"y":0.07},{"x":1569778680000,"y":0.2},{"x":1569778740000,"y":0.12},{"x":1569778800000,"y":0.12},{"x":1569778860000,"y":0.08},{"x":1569778920000,"y":0.07},{"x":1569778980000,"y":0.22},{"x":1569779040000,"y":0.06},{"x":1569779100000,"y":0.17},{"x":1569779160000,"y":0.13},{"x":1569779220000,"y":0.12},{"x":1569779280000,"y":1.35},{"x":1569779340000,"y":0.93},{"x":1569779400000,"y":0.17},{"x":1569779460000,"y":0.09},{"x":1569779520000,"y":0.08},{"x":1569779580000,"y":0.18},{"x":1569779640000,"y":0.1},{"x":1569779700000,"y":0.16},{"x":1569779760000,"y":0.1},{"x":1569779820000,"y":0.09},{"x":1569779880000,"y":0.22},{"x":1569779940000,"y":0.1},{"x":1569780000000,"y":0.18},{"x":1569780060000,"y":0.07},{"x":1569780120000,"y":0.18},{"x":1569780180000,"y":0.16},{"x":1569780240000,"y":0.13},{"x":1569780300000,"y":0.11},{"x":1569780360000,"y":0.07},{"x":1569780420000,"y":0.07},{"x":1569780480000,"y":0.07},{"x":1569780540000,"y":0.35},{"x":1569780600000,"y":0.13},{"x":1569780660000,"y":0.08},{"x":1569780720000,"y":0.08},{"x":1569780780000,"y":0.07},{"x":1569780840000,"y":0.19},{"x":1569780900000,"y":0.12},{"x":1569780960000,"y":0.08},{"x":1569781020000,"y":0.06},{"x":1569781080000,"y":0.07},{"x":1569781140000,"y":0.21},{"x":1569781200000,"y":0.12},{"x":1569781260000,"y":0.1},{"x":1569781320000,"y":0.08},{"x":1569781380000,"y":0.07},{"x":1569781440000,"y":0.2},{"x":1569781500000,"y":0.12},{"x":1569781560000,"y":0.07},{"x":1569781620000,"y":0.06},{"x":1569781680000,"y":0.08},{"x":1569781740000,"y":0.2},{"x":1569781800000,"y":0.1},{"x":1569781860000,"y":0.07},{"x":1569781920000,"y":0.07},{"x":1569781980000,"y":0.07},{"x":1569782040000,"y":0.21},{"x":1569782100000,"y":0.13},{"x":1569782160000,"y":0.07},{"x":1569782220000,"y":0.06},{"x":1569782280000,"y":0.07},{"x":1569782340000,"y":0.34},{"x":1569782400000,"y":0.17},{"x":1569782460000,"y":0.09},{"x":1569782520000,"y":0.08},{"x":1569782580000,"y":0.07},{"x":1569782640000,"y":0.09},{"x":1569782700000,"y":0.4},{"x":1569782760000,"y":0.1},{"x":1569782820000,"y":0.07},{"x":1569782880000,"y":0.07},{"x":1569782940000,"y":0.07},{"x":1569783000000,"y":0.3},{"x":1569783060000,"y":0.06},{"x":1569783120000,"y":0.08},{"x":1569783180000,"y":0.05},{"x":1569783240000,"y":0.07},{"x":1569783300000,"y":5.1},{"x":1569783360000,"y":0.12},{"x":1569783420000,"y":0.08},{"x":1569783480000,"y":0.08},{"x":1569783540000,"y":0.07},{"x":1569783600000,"y":0.36},{"x":1569783660000,"y":0.06},{"x":1569783720000,"y":0.07},{"x":1569783780000,"y":0.07},{"x":1569783840000,"y":0.07},{"x":1569783900000,"y":0.25},{"x":1569783960000,"y":0.07},{"x":1569784020000,"y":0.1},{"x":1569784080000,"y":0.07},{"x":1569784140000,"y":0.12},{"x":1569784200000,"y":0.25},{"x":1569784260000,"y":0.09},{"x":1569784320000,"y":0.07},{"x":1569784380000,"y":0.09},{"x":1569784440000,"y":0.12},{"x":1569784500000,"y":0.3},{"x":1569784560000,"y":0.08},{"x":1569784620000,"y":0.09},{"x":1569784680000,"y":0.07},{"x":1569784740000,"y":0.1},{"x":1569784800000,"y":0.13},{"x":1569784860000,"y":0.24},{"x":1569784920000,"y":0.1},{"x":1569784980000,"y":0.09},{"x":1569785040000,"y":0.08},{"x":1569785100000,"y":0.19},{"x":1569785160000,"y":0.23},{"x":1569785220000,"y":0.12},{"x":1569785280000,"y":0.09},{"x":1569785340000,"y":0.1},{"x":1569785400000,"y":0.22},{"x":1569785460000,"y":0.24},{"x":1569785520000,"y":0.15},{"x":1569785580000,"y":0.16},{"x":1569785640000,"y":0.16},{"x":1569785700000,"y":0.22},{"x":1569785760000,"y":0.3},{"x":1569785820000,"y":0.17},{"x":1569785880000,"y":0.14},{"x":1569785940000,"y":0.22},{"x":1569786000000,"y":0.19},{"x":1569786060000,"y":0.26},{"x":1569786120000,"y":0.13},{"x":1569786180000,"y":0.13},{"x":1569786240000,"y":0.15},{"x":1569786300000,"y":0.2},{"x":1569786360000,"y":0.31},{"x":1569786420000,"y":0.16},{"x":1569786480000,"y":0.14},{"x":1569786540000,"y":0.15}],"ram":[{"x":1566453600000,"y":14.02},{"x":1566453660000,"y":14.01},{"x":1566453720000,"y":14.01},{"x":1566453780000,"y":14.01},{"x":1566453840000,"y":14.01},{"x":1566453900000,"y":14.03},{"x":1566453960000,"y":14.03},{"x":1566454020000,"y":14.02},{"x":1566454080000,"y":14.02},{"x":1566454140000,"y":14.03},{"x":1566454200000,"y":14.03},{"x":1566454260000,"y":14.04},{"x":1566454320000,"y":14.03},{"x":1566454380000,"y":14.03},{"x":1566454440000,"y":14.03},{"x":1566454500000,"y":14.02},{"x":1566454560000,"y":14.04},{"x":1566454620000,"y":14.03},{"x":1566454680000,"y":14.03},{"x":1566454740000,"y":14.03},{"x":1566454800000,"y":14.03},{"x":1566454860000,"y":14.03},{"x":1566454920000,"y":14.03},{"x":1566454980000,"y":14.03},{"x":1566455040000,"y":14.03},{"x":1566455100000,"y":14.03},{"x":1566455160000,"y":14.04},{"x":1566455220000,"y":14.04},{"x":1566455280000,"y":14.03},{"x":1566455340000,"y":14.03},{"x":1566455400000,"y":14.03},{"x":1566455460000,"y":14.04},{"x":1566455520000,"y":14.03},{"x":1566455580000,"y":14.04},{"x":1566455640000,"y":14.04},{"x":1566455700000,"y":14.04},{"x":1566455760000,"y":14.05},{"x":1566455820000,"y":14.03},{"x":1566455880000,"y":14.03},{"x":1566455940000,"y":14.03},{"x":1566456000000,"y":14.04},{"x":1566456060000,"y":14.04},{"x":1566456120000,"y":14.05},{"x":1566456180000,"y":14.03},{"x":1566456240000,"y":14.03},{"x":1566456300000,"y":14.03},{"x":1566456360000,"y":14.03},{"x":1566456420000,"y":14.05},{"x":1566456480000,"y":14.04},{"x":1566456540000,"y":14.04},{"x":1566456600000,"y":14.04},{"x":1566456660000,"y":14.03},{"x":1566456720000,"y":14.04},{"x":1566456780000,"y":14.03},{"x":1566456840000,"y":14.04},{"x":1566456900000,"y":14.04},{"x":1566456960000,"y":14.03},{"x":1566457020000,"y":14.04},{"x":1566457080000,"y":14.03},{"x":1566457140000,"y":14.03},{"x":1566457200000,"y":14.03},{"x":1566457260000,"y":14.03},{"x":1566457320000,"y":14.02},{"x":1566457380000,"y":14.02},{"x":1566457440000,"y":14.02},{"x":1566457500000,"y":14.01},{"x":1566457560000,"y":14.01},{"x":1566457620000,"y":14.02},{"x":1566457680000,"y":14.02},{"x":1566457740000,"y":14.02},{"x":1566457800000,"y":14.02},{"x":1566457860000,"y":14.02},{"x":1566457920000,"y":14.02},{"x":1566457980000,"y":14.01},{"x":1566458040000,"y":14.01},{"x":1566458100000,"y":14.02},{"x":1566458160000,"y":14.02},{"x":1566458220000,"y":14.02},{"x":1566458280000,"y":14.03},{"x":1566458340000,"y":14.02},{"x":1566458400000,"y":14},{"x":1566458460000,"y":14.02},{"x":1566458520000,"y":14.02},{"x":1566458580000,"y":14.04},{"x":1566458640000,"y":14.03},{"x":1566458700000,"y":14.02},{"x":1566458760000,"y":14.02},{"x":1566458820000,"y":14.02},{"x":1566458880000,"y":14.03},{"x":1566458940000,"y":14.02},{"x":1566459000000,"y":14.03},{"x":1566459060000,"y":14.03},{"x":1566459120000,"y":14.03},{"x":1566459180000,"y":14.03},{"x":1566459240000,"y":14.02},{"x":1566459300000,"y":14.02},{"x":1566459360000,"y":14.02},{"x":1566459420000,"y":14.02},{"x":1566459480000,"y":14.02},{"x":1566459540000,"y":14.02},{"x":1566459600000,"y":14.02},{"x":1566459660000,"y":14.02},{"x":1566459720000,"y":14.02},{"x":1566459780000,"y":14.03},{"x":1566459840000,"y":14.03},{"x":1566459900000,"y":14.02},{"x":1566459960000,"y":14.02},{"x":1566460020000,"y":14.02},{"x":1566460080000,"y":14.02},{"x":1566460140000,"y":14.36},{"x":1566460200000,"y":14.08},{"x":1566460260000,"y":14.08},{"x":1566460320000,"y":14.08},{"x":1566460380000,"y":14.08},{"x":1566460440000,"y":14.04},{"x":1566460500000,"y":14.03},{"x":1566460560000,"y":14.03},{"x":1566460620000,"y":14.03},{"x":1566460680000,"y":14.03},{"x":1566460740000,"y":14.03},{"x":1566460800000,"y":14.03},{"x":1566460860000,"y":14.03},{"x":1566460920000,"y":14.03},{"x":1566460980000,"y":14.03},{"x":1566461040000,"y":14.03},{"x":1566461100000,"y":14},{"x":1566461160000,"y":14},{"x":1566461220000,"y":14},{"x":1566461280000,"y":14},{"x":1566461340000,"y":14.03},{"x":1566461400000,"y":14.03},{"x":1566461460000,"y":14.03},{"x":1566461520000,"y":14.03},{"x":1566461580000,"y":14.03},{"x":1566461640000,"y":14.03},{"x":1566461700000,"y":14.03},{"x":1566461760000,"y":14.03},{"x":1566461820000,"y":14.03},{"x":1566461880000,"y":14.04},{"x":1566461940000,"y":14.04},{"x":1566462000000,"y":14.03},{"x":1566462060000,"y":14.01},{"x":1566462120000,"y":14.01},{"x":1566462180000,"y":14.01},{"x":1566462240000,"y":14.01},{"x":1566462300000,"y":14.03},{"x":1566462360000,"y":14.01},{"x":1566462420000,"y":14.01},{"x":1566462480000,"y":14.01},{"x":1566462540000,"y":14.01},{"x":1566462600000,"y":14.04},{"x":1566462660000,"y":14.03},{"x":1566462720000,"y":14.04},{"x":1566462780000,"y":14.04},{"x":1566462840000,"y":14.04},{"x":1566462900000,"y":14.02},{"x":1566462960000,"y":14.01},{"x":1566463020000,"y":14.01},{"x":1566463080000,"y":14.01},{"x":1566463140000,"y":14.03},{"x":1566463200000,"y":14.04},{"x":1566463260000,"y":14.03},{"x":1566463320000,"y":14.03},{"x":1566463380000,"y":14.03},{"x":1566463440000,"y":14.04},{"x":1566463500000,"y":14.04},{"x":1566463560000,"y":14.03},{"x":1566463620000,"y":14.03},{"x":1566463680000,"y":14.03},{"x":1566463740000,"y":14.04},{"x":1566463800000,"y":14.05},{"x":1566463860000,"y":14.04},{"x":1566463920000,"y":14.03},{"x":1566463980000,"y":14.03},{"x":1566464040000,"y":14.03},{"x":1566464100000,"y":14.03},{"x":1566464160000,"y":14.04},{"x":1566464220000,"y":14.04},{"x":1566464280000,"y":14.04},{"x":1566464340000,"y":14.03},{"x":1566464400000,"y":14.03},{"x":1566464460000,"y":14.04},{"x":1566464520000,"y":14.03},{"x":1566464580000,"y":14.04},{"x":1566464640000,"y":14.04},{"x":1566464700000,"y":14.04},{"x":1566464760000,"y":14.04},{"x":1566464820000,"y":14.03},{"x":1566464880000,"y":14.03},{"x":1566464940000,"y":14.04},{"x":1566465000000,"y":14.04},{"x":1566465060000,"y":14.05},{"x":1566465120000,"y":14.04},{"x":1566465180000,"y":14.04},{"x":1566465240000,"y":14.04},{"x":1566465300000,"y":14.02},{"x":1566465360000,"y":14.05},{"x":1566465420000,"y":14.04},{"x":1566465480000,"y":14.03},{"x":1566465540000,"y":14.03},{"x":1566465600000,"y":14.04},{"x":1566465660000,"y":14.05},{"x":1566465720000,"y":14.04},{"x":1566465780000,"y":14.03},{"x":1566465840000,"y":14.03},{"x":1566465900000,"y":14.03},{"x":1566465960000,"y":14.04},{"x":1566466020000,"y":14.04},{"x":1566466080000,"y":14.04},{"x":1566466140000,"y":14.04},{"x":1566466200000,"y":14.04},{"x":1566466260000,"y":14.03},{"x":1566466320000,"y":13.99},{"x":1566466380000,"y":13.99},{"x":1566466440000,"y":13.99},{"x":1566466500000,"y":14.02},{"x":1566466560000,"y":14.03},{"x":1566466620000,"y":14.02},{"x":1566466680000,"y":14.02},{"x":1566466740000,"y":14.02},{"x":1566466800000,"y":14.02},{"x":1566466860000,"y":14.02},{"x":1566466920000,"y":14.04},{"x":1566466980000,"y":14.02},{"x":1566467040000,"y":14.02},{"x":1566467100000,"y":14.02},{"x":1566467160000,"y":14.02},{"x":1566467220000,"y":14.02},{"x":1566467280000,"y":14.01},{"x":1566467340000,"y":14.01},{"x":1566467400000,"y":14.02},{"x":1566467460000,"y":14.02},{"x":1566467520000,"y":14.03},{"x":1566467580000,"y":14.02},{"x":1566467640000,"y":14.02},{"x":1566467700000,"y":14.02},{"x":1566467760000,"y":14.02},{"x":1566467820000,"y":14.03},{"x":1566467880000,"y":14.02},{"x":1566467940000,"y":14.02},{"x":1566468000000,"y":14},{"x":1566468060000,"y":13.99},{"x":1566468120000,"y":14.01},{"x":1566468180000,"y":14.01},{"x":1566468240000,"y":14.01},{"x":1566468300000,"y":14},{"x":1566468360000,"y":14.01},{"x":1566468420000,"y":14.02},{"x":1566468480000,"y":14.01},{"x":1566468540000,"y":14.02},{"x":1566468600000,"y":14.03},{"x":1566468660000,"y":14.03},{"x":1566468720000,"y":14.04},{"x":1566468780000,"y":14.03},{"x":1566468840000,"y":14.03},{"x":1566468900000,"y":14.03},{"x":1566468960000,"y":14.03},{"x":1566469020000,"y":14.03},{"x":1566469080000,"y":14.04},{"x":1566469140000,"y":14.03},{"x":1566469200000,"y":14.03},{"x":1566469260000,"y":14.02},{"x":1566469320000,"y":14.02},{"x":1566469380000,"y":14.03},{"x":1566469440000,"y":14.02},{"x":1566469500000,"y":14.03},{"x":1566469560000,"y":14.03},{"x":1566469620000,"y":14.03},{"x":1566469680000,"y":14.04},{"x":1566469740000,"y":14.02},{"x":1566469800000,"y":14.03},{"x":1566469860000,"y":14.03},{"x":1566469920000,"y":14.03},{"x":1566469980000,"y":14.04},{"x":1566470040000,"y":14.03},{"x":1566470100000,"y":14.02},{"x":1566470160000,"y":14.02},{"x":1566470220000,"y":14.02},{"x":1566470280000,"y":14.03},{"x":1566470340000,"y":14.03},{"x":1566470400000,"y":14.03},{"x":1566470460000,"y":14.03},{"x":1566470520000,"y":14.03},{"x":1566470580000,"y":14.05},{"x":1566470640000,"y":14.03},{"x":1566470700000,"y":14.03},{"x":1566470760000,"y":14.03},{"x":1566470820000,"y":14.03},{"x":1566470880000,"y":14.03},{"x":1566470940000,"y":14.05},{"x":1566471000000,"y":14.01},{"x":1566471060000,"y":14.01},{"x":1566471120000,"y":14.01},{"x":1566471180000,"y":14.01},{"x":1566471240000,"y":14.03},{"x":1566471300000,"y":14.03},{"x":1566471360000,"y":14.03},{"x":1566471420000,"y":14.03},{"x":1566471480000,"y":14.03},{"x":1566471540000,"y":14.04},{"x":1566471600000,"y":14.03},{"x":1566471660000,"y":14.03},{"x":1566471720000,"y":15.17},{"x":1566471780000,"y":15.2},{"x":1566471840000,"y":13.82},{"x":1566471900000,"y":13.8},{"x":1566471960000,"y":13.8},{"x":1566472020000,"y":13.8},{"x":1566472080000,"y":13.78},{"x":1566472140000,"y":13.77},{"x":1566472200000,"y":13.75},{"x":1566472260000,"y":13.75},{"x":1566472320000,"y":13.75},{"x":1566472380000,"y":13.75},{"x":1566472440000,"y":13.77},{"x":1566472500000,"y":13.76},{"x":1566472560000,"y":13.75},{"x":1566472620000,"y":13.76},{"x":1566472680000,"y":13.76},{"x":1566472740000,"y":13.77},{"x":1566472800000,"y":13.77},{"x":1566472860000,"y":13.76},{"x":1566472920000,"y":13.76},{"x":1566472980000,"y":13.76},{"x":1566473040000,"y":13.76},{"x":1566473100000,"y":13.83},{"x":1566473160000,"y":13.77},{"x":1566473220000,"y":13.77},{"x":1566473280000,"y":13.77},{"x":1566473340000,"y":13.77},{"x":1566473400000,"y":13.79},{"x":1566473460000,"y":13.78},{"x":1566473520000,"y":13.78},{"x":1566473580000,"y":13.78},{"x":1566473640000,"y":13.77},{"x":1566473700000,"y":13.79},{"x":1566473760000,"y":13.78},{"x":1566473820000,"y":13.77},{"x":1566473880000,"y":13.77},{"x":1566473940000,"y":13.78},{"x":1566474000000,"y":13.79},{"x":1566474060000,"y":13.78},{"x":1566474120000,"y":13.78},{"x":1566474180000,"y":13.78},{"x":1566474240000,"y":13.78},{"x":1566474300000,"y":13.79},{"x":1566474360000,"y":13.78},{"x":1566474420000,"y":13.78},{"x":1566474480000,"y":13.78},{"x":1566474540000,"y":13.78},{"x":1566474600000,"y":13.79},{"x":1566474660000,"y":13.78},{"x":1566474720000,"y":13.78},{"x":1566474780000,"y":13.78},{"x":1566474840000,"y":13.78},{"x":1566474900000,"y":13.76},{"x":1566474960000,"y":13.79},{"x":1566475020000,"y":13.78},{"x":1566475080000,"y":13.78},{"x":1566475140000,"y":13.78},{"x":1566475200000,"y":13.8},{"x":1566475260000,"y":13.8},{"x":1566475320000,"y":13.79},{"x":1566475380000,"y":13.77},{"x":1566475440000,"y":13.76},{"x":1566475500000,"y":13.76},{"x":1566475560000,"y":13.78},{"x":1566475620000,"y":13.77},{"x":1566475680000,"y":13.77},{"x":1566475740000,"y":13.77},{"x":1566475800000,"y":13.78},{"x":1566475860000,"y":13.78},{"x":1566475920000,"y":13.78},{"x":1566475980000,"y":13.78},{"x":1566476040000,"y":13.78},{"x":1566476100000,"y":13.77},{"x":1566476160000,"y":13.77},{"x":1566476220000,"y":13.77},{"x":1566476280000,"y":13.76},{"x":1566476340000,"y":13.76},{"x":1566476400000,"y":13.77},{"x":1566476460000,"y":13.77},{"x":1566476520000,"y":13.77},{"x":1566476580000,"y":13.77},{"x":1566476640000,"y":13.77},{"x":1566476700000,"y":13.78},{"x":1566476760000,"y":13.79},{"x":1566476820000,"y":13.79},{"x":1566476880000,"y":13.79},{"x":1566476940000,"y":13.78},{"x":1566477000000,"y":13.77},{"x":1566477060000,"y":13.77},{"x":1566477120000,"y":13.79},{"x":1566477180000,"y":13.78},{"x":1566477240000,"y":13.78},{"x":1566477300000,"y":13.78},{"x":1566477360000,"y":13.78},{"x":1566477420000,"y":13.8},{"x":1566477480000,"y":13.79},{"x":1566477540000,"y":13.78},{"x":1566477600000,"y":13.77},{"x":1566477660000,"y":13.77},{"x":1566477720000,"y":13.79},{"x":1566477780000,"y":13.79},{"x":1566477840000,"y":13.79},{"x":1566477900000,"y":13.78},{"x":1566477960000,"y":13.78},{"x":1566478020000,"y":13.8},{"x":1566478080000,"y":13.79},{"x":1566478140000,"y":13.79},{"x":1566478200000,"y":13.79},{"x":1566478260000,"y":13.78},{"x":1566478320000,"y":13.8},{"x":1566478380000,"y":13.78},{"x":1566478440000,"y":13.78},{"x":1566478500000,"y":13.8},{"x":1566478560000,"y":13.8},{"x":1566478620000,"y":13.81},{"x":1566478680000,"y":13.8},{"x":1566478740000,"y":13.8},{"x":1566478800000,"y":13.79},{"x":1566478860000,"y":13.79},{"x":1566478920000,"y":13.8},{"x":1566478980000,"y":13.8},{"x":1566479040000,"y":13.8},{"x":1566479100000,"y":13.79},{"x":1566479160000,"y":13.79},{"x":1566479220000,"y":13.79},{"x":1566479280000,"y":13.79},{"x":1566479340000,"y":13.79},{"x":1566479400000,"y":13.8},{"x":1566479460000,"y":13.79},{"x":1566479520000,"y":13.79},{"x":1566479580000,"y":13.81},{"x":1566479640000,"y":13.8},{"x":1566479700000,"y":13.8},{"x":1566479760000,"y":13.8},{"x":1566479820000,"y":13.8},{"x":1566479880000,"y":13.8},{"x":1566479940000,"y":13.79},{"x":1566480000000,"y":13.8},{"x":1566480060000,"y":13.8},{"x":1566480120000,"y":13.8},{"x":1566480180000,"y":13.81},{"x":1566480240000,"y":13.81},{"x":1566480300000,"y":13.8},{"x":1566480360000,"y":13.8},{"x":1566480420000,"y":13.8},{"x":1566480480000,"y":13.81},{"x":1566480540000,"y":13.8},{"x":1566480600000,"y":13.79},{"x":1566480660000,"y":13.79},{"x":1566480720000,"y":13.79},{"x":1566480780000,"y":13.8},{"x":1566480840000,"y":13.79},{"x":1566480900000,"y":13.8},{"x":1566480960000,"y":13.8},{"x":1566481020000,"y":13.8},{"x":1566481080000,"y":13.81},{"x":1566481140000,"y":13.79},{"x":1566481200000,"y":13.79},{"x":1566481260000,"y":13.79},{"x":1566481320000,"y":13.79},{"x":1566481380000,"y":13.8},{"x":1566481440000,"y":13.8},{"x":1566481500000,"y":13.8},{"x":1566481560000,"y":13.8},{"x":1566481620000,"y":13.8},{"x":1566481680000,"y":13.8},{"x":1566481740000,"y":13.81},{"x":1566481800000,"y":13.81},{"x":1566481860000,"y":13.8},{"x":1566481920000,"y":13.8},{"x":1566481980000,"y":13.8},{"x":1566482040000,"y":14.04},{"x":1566482100000,"y":13.85},{"x":1566482160000,"y":13.85},{"x":1566482220000,"y":13.85},{"x":1566482280000,"y":13.85},{"x":1566482340000,"y":13.84},{"x":1566482400000,"y":13.81},{"x":1566482460000,"y":13.81},{"x":1566482520000,"y":13.81},{"x":1566482580000,"y":13.8},{"x":1566482640000,"y":13.82},{"x":1566482700000,"y":13.8},{"x":1566482760000,"y":13.8},{"x":1566482820000,"y":13.8},{"x":1566482880000,"y":13.81},{"x":1566482940000,"y":13.82},{"x":1566483000000,"y":13.8},{"x":1566483060000,"y":13.8},{"x":1566483120000,"y":13.8},{"x":1566483180000,"y":13.8},{"x":1566483240000,"y":13.82},{"x":1566483300000,"y":13.8},{"x":1566483360000,"y":13.8},{"x":1566483420000,"y":13.8},{"x":1566483480000,"y":13.8},{"x":1566483540000,"y":13.81},{"x":1566483600000,"y":13.81},{"x":1566483660000,"y":13.8},{"x":1566483720000,"y":13.8},{"x":1566483780000,"y":13.8},{"x":1566483840000,"y":13.8},{"x":1566483900000,"y":13.81},{"x":1566483960000,"y":13.8},{"x":1566484020000,"y":13.8},{"x":1566484080000,"y":13.8},{"x":1566484140000,"y":13.8},{"x":1566484200000,"y":13.82},{"x":1566484260000,"y":13.81},{"x":1566484320000,"y":13.8},{"x":1566484380000,"y":13.8},{"x":1566484440000,"y":13.8},{"x":1566484500000,"y":13.81},{"x":1566484560000,"y":13.79},{"x":1566484620000,"y":13.79},{"x":1566484680000,"y":13.79},{"x":1566484740000,"y":13.8},{"x":1566484800000,"y":13.81},{"x":1566484860000,"y":13.8},{"x":1566484920000,"y":13.8},{"x":1566484980000,"y":13.8},{"x":1566485040000,"y":13.8},{"x":1566485100000,"y":13.81},{"x":1566485160000,"y":13.79},{"x":1566485220000,"y":13.79},{"x":1566485280000,"y":13.79},{"x":1566485340000,"y":13.79},{"x":1566485400000,"y":13.82},{"x":1566485460000,"y":13.8},{"x":1566485520000,"y":13.8},{"x":1566485580000,"y":13.8},{"x":1566485640000,"y":13.8},{"x":1566485700000,"y":13.81},{"x":1566485760000,"y":13.8},{"x":1566485820000,"y":13.79},{"x":1566485880000,"y":13.79},{"x":1566485940000,"y":13.79},{"x":1566486000000,"y":13.82},{"x":1566486060000,"y":13.81},{"x":1566486120000,"y":13.8},{"x":1566486180000,"y":13.8},{"x":1566486240000,"y":13.8},{"x":1566486300000,"y":13.73},{"x":1566486360000,"y":13.7},{"x":1566486420000,"y":13.69},{"x":1566486480000,"y":13.6},{"x":1566486540000,"y":13.45},{"x":1566486600000,"y":13.44},{"x":1566486660000,"y":13.45},{"x":1566486720000,"y":13.45},{"x":1566486780000,"y":13.45},{"x":1566486840000,"y":13.45},{"x":1566486900000,"y":13.44},{"x":1566486960000,"y":13.44},{"x":1566487020000,"y":13.43},{"x":1566487080000,"y":13.43},{"x":1566487140000,"y":13.43},{"x":1566487200000,"y":13.43},{"x":1566487260000,"y":13.43},{"x":1566487320000,"y":13.44},{"x":1566487380000,"y":13.44},{"x":1566487440000,"y":13.44},{"x":1566487500000,"y":13.44},{"x":1566487560000,"y":13.45},{"x":1566487620000,"y":13.45},{"x":1566487680000,"y":13.45},{"x":1566487740000,"y":13.45},{"x":1566487800000,"y":13.45},{"x":1566487860000,"y":13.45},{"x":1566487920000,"y":13.44},{"x":1566487980000,"y":13.43},{"x":1566488040000,"y":13.65},{"x":1566488100000,"y":13.5},{"x":1566488160000,"y":13.5},{"x":1566488220000,"y":13.52},{"x":1566488280000,"y":13.52},{"x":1566488340000,"y":13.48},{"x":1566488400000,"y":13.46},{"x":1566488460000,"y":13.46},{"x":1566488520000,"y":13.46},{"x":1566488580000,"y":13.44},{"x":1566488640000,"y":13.44},{"x":1566488700000,"y":13.46},{"x":1566488760000,"y":13.45},{"x":1566488820000,"y":13.47},{"x":1566488880000,"y":13.46},{"x":1566488940000,"y":13.46},{"x":1566489000000,"y":13.47},{"x":1566489060000,"y":13.46},{"x":1566489120000,"y":13.47},{"x":1566489180000,"y":13.46},{"x":1566489240000,"y":13.46},{"x":1566489300000,"y":13.46},{"x":1566489360000,"y":13.46},{"x":1566489420000,"y":13.47},{"x":1566489480000,"y":13.46},{"x":1566489540000,"y":13.46},{"x":1566489600000,"y":13.46},{"x":1566489660000,"y":13.46},{"x":1566489720000,"y":13.47},{"x":1566489780000,"y":13.46},{"x":1566489840000,"y":13.46},{"x":1566489900000,"y":13.47},{"x":1566489960000,"y":13.47},{"x":1566490020000,"y":13.47},{"x":1566490080000,"y":13.47},{"x":1566490140000,"y":13.45},{"x":1566490200000,"y":13.44},{"x":1566490260000,"y":13.44},{"x":1566490320000,"y":13.46},{"x":1566490380000,"y":13.45},{"x":1566490440000,"y":13.45},{"x":1566490500000,"y":13.46},{"x":1566490560000,"y":13.46},{"x":1566490620000,"y":13.46},{"x":1566490680000,"y":13.48},{"x":1566490740000,"y":13.47},{"x":1566490800000,"y":13.47},{"x":1566490860000,"y":13.46},{"x":1566490920000,"y":13.46},{"x":1566490980000,"y":13.48},{"x":1566491040000,"y":13.48},{"x":1566491100000,"y":13.48},{"x":1566491160000,"y":13.48},{"x":1566491220000,"y":13.46},{"x":1566491280000,"y":13.48},{"x":1566491340000,"y":13.48},{"x":1566491400000,"y":13.49},{"x":1566491460000,"y":13.49},{"x":1566491520000,"y":13.49},{"x":1566491580000,"y":13.5},{"x":1566491640000,"y":13.48},{"x":1566491700000,"y":13.49},{"x":1566491760000,"y":13.49},{"x":1566491820000,"y":13.49},{"x":1566491880000,"y":13.5},{"x":1566491940000,"y":13.49},{"x":1566492000000,"y":13.49},{"x":1566492060000,"y":13.49},{"x":1566492120000,"y":13.72},{"x":1566492180000,"y":12.22},{"x":1566492240000,"y":12.05},{"x":1566492300000,"y":12.04},{"x":1566492360000,"y":12.04},{"x":1566492420000,"y":12.04},{"x":1566492480000,"y":12.03},{"x":1566492540000,"y":11.99},{"x":1566492600000,"y":11.99},{"x":1566492660000,"y":11.99},{"x":1566492720000,"y":11.99},{"x":1566492780000,"y":12},{"x":1566492840000,"y":11.99},{"x":1566492900000,"y":11.99},{"x":1566492960000,"y":11.99},{"x":1566493020000,"y":11.99},{"x":1566493080000,"y":11.99},{"x":1566493140000,"y":12},{"x":1566493200000,"y":11.99},{"x":1566493260000,"y":13.65},{"x":1566493320000,"y":21.67},{"x":1566493380000,"y":13.23},{"x":1566493440000,"y":12.91},{"x":1566493500000,"y":12.12},{"x":1566493560000,"y":12.12},{"x":1566493620000,"y":20.69},{"x":1566493680000,"y":13.32},{"x":1566493740000,"y":18.87},{"x":1566493800000,"y":16.71},{"x":1566493860000,"y":12.81},{"x":1566493920000,"y":12.13},{"x":1566493980000,"y":12.13},{"x":1566494040000,"y":13.62},{"x":1566494100000,"y":18.8},{"x":1566494160000,"y":12.14},{"x":1566494220000,"y":12.16},{"x":1566494280000,"y":12.17},{"x":1566494340000,"y":13.44},{"x":1566494400000,"y":15.81},{"x":1566494460000,"y":15.48},{"x":1566494520000,"y":12.68},{"x":1566494580000,"y":12.53},{"x":1566494640000,"y":21.39},{"x":1566494700000,"y":19.14},{"x":1566494760000,"y":20.13},{"x":1566494820000,"y":12.63},{"x":1566494880000,"y":12.31},{"x":1566494940000,"y":12.32},{"x":1566495000000,"y":12.39},{"x":1566495060000,"y":12.37},{"x":1566495120000,"y":12.5},{"x":1566495180000,"y":12.31},{"x":1566495240000,"y":12.3},{"x":1566495300000,"y":12.32},{"x":1566495360000,"y":12.31},{"x":1566495420000,"y":12.31},{"x":1566495480000,"y":12.31},{"x":1566495540000,"y":12.31},{"x":1566495600000,"y":12.32},{"x":1566495660000,"y":12.31},{"x":1566495720000,"y":12.4},{"x":1566495780000,"y":14.1},{"x":1566495840000,"y":22.08},{"x":1566495900000,"y":21.85},{"x":1566495960000,"y":20.19},{"x":1566496020000,"y":16.83},{"x":1566496080000,"y":20.14},{"x":1566496140000,"y":17.46},{"x":1566496200000,"y":13.21},{"x":1566496260000,"y":18.25},{"x":1566496320000,"y":21.79},{"x":1566496380000,"y":15.15},{"x":1566496440000,"y":13.42},{"x":1566496500000,"y":13.47},{"x":1566496560000,"y":13.46},{"x":1566496620000,"y":13.46},{"x":1566496680000,"y":13.46},{"x":1566496740000,"y":13.46},{"x":1566496800000,"y":13.5},{"x":1566496860000,"y":13.48},{"x":1566496920000,"y":13.48},{"x":1566496980000,"y":13.46},{"x":1566497040000,"y":13.45},{"x":1566497100000,"y":13.47},{"x":1566497160000,"y":13.46},{"x":1566497220000,"y":13.46},{"x":1566497280000,"y":19.78},{"x":1566497340000,"y":18.16},{"x":1566497400000,"y":22.44},{"x":1566497460000,"y":18.96},{"x":1566497520000,"y":13.41},{"x":1566497580000,"y":19.91},{"x":1566497640000,"y":17.61},{"x":1566497700000,"y":13.44},{"x":1566497760000,"y":13.47},{"x":1566497820000,"y":20.59},{"x":1566497880000,"y":15.32},{"x":1566497940000,"y":13.38},{"x":1566498000000,"y":13.43},{"x":1566498060000,"y":13.45},{"x":1566498120000,"y":13.44},{"x":1566498180000,"y":13.44},{"x":1566498240000,"y":13.44},{"x":1566498300000,"y":13.45},{"x":1566498360000,"y":13.47},{"x":1566498420000,"y":13.46},{"x":1566498480000,"y":13.45},{"x":1566498540000,"y":13.44},{"x":1566498600000,"y":13.45},{"x":1566498660000,"y":13.46},{"x":1566498720000,"y":13.44},{"x":1566498780000,"y":13.44},{"x":1566498840000,"y":13.44},{"x":1566498900000,"y":13.45},{"x":1566498960000,"y":13.47},{"x":1566499020000,"y":13.47},{"x":1566499080000,"y":13.46},{"x":1566499140000,"y":13.44},{"x":1566499200000,"y":13.45},{"x":1566499260000,"y":16.15},{"x":1566499320000,"y":21.52},{"x":1566499380000,"y":19.15},{"x":1566499440000,"y":12.28},{"x":1566499500000,"y":12.33},{"x":1566499560000,"y":12.34},{"x":1566499620000,"y":12.33},{"x":1566499680000,"y":12.33},{"x":1566499740000,"y":12.33},{"x":1566499800000,"y":12.34},{"x":1566499860000,"y":12.34},{"x":1566499920000,"y":12.34},{"x":1566499980000,"y":12.33},{"x":1566500040000,"y":12.33},{"x":1566500100000,"y":12.34},{"x":1566500160000,"y":12.34},{"x":1566500220000,"y":12.32},{"x":1566500280000,"y":12.31},{"x":1566500340000,"y":12.31},{"x":1566500400000,"y":12.32},{"x":1566500460000,"y":12.32},{"x":1566500520000,"y":12.33},{"x":1566500580000,"y":12.32},{"x":1566500640000,"y":12.32},{"x":1566500700000,"y":12.34},{"x":1566500760000,"y":12.34},{"x":1566500820000,"y":12.35},{"x":1566500880000,"y":12.32},{"x":1566500940000,"y":12.35},{"x":1566501000000,"y":12.34},{"x":1566501060000,"y":12.34},{"x":1566501120000,"y":12.35},{"x":1566501180000,"y":20.57},{"x":1566501240000,"y":17.41},{"x":1566501300000,"y":13.51},{"x":1566501360000,"y":13.51},{"x":1566501420000,"y":13.52},{"x":1566501480000,"y":13.54},{"x":1566501540000,"y":13.06},{"x":1566501600000,"y":13.23},{"x":1566501660000,"y":12.54},{"x":1566501720000,"y":12.47},{"x":1566501780000,"y":16.91},{"x":1566501840000,"y":21.45},{"x":1566501900000,"y":21.74},{"x":1566501960000,"y":19.08},{"x":1566502020000,"y":19.64},{"x":1566502080000,"y":13.4},{"x":1566502140000,"y":13.4},{"x":1566502200000,"y":13.39},{"x":1566502260000,"y":13.39},{"x":1566502320000,"y":13.4},{"x":1566502380000,"y":12.35},{"x":1566502440000,"y":12.39},{"x":1566502500000,"y":16.1},{"x":1566502560000,"y":20.25},{"x":1566502620000,"y":14.97},{"x":1566502680000,"y":21.78},{"x":1566502740000,"y":16},{"x":1566502800000,"y":22.11},{"x":1566502860000,"y":13.87},{"x":1566502920000,"y":13.47},{"x":1566502980000,"y":13.49},{"x":1566503040000,"y":13.48},{"x":1566503100000,"y":13.47},{"x":1566503160000,"y":13.47},{"x":1566503220000,"y":13.47},{"x":1566503280000,"y":13.49},{"x":1566503340000,"y":13.49},{"x":1566503400000,"y":13.48},{"x":1566503460000,"y":13.46},{"x":1566503520000,"y":13.46},{"x":1566503580000,"y":13.47},{"x":1566503640000,"y":13.47},{"x":1566503700000,"y":13.47},{"x":1566503760000,"y":13.47},{"x":1566503820000,"y":13.31},{"x":1566503880000,"y":12.51},{"x":1566503940000,"y":12.44},{"x":1566504000000,"y":12.44},{"x":1566504060000,"y":12.44},{"x":1566504120000,"y":12.44},{"x":1566504180000,"y":12.4},{"x":1566504240000,"y":12.38},{"x":1566504300000,"y":12.35},{"x":1566504360000,"y":12.35},{"x":1566504420000,"y":12.34},{"x":1566504480000,"y":17.9},{"x":1566504540000,"y":20.59},{"x":1566504600000,"y":13.53},{"x":1566504660000,"y":13.53},{"x":1566504720000,"y":12.68},{"x":1566504780000,"y":12.4},{"x":1566504840000,"y":12.42},{"x":1566504900000,"y":12.4},{"x":1566504960000,"y":12.4},{"x":1566505020000,"y":12.4},{"x":1566505080000,"y":12.4},{"x":1566505140000,"y":12.41},{"x":1566505200000,"y":12.4},{"x":1566505260000,"y":12.4},{"x":1566505320000,"y":12.39},{"x":1566505380000,"y":12.4},{"x":1566505440000,"y":12.41},{"x":1566505500000,"y":12.41},{"x":1566505560000,"y":12.41},{"x":1566505620000,"y":12.41},{"x":1566505680000,"y":12.41},{"x":1566505740000,"y":12.41},{"x":1566505800000,"y":12.4},{"x":1566505860000,"y":12.4},{"x":1566505920000,"y":12.4},{"x":1566505980000,"y":12.4},{"x":1566506040000,"y":12.41},{"x":1566506100000,"y":12.41},{"x":1566506160000,"y":12.41},{"x":1566506220000,"y":12.41},{"x":1566506280000,"y":12.41},{"x":1566506340000,"y":12.43},{"x":1566506400000,"y":12.41},{"x":1566506460000,"y":12.41},{"x":1566506520000,"y":12.41},{"x":1566506580000,"y":12.41},{"x":1566506640000,"y":12.42},{"x":1566506700000,"y":12.4},{"x":1566506760000,"y":12.39},{"x":1566506820000,"y":12.39},{"x":1566506880000,"y":12.39},{"x":1566506940000,"y":12.39},{"x":1566507000000,"y":12.41},{"x":1566507060000,"y":12.4},{"x":1566507120000,"y":12.4},{"x":1566507180000,"y":12.4},{"x":1566507240000,"y":12.4},{"x":1566507300000,"y":12.42},{"x":1566507360000,"y":12.41},{"x":1566507420000,"y":12.41},{"x":1566507480000,"y":12.41},{"x":1566507540000,"y":12.41},{"x":1566507600000,"y":12.41},{"x":1566507660000,"y":12.4},{"x":1566507720000,"y":12.4},{"x":1566507780000,"y":12.4},{"x":1566507840000,"y":12.4},{"x":1566507900000,"y":12.42},{"x":1566507960000,"y":12.41},{"x":1566508020000,"y":12.41},{"x":1566508080000,"y":12.41},{"x":1566508140000,"y":12.41},{"x":1566508200000,"y":21.17},{"x":1566508260000,"y":17.62},{"x":1566508320000,"y":13.54},{"x":1566508380000,"y":13.54},{"x":1566508440000,"y":13.54},{"x":1566508500000,"y":13.57},{"x":1566508560000,"y":13.58},{"x":1566508620000,"y":13.58},{"x":1566508680000,"y":13.58},{"x":1566508740000,"y":13.58},{"x":1566508800000,"y":13.59},{"x":1566508860000,"y":13.58},{"x":1566508920000,"y":13.57},{"x":1566508980000,"y":13.57},{"x":1566509040000,"y":13.57},{"x":1566509100000,"y":13.55},{"x":1566509160000,"y":13.59},{"x":1566509220000,"y":13.59},{"x":1566509280000,"y":13.59},{"x":1566509340000,"y":13.59},{"x":1566509400000,"y":13.6},{"x":1566509460000,"y":13.63},{"x":1566509520000,"y":13.59},{"x":1566509580000,"y":13.59},{"x":1566509640000,"y":13.59},{"x":1566509700000,"y":13.61},{"x":1566509760000,"y":13.62},{"x":1566509820000,"y":13.61},{"x":1566509880000,"y":13.61},{"x":1566509940000,"y":13.61},{"x":1566510000000,"y":13.63},{"x":1566510060000,"y":13.63},{"x":1566510120000,"y":13.62},{"x":1566510180000,"y":13.6},{"x":1566510240000,"y":13.6},{"x":1566510300000,"y":13.6},{"x":1566510360000,"y":13.62},{"x":1566510420000,"y":13.61},{"x":1566510480000,"y":13.61},{"x":1566510540000,"y":13.62},{"x":1566510600000,"y":13.61},{"x":1566510660000,"y":13.62},{"x":1566510720000,"y":13.62},{"x":1566510780000,"y":13.62},{"x":1566510840000,"y":13.6},{"x":1566510900000,"y":13.61},{"x":1566510960000,"y":13.63},{"x":1566511020000,"y":13.61},{"x":1566511080000,"y":13.61},{"x":1566511140000,"y":13.61},{"x":1566511200000,"y":13.62},{"x":1566511260000,"y":13.62},{"x":1566511320000,"y":13.63},{"x":1566511380000,"y":13.62},{"x":1566511440000,"y":13.62},{"x":1566511500000,"y":13.61},{"x":1566511560000,"y":13.6},{"x":1566511620000,"y":13.61},{"x":1566511680000,"y":13.6},{"x":1566511740000,"y":13.61},{"x":1566511800000,"y":13.62},{"x":1566511860000,"y":13.62},{"x":1566511920000,"y":13.62},{"x":1566511980000,"y":13.6},{"x":1566512040000,"y":13.61},{"x":1566512100000,"y":13.62},{"x":1566512160000,"y":13.61},{"x":1566512220000,"y":13.61},{"x":1566512280000,"y":13.6},{"x":1566512340000,"y":13.58},{"x":1566512400000,"y":13.59},{"x":1566512460000,"y":13.59},{"x":1566512520000,"y":13.61},{"x":1566512580000,"y":13.59},{"x":1566512640000,"y":13.59},{"x":1566512700000,"y":13.6},{"x":1566512760000,"y":13.6},{"x":1566512820000,"y":13.62},{"x":1566512880000,"y":13.59},{"x":1566512940000,"y":13.59},{"x":1566513000000,"y":13.59},{"x":1566513060000,"y":13.59},{"x":1566513120000,"y":13.6},{"x":1566513180000,"y":13.6},{"x":1566513240000,"y":13.6},{"x":1566513300000,"y":13.58},{"x":1566513360000,"y":13.58},{"x":1566513420000,"y":13.59},{"x":1566513480000,"y":13.6},{"x":1566513540000,"y":13.59},{"x":1566513600000,"y":13.58},{"x":1566513660000,"y":13.58},{"x":1566513720000,"y":13.58},{"x":1566513780000,"y":13.61},{"x":1566513840000,"y":13.6},{"x":1566513900000,"y":13.6},{"x":1566513960000,"y":13.6},{"x":1566514020000,"y":13.6},{"x":1566514080000,"y":13.62},{"x":1566514140000,"y":13.62},{"x":1566514200000,"y":13.59},{"x":1566514260000,"y":13.59},{"x":1566514320000,"y":13.58},{"x":1566514380000,"y":13.52},{"x":1566514440000,"y":13.51},{"x":1566514500000,"y":13.51},{"x":1566514560000,"y":13.51},{"x":1566514620000,"y":13.51},{"x":1566514680000,"y":13.53},{"x":1566514740000,"y":13.53},{"x":1566514800000,"y":13.53},{"x":1566514860000,"y":13.53},{"x":1566514920000,"y":13.52},{"x":1566514980000,"y":13.51},{"x":1566515040000,"y":13.5},{"x":1566515100000,"y":13.52},{"x":1566515160000,"y":13.52},{"x":1566515220000,"y":13.52},{"x":1566515280000,"y":13.53},{"x":1566515340000,"y":13.52},{"x":1566515400000,"y":13.54},{"x":1566515460000,"y":13.55},{"x":1566515520000,"y":13.55},{"x":1566515580000,"y":14.98},{"x":1566515640000,"y":12.21},{"x":1566515700000,"y":12.2},{"x":1566515760000,"y":12.2},{"x":1566515820000,"y":12.2},{"x":1566515880000,"y":12.21},{"x":1566515940000,"y":12.21},{"x":1566516000000,"y":12.2},{"x":1566516060000,"y":12.2},{"x":1566516120000,"y":12.2},{"x":1566516180000,"y":12.2},{"x":1566516240000,"y":12.21},{"x":1566516300000,"y":12.19},{"x":1566516360000,"y":12.19},{"x":1566516420000,"y":12.19},{"x":1566516480000,"y":12.18},{"x":1566516540000,"y":12.2},{"x":1566516600000,"y":12.2},{"x":1566516660000,"y":12.2},{"x":1566516720000,"y":12.2},{"x":1566516780000,"y":12.2},{"x":1566516840000,"y":12.22},{"x":1566516900000,"y":12.21},{"x":1566516960000,"y":12.21},{"x":1566517020000,"y":12.21},{"x":1566517080000,"y":12.21},{"x":1566517140000,"y":12.22},{"x":1566517200000,"y":12.2},{"x":1566517260000,"y":12.2},{"x":1566517320000,"y":12.2},{"x":1566517380000,"y":12.2},{"x":1566517440000,"y":12.21},{"x":1566517500000,"y":12.17},{"x":1566517560000,"y":12.17},{"x":1566517620000,"y":12.17},{"x":1566517680000,"y":12.17},{"x":1566517740000,"y":12.18},{"x":1566517800000,"y":12.19},{"x":1566517860000,"y":12.19},{"x":1566517920000,"y":12.19},{"x":1566517980000,"y":12.19},{"x":1566518040000,"y":12.2},{"x":1566518100000,"y":12.21},{"x":1566518160000,"y":12.21},{"x":1566518220000,"y":12.21},{"x":1566518280000,"y":12.21},{"x":1566518340000,"y":12.21},{"x":1566518400000,"y":12.22},{"x":1566518460000,"y":12.21},{"x":1566518520000,"y":12.21},{"x":1566518580000,"y":12.21},{"x":1566518640000,"y":12.21},{"x":1566518700000,"y":12.22},{"x":1566518760000,"y":12.21},{"x":1566518820000,"y":12.21},{"x":1566518880000,"y":12.21},{"x":1566518940000,"y":12.21},{"x":1566519000000,"y":12.21},{"x":1566519060000,"y":12.2},{"x":1566519120000,"y":12.2},{"x":1566519180000,"y":12.2},{"x":1566519240000,"y":12.2},{"x":1566519300000,"y":12.22},{"x":1566519360000,"y":12.2},{"x":1566519420000,"y":12.2},{"x":1566519480000,"y":12.2},{"x":1566519540000,"y":12.19},{"x":1566519600000,"y":12.22},{"x":1566519660000,"y":12.2},{"x":1566519720000,"y":12.2},{"x":1566519780000,"y":12.2},{"x":1566519840000,"y":12.2},{"x":1566519900000,"y":12.21},{"x":1566519960000,"y":12.2},{"x":1566520020000,"y":12.2},{"x":1566520080000,"y":12.2},{"x":1566520140000,"y":12.19},{"x":1566520200000,"y":12.21},{"x":1566520260000,"y":12.21},{"x":1566520320000,"y":12.21},{"x":1566520380000,"y":12.21},{"x":1566520440000,"y":12.21},{"x":1566520500000,"y":12.21},{"x":1566520560000,"y":12.22},{"x":1566520620000,"y":12.21},{"x":1566520680000,"y":12.21},{"x":1566520740000,"y":12.22},{"x":1566520800000,"y":12.22},{"x":1566520860000,"y":12.22},{"x":1566520920000,"y":12.21},{"x":1566520980000,"y":12.21},{"x":1566521040000,"y":12.21},{"x":1566521100000,"y":12.21},{"x":1566521160000,"y":12.22},{"x":1566521220000,"y":12.21},{"x":1566521280000,"y":12.21},{"x":1566521340000,"y":12.21},{"x":1566521400000,"y":12.21},{"x":1566521460000,"y":12.2},{"x":1566521520000,"y":12.19},{"x":1566521580000,"y":12.19},{"x":1566521640000,"y":12.19},{"x":1566521700000,"y":12.2},{"x":1566521760000,"y":12.21},{"x":1566521820000,"y":12.19},{"x":1566521880000,"y":12.2},{"x":1566521940000,"y":12.19},{"x":1566522000000,"y":12.2},{"x":1566522060000,"y":12.21},{"x":1566522120000,"y":12.2},{"x":1566522180000,"y":12.2},{"x":1566522240000,"y":12.2},{"x":1566522300000,"y":12.19},{"x":1566522360000,"y":12.2},{"x":1566522420000,"y":12.19},{"x":1566522480000,"y":12.19},{"x":1566522540000,"y":12.21},{"x":1566522600000,"y":12.16},{"x":1566522660000,"y":12.16},{"x":1566522720000,"y":12.21},{"x":1566522780000,"y":12.2},{"x":1566522840000,"y":12.2},{"x":1566522900000,"y":12.2},{"x":1566522960000,"y":12.19},{"x":1566523020000,"y":12.2},{"x":1566523080000,"y":12.18},{"x":1566523140000,"y":12.18},{"x":1566523200000,"y":12.19},{"x":1566523260000,"y":12.2},{"x":1566523320000,"y":12.2},{"x":1566523380000,"y":12.19},{"x":1566523440000,"y":12.2},{"x":1566523500000,"y":12.2},{"x":1566523560000,"y":12.2},{"x":1566523620000,"y":12.2},{"x":1566523680000,"y":12.19},{"x":1566523740000,"y":12.19},{"x":1566523800000,"y":12.18},{"x":1566523860000,"y":12.18},{"x":1566523920000,"y":12.2},{"x":1566523980000,"y":12.21},{"x":1566524040000,"y":12.21},{"x":1566524100000,"y":12.17},{"x":1566524160000,"y":12.17},{"x":1566524220000,"y":12.19},{"x":1566524280000,"y":12.2},{"x":1566524340000,"y":12.2},{"x":1566524400000,"y":12.2},{"x":1566524460000,"y":12.2},{"x":1566524520000,"y":12.21},{"x":1566524580000,"y":12.21},{"x":1566524640000,"y":12.21},{"x":1566524700000,"y":12.2},{"x":1566524760000,"y":12.2},{"x":1566524820000,"y":12.2},{"x":1566524880000,"y":12.2},{"x":1566524940000,"y":12.18},{"x":1566525000000,"y":12.16},{"x":1566525060000,"y":12.16},{"x":1566525120000,"y":12.16},{"x":1566525180000,"y":12.2},{"x":1566525240000,"y":12.2},{"x":1566525300000,"y":12.2},{"x":1566525360000,"y":12.21},{"x":1566525420000,"y":12.21},{"x":1566525480000,"y":12.22},{"x":1566525540000,"y":12.21},{"x":1566525600000,"y":12.21},{"x":1566525660000,"y":12.21},{"x":1566525720000,"y":12.21},{"x":1566525780000,"y":12.58},{"x":1566525840000,"y":12.27},{"x":1566525900000,"y":12.26},{"x":1566525960000,"y":12.26},{"x":1566526020000,"y":12.26},{"x":1566526080000,"y":12.24},{"x":1566526140000,"y":12.2},{"x":1566526200000,"y":12.22},{"x":1566526260000,"y":12.21},{"x":1566526320000,"y":12.22},{"x":1566526380000,"y":12.22},{"x":1566526440000,"y":12.21},{"x":1566526500000,"y":12.21},{"x":1566526560000,"y":12.21},{"x":1566526620000,"y":12.21},{"x":1566526680000,"y":12.22},{"x":1566526740000,"y":12.21},{"x":1566526800000,"y":12.21},{"x":1566526860000,"y":12.2},{"x":1566526920000,"y":12.2},{"x":1566526980000,"y":12.2},{"x":1566527040000,"y":12.21},{"x":1566527100000,"y":12.21},{"x":1566527160000,"y":12.21},{"x":1566527220000,"y":12.21},{"x":1566527280000,"y":12.21},{"x":1566527340000,"y":12.22},{"x":1566527400000,"y":12.21},{"x":1566527460000,"y":12.21},{"x":1566527520000,"y":12.21},{"x":1566527580000,"y":12.21},{"x":1566527640000,"y":12.21},{"x":1566527700000,"y":12.19},{"x":1566527760000,"y":12.18},{"x":1566527820000,"y":12.18},{"x":1566527880000,"y":12.18},{"x":1566527940000,"y":12.21},{"x":1566528000000,"y":12.2},{"x":1566528060000,"y":12.2},{"x":1566528120000,"y":12.2},{"x":1566528180000,"y":12.2},{"x":1566528240000,"y":12.21},{"x":1566528300000,"y":12.21},{"x":1566528360000,"y":12.21},{"x":1566528420000,"y":12.21},{"x":1566528480000,"y":12.21},{"x":1566528540000,"y":12.22},{"x":1566528600000,"y":12.21},{"x":1566528660000,"y":12.21},{"x":1566528720000,"y":12.21},{"x":1566528780000,"y":12.21},{"x":1566528840000,"y":12.22},{"x":1566528900000,"y":12.18},{"x":1566528960000,"y":12.18},{"x":1566529020000,"y":12.18},{"x":1566529080000,"y":12.18},{"x":1566529140000,"y":12.2},{"x":1566529200000,"y":12.18},{"x":1566529260000,"y":12.18},{"x":1566529320000,"y":12.18},{"x":1566529380000,"y":12.18},{"x":1566529440000,"y":12.18},{"x":1566529500000,"y":12.23},{"x":1566529560000,"y":12.22},{"x":1566529620000,"y":12.22},{"x":1566529680000,"y":12.22},{"x":1566529740000,"y":12.21},{"x":1566529800000,"y":12.22},{"x":1566529860000,"y":12.21},{"x":1566529920000,"y":12.21},{"x":1566529980000,"y":12.21},{"x":1566530040000,"y":12.21},{"x":1566530100000,"y":12.23},{"x":1566530160000,"y":12.22},{"x":1566530220000,"y":12.22},{"x":1566530280000,"y":12.22},{"x":1566530340000,"y":12.22},{"x":1566530400000,"y":12.24},{"x":1566530460000,"y":12.22},{"x":1566530520000,"y":12.21},{"x":1566530580000,"y":12.21},{"x":1566530640000,"y":12.21},{"x":1566530700000,"y":12.23},{"x":1566530760000,"y":12.19},{"x":1566530820000,"y":12.19},{"x":1566530880000,"y":12.19},{"x":1566530940000,"y":12.19},{"x":1566531000000,"y":12.21},{"x":1566531060000,"y":12.2},{"x":1566531120000,"y":12.2},{"x":1566531180000,"y":12.2},{"x":1566531240000,"y":12.2},{"x":1566531300000,"y":12.2},{"x":1566531360000,"y":12.2},{"x":1566531420000,"y":12.19},{"x":1566531480000,"y":12.19},{"x":1566531540000,"y":12.18},{"x":1566531600000,"y":12.19},{"x":1566531660000,"y":12.2},{"x":1566531720000,"y":12.2},{"x":1566531780000,"y":12.2},{"x":1566531840000,"y":12.2},{"x":1566531900000,"y":12.19},{"x":1566531960000,"y":12.22},{"x":1566532020000,"y":12.21},{"x":1566532080000,"y":12.21},{"x":1566532140000,"y":12.2},{"x":1566532200000,"y":12.18},{"x":1566532260000,"y":12.21},{"x":1566532320000,"y":12.2},{"x":1566532380000,"y":12.2},{"x":1566532440000,"y":12.2},{"x":1566532500000,"y":12.2},{"x":1566532560000,"y":12.21},{"x":1566532620000,"y":12.19},{"x":1566532680000,"y":12.19},{"x":1566532740000,"y":12.19},{"x":1566532800000,"y":12.2},{"x":1566532860000,"y":12.21},{"x":1566532920000,"y":12.2},{"x":1566532980000,"y":12.2},{"x":1566533040000,"y":12.2},{"x":1566533100000,"y":12.21},{"x":1566533160000,"y":12.21},{"x":1566533220000,"y":12.2},{"x":1566533280000,"y":12.2},{"x":1566533340000,"y":12.2},{"x":1566533400000,"y":12.2},{"x":1566533460000,"y":12.22},{"x":1566533520000,"y":12.21},{"x":1566533580000,"y":12.21},{"x":1566533640000,"y":12.21},{"x":1566533700000,"y":12.2},{"x":1566533760000,"y":12.21},{"x":1566533820000,"y":12.21},{"x":1566533880000,"y":12.21},{"x":1566533940000,"y":12.21},{"x":1566534000000,"y":12.21},{"x":1566534060000,"y":12.2},{"x":1566534120000,"y":12.19},{"x":1566534180000,"y":12.18},{"x":1566534240000,"y":12.18},{"x":1566534300000,"y":12.21},{"x":1566534360000,"y":12.21},{"x":1566534420000,"y":12.22},{"x":1566534480000,"y":12.21},{"x":1566534540000,"y":12.21},{"x":1566534600000,"y":12.2},{"x":1566534660000,"y":12.2},{"x":1566534720000,"y":12.19},{"x":1566534780000,"y":12.17},{"x":1566534840000,"y":12.17},{"x":1566534900000,"y":12.2},{"x":1566534960000,"y":12.21},{"x":1566535020000,"y":12.2},{"x":1566535080000,"y":12.19},{"x":1566535140000,"y":12.2},{"x":1566535200000,"y":12.21},{"x":1566535260000,"y":12.21},{"x":1566535320000,"y":12.22},{"x":1566535380000,"y":12.21},{"x":1566535440000,"y":12.21},{"x":1566535500000,"y":12.21},{"x":1566535560000,"y":12.21},{"x":1566535620000,"y":12.21},{"x":1566535680000,"y":12.2},{"x":1566535740000,"y":12.2},{"x":1566535800000,"y":12.21},{"x":1566535860000,"y":12.21},{"x":1566535920000,"y":12.22},{"x":1566535980000,"y":12.2},{"x":1566536040000,"y":12.21},{"x":1566536100000,"y":12.21},{"x":1566536160000,"y":12.21},{"x":1566536220000,"y":12.21},{"x":1566536280000,"y":12.21},{"x":1566536340000,"y":12.21},{"x":1566536400000,"y":12.2},{"x":1566536460000,"y":12.2},{"x":1566536520000,"y":12.2},{"x":1566536580000,"y":12.22},{"x":1566536640000,"y":12.21},{"x":1566536700000,"y":12.19},{"x":1566536760000,"y":12.18},{"x":1566536820000,"y":12.18},{"x":1566536880000,"y":12.21},{"x":1566536940000,"y":12.21},{"x":1566537000000,"y":12.22},{"x":1566537060000,"y":12.22},{"x":1566537120000,"y":12.22},{"x":1566537180000,"y":12.22},{"x":1566537240000,"y":12.21},{"x":1566537300000,"y":12.21},{"x":1566537360000,"y":12.22},{"x":1566537420000,"y":12.21},{"x":1566537480000,"y":12.23},{"x":1566537540000,"y":12.22},{"x":1566537600000,"y":12.22},{"x":1566537660000,"y":12.22},{"x":1566537720000,"y":12.22},{"x":1566537780000,"y":12.23},{"x":1566537840000,"y":12.22},{"x":1566537900000,"y":12.22},{"x":1566537960000,"y":12.22},{"x":1566538020000,"y":12.22},{"x":1566538080000,"y":12.23},{"x":1566538140000,"y":12.22},{"x":1566538200000,"y":12.2},{"x":1566538260000,"y":12.2},{"x":1566538320000,"y":12.2},{"x":1566538380000,"y":12.21},{"x":1566538440000,"y":12.22},{"x":1566538500000,"y":12.19},{"x":1566538560000,"y":12.19},{"x":1566538620000,"y":12.19},{"x":1566538680000,"y":12.19},{"x":1566538740000,"y":12.23},{"x":1566538800000,"y":12.22},{"x":1566538860000,"y":12.22},{"x":1566538920000,"y":12.22},{"x":1566538980000,"y":12.22},{"x":1566539040000,"y":12.24},{"x":1566539100000,"y":12.23},{"x":1566539160000,"y":12.23},{"x":1566539220000,"y":12.23},{"x":1566539280000,"y":12.23},{"x":1566539340000,"y":12.24},{"x":1566539400000,"y":12.23},{"x":1566539460000,"y":12.23},{"x":1566539520000,"y":12.23},{"x":1566539580000,"y":12.23},{"x":1566539640000,"y":12.23},{"x":1566539700000,"y":12.21},{"x":1566539760000,"y":12.21},{"x":1566539820000,"y":12.21},{"x":1566539880000,"y":12.21},{"x":1566539940000,"y":12.23},{"x":1566540000000,"y":12.21},{"x":1566540060000,"y":12.21},{"x":1566540120000,"y":12.21},{"x":1566540180000,"y":12.21},{"x":1566540240000,"y":12.22},{"x":1566540300000,"y":12.18},{"x":1566540360000,"y":12.18},{"x":1566540420000,"y":12.18},{"x":1566540480000,"y":12.18},{"x":1566540540000,"y":12.21},{"x":1566540600000,"y":12.18},{"x":1566540660000,"y":12.18},{"x":1566540720000,"y":12.18},{"x":1566540780000,"y":12.18},{"x":1566540840000,"y":12.18},{"x":1566540900000,"y":12.2},{"x":1566540960000,"y":12.18},{"x":1566541020000,"y":12.19},{"x":1566541080000,"y":12.18},{"x":1566541140000,"y":12.18},{"x":1566541200000,"y":12.22},{"x":1566541260000,"y":12.2},{"x":1566541320000,"y":12.2},{"x":1566541380000,"y":12.2},{"x":1566541440000,"y":12.2},{"x":1566541500000,"y":12.21},{"x":1566541560000,"y":12.2},{"x":1566541620000,"y":12.2},{"x":1566541680000,"y":12.2},{"x":1566541740000,"y":12.2},{"x":1566541800000,"y":12.2},{"x":1566541860000,"y":12.2},{"x":1566541920000,"y":12.2},{"x":1566541980000,"y":12.19},{"x":1566542040000,"y":12.2},{"x":1566542100000,"y":12.22},{"x":1566542160000,"y":12.2},{"x":1566542220000,"y":12.2},{"x":1566542280000,"y":12.2},{"x":1566542340000,"y":12.21},{"x":1566542400000,"y":12.21},{"x":1566542460000,"y":12.21},{"x":1566542520000,"y":12.21},{"x":1566542580000,"y":12.21},{"x":1566542640000,"y":12.21},{"x":1566542700000,"y":12.23},{"x":1566542760000,"y":12.19},{"x":1566542820000,"y":12.19},{"x":1566542880000,"y":12.19},{"x":1566542940000,"y":12.19},{"x":1566543000000,"y":12.21},{"x":1566543060000,"y":12.23},{"x":1566543120000,"y":12.21},{"x":1566543180000,"y":12.21},{"x":1566543240000,"y":12.21},{"x":1566543300000,"y":12.19},{"x":1566543360000,"y":12.22},{"x":1566543420000,"y":12.21},{"x":1566543480000,"y":12.21},{"x":1566543540000,"y":12.21},{"x":1566543600000,"y":12.22},{"x":1566543660000,"y":12.22},{"x":1566543720000,"y":12.21},{"x":1566543780000,"y":12.21},{"x":1566543840000,"y":12.21},{"x":1566543900000,"y":12.21},{"x":1566543960000,"y":12.21},{"x":1566544020000,"y":12.19},{"x":1566544080000,"y":12.19},{"x":1566544140000,"y":12.18},{"x":1566544200000,"y":12.2},{"x":1566544260000,"y":12.21},{"x":1566544320000,"y":12.21},{"x":1566544380000,"y":12.21},{"x":1566544440000,"y":12.21},{"x":1566544500000,"y":12.22},{"x":1566544560000,"y":12.23},{"x":1566544620000,"y":12.21},{"x":1566544680000,"y":12.21},{"x":1566544740000,"y":12.21},{"x":1566544800000,"y":12.21},{"x":1566544860000,"y":12.22},{"x":1566544920000,"y":12.21},{"x":1566544980000,"y":12.21},{"x":1566545040000,"y":12.21},{"x":1566545100000,"y":12.19},{"x":1566545160000,"y":12.19},{"x":1566545220000,"y":12.22},{"x":1566545280000,"y":12.21},{"x":1566545340000,"y":12.21},{"x":1566545400000,"y":12.2},{"x":1566545460000,"y":12.19},{"x":1566545520000,"y":12.22},{"x":1566545580000,"y":12.21},{"x":1566545640000,"y":12.21},{"x":1566545700000,"y":12.22},{"x":1566545760000,"y":12.22},{"x":1566545820000,"y":12.23},{"x":1566545880000,"y":12.21},{"x":1566545940000,"y":12.22},{"x":1566546000000,"y":12.22},{"x":1566546060000,"y":12.22},{"x":1566546120000,"y":12.23},{"x":1566546180000,"y":12.22},{"x":1566546240000,"y":12.22},{"x":1566546300000,"y":12.21},{"x":1566546360000,"y":12.21},{"x":1566546420000,"y":12.22},{"x":1566546480000,"y":12.21},{"x":1566546540000,"y":12.21},{"x":1566546600000,"y":12.19},{"x":1566546660000,"y":12.19},{"x":1566546720000,"y":12.22},{"x":1566546780000,"y":12.23},{"x":1566546840000,"y":12.22},{"x":1566546900000,"y":12.19},{"x":1566546960000,"y":12.19},{"x":1566547020000,"y":12.2},{"x":1566547080000,"y":12.22},{"x":1566547140000,"y":12.22},{"x":1566547200000,"y":12.22},{"x":1566547260000,"y":12.22},{"x":1566547320000,"y":12.22},{"x":1566547380000,"y":12.23},{"x":1566547440000,"y":12.23},{"x":1566547500000,"y":12.22},{"x":1566547560000,"y":12.22},{"x":1566547620000,"y":12.22},{"x":1566547680000,"y":12.5},{"x":1566547740000,"y":12.28},{"x":1566547800000,"y":12.28},{"x":1566547860000,"y":12.28},{"x":1566547920000,"y":12.29},{"x":1566547980000,"y":12.25},{"x":1566548040000,"y":12.22},{"x":1566548100000,"y":12.21},{"x":1566548160000,"y":12.21},{"x":1566548220000,"y":12.21},{"x":1566548280000,"y":12.23},{"x":1566548340000,"y":12.22},{"x":1566548400000,"y":12.22},{"x":1566548460000,"y":12.22},{"x":1566548520000,"y":12.22},{"x":1566548580000,"y":12.23},{"x":1566548640000,"y":12.23},{"x":1566548700000,"y":12.23},{"x":1566548760000,"y":12.23},{"x":1566548820000,"y":12.22},{"x":1566548880000,"y":12.23},{"x":1566548940000,"y":12.22},{"x":1566549000000,"y":12.19},{"x":1566549060000,"y":12.2},{"x":1566549120000,"y":12.19},{"x":1566549180000,"y":12.21},{"x":1566549240000,"y":12.22},{"x":1566549300000,"y":12.18},{"x":1566549360000,"y":12.18},{"x":1566549420000,"y":12.18},{"x":1566549480000,"y":12.19},{"x":1566549540000,"y":12.2},{"x":1566549600000,"y":12.19},{"x":1566549660000,"y":12.19},{"x":1566549720000,"y":12.19},{"x":1566549780000,"y":12.19},{"x":1566549840000,"y":12.21},{"x":1566549900000,"y":12.18},{"x":1566549960000,"y":12.18},{"x":1566550020000,"y":12.18},{"x":1566550080000,"y":12.18},{"x":1566550140000,"y":12.21},{"x":1566550200000,"y":12.21},{"x":1566550260000,"y":12.21},{"x":1566550320000,"y":12.21},{"x":1566550380000,"y":12.21},{"x":1566550440000,"y":12.22},{"x":1566550500000,"y":12.18},{"x":1566550560000,"y":12.18},{"x":1566550620000,"y":12.18},{"x":1566550680000,"y":12.18},{"x":1566550740000,"y":12.2},{"x":1566550800000,"y":12.18},{"x":1566550860000,"y":12.18},{"x":1566550920000,"y":12.18},{"x":1566550980000,"y":12.18},{"x":1566551040000,"y":12.2},{"x":1566551100000,"y":12.21},{"x":1566551160000,"y":12.21},{"x":1566551220000,"y":12.21},{"x":1566551280000,"y":12.21},{"x":1566551340000,"y":12.22},{"x":1566551400000,"y":12.21},{"x":1566551460000,"y":12.2},{"x":1566551520000,"y":12.21},{"x":1566551580000,"y":12.21},{"x":1566551640000,"y":12.21},{"x":1566551700000,"y":12.22},{"x":1566551760000,"y":12.21},{"x":1566551820000,"y":12.21},{"x":1566551880000,"y":12.21},{"x":1566551940000,"y":12.21},{"x":1566552000000,"y":12.22},{"x":1566552060000,"y":12.21},{"x":1566552120000,"y":12.2},{"x":1566552180000,"y":12.2},{"x":1566552240000,"y":12.2},{"x":1566552300000,"y":12.22},{"x":1566552360000,"y":12.21},{"x":1566552420000,"y":12.21},{"x":1566552480000,"y":12.21},{"x":1566552540000,"y":12.21},{"x":1566552600000,"y":12.22},{"x":1566552660000,"y":12.21},{"x":1566552720000,"y":12.21},{"x":1566552780000,"y":12.21},{"x":1566552840000,"y":12.21},{"x":1566552900000,"y":12.23},{"x":1566552960000,"y":12.22},{"x":1566553020000,"y":12.21},{"x":1566553080000,"y":12.21},{"x":1566553140000,"y":12.21},{"x":1566553200000,"y":12.23},{"x":1566553260000,"y":12.21},{"x":1566553320000,"y":12.21},{"x":1566553380000,"y":12.21},{"x":1566553440000,"y":12.21},{"x":1566553500000,"y":12.22},{"x":1566553560000,"y":12.2},{"x":1566553620000,"y":12.2},{"x":1566553680000,"y":12.2},{"x":1566553740000,"y":12.2},{"x":1566553800000,"y":12.22},{"x":1566553860000,"y":12.22},{"x":1566553920000,"y":12.21},{"x":1566553980000,"y":12.21},{"x":1566554040000,"y":12.21},{"x":1566554100000,"y":12.17},{"x":1566554160000,"y":12.21},{"x":1566554220000,"y":12.21},{"x":1566554280000,"y":12.21},{"x":1566554340000,"y":12.21},{"x":1566554400000,"y":12.21},{"x":1566554460000,"y":12.23},{"x":1566554520000,"y":12.22},{"x":1566554580000,"y":12.22},{"x":1566554640000,"y":12.22},{"x":1566554700000,"y":12.22},{"x":1566554760000,"y":12.23},{"x":1566554820000,"y":12.22},{"x":1566554880000,"y":12.22},{"x":1566554940000,"y":12.22},{"x":1566555000000,"y":12.22},{"x":1566555060000,"y":12.23},{"x":1566555120000,"y":12.22},{"x":1566555180000,"y":12.22},{"x":1566555240000,"y":12.22},{"x":1566555300000,"y":12.22},{"x":1566555360000,"y":12.23},{"x":1566555420000,"y":12.22},{"x":1566555480000,"y":12.22},{"x":1566555540000,"y":12.23},{"x":1566555600000,"y":12.21},{"x":1566555660000,"y":12.22},{"x":1566555720000,"y":12.21},{"x":1566555780000,"y":12.21},{"x":1566555840000,"y":12.21},{"x":1566555900000,"y":12.2},{"x":1566555960000,"y":12.2},{"x":1566556020000,"y":12.24},{"x":1566556080000,"y":12.22},{"x":1566556140000,"y":12.22},{"x":1566556200000,"y":12.22},{"x":1566556260000,"y":12.22},{"x":1566556320000,"y":12.23},{"x":1566556380000,"y":12.22},{"x":1566556440000,"y":12.23},{"x":1566556500000,"y":12.23},{"x":1566556560000,"y":12.23},{"x":1566556620000,"y":12.23},{"x":1566556680000,"y":12.23},{"x":1566556740000,"y":12.23},{"x":1566556800000,"y":12.2},{"x":1566556860000,"y":12.2},{"x":1566556920000,"y":12.22},{"x":1566556980000,"y":12.21},{"x":1566557040000,"y":12.21},{"x":1566557100000,"y":12.23},{"x":1566557160000,"y":12.22},{"x":1566557220000,"y":12.24},{"x":1566557280000,"y":12.23},{"x":1566557340000,"y":12.23},{"x":1566557400000,"y":12.23},{"x":1566557460000,"y":12.23},{"x":1566557520000,"y":12.24},{"x":1566557580000,"y":12.22},{"x":1566557640000,"y":12.22},{"x":1566557700000,"y":12.22},{"x":1566557760000,"y":12.22},{"x":1566557820000,"y":12.23},{"x":1566557880000,"y":12.18},{"x":1566557940000,"y":12.19},{"x":1566558000000,"y":12.23},{"x":1566558060000,"y":12.23},{"x":1566558120000,"y":12.23},{"x":1566558180000,"y":12.21},{"x":1566558240000,"y":12.21},{"x":1566558300000,"y":12.21},{"x":1566558360000,"y":12.2},{"x":1566558420000,"y":12.18},{"x":1566558480000,"y":12.22},{"x":1566558540000,"y":12.2},{"x":1566558600000,"y":12.19},{"x":1566558660000,"y":12.19},{"x":1566558720000,"y":12.19},{"x":1566558780000,"y":12.22},{"x":1566558840000,"y":12.21},{"x":1566558900000,"y":12.19},{"x":1566558960000,"y":12.18},{"x":1566559020000,"y":12.19},{"x":1566559080000,"y":12.21},{"x":1566559140000,"y":12.2},{"x":1566559200000,"y":12.21},{"x":1566559260000,"y":12.21},{"x":1566559320000,"y":12.2},{"x":1566559380000,"y":12.22},{"x":1566559440000,"y":12.21},{"x":1566559500000,"y":12.28},{"x":1566559560000,"y":12.2},{"x":1566559620000,"y":12.19},{"x":1566559680000,"y":12.21},{"x":1566559740000,"y":12.7},{"x":1566559800000,"y":12.28},{"x":1566559860000,"y":12.28},{"x":1566559920000,"y":12.28},{"x":1566559980000,"y":12.29},{"x":1566560040000,"y":12.28},{"x":1566560100000,"y":12.22},{"x":1566560160000,"y":12.22},{"x":1566560220000,"y":12.22},{"x":1566560280000,"y":12.23},{"x":1566560340000,"y":12.22},{"x":1566560400000,"y":12.23},{"x":1566560460000,"y":12.23},{"x":1566560520000,"y":12.22},{"x":1566560580000,"y":12.22},{"x":1566560640000,"y":12.23},{"x":1566560700000,"y":12.23},{"x":1566560760000,"y":12.23},{"x":1566560820000,"y":12.23},{"x":1566560880000,"y":12.23},{"x":1566560940000,"y":12.24},{"x":1566561000000,"y":12.22},{"x":1566561060000,"y":12.21},{"x":1566561120000,"y":12.21},{"x":1566561180000,"y":12.21},{"x":1566561240000,"y":12.23},{"x":1566561300000,"y":12.22},{"x":1566561360000,"y":12.22},{"x":1566561420000,"y":12.22},{"x":1566561480000,"y":12.22},{"x":1566561540000,"y":12.24},{"x":1566561600000,"y":12.21},{"x":1566561660000,"y":12.2},{"x":1566561720000,"y":12.2},{"x":1566561780000,"y":12.2},{"x":1566561840000,"y":12.2},{"x":1566561900000,"y":12.21},{"x":1566561960000,"y":12.21},{"x":1566562020000,"y":12.21},{"x":1566562080000,"y":12.21},{"x":1566562140000,"y":12.22},{"x":1566562200000,"y":12.22},{"x":1566562260000,"y":12.22},{"x":1566562320000,"y":12.22},{"x":1566562380000,"y":12.21},{"x":1566562440000,"y":12.23},{"x":1566562500000,"y":12.21},{"x":1566562560000,"y":12.21},{"x":1566562620000,"y":12.21},{"x":1566562680000,"y":12.21},{"x":1566562740000,"y":12.22},{"x":1566562800000,"y":12.21},{"x":1566562860000,"y":12.21},{"x":1566562920000,"y":12.23},{"x":1566562980000,"y":12.23},{"x":1566563040000,"y":12.23},{"x":1566563100000,"y":12.21},{"x":1566563160000,"y":12.21},{"x":1566563220000,"y":12.21},{"x":1566563280000,"y":12.21},{"x":1566563340000,"y":12.21},{"x":1566563400000,"y":12.23},{"x":1566563460000,"y":12.21},{"x":1566563520000,"y":12.21},{"x":1566563580000,"y":12.21},{"x":1566563640000,"y":12.21},{"x":1566563700000,"y":12.24},{"x":1566563760000,"y":12.23},{"x":1566563820000,"y":12.22},{"x":1566563880000,"y":12.22},{"x":1566563940000,"y":12.22},{"x":1566564000000,"y":12.24},{"x":1566564060000,"y":12.23},{"x":1566564120000,"y":12.23},{"x":1566564180000,"y":12.23},{"x":1566564240000,"y":12.23},{"x":1566564300000,"y":12.24},{"x":1566564360000,"y":12.23},{"x":1566564420000,"y":12.23},{"x":1566564480000,"y":12.23},{"x":1566564540000,"y":12.23},{"x":1566564600000,"y":12.24},{"x":1566564660000,"y":12.23},{"x":1566564720000,"y":12.23},{"x":1566564780000,"y":12.23},{"x":1566564840000,"y":12.23},{"x":1566564900000,"y":12.24},{"x":1566564960000,"y":12.23},{"x":1566565020000,"y":12.23},{"x":1566565080000,"y":12.23},{"x":1566565140000,"y":12.23},{"x":1566565200000,"y":12.24},{"x":1566565260000,"y":12.24},{"x":1566565320000,"y":12.24},{"x":1566565380000,"y":12.24},{"x":1566565440000,"y":12.24},{"x":1566565500000,"y":12.24},{"x":1566565560000,"y":12.23},{"x":1566565620000,"y":12.23},{"x":1566565680000,"y":12.23},{"x":1566565740000,"y":12.23},{"x":1566565800000,"y":12.21},{"x":1566565860000,"y":12.25},{"x":1566565920000,"y":12.24},{"x":1566565980000,"y":12.24},{"x":1566566040000,"y":12.24},{"x":1566566100000,"y":12.21},{"x":1566566160000,"y":12.25},{"x":1566566220000,"y":12.24},{"x":1566566280000,"y":12.24},{"x":1566566340000,"y":12.24},{"x":1566566400000,"y":12.24},{"x":1566566460000,"y":12.25},{"x":1566566520000,"y":12.23},{"x":1566566580000,"y":12.23},{"x":1566566640000,"y":12.23},{"x":1566566700000,"y":12.23},{"x":1566566760000,"y":12.24},{"x":1566566820000,"y":12.23},{"x":1566566880000,"y":12.23},{"x":1566566940000,"y":12.23},{"x":1566567000000,"y":12.24},{"x":1566567060000,"y":12.25},{"x":1566567120000,"y":12.24},{"x":1566567180000,"y":12.24},{"x":1566567240000,"y":12.24},{"x":1566567300000,"y":12.23},{"x":1566567360000,"y":12.24},{"x":1566567420000,"y":12.23},{"x":1566567480000,"y":12.23},{"x":1566567540000,"y":12.24},{"x":1566567600000,"y":12.24},{"x":1566567660000,"y":12.24},{"x":1566567720000,"y":12.22},{"x":1566567780000,"y":12.21},{"x":1566567840000,"y":12.21},{"x":1566567900000,"y":12.2},{"x":1566567960000,"y":12.2},{"x":1566568020000,"y":12.21},{"x":1566568080000,"y":12.2},{"x":1566568140000,"y":12.2},{"x":1566568200000,"y":12.21},{"x":1566568260000,"y":12.21},{"x":1566568320000,"y":12.19},{"x":1566568380000,"y":12.17},{"x":1566568440000,"y":12.17},{"x":1566568500000,"y":12.19},{"x":1566568560000,"y":12.19},{"x":1566568620000,"y":12.2},{"x":1566568680000,"y":12.2},{"x":1566568740000,"y":12.19},{"x":1566568800000,"y":12.19},{"x":1566568860000,"y":12.19},{"x":1566568920000,"y":12.21},{"x":1566568980000,"y":12.2},{"x":1566569040000,"y":12.2},{"x":1566569100000,"y":12.21},{"x":1566569160000,"y":12.21},{"x":1566569220000,"y":12.2},{"x":1566569280000,"y":12.18},{"x":1566569340000,"y":12.2},{"x":1566569400000,"y":12.18},{"x":1566569460000,"y":12.18},{"x":1566569520000,"y":12.48},{"x":1566569580000,"y":12.26},{"x":1566569640000,"y":12.26},{"x":1566569700000,"y":12.26},{"x":1566569760000,"y":12.26},{"x":1566569820000,"y":12.27},{"x":1566569880000,"y":12.21},{"x":1566569940000,"y":12.21},{"x":1566570000000,"y":12.22},{"x":1566570060000,"y":12.22},{"x":1566570120000,"y":12.22},{"x":1566570180000,"y":12.21},{"x":1566570240000,"y":12.21},{"x":1566570300000,"y":12.22},{"x":1566570360000,"y":12.22},{"x":1566570420000,"y":12.22},{"x":1566570480000,"y":12.23},{"x":1566570540000,"y":12.21},{"x":1566570600000,"y":12.22},{"x":1566570660000,"y":12.22},{"x":1566570720000,"y":12.22},{"x":1566570780000,"y":12.22},{"x":1566570840000,"y":12.21},{"x":1566570900000,"y":12.21},{"x":1566570960000,"y":12.21},{"x":1566571020000,"y":12.21},{"x":1566571080000,"y":12.23},{"x":1566571140000,"y":12.22},{"x":1566571200000,"y":12.22},{"x":1566571260000,"y":12.22},{"x":1566571320000,"y":12.22},{"x":1566571380000,"y":12.22},{"x":1566571440000,"y":12.21},{"x":1566571500000,"y":12.22},{"x":1566571560000,"y":12.22},{"x":1566571620000,"y":12.22},{"x":1566571680000,"y":12.23},{"x":1566571740000,"y":12.22},{"x":1566571800000,"y":12.2},{"x":1566571860000,"y":12.2},{"x":1566571920000,"y":12.2},{"x":1566571980000,"y":12.22},{"x":1566572040000,"y":12.22},{"x":1566572100000,"y":12.2},{"x":1566572160000,"y":12.2},{"x":1566572220000,"y":12.2},{"x":1566572280000,"y":12.21},{"x":1566572340000,"y":12.21},{"x":1566572400000,"y":12.2},{"x":1566572460000,"y":12.2},{"x":1566572520000,"y":12.2},{"x":1566572580000,"y":12.2},{"x":1566572640000,"y":12.22},{"x":1566572700000,"y":12.22},{"x":1566572760000,"y":12.22},{"x":1566572820000,"y":12.22},{"x":1566572880000,"y":12.22},{"x":1566572940000,"y":12.23},{"x":1566573000000,"y":12.22},{"x":1566573060000,"y":12.22},{"x":1566573120000,"y":12.22},{"x":1566573180000,"y":12.22},{"x":1566573240000,"y":12.23},{"x":1566573300000,"y":12.22},{"x":1566573360000,"y":12.22},{"x":1566573420000,"y":12.22},{"x":1566573480000,"y":12.22},{"x":1566573540000,"y":12.23},{"x":1566573600000,"y":12.21},{"x":1566573660000,"y":12.21},{"x":1566573720000,"y":12.2},{"x":1566573780000,"y":12.2},{"x":1566573840000,"y":12.21},{"x":1566573900000,"y":12.22},{"x":1566573960000,"y":12.22},{"x":1566574020000,"y":12.22},{"x":1566574080000,"y":12.22},{"x":1566574140000,"y":12.23},{"x":1566574200000,"y":12.2},{"x":1566574260000,"y":12.2},{"x":1566574320000,"y":12.2},{"x":1566574380000,"y":12.2},{"x":1566574440000,"y":12.22},{"x":1566574500000,"y":12.22},{"x":1566574560000,"y":12.22},{"x":1566574620000,"y":12.22},{"x":1566574680000,"y":12.22},{"x":1566574740000,"y":12.22},{"x":1566574800000,"y":12.24},{"x":1566574860000,"y":12.22},{"x":1566574920000,"y":12.22},{"x":1566574980000,"y":12.22},{"x":1566575040000,"y":12.22},{"x":1566575100000,"y":12.23},{"x":1566575160000,"y":12.22},{"x":1566575220000,"y":12.22},{"x":1566575280000,"y":12.22},{"x":1566575340000,"y":12.22},{"x":1566575400000,"y":12.23},{"x":1566575460000,"y":12.22},{"x":1566575520000,"y":12.22},{"x":1566575580000,"y":12.22},{"x":1566575640000,"y":12.22},{"x":1566575700000,"y":12.23},{"x":1566575760000,"y":12.22},{"x":1566575820000,"y":12.22},{"x":1566575880000,"y":12.22},{"x":1566575940000,"y":12.22},{"x":1566576000000,"y":12.21},{"x":1566576060000,"y":12.22},{"x":1566576120000,"y":12.22},{"x":1566576180000,"y":12.22},{"x":1566576240000,"y":12.22},{"x":1566576300000,"y":12.22},{"x":1566576360000,"y":12.22},{"x":1566576420000,"y":12.22},{"x":1566576480000,"y":12.22},{"x":1566576540000,"y":12.22},{"x":1566576600000,"y":12.23},{"x":1566576660000,"y":12.22},{"x":1566576720000,"y":12.22},{"x":1566576780000,"y":12.22},{"x":1566576840000,"y":12.49},{"x":1566576900000,"y":12.27},{"x":1566576960000,"y":12.26},{"x":1566577020000,"y":12.26},{"x":1566577080000,"y":12.26},{"x":1566577140000,"y":12.22},{"x":1566577200000,"y":12.21},{"x":1566577260000,"y":12.22},{"x":1566577320000,"y":12.19},{"x":1566577380000,"y":12.19},{"x":1566577440000,"y":12.19},{"x":1566577500000,"y":12.19},{"x":1566577560000,"y":12.2},{"x":1566577620000,"y":12.19},{"x":1566577680000,"y":12.19},{"x":1566577740000,"y":12.19},{"x":1566577800000,"y":12.2},{"x":1566577860000,"y":12.21},{"x":1566577920000,"y":12.2},{"x":1566577980000,"y":12.2},{"x":1566578040000,"y":12.2},{"x":1566578100000,"y":12.2},{"x":1566578160000,"y":12.21},{"x":1566578220000,"y":12.21},{"x":1566578280000,"y":12.21},{"x":1566578340000,"y":12.21},{"x":1566578400000,"y":12.19},{"x":1566578460000,"y":12.21},{"x":1566578520000,"y":12.2},{"x":1566578580000,"y":12.2},{"x":1566578640000,"y":12.2},{"x":1566578700000,"y":12.21},{"x":1566578760000,"y":12.22},{"x":1566578820000,"y":12.2},{"x":1566578880000,"y":12.2},{"x":1566578940000,"y":12.21},{"x":1566579000000,"y":12.21},{"x":1566579060000,"y":12.21},{"x":1566579120000,"y":12.21},{"x":1566579180000,"y":12.21},{"x":1566579240000,"y":12.22},{"x":1566579300000,"y":12.19},{"x":1566579360000,"y":12.2},{"x":1566579420000,"y":12.2},{"x":1566579480000,"y":12.2},{"x":1566579540000,"y":12.2},{"x":1566579600000,"y":12.21},{"x":1566579660000,"y":12.21},{"x":1566579720000,"y":12.23},{"x":1566579780000,"y":12.21},{"x":1566579840000,"y":12.21},{"x":1566579900000,"y":12.22},{"x":1566579960000,"y":12.22},{"x":1566580020000,"y":12.23},{"x":1566580080000,"y":12.22},{"x":1566580140000,"y":12.21},{"x":1566580200000,"y":12.22},{"x":1566580260000,"y":12.22},{"x":1566580320000,"y":12.22},{"x":1566580380000,"y":12.21},{"x":1566580440000,"y":12.21},{"x":1566580500000,"y":12.18},{"x":1566580560000,"y":12.18},{"x":1566580620000,"y":12.21},{"x":1566580680000,"y":12.21},{"x":1566580740000,"y":12.21},{"x":1566580800000,"y":12.21},{"x":1566580860000,"y":12.21},{"x":1566580920000,"y":12.21},{"x":1566580980000,"y":12.21},{"x":1566581040000,"y":12.21},{"x":1566581100000,"y":12.22},{"x":1566581160000,"y":12.21},{"x":1566581220000,"y":12.22},{"x":1566581280000,"y":12.21},{"x":1566581340000,"y":12.21},{"x":1566581400000,"y":12.19},{"x":1566581460000,"y":12.19},{"x":1566581520000,"y":12.2},{"x":1566581580000,"y":12.22},{"x":1566581640000,"y":12.22},{"x":1566581700000,"y":12.22},{"x":1566581760000,"y":12.22},{"x":1566581820000,"y":12.22},{"x":1566581880000,"y":12.23},{"x":1566581940000,"y":12.21},{"x":1566582000000,"y":12.2},{"x":1566582060000,"y":12.2},{"x":1566582120000,"y":12.2},{"x":1566582180000,"y":12.22},{"x":1566582240000,"y":12.22},{"x":1566582300000,"y":12.22},{"x":1566582360000,"y":12.21},{"x":1566582420000,"y":12.21},{"x":1566582480000,"y":12.22},{"x":1566582540000,"y":12.21},{"x":1566582600000,"y":12.22},{"x":1566582660000,"y":12.22},{"x":1566582720000,"y":12.22},{"x":1566582780000,"y":12.23},{"x":1566582840000,"y":12.22},{"x":1566582900000,"y":12.19},{"x":1566582960000,"y":12.19},{"x":1566583020000,"y":12.19},{"x":1566583080000,"y":12.2},{"x":1566583140000,"y":12.18},{"x":1566583200000,"y":12.19},{"x":1566583260000,"y":12.18},{"x":1566583320000,"y":12.19},{"x":1566583380000,"y":12.2},{"x":1566583440000,"y":12.22},{"x":1566583500000,"y":12.23},{"x":1566583560000,"y":12.23},{"x":1566583620000,"y":12.23},{"x":1566583680000,"y":12.24},{"x":1566583740000,"y":12.21},{"x":1566583800000,"y":12.21},{"x":1566583860000,"y":12.21},{"x":1566583920000,"y":12.21},{"x":1566583980000,"y":12.21},{"x":1566584040000,"y":12.24},{"x":1566584100000,"y":12.23},{"x":1566584160000,"y":12.23},{"x":1566584220000,"y":12.23},{"x":1566584280000,"y":12.23},{"x":1566584340000,"y":12.23},{"x":1566584400000,"y":12.22},{"x":1566584460000,"y":12.22},{"x":1566584520000,"y":12.21},{"x":1566584580000,"y":12.21},{"x":1566584640000,"y":12.22},{"x":1566584700000,"y":12.23},{"x":1566584760000,"y":12.23},{"x":1566584820000,"y":12.23},{"x":1566584880000,"y":12.23},{"x":1566584940000,"y":12.24},{"x":1566585000000,"y":12.22},{"x":1566585060000,"y":12.21},{"x":1566585120000,"y":12.21},{"x":1566585180000,"y":12.21},{"x":1566585240000,"y":12.21},{"x":1566585300000,"y":12.17},{"x":1566585360000,"y":12.18},{"x":1566585420000,"y":12.18},{"x":1566585480000,"y":12.18},{"x":1566585540000,"y":12.23},{"x":1566585600000,"y":12.21},{"x":1566585660000,"y":12.21},{"x":1566585720000,"y":12.21},{"x":1566585780000,"y":12.21},{"x":1566585840000,"y":12.22},{"x":1566585900000,"y":12.23},{"x":1566585960000,"y":12.23},{"x":1566586020000,"y":12.23},{"x":1566586080000,"y":12.23},{"x":1566586140000,"y":12.24},{"x":1566586200000,"y":12.21},{"x":1566586260000,"y":12.2},{"x":1566586320000,"y":12.2},{"x":1566586380000,"y":12.2},{"x":1566586440000,"y":12.2},{"x":1566586500000,"y":12.22},{"x":1566586560000,"y":12.21},{"x":1566586620000,"y":12.21},{"x":1566586680000,"y":12.21},{"x":1566586740000,"y":12.21},{"x":1566586800000,"y":12.22},{"x":1566586860000,"y":12.21},{"x":1566586920000,"y":12.21},{"x":1566586980000,"y":12.24},{"x":1566587040000,"y":12.82},{"x":1566587100000,"y":21.28},{"x":1566587160000,"y":14.29},{"x":1566587220000,"y":13.55},{"x":1566587280000,"y":13.55},{"x":1566587340000,"y":13.61},{"x":1566587400000,"y":13.55},{"x":1566587460000,"y":13.54},{"x":1566587520000,"y":13.54},{"x":1566587580000,"y":15.33},{"x":1566587640000,"y":18.64},{"x":1566587700000,"y":22.29},{"x":1566587760000,"y":21.88},{"x":1566587820000,"y":13.61},{"x":1566587880000,"y":13.57},{"x":1566587940000,"y":13.58},{"x":1566588000000,"y":13.6},{"x":1566588060000,"y":13.62},{"x":1566588120000,"y":13.61},{"x":1566588180000,"y":13.59},{"x":1566588240000,"y":13.59},{"x":1566588300000,"y":13.61},{"x":1566588360000,"y":15.58},{"x":1566588420000,"y":21.63},{"x":1566588480000,"y":13.5},{"x":1566588540000,"y":13.5},{"x":1566588600000,"y":13.52},{"x":1566588660000,"y":13.48},{"x":1566588720000,"y":13.48},{"x":1566588780000,"y":13.48},{"x":1566588840000,"y":13.48},{"x":1566588900000,"y":13.53},{"x":1566588960000,"y":13.55},{"x":1566589020000,"y":13.54},{"x":1566589080000,"y":13.54},{"x":1566589140000,"y":13.54},{"x":1566589200000,"y":13.52},{"x":1566589260000,"y":13.56},{"x":1566589320000,"y":13.55},{"x":1566589380000,"y":13.53},{"x":1566589440000,"y":13.53},{"x":1566589500000,"y":21.29},{"x":1566589560000,"y":22.2},{"x":1566589620000,"y":14.81},{"x":1566589680000,"y":13.51},{"x":1566589740000,"y":13.51},{"x":1566589800000,"y":13.53},{"x":1566589860000,"y":13.55},{"x":1566589920000,"y":13.54},{"x":1566589980000,"y":13.54},{"x":1566590040000,"y":13.54},{"x":1566590100000,"y":13.55},{"x":1566590160000,"y":13.56},{"x":1566590220000,"y":13.55},{"x":1566590280000,"y":13.55},{"x":1566590340000,"y":13.55},{"x":1566590400000,"y":13.54},{"x":1566590460000,"y":13.55},{"x":1566590520000,"y":13.54},{"x":1566590580000,"y":13.52},{"x":1566590640000,"y":13.52},{"x":1566590700000,"y":13.52},{"x":1566590760000,"y":13.53},{"x":1566590820000,"y":13.56},{"x":1566590880000,"y":13.56},{"x":1566590940000,"y":13.56},{"x":1566591000000,"y":13.57},{"x":1566591060000,"y":13.57},{"x":1566591120000,"y":13.58},{"x":1566591180000,"y":13.59},{"x":1566591240000,"y":13.61},{"x":1566591300000,"y":13.64},{"x":1566591360000,"y":13.64},{"x":1566591420000,"y":13.92},{"x":1566591480000,"y":13.72},{"x":1566591540000,"y":13.71},{"x":1566591600000,"y":13.69},{"x":1566591660000,"y":13.69},{"x":1566591720000,"y":13.65},{"x":1566591780000,"y":13.61},{"x":1566591840000,"y":13.61},{"x":1566591900000,"y":13.62},{"x":1566591960000,"y":13.62},{"x":1566592020000,"y":13.65},{"x":1566592080000,"y":13.73},{"x":1566592140000,"y":18.86},{"x":1566592200000,"y":19.97},{"x":1566592260000,"y":13.71},{"x":1566592320000,"y":13.74},{"x":1566592380000,"y":13.75},{"x":1566592440000,"y":13.75},{"x":1566592500000,"y":13.75},{"x":1566592560000,"y":13.75},{"x":1566592620000,"y":13.76},{"x":1566592680000,"y":13.76},{"x":1566592740000,"y":13.73},{"x":1566592800000,"y":13.74},{"x":1566592860000,"y":13.74},{"x":1566592920000,"y":13.75},{"x":1566592980000,"y":13.77},{"x":1566593040000,"y":13.77},{"x":1566593100000,"y":13.77},{"x":1566593160000,"y":13.76},{"x":1566593220000,"y":13.76},{"x":1566593280000,"y":13.75},{"x":1566593340000,"y":13.75},{"x":1566593400000,"y":13.76},{"x":1566593460000,"y":13.76},{"x":1566593520000,"y":13.77},{"x":1566593580000,"y":13.73},{"x":1566593640000,"y":13.73},{"x":1566593700000,"y":13.74},{"x":1566593760000,"y":13.75},{"x":1566593820000,"y":13.75},{"x":1566593880000,"y":13.76},{"x":1566593940000,"y":13.75},{"x":1566594000000,"y":13.77},{"x":1566594060000,"y":13.77},{"x":1566594120000,"y":13.77},{"x":1566594180000,"y":13.79},{"x":1566594240000,"y":13.76},{"x":1566594300000,"y":13.75},{"x":1566594360000,"y":13.75},{"x":1566594420000,"y":13.75},{"x":1566594480000,"y":13.77},{"x":1566594540000,"y":13.76},{"x":1566594600000,"y":13.76},{"x":1566594660000,"y":13.76},{"x":1566594720000,"y":13.76},{"x":1566594780000,"y":13.77},{"x":1566594840000,"y":13.78},{"x":1566594900000,"y":13.79},{"x":1566594960000,"y":13.79},{"x":1566595020000,"y":13.78},{"x":1566595080000,"y":13.78},{"x":1566595140000,"y":13.76},{"x":1566595200000,"y":13.77},{"x":1566595260000,"y":13.77},{"x":1566595320000,"y":13.73},{"x":1566595380000,"y":13.72},{"x":1566595440000,"y":13.73},{"x":1566595500000,"y":13.73},{"x":1566595560000,"y":13.74},{"x":1566595620000,"y":13.73},{"x":1566595680000,"y":13.73},{"x":1566595740000,"y":13.75},{"x":1566595800000,"y":13.73},{"x":1566595860000,"y":13.73},{"x":1566595920000,"y":13.73},{"x":1566595980000,"y":13.73},{"x":1566596040000,"y":13.75},{"x":1566596100000,"y":13.75},{"x":1566596160000,"y":13.76},{"x":1566596220000,"y":13.76},{"x":1566596280000,"y":13.76},{"x":1566596340000,"y":13.77},{"x":1566596400000,"y":13.76},{"x":1566596460000,"y":13.74},{"x":1566596520000,"y":13.74},{"x":1566596580000,"y":13.74},{"x":1566596640000,"y":13.74},{"x":1566596700000,"y":13.74},{"x":1566596760000,"y":13.74},{"x":1566596820000,"y":13.74},{"x":1566596880000,"y":13.74},{"x":1566596940000,"y":13.75},{"x":1566597000000,"y":13.75},{"x":1566597060000,"y":13.75},{"x":1566597120000,"y":13.75},{"x":1566597180000,"y":13.75},{"x":1566597240000,"y":13.76},{"x":1566597300000,"y":13.74},{"x":1566597360000,"y":13.74},{"x":1566597420000,"y":13.74},{"x":1566597480000,"y":13.74},{"x":1566597540000,"y":13.75},{"x":1566597600000,"y":13.74},{"x":1566597660000,"y":13.74},{"x":1566597720000,"y":13.74},{"x":1566597780000,"y":13.74},{"x":1566597840000,"y":13.74},{"x":1566597900000,"y":13.75},{"x":1566597960000,"y":13.74},{"x":1566598020000,"y":13.74},{"x":1566598080000,"y":13.74},{"x":1566598140000,"y":13.76},{"x":1566598200000,"y":13.77},{"x":1566598260000,"y":13.76},{"x":1566598320000,"y":13.75},{"x":1566598380000,"y":13.75},{"x":1566598440000,"y":13.75},{"x":1566598500000,"y":13.78},{"x":1566598560000,"y":13.76},{"x":1566598620000,"y":13.76},{"x":1566598680000,"y":13.76},{"x":1566598740000,"y":13.74},{"x":1566598800000,"y":13.75},{"x":1566598860000,"y":13.74},{"x":1566598920000,"y":13.74},{"x":1566598980000,"y":13.74},{"x":1566599040000,"y":13.74},{"x":1566599100000,"y":13.76},{"x":1566599160000,"y":13.76},{"x":1566599220000,"y":13.76},{"x":1566599280000,"y":13.76},{"x":1566599340000,"y":13.76},{"x":1566599400000,"y":13.75},{"x":1566599460000,"y":13.75},{"x":1566599520000,"y":13.75},{"x":1566599580000,"y":13.75},{"x":1566599640000,"y":13.75},{"x":1566599700000,"y":13.77},{"x":1566599760000,"y":13.76},{"x":1566599820000,"y":13.76},{"x":1566599880000,"y":13.76},{"x":1566599940000,"y":13.76},{"x":1566600000000,"y":13.72},{"x":1566600060000,"y":13.75},{"x":1566600120000,"y":13.74},{"x":1566600180000,"y":13.74},{"x":1566600240000,"y":13.74},{"x":1566600300000,"y":13.76},{"x":1566600360000,"y":13.76},{"x":1566600420000,"y":13.06},{"x":1566600480000,"y":12.42},{"x":1566600540000,"y":12.4},{"x":1566600600000,"y":12.4},{"x":1566600660000,"y":12.41},{"x":1566600720000,"y":12.4},{"x":1566600780000,"y":12.4},{"x":1566600840000,"y":12.4},{"x":1566600900000,"y":12.39},{"x":1566600960000,"y":12.41},{"x":1566601020000,"y":12.4},{"x":1566601080000,"y":12.4},{"x":1566601140000,"y":12.4},{"x":1566601200000,"y":12.37},{"x":1566601260000,"y":12.39},{"x":1566601320000,"y":12.39},{"x":1566601380000,"y":12.39},{"x":1566601440000,"y":12.39},{"x":1566601500000,"y":12.39},{"x":1566601560000,"y":12.4},{"x":1566601620000,"y":12.4},{"x":1566601680000,"y":12.4},{"x":1566601740000,"y":12.4},{"x":1566601800000,"y":12.4},{"x":1566601860000,"y":12.41},{"x":1566601920000,"y":12.4},{"x":1566601980000,"y":12.4},{"x":1566602040000,"y":12.4},{"x":1566602100000,"y":12.39},{"x":1566602160000,"y":12.4},{"x":1566602220000,"y":12.4},{"x":1566602280000,"y":12.4},{"x":1566602340000,"y":12.4},{"x":1566602400000,"y":12.4},{"x":1566602460000,"y":12.4},{"x":1566602520000,"y":12.41},{"x":1566602580000,"y":12.39},{"x":1566602640000,"y":12.39},{"x":1566602700000,"y":12.38},{"x":1566602760000,"y":12.38},{"x":1566602820000,"y":12.4},{"x":1566602880000,"y":12.39},{"x":1566602940000,"y":12.39},{"x":1566603000000,"y":12.4},{"x":1566603060000,"y":12.4},{"x":1566603120000,"y":12.41},{"x":1566603180000,"y":12.4},{"x":1566603240000,"y":12.4},{"x":1566603300000,"y":12.4},{"x":1566603360000,"y":12.4},{"x":1566603420000,"y":12.41},{"x":1566603480000,"y":12.4},{"x":1566603540000,"y":12.4},{"x":1566603600000,"y":12.41},{"x":1566603660000,"y":12.41},{"x":1566603720000,"y":12.41},{"x":1566603780000,"y":12.4},{"x":1566603840000,"y":12.4},{"x":1566603900000,"y":12.4},{"x":1566603960000,"y":12.4},{"x":1566604020000,"y":12.41},{"x":1566604080000,"y":12.4},{"x":1566604140000,"y":12.4},{"x":1566604200000,"y":12.4},{"x":1566604260000,"y":12.4},{"x":1566604320000,"y":12.42},{"x":1566604380000,"y":12.4},{"x":1566604440000,"y":12.4},{"x":1566604500000,"y":12.41},{"x":1566604560000,"y":12.41},{"x":1566604620000,"y":12.4},{"x":1566604680000,"y":12.39},{"x":1566604740000,"y":12.38},{"x":1566604800000,"y":12.37},{"x":1566604860000,"y":12.37},{"x":1566604920000,"y":12.37},{"x":1566604980000,"y":12.38},{"x":1566605040000,"y":12.38},{"x":1566605100000,"y":12.38},{"x":1566605160000,"y":12.38},{"x":1566605220000,"y":12.38},{"x":1566605280000,"y":12.4},{"x":1566605340000,"y":12.39},{"x":1566605400000,"y":12.38},{"x":1566605460000,"y":12.38},{"x":1566605520000,"y":12.38},{"x":1566605580000,"y":12.4},{"x":1566605640000,"y":12.39},{"x":1566605700000,"y":12.39},{"x":1566605760000,"y":12.39},{"x":1566605820000,"y":12.38},{"x":1566605880000,"y":12.39},{"x":1566605940000,"y":12.38},{"x":1566606000000,"y":12.39},{"x":1566606060000,"y":12.39},{"x":1566606120000,"y":12.38},{"x":1566606180000,"y":12.39},{"x":1566606240000,"y":12.38},{"x":1566606300000,"y":12.39},{"x":1566606360000,"y":12.38},{"x":1566606420000,"y":12.38},{"x":1566606480000,"y":12.39},{"x":1566606540000,"y":12.39},{"x":1566606600000,"y":12.39},{"x":1566606660000,"y":12.39},{"x":1566606720000,"y":12.39},{"x":1566606780000,"y":12.4},{"x":1566606840000,"y":12.39},{"x":1566606900000,"y":12.4},{"x":1566606960000,"y":12.4},{"x":1566607020000,"y":12.4},{"x":1566607080000,"y":12.4},{"x":1566607140000,"y":12.4},{"x":1566607200000,"y":12.39},{"x":1566607260000,"y":12.39},{"x":1566607320000,"y":12.39},{"x":1566607380000,"y":12.39},{"x":1566607440000,"y":12.4},{"x":1566607500000,"y":12.39},{"x":1566607560000,"y":12.39},{"x":1566607620000,"y":12.39},{"x":1566607680000,"y":12.39},{"x":1566607740000,"y":12.4},{"x":1566607800000,"y":12.4},{"x":1566607860000,"y":12.4},{"x":1566607920000,"y":12.39},{"x":1566607980000,"y":12.39},{"x":1566608040000,"y":12.4},{"x":1566608100000,"y":12.4},{"x":1566608160000,"y":12.4},{"x":1566608220000,"y":12.4},{"x":1566608280000,"y":12.4},{"x":1566608340000,"y":12.41},{"x":1566608400000,"y":12.4},{"x":1566608460000,"y":12.4},{"x":1566608520000,"y":12.4},{"x":1566608580000,"y":12.39},{"x":1566608640000,"y":12.4},{"x":1566608700000,"y":12.39},{"x":1566608760000,"y":12.39},{"x":1566608820000,"y":12.39},{"x":1566608880000,"y":12.39},{"x":1566608940000,"y":12.4},{"x":1566609000000,"y":12.39},{"x":1566609060000,"y":12.39},{"x":1566609120000,"y":12.39},{"x":1566609180000,"y":12.39},{"x":1566609240000,"y":12.4},{"x":1566609300000,"y":12.4},{"x":1566609360000,"y":12.4},{"x":1566609420000,"y":12.39},{"x":1566609480000,"y":12.39},{"x":1566609540000,"y":12.4},{"x":1566609600000,"y":12.4},{"x":1566609660000,"y":12.39},{"x":1566609720000,"y":12.38},{"x":1566609780000,"y":12.38},{"x":1566609840000,"y":12.38},{"x":1566609900000,"y":12.4},{"x":1566609960000,"y":12.39},{"x":1566610020000,"y":12.39},{"x":1566610080000,"y":12.39},{"x":1566610140000,"y":12.39},{"x":1566610200000,"y":12.4},{"x":1566610260000,"y":12.4},{"x":1566610320000,"y":12.4},{"x":1566610380000,"y":12.4},{"x":1566610440000,"y":12.4},{"x":1566610500000,"y":12.42},{"x":1566610560000,"y":12.4},{"x":1566610620000,"y":12.4},{"x":1566610680000,"y":12.4},{"x":1566610740000,"y":12.39},{"x":1566610800000,"y":12.41},{"x":1566610860000,"y":12.4},{"x":1566610920000,"y":12.4},{"x":1566610980000,"y":12.4},{"x":1566611040000,"y":12.4},{"x":1566611100000,"y":12.4},{"x":1566611160000,"y":12.4},{"x":1566611220000,"y":12.39},{"x":1566611280000,"y":12.39},{"x":1566611340000,"y":12.39},{"x":1566611400000,"y":12.4},{"x":1566611460000,"y":12.4},{"x":1566611520000,"y":12.4},{"x":1566611580000,"y":12.4},{"x":1566611640000,"y":12.4},{"x":1566611700000,"y":12.37},{"x":1566611760000,"y":12.41},{"x":1566611820000,"y":12.4},{"x":1566611880000,"y":12.4},{"x":1566611940000,"y":12.4},{"x":1566612000000,"y":12.41},{"x":1566612060000,"y":12.42},{"x":1566612120000,"y":12.4},{"x":1566612180000,"y":12.4},{"x":1566612240000,"y":12.4},{"x":1566612300000,"y":12.4},{"x":1566612360000,"y":12.41},{"x":1566612420000,"y":12.4},{"x":1566612480000,"y":12.4},{"x":1566612540000,"y":12.39},{"x":1566612600000,"y":12.4},{"x":1566612660000,"y":12.41},{"x":1566612720000,"y":12.4},{"x":1566612780000,"y":12.4},{"x":1566612840000,"y":12.4},{"x":1566612900000,"y":12.4},{"x":1566612960000,"y":12.41},{"x":1566613020000,"y":12.4},{"x":1566613080000,"y":12.4},{"x":1566613140000,"y":12.4},{"x":1566613200000,"y":12.4},{"x":1566613260000,"y":12.64},{"x":1566613320000,"y":12.46},{"x":1566613380000,"y":12.45},{"x":1566613440000,"y":12.45},{"x":1566613500000,"y":12.46},{"x":1566613560000,"y":12.46},{"x":1566613620000,"y":12.4},{"x":1566613680000,"y":12.4},{"x":1566613740000,"y":12.4},{"x":1566613800000,"y":12.41},{"x":1566613860000,"y":12.4},{"x":1566613920000,"y":12.39},{"x":1566613980000,"y":12.38},{"x":1566614040000,"y":12.38},{"x":1566614100000,"y":12.37},{"x":1566614160000,"y":12.37},{"x":1566614220000,"y":12.39},{"x":1566614280000,"y":12.38},{"x":1566614340000,"y":12.37},{"x":1566614400000,"y":12.39},{"x":1566614460000,"y":12.39},{"x":1566614520000,"y":12.4},{"x":1566614580000,"y":12.38},{"x":1566614640000,"y":12.38},{"x":1566614700000,"y":12.38},{"x":1566614760000,"y":12.38},{"x":1566614820000,"y":12.38},{"x":1566614880000,"y":12.36},{"x":1566614940000,"y":12.36},{"x":1566615000000,"y":12.38},{"x":1566615060000,"y":12.38},{"x":1566615120000,"y":12.4},{"x":1566615180000,"y":12.38},{"x":1566615240000,"y":12.38},{"x":1566615300000,"y":12.39},{"x":1566615360000,"y":12.39},{"x":1566615420000,"y":12.39},{"x":1566615480000,"y":12.38},{"x":1566615540000,"y":12.38},{"x":1566615600000,"y":12.39},{"x":1566615660000,"y":12.39},{"x":1566615720000,"y":12.4},{"x":1566615780000,"y":12.38},{"x":1566615840000,"y":12.38},{"x":1566615900000,"y":12.39},{"x":1566615960000,"y":12.39},{"x":1566616020000,"y":12.4},{"x":1566616080000,"y":12.39},{"x":1566616140000,"y":12.38},{"x":1566616200000,"y":12.38},{"x":1566616260000,"y":12.38},{"x":1566616320000,"y":12.38},{"x":1566616380000,"y":12.39},{"x":1566616440000,"y":12.38},{"x":1566616500000,"y":12.38},{"x":1566616560000,"y":12.38},{"x":1566616620000,"y":12.38},{"x":1566616680000,"y":12.39},{"x":1566616740000,"y":12.38},{"x":1566616800000,"y":12.38},{"x":1566616860000,"y":12.38},{"x":1566616920000,"y":12.38},{"x":1566616980000,"y":12.39},{"x":1566617040000,"y":12.38},{"x":1566617100000,"y":12.4},{"x":1566617160000,"y":12.39},{"x":1566617220000,"y":12.39},{"x":1566617280000,"y":12.39},{"x":1566617340000,"y":12.37},{"x":1566617400000,"y":12.37},{"x":1566617460000,"y":12.37},{"x":1566617520000,"y":12.37},{"x":1566617580000,"y":12.38},{"x":1566617640000,"y":12.37},{"x":1566617700000,"y":12.37},{"x":1566617760000,"y":12.37},{"x":1566617820000,"y":12.36},{"x":1566617880000,"y":12.38},{"x":1566617940000,"y":12.39},{"x":1566618000000,"y":12.39},{"x":1566618060000,"y":12.39},{"x":1566618120000,"y":12.39},{"x":1566618180000,"y":12.41},{"x":1566618240000,"y":12.37},{"x":1566618300000,"y":12.37},{"x":1566618360000,"y":12.37},{"x":1566618420000,"y":12.37},{"x":1566618480000,"y":12.37},{"x":1566618540000,"y":12.41},{"x":1566618600000,"y":12.39},{"x":1566618660000,"y":12.39},{"x":1566618720000,"y":12.39},{"x":1566618780000,"y":12.39},{"x":1566618840000,"y":12.39},{"x":1566618900000,"y":12.38},{"x":1566618960000,"y":12.38},{"x":1566619020000,"y":12.38},{"x":1566619080000,"y":12.38},{"x":1566619140000,"y":12.37},{"x":1566619200000,"y":12.39},{"x":1566619260000,"y":12.39},{"x":1566619320000,"y":12.39},{"x":1566619380000,"y":12.39},{"x":1566619440000,"y":12.38},{"x":1566619500000,"y":12.37},{"x":1566619560000,"y":12.36},{"x":1566619620000,"y":12.36},{"x":1566619680000,"y":12.36},{"x":1566619740000,"y":12.4},{"x":1566619800000,"y":12.37},{"x":1566619860000,"y":12.37},{"x":1566619920000,"y":12.37},{"x":1566619980000,"y":12.37},{"x":1566620040000,"y":12.38},{"x":1566620100000,"y":12.4},{"x":1566620160000,"y":12.4},{"x":1566620220000,"y":12.4},{"x":1566620280000,"y":12.4},{"x":1566620340000,"y":12.41},{"x":1566620400000,"y":12.37},{"x":1566620460000,"y":12.37},{"x":1566620520000,"y":12.38},{"x":1566620580000,"y":12.39},{"x":1566620640000,"y":12.39},{"x":1566620700000,"y":12.4},{"x":1566620760000,"y":12.4},{"x":1566620820000,"y":12.4},{"x":1566620880000,"y":12.4},{"x":1566620940000,"y":12.39},{"x":1566621000000,"y":12.4},{"x":1566621060000,"y":12.39},{"x":1566621120000,"y":12.39},{"x":1566621180000,"y":12.39},{"x":1566621240000,"y":12.39},{"x":1566621300000,"y":12.41},{"x":1566621360000,"y":12.4},{"x":1566621420000,"y":12.4},{"x":1566621480000,"y":12.4},{"x":1566621540000,"y":12.4},{"x":1566621600000,"y":12.41},{"x":1566621660000,"y":12.4},{"x":1566621720000,"y":12.4},{"x":1566621780000,"y":12.4},{"x":1566621840000,"y":12.4},{"x":1566621900000,"y":12.39},{"x":1566621960000,"y":12.38},{"x":1566622020000,"y":12.38},{"x":1566622080000,"y":12.38},{"x":1566622140000,"y":12.38},{"x":1566622200000,"y":12.41},{"x":1566622260000,"y":12.4},{"x":1566622320000,"y":12.4},{"x":1566622380000,"y":12.4},{"x":1566622440000,"y":12.39},{"x":1566622500000,"y":12.41},{"x":1566622560000,"y":12.38},{"x":1566622620000,"y":12.38},{"x":1566622680000,"y":12.38},{"x":1566622740000,"y":12.37},{"x":1566622800000,"y":12.39},{"x":1566622860000,"y":12.4},{"x":1566622920000,"y":12.4},{"x":1566622980000,"y":12.4},{"x":1566623040000,"y":12.4},{"x":1566623100000,"y":12.4},{"x":1566623160000,"y":12.38},{"x":1566623220000,"y":12.36},{"x":1566623280000,"y":12.36},{"x":1566623340000,"y":12.37},{"x":1566623400000,"y":12.37},{"x":1566623460000,"y":12.39},{"x":1566623520000,"y":12.38},{"x":1566623580000,"y":12.38},{"x":1566623640000,"y":12.38},{"x":1566623700000,"y":12.39},{"x":1566623760000,"y":12.38},{"x":1566623820000,"y":12.36},{"x":1566623880000,"y":12.36},{"x":1566623940000,"y":12.36},{"x":1566624000000,"y":12.37},{"x":1566624060000,"y":12.38},{"x":1566624120000,"y":12.38},{"x":1566624180000,"y":12.37},{"x":1566624240000,"y":12.37},{"x":1566624300000,"y":12.38},{"x":1566624360000,"y":12.39},{"x":1566624420000,"y":12.39},{"x":1566624480000,"y":12.39},{"x":1566624540000,"y":12.39},{"x":1566624600000,"y":12.38},{"x":1566624660000,"y":12.39},{"x":1566624720000,"y":12.38},{"x":1566624780000,"y":12.38},{"x":1566624840000,"y":12.38},{"x":1566624900000,"y":12.37},{"x":1566624960000,"y":12.37},{"x":1566625020000,"y":12.37},{"x":1566625080000,"y":12.36},{"x":1566625140000,"y":12.38},{"x":1566625200000,"y":12.39},{"x":1566625260000,"y":12.39},{"x":1566625320000,"y":12.39},{"x":1566625380000,"y":12.38},{"x":1566625440000,"y":12.38},{"x":1566625500000,"y":12.38},{"x":1566625560000,"y":12.38},{"x":1566625620000,"y":12.39},{"x":1566625680000,"y":12.38},{"x":1566625740000,"y":12.38},{"x":1566625800000,"y":12.38},{"x":1566625860000,"y":12.38},{"x":1566625920000,"y":12.38},{"x":1566625980000,"y":12.37},{"x":1566626040000,"y":12.37},{"x":1566626100000,"y":12.37},{"x":1566626160000,"y":12.37},{"x":1566626220000,"y":12.39},{"x":1566626280000,"y":12.39},{"x":1566626340000,"y":12.39},{"x":1566626400000,"y":12.38},{"x":1566626460000,"y":12.38},{"x":1566626520000,"y":12.38},{"x":1566626580000,"y":12.35},{"x":1566626640000,"y":12.35},{"x":1566626700000,"y":12.38},{"x":1566626760000,"y":12.38},{"x":1566626820000,"y":12.39},{"x":1566626880000,"y":12.38},{"x":1566626940000,"y":12.39},{"x":1566627000000,"y":12.37},{"x":1566627060000,"y":12.36},{"x":1566627120000,"y":12.39},{"x":1566627180000,"y":12.39},{"x":1566627240000,"y":12.39},{"x":1566627300000,"y":12.38},{"x":1566627360000,"y":12.38},{"x":1566627420000,"y":12.38},{"x":1566627480000,"y":12.39},{"x":1566627540000,"y":12.38},{"x":1566627600000,"y":12.38},{"x":1566627660000,"y":12.38},{"x":1566627720000,"y":12.38},{"x":1566627780000,"y":12.4},{"x":1566627840000,"y":12.39},{"x":1566627900000,"y":12.37},{"x":1566627960000,"y":12.37},{"x":1566628020000,"y":12.36},{"x":1566628080000,"y":12.39},{"x":1566628140000,"y":12.39},{"x":1566628200000,"y":12.38},{"x":1566628260000,"y":12.38},{"x":1566628320000,"y":12.38},{"x":1566628380000,"y":12.38},{"x":1566628440000,"y":12.37},{"x":1566628500000,"y":12.38},{"x":1566628560000,"y":12.38},{"x":1566628620000,"y":12.38},{"x":1566628680000,"y":12.39},{"x":1566628740000,"y":12.38},{"x":1566628800000,"y":12.37},{"x":1566628860000,"y":12.37},{"x":1566628920000,"y":12.37},{"x":1566628980000,"y":12.39},{"x":1566629040000,"y":12.39},{"x":1566629100000,"y":12.38},{"x":1566629160000,"y":12.38},{"x":1566629220000,"y":12.38},{"x":1566629280000,"y":12.39},{"x":1566629340000,"y":12.39},{"x":1566629400000,"y":12.39},{"x":1566629460000,"y":12.4},{"x":1566629520000,"y":12.4},{"x":1566629580000,"y":12.4},{"x":1566629640000,"y":12.39},{"x":1566629700000,"y":12.37},{"x":1566629760000,"y":12.36},{"x":1566629820000,"y":12.37},{"x":1566629880000,"y":12.37},{"x":1566629940000,"y":12.4},{"x":1566630000000,"y":12.39},{"x":1566630060000,"y":12.39},{"x":1566630120000,"y":12.39},{"x":1566630180000,"y":12.39},{"x":1566630240000,"y":12.41},{"x":1566630300000,"y":12.4},{"x":1566630360000,"y":12.4},{"x":1566630420000,"y":12.39},{"x":1566630480000,"y":12.4},{"x":1566630540000,"y":12.41},{"x":1566630600000,"y":12.39},{"x":1566630660000,"y":12.39},{"x":1566630720000,"y":12.39},{"x":1566630780000,"y":12.39},{"x":1566630840000,"y":12.4},{"x":1566630900000,"y":12.39},{"x":1566630960000,"y":12.4},{"x":1566631020000,"y":12.39},{"x":1566631080000,"y":12.39},{"x":1566631140000,"y":12.41},{"x":1566631200000,"y":12.4},{"x":1566631260000,"y":12.4},{"x":1566631320000,"y":12.39},{"x":1566631380000,"y":12.39},{"x":1566631440000,"y":12.4},{"x":1566631500000,"y":12.4},{"x":1566631560000,"y":12.4},{"x":1566631620000,"y":12.4},{"x":1566631680000,"y":12.4},{"x":1566631740000,"y":12.41},{"x":1566631800000,"y":12.38},{"x":1566631860000,"y":12.38},{"x":1566631920000,"y":12.38},{"x":1566631980000,"y":12.38},{"x":1566632040000,"y":12.38},{"x":1566632100000,"y":12.42},{"x":1566632160000,"y":12.4},{"x":1566632220000,"y":12.4},{"x":1566632280000,"y":12.39},{"x":1566632340000,"y":12.38},{"x":1566632400000,"y":12.39},{"x":1566632460000,"y":12.38},{"x":1566632520000,"y":12.38},{"x":1566632580000,"y":12.38},{"x":1566632640000,"y":12.38},{"x":1566632700000,"y":12.38},{"x":1566632760000,"y":12.37},{"x":1566632820000,"y":12.37},{"x":1566632880000,"y":12.37},{"x":1566632940000,"y":12.37},{"x":1566633000000,"y":12.38},{"x":1566633060000,"y":12.36},{"x":1566633120000,"y":12.37},{"x":1566633180000,"y":12.36},{"x":1566633240000,"y":12.37},{"x":1566633300000,"y":12.36},{"x":1566633360000,"y":12.38},{"x":1566633420000,"y":12.38},{"x":1566633480000,"y":12.38},{"x":1566633540000,"y":12.38},{"x":1566633600000,"y":12.39},{"x":1566633660000,"y":12.38},{"x":1566633720000,"y":12.38},{"x":1566633780000,"y":12.38},{"x":1566633840000,"y":12.38},{"x":1566633900000,"y":12.38},{"x":1566633960000,"y":12.38},{"x":1566634020000,"y":12.38},{"x":1566634080000,"y":12.38},{"x":1566634140000,"y":12.38},{"x":1566634200000,"y":12.38},{"x":1566634260000,"y":12.39},{"x":1566634320000,"y":12.38},{"x":1566634380000,"y":12.38},{"x":1566634440000,"y":12.38},{"x":1566634500000,"y":12.37},{"x":1566634560000,"y":12.39},{"x":1566634620000,"y":12.38},{"x":1566634680000,"y":12.38},{"x":1566634740000,"y":12.38},{"x":1566634800000,"y":12.38},{"x":1566634860000,"y":12.37},{"x":1566634920000,"y":12.36},{"x":1566634980000,"y":12.38},{"x":1566635040000,"y":12.38},{"x":1566635100000,"y":12.38},{"x":1566635160000,"y":12.64},{"x":1566635220000,"y":12.44},{"x":1566635280000,"y":12.44},{"x":1566635340000,"y":12.44},{"x":1566635400000,"y":12.42},{"x":1566635460000,"y":12.42},{"x":1566635520000,"y":12.39},{"x":1566635580000,"y":12.39},{"x":1566635640000,"y":12.39},{"x":1566635700000,"y":12.38},{"x":1566635760000,"y":12.39},{"x":1566635820000,"y":12.38},{"x":1566635880000,"y":12.38},{"x":1566635940000,"y":12.39},{"x":1566636000000,"y":12.39},{"x":1566636060000,"y":12.39},{"x":1566636120000,"y":12.38},{"x":1566636180000,"y":12.38},{"x":1566636240000,"y":12.38},{"x":1566636300000,"y":12.38},{"x":1566636360000,"y":12.39},{"x":1566636420000,"y":12.39},{"x":1566636480000,"y":12.39},{"x":1566636540000,"y":12.39},{"x":1566636600000,"y":12.38},{"x":1566636660000,"y":12.38},{"x":1566636720000,"y":12.4},{"x":1566636780000,"y":12.39},{"x":1566636840000,"y":12.39},{"x":1566636900000,"y":12.38},{"x":1566636960000,"y":12.38},{"x":1566637020000,"y":12.37},{"x":1566637080000,"y":12.35},{"x":1566637140000,"y":12.35},{"x":1566637200000,"y":12.38},{"x":1566637260000,"y":12.38},{"x":1566637320000,"y":12.39},{"x":1566637380000,"y":12.38},{"x":1566637440000,"y":12.38},{"x":1566637500000,"y":12.38},{"x":1566637560000,"y":12.38},{"x":1566637620000,"y":12.39},{"x":1566637680000,"y":12.39},{"x":1566637740000,"y":12.39},{"x":1566637800000,"y":12.38},{"x":1566637860000,"y":12.38},{"x":1566637920000,"y":12.39},{"x":1566637980000,"y":12.39},{"x":1566638040000,"y":12.39},{"x":1566638100000,"y":12.37},{"x":1566638160000,"y":12.36},{"x":1566638220000,"y":12.38},{"x":1566638280000,"y":12.38},{"x":1566638340000,"y":12.38},{"x":1566638400000,"y":12.38},{"x":1566638460000,"y":12.38},{"x":1566638520000,"y":12.39},{"x":1566638580000,"y":12.38},{"x":1566638640000,"y":12.38},{"x":1566638700000,"y":12.39},{"x":1566638760000,"y":12.39},{"x":1566638820000,"y":12.4},{"x":1566638880000,"y":12.37},{"x":1566638940000,"y":12.37},{"x":1566639000000,"y":12.37},{"x":1566639060000,"y":12.37},{"x":1566639120000,"y":12.37},{"x":1566639180000,"y":12.37},{"x":1566639240000,"y":12.36},{"x":1566639300000,"y":12.39},{"x":1566639360000,"y":12.39},{"x":1566639420000,"y":12.39},{"x":1566639480000,"y":12.41},{"x":1566639540000,"y":12.39},{"x":1566639600000,"y":12.4},{"x":1566639660000,"y":12.4},{"x":1566639720000,"y":12.4},{"x":1566639780000,"y":12.41},{"x":1566639840000,"y":12.4},{"x":1566639900000,"y":12.39},{"x":1566639960000,"y":12.39},{"x":1566640020000,"y":12.39},{"x":1566640080000,"y":12.4},{"x":1566640140000,"y":12.39},{"x":1566640200000,"y":12.39},{"x":1566640260000,"y":12.4},{"x":1566640320000,"y":12.4},{"x":1566640380000,"y":12.4},{"x":1566640440000,"y":12.39},{"x":1566640500000,"y":12.39},{"x":1566640560000,"y":12.39},{"x":1566640620000,"y":12.39},{"x":1566640680000,"y":12.4},{"x":1566640740000,"y":12.4},{"x":1566640800000,"y":12.39},{"x":1566640860000,"y":12.39},{"x":1566640920000,"y":12.39},{"x":1566640980000,"y":12.39},{"x":1566641040000,"y":12.41},{"x":1566641100000,"y":12.39},{"x":1566641160000,"y":12.39},{"x":1566641220000,"y":12.39},{"x":1566641280000,"y":12.39},{"x":1566641340000,"y":12.4},{"x":1566641400000,"y":12.4},{"x":1566641460000,"y":12.4},{"x":1566641520000,"y":12.4},{"x":1566641580000,"y":12.38},{"x":1566641640000,"y":12.38},{"x":1566641700000,"y":12.38},{"x":1566641760000,"y":12.38},{"x":1566641820000,"y":12.38},{"x":1566641880000,"y":12.38},{"x":1566641940000,"y":12.39},{"x":1566642000000,"y":12.38},{"x":1566642060000,"y":12.38},{"x":1566642120000,"y":12.38},{"x":1566642180000,"y":12.37},{"x":1566642240000,"y":12.38},{"x":1566642300000,"y":12.37},{"x":1566642360000,"y":12.37},{"x":1566642420000,"y":12.37},{"x":1566642480000,"y":12.37},{"x":1566642540000,"y":12.38},{"x":1566642600000,"y":12.38},{"x":1566642660000,"y":12.38},{"x":1566642720000,"y":12.38},{"x":1566642780000,"y":12.38},{"x":1566642840000,"y":12.4},{"x":1566642900000,"y":12.38},{"x":1566642960000,"y":12.38},{"x":1566643020000,"y":12.38},{"x":1566643080000,"y":12.38},{"x":1566643140000,"y":12.39},{"x":1566643200000,"y":12.38},{"x":1566643260000,"y":12.37},{"x":1566643320000,"y":12.37},{"x":1566643380000,"y":12.37},{"x":1566643440000,"y":12.37},{"x":1566643500000,"y":12.39},{"x":1566643560000,"y":12.38},{"x":1566643620000,"y":12.38},{"x":1566643680000,"y":12.38},{"x":1566643740000,"y":12.38},{"x":1566643800000,"y":12.37},{"x":1566643860000,"y":12.36},{"x":1566643920000,"y":12.36},{"x":1566643980000,"y":12.36},{"x":1566644040000,"y":12.36},{"x":1566644100000,"y":12.4},{"x":1566644160000,"y":12.38},{"x":1566644220000,"y":12.38},{"x":1566644280000,"y":12.38},{"x":1566644340000,"y":12.38},{"x":1566644400000,"y":12.4},{"x":1566644460000,"y":12.38},{"x":1566644520000,"y":12.38},{"x":1566644580000,"y":12.78},{"x":1566644640000,"y":12.45},{"x":1566644700000,"y":12.46},{"x":1566644760000,"y":12.46},{"x":1566644820000,"y":12.46},{"x":1566644880000,"y":12.41},{"x":1566644940000,"y":12.38},{"x":1566645000000,"y":12.39},{"x":1566645060000,"y":12.37},{"x":1566645120000,"y":12.37},{"x":1566645180000,"y":12.37},{"x":1566645240000,"y":12.37},{"x":1566645300000,"y":12.4},{"x":1566645360000,"y":12.4},{"x":1566645420000,"y":12.4},{"x":1566645480000,"y":12.4},{"x":1566645540000,"y":12.4},{"x":1566645600000,"y":12.39},{"x":1566645660000,"y":12.41},{"x":1566645720000,"y":12.39},{"x":1566645780000,"y":12.38},{"x":1566645840000,"y":12.38},{"x":1566645900000,"y":12.45},{"x":1566645960000,"y":12.4},{"x":1566646020000,"y":12.39},{"x":1566646080000,"y":12.39},{"x":1566646140000,"y":12.39},{"x":1566646200000,"y":12.39},{"x":1566646260000,"y":12.39},{"x":1566646320000,"y":12.38},{"x":1566646380000,"y":12.38},{"x":1566646440000,"y":12.38},{"x":1566646500000,"y":12.39},{"x":1566646560000,"y":12.4},{"x":1566646620000,"y":12.39},{"x":1566646680000,"y":12.39},{"x":1566646740000,"y":12.39},{"x":1566646800000,"y":12.39},{"x":1566646860000,"y":12.4},{"x":1566646920000,"y":12.39},{"x":1566646980000,"y":12.39},{"x":1566647040000,"y":12.4},{"x":1566647100000,"y":12.39},{"x":1566647160000,"y":12.4},{"x":1566647220000,"y":12.39},{"x":1566647280000,"y":12.39},{"x":1566647340000,"y":12.39},{"x":1566647400000,"y":12.39},{"x":1566647460000,"y":12.4},{"x":1566647520000,"y":12.39},{"x":1566647580000,"y":12.39},{"x":1566647640000,"y":12.4},{"x":1566647700000,"y":12.38},{"x":1566647760000,"y":12.38},{"x":1566647820000,"y":12.41},{"x":1566647880000,"y":12.53},{"x":1566647940000,"y":12.46},{"x":1566648000000,"y":12.45},{"x":1566648060000,"y":12.45},{"x":1566648120000,"y":12.47},{"x":1566648180000,"y":12.45},{"x":1566648240000,"y":12.4},{"x":1566648300000,"y":12.38},{"x":1566648360000,"y":12.38},{"x":1566648420000,"y":12.39},{"x":1566648480000,"y":12.38},{"x":1566648540000,"y":12.4},{"x":1566648600000,"y":12.39},{"x":1566648660000,"y":12.39},{"x":1566648720000,"y":12.41},{"x":1566648780000,"y":12.4},{"x":1566648840000,"y":12.4},{"x":1566648900000,"y":12.41},{"x":1566648960000,"y":12.41},{"x":1566649020000,"y":12.41},{"x":1566649080000,"y":12.38},{"x":1566649140000,"y":12.38},{"x":1566649200000,"y":12.38},{"x":1566649260000,"y":12.38},{"x":1566649320000,"y":12.4},{"x":1566649380000,"y":12.39},{"x":1566649440000,"y":12.4},{"x":1566649500000,"y":12.4},{"x":1566649560000,"y":12.4},{"x":1566649620000,"y":12.41},{"x":1566649680000,"y":12.4},{"x":1566649740000,"y":12.4},{"x":1566649800000,"y":12.38},{"x":1566649860000,"y":12.38},{"x":1566649920000,"y":12.38},{"x":1566649980000,"y":12.39},{"x":1566650040000,"y":12.38},{"x":1566650100000,"y":12.38},{"x":1566650160000,"y":12.38},{"x":1566650220000,"y":12.38},{"x":1566650280000,"y":12.41},{"x":1566650340000,"y":12.4},{"x":1566650400000,"y":12.4},{"x":1566650460000,"y":12.4},{"x":1566650520000,"y":12.4},{"x":1566650580000,"y":12.41},{"x":1566650640000,"y":12.41},{"x":1566650700000,"y":12.41},{"x":1566650760000,"y":12.4},{"x":1566650820000,"y":12.39},{"x":1566650880000,"y":12.4},{"x":1566650940000,"y":12.38},{"x":1566651000000,"y":12.37},{"x":1566651060000,"y":12.37},{"x":1566651120000,"y":12.36},{"x":1566651180000,"y":12.38},{"x":1566651240000,"y":12.38},{"x":1566651300000,"y":12.38},{"x":1566651360000,"y":12.38},{"x":1566651420000,"y":12.38},{"x":1566651480000,"y":12.39},{"x":1566651540000,"y":12.38},{"x":1566651600000,"y":12.37},{"x":1566651660000,"y":12.37},{"x":1566651720000,"y":12.37},{"x":1566651780000,"y":12.38},{"x":1566651840000,"y":12.39},{"x":1566651900000,"y":12.38},{"x":1566651960000,"y":12.38},{"x":1566652020000,"y":12.38},{"x":1566652080000,"y":12.39},{"x":1566652140000,"y":12.39},{"x":1566652200000,"y":12.38},{"x":1566652260000,"y":12.38},{"x":1566652320000,"y":12.38},{"x":1566652380000,"y":12.38},{"x":1566652440000,"y":12.4},{"x":1566652500000,"y":12.39},{"x":1566652560000,"y":12.39},{"x":1566652620000,"y":12.39},{"x":1566652680000,"y":12.39},{"x":1566652740000,"y":12.4},{"x":1566652800000,"y":12.39},{"x":1566652860000,"y":12.39},{"x":1566652920000,"y":12.39},{"x":1566652980000,"y":12.38},{"x":1566653040000,"y":12.4},{"x":1566653100000,"y":12.39},{"x":1566653160000,"y":12.39},{"x":1566653220000,"y":12.39},{"x":1566653280000,"y":12.39},{"x":1566653340000,"y":12.4},{"x":1566653400000,"y":12.39},{"x":1566653460000,"y":12.39},{"x":1566653520000,"y":12.39},{"x":1566653580000,"y":12.39},{"x":1566653640000,"y":12.4},{"x":1566653700000,"y":12.4},{"x":1566653760000,"y":12.39},{"x":1566653820000,"y":12.39},{"x":1566653880000,"y":12.39},{"x":1566653940000,"y":12.4},{"x":1566654000000,"y":12.39},{"x":1566654060000,"y":12.39},{"x":1566654120000,"y":12.39},{"x":1566654180000,"y":12.39},{"x":1566654240000,"y":12.41},{"x":1566654300000,"y":12.37},{"x":1566654360000,"y":12.37},{"x":1566654420000,"y":12.37},{"x":1566654480000,"y":12.36},{"x":1566654540000,"y":12.36},{"x":1566654600000,"y":12.4},{"x":1566654660000,"y":12.39},{"x":1566654720000,"y":12.39},{"x":1566654780000,"y":12.39},{"x":1566654840000,"y":12.39},{"x":1566654900000,"y":12.4},{"x":1566654960000,"y":12.39},{"x":1566655020000,"y":12.4},{"x":1566655080000,"y":12.4},{"x":1566655140000,"y":12.4},{"x":1566655200000,"y":12.4},{"x":1566655260000,"y":12.4},{"x":1566655320000,"y":12.39},{"x":1566655380000,"y":12.39},{"x":1566655440000,"y":12.39},{"x":1566655500000,"y":12.42},{"x":1566655560000,"y":12.4},{"x":1566655620000,"y":12.4},{"x":1566655680000,"y":12.4},{"x":1566655740000,"y":12.4},{"x":1566655800000,"y":12.41},{"x":1566655860000,"y":12.39},{"x":1566655920000,"y":12.39},{"x":1566655980000,"y":12.39},{"x":1566656040000,"y":12.39},{"x":1566656100000,"y":12.39},{"x":1566656160000,"y":12.39},{"x":1566656220000,"y":12.39},{"x":1566656280000,"y":12.4},{"x":1566656340000,"y":12.4},{"x":1566656400000,"y":12.39},{"x":1566656460000,"y":12.39},{"x":1566656520000,"y":12.39},{"x":1566656580000,"y":12.39},{"x":1566656640000,"y":12.39},{"x":1566656700000,"y":12.39},{"x":1566656760000,"y":12.37},{"x":1566656820000,"y":12.36},{"x":1566656880000,"y":12.37},{"x":1566656940000,"y":12.37},{"x":1566657000000,"y":12.39},{"x":1566657060000,"y":12.7},{"x":1566657120000,"y":12.47},{"x":1566657180000,"y":12.47},{"x":1566657240000,"y":12.47},{"x":1566657300000,"y":12.46},{"x":1566657360000,"y":12.44},{"x":1566657420000,"y":12.41},{"x":1566657480000,"y":12.4},{"x":1566657540000,"y":12.4},{"x":1566657600000,"y":12.41},{"x":1566657660000,"y":12.42},{"x":1566657720000,"y":12.4},{"x":1566657780000,"y":12.4},{"x":1566657840000,"y":12.4},{"x":1566657900000,"y":12.4},{"x":1566657960000,"y":12.41},{"x":1566658020000,"y":12.4},{"x":1566658080000,"y":12.4},{"x":1566658140000,"y":12.4},{"x":1566658200000,"y":12.4},{"x":1566658260000,"y":12.41},{"x":1566658320000,"y":12.4},{"x":1566658380000,"y":12.4},{"x":1566658440000,"y":12.4},{"x":1566658500000,"y":12.41},{"x":1566658560000,"y":12.42},{"x":1566658620000,"y":12.41},{"x":1566658680000,"y":12.41},{"x":1566658740000,"y":12.41},{"x":1566658800000,"y":12.41},{"x":1566658860000,"y":12.41},{"x":1566658920000,"y":12.42},{"x":1566658980000,"y":12.41},{"x":1566659040000,"y":12.41},{"x":1566659100000,"y":12.38},{"x":1566659160000,"y":12.38},{"x":1566659220000,"y":12.41},{"x":1566659280000,"y":12.4},{"x":1566659340000,"y":12.41},{"x":1566659400000,"y":12.41},{"x":1566659460000,"y":12.41},{"x":1566659520000,"y":12.41},{"x":1566659580000,"y":12.41},{"x":1566659640000,"y":12.4},{"x":1566659700000,"y":12.41},{"x":1566659760000,"y":12.41},{"x":1566659820000,"y":12.42},{"x":1566659880000,"y":12.42},{"x":1566659940000,"y":12.41},{"x":1566660000000,"y":12.41},{"x":1566660060000,"y":12.41},{"x":1566660120000,"y":12.4},{"x":1566660180000,"y":12.38},{"x":1566660240000,"y":12.38},{"x":1566660300000,"y":12.39},{"x":1566660360000,"y":12.39},{"x":1566660420000,"y":12.4},{"x":1566660480000,"y":12.39},{"x":1566660540000,"y":12.38},{"x":1566660600000,"y":12.37},{"x":1566660660000,"y":12.37},{"x":1566660720000,"y":12.38},{"x":1566660780000,"y":12.38},{"x":1566660840000,"y":12.38},{"x":1566660900000,"y":12.38},{"x":1566660960000,"y":12.39},{"x":1566661020000,"y":12.4},{"x":1566661080000,"y":12.39},{"x":1566661140000,"y":12.39},{"x":1566661200000,"y":12.39},{"x":1566661260000,"y":12.39},{"x":1566661320000,"y":12.39},{"x":1566661380000,"y":12.4},{"x":1566661440000,"y":12.39},{"x":1566661500000,"y":12.37},{"x":1566661560000,"y":12.37},{"x":1566661620000,"y":12.37},{"x":1566661680000,"y":12.4},{"x":1566661740000,"y":12.39},{"x":1566661800000,"y":12.4},{"x":1566661860000,"y":12.4},{"x":1566661920000,"y":12.4},{"x":1566661980000,"y":12.41},{"x":1566662040000,"y":12.39},{"x":1566662100000,"y":12.4},{"x":1566662160000,"y":12.4},{"x":1566662220000,"y":12.4},{"x":1566662280000,"y":12.4},{"x":1566662340000,"y":12.39},{"x":1566662400000,"y":12.39},{"x":1566662460000,"y":12.39},{"x":1566662520000,"y":12.39},{"x":1566662580000,"y":12.4},{"x":1566662640000,"y":12.4},{"x":1566662700000,"y":12.38},{"x":1566662760000,"y":12.38},{"x":1566662820000,"y":12.38},{"x":1566662880000,"y":12.39},{"x":1566662940000,"y":12.4},{"x":1566663000000,"y":12.4},{"x":1566663060000,"y":12.4},{"x":1566663120000,"y":12.4},{"x":1566663180000,"y":12.41},{"x":1566663240000,"y":12.4},{"x":1566663300000,"y":12.39},{"x":1566663360000,"y":12.38},{"x":1566663420000,"y":12.39},{"x":1566663480000,"y":12.38},{"x":1566663540000,"y":12.4},{"x":1566663600000,"y":12.39},{"x":1566663660000,"y":12.39},{"x":1566663720000,"y":12.39},{"x":1566663780000,"y":12.39},{"x":1566663840000,"y":12.4},{"x":1566663900000,"y":12.37},{"x":1566663960000,"y":12.37},{"x":1566664020000,"y":12.37},{"x":1566664080000,"y":12.37},{"x":1566664140000,"y":12.39},{"x":1566664200000,"y":12.39},{"x":1566664260000,"y":12.39},{"x":1566664320000,"y":12.39},{"x":1566664380000,"y":12.39},{"x":1566664440000,"y":12.4},{"x":1566664500000,"y":12.37},{"x":1566664560000,"y":12.37},{"x":1566664620000,"y":12.37},{"x":1566664680000,"y":12.37},{"x":1566664740000,"y":12.41},{"x":1566664800000,"y":12.4},{"x":1566664860000,"y":12.4},{"x":1566664920000,"y":12.4},{"x":1566664980000,"y":12.4},{"x":1566665040000,"y":12.41},{"x":1566665100000,"y":12.4},{"x":1566665160000,"y":12.4},{"x":1566665220000,"y":12.4},{"x":1566665280000,"y":12.4},{"x":1566665340000,"y":12.42},{"x":1566665400000,"y":12.4},{"x":1566665460000,"y":12.4},{"x":1566665520000,"y":12.4},{"x":1566665580000,"y":12.4},{"x":1566665640000,"y":12.4},{"x":1566665700000,"y":12.42},{"x":1566665760000,"y":12.4},{"x":1566665820000,"y":12.4},{"x":1566665880000,"y":12.4},{"x":1566665940000,"y":12.4},{"x":1566666000000,"y":12.41},{"x":1566666060000,"y":12.4},{"x":1566666120000,"y":12.4},{"x":1566666180000,"y":12.4},{"x":1566666240000,"y":12.4},{"x":1566666300000,"y":12.41},{"x":1566666360000,"y":12.4},{"x":1566666420000,"y":12.4},{"x":1566666480000,"y":12.4},{"x":1566666540000,"y":12.4},{"x":1566666600000,"y":12.41},{"x":1566666660000,"y":12.4},{"x":1566666720000,"y":12.4},{"x":1566666780000,"y":12.4},{"x":1566666840000,"y":12.4},{"x":1566666900000,"y":12.41},{"x":1566666960000,"y":12.41},{"x":1566667020000,"y":12.41},{"x":1566667080000,"y":12.41},{"x":1566667140000,"y":12.41},{"x":1566667200000,"y":12.42},{"x":1566667260000,"y":12.41},{"x":1566667320000,"y":12.41},{"x":1566667380000,"y":12.4},{"x":1566667440000,"y":12.4},{"x":1566667500000,"y":12.43},{"x":1566667560000,"y":12.4},{"x":1566667620000,"y":12.4},{"x":1566667680000,"y":12.4},{"x":1566667740000,"y":12.4},{"x":1566667800000,"y":12.41},{"x":1566667860000,"y":12.42},{"x":1566667920000,"y":12.41},{"x":1566667980000,"y":12.41},{"x":1566668040000,"y":12.41},{"x":1566668100000,"y":12.41},{"x":1566668160000,"y":12.42},{"x":1566668220000,"y":12.42},{"x":1566668280000,"y":12.41},{"x":1566668340000,"y":12.4},{"x":1566668400000,"y":12.38},{"x":1566668460000,"y":12.41},{"x":1566668520000,"y":12.41},{"x":1566668580000,"y":12.41},{"x":1566668640000,"y":12.41},{"x":1566668700000,"y":12.41},{"x":1566668760000,"y":12.42},{"x":1566668820000,"y":12.41},{"x":1566668880000,"y":12.41},{"x":1566668940000,"y":12.41},{"x":1566669000000,"y":12.41},{"x":1566669060000,"y":12.42},{"x":1566669120000,"y":12.41},{"x":1566669180000,"y":12.4},{"x":1566669240000,"y":12.38},{"x":1566669300000,"y":12.39},{"x":1566669360000,"y":12.4},{"x":1566669420000,"y":12.4},{"x":1566669480000,"y":12.4},{"x":1566669540000,"y":12.4},{"x":1566669600000,"y":12.39},{"x":1566669660000,"y":12.41},{"x":1566669720000,"y":12.39},{"x":1566669780000,"y":12.39},{"x":1566669840000,"y":12.39},{"x":1566669900000,"y":12.37},{"x":1566669960000,"y":12.38},{"x":1566670020000,"y":12.4},{"x":1566670080000,"y":12.4},{"x":1566670140000,"y":12.4},{"x":1566670200000,"y":12.39},{"x":1566670260000,"y":12.39},{"x":1566670320000,"y":12.4},{"x":1566670380000,"y":12.4},{"x":1566670440000,"y":12.4},{"x":1566670500000,"y":12.38},{"x":1566670560000,"y":12.38},{"x":1566670620000,"y":12.39},{"x":1566670680000,"y":12.38},{"x":1566670740000,"y":12.38},{"x":1566670800000,"y":12.39},{"x":1566670860000,"y":12.4},{"x":1566670920000,"y":12.41},{"x":1566670980000,"y":12.39},{"x":1566671040000,"y":12.39},{"x":1566671100000,"y":12.37},{"x":1566671160000,"y":12.37},{"x":1566671220000,"y":12.39},{"x":1566671280000,"y":12.39},{"x":1566671340000,"y":12.39},{"x":1566671400000,"y":12.39},{"x":1566671460000,"y":12.39},{"x":1566671520000,"y":12.41},{"x":1566671580000,"y":12.4},{"x":1566671640000,"y":12.4},{"x":1566671700000,"y":12.39},{"x":1566671760000,"y":12.39},{"x":1566671820000,"y":12.41},{"x":1566671880000,"y":12.4},{"x":1566671940000,"y":12.4},{"x":1566672000000,"y":12.39},{"x":1566672060000,"y":12.39},{"x":1566672120000,"y":12.4},{"x":1566672180000,"y":12.41},{"x":1566672240000,"y":12.4},{"x":1566672300000,"y":12.4},{"x":1566672360000,"y":12.4},{"x":1566672420000,"y":12.4},{"x":1566672480000,"y":12.41},{"x":1566672540000,"y":12.4},{"x":1566672600000,"y":12.39},{"x":1566672660000,"y":12.39},{"x":1566672720000,"y":12.4},{"x":1566672780000,"y":12.41},{"x":1566672840000,"y":12.4},{"x":1566672900000,"y":12.38},{"x":1566672960000,"y":12.38},{"x":1566673020000,"y":12.38},{"x":1566673080000,"y":12.4},{"x":1566673140000,"y":12.4},{"x":1566673200000,"y":12.38},{"x":1566673260000,"y":12.38},{"x":1566673320000,"y":12.38},{"x":1566673380000,"y":12.4},{"x":1566673440000,"y":12.4},{"x":1566673500000,"y":12.41},{"x":1566673560000,"y":12.41},{"x":1566673620000,"y":12.41},{"x":1566673680000,"y":12.42},{"x":1566673740000,"y":12.41},{"x":1566673800000,"y":12.4},{"x":1566673860000,"y":12.4},{"x":1566673920000,"y":12.4},{"x":1566673980000,"y":12.4},{"x":1566674040000,"y":12.42},{"x":1566674100000,"y":12.41},{"x":1566674160000,"y":12.41},{"x":1566674220000,"y":12.41},{"x":1566674280000,"y":12.41},{"x":1566674340000,"y":12.42},{"x":1566674400000,"y":12.4},{"x":1566674460000,"y":12.4},{"x":1566674520000,"y":12.4},{"x":1566674580000,"y":12.4},{"x":1566674640000,"y":12.41},{"x":1566674700000,"y":12.39},{"x":1566674760000,"y":12.39},{"x":1566674820000,"y":12.4},{"x":1566674880000,"y":12.4},{"x":1566674940000,"y":12.41},{"x":1566675000000,"y":12.41},{"x":1566675060000,"y":12.41},{"x":1566675120000,"y":12.41},{"x":1566675180000,"y":12.41},{"x":1566675240000,"y":12.41},{"x":1566675300000,"y":12.41},{"x":1566675360000,"y":12.41},{"x":1566675420000,"y":12.41},{"x":1566675480000,"y":12.41},{"x":1566675540000,"y":12.42},{"x":1566675600000,"y":12.4},{"x":1566675660000,"y":12.4},{"x":1566675720000,"y":12.4},{"x":1566675780000,"y":12.4},{"x":1566675840000,"y":12.42},{"x":1566675900000,"y":12.41},{"x":1566675960000,"y":12.41},{"x":1566676020000,"y":12.41},{"x":1566676080000,"y":12.4},{"x":1566676140000,"y":12.41},{"x":1566676200000,"y":12.4},{"x":1566676260000,"y":12.38},{"x":1566676320000,"y":12.38},{"x":1566676380000,"y":12.38},{"x":1566676440000,"y":12.38},{"x":1566676500000,"y":12.41},{"x":1566676560000,"y":12.41},{"x":1566676620000,"y":12.41},{"x":1566676680000,"y":12.41},{"x":1566676740000,"y":12.4},{"x":1566676800000,"y":12.41},{"x":1566676860000,"y":12.41},{"x":1566676920000,"y":12.41},{"x":1566676980000,"y":12.41},{"x":1566677040000,"y":12.41},{"x":1566677100000,"y":12.43},{"x":1566677160000,"y":12.41},{"x":1566677220000,"y":12.41},{"x":1566677280000,"y":12.41},{"x":1566677340000,"y":12.42},{"x":1566677400000,"y":12.42},{"x":1566677460000,"y":12.41},{"x":1566677520000,"y":12.41},{"x":1566677580000,"y":12.42},{"x":1566677640000,"y":12.41},{"x":1566677700000,"y":12.41},{"x":1566677760000,"y":12.41},{"x":1566677820000,"y":12.41},{"x":1566677880000,"y":12.41},{"x":1566677940000,"y":12.41},{"x":1566678000000,"y":12.42},{"x":1566678060000,"y":12.42},{"x":1566678120000,"y":12.42},{"x":1566678180000,"y":12.41},{"x":1566678240000,"y":12.41},{"x":1566678300000,"y":12.41},{"x":1566678360000,"y":12.42},{"x":1566678420000,"y":12.41},{"x":1566678480000,"y":12.4},{"x":1566678540000,"y":12.39},{"x":1566678600000,"y":12.39},{"x":1566678660000,"y":12.4},{"x":1566678720000,"y":12.39},{"x":1566678780000,"y":12.39},{"x":1566678840000,"y":12.39},{"x":1566678900000,"y":12.4},{"x":1566678960000,"y":12.76},{"x":1566679020000,"y":12.45},{"x":1566679080000,"y":12.45},{"x":1566679140000,"y":12.45},{"x":1566679200000,"y":12.45},{"x":1566679260000,"y":12.42},{"x":1566679320000,"y":12.39},{"x":1566679380000,"y":12.4},{"x":1566679440000,"y":12.4},{"x":1566679500000,"y":12.4},{"x":1566679560000,"y":12.41},{"x":1566679620000,"y":12.4},{"x":1566679680000,"y":12.39},{"x":1566679740000,"y":12.39},{"x":1566679800000,"y":12.39},{"x":1566679860000,"y":12.4},{"x":1566679920000,"y":12.4},{"x":1566679980000,"y":12.4},{"x":1566680040000,"y":12.4},{"x":1566680100000,"y":12.39},{"x":1566680160000,"y":12.39},{"x":1566680220000,"y":12.4},{"x":1566680280000,"y":12.4},{"x":1566680340000,"y":12.4},{"x":1566680400000,"y":12.37},{"x":1566680460000,"y":12.37},{"x":1566680520000,"y":12.41},{"x":1566680580000,"y":12.4},{"x":1566680640000,"y":12.4},{"x":1566680700000,"y":12.4},{"x":1566680760000,"y":12.41},{"x":1566680820000,"y":12.42},{"x":1566680880000,"y":12.4},{"x":1566680940000,"y":12.4},{"x":1566681000000,"y":12.4},{"x":1566681060000,"y":12.4},{"x":1566681120000,"y":12.41},{"x":1566681180000,"y":12.4},{"x":1566681240000,"y":12.4},{"x":1566681300000,"y":12.4},{"x":1566681360000,"y":12.4},{"x":1566681420000,"y":12.41},{"x":1566681480000,"y":12.4},{"x":1566681540000,"y":12.4},{"x":1566681600000,"y":12.4},{"x":1566681660000,"y":12.4},{"x":1566681720000,"y":12.41},{"x":1566681780000,"y":12.39},{"x":1566681840000,"y":12.39},{"x":1566681900000,"y":12.39},{"x":1566681960000,"y":12.39},{"x":1566682020000,"y":12.4},{"x":1566682080000,"y":12.4},{"x":1566682140000,"y":12.4},{"x":1566682200000,"y":12.4},{"x":1566682260000,"y":12.4},{"x":1566682320000,"y":12.41},{"x":1566682380000,"y":12.4},{"x":1566682440000,"y":12.4},{"x":1566682500000,"y":12.39},{"x":1566682560000,"y":12.39},{"x":1566682620000,"y":12.39},{"x":1566682680000,"y":12.41},{"x":1566682740000,"y":12.4},{"x":1566682800000,"y":12.4},{"x":1566682860000,"y":12.4},{"x":1566682920000,"y":12.4},{"x":1566682980000,"y":12.41},{"x":1566683040000,"y":12.4},{"x":1566683100000,"y":12.4},{"x":1566683160000,"y":12.4},{"x":1566683220000,"y":12.4},{"x":1566683280000,"y":12.41},{"x":1566683340000,"y":12.4},{"x":1566683400000,"y":12.4},{"x":1566683460000,"y":12.4},{"x":1566683520000,"y":12.4},{"x":1566683580000,"y":12.41},{"x":1566683640000,"y":12.41},{"x":1566683700000,"y":12.41},{"x":1566683760000,"y":12.41},{"x":1566683820000,"y":12.41},{"x":1566683880000,"y":12.42},{"x":1566683940000,"y":12.4},{"x":1566684000000,"y":12.4},{"x":1566684060000,"y":12.4},{"x":1566684120000,"y":12.4},{"x":1566684180000,"y":12.41},{"x":1566684240000,"y":12.4},{"x":1566684300000,"y":12.41},{"x":1566684360000,"y":12.41},{"x":1566684420000,"y":12.41},{"x":1566684480000,"y":12.42},{"x":1566684540000,"y":12.41},{"x":1566684600000,"y":12.42},{"x":1566684660000,"y":12.41},{"x":1566684720000,"y":12.41},{"x":1566684780000,"y":12.42},{"x":1566684840000,"y":12.41},{"x":1566684900000,"y":12.41},{"x":1566684960000,"y":12.41},{"x":1566685020000,"y":12.41},{"x":1566685080000,"y":12.41},{"x":1566685140000,"y":12.42},{"x":1566685200000,"y":12.39},{"x":1566685260000,"y":12.39},{"x":1566685320000,"y":12.4},{"x":1566685380000,"y":12.4},{"x":1566685440000,"y":12.42},{"x":1566685500000,"y":12.42},{"x":1566685560000,"y":12.41},{"x":1566685620000,"y":12.41},{"x":1566685680000,"y":12.41},{"x":1566685740000,"y":12.42},{"x":1566685800000,"y":12.41},{"x":1566685860000,"y":12.41},{"x":1566685920000,"y":12.41},{"x":1566685980000,"y":12.41},{"x":1566686040000,"y":12.42},{"x":1566686100000,"y":12.39},{"x":1566686160000,"y":12.38},{"x":1566686220000,"y":12.38},{"x":1566686280000,"y":12.38},{"x":1566686340000,"y":12.42},{"x":1566686400000,"y":12.41},{"x":1566686460000,"y":12.41},{"x":1566686520000,"y":12.41},{"x":1566686580000,"y":12.41},{"x":1566686640000,"y":12.42},{"x":1566686700000,"y":12.42},{"x":1566686760000,"y":12.42},{"x":1566686820000,"y":12.42},{"x":1566686880000,"y":12.42},{"x":1566686940000,"y":12.44},{"x":1566687000000,"y":12.41},{"x":1566687060000,"y":12.41},{"x":1566687120000,"y":12.41},{"x":1566687180000,"y":12.41},{"x":1566687240000,"y":12.41},{"x":1566687300000,"y":12.42},{"x":1566687360000,"y":12.41},{"x":1566687420000,"y":12.41},{"x":1566687480000,"y":12.41},{"x":1566687540000,"y":12.41},{"x":1566687600000,"y":12.43},{"x":1566687660000,"y":12.42},{"x":1566687720000,"y":12.41},{"x":1566687780000,"y":12.39},{"x":1566687840000,"y":12.4},{"x":1566687900000,"y":12.38},{"x":1566687960000,"y":12.38},{"x":1566688020000,"y":12.38},{"x":1566688080000,"y":12.38},{"x":1566688140000,"y":12.4},{"x":1566688200000,"y":12.4},{"x":1566688260000,"y":12.39},{"x":1566688320000,"y":12.39},{"x":1566688380000,"y":12.39},{"x":1566688440000,"y":12.39},{"x":1566688500000,"y":12.4},{"x":1566688560000,"y":12.39},{"x":1566688620000,"y":12.39},{"x":1566688680000,"y":12.39},{"x":1566688740000,"y":12.39},{"x":1566688800000,"y":12.41},{"x":1566688860000,"y":12.4},{"x":1566688920000,"y":12.4},{"x":1566688980000,"y":12.39},{"x":1566689040000,"y":12.39},{"x":1566689100000,"y":12.4},{"x":1566689160000,"y":12.39},{"x":1566689220000,"y":12.39},{"x":1566689280000,"y":12.39},{"x":1566689340000,"y":12.4},{"x":1566689400000,"y":12.38},{"x":1566689460000,"y":12.41},{"x":1566689520000,"y":12.4},{"x":1566689580000,"y":12.4},{"x":1566689640000,"y":12.4},{"x":1566689700000,"y":12.4},{"x":1566689760000,"y":12.39},{"x":1566689820000,"y":12.37},{"x":1566689880000,"y":12.38},{"x":1566689940000,"y":12.39},{"x":1566690000000,"y":12.39},{"x":1566690060000,"y":12.4},{"x":1566690120000,"y":12.4},{"x":1566690180000,"y":12.4},{"x":1566690240000,"y":12.4},{"x":1566690300000,"y":12.4},{"x":1566690360000,"y":12.42},{"x":1566690420000,"y":12.4},{"x":1566690480000,"y":12.4},{"x":1566690540000,"y":12.4},{"x":1566690600000,"y":12.38},{"x":1566690660000,"y":12.39},{"x":1566690720000,"y":12.39},{"x":1566690780000,"y":12.39},{"x":1566690840000,"y":12.39},{"x":1566690900000,"y":12.4},{"x":1566690960000,"y":12.4},{"x":1566691020000,"y":12.38},{"x":1566691080000,"y":12.38},{"x":1566691140000,"y":12.38},{"x":1566691200000,"y":12.38},{"x":1566691260000,"y":12.39},{"x":1566691320000,"y":12.38},{"x":1566691380000,"y":12.38},{"x":1566691440000,"y":12.38},{"x":1566691500000,"y":12.41},{"x":1566691560000,"y":12.41},{"x":1566691620000,"y":12.42},{"x":1566691680000,"y":12.4},{"x":1566691740000,"y":12.41},{"x":1566691800000,"y":12.4},{"x":1566691860000,"y":12.4},{"x":1566691920000,"y":12.42},{"x":1566691980000,"y":12.41},{"x":1566692040000,"y":12.41},{"x":1566692100000,"y":12.39},{"x":1566692160000,"y":12.39},{"x":1566692220000,"y":12.41},{"x":1566692280000,"y":12.4},{"x":1566692340000,"y":12.4},{"x":1566692400000,"y":12.41},{"x":1566692460000,"y":12.41},{"x":1566692520000,"y":12.41},{"x":1566692580000,"y":12.4},{"x":1566692640000,"y":12.39},{"x":1566692700000,"y":12.39},{"x":1566692760000,"y":12.39},{"x":1566692820000,"y":12.41},{"x":1566692880000,"y":12.41},{"x":1566692940000,"y":12.41},{"x":1566693000000,"y":12.4},{"x":1566693060000,"y":12.4},{"x":1566693120000,"y":12.42},{"x":1566693180000,"y":12.4},{"x":1566693240000,"y":12.41},{"x":1566693300000,"y":12.41},{"x":1566693360000,"y":12.41},{"x":1566693420000,"y":12.42},{"x":1566693480000,"y":12.4},{"x":1566693540000,"y":12.41},{"x":1566693600000,"y":12.41},{"x":1566693660000,"y":12.41},{"x":1566693720000,"y":12.41},{"x":1566693780000,"y":12.42},{"x":1566693840000,"y":12.41},{"x":1566693900000,"y":12.41},{"x":1566693960000,"y":12.41},{"x":1566694020000,"y":12.41},{"x":1566694080000,"y":12.4},{"x":1566694140000,"y":12.39},{"x":1566694200000,"y":12.41},{"x":1566694260000,"y":12.41},{"x":1566694320000,"y":12.41},{"x":1566694380000,"y":12.41},{"x":1566694440000,"y":12.4},{"x":1566694500000,"y":12.42},{"x":1566694560000,"y":12.42},{"x":1566694620000,"y":12.42},{"x":1566694680000,"y":12.43},{"x":1566694740000,"y":12.42},{"x":1566694800000,"y":12.39},{"x":1566694860000,"y":12.38},{"x":1566694920000,"y":12.38},{"x":1566694980000,"y":12.41},{"x":1566695040000,"y":12.41},{"x":1566695100000,"y":12.41},{"x":1566695160000,"y":12.41},{"x":1566695220000,"y":12.41},{"x":1566695280000,"y":12.42},{"x":1566695340000,"y":12.41},{"x":1566695400000,"y":12.42},{"x":1566695460000,"y":12.42},{"x":1566695520000,"y":12.42},{"x":1566695580000,"y":12.42},{"x":1566695640000,"y":12.41},{"x":1566695700000,"y":12.42},{"x":1566695760000,"y":12.42},{"x":1566695820000,"y":12.41},{"x":1566695880000,"y":12.42},{"x":1566695940000,"y":12.42},{"x":1566696000000,"y":12.42},{"x":1566696060000,"y":12.42},{"x":1566696120000,"y":12.42},{"x":1566696180000,"y":12.41},{"x":1566696240000,"y":12.42},{"x":1566696300000,"y":12.42},{"x":1566696360000,"y":12.42},{"x":1566696420000,"y":12.42},{"x":1566696480000,"y":12.42},{"x":1566696540000,"y":12.42},{"x":1566696600000,"y":12.41},{"x":1566696660000,"y":12.42},{"x":1566696720000,"y":12.42},{"x":1566696780000,"y":12.42},{"x":1566696840000,"y":12.42},{"x":1566696900000,"y":12.42},{"x":1566696960000,"y":12.42},{"x":1566697020000,"y":12.42},{"x":1566697080000,"y":12.41},{"x":1566697140000,"y":12.39},{"x":1566697200000,"y":12.37},{"x":1566697260000,"y":12.37},{"x":1566697320000,"y":12.38},{"x":1566697380000,"y":12.38},{"x":1566697440000,"y":12.39},{"x":1566697500000,"y":12.38},{"x":1566697560000,"y":12.38},{"x":1566697620000,"y":12.38},{"x":1566697680000,"y":12.38},{"x":1566697740000,"y":12.39},{"x":1566697800000,"y":12.4},{"x":1566697860000,"y":12.4},{"x":1566697920000,"y":12.4},{"x":1566697980000,"y":12.4},{"x":1566698040000,"y":12.41},{"x":1566698100000,"y":12.38},{"x":1566698160000,"y":12.38},{"x":1566698220000,"y":12.38},{"x":1566698280000,"y":12.37},{"x":1566698340000,"y":12.37},{"x":1566698400000,"y":12.41},{"x":1566698460000,"y":12.4},{"x":1566698520000,"y":12.4},{"x":1566698580000,"y":12.4},{"x":1566698640000,"y":12.4},{"x":1566698700000,"y":12.4},{"x":1566698760000,"y":12.38},{"x":1566698820000,"y":12.38},{"x":1566698880000,"y":12.38},{"x":1566698940000,"y":12.41},{"x":1566699000000,"y":12.41},{"x":1566699060000,"y":12.4},{"x":1566699120000,"y":12.4},{"x":1566699180000,"y":12.4},{"x":1566699240000,"y":12.4},{"x":1566699300000,"y":12.41},{"x":1566699360000,"y":12.4},{"x":1566699420000,"y":12.4},{"x":1566699480000,"y":12.4},{"x":1566699540000,"y":12.4},{"x":1566699600000,"y":12.4},{"x":1566699660000,"y":12.39},{"x":1566699720000,"y":12.39},{"x":1566699780000,"y":12.39},{"x":1566699840000,"y":12.39},{"x":1566699900000,"y":12.41},{"x":1566699960000,"y":12.4},{"x":1566700020000,"y":12.41},{"x":1566700080000,"y":12.41},{"x":1566700140000,"y":12.41},{"x":1566700200000,"y":12.41},{"x":1566700260000,"y":12.37},{"x":1566700320000,"y":12.37},{"x":1566700380000,"y":12.37},{"x":1566700440000,"y":12.37},{"x":1566700500000,"y":12.38},{"x":1566700560000,"y":12.41},{"x":1566700620000,"y":12.4},{"x":1566700680000,"y":12.41},{"x":1566700740000,"y":12.41},{"x":1566700800000,"y":12.41},{"x":1566700860000,"y":12.76},{"x":1566700920000,"y":12.47},{"x":1566700980000,"y":12.47},{"x":1566701040000,"y":12.47},{"x":1566701100000,"y":12.46},{"x":1566701160000,"y":12.44},{"x":1566701220000,"y":12.41},{"x":1566701280000,"y":12.41},{"x":1566701340000,"y":12.41},{"x":1566701400000,"y":12.41},{"x":1566701460000,"y":12.42},{"x":1566701520000,"y":12.4},{"x":1566701580000,"y":12.4},{"x":1566701640000,"y":12.4},{"x":1566701700000,"y":12.41},{"x":1566701760000,"y":12.43},{"x":1566701820000,"y":12.4},{"x":1566701880000,"y":12.4},{"x":1566701940000,"y":12.4},{"x":1566702000000,"y":12.4},{"x":1566702060000,"y":12.41},{"x":1566702120000,"y":12.4},{"x":1566702180000,"y":12.41},{"x":1566702240000,"y":12.41},{"x":1566702300000,"y":12.41},{"x":1566702360000,"y":12.42},{"x":1566702420000,"y":12.42},{"x":1566702480000,"y":12.42},{"x":1566702540000,"y":12.4},{"x":1566702600000,"y":12.4},{"x":1566702660000,"y":12.41},{"x":1566702720000,"y":12.41},{"x":1566702780000,"y":12.41},{"x":1566702840000,"y":12.41},{"x":1566702900000,"y":12.42},{"x":1566702960000,"y":12.42},{"x":1566703020000,"y":12.42},{"x":1566703080000,"y":12.41},{"x":1566703140000,"y":12.41},{"x":1566703200000,"y":12.42},{"x":1566703260000,"y":12.41},{"x":1566703320000,"y":12.42},{"x":1566703380000,"y":12.4},{"x":1566703440000,"y":12.4},{"x":1566703500000,"y":12.41},{"x":1566703560000,"y":12.41},{"x":1566703620000,"y":12.43},{"x":1566703680000,"y":12.42},{"x":1566703740000,"y":12.42},{"x":1566703800000,"y":12.42},{"x":1566703860000,"y":12.41},{"x":1566703920000,"y":12.43},{"x":1566703980000,"y":12.41},{"x":1566704040000,"y":12.41},{"x":1566704100000,"y":12.41},{"x":1566704160000,"y":12.41},{"x":1566704220000,"y":12.42},{"x":1566704280000,"y":12.41},{"x":1566704340000,"y":12.4},{"x":1566704400000,"y":12.42},{"x":1566704460000,"y":12.42},{"x":1566704520000,"y":12.42},{"x":1566704580000,"y":12.41},{"x":1566704640000,"y":12.41},{"x":1566704700000,"y":12.41},{"x":1566704760000,"y":12.41},{"x":1566704820000,"y":12.42},{"x":1566704880000,"y":12.41},{"x":1566704940000,"y":12.41},{"x":1566705000000,"y":12.42},{"x":1566705060000,"y":12.42},{"x":1566705120000,"y":12.42},{"x":1566705180000,"y":12.42},{"x":1566705240000,"y":12.41},{"x":1566705300000,"y":12.41},{"x":1566705360000,"y":12.41},{"x":1566705420000,"y":12.41},{"x":1566705480000,"y":12.43},{"x":1566705540000,"y":12.41},{"x":1566705600000,"y":12.42},{"x":1566705660000,"y":12.42},{"x":1566705720000,"y":12.42},{"x":1566705780000,"y":12.43},{"x":1566705840000,"y":12.42},{"x":1566705900000,"y":12.42},{"x":1566705960000,"y":12.42},{"x":1566706020000,"y":12.42},{"x":1566706080000,"y":12.42},{"x":1566706140000,"y":12.42},{"x":1566706200000,"y":12.42},{"x":1566706260000,"y":12.4},{"x":1566706320000,"y":12.4},{"x":1566706380000,"y":12.41},{"x":1566706440000,"y":12.4},{"x":1566706500000,"y":12.4},{"x":1566706560000,"y":12.4},{"x":1566706620000,"y":12.39},{"x":1566706680000,"y":12.4},{"x":1566706740000,"y":12.4},{"x":1566706800000,"y":12.4},{"x":1566706860000,"y":12.4},{"x":1566706920000,"y":12.4},{"x":1566706980000,"y":12.41},{"x":1566707040000,"y":12.41},{"x":1566707100000,"y":12.38},{"x":1566707160000,"y":12.38},{"x":1566707220000,"y":12.38},{"x":1566707280000,"y":12.38},{"x":1566707340000,"y":12.41},{"x":1566707400000,"y":12.4},{"x":1566707460000,"y":12.4},{"x":1566707520000,"y":12.4},{"x":1566707580000,"y":12.4},{"x":1566707640000,"y":12.41},{"x":1566707700000,"y":12.38},{"x":1566707760000,"y":12.38},{"x":1566707820000,"y":12.38},{"x":1566707880000,"y":12.38},{"x":1566707940000,"y":12.41},{"x":1566708000000,"y":12.4},{"x":1566708060000,"y":12.4},{"x":1566708120000,"y":12.4},{"x":1566708180000,"y":12.4},{"x":1566708240000,"y":12.41},{"x":1566708300000,"y":12.4},{"x":1566708360000,"y":12.4},{"x":1566708420000,"y":12.4},{"x":1566708480000,"y":12.4},{"x":1566708540000,"y":12.41},{"x":1566708600000,"y":12.4},{"x":1566708660000,"y":12.4},{"x":1566708720000,"y":12.4},{"x":1566708780000,"y":12.4},{"x":1566708840000,"y":12.41},{"x":1566708900000,"y":12.37},{"x":1566708960000,"y":12.37},{"x":1566709020000,"y":12.38},{"x":1566709080000,"y":12.37},{"x":1566709140000,"y":12.38},{"x":1566709200000,"y":12.4},{"x":1566709260000,"y":12.38},{"x":1566709320000,"y":12.38},{"x":1566709380000,"y":12.38},{"x":1566709440000,"y":12.38},{"x":1566709500000,"y":12.41},{"x":1566709560000,"y":12.4},{"x":1566709620000,"y":12.4},{"x":1566709680000,"y":12.4},{"x":1566709740000,"y":12.41},{"x":1566709800000,"y":12.42},{"x":1566709860000,"y":12.41},{"x":1566709920000,"y":12.41},{"x":1566709980000,"y":12.41},{"x":1566710040000,"y":12.4},{"x":1566710100000,"y":12.41},{"x":1566710160000,"y":12.39},{"x":1566710220000,"y":12.39},{"x":1566710280000,"y":12.39},{"x":1566710340000,"y":12.38},{"x":1566710400000,"y":12.41},{"x":1566710460000,"y":12.4},{"x":1566710520000,"y":12.41},{"x":1566710580000,"y":12.4},{"x":1566710640000,"y":12.4},{"x":1566710700000,"y":12.41},{"x":1566710760000,"y":12.41},{"x":1566710820000,"y":12.41},{"x":1566710880000,"y":12.4},{"x":1566710940000,"y":12.4},{"x":1566711000000,"y":12.41},{"x":1566711060000,"y":12.41},{"x":1566711120000,"y":12.4},{"x":1566711180000,"y":12.4},{"x":1566711240000,"y":12.4},{"x":1566711300000,"y":12.4},{"x":1566711360000,"y":12.42},{"x":1566711420000,"y":12.41},{"x":1566711480000,"y":12.41},{"x":1566711540000,"y":12.41},{"x":1566711600000,"y":12.41},{"x":1566711660000,"y":12.42},{"x":1566711720000,"y":12.41},{"x":1566711780000,"y":12.4},{"x":1566711840000,"y":12.4},{"x":1566711900000,"y":12.4},{"x":1566711960000,"y":12.43},{"x":1566712020000,"y":12.41},{"x":1566712080000,"y":12.41},{"x":1566712140000,"y":12.42},{"x":1566712200000,"y":12.41},{"x":1566712260000,"y":12.43},{"x":1566712320000,"y":12.41},{"x":1566712380000,"y":12.41},{"x":1566712440000,"y":12.41},{"x":1566712500000,"y":12.4},{"x":1566712560000,"y":12.42},{"x":1566712620000,"y":12.4},{"x":1566712680000,"y":12.4},{"x":1566712740000,"y":12.4},{"x":1566712800000,"y":12.41},{"x":1566712860000,"y":12.42},{"x":1566712920000,"y":12.41},{"x":1566712980000,"y":12.41},{"x":1566713040000,"y":12.41},{"x":1566713100000,"y":12.41},{"x":1566713160000,"y":12.41},{"x":1566713220000,"y":12.41},{"x":1566713280000,"y":12.4},{"x":1566713340000,"y":12.41},{"x":1566713400000,"y":12.41},{"x":1566713460000,"y":12.41},{"x":1566713520000,"y":12.42},{"x":1566713580000,"y":12.41},{"x":1566713640000,"y":12.41},{"x":1566713700000,"y":12.41},{"x":1566713760000,"y":12.41},{"x":1566713820000,"y":12.42},{"x":1566713880000,"y":12.41},{"x":1566713940000,"y":12.42},{"x":1566714000000,"y":12.41},{"x":1566714060000,"y":12.41},{"x":1566714120000,"y":12.42},{"x":1566714180000,"y":12.41},{"x":1566714240000,"y":12.41},{"x":1566714300000,"y":12.4},{"x":1566714360000,"y":12.4},{"x":1566714420000,"y":12.42},{"x":1566714480000,"y":12.41},{"x":1566714540000,"y":12.41},{"x":1566714600000,"y":12.39},{"x":1566714660000,"y":12.39},{"x":1566714720000,"y":12.41},{"x":1566714780000,"y":12.42},{"x":1566714840000,"y":12.42},{"x":1566714900000,"y":12.42},{"x":1566714960000,"y":12.42},{"x":1566715020000,"y":12.42},{"x":1566715080000,"y":12.42},{"x":1566715140000,"y":12.42},{"x":1566715200000,"y":12.42},{"x":1566715260000,"y":12.42},{"x":1566715320000,"y":12.43},{"x":1566715380000,"y":12.42},{"x":1566715440000,"y":12.42},{"x":1566715500000,"y":12.42},{"x":1566715560000,"y":12.41},{"x":1566715620000,"y":12.4},{"x":1566715680000,"y":12.39},{"x":1566715740000,"y":12.38},{"x":1566715800000,"y":12.39},{"x":1566715860000,"y":12.39},{"x":1566715920000,"y":12.39},{"x":1566715980000,"y":12.41},{"x":1566716040000,"y":12.4},{"x":1566716100000,"y":12.4},{"x":1566716160000,"y":12.4},{"x":1566716220000,"y":12.4},{"x":1566716280000,"y":12.4},{"x":1566716340000,"y":12.4},{"x":1566716400000,"y":12.4},{"x":1566716460000,"y":12.4},{"x":1566716520000,"y":12.4},{"x":1566716580000,"y":12.41},{"x":1566716640000,"y":12.4},{"x":1566716700000,"y":12.4},{"x":1566716760000,"y":12.4},{"x":1566716820000,"y":12.4},{"x":1566716880000,"y":12.41},{"x":1566716940000,"y":12.39},{"x":1566717000000,"y":12.4},{"x":1566717060000,"y":12.41},{"x":1566717120000,"y":12.41},{"x":1566717180000,"y":12.41},{"x":1566717240000,"y":12.4},{"x":1566717300000,"y":12.4},{"x":1566717360000,"y":12.4},{"x":1566717420000,"y":12.4},{"x":1566717480000,"y":12.41},{"x":1566717540000,"y":12.4},{"x":1566717600000,"y":12.4},{"x":1566717660000,"y":12.4},{"x":1566717720000,"y":12.4},{"x":1566717780000,"y":12.39},{"x":1566717840000,"y":12.41},{"x":1566717900000,"y":12.4},{"x":1566717960000,"y":12.4},{"x":1566718020000,"y":12.4},{"x":1566718080000,"y":12.4},{"x":1566718140000,"y":12.41},{"x":1566718200000,"y":12.4},{"x":1566718260000,"y":12.4},{"x":1566718320000,"y":12.4},{"x":1566718380000,"y":12.4},{"x":1566718440000,"y":12.41},{"x":1566718500000,"y":12.38},{"x":1566718560000,"y":12.38},{"x":1566718620000,"y":12.38},{"x":1566718680000,"y":12.37},{"x":1566718740000,"y":12.41},{"x":1566718800000,"y":12.4},{"x":1566718860000,"y":12.4},{"x":1566718920000,"y":12.4},{"x":1566718980000,"y":12.4},{"x":1566719040000,"y":12.41},{"x":1566719100000,"y":12.38},{"x":1566719160000,"y":12.38},{"x":1566719220000,"y":12.38},{"x":1566719280000,"y":12.38},{"x":1566719340000,"y":12.4},{"x":1566719400000,"y":12.4},{"x":1566719460000,"y":12.4},{"x":1566719520000,"y":12.4},{"x":1566719580000,"y":12.4},{"x":1566719640000,"y":12.67},{"x":1566719700000,"y":12.47},{"x":1566719760000,"y":12.47},{"x":1566719820000,"y":12.47},{"x":1566719880000,"y":12.47},{"x":1566719940000,"y":12.42},{"x":1566720000000,"y":12.37},{"x":1566720060000,"y":12.36},{"x":1566720120000,"y":12.36},{"x":1566720180000,"y":12.36},{"x":1566720240000,"y":12.36},{"x":1566720300000,"y":12.41},{"x":1566720360000,"y":12.41},{"x":1566720420000,"y":12.4},{"x":1566720480000,"y":12.4},{"x":1566720540000,"y":12.4},{"x":1566720600000,"y":12.42},{"x":1566720660000,"y":12.41},{"x":1566720720000,"y":12.41},{"x":1566720780000,"y":12.41},{"x":1566720840000,"y":12.41},{"x":1566720900000,"y":12.43},{"x":1566720960000,"y":12.42},{"x":1566721020000,"y":12.42},{"x":1566721080000,"y":12.42},{"x":1566721140000,"y":12.42},{"x":1566721200000,"y":12.43},{"x":1566721260000,"y":12.42},{"x":1566721320000,"y":12.42},{"x":1566721380000,"y":12.42},{"x":1566721440000,"y":12.42},{"x":1566721500000,"y":12.43},{"x":1566721560000,"y":12.42},{"x":1566721620000,"y":12.42},{"x":1566721680000,"y":12.42},{"x":1566721740000,"y":12.42},{"x":1566721800000,"y":12.43},{"x":1566721860000,"y":12.41},{"x":1566721920000,"y":12.41},{"x":1566721980000,"y":12.41},{"x":1566722040000,"y":12.41},{"x":1566722100000,"y":12.42},{"x":1566722160000,"y":12.42},{"x":1566722220000,"y":12.42},{"x":1566722280000,"y":12.42},{"x":1566722340000,"y":12.42},{"x":1566722400000,"y":12.42},{"x":1566722460000,"y":12.43},{"x":1566722520000,"y":12.42},{"x":1566722580000,"y":12.42},{"x":1566722640000,"y":12.42},{"x":1566722700000,"y":12.42},{"x":1566722760000,"y":12.73},{"x":1566722820000,"y":12.49},{"x":1566722880000,"y":12.49},{"x":1566722940000,"y":12.49},{"x":1566723000000,"y":12.48},{"x":1566723060000,"y":12.45},{"x":1566723120000,"y":12.41},{"x":1566723180000,"y":12.41},{"x":1566723240000,"y":12.41},{"x":1566723300000,"y":12.42},{"x":1566723360000,"y":12.43},{"x":1566723420000,"y":12.42},{"x":1566723480000,"y":12.42},{"x":1566723540000,"y":12.42},{"x":1566723600000,"y":12.4},{"x":1566723660000,"y":12.42},{"x":1566723720000,"y":12.42},{"x":1566723780000,"y":12.42},{"x":1566723840000,"y":12.42},{"x":1566723900000,"y":12.42},{"x":1566723960000,"y":12.42},{"x":1566724020000,"y":12.41},{"x":1566724080000,"y":12.41},{"x":1566724140000,"y":12.41},{"x":1566724200000,"y":12.42},{"x":1566724260000,"y":12.44},{"x":1566724320000,"y":12.43},{"x":1566724380000,"y":12.43},{"x":1566724440000,"y":12.42},{"x":1566724500000,"y":12.42},{"x":1566724560000,"y":12.42},{"x":1566724620000,"y":12.43},{"x":1566724680000,"y":12.42},{"x":1566724740000,"y":12.42},{"x":1566724800000,"y":12.41},{"x":1566724860000,"y":12.41},{"x":1566724920000,"y":12.41},{"x":1566724980000,"y":12.4},{"x":1566725040000,"y":12.39},{"x":1566725100000,"y":12.37},{"x":1566725160000,"y":12.37},{"x":1566725220000,"y":12.4},{"x":1566725280000,"y":12.41},{"x":1566725340000,"y":12.41},{"x":1566725400000,"y":12.41},{"x":1566725460000,"y":12.41},{"x":1566725520000,"y":12.42},{"x":1566725580000,"y":12.41},{"x":1566725640000,"y":12.41},{"x":1566725700000,"y":12.41},{"x":1566725760000,"y":12.41},{"x":1566725820000,"y":12.42},{"x":1566725880000,"y":12.41},{"x":1566725940000,"y":12.4},{"x":1566726000000,"y":12.41},{"x":1566726060000,"y":12.41},{"x":1566726120000,"y":12.41},{"x":1566726180000,"y":12.41},{"x":1566726240000,"y":12.41},{"x":1566726300000,"y":12.42},{"x":1566726360000,"y":12.41},{"x":1566726420000,"y":12.42},{"x":1566726480000,"y":12.4},{"x":1566726540000,"y":12.4},{"x":1566726600000,"y":12.4},{"x":1566726660000,"y":12.4},{"x":1566726720000,"y":12.4},{"x":1566726780000,"y":12.42},{"x":1566726840000,"y":12.41},{"x":1566726900000,"y":12.41},{"x":1566726960000,"y":12.41},{"x":1566727020000,"y":12.41},{"x":1566727080000,"y":12.42},{"x":1566727140000,"y":12.41},{"x":1566727200000,"y":12.41},{"x":1566727260000,"y":12.41},{"x":1566727320000,"y":12.41},{"x":1566727380000,"y":12.42},{"x":1566727440000,"y":12.41},{"x":1566727500000,"y":12.39},{"x":1566727560000,"y":12.39},{"x":1566727620000,"y":12.39},{"x":1566727680000,"y":12.41},{"x":1566727740000,"y":12.42},{"x":1566727800000,"y":12.41},{"x":1566727860000,"y":12.41},{"x":1566727920000,"y":12.41},{"x":1566727980000,"y":12.42},{"x":1566728040000,"y":12.41},{"x":1566728100000,"y":12.41},{"x":1566728160000,"y":12.41},{"x":1566728220000,"y":12.41},{"x":1566728280000,"y":12.42},{"x":1566728340000,"y":12.41},{"x":1566728400000,"y":12.41},{"x":1566728460000,"y":12.41},{"x":1566728520000,"y":12.41},{"x":1566728580000,"y":12.42},{"x":1566728640000,"y":12.4},{"x":1566728700000,"y":12.38},{"x":1566728760000,"y":12.38},{"x":1566728820000,"y":12.38},{"x":1566728880000,"y":12.39},{"x":1566728940000,"y":12.4},{"x":1566729000000,"y":12.41},{"x":1566729060000,"y":12.41},{"x":1566729120000,"y":12.41},{"x":1566729180000,"y":12.41},{"x":1566729240000,"y":12.43},{"x":1566729300000,"y":12.39},{"x":1566729360000,"y":12.39},{"x":1566729420000,"y":12.39},{"x":1566729480000,"y":12.39},{"x":1566729540000,"y":12.39},{"x":1566729600000,"y":12.42},{"x":1566729660000,"y":12.42},{"x":1566729720000,"y":12.42},{"x":1566729780000,"y":12.42},{"x":1566729840000,"y":12.42},{"x":1566729900000,"y":12.41},{"x":1566729960000,"y":12.41},{"x":1566730020000,"y":12.41},{"x":1566730080000,"y":12.41},{"x":1566730140000,"y":12.42},{"x":1566730200000,"y":12.41},{"x":1566730260000,"y":12.41},{"x":1566730320000,"y":12.41},{"x":1566730380000,"y":12.41},{"x":1566730440000,"y":12.42},{"x":1566730500000,"y":12.42},{"x":1566730560000,"y":12.42},{"x":1566730620000,"y":12.41},{"x":1566730680000,"y":12.41},{"x":1566730740000,"y":12.42},{"x":1566730800000,"y":12.42},{"x":1566730860000,"y":12.42},{"x":1566730920000,"y":12.42},{"x":1566730980000,"y":12.41},{"x":1566731040000,"y":12.42},{"x":1566731100000,"y":12.42},{"x":1566731160000,"y":12.42},{"x":1566731220000,"y":12.42},{"x":1566731280000,"y":12.42},{"x":1566731340000,"y":12.43},{"x":1566731400000,"y":12.42},{"x":1566731460000,"y":12.42},{"x":1566731520000,"y":12.42},{"x":1566731580000,"y":12.42},{"x":1566731640000,"y":13.19},{"x":1566731700000,"y":12.5},{"x":1566731760000,"y":12.5},{"x":1566731820000,"y":12.49},{"x":1566731880000,"y":12.5},{"x":1566731940000,"y":12.5},{"x":1566732000000,"y":12.45},{"x":1566732060000,"y":12.44},{"x":1566732120000,"y":12.44},{"x":1566732180000,"y":12.43},{"x":1566732240000,"y":12.42},{"x":1566732300000,"y":12.51},{"x":1566732360000,"y":12.44},{"x":1566732420000,"y":12.44},{"x":1566732480000,"y":12.44},{"x":1566732540000,"y":12.44},{"x":1566732600000,"y":12.43},{"x":1566732660000,"y":12.44},{"x":1566732720000,"y":12.44},{"x":1566732780000,"y":12.44},{"x":1566732840000,"y":12.44},{"x":1566732900000,"y":12.45},{"x":1566732960000,"y":12.44},{"x":1566733020000,"y":12.44},{"x":1566733080000,"y":12.44},{"x":1566733140000,"y":12.43},{"x":1566733200000,"y":12.45},{"x":1566733260000,"y":12.44},{"x":1566733320000,"y":12.44},{"x":1566733380000,"y":12.44},{"x":1566733440000,"y":12.44},{"x":1566733500000,"y":12.43},{"x":1566733560000,"y":12.44},{"x":1566733620000,"y":12.44},{"x":1566733680000,"y":12.44},{"x":1566733740000,"y":12.44},{"x":1566733800000,"y":12.45},{"x":1566733860000,"y":12.44},{"x":1566733920000,"y":12.44},{"x":1566733980000,"y":12.44},{"x":1566734040000,"y":12.44},{"x":1566734100000,"y":12.46},{"x":1566734160000,"y":12.44},{"x":1566734220000,"y":12.42},{"x":1566734280000,"y":12.42},{"x":1566734340000,"y":12.42},{"x":1566734400000,"y":12.41},{"x":1566734460000,"y":12.42},{"x":1566734520000,"y":12.41},{"x":1566734580000,"y":12.41},{"x":1566734640000,"y":12.41},{"x":1566734700000,"y":12.42},{"x":1566734760000,"y":12.43},{"x":1566734820000,"y":12.42},{"x":1566734880000,"y":12.42},{"x":1566734940000,"y":12.42},{"x":1566735000000,"y":12.43},{"x":1566735060000,"y":12.44},{"x":1566735120000,"y":12.42},{"x":1566735180000,"y":12.42},{"x":1566735240000,"y":12.42},{"x":1566735300000,"y":12.42},{"x":1566735360000,"y":12.43},{"x":1566735420000,"y":12.42},{"x":1566735480000,"y":12.42},{"x":1566735540000,"y":12.42},{"x":1566735600000,"y":12.43},{"x":1566735660000,"y":12.42},{"x":1566735720000,"y":12.4},{"x":1566735780000,"y":12.4},{"x":1566735840000,"y":12.41},{"x":1566735900000,"y":12.39},{"x":1566735960000,"y":12.42},{"x":1566736020000,"y":12.42},{"x":1566736080000,"y":12.42},{"x":1566736140000,"y":12.42},{"x":1566736200000,"y":12.42},{"x":1566736260000,"y":12.43},{"x":1566736320000,"y":12.43},{"x":1566736380000,"y":12.43},{"x":1566736440000,"y":12.43},{"x":1566736500000,"y":12.43},{"x":1566736560000,"y":12.43},{"x":1566736620000,"y":12.43},{"x":1566736680000,"y":12.43},{"x":1566736740000,"y":12.43},{"x":1566736800000,"y":12.43},{"x":1566736860000,"y":12.43},{"x":1566736920000,"y":12.43},{"x":1566736980000,"y":12.43},{"x":1566737040000,"y":12.43},{"x":1566737100000,"y":12.43},{"x":1566737160000,"y":12.42},{"x":1566737220000,"y":12.44},{"x":1566737280000,"y":12.42},{"x":1566737340000,"y":12.42},{"x":1566737400000,"y":12.43},{"x":1566737460000,"y":12.43},{"x":1566737520000,"y":12.44},{"x":1566737580000,"y":12.43},{"x":1566737640000,"y":12.43},{"x":1566737700000,"y":12.42},{"x":1566737760000,"y":12.42},{"x":1566737820000,"y":12.43},{"x":1566737880000,"y":12.43},{"x":1566737940000,"y":12.43},{"x":1566738000000,"y":12.43},{"x":1566738060000,"y":12.43},{"x":1566738120000,"y":12.45},{"x":1566738180000,"y":12.43},{"x":1566738240000,"y":12.43},{"x":1566738300000,"y":12.41},{"x":1566738360000,"y":12.41},{"x":1566738420000,"y":12.42},{"x":1566738480000,"y":12.43},{"x":1566738540000,"y":12.43},{"x":1566738600000,"y":12.43},{"x":1566738660000,"y":12.43},{"x":1566738720000,"y":12.44},{"x":1566738780000,"y":12.44},{"x":1566738840000,"y":12.44},{"x":1566738900000,"y":12.43},{"x":1566738960000,"y":12.43},{"x":1566739020000,"y":12.43},{"x":1566739080000,"y":12.45},{"x":1566739140000,"y":12.44},{"x":1566739200000,"y":12.44},{"x":1566739260000,"y":12.44},{"x":1566739320000,"y":12.44},{"x":1566739380000,"y":12.45},{"x":1566739440000,"y":12.43},{"x":1566739500000,"y":12.44},{"x":1566739560000,"y":12.44},{"x":1566739620000,"y":12.44},{"x":1566739680000,"y":12.45},{"x":1566739740000,"y":12.44},{"x":1566739800000,"y":12.43},{"x":1566739860000,"y":12.43},{"x":1566739920000,"y":12.43},{"x":1566739980000,"y":12.44},{"x":1566740040000,"y":12.43},{"x":1566740100000,"y":12.44},{"x":1566740160000,"y":12.44},{"x":1566740220000,"y":12.44},{"x":1566740280000,"y":12.45},{"x":1566740340000,"y":12.43},{"x":1566740400000,"y":12.44},{"x":1566740460000,"y":12.44},{"x":1566740520000,"y":12.44},{"x":1566740580000,"y":12.45},{"x":1566740640000,"y":12.44},{"x":1566740700000,"y":12.43},{"x":1566740760000,"y":12.43},{"x":1566740820000,"y":12.43},{"x":1566740880000,"y":12.44},{"x":1566740940000,"y":12.44},{"x":1566741000000,"y":12.43},{"x":1566741060000,"y":12.43},{"x":1566741120000,"y":12.43},{"x":1566741180000,"y":12.45},{"x":1566741240000,"y":12.44},{"x":1566741300000,"y":12.43},{"x":1566741360000,"y":12.43},{"x":1566741420000,"y":12.43},{"x":1566741480000,"y":12.43},{"x":1566741540000,"y":12.45},{"x":1566741600000,"y":12.44},{"x":1566741660000,"y":12.44},{"x":1566741720000,"y":12.44},{"x":1566741780000,"y":12.44},{"x":1566741840000,"y":12.45},{"x":1566741900000,"y":12.41},{"x":1566741960000,"y":12.41},{"x":1566742020000,"y":12.41},{"x":1566742080000,"y":12.41},{"x":1566742140000,"y":12.45},{"x":1566742200000,"y":12.43},{"x":1566742260000,"y":12.43},{"x":1566742320000,"y":12.43},{"x":1566742380000,"y":12.43},{"x":1566742440000,"y":12.45},{"x":1566742500000,"y":12.41},{"x":1566742560000,"y":12.41},{"x":1566742620000,"y":12.42},{"x":1566742680000,"y":12.42},{"x":1566742740000,"y":12.44},{"x":1566742800000,"y":12.44},{"x":1566742860000,"y":12.43},{"x":1566742920000,"y":12.44},{"x":1566742980000,"y":12.44},{"x":1566743040000,"y":12.45},{"x":1566743100000,"y":12.44},{"x":1566743160000,"y":12.44},{"x":1566743220000,"y":12.44},{"x":1566743280000,"y":12.44},{"x":1566743340000,"y":12.42},{"x":1566743400000,"y":12.42},{"x":1566743460000,"y":12.42},{"x":1566743520000,"y":12.42},{"x":1566743580000,"y":12.42},{"x":1566743640000,"y":12.43},{"x":1566743700000,"y":12.43},{"x":1566743760000,"y":12.42},{"x":1566743820000,"y":12.42},{"x":1566743880000,"y":12.42},{"x":1566743940000,"y":12.44},{"x":1566744000000,"y":12.44},{"x":1566744060000,"y":12.43},{"x":1566744120000,"y":12.44},{"x":1566744180000,"y":12.44},{"x":1566744240000,"y":12.44},{"x":1566744300000,"y":12.44},{"x":1566744360000,"y":12.43},{"x":1566744420000,"y":12.43},{"x":1566744480000,"y":12.43},{"x":1566744540000,"y":12.43},{"x":1566744600000,"y":12.78},{"x":1566744660000,"y":12.49},{"x":1566744720000,"y":12.48},{"x":1566744780000,"y":12.49},{"x":1566744840000,"y":12.49},{"x":1566744900000,"y":12.45},{"x":1566744960000,"y":12.4},{"x":1566745020000,"y":12.4},{"x":1566745080000,"y":12.4},{"x":1566745140000,"y":12.4},{"x":1566745200000,"y":12.43},{"x":1566745260000,"y":12.43},{"x":1566745320000,"y":12.43},{"x":1566745380000,"y":12.43},{"x":1566745440000,"y":12.43},{"x":1566745500000,"y":12.43},{"x":1566745560000,"y":12.43},{"x":1566745620000,"y":12.43},{"x":1566745680000,"y":12.43},{"x":1566745740000,"y":12.43},{"x":1566745800000,"y":12.44},{"x":1566745860000,"y":12.43},{"x":1566745920000,"y":12.43},{"x":1566745980000,"y":12.43},{"x":1566746040000,"y":12.43},{"x":1566746100000,"y":12.45},{"x":1566746160000,"y":12.44},{"x":1566746220000,"y":12.44},{"x":1566746280000,"y":12.44},{"x":1566746340000,"y":12.44},{"x":1566746400000,"y":12.43},{"x":1566746460000,"y":12.45},{"x":1566746520000,"y":12.43},{"x":1566746580000,"y":12.43},{"x":1566746640000,"y":12.42},{"x":1566746700000,"y":12.43},{"x":1566746760000,"y":12.44},{"x":1566746820000,"y":12.44},{"x":1566746880000,"y":12.44},{"x":1566746940000,"y":12.43},{"x":1566747000000,"y":12.43},{"x":1566747060000,"y":12.44},{"x":1566747120000,"y":12.43},{"x":1566747180000,"y":12.43},{"x":1566747240000,"y":12.43},{"x":1566747300000,"y":12.41},{"x":1566747360000,"y":12.44},{"x":1566747420000,"y":12.44},{"x":1566747480000,"y":12.44},{"x":1566747540000,"y":12.43},{"x":1566747600000,"y":12.42},{"x":1566747660000,"y":12.43},{"x":1566747720000,"y":12.43},{"x":1566747780000,"y":12.43},{"x":1566747840000,"y":12.43},{"x":1566747900000,"y":12.43},{"x":1566747960000,"y":12.44},{"x":1566748020000,"y":12.43},{"x":1566748080000,"y":12.43},{"x":1566748140000,"y":12.43},{"x":1566748200000,"y":12.44},{"x":1566748260000,"y":12.45},{"x":1566748320000,"y":12.43},{"x":1566748380000,"y":12.43},{"x":1566748440000,"y":12.43},{"x":1566748500000,"y":12.43},{"x":1566748560000,"y":12.43},{"x":1566748620000,"y":12.43},{"x":1566748680000,"y":12.41},{"x":1566748740000,"y":12.41},{"x":1566748800000,"y":12.44},{"x":1566748860000,"y":12.44},{"x":1566748920000,"y":12.45},{"x":1566748980000,"y":12.44},{"x":1566749040000,"y":12.44},{"x":1566749100000,"y":12.43},{"x":1566749160000,"y":12.43},{"x":1566749220000,"y":12.42},{"x":1566749280000,"y":12.41},{"x":1566749340000,"y":12.44},{"x":1566749400000,"y":12.45},{"x":1566749460000,"y":12.44},{"x":1566749520000,"y":12.45},{"x":1566749580000,"y":12.44},{"x":1566749640000,"y":12.43},{"x":1566749700000,"y":12.44},{"x":1566749760000,"y":12.44},{"x":1566749820000,"y":12.45},{"x":1566749880000,"y":12.44},{"x":1566749940000,"y":12.44},{"x":1566750000000,"y":12.44},{"x":1566750060000,"y":12.44},{"x":1566750120000,"y":12.45},{"x":1566750180000,"y":12.44},{"x":1566750240000,"y":12.44},{"x":1566750300000,"y":12.43},{"x":1566750360000,"y":12.43},{"x":1566750420000,"y":12.44},{"x":1566750480000,"y":12.43},{"x":1566750540000,"y":12.43},{"x":1566750600000,"y":12.44},{"x":1566750660000,"y":12.44},{"x":1566750720000,"y":12.45},{"x":1566750780000,"y":12.44},{"x":1566750840000,"y":12.44},{"x":1566750900000,"y":12.44},{"x":1566750960000,"y":12.45},{"x":1566751020000,"y":12.46},{"x":1566751080000,"y":12.45},{"x":1566751140000,"y":12.45},{"x":1566751200000,"y":12.4},{"x":1566751260000,"y":12.4},{"x":1566751320000,"y":12.4},{"x":1566751380000,"y":12.46},{"x":1566751440000,"y":12.44},{"x":1566751500000,"y":12.44},{"x":1566751560000,"y":12.44},{"x":1566751620000,"y":12.44},{"x":1566751680000,"y":12.45},{"x":1566751740000,"y":12.45},{"x":1566751800000,"y":12.45},{"x":1566751860000,"y":12.45},{"x":1566751920000,"y":12.45},{"x":1566751980000,"y":12.46},{"x":1566752040000,"y":12.45},{"x":1566752100000,"y":12.45},{"x":1566752160000,"y":12.45},{"x":1566752220000,"y":12.45},{"x":1566752280000,"y":12.46},{"x":1566752340000,"y":12.44},{"x":1566752400000,"y":12.43},{"x":1566752460000,"y":12.43},{"x":1566752520000,"y":12.43},{"x":1566752580000,"y":12.45},{"x":1566752640000,"y":12.43},{"x":1566752700000,"y":12.43},{"x":1566752760000,"y":12.43},{"x":1566752820000,"y":12.43},{"x":1566752880000,"y":12.44},{"x":1566752940000,"y":12.41},{"x":1566753000000,"y":12.42},{"x":1566753060000,"y":12.42},{"x":1566753120000,"y":12.42},{"x":1566753180000,"y":12.43},{"x":1566753240000,"y":12.43},{"x":1566753300000,"y":12.43},{"x":1566753360000,"y":12.43},{"x":1566753420000,"y":12.43},{"x":1566753480000,"y":12.44},{"x":1566753540000,"y":12.43},{"x":1566753600000,"y":12.43},{"x":1566753660000,"y":12.43},{"x":1566753720000,"y":12.43},{"x":1566753780000,"y":12.43},{"x":1566753840000,"y":12.44},{"x":1566753900000,"y":12.43},{"x":1566753960000,"y":12.43},{"x":1566754020000,"y":12.43},{"x":1566754080000,"y":12.43},{"x":1566754140000,"y":12.45},{"x":1566754200000,"y":12.43},{"x":1566754260000,"y":12.43},{"x":1566754320000,"y":12.43},{"x":1566754380000,"y":12.43},{"x":1566754440000,"y":12.45},{"x":1566754500000,"y":12.44},{"x":1566754560000,"y":12.44},{"x":1566754620000,"y":12.44},{"x":1566754680000,"y":12.44},{"x":1566754740000,"y":12.44},{"x":1566754800000,"y":12.41},{"x":1566754860000,"y":12.41},{"x":1566754920000,"y":12.41},{"x":1566754980000,"y":12.41},{"x":1566755040000,"y":12.43},{"x":1566755100000,"y":12.43},{"x":1566755160000,"y":12.43},{"x":1566755220000,"y":12.43},{"x":1566755280000,"y":12.43},{"x":1566755340000,"y":12.44},{"x":1566755400000,"y":12.44},{"x":1566755460000,"y":12.44},{"x":1566755520000,"y":12.44},{"x":1566755580000,"y":12.44},{"x":1566755640000,"y":12.45},{"x":1566755700000,"y":12.43},{"x":1566755760000,"y":12.43},{"x":1566755820000,"y":12.43},{"x":1566755880000,"y":12.43},{"x":1566755940000,"y":12.43},{"x":1566756000000,"y":12.45},{"x":1566756060000,"y":12.44},{"x":1566756120000,"y":12.44},{"x":1566756180000,"y":12.44},{"x":1566756240000,"y":12.44},{"x":1566756300000,"y":12.45},{"x":1566756360000,"y":12.44},{"x":1566756420000,"y":12.44},{"x":1566756480000,"y":12.45},{"x":1566756540000,"y":12.42},{"x":1566756600000,"y":12.45},{"x":1566756660000,"y":12.44},{"x":1566756720000,"y":12.44},{"x":1566756780000,"y":12.44},{"x":1566756840000,"y":12.44},{"x":1566756900000,"y":12.43},{"x":1566756960000,"y":12.43},{"x":1566757020000,"y":12.43},{"x":1566757080000,"y":12.43},{"x":1566757140000,"y":12.43},{"x":1566757200000,"y":12.43},{"x":1566757260000,"y":12.43},{"x":1566757320000,"y":12.43},{"x":1566757380000,"y":12.43},{"x":1566757440000,"y":12.42},{"x":1566757500000,"y":12.44},{"x":1566757560000,"y":12.42},{"x":1566757620000,"y":12.42},{"x":1566757680000,"y":12.43},{"x":1566757740000,"y":12.43},{"x":1566757800000,"y":12.44},{"x":1566757860000,"y":12.45},{"x":1566757920000,"y":12.44},{"x":1566757980000,"y":12.44},{"x":1566758040000,"y":12.44},{"x":1566758100000,"y":12.45},{"x":1566758160000,"y":12.45},{"x":1566758220000,"y":12.45},{"x":1566758280000,"y":12.45},{"x":1566758340000,"y":12.44},{"x":1566758400000,"y":12.42},{"x":1566758460000,"y":12.43},{"x":1566758520000,"y":12.41},{"x":1566758580000,"y":12.41},{"x":1566758640000,"y":12.41},{"x":1566758700000,"y":12.42},{"x":1566758760000,"y":12.44},{"x":1566758820000,"y":12.44},{"x":1566758880000,"y":12.44},{"x":1566758940000,"y":12.44},{"x":1566759000000,"y":12.44},{"x":1566759060000,"y":12.45},{"x":1566759120000,"y":12.45},{"x":1566759180000,"y":12.44},{"x":1566759240000,"y":12.44},{"x":1566759300000,"y":12.42},{"x":1566759360000,"y":12.45},{"x":1566759420000,"y":12.44},{"x":1566759480000,"y":12.44},{"x":1566759540000,"y":12.44},{"x":1566759600000,"y":12.45},{"x":1566759660000,"y":12.46},{"x":1566759720000,"y":12.44},{"x":1566759780000,"y":12.44},{"x":1566759840000,"y":12.44},{"x":1566759900000,"y":12.44},{"x":1566759960000,"y":12.45},{"x":1566760020000,"y":12.44},{"x":1566760080000,"y":12.45},{"x":1566760140000,"y":12.45},{"x":1566760200000,"y":12.46},{"x":1566760260000,"y":12.47},{"x":1566760320000,"y":12.44},{"x":1566760380000,"y":12.44},{"x":1566760440000,"y":12.44},{"x":1566760500000,"y":12.44},{"x":1566760560000,"y":12.44},{"x":1566760620000,"y":12.45},{"x":1566760680000,"y":12.44},{"x":1566760740000,"y":12.44},{"x":1566760800000,"y":12.41},{"x":1566760860000,"y":12.41},{"x":1566760920000,"y":12.46},{"x":1566760980000,"y":12.45},{"x":1566761040000,"y":12.44},{"x":1566761100000,"y":12.44},{"x":1566761160000,"y":12.44},{"x":1566761220000,"y":12.45},{"x":1566761280000,"y":12.44},{"x":1566761340000,"y":12.44},{"x":1566761400000,"y":12.45},{"x":1566761460000,"y":12.45},{"x":1566761520000,"y":12.46},{"x":1566761580000,"y":12.45},{"x":1566761640000,"y":12.45},{"x":1566761700000,"y":12.45},{"x":1566761760000,"y":12.45},{"x":1566761820000,"y":12.46},{"x":1566761880000,"y":12.45},{"x":1566761940000,"y":12.44},{"x":1566762000000,"y":12.4},{"x":1566762060000,"y":12.4},{"x":1566762120000,"y":12.42},{"x":1566762180000,"y":12.43},{"x":1566762240000,"y":12.43},{"x":1566762300000,"y":12.4},{"x":1566762360000,"y":12.4},{"x":1566762420000,"y":12.41},{"x":1566762480000,"y":12.42},{"x":1566762540000,"y":12.42},{"x":1566762600000,"y":12.44},{"x":1566762660000,"y":12.44},{"x":1566762720000,"y":12.44},{"x":1566762780000,"y":12.44},{"x":1566762840000,"y":12.44},{"x":1566762900000,"y":12.44},{"x":1566762960000,"y":12.44},{"x":1566763020000,"y":12.45},{"x":1566763080000,"y":12.44},{"x":1566763140000,"y":12.44},{"x":1566763200000,"y":12.44},{"x":1566763260000,"y":12.44},{"x":1566763320000,"y":12.44},{"x":1566763380000,"y":12.45},{"x":1566763440000,"y":12.44},{"x":1566763500000,"y":12.44},{"x":1566763560000,"y":12.44},{"x":1566763620000,"y":12.44},{"x":1566763680000,"y":12.45},{"x":1566763740000,"y":12.44},{"x":1566763800000,"y":12.43},{"x":1566763860000,"y":12.43},{"x":1566763920000,"y":12.42},{"x":1566763980000,"y":12.44},{"x":1566764040000,"y":12.43},{"x":1566764100000,"y":12.42},{"x":1566764160000,"y":12.42},{"x":1566764220000,"y":12.42},{"x":1566764280000,"y":12.45},{"x":1566764340000,"y":12.45},{"x":1566764400000,"y":12.43},{"x":1566764460000,"y":12.43},{"x":1566764520000,"y":12.43},{"x":1566764580000,"y":12.44},{"x":1566764640000,"y":12.43},{"x":1566764700000,"y":12.41},{"x":1566764760000,"y":12.41},{"x":1566764820000,"y":12.41},{"x":1566764880000,"y":12.43},{"x":1566764940000,"y":12.42},{"x":1566765000000,"y":12.44},{"x":1566765060000,"y":12.45},{"x":1566765120000,"y":12.45},{"x":1566765180000,"y":12.45},{"x":1566765240000,"y":12.44},{"x":1566765300000,"y":12.44},{"x":1566765360000,"y":12.44},{"x":1566765420000,"y":12.44},{"x":1566765480000,"y":12.46},{"x":1566765540000,"y":12.44},{"x":1566765600000,"y":12.45},{"x":1566765660000,"y":12.45},{"x":1566765720000,"y":12.45},{"x":1566765780000,"y":12.45},{"x":1566765840000,"y":12.46},{"x":1566765900000,"y":12.44},{"x":1566765960000,"y":12.44},{"x":1566766020000,"y":12.44},{"x":1566766080000,"y":12.44},{"x":1566766140000,"y":12.45},{"x":1566766200000,"y":12.44},{"x":1566766260000,"y":12.44},{"x":1566766320000,"y":12.44},{"x":1566766380000,"y":12.44},{"x":1566766440000,"y":12.8},{"x":1566766500000,"y":12.51},{"x":1566766560000,"y":12.51},{"x":1566766620000,"y":12.51},{"x":1566766680000,"y":12.51},{"x":1566766740000,"y":12.49},{"x":1566766800000,"y":12.42},{"x":1566766860000,"y":12.42},{"x":1566766920000,"y":12.42},{"x":1566766980000,"y":12.42},{"x":1566767040000,"y":12.44},{"x":1566767100000,"y":12.45},{"x":1566767160000,"y":12.45},{"x":1566767220000,"y":12.45},{"x":1566767280000,"y":12.45},{"x":1566767340000,"y":12.45},{"x":1566767400000,"y":12.44},{"x":1566767460000,"y":12.44},{"x":1566767520000,"y":12.44},{"x":1566767580000,"y":12.44},{"x":1566767640000,"y":12.45},{"x":1566767700000,"y":12.44},{"x":1566767760000,"y":12.44},{"x":1566767820000,"y":12.44},{"x":1566767880000,"y":12.44},{"x":1566767940000,"y":12.44},{"x":1566768000000,"y":12.46},{"x":1566768060000,"y":12.45},{"x":1566768120000,"y":12.45},{"x":1566768180000,"y":12.45},{"x":1566768240000,"y":12.44},{"x":1566768300000,"y":12.47},{"x":1566768360000,"y":12.45},{"x":1566768420000,"y":12.45},{"x":1566768480000,"y":12.45},{"x":1566768540000,"y":12.45},{"x":1566768600000,"y":12.46},{"x":1566768660000,"y":12.45},{"x":1566768720000,"y":12.45},{"x":1566768780000,"y":12.45},{"x":1566768840000,"y":12.45},{"x":1566768900000,"y":12.46},{"x":1566768960000,"y":12.44},{"x":1566769020000,"y":12.44},{"x":1566769080000,"y":12.44},{"x":1566769140000,"y":12.45},{"x":1566769200000,"y":12.47},{"x":1566769260000,"y":12.45},{"x":1566769320000,"y":12.45},{"x":1566769380000,"y":12.45},{"x":1566769440000,"y":12.45},{"x":1566769500000,"y":12.44},{"x":1566769560000,"y":12.45},{"x":1566769620000,"y":12.45},{"x":1566769680000,"y":12.45},{"x":1566769740000,"y":12.45},{"x":1566769800000,"y":12.45},{"x":1566769860000,"y":12.45},{"x":1566769920000,"y":12.45},{"x":1566769980000,"y":12.45},{"x":1566770040000,"y":12.45},{"x":1566770100000,"y":12.44},{"x":1566770160000,"y":12.46},{"x":1566770220000,"y":12.45},{"x":1566770280000,"y":12.45},{"x":1566770340000,"y":12.45},{"x":1566770400000,"y":12.45},{"x":1566770460000,"y":12.46},{"x":1566770520000,"y":12.45},{"x":1566770580000,"y":12.45},{"x":1566770640000,"y":12.45},{"x":1566770700000,"y":12.45},{"x":1566770760000,"y":12.46},{"x":1566770820000,"y":12.46},{"x":1566770880000,"y":12.46},{"x":1566770940000,"y":12.46},{"x":1566771000000,"y":12.46},{"x":1566771060000,"y":12.47},{"x":1566771120000,"y":12.45},{"x":1566771180000,"y":12.45},{"x":1566771240000,"y":12.45},{"x":1566771300000,"y":12.42},{"x":1566771360000,"y":12.44},{"x":1566771420000,"y":12.44},{"x":1566771480000,"y":12.44},{"x":1566771540000,"y":12.44},{"x":1566771600000,"y":12.44},{"x":1566771660000,"y":12.45},{"x":1566771720000,"y":12.44},{"x":1566771780000,"y":12.44},{"x":1566771840000,"y":12.43},{"x":1566771900000,"y":12.44},{"x":1566771960000,"y":12.44},{"x":1566772020000,"y":12.47},{"x":1566772080000,"y":12.45},{"x":1566772140000,"y":12.45},{"x":1566772200000,"y":12.44},{"x":1566772260000,"y":12.44},{"x":1566772320000,"y":12.45},{"x":1566772380000,"y":12.44},{"x":1566772440000,"y":12.44},{"x":1566772500000,"y":12.43},{"x":1566772560000,"y":12.44},{"x":1566772620000,"y":12.45},{"x":1566772680000,"y":12.45},{"x":1566772740000,"y":12.45},{"x":1566772800000,"y":12.44},{"x":1566772860000,"y":12.44},{"x":1566772920000,"y":12.45},{"x":1566772980000,"y":12.44},{"x":1566773040000,"y":12.44},{"x":1566773100000,"y":12.45},{"x":1566773160000,"y":12.45},{"x":1566773220000,"y":12.45},{"x":1566773280000,"y":12.45},{"x":1566773340000,"y":12.45},{"x":1566773400000,"y":12.45},{"x":1566773460000,"y":12.45},{"x":1566773520000,"y":12.45},{"x":1566773580000,"y":12.45},{"x":1566773640000,"y":12.45},{"x":1566773700000,"y":12.45},{"x":1566773760000,"y":12.45},{"x":1566773820000,"y":12.46},{"x":1566773880000,"y":12.44},{"x":1566773940000,"y":12.45},{"x":1566774000000,"y":12.43},{"x":1566774060000,"y":12.43},{"x":1566774120000,"y":12.43},{"x":1566774180000,"y":12.46},{"x":1566774240000,"y":12.44},{"x":1566774300000,"y":12.45},{"x":1566774360000,"y":12.45},{"x":1566774420000,"y":12.45},{"x":1566774480000,"y":12.46},{"x":1566774540000,"y":12.43},{"x":1566774600000,"y":12.46},{"x":1566774660000,"y":12.46},{"x":1566774720000,"y":12.46},{"x":1566774780000,"y":12.46},{"x":1566774840000,"y":12.45},{"x":1566774900000,"y":12.43},{"x":1566774960000,"y":12.43},{"x":1566775020000,"y":12.43},{"x":1566775080000,"y":12.44},{"x":1566775140000,"y":12.44},{"x":1566775200000,"y":12.45},{"x":1566775260000,"y":12.45},{"x":1566775320000,"y":12.45},{"x":1566775380000,"y":12.46},{"x":1566775440000,"y":12.44},{"x":1566775500000,"y":12.44},{"x":1566775560000,"y":12.44},{"x":1566775620000,"y":12.43},{"x":1566775680000,"y":12.45},{"x":1566775740000,"y":12.45},{"x":1566775800000,"y":12.45},{"x":1566775860000,"y":12.45},{"x":1566775920000,"y":12.45},{"x":1566775980000,"y":12.46},{"x":1566776040000,"y":12.45},{"x":1566776100000,"y":12.45},{"x":1566776160000,"y":12.45},{"x":1566776220000,"y":12.45},{"x":1566776280000,"y":12.45},{"x":1566776340000,"y":12.47},{"x":1566776400000,"y":12.46},{"x":1566776460000,"y":12.46},{"x":1566776520000,"y":12.46},{"x":1566776580000,"y":12.46},{"x":1566776640000,"y":12.46},{"x":1566776700000,"y":12.46},{"x":1566776760000,"y":12.46},{"x":1566776820000,"y":12.46},{"x":1566776880000,"y":12.46},{"x":1566776940000,"y":12.47},{"x":1566777000000,"y":12.44},{"x":1566777060000,"y":12.44},{"x":1566777120000,"y":12.44},{"x":1566777180000,"y":12.44},{"x":1566777240000,"y":12.46},{"x":1566777300000,"y":12.43},{"x":1566777360000,"y":12.43},{"x":1566777420000,"y":12.43},{"x":1566777480000,"y":12.43},{"x":1566777540000,"y":12.44},{"x":1566777600000,"y":12.45},{"x":1566777660000,"y":12.45},{"x":1566777720000,"y":12.45},{"x":1566777780000,"y":12.45},{"x":1566777840000,"y":12.46},{"x":1566777900000,"y":12.46},{"x":1566777960000,"y":12.46},{"x":1566778020000,"y":12.46},{"x":1566778080000,"y":12.46},{"x":1566778140000,"y":12.47},{"x":1566778200000,"y":12.46},{"x":1566778260000,"y":12.46},{"x":1566778320000,"y":12.46},{"x":1566778380000,"y":12.46},{"x":1566778440000,"y":12.46},{"x":1566778500000,"y":12.47},{"x":1566778560000,"y":12.46},{"x":1566778620000,"y":12.46},{"x":1566778680000,"y":12.46},{"x":1566778740000,"y":12.46},{"x":1566778800000,"y":12.46},{"x":1566778860000,"y":12.45},{"x":1566778920000,"y":12.45},{"x":1566778980000,"y":12.45},{"x":1566779040000,"y":12.45},{"x":1566779100000,"y":12.46},{"x":1566779160000,"y":12.45},{"x":1566779220000,"y":12.45},{"x":1566779280000,"y":12.45},{"x":1566779340000,"y":12.44},{"x":1566779400000,"y":12.47},{"x":1566779460000,"y":12.46},{"x":1566779520000,"y":12.46},{"x":1566779580000,"y":12.46},{"x":1566779640000,"y":12.46},{"x":1566779700000,"y":12.46},{"x":1566779760000,"y":12.47},{"x":1566779820000,"y":12.47},{"x":1566779880000,"y":12.46},{"x":1566779940000,"y":12.46},{"x":1566780000000,"y":12.47},{"x":1566780060000,"y":12.46},{"x":1566780120000,"y":12.46},{"x":1566780180000,"y":12.46},{"x":1566780240000,"y":12.45},{"x":1566780300000,"y":12.47},{"x":1566780360000,"y":12.46},{"x":1566780420000,"y":12.45},{"x":1566780480000,"y":12.44},{"x":1566780540000,"y":12.43},{"x":1566780600000,"y":12.45},{"x":1566780660000,"y":12.46},{"x":1566780720000,"y":12.45},{"x":1566780780000,"y":12.45},{"x":1566780840000,"y":12.44},{"x":1566780900000,"y":12.44},{"x":1566780960000,"y":12.45},{"x":1566781020000,"y":12.44},{"x":1566781080000,"y":12.44},{"x":1566781140000,"y":12.45},{"x":1566781200000,"y":12.45},{"x":1566781260000,"y":12.45},{"x":1566781320000,"y":12.44},{"x":1566781380000,"y":12.44},{"x":1566781440000,"y":12.44},{"x":1566781500000,"y":12.42},{"x":1566781560000,"y":12.45},{"x":1566781620000,"y":12.44},{"x":1566781680000,"y":12.44},{"x":1566781740000,"y":12.45},{"x":1566781800000,"y":12.45},{"x":1566781860000,"y":12.47},{"x":1566781920000,"y":12.45},{"x":1566781980000,"y":12.45},{"x":1566782040000,"y":12.45},{"x":1566782100000,"y":12.45},{"x":1566782160000,"y":12.46},{"x":1566782220000,"y":12.45},{"x":1566782280000,"y":12.44},{"x":1566782340000,"y":12.44},{"x":1566782400000,"y":12.45},{"x":1566782460000,"y":12.46},{"x":1566782520000,"y":12.45},{"x":1566782580000,"y":12.45},{"x":1566782640000,"y":12.45},{"x":1566782700000,"y":12.44},{"x":1566782760000,"y":12.45},{"x":1566782820000,"y":12.45},{"x":1566782880000,"y":12.45},{"x":1566782940000,"y":12.44},{"x":1566783000000,"y":12.45},{"x":1566783060000,"y":12.45},{"x":1566783120000,"y":12.47},{"x":1566783180000,"y":12.45},{"x":1566783240000,"y":12.45},{"x":1566783300000,"y":12.45},{"x":1566783360000,"y":12.45},{"x":1566783420000,"y":12.45},{"x":1566783480000,"y":12.44},{"x":1566783540000,"y":12.46},{"x":1566783600000,"y":12.44},{"x":1566783660000,"y":12.44},{"x":1566783720000,"y":12.45},{"x":1566783780000,"y":12.45},{"x":1566783840000,"y":12.45},{"x":1566783900000,"y":12.42},{"x":1566783960000,"y":12.42},{"x":1566784020000,"y":12.44},{"x":1566784080000,"y":12.43},{"x":1566784140000,"y":12.43},{"x":1566784200000,"y":12.42},{"x":1566784260000,"y":12.42},{"x":1566784320000,"y":12.44},{"x":1566784380000,"y":12.46},{"x":1566784440000,"y":12.46},{"x":1566784500000,"y":12.45},{"x":1566784560000,"y":12.45},{"x":1566784620000,"y":12.47},{"x":1566784680000,"y":12.45},{"x":1566784740000,"y":12.45},{"x":1566784800000,"y":12.45},{"x":1566784860000,"y":12.45},{"x":1566784920000,"y":12.46},{"x":1566784980000,"y":12.46},{"x":1566785040000,"y":12.46},{"x":1566785100000,"y":12.45},{"x":1566785160000,"y":12.45},{"x":1566785220000,"y":12.46},{"x":1566785280000,"y":12.46},{"x":1566785340000,"y":12.46},{"x":1566785400000,"y":12.45},{"x":1566785460000,"y":12.45},{"x":1566785520000,"y":12.45},{"x":1566785580000,"y":12.47},{"x":1566785640000,"y":12.46},{"x":1566785700000,"y":12.43},{"x":1566785760000,"y":12.42},{"x":1566785820000,"y":12.44},{"x":1566785880000,"y":12.47},{"x":1566785940000,"y":12.46},{"x":1566786000000,"y":12.43},{"x":1566786060000,"y":12.43},{"x":1566786120000,"y":12.43},{"x":1566786180000,"y":12.45},{"x":1566786240000,"y":12.45},{"x":1566786300000,"y":12.45},{"x":1566786360000,"y":12.45},{"x":1566786420000,"y":12.45},{"x":1566786480000,"y":12.47},{"x":1566786540000,"y":12.46},{"x":1566786600000,"y":12.46},{"x":1566786660000,"y":12.46},{"x":1566786720000,"y":12.46},{"x":1566786780000,"y":12.47},{"x":1566786840000,"y":12.46},{"x":1566786900000,"y":12.46},{"x":1566786960000,"y":12.46},{"x":1566787020000,"y":12.46},{"x":1566787080000,"y":12.46},{"x":1566787140000,"y":12.46},{"x":1566787200000,"y":12.45},{"x":1566787260000,"y":12.45},{"x":1566787320000,"y":12.45},{"x":1566787380000,"y":12.46},{"x":1566787440000,"y":12.46},{"x":1566787500000,"y":12.46},{"x":1566787560000,"y":12.46},{"x":1566787620000,"y":12.46},{"x":1566787680000,"y":12.46},{"x":1566787740000,"y":12.46},{"x":1566787800000,"y":12.45},{"x":1566787860000,"y":12.45},{"x":1566787920000,"y":12.45},{"x":1566787980000,"y":12.45},{"x":1566788040000,"y":12.47},{"x":1566788100000,"y":12.46},{"x":1566788160000,"y":12.46},{"x":1566788220000,"y":12.46},{"x":1566788280000,"y":12.46},{"x":1566788340000,"y":12.77},{"x":1566788400000,"y":12.52},{"x":1566788460000,"y":12.52},{"x":1566788520000,"y":12.52},{"x":1566788580000,"y":12.52},{"x":1566788640000,"y":12.49},{"x":1566788700000,"y":12.46},{"x":1566788760000,"y":12.46},{"x":1566788820000,"y":12.45},{"x":1566788880000,"y":12.45},{"x":1566788940000,"y":12.48},{"x":1566789000000,"y":12.47},{"x":1566789060000,"y":12.47},{"x":1566789120000,"y":12.47},{"x":1566789180000,"y":12.47},{"x":1566789240000,"y":12.48},{"x":1566789300000,"y":12.44},{"x":1566789360000,"y":12.44},{"x":1566789420000,"y":12.44},{"x":1566789480000,"y":12.44},{"x":1566789540000,"y":12.45},{"x":1566789600000,"y":12.47},{"x":1566789660000,"y":12.47},{"x":1566789720000,"y":12.47},{"x":1566789780000,"y":12.45},{"x":1566789840000,"y":12.44},{"x":1566789900000,"y":12.43},{"x":1566789960000,"y":12.41},{"x":1566790020000,"y":12.41},{"x":1566790080000,"y":12.41},{"x":1566790140000,"y":12.41},{"x":1566790200000,"y":12.46},{"x":1566790260000,"y":12.45},{"x":1566790320000,"y":12.45},{"x":1566790380000,"y":12.45},{"x":1566790440000,"y":12.45},{"x":1566790500000,"y":12.46},{"x":1566790560000,"y":12.45},{"x":1566790620000,"y":12.45},{"x":1566790680000,"y":12.45},{"x":1566790740000,"y":12.44},{"x":1566790800000,"y":12.44},{"x":1566790860000,"y":12.44},{"x":1566790920000,"y":12.44},{"x":1566790980000,"y":12.44},{"x":1566791040000,"y":12.43},{"x":1566791100000,"y":12.46},{"x":1566791160000,"y":12.46},{"x":1566791220000,"y":12.46},{"x":1566791280000,"y":12.46},{"x":1566791340000,"y":12.46},{"x":1566791400000,"y":12.46},{"x":1566791460000,"y":12.45},{"x":1566791520000,"y":12.45},{"x":1566791580000,"y":12.45},{"x":1566791640000,"y":12.45},{"x":1566791700000,"y":12.44},{"x":1566791760000,"y":12.45},{"x":1566791820000,"y":12.45},{"x":1566791880000,"y":12.45},{"x":1566791940000,"y":12.46},{"x":1566792000000,"y":12.45},{"x":1566792060000,"y":12.45},{"x":1566792120000,"y":12.45},{"x":1566792180000,"y":12.45},{"x":1566792240000,"y":12.45},{"x":1566792300000,"y":12.45},{"x":1566792360000,"y":12.46},{"x":1566792420000,"y":12.45},{"x":1566792480000,"y":12.45},{"x":1566792540000,"y":12.46},{"x":1566792600000,"y":12.46},{"x":1566792660000,"y":12.45},{"x":1566792720000,"y":12.44},{"x":1566792780000,"y":12.44},{"x":1566792840000,"y":12.44},{"x":1566792900000,"y":12.44},{"x":1566792960000,"y":12.47},{"x":1566793020000,"y":12.45},{"x":1566793080000,"y":12.45},{"x":1566793140000,"y":12.45},{"x":1566793200000,"y":12.45},{"x":1566793260000,"y":12.46},{"x":1566793320000,"y":12.46},{"x":1566793380000,"y":12.45},{"x":1566793440000,"y":12.45},{"x":1566793500000,"y":12.46},{"x":1566793560000,"y":12.46},{"x":1566793620000,"y":12.45},{"x":1566793680000,"y":12.46},{"x":1566793740000,"y":12.46},{"x":1566793800000,"y":12.46},{"x":1566793860000,"y":12.47},{"x":1566793920000,"y":12.45},{"x":1566793980000,"y":12.45},{"x":1566794040000,"y":12.45},{"x":1566794100000,"y":12.44},{"x":1566794160000,"y":12.45},{"x":1566794220000,"y":12.46},{"x":1566794280000,"y":12.46},{"x":1566794340000,"y":12.46},{"x":1566794400000,"y":12.46},{"x":1566794460000,"y":12.47},{"x":1566794520000,"y":12.47},{"x":1566794580000,"y":12.47},{"x":1566794640000,"y":12.47},{"x":1566794700000,"y":12.45},{"x":1566794760000,"y":12.46},{"x":1566794820000,"y":12.46},{"x":1566794880000,"y":12.46},{"x":1566794940000,"y":12.46},{"x":1566795000000,"y":12.47},{"x":1566795060000,"y":12.47},{"x":1566795120000,"y":12.46},{"x":1566795180000,"y":12.45},{"x":1566795240000,"y":12.45},{"x":1566795300000,"y":12.45},{"x":1566795360000,"y":12.45},{"x":1566795420000,"y":12.47},{"x":1566795480000,"y":12.46},{"x":1566795540000,"y":12.46},{"x":1566795600000,"y":12.44},{"x":1566795660000,"y":12.44},{"x":1566795720000,"y":12.46},{"x":1566795780000,"y":12.45},{"x":1566795840000,"y":12.45},{"x":1566795900000,"y":12.46},{"x":1566795960000,"y":12.46},{"x":1566796020000,"y":12.48},{"x":1566796080000,"y":12.46},{"x":1566796140000,"y":12.46},{"x":1566796200000,"y":12.46},{"x":1566796260000,"y":12.46},{"x":1566796320000,"y":12.47},{"x":1566796380000,"y":12.47},{"x":1566796440000,"y":12.46},{"x":1566796500000,"y":12.45},{"x":1566796560000,"y":12.45},{"x":1566796620000,"y":12.46},{"x":1566796680000,"y":12.45},{"x":1566796740000,"y":12.45},{"x":1566796800000,"y":12.45},{"x":1566796860000,"y":12.44},{"x":1566796920000,"y":12.45},{"x":1566796980000,"y":12.46},{"x":1566797040000,"y":12.46},{"x":1566797100000,"y":12.45},{"x":1566797160000,"y":12.45},{"x":1566797220000,"y":12.46},{"x":1566797280000,"y":12.45},{"x":1566797340000,"y":12.45},{"x":1566797400000,"y":12.46},{"x":1566797460000,"y":12.46},{"x":1566797520000,"y":12.46},{"x":1566797580000,"y":12.47},{"x":1566797640000,"y":12.46},{"x":1566797700000,"y":12.47},{"x":1566797760000,"y":12.47},{"x":1566797820000,"y":12.47},{"x":1566797880000,"y":12.48},{"x":1566797940000,"y":12.46},{"x":1566798000000,"y":12.46},{"x":1566798060000,"y":12.46},{"x":1566798120000,"y":12.46},{"x":1566798180000,"y":12.47},{"x":1566798240000,"y":12.46},{"x":1566798300000,"y":12.47},{"x":1566798360000,"y":12.47},{"x":1566798420000,"y":12.47},{"x":1566798480000,"y":12.48},{"x":1566798540000,"y":12.46},{"x":1566798600000,"y":12.47},{"x":1566798660000,"y":12.47},{"x":1566798720000,"y":12.47},{"x":1566798780000,"y":12.48},{"x":1566798840000,"y":12.46},{"x":1566798900000,"y":12.47},{"x":1566798960000,"y":12.47},{"x":1566799020000,"y":12.47},{"x":1566799080000,"y":12.46},{"x":1566799140000,"y":12.45},{"x":1566799200000,"y":12.46},{"x":1566799260000,"y":12.46},{"x":1566799320000,"y":12.46},{"x":1566799380000,"y":12.47},{"x":1566799440000,"y":12.46},{"x":1566799500000,"y":12.44},{"x":1566799560000,"y":12.44},{"x":1566799620000,"y":12.44},{"x":1566799680000,"y":12.44},{"x":1566799740000,"y":12.46},{"x":1566799800000,"y":12.45},{"x":1566799860000,"y":12.45},{"x":1566799920000,"y":12.45},{"x":1566799980000,"y":12.45},{"x":1566800040000,"y":12.46},{"x":1566800100000,"y":12.43},{"x":1566800160000,"y":12.43},{"x":1566800220000,"y":12.44},{"x":1566800280000,"y":12.44},{"x":1566800340000,"y":12.44},{"x":1566800400000,"y":12.45},{"x":1566800460000,"y":12.45},{"x":1566800520000,"y":12.45},{"x":1566800580000,"y":12.45},{"x":1566800640000,"y":12.46},{"x":1566800700000,"y":12.43},{"x":1566800760000,"y":12.43},{"x":1566800820000,"y":12.43},{"x":1566800880000,"y":12.43},{"x":1566800940000,"y":12.44},{"x":1566801000000,"y":12.44},{"x":1566801060000,"y":12.44},{"x":1566801120000,"y":12.44},{"x":1566801180000,"y":12.44},{"x":1566801240000,"y":12.45},{"x":1566801300000,"y":12.45},{"x":1566801360000,"y":12.45},{"x":1566801420000,"y":12.45},{"x":1566801480000,"y":12.45},{"x":1566801540000,"y":12.48},{"x":1566801600000,"y":12.43},{"x":1566801660000,"y":12.43},{"x":1566801720000,"y":12.43},{"x":1566801780000,"y":12.43},{"x":1566801840000,"y":12.43},{"x":1566801900000,"y":12.45},{"x":1566801960000,"y":12.44},{"x":1566802020000,"y":12.44},{"x":1566802080000,"y":12.44},{"x":1566802140000,"y":12.44},{"x":1566802200000,"y":12.47},{"x":1566802260000,"y":12.46},{"x":1566802320000,"y":12.46},{"x":1566802380000,"y":12.46},{"x":1566802440000,"y":12.46},{"x":1566802500000,"y":12.46},{"x":1566802560000,"y":12.45},{"x":1566802620000,"y":12.45},{"x":1566802680000,"y":12.45},{"x":1566802740000,"y":12.45},{"x":1566802800000,"y":12.46},{"x":1566802860000,"y":12.45},{"x":1566802920000,"y":12.45},{"x":1566802980000,"y":12.45},{"x":1566803040000,"y":12.45},{"x":1566803100000,"y":12.48},{"x":1566803160000,"y":12.46},{"x":1566803220000,"y":12.46},{"x":1566803280000,"y":12.46},{"x":1566803340000,"y":12.46},{"x":1566803400000,"y":12.48},{"x":1566803460000,"y":12.46},{"x":1566803520000,"y":12.46},{"x":1566803580000,"y":12.46},{"x":1566803640000,"y":12.46},{"x":1566803700000,"y":12.46},{"x":1566803760000,"y":12.46},{"x":1566803820000,"y":12.45},{"x":1566803880000,"y":12.45},{"x":1566803940000,"y":12.45},{"x":1566804000000,"y":12.46},{"x":1566804060000,"y":12.48},{"x":1566804120000,"y":12.47},{"x":1566804180000,"y":12.47},{"x":1566804240000,"y":12.46},{"x":1566804300000,"y":12.46},{"x":1566804360000,"y":12.48},{"x":1566804420000,"y":12.46},{"x":1566804480000,"y":12.46},{"x":1566804540000,"y":12.46},{"x":1566804600000,"y":12.47},{"x":1566804660000,"y":12.48},{"x":1566804720000,"y":12.47},{"x":1566804780000,"y":12.47},{"x":1566804840000,"y":12.47},{"x":1566804900000,"y":12.46},{"x":1566804960000,"y":12.47},{"x":1566805020000,"y":12.47},{"x":1566805080000,"y":12.47},{"x":1566805140000,"y":12.47},{"x":1566805200000,"y":12.47},{"x":1566805260000,"y":12.48},{"x":1566805320000,"y":12.46},{"x":1566805380000,"y":12.46},{"x":1566805440000,"y":12.46},{"x":1566805500000,"y":12.46},{"x":1566805560000,"y":12.48},{"x":1566805620000,"y":12.47},{"x":1566805680000,"y":12.47},{"x":1566805740000,"y":12.47},{"x":1566805800000,"y":12.45},{"x":1566805860000,"y":12.46},{"x":1566805920000,"y":12.47},{"x":1566805980000,"y":12.47},{"x":1566806040000,"y":12.47},{"x":1566806100000,"y":12.47},{"x":1566806160000,"y":12.47},{"x":1566806220000,"y":12.47},{"x":1566806280000,"y":12.46},{"x":1566806340000,"y":12.45},{"x":1566806400000,"y":12.44},{"x":1566806460000,"y":12.44},{"x":1566806520000,"y":12.47},{"x":1566806580000,"y":12.47},{"x":1566806640000,"y":12.47},{"x":1566806700000,"y":12.45},{"x":1566806760000,"y":12.45},{"x":1566806820000,"y":12.47},{"x":1566806880000,"y":12.46},{"x":1566806940000,"y":12.47},{"x":1566807000000,"y":12.46},{"x":1566807060000,"y":12.46},{"x":1566807120000,"y":12.49},{"x":1566807180000,"y":12.47},{"x":1566807240000,"y":12.47},{"x":1566807300000,"y":12.43},{"x":1566807360000,"y":12.42},{"x":1566807420000,"y":12.46},{"x":1566807480000,"y":12.47},{"x":1566807540000,"y":12.47},{"x":1566807600000,"y":12.48},{"x":1566807660000,"y":12.48},{"x":1566807720000,"y":12.49},{"x":1566807780000,"y":12.47},{"x":1566807840000,"y":12.47},{"x":1566807900000,"y":12.46},{"x":1566807960000,"y":12.45},{"x":1566808020000,"y":12.46},{"x":1566808080000,"y":12.47},{"x":1566808140000,"y":12.48},{"x":1566808200000,"y":12.48},{"x":1566808260000,"y":12.48},{"x":1566808320000,"y":12.48},{"x":1566808380000,"y":12.44},{"x":1566808440000,"y":12.41},{"x":1566808500000,"y":12.41},{"x":1566808560000,"y":12.41},{"x":1566808620000,"y":12.41},{"x":1566808680000,"y":12.41},{"x":1566808740000,"y":12.42},{"x":1566808800000,"y":12.41},{"x":1566808860000,"y":12.41},{"x":1566808920000,"y":12.41},{"x":1566808980000,"y":12.42},{"x":1566809040000,"y":12.41},{"x":1566809100000,"y":12.39},{"x":1566809160000,"y":12.39},{"x":1566809220000,"y":12.39},{"x":1566809280000,"y":12.41},{"x":1566809340000,"y":12.41},{"x":1566809400000,"y":12.41},{"x":1566809460000,"y":12.42},{"x":1566809520000,"y":12.42},{"x":1566809580000,"y":12.42},{"x":1566809640000,"y":12.41},{"x":1566809700000,"y":12.41},{"x":1566809760000,"y":12.41},{"x":1566809820000,"y":12.41},{"x":1566809880000,"y":12.42},{"x":1566809940000,"y":12.41},{"x":1566810000000,"y":12.41},{"x":1566810060000,"y":12.41},{"x":1566810120000,"y":12.41},{"x":1566810180000,"y":12.72},{"x":1566810240000,"y":12.47},{"x":1566810300000,"y":12.41},{"x":1566810360000,"y":12.41},{"x":1566810420000,"y":12.41},{"x":1566810480000,"y":12.43},{"x":1566810540000,"y":12.41},{"x":1566810600000,"y":12.41},{"x":1566810660000,"y":12.41},{"x":1566810720000,"y":12.41},{"x":1566810780000,"y":12.41},{"x":1566810840000,"y":12.42},{"x":1566810900000,"y":12.41},{"x":1566810960000,"y":12.41},{"x":1566811020000,"y":12.41},{"x":1566811080000,"y":12.42},{"x":1566811140000,"y":12.43},{"x":1566811200000,"y":12.42},{"x":1566811260000,"y":12.41},{"x":1566811320000,"y":12.41},{"x":1566811380000,"y":12.41},{"x":1566811440000,"y":12.42},{"x":1566811500000,"y":12.39},{"x":1566811560000,"y":12.39},{"x":1566811620000,"y":12.39},{"x":1566811680000,"y":12.39},{"x":1566811740000,"y":12.42},{"x":1566811800000,"y":12.42},{"x":1566811860000,"y":12.41},{"x":1566811920000,"y":12.41},{"x":1566811980000,"y":12.41},{"x":1566812040000,"y":12.43},{"x":1566812100000,"y":12.41},{"x":1566812160000,"y":12.41},{"x":1566812220000,"y":12.41},{"x":1566812280000,"y":12.41},{"x":1566812340000,"y":12.43},{"x":1566812400000,"y":12.42},{"x":1566812460000,"y":12.42},{"x":1566812520000,"y":12.42},{"x":1566812580000,"y":12.42},{"x":1566812640000,"y":12.43},{"x":1566812700000,"y":12.42},{"x":1566812760000,"y":12.41},{"x":1566812820000,"y":12.41},{"x":1566812880000,"y":12.41},{"x":1566812940000,"y":12.42},{"x":1566813000000,"y":12.42},{"x":1566813060000,"y":12.42},{"x":1566813120000,"y":12.42},{"x":1566813180000,"y":12.42},{"x":1566813240000,"y":12.42},{"x":1566813300000,"y":12.43},{"x":1566813360000,"y":12.41},{"x":1566813420000,"y":12.41},{"x":1566813480000,"y":12.41},{"x":1566813540000,"y":12.41},{"x":1566813600000,"y":12.43},{"x":1566813660000,"y":12.42},{"x":1566813720000,"y":12.41},{"x":1566813780000,"y":12.41},{"x":1566813840000,"y":12.41},{"x":1566813900000,"y":12.43},{"x":1566813960000,"y":12.42},{"x":1566814020000,"y":12.43},{"x":1566814080000,"y":12.43},{"x":1566814140000,"y":12.41},{"x":1566814200000,"y":12.42},{"x":1566814260000,"y":12.42},{"x":1566814320000,"y":12.42},{"x":1566814380000,"y":12.42},{"x":1566814440000,"y":12.42},{"x":1566814500000,"y":12.44},{"x":1566814560000,"y":12.42},{"x":1566814620000,"y":12.42},{"x":1566814680000,"y":12.42},{"x":1566814740000,"y":12.42},{"x":1566814800000,"y":12.43},{"x":1566814860000,"y":12.4},{"x":1566814920000,"y":12.4},{"x":1566814980000,"y":12.39},{"x":1566815040000,"y":12.39},{"x":1566815100000,"y":12.4},{"x":1566815160000,"y":12.42},{"x":1566815220000,"y":12.42},{"x":1566815280000,"y":12.42},{"x":1566815340000,"y":12.43},{"x":1566815400000,"y":12.42},{"x":1566815460000,"y":12.45},{"x":1566815520000,"y":12.43},{"x":1566815580000,"y":12.43},{"x":1566815640000,"y":12.43},{"x":1566815700000,"y":12.41},{"x":1566815760000,"y":12.55},{"x":1566815820000,"y":12.49},{"x":1566815880000,"y":12.49},{"x":1566815940000,"y":12.49},{"x":1566816000000,"y":12.47},{"x":1566816060000,"y":12.49},{"x":1566816120000,"y":12.43},{"x":1566816180000,"y":12.43},{"x":1566816240000,"y":12.43},{"x":1566816300000,"y":12.43},{"x":1566816360000,"y":12.44},{"x":1566816420000,"y":12.43},{"x":1566816480000,"y":12.43},{"x":1566816540000,"y":12.43},{"x":1566816600000,"y":12.41},{"x":1566816660000,"y":12.42},{"x":1566816720000,"y":12.43},{"x":1566816780000,"y":12.43},{"x":1566816840000,"y":12.43},{"x":1566816900000,"y":12.43},{"x":1566816960000,"y":12.44},{"x":1566817020000,"y":12.43},{"x":1566817080000,"y":12.43},{"x":1566817140000,"y":12.43},{"x":1566817200000,"y":12.43},{"x":1566817260000,"y":12.44},{"x":1566817320000,"y":12.42},{"x":1566817380000,"y":12.42},{"x":1566817440000,"y":12.42},{"x":1566817500000,"y":12.39},{"x":1566817560000,"y":12.39},{"x":1566817620000,"y":12.43},{"x":1566817680000,"y":12.43},{"x":1566817740000,"y":12.43},{"x":1566817800000,"y":12.43},{"x":1566817860000,"y":12.43},{"x":1566817920000,"y":12.43},{"x":1566817980000,"y":12.42},{"x":1566818040000,"y":12.42},{"x":1566818100000,"y":12.42},{"x":1566818160000,"y":12.42},{"x":1566818220000,"y":12.44},{"x":1566818280000,"y":12.43},{"x":1566818340000,"y":12.43},{"x":1566818400000,"y":12.43},{"x":1566818460000,"y":12.43},{"x":1566818520000,"y":12.43},{"x":1566818580000,"y":12.41},{"x":1566818640000,"y":12.41},{"x":1566818700000,"y":12.44},{"x":1566818760000,"y":12.4},{"x":1566818820000,"y":12.43},{"x":1566818880000,"y":12.43},{"x":1566818940000,"y":12.43},{"x":1566819000000,"y":12.43},{"x":1566819060000,"y":12.41},{"x":1566819120000,"y":12.42},{"x":1566819180000,"y":12.41},{"x":1566819240000,"y":12.41},{"x":1566819300000,"y":12.38},{"x":1566819360000,"y":12.38},{"x":1566819420000,"y":12.39},{"x":1566819480000,"y":12.38},{"x":1566819540000,"y":12.41},{"x":1566819600000,"y":12.42},{"x":1566819660000,"y":12.42},{"x":1566819720000,"y":12.43},{"x":1566819780000,"y":12.42},{"x":1566819840000,"y":12.42},{"x":1566819900000,"y":12.41},{"x":1566819960000,"y":12.42},{"x":1566820020000,"y":12.42},{"x":1566820080000,"y":12.41},{"x":1566820140000,"y":12.39},{"x":1566820200000,"y":12.41},{"x":1566820260000,"y":12.41},{"x":1566820320000,"y":12.41},{"x":1566820380000,"y":12.42},{"x":1566820440000,"y":12.41},{"x":1566820500000,"y":12.42},{"x":1566820560000,"y":12.42},{"x":1566820620000,"y":12.42},{"x":1566820680000,"y":12.43},{"x":1566820740000,"y":12.6},{"x":1566820800000,"y":12.47},{"x":1566820860000,"y":12.47},{"x":1566820920000,"y":12.47},{"x":1566820980000,"y":12.48},{"x":1566821040000,"y":12.44},{"x":1566821100000,"y":12.4},{"x":1566821160000,"y":12.4},{"x":1566821220000,"y":12.4},{"x":1566821280000,"y":12.41},{"x":1566821340000,"y":12.42},{"x":1566821400000,"y":12.42},{"x":1566821460000,"y":12.42},{"x":1566821520000,"y":12.42},{"x":1566821580000,"y":12.44},{"x":1566821640000,"y":12.42},{"x":1566821700000,"y":12.38},{"x":1566821760000,"y":12.38},{"x":1566821820000,"y":12.38},{"x":1566821880000,"y":12.4},{"x":1566821940000,"y":12.42},{"x":1566822000000,"y":12.42},{"x":1566822060000,"y":12.42},{"x":1566822120000,"y":12.42},{"x":1566822180000,"y":12.42},{"x":1566822240000,"y":12.41},{"x":1566822300000,"y":12.42},{"x":1566822360000,"y":12.42},{"x":1566822420000,"y":12.42},{"x":1566822480000,"y":12.42},{"x":1566822540000,"y":12.43},{"x":1566822600000,"y":12.43},{"x":1566822660000,"y":12.43},{"x":1566822720000,"y":12.43},{"x":1566822780000,"y":12.43},{"x":1566822840000,"y":12.43},{"x":1566822900000,"y":12.42},{"x":1566822960000,"y":12.42},{"x":1566823020000,"y":12.42},{"x":1566823080000,"y":12.42},{"x":1566823140000,"y":12.43},{"x":1566823200000,"y":12.43},{"x":1566823260000,"y":12.43},{"x":1566823320000,"y":12.43},{"x":1566823380000,"y":12.43},{"x":1566823440000,"y":12.44},{"x":1566823500000,"y":12.43},{"x":1566823560000,"y":12.43},{"x":1566823620000,"y":12.42},{"x":1566823680000,"y":12.42},{"x":1566823740000,"y":12.43},{"x":1566823800000,"y":12.39},{"x":1566823860000,"y":12.39},{"x":1566823920000,"y":12.39},{"x":1566823980000,"y":12.39},{"x":1566824040000,"y":12.4},{"x":1566824100000,"y":12.4},{"x":1566824160000,"y":12.4},{"x":1566824220000,"y":12.39},{"x":1566824280000,"y":12.39},{"x":1566824340000,"y":12.4},{"x":1566824400000,"y":12.42},{"x":1566824460000,"y":12.42},{"x":1566824520000,"y":12.42},{"x":1566824580000,"y":12.42},{"x":1566824640000,"y":12.43},{"x":1566824700000,"y":12.43},{"x":1566824760000,"y":12.4},{"x":1566824820000,"y":12.4},{"x":1566824880000,"y":12.4},{"x":1566824940000,"y":12.42},{"x":1566825000000,"y":12.44},{"x":1566825060000,"y":12.42},{"x":1566825120000,"y":12.42},{"x":1566825180000,"y":12.42},{"x":1566825240000,"y":12.42},{"x":1566825300000,"y":12.42},{"x":1566825360000,"y":12.42},{"x":1566825420000,"y":12.43},{"x":1566825480000,"y":12.43},{"x":1566825540000,"y":12.43},{"x":1566825600000,"y":12.43},{"x":1566825660000,"y":12.42},{"x":1566825720000,"y":12.42},{"x":1566825780000,"y":12.42},{"x":1566825840000,"y":12.42},{"x":1566825900000,"y":12.43},{"x":1566825960000,"y":12.43},{"x":1566826020000,"y":12.43},{"x":1566826080000,"y":12.43},{"x":1566826140000,"y":12.43},{"x":1566826200000,"y":12.44},{"x":1566826260000,"y":12.44},{"x":1566826320000,"y":12.44},{"x":1566826380000,"y":12.44},{"x":1566826440000,"y":12.44},{"x":1566826500000,"y":12.43},{"x":1566826560000,"y":12.42},{"x":1566826620000,"y":12.42},{"x":1566826680000,"y":12.43},{"x":1566826740000,"y":12.43},{"x":1566826800000,"y":12.43},{"x":1566826860000,"y":12.44},{"x":1566826920000,"y":12.43},{"x":1566826980000,"y":12.43},{"x":1566827040000,"y":12.43},{"x":1566827100000,"y":12.42},{"x":1566827160000,"y":12.44},{"x":1566827220000,"y":12.44},{"x":1566827280000,"y":12.44},{"x":1566827340000,"y":12.44},{"x":1566827400000,"y":12.43},{"x":1566827460000,"y":12.44},{"x":1566827520000,"y":12.43},{"x":1566827580000,"y":12.43},{"x":1566827640000,"y":12.43},{"x":1566827700000,"y":12.43},{"x":1566827760000,"y":12.42},{"x":1566827820000,"y":12.41},{"x":1566827880000,"y":12.41},{"x":1566827940000,"y":12.41},{"x":1566828000000,"y":12.4},{"x":1566828060000,"y":12.42},{"x":1566828120000,"y":12.42},{"x":1566828180000,"y":12.42},{"x":1566828240000,"y":12.42},{"x":1566828300000,"y":12.39},{"x":1566828360000,"y":12.4},{"x":1566828420000,"y":12.41},{"x":1566828480000,"y":12.41},{"x":1566828540000,"y":12.4},{"x":1566828600000,"y":12.42},{"x":1566828660000,"y":12.43},{"x":1566828720000,"y":12.41},{"x":1566828780000,"y":12.41},{"x":1566828840000,"y":12.41},{"x":1566828900000,"y":12.41},{"x":1566828960000,"y":12.4},{"x":1566829020000,"y":12.43},{"x":1566829080000,"y":12.42},{"x":1566829140000,"y":12.42},{"x":1566829200000,"y":12.4},{"x":1566829260000,"y":12.39},{"x":1566829320000,"y":12.42},{"x":1566829380000,"y":12.41},{"x":1566829440000,"y":12.41},{"x":1566829500000,"y":12.4},{"x":1566829560000,"y":12.4},{"x":1566829620000,"y":12.42},{"x":1566829680000,"y":12.42},{"x":1566829740000,"y":12.42},{"x":1566829800000,"y":12.42},{"x":1566829860000,"y":12.42},{"x":1566829920000,"y":12.43},{"x":1566829980000,"y":12.42},{"x":1566830040000,"y":12.42},{"x":1566830100000,"y":12.42},{"x":1566830160000,"y":12.42},{"x":1566830220000,"y":12.43},{"x":1566830280000,"y":12.42},{"x":1566830340000,"y":12.42},{"x":1566830400000,"y":12.42},{"x":1566830460000,"y":12.42},{"x":1566830520000,"y":12.43},{"x":1566830580000,"y":12.41},{"x":1566830640000,"y":12.41},{"x":1566830700000,"y":12.41},{"x":1566830760000,"y":12.41},{"x":1566830820000,"y":12.42},{"x":1566830880000,"y":12.4},{"x":1566830940000,"y":12.4},{"x":1566831000000,"y":12.42},{"x":1566831060000,"y":12.42},{"x":1566831120000,"y":12.42},{"x":1566831180000,"y":12.43},{"x":1566831240000,"y":12.43},{"x":1566831300000,"y":12.41},{"x":1566831360000,"y":12.41},{"x":1566831420000,"y":12.41},{"x":1566831480000,"y":12.43},{"x":1566831540000,"y":12.42},{"x":1566831600000,"y":12.42},{"x":1566831660000,"y":12.42},{"x":1566831720000,"y":12.42},{"x":1566831780000,"y":12.43},{"x":1566831840000,"y":12.42},{"x":1566831900000,"y":12.42},{"x":1566831960000,"y":12.42},{"x":1566832020000,"y":12.42},{"x":1566832080000,"y":12.75},{"x":1566832140000,"y":12.47},{"x":1566832200000,"y":12.47},{"x":1566832260000,"y":12.47},{"x":1566832320000,"y":12.47},{"x":1566832380000,"y":12.47},{"x":1566832440000,"y":12.42},{"x":1566832500000,"y":12.4},{"x":1566832560000,"y":12.41},{"x":1566832620000,"y":12.4},{"x":1566832680000,"y":12.41},{"x":1566832740000,"y":12.39},{"x":1566832800000,"y":12.4},{"x":1566832860000,"y":12.4},{"x":1566832920000,"y":12.4},{"x":1566832980000,"y":12.41},{"x":1566833040000,"y":12.42},{"x":1566833100000,"y":12.42},{"x":1566833160000,"y":12.42},{"x":1566833220000,"y":12.42},{"x":1566833280000,"y":12.42},{"x":1566833340000,"y":12.45},{"x":1566833400000,"y":12.42},{"x":1566833460000,"y":12.42},{"x":1566833520000,"y":12.41},{"x":1566833580000,"y":12.41},{"x":1566833640000,"y":12.44},{"x":1566833700000,"y":12.42},{"x":1566833760000,"y":12.42},{"x":1566833820000,"y":12.42},{"x":1566833880000,"y":12.42},{"x":1566833940000,"y":12.42},{"x":1566834000000,"y":12.42},{"x":1566834060000,"y":12.42},{"x":1566834120000,"y":12.42},{"x":1566834180000,"y":12.42},{"x":1566834240000,"y":12.42},{"x":1566834300000,"y":12.42},{"x":1566834360000,"y":12.42},{"x":1566834420000,"y":12.42},{"x":1566834480000,"y":12.42},{"x":1566834540000,"y":12.43},{"x":1566834600000,"y":12.44},{"x":1566834660000,"y":12.43},{"x":1566834720000,"y":12.43},{"x":1566834780000,"y":12.43},{"x":1566834840000,"y":12.45},{"x":1566834900000,"y":12.43},{"x":1566834960000,"y":12.43},{"x":1566835020000,"y":12.43},{"x":1566835080000,"y":12.43},{"x":1566835140000,"y":12.44},{"x":1566835200000,"y":12.38},{"x":1566835260000,"y":12.39},{"x":1566835320000,"y":12.39},{"x":1566835380000,"y":12.39},{"x":1566835440000,"y":12.39},{"x":1566835500000,"y":12.41},{"x":1566835560000,"y":12.4},{"x":1566835620000,"y":12.4},{"x":1566835680000,"y":12.4},{"x":1566835740000,"y":12.41},{"x":1566835800000,"y":12.44},{"x":1566835860000,"y":12.44},{"x":1566835920000,"y":12.43},{"x":1566835980000,"y":12.43},{"x":1566836040000,"y":12.43},{"x":1566836100000,"y":12.45},{"x":1566836160000,"y":12.44},{"x":1566836220000,"y":12.43},{"x":1566836280000,"y":12.43},{"x":1566836340000,"y":12.43},{"x":1566836400000,"y":12.41},{"x":1566836460000,"y":12.4},{"x":1566836520000,"y":12.4},{"x":1566836580000,"y":12.4},{"x":1566836640000,"y":12.4},{"x":1566836700000,"y":12.44},{"x":1566836760000,"y":12.41},{"x":1566836820000,"y":12.4},{"x":1566836880000,"y":12.4},{"x":1566836940000,"y":12.4},{"x":1566837000000,"y":12.42},{"x":1566837060000,"y":12.4},{"x":1566837120000,"y":12.4},{"x":1566837180000,"y":12.4},{"x":1566837240000,"y":12.4},{"x":1566837300000,"y":12.4},{"x":1566837360000,"y":12.38},{"x":1566837420000,"y":12.38},{"x":1566837480000,"y":12.38},{"x":1566837540000,"y":12.41},{"x":1566837600000,"y":12.42},{"x":1566837660000,"y":12.42},{"x":1566837720000,"y":12.42},{"x":1566837780000,"y":12.41},{"x":1566837840000,"y":12.41},{"x":1566837900000,"y":12.41},{"x":1566837960000,"y":12.43},{"x":1566838020000,"y":12.42},{"x":1566838080000,"y":12.42},{"x":1566838140000,"y":12.42},{"x":1566838200000,"y":12.42},{"x":1566838260000,"y":12.43},{"x":1566838320000,"y":12.42},{"x":1566838380000,"y":12.42},{"x":1566838440000,"y":12.42},{"x":1566838500000,"y":12.39},{"x":1566838560000,"y":12.41},{"x":1566838620000,"y":12.42},{"x":1566838680000,"y":12.42},{"x":1566838740000,"y":12.42},{"x":1566838800000,"y":12.4},{"x":1566838860000,"y":12.42},{"x":1566838920000,"y":12.43},{"x":1566838980000,"y":12.43},{"x":1566839040000,"y":12.43},{"x":1566839100000,"y":12.39},{"x":1566839160000,"y":12.41},{"x":1566839220000,"y":12.41},{"x":1566839280000,"y":12.41},{"x":1566839340000,"y":12.41},{"x":1566839400000,"y":12.42},{"x":1566839460000,"y":12.43},{"x":1566839520000,"y":12.42},{"x":1566839580000,"y":12.42},{"x":1566839640000,"y":12.42},{"x":1566839700000,"y":12.42},{"x":1566839760000,"y":12.42},{"x":1566839820000,"y":12.4},{"x":1566839880000,"y":12.38},{"x":1566839940000,"y":12.38},{"x":1566840000000,"y":12.42},{"x":1566840060000,"y":12.42},{"x":1566840120000,"y":12.42},{"x":1566840180000,"y":12.41},{"x":1566840240000,"y":12.42},{"x":1566840300000,"y":12.41},{"x":1566840360000,"y":12.41},{"x":1566840420000,"y":12.41},{"x":1566840480000,"y":12.39},{"x":1566840540000,"y":12.39},{"x":1566840600000,"y":12.43},{"x":1566840660000,"y":12.43},{"x":1566840720000,"y":12.44},{"x":1566840780000,"y":12.42},{"x":1566840840000,"y":12.42},{"x":1566840900000,"y":12.41},{"x":1566840960000,"y":12.41},{"x":1566841020000,"y":12.42},{"x":1566841080000,"y":12.43},{"x":1566841140000,"y":12.42},{"x":1566841200000,"y":12.4},{"x":1566841260000,"y":12.4},{"x":1566841320000,"y":12.41},{"x":1566841380000,"y":12.43},{"x":1566841440000,"y":12.43},{"x":1566841500000,"y":12.42},{"x":1566841560000,"y":12.42},{"x":1566841620000,"y":12.43},{"x":1566841680000,"y":12.43},{"x":1566841740000,"y":12.43},{"x":1566841800000,"y":12.43},{"x":1566841860000,"y":12.43},{"x":1566841920000,"y":12.44},{"x":1566841980000,"y":12.43},{"x":1566842040000,"y":12.42},{"x":1566842100000,"y":12.43},{"x":1566842160000,"y":12.42},{"x":1566842220000,"y":12.43},{"x":1566842280000,"y":12.43},{"x":1566842340000,"y":12.42},{"x":1566842400000,"y":12.43},{"x":1566842460000,"y":12.43},{"x":1566842520000,"y":12.43},{"x":1566842580000,"y":12.43},{"x":1566842640000,"y":12.42},{"x":1566842700000,"y":12.43},{"x":1566842760000,"y":12.43},{"x":1566842820000,"y":12.43},{"x":1566842880000,"y":12.44},{"x":1566842940000,"y":12.43},{"x":1566843000000,"y":12.43},{"x":1566843060000,"y":12.43},{"x":1566843120000,"y":12.43},{"x":1566843180000,"y":12.45},{"x":1566843240000,"y":12.43},{"x":1566843300000,"y":12.43},{"x":1566843360000,"y":12.43},{"x":1566843420000,"y":12.43},{"x":1566843480000,"y":12.44},{"x":1566843540000,"y":12.43},{"x":1566843600000,"y":12.41},{"x":1566843660000,"y":12.41},{"x":1566843720000,"y":12.41},{"x":1566843780000,"y":12.42},{"x":1566843840000,"y":12.43},{"x":1566843900000,"y":12.42},{"x":1566843960000,"y":12.42},{"x":1566844020000,"y":12.42},{"x":1566844080000,"y":12.42},{"x":1566844140000,"y":12.43},{"x":1566844200000,"y":12.42},{"x":1566844260000,"y":12.42},{"x":1566844320000,"y":12.42},{"x":1566844380000,"y":12.42},{"x":1566844440000,"y":12.44},{"x":1566844500000,"y":12.4},{"x":1566844560000,"y":12.4},{"x":1566844620000,"y":12.4},{"x":1566844680000,"y":12.39},{"x":1566844740000,"y":12.44},{"x":1566844800000,"y":12.43},{"x":1566844860000,"y":12.43},{"x":1566844920000,"y":12.43},{"x":1566844980000,"y":12.43},{"x":1566845040000,"y":12.45},{"x":1566845100000,"y":12.43},{"x":1566845160000,"y":12.43},{"x":1566845220000,"y":12.43},{"x":1566845280000,"y":12.43},{"x":1566845340000,"y":12.44},{"x":1566845400000,"y":12.44},{"x":1566845460000,"y":12.44},{"x":1566845520000,"y":12.44},{"x":1566845580000,"y":12.44},{"x":1566845640000,"y":12.45},{"x":1566845700000,"y":12.43},{"x":1566845760000,"y":12.42},{"x":1566845820000,"y":12.41},{"x":1566845880000,"y":12.41},{"x":1566845940000,"y":12.42},{"x":1566846000000,"y":12.39},{"x":1566846060000,"y":12.39},{"x":1566846120000,"y":12.39},{"x":1566846180000,"y":12.39},{"x":1566846240000,"y":12.41},{"x":1566846300000,"y":12.42},{"x":1566846360000,"y":12.42},{"x":1566846420000,"y":12.42},{"x":1566846480000,"y":12.42},{"x":1566846540000,"y":12.41},{"x":1566846600000,"y":12.42},{"x":1566846660000,"y":12.4},{"x":1566846720000,"y":12.4},{"x":1566846780000,"y":12.4},{"x":1566846840000,"y":12.4},{"x":1566846900000,"y":12.41},{"x":1566846960000,"y":12.41},{"x":1566847020000,"y":12.41},{"x":1566847080000,"y":12.41},{"x":1566847140000,"y":12.41},{"x":1566847200000,"y":12.42},{"x":1566847260000,"y":12.42},{"x":1566847320000,"y":12.42},{"x":1566847380000,"y":12.42},{"x":1566847440000,"y":12.42},{"x":1566847500000,"y":12.41},{"x":1566847560000,"y":12.39},{"x":1566847620000,"y":12.39},{"x":1566847680000,"y":12.4},{"x":1566847740000,"y":12.4},{"x":1566847800000,"y":12.42},{"x":1566847860000,"y":12.4},{"x":1566847920000,"y":12.4},{"x":1566847980000,"y":12.4},{"x":1566848040000,"y":12.4},{"x":1566848100000,"y":12.43},{"x":1566848160000,"y":12.42},{"x":1566848220000,"y":12.42},{"x":1566848280000,"y":12.42},{"x":1566848340000,"y":12.42},{"x":1566848400000,"y":12.43},{"x":1566848460000,"y":12.42},{"x":1566848520000,"y":12.42},{"x":1566848580000,"y":12.42},{"x":1566848640000,"y":12.42},{"x":1566848700000,"y":12.42},{"x":1566848760000,"y":12.43},{"x":1566848820000,"y":12.42},{"x":1566848880000,"y":12.42},{"x":1566848940000,"y":12.42},{"x":1566849000000,"y":12.42},{"x":1566849060000,"y":12.43},{"x":1566849120000,"y":12.42},{"x":1566849180000,"y":12.42},{"x":1566849240000,"y":12.42},{"x":1566849300000,"y":12.42},{"x":1566849360000,"y":12.42},{"x":1566849420000,"y":12.41},{"x":1566849480000,"y":12.41},{"x":1566849540000,"y":12.41},{"x":1566849600000,"y":12.42},{"x":1566849660000,"y":12.43},{"x":1566849720000,"y":12.41},{"x":1566849780000,"y":12.41},{"x":1566849840000,"y":12.41},{"x":1566849900000,"y":12.43},{"x":1566849960000,"y":12.43},{"x":1566850020000,"y":12.41},{"x":1566850080000,"y":12.41},{"x":1566850140000,"y":12.42},{"x":1566850200000,"y":12.42},{"x":1566850260000,"y":12.44},{"x":1566850320000,"y":12.42},{"x":1566850380000,"y":12.42},{"x":1566850440000,"y":12.42},{"x":1566850500000,"y":12.43},{"x":1566850560000,"y":12.44},{"x":1566850620000,"y":12.41},{"x":1566850680000,"y":12.41},{"x":1566850740000,"y":12.41},{"x":1566850800000,"y":12.41},{"x":1566850860000,"y":12.41},{"x":1566850920000,"y":12.42},{"x":1566850980000,"y":12.41},{"x":1566851040000,"y":12.41},{"x":1566851100000,"y":12.42},{"x":1566851160000,"y":12.42},{"x":1566851220000,"y":12.43},{"x":1566851280000,"y":12.42},{"x":1566851340000,"y":12.42},{"x":1566851400000,"y":12.42},{"x":1566851460000,"y":12.42},{"x":1566851520000,"y":12.44},{"x":1566851580000,"y":12.43},{"x":1566851640000,"y":12.43},{"x":1566851700000,"y":12.43},{"x":1566851760000,"y":12.42},{"x":1566851820000,"y":12.42},{"x":1566851880000,"y":12.39},{"x":1566851940000,"y":12.42},{"x":1566852000000,"y":12.43},{"x":1566852060000,"y":12.42},{"x":1566852120000,"y":12.43},{"x":1566852180000,"y":12.42},{"x":1566852240000,"y":12.42},{"x":1566852300000,"y":12.42},{"x":1566852360000,"y":12.42},{"x":1566852420000,"y":12.43},{"x":1566852480000,"y":12.43},{"x":1566852540000,"y":12.43},{"x":1566852600000,"y":12.41},{"x":1566852660000,"y":12.4},{"x":1566852720000,"y":12.41},{"x":1566852780000,"y":12.4},{"x":1566852840000,"y":12.4},{"x":1566852900000,"y":12.44},{"x":1566852960000,"y":12.44},{"x":1566853020000,"y":12.44},{"x":1566853080000,"y":12.44},{"x":1566853140000,"y":12.43},{"x":1566853200000,"y":12.41},{"x":1566853260000,"y":12.41},{"x":1566853320000,"y":12.4},{"x":1566853380000,"y":12.41},{"x":1566853440000,"y":12.4},{"x":1566853500000,"y":12.42},{"x":1566853560000,"y":12.42},{"x":1566853620000,"y":12.42},{"x":1566853680000,"y":12.44},{"x":1566853740000,"y":12.44},{"x":1566853800000,"y":12.43},{"x":1566853860000,"y":12.43},{"x":1566853920000,"y":12.43},{"x":1566853980000,"y":12.78},{"x":1566854040000,"y":12.49},{"x":1566854100000,"y":12.49},{"x":1566854160000,"y":12.5},{"x":1566854220000,"y":12.49},{"x":1566854280000,"y":12.47},{"x":1566854340000,"y":12.4},{"x":1566854400000,"y":12.43},{"x":1566854460000,"y":12.43},{"x":1566854520000,"y":12.43},{"x":1566854580000,"y":12.42},{"x":1566854640000,"y":12.41},{"x":1566854700000,"y":12.42},{"x":1566854760000,"y":12.41},{"x":1566854820000,"y":12.41},{"x":1566854880000,"y":12.42},{"x":1566854940000,"y":12.4},{"x":1566855000000,"y":12.42},{"x":1566855060000,"y":12.42},{"x":1566855120000,"y":12.42},{"x":1566855180000,"y":12.42},{"x":1566855240000,"y":12.38},{"x":1566855300000,"y":12.4},{"x":1566855360000,"y":12.4},{"x":1566855420000,"y":12.4},{"x":1566855480000,"y":12.4},{"x":1566855540000,"y":12.43},{"x":1566855600000,"y":12.41},{"x":1566855660000,"y":12.42},{"x":1566855720000,"y":12.42},{"x":1566855780000,"y":12.42},{"x":1566855840000,"y":12.41},{"x":1566855900000,"y":12.39},{"x":1566855960000,"y":12.38},{"x":1566856020000,"y":12.38},{"x":1566856080000,"y":12.38},{"x":1566856140000,"y":12.41},{"x":1566856200000,"y":12.42},{"x":1566856260000,"y":12.42},{"x":1566856320000,"y":12.42},{"x":1566856380000,"y":12.42},{"x":1566856440000,"y":12.41},{"x":1566856500000,"y":12.4},{"x":1566856560000,"y":12.4},{"x":1566856620000,"y":12.4},{"x":1566856680000,"y":12.4},{"x":1566856740000,"y":12.41},{"x":1566856800000,"y":12.4},{"x":1566856860000,"y":12.4},{"x":1566856920000,"y":12.4},{"x":1566856980000,"y":12.4},{"x":1566857040000,"y":12.41},{"x":1566857100000,"y":12.41},{"x":1566857160000,"y":12.41},{"x":1566857220000,"y":12.41},{"x":1566857280000,"y":12.41},{"x":1566857340000,"y":12.41},{"x":1566857400000,"y":12.42},{"x":1566857460000,"y":12.42},{"x":1566857520000,"y":12.42},{"x":1566857580000,"y":12.42},{"x":1566857640000,"y":12.42},{"x":1566857700000,"y":12.44},{"x":1566857760000,"y":12.42},{"x":1566857820000,"y":12.42},{"x":1566857880000,"y":12.42},{"x":1566857940000,"y":12.42},{"x":1566858000000,"y":12.43},{"x":1566858060000,"y":12.42},{"x":1566858120000,"y":12.42},{"x":1566858180000,"y":12.42},{"x":1566858240000,"y":12.42},{"x":1566858300000,"y":12.43},{"x":1566858360000,"y":12.42},{"x":1566858420000,"y":12.41},{"x":1566858480000,"y":12.42},{"x":1566858540000,"y":12.42},{"x":1566858600000,"y":12.44},{"x":1566858660000,"y":12.42},{"x":1566858720000,"y":12.42},{"x":1566858780000,"y":12.42},{"x":1566858840000,"y":12.42},{"x":1566858900000,"y":12.44},{"x":1566858960000,"y":12.43},{"x":1566859020000,"y":12.43},{"x":1566859080000,"y":12.43},{"x":1566859140000,"y":12.43},{"x":1566859200000,"y":12.43},{"x":1566859260000,"y":12.43},{"x":1566859320000,"y":12.42},{"x":1566859380000,"y":12.42},{"x":1566859440000,"y":12.42},{"x":1566859500000,"y":12.43},{"x":1566859560000,"y":12.44},{"x":1566859620000,"y":12.43},{"x":1566859680000,"y":12.43},{"x":1566859740000,"y":12.43},{"x":1566859800000,"y":12.43},{"x":1566859860000,"y":12.43},{"x":1566859920000,"y":12.42},{"x":1566859980000,"y":12.42},{"x":1566860040000,"y":12.42},{"x":1566860100000,"y":12.43},{"x":1566860160000,"y":12.44},{"x":1566860220000,"y":12.43},{"x":1566860280000,"y":12.43},{"x":1566860340000,"y":12.43},{"x":1566860400000,"y":12.42},{"x":1566860460000,"y":12.42},{"x":1566860520000,"y":12.4},{"x":1566860580000,"y":12.4},{"x":1566860640000,"y":12.4},{"x":1566860700000,"y":12.4},{"x":1566860760000,"y":12.42},{"x":1566860820000,"y":12.43},{"x":1566860880000,"y":12.43},{"x":1566860940000,"y":12.43},{"x":1566861000000,"y":12.43},{"x":1566861060000,"y":12.44},{"x":1566861120000,"y":12.43},{"x":1566861180000,"y":12.43},{"x":1566861240000,"y":12.43},{"x":1566861300000,"y":12.41},{"x":1566861360000,"y":12.42},{"x":1566861420000,"y":12.42},{"x":1566861480000,"y":12.42},{"x":1566861540000,"y":12.42},{"x":1566861600000,"y":12.43},{"x":1566861660000,"y":12.43},{"x":1566861720000,"y":12.45},{"x":1566861780000,"y":12.43},{"x":1566861840000,"y":12.43},{"x":1566861900000,"y":12.49},{"x":1566861960000,"y":12.49},{"x":1566862020000,"y":12.5},{"x":1566862080000,"y":12.49},{"x":1566862140000,"y":12.49},{"x":1566862200000,"y":12.44},{"x":1566862260000,"y":12.43},{"x":1566862320000,"y":12.49},{"x":1566862380000,"y":12.55},{"x":1566862440000,"y":12.7},{"x":1566862500000,"y":16.26},{"x":1566862560000,"y":12.54},{"x":1566862620000,"y":12.56},{"x":1566862680000,"y":12.55},{"x":1566862740000,"y":12.56},{"x":1566862800000,"y":12.54},{"x":1566862860000,"y":12.54},{"x":1566862920000,"y":12.56},{"x":1566862980000,"y":12.54},{"x":1566863040000,"y":12.54},{"x":1566863100000,"y":12.54},{"x":1566863160000,"y":12.54},{"x":1566863220000,"y":12.56},{"x":1566863280000,"y":12.55},{"x":1566863340000,"y":12.55},{"x":1566863400000,"y":12.53},{"x":1566863460000,"y":12.53},{"x":1566863520000,"y":12.54},{"x":1566863580000,"y":12.54},{"x":1566863640000,"y":12.52},{"x":1566863700000,"y":12.44},{"x":1566863760000,"y":12.41},{"x":1566863820000,"y":12.41},{"x":1566863880000,"y":12.42},{"x":1566863940000,"y":12.41},{"x":1566864000000,"y":12.4},{"x":1566864060000,"y":12.4},{"x":1566864120000,"y":12.4},{"x":1566864180000,"y":12.42},{"x":1566864240000,"y":12.41},{"x":1566864300000,"y":12.41},{"x":1566864360000,"y":12.41},{"x":1566864420000,"y":12.41},{"x":1566864480000,"y":12.42},{"x":1566864540000,"y":12.42},{"x":1566864600000,"y":12.41},{"x":1566864660000,"y":12.41},{"x":1566864720000,"y":12.41},{"x":1566864780000,"y":12.42},{"x":1566864840000,"y":12.4},{"x":1566864900000,"y":12.41},{"x":1566864960000,"y":12.41},{"x":1566865020000,"y":12.41},{"x":1566865080000,"y":12.42},{"x":1566865140000,"y":12.4},{"x":1566865200000,"y":12.42},{"x":1566865260000,"y":12.42},{"x":1566865320000,"y":12.42},{"x":1566865380000,"y":12.42},{"x":1566865440000,"y":12.4},{"x":1566865500000,"y":12.4},{"x":1566865560000,"y":12.4},{"x":1566865620000,"y":12.4},{"x":1566865680000,"y":12.41},{"x":1566865740000,"y":12.41},{"x":1566865800000,"y":12.4},{"x":1566865860000,"y":12.4},{"x":1566865920000,"y":12.4},{"x":1566865980000,"y":12.42},{"x":1566866040000,"y":12.4},{"x":1566866100000,"y":12.39},{"x":1566866160000,"y":12.38},{"x":1566866220000,"y":12.38},{"x":1566866280000,"y":12.38},{"x":1566866340000,"y":12.4},{"x":1566866400000,"y":12.41},{"x":1566866460000,"y":12.41},{"x":1566866520000,"y":12.41},{"x":1566866580000,"y":12.41},{"x":1566866640000,"y":12.41},{"x":1566866700000,"y":12.36},{"x":1566866760000,"y":12.35},{"x":1566866820000,"y":12.35},{"x":1566866880000,"y":12.35},{"x":1566866940000,"y":12.39},{"x":1566867000000,"y":12.4},{"x":1566867060000,"y":12.41},{"x":1566867120000,"y":12.4},{"x":1566867180000,"y":12.4},{"x":1566867240000,"y":12.42},{"x":1566867300000,"y":12.41},{"x":1566867360000,"y":12.41},{"x":1566867420000,"y":12.41},{"x":1566867480000,"y":12.41},{"x":1566867540000,"y":12.42},{"x":1566867600000,"y":12.38},{"x":1566867660000,"y":12.39},{"x":1566867720000,"y":12.39},{"x":1566867780000,"y":12.39},{"x":1566867840000,"y":12.4},{"x":1566867900000,"y":12.43},{"x":1566867960000,"y":12.42},{"x":1566868020000,"y":12.41},{"x":1566868080000,"y":12.41},{"x":1566868140000,"y":12.43},{"x":1566868200000,"y":12.4},{"x":1566868260000,"y":12.4},{"x":1566868320000,"y":12.4},{"x":1566868380000,"y":12.4},{"x":1566868440000,"y":12.42},{"x":1566868500000,"y":12.42},{"x":1566868560000,"y":12.42},{"x":1566868620000,"y":12.42},{"x":1566868680000,"y":12.41},{"x":1566868740000,"y":12.41},{"x":1566868800000,"y":12.42},{"x":1566868860000,"y":12.4},{"x":1566868920000,"y":12.4},{"x":1566868980000,"y":12.4},{"x":1566869040000,"y":12.4},{"x":1566869100000,"y":12.42},{"x":1566869160000,"y":12.41},{"x":1566869220000,"y":12.41},{"x":1566869280000,"y":12.41},{"x":1566869340000,"y":12.41},{"x":1566869400000,"y":12.42},{"x":1566869460000,"y":12.41},{"x":1566869520000,"y":12.41},{"x":1566869580000,"y":12.42},{"x":1566869640000,"y":12.42},{"x":1566869700000,"y":12.42},{"x":1566869760000,"y":12.4},{"x":1566869820000,"y":12.4},{"x":1566869880000,"y":12.4},{"x":1566869940000,"y":12.41},{"x":1566870000000,"y":12.43},{"x":1566870060000,"y":12.42},{"x":1566870120000,"y":12.42},{"x":1566870180000,"y":12.42},{"x":1566870240000,"y":12.42},{"x":1566870300000,"y":12.43},{"x":1566870360000,"y":12.42},{"x":1566870420000,"y":12.42},{"x":1566870480000,"y":12.42},{"x":1566870540000,"y":12.42},{"x":1566870600000,"y":12.41},{"x":1566870660000,"y":12.41},{"x":1566870720000,"y":12.41},{"x":1566870780000,"y":12.41},{"x":1566870840000,"y":12.41},{"x":1566870900000,"y":12.41},{"x":1566870960000,"y":12.42},{"x":1566871020000,"y":12.42},{"x":1566871080000,"y":12.42},{"x":1566871140000,"y":12.42},{"x":1566871200000,"y":12.42},{"x":1566871260000,"y":12.44},{"x":1566871320000,"y":12.43},{"x":1566871380000,"y":12.43},{"x":1566871440000,"y":12.43},{"x":1566871500000,"y":12.43},{"x":1566871560000,"y":12.44},{"x":1566871620000,"y":12.43},{"x":1566871680000,"y":12.43},{"x":1566871740000,"y":12.39},{"x":1566871800000,"y":12.4},{"x":1566871860000,"y":12.42},{"x":1566871920000,"y":12.43},{"x":1566871980000,"y":12.43},{"x":1566872040000,"y":12.42},{"x":1566872100000,"y":12.42},{"x":1566872160000,"y":12.44},{"x":1566872220000,"y":12.43},{"x":1566872280000,"y":12.43},{"x":1566872340000,"y":12.43},{"x":1566872400000,"y":12.43},{"x":1566872460000,"y":12.44},{"x":1566872520000,"y":12.43},{"x":1566872580000,"y":12.41},{"x":1566872640000,"y":12.4},{"x":1566872700000,"y":12.4},{"x":1566872760000,"y":12.4},{"x":1566872820000,"y":12.41},{"x":1566872880000,"y":12.4},{"x":1566872940000,"y":12.4},{"x":1566873000000,"y":12.41},{"x":1566873060000,"y":12.42},{"x":1566873120000,"y":12.42},{"x":1566873180000,"y":12.41},{"x":1566873240000,"y":12.41},{"x":1566873300000,"y":12.41},{"x":1566873360000,"y":12.41},{"x":1566873420000,"y":12.42},{"x":1566873480000,"y":12.42},{"x":1566873540000,"y":12.42},{"x":1566873600000,"y":12.4},{"x":1566873660000,"y":12.4},{"x":1566873720000,"y":12.41},{"x":1566873780000,"y":12.41},{"x":1566873840000,"y":12.41},{"x":1566873900000,"y":12.4},{"x":1566873960000,"y":12.4},{"x":1566874020000,"y":12.42},{"x":1566874080000,"y":12.42},{"x":1566874140000,"y":12.42},{"x":1566874200000,"y":12.43},{"x":1566874260000,"y":12.43},{"x":1566874320000,"y":12.44},{"x":1566874380000,"y":12.43},{"x":1566874440000,"y":12.42},{"x":1566874500000,"y":12.42},{"x":1566874560000,"y":12.43},{"x":1566874620000,"y":12.53},{"x":1566874680000,"y":12.69},{"x":1566874740000,"y":12.69},{"x":1566874800000,"y":12.69},{"x":1566874860000,"y":12.69},{"x":1566874920000,"y":12.7},{"x":1566874980000,"y":12.68},{"x":1566875040000,"y":12.68},{"x":1566875100000,"y":12.69},{"x":1566875160000,"y":12.69},{"x":1566875220000,"y":12.69},{"x":1566875280000,"y":12.69},{"x":1566875340000,"y":12.69},{"x":1566875400000,"y":12.69},{"x":1566875460000,"y":12.69},{"x":1566875520000,"y":12.69},{"x":1566875580000,"y":12.71},{"x":1566875640000,"y":12.69},{"x":1566875700000,"y":12.7},{"x":1566875760000,"y":12.7},{"x":1566875820000,"y":12.7},{"x":1566875880000,"y":13.02},{"x":1566875940000,"y":12.75},{"x":1566876000000,"y":12.75},{"x":1566876060000,"y":12.75},{"x":1566876120000,"y":12.75},{"x":1566876180000,"y":12.73},{"x":1566876240000,"y":12.69},{"x":1566876300000,"y":12.66},{"x":1566876360000,"y":12.67},{"x":1566876420000,"y":12.67},{"x":1566876480000,"y":12.69},{"x":1566876540000,"y":12.69},{"x":1566876600000,"y":12.69},{"x":1566876660000,"y":12.69},{"x":1566876720000,"y":12.69},{"x":1566876780000,"y":12.7},{"x":1566876840000,"y":12.7},{"x":1566876900000,"y":12.69},{"x":1566876960000,"y":12.7},{"x":1566877020000,"y":12.7},{"x":1566877080000,"y":12.71},{"x":1566877140000,"y":12.69},{"x":1566877200000,"y":12.68},{"x":1566877260000,"y":12.68},{"x":1566877320000,"y":12.68},{"x":1566877380000,"y":12.68},{"x":1566877440000,"y":12.7},{"x":1566877500000,"y":12.7},{"x":1566877560000,"y":12.69},{"x":1566877620000,"y":12.69},{"x":1566877680000,"y":12.7},{"x":1566877740000,"y":12.71},{"x":1566877800000,"y":12.67},{"x":1566877860000,"y":12.67},{"x":1566877920000,"y":12.67},{"x":1566877980000,"y":12.67},{"x":1566878040000,"y":12.7},{"x":1566878100000,"y":12.7},{"x":1566878160000,"y":12.7},{"x":1566878220000,"y":12.7},{"x":1566878280000,"y":12.7},{"x":1566878340000,"y":12.71},{"x":1566878400000,"y":12.7},{"x":1566878460000,"y":12.7},{"x":1566878520000,"y":12.7},{"x":1566878580000,"y":12.7},{"x":1566878640000,"y":12.71},{"x":1566878700000,"y":12.7},{"x":1566878760000,"y":12.7},{"x":1566878820000,"y":12.7},{"x":1566878880000,"y":12.7},{"x":1566878940000,"y":12.71},{"x":1566879000000,"y":12.7},{"x":1566879060000,"y":12.7},{"x":1566879120000,"y":12.7},{"x":1566879180000,"y":12.7},{"x":1566879240000,"y":12.71},{"x":1566879300000,"y":12.71},{"x":1566879360000,"y":12.71},{"x":1566879420000,"y":12.69},{"x":1566879480000,"y":12.69},{"x":1566879540000,"y":12.71},{"x":1566879600000,"y":12.7},{"x":1566879660000,"y":12.69},{"x":1566879720000,"y":12.69},{"x":1566879780000,"y":12.69},{"x":1566879840000,"y":12.69},{"x":1566879900000,"y":12.71},{"x":1566879960000,"y":12.7},{"x":1566880020000,"y":12.7},{"x":1566880080000,"y":12.69},{"x":1566880140000,"y":12.69},{"x":1566880200000,"y":12.72},{"x":1566880260000,"y":12.71},{"x":1566880320000,"y":12.71},{"x":1566880380000,"y":12.71},{"x":1566880440000,"y":12.71},{"x":1566880500000,"y":12.71},{"x":1566880560000,"y":12.7},{"x":1566880620000,"y":12.7},{"x":1566880680000,"y":12.7},{"x":1566880740000,"y":12.71},{"x":1566880800000,"y":12.72},{"x":1566880860000,"y":12.71},{"x":1566880920000,"y":12.71},{"x":1566880980000,"y":12.7},{"x":1566881040000,"y":12.71},{"x":1566881100000,"y":12.73},{"x":1566881160000,"y":12.71},{"x":1566881220000,"y":12.7},{"x":1566881280000,"y":12.7},{"x":1566881340000,"y":12.71},{"x":1566881400000,"y":12.72},{"x":1566881460000,"y":12.71},{"x":1566881520000,"y":12.71},{"x":1566881580000,"y":12.7},{"x":1566881640000,"y":12.69},{"x":1566881700000,"y":12.7},{"x":1566881760000,"y":12.7},{"x":1566881820000,"y":12.7},{"x":1566881880000,"y":12.69},{"x":1566881940000,"y":12.69},{"x":1566882000000,"y":12.68},{"x":1566882060000,"y":12.7},{"x":1566882120000,"y":12.7},{"x":1566882180000,"y":12.7},{"x":1566882240000,"y":12.69},{"x":1566882300000,"y":12.69},{"x":1566882360000,"y":12.7},{"x":1566882420000,"y":12.69},{"x":1566882480000,"y":12.69},{"x":1566882540000,"y":12.69},{"x":1566882600000,"y":12.69},{"x":1566882660000,"y":12.7},{"x":1566882720000,"y":12.69},{"x":1566882780000,"y":12.7},{"x":1566882840000,"y":12.7},{"x":1566882900000,"y":12.69},{"x":1566882960000,"y":12.7},{"x":1566883020000,"y":12.69},{"x":1566883080000,"y":12.69},{"x":1566883140000,"y":12.69},{"x":1566883200000,"y":12.7},{"x":1566883260000,"y":12.71},{"x":1566883320000,"y":12.69},{"x":1566883380000,"y":12.69},{"x":1566883440000,"y":12.69},{"x":1566883500000,"y":12.69},{"x":1566883560000,"y":12.7},{"x":1566883620000,"y":12.68},{"x":1566883680000,"y":12.68},{"x":1566883740000,"y":12.68},{"x":1566883800000,"y":12.7},{"x":1566883860000,"y":12.71},{"x":1566883920000,"y":12.7},{"x":1566883980000,"y":12.7},{"x":1566884040000,"y":12.7},{"x":1566884100000,"y":12.7},{"x":1566884160000,"y":12.7},{"x":1566884220000,"y":12.7},{"x":1566884280000,"y":12.69},{"x":1566884340000,"y":12.7},{"x":1566884400000,"y":12.69},{"x":1566884460000,"y":12.69},{"x":1566884520000,"y":12.7},{"x":1566884580000,"y":12.69},{"x":1566884640000,"y":12.69},{"x":1566884700000,"y":12.69},{"x":1566884760000,"y":12.7},{"x":1566884820000,"y":12.71},{"x":1566884880000,"y":12.7},{"x":1566884940000,"y":12.7},{"x":1566885000000,"y":12.7},{"x":1566885060000,"y":12.7},{"x":1566885120000,"y":12.7},{"x":1566885180000,"y":12.68},{"x":1566885240000,"y":12.68},{"x":1566885300000,"y":12.7},{"x":1566885360000,"y":12.7},{"x":1566885420000,"y":12.71},{"x":1566885480000,"y":12.69},{"x":1566885540000,"y":12.69},{"x":1566885600000,"y":12.7},{"x":1566885660000,"y":12.7},{"x":1566885720000,"y":12.71},{"x":1566885780000,"y":12.7},{"x":1566885840000,"y":12.69},{"x":1566885900000,"y":12.69},{"x":1566885960000,"y":12.69},{"x":1566886020000,"y":12.7},{"x":1566886080000,"y":12.7},{"x":1566886140000,"y":12.71},{"x":1566886200000,"y":12.71},{"x":1566886260000,"y":12.71},{"x":1566886320000,"y":12.71},{"x":1566886380000,"y":12.71},{"x":1566886440000,"y":12.71},{"x":1566886500000,"y":12.7},{"x":1566886560000,"y":12.7},{"x":1566886620000,"y":12.71},{"x":1566886680000,"y":12.72},{"x":1566886740000,"y":12.71},{"x":1566886800000,"y":12.7},{"x":1566886860000,"y":12.7},{"x":1566886920000,"y":12.7},{"x":1566886980000,"y":12.72},{"x":1566887040000,"y":12.71},{"x":1566887100000,"y":12.68},{"x":1566887160000,"y":12.67},{"x":1566887220000,"y":12.67},{"x":1566887280000,"y":12.69},{"x":1566887340000,"y":12.68},{"x":1566887400000,"y":12.68},{"x":1566887460000,"y":12.68},{"x":1566887520000,"y":12.68},{"x":1566887580000,"y":12.69},{"x":1566887640000,"y":12.71},{"x":1566887700000,"y":12.71},{"x":1566887760000,"y":12.71},{"x":1566887820000,"y":12.71},{"x":1566887880000,"y":12.71},{"x":1566887940000,"y":12.71},{"x":1566888000000,"y":12.69},{"x":1566888060000,"y":12.69},{"x":1566888120000,"y":12.69},{"x":1566888180000,"y":12.7},{"x":1566888240000,"y":12.68},{"x":1566888300000,"y":12.69},{"x":1566888360000,"y":12.69},{"x":1566888420000,"y":12.69},{"x":1566888480000,"y":12.7},{"x":1566888540000,"y":12.69},{"x":1566888600000,"y":12.71},{"x":1566888660000,"y":12.71},{"x":1566888720000,"y":12.71},{"x":1566888780000,"y":12.71},{"x":1566888840000,"y":12.71},{"x":1566888900000,"y":12.7},{"x":1566888960000,"y":12.7},{"x":1566889020000,"y":12.7},{"x":1566889080000,"y":12.7},{"x":1566889140000,"y":12.71},{"x":1566889200000,"y":12.66},{"x":1566889260000,"y":12.66},{"x":1566889320000,"y":12.66},{"x":1566889380000,"y":12.66},{"x":1566889440000,"y":12.67},{"x":1566889500000,"y":12.7},{"x":1566889560000,"y":12.7},{"x":1566889620000,"y":12.7},{"x":1566889680000,"y":12.7},{"x":1566889740000,"y":12.72},{"x":1566889800000,"y":12.71},{"x":1566889860000,"y":12.71},{"x":1566889920000,"y":12.71},{"x":1566889980000,"y":12.71},{"x":1566890040000,"y":12.72},{"x":1566890100000,"y":12.71},{"x":1566890160000,"y":12.71},{"x":1566890220000,"y":12.71},{"x":1566890280000,"y":12.71},{"x":1566890340000,"y":12.73},{"x":1566890400000,"y":12.7},{"x":1566890460000,"y":12.69},{"x":1566890520000,"y":12.68},{"x":1566890580000,"y":12.68},{"x":1566890640000,"y":12.68},{"x":1566890700000,"y":12.69},{"x":1566890760000,"y":12.68},{"x":1566890820000,"y":12.68},{"x":1566890880000,"y":12.68},{"x":1566890940000,"y":12.68},{"x":1566891000000,"y":12.7},{"x":1566891060000,"y":12.69},{"x":1566891120000,"y":12.69},{"x":1566891180000,"y":12.69},{"x":1566891240000,"y":12.69},{"x":1566891300000,"y":12.7},{"x":1566891360000,"y":12.69},{"x":1566891420000,"y":12.69},{"x":1566891480000,"y":12.69},{"x":1566891540000,"y":12.69},{"x":1566891600000,"y":12.71},{"x":1566891660000,"y":12.7},{"x":1566891720000,"y":12.7},{"x":1566891780000,"y":12.7},{"x":1566891840000,"y":12.7},{"x":1566891900000,"y":12.71},{"x":1566891960000,"y":12.69},{"x":1566892020000,"y":12.69},{"x":1566892080000,"y":12.7},{"x":1566892140000,"y":12.7},{"x":1566892200000,"y":12.68},{"x":1566892260000,"y":12.69},{"x":1566892320000,"y":12.69},{"x":1566892380000,"y":12.69},{"x":1566892440000,"y":12.69},{"x":1566892500000,"y":12.71},{"x":1566892560000,"y":12.7},{"x":1566892620000,"y":12.7},{"x":1566892680000,"y":12.69},{"x":1566892740000,"y":12.69},{"x":1566892800000,"y":12.69},{"x":1566892860000,"y":12.7},{"x":1566892920000,"y":12.7},{"x":1566892980000,"y":12.7},{"x":1566893040000,"y":12.7},{"x":1566893100000,"y":12.69},{"x":1566893160000,"y":12.71},{"x":1566893220000,"y":12.69},{"x":1566893280000,"y":12.7},{"x":1566893340000,"y":12.7},{"x":1566893400000,"y":12.7},{"x":1566893460000,"y":12.71},{"x":1566893520000,"y":12.7},{"x":1566893580000,"y":12.7},{"x":1566893640000,"y":12.7},{"x":1566893700000,"y":12.7},{"x":1566893760000,"y":12.71},{"x":1566893820000,"y":12.69},{"x":1566893880000,"y":12.69},{"x":1566893940000,"y":12.69},{"x":1566894000000,"y":12.69},{"x":1566894060000,"y":12.71},{"x":1566894120000,"y":12.7},{"x":1566894180000,"y":12.7},{"x":1566894240000,"y":12.7},{"x":1566894300000,"y":12.69},{"x":1566894360000,"y":12.71},{"x":1566894420000,"y":12.69},{"x":1566894480000,"y":12.7},{"x":1566894540000,"y":12.7},{"x":1566894600000,"y":12.7},{"x":1566894660000,"y":12.71},{"x":1566894720000,"y":12.69},{"x":1566894780000,"y":12.69},{"x":1566894840000,"y":12.69},{"x":1566894900000,"y":12.7},{"x":1566894960000,"y":12.71},{"x":1566895020000,"y":12.71},{"x":1566895080000,"y":12.71},{"x":1566895140000,"y":12.7},{"x":1566895200000,"y":12.69},{"x":1566895260000,"y":12.71},{"x":1566895320000,"y":12.71},{"x":1566895380000,"y":12.71},{"x":1566895440000,"y":12.71},{"x":1566895500000,"y":12.68},{"x":1566895560000,"y":12.68},{"x":1566895620000,"y":12.7},{"x":1566895680000,"y":12.68},{"x":1566895740000,"y":12.68},{"x":1566895800000,"y":12.71},{"x":1566895860000,"y":12.71},{"x":1566895920000,"y":12.69},{"x":1566895980000,"y":12.67},{"x":1566896040000,"y":12.67},{"x":1566896100000,"y":12.68},{"x":1566896160000,"y":12.68},{"x":1566896220000,"y":12.68},{"x":1566896280000,"y":12.65},{"x":1566896340000,"y":12.65},{"x":1566896400000,"y":12.68},{"x":1566896460000,"y":12.68},{"x":1566896520000,"y":12.7},{"x":1566896580000,"y":12.7},{"x":1566896640000,"y":12.7},{"x":1566896700000,"y":12.69},{"x":1566896760000,"y":12.69},{"x":1566896820000,"y":12.7},{"x":1566896880000,"y":12.7},{"x":1566896940000,"y":12.71},{"x":1566897000000,"y":12.69},{"x":1566897060000,"y":12.69},{"x":1566897120000,"y":12.71},{"x":1566897180000,"y":12.69},{"x":1566897240000,"y":12.69},{"x":1566897300000,"y":12.68},{"x":1566897360000,"y":12.68},{"x":1566897420000,"y":12.69},{"x":1566897480000,"y":12.71},{"x":1566897540000,"y":12.7},{"x":1566897600000,"y":12.71},{"x":1566897660000,"y":12.71},{"x":1566897720000,"y":12.71},{"x":1566897780000,"y":13.04},{"x":1566897840000,"y":12.77},{"x":1566897900000,"y":12.76},{"x":1566897960000,"y":12.76},{"x":1566898020000,"y":12.76},{"x":1566898080000,"y":12.72},{"x":1566898140000,"y":12.69},{"x":1566898200000,"y":12.69},{"x":1566898260000,"y":12.69},{"x":1566898320000,"y":12.69},{"x":1566898380000,"y":12.71},{"x":1566898440000,"y":12.7},{"x":1566898500000,"y":12.71},{"x":1566898560000,"y":12.71},{"x":1566898620000,"y":12.71},{"x":1566898680000,"y":12.72},{"x":1566898740000,"y":12.7},{"x":1566898800000,"y":12.69},{"x":1566898860000,"y":12.69},{"x":1566898920000,"y":12.69},{"x":1566898980000,"y":12.7},{"x":1566899040000,"y":12.69},{"x":1566899100000,"y":12.69},{"x":1566899160000,"y":12.69},{"x":1566899220000,"y":12.69},{"x":1566899280000,"y":12.71},{"x":1566899340000,"y":12.71},{"x":1566899400000,"y":12.69},{"x":1566899460000,"y":12.69},{"x":1566899520000,"y":12.68},{"x":1566899580000,"y":12.68},{"x":1566899640000,"y":12.69},{"x":1566899700000,"y":12.66},{"x":1566899760000,"y":12.66},{"x":1566899820000,"y":12.66},{"x":1566899880000,"y":12.67},{"x":1566899940000,"y":12.68},{"x":1566900000000,"y":12.69},{"x":1566900060000,"y":12.69},{"x":1566900120000,"y":12.69},{"x":1566900180000,"y":12.69},{"x":1566900240000,"y":12.67},{"x":1566900300000,"y":12.68},{"x":1566900360000,"y":12.68},{"x":1566900420000,"y":12.68},{"x":1566900480000,"y":12.68},{"x":1566900540000,"y":12.7},{"x":1566900600000,"y":12.7},{"x":1566900660000,"y":12.69},{"x":1566900720000,"y":12.7},{"x":1566900780000,"y":12.7},{"x":1566900840000,"y":12.71},{"x":1566900900000,"y":12.69},{"x":1566900960000,"y":12.69},{"x":1566901020000,"y":12.68},{"x":1566901080000,"y":12.68},{"x":1566901140000,"y":12.7},{"x":1566901200000,"y":12.69},{"x":1566901260000,"y":12.69},{"x":1566901320000,"y":12.69},{"x":1566901380000,"y":12.69},{"x":1566901440000,"y":12.7},{"x":1566901500000,"y":12.67},{"x":1566901560000,"y":12.67},{"x":1566901620000,"y":12.67},{"x":1566901680000,"y":12.67},{"x":1566901740000,"y":12.68},{"x":1566901800000,"y":12.7},{"x":1566901860000,"y":12.7},{"x":1566901920000,"y":12.7},{"x":1566901980000,"y":12.7},{"x":1566902040000,"y":12.7},{"x":1566902100000,"y":12.7},{"x":1566902160000,"y":12.7},{"x":1566902220000,"y":12.7},{"x":1566902280000,"y":12.7},{"x":1566902340000,"y":12.7},{"x":1566902400000,"y":12.71},{"x":1566902460000,"y":12.7},{"x":1566902520000,"y":12.7},{"x":1566902580000,"y":12.7},{"x":1566902640000,"y":12.7},{"x":1566902700000,"y":12.71},{"x":1566902760000,"y":12.69},{"x":1566902820000,"y":12.68},{"x":1566902880000,"y":12.68},{"x":1566902940000,"y":12.68},{"x":1566903000000,"y":12.69},{"x":1566903060000,"y":12.67},{"x":1566903120000,"y":12.67},{"x":1566903180000,"y":12.67},{"x":1566903240000,"y":12.67},{"x":1566903300000,"y":12.7},{"x":1566903360000,"y":12.7},{"x":1566903420000,"y":12.7},{"x":1566903480000,"y":12.7},{"x":1566903540000,"y":12.7},{"x":1566903600000,"y":12.72},{"x":1566903660000,"y":12.7},{"x":1566903720000,"y":12.7},{"x":1566903780000,"y":12.7},{"x":1566903840000,"y":12.7},{"x":1566903900000,"y":12.72},{"x":1566903960000,"y":12.7},{"x":1566904020000,"y":12.7},{"x":1566904080000,"y":12.7},{"x":1566904140000,"y":12.7},{"x":1566904200000,"y":12.7},{"x":1566904260000,"y":12.71},{"x":1566904320000,"y":12.7},{"x":1566904380000,"y":12.7},{"x":1566904440000,"y":12.7},{"x":1566904500000,"y":12.68},{"x":1566904560000,"y":12.71},{"x":1566904620000,"y":12.7},{"x":1566904680000,"y":12.7},{"x":1566904740000,"y":12.7},{"x":1566904800000,"y":12.7},{"x":1566904860000,"y":12.71},{"x":1566904920000,"y":12.7},{"x":1566904980000,"y":12.7},{"x":1566905040000,"y":12.7},{"x":1566905100000,"y":12.72},{"x":1566905160000,"y":12.7},{"x":1566905220000,"y":12.7},{"x":1566905280000,"y":12.7},{"x":1566905340000,"y":12.7},{"x":1566905400000,"y":12.71},{"x":1566905460000,"y":12.72},{"x":1566905520000,"y":12.71},{"x":1566905580000,"y":12.71},{"x":1566905640000,"y":12.71},{"x":1566905700000,"y":12.7},{"x":1566905760000,"y":12.71},{"x":1566905820000,"y":12.71},{"x":1566905880000,"y":12.71},{"x":1566905940000,"y":12.7},{"x":1566906000000,"y":12.69},{"x":1566906060000,"y":13.07},{"x":1566906120000,"y":12.78},{"x":1566906180000,"y":12.78},{"x":1566906240000,"y":12.78},{"x":1566906300000,"y":12.79},{"x":1566906360000,"y":12.77},{"x":1566906420000,"y":12.72},{"x":1566906480000,"y":12.71},{"x":1566906540000,"y":12.71},{"x":1566906600000,"y":12.69},{"x":1566906660000,"y":12.7},{"x":1566906720000,"y":12.72},{"x":1566906780000,"y":12.71},{"x":1566906840000,"y":12.71},{"x":1566906900000,"y":12.72},{"x":1566906960000,"y":12.72},{"x":1566907020000,"y":12.71},{"x":1566907080000,"y":12.7},{"x":1566907140000,"y":12.7},{"x":1566907200000,"y":12.7},{"x":1566907260000,"y":12.7},{"x":1566907320000,"y":12.7},{"x":1566907380000,"y":12.7},{"x":1566907440000,"y":12.7},{"x":1566907500000,"y":12.7},{"x":1566907560000,"y":12.7},{"x":1566907620000,"y":12.72},{"x":1566907680000,"y":12.71},{"x":1566907740000,"y":12.72},{"x":1566907800000,"y":12.7},{"x":1566907860000,"y":12.7},{"x":1566907920000,"y":12.73},{"x":1566907980000,"y":12.73},{"x":1566908040000,"y":12.73},{"x":1566908100000,"y":12.7},{"x":1566908160000,"y":12.7},{"x":1566908220000,"y":12.73},{"x":1566908280000,"y":12.72},{"x":1566908340000,"y":12.72},{"x":1566908400000,"y":12.7},{"x":1566908460000,"y":12.7},{"x":1566908520000,"y":12.72},{"x":1566908580000,"y":12.71},{"x":1566908640000,"y":12.7},{"x":1566908700000,"y":12.7},{"x":1566908760000,"y":12.69},{"x":1566908820000,"y":12.7},{"x":1566908880000,"y":12.7},{"x":1566908940000,"y":12.7},{"x":1566909000000,"y":12.71},{"x":1566909060000,"y":12.7},{"x":1566909120000,"y":12.72},{"x":1566909180000,"y":12.7},{"x":1566909240000,"y":12.7},{"x":1566909300000,"y":12.68},{"x":1566909360000,"y":12.69},{"x":1566909420000,"y":12.69},{"x":1566909480000,"y":12.71},{"x":1566909540000,"y":12.71},{"x":1566909600000,"y":12.71},{"x":1566909660000,"y":12.71},{"x":1566909720000,"y":12.71},{"x":1566909780000,"y":12.69},{"x":1566909840000,"y":12.68},{"x":1566909900000,"y":12.7},{"x":1566909960000,"y":12.7},{"x":1566910020000,"y":12.7},{"x":1566910080000,"y":12.72},{"x":1566910140000,"y":12.7},{"x":1566910200000,"y":12.7},{"x":1566910260000,"y":12.7},{"x":1566910320000,"y":12.7},{"x":1566910380000,"y":12.7},{"x":1566910440000,"y":12.69},{"x":1566910500000,"y":12.7},{"x":1566910560000,"y":12.7},{"x":1566910620000,"y":12.7},{"x":1566910680000,"y":12.71},{"x":1566910740000,"y":12.7},{"x":1566910800000,"y":12.7},{"x":1566910860000,"y":12.7},{"x":1566910920000,"y":12.7},{"x":1566910980000,"y":12.71},{"x":1566911040000,"y":12.67},{"x":1566911100000,"y":12.7},{"x":1566911160000,"y":12.7},{"x":1566911220000,"y":12.7},{"x":1566911280000,"y":12.84},{"x":1566911340000,"y":12.77},{"x":1566911400000,"y":12.77},{"x":1566911460000,"y":12.77},{"x":1566911520000,"y":12.77},{"x":1566911580000,"y":12.78},{"x":1566911640000,"y":12.7},{"x":1566911700000,"y":12.71},{"x":1566911760000,"y":12.71},{"x":1566911820000,"y":12.71},{"x":1566911880000,"y":12.72},{"x":1566911940000,"y":12.72},{"x":1566912000000,"y":12.71},{"x":1566912060000,"y":12.71},{"x":1566912120000,"y":12.71},{"x":1566912180000,"y":12.71},{"x":1566912240000,"y":12.72},{"x":1566912300000,"y":12.72},{"x":1566912360000,"y":12.71},{"x":1566912420000,"y":12.71},{"x":1566912480000,"y":12.71},{"x":1566912540000,"y":12.72},{"x":1566912600000,"y":12.71},{"x":1566912660000,"y":12.71},{"x":1566912720000,"y":12.71},{"x":1566912780000,"y":12.71},{"x":1566912840000,"y":12.72},{"x":1566912900000,"y":12.72},{"x":1566912960000,"y":12.72},{"x":1566913020000,"y":12.72},{"x":1566913080000,"y":12.72},{"x":1566913140000,"y":12.71},{"x":1566913200000,"y":12.72},{"x":1566913260000,"y":12.72},{"x":1566913320000,"y":12.72},{"x":1566913380000,"y":12.72},{"x":1566913440000,"y":12.73},{"x":1566913500000,"y":12.72},{"x":1566913560000,"y":12.72},{"x":1566913620000,"y":12.72},{"x":1566913680000,"y":12.72},{"x":1566913740000,"y":12.72},{"x":1566913800000,"y":12.7},{"x":1566913860000,"y":12.7},{"x":1566913920000,"y":12.7},{"x":1566913980000,"y":12.7},{"x":1566914040000,"y":12.72},{"x":1566914100000,"y":12.72},{"x":1566914160000,"y":12.72},{"x":1566914220000,"y":12.72},{"x":1566914280000,"y":12.73},{"x":1566914340000,"y":12.73},{"x":1566914400000,"y":12.74},{"x":1566914460000,"y":12.72},{"x":1566914520000,"y":12.72},{"x":1566914580000,"y":12.72},{"x":1566914640000,"y":12.72},{"x":1566914700000,"y":12.72},{"x":1566914760000,"y":12.7},{"x":1566914820000,"y":12.7},{"x":1566914880000,"y":12.7},{"x":1566914940000,"y":12.71},{"x":1566915000000,"y":12.72},{"x":1566915060000,"y":12.7},{"x":1566915120000,"y":12.7},{"x":1566915180000,"y":12.7},{"x":1566915240000,"y":12.7},{"x":1566915300000,"y":12.71},{"x":1566915360000,"y":12.71},{"x":1566915420000,"y":12.71},{"x":1566915480000,"y":12.71},{"x":1566915540000,"y":12.71},{"x":1566915600000,"y":12.73},{"x":1566915660000,"y":12.72},{"x":1566915720000,"y":12.72},{"x":1566915780000,"y":12.72},{"x":1566915840000,"y":12.73},{"x":1566915900000,"y":12.72},{"x":1566915960000,"y":12.71},{"x":1566916020000,"y":12.71},{"x":1566916080000,"y":12.71},{"x":1566916140000,"y":12.71},{"x":1566916200000,"y":12.74},{"x":1566916260000,"y":12.73},{"x":1566916320000,"y":12.73},{"x":1566916380000,"y":12.73},{"x":1566916440000,"y":12.73},{"x":1566916500000,"y":12.72},{"x":1566916560000,"y":12.73},{"x":1566916620000,"y":12.73},{"x":1566916680000,"y":12.73},{"x":1566916740000,"y":12.73},{"x":1566916800000,"y":12.73},{"x":1566916860000,"y":12.72},{"x":1566916920000,"y":12.72},{"x":1566916980000,"y":12.72},{"x":1566917040000,"y":12.72},{"x":1566917100000,"y":12.72},{"x":1566917160000,"y":12.74},{"x":1566917220000,"y":12.73},{"x":1566917280000,"y":12.73},{"x":1566917340000,"y":12.73},{"x":1566917400000,"y":12.73},{"x":1566917460000,"y":12.74},{"x":1566917520000,"y":12.73},{"x":1566917580000,"y":12.72},{"x":1566917640000,"y":12.71},{"x":1566917700000,"y":12.71},{"x":1566917760000,"y":12.72},{"x":1566917820000,"y":12.71},{"x":1566917880000,"y":12.71},{"x":1566917940000,"y":12.71},{"x":1566918000000,"y":12.71},{"x":1566918060000,"y":12.71},{"x":1566918120000,"y":12.7},{"x":1566918180000,"y":12.7},{"x":1566918240000,"y":12.7},{"x":1566918300000,"y":12.71},{"x":1566918360000,"y":12.72},{"x":1566918420000,"y":12.71},{"x":1566918480000,"y":12.71},{"x":1566918540000,"y":12.71},{"x":1566918600000,"y":12.7},{"x":1566918660000,"y":12.72},{"x":1566918720000,"y":12.71},{"x":1566918780000,"y":12.71},{"x":1566918840000,"y":12.71},{"x":1566918900000,"y":12.71},{"x":1566918960000,"y":12.72},{"x":1566919020000,"y":12.71},{"x":1566919080000,"y":12.71},{"x":1566919140000,"y":12.71},{"x":1566919200000,"y":12.71},{"x":1566919260000,"y":12.72},{"x":1566919320000,"y":12.71},{"x":1566919380000,"y":12.71},{"x":1566919440000,"y":12.71},{"x":1566919500000,"y":12.71},{"x":1566919560000,"y":12.81},{"x":1566919620000,"y":12.92},{"x":1566919680000,"y":12.75},{"x":1566919740000,"y":12.75},{"x":1566919800000,"y":12.74},{"x":1566919860000,"y":12.74},{"x":1566919920000,"y":12.72},{"x":1566919980000,"y":12.71},{"x":1566920040000,"y":12.71},{"x":1566920100000,"y":12.69},{"x":1566920160000,"y":12.69},{"x":1566920220000,"y":12.44},{"x":1566920280000,"y":12.42},{"x":1566920340000,"y":12.44},{"x":1566920400000,"y":12.44},{"x":1566920460000,"y":12.44},{"x":1566920520000,"y":12.45},{"x":1566920580000,"y":12.44},{"x":1566920640000,"y":12.44},{"x":1566920700000,"y":12.41},{"x":1566920760000,"y":12.41},{"x":1566920820000,"y":12.45},{"x":1566920880000,"y":12.45},{"x":1566920940000,"y":12.45},{"x":1566921000000,"y":12.44},{"x":1566921060000,"y":12.44},{"x":1566921120000,"y":12.45},{"x":1566921180000,"y":12.44},{"x":1566921240000,"y":12.44},{"x":1566921300000,"y":12.44},{"x":1566921360000,"y":12.44},{"x":1566921420000,"y":12.45},{"x":1566921480000,"y":12.45},{"x":1566921540000,"y":12.45},{"x":1566921600000,"y":12.44},{"x":1566921660000,"y":12.43},{"x":1566921720000,"y":12.45},{"x":1566921780000,"y":12.44},{"x":1566921840000,"y":12.44},{"x":1566921900000,"y":12.42},{"x":1566921960000,"y":12.42},{"x":1566922020000,"y":12.43},{"x":1566922080000,"y":12.43},{"x":1566922140000,"y":12.45},{"x":1566922200000,"y":12.42},{"x":1566922260000,"y":12.42},{"x":1566922320000,"y":12.43},{"x":1566922380000,"y":12.42},{"x":1566922440000,"y":12.42},{"x":1566922500000,"y":12.45},{"x":1566922560000,"y":12.45},{"x":1566922620000,"y":12.45},{"x":1566922680000,"y":12.46},{"x":1566922740000,"y":12.46},{"x":1566922800000,"y":12.45},{"x":1566922860000,"y":12.45},{"x":1566922920000,"y":12.45},{"x":1566922980000,"y":12.46},{"x":1566923040000,"y":12.45},{"x":1566923100000,"y":12.43},{"x":1566923160000,"y":12.43},{"x":1566923220000,"y":12.43},{"x":1566923280000,"y":12.45},{"x":1566923340000,"y":12.45},{"x":1566923400000,"y":12.45},{"x":1566923460000,"y":12.45},{"x":1566923520000,"y":12.45},{"x":1566923580000,"y":12.46},{"x":1566923640000,"y":12.45},{"x":1566923700000,"y":12.45},{"x":1566923760000,"y":12.45},{"x":1566923820000,"y":12.45},{"x":1566923880000,"y":12.47},{"x":1566923940000,"y":12.45},{"x":1566924000000,"y":12.44},{"x":1566924060000,"y":12.43},{"x":1566924120000,"y":12.43},{"x":1566924180000,"y":12.44},{"x":1566924240000,"y":12.65},{"x":1566924300000,"y":12.83},{"x":1566924360000,"y":12.69},{"x":1566924420000,"y":13.24},{"x":1566924480000,"y":12.73},{"x":1566924540000,"y":12.75},{"x":1566924600000,"y":12.7},{"x":1566924660000,"y":12.68},{"x":1566924720000,"y":12.68},{"x":1566924780000,"y":12.68},{"x":1566924840000,"y":12.69},{"x":1566924900000,"y":12.68},{"x":1566924960000,"y":12.68},{"x":1566925020000,"y":12.68},{"x":1566925080000,"y":12.68},{"x":1566925140000,"y":12.68},{"x":1566925200000,"y":12.68},{"x":1566925260000,"y":12.68},{"x":1566925320000,"y":12.67},{"x":1566925380000,"y":12.67},{"x":1566925440000,"y":12.68},{"x":1566925500000,"y":12.68},{"x":1566925560000,"y":12.68},{"x":1566925620000,"y":12.68},{"x":1566925680000,"y":12.68},{"x":1566925740000,"y":12.69},{"x":1566925800000,"y":12.67},{"x":1566925860000,"y":12.67},{"x":1566925920000,"y":12.67},{"x":1566925980000,"y":12.67},{"x":1566926040000,"y":12.67},{"x":1566926100000,"y":12.65},{"x":1566926160000,"y":12.65},{"x":1566926220000,"y":12.66},{"x":1566926280000,"y":12.66},{"x":1566926340000,"y":12.68},{"x":1566926400000,"y":12.67},{"x":1566926460000,"y":12.67},{"x":1566926520000,"y":12.67},{"x":1566926580000,"y":12.67},{"x":1566926640000,"y":12.65},{"x":1566926700000,"y":12.65},{"x":1566926760000,"y":12.64},{"x":1566926820000,"y":12.64},{"x":1566926880000,"y":12.64},{"x":1566926940000,"y":12.64},{"x":1566927000000,"y":12.67},{"x":1566927060000,"y":12.66},{"x":1566927120000,"y":12.66},{"x":1566927180000,"y":12.66},{"x":1566927240000,"y":12.66},{"x":1566927300000,"y":12.66},{"x":1566927360000,"y":12.65},{"x":1566927420000,"y":12.65},{"x":1566927480000,"y":12.65},{"x":1566927540000,"y":12.66},{"x":1566927600000,"y":12.65},{"x":1566927660000,"y":12.64},{"x":1566927720000,"y":12.64},{"x":1566927780000,"y":12.64},{"x":1566927840000,"y":12.64},{"x":1566927900000,"y":12.68},{"x":1566927960000,"y":12.66},{"x":1566928020000,"y":12.66},{"x":1566928080000,"y":12.66},{"x":1566928140000,"y":12.66},{"x":1566928200000,"y":12.68},{"x":1566928260000,"y":12.67},{"x":1566928320000,"y":12.67},{"x":1566928380000,"y":12.67},{"x":1566928440000,"y":12.67},{"x":1566928500000,"y":12.68},{"x":1566928560000,"y":12.65},{"x":1566928620000,"y":12.65},{"x":1566928680000,"y":12.65},{"x":1566928740000,"y":12.65},{"x":1566928800000,"y":12.65},{"x":1566928860000,"y":12.66},{"x":1566928920000,"y":12.66},{"x":1566928980000,"y":12.66},{"x":1566929040000,"y":12.66},{"x":1566929100000,"y":12.68},{"x":1566929160000,"y":12.66},{"x":1566929220000,"y":12.66},{"x":1566929280000,"y":12.66},{"x":1566929340000,"y":12.66},{"x":1566929400000,"y":12.67},{"x":1566929460000,"y":12.68},{"x":1566929520000,"y":12.67},{"x":1566929580000,"y":12.67},{"x":1566929640000,"y":12.67},{"x":1566929700000,"y":12.67},{"x":1566929760000,"y":12.68},{"x":1566929820000,"y":12.67},{"x":1566929880000,"y":12.67},{"x":1566929940000,"y":12.67},{"x":1566930000000,"y":12.66},{"x":1566930060000,"y":12.68},{"x":1566930120000,"y":12.68},{"x":1566930180000,"y":12.67},{"x":1566930240000,"y":12.67},{"x":1566930300000,"y":12.67},{"x":1566930360000,"y":12.68},{"x":1566930420000,"y":12.67},{"x":1566930480000,"y":12.67},{"x":1566930540000,"y":12.67},{"x":1566930600000,"y":12.68},{"x":1566930660000,"y":12.67},{"x":1566930720000,"y":12.64},{"x":1566930780000,"y":12.64},{"x":1566930840000,"y":12.64},{"x":1566930900000,"y":12.66},{"x":1566930960000,"y":12.67},{"x":1566931020000,"y":12.65},{"x":1566931080000,"y":12.65},{"x":1566931140000,"y":12.67},{"x":1566931200000,"y":12.67},{"x":1566931260000,"y":12.68},{"x":1566931320000,"y":12.65},{"x":1566931380000,"y":12.65},{"x":1566931440000,"y":12.65},{"x":1566931500000,"y":12.68},{"x":1566931560000,"y":12.69},{"x":1566931620000,"y":12.68},{"x":1566931680000,"y":12.68},{"x":1566931740000,"y":12.68},{"x":1566931800000,"y":12.68},{"x":1566931860000,"y":12.69},{"x":1566931920000,"y":12.66},{"x":1566931980000,"y":12.66},{"x":1566932040000,"y":12.66},{"x":1566932100000,"y":12.66},{"x":1566932160000,"y":12.66},{"x":1566932220000,"y":18.61},{"x":1566932280000,"y":21.1},{"x":1566932340000,"y":13.76},{"x":1566932400000,"y":13.77},{"x":1566932460000,"y":13.77},{"x":1566932520000,"y":13.79},{"x":1566932580000,"y":13.78},{"x":1566932640000,"y":13.78},{"x":1566932700000,"y":13.78},{"x":1566932760000,"y":13.79},{"x":1566932820000,"y":13.79},{"x":1566932880000,"y":13.78},{"x":1566932940000,"y":13.8},{"x":1566933000000,"y":20.23},{"x":1566933060000,"y":22.56},{"x":1566933120000,"y":23.8},{"x":1566933180000,"y":23.02},{"x":1566933240000,"y":16.26},{"x":1566933300000,"y":13.81},{"x":1566933360000,"y":13.81},{"x":1566933420000,"y":15.97},{"x":1566933480000,"y":23.33},{"x":1566933540000,"y":23.48},{"x":1566933600000,"y":19.73},{"x":1566933660000,"y":23.32},{"x":1566933720000,"y":17.61},{"x":1566933780000,"y":13.78},{"x":1566933840000,"y":13.78},{"x":1566933900000,"y":13.79},{"x":1566933960000,"y":13.79},{"x":1566934020000,"y":13.8},{"x":1566934080000,"y":13.79},{"x":1566934140000,"y":13.78},{"x":1566934200000,"y":13.8},{"x":1566934260000,"y":13.8},{"x":1566934320000,"y":16.17},{"x":1566934380000,"y":23.01},{"x":1566934440000,"y":21.28},{"x":1566934500000,"y":19.16},{"x":1566934560000,"y":13.76},{"x":1566934620000,"y":13.76},{"x":1566934680000,"y":13.8},{"x":1566934740000,"y":13.81},{"x":1566934800000,"y":13.8},{"x":1566934860000,"y":13.81},{"x":1566934920000,"y":13.81},{"x":1566934980000,"y":13.81},{"x":1566935040000,"y":13.81},{"x":1566935100000,"y":20.36},{"x":1566935160000,"y":20.49},{"x":1566935220000,"y":13.8},{"x":1566935280000,"y":13.82},{"x":1566935340000,"y":13.82},{"x":1566935400000,"y":13.82},{"x":1566935460000,"y":13.82},{"x":1566935520000,"y":13.82},{"x":1566935580000,"y":13.86},{"x":1566935640000,"y":13.84},{"x":1566935700000,"y":13.83},{"x":1566935760000,"y":13.83},{"x":1566935820000,"y":13.83},{"x":1566935880000,"y":13.84},{"x":1566935940000,"y":13.81},{"x":1566936000000,"y":13.82},{"x":1566936060000,"y":13.83},{"x":1566936120000,"y":13.81},{"x":1566936180000,"y":13.82},{"x":1566936240000,"y":13.83},{"x":1566936300000,"y":13.83},{"x":1566936360000,"y":13.83},{"x":1566936420000,"y":13.83},{"x":1566936480000,"y":13.83},{"x":1566936540000,"y":13.85},{"x":1566936600000,"y":13.83},{"x":1566936660000,"y":13.83},{"x":1566936720000,"y":13.83},{"x":1566936780000,"y":13.83},{"x":1566936840000,"y":13.85},{"x":1566936900000,"y":13.82},{"x":1566936960000,"y":13.82},{"x":1566937020000,"y":13.82},{"x":1566937080000,"y":13.82},{"x":1566937140000,"y":13.84},{"x":1566937200000,"y":13.83},{"x":1566937260000,"y":13.82},{"x":1566937320000,"y":13.82},{"x":1566937380000,"y":13.82},{"x":1566937440000,"y":13.84},{"x":1566937500000,"y":13.83},{"x":1566937560000,"y":13.83},{"x":1566937620000,"y":13.83},{"x":1566937680000,"y":13.84},{"x":1566937740000,"y":13.85},{"x":1566937800000,"y":13.81},{"x":1566937860000,"y":13.81},{"x":1566937920000,"y":13.8},{"x":1566937980000,"y":13.8},{"x":1566938040000,"y":13.83},{"x":1566938100000,"y":13.84},{"x":1566938160000,"y":13.84},{"x":1566938220000,"y":13.83},{"x":1566938280000,"y":13.82},{"x":1566938340000,"y":13.85},{"x":1566938400000,"y":13.81},{"x":1566938460000,"y":13.81},{"x":1566938520000,"y":13.81},{"x":1566938580000,"y":13.81},{"x":1566938640000,"y":13.82},{"x":1566938700000,"y":13.82},{"x":1566938760000,"y":13.82},{"x":1566938820000,"y":13.82},{"x":1566938880000,"y":13.82},{"x":1566938940000,"y":13.84},{"x":1566939000000,"y":13.83},{"x":1566939060000,"y":13.83},{"x":1566939120000,"y":13.83},{"x":1566939180000,"y":13.83},{"x":1566939240000,"y":13.83},{"x":1566939300000,"y":13.86},{"x":1566939360000,"y":13.83},{"x":1566939420000,"y":13.83},{"x":1566939480000,"y":13.83},{"x":1566939540000,"y":13.83},{"x":1566939600000,"y":13.84},{"x":1566939660000,"y":13.82},{"x":1566939720000,"y":13.82},{"x":1566939780000,"y":13.82},{"x":1566939840000,"y":13.82},{"x":1566939900000,"y":13.86},{"x":1566939960000,"y":13.85},{"x":1566940020000,"y":13.85},{"x":1566940080000,"y":13.85},{"x":1566940140000,"y":13.84},{"x":1566940200000,"y":13.86},{"x":1566940260000,"y":13.85},{"x":1566940320000,"y":13.85},{"x":1566940380000,"y":13.85},{"x":1566940440000,"y":13.84},{"x":1566940500000,"y":13.85},{"x":1566940560000,"y":13.83},{"x":1566940620000,"y":13.83},{"x":1566940680000,"y":13.83},{"x":1566940740000,"y":13.83},{"x":1566940800000,"y":13.84},{"x":1566940860000,"y":13.85},{"x":1566940920000,"y":13.85},{"x":1566940980000,"y":13.85},{"x":1566941040000,"y":13.85},{"x":1566941100000,"y":13.86},{"x":1566941160000,"y":13.85},{"x":1566941220000,"y":13.85},{"x":1566941280000,"y":13.85},{"x":1566941340000,"y":13.85},{"x":1566941400000,"y":14.01},{"x":1566941460000,"y":14.03},{"x":1566941520000,"y":13.89},{"x":1566941580000,"y":13.89},{"x":1566941640000,"y":13.89},{"x":1566941700000,"y":13.9},{"x":1566941760000,"y":13.86},{"x":1566941820000,"y":13.84},{"x":1566941880000,"y":13.84},{"x":1566941940000,"y":13.84},{"x":1566942000000,"y":13.84},{"x":1566942060000,"y":13.85},{"x":1566942120000,"y":13.85},{"x":1566942180000,"y":13.92},{"x":1566942240000,"y":23.94},{"x":1566942300000,"y":16.82},{"x":1566942360000,"y":13.79},{"x":1566942420000,"y":13.79},{"x":1566942480000,"y":13.79},{"x":1566942540000,"y":13.79},{"x":1566942600000,"y":13.79},{"x":1566942660000,"y":13.81},{"x":1566942720000,"y":13.8},{"x":1566942780000,"y":13.8},{"x":1566942840000,"y":13.8},{"x":1566942900000,"y":13.79},{"x":1566942960000,"y":13.81},{"x":1566943020000,"y":13.82},{"x":1566943080000,"y":13.79},{"x":1566943140000,"y":18.77},{"x":1566943200000,"y":17.87},{"x":1566943260000,"y":22.35},{"x":1566943320000,"y":23.04},{"x":1566943380000,"y":23.21},{"x":1566943440000,"y":23.49},{"x":1566943500000,"y":23.12},{"x":1566943560000,"y":23.04},{"x":1566943620000,"y":19.67},{"x":1566943680000,"y":13.76},{"x":1566943740000,"y":20.24},{"x":1566943800000,"y":19.92},{"x":1566943860000,"y":13.79},{"x":1566943920000,"y":13.8},{"x":1566943980000,"y":13.8},{"x":1566944040000,"y":13.79},{"x":1566944100000,"y":13.79},{"x":1566944160000,"y":13.79},{"x":1566944220000,"y":13.82},{"x":1566944280000,"y":16.48},{"x":1566944340000,"y":23.28},{"x":1566944400000,"y":17.86},{"x":1566944460000,"y":13.82},{"x":1566944520000,"y":13.84},{"x":1566944580000,"y":13.85},{"x":1566944640000,"y":13.84},{"x":1566944700000,"y":13.83},{"x":1566944760000,"y":13.83},{"x":1566944820000,"y":13.83},{"x":1566944880000,"y":13.82},{"x":1566944940000,"y":13.82},{"x":1566945000000,"y":13.84},{"x":1566945060000,"y":13.84},{"x":1566945120000,"y":13.85},{"x":1566945180000,"y":13.85},{"x":1566945240000,"y":13.85},{"x":1566945300000,"y":13.85},{"x":1566945360000,"y":13.83},{"x":1566945420000,"y":13.84},{"x":1566945480000,"y":13.82},{"x":1566945540000,"y":13.84},{"x":1566945600000,"y":13.84},{"x":1566945660000,"y":13.84},{"x":1566945720000,"y":13.85},{"x":1566945780000,"y":13.83},{"x":1566945840000,"y":13.83},{"x":1566945900000,"y":13.83},{"x":1566945960000,"y":13.83},{"x":1566946020000,"y":13.83},{"x":1566946080000,"y":13.82},{"x":1566946140000,"y":13.82},{"x":1566946200000,"y":13.84},{"x":1566946260000,"y":13.84},{"x":1566946320000,"y":13.85},{"x":1566946380000,"y":13.83},{"x":1566946440000,"y":13.83},{"x":1566946500000,"y":13.82},{"x":1566946560000,"y":13.82},{"x":1566946620000,"y":13.82},{"x":1566946680000,"y":13.85},{"x":1566946740000,"y":13.85},{"x":1566946800000,"y":13.83},{"x":1566946860000,"y":13.83},{"x":1566946920000,"y":13.82},{"x":1566946980000,"y":13.85},{"x":1566947040000,"y":13.85},{"x":1566947100000,"y":13.85},{"x":1566947160000,"y":13.86},{"x":1566947220000,"y":13.87},{"x":1566947280000,"y":13.91},{"x":1566947340000,"y":13.92},{"x":1566947400000,"y":13.92},{"x":1566947460000,"y":13.91},{"x":1566947520000,"y":13.9},{"x":1566947580000,"y":13.98},{"x":1566947640000,"y":13.98},{"x":1566947700000,"y":13.98},{"x":1566947760000,"y":13.95},{"x":1566947820000,"y":13.95},{"x":1566947880000,"y":13.97},{"x":1566947940000,"y":13.96},{"x":1566948000000,"y":13.96},{"x":1566948060000,"y":19.57},{"x":1566948120000,"y":19.74},{"x":1566948180000,"y":13.86},{"x":1566948240000,"y":13.88},{"x":1566948300000,"y":13.88},{"x":1566948360000,"y":13.87},{"x":1566948420000,"y":13.87},{"x":1566948480000,"y":13.88},{"x":1566948540000,"y":13.88},{"x":1566948600000,"y":13.89},{"x":1566948660000,"y":13.89},{"x":1566948720000,"y":12.67},{"x":1566948780000,"y":12.6},{"x":1566948840000,"y":12.61},{"x":1566948900000,"y":12.58},{"x":1566948960000,"y":12.58},{"x":1566949020000,"y":12.58},{"x":1566949080000,"y":12.58},{"x":1566949140000,"y":12.61},{"x":1566949200000,"y":12.6},{"x":1566949260000,"y":12.6},{"x":1566949320000,"y":12.6},{"x":1566949380000,"y":12.6},{"x":1566949440000,"y":12.61},{"x":1566949500000,"y":12.59},{"x":1566949560000,"y":12.59},{"x":1566949620000,"y":12.59},{"x":1566949680000,"y":12.59},{"x":1566949740000,"y":12.59},{"x":1566949800000,"y":12.55},{"x":1566949860000,"y":12.55},{"x":1566949920000,"y":12.55},{"x":1566949980000,"y":12.56},{"x":1566950040000,"y":12.58},{"x":1566950100000,"y":12.61},{"x":1566950160000,"y":12.6},{"x":1566950220000,"y":12.6},{"x":1566950280000,"y":12.6},{"x":1566950340000,"y":12.61},{"x":1566950400000,"y":12.58},{"x":1566950460000,"y":12.58},{"x":1566950520000,"y":12.58},{"x":1566950580000,"y":12.58},{"x":1566950640000,"y":12.6},{"x":1566950700000,"y":12.61},{"x":1566950760000,"y":12.61},{"x":1566950820000,"y":12.61},{"x":1566950880000,"y":12.61},{"x":1566950940000,"y":12.61},{"x":1566951000000,"y":12.6},{"x":1566951060000,"y":12.61},{"x":1566951120000,"y":12.61},{"x":1566951180000,"y":12.6},{"x":1566951240000,"y":12.6},{"x":1566951300000,"y":12.6},{"x":1566951360000,"y":12.59},{"x":1566951420000,"y":12.59},{"x":1566951480000,"y":12.59},{"x":1566951540000,"y":12.59},{"x":1566951600000,"y":12.62},{"x":1566951660000,"y":12.61},{"x":1566951720000,"y":12.61},{"x":1566951780000,"y":12.61},{"x":1566951840000,"y":12.61},{"x":1566951900000,"y":12.62},{"x":1566951960000,"y":12.61},{"x":1566952020000,"y":12.6},{"x":1566952080000,"y":12.6},{"x":1566952140000,"y":12.6},{"x":1566952200000,"y":12.61},{"x":1566952260000,"y":12.6},{"x":1566952320000,"y":12.6},{"x":1566952380000,"y":12.6},{"x":1566952440000,"y":12.6},{"x":1566952500000,"y":12.62},{"x":1566952560000,"y":12.61},{"x":1566952620000,"y":12.61},{"x":1566952680000,"y":12.61},{"x":1566952740000,"y":12.61},{"x":1566952800000,"y":12.62},{"x":1566952860000,"y":12.61},{"x":1566952920000,"y":12.61},{"x":1566952980000,"y":12.61},{"x":1566953040000,"y":12.61},{"x":1566953100000,"y":12.62},{"x":1566953160000,"y":12.62},{"x":1566953220000,"y":12.62},{"x":1566953280000,"y":12.62},{"x":1566953340000,"y":12.62},{"x":1566953400000,"y":12.61},{"x":1566953460000,"y":12.61},{"x":1566953520000,"y":12.61},{"x":1566953580000,"y":12.61},{"x":1566953640000,"y":12.61},{"x":1566953700000,"y":12.6},{"x":1566953760000,"y":12.56},{"x":1566953820000,"y":12.54},{"x":1566953880000,"y":12.54},{"x":1566953940000,"y":12.54},{"x":1566954000000,"y":12.58},{"x":1566954060000,"y":12.6},{"x":1566954120000,"y":12.59},{"x":1566954180000,"y":12.59},{"x":1566954240000,"y":12.59},{"x":1566954300000,"y":12.6},{"x":1566954360000,"y":12.6},{"x":1566954420000,"y":12.59},{"x":1566954480000,"y":12.59},{"x":1566954540000,"y":12.59},{"x":1566954600000,"y":12.57},{"x":1566954660000,"y":12.6},{"x":1566954720000,"y":12.58},{"x":1566954780000,"y":12.58},{"x":1566954840000,"y":12.58},{"x":1566954900000,"y":12.6},{"x":1566954960000,"y":12.6},{"x":1566955020000,"y":12.59},{"x":1566955080000,"y":12.59},{"x":1566955140000,"y":12.59},{"x":1566955200000,"y":12.6},{"x":1566955260000,"y":12.61},{"x":1566955320000,"y":12.6},{"x":1566955380000,"y":12.6},{"x":1566955440000,"y":12.59},{"x":1566955500000,"y":12.59},{"x":1566955560000,"y":12.6},{"x":1566955620000,"y":12.59},{"x":1566955680000,"y":12.59},{"x":1566955740000,"y":12.59},{"x":1566955800000,"y":12.57},{"x":1566955860000,"y":12.59},{"x":1566955920000,"y":12.59},{"x":1566955980000,"y":12.59},{"x":1566956040000,"y":12.59},{"x":1566956100000,"y":12.59},{"x":1566956160000,"y":12.59},{"x":1566956220000,"y":12.61},{"x":1566956280000,"y":12.6},{"x":1566956340000,"y":12.6},{"x":1566956400000,"y":12.59},{"x":1566956460000,"y":12.59},{"x":1566956520000,"y":12.61},{"x":1566956580000,"y":12.6},{"x":1566956640000,"y":12.6},{"x":1566956700000,"y":12.6},{"x":1566956760000,"y":12.6},{"x":1566956820000,"y":12.61},{"x":1566956880000,"y":12.61},{"x":1566956940000,"y":12.61},{"x":1566957000000,"y":12.59},{"x":1566957060000,"y":12.59},{"x":1566957120000,"y":12.61},{"x":1566957180000,"y":12.6},{"x":1566957240000,"y":12.6},{"x":1566957300000,"y":12.6},{"x":1566957360000,"y":12.59},{"x":1566957420000,"y":12.61},{"x":1566957480000,"y":12.6},{"x":1566957540000,"y":12.6},{"x":1566957600000,"y":12.57},{"x":1566957660000,"y":12.57},{"x":1566957720000,"y":12.59},{"x":1566957780000,"y":12.6},{"x":1566957840000,"y":12.59},{"x":1566957900000,"y":12.58},{"x":1566957960000,"y":12.58},{"x":1566958020000,"y":12.6},{"x":1566958080000,"y":12.59},{"x":1566958140000,"y":12.59},{"x":1566958200000,"y":12.61},{"x":1566958260000,"y":12.61},{"x":1566958320000,"y":12.61},{"x":1566958380000,"y":12.62},{"x":1566958440000,"y":12.61},{"x":1566958500000,"y":12.6},{"x":1566958560000,"y":12.6},{"x":1566958620000,"y":12.59},{"x":1566958680000,"y":12.61},{"x":1566958740000,"y":12.6},{"x":1566958800000,"y":12.6},{"x":1566958860000,"y":12.6},{"x":1566958920000,"y":12.6},{"x":1566958980000,"y":12.62},{"x":1566959040000,"y":12.6},{"x":1566959100000,"y":12.6},{"x":1566959160000,"y":12.6},{"x":1566959220000,"y":12.6},{"x":1566959280000,"y":12.6},{"x":1566959340000,"y":12.59},{"x":1566959400000,"y":12.6},{"x":1566959460000,"y":12.6},{"x":1566959520000,"y":12.6},{"x":1566959580000,"y":12.6},{"x":1566959640000,"y":12.58},{"x":1566959700000,"y":12.59},{"x":1566959760000,"y":12.59},{"x":1566959820000,"y":12.59},{"x":1566959880000,"y":12.61},{"x":1566959940000,"y":12.6},{"x":1566960000000,"y":12.59},{"x":1566960060000,"y":12.59},{"x":1566960120000,"y":12.59},{"x":1566960180000,"y":12.61},{"x":1566960240000,"y":12.61},{"x":1566960300000,"y":12.6},{"x":1566960360000,"y":12.6},{"x":1566960420000,"y":12.6},{"x":1566960480000,"y":12.61},{"x":1566960540000,"y":12.61},{"x":1566960600000,"y":12.6},{"x":1566960660000,"y":12.6},{"x":1566960720000,"y":12.6},{"x":1566960780000,"y":12.61},{"x":1566960840000,"y":12.61},{"x":1566960900000,"y":12.61},{"x":1566960960000,"y":12.61},{"x":1566961020000,"y":12.61},{"x":1566961080000,"y":12.61},{"x":1566961140000,"y":12.62},{"x":1566961200000,"y":12.61},{"x":1566961260000,"y":12.61},{"x":1566961320000,"y":12.61},{"x":1566961380000,"y":12.61},{"x":1566961440000,"y":12.62},{"x":1566961500000,"y":12.61},{"x":1566961560000,"y":12.61},{"x":1566961620000,"y":12.61},{"x":1566961680000,"y":12.61},{"x":1566961740000,"y":12.62},{"x":1566961800000,"y":12.58},{"x":1566961860000,"y":12.58},{"x":1566961920000,"y":12.58},{"x":1566961980000,"y":12.58},{"x":1566962040000,"y":12.6},{"x":1566962100000,"y":12.62},{"x":1566962160000,"y":12.62},{"x":1566962220000,"y":12.62},{"x":1566962280000,"y":12.62},{"x":1566962340000,"y":12.62},{"x":1566962400000,"y":12.61},{"x":1566962460000,"y":12.62},{"x":1566962520000,"y":12.61},{"x":1566962580000,"y":12.61},{"x":1566962640000,"y":12.62},{"x":1566962700000,"y":12.59},{"x":1566962760000,"y":12.59},{"x":1566962820000,"y":12.59},{"x":1566962880000,"y":12.59},{"x":1566962940000,"y":12.61},{"x":1566963000000,"y":12.58},{"x":1566963060000,"y":12.58},{"x":1566963120000,"y":12.58},{"x":1566963180000,"y":12.58},{"x":1566963240000,"y":12.7},{"x":1566963300000,"y":12.8},{"x":1566963360000,"y":12.65},{"x":1566963420000,"y":12.65},{"x":1566963480000,"y":12.65},{"x":1566963540000,"y":12.66},{"x":1566963600000,"y":12.6},{"x":1566963660000,"y":12.59},{"x":1566963720000,"y":12.59},{"x":1566963780000,"y":12.59},{"x":1566963840000,"y":12.59},{"x":1566963900000,"y":12.61},{"x":1566963960000,"y":12.6},{"x":1566964020000,"y":12.6},{"x":1566964080000,"y":12.6},{"x":1566964140000,"y":12.6},{"x":1566964200000,"y":12.61},{"x":1566964260000,"y":12.59},{"x":1566964320000,"y":12.59},{"x":1566964380000,"y":12.59},{"x":1566964440000,"y":12.59},{"x":1566964500000,"y":12.6},{"x":1566964560000,"y":12.6},{"x":1566964620000,"y":12.6},{"x":1566964680000,"y":12.6},{"x":1566964740000,"y":12.6},{"x":1566964800000,"y":12.6},{"x":1566964860000,"y":12.59},{"x":1566964920000,"y":12.59},{"x":1566964980000,"y":12.6},{"x":1566965040000,"y":12.59},{"x":1566965100000,"y":12.61},{"x":1566965160000,"y":12.59},{"x":1566965220000,"y":12.59},{"x":1566965280000,"y":12.59},{"x":1566965340000,"y":12.6},{"x":1566965400000,"y":12.6},{"x":1566965460000,"y":12.6},{"x":1566965520000,"y":12.6},{"x":1566965580000,"y":12.6},{"x":1566965640000,"y":12.61},{"x":1566965700000,"y":12.58},{"x":1566965760000,"y":12.59},{"x":1566965820000,"y":12.59},{"x":1566965880000,"y":12.59},{"x":1566965940000,"y":12.59},{"x":1566966000000,"y":12.59},{"x":1566966060000,"y":12.59},{"x":1566966120000,"y":12.59},{"x":1566966180000,"y":12.58},{"x":1566966240000,"y":12.59},{"x":1566966300000,"y":12.6},{"x":1566966360000,"y":12.62},{"x":1566966420000,"y":12.59},{"x":1566966480000,"y":12.59},{"x":1566966540000,"y":12.59},{"x":1566966600000,"y":12.6},{"x":1566966660000,"y":12.61},{"x":1566966720000,"y":12.6},{"x":1566966780000,"y":12.6},{"x":1566966840000,"y":12.6},{"x":1566966900000,"y":12.61},{"x":1566966960000,"y":12.59},{"x":1566967020000,"y":12.58},{"x":1566967080000,"y":12.57},{"x":1566967140000,"y":12.6},{"x":1566967200000,"y":12.57},{"x":1566967260000,"y":12.59},{"x":1566967320000,"y":12.58},{"x":1566967380000,"y":12.58},{"x":1566967440000,"y":12.58},{"x":1566967500000,"y":12.57},{"x":1566967560000,"y":12.59},{"x":1566967620000,"y":12.59},{"x":1566967680000,"y":12.59},{"x":1566967740000,"y":12.59},{"x":1566967800000,"y":12.58},{"x":1566967860000,"y":12.59},{"x":1566967920000,"y":12.6},{"x":1566967980000,"y":12.59},{"x":1566968040000,"y":12.59},{"x":1566968100000,"y":12.58},{"x":1566968160000,"y":12.59},{"x":1566968220000,"y":12.6},{"x":1566968280000,"y":12.6},{"x":1566968340000,"y":12.61},{"x":1566968400000,"y":12.59},{"x":1566968460000,"y":12.6},{"x":1566968520000,"y":12.62},{"x":1566968580000,"y":12.61},{"x":1566968640000,"y":12.61},{"x":1566968700000,"y":12.61},{"x":1566968760000,"y":12.61},{"x":1566968820000,"y":12.62},{"x":1566968880000,"y":12.61},{"x":1566968940000,"y":12.61},{"x":1566969000000,"y":12.61},{"x":1566969060000,"y":12.61},{"x":1566969120000,"y":12.61},{"x":1566969180000,"y":12.61},{"x":1566969240000,"y":12.6},{"x":1566969300000,"y":12.61},{"x":1566969360000,"y":12.61},{"x":1566969420000,"y":12.61},{"x":1566969480000,"y":12.6},{"x":1566969540000,"y":12.6},{"x":1566969600000,"y":12.61},{"x":1566969660000,"y":12.61},{"x":1566969720000,"y":12.63},{"x":1566969780000,"y":12.61},{"x":1566969840000,"y":12.61},{"x":1566969900000,"y":12.61},{"x":1566969960000,"y":12.61},{"x":1566970020000,"y":12.61},{"x":1566970080000,"y":12.59},{"x":1566970140000,"y":12.59},{"x":1566970200000,"y":12.62},{"x":1566970260000,"y":12.62},{"x":1566970320000,"y":12.62},{"x":1566970380000,"y":12.61},{"x":1566970440000,"y":12.61},{"x":1566970500000,"y":12.61},{"x":1566970560000,"y":12.61},{"x":1566970620000,"y":12.62},{"x":1566970680000,"y":12.61},{"x":1566970740000,"y":12.59},{"x":1566970800000,"y":12.6},{"x":1566970860000,"y":12.61},{"x":1566970920000,"y":12.61},{"x":1566970980000,"y":12.63},{"x":1566971040000,"y":12.61},{"x":1566971100000,"y":12.61},{"x":1566971160000,"y":12.61},{"x":1566971220000,"y":12.61},{"x":1566971280000,"y":12.62},{"x":1566971340000,"y":12.61},{"x":1566971400000,"y":12.61},{"x":1566971460000,"y":12.61},{"x":1566971520000,"y":12.61},{"x":1566971580000,"y":12.62},{"x":1566971640000,"y":12.61},{"x":1566971700000,"y":12.61},{"x":1566971760000,"y":12.61},{"x":1566971820000,"y":12.61},{"x":1566971880000,"y":12.62},{"x":1566971940000,"y":12.62},{"x":1566972000000,"y":12.58},{"x":1566972060000,"y":12.57},{"x":1566972120000,"y":12.57},{"x":1566972180000,"y":12.59},{"x":1566972240000,"y":12.59},{"x":1566972300000,"y":12.59},{"x":1566972360000,"y":12.59},{"x":1566972420000,"y":12.59},{"x":1566972480000,"y":12.6},{"x":1566972540000,"y":12.59},{"x":1566972600000,"y":12.59},{"x":1566972660000,"y":12.59},{"x":1566972720000,"y":12.59},{"x":1566972780000,"y":12.6},{"x":1566972840000,"y":12.59},{"x":1566972900000,"y":12.57},{"x":1566972960000,"y":12.57},{"x":1566973020000,"y":12.56},{"x":1566973080000,"y":12.57},{"x":1566973140000,"y":12.58},{"x":1566973200000,"y":12.6},{"x":1566973260000,"y":12.6},{"x":1566973320000,"y":12.6},{"x":1566973380000,"y":12.6},{"x":1566973440000,"y":12.58},{"x":1566973500000,"y":12.57},{"x":1566973560000,"y":12.57},{"x":1566973620000,"y":12.56},{"x":1566973680000,"y":12.56},{"x":1566973740000,"y":12.59},{"x":1566973800000,"y":12.59},{"x":1566973860000,"y":12.59},{"x":1566973920000,"y":12.59},{"x":1566973980000,"y":12.59},{"x":1566974040000,"y":12.6},{"x":1566974100000,"y":12.6},{"x":1566974160000,"y":12.6},{"x":1566974220000,"y":12.6},{"x":1566974280000,"y":12.6},{"x":1566974340000,"y":12.62},{"x":1566974400000,"y":12.59},{"x":1566974460000,"y":12.59},{"x":1566974520000,"y":12.59},{"x":1566974580000,"y":12.59},{"x":1566974640000,"y":12.61},{"x":1566974700000,"y":12.61},{"x":1566974760000,"y":12.61},{"x":1566974820000,"y":12.6},{"x":1566974880000,"y":12.6},{"x":1566974940000,"y":12.62},{"x":1566975000000,"y":12.6},{"x":1566975060000,"y":12.59},{"x":1566975120000,"y":12.59},{"x":1566975180000,"y":12.59},{"x":1566975240000,"y":12.6},{"x":1566975300000,"y":12.6},{"x":1566975360000,"y":12.6},{"x":1566975420000,"y":12.6},{"x":1566975480000,"y":12.6},{"x":1566975540000,"y":12.61},{"x":1566975600000,"y":12.6},{"x":1566975660000,"y":12.6},{"x":1566975720000,"y":12.6},{"x":1566975780000,"y":12.6},{"x":1566975840000,"y":12.6},{"x":1566975900000,"y":12.61},{"x":1566975960000,"y":12.59},{"x":1566976020000,"y":12.6},{"x":1566976080000,"y":12.6},{"x":1566976140000,"y":12.6},{"x":1566976200000,"y":12.61},{"x":1566976260000,"y":12.61},{"x":1566976320000,"y":12.61},{"x":1566976380000,"y":12.6},{"x":1566976440000,"y":12.6},{"x":1566976500000,"y":12.6},{"x":1566976560000,"y":12.59},{"x":1566976620000,"y":12.6},{"x":1566976680000,"y":12.6},{"x":1566976740000,"y":12.6},{"x":1566976800000,"y":12.62},{"x":1566976860000,"y":12.61},{"x":1566976920000,"y":12.61},{"x":1566976980000,"y":12.6},{"x":1566977040000,"y":12.6},{"x":1566977100000,"y":12.62},{"x":1566977160000,"y":12.6},{"x":1566977220000,"y":12.6},{"x":1566977280000,"y":12.6},{"x":1566977340000,"y":12.6},{"x":1566977400000,"y":12.61},{"x":1566977460000,"y":12.6},{"x":1566977520000,"y":12.6},{"x":1566977580000,"y":12.6},{"x":1566977640000,"y":12.6},{"x":1566977700000,"y":12.59},{"x":1566977760000,"y":12.59},{"x":1566977820000,"y":12.59},{"x":1566977880000,"y":12.59},{"x":1566977940000,"y":12.59},{"x":1566978000000,"y":12.6},{"x":1566978060000,"y":12.59},{"x":1566978120000,"y":12.59},{"x":1566978180000,"y":12.59},{"x":1566978240000,"y":12.59},{"x":1566978300000,"y":12.59},{"x":1566978360000,"y":12.62},{"x":1566978420000,"y":12.61},{"x":1566978480000,"y":12.61},{"x":1566978540000,"y":12.6},{"x":1566978600000,"y":12.6},{"x":1566978660000,"y":12.62},{"x":1566978720000,"y":12.61},{"x":1566978780000,"y":12.61},{"x":1566978840000,"y":12.61},{"x":1566978900000,"y":12.61},{"x":1566978960000,"y":12.61},{"x":1566979020000,"y":12.61},{"x":1566979080000,"y":12.6},{"x":1566979140000,"y":12.6},{"x":1566979200000,"y":12.57},{"x":1566979260000,"y":12.6},{"x":1566979320000,"y":12.61},{"x":1566979380000,"y":12.61},{"x":1566979440000,"y":12.61},{"x":1566979500000,"y":12.62},{"x":1566979560000,"y":12.63},{"x":1566979620000,"y":12.61},{"x":1566979680000,"y":12.61},{"x":1566979740000,"y":12.61},{"x":1566979800000,"y":12.6},{"x":1566979860000,"y":12.61},{"x":1566979920000,"y":12.61},{"x":1566979980000,"y":12.61},{"x":1566980040000,"y":12.61},{"x":1566980100000,"y":12.58},{"x":1566980160000,"y":12.6},{"x":1566980220000,"y":12.6},{"x":1566980280000,"y":12.6},{"x":1566980340000,"y":12.6},{"x":1566980400000,"y":12.61},{"x":1566980460000,"y":12.61},{"x":1566980520000,"y":12.63},{"x":1566980580000,"y":12.62},{"x":1566980640000,"y":12.62},{"x":1566980700000,"y":12.62},{"x":1566980760000,"y":12.62},{"x":1566980820000,"y":12.62},{"x":1566980880000,"y":12.62},{"x":1566980940000,"y":12.62},{"x":1566981000000,"y":12.6},{"x":1566981060000,"y":12.6},{"x":1566981120000,"y":12.62},{"x":1566981180000,"y":12.61},{"x":1566981240000,"y":12.6},{"x":1566981300000,"y":12.57},{"x":1566981360000,"y":12.57},{"x":1566981420000,"y":12.58},{"x":1566981480000,"y":12.57},{"x":1566981540000,"y":12.6},{"x":1566981600000,"y":12.57},{"x":1566981660000,"y":12.57},{"x":1566981720000,"y":12.59},{"x":1566981780000,"y":12.58},{"x":1566981840000,"y":12.58},{"x":1566981900000,"y":12.58},{"x":1566981960000,"y":12.58},{"x":1566982020000,"y":12.59},{"x":1566982080000,"y":12.58},{"x":1566982140000,"y":12.58},{"x":1566982200000,"y":12.6},{"x":1566982260000,"y":12.6},{"x":1566982320000,"y":12.61},{"x":1566982380000,"y":12.59},{"x":1566982440000,"y":12.59},{"x":1566982500000,"y":12.6},{"x":1566982560000,"y":12.6},{"x":1566982620000,"y":12.61},{"x":1566982680000,"y":12.6},{"x":1566982740000,"y":12.6},{"x":1566982800000,"y":12.6},{"x":1566982860000,"y":12.6},{"x":1566982920000,"y":12.6},{"x":1566982980000,"y":12.61},{"x":1566983040000,"y":12.6},{"x":1566983100000,"y":12.59},{"x":1566983160000,"y":12.59},{"x":1566983220000,"y":12.59},{"x":1566983280000,"y":12.6},{"x":1566983340000,"y":12.6},{"x":1566983400000,"y":12.59},{"x":1566983460000,"y":12.59},{"x":1566983520000,"y":12.59},{"x":1566983580000,"y":12.61},{"x":1566983640000,"y":12.6},{"x":1566983700000,"y":12.61},{"x":1566983760000,"y":12.6},{"x":1566983820000,"y":12.6},{"x":1566983880000,"y":12.62},{"x":1566983940000,"y":12.6},{"x":1566984000000,"y":12.59},{"x":1566984060000,"y":12.59},{"x":1566984120000,"y":12.59},{"x":1566984180000,"y":12.61},{"x":1566984240000,"y":12.59},{"x":1566984300000,"y":12.57},{"x":1566984360000,"y":12.57},{"x":1566984420000,"y":12.59},{"x":1566984480000,"y":12.6},{"x":1566984540000,"y":12.59},{"x":1566984600000,"y":12.6},{"x":1566984660000,"y":12.6},{"x":1566984720000,"y":12.6},{"x":1566984780000,"y":12.61},{"x":1566984840000,"y":12.6},{"x":1566984900000,"y":12.61},{"x":1566984960000,"y":12.6},{"x":1566985020000,"y":12.6},{"x":1566985080000,"y":12.77},{"x":1566985140000,"y":12.82},{"x":1566985200000,"y":12.66},{"x":1566985260000,"y":12.66},{"x":1566985320000,"y":12.66},{"x":1566985380000,"y":12.66},{"x":1566985440000,"y":12.62},{"x":1566985500000,"y":12.6},{"x":1566985560000,"y":12.59},{"x":1566985620000,"y":12.59},{"x":1566985680000,"y":12.59},{"x":1566985740000,"y":12.6},{"x":1566985800000,"y":12.61},{"x":1566985860000,"y":12.61},{"x":1566985920000,"y":12.61},{"x":1566985980000,"y":12.61},{"x":1566986040000,"y":12.62},{"x":1566986100000,"y":12.61},{"x":1566986160000,"y":12.61},{"x":1566986220000,"y":12.61},{"x":1566986280000,"y":12.61},{"x":1566986340000,"y":12.62},{"x":1566986400000,"y":12.61},{"x":1566986460000,"y":12.61},{"x":1566986520000,"y":12.61},{"x":1566986580000,"y":12.61},{"x":1566986640000,"y":12.62},{"x":1566986700000,"y":12.59},{"x":1566986760000,"y":12.59},{"x":1566986820000,"y":12.59},{"x":1566986880000,"y":12.59},{"x":1566986940000,"y":12.61},{"x":1566987000000,"y":12.59},{"x":1566987060000,"y":12.59},{"x":1566987120000,"y":12.59},{"x":1566987180000,"y":12.59},{"x":1566987240000,"y":12.6},{"x":1566987300000,"y":12.59},{"x":1566987360000,"y":12.59},{"x":1566987420000,"y":12.59},{"x":1566987480000,"y":12.59},{"x":1566987540000,"y":12.6},{"x":1566987600000,"y":12.6},{"x":1566987660000,"y":12.6},{"x":1566987720000,"y":12.6},{"x":1566987780000,"y":12.6},{"x":1566987840000,"y":12.6},{"x":1566987900000,"y":12.59},{"x":1566987960000,"y":12.58},{"x":1566988020000,"y":12.58},{"x":1566988080000,"y":12.57},{"x":1566988140000,"y":12.57},{"x":1566988200000,"y":12.61},{"x":1566988260000,"y":12.61},{"x":1566988320000,"y":12.61},{"x":1566988380000,"y":12.61},{"x":1566988440000,"y":12.61},{"x":1566988500000,"y":12.6},{"x":1566988560000,"y":12.59},{"x":1566988620000,"y":12.59},{"x":1566988680000,"y":12.59},{"x":1566988740000,"y":12.61},{"x":1566988800000,"y":12.62},{"x":1566988860000,"y":12.6},{"x":1566988920000,"y":12.6},{"x":1566988980000,"y":12.61},{"x":1566989040000,"y":12.61},{"x":1566989100000,"y":12.61},{"x":1566989160000,"y":12.61},{"x":1566989220000,"y":12.61},{"x":1566989280000,"y":12.61},{"x":1566989340000,"y":12.61},{"x":1566989400000,"y":12.62},{"x":1566989460000,"y":12.61},{"x":1566989520000,"y":12.61},{"x":1566989580000,"y":12.61},{"x":1566989640000,"y":12.61},{"x":1566989700000,"y":12.62},{"x":1566989760000,"y":12.61},{"x":1566989820000,"y":12.61},{"x":1566989880000,"y":12.61},{"x":1566989940000,"y":12.61},{"x":1566990000000,"y":12.63},{"x":1566990060000,"y":12.6},{"x":1566990120000,"y":12.6},{"x":1566990180000,"y":12.6},{"x":1566990240000,"y":12.6},{"x":1566990300000,"y":12.6},{"x":1566990360000,"y":12.62},{"x":1566990420000,"y":12.61},{"x":1566990480000,"y":12.61},{"x":1566990540000,"y":12.6},{"x":1566990600000,"y":12.59},{"x":1566990660000,"y":12.6},{"x":1566990720000,"y":12.59},{"x":1566990780000,"y":12.59},{"x":1566990840000,"y":12.59},{"x":1566990900000,"y":12.59},{"x":1566990960000,"y":12.6},{"x":1566991020000,"y":12.6},{"x":1566991080000,"y":12.6},{"x":1566991140000,"y":12.6},{"x":1566991200000,"y":12.59},{"x":1566991260000,"y":12.61},{"x":1566991320000,"y":12.59},{"x":1566991380000,"y":12.59},{"x":1566991440000,"y":12.59},{"x":1566991500000,"y":12.61},{"x":1566991560000,"y":12.59},{"x":1566991620000,"y":12.59},{"x":1566991680000,"y":12.59},{"x":1566991740000,"y":12.59},{"x":1566991800000,"y":12.6},{"x":1566991860000,"y":12.61},{"x":1566991920000,"y":12.6},{"x":1566991980000,"y":12.59},{"x":1566992040000,"y":12.59},{"x":1566992100000,"y":12.6},{"x":1566992160000,"y":12.61},{"x":1566992220000,"y":12.6},{"x":1566992280000,"y":12.59},{"x":1566992340000,"y":12.59},{"x":1566992400000,"y":12.59},{"x":1566992460000,"y":12.6},{"x":1566992520000,"y":12.58},{"x":1566992580000,"y":12.97},{"x":1566992640000,"y":12.66},{"x":1566992700000,"y":12.66},{"x":1566992760000,"y":12.66},{"x":1566992820000,"y":12.66},{"x":1566992880000,"y":12.64},{"x":1566992940000,"y":12.59},{"x":1566993000000,"y":12.59},{"x":1566993060000,"y":12.59},{"x":1566993120000,"y":12.6},{"x":1566993180000,"y":12.59},{"x":1566993240000,"y":12.59},{"x":1566993300000,"y":12.59},{"x":1566993360000,"y":12.59},{"x":1566993420000,"y":12.61},{"x":1566993480000,"y":12.59},{"x":1566993540000,"y":12.59},{"x":1566993600000,"y":12.59},{"x":1566993660000,"y":12.59},{"x":1566993720000,"y":12.6},{"x":1566993780000,"y":12.6},{"x":1566993840000,"y":12.6},{"x":1566993900000,"y":12.58},{"x":1566993960000,"y":12.58},{"x":1566994020000,"y":12.57},{"x":1566994080000,"y":12.55},{"x":1566994140000,"y":12.59},{"x":1566994200000,"y":12.59},{"x":1566994260000,"y":12.59},{"x":1566994320000,"y":12.6},{"x":1566994380000,"y":12.6},{"x":1566994440000,"y":12.6},{"x":1566994500000,"y":12.6},{"x":1566994560000,"y":12.6},{"x":1566994620000,"y":12.61},{"x":1566994680000,"y":12.6},{"x":1566994740000,"y":12.6},{"x":1566994800000,"y":12.59},{"x":1566994860000,"y":12.59},{"x":1566994920000,"y":12.59},{"x":1566994980000,"y":12.61},{"x":1566995040000,"y":12.6},{"x":1566995100000,"y":12.6},{"x":1566995160000,"y":12.6},{"x":1566995220000,"y":12.6},{"x":1566995280000,"y":12.61},{"x":1566995340000,"y":12.6},{"x":1566995400000,"y":12.59},{"x":1566995460000,"y":12.59},{"x":1566995520000,"y":12.59},{"x":1566995580000,"y":12.6},{"x":1566995640000,"y":12.59},{"x":1566995700000,"y":12.6},{"x":1566995760000,"y":12.6},{"x":1566995820000,"y":12.6},{"x":1566995880000,"y":12.62},{"x":1566995940000,"y":12.6},{"x":1566996000000,"y":12.6},{"x":1566996060000,"y":12.6},{"x":1566996120000,"y":12.6},{"x":1566996180000,"y":12.61},{"x":1566996240000,"y":12.6},{"x":1566996300000,"y":12.61},{"x":1566996360000,"y":12.6},{"x":1566996420000,"y":12.6},{"x":1566996480000,"y":12.61},{"x":1566996540000,"y":12.6},{"x":1566996600000,"y":12.59},{"x":1566996660000,"y":12.59},{"x":1566996720000,"y":12.59},{"x":1566996780000,"y":12.6},{"x":1566996840000,"y":12.58},{"x":1566996900000,"y":12.59},{"x":1566996960000,"y":12.59},{"x":1566997020000,"y":12.59},{"x":1566997080000,"y":12.6},{"x":1566997140000,"y":12.6},{"x":1566997200000,"y":12.6},{"x":1566997260000,"y":12.6},{"x":1566997320000,"y":12.6},{"x":1566997380000,"y":12.6},{"x":1566997440000,"y":12.61},{"x":1566997500000,"y":12.6},{"x":1566997560000,"y":12.6},{"x":1566997620000,"y":12.6},{"x":1566997680000,"y":12.6},{"x":1566997740000,"y":12.61},{"x":1566997800000,"y":12.6},{"x":1566997860000,"y":12.61},{"x":1566997920000,"y":12.61},{"x":1566997980000,"y":12.61},{"x":1566998040000,"y":12.6},{"x":1566998100000,"y":12.58},{"x":1566998160000,"y":12.57},{"x":1566998220000,"y":12.57},{"x":1566998280000,"y":12.57},{"x":1566998340000,"y":12.6},{"x":1566998400000,"y":12.6},{"x":1566998460000,"y":12.6},{"x":1566998520000,"y":12.6},{"x":1566998580000,"y":12.6},{"x":1566998640000,"y":12.61},{"x":1566998700000,"y":12.59},{"x":1566998760000,"y":12.59},{"x":1566998820000,"y":12.58},{"x":1566998880000,"y":12.58},{"x":1566998940000,"y":12.6},{"x":1566999000000,"y":12.59},{"x":1566999060000,"y":12.59},{"x":1566999120000,"y":12.59},{"x":1566999180000,"y":12.59},{"x":1566999240000,"y":12.61},{"x":1566999300000,"y":12.61},{"x":1566999360000,"y":12.61},{"x":1566999420000,"y":12.6},{"x":1566999480000,"y":12.6},{"x":1566999540000,"y":12.61},{"x":1566999600000,"y":12.61},{"x":1566999660000,"y":12.59},{"x":1566999720000,"y":12.58},{"x":1566999780000,"y":12.58},{"x":1566999840000,"y":12.6},{"x":1566999900000,"y":12.59},{"x":1566999960000,"y":12.59},{"x":1567000020000,"y":12.59},{"x":1567000080000,"y":12.59},{"x":1567000140000,"y":12.59},{"x":1567000200000,"y":12.6},{"x":1567000260000,"y":12.59},{"x":1567000320000,"y":12.59},{"x":1567000380000,"y":12.58},{"x":1567000440000,"y":12.58},{"x":1567000500000,"y":12.58},{"x":1567000560000,"y":12.58},{"x":1567000620000,"y":12.58},{"x":1567000680000,"y":12.58},{"x":1567000740000,"y":12.58},{"x":1567000800000,"y":12.58},{"x":1567000860000,"y":12.57},{"x":1567000920000,"y":12.57},{"x":1567000980000,"y":12.57},{"x":1567001040000,"y":12.57},{"x":1567001100000,"y":12.59},{"x":1567001160000,"y":12.58},{"x":1567001220000,"y":12.58},{"x":1567001280000,"y":12.59},{"x":1567001340000,"y":12.59},{"x":1567001400000,"y":12.61},{"x":1567001460000,"y":12.59},{"x":1567001520000,"y":12.59},{"x":1567001580000,"y":12.59},{"x":1567001640000,"y":12.59},{"x":1567001700000,"y":12.58},{"x":1567001760000,"y":12.58},{"x":1567001820000,"y":12.59},{"x":1567001880000,"y":12.59},{"x":1567001940000,"y":12.59},{"x":1567002000000,"y":12.6},{"x":1567002060000,"y":12.57},{"x":1567002120000,"y":12.57},{"x":1567002180000,"y":12.57},{"x":1567002240000,"y":12.57},{"x":1567002300000,"y":12.57},{"x":1567002360000,"y":12.61},{"x":1567002420000,"y":12.59},{"x":1567002480000,"y":12.58},{"x":1567002540000,"y":12.59},{"x":1567002600000,"y":12.6},{"x":1567002660000,"y":12.61},{"x":1567002720000,"y":12.59},{"x":1567002780000,"y":12.59},{"x":1567002840000,"y":12.59},{"x":1567002900000,"y":12.6},{"x":1567002960000,"y":12.61},{"x":1567003020000,"y":12.6},{"x":1567003080000,"y":12.6},{"x":1567003140000,"y":12.59},{"x":1567003200000,"y":12.59},{"x":1567003260000,"y":12.61},{"x":1567003320000,"y":12.6},{"x":1567003380000,"y":12.6},{"x":1567003440000,"y":12.6},{"x":1567003500000,"y":12.6},{"x":1567003560000,"y":12.6},{"x":1567003620000,"y":12.59},{"x":1567003680000,"y":12.59},{"x":1567003740000,"y":12.59},{"x":1567003800000,"y":12.59},{"x":1567003860000,"y":12.6},{"x":1567003920000,"y":12.59},{"x":1567003980000,"y":12.59},{"x":1567004040000,"y":12.59},{"x":1567004100000,"y":12.6},{"x":1567004160000,"y":12.61},{"x":1567004220000,"y":12.6},{"x":1567004280000,"y":12.6},{"x":1567004340000,"y":12.6},{"x":1567004400000,"y":12.6},{"x":1567004460000,"y":12.61},{"x":1567004520000,"y":12.6},{"x":1567004580000,"y":12.6},{"x":1567004640000,"y":12.59},{"x":1567004700000,"y":12.61},{"x":1567004760000,"y":12.61},{"x":1567004820000,"y":12.61},{"x":1567004880000,"y":12.6},{"x":1567004940000,"y":12.6},{"x":1567005000000,"y":12.6},{"x":1567005060000,"y":12.6},{"x":1567005120000,"y":12.62},{"x":1567005180000,"y":12.61},{"x":1567005240000,"y":12.61},{"x":1567005300000,"y":12.6},{"x":1567005360000,"y":12.6},{"x":1567005420000,"y":12.62},{"x":1567005480000,"y":12.6},{"x":1567005540000,"y":12.6},{"x":1567005600000,"y":12.58},{"x":1567005660000,"y":12.58},{"x":1567005720000,"y":12.59},{"x":1567005780000,"y":12.6},{"x":1567005840000,"y":12.6},{"x":1567005900000,"y":12.6},{"x":1567005960000,"y":12.6},{"x":1567006020000,"y":12.6},{"x":1567006080000,"y":12.59},{"x":1567006140000,"y":12.59},{"x":1567006200000,"y":12.6},{"x":1567006260000,"y":12.6},{"x":1567006320000,"y":12.61},{"x":1567006380000,"y":12.6},{"x":1567006440000,"y":12.6},{"x":1567006500000,"y":12.58},{"x":1567006560000,"y":12.58},{"x":1567006620000,"y":12.58},{"x":1567006680000,"y":12.61},{"x":1567006740000,"y":12.61},{"x":1567006800000,"y":12.6},{"x":1567006860000,"y":12.6},{"x":1567006920000,"y":12.6},{"x":1567006980000,"y":12.94},{"x":1567007040000,"y":12.67},{"x":1567007100000,"y":12.66},{"x":1567007160000,"y":12.67},{"x":1567007220000,"y":12.67},{"x":1567007280000,"y":12.64},{"x":1567007340000,"y":12.61},{"x":1567007400000,"y":12.58},{"x":1567007460000,"y":12.58},{"x":1567007520000,"y":12.57},{"x":1567007580000,"y":12.61},{"x":1567007640000,"y":12.61},{"x":1567007700000,"y":12.6},{"x":1567007760000,"y":12.6},{"x":1567007820000,"y":12.61},{"x":1567007880000,"y":12.62},{"x":1567007940000,"y":12.61},{"x":1567008000000,"y":12.61},{"x":1567008060000,"y":12.61},{"x":1567008120000,"y":12.61},{"x":1567008180000,"y":12.62},{"x":1567008240000,"y":12.59},{"x":1567008300000,"y":12.6},{"x":1567008360000,"y":12.6},{"x":1567008420000,"y":12.6},{"x":1567008480000,"y":12.61},{"x":1567008540000,"y":12.61},{"x":1567008600000,"y":12.61},{"x":1567008660000,"y":12.61},{"x":1567008720000,"y":12.61},{"x":1567008780000,"y":12.62},{"x":1567008840000,"y":12.61},{"x":1567008900000,"y":12.62},{"x":1567008960000,"y":12.6},{"x":1567009020000,"y":12.59},{"x":1567009080000,"y":12.59},{"x":1567009140000,"y":12.6},{"x":1567009200000,"y":12.59},{"x":1567009260000,"y":12.59},{"x":1567009320000,"y":12.59},{"x":1567009380000,"y":12.59},{"x":1567009440000,"y":12.6},{"x":1567009500000,"y":12.59},{"x":1567009560000,"y":12.59},{"x":1567009620000,"y":12.58},{"x":1567009680000,"y":12.58},{"x":1567009740000,"y":12.6},{"x":1567009800000,"y":12.59},{"x":1567009860000,"y":12.59},{"x":1567009920000,"y":12.59},{"x":1567009980000,"y":12.59},{"x":1567010040000,"y":12.6},{"x":1567010100000,"y":12.59},{"x":1567010160000,"y":12.59},{"x":1567010220000,"y":12.59},{"x":1567010280000,"y":12.59},{"x":1567010340000,"y":12.61},{"x":1567010400000,"y":12.59},{"x":1567010460000,"y":12.59},{"x":1567010520000,"y":12.59},{"x":1567010580000,"y":12.59},{"x":1567010640000,"y":12.61},{"x":1567010700000,"y":12.59},{"x":1567010760000,"y":12.59},{"x":1567010820000,"y":12.59},{"x":1567010880000,"y":12.58},{"x":1567010940000,"y":12.6},{"x":1567011000000,"y":12.58},{"x":1567011060000,"y":12.58},{"x":1567011120000,"y":12.57},{"x":1567011180000,"y":12.57},{"x":1567011240000,"y":12.58},{"x":1567011300000,"y":12.59},{"x":1567011360000,"y":12.59},{"x":1567011420000,"y":12.59},{"x":1567011480000,"y":12.59},{"x":1567011540000,"y":12.59},{"x":1567011600000,"y":12.6},{"x":1567011660000,"y":12.58},{"x":1567011720000,"y":12.58},{"x":1567011780000,"y":12.58},{"x":1567011840000,"y":12.58},{"x":1567011900000,"y":12.6},{"x":1567011960000,"y":12.6},{"x":1567012020000,"y":12.6},{"x":1567012080000,"y":12.6},{"x":1567012140000,"y":12.6},{"x":1567012200000,"y":12.6},{"x":1567012260000,"y":12.6},{"x":1567012320000,"y":12.6},{"x":1567012380000,"y":12.6},{"x":1567012440000,"y":12.6},{"x":1567012500000,"y":12.61},{"x":1567012560000,"y":12.6},{"x":1567012620000,"y":12.6},{"x":1567012680000,"y":12.6},{"x":1567012740000,"y":12.6},{"x":1567012800000,"y":12.6},{"x":1567012860000,"y":12.59},{"x":1567012920000,"y":12.59},{"x":1567012980000,"y":12.59},{"x":1567013040000,"y":12.59},{"x":1567013100000,"y":12.59},{"x":1567013160000,"y":12.6},{"x":1567013220000,"y":12.6},{"x":1567013280000,"y":12.59},{"x":1567013340000,"y":12.59},{"x":1567013400000,"y":12.6},{"x":1567013460000,"y":12.59},{"x":1567013520000,"y":12.59},{"x":1567013580000,"y":12.59},{"x":1567013640000,"y":12.59},{"x":1567013700000,"y":12.61},{"x":1567013760000,"y":12.6},{"x":1567013820000,"y":12.6},{"x":1567013880000,"y":12.6},{"x":1567013940000,"y":12.6},{"x":1567014000000,"y":12.6},{"x":1567014060000,"y":12.62},{"x":1567014120000,"y":12.6},{"x":1567014180000,"y":12.6},{"x":1567014240000,"y":12.61},{"x":1567014300000,"y":12.59},{"x":1567014360000,"y":12.61},{"x":1567014420000,"y":12.6},{"x":1567014480000,"y":12.6},{"x":1567014540000,"y":12.6},{"x":1567014600000,"y":12.61},{"x":1567014660000,"y":12.6},{"x":1567014720000,"y":12.58},{"x":1567014780000,"y":12.58},{"x":1567014840000,"y":12.58},{"x":1567014900000,"y":12.6},{"x":1567014960000,"y":12.61},{"x":1567015020000,"y":12.6},{"x":1567015080000,"y":12.6},{"x":1567015140000,"y":12.6},{"x":1567015200000,"y":12.61},{"x":1567015260000,"y":12.61},{"x":1567015320000,"y":12.6},{"x":1567015380000,"y":12.6},{"x":1567015440000,"y":12.6},{"x":1567015500000,"y":12.58},{"x":1567015560000,"y":12.6},{"x":1567015620000,"y":12.61},{"x":1567015680000,"y":12.6},{"x":1567015740000,"y":12.6},{"x":1567015800000,"y":12.59},{"x":1567015860000,"y":12.6},{"x":1567015920000,"y":12.6},{"x":1567015980000,"y":12.6},{"x":1567016040000,"y":12.6},{"x":1567016100000,"y":12.59},{"x":1567016160000,"y":12.6},{"x":1567016220000,"y":12.6},{"x":1567016280000,"y":12.6},{"x":1567016340000,"y":12.6},{"x":1567016400000,"y":12.61},{"x":1567016460000,"y":12.61},{"x":1567016520000,"y":12.62},{"x":1567016580000,"y":12.6},{"x":1567016640000,"y":12.6},{"x":1567016700000,"y":12.6},{"x":1567016760000,"y":12.6},{"x":1567016820000,"y":12.62},{"x":1567016880000,"y":12.61},{"x":1567016940000,"y":12.6},{"x":1567017000000,"y":12.6},{"x":1567017060000,"y":12.6},{"x":1567017120000,"y":12.61},{"x":1567017180000,"y":12.6},{"x":1567017240000,"y":12.6},{"x":1567017300000,"y":12.61},{"x":1567017360000,"y":12.61},{"x":1567017420000,"y":12.62},{"x":1567017480000,"y":12.61},{"x":1567017540000,"y":12.61},{"x":1567017600000,"y":12.61},{"x":1567017660000,"y":12.6},{"x":1567017720000,"y":12.62},{"x":1567017780000,"y":12.62},{"x":1567017840000,"y":12.61},{"x":1567017900000,"y":12.6},{"x":1567017960000,"y":12.6},{"x":1567018020000,"y":12.61},{"x":1567018080000,"y":12.61},{"x":1567018140000,"y":12.61},{"x":1567018200000,"y":12.6},{"x":1567018260000,"y":12.59},{"x":1567018320000,"y":12.58},{"x":1567018380000,"y":12.6},{"x":1567018440000,"y":12.78},{"x":1567018500000,"y":12.79},{"x":1567018560000,"y":12.69},{"x":1567018620000,"y":20.16},{"x":1567018680000,"y":16.21},{"x":1567018740000,"y":13.82},{"x":1567018800000,"y":13.85},{"x":1567018860000,"y":13.85},{"x":1567018920000,"y":13.85},{"x":1567018980000,"y":13.88},{"x":1567019040000,"y":13.86},{"x":1567019100000,"y":13.83},{"x":1567019160000,"y":13.83},{"x":1567019220000,"y":13.83},{"x":1567019280000,"y":13.85},{"x":1567019340000,"y":13.86},{"x":1567019400000,"y":13.86},{"x":1567019460000,"y":13.86},{"x":1567019520000,"y":13.87},{"x":1567019580000,"y":13.88},{"x":1567019640000,"y":13.86},{"x":1567019700000,"y":13.84},{"x":1567019760000,"y":13.84},{"x":1567019820000,"y":13.85},{"x":1567019880000,"y":13.86},{"x":1567019940000,"y":13.85},{"x":1567020000000,"y":13.85},{"x":1567020060000,"y":13.86},{"x":1567020120000,"y":13.85},{"x":1567020180000,"y":13.87},{"x":1567020240000,"y":13.86},{"x":1567020300000,"y":13.83},{"x":1567020360000,"y":13.82},{"x":1567020420000,"y":13.83},{"x":1567020480000,"y":13.86},{"x":1567020540000,"y":13.87},{"x":1567020600000,"y":13.87},{"x":1567020660000,"y":13.87},{"x":1567020720000,"y":13.87},{"x":1567020780000,"y":13.86},{"x":1567020840000,"y":13.85},{"x":1567020900000,"y":13.85},{"x":1567020960000,"y":13.85},{"x":1567021020000,"y":13.85},{"x":1567021080000,"y":13.85},{"x":1567021140000,"y":13.88},{"x":1567021200000,"y":13.87},{"x":1567021260000,"y":13.87},{"x":1567021320000,"y":13.87},{"x":1567021380000,"y":13.87},{"x":1567021440000,"y":13.88},{"x":1567021500000,"y":13.87},{"x":1567021560000,"y":13.87},{"x":1567021620000,"y":13.87},{"x":1567021680000,"y":13.87},{"x":1567021740000,"y":13.88},{"x":1567021800000,"y":13.88},{"x":1567021860000,"y":13.87},{"x":1567021920000,"y":13.85},{"x":1567021980000,"y":13.85},{"x":1567022040000,"y":13.86},{"x":1567022100000,"y":13.85},{"x":1567022160000,"y":13.85},{"x":1567022220000,"y":13.85},{"x":1567022280000,"y":13.85},{"x":1567022340000,"y":13.87},{"x":1567022400000,"y":13.84},{"x":1567022460000,"y":13.85},{"x":1567022520000,"y":13.85},{"x":1567022580000,"y":13.85},{"x":1567022640000,"y":13.87},{"x":1567022700000,"y":13.86},{"x":1567022760000,"y":13.86},{"x":1567022820000,"y":13.86},{"x":1567022880000,"y":13.86},{"x":1567022940000,"y":13.9},{"x":1567023000000,"y":13.85},{"x":1567023060000,"y":13.85},{"x":1567023120000,"y":13.85},{"x":1567023180000,"y":13.85},{"x":1567023240000,"y":13.87},{"x":1567023300000,"y":13.85},{"x":1567023360000,"y":13.85},{"x":1567023420000,"y":13.86},{"x":1567023480000,"y":13.87},{"x":1567023540000,"y":13.87},{"x":1567023600000,"y":13.9},{"x":1567023660000,"y":13.88},{"x":1567023720000,"y":13.88},{"x":1567023780000,"y":13.88},{"x":1567023840000,"y":13.88},{"x":1567023900000,"y":13.9},{"x":1567023960000,"y":13.89},{"x":1567024020000,"y":13.88},{"x":1567024080000,"y":13.88},{"x":1567024140000,"y":13.86},{"x":1567024200000,"y":13.88},{"x":1567024260000,"y":13.88},{"x":1567024320000,"y":13.88},{"x":1567024380000,"y":13.88},{"x":1567024440000,"y":13.88},{"x":1567024500000,"y":13.87},{"x":1567024560000,"y":13.84},{"x":1567024620000,"y":13.84},{"x":1567024680000,"y":13.84},{"x":1567024740000,"y":13.88},{"x":1567024800000,"y":13.9},{"x":1567024860000,"y":13.88},{"x":1567024920000,"y":13.88},{"x":1567024980000,"y":13.88},{"x":1567025040000,"y":13.88},{"x":1567025100000,"y":13.89},{"x":1567025160000,"y":13.89},{"x":1567025220000,"y":13.89},{"x":1567025280000,"y":13.88},{"x":1567025340000,"y":13.87},{"x":1567025400000,"y":13.89},{"x":1567025460000,"y":13.87},{"x":1567025520000,"y":13.87},{"x":1567025580000,"y":13.87},{"x":1567025640000,"y":13.87},{"x":1567025700000,"y":13.89},{"x":1567025760000,"y":13.87},{"x":1567025820000,"y":13.87},{"x":1567025880000,"y":13.87},{"x":1567025940000,"y":13.87},{"x":1567026000000,"y":13.89},{"x":1567026060000,"y":13.88},{"x":1567026120000,"y":13.86},{"x":1567026180000,"y":13.86},{"x":1567026240000,"y":13.86},{"x":1567026300000,"y":13.9},{"x":1567026360000,"y":13.91},{"x":1567026420000,"y":13.9},{"x":1567026480000,"y":13.89},{"x":1567026540000,"y":13.88},{"x":1567026600000,"y":13.88},{"x":1567026660000,"y":13.88},{"x":1567026720000,"y":13.88},{"x":1567026780000,"y":13.88},{"x":1567026840000,"y":13.88},{"x":1567026900000,"y":13.89},{"x":1567026960000,"y":13.9},{"x":1567027020000,"y":13.88},{"x":1567027080000,"y":13.88},{"x":1567027140000,"y":13.88},{"x":1567027200000,"y":14.16},{"x":1567027260000,"y":14.09},{"x":1567027320000,"y":14.08},{"x":1567027380000,"y":14.08},{"x":1567027440000,"y":14.08},{"x":1567027500000,"y":14.03},{"x":1567027560000,"y":14.01},{"x":1567027620000,"y":14},{"x":1567027680000,"y":13.99},{"x":1567027740000,"y":13.97},{"x":1567027800000,"y":13.96},{"x":1567027860000,"y":13.97},{"x":1567027920000,"y":13.98},{"x":1567027980000,"y":13.98},{"x":1567028040000,"y":13.98},{"x":1567028100000,"y":13.98},{"x":1567028160000,"y":13.99},{"x":1567028220000,"y":13.99},{"x":1567028280000,"y":14},{"x":1567028340000,"y":13.99},{"x":1567028400000,"y":14},{"x":1567028460000,"y":14},{"x":1567028520000,"y":14.02},{"x":1567028580000,"y":14.01},{"x":1567028640000,"y":14.01},{"x":1567028700000,"y":13.98},{"x":1567028760000,"y":13.97},{"x":1567028820000,"y":14.22},{"x":1567028880000,"y":14.06},{"x":1567028940000,"y":14.03},{"x":1567029000000,"y":14.04},{"x":1567029060000,"y":14.04},{"x":1567029120000,"y":14.02},{"x":1567029180000,"y":13.98},{"x":1567029240000,"y":13.98},{"x":1567029300000,"y":13.98},{"x":1567029360000,"y":13.97},{"x":1567029420000,"y":14},{"x":1567029480000,"y":14},{"x":1567029540000,"y":14},{"x":1567029600000,"y":14},{"x":1567029660000,"y":14},{"x":1567029720000,"y":14.01},{"x":1567029780000,"y":14},{"x":1567029840000,"y":14},{"x":1567029900000,"y":14.01},{"x":1567029960000,"y":14.01},{"x":1567030020000,"y":14.02},{"x":1567030080000,"y":14.01},{"x":1567030140000,"y":13.99},{"x":1567030200000,"y":13.99},{"x":1567030260000,"y":13.99},{"x":1567030320000,"y":14},{"x":1567030380000,"y":13.99},{"x":1567030440000,"y":13.99},{"x":1567030500000,"y":14},{"x":1567030560000,"y":14},{"x":1567030620000,"y":14},{"x":1567030680000,"y":14.02},{"x":1567030740000,"y":14},{"x":1567030800000,"y":14},{"x":1567030860000,"y":14},{"x":1567030920000,"y":14},{"x":1567030980000,"y":14.02},{"x":1567031040000,"y":14},{"x":1567031100000,"y":14},{"x":1567031160000,"y":14},{"x":1567031220000,"y":14},{"x":1567031280000,"y":14.01},{"x":1567031340000,"y":13.99},{"x":1567031400000,"y":13.99},{"x":1567031460000,"y":13.99},{"x":1567031520000,"y":13.99},{"x":1567031580000,"y":13.99},{"x":1567031640000,"y":13.98},{"x":1567031700000,"y":13.99},{"x":1567031760000,"y":13.98},{"x":1567031820000,"y":13.98},{"x":1567031880000,"y":14.01},{"x":1567031940000,"y":14.01},{"x":1567032000000,"y":13.98},{"x":1567032060000,"y":13.98},{"x":1567032120000,"y":13.98},{"x":1567032180000,"y":13.99},{"x":1567032240000,"y":14},{"x":1567032300000,"y":13.99},{"x":1567032360000,"y":13.99},{"x":1567032420000,"y":13.99},{"x":1567032480000,"y":14},{"x":1567032540000,"y":14},{"x":1567032600000,"y":13.99},{"x":1567032660000,"y":13.99},{"x":1567032720000,"y":13.99},{"x":1567032780000,"y":14.01},{"x":1567032840000,"y":13.99},{"x":1567032900000,"y":14},{"x":1567032960000,"y":14},{"x":1567033020000,"y":14},{"x":1567033080000,"y":14},{"x":1567033140000,"y":14.01},{"x":1567033200000,"y":14},{"x":1567033260000,"y":14},{"x":1567033320000,"y":14},{"x":1567033380000,"y":14},{"x":1567033440000,"y":14.02},{"x":1567033500000,"y":14.01},{"x":1567033560000,"y":14.01},{"x":1567033620000,"y":14.01},{"x":1567033680000,"y":14.01},{"x":1567033740000,"y":14.03},{"x":1567033800000,"y":13.98},{"x":1567033860000,"y":13.98},{"x":1567033920000,"y":13.98},{"x":1567033980000,"y":13.98},{"x":1567034040000,"y":14.01},{"x":1567034100000,"y":14.01},{"x":1567034160000,"y":14},{"x":1567034220000,"y":14},{"x":1567034280000,"y":14},{"x":1567034340000,"y":14.01},{"x":1567034400000,"y":14},{"x":1567034460000,"y":14},{"x":1567034520000,"y":14},{"x":1567034580000,"y":14},{"x":1567034640000,"y":14.01},{"x":1567034700000,"y":14.02},{"x":1567034760000,"y":14.02},{"x":1567034820000,"y":14.01},{"x":1567034880000,"y":14.01},{"x":1567034940000,"y":14.02},{"x":1567035000000,"y":14},{"x":1567035060000,"y":14},{"x":1567035120000,"y":14},{"x":1567035180000,"y":14},{"x":1567035240000,"y":14.01},{"x":1567035300000,"y":14.01},{"x":1567035360000,"y":14.01},{"x":1567035420000,"y":14.01},{"x":1567035480000,"y":14.01},{"x":1567035540000,"y":14.01},{"x":1567035600000,"y":14.01},{"x":1567035660000,"y":14},{"x":1567035720000,"y":14},{"x":1567035780000,"y":14},{"x":1567035840000,"y":14},{"x":1567035900000,"y":14.02},{"x":1567035960000,"y":14.01},{"x":1567036020000,"y":14.01},{"x":1567036080000,"y":14.01},{"x":1567036140000,"y":14.01},{"x":1567036200000,"y":14.03},{"x":1567036260000,"y":14},{"x":1567036320000,"y":14},{"x":1567036380000,"y":14},{"x":1567036440000,"y":14},{"x":1567036500000,"y":14.01},{"x":1567036560000,"y":14},{"x":1567036620000,"y":13.98},{"x":1567036680000,"y":13.98},{"x":1567036740000,"y":13.98},{"x":1567036800000,"y":13.13},{"x":1567036860000,"y":12.73},{"x":1567036920000,"y":12.73},{"x":1567036980000,"y":12.73},{"x":1567037040000,"y":12.72},{"x":1567037100000,"y":12.73},{"x":1567037160000,"y":12.72},{"x":1567037220000,"y":12.72},{"x":1567037280000,"y":12.72},{"x":1567037340000,"y":12.72},{"x":1567037400000,"y":12.74},{"x":1567037460000,"y":12.73},{"x":1567037520000,"y":12.73},{"x":1567037580000,"y":12.73},{"x":1567037640000,"y":12.73},{"x":1567037700000,"y":12.72},{"x":1567037760000,"y":12.73},{"x":1567037820000,"y":12.73},{"x":1567037880000,"y":12.73},{"x":1567037940000,"y":12.73},{"x":1567038000000,"y":12.72},{"x":1567038060000,"y":12.72},{"x":1567038120000,"y":12.7},{"x":1567038180000,"y":12.7},{"x":1567038240000,"y":12.71},{"x":1567038300000,"y":12.73},{"x":1567038360000,"y":12.74},{"x":1567038420000,"y":12.73},{"x":1567038480000,"y":12.72},{"x":1567038540000,"y":12.72},{"x":1567038600000,"y":12.73},{"x":1567038660000,"y":12.73},{"x":1567038720000,"y":12.72},{"x":1567038780000,"y":12.72},{"x":1567038840000,"y":12.72},{"x":1567038900000,"y":12.69},{"x":1567038960000,"y":12.72},{"x":1567039020000,"y":12.73},{"x":1567039080000,"y":12.73},{"x":1567039140000,"y":12.73},{"x":1567039200000,"y":12.73},{"x":1567039260000,"y":12.75},{"x":1567039320000,"y":12.74},{"x":1567039380000,"y":12.74},{"x":1567039440000,"y":12.73},{"x":1567039500000,"y":12.73},{"x":1567039560000,"y":12.75},{"x":1567039620000,"y":12.73},{"x":1567039680000,"y":12.73},{"x":1567039740000,"y":12.73},{"x":1567039800000,"y":12.72},{"x":1567039860000,"y":12.73},{"x":1567039920000,"y":12.73},{"x":1567039980000,"y":12.73},{"x":1567040040000,"y":12.73},{"x":1567040100000,"y":12.73},{"x":1567040160000,"y":12.75},{"x":1567040220000,"y":12.73},{"x":1567040280000,"y":12.73},{"x":1567040340000,"y":12.73},{"x":1567040400000,"y":12.74},{"x":1567040460000,"y":12.74},{"x":1567040520000,"y":12.74},{"x":1567040580000,"y":12.73},{"x":1567040640000,"y":12.73},{"x":1567040700000,"y":12.73},{"x":1567040760000,"y":12.73},{"x":1567040820000,"y":12.74},{"x":1567040880000,"y":12.73},{"x":1567040940000,"y":12.74},{"x":1567041000000,"y":12.74},{"x":1567041060000,"y":12.74},{"x":1567041120000,"y":12.74},{"x":1567041180000,"y":12.74},{"x":1567041240000,"y":12.74},{"x":1567041300000,"y":12.72},{"x":1567041360000,"y":12.72},{"x":1567041420000,"y":12.73},{"x":1567041480000,"y":12.72},{"x":1567041540000,"y":12.72},{"x":1567041600000,"y":12.74},{"x":1567041660000,"y":12.74},{"x":1567041720000,"y":12.74},{"x":1567041780000,"y":12.73},{"x":1567041840000,"y":12.73},{"x":1567041900000,"y":12.73},{"x":1567041960000,"y":12.73},{"x":1567042020000,"y":12.75},{"x":1567042080000,"y":12.75},{"x":1567042140000,"y":12.75},{"x":1567042200000,"y":12.74},{"x":1567042260000,"y":12.74},{"x":1567042320000,"y":12.74},{"x":1567042380000,"y":12.74},{"x":1567042440000,"y":12.73},{"x":1567042500000,"y":12.74},{"x":1567042560000,"y":12.74},{"x":1567042620000,"y":12.74},{"x":1567042680000,"y":12.75},{"x":1567042740000,"y":12.74},{"x":1567042800000,"y":12.74},{"x":1567042860000,"y":12.74},{"x":1567042920000,"y":12.74},{"x":1567042980000,"y":12.72},{"x":1567043040000,"y":12.69},{"x":1567043100000,"y":12.73},{"x":1567043160000,"y":12.73},{"x":1567043220000,"y":12.73},{"x":1567043280000,"y":12.74},{"x":1567043340000,"y":12.71},{"x":1567043400000,"y":12.7},{"x":1567043460000,"y":12.7},{"x":1567043520000,"y":12.71},{"x":1567043580000,"y":12.73},{"x":1567043640000,"y":12.74},{"x":1567043700000,"y":12.74},{"x":1567043760000,"y":12.74},{"x":1567043820000,"y":12.74},{"x":1567043880000,"y":12.74},{"x":1567043940000,"y":12.72},{"x":1567044000000,"y":12.73},{"x":1567044060000,"y":12.73},{"x":1567044120000,"y":12.73},{"x":1567044180000,"y":12.74},{"x":1567044240000,"y":12.74},{"x":1567044300000,"y":12.74},{"x":1567044360000,"y":12.74},{"x":1567044420000,"y":12.74},{"x":1567044480000,"y":12.74},{"x":1567044540000,"y":12.73},{"x":1567044600000,"y":12.75},{"x":1567044660000,"y":12.75},{"x":1567044720000,"y":12.75},{"x":1567044780000,"y":12.75},{"x":1567044840000,"y":12.76},{"x":1567044900000,"y":12.74},{"x":1567044960000,"y":12.74},{"x":1567045020000,"y":12.74},{"x":1567045080000,"y":12.74},{"x":1567045140000,"y":12.75},{"x":1567045200000,"y":12.75},{"x":1567045260000,"y":12.75},{"x":1567045320000,"y":12.75},{"x":1567045380000,"y":12.75},{"x":1567045440000,"y":12.76},{"x":1567045500000,"y":12.74},{"x":1567045560000,"y":12.74},{"x":1567045620000,"y":12.73},{"x":1567045680000,"y":12.72},{"x":1567045740000,"y":12.75},{"x":1567045800000,"y":12.75},{"x":1567045860000,"y":12.75},{"x":1567045920000,"y":12.73},{"x":1567045980000,"y":12.73},{"x":1567046040000,"y":12.74},{"x":1567046100000,"y":12.72},{"x":1567046160000,"y":12.72},{"x":1567046220000,"y":12.72},{"x":1567046280000,"y":12.72},{"x":1567046340000,"y":12.74},{"x":1567046400000,"y":12.72},{"x":1567046460000,"y":12.72},{"x":1567046520000,"y":12.72},{"x":1567046580000,"y":12.72},{"x":1567046640000,"y":12.73},{"x":1567046700000,"y":12.71},{"x":1567046760000,"y":12.71},{"x":1567046820000,"y":12.71},{"x":1567046880000,"y":12.71},{"x":1567046940000,"y":12.71},{"x":1567047000000,"y":12.75},{"x":1567047060000,"y":12.73},{"x":1567047120000,"y":12.73},{"x":1567047180000,"y":12.73},{"x":1567047240000,"y":12.73},{"x":1567047300000,"y":12.74},{"x":1567047360000,"y":12.73},{"x":1567047420000,"y":12.73},{"x":1567047480000,"y":12.73},{"x":1567047540000,"y":12.73},{"x":1567047600000,"y":12.74},{"x":1567047660000,"y":12.73},{"x":1567047720000,"y":12.73},{"x":1567047780000,"y":12.73},{"x":1567047840000,"y":12.73},{"x":1567047900000,"y":12.74},{"x":1567047960000,"y":12.73},{"x":1567048020000,"y":12.73},{"x":1567048080000,"y":12.73},{"x":1567048140000,"y":12.73},{"x":1567048200000,"y":12.74},{"x":1567048260000,"y":12.73},{"x":1567048320000,"y":12.73},{"x":1567048380000,"y":12.73},{"x":1567048440000,"y":12.73},{"x":1567048500000,"y":12.74},{"x":1567048560000,"y":12.73},{"x":1567048620000,"y":12.73},{"x":1567048680000,"y":12.73},{"x":1567048740000,"y":12.73},{"x":1567048800000,"y":12.74},{"x":1567048860000,"y":12.73},{"x":1567048920000,"y":12.73},{"x":1567048980000,"y":12.73},{"x":1567049040000,"y":12.73},{"x":1567049100000,"y":12.72},{"x":1567049160000,"y":12.72},{"x":1567049220000,"y":12.71},{"x":1567049280000,"y":12.71},{"x":1567049340000,"y":12.71},{"x":1567049400000,"y":12.73},{"x":1567049460000,"y":12.75},{"x":1567049520000,"y":12.74},{"x":1567049580000,"y":12.74},{"x":1567049640000,"y":12.73},{"x":1567049700000,"y":12.71},{"x":1567049760000,"y":12.72},{"x":1567049820000,"y":12.71},{"x":1567049880000,"y":12.71},{"x":1567049940000,"y":12.72},{"x":1567050000000,"y":12.72},{"x":1567050060000,"y":12.73},{"x":1567050120000,"y":12.72},{"x":1567050180000,"y":12.72},{"x":1567050240000,"y":12.72},{"x":1567050300000,"y":12.7},{"x":1567050360000,"y":12.73},{"x":1567050420000,"y":12.72},{"x":1567050480000,"y":12.72},{"x":1567050540000,"y":12.71},{"x":1567050600000,"y":12.72},{"x":1567050660000,"y":13.04},{"x":1567050720000,"y":12.78},{"x":1567050780000,"y":12.78},{"x":1567050840000,"y":12.78},{"x":1567050900000,"y":12.78},{"x":1567050960000,"y":12.78},{"x":1567051020000,"y":12.72},{"x":1567051080000,"y":12.72},{"x":1567051140000,"y":12.72},{"x":1567051200000,"y":12.73},{"x":1567051260000,"y":12.73},{"x":1567051320000,"y":12.71},{"x":1567051380000,"y":12.71},{"x":1567051440000,"y":12.71},{"x":1567051500000,"y":12.73},{"x":1567051560000,"y":12.75},{"x":1567051620000,"y":12.71},{"x":1567051680000,"y":12.71},{"x":1567051740000,"y":12.73},{"x":1567051800000,"y":12.73},{"x":1567051860000,"y":12.72},{"x":1567051920000,"y":12.73},{"x":1567051980000,"y":12.72},{"x":1567052040000,"y":12.72},{"x":1567052100000,"y":12.73},{"x":1567052160000,"y":12.73},{"x":1567052220000,"y":12.74},{"x":1567052280000,"y":12.73},{"x":1567052340000,"y":12.73},{"x":1567052400000,"y":12.7},{"x":1567052460000,"y":12.7},{"x":1567052520000,"y":12.73},{"x":1567052580000,"y":12.72},{"x":1567052640000,"y":12.72},{"x":1567052700000,"y":12.7},{"x":1567052760000,"y":12.7},{"x":1567052820000,"y":12.74},{"x":1567052880000,"y":12.72},{"x":1567052940000,"y":12.72},{"x":1567053000000,"y":12.71},{"x":1567053060000,"y":12.71},{"x":1567053120000,"y":12.72},{"x":1567053180000,"y":12.72},{"x":1567053240000,"y":12.72},{"x":1567053300000,"y":12.72},{"x":1567053360000,"y":12.73},{"x":1567053420000,"y":12.74},{"x":1567053480000,"y":12.73},{"x":1567053540000,"y":12.73},{"x":1567053600000,"y":12.73},{"x":1567053660000,"y":12.73},{"x":1567053720000,"y":12.75},{"x":1567053780000,"y":12.74},{"x":1567053840000,"y":12.74},{"x":1567053900000,"y":12.73},{"x":1567053960000,"y":12.73},{"x":1567054020000,"y":12.74},{"x":1567054080000,"y":12.74},{"x":1567054140000,"y":12.73},{"x":1567054200000,"y":12.73},{"x":1567054260000,"y":12.73},{"x":1567054320000,"y":12.73},{"x":1567054380000,"y":12.74},{"x":1567054440000,"y":12.73},{"x":1567054500000,"y":12.72},{"x":1567054560000,"y":12.72},{"x":1567054620000,"y":12.73},{"x":1567054680000,"y":12.74},{"x":1567054740000,"y":12.73},{"x":1567054800000,"y":12.73},{"x":1567054860000,"y":12.72},{"x":1567054920000,"y":12.72},{"x":1567054980000,"y":12.75},{"x":1567055040000,"y":12.73},{"x":1567055100000,"y":12.72},{"x":1567055160000,"y":12.69},{"x":1567055220000,"y":12.69},{"x":1567055280000,"y":12.71},{"x":1567055340000,"y":12.7},{"x":1567055400000,"y":12.71},{"x":1567055460000,"y":12.71},{"x":1567055520000,"y":12.71},{"x":1567055580000,"y":12.72},{"x":1567055640000,"y":12.71},{"x":1567055700000,"y":12.72},{"x":1567055760000,"y":12.72},{"x":1567055820000,"y":12.7},{"x":1567055880000,"y":12.71},{"x":1567055940000,"y":12.69},{"x":1567056000000,"y":12.71},{"x":1567056060000,"y":12.71},{"x":1567056120000,"y":12.71},{"x":1567056180000,"y":12.72},{"x":1567056240000,"y":12.68},{"x":1567056300000,"y":12.68},{"x":1567056360000,"y":12.68},{"x":1567056420000,"y":12.68},{"x":1567056480000,"y":12.7},{"x":1567056540000,"y":12.71},{"x":1567056600000,"y":12.72},{"x":1567056660000,"y":12.72},{"x":1567056720000,"y":12.72},{"x":1567056780000,"y":12.72},{"x":1567056840000,"y":12.72},{"x":1567056900000,"y":12.71},{"x":1567056960000,"y":12.71},{"x":1567057020000,"y":12.71},{"x":1567057080000,"y":12.71},{"x":1567057140000,"y":12.72},{"x":1567057200000,"y":12.71},{"x":1567057260000,"y":12.71},{"x":1567057320000,"y":12.71},{"x":1567057380000,"y":12.71},{"x":1567057440000,"y":12.72},{"x":1567057500000,"y":12.72},{"x":1567057560000,"y":12.72},{"x":1567057620000,"y":12.72},{"x":1567057680000,"y":12.72},{"x":1567057740000,"y":12.71},{"x":1567057800000,"y":12.71},{"x":1567057860000,"y":12.71},{"x":1567057920000,"y":12.71},{"x":1567057980000,"y":12.71},{"x":1567058040000,"y":12.72},{"x":1567058100000,"y":12.72},{"x":1567058160000,"y":12.72},{"x":1567058220000,"y":12.72},{"x":1567058280000,"y":12.72},{"x":1567058340000,"y":12.73},{"x":1567058400000,"y":12.71},{"x":1567058460000,"y":12.71},{"x":1567058520000,"y":12.71},{"x":1567058580000,"y":12.72},{"x":1567058640000,"y":12.73},{"x":1567058700000,"y":12.72},{"x":1567058760000,"y":12.72},{"x":1567058820000,"y":12.72},{"x":1567058880000,"y":12.72},{"x":1567058940000,"y":12.73},{"x":1567059000000,"y":12.72},{"x":1567059060000,"y":12.72},{"x":1567059120000,"y":12.72},{"x":1567059180000,"y":12.72},{"x":1567059240000,"y":12.71},{"x":1567059300000,"y":12.72},{"x":1567059360000,"y":12.7},{"x":1567059420000,"y":12.7},{"x":1567059480000,"y":12.7},{"x":1567059540000,"y":12.7},{"x":1567059600000,"y":12.73},{"x":1567059660000,"y":12.72},{"x":1567059720000,"y":12.72},{"x":1567059780000,"y":12.72},{"x":1567059840000,"y":12.96},{"x":1567059900000,"y":12.76},{"x":1567059960000,"y":12.75},{"x":1567060020000,"y":12.75},{"x":1567060080000,"y":12.75},{"x":1567060140000,"y":12.75},{"x":1567060200000,"y":12.73},{"x":1567060260000,"y":12.7},{"x":1567060320000,"y":12.7},{"x":1567060380000,"y":12.7},{"x":1567060440000,"y":12.7},{"x":1567060500000,"y":12.72},{"x":1567060560000,"y":12.7},{"x":1567060620000,"y":12.7},{"x":1567060680000,"y":12.7},{"x":1567060740000,"y":12.72},{"x":1567060800000,"y":12.73},{"x":1567060860000,"y":12.7},{"x":1567060920000,"y":12.7},{"x":1567060980000,"y":12.7},{"x":1567061040000,"y":12.7},{"x":1567061100000,"y":12.73},{"x":1567061160000,"y":12.72},{"x":1567061220000,"y":12.72},{"x":1567061280000,"y":12.72},{"x":1567061340000,"y":12.72},{"x":1567061400000,"y":12.74},{"x":1567061460000,"y":12.73},{"x":1567061520000,"y":12.73},{"x":1567061580000,"y":12.73},{"x":1567061640000,"y":12.73},{"x":1567061700000,"y":12.73},{"x":1567061760000,"y":12.75},{"x":1567061820000,"y":12.73},{"x":1567061880000,"y":12.73},{"x":1567061940000,"y":12.73},{"x":1567062000000,"y":12.73},{"x":1567062060000,"y":12.73},{"x":1567062120000,"y":12.72},{"x":1567062180000,"y":12.72},{"x":1567062240000,"y":12.72},{"x":1567062300000,"y":12.72},{"x":1567062360000,"y":12.74},{"x":1567062420000,"y":12.73},{"x":1567062480000,"y":12.73},{"x":1567062540000,"y":12.73},{"x":1567062600000,"y":12.72},{"x":1567062660000,"y":12.74},{"x":1567062720000,"y":12.73},{"x":1567062780000,"y":12.73},{"x":1567062840000,"y":12.73},{"x":1567062900000,"y":12.73},{"x":1567062960000,"y":12.75},{"x":1567063020000,"y":12.73},{"x":1567063080000,"y":12.73},{"x":1567063140000,"y":12.73},{"x":1567063200000,"y":12.72},{"x":1567063260000,"y":12.73},{"x":1567063320000,"y":12.73},{"x":1567063380000,"y":12.73},{"x":1567063440000,"y":12.73},{"x":1567063500000,"y":12.72},{"x":1567063560000,"y":12.73},{"x":1567063620000,"y":12.73},{"x":1567063680000,"y":12.72},{"x":1567063740000,"y":12.72},{"x":1567063800000,"y":12.73},{"x":1567063860000,"y":12.75},{"x":1567063920000,"y":12.73},{"x":1567063980000,"y":12.73},{"x":1567064040000,"y":12.73},{"x":1567064100000,"y":12.73},{"x":1567064160000,"y":12.73},{"x":1567064220000,"y":12.74},{"x":1567064280000,"y":12.72},{"x":1567064340000,"y":12.73},{"x":1567064400000,"y":12.73},{"x":1567064460000,"y":12.72},{"x":1567064520000,"y":12.71},{"x":1567064580000,"y":12.7},{"x":1567064640000,"y":12.7},{"x":1567064700000,"y":12.71},{"x":1567064760000,"y":12.71},{"x":1567064820000,"y":12.72},{"x":1567064880000,"y":12.71},{"x":1567064940000,"y":12.71},{"x":1567065000000,"y":12.71},{"x":1567065060000,"y":12.71},{"x":1567065120000,"y":12.73},{"x":1567065180000,"y":12.71},{"x":1567065240000,"y":12.71},{"x":1567065300000,"y":12.71},{"x":1567065360000,"y":12.72},{"x":1567065420000,"y":12.72},{"x":1567065480000,"y":12.71},{"x":1567065540000,"y":12.71},{"x":1567065600000,"y":12.72},{"x":1567065660000,"y":12.71},{"x":1567065720000,"y":12.72},{"x":1567065780000,"y":12.71},{"x":1567065840000,"y":12.68},{"x":1567065900000,"y":12.64},{"x":1567065960000,"y":12.64},{"x":1567066020000,"y":12.65},{"x":1567066080000,"y":12.64},{"x":1567066140000,"y":12.64},{"x":1567066200000,"y":12.54},{"x":1567066260000,"y":12.54},{"x":1567066320000,"y":12.54},{"x":1567066380000,"y":12.58},{"x":1567066440000,"y":12.56},{"x":1567066500000,"y":12.55},{"x":1567066560000,"y":12.55},{"x":1567066620000,"y":12.55},{"x":1567066680000,"y":12.57},{"x":1567066740000,"y":12.57},{"x":1567066800000,"y":12.57},{"x":1567066860000,"y":12.57},{"x":1567066920000,"y":12.57},{"x":1567066980000,"y":12.58},{"x":1567067040000,"y":12.57},{"x":1567067100000,"y":12.53},{"x":1567067160000,"y":12.53},{"x":1567067220000,"y":12.53},{"x":1567067280000,"y":12.56},{"x":1567067340000,"y":12.56},{"x":1567067400000,"y":12.57},{"x":1567067460000,"y":12.57},{"x":1567067520000,"y":12.57},{"x":1567067580000,"y":12.58},{"x":1567067640000,"y":12.57},{"x":1567067700000,"y":12.56},{"x":1567067760000,"y":12.56},{"x":1567067820000,"y":12.56},{"x":1567067880000,"y":12.57},{"x":1567067940000,"y":12.57},{"x":1567068000000,"y":12.57},{"x":1567068060000,"y":12.57},{"x":1567068120000,"y":12.57},{"x":1567068180000,"y":12.58},{"x":1567068240000,"y":12.57},{"x":1567068300000,"y":12.57},{"x":1567068360000,"y":12.57},{"x":1567068420000,"y":12.57},{"x":1567068480000,"y":12.58},{"x":1567068540000,"y":12.57},{"x":1567068600000,"y":12.58},{"x":1567068660000,"y":12.58},{"x":1567068720000,"y":12.58},{"x":1567068780000,"y":12.58},{"x":1567068840000,"y":12.58},{"x":1567068900000,"y":12.56},{"x":1567068960000,"y":12.56},{"x":1567069020000,"y":12.56},{"x":1567069080000,"y":12.56},{"x":1567069140000,"y":12.56},{"x":1567069200000,"y":12.57},{"x":1567069260000,"y":12.57},{"x":1567069320000,"y":12.58},{"x":1567069380000,"y":12.58},{"x":1567069440000,"y":12.59},{"x":1567069500000,"y":12.55},{"x":1567069560000,"y":12.54},{"x":1567069620000,"y":12.54},{"x":1567069680000,"y":12.54},{"x":1567069740000,"y":12.58},{"x":1567069800000,"y":12.57},{"x":1567069860000,"y":12.57},{"x":1567069920000,"y":12.57},{"x":1567069980000,"y":12.57},{"x":1567070040000,"y":12.58},{"x":1567070100000,"y":12.56},{"x":1567070160000,"y":12.56},{"x":1567070220000,"y":12.56},{"x":1567070280000,"y":12.56},{"x":1567070340000,"y":12.57},{"x":1567070400000,"y":12.58},{"x":1567070460000,"y":12.58},{"x":1567070520000,"y":12.58},{"x":1567070580000,"y":12.57},{"x":1567070640000,"y":12.58},{"x":1567070700000,"y":12.57},{"x":1567070760000,"y":12.57},{"x":1567070820000,"y":12.57},{"x":1567070880000,"y":12.57},{"x":1567070940000,"y":12.58},{"x":1567071000000,"y":12.55},{"x":1567071060000,"y":12.55},{"x":1567071120000,"y":12.55},{"x":1567071180000,"y":12.55},{"x":1567071240000,"y":12.55},{"x":1567071300000,"y":12.56},{"x":1567071360000,"y":12.54},{"x":1567071420000,"y":12.54},{"x":1567071480000,"y":12.54},{"x":1567071540000,"y":12.58},{"x":1567071600000,"y":12.56},{"x":1567071660000,"y":12.55},{"x":1567071720000,"y":12.55},{"x":1567071780000,"y":12.55},{"x":1567071840000,"y":12.55},{"x":1567071900000,"y":12.58},{"x":1567071960000,"y":12.57},{"x":1567072020000,"y":12.57},{"x":1567072080000,"y":12.57},{"x":1567072140000,"y":12.57},{"x":1567072200000,"y":12.59},{"x":1567072260000,"y":12.58},{"x":1567072320000,"y":12.58},{"x":1567072380000,"y":12.58},{"x":1567072440000,"y":12.58},{"x":1567072500000,"y":12.85},{"x":1567072560000,"y":12.64},{"x":1567072620000,"y":12.64},{"x":1567072680000,"y":12.64},{"x":1567072740000,"y":12.64},{"x":1567072800000,"y":12.64},{"x":1567072860000,"y":12.58},{"x":1567072920000,"y":12.58},{"x":1567072980000,"y":12.58},{"x":1567073040000,"y":12.58},{"x":1567073100000,"y":12.57},{"x":1567073160000,"y":12.58},{"x":1567073220000,"y":12.58},{"x":1567073280000,"y":12.58},{"x":1567073340000,"y":12.58},{"x":1567073400000,"y":12.59},{"x":1567073460000,"y":12.58},{"x":1567073520000,"y":12.58},{"x":1567073580000,"y":12.56},{"x":1567073640000,"y":12.55},{"x":1567073700000,"y":12.57},{"x":1567073760000,"y":12.54},{"x":1567073820000,"y":12.52},{"x":1567073880000,"y":12.52},{"x":1567073940000,"y":12.51},{"x":1567074000000,"y":12.53},{"x":1567074060000,"y":12.57},{"x":1567074120000,"y":12.56},{"x":1567074180000,"y":12.56},{"x":1567074240000,"y":12.56},{"x":1567074300000,"y":12.55},{"x":1567074360000,"y":12.56},{"x":1567074420000,"y":12.56},{"x":1567074480000,"y":12.55},{"x":1567074540000,"y":12.54},{"x":1567074600000,"y":12.56},{"x":1567074660000,"y":12.57},{"x":1567074720000,"y":12.57},{"x":1567074780000,"y":12.57},{"x":1567074840000,"y":12.56},{"x":1567074900000,"y":12.57},{"x":1567074960000,"y":12.58},{"x":1567075020000,"y":12.56},{"x":1567075080000,"y":12.56},{"x":1567075140000,"y":12.56},{"x":1567075200000,"y":12.56},{"x":1567075260000,"y":12.57},{"x":1567075320000,"y":12.56},{"x":1567075380000,"y":12.56},{"x":1567075440000,"y":12.56},{"x":1567075500000,"y":12.54},{"x":1567075560000,"y":12.55},{"x":1567075620000,"y":12.56},{"x":1567075680000,"y":12.56},{"x":1567075740000,"y":12.56},{"x":1567075800000,"y":12.57},{"x":1567075860000,"y":12.57},{"x":1567075920000,"y":12.55},{"x":1567075980000,"y":12.54},{"x":1567076040000,"y":12.54},{"x":1567076100000,"y":12.55},{"x":1567076160000,"y":12.55},{"x":1567076220000,"y":12.58},{"x":1567076280000,"y":12.57},{"x":1567076340000,"y":12.57},{"x":1567076400000,"y":12.54},{"x":1567076460000,"y":12.54},{"x":1567076520000,"y":12.55},{"x":1567076580000,"y":12.54},{"x":1567076640000,"y":12.54},{"x":1567076700000,"y":12.57},{"x":1567076760000,"y":12.57},{"x":1567076820000,"y":12.57},{"x":1567076880000,"y":12.56},{"x":1567076940000,"y":12.55},{"x":1567077000000,"y":12.57},{"x":1567077060000,"y":12.57},{"x":1567077120000,"y":12.58},{"x":1567077180000,"y":12.56},{"x":1567077240000,"y":12.56},{"x":1567077300000,"y":12.57},{"x":1567077360000,"y":12.57},{"x":1567077420000,"y":12.58},{"x":1567077480000,"y":12.57},{"x":1567077540000,"y":12.57},{"x":1567077600000,"y":12.57},{"x":1567077660000,"y":12.56},{"x":1567077720000,"y":12.57},{"x":1567077780000,"y":12.57},{"x":1567077840000,"y":12.57},{"x":1567077900000,"y":12.59},{"x":1567077960000,"y":12.55},{"x":1567078020000,"y":12.56},{"x":1567078080000,"y":12.56},{"x":1567078140000,"y":12.56},{"x":1567078200000,"y":12.54},{"x":1567078260000,"y":12.54},{"x":1567078320000,"y":12.54},{"x":1567078380000,"y":12.58},{"x":1567078440000,"y":12.57},{"x":1567078500000,"y":12.57},{"x":1567078560000,"y":12.57},{"x":1567078620000,"y":12.57},{"x":1567078680000,"y":12.58},{"x":1567078740000,"y":13.19},{"x":1567078800000,"y":12.86},{"x":1567078860000,"y":12.53},{"x":1567078920000,"y":12.53},{"x":1567078980000,"y":12.53},{"x":1567079040000,"y":12.52},{"x":1567079100000,"y":12.47},{"x":1567079160000,"y":12.45},{"x":1567079220000,"y":12.45},{"x":1567079280000,"y":12.47},{"x":1567079340000,"y":12.45},{"x":1567079400000,"y":12.45},{"x":1567079460000,"y":12.45},{"x":1567079520000,"y":12.45},{"x":1567079580000,"y":12.47},{"x":1567079640000,"y":12.47},{"x":1567079700000,"y":12.45},{"x":1567079760000,"y":12.45},{"x":1567079820000,"y":12.45},{"x":1567079880000,"y":12.46},{"x":1567079940000,"y":12.46},{"x":1567080000000,"y":12.45},{"x":1567080060000,"y":12.45},{"x":1567080120000,"y":12.45},{"x":1567080180000,"y":12.46},{"x":1567080240000,"y":12.46},{"x":1567080300000,"y":12.45},{"x":1567080360000,"y":12.45},{"x":1567080420000,"y":12.45},{"x":1567080480000,"y":12.45},{"x":1567080540000,"y":12.47},{"x":1567080600000,"y":12.47},{"x":1567080660000,"y":12.46},{"x":1567080720000,"y":12.46},{"x":1567080780000,"y":12.46},{"x":1567080840000,"y":12.48},{"x":1567080900000,"y":12.46},{"x":1567080960000,"y":12.46},{"x":1567081020000,"y":12.45},{"x":1567081080000,"y":12.45},{"x":1567081140000,"y":12.46},{"x":1567081200000,"y":12.46},{"x":1567081260000,"y":12.46},{"x":1567081320000,"y":12.46},{"x":1567081380000,"y":12.46},{"x":1567081440000,"y":12.47},{"x":1567081500000,"y":12.47},{"x":1567081560000,"y":12.47},{"x":1567081620000,"y":12.47},{"x":1567081680000,"y":12.46},{"x":1567081740000,"y":12.47},{"x":1567081800000,"y":12.46},{"x":1567081860000,"y":12.46},{"x":1567081920000,"y":12.46},{"x":1567081980000,"y":12.46},{"x":1567082040000,"y":12.47},{"x":1567082100000,"y":12.45},{"x":1567082160000,"y":12.45},{"x":1567082220000,"y":12.46},{"x":1567082280000,"y":12.46},{"x":1567082340000,"y":12.49},{"x":1567082400000,"y":12.45},{"x":1567082460000,"y":12.45},{"x":1567082520000,"y":12.45},{"x":1567082580000,"y":12.45},{"x":1567082640000,"y":12.45},{"x":1567082700000,"y":12.47},{"x":1567082760000,"y":12.46},{"x":1567082820000,"y":12.46},{"x":1567082880000,"y":12.44},{"x":1567082940000,"y":12.44},{"x":1567083000000,"y":12.46},{"x":1567083060000,"y":12.45},{"x":1567083120000,"y":12.45},{"x":1567083180000,"y":12.45},{"x":1567083240000,"y":12.45},{"x":1567083300000,"y":12.46},{"x":1567083360000,"y":12.44},{"x":1567083420000,"y":12.44},{"x":1567083480000,"y":12.44},{"x":1567083540000,"y":12.44},{"x":1567083600000,"y":12.45},{"x":1567083660000,"y":12.44},{"x":1567083720000,"y":12.44},{"x":1567083780000,"y":12.44},{"x":1567083840000,"y":12.44},{"x":1567083900000,"y":12.46},{"x":1567083960000,"y":12.45},{"x":1567084020000,"y":12.45},{"x":1567084080000,"y":12.45},{"x":1567084140000,"y":12.46},{"x":1567084200000,"y":12.47},{"x":1567084260000,"y":12.46},{"x":1567084320000,"y":12.46},{"x":1567084380000,"y":12.45},{"x":1567084440000,"y":12.45},{"x":1567084500000,"y":12.46},{"x":1567084560000,"y":12.44},{"x":1567084620000,"y":12.44},{"x":1567084680000,"y":12.43},{"x":1567084740000,"y":12.43},{"x":1567084800000,"y":12.47},{"x":1567084860000,"y":12.45},{"x":1567084920000,"y":12.45},{"x":1567084980000,"y":12.45},{"x":1567085040000,"y":12.45},{"x":1567085100000,"y":12.4},{"x":1567085160000,"y":12.45},{"x":1567085220000,"y":12.44},{"x":1567085280000,"y":12.44},{"x":1567085340000,"y":12.43},{"x":1567085400000,"y":12.43},{"x":1567085460000,"y":12.45},{"x":1567085520000,"y":12.45},{"x":1567085580000,"y":12.45},{"x":1567085640000,"y":12.45},{"x":1567085700000,"y":12.46},{"x":1567085760000,"y":12.47},{"x":1567085820000,"y":12.45},{"x":1567085880000,"y":12.45},{"x":1567085940000,"y":12.45},{"x":1567086000000,"y":12.45},{"x":1567086060000,"y":12.47},{"x":1567086120000,"y":12.45},{"x":1567086180000,"y":12.45},{"x":1567086240000,"y":12.45},{"x":1567086300000,"y":12.45},{"x":1567086360000,"y":12.46},{"x":1567086420000,"y":12.45},{"x":1567086480000,"y":12.45},{"x":1567086540000,"y":12.45},{"x":1567086600000,"y":12.46},{"x":1567086660000,"y":12.47},{"x":1567086720000,"y":12.46},{"x":1567086780000,"y":12.46},{"x":1567086840000,"y":12.46},{"x":1567086900000,"y":12.46},{"x":1567086960000,"y":12.47},{"x":1567087020000,"y":12.46},{"x":1567087080000,"y":12.46},{"x":1567087140000,"y":12.46},{"x":1567087200000,"y":12.46},{"x":1567087260000,"y":12.47},{"x":1567087320000,"y":12.46},{"x":1567087380000,"y":12.46},{"x":1567087440000,"y":12.46},{"x":1567087500000,"y":12.45},{"x":1567087560000,"y":12.46},{"x":1567087620000,"y":12.45},{"x":1567087680000,"y":12.46},{"x":1567087740000,"y":12.46},{"x":1567087800000,"y":12.46},{"x":1567087860000,"y":12.46},{"x":1567087920000,"y":12.47},{"x":1567087980000,"y":12.46},{"x":1567088040000,"y":12.46},{"x":1567088100000,"y":12.46},{"x":1567088160000,"y":12.45},{"x":1567088220000,"y":12.47},{"x":1567088280000,"y":12.45},{"x":1567088340000,"y":12.45},{"x":1567088400000,"y":12.45},{"x":1567088460000,"y":12.45},{"x":1567088520000,"y":12.46},{"x":1567088580000,"y":12.45},{"x":1567088640000,"y":12.45},{"x":1567088700000,"y":12.45},{"x":1567088760000,"y":12.45},{"x":1567088820000,"y":12.46},{"x":1567088880000,"y":12.44},{"x":1567088940000,"y":12.44},{"x":1567089000000,"y":12.47},{"x":1567089060000,"y":12.47},{"x":1567089120000,"y":12.47},{"x":1567089180000,"y":12.46},{"x":1567089240000,"y":12.46},{"x":1567089300000,"y":12.43},{"x":1567089360000,"y":12.44},{"x":1567089420000,"y":12.46},{"x":1567089480000,"y":12.46},{"x":1567089540000,"y":12.46},{"x":1567089600000,"y":12.46},{"x":1567089660000,"y":12.46},{"x":1567089720000,"y":12.47},{"x":1567089780000,"y":12.44},{"x":1567089840000,"y":12.44},{"x":1567089900000,"y":12.44},{"x":1567089960000,"y":12.44},{"x":1567090020000,"y":12.43},{"x":1567090080000,"y":12.46},{"x":1567090140000,"y":12.46},{"x":1567090200000,"y":12.46},{"x":1567090260000,"y":12.46},{"x":1567090320000,"y":12.46},{"x":1567090380000,"y":12.48},{"x":1567090440000,"y":12.47},{"x":1567090500000,"y":12.44},{"x":1567090560000,"y":12.44},{"x":1567090620000,"y":12.44},{"x":1567090680000,"y":12.47},{"x":1567090740000,"y":12.46},{"x":1567090800000,"y":12.46},{"x":1567090860000,"y":12.46},{"x":1567090920000,"y":12.46},{"x":1567090980000,"y":12.47},{"x":1567091040000,"y":12.45},{"x":1567091100000,"y":12.48},{"x":1567091160000,"y":12.48},{"x":1567091220000,"y":12.48},{"x":1567091280000,"y":12.49},{"x":1567091340000,"y":12.48},{"x":1567091400000,"y":12.48},{"x":1567091460000,"y":12.48},{"x":1567091520000,"y":12.48},{"x":1567091580000,"y":12.49},{"x":1567091640000,"y":12.47},{"x":1567091700000,"y":12.48},{"x":1567091760000,"y":12.48},{"x":1567091820000,"y":12.48},{"x":1567091880000,"y":12.49},{"x":1567091940000,"y":12.48},{"x":1567092000000,"y":12.48},{"x":1567092060000,"y":12.48},{"x":1567092120000,"y":12.47},{"x":1567092180000,"y":12.46},{"x":1567092240000,"y":12.47},{"x":1567092300000,"y":12.43},{"x":1567092360000,"y":12.43},{"x":1567092420000,"y":12.43},{"x":1567092480000,"y":12.43},{"x":1567092540000,"y":12.47},{"x":1567092600000,"y":12.47},{"x":1567092660000,"y":12.47},{"x":1567092720000,"y":12.47},{"x":1567092780000,"y":12.46},{"x":1567092840000,"y":12.46},{"x":1567092900000,"y":12.46},{"x":1567092960000,"y":12.46},{"x":1567093020000,"y":12.46},{"x":1567093080000,"y":12.46},{"x":1567093140000,"y":12.47},{"x":1567093200000,"y":12.46},{"x":1567093260000,"y":12.46},{"x":1567093320000,"y":12.46},{"x":1567093380000,"y":12.46},{"x":1567093440000,"y":12.47},{"x":1567093500000,"y":12.44},{"x":1567093560000,"y":12.44},{"x":1567093620000,"y":12.44},{"x":1567093680000,"y":12.44},{"x":1567093740000,"y":12.47},{"x":1567093800000,"y":12.47},{"x":1567093860000,"y":12.47},{"x":1567093920000,"y":12.47},{"x":1567093980000,"y":12.47},{"x":1567094040000,"y":12.47},{"x":1567094100000,"y":12.46},{"x":1567094160000,"y":12.46},{"x":1567094220000,"y":12.46},{"x":1567094280000,"y":12.46},{"x":1567094340000,"y":12.46},{"x":1567094400000,"y":12.93},{"x":1567094460000,"y":12.53},{"x":1567094520000,"y":12.53},{"x":1567094580000,"y":12.53},{"x":1567094640000,"y":12.53},{"x":1567094700000,"y":12.49},{"x":1567094760000,"y":12.46},{"x":1567094820000,"y":12.46},{"x":1567094880000,"y":12.46},{"x":1567094940000,"y":12.47},{"x":1567095000000,"y":12.48},{"x":1567095060000,"y":12.47},{"x":1567095120000,"y":12.47},{"x":1567095180000,"y":12.47},{"x":1567095240000,"y":12.47},{"x":1567095300000,"y":12.48},{"x":1567095360000,"y":12.47},{"x":1567095420000,"y":12.47},{"x":1567095480000,"y":12.47},{"x":1567095540000,"y":12.47},{"x":1567095600000,"y":12.48},{"x":1567095660000,"y":12.47},{"x":1567095720000,"y":12.47},{"x":1567095780000,"y":12.47},{"x":1567095840000,"y":12.47},{"x":1567095900000,"y":12.48},{"x":1567095960000,"y":12.47},{"x":1567096020000,"y":12.47},{"x":1567096080000,"y":12.46},{"x":1567096140000,"y":12.46},{"x":1567096200000,"y":12.46},{"x":1567096260000,"y":12.48},{"x":1567096320000,"y":12.47},{"x":1567096380000,"y":12.47},{"x":1567096440000,"y":12.47},{"x":1567096500000,"y":12.45},{"x":1567096560000,"y":12.47},{"x":1567096620000,"y":12.47},{"x":1567096680000,"y":12.47},{"x":1567096740000,"y":12.46},{"x":1567096800000,"y":12.47},{"x":1567096860000,"y":12.47},{"x":1567096920000,"y":12.46},{"x":1567096980000,"y":12.47},{"x":1567097040000,"y":12.47},{"x":1567097100000,"y":12.44},{"x":1567097160000,"y":12.48},{"x":1567097220000,"y":12.47},{"x":1567097280000,"y":12.47},{"x":1567097340000,"y":12.47},{"x":1567097400000,"y":12.47},{"x":1567097460000,"y":12.49},{"x":1567097520000,"y":12.51},{"x":1567097580000,"y":12.51},{"x":1567097640000,"y":12.51},{"x":1567097700000,"y":12.53},{"x":1567097760000,"y":12.56},{"x":1567097820000,"y":12.56},{"x":1567097880000,"y":12.56},{"x":1567097940000,"y":12.56},{"x":1567098000000,"y":12.55},{"x":1567098060000,"y":12.55},{"x":1567098120000,"y":12.52},{"x":1567098180000,"y":12.52},{"x":1567098240000,"y":12.52},{"x":1567098300000,"y":12.56},{"x":1567098360000,"y":12.59},{"x":1567098420000,"y":16.44},{"x":1567098480000,"y":24.2},{"x":1567098540000,"y":18.86},{"x":1567098600000,"y":13.8},{"x":1567098660000,"y":13.81},{"x":1567098720000,"y":13.81},{"x":1567098780000,"y":13.81},{"x":1567098840000,"y":13.8},{"x":1567098900000,"y":13.81},{"x":1567098960000,"y":13.82},{"x":1567099020000,"y":13.82},{"x":1567099080000,"y":13.82},{"x":1567099140000,"y":13.82},{"x":1567099200000,"y":13.82},{"x":1567099260000,"y":13.82},{"x":1567099320000,"y":13.82},{"x":1567099380000,"y":13.8},{"x":1567099440000,"y":13.8},{"x":1567099500000,"y":13.81},{"x":1567099560000,"y":13.81},{"x":1567099620000,"y":13.82},{"x":1567099680000,"y":13.81},{"x":1567099740000,"y":13.8},{"x":1567099800000,"y":13.8},{"x":1567099860000,"y":13.8},{"x":1567099920000,"y":13.82},{"x":1567099980000,"y":13.82},{"x":1567100040000,"y":13.82},{"x":1567100100000,"y":13.82},{"x":1567100160000,"y":13.81},{"x":1567100220000,"y":13.82},{"x":1567100280000,"y":13.81},{"x":1567100340000,"y":13.81},{"x":1567100400000,"y":13.81},{"x":1567100460000,"y":13.81},{"x":1567100520000,"y":13.82},{"x":1567100580000,"y":13.82},{"x":1567100640000,"y":13.82},{"x":1567100700000,"y":13.83},{"x":1567100760000,"y":13.83},{"x":1567100820000,"y":13.84},{"x":1567100880000,"y":13.82},{"x":1567100940000,"y":13.82},{"x":1567101000000,"y":13.8},{"x":1567101060000,"y":13.8},{"x":1567101120000,"y":13.81},{"x":1567101180000,"y":13.81},{"x":1567101240000,"y":13.81},{"x":1567101300000,"y":13.82},{"x":1567101360000,"y":13.82},{"x":1567101420000,"y":13.81},{"x":1567101480000,"y":13.78},{"x":1567101540000,"y":13.79},{"x":1567101600000,"y":13.79},{"x":1567101660000,"y":13.79},{"x":1567101720000,"y":13.79},{"x":1567101780000,"y":13.81},{"x":1567101840000,"y":13.8},{"x":1567101900000,"y":13.79},{"x":1567101960000,"y":13.78},{"x":1567102020000,"y":13.78},{"x":1567102080000,"y":13.82},{"x":1567102140000,"y":13.81},{"x":1567102200000,"y":13.8},{"x":1567102260000,"y":13.8},{"x":1567102320000,"y":13.79},{"x":1567102380000,"y":13.81},{"x":1567102440000,"y":13.8},{"x":1567102500000,"y":13.8},{"x":1567102560000,"y":13.8},{"x":1567102620000,"y":13.8},{"x":1567102680000,"y":13.81},{"x":1567102740000,"y":13.79},{"x":1567102800000,"y":13.8},{"x":1567102860000,"y":13.8},{"x":1567102920000,"y":13.8},{"x":1567102980000,"y":13.81},{"x":1567103040000,"y":13.78},{"x":1567103100000,"y":13.79},{"x":1567103160000,"y":13.79},{"x":1567103220000,"y":13.79},{"x":1567103280000,"y":13.81},{"x":1567103340000,"y":13.81},{"x":1567103400000,"y":13.8},{"x":1567103460000,"y":13.79},{"x":1567103520000,"y":13.79},{"x":1567103580000,"y":13.8},{"x":1567103640000,"y":13.79},{"x":1567103700000,"y":13.81},{"x":1567103760000,"y":13.81},{"x":1567103820000,"y":13.81},{"x":1567103880000,"y":13.81},{"x":1567103940000,"y":13.82},{"x":1567104000000,"y":13.81},{"x":1567104060000,"y":13.81},{"x":1567104120000,"y":13.81},{"x":1567104180000,"y":13.81},{"x":1567104240000,"y":13.82},{"x":1567104300000,"y":13.83},{"x":1567104360000,"y":13.83},{"x":1567104420000,"y":13.83},{"x":1567104480000,"y":13.82},{"x":1567104540000,"y":13.8},{"x":1567104600000,"y":13.81},{"x":1567104660000,"y":13.81},{"x":1567104720000,"y":13.81},{"x":1567104780000,"y":13.81},{"x":1567104840000,"y":13.83},{"x":1567104900000,"y":13.81},{"x":1567104960000,"y":13.81},{"x":1567105020000,"y":13.81},{"x":1567105080000,"y":13.81},{"x":1567105140000,"y":13.82},{"x":1567105200000,"y":13.81},{"x":1567105260000,"y":13.82},{"x":1567105320000,"y":13.82},{"x":1567105380000,"y":13.81},{"x":1567105440000,"y":13.83},{"x":1567105500000,"y":13.79},{"x":1567105560000,"y":13.79},{"x":1567105620000,"y":13.79},{"x":1567105680000,"y":13.78},{"x":1567105740000,"y":13.8},{"x":1567105800000,"y":13.8},{"x":1567105860000,"y":13.8},{"x":1567105920000,"y":13.88},{"x":1567105980000,"y":13.9},{"x":1567106040000,"y":13.91},{"x":1567106100000,"y":13.92},{"x":1567106160000,"y":13.92},{"x":1567106220000,"y":23.02},{"x":1567106280000,"y":22.56},{"x":1567106340000,"y":21},{"x":1567106400000,"y":24.23},{"x":1567106460000,"y":16.66},{"x":1567106520000,"y":17.07},{"x":1567106580000,"y":24.01},{"x":1567106640000,"y":13.9},{"x":1567106700000,"y":13.94},{"x":1567106760000,"y":13.93},{"x":1567106820000,"y":13.94},{"x":1567106880000,"y":13.94},{"x":1567106940000,"y":13.94},{"x":1567107000000,"y":13.97},{"x":1567107060000,"y":13.95},{"x":1567107120000,"y":13.95},{"x":1567107180000,"y":13.95},{"x":1567107240000,"y":19.31},{"x":1567107300000,"y":23.77},{"x":1567107360000,"y":24.47},{"x":1567107420000,"y":19.63},{"x":1567107480000,"y":24.73},{"x":1567107540000,"y":16.19},{"x":1567107600000,"y":13.99},{"x":1567107660000,"y":13.98},{"x":1567107720000,"y":13.98},{"x":1567107780000,"y":14.07},{"x":1567107840000,"y":24.59},{"x":1567107900000,"y":24.25},{"x":1567107960000,"y":18.16},{"x":1567108020000,"y":13.87},{"x":1567108080000,"y":13.87},{"x":1567108140000,"y":13.87},{"x":1567108200000,"y":13.95},{"x":1567108260000,"y":24.52},{"x":1567108320000,"y":24.32},{"x":1567108380000,"y":23.47},{"x":1567108440000,"y":15.79},{"x":1567108500000,"y":13.93},{"x":1567108560000,"y":13.96},{"x":1567108620000,"y":13.96},{"x":1567108680000,"y":13.96},{"x":1567108740000,"y":13.96},{"x":1567108800000,"y":13.95},{"x":1567108860000,"y":13.96},{"x":1567108920000,"y":13.96},{"x":1567108980000,"y":13.96},{"x":1567109040000,"y":13.96},{"x":1567109100000,"y":13.97},{"x":1567109160000,"y":13.99},{"x":1567109220000,"y":13.97},{"x":1567109280000,"y":13.97},{"x":1567109340000,"y":13.96},{"x":1567109400000,"y":13.95},{"x":1567109460000,"y":13.96},{"x":1567109520000,"y":13.95},{"x":1567109580000,"y":13.95},{"x":1567109640000,"y":13.95},{"x":1567109700000,"y":14.67},{"x":1567109760000,"y":24.97},{"x":1567109820000,"y":19.32},{"x":1567109880000,"y":13.48},{"x":1567109940000,"y":12.78},{"x":1567110000000,"y":12.8},{"x":1567110060000,"y":12.81},{"x":1567110120000,"y":12.8},{"x":1567110180000,"y":12.8},{"x":1567110240000,"y":12.8},{"x":1567110300000,"y":12.81},{"x":1567110360000,"y":12.82},{"x":1567110420000,"y":12.83},{"x":1567110480000,"y":12.85},{"x":1567110540000,"y":12.86},{"x":1567110600000,"y":12.86},{"x":1567110660000,"y":12.87},{"x":1567110720000,"y":12.86},{"x":1567110780000,"y":20.01},{"x":1567110840000,"y":24.5},{"x":1567110900000,"y":14.61},{"x":1567110960000,"y":24.09},{"x":1567111020000,"y":21.69},{"x":1567111080000,"y":13.95},{"x":1567111140000,"y":13.98},{"x":1567111200000,"y":13.98},{"x":1567111260000,"y":13.99},{"x":1567111320000,"y":13.99},{"x":1567111380000,"y":13.99},{"x":1567111440000,"y":13.99},{"x":1567111500000,"y":13.99},{"x":1567111560000,"y":13.99},{"x":1567111620000,"y":14},{"x":1567111680000,"y":13.99},{"x":1567111740000,"y":13.99},{"x":1567111800000,"y":14},{"x":1567111860000,"y":14},{"x":1567111920000,"y":14.01},{"x":1567111980000,"y":14},{"x":1567112040000,"y":13.98},{"x":1567112100000,"y":13.99},{"x":1567112160000,"y":13.99},{"x":1567112220000,"y":14},{"x":1567112280000,"y":13.99},{"x":1567112340000,"y":13.99},{"x":1567112400000,"y":13.99},{"x":1567112460000,"y":13.99},{"x":1567112520000,"y":14},{"x":1567112580000,"y":14},{"x":1567112640000,"y":13.99},{"x":1567112700000,"y":14},{"x":1567112760000,"y":13.99},{"x":1567112820000,"y":14.01},{"x":1567112880000,"y":14.01},{"x":1567112940000,"y":13.99},{"x":1567113000000,"y":13.96},{"x":1567113060000,"y":13.95},{"x":1567113120000,"y":13.97},{"x":1567113180000,"y":13.98},{"x":1567113240000,"y":13.98},{"x":1567113300000,"y":13.98},{"x":1567113360000,"y":13.98},{"x":1567113420000,"y":13.99},{"x":1567113480000,"y":13.99},{"x":1567113540000,"y":13.99},{"x":1567113600000,"y":14},{"x":1567113660000,"y":14},{"x":1567113720000,"y":14.01},{"x":1567113780000,"y":14},{"x":1567113840000,"y":14},{"x":1567113900000,"y":14.01},{"x":1567113960000,"y":14.01},{"x":1567114020000,"y":14.01},{"x":1567114080000,"y":14.02},{"x":1567114140000,"y":13.99},{"x":1567114200000,"y":13.96},{"x":1567114260000,"y":13.95},{"x":1567114320000,"y":13.95},{"x":1567114380000,"y":13.99},{"x":1567114440000,"y":14},{"x":1567114500000,"y":13.99},{"x":1567114560000,"y":13.99},{"x":1567114620000,"y":13.99},{"x":1567114680000,"y":14},{"x":1567114740000,"y":14},{"x":1567114800000,"y":13.97},{"x":1567114860000,"y":13.98},{"x":1567114920000,"y":13.98},{"x":1567114980000,"y":14.01},{"x":1567115040000,"y":14.01},{"x":1567115100000,"y":14.01},{"x":1567115160000,"y":14.01},{"x":1567115220000,"y":14.01},{"x":1567115280000,"y":14},{"x":1567115340000,"y":13.99},{"x":1567115400000,"y":14},{"x":1567115460000,"y":14},{"x":1567115520000,"y":14},{"x":1567115580000,"y":14.01},{"x":1567115640000,"y":14},{"x":1567115700000,"y":13.99},{"x":1567115760000,"y":13.99},{"x":1567115820000,"y":13.99},{"x":1567115880000,"y":13.99},{"x":1567115940000,"y":13.99},{"x":1567116000000,"y":14.01},{"x":1567116060000,"y":14.01},{"x":1567116120000,"y":14.01},{"x":1567116180000,"y":14.01},{"x":1567116240000,"y":14.4},{"x":1567116300000,"y":14.08},{"x":1567116360000,"y":14.07},{"x":1567116420000,"y":14.06},{"x":1567116480000,"y":14.06},{"x":1567116540000,"y":14.03},{"x":1567116600000,"y":13.98},{"x":1567116660000,"y":13.98},{"x":1567116720000,"y":13.98},{"x":1567116780000,"y":13.98},{"x":1567116840000,"y":14.01},{"x":1567116900000,"y":13.99},{"x":1567116960000,"y":13.98},{"x":1567117020000,"y":13.98},{"x":1567117080000,"y":13.98},{"x":1567117140000,"y":14.01},{"x":1567117200000,"y":14.02},{"x":1567117260000,"y":14.02},{"x":1567117320000,"y":14.02},{"x":1567117380000,"y":14.02},{"x":1567117440000,"y":14.03},{"x":1567117500000,"y":14.03},{"x":1567117560000,"y":14},{"x":1567117620000,"y":14},{"x":1567117680000,"y":14},{"x":1567117740000,"y":14.02},{"x":1567117800000,"y":13.99},{"x":1567117860000,"y":13.99},{"x":1567117920000,"y":13.99},{"x":1567117980000,"y":13.99},{"x":1567118040000,"y":14.01},{"x":1567118100000,"y":14.01},{"x":1567118160000,"y":14.01},{"x":1567118220000,"y":14.01},{"x":1567118280000,"y":14.01},{"x":1567118340000,"y":14.03},{"x":1567118400000,"y":14.04},{"x":1567118460000,"y":14.03},{"x":1567118520000,"y":14.03},{"x":1567118580000,"y":14.03},{"x":1567118640000,"y":14.03},{"x":1567118700000,"y":14.02},{"x":1567118760000,"y":14},{"x":1567118820000,"y":13.99},{"x":1567118880000,"y":13.99},{"x":1567118940000,"y":13.99},{"x":1567119000000,"y":14.03},{"x":1567119060000,"y":14.02},{"x":1567119120000,"y":14.02},{"x":1567119180000,"y":14.02},{"x":1567119240000,"y":14.02},{"x":1567119300000,"y":14.02},{"x":1567119360000,"y":14.01},{"x":1567119420000,"y":14.01},{"x":1567119480000,"y":14.01},{"x":1567119540000,"y":14.01},{"x":1567119600000,"y":14.02},{"x":1567119660000,"y":14.02},{"x":1567119720000,"y":14.02},{"x":1567119780000,"y":14.02},{"x":1567119840000,"y":14},{"x":1567119900000,"y":14.01},{"x":1567119960000,"y":14},{"x":1567120020000,"y":13.98},{"x":1567120080000,"y":13.98},{"x":1567120140000,"y":13.99},{"x":1567120200000,"y":14.02},{"x":1567120260000,"y":13.5},{"x":1567120320000,"y":12.8},{"x":1567120380000,"y":12.8},{"x":1567120440000,"y":12.8},{"x":1567120500000,"y":12.81},{"x":1567120560000,"y":12.78},{"x":1567120620000,"y":12.78},{"x":1567120680000,"y":12.77},{"x":1567120740000,"y":12.77},{"x":1567120800000,"y":12.8},{"x":1567120860000,"y":12.8},{"x":1567120920000,"y":12.8},{"x":1567120980000,"y":12.79},{"x":1567121040000,"y":12.79},{"x":1567121100000,"y":12.8},{"x":1567121160000,"y":12.79},{"x":1567121220000,"y":12.77},{"x":1567121280000,"y":12.77},{"x":1567121340000,"y":12.79},{"x":1567121400000,"y":12.78},{"x":1567121460000,"y":12.8},{"x":1567121520000,"y":12.79},{"x":1567121580000,"y":12.79},{"x":1567121640000,"y":12.78},{"x":1567121700000,"y":12.79},{"x":1567121760000,"y":12.79},{"x":1567121820000,"y":12.78},{"x":1567121880000,"y":12.78},{"x":1567121940000,"y":12.79},{"x":1567122000000,"y":12.79},{"x":1567122060000,"y":12.79},{"x":1567122120000,"y":12.78},{"x":1567122180000,"y":12.78},{"x":1567122240000,"y":12.78},{"x":1567122300000,"y":12.76},{"x":1567122360000,"y":12.77},{"x":1567122420000,"y":12.78},{"x":1567122480000,"y":12.78},{"x":1567122540000,"y":12.78},{"x":1567122600000,"y":12.79},{"x":1567122660000,"y":12.8},{"x":1567122720000,"y":12.78},{"x":1567122780000,"y":12.79},{"x":1567122840000,"y":12.79},{"x":1567122900000,"y":12.76},{"x":1567122960000,"y":12.78},{"x":1567123020000,"y":12.78},{"x":1567123080000,"y":12.78},{"x":1567123140000,"y":12.78},{"x":1567123200000,"y":12.8},{"x":1567123260000,"y":12.8},{"x":1567123320000,"y":12.79},{"x":1567123380000,"y":12.78},{"x":1567123440000,"y":12.78},{"x":1567123500000,"y":12.79},{"x":1567123560000,"y":12.79},{"x":1567123620000,"y":12.8},{"x":1567123680000,"y":12.79},{"x":1567123740000,"y":12.8},{"x":1567123800000,"y":12.8},{"x":1567123860000,"y":12.8},{"x":1567123920000,"y":12.81},{"x":1567123980000,"y":12.8},{"x":1567124040000,"y":12.8},{"x":1567124100000,"y":12.8},{"x":1567124160000,"y":12.8},{"x":1567124220000,"y":12.8},{"x":1567124280000,"y":12.78},{"x":1567124340000,"y":12.78},{"x":1567124400000,"y":12.8},{"x":1567124460000,"y":12.8},{"x":1567124520000,"y":12.81},{"x":1567124580000,"y":12.8},{"x":1567124640000,"y":12.79},{"x":1567124700000,"y":12.73},{"x":1567124760000,"y":12.68},{"x":1567124820000,"y":12.69},{"x":1567124880000,"y":12.68},{"x":1567124940000,"y":12.68},{"x":1567125000000,"y":12.66},{"x":1567125060000,"y":12.66},{"x":1567125120000,"y":12.68},{"x":1567125180000,"y":12.67},{"x":1567125240000,"y":12.67},{"x":1567125300000,"y":12.66},{"x":1567125360000,"y":12.66},{"x":1567125420000,"y":12.67},{"x":1567125480000,"y":12.68},{"x":1567125540000,"y":12.68},{"x":1567125600000,"y":12.69},{"x":1567125660000,"y":12.69},{"x":1567125720000,"y":12.69},{"x":1567125780000,"y":12.69},{"x":1567125840000,"y":12.69},{"x":1567125900000,"y":12.65},{"x":1567125960000,"y":12.65},{"x":1567126020000,"y":12.64},{"x":1567126080000,"y":12.67},{"x":1567126140000,"y":12.66},{"x":1567126200000,"y":12.68},{"x":1567126260000,"y":12.68},{"x":1567126320000,"y":12.68},{"x":1567126380000,"y":12.69},{"x":1567126440000,"y":12.67},{"x":1567126500000,"y":12.68},{"x":1567126560000,"y":12.68},{"x":1567126620000,"y":12.68},{"x":1567126680000,"y":12.68},{"x":1567126740000,"y":12.67},{"x":1567126800000,"y":12.68},{"x":1567126860000,"y":12.68},{"x":1567126920000,"y":12.68},{"x":1567126980000,"y":12.69},{"x":1567127040000,"y":12.68},{"x":1567127100000,"y":12.68},{"x":1567127160000,"y":12.68},{"x":1567127220000,"y":12.69},{"x":1567127280000,"y":12.69},{"x":1567127340000,"y":12.69},{"x":1567127400000,"y":12.69},{"x":1567127460000,"y":12.7},{"x":1567127520000,"y":12.69},{"x":1567127580000,"y":12.71},{"x":1567127640000,"y":12.69},{"x":1567127700000,"y":12.67},{"x":1567127760000,"y":12.67},{"x":1567127820000,"y":12.66},{"x":1567127880000,"y":12.66},{"x":1567127940000,"y":12.68},{"x":1567128000000,"y":12.69},{"x":1567128060000,"y":12.69},{"x":1567128120000,"y":12.69},{"x":1567128180000,"y":12.69},{"x":1567128240000,"y":12.71},{"x":1567128300000,"y":12.69},{"x":1567128360000,"y":12.69},{"x":1567128420000,"y":12.67},{"x":1567128480000,"y":12.67},{"x":1567128540000,"y":12.67},{"x":1567128600000,"y":12.67},{"x":1567128660000,"y":12.67},{"x":1567128720000,"y":12.67},{"x":1567128780000,"y":12.67},{"x":1567128840000,"y":12.68},{"x":1567128900000,"y":12.67},{"x":1567128960000,"y":12.67},{"x":1567129020000,"y":12.67},{"x":1567129080000,"y":12.66},{"x":1567129140000,"y":12.66},{"x":1567129200000,"y":12.66},{"x":1567129260000,"y":12.66},{"x":1567129320000,"y":12.66},{"x":1567129380000,"y":12.66},{"x":1567129440000,"y":12.66},{"x":1567129500000,"y":12.66},{"x":1567129560000,"y":12.66},{"x":1567129620000,"y":12.65},{"x":1567129680000,"y":12.65},{"x":1567129740000,"y":12.66},{"x":1567129800000,"y":12.65},{"x":1567129860000,"y":12.65},{"x":1567129920000,"y":12.65},{"x":1567129980000,"y":12.64},{"x":1567130040000,"y":12.66},{"x":1567130100000,"y":12.66},{"x":1567130160000,"y":12.66},{"x":1567130220000,"y":12.66},{"x":1567130280000,"y":12.65},{"x":1567130340000,"y":12.65},{"x":1567130400000,"y":12.66},{"x":1567130460000,"y":12.66},{"x":1567130520000,"y":12.66},{"x":1567130580000,"y":12.66},{"x":1567130640000,"y":12.66},{"x":1567130700000,"y":12.67},{"x":1567130760000,"y":12.66},{"x":1567130820000,"y":12.66},{"x":1567130880000,"y":12.65},{"x":1567130940000,"y":12.65},{"x":1567131000000,"y":12.66},{"x":1567131060000,"y":12.65},{"x":1567131120000,"y":12.65},{"x":1567131180000,"y":12.65},{"x":1567131240000,"y":12.65},{"x":1567131300000,"y":12.67},{"x":1567131360000,"y":12.66},{"x":1567131420000,"y":12.66},{"x":1567131480000,"y":12.66},{"x":1567131540000,"y":12.66},{"x":1567131600000,"y":12.67},{"x":1567131660000,"y":12.66},{"x":1567131720000,"y":12.66},{"x":1567131780000,"y":12.66},{"x":1567131840000,"y":12.66},{"x":1567131900000,"y":12.67},{"x":1567131960000,"y":12.66},{"x":1567132020000,"y":12.66},{"x":1567132080000,"y":12.66},{"x":1567132140000,"y":12.65},{"x":1567132200000,"y":12.64},{"x":1567132260000,"y":12.65},{"x":1567132320000,"y":12.65},{"x":1567132380000,"y":12.65},{"x":1567132440000,"y":12.66},{"x":1567132500000,"y":12.66},{"x":1567132560000,"y":12.68},{"x":1567132620000,"y":12.67},{"x":1567132680000,"y":12.67},{"x":1567132740000,"y":12.67},{"x":1567132800000,"y":12.66},{"x":1567132860000,"y":12.67},{"x":1567132920000,"y":12.66},{"x":1567132980000,"y":12.66},{"x":1567133040000,"y":12.66},{"x":1567133100000,"y":12.67},{"x":1567133160000,"y":12.67},{"x":1567133220000,"y":12.66},{"x":1567133280000,"y":12.66},{"x":1567133340000,"y":12.66},{"x":1567133400000,"y":12.67},{"x":1567133460000,"y":12.68},{"x":1567133520000,"y":12.67},{"x":1567133580000,"y":12.67},{"x":1567133640000,"y":12.66},{"x":1567133700000,"y":12.66},{"x":1567133760000,"y":12.67},{"x":1567133820000,"y":12.66},{"x":1567133880000,"y":12.66},{"x":1567133940000,"y":12.66},{"x":1567134000000,"y":12.67},{"x":1567134060000,"y":12.68},{"x":1567134120000,"y":12.67},{"x":1567134180000,"y":12.67},{"x":1567134240000,"y":12.67},{"x":1567134300000,"y":12.64},{"x":1567134360000,"y":12.66},{"x":1567134420000,"y":12.66},{"x":1567134480000,"y":12.66},{"x":1567134540000,"y":12.67},{"x":1567134600000,"y":12.67},{"x":1567134660000,"y":12.68},{"x":1567134720000,"y":12.66},{"x":1567134780000,"y":12.66},{"x":1567134840000,"y":12.66},{"x":1567134900000,"y":12.64},{"x":1567134960000,"y":12.64},{"x":1567135020000,"y":12.66},{"x":1567135080000,"y":12.66},{"x":1567135140000,"y":12.66},{"x":1567135200000,"y":12.65},{"x":1567135260000,"y":12.65},{"x":1567135320000,"y":12.67},{"x":1567135380000,"y":12.67},{"x":1567135440000,"y":12.66},{"x":1567135500000,"y":12.66},{"x":1567135560000,"y":12.66},{"x":1567135620000,"y":12.68},{"x":1567135680000,"y":12.67},{"x":1567135740000,"y":12.66},{"x":1567135800000,"y":12.66},{"x":1567135860000,"y":12.66},{"x":1567135920000,"y":12.67},{"x":1567135980000,"y":12.66},{"x":1567136040000,"y":12.66},{"x":1567136100000,"y":12.64},{"x":1567136160000,"y":12.64},{"x":1567136220000,"y":12.67},{"x":1567136280000,"y":12.67},{"x":1567136340000,"y":12.67},{"x":1567136400000,"y":12.65},{"x":1567136460000,"y":12.65},{"x":1567136520000,"y":12.66},{"x":1567136580000,"y":12.65},{"x":1567136640000,"y":12.65},{"x":1567136700000,"y":12.65},{"x":1567136760000,"y":12.65},{"x":1567136820000,"y":12.67},{"x":1567136880000,"y":12.67},{"x":1567136940000,"y":12.67},{"x":1567137000000,"y":12.68},{"x":1567137060000,"y":12.68},{"x":1567137120000,"y":12.69},{"x":1567137180000,"y":12.67},{"x":1567137240000,"y":12.67},{"x":1567137300000,"y":12.68},{"x":1567137360000,"y":12.68},{"x":1567137420000,"y":12.69},{"x":1567137480000,"y":12.67},{"x":1567137540000,"y":12.67},{"x":1567137600000,"y":12.67},{"x":1567137660000,"y":12.67},{"x":1567137720000,"y":12.67},{"x":1567137780000,"y":12.67},{"x":1567137840000,"y":12.65},{"x":1567137900000,"y":12.67},{"x":1567137960000,"y":12.67},{"x":1567138020000,"y":12.66},{"x":1567138080000,"y":12.99},{"x":1567138140000,"y":12.75},{"x":1567138200000,"y":12.73},{"x":1567138260000,"y":12.73},{"x":1567138320000,"y":12.73},{"x":1567138380000,"y":12.7},{"x":1567138440000,"y":12.66},{"x":1567138500000,"y":12.66},{"x":1567138560000,"y":12.66},{"x":1567138620000,"y":12.67},{"x":1567138680000,"y":12.67},{"x":1567138740000,"y":12.65},{"x":1567138800000,"y":12.65},{"x":1567138860000,"y":12.65},{"x":1567138920000,"y":12.65},{"x":1567138980000,"y":12.66},{"x":1567139040000,"y":12.65},{"x":1567139100000,"y":12.65},{"x":1567139160000,"y":12.65},{"x":1567139220000,"y":12.66},{"x":1567139280000,"y":12.67},{"x":1567139340000,"y":12.66},{"x":1567139400000,"y":12.66},{"x":1567139460000,"y":12.66},{"x":1567139520000,"y":12.66},{"x":1567139580000,"y":12.67},{"x":1567139640000,"y":12.65},{"x":1567139700000,"y":12.65},{"x":1567139760000,"y":12.65},{"x":1567139820000,"y":12.65},{"x":1567139880000,"y":12.65},{"x":1567139940000,"y":12.68},{"x":1567140000000,"y":12.66},{"x":1567140060000,"y":12.66},{"x":1567140120000,"y":12.66},{"x":1567140180000,"y":12.66},{"x":1567140240000,"y":12.67},{"x":1567140300000,"y":12.66},{"x":1567140360000,"y":12.66},{"x":1567140420000,"y":12.66},{"x":1567140480000,"y":12.66},{"x":1567140540000,"y":12.66},{"x":1567140600000,"y":12.65},{"x":1567140660000,"y":12.66},{"x":1567140720000,"y":12.66},{"x":1567140780000,"y":12.66},{"x":1567140840000,"y":12.66},{"x":1567140900000,"y":12.66},{"x":1567140960000,"y":12.66},{"x":1567141020000,"y":12.66},{"x":1567141080000,"y":12.66},{"x":1567141140000,"y":12.66},{"x":1567141200000,"y":12.66},{"x":1567141260000,"y":12.66},{"x":1567141320000,"y":12.67},{"x":1567141380000,"y":12.66},{"x":1567141440000,"y":12.67},{"x":1567141500000,"y":12.67},{"x":1567141560000,"y":12.67},{"x":1567141620000,"y":12.67},{"x":1567141680000,"y":12.67},{"x":1567141740000,"y":12.66},{"x":1567141800000,"y":12.66},{"x":1567141860000,"y":12.66},{"x":1567141920000,"y":12.66},{"x":1567141980000,"y":12.67},{"x":1567142040000,"y":12.68},{"x":1567142100000,"y":12.67},{"x":1567142160000,"y":12.67},{"x":1567142220000,"y":12.66},{"x":1567142280000,"y":12.66},{"x":1567142340000,"y":12.66},{"x":1567142400000,"y":12.66},{"x":1567142460000,"y":12.65},{"x":1567142520000,"y":12.65},{"x":1567142580000,"y":12.65},{"x":1567142640000,"y":12.65},{"x":1567142700000,"y":12.67},{"x":1567142760000,"y":12.66},{"x":1567142820000,"y":12.66},{"x":1567142880000,"y":12.66},{"x":1567142940000,"y":12.66},{"x":1567143000000,"y":12.68},{"x":1567143060000,"y":12.66},{"x":1567143120000,"y":12.66},{"x":1567143180000,"y":12.66},{"x":1567143240000,"y":12.66},{"x":1567143300000,"y":12.67},{"x":1567143360000,"y":12.66},{"x":1567143420000,"y":12.66},{"x":1567143480000,"y":12.66},{"x":1567143540000,"y":12.66},{"x":1567143600000,"y":12.67},{"x":1567143660000,"y":12.66},{"x":1567143720000,"y":12.66},{"x":1567143780000,"y":12.66},{"x":1567143840000,"y":12.66},{"x":1567143900000,"y":12.68},{"x":1567143960000,"y":12.67},{"x":1567144020000,"y":12.67},{"x":1567144080000,"y":12.67},{"x":1567144140000,"y":12.67},{"x":1567144200000,"y":12.68},{"x":1567144260000,"y":12.65},{"x":1567144320000,"y":12.65},{"x":1567144380000,"y":12.65},{"x":1567144440000,"y":12.65},{"x":1567144500000,"y":12.66},{"x":1567144560000,"y":12.67},{"x":1567144620000,"y":12.68},{"x":1567144680000,"y":12.68},{"x":1567144740000,"y":12.68},{"x":1567144800000,"y":12.69},{"x":1567144860000,"y":12.67},{"x":1567144920000,"y":12.67},{"x":1567144980000,"y":12.67},{"x":1567145040000,"y":12.67},{"x":1567145100000,"y":12.67},{"x":1567145160000,"y":12.68},{"x":1567145220000,"y":12.67},{"x":1567145280000,"y":12.67},{"x":1567145340000,"y":12.67},{"x":1567145400000,"y":12.68},{"x":1567145460000,"y":12.69},{"x":1567145520000,"y":12.67},{"x":1567145580000,"y":12.67},{"x":1567145640000,"y":12.67},{"x":1567145700000,"y":12.65},{"x":1567145760000,"y":12.67},{"x":1567145820000,"y":12.67},{"x":1567145880000,"y":12.67},{"x":1567145940000,"y":12.67},{"x":1567146000000,"y":12.68},{"x":1567146060000,"y":12.68},{"x":1567146120000,"y":12.67},{"x":1567146180000,"y":12.67},{"x":1567146240000,"y":12.67},{"x":1567146300000,"y":12.66},{"x":1567146360000,"y":12.67},{"x":1567146420000,"y":12.67},{"x":1567146480000,"y":12.67},{"x":1567146540000,"y":12.66},{"x":1567146600000,"y":12.67},{"x":1567146660000,"y":12.68},{"x":1567146720000,"y":12.67},{"x":1567146780000,"y":12.66},{"x":1567146840000,"y":12.66},{"x":1567146900000,"y":12.68},{"x":1567146960000,"y":12.68},{"x":1567147020000,"y":12.67},{"x":1567147080000,"y":12.67},{"x":1567147140000,"y":12.67},{"x":1567147200000,"y":12.66},{"x":1567147260000,"y":12.67},{"x":1567147320000,"y":12.66},{"x":1567147380000,"y":12.67},{"x":1567147440000,"y":12.65},{"x":1567147500000,"y":12.66},{"x":1567147560000,"y":12.66},{"x":1567147620000,"y":12.68},{"x":1567147680000,"y":12.66},{"x":1567147740000,"y":12.66},{"x":1567147800000,"y":12.66},{"x":1567147860000,"y":12.66},{"x":1567147920000,"y":12.67},{"x":1567147980000,"y":12.66},{"x":1567148040000,"y":12.67},{"x":1567148100000,"y":12.67},{"x":1567148160000,"y":12.67},{"x":1567148220000,"y":12.67},{"x":1567148280000,"y":12.65},{"x":1567148340000,"y":12.65},{"x":1567148400000,"y":12.66},{"x":1567148460000,"y":12.66},{"x":1567148520000,"y":12.67},{"x":1567148580000,"y":12.67},{"x":1567148640000,"y":12.67},{"x":1567148700000,"y":12.67},{"x":1567148760000,"y":12.66},{"x":1567148820000,"y":12.67},{"x":1567148880000,"y":12.66},{"x":1567148940000,"y":12.66},{"x":1567149000000,"y":12.66},{"x":1567149060000,"y":12.66},{"x":1567149120000,"y":12.67},{"x":1567149180000,"y":12.66},{"x":1567149240000,"y":12.66},{"x":1567149300000,"y":12.66},{"x":1567149360000,"y":12.66},{"x":1567149420000,"y":12.66},{"x":1567149480000,"y":12.67},{"x":1567149540000,"y":12.66},{"x":1567149600000,"y":12.66},{"x":1567149660000,"y":12.66},{"x":1567149720000,"y":12.66},{"x":1567149780000,"y":12.67},{"x":1567149840000,"y":12.66},{"x":1567149900000,"y":12.67},{"x":1567149960000,"y":12.67},{"x":1567150020000,"y":12.66},{"x":1567150080000,"y":12.66},{"x":1567150140000,"y":12.65},{"x":1567150200000,"y":12.67},{"x":1567150260000,"y":12.67},{"x":1567150320000,"y":12.67},{"x":1567150380000,"y":12.68},{"x":1567150440000,"y":12.66},{"x":1567150500000,"y":12.67},{"x":1567150560000,"y":12.67},{"x":1567150620000,"y":12.67},{"x":1567150680000,"y":12.68},{"x":1567150740000,"y":12.67},{"x":1567150800000,"y":12.66},{"x":1567150860000,"y":12.66},{"x":1567150920000,"y":12.66},{"x":1567150980000,"y":12.66},{"x":1567151040000,"y":12.64},{"x":1567151100000,"y":12.65},{"x":1567151160000,"y":12.65},{"x":1567151220000,"y":12.65},{"x":1567151280000,"y":12.67},{"x":1567151340000,"y":12.66},{"x":1567151400000,"y":12.67},{"x":1567151460000,"y":12.67},{"x":1567151520000,"y":12.67},{"x":1567151580000,"y":12.68},{"x":1567151640000,"y":12.67},{"x":1567151700000,"y":12.67},{"x":1567151760000,"y":12.67},{"x":1567151820000,"y":12.67},{"x":1567151880000,"y":12.68},{"x":1567151940000,"y":12.67},{"x":1567152000000,"y":12.68},{"x":1567152060000,"y":12.67},{"x":1567152120000,"y":12.67},{"x":1567152180000,"y":12.67},{"x":1567152240000,"y":12.68},{"x":1567152300000,"y":12.67},{"x":1567152360000,"y":12.67},{"x":1567152420000,"y":12.67},{"x":1567152480000,"y":12.67},{"x":1567152540000,"y":12.69},{"x":1567152600000,"y":12.66},{"x":1567152660000,"y":12.66},{"x":1567152720000,"y":12.66},{"x":1567152780000,"y":12.66},{"x":1567152840000,"y":12.66},{"x":1567152900000,"y":12.67},{"x":1567152960000,"y":12.67},{"x":1567153020000,"y":12.67},{"x":1567153080000,"y":12.67},{"x":1567153140000,"y":12.68},{"x":1567153200000,"y":12.66},{"x":1567153260000,"y":12.66},{"x":1567153320000,"y":12.66},{"x":1567153380000,"y":12.66},{"x":1567153440000,"y":12.68},{"x":1567153500000,"y":12.66},{"x":1567153560000,"y":12.66},{"x":1567153620000,"y":12.66},{"x":1567153680000,"y":12.65},{"x":1567153740000,"y":12.67},{"x":1567153800000,"y":12.68},{"x":1567153860000,"y":12.68},{"x":1567153920000,"y":12.68},{"x":1567153980000,"y":12.68},{"x":1567154040000,"y":12.69},{"x":1567154100000,"y":12.65},{"x":1567154160000,"y":12.65},{"x":1567154220000,"y":12.65},{"x":1567154280000,"y":12.65},{"x":1567154340000,"y":12.68},{"x":1567154400000,"y":12.67},{"x":1567154460000,"y":12.67},{"x":1567154520000,"y":12.67},{"x":1567154580000,"y":12.67},{"x":1567154640000,"y":12.67},{"x":1567154700000,"y":12.69},{"x":1567154760000,"y":12.68},{"x":1567154820000,"y":12.68},{"x":1567154880000,"y":12.67},{"x":1567154940000,"y":12.67},{"x":1567155000000,"y":12.68},{"x":1567155060000,"y":12.67},{"x":1567155120000,"y":12.67},{"x":1567155180000,"y":12.67},{"x":1567155240000,"y":12.67},{"x":1567155300000,"y":12.69},{"x":1567155360000,"y":12.68},{"x":1567155420000,"y":12.68},{"x":1567155480000,"y":12.68},{"x":1567155540000,"y":12.68},{"x":1567155600000,"y":12.68},{"x":1567155660000,"y":12.68},{"x":1567155720000,"y":12.68},{"x":1567155780000,"y":12.68},{"x":1567155840000,"y":12.68},{"x":1567155900000,"y":12.69},{"x":1567155960000,"y":12.67},{"x":1567156020000,"y":12.67},{"x":1567156080000,"y":12.67},{"x":1567156140000,"y":12.68},{"x":1567156200000,"y":12.69},{"x":1567156260000,"y":12.67},{"x":1567156320000,"y":12.67},{"x":1567156380000,"y":12.68},{"x":1567156440000,"y":12.68},{"x":1567156500000,"y":12.69},{"x":1567156560000,"y":12.69},{"x":1567156620000,"y":12.69},{"x":1567156680000,"y":12.69},{"x":1567156740000,"y":12.67},{"x":1567156800000,"y":12.67},{"x":1567156860000,"y":12.67},{"x":1567156920000,"y":12.67},{"x":1567156980000,"y":12.67},{"x":1567157040000,"y":12.67},{"x":1567157100000,"y":12.66},{"x":1567157160000,"y":12.68},{"x":1567157220000,"y":12.67},{"x":1567157280000,"y":12.67},{"x":1567157340000,"y":12.66},{"x":1567157400000,"y":12.66},{"x":1567157460000,"y":12.68},{"x":1567157520000,"y":12.66},{"x":1567157580000,"y":12.66},{"x":1567157640000,"y":12.66},{"x":1567157700000,"y":12.66},{"x":1567157760000,"y":12.67},{"x":1567157820000,"y":12.66},{"x":1567157880000,"y":12.66},{"x":1567157940000,"y":12.67},{"x":1567158000000,"y":12.66},{"x":1567158060000,"y":12.67},{"x":1567158120000,"y":12.67},{"x":1567158180000,"y":12.67},{"x":1567158240000,"y":12.67},{"x":1567158300000,"y":12.67},{"x":1567158360000,"y":12.67},{"x":1567158420000,"y":12.66},{"x":1567158480000,"y":12.66},{"x":1567158540000,"y":12.66},{"x":1567158600000,"y":12.67},{"x":1567158660000,"y":12.69},{"x":1567158720000,"y":12.67},{"x":1567158780000,"y":12.67},{"x":1567158840000,"y":12.67},{"x":1567158900000,"y":12.67},{"x":1567158960000,"y":12.67},{"x":1567159020000,"y":12.67},{"x":1567159080000,"y":12.68},{"x":1567159140000,"y":12.68},{"x":1567159200000,"y":12.65},{"x":1567159260000,"y":12.66},{"x":1567159320000,"y":12.67},{"x":1567159380000,"y":12.67},{"x":1567159440000,"y":12.67},{"x":1567159500000,"y":12.65},{"x":1567159560000,"y":12.64},{"x":1567159620000,"y":12.68},{"x":1567159680000,"y":12.67},{"x":1567159740000,"y":12.67},{"x":1567159800000,"y":12.67},{"x":1567159860000,"y":12.67},{"x":1567159920000,"y":13.02},{"x":1567159980000,"y":12.74},{"x":1567160040000,"y":12.74},{"x":1567160100000,"y":12.73},{"x":1567160160000,"y":12.73},{"x":1567160220000,"y":12.71},{"x":1567160280000,"y":12.67},{"x":1567160340000,"y":12.67},{"x":1567160400000,"y":12.66},{"x":1567160460000,"y":12.66},{"x":1567160520000,"y":12.68},{"x":1567160580000,"y":12.67},{"x":1567160640000,"y":12.67},{"x":1567160700000,"y":12.67},{"x":1567160760000,"y":12.67},{"x":1567160820000,"y":12.71},{"x":1567160880000,"y":12.67},{"x":1567160940000,"y":12.67},{"x":1567161000000,"y":12.66},{"x":1567161060000,"y":12.66},{"x":1567161120000,"y":12.66},{"x":1567161180000,"y":12.64},{"x":1567161240000,"y":12.64},{"x":1567161300000,"y":12.67},{"x":1567161360000,"y":12.67},{"x":1567161420000,"y":12.68},{"x":1567161480000,"y":12.67},{"x":1567161540000,"y":12.68},{"x":1567161600000,"y":12.69},{"x":1567161660000,"y":12.69},{"x":1567161720000,"y":12.69},{"x":1567161780000,"y":12.68},{"x":1567161840000,"y":12.67},{"x":1567161900000,"y":12.67},{"x":1567161960000,"y":12.67},{"x":1567162020000,"y":12.67},{"x":1567162080000,"y":12.67},{"x":1567162140000,"y":12.65},{"x":1567162200000,"y":12.67},{"x":1567162260000,"y":12.67},{"x":1567162320000,"y":12.67},{"x":1567162380000,"y":12.69},{"x":1567162440000,"y":12.68},{"x":1567162500000,"y":12.67},{"x":1567162560000,"y":12.67},{"x":1567162620000,"y":12.67},{"x":1567162680000,"y":12.67},{"x":1567162740000,"y":12.66},{"x":1567162800000,"y":12.67},{"x":1567162860000,"y":12.67},{"x":1567162920000,"y":12.67},{"x":1567162980000,"y":12.69},{"x":1567163040000,"y":12.68},{"x":1567163100000,"y":12.68},{"x":1567163160000,"y":12.68},{"x":1567163220000,"y":12.68},{"x":1567163280000,"y":12.69},{"x":1567163340000,"y":12.67},{"x":1567163400000,"y":12.67},{"x":1567163460000,"y":12.67},{"x":1567163520000,"y":12.68},{"x":1567163580000,"y":12.69},{"x":1567163640000,"y":12.69},{"x":1567163700000,"y":12.68},{"x":1567163760000,"y":12.68},{"x":1567163820000,"y":12.68},{"x":1567163880000,"y":12.7},{"x":1567163940000,"y":13.05},{"x":1567164000000,"y":13.16},{"x":1567164060000,"y":12.74},{"x":1567164120000,"y":12.74},{"x":1567164180000,"y":12.74},{"x":1567164240000,"y":12.75},{"x":1567164300000,"y":12.76},{"x":1567164360000,"y":12.67},{"x":1567164420000,"y":12.67},{"x":1567164480000,"y":12.67},{"x":1567164540000,"y":12.68},{"x":1567164600000,"y":12.68},{"x":1567164660000,"y":12.67},{"x":1567164720000,"y":12.67},{"x":1567164780000,"y":12.67},{"x":1567164840000,"y":12.68},{"x":1567164900000,"y":12.68},{"x":1567164960000,"y":12.68},{"x":1567165020000,"y":12.68},{"x":1567165080000,"y":12.68},{"x":1567165140000,"y":12.69},{"x":1567165200000,"y":12.69},{"x":1567165260000,"y":12.69},{"x":1567165320000,"y":12.68},{"x":1567165380000,"y":12.68},{"x":1567165440000,"y":12.69},{"x":1567165500000,"y":12.67},{"x":1567165560000,"y":12.68},{"x":1567165620000,"y":12.68},{"x":1567165680000,"y":12.67},{"x":1567165740000,"y":12.68},{"x":1567165800000,"y":12.69},{"x":1567165860000,"y":12.69},{"x":1567165920000,"y":12.68},{"x":1567165980000,"y":12.68},{"x":1567166040000,"y":12.68},{"x":1567166100000,"y":12.65},{"x":1567166160000,"y":12.65},{"x":1567166220000,"y":12.65},{"x":1567166280000,"y":12.65},{"x":1567166340000,"y":12.66},{"x":1567166400000,"y":12.65},{"x":1567166460000,"y":12.65},{"x":1567166520000,"y":12.65},{"x":1567166580000,"y":12.65},{"x":1567166640000,"y":12.65},{"x":1567166700000,"y":12.67},{"x":1567166760000,"y":12.66},{"x":1567166820000,"y":12.66},{"x":1567166880000,"y":12.66},{"x":1567166940000,"y":12.67},{"x":1567167000000,"y":12.67},{"x":1567167060000,"y":12.65},{"x":1567167120000,"y":12.65},{"x":1567167180000,"y":12.65},{"x":1567167240000,"y":12.65},{"x":1567167300000,"y":12.68},{"x":1567167360000,"y":12.66},{"x":1567167420000,"y":12.66},{"x":1567167480000,"y":12.66},{"x":1567167540000,"y":12.66},{"x":1567167600000,"y":12.68},{"x":1567167660000,"y":12.67},{"x":1567167720000,"y":12.67},{"x":1567167780000,"y":12.67},{"x":1567167840000,"y":12.67},{"x":1567167900000,"y":12.68},{"x":1567167960000,"y":12.67},{"x":1567168020000,"y":12.67},{"x":1567168080000,"y":12.67},{"x":1567168140000,"y":12.66},{"x":1567168200000,"y":12.67},{"x":1567168260000,"y":12.68},{"x":1567168320000,"y":12.68},{"x":1567168380000,"y":12.68},{"x":1567168440000,"y":12.68},{"x":1567168500000,"y":12.7},{"x":1567168560000,"y":12.69},{"x":1567168620000,"y":12.68},{"x":1567168680000,"y":12.68},{"x":1567168740000,"y":12.68},{"x":1567168800000,"y":12.69},{"x":1567168860000,"y":12.69},{"x":1567168920000,"y":12.69},{"x":1567168980000,"y":12.69},{"x":1567169040000,"y":12.69},{"x":1567169100000,"y":12.67},{"x":1567169160000,"y":12.69},{"x":1567169220000,"y":12.68},{"x":1567169280000,"y":12.68},{"x":1567169340000,"y":12.68},{"x":1567169400000,"y":12.66},{"x":1567169460000,"y":12.69},{"x":1567169520000,"y":12.68},{"x":1567169580000,"y":12.69},{"x":1567169640000,"y":12.69},{"x":1567169700000,"y":12.68},{"x":1567169760000,"y":12.68},{"x":1567169820000,"y":12.65},{"x":1567169880000,"y":12.65},{"x":1567169940000,"y":12.65},{"x":1567170000000,"y":12.68},{"x":1567170060000,"y":12.69},{"x":1567170120000,"y":12.68},{"x":1567170180000,"y":12.68},{"x":1567170240000,"y":12.68},{"x":1567170300000,"y":12.68},{"x":1567170360000,"y":12.69},{"x":1567170420000,"y":12.69},{"x":1567170480000,"y":12.69},{"x":1567170540000,"y":12.69},{"x":1567170600000,"y":12.7},{"x":1567170660000,"y":12.71},{"x":1567170720000,"y":12.68},{"x":1567170780000,"y":12.68},{"x":1567170840000,"y":12.68},{"x":1567170900000,"y":12.66},{"x":1567170960000,"y":12.67},{"x":1567171020000,"y":12.69},{"x":1567171080000,"y":12.68},{"x":1567171140000,"y":12.68},{"x":1567171200000,"y":12.69},{"x":1567171260000,"y":12.7},{"x":1567171320000,"y":12.69},{"x":1567171380000,"y":12.69},{"x":1567171440000,"y":12.68},{"x":1567171500000,"y":12.68},{"x":1567171560000,"y":12.68},{"x":1567171620000,"y":12.7},{"x":1567171680000,"y":12.69},{"x":1567171740000,"y":12.69},{"x":1567171800000,"y":12.7},{"x":1567171860000,"y":12.7},{"x":1567171920000,"y":12.71},{"x":1567171980000,"y":12.69},{"x":1567172040000,"y":12.69},{"x":1567172100000,"y":12.69},{"x":1567172160000,"y":12.69},{"x":1567172220000,"y":12.7},{"x":1567172280000,"y":12.7},{"x":1567172340000,"y":12.7},{"x":1567172400000,"y":12.7},{"x":1567172460000,"y":12.7},{"x":1567172520000,"y":12.7},{"x":1567172580000,"y":12.7},{"x":1567172640000,"y":12.69},{"x":1567172700000,"y":12.69},{"x":1567172760000,"y":12.69},{"x":1567172820000,"y":12.71},{"x":1567172880000,"y":12.7},{"x":1567172940000,"y":12.7},{"x":1567173000000,"y":12.69},{"x":1567173060000,"y":12.69},{"x":1567173120000,"y":12.7},{"x":1567173180000,"y":12.7},{"x":1567173240000,"y":12.69},{"x":1567173300000,"y":12.69},{"x":1567173360000,"y":12.69},{"x":1567173420000,"y":12.69},{"x":1567173480000,"y":12.7},{"x":1567173540000,"y":12.69},{"x":1567173600000,"y":12.67},{"x":1567173660000,"y":12.67},{"x":1567173720000,"y":12.67},{"x":1567173780000,"y":12.7},{"x":1567173840000,"y":12.69},{"x":1567173900000,"y":12.66},{"x":1567173960000,"y":12.66},{"x":1567174020000,"y":12.66},{"x":1567174080000,"y":12.7},{"x":1567174140000,"y":12.7},{"x":1567174200000,"y":12.7},{"x":1567174260000,"y":12.7},{"x":1567174320000,"y":12.7},{"x":1567174380000,"y":12.71},{"x":1567174440000,"y":12.7},{"x":1567174500000,"y":12.7},{"x":1567174560000,"y":12.69},{"x":1567174620000,"y":12.7},{"x":1567174680000,"y":12.71},{"x":1567174740000,"y":12.7},{"x":1567174800000,"y":12.71},{"x":1567174860000,"y":12.71},{"x":1567174920000,"y":12.71},{"x":1567174980000,"y":12.71},{"x":1567175040000,"y":12.7},{"x":1567175100000,"y":12.69},{"x":1567175160000,"y":12.69},{"x":1567175220000,"y":12.69},{"x":1567175280000,"y":12.7},{"x":1567175340000,"y":12.67},{"x":1567175400000,"y":12.67},{"x":1567175460000,"y":12.67},{"x":1567175520000,"y":12.67},{"x":1567175580000,"y":12.68},{"x":1567175640000,"y":12.67},{"x":1567175700000,"y":12.69},{"x":1567175760000,"y":12.69},{"x":1567175820000,"y":12.69},{"x":1567175880000,"y":12.69},{"x":1567175940000,"y":12.67},{"x":1567176000000,"y":12.65},{"x":1567176060000,"y":12.65},{"x":1567176120000,"y":12.65},{"x":1567176180000,"y":12.65},{"x":1567176240000,"y":12.68},{"x":1567176300000,"y":12.68},{"x":1567176360000,"y":12.68},{"x":1567176420000,"y":12.68},{"x":1567176480000,"y":12.68},{"x":1567176540000,"y":12.7},{"x":1567176600000,"y":12.68},{"x":1567176660000,"y":12.68},{"x":1567176720000,"y":12.68},{"x":1567176780000,"y":12.68},{"x":1567176840000,"y":12.69},{"x":1567176900000,"y":12.67},{"x":1567176960000,"y":12.67},{"x":1567177020000,"y":12.67},{"x":1567177080000,"y":12.67},{"x":1567177140000,"y":12.69},{"x":1567177200000,"y":12.68},{"x":1567177260000,"y":12.68},{"x":1567177320000,"y":12.68},{"x":1567177380000,"y":12.68},{"x":1567177440000,"y":12.69},{"x":1567177500000,"y":12.68},{"x":1567177560000,"y":12.69},{"x":1567177620000,"y":12.69},{"x":1567177680000,"y":12.69},{"x":1567177740000,"y":12.7},{"x":1567177800000,"y":12.69},{"x":1567177860000,"y":12.69},{"x":1567177920000,"y":12.69},{"x":1567177980000,"y":12.69},{"x":1567178040000,"y":12.7},{"x":1567178100000,"y":12.69},{"x":1567178160000,"y":12.69},{"x":1567178220000,"y":12.69},{"x":1567178280000,"y":12.68},{"x":1567178340000,"y":12.69},{"x":1567178400000,"y":12.66},{"x":1567178460000,"y":12.66},{"x":1567178520000,"y":12.66},{"x":1567178580000,"y":12.66},{"x":1567178640000,"y":12.66},{"x":1567178700000,"y":12.67},{"x":1567178760000,"y":12.66},{"x":1567178820000,"y":12.67},{"x":1567178880000,"y":12.66},{"x":1567178940000,"y":12.67},{"x":1567179000000,"y":12.7},{"x":1567179060000,"y":12.68},{"x":1567179120000,"y":12.68},{"x":1567179180000,"y":12.68},{"x":1567179240000,"y":12.69},{"x":1567179300000,"y":12.71},{"x":1567179360000,"y":12.7},{"x":1567179420000,"y":12.7},{"x":1567179480000,"y":12.69},{"x":1567179540000,"y":12.69},{"x":1567179600000,"y":12.7},{"x":1567179660000,"y":12.69},{"x":1567179720000,"y":12.69},{"x":1567179780000,"y":12.69},{"x":1567179840000,"y":12.69},{"x":1567179900000,"y":12.7},{"x":1567179960000,"y":12.69},{"x":1567180020000,"y":12.69},{"x":1567180080000,"y":12.69},{"x":1567180140000,"y":12.69},{"x":1567180200000,"y":12.7},{"x":1567180260000,"y":12.69},{"x":1567180320000,"y":12.69},{"x":1567180380000,"y":12.7},{"x":1567180440000,"y":12.7},{"x":1567180500000,"y":12.7},{"x":1567180560000,"y":12.69},{"x":1567180620000,"y":12.69},{"x":1567180680000,"y":12.69},{"x":1567180740000,"y":12.69},{"x":1567180800000,"y":12.7},{"x":1567180860000,"y":12.68},{"x":1567180920000,"y":12.68},{"x":1567180980000,"y":12.68},{"x":1567181040000,"y":12.68},{"x":1567181100000,"y":12.69},{"x":1567181160000,"y":12.71},{"x":1567181220000,"y":12.69},{"x":1567181280000,"y":12.69},{"x":1567181340000,"y":12.7},{"x":1567181400000,"y":12.68},{"x":1567181460000,"y":12.68},{"x":1567181520000,"y":12.68},{"x":1567181580000,"y":12.68},{"x":1567181640000,"y":12.67},{"x":1567181700000,"y":12.7},{"x":1567181760000,"y":13.02},{"x":1567181820000,"y":12.73},{"x":1567181880000,"y":12.72},{"x":1567181940000,"y":12.72},{"x":1567182000000,"y":12.74},{"x":1567182060000,"y":12.73},{"x":1567182120000,"y":12.69},{"x":1567182180000,"y":12.69},{"x":1567182240000,"y":12.7},{"x":1567182300000,"y":12.7},{"x":1567182360000,"y":12.71},{"x":1567182420000,"y":12.7},{"x":1567182480000,"y":12.7},{"x":1567182540000,"y":12.69},{"x":1567182600000,"y":12.68},{"x":1567182660000,"y":12.69},{"x":1567182720000,"y":12.69},{"x":1567182780000,"y":12.69},{"x":1567182840000,"y":12.69},{"x":1567182900000,"y":12.7},{"x":1567182960000,"y":12.71},{"x":1567183020000,"y":12.7},{"x":1567183080000,"y":12.7},{"x":1567183140000,"y":12.68},{"x":1567183200000,"y":12.67},{"x":1567183260000,"y":12.68},{"x":1567183320000,"y":12.7},{"x":1567183380000,"y":12.69},{"x":1567183440000,"y":12.69},{"x":1567183500000,"y":12.7},{"x":1567183560000,"y":12.7},{"x":1567183620000,"y":12.71},{"x":1567183680000,"y":12.7},{"x":1567183740000,"y":12.7},{"x":1567183800000,"y":12.7},{"x":1567183860000,"y":12.7},{"x":1567183920000,"y":12.71},{"x":1567183980000,"y":12.7},{"x":1567184040000,"y":12.7},{"x":1567184100000,"y":12.69},{"x":1567184160000,"y":12.7},{"x":1567184220000,"y":12.72},{"x":1567184280000,"y":12.7},{"x":1567184340000,"y":12.7},{"x":1567184400000,"y":12.67},{"x":1567184460000,"y":12.66},{"x":1567184520000,"y":12.67},{"x":1567184580000,"y":12.67},{"x":1567184640000,"y":12.67},{"x":1567184700000,"y":12.68},{"x":1567184760000,"y":12.68},{"x":1567184820000,"y":12.69},{"x":1567184880000,"y":12.68},{"x":1567184940000,"y":12.68},{"x":1567185000000,"y":12.64},{"x":1567185060000,"y":12.64},{"x":1567185120000,"y":12.66},{"x":1567185180000,"y":12.67},{"x":1567185240000,"y":12.67},{"x":1567185300000,"y":12.67},{"x":1567185360000,"y":12.67},{"x":1567185420000,"y":12.68},{"x":1567185480000,"y":12.65},{"x":1567185540000,"y":12.65},{"x":1567185600000,"y":12.67},{"x":1567185660000,"y":12.67},{"x":1567185720000,"y":12.67},{"x":1567185780000,"y":12.69},{"x":1567185840000,"y":12.68},{"x":1567185900000,"y":12.69},{"x":1567185960000,"y":12.69},{"x":1567186020000,"y":12.69},{"x":1567186080000,"y":12.7},{"x":1567186140000,"y":12.69},{"x":1567186200000,"y":12.69},{"x":1567186260000,"y":12.69},{"x":1567186320000,"y":12.69},{"x":1567186380000,"y":12.69},{"x":1567186440000,"y":12.68},{"x":1567186500000,"y":12.68},{"x":1567186560000,"y":12.68},{"x":1567186620000,"y":12.68},{"x":1567186680000,"y":12.7},{"x":1567186740000,"y":12.69},{"x":1567186800000,"y":12.69},{"x":1567186860000,"y":12.69},{"x":1567186920000,"y":12.69},{"x":1567186980000,"y":12.7},{"x":1567187040000,"y":12.68},{"x":1567187100000,"y":12.69},{"x":1567187160000,"y":12.69},{"x":1567187220000,"y":12.69},{"x":1567187280000,"y":12.7},{"x":1567187340000,"y":12.68},{"x":1567187400000,"y":12.69},{"x":1567187460000,"y":12.69},{"x":1567187520000,"y":12.69},{"x":1567187580000,"y":12.7},{"x":1567187640000,"y":12.68},{"x":1567187700000,"y":12.69},{"x":1567187760000,"y":12.69},{"x":1567187820000,"y":12.69},{"x":1567187880000,"y":12.7},{"x":1567187940000,"y":12.69},{"x":1567188000000,"y":12.66},{"x":1567188060000,"y":12.66},{"x":1567188120000,"y":12.66},{"x":1567188180000,"y":12.66},{"x":1567188240000,"y":12.69},{"x":1567188300000,"y":12.69},{"x":1567188360000,"y":12.69},{"x":1567188420000,"y":12.69},{"x":1567188480000,"y":12.69},{"x":1567188540000,"y":12.7},{"x":1567188600000,"y":12.7},{"x":1567188660000,"y":12.7},{"x":1567188720000,"y":12.69},{"x":1567188780000,"y":12.69},{"x":1567188840000,"y":12.69},{"x":1567188900000,"y":12.67},{"x":1567188960000,"y":12.67},{"x":1567189020000,"y":12.67},{"x":1567189080000,"y":12.67},{"x":1567189140000,"y":12.67},{"x":1567189200000,"y":12.67},{"x":1567189260000,"y":12.67},{"x":1567189320000,"y":12.67},{"x":1567189380000,"y":12.67},{"x":1567189440000,"y":12.69},{"x":1567189500000,"y":12.68},{"x":1567189560000,"y":12.68},{"x":1567189620000,"y":12.68},{"x":1567189680000,"y":12.68},{"x":1567189740000,"y":12.69},{"x":1567189800000,"y":12.69},{"x":1567189860000,"y":12.69},{"x":1567189920000,"y":12.69},{"x":1567189980000,"y":12.69},{"x":1567190040000,"y":12.7},{"x":1567190100000,"y":12.68},{"x":1567190160000,"y":12.68},{"x":1567190220000,"y":12.68},{"x":1567190280000,"y":12.68},{"x":1567190340000,"y":12.71},{"x":1567190400000,"y":12.69},{"x":1567190460000,"y":12.69},{"x":1567190520000,"y":12.69},{"x":1567190580000,"y":12.69},{"x":1567190640000,"y":12.69},{"x":1567190700000,"y":12.7},{"x":1567190760000,"y":12.69},{"x":1567190820000,"y":12.69},{"x":1567190880000,"y":12.69},{"x":1567190940000,"y":12.69},{"x":1567191000000,"y":12.71},{"x":1567191060000,"y":12.7},{"x":1567191120000,"y":12.7},{"x":1567191180000,"y":12.7},{"x":1567191240000,"y":12.7},{"x":1567191300000,"y":12.7},{"x":1567191360000,"y":12.69},{"x":1567191420000,"y":12.7},{"x":1567191480000,"y":12.7},{"x":1567191540000,"y":12.7},{"x":1567191600000,"y":12.71},{"x":1567191660000,"y":12.7},{"x":1567191720000,"y":12.7},{"x":1567191780000,"y":12.7},{"x":1567191840000,"y":12.7},{"x":1567191900000,"y":12.71},{"x":1567191960000,"y":12.69},{"x":1567192020000,"y":12.69},{"x":1567192080000,"y":12.7},{"x":1567192140000,"y":12.7},{"x":1567192200000,"y":12.71},{"x":1567192260000,"y":12.7},{"x":1567192320000,"y":12.69},{"x":1567192380000,"y":12.69},{"x":1567192440000,"y":12.69},{"x":1567192500000,"y":12.7},{"x":1567192560000,"y":12.7},{"x":1567192620000,"y":12.7},{"x":1567192680000,"y":12.7},{"x":1567192740000,"y":12.7},{"x":1567192800000,"y":12.7},{"x":1567192860000,"y":12.7},{"x":1567192920000,"y":12.7},{"x":1567192980000,"y":12.7},{"x":1567193040000,"y":12.7},{"x":1567193100000,"y":12.7},{"x":1567193160000,"y":12.69},{"x":1567193220000,"y":12.68},{"x":1567193280000,"y":12.68},{"x":1567193340000,"y":12.68},{"x":1567193400000,"y":12.69},{"x":1567193460000,"y":12.71},{"x":1567193520000,"y":12.7},{"x":1567193580000,"y":12.7},{"x":1567193640000,"y":12.7},{"x":1567193700000,"y":12.71},{"x":1567193760000,"y":12.71},{"x":1567193820000,"y":12.68},{"x":1567193880000,"y":12.67},{"x":1567193940000,"y":12.68},{"x":1567194000000,"y":12.68},{"x":1567194060000,"y":12.69},{"x":1567194120000,"y":12.68},{"x":1567194180000,"y":12.68},{"x":1567194240000,"y":12.68},{"x":1567194300000,"y":12.66},{"x":1567194360000,"y":12.67},{"x":1567194420000,"y":12.67},{"x":1567194480000,"y":12.67},{"x":1567194540000,"y":12.67},{"x":1567194600000,"y":12.65},{"x":1567194660000,"y":12.67},{"x":1567194720000,"y":12.68},{"x":1567194780000,"y":12.68},{"x":1567194840000,"y":12.68},{"x":1567194900000,"y":12.68},{"x":1567194960000,"y":12.7},{"x":1567195020000,"y":12.68},{"x":1567195080000,"y":12.67},{"x":1567195140000,"y":12.67},{"x":1567195200000,"y":12.67},{"x":1567195260000,"y":12.68},{"x":1567195320000,"y":12.69},{"x":1567195380000,"y":12.69},{"x":1567195440000,"y":12.68},{"x":1567195500000,"y":12.69},{"x":1567195560000,"y":12.69},{"x":1567195620000,"y":12.68},{"x":1567195680000,"y":12.67},{"x":1567195740000,"y":12.67},{"x":1567195800000,"y":12.67},{"x":1567195860000,"y":12.67},{"x":1567195920000,"y":12.69},{"x":1567195980000,"y":12.69},{"x":1567196040000,"y":12.69},{"x":1567196100000,"y":12.68},{"x":1567196160000,"y":12.68},{"x":1567196220000,"y":12.7},{"x":1567196280000,"y":12.68},{"x":1567196340000,"y":12.68},{"x":1567196400000,"y":12.68},{"x":1567196460000,"y":12.68},{"x":1567196520000,"y":12.69},{"x":1567196580000,"y":12.68},{"x":1567196640000,"y":12.68},{"x":1567196700000,"y":12.67},{"x":1567196760000,"y":12.67},{"x":1567196820000,"y":12.68},{"x":1567196880000,"y":12.67},{"x":1567196940000,"y":12.68},{"x":1567197000000,"y":12.65},{"x":1567197060000,"y":12.65},{"x":1567197120000,"y":12.66},{"x":1567197180000,"y":12.67},{"x":1567197240000,"y":12.67},{"x":1567197300000,"y":12.66},{"x":1567197360000,"y":12.65},{"x":1567197420000,"y":12.67},{"x":1567197480000,"y":12.69},{"x":1567197540000,"y":12.69},{"x":1567197600000,"y":12.66},{"x":1567197660000,"y":12.66},{"x":1567197720000,"y":12.66},{"x":1567197780000,"y":12.7},{"x":1567197840000,"y":12.69},{"x":1567197900000,"y":12.69},{"x":1567197960000,"y":12.69},{"x":1567198020000,"y":12.69},{"x":1567198080000,"y":12.7},{"x":1567198140000,"y":12.69},{"x":1567198200000,"y":12.68},{"x":1567198260000,"y":12.69},{"x":1567198320000,"y":12.69},{"x":1567198380000,"y":12.7},{"x":1567198440000,"y":12.69},{"x":1567198500000,"y":12.69},{"x":1567198560000,"y":12.69},{"x":1567198620000,"y":12.69},{"x":1567198680000,"y":12.7},{"x":1567198740000,"y":12.69},{"x":1567198800000,"y":12.67},{"x":1567198860000,"y":12.67},{"x":1567198920000,"y":12.68},{"x":1567198980000,"y":12.7},{"x":1567199040000,"y":12.69},{"x":1567199100000,"y":12.68},{"x":1567199160000,"y":12.68},{"x":1567199220000,"y":12.68},{"x":1567199280000,"y":12.69},{"x":1567199340000,"y":12.7},{"x":1567199400000,"y":12.7},{"x":1567199460000,"y":12.7},{"x":1567199520000,"y":12.7},{"x":1567199580000,"y":12.7},{"x":1567199640000,"y":12.69},{"x":1567199700000,"y":12.69},{"x":1567199760000,"y":12.69},{"x":1567199820000,"y":12.69},{"x":1567199880000,"y":12.7},{"x":1567199940000,"y":12.68},{"x":1567200000000,"y":12.69},{"x":1567200060000,"y":12.69},{"x":1567200120000,"y":12.69},{"x":1567200180000,"y":12.69},{"x":1567200240000,"y":12.71},{"x":1567200300000,"y":12.67},{"x":1567200360000,"y":12.67},{"x":1567200420000,"y":12.67},{"x":1567200480000,"y":12.67},{"x":1567200540000,"y":12.69},{"x":1567200600000,"y":12.69},{"x":1567200660000,"y":12.69},{"x":1567200720000,"y":12.69},{"x":1567200780000,"y":12.68},{"x":1567200840000,"y":12.7},{"x":1567200900000,"y":12.69},{"x":1567200960000,"y":12.69},{"x":1567201020000,"y":12.69},{"x":1567201080000,"y":12.69},{"x":1567201140000,"y":12.71},{"x":1567201200000,"y":12.68},{"x":1567201260000,"y":12.67},{"x":1567201320000,"y":12.67},{"x":1567201380000,"y":12.67},{"x":1567201440000,"y":12.69},{"x":1567201500000,"y":12.69},{"x":1567201560000,"y":12.69},{"x":1567201620000,"y":12.69},{"x":1567201680000,"y":12.69},{"x":1567201740000,"y":12.7},{"x":1567201800000,"y":12.71},{"x":1567201860000,"y":12.71},{"x":1567201920000,"y":12.7},{"x":1567201980000,"y":12.7},{"x":1567202040000,"y":12.71},{"x":1567202100000,"y":12.7},{"x":1567202160000,"y":12.7},{"x":1567202220000,"y":12.7},{"x":1567202280000,"y":12.7},{"x":1567202340000,"y":12.71},{"x":1567202400000,"y":12.69},{"x":1567202460000,"y":12.69},{"x":1567202520000,"y":12.69},{"x":1567202580000,"y":12.69},{"x":1567202640000,"y":12.69},{"x":1567202700000,"y":12.72},{"x":1567202760000,"y":12.7},{"x":1567202820000,"y":12.7},{"x":1567202880000,"y":12.7},{"x":1567202940000,"y":12.71},{"x":1567203000000,"y":12.71},{"x":1567203060000,"y":12.69},{"x":1567203120000,"y":12.68},{"x":1567203180000,"y":12.67},{"x":1567203240000,"y":12.67},{"x":1567203300000,"y":12.69},{"x":1567203360000,"y":12.68},{"x":1567203420000,"y":12.68},{"x":1567203480000,"y":12.68},{"x":1567203540000,"y":12.68},{"x":1567203600000,"y":12.96},{"x":1567203660000,"y":12.74},{"x":1567203720000,"y":12.74},{"x":1567203780000,"y":12.74},{"x":1567203840000,"y":12.74},{"x":1567203900000,"y":12.73},{"x":1567203960000,"y":12.66},{"x":1567204020000,"y":12.66},{"x":1567204080000,"y":12.66},{"x":1567204140000,"y":12.66},{"x":1567204200000,"y":12.69},{"x":1567204260000,"y":12.66},{"x":1567204320000,"y":12.65},{"x":1567204380000,"y":12.65},{"x":1567204440000,"y":12.65},{"x":1567204500000,"y":12.68},{"x":1567204560000,"y":12.68},{"x":1567204620000,"y":12.67},{"x":1567204680000,"y":12.67},{"x":1567204740000,"y":12.67},{"x":1567204800000,"y":12.67},{"x":1567204860000,"y":12.69},{"x":1567204920000,"y":12.68},{"x":1567204980000,"y":12.68},{"x":1567205040000,"y":12.67},{"x":1567205100000,"y":12.66},{"x":1567205160000,"y":12.69},{"x":1567205220000,"y":12.68},{"x":1567205280000,"y":12.68},{"x":1567205340000,"y":12.69},{"x":1567205400000,"y":12.69},{"x":1567205460000,"y":12.7},{"x":1567205520000,"y":12.68},{"x":1567205580000,"y":12.68},{"x":1567205640000,"y":12.68},{"x":1567205700000,"y":12.69},{"x":1567205760000,"y":12.68},{"x":1567205820000,"y":12.64},{"x":1567205880000,"y":12.64},{"x":1567205940000,"y":12.64},{"x":1567206000000,"y":12.67},{"x":1567206060000,"y":12.69},{"x":1567206120000,"y":12.69},{"x":1567206180000,"y":12.69},{"x":1567206240000,"y":12.69},{"x":1567206300000,"y":12.68},{"x":1567206360000,"y":12.7},{"x":1567206420000,"y":12.69},{"x":1567206480000,"y":12.69},{"x":1567206540000,"y":12.69},{"x":1567206600000,"y":12.67},{"x":1567206660000,"y":12.67},{"x":1567206720000,"y":12.68},{"x":1567206780000,"y":12.68},{"x":1567206840000,"y":12.68},{"x":1567206900000,"y":12.69},{"x":1567206960000,"y":12.7},{"x":1567207020000,"y":12.67},{"x":1567207080000,"y":12.67},{"x":1567207140000,"y":12.67},{"x":1567207200000,"y":12.7},{"x":1567207260000,"y":12.7},{"x":1567207320000,"y":12.7},{"x":1567207380000,"y":12.69},{"x":1567207440000,"y":12.69},{"x":1567207500000,"y":12.68},{"x":1567207560000,"y":12.68},{"x":1567207620000,"y":12.7},{"x":1567207680000,"y":12.69},{"x":1567207740000,"y":12.69},{"x":1567207800000,"y":12.69},{"x":1567207860000,"y":12.69},{"x":1567207920000,"y":12.7},{"x":1567207980000,"y":12.7},{"x":1567208040000,"y":12.7},{"x":1567208100000,"y":12.66},{"x":1567208160000,"y":12.66},{"x":1567208220000,"y":12.68},{"x":1567208280000,"y":12.69},{"x":1567208340000,"y":12.7},{"x":1567208400000,"y":12.68},{"x":1567208460000,"y":12.68},{"x":1567208520000,"y":12.69},{"x":1567208580000,"y":12.69},{"x":1567208640000,"y":12.68},{"x":1567208700000,"y":12.69},{"x":1567208760000,"y":12.69},{"x":1567208820000,"y":12.7},{"x":1567208880000,"y":12.69},{"x":1567208940000,"y":12.69},{"x":1567209000000,"y":12.68},{"x":1567209060000,"y":12.68},{"x":1567209120000,"y":12.68},{"x":1567209180000,"y":12.7},{"x":1567209240000,"y":12.69},{"x":1567209300000,"y":12.68},{"x":1567209360000,"y":12.68},{"x":1567209420000,"y":12.68},{"x":1567209480000,"y":12.7},{"x":1567209540000,"y":12.69},{"x":1567209600000,"y":12.7},{"x":1567209660000,"y":12.7},{"x":1567209720000,"y":12.69},{"x":1567209780000,"y":12.71},{"x":1567209840000,"y":12.7},{"x":1567209900000,"y":12.71},{"x":1567209960000,"y":12.7},{"x":1567210020000,"y":12.7},{"x":1567210080000,"y":12.71},{"x":1567210140000,"y":12.7},{"x":1567210200000,"y":12.7},{"x":1567210260000,"y":12.7},{"x":1567210320000,"y":12.69},{"x":1567210380000,"y":12.71},{"x":1567210440000,"y":12.7},{"x":1567210500000,"y":12.68},{"x":1567210560000,"y":12.68},{"x":1567210620000,"y":12.68},{"x":1567210680000,"y":12.69},{"x":1567210740000,"y":12.7},{"x":1567210800000,"y":12.67},{"x":1567210860000,"y":12.67},{"x":1567210920000,"y":12.67},{"x":1567210980000,"y":12.68},{"x":1567211040000,"y":12.69},{"x":1567211100000,"y":12.68},{"x":1567211160000,"y":12.69},{"x":1567211220000,"y":12.69},{"x":1567211280000,"y":12.69},{"x":1567211340000,"y":12.68},{"x":1567211400000,"y":12.69},{"x":1567211460000,"y":12.69},{"x":1567211520000,"y":12.69},{"x":1567211580000,"y":12.69},{"x":1567211640000,"y":12.71},{"x":1567211700000,"y":12.7},{"x":1567211760000,"y":12.7},{"x":1567211820000,"y":12.7},{"x":1567211880000,"y":12.7},{"x":1567211940000,"y":12.71},{"x":1567212000000,"y":12.7},{"x":1567212060000,"y":12.7},{"x":1567212120000,"y":12.7},{"x":1567212180000,"y":12.7},{"x":1567212240000,"y":12.71},{"x":1567212300000,"y":12.69},{"x":1567212360000,"y":12.69},{"x":1567212420000,"y":12.68},{"x":1567212480000,"y":12.67},{"x":1567212540000,"y":12.68},{"x":1567212600000,"y":12.69},{"x":1567212660000,"y":12.68},{"x":1567212720000,"y":12.68},{"x":1567212780000,"y":12.68},{"x":1567212840000,"y":12.69},{"x":1567212900000,"y":12.69},{"x":1567212960000,"y":12.69},{"x":1567213020000,"y":12.68},{"x":1567213080000,"y":12.68},{"x":1567213140000,"y":12.7},{"x":1567213200000,"y":12.67},{"x":1567213260000,"y":12.66},{"x":1567213320000,"y":12.66},{"x":1567213380000,"y":12.66},{"x":1567213440000,"y":12.67},{"x":1567213500000,"y":12.66},{"x":1567213560000,"y":12.66},{"x":1567213620000,"y":12.65},{"x":1567213680000,"y":12.65},{"x":1567213740000,"y":12.69},{"x":1567213800000,"y":12.68},{"x":1567213860000,"y":12.68},{"x":1567213920000,"y":12.68},{"x":1567213980000,"y":12.68},{"x":1567214040000,"y":12.68},{"x":1567214100000,"y":12.69},{"x":1567214160000,"y":12.68},{"x":1567214220000,"y":12.69},{"x":1567214280000,"y":12.69},{"x":1567214340000,"y":12.69},{"x":1567214400000,"y":12.7},{"x":1567214460000,"y":12.69},{"x":1567214520000,"y":12.69},{"x":1567214580000,"y":12.69},{"x":1567214640000,"y":12.69},{"x":1567214700000,"y":12.69},{"x":1567214760000,"y":12.68},{"x":1567214820000,"y":12.68},{"x":1567214880000,"y":12.68},{"x":1567214940000,"y":12.68},{"x":1567215000000,"y":12.69},{"x":1567215060000,"y":12.68},{"x":1567215120000,"y":12.68},{"x":1567215180000,"y":12.68},{"x":1567215240000,"y":12.68},{"x":1567215300000,"y":12.68},{"x":1567215360000,"y":12.68},{"x":1567215420000,"y":12.67},{"x":1567215480000,"y":12.67},{"x":1567215540000,"y":12.69},{"x":1567215600000,"y":12.7},{"x":1567215660000,"y":12.69},{"x":1567215720000,"y":12.69},{"x":1567215780000,"y":12.69},{"x":1567215840000,"y":12.69},{"x":1567215900000,"y":12.69},{"x":1567215960000,"y":12.69},{"x":1567216020000,"y":12.69},{"x":1567216080000,"y":12.69},{"x":1567216140000,"y":12.69},{"x":1567216200000,"y":12.7},{"x":1567216260000,"y":12.69},{"x":1567216320000,"y":12.69},{"x":1567216380000,"y":12.68},{"x":1567216440000,"y":12.69},{"x":1567216500000,"y":12.69},{"x":1567216560000,"y":12.7},{"x":1567216620000,"y":12.69},{"x":1567216680000,"y":12.69},{"x":1567216740000,"y":12.69},{"x":1567216800000,"y":12.66},{"x":1567216860000,"y":12.69},{"x":1567216920000,"y":12.69},{"x":1567216980000,"y":12.69},{"x":1567217040000,"y":12.69},{"x":1567217100000,"y":12.69},{"x":1567217160000,"y":12.7},{"x":1567217220000,"y":12.69},{"x":1567217280000,"y":12.69},{"x":1567217340000,"y":12.69},{"x":1567217400000,"y":12.7},{"x":1567217460000,"y":12.7},{"x":1567217520000,"y":12.69},{"x":1567217580000,"y":12.69},{"x":1567217640000,"y":12.69},{"x":1567217700000,"y":12.68},{"x":1567217760000,"y":12.7},{"x":1567217820000,"y":12.7},{"x":1567217880000,"y":12.69},{"x":1567217940000,"y":12.69},{"x":1567218000000,"y":12.7},{"x":1567218060000,"y":12.71},{"x":1567218120000,"y":12.69},{"x":1567218180000,"y":12.69},{"x":1567218240000,"y":12.69},{"x":1567218300000,"y":12.69},{"x":1567218360000,"y":12.69},{"x":1567218420000,"y":12.69},{"x":1567218480000,"y":12.69},{"x":1567218540000,"y":12.69},{"x":1567218600000,"y":12.67},{"x":1567218660000,"y":12.67},{"x":1567218720000,"y":12.69},{"x":1567218780000,"y":12.68},{"x":1567218840000,"y":12.68},{"x":1567218900000,"y":12.69},{"x":1567218960000,"y":12.69},{"x":1567219020000,"y":12.71},{"x":1567219080000,"y":12.7},{"x":1567219140000,"y":12.7},{"x":1567219200000,"y":12.7},{"x":1567219260000,"y":12.7},{"x":1567219320000,"y":12.71},{"x":1567219380000,"y":12.69},{"x":1567219440000,"y":12.69},{"x":1567219500000,"y":12.7},{"x":1567219560000,"y":12.7},{"x":1567219620000,"y":12.71},{"x":1567219680000,"y":12.7},{"x":1567219740000,"y":12.7},{"x":1567219800000,"y":12.71},{"x":1567219860000,"y":12.71},{"x":1567219920000,"y":12.72},{"x":1567219980000,"y":12.71},{"x":1567220040000,"y":12.71},{"x":1567220100000,"y":12.7},{"x":1567220160000,"y":12.7},{"x":1567220220000,"y":12.71},{"x":1567220280000,"y":12.7},{"x":1567220340000,"y":12.7},{"x":1567220400000,"y":12.7},{"x":1567220460000,"y":12.7},{"x":1567220520000,"y":12.7},{"x":1567220580000,"y":12.71},{"x":1567220640000,"y":12.7},{"x":1567220700000,"y":12.68},{"x":1567220760000,"y":12.67},{"x":1567220820000,"y":12.67},{"x":1567220880000,"y":12.7},{"x":1567220940000,"y":12.7},{"x":1567221000000,"y":12.7},{"x":1567221060000,"y":12.7},{"x":1567221120000,"y":12.7},{"x":1567221180000,"y":12.71},{"x":1567221240000,"y":12.71},{"x":1567221300000,"y":12.71},{"x":1567221360000,"y":12.71},{"x":1567221420000,"y":12.71},{"x":1567221480000,"y":12.71},{"x":1567221540000,"y":12.69},{"x":1567221600000,"y":12.69},{"x":1567221660000,"y":12.69},{"x":1567221720000,"y":12.69},{"x":1567221780000,"y":12.7},{"x":1567221840000,"y":12.69},{"x":1567221900000,"y":12.68},{"x":1567221960000,"y":12.68},{"x":1567222020000,"y":12.68},{"x":1567222080000,"y":12.69},{"x":1567222140000,"y":12.69},{"x":1567222200000,"y":12.68},{"x":1567222260000,"y":12.68},{"x":1567222320000,"y":12.68},{"x":1567222380000,"y":12.69},{"x":1567222440000,"y":12.68},{"x":1567222500000,"y":12.67},{"x":1567222560000,"y":12.66},{"x":1567222620000,"y":12.66},{"x":1567222680000,"y":12.68},{"x":1567222740000,"y":12.69},{"x":1567222800000,"y":12.69},{"x":1567222860000,"y":12.69},{"x":1567222920000,"y":12.69},{"x":1567222980000,"y":12.68},{"x":1567223040000,"y":12.7},{"x":1567223100000,"y":12.69},{"x":1567223160000,"y":12.69},{"x":1567223220000,"y":12.69},{"x":1567223280000,"y":12.69},{"x":1567223340000,"y":12.7},{"x":1567223400000,"y":12.69},{"x":1567223460000,"y":12.69},{"x":1567223520000,"y":12.69},{"x":1567223580000,"y":12.69},{"x":1567223640000,"y":12.69},{"x":1567223700000,"y":12.69},{"x":1567223760000,"y":12.69},{"x":1567223820000,"y":12.69},{"x":1567223880000,"y":12.69},{"x":1567223940000,"y":12.71},{"x":1567224000000,"y":12.69},{"x":1567224060000,"y":12.69},{"x":1567224120000,"y":12.69},{"x":1567224180000,"y":12.69},{"x":1567224240000,"y":12.69},{"x":1567224300000,"y":12.68},{"x":1567224360000,"y":12.68},{"x":1567224420000,"y":12.68},{"x":1567224480000,"y":12.68},{"x":1567224540000,"y":12.7},{"x":1567224600000,"y":12.69},{"x":1567224660000,"y":12.69},{"x":1567224720000,"y":12.69},{"x":1567224780000,"y":12.69},{"x":1567224840000,"y":12.7},{"x":1567224900000,"y":12.7},{"x":1567224960000,"y":12.7},{"x":1567225020000,"y":12.69},{"x":1567225080000,"y":12.69},{"x":1567225140000,"y":12.71},{"x":1567225200000,"y":12.69},{"x":1567225260000,"y":12.69},{"x":1567225320000,"y":12.69},{"x":1567225380000,"y":12.69},{"x":1567225440000,"y":12.69},{"x":1567225500000,"y":12.99},{"x":1567225560000,"y":12.75},{"x":1567225620000,"y":12.75},{"x":1567225680000,"y":12.75},{"x":1567225740000,"y":12.75},{"x":1567225800000,"y":12.71},{"x":1567225860000,"y":12.69},{"x":1567225920000,"y":12.69},{"x":1567225980000,"y":12.69},{"x":1567226040000,"y":12.69},{"x":1567226100000,"y":12.7},{"x":1567226160000,"y":12.7},{"x":1567226220000,"y":12.7},{"x":1567226280000,"y":12.7},{"x":1567226340000,"y":12.7},{"x":1567226400000,"y":12.71},{"x":1567226460000,"y":12.69},{"x":1567226520000,"y":12.69},{"x":1567226580000,"y":12.69},{"x":1567226640000,"y":12.69},{"x":1567226700000,"y":12.69},{"x":1567226760000,"y":12.7},{"x":1567226820000,"y":12.7},{"x":1567226880000,"y":12.7},{"x":1567226940000,"y":12.7},{"x":1567227000000,"y":12.69},{"x":1567227060000,"y":12.69},{"x":1567227120000,"y":12.69},{"x":1567227180000,"y":12.69},{"x":1567227240000,"y":12.69},{"x":1567227300000,"y":12.7},{"x":1567227360000,"y":12.69},{"x":1567227420000,"y":12.69},{"x":1567227480000,"y":12.69},{"x":1567227540000,"y":12.69},{"x":1567227600000,"y":12.71},{"x":1567227660000,"y":12.67},{"x":1567227720000,"y":12.67},{"x":1567227780000,"y":12.67},{"x":1567227840000,"y":12.67},{"x":1567227900000,"y":12.69},{"x":1567227960000,"y":12.7},{"x":1567228020000,"y":12.69},{"x":1567228080000,"y":12.69},{"x":1567228140000,"y":12.69},{"x":1567228200000,"y":12.69},{"x":1567228260000,"y":12.7},{"x":1567228320000,"y":12.69},{"x":1567228380000,"y":12.69},{"x":1567228440000,"y":12.69},{"x":1567228500000,"y":12.7},{"x":1567228560000,"y":12.7},{"x":1567228620000,"y":12.7},{"x":1567228680000,"y":12.7},{"x":1567228740000,"y":12.69},{"x":1567228800000,"y":12.69},{"x":1567228860000,"y":12.71},{"x":1567228920000,"y":12.7},{"x":1567228980000,"y":12.7},{"x":1567229040000,"y":12.7},{"x":1567229100000,"y":12.68},{"x":1567229160000,"y":12.7},{"x":1567229220000,"y":12.69},{"x":1567229280000,"y":12.69},{"x":1567229340000,"y":12.7},{"x":1567229400000,"y":12.7},{"x":1567229460000,"y":12.7},{"x":1567229520000,"y":12.7},{"x":1567229580000,"y":12.7},{"x":1567229640000,"y":12.7},{"x":1567229700000,"y":12.7},{"x":1567229760000,"y":12.71},{"x":1567229820000,"y":12.7},{"x":1567229880000,"y":12.7},{"x":1567229940000,"y":12.69},{"x":1567230000000,"y":12.7},{"x":1567230060000,"y":12.71},{"x":1567230120000,"y":12.7},{"x":1567230180000,"y":12.7},{"x":1567230240000,"y":12.7},{"x":1567230300000,"y":12.71},{"x":1567230360000,"y":12.7},{"x":1567230420000,"y":12.71},{"x":1567230480000,"y":12.7},{"x":1567230540000,"y":12.7},{"x":1567230600000,"y":12.69},{"x":1567230660000,"y":12.69},{"x":1567230720000,"y":12.71},{"x":1567230780000,"y":12.71},{"x":1567230840000,"y":12.71},{"x":1567230900000,"y":12.66},{"x":1567230960000,"y":12.65},{"x":1567231020000,"y":12.68},{"x":1567231080000,"y":12.69},{"x":1567231140000,"y":12.69},{"x":1567231200000,"y":12.69},{"x":1567231260000,"y":12.69},{"x":1567231320000,"y":12.69},{"x":1567231380000,"y":12.69},{"x":1567231440000,"y":12.69},{"x":1567231500000,"y":12.69},{"x":1567231560000,"y":12.69},{"x":1567231620000,"y":12.7},{"x":1567231680000,"y":12.69},{"x":1567231740000,"y":12.69},{"x":1567231800000,"y":12.69},{"x":1567231860000,"y":12.69},{"x":1567231920000,"y":12.69},{"x":1567231980000,"y":12.68},{"x":1567232040000,"y":12.68},{"x":1567232100000,"y":12.66},{"x":1567232160000,"y":12.66},{"x":1567232220000,"y":12.67},{"x":1567232280000,"y":12.68},{"x":1567232340000,"y":12.68},{"x":1567232400000,"y":12.69},{"x":1567232460000,"y":12.69},{"x":1567232520000,"y":12.7},{"x":1567232580000,"y":12.68},{"x":1567232640000,"y":12.67},{"x":1567232700000,"y":12.64},{"x":1567232760000,"y":12.65},{"x":1567232820000,"y":12.65},{"x":1567232880000,"y":12.68},{"x":1567232940000,"y":12.67},{"x":1567233000000,"y":12.67},{"x":1567233060000,"y":12.68},{"x":1567233120000,"y":12.68},{"x":1567233180000,"y":12.69},{"x":1567233240000,"y":12.68},{"x":1567233300000,"y":12.68},{"x":1567233360000,"y":12.69},{"x":1567233420000,"y":12.69},{"x":1567233480000,"y":12.69},{"x":1567233540000,"y":12.7},{"x":1567233600000,"y":12.69},{"x":1567233660000,"y":12.69},{"x":1567233720000,"y":12.69},{"x":1567233780000,"y":12.69},{"x":1567233840000,"y":12.67},{"x":1567233900000,"y":12.69},{"x":1567233960000,"y":12.69},{"x":1567234020000,"y":12.7},{"x":1567234080000,"y":12.71},{"x":1567234140000,"y":12.69},{"x":1567234200000,"y":12.69},{"x":1567234260000,"y":12.69},{"x":1567234320000,"y":12.69},{"x":1567234380000,"y":12.69},{"x":1567234440000,"y":12.69},{"x":1567234500000,"y":12.69},{"x":1567234560000,"y":12.69},{"x":1567234620000,"y":12.69},{"x":1567234680000,"y":12.7},{"x":1567234740000,"y":12.69},{"x":1567234800000,"y":12.7},{"x":1567234860000,"y":12.7},{"x":1567234920000,"y":12.7},{"x":1567234980000,"y":12.7},{"x":1567235040000,"y":12.68},{"x":1567235100000,"y":12.65},{"x":1567235160000,"y":12.65},{"x":1567235220000,"y":12.65},{"x":1567235280000,"y":12.65},{"x":1567235340000,"y":12.71},{"x":1567235400000,"y":12.67},{"x":1567235460000,"y":12.66},{"x":1567235520000,"y":12.66},{"x":1567235580000,"y":12.66},{"x":1567235640000,"y":12.69},{"x":1567235700000,"y":12.67},{"x":1567235760000,"y":12.67},{"x":1567235820000,"y":12.68},{"x":1567235880000,"y":12.68},{"x":1567235940000,"y":12.7},{"x":1567236000000,"y":12.7},{"x":1567236060000,"y":12.7},{"x":1567236120000,"y":12.7},{"x":1567236180000,"y":12.7},{"x":1567236240000,"y":12.7},{"x":1567236300000,"y":12.68},{"x":1567236360000,"y":12.68},{"x":1567236420000,"y":12.68},{"x":1567236480000,"y":12.68},{"x":1567236540000,"y":12.69},{"x":1567236600000,"y":12.69},{"x":1567236660000,"y":12.69},{"x":1567236720000,"y":12.69},{"x":1567236780000,"y":12.69},{"x":1567236840000,"y":12.7},{"x":1567236900000,"y":12.67},{"x":1567236960000,"y":12.67},{"x":1567237020000,"y":12.67},{"x":1567237080000,"y":12.67},{"x":1567237140000,"y":12.68},{"x":1567237200000,"y":12.69},{"x":1567237260000,"y":12.68},{"x":1567237320000,"y":12.68},{"x":1567237380000,"y":12.68},{"x":1567237440000,"y":12.68},{"x":1567237500000,"y":12.7},{"x":1567237560000,"y":12.69},{"x":1567237620000,"y":12.69},{"x":1567237680000,"y":12.68},{"x":1567237740000,"y":12.68},{"x":1567237800000,"y":12.72},{"x":1567237860000,"y":12.7},{"x":1567237920000,"y":12.7},{"x":1567237980000,"y":12.7},{"x":1567238040000,"y":12.7},{"x":1567238100000,"y":12.72},{"x":1567238160000,"y":12.7},{"x":1567238220000,"y":12.7},{"x":1567238280000,"y":12.7},{"x":1567238340000,"y":12.7},{"x":1567238400000,"y":12.69},{"x":1567238460000,"y":12.7},{"x":1567238520000,"y":12.7},{"x":1567238580000,"y":12.7},{"x":1567238640000,"y":12.7},{"x":1567238700000,"y":12.7},{"x":1567238760000,"y":12.7},{"x":1567238820000,"y":12.7},{"x":1567238880000,"y":12.7},{"x":1567238940000,"y":12.7},{"x":1567239000000,"y":12.7},{"x":1567239060000,"y":12.7},{"x":1567239120000,"y":12.7},{"x":1567239180000,"y":12.71},{"x":1567239240000,"y":12.71},{"x":1567239300000,"y":12.7},{"x":1567239360000,"y":12.71},{"x":1567239420000,"y":12.7},{"x":1567239480000,"y":12.7},{"x":1567239540000,"y":12.7},{"x":1567239600000,"y":12.7},{"x":1567239660000,"y":12.71},{"x":1567239720000,"y":12.7},{"x":1567239780000,"y":12.7},{"x":1567239840000,"y":12.7},{"x":1567239900000,"y":12.69},{"x":1567239960000,"y":12.71},{"x":1567240020000,"y":12.71},{"x":1567240080000,"y":12.7},{"x":1567240140000,"y":12.7},{"x":1567240200000,"y":12.67},{"x":1567240260000,"y":12.68},{"x":1567240320000,"y":12.67},{"x":1567240380000,"y":12.67},{"x":1567240440000,"y":12.67},{"x":1567240500000,"y":12.67},{"x":1567240560000,"y":12.69},{"x":1567240620000,"y":12.68},{"x":1567240680000,"y":12.68},{"x":1567240740000,"y":12.67},{"x":1567240800000,"y":12.69},{"x":1567240860000,"y":12.7},{"x":1567240920000,"y":12.69},{"x":1567240980000,"y":12.69},{"x":1567241040000,"y":12.69},{"x":1567241100000,"y":12.69},{"x":1567241160000,"y":12.7},{"x":1567241220000,"y":12.69},{"x":1567241280000,"y":12.69},{"x":1567241340000,"y":12.69},{"x":1567241400000,"y":12.69},{"x":1567241460000,"y":12.7},{"x":1567241520000,"y":12.7},{"x":1567241580000,"y":12.7},{"x":1567241640000,"y":12.7},{"x":1567241700000,"y":12.68},{"x":1567241760000,"y":12.7},{"x":1567241820000,"y":12.69},{"x":1567241880000,"y":12.69},{"x":1567241940000,"y":12.69},{"x":1567242000000,"y":12.69},{"x":1567242060000,"y":12.69},{"x":1567242120000,"y":12.7},{"x":1567242180000,"y":12.69},{"x":1567242240000,"y":12.69},{"x":1567242300000,"y":12.69},{"x":1567242360000,"y":12.69},{"x":1567242420000,"y":12.71},{"x":1567242480000,"y":12.7},{"x":1567242540000,"y":12.69},{"x":1567242600000,"y":12.68},{"x":1567242660000,"y":12.68},{"x":1567242720000,"y":12.7},{"x":1567242780000,"y":12.69},{"x":1567242840000,"y":12.69},{"x":1567242900000,"y":12.68},{"x":1567242960000,"y":12.67},{"x":1567243020000,"y":12.71},{"x":1567243080000,"y":12.7},{"x":1567243140000,"y":12.7},{"x":1567243200000,"y":12.67},{"x":1567243260000,"y":12.67},{"x":1567243320000,"y":12.69},{"x":1567243380000,"y":12.71},{"x":1567243440000,"y":12.71},{"x":1567243500000,"y":12.69},{"x":1567243560000,"y":12.69},{"x":1567243620000,"y":12.7},{"x":1567243680000,"y":12.7},{"x":1567243740000,"y":12.7},{"x":1567243800000,"y":12.69},{"x":1567243860000,"y":12.69},{"x":1567243920000,"y":12.7},{"x":1567243980000,"y":12.69},{"x":1567244040000,"y":12.69},{"x":1567244100000,"y":12.67},{"x":1567244160000,"y":12.67},{"x":1567244220000,"y":12.68},{"x":1567244280000,"y":12.7},{"x":1567244340000,"y":12.69},{"x":1567244400000,"y":12.68},{"x":1567244460000,"y":12.68},{"x":1567244520000,"y":12.68},{"x":1567244580000,"y":12.71},{"x":1567244640000,"y":12.7},{"x":1567244700000,"y":12.7},{"x":1567244760000,"y":12.69},{"x":1567244820000,"y":12.69},{"x":1567244880000,"y":12.7},{"x":1567244940000,"y":12.7},{"x":1567245000000,"y":12.67},{"x":1567245060000,"y":12.67},{"x":1567245120000,"y":12.67},{"x":1567245180000,"y":12.69},{"x":1567245240000,"y":12.68},{"x":1567245300000,"y":12.7},{"x":1567245360000,"y":12.7},{"x":1567245420000,"y":12.69},{"x":1567245480000,"y":12.72},{"x":1567245540000,"y":12.7},{"x":1567245600000,"y":12.7},{"x":1567245660000,"y":12.7},{"x":1567245720000,"y":12.7},{"x":1567245780000,"y":12.71},{"x":1567245840000,"y":12.7},{"x":1567245900000,"y":12.7},{"x":1567245960000,"y":12.7},{"x":1567246020000,"y":12.7},{"x":1567246080000,"y":12.71},{"x":1567246140000,"y":12.7},{"x":1567246200000,"y":12.7},{"x":1567246260000,"y":12.7},{"x":1567246320000,"y":12.7},{"x":1567246380000,"y":12.71},{"x":1567246440000,"y":12.7},{"x":1567246500000,"y":12.67},{"x":1567246560000,"y":12.67},{"x":1567246620000,"y":12.68},{"x":1567246680000,"y":12.68},{"x":1567246740000,"y":12.7},{"x":1567246800000,"y":12.71},{"x":1567246860000,"y":12.71},{"x":1567246920000,"y":12.71},{"x":1567246980000,"y":12.71},{"x":1567247040000,"y":12.71},{"x":1567247100000,"y":12.66},{"x":1567247160000,"y":12.65},{"x":1567247220000,"y":12.65},{"x":1567247280000,"y":12.65},{"x":1567247340000,"y":12.97},{"x":1567247400000,"y":12.76},{"x":1567247460000,"y":12.75},{"x":1567247520000,"y":12.75},{"x":1567247580000,"y":12.75},{"x":1567247640000,"y":12.74},{"x":1567247700000,"y":12.71},{"x":1567247760000,"y":12.71},{"x":1567247820000,"y":12.71},{"x":1567247880000,"y":12.72},{"x":1567247940000,"y":12.73},{"x":1567248000000,"y":12.7},{"x":1567248060000,"y":12.7},{"x":1567248120000,"y":12.7},{"x":1567248180000,"y":12.7},{"x":1567248240000,"y":12.71},{"x":1567248300000,"y":12.68},{"x":1567248360000,"y":12.68},{"x":1567248420000,"y":12.68},{"x":1567248480000,"y":12.68},{"x":1567248540000,"y":12.69},{"x":1567248600000,"y":12.69},{"x":1567248660000,"y":12.69},{"x":1567248720000,"y":12.69},{"x":1567248780000,"y":12.69},{"x":1567248840000,"y":12.69},{"x":1567248900000,"y":12.72},{"x":1567248960000,"y":12.71},{"x":1567249020000,"y":12.71},{"x":1567249080000,"y":12.71},{"x":1567249140000,"y":12.71},{"x":1567249200000,"y":12.73},{"x":1567249260000,"y":12.71},{"x":1567249320000,"y":12.71},{"x":1567249380000,"y":12.71},{"x":1567249440000,"y":12.71},{"x":1567249500000,"y":12.71},{"x":1567249560000,"y":12.69},{"x":1567249620000,"y":12.69},{"x":1567249680000,"y":12.69},{"x":1567249740000,"y":12.7},{"x":1567249800000,"y":12.7},{"x":1567249860000,"y":12.69},{"x":1567249920000,"y":12.69},{"x":1567249980000,"y":12.69},{"x":1567250040000,"y":12.69},{"x":1567250100000,"y":12.69},{"x":1567250160000,"y":12.68},{"x":1567250220000,"y":12.68},{"x":1567250280000,"y":12.88},{"x":1567250340000,"y":12.49},{"x":1567250400000,"y":12.52},{"x":1567250460000,"y":12.5},{"x":1567250520000,"y":12.5},{"x":1567250580000,"y":12.46},{"x":1567250640000,"y":12.43},{"x":1567250700000,"y":12.51},{"x":1567250760000,"y":12.45},{"x":1567250820000,"y":12.45},{"x":1567250880000,"y":12.45},{"x":1567250940000,"y":12.45},{"x":1567251000000,"y":12.45},{"x":1567251060000,"y":12.46},{"x":1567251120000,"y":12.45},{"x":1567251180000,"y":12.45},{"x":1567251240000,"y":12.45},{"x":1567251300000,"y":12.46},{"x":1567251360000,"y":12.46},{"x":1567251420000,"y":12.45},{"x":1567251480000,"y":12.44},{"x":1567251540000,"y":12.46},{"x":1567251600000,"y":12.46},{"x":1567251660000,"y":12.47},{"x":1567251720000,"y":12.47},{"x":1567251780000,"y":12.46},{"x":1567251840000,"y":12.46},{"x":1567251900000,"y":12.44},{"x":1567251960000,"y":12.47},{"x":1567252020000,"y":12.46},{"x":1567252080000,"y":12.46},{"x":1567252140000,"y":12.46},{"x":1567252200000,"y":12.47},{"x":1567252260000,"y":12.47},{"x":1567252320000,"y":12.45},{"x":1567252380000,"y":12.44},{"x":1567252440000,"y":12.44},{"x":1567252500000,"y":12.44},{"x":1567252560000,"y":12.46},{"x":1567252620000,"y":12.46},{"x":1567252680000,"y":12.46},{"x":1567252740000,"y":12.46},{"x":1567252800000,"y":12.42},{"x":1567252860000,"y":12.43},{"x":1567252920000,"y":12.44},{"x":1567252980000,"y":12.43},{"x":1567253040000,"y":12.43},{"x":1567253100000,"y":12.46},{"x":1567253160000,"y":12.47},{"x":1567253220000,"y":12.47},{"x":1567253280000,"y":12.47},{"x":1567253340000,"y":12.46},{"x":1567253400000,"y":12.46},{"x":1567253460000,"y":12.46},{"x":1567253520000,"y":12.48},{"x":1567253580000,"y":12.47},{"x":1567253640000,"y":12.47},{"x":1567253700000,"y":12.47},{"x":1567253760000,"y":12.47},{"x":1567253820000,"y":12.49},{"x":1567253880000,"y":12.48},{"x":1567253940000,"y":12.47},{"x":1567254000000,"y":12.48},{"x":1567254060000,"y":12.48},{"x":1567254120000,"y":12.48},{"x":1567254180000,"y":12.47},{"x":1567254240000,"y":12.47},{"x":1567254300000,"y":12.43},{"x":1567254360000,"y":12.43},{"x":1567254420000,"y":12.45},{"x":1567254480000,"y":12.47},{"x":1567254540000,"y":12.47},{"x":1567254600000,"y":12.47},{"x":1567254660000,"y":12.46},{"x":1567254720000,"y":12.48},{"x":1567254780000,"y":12.48},{"x":1567254840000,"y":12.48},{"x":1567254900000,"y":12.47},{"x":1567254960000,"y":12.47},{"x":1567255020000,"y":12.48},{"x":1567255080000,"y":12.47},{"x":1567255140000,"y":12.48},{"x":1567255200000,"y":12.49},{"x":1567255260000,"y":12.49},{"x":1567255320000,"y":12.48},{"x":1567255380000,"y":12.48},{"x":1567255440000,"y":12.47},{"x":1567255500000,"y":12.48},{"x":1567255560000,"y":12.48},{"x":1567255620000,"y":12.48},{"x":1567255680000,"y":12.49},{"x":1567255740000,"y":12.48},{"x":1567255800000,"y":12.48},{"x":1567255860000,"y":12.47},{"x":1567255920000,"y":12.47},{"x":1567255980000,"y":12.5},{"x":1567256040000,"y":12.48},{"x":1567256100000,"y":12.48},{"x":1567256160000,"y":12.48},{"x":1567256220000,"y":12.48},{"x":1567256280000,"y":12.49},{"x":1567256340000,"y":12.48},{"x":1567256400000,"y":12.49},{"x":1567256460000,"y":12.49},{"x":1567256520000,"y":12.49},{"x":1567256580000,"y":12.49},{"x":1567256640000,"y":12.47},{"x":1567256700000,"y":12.47},{"x":1567256760000,"y":12.47},{"x":1567256820000,"y":12.47},{"x":1567256880000,"y":12.48},{"x":1567256940000,"y":12.49},{"x":1567257000000,"y":12.49},{"x":1567257060000,"y":12.49},{"x":1567257120000,"y":12.49},{"x":1567257180000,"y":12.5},{"x":1567257240000,"y":12.49},{"x":1567257300000,"y":12.49},{"x":1567257360000,"y":12.49},{"x":1567257420000,"y":12.49},{"x":1567257480000,"y":12.5},{"x":1567257540000,"y":12.5},{"x":1567257600000,"y":12.5},{"x":1567257660000,"y":12.5},{"x":1567257720000,"y":12.5},{"x":1567257780000,"y":12.51},{"x":1567257840000,"y":12.47},{"x":1567257900000,"y":12.47},{"x":1567257960000,"y":12.47},{"x":1567258020000,"y":12.47},{"x":1567258080000,"y":12.47},{"x":1567258140000,"y":12.49},{"x":1567258200000,"y":12.48},{"x":1567258260000,"y":12.47},{"x":1567258320000,"y":12.47},{"x":1567258380000,"y":12.48},{"x":1567258440000,"y":12.5},{"x":1567258500000,"y":12.5},{"x":1567258560000,"y":12.49},{"x":1567258620000,"y":12.5},{"x":1567258680000,"y":12.49},{"x":1567258740000,"y":12.49},{"x":1567258800000,"y":12.49},{"x":1567258860000,"y":12.48},{"x":1567258920000,"y":12.48},{"x":1567258980000,"y":12.48},{"x":1567259040000,"y":12.49},{"x":1567259100000,"y":12.49},{"x":1567259160000,"y":12.49},{"x":1567259220000,"y":12.49},{"x":1567259280000,"y":12.48},{"x":1567259340000,"y":12.5},{"x":1567259400000,"y":12.49},{"x":1567259460000,"y":12.49},{"x":1567259520000,"y":12.48},{"x":1567259580000,"y":12.48},{"x":1567259640000,"y":12.49},{"x":1567259700000,"y":12.49},{"x":1567259760000,"y":12.49},{"x":1567259820000,"y":12.49},{"x":1567259880000,"y":12.49},{"x":1567259940000,"y":12.5},{"x":1567260000000,"y":12.45},{"x":1567260060000,"y":12.45},{"x":1567260120000,"y":12.45},{"x":1567260180000,"y":12.45},{"x":1567260240000,"y":12.46},{"x":1567260300000,"y":12.48},{"x":1567260360000,"y":12.47},{"x":1567260420000,"y":12.47},{"x":1567260480000,"y":12.47},{"x":1567260540000,"y":12.49},{"x":1567260600000,"y":12.5},{"x":1567260660000,"y":12.49},{"x":1567260720000,"y":12.49},{"x":1567260780000,"y":12.49},{"x":1567260840000,"y":12.49},{"x":1567260900000,"y":12.5},{"x":1567260960000,"y":12.5},{"x":1567261020000,"y":12.48},{"x":1567261080000,"y":12.49},{"x":1567261140000,"y":12.49},{"x":1567261200000,"y":12.51},{"x":1567261260000,"y":12.5},{"x":1567261320000,"y":12.5},{"x":1567261380000,"y":12.49},{"x":1567261440000,"y":12.49},{"x":1567261500000,"y":12.51},{"x":1567261560000,"y":12.49},{"x":1567261620000,"y":12.49},{"x":1567261680000,"y":12.49},{"x":1567261740000,"y":12.49},{"x":1567261800000,"y":12.51},{"x":1567261860000,"y":12.49},{"x":1567261920000,"y":12.49},{"x":1567261980000,"y":12.49},{"x":1567262040000,"y":12.49},{"x":1567262100000,"y":12.5},{"x":1567262160000,"y":12.5},{"x":1567262220000,"y":12.5},{"x":1567262280000,"y":12.5},{"x":1567262340000,"y":12.5},{"x":1567262400000,"y":12.52},{"x":1567262460000,"y":12.51},{"x":1567262520000,"y":12.51},{"x":1567262580000,"y":12.51},{"x":1567262640000,"y":12.51},{"x":1567262700000,"y":12.5},{"x":1567262760000,"y":12.49},{"x":1567262820000,"y":12.47},{"x":1567262880000,"y":12.47},{"x":1567262940000,"y":12.47},{"x":1567263000000,"y":12.48},{"x":1567263060000,"y":12.5},{"x":1567263120000,"y":12.5},{"x":1567263180000,"y":12.5},{"x":1567263240000,"y":12.5},{"x":1567263300000,"y":12.5},{"x":1567263360000,"y":12.5},{"x":1567263420000,"y":12.48},{"x":1567263480000,"y":12.48},{"x":1567263540000,"y":12.47},{"x":1567263600000,"y":12.46},{"x":1567263660000,"y":12.49},{"x":1567263720000,"y":12.5},{"x":1567263780000,"y":12.51},{"x":1567263840000,"y":12.51},{"x":1567263900000,"y":12.5},{"x":1567263960000,"y":12.51},{"x":1567264020000,"y":12.5},{"x":1567264080000,"y":12.5},{"x":1567264140000,"y":12.51},{"x":1567264200000,"y":12.5},{"x":1567264260000,"y":12.52},{"x":1567264320000,"y":12.5},{"x":1567264380000,"y":12.5},{"x":1567264440000,"y":12.5},{"x":1567264500000,"y":12.5},{"x":1567264560000,"y":12.51},{"x":1567264620000,"y":12.51},{"x":1567264680000,"y":12.51},{"x":1567264740000,"y":12.51},{"x":1567264800000,"y":12.5},{"x":1567264860000,"y":12.51},{"x":1567264920000,"y":12.51},{"x":1567264980000,"y":12.51},{"x":1567265040000,"y":12.51},{"x":1567265100000,"y":12.5},{"x":1567265160000,"y":12.5},{"x":1567265220000,"y":12.53},{"x":1567265280000,"y":12.51},{"x":1567265340000,"y":12.51},{"x":1567265400000,"y":12.5},{"x":1567265460000,"y":12.48},{"x":1567265520000,"y":12.51},{"x":1567265580000,"y":12.49},{"x":1567265640000,"y":12.49},{"x":1567265700000,"y":12.49},{"x":1567265760000,"y":12.49},{"x":1567265820000,"y":12.52},{"x":1567265880000,"y":12.51},{"x":1567265940000,"y":12.51},{"x":1567266000000,"y":12.51},{"x":1567266060000,"y":12.5},{"x":1567266120000,"y":12.51},{"x":1567266180000,"y":12.51},{"x":1567266240000,"y":12.51},{"x":1567266300000,"y":12.51},{"x":1567266360000,"y":12.51},{"x":1567266420000,"y":12.52},{"x":1567266480000,"y":12.52},{"x":1567266540000,"y":12.52},{"x":1567266600000,"y":12.51},{"x":1567266660000,"y":12.51},{"x":1567266720000,"y":12.52},{"x":1567266780000,"y":12.52},{"x":1567266840000,"y":12.52},{"x":1567266900000,"y":12.51},{"x":1567266960000,"y":12.51},{"x":1567267020000,"y":12.52},{"x":1567267080000,"y":12.51},{"x":1567267140000,"y":12.51},{"x":1567267200000,"y":12.5},{"x":1567267260000,"y":12.5},{"x":1567267320000,"y":12.5},{"x":1567267380000,"y":12.51},{"x":1567267440000,"y":12.5},{"x":1567267500000,"y":12.51},{"x":1567267560000,"y":12.51},{"x":1567267620000,"y":12.51},{"x":1567267680000,"y":12.51},{"x":1567267740000,"y":12.51},{"x":1567267800000,"y":12.52},{"x":1567267860000,"y":12.52},{"x":1567267920000,"y":12.52},{"x":1567267980000,"y":12.54},{"x":1567268040000,"y":12.51},{"x":1567268100000,"y":12.49},{"x":1567268160000,"y":12.49},{"x":1567268220000,"y":12.49},{"x":1567268280000,"y":12.5},{"x":1567268340000,"y":12.5},{"x":1567268400000,"y":12.51},{"x":1567268460000,"y":12.51},{"x":1567268520000,"y":12.51},{"x":1567268580000,"y":12.52},{"x":1567268640000,"y":12.51},{"x":1567268700000,"y":12.5},{"x":1567268760000,"y":12.5},{"x":1567268820000,"y":12.5},{"x":1567268880000,"y":12.51},{"x":1567268940000,"y":12.5},{"x":1567269000000,"y":12.51},{"x":1567269060000,"y":12.5},{"x":1567269120000,"y":12.51},{"x":1567269180000,"y":12.57},{"x":1567269240000,"y":12.82},{"x":1567269300000,"y":12.54},{"x":1567269360000,"y":12.54},{"x":1567269420000,"y":12.54},{"x":1567269480000,"y":12.54},{"x":1567269540000,"y":12.53},{"x":1567269600000,"y":12.52},{"x":1567269660000,"y":12.52},{"x":1567269720000,"y":12.52},{"x":1567269780000,"y":12.51},{"x":1567269840000,"y":12.51},{"x":1567269900000,"y":12.5},{"x":1567269960000,"y":12.5},{"x":1567270020000,"y":12.49},{"x":1567270080000,"y":12.49},{"x":1567270140000,"y":12.51},{"x":1567270200000,"y":12.51},{"x":1567270260000,"y":12.51},{"x":1567270320000,"y":12.51},{"x":1567270380000,"y":12.51},{"x":1567270440000,"y":12.52},{"x":1567270500000,"y":12.51},{"x":1567270560000,"y":12.51},{"x":1567270620000,"y":12.51},{"x":1567270680000,"y":12.51},{"x":1567270740000,"y":12.52},{"x":1567270800000,"y":12.49},{"x":1567270860000,"y":12.49},{"x":1567270920000,"y":12.49},{"x":1567270980000,"y":12.49},{"x":1567271040000,"y":12.51},{"x":1567271100000,"y":12.52},{"x":1567271160000,"y":12.52},{"x":1567271220000,"y":12.52},{"x":1567271280000,"y":12.52},{"x":1567271340000,"y":12.52},{"x":1567271400000,"y":12.49},{"x":1567271460000,"y":12.49},{"x":1567271520000,"y":12.49},{"x":1567271580000,"y":12.49},{"x":1567271640000,"y":12.49},{"x":1567271700000,"y":12.52},{"x":1567271760000,"y":12.52},{"x":1567271820000,"y":12.52},{"x":1567271880000,"y":12.52},{"x":1567271940000,"y":12.52},{"x":1567272000000,"y":12.53},{"x":1567272060000,"y":12.52},{"x":1567272120000,"y":12.52},{"x":1567272180000,"y":12.52},{"x":1567272240000,"y":12.52},{"x":1567272300000,"y":12.53},{"x":1567272360000,"y":12.52},{"x":1567272420000,"y":12.52},{"x":1567272480000,"y":12.52},{"x":1567272540000,"y":12.52},{"x":1567272600000,"y":12.54},{"x":1567272660000,"y":12.52},{"x":1567272720000,"y":12.52},{"x":1567272780000,"y":12.52},{"x":1567272840000,"y":12.52},{"x":1567272900000,"y":12.53},{"x":1567272960000,"y":12.52},{"x":1567273020000,"y":12.52},{"x":1567273080000,"y":12.52},{"x":1567273140000,"y":12.52},{"x":1567273200000,"y":12.53},{"x":1567273260000,"y":12.52},{"x":1567273320000,"y":12.52},{"x":1567273380000,"y":12.52},{"x":1567273440000,"y":12.52},{"x":1567273500000,"y":12.51},{"x":1567273560000,"y":12.54},{"x":1567273620000,"y":12.53},{"x":1567273680000,"y":12.53},{"x":1567273740000,"y":12.53},{"x":1567273800000,"y":12.52},{"x":1567273860000,"y":12.52},{"x":1567273920000,"y":12.51},{"x":1567273980000,"y":12.51},{"x":1567274040000,"y":12.51},{"x":1567274100000,"y":12.53},{"x":1567274160000,"y":12.53},{"x":1567274220000,"y":12.52},{"x":1567274280000,"y":12.52},{"x":1567274340000,"y":12.52},{"x":1567274400000,"y":12.52},{"x":1567274460000,"y":12.54},{"x":1567274520000,"y":12.52},{"x":1567274580000,"y":12.52},{"x":1567274640000,"y":12.52},{"x":1567274700000,"y":12.52},{"x":1567274760000,"y":12.54},{"x":1567274820000,"y":12.53},{"x":1567274880000,"y":12.53},{"x":1567274940000,"y":12.52},{"x":1567275000000,"y":12.53},{"x":1567275060000,"y":12.54},{"x":1567275120000,"y":12.52},{"x":1567275180000,"y":12.52},{"x":1567275240000,"y":12.52},{"x":1567275300000,"y":12.5},{"x":1567275360000,"y":12.51},{"x":1567275420000,"y":12.5},{"x":1567275480000,"y":12.5},{"x":1567275540000,"y":12.5},{"x":1567275600000,"y":12.53},{"x":1567275660000,"y":12.54},{"x":1567275720000,"y":12.51},{"x":1567275780000,"y":12.51},{"x":1567275840000,"y":12.51},{"x":1567275900000,"y":12.5},{"x":1567275960000,"y":12.5},{"x":1567276020000,"y":12.54},{"x":1567276080000,"y":12.53},{"x":1567276140000,"y":12.53},{"x":1567276200000,"y":12.53},{"x":1567276260000,"y":12.53},{"x":1567276320000,"y":12.54},{"x":1567276380000,"y":12.53},{"x":1567276440000,"y":12.53},{"x":1567276500000,"y":12.5},{"x":1567276560000,"y":12.5},{"x":1567276620000,"y":12.53},{"x":1567276680000,"y":12.53},{"x":1567276740000,"y":12.53},{"x":1567276800000,"y":12.53},{"x":1567276860000,"y":12.53},{"x":1567276920000,"y":12.54},{"x":1567276980000,"y":12.51},{"x":1567277040000,"y":12.5},{"x":1567277100000,"y":12.53},{"x":1567277160000,"y":12.53},{"x":1567277220000,"y":12.55},{"x":1567277280000,"y":12.53},{"x":1567277340000,"y":12.52},{"x":1567277400000,"y":12.52},{"x":1567277460000,"y":12.52},{"x":1567277520000,"y":12.53},{"x":1567277580000,"y":12.52},{"x":1567277640000,"y":12.52},{"x":1567277700000,"y":12.71},{"x":1567277760000,"y":12.71},{"x":1567277820000,"y":12.72},{"x":1567277880000,"y":12.71},{"x":1567277940000,"y":12.71},{"x":1567278000000,"y":12.7},{"x":1567278060000,"y":12.7},{"x":1567278120000,"y":12.71},{"x":1567278180000,"y":12.72},{"x":1567278240000,"y":12.72},{"x":1567278300000,"y":12.71},{"x":1567278360000,"y":12.71},{"x":1567278420000,"y":12.71},{"x":1567278480000,"y":12.73},{"x":1567278540000,"y":12.69},{"x":1567278600000,"y":12.71},{"x":1567278660000,"y":12.71},{"x":1567278720000,"y":12.7},{"x":1567278780000,"y":12.73},{"x":1567278840000,"y":12.72},{"x":1567278900000,"y":12.72},{"x":1567278960000,"y":12.71},{"x":1567279020000,"y":12.72},{"x":1567279080000,"y":12.72},{"x":1567279140000,"y":12.71},{"x":1567279200000,"y":12.72},{"x":1567279260000,"y":12.72},{"x":1567279320000,"y":12.72},{"x":1567279380000,"y":12.73},{"x":1567279440000,"y":12.73},{"x":1567279500000,"y":12.71},{"x":1567279560000,"y":12.71},{"x":1567279620000,"y":12.71},{"x":1567279680000,"y":12.72},{"x":1567279740000,"y":12.72},{"x":1567279800000,"y":12.7},{"x":1567279860000,"y":12.72},{"x":1567279920000,"y":12.72},{"x":1567279980000,"y":12.74},{"x":1567280040000,"y":12.72},{"x":1567280100000,"y":12.71},{"x":1567280160000,"y":12.71},{"x":1567280220000,"y":12.71},{"x":1567280280000,"y":12.73},{"x":1567280340000,"y":12.71},{"x":1567280400000,"y":12.72},{"x":1567280460000,"y":12.72},{"x":1567280520000,"y":12.72},{"x":1567280580000,"y":12.73},{"x":1567280640000,"y":12.72},{"x":1567280700000,"y":12.71},{"x":1567280760000,"y":12.71},{"x":1567280820000,"y":12.71},{"x":1567280880000,"y":12.71},{"x":1567280940000,"y":12.74},{"x":1567281000000,"y":12.72},{"x":1567281060000,"y":12.72},{"x":1567281120000,"y":12.72},{"x":1567281180000,"y":12.72},{"x":1567281240000,"y":12.74},{"x":1567281300000,"y":12.69},{"x":1567281360000,"y":12.69},{"x":1567281420000,"y":12.69},{"x":1567281480000,"y":12.69},{"x":1567281540000,"y":12.72},{"x":1567281600000,"y":12.71},{"x":1567281660000,"y":12.71},{"x":1567281720000,"y":12.71},{"x":1567281780000,"y":12.71},{"x":1567281840000,"y":12.73},{"x":1567281900000,"y":12.7},{"x":1567281960000,"y":12.7},{"x":1567282020000,"y":12.7},{"x":1567282080000,"y":12.7},{"x":1567282140000,"y":12.74},{"x":1567282200000,"y":12.73},{"x":1567282260000,"y":12.73},{"x":1567282320000,"y":12.73},{"x":1567282380000,"y":12.73},{"x":1567282440000,"y":12.73},{"x":1567282500000,"y":12.71},{"x":1567282560000,"y":12.71},{"x":1567282620000,"y":12.71},{"x":1567282680000,"y":12.71},{"x":1567282740000,"y":12.72},{"x":1567282800000,"y":12.7},{"x":1567282860000,"y":12.7},{"x":1567282920000,"y":12.7},{"x":1567282980000,"y":12.7},{"x":1567283040000,"y":12.7},{"x":1567283100000,"y":12.73},{"x":1567283160000,"y":12.72},{"x":1567283220000,"y":12.72},{"x":1567283280000,"y":12.72},{"x":1567283340000,"y":12.72},{"x":1567283400000,"y":12.73},{"x":1567283460000,"y":12.73},{"x":1567283520000,"y":12.73},{"x":1567283580000,"y":12.73},{"x":1567283640000,"y":12.73},{"x":1567283700000,"y":12.73},{"x":1567283760000,"y":12.73},{"x":1567283820000,"y":12.85},{"x":1567283880000,"y":12.8},{"x":1567283940000,"y":12.81},{"x":1567284000000,"y":12.8},{"x":1567284060000,"y":12.8},{"x":1567284120000,"y":12.79},{"x":1567284180000,"y":12.75},{"x":1567284240000,"y":12.75},{"x":1567284300000,"y":12.76},{"x":1567284360000,"y":12.75},{"x":1567284420000,"y":12.75},{"x":1567284480000,"y":12.75},{"x":1567284540000,"y":12.75},{"x":1567284600000,"y":12.75},{"x":1567284660000,"y":12.73},{"x":1567284720000,"y":12.73},{"x":1567284780000,"y":12.73},{"x":1567284840000,"y":12.73},{"x":1567284900000,"y":12.75},{"x":1567284960000,"y":12.74},{"x":1567285020000,"y":12.74},{"x":1567285080000,"y":12.74},{"x":1567285140000,"y":12.74},{"x":1567285200000,"y":12.73},{"x":1567285260000,"y":12.76},{"x":1567285320000,"y":12.75},{"x":1567285380000,"y":12.75},{"x":1567285440000,"y":12.75},{"x":1567285500000,"y":12.73},{"x":1567285560000,"y":12.73},{"x":1567285620000,"y":12.72},{"x":1567285680000,"y":12.72},{"x":1567285740000,"y":12.73},{"x":1567285800000,"y":12.7},{"x":1567285860000,"y":12.73},{"x":1567285920000,"y":12.71},{"x":1567285980000,"y":12.72},{"x":1567286040000,"y":12.72},{"x":1567286100000,"y":12.75},{"x":1567286160000,"y":12.76},{"x":1567286220000,"y":12.75},{"x":1567286280000,"y":12.75},{"x":1567286340000,"y":12.75},{"x":1567286400000,"y":12.74},{"x":1567286460000,"y":12.75},{"x":1567286520000,"y":12.74},{"x":1567286580000,"y":12.74},{"x":1567286640000,"y":12.73},{"x":1567286700000,"y":12.73},{"x":1567286760000,"y":12.74},{"x":1567286820000,"y":12.73},{"x":1567286880000,"y":12.73},{"x":1567286940000,"y":12.73},{"x":1567287000000,"y":12.73},{"x":1567287060000,"y":12.74},{"x":1567287120000,"y":12.73},{"x":1567287180000,"y":12.72},{"x":1567287240000,"y":12.72},{"x":1567287300000,"y":12.72},{"x":1567287360000,"y":12.72},{"x":1567287420000,"y":12.72},{"x":1567287480000,"y":12.71},{"x":1567287540000,"y":12.73},{"x":1567287600000,"y":12.74},{"x":1567287660000,"y":12.74},{"x":1567287720000,"y":12.74},{"x":1567287780000,"y":12.73},{"x":1567287840000,"y":12.73},{"x":1567287900000,"y":12.69},{"x":1567287960000,"y":12.69},{"x":1567288020000,"y":12.72},{"x":1567288080000,"y":12.71},{"x":1567288140000,"y":12.71},{"x":1567288200000,"y":12.72},{"x":1567288260000,"y":12.72},{"x":1567288320000,"y":12.74},{"x":1567288380000,"y":12.74},{"x":1567288440000,"y":12.74},{"x":1567288500000,"y":12.74},{"x":1567288560000,"y":12.74},{"x":1567288620000,"y":12.75},{"x":1567288680000,"y":12.74},{"x":1567288740000,"y":12.74},{"x":1567288800000,"y":12.73},{"x":1567288860000,"y":12.73},{"x":1567288920000,"y":12.74},{"x":1567288980000,"y":12.72},{"x":1567289040000,"y":12.72},{"x":1567289100000,"y":12.72},{"x":1567289160000,"y":12.72},{"x":1567289220000,"y":12.74},{"x":1567289280000,"y":12.74},{"x":1567289340000,"y":12.74},{"x":1567289400000,"y":12.74},{"x":1567289460000,"y":12.74},{"x":1567289520000,"y":12.75},{"x":1567289580000,"y":12.74},{"x":1567289640000,"y":12.74},{"x":1567289700000,"y":12.71},{"x":1567289760000,"y":12.71},{"x":1567289820000,"y":12.74},{"x":1567289880000,"y":12.71},{"x":1567289940000,"y":12.71},{"x":1567290000000,"y":12.74},{"x":1567290060000,"y":12.74},{"x":1567290120000,"y":12.74},{"x":1567290180000,"y":12.73},{"x":1567290240000,"y":12.72},{"x":1567290300000,"y":12.73},{"x":1567290360000,"y":12.73},{"x":1567290420000,"y":12.74},{"x":1567290480000,"y":12.75},{"x":1567290540000,"y":12.74},{"x":1567290600000,"y":12.72},{"x":1567290660000,"y":12.71},{"x":1567290720000,"y":12.71},{"x":1567290780000,"y":12.75},{"x":1567290840000,"y":12.73},{"x":1567290900000,"y":12.71},{"x":1567290960000,"y":12.71},{"x":1567291020000,"y":12.71},{"x":1567291080000,"y":13.01},{"x":1567291140000,"y":12.81},{"x":1567291200000,"y":12.78},{"x":1567291260000,"y":12.78},{"x":1567291320000,"y":12.78},{"x":1567291380000,"y":12.77},{"x":1567291440000,"y":12.73},{"x":1567291500000,"y":12.75},{"x":1567291560000,"y":12.76},{"x":1567291620000,"y":12.75},{"x":1567291680000,"y":12.76},{"x":1567291740000,"y":12.75},{"x":1567291800000,"y":12.75},{"x":1567291860000,"y":12.75},{"x":1567291920000,"y":12.75},{"x":1567291980000,"y":12.75},{"x":1567292040000,"y":12.75},{"x":1567292100000,"y":12.75},{"x":1567292160000,"y":12.75},{"x":1567292220000,"y":12.75},{"x":1567292280000,"y":12.76},{"x":1567292340000,"y":12.74},{"x":1567292400000,"y":12.75},{"x":1567292460000,"y":12.75},{"x":1567292520000,"y":12.75},{"x":1567292580000,"y":12.75},{"x":1567292640000,"y":12.76},{"x":1567292700000,"y":12.75},{"x":1567292760000,"y":12.75},{"x":1567292820000,"y":12.75},{"x":1567292880000,"y":12.75},{"x":1567292940000,"y":12.76},{"x":1567293000000,"y":12.72},{"x":1567293060000,"y":12.72},{"x":1567293120000,"y":12.72},{"x":1567293180000,"y":12.72},{"x":1567293240000,"y":12.75},{"x":1567293300000,"y":12.75},{"x":1567293360000,"y":12.75},{"x":1567293420000,"y":12.75},{"x":1567293480000,"y":12.75},{"x":1567293540000,"y":12.77},{"x":1567293600000,"y":12.73},{"x":1567293660000,"y":12.72},{"x":1567293720000,"y":12.72},{"x":1567293780000,"y":12.72},{"x":1567293840000,"y":12.73},{"x":1567293900000,"y":12.72},{"x":1567293960000,"y":12.72},{"x":1567294020000,"y":12.73},{"x":1567294080000,"y":12.72},{"x":1567294140000,"y":12.74},{"x":1567294200000,"y":12.75},{"x":1567294260000,"y":12.74},{"x":1567294320000,"y":12.74},{"x":1567294380000,"y":12.74},{"x":1567294440000,"y":12.75},{"x":1567294500000,"y":12.75},{"x":1567294560000,"y":12.75},{"x":1567294620000,"y":12.75},{"x":1567294680000,"y":12.75},{"x":1567294740000,"y":12.76},{"x":1567294800000,"y":12.75},{"x":1567294860000,"y":12.75},{"x":1567294920000,"y":12.75},{"x":1567294980000,"y":12.75},{"x":1567295040000,"y":12.75},{"x":1567295100000,"y":12.74},{"x":1567295160000,"y":12.72},{"x":1567295220000,"y":12.72},{"x":1567295280000,"y":12.72},{"x":1567295340000,"y":12.72},{"x":1567295400000,"y":12.75},{"x":1567295460000,"y":12.75},{"x":1567295520000,"y":12.75},{"x":1567295580000,"y":12.75},{"x":1567295640000,"y":12.75},{"x":1567295700000,"y":12.75},{"x":1567295760000,"y":12.73},{"x":1567295820000,"y":12.66},{"x":1567295880000,"y":12.66},{"x":1567295940000,"y":12.66},{"x":1567296000000,"y":12.67},{"x":1567296060000,"y":12.66},{"x":1567296120000,"y":12.66},{"x":1567296180000,"y":12.66},{"x":1567296240000,"y":12.66},{"x":1567296300000,"y":12.69},{"x":1567296360000,"y":12.67},{"x":1567296420000,"y":12.67},{"x":1567296480000,"y":12.67},{"x":1567296540000,"y":12.68},{"x":1567296600000,"y":12.69},{"x":1567296660000,"y":12.69},{"x":1567296720000,"y":12.69},{"x":1567296780000,"y":12.69},{"x":1567296840000,"y":12.69},{"x":1567296900000,"y":12.68},{"x":1567296960000,"y":12.67},{"x":1567297020000,"y":12.67},{"x":1567297080000,"y":12.67},{"x":1567297140000,"y":12.67},{"x":1567297200000,"y":12.68},{"x":1567297260000,"y":12.68},{"x":1567297320000,"y":12.68},{"x":1567297380000,"y":12.67},{"x":1567297440000,"y":12.67},{"x":1567297500000,"y":12.69},{"x":1567297560000,"y":12.69},{"x":1567297620000,"y":12.69},{"x":1567297680000,"y":12.68},{"x":1567297740000,"y":12.68},{"x":1567297800000,"y":12.68},{"x":1567297860000,"y":12.68},{"x":1567297920000,"y":12.67},{"x":1567297980000,"y":12.67},{"x":1567298040000,"y":12.67},{"x":1567298100000,"y":12.69},{"x":1567298160000,"y":12.69},{"x":1567298220000,"y":12.68},{"x":1567298280000,"y":12.68},{"x":1567298340000,"y":12.68},{"x":1567298400000,"y":12.68},{"x":1567298460000,"y":12.7},{"x":1567298520000,"y":12.68},{"x":1567298580000,"y":12.68},{"x":1567298640000,"y":12.68},{"x":1567298700000,"y":12.68},{"x":1567298760000,"y":12.69},{"x":1567298820000,"y":12.69},{"x":1567298880000,"y":12.68},{"x":1567298940000,"y":12.68},{"x":1567299000000,"y":12.68},{"x":1567299060000,"y":12.69},{"x":1567299120000,"y":12.69},{"x":1567299180000,"y":12.69},{"x":1567299240000,"y":12.69},{"x":1567299300000,"y":12.68},{"x":1567299360000,"y":12.69},{"x":1567299420000,"y":12.69},{"x":1567299480000,"y":12.69},{"x":1567299540000,"y":12.68},{"x":1567299600000,"y":12.66},{"x":1567299660000,"y":12.65},{"x":1567299720000,"y":12.69},{"x":1567299780000,"y":12.67},{"x":1567299840000,"y":12.67},{"x":1567299900000,"y":12.69},{"x":1567299960000,"y":12.69},{"x":1567300020000,"y":12.7},{"x":1567300080000,"y":12.69},{"x":1567300140000,"y":12.69},{"x":1567300200000,"y":12.69},{"x":1567300260000,"y":12.68},{"x":1567300320000,"y":12.7},{"x":1567300380000,"y":12.69},{"x":1567300440000,"y":12.69},{"x":1567300500000,"y":12.68},{"x":1567300560000,"y":12.68},{"x":1567300620000,"y":12.69},{"x":1567300680000,"y":12.67},{"x":1567300740000,"y":12.67},{"x":1567300800000,"y":12.66},{"x":1567300860000,"y":12.66},{"x":1567300920000,"y":12.68},{"x":1567300980000,"y":12.68},{"x":1567301040000,"y":12.68},{"x":1567301100000,"y":12.68},{"x":1567301160000,"y":12.68},{"x":1567301220000,"y":12.7},{"x":1567301280000,"y":12.69},{"x":1567301340000,"y":12.69},{"x":1567301400000,"y":12.69},{"x":1567301460000,"y":12.69},{"x":1567301520000,"y":12.7},{"x":1567301580000,"y":12.69},{"x":1567301640000,"y":12.69},{"x":1567301700000,"y":12.67},{"x":1567301760000,"y":12.67},{"x":1567301820000,"y":12.67},{"x":1567301880000,"y":12.69},{"x":1567301940000,"y":12.69},{"x":1567302000000,"y":12.68},{"x":1567302060000,"y":12.68},{"x":1567302120000,"y":12.68},{"x":1567302180000,"y":12.7},{"x":1567302240000,"y":12.69},{"x":1567302300000,"y":12.7},{"x":1567302360000,"y":12.7},{"x":1567302420000,"y":12.7},{"x":1567302480000,"y":12.71},{"x":1567302540000,"y":12.69},{"x":1567302600000,"y":12.69},{"x":1567302660000,"y":12.69},{"x":1567302720000,"y":12.69},{"x":1567302780000,"y":12.69},{"x":1567302840000,"y":12.68},{"x":1567302900000,"y":12.68},{"x":1567302960000,"y":12.69},{"x":1567303020000,"y":12.69},{"x":1567303080000,"y":12.7},{"x":1567303140000,"y":12.69},{"x":1567303200000,"y":12.7},{"x":1567303260000,"y":12.7},{"x":1567303320000,"y":12.7},{"x":1567303380000,"y":12.71},{"x":1567303440000,"y":12.69},{"x":1567303500000,"y":12.68},{"x":1567303560000,"y":12.68},{"x":1567303620000,"y":12.68},{"x":1567303680000,"y":12.69},{"x":1567303740000,"y":12.7},{"x":1567303800000,"y":12.7},{"x":1567303860000,"y":12.7},{"x":1567303920000,"y":12.7},{"x":1567303980000,"y":12.71},{"x":1567304040000,"y":12.7},{"x":1567304100000,"y":12.7},{"x":1567304160000,"y":12.7},{"x":1567304220000,"y":12.7},{"x":1567304280000,"y":12.71},{"x":1567304340000,"y":12.7},{"x":1567304400000,"y":12.7},{"x":1567304460000,"y":12.7},{"x":1567304520000,"y":12.7},{"x":1567304580000,"y":12.7},{"x":1567304640000,"y":12.7},{"x":1567304700000,"y":12.69},{"x":1567304760000,"y":12.69},{"x":1567304820000,"y":12.69},{"x":1567304880000,"y":12.69},{"x":1567304940000,"y":12.71},{"x":1567305000000,"y":12.7},{"x":1567305060000,"y":12.69},{"x":1567305120000,"y":12.69},{"x":1567305180000,"y":12.69},{"x":1567305240000,"y":12.7},{"x":1567305300000,"y":12.7},{"x":1567305360000,"y":12.7},{"x":1567305420000,"y":12.7},{"x":1567305480000,"y":12.7},{"x":1567305540000,"y":12.7},{"x":1567305600000,"y":12.69},{"x":1567305660000,"y":12.69},{"x":1567305720000,"y":12.69},{"x":1567305780000,"y":12.69},{"x":1567305840000,"y":12.71},{"x":1567305900000,"y":12.7},{"x":1567305960000,"y":12.7},{"x":1567306020000,"y":12.7},{"x":1567306080000,"y":12.7},{"x":1567306140000,"y":12.71},{"x":1567306200000,"y":12.7},{"x":1567306260000,"y":12.7},{"x":1567306320000,"y":12.7},{"x":1567306380000,"y":12.7},{"x":1567306440000,"y":12.69},{"x":1567306500000,"y":12.68},{"x":1567306560000,"y":12.68},{"x":1567306620000,"y":12.68},{"x":1567306680000,"y":12.68},{"x":1567306740000,"y":12.7},{"x":1567306800000,"y":12.65},{"x":1567306860000,"y":12.65},{"x":1567306920000,"y":12.64},{"x":1567306980000,"y":12.64},{"x":1567307040000,"y":12.64},{"x":1567307100000,"y":12.69},{"x":1567307160000,"y":12.68},{"x":1567307220000,"y":12.68},{"x":1567307280000,"y":12.68},{"x":1567307340000,"y":12.68},{"x":1567307400000,"y":12.7},{"x":1567307460000,"y":12.69},{"x":1567307520000,"y":12.69},{"x":1567307580000,"y":12.69},{"x":1567307640000,"y":12.69},{"x":1567307700000,"y":12.7},{"x":1567307760000,"y":12.68},{"x":1567307820000,"y":12.68},{"x":1567307880000,"y":12.68},{"x":1567307940000,"y":12.68},{"x":1567308000000,"y":12.7},{"x":1567308060000,"y":12.69},{"x":1567308120000,"y":12.69},{"x":1567308180000,"y":12.69},{"x":1567308240000,"y":12.69},{"x":1567308300000,"y":12.7},{"x":1567308360000,"y":12.69},{"x":1567308420000,"y":12.69},{"x":1567308480000,"y":12.69},{"x":1567308540000,"y":12.68},{"x":1567308600000,"y":12.69},{"x":1567308660000,"y":12.68},{"x":1567308720000,"y":12.67},{"x":1567308780000,"y":12.67},{"x":1567308840000,"y":12.69},{"x":1567308900000,"y":12.7},{"x":1567308960000,"y":12.69},{"x":1567309020000,"y":12.69},{"x":1567309080000,"y":12.69},{"x":1567309140000,"y":12.69},{"x":1567309200000,"y":12.68},{"x":1567309260000,"y":12.68},{"x":1567309320000,"y":12.69},{"x":1567309380000,"y":12.69},{"x":1567309440000,"y":12.69},{"x":1567309500000,"y":12.7},{"x":1567309560000,"y":12.69},{"x":1567309620000,"y":12.69},{"x":1567309680000,"y":12.69},{"x":1567309740000,"y":12.69},{"x":1567309800000,"y":12.69},{"x":1567309860000,"y":12.68},{"x":1567309920000,"y":12.67},{"x":1567309980000,"y":12.67},{"x":1567310040000,"y":12.67},{"x":1567310100000,"y":12.69},{"x":1567310160000,"y":12.7},{"x":1567310220000,"y":12.69},{"x":1567310280000,"y":12.69},{"x":1567310340000,"y":12.69},{"x":1567310400000,"y":12.66},{"x":1567310460000,"y":12.69},{"x":1567310520000,"y":12.7},{"x":1567310580000,"y":12.7},{"x":1567310640000,"y":12.7},{"x":1567310700000,"y":12.69},{"x":1567310760000,"y":12.7},{"x":1567310820000,"y":12.69},{"x":1567310880000,"y":12.69},{"x":1567310940000,"y":12.69},{"x":1567311000000,"y":12.69},{"x":1567311060000,"y":12.7},{"x":1567311120000,"y":12.69},{"x":1567311180000,"y":12.69},{"x":1567311240000,"y":12.69},{"x":1567311300000,"y":12.65},{"x":1567311360000,"y":12.67},{"x":1567311420000,"y":12.69},{"x":1567311480000,"y":12.69},{"x":1567311540000,"y":12.68},{"x":1567311600000,"y":12.68},{"x":1567311660000,"y":12.68},{"x":1567311720000,"y":12.7},{"x":1567311780000,"y":12.69},{"x":1567311840000,"y":12.69},{"x":1567311900000,"y":12.68},{"x":1567311960000,"y":12.68},{"x":1567312020000,"y":12.7},{"x":1567312080000,"y":12.69},{"x":1567312140000,"y":12.69},{"x":1567312200000,"y":12.68},{"x":1567312260000,"y":12.68},{"x":1567312320000,"y":12.7},{"x":1567312380000,"y":12.69},{"x":1567312440000,"y":12.69},{"x":1567312500000,"y":12.7},{"x":1567312560000,"y":12.7},{"x":1567312620000,"y":12.71},{"x":1567312680000,"y":12.7},{"x":1567312740000,"y":12.7},{"x":1567312800000,"y":12.7},{"x":1567312860000,"y":12.69},{"x":1567312920000,"y":13},{"x":1567312980000,"y":12.74},{"x":1567313040000,"y":12.74},{"x":1567313100000,"y":12.74},{"x":1567313160000,"y":12.74},{"x":1567313220000,"y":12.74},{"x":1567313280000,"y":12.7},{"x":1567313340000,"y":12.7},{"x":1567313400000,"y":12.71},{"x":1567313460000,"y":12.71},{"x":1567313520000,"y":12.72},{"x":1567313580000,"y":12.7},{"x":1567313640000,"y":12.69},{"x":1567313700000,"y":12.71},{"x":1567313760000,"y":12.71},{"x":1567313820000,"y":12.72},{"x":1567313880000,"y":12.7},{"x":1567313940000,"y":12.7},{"x":1567314000000,"y":12.69},{"x":1567314060000,"y":12.69},{"x":1567314120000,"y":12.69},{"x":1567314180000,"y":12.73},{"x":1567314240000,"y":12.71},{"x":1567314300000,"y":12.71},{"x":1567314360000,"y":12.71},{"x":1567314420000,"y":12.71},{"x":1567314480000,"y":12.72},{"x":1567314540000,"y":12.71},{"x":1567314600000,"y":12.71},{"x":1567314660000,"y":12.71},{"x":1567314720000,"y":12.71},{"x":1567314780000,"y":12.72},{"x":1567314840000,"y":12.71},{"x":1567314900000,"y":12.7},{"x":1567314960000,"y":12.7},{"x":1567315020000,"y":12.7},{"x":1567315080000,"y":12.71},{"x":1567315140000,"y":12.68},{"x":1567315200000,"y":12.68},{"x":1567315260000,"y":12.68},{"x":1567315320000,"y":12.68},{"x":1567315380000,"y":12.69},{"x":1567315440000,"y":12.69},{"x":1567315500000,"y":12.7},{"x":1567315560000,"y":12.7},{"x":1567315620000,"y":12.7},{"x":1567315680000,"y":12.7},{"x":1567315740000,"y":12.69},{"x":1567315800000,"y":12.69},{"x":1567315860000,"y":12.68},{"x":1567315920000,"y":12.68},{"x":1567315980000,"y":12.7},{"x":1567316040000,"y":12.68},{"x":1567316100000,"y":12.69},{"x":1567316160000,"y":12.69},{"x":1567316220000,"y":12.7},{"x":1567316280000,"y":12.69},{"x":1567316340000,"y":12.71},{"x":1567316400000,"y":12.7},{"x":1567316460000,"y":12.7},{"x":1567316520000,"y":12.7},{"x":1567316580000,"y":12.7},{"x":1567316640000,"y":12.7},{"x":1567316700000,"y":12.7},{"x":1567316760000,"y":12.7},{"x":1567316820000,"y":12.7},{"x":1567316880000,"y":12.7},{"x":1567316940000,"y":12.7},{"x":1567317000000,"y":12.69},{"x":1567317060000,"y":12.69},{"x":1567317120000,"y":12.69},{"x":1567317180000,"y":12.69},{"x":1567317240000,"y":12.7},{"x":1567317300000,"y":12.7},{"x":1567317360000,"y":12.7},{"x":1567317420000,"y":12.7},{"x":1567317480000,"y":12.7},{"x":1567317540000,"y":12.71},{"x":1567317600000,"y":12.69},{"x":1567317660000,"y":12.69},{"x":1567317720000,"y":12.68},{"x":1567317780000,"y":12.68},{"x":1567317840000,"y":12.7},{"x":1567317900000,"y":12.7},{"x":1567317960000,"y":12.7},{"x":1567318020000,"y":12.69},{"x":1567318080000,"y":12.69},{"x":1567318140000,"y":12.71},{"x":1567318200000,"y":12.7},{"x":1567318260000,"y":12.7},{"x":1567318320000,"y":12.7},{"x":1567318380000,"y":12.7},{"x":1567318440000,"y":12.7},{"x":1567318500000,"y":12.71},{"x":1567318560000,"y":12.7},{"x":1567318620000,"y":12.7},{"x":1567318680000,"y":12.69},{"x":1567318740000,"y":12.69},{"x":1567318800000,"y":12.7},{"x":1567318860000,"y":12.69},{"x":1567318920000,"y":12.69},{"x":1567318980000,"y":12.69},{"x":1567319040000,"y":12.69},{"x":1567319100000,"y":12.7},{"x":1567319160000,"y":12.69},{"x":1567319220000,"y":12.69},{"x":1567319280000,"y":12.69},{"x":1567319340000,"y":12.69},{"x":1567319400000,"y":12.72},{"x":1567319460000,"y":12.7},{"x":1567319520000,"y":12.7},{"x":1567319580000,"y":12.7},{"x":1567319640000,"y":12.7},{"x":1567319700000,"y":12.7},{"x":1567319760000,"y":12.68},{"x":1567319820000,"y":12.68},{"x":1567319880000,"y":12.68},{"x":1567319940000,"y":12.71},{"x":1567320000000,"y":12.71},{"x":1567320060000,"y":12.7},{"x":1567320120000,"y":12.7},{"x":1567320180000,"y":12.7},{"x":1567320240000,"y":12.7},{"x":1567320300000,"y":12.69},{"x":1567320360000,"y":12.65},{"x":1567320420000,"y":12.65},{"x":1567320480000,"y":12.65},{"x":1567320540000,"y":12.65},{"x":1567320600000,"y":12.67},{"x":1567320660000,"y":12.7},{"x":1567320720000,"y":12.7},{"x":1567320780000,"y":12.7},{"x":1567320840000,"y":12.69},{"x":1567320900000,"y":12.68},{"x":1567320960000,"y":12.7},{"x":1567321020000,"y":12.69},{"x":1567321080000,"y":12.69},{"x":1567321140000,"y":12.69},{"x":1567321200000,"y":12.69},{"x":1567321260000,"y":12.72},{"x":1567321320000,"y":12.71},{"x":1567321380000,"y":12.71},{"x":1567321440000,"y":12.71},{"x":1567321500000,"y":12.71},{"x":1567321560000,"y":12.72},{"x":1567321620000,"y":12.71},{"x":1567321680000,"y":12.71},{"x":1567321740000,"y":12.71},{"x":1567321800000,"y":12.71},{"x":1567321860000,"y":12.72},{"x":1567321920000,"y":12.71},{"x":1567321980000,"y":12.71},{"x":1567322040000,"y":12.71},{"x":1567322100000,"y":12.71},{"x":1567322160000,"y":12.72},{"x":1567322220000,"y":12.71},{"x":1567322280000,"y":12.71},{"x":1567322340000,"y":12.71},{"x":1567322400000,"y":12.71},{"x":1567322460000,"y":12.72},{"x":1567322520000,"y":12.71},{"x":1567322580000,"y":12.71},{"x":1567322640000,"y":12.71},{"x":1567322700000,"y":12.7},{"x":1567322760000,"y":12.71},{"x":1567322820000,"y":12.69},{"x":1567322880000,"y":12.69},{"x":1567322940000,"y":12.69},{"x":1567323000000,"y":12.7},{"x":1567323060000,"y":12.7},{"x":1567323120000,"y":12.71},{"x":1567323180000,"y":12.71},{"x":1567323240000,"y":12.71},{"x":1567323300000,"y":12.71},{"x":1567323360000,"y":12.72},{"x":1567323420000,"y":12.72},{"x":1567323480000,"y":12.71},{"x":1567323540000,"y":12.71},{"x":1567323600000,"y":12.69},{"x":1567323660000,"y":12.69},{"x":1567323720000,"y":12.72},{"x":1567323780000,"y":12.71},{"x":1567323840000,"y":12.71},{"x":1567323900000,"y":12.68},{"x":1567323960000,"y":12.68},{"x":1567324020000,"y":12.7},{"x":1567324080000,"y":12.68},{"x":1567324140000,"y":12.68},{"x":1567324200000,"y":12.67},{"x":1567324260000,"y":12.67},{"x":1567324320000,"y":12.69},{"x":1567324380000,"y":12.7},{"x":1567324440000,"y":12.69},{"x":1567324500000,"y":12.69},{"x":1567324560000,"y":12.69},{"x":1567324620000,"y":12.7},{"x":1567324680000,"y":12.7},{"x":1567324740000,"y":12.7},{"x":1567324800000,"y":12.67},{"x":1567324860000,"y":12.67},{"x":1567324920000,"y":12.68},{"x":1567324980000,"y":12.66},{"x":1567325040000,"y":12.66},{"x":1567325100000,"y":12.68},{"x":1567325160000,"y":12.68},{"x":1567325220000,"y":12.68},{"x":1567325280000,"y":12.71},{"x":1567325340000,"y":12.7},{"x":1567325400000,"y":12.7},{"x":1567325460000,"y":12.68},{"x":1567325520000,"y":12.68},{"x":1567325580000,"y":12.69},{"x":1567325640000,"y":12.68},{"x":1567325700000,"y":12.7},{"x":1567325760000,"y":12.7},{"x":1567325820000,"y":12.7},{"x":1567325880000,"y":12.7},{"x":1567325940000,"y":12.69},{"x":1567326000000,"y":12.68},{"x":1567326060000,"y":12.68},{"x":1567326120000,"y":12.68},{"x":1567326180000,"y":12.69},{"x":1567326240000,"y":12.69},{"x":1567326300000,"y":12.69},{"x":1567326360000,"y":12.69},{"x":1567326420000,"y":12.69},{"x":1567326480000,"y":12.71},{"x":1567326540000,"y":12.71},{"x":1567326600000,"y":12.68},{"x":1567326660000,"y":12.67},{"x":1567326720000,"y":12.67},{"x":1567326780000,"y":12.69},{"x":1567326840000,"y":12.7},{"x":1567326900000,"y":12.68},{"x":1567326960000,"y":12.67},{"x":1567327020000,"y":12.67},{"x":1567327080000,"y":12.69},{"x":1567327140000,"y":12.7},{"x":1567327200000,"y":12.68},{"x":1567327260000,"y":12.68},{"x":1567327320000,"y":12.68},{"x":1567327380000,"y":12.69},{"x":1567327440000,"y":12.7},{"x":1567327500000,"y":12.69},{"x":1567327560000,"y":12.69},{"x":1567327620000,"y":12.7},{"x":1567327680000,"y":12.7},{"x":1567327740000,"y":12.72},{"x":1567327800000,"y":12.67},{"x":1567327860000,"y":12.66},{"x":1567327920000,"y":12.66},{"x":1567327980000,"y":12.66},{"x":1567328040000,"y":12.69},{"x":1567328100000,"y":12.7},{"x":1567328160000,"y":12.7},{"x":1567328220000,"y":12.7},{"x":1567328280000,"y":12.71},{"x":1567328340000,"y":12.71},{"x":1567328400000,"y":12.68},{"x":1567328460000,"y":12.68},{"x":1567328520000,"y":12.68},{"x":1567328580000,"y":12.68},{"x":1567328640000,"y":12.69},{"x":1567328700000,"y":12.67},{"x":1567328760000,"y":12.67},{"x":1567328820000,"y":12.67},{"x":1567328880000,"y":12.67},{"x":1567328940000,"y":12.72},{"x":1567329000000,"y":12.69},{"x":1567329060000,"y":12.68},{"x":1567329120000,"y":12.68},{"x":1567329180000,"y":12.68},{"x":1567329240000,"y":12.7},{"x":1567329300000,"y":12.71},{"x":1567329360000,"y":12.71},{"x":1567329420000,"y":12.71},{"x":1567329480000,"y":12.71},{"x":1567329540000,"y":12.7},{"x":1567329600000,"y":12.69},{"x":1567329660000,"y":12.68},{"x":1567329720000,"y":12.68},{"x":1567329780000,"y":12.68},{"x":1567329840000,"y":12.68},{"x":1567329900000,"y":12.69},{"x":1567329960000,"y":12.68},{"x":1567330020000,"y":12.68},{"x":1567330080000,"y":12.68},{"x":1567330140000,"y":12.67},{"x":1567330200000,"y":12.71},{"x":1567330260000,"y":12.7},{"x":1567330320000,"y":12.69},{"x":1567330380000,"y":12.69},{"x":1567330440000,"y":12.7},{"x":1567330500000,"y":12.72},{"x":1567330560000,"y":12.7},{"x":1567330620000,"y":12.7},{"x":1567330680000,"y":12.7},{"x":1567330740000,"y":12.7},{"x":1567330800000,"y":12.72},{"x":1567330860000,"y":12.71},{"x":1567330920000,"y":12.71},{"x":1567330980000,"y":12.71},{"x":1567331040000,"y":12.71},{"x":1567331100000,"y":12.72},{"x":1567331160000,"y":12.69},{"x":1567331220000,"y":12.69},{"x":1567331280000,"y":12.69},{"x":1567331340000,"y":12.69},{"x":1567331400000,"y":12.71},{"x":1567331460000,"y":12.71},{"x":1567331520000,"y":12.71},{"x":1567331580000,"y":12.71},{"x":1567331640000,"y":12.71},{"x":1567331700000,"y":12.72},{"x":1567331760000,"y":12.71},{"x":1567331820000,"y":12.71},{"x":1567331880000,"y":12.71},{"x":1567331940000,"y":12.71},{"x":1567332000000,"y":12.69},{"x":1567332060000,"y":12.73},{"x":1567332120000,"y":12.71},{"x":1567332180000,"y":12.71},{"x":1567332240000,"y":12.71},{"x":1567332300000,"y":12.71},{"x":1567332360000,"y":12.72},{"x":1567332420000,"y":12.71},{"x":1567332480000,"y":12.71},{"x":1567332540000,"y":12.72},{"x":1567332600000,"y":12.72},{"x":1567332660000,"y":12.72},{"x":1567332720000,"y":12.71},{"x":1567332780000,"y":12.71},{"x":1567332840000,"y":12.71},{"x":1567332900000,"y":12.68},{"x":1567332960000,"y":12.71},{"x":1567333020000,"y":12.69},{"x":1567333080000,"y":12.69},{"x":1567333140000,"y":12.69},{"x":1567333200000,"y":12.68},{"x":1567333260000,"y":12.69},{"x":1567333320000,"y":12.69},{"x":1567333380000,"y":12.69},{"x":1567333440000,"y":12.69},{"x":1567333500000,"y":12.7},{"x":1567333560000,"y":12.71},{"x":1567333620000,"y":12.69},{"x":1567333680000,"y":12.69},{"x":1567333740000,"y":12.69},{"x":1567333800000,"y":12.69},{"x":1567333860000,"y":12.7},{"x":1567333920000,"y":12.7},{"x":1567333980000,"y":12.7},{"x":1567334040000,"y":12.7},{"x":1567334100000,"y":12.7},{"x":1567334160000,"y":12.7},{"x":1567334220000,"y":12.7},{"x":1567334280000,"y":12.7},{"x":1567334340000,"y":12.68},{"x":1567334400000,"y":12.7},{"x":1567334460000,"y":12.7},{"x":1567334520000,"y":12.69},{"x":1567334580000,"y":12.67},{"x":1567334640000,"y":12.67},{"x":1567334700000,"y":12.68},{"x":1567334760000,"y":12.68},{"x":1567334820000,"y":12.95},{"x":1567334880000,"y":12.73},{"x":1567334940000,"y":12.73},{"x":1567335000000,"y":12.74},{"x":1567335060000,"y":12.74},{"x":1567335120000,"y":12.72},{"x":1567335180000,"y":12.69},{"x":1567335240000,"y":12.69},{"x":1567335300000,"y":12.67},{"x":1567335360000,"y":12.66},{"x":1567335420000,"y":12.69},{"x":1567335480000,"y":12.7},{"x":1567335540000,"y":12.7},{"x":1567335600000,"y":12.69},{"x":1567335660000,"y":12.68},{"x":1567335720000,"y":12.7},{"x":1567335780000,"y":12.7},{"x":1567335840000,"y":12.7},{"x":1567335900000,"y":12.7},{"x":1567335960000,"y":12.7},{"x":1567336020000,"y":12.71},{"x":1567336080000,"y":12.7},{"x":1567336140000,"y":12.7},{"x":1567336200000,"y":12.69},{"x":1567336260000,"y":12.69},{"x":1567336320000,"y":12.7},{"x":1567336380000,"y":12.7},{"x":1567336440000,"y":12.7},{"x":1567336500000,"y":12.69},{"x":1567336560000,"y":12.7},{"x":1567336620000,"y":12.7},{"x":1567336680000,"y":12.72},{"x":1567336740000,"y":12.7},{"x":1567336800000,"y":12.68},{"x":1567336860000,"y":12.67},{"x":1567336920000,"y":12.67},{"x":1567336980000,"y":12.69},{"x":1567337040000,"y":12.67},{"x":1567337100000,"y":12.74},{"x":1567337160000,"y":12.69},{"x":1567337220000,"y":12.69},{"x":1567337280000,"y":12.71},{"x":1567337340000,"y":12.71},{"x":1567337400000,"y":12.68},{"x":1567337460000,"y":12.68},{"x":1567337520000,"y":12.67},{"x":1567337580000,"y":12.7},{"x":1567337640000,"y":12.7},{"x":1567337700000,"y":12.68},{"x":1567337760000,"y":12.68},{"x":1567337820000,"y":12.68},{"x":1567337880000,"y":12.7},{"x":1567337940000,"y":12.7},{"x":1567338000000,"y":12.71},{"x":1567338060000,"y":12.71},{"x":1567338120000,"y":12.71},{"x":1567338180000,"y":12.72},{"x":1567338240000,"y":12.7},{"x":1567338300000,"y":12.81},{"x":1567338360000,"y":12.78},{"x":1567338420000,"y":12.77},{"x":1567338480000,"y":12.78},{"x":1567338540000,"y":12.78},{"x":1567338600000,"y":12.78},{"x":1567338660000,"y":12.71},{"x":1567338720000,"y":12.72},{"x":1567338780000,"y":12.73},{"x":1567338840000,"y":12.71},{"x":1567338900000,"y":12.72},{"x":1567338960000,"y":12.72},{"x":1567339020000,"y":12.72},{"x":1567339080000,"y":12.72},{"x":1567339140000,"y":12.72},{"x":1567339200000,"y":12.7},{"x":1567339260000,"y":12.7},{"x":1567339320000,"y":12.7},{"x":1567339380000,"y":12.7},{"x":1567339440000,"y":12.72},{"x":1567339500000,"y":12.71},{"x":1567339560000,"y":12.71},{"x":1567339620000,"y":12.71},{"x":1567339680000,"y":12.71},{"x":1567339740000,"y":12.72},{"x":1567339800000,"y":12.7},{"x":1567339860000,"y":12.7},{"x":1567339920000,"y":12.7},{"x":1567339980000,"y":12.7},{"x":1567340040000,"y":12.72},{"x":1567340100000,"y":12.71},{"x":1567340160000,"y":12.71},{"x":1567340220000,"y":12.71},{"x":1567340280000,"y":12.71},{"x":1567340340000,"y":12.72},{"x":1567340400000,"y":12.71},{"x":1567340460000,"y":12.71},{"x":1567340520000,"y":12.7},{"x":1567340580000,"y":12.71},{"x":1567340640000,"y":12.71},{"x":1567340700000,"y":12.73},{"x":1567340760000,"y":12.72},{"x":1567340820000,"y":12.72},{"x":1567340880000,"y":12.72},{"x":1567340940000,"y":12.72},{"x":1567341000000,"y":12.72},{"x":1567341060000,"y":12.72},{"x":1567341120000,"y":12.71},{"x":1567341180000,"y":12.71},{"x":1567341240000,"y":12.71},{"x":1567341300000,"y":12.73},{"x":1567341360000,"y":12.73},{"x":1567341420000,"y":12.73},{"x":1567341480000,"y":12.73},{"x":1567341540000,"y":12.72},{"x":1567341600000,"y":12.73},{"x":1567341660000,"y":12.73},{"x":1567341720000,"y":12.72},{"x":1567341780000,"y":12.72},{"x":1567341840000,"y":12.72},{"x":1567341900000,"y":12.73},{"x":1567341960000,"y":12.72},{"x":1567342020000,"y":12.7},{"x":1567342080000,"y":12.7},{"x":1567342140000,"y":12.7},{"x":1567342200000,"y":12.71},{"x":1567342260000,"y":12.7},{"x":1567342320000,"y":12.69},{"x":1567342380000,"y":12.69},{"x":1567342440000,"y":12.69},{"x":1567342500000,"y":12.71},{"x":1567342560000,"y":12.7},{"x":1567342620000,"y":12.7},{"x":1567342680000,"y":12.7},{"x":1567342740000,"y":12.7},{"x":1567342800000,"y":12.71},{"x":1567342860000,"y":12.69},{"x":1567342920000,"y":12.68},{"x":1567342980000,"y":12.68},{"x":1567343040000,"y":12.68},{"x":1567343100000,"y":12.69},{"x":1567343160000,"y":12.7},{"x":1567343220000,"y":12.7},{"x":1567343280000,"y":12.7},{"x":1567343340000,"y":12.7},{"x":1567343400000,"y":12.71},{"x":1567343460000,"y":12.72},{"x":1567343520000,"y":12.71},{"x":1567343580000,"y":12.71},{"x":1567343640000,"y":12.71},{"x":1567343700000,"y":12.68},{"x":1567343760000,"y":12.71},{"x":1567343820000,"y":12.7},{"x":1567343880000,"y":12.7},{"x":1567343940000,"y":12.7},{"x":1567344000000,"y":12.7},{"x":1567344060000,"y":12.72},{"x":1567344120000,"y":12.71},{"x":1567344180000,"y":12.71},{"x":1567344240000,"y":12.71},{"x":1567344300000,"y":12.69},{"x":1567344360000,"y":12.7},{"x":1567344420000,"y":12.71},{"x":1567344480000,"y":12.71},{"x":1567344540000,"y":12.7},{"x":1567344600000,"y":12.7},{"x":1567344660000,"y":12.71},{"x":1567344720000,"y":12.7},{"x":1567344780000,"y":12.7},{"x":1567344840000,"y":12.69},{"x":1567344900000,"y":12.7},{"x":1567344960000,"y":12.71},{"x":1567345020000,"y":12.69},{"x":1567345080000,"y":12.69},{"x":1567345140000,"y":12.71},{"x":1567345200000,"y":12.69},{"x":1567345260000,"y":12.69},{"x":1567345320000,"y":12.73},{"x":1567345380000,"y":12.71},{"x":1567345440000,"y":12.71},{"x":1567345500000,"y":12.71},{"x":1567345560000,"y":12.71},{"x":1567345620000,"y":12.72},{"x":1567345680000,"y":12.71},{"x":1567345740000,"y":12.71},{"x":1567345800000,"y":12.71},{"x":1567345860000,"y":12.71},{"x":1567345920000,"y":12.72},{"x":1567345980000,"y":12.72},{"x":1567346040000,"y":12.71},{"x":1567346100000,"y":12.72},{"x":1567346160000,"y":12.72},{"x":1567346220000,"y":12.72},{"x":1567346280000,"y":12.7},{"x":1567346340000,"y":12.7},{"x":1567346400000,"y":12.69},{"x":1567346460000,"y":12.69},{"x":1567346520000,"y":12.7},{"x":1567346580000,"y":12.69},{"x":1567346640000,"y":12.69},{"x":1567346700000,"y":12.71},{"x":1567346760000,"y":12.71},{"x":1567346820000,"y":12.72},{"x":1567346880000,"y":12.71},{"x":1567346940000,"y":12.71},{"x":1567347000000,"y":12.71},{"x":1567347060000,"y":12.71},{"x":1567347120000,"y":12.73},{"x":1567347180000,"y":12.71},{"x":1567347240000,"y":12.71},{"x":1567347300000,"y":12.71},{"x":1567347360000,"y":12.71},{"x":1567347420000,"y":12.71},{"x":1567347480000,"y":12.72},{"x":1567347540000,"y":12.71},{"x":1567347600000,"y":12.72},{"x":1567347660000,"y":12.72},{"x":1567347720000,"y":12.72},{"x":1567347780000,"y":12.73},{"x":1567347840000,"y":12.72},{"x":1567347900000,"y":12.72},{"x":1567347960000,"y":12.72},{"x":1567348020000,"y":12.72},{"x":1567348080000,"y":12.72},{"x":1567348140000,"y":12.71},{"x":1567348200000,"y":12.71},{"x":1567348260000,"y":12.71},{"x":1567348320000,"y":12.71},{"x":1567348380000,"y":12.72},{"x":1567348440000,"y":12.71},{"x":1567348500000,"y":12.7},{"x":1567348560000,"y":12.7},{"x":1567348620000,"y":12.7},{"x":1567348680000,"y":12.72},{"x":1567348740000,"y":12.72},{"x":1567348800000,"y":12.71},{"x":1567348860000,"y":12.71},{"x":1567348920000,"y":12.71},{"x":1567348980000,"y":12.72},{"x":1567349040000,"y":12.7},{"x":1567349100000,"y":12.7},{"x":1567349160000,"y":12.7},{"x":1567349220000,"y":12.7},{"x":1567349280000,"y":12.71},{"x":1567349340000,"y":12.7},{"x":1567349400000,"y":12.71},{"x":1567349460000,"y":12.71},{"x":1567349520000,"y":12.71},{"x":1567349580000,"y":12.72},{"x":1567349640000,"y":12.72},{"x":1567349700000,"y":12.72},{"x":1567349760000,"y":12.72},{"x":1567349820000,"y":12.72},{"x":1567349880000,"y":12.72},{"x":1567349940000,"y":12.72},{"x":1567350000000,"y":12.7},{"x":1567350060000,"y":12.7},{"x":1567350120000,"y":12.7},{"x":1567350180000,"y":12.7},{"x":1567350240000,"y":12.73},{"x":1567350300000,"y":12.7},{"x":1567350360000,"y":12.69},{"x":1567350420000,"y":12.69},{"x":1567350480000,"y":12.69},{"x":1567350540000,"y":12.72},{"x":1567350600000,"y":12.72},{"x":1567350660000,"y":12.72},{"x":1567350720000,"y":12.73},{"x":1567350780000,"y":12.73},{"x":1567350840000,"y":12.73},{"x":1567350900000,"y":12.73},{"x":1567350960000,"y":12.71},{"x":1567351020000,"y":12.68},{"x":1567351080000,"y":12.68},{"x":1567351140000,"y":12.7},{"x":1567351200000,"y":12.71},{"x":1567351260000,"y":12.71},{"x":1567351320000,"y":12.71},{"x":1567351380000,"y":12.71},{"x":1567351440000,"y":12.72},{"x":1567351500000,"y":12.7},{"x":1567351560000,"y":12.7},{"x":1567351620000,"y":12.7},{"x":1567351680000,"y":12.7},{"x":1567351740000,"y":12.71},{"x":1567351800000,"y":12.71},{"x":1567351860000,"y":12.71},{"x":1567351920000,"y":12.7},{"x":1567351980000,"y":12.7},{"x":1567352040000,"y":12.71},{"x":1567352100000,"y":12.7},{"x":1567352160000,"y":12.7},{"x":1567352220000,"y":12.7},{"x":1567352280000,"y":12.7},{"x":1567352340000,"y":12.71},{"x":1567352400000,"y":12.72},{"x":1567352460000,"y":12.7},{"x":1567352520000,"y":12.71},{"x":1567352580000,"y":12.7},{"x":1567352640000,"y":12.7},{"x":1567352700000,"y":12.72},{"x":1567352760000,"y":12.72},{"x":1567352820000,"y":12.72},{"x":1567352880000,"y":12.72},{"x":1567352940000,"y":12.71},{"x":1567353000000,"y":12.72},{"x":1567353060000,"y":12.71},{"x":1567353120000,"y":12.71},{"x":1567353180000,"y":12.71},{"x":1567353240000,"y":12.71},{"x":1567353300000,"y":12.72},{"x":1567353360000,"y":12.72},{"x":1567353420000,"y":12.72},{"x":1567353480000,"y":12.72},{"x":1567353540000,"y":12.72},{"x":1567353600000,"y":12.72},{"x":1567353660000,"y":12.68},{"x":1567353720000,"y":12.68},{"x":1567353780000,"y":12.68},{"x":1567353840000,"y":12.68},{"x":1567353900000,"y":12.69},{"x":1567353960000,"y":12.71},{"x":1567354020000,"y":12.71},{"x":1567354080000,"y":12.71},{"x":1567354140000,"y":12.72},{"x":1567354200000,"y":12.72},{"x":1567354260000,"y":12.71},{"x":1567354320000,"y":12.71},{"x":1567354380000,"y":12.71},{"x":1567354440000,"y":12.71},{"x":1567354500000,"y":12.72},{"x":1567354560000,"y":12.72},{"x":1567354620000,"y":12.72},{"x":1567354680000,"y":12.72},{"x":1567354740000,"y":12.72},{"x":1567354800000,"y":12.7},{"x":1567354860000,"y":12.72},{"x":1567354920000,"y":12.71},{"x":1567354980000,"y":12.71},{"x":1567355040000,"y":12.71},{"x":1567355100000,"y":12.71},{"x":1567355160000,"y":12.72},{"x":1567355220000,"y":12.72},{"x":1567355280000,"y":12.72},{"x":1567355340000,"y":12.72},{"x":1567355400000,"y":12.71},{"x":1567355460000,"y":12.72},{"x":1567355520000,"y":12.71},{"x":1567355580000,"y":12.71},{"x":1567355640000,"y":12.72},{"x":1567355700000,"y":12.71},{"x":1567355760000,"y":12.72},{"x":1567355820000,"y":12.7},{"x":1567355880000,"y":12.7},{"x":1567355940000,"y":12.71},{"x":1567356000000,"y":12.72},{"x":1567356060000,"y":12.73},{"x":1567356120000,"y":12.72},{"x":1567356180000,"y":12.72},{"x":1567356240000,"y":12.72},{"x":1567356300000,"y":12.73},{"x":1567356360000,"y":12.73},{"x":1567356420000,"y":12.72},{"x":1567356480000,"y":12.72},{"x":1567356540000,"y":12.72},{"x":1567356600000,"y":12.72},{"x":1567356660000,"y":12.72},{"x":1567356720000,"y":13.07},{"x":1567356780000,"y":12.73},{"x":1567356840000,"y":12.73},{"x":1567356900000,"y":12.77},{"x":1567356960000,"y":12.77},{"x":1567357020000,"y":12.74},{"x":1567357080000,"y":12.73},{"x":1567357140000,"y":12.73},{"x":1567357200000,"y":12.73},{"x":1567357260000,"y":12.73},{"x":1567357320000,"y":12.72},{"x":1567357380000,"y":12.7},{"x":1567357440000,"y":12.7},{"x":1567357500000,"y":12.72},{"x":1567357560000,"y":12.72},{"x":1567357620000,"y":12.73},{"x":1567357680000,"y":12.72},{"x":1567357740000,"y":12.72},{"x":1567357800000,"y":12.71},{"x":1567357860000,"y":12.71},{"x":1567357920000,"y":12.72},{"x":1567357980000,"y":12.72},{"x":1567358040000,"y":12.72},{"x":1567358100000,"y":12.73},{"x":1567358160000,"y":12.72},{"x":1567358220000,"y":12.73},{"x":1567358280000,"y":12.73},{"x":1567358340000,"y":12.73},{"x":1567358400000,"y":12.72},{"x":1567358460000,"y":12.72},{"x":1567358520000,"y":12.74},{"x":1567358580000,"y":12.73},{"x":1567358640000,"y":12.73},{"x":1567358700000,"y":12.7},{"x":1567358760000,"y":12.7},{"x":1567358820000,"y":12.7},{"x":1567358880000,"y":12.72},{"x":1567358940000,"y":12.71},{"x":1567359000000,"y":12.72},{"x":1567359060000,"y":12.72},{"x":1567359120000,"y":12.72},{"x":1567359180000,"y":12.74},{"x":1567359240000,"y":12.73},{"x":1567359300000,"y":12.72},{"x":1567359360000,"y":12.72},{"x":1567359420000,"y":12.72},{"x":1567359480000,"y":12.74},{"x":1567359540000,"y":12.73},{"x":1567359600000,"y":12.72},{"x":1567359660000,"y":12.72},{"x":1567359720000,"y":12.72},{"x":1567359780000,"y":12.74},{"x":1567359840000,"y":12.72},{"x":1567359900000,"y":12.73},{"x":1567359960000,"y":12.73},{"x":1567360020000,"y":12.71},{"x":1567360080000,"y":12.71},{"x":1567360140000,"y":12.7},{"x":1567360200000,"y":12.71},{"x":1567360260000,"y":12.71},{"x":1567360320000,"y":12.71},{"x":1567360380000,"y":12.72},{"x":1567360440000,"y":12.7},{"x":1567360500000,"y":12.71},{"x":1567360560000,"y":12.71},{"x":1567360620000,"y":12.71},{"x":1567360680000,"y":12.71},{"x":1567360740000,"y":12.68},{"x":1567360800000,"y":12.7},{"x":1567360860000,"y":12.7},{"x":1567360920000,"y":12.7},{"x":1567360980000,"y":12.71},{"x":1567361040000,"y":12.69},{"x":1567361100000,"y":12.7},{"x":1567361160000,"y":12.7},{"x":1567361220000,"y":12.7},{"x":1567361280000,"y":12.7},{"x":1567361340000,"y":12.72},{"x":1567361400000,"y":12.72},{"x":1567361460000,"y":12.72},{"x":1567361520000,"y":12.72},{"x":1567361580000,"y":12.73},{"x":1567361640000,"y":12.85},{"x":1567361700000,"y":12.76},{"x":1567361760000,"y":12.72},{"x":1567361820000,"y":12.72},{"x":1567361880000,"y":12.72},{"x":1567361940000,"y":12.74},{"x":1567362000000,"y":12.71},{"x":1567362060000,"y":12.7},{"x":1567362120000,"y":12.71},{"x":1567362180000,"y":12.71},{"x":1567362240000,"y":12.72},{"x":1567362300000,"y":12.71},{"x":1567362360000,"y":12.71},{"x":1567362420000,"y":12.71},{"x":1567362480000,"y":12.7},{"x":1567362540000,"y":12.72},{"x":1567362600000,"y":12.72},{"x":1567362660000,"y":12.72},{"x":1567362720000,"y":12.71},{"x":1567362780000,"y":12.71},{"x":1567362840000,"y":12.73},{"x":1567362900000,"y":12.71},{"x":1567362960000,"y":12.71},{"x":1567363020000,"y":12.71},{"x":1567363080000,"y":12.71},{"x":1567363140000,"y":12.74},{"x":1567363200000,"y":12.73},{"x":1567363260000,"y":12.73},{"x":1567363320000,"y":12.73},{"x":1567363380000,"y":12.73},{"x":1567363440000,"y":12.74},{"x":1567363500000,"y":12.73},{"x":1567363560000,"y":12.73},{"x":1567363620000,"y":12.73},{"x":1567363680000,"y":12.73},{"x":1567363740000,"y":12.73},{"x":1567363800000,"y":12.73},{"x":1567363860000,"y":12.72},{"x":1567363920000,"y":12.72},{"x":1567363980000,"y":12.72},{"x":1567364040000,"y":12.72},{"x":1567364100000,"y":12.73},{"x":1567364160000,"y":12.72},{"x":1567364220000,"y":12.72},{"x":1567364280000,"y":12.72},{"x":1567364340000,"y":12.71},{"x":1567364400000,"y":12.74},{"x":1567364460000,"y":12.72},{"x":1567364520000,"y":12.73},{"x":1567364580000,"y":12.73},{"x":1567364640000,"y":12.72},{"x":1567364700000,"y":12.74},{"x":1567364760000,"y":12.73},{"x":1567364820000,"y":12.73},{"x":1567364880000,"y":12.73},{"x":1567364940000,"y":12.73},{"x":1567365000000,"y":12.73},{"x":1567365060000,"y":12.72},{"x":1567365120000,"y":12.73},{"x":1567365180000,"y":12.72},{"x":1567365240000,"y":12.72},{"x":1567365300000,"y":12.74},{"x":1567365360000,"y":12.72},{"x":1567365420000,"y":12.73},{"x":1567365480000,"y":12.73},{"x":1567365540000,"y":12.73},{"x":1567365600000,"y":12.73},{"x":1567365660000,"y":12.72},{"x":1567365720000,"y":12.72},{"x":1567365780000,"y":12.72},{"x":1567365840000,"y":12.73},{"x":1567365900000,"y":12.72},{"x":1567365960000,"y":12.73},{"x":1567366020000,"y":12.73},{"x":1567366080000,"y":12.73},{"x":1567366140000,"y":12.73},{"x":1567366200000,"y":12.73},{"x":1567366260000,"y":12.74},{"x":1567366320000,"y":12.73},{"x":1567366380000,"y":12.73},{"x":1567366440000,"y":12.73},{"x":1567366500000,"y":12.71},{"x":1567366560000,"y":12.74},{"x":1567366620000,"y":12.73},{"x":1567366680000,"y":12.73},{"x":1567366740000,"y":12.73},{"x":1567366800000,"y":12.73},{"x":1567366860000,"y":12.73},{"x":1567366920000,"y":12.71},{"x":1567366980000,"y":12.71},{"x":1567367040000,"y":12.71},{"x":1567367100000,"y":12.72},{"x":1567367160000,"y":12.74},{"x":1567367220000,"y":12.73},{"x":1567367280000,"y":12.73},{"x":1567367340000,"y":12.73},{"x":1567367400000,"y":12.72},{"x":1567367460000,"y":12.73},{"x":1567367520000,"y":12.72},{"x":1567367580000,"y":12.72},{"x":1567367640000,"y":12.72},{"x":1567367700000,"y":12.73},{"x":1567367760000,"y":12.74},{"x":1567367820000,"y":12.73},{"x":1567367880000,"y":12.73},{"x":1567367940000,"y":12.74},{"x":1567368000000,"y":12.74},{"x":1567368060000,"y":12.75},{"x":1567368120000,"y":12.74},{"x":1567368180000,"y":12.74},{"x":1567368240000,"y":12.74},{"x":1567368300000,"y":12.72},{"x":1567368360000,"y":12.72},{"x":1567368420000,"y":12.71},{"x":1567368480000,"y":12.7},{"x":1567368540000,"y":12.73},{"x":1567368600000,"y":12.74},{"x":1567368660000,"y":12.74},{"x":1567368720000,"y":12.72},{"x":1567368780000,"y":12.71},{"x":1567368840000,"y":12.7},{"x":1567368900000,"y":12.72},{"x":1567368960000,"y":12.72},{"x":1567369020000,"y":12.71},{"x":1567369080000,"y":12.7},{"x":1567369140000,"y":12.7},{"x":1567369200000,"y":12.72},{"x":1567369260000,"y":12.72},{"x":1567369320000,"y":12.73},{"x":1567369380000,"y":12.72},{"x":1567369440000,"y":12.72},{"x":1567369500000,"y":12.69},{"x":1567369560000,"y":12.69},{"x":1567369620000,"y":12.71},{"x":1567369680000,"y":12.7},{"x":1567369740000,"y":12.7},{"x":1567369800000,"y":12.72},{"x":1567369860000,"y":12.72},{"x":1567369920000,"y":12.72},{"x":1567369980000,"y":12.71},{"x":1567370040000,"y":12.71},{"x":1567370100000,"y":12.71},{"x":1567370160000,"y":12.71},{"x":1567370220000,"y":12.73},{"x":1567370280000,"y":12.72},{"x":1567370340000,"y":12.72},{"x":1567370400000,"y":12.69},{"x":1567370460000,"y":12.69},{"x":1567370520000,"y":12.7},{"x":1567370580000,"y":12.71},{"x":1567370640000,"y":12.72},{"x":1567370700000,"y":12.7},{"x":1567370760000,"y":12.69},{"x":1567370820000,"y":12.71},{"x":1567370880000,"y":12.72},{"x":1567370940000,"y":12.72},{"x":1567371000000,"y":12.72},{"x":1567371060000,"y":12.72},{"x":1567371120000,"y":12.72},{"x":1567371180000,"y":12.74},{"x":1567371240000,"y":12.72},{"x":1567371300000,"y":12.72},{"x":1567371360000,"y":12.72},{"x":1567371420000,"y":12.72},{"x":1567371480000,"y":12.74},{"x":1567371540000,"y":12.73},{"x":1567371600000,"y":12.72},{"x":1567371660000,"y":12.72},{"x":1567371720000,"y":12.72},{"x":1567371780000,"y":12.73},{"x":1567371840000,"y":12.72},{"x":1567371900000,"y":12.72},{"x":1567371960000,"y":12.72},{"x":1567372020000,"y":12.72},{"x":1567372080000,"y":12.73},{"x":1567372140000,"y":12.73},{"x":1567372200000,"y":12.72},{"x":1567372260000,"y":12.72},{"x":1567372320000,"y":12.72},{"x":1567372380000,"y":12.73},{"x":1567372440000,"y":12.72},{"x":1567372500000,"y":12.72},{"x":1567372560000,"y":12.72},{"x":1567372620000,"y":12.72},{"x":1567372680000,"y":12.73},{"x":1567372740000,"y":12.72},{"x":1567372800000,"y":12.72},{"x":1567372860000,"y":12.72},{"x":1567372920000,"y":12.72},{"x":1567372980000,"y":12.73},{"x":1567373040000,"y":12.72},{"x":1567373100000,"y":12.72},{"x":1567373160000,"y":12.72},{"x":1567373220000,"y":12.72},{"x":1567373280000,"y":12.73},{"x":1567373340000,"y":12.72},{"x":1567373400000,"y":12.73},{"x":1567373460000,"y":12.73},{"x":1567373520000,"y":12.73},{"x":1567373580000,"y":12.73},{"x":1567373640000,"y":12.73},{"x":1567373700000,"y":12.72},{"x":1567373760000,"y":12.85},{"x":1567373820000,"y":12.8},{"x":1567373880000,"y":12.8},{"x":1567373940000,"y":12.8},{"x":1567374000000,"y":12.79},{"x":1567374060000,"y":12.78},{"x":1567374120000,"y":12.74},{"x":1567374180000,"y":12.74},{"x":1567374240000,"y":12.74},{"x":1567374300000,"y":12.73},{"x":1567374360000,"y":12.73},{"x":1567374420000,"y":12.73},{"x":1567374480000,"y":12.73},{"x":1567374540000,"y":12.75},{"x":1567374600000,"y":12.73},{"x":1567374660000,"y":12.73},{"x":1567374720000,"y":12.73},{"x":1567374780000,"y":12.73},{"x":1567374840000,"y":12.74},{"x":1567374900000,"y":12.74},{"x":1567374960000,"y":12.74},{"x":1567375020000,"y":12.74},{"x":1567375080000,"y":12.73},{"x":1567375140000,"y":12.73},{"x":1567375200000,"y":12.72},{"x":1567375260000,"y":12.73},{"x":1567375320000,"y":12.73},{"x":1567375380000,"y":12.73},{"x":1567375440000,"y":12.74},{"x":1567375500000,"y":12.71},{"x":1567375560000,"y":12.71},{"x":1567375620000,"y":12.71},{"x":1567375680000,"y":12.71},{"x":1567375740000,"y":12.74},{"x":1567375800000,"y":12.71},{"x":1567375860000,"y":12.71},{"x":1567375920000,"y":12.71},{"x":1567375980000,"y":12.71},{"x":1567376040000,"y":12.71},{"x":1567376100000,"y":12.75},{"x":1567376160000,"y":12.74},{"x":1567376220000,"y":12.74},{"x":1567376280000,"y":12.74},{"x":1567376340000,"y":12.74},{"x":1567376400000,"y":12.74},{"x":1567376460000,"y":12.73},{"x":1567376520000,"y":12.73},{"x":1567376580000,"y":12.74},{"x":1567376640000,"y":12.74},{"x":1567376700000,"y":12.75},{"x":1567376760000,"y":12.74},{"x":1567376820000,"y":12.74},{"x":1567376880000,"y":12.74},{"x":1567376940000,"y":12.74},{"x":1567377000000,"y":12.75},{"x":1567377060000,"y":12.74},{"x":1567377120000,"y":12.73},{"x":1567377180000,"y":12.73},{"x":1567377240000,"y":12.73},{"x":1567377300000,"y":12.73},{"x":1567377360000,"y":12.73},{"x":1567377420000,"y":12.72},{"x":1567377480000,"y":12.72},{"x":1567377540000,"y":12.74},{"x":1567377600000,"y":12.74},{"x":1567377660000,"y":12.74},{"x":1567377720000,"y":12.74},{"x":1567377780000,"y":12.74},{"x":1567377840000,"y":12.74},{"x":1567377900000,"y":12.75},{"x":1567377960000,"y":12.72},{"x":1567378020000,"y":12.72},{"x":1567378080000,"y":12.72},{"x":1567378140000,"y":12.72},{"x":1567378200000,"y":12.72},{"x":1567378260000,"y":12.72},{"x":1567378320000,"y":12.72},{"x":1567378380000,"y":12.72},{"x":1567378440000,"y":12.71},{"x":1567378500000,"y":12.72},{"x":1567378560000,"y":12.95},{"x":1567378620000,"y":12.79},{"x":1567378680000,"y":12.78},{"x":1567378740000,"y":12.78},{"x":1567378800000,"y":12.78},{"x":1567378860000,"y":12.74},{"x":1567378920000,"y":12.72},{"x":1567378980000,"y":12.72},{"x":1567379040000,"y":12.72},{"x":1567379100000,"y":12.67},{"x":1567379160000,"y":12.71},{"x":1567379220000,"y":12.72},{"x":1567379280000,"y":12.72},{"x":1567379340000,"y":12.73},{"x":1567379400000,"y":12.72},{"x":1567379460000,"y":12.73},{"x":1567379520000,"y":12.72},{"x":1567379580000,"y":12.72},{"x":1567379640000,"y":12.72},{"x":1567379700000,"y":12.73},{"x":1567379760000,"y":12.72},{"x":1567379820000,"y":12.69},{"x":1567379880000,"y":12.69},{"x":1567379940000,"y":12.69},{"x":1567380000000,"y":12.7},{"x":1567380060000,"y":12.72},{"x":1567380120000,"y":12.72},{"x":1567380180000,"y":12.72},{"x":1567380240000,"y":12.72},{"x":1567380300000,"y":12.73},{"x":1567380360000,"y":12.74},{"x":1567380420000,"y":12.73},{"x":1567380480000,"y":12.73},{"x":1567380540000,"y":12.73},{"x":1567380600000,"y":12.73},{"x":1567380660000,"y":12.72},{"x":1567380720000,"y":12.74},{"x":1567380780000,"y":12.72},{"x":1567380840000,"y":12.72},{"x":1567380900000,"y":12.71},{"x":1567380960000,"y":12.71},{"x":1567381020000,"y":12.73},{"x":1567381080000,"y":12.72},{"x":1567381140000,"y":12.73},{"x":1567381200000,"y":12.7},{"x":1567381260000,"y":12.69},{"x":1567381320000,"y":12.73},{"x":1567381380000,"y":12.73},{"x":1567381440000,"y":12.73},{"x":1567381500000,"y":12.71},{"x":1567381560000,"y":12.71},{"x":1567381620000,"y":12.73},{"x":1567381680000,"y":12.72},{"x":1567381740000,"y":12.72},{"x":1567381800000,"y":12.69},{"x":1567381860000,"y":12.69},{"x":1567381920000,"y":12.71},{"x":1567381980000,"y":12.71},{"x":1567382040000,"y":12.71},{"x":1567382100000,"y":12.73},{"x":1567382160000,"y":12.73},{"x":1567382220000,"y":12.74},{"x":1567382280000,"y":12.73},{"x":1567382340000,"y":12.73},{"x":1567382400000,"y":12.73},{"x":1567382460000,"y":12.73},{"x":1567382520000,"y":12.74},{"x":1567382580000,"y":12.71},{"x":1567382640000,"y":12.71},{"x":1567382700000,"y":12.71},{"x":1567382760000,"y":12.71},{"x":1567382820000,"y":12.71},{"x":1567382880000,"y":12.7},{"x":1567382940000,"y":12.72},{"x":1567383000000,"y":12.73},{"x":1567383060000,"y":12.73},{"x":1567383120000,"y":12.73},{"x":1567383180000,"y":12.75},{"x":1567383240000,"y":12.73},{"x":1567383300000,"y":12.71},{"x":1567383360000,"y":12.71},{"x":1567383420000,"y":12.72},{"x":1567383480000,"y":12.74},{"x":1567383540000,"y":12.73},{"x":1567383600000,"y":12.73},{"x":1567383660000,"y":12.73},{"x":1567383720000,"y":12.73},{"x":1567383780000,"y":12.74},{"x":1567383840000,"y":12.73},{"x":1567383900000,"y":12.73},{"x":1567383960000,"y":12.73},{"x":1567384020000,"y":12.73},{"x":1567384080000,"y":12.74},{"x":1567384140000,"y":12.73},{"x":1567384200000,"y":12.72},{"x":1567384260000,"y":12.71},{"x":1567384320000,"y":12.71},{"x":1567384380000,"y":12.74},{"x":1567384440000,"y":12.73},{"x":1567384500000,"y":12.73},{"x":1567384560000,"y":12.73},{"x":1567384620000,"y":12.73},{"x":1567384680000,"y":12.74},{"x":1567384740000,"y":12.73},{"x":1567384800000,"y":12.74},{"x":1567384860000,"y":12.74},{"x":1567384920000,"y":12.74},{"x":1567384980000,"y":12.75},{"x":1567385040000,"y":12.73},{"x":1567385100000,"y":12.74},{"x":1567385160000,"y":12.74},{"x":1567385220000,"y":12.74},{"x":1567385280000,"y":12.75},{"x":1567385340000,"y":12.74},{"x":1567385400000,"y":12.74},{"x":1567385460000,"y":12.74},{"x":1567385520000,"y":12.74},{"x":1567385580000,"y":12.74},{"x":1567385640000,"y":12.75},{"x":1567385700000,"y":12.72},{"x":1567385760000,"y":12.71},{"x":1567385820000,"y":12.71},{"x":1567385880000,"y":12.71},{"x":1567385940000,"y":12.74},{"x":1567386000000,"y":12.74},{"x":1567386060000,"y":12.75},{"x":1567386120000,"y":12.74},{"x":1567386180000,"y":12.74},{"x":1567386240000,"y":12.75},{"x":1567386300000,"y":12.73},{"x":1567386360000,"y":12.73},{"x":1567386420000,"y":12.73},{"x":1567386480000,"y":12.73},{"x":1567386540000,"y":12.74},{"x":1567386600000,"y":12.75},{"x":1567386660000,"y":12.75},{"x":1567386720000,"y":12.75},{"x":1567386780000,"y":12.74},{"x":1567386840000,"y":12.75},{"x":1567386900000,"y":12.74},{"x":1567386960000,"y":12.73},{"x":1567387020000,"y":12.71},{"x":1567387080000,"y":12.71},{"x":1567387140000,"y":12.72},{"x":1567387200000,"y":12.72},{"x":1567387260000,"y":12.72},{"x":1567387320000,"y":12.73},{"x":1567387380000,"y":12.73},{"x":1567387440000,"y":12.74},{"x":1567387500000,"y":12.68},{"x":1567387560000,"y":12.68},{"x":1567387620000,"y":12.68},{"x":1567387680000,"y":12.68},{"x":1567387740000,"y":12.68},{"x":1567387800000,"y":12.73},{"x":1567387860000,"y":12.72},{"x":1567387920000,"y":12.72},{"x":1567387980000,"y":12.72},{"x":1567388040000,"y":12.72},{"x":1567388100000,"y":12.72},{"x":1567388160000,"y":12.71},{"x":1567388220000,"y":12.71},{"x":1567388280000,"y":12.71},{"x":1567388340000,"y":12.73},{"x":1567388400000,"y":12.73},{"x":1567388460000,"y":12.72},{"x":1567388520000,"y":12.72},{"x":1567388580000,"y":12.72},{"x":1567388640000,"y":12.72},{"x":1567388700000,"y":12.73},{"x":1567388760000,"y":12.72},{"x":1567388820000,"y":12.72},{"x":1567388880000,"y":12.72},{"x":1567388940000,"y":12.72},{"x":1567389000000,"y":12.74},{"x":1567389060000,"y":12.72},{"x":1567389120000,"y":12.72},{"x":1567389180000,"y":12.72},{"x":1567389240000,"y":12.72},{"x":1567389300000,"y":12.72},{"x":1567389360000,"y":12.73},{"x":1567389420000,"y":12.73},{"x":1567389480000,"y":12.73},{"x":1567389540000,"y":12.72},{"x":1567389600000,"y":12.71},{"x":1567389660000,"y":12.72},{"x":1567389720000,"y":12.72},{"x":1567389780000,"y":12.72},{"x":1567389840000,"y":12.72},{"x":1567389900000,"y":12.73},{"x":1567389960000,"y":12.73},{"x":1567390020000,"y":12.72},{"x":1567390080000,"y":12.73},{"x":1567390140000,"y":12.73},{"x":1567390200000,"y":12.71},{"x":1567390260000,"y":12.73},{"x":1567390320000,"y":12.72},{"x":1567390380000,"y":12.72},{"x":1567390440000,"y":12.72},{"x":1567390500000,"y":12.73},{"x":1567390560000,"y":12.74},{"x":1567390620000,"y":12.73},{"x":1567390680000,"y":12.73},{"x":1567390740000,"y":12.73},{"x":1567390800000,"y":12.72},{"x":1567390860000,"y":12.73},{"x":1567390920000,"y":12.71},{"x":1567390980000,"y":12.71},{"x":1567391040000,"y":12.71},{"x":1567391100000,"y":12.69},{"x":1567391160000,"y":12.72},{"x":1567391220000,"y":12.73},{"x":1567391280000,"y":12.73},{"x":1567391340000,"y":12.73},{"x":1567391400000,"y":12.74},{"x":1567391460000,"y":12.74},{"x":1567391520000,"y":12.72},{"x":1567391580000,"y":12.72},{"x":1567391640000,"y":12.72},{"x":1567391700000,"y":12.74},{"x":1567391760000,"y":12.74},{"x":1567391820000,"y":12.74},{"x":1567391880000,"y":12.74},{"x":1567391940000,"y":12.73},{"x":1567392000000,"y":12.73},{"x":1567392060000,"y":12.74},{"x":1567392120000,"y":12.73},{"x":1567392180000,"y":12.73},{"x":1567392240000,"y":12.73},{"x":1567392300000,"y":12.73},{"x":1567392360000,"y":12.73},{"x":1567392420000,"y":12.75},{"x":1567392480000,"y":12.73},{"x":1567392540000,"y":12.74},{"x":1567392600000,"y":12.73},{"x":1567392660000,"y":12.73},{"x":1567392720000,"y":12.75},{"x":1567392780000,"y":12.74},{"x":1567392840000,"y":12.73},{"x":1567392900000,"y":12.74},{"x":1567392960000,"y":12.74},{"x":1567393020000,"y":12.74},{"x":1567393080000,"y":12.73},{"x":1567393140000,"y":12.73},{"x":1567393200000,"y":12.74},{"x":1567393260000,"y":12.74},{"x":1567393320000,"y":12.74},{"x":1567393380000,"y":12.73},{"x":1567393440000,"y":12.73},{"x":1567393500000,"y":12.73},{"x":1567393560000,"y":12.73},{"x":1567393620000,"y":12.74},{"x":1567393680000,"y":12.74},{"x":1567393740000,"y":12.73},{"x":1567393800000,"y":12.74},{"x":1567393860000,"y":12.74},{"x":1567393920000,"y":12.76},{"x":1567393980000,"y":12.74},{"x":1567394040000,"y":12.74},{"x":1567394100000,"y":12.74},{"x":1567394160000,"y":12.73},{"x":1567394220000,"y":12.73},{"x":1567394280000,"y":12.74},{"x":1567394340000,"y":12.73},{"x":1567394400000,"y":12.73},{"x":1567394460000,"y":12.73},{"x":1567394520000,"y":12.73},{"x":1567394580000,"y":12.74},{"x":1567394640000,"y":12.73},{"x":1567394700000,"y":12.72},{"x":1567394760000,"y":12.72},{"x":1567394820000,"y":12.72},{"x":1567394880000,"y":12.75},{"x":1567394940000,"y":12.74},{"x":1567395000000,"y":12.73},{"x":1567395060000,"y":12.73},{"x":1567395120000,"y":12.73},{"x":1567395180000,"y":12.73},{"x":1567395240000,"y":12.71},{"x":1567395300000,"y":12.75},{"x":1567395360000,"y":12.75},{"x":1567395420000,"y":12.75},{"x":1567395480000,"y":12.73},{"x":1567395540000,"y":12.74},{"x":1567395600000,"y":12.73},{"x":1567395660000,"y":12.73},{"x":1567395720000,"y":12.73},{"x":1567395780000,"y":12.74},{"x":1567395840000,"y":12.73},{"x":1567395900000,"y":12.74},{"x":1567395960000,"y":12.74},{"x":1567396020000,"y":12.72},{"x":1567396080000,"y":12.73},{"x":1567396140000,"y":12.73},{"x":1567396200000,"y":12.72},{"x":1567396260000,"y":12.72},{"x":1567396320000,"y":12.72},{"x":1567396380000,"y":12.73},{"x":1567396440000,"y":12.7},{"x":1567396500000,"y":12.72},{"x":1567396560000,"y":12.72},{"x":1567396620000,"y":12.72},{"x":1567396680000,"y":12.72},{"x":1567396740000,"y":12.74},{"x":1567396800000,"y":12.71},{"x":1567396860000,"y":12.71},{"x":1567396920000,"y":12.7},{"x":1567396980000,"y":12.7},{"x":1567397040000,"y":12.72},{"x":1567397100000,"y":12.71},{"x":1567397160000,"y":12.71},{"x":1567397220000,"y":12.71},{"x":1567397280000,"y":12.71},{"x":1567397340000,"y":12.74},{"x":1567397400000,"y":12.73},{"x":1567397460000,"y":12.72},{"x":1567397520000,"y":12.72},{"x":1567397580000,"y":12.72},{"x":1567397640000,"y":12.73},{"x":1567397700000,"y":12.71},{"x":1567397760000,"y":12.71},{"x":1567397820000,"y":12.71},{"x":1567397880000,"y":12.71},{"x":1567397940000,"y":12.73},{"x":1567398000000,"y":12.72},{"x":1567398060000,"y":12.72},{"x":1567398120000,"y":12.72},{"x":1567398180000,"y":12.72},{"x":1567398240000,"y":12.73},{"x":1567398300000,"y":12.73},{"x":1567398360000,"y":12.73},{"x":1567398420000,"y":12.73},{"x":1567398480000,"y":12.73},{"x":1567398540000,"y":12.74},{"x":1567398600000,"y":12.7},{"x":1567398660000,"y":12.7},{"x":1567398720000,"y":12.7},{"x":1567398780000,"y":12.69},{"x":1567398840000,"y":12.71},{"x":1567398900000,"y":12.72},{"x":1567398960000,"y":12.72},{"x":1567399020000,"y":12.72},{"x":1567399080000,"y":12.72},{"x":1567399140000,"y":12.73},{"x":1567399200000,"y":12.74},{"x":1567399260000,"y":12.73},{"x":1567399320000,"y":12.73},{"x":1567399380000,"y":12.73},{"x":1567399440000,"y":12.73},{"x":1567399500000,"y":12.72},{"x":1567399560000,"y":12.7},{"x":1567399620000,"y":12.7},{"x":1567399680000,"y":12.7},{"x":1567399740000,"y":12.7},{"x":1567399800000,"y":12.74},{"x":1567399860000,"y":12.73},{"x":1567399920000,"y":12.73},{"x":1567399980000,"y":12.73},{"x":1567400040000,"y":12.73},{"x":1567400100000,"y":12.74},{"x":1567400160000,"y":12.73},{"x":1567400220000,"y":12.73},{"x":1567400280000,"y":12.73},{"x":1567400340000,"y":12.73},{"x":1567400400000,"y":13.09},{"x":1567400460000,"y":12.79},{"x":1567400520000,"y":12.79},{"x":1567400580000,"y":12.79},{"x":1567400640000,"y":12.79},{"x":1567400700000,"y":12.77},{"x":1567400760000,"y":12.74},{"x":1567400820000,"y":12.74},{"x":1567400880000,"y":12.74},{"x":1567400940000,"y":12.71},{"x":1567401000000,"y":12.7},{"x":1567401060000,"y":12.72},{"x":1567401120000,"y":12.72},{"x":1567401180000,"y":12.72},{"x":1567401240000,"y":12.72},{"x":1567401300000,"y":12.75},{"x":1567401360000,"y":12.73},{"x":1567401420000,"y":12.73},{"x":1567401480000,"y":12.73},{"x":1567401540000,"y":12.73},{"x":1567401600000,"y":12.73},{"x":1567401660000,"y":12.74},{"x":1567401720000,"y":12.73},{"x":1567401780000,"y":12.73},{"x":1567401840000,"y":12.74},{"x":1567401900000,"y":12.74},{"x":1567401960000,"y":12.75},{"x":1567402020000,"y":12.74},{"x":1567402080000,"y":12.74},{"x":1567402140000,"y":12.74},{"x":1567402200000,"y":12.74},{"x":1567402260000,"y":12.74},{"x":1567402320000,"y":12.73},{"x":1567402380000,"y":12.72},{"x":1567402440000,"y":12.72},{"x":1567402500000,"y":12.74},{"x":1567402560000,"y":12.75},{"x":1567402620000,"y":12.74},{"x":1567402680000,"y":12.74},{"x":1567402740000,"y":12.73},{"x":1567402800000,"y":12.74},{"x":1567402860000,"y":12.75},{"x":1567402920000,"y":12.71},{"x":1567402980000,"y":12.71},{"x":1567403040000,"y":12.71},{"x":1567403100000,"y":12.73},{"x":1567403160000,"y":12.74},{"x":1567403220000,"y":12.74},{"x":1567403280000,"y":12.74},{"x":1567403340000,"y":12.74},{"x":1567403400000,"y":12.74},{"x":1567403460000,"y":12.74},{"x":1567403520000,"y":12.74},{"x":1567403580000,"y":12.73},{"x":1567403640000,"y":12.73},{"x":1567403700000,"y":12.74},{"x":1567403760000,"y":12.74},{"x":1567403820000,"y":12.75},{"x":1567403880000,"y":12.74},{"x":1567403940000,"y":12.74},{"x":1567404000000,"y":12.74},{"x":1567404060000,"y":12.74},{"x":1567404120000,"y":12.75},{"x":1567404180000,"y":12.74},{"x":1567404240000,"y":12.74},{"x":1567404300000,"y":12.72},{"x":1567404360000,"y":12.72},{"x":1567404420000,"y":12.74},{"x":1567404480000,"y":12.74},{"x":1567404540000,"y":12.74},{"x":1567404600000,"y":12.74},{"x":1567404660000,"y":12.74},{"x":1567404720000,"y":12.75},{"x":1567404780000,"y":12.72},{"x":1567404840000,"y":12.72},{"x":1567404900000,"y":12.74},{"x":1567404960000,"y":12.72},{"x":1567405020000,"y":12.73},{"x":1567405080000,"y":12.73},{"x":1567405140000,"y":12.73},{"x":1567405200000,"y":12.73},{"x":1567405260000,"y":12.73},{"x":1567405320000,"y":12.75},{"x":1567405380000,"y":12.72},{"x":1567405440000,"y":12.72},{"x":1567405500000,"y":12.72},{"x":1567405560000,"y":12.72},{"x":1567405620000,"y":12.72},{"x":1567405680000,"y":12.73},{"x":1567405740000,"y":12.72},{"x":1567405800000,"y":12.72},{"x":1567405860000,"y":12.72},{"x":1567405920000,"y":12.71},{"x":1567405980000,"y":12.73},{"x":1567406040000,"y":12.72},{"x":1567406100000,"y":12.72},{"x":1567406160000,"y":12.72},{"x":1567406220000,"y":12.72},{"x":1567406280000,"y":12.74},{"x":1567406340000,"y":12.73},{"x":1567406400000,"y":12.72},{"x":1567406460000,"y":12.72},{"x":1567406520000,"y":12.72},{"x":1567406580000,"y":12.73},{"x":1567406640000,"y":12.73},{"x":1567406700000,"y":12.71},{"x":1567406760000,"y":12.71},{"x":1567406820000,"y":12.71},{"x":1567406880000,"y":12.73},{"x":1567406940000,"y":12.71},{"x":1567407000000,"y":12.73},{"x":1567407060000,"y":12.73},{"x":1567407120000,"y":12.73},{"x":1567407180000,"y":12.74},{"x":1567407240000,"y":12.73},{"x":1567407300000,"y":12.72},{"x":1567407360000,"y":12.72},{"x":1567407420000,"y":12.72},{"x":1567407480000,"y":12.74},{"x":1567407540000,"y":12.73},{"x":1567407600000,"y":12.73},{"x":1567407660000,"y":12.73},{"x":1567407720000,"y":12.73},{"x":1567407780000,"y":12.74},{"x":1567407840000,"y":12.72},{"x":1567407900000,"y":12.7},{"x":1567407960000,"y":12.7},{"x":1567408020000,"y":12.7},{"x":1567408080000,"y":12.7},{"x":1567408140000,"y":12.71},{"x":1567408200000,"y":12.71},{"x":1567408260000,"y":12.71},{"x":1567408320000,"y":12.71},{"x":1567408380000,"y":12.71},{"x":1567408440000,"y":12.74},{"x":1567408500000,"y":12.7},{"x":1567408560000,"y":12.7},{"x":1567408620000,"y":12.7},{"x":1567408680000,"y":12.7},{"x":1567408740000,"y":12.71},{"x":1567408800000,"y":12.73},{"x":1567408860000,"y":12.73},{"x":1567408920000,"y":12.73},{"x":1567408980000,"y":12.73},{"x":1567409040000,"y":12.74},{"x":1567409100000,"y":12.71},{"x":1567409160000,"y":12.71},{"x":1567409220000,"y":12.71},{"x":1567409280000,"y":12.71},{"x":1567409340000,"y":12.74},{"x":1567409400000,"y":12.73},{"x":1567409460000,"y":12.73},{"x":1567409520000,"y":12.73},{"x":1567409580000,"y":12.73},{"x":1567409640000,"y":12.74},{"x":1567409700000,"y":12.69},{"x":1567409760000,"y":12.69},{"x":1567409820000,"y":12.69},{"x":1567409880000,"y":12.69},{"x":1567409940000,"y":12.73},{"x":1567410000000,"y":12.74},{"x":1567410060000,"y":12.74},{"x":1567410120000,"y":12.74},{"x":1567410180000,"y":12.74},{"x":1567410240000,"y":12.75},{"x":1567410300000,"y":12.74},{"x":1567410360000,"y":12.74},{"x":1567410420000,"y":12.74},{"x":1567410480000,"y":12.74},{"x":1567410540000,"y":12.73},{"x":1567410600000,"y":12.74},{"x":1567410660000,"y":12.73},{"x":1567410720000,"y":12.73},{"x":1567410780000,"y":12.73},{"x":1567410840000,"y":12.73},{"x":1567410900000,"y":12.75},{"x":1567410960000,"y":12.74},{"x":1567411020000,"y":12.74},{"x":1567411080000,"y":12.74},{"x":1567411140000,"y":12.74},{"x":1567411200000,"y":12.74},{"x":1567411260000,"y":12.73},{"x":1567411320000,"y":12.73},{"x":1567411380000,"y":12.73},{"x":1567411440000,"y":12.73},{"x":1567411500000,"y":12.75},{"x":1567411560000,"y":12.74},{"x":1567411620000,"y":12.74},{"x":1567411680000,"y":12.74},{"x":1567411740000,"y":12.74},{"x":1567411800000,"y":12.75},{"x":1567411860000,"y":12.73},{"x":1567411920000,"y":12.73},{"x":1567411980000,"y":12.73},{"x":1567412040000,"y":12.73},{"x":1567412100000,"y":12.73},{"x":1567412160000,"y":12.74},{"x":1567412220000,"y":12.74},{"x":1567412280000,"y":12.74},{"x":1567412340000,"y":12.74},{"x":1567412400000,"y":12.75},{"x":1567412460000,"y":12.74},{"x":1567412520000,"y":12.74},{"x":1567412580000,"y":12.74},{"x":1567412640000,"y":12.74},{"x":1567412700000,"y":12.74},{"x":1567412760000,"y":12.75},{"x":1567412820000,"y":12.74},{"x":1567412880000,"y":12.74},{"x":1567412940000,"y":12.74},{"x":1567413000000,"y":12.75},{"x":1567413060000,"y":12.73},{"x":1567413120000,"y":12.73},{"x":1567413180000,"y":12.73},{"x":1567413240000,"y":12.73},{"x":1567413300000,"y":12.73},{"x":1567413360000,"y":12.75},{"x":1567413420000,"y":12.74},{"x":1567413480000,"y":12.74},{"x":1567413540000,"y":12.74},{"x":1567413600000,"y":12.74},{"x":1567413660000,"y":12.75},{"x":1567413720000,"y":12.74},{"x":1567413780000,"y":12.74},{"x":1567413840000,"y":12.74},{"x":1567413900000,"y":12.71},{"x":1567413960000,"y":12.71},{"x":1567414020000,"y":12.7},{"x":1567414080000,"y":12.7},{"x":1567414140000,"y":12.7},{"x":1567414200000,"y":12.71},{"x":1567414260000,"y":12.73},{"x":1567414320000,"y":12.72},{"x":1567414380000,"y":12.72},{"x":1567414440000,"y":12.72},{"x":1567414500000,"y":12.72},{"x":1567414560000,"y":12.73},{"x":1567414620000,"y":12.73},{"x":1567414680000,"y":12.73},{"x":1567414740000,"y":12.73},{"x":1567414800000,"y":12.72},{"x":1567414860000,"y":12.74},{"x":1567414920000,"y":12.73},{"x":1567414980000,"y":12.73},{"x":1567415040000,"y":12.73},{"x":1567415100000,"y":12.72},{"x":1567415160000,"y":12.72},{"x":1567415220000,"y":12.74},{"x":1567415280000,"y":12.73},{"x":1567415340000,"y":12.73},{"x":1567415400000,"y":12.73},{"x":1567415460000,"y":12.73},{"x":1567415520000,"y":12.74},{"x":1567415580000,"y":12.73},{"x":1567415640000,"y":12.73},{"x":1567415700000,"y":12.72},{"x":1567415760000,"y":12.72},{"x":1567415820000,"y":12.74},{"x":1567415880000,"y":12.73},{"x":1567415940000,"y":12.98},{"x":1567416000000,"y":12.77},{"x":1567416060000,"y":12.76},{"x":1567416120000,"y":12.79},{"x":1567416180000,"y":12.79},{"x":1567416240000,"y":12.75},{"x":1567416300000,"y":12.71},{"x":1567416360000,"y":12.71},{"x":1567416420000,"y":12.73},{"x":1567416480000,"y":12.73},{"x":1567416540000,"y":12.73},{"x":1567416600000,"y":12.72},{"x":1567416660000,"y":12.72},{"x":1567416720000,"y":12.73},{"x":1567416780000,"y":12.72},{"x":1567416840000,"y":12.72},{"x":1567416900000,"y":12.73},{"x":1567416960000,"y":12.73},{"x":1567417020000,"y":12.74},{"x":1567417080000,"y":12.73},{"x":1567417140000,"y":12.74},{"x":1567417200000,"y":12.73},{"x":1567417260000,"y":12.73},{"x":1567417320000,"y":12.74},{"x":1567417380000,"y":12.73},{"x":1567417440000,"y":12.73},{"x":1567417500000,"y":12.73},{"x":1567417560000,"y":12.72},{"x":1567417620000,"y":12.73},{"x":1567417680000,"y":12.74},{"x":1567417740000,"y":12.74},{"x":1567417800000,"y":12.72},{"x":1567417860000,"y":12.72},{"x":1567417920000,"y":12.72},{"x":1567417980000,"y":12.76},{"x":1567418040000,"y":12.74},{"x":1567418100000,"y":12.74},{"x":1567418160000,"y":12.74},{"x":1567418220000,"y":12.74},{"x":1567418280000,"y":12.75},{"x":1567418340000,"y":12.74},{"x":1567418400000,"y":12.71},{"x":1567418460000,"y":12.71},{"x":1567418520000,"y":12.71},{"x":1567418580000,"y":12.74},{"x":1567418640000,"y":12.73},{"x":1567418700000,"y":12.73},{"x":1567418760000,"y":12.73},{"x":1567418820000,"y":12.73},{"x":1567418880000,"y":12.74},{"x":1567418940000,"y":12.74},{"x":1567419000000,"y":12.72},{"x":1567419060000,"y":12.72},{"x":1567419120000,"y":12.72},{"x":1567419180000,"y":12.74},{"x":1567419240000,"y":12.73},{"x":1567419300000,"y":12.72},{"x":1567419360000,"y":12.72},{"x":1567419420000,"y":12.72},{"x":1567419480000,"y":12.73},{"x":1567419540000,"y":12.73},{"x":1567419600000,"y":12.71},{"x":1567419660000,"y":12.72},{"x":1567419720000,"y":12.72},{"x":1567419780000,"y":12.73},{"x":1567419840000,"y":12.74},{"x":1567419900000,"y":12.71},{"x":1567419960000,"y":12.71},{"x":1567420020000,"y":12.71},{"x":1567420080000,"y":12.71},{"x":1567420140000,"y":12.76},{"x":1567420200000,"y":12.74},{"x":1567420260000,"y":12.74},{"x":1567420320000,"y":12.74},{"x":1567420380000,"y":12.74},{"x":1567420440000,"y":12.76},{"x":1567420500000,"y":12.74},{"x":1567420560000,"y":12.74},{"x":1567420620000,"y":12.74},{"x":1567420680000,"y":12.74},{"x":1567420740000,"y":12.74},{"x":1567420800000,"y":12.74},{"x":1567420860000,"y":12.74},{"x":1567420920000,"y":12.74},{"x":1567420980000,"y":12.74},{"x":1567421040000,"y":12.75},{"x":1567421100000,"y":12.75},{"x":1567421160000,"y":12.75},{"x":1567421220000,"y":12.75},{"x":1567421280000,"y":12.75},{"x":1567421340000,"y":12.75},{"x":1567421400000,"y":12.74},{"x":1567421460000,"y":12.74},{"x":1567421520000,"y":12.74},{"x":1567421580000,"y":12.74},{"x":1567421640000,"y":12.76},{"x":1567421700000,"y":12.74},{"x":1567421760000,"y":12.74},{"x":1567421820000,"y":12.74},{"x":1567421880000,"y":12.74},{"x":1567421940000,"y":12.75},{"x":1567422000000,"y":12.75},{"x":1567422060000,"y":12.75},{"x":1567422120000,"y":12.75},{"x":1567422180000,"y":12.75},{"x":1567422240000,"y":12.75},{"x":1567422300000,"y":12.98},{"x":1567422360000,"y":12.8},{"x":1567422420000,"y":12.8},{"x":1567422480000,"y":12.8},{"x":1567422540000,"y":12.81},{"x":1567422600000,"y":12.77},{"x":1567422660000,"y":12.75},{"x":1567422720000,"y":12.75},{"x":1567422780000,"y":12.75},{"x":1567422840000,"y":12.75},{"x":1567422900000,"y":12.74},{"x":1567422960000,"y":12.74},{"x":1567423020000,"y":12.72},{"x":1567423080000,"y":12.72},{"x":1567423140000,"y":12.72},{"x":1567423200000,"y":12.74},{"x":1567423260000,"y":12.73},{"x":1567423320000,"y":12.73},{"x":1567423380000,"y":12.73},{"x":1567423440000,"y":12.73},{"x":1567423500000,"y":12.78},{"x":1567423560000,"y":12.73},{"x":1567423620000,"y":12.73},{"x":1567423680000,"y":12.73},{"x":1567423740000,"y":12.73},{"x":1567423800000,"y":12.74},{"x":1567423860000,"y":12.73},{"x":1567423920000,"y":12.73},{"x":1567423980000,"y":13.15},{"x":1567424040000,"y":12.8},{"x":1567424100000,"y":12.78},{"x":1567424160000,"y":12.8},{"x":1567424220000,"y":12.8},{"x":1567424280000,"y":12.79},{"x":1567424340000,"y":12.72},{"x":1567424400000,"y":12.74},{"x":1567424460000,"y":12.74},{"x":1567424520000,"y":12.74},{"x":1567424580000,"y":12.74},{"x":1567424640000,"y":12.73},{"x":1567424700000,"y":12.71},{"x":1567424760000,"y":12.75},{"x":1567424820000,"y":12.73},{"x":1567424880000,"y":12.73},{"x":1567424940000,"y":12.73},{"x":1567425000000,"y":12.74},{"x":1567425060000,"y":12.73},{"x":1567425120000,"y":12.72},{"x":1567425180000,"y":12.72},{"x":1567425240000,"y":12.72},{"x":1567425300000,"y":12.73},{"x":1567425360000,"y":12.74},{"x":1567425420000,"y":12.73},{"x":1567425480000,"y":12.73},{"x":1567425540000,"y":12.73},{"x":1567425600000,"y":12.74},{"x":1567425660000,"y":12.76},{"x":1567425720000,"y":12.74},{"x":1567425780000,"y":12.74},{"x":1567425840000,"y":12.74},{"x":1567425900000,"y":12.74},{"x":1567425960000,"y":12.74},{"x":1567426020000,"y":12.72},{"x":1567426080000,"y":12.72},{"x":1567426140000,"y":12.73},{"x":1567426200000,"y":12.73},{"x":1567426260000,"y":12.75},{"x":1567426320000,"y":12.75},{"x":1567426380000,"y":12.75},{"x":1567426440000,"y":12.75},{"x":1567426500000,"y":12.72},{"x":1567426560000,"y":12.73},{"x":1567426620000,"y":12.74},{"x":1567426680000,"y":12.74},{"x":1567426740000,"y":12.74},{"x":1567426800000,"y":12.72},{"x":1567426860000,"y":12.73},{"x":1567426920000,"y":12.73},{"x":1567426980000,"y":12.73},{"x":1567427040000,"y":12.73},{"x":1567427100000,"y":12.72},{"x":1567427160000,"y":12.72},{"x":1567427220000,"y":12.74},{"x":1567427280000,"y":12.73},{"x":1567427340000,"y":12.73},{"x":1567427400000,"y":12.73},{"x":1567427460000,"y":12.73},{"x":1567427520000,"y":12.75},{"x":1567427580000,"y":12.73},{"x":1567427640000,"y":12.74},{"x":1567427700000,"y":12.75},{"x":1567427760000,"y":12.75},{"x":1567427820000,"y":12.75},{"x":1567427880000,"y":12.74},{"x":1567427940000,"y":12.73},{"x":1567428000000,"y":12.73},{"x":1567428060000,"y":12.73},{"x":1567428120000,"y":12.75},{"x":1567428180000,"y":12.73},{"x":1567428240000,"y":12.73},{"x":1567428300000,"y":12.72},{"x":1567428360000,"y":12.72},{"x":1567428420000,"y":12.73},{"x":1567428480000,"y":12.71},{"x":1567428540000,"y":12.71},{"x":1567428600000,"y":12.72},{"x":1567428660000,"y":12.72},{"x":1567428720000,"y":12.73},{"x":1567428780000,"y":12.74},{"x":1567428840000,"y":12.74},{"x":1567428900000,"y":12.71},{"x":1567428960000,"y":12.72},{"x":1567429020000,"y":12.73},{"x":1567429080000,"y":12.75},{"x":1567429140000,"y":12.75},{"x":1567429200000,"y":12.72},{"x":1567429260000,"y":12.72},{"x":1567429320000,"y":12.72},{"x":1567429380000,"y":12.73},{"x":1567429440000,"y":12.73},{"x":1567429500000,"y":12.75},{"x":1567429560000,"y":12.75},{"x":1567429620000,"y":12.75},{"x":1567429680000,"y":12.76},{"x":1567429740000,"y":12.75},{"x":1567429800000,"y":12.73},{"x":1567429860000,"y":12.73},{"x":1567429920000,"y":12.73},{"x":1567429980000,"y":12.75},{"x":1567430040000,"y":12.74},{"x":1567430100000,"y":12.74},{"x":1567430160000,"y":12.74},{"x":1567430220000,"y":12.75},{"x":1567430280000,"y":12.76},{"x":1567430340000,"y":12.75},{"x":1567430400000,"y":12.75},{"x":1567430460000,"y":12.75},{"x":1567430520000,"y":12.75},{"x":1567430580000,"y":12.76},{"x":1567430640000,"y":12.75},{"x":1567430700000,"y":12.73},{"x":1567430760000,"y":12.73},{"x":1567430820000,"y":12.73},{"x":1567430880000,"y":12.74},{"x":1567430940000,"y":12.75},{"x":1567431000000,"y":12.72},{"x":1567431060000,"y":12.72},{"x":1567431120000,"y":12.72},{"x":1567431180000,"y":12.74},{"x":1567431240000,"y":12.76},{"x":1567431300000,"y":12.75},{"x":1567431360000,"y":12.75},{"x":1567431420000,"y":12.75},{"x":1567431480000,"y":12.75},{"x":1567431540000,"y":12.74},{"x":1567431600000,"y":12.75},{"x":1567431660000,"y":12.75},{"x":1567431720000,"y":12.75},{"x":1567431780000,"y":12.75},{"x":1567431840000,"y":12.76},{"x":1567431900000,"y":12.76},{"x":1567431960000,"y":12.76},{"x":1567432020000,"y":12.75},{"x":1567432080000,"y":12.73},{"x":1567432140000,"y":12.74},{"x":1567432200000,"y":12.73},{"x":1567432260000,"y":12.73},{"x":1567432320000,"y":12.73},{"x":1567432380000,"y":12.73},{"x":1567432440000,"y":12.74},{"x":1567432500000,"y":12.71},{"x":1567432560000,"y":12.7},{"x":1567432620000,"y":12.7},{"x":1567432680000,"y":12.7},{"x":1567432740000,"y":12.74},{"x":1567432800000,"y":12.73},{"x":1567432860000,"y":12.73},{"x":1567432920000,"y":12.73},{"x":1567432980000,"y":12.73},{"x":1567433040000,"y":12.74},{"x":1567433100000,"y":12.71},{"x":1567433160000,"y":12.71},{"x":1567433220000,"y":12.71},{"x":1567433280000,"y":12.71},{"x":1567433340000,"y":12.75},{"x":1567433400000,"y":12.73},{"x":1567433460000,"y":12.73},{"x":1567433520000,"y":12.73},{"x":1567433580000,"y":12.73},{"x":1567433640000,"y":12.74},{"x":1567433700000,"y":12.74},{"x":1567433760000,"y":12.74},{"x":1567433820000,"y":12.73},{"x":1567433880000,"y":12.73},{"x":1567433940000,"y":12.74},{"x":1567434000000,"y":12.74},{"x":1567434060000,"y":12.74},{"x":1567434120000,"y":12.74},{"x":1567434180000,"y":12.74},{"x":1567434240000,"y":12.74},{"x":1567434300000,"y":12.75},{"x":1567434360000,"y":12.74},{"x":1567434420000,"y":12.74},{"x":1567434480000,"y":12.74},{"x":1567434540000,"y":12.74},{"x":1567434600000,"y":12.75},{"x":1567434660000,"y":12.74},{"x":1567434720000,"y":12.74},{"x":1567434780000,"y":12.73},{"x":1567434840000,"y":12.72},{"x":1567434900000,"y":12.76},{"x":1567434960000,"y":12.74},{"x":1567435020000,"y":12.74},{"x":1567435080000,"y":12.74},{"x":1567435140000,"y":12.74},{"x":1567435200000,"y":12.75},{"x":1567435260000,"y":12.73},{"x":1567435320000,"y":12.73},{"x":1567435380000,"y":12.73},{"x":1567435440000,"y":12.73},{"x":1567435500000,"y":12.74},{"x":1567435560000,"y":12.73},{"x":1567435620000,"y":12.72},{"x":1567435680000,"y":12.72},{"x":1567435740000,"y":12.72},{"x":1567435800000,"y":12.74},{"x":1567435860000,"y":12.74},{"x":1567435920000,"y":12.74},{"x":1567435980000,"y":12.74},{"x":1567436040000,"y":12.74},{"x":1567436100000,"y":12.75},{"x":1567436160000,"y":12.71},{"x":1567436220000,"y":12.71},{"x":1567436280000,"y":12.71},{"x":1567436340000,"y":12.71},{"x":1567436400000,"y":12.72},{"x":1567436460000,"y":12.74},{"x":1567436520000,"y":12.74},{"x":1567436580000,"y":12.74},{"x":1567436640000,"y":12.75},{"x":1567436700000,"y":12.73},{"x":1567436760000,"y":12.74},{"x":1567436820000,"y":12.74},{"x":1567436880000,"y":12.74},{"x":1567436940000,"y":12.74},{"x":1567437000000,"y":12.71},{"x":1567437060000,"y":12.75},{"x":1567437120000,"y":12.74},{"x":1567437180000,"y":12.74},{"x":1567437240000,"y":12.74},{"x":1567437300000,"y":12.73},{"x":1567437360000,"y":12.75},{"x":1567437420000,"y":12.73},{"x":1567437480000,"y":12.73},{"x":1567437540000,"y":12.73},{"x":1567437600000,"y":12.74},{"x":1567437660000,"y":12.75},{"x":1567437720000,"y":12.74},{"x":1567437780000,"y":12.74},{"x":1567437840000,"y":12.74},{"x":1567437900000,"y":12.72},{"x":1567437960000,"y":12.74},{"x":1567438020000,"y":12.74},{"x":1567438080000,"y":12.74},{"x":1567438140000,"y":12.74},{"x":1567438200000,"y":12.75},{"x":1567438260000,"y":12.76},{"x":1567438320000,"y":12.74},{"x":1567438380000,"y":12.74},{"x":1567438440000,"y":12.74},{"x":1567438500000,"y":12.73},{"x":1567438560000,"y":12.74},{"x":1567438620000,"y":12.74},{"x":1567438680000,"y":12.74},{"x":1567438740000,"y":12.73},{"x":1567438800000,"y":12.75},{"x":1567438860000,"y":12.76},{"x":1567438920000,"y":12.75},{"x":1567438980000,"y":12.75},{"x":1567439040000,"y":12.75},{"x":1567439100000,"y":12.73},{"x":1567439160000,"y":12.74},{"x":1567439220000,"y":12.75},{"x":1567439280000,"y":12.75},{"x":1567439340000,"y":12.75},{"x":1567439400000,"y":12.74},{"x":1567439460000,"y":12.75},{"x":1567439520000,"y":12.77},{"x":1567439580000,"y":12.75},{"x":1567439640000,"y":12.75},{"x":1567439700000,"y":12.74},{"x":1567439760000,"y":12.74},{"x":1567439820000,"y":12.76},{"x":1567439880000,"y":12.75},{"x":1567439940000,"y":12.75},{"x":1567440000000,"y":12.73},{"x":1567440060000,"y":12.73},{"x":1567440120000,"y":12.75},{"x":1567440180000,"y":12.75},{"x":1567440240000,"y":12.74},{"x":1567440300000,"y":12.73},{"x":1567440360000,"y":12.73},{"x":1567440420000,"y":12.74},{"x":1567440480000,"y":12.74},{"x":1567440540000,"y":12.74},{"x":1567440600000,"y":12.73},{"x":1567440660000,"y":12.72},{"x":1567440720000,"y":12.75},{"x":1567440780000,"y":12.75},{"x":1567440840000,"y":12.75},{"x":1567440900000,"y":12.74},{"x":1567440960000,"y":12.73},{"x":1567441020000,"y":12.73},{"x":1567441080000,"y":12.75},{"x":1567441140000,"y":12.74},{"x":1567441200000,"y":12.73},{"x":1567441260000,"y":12.73},{"x":1567441320000,"y":12.73},{"x":1567441380000,"y":12.74},{"x":1567441440000,"y":12.73},{"x":1567441500000,"y":12.73},{"x":1567441560000,"y":12.73},{"x":1567441620000,"y":12.73},{"x":1567441680000,"y":12.74},{"x":1567441740000,"y":12.72},{"x":1567441800000,"y":12.73},{"x":1567441860000,"y":12.73},{"x":1567441920000,"y":12.73},{"x":1567441980000,"y":12.74},{"x":1567442040000,"y":12.73},{"x":1567442100000,"y":12.71},{"x":1567442160000,"y":12.7},{"x":1567442220000,"y":12.71},{"x":1567442280000,"y":12.72},{"x":1567442340000,"y":12.73},{"x":1567442400000,"y":12.73},{"x":1567442460000,"y":12.73},{"x":1567442520000,"y":12.72},{"x":1567442580000,"y":12.74},{"x":1567442640000,"y":12.74},{"x":1567442700000,"y":12.73},{"x":1567442760000,"y":12.73},{"x":1567442820000,"y":12.73},{"x":1567442880000,"y":12.74},{"x":1567442940000,"y":12.74},{"x":1567443000000,"y":12.75},{"x":1567443060000,"y":12.74},{"x":1567443120000,"y":12.74},{"x":1567443180000,"y":12.76},{"x":1567443240000,"y":12.74},{"x":1567443300000,"y":12.72},{"x":1567443360000,"y":12.72},{"x":1567443420000,"y":12.72},{"x":1567443480000,"y":12.72},{"x":1567443540000,"y":12.72},{"x":1567443600000,"y":12.74},{"x":1567443660000,"y":12.74},{"x":1567443720000,"y":12.74},{"x":1567443780000,"y":12.74},{"x":1567443840000,"y":12.75},{"x":1567443900000,"y":12.71},{"x":1567443960000,"y":12.71},{"x":1567444020000,"y":12.71},{"x":1567444080000,"y":12.71},{"x":1567444140000,"y":13.06},{"x":1567444200000,"y":12.78},{"x":1567444260000,"y":12.78},{"x":1567444320000,"y":12.78},{"x":1567444380000,"y":12.78},{"x":1567444440000,"y":12.76},{"x":1567444500000,"y":12.74},{"x":1567444560000,"y":12.74},{"x":1567444620000,"y":12.75},{"x":1567444680000,"y":12.75},{"x":1567444740000,"y":12.75},{"x":1567444800000,"y":12.73},{"x":1567444860000,"y":12.73},{"x":1567444920000,"y":12.73},{"x":1567444980000,"y":12.73},{"x":1567445040000,"y":12.74},{"x":1567445100000,"y":12.74},{"x":1567445160000,"y":12.74},{"x":1567445220000,"y":12.74},{"x":1567445280000,"y":12.74},{"x":1567445340000,"y":12.75},{"x":1567445400000,"y":12.73},{"x":1567445460000,"y":12.73},{"x":1567445520000,"y":12.73},{"x":1567445580000,"y":12.73},{"x":1567445640000,"y":12.74},{"x":1567445700000,"y":12.74},{"x":1567445760000,"y":12.74},{"x":1567445820000,"y":12.74},{"x":1567445880000,"y":12.74},{"x":1567445940000,"y":12.75},{"x":1567446000000,"y":12.76},{"x":1567446060000,"y":12.75},{"x":1567446120000,"y":12.75},{"x":1567446180000,"y":12.74},{"x":1567446240000,"y":12.74},{"x":1567446300000,"y":12.75},{"x":1567446360000,"y":12.74},{"x":1567446420000,"y":12.74},{"x":1567446480000,"y":12.74},{"x":1567446540000,"y":12.74},{"x":1567446600000,"y":12.75},{"x":1567446660000,"y":12.75},{"x":1567446720000,"y":12.75},{"x":1567446780000,"y":12.75},{"x":1567446840000,"y":12.75},{"x":1567446900000,"y":12.75},{"x":1567446960000,"y":12.74},{"x":1567447020000,"y":12.74},{"x":1567447080000,"y":12.74},{"x":1567447140000,"y":12.74},{"x":1567447200000,"y":12.75},{"x":1567447260000,"y":12.74},{"x":1567447320000,"y":12.74},{"x":1567447380000,"y":12.74},{"x":1567447440000,"y":12.74},{"x":1567447500000,"y":12.76},{"x":1567447560000,"y":12.75},{"x":1567447620000,"y":12.75},{"x":1567447680000,"y":12.75},{"x":1567447740000,"y":12.75},{"x":1567447800000,"y":12.76},{"x":1567447860000,"y":12.75},{"x":1567447920000,"y":12.75},{"x":1567447980000,"y":12.75},{"x":1567448040000,"y":12.75},{"x":1567448100000,"y":12.77},{"x":1567448160000,"y":12.75},{"x":1567448220000,"y":12.74},{"x":1567448280000,"y":12.74},{"x":1567448340000,"y":12.74},{"x":1567448400000,"y":12.73},{"x":1567448460000,"y":12.76},{"x":1567448520000,"y":12.75},{"x":1567448580000,"y":13.08},{"x":1567448640000,"y":13.43},{"x":1567448700000,"y":13.26},{"x":1567448760000,"y":13.28},{"x":1567448820000,"y":13.29},{"x":1567448880000,"y":13.28},{"x":1567448940000,"y":13.28},{"x":1567449000000,"y":13.23},{"x":1567449060000,"y":13.22},{"x":1567449120000,"y":13.21},{"x":1567449180000,"y":13.21},{"x":1567449240000,"y":13.21},{"x":1567449300000,"y":13.22},{"x":1567449360000,"y":13.23},{"x":1567449420000,"y":13.22},{"x":1567449480000,"y":13.23},{"x":1567449540000,"y":13.23},{"x":1567449600000,"y":13.23},{"x":1567449660000,"y":13.24},{"x":1567449720000,"y":13.22},{"x":1567449780000,"y":13.22},{"x":1567449840000,"y":13.22},{"x":1567449900000,"y":13.22},{"x":1567449960000,"y":13.23},{"x":1567450020000,"y":13.21},{"x":1567450080000,"y":13.21},{"x":1567450140000,"y":13.2},{"x":1567450200000,"y":13.2},{"x":1567450260000,"y":13.21},{"x":1567450320000,"y":13.2},{"x":1567450380000,"y":13.2},{"x":1567450440000,"y":13.2},{"x":1567450500000,"y":13.21},{"x":1567450560000,"y":13.22},{"x":1567450620000,"y":13.2},{"x":1567450680000,"y":13.2},{"x":1567450740000,"y":13.2},{"x":1567450800000,"y":13.2},{"x":1567450860000,"y":13.2},{"x":1567450920000,"y":13.21},{"x":1567450980000,"y":13.2},{"x":1567451040000,"y":13.2},{"x":1567451100000,"y":13.2},{"x":1567451160000,"y":13.2},{"x":1567451220000,"y":13.22},{"x":1567451280000,"y":13.21},{"x":1567451340000,"y":13.21},{"x":1567451400000,"y":13.21},{"x":1567451460000,"y":13.21},{"x":1567451520000,"y":13.21},{"x":1567451580000,"y":13.2},{"x":1567451640000,"y":13.2},{"x":1567451700000,"y":13.2},{"x":1567451760000,"y":13.2},{"x":1567451820000,"y":13.22},{"x":1567451880000,"y":13.2},{"x":1567451940000,"y":13.2},{"x":1567452000000,"y":13.21},{"x":1567452060000,"y":13.21},{"x":1567452120000,"y":13.22},{"x":1567452180000,"y":13.21},{"x":1567452240000,"y":13.21},{"x":1567452300000,"y":13.21},{"x":1567452360000,"y":13.21},{"x":1567452420000,"y":13.22},{"x":1567452480000,"y":13.21},{"x":1567452540000,"y":13.21},{"x":1567452600000,"y":13.21},{"x":1567452660000,"y":13.21},{"x":1567452720000,"y":13.21},{"x":1567452780000,"y":13.2},{"x":1567452840000,"y":13.2},{"x":1567452900000,"y":13.2},{"x":1567452960000,"y":13.2},{"x":1567453020000,"y":13.21},{"x":1567453080000,"y":13.2},{"x":1567453140000,"y":13.21},{"x":1567453200000,"y":13.21},{"x":1567453260000,"y":13.21},{"x":1567453320000,"y":13.21},{"x":1567453380000,"y":13.23},{"x":1567453440000,"y":13.22},{"x":1567453500000,"y":13.21},{"x":1567453560000,"y":13.22},{"x":1567453620000,"y":13.21},{"x":1567453680000,"y":13.22},{"x":1567453740000,"y":13.21},{"x":1567453800000,"y":13.22},{"x":1567453860000,"y":13.22},{"x":1567453920000,"y":13.22},{"x":1567453980000,"y":13.23},{"x":1567454040000,"y":13.21},{"x":1567454100000,"y":13.22},{"x":1567454160000,"y":13.22},{"x":1567454220000,"y":13.22},{"x":1567454280000,"y":13.23},{"x":1567454340000,"y":13.21},{"x":1567454400000,"y":13.19},{"x":1567454460000,"y":13.19},{"x":1567454520000,"y":13.19},{"x":1567454580000,"y":13.2},{"x":1567454640000,"y":13.21},{"x":1567454700000,"y":13.22},{"x":1567454760000,"y":13.22},{"x":1567454820000,"y":13.22},{"x":1567454880000,"y":13.22},{"x":1567454940000,"y":13.22},{"x":1567455000000,"y":13.22},{"x":1567455060000,"y":13.22},{"x":1567455120000,"y":13.22},{"x":1567455180000,"y":13.23},{"x":1567455240000,"y":13.21},{"x":1567455300000,"y":13.22},{"x":1567455360000,"y":13.22},{"x":1567455420000,"y":13.22},{"x":1567455480000,"y":13.22},{"x":1567455540000,"y":13.21},{"x":1567455600000,"y":13.2},{"x":1567455660000,"y":13.2},{"x":1567455720000,"y":13.2},{"x":1567455780000,"y":13.2},{"x":1567455840000,"y":13.23},{"x":1567455900000,"y":13.23},{"x":1567455960000,"y":13.22},{"x":1567456020000,"y":13.22},{"x":1567456080000,"y":13.23},{"x":1567456140000,"y":13.24},{"x":1567456200000,"y":13.2},{"x":1567456260000,"y":13.2},{"x":1567456320000,"y":13.2},{"x":1567456380000,"y":13.14},{"x":1567456440000,"y":12.87},{"x":1567456500000,"y":12.85},{"x":1567456560000,"y":12.85},{"x":1567456620000,"y":12.85},{"x":1567456680000,"y":12.85},{"x":1567456740000,"y":12.86},{"x":1567456800000,"y":12.84},{"x":1567456860000,"y":12.84},{"x":1567456920000,"y":12.84},{"x":1567456980000,"y":12.84},{"x":1567457040000,"y":12.85},{"x":1567457100000,"y":12.84},{"x":1567457160000,"y":12.84},{"x":1567457220000,"y":12.84},{"x":1567457280000,"y":12.84},{"x":1567457340000,"y":12.85},{"x":1567457400000,"y":12.85},{"x":1567457460000,"y":12.85},{"x":1567457520000,"y":12.85},{"x":1567457580000,"y":12.85},{"x":1567457640000,"y":12.87},{"x":1567457700000,"y":12.85},{"x":1567457760000,"y":12.85},{"x":1567457820000,"y":12.85},{"x":1567457880000,"y":12.85},{"x":1567457940000,"y":12.85},{"x":1567458000000,"y":12.86},{"x":1567458060000,"y":12.85},{"x":1567458120000,"y":12.85},{"x":1567458180000,"y":12.85},{"x":1567458240000,"y":12.85},{"x":1567458300000,"y":12.85},{"x":1567458360000,"y":12.84},{"x":1567458420000,"y":12.84},{"x":1567458480000,"y":12.85},{"x":1567458540000,"y":12.82},{"x":1567458600000,"y":12.86},{"x":1567458660000,"y":12.85},{"x":1567458720000,"y":12.86},{"x":1567458780000,"y":12.86},{"x":1567458840000,"y":12.86},{"x":1567458900000,"y":12.87},{"x":1567458960000,"y":12.85},{"x":1567459020000,"y":12.85},{"x":1567459080000,"y":12.85},{"x":1567459140000,"y":12.85},{"x":1567459200000,"y":12.85},{"x":1567459260000,"y":12.82},{"x":1567459320000,"y":12.82},{"x":1567459380000,"y":12.83},{"x":1567459440000,"y":12.83},{"x":1567459500000,"y":12.83},{"x":1567459560000,"y":12.82},{"x":1567459620000,"y":12.82},{"x":1567459680000,"y":12.82},{"x":1567459740000,"y":12.82},{"x":1567459800000,"y":12.84},{"x":1567459860000,"y":12.83},{"x":1567459920000,"y":12.83},{"x":1567459980000,"y":12.82},{"x":1567460040000,"y":12.82},{"x":1567460100000,"y":12.84},{"x":1567460160000,"y":12.83},{"x":1567460220000,"y":12.83},{"x":1567460280000,"y":12.83},{"x":1567460340000,"y":12.82},{"x":1567460400000,"y":12.83},{"x":1567460460000,"y":12.84},{"x":1567460520000,"y":12.83},{"x":1567460580000,"y":12.83},{"x":1567460640000,"y":12.83},{"x":1567460700000,"y":12.83},{"x":1567460760000,"y":12.84},{"x":1567460820000,"y":12.83},{"x":1567460880000,"y":12.83},{"x":1567460940000,"y":12.83},{"x":1567461000000,"y":12.83},{"x":1567461060000,"y":12.84},{"x":1567461120000,"y":12.83},{"x":1567461180000,"y":12.83},{"x":1567461240000,"y":12.83},{"x":1567461300000,"y":12.83},{"x":1567461360000,"y":12.85},{"x":1567461420000,"y":12.84},{"x":1567461480000,"y":12.84},{"x":1567461540000,"y":12.84},{"x":1567461600000,"y":12.81},{"x":1567461660000,"y":12.82},{"x":1567461720000,"y":12.82},{"x":1567461780000,"y":12.82},{"x":1567461840000,"y":12.81},{"x":1567461900000,"y":12.82},{"x":1567461960000,"y":12.83},{"x":1567462020000,"y":12.83},{"x":1567462080000,"y":12.82},{"x":1567462140000,"y":12.84},{"x":1567462200000,"y":12.84},{"x":1567462260000,"y":12.84},{"x":1567462320000,"y":12.83},{"x":1567462380000,"y":12.83},{"x":1567462440000,"y":12.83},{"x":1567462500000,"y":12.83},{"x":1567462560000,"y":12.84},{"x":1567462620000,"y":12.83},{"x":1567462680000,"y":12.84},{"x":1567462740000,"y":12.84},{"x":1567462800000,"y":12.83},{"x":1567462860000,"y":12.96},{"x":1567462920000,"y":13.11},{"x":1567462980000,"y":13.11},{"x":1567463040000,"y":13.11},{"x":1567463100000,"y":13.1},{"x":1567463160000,"y":13.1},{"x":1567463220000,"y":13.11},{"x":1567463280000,"y":13.11},{"x":1567463340000,"y":13.11},{"x":1567463400000,"y":13.06},{"x":1567463460000,"y":13.06},{"x":1567463520000,"y":13.1},{"x":1567463580000,"y":13.1},{"x":1567463640000,"y":13.1},{"x":1567463700000,"y":13.12},{"x":1567463760000,"y":13.12},{"x":1567463820000,"y":13.13},{"x":1567463880000,"y":13.11},{"x":1567463940000,"y":13.12},{"x":1567464000000,"y":13.12},{"x":1567464060000,"y":13.12},{"x":1567464120000,"y":13.13},{"x":1567464180000,"y":13.11},{"x":1567464240000,"y":13.11},{"x":1567464300000,"y":13.11},{"x":1567464360000,"y":13.11},{"x":1567464420000,"y":13.12},{"x":1567464480000,"y":13.11},{"x":1567464540000,"y":13.11},{"x":1567464600000,"y":13.11},{"x":1567464660000,"y":13.11},{"x":1567464720000,"y":13.12},{"x":1567464780000,"y":13.11},{"x":1567464840000,"y":13.11},{"x":1567464900000,"y":13.11},{"x":1567464960000,"y":13.11},{"x":1567465020000,"y":13.12},{"x":1567465080000,"y":13.12},{"x":1567465140000,"y":13.11},{"x":1567465200000,"y":13.11},{"x":1567465260000,"y":13.11},{"x":1567465320000,"y":13.11},{"x":1567465380000,"y":13.13},{"x":1567465440000,"y":13.12},{"x":1567465500000,"y":13.1},{"x":1567465560000,"y":13.1},{"x":1567465620000,"y":13.1},{"x":1567465680000,"y":13.11},{"x":1567465740000,"y":13.11},{"x":1567465800000,"y":13.11},{"x":1567465860000,"y":13.11},{"x":1567465920000,"y":13.11},{"x":1567465980000,"y":13.44},{"x":1567466040000,"y":13.16},{"x":1567466100000,"y":13.17},{"x":1567466160000,"y":13.17},{"x":1567466220000,"y":13.17},{"x":1567466280000,"y":13.14},{"x":1567466340000,"y":13.1},{"x":1567466400000,"y":13.08},{"x":1567466460000,"y":13.08},{"x":1567466520000,"y":13.08},{"x":1567466580000,"y":13.11},{"x":1567466640000,"y":13.12},{"x":1567466700000,"y":13.11},{"x":1567466760000,"y":13.11},{"x":1567466820000,"y":13.11},{"x":1567466880000,"y":13.12},{"x":1567466940000,"y":13.11},{"x":1567467000000,"y":13.11},{"x":1567467060000,"y":13.11},{"x":1567467120000,"y":13.11},{"x":1567467180000,"y":13.1},{"x":1567467240000,"y":13.12},{"x":1567467300000,"y":13.11},{"x":1567467360000,"y":13.11},{"x":1567467420000,"y":13.11},{"x":1567467480000,"y":13.11},{"x":1567467540000,"y":13.13},{"x":1567467600000,"y":13.13},{"x":1567467660000,"y":13.13},{"x":1567467720000,"y":13.12},{"x":1567467780000,"y":13.12},{"x":1567467840000,"y":13.14},{"x":1567467900000,"y":13.12},{"x":1567467960000,"y":13.12},{"x":1567468020000,"y":13.12},{"x":1567468080000,"y":13.12},{"x":1567468140000,"y":13.13},{"x":1567468200000,"y":13.12},{"x":1567468260000,"y":13.12},{"x":1567468320000,"y":13.12},{"x":1567468380000,"y":13.13},{"x":1567468440000,"y":13.14},{"x":1567468500000,"y":13.13},{"x":1567468560000,"y":13.12},{"x":1567468620000,"y":13.1},{"x":1567468680000,"y":13.1},{"x":1567468740000,"y":13.11},{"x":1567468800000,"y":13.07},{"x":1567468860000,"y":13.07},{"x":1567468920000,"y":13.07},{"x":1567468980000,"y":13.07},{"x":1567469040000,"y":13.09},{"x":1567469100000,"y":13.09},{"x":1567469160000,"y":13.09},{"x":1567469220000,"y":13.09},{"x":1567469280000,"y":13.09},{"x":1567469340000,"y":13.12},{"x":1567469400000,"y":13.11},{"x":1567469460000,"y":13.1},{"x":1567469520000,"y":13.11},{"x":1567469580000,"y":13.11},{"x":1567469640000,"y":13.11},{"x":1567469700000,"y":13.08},{"x":1567469760000,"y":13.07},{"x":1567469820000,"y":13.07},{"x":1567469880000,"y":13.07},{"x":1567469940000,"y":13.07},{"x":1567470000000,"y":13.11},{"x":1567470060000,"y":13.11},{"x":1567470120000,"y":13.11},{"x":1567470180000,"y":13.11},{"x":1567470240000,"y":13.1},{"x":1567470300000,"y":13.11},{"x":1567470360000,"y":13.11},{"x":1567470420000,"y":13.11},{"x":1567470480000,"y":13.11},{"x":1567470540000,"y":13.11},{"x":1567470600000,"y":13.12},{"x":1567470660000,"y":13.12},{"x":1567470720000,"y":13.12},{"x":1567470780000,"y":13.11},{"x":1567470840000,"y":13.11},{"x":1567470900000,"y":13.11},{"x":1567470960000,"y":13.11},{"x":1567471020000,"y":13.1},{"x":1567471080000,"y":13.1},{"x":1567471140000,"y":13.11},{"x":1567471200000,"y":13.12},{"x":1567471260000,"y":13.11},{"x":1567471320000,"y":13.11},{"x":1567471380000,"y":13.11},{"x":1567471440000,"y":13.12},{"x":1567471500000,"y":13.12},{"x":1567471560000,"y":13.11},{"x":1567471620000,"y":13.11},{"x":1567471680000,"y":13.11},{"x":1567471740000,"y":13.11},{"x":1567471800000,"y":13.13},{"x":1567471860000,"y":13.11},{"x":1567471920000,"y":13.11},{"x":1567471980000,"y":13.11},{"x":1567472040000,"y":13.1},{"x":1567472100000,"y":13.11},{"x":1567472160000,"y":13.13},{"x":1567472220000,"y":13.12},{"x":1567472280000,"y":13.12},{"x":1567472340000,"y":13.12},{"x":1567472400000,"y":13.11},{"x":1567472460000,"y":13.12},{"x":1567472520000,"y":13.11},{"x":1567472580000,"y":13.11},{"x":1567472640000,"y":13.11},{"x":1567472700000,"y":13.11},{"x":1567472760000,"y":13.13},{"x":1567472820000,"y":13.12},{"x":1567472880000,"y":13.12},{"x":1567472940000,"y":13.12},{"x":1567473000000,"y":13.1},{"x":1567473060000,"y":13.12},{"x":1567473120000,"y":13.12},{"x":1567473180000,"y":13.12},{"x":1567473240000,"y":13.12},{"x":1567473300000,"y":13.11},{"x":1567473360000,"y":13.12},{"x":1567473420000,"y":13.12},{"x":1567473480000,"y":13.12},{"x":1567473540000,"y":13.12},{"x":1567473600000,"y":13.12},{"x":1567473660000,"y":13.12},{"x":1567473720000,"y":13.1},{"x":1567473780000,"y":13.11},{"x":1567473840000,"y":13.11},{"x":1567473900000,"y":13.09},{"x":1567473960000,"y":13.11},{"x":1567474020000,"y":13.09},{"x":1567474080000,"y":13.09},{"x":1567474140000,"y":13.09},{"x":1567474200000,"y":13.12},{"x":1567474260000,"y":13.13},{"x":1567474320000,"y":13.09},{"x":1567474380000,"y":13.09},{"x":1567474440000,"y":13.1},{"x":1567474500000,"y":13.09},{"x":1567474560000,"y":13.11},{"x":1567474620000,"y":13.12},{"x":1567474680000,"y":13.12},{"x":1567474740000,"y":13.11},{"x":1567474800000,"y":13.12},{"x":1567474860000,"y":13.12},{"x":1567474920000,"y":13.14},{"x":1567474980000,"y":13.13},{"x":1567475040000,"y":13.13},{"x":1567475100000,"y":13.1},{"x":1567475160000,"y":13.09},{"x":1567475220000,"y":13.13},{"x":1567475280000,"y":13.12},{"x":1567475340000,"y":13.13},{"x":1567475400000,"y":13.11},{"x":1567475460000,"y":13.11},{"x":1567475520000,"y":13.12},{"x":1567475580000,"y":13.12},{"x":1567475640000,"y":13.12},{"x":1567475700000,"y":13.12},{"x":1567475760000,"y":13.13},{"x":1567475820000,"y":13.12},{"x":1567475880000,"y":13.11},{"x":1567475940000,"y":13.11},{"x":1567476000000,"y":13.12},{"x":1567476060000,"y":13.12},{"x":1567476120000,"y":13.13},{"x":1567476180000,"y":13.1},{"x":1567476240000,"y":13.1},{"x":1567476300000,"y":13.12},{"x":1567476360000,"y":13.12},{"x":1567476420000,"y":13.13},{"x":1567476480000,"y":13.11},{"x":1567476540000,"y":13.12},{"x":1567476600000,"y":13.11},{"x":1567476660000,"y":13.11},{"x":1567476720000,"y":13.12},{"x":1567476780000,"y":13.12},{"x":1567476840000,"y":13.13},{"x":1567476900000,"y":13.13},{"x":1567476960000,"y":13.12},{"x":1567477020000,"y":13.13},{"x":1567477080000,"y":13.12},{"x":1567477140000,"y":13.12},{"x":1567477200000,"y":13.12},{"x":1567477260000,"y":13.12},{"x":1567477320000,"y":13.12},{"x":1567477380000,"y":13.13},{"x":1567477440000,"y":13.12},{"x":1567477500000,"y":13.1},{"x":1567477560000,"y":13.1},{"x":1567477620000,"y":13.1},{"x":1567477680000,"y":13.12},{"x":1567477740000,"y":13.11},{"x":1567477800000,"y":13.09},{"x":1567477860000,"y":13.09},{"x":1567477920000,"y":13.09},{"x":1567477980000,"y":13.1},{"x":1567478040000,"y":13.09},{"x":1567478100000,"y":13.1},{"x":1567478160000,"y":13.09},{"x":1567478220000,"y":13.09},{"x":1567478280000,"y":13.12},{"x":1567478340000,"y":13.11},{"x":1567478400000,"y":13.12},{"x":1567478460000,"y":13.12},{"x":1567478520000,"y":13.12},{"x":1567478580000,"y":13.13},{"x":1567478640000,"y":13.11},{"x":1567478700000,"y":13.11},{"x":1567478760000,"y":13.1},{"x":1567478820000,"y":13.11},{"x":1567478880000,"y":13.12},{"x":1567478940000,"y":13.11},{"x":1567479000000,"y":13.08},{"x":1567479060000,"y":13.08},{"x":1567479120000,"y":13.08},{"x":1567479180000,"y":13.09},{"x":1567479240000,"y":13.1},{"x":1567479300000,"y":13.11},{"x":1567479360000,"y":13.11},{"x":1567479420000,"y":13.11},{"x":1567479480000,"y":13.11},{"x":1567479540000,"y":13.12},{"x":1567479600000,"y":13.11},{"x":1567479660000,"y":13.1},{"x":1567479720000,"y":13.11},{"x":1567479780000,"y":13.11},{"x":1567479840000,"y":13.1},{"x":1567479900000,"y":13.09},{"x":1567479960000,"y":13.09},{"x":1567480020000,"y":13.09},{"x":1567480080000,"y":13.09},{"x":1567480140000,"y":13.12},{"x":1567480200000,"y":13.12},{"x":1567480260000,"y":13.12},{"x":1567480320000,"y":13.12},{"x":1567480380000,"y":13.12},{"x":1567480440000,"y":13.12},{"x":1567480500000,"y":13.11},{"x":1567480560000,"y":13.11},{"x":1567480620000,"y":13.11},{"x":1567480680000,"y":13.11},{"x":1567480740000,"y":13.13},{"x":1567480800000,"y":13.1},{"x":1567480860000,"y":13.11},{"x":1567480920000,"y":13.11},{"x":1567480980000,"y":13.11},{"x":1567481040000,"y":13.11},{"x":1567481100000,"y":13.12},{"x":1567481160000,"y":13.12},{"x":1567481220000,"y":13.12},{"x":1567481280000,"y":13.12},{"x":1567481340000,"y":13.13},{"x":1567481400000,"y":13.11},{"x":1567481460000,"y":13.11},{"x":1567481520000,"y":13.11},{"x":1567481580000,"y":13.11},{"x":1567481640000,"y":13.12},{"x":1567481700000,"y":13.12},{"x":1567481760000,"y":13.12},{"x":1567481820000,"y":13.12},{"x":1567481880000,"y":13.12},{"x":1567481940000,"y":13.12},{"x":1567482000000,"y":13.14},{"x":1567482060000,"y":13.12},{"x":1567482120000,"y":13.12},{"x":1567482180000,"y":13.12},{"x":1567482240000,"y":13.12},{"x":1567482300000,"y":13.13},{"x":1567482360000,"y":13.11},{"x":1567482420000,"y":13.11},{"x":1567482480000,"y":13.11},{"x":1567482540000,"y":13.11},{"x":1567482600000,"y":13.13},{"x":1567482660000,"y":13.12},{"x":1567482720000,"y":13.12},{"x":1567482780000,"y":13.12},{"x":1567482840000,"y":13.13},{"x":1567482900000,"y":13.13},{"x":1567482960000,"y":13.12},{"x":1567483020000,"y":13.12},{"x":1567483080000,"y":13.12},{"x":1567483140000,"y":13.12},{"x":1567483200000,"y":13.13},{"x":1567483260000,"y":13.12},{"x":1567483320000,"y":13.12},{"x":1567483380000,"y":13.12},{"x":1567483440000,"y":13.12},{"x":1567483500000,"y":13.12},{"x":1567483560000,"y":13.12},{"x":1567483620000,"y":13.12},{"x":1567483680000,"y":13.12},{"x":1567483740000,"y":13.13},{"x":1567483800000,"y":13.12},{"x":1567483860000,"y":13.12},{"x":1567483920000,"y":13.12},{"x":1567483980000,"y":13.12},{"x":1567484040000,"y":13.12},{"x":1567484100000,"y":13.12},{"x":1567484160000,"y":13.13},{"x":1567484220000,"y":13.12},{"x":1567484280000,"y":13.12},{"x":1567484340000,"y":13.12},{"x":1567484400000,"y":13.1},{"x":1567484460000,"y":13.11},{"x":1567484520000,"y":13.1},{"x":1567484580000,"y":13.1},{"x":1567484640000,"y":13.1},{"x":1567484700000,"y":13.12},{"x":1567484760000,"y":13.14},{"x":1567484820000,"y":13.12},{"x":1567484880000,"y":13.12},{"x":1567484940000,"y":13.12},{"x":1567485000000,"y":13.13},{"x":1567485060000,"y":13.13},{"x":1567485120000,"y":13.12},{"x":1567485180000,"y":13.12},{"x":1567485240000,"y":13.11},{"x":1567485300000,"y":13.11},{"x":1567485360000,"y":13.12},{"x":1567485420000,"y":13.12},{"x":1567485480000,"y":13.11},{"x":1567485540000,"y":13.12},{"x":1567485600000,"y":13.12},{"x":1567485660000,"y":13.14},{"x":1567485720000,"y":13.13},{"x":1567485780000,"y":13.13},{"x":1567485840000,"y":13.13},{"x":1567485900000,"y":13.12},{"x":1567485960000,"y":13.13},{"x":1567486020000,"y":13.11},{"x":1567486080000,"y":13.11},{"x":1567486140000,"y":13.1},{"x":1567486200000,"y":13.1},{"x":1567486260000,"y":13.11},{"x":1567486320000,"y":13.13},{"x":1567486380000,"y":13.13},{"x":1567486440000,"y":13.13},{"x":1567486500000,"y":13.1},{"x":1567486560000,"y":13.1},{"x":1567486620000,"y":13.12},{"x":1567486680000,"y":13.12},{"x":1567486740000,"y":13.12},{"x":1567486800000,"y":13.11},{"x":1567486860000,"y":13.11},{"x":1567486920000,"y":13.12},{"x":1567486980000,"y":13.11},{"x":1567487040000,"y":13.11},{"x":1567487100000,"y":13.11},{"x":1567487160000,"y":13.11},{"x":1567487220000,"y":13.13},{"x":1567487280000,"y":13.11},{"x":1567487340000,"y":13.11},{"x":1567487400000,"y":13.11},{"x":1567487460000,"y":13.11},{"x":1567487520000,"y":13.11},{"x":1567487580000,"y":13.11},{"x":1567487640000,"y":13.11},{"x":1567487700000,"y":13.11},{"x":1567487760000,"y":13.11},{"x":1567487820000,"y":13.46},{"x":1567487880000,"y":13.17},{"x":1567487940000,"y":13.17},{"x":1567488000000,"y":13.17},{"x":1567488060000,"y":13.17},{"x":1567488120000,"y":13.16},{"x":1567488180000,"y":13.11},{"x":1567488240000,"y":13.11},{"x":1567488300000,"y":13.09},{"x":1567488360000,"y":13.09},{"x":1567488420000,"y":13.11},{"x":1567488480000,"y":13.11},{"x":1567488540000,"y":13.11},{"x":1567488600000,"y":13.09},{"x":1567488660000,"y":13.09},{"x":1567488720000,"y":13.1},{"x":1567488780000,"y":13.12},{"x":1567488840000,"y":13.11},{"x":1567488900000,"y":13.12},{"x":1567488960000,"y":13.12},{"x":1567489020000,"y":13.12},{"x":1567489080000,"y":13.11},{"x":1567489140000,"y":13.12},{"x":1567489200000,"y":13.11},{"x":1567489260000,"y":13.11},{"x":1567489320000,"y":13.11},{"x":1567489380000,"y":13.13},{"x":1567489440000,"y":13.12},{"x":1567489500000,"y":13.12},{"x":1567489560000,"y":13.12},{"x":1567489620000,"y":13.12},{"x":1567489680000,"y":13.13},{"x":1567489740000,"y":13.11},{"x":1567489800000,"y":13.12},{"x":1567489860000,"y":13.12},{"x":1567489920000,"y":13.13},{"x":1567489980000,"y":13.11},{"x":1567490040000,"y":13.08},{"x":1567490100000,"y":13.11},{"x":1567490160000,"y":13.11},{"x":1567490220000,"y":13.1},{"x":1567490280000,"y":13.1},{"x":1567490340000,"y":13.08},{"x":1567490400000,"y":13.12},{"x":1567490460000,"y":13.12},{"x":1567490520000,"y":13.12},{"x":1567490580000,"y":13.13},{"x":1567490640000,"y":13.12},{"x":1567490700000,"y":13.12},{"x":1567490760000,"y":13.12},{"x":1567490820000,"y":13.12},{"x":1567490880000,"y":13.13},{"x":1567490940000,"y":13.12},{"x":1567491000000,"y":13.09},{"x":1567491060000,"y":13.09},{"x":1567491120000,"y":13.09},{"x":1567491180000,"y":13.11},{"x":1567491240000,"y":13.12},{"x":1567491300000,"y":13.12},{"x":1567491360000,"y":13.12},{"x":1567491420000,"y":13.12},{"x":1567491480000,"y":13.12},{"x":1567491540000,"y":13.13},{"x":1567491600000,"y":13.13},{"x":1567491660000,"y":13.13},{"x":1567491720000,"y":13.12},{"x":1567491780000,"y":13.12},{"x":1567491840000,"y":13.13},{"x":1567491900000,"y":13.09},{"x":1567491960000,"y":13.09},{"x":1567492020000,"y":13.09},{"x":1567492080000,"y":13.09},{"x":1567492140000,"y":13.11},{"x":1567492200000,"y":13.12},{"x":1567492260000,"y":13.12},{"x":1567492320000,"y":13.12},{"x":1567492380000,"y":13.12},{"x":1567492440000,"y":13.12},{"x":1567492500000,"y":13.13},{"x":1567492560000,"y":13.12},{"x":1567492620000,"y":13.12},{"x":1567492680000,"y":13.12},{"x":1567492740000,"y":13.13},{"x":1567492800000,"y":13.1},{"x":1567492860000,"y":13.1},{"x":1567492920000,"y":13.09},{"x":1567492980000,"y":13.09},{"x":1567493040000,"y":13.11},{"x":1567493100000,"y":13.13},{"x":1567493160000,"y":13.13},{"x":1567493220000,"y":13.13},{"x":1567493280000,"y":13.13},{"x":1567493340000,"y":13.14},{"x":1567493400000,"y":13.13},{"x":1567493460000,"y":13.13},{"x":1567493520000,"y":13.13},{"x":1567493580000,"y":13.13},{"x":1567493640000,"y":13.14},{"x":1567493700000,"y":13.13},{"x":1567493760000,"y":13.12},{"x":1567493820000,"y":13.12},{"x":1567493880000,"y":13.12},{"x":1567493940000,"y":13.12},{"x":1567494000000,"y":13.1},{"x":1567494060000,"y":13.09},{"x":1567494120000,"y":13.09},{"x":1567494180000,"y":13.09},{"x":1567494240000,"y":13.09},{"x":1567494300000,"y":13.14},{"x":1567494360000,"y":13.13},{"x":1567494420000,"y":13.13},{"x":1567494480000,"y":13.13},{"x":1567494540000,"y":13.13},{"x":1567494600000,"y":13.14},{"x":1567494660000,"y":13.12},{"x":1567494720000,"y":13.12},{"x":1567494780000,"y":13.12},{"x":1567494840000,"y":13.12},{"x":1567494900000,"y":13.14},{"x":1567494960000,"y":13.12},{"x":1567495020000,"y":13.12},{"x":1567495080000,"y":13.12},{"x":1567495140000,"y":13.12},{"x":1567495200000,"y":13.14},{"x":1567495260000,"y":13.11},{"x":1567495320000,"y":13.11},{"x":1567495380000,"y":13.11},{"x":1567495440000,"y":13.11},{"x":1567495500000,"y":13.13},{"x":1567495560000,"y":13.13},{"x":1567495620000,"y":13.12},{"x":1567495680000,"y":13.12},{"x":1567495740000,"y":13.12},{"x":1567495800000,"y":13.14},{"x":1567495860000,"y":13.13},{"x":1567495920000,"y":13.13},{"x":1567495980000,"y":13.13},{"x":1567496040000,"y":13.12},{"x":1567496100000,"y":13.14},{"x":1567496160000,"y":13.14},{"x":1567496220000,"y":13.13},{"x":1567496280000,"y":13.12},{"x":1567496340000,"y":13.11},{"x":1567496400000,"y":13.11},{"x":1567496460000,"y":13.1},{"x":1567496520000,"y":13.08},{"x":1567496580000,"y":13.08},{"x":1567496640000,"y":13.08},{"x":1567496700000,"y":13.11},{"x":1567496760000,"y":13.12},{"x":1567496820000,"y":13.11},{"x":1567496880000,"y":13.11},{"x":1567496940000,"y":13.11},{"x":1567497000000,"y":13.1},{"x":1567497060000,"y":13.12},{"x":1567497120000,"y":13.11},{"x":1567497180000,"y":13.11},{"x":1567497240000,"y":13.11},{"x":1567497300000,"y":13.09},{"x":1567497360000,"y":13.11},{"x":1567497420000,"y":13.1},{"x":1567497480000,"y":13.11},{"x":1567497540000,"y":13.11},{"x":1567497600000,"y":13.11},{"x":1567497660000,"y":13.12},{"x":1567497720000,"y":13.12},{"x":1567497780000,"y":13.11},{"x":1567497840000,"y":13.12},{"x":1567497900000,"y":13.11},{"x":1567497960000,"y":13.13},{"x":1567498020000,"y":13.11},{"x":1567498080000,"y":13.11},{"x":1567498140000,"y":13.11},{"x":1567498200000,"y":13.11},{"x":1567498260000,"y":13.12},{"x":1567498320000,"y":13.12},{"x":1567498380000,"y":13.12},{"x":1567498440000,"y":13.12},{"x":1567498500000,"y":13.06},{"x":1567498560000,"y":13.06},{"x":1567498620000,"y":13.11},{"x":1567498680000,"y":13.11},{"x":1567498740000,"y":13.11},{"x":1567498800000,"y":13.11},{"x":1567498860000,"y":13.11},{"x":1567498920000,"y":13.13},{"x":1567498980000,"y":13.12},{"x":1567499040000,"y":13.12},{"x":1567499100000,"y":13.1},{"x":1567499160000,"y":13.1},{"x":1567499220000,"y":13.11},{"x":1567499280000,"y":13.1},{"x":1567499340000,"y":13.1},{"x":1567499400000,"y":13.1},{"x":1567499460000,"y":13.1},{"x":1567499520000,"y":13.12},{"x":1567499580000,"y":13.12},{"x":1567499640000,"y":13.11},{"x":1567499700000,"y":13.11},{"x":1567499760000,"y":13.11},{"x":1567499820000,"y":13.12},{"x":1567499880000,"y":13.12},{"x":1567499940000,"y":13.12},{"x":1567500000000,"y":13.12},{"x":1567500060000,"y":13.12},{"x":1567500120000,"y":13.13},{"x":1567500180000,"y":13.09},{"x":1567500240000,"y":13.08},{"x":1567500300000,"y":13.12},{"x":1567500360000,"y":13.13},{"x":1567500420000,"y":13.13},{"x":1567500480000,"y":13.12},{"x":1567500540000,"y":13.12},{"x":1567500600000,"y":13.12},{"x":1567500660000,"y":13.12},{"x":1567500720000,"y":13.13},{"x":1567500780000,"y":13.09},{"x":1567500840000,"y":13.09},{"x":1567500900000,"y":13.07},{"x":1567500960000,"y":13.07},{"x":1567501020000,"y":13.07},{"x":1567501080000,"y":13.13},{"x":1567501140000,"y":13.13},{"x":1567501200000,"y":13.12},{"x":1567501260000,"y":13.12},{"x":1567501320000,"y":13.12},{"x":1567501380000,"y":13.11},{"x":1567501440000,"y":13.09},{"x":1567501500000,"y":13.1},{"x":1567501560000,"y":13.1},{"x":1567501620000,"y":13.11},{"x":1567501680000,"y":13.12},{"x":1567501740000,"y":13.12},{"x":1567501800000,"y":13.13},{"x":1567501860000,"y":13.13},{"x":1567501920000,"y":13.13},{"x":1567501980000,"y":13.13},{"x":1567502040000,"y":13.12},{"x":1567502100000,"y":13.12},{"x":1567502160000,"y":13.12},{"x":1567502220000,"y":13.12},{"x":1567502280000,"y":13.14},{"x":1567502340000,"y":13.12},{"x":1567502400000,"y":13.12},{"x":1567502460000,"y":13.12},{"x":1567502520000,"y":13.12},{"x":1567502580000,"y":13.14},{"x":1567502640000,"y":13.13},{"x":1567502700000,"y":13.12},{"x":1567502760000,"y":13.12},{"x":1567502820000,"y":13.12},{"x":1567502880000,"y":13.13},{"x":1567502940000,"y":13.12},{"x":1567503000000,"y":13.09},{"x":1567503060000,"y":13.09},{"x":1567503120000,"y":13.09},{"x":1567503180000,"y":13.09},{"x":1567503240000,"y":13.13},{"x":1567503300000,"y":13.12},{"x":1567503360000,"y":13.12},{"x":1567503420000,"y":13.12},{"x":1567503480000,"y":13.12},{"x":1567503540000,"y":13.13},{"x":1567503600000,"y":13.13},{"x":1567503660000,"y":13.13},{"x":1567503720000,"y":13.13},{"x":1567503780000,"y":13.13},{"x":1567503840000,"y":13.14},{"x":1567503900000,"y":13.1},{"x":1567503960000,"y":13.09},{"x":1567504020000,"y":13.09},{"x":1567504080000,"y":13.09},{"x":1567504140000,"y":13.12},{"x":1567504200000,"y":13.12},{"x":1567504260000,"y":13.12},{"x":1567504320000,"y":13.12},{"x":1567504380000,"y":13.12},{"x":1567504440000,"y":13.14},{"x":1567504500000,"y":13.12},{"x":1567504560000,"y":13.12},{"x":1567504620000,"y":13.12},{"x":1567504680000,"y":13.12},{"x":1567504740000,"y":13.14},{"x":1567504800000,"y":13.13},{"x":1567504860000,"y":13.13},{"x":1567504920000,"y":13.13},{"x":1567504980000,"y":13.13},{"x":1567505040000,"y":13.14},{"x":1567505100000,"y":13.13},{"x":1567505160000,"y":13.13},{"x":1567505220000,"y":13.12},{"x":1567505280000,"y":13.12},{"x":1567505340000,"y":13.13},{"x":1567505400000,"y":13.11},{"x":1567505460000,"y":13.1},{"x":1567505520000,"y":13.1},{"x":1567505580000,"y":13.09},{"x":1567505640000,"y":13.09},{"x":1567505700000,"y":13.11},{"x":1567505760000,"y":13.1},{"x":1567505820000,"y":13.1},{"x":1567505880000,"y":13.1},{"x":1567505940000,"y":13.1},{"x":1567506000000,"y":13.13},{"x":1567506060000,"y":13.11},{"x":1567506120000,"y":13.11},{"x":1567506180000,"y":13.11},{"x":1567506240000,"y":13.11},{"x":1567506300000,"y":13.11},{"x":1567506360000,"y":13.1},{"x":1567506420000,"y":13.1},{"x":1567506480000,"y":13.1},{"x":1567506540000,"y":13.1},{"x":1567506600000,"y":13.12},{"x":1567506660000,"y":13.11},{"x":1567506720000,"y":13.11},{"x":1567506780000,"y":13.11},{"x":1567506840000,"y":13.1},{"x":1567506900000,"y":13.11},{"x":1567506960000,"y":13.11},{"x":1567507020000,"y":13.11},{"x":1567507080000,"y":13.11},{"x":1567507140000,"y":13.12},{"x":1567507200000,"y":13.13},{"x":1567507260000,"y":13.11},{"x":1567507320000,"y":13.11},{"x":1567507380000,"y":13.11},{"x":1567507440000,"y":13.11},{"x":1567507500000,"y":13.12},{"x":1567507560000,"y":13.11},{"x":1567507620000,"y":13.11},{"x":1567507680000,"y":13.11},{"x":1567507740000,"y":13.11},{"x":1567507800000,"y":13.12},{"x":1567507860000,"y":13.12},{"x":1567507920000,"y":13.12},{"x":1567507980000,"y":13.12},{"x":1567508040000,"y":13.12},{"x":1567508100000,"y":13.11},{"x":1567508160000,"y":13.13},{"x":1567508220000,"y":13.12},{"x":1567508280000,"y":13.12},{"x":1567508340000,"y":13.11},{"x":1567508400000,"y":13.12},{"x":1567508460000,"y":13.13},{"x":1567508520000,"y":13.11},{"x":1567508580000,"y":13.11},{"x":1567508640000,"y":13.11},{"x":1567508700000,"y":13.08},{"x":1567508760000,"y":13.12},{"x":1567508820000,"y":13.12},{"x":1567508880000,"y":13.12},{"x":1567508940000,"y":13.12},{"x":1567509000000,"y":13.11},{"x":1567509060000,"y":13.12},{"x":1567509120000,"y":13.12},{"x":1567509180000,"y":13.12},{"x":1567509240000,"y":13.12},{"x":1567509300000,"y":13.12},{"x":1567509360000,"y":13.13},{"x":1567509420000,"y":13.11},{"x":1567509480000,"y":13.12},{"x":1567509540000,"y":13.12},{"x":1567509600000,"y":13.12},{"x":1567509660000,"y":13.44},{"x":1567509720000,"y":13.18},{"x":1567509780000,"y":13.18},{"x":1567509840000,"y":13.18},{"x":1567509900000,"y":13.26},{"x":1567509960000,"y":13.19},{"x":1567510020000,"y":13.11},{"x":1567510080000,"y":13.12},{"x":1567510140000,"y":13.12},{"x":1567510200000,"y":13.12},{"x":1567510260000,"y":13.3},{"x":1567510320000,"y":13.18},{"x":1567510380000,"y":13.17},{"x":1567510440000,"y":13.16},{"x":1567510500000,"y":13.18},{"x":1567510560000,"y":13.16},{"x":1567510620000,"y":13.13},{"x":1567510680000,"y":13.12},{"x":1567510740000,"y":13.12},{"x":1567510800000,"y":13.12},{"x":1567510860000,"y":13.12},{"x":1567510920000,"y":13.13},{"x":1567510980000,"y":13.12},{"x":1567511040000,"y":13.12},{"x":1567511100000,"y":13.12},{"x":1567511160000,"y":13.12},{"x":1567511220000,"y":13.14},{"x":1567511280000,"y":13.13},{"x":1567511340000,"y":13.13},{"x":1567511400000,"y":13.13},{"x":1567511460000,"y":13.13},{"x":1567511520000,"y":13.13},{"x":1567511580000,"y":13.12},{"x":1567511640000,"y":13.12},{"x":1567511700000,"y":13.12},{"x":1567511760000,"y":13.12},{"x":1567511820000,"y":13.13},{"x":1567511880000,"y":13.13},{"x":1567511940000,"y":13.13},{"x":1567512000000,"y":13.13},{"x":1567512060000,"y":13.13},{"x":1567512120000,"y":13.14},{"x":1567512180000,"y":13.12},{"x":1567512240000,"y":13.12},{"x":1567512300000,"y":13.12},{"x":1567512360000,"y":13.13},{"x":1567512420000,"y":13.14},{"x":1567512480000,"y":13.12},{"x":1567512540000,"y":13.12},{"x":1567512600000,"y":13.12},{"x":1567512660000,"y":13.12},{"x":1567512720000,"y":13.12},{"x":1567512780000,"y":13.15},{"x":1567512840000,"y":13.14},{"x":1567512900000,"y":13.12},{"x":1567512960000,"y":13.12},{"x":1567513020000,"y":13.12},{"x":1567513080000,"y":13.13},{"x":1567513140000,"y":13.12},{"x":1567513200000,"y":13.14},{"x":1567513260000,"y":13.14},{"x":1567513320000,"y":13.14},{"x":1567513380000,"y":13.13},{"x":1567513440000,"y":13.12},{"x":1567513500000,"y":13.13},{"x":1567513560000,"y":13.13},{"x":1567513620000,"y":13.13},{"x":1567513680000,"y":13.14},{"x":1567513740000,"y":13.12},{"x":1567513800000,"y":13.13},{"x":1567513860000,"y":13.13},{"x":1567513920000,"y":13.13},{"x":1567513980000,"y":13.15},{"x":1567514040000,"y":13.12},{"x":1567514100000,"y":13.13},{"x":1567514160000,"y":13.13},{"x":1567514220000,"y":13.13},{"x":1567514280000,"y":13.14},{"x":1567514340000,"y":13.13},{"x":1567514400000,"y":13.11},{"x":1567514460000,"y":13.11},{"x":1567514520000,"y":13.11},{"x":1567514580000,"y":13.12},{"x":1567514640000,"y":13.1},{"x":1567514700000,"y":13.12},{"x":1567514760000,"y":13.12},{"x":1567514820000,"y":13.11},{"x":1567514880000,"y":13.11},{"x":1567514940000,"y":13.11},{"x":1567515000000,"y":13.11},{"x":1567515060000,"y":13.11},{"x":1567515120000,"y":13.11},{"x":1567515180000,"y":13.11},{"x":1567515240000,"y":13.12},{"x":1567515300000,"y":13.11},{"x":1567515360000,"y":13.11},{"x":1567515420000,"y":13.11},{"x":1567515480000,"y":13.11},{"x":1567515540000,"y":13.12},{"x":1567515600000,"y":13.12},{"x":1567515660000,"y":13.12},{"x":1567515720000,"y":13.12},{"x":1567515780000,"y":13.12},{"x":1567515840000,"y":13.12},{"x":1567515900000,"y":13.12},{"x":1567515960000,"y":13.12},{"x":1567516020000,"y":13.12},{"x":1567516080000,"y":13.11},{"x":1567516140000,"y":13.14},{"x":1567516200000,"y":13.12},{"x":1567516260000,"y":13.12},{"x":1567516320000,"y":13.12},{"x":1567516380000,"y":13.12},{"x":1567516440000,"y":13.12},{"x":1567516500000,"y":13.09},{"x":1567516560000,"y":13.09},{"x":1567516620000,"y":13.1},{"x":1567516680000,"y":13.1},{"x":1567516740000,"y":13.11},{"x":1567516800000,"y":13.1},{"x":1567516860000,"y":13.1},{"x":1567516920000,"y":13.1},{"x":1567516980000,"y":13.11},{"x":1567517040000,"y":13.1},{"x":1567517100000,"y":13.13},{"x":1567517160000,"y":13.12},{"x":1567517220000,"y":13.12},{"x":1567517280000,"y":13.12},{"x":1567517340000,"y":13.12},{"x":1567517400000,"y":13.13},{"x":1567517460000,"y":13.1},{"x":1567517520000,"y":13.1},{"x":1567517580000,"y":13.1},{"x":1567517640000,"y":13.11},{"x":1567517700000,"y":13.14},{"x":1567517760000,"y":13.12},{"x":1567517820000,"y":13.12},{"x":1567517880000,"y":13.12},{"x":1567517940000,"y":13.13},{"x":1567518000000,"y":13.13},{"x":1567518060000,"y":13.13},{"x":1567518120000,"y":13.13},{"x":1567518180000,"y":13.13},{"x":1567518240000,"y":13.13},{"x":1567518300000,"y":13.12},{"x":1567518360000,"y":13.11},{"x":1567518420000,"y":13.11},{"x":1567518480000,"y":13.11},{"x":1567518540000,"y":13.11},{"x":1567518600000,"y":13.11},{"x":1567518660000,"y":13.12},{"x":1567518720000,"y":13.12},{"x":1567518780000,"y":13.12},{"x":1567518840000,"y":13.12},{"x":1567518900000,"y":13.14},{"x":1567518960000,"y":13.12},{"x":1567519020000,"y":13.12},{"x":1567519080000,"y":13.12},{"x":1567519140000,"y":13.12},{"x":1567519200000,"y":13.1},{"x":1567519260000,"y":13.12},{"x":1567519320000,"y":13.1},{"x":1567519380000,"y":13.1},{"x":1567519440000,"y":13.1},{"x":1567519500000,"y":13.09},{"x":1567519560000,"y":13.12},{"x":1567519620000,"y":13.11},{"x":1567519680000,"y":13.11},{"x":1567519740000,"y":13.13},{"x":1567519800000,"y":13.13},{"x":1567519860000,"y":13.13},{"x":1567519920000,"y":13.12},{"x":1567519980000,"y":13.12},{"x":1567520040000,"y":13.12},{"x":1567520100000,"y":13.13},{"x":1567520160000,"y":13.14},{"x":1567520220000,"y":13.12},{"x":1567520280000,"y":13.12},{"x":1567520340000,"y":13.12},{"x":1567520400000,"y":13.13},{"x":1567520460000,"y":13.14},{"x":1567520520000,"y":13.13},{"x":1567520580000,"y":13.13},{"x":1567520640000,"y":13.13},{"x":1567520700000,"y":13.13},{"x":1567520760000,"y":13.14},{"x":1567520820000,"y":13.11},{"x":1567520880000,"y":13.12},{"x":1567520940000,"y":13.12},{"x":1567521000000,"y":13.13},{"x":1567521060000,"y":13.14},{"x":1567521120000,"y":13.11},{"x":1567521180000,"y":13.11},{"x":1567521240000,"y":13.12},{"x":1567521300000,"y":13.13},{"x":1567521360000,"y":13.14},{"x":1567521420000,"y":13.13},{"x":1567521480000,"y":13.13},{"x":1567521540000,"y":13.13},{"x":1567521600000,"y":13.1},{"x":1567521660000,"y":13.1},{"x":1567521720000,"y":13.15},{"x":1567521780000,"y":13.14},{"x":1567521840000,"y":13.14},{"x":1567521900000,"y":13.11},{"x":1567521960000,"y":13.11},{"x":1567522020000,"y":13.12},{"x":1567522080000,"y":13.1},{"x":1567522140000,"y":13.11},{"x":1567522200000,"y":13.14},{"x":1567522260000,"y":13.14},{"x":1567522320000,"y":13.12},{"x":1567522380000,"y":13.09},{"x":1567522440000,"y":13.09},{"x":1567522500000,"y":13.11},{"x":1567522560000,"y":13.1},{"x":1567522620000,"y":12.87},{"x":1567522680000,"y":12.86},{"x":1567522740000,"y":12.86},{"x":1567522800000,"y":12.85},{"x":1567522860000,"y":12.85},{"x":1567522920000,"y":12.86},{"x":1567522980000,"y":12.86},{"x":1567523040000,"y":12.86},{"x":1567523100000,"y":12.83},{"x":1567523160000,"y":12.83},{"x":1567523220000,"y":12.85},{"x":1567523280000,"y":12.87},{"x":1567523340000,"y":12.87},{"x":1567523400000,"y":12.87},{"x":1567523460000,"y":12.86},{"x":1567523520000,"y":12.87},{"x":1567523580000,"y":12.85},{"x":1567523640000,"y":12.85},{"x":1567523700000,"y":12.83},{"x":1567523760000,"y":12.83},{"x":1567523820000,"y":12.84},{"x":1567523880000,"y":12.87},{"x":1567523940000,"y":12.86},{"x":1567524000000,"y":12.84},{"x":1567524060000,"y":12.84},{"x":1567524120000,"y":12.84},{"x":1567524180000,"y":12.85},{"x":1567524240000,"y":12.84},{"x":1567524300000,"y":12.83},{"x":1567524360000,"y":12.82},{"x":1567524420000,"y":12.82},{"x":1567524480000,"y":12.84},{"x":1567524540000,"y":12.83},{"x":1567524600000,"y":12.83},{"x":1567524660000,"y":12.83},{"x":1567524720000,"y":12.83},{"x":1567524780000,"y":12.85},{"x":1567524840000,"y":12.84},{"x":1567524900000,"y":12.83},{"x":1567524960000,"y":12.82},{"x":1567525020000,"y":12.82},{"x":1567525080000,"y":12.84},{"x":1567525140000,"y":12.84},{"x":1567525200000,"y":12.85},{"x":1567525260000,"y":12.85},{"x":1567525320000,"y":12.85},{"x":1567525380000,"y":12.86},{"x":1567525440000,"y":12.84},{"x":1567525500000,"y":12.85},{"x":1567525560000,"y":12.84},{"x":1567525620000,"y":12.84},{"x":1567525680000,"y":12.85},{"x":1567525740000,"y":12.84},{"x":1567525800000,"y":12.82},{"x":1567525860000,"y":12.83},{"x":1567525920000,"y":12.83},{"x":1567525980000,"y":12.84},{"x":1567526040000,"y":12.82},{"x":1567526100000,"y":12.83},{"x":1567526160000,"y":12.82},{"x":1567526220000,"y":12.82},{"x":1567526280000,"y":12.83},{"x":1567526340000,"y":12.85},{"x":1567526400000,"y":12.85},{"x":1567526460000,"y":12.85},{"x":1567526520000,"y":12.85},{"x":1567526580000,"y":12.85},{"x":1567526640000,"y":12.87},{"x":1567526700000,"y":12.85},{"x":1567526760000,"y":12.85},{"x":1567526820000,"y":12.85},{"x":1567526880000,"y":12.85},{"x":1567526940000,"y":12.85},{"x":1567527000000,"y":12.83},{"x":1567527060000,"y":13.1},{"x":1567527120000,"y":12.93},{"x":1567527180000,"y":12.92},{"x":1567527240000,"y":12.93},{"x":1567527300000,"y":12.92},{"x":1567527360000,"y":12.89},{"x":1567527420000,"y":12.87},{"x":1567527480000,"y":12.87},{"x":1567527540000,"y":12.88},{"x":1567527600000,"y":12.86},{"x":1567527660000,"y":12.86},{"x":1567527720000,"y":12.86},{"x":1567527780000,"y":12.86},{"x":1567527840000,"y":12.87},{"x":1567527900000,"y":12.85},{"x":1567527960000,"y":12.85},{"x":1567528020000,"y":12.85},{"x":1567528080000,"y":12.85},{"x":1567528140000,"y":12.86},{"x":1567528200000,"y":12.86},{"x":1567528260000,"y":12.86},{"x":1567528320000,"y":12.86},{"x":1567528380000,"y":12.86},{"x":1567528440000,"y":12.86},{"x":1567528500000,"y":12.82},{"x":1567528560000,"y":12.8},{"x":1567528620000,"y":12.8},{"x":1567528680000,"y":12.8},{"x":1567528740000,"y":12.86},{"x":1567528800000,"y":12.86},{"x":1567528860000,"y":12.84},{"x":1567528920000,"y":12.84},{"x":1567528980000,"y":12.84},{"x":1567529040000,"y":12.84},{"x":1567529100000,"y":12.87},{"x":1567529160000,"y":12.86},{"x":1567529220000,"y":12.86},{"x":1567529280000,"y":12.86},{"x":1567529340000,"y":12.86},{"x":1567529400000,"y":12.87},{"x":1567529460000,"y":12.86},{"x":1567529520000,"y":12.86},{"x":1567529580000,"y":12.86},{"x":1567529640000,"y":12.86},{"x":1567529700000,"y":12.87},{"x":1567529760000,"y":12.87},{"x":1567529820000,"y":12.87},{"x":1567529880000,"y":12.86},{"x":1567529940000,"y":12.87},{"x":1567530000000,"y":12.88},{"x":1567530060000,"y":12.86},{"x":1567530120000,"y":12.86},{"x":1567530180000,"y":12.86},{"x":1567530240000,"y":12.86},{"x":1567530300000,"y":12.88},{"x":1567530360000,"y":12.87},{"x":1567530420000,"y":12.87},{"x":1567530480000,"y":12.87},{"x":1567530540000,"y":12.86},{"x":1567530600000,"y":12.85},{"x":1567530660000,"y":12.87},{"x":1567530720000,"y":12.86},{"x":1567530780000,"y":12.86},{"x":1567530840000,"y":12.86},{"x":1567530900000,"y":12.87},{"x":1567530960000,"y":12.88},{"x":1567531020000,"y":12.87},{"x":1567531080000,"y":12.87},{"x":1567531140000,"y":12.87},{"x":1567531200000,"y":12.86},{"x":1567531260000,"y":12.87},{"x":1567531320000,"y":12.87},{"x":1567531380000,"y":12.87},{"x":1567531440000,"y":12.86},{"x":1567531500000,"y":12.87},{"x":1567531560000,"y":13.12},{"x":1567531620000,"y":12.94},{"x":1567531680000,"y":12.94},{"x":1567531740000,"y":12.94},{"x":1567531800000,"y":12.91},{"x":1567531860000,"y":12.9},{"x":1567531920000,"y":12.84},{"x":1567531980000,"y":12.85},{"x":1567532040000,"y":12.85},{"x":1567532100000,"y":12.85},{"x":1567532160000,"y":12.86},{"x":1567532220000,"y":12.88},{"x":1567532280000,"y":12.88},{"x":1567532340000,"y":12.87},{"x":1567532400000,"y":12.85},{"x":1567532460000,"y":12.86},{"x":1567532520000,"y":12.86},{"x":1567532580000,"y":12.86},{"x":1567532640000,"y":12.86},{"x":1567532700000,"y":12.85},{"x":1567532760000,"y":12.85},{"x":1567532820000,"y":12.89},{"x":1567532880000,"y":12.88},{"x":1567532940000,"y":12.88},{"x":1567533000000,"y":12.88},{"x":1567533060000,"y":12.88},{"x":1567533120000,"y":12.89},{"x":1567533180000,"y":12.88},{"x":1567533240000,"y":12.88},{"x":1567533300000,"y":12.86},{"x":1567533360000,"y":12.86},{"x":1567533420000,"y":12.84},{"x":1567533480000,"y":12.83},{"x":1567533540000,"y":12.83},{"x":1567533600000,"y":12.81},{"x":1567533660000,"y":12.81},{"x":1567533720000,"y":12.83},{"x":1567533780000,"y":12.82},{"x":1567533840000,"y":12.82},{"x":1567533900000,"y":12.84},{"x":1567533960000,"y":12.84},{"x":1567534020000,"y":12.87},{"x":1567534080000,"y":12.86},{"x":1567534140000,"y":12.86},{"x":1567534200000,"y":12.85},{"x":1567534260000,"y":12.85},{"x":1567534320000,"y":12.85},{"x":1567534380000,"y":12.83},{"x":1567534440000,"y":12.83},{"x":1567534500000,"y":12.85},{"x":1567534560000,"y":12.84},{"x":1567534620000,"y":12.86},{"x":1567534680000,"y":12.85},{"x":1567534740000,"y":12.85},{"x":1567534800000,"y":12.85},{"x":1567534860000,"y":12.85},{"x":1567534920000,"y":12.86},{"x":1567534980000,"y":12.86},{"x":1567535040000,"y":12.86},{"x":1567535100000,"y":12.86},{"x":1567535160000,"y":12.86},{"x":1567535220000,"y":12.86},{"x":1567535280000,"y":12.85},{"x":1567535340000,"y":12.83},{"x":1567535400000,"y":12.86},{"x":1567535460000,"y":12.86},{"x":1567535520000,"y":12.86},{"x":1567535580000,"y":12.85},{"x":1567535640000,"y":12.85},{"x":1567535700000,"y":12.86},{"x":1567535760000,"y":12.87},{"x":1567535820000,"y":12.86},{"x":1567535880000,"y":12.85},{"x":1567535940000,"y":12.86},{"x":1567536000000,"y":12.86},{"x":1567536060000,"y":12.86},{"x":1567536120000,"y":12.86},{"x":1567536180000,"y":12.87},{"x":1567536240000,"y":12.86},{"x":1567536300000,"y":12.87},{"x":1567536360000,"y":12.87},{"x":1567536420000,"y":12.87},{"x":1567536480000,"y":12.88},{"x":1567536540000,"y":12.86},{"x":1567536600000,"y":12.83},{"x":1567536660000,"y":12.83},{"x":1567536720000,"y":12.82},{"x":1567536780000,"y":12.84},{"x":1567536840000,"y":12.86},{"x":1567536900000,"y":12.86},{"x":1567536960000,"y":12.86},{"x":1567537020000,"y":12.86},{"x":1567537080000,"y":12.86},{"x":1567537140000,"y":12.87},{"x":1567537200000,"y":12.83},{"x":1567537260000,"y":12.83},{"x":1567537320000,"y":12.83},{"x":1567537380000,"y":12.85},{"x":1567537440000,"y":12.85},{"x":1567537500000,"y":12.83},{"x":1567537560000,"y":12.82},{"x":1567537620000,"y":12.82},{"x":1567537680000,"y":12.82},{"x":1567537740000,"y":12.88},{"x":1567537800000,"y":12.87},{"x":1567537860000,"y":12.86},{"x":1567537920000,"y":12.86},{"x":1567537980000,"y":12.87},{"x":1567538040000,"y":12.88},{"x":1567538100000,"y":12.87},{"x":1567538160000,"y":12.87},{"x":1567538220000,"y":12.87},{"x":1567538280000,"y":12.87},{"x":1567538340000,"y":12.88},{"x":1567538400000,"y":12.86},{"x":1567538460000,"y":12.86},{"x":1567538520000,"y":12.86},{"x":1567538580000,"y":12.86},{"x":1567538640000,"y":12.87},{"x":1567538700000,"y":12.86},{"x":1567538760000,"y":12.87},{"x":1567538820000,"y":12.87},{"x":1567538880000,"y":12.87},{"x":1567538940000,"y":12.88},{"x":1567539000000,"y":12.85},{"x":1567539060000,"y":12.85},{"x":1567539120000,"y":12.85},{"x":1567539180000,"y":12.85},{"x":1567539240000,"y":12.86},{"x":1567539300000,"y":12.87},{"x":1567539360000,"y":12.87},{"x":1567539420000,"y":12.87},{"x":1567539480000,"y":12.87},{"x":1567539540000,"y":12.88},{"x":1567539600000,"y":12.87},{"x":1567539660000,"y":12.87},{"x":1567539720000,"y":12.87},{"x":1567539780000,"y":12.87},{"x":1567539840000,"y":12.87},{"x":1567539900000,"y":12.84},{"x":1567539960000,"y":12.82},{"x":1567540020000,"y":12.82},{"x":1567540080000,"y":12.82},{"x":1567540140000,"y":12.82},{"x":1567540200000,"y":12.86},{"x":1567540260000,"y":12.86},{"x":1567540320000,"y":12.85},{"x":1567540380000,"y":12.85},{"x":1567540440000,"y":12.85},{"x":1567540500000,"y":12.86},{"x":1567540560000,"y":12.85},{"x":1567540620000,"y":12.85},{"x":1567540680000,"y":12.85},{"x":1567540740000,"y":12.85},{"x":1567540800000,"y":12.87},{"x":1567540860000,"y":12.84},{"x":1567540920000,"y":12.84},{"x":1567540980000,"y":12.84},{"x":1567541040000,"y":12.84},{"x":1567541100000,"y":12.86},{"x":1567541160000,"y":12.87},{"x":1567541220000,"y":12.87},{"x":1567541280000,"y":12.87},{"x":1567541340000,"y":12.88},{"x":1567541400000,"y":12.88},{"x":1567541460000,"y":12.88},{"x":1567541520000,"y":12.88},{"x":1567541580000,"y":12.88},{"x":1567541640000,"y":12.88},{"x":1567541700000,"y":12.87},{"x":1567541760000,"y":12.88},{"x":1567541820000,"y":12.87},{"x":1567541880000,"y":12.87},{"x":1567541940000,"y":12.87},{"x":1567542000000,"y":12.88},{"x":1567542060000,"y":12.86},{"x":1567542120000,"y":12.86},{"x":1567542180000,"y":12.86},{"x":1567542240000,"y":12.86},{"x":1567542300000,"y":12.88},{"x":1567542360000,"y":12.87},{"x":1567542420000,"y":12.85},{"x":1567542480000,"y":12.85},{"x":1567542540000,"y":12.85},{"x":1567542600000,"y":12.83},{"x":1567542660000,"y":12.85},{"x":1567542720000,"y":12.84},{"x":1567542780000,"y":12.84},{"x":1567542840000,"y":12.84},{"x":1567542900000,"y":12.86},{"x":1567542960000,"y":12.87},{"x":1567543020000,"y":12.85},{"x":1567543080000,"y":12.85},{"x":1567543140000,"y":12.84},{"x":1567543200000,"y":12.85},{"x":1567543260000,"y":12.86},{"x":1567543320000,"y":12.83},{"x":1567543380000,"y":12.83},{"x":1567543440000,"y":12.84},{"x":1567543500000,"y":12.85},{"x":1567543560000,"y":12.86},{"x":1567543620000,"y":12.84},{"x":1567543680000,"y":12.84},{"x":1567543740000,"y":12.84},{"x":1567543800000,"y":12.82},{"x":1567543860000,"y":12.83},{"x":1567543920000,"y":12.87},{"x":1567543980000,"y":12.87},{"x":1567544040000,"y":12.87},{"x":1567544100000,"y":12.87},{"x":1567544160000,"y":12.87},{"x":1567544220000,"y":12.87},{"x":1567544280000,"y":12.86},{"x":1567544340000,"y":12.86},{"x":1567544400000,"y":12.86},{"x":1567544460000,"y":12.86},{"x":1567544520000,"y":12.86},{"x":1567544580000,"y":12.84},{"x":1567544640000,"y":12.84},{"x":1567544700000,"y":12.85},{"x":1567544760000,"y":12.85},{"x":1567544820000,"y":12.86},{"x":1567544880000,"y":12.84},{"x":1567544940000,"y":12.86},{"x":1567545000000,"y":12.84},{"x":1567545060000,"y":12.84},{"x":1567545120000,"y":12.86},{"x":1567545180000,"y":12.86},{"x":1567545240000,"y":12.86},{"x":1567545300000,"y":12.87},{"x":1567545360000,"y":12.87},{"x":1567545420000,"y":12.87},{"x":1567545480000,"y":12.87},{"x":1567545540000,"y":12.87},{"x":1567545600000,"y":12.87},{"x":1567545660000,"y":12.86},{"x":1567545720000,"y":12.87},{"x":1567545780000,"y":12.86},{"x":1567545840000,"y":12.86},{"x":1567545900000,"y":12.83},{"x":1567545960000,"y":12.83},{"x":1567546020000,"y":12.84},{"x":1567546080000,"y":12.86},{"x":1567546140000,"y":12.86},{"x":1567546200000,"y":12.86},{"x":1567546260000,"y":12.86},{"x":1567546320000,"y":12.86},{"x":1567546380000,"y":12.87},{"x":1567546440000,"y":12.85},{"x":1567546500000,"y":12.85},{"x":1567546560000,"y":12.85},{"x":1567546620000,"y":12.85},{"x":1567546680000,"y":12.86},{"x":1567546740000,"y":12.85},{"x":1567546800000,"y":12.86},{"x":1567546860000,"y":12.86},{"x":1567546920000,"y":12.86},{"x":1567546980000,"y":12.87},{"x":1567547040000,"y":12.86},{"x":1567547100000,"y":12.86},{"x":1567547160000,"y":12.86},{"x":1567547220000,"y":12.86},{"x":1567547280000,"y":12.87},{"x":1567547340000,"y":12.87},{"x":1567547400000,"y":12.87},{"x":1567547460000,"y":12.87},{"x":1567547520000,"y":12.87},{"x":1567547580000,"y":12.88},{"x":1567547640000,"y":12.87},{"x":1567547700000,"y":12.87},{"x":1567547760000,"y":12.87},{"x":1567547820000,"y":12.87},{"x":1567547880000,"y":12.87},{"x":1567547940000,"y":12.88},{"x":1567548000000,"y":12.87},{"x":1567548060000,"y":12.87},{"x":1567548120000,"y":12.87},{"x":1567548180000,"y":12.87},{"x":1567548240000,"y":12.87},{"x":1567548300000,"y":12.87},{"x":1567548360000,"y":12.87},{"x":1567548420000,"y":12.87},{"x":1567548480000,"y":12.87},{"x":1567548540000,"y":12.88},{"x":1567548600000,"y":12.88},{"x":1567548660000,"y":12.88},{"x":1567548720000,"y":12.88},{"x":1567548780000,"y":12.88},{"x":1567548840000,"y":12.88},{"x":1567548900000,"y":12.86},{"x":1567548960000,"y":12.86},{"x":1567549020000,"y":12.86},{"x":1567549080000,"y":12.86},{"x":1567549140000,"y":12.88},{"x":1567549200000,"y":12.85},{"x":1567549260000,"y":12.85},{"x":1567549320000,"y":12.85},{"x":1567549380000,"y":12.85},{"x":1567549440000,"y":12.87},{"x":1567549500000,"y":12.86},{"x":1567549560000,"y":12.86},{"x":1567549620000,"y":12.86},{"x":1567549680000,"y":12.86},{"x":1567549740000,"y":12.87},{"x":1567549800000,"y":12.87},{"x":1567549860000,"y":12.87},{"x":1567549920000,"y":12.87},{"x":1567549980000,"y":12.87},{"x":1567550040000,"y":12.88},{"x":1567550100000,"y":12.88},{"x":1567550160000,"y":12.88},{"x":1567550220000,"y":12.87},{"x":1567550280000,"y":12.87},{"x":1567550340000,"y":12.87},{"x":1567550400000,"y":12.87},{"x":1567550460000,"y":12.85},{"x":1567550520000,"y":12.85},{"x":1567550580000,"y":12.85},{"x":1567550640000,"y":12.85},{"x":1567550700000,"y":12.89},{"x":1567550760000,"y":12.87},{"x":1567550820000,"y":12.87},{"x":1567550880000,"y":12.87},{"x":1567550940000,"y":12.87},{"x":1567551000000,"y":12.88},{"x":1567551060000,"y":12.87},{"x":1567551120000,"y":12.87},{"x":1567551180000,"y":12.87},{"x":1567551240000,"y":12.87},{"x":1567551300000,"y":12.88},{"x":1567551360000,"y":12.88},{"x":1567551420000,"y":12.88},{"x":1567551480000,"y":12.88},{"x":1567551540000,"y":12.87},{"x":1567551600000,"y":12.88},{"x":1567551660000,"y":12.87},{"x":1567551720000,"y":12.85},{"x":1567551780000,"y":12.85},{"x":1567551840000,"y":12.85},{"x":1567551900000,"y":12.85},{"x":1567551960000,"y":12.86},{"x":1567552020000,"y":12.86},{"x":1567552080000,"y":12.86},{"x":1567552140000,"y":12.85},{"x":1567552200000,"y":12.85},{"x":1567552260000,"y":12.83},{"x":1567552320000,"y":12.83},{"x":1567552380000,"y":12.83},{"x":1567552440000,"y":12.83},{"x":1567552500000,"y":12.86},{"x":1567552560000,"y":12.84},{"x":1567552620000,"y":12.84},{"x":1567552680000,"y":12.84},{"x":1567552740000,"y":12.84},{"x":1567552800000,"y":12.86},{"x":1567552860000,"y":12.88},{"x":1567552920000,"y":12.86},{"x":1567552980000,"y":12.86},{"x":1567553040000,"y":12.86},{"x":1567553100000,"y":12.83},{"x":1567553160000,"y":12.85},{"x":1567553220000,"y":12.83},{"x":1567553280000,"y":12.83},{"x":1567553340000,"y":12.83},{"x":1567553400000,"y":12.86},{"x":1567553460000,"y":13.14},{"x":1567553520000,"y":12.92},{"x":1567553580000,"y":12.92},{"x":1567553640000,"y":12.92},{"x":1567553700000,"y":12.92},{"x":1567553760000,"y":12.91},{"x":1567553820000,"y":12.86},{"x":1567553880000,"y":12.86},{"x":1567553940000,"y":12.86},{"x":1567554000000,"y":12.85},{"x":1567554060000,"y":12.87},{"x":1567554120000,"y":12.86},{"x":1567554180000,"y":12.86},{"x":1567554240000,"y":12.86},{"x":1567554300000,"y":12.87},{"x":1567554360000,"y":12.88},{"x":1567554420000,"y":12.86},{"x":1567554480000,"y":12.86},{"x":1567554540000,"y":12.86},{"x":1567554600000,"y":12.85},{"x":1567554660000,"y":12.85},{"x":1567554720000,"y":12.85},{"x":1567554780000,"y":12.84},{"x":1567554840000,"y":12.84},{"x":1567554900000,"y":12.85},{"x":1567554960000,"y":12.85},{"x":1567555020000,"y":12.87},{"x":1567555080000,"y":12.86},{"x":1567555140000,"y":12.86},{"x":1567555200000,"y":12.86},{"x":1567555260000,"y":12.86},{"x":1567555320000,"y":12.87},{"x":1567555380000,"y":12.87},{"x":1567555440000,"y":12.87},{"x":1567555500000,"y":12.85},{"x":1567555560000,"y":12.85},{"x":1567555620000,"y":12.87},{"x":1567555680000,"y":12.87},{"x":1567555740000,"y":12.86},{"x":1567555800000,"y":12.86},{"x":1567555860000,"y":12.86},{"x":1567555920000,"y":12.87},{"x":1567555980000,"y":12.86},{"x":1567556040000,"y":12.86},{"x":1567556100000,"y":12.83},{"x":1567556160000,"y":12.83},{"x":1567556220000,"y":12.84},{"x":1567556280000,"y":12.85},{"x":1567556340000,"y":12.85},{"x":1567556400000,"y":12.86},{"x":1567556460000,"y":12.86},{"x":1567556520000,"y":12.87},{"x":1567556580000,"y":12.87},{"x":1567556640000,"y":12.87},{"x":1567556700000,"y":12.85},{"x":1567556760000,"y":12.85},{"x":1567556820000,"y":12.85},{"x":1567556880000,"y":12.84},{"x":1567556940000,"y":12.83},{"x":1567557000000,"y":12.87},{"x":1567557060000,"y":12.87},{"x":1567557120000,"y":12.87},{"x":1567557180000,"y":12.86},{"x":1567557240000,"y":12.86},{"x":1567557300000,"y":12.86},{"x":1567557360000,"y":12.86},{"x":1567557420000,"y":12.86},{"x":1567557480000,"y":12.87},{"x":1567557540000,"y":12.87},{"x":1567557600000,"y":12.86},{"x":1567557660000,"y":12.86},{"x":1567557720000,"y":12.86},{"x":1567557780000,"y":12.88},{"x":1567557840000,"y":12.87},{"x":1567557900000,"y":12.87},{"x":1567557960000,"y":12.87},{"x":1567558020000,"y":12.87},{"x":1567558080000,"y":12.88},{"x":1567558140000,"y":12.86},{"x":1567558200000,"y":12.85},{"x":1567558260000,"y":12.84},{"x":1567558320000,"y":12.84},{"x":1567558380000,"y":12.87},{"x":1567558440000,"y":12.86},{"x":1567558500000,"y":12.86},{"x":1567558560000,"y":12.86},{"x":1567558620000,"y":12.86},{"x":1567558680000,"y":12.87},{"x":1567558740000,"y":12.87},{"x":1567558800000,"y":12.87},{"x":1567558860000,"y":12.86},{"x":1567558920000,"y":12.86},{"x":1567558980000,"y":12.86},{"x":1567559040000,"y":12.88},{"x":1567559100000,"y":12.85},{"x":1567559160000,"y":12.85},{"x":1567559220000,"y":12.85},{"x":1567559280000,"y":12.85},{"x":1567559340000,"y":12.88},{"x":1567559400000,"y":12.87},{"x":1567559460000,"y":12.87},{"x":1567559520000,"y":12.87},{"x":1567559580000,"y":12.87},{"x":1567559640000,"y":12.88},{"x":1567559700000,"y":12.85},{"x":1567559760000,"y":12.84},{"x":1567559820000,"y":12.84},{"x":1567559880000,"y":12.84},{"x":1567559940000,"y":12.87},{"x":1567560000000,"y":12.88},{"x":1567560060000,"y":12.88},{"x":1567560120000,"y":12.88},{"x":1567560180000,"y":12.88},{"x":1567560240000,"y":12.89},{"x":1567560300000,"y":12.87},{"x":1567560360000,"y":12.87},{"x":1567560420000,"y":12.87},{"x":1567560480000,"y":12.87},{"x":1567560540000,"y":12.88},{"x":1567560600000,"y":12.85},{"x":1567560660000,"y":12.85},{"x":1567560720000,"y":12.85},{"x":1567560780000,"y":12.85},{"x":1567560840000,"y":12.86},{"x":1567560900000,"y":12.87},{"x":1567560960000,"y":12.87},{"x":1567561020000,"y":12.84},{"x":1567561080000,"y":12.84},{"x":1567561140000,"y":12.85},{"x":1567561200000,"y":12.83},{"x":1567561260000,"y":12.82},{"x":1567561320000,"y":12.82},{"x":1567561380000,"y":12.82},{"x":1567561440000,"y":12.82},{"x":1567561500000,"y":12.84},{"x":1567561560000,"y":12.82},{"x":1567561620000,"y":12.82},{"x":1567561680000,"y":12.82},{"x":1567561740000,"y":12.82},{"x":1567561800000,"y":12.84},{"x":1567561860000,"y":12.82},{"x":1567561920000,"y":12.82},{"x":1567561980000,"y":12.82},{"x":1567562040000,"y":12.82},{"x":1567562100000,"y":12.87},{"x":1567562160000,"y":12.86},{"x":1567562220000,"y":12.86},{"x":1567562280000,"y":12.86},{"x":1567562340000,"y":12.86},{"x":1567562400000,"y":12.87},{"x":1567562460000,"y":12.85},{"x":1567562520000,"y":12.86},{"x":1567562580000,"y":12.86},{"x":1567562640000,"y":12.86},{"x":1567562700000,"y":12.86},{"x":1567562760000,"y":12.86},{"x":1567562820000,"y":12.86},{"x":1567562880000,"y":12.86},{"x":1567562940000,"y":12.86},{"x":1567563000000,"y":12.87},{"x":1567563060000,"y":12.85},{"x":1567563120000,"y":12.85},{"x":1567563180000,"y":12.86},{"x":1567563240000,"y":12.86},{"x":1567563300000,"y":12.84},{"x":1567563360000,"y":12.86},{"x":1567563420000,"y":12.86},{"x":1567563480000,"y":12.86},{"x":1567563540000,"y":12.86},{"x":1567563600000,"y":12.96},{"x":1567563660000,"y":12.99},{"x":1567563720000,"y":12.98},{"x":1567563780000,"y":12.98},{"x":1567563840000,"y":12.98},{"x":1567563900000,"y":12.99},{"x":1567563960000,"y":12.98},{"x":1567564020000,"y":12.96},{"x":1567564080000,"y":12.96},{"x":1567564140000,"y":12.96},{"x":1567564200000,"y":12.96},{"x":1567564260000,"y":12.98},{"x":1567564320000,"y":12.97},{"x":1567564380000,"y":12.97},{"x":1567564440000,"y":12.97},{"x":1567564500000,"y":13},{"x":1567564560000,"y":13.05},{"x":1567564620000,"y":13.06},{"x":1567564680000,"y":13.06},{"x":1567564740000,"y":13.06},{"x":1567564800000,"y":13.06},{"x":1567564860000,"y":13.07},{"x":1567564920000,"y":13.06},{"x":1567564980000,"y":13.06},{"x":1567565040000,"y":13.06},{"x":1567565100000,"y":13.06},{"x":1567565160000,"y":13.07},{"x":1567565220000,"y":13.06},{"x":1567565280000,"y":13.06},{"x":1567565340000,"y":13.06},{"x":1567565400000,"y":13.06},{"x":1567565460000,"y":13.07},{"x":1567565520000,"y":13.05},{"x":1567565580000,"y":13.05},{"x":1567565640000,"y":13.05},{"x":1567565700000,"y":13.06},{"x":1567565760000,"y":13.06},{"x":1567565820000,"y":13.07},{"x":1567565880000,"y":13.06},{"x":1567565940000,"y":13.06},{"x":1567566000000,"y":13.06},{"x":1567566060000,"y":13.06},{"x":1567566120000,"y":13.08},{"x":1567566180000,"y":13.07},{"x":1567566240000,"y":13.07},{"x":1567566300000,"y":13.07},{"x":1567566360000,"y":13.06},{"x":1567566420000,"y":13.07},{"x":1567566480000,"y":13.05},{"x":1567566540000,"y":13.07},{"x":1567566600000,"y":13.07},{"x":1567566660000,"y":13.07},{"x":1567566720000,"y":13.08},{"x":1567566780000,"y":13.06},{"x":1567566840000,"y":13.06},{"x":1567566900000,"y":13.05},{"x":1567566960000,"y":13.05},{"x":1567567020000,"y":13.07},{"x":1567567080000,"y":13.06},{"x":1567567140000,"y":13.06},{"x":1567567200000,"y":13.07},{"x":1567567260000,"y":13.07},{"x":1567567320000,"y":13.08},{"x":1567567380000,"y":13.07},{"x":1567567440000,"y":13.07},{"x":1567567500000,"y":13.04},{"x":1567567560000,"y":13.04},{"x":1567567620000,"y":13.04},{"x":1567567680000,"y":13.08},{"x":1567567740000,"y":13.06},{"x":1567567800000,"y":13.08},{"x":1567567860000,"y":13.07},{"x":1567567920000,"y":13.07},{"x":1567567980000,"y":13.09},{"x":1567568040000,"y":13.07},{"x":1567568100000,"y":13.05},{"x":1567568160000,"y":13.05},{"x":1567568220000,"y":13.04},{"x":1567568280000,"y":13.07},{"x":1567568340000,"y":13.07},{"x":1567568400000,"y":13.05},{"x":1567568460000,"y":13.05},{"x":1567568520000,"y":13.05},{"x":1567568580000,"y":13.07},{"x":1567568640000,"y":13.06},{"x":1567568700000,"y":13.07},{"x":1567568760000,"y":13.07},{"x":1567568820000,"y":13.07},{"x":1567568880000,"y":13.08},{"x":1567568940000,"y":13.07},{"x":1567569000000,"y":13.06},{"x":1567569060000,"y":13.06},{"x":1567569120000,"y":13.06},{"x":1567569180000,"y":13.07},{"x":1567569240000,"y":13.08},{"x":1567569300000,"y":13.08},{"x":1567569360000,"y":13.08},{"x":1567569420000,"y":13.08},{"x":1567569480000,"y":13.08},{"x":1567569540000,"y":13.09},{"x":1567569600000,"y":13.06},{"x":1567569660000,"y":13.06},{"x":1567569720000,"y":13.06},{"x":1567569780000,"y":13.06},{"x":1567569840000,"y":13.09},{"x":1567569900000,"y":13.07},{"x":1567569960000,"y":13.07},{"x":1567570020000,"y":13.07},{"x":1567570080000,"y":13.07},{"x":1567570140000,"y":13.09},{"x":1567570200000,"y":13.08},{"x":1567570260000,"y":13.05},{"x":1567570320000,"y":13.05},{"x":1567570380000,"y":13.05},{"x":1567570440000,"y":13.06},{"x":1567570500000,"y":13.06},{"x":1567570560000,"y":13.06},{"x":1567570620000,"y":13.06},{"x":1567570680000,"y":13.06},{"x":1567570740000,"y":13.07},{"x":1567570800000,"y":13.03},{"x":1567570860000,"y":13.03},{"x":1567570920000,"y":13.03},{"x":1567570980000,"y":13.03},{"x":1567571040000,"y":13.04},{"x":1567571100000,"y":13.06},{"x":1567571160000,"y":13.06},{"x":1567571220000,"y":13.06},{"x":1567571280000,"y":13.06},{"x":1567571340000,"y":13.07},{"x":1567571400000,"y":13.05},{"x":1567571460000,"y":13.04},{"x":1567571520000,"y":13.04},{"x":1567571580000,"y":13.04},{"x":1567571640000,"y":13.04},{"x":1567571700000,"y":13.06},{"x":1567571760000,"y":13.04},{"x":1567571820000,"y":13.04},{"x":1567571880000,"y":13.04},{"x":1567571940000,"y":13.06},{"x":1567572000000,"y":13.07},{"x":1567572060000,"y":13.06},{"x":1567572120000,"y":13.06},{"x":1567572180000,"y":13.07},{"x":1567572240000,"y":13.06},{"x":1567572300000,"y":13.07},{"x":1567572360000,"y":13.06},{"x":1567572420000,"y":13.06},{"x":1567572480000,"y":13.06},{"x":1567572540000,"y":13.06},{"x":1567572600000,"y":13.07},{"x":1567572660000,"y":13.07},{"x":1567572720000,"y":13.06},{"x":1567572780000,"y":13.06},{"x":1567572840000,"y":13.06},{"x":1567572900000,"y":13.07},{"x":1567572960000,"y":13.04},{"x":1567573020000,"y":13.04},{"x":1567573080000,"y":13.05},{"x":1567573140000,"y":13.05},{"x":1567573200000,"y":13.06},{"x":1567573260000,"y":13.07},{"x":1567573320000,"y":13.07},{"x":1567573380000,"y":13.07},{"x":1567573440000,"y":13.06},{"x":1567573500000,"y":13.05},{"x":1567573560000,"y":13.06},{"x":1567573620000,"y":13.06},{"x":1567573680000,"y":13.06},{"x":1567573740000,"y":13.07},{"x":1567573800000,"y":13.05},{"x":1567573860000,"y":13.06},{"x":1567573920000,"y":13.06},{"x":1567573980000,"y":13.06},{"x":1567574040000,"y":13.06},{"x":1567574100000,"y":13.05},{"x":1567574160000,"y":13.07},{"x":1567574220000,"y":13.06},{"x":1567574280000,"y":13.06},{"x":1567574340000,"y":13.06},{"x":1567574400000,"y":13.07},{"x":1567574460000,"y":13.08},{"x":1567574520000,"y":13.07},{"x":1567574580000,"y":13.07},{"x":1567574640000,"y":13.06},{"x":1567574700000,"y":13.06},{"x":1567574760000,"y":13.08},{"x":1567574820000,"y":13.07},{"x":1567574880000,"y":13.07},{"x":1567574940000,"y":13.07},{"x":1567575000000,"y":13.07},{"x":1567575060000,"y":13.08},{"x":1567575120000,"y":13.07},{"x":1567575180000,"y":13.07},{"x":1567575240000,"y":13.07},{"x":1567575300000,"y":13.04},{"x":1567575360000,"y":13.38},{"x":1567575420000,"y":13.13},{"x":1567575480000,"y":13.13},{"x":1567575540000,"y":13.14},{"x":1567575600000,"y":13.1},{"x":1567575660000,"y":13.1},{"x":1567575720000,"y":13.07},{"x":1567575780000,"y":13.07},{"x":1567575840000,"y":13.07},{"x":1567575900000,"y":13.05},{"x":1567575960000,"y":13.06},{"x":1567576020000,"y":13.07},{"x":1567576080000,"y":13.07},{"x":1567576140000,"y":13.07},{"x":1567576200000,"y":13.08},{"x":1567576260000,"y":13.08},{"x":1567576320000,"y":13.08},{"x":1567576380000,"y":13.06},{"x":1567576440000,"y":13.05},{"x":1567576500000,"y":13.06},{"x":1567576560000,"y":13.06},{"x":1567576620000,"y":13.08},{"x":1567576680000,"y":13.08},{"x":1567576740000,"y":13.08},{"x":1567576800000,"y":13.06},{"x":1567576860000,"y":13.06},{"x":1567576920000,"y":13.08},{"x":1567576980000,"y":13.06},{"x":1567577040000,"y":13.06},{"x":1567577100000,"y":13.07},{"x":1567577160000,"y":13.07},{"x":1567577220000,"y":13.08},{"x":1567577280000,"y":13.07},{"x":1567577340000,"y":13.07},{"x":1567577400000,"y":13.05},{"x":1567577460000,"y":13.05},{"x":1567577520000,"y":13.06},{"x":1567577580000,"y":13.07},{"x":1567577640000,"y":13.07},{"x":1567577700000,"y":13.04},{"x":1567577760000,"y":13.04},{"x":1567577820000,"y":13.07},{"x":1567577880000,"y":13.07},{"x":1567577940000,"y":13.07},{"x":1567578000000,"y":13.07},{"x":1567578060000,"y":13.07},{"x":1567578120000,"y":13.08},{"x":1567578180000,"y":13.07},{"x":1567578240000,"y":13.07},{"x":1567578300000,"y":13.05},{"x":1567578360000,"y":13.05},{"x":1567578420000,"y":13.06},{"x":1567578480000,"y":13.06},{"x":1567578540000,"y":13.05},{"x":1567578600000,"y":13.08},{"x":1567578660000,"y":13.08},{"x":1567578720000,"y":13.08},{"x":1567578780000,"y":13.07},{"x":1567578840000,"y":13.06},{"x":1567578900000,"y":13.03},{"x":1567578960000,"y":13.03},{"x":1567579020000,"y":13.03},{"x":1567579080000,"y":13.07},{"x":1567579140000,"y":13.07},{"x":1567579200000,"y":13.08},{"x":1567579260000,"y":13.08},{"x":1567579320000,"y":13.08},{"x":1567579380000,"y":13.07},{"x":1567579440000,"y":13.03},{"x":1567579500000,"y":13.08},{"x":1567579560000,"y":13.06},{"x":1567579620000,"y":13.06},{"x":1567579680000,"y":13.07},{"x":1567579740000,"y":13.07},{"x":1567579800000,"y":13.07},{"x":1567579860000,"y":13.07},{"x":1567579920000,"y":13.06},{"x":1567579980000,"y":13.07},{"x":1567580040000,"y":13.06},{"x":1567580100000,"y":13.06},{"x":1567580160000,"y":13.06},{"x":1567580220000,"y":13.06},{"x":1567580280000,"y":13.07},{"x":1567580340000,"y":13.07},{"x":1567580400000,"y":13.06},{"x":1567580460000,"y":13.06},{"x":1567580520000,"y":13.06},{"x":1567580580000,"y":13.08},{"x":1567580640000,"y":13.04},{"x":1567580700000,"y":13.02},{"x":1567580760000,"y":13.02},{"x":1567580820000,"y":13.02},{"x":1567580880000,"y":13.02},{"x":1567580940000,"y":13.07},{"x":1567581000000,"y":13.06},{"x":1567581060000,"y":13.06},{"x":1567581120000,"y":13.06},{"x":1567581180000,"y":13.05},{"x":1567581240000,"y":13.07},{"x":1567581300000,"y":13.04},{"x":1567581360000,"y":13.04},{"x":1567581420000,"y":13.04},{"x":1567581480000,"y":13.04},{"x":1567581540000,"y":13.06},{"x":1567581600000,"y":13.07},{"x":1567581660000,"y":13.07},{"x":1567581720000,"y":13.07},{"x":1567581780000,"y":13.07},{"x":1567581840000,"y":13.07},{"x":1567581900000,"y":13.06},{"x":1567581960000,"y":13.06},{"x":1567582020000,"y":13.06},{"x":1567582080000,"y":13.06},{"x":1567582140000,"y":13.07},{"x":1567582200000,"y":13.06},{"x":1567582260000,"y":13.06},{"x":1567582320000,"y":13.06},{"x":1567582380000,"y":13.06},{"x":1567582440000,"y":13.07},{"x":1567582500000,"y":13.04},{"x":1567582560000,"y":13.04},{"x":1567582620000,"y":13.04},{"x":1567582680000,"y":13.04},{"x":1567582740000,"y":13.05},{"x":1567582800000,"y":13.08},{"x":1567582860000,"y":13.07},{"x":1567582920000,"y":13.07},{"x":1567582980000,"y":13.07},{"x":1567583040000,"y":13.07},{"x":1567583100000,"y":13.08},{"x":1567583160000,"y":13.07},{"x":1567583220000,"y":13.07},{"x":1567583280000,"y":13.07},{"x":1567583340000,"y":13.06},{"x":1567583400000,"y":13.07},{"x":1567583460000,"y":13.07},{"x":1567583520000,"y":13.07},{"x":1567583580000,"y":13.07},{"x":1567583640000,"y":13.07},{"x":1567583700000,"y":13.06},{"x":1567583760000,"y":13.04},{"x":1567583820000,"y":13.04},{"x":1567583880000,"y":13.04},{"x":1567583940000,"y":13.04},{"x":1567584000000,"y":13.08},{"x":1567584060000,"y":13.05},{"x":1567584120000,"y":13.05},{"x":1567584180000,"y":13.05},{"x":1567584240000,"y":13.05},{"x":1567584300000,"y":13.06},{"x":1567584360000,"y":13.06},{"x":1567584420000,"y":13.06},{"x":1567584480000,"y":13.06},{"x":1567584540000,"y":13.07},{"x":1567584600000,"y":13.09},{"x":1567584660000,"y":13.07},{"x":1567584720000,"y":13.07},{"x":1567584780000,"y":13.07},{"x":1567584840000,"y":13.07},{"x":1567584900000,"y":13.06},{"x":1567584960000,"y":13.08},{"x":1567585020000,"y":13.07},{"x":1567585080000,"y":13.06},{"x":1567585140000,"y":13.06},{"x":1567585200000,"y":13.07},{"x":1567585260000,"y":13.08},{"x":1567585320000,"y":13.07},{"x":1567585380000,"y":13.07},{"x":1567585440000,"y":13.07},{"x":1567585500000,"y":13.05},{"x":1567585560000,"y":13.05},{"x":1567585620000,"y":13.04},{"x":1567585680000,"y":13.04},{"x":1567585740000,"y":13.04},{"x":1567585800000,"y":13.05},{"x":1567585860000,"y":13.07},{"x":1567585920000,"y":13.07},{"x":1567585980000,"y":13.07},{"x":1567586040000,"y":13.07},{"x":1567586100000,"y":13.06},{"x":1567586160000,"y":13.08},{"x":1567586220000,"y":13.07},{"x":1567586280000,"y":13.07},{"x":1567586340000,"y":13.07},{"x":1567586400000,"y":13.08},{"x":1567586460000,"y":13.09},{"x":1567586520000,"y":13.08},{"x":1567586580000,"y":13.08},{"x":1567586640000,"y":13.08},{"x":1567586700000,"y":13.08},{"x":1567586760000,"y":13.09},{"x":1567586820000,"y":13.07},{"x":1567586880000,"y":13.07},{"x":1567586940000,"y":13.07},{"x":1567587000000,"y":13.06},{"x":1567587060000,"y":13.06},{"x":1567587120000,"y":13.09},{"x":1567587180000,"y":13.08},{"x":1567587240000,"y":13.08},{"x":1567587300000,"y":13.06},{"x":1567587360000,"y":13.06},{"x":1567587420000,"y":13.08},{"x":1567587480000,"y":13.07},{"x":1567587540000,"y":13.07},{"x":1567587600000,"y":13.08},{"x":1567587660000,"y":13.08},{"x":1567587720000,"y":13.09},{"x":1567587780000,"y":13.08},{"x":1567587840000,"y":13.08},{"x":1567587900000,"y":13.07},{"x":1567587960000,"y":13.07},{"x":1567588020000,"y":13.08},{"x":1567588080000,"y":13.08},{"x":1567588140000,"y":13.08},{"x":1567588200000,"y":13.08},{"x":1567588260000,"y":13.08},{"x":1567588320000,"y":13.09},{"x":1567588380000,"y":13.05},{"x":1567588440000,"y":13.05},{"x":1567588500000,"y":13.08},{"x":1567588560000,"y":13.08},{"x":1567588620000,"y":13.09},{"x":1567588680000,"y":13.04},{"x":1567588740000,"y":13.04},{"x":1567588800000,"y":13.06},{"x":1567588860000,"y":13.06},{"x":1567588920000,"y":13.07},{"x":1567588980000,"y":13.06},{"x":1567589040000,"y":13.05},{"x":1567589100000,"y":13.06},{"x":1567589160000,"y":13.06},{"x":1567589220000,"y":13.06},{"x":1567589280000,"y":13.05},{"x":1567589340000,"y":13.03},{"x":1567589400000,"y":13.03},{"x":1567589460000,"y":13.04},{"x":1567589520000,"y":13.04},{"x":1567589580000,"y":13.05},{"x":1567589640000,"y":13.04},{"x":1567589700000,"y":13.06},{"x":1567589760000,"y":13.06},{"x":1567589820000,"y":13.06},{"x":1567589880000,"y":13.07},{"x":1567589940000,"y":13.06},{"x":1567590000000,"y":13.06},{"x":1567590060000,"y":13.06},{"x":1567590120000,"y":13.06},{"x":1567590180000,"y":13.07},{"x":1567590240000,"y":13.06},{"x":1567590300000,"y":13.04},{"x":1567590360000,"y":13.05},{"x":1567590420000,"y":13.05},{"x":1567590480000,"y":13.07},{"x":1567590540000,"y":13.07},{"x":1567590600000,"y":13.07},{"x":1567590660000,"y":13.07},{"x":1567590720000,"y":13.07},{"x":1567590780000,"y":13.08},{"x":1567590840000,"y":13.07},{"x":1567590900000,"y":13.07},{"x":1567590960000,"y":13.07},{"x":1567591020000,"y":13.07},{"x":1567591080000,"y":13.09},{"x":1567591140000,"y":13.06},{"x":1567591200000,"y":13.05},{"x":1567591260000,"y":13.05},{"x":1567591320000,"y":13.05},{"x":1567591380000,"y":13.05},{"x":1567591440000,"y":13.05},{"x":1567591500000,"y":13.06},{"x":1567591560000,"y":13.06},{"x":1567591620000,"y":13.06},{"x":1567591680000,"y":13.06},{"x":1567591740000,"y":13.07},{"x":1567591800000,"y":13.06},{"x":1567591860000,"y":13.07},{"x":1567591920000,"y":13.07},{"x":1567591980000,"y":13.07},{"x":1567592040000,"y":13.06},{"x":1567592100000,"y":13.03},{"x":1567592160000,"y":13.03},{"x":1567592220000,"y":13.03},{"x":1567592280000,"y":13.03},{"x":1567592340000,"y":13.06},{"x":1567592400000,"y":13.06},{"x":1567592460000,"y":13.05},{"x":1567592520000,"y":13.05},{"x":1567592580000,"y":13.05},{"x":1567592640000,"y":13.08},{"x":1567592700000,"y":13.08},{"x":1567592760000,"y":13.08},{"x":1567592820000,"y":13.08},{"x":1567592880000,"y":13.08},{"x":1567592940000,"y":13.09},{"x":1567593000000,"y":13.07},{"x":1567593060000,"y":13.07},{"x":1567593120000,"y":13.07},{"x":1567593180000,"y":13.07},{"x":1567593240000,"y":13.09},{"x":1567593300000,"y":13.07},{"x":1567593360000,"y":13.07},{"x":1567593420000,"y":13.06},{"x":1567593480000,"y":13.06},{"x":1567593540000,"y":13.08},{"x":1567593600000,"y":13.08},{"x":1567593660000,"y":13.08},{"x":1567593720000,"y":13.08},{"x":1567593780000,"y":13.08},{"x":1567593840000,"y":13.08},{"x":1567593900000,"y":13.09},{"x":1567593960000,"y":13.08},{"x":1567594020000,"y":13.08},{"x":1567594080000,"y":13.08},{"x":1567594140000,"y":13.09},{"x":1567594200000,"y":13.08},{"x":1567594260000,"y":13.08},{"x":1567594320000,"y":13.08},{"x":1567594380000,"y":13.08},{"x":1567594440000,"y":13.08},{"x":1567594500000,"y":13.08},{"x":1567594560000,"y":13.07},{"x":1567594620000,"y":13.07},{"x":1567594680000,"y":13.07},{"x":1567594740000,"y":13.07},{"x":1567594800000,"y":13.06},{"x":1567594860000,"y":13.06},{"x":1567594920000,"y":13.06},{"x":1567594980000,"y":13.06},{"x":1567595040000,"y":13.07},{"x":1567595100000,"y":13.08},{"x":1567595160000,"y":13.07},{"x":1567595220000,"y":13.06},{"x":1567595280000,"y":13.06},{"x":1567595340000,"y":13.08},{"x":1567595400000,"y":13.09},{"x":1567595460000,"y":13.08},{"x":1567595520000,"y":13.08},{"x":1567595580000,"y":13.08},{"x":1567595640000,"y":13.69},{"x":1567595700000,"y":13.33},{"x":1567595760000,"y":13.17},{"x":1567595820000,"y":13.16},{"x":1567595880000,"y":13.16},{"x":1567595940000,"y":13.15},{"x":1567596000000,"y":13.09},{"x":1567596060000,"y":13.09},{"x":1567596120000,"y":13.08},{"x":1567596180000,"y":13.08},{"x":1567596240000,"y":13.08},{"x":1567596300000,"y":13.1},{"x":1567596360000,"y":13.08},{"x":1567596420000,"y":13.08},{"x":1567596480000,"y":13.08},{"x":1567596540000,"y":13.08},{"x":1567596600000,"y":13.07},{"x":1567596660000,"y":13.08},{"x":1567596720000,"y":13.08},{"x":1567596780000,"y":13.08},{"x":1567596840000,"y":13.07},{"x":1567596900000,"y":13.06},{"x":1567596960000,"y":13.08},{"x":1567597020000,"y":13.08},{"x":1567597080000,"y":13.08},{"x":1567597140000,"y":13.09},{"x":1567597200000,"y":13.1},{"x":1567597260000,"y":13.32},{"x":1567597320000,"y":13.15},{"x":1567597380000,"y":13.15},{"x":1567597440000,"y":13.15},{"x":1567597500000,"y":13.15},{"x":1567597560000,"y":13.15},{"x":1567597620000,"y":13.07},{"x":1567597680000,"y":13.07},{"x":1567597740000,"y":13.07},{"x":1567597800000,"y":13.09},{"x":1567597860000,"y":13.09},{"x":1567597920000,"y":13.1},{"x":1567597980000,"y":13.06},{"x":1567598040000,"y":13.06},{"x":1567598100000,"y":13.06},{"x":1567598160000,"y":13.06},{"x":1567598220000,"y":13.08},{"x":1567598280000,"y":13.07},{"x":1567598340000,"y":13.07},{"x":1567598400000,"y":13.06},{"x":1567598460000,"y":13.06},{"x":1567598520000,"y":13.07},{"x":1567598580000,"y":13.06},{"x":1567598640000,"y":13.06},{"x":1567598700000,"y":13.05},{"x":1567598760000,"y":13.05},{"x":1567598820000,"y":13.07},{"x":1567598880000,"y":13.06},{"x":1567598940000,"y":13.07},{"x":1567599000000,"y":13.04},{"x":1567599060000,"y":13.04},{"x":1567599120000,"y":13.05},{"x":1567599180000,"y":13.05},{"x":1567599240000,"y":13.05},{"x":1567599300000,"y":13.06},{"x":1567599360000,"y":13.06},{"x":1567599420000,"y":13.08},{"x":1567599480000,"y":13.07},{"x":1567599540000,"y":13.07},{"x":1567599600000,"y":13.06},{"x":1567599660000,"y":13.06},{"x":1567599720000,"y":13.07},{"x":1567599780000,"y":13.07},{"x":1567599840000,"y":13.07},{"x":1567599900000,"y":13.07},{"x":1567599960000,"y":13.07},{"x":1567600020000,"y":13.09},{"x":1567600080000,"y":13.06},{"x":1567600140000,"y":13.06},{"x":1567600200000,"y":13.08},{"x":1567600260000,"y":13.08},{"x":1567600320000,"y":13.07},{"x":1567600380000,"y":13.09},{"x":1567600440000,"y":13.08},{"x":1567600500000,"y":13.06},{"x":1567600560000,"y":13.07},{"x":1567600620000,"y":13.06},{"x":1567600680000,"y":13.07},{"x":1567600740000,"y":13.06},{"x":1567600800000,"y":13.06},{"x":1567600860000,"y":13.06},{"x":1567600920000,"y":13.06},{"x":1567600980000,"y":13.08},{"x":1567601040000,"y":13.07},{"x":1567601100000,"y":13.08},{"x":1567601160000,"y":13.08},{"x":1567601220000,"y":13.07},{"x":1567601280000,"y":13.08},{"x":1567601340000,"y":13.07},{"x":1567601400000,"y":13.06},{"x":1567601460000,"y":13.06},{"x":1567601520000,"y":13.06},{"x":1567601580000,"y":13.07},{"x":1567601640000,"y":13.06},{"x":1567601700000,"y":13.07},{"x":1567601760000,"y":13.07},{"x":1567601820000,"y":13.08},{"x":1567601880000,"y":13.09},{"x":1567601940000,"y":13.08},{"x":1567602000000,"y":13.05},{"x":1567602060000,"y":13.05},{"x":1567602120000,"y":13.05},{"x":1567602180000,"y":13.05},{"x":1567602240000,"y":13.07},{"x":1567602300000,"y":13.06},{"x":1567602360000,"y":13.06},{"x":1567602420000,"y":13.06},{"x":1567602480000,"y":13.06},{"x":1567602540000,"y":13.09},{"x":1567602600000,"y":13.05},{"x":1567602660000,"y":13.05},{"x":1567602720000,"y":13.05},{"x":1567602780000,"y":13.05},{"x":1567602840000,"y":13.09},{"x":1567602900000,"y":13.09},{"x":1567602960000,"y":13.09},{"x":1567603020000,"y":13.08},{"x":1567603080000,"y":13.08},{"x":1567603140000,"y":13.09},{"x":1567603200000,"y":13.05},{"x":1567603260000,"y":13.05},{"x":1567603320000,"y":13.05},{"x":1567603380000,"y":13.05},{"x":1567603440000,"y":13.08},{"x":1567603500000,"y":13.08},{"x":1567603560000,"y":13.08},{"x":1567603620000,"y":13.08},{"x":1567603680000,"y":13.08},{"x":1567603740000,"y":13.09},{"x":1567603800000,"y":13.09},{"x":1567603860000,"y":13.09},{"x":1567603920000,"y":13.09},{"x":1567603980000,"y":13.09},{"x":1567604040000,"y":13.1},{"x":1567604100000,"y":13.06},{"x":1567604160000,"y":13.06},{"x":1567604220000,"y":13.06},{"x":1567604280000,"y":13.06},{"x":1567604340000,"y":13.08},{"x":1567604400000,"y":13.06},{"x":1567604460000,"y":13.05},{"x":1567604520000,"y":13.05},{"x":1567604580000,"y":13.04},{"x":1567604640000,"y":13.04},{"x":1567604700000,"y":13.08},{"x":1567604760000,"y":13.08},{"x":1567604820000,"y":13.08},{"x":1567604880000,"y":13.08},{"x":1567604940000,"y":13.08},{"x":1567605000000,"y":13.09},{"x":1567605060000,"y":13.08},{"x":1567605120000,"y":13.08},{"x":1567605180000,"y":13.08},{"x":1567605240000,"y":13.08},{"x":1567605300000,"y":13.09},{"x":1567605360000,"y":13.08},{"x":1567605420000,"y":13.08},{"x":1567605480000,"y":13.08},{"x":1567605540000,"y":13.08},{"x":1567605600000,"y":13.1},{"x":1567605660000,"y":13.09},{"x":1567605720000,"y":13.09},{"x":1567605780000,"y":13.09},{"x":1567605840000,"y":13.09},{"x":1567605900000,"y":13.1},{"x":1567605960000,"y":13.09},{"x":1567606020000,"y":13.09},{"x":1567606080000,"y":13.09},{"x":1567606140000,"y":13.09},{"x":1567606200000,"y":13.09},{"x":1567606260000,"y":13.07},{"x":1567606320000,"y":13.07},{"x":1567606380000,"y":13.07},{"x":1567606440000,"y":13.07},{"x":1567606500000,"y":13.08},{"x":1567606560000,"y":13.08},{"x":1567606620000,"y":13.09},{"x":1567606680000,"y":13.09},{"x":1567606740000,"y":13.09},{"x":1567606800000,"y":13.07},{"x":1567606860000,"y":13.09},{"x":1567606920000,"y":13.08},{"x":1567606980000,"y":13.07},{"x":1567607040000,"y":13.07},{"x":1567607100000,"y":13.09},{"x":1567607160000,"y":13.11},{"x":1567607220000,"y":13.08},{"x":1567607280000,"y":13.07},{"x":1567607340000,"y":13.07},{"x":1567607400000,"y":13.07},{"x":1567607460000,"y":13.08},{"x":1567607520000,"y":13.07},{"x":1567607580000,"y":13.07},{"x":1567607640000,"y":13.07},{"x":1567607700000,"y":13.04},{"x":1567607760000,"y":13.05},{"x":1567607820000,"y":13.05},{"x":1567607880000,"y":13.05},{"x":1567607940000,"y":13.07},{"x":1567608000000,"y":13.04},{"x":1567608060000,"y":13.05},{"x":1567608120000,"y":13.06},{"x":1567608180000,"y":13.06},{"x":1567608240000,"y":13.06},{"x":1567608300000,"y":13.06},{"x":1567608360000,"y":12.92},{"x":1567608420000,"y":12.87},{"x":1567608480000,"y":12.87},{"x":1567608540000,"y":12.87},{"x":1567608600000,"y":12.86},{"x":1567608660000,"y":12.87},{"x":1567608720000,"y":12.86},{"x":1567608780000,"y":12.86},{"x":1567608840000,"y":12.86},{"x":1567608900000,"y":12.86},{"x":1567608960000,"y":12.86},{"x":1567609020000,"y":12.88},{"x":1567609080000,"y":12.86},{"x":1567609140000,"y":12.86},{"x":1567609200000,"y":12.82},{"x":1567609260000,"y":12.82},{"x":1567609320000,"y":12.88},{"x":1567609380000,"y":12.87},{"x":1567609440000,"y":12.87},{"x":1567609500000,"y":12.86},{"x":1567609560000,"y":12.86},{"x":1567609620000,"y":12.88},{"x":1567609680000,"y":12.87},{"x":1567609740000,"y":12.88},{"x":1567609800000,"y":12.88},{"x":1567609860000,"y":13.03},{"x":1567609920000,"y":12.94},{"x":1567609980000,"y":12.93},{"x":1567610040000,"y":12.94},{"x":1567610100000,"y":12.94},{"x":1567610160000,"y":12.91},{"x":1567610220000,"y":12.88},{"x":1567610280000,"y":12.88},{"x":1567610340000,"y":12.88},{"x":1567610400000,"y":12.88},{"x":1567610460000,"y":12.88},{"x":1567610520000,"y":12.89},{"x":1567610580000,"y":12.88},{"x":1567610640000,"y":12.88},{"x":1567610700000,"y":12.86},{"x":1567610760000,"y":12.86},{"x":1567610820000,"y":12.88},{"x":1567610880000,"y":12.85},{"x":1567610940000,"y":12.85},{"x":1567611000000,"y":12.87},{"x":1567611060000,"y":12.87},{"x":1567611120000,"y":12.87},{"x":1567611180000,"y":12.88},{"x":1567611240000,"y":12.87},{"x":1567611300000,"y":12.87},{"x":1567611360000,"y":12.87},{"x":1567611420000,"y":12.87},{"x":1567611480000,"y":12.88},{"x":1567611540000,"y":12.88},{"x":1567611600000,"y":12.88},{"x":1567611660000,"y":12.88},{"x":1567611720000,"y":12.87},{"x":1567611780000,"y":12.87},{"x":1567611840000,"y":12.85},{"x":1567611900000,"y":12.88},{"x":1567611960000,"y":12.88},{"x":1567612020000,"y":12.88},{"x":1567612080000,"y":12.89},{"x":1567612140000,"y":12.88},{"x":1567612200000,"y":12.88},{"x":1567612260000,"y":12.88},{"x":1567612320000,"y":12.87},{"x":1567612380000,"y":12.88},{"x":1567612440000,"y":12.87},{"x":1567612500000,"y":12.84},{"x":1567612560000,"y":12.85},{"x":1567612620000,"y":12.85},{"x":1567612680000,"y":12.87},{"x":1567612740000,"y":12.86},{"x":1567612800000,"y":12.84},{"x":1567612860000,"y":12.84},{"x":1567612920000,"y":12.84},{"x":1567612980000,"y":12.85},{"x":1567613040000,"y":12.87},{"x":1567613100000,"y":12.86},{"x":1567613160000,"y":12.86},{"x":1567613220000,"y":12.86},{"x":1567613280000,"y":12.86},{"x":1567613340000,"y":12.88},{"x":1567613400000,"y":12.87},{"x":1567613460000,"y":12.87},{"x":1567613520000,"y":12.87},{"x":1567613580000,"y":12.87},{"x":1567613640000,"y":12.89},{"x":1567613700000,"y":12.9},{"x":1567613760000,"y":12.92},{"x":1567613820000,"y":12.93},{"x":1567613880000,"y":12.93},{"x":1567613940000,"y":12.97},{"x":1567614000000,"y":12.98},{"x":1567614060000,"y":12.98},{"x":1567614120000,"y":12.98},{"x":1567614180000,"y":12.98},{"x":1567614240000,"y":12.98},{"x":1567614300000,"y":12.92},{"x":1567614360000,"y":12.92},{"x":1567614420000,"y":12.92},{"x":1567614480000,"y":12.92},{"x":1567614540000,"y":12.95},{"x":1567614600000,"y":12.97},{"x":1567614660000,"y":12.97},{"x":1567614720000,"y":12.97},{"x":1567614780000,"y":12.97},{"x":1567614840000,"y":12.99},{"x":1567614900000,"y":12.93},{"x":1567614960000,"y":12.93},{"x":1567615020000,"y":12.93},{"x":1567615080000,"y":12.94},{"x":1567615140000,"y":12.99},{"x":1567615200000,"y":12.95},{"x":1567615260000,"y":12.95},{"x":1567615320000,"y":12.95},{"x":1567615380000,"y":12.95},{"x":1567615440000,"y":12.95},{"x":1567615500000,"y":12.96},{"x":1567615560000,"y":12.95},{"x":1567615620000,"y":12.95},{"x":1567615680000,"y":12.95},{"x":1567615740000,"y":12.95},{"x":1567615800000,"y":12.99},{"x":1567615860000,"y":12.98},{"x":1567615920000,"y":12.98},{"x":1567615980000,"y":12.98},{"x":1567616040000,"y":12.98},{"x":1567616100000,"y":12.99},{"x":1567616160000,"y":12.97},{"x":1567616220000,"y":12.97},{"x":1567616280000,"y":12.97},{"x":1567616340000,"y":12.98},{"x":1567616400000,"y":12.97},{"x":1567616460000,"y":12.98},{"x":1567616520000,"y":12.96},{"x":1567616580000,"y":12.96},{"x":1567616640000,"y":12.96},{"x":1567616700000,"y":12.97},{"x":1567616760000,"y":12.96},{"x":1567616820000,"y":12.96},{"x":1567616880000,"y":12.96},{"x":1567616940000,"y":12.96},{"x":1567617000000,"y":12.98},{"x":1567617060000,"y":12.97},{"x":1567617120000,"y":12.96},{"x":1567617180000,"y":12.96},{"x":1567617240000,"y":12.96},{"x":1567617300000,"y":12.95},{"x":1567617360000,"y":12.96},{"x":1567617420000,"y":12.96},{"x":1567617480000,"y":12.96},{"x":1567617540000,"y":12.96},{"x":1567617600000,"y":12.95},{"x":1567617660000,"y":12.97},{"x":1567617720000,"y":12.96},{"x":1567617780000,"y":12.96},{"x":1567617840000,"y":12.96},{"x":1567617900000,"y":12.96},{"x":1567617960000,"y":12.97},{"x":1567618020000,"y":12.96},{"x":1567618080000,"y":12.96},{"x":1567618140000,"y":12.96},{"x":1567618200000,"y":12.96},{"x":1567618260000,"y":12.96},{"x":1567618320000,"y":12.95},{"x":1567618380000,"y":12.95},{"x":1567618440000,"y":12.95},{"x":1567618500000,"y":12.94},{"x":1567618560000,"y":12.97},{"x":1567618620000,"y":12.97},{"x":1567618680000,"y":12.97},{"x":1567618740000,"y":12.97},{"x":1567618800000,"y":12.94},{"x":1567618860000,"y":12.96},{"x":1567618920000,"y":12.96},{"x":1567618980000,"y":12.96},{"x":1567619040000,"y":12.96},{"x":1567619100000,"y":12.97},{"x":1567619160000,"y":13.25},{"x":1567619220000,"y":13.03},{"x":1567619280000,"y":13.03},{"x":1567619340000,"y":13.03},{"x":1567619400000,"y":13.03},{"x":1567619460000,"y":13.03},{"x":1567619520000,"y":12.96},{"x":1567619580000,"y":12.96},{"x":1567619640000,"y":12.97},{"x":1567619700000,"y":12.97},{"x":1567619760000,"y":12.97},{"x":1567619820000,"y":12.97},{"x":1567619880000,"y":12.96},{"x":1567619940000,"y":12.96},{"x":1567620000000,"y":12.93},{"x":1567620060000,"y":12.93},{"x":1567620120000,"y":12.98},{"x":1567620180000,"y":12.97},{"x":1567620240000,"y":12.97},{"x":1567620300000,"y":12.96},{"x":1567620360000,"y":12.96},{"x":1567620420000,"y":12.98},{"x":1567620480000,"y":12.97},{"x":1567620540000,"y":12.96},{"x":1567620600000,"y":12.95},{"x":1567620660000,"y":12.95},{"x":1567620720000,"y":12.98},{"x":1567620780000,"y":12.97},{"x":1567620840000,"y":12.97},{"x":1567620900000,"y":12.97},{"x":1567620960000,"y":12.97},{"x":1567621020000,"y":12.98},{"x":1567621080000,"y":12.95},{"x":1567621140000,"y":12.95},{"x":1567621200000,"y":12.97},{"x":1567621260000,"y":12.97},{"x":1567621320000,"y":12.97},{"x":1567621380000,"y":12.95},{"x":1567621440000,"y":12.95},{"x":1567621500000,"y":12.97},{"x":1567621560000,"y":12.96},{"x":1567621620000,"y":12.97},{"x":1567621680000,"y":12.94},{"x":1567621740000,"y":12.94},{"x":1567621800000,"y":12.95},{"x":1567621860000,"y":12.95},{"x":1567621920000,"y":12.97},{"x":1567621980000,"y":12.97},{"x":1567622040000,"y":12.97},{"x":1567622100000,"y":12.97},{"x":1567622160000,"y":12.97},{"x":1567622220000,"y":12.96},{"x":1567622280000,"y":12.95},{"x":1567622340000,"y":12.98},{"x":1567622400000,"y":12.97},{"x":1567622460000,"y":12.97},{"x":1567622520000,"y":12.97},{"x":1567622580000,"y":12.96},{"x":1567622640000,"y":12.95},{"x":1567622700000,"y":12.94},{"x":1567622760000,"y":12.94},{"x":1567622820000,"y":12.94},{"x":1567622880000,"y":12.97},{"x":1567622940000,"y":12.98},{"x":1567623000000,"y":12.98},{"x":1567623060000,"y":12.98},{"x":1567623120000,"y":12.98},{"x":1567623180000,"y":12.98},{"x":1567623240000,"y":12.97},{"x":1567623300000,"y":12.95},{"x":1567623360000,"y":12.95},{"x":1567623420000,"y":12.95},{"x":1567623480000,"y":12.97},{"x":1567623540000,"y":12.97},{"x":1567623600000,"y":12.94},{"x":1567623660000,"y":12.94},{"x":1567623720000,"y":12.94},{"x":1567623780000,"y":12.96},{"x":1567623840000,"y":12.98},{"x":1567623900000,"y":12.98},{"x":1567623960000,"y":12.98},{"x":1567624020000,"y":12.98},{"x":1567624080000,"y":12.99},{"x":1567624140000,"y":12.97},{"x":1567624200000,"y":12.97},{"x":1567624260000,"y":12.97},{"x":1567624320000,"y":12.97},{"x":1567624380000,"y":12.97},{"x":1567624440000,"y":12.98},{"x":1567624500000,"y":12.95},{"x":1567624560000,"y":12.95},{"x":1567624620000,"y":12.96},{"x":1567624680000,"y":12.96},{"x":1567624740000,"y":12.99},{"x":1567624800000,"y":12.94},{"x":1567624860000,"y":12.94},{"x":1567624920000,"y":12.93},{"x":1567624980000,"y":12.93},{"x":1567625040000,"y":12.98},{"x":1567625100000,"y":12.97},{"x":1567625160000,"y":12.97},{"x":1567625220000,"y":12.97},{"x":1567625280000,"y":12.97},{"x":1567625340000,"y":12.99},{"x":1567625400000,"y":12.98},{"x":1567625460000,"y":12.98},{"x":1567625520000,"y":12.98},{"x":1567625580000,"y":12.96},{"x":1567625640000,"y":12.96},{"x":1567625700000,"y":12.97},{"x":1567625760000,"y":12.97},{"x":1567625820000,"y":12.97},{"x":1567625880000,"y":12.96},{"x":1567625940000,"y":12.97},{"x":1567626000000,"y":12.95},{"x":1567626060000,"y":12.95},{"x":1567626120000,"y":12.96},{"x":1567626180000,"y":12.96},{"x":1567626240000,"y":12.96},{"x":1567626300000,"y":12.92},{"x":1567626360000,"y":12.92},{"x":1567626420000,"y":12.92},{"x":1567626480000,"y":12.92},{"x":1567626540000,"y":12.92},{"x":1567626600000,"y":12.94},{"x":1567626660000,"y":12.93},{"x":1567626720000,"y":12.93},{"x":1567626780000,"y":12.94},{"x":1567626840000,"y":12.94},{"x":1567626900000,"y":12.99},{"x":1567626960000,"y":12.97},{"x":1567627020000,"y":12.97},{"x":1567627080000,"y":12.97},{"x":1567627140000,"y":12.97},{"x":1567627200000,"y":12.98},{"x":1567627260000,"y":12.96},{"x":1567627320000,"y":12.96},{"x":1567627380000,"y":12.96},{"x":1567627440000,"y":12.97},{"x":1567627500000,"y":12.98},{"x":1567627560000,"y":12.97},{"x":1567627620000,"y":12.97},{"x":1567627680000,"y":12.97},{"x":1567627740000,"y":12.97},{"x":1567627800000,"y":12.98},{"x":1567627860000,"y":12.97},{"x":1567627920000,"y":12.97},{"x":1567627980000,"y":12.97},{"x":1567628040000,"y":12.97},{"x":1567628100000,"y":12.99},{"x":1567628160000,"y":12.96},{"x":1567628220000,"y":12.95},{"x":1567628280000,"y":12.95},{"x":1567628340000,"y":12.95},{"x":1567628400000,"y":12.97},{"x":1567628460000,"y":12.97},{"x":1567628520000,"y":12.97},{"x":1567628580000,"y":12.97},{"x":1567628640000,"y":12.97},{"x":1567628700000,"y":12.97},{"x":1567628760000,"y":12.98},{"x":1567628820000,"y":12.97},{"x":1567628880000,"y":12.97},{"x":1567628940000,"y":12.96},{"x":1567629000000,"y":12.95},{"x":1567629060000,"y":12.97},{"x":1567629120000,"y":12.96},{"x":1567629180000,"y":12.96},{"x":1567629240000,"y":12.96},{"x":1567629300000,"y":12.97},{"x":1567629360000,"y":12.99},{"x":1567629420000,"y":12.97},{"x":1567629480000,"y":12.97},{"x":1567629540000,"y":12.97},{"x":1567629600000,"y":12.96},{"x":1567629660000,"y":12.97},{"x":1567629720000,"y":12.96},{"x":1567629780000,"y":12.96},{"x":1567629840000,"y":12.96},{"x":1567629900000,"y":12.97},{"x":1567629960000,"y":12.98},{"x":1567630020000,"y":12.97},{"x":1567630080000,"y":12.97},{"x":1567630140000,"y":12.97},{"x":1567630200000,"y":12.98},{"x":1567630260000,"y":12.99},{"x":1567630320000,"y":12.98},{"x":1567630380000,"y":12.98},{"x":1567630440000,"y":12.98},{"x":1567630500000,"y":12.95},{"x":1567630560000,"y":12.97},{"x":1567630620000,"y":12.97},{"x":1567630680000,"y":12.97},{"x":1567630740000,"y":12.97},{"x":1567630800000,"y":12.95},{"x":1567630860000,"y":12.97},{"x":1567630920000,"y":12.97},{"x":1567630980000,"y":12.97},{"x":1567631040000,"y":12.97},{"x":1567631100000,"y":12.98},{"x":1567631160000,"y":12.98},{"x":1567631220000,"y":12.99},{"x":1567631280000,"y":12.99},{"x":1567631340000,"y":12.97},{"x":1567631400000,"y":12.98},{"x":1567631460000,"y":12.98},{"x":1567631520000,"y":12.99},{"x":1567631580000,"y":12.98},{"x":1567631640000,"y":12.98},{"x":1567631700000,"y":12.98},{"x":1567631760000,"y":12.98},{"x":1567631820000,"y":12.99},{"x":1567631880000,"y":12.98},{"x":1567631940000,"y":12.92},{"x":1567632000000,"y":12.87},{"x":1567632060000,"y":12.86},{"x":1567632120000,"y":12.9},{"x":1567632180000,"y":12.89},{"x":1567632240000,"y":12.89},{"x":1567632300000,"y":12.86},{"x":1567632360000,"y":12.86},{"x":1567632420000,"y":12.88},{"x":1567632480000,"y":12.88},{"x":1567632540000,"y":12.88},{"x":1567632600000,"y":12.87},{"x":1567632660000,"y":12.87},{"x":1567632720000,"y":12.88},{"x":1567632780000,"y":12.85},{"x":1567632840000,"y":12.85},{"x":1567632900000,"y":12.86},{"x":1567632960000,"y":12.86},{"x":1567633020000,"y":12.87},{"x":1567633080000,"y":12.87},{"x":1567633140000,"y":12.89},{"x":1567633200000,"y":12.88},{"x":1567633260000,"y":12.88},{"x":1567633320000,"y":12.88},{"x":1567633380000,"y":12.9},{"x":1567633440000,"y":12.89},{"x":1567633500000,"y":12.89},{"x":1567633560000,"y":12.89},{"x":1567633620000,"y":12.89},{"x":1567633680000,"y":12.9},{"x":1567633740000,"y":12.89},{"x":1567633800000,"y":12.89},{"x":1567633860000,"y":12.89},{"x":1567633920000,"y":12.89},{"x":1567633980000,"y":12.9},{"x":1567634040000,"y":12.89},{"x":1567634100000,"y":12.89},{"x":1567634160000,"y":12.89},{"x":1567634220000,"y":12.89},{"x":1567634280000,"y":12.9},{"x":1567634340000,"y":12.89},{"x":1567634400000,"y":12.87},{"x":1567634460000,"y":12.87},{"x":1567634520000,"y":12.87},{"x":1567634580000,"y":12.89},{"x":1567634640000,"y":12.89},{"x":1567634700000,"y":12.9},{"x":1567634760000,"y":12.9},{"x":1567634820000,"y":12.9},{"x":1567634880000,"y":12.9},{"x":1567634940000,"y":12.88},{"x":1567635000000,"y":12.87},{"x":1567635060000,"y":12.87},{"x":1567635120000,"y":12.88},{"x":1567635180000,"y":12.88},{"x":1567635240000,"y":12.89},{"x":1567635300000,"y":12.88},{"x":1567635360000,"y":12.88},{"x":1567635420000,"y":12.88},{"x":1567635480000,"y":12.87},{"x":1567635540000,"y":12.87},{"x":1567635600000,"y":12.88},{"x":1567635660000,"y":12.88},{"x":1567635720000,"y":12.88},{"x":1567635780000,"y":12.88},{"x":1567635840000,"y":12.88},{"x":1567635900000,"y":12.88},{"x":1567635960000,"y":12.88},{"x":1567636020000,"y":12.88},{"x":1567636080000,"y":12.88},{"x":1567636140000,"y":12.89},{"x":1567636200000,"y":12.87},{"x":1567636260000,"y":12.87},{"x":1567636320000,"y":12.87},{"x":1567636380000,"y":12.87},{"x":1567636440000,"y":12.89},{"x":1567636500000,"y":12.88},{"x":1567636560000,"y":12.88},{"x":1567636620000,"y":12.88},{"x":1567636680000,"y":12.87},{"x":1567636740000,"y":12.9},{"x":1567636800000,"y":12.86},{"x":1567636860000,"y":12.86},{"x":1567636920000,"y":12.86},{"x":1567636980000,"y":12.86},{"x":1567637040000,"y":12.88},{"x":1567637100000,"y":12.88},{"x":1567637160000,"y":12.88},{"x":1567637220000,"y":12.88},{"x":1567637280000,"y":12.88},{"x":1567637340000,"y":12.89},{"x":1567637400000,"y":12.89},{"x":1567637460000,"y":12.89},{"x":1567637520000,"y":12.89},{"x":1567637580000,"y":12.89},{"x":1567637640000,"y":12.89},{"x":1567637700000,"y":12.89},{"x":1567637760000,"y":12.88},{"x":1567637820000,"y":12.88},{"x":1567637880000,"y":12.88},{"x":1567637940000,"y":12.88},{"x":1567638000000,"y":12.87},{"x":1567638060000,"y":12.86},{"x":1567638120000,"y":12.86},{"x":1567638180000,"y":12.86},{"x":1567638240000,"y":12.86},{"x":1567638300000,"y":12.89},{"x":1567638360000,"y":12.89},{"x":1567638420000,"y":12.89},{"x":1567638480000,"y":12.89},{"x":1567638540000,"y":12.88},{"x":1567638600000,"y":12.89},{"x":1567638660000,"y":12.88},{"x":1567638720000,"y":12.88},{"x":1567638780000,"y":12.88},{"x":1567638840000,"y":12.88},{"x":1567638900000,"y":12.91},{"x":1567638960000,"y":12.88},{"x":1567639020000,"y":12.89},{"x":1567639080000,"y":12.89},{"x":1567639140000,"y":12.89},{"x":1567639200000,"y":12.89},{"x":1567639260000,"y":12.88},{"x":1567639320000,"y":12.88},{"x":1567639380000,"y":12.88},{"x":1567639440000,"y":12.88},{"x":1567639500000,"y":12.9},{"x":1567639560000,"y":12.89},{"x":1567639620000,"y":12.89},{"x":1567639680000,"y":12.89},{"x":1567639740000,"y":12.89},{"x":1567639800000,"y":12.89},{"x":1567639860000,"y":12.89},{"x":1567639920000,"y":12.89},{"x":1567639980000,"y":12.89},{"x":1567640040000,"y":12.89},{"x":1567640100000,"y":12.89},{"x":1567640160000,"y":12.89},{"x":1567640220000,"y":12.89},{"x":1567640280000,"y":12.88},{"x":1567640340000,"y":12.88},{"x":1567640400000,"y":12.86},{"x":1567640460000,"y":12.9},{"x":1567640520000,"y":12.89},{"x":1567640580000,"y":12.89},{"x":1567640640000,"y":12.89},{"x":1567640700000,"y":12.87},{"x":1567640760000,"y":12.89},{"x":1567640820000,"y":12.89},{"x":1567640880000,"y":12.89},{"x":1567640940000,"y":12.89},{"x":1567641000000,"y":12.89},{"x":1567641060000,"y":13.2},{"x":1567641120000,"y":12.94},{"x":1567641180000,"y":12.94},{"x":1567641240000,"y":12.94},{"x":1567641300000,"y":12.92},{"x":1567641360000,"y":12.92},{"x":1567641420000,"y":12.87},{"x":1567641480000,"y":12.87},{"x":1567641540000,"y":12.87},{"x":1567641600000,"y":12.86},{"x":1567641660000,"y":12.88},{"x":1567641720000,"y":12.9},{"x":1567641780000,"y":12.9},{"x":1567641840000,"y":12.9},{"x":1567641900000,"y":12.89},{"x":1567641960000,"y":12.9},{"x":1567642020000,"y":12.9},{"x":1567642080000,"y":12.9},{"x":1567642140000,"y":12.9},{"x":1567642200000,"y":12.89},{"x":1567642260000,"y":12.9},{"x":1567642320000,"y":12.9},{"x":1567642380000,"y":12.9},{"x":1567642440000,"y":12.9},{"x":1567642500000,"y":12.84},{"x":1567642560000,"y":12.84},{"x":1567642620000,"y":12.9},{"x":1567642680000,"y":12.89},{"x":1567642740000,"y":12.89},{"x":1567642800000,"y":12.9},{"x":1567642860000,"y":12.9},{"x":1567642920000,"y":12.9},{"x":1567642980000,"y":12.89},{"x":1567643040000,"y":12.89},{"x":1567643100000,"y":12.9},{"x":1567643160000,"y":12.9},{"x":1567643220000,"y":12.92},{"x":1567643280000,"y":12.9},{"x":1567643340000,"y":12.9},{"x":1567643400000,"y":12.9},{"x":1567643460000,"y":12.9},{"x":1567643520000,"y":12.91},{"x":1567643580000,"y":12.89},{"x":1567643640000,"y":12.89},{"x":1567643700000,"y":12.89},{"x":1567643760000,"y":12.89},{"x":1567643820000,"y":12.9},{"x":1567643880000,"y":12.88},{"x":1567643940000,"y":12.9},{"x":1567644000000,"y":12.89},{"x":1567644060000,"y":12.89},{"x":1567644120000,"y":12.89},{"x":1567644180000,"y":12.86},{"x":1567644240000,"y":12.86},{"x":1567644300000,"y":12.85},{"x":1567644360000,"y":12.85},{"x":1567644420000,"y":12.86},{"x":1567644480000,"y":12.86},{"x":1567644540000,"y":12.86},{"x":1567644600000,"y":12.87},{"x":1567644660000,"y":12.88},{"x":1567644720000,"y":12.89},{"x":1567644780000,"y":12.86},{"x":1567644840000,"y":12.86},{"x":1567644900000,"y":12.87},{"x":1567644960000,"y":12.87},{"x":1567645020000,"y":12.87},{"x":1567645080000,"y":12.88},{"x":1567645140000,"y":12.88},{"x":1567645200000,"y":12.86},{"x":1567645260000,"y":12.86},{"x":1567645320000,"y":12.86},{"x":1567645380000,"y":12.89},{"x":1567645440000,"y":12.88},{"x":1567645500000,"y":12.88},{"x":1567645560000,"y":12.88},{"x":1567645620000,"y":12.88},{"x":1567645680000,"y":12.89},{"x":1567645740000,"y":12.88},{"x":1567645800000,"y":12.87},{"x":1567645860000,"y":12.87},{"x":1567645920000,"y":12.87},{"x":1567645980000,"y":12.89},{"x":1567646040000,"y":12.88},{"x":1567646100000,"y":12.85},{"x":1567646160000,"y":12.85},{"x":1567646220000,"y":12.86},{"x":1567646280000,"y":12.88},{"x":1567646340000,"y":12.89},{"x":1567646400000,"y":12.86},{"x":1567646460000,"y":12.86},{"x":1567646520000,"y":12.86},{"x":1567646580000,"y":12.87},{"x":1567646640000,"y":12.88},{"x":1567646700000,"y":12.86},{"x":1567646760000,"y":12.85},{"x":1567646820000,"y":12.85},{"x":1567646880000,"y":12.86},{"x":1567646940000,"y":12.88},{"x":1567647000000,"y":12.89},{"x":1567647060000,"y":12.89},{"x":1567647120000,"y":12.89},{"x":1567647180000,"y":12.89},{"x":1567647240000,"y":12.9},{"x":1567647300000,"y":12.88},{"x":1567647360000,"y":12.87},{"x":1567647420000,"y":12.87},{"x":1567647480000,"y":12.87},{"x":1567647540000,"y":12.9},{"x":1567647600000,"y":12.88},{"x":1567647660000,"y":12.88},{"x":1567647720000,"y":12.89},{"x":1567647780000,"y":12.89},{"x":1567647840000,"y":12.9},{"x":1567647900000,"y":12.89},{"x":1567647960000,"y":12.89},{"x":1567648020000,"y":12.89},{"x":1567648080000,"y":12.88},{"x":1567648140000,"y":12.89},{"x":1567648200000,"y":12.88},{"x":1567648260000,"y":12.88},{"x":1567648320000,"y":12.88},{"x":1567648380000,"y":12.89},{"x":1567648440000,"y":12.89},{"x":1567648500000,"y":12.89},{"x":1567648560000,"y":12.89},{"x":1567648620000,"y":12.89},{"x":1567648680000,"y":12.89},{"x":1567648740000,"y":12.91},{"x":1567648800000,"y":12.87},{"x":1567648860000,"y":12.87},{"x":1567648920000,"y":12.87},{"x":1567648980000,"y":12.87},{"x":1567649040000,"y":12.87},{"x":1567649100000,"y":12.89},{"x":1567649160000,"y":12.88},{"x":1567649220000,"y":12.88},{"x":1567649280000,"y":12.88},{"x":1567649340000,"y":12.89},{"x":1567649400000,"y":12.89},{"x":1567649460000,"y":12.88},{"x":1567649520000,"y":12.88},{"x":1567649580000,"y":12.88},{"x":1567649640000,"y":12.88},{"x":1567649700000,"y":12.9},{"x":1567649760000,"y":12.9},{"x":1567649820000,"y":12.89},{"x":1567649880000,"y":12.89},{"x":1567649940000,"y":12.89},{"x":1567650000000,"y":12.88},{"x":1567650060000,"y":12.88},{"x":1567650120000,"y":12.88},{"x":1567650180000,"y":12.88},{"x":1567650240000,"y":12.88},{"x":1567650300000,"y":12.89},{"x":1567650360000,"y":12.89},{"x":1567650420000,"y":12.89},{"x":1567650480000,"y":12.89},{"x":1567650540000,"y":12.89},{"x":1567650600000,"y":12.9},{"x":1567650660000,"y":12.89},{"x":1567650720000,"y":12.89},{"x":1567650780000,"y":12.89},{"x":1567650840000,"y":12.89},{"x":1567650900000,"y":12.91},{"x":1567650960000,"y":12.89},{"x":1567651020000,"y":12.89},{"x":1567651080000,"y":12.89},{"x":1567651140000,"y":12.89},{"x":1567651200000,"y":12.89},{"x":1567651260000,"y":12.9},{"x":1567651320000,"y":12.89},{"x":1567651380000,"y":12.89},{"x":1567651440000,"y":12.89},{"x":1567651500000,"y":12.9},{"x":1567651560000,"y":12.91},{"x":1567651620000,"y":12.9},{"x":1567651680000,"y":12.89},{"x":1567651740000,"y":12.9},{"x":1567651800000,"y":12.9},{"x":1567651860000,"y":12.9},{"x":1567651920000,"y":12.87},{"x":1567651980000,"y":12.87},{"x":1567652040000,"y":12.87},{"x":1567652100000,"y":12.89},{"x":1567652160000,"y":12.91},{"x":1567652220000,"y":12.9},{"x":1567652280000,"y":12.9},{"x":1567652340000,"y":12.9},{"x":1567652400000,"y":12.87},{"x":1567652460000,"y":12.89},{"x":1567652520000,"y":12.89},{"x":1567652580000,"y":12.89},{"x":1567652640000,"y":12.88},{"x":1567652700000,"y":12.87},{"x":1567652760000,"y":12.89},{"x":1567652820000,"y":12.9},{"x":1567652880000,"y":12.9},{"x":1567652940000,"y":12.9},{"x":1567653000000,"y":12.87},{"x":1567653060000,"y":12.89},{"x":1567653120000,"y":12.9},{"x":1567653180000,"y":12.9},{"x":1567653240000,"y":12.9},{"x":1567653300000,"y":12.89},{"x":1567653360000,"y":12.89},{"x":1567653420000,"y":12.91},{"x":1567653480000,"y":12.88},{"x":1567653540000,"y":12.88},{"x":1567653600000,"y":12.88},{"x":1567653660000,"y":12.88},{"x":1567653720000,"y":12.89},{"x":1567653780000,"y":12.88},{"x":1567653840000,"y":12.88},{"x":1567653900000,"y":12.85},{"x":1567653960000,"y":12.85},{"x":1567654020000,"y":12.87},{"x":1567654080000,"y":12.86},{"x":1567654140000,"y":12.87},{"x":1567654200000,"y":12.86},{"x":1567654260000,"y":12.85},{"x":1567654320000,"y":12.87},{"x":1567654380000,"y":12.87},{"x":1567654440000,"y":12.87},{"x":1567654500000,"y":12.87},{"x":1567654560000,"y":12.86},{"x":1567654620000,"y":12.86},{"x":1567654680000,"y":12.85},{"x":1567654740000,"y":12.88},{"x":1567654800000,"y":12.89},{"x":1567654860000,"y":12.89},{"x":1567654920000,"y":12.89},{"x":1567654980000,"y":12.85},{"x":1567655040000,"y":12.85},{"x":1567655100000,"y":12.87},{"x":1567655160000,"y":12.87},{"x":1567655220000,"y":12.88},{"x":1567655280000,"y":12.89},{"x":1567655340000,"y":12.89},{"x":1567655400000,"y":12.89},{"x":1567655460000,"y":12.89},{"x":1567655520000,"y":12.9},{"x":1567655580000,"y":12.88},{"x":1567655640000,"y":12.89},{"x":1567655700000,"y":12.86},{"x":1567655760000,"y":12.86},{"x":1567655820000,"y":12.86},{"x":1567655880000,"y":12.88},{"x":1567655940000,"y":12.87},{"x":1567656000000,"y":12.86},{"x":1567656060000,"y":12.86},{"x":1567656120000,"y":12.86},{"x":1567656180000,"y":12.9},{"x":1567656240000,"y":12.89},{"x":1567656300000,"y":12.88},{"x":1567656360000,"y":12.88},{"x":1567656420000,"y":12.88},{"x":1567656480000,"y":12.9},{"x":1567656540000,"y":12.88},{"x":1567656600000,"y":12.89},{"x":1567656660000,"y":12.89},{"x":1567656720000,"y":12.88},{"x":1567656780000,"y":12.9},{"x":1567656840000,"y":12.89},{"x":1567656900000,"y":12.86},{"x":1567656960000,"y":12.86},{"x":1567657020000,"y":12.86},{"x":1567657080000,"y":12.87},{"x":1567657140000,"y":12.89},{"x":1567657200000,"y":12.88},{"x":1567657260000,"y":12.89},{"x":1567657320000,"y":12.88},{"x":1567657380000,"y":12.89},{"x":1567657440000,"y":12.88},{"x":1567657500000,"y":12.87},{"x":1567657560000,"y":12.87},{"x":1567657620000,"y":12.87},{"x":1567657680000,"y":12.88},{"x":1567657740000,"y":12.89},{"x":1567657800000,"y":12.89},{"x":1567657860000,"y":12.89},{"x":1567657920000,"y":12.89},{"x":1567657980000,"y":12.89},{"x":1567658040000,"y":12.9},{"x":1567658100000,"y":12.88},{"x":1567658160000,"y":12.88},{"x":1567658220000,"y":12.88},{"x":1567658280000,"y":12.88},{"x":1567658340000,"y":12.91},{"x":1567658400000,"y":12.89},{"x":1567658460000,"y":12.89},{"x":1567658520000,"y":12.89},{"x":1567658580000,"y":12.89},{"x":1567658640000,"y":12.89},{"x":1567658700000,"y":12.89},{"x":1567658760000,"y":12.89},{"x":1567658820000,"y":12.89},{"x":1567658880000,"y":12.89},{"x":1567658940000,"y":12.89},{"x":1567659000000,"y":12.89},{"x":1567659060000,"y":12.89},{"x":1567659120000,"y":12.89},{"x":1567659180000,"y":12.89},{"x":1567659240000,"y":12.9},{"x":1567659300000,"y":12.9},{"x":1567659360000,"y":12.9},{"x":1567659420000,"y":12.9},{"x":1567659480000,"y":12.9},{"x":1567659540000,"y":12.9},{"x":1567659600000,"y":12.87},{"x":1567659660000,"y":12.87},{"x":1567659720000,"y":12.87},{"x":1567659780000,"y":12.87},{"x":1567659840000,"y":12.87},{"x":1567659900000,"y":12.91},{"x":1567659960000,"y":12.9},{"x":1567660020000,"y":12.9},{"x":1567660080000,"y":12.9},{"x":1567660140000,"y":12.88},{"x":1567660200000,"y":12.9},{"x":1567660260000,"y":12.89},{"x":1567660320000,"y":12.89},{"x":1567660380000,"y":12.89},{"x":1567660440000,"y":12.89},{"x":1567660500000,"y":12.91},{"x":1567660560000,"y":12.89},{"x":1567660620000,"y":12.89},{"x":1567660680000,"y":12.89},{"x":1567660740000,"y":12.9},{"x":1567660800000,"y":12.9},{"x":1567660860000,"y":12.9},{"x":1567660920000,"y":12.9},{"x":1567660980000,"y":12.89},{"x":1567661040000,"y":12.89},{"x":1567661100000,"y":12.92},{"x":1567661160000,"y":12.9},{"x":1567661220000,"y":12.9},{"x":1567661280000,"y":12.9},{"x":1567661340000,"y":12.9},{"x":1567661400000,"y":12.89},{"x":1567661460000,"y":12.9},{"x":1567661520000,"y":12.9},{"x":1567661580000,"y":12.9},{"x":1567661640000,"y":12.9},{"x":1567661700000,"y":12.91},{"x":1567661760000,"y":12.89},{"x":1567661820000,"y":12.89},{"x":1567661880000,"y":12.89},{"x":1567661940000,"y":12.89},{"x":1567662000000,"y":12.9},{"x":1567662060000,"y":12.91},{"x":1567662120000,"y":12.9},{"x":1567662180000,"y":12.9},{"x":1567662240000,"y":12.9},{"x":1567662300000,"y":12.9},{"x":1567662360000,"y":12.91},{"x":1567662420000,"y":12.89},{"x":1567662480000,"y":12.89},{"x":1567662540000,"y":12.89},{"x":1567662600000,"y":12.87},{"x":1567662660000,"y":12.88},{"x":1567662720000,"y":12.87},{"x":1567662780000,"y":12.88},{"x":1567662840000,"y":12.88},{"x":1567662900000,"y":12.88},{"x":1567662960000,"y":13.2},{"x":1567663020000,"y":12.94},{"x":1567663080000,"y":12.94},{"x":1567663140000,"y":12.94},{"x":1567663200000,"y":12.94},{"x":1567663260000,"y":12.93},{"x":1567663320000,"y":12.88},{"x":1567663380000,"y":12.88},{"x":1567663440000,"y":12.88},{"x":1567663500000,"y":12.89},{"x":1567663560000,"y":12.9},{"x":1567663620000,"y":12.88},{"x":1567663680000,"y":12.88},{"x":1567663740000,"y":12.88},{"x":1567663800000,"y":12.89},{"x":1567663860000,"y":12.89},{"x":1567663920000,"y":12.89},{"x":1567663980000,"y":12.88},{"x":1567664040000,"y":12.88},{"x":1567664100000,"y":12.88},{"x":1567664160000,"y":12.89},{"x":1567664220000,"y":12.89},{"x":1567664280000,"y":12.88},{"x":1567664340000,"y":12.88},{"x":1567664400000,"y":12.86},{"x":1567664460000,"y":12.86},{"x":1567664520000,"y":12.89},{"x":1567664580000,"y":12.89},{"x":1567664640000,"y":12.89},{"x":1567664700000,"y":12.85},{"x":1567664760000,"y":12.85},{"x":1567664820000,"y":12.87},{"x":1567664880000,"y":12.87},{"x":1567664940000,"y":12.87},{"x":1567665000000,"y":12.86},{"x":1567665060000,"y":12.85},{"x":1567665120000,"y":12.88},{"x":1567665180000,"y":12.88},{"x":1567665240000,"y":12.88},{"x":1567665300000,"y":12.88},{"x":1567665360000,"y":12.88},{"x":1567665420000,"y":12.89},{"x":1567665480000,"y":12.88},{"x":1567665540000,"y":12.89},{"x":1567665600000,"y":12.89},{"x":1567665660000,"y":12.89},{"x":1567665720000,"y":12.9},{"x":1567665780000,"y":12.87},{"x":1567665840000,"y":12.87},{"x":1567665900000,"y":12.84},{"x":1567665960000,"y":12.84},{"x":1567666020000,"y":12.84},{"x":1567666080000,"y":12.88},{"x":1567666140000,"y":12.87},{"x":1567666200000,"y":12.87},{"x":1567666260000,"y":12.87},{"x":1567666320000,"y":12.87},{"x":1567666380000,"y":12.88},{"x":1567666440000,"y":12.87},{"x":1567666500000,"y":12.87},{"x":1567666560000,"y":12.87},{"x":1567666620000,"y":12.87},{"x":1567666680000,"y":12.9},{"x":1567666740000,"y":12.88},{"x":1567666800000,"y":12.89},{"x":1567666860000,"y":12.89},{"x":1567666920000,"y":12.89},{"x":1567666980000,"y":12.91},{"x":1567667040000,"y":12.89},{"x":1567667100000,"y":12.89},{"x":1567667160000,"y":12.89},{"x":1567667220000,"y":12.88},{"x":1567667280000,"y":12.9},{"x":1567667340000,"y":12.87},{"x":1567667400000,"y":12.88},{"x":1567667460000,"y":12.88},{"x":1567667520000,"y":12.88},{"x":1567667580000,"y":12.89},{"x":1567667640000,"y":12.89},{"x":1567667700000,"y":12.88},{"x":1567667760000,"y":12.88},{"x":1567667820000,"y":12.88},{"x":1567667880000,"y":12.89},{"x":1567667940000,"y":12.89},{"x":1567668000000,"y":12.89},{"x":1567668060000,"y":12.89},{"x":1567668120000,"y":12.89},{"x":1567668180000,"y":12.9},{"x":1567668240000,"y":12.89},{"x":1567668300000,"y":12.9},{"x":1567668360000,"y":12.9},{"x":1567668420000,"y":12.9},{"x":1567668480000,"y":12.9},{"x":1567668540000,"y":12.91},{"x":1567668600000,"y":12.9},{"x":1567668660000,"y":12.9},{"x":1567668720000,"y":12.9},{"x":1567668780000,"y":12.9},{"x":1567668840000,"y":12.9},{"x":1567668900000,"y":12.89},{"x":1567668960000,"y":12.88},{"x":1567669020000,"y":12.88},{"x":1567669080000,"y":12.89},{"x":1567669140000,"y":12.91},{"x":1567669200000,"y":12.9},{"x":1567669260000,"y":12.9},{"x":1567669320000,"y":12.9},{"x":1567669380000,"y":12.9},{"x":1567669440000,"y":12.9},{"x":1567669500000,"y":12.88},{"x":1567669560000,"y":12.88},{"x":1567669620000,"y":12.88},{"x":1567669680000,"y":12.89},{"x":1567669740000,"y":12.9},{"x":1567669800000,"y":12.9},{"x":1567669860000,"y":12.9},{"x":1567669920000,"y":12.9},{"x":1567669980000,"y":12.9},{"x":1567670040000,"y":12.91},{"x":1567670100000,"y":12.9},{"x":1567670160000,"y":12.89},{"x":1567670220000,"y":12.89},{"x":1567670280000,"y":12.9},{"x":1567670340000,"y":12.91},{"x":1567670400000,"y":12.87},{"x":1567670460000,"y":12.87},{"x":1567670520000,"y":12.87},{"x":1567670580000,"y":12.86},{"x":1567670640000,"y":12.86},{"x":1567670700000,"y":12.91},{"x":1567670760000,"y":12.9},{"x":1567670820000,"y":12.9},{"x":1567670880000,"y":12.9},{"x":1567670940000,"y":12.9},{"x":1567671000000,"y":12.91},{"x":1567671060000,"y":12.9},{"x":1567671120000,"y":12.9},{"x":1567671180000,"y":12.9},{"x":1567671240000,"y":12.9},{"x":1567671300000,"y":12.9},{"x":1567671360000,"y":12.9},{"x":1567671420000,"y":12.9},{"x":1567671480000,"y":12.9},{"x":1567671540000,"y":12.9},{"x":1567671600000,"y":12.91},{"x":1567671660000,"y":12.9},{"x":1567671720000,"y":12.9},{"x":1567671780000,"y":12.9},{"x":1567671840000,"y":12.9},{"x":1567671900000,"y":12.89},{"x":1567671960000,"y":12.88},{"x":1567672020000,"y":12.88},{"x":1567672080000,"y":12.88},{"x":1567672140000,"y":12.88},{"x":1567672200000,"y":12.9},{"x":1567672260000,"y":12.88},{"x":1567672320000,"y":12.88},{"x":1567672380000,"y":12.88},{"x":1567672440000,"y":12.88},{"x":1567672500000,"y":12.87},{"x":1567672560000,"y":12.88},{"x":1567672620000,"y":12.88},{"x":1567672680000,"y":12.88},{"x":1567672740000,"y":12.89},{"x":1567672800000,"y":12.9},{"x":1567672860000,"y":12.87},{"x":1567672920000,"y":12.86},{"x":1567672980000,"y":12.86},{"x":1567673040000,"y":12.86},{"x":1567673100000,"y":12.87},{"x":1567673160000,"y":12.9},{"x":1567673220000,"y":12.88},{"x":1567673280000,"y":12.88},{"x":1567673340000,"y":12.88},{"x":1567673400000,"y":12.88},{"x":1567673460000,"y":12.9},{"x":1567673520000,"y":12.88},{"x":1567673580000,"y":12.88},{"x":1567673640000,"y":12.88},{"x":1567673700000,"y":12.88},{"x":1567673760000,"y":12.9},{"x":1567673820000,"y":12.88},{"x":1567673880000,"y":12.88},{"x":1567673940000,"y":12.88},{"x":1567674000000,"y":12.85},{"x":1567674060000,"y":12.88},{"x":1567674120000,"y":12.88},{"x":1567674180000,"y":12.88},{"x":1567674240000,"y":12.88},{"x":1567674300000,"y":12.88},{"x":1567674360000,"y":12.9},{"x":1567674420000,"y":12.89},{"x":1567674480000,"y":12.89},{"x":1567674540000,"y":12.89},{"x":1567674600000,"y":12.87},{"x":1567674660000,"y":12.88},{"x":1567674720000,"y":12.89},{"x":1567674780000,"y":12.89},{"x":1567674840000,"y":12.89},{"x":1567674900000,"y":12.89},{"x":1567674960000,"y":12.89},{"x":1567675020000,"y":12.9},{"x":1567675080000,"y":12.89},{"x":1567675140000,"y":12.89},{"x":1567675200000,"y":12.88},{"x":1567675260000,"y":12.88},{"x":1567675320000,"y":12.9},{"x":1567675380000,"y":12.89},{"x":1567675440000,"y":12.89},{"x":1567675500000,"y":12.89},{"x":1567675560000,"y":12.89},{"x":1567675620000,"y":12.9},{"x":1567675680000,"y":12.89},{"x":1567675740000,"y":12.88},{"x":1567675800000,"y":12.89},{"x":1567675860000,"y":12.89},{"x":1567675920000,"y":12.9},{"x":1567675980000,"y":12.9},{"x":1567676040000,"y":12.89},{"x":1567676100000,"y":12.89},{"x":1567676160000,"y":12.88},{"x":1567676220000,"y":12.89},{"x":1567676280000,"y":12.89},{"x":1567676340000,"y":12.89},{"x":1567676400000,"y":12.89},{"x":1567676460000,"y":12.89},{"x":1567676520000,"y":12.89},{"x":1567676580000,"y":12.87},{"x":1567676640000,"y":12.87},{"x":1567676700000,"y":12.87},{"x":1567676760000,"y":12.88},{"x":1567676820000,"y":12.91},{"x":1567676880000,"y":12.89},{"x":1567676940000,"y":12.89},{"x":1567677000000,"y":12.87},{"x":1567677060000,"y":13.13},{"x":1567677120000,"y":13.1},{"x":1567677180000,"y":13.1},{"x":1567677240000,"y":13.1},{"x":1567677300000,"y":13.1},{"x":1567677360000,"y":13.09},{"x":1567677420000,"y":13.05},{"x":1567677480000,"y":13.05},{"x":1567677540000,"y":13.05},{"x":1567677600000,"y":13.05},{"x":1567677660000,"y":13.05},{"x":1567677720000,"y":13.04},{"x":1567677780000,"y":13.05},{"x":1567677840000,"y":13.04},{"x":1567677900000,"y":13.04},{"x":1567677960000,"y":13.04},{"x":1567678020000,"y":13.04},{"x":1567678080000,"y":13.05},{"x":1567678140000,"y":13.04},{"x":1567678200000,"y":13.01},{"x":1567678260000,"y":13.01},{"x":1567678320000,"y":13.01},{"x":1567678380000,"y":13.04},{"x":1567678440000,"y":13.04},{"x":1567678500000,"y":13},{"x":1567678560000,"y":13},{"x":1567678620000,"y":13.01},{"x":1567678680000,"y":13.03},{"x":1567678740000,"y":13.04},{"x":1567678800000,"y":13.05},{"x":1567678860000,"y":13.05},{"x":1567678920000,"y":13.05},{"x":1567678980000,"y":13.05},{"x":1567679040000,"y":13.05},{"x":1567679100000,"y":13.02},{"x":1567679160000,"y":13.02},{"x":1567679220000,"y":13.02},{"x":1567679280000,"y":13.04},{"x":1567679340000,"y":13.04},{"x":1567679400000,"y":13.04},{"x":1567679460000,"y":13.04},{"x":1567679520000,"y":13.04},{"x":1567679580000,"y":13.04},{"x":1567679640000,"y":13.05},{"x":1567679700000,"y":13.04},{"x":1567679760000,"y":13.03},{"x":1567679820000,"y":13.04},{"x":1567679880000,"y":13.04},{"x":1567679940000,"y":13.06},{"x":1567680000000,"y":13.05},{"x":1567680060000,"y":13.05},{"x":1567680120000,"y":13.05},{"x":1567680180000,"y":13.05},{"x":1567680240000,"y":13.05},{"x":1567680300000,"y":13.03},{"x":1567680360000,"y":13.03},{"x":1567680420000,"y":13.03},{"x":1567680480000,"y":13.04},{"x":1567680540000,"y":13.05},{"x":1567680600000,"y":13.05},{"x":1567680660000,"y":13.05},{"x":1567680720000,"y":13.05},{"x":1567680780000,"y":13.05},{"x":1567680840000,"y":13.06},{"x":1567680900000,"y":13.05},{"x":1567680960000,"y":13.05},{"x":1567681020000,"y":13.05},{"x":1567681080000,"y":13.05},{"x":1567681140000,"y":13.07},{"x":1567681200000,"y":13},{"x":1567681260000,"y":12.99},{"x":1567681320000,"y":12.99},{"x":1567681380000,"y":12.99},{"x":1567681440000,"y":13.01},{"x":1567681500000,"y":13.01},{"x":1567681560000,"y":13.01},{"x":1567681620000,"y":13.01},{"x":1567681680000,"y":13.01},{"x":1567681740000,"y":13.03},{"x":1567681800000,"y":13.03},{"x":1567681860000,"y":13.02},{"x":1567681920000,"y":13.02},{"x":1567681980000,"y":13.02},{"x":1567682040000,"y":13.02},{"x":1567682100000,"y":13.04},{"x":1567682160000,"y":13.03},{"x":1567682220000,"y":13.03},{"x":1567682280000,"y":13.03},{"x":1567682340000,"y":13.03},{"x":1567682400000,"y":13.03},{"x":1567682460000,"y":13.04},{"x":1567682520000,"y":13.04},{"x":1567682580000,"y":13.04},{"x":1567682640000,"y":13.03},{"x":1567682700000,"y":13.1},{"x":1567682760000,"y":13.03},{"x":1567682820000,"y":13.03},{"x":1567682880000,"y":13.03},{"x":1567682940000,"y":13.03},{"x":1567683000000,"y":13.04},{"x":1567683060000,"y":13.03},{"x":1567683120000,"y":13.03},{"x":1567683180000,"y":13.03},{"x":1567683240000,"y":13.03},{"x":1567683300000,"y":13.02},{"x":1567683360000,"y":13.02},{"x":1567683420000,"y":13.02},{"x":1567683480000,"y":13.02},{"x":1567683540000,"y":13.03},{"x":1567683600000,"y":13.02},{"x":1567683660000,"y":13.03},{"x":1567683720000,"y":13.03},{"x":1567683780000,"y":13.04},{"x":1567683840000,"y":13.04},{"x":1567683900000,"y":13.07},{"x":1567683960000,"y":14.54},{"x":1567684020000,"y":12.93},{"x":1567684080000,"y":12.93},{"x":1567684140000,"y":12.93},{"x":1567684200000,"y":12.94},{"x":1567684260000,"y":12.94},{"x":1567684320000,"y":12.87},{"x":1567684380000,"y":12.87},{"x":1567684440000,"y":12.87},{"x":1567684500000,"y":12.87},{"x":1567684560000,"y":12.87},{"x":1567684620000,"y":12.85},{"x":1567684680000,"y":12.85},{"x":1567684740000,"y":12.85},{"x":1567684800000,"y":12.87},{"x":1567684860000,"y":13.11},{"x":1567684920000,"y":12.93},{"x":1567684980000,"y":12.93},{"x":1567685040000,"y":12.93},{"x":1567685100000,"y":12.91},{"x":1567685160000,"y":12.9},{"x":1567685220000,"y":12.88},{"x":1567685280000,"y":12.88},{"x":1567685340000,"y":12.88},{"x":1567685400000,"y":12.88},{"x":1567685460000,"y":12.88},{"x":1567685520000,"y":12.87},{"x":1567685580000,"y":12.87},{"x":1567685640000,"y":12.87},{"x":1567685700000,"y":12.87},{"x":1567685760000,"y":12.88},{"x":1567685820000,"y":12.88},{"x":1567685880000,"y":12.88},{"x":1567685940000,"y":12.88},{"x":1567686000000,"y":12.87},{"x":1567686060000,"y":12.9},{"x":1567686120000,"y":12.88},{"x":1567686180000,"y":12.88},{"x":1567686240000,"y":12.88},{"x":1567686300000,"y":12.88},{"x":1567686360000,"y":12.88},{"x":1567686420000,"y":12.89},{"x":1567686480000,"y":12.88},{"x":1567686540000,"y":12.88},{"x":1567686600000,"y":12.87},{"x":1567686660000,"y":12.87},{"x":1567686720000,"y":12.88},{"x":1567686780000,"y":12.87},{"x":1567686840000,"y":12.87},{"x":1567686900000,"y":12.88},{"x":1567686960000,"y":12.87},{"x":1567687020000,"y":12.88},{"x":1567687080000,"y":12.87},{"x":1567687140000,"y":12.87},{"x":1567687200000,"y":12.88},{"x":1567687260000,"y":12.88},{"x":1567687320000,"y":12.9},{"x":1567687380000,"y":12.88},{"x":1567687440000,"y":12.88},{"x":1567687500000,"y":12.87},{"x":1567687560000,"y":12.87},{"x":1567687620000,"y":12.88},{"x":1567687680000,"y":12.87},{"x":1567687740000,"y":12.87},{"x":1567687800000,"y":12.86},{"x":1567687860000,"y":12.86},{"x":1567687920000,"y":12.88},{"x":1567687980000,"y":12.89},{"x":1567688040000,"y":12.89},{"x":1567688100000,"y":12.89},{"x":1567688160000,"y":12.89},{"x":1567688220000,"y":12.89},{"x":1567688280000,"y":12.88},{"x":1567688340000,"y":12.88},{"x":1567688400000,"y":12.89},{"x":1567688460000,"y":12.89},{"x":1567688520000,"y":12.9},{"x":1567688580000,"y":12.88},{"x":1567688640000,"y":12.88},{"x":1567688700000,"y":12.86},{"x":1567688760000,"y":12.86},{"x":1567688820000,"y":12.86},{"x":1567688880000,"y":12.88},{"x":1567688940000,"y":12.89},{"x":1567689000000,"y":12.89},{"x":1567689060000,"y":12.89},{"x":1567689120000,"y":12.89},{"x":1567689180000,"y":12.89},{"x":1567689240000,"y":12.88},{"x":1567689300000,"y":12.86},{"x":1567689360000,"y":12.85},{"x":1567689420000,"y":12.87},{"x":1567689480000,"y":12.88},{"x":1567689540000,"y":12.88},{"x":1567689600000,"y":12.89},{"x":1567689660000,"y":12.89},{"x":1567689720000,"y":12.89},{"x":1567689780000,"y":12.89},{"x":1567689840000,"y":12.88},{"x":1567689900000,"y":12.88},{"x":1567689960000,"y":12.89},{"x":1567690020000,"y":12.89},{"x":1567690080000,"y":12.9},{"x":1567690140000,"y":12.89},{"x":1567690200000,"y":12.89},{"x":1567690260000,"y":12.89},{"x":1567690320000,"y":12.89},{"x":1567690380000,"y":12.9},{"x":1567690440000,"y":12.88},{"x":1567690500000,"y":12.87},{"x":1567690560000,"y":12.85},{"x":1567690620000,"y":12.85},{"x":1567690680000,"y":12.86},{"x":1567690740000,"y":12.87},{"x":1567690800000,"y":12.86},{"x":1567690860000,"y":12.86},{"x":1567690920000,"y":12.86},{"x":1567690980000,"y":12.86},{"x":1567691040000,"y":12.86},{"x":1567691100000,"y":12.87},{"x":1567691160000,"y":12.87},{"x":1567691220000,"y":12.88},{"x":1567691280000,"y":12.88},{"x":1567691340000,"y":12.86},{"x":1567691400000,"y":12.86},{"x":1567691460000,"y":12.86},{"x":1567691520000,"y":12.86},{"x":1567691580000,"y":12.86},{"x":1567691640000,"y":12.88},{"x":1567691700000,"y":12.88},{"x":1567691760000,"y":12.88},{"x":1567691820000,"y":12.88},{"x":1567691880000,"y":12.88},{"x":1567691940000,"y":12.89},{"x":1567692000000,"y":12.88},{"x":1567692060000,"y":12.88},{"x":1567692120000,"y":12.87},{"x":1567692180000,"y":12.87},{"x":1567692240000,"y":12.88},{"x":1567692300000,"y":12.89},{"x":1567692360000,"y":12.89},{"x":1567692420000,"y":12.88},{"x":1567692480000,"y":12.88},{"x":1567692540000,"y":12.9},{"x":1567692600000,"y":12.85},{"x":1567692660000,"y":12.85},{"x":1567692720000,"y":12.85},{"x":1567692780000,"y":12.84},{"x":1567692840000,"y":12.86},{"x":1567692900000,"y":12.89},{"x":1567692960000,"y":12.89},{"x":1567693020000,"y":12.88},{"x":1567693080000,"y":12.88},{"x":1567693140000,"y":12.88},{"x":1567693200000,"y":12.87},{"x":1567693260000,"y":12.86},{"x":1567693320000,"y":12.86},{"x":1567693380000,"y":12.86},{"x":1567693440000,"y":12.86},{"x":1567693500000,"y":12.86},{"x":1567693560000,"y":12.85},{"x":1567693620000,"y":12.85},{"x":1567693680000,"y":12.85},{"x":1567693740000,"y":12.85},{"x":1567693800000,"y":12.85},{"x":1567693860000,"y":12.84},{"x":1567693920000,"y":12.84},{"x":1567693980000,"y":12.84},{"x":1567694040000,"y":12.84},{"x":1567694100000,"y":12.9},{"x":1567694160000,"y":12.88},{"x":1567694220000,"y":12.88},{"x":1567694280000,"y":12.88},{"x":1567694340000,"y":12.89},{"x":1567694400000,"y":12.88},{"x":1567694460000,"y":12.87},{"x":1567694520000,"y":12.87},{"x":1567694580000,"y":12.87},{"x":1567694640000,"y":12.88},{"x":1567694700000,"y":12.88},{"x":1567694760000,"y":12.89},{"x":1567694820000,"y":12.89},{"x":1567694880000,"y":12.89},{"x":1567694940000,"y":12.89},{"x":1567695000000,"y":12.89},{"x":1567695060000,"y":12.88},{"x":1567695120000,"y":12.88},{"x":1567695180000,"y":12.88},{"x":1567695240000,"y":12.88},{"x":1567695300000,"y":12.89},{"x":1567695360000,"y":12.88},{"x":1567695420000,"y":12.88},{"x":1567695480000,"y":12.88},{"x":1567695540000,"y":12.88},{"x":1567695600000,"y":12.89},{"x":1567695660000,"y":12.89},{"x":1567695720000,"y":12.88},{"x":1567695780000,"y":12.88},{"x":1567695840000,"y":12.88},{"x":1567695900000,"y":12.87},{"x":1567695960000,"y":12.9},{"x":1567696020000,"y":12.89},{"x":1567696080000,"y":12.89},{"x":1567696140000,"y":12.89},{"x":1567696200000,"y":12.86},{"x":1567696260000,"y":12.88},{"x":1567696320000,"y":12.89},{"x":1567696380000,"y":12.89},{"x":1567696440000,"y":12.89},{"x":1567696500000,"y":12.88},{"x":1567696560000,"y":12.89},{"x":1567696620000,"y":12.89},{"x":1567696680000,"y":12.89},{"x":1567696740000,"y":12.89},{"x":1567696800000,"y":12.89},{"x":1567696860000,"y":12.91},{"x":1567696920000,"y":12.89},{"x":1567696980000,"y":12.89},{"x":1567697040000,"y":12.89},{"x":1567697100000,"y":12.89},{"x":1567697160000,"y":12.9},{"x":1567697220000,"y":12.89},{"x":1567697280000,"y":12.89},{"x":1567697340000,"y":12.89},{"x":1567697400000,"y":12.89},{"x":1567697460000,"y":12.89},{"x":1567697520000,"y":12.9},{"x":1567697580000,"y":12.89},{"x":1567697640000,"y":12.89},{"x":1567697700000,"y":12.87},{"x":1567697760000,"y":12.86},{"x":1567697820000,"y":12.89},{"x":1567697880000,"y":12.88},{"x":1567697940000,"y":12.89},{"x":1567698000000,"y":12.88},{"x":1567698060000,"y":12.89},{"x":1567698120000,"y":12.9},{"x":1567698180000,"y":12.89},{"x":1567698240000,"y":12.89},{"x":1567698300000,"y":12.9},{"x":1567698360000,"y":12.9},{"x":1567698420000,"y":12.9},{"x":1567698480000,"y":12.89},{"x":1567698540000,"y":12.89},{"x":1567698600000,"y":12.89},{"x":1567698660000,"y":12.89},{"x":1567698720000,"y":12.9},{"x":1567698780000,"y":12.89},{"x":1567698840000,"y":12.89},{"x":1567698900000,"y":12.88},{"x":1567698960000,"y":12.88},{"x":1567699020000,"y":12.89},{"x":1567699080000,"y":12.87},{"x":1567699140000,"y":12.87},{"x":1567699200000,"y":12.88},{"x":1567699260000,"y":12.88},{"x":1567699320000,"y":12.89},{"x":1567699380000,"y":12.86},{"x":1567699440000,"y":12.85},{"x":1567699500000,"y":12.87},{"x":1567699560000,"y":12.87},{"x":1567699620000,"y":12.87},{"x":1567699680000,"y":12.9},{"x":1567699740000,"y":12.89},{"x":1567699800000,"y":12.88},{"x":1567699860000,"y":12.87},{"x":1567699920000,"y":12.87},{"x":1567699980000,"y":12.89},{"x":1567700040000,"y":12.88},{"x":1567700100000,"y":12.85},{"x":1567700160000,"y":12.85},{"x":1567700220000,"y":12.84},{"x":1567700280000,"y":12.88},{"x":1567700340000,"y":12.88},{"x":1567700400000,"y":12.85},{"x":1567700460000,"y":12.85},{"x":1567700520000,"y":12.85},{"x":1567700580000,"y":12.87},{"x":1567700640000,"y":12.87},{"x":1567700700000,"y":12.85},{"x":1567700760000,"y":12.85},{"x":1567700820000,"y":12.85},{"x":1567700880000,"y":12.88},{"x":1567700940000,"y":12.88},{"x":1567701000000,"y":12.88},{"x":1567701060000,"y":12.88},{"x":1567701120000,"y":12.88},{"x":1567701180000,"y":12.9},{"x":1567701240000,"y":12.88},{"x":1567701300000,"y":12.88},{"x":1567701360000,"y":12.87},{"x":1567701420000,"y":12.87},{"x":1567701480000,"y":12.89},{"x":1567701540000,"y":12.89},{"x":1567701600000,"y":12.88},{"x":1567701660000,"y":12.88},{"x":1567701720000,"y":12.88},{"x":1567701780000,"y":12.88},{"x":1567701840000,"y":12.87},{"x":1567701900000,"y":12.86},{"x":1567701960000,"y":12.85},{"x":1567702020000,"y":12.85},{"x":1567702080000,"y":12.85},{"x":1567702140000,"y":12.88},{"x":1567702200000,"y":12.85},{"x":1567702260000,"y":12.85},{"x":1567702320000,"y":12.85},{"x":1567702380000,"y":12.85},{"x":1567702440000,"y":12.86},{"x":1567702500000,"y":12.89},{"x":1567702560000,"y":12.89},{"x":1567702620000,"y":12.89},{"x":1567702680000,"y":12.89},{"x":1567702740000,"y":12.9},{"x":1567702800000,"y":12.88},{"x":1567702860000,"y":12.88},{"x":1567702920000,"y":12.88},{"x":1567702980000,"y":12.88},{"x":1567703040000,"y":12.89},{"x":1567703100000,"y":12.89},{"x":1567703160000,"y":12.88},{"x":1567703220000,"y":12.88},{"x":1567703280000,"y":12.88},{"x":1567703340000,"y":12.9},{"x":1567703400000,"y":12.86},{"x":1567703460000,"y":12.86},{"x":1567703520000,"y":12.86},{"x":1567703580000,"y":12.86},{"x":1567703640000,"y":12.88},{"x":1567703700000,"y":12.88},{"x":1567703760000,"y":12.88},{"x":1567703820000,"y":12.88},{"x":1567703880000,"y":12.88},{"x":1567703940000,"y":12.91},{"x":1567704000000,"y":12.97},{"x":1567704060000,"y":12.96},{"x":1567704120000,"y":12.96},{"x":1567704180000,"y":12.96},{"x":1567704240000,"y":12.96},{"x":1567704300000,"y":12.99},{"x":1567704360000,"y":12.98},{"x":1567704420000,"y":12.98},{"x":1567704480000,"y":12.98},{"x":1567704540000,"y":12.98},{"x":1567704600000,"y":12.99},{"x":1567704660000,"y":12.99},{"x":1567704720000,"y":12.99},{"x":1567704780000,"y":12.99},{"x":1567704840000,"y":20.96},{"x":1567704900000,"y":21.31},{"x":1567704960000,"y":14.22},{"x":1567705020000,"y":14.22},{"x":1567705080000,"y":14.22},{"x":1567705140000,"y":14.26},{"x":1567705200000,"y":21.16},{"x":1567705260000,"y":25.11},{"x":1567705320000,"y":25.9},{"x":1567705380000,"y":20.81},{"x":1567705440000,"y":14.24},{"x":1567705500000,"y":14.28},{"x":1567705560000,"y":20.23},{"x":1567705620000,"y":25.37},{"x":1567705680000,"y":15.74},{"x":1567705740000,"y":23.38},{"x":1567705800000,"y":22.35},{"x":1567705860000,"y":14.28},{"x":1567705920000,"y":14.28},{"x":1567705980000,"y":25.73},{"x":1567706040000,"y":25.73},{"x":1567706100000,"y":25.97},{"x":1567706160000,"y":15.45},{"x":1567706220000,"y":14.28},{"x":1567706280000,"y":14.28},{"x":1567706340000,"y":14.29},{"x":1567706400000,"y":14.25},{"x":1567706460000,"y":14.33},{"x":1567706520000,"y":14.32},{"x":1567706580000,"y":14.31},{"x":1567706640000,"y":14.31},{"x":1567706700000,"y":14.32},{"x":1567706760000,"y":14.58},{"x":1567706820000,"y":14.39},{"x":1567706880000,"y":14.39},{"x":1567706940000,"y":14.39},{"x":1567707000000,"y":14.4},{"x":1567707060000,"y":14.37},{"x":1567707120000,"y":14.33},{"x":1567707180000,"y":14.31},{"x":1567707240000,"y":14.31},{"x":1567707300000,"y":14.3},{"x":1567707360000,"y":14.32},{"x":1567707420000,"y":14.32},{"x":1567707480000,"y":14.32},{"x":1567707540000,"y":14.32},{"x":1567707600000,"y":14.31},{"x":1567707660000,"y":14.33},{"x":1567707720000,"y":14.33},{"x":1567707780000,"y":14.33},{"x":1567707840000,"y":14.33},{"x":1567707900000,"y":14.3},{"x":1567707960000,"y":14.31},{"x":1567708020000,"y":14.33},{"x":1567708080000,"y":14.33},{"x":1567708140000,"y":14.33},{"x":1567708200000,"y":14.32},{"x":1567708260000,"y":14.34},{"x":1567708320000,"y":14.33},{"x":1567708380000,"y":14.33},{"x":1567708440000,"y":14.33},{"x":1567708500000,"y":14.33},{"x":1567708560000,"y":14.32},{"x":1567708620000,"y":14.34},{"x":1567708680000,"y":14.32},{"x":1567708740000,"y":14.33},{"x":1567708800000,"y":14.32},{"x":1567708860000,"y":14.32},{"x":1567708920000,"y":14.31},{"x":1567708980000,"y":14.29},{"x":1567709040000,"y":14.29},{"x":1567709100000,"y":14.33},{"x":1567709160000,"y":14.32},{"x":1567709220000,"y":14.33},{"x":1567709280000,"y":14.32},{"x":1567709340000,"y":14.3},{"x":1567709400000,"y":14.28},{"x":1567709460000,"y":14.27},{"x":1567709520000,"y":14.28},{"x":1567709580000,"y":14.28},{"x":1567709640000,"y":14.27},{"x":1567709700000,"y":14.32},{"x":1567709760000,"y":14.32},{"x":1567709820000,"y":14.33},{"x":1567709880000,"y":14.29},{"x":1567709940000,"y":14.29},{"x":1567710000000,"y":14.32},{"x":1567710060000,"y":14.32},{"x":1567710120000,"y":14.33},{"x":1567710180000,"y":14.31},{"x":1567710240000,"y":14.31},{"x":1567710300000,"y":14.31},{"x":1567710360000,"y":14.31},{"x":1567710420000,"y":14.31},{"x":1567710480000,"y":14.27},{"x":1567710540000,"y":14.31},{"x":1567710600000,"y":14.32},{"x":1567710660000,"y":14.32},{"x":1567710720000,"y":14.31},{"x":1567710780000,"y":14.32},{"x":1567710840000,"y":14.31},{"x":1567710900000,"y":14.29},{"x":1567710960000,"y":14.29},{"x":1567711020000,"y":14.3},{"x":1567711080000,"y":14.33},{"x":1567711140000,"y":14.33},{"x":1567711200000,"y":14.31},{"x":1567711260000,"y":14.3},{"x":1567711320000,"y":14.3},{"x":1567711380000,"y":14.32},{"x":1567711440000,"y":14.33},{"x":1567711500000,"y":14.34},{"x":1567711560000,"y":14.32},{"x":1567711620000,"y":14.32},{"x":1567711680000,"y":14.33},{"x":1567711740000,"y":14.32},{"x":1567711800000,"y":14.32},{"x":1567711860000,"y":14.32},{"x":1567711920000,"y":14.32},{"x":1567711980000,"y":14.31},{"x":1567712040000,"y":14.28},{"x":1567712100000,"y":14.31},{"x":1567712160000,"y":14.32},{"x":1567712220000,"y":14.32},{"x":1567712280000,"y":14.33},{"x":1567712340000,"y":14.34},{"x":1567712400000,"y":14.34},{"x":1567712460000,"y":14.34},{"x":1567712520000,"y":14.34},{"x":1567712580000,"y":14.34},{"x":1567712640000,"y":14.33},{"x":1567712700000,"y":14.31},{"x":1567712760000,"y":14.3},{"x":1567712820000,"y":14.3},{"x":1567712880000,"y":14.3},{"x":1567712940000,"y":14.33},{"x":1567713000000,"y":14.32},{"x":1567713060000,"y":14.32},{"x":1567713120000,"y":14.32},{"x":1567713180000,"y":14.32},{"x":1567713240000,"y":14.34},{"x":1567713300000,"y":14.33},{"x":1567713360000,"y":14.33},{"x":1567713420000,"y":14.33},{"x":1567713480000,"y":14.33},{"x":1567713540000,"y":14.35},{"x":1567713600000,"y":14.34},{"x":1567713660000,"y":14.34},{"x":1567713720000,"y":14.34},{"x":1567713780000,"y":14.34},{"x":1567713840000,"y":14.35},{"x":1567713900000,"y":14.34},{"x":1567713960000,"y":14.32},{"x":1567714020000,"y":14.32},{"x":1567714080000,"y":14.32},{"x":1567714140000,"y":14.33},{"x":1567714200000,"y":14.27},{"x":1567714260000,"y":14.28},{"x":1567714320000,"y":14.28},{"x":1567714380000,"y":14.27},{"x":1567714440000,"y":14.3},{"x":1567714500000,"y":14.3},{"x":1567714560000,"y":14.31},{"x":1567714620000,"y":14.32},{"x":1567714680000,"y":14.32},{"x":1567714740000,"y":14.32},{"x":1567714800000,"y":14.35},{"x":1567714860000,"y":14.34},{"x":1567714920000,"y":14.34},{"x":1567714980000,"y":14.34},{"x":1567715040000,"y":14.34},{"x":1567715100000,"y":14.34},{"x":1567715160000,"y":14.31},{"x":1567715220000,"y":14.3},{"x":1567715280000,"y":14.3},{"x":1567715340000,"y":14.3},{"x":1567715400000,"y":14.33},{"x":1567715460000,"y":14.33},{"x":1567715520000,"y":14.33},{"x":1567715580000,"y":14.33},{"x":1567715640000,"y":14.33},{"x":1567715700000,"y":14.34},{"x":1567715760000,"y":14.32},{"x":1567715820000,"y":14.32},{"x":1567715880000,"y":14.32},{"x":1567715940000,"y":14.34},{"x":1567716000000,"y":14.33},{"x":1567716060000,"y":14.33},{"x":1567716120000,"y":14.33},{"x":1567716180000,"y":14.33},{"x":1567716240000,"y":14.33},{"x":1567716300000,"y":14.36},{"x":1567716360000,"y":14.34},{"x":1567716420000,"y":14.33},{"x":1567716480000,"y":14.33},{"x":1567716540000,"y":14.33},{"x":1567716600000,"y":14.34},{"x":1567716660000,"y":14.33},{"x":1567716720000,"y":14.33},{"x":1567716780000,"y":14.33},{"x":1567716840000,"y":14.33},{"x":1567716900000,"y":14.32},{"x":1567716960000,"y":14.34},{"x":1567717020000,"y":14.33},{"x":1567717080000,"y":14.33},{"x":1567717140000,"y":14.33},{"x":1567717200000,"y":14.35},{"x":1567717260000,"y":14.35},{"x":1567717320000,"y":14.34},{"x":1567717380000,"y":14.34},{"x":1567717440000,"y":14.33},{"x":1567717500000,"y":14.35},{"x":1567717560000,"y":14.36},{"x":1567717620000,"y":14.33},{"x":1567717680000,"y":14.33},{"x":1567717740000,"y":14.33},{"x":1567717800000,"y":14.33},{"x":1567717860000,"y":14.34},{"x":1567717920000,"y":14.34},{"x":1567717980000,"y":14.34},{"x":1567718040000,"y":14.34},{"x":1567718100000,"y":14.32},{"x":1567718160000,"y":14.35},{"x":1567718220000,"y":14.33},{"x":1567718280000,"y":14.33},{"x":1567718340000,"y":14.33},{"x":1567718400000,"y":14.32},{"x":1567718460000,"y":14.33},{"x":1567718520000,"y":14.33},{"x":1567718580000,"y":14.33},{"x":1567718640000,"y":14.33},{"x":1567718700000,"y":14.34},{"x":1567718760000,"y":14.35},{"x":1567718820000,"y":14.32},{"x":1567718880000,"y":14.31},{"x":1567718940000,"y":14.31},{"x":1567719000000,"y":14.31},{"x":1567719060000,"y":14.32},{"x":1567719120000,"y":14.33},{"x":1567719180000,"y":14.32},{"x":1567719240000,"y":14.32},{"x":1567719300000,"y":14.33},{"x":1567719360000,"y":14.32},{"x":1567719420000,"y":14.33},{"x":1567719480000,"y":14.32},{"x":1567719540000,"y":14.34},{"x":1567719600000,"y":14.33},{"x":1567719660000,"y":14.33},{"x":1567719720000,"y":14.35},{"x":1567719780000,"y":14.34},{"x":1567719840000,"y":14.34},{"x":1567719900000,"y":14.34},{"x":1567719960000,"y":14.34},{"x":1567720020000,"y":14.34},{"x":1567720080000,"y":14.33},{"x":1567720140000,"y":14.33},{"x":1567720200000,"y":14.32},{"x":1567720260000,"y":14.32},{"x":1567720320000,"y":14.33},{"x":1567720380000,"y":14.33},{"x":1567720440000,"y":14.33},{"x":1567720500000,"y":14.34},{"x":1567720560000,"y":14.34},{"x":1567720620000,"y":14.35},{"x":1567720680000,"y":14.34},{"x":1567720740000,"y":14.34},{"x":1567720800000,"y":14.34},{"x":1567720860000,"y":14.34},{"x":1567720920000,"y":14.35},{"x":1567720980000,"y":14.34},{"x":1567721040000,"y":14.34},{"x":1567721100000,"y":14.35},{"x":1567721160000,"y":14.35},{"x":1567721220000,"y":14.35},{"x":1567721280000,"y":14.31},{"x":1567721340000,"y":14.33},{"x":1567721400000,"y":14.33},{"x":1567721460000,"y":14.33},{"x":1567721520000,"y":14.34},{"x":1567721580000,"y":14.33},{"x":1567721640000,"y":14.33},{"x":1567721700000,"y":14.34},{"x":1567721760000,"y":14.34},{"x":1567721820000,"y":14.34},{"x":1567721880000,"y":14.32},{"x":1567721940000,"y":14.31},{"x":1567722000000,"y":14.34},{"x":1567722060000,"y":14.34},{"x":1567722120000,"y":14.34},{"x":1567722180000,"y":14.36},{"x":1567722240000,"y":14.35},{"x":1567722300000,"y":14.34},{"x":1567722360000,"y":14.34},{"x":1567722420000,"y":14.34},{"x":1567722480000,"y":14.33},{"x":1567722540000,"y":14.31},{"x":1567722600000,"y":14.31},{"x":1567722660000,"y":14.31},{"x":1567722720000,"y":14.31},{"x":1567722780000,"y":14.33},{"x":1567722840000,"y":14.33},{"x":1567722900000,"y":14.34},{"x":1567722960000,"y":14.33},{"x":1567723020000,"y":14.33},{"x":1567723080000,"y":14.34},{"x":1567723140000,"y":14.35},{"x":1567723200000,"y":14.31},{"x":1567723260000,"y":14.31},{"x":1567723320000,"y":14.31},{"x":1567723380000,"y":14.33},{"x":1567723440000,"y":14.32},{"x":1567723500000,"y":14.35},{"x":1567723560000,"y":14.35},{"x":1567723620000,"y":14.35},{"x":1567723680000,"y":14.34},{"x":1567723740000,"y":14.34},{"x":1567723800000,"y":14.31},{"x":1567723860000,"y":13.86},{"x":1567723920000,"y":12.9},{"x":1567723980000,"y":12.9},{"x":1567724040000,"y":12.91},{"x":1567724100000,"y":12.93},{"x":1567724160000,"y":12.93},{"x":1567724220000,"y":12.93},{"x":1567724280000,"y":12.93},{"x":1567724340000,"y":12.93},{"x":1567724400000,"y":12.93},{"x":1567724460000,"y":12.93},{"x":1567724520000,"y":12.93},{"x":1567724580000,"y":12.93},{"x":1567724640000,"y":12.92},{"x":1567724700000,"y":12.92},{"x":1567724760000,"y":12.92},{"x":1567724820000,"y":12.92},{"x":1567724880000,"y":12.92},{"x":1567724940000,"y":12.94},{"x":1567725000000,"y":12.93},{"x":1567725060000,"y":12.93},{"x":1567725120000,"y":12.93},{"x":1567725180000,"y":12.93},{"x":1567725240000,"y":12.94},{"x":1567725300000,"y":12.92},{"x":1567725360000,"y":12.92},{"x":1567725420000,"y":12.92},{"x":1567725480000,"y":12.92},{"x":1567725540000,"y":12.93},{"x":1567725600000,"y":12.9},{"x":1567725660000,"y":12.9},{"x":1567725720000,"y":12.9},{"x":1567725780000,"y":12.91},{"x":1567725840000,"y":12.91},{"x":1567725900000,"y":12.94},{"x":1567725960000,"y":12.92},{"x":1567726020000,"y":12.92},{"x":1567726080000,"y":12.92},{"x":1567726140000,"y":12.92},{"x":1567726200000,"y":12.93},{"x":1567726260000,"y":12.92},{"x":1567726320000,"y":12.92},{"x":1567726380000,"y":12.92},{"x":1567726440000,"y":12.92},{"x":1567726500000,"y":12.93},{"x":1567726560000,"y":12.91},{"x":1567726620000,"y":12.91},{"x":1567726680000,"y":12.91},{"x":1567726740000,"y":12.93},{"x":1567726800000,"y":12.95},{"x":1567726860000,"y":12.94},{"x":1567726920000,"y":12.94},{"x":1567726980000,"y":12.94},{"x":1567727040000,"y":12.94},{"x":1567727100000,"y":12.94},{"x":1567727160000,"y":12.93},{"x":1567727220000,"y":12.93},{"x":1567727280000,"y":12.93},{"x":1567727340000,"y":12.93},{"x":1567727400000,"y":12.95},{"x":1567727460000,"y":12.94},{"x":1567727520000,"y":12.94},{"x":1567727580000,"y":12.94},{"x":1567727640000,"y":12.94},{"x":1567727700000,"y":12.94},{"x":1567727760000,"y":12.92},{"x":1567727820000,"y":12.92},{"x":1567727880000,"y":12.92},{"x":1567727940000,"y":12.92},{"x":1567728000000,"y":12.91},{"x":1567728060000,"y":12.92},{"x":1567728120000,"y":12.92},{"x":1567728180000,"y":12.92},{"x":1567728240000,"y":12.92},{"x":1567728300000,"y":12.92},{"x":1567728360000,"y":12.93},{"x":1567728420000,"y":12.92},{"x":1567728480000,"y":12.91},{"x":1567728540000,"y":12.92},{"x":1567728600000,"y":12.92},{"x":1567728660000,"y":13.22},{"x":1567728720000,"y":12.99},{"x":1567728780000,"y":12.99},{"x":1567728840000,"y":12.99},{"x":1567728900000,"y":12.96},{"x":1567728960000,"y":12.94},{"x":1567729020000,"y":12.9},{"x":1567729080000,"y":12.9},{"x":1567729140000,"y":12.9},{"x":1567729200000,"y":12.91},{"x":1567729260000,"y":12.93},{"x":1567729320000,"y":12.92},{"x":1567729380000,"y":12.92},{"x":1567729440000,"y":12.92},{"x":1567729500000,"y":12.92},{"x":1567729560000,"y":12.93},{"x":1567729620000,"y":12.92},{"x":1567729680000,"y":12.92},{"x":1567729740000,"y":12.91},{"x":1567729800000,"y":12.92},{"x":1567729860000,"y":12.94},{"x":1567729920000,"y":12.93},{"x":1567729980000,"y":12.93},{"x":1567730040000,"y":12.93},{"x":1567730100000,"y":12.89},{"x":1567730160000,"y":12.9},{"x":1567730220000,"y":12.9},{"x":1567730280000,"y":12.9},{"x":1567730340000,"y":12.93},{"x":1567730400000,"y":12.9},{"x":1567730460000,"y":12.9},{"x":1567730520000,"y":12.91},{"x":1567730580000,"y":12.92},{"x":1567730640000,"y":12.92},{"x":1567730700000,"y":12.92},{"x":1567730760000,"y":12.92},{"x":1567730820000,"y":12.92},{"x":1567730880000,"y":12.91},{"x":1567730940000,"y":12.91},{"x":1567731000000,"y":12.93},{"x":1567731060000,"y":12.93},{"x":1567731120000,"y":12.91},{"x":1567731180000,"y":12.89},{"x":1567731240000,"y":12.9},{"x":1567731300000,"y":12.9},{"x":1567731360000,"y":12.9},{"x":1567731420000,"y":12.93},{"x":1567731480000,"y":12.93},{"x":1567731540000,"y":12.93},{"x":1567731600000,"y":12.93},{"x":1567731660000,"y":12.93},{"x":1567731720000,"y":12.94},{"x":1567731780000,"y":12.93},{"x":1567731840000,"y":12.93},{"x":1567731900000,"y":12.93},{"x":1567731960000,"y":12.94},{"x":1567732020000,"y":12.94},{"x":1567732080000,"y":12.92},{"x":1567732140000,"y":12.93},{"x":1567732200000,"y":12.93},{"x":1567732260000,"y":12.93},{"x":1567732320000,"y":12.93},{"x":1567732380000,"y":12.94},{"x":1567732440000,"y":12.93},{"x":1567732500000,"y":12.93},{"x":1567732560000,"y":12.93},{"x":1567732620000,"y":12.93},{"x":1567732680000,"y":12.94},{"x":1567732740000,"y":12.93},{"x":1567732800000,"y":12.92},{"x":1567732860000,"y":12.91},{"x":1567732920000,"y":12.91},{"x":1567732980000,"y":12.93},{"x":1567733040000,"y":12.93},{"x":1567733100000,"y":12.91},{"x":1567733160000,"y":12.9},{"x":1567733220000,"y":12.9},{"x":1567733280000,"y":12.92},{"x":1567733340000,"y":12.92},{"x":1567733400000,"y":12.93},{"x":1567733460000,"y":12.93},{"x":1567733520000,"y":12.93},{"x":1567733580000,"y":12.93},{"x":1567733640000,"y":12.92},{"x":1567733700000,"y":12.94},{"x":1567733760000,"y":12.93},{"x":1567733820000,"y":12.93},{"x":1567733880000,"y":12.94},{"x":1567733940000,"y":12.93},{"x":1567734000000,"y":12.93},{"x":1567734060000,"y":12.93},{"x":1567734120000,"y":12.93},{"x":1567734180000,"y":12.94},{"x":1567734240000,"y":12.93},{"x":1567734300000,"y":12.93},{"x":1567734360000,"y":12.93},{"x":1567734420000,"y":12.93},{"x":1567734480000,"y":12.93},{"x":1567734540000,"y":12.93},{"x":1567734600000,"y":12.91},{"x":1567734660000,"y":12.91},{"x":1567734720000,"y":12.91},{"x":1567734780000,"y":12.91},{"x":1567734840000,"y":12.94},{"x":1567734900000,"y":12.93},{"x":1567734960000,"y":12.93},{"x":1567735020000,"y":12.93},{"x":1567735080000,"y":12.93},{"x":1567735140000,"y":12.94},{"x":1567735200000,"y":12.93},{"x":1567735260000,"y":12.93},{"x":1567735320000,"y":12.93},{"x":1567735380000,"y":12.93},{"x":1567735440000,"y":12.94},{"x":1567735500000,"y":12.92},{"x":1567735560000,"y":12.92},{"x":1567735620000,"y":12.92},{"x":1567735680000,"y":12.92},{"x":1567735740000,"y":12.95},{"x":1567735800000,"y":12.94},{"x":1567735860000,"y":12.94},{"x":1567735920000,"y":12.94},{"x":1567735980000,"y":12.94},{"x":1567736040000,"y":12.95},{"x":1567736100000,"y":12.94},{"x":1567736160000,"y":12.94},{"x":1567736220000,"y":12.94},{"x":1567736280000,"y":12.94},{"x":1567736340000,"y":12.95},{"x":1567736400000,"y":12.94},{"x":1567736460000,"y":12.94},{"x":1567736520000,"y":12.94},{"x":1567736580000,"y":12.94},{"x":1567736640000,"y":12.95},{"x":1567736700000,"y":12.93},{"x":1567736760000,"y":12.93},{"x":1567736820000,"y":12.93},{"x":1567736880000,"y":12.93},{"x":1567736940000,"y":12.93},{"x":1567737000000,"y":12.92},{"x":1567737060000,"y":12.88},{"x":1567737120000,"y":12.88},{"x":1567737180000,"y":12.88},{"x":1567737240000,"y":12.88},{"x":1567737300000,"y":12.94},{"x":1567737360000,"y":12.92},{"x":1567737420000,"y":12.91},{"x":1567737480000,"y":12.91},{"x":1567737540000,"y":12.92},{"x":1567737600000,"y":12.93},{"x":1567737660000,"y":12.92},{"x":1567737720000,"y":12.92},{"x":1567737780000,"y":12.92},{"x":1567737840000,"y":12.92},{"x":1567737900000,"y":12.92},{"x":1567737960000,"y":12.9},{"x":1567738020000,"y":12.9},{"x":1567738080000,"y":12.9},{"x":1567738140000,"y":12.9},{"x":1567738200000,"y":12.91},{"x":1567738260000,"y":12.93},{"x":1567738320000,"y":12.93},{"x":1567738380000,"y":12.93},{"x":1567738440000,"y":12.93},{"x":1567738500000,"y":12.91},{"x":1567738560000,"y":12.92},{"x":1567738620000,"y":12.92},{"x":1567738680000,"y":12.92},{"x":1567738740000,"y":12.92},{"x":1567738800000,"y":12.92},{"x":1567738860000,"y":12.92},{"x":1567738920000,"y":12.92},{"x":1567738980000,"y":12.92},{"x":1567739040000,"y":12.92},{"x":1567739100000,"y":12.9},{"x":1567739160000,"y":12.93},{"x":1567739220000,"y":12.92},{"x":1567739280000,"y":12.92},{"x":1567739340000,"y":12.92},{"x":1567739400000,"y":12.93},{"x":1567739460000,"y":12.93},{"x":1567739520000,"y":12.92},{"x":1567739580000,"y":12.92},{"x":1567739640000,"y":12.92},{"x":1567739700000,"y":12.93},{"x":1567739760000,"y":12.94},{"x":1567739820000,"y":12.92},{"x":1567739880000,"y":12.92},{"x":1567739940000,"y":12.92},{"x":1567740000000,"y":12.92},{"x":1567740060000,"y":12.93},{"x":1567740120000,"y":12.93},{"x":1567740180000,"y":12.93},{"x":1567740240000,"y":12.93},{"x":1567740300000,"y":12.92},{"x":1567740360000,"y":12.93},{"x":1567740420000,"y":12.93},{"x":1567740480000,"y":12.93},{"x":1567740540000,"y":12.93},{"x":1567740600000,"y":12.9},{"x":1567740660000,"y":12.92},{"x":1567740720000,"y":12.92},{"x":1567740780000,"y":12.92},{"x":1567740840000,"y":12.92},{"x":1567740900000,"y":12.92},{"x":1567740960000,"y":12.91},{"x":1567741020000,"y":12.93},{"x":1567741080000,"y":12.91},{"x":1567741140000,"y":12.93},{"x":1567741200000,"y":12.92},{"x":1567741260000,"y":12.92},{"x":1567741320000,"y":12.94},{"x":1567741380000,"y":12.93},{"x":1567741440000,"y":12.93},{"x":1567741500000,"y":12.92},{"x":1567741560000,"y":12.92},{"x":1567741620000,"y":12.92},{"x":1567741680000,"y":12.92},{"x":1567741740000,"y":12.91},{"x":1567741800000,"y":12.93},{"x":1567741860000,"y":12.93},{"x":1567741920000,"y":12.93},{"x":1567741980000,"y":12.91},{"x":1567742040000,"y":12.91},{"x":1567742100000,"y":12.92},{"x":1567742160000,"y":12.93},{"x":1567742220000,"y":12.94},{"x":1567742280000,"y":12.93},{"x":1567742340000,"y":12.93},{"x":1567742400000,"y":12.94},{"x":1567742460000,"y":12.94},{"x":1567742520000,"y":12.95},{"x":1567742580000,"y":12.93},{"x":1567742640000,"y":12.93},{"x":1567742700000,"y":12.94},{"x":1567742760000,"y":12.94},{"x":1567742820000,"y":12.95},{"x":1567742880000,"y":12.93},{"x":1567742940000,"y":12.93},{"x":1567743000000,"y":12.91},{"x":1567743060000,"y":12.91},{"x":1567743120000,"y":12.91},{"x":1567743180000,"y":12.92},{"x":1567743240000,"y":12.91},{"x":1567743300000,"y":12.92},{"x":1567743360000,"y":12.92},{"x":1567743420000,"y":12.92},{"x":1567743480000,"y":12.93},{"x":1567743540000,"y":12.93},{"x":1567743600000,"y":12.93},{"x":1567743660000,"y":12.93},{"x":1567743720000,"y":12.93},{"x":1567743780000,"y":12.94},{"x":1567743840000,"y":12.94},{"x":1567743900000,"y":12.94},{"x":1567743960000,"y":12.94},{"x":1567744020000,"y":12.94},{"x":1567744080000,"y":12.95},{"x":1567744140000,"y":12.94},{"x":1567744200000,"y":12.91},{"x":1567744260000,"y":12.91},{"x":1567744320000,"y":12.91},{"x":1567744380000,"y":12.93},{"x":1567744440000,"y":12.94},{"x":1567744500000,"y":12.94},{"x":1567744560000,"y":12.93},{"x":1567744620000,"y":12.93},{"x":1567744680000,"y":12.95},{"x":1567744740000,"y":12.95},{"x":1567744800000,"y":12.92},{"x":1567744860000,"y":12.92},{"x":1567744920000,"y":12.91},{"x":1567744980000,"y":12.93},{"x":1567745040000,"y":12.91},{"x":1567745100000,"y":12.92},{"x":1567745160000,"y":12.92},{"x":1567745220000,"y":12.92},{"x":1567745280000,"y":12.93},{"x":1567745340000,"y":12.93},{"x":1567745400000,"y":12.92},{"x":1567745460000,"y":12.91},{"x":1567745520000,"y":12.91},{"x":1567745580000,"y":12.91},{"x":1567745640000,"y":12.94},{"x":1567745700000,"y":12.92},{"x":1567745760000,"y":12.91},{"x":1567745820000,"y":12.91},{"x":1567745880000,"y":12.91},{"x":1567745940000,"y":12.92},{"x":1567746000000,"y":12.92},{"x":1567746060000,"y":12.92},{"x":1567746120000,"y":12.92},{"x":1567746180000,"y":12.92},{"x":1567746240000,"y":12.94},{"x":1567746300000,"y":12.91},{"x":1567746360000,"y":12.89},{"x":1567746420000,"y":12.89},{"x":1567746480000,"y":12.89},{"x":1567746540000,"y":12.93},{"x":1567746600000,"y":12.92},{"x":1567746660000,"y":12.93},{"x":1567746720000,"y":12.93},{"x":1567746780000,"y":12.93},{"x":1567746840000,"y":12.95},{"x":1567746900000,"y":12.9},{"x":1567746960000,"y":12.9},{"x":1567747020000,"y":12.9},{"x":1567747080000,"y":12.9},{"x":1567747140000,"y":12.92},{"x":1567747200000,"y":12.93},{"x":1567747260000,"y":12.92},{"x":1567747320000,"y":12.93},{"x":1567747380000,"y":12.93},{"x":1567747440000,"y":12.93},{"x":1567747500000,"y":12.94},{"x":1567747560000,"y":12.93},{"x":1567747620000,"y":12.93},{"x":1567747680000,"y":12.93},{"x":1567747740000,"y":12.93},{"x":1567747800000,"y":12.92},{"x":1567747860000,"y":12.92},{"x":1567747920000,"y":12.92},{"x":1567747980000,"y":12.92},{"x":1567748040000,"y":12.92},{"x":1567748100000,"y":12.93},{"x":1567748160000,"y":12.92},{"x":1567748220000,"y":12.91},{"x":1567748280000,"y":12.91},{"x":1567748340000,"y":12.93},{"x":1567748400000,"y":12.93},{"x":1567748460000,"y":12.92},{"x":1567748520000,"y":12.92},{"x":1567748580000,"y":12.92},{"x":1567748640000,"y":12.92},{"x":1567748700000,"y":12.94},{"x":1567748760000,"y":12.93},{"x":1567748820000,"y":12.93},{"x":1567748880000,"y":12.93},{"x":1567748940000,"y":12.93},{"x":1567749000000,"y":12.92},{"x":1567749060000,"y":12.9},{"x":1567749120000,"y":12.89},{"x":1567749180000,"y":12.89},{"x":1567749240000,"y":12.89},{"x":1567749300000,"y":12.94},{"x":1567749360000,"y":12.93},{"x":1567749420000,"y":12.93},{"x":1567749480000,"y":12.93},{"x":1567749540000,"y":12.93},{"x":1567749600000,"y":12.94},{"x":1567749660000,"y":12.94},{"x":1567749720000,"y":12.94},{"x":1567749780000,"y":12.94},{"x":1567749840000,"y":12.94},{"x":1567749900000,"y":12.92},{"x":1567749960000,"y":12.93},{"x":1567750020000,"y":12.92},{"x":1567750080000,"y":12.92},{"x":1567750140000,"y":12.92},{"x":1567750200000,"y":12.93},{"x":1567750260000,"y":12.95},{"x":1567750320000,"y":12.93},{"x":1567750380000,"y":12.93},{"x":1567750440000,"y":12.92},{"x":1567750500000,"y":12.89},{"x":1567750560000,"y":13.26},{"x":1567750620000,"y":12.99},{"x":1567750680000,"y":12.98},{"x":1567750740000,"y":12.98},{"x":1567750800000,"y":12.98},{"x":1567750860000,"y":12.97},{"x":1567750920000,"y":12.93},{"x":1567750980000,"y":12.93},{"x":1567751040000,"y":12.93},{"x":1567751100000,"y":12.91},{"x":1567751160000,"y":12.93},{"x":1567751220000,"y":12.94},{"x":1567751280000,"y":12.94},{"x":1567751340000,"y":12.94},{"x":1567751400000,"y":12.9},{"x":1567751460000,"y":12.91},{"x":1567751520000,"y":12.94},{"x":1567751580000,"y":12.94},{"x":1567751640000,"y":12.94},{"x":1567751700000,"y":12.92},{"x":1567751760000,"y":12.92},{"x":1567751820000,"y":12.93},{"x":1567751880000,"y":12.93},{"x":1567751940000,"y":12.94},{"x":1567752000000,"y":12.92},{"x":1567752060000,"y":12.92},{"x":1567752120000,"y":12.93},{"x":1567752180000,"y":12.92},{"x":1567752240000,"y":12.92},{"x":1567752300000,"y":12.93},{"x":1567752360000,"y":12.93},{"x":1567752420000,"y":12.94},{"x":1567752480000,"y":12.93},{"x":1567752540000,"y":12.93},{"x":1567752600000,"y":12.91},{"x":1567752660000,"y":12.91},{"x":1567752720000,"y":12.93},{"x":1567752780000,"y":12.92},{"x":1567752840000,"y":12.92},{"x":1567752900000,"y":12.91},{"x":1567752960000,"y":12.91},{"x":1567753020000,"y":12.93},{"x":1567753080000,"y":12.93},{"x":1567753140000,"y":12.93},{"x":1567753200000,"y":12.94},{"x":1567753260000,"y":12.94},{"x":1567753320000,"y":12.95},{"x":1567753380000,"y":12.94},{"x":1567753440000,"y":12.94},{"x":1567753500000,"y":12.94},{"x":1567753560000,"y":12.94},{"x":1567753620000,"y":12.95},{"x":1567753680000,"y":12.94},{"x":1567753740000,"y":12.95},{"x":1567753800000,"y":12.95},{"x":1567753860000,"y":12.95},{"x":1567753920000,"y":12.94},{"x":1567753980000,"y":12.96},{"x":1567754040000,"y":12.94},{"x":1567754100000,"y":12.94},{"x":1567754160000,"y":12.94},{"x":1567754220000,"y":12.94},{"x":1567754280000,"y":12.94},{"x":1567754340000,"y":12.94},{"x":1567754400000,"y":12.95},{"x":1567754460000,"y":12.95},{"x":1567754520000,"y":12.95},{"x":1567754580000,"y":12.95},{"x":1567754640000,"y":12.94},{"x":1567754700000,"y":12.94},{"x":1567754760000,"y":12.94},{"x":1567754820000,"y":12.94},{"x":1567754880000,"y":12.95},{"x":1567754940000,"y":12.94},{"x":1567755000000,"y":12.94},{"x":1567755060000,"y":12.95},{"x":1567755120000,"y":12.95},{"x":1567755180000,"y":12.96},{"x":1567755240000,"y":12.95},{"x":1567755300000,"y":12.95},{"x":1567755360000,"y":12.95},{"x":1567755420000,"y":12.94},{"x":1567755480000,"y":12.96},{"x":1567755540000,"y":12.94},{"x":1567755600000,"y":12.91},{"x":1567755660000,"y":12.9},{"x":1567755720000,"y":12.9},{"x":1567755780000,"y":12.9},{"x":1567755840000,"y":12.94},{"x":1567755900000,"y":12.92},{"x":1567755960000,"y":12.92},{"x":1567756020000,"y":12.92},{"x":1567756080000,"y":12.92},{"x":1567756140000,"y":12.94},{"x":1567756200000,"y":12.93},{"x":1567756260000,"y":12.93},{"x":1567756320000,"y":12.93},{"x":1567756380000,"y":12.93},{"x":1567756440000,"y":12.94},{"x":1567756500000,"y":12.93},{"x":1567756560000,"y":12.93},{"x":1567756620000,"y":12.93},{"x":1567756680000,"y":12.93},{"x":1567756740000,"y":12.95},{"x":1567756800000,"y":12.93},{"x":1567756860000,"y":12.93},{"x":1567756920000,"y":12.93},{"x":1567756980000,"y":12.93},{"x":1567757040000,"y":12.95},{"x":1567757100000,"y":13.27},{"x":1567757160000,"y":13.31},{"x":1567757220000,"y":13.31},{"x":1567757280000,"y":13.31},{"x":1567757340000,"y":13.33},{"x":1567757400000,"y":13.3},{"x":1567757460000,"y":13.27},{"x":1567757520000,"y":13.27},{"x":1567757580000,"y":13.27},{"x":1567757640000,"y":13.28},{"x":1567757700000,"y":13.27},{"x":1567757760000,"y":13.27},{"x":1567757820000,"y":13.27},{"x":1567757880000,"y":13.27},{"x":1567757940000,"y":13.27},{"x":1567758000000,"y":13.25},{"x":1567758060000,"y":13.24},{"x":1567758120000,"y":13.23},{"x":1567758180000,"y":13.23},{"x":1567758240000,"y":13.23},{"x":1567758300000,"y":13.27},{"x":1567758360000,"y":13.26},{"x":1567758420000,"y":13.26},{"x":1567758480000,"y":13.26},{"x":1567758540000,"y":13.26},{"x":1567758600000,"y":13.27},{"x":1567758660000,"y":13.27},{"x":1567758720000,"y":13.27},{"x":1567758780000,"y":13.27},{"x":1567758840000,"y":13.27},{"x":1567758900000,"y":13.28},{"x":1567758960000,"y":13.26},{"x":1567759020000,"y":13.26},{"x":1567759080000,"y":13.26},{"x":1567759140000,"y":13.26},{"x":1567759200000,"y":13.29},{"x":1567759260000,"y":13.27},{"x":1567759320000,"y":13.27},{"x":1567759380000,"y":13.27},{"x":1567759440000,"y":13.27},{"x":1567759500000,"y":13.28},{"x":1567759560000,"y":13.27},{"x":1567759620000,"y":13.27},{"x":1567759680000,"y":13.27},{"x":1567759740000,"y":13.27},{"x":1567759800000,"y":13.26},{"x":1567759860000,"y":13.27},{"x":1567759920000,"y":13.27},{"x":1567759980000,"y":13.27},{"x":1567760040000,"y":13.27},{"x":1567760100000,"y":13.27},{"x":1567760160000,"y":13.27},{"x":1567760220000,"y":13.26},{"x":1567760280000,"y":13.26},{"x":1567760340000,"y":13.26},{"x":1567760400000,"y":13.27},{"x":1567760460000,"y":13.25},{"x":1567760520000,"y":13.24},{"x":1567760580000,"y":13.24},{"x":1567760640000,"y":13.24},{"x":1567760700000,"y":13.26},{"x":1567760760000,"y":13.28},{"x":1567760820000,"y":13.27},{"x":1567760880000,"y":13.27},{"x":1567760940000,"y":13.28},{"x":1567761000000,"y":13.27},{"x":1567761060000,"y":13.29},{"x":1567761120000,"y":13.27},{"x":1567761180000,"y":13.27},{"x":1567761240000,"y":13.27},{"x":1567761300000,"y":13.25},{"x":1567761360000,"y":13.27},{"x":1567761420000,"y":13.28},{"x":1567761480000,"y":13.28},{"x":1567761540000,"y":13.28},{"x":1567761600000,"y":13.29},{"x":1567761660000,"y":13.29},{"x":1567761720000,"y":13.27},{"x":1567761780000,"y":13.27},{"x":1567761840000,"y":13.27},{"x":1567761900000,"y":13.26},{"x":1567761960000,"y":13.27},{"x":1567762020000,"y":13.28},{"x":1567762080000,"y":13.28},{"x":1567762140000,"y":13.28},{"x":1567762200000,"y":13.28},{"x":1567762260000,"y":13.29},{"x":1567762320000,"y":13.27},{"x":1567762380000,"y":13.27},{"x":1567762440000,"y":13.27},{"x":1567762500000,"y":13.28},{"x":1567762560000,"y":13.28},{"x":1567762620000,"y":13.29},{"x":1567762680000,"y":13.28},{"x":1567762740000,"y":13.29},{"x":1567762800000,"y":13.27},{"x":1567762860000,"y":13.27},{"x":1567762920000,"y":13.29},{"x":1567762980000,"y":13.28},{"x":1567763040000,"y":13.29},{"x":1567763100000,"y":13.25},{"x":1567763160000,"y":13.24},{"x":1567763220000,"y":13.28},{"x":1567763280000,"y":13.28},{"x":1567763340000,"y":13.28},{"x":1567763400000,"y":13.25},{"x":1567763460000,"y":13.24},{"x":1567763520000,"y":13.26},{"x":1567763580000,"y":13.26},{"x":1567763640000,"y":13.26},{"x":1567763700000,"y":13.26},{"x":1567763760000,"y":13.26},{"x":1567763820000,"y":13.28},{"x":1567763880000,"y":13.28},{"x":1567763940000,"y":13.28},{"x":1567764000000,"y":13.24},{"x":1567764060000,"y":13.24},{"x":1567764120000,"y":13.25},{"x":1567764180000,"y":13.27},{"x":1567764240000,"y":13.27},{"x":1567764300000,"y":13.26},{"x":1567764360000,"y":13.26},{"x":1567764420000,"y":13.27},{"x":1567764480000,"y":13.28},{"x":1567764540000,"y":13.28},{"x":1567764600000,"y":13.27},{"x":1567764660000,"y":13.27},{"x":1567764720000,"y":13.27},{"x":1567764780000,"y":13.27},{"x":1567764840000,"y":13.26},{"x":1567764900000,"y":13.28},{"x":1567764960000,"y":13.27},{"x":1567765020000,"y":13.27},{"x":1567765080000,"y":13.26},{"x":1567765140000,"y":13.25},{"x":1567765200000,"y":13.26},{"x":1567765260000,"y":13.26},{"x":1567765320000,"y":13.26},{"x":1567765380000,"y":13.26},{"x":1567765440000,"y":13.24},{"x":1567765500000,"y":13.27},{"x":1567765560000,"y":13.27},{"x":1567765620000,"y":13.27},{"x":1567765680000,"y":13.28},{"x":1567765740000,"y":13.27},{"x":1567765800000,"y":13.24},{"x":1567765860000,"y":13.23},{"x":1567765920000,"y":13.23},{"x":1567765980000,"y":13.25},{"x":1567766040000,"y":13.26},{"x":1567766100000,"y":13.24},{"x":1567766160000,"y":13.24},{"x":1567766220000,"y":13.24},{"x":1567766280000,"y":13.26},{"x":1567766340000,"y":13.27},{"x":1567766400000,"y":13.25},{"x":1567766460000,"y":13.25},{"x":1567766520000,"y":13.25},{"x":1567766580000,"y":13.25},{"x":1567766640000,"y":13.26},{"x":1567766700000,"y":13.27},{"x":1567766760000,"y":13.27},{"x":1567766820000,"y":13.27},{"x":1567766880000,"y":13.28},{"x":1567766940000,"y":13.27},{"x":1567767000000,"y":13.27},{"x":1567767060000,"y":13.27},{"x":1567767120000,"y":13.27},{"x":1567767180000,"y":13.27},{"x":1567767240000,"y":13.28},{"x":1567767300000,"y":13.25},{"x":1567767360000,"y":13.24},{"x":1567767420000,"y":13.25},{"x":1567767480000,"y":13.25},{"x":1567767540000,"y":13.27},{"x":1567767600000,"y":13.24},{"x":1567767660000,"y":13.24},{"x":1567767720000,"y":13.24},{"x":1567767780000,"y":13.24},{"x":1567767840000,"y":13.26},{"x":1567767900000,"y":13.25},{"x":1567767960000,"y":13.24},{"x":1567768020000,"y":13.24},{"x":1567768080000,"y":13.25},{"x":1567768140000,"y":13.28},{"x":1567768200000,"y":13.27},{"x":1567768260000,"y":13.27},{"x":1567768320000,"y":13.27},{"x":1567768380000,"y":13.27},{"x":1567768440000,"y":13.28},{"x":1567768500000,"y":13.26},{"x":1567768560000,"y":13.26},{"x":1567768620000,"y":13.26},{"x":1567768680000,"y":13.26},{"x":1567768740000,"y":13.28},{"x":1567768800000,"y":13.27},{"x":1567768860000,"y":14.19},{"x":1567768920000,"y":13.27},{"x":1567768980000,"y":12.99},{"x":1567769040000,"y":12.99},{"x":1567769100000,"y":13.06},{"x":1567769160000,"y":12.99},{"x":1567769220000,"y":12.94},{"x":1567769280000,"y":12.93},{"x":1567769340000,"y":12.93},{"x":1567769400000,"y":12.92},{"x":1567769460000,"y":12.91},{"x":1567769520000,"y":12.91},{"x":1567769580000,"y":12.9},{"x":1567769640000,"y":12.9},{"x":1567769700000,"y":12.92},{"x":1567769760000,"y":12.9},{"x":1567769820000,"y":12.91},{"x":1567769880000,"y":12.91},{"x":1567769940000,"y":12.92},{"x":1567770000000,"y":12.94},{"x":1567770060000,"y":12.93},{"x":1567770120000,"y":12.93},{"x":1567770180000,"y":12.92},{"x":1567770240000,"y":12.93},{"x":1567770300000,"y":12.93},{"x":1567770360000,"y":12.92},{"x":1567770420000,"y":12.92},{"x":1567770480000,"y":12.92},{"x":1567770540000,"y":12.92},{"x":1567770600000,"y":12.92},{"x":1567770660000,"y":12.9},{"x":1567770720000,"y":12.9},{"x":1567770780000,"y":12.9},{"x":1567770840000,"y":12.9},{"x":1567770900000,"y":12.93},{"x":1567770960000,"y":12.94},{"x":1567771020000,"y":12.94},{"x":1567771080000,"y":12.94},{"x":1567771140000,"y":12.94},{"x":1567771200000,"y":12.93},{"x":1567771260000,"y":12.93},{"x":1567771320000,"y":12.93},{"x":1567771380000,"y":12.93},{"x":1567771440000,"y":12.93},{"x":1567771500000,"y":12.93},{"x":1567771560000,"y":12.94},{"x":1567771620000,"y":12.94},{"x":1567771680000,"y":12.93},{"x":1567771740000,"y":12.93},{"x":1567771800000,"y":12.91},{"x":1567771860000,"y":12.94},{"x":1567771920000,"y":12.93},{"x":1567771980000,"y":12.93},{"x":1567772040000,"y":12.93},{"x":1567772100000,"y":12.93},{"x":1567772160000,"y":12.95},{"x":1567772220000,"y":12.94},{"x":1567772280000,"y":12.94},{"x":1567772340000,"y":12.94},{"x":1567772400000,"y":12.94},{"x":1567772460000,"y":13.26},{"x":1567772520000,"y":13},{"x":1567772580000,"y":13},{"x":1567772640000,"y":13},{"x":1567772700000,"y":12.98},{"x":1567772760000,"y":12.97},{"x":1567772820000,"y":12.94},{"x":1567772880000,"y":12.94},{"x":1567772940000,"y":12.94},{"x":1567773000000,"y":12.94},{"x":1567773060000,"y":12.95},{"x":1567773120000,"y":12.94},{"x":1567773180000,"y":12.94},{"x":1567773240000,"y":12.94},{"x":1567773300000,"y":12.94},{"x":1567773360000,"y":12.95},{"x":1567773420000,"y":12.93},{"x":1567773480000,"y":12.93},{"x":1567773540000,"y":12.94},{"x":1567773600000,"y":12.91},{"x":1567773660000,"y":12.93},{"x":1567773720000,"y":12.93},{"x":1567773780000,"y":12.93},{"x":1567773840000,"y":12.93},{"x":1567773900000,"y":12.94},{"x":1567773960000,"y":12.94},{"x":1567774020000,"y":12.95},{"x":1567774080000,"y":12.94},{"x":1567774140000,"y":12.92},{"x":1567774200000,"y":12.91},{"x":1567774260000,"y":12.91},{"x":1567774320000,"y":12.93},{"x":1567774380000,"y":12.91},{"x":1567774440000,"y":12.91},{"x":1567774500000,"y":12.91},{"x":1567774560000,"y":12.91},{"x":1567774620000,"y":12.93},{"x":1567774680000,"y":12.92},{"x":1567774740000,"y":12.92},{"x":1567774800000,"y":12.88},{"x":1567774860000,"y":12.88},{"x":1567774920000,"y":12.9},{"x":1567774980000,"y":12.91},{"x":1567775040000,"y":12.92},{"x":1567775100000,"y":12.92},{"x":1567775160000,"y":12.92},{"x":1567775220000,"y":12.93},{"x":1567775280000,"y":12.93},{"x":1567775340000,"y":12.91},{"x":1567775400000,"y":12.93},{"x":1567775460000,"y":12.92},{"x":1567775520000,"y":12.94},{"x":1567775580000,"y":12.9},{"x":1567775640000,"y":12.9},{"x":1567775700000,"y":12.93},{"x":1567775760000,"y":12.93},{"x":1567775820000,"y":12.94},{"x":1567775880000,"y":12.92},{"x":1567775940000,"y":12.92},{"x":1567776000000,"y":12.93},{"x":1567776060000,"y":12.93},{"x":1567776120000,"y":12.93},{"x":1567776180000,"y":12.9},{"x":1567776240000,"y":12.89},{"x":1567776300000,"y":12.93},{"x":1567776360000,"y":12.93},{"x":1567776420000,"y":12.93},{"x":1567776480000,"y":12.93},{"x":1567776540000,"y":12.92},{"x":1567776600000,"y":12.91},{"x":1567776660000,"y":12.91},{"x":1567776720000,"y":12.91},{"x":1567776780000,"y":12.92},{"x":1567776840000,"y":12.91},{"x":1567776900000,"y":12.93},{"x":1567776960000,"y":12.93},{"x":1567777020000,"y":12.92},{"x":1567777080000,"y":12.93},{"x":1567777140000,"y":12.93},{"x":1567777200000,"y":12.93},{"x":1567777260000,"y":12.93},{"x":1567777320000,"y":12.93},{"x":1567777380000,"y":12.95},{"x":1567777440000,"y":12.94},{"x":1567777500000,"y":12.93},{"x":1567777560000,"y":12.93},{"x":1567777620000,"y":12.93},{"x":1567777680000,"y":12.94},{"x":1567777740000,"y":12.91},{"x":1567777800000,"y":12.92},{"x":1567777860000,"y":12.91},{"x":1567777920000,"y":12.91},{"x":1567777980000,"y":12.93},{"x":1567778040000,"y":12.93},{"x":1567778100000,"y":12.93},{"x":1567778160000,"y":12.93},{"x":1567778220000,"y":12.93},{"x":1567778280000,"y":12.93},{"x":1567778340000,"y":12.95},{"x":1567778400000,"y":12.94},{"x":1567778460000,"y":12.94},{"x":1567778520000,"y":12.94},{"x":1567778580000,"y":12.94},{"x":1567778640000,"y":12.93},{"x":1567778700000,"y":12.92},{"x":1567778760000,"y":12.92},{"x":1567778820000,"y":12.92},{"x":1567778880000,"y":12.92},{"x":1567778940000,"y":12.95},{"x":1567779000000,"y":12.94},{"x":1567779060000,"y":12.94},{"x":1567779120000,"y":12.94},{"x":1567779180000,"y":12.94},{"x":1567779240000,"y":12.94},{"x":1567779300000,"y":12.92},{"x":1567779360000,"y":12.92},{"x":1567779420000,"y":12.92},{"x":1567779480000,"y":12.92},{"x":1567779540000,"y":12.93},{"x":1567779600000,"y":12.93},{"x":1567779660000,"y":12.93},{"x":1567779720000,"y":12.93},{"x":1567779780000,"y":12.93},{"x":1567779840000,"y":12.93},{"x":1567779900000,"y":12.92},{"x":1567779960000,"y":12.92},{"x":1567780020000,"y":12.92},{"x":1567780080000,"y":12.92},{"x":1567780140000,"y":12.93},{"x":1567780200000,"y":12.94},{"x":1567780260000,"y":12.94},{"x":1567780320000,"y":12.94},{"x":1567780380000,"y":12.94},{"x":1567780440000,"y":12.95},{"x":1567780500000,"y":12.94},{"x":1567780560000,"y":12.94},{"x":1567780620000,"y":12.94},{"x":1567780680000,"y":12.94},{"x":1567780740000,"y":12.93},{"x":1567780800000,"y":12.94},{"x":1567780860000,"y":12.93},{"x":1567780920000,"y":12.93},{"x":1567780980000,"y":12.93},{"x":1567781040000,"y":12.93},{"x":1567781100000,"y":12.95},{"x":1567781160000,"y":12.94},{"x":1567781220000,"y":12.94},{"x":1567781280000,"y":12.94},{"x":1567781340000,"y":12.94},{"x":1567781400000,"y":12.95},{"x":1567781460000,"y":12.94},{"x":1567781520000,"y":12.94},{"x":1567781580000,"y":12.94},{"x":1567781640000,"y":12.94},{"x":1567781700000,"y":12.94},{"x":1567781760000,"y":12.93},{"x":1567781820000,"y":12.93},{"x":1567781880000,"y":12.92},{"x":1567781940000,"y":12.93},{"x":1567782000000,"y":12.94},{"x":1567782060000,"y":12.94},{"x":1567782120000,"y":12.94},{"x":1567782180000,"y":12.94},{"x":1567782240000,"y":12.94},{"x":1567782300000,"y":12.94},{"x":1567782360000,"y":12.94},{"x":1567782420000,"y":12.94},{"x":1567782480000,"y":12.94},{"x":1567782540000,"y":12.93},{"x":1567782600000,"y":12.9},{"x":1567782660000,"y":12.94},{"x":1567782720000,"y":12.94},{"x":1567782780000,"y":12.94},{"x":1567782840000,"y":12.94},{"x":1567782900000,"y":12.9},{"x":1567782960000,"y":12.92},{"x":1567783020000,"y":12.91},{"x":1567783080000,"y":12.91},{"x":1567783140000,"y":12.91},{"x":1567783200000,"y":12.94},{"x":1567783260000,"y":12.96},{"x":1567783320000,"y":12.94},{"x":1567783380000,"y":12.94},{"x":1567783440000,"y":12.93},{"x":1567783500000,"y":12.87},{"x":1567783560000,"y":12.89},{"x":1567783620000,"y":12.87},{"x":1567783680000,"y":12.87},{"x":1567783740000,"y":12.87},{"x":1567783800000,"y":12.86},{"x":1567783860000,"y":12.87},{"x":1567783920000,"y":12.85},{"x":1567783980000,"y":12.85},{"x":1567784040000,"y":12.85},{"x":1567784100000,"y":12.86},{"x":1567784160000,"y":12.87},{"x":1567784220000,"y":12.86},{"x":1567784280000,"y":12.86},{"x":1567784340000,"y":12.87},{"x":1567784400000,"y":12.86},{"x":1567784460000,"y":12.87},{"x":1567784520000,"y":12.87},{"x":1567784580000,"y":12.87},{"x":1567784640000,"y":12.87},{"x":1567784700000,"y":12.84},{"x":1567784760000,"y":12.84},{"x":1567784820000,"y":12.86},{"x":1567784880000,"y":12.85},{"x":1567784940000,"y":12.85},{"x":1567785000000,"y":12.85},{"x":1567785060000,"y":12.85},{"x":1567785120000,"y":12.87},{"x":1567785180000,"y":12.86},{"x":1567785240000,"y":12.86},{"x":1567785300000,"y":12.86},{"x":1567785360000,"y":12.86},{"x":1567785420000,"y":12.88},{"x":1567785480000,"y":12.87},{"x":1567785540000,"y":12.87},{"x":1567785600000,"y":12.87},{"x":1567785660000,"y":12.85},{"x":1567785720000,"y":12.87},{"x":1567785780000,"y":12.86},{"x":1567785840000,"y":12.86},{"x":1567785900000,"y":12.84},{"x":1567785960000,"y":12.84},{"x":1567786020000,"y":12.83},{"x":1567786080000,"y":12.81},{"x":1567786140000,"y":12.86},{"x":1567786200000,"y":12.84},{"x":1567786260000,"y":12.84},{"x":1567786320000,"y":12.86},{"x":1567786380000,"y":12.86},{"x":1567786440000,"y":12.86},{"x":1567786500000,"y":12.86},{"x":1567786560000,"y":12.86},{"x":1567786620000,"y":12.87},{"x":1567786680000,"y":12.87},{"x":1567786740000,"y":12.87},{"x":1567786800000,"y":12.86},{"x":1567786860000,"y":12.85},{"x":1567786920000,"y":12.87},{"x":1567786980000,"y":12.87},{"x":1567787040000,"y":12.87},{"x":1567787100000,"y":12.87},{"x":1567787160000,"y":12.87},{"x":1567787220000,"y":12.87},{"x":1567787280000,"y":12.88},{"x":1567787340000,"y":12.87},{"x":1567787400000,"y":12.87},{"x":1567787460000,"y":12.88},{"x":1567787520000,"y":12.88},{"x":1567787580000,"y":12.85},{"x":1567787640000,"y":12.84},{"x":1567787700000,"y":12.87},{"x":1567787760000,"y":12.86},{"x":1567787820000,"y":12.86},{"x":1567787880000,"y":12.87},{"x":1567787940000,"y":12.87},{"x":1567788000000,"y":12.87},{"x":1567788060000,"y":12.87},{"x":1567788120000,"y":12.87},{"x":1567788180000,"y":12.88},{"x":1567788240000,"y":12.87},{"x":1567788300000,"y":12.88},{"x":1567788360000,"y":12.87},{"x":1567788420000,"y":12.87},{"x":1567788480000,"y":12.88},{"x":1567788540000,"y":12.87},{"x":1567788600000,"y":12.85},{"x":1567788660000,"y":12.85},{"x":1567788720000,"y":12.85},{"x":1567788780000,"y":12.87},{"x":1567788840000,"y":12.87},{"x":1567788900000,"y":12.84},{"x":1567788960000,"y":12.84},{"x":1567789020000,"y":12.84},{"x":1567789080000,"y":12.86},{"x":1567789140000,"y":12.87},{"x":1567789200000,"y":12.88},{"x":1567789260000,"y":12.88},{"x":1567789320000,"y":12.88},{"x":1567789380000,"y":12.89},{"x":1567789440000,"y":12.87},{"x":1567789500000,"y":12.87},{"x":1567789560000,"y":12.87},{"x":1567789620000,"y":12.87},{"x":1567789680000,"y":12.87},{"x":1567789740000,"y":13.69},{"x":1567789800000,"y":13.52},{"x":1567789860000,"y":22.09},{"x":1567789920000,"y":24.77},{"x":1567789980000,"y":25.84},{"x":1567790040000,"y":16.14},{"x":1567790100000,"y":14.35},{"x":1567790160000,"y":14.32},{"x":1567790220000,"y":14.32},{"x":1567790280000,"y":14.34},{"x":1567790340000,"y":14.4},{"x":1567790400000,"y":14.41},{"x":1567790460000,"y":14.4},{"x":1567790520000,"y":14.4},{"x":1567790580000,"y":14.4},{"x":1567790640000,"y":14.41},{"x":1567790700000,"y":14.4},{"x":1567790760000,"y":14.41},{"x":1567790820000,"y":14.4},{"x":1567790880000,"y":14.4},{"x":1567790940000,"y":14.42},{"x":1567791000000,"y":14.4},{"x":1567791060000,"y":14.4},{"x":1567791120000,"y":14.4},{"x":1567791180000,"y":14.4},{"x":1567791240000,"y":14.41},{"x":1567791300000,"y":14.41},{"x":1567791360000,"y":14.41},{"x":1567791420000,"y":14.41},{"x":1567791480000,"y":14.41},{"x":1567791540000,"y":14.43},{"x":1567791600000,"y":14.42},{"x":1567791660000,"y":14.42},{"x":1567791720000,"y":14.42},{"x":1567791780000,"y":14.42},{"x":1567791840000,"y":14.43},{"x":1567791900000,"y":14.39},{"x":1567791960000,"y":14.39},{"x":1567792020000,"y":14.39},{"x":1567792080000,"y":14.38},{"x":1567792140000,"y":14.4},{"x":1567792200000,"y":14.4},{"x":1567792260000,"y":14.4},{"x":1567792320000,"y":22.54},{"x":1567792380000,"y":23.35},{"x":1567792440000,"y":14.38},{"x":1567792500000,"y":14.4},{"x":1567792560000,"y":14.38},{"x":1567792620000,"y":14.38},{"x":1567792680000,"y":14.38},{"x":1567792740000,"y":14.38},{"x":1567792800000,"y":14.41},{"x":1567792860000,"y":14.39},{"x":1567792920000,"y":14.39},{"x":1567792980000,"y":14.39},{"x":1567793040000,"y":14.39},{"x":1567793100000,"y":14.44},{"x":1567793160000,"y":14.43},{"x":1567793220000,"y":14.43},{"x":1567793280000,"y":14.43},{"x":1567793340000,"y":14.44},{"x":1567793400000,"y":14.44},{"x":1567793460000,"y":14.4},{"x":1567793520000,"y":14.4},{"x":1567793580000,"y":14.4},{"x":1567793640000,"y":14.4},{"x":1567793700000,"y":14.43},{"x":1567793760000,"y":14.43},{"x":1567793820000,"y":14.43},{"x":1567793880000,"y":14.43},{"x":1567793940000,"y":14.43},{"x":1567794000000,"y":14.44},{"x":1567794060000,"y":14.41},{"x":1567794120000,"y":14.39},{"x":1567794180000,"y":14.4},{"x":1567794240000,"y":14.39},{"x":1567794300000,"y":14.43},{"x":1567794360000,"y":14.73},{"x":1567794420000,"y":14.48},{"x":1567794480000,"y":14.46},{"x":1567794540000,"y":14.46},{"x":1567794600000,"y":14.46},{"x":1567794660000,"y":14.42},{"x":1567794720000,"y":14.4},{"x":1567794780000,"y":14.4},{"x":1567794840000,"y":14.4},{"x":1567794900000,"y":14.41},{"x":1567794960000,"y":14.41},{"x":1567795020000,"y":14.4},{"x":1567795080000,"y":14.4},{"x":1567795140000,"y":14.41},{"x":1567795200000,"y":14.41},{"x":1567795260000,"y":14.42},{"x":1567795320000,"y":14.42},{"x":1567795380000,"y":14.42},{"x":1567795440000,"y":14.42},{"x":1567795500000,"y":14.42},{"x":1567795560000,"y":14.42},{"x":1567795620000,"y":14.4},{"x":1567795680000,"y":14.4},{"x":1567795740000,"y":14.4},{"x":1567795800000,"y":14.42},{"x":1567795860000,"y":14.42},{"x":1567795920000,"y":14.41},{"x":1567795980000,"y":14.41},{"x":1567796040000,"y":14.41},{"x":1567796100000,"y":14.41},{"x":1567796160000,"y":14.43},{"x":1567796220000,"y":14.42},{"x":1567796280000,"y":14.41},{"x":1567796340000,"y":14.41},{"x":1567796400000,"y":14.38},{"x":1567796460000,"y":14.38},{"x":1567796520000,"y":14.4},{"x":1567796580000,"y":14.39},{"x":1567796640000,"y":14.39},{"x":1567796700000,"y":14.39},{"x":1567796760000,"y":14.38},{"x":1567796820000,"y":14.41},{"x":1567796880000,"y":14.41},{"x":1567796940000,"y":14.41},{"x":1567797000000,"y":14.42},{"x":1567797060000,"y":14.42},{"x":1567797120000,"y":14.43},{"x":1567797180000,"y":14.42},{"x":1567797240000,"y":14.42},{"x":1567797300000,"y":14.42},{"x":1567797360000,"y":14.41},{"x":1567797420000,"y":14.43},{"x":1567797480000,"y":14.42},{"x":1567797540000,"y":14.42},{"x":1567797600000,"y":14.43},{"x":1567797660000,"y":14.43},{"x":1567797720000,"y":14.44},{"x":1567797780000,"y":14.43},{"x":1567797840000,"y":14.41},{"x":1567797900000,"y":14.41},{"x":1567797960000,"y":14.41},{"x":1567798020000,"y":14.43},{"x":1567798080000,"y":14.41},{"x":1567798140000,"y":14.42},{"x":1567798200000,"y":14.42},{"x":1567798260000,"y":14.42},{"x":1567798320000,"y":14.42},{"x":1567798380000,"y":14.44},{"x":1567798440000,"y":14.43},{"x":1567798500000,"y":14.43},{"x":1567798560000,"y":14.43},{"x":1567798620000,"y":14.42},{"x":1567798680000,"y":14.44},{"x":1567798740000,"y":14.43},{"x":1567798800000,"y":14.41},{"x":1567798860000,"y":14.41},{"x":1567798920000,"y":14.41},{"x":1567798980000,"y":14.42},{"x":1567799040000,"y":14.4},{"x":1567799100000,"y":14.39},{"x":1567799160000,"y":14.39},{"x":1567799220000,"y":14.39},{"x":1567799280000,"y":14.42},{"x":1567799340000,"y":14.42},{"x":1567799400000,"y":14.43},{"x":1567799460000,"y":14.43},{"x":1567799520000,"y":14.43},{"x":1567799580000,"y":14.43},{"x":1567799640000,"y":14.41},{"x":1567799700000,"y":14.43},{"x":1567799760000,"y":14.43},{"x":1567799820000,"y":14.43},{"x":1567799880000,"y":14.43},{"x":1567799940000,"y":14.42},{"x":1567800000000,"y":14.43},{"x":1567800060000,"y":14.43},{"x":1567800120000,"y":14.43},{"x":1567800180000,"y":14.45},{"x":1567800240000,"y":14.42},{"x":1567800300000,"y":14.42},{"x":1567800360000,"y":14.41},{"x":1567800420000,"y":14.37},{"x":1567800480000,"y":20.08},{"x":1567800540000,"y":21.62},{"x":1567800600000,"y":18.87},{"x":1567800660000,"y":25.78},{"x":1567800720000,"y":21.74},{"x":1567800780000,"y":26.07},{"x":1567800840000,"y":15.02},{"x":1567800900000,"y":14.54},{"x":1567800960000,"y":14.54},{"x":1567801020000,"y":14.54},{"x":1567801080000,"y":14.54},{"x":1567801140000,"y":14.58},{"x":1567801200000,"y":14.58},{"x":1567801260000,"y":14.58},{"x":1567801320000,"y":14.58},{"x":1567801380000,"y":14.59},{"x":1567801440000,"y":14.61},{"x":1567801500000,"y":14.59},{"x":1567801560000,"y":14.59},{"x":1567801620000,"y":14.59},{"x":1567801680000,"y":14.59},{"x":1567801740000,"y":14.6},{"x":1567801800000,"y":14.59},{"x":1567801860000,"y":14.57},{"x":1567801920000,"y":14.57},{"x":1567801980000,"y":14.57},{"x":1567802040000,"y":14.58},{"x":1567802100000,"y":14.58},{"x":1567802160000,"y":14.59},{"x":1567802220000,"y":14.59},{"x":1567802280000,"y":14.36},{"x":1567802340000,"y":14.36},{"x":1567802400000,"y":14.36},{"x":1567802460000,"y":14.36},{"x":1567802520000,"y":14.36},{"x":1567802580000,"y":14.36},{"x":1567802640000,"y":14.36},{"x":1567802700000,"y":14.33},{"x":1567802760000,"y":14.33},{"x":1567802820000,"y":14.32},{"x":1567802880000,"y":14.31},{"x":1567802940000,"y":14.31},{"x":1567803000000,"y":14.33},{"x":1567803060000,"y":14.31},{"x":1567803120000,"y":14.31},{"x":1567803180000,"y":14.31},{"x":1567803240000,"y":14.31},{"x":1567803300000,"y":14.33},{"x":1567803360000,"y":14.32},{"x":1567803420000,"y":14.32},{"x":1567803480000,"y":14.32},{"x":1567803540000,"y":14.32},{"x":1567803600000,"y":14.35},{"x":1567803660000,"y":14.35},{"x":1567803720000,"y":14.35},{"x":1567803780000,"y":14.35},{"x":1567803840000,"y":14.35},{"x":1567803900000,"y":14.36},{"x":1567803960000,"y":14.34},{"x":1567804020000,"y":14.32},{"x":1567804080000,"y":14.32},{"x":1567804140000,"y":14.33},{"x":1567804200000,"y":14.33},{"x":1567804260000,"y":14.33},{"x":1567804320000,"y":14.33},{"x":1567804380000,"y":14.33},{"x":1567804440000,"y":14.33},{"x":1567804500000,"y":14.33},{"x":1567804560000,"y":14.34},{"x":1567804620000,"y":14.34},{"x":1567804680000,"y":14.34},{"x":1567804740000,"y":14.34},{"x":1567804800000,"y":14.33},{"x":1567804860000,"y":14.33},{"x":1567804920000,"y":14.34},{"x":1567804980000,"y":14.34},{"x":1567805040000,"y":14.34},{"x":1567805100000,"y":14.32},{"x":1567805160000,"y":14.34},{"x":1567805220000,"y":14.33},{"x":1567805280000,"y":14.33},{"x":1567805340000,"y":14.33},{"x":1567805400000,"y":14.32},{"x":1567805460000,"y":14.34},{"x":1567805520000,"y":14.34},{"x":1567805580000,"y":14.34},{"x":1567805640000,"y":14.34},{"x":1567805700000,"y":14.35},{"x":1567805760000,"y":14.35},{"x":1567805820000,"y":14.34},{"x":1567805880000,"y":14.34},{"x":1567805940000,"y":14.36},{"x":1567806000000,"y":14.33},{"x":1567806060000,"y":14.35},{"x":1567806120000,"y":14.35},{"x":1567806180000,"y":14.36},{"x":1567806240000,"y":14.34},{"x":1567806300000,"y":14.34},{"x":1567806360000,"y":14.35},{"x":1567806420000,"y":14.34},{"x":1567806480000,"y":14.34},{"x":1567806540000,"y":14.34},{"x":1567806600000,"y":14.34},{"x":1567806660000,"y":14.35},{"x":1567806720000,"y":14.34},{"x":1567806780000,"y":14.34},{"x":1567806840000,"y":14.34},{"x":1567806900000,"y":14.32},{"x":1567806960000,"y":14.32},{"x":1567807020000,"y":14.31},{"x":1567807080000,"y":14.31},{"x":1567807140000,"y":14.31},{"x":1567807200000,"y":14.33},{"x":1567807260000,"y":14.35},{"x":1567807320000,"y":14.35},{"x":1567807380000,"y":14.35},{"x":1567807440000,"y":14.34},{"x":1567807500000,"y":14.31},{"x":1567807560000,"y":14.31},{"x":1567807620000,"y":14.35},{"x":1567807680000,"y":14.34},{"x":1567807740000,"y":14.34},{"x":1567807800000,"y":14.36},{"x":1567807860000,"y":14.35},{"x":1567807920000,"y":14.36},{"x":1567807980000,"y":14.35},{"x":1567808040000,"y":14.35},{"x":1567808100000,"y":14.36},{"x":1567808160000,"y":14.36},{"x":1567808220000,"y":14.36},{"x":1567808280000,"y":14.34},{"x":1567808340000,"y":14.34},{"x":1567808400000,"y":14.34},{"x":1567808460000,"y":14.34},{"x":1567808520000,"y":14.35},{"x":1567808580000,"y":14.34},{"x":1567808640000,"y":14.33},{"x":1567808700000,"y":14.34},{"x":1567808760000,"y":14.34},{"x":1567808820000,"y":14.34},{"x":1567808880000,"y":14.34},{"x":1567808940000,"y":14.34},{"x":1567809000000,"y":14.33},{"x":1567809060000,"y":14.33},{"x":1567809120000,"y":14.34},{"x":1567809180000,"y":14.32},{"x":1567809240000,"y":14.32},{"x":1567809300000,"y":14.33},{"x":1567809360000,"y":14.33},{"x":1567809420000,"y":14.34},{"x":1567809480000,"y":14.34},{"x":1567809540000,"y":14.34},{"x":1567809600000,"y":14.34},{"x":1567809660000,"y":14.33},{"x":1567809720000,"y":14.33},{"x":1567809780000,"y":16.29},{"x":1567809840000,"y":26.14},{"x":1567809900000,"y":18.05},{"x":1567809960000,"y":14.22},{"x":1567810020000,"y":14.23},{"x":1567810080000,"y":22.11},{"x":1567810140000,"y":19.82},{"x":1567810200000,"y":15.12},{"x":1567810260000,"y":26.44},{"x":1567810320000,"y":15.61},{"x":1567810380000,"y":14.29},{"x":1567810440000,"y":14.28},{"x":1567810500000,"y":14.27},{"x":1567810560000,"y":14.27},{"x":1567810620000,"y":14.27},{"x":1567810680000,"y":14.29},{"x":1567810740000,"y":14.29},{"x":1567810800000,"y":14.28},{"x":1567810860000,"y":14.28},{"x":1567810920000,"y":14.28},{"x":1567810980000,"y":14.3},{"x":1567811040000,"y":14.31},{"x":1567811100000,"y":14.28},{"x":1567811160000,"y":14.28},{"x":1567811220000,"y":14.28},{"x":1567811280000,"y":14.29},{"x":1567811340000,"y":14.29},{"x":1567811400000,"y":14.27},{"x":1567811460000,"y":14.27},{"x":1567811520000,"y":14.27},{"x":1567811580000,"y":14.27},{"x":1567811640000,"y":14.3},{"x":1567811700000,"y":14.28},{"x":1567811760000,"y":14.28},{"x":1567811820000,"y":14.28},{"x":1567811880000,"y":14.28},{"x":1567811940000,"y":14.3},{"x":1567812000000,"y":14.28},{"x":1567812060000,"y":14.28},{"x":1567812120000,"y":14.28},{"x":1567812180000,"y":14.28},{"x":1567812240000,"y":14.32},{"x":1567812300000,"y":14.3},{"x":1567812360000,"y":14.28},{"x":1567812420000,"y":14.28},{"x":1567812480000,"y":14.27},{"x":1567812540000,"y":14.29},{"x":1567812600000,"y":14.26},{"x":1567812660000,"y":14.26},{"x":1567812720000,"y":14.26},{"x":1567812780000,"y":14.26},{"x":1567812840000,"y":14.28},{"x":1567812900000,"y":14.3},{"x":1567812960000,"y":14},{"x":1567813020000,"y":12.98},{"x":1567813080000,"y":12.98},{"x":1567813140000,"y":12.99},{"x":1567813200000,"y":12.96},{"x":1567813260000,"y":12.96},{"x":1567813320000,"y":12.96},{"x":1567813380000,"y":12.96},{"x":1567813440000,"y":12.96},{"x":1567813500000,"y":12.99},{"x":1567813560000,"y":12.98},{"x":1567813620000,"y":12.98},{"x":1567813680000,"y":12.98},{"x":1567813740000,"y":12.98},{"x":1567813800000,"y":12.99},{"x":1567813860000,"y":12.98},{"x":1567813920000,"y":12.98},{"x":1567813980000,"y":12.98},{"x":1567814040000,"y":12.98},{"x":1567814100000,"y":13.01},{"x":1567814160000,"y":13},{"x":1567814220000,"y":13},{"x":1567814280000,"y":13},{"x":1567814340000,"y":13},{"x":1567814400000,"y":13},{"x":1567814460000,"y":12.99},{"x":1567814520000,"y":12.99},{"x":1567814580000,"y":12.99},{"x":1567814640000,"y":12.99},{"x":1567814700000,"y":13},{"x":1567814760000,"y":13},{"x":1567814820000,"y":13},{"x":1567814880000,"y":13},{"x":1567814940000,"y":12.99},{"x":1567815000000,"y":12.98},{"x":1567815060000,"y":12.98},{"x":1567815120000,"y":12.98},{"x":1567815180000,"y":12.98},{"x":1567815240000,"y":12.98},{"x":1567815300000,"y":12.99},{"x":1567815360000,"y":13},{"x":1567815420000,"y":12.99},{"x":1567815480000,"y":12.99},{"x":1567815540000,"y":12.99},{"x":1567815600000,"y":13},{"x":1567815660000,"y":13},{"x":1567815720000,"y":13},{"x":1567815780000,"y":13},{"x":1567815840000,"y":13},{"x":1567815900000,"y":12.99},{"x":1567815960000,"y":12.99},{"x":1567816020000,"y":12.98},{"x":1567816080000,"y":12.98},{"x":1567816140000,"y":12.98},{"x":1567816200000,"y":12.97},{"x":1567816260000,"y":13.31},{"x":1567816320000,"y":13.06},{"x":1567816380000,"y":13.06},{"x":1567816440000,"y":13.06},{"x":1567816500000,"y":13.06},{"x":1567816560000,"y":13.03},{"x":1567816620000,"y":12.99},{"x":1567816680000,"y":13},{"x":1567816740000,"y":12.99},{"x":1567816800000,"y":12.97},{"x":1567816860000,"y":12.99},{"x":1567816920000,"y":12.99},{"x":1567816980000,"y":12.99},{"x":1567817040000,"y":12.99},{"x":1567817100000,"y":12.98},{"x":1567817160000,"y":12.99},{"x":1567817220000,"y":13},{"x":1567817280000,"y":13},{"x":1567817340000,"y":13},{"x":1567817400000,"y":13},{"x":1567817460000,"y":13.01},{"x":1567817520000,"y":13.01},{"x":1567817580000,"y":13.01},{"x":1567817640000,"y":13.01},{"x":1567817700000,"y":13.01},{"x":1567817760000,"y":13.02},{"x":1567817820000,"y":12.97},{"x":1567817880000,"y":12.97},{"x":1567817940000,"y":12.97},{"x":1567818000000,"y":13.01},{"x":1567818060000,"y":13.01},{"x":1567818120000,"y":13.02},{"x":1567818180000,"y":13.01},{"x":1567818240000,"y":13.01},{"x":1567818300000,"y":12.98},{"x":1567818360000,"y":12.98},{"x":1567818420000,"y":13.01},{"x":1567818480000,"y":13.01},{"x":1567818540000,"y":13.01},{"x":1567818600000,"y":12.99},{"x":1567818660000,"y":12.99},{"x":1567818720000,"y":13.01},{"x":1567818780000,"y":13},{"x":1567818840000,"y":13},{"x":1567818900000,"y":13},{"x":1567818960000,"y":12.99},{"x":1567819020000,"y":13},{"x":1567819080000,"y":12.99},{"x":1567819140000,"y":12.99},{"x":1567819200000,"y":12.99},{"x":1567819260000,"y":12.99},{"x":1567819320000,"y":13},{"x":1567819380000,"y":13},{"x":1567819440000,"y":13},{"x":1567819500000,"y":13.01},{"x":1567819560000,"y":13.01},{"x":1567819620000,"y":13.02},{"x":1567819680000,"y":13.01},{"x":1567819740000,"y":13.01},{"x":1567819800000,"y":13.01},{"x":1567819860000,"y":13.01},{"x":1567819920000,"y":13.02},{"x":1567819980000,"y":13},{"x":1567820040000,"y":13},{"x":1567820100000,"y":13},{"x":1567820160000,"y":13.01},{"x":1567820220000,"y":13},{"x":1567820280000,"y":13.01},{"x":1567820340000,"y":13.01},{"x":1567820400000,"y":13},{"x":1567820460000,"y":12.99},{"x":1567820520000,"y":12.99},{"x":1567820580000,"y":13.01},{"x":1567820640000,"y":13.01},{"x":1567820700000,"y":12.96},{"x":1567820760000,"y":12.95},{"x":1567820820000,"y":12.96},{"x":1567820880000,"y":12.99},{"x":1567820940000,"y":12.99},{"x":1567821000000,"y":13},{"x":1567821060000,"y":13},{"x":1567821120000,"y":12.99},{"x":1567821180000,"y":13},{"x":1567821240000,"y":12.98},{"x":1567821300000,"y":12.99},{"x":1567821360000,"y":12.99},{"x":1567821420000,"y":12.99},{"x":1567821480000,"y":13},{"x":1567821540000,"y":12.99},{"x":1567821600000,"y":12.95},{"x":1567821660000,"y":12.95},{"x":1567821720000,"y":12.95},{"x":1567821780000,"y":12.97},{"x":1567821840000,"y":12.99},{"x":1567821900000,"y":12.98},{"x":1567821960000,"y":12.98},{"x":1567822020000,"y":12.98},{"x":1567822080000,"y":12.99},{"x":1567822140000,"y":12.99},{"x":1567822200000,"y":12.99},{"x":1567822260000,"y":12.99},{"x":1567822320000,"y":13},{"x":1567822380000,"y":13},{"x":1567822440000,"y":12.99},{"x":1567822500000,"y":12.96},{"x":1567822560000,"y":12.96},{"x":1567822620000,"y":12.96},{"x":1567822680000,"y":12.96},{"x":1567822740000,"y":12.99},{"x":1567822800000,"y":12.98},{"x":1567822860000,"y":12.98},{"x":1567822920000,"y":12.98},{"x":1567822980000,"y":12.98},{"x":1567823040000,"y":13.01},{"x":1567823100000,"y":13},{"x":1567823160000,"y":12.99},{"x":1567823220000,"y":12.99},{"x":1567823280000,"y":12.99},{"x":1567823340000,"y":13},{"x":1567823400000,"y":12.98},{"x":1567823460000,"y":12.97},{"x":1567823520000,"y":12.97},{"x":1567823580000,"y":12.97},{"x":1567823640000,"y":12.98},{"x":1567823700000,"y":12.99},{"x":1567823760000,"y":12.99},{"x":1567823820000,"y":12.99},{"x":1567823880000,"y":12.99},{"x":1567823940000,"y":13},{"x":1567824000000,"y":13},{"x":1567824060000,"y":13},{"x":1567824120000,"y":13},{"x":1567824180000,"y":13},{"x":1567824240000,"y":13.01},{"x":1567824300000,"y":12.99},{"x":1567824360000,"y":12.99},{"x":1567824420000,"y":12.99},{"x":1567824480000,"y":12.99},{"x":1567824540000,"y":13},{"x":1567824600000,"y":12.99},{"x":1567824660000,"y":12.99},{"x":1567824720000,"y":12.99},{"x":1567824780000,"y":12.99},{"x":1567824840000,"y":12.99},{"x":1567824900000,"y":13.01},{"x":1567824960000,"y":13},{"x":1567825020000,"y":13},{"x":1567825080000,"y":13},{"x":1567825140000,"y":13},{"x":1567825200000,"y":13},{"x":1567825260000,"y":12.99},{"x":1567825320000,"y":12.99},{"x":1567825380000,"y":12.99},{"x":1567825440000,"y":12.98},{"x":1567825500000,"y":13.01},{"x":1567825560000,"y":13},{"x":1567825620000,"y":12.99},{"x":1567825680000,"y":13},{"x":1567825740000,"y":13},{"x":1567825800000,"y":12.99},{"x":1567825860000,"y":13},{"x":1567825920000,"y":12.99},{"x":1567825980000,"y":12.99},{"x":1567826040000,"y":12.99},{"x":1567826100000,"y":13},{"x":1567826160000,"y":12.99},{"x":1567826220000,"y":12.99},{"x":1567826280000,"y":12.99},{"x":1567826340000,"y":12.99},{"x":1567826400000,"y":13.01},{"x":1567826460000,"y":13},{"x":1567826520000,"y":13},{"x":1567826580000,"y":13},{"x":1567826640000,"y":13},{"x":1567826700000,"y":13.02},{"x":1567826760000,"y":13},{"x":1567826820000,"y":13},{"x":1567826880000,"y":13.01},{"x":1567826940000,"y":13.01},{"x":1567827000000,"y":13.01},{"x":1567827060000,"y":13.02},{"x":1567827120000,"y":13.01},{"x":1567827180000,"y":13.01},{"x":1567827240000,"y":13},{"x":1567827300000,"y":12.97},{"x":1567827360000,"y":13.01},{"x":1567827420000,"y":13},{"x":1567827480000,"y":13},{"x":1567827540000,"y":13.01},{"x":1567827600000,"y":13},{"x":1567827660000,"y":13.02},{"x":1567827720000,"y":13.01},{"x":1567827780000,"y":13.01},{"x":1567827840000,"y":13.01},{"x":1567827900000,"y":12.98},{"x":1567827960000,"y":13},{"x":1567828020000,"y":13},{"x":1567828080000,"y":13},{"x":1567828140000,"y":13},{"x":1567828200000,"y":12.99},{"x":1567828260000,"y":13.01},{"x":1567828320000,"y":13.01},{"x":1567828380000,"y":13.01},{"x":1567828440000,"y":13},{"x":1567828500000,"y":13},{"x":1567828560000,"y":13.02},{"x":1567828620000,"y":13},{"x":1567828680000,"y":13},{"x":1567828740000,"y":13},{"x":1567828800000,"y":12.97},{"x":1567828860000,"y":12.99},{"x":1567828920000,"y":13.01},{"x":1567828980000,"y":13.01},{"x":1567829040000,"y":13.01},{"x":1567829100000,"y":13},{"x":1567829160000,"y":13.01},{"x":1567829220000,"y":13},{"x":1567829280000,"y":13},{"x":1567829340000,"y":13},{"x":1567829400000,"y":13.01},{"x":1567829460000,"y":13.01},{"x":1567829520000,"y":13.02},{"x":1567829580000,"y":13.01},{"x":1567829640000,"y":13.01},{"x":1567829700000,"y":12.98},{"x":1567829760000,"y":12.97},{"x":1567829820000,"y":13},{"x":1567829880000,"y":12.99},{"x":1567829940000,"y":12.99},{"x":1567830000000,"y":12.97},{"x":1567830060000,"y":12.97},{"x":1567830120000,"y":12.99},{"x":1567830180000,"y":12.98},{"x":1567830240000,"y":12.98},{"x":1567830300000,"y":12.99},{"x":1567830360000,"y":12.99},{"x":1567830420000,"y":13},{"x":1567830480000,"y":12.99},{"x":1567830540000,"y":12.99},{"x":1567830600000,"y":12.99},{"x":1567830660000,"y":12.99},{"x":1567830720000,"y":13},{"x":1567830780000,"y":12.99},{"x":1567830840000,"y":12.99},{"x":1567830900000,"y":12.99},{"x":1567830960000,"y":12.99},{"x":1567831020000,"y":13},{"x":1567831080000,"y":12.99},{"x":1567831140000,"y":12.99},{"x":1567831200000,"y":12.99},{"x":1567831260000,"y":12.99},{"x":1567831320000,"y":13},{"x":1567831380000,"y":13},{"x":1567831440000,"y":13},{"x":1567831500000,"y":12.95},{"x":1567831560000,"y":12.95},{"x":1567831620000,"y":12.97},{"x":1567831680000,"y":12.99},{"x":1567831740000,"y":12.99},{"x":1567831800000,"y":13},{"x":1567831860000,"y":13},{"x":1567831920000,"y":13},{"x":1567831980000,"y":13},{"x":1567832040000,"y":12.99},{"x":1567832100000,"y":12.97},{"x":1567832160000,"y":12.97},{"x":1567832220000,"y":12.97},{"x":1567832280000,"y":13},{"x":1567832340000,"y":13},{"x":1567832400000,"y":12.97},{"x":1567832460000,"y":12.97},{"x":1567832520000,"y":12.97},{"x":1567832580000,"y":12.97},{"x":1567832640000,"y":12.96},{"x":1567832700000,"y":12.99},{"x":1567832760000,"y":12.99},{"x":1567832820000,"y":12.99},{"x":1567832880000,"y":12.99},{"x":1567832940000,"y":13},{"x":1567833000000,"y":12.99},{"x":1567833060000,"y":13},{"x":1567833120000,"y":13},{"x":1567833180000,"y":13.01},{"x":1567833240000,"y":13},{"x":1567833300000,"y":13},{"x":1567833360000,"y":13},{"x":1567833420000,"y":13},{"x":1567833480000,"y":13},{"x":1567833540000,"y":12.98},{"x":1567833600000,"y":12.99},{"x":1567833660000,"y":12.99},{"x":1567833720000,"y":12.99},{"x":1567833780000,"y":13},{"x":1567833840000,"y":12.99},{"x":1567833900000,"y":13},{"x":1567833960000,"y":13},{"x":1567834020000,"y":12.99},{"x":1567834080000,"y":12.99},{"x":1567834140000,"y":12.98},{"x":1567834200000,"y":12.97},{"x":1567834260000,"y":12.97},{"x":1567834320000,"y":12.97},{"x":1567834380000,"y":12.97},{"x":1567834440000,"y":12.98},{"x":1567834500000,"y":12.97},{"x":1567834560000,"y":12.97},{"x":1567834620000,"y":12.97},{"x":1567834680000,"y":12.96},{"x":1567834740000,"y":13.01},{"x":1567834800000,"y":13},{"x":1567834860000,"y":13},{"x":1567834920000,"y":13},{"x":1567834980000,"y":13},{"x":1567835040000,"y":13.01},{"x":1567835100000,"y":13},{"x":1567835160000,"y":13},{"x":1567835220000,"y":13},{"x":1567835280000,"y":13},{"x":1567835340000,"y":13.01},{"x":1567835400000,"y":13.01},{"x":1567835460000,"y":13.01},{"x":1567835520000,"y":13.01},{"x":1567835580000,"y":13.01},{"x":1567835640000,"y":13.02},{"x":1567835700000,"y":13},{"x":1567835760000,"y":13},{"x":1567835820000,"y":13},{"x":1567835880000,"y":13},{"x":1567835940000,"y":13.01},{"x":1567836000000,"y":13},{"x":1567836060000,"y":13},{"x":1567836120000,"y":13},{"x":1567836180000,"y":12.99},{"x":1567836240000,"y":12.99},{"x":1567836300000,"y":12.98},{"x":1567836360000,"y":12.97},{"x":1567836420000,"y":12.97},{"x":1567836480000,"y":12.97},{"x":1567836540000,"y":12.99},{"x":1567836600000,"y":12.98},{"x":1567836660000,"y":12.96},{"x":1567836720000,"y":12.96},{"x":1567836780000,"y":12.96},{"x":1567836840000,"y":12.95},{"x":1567836900000,"y":13},{"x":1567836960000,"y":12.99},{"x":1567837020000,"y":12.99},{"x":1567837080000,"y":12.99},{"x":1567837140000,"y":12.99},{"x":1567837200000,"y":12.99},{"x":1567837260000,"y":12.98},{"x":1567837320000,"y":12.98},{"x":1567837380000,"y":12.98},{"x":1567837440000,"y":12.98},{"x":1567837500000,"y":13.01},{"x":1567837560000,"y":13},{"x":1567837620000,"y":13},{"x":1567837680000,"y":13},{"x":1567837740000,"y":13},{"x":1567837800000,"y":12.99},{"x":1567837860000,"y":13.01},{"x":1567837920000,"y":13.01},{"x":1567837980000,"y":13.01},{"x":1567838040000,"y":13.01},{"x":1567838100000,"y":13.07},{"x":1567838160000,"y":13.29},{"x":1567838220000,"y":13.06},{"x":1567838280000,"y":13.05},{"x":1567838340000,"y":13.05},{"x":1567838400000,"y":13.07},{"x":1567838460000,"y":13.02},{"x":1567838520000,"y":13.01},{"x":1567838580000,"y":13.01},{"x":1567838640000,"y":13.01},{"x":1567838700000,"y":12.98},{"x":1567838760000,"y":13},{"x":1567838820000,"y":12.98},{"x":1567838880000,"y":12.98},{"x":1567838940000,"y":12.98},{"x":1567839000000,"y":12.99},{"x":1567839060000,"y":13},{"x":1567839120000,"y":12.99},{"x":1567839180000,"y":12.99},{"x":1567839240000,"y":12.98},{"x":1567839300000,"y":12.99},{"x":1567839360000,"y":13},{"x":1567839420000,"y":12.99},{"x":1567839480000,"y":12.99},{"x":1567839540000,"y":12.99},{"x":1567839600000,"y":12.97},{"x":1567839660000,"y":12.98},{"x":1567839720000,"y":12.99},{"x":1567839780000,"y":12.99},{"x":1567839840000,"y":12.99},{"x":1567839900000,"y":12.99},{"x":1567839960000,"y":12.99},{"x":1567840020000,"y":12.97},{"x":1567840080000,"y":12.98},{"x":1567840140000,"y":12.98},{"x":1567840200000,"y":12.96},{"x":1567840260000,"y":12.98},{"x":1567840320000,"y":12.99},{"x":1567840380000,"y":12.99},{"x":1567840440000,"y":12.98},{"x":1567840500000,"y":12.98},{"x":1567840560000,"y":12.99},{"x":1567840620000,"y":12.99},{"x":1567840680000,"y":12.99},{"x":1567840740000,"y":12.99},{"x":1567840800000,"y":12.99},{"x":1567840860000,"y":12.99},{"x":1567840920000,"y":13},{"x":1567840980000,"y":12.99},{"x":1567841040000,"y":12.99},{"x":1567841100000,"y":13},{"x":1567841160000,"y":13},{"x":1567841220000,"y":13},{"x":1567841280000,"y":12.99},{"x":1567841340000,"y":12.99},{"x":1567841400000,"y":12.98},{"x":1567841460000,"y":12.98},{"x":1567841520000,"y":12.98},{"x":1567841580000,"y":12.97},{"x":1567841640000,"y":12.97},{"x":1567841700000,"y":12.99},{"x":1567841760000,"y":12.99},{"x":1567841820000,"y":13.01},{"x":1567841880000,"y":12.99},{"x":1567841940000,"y":12.99},{"x":1567842000000,"y":13},{"x":1567842060000,"y":12.99},{"x":1567842120000,"y":13.01},{"x":1567842180000,"y":12.99},{"x":1567842240000,"y":12.99},{"x":1567842300000,"y":12.97},{"x":1567842360000,"y":12.97},{"x":1567842420000,"y":12.99},{"x":1567842480000,"y":13},{"x":1567842540000,"y":12.99},{"x":1567842600000,"y":12.98},{"x":1567842660000,"y":12.98},{"x":1567842720000,"y":12.98},{"x":1567842780000,"y":13},{"x":1567842840000,"y":12.99},{"x":1567842900000,"y":13},{"x":1567842960000,"y":13},{"x":1567843020000,"y":13},{"x":1567843080000,"y":13},{"x":1567843140000,"y":12.99},{"x":1567843200000,"y":12.97},{"x":1567843260000,"y":12.97},{"x":1567843320000,"y":12.97},{"x":1567843380000,"y":12.99},{"x":1567843440000,"y":12.99},{"x":1567843500000,"y":12.98},{"x":1567843560000,"y":12.98},{"x":1567843620000,"y":12.98},{"x":1567843680000,"y":13.01},{"x":1567843740000,"y":13.01},{"x":1567843800000,"y":13},{"x":1567843860000,"y":13},{"x":1567843920000,"y":13},{"x":1567843980000,"y":13.02},{"x":1567844040000,"y":13},{"x":1567844100000,"y":12.98},{"x":1567844160000,"y":12.98},{"x":1567844220000,"y":12.98},{"x":1567844280000,"y":12.99},{"x":1567844340000,"y":12.98},{"x":1567844400000,"y":12.97},{"x":1567844460000,"y":12.98},{"x":1567844520000,"y":12.98},{"x":1567844580000,"y":12.99},{"x":1567844640000,"y":12.99},{"x":1567844700000,"y":13},{"x":1567844760000,"y":13},{"x":1567844820000,"y":13},{"x":1567844880000,"y":13},{"x":1567844940000,"y":12.97},{"x":1567845000000,"y":12.95},{"x":1567845060000,"y":12.95},{"x":1567845120000,"y":12.96},{"x":1567845180000,"y":12.96},{"x":1567845240000,"y":13},{"x":1567845300000,"y":12.96},{"x":1567845360000,"y":12.96},{"x":1567845420000,"y":12.96},{"x":1567845480000,"y":12.95},{"x":1567845540000,"y":13.02},{"x":1567845600000,"y":12.98},{"x":1567845660000,"y":12.98},{"x":1567845720000,"y":12.98},{"x":1567845780000,"y":12.98},{"x":1567845840000,"y":13.01},{"x":1567845900000,"y":12.98},{"x":1567845960000,"y":12.98},{"x":1567846020000,"y":12.98},{"x":1567846080000,"y":12.97},{"x":1567846140000,"y":12.99},{"x":1567846200000,"y":12.99},{"x":1567846260000,"y":12.99},{"x":1567846320000,"y":12.99},{"x":1567846380000,"y":12.99},{"x":1567846440000,"y":13},{"x":1567846500000,"y":12.99},{"x":1567846560000,"y":12.98},{"x":1567846620000,"y":12.99},{"x":1567846680000,"y":12.99},{"x":1567846740000,"y":13},{"x":1567846800000,"y":12.99},{"x":1567846860000,"y":12.99},{"x":1567846920000,"y":12.99},{"x":1567846980000,"y":12.99},{"x":1567847040000,"y":13},{"x":1567847100000,"y":13},{"x":1567847160000,"y":13},{"x":1567847220000,"y":13},{"x":1567847280000,"y":13},{"x":1567847340000,"y":13},{"x":1567847400000,"y":12.99},{"x":1567847460000,"y":12.97},{"x":1567847520000,"y":12.96},{"x":1567847580000,"y":12.96},{"x":1567847640000,"y":12.96},{"x":1567847700000,"y":13},{"x":1567847760000,"y":12.99},{"x":1567847820000,"y":12.99},{"x":1567847880000,"y":12.99},{"x":1567847940000,"y":12.98},{"x":1567848000000,"y":12.99},{"x":1567848060000,"y":12.99},{"x":1567848120000,"y":12.99},{"x":1567848180000,"y":12.99},{"x":1567848240000,"y":12.99},{"x":1567848300000,"y":13},{"x":1567848360000,"y":12.99},{"x":1567848420000,"y":12.99},{"x":1567848480000,"y":12.99},{"x":1567848540000,"y":12.99},{"x":1567848600000,"y":12.99},{"x":1567848660000,"y":12.98},{"x":1567848720000,"y":12.98},{"x":1567848780000,"y":12.99},{"x":1567848840000,"y":12.99},{"x":1567848900000,"y":12.99},{"x":1567848960000,"y":12.97},{"x":1567849020000,"y":12.97},{"x":1567849080000,"y":12.97},{"x":1567849140000,"y":12.98},{"x":1567849200000,"y":13},{"x":1567849260000,"y":12.98},{"x":1567849320000,"y":12.98},{"x":1567849380000,"y":12.98},{"x":1567849440000,"y":12.99},{"x":1567849500000,"y":12.97},{"x":1567849560000,"y":12.99},{"x":1567849620000,"y":12.98},{"x":1567849680000,"y":12.98},{"x":1567849740000,"y":12.98},{"x":1567849800000,"y":12.99},{"x":1567849860000,"y":13},{"x":1567849920000,"y":12.99},{"x":1567849980000,"y":12.99},{"x":1567850040000,"y":12.99},{"x":1567850100000,"y":12.99},{"x":1567850160000,"y":12.99},{"x":1567850220000,"y":12.98},{"x":1567850280000,"y":12.97},{"x":1567850340000,"y":12.97},{"x":1567850400000,"y":12.98},{"x":1567850460000,"y":13},{"x":1567850520000,"y":12.99},{"x":1567850580000,"y":12.98},{"x":1567850640000,"y":12.98},{"x":1567850700000,"y":13},{"x":1567850760000,"y":13},{"x":1567850820000,"y":12.99},{"x":1567850880000,"y":12.99},{"x":1567850940000,"y":12.99},{"x":1567851000000,"y":12.97},{"x":1567851060000,"y":12.99},{"x":1567851120000,"y":12.99},{"x":1567851180000,"y":12.99},{"x":1567851240000,"y":12.99},{"x":1567851300000,"y":12.97},{"x":1567851360000,"y":12.99},{"x":1567851420000,"y":12.99},{"x":1567851480000,"y":12.99},{"x":1567851540000,"y":12.99},{"x":1567851600000,"y":13},{"x":1567851660000,"y":13.01},{"x":1567851720000,"y":12.99},{"x":1567851780000,"y":12.99},{"x":1567851840000,"y":12.99},{"x":1567851900000,"y":12.97},{"x":1567851960000,"y":12.97},{"x":1567852020000,"y":13.01},{"x":1567852080000,"y":13},{"x":1567852140000,"y":13},{"x":1567852200000,"y":12.98},{"x":1567852260000,"y":12.97},{"x":1567852320000,"y":13},{"x":1567852380000,"y":12.99},{"x":1567852440000,"y":12.99},{"x":1567852500000,"y":12.99},{"x":1567852560000,"y":12.99},{"x":1567852620000,"y":13},{"x":1567852680000,"y":13},{"x":1567852740000,"y":13.01},{"x":1567852800000,"y":12.99},{"x":1567852860000,"y":12.99},{"x":1567852920000,"y":13},{"x":1567852980000,"y":12.99},{"x":1567853040000,"y":12.99},{"x":1567853100000,"y":13},{"x":1567853160000,"y":13},{"x":1567853220000,"y":13},{"x":1567853280000,"y":12.98},{"x":1567853340000,"y":12.98},{"x":1567853400000,"y":13.01},{"x":1567853460000,"y":13.01},{"x":1567853520000,"y":13.01},{"x":1567853580000,"y":12.99},{"x":1567853640000,"y":12.99},{"x":1567853700000,"y":13},{"x":1567853760000,"y":13},{"x":1567853820000,"y":13.01},{"x":1567853880000,"y":13},{"x":1567853940000,"y":13},{"x":1567854000000,"y":12.99},{"x":1567854060000,"y":12.99},{"x":1567854120000,"y":12.99},{"x":1567854180000,"y":13.01},{"x":1567854240000,"y":12.99},{"x":1567854300000,"y":13},{"x":1567854360000,"y":13},{"x":1567854420000,"y":13},{"x":1567854480000,"y":13},{"x":1567854540000,"y":13},{"x":1567854600000,"y":12.98},{"x":1567854660000,"y":12.98},{"x":1567854720000,"y":12.99},{"x":1567854780000,"y":13.01},{"x":1567854840000,"y":13},{"x":1567854900000,"y":13},{"x":1567854960000,"y":13},{"x":1567855020000,"y":13},{"x":1567855080000,"y":13.01},{"x":1567855140000,"y":12.99},{"x":1567855200000,"y":13.01},{"x":1567855260000,"y":13.01},{"x":1567855320000,"y":13.01},{"x":1567855380000,"y":13.15},{"x":1567855440000,"y":13.07},{"x":1567855500000,"y":13.13},{"x":1567855560000,"y":13.06},{"x":1567855620000,"y":13.05},{"x":1567855680000,"y":13.06},{"x":1567855740000,"y":13.01},{"x":1567855800000,"y":13.01},{"x":1567855860000,"y":13.01},{"x":1567855920000,"y":13.01},{"x":1567855980000,"y":13.03},{"x":1567856040000,"y":12.99},{"x":1567856100000,"y":13.01},{"x":1567856160000,"y":13.01},{"x":1567856220000,"y":13.01},{"x":1567856280000,"y":13.01},{"x":1567856340000,"y":13.02},{"x":1567856400000,"y":13.01},{"x":1567856460000,"y":13.01},{"x":1567856520000,"y":12.99},{"x":1567856580000,"y":12.99},{"x":1567856640000,"y":13.19},{"x":1567856700000,"y":13.03},{"x":1567856760000,"y":13.03},{"x":1567856820000,"y":13.03},{"x":1567856880000,"y":13.03},{"x":1567856940000,"y":13.01},{"x":1567857000000,"y":12.99},{"x":1567857060000,"y":12.99},{"x":1567857120000,"y":12.99},{"x":1567857180000,"y":12.99},{"x":1567857240000,"y":13},{"x":1567857300000,"y":12.96},{"x":1567857360000,"y":12.96},{"x":1567857420000,"y":12.96},{"x":1567857480000,"y":12.96},{"x":1567857540000,"y":12.98},{"x":1567857600000,"y":12.99},{"x":1567857660000,"y":12.99},{"x":1567857720000,"y":12.99},{"x":1567857780000,"y":12.99},{"x":1567857840000,"y":13},{"x":1567857900000,"y":12.98},{"x":1567857960000,"y":12.98},{"x":1567858020000,"y":12.98},{"x":1567858080000,"y":12.98},{"x":1567858140000,"y":12.99},{"x":1567858200000,"y":12.97},{"x":1567858260000,"y":12.97},{"x":1567858320000,"y":12.97},{"x":1567858380000,"y":12.97},{"x":1567858440000,"y":12.98},{"x":1567858500000,"y":13},{"x":1567858560000,"y":13},{"x":1567858620000,"y":13},{"x":1567858680000,"y":13},{"x":1567858740000,"y":13},{"x":1567858800000,"y":12.98},{"x":1567858860000,"y":12.97},{"x":1567858920000,"y":12.97},{"x":1567858980000,"y":12.97},{"x":1567859040000,"y":12.97},{"x":1567859100000,"y":12.99},{"x":1567859160000,"y":12.98},{"x":1567859220000,"y":12.98},{"x":1567859280000,"y":12.98},{"x":1567859340000,"y":12.98},{"x":1567859400000,"y":13.01},{"x":1567859460000,"y":13},{"x":1567859520000,"y":13},{"x":1567859580000,"y":13},{"x":1567859640000,"y":13},{"x":1567859700000,"y":13.01},{"x":1567859760000,"y":13},{"x":1567859820000,"y":13},{"x":1567859880000,"y":13},{"x":1567859940000,"y":13},{"x":1567860000000,"y":13.27},{"x":1567860060000,"y":13.07},{"x":1567860120000,"y":13.07},{"x":1567860180000,"y":13.07},{"x":1567860240000,"y":13.07},{"x":1567860300000,"y":13.06},{"x":1567860360000,"y":13.01},{"x":1567860420000,"y":13.01},{"x":1567860480000,"y":13.01},{"x":1567860540000,"y":13.01},{"x":1567860600000,"y":13.01},{"x":1567860660000,"y":13.01},{"x":1567860720000,"y":13},{"x":1567860780000,"y":13},{"x":1567860840000,"y":13},{"x":1567860900000,"y":12.98},{"x":1567860960000,"y":13.01},{"x":1567861020000,"y":13},{"x":1567861080000,"y":13},{"x":1567861140000,"y":13},{"x":1567861200000,"y":12.99},{"x":1567861260000,"y":13.01},{"x":1567861320000,"y":13.01},{"x":1567861380000,"y":13.01},{"x":1567861440000,"y":13.01},{"x":1567861500000,"y":13},{"x":1567861560000,"y":13.01},{"x":1567861620000,"y":13.01},{"x":1567861680000,"y":13},{"x":1567861740000,"y":13},{"x":1567861800000,"y":13},{"x":1567861860000,"y":13.01},{"x":1567861920000,"y":13.01},{"x":1567861980000,"y":13.01},{"x":1567862040000,"y":13.01},{"x":1567862100000,"y":12.98},{"x":1567862160000,"y":13},{"x":1567862220000,"y":13},{"x":1567862280000,"y":13},{"x":1567862340000,"y":13},{"x":1567862400000,"y":12.99},{"x":1567862460000,"y":13.01},{"x":1567862520000,"y":13},{"x":1567862580000,"y":13},{"x":1567862640000,"y":13},{"x":1567862700000,"y":13.01},{"x":1567862760000,"y":13.01},{"x":1567862820000,"y":13.01},{"x":1567862880000,"y":12.99},{"x":1567862940000,"y":12.99},{"x":1567863000000,"y":13.01},{"x":1567863060000,"y":13.01},{"x":1567863120000,"y":13.01},{"x":1567863180000,"y":13},{"x":1567863240000,"y":13},{"x":1567863300000,"y":13.01},{"x":1567863360000,"y":13.01},{"x":1567863420000,"y":13.01},{"x":1567863480000,"y":12.99},{"x":1567863540000,"y":13.01},{"x":1567863600000,"y":13.01},{"x":1567863660000,"y":13},{"x":1567863720000,"y":13.02},{"x":1567863780000,"y":13},{"x":1567863840000,"y":13},{"x":1567863900000,"y":13.01},{"x":1567863960000,"y":13.01},{"x":1567864020000,"y":13.02},{"x":1567864080000,"y":13.01},{"x":1567864140000,"y":13.01},{"x":1567864200000,"y":13.01},{"x":1567864260000,"y":13.01},{"x":1567864320000,"y":13.02},{"x":1567864380000,"y":13.01},{"x":1567864440000,"y":13.01},{"x":1567864500000,"y":13.01},{"x":1567864560000,"y":13.01},{"x":1567864620000,"y":13.02},{"x":1567864680000,"y":13.01},{"x":1567864740000,"y":13.01},{"x":1567864800000,"y":12.99},{"x":1567864860000,"y":12.99},{"x":1567864920000,"y":13},{"x":1567864980000,"y":13.01},{"x":1567865040000,"y":13.01},{"x":1567865100000,"y":13.01},{"x":1567865160000,"y":13.01},{"x":1567865220000,"y":13.01},{"x":1567865280000,"y":13.01},{"x":1567865340000,"y":13.02},{"x":1567865400000,"y":12.99},{"x":1567865460000,"y":12.99},{"x":1567865520000,"y":12.99},{"x":1567865580000,"y":13.01},{"x":1567865640000,"y":13},{"x":1567865700000,"y":12.97},{"x":1567865760000,"y":12.97},{"x":1567865820000,"y":12.97},{"x":1567865880000,"y":12.99},{"x":1567865940000,"y":12.99},{"x":1567866000000,"y":12.99},{"x":1567866060000,"y":12.99},{"x":1567866120000,"y":12.99},{"x":1567866180000,"y":13},{"x":1567866240000,"y":13},{"x":1567866300000,"y":13},{"x":1567866360000,"y":13},{"x":1567866420000,"y":13},{"x":1567866480000,"y":13.01},{"x":1567866540000,"y":12.99},{"x":1567866600000,"y":12.99},{"x":1567866660000,"y":12.99},{"x":1567866720000,"y":12.99},{"x":1567866780000,"y":13},{"x":1567866840000,"y":12.99},{"x":1567866900000,"y":12.99},{"x":1567866960000,"y":12.99},{"x":1567867020000,"y":12.99},{"x":1567867080000,"y":13},{"x":1567867140000,"y":12.99},{"x":1567867200000,"y":13},{"x":1567867260000,"y":13},{"x":1567867320000,"y":13},{"x":1567867380000,"y":13.01},{"x":1567867440000,"y":13},{"x":1567867500000,"y":12.97},{"x":1567867560000,"y":12.97},{"x":1567867620000,"y":12.98},{"x":1567867680000,"y":12.98},{"x":1567867740000,"y":13},{"x":1567867800000,"y":12.99},{"x":1567867860000,"y":12.99},{"x":1567867920000,"y":12.99},{"x":1567867980000,"y":12.99},{"x":1567868040000,"y":13},{"x":1567868100000,"y":13},{"x":1567868160000,"y":13},{"x":1567868220000,"y":13},{"x":1567868280000,"y":13},{"x":1567868340000,"y":13.02},{"x":1567868400000,"y":13},{"x":1567868460000,"y":13},{"x":1567868520000,"y":13},{"x":1567868580000,"y":13},{"x":1567868640000,"y":13.01},{"x":1567868700000,"y":13.01},{"x":1567868760000,"y":13.01},{"x":1567868820000,"y":13},{"x":1567868880000,"y":13},{"x":1567868940000,"y":13.01},{"x":1567869000000,"y":12.97},{"x":1567869060000,"y":12.97},{"x":1567869120000,"y":12.97},{"x":1567869180000,"y":12.97},{"x":1567869240000,"y":12.99},{"x":1567869300000,"y":12.98},{"x":1567869360000,"y":12.98},{"x":1567869420000,"y":12.99},{"x":1567869480000,"y":12.99},{"x":1567869540000,"y":13},{"x":1567869600000,"y":12.97},{"x":1567869660000,"y":12.97},{"x":1567869720000,"y":12.97},{"x":1567869780000,"y":12.98},{"x":1567869840000,"y":12.98},{"x":1567869900000,"y":13},{"x":1567869960000,"y":12.99},{"x":1567870020000,"y":12.99},{"x":1567870080000,"y":12.99},{"x":1567870140000,"y":12.99},{"x":1567870200000,"y":12.96},{"x":1567870260000,"y":12.94},{"x":1567870320000,"y":12.94},{"x":1567870380000,"y":12.94},{"x":1567870440000,"y":12.94},{"x":1567870500000,"y":12.98},{"x":1567870560000,"y":12.97},{"x":1567870620000,"y":12.97},{"x":1567870680000,"y":12.97},{"x":1567870740000,"y":13.01},{"x":1567870800000,"y":13},{"x":1567870860000,"y":13},{"x":1567870920000,"y":13},{"x":1567870980000,"y":13},{"x":1567871040000,"y":13},{"x":1567871100000,"y":13.02},{"x":1567871160000,"y":13},{"x":1567871220000,"y":13.01},{"x":1567871280000,"y":13.01},{"x":1567871340000,"y":13.01},{"x":1567871400000,"y":13.02},{"x":1567871460000,"y":13.01},{"x":1567871520000,"y":13.01},{"x":1567871580000,"y":13},{"x":1567871640000,"y":13},{"x":1567871700000,"y":13.01},{"x":1567871760000,"y":13},{"x":1567871820000,"y":13},{"x":1567871880000,"y":13.01},{"x":1567871940000,"y":13.01},{"x":1567872000000,"y":12.99},{"x":1567872060000,"y":13.01},{"x":1567872120000,"y":13.01},{"x":1567872180000,"y":13.01},{"x":1567872240000,"y":13.01},{"x":1567872300000,"y":13.01},{"x":1567872360000,"y":13.02},{"x":1567872420000,"y":13.01},{"x":1567872480000,"y":13.01},{"x":1567872540000,"y":13},{"x":1567872600000,"y":13.01},{"x":1567872660000,"y":13.03},{"x":1567872720000,"y":13.01},{"x":1567872780000,"y":13.01},{"x":1567872840000,"y":13.01},{"x":1567872900000,"y":12.99},{"x":1567872960000,"y":13},{"x":1567873020000,"y":12.99},{"x":1567873080000,"y":12.98},{"x":1567873140000,"y":12.98},{"x":1567873200000,"y":13},{"x":1567873260000,"y":13.02},{"x":1567873320000,"y":13.01},{"x":1567873380000,"y":13.01},{"x":1567873440000,"y":13.01},{"x":1567873500000,"y":13.01},{"x":1567873560000,"y":13.02},{"x":1567873620000,"y":13.01},{"x":1567873680000,"y":13.01},{"x":1567873740000,"y":13.01},{"x":1567873800000,"y":12.99},{"x":1567873860000,"y":13},{"x":1567873920000,"y":13},{"x":1567873980000,"y":13},{"x":1567874040000,"y":13},{"x":1567874100000,"y":13.02},{"x":1567874160000,"y":13.03},{"x":1567874220000,"y":12.99},{"x":1567874280000,"y":13.01},{"x":1567874340000,"y":13.01},{"x":1567874400000,"y":12.99},{"x":1567874460000,"y":12.99},{"x":1567874520000,"y":13.02},{"x":1567874580000,"y":13},{"x":1567874640000,"y":12.99},{"x":1567874700000,"y":12.97},{"x":1567874760000,"y":12.97},{"x":1567874820000,"y":13.01},{"x":1567874880000,"y":12.99},{"x":1567874940000,"y":12.99},{"x":1567875000000,"y":12.96},{"x":1567875060000,"y":12.96},{"x":1567875120000,"y":12.99},{"x":1567875180000,"y":12.99},{"x":1567875240000,"y":12.99},{"x":1567875300000,"y":12.98},{"x":1567875360000,"y":12.98},{"x":1567875420000,"y":12.99},{"x":1567875480000,"y":12.99},{"x":1567875540000,"y":12.99},{"x":1567875600000,"y":12.99},{"x":1567875660000,"y":12.99},{"x":1567875720000,"y":13},{"x":1567875780000,"y":13},{"x":1567875840000,"y":13},{"x":1567875900000,"y":12.97},{"x":1567875960000,"y":12.97},{"x":1567876020000,"y":12.99},{"x":1567876080000,"y":13},{"x":1567876140000,"y":13},{"x":1567876200000,"y":12.98},{"x":1567876260000,"y":12.98},{"x":1567876320000,"y":12.98},{"x":1567876380000,"y":12.99},{"x":1567876440000,"y":12.97},{"x":1567876500000,"y":12.97},{"x":1567876560000,"y":12.97},{"x":1567876620000,"y":12.97},{"x":1567876680000,"y":13},{"x":1567876740000,"y":12.99},{"x":1567876800000,"y":12.96},{"x":1567876860000,"y":12.96},{"x":1567876920000,"y":12.96},{"x":1567876980000,"y":12.99},{"x":1567877040000,"y":12.99},{"x":1567877100000,"y":13},{"x":1567877160000,"y":13},{"x":1567877220000,"y":13},{"x":1567877280000,"y":13.01},{"x":1567877340000,"y":13},{"x":1567877400000,"y":12.98},{"x":1567877460000,"y":12.98},{"x":1567877520000,"y":12.98},{"x":1567877580000,"y":13},{"x":1567877640000,"y":13},{"x":1567877700000,"y":12.99},{"x":1567877760000,"y":12.99},{"x":1567877820000,"y":12.99},{"x":1567877880000,"y":13},{"x":1567877940000,"y":13},{"x":1567878000000,"y":13},{"x":1567878060000,"y":13},{"x":1567878120000,"y":13},{"x":1567878180000,"y":13.01},{"x":1567878240000,"y":12.98},{"x":1567878300000,"y":12.97},{"x":1567878360000,"y":12.97},{"x":1567878420000,"y":12.97},{"x":1567878480000,"y":12.97},{"x":1567878540000,"y":13.01},{"x":1567878600000,"y":12.97},{"x":1567878660000,"y":12.97},{"x":1567878720000,"y":12.97},{"x":1567878780000,"y":12.97},{"x":1567878840000,"y":13.01},{"x":1567878900000,"y":13},{"x":1567878960000,"y":13},{"x":1567879020000,"y":13},{"x":1567879080000,"y":13},{"x":1567879140000,"y":13.01},{"x":1567879200000,"y":13},{"x":1567879260000,"y":13},{"x":1567879320000,"y":13},{"x":1567879380000,"y":13},{"x":1567879440000,"y":13.01},{"x":1567879500000,"y":12.98},{"x":1567879560000,"y":12.98},{"x":1567879620000,"y":12.98},{"x":1567879680000,"y":12.98},{"x":1567879740000,"y":13.02},{"x":1567879800000,"y":13.01},{"x":1567879860000,"y":13.01},{"x":1567879920000,"y":13.01},{"x":1567879980000,"y":13.01},{"x":1567880040000,"y":13.01},{"x":1567880100000,"y":12.97},{"x":1567880160000,"y":12.96},{"x":1567880220000,"y":12.97},{"x":1567880280000,"y":12.97},{"x":1567880340000,"y":12.99},{"x":1567880400000,"y":13.01},{"x":1567880460000,"y":13.01},{"x":1567880520000,"y":13.01},{"x":1567880580000,"y":13.01},{"x":1567880640000,"y":13.02},{"x":1567880700000,"y":12.99},{"x":1567880760000,"y":12.99},{"x":1567880820000,"y":12.99},{"x":1567880880000,"y":12.99},{"x":1567880940000,"y":12.99},{"x":1567881000000,"y":13.01},{"x":1567881060000,"y":13},{"x":1567881120000,"y":13},{"x":1567881180000,"y":13},{"x":1567881240000,"y":13},{"x":1567881300000,"y":13.02},{"x":1567881360000,"y":13.02},{"x":1567881420000,"y":13.01},{"x":1567881480000,"y":13},{"x":1567881540000,"y":13},{"x":1567881600000,"y":13.01},{"x":1567881660000,"y":13},{"x":1567881720000,"y":13},{"x":1567881780000,"y":13.01},{"x":1567881840000,"y":13.01},{"x":1567881900000,"y":13.29},{"x":1567881960000,"y":13.07},{"x":1567882020000,"y":13.07},{"x":1567882080000,"y":13.07},{"x":1567882140000,"y":13.07},{"x":1567882200000,"y":13.06},{"x":1567882260000,"y":13.01},{"x":1567882320000,"y":13.01},{"x":1567882380000,"y":13.01},{"x":1567882440000,"y":13.01},{"x":1567882500000,"y":13.03},{"x":1567882560000,"y":13.01},{"x":1567882620000,"y":13.01},{"x":1567882680000,"y":13.01},{"x":1567882740000,"y":13.01},{"x":1567882800000,"y":12.99},{"x":1567882860000,"y":12.98},{"x":1567882920000,"y":12.98},{"x":1567882980000,"y":12.98},{"x":1567883040000,"y":12.98},{"x":1567883100000,"y":13.02},{"x":1567883160000,"y":13.01},{"x":1567883220000,"y":13},{"x":1567883280000,"y":13},{"x":1567883340000,"y":13.01},{"x":1567883400000,"y":13},{"x":1567883460000,"y":13},{"x":1567883520000,"y":12.98},{"x":1567883580000,"y":12.98},{"x":1567883640000,"y":12.98},{"x":1567883700000,"y":12.99},{"x":1567883760000,"y":12.99},{"x":1567883820000,"y":12.98},{"x":1567883880000,"y":12.98},{"x":1567883940000,"y":12.98},{"x":1567884000000,"y":12.97},{"x":1567884060000,"y":13},{"x":1567884120000,"y":13},{"x":1567884180000,"y":13},{"x":1567884240000,"y":12.99},{"x":1567884300000,"y":13},{"x":1567884360000,"y":13.01},{"x":1567884420000,"y":12.99},{"x":1567884480000,"y":13},{"x":1567884540000,"y":13},{"x":1567884600000,"y":13.01},{"x":1567884660000,"y":13.02},{"x":1567884720000,"y":13},{"x":1567884780000,"y":13},{"x":1567884840000,"y":13},{"x":1567884900000,"y":12.98},{"x":1567884960000,"y":12.99},{"x":1567885020000,"y":12.99},{"x":1567885080000,"y":12.97},{"x":1567885140000,"y":13},{"x":1567885200000,"y":13},{"x":1567885260000,"y":13},{"x":1567885320000,"y":12.99},{"x":1567885380000,"y":12.98},{"x":1567885440000,"y":12.98},{"x":1567885500000,"y":12.97},{"x":1567885560000,"y":12.97},{"x":1567885620000,"y":12.98},{"x":1567885680000,"y":12.98},{"x":1567885740000,"y":12.98},{"x":1567885800000,"y":12.97},{"x":1567885860000,"y":12.97},{"x":1567885920000,"y":13},{"x":1567885980000,"y":13},{"x":1567886040000,"y":13},{"x":1567886100000,"y":12.97},{"x":1567886160000,"y":12.97},{"x":1567886220000,"y":12.99},{"x":1567886280000,"y":12.99},{"x":1567886340000,"y":12.99},{"x":1567886400000,"y":12.97},{"x":1567886460000,"y":12.97},{"x":1567886520000,"y":12.98},{"x":1567886580000,"y":12.98},{"x":1567886640000,"y":12.98},{"x":1567886700000,"y":13.01},{"x":1567886760000,"y":13.01},{"x":1567886820000,"y":13.01},{"x":1567886880000,"y":13},{"x":1567886940000,"y":13},{"x":1567887000000,"y":13},{"x":1567887060000,"y":13},{"x":1567887120000,"y":13.02},{"x":1567887180000,"y":12.98},{"x":1567887240000,"y":12.98},{"x":1567887300000,"y":12.96},{"x":1567887360000,"y":12.96},{"x":1567887420000,"y":12.97},{"x":1567887480000,"y":13.02},{"x":1567887540000,"y":13.01},{"x":1567887600000,"y":12.99},{"x":1567887660000,"y":12.99},{"x":1567887720000,"y":12.99},{"x":1567887780000,"y":13.02},{"x":1567887840000,"y":13.01},{"x":1567887900000,"y":13},{"x":1567887960000,"y":13},{"x":1567888020000,"y":13},{"x":1567888080000,"y":13.01},{"x":1567888140000,"y":13},{"x":1567888200000,"y":13.01},{"x":1567888260000,"y":13.01},{"x":1567888320000,"y":13},{"x":1567888380000,"y":13.01},{"x":1567888440000,"y":13},{"x":1567888500000,"y":13.01},{"x":1567888560000,"y":13.01},{"x":1567888620000,"y":13.01},{"x":1567888680000,"y":13.01},{"x":1567888740000,"y":13.01},{"x":1567888800000,"y":13.01},{"x":1567888860000,"y":13.01},{"x":1567888920000,"y":13.01},{"x":1567888980000,"y":13.02},{"x":1567889040000,"y":13.01},{"x":1567889100000,"y":12.98},{"x":1567889160000,"y":12.98},{"x":1567889220000,"y":12.98},{"x":1567889280000,"y":12.99},{"x":1567889340000,"y":13.01},{"x":1567889400000,"y":12.98},{"x":1567889460000,"y":12.97},{"x":1567889520000,"y":12.97},{"x":1567889580000,"y":12.97},{"x":1567889640000,"y":13.01},{"x":1567889700000,"y":13.01},{"x":1567889760000,"y":13.01},{"x":1567889820000,"y":13.01},{"x":1567889880000,"y":13.01},{"x":1567889940000,"y":13.02},{"x":1567890000000,"y":13.01},{"x":1567890060000,"y":13.01},{"x":1567890120000,"y":13.01},{"x":1567890180000,"y":13.01},{"x":1567890240000,"y":13.01},{"x":1567890300000,"y":12.98},{"x":1567890360000,"y":12.98},{"x":1567890420000,"y":12.98},{"x":1567890480000,"y":12.98},{"x":1567890540000,"y":13.01},{"x":1567890600000,"y":13.01},{"x":1567890660000,"y":13.01},{"x":1567890720000,"y":13.01},{"x":1567890780000,"y":13.01},{"x":1567890840000,"y":13.03},{"x":1567890900000,"y":13.01},{"x":1567890960000,"y":13.01},{"x":1567891020000,"y":13.01},{"x":1567891080000,"y":13.01},{"x":1567891140000,"y":13.03},{"x":1567891200000,"y":13.01},{"x":1567891260000,"y":13.01},{"x":1567891320000,"y":13.01},{"x":1567891380000,"y":13.01},{"x":1567891440000,"y":13.01},{"x":1567891500000,"y":13.02},{"x":1567891560000,"y":13.01},{"x":1567891620000,"y":13.01},{"x":1567891680000,"y":13},{"x":1567891740000,"y":13.01},{"x":1567891800000,"y":13.01},{"x":1567891860000,"y":13},{"x":1567891920000,"y":13},{"x":1567891980000,"y":13},{"x":1567892040000,"y":13},{"x":1567892100000,"y":13.03},{"x":1567892160000,"y":13.01},{"x":1567892220000,"y":13.01},{"x":1567892280000,"y":13.01},{"x":1567892340000,"y":13.02},{"x":1567892400000,"y":13.03},{"x":1567892460000,"y":13.02},{"x":1567892520000,"y":13.01},{"x":1567892580000,"y":13},{"x":1567892640000,"y":13},{"x":1567892700000,"y":12.99},{"x":1567892760000,"y":12.96},{"x":1567892820000,"y":12.96},{"x":1567892880000,"y":12.96},{"x":1567892940000,"y":12.96},{"x":1567893000000,"y":12.99},{"x":1567893060000,"y":12.99},{"x":1567893120000,"y":12.99},{"x":1567893180000,"y":12.99},{"x":1567893240000,"y":12.99},{"x":1567893300000,"y":13.01},{"x":1567893360000,"y":12.98},{"x":1567893420000,"y":12.98},{"x":1567893480000,"y":12.98},{"x":1567893540000,"y":12.98},{"x":1567893600000,"y":13.09},{"x":1567893660000,"y":13.16},{"x":1567893720000,"y":13.16},{"x":1567893780000,"y":13.16},{"x":1567893840000,"y":13.16},{"x":1567893900000,"y":13.2},{"x":1567893960000,"y":13.22},{"x":1567894020000,"y":13.21},{"x":1567894080000,"y":13.21},{"x":1567894140000,"y":13.21},{"x":1567894200000,"y":13.2},{"x":1567894260000,"y":13.19},{"x":1567894320000,"y":13.17},{"x":1567894380000,"y":13.17},{"x":1567894440000,"y":13.17},{"x":1567894500000,"y":13.19},{"x":1567894560000,"y":13.2},{"x":1567894620000,"y":13.19},{"x":1567894680000,"y":13.19},{"x":1567894740000,"y":13.19},{"x":1567894800000,"y":13.17},{"x":1567894860000,"y":13.21},{"x":1567894920000,"y":13.21},{"x":1567894980000,"y":13.21},{"x":1567895040000,"y":13.21},{"x":1567895100000,"y":13.21},{"x":1567895160000,"y":13.22},{"x":1567895220000,"y":13.21},{"x":1567895280000,"y":13.14},{"x":1567895340000,"y":13.01},{"x":1567895400000,"y":13.01},{"x":1567895460000,"y":13.01},{"x":1567895520000,"y":13.01},{"x":1567895580000,"y":13.01},{"x":1567895640000,"y":13.01},{"x":1567895700000,"y":13.01},{"x":1567895760000,"y":13.02},{"x":1567895820000,"y":12.99},{"x":1567895880000,"y":13},{"x":1567895940000,"y":13.01},{"x":1567896000000,"y":12.98},{"x":1567896060000,"y":12.98},{"x":1567896120000,"y":13.02},{"x":1567896180000,"y":13.01},{"x":1567896240000,"y":13.01},{"x":1567896300000,"y":12.99},{"x":1567896360000,"y":12.99},{"x":1567896420000,"y":13.01},{"x":1567896480000,"y":13},{"x":1567896540000,"y":13},{"x":1567896600000,"y":13.01},{"x":1567896660000,"y":13.01},{"x":1567896720000,"y":13.02},{"x":1567896780000,"y":13.02},{"x":1567896840000,"y":13.01},{"x":1567896900000,"y":12.99},{"x":1567896960000,"y":12.99},{"x":1567897020000,"y":13},{"x":1567897080000,"y":12.99},{"x":1567897140000,"y":12.99},{"x":1567897200000,"y":13.01},{"x":1567897260000,"y":13.01},{"x":1567897320000,"y":13.02},{"x":1567897380000,"y":13.01},{"x":1567897440000,"y":13},{"x":1567897500000,"y":13},{"x":1567897560000,"y":13},{"x":1567897620000,"y":13.02},{"x":1567897680000,"y":13.01},{"x":1567897740000,"y":13.01},{"x":1567897800000,"y":13.01},{"x":1567897860000,"y":13.01},{"x":1567897920000,"y":13.02},{"x":1567897980000,"y":13.01},{"x":1567898040000,"y":13.01},{"x":1567898100000,"y":12.99},{"x":1567898160000,"y":12.99},{"x":1567898220000,"y":12.99},{"x":1567898280000,"y":13.02},{"x":1567898340000,"y":13.01},{"x":1567898400000,"y":13.01},{"x":1567898460000,"y":13.01},{"x":1567898520000,"y":13.01},{"x":1567898580000,"y":13},{"x":1567898640000,"y":12.99},{"x":1567898700000,"y":12.97},{"x":1567898760000,"y":12.97},{"x":1567898820000,"y":12.97},{"x":1567898880000,"y":13.01},{"x":1567898940000,"y":13.01},{"x":1567899000000,"y":13.01},{"x":1567899060000,"y":13.01},{"x":1567899120000,"y":13.01},{"x":1567899180000,"y":13.01},{"x":1567899240000,"y":13},{"x":1567899300000,"y":13.01},{"x":1567899360000,"y":13.01},{"x":1567899420000,"y":13.01},{"x":1567899480000,"y":13.03},{"x":1567899540000,"y":13.01},{"x":1567899600000,"y":13.04},{"x":1567899660000,"y":13.09},{"x":1567899720000,"y":13.09},{"x":1567899780000,"y":13.12},{"x":1567899840000,"y":13.15},{"x":1567899900000,"y":13.15},{"x":1567899960000,"y":13.15},{"x":1567900020000,"y":13.15},{"x":1567900080000,"y":13.16},{"x":1567900140000,"y":13.15},{"x":1567900200000,"y":13.14},{"x":1567900260000,"y":13.18},{"x":1567900320000,"y":13.18},{"x":1567900380000,"y":13.18},{"x":1567900440000,"y":13.22},{"x":1567900500000,"y":13.22},{"x":1567900560000,"y":13.22},{"x":1567900620000,"y":13.22},{"x":1567900680000,"y":13.22},{"x":1567900740000,"y":13.22},{"x":1567900800000,"y":13.19},{"x":1567900860000,"y":13.19},{"x":1567900920000,"y":13.19},{"x":1567900980000,"y":13.19},{"x":1567901040000,"y":13.21},{"x":1567901100000,"y":13.21},{"x":1567901160000,"y":13.21},{"x":1567901220000,"y":13.21},{"x":1567901280000,"y":13.21},{"x":1567901340000,"y":13.24},{"x":1567901400000,"y":13.23},{"x":1567901460000,"y":13.23},{"x":1567901520000,"y":13.22},{"x":1567901580000,"y":13.2},{"x":1567901640000,"y":13.22},{"x":1567901700000,"y":13.18},{"x":1567901760000,"y":13.18},{"x":1567901820000,"y":13.18},{"x":1567901880000,"y":13.17},{"x":1567901940000,"y":13.18},{"x":1567902000000,"y":13.2},{"x":1567902060000,"y":13.2},{"x":1567902120000,"y":13.2},{"x":1567902180000,"y":13.2},{"x":1567902240000,"y":13.21},{"x":1567902300000,"y":13.17},{"x":1567902360000,"y":13.17},{"x":1567902420000,"y":13.17},{"x":1567902480000,"y":13.17},{"x":1567902540000,"y":13.17},{"x":1567902600000,"y":13.2},{"x":1567902660000,"y":13.19},{"x":1567902720000,"y":13.19},{"x":1567902780000,"y":13.19},{"x":1567902840000,"y":13.19},{"x":1567902900000,"y":13.17},{"x":1567902960000,"y":13.15},{"x":1567903020000,"y":13.15},{"x":1567903080000,"y":13.14},{"x":1567903140000,"y":13.21},{"x":1567903200000,"y":13.22},{"x":1567903260000,"y":13.2},{"x":1567903320000,"y":13.2},{"x":1567903380000,"y":13.2},{"x":1567903440000,"y":13.2},{"x":1567903500000,"y":13.21},{"x":1567903560000,"y":13.2},{"x":1567903620000,"y":13.2},{"x":1567903680000,"y":13.2},{"x":1567903740000,"y":13.2},{"x":1567903800000,"y":13.47},{"x":1567903860000,"y":13.27},{"x":1567903920000,"y":13.27},{"x":1567903980000,"y":13.27},{"x":1567904040000,"y":13.27},{"x":1567904100000,"y":13.26},{"x":1567904160000,"y":13.21},{"x":1567904220000,"y":13.21},{"x":1567904280000,"y":13.21},{"x":1567904340000,"y":13.21},{"x":1567904400000,"y":13.2},{"x":1567904460000,"y":13.19},{"x":1567904520000,"y":13.18},{"x":1567904580000,"y":13.18},{"x":1567904640000,"y":13.18},{"x":1567904700000,"y":13.19},{"x":1567904760000,"y":13.2},{"x":1567904820000,"y":13.21},{"x":1567904880000,"y":13.21},{"x":1567904940000,"y":13.2},{"x":1567905000000,"y":13.21},{"x":1567905060000,"y":13.23},{"x":1567905120000,"y":13.21},{"x":1567905180000,"y":13.21},{"x":1567905240000,"y":13.21},{"x":1567905300000,"y":13.2},{"x":1567905360000,"y":13.2},{"x":1567905420000,"y":13.18},{"x":1567905480000,"y":13.18},{"x":1567905540000,"y":13.18},{"x":1567905600000,"y":13.19},{"x":1567905660000,"y":13.21},{"x":1567905720000,"y":13.21},{"x":1567905780000,"y":13.21},{"x":1567905840000,"y":13.21},{"x":1567905900000,"y":13.2},{"x":1567905960000,"y":13.21},{"x":1567906020000,"y":13.2},{"x":1567906080000,"y":13.2},{"x":1567906140000,"y":13.2},{"x":1567906200000,"y":13.21},{"x":1567906260000,"y":13.21},{"x":1567906320000,"y":13.2},{"x":1567906380000,"y":13.2},{"x":1567906440000,"y":13.2},{"x":1567906500000,"y":13.21},{"x":1567906560000,"y":13.22},{"x":1567906620000,"y":13.22},{"x":1567906680000,"y":13.21},{"x":1567906740000,"y":13.22},{"x":1567906800000,"y":13.22},{"x":1567906860000,"y":13.23},{"x":1567906920000,"y":13.21},{"x":1567906980000,"y":13.21},{"x":1567907040000,"y":13.22},{"x":1567907100000,"y":13.22},{"x":1567907160000,"y":13.22},{"x":1567907220000,"y":13.23},{"x":1567907280000,"y":13.22},{"x":1567907340000,"y":13.21},{"x":1567907400000,"y":13.18},{"x":1567907460000,"y":13.18},{"x":1567907520000,"y":13.2},{"x":1567907580000,"y":13.19},{"x":1567907640000,"y":13.19},{"x":1567907700000,"y":13.19},{"x":1567907760000,"y":13.19},{"x":1567907820000,"y":13.19},{"x":1567907880000,"y":13.18},{"x":1567907940000,"y":13.18},{"x":1567908000000,"y":13.18},{"x":1567908060000,"y":13.17},{"x":1567908120000,"y":13.21},{"x":1567908180000,"y":13.2},{"x":1567908240000,"y":13.2},{"x":1567908300000,"y":13.21},{"x":1567908360000,"y":13.21},{"x":1567908420000,"y":13.23},{"x":1567908480000,"y":13.22},{"x":1567908540000,"y":13.22},{"x":1567908600000,"y":13.19},{"x":1567908660000,"y":13.19},{"x":1567908720000,"y":13.2},{"x":1567908780000,"y":13.21},{"x":1567908840000,"y":13.22},{"x":1567908900000,"y":13.22},{"x":1567908960000,"y":13.22},{"x":1567909020000,"y":13.22},{"x":1567909080000,"y":13.22},{"x":1567909140000,"y":13.22},{"x":1567909200000,"y":13.17},{"x":1567909260000,"y":13.17},{"x":1567909320000,"y":13.17},{"x":1567909380000,"y":13.22},{"x":1567909440000,"y":13.21},{"x":1567909500000,"y":13.2},{"x":1567909560000,"y":13.2},{"x":1567909620000,"y":13.2},{"x":1567909680000,"y":13.23},{"x":1567909740000,"y":13.22},{"x":1567909800000,"y":13.22},{"x":1567909860000,"y":13.22},{"x":1567909920000,"y":13.22},{"x":1567909980000,"y":13.23},{"x":1567910040000,"y":13.22},{"x":1567910100000,"y":13.2},{"x":1567910160000,"y":13.2},{"x":1567910220000,"y":13.2},{"x":1567910280000,"y":13.2},{"x":1567910340000,"y":13.22},{"x":1567910400000,"y":13.22},{"x":1567910460000,"y":13.22},{"x":1567910520000,"y":13.22},{"x":1567910580000,"y":13.22},{"x":1567910640000,"y":13.18},{"x":1567910700000,"y":13.17},{"x":1567910760000,"y":13.17},{"x":1567910820000,"y":13.17},{"x":1567910880000,"y":13.19},{"x":1567910940000,"y":13.2},{"x":1567911000000,"y":13.19},{"x":1567911060000,"y":13.19},{"x":1567911120000,"y":13.19},{"x":1567911180000,"y":13.19},{"x":1567911240000,"y":13.19},{"x":1567911300000,"y":13.19},{"x":1567911360000,"y":13.19},{"x":1567911420000,"y":13.18},{"x":1567911480000,"y":13.18},{"x":1567911540000,"y":13.21},{"x":1567911600000,"y":13.18},{"x":1567911660000,"y":13.18},{"x":1567911720000,"y":13.19},{"x":1567911780000,"y":13.19},{"x":1567911840000,"y":13.21},{"x":1567911900000,"y":13.19},{"x":1567911960000,"y":13.19},{"x":1567912020000,"y":13.19},{"x":1567912080000,"y":13.19},{"x":1567912140000,"y":13.2},{"x":1567912200000,"y":13.2},{"x":1567912260000,"y":13.2},{"x":1567912320000,"y":13.2},{"x":1567912380000,"y":13.2},{"x":1567912440000,"y":13.21},{"x":1567912500000,"y":13.16},{"x":1567912560000,"y":13.16},{"x":1567912620000,"y":13.17},{"x":1567912680000,"y":13.17},{"x":1567912740000,"y":13.2},{"x":1567912800000,"y":13.21},{"x":1567912860000,"y":13.21},{"x":1567912920000,"y":13.21},{"x":1567912980000,"y":13.21},{"x":1567913040000,"y":13.22},{"x":1567913100000,"y":13.2},{"x":1567913160000,"y":13.2},{"x":1567913220000,"y":13.2},{"x":1567913280000,"y":13.2},{"x":1567913340000,"y":13.2},{"x":1567913400000,"y":13.19},{"x":1567913460000,"y":13.18},{"x":1567913520000,"y":13.18},{"x":1567913580000,"y":13.18},{"x":1567913640000,"y":13.18},{"x":1567913700000,"y":13.19},{"x":1567913760000,"y":13.18},{"x":1567913820000,"y":13.18},{"x":1567913880000,"y":13.19},{"x":1567913940000,"y":13.21},{"x":1567914000000,"y":13.22},{"x":1567914060000,"y":13.21},{"x":1567914120000,"y":13.21},{"x":1567914180000,"y":13.21},{"x":1567914240000,"y":13.21},{"x":1567914300000,"y":13.2},{"x":1567914360000,"y":13.22},{"x":1567914420000,"y":13.22},{"x":1567914480000,"y":13.22},{"x":1567914540000,"y":13.22},{"x":1567914600000,"y":13.21},{"x":1567914660000,"y":13.2},{"x":1567914720000,"y":13.2},{"x":1567914780000,"y":13.2},{"x":1567914840000,"y":13.2},{"x":1567914900000,"y":13.23},{"x":1567914960000,"y":13.2},{"x":1567915020000,"y":13.2},{"x":1567915080000,"y":13.2},{"x":1567915140000,"y":13.2},{"x":1567915200000,"y":13.22},{"x":1567915260000,"y":13.17},{"x":1567915320000,"y":13.17},{"x":1567915380000,"y":13.17},{"x":1567915440000,"y":13.17},{"x":1567915500000,"y":13.2},{"x":1567915560000,"y":13.23},{"x":1567915620000,"y":13.22},{"x":1567915680000,"y":13.22},{"x":1567915740000,"y":13.22},{"x":1567915800000,"y":13.21},{"x":1567915860000,"y":13.22},{"x":1567915920000,"y":13.22},{"x":1567915980000,"y":13.21},{"x":1567916040000,"y":13.21},{"x":1567916100000,"y":13.21},{"x":1567916160000,"y":13.2},{"x":1567916220000,"y":13.19},{"x":1567916280000,"y":13.19},{"x":1567916340000,"y":13.18},{"x":1567916400000,"y":13.18},{"x":1567916460000,"y":13.21},{"x":1567916520000,"y":13.21},{"x":1567916580000,"y":13.21},{"x":1567916640000,"y":13.22},{"x":1567916700000,"y":13.22},{"x":1567916760000,"y":13.23},{"x":1567916820000,"y":13.22},{"x":1567916880000,"y":13.21},{"x":1567916940000,"y":13.21},{"x":1567917000000,"y":13.21},{"x":1567917060000,"y":13.22},{"x":1567917120000,"y":13.22},{"x":1567917180000,"y":13.22},{"x":1567917240000,"y":13.22},{"x":1567917300000,"y":13.22},{"x":1567917360000,"y":13.23},{"x":1567917420000,"y":13.2},{"x":1567917480000,"y":13.2},{"x":1567917540000,"y":13.22},{"x":1567917600000,"y":13.22},{"x":1567917660000,"y":13.22},{"x":1567917720000,"y":13.2},{"x":1567917780000,"y":13.2},{"x":1567917840000,"y":13.2},{"x":1567917900000,"y":13.2},{"x":1567917960000,"y":13.2},{"x":1567918020000,"y":13.22},{"x":1567918080000,"y":13.22},{"x":1567918140000,"y":13.22},{"x":1567918200000,"y":13.22},{"x":1567918260000,"y":13.22},{"x":1567918320000,"y":13.23},{"x":1567918380000,"y":13.22},{"x":1567918440000,"y":13.22},{"x":1567918500000,"y":13.2},{"x":1567918560000,"y":13.2},{"x":1567918620000,"y":13.22},{"x":1567918680000,"y":13.21},{"x":1567918740000,"y":13.21},{"x":1567918800000,"y":13.2},{"x":1567918860000,"y":13.2},{"x":1567918920000,"y":13.21},{"x":1567918980000,"y":13.18},{"x":1567919040000,"y":13.18},{"x":1567919100000,"y":13.21},{"x":1567919160000,"y":13.21},{"x":1567919220000,"y":13.22},{"x":1567919280000,"y":13.22},{"x":1567919340000,"y":13.22},{"x":1567919400000,"y":13.2},{"x":1567919460000,"y":13.19},{"x":1567919520000,"y":13.18},{"x":1567919580000,"y":13.2},{"x":1567919640000,"y":13.2},{"x":1567919700000,"y":13.16},{"x":1567919760000,"y":13.17},{"x":1567919820000,"y":13.17},{"x":1567919880000,"y":13.21},{"x":1567919940000,"y":13.2},{"x":1567920000000,"y":13.17},{"x":1567920060000,"y":13.17},{"x":1567920120000,"y":13.17},{"x":1567920180000,"y":13.2},{"x":1567920240000,"y":13.19},{"x":1567920300000,"y":13.19},{"x":1567920360000,"y":13.19},{"x":1567920420000,"y":13.19},{"x":1567920480000,"y":13.21},{"x":1567920540000,"y":13.2},{"x":1567920600000,"y":13.18},{"x":1567920660000,"y":13.18},{"x":1567920720000,"y":13.18},{"x":1567920780000,"y":13.19},{"x":1567920840000,"y":13.19},{"x":1567920900000,"y":13.18},{"x":1567920960000,"y":13.18},{"x":1567921020000,"y":13.18},{"x":1567921080000,"y":13.19},{"x":1567921140000,"y":13.4},{"x":1567921200000,"y":13.4},{"x":1567921260000,"y":13.4},{"x":1567921320000,"y":13.4},{"x":1567921380000,"y":13.41},{"x":1567921440000,"y":13.39},{"x":1567921500000,"y":13.39},{"x":1567921560000,"y":13.39},{"x":1567921620000,"y":13.39},{"x":1567921680000,"y":13.4},{"x":1567921740000,"y":13.4},{"x":1567921800000,"y":13.37},{"x":1567921860000,"y":13.37},{"x":1567921920000,"y":13.37},{"x":1567921980000,"y":13.37},{"x":1567922040000,"y":13.41},{"x":1567922100000,"y":13.41},{"x":1567922160000,"y":13.41},{"x":1567922220000,"y":13.41},{"x":1567922280000,"y":13.41},{"x":1567922340000,"y":13.42},{"x":1567922400000,"y":13.39},{"x":1567922460000,"y":13.39},{"x":1567922520000,"y":13.39},{"x":1567922580000,"y":13.39},{"x":1567922640000,"y":13.4},{"x":1567922700000,"y":13.41},{"x":1567922760000,"y":13.41},{"x":1567922820000,"y":13.41},{"x":1567922880000,"y":13.41},{"x":1567922940000,"y":13.42},{"x":1567923000000,"y":13.41},{"x":1567923060000,"y":13.41},{"x":1567923120000,"y":13.41},{"x":1567923180000,"y":13.41},{"x":1567923240000,"y":13.42},{"x":1567923300000,"y":13.4},{"x":1567923360000,"y":13.4},{"x":1567923420000,"y":13.4},{"x":1567923480000,"y":13.4},{"x":1567923540000,"y":13.41},{"x":1567923600000,"y":13.39},{"x":1567923660000,"y":13.39},{"x":1567923720000,"y":13.39},{"x":1567923780000,"y":13.39},{"x":1567923840000,"y":13.4},{"x":1567923900000,"y":13.4},{"x":1567923960000,"y":13.39},{"x":1567924020000,"y":13.39},{"x":1567924080000,"y":13.39},{"x":1567924140000,"y":13.4},{"x":1567924200000,"y":13.41},{"x":1567924260000,"y":13.4},{"x":1567924320000,"y":13.4},{"x":1567924380000,"y":13.4},{"x":1567924440000,"y":13.4},{"x":1567924500000,"y":13.42},{"x":1567924560000,"y":13.41},{"x":1567924620000,"y":13.41},{"x":1567924680000,"y":13.41},{"x":1567924740000,"y":13.41},{"x":1567924800000,"y":13.43},{"x":1567924860000,"y":13.42},{"x":1567924920000,"y":13.42},{"x":1567924980000,"y":13.42},{"x":1567925040000,"y":13.42},{"x":1567925100000,"y":13.41},{"x":1567925160000,"y":13.39},{"x":1567925220000,"y":13.39},{"x":1567925280000,"y":13.39},{"x":1567925340000,"y":13.39},{"x":1567925400000,"y":13.42},{"x":1567925460000,"y":13.41},{"x":1567925520000,"y":13.41},{"x":1567925580000,"y":13.41},{"x":1567925640000,"y":13.41},{"x":1567925700000,"y":13.63},{"x":1567925760000,"y":13.48},{"x":1567925820000,"y":13.48},{"x":1567925880000,"y":13.48},{"x":1567925940000,"y":13.48},{"x":1567926000000,"y":13.48},{"x":1567926060000,"y":13.43},{"x":1567926120000,"y":13.42},{"x":1567926180000,"y":13.42},{"x":1567926240000,"y":13.42},{"x":1567926300000,"y":13.39},{"x":1567926360000,"y":13.41},{"x":1567926420000,"y":13.41},{"x":1567926480000,"y":13.41},{"x":1567926540000,"y":13.41},{"x":1567926600000,"y":13.42},{"x":1567926660000,"y":13.43},{"x":1567926720000,"y":13.42},{"x":1567926780000,"y":13.42},{"x":1567926840000,"y":13.42},{"x":1567926900000,"y":13.4},{"x":1567926960000,"y":13.41},{"x":1567927020000,"y":13.38},{"x":1567927080000,"y":13.38},{"x":1567927140000,"y":13.38},{"x":1567927200000,"y":13.43},{"x":1567927260000,"y":13.43},{"x":1567927320000,"y":13.42},{"x":1567927380000,"y":13.42},{"x":1567927440000,"y":13.42},{"x":1567927500000,"y":13.4},{"x":1567927560000,"y":13.42},{"x":1567927620000,"y":13.43},{"x":1567927680000,"y":13.43},{"x":1567927740000,"y":13.42},{"x":1567927800000,"y":13.42},{"x":1567927860000,"y":13.43},{"x":1567927920000,"y":13.42},{"x":1567927980000,"y":13.42},{"x":1567928040000,"y":13.43},{"x":1567928100000,"y":13.4},{"x":1567928160000,"y":13.41},{"x":1567928220000,"y":13.42},{"x":1567928280000,"y":13.41},{"x":1567928340000,"y":13.42},{"x":1567928400000,"y":13.42},{"x":1567928460000,"y":13.42},{"x":1567928520000,"y":13.44},{"x":1567928580000,"y":13.4},{"x":1567928640000,"y":13.4},{"x":1567928700000,"y":13.41},{"x":1567928760000,"y":13.41},{"x":1567928820000,"y":13.42},{"x":1567928880000,"y":13.4},{"x":1567928940000,"y":13.41},{"x":1567929000000,"y":13.41},{"x":1567929060000,"y":13.41},{"x":1567929120000,"y":13.42},{"x":1567929180000,"y":13.41},{"x":1567929240000,"y":13.41},{"x":1567929300000,"y":13.39},{"x":1567929360000,"y":13.39},{"x":1567929420000,"y":13.41},{"x":1567929480000,"y":13.4},{"x":1567929540000,"y":13.4},{"x":1567929600000,"y":13.38},{"x":1567929660000,"y":13.38},{"x":1567929720000,"y":13.41},{"x":1567929780000,"y":13.41},{"x":1567929840000,"y":13.4},{"x":1567929900000,"y":13.39},{"x":1567929960000,"y":13.39},{"x":1567930020000,"y":13.41},{"x":1567930080000,"y":13.41},{"x":1567930140000,"y":13.41},{"x":1567930200000,"y":13.39},{"x":1567930260000,"y":13.39},{"x":1567930320000,"y":13.4},{"x":1567930380000,"y":13.41},{"x":1567930440000,"y":13.41},{"x":1567930500000,"y":13.41},{"x":1567930560000,"y":13.41},{"x":1567930620000,"y":13.41},{"x":1567930680000,"y":13.41},{"x":1567930740000,"y":13.4},{"x":1567930800000,"y":13.39},{"x":1567930860000,"y":13.39},{"x":1567930920000,"y":13.39},{"x":1567930980000,"y":13.42},{"x":1567931040000,"y":13.41},{"x":1567931100000,"y":13.41},{"x":1567931160000,"y":13.41},{"x":1567931220000,"y":13.41},{"x":1567931280000,"y":13.42},{"x":1567931340000,"y":13.41},{"x":1567931400000,"y":13.38},{"x":1567931460000,"y":13.38},{"x":1567931520000,"y":13.38},{"x":1567931580000,"y":13.41},{"x":1567931640000,"y":13.41},{"x":1567931700000,"y":13.4},{"x":1567931760000,"y":13.41},{"x":1567931820000,"y":13.41},{"x":1567931880000,"y":13.42},{"x":1567931940000,"y":13.42},{"x":1567932000000,"y":13.38},{"x":1567932060000,"y":13.38},{"x":1567932120000,"y":13.38},{"x":1567932180000,"y":13.4},{"x":1567932240000,"y":13.41},{"x":1567932300000,"y":13.38},{"x":1567932360000,"y":13.38},{"x":1567932420000,"y":13.38},{"x":1567932480000,"y":13.39},{"x":1567932540000,"y":13.4},{"x":1567932600000,"y":13.39},{"x":1567932660000,"y":13.39},{"x":1567932720000,"y":13.39},{"x":1567932780000,"y":13.4},{"x":1567932840000,"y":13.41},{"x":1567932900000,"y":13.41},{"x":1567932960000,"y":13.41},{"x":1567933020000,"y":13.41},{"x":1567933080000,"y":13.41},{"x":1567933140000,"y":13.42},{"x":1567933200000,"y":13.39},{"x":1567933260000,"y":13.39},{"x":1567933320000,"y":13.39},{"x":1567933380000,"y":13.39},{"x":1567933440000,"y":13.42},{"x":1567933500000,"y":13.42},{"x":1567933560000,"y":13.41},{"x":1567933620000,"y":13.41},{"x":1567933680000,"y":13.41},{"x":1567933740000,"y":13.43},{"x":1567933800000,"y":13.42},{"x":1567933860000,"y":13.42},{"x":1567933920000,"y":13.42},{"x":1567933980000,"y":13.42},{"x":1567934040000,"y":13.43},{"x":1567934100000,"y":13.41},{"x":1567934160000,"y":13.41},{"x":1567934220000,"y":13.41},{"x":1567934280000,"y":13.41},{"x":1567934340000,"y":13.42},{"x":1567934400000,"y":13.42},{"x":1567934460000,"y":13.42},{"x":1567934520000,"y":13.42},{"x":1567934580000,"y":13.42},{"x":1567934640000,"y":13.42},{"x":1567934700000,"y":13.41},{"x":1567934760000,"y":13.41},{"x":1567934820000,"y":13.41},{"x":1567934880000,"y":13.41},{"x":1567934940000,"y":13.42},{"x":1567935000000,"y":13.39},{"x":1567935060000,"y":13.4},{"x":1567935120000,"y":13.4},{"x":1567935180000,"y":13.39},{"x":1567935240000,"y":13.39},{"x":1567935300000,"y":13.4},{"x":1567935360000,"y":13.39},{"x":1567935420000,"y":13.39},{"x":1567935480000,"y":13.4},{"x":1567935540000,"y":13.41},{"x":1567935600000,"y":13.43},{"x":1567935660000,"y":13.42},{"x":1567935720000,"y":13.42},{"x":1567935780000,"y":13.42},{"x":1567935840000,"y":13.42},{"x":1567935900000,"y":13.42},{"x":1567935960000,"y":13.41},{"x":1567936020000,"y":13.41},{"x":1567936080000,"y":13.41},{"x":1567936140000,"y":13.41},{"x":1567936200000,"y":13.44},{"x":1567936260000,"y":13.42},{"x":1567936320000,"y":13.42},{"x":1567936380000,"y":13.42},{"x":1567936440000,"y":13.43},{"x":1567936500000,"y":13.44},{"x":1567936560000,"y":13.43},{"x":1567936620000,"y":13.43},{"x":1567936680000,"y":13.42},{"x":1567936740000,"y":13.42},{"x":1567936800000,"y":13.43},{"x":1567936860000,"y":13.41},{"x":1567936920000,"y":13.41},{"x":1567936980000,"y":13.41},{"x":1567937040000,"y":13.41},{"x":1567937100000,"y":13.43},{"x":1567937160000,"y":13.4},{"x":1567937220000,"y":13.4},{"x":1567937280000,"y":13.4},{"x":1567937340000,"y":13.42},{"x":1567937400000,"y":13.43},{"x":1567937460000,"y":13.44},{"x":1567937520000,"y":13.43},{"x":1567937580000,"y":13.42},{"x":1567937640000,"y":13.41},{"x":1567937700000,"y":13.41},{"x":1567937760000,"y":13.4},{"x":1567937820000,"y":13.39},{"x":1567937880000,"y":13.39},{"x":1567937940000,"y":13.39},{"x":1567938000000,"y":13.41},{"x":1567938060000,"y":13.42},{"x":1567938120000,"y":13.41},{"x":1567938180000,"y":13.41},{"x":1567938240000,"y":13.4},{"x":1567938300000,"y":13.39},{"x":1567938360000,"y":13.4},{"x":1567938420000,"y":13.39},{"x":1567938480000,"y":13.39},{"x":1567938540000,"y":13.39},{"x":1567938600000,"y":13.39},{"x":1567938660000,"y":13.42},{"x":1567938720000,"y":13.4},{"x":1567938780000,"y":13.41},{"x":1567938840000,"y":13.41},{"x":1567938900000,"y":13.41},{"x":1567938960000,"y":13.42},{"x":1567939020000,"y":13.39},{"x":1567939080000,"y":13.4},{"x":1567939140000,"y":13.4},{"x":1567939200000,"y":13.38},{"x":1567939260000,"y":13.4},{"x":1567939320000,"y":13.39},{"x":1567939380000,"y":13.39},{"x":1567939440000,"y":13.39},{"x":1567939500000,"y":13.41},{"x":1567939560000,"y":13.41},{"x":1567939620000,"y":13.39},{"x":1567939680000,"y":13.38},{"x":1567939740000,"y":13.38},{"x":1567939800000,"y":13.38},{"x":1567939860000,"y":13.38},{"x":1567939920000,"y":13.4},{"x":1567939980000,"y":13.4},{"x":1567940040000,"y":13.4},{"x":1567940100000,"y":13.39},{"x":1567940160000,"y":13.4},{"x":1567940220000,"y":13.41},{"x":1567940280000,"y":13.41},{"x":1567940340000,"y":13.41},{"x":1567940400000,"y":13.41},{"x":1567940460000,"y":13.4},{"x":1567940520000,"y":13.43},{"x":1567940580000,"y":13.42},{"x":1567940640000,"y":13.42},{"x":1567940700000,"y":13.41},{"x":1567940760000,"y":13.41},{"x":1567940820000,"y":13.59},{"x":1567940880000,"y":13.48},{"x":1567940940000,"y":13.44},{"x":1567941000000,"y":13.47},{"x":1567941060000,"y":13.47},{"x":1567941120000,"y":13.48},{"x":1567941180000,"y":13.41},{"x":1567941240000,"y":13.41},{"x":1567941300000,"y":13.42},{"x":1567941360000,"y":13.42},{"x":1567941420000,"y":13.43},{"x":1567941480000,"y":13.41},{"x":1567941540000,"y":13.41},{"x":1567941600000,"y":13.39},{"x":1567941660000,"y":13.39},{"x":1567941720000,"y":13.39},{"x":1567941780000,"y":13.41},{"x":1567941840000,"y":13.4},{"x":1567941900000,"y":13.5},{"x":1567941960000,"y":13.4},{"x":1567942020000,"y":13.4},{"x":1567942080000,"y":13.4},{"x":1567942140000,"y":13.39},{"x":1567942200000,"y":13.41},{"x":1567942260000,"y":13.41},{"x":1567942320000,"y":13.4},{"x":1567942380000,"y":13.42},{"x":1567942440000,"y":13.42},{"x":1567942500000,"y":13.42},{"x":1567942560000,"y":13.42},{"x":1567942620000,"y":13.42},{"x":1567942680000,"y":13.42},{"x":1567942740000,"y":13.42},{"x":1567942800000,"y":13.39},{"x":1567942860000,"y":13.39},{"x":1567942920000,"y":13.38},{"x":1567942980000,"y":13.42},{"x":1567943040000,"y":13.42},{"x":1567943100000,"y":13.42},{"x":1567943160000,"y":13.42},{"x":1567943220000,"y":13.42},{"x":1567943280000,"y":13.43},{"x":1567943340000,"y":13.4},{"x":1567943400000,"y":13.42},{"x":1567943460000,"y":13.42},{"x":1567943520000,"y":13.42},{"x":1567943580000,"y":13.42},{"x":1567943640000,"y":13.43},{"x":1567943700000,"y":13.42},{"x":1567943760000,"y":13.42},{"x":1567943820000,"y":13.42},{"x":1567943880000,"y":13.42},{"x":1567943940000,"y":13.43},{"x":1567944000000,"y":13.42},{"x":1567944060000,"y":13.42},{"x":1567944120000,"y":13.42},{"x":1567944180000,"y":13.42},{"x":1567944240000,"y":13.43},{"x":1567944300000,"y":13.4},{"x":1567944360000,"y":13.41},{"x":1567944420000,"y":13.41},{"x":1567944480000,"y":13.41},{"x":1567944540000,"y":13.43},{"x":1567944600000,"y":13.42},{"x":1567944660000,"y":13.42},{"x":1567944720000,"y":13.42},{"x":1567944780000,"y":13.43},{"x":1567944840000,"y":13.43},{"x":1567944900000,"y":13.42},{"x":1567944960000,"y":13.42},{"x":1567945020000,"y":13.42},{"x":1567945080000,"y":13.42},{"x":1567945140000,"y":13.43},{"x":1567945200000,"y":13.41},{"x":1567945260000,"y":13.41},{"x":1567945320000,"y":13.41},{"x":1567945380000,"y":13.41},{"x":1567945440000,"y":13.43},{"x":1567945500000,"y":13.42},{"x":1567945560000,"y":13.42},{"x":1567945620000,"y":13.42},{"x":1567945680000,"y":13.42},{"x":1567945740000,"y":13.42},{"x":1567945800000,"y":13.41},{"x":1567945860000,"y":13.39},{"x":1567945920000,"y":13.39},{"x":1567945980000,"y":13.39},{"x":1567946040000,"y":13.39},{"x":1567946100000,"y":13.42},{"x":1567946160000,"y":13.42},{"x":1567946220000,"y":13.42},{"x":1567946280000,"y":13.42},{"x":1567946340000,"y":13.4},{"x":1567946400000,"y":13.42},{"x":1567946460000,"y":13.42},{"x":1567946520000,"y":13.41},{"x":1567946580000,"y":13.42},{"x":1567946640000,"y":13.42},{"x":1567946700000,"y":13.43},{"x":1567946760000,"y":13.43},{"x":1567946820000,"y":13.43},{"x":1567946880000,"y":13.43},{"x":1567946940000,"y":13.4},{"x":1567947000000,"y":13.4},{"x":1567947060000,"y":13.41},{"x":1567947120000,"y":13.41},{"x":1567947180000,"y":13.4},{"x":1567947240000,"y":13.4},{"x":1567947300000,"y":13.4},{"x":1567947360000,"y":13.39},{"x":1567947420000,"y":13.39},{"x":1567947480000,"y":13.39},{"x":1567947540000,"y":13.39},{"x":1567947600000,"y":13.65},{"x":1567947660000,"y":13.54},{"x":1567947720000,"y":13.47},{"x":1567947780000,"y":13.47},{"x":1567947840000,"y":13.47},{"x":1567947900000,"y":13.48},{"x":1567947960000,"y":13.4},{"x":1567948020000,"y":13.39},{"x":1567948080000,"y":13.39},{"x":1567948140000,"y":13.41},{"x":1567948200000,"y":13.39},{"x":1567948260000,"y":13.4},{"x":1567948320000,"y":13.4},{"x":1567948380000,"y":13.4},{"x":1567948440000,"y":13.4},{"x":1567948500000,"y":13.38},{"x":1567948560000,"y":13.41},{"x":1567948620000,"y":13.4},{"x":1567948680000,"y":13.4},{"x":1567948740000,"y":13.4},{"x":1567948800000,"y":13.4},{"x":1567948860000,"y":13.42},{"x":1567948920000,"y":13.41},{"x":1567948980000,"y":13.41},{"x":1567949040000,"y":13.41},{"x":1567949100000,"y":13.41},{"x":1567949160000,"y":13.43},{"x":1567949220000,"y":13.41},{"x":1567949280000,"y":13.41},{"x":1567949340000,"y":13.41},{"x":1567949400000,"y":13.41},{"x":1567949460000,"y":13.43},{"x":1567949520000,"y":13.41},{"x":1567949580000,"y":13.41},{"x":1567949640000,"y":13.41},{"x":1567949700000,"y":13.41},{"x":1567949760000,"y":13.42},{"x":1567949820000,"y":13.41},{"x":1567949880000,"y":13.41},{"x":1567949940000,"y":13.39},{"x":1567950000000,"y":13.38},{"x":1567950060000,"y":13.39},{"x":1567950120000,"y":13.39},{"x":1567950180000,"y":13.39},{"x":1567950240000,"y":13.39},{"x":1567950300000,"y":13.38},{"x":1567950360000,"y":13.38},{"x":1567950420000,"y":13.41},{"x":1567950480000,"y":13.4},{"x":1567950540000,"y":13.4},{"x":1567950600000,"y":13.42},{"x":1567950660000,"y":13.42},{"x":1567950720000,"y":13.43},{"x":1567950780000,"y":13.42},{"x":1567950840000,"y":13.42},{"x":1567950900000,"y":13.39},{"x":1567950960000,"y":13.39},{"x":1567951020000,"y":13.41},{"x":1567951080000,"y":13.4},{"x":1567951140000,"y":13.4},{"x":1567951200000,"y":13.42},{"x":1567951260000,"y":13.42},{"x":1567951320000,"y":13.42},{"x":1567951380000,"y":13.4},{"x":1567951440000,"y":13.4},{"x":1567951500000,"y":13.39},{"x":1567951560000,"y":13.39},{"x":1567951620000,"y":13.41},{"x":1567951680000,"y":13.42},{"x":1567951740000,"y":13.42},{"x":1567951800000,"y":13.39},{"x":1567951860000,"y":13.39},{"x":1567951920000,"y":13.42},{"x":1567951980000,"y":13.43},{"x":1567952040000,"y":13.43},{"x":1567952100000,"y":13.39},{"x":1567952160000,"y":13.39},{"x":1567952220000,"y":13.41},{"x":1567952280000,"y":13.41},{"x":1567952340000,"y":13.4},{"x":1567952400000,"y":13.41},{"x":1567952460000,"y":13.41},{"x":1567952520000,"y":13.42},{"x":1567952580000,"y":13.41},{"x":1567952640000,"y":13.41},{"x":1567952700000,"y":13.41},{"x":1567952760000,"y":13.41},{"x":1567952820000,"y":13.4},{"x":1567952880000,"y":13.43},{"x":1567952940000,"y":13.41},{"x":1567953000000,"y":13.42},{"x":1567953060000,"y":13.42},{"x":1567953120000,"y":13.42},{"x":1567953180000,"y":13.44},{"x":1567953240000,"y":13.42},{"x":1567953300000,"y":13.42},{"x":1567953360000,"y":13.42},{"x":1567953420000,"y":13.42},{"x":1567953480000,"y":13.42},{"x":1567953540000,"y":13.43},{"x":1567953600000,"y":13.43},{"x":1567953660000,"y":13.43},{"x":1567953720000,"y":13.43},{"x":1567953780000,"y":13.43},{"x":1567953840000,"y":13.42},{"x":1567953900000,"y":13.42},{"x":1567953960000,"y":13.42},{"x":1567954020000,"y":13.42},{"x":1567954080000,"y":13.44},{"x":1567954140000,"y":13.42},{"x":1567954200000,"y":13.41},{"x":1567954260000,"y":13.41},{"x":1567954320000,"y":13.41},{"x":1567954380000,"y":13.42},{"x":1567954440000,"y":13.41},{"x":1567954500000,"y":13.42},{"x":1567954560000,"y":13.42},{"x":1567954620000,"y":13.42},{"x":1567954680000,"y":13.43},{"x":1567954740000,"y":13.42},{"x":1567954800000,"y":13.42},{"x":1567954860000,"y":13.42},{"x":1567954920000,"y":13.42},{"x":1567954980000,"y":13.42},{"x":1567955040000,"y":13.44},{"x":1567955100000,"y":13.43},{"x":1567955160000,"y":13.43},{"x":1567955220000,"y":13.43},{"x":1567955280000,"y":13.43},{"x":1567955340000,"y":13.44},{"x":1567955400000,"y":13.41},{"x":1567955460000,"y":13.41},{"x":1567955520000,"y":13.41},{"x":1567955580000,"y":13.41},{"x":1567955640000,"y":13.41},{"x":1567955700000,"y":13.4},{"x":1567955760000,"y":13.4},{"x":1567955820000,"y":13.4},{"x":1567955880000,"y":13.4},{"x":1567955940000,"y":13.42},{"x":1567956000000,"y":13.42},{"x":1567956060000,"y":13.4},{"x":1567956120000,"y":13.39},{"x":1567956180000,"y":13.39},{"x":1567956240000,"y":13.41},{"x":1567956300000,"y":13.41},{"x":1567956360000,"y":13.41},{"x":1567956420000,"y":13.4},{"x":1567956480000,"y":13.4},{"x":1567956540000,"y":13.41},{"x":1567956600000,"y":13.4},{"x":1567956660000,"y":13.4},{"x":1567956720000,"y":13.41},{"x":1567956780000,"y":13.41},{"x":1567956840000,"y":13.55},{"x":1567956900000,"y":13.47},{"x":1567956960000,"y":13.47},{"x":1567957020000,"y":13.47},{"x":1567957080000,"y":13.47},{"x":1567957140000,"y":13.43},{"x":1567957200000,"y":13.4},{"x":1567957260000,"y":13.39},{"x":1567957320000,"y":13.39},{"x":1567957380000,"y":13.39},{"x":1567957440000,"y":13.39},{"x":1567957500000,"y":13.42},{"x":1567957560000,"y":13.41},{"x":1567957620000,"y":13.41},{"x":1567957680000,"y":13.41},{"x":1567957740000,"y":13.41},{"x":1567957800000,"y":13.42},{"x":1567957860000,"y":13.41},{"x":1567957920000,"y":13.41},{"x":1567957980000,"y":13.41},{"x":1567958040000,"y":13.41},{"x":1567958100000,"y":13.41},{"x":1567958160000,"y":13.41},{"x":1567958220000,"y":13.41},{"x":1567958280000,"y":13.41},{"x":1567958340000,"y":13.41},{"x":1567958400000,"y":13.41},{"x":1567958460000,"y":13.42},{"x":1567958520000,"y":13.42},{"x":1567958580000,"y":13.42},{"x":1567958640000,"y":13.42},{"x":1567958700000,"y":13.42},{"x":1567958760000,"y":13.42},{"x":1567958820000,"y":13.42},{"x":1567958880000,"y":13.42},{"x":1567958940000,"y":13.42},{"x":1567959000000,"y":13.42},{"x":1567959060000,"y":13.42},{"x":1567959120000,"y":13.42},{"x":1567959180000,"y":13.42},{"x":1567959240000,"y":13.42},{"x":1567959300000,"y":13.42},{"x":1567959360000,"y":13.42},{"x":1567959420000,"y":13.41},{"x":1567959480000,"y":13.41},{"x":1567959540000,"y":13.41},{"x":1567959600000,"y":13.42},{"x":1567959660000,"y":13.44},{"x":1567959720000,"y":13.43},{"x":1567959780000,"y":13.43},{"x":1567959840000,"y":13.43},{"x":1567959900000,"y":13.41},{"x":1567959960000,"y":13.4},{"x":1567960020000,"y":13.39},{"x":1567960080000,"y":13.39},{"x":1567960140000,"y":13.39},{"x":1567960200000,"y":13.42},{"x":1567960260000,"y":13.42},{"x":1567960320000,"y":13.41},{"x":1567960380000,"y":13.41},{"x":1567960440000,"y":13.4},{"x":1567960500000,"y":13.4},{"x":1567960560000,"y":13.42},{"x":1567960620000,"y":13.42},{"x":1567960680000,"y":13.42},{"x":1567960740000,"y":13.42},{"x":1567960800000,"y":13.4},{"x":1567960860000,"y":13.42},{"x":1567960920000,"y":13.42},{"x":1567960980000,"y":13.42},{"x":1567961040000,"y":13.42},{"x":1567961100000,"y":13.41},{"x":1567961160000,"y":13.42},{"x":1567961220000,"y":13.41},{"x":1567961280000,"y":13.41},{"x":1567961340000,"y":13.4},{"x":1567961400000,"y":13.41},{"x":1567961460000,"y":13.42},{"x":1567961520000,"y":13.41},{"x":1567961580000,"y":13.41},{"x":1567961640000,"y":13.41},{"x":1567961700000,"y":13.4},{"x":1567961760000,"y":13.4},{"x":1567961820000,"y":13.42},{"x":1567961880000,"y":13.4},{"x":1567961940000,"y":13.4},{"x":1567962000000,"y":13.38},{"x":1567962060000,"y":13.37},{"x":1567962120000,"y":13.41},{"x":1567962180000,"y":13.4},{"x":1567962240000,"y":13.4},{"x":1567962300000,"y":13.39},{"x":1567962360000,"y":13.4},{"x":1567962420000,"y":13.42},{"x":1567962480000,"y":13.43},{"x":1567962540000,"y":13.43},{"x":1567962600000,"y":13.42},{"x":1567962660000,"y":13.42},{"x":1567962720000,"y":13.43},{"x":1567962780000,"y":13.42},{"x":1567962840000,"y":13.42},{"x":1567962900000,"y":13.43},{"x":1567962960000,"y":13.43},{"x":1567963020000,"y":13.44},{"x":1567963080000,"y":13.43},{"x":1567963140000,"y":13.43},{"x":1567963200000,"y":13.42},{"x":1567963260000,"y":13.42},{"x":1567963320000,"y":13.44},{"x":1567963380000,"y":13.43},{"x":1567963440000,"y":13.42},{"x":1567963500000,"y":13.43},{"x":1567963560000,"y":13.43},{"x":1567963620000,"y":13.44},{"x":1567963680000,"y":13.42},{"x":1567963740000,"y":13.42},{"x":1567963800000,"y":13.4},{"x":1567963860000,"y":13.4},{"x":1567963920000,"y":13.4},{"x":1567963980000,"y":13.41},{"x":1567964040000,"y":13.4},{"x":1567964100000,"y":13.42},{"x":1567964160000,"y":13.42},{"x":1567964220000,"y":13.42},{"x":1567964280000,"y":13.44},{"x":1567964340000,"y":13.43},{"x":1567964400000,"y":13.42},{"x":1567964460000,"y":13.42},{"x":1567964520000,"y":13.42},{"x":1567964580000,"y":13.43},{"x":1567964640000,"y":13.43},{"x":1567964700000,"y":13.41},{"x":1567964760000,"y":13.41},{"x":1567964820000,"y":13.41},{"x":1567964880000,"y":13.44},{"x":1567964940000,"y":13.43},{"x":1567965000000,"y":13.43},{"x":1567965060000,"y":13.43},{"x":1567965120000,"y":13.43},{"x":1567965180000,"y":13.44},{"x":1567965240000,"y":13.43},{"x":1567965300000,"y":13.42},{"x":1567965360000,"y":13.41},{"x":1567965420000,"y":13.4},{"x":1567965480000,"y":13.41},{"x":1567965540000,"y":13.41},{"x":1567965600000,"y":13.42},{"x":1567965660000,"y":13.42},{"x":1567965720000,"y":13.42},{"x":1567965780000,"y":13.43},{"x":1567965840000,"y":13.41},{"x":1567965900000,"y":13.38},{"x":1567965960000,"y":13.38},{"x":1567966020000,"y":13.38},{"x":1567966080000,"y":13.4},{"x":1567966140000,"y":13.41},{"x":1567966200000,"y":13.41},{"x":1567966260000,"y":13.41},{"x":1567966320000,"y":13.41},{"x":1567966380000,"y":13.41},{"x":1567966440000,"y":13.43},{"x":1567966500000,"y":13.41},{"x":1567966560000,"y":13.41},{"x":1567966620000,"y":13.41},{"x":1567966680000,"y":13.41},{"x":1567966740000,"y":13.41},{"x":1567966800000,"y":13.4},{"x":1567966860000,"y":13.4},{"x":1567966920000,"y":13.41},{"x":1567966980000,"y":13.41},{"x":1567967040000,"y":13.41},{"x":1567967100000,"y":13.41},{"x":1567967160000,"y":13.41},{"x":1567967220000,"y":13.41},{"x":1567967280000,"y":13.41},{"x":1567967340000,"y":13.42},{"x":1567967400000,"y":13.42},{"x":1567967460000,"y":13.42},{"x":1567967520000,"y":13.42},{"x":1567967580000,"y":13.42},{"x":1567967640000,"y":13.42},{"x":1567967700000,"y":13.42},{"x":1567967760000,"y":13.42},{"x":1567967820000,"y":13.42},{"x":1567967880000,"y":13.42},{"x":1567967940000,"y":13.43},{"x":1567968000000,"y":13.42},{"x":1567968060000,"y":13.42},{"x":1567968120000,"y":13.42},{"x":1567968180000,"y":13.42},{"x":1567968240000,"y":13.43},{"x":1567968300000,"y":13.41},{"x":1567968360000,"y":13.41},{"x":1567968420000,"y":13.41},{"x":1567968480000,"y":13.41},{"x":1567968540000,"y":13.42},{"x":1567968600000,"y":13.4},{"x":1567968660000,"y":13.4},{"x":1567968720000,"y":13.4},{"x":1567968780000,"y":13.4},{"x":1567968840000,"y":13.4},{"x":1567968900000,"y":13.42},{"x":1567968960000,"y":13.42},{"x":1567969020000,"y":13.41},{"x":1567969080000,"y":13.41},{"x":1567969140000,"y":13.42},{"x":1567969200000,"y":13.4},{"x":1567969260000,"y":13.39},{"x":1567969320000,"y":13.39},{"x":1567969380000,"y":13.39},{"x":1567969440000,"y":13.39},{"x":1567969500000,"y":13.8},{"x":1567969560000,"y":13.48},{"x":1567969620000,"y":13.48},{"x":1567969680000,"y":13.48},{"x":1567969740000,"y":13.48},{"x":1567969800000,"y":13.47},{"x":1567969860000,"y":13.42},{"x":1567969920000,"y":13.42},{"x":1567969980000,"y":13.42},{"x":1567970040000,"y":13.42},{"x":1567970100000,"y":13.41},{"x":1567970160000,"y":13.42},{"x":1567970220000,"y":13.41},{"x":1567970280000,"y":13.4},{"x":1567970340000,"y":13.41},{"x":1567970400000,"y":13.43},{"x":1567970460000,"y":13.41},{"x":1567970520000,"y":13.41},{"x":1567970580000,"y":13.41},{"x":1567970640000,"y":13.41},{"x":1567970700000,"y":13.43},{"x":1567970760000,"y":13.42},{"x":1567970820000,"y":13.42},{"x":1567970880000,"y":13.42},{"x":1567970940000,"y":13.42},{"x":1567971000000,"y":13.41},{"x":1567971060000,"y":13.43},{"x":1567971120000,"y":13.42},{"x":1567971180000,"y":13.43},{"x":1567971240000,"y":13.42},{"x":1567971300000,"y":13.41},{"x":1567971360000,"y":13.43},{"x":1567971420000,"y":13.42},{"x":1567971480000,"y":13.42},{"x":1567971540000,"y":13.42},{"x":1567971600000,"y":13.41},{"x":1567971660000,"y":13.43},{"x":1567971720000,"y":13.42},{"x":1567971780000,"y":13.42},{"x":1567971840000,"y":13.42},{"x":1567971900000,"y":13.42},{"x":1567971960000,"y":13.44},{"x":1567972020000,"y":13.43},{"x":1567972080000,"y":13.43},{"x":1567972140000,"y":13.43},{"x":1567972200000,"y":13.42},{"x":1567972260000,"y":13.44},{"x":1567972320000,"y":13.43},{"x":1567972380000,"y":13.43},{"x":1567972440000,"y":13.43},{"x":1567972500000,"y":13.41},{"x":1567972560000,"y":13.42},{"x":1567972620000,"y":13.43},{"x":1567972680000,"y":13.43},{"x":1567972740000,"y":13.43},{"x":1567972800000,"y":13.41},{"x":1567972860000,"y":13.42},{"x":1567972920000,"y":13.42},{"x":1567972980000,"y":13.42},{"x":1567973040000,"y":13.42},{"x":1567973100000,"y":13.4},{"x":1567973160000,"y":13.41},{"x":1567973220000,"y":13.43},{"x":1567973280000,"y":13.43},{"x":1567973340000,"y":13.42},{"x":1567973400000,"y":13.4},{"x":1567973460000,"y":13.4},{"x":1567973520000,"y":13.45},{"x":1567973580000,"y":13.43},{"x":1567973640000,"y":13.43},{"x":1567973700000,"y":13.43},{"x":1567973760000,"y":13.43},{"x":1567973820000,"y":13.44},{"x":1567973880000,"y":13.43},{"x":1567973940000,"y":13.43},{"x":1567974000000,"y":13.43},{"x":1567974060000,"y":13.43},{"x":1567974120000,"y":13.43},{"x":1567974180000,"y":13.42},{"x":1567974240000,"y":13.42},{"x":1567974300000,"y":13.43},{"x":1567974360000,"y":13.43},{"x":1567974420000,"y":13.42},{"x":1567974480000,"y":13.4},{"x":1567974540000,"y":13.4},{"x":1567974600000,"y":13.41},{"x":1567974660000,"y":13.4},{"x":1567974720000,"y":13.42},{"x":1567974780000,"y":13.39},{"x":1567974840000,"y":13.39},{"x":1567974900000,"y":13.41},{"x":1567974960000,"y":13.41},{"x":1567975020000,"y":13.42},{"x":1567975080000,"y":13.41},{"x":1567975140000,"y":13.41},{"x":1567975200000,"y":13.38},{"x":1567975260000,"y":13.38},{"x":1567975320000,"y":13.39},{"x":1567975380000,"y":13.41},{"x":1567975440000,"y":13.41},{"x":1567975500000,"y":13.41},{"x":1567975560000,"y":13.41},{"x":1567975620000,"y":13.42},{"x":1567975680000,"y":13.41},{"x":1567975740000,"y":13.41},{"x":1567975800000,"y":13.41},{"x":1567975860000,"y":13.41},{"x":1567975920000,"y":13.41},{"x":1567975980000,"y":13.42},{"x":1567976040000,"y":13.4},{"x":1567976100000,"y":13.38},{"x":1567976160000,"y":13.38},{"x":1567976220000,"y":13.38},{"x":1567976280000,"y":13.41},{"x":1567976340000,"y":13.4},{"x":1567976400000,"y":13.42},{"x":1567976460000,"y":13.42},{"x":1567976520000,"y":13.42},{"x":1567976580000,"y":13.42},{"x":1567976640000,"y":13.41},{"x":1567976700000,"y":13.4},{"x":1567976760000,"y":13.4},{"x":1567976820000,"y":13.4},{"x":1567976880000,"y":13.42},{"x":1567976940000,"y":13.42},{"x":1567977000000,"y":13.42},{"x":1567977060000,"y":13.42},{"x":1567977120000,"y":13.42},{"x":1567977180000,"y":13.42},{"x":1567977240000,"y":13.41},{"x":1567977300000,"y":13.4},{"x":1567977360000,"y":13.4},{"x":1567977420000,"y":13.4},{"x":1567977480000,"y":13.42},{"x":1567977540000,"y":13.42},{"x":1567977600000,"y":13.4},{"x":1567977660000,"y":13.4},{"x":1567977720000,"y":13.4},{"x":1567977780000,"y":13.41},{"x":1567977840000,"y":13.41},{"x":1567977900000,"y":13.41},{"x":1567977960000,"y":13.41},{"x":1567978020000,"y":13.41},{"x":1567978080000,"y":13.42},{"x":1567978140000,"y":13.42},{"x":1567978200000,"y":13.42},{"x":1567978260000,"y":13.42},{"x":1567978320000,"y":13.42},{"x":1567978380000,"y":13.42},{"x":1567978440000,"y":13.4},{"x":1567978500000,"y":13.39},{"x":1567978560000,"y":13.39},{"x":1567978620000,"y":13.39},{"x":1567978680000,"y":13.39},{"x":1567978740000,"y":13.43},{"x":1567978800000,"y":13.39},{"x":1567978860000,"y":13.39},{"x":1567978920000,"y":13.39},{"x":1567978980000,"y":13.39},{"x":1567979040000,"y":13.4},{"x":1567979100000,"y":13.41},{"x":1567979160000,"y":13.41},{"x":1567979220000,"y":13.41},{"x":1567979280000,"y":13.41},{"x":1567979340000,"y":13.43},{"x":1567979400000,"y":13.42},{"x":1567979460000,"y":13.42},{"x":1567979520000,"y":13.42},{"x":1567979580000,"y":13.41},{"x":1567979640000,"y":13.43},{"x":1567979700000,"y":13.4},{"x":1567979760000,"y":13.4},{"x":1567979820000,"y":13.4},{"x":1567979880000,"y":13.4},{"x":1567979940000,"y":13.42},{"x":1567980000000,"y":13.43},{"x":1567980060000,"y":13.43},{"x":1567980120000,"y":13.43},{"x":1567980180000,"y":13.43},{"x":1567980240000,"y":13.44},{"x":1567980300000,"y":13.42},{"x":1567980360000,"y":13.42},{"x":1567980420000,"y":13.42},{"x":1567980480000,"y":13.42},{"x":1567980540000,"y":13.44},{"x":1567980600000,"y":13.41},{"x":1567980660000,"y":13.41},{"x":1567980720000,"y":13.41},{"x":1567980780000,"y":13.41},{"x":1567980840000,"y":13.41},{"x":1567980900000,"y":13.41},{"x":1567980960000,"y":13.4},{"x":1567981020000,"y":13.4},{"x":1567981080000,"y":13.4},{"x":1567981140000,"y":13.4},{"x":1567981200000,"y":13.43},{"x":1567981260000,"y":13.43},{"x":1567981320000,"y":13.43},{"x":1567981380000,"y":13.43},{"x":1567981440000,"y":13.43},{"x":1567981500000,"y":13.43},{"x":1567981560000,"y":13.42},{"x":1567981620000,"y":13.42},{"x":1567981680000,"y":13.42},{"x":1567981740000,"y":13.42},{"x":1567981800000,"y":13.43},{"x":1567981860000,"y":13.42},{"x":1567981920000,"y":13.42},{"x":1567981980000,"y":13.42},{"x":1567982040000,"y":13.41},{"x":1567982100000,"y":13.42},{"x":1567982160000,"y":13.43},{"x":1567982220000,"y":13.43},{"x":1567982280000,"y":13.43},{"x":1567982340000,"y":13.42},{"x":1567982400000,"y":13.42},{"x":1567982460000,"y":13.43},{"x":1567982520000,"y":13.43},{"x":1567982580000,"y":13.43},{"x":1567982640000,"y":13.43},{"x":1567982700000,"y":13.42},{"x":1567982760000,"y":13.43},{"x":1567982820000,"y":13.43},{"x":1567982880000,"y":13.43},{"x":1567982940000,"y":13.43},{"x":1567983000000,"y":13.42},{"x":1567983060000,"y":13.43},{"x":1567983120000,"y":13.43},{"x":1567983180000,"y":13.43},{"x":1567983240000,"y":13.43},{"x":1567983300000,"y":13.42},{"x":1567983360000,"y":13.42},{"x":1567983420000,"y":13.41},{"x":1567983480000,"y":13.41},{"x":1567983540000,"y":13.41},{"x":1567983600000,"y":13.43},{"x":1567983660000,"y":13.45},{"x":1567983720000,"y":13.43},{"x":1567983780000,"y":13.43},{"x":1567983840000,"y":13.43},{"x":1567983900000,"y":13.41},{"x":1567983960000,"y":13.42},{"x":1567984020000,"y":13.41},{"x":1567984080000,"y":13.41},{"x":1567984140000,"y":13.39},{"x":1567984200000,"y":13.38},{"x":1567984260000,"y":13.39},{"x":1567984320000,"y":13.4},{"x":1567984380000,"y":13.4},{"x":1567984440000,"y":13.4},{"x":1567984500000,"y":13.42},{"x":1567984560000,"y":13.42},{"x":1567984620000,"y":13.41},{"x":1567984680000,"y":13.41},{"x":1567984740000,"y":13.41},{"x":1567984800000,"y":13.41},{"x":1567984860000,"y":13.42},{"x":1567984920000,"y":13.42},{"x":1567984980000,"y":13.42},{"x":1567985040000,"y":13.42},{"x":1567985100000,"y":13.4},{"x":1567985160000,"y":13.4},{"x":1567985220000,"y":13.43},{"x":1567985280000,"y":13.41},{"x":1567985340000,"y":13.41},{"x":1567985400000,"y":13.42},{"x":1567985460000,"y":13.42},{"x":1567985520000,"y":13.43},{"x":1567985580000,"y":13.41},{"x":1567985640000,"y":13.41},{"x":1567985700000,"y":13.41},{"x":1567985760000,"y":13.41},{"x":1567985820000,"y":13.42},{"x":1567985880000,"y":13.42},{"x":1567985940000,"y":13.42},{"x":1567986000000,"y":13.41},{"x":1567986060000,"y":13.41},{"x":1567986120000,"y":13.43},{"x":1567986180000,"y":13.42},{"x":1567986240000,"y":13.42},{"x":1567986300000,"y":13.42},{"x":1567986360000,"y":13.42},{"x":1567986420000,"y":13.43},{"x":1567986480000,"y":13.4},{"x":1567986540000,"y":13.4},{"x":1567986600000,"y":13.37},{"x":1567986660000,"y":13.37},{"x":1567986720000,"y":13.39},{"x":1567986780000,"y":13.4},{"x":1567986840000,"y":13.4},{"x":1567986900000,"y":13.37},{"x":1567986960000,"y":13.37},{"x":1567987020000,"y":13.39},{"x":1567987080000,"y":13.41},{"x":1567987140000,"y":13.41},{"x":1567987200000,"y":13.42},{"x":1567987260000,"y":13.41},{"x":1567987320000,"y":13.42},{"x":1567987380000,"y":13.42},{"x":1567987440000,"y":13.42},{"x":1567987500000,"y":13.41},{"x":1567987560000,"y":13.41},{"x":1567987620000,"y":13.41},{"x":1567987680000,"y":13.44},{"x":1567987740000,"y":13.43},{"x":1567987800000,"y":13.41},{"x":1567987860000,"y":13.41},{"x":1567987920000,"y":13.41},{"x":1567987980000,"y":13.43},{"x":1567988040000,"y":13.42},{"x":1567988100000,"y":13.42},{"x":1567988160000,"y":13.42},{"x":1567988220000,"y":13.41},{"x":1567988280000,"y":13.43},{"x":1567988340000,"y":13.42},{"x":1567988400000,"y":13.41},{"x":1567988460000,"y":13.41},{"x":1567988520000,"y":13.42},{"x":1567988580000,"y":13.44},{"x":1567988640000,"y":13.42},{"x":1567988700000,"y":13.4},{"x":1567988760000,"y":13.4},{"x":1567988820000,"y":13.4},{"x":1567988880000,"y":13.42},{"x":1567988940000,"y":13.41},{"x":1567989000000,"y":13.43},{"x":1567989060000,"y":13.43},{"x":1567989120000,"y":13.43},{"x":1567989180000,"y":13.43},{"x":1567989240000,"y":13.42},{"x":1567989300000,"y":13.39},{"x":1567989360000,"y":13.4},{"x":1567989420000,"y":13.4},{"x":1567989480000,"y":13.41},{"x":1567989540000,"y":13.41},{"x":1567989600000,"y":13.41},{"x":1567989660000,"y":13.41},{"x":1567989720000,"y":13.41},{"x":1567989780000,"y":13.43},{"x":1567989840000,"y":13.41},{"x":1567989900000,"y":13.43},{"x":1567989960000,"y":13.43},{"x":1567990020000,"y":13.43},{"x":1567990080000,"y":13.43},{"x":1567990140000,"y":13.43},{"x":1567990200000,"y":13.43},{"x":1567990260000,"y":13.43},{"x":1567990320000,"y":13.43},{"x":1567990380000,"y":13.43},{"x":1567990440000,"y":13.43},{"x":1567990500000,"y":13.43},{"x":1567990560000,"y":13.43},{"x":1567990620000,"y":13.43},{"x":1567990680000,"y":13.43},{"x":1567990740000,"y":13.45},{"x":1567990800000,"y":13.43},{"x":1567990860000,"y":13.43},{"x":1567990920000,"y":13.43},{"x":1567990980000,"y":13.42},{"x":1567991040000,"y":13.44},{"x":1567991100000,"y":13.43},{"x":1567991160000,"y":13.43},{"x":1567991220000,"y":13.43},{"x":1567991280000,"y":13.43},{"x":1567991340000,"y":13.76},{"x":1567991400000,"y":13.46},{"x":1567991460000,"y":13.45},{"x":1567991520000,"y":13.45},{"x":1567991580000,"y":13.45},{"x":1567991640000,"y":13.45},{"x":1567991700000,"y":13.43},{"x":1567991760000,"y":13.43},{"x":1567991820000,"y":13.44},{"x":1567991880000,"y":13.44},{"x":1567991940000,"y":13.45},{"x":1567992000000,"y":13.44},{"x":1567992060000,"y":13.44},{"x":1567992120000,"y":13.44},{"x":1567992180000,"y":13.44},{"x":1567992240000,"y":13.45},{"x":1567992300000,"y":13.43},{"x":1567992360000,"y":13.43},{"x":1567992420000,"y":13.42},{"x":1567992480000,"y":13.42},{"x":1567992540000,"y":13.42},{"x":1567992600000,"y":13.41},{"x":1567992660000,"y":13.39},{"x":1567992720000,"y":13.4},{"x":1567992780000,"y":13.39},{"x":1567992840000,"y":13.39},{"x":1567992900000,"y":13.43},{"x":1567992960000,"y":13.42},{"x":1567993020000,"y":13.42},{"x":1567993080000,"y":13.42},{"x":1567993140000,"y":13.42},{"x":1567993200000,"y":13.4},{"x":1567993260000,"y":13.39},{"x":1567993320000,"y":13.39},{"x":1567993380000,"y":13.39},{"x":1567993440000,"y":13.39},{"x":1567993500000,"y":13.42},{"x":1567993560000,"y":13.4},{"x":1567993620000,"y":13.41},{"x":1567993680000,"y":13.41},{"x":1567993740000,"y":13.41},{"x":1567993800000,"y":13.4},{"x":1567993860000,"y":13.4},{"x":1567993920000,"y":13.4},{"x":1567993980000,"y":13.4},{"x":1567994040000,"y":13.4},{"x":1567994100000,"y":13.4},{"x":1567994160000,"y":13.4},{"x":1567994220000,"y":13.4},{"x":1567994280000,"y":13.4},{"x":1567994340000,"y":13.4},{"x":1567994400000,"y":13.42},{"x":1567994460000,"y":13.41},{"x":1567994520000,"y":13.41},{"x":1567994580000,"y":13.41},{"x":1567994640000,"y":13.41},{"x":1567994700000,"y":13.4},{"x":1567994760000,"y":13.38},{"x":1567994820000,"y":13.38},{"x":1567994880000,"y":13.38},{"x":1567994940000,"y":13.42},{"x":1567995000000,"y":13.43},{"x":1567995060000,"y":13.41},{"x":1567995120000,"y":13.41},{"x":1567995180000,"y":13.41},{"x":1567995240000,"y":13.41},{"x":1567995300000,"y":13.42},{"x":1567995360000,"y":13.42},{"x":1567995420000,"y":13.41},{"x":1567995480000,"y":13.41},{"x":1567995540000,"y":13.41},{"x":1567995600000,"y":13.39},{"x":1567995660000,"y":13.4},{"x":1567995720000,"y":13.39},{"x":1567995780000,"y":13.4},{"x":1567995840000,"y":13.39},{"x":1567995900000,"y":13.41},{"x":1567995960000,"y":13.4},{"x":1567996020000,"y":13.39},{"x":1567996080000,"y":13.39},{"x":1567996140000,"y":13.39},{"x":1567996200000,"y":13.42},{"x":1567996260000,"y":13.43},{"x":1567996320000,"y":13.41},{"x":1567996380000,"y":13.41},{"x":1567996440000,"y":13.41},{"x":1567996500000,"y":13.42},{"x":1567996560000,"y":13.43},{"x":1567996620000,"y":13.42},{"x":1567996680000,"y":13.42},{"x":1567996740000,"y":13.42},{"x":1567996800000,"y":13.42},{"x":1567996860000,"y":13.43},{"x":1567996920000,"y":13.4},{"x":1567996980000,"y":13.4},{"x":1567997040000,"y":13.4},{"x":1567997100000,"y":13.41},{"x":1567997160000,"y":13.42},{"x":1567997220000,"y":13.43},{"x":1567997280000,"y":13.43},{"x":1567997340000,"y":13.43},{"x":1567997400000,"y":13.42},{"x":1567997460000,"y":13.42},{"x":1567997520000,"y":13.4},{"x":1567997580000,"y":13.39},{"x":1567997640000,"y":13.39},{"x":1567997700000,"y":13.41},{"x":1567997760000,"y":13.41},{"x":1567997820000,"y":13.43},{"x":1567997880000,"y":13.42},{"x":1567997940000,"y":13.42},{"x":1567998000000,"y":13.43},{"x":1567998060000,"y":13.43},{"x":1567998120000,"y":13.43},{"x":1567998180000,"y":13.42},{"x":1567998240000,"y":13.42},{"x":1567998300000,"y":13.4},{"x":1567998360000,"y":13.4},{"x":1567998420000,"y":13.42},{"x":1567998480000,"y":13.41},{"x":1567998540000,"y":13.42},{"x":1567998600000,"y":13.42},{"x":1567998660000,"y":13.42},{"x":1567998720000,"y":13.44},{"x":1567998780000,"y":13.42},{"x":1567998840000,"y":13.42},{"x":1567998900000,"y":13.42},{"x":1567998960000,"y":13.42},{"x":1567999020000,"y":13.43},{"x":1567999080000,"y":13.42},{"x":1567999140000,"y":13.42},{"x":1567999200000,"y":13.43},{"x":1567999260000,"y":13.43},{"x":1567999320000,"y":13.44},{"x":1567999380000,"y":13.42},{"x":1567999440000,"y":13.42},{"x":1567999500000,"y":13.42},{"x":1567999560000,"y":13.42},{"x":1567999620000,"y":13.43},{"x":1567999680000,"y":13.42},{"x":1567999740000,"y":13.42},{"x":1567999800000,"y":13.42},{"x":1567999860000,"y":13.42},{"x":1567999920000,"y":13.42},{"x":1567999980000,"y":13.43},{"x":1568000040000,"y":13.42},{"x":1568000100000,"y":13.41},{"x":1568000160000,"y":13.41},{"x":1568000220000,"y":13.41},{"x":1568000280000,"y":13.43},{"x":1568000340000,"y":13.42},{"x":1568000400000,"y":13.41},{"x":1568000460000,"y":13.41},{"x":1568000520000,"y":13.41},{"x":1568000580000,"y":13.43},{"x":1568000640000,"y":13.43},{"x":1568000700000,"y":13.43},{"x":1568000760000,"y":13.43},{"x":1568000820000,"y":13.42},{"x":1568000880000,"y":13.44},{"x":1568000940000,"y":13.43},{"x":1568001000000,"y":13.41},{"x":1568001060000,"y":13.4},{"x":1568001120000,"y":13.4},{"x":1568001180000,"y":13.43},{"x":1568001240000,"y":13.42},{"x":1568001300000,"y":13.43},{"x":1568001360000,"y":13.43},{"x":1568001420000,"y":13.43},{"x":1568001480000,"y":13.44},{"x":1568001540000,"y":13.42},{"x":1568001600000,"y":13.42},{"x":1568001660000,"y":13.42},{"x":1568001720000,"y":13.42},{"x":1568001780000,"y":13.43},{"x":1568001840000,"y":13.42},{"x":1568001900000,"y":13.43},{"x":1568001960000,"y":13.43},{"x":1568002020000,"y":13.43},{"x":1568002080000,"y":13.44},{"x":1568002140000,"y":13.44},{"x":1568002200000,"y":13.44},{"x":1568002260000,"y":13.44},{"x":1568002320000,"y":13.43},{"x":1568002380000,"y":13.43},{"x":1568002440000,"y":13.43},{"x":1568002500000,"y":13.39},{"x":1568002560000,"y":13.39},{"x":1568002620000,"y":13.39},{"x":1568002680000,"y":13.39},{"x":1568002740000,"y":13.41},{"x":1568002800000,"y":13.41},{"x":1568002860000,"y":13.41},{"x":1568002920000,"y":13.41},{"x":1568002980000,"y":13.41},{"x":1568003040000,"y":13.43},{"x":1568003100000,"y":13.39},{"x":1568003160000,"y":13.39},{"x":1568003220000,"y":13.39},{"x":1568003280000,"y":13.39},{"x":1568003340000,"y":13.41},{"x":1568003400000,"y":13.41},{"x":1568003460000,"y":13.41},{"x":1568003520000,"y":13.41},{"x":1568003580000,"y":13.4},{"x":1568003640000,"y":13.41},{"x":1568003700000,"y":13.41},{"x":1568003760000,"y":13.4},{"x":1568003820000,"y":13.4},{"x":1568003880000,"y":13.41},{"x":1568003940000,"y":13.42},{"x":1568004000000,"y":13.41},{"x":1568004060000,"y":13.41},{"x":1568004120000,"y":13.41},{"x":1568004180000,"y":13.41},{"x":1568004240000,"y":13.42},{"x":1568004300000,"y":13.42},{"x":1568004360000,"y":13.42},{"x":1568004420000,"y":13.42},{"x":1568004480000,"y":13.42},{"x":1568004540000,"y":13.42},{"x":1568004600000,"y":13.37},{"x":1568004660000,"y":13.35},{"x":1568004720000,"y":13.35},{"x":1568004780000,"y":13.36},{"x":1568004840000,"y":13.36},{"x":1568004900000,"y":13.42},{"x":1568004960000,"y":13.42},{"x":1568005020000,"y":13.42},{"x":1568005080000,"y":13.42},{"x":1568005140000,"y":13.42},{"x":1568005200000,"y":13.42},{"x":1568005260000,"y":13.42},{"x":1568005320000,"y":13.42},{"x":1568005380000,"y":13.41},{"x":1568005440000,"y":13.41},{"x":1568005500000,"y":13.41},{"x":1568005560000,"y":13.4},{"x":1568005620000,"y":13.4},{"x":1568005680000,"y":13.4},{"x":1568005740000,"y":13.43},{"x":1568005800000,"y":13.43},{"x":1568005860000,"y":13.42},{"x":1568005920000,"y":13.42},{"x":1568005980000,"y":13.42},{"x":1568006040000,"y":13.43},{"x":1568006100000,"y":13.43},{"x":1568006160000,"y":13.42},{"x":1568006220000,"y":13.42},{"x":1568006280000,"y":13.42},{"x":1568006340000,"y":13.42},{"x":1568006400000,"y":13.43},{"x":1568006460000,"y":13.42},{"x":1568006520000,"y":13.42},{"x":1568006580000,"y":13.42},{"x":1568006640000,"y":13.42},{"x":1568006700000,"y":13.43},{"x":1568006760000,"y":13.42},{"x":1568006820000,"y":13.41},{"x":1568006880000,"y":13.41},{"x":1568006940000,"y":13.41},{"x":1568007000000,"y":13.42},{"x":1568007060000,"y":13.43},{"x":1568007120000,"y":13.42},{"x":1568007180000,"y":13.42},{"x":1568007240000,"y":13.43},{"x":1568007300000,"y":13.42},{"x":1568007360000,"y":13.45},{"x":1568007420000,"y":13.43},{"x":1568007480000,"y":13.43},{"x":1568007540000,"y":13.42},{"x":1568007600000,"y":13.42},{"x":1568007660000,"y":13.44},{"x":1568007720000,"y":13.43},{"x":1568007780000,"y":13.43},{"x":1568007840000,"y":13.43},{"x":1568007900000,"y":13.43},{"x":1568007960000,"y":13.44},{"x":1568008020000,"y":13.42},{"x":1568008080000,"y":13.42},{"x":1568008140000,"y":13.43},{"x":1568008200000,"y":13.41},{"x":1568008260000,"y":13.43},{"x":1568008320000,"y":13.42},{"x":1568008380000,"y":13.42},{"x":1568008440000,"y":13.42},{"x":1568008500000,"y":13.43},{"x":1568008560000,"y":13.64},{"x":1568008620000,"y":13.49},{"x":1568008680000,"y":13.49},{"x":1568008740000,"y":13.49},{"x":1568008800000,"y":13.5},{"x":1568008860000,"y":13.46},{"x":1568008920000,"y":13.42},{"x":1568008980000,"y":13.41},{"x":1568009040000,"y":13.41},{"x":1568009100000,"y":13.43},{"x":1568009160000,"y":13.43},{"x":1568009220000,"y":13.45},{"x":1568009280000,"y":13.44},{"x":1568009340000,"y":13.44},{"x":1568009400000,"y":13.44},{"x":1568009460000,"y":13.44},{"x":1568009520000,"y":13.45},{"x":1568009580000,"y":13.44},{"x":1568009640000,"y":13.44},{"x":1568009700000,"y":13.44},{"x":1568009760000,"y":13.44},{"x":1568009820000,"y":13.45},{"x":1568009880000,"y":13.44},{"x":1568009940000,"y":13.44},{"x":1568010000000,"y":13.44},{"x":1568010060000,"y":13.44},{"x":1568010120000,"y":13.45},{"x":1568010180000,"y":13.42},{"x":1568010240000,"y":13.42},{"x":1568010300000,"y":13.44},{"x":1568010360000,"y":13.44},{"x":1568010420000,"y":13.46},{"x":1568010480000,"y":13.44},{"x":1568010540000,"y":13.44},{"x":1568010600000,"y":13.44},{"x":1568010660000,"y":13.44},{"x":1568010720000,"y":13.45},{"x":1568010780000,"y":13.44},{"x":1568010840000,"y":13.45},{"x":1568010900000,"y":13.44},{"x":1568010960000,"y":13.44},{"x":1568011020000,"y":13.45},{"x":1568011080000,"y":13.44},{"x":1568011140000,"y":13.43},{"x":1568011200000,"y":13.43},{"x":1568011260000,"y":13.43},{"x":1568011320000,"y":13.43},{"x":1568011380000,"y":13.45},{"x":1568011440000,"y":13.44},{"x":1568011500000,"y":13.44},{"x":1568011560000,"y":13.44},{"x":1568011620000,"y":13.44},{"x":1568011680000,"y":13.45},{"x":1568011740000,"y":13.43},{"x":1568011800000,"y":13.41},{"x":1568011860000,"y":13.41},{"x":1568011920000,"y":13.41},{"x":1568011980000,"y":13.43},{"x":1568012040000,"y":13.43},{"x":1568012100000,"y":13.42},{"x":1568012160000,"y":13.42},{"x":1568012220000,"y":13.42},{"x":1568012280000,"y":13.43},{"x":1568012340000,"y":13.42},{"x":1568012400000,"y":13.41},{"x":1568012460000,"y":13.41},{"x":1568012520000,"y":13.41},{"x":1568012580000,"y":13.42},{"x":1568012640000,"y":13.41},{"x":1568012700000,"y":13.43},{"x":1568012760000,"y":13.43},{"x":1568012820000,"y":13.43},{"x":1568012880000,"y":13.45},{"x":1568012940000,"y":13.42},{"x":1568013000000,"y":13.42},{"x":1568013060000,"y":13.42},{"x":1568013120000,"y":13.43},{"x":1568013180000,"y":13.64},{"x":1568013240000,"y":13.52},{"x":1568013300000,"y":13.47},{"x":1568013360000,"y":13.47},{"x":1568013420000,"y":13.47},{"x":1568013480000,"y":13.47},{"x":1568013540000,"y":13.44},{"x":1568013600000,"y":13.43},{"x":1568013660000,"y":13.43},{"x":1568013720000,"y":13.44},{"x":1568013780000,"y":13.44},{"x":1568013840000,"y":13.44},{"x":1568013900000,"y":13.43},{"x":1568013960000,"y":13.43},{"x":1568014020000,"y":13.43},{"x":1568014080000,"y":13.43},{"x":1568014140000,"y":13.44},{"x":1568014200000,"y":13.42},{"x":1568014260000,"y":13.42},{"x":1568014320000,"y":13.42},{"x":1568014380000,"y":13.42},{"x":1568014440000,"y":13.43},{"x":1568014500000,"y":13.43},{"x":1568014560000,"y":13.43},{"x":1568014620000,"y":13.43},{"x":1568014680000,"y":13.43},{"x":1568014740000,"y":13.44},{"x":1568014800000,"y":13.43},{"x":1568014860000,"y":13.43},{"x":1568014920000,"y":13.43},{"x":1568014980000,"y":13.43},{"x":1568015040000,"y":13.44},{"x":1568015100000,"y":13.43},{"x":1568015160000,"y":13.43},{"x":1568015220000,"y":13.43},{"x":1568015280000,"y":13.43},{"x":1568015340000,"y":13.44},{"x":1568015400000,"y":13.43},{"x":1568015460000,"y":13.43},{"x":1568015520000,"y":13.43},{"x":1568015580000,"y":13.44},{"x":1568015640000,"y":13.44},{"x":1568015700000,"y":13.43},{"x":1568015760000,"y":13.43},{"x":1568015820000,"y":13.43},{"x":1568015880000,"y":13.43},{"x":1568015940000,"y":13.44},{"x":1568016000000,"y":13.44},{"x":1568016060000,"y":13.44},{"x":1568016120000,"y":13.43},{"x":1568016180000,"y":13.43},{"x":1568016240000,"y":13.43},{"x":1568016300000,"y":13.43},{"x":1568016360000,"y":13.43},{"x":1568016420000,"y":13.43},{"x":1568016480000,"y":13.43},{"x":1568016540000,"y":13.44},{"x":1568016600000,"y":13.45},{"x":1568016660000,"y":13.43},{"x":1568016720000,"y":13.43},{"x":1568016780000,"y":13.43},{"x":1568016840000,"y":13.44},{"x":1568016900000,"y":13.43},{"x":1568016960000,"y":13.43},{"x":1568017020000,"y":13.42},{"x":1568017080000,"y":13.42},{"x":1568017140000,"y":13.42},{"x":1568017200000,"y":13.42},{"x":1568017260000,"y":13.39},{"x":1568017320000,"y":13.39},{"x":1568017380000,"y":13.39},{"x":1568017440000,"y":13.39},{"x":1568017500000,"y":13.43},{"x":1568017560000,"y":13.43},{"x":1568017620000,"y":13.43},{"x":1568017680000,"y":13.43},{"x":1568017740000,"y":13.44},{"x":1568017800000,"y":13.44},{"x":1568017860000,"y":13.43},{"x":1568017920000,"y":13.43},{"x":1568017980000,"y":13.43},{"x":1568018040000,"y":13.43},{"x":1568018100000,"y":13.46},{"x":1568018160000,"y":13.44},{"x":1568018220000,"y":13.44},{"x":1568018280000,"y":13.44},{"x":1568018340000,"y":13.43},{"x":1568018400000,"y":13.43},{"x":1568018460000,"y":13.44},{"x":1568018520000,"y":13.44},{"x":1568018580000,"y":13.44},{"x":1568018640000,"y":13.44},{"x":1568018700000,"y":13.43},{"x":1568018760000,"y":13.45},{"x":1568018820000,"y":13.44},{"x":1568018880000,"y":13.44},{"x":1568018940000,"y":13.44},{"x":1568019000000,"y":13.44},{"x":1568019060000,"y":13.45},{"x":1568019120000,"y":13.44},{"x":1568019180000,"y":13.44},{"x":1568019240000,"y":13.44},{"x":1568019300000,"y":13.41},{"x":1568019360000,"y":13.44},{"x":1568019420000,"y":13.44},{"x":1568019480000,"y":13.44},{"x":1568019540000,"y":13.44},{"x":1568019600000,"y":13.44},{"x":1568019660000,"y":13.45},{"x":1568019720000,"y":13.44},{"x":1568019780000,"y":13.44},{"x":1568019840000,"y":13.44},{"x":1568019900000,"y":13.44},{"x":1568019960000,"y":13.45},{"x":1568020020000,"y":13.44},{"x":1568020080000,"y":13.44},{"x":1568020140000,"y":13.44},{"x":1568020200000,"y":13.44},{"x":1568020260000,"y":13.45},{"x":1568020320000,"y":13.45},{"x":1568020380000,"y":13.45},{"x":1568020440000,"y":13.45},{"x":1568020500000,"y":13.42},{"x":1568020560000,"y":13.43},{"x":1568020620000,"y":13.43},{"x":1568020680000,"y":13.43},{"x":1568020740000,"y":13.43},{"x":1568020800000,"y":13.42},{"x":1568020860000,"y":13.42},{"x":1568020920000,"y":13.45},{"x":1568020980000,"y":13.42},{"x":1568021040000,"y":13.41},{"x":1568021100000,"y":13.4},{"x":1568021160000,"y":13.39},{"x":1568021220000,"y":13.43},{"x":1568021280000,"y":13.42},{"x":1568021340000,"y":13.42},{"x":1568021400000,"y":13.4},{"x":1568021460000,"y":13.4},{"x":1568021520000,"y":13.42},{"x":1568021580000,"y":13.41},{"x":1568021640000,"y":13.41},{"x":1568021700000,"y":13.41},{"x":1568021760000,"y":13.41},{"x":1568021820000,"y":13.43},{"x":1568021880000,"y":13.43},{"x":1568021940000,"y":13.42},{"x":1568022000000,"y":13.43},{"x":1568022060000,"y":13.43},{"x":1568022120000,"y":13.43},{"x":1568022180000,"y":13.42},{"x":1568022240000,"y":13.42},{"x":1568022300000,"y":13.43},{"x":1568022360000,"y":13.42},{"x":1568022420000,"y":13.43},{"x":1568022480000,"y":13.42},{"x":1568022540000,"y":13.42},{"x":1568022600000,"y":13.42},{"x":1568022660000,"y":13.42},{"x":1568022720000,"y":13.43},{"x":1568022780000,"y":13.43},{"x":1568022840000,"y":13.43},{"x":1568022900000,"y":13.43},{"x":1568022960000,"y":13.43},{"x":1568023020000,"y":13.43},{"x":1568023080000,"y":13.44},{"x":1568023140000,"y":13.43},{"x":1568023200000,"y":13.4},{"x":1568023260000,"y":13.4},{"x":1568023320000,"y":13.4},{"x":1568023380000,"y":13.43},{"x":1568023440000,"y":13.43},{"x":1568023500000,"y":13.42},{"x":1568023560000,"y":13.42},{"x":1568023620000,"y":13.42},{"x":1568023680000,"y":13.43},{"x":1568023740000,"y":13.44},{"x":1568023800000,"y":13.43},{"x":1568023860000,"y":13.43},{"x":1568023920000,"y":13.43},{"x":1568023980000,"y":13.44},{"x":1568024040000,"y":13.42},{"x":1568024100000,"y":13.42},{"x":1568024160000,"y":13.41},{"x":1568024220000,"y":13.41},{"x":1568024280000,"y":13.42},{"x":1568024340000,"y":13.41},{"x":1568024400000,"y":13.4},{"x":1568024460000,"y":13.4},{"x":1568024520000,"y":13.4},{"x":1568024580000,"y":13.42},{"x":1568024640000,"y":13.43},{"x":1568024700000,"y":13.41},{"x":1568024760000,"y":13.41},{"x":1568024820000,"y":13.41},{"x":1568024880000,"y":13.42},{"x":1568024940000,"y":13.42},{"x":1568025000000,"y":13.4},{"x":1568025060000,"y":13.4},{"x":1568025120000,"y":13.39},{"x":1568025180000,"y":13.39},{"x":1568025240000,"y":13.43},{"x":1568025300000,"y":13.43},{"x":1568025360000,"y":13.43},{"x":1568025420000,"y":13.43},{"x":1568025480000,"y":13.43},{"x":1568025540000,"y":13.44},{"x":1568025600000,"y":13.42},{"x":1568025660000,"y":13.42},{"x":1568025720000,"y":13.42},{"x":1568025780000,"y":13.42},{"x":1568025840000,"y":13.44},{"x":1568025900000,"y":13.44},{"x":1568025960000,"y":13.44},{"x":1568026020000,"y":13.44},{"x":1568026080000,"y":13.44},{"x":1568026140000,"y":13.45},{"x":1568026200000,"y":13.44},{"x":1568026260000,"y":13.43},{"x":1568026320000,"y":13.43},{"x":1568026380000,"y":13.43},{"x":1568026440000,"y":13.44},{"x":1568026500000,"y":13.43},{"x":1568026560000,"y":13.43},{"x":1568026620000,"y":13.43},{"x":1568026680000,"y":13.43},{"x":1568026740000,"y":13.44},{"x":1568026800000,"y":13.44},{"x":1568026860000,"y":13.44},{"x":1568026920000,"y":13.44},{"x":1568026980000,"y":13.44},{"x":1568027040000,"y":13.45},{"x":1568027100000,"y":13.44},{"x":1568027160000,"y":13.43},{"x":1568027220000,"y":13.43},{"x":1568027280000,"y":13.43},{"x":1568027340000,"y":13.44},{"x":1568027400000,"y":13.42},{"x":1568027460000,"y":13.42},{"x":1568027520000,"y":13.42},{"x":1568027580000,"y":13.42},{"x":1568027640000,"y":13.42},{"x":1568027700000,"y":13.45},{"x":1568027760000,"y":13.43},{"x":1568027820000,"y":13.42},{"x":1568027880000,"y":13.43},{"x":1568027940000,"y":13.43},{"x":1568028000000,"y":13.45},{"x":1568028060000,"y":13.44},{"x":1568028120000,"y":13.44},{"x":1568028180000,"y":13.44},{"x":1568028240000,"y":13.44},{"x":1568028300000,"y":13.51},{"x":1568028360000,"y":13.44},{"x":1568028420000,"y":13.44},{"x":1568028480000,"y":13.44},{"x":1568028540000,"y":13.44},{"x":1568028600000,"y":13.46},{"x":1568028660000,"y":13.45},{"x":1568028720000,"y":13.45},{"x":1568028780000,"y":13.44},{"x":1568028840000,"y":13.95},{"x":1568028900000,"y":13.58},{"x":1568028960000,"y":13.57},{"x":1568029020000,"y":13.57},{"x":1568029080000,"y":13.56},{"x":1568029140000,"y":13.48},{"x":1568029200000,"y":13.43},{"x":1568029260000,"y":13.44},{"x":1568029320000,"y":13.44},{"x":1568029380000,"y":13.44},{"x":1568029440000,"y":13.44},{"x":1568029500000,"y":13.46},{"x":1568029560000,"y":13.44},{"x":1568029620000,"y":13.44},{"x":1568029680000,"y":13.44},{"x":1568029740000,"y":13.44},{"x":1568029800000,"y":13.41},{"x":1568029860000,"y":13.44},{"x":1568029920000,"y":13.43},{"x":1568029980000,"y":13.43},{"x":1568030040000,"y":13.43},{"x":1568030100000,"y":13.43},{"x":1568030160000,"y":13.43},{"x":1568030220000,"y":13.41},{"x":1568030280000,"y":13.41},{"x":1568030340000,"y":13.42},{"x":1568030400000,"y":13.4},{"x":1568030460000,"y":13.42},{"x":1568030520000,"y":13.41},{"x":1568030580000,"y":13.41},{"x":1568030640000,"y":13.41},{"x":1568030700000,"y":13.43},{"x":1568030760000,"y":13.44},{"x":1568030820000,"y":13.42},{"x":1568030880000,"y":13.42},{"x":1568030940000,"y":13.42},{"x":1568031000000,"y":13.42},{"x":1568031060000,"y":13.43},{"x":1568031120000,"y":13.42},{"x":1568031180000,"y":13.42},{"x":1568031240000,"y":13.42},{"x":1568031300000,"y":13.42},{"x":1568031360000,"y":13.43},{"x":1568031420000,"y":13.43},{"x":1568031480000,"y":13.43},{"x":1568031540000,"y":13.43},{"x":1568031600000,"y":13.4},{"x":1568031660000,"y":13.41},{"x":1568031720000,"y":13.4},{"x":1568031780000,"y":13.4},{"x":1568031840000,"y":13.4},{"x":1568031900000,"y":13.39},{"x":1568031960000,"y":13.39},{"x":1568032020000,"y":13.41},{"x":1568032080000,"y":13.41},{"x":1568032140000,"y":13.41},{"x":1568032200000,"y":13.4},{"x":1568032260000,"y":13.4},{"x":1568032320000,"y":13.42},{"x":1568032380000,"y":13.41},{"x":1568032440000,"y":13.41},{"x":1568032500000,"y":13.43},{"x":1568032560000,"y":13.43},{"x":1568032620000,"y":13.44},{"x":1568032680000,"y":13.43},{"x":1568032740000,"y":13.42},{"x":1568032800000,"y":13.41},{"x":1568032860000,"y":13.41},{"x":1568032920000,"y":13.43},{"x":1568032980000,"y":13.43},{"x":1568033040000,"y":13.43},{"x":1568033100000,"y":13.43},{"x":1568033160000,"y":13.43},{"x":1568033220000,"y":13.44},{"x":1568033280000,"y":13.43},{"x":1568033340000,"y":13.44},{"x":1568033400000,"y":13.43},{"x":1568033460000,"y":13.43},{"x":1568033520000,"y":13.44},{"x":1568033580000,"y":13.43},{"x":1568033640000,"y":13.43},{"x":1568033700000,"y":13.43},{"x":1568033760000,"y":13.43},{"x":1568033820000,"y":13.44},{"x":1568033880000,"y":13.42},{"x":1568033940000,"y":13.42},{"x":1568034000000,"y":13.42},{"x":1568034060000,"y":13.42},{"x":1568034120000,"y":13.42},{"x":1568034180000,"y":13.44},{"x":1568034240000,"y":13.43},{"x":1568034300000,"y":13.43},{"x":1568034360000,"y":13.43},{"x":1568034420000,"y":13.43},{"x":1568034480000,"y":13.44},{"x":1568034540000,"y":13.44},{"x":1568034600000,"y":13.4},{"x":1568034660000,"y":13.4},{"x":1568034720000,"y":13.4},{"x":1568034780000,"y":13.42},{"x":1568034840000,"y":13.42},{"x":1568034900000,"y":13.41},{"x":1568034960000,"y":13.41},{"x":1568035020000,"y":13.41},{"x":1568035080000,"y":13.76},{"x":1568035140000,"y":13.5},{"x":1568035200000,"y":13.5},{"x":1568035260000,"y":13.5},{"x":1568035320000,"y":13.5},{"x":1568035380000,"y":13.48},{"x":1568035440000,"y":13.43},{"x":1568035500000,"y":13.43},{"x":1568035560000,"y":13.43},{"x":1568035620000,"y":13.43},{"x":1568035680000,"y":13.44},{"x":1568035740000,"y":13.43},{"x":1568035800000,"y":13.44},{"x":1568035860000,"y":13.44},{"x":1568035920000,"y":13.44},{"x":1568035980000,"y":13.46},{"x":1568036040000,"y":13.44},{"x":1568036100000,"y":13.43},{"x":1568036160000,"y":13.43},{"x":1568036220000,"y":13.43},{"x":1568036280000,"y":13.43},{"x":1568036340000,"y":13.45},{"x":1568036400000,"y":13.42},{"x":1568036460000,"y":13.43},{"x":1568036520000,"y":13.43},{"x":1568036580000,"y":13.43},{"x":1568036640000,"y":13.44},{"x":1568036700000,"y":13.44},{"x":1568036760000,"y":13.44},{"x":1568036820000,"y":13.44},{"x":1568036880000,"y":13.44},{"x":1568036940000,"y":13.44},{"x":1568037000000,"y":13.42},{"x":1568037060000,"y":13.42},{"x":1568037120000,"y":13.42},{"x":1568037180000,"y":13.42},{"x":1568037240000,"y":13.44},{"x":1568037300000,"y":13.44},{"x":1568037360000,"y":13.45},{"x":1568037420000,"y":13.44},{"x":1568037480000,"y":13.44},{"x":1568037540000,"y":13.46},{"x":1568037600000,"y":13.45},{"x":1568037660000,"y":13.45},{"x":1568037720000,"y":13.45},{"x":1568037780000,"y":13.45},{"x":1568037840000,"y":13.46},{"x":1568037900000,"y":13.42},{"x":1568037960000,"y":13.42},{"x":1568038020000,"y":13.42},{"x":1568038080000,"y":13.42},{"x":1568038140000,"y":13.43},{"x":1568038200000,"y":13.42},{"x":1568038260000,"y":13.42},{"x":1568038320000,"y":13.42},{"x":1568038380000,"y":13.42},{"x":1568038440000,"y":13.42},{"x":1568038500000,"y":13.43},{"x":1568038560000,"y":13.42},{"x":1568038620000,"y":13.42},{"x":1568038680000,"y":13.42},{"x":1568038740000,"y":13.42},{"x":1568038800000,"y":13.43},{"x":1568038860000,"y":13.42},{"x":1568038920000,"y":13.42},{"x":1568038980000,"y":13.42},{"x":1568039040000,"y":13.42},{"x":1568039100000,"y":13.45},{"x":1568039160000,"y":13.45},{"x":1568039220000,"y":13.44},{"x":1568039280000,"y":13.44},{"x":1568039340000,"y":13.44},{"x":1568039400000,"y":13.43},{"x":1568039460000,"y":13.42},{"x":1568039520000,"y":13.42},{"x":1568039580000,"y":13.42},{"x":1568039640000,"y":13.42},{"x":1568039700000,"y":13.44},{"x":1568039760000,"y":13.43},{"x":1568039820000,"y":13.42},{"x":1568039880000,"y":13.42},{"x":1568039940000,"y":13.4},{"x":1568040000000,"y":13.41},{"x":1568040060000,"y":13.43},{"x":1568040120000,"y":13.43},{"x":1568040180000,"y":13.42},{"x":1568040240000,"y":13.42},{"x":1568040300000,"y":13.42},{"x":1568040360000,"y":13.42},{"x":1568040420000,"y":13.42},{"x":1568040480000,"y":13.42},{"x":1568040540000,"y":13.42},{"x":1568040600000,"y":13.43},{"x":1568040660000,"y":13.44},{"x":1568040720000,"y":13.43},{"x":1568040780000,"y":13.43},{"x":1568040840000,"y":13.43},{"x":1568040900000,"y":13.42},{"x":1568040960000,"y":13.44},{"x":1568041020000,"y":13.43},{"x":1568041080000,"y":13.43},{"x":1568041140000,"y":13.42},{"x":1568041200000,"y":13.39},{"x":1568041260000,"y":13.42},{"x":1568041320000,"y":13.41},{"x":1568041380000,"y":13.41},{"x":1568041440000,"y":13.41},{"x":1568041500000,"y":13.41},{"x":1568041560000,"y":13.43},{"x":1568041620000,"y":13.42},{"x":1568041680000,"y":13.42},{"x":1568041740000,"y":13.42},{"x":1568041800000,"y":13.42},{"x":1568041860000,"y":13.42},{"x":1568041920000,"y":13.41},{"x":1568041980000,"y":13.41},{"x":1568042040000,"y":13.41},{"x":1568042100000,"y":13.39},{"x":1568042160000,"y":13.26},{"x":1568042220000,"y":13.23},{"x":1568042280000,"y":13.23},{"x":1568042340000,"y":13.23},{"x":1568042400000,"y":13.23},{"x":1568042460000,"y":13.24},{"x":1568042520000,"y":13.23},{"x":1568042580000,"y":13.23},{"x":1568042640000,"y":13.23},{"x":1568042700000,"y":13.23},{"x":1568042760000,"y":13.23},{"x":1568042820000,"y":13.24},{"x":1568042880000,"y":13.22},{"x":1568042940000,"y":13.22},{"x":1568043000000,"y":13.21},{"x":1568043060000,"y":13.21},{"x":1568043120000,"y":13.23},{"x":1568043180000,"y":13.22},{"x":1568043240000,"y":13.22},{"x":1568043300000,"y":13.23},{"x":1568043360000,"y":13.23},{"x":1568043420000,"y":13.23},{"x":1568043480000,"y":13.22},{"x":1568043540000,"y":13.23},{"x":1568043600000,"y":13.24},{"x":1568043660000,"y":13.24},{"x":1568043720000,"y":13.24},{"x":1568043780000,"y":13.22},{"x":1568043840000,"y":13.22},{"x":1568043900000,"y":13.23},{"x":1568043960000,"y":13.23},{"x":1568044020000,"y":13.24},{"x":1568044080000,"y":13.23},{"x":1568044140000,"y":13.23},{"x":1568044200000,"y":13.23},{"x":1568044260000,"y":13.23},{"x":1568044320000,"y":13.23},{"x":1568044380000,"y":13.23},{"x":1568044440000,"y":13.22},{"x":1568044500000,"y":13.2},{"x":1568044560000,"y":13.2},{"x":1568044620000,"y":13.22},{"x":1568044680000,"y":13.23},{"x":1568044740000,"y":13.23},{"x":1568044800000,"y":13.23},{"x":1568044860000,"y":13.23},{"x":1568044920000,"y":13.23},{"x":1568044980000,"y":13.25},{"x":1568045040000,"y":13.24},{"x":1568045100000,"y":13.23},{"x":1568045160000,"y":13.22},{"x":1568045220000,"y":13.22},{"x":1568045280000,"y":13.24},{"x":1568045340000,"y":13.22},{"x":1568045400000,"y":13.23},{"x":1568045460000,"y":13.23},{"x":1568045520000,"y":13.23},{"x":1568045580000,"y":13.25},{"x":1568045640000,"y":13.24},{"x":1568045700000,"y":13.24},{"x":1568045760000,"y":13.24},{"x":1568045820000,"y":13.24},{"x":1568045880000,"y":13.24},{"x":1568045940000,"y":13.22},{"x":1568046000000,"y":13.21},{"x":1568046060000,"y":13.2},{"x":1568046120000,"y":13.21},{"x":1568046180000,"y":13.23},{"x":1568046240000,"y":13.23},{"x":1568046300000,"y":13.23},{"x":1568046360000,"y":13.23},{"x":1568046420000,"y":13.23},{"x":1568046480000,"y":13.25},{"x":1568046540000,"y":13.23},{"x":1568046600000,"y":13.22},{"x":1568046660000,"y":13.22},{"x":1568046720000,"y":13.22},{"x":1568046780000,"y":13.23},{"x":1568046840000,"y":13.24},{"x":1568046900000,"y":13.24},{"x":1568046960000,"y":13.24},{"x":1568047020000,"y":13.24},{"x":1568047080000,"y":13.24},{"x":1568047140000,"y":13.25},{"x":1568047200000,"y":13.24},{"x":1568047260000,"y":13.24},{"x":1568047320000,"y":13.24},{"x":1568047380000,"y":13.24},{"x":1568047440000,"y":13.24},{"x":1568047500000,"y":13.24},{"x":1568047560000,"y":13.24},{"x":1568047620000,"y":13.24},{"x":1568047680000,"y":13.24},{"x":1568047740000,"y":13.25},{"x":1568047800000,"y":13.24},{"x":1568047860000,"y":13.24},{"x":1568047920000,"y":13.24},{"x":1568047980000,"y":13.24},{"x":1568048040000,"y":13.25},{"x":1568048100000,"y":13.24},{"x":1568048160000,"y":13.23},{"x":1568048220000,"y":13.24},{"x":1568048280000,"y":13.24},{"x":1568048340000,"y":13.25},{"x":1568048400000,"y":13.22},{"x":1568048460000,"y":13.22},{"x":1568048520000,"y":13.22},{"x":1568048580000,"y":13.22},{"x":1568048640000,"y":13.23},{"x":1568048700000,"y":13.22},{"x":1568048760000,"y":13.22},{"x":1568048820000,"y":13.22},{"x":1568048880000,"y":13.22},{"x":1568048940000,"y":13.23},{"x":1568049000000,"y":13.23},{"x":1568049060000,"y":13.23},{"x":1568049120000,"y":13.23},{"x":1568049180000,"y":13.23},{"x":1568049240000,"y":13.23},{"x":1568049300000,"y":13.23},{"x":1568049360000,"y":13.23},{"x":1568049420000,"y":13.22},{"x":1568049480000,"y":13.22},{"x":1568049540000,"y":13.3},{"x":1568049600000,"y":13.49},{"x":1568049660000,"y":13.48},{"x":1568049720000,"y":13.48},{"x":1568049780000,"y":13.48},{"x":1568049840000,"y":13.47},{"x":1568049900000,"y":13.47},{"x":1568049960000,"y":13.47},{"x":1568050020000,"y":13.47},{"x":1568050080000,"y":13.47},{"x":1568050140000,"y":13.47},{"x":1568050200000,"y":13.48},{"x":1568050260000,"y":13.47},{"x":1568050320000,"y":13.47},{"x":1568050380000,"y":13.47},{"x":1568050440000,"y":13.47},{"x":1568050500000,"y":13.47},{"x":1568050560000,"y":13.45},{"x":1568050620000,"y":13.44},{"x":1568050680000,"y":13.44},{"x":1568050740000,"y":14.28},{"x":1568050800000,"y":14.39},{"x":1568050860000,"y":14.01},{"x":1568050920000,"y":14.01},{"x":1568050980000,"y":14.01},{"x":1568051040000,"y":14.01},{"x":1568051100000,"y":13.97},{"x":1568051160000,"y":13.89},{"x":1568051220000,"y":13.89},{"x":1568051280000,"y":13.89},{"x":1568051340000,"y":13.89},{"x":1568051400000,"y":13.92},{"x":1568051460000,"y":13.91},{"x":1568051520000,"y":13.91},{"x":1568051580000,"y":13.91},{"x":1568051640000,"y":13.91},{"x":1568051700000,"y":13.93},{"x":1568051760000,"y":13.93},{"x":1568051820000,"y":13.93},{"x":1568051880000,"y":13.93},{"x":1568051940000,"y":13.93},{"x":1568052000000,"y":13.91},{"x":1568052060000,"y":13.93},{"x":1568052120000,"y":13.93},{"x":1568052180000,"y":13.93},{"x":1568052240000,"y":13.93},{"x":1568052300000,"y":13.92},{"x":1568052360000,"y":13.93},{"x":1568052420000,"y":13.92},{"x":1568052480000,"y":13.92},{"x":1568052540000,"y":13.92},{"x":1568052600000,"y":13.92},{"x":1568052660000,"y":13.92},{"x":1568052720000,"y":13.91},{"x":1568052780000,"y":13.91},{"x":1568052840000,"y":13.91},{"x":1568052900000,"y":13.92},{"x":1568052960000,"y":13.92},{"x":1568053020000,"y":13.9},{"x":1568053080000,"y":13.9},{"x":1568053140000,"y":13.89},{"x":1568053200000,"y":13.92},{"x":1568053260000,"y":13.93},{"x":1568053320000,"y":13.92},{"x":1568053380000,"y":13.92},{"x":1568053440000,"y":13.92},{"x":1568053500000,"y":13.92},{"x":1568053560000,"y":13.93},{"x":1568053620000,"y":13.91},{"x":1568053680000,"y":13.91},{"x":1568053740000,"y":13.94},{"x":1568053800000,"y":13.96},{"x":1568053860000,"y":13.98},{"x":1568053920000,"y":14},{"x":1568053980000,"y":14},{"x":1568054040000,"y":14},{"x":1568054100000,"y":13.97},{"x":1568054160000,"y":13.97},{"x":1568054220000,"y":13.99},{"x":1568054280000,"y":13.99},{"x":1568054340000,"y":14},{"x":1568054400000,"y":14},{"x":1568054460000,"y":14},{"x":1568054520000,"y":14.02},{"x":1568054580000,"y":14.01},{"x":1568054640000,"y":14.01},{"x":1568054700000,"y":14},{"x":1568054760000,"y":14},{"x":1568054820000,"y":14.01},{"x":1568054880000,"y":14},{"x":1568054940000,"y":14.01},{"x":1568055000000,"y":14.01},{"x":1568055060000,"y":14.01},{"x":1568055120000,"y":14.03},{"x":1568055180000,"y":14.02},{"x":1568055240000,"y":14.02},{"x":1568055300000,"y":14.01},{"x":1568055360000,"y":22.35},{"x":1568055420000,"y":21.45},{"x":1568055480000,"y":15.23},{"x":1568055540000,"y":15.23},{"x":1568055600000,"y":15.22},{"x":1568055660000,"y":15.22},{"x":1568055720000,"y":15.23},{"x":1568055780000,"y":15.24},{"x":1568055840000,"y":15.24},{"x":1568055900000,"y":25.76},{"x":1568055960000,"y":27.73},{"x":1568056020000,"y":26.82},{"x":1568056080000,"y":15.39},{"x":1568056140000,"y":15.22},{"x":1568056200000,"y":15.22},{"x":1568056260000,"y":15.22},{"x":1568056320000,"y":15.22},{"x":1568056380000,"y":15.22},{"x":1568056440000,"y":15.21},{"x":1568056500000,"y":15.19},{"x":1568056560000,"y":15.19},{"x":1568056620000,"y":15.2},{"x":1568056680000,"y":15.24},{"x":1568056740000,"y":15.24},{"x":1568056800000,"y":15.24},{"x":1568056860000,"y":15.24},{"x":1568056920000,"y":15.24},{"x":1568056980000,"y":15.55},{"x":1568057040000,"y":15.32},{"x":1568057100000,"y":15.33},{"x":1568057160000,"y":15.33},{"x":1568057220000,"y":15.33},{"x":1568057280000,"y":15.31},{"x":1568057340000,"y":15.27},{"x":1568057400000,"y":15.27},{"x":1568057460000,"y":15.27},{"x":1568057520000,"y":15.27},{"x":1568057580000,"y":15.29},{"x":1568057640000,"y":15.28},{"x":1568057700000,"y":15.28},{"x":1568057760000,"y":15.27},{"x":1568057820000,"y":15.27},{"x":1568057880000,"y":15.29},{"x":1568057940000,"y":15.27},{"x":1568058000000,"y":15.26},{"x":1568058060000,"y":15.26},{"x":1568058120000,"y":15.23},{"x":1568058180000,"y":15.24},{"x":1568058240000,"y":15.23},{"x":1568058300000,"y":15.25},{"x":1568058360000,"y":15.25},{"x":1568058420000,"y":15.25},{"x":1568058480000,"y":15.25},{"x":1568058540000,"y":15.28},{"x":1568058600000,"y":15.25},{"x":1568058660000,"y":15.25},{"x":1568058720000,"y":15.25},{"x":1568058780000,"y":15.25},{"x":1568058840000,"y":15.28},{"x":1568058900000,"y":15.25},{"x":1568058960000,"y":15.25},{"x":1568059020000,"y":15.25},{"x":1568059080000,"y":15.25},{"x":1568059140000,"y":15.28},{"x":1568059200000,"y":15.25},{"x":1568059260000,"y":15.22},{"x":1568059320000,"y":15.23},{"x":1568059380000,"y":15.23},{"x":1568059440000,"y":15.25},{"x":1568059500000,"y":15.23},{"x":1568059560000,"y":15.23},{"x":1568059620000,"y":15.24},{"x":1568059680000,"y":15.23},{"x":1568059740000,"y":15.28},{"x":1568059800000,"y":15.25},{"x":1568059860000,"y":15.25},{"x":1568059920000,"y":15.25},{"x":1568059980000,"y":15.25},{"x":1568060040000,"y":15.27},{"x":1568060100000,"y":15.27},{"x":1568060160000,"y":15.26},{"x":1568060220000,"y":15.26},{"x":1568060280000,"y":15.27},{"x":1568060340000,"y":15.27},{"x":1568060400000,"y":15.22},{"x":1568060460000,"y":15.21},{"x":1568060520000,"y":15.21},{"x":1568060580000,"y":15.21},{"x":1568060640000,"y":15.22},{"x":1568060700000,"y":15.25},{"x":1568060760000,"y":15.25},{"x":1568060820000,"y":15.25},{"x":1568060880000,"y":15.25},{"x":1568060940000,"y":15.25},{"x":1568061000000,"y":15.27},{"x":1568061060000,"y":15.25},{"x":1568061120000,"y":15.25},{"x":1568061180000,"y":15.25},{"x":1568061240000,"y":15.25},{"x":1568061300000,"y":15.29},{"x":1568061360000,"y":15.28},{"x":1568061420000,"y":15.28},{"x":1568061480000,"y":15.26},{"x":1568061540000,"y":15.25},{"x":1568061600000,"y":15.27},{"x":1568061660000,"y":15.27},{"x":1568061720000,"y":15.26},{"x":1568061780000,"y":15.26},{"x":1568061840000,"y":15.26},{"x":1568061900000,"y":15.28},{"x":1568061960000,"y":15.28},{"x":1568062020000,"y":15.28},{"x":1568062080000,"y":15.27},{"x":1568062140000,"y":15.27},{"x":1568062200000,"y":15.27},{"x":1568062260000,"y":15.28},{"x":1568062320000,"y":15.28},{"x":1568062380000,"y":15.28},{"x":1568062440000,"y":15.28},{"x":1568062500000,"y":15.27},{"x":1568062560000,"y":15.27},{"x":1568062620000,"y":15.28},{"x":1568062680000,"y":15.25},{"x":1568062740000,"y":15.25},{"x":1568062800000,"y":15.27},{"x":1568062860000,"y":15.26},{"x":1568062920000,"y":15.26},{"x":1568062980000,"y":15.27},{"x":1568063040000,"y":15.27},{"x":1568063100000,"y":15.28},{"x":1568063160000,"y":15.27},{"x":1568063220000,"y":15.27},{"x":1568063280000,"y":15.27},{"x":1568063340000,"y":15.27},{"x":1568063400000,"y":15.24},{"x":1568063460000,"y":15.29},{"x":1568063520000,"y":15.28},{"x":1568063580000,"y":15.28},{"x":1568063640000,"y":15.27},{"x":1568063700000,"y":15.25},{"x":1568063760000,"y":15.27},{"x":1568063820000,"y":15.26},{"x":1568063880000,"y":15.25},{"x":1568063940000,"y":15.23},{"x":1568064000000,"y":15.27},{"x":1568064060000,"y":15.28},{"x":1568064120000,"y":15.28},{"x":1568064180000,"y":15.28},{"x":1568064240000,"y":15.28},{"x":1568064300000,"y":15.25},{"x":1568064360000,"y":15.27},{"x":1568064420000,"y":15.27},{"x":1568064480000,"y":15.26},{"x":1568064540000,"y":15.24},{"x":1568064600000,"y":15.26},{"x":1568064660000,"y":15.29},{"x":1568064720000,"y":15.28},{"x":1568064780000,"y":15.28},{"x":1568064840000,"y":15.28},{"x":1568064900000,"y":15.29},{"x":1568064960000,"y":15.31},{"x":1568065020000,"y":15.29},{"x":1568065080000,"y":15.3},{"x":1568065140000,"y":15.28},{"x":1568065200000,"y":15.27},{"x":1568065260000,"y":15.28},{"x":1568065320000,"y":15.27},{"x":1568065380000,"y":15.27},{"x":1568065440000,"y":15.28},{"x":1568065500000,"y":15.25},{"x":1568065560000,"y":15.26},{"x":1568065620000,"y":15.26},{"x":1568065680000,"y":15.26},{"x":1568065740000,"y":15.26},{"x":1568065800000,"y":15.27},{"x":1568065860000,"y":15.26},{"x":1568065920000,"y":15.27},{"x":1568065980000,"y":15.25},{"x":1568066040000,"y":15.25},{"x":1568066100000,"y":15.27},{"x":1568066160000,"y":15.27},{"x":1568066220000,"y":15.29},{"x":1568066280000,"y":15.27},{"x":1568066340000,"y":15.26},{"x":1568066400000,"y":15.26},{"x":1568066460000,"y":15.26},{"x":1568066520000,"y":15.26},{"x":1568066580000,"y":15.25},{"x":1568066640000,"y":15.25},{"x":1568066700000,"y":15.25},{"x":1568066760000,"y":15.25},{"x":1568066820000,"y":15.26},{"x":1568066880000,"y":15.25},{"x":1568066940000,"y":15.26},{"x":1568067000000,"y":15.26},{"x":1568067060000,"y":15.24},{"x":1568067120000,"y":15.24},{"x":1568067180000,"y":15.24},{"x":1568067240000,"y":15.24},{"x":1568067300000,"y":15.26},{"x":1568067360000,"y":15.26},{"x":1568067420000,"y":22.56},{"x":1568067480000,"y":27.76},{"x":1568067540000,"y":16.05},{"x":1568067600000,"y":15.22},{"x":1568067660000,"y":15.22},{"x":1568067720000,"y":15.23},{"x":1568067780000,"y":15.19},{"x":1568067840000,"y":15.19},{"x":1568067900000,"y":15.26},{"x":1568067960000,"y":15.26},{"x":1568068020000,"y":15.27},{"x":1568068080000,"y":15.23},{"x":1568068140000,"y":15.23},{"x":1568068200000,"y":15.24},{"x":1568068260000,"y":15.24},{"x":1568068320000,"y":15.24},{"x":1568068380000,"y":15.28},{"x":1568068440000,"y":15.27},{"x":1568068500000,"y":15.27},{"x":1568068560000,"y":15.24},{"x":1568068620000,"y":15.24},{"x":1568068680000,"y":15.26},{"x":1568068740000,"y":15.25},{"x":1568068800000,"y":15.23},{"x":1568068860000,"y":15.23},{"x":1568068920000,"y":15.22},{"x":1568068980000,"y":15.25},{"x":1568069040000,"y":15.26},{"x":1568069100000,"y":15.26},{"x":1568069160000,"y":15.26},{"x":1568069220000,"y":15.26},{"x":1568069280000,"y":15.27},{"x":1568069340000,"y":15.27},{"x":1568069400000,"y":15.26},{"x":1568069460000,"y":15.26},{"x":1568069520000,"y":20.94},{"x":1568069580000,"y":27.12},{"x":1568069640000,"y":20.55},{"x":1568069700000,"y":14.03},{"x":1568069760000,"y":14.03},{"x":1568069820000,"y":25.8},{"x":1568069880000,"y":17.8},{"x":1568069940000,"y":25.78},{"x":1568070000000,"y":26.57},{"x":1568070060000,"y":24.15},{"x":1568070120000,"y":18.41},{"x":1568070180000,"y":15.29},{"x":1568070240000,"y":15.31},{"x":1568070300000,"y":15.28},{"x":1568070360000,"y":15.28},{"x":1568070420000,"y":15.28},{"x":1568070480000,"y":15.28},{"x":1568070540000,"y":20.44},{"x":1568070600000,"y":24.89},{"x":1568070660000,"y":15.2},{"x":1568070720000,"y":15.2},{"x":1568070780000,"y":15.2},{"x":1568070840000,"y":15.25},{"x":1568070900000,"y":15.24},{"x":1568070960000,"y":15.24},{"x":1568071020000,"y":15.25},{"x":1568071080000,"y":15.25},{"x":1568071140000,"y":15.26},{"x":1568071200000,"y":15.25},{"x":1568071260000,"y":15.25},{"x":1568071320000,"y":15.25},{"x":1568071380000,"y":15.25},{"x":1568071440000,"y":15.26},{"x":1568071500000,"y":15.26},{"x":1568071560000,"y":15.25},{"x":1568071620000,"y":14.72},{"x":1568071680000,"y":13.85},{"x":1568071740000,"y":13.86},{"x":1568071800000,"y":13.85},{"x":1568071860000,"y":13.85},{"x":1568071920000,"y":13.85},{"x":1568071980000,"y":13.85},{"x":1568072040000,"y":13.86},{"x":1568072100000,"y":13.83},{"x":1568072160000,"y":13.83},{"x":1568072220000,"y":13.83},{"x":1568072280000,"y":13.83},{"x":1568072340000,"y":13.85},{"x":1568072400000,"y":13.84},{"x":1568072460000,"y":13.84},{"x":1568072520000,"y":13.84},{"x":1568072580000,"y":13.84},{"x":1568072640000,"y":13.84},{"x":1568072700000,"y":13.82},{"x":1568072760000,"y":13.81},{"x":1568072820000,"y":13.81},{"x":1568072880000,"y":13.81},{"x":1568072940000,"y":13.81},{"x":1568073000000,"y":13.84},{"x":1568073060000,"y":13.83},{"x":1568073120000,"y":13.83},{"x":1568073180000,"y":13.83},{"x":1568073240000,"y":13.83},{"x":1568073300000,"y":13.86},{"x":1568073360000,"y":13.85},{"x":1568073420000,"y":13.85},{"x":1568073480000,"y":13.85},{"x":1568073540000,"y":13.85},{"x":1568073600000,"y":13.85},{"x":1568073660000,"y":13.84},{"x":1568073720000,"y":13.84},{"x":1568073780000,"y":13.84},{"x":1568073840000,"y":13.84},{"x":1568073900000,"y":13.87},{"x":1568073960000,"y":13.86},{"x":1568074020000,"y":13.86},{"x":1568074080000,"y":13.86},{"x":1568074140000,"y":13.86},{"x":1568074200000,"y":13.86},{"x":1568074260000,"y":13.86},{"x":1568074320000,"y":13.86},{"x":1568074380000,"y":13.86},{"x":1568074440000,"y":13.86},{"x":1568074500000,"y":13.87},{"x":1568074560000,"y":13.86},{"x":1568074620000,"y":13.85},{"x":1568074680000,"y":13.85},{"x":1568074740000,"y":13.85},{"x":1568074800000,"y":13.86},{"x":1568074860000,"y":13.85},{"x":1568074920000,"y":13.85},{"x":1568074980000,"y":13.85},{"x":1568075040000,"y":13.85},{"x":1568075100000,"y":13.84},{"x":1568075160000,"y":13.86},{"x":1568075220000,"y":13.85},{"x":1568075280000,"y":13.85},{"x":1568075340000,"y":13.85},{"x":1568075400000,"y":13.83},{"x":1568075460000,"y":13.84},{"x":1568075520000,"y":13.83},{"x":1568075580000,"y":13.83},{"x":1568075640000,"y":13.83},{"x":1568075700000,"y":13.84},{"x":1568075760000,"y":13.84},{"x":1568075820000,"y":13.82},{"x":1568075880000,"y":13.82},{"x":1568075940000,"y":13.86},{"x":1568076000000,"y":13.85},{"x":1568076060000,"y":13.87},{"x":1568076120000,"y":13.86},{"x":1568076180000,"y":13.86},{"x":1568076240000,"y":13.86},{"x":1568076300000,"y":13.86},{"x":1568076360000,"y":13.84},{"x":1568076420000,"y":13.84},{"x":1568076480000,"y":13.84},{"x":1568076540000,"y":13.84},{"x":1568076600000,"y":13.84},{"x":1568076660000,"y":13.85},{"x":1568076720000,"y":13.84},{"x":1568076780000,"y":13.84},{"x":1568076840000,"y":13.84},{"x":1568076900000,"y":13.83},{"x":1568076960000,"y":13.84},{"x":1568077020000,"y":13.84},{"x":1568077080000,"y":13.84},{"x":1568077140000,"y":13.84},{"x":1568077200000,"y":13.82},{"x":1568077260000,"y":13.84},{"x":1568077320000,"y":13.84},{"x":1568077380000,"y":13.84},{"x":1568077440000,"y":13.84},{"x":1568077500000,"y":13.84},{"x":1568077560000,"y":13.83},{"x":1568077620000,"y":13.86},{"x":1568077680000,"y":13.84},{"x":1568077740000,"y":13.84},{"x":1568077800000,"y":13.84},{"x":1568077860000,"y":13.84},{"x":1568077920000,"y":13.85},{"x":1568077980000,"y":13.84},{"x":1568078040000,"y":13.84},{"x":1568078100000,"y":13.82},{"x":1568078160000,"y":13.82},{"x":1568078220000,"y":13.84},{"x":1568078280000,"y":13.84},{"x":1568078340000,"y":13.84},{"x":1568078400000,"y":13.85},{"x":1568078460000,"y":13.85},{"x":1568078520000,"y":13.86},{"x":1568078580000,"y":13.84},{"x":1568078640000,"y":13.84},{"x":1568078700000,"y":13.82},{"x":1568078760000,"y":13.82},{"x":1568078820000,"y":14.09},{"x":1568078880000,"y":13.91},{"x":1568078940000,"y":13.91},{"x":1568079000000,"y":13.88},{"x":1568079060000,"y":13.89},{"x":1568079120000,"y":13.89},{"x":1568079180000,"y":13.85},{"x":1568079240000,"y":13.85},{"x":1568079300000,"y":13.85},{"x":1568079360000,"y":13.85},{"x":1568079420000,"y":13.86},{"x":1568079480000,"y":13.85},{"x":1568079540000,"y":13.84},{"x":1568079600000,"y":13.83},{"x":1568079660000,"y":13.83},{"x":1568079720000,"y":13.85},{"x":1568079780000,"y":13.85},{"x":1568079840000,"y":13.85},{"x":1568079900000,"y":13.85},{"x":1568079960000,"y":13.85},{"x":1568080020000,"y":13.85},{"x":1568080080000,"y":13.86},{"x":1568080140000,"y":13.85},{"x":1568080200000,"y":13.85},{"x":1568080260000,"y":13.85},{"x":1568080320000,"y":13.85},{"x":1568080380000,"y":13.86},{"x":1568080440000,"y":13.85},{"x":1568080500000,"y":13.84},{"x":1568080560000,"y":13.84},{"x":1568080620000,"y":13.84},{"x":1568080680000,"y":13.85},{"x":1568080740000,"y":13.85},{"x":1568080800000,"y":13.82},{"x":1568080860000,"y":13.82},{"x":1568080920000,"y":13.82},{"x":1568080980000,"y":13.85},{"x":1568081040000,"y":13.85},{"x":1568081100000,"y":13.83},{"x":1568081160000,"y":13.83},{"x":1568081220000,"y":13.83},{"x":1568081280000,"y":13.84},{"x":1568081340000,"y":13.85},{"x":1568081400000,"y":13.85},{"x":1568081460000,"y":13.85},{"x":1568081520000,"y":13.86},{"x":1568081580000,"y":13.86},{"x":1568081640000,"y":13.85},{"x":1568081700000,"y":13.85},{"x":1568081760000,"y":13.85},{"x":1568081820000,"y":13.85},{"x":1568081880000,"y":13.86},{"x":1568081940000,"y":13.85},{"x":1568082000000,"y":13.85},{"x":1568082060000,"y":13.85},{"x":1568082120000,"y":13.85},{"x":1568082180000,"y":13.85},{"x":1568082240000,"y":13.87},{"x":1568082300000,"y":13.86},{"x":1568082360000,"y":13.85},{"x":1568082420000,"y":13.85},{"x":1568082480000,"y":13.85},{"x":1568082540000,"y":13.86},{"x":1568082600000,"y":13.82},{"x":1568082660000,"y":13.82},{"x":1568082720000,"y":13.82},{"x":1568082780000,"y":13.82},{"x":1568082840000,"y":13.85},{"x":1568082900000,"y":13.82},{"x":1568082960000,"y":13.83},{"x":1568083020000,"y":13.83},{"x":1568083080000,"y":13.83},{"x":1568083140000,"y":13.88},{"x":1568083200000,"y":13.85},{"x":1568083260000,"y":13.85},{"x":1568083320000,"y":13.85},{"x":1568083380000,"y":13.85},{"x":1568083440000,"y":13.86},{"x":1568083500000,"y":13.85},{"x":1568083560000,"y":13.86},{"x":1568083620000,"y":13.85},{"x":1568083680000,"y":13.85},{"x":1568083740000,"y":13.86},{"x":1568083800000,"y":13.86},{"x":1568083860000,"y":13.86},{"x":1568083920000,"y":13.86},{"x":1568083980000,"y":13.86},{"x":1568084040000,"y":13.87},{"x":1568084100000,"y":13.84},{"x":1568084160000,"y":13.84},{"x":1568084220000,"y":13.84},{"x":1568084280000,"y":13.84},{"x":1568084340000,"y":13.85},{"x":1568084400000,"y":13.84},{"x":1568084460000,"y":13.84},{"x":1568084520000,"y":13.84},{"x":1568084580000,"y":13.84},{"x":1568084640000,"y":13.84},{"x":1568084700000,"y":13.85},{"x":1568084760000,"y":13.84},{"x":1568084820000,"y":13.84},{"x":1568084880000,"y":13.84},{"x":1568084940000,"y":13.86},{"x":1568085000000,"y":13.88},{"x":1568085060000,"y":13.87},{"x":1568085120000,"y":13.87},{"x":1568085180000,"y":13.87},{"x":1568085240000,"y":13.86},{"x":1568085300000,"y":13.86},{"x":1568085360000,"y":13.86},{"x":1568085420000,"y":13.86},{"x":1568085480000,"y":13.86},{"x":1568085540000,"y":13.86},{"x":1568085600000,"y":13.85},{"x":1568085660000,"y":13.84},{"x":1568085720000,"y":13.84},{"x":1568085780000,"y":13.84},{"x":1568085840000,"y":13.84},{"x":1568085900000,"y":13.86},{"x":1568085960000,"y":13.84},{"x":1568086020000,"y":13.84},{"x":1568086080000,"y":13.84},{"x":1568086140000,"y":13.84},{"x":1568086200000,"y":13.85},{"x":1568086260000,"y":13.84},{"x":1568086320000,"y":13.84},{"x":1568086380000,"y":13.84},{"x":1568086440000,"y":13.84},{"x":1568086500000,"y":13.85},{"x":1568086560000,"y":13.85},{"x":1568086620000,"y":13.85},{"x":1568086680000,"y":13.85},{"x":1568086740000,"y":13.84},{"x":1568086800000,"y":13.85},{"x":1568086860000,"y":13.85},{"x":1568086920000,"y":13.85},{"x":1568086980000,"y":13.84},{"x":1568087040000,"y":13.85},{"x":1568087100000,"y":13.82},{"x":1568087160000,"y":13.86},{"x":1568087220000,"y":13.84},{"x":1568087280000,"y":13.84},{"x":1568087340000,"y":13.84},{"x":1568087400000,"y":13.85},{"x":1568087460000,"y":13.86},{"x":1568087520000,"y":13.85},{"x":1568087580000,"y":13.85},{"x":1568087640000,"y":13.85},{"x":1568087700000,"y":13.85},{"x":1568087760000,"y":13.85},{"x":1568087820000,"y":13.84},{"x":1568087880000,"y":13.84},{"x":1568087940000,"y":13.84},{"x":1568088000000,"y":13.85},{"x":1568088060000,"y":13.86},{"x":1568088120000,"y":13.85},{"x":1568088180000,"y":13.85},{"x":1568088240000,"y":13.85},{"x":1568088300000,"y":13.84},{"x":1568088360000,"y":13.85},{"x":1568088420000,"y":13.85},{"x":1568088480000,"y":13.85},{"x":1568088540000,"y":13.85},{"x":1568088600000,"y":13.84},{"x":1568088660000,"y":13.85},{"x":1568088720000,"y":13.85},{"x":1568088780000,"y":13.85},{"x":1568088840000,"y":13.85},{"x":1568088900000,"y":13.83},{"x":1568088960000,"y":13.84},{"x":1568089020000,"y":13.84},{"x":1568089080000,"y":13.84},{"x":1568089140000,"y":13.85},{"x":1568089200000,"y":13.82},{"x":1568089260000,"y":13.83},{"x":1568089320000,"y":13.85},{"x":1568089380000,"y":13.85},{"x":1568089440000,"y":13.85},{"x":1568089500000,"y":13.85},{"x":1568089560000,"y":13.85},{"x":1568089620000,"y":13.86},{"x":1568089680000,"y":13.84},{"x":1568089740000,"y":13.84},{"x":1568089800000,"y":13.85},{"x":1568089860000,"y":13.85},{"x":1568089920000,"y":13.86},{"x":1568089980000,"y":13.85},{"x":1568090040000,"y":13.85},{"x":1568090100000,"y":13.85},{"x":1568090160000,"y":13.85},{"x":1568090220000,"y":13.86},{"x":1568090280000,"y":13.85},{"x":1568090340000,"y":13.85},{"x":1568090400000,"y":13.85},{"x":1568090460000,"y":13.84},{"x":1568090520000,"y":13.86},{"x":1568090580000,"y":13.85},{"x":1568090640000,"y":13.85},{"x":1568090700000,"y":13.84},{"x":1568090760000,"y":13.84},{"x":1568090820000,"y":13.87},{"x":1568090880000,"y":13.85},{"x":1568090940000,"y":13.85},{"x":1568091000000,"y":13.85},{"x":1568091060000,"y":13.85},{"x":1568091120000,"y":13.86},{"x":1568091180000,"y":13.84},{"x":1568091240000,"y":13.84},{"x":1568091300000,"y":13.86},{"x":1568091360000,"y":13.86},{"x":1568091420000,"y":13.87},{"x":1568091480000,"y":13.85},{"x":1568091540000,"y":13.85},{"x":1568091600000,"y":13.84},{"x":1568091660000,"y":13.84},{"x":1568091720000,"y":13.85},{"x":1568091780000,"y":13.85},{"x":1568091840000,"y":13.85},{"x":1568091900000,"y":13.86},{"x":1568091960000,"y":13.86},{"x":1568092020000,"y":13.86},{"x":1568092080000,"y":13.86},{"x":1568092140000,"y":13.85},{"x":1568092200000,"y":13.82},{"x":1568092260000,"y":13.82},{"x":1568092320000,"y":13.82},{"x":1568092380000,"y":13.86},{"x":1568092440000,"y":13.86},{"x":1568092500000,"y":13.85},{"x":1568092560000,"y":13.85},{"x":1568092620000,"y":13.85},{"x":1568092680000,"y":13.87},{"x":1568092740000,"y":13.86},{"x":1568092800000,"y":13.86},{"x":1568092860000,"y":13.86},{"x":1568092920000,"y":13.86},{"x":1568092980000,"y":13.87},{"x":1568093040000,"y":13.86},{"x":1568093100000,"y":13.86},{"x":1568093160000,"y":13.86},{"x":1568093220000,"y":13.86},{"x":1568093280000,"y":13.87},{"x":1568093340000,"y":13.86},{"x":1568093400000,"y":13.86},{"x":1568093460000,"y":13.86},{"x":1568093520000,"y":13.86},{"x":1568093580000,"y":13.87},{"x":1568093640000,"y":13.85},{"x":1568093700000,"y":13.84},{"x":1568093760000,"y":13.84},{"x":1568093820000,"y":13.84},{"x":1568093880000,"y":13.85},{"x":1568093940000,"y":13.87},{"x":1568094000000,"y":13.82},{"x":1568094060000,"y":13.81},{"x":1568094120000,"y":13.81},{"x":1568094180000,"y":13.81},{"x":1568094240000,"y":13.85},{"x":1568094300000,"y":13.84},{"x":1568094360000,"y":13.84},{"x":1568094420000,"y":13.84},{"x":1568094480000,"y":13.84},{"x":1568094540000,"y":13.86},{"x":1568094600000,"y":13.86},{"x":1568094660000,"y":13.85},{"x":1568094720000,"y":13.86},{"x":1568094780000,"y":13.86},{"x":1568094840000,"y":13.87},{"x":1568094900000,"y":13.84},{"x":1568094960000,"y":13.84},{"x":1568095020000,"y":13.84},{"x":1568095080000,"y":13.84},{"x":1568095140000,"y":13.85},{"x":1568095200000,"y":13.84},{"x":1568095260000,"y":13.84},{"x":1568095320000,"y":13.84},{"x":1568095380000,"y":13.84},{"x":1568095440000,"y":13.85},{"x":1568095500000,"y":13.82},{"x":1568095560000,"y":13.81},{"x":1568095620000,"y":13.81},{"x":1568095680000,"y":13.81},{"x":1568095740000,"y":13.86},{"x":1568095800000,"y":13.84},{"x":1568095860000,"y":13.84},{"x":1568095920000,"y":13.84},{"x":1568095980000,"y":13.85},{"x":1568096040000,"y":13.85},{"x":1568096100000,"y":13.85},{"x":1568096160000,"y":13.85},{"x":1568096220000,"y":13.85},{"x":1568096280000,"y":13.84},{"x":1568096340000,"y":13.84},{"x":1568096400000,"y":13.85},{"x":1568096460000,"y":13.84},{"x":1568096520000,"y":13.84},{"x":1568096580000,"y":13.84},{"x":1568096640000,"y":13.84},{"x":1568096700000,"y":13.85},{"x":1568096760000,"y":13.83},{"x":1568096820000,"y":13.83},{"x":1568096880000,"y":13.83},{"x":1568096940000,"y":13.82},{"x":1568097000000,"y":13.86},{"x":1568097060000,"y":13.85},{"x":1568097120000,"y":13.85},{"x":1568097180000,"y":13.85},{"x":1568097240000,"y":13.85},{"x":1568097300000,"y":13.86},{"x":1568097360000,"y":13.86},{"x":1568097420000,"y":13.86},{"x":1568097480000,"y":13.86},{"x":1568097540000,"y":13.83},{"x":1568097600000,"y":13.85},{"x":1568097660000,"y":13.84},{"x":1568097720000,"y":13.84},{"x":1568097780000,"y":13.85},{"x":1568097840000,"y":13.85},{"x":1568097900000,"y":13.87},{"x":1568097960000,"y":13.85},{"x":1568098020000,"y":13.85},{"x":1568098080000,"y":13.85},{"x":1568098140000,"y":13.85},{"x":1568098200000,"y":13.86},{"x":1568098260000,"y":13.86},{"x":1568098320000,"y":13.85},{"x":1568098380000,"y":13.86},{"x":1568098440000,"y":13.86},{"x":1568098500000,"y":13.85},{"x":1568098560000,"y":13.86},{"x":1568098620000,"y":13.85},{"x":1568098680000,"y":13.85},{"x":1568098740000,"y":13.85},{"x":1568098800000,"y":13.86},{"x":1568098860000,"y":13.86},{"x":1568098920000,"y":13.85},{"x":1568098980000,"y":13.85},{"x":1568099040000,"y":13.85},{"x":1568099100000,"y":13.86},{"x":1568099160000,"y":13.88},{"x":1568099220000,"y":13.86},{"x":1568099280000,"y":13.86},{"x":1568099340000,"y":13.86},{"x":1568099400000,"y":13.85},{"x":1568099460000,"y":13.86},{"x":1568099520000,"y":13.85},{"x":1568099580000,"y":13.85},{"x":1568099640000,"y":13.85},{"x":1568099700000,"y":13.83},{"x":1568099760000,"y":13.85},{"x":1568099820000,"y":13.85},{"x":1568099880000,"y":13.85},{"x":1568099940000,"y":13.85},{"x":1568100000000,"y":13.84},{"x":1568100060000,"y":13.85},{"x":1568100120000,"y":13.84},{"x":1568100180000,"y":13.84},{"x":1568100240000,"y":13.84},{"x":1568100300000,"y":13.86},{"x":1568100360000,"y":13.88},{"x":1568100420000,"y":13.85},{"x":1568100480000,"y":13.85},{"x":1568100540000,"y":13.85},{"x":1568100600000,"y":13.86},{"x":1568100660000,"y":14},{"x":1568100720000,"y":14.08},{"x":1568100780000,"y":13.93},{"x":1568100840000,"y":13.93},{"x":1568100900000,"y":13.91},{"x":1568100960000,"y":13.91},{"x":1568101020000,"y":13.87},{"x":1568101080000,"y":13.85},{"x":1568101140000,"y":14.18},{"x":1568101200000,"y":14.04},{"x":1568101260000,"y":14.04},{"x":1568101320000,"y":14.05},{"x":1568101380000,"y":14.04},{"x":1568101440000,"y":14},{"x":1568101500000,"y":13.99},{"x":1568101560000,"y":13.99},{"x":1568101620000,"y":13.99},{"x":1568101680000,"y":13.98},{"x":1568101740000,"y":13.98},{"x":1568101800000,"y":13.96},{"x":1568101860000,"y":13.96},{"x":1568101920000,"y":13.99},{"x":1568101980000,"y":13.98},{"x":1568102040000,"y":13.98},{"x":1568102100000,"y":13.95},{"x":1568102160000,"y":13.95},{"x":1568102220000,"y":13.98},{"x":1568102280000,"y":13.99},{"x":1568102340000,"y":13.99},{"x":1568102400000,"y":13.98},{"x":1568102460000,"y":13.98},{"x":1568102520000,"y":14},{"x":1568102580000,"y":13.99},{"x":1568102640000,"y":13.99},{"x":1568102700000,"y":14},{"x":1568102760000,"y":14},{"x":1568102820000,"y":14},{"x":1568102880000,"y":13.98},{"x":1568102940000,"y":13.97},{"x":1568103000000,"y":13.96},{"x":1568103060000,"y":13.95},{"x":1568103120000,"y":13.97},{"x":1568103180000,"y":13.99},{"x":1568103240000,"y":13.99},{"x":1568103300000,"y":13.96},{"x":1568103360000,"y":13.96},{"x":1568103420000,"y":13.96},{"x":1568103480000,"y":13.99},{"x":1568103540000,"y":13.98},{"x":1568103600000,"y":13.98},{"x":1568103660000,"y":13.98},{"x":1568103720000,"y":13.98},{"x":1568103780000,"y":14},{"x":1568103840000,"y":14},{"x":1568103900000,"y":13.99},{"x":1568103960000,"y":13.96},{"x":1568104020000,"y":13.96},{"x":1568104080000,"y":13.98},{"x":1568104140000,"y":13.97},{"x":1568104200000,"y":13.94},{"x":1568104260000,"y":13.94},{"x":1568104320000,"y":13.94},{"x":1568104380000,"y":13.97},{"x":1568104440000,"y":13.97},{"x":1568104500000,"y":13.97},{"x":1568104560000,"y":13.97},{"x":1568104620000,"y":13.97},{"x":1568104680000,"y":13.98},{"x":1568104740000,"y":13.98},{"x":1568104800000,"y":13.98},{"x":1568104860000,"y":13.98},{"x":1568104920000,"y":13.98},{"x":1568104980000,"y":13.99},{"x":1568105040000,"y":13.97},{"x":1568105100000,"y":13.97},{"x":1568105160000,"y":13.97},{"x":1568105220000,"y":13.97},{"x":1568105280000,"y":13.98},{"x":1568105340000,"y":13.98},{"x":1568105400000,"y":13.95},{"x":1568105460000,"y":13.94},{"x":1568105520000,"y":13.94},{"x":1568105580000,"y":13.95},{"x":1568105640000,"y":13.98},{"x":1568105700000,"y":13.95},{"x":1568105760000,"y":13.95},{"x":1568105820000,"y":13.95},{"x":1568105880000,"y":13.95},{"x":1568105940000,"y":13.96},{"x":1568106000000,"y":13.98},{"x":1568106060000,"y":13.98},{"x":1568106120000,"y":13.98},{"x":1568106180000,"y":13.98},{"x":1568106240000,"y":14},{"x":1568106300000,"y":13.98},{"x":1568106360000,"y":13.98},{"x":1568106420000,"y":13.98},{"x":1568106480000,"y":13.98},{"x":1568106540000,"y":13.99},{"x":1568106600000,"y":13.98},{"x":1568106660000,"y":13.98},{"x":1568106720000,"y":13.98},{"x":1568106780000,"y":13.98},{"x":1568106840000,"y":13.99},{"x":1568106900000,"y":13.98},{"x":1568106960000,"y":13.98},{"x":1568107020000,"y":13.98},{"x":1568107080000,"y":13.98},{"x":1568107140000,"y":13.99},{"x":1568107200000,"y":13.98},{"x":1568107260000,"y":13.98},{"x":1568107320000,"y":13.98},{"x":1568107380000,"y":13.98},{"x":1568107440000,"y":13.99},{"x":1568107500000,"y":13.96},{"x":1568107560000,"y":13.96},{"x":1568107620000,"y":13.96},{"x":1568107680000,"y":13.96},{"x":1568107740000,"y":13.96},{"x":1568107800000,"y":13.99},{"x":1568107860000,"y":13.98},{"x":1568107920000,"y":13.98},{"x":1568107980000,"y":13.98},{"x":1568108040000,"y":13.98},{"x":1568108100000,"y":13.98},{"x":1568108160000,"y":13.97},{"x":1568108220000,"y":13.97},{"x":1568108280000,"y":13.97},{"x":1568108340000,"y":13.97},{"x":1568108400000,"y":13.99},{"x":1568108460000,"y":13.97},{"x":1568108520000,"y":13.97},{"x":1568108580000,"y":13.97},{"x":1568108640000,"y":13.97},{"x":1568108700000,"y":13.99},{"x":1568108760000,"y":13.98},{"x":1568108820000,"y":13.97},{"x":1568108880000,"y":13.97},{"x":1568108940000,"y":13.97},{"x":1568109000000,"y":14},{"x":1568109060000,"y":13.98},{"x":1568109120000,"y":13.98},{"x":1568109180000,"y":13.98},{"x":1568109240000,"y":13.98},{"x":1568109300000,"y":14},{"x":1568109360000,"y":13.99},{"x":1568109420000,"y":13.99},{"x":1568109480000,"y":13.99},{"x":1568109540000,"y":13.99},{"x":1568109600000,"y":13.99},{"x":1568109660000,"y":13.96},{"x":1568109720000,"y":13.96},{"x":1568109780000,"y":13.96},{"x":1568109840000,"y":13.96},{"x":1568109900000,"y":13.99},{"x":1568109960000,"y":13.97},{"x":1568110020000,"y":13.97},{"x":1568110080000,"y":13.98},{"x":1568110140000,"y":13.98},{"x":1568110200000,"y":13.99},{"x":1568110260000,"y":14.01},{"x":1568110320000,"y":13.99},{"x":1568110380000,"y":13.99},{"x":1568110440000,"y":13.99},{"x":1568110500000,"y":13.98},{"x":1568110560000,"y":13.99},{"x":1568110620000,"y":13.99},{"x":1568110680000,"y":13.99},{"x":1568110740000,"y":13.99},{"x":1568110800000,"y":13.99},{"x":1568110860000,"y":13.99},{"x":1568110920000,"y":13.97},{"x":1568110980000,"y":13.97},{"x":1568111040000,"y":13.97},{"x":1568111100000,"y":13.98},{"x":1568111160000,"y":13.99},{"x":1568111220000,"y":13.99},{"x":1568111280000,"y":13.99},{"x":1568111340000,"y":13.99},{"x":1568111400000,"y":14},{"x":1568111460000,"y":14.01},{"x":1568111520000,"y":13.99},{"x":1568111580000,"y":13.99},{"x":1568111640000,"y":13.99},{"x":1568111700000,"y":14},{"x":1568111760000,"y":14.01},{"x":1568111820000,"y":13.99},{"x":1568111880000,"y":13.99},{"x":1568111940000,"y":13.99},{"x":1568112000000,"y":13.97},{"x":1568112060000,"y":13.98},{"x":1568112120000,"y":14},{"x":1568112180000,"y":14},{"x":1568112240000,"y":13.99},{"x":1568112300000,"y":13.99},{"x":1568112360000,"y":14},{"x":1568112420000,"y":13.99},{"x":1568112480000,"y":13.99},{"x":1568112540000,"y":13.99},{"x":1568112600000,"y":13.97},{"x":1568112660000,"y":13.97},{"x":1568112720000,"y":13.98},{"x":1568112780000,"y":13.96},{"x":1568112840000,"y":13.96},{"x":1568112900000,"y":14},{"x":1568112960000,"y":14},{"x":1568113020000,"y":14.01},{"x":1568113080000,"y":13.99},{"x":1568113140000,"y":13.99},{"x":1568113200000,"y":14.55},{"x":1568113260000,"y":13.91},{"x":1568113320000,"y":13.93},{"x":1568113380000,"y":13.93},{"x":1568113440000,"y":13.93},{"x":1568113500000,"y":13.93},{"x":1568113560000,"y":13.87},{"x":1568113620000,"y":13.86},{"x":1568113680000,"y":13.84},{"x":1568113740000,"y":13.87},{"x":1568113800000,"y":13.86},{"x":1568113860000,"y":13.86},{"x":1568113920000,"y":13.89},{"x":1568113980000,"y":13.87},{"x":1568114040000,"y":13.87},{"x":1568114100000,"y":13.87},{"x":1568114160000,"y":13.87},{"x":1568114220000,"y":13.87},{"x":1568114280000,"y":13.87},{"x":1568114340000,"y":13.87},{"x":1568114400000,"y":13.83},{"x":1568114460000,"y":13.83},{"x":1568114520000,"y":13.84},{"x":1568114580000,"y":13.84},{"x":1568114640000,"y":13.84},{"x":1568114700000,"y":13.9},{"x":1568114760000,"y":13.86},{"x":1568114820000,"y":13.87},{"x":1568114880000,"y":13.87},{"x":1568114940000,"y":13.88},{"x":1568115000000,"y":13.87},{"x":1568115060000,"y":13.87},{"x":1568115120000,"y":13.87},{"x":1568115180000,"y":13.88},{"x":1568115240000,"y":13.87},{"x":1568115300000,"y":13.87},{"x":1568115360000,"y":13.87},{"x":1568115420000,"y":13.87},{"x":1568115480000,"y":13.88},{"x":1568115540000,"y":13.88},{"x":1568115600000,"y":13.84},{"x":1568115660000,"y":13.84},{"x":1568115720000,"y":13.84},{"x":1568115780000,"y":13.86},{"x":1568115840000,"y":13.87},{"x":1568115900000,"y":13.87},{"x":1568115960000,"y":13.87},{"x":1568116020000,"y":13.87},{"x":1568116080000,"y":13.87},{"x":1568116140000,"y":13.84},{"x":1568116200000,"y":13.86},{"x":1568116260000,"y":13.86},{"x":1568116320000,"y":13.86},{"x":1568116380000,"y":13.88},{"x":1568116440000,"y":13.87},{"x":1568116500000,"y":13.87},{"x":1568116560000,"y":13.87},{"x":1568116620000,"y":13.87},{"x":1568116680000,"y":13.88},{"x":1568116740000,"y":13.87},{"x":1568116800000,"y":13.87},{"x":1568116860000,"y":13.87},{"x":1568116920000,"y":13.87},{"x":1568116980000,"y":13.88},{"x":1568117040000,"y":13.87},{"x":1568117100000,"y":13.87},{"x":1568117160000,"y":13.87},{"x":1568117220000,"y":13.87},{"x":1568117280000,"y":13.88},{"x":1568117340000,"y":13.87},{"x":1568117400000,"y":13.85},{"x":1568117460000,"y":13.85},{"x":1568117520000,"y":13.85},{"x":1568117580000,"y":13.85},{"x":1568117640000,"y":13.87},{"x":1568117700000,"y":13.88},{"x":1568117760000,"y":13.88},{"x":1568117820000,"y":13.88},{"x":1568117880000,"y":13.88},{"x":1568117940000,"y":13.88},{"x":1568118000000,"y":13.87},{"x":1568118060000,"y":13.87},{"x":1568118120000,"y":13.87},{"x":1568118180000,"y":13.87},{"x":1568118240000,"y":13.88},{"x":1568118300000,"y":13.87},{"x":1568118360000,"y":13.87},{"x":1568118420000,"y":13.87},{"x":1568118480000,"y":13.87},{"x":1568118540000,"y":13.88},{"x":1568118600000,"y":13.87},{"x":1568118660000,"y":13.87},{"x":1568118720000,"y":13.87},{"x":1568118780000,"y":13.87},{"x":1568118840000,"y":13.89},{"x":1568118900000,"y":13.86},{"x":1568118960000,"y":13.85},{"x":1568119020000,"y":13.85},{"x":1568119080000,"y":13.85},{"x":1568119140000,"y":13.88},{"x":1568119200000,"y":13.87},{"x":1568119260000,"y":13.86},{"x":1568119320000,"y":13.86},{"x":1568119380000,"y":13.86},{"x":1568119440000,"y":13.87},{"x":1568119500000,"y":13.88},{"x":1568119560000,"y":13.88},{"x":1568119620000,"y":13.88},{"x":1568119680000,"y":13.88},{"x":1568119740000,"y":13.89},{"x":1568119800000,"y":13.85},{"x":1568119860000,"y":13.85},{"x":1568119920000,"y":13.85},{"x":1568119980000,"y":13.85},{"x":1568120040000,"y":13.85},{"x":1568120100000,"y":13.89},{"x":1568120160000,"y":13.88},{"x":1568120220000,"y":13.88},{"x":1568120280000,"y":13.88},{"x":1568120340000,"y":13.88},{"x":1568120400000,"y":13.89},{"x":1568120460000,"y":13.88},{"x":1568120520000,"y":13.88},{"x":1568120580000,"y":13.88},{"x":1568120640000,"y":13.88},{"x":1568120700000,"y":13.89},{"x":1568120760000,"y":13.87},{"x":1568120820000,"y":13.87},{"x":1568120880000,"y":13.87},{"x":1568120940000,"y":13.88},{"x":1568121000000,"y":13.9},{"x":1568121060000,"y":13.89},{"x":1568121120000,"y":13.89},{"x":1568121180000,"y":13.88},{"x":1568121240000,"y":13.89},{"x":1568121300000,"y":13.89},{"x":1568121360000,"y":13.88},{"x":1568121420000,"y":13.88},{"x":1568121480000,"y":13.88},{"x":1568121540000,"y":13.88},{"x":1568121600000,"y":13.87},{"x":1568121660000,"y":13.88},{"x":1568121720000,"y":13.89},{"x":1568121780000,"y":13.89},{"x":1568121840000,"y":13.89},{"x":1568121900000,"y":13.88},{"x":1568121960000,"y":13.88},{"x":1568122020000,"y":13.86},{"x":1568122080000,"y":13.86},{"x":1568122140000,"y":13.86},{"x":1568122200000,"y":13.89},{"x":1568122260000,"y":13.89},{"x":1568122320000,"y":13.89},{"x":1568122380000,"y":13.89},{"x":1568122440000,"y":13.89},{"x":1568122500000,"y":13.87},{"x":1568122560000,"y":14.26},{"x":1568122620000,"y":13.93},{"x":1568122680000,"y":13.93},{"x":1568122740000,"y":13.93},{"x":1568122800000,"y":13.93},{"x":1568122860000,"y":13.89},{"x":1568122920000,"y":13.86},{"x":1568122980000,"y":13.86},{"x":1568123040000,"y":13.86},{"x":1568123100000,"y":13.87},{"x":1568123160000,"y":13.88},{"x":1568123220000,"y":13.84},{"x":1568123280000,"y":13.84},{"x":1568123340000,"y":13.84},{"x":1568123400000,"y":13.87},{"x":1568123460000,"y":13.87},{"x":1568123520000,"y":13.85},{"x":1568123580000,"y":13.85},{"x":1568123640000,"y":13.85},{"x":1568123700000,"y":13.83},{"x":1568123760000,"y":13.84},{"x":1568123820000,"y":13.86},{"x":1568123880000,"y":13.86},{"x":1568123940000,"y":13.86},{"x":1568124000000,"y":13.85},{"x":1568124060000,"y":13.86},{"x":1568124120000,"y":13.86},{"x":1568124180000,"y":13.86},{"x":1568124240000,"y":13.86},{"x":1568124300000,"y":13.87},{"x":1568124360000,"y":13.87},{"x":1568124420000,"y":13.89},{"x":1568124480000,"y":13.87},{"x":1568124540000,"y":13.87},{"x":1568124600000,"y":13.84},{"x":1568124660000,"y":13.84},{"x":1568124720000,"y":13.87},{"x":1568124780000,"y":13.87},{"x":1568124840000,"y":13.87},{"x":1568124900000,"y":13.86},{"x":1568124960000,"y":13.86},{"x":1568125020000,"y":13.88},{"x":1568125080000,"y":13.87},{"x":1568125140000,"y":13.87},{"x":1568125200000,"y":13.87},{"x":1568125260000,"y":13.87},{"x":1568125320000,"y":13.88},{"x":1568125380000,"y":13.87},{"x":1568125440000,"y":13.87},{"x":1568125500000,"y":13.86},{"x":1568125560000,"y":13.86},{"x":1568125620000,"y":13.89},{"x":1568125680000,"y":13.88},{"x":1568125740000,"y":13.87},{"x":1568125800000,"y":13.84},{"x":1568125860000,"y":13.84},{"x":1568125920000,"y":13.86},{"x":1568125980000,"y":13.86},{"x":1568126040000,"y":13.86},{"x":1568126100000,"y":13.84},{"x":1568126160000,"y":13.84},{"x":1568126220000,"y":13.85},{"x":1568126280000,"y":13.87},{"x":1568126340000,"y":13.88},{"x":1568126400000,"y":13.86},{"x":1568126460000,"y":13.86},{"x":1568126520000,"y":13.87},{"x":1568126580000,"y":13.87},{"x":1568126640000,"y":13.87},{"x":1568126700000,"y":13.87},{"x":1568126760000,"y":13.86},{"x":1568126820000,"y":13.87},{"x":1568126880000,"y":13.88},{"x":1568126940000,"y":13.87},{"x":1568127000000,"y":13.87},{"x":1568127060000,"y":13.87},{"x":1568127120000,"y":13.87},{"x":1568127180000,"y":13.89},{"x":1568127240000,"y":13.87},{"x":1568127300000,"y":13.87},{"x":1568127360000,"y":13.87},{"x":1568127420000,"y":13.87},{"x":1568127480000,"y":13.88},{"x":1568127540000,"y":13.88},{"x":1568127600000,"y":13.88},{"x":1568127660000,"y":13.88},{"x":1568127720000,"y":13.88},{"x":1568127780000,"y":13.89},{"x":1568127840000,"y":13.87},{"x":1568127900000,"y":13.85},{"x":1568127960000,"y":13.85},{"x":1568128020000,"y":13.85},{"x":1568128080000,"y":13.87},{"x":1568128140000,"y":13.88},{"x":1568128200000,"y":13.85},{"x":1568128260000,"y":13.86},{"x":1568128320000,"y":13.86},{"x":1568128380000,"y":13.88},{"x":1568128440000,"y":13.88},{"x":1568128500000,"y":13.87},{"x":1568128560000,"y":13.87},{"x":1568128620000,"y":13.87},{"x":1568128680000,"y":13.88},{"x":1568128740000,"y":13.88},{"x":1568128800000,"y":13.88},{"x":1568128860000,"y":13.88},{"x":1568128920000,"y":13.88},{"x":1568128980000,"y":13.88},{"x":1568129040000,"y":13.89},{"x":1568129100000,"y":13.88},{"x":1568129160000,"y":13.88},{"x":1568129220000,"y":13.88},{"x":1568129280000,"y":13.88},{"x":1568129340000,"y":13.89},{"x":1568129400000,"y":13.88},{"x":1568129460000,"y":13.88},{"x":1568129520000,"y":13.89},{"x":1568129580000,"y":13.89},{"x":1568129640000,"y":13.9},{"x":1568129700000,"y":13.88},{"x":1568129760000,"y":13.88},{"x":1568129820000,"y":13.88},{"x":1568129880000,"y":13.88},{"x":1568129940000,"y":13.89},{"x":1568130000000,"y":13.87},{"x":1568130060000,"y":13.87},{"x":1568130120000,"y":13.87},{"x":1568130180000,"y":13.86},{"x":1568130240000,"y":13.88},{"x":1568130300000,"y":13.88},{"x":1568130360000,"y":13.88},{"x":1568130420000,"y":13.88},{"x":1568130480000,"y":13.88},{"x":1568130540000,"y":13.89},{"x":1568130600000,"y":13.88},{"x":1568130660000,"y":13.88},{"x":1568130720000,"y":13.88},{"x":1568130780000,"y":13.88},{"x":1568130840000,"y":13.9},{"x":1568130900000,"y":13.89},{"x":1568130960000,"y":13.89},{"x":1568131020000,"y":13.88},{"x":1568131080000,"y":13.88},{"x":1568131140000,"y":13.89},{"x":1568131200000,"y":13.88},{"x":1568131260000,"y":13.89},{"x":1568131320000,"y":13.89},{"x":1568131380000,"y":13.89},{"x":1568131440000,"y":13.9},{"x":1568131500000,"y":13.88},{"x":1568131560000,"y":13.88},{"x":1568131620000,"y":13.88},{"x":1568131680000,"y":13.88},{"x":1568131740000,"y":13.88},{"x":1568131800000,"y":13.88},{"x":1568131860000,"y":13.87},{"x":1568131920000,"y":13.87},{"x":1568131980000,"y":13.87},{"x":1568132040000,"y":13.87},{"x":1568132100000,"y":13.88},{"x":1568132160000,"y":13.85},{"x":1568132220000,"y":13.86},{"x":1568132280000,"y":13.86},{"x":1568132340000,"y":13.86},{"x":1568132400000,"y":13.87},{"x":1568132460000,"y":13.87},{"x":1568132520000,"y":13.87},{"x":1568132580000,"y":13.87},{"x":1568132640000,"y":13.87},{"x":1568132700000,"y":13.87},{"x":1568132760000,"y":13.87},{"x":1568132820000,"y":13.87},{"x":1568132880000,"y":13.87},{"x":1568132940000,"y":13.87},{"x":1568133000000,"y":13.86},{"x":1568133060000,"y":13.86},{"x":1568133120000,"y":13.86},{"x":1568133180000,"y":13.86},{"x":1568133240000,"y":13.86},{"x":1568133300000,"y":13.89},{"x":1568133360000,"y":13.87},{"x":1568133420000,"y":13.87},{"x":1568133480000,"y":13.87},{"x":1568133540000,"y":13.86},{"x":1568133600000,"y":13.86},{"x":1568133660000,"y":13.87},{"x":1568133720000,"y":13.86},{"x":1568133780000,"y":13.86},{"x":1568133840000,"y":13.86},{"x":1568133900000,"y":13.86},{"x":1568133960000,"y":13.87},{"x":1568134020000,"y":13.87},{"x":1568134080000,"y":13.87},{"x":1568134140000,"y":13.87},{"x":1568134200000,"y":13.85},{"x":1568134260000,"y":13.88},{"x":1568134320000,"y":13.87},{"x":1568134380000,"y":13.87},{"x":1568134440000,"y":13.87},{"x":1568134500000,"y":13.88},{"x":1568134560000,"y":13.88},{"x":1568134620000,"y":13.86},{"x":1568134680000,"y":13.87},{"x":1568134740000,"y":13.87},{"x":1568134800000,"y":13.87},{"x":1568134860000,"y":13.89},{"x":1568134920000,"y":13.87},{"x":1568134980000,"y":13.87},{"x":1568135040000,"y":13.87},{"x":1568135100000,"y":13.85},{"x":1568135160000,"y":13.86},{"x":1568135220000,"y":13.86},{"x":1568135280000,"y":13.86},{"x":1568135340000,"y":13.87},{"x":1568135400000,"y":13.85},{"x":1568135460000,"y":13.87},{"x":1568135520000,"y":13.87},{"x":1568135580000,"y":13.87},{"x":1568135640000,"y":13.87},{"x":1568135700000,"y":13.87},{"x":1568135760000,"y":13.88},{"x":1568135820000,"y":13.88},{"x":1568135880000,"y":13.88},{"x":1568135940000,"y":13.88},{"x":1568136000000,"y":13.87},{"x":1568136060000,"y":13.87},{"x":1568136120000,"y":13.88},{"x":1568136180000,"y":13.87},{"x":1568136240000,"y":13.87},{"x":1568136300000,"y":13.88},{"x":1568136360000,"y":13.88},{"x":1568136420000,"y":13.89},{"x":1568136480000,"y":13.87},{"x":1568136540000,"y":13.87},{"x":1568136600000,"y":13.86},{"x":1568136660000,"y":13.86},{"x":1568136720000,"y":13.89},{"x":1568136780000,"y":13.89},{"x":1568136840000,"y":13.89},{"x":1568136900000,"y":13.85},{"x":1568136960000,"y":13.85},{"x":1568137020000,"y":13.86},{"x":1568137080000,"y":13.86},{"x":1568137140000,"y":13.88},{"x":1568137200000,"y":13.87},{"x":1568137260000,"y":13.86},{"x":1568137320000,"y":13.87},{"x":1568137380000,"y":13.87},{"x":1568137440000,"y":13.87},{"x":1568137500000,"y":13.86},{"x":1568137560000,"y":13.86},{"x":1568137620000,"y":13.88},{"x":1568137680000,"y":13.87},{"x":1568137740000,"y":13.87},{"x":1568137800000,"y":13.87},{"x":1568137860000,"y":13.87},{"x":1568137920000,"y":13.87},{"x":1568137980000,"y":13.88},{"x":1568138040000,"y":13.88},{"x":1568138100000,"y":13.88},{"x":1568138160000,"y":13.88},{"x":1568138220000,"y":13.88},{"x":1568138280000,"y":13.89},{"x":1568138340000,"y":13.88},{"x":1568138400000,"y":13.86},{"x":1568138460000,"y":13.86},{"x":1568138520000,"y":13.86},{"x":1568138580000,"y":13.89},{"x":1568138640000,"y":13.88},{"x":1568138700000,"y":13.88},{"x":1568138760000,"y":13.88},{"x":1568138820000,"y":13.88},{"x":1568138880000,"y":13.89},{"x":1568138940000,"y":13.87},{"x":1568139000000,"y":13.87},{"x":1568139060000,"y":13.87},{"x":1568139120000,"y":13.87},{"x":1568139180000,"y":13.88},{"x":1568139240000,"y":13.88},{"x":1568139300000,"y":13.86},{"x":1568139360000,"y":13.86},{"x":1568139420000,"y":13.86},{"x":1568139480000,"y":13.88},{"x":1568139540000,"y":13.88},{"x":1568139600000,"y":13.89},{"x":1568139660000,"y":13.89},{"x":1568139720000,"y":13.89},{"x":1568139780000,"y":13.89},{"x":1568139840000,"y":13.88},{"x":1568139900000,"y":13.85},{"x":1568139960000,"y":13.85},{"x":1568140020000,"y":13.85},{"x":1568140080000,"y":13.86},{"x":1568140140000,"y":13.86},{"x":1568140200000,"y":13.88},{"x":1568140260000,"y":13.89},{"x":1568140320000,"y":13.89},{"x":1568140380000,"y":13.88},{"x":1568140440000,"y":13.89},{"x":1568140500000,"y":13.88},{"x":1568140560000,"y":13.88},{"x":1568140620000,"y":13.88},{"x":1568140680000,"y":13.88},{"x":1568140740000,"y":13.9},{"x":1568140800000,"y":13.87},{"x":1568140860000,"y":13.86},{"x":1568140920000,"y":13.86},{"x":1568140980000,"y":13.86},{"x":1568141040000,"y":13.87},{"x":1568141100000,"y":13.87},{"x":1568141160000,"y":13.87},{"x":1568141220000,"y":13.87},{"x":1568141280000,"y":13.87},{"x":1568141340000,"y":13.89},{"x":1568141400000,"y":13.86},{"x":1568141460000,"y":13.86},{"x":1568141520000,"y":13.88},{"x":1568141580000,"y":13.89},{"x":1568141640000,"y":13.9},{"x":1568141700000,"y":13.92},{"x":1568141760000,"y":13.93},{"x":1568141820000,"y":14.31},{"x":1568141880000,"y":14.44},{"x":1568141940000,"y":14.46},{"x":1568142000000,"y":14.45},{"x":1568142060000,"y":20.07},{"x":1568142120000,"y":14.47},{"x":1568142180000,"y":14.47},{"x":1568142240000,"y":14.51},{"x":1568142300000,"y":14.52},{"x":1568142360000,"y":14.52},{"x":1568142420000,"y":14.52},{"x":1568142480000,"y":14.52},{"x":1568142540000,"y":14.55},{"x":1568142600000,"y":14.51},{"x":1568142660000,"y":14.51},{"x":1568142720000,"y":14.51},{"x":1568142780000,"y":14.51},{"x":1568142840000,"y":14.52},{"x":1568142900000,"y":14.53},{"x":1568142960000,"y":14.53},{"x":1568143020000,"y":14.54},{"x":1568143080000,"y":14.54},{"x":1568143140000,"y":14.54},{"x":1568143200000,"y":14.54},{"x":1568143260000,"y":14.53},{"x":1568143320000,"y":14.53},{"x":1568143380000,"y":14.53},{"x":1568143440000,"y":14.53},{"x":1568143500000,"y":14.54},{"x":1568143560000,"y":14.53},{"x":1568143620000,"y":14.53},{"x":1568143680000,"y":14.53},{"x":1568143740000,"y":14.53},{"x":1568143800000,"y":14.54},{"x":1568143860000,"y":14.53},{"x":1568143920000,"y":18.23},{"x":1568143980000,"y":24.36},{"x":1568144040000,"y":15.71},{"x":1568144100000,"y":15.75},{"x":1568144160000,"y":15.75},{"x":1568144220000,"y":15.75},{"x":1568144280000,"y":18.14},{"x":1568144340000,"y":21.73},{"x":1568144400000,"y":22.41},{"x":1568144460000,"y":29.06},{"x":1568144520000,"y":28.61},{"x":1568144580000,"y":18.18},{"x":1568144640000,"y":25.7},{"x":1568144700000,"y":21.49},{"x":1568144760000,"y":15.88},{"x":1568144820000,"y":15.88},{"x":1568144880000,"y":15.88},{"x":1568144940000,"y":15.88},{"x":1568145000000,"y":15.89},{"x":1568145060000,"y":15.87},{"x":1568145120000,"y":15.87},{"x":1568145180000,"y":15.87},{"x":1568145240000,"y":15.87},{"x":1568145300000,"y":15.9},{"x":1568145360000,"y":15.89},{"x":1568145420000,"y":15.89},{"x":1568145480000,"y":15.88},{"x":1568145540000,"y":15.88},{"x":1568145600000,"y":15.9},{"x":1568145660000,"y":15.91},{"x":1568145720000,"y":15.87},{"x":1568145780000,"y":15.87},{"x":1568145840000,"y":15.87},{"x":1568145900000,"y":15.85},{"x":1568145960000,"y":15.88},{"x":1568146020000,"y":15.88},{"x":1568146080000,"y":15.89},{"x":1568146140000,"y":15.89},{"x":1568146200000,"y":15.89},{"x":1568146260000,"y":15.9},{"x":1568146320000,"y":15.89},{"x":1568146380000,"y":15.88},{"x":1568146440000,"y":15.88},{"x":1568146500000,"y":15.87},{"x":1568146560000,"y":15.89},{"x":1568146620000,"y":15.88},{"x":1568146680000,"y":15.88},{"x":1568146740000,"y":15.87},{"x":1568146800000,"y":15.88},{"x":1568146860000,"y":15.89},{"x":1568146920000,"y":15.88},{"x":1568146980000,"y":15.88},{"x":1568147040000,"y":15.88},{"x":1568147100000,"y":15.87},{"x":1568147160000,"y":15.88},{"x":1568147220000,"y":15.89},{"x":1568147280000,"y":15.89},{"x":1568147340000,"y":15.89},{"x":1568147400000,"y":15.9},{"x":1568147460000,"y":15.9},{"x":1568147520000,"y":15.91},{"x":1568147580000,"y":15.9},{"x":1568147640000,"y":15.9},{"x":1568147700000,"y":15.9},{"x":1568147760000,"y":15.9},{"x":1568147820000,"y":15.91},{"x":1568147880000,"y":15.88},{"x":1568147940000,"y":15.88},{"x":1568148000000,"y":15.88},{"x":1568148060000,"y":15.87},{"x":1568148120000,"y":15.87},{"x":1568148180000,"y":15.86},{"x":1568148240000,"y":15.86},{"x":1568148300000,"y":15.87},{"x":1568148360000,"y":15.87},{"x":1568148420000,"y":15.9},{"x":1568148480000,"y":15.89},{"x":1568148540000,"y":15.89},{"x":1568148600000,"y":15.87},{"x":1568148660000,"y":15.87},{"x":1568148720000,"y":15.89},{"x":1568148780000,"y":15.89},{"x":1568148840000,"y":15.89},{"x":1568148900000,"y":15.88},{"x":1568148960000,"y":15.88},{"x":1568149020000,"y":15.88},{"x":1568149080000,"y":15.88},{"x":1568149140000,"y":15.88},{"x":1568149200000,"y":15.85},{"x":1568149260000,"y":15.85},{"x":1568149320000,"y":15.87},{"x":1568149380000,"y":15.89},{"x":1568149440000,"y":15.89},{"x":1568149500000,"y":15.88},{"x":1568149560000,"y":15.88},{"x":1568149620000,"y":15.89},{"x":1568149680000,"y":15.87},{"x":1568149740000,"y":15.9},{"x":1568149800000,"y":15.9},{"x":1568149860000,"y":15.9},{"x":1568149920000,"y":15.9},{"x":1568149980000,"y":15.91},{"x":1568150040000,"y":15.9},{"x":1568150100000,"y":15.9},{"x":1568150160000,"y":15.88},{"x":1568150220000,"y":15.88},{"x":1568150280000,"y":15.89},{"x":1568150340000,"y":15.86},{"x":1568150400000,"y":15.87},{"x":1568150460000,"y":15.88},{"x":1568150520000,"y":15.88},{"x":1568150580000,"y":15.88},{"x":1568150640000,"y":15.87},{"x":1568150700000,"y":15.87},{"x":1568150760000,"y":15.87},{"x":1568150820000,"y":15.87},{"x":1568150880000,"y":15.89},{"x":1568150940000,"y":15.88},{"x":1568151000000,"y":15.87},{"x":1568151060000,"y":15.86},{"x":1568151120000,"y":15.9},{"x":1568151180000,"y":15.9},{"x":1568151240000,"y":15.88},{"x":1568151300000,"y":15.87},{"x":1568151360000,"y":15.87},{"x":1568151420000,"y":15.87},{"x":1568151480000,"y":15.88},{"x":1568151540000,"y":15.88},{"x":1568151600000,"y":15.86},{"x":1568151660000,"y":15.87},{"x":1568151720000,"y":15.87},{"x":1568151780000,"y":15.88},{"x":1568151840000,"y":15.88},{"x":1568151900000,"y":15.88},{"x":1568151960000,"y":15.88},{"x":1568152020000,"y":15.88},{"x":1568152080000,"y":15.9},{"x":1568152140000,"y":15.88},{"x":1568152200000,"y":15.89},{"x":1568152260000,"y":15.89},{"x":1568152320000,"y":15.89},{"x":1568152380000,"y":15.89},{"x":1568152440000,"y":15.91},{"x":1568152500000,"y":15.88},{"x":1568152560000,"y":15.87},{"x":1568152620000,"y":15.87},{"x":1568152680000,"y":15.87},{"x":1568152740000,"y":15.88},{"x":1568152800000,"y":15.83},{"x":1568152860000,"y":15.83},{"x":1568152920000,"y":15.83},{"x":1568152980000,"y":15.83},{"x":1568153040000,"y":15.87},{"x":1568153100000,"y":15.88},{"x":1568153160000,"y":15.88},{"x":1568153220000,"y":15.87},{"x":1568153280000,"y":15.87},{"x":1568153340000,"y":15.91},{"x":1568153400000,"y":15.88},{"x":1568153460000,"y":15.88},{"x":1568153520000,"y":15.88},{"x":1568153580000,"y":15.88},{"x":1568153640000,"y":15.9},{"x":1568153700000,"y":15.87},{"x":1568153760000,"y":15.86},{"x":1568153820000,"y":15.86},{"x":1568153880000,"y":15.86},{"x":1568153940000,"y":15.87},{"x":1568154000000,"y":15.85},{"x":1568154060000,"y":15.85},{"x":1568154120000,"y":15.85},{"x":1568154180000,"y":15.85},{"x":1568154240000,"y":15.87},{"x":1568154300000,"y":15.89},{"x":1568154360000,"y":15.89},{"x":1568154420000,"y":15.89},{"x":1568154480000,"y":15.89},{"x":1568154540000,"y":15.9},{"x":1568154600000,"y":15.9},{"x":1568154660000,"y":15.89},{"x":1568154720000,"y":15.89},{"x":1568154780000,"y":15.89},{"x":1568154840000,"y":15.9},{"x":1568154900000,"y":15.9},{"x":1568154960000,"y":15.88},{"x":1568155020000,"y":15.88},{"x":1568155080000,"y":15.88},{"x":1568155140000,"y":15.88},{"x":1568155200000,"y":15.9},{"x":1568155260000,"y":15.88},{"x":1568155320000,"y":15.88},{"x":1568155380000,"y":15.88},{"x":1568155440000,"y":15.88},{"x":1568155500000,"y":15.91},{"x":1568155560000,"y":15.9},{"x":1568155620000,"y":15.9},{"x":1568155680000,"y":15.9},{"x":1568155740000,"y":15.9},{"x":1568155800000,"y":15.91},{"x":1568155860000,"y":15.9},{"x":1568155920000,"y":15.9},{"x":1568155980000,"y":15.9},{"x":1568156040000,"y":15.9},{"x":1568156100000,"y":15.92},{"x":1568156160000,"y":15.9},{"x":1568156220000,"y":15.89},{"x":1568156280000,"y":15.89},{"x":1568156340000,"y":15.89},{"x":1568156400000,"y":15.88},{"x":1568156460000,"y":15.88},{"x":1568156520000,"y":15.88},{"x":1568156580000,"y":15.88},{"x":1568156640000,"y":15.88},{"x":1568156700000,"y":15.91},{"x":1568156760000,"y":15.9},{"x":1568156820000,"y":15.89},{"x":1568156880000,"y":15.89},{"x":1568156940000,"y":15.91},{"x":1568157000000,"y":15.93},{"x":1568157060000,"y":15.91},{"x":1568157120000,"y":15.91},{"x":1568157180000,"y":15.91},{"x":1568157240000,"y":15.91},{"x":1568157300000,"y":15.93},{"x":1568157360000,"y":15.91},{"x":1568157420000,"y":15.88},{"x":1568157480000,"y":15.87},{"x":1568157540000,"y":15.87},{"x":1568157600000,"y":15.89},{"x":1568157660000,"y":15.89},{"x":1568157720000,"y":15.88},{"x":1568157780000,"y":15.88},{"x":1568157840000,"y":15.88},{"x":1568157900000,"y":15.91},{"x":1568157960000,"y":15.92},{"x":1568158020000,"y":15.91},{"x":1568158080000,"y":15.91},{"x":1568158140000,"y":15.91},{"x":1568158200000,"y":15.92},{"x":1568158260000,"y":15.93},{"x":1568158320000,"y":15.91},{"x":1568158380000,"y":15.91},{"x":1568158440000,"y":15.91},{"x":1568158500000,"y":15.92},{"x":1568158560000,"y":15.93},{"x":1568158620000,"y":15.9},{"x":1568158680000,"y":15.9},{"x":1568158740000,"y":15.91},{"x":1568158800000,"y":15.9},{"x":1568158860000,"y":15.91},{"x":1568158920000,"y":15.91},{"x":1568158980000,"y":15.91},{"x":1568159040000,"y":15.91},{"x":1568159100000,"y":15.91},{"x":1568159160000,"y":15.92},{"x":1568159220000,"y":15.91},{"x":1568159280000,"y":15.91},{"x":1568159340000,"y":15.91},{"x":1568159400000,"y":15.91},{"x":1568159460000,"y":15.91},{"x":1568159520000,"y":15.93},{"x":1568159580000,"y":15.91},{"x":1568159640000,"y":15.89},{"x":1568159700000,"y":15.9},{"x":1568159760000,"y":15.9},{"x":1568159820000,"y":15.91},{"x":1568159880000,"y":15.88},{"x":1568159940000,"y":15.87},{"x":1568160000000,"y":15.88},{"x":1568160060000,"y":15.87},{"x":1568160120000,"y":15.89},{"x":1568160180000,"y":15.89},{"x":1568160240000,"y":15.89},{"x":1568160300000,"y":15.87},{"x":1568160360000,"y":15.87},{"x":1568160420000,"y":15.9},{"x":1568160480000,"y":15.9},{"x":1568160540000,"y":15.9},{"x":1568160600000,"y":15.9},{"x":1568160660000,"y":15.9},{"x":1568160720000,"y":15.9},{"x":1568160780000,"y":15.88},{"x":1568160840000,"y":15.88},{"x":1568160900000,"y":15.89},{"x":1568160960000,"y":15.89},{"x":1568161020000,"y":15.9},{"x":1568161080000,"y":15.89},{"x":1568161140000,"y":15.55},{"x":1568161200000,"y":14.42},{"x":1568161260000,"y":14.42},{"x":1568161320000,"y":14.43},{"x":1568161380000,"y":14.41},{"x":1568161440000,"y":14.41},{"x":1568161500000,"y":14.42},{"x":1568161560000,"y":14.42},{"x":1568161620000,"y":14.43},{"x":1568161680000,"y":14.38},{"x":1568161740000,"y":14.38},{"x":1568161800000,"y":14.41},{"x":1568161860000,"y":14.41},{"x":1568161920000,"y":14.41},{"x":1568161980000,"y":14.43},{"x":1568162040000,"y":14.42},{"x":1568162100000,"y":14.43},{"x":1568162160000,"y":14.43},{"x":1568162220000,"y":14.42},{"x":1568162280000,"y":14.43},{"x":1568162340000,"y":14.42},{"x":1568162400000,"y":14.43},{"x":1568162460000,"y":14.42},{"x":1568162520000,"y":14.42},{"x":1568162580000,"y":14.43},{"x":1568162640000,"y":14.42},{"x":1568162700000,"y":14.4},{"x":1568162760000,"y":14.4},{"x":1568162820000,"y":14.4},{"x":1568162880000,"y":14.42},{"x":1568162940000,"y":14.42},{"x":1568163000000,"y":14.41},{"x":1568163060000,"y":14.41},{"x":1568163120000,"y":14.41},{"x":1568163180000,"y":14.43},{"x":1568163240000,"y":14.43},{"x":1568163300000,"y":14.41},{"x":1568163360000,"y":14.41},{"x":1568163420000,"y":14.41},{"x":1568163480000,"y":14.43},{"x":1568163540000,"y":14.42},{"x":1568163600000,"y":14.41},{"x":1568163660000,"y":14.41},{"x":1568163720000,"y":14.41},{"x":1568163780000,"y":14.42},{"x":1568163840000,"y":14.42},{"x":1568163900000,"y":14.39},{"x":1568163960000,"y":14.39},{"x":1568164020000,"y":14.39},{"x":1568164080000,"y":14.4},{"x":1568164140000,"y":14.42},{"x":1568164200000,"y":14.43},{"x":1568164260000,"y":14.43},{"x":1568164320000,"y":14.43},{"x":1568164380000,"y":14.43},{"x":1568164440000,"y":14.42},{"x":1568164500000,"y":14.43},{"x":1568164560000,"y":14.43},{"x":1568164620000,"y":14.42},{"x":1568164680000,"y":14.42},{"x":1568164740000,"y":14.43},{"x":1568164800000,"y":14.43},{"x":1568164860000,"y":14.43},{"x":1568164920000,"y":14.43},{"x":1568164980000,"y":14.43},{"x":1568165040000,"y":14.41},{"x":1568165100000,"y":14.39},{"x":1568165160000,"y":14.39},{"x":1568165220000,"y":14.39},{"x":1568165280000,"y":14.39},{"x":1568165340000,"y":14.43},{"x":1568165400000,"y":14.44},{"x":1568165460000,"y":14.44},{"x":1568165520000,"y":14.44},{"x":1568165580000,"y":14.44},{"x":1568165640000,"y":14.45},{"x":1568165700000,"y":14.44},{"x":1568165760000,"y":14.44},{"x":1568165820000,"y":14.44},{"x":1568165880000,"y":14.44},{"x":1568165940000,"y":14.44},{"x":1568166000000,"y":14.43},{"x":1568166060000,"y":14.42},{"x":1568166120000,"y":14.42},{"x":1568166180000,"y":14.42},{"x":1568166240000,"y":14.41},{"x":1568166300000,"y":14.04},{"x":1568166360000,"y":14.15},{"x":1568166420000,"y":14.15},{"x":1568166480000,"y":14.15},{"x":1568166540000,"y":14.16},{"x":1568166600000,"y":14.12},{"x":1568166660000,"y":14.12},{"x":1568166720000,"y":14.12},{"x":1568166780000,"y":14.12},{"x":1568166840000,"y":14.12},{"x":1568166900000,"y":14.12},{"x":1568166960000,"y":14.11},{"x":1568167020000,"y":14.11},{"x":1568167080000,"y":14.11},{"x":1568167140000,"y":14.11},{"x":1568167200000,"y":14.13},{"x":1568167260000,"y":14.13},{"x":1568167320000,"y":14.13},{"x":1568167380000,"y":14.13},{"x":1568167440000,"y":14.13},{"x":1568167500000,"y":14.13},{"x":1568167560000,"y":14.12},{"x":1568167620000,"y":14.12},{"x":1568167680000,"y":14.12},{"x":1568167740000,"y":14.13},{"x":1568167800000,"y":14.14},{"x":1568167860000,"y":14.12},{"x":1568167920000,"y":14.12},{"x":1568167980000,"y":14.12},{"x":1568168040000,"y":14.12},{"x":1568168100000,"y":14.15},{"x":1568168160000,"y":14.13},{"x":1568168220000,"y":14.14},{"x":1568168280000,"y":14.13},{"x":1568168340000,"y":14.13},{"x":1568168400000,"y":14.14},{"x":1568168460000,"y":14.13},{"x":1568168520000,"y":14.13},{"x":1568168580000,"y":14.13},{"x":1568168640000,"y":14.13},{"x":1568168700000,"y":14.14},{"x":1568168760000,"y":14.13},{"x":1568168820000,"y":14.12},{"x":1568168880000,"y":14.12},{"x":1568168940000,"y":14.11},{"x":1568169000000,"y":14.11},{"x":1568169060000,"y":14.1},{"x":1568169120000,"y":14.1},{"x":1568169180000,"y":14.1},{"x":1568169240000,"y":14.1},{"x":1568169300000,"y":14.09},{"x":1568169360000,"y":14.11},{"x":1568169420000,"y":14.1},{"x":1568169480000,"y":14.1},{"x":1568169540000,"y":14.12},{"x":1568169600000,"y":14.11},{"x":1568169660000,"y":14.12},{"x":1568169720000,"y":14.1},{"x":1568169780000,"y":14.1},{"x":1568169840000,"y":14.1},{"x":1568169900000,"y":14.09},{"x":1568169960000,"y":14.11},{"x":1568170020000,"y":14.11},{"x":1568170080000,"y":14.11},{"x":1568170140000,"y":14.11},{"x":1568170200000,"y":14.11},{"x":1568170260000,"y":14.12},{"x":1568170320000,"y":14.1},{"x":1568170380000,"y":14.1},{"x":1568170440000,"y":14.1},{"x":1568170500000,"y":14.11},{"x":1568170560000,"y":14.12},{"x":1568170620000,"y":14.1},{"x":1568170680000,"y":14.1},{"x":1568170740000,"y":14.1},{"x":1568170800000,"y":14.12},{"x":1568170860000,"y":14.14},{"x":1568170920000,"y":14.12},{"x":1568170980000,"y":14.11},{"x":1568171040000,"y":14.11},{"x":1568171100000,"y":14.11},{"x":1568171160000,"y":14.12},{"x":1568171220000,"y":14.12},{"x":1568171280000,"y":14.11},{"x":1568171340000,"y":14.12},{"x":1568171400000,"y":14.08},{"x":1568171460000,"y":14.08},{"x":1568171520000,"y":14.12},{"x":1568171580000,"y":14.11},{"x":1568171640000,"y":14.12},{"x":1568171700000,"y":14.12},{"x":1568171760000,"y":14.12},{"x":1568171820000,"y":14.13},{"x":1568171880000,"y":14.12},{"x":1568171940000,"y":14.12},{"x":1568172000000,"y":14.12},{"x":1568172060000,"y":14.12},{"x":1568172120000,"y":14.13},{"x":1568172180000,"y":14.12},{"x":1568172240000,"y":14.12},{"x":1568172300000,"y":14.12},{"x":1568172360000,"y":14.11},{"x":1568172420000,"y":14.13},{"x":1568172480000,"y":14.12},{"x":1568172540000,"y":14.12},{"x":1568172600000,"y":14.1},{"x":1568172660000,"y":14.09},{"x":1568172720000,"y":14.11},{"x":1568172780000,"y":14.12},{"x":1568172840000,"y":14.12},{"x":1568172900000,"y":14.09},{"x":1568172960000,"y":14.09},{"x":1568173020000,"y":14.1},{"x":1568173080000,"y":14.12},{"x":1568173140000,"y":14.12},{"x":1568173200000,"y":14.1},{"x":1568173260000,"y":14.1},{"x":1568173320000,"y":14.12},{"x":1568173380000,"y":14.1},{"x":1568173440000,"y":14.1},{"x":1568173500000,"y":14.12},{"x":1568173560000,"y":14.12},{"x":1568173620000,"y":14.12},{"x":1568173680000,"y":14.09},{"x":1568173740000,"y":14.08},{"x":1568173800000,"y":14.08},{"x":1568173860000,"y":14.08},{"x":1568173920000,"y":14.08},{"x":1568173980000,"y":14.13},{"x":1568174040000,"y":14.13},{"x":1568174100000,"y":14.1},{"x":1568174160000,"y":14.1},{"x":1568174220000,"y":14.1},{"x":1568174280000,"y":14.13},{"x":1568174340000,"y":14.13},{"x":1568174400000,"y":14.1},{"x":1568174460000,"y":14.1},{"x":1568174520000,"y":14.1},{"x":1568174580000,"y":14.12},{"x":1568174640000,"y":14.11},{"x":1568174700000,"y":14.12},{"x":1568174760000,"y":14.12},{"x":1568174820000,"y":14.12},{"x":1568174880000,"y":14.13},{"x":1568174940000,"y":14.13},{"x":1568175000000,"y":14.13},{"x":1568175060000,"y":14.13},{"x":1568175120000,"y":14.13},{"x":1568175180000,"y":14.14},{"x":1568175240000,"y":14.12},{"x":1568175300000,"y":14.12},{"x":1568175360000,"y":14.12},{"x":1568175420000,"y":14.12},{"x":1568175480000,"y":14.13},{"x":1568175540000,"y":14.13},{"x":1568175600000,"y":14.12},{"x":1568175660000,"y":14.12},{"x":1568175720000,"y":14.12},{"x":1568175780000,"y":14.13},{"x":1568175840000,"y":14.13},{"x":1568175900000,"y":14.12},{"x":1568175960000,"y":14.12},{"x":1568176020000,"y":14.12},{"x":1568176080000,"y":14.12},{"x":1568176140000,"y":14.12},{"x":1568176200000,"y":14.1},{"x":1568176260000,"y":14.1},{"x":1568176320000,"y":14.1},{"x":1568176380000,"y":14.1},{"x":1568176440000,"y":14.13},{"x":1568176500000,"y":14.11},{"x":1568176560000,"y":14.1},{"x":1568176620000,"y":14.1},{"x":1568176680000,"y":14.1},{"x":1568176740000,"y":14.15},{"x":1568176800000,"y":14.1},{"x":1568176860000,"y":14.1},{"x":1568176920000,"y":14.1},{"x":1568176980000,"y":14.09},{"x":1568177040000,"y":14.12},{"x":1568177100000,"y":14.13},{"x":1568177160000,"y":14.13},{"x":1568177220000,"y":14.13},{"x":1568177280000,"y":14.13},{"x":1568177340000,"y":14.14},{"x":1568177400000,"y":14.13},{"x":1568177460000,"y":14.13},{"x":1568177520000,"y":14.13},{"x":1568177580000,"y":14.13},{"x":1568177640000,"y":14.14},{"x":1568177700000,"y":14.13},{"x":1568177760000,"y":14.13},{"x":1568177820000,"y":14.13},{"x":1568177880000,"y":14.13},{"x":1568177940000,"y":14.15},{"x":1568178000000,"y":14.09},{"x":1568178060000,"y":14.08},{"x":1568178120000,"y":14.07},{"x":1568178180000,"y":14.07},{"x":1568178240000,"y":14.08},{"x":1568178300000,"y":14.11},{"x":1568178360000,"y":14.11},{"x":1568178420000,"y":14.11},{"x":1568178480000,"y":14.11},{"x":1568178540000,"y":14.12},{"x":1568178600000,"y":14.1},{"x":1568178660000,"y":14.1},{"x":1568178720000,"y":14.1},{"x":1568178780000,"y":14.1},{"x":1568178840000,"y":14.09},{"x":1568178900000,"y":14.13},{"x":1568178960000,"y":14.12},{"x":1568179020000,"y":14.12},{"x":1568179080000,"y":14.12},{"x":1568179140000,"y":14.12},{"x":1568179200000,"y":14.1},{"x":1568179260000,"y":14.09},{"x":1568179320000,"y":14.09},{"x":1568179380000,"y":14.09},{"x":1568179440000,"y":14.09},{"x":1568179500000,"y":14.13},{"x":1568179560000,"y":14.12},{"x":1568179620000,"y":14.12},{"x":1568179680000,"y":14.12},{"x":1568179740000,"y":14.12},{"x":1568179800000,"y":14.12},{"x":1568179860000,"y":14.11},{"x":1568179920000,"y":14.11},{"x":1568179980000,"y":14.11},{"x":1568180040000,"y":14.11},{"x":1568180100000,"y":14.13},{"x":1568180160000,"y":14.13},{"x":1568180220000,"y":14.13},{"x":1568180280000,"y":14.13},{"x":1568180340000,"y":14.12},{"x":1568180400000,"y":14.14},{"x":1568180460000,"y":14.11},{"x":1568180520000,"y":14.11},{"x":1568180580000,"y":14.1},{"x":1568180640000,"y":14.1},{"x":1568180700000,"y":14.12},{"x":1568180760000,"y":14.11},{"x":1568180820000,"y":14.11},{"x":1568180880000,"y":14.11},{"x":1568180940000,"y":14.11},{"x":1568181000000,"y":14.13},{"x":1568181060000,"y":14.13},{"x":1568181120000,"y":14.13},{"x":1568181180000,"y":14.13},{"x":1568181240000,"y":14.13},{"x":1568181300000,"y":14.1},{"x":1568181360000,"y":14.13},{"x":1568181420000,"y":14.12},{"x":1568181480000,"y":14.12},{"x":1568181540000,"y":14.12},{"x":1568181600000,"y":14.11},{"x":1568181660000,"y":14.12},{"x":1568181720000,"y":14.11},{"x":1568181780000,"y":14.11},{"x":1568181840000,"y":14.11},{"x":1568181900000,"y":14.12},{"x":1568181960000,"y":14.1},{"x":1568182020000,"y":14.06},{"x":1568182080000,"y":14.06},{"x":1568182140000,"y":14.11},{"x":1568182200000,"y":14.12},{"x":1568182260000,"y":14.12},{"x":1568182320000,"y":14.1},{"x":1568182380000,"y":14.1},{"x":1568182440000,"y":14.1},{"x":1568182500000,"y":14.13},{"x":1568182560000,"y":14.12},{"x":1568182620000,"y":14.1},{"x":1568182680000,"y":14.1},{"x":1568182740000,"y":14.1},{"x":1568182800000,"y":14.11},{"x":1568182860000,"y":14.12},{"x":1568182920000,"y":14.13},{"x":1568182980000,"y":14.12},{"x":1568183040000,"y":14.12},{"x":1568183100000,"y":14.1},{"x":1568183160000,"y":14.1},{"x":1568183220000,"y":14.12},{"x":1568183280000,"y":14.11},{"x":1568183340000,"y":14.11},{"x":1568183400000,"y":14.08},{"x":1568183460000,"y":14.08},{"x":1568183520000,"y":14.13},{"x":1568183580000,"y":14.12},{"x":1568183640000,"y":14.12},{"x":1568183700000,"y":14.13},{"x":1568183760000,"y":14.13},{"x":1568183820000,"y":14.11},{"x":1568183880000,"y":14.1},{"x":1568183940000,"y":14.11},{"x":1568184000000,"y":14.13},{"x":1568184060000,"y":14.12},{"x":1568184120000,"y":14.13},{"x":1568184180000,"y":14.12},{"x":1568184240000,"y":14.12},{"x":1568184300000,"y":14.11},{"x":1568184360000,"y":14.11},{"x":1568184420000,"y":14.12},{"x":1568184480000,"y":14.11},{"x":1568184540000,"y":14.11},{"x":1568184600000,"y":14.13},{"x":1568184660000,"y":14.13},{"x":1568184720000,"y":14.14},{"x":1568184780000,"y":14.13},{"x":1568184840000,"y":14.13},{"x":1568184900000,"y":14.09},{"x":1568184960000,"y":14.08},{"x":1568185020000,"y":14.1},{"x":1568185080000,"y":14.08},{"x":1568185140000,"y":14.08},{"x":1568185200000,"y":14.1},{"x":1568185260000,"y":14.1},{"x":1568185320000,"y":14.12},{"x":1568185380000,"y":14.13},{"x":1568185440000,"y":14.13},{"x":1568185500000,"y":14.13},{"x":1568185560000,"y":14.13},{"x":1568185620000,"y":14.13},{"x":1568185680000,"y":14.14},{"x":1568185740000,"y":14.13},{"x":1568185800000,"y":14.13},{"x":1568185860000,"y":14.13},{"x":1568185920000,"y":14.13},{"x":1568185980000,"y":14.12},{"x":1568186040000,"y":14.11},{"x":1568186100000,"y":14.12},{"x":1568186160000,"y":14.12},{"x":1568186220000,"y":14.12},{"x":1568186280000,"y":14.13},{"x":1568186340000,"y":14.12},{"x":1568186400000,"y":14.07},{"x":1568186460000,"y":14.07},{"x":1568186520000,"y":14.07},{"x":1568186580000,"y":14.13},{"x":1568186640000,"y":14.14},{"x":1568186700000,"y":14.14},{"x":1568186760000,"y":14.14},{"x":1568186820000,"y":14.14},{"x":1568186880000,"y":14.14},{"x":1568186940000,"y":14.13},{"x":1568187000000,"y":14.14},{"x":1568187060000,"y":14.14},{"x":1568187120000,"y":14.14},{"x":1568187180000,"y":14.15},{"x":1568187240000,"y":14.14},{"x":1568187300000,"y":14.13},{"x":1568187360000,"y":14.13},{"x":1568187420000,"y":14.11},{"x":1568187480000,"y":14.12},{"x":1568187540000,"y":14.12},{"x":1568187600000,"y":14.12},{"x":1568187660000,"y":14.12},{"x":1568187720000,"y":14.12},{"x":1568187780000,"y":14.14},{"x":1568187840000,"y":14.12},{"x":1568187900000,"y":14.11},{"x":1568187960000,"y":14.11},{"x":1568188020000,"y":14.11},{"x":1568188080000,"y":14.1},{"x":1568188140000,"y":14.48},{"x":1568188200000,"y":14.19},{"x":1568188260000,"y":14.19},{"x":1568188320000,"y":14.19},{"x":1568188380000,"y":14.19},{"x":1568188440000,"y":14.14},{"x":1568188500000,"y":14.1},{"x":1568188560000,"y":14.1},{"x":1568188620000,"y":14.1},{"x":1568188680000,"y":14.1},{"x":1568188740000,"y":14.13},{"x":1568188800000,"y":14.12},{"x":1568188860000,"y":14.12},{"x":1568188920000,"y":14.12},{"x":1568188980000,"y":14.11},{"x":1568189040000,"y":14.13},{"x":1568189100000,"y":14.12},{"x":1568189160000,"y":14.11},{"x":1568189220000,"y":14.11},{"x":1568189280000,"y":14.11},{"x":1568189340000,"y":14.14},{"x":1568189400000,"y":14.1},{"x":1568189460000,"y":14.1},{"x":1568189520000,"y":14.1},{"x":1568189580000,"y":14.1},{"x":1568189640000,"y":14.11},{"x":1568189700000,"y":14.12},{"x":1568189760000,"y":14.12},{"x":1568189820000,"y":14.12},{"x":1568189880000,"y":14.12},{"x":1568189940000,"y":14.13},{"x":1568190000000,"y":14.13},{"x":1568190060000,"y":14.13},{"x":1568190120000,"y":14.13},{"x":1568190180000,"y":14.13},{"x":1568190240000,"y":14.14},{"x":1568190300000,"y":14.13},{"x":1568190360000,"y":14.13},{"x":1568190420000,"y":14.13},{"x":1568190480000,"y":14.13},{"x":1568190540000,"y":14.13},{"x":1568190600000,"y":14.11},{"x":1568190660000,"y":14.09},{"x":1568190720000,"y":14.09},{"x":1568190780000,"y":14.09},{"x":1568190840000,"y":14.09},{"x":1568190900000,"y":14.13},{"x":1568190960000,"y":14.13},{"x":1568191020000,"y":14.13},{"x":1568191080000,"y":14.13},{"x":1568191140000,"y":14.12},{"x":1568191200000,"y":14.13},{"x":1568191260000,"y":14.12},{"x":1568191320000,"y":14.11},{"x":1568191380000,"y":14.11},{"x":1568191440000,"y":14.11},{"x":1568191500000,"y":14.12},{"x":1568191560000,"y":14.12},{"x":1568191620000,"y":14.12},{"x":1568191680000,"y":14.12},{"x":1568191740000,"y":14.12},{"x":1568191800000,"y":14.15},{"x":1568191860000,"y":14.13},{"x":1568191920000,"y":14.13},{"x":1568191980000,"y":14.13},{"x":1568192040000,"y":14.13},{"x":1568192100000,"y":14.15},{"x":1568192160000,"y":14.13},{"x":1568192220000,"y":14.13},{"x":1568192280000,"y":14.13},{"x":1568192340000,"y":14.13},{"x":1568192400000,"y":14.14},{"x":1568192460000,"y":14.13},{"x":1568192520000,"y":14.13},{"x":1568192580000,"y":14.13},{"x":1568192640000,"y":14.13},{"x":1568192700000,"y":14.13},{"x":1568192760000,"y":14.13},{"x":1568192820000,"y":14.13},{"x":1568192880000,"y":14.13},{"x":1568192940000,"y":14.13},{"x":1568193000000,"y":14.11},{"x":1568193060000,"y":14.14},{"x":1568193120000,"y":14.14},{"x":1568193180000,"y":14.14},{"x":1568193240000,"y":14.14},{"x":1568193300000,"y":14.13},{"x":1568193360000,"y":14.14},{"x":1568193420000,"y":14.13},{"x":1568193480000,"y":14.13},{"x":1568193540000,"y":14.13},{"x":1568193600000,"y":14.14},{"x":1568193660000,"y":14.13},{"x":1568193720000,"y":14.1},{"x":1568193780000,"y":14.1},{"x":1568193840000,"y":14.1},{"x":1568193900000,"y":14.13},{"x":1568193960000,"y":14.14},{"x":1568194020000,"y":14.13},{"x":1568194080000,"y":14.13},{"x":1568194140000,"y":14.13},{"x":1568194200000,"y":14.13},{"x":1568194260000,"y":14.14},{"x":1568194320000,"y":14.13},{"x":1568194380000,"y":14.13},{"x":1568194440000,"y":14.13},{"x":1568194500000,"y":14.14},{"x":1568194560000,"y":14.15},{"x":1568194620000,"y":14.14},{"x":1568194680000,"y":14.14},{"x":1568194740000,"y":14.14},{"x":1568194800000,"y":14.14},{"x":1568194860000,"y":14.14},{"x":1568194920000,"y":14.12},{"x":1568194980000,"y":14.12},{"x":1568195040000,"y":14.12},{"x":1568195100000,"y":14.15},{"x":1568195160000,"y":14.15},{"x":1568195220000,"y":14.13},{"x":1568195280000,"y":14.13},{"x":1568195340000,"y":14.13},{"x":1568195400000,"y":14.14},{"x":1568195460000,"y":14.14},{"x":1568195520000,"y":14.14},{"x":1568195580000,"y":14.13},{"x":1568195640000,"y":14.13},{"x":1568195700000,"y":14.1},{"x":1568195760000,"y":14.1},{"x":1568195820000,"y":14.13},{"x":1568195880000,"y":14.12},{"x":1568195940000,"y":14.12},{"x":1568196000000,"y":14.12},{"x":1568196060000,"y":14.12},{"x":1568196120000,"y":14.14},{"x":1568196180000,"y":14.15},{"x":1568196240000,"y":14.15},{"x":1568196300000,"y":14.12},{"x":1568196360000,"y":14.12},{"x":1568196420000,"y":14.14},{"x":1568196480000,"y":14.15},{"x":1568196540000,"y":14.15},{"x":1568196600000,"y":14.12},{"x":1568196660000,"y":14.12},{"x":1568196720000,"y":14.13},{"x":1568196780000,"y":14.13},{"x":1568196840000,"y":14.13},{"x":1568196900000,"y":14.13},{"x":1568196960000,"y":14.13},{"x":1568197020000,"y":14.14},{"x":1568197080000,"y":14.12},{"x":1568197140000,"y":14.12},{"x":1568197200000,"y":14.08},{"x":1568197260000,"y":14.08},{"x":1568197320000,"y":14.09},{"x":1568197380000,"y":14.12},{"x":1568197440000,"y":14.11},{"x":1568197500000,"y":14.13},{"x":1568197560000,"y":14.13},{"x":1568197620000,"y":14.13},{"x":1568197680000,"y":14.12},{"x":1568197740000,"y":14.1},{"x":1568197800000,"y":14.13},{"x":1568197860000,"y":14.13},{"x":1568197920000,"y":14.13},{"x":1568197980000,"y":14.13},{"x":1568198040000,"y":14.12},{"x":1568198100000,"y":14.1},{"x":1568198160000,"y":14.1},{"x":1568198220000,"y":14.1},{"x":1568198280000,"y":14.13},{"x":1568198340000,"y":14.3},{"x":1568198400000,"y":14.35},{"x":1568198460000,"y":14.35},{"x":1568198520000,"y":14.34},{"x":1568198580000,"y":14.36},{"x":1568198640000,"y":14.35},{"x":1568198700000,"y":14.29},{"x":1568198760000,"y":14.28},{"x":1568198820000,"y":14.28},{"x":1568198880000,"y":14.3},{"x":1568198940000,"y":14.29},{"x":1568199000000,"y":14.29},{"x":1568199060000,"y":14.29},{"x":1568199120000,"y":14.29},{"x":1568199180000,"y":14.3},{"x":1568199240000,"y":14.29},{"x":1568199300000,"y":14.28},{"x":1568199360000,"y":14.28},{"x":1568199420000,"y":14.28},{"x":1568199480000,"y":14.3},{"x":1568199540000,"y":14.29},{"x":1568199600000,"y":14.27},{"x":1568199660000,"y":14.27},{"x":1568199720000,"y":14.27},{"x":1568199780000,"y":14.27},{"x":1568199840000,"y":14.29},{"x":1568199900000,"y":14.3},{"x":1568199960000,"y":14.29},{"x":1568200020000,"y":14.29},{"x":1568200080000,"y":14.29},{"x":1568200140000,"y":14.3},{"x":1568200200000,"y":14.29},{"x":1568200260000,"y":14.29},{"x":1568200320000,"y":14.29},{"x":1568200380000,"y":14.29},{"x":1568200440000,"y":14.3},{"x":1568200500000,"y":14.28},{"x":1568200560000,"y":14.28},{"x":1568200620000,"y":14.29},{"x":1568200680000,"y":14.29},{"x":1568200740000,"y":14.3},{"x":1568200800000,"y":14.28},{"x":1568200860000,"y":14.28},{"x":1568200920000,"y":14.29},{"x":1568200980000,"y":14.29},{"x":1568201040000,"y":14.3},{"x":1568201100000,"y":14.34},{"x":1568201160000,"y":14.27},{"x":1568201220000,"y":14.27},{"x":1568201280000,"y":14.27},{"x":1568201340000,"y":14.28},{"x":1568201400000,"y":14.29},{"x":1568201460000,"y":14.29},{"x":1568201520000,"y":14.29},{"x":1568201580000,"y":14.31},{"x":1568201640000,"y":14.89},{"x":1568201700000,"y":14.19},{"x":1568201760000,"y":14.19},{"x":1568201820000,"y":14.19},{"x":1568201880000,"y":14.19},{"x":1568201940000,"y":14.18},{"x":1568202000000,"y":14.13},{"x":1568202060000,"y":14.13},{"x":1568202120000,"y":14.13},{"x":1568202180000,"y":14.13},{"x":1568202240000,"y":14.12},{"x":1568202300000,"y":14.15},{"x":1568202360000,"y":14.14},{"x":1568202420000,"y":14.14},{"x":1568202480000,"y":14.14},{"x":1568202540000,"y":14.14},{"x":1568202600000,"y":14.14},{"x":1568202660000,"y":14.13},{"x":1568202720000,"y":14.13},{"x":1568202780000,"y":14.13},{"x":1568202840000,"y":14.13},{"x":1568202900000,"y":14.14},{"x":1568202960000,"y":14.14},{"x":1568203020000,"y":14.14},{"x":1568203080000,"y":14.14},{"x":1568203140000,"y":14.14},{"x":1568203200000,"y":14.15},{"x":1568203260000,"y":14.13},{"x":1568203320000,"y":14.13},{"x":1568203380000,"y":14.13},{"x":1568203440000,"y":14.13},{"x":1568203500000,"y":14.13},{"x":1568203560000,"y":14.14},{"x":1568203620000,"y":14.14},{"x":1568203680000,"y":14.14},{"x":1568203740000,"y":14.15},{"x":1568203800000,"y":14.16},{"x":1568203860000,"y":14.14},{"x":1568203920000,"y":14.14},{"x":1568203980000,"y":14.14},{"x":1568204040000,"y":14.14},{"x":1568204100000,"y":14.16},{"x":1568204160000,"y":14.14},{"x":1568204220000,"y":14.14},{"x":1568204280000,"y":14.14},{"x":1568204340000,"y":14.14},{"x":1568204400000,"y":14.15},{"x":1568204460000,"y":14.14},{"x":1568204520000,"y":14.13},{"x":1568204580000,"y":14.13},{"x":1568204640000,"y":14.13},{"x":1568204700000,"y":14.12},{"x":1568204760000,"y":14.15},{"x":1568204820000,"y":14.14},{"x":1568204880000,"y":14.14},{"x":1568204940000,"y":14.14},{"x":1568205000000,"y":14.15},{"x":1568205060000,"y":14.15},{"x":1568205120000,"y":14.14},{"x":1568205180000,"y":14.14},{"x":1568205240000,"y":14.14},{"x":1568205300000,"y":14.12},{"x":1568205360000,"y":14.14},{"x":1568205420000,"y":14.13},{"x":1568205480000,"y":14.13},{"x":1568205540000,"y":14.15},{"x":1568205600000,"y":14.13},{"x":1568205660000,"y":14.13},{"x":1568205720000,"y":14.13},{"x":1568205780000,"y":14.13},{"x":1568205840000,"y":14.13},{"x":1568205900000,"y":14.13},{"x":1568205960000,"y":14.13},{"x":1568206020000,"y":14.11},{"x":1568206080000,"y":14.11},{"x":1568206140000,"y":14.11},{"x":1568206200000,"y":14.12},{"x":1568206260000,"y":14.13},{"x":1568206320000,"y":14.13},{"x":1568206380000,"y":14.13},{"x":1568206440000,"y":14.13},{"x":1568206500000,"y":14.13},{"x":1568206560000,"y":14.14},{"x":1568206620000,"y":14.13},{"x":1568206680000,"y":14.13},{"x":1568206740000,"y":14.13},{"x":1568206800000,"y":14.1},{"x":1568206860000,"y":14.1},{"x":1568206920000,"y":14.13},{"x":1568206980000,"y":14.12},{"x":1568207040000,"y":14.12},{"x":1568207100000,"y":14.13},{"x":1568207160000,"y":14.13},{"x":1568207220000,"y":14.14},{"x":1568207280000,"y":14.14},{"x":1568207340000,"y":14.14},{"x":1568207400000,"y":14.14},{"x":1568207460000,"y":14.13},{"x":1568207520000,"y":14.14},{"x":1568207580000,"y":14.13},{"x":1568207640000,"y":14.13},{"x":1568207700000,"y":14.11},{"x":1568207760000,"y":14.11},{"x":1568207820000,"y":14.13},{"x":1568207880000,"y":14.13},{"x":1568207940000,"y":14.13},{"x":1568208000000,"y":14.14},{"x":1568208060000,"y":14.14},{"x":1568208120000,"y":14.15},{"x":1568208180000,"y":14.14},{"x":1568208240000,"y":14.14},{"x":1568208300000,"y":14.13},{"x":1568208360000,"y":14.12},{"x":1568208420000,"y":14.13},{"x":1568208480000,"y":14.12},{"x":1568208540000,"y":14.13},{"x":1568208600000,"y":14.11},{"x":1568208660000,"y":14.11},{"x":1568208720000,"y":14.12},{"x":1568208780000,"y":14.12},{"x":1568208840000,"y":14.12},{"x":1568208900000,"y":14.15},{"x":1568208960000,"y":14.15},{"x":1568209020000,"y":14.16},{"x":1568209080000,"y":14.13},{"x":1568209140000,"y":14.14},{"x":1568209200000,"y":14.12},{"x":1568209260000,"y":14.12},{"x":1568209320000,"y":14.11},{"x":1568209380000,"y":14.12},{"x":1568209440000,"y":14.11},{"x":1568209500000,"y":14.14},{"x":1568209560000,"y":14.14},{"x":1568209620000,"y":14.14},{"x":1568209680000,"y":14.15},{"x":1568209740000,"y":14.14},{"x":1568209800000,"y":14.11},{"x":1568209860000,"y":14.11},{"x":1568209920000,"y":14.11},{"x":1568209980000,"y":14.52},{"x":1568210040000,"y":14.21},{"x":1568210100000,"y":14.18},{"x":1568210160000,"y":14.18},{"x":1568210220000,"y":14.18},{"x":1568210280000,"y":14.16},{"x":1568210340000,"y":14.11},{"x":1568210400000,"y":14.11},{"x":1568210460000,"y":14.11},{"x":1568210520000,"y":14.11},{"x":1568210580000,"y":14.13},{"x":1568210640000,"y":14.14},{"x":1568210700000,"y":14.15},{"x":1568210760000,"y":14.15},{"x":1568210820000,"y":14.15},{"x":1568210880000,"y":14.15},{"x":1568210940000,"y":14.14},{"x":1568211000000,"y":14.14},{"x":1568211060000,"y":14.14},{"x":1568211120000,"y":14.14},{"x":1568211180000,"y":14.15},{"x":1568211240000,"y":14.13},{"x":1568211300000,"y":14.15},{"x":1568211360000,"y":14.15},{"x":1568211420000,"y":14.15},{"x":1568211480000,"y":14.15},{"x":1568211540000,"y":14.15},{"x":1568211600000,"y":14.12},{"x":1568211660000,"y":14.12},{"x":1568211720000,"y":14.12},{"x":1568211780000,"y":14.12},{"x":1568211840000,"y":14.15},{"x":1568211900000,"y":14.12},{"x":1568211960000,"y":14.12},{"x":1568212020000,"y":14.12},{"x":1568212080000,"y":14.12},{"x":1568212140000,"y":14.13},{"x":1568212200000,"y":14.13},{"x":1568212260000,"y":14.13},{"x":1568212320000,"y":14.13},{"x":1568212380000,"y":14.13},{"x":1568212440000,"y":14.13},{"x":1568212500000,"y":14.15},{"x":1568212560000,"y":14.15},{"x":1568212620000,"y":14.15},{"x":1568212680000,"y":14.15},{"x":1568212740000,"y":14.15},{"x":1568212800000,"y":14.15},{"x":1568212860000,"y":14.15},{"x":1568212920000,"y":14.13},{"x":1568212980000,"y":14.13},{"x":1568213040000,"y":14.15},{"x":1568213100000,"y":14.11},{"x":1568213160000,"y":14.12},{"x":1568213220000,"y":14.12},{"x":1568213280000,"y":14.12},{"x":1568213340000,"y":14.13},{"x":1568213400000,"y":14.13},{"x":1568213460000,"y":14.13},{"x":1568213520000,"y":14.13},{"x":1568213580000,"y":14.13},{"x":1568213640000,"y":14.15},{"x":1568213700000,"y":14.17},{"x":1568213760000,"y":14.15},{"x":1568213820000,"y":14.15},{"x":1568213880000,"y":14.15},{"x":1568213940000,"y":14.15},{"x":1568214000000,"y":14.13},{"x":1568214060000,"y":14.11},{"x":1568214120000,"y":14.11},{"x":1568214180000,"y":14.11},{"x":1568214240000,"y":14.11},{"x":1568214300000,"y":14.16},{"x":1568214360000,"y":14.15},{"x":1568214420000,"y":14.15},{"x":1568214480000,"y":14.15},{"x":1568214540000,"y":14.15},{"x":1568214600000,"y":14.16},{"x":1568214660000,"y":14.15},{"x":1568214720000,"y":14.15},{"x":1568214780000,"y":14.15},{"x":1568214840000,"y":14.15},{"x":1568214900000,"y":14.16},{"x":1568214960000,"y":14.15},{"x":1568215020000,"y":14.15},{"x":1568215080000,"y":14.15},{"x":1568215140000,"y":14.15},{"x":1568215200000,"y":14.15},{"x":1568215260000,"y":14.13},{"x":1568215320000,"y":14.13},{"x":1568215380000,"y":14.13},{"x":1568215440000,"y":14.13},{"x":1568215500000,"y":14.15},{"x":1568215560000,"y":14.12},{"x":1568215620000,"y":14.12},{"x":1568215680000,"y":14.12},{"x":1568215740000,"y":14.12},{"x":1568215800000,"y":14.14},{"x":1568215860000,"y":14.13},{"x":1568215920000,"y":14.13},{"x":1568215980000,"y":14.13},{"x":1568216040000,"y":14.13},{"x":1568216100000,"y":14.13},{"x":1568216160000,"y":14.14},{"x":1568216220000,"y":14.14},{"x":1568216280000,"y":14.14},{"x":1568216340000,"y":14.13},{"x":1568216400000,"y":14.11},{"x":1568216460000,"y":14.15},{"x":1568216520000,"y":14.12},{"x":1568216580000,"y":14.12},{"x":1568216640000,"y":14.12},{"x":1568216700000,"y":14.13},{"x":1568216760000,"y":14.15},{"x":1568216820000,"y":14.13},{"x":1568216880000,"y":14.13},{"x":1568216940000,"y":14.13},{"x":1568217000000,"y":14.13},{"x":1568217060000,"y":14.14},{"x":1568217120000,"y":14.14},{"x":1568217180000,"y":14.14},{"x":1568217240000,"y":14.14},{"x":1568217300000,"y":14.13},{"x":1568217360000,"y":14.14},{"x":1568217420000,"y":14.13},{"x":1568217480000,"y":14.12},{"x":1568217540000,"y":14.12},{"x":1568217600000,"y":14.13},{"x":1568217660000,"y":14.14},{"x":1568217720000,"y":14.14},{"x":1568217780000,"y":14.14},{"x":1568217840000,"y":14.14},{"x":1568217900000,"y":14.14},{"x":1568217960000,"y":14.16},{"x":1568218020000,"y":14.14},{"x":1568218080000,"y":14.14},{"x":1568218140000,"y":14.14},{"x":1568218200000,"y":14.15},{"x":1568218260000,"y":14.16},{"x":1568218320000,"y":14.14},{"x":1568218380000,"y":14.14},{"x":1568218440000,"y":14.14},{"x":1568218500000,"y":14.11},{"x":1568218560000,"y":14.12},{"x":1568218620000,"y":14.13},{"x":1568218680000,"y":14.13},{"x":1568218740000,"y":14.13},{"x":1568218800000,"y":14.15},{"x":1568218860000,"y":14.14},{"x":1568218920000,"y":14.14},{"x":1568218980000,"y":14.12},{"x":1568219040000,"y":14.12},{"x":1568219100000,"y":14.14},{"x":1568219160000,"y":14.14},{"x":1568219220000,"y":14.16},{"x":1568219280000,"y":14.28},{"x":1568219340000,"y":14.31},{"x":1568219400000,"y":14.34},{"x":1568219460000,"y":14.34},{"x":1568219520000,"y":14.37},{"x":1568219580000,"y":14.37},{"x":1568219640000,"y":14.37},{"x":1568219700000,"y":14.35},{"x":1568219760000,"y":14.35},{"x":1568219820000,"y":14.36},{"x":1568219880000,"y":14.35},{"x":1568219940000,"y":14.35},{"x":1568220000000,"y":14.36},{"x":1568220060000,"y":14.36},{"x":1568220120000,"y":14.36},{"x":1568220180000,"y":14.36},{"x":1568220240000,"y":14.36},{"x":1568220300000,"y":14.37},{"x":1568220360000,"y":14.37},{"x":1568220420000,"y":14.38},{"x":1568220480000,"y":14.39},{"x":1568220540000,"y":27.84},{"x":1568220600000,"y":23.71},{"x":1568220660000,"y":27.78},{"x":1568220720000,"y":16.75},{"x":1568220780000,"y":15.77},{"x":1568220840000,"y":25.83},{"x":1568220900000,"y":28.15},{"x":1568220960000,"y":28.29},{"x":1568221020000,"y":16.02},{"x":1568221080000,"y":15.83},{"x":1568221140000,"y":24.01},{"x":1568221200000,"y":28.39},{"x":1568221260000,"y":17.44},{"x":1568221320000,"y":15.76},{"x":1568221380000,"y":15.79},{"x":1568221440000,"y":15.78},{"x":1568221500000,"y":15.76},{"x":1568221560000,"y":15.76},{"x":1568221620000,"y":15.76},{"x":1568221680000,"y":15.81},{"x":1568221740000,"y":15.8},{"x":1568221800000,"y":15.81},{"x":1568221860000,"y":15.81},{"x":1568221920000,"y":15.81},{"x":1568221980000,"y":19.89},{"x":1568222040000,"y":25.37},{"x":1568222100000,"y":15.76},{"x":1568222160000,"y":15.76},{"x":1568222220000,"y":15.77},{"x":1568222280000,"y":15.78},{"x":1568222340000,"y":15.75},{"x":1568222400000,"y":15.77},{"x":1568222460000,"y":15.77},{"x":1568222520000,"y":15.77},{"x":1568222580000,"y":15.78},{"x":1568222640000,"y":15.78},{"x":1568222700000,"y":15.78},{"x":1568222760000,"y":15.78},{"x":1568222820000,"y":15.78},{"x":1568222880000,"y":15.79},{"x":1568222940000,"y":15.78},{"x":1568223000000,"y":15.78},{"x":1568223060000,"y":15.77},{"x":1568223120000,"y":15.76},{"x":1568223180000,"y":15.76},{"x":1568223240000,"y":15.79},{"x":1568223300000,"y":15.77},{"x":1568223360000,"y":15.77},{"x":1568223420000,"y":15.77},{"x":1568223480000,"y":15.77},{"x":1568223540000,"y":15.79},{"x":1568223600000,"y":15.78},{"x":1568223660000,"y":15.78},{"x":1568223720000,"y":15.78},{"x":1568223780000,"y":15.77},{"x":1568223840000,"y":15.79},{"x":1568223900000,"y":15.79},{"x":1568223960000,"y":15.79},{"x":1568224020000,"y":15.79},{"x":1568224080000,"y":15.79},{"x":1568224140000,"y":15.78},{"x":1568224200000,"y":15.77},{"x":1568224260000,"y":15.78},{"x":1568224320000,"y":15.78},{"x":1568224380000,"y":15.77},{"x":1568224440000,"y":15.79},{"x":1568224500000,"y":15.78},{"x":1568224560000,"y":15.77},{"x":1568224620000,"y":15.77},{"x":1568224680000,"y":15.77},{"x":1568224740000,"y":15.78},{"x":1568224800000,"y":15.78},{"x":1568224860000,"y":15.78},{"x":1568224920000,"y":15.77},{"x":1568224980000,"y":15.77},{"x":1568225040000,"y":15.79},{"x":1568225100000,"y":15.77},{"x":1568225160000,"y":15.77},{"x":1568225220000,"y":15.76},{"x":1568225280000,"y":15.74},{"x":1568225340000,"y":15.76},{"x":1568225400000,"y":15.71},{"x":1568225460000,"y":15.71},{"x":1568225520000,"y":15.71},{"x":1568225580000,"y":15.71},{"x":1568225640000,"y":15.71},{"x":1568225700000,"y":15.77},{"x":1568225760000,"y":15.76},{"x":1568225820000,"y":15.76},{"x":1568225880000,"y":15.76},{"x":1568225940000,"y":15.76},{"x":1568226000000,"y":15.79},{"x":1568226060000,"y":15.78},{"x":1568226120000,"y":15.78},{"x":1568226180000,"y":15.78},{"x":1568226240000,"y":15.78},{"x":1568226300000,"y":15.8},{"x":1568226360000,"y":15.78},{"x":1568226420000,"y":15.76},{"x":1568226480000,"y":15.76},{"x":1568226540000,"y":15.76},{"x":1568226600000,"y":15.76},{"x":1568226660000,"y":15.75},{"x":1568226720000,"y":15.75},{"x":1568226780000,"y":15.74},{"x":1568226840000,"y":15.74},{"x":1568226900000,"y":15.77},{"x":1568226960000,"y":15.76},{"x":1568227020000,"y":15.76},{"x":1568227080000,"y":15.76},{"x":1568227140000,"y":15.77},{"x":1568227200000,"y":15.77},{"x":1568227260000,"y":15.77},{"x":1568227320000,"y":15.77},{"x":1568227380000,"y":15.77},{"x":1568227440000,"y":15.77},{"x":1568227500000,"y":15.77},{"x":1568227560000,"y":15.76},{"x":1568227620000,"y":15.75},{"x":1568227680000,"y":15.75},{"x":1568227740000,"y":15.75},{"x":1568227800000,"y":15.76},{"x":1568227860000,"y":15.77},{"x":1568227920000,"y":15.76},{"x":1568227980000,"y":15.76},{"x":1568228040000,"y":15.76},{"x":1568228100000,"y":15.77},{"x":1568228160000,"y":15.77},{"x":1568228220000,"y":15.76},{"x":1568228280000,"y":15.76},{"x":1568228340000,"y":15.76},{"x":1568228400000,"y":15.75},{"x":1568228460000,"y":15.79},{"x":1568228520000,"y":15.77},{"x":1568228580000,"y":15.77},{"x":1568228640000,"y":15.77},{"x":1568228700000,"y":15.76},{"x":1568228760000,"y":15.77},{"x":1568228820000,"y":15.76},{"x":1568228880000,"y":15.76},{"x":1568228940000,"y":15.76},{"x":1568229000000,"y":15.77},{"x":1568229060000,"y":15.78},{"x":1568229120000,"y":15.76},{"x":1568229180000,"y":15.76},{"x":1568229240000,"y":15.76},{"x":1568229300000,"y":15.76},{"x":1568229360000,"y":15.77},{"x":1568229420000,"y":15.77},{"x":1568229480000,"y":15.76},{"x":1568229540000,"y":15.75},{"x":1568229600000,"y":15.74},{"x":1568229660000,"y":15.77},{"x":1568229720000,"y":15.76},{"x":1568229780000,"y":15.76},{"x":1568229840000,"y":15.76},{"x":1568229900000,"y":15.73},{"x":1568229960000,"y":15.73},{"x":1568230020000,"y":15.74},{"x":1568230080000,"y":15.74},{"x":1568230140000,"y":15.75},{"x":1568230200000,"y":15.72},{"x":1568230260000,"y":15.72},{"x":1568230320000,"y":15.75},{"x":1568230380000,"y":15.74},{"x":1568230440000,"y":15.74},{"x":1568230500000,"y":15.76},{"x":1568230560000,"y":15.76},{"x":1568230620000,"y":15.76},{"x":1568230680000,"y":15.75},{"x":1568230740000,"y":15.76},{"x":1568230800000,"y":15.74},{"x":1568230860000,"y":15.74},{"x":1568230920000,"y":15.79},{"x":1568230980000,"y":15.77},{"x":1568231040000,"y":15.77},{"x":1568231100000,"y":15.78},{"x":1568231160000,"y":15.76},{"x":1568231220000,"y":15.76},{"x":1568231280000,"y":15.75},{"x":1568231340000,"y":15.75},{"x":1568231400000,"y":15.74},{"x":1568231460000,"y":15.74},{"x":1568231520000,"y":15.77},{"x":1568231580000,"y":15.78},{"x":1568231640000,"y":17.4},{"x":1568231700000,"y":29.09},{"x":1568231760000,"y":23.66},{"x":1568231820000,"y":16.16},{"x":1568231880000,"y":15.89},{"x":1568231940000,"y":15.89},{"x":1568232000000,"y":15.86},{"x":1568232060000,"y":15.86},{"x":1568232120000,"y":15.87},{"x":1568232180000,"y":15.83},{"x":1568232240000,"y":15.83},{"x":1568232300000,"y":15.84},{"x":1568232360000,"y":15.84},{"x":1568232420000,"y":15.85},{"x":1568232480000,"y":15.83},{"x":1568232540000,"y":15.84},{"x":1568232600000,"y":15.82},{"x":1568232660000,"y":15.82},{"x":1568232720000,"y":15.82},{"x":1568232780000,"y":15.85},{"x":1568232840000,"y":15.82},{"x":1568232900000,"y":15.77},{"x":1568232960000,"y":15.77},{"x":1568233020000,"y":15.78},{"x":1568233080000,"y":15.84},{"x":1568233140000,"y":15.84},{"x":1568233200000,"y":15.84},{"x":1568233260000,"y":15.84},{"x":1568233320000,"y":15.84},{"x":1568233380000,"y":15.87},{"x":1568233440000,"y":15.85},{"x":1568233500000,"y":15.8},{"x":1568233560000,"y":15.8},{"x":1568233620000,"y":15.8},{"x":1568233680000,"y":15.84},{"x":1568233740000,"y":15.85},{"x":1568233800000,"y":15.84},{"x":1568233860000,"y":15.82},{"x":1568233920000,"y":15.82},{"x":1568233980000,"y":15.83},{"x":1568234040000,"y":15.83},{"x":1568234100000,"y":15.82},{"x":1568234160000,"y":15.82},{"x":1568234220000,"y":15.82},{"x":1568234280000,"y":15.83},{"x":1568234340000,"y":15.84},{"x":1568234400000,"y":15.84},{"x":1568234460000,"y":15.84},{"x":1568234520000,"y":15.83},{"x":1568234580000,"y":15.84},{"x":1568234640000,"y":15.82},{"x":1568234700000,"y":15.84},{"x":1568234760000,"y":15.84},{"x":1568234820000,"y":15.84},{"x":1568234880000,"y":15.84},{"x":1568234940000,"y":15.85},{"x":1568235000000,"y":15.79},{"x":1568235060000,"y":15.79},{"x":1568235120000,"y":15.79},{"x":1568235180000,"y":15.79},{"x":1568235240000,"y":15.83},{"x":1568235300000,"y":15.83},{"x":1568235360000,"y":15.83},{"x":1568235420000,"y":15.83},{"x":1568235480000,"y":15.83},{"x":1568235540000,"y":15.86},{"x":1568235600000,"y":15.82},{"x":1568235660000,"y":15.81},{"x":1568235720000,"y":15.81},{"x":1568235780000,"y":15.81},{"x":1568235840000,"y":15.84},{"x":1568235900000,"y":15.85},{"x":1568235960000,"y":15.85},{"x":1568236020000,"y":15.85},{"x":1568236080000,"y":15.84},{"x":1568236140000,"y":15.83},{"x":1568236200000,"y":15.8},{"x":1568236260000,"y":15.79},{"x":1568236320000,"y":15.79},{"x":1568236380000,"y":15.79},{"x":1568236440000,"y":15.82},{"x":1568236500000,"y":15.83},{"x":1568236560000,"y":15.83},{"x":1568236620000,"y":15.84},{"x":1568236680000,"y":15.84},{"x":1568236740000,"y":15.86},{"x":1568236800000,"y":15.85},{"x":1568236860000,"y":15.85},{"x":1568236920000,"y":15.85},{"x":1568236980000,"y":15.85},{"x":1568237040000,"y":15.86},{"x":1568237100000,"y":15.85},{"x":1568237160000,"y":15.85},{"x":1568237220000,"y":15.84},{"x":1568237280000,"y":15.83},{"x":1568237340000,"y":15.84},{"x":1568237400000,"y":15.84},{"x":1568237460000,"y":15.83},{"x":1568237520000,"y":15.84},{"x":1568237580000,"y":15.85},{"x":1568237640000,"y":15.86},{"x":1568237700000,"y":15.85},{"x":1568237760000,"y":15.83},{"x":1568237820000,"y":15.83},{"x":1568237880000,"y":15.83},{"x":1568237940000,"y":15.87},{"x":1568238000000,"y":15.89},{"x":1568238060000,"y":15.87},{"x":1568238120000,"y":15.87},{"x":1568238180000,"y":15.87},{"x":1568238240000,"y":15.87},{"x":1568238300000,"y":15.89},{"x":1568238360000,"y":15.88},{"x":1568238420000,"y":15.86},{"x":1568238480000,"y":15.86},{"x":1568238540000,"y":15.86},{"x":1568238600000,"y":15.87},{"x":1568238660000,"y":15.87},{"x":1568238720000,"y":15.9},{"x":1568238780000,"y":15.9},{"x":1568238840000,"y":15.9},{"x":1568238900000,"y":15.97},{"x":1568238960000,"y":15.96},{"x":1568239020000,"y":15.96},{"x":1568239080000,"y":15.96},{"x":1568239140000,"y":15.96},{"x":1568239200000,"y":16.86},{"x":1568239260000,"y":15.81},{"x":1568239320000,"y":14.64},{"x":1568239380000,"y":15.62},{"x":1568239440000,"y":14.66},{"x":1568239500000,"y":28.6},{"x":1568239560000,"y":22.38},{"x":1568239620000,"y":23.98},{"x":1568239680000,"y":28.41},{"x":1568239740000,"y":16.24},{"x":1568239800000,"y":15.94},{"x":1568239860000,"y":15.94},{"x":1568239920000,"y":15.94},{"x":1568239980000,"y":15.94},{"x":1568240040000,"y":15.94},{"x":1568240100000,"y":15.95},{"x":1568240160000,"y":15.96},{"x":1568240220000,"y":15.95},{"x":1568240280000,"y":15.95},{"x":1568240340000,"y":15.95},{"x":1568240400000,"y":15.96},{"x":1568240460000,"y":15.97},{"x":1568240520000,"y":15.97},{"x":1568240580000,"y":15.97},{"x":1568240640000,"y":15.96},{"x":1568240700000,"y":15.93},{"x":1568240760000,"y":15.95},{"x":1568240820000,"y":15.95},{"x":1568240880000,"y":15.94},{"x":1568240940000,"y":15.94},{"x":1568241000000,"y":15.95},{"x":1568241060000,"y":15.96},{"x":1568241120000,"y":15.94},{"x":1568241180000,"y":15.94},{"x":1568241240000,"y":15.95},{"x":1568241300000,"y":15.55},{"x":1568241360000,"y":26.78},{"x":1568241420000,"y":22.4},{"x":1568241480000,"y":28.26},{"x":1568241540000,"y":22.34},{"x":1568241600000,"y":16.25},{"x":1568241660000,"y":29.16},{"x":1568241720000,"y":27.77},{"x":1568241780000,"y":25.04},{"x":1568241840000,"y":15.87},{"x":1568241900000,"y":15.89},{"x":1568241960000,"y":26.87},{"x":1568242020000,"y":22.86},{"x":1568242080000,"y":27.25},{"x":1568242140000,"y":15.84},{"x":1568242200000,"y":28.12},{"x":1568242260000,"y":28.2},{"x":1568242320000,"y":16.12},{"x":1568242380000,"y":15.92},{"x":1568242440000,"y":15.92},{"x":1568242500000,"y":15.94},{"x":1568242560000,"y":15.94},{"x":1568242620000,"y":15.98},{"x":1568242680000,"y":20.73},{"x":1568242740000,"y":23.18},{"x":1568242800000,"y":15.91},{"x":1568242860000,"y":15.91},{"x":1568242920000,"y":15.93},{"x":1568242980000,"y":15.92},{"x":1568243040000,"y":15.92},{"x":1568243100000,"y":15.94},{"x":1568243160000,"y":15.92},{"x":1568243220000,"y":15.92},{"x":1568243280000,"y":15.91},{"x":1568243340000,"y":15.91},{"x":1568243400000,"y":15.92},{"x":1568243460000,"y":15.92},{"x":1568243520000,"y":15.93},{"x":1568243580000,"y":15.92},{"x":1568243640000,"y":15.92},{"x":1568243700000,"y":15.91},{"x":1568243760000,"y":15.91},{"x":1568243820000,"y":15.92},{"x":1568243880000,"y":15.9},{"x":1568243940000,"y":15.87},{"x":1568244000000,"y":15.9},{"x":1568244060000,"y":15.9},{"x":1568244120000,"y":15.91},{"x":1568244180000,"y":15.9},{"x":1568244240000,"y":15.9},{"x":1568244300000,"y":15.91},{"x":1568244360000,"y":15.91},{"x":1568244420000,"y":15.92},{"x":1568244480000,"y":16.79},{"x":1568244540000,"y":27.67},{"x":1568244600000,"y":15.78},{"x":1568244660000,"y":15.78},{"x":1568244720000,"y":15.79},{"x":1568244780000,"y":15.8},{"x":1568244840000,"y":15.8},{"x":1568244900000,"y":15.81},{"x":1568244960000,"y":15.81},{"x":1568245020000,"y":15.81},{"x":1568245080000,"y":15.82},{"x":1568245140000,"y":15.81},{"x":1568245200000,"y":15.81},{"x":1568245260000,"y":15.81},{"x":1568245320000,"y":15.81},{"x":1568245380000,"y":15.83},{"x":1568245440000,"y":15.82},{"x":1568245500000,"y":15.82},{"x":1568245560000,"y":15.8},{"x":1568245620000,"y":15.79},{"x":1568245680000,"y":15.82},{"x":1568245740000,"y":15.82},{"x":1568245800000,"y":15.82},{"x":1568245860000,"y":15.82},{"x":1568245920000,"y":15.82},{"x":1568245980000,"y":15.84},{"x":1568246040000,"y":15.82},{"x":1568246100000,"y":15.83},{"x":1568246160000,"y":15.83},{"x":1568246220000,"y":15.83},{"x":1568246280000,"y":15.85},{"x":1568246340000,"y":15.84},{"x":1568246400000,"y":15.83},{"x":1568246460000,"y":15.83},{"x":1568246520000,"y":15.83},{"x":1568246580000,"y":15.85},{"x":1568246640000,"y":15.82},{"x":1568246700000,"y":15.82},{"x":1568246760000,"y":15.82},{"x":1568246820000,"y":15.82},{"x":1568246880000,"y":15.83},{"x":1568246940000,"y":15.82},{"x":1568247000000,"y":15.83},{"x":1568247060000,"y":15.83},{"x":1568247120000,"y":15.83},{"x":1568247180000,"y":15.83},{"x":1568247240000,"y":15.85},{"x":1568247300000,"y":15.81},{"x":1568247360000,"y":15.81},{"x":1568247420000,"y":15.81},{"x":1568247480000,"y":15.81},{"x":1568247540000,"y":15.83},{"x":1568247600000,"y":15.83},{"x":1568247660000,"y":15.83},{"x":1568247720000,"y":15.82},{"x":1568247780000,"y":15.8},{"x":1568247840000,"y":15.8},{"x":1568247900000,"y":15.32},{"x":1568247960000,"y":14.41},{"x":1568248020000,"y":14.41},{"x":1568248080000,"y":14.42},{"x":1568248140000,"y":14.41},{"x":1568248200000,"y":14.39},{"x":1568248260000,"y":14.39},{"x":1568248320000,"y":14.39},{"x":1568248380000,"y":14.39},{"x":1568248440000,"y":14.42},{"x":1568248500000,"y":14.42},{"x":1568248560000,"y":14.42},{"x":1568248620000,"y":14.42},{"x":1568248680000,"y":14.42},{"x":1568248740000,"y":14.43},{"x":1568248800000,"y":14.42},{"x":1568248860000,"y":14.42},{"x":1568248920000,"y":14.42},{"x":1568248980000,"y":14.42},{"x":1568249040000,"y":14.43},{"x":1568249100000,"y":14.39},{"x":1568249160000,"y":14.4},{"x":1568249220000,"y":14.4},{"x":1568249280000,"y":14.4},{"x":1568249340000,"y":14.41},{"x":1568249400000,"y":14.43},{"x":1568249460000,"y":14.43},{"x":1568249520000,"y":14.43},{"x":1568249580000,"y":14.43},{"x":1568249640000,"y":14.43},{"x":1568249700000,"y":14.39},{"x":1568249760000,"y":14.37},{"x":1568249820000,"y":14.37},{"x":1568249880000,"y":14.37},{"x":1568249940000,"y":14.37},{"x":1568250000000,"y":14.43},{"x":1568250060000,"y":14.43},{"x":1568250120000,"y":14.43},{"x":1568250180000,"y":14.43},{"x":1568250240000,"y":14.43},{"x":1568250300000,"y":14.43},{"x":1568250360000,"y":14.42},{"x":1568250420000,"y":14.42},{"x":1568250480000,"y":14.42},{"x":1568250540000,"y":14.42},{"x":1568250600000,"y":14.44},{"x":1568250660000,"y":14.43},{"x":1568250720000,"y":14.43},{"x":1568250780000,"y":14.43},{"x":1568250840000,"y":14.43},{"x":1568250900000,"y":14.45},{"x":1568250960000,"y":14.43},{"x":1568251020000,"y":14.43},{"x":1568251080000,"y":14.43},{"x":1568251140000,"y":14.43},{"x":1568251200000,"y":14.42},{"x":1568251260000,"y":14.43},{"x":1568251320000,"y":14.43},{"x":1568251380000,"y":14.43},{"x":1568251440000,"y":14.43},{"x":1568251500000,"y":14.44},{"x":1568251560000,"y":14.43},{"x":1568251620000,"y":14.43},{"x":1568251680000,"y":14.44},{"x":1568251740000,"y":14.43},{"x":1568251800000,"y":14.44},{"x":1568251860000,"y":14.42},{"x":1568251920000,"y":14.42},{"x":1568251980000,"y":14.42},{"x":1568252040000,"y":14.42},{"x":1568252100000,"y":14.43},{"x":1568252160000,"y":14.47},{"x":1568252220000,"y":14.45},{"x":1568252280000,"y":14.44},{"x":1568252340000,"y":14.43},{"x":1568252400000,"y":14.43},{"x":1568252460000,"y":14.45},{"x":1568252520000,"y":14.43},{"x":1568252580000,"y":14.42},{"x":1568252640000,"y":14.42},{"x":1568252700000,"y":14.43},{"x":1568252760000,"y":14.44},{"x":1568252820000,"y":14.43},{"x":1568252880000,"y":14.43},{"x":1568252940000,"y":14.43},{"x":1568253000000,"y":14.41},{"x":1568253060000,"y":14.42},{"x":1568253120000,"y":14.42},{"x":1568253180000,"y":14.42},{"x":1568253240000,"y":14.42},{"x":1568253300000,"y":14.4},{"x":1568253360000,"y":14.42},{"x":1568253420000,"y":14.43},{"x":1568253480000,"y":14.43},{"x":1568253540000,"y":14.43},{"x":1568253600000,"y":14.4},{"x":1568253660000,"y":14.7},{"x":1568253720000,"y":14.5},{"x":1568253780000,"y":14.49},{"x":1568253840000,"y":14.49},{"x":1568253900000,"y":14.47},{"x":1568253960000,"y":14.48},{"x":1568254020000,"y":14.44},{"x":1568254080000,"y":14.45},{"x":1568254140000,"y":14.43},{"x":1568254200000,"y":14.41},{"x":1568254260000,"y":14.41},{"x":1568254320000,"y":14.44},{"x":1568254380000,"y":14.43},{"x":1568254440000,"y":14.43},{"x":1568254500000,"y":14.43},{"x":1568254560000,"y":14.43},{"x":1568254620000,"y":14.44},{"x":1568254680000,"y":14.43},{"x":1568254740000,"y":14.43},{"x":1568254800000,"y":14.44},{"x":1568254860000,"y":14.44},{"x":1568254920000,"y":14.45},{"x":1568254980000,"y":14.44},{"x":1568255040000,"y":14.44},{"x":1568255100000,"y":14.43},{"x":1568255160000,"y":14.43},{"x":1568255220000,"y":14.45},{"x":1568255280000,"y":14.43},{"x":1568255340000,"y":14.43},{"x":1568255400000,"y":14.44},{"x":1568255460000,"y":14.45},{"x":1568255520000,"y":14.46},{"x":1568255580000,"y":14.45},{"x":1568255640000,"y":14.44},{"x":1568255700000,"y":14.44},{"x":1568255760000,"y":14.44},{"x":1568255820000,"y":14.45},{"x":1568255880000,"y":14.44},{"x":1568255940000,"y":14.44},{"x":1568256000000,"y":14.44},{"x":1568256060000,"y":14.44},{"x":1568256120000,"y":14.45},{"x":1568256180000,"y":14.45},{"x":1568256240000,"y":14.44},{"x":1568256300000,"y":14.44},{"x":1568256360000,"y":14.44},{"x":1568256420000,"y":14.44},{"x":1568256480000,"y":14.45},{"x":1568256540000,"y":14.44},{"x":1568256600000,"y":14.44},{"x":1568256660000,"y":14.45},{"x":1568256720000,"y":14.45},{"x":1568256780000,"y":14.46},{"x":1568256840000,"y":14.44},{"x":1568256900000,"y":14.44},{"x":1568256960000,"y":14.44},{"x":1568257020000,"y":14.44},{"x":1568257080000,"y":14.45},{"x":1568257140000,"y":14.44},{"x":1568257200000,"y":14.42},{"x":1568257260000,"y":14.42},{"x":1568257320000,"y":14.43},{"x":1568257380000,"y":14.44},{"x":1568257440000,"y":14.44},{"x":1568257500000,"y":14.45},{"x":1568257560000,"y":14.44},{"x":1568257620000,"y":14.44},{"x":1568257680000,"y":14.45},{"x":1568257740000,"y":14.45},{"x":1568257800000,"y":14.44},{"x":1568257860000,"y":14.44},{"x":1568257920000,"y":14.44},{"x":1568257980000,"y":14.46},{"x":1568258040000,"y":14.45},{"x":1568258100000,"y":14.42},{"x":1568258160000,"y":14.42},{"x":1568258220000,"y":14.42},{"x":1568258280000,"y":14.42},{"x":1568258340000,"y":14.46},{"x":1568258400000,"y":14.45},{"x":1568258460000,"y":14.45},{"x":1568258520000,"y":14.45},{"x":1568258580000,"y":14.45},{"x":1568258640000,"y":14.46},{"x":1568258700000,"y":14.43},{"x":1568258760000,"y":14.43},{"x":1568258820000,"y":14.43},{"x":1568258880000,"y":14.42},{"x":1568258940000,"y":14.44},{"x":1568259000000,"y":14.45},{"x":1568259060000,"y":14.45},{"x":1568259120000,"y":14.45},{"x":1568259180000,"y":14.45},{"x":1568259240000,"y":14.46},{"x":1568259300000,"y":14.45},{"x":1568259360000,"y":14.45},{"x":1568259420000,"y":14.45},{"x":1568259480000,"y":14.45},{"x":1568259540000,"y":14.46},{"x":1568259600000,"y":14.46},{"x":1568259660000,"y":14.46},{"x":1568259720000,"y":14.45},{"x":1568259780000,"y":14.44},{"x":1568259840000,"y":14.46},{"x":1568259900000,"y":14.43},{"x":1568259960000,"y":14.44},{"x":1568260020000,"y":14.44},{"x":1568260080000,"y":14.44},{"x":1568260140000,"y":14.44},{"x":1568260200000,"y":14.45},{"x":1568260260000,"y":14.44},{"x":1568260320000,"y":14.44},{"x":1568260380000,"y":14.44},{"x":1568260440000,"y":14.44},{"x":1568260500000,"y":14.46},{"x":1568260560000,"y":14.45},{"x":1568260620000,"y":14.45},{"x":1568260680000,"y":14.45},{"x":1568260740000,"y":14.45},{"x":1568260800000,"y":14.46},{"x":1568260860000,"y":14.45},{"x":1568260920000,"y":14.45},{"x":1568260980000,"y":14.45},{"x":1568261040000,"y":14.45},{"x":1568261100000,"y":14.44},{"x":1568261160000,"y":14.42},{"x":1568261220000,"y":14.42},{"x":1568261280000,"y":14.42},{"x":1568261340000,"y":14.46},{"x":1568261400000,"y":14.44},{"x":1568261460000,"y":14.42},{"x":1568261520000,"y":14.42},{"x":1568261580000,"y":14.42},{"x":1568261640000,"y":14.42},{"x":1568261700000,"y":14.45},{"x":1568261760000,"y":14.44},{"x":1568261820000,"y":14.44},{"x":1568261880000,"y":14.44},{"x":1568261940000,"y":14.44},{"x":1568262000000,"y":14.45},{"x":1568262060000,"y":14.44},{"x":1568262120000,"y":14.44},{"x":1568262180000,"y":14.44},{"x":1568262240000,"y":14.44},{"x":1568262300000,"y":14.41},{"x":1568262360000,"y":14.42},{"x":1568262420000,"y":14.42},{"x":1568262480000,"y":14.42},{"x":1568262540000,"y":14.42},{"x":1568262600000,"y":14.42},{"x":1568262660000,"y":14.46},{"x":1568262720000,"y":14.44},{"x":1568262780000,"y":14.45},{"x":1568262840000,"y":14.44},{"x":1568262900000,"y":14.45},{"x":1568262960000,"y":14.46},{"x":1568263020000,"y":14.44},{"x":1568263080000,"y":14.44},{"x":1568263140000,"y":14.44},{"x":1568263200000,"y":14.41},{"x":1568263260000,"y":14.43},{"x":1568263320000,"y":14.43},{"x":1568263380000,"y":14.43},{"x":1568263440000,"y":14.42},{"x":1568263500000,"y":14.41},{"x":1568263560000,"y":14.43},{"x":1568263620000,"y":14.44},{"x":1568263680000,"y":14.44},{"x":1568263740000,"y":14.43},{"x":1568263800000,"y":14.44},{"x":1568263860000,"y":14.45},{"x":1568263920000,"y":14.44},{"x":1568263980000,"y":14.45},{"x":1568264040000,"y":14.44},{"x":1568264100000,"y":14.44},{"x":1568264160000,"y":14.46},{"x":1568264220000,"y":14.44},{"x":1568264280000,"y":14.44},{"x":1568264340000,"y":14.44},{"x":1568264400000,"y":14.42},{"x":1568264460000,"y":14.42},{"x":1568264520000,"y":14.44},{"x":1568264580000,"y":14.43},{"x":1568264640000,"y":14.43},{"x":1568264700000,"y":14.41},{"x":1568264760000,"y":14.4},{"x":1568264820000,"y":14.43},{"x":1568264880000,"y":14.42},{"x":1568264940000,"y":14.43},{"x":1568265000000,"y":14.43},{"x":1568265060000,"y":14.43},{"x":1568265120000,"y":14.44},{"x":1568265180000,"y":14.43},{"x":1568265240000,"y":14.43},{"x":1568265300000,"y":14.42},{"x":1568265360000,"y":14.42},{"x":1568265420000,"y":14.44},{"x":1568265480000,"y":14.44},{"x":1568265540000,"y":14.44},{"x":1568265600000,"y":14.44},{"x":1568265660000,"y":14.44},{"x":1568265720000,"y":14.45},{"x":1568265780000,"y":14.44},{"x":1568265840000,"y":14.44},{"x":1568265900000,"y":14.42},{"x":1568265960000,"y":14.42},{"x":1568266020000,"y":14.45},{"x":1568266080000,"y":14.43},{"x":1568266140000,"y":14.43},{"x":1568266200000,"y":14.45},{"x":1568266260000,"y":14.45},{"x":1568266320000,"y":14.46},{"x":1568266380000,"y":14.44},{"x":1568266440000,"y":14.44},{"x":1568266500000,"y":14.43},{"x":1568266560000,"y":14.43},{"x":1568266620000,"y":14.43},{"x":1568266680000,"y":14.41},{"x":1568266740000,"y":14.45},{"x":1568266800000,"y":14.45},{"x":1568266860000,"y":14.45},{"x":1568266920000,"y":14.46},{"x":1568266980000,"y":14.44},{"x":1568267040000,"y":14.44},{"x":1568267100000,"y":14.43},{"x":1568267160000,"y":14.43},{"x":1568267220000,"y":14.43},{"x":1568267280000,"y":14.44},{"x":1568267340000,"y":14.43},{"x":1568267400000,"y":14.42},{"x":1568267460000,"y":14.42},{"x":1568267520000,"y":14.42},{"x":1568267580000,"y":14.43},{"x":1568267640000,"y":14.43},{"x":1568267700000,"y":14.42},{"x":1568267760000,"y":14.42},{"x":1568267820000,"y":14.42},{"x":1568267880000,"y":14.43},{"x":1568267940000,"y":14.42},{"x":1568268000000,"y":14.43},{"x":1568268060000,"y":14.44},{"x":1568268120000,"y":14.43},{"x":1568268180000,"y":14.46},{"x":1568268240000,"y":14.45},{"x":1568268300000,"y":14.45},{"x":1568268360000,"y":14.45},{"x":1568268420000,"y":14.45},{"x":1568268480000,"y":14.46},{"x":1568268540000,"y":14.44},{"x":1568268600000,"y":14.46},{"x":1568268660000,"y":14.46},{"x":1568268720000,"y":14.46},{"x":1568268780000,"y":14.46},{"x":1568268840000,"y":14.45},{"x":1568268900000,"y":14.45},{"x":1568268960000,"y":14.45},{"x":1568269020000,"y":14.45},{"x":1568269080000,"y":14.46},{"x":1568269140000,"y":14.45},{"x":1568269200000,"y":14.46},{"x":1568269260000,"y":14.46},{"x":1568269320000,"y":14.46},{"x":1568269380000,"y":14.48},{"x":1568269440000,"y":14.46},{"x":1568269500000,"y":14.42},{"x":1568269560000,"y":14.42},{"x":1568269620000,"y":14.42},{"x":1568269680000,"y":14.42},{"x":1568269740000,"y":14.44},{"x":1568269800000,"y":14.44},{"x":1568269860000,"y":14.44},{"x":1568269920000,"y":14.44},{"x":1568269980000,"y":14.44},{"x":1568270040000,"y":14.45},{"x":1568270100000,"y":14.45},{"x":1568270160000,"y":14.45},{"x":1568270220000,"y":14.45},{"x":1568270280000,"y":14.45},{"x":1568270340000,"y":14.48},{"x":1568270400000,"y":14.46},{"x":1568270460000,"y":14.46},{"x":1568270520000,"y":14.46},{"x":1568270580000,"y":14.46},{"x":1568270640000,"y":14.47},{"x":1568270700000,"y":14.46},{"x":1568270760000,"y":14.46},{"x":1568270820000,"y":14.45},{"x":1568270880000,"y":14.45},{"x":1568270940000,"y":14.41},{"x":1568271000000,"y":14.34},{"x":1568271060000,"y":14.34},{"x":1568271120000,"y":14.34},{"x":1568271180000,"y":14.34},{"x":1568271240000,"y":14.36},{"x":1568271300000,"y":14.35},{"x":1568271360000,"y":14.35},{"x":1568271420000,"y":14.35},{"x":1568271480000,"y":14.35},{"x":1568271540000,"y":14.37},{"x":1568271600000,"y":14.35},{"x":1568271660000,"y":14.35},{"x":1568271720000,"y":14.35},{"x":1568271780000,"y":14.35},{"x":1568271840000,"y":14.35},{"x":1568271900000,"y":14.39},{"x":1568271960000,"y":14.38},{"x":1568272020000,"y":14.38},{"x":1568272080000,"y":14.38},{"x":1568272140000,"y":14.38},{"x":1568272200000,"y":14.37},{"x":1568272260000,"y":14.36},{"x":1568272320000,"y":14.36},{"x":1568272380000,"y":14.36},{"x":1568272440000,"y":14.36},{"x":1568272500000,"y":14.38},{"x":1568272560000,"y":14.38},{"x":1568272620000,"y":14.37},{"x":1568272680000,"y":14.37},{"x":1568272740000,"y":14.37},{"x":1568272800000,"y":14.39},{"x":1568272860000,"y":14.38},{"x":1568272920000,"y":14.38},{"x":1568272980000,"y":14.38},{"x":1568273040000,"y":14.37},{"x":1568273100000,"y":14.37},{"x":1568273160000,"y":14.37},{"x":1568273220000,"y":14.37},{"x":1568273280000,"y":14.37},{"x":1568273340000,"y":14.37},{"x":1568273400000,"y":14.39},{"x":1568273460000,"y":14.38},{"x":1568273520000,"y":14.38},{"x":1568273580000,"y":14.38},{"x":1568273640000,"y":14.38},{"x":1568273700000,"y":14.39},{"x":1568273760000,"y":14.38},{"x":1568273820000,"y":14.38},{"x":1568273880000,"y":14.38},{"x":1568273940000,"y":14.37},{"x":1568274000000,"y":14.37},{"x":1568274060000,"y":14.38},{"x":1568274120000,"y":14.38},{"x":1568274180000,"y":14.37},{"x":1568274240000,"y":14.37},{"x":1568274300000,"y":14.39},{"x":1568274360000,"y":14.38},{"x":1568274420000,"y":14.38},{"x":1568274480000,"y":14.38},{"x":1568274540000,"y":14.38},{"x":1568274600000,"y":14.35},{"x":1568274660000,"y":14.39},{"x":1568274720000,"y":14.39},{"x":1568274780000,"y":14.39},{"x":1568274840000,"y":14.38},{"x":1568274900000,"y":14.39},{"x":1568274960000,"y":14.4},{"x":1568275020000,"y":14.39},{"x":1568275080000,"y":14.39},{"x":1568275140000,"y":14.39},{"x":1568275200000,"y":14.39},{"x":1568275260000,"y":14.4},{"x":1568275320000,"y":14.39},{"x":1568275380000,"y":14.39},{"x":1568275440000,"y":14.39},{"x":1568275500000,"y":14.39},{"x":1568275560000,"y":14.76},{"x":1568275620000,"y":14.45},{"x":1568275680000,"y":14.45},{"x":1568275740000,"y":14.45},{"x":1568275800000,"y":14.45},{"x":1568275860000,"y":14.45},{"x":1568275920000,"y":14.4},{"x":1568275980000,"y":14.39},{"x":1568276040000,"y":14.39},{"x":1568276100000,"y":14.39},{"x":1568276160000,"y":14.41},{"x":1568276220000,"y":14.39},{"x":1568276280000,"y":14.39},{"x":1568276340000,"y":14.39},{"x":1568276400000,"y":14.36},{"x":1568276460000,"y":14.37},{"x":1568276520000,"y":14.39},{"x":1568276580000,"y":14.39},{"x":1568276640000,"y":14.39},{"x":1568276700000,"y":14.37},{"x":1568276760000,"y":14.38},{"x":1568276820000,"y":14.37},{"x":1568276880000,"y":14.37},{"x":1568276940000,"y":14.37},{"x":1568277000000,"y":14.37},{"x":1568277060000,"y":14.37},{"x":1568277120000,"y":14.4},{"x":1568277180000,"y":14.28},{"x":1568277240000,"y":14.23},{"x":1568277300000,"y":14.24},{"x":1568277360000,"y":14.24},{"x":1568277420000,"y":14.26},{"x":1568277480000,"y":14.24},{"x":1568277540000,"y":14.24},{"x":1568277600000,"y":14.24},{"x":1568277660000,"y":14.24},{"x":1568277720000,"y":14.25},{"x":1568277780000,"y":14.24},{"x":1568277840000,"y":14.24},{"x":1568277900000,"y":14.24},{"x":1568277960000,"y":14.24},{"x":1568278020000,"y":14.25},{"x":1568278080000,"y":14.24},{"x":1568278140000,"y":14.24},{"x":1568278200000,"y":14.24},{"x":1568278260000,"y":14.24},{"x":1568278320000,"y":14.25},{"x":1568278380000,"y":14.18},{"x":1568278440000,"y":14.15},{"x":1568278500000,"y":14.15},{"x":1568278560000,"y":14.15},{"x":1568278620000,"y":14.16},{"x":1568278680000,"y":14.16},{"x":1568278740000,"y":14.16},{"x":1568278800000,"y":14.16},{"x":1568278860000,"y":14.16},{"x":1568278920000,"y":14.17},{"x":1568278980000,"y":14.16},{"x":1568279040000,"y":14.16},{"x":1568279100000,"y":14.15},{"x":1568279160000,"y":14.15},{"x":1568279220000,"y":14.16},{"x":1568279280000,"y":14.16},{"x":1568279340000,"y":14.17},{"x":1568279400000,"y":14.17},{"x":1568279460000,"y":14.17},{"x":1568279520000,"y":14.17},{"x":1568279580000,"y":14.19},{"x":1568279640000,"y":14.17},{"x":1568279700000,"y":14.17},{"x":1568279760000,"y":14.17},{"x":1568279820000,"y":14.17},{"x":1568279880000,"y":14.19},{"x":1568279940000,"y":14.18},{"x":1568280000000,"y":14.18},{"x":1568280060000,"y":14.18},{"x":1568280120000,"y":14.18},{"x":1568280180000,"y":14.19},{"x":1568280240000,"y":14.18},{"x":1568280300000,"y":14.14},{"x":1568280360000,"y":14.14},{"x":1568280420000,"y":14.14},{"x":1568280480000,"y":14.17},{"x":1568280540000,"y":14.18},{"x":1568280600000,"y":14.18},{"x":1568280660000,"y":14.18},{"x":1568280720000,"y":14.18},{"x":1568280780000,"y":14.19},{"x":1568280840000,"y":14.17},{"x":1568280900000,"y":14.17},{"x":1568280960000,"y":14.17},{"x":1568281020000,"y":14.17},{"x":1568281080000,"y":14.19},{"x":1568281140000,"y":14.17},{"x":1568281200000,"y":14.18},{"x":1568281260000,"y":14.18},{"x":1568281320000,"y":14.17},{"x":1568281380000,"y":14.17},{"x":1568281440000,"y":14.16},{"x":1568281500000,"y":14.15},{"x":1568281560000,"y":14.13},{"x":1568281620000,"y":14.12},{"x":1568281680000,"y":14.13},{"x":1568281740000,"y":14.16},{"x":1568281800000,"y":14.13},{"x":1568281860000,"y":14.13},{"x":1568281920000,"y":14.13},{"x":1568281980000,"y":14.13},{"x":1568282040000,"y":14.17},{"x":1568282100000,"y":14.16},{"x":1568282160000,"y":14.16},{"x":1568282220000,"y":14.16},{"x":1568282280000,"y":14.16},{"x":1568282340000,"y":14.17},{"x":1568282400000,"y":14.14},{"x":1568282460000,"y":14.14},{"x":1568282520000,"y":14.14},{"x":1568282580000,"y":14.14},{"x":1568282640000,"y":14.16},{"x":1568282700000,"y":14.13},{"x":1568282760000,"y":14.13},{"x":1568282820000,"y":14.13},{"x":1568282880000,"y":14.13},{"x":1568282940000,"y":14.16},{"x":1568283000000,"y":14.15},{"x":1568283060000,"y":14.15},{"x":1568283120000,"y":14.16},{"x":1568283180000,"y":14.16},{"x":1568283240000,"y":14.16},{"x":1568283300000,"y":14.11},{"x":1568283360000,"y":14.11},{"x":1568283420000,"y":14.12},{"x":1568283480000,"y":14.12},{"x":1568283540000,"y":14.14},{"x":1568283600000,"y":14.13},{"x":1568283660000,"y":14.13},{"x":1568283720000,"y":14.13},{"x":1568283780000,"y":14.13},{"x":1568283840000,"y":14.13},{"x":1568283900000,"y":14.16},{"x":1568283960000,"y":14.15},{"x":1568284020000,"y":14.15},{"x":1568284080000,"y":14.15},{"x":1568284140000,"y":14.15},{"x":1568284200000,"y":14.16},{"x":1568284260000,"y":14.15},{"x":1568284320000,"y":14.15},{"x":1568284380000,"y":14.15},{"x":1568284440000,"y":14.15},{"x":1568284500000,"y":14.17},{"x":1568284560000,"y":14.16},{"x":1568284620000,"y":14.16},{"x":1568284680000,"y":14.16},{"x":1568284740000,"y":14.17},{"x":1568284800000,"y":14.17},{"x":1568284860000,"y":14.16},{"x":1568284920000,"y":14.16},{"x":1568284980000,"y":14.16},{"x":1568285040000,"y":14.16},{"x":1568285100000,"y":14.17},{"x":1568285160000,"y":14.15},{"x":1568285220000,"y":14.15},{"x":1568285280000,"y":14.15},{"x":1568285340000,"y":14.15},{"x":1568285400000,"y":14.15},{"x":1568285460000,"y":14.14},{"x":1568285520000,"y":14.14},{"x":1568285580000,"y":14.14},{"x":1568285640000,"y":14.14},{"x":1568285700000,"y":14.15},{"x":1568285760000,"y":14.16},{"x":1568285820000,"y":14.16},{"x":1568285880000,"y":14.16},{"x":1568285940000,"y":14.16},{"x":1568286000000,"y":14.13},{"x":1568286060000,"y":14.16},{"x":1568286120000,"y":14.15},{"x":1568286180000,"y":14.15},{"x":1568286240000,"y":14.15},{"x":1568286300000,"y":14.15},{"x":1568286360000,"y":14.15},{"x":1568286420000,"y":14.14},{"x":1568286480000,"y":14.14},{"x":1568286540000,"y":14.17},{"x":1568286600000,"y":14.17},{"x":1568286660000,"y":14.18},{"x":1568286720000,"y":14.17},{"x":1568286780000,"y":14.17},{"x":1568286840000,"y":14.17},{"x":1568286900000,"y":14.16},{"x":1568286960000,"y":14.18},{"x":1568287020000,"y":14.46},{"x":1568287080000,"y":14.45},{"x":1568287140000,"y":14.25},{"x":1568287200000,"y":14.25},{"x":1568287260000,"y":14.26},{"x":1568287320000,"y":14.24},{"x":1568287380000,"y":14.19},{"x":1568287440000,"y":14.18},{"x":1568287500000,"y":14.25},{"x":1568287560000,"y":14.2},{"x":1568287620000,"y":14.2},{"x":1568287680000,"y":14.19},{"x":1568287740000,"y":14.19},{"x":1568287800000,"y":14.19},{"x":1568287860000,"y":14.2},{"x":1568287920000,"y":14.19},{"x":1568287980000,"y":14.19},{"x":1568288040000,"y":14.19},{"x":1568288100000,"y":14.19},{"x":1568288160000,"y":14.2},{"x":1568288220000,"y":14.19},{"x":1568288280000,"y":14.19},{"x":1568288340000,"y":14.19},{"x":1568288400000,"y":14.19},{"x":1568288460000,"y":14.19},{"x":1568288520000,"y":14.19},{"x":1568288580000,"y":14.18},{"x":1568288640000,"y":14.18},{"x":1568288700000,"y":14.2},{"x":1568288760000,"y":14.22},{"x":1568288820000,"y":14.26},{"x":1568288880000,"y":14.25},{"x":1568288940000,"y":14.25},{"x":1568289000000,"y":14.23},{"x":1568289060000,"y":14.23},{"x":1568289120000,"y":14.26},{"x":1568289180000,"y":14.26},{"x":1568289240000,"y":14.25},{"x":1568289300000,"y":14.23},{"x":1568289360000,"y":14.23},{"x":1568289420000,"y":14.26},{"x":1568289480000,"y":14.25},{"x":1568289540000,"y":14.25},{"x":1568289600000,"y":14.25},{"x":1568289660000,"y":14.25},{"x":1568289720000,"y":14.27},{"x":1568289780000,"y":14.26},{"x":1568289840000,"y":14.26},{"x":1568289900000,"y":14.26},{"x":1568289960000,"y":14.26},{"x":1568290020000,"y":14.27},{"x":1568290080000,"y":14.26},{"x":1568290140000,"y":14.24},{"x":1568290200000,"y":14.24},{"x":1568290260000,"y":14.23},{"x":1568290320000,"y":14.23},{"x":1568290380000,"y":14.22},{"x":1568290440000,"y":14.22},{"x":1568290500000,"y":14.21},{"x":1568290560000,"y":14.21},{"x":1568290620000,"y":14.23},{"x":1568290680000,"y":14.24},{"x":1568290740000,"y":14.24},{"x":1568290800000,"y":14.23},{"x":1568290860000,"y":14.23},{"x":1568290920000,"y":14.23},{"x":1568290980000,"y":14.23},{"x":1568291040000,"y":14.22},{"x":1568291100000,"y":14.21},{"x":1568291160000,"y":14.21},{"x":1568291220000,"y":14.21},{"x":1568291280000,"y":14.21},{"x":1568291340000,"y":14.2},{"x":1568291400000,"y":14.22},{"x":1568291460000,"y":14.22},{"x":1568291520000,"y":14.22},{"x":1568291580000,"y":14.24},{"x":1568291640000,"y":14.22},{"x":1568291700000,"y":14.24},{"x":1568291760000,"y":14.24},{"x":1568291820000,"y":14.24},{"x":1568291880000,"y":14.26},{"x":1568291940000,"y":14.25},{"x":1568292000000,"y":14.24},{"x":1568292060000,"y":14.24},{"x":1568292120000,"y":14.24},{"x":1568292180000,"y":14.24},{"x":1568292240000,"y":14.24},{"x":1568292300000,"y":14.24},{"x":1568292360000,"y":14.24},{"x":1568292420000,"y":14.24},{"x":1568292480000,"y":14.25},{"x":1568292540000,"y":14.25},{"x":1568292600000,"y":14.22},{"x":1568292660000,"y":14.22},{"x":1568292720000,"y":14.22},{"x":1568292780000,"y":14.24},{"x":1568292840000,"y":14.24},{"x":1568292900000,"y":14.25},{"x":1568292960000,"y":14.25},{"x":1568293020000,"y":14.25},{"x":1568293080000,"y":14.26},{"x":1568293140000,"y":14.25},{"x":1568293200000,"y":14.23},{"x":1568293260000,"y":14.23},{"x":1568293320000,"y":14.23},{"x":1568293380000,"y":14.23},{"x":1568293440000,"y":14.25},{"x":1568293500000,"y":14.2},{"x":1568293560000,"y":14.2},{"x":1568293620000,"y":14.2},{"x":1568293680000,"y":14.2},{"x":1568293740000,"y":14.25},{"x":1568293800000,"y":14.23},{"x":1568293860000,"y":14.22},{"x":1568293920000,"y":14.22},{"x":1568293980000,"y":14.22},{"x":1568294040000,"y":14.26},{"x":1568294100000,"y":14.26},{"x":1568294160000,"y":14.26},{"x":1568294220000,"y":14.25},{"x":1568294280000,"y":14.25},{"x":1568294340000,"y":14.26},{"x":1568294400000,"y":14.26},{"x":1568294460000,"y":14.26},{"x":1568294520000,"y":14.26},{"x":1568294580000,"y":14.25},{"x":1568294640000,"y":14.26},{"x":1568294700000,"y":14.25},{"x":1568294760000,"y":14.25},{"x":1568294820000,"y":14.25},{"x":1568294880000,"y":14.25},{"x":1568294940000,"y":14.26},{"x":1568295000000,"y":14.26},{"x":1568295060000,"y":14.26},{"x":1568295120000,"y":14.26},{"x":1568295180000,"y":14.26},{"x":1568295240000,"y":14.28},{"x":1568295300000,"y":14.26},{"x":1568295360000,"y":14.26},{"x":1568295420000,"y":14.26},{"x":1568295480000,"y":14.26},{"x":1568295540000,"y":14.25},{"x":1568295600000,"y":14.24},{"x":1568295660000,"y":14.23},{"x":1568295720000,"y":14.23},{"x":1568295780000,"y":14.23},{"x":1568295840000,"y":14.23},{"x":1568295900000,"y":14.27},{"x":1568295960000,"y":14.26},{"x":1568296020000,"y":14.26},{"x":1568296080000,"y":14.26},{"x":1568296140000,"y":14.26},{"x":1568296200000,"y":14.27},{"x":1568296260000,"y":14.26},{"x":1568296320000,"y":14.26},{"x":1568296380000,"y":14.26},{"x":1568296440000,"y":14.26},{"x":1568296500000,"y":14.28},{"x":1568296560000,"y":14.26},{"x":1568296620000,"y":14.26},{"x":1568296680000,"y":14.26},{"x":1568296740000,"y":14.26},{"x":1568296800000,"y":14.27},{"x":1568296860000,"y":14.25},{"x":1568296920000,"y":14.25},{"x":1568296980000,"y":14.25},{"x":1568297040000,"y":14.25},{"x":1568297100000,"y":14.27},{"x":1568297160000,"y":14.26},{"x":1568297220000,"y":14.26},{"x":1568297280000,"y":14.26},{"x":1568297340000,"y":14.26},{"x":1568297400000,"y":14.53},{"x":1568297460000,"y":14.32},{"x":1568297520000,"y":14.32},{"x":1568297580000,"y":14.32},{"x":1568297640000,"y":14.32},{"x":1568297700000,"y":14.3},{"x":1568297760000,"y":14.26},{"x":1568297820000,"y":14.26},{"x":1568297880000,"y":14.27},{"x":1568297940000,"y":14.27},{"x":1568298000000,"y":14.26},{"x":1568298060000,"y":14.25},{"x":1568298120000,"y":14.24},{"x":1568298180000,"y":14.24},{"x":1568298240000,"y":14.24},{"x":1568298300000,"y":14.26},{"x":1568298360000,"y":14.27},{"x":1568298420000,"y":14.26},{"x":1568298480000,"y":14.26},{"x":1568298540000,"y":14.26},{"x":1568298600000,"y":14.22},{"x":1568298660000,"y":14.27},{"x":1568298720000,"y":14.26},{"x":1568298780000,"y":14.26},{"x":1568298840000,"y":14.26},{"x":1568298900000,"y":14.24},{"x":1568298960000,"y":14.27},{"x":1568299020000,"y":14.27},{"x":1568299080000,"y":14.27},{"x":1568299140000,"y":14.25},{"x":1568299200000,"y":14.23},{"x":1568299260000,"y":14.26},{"x":1568299320000,"y":14.23},{"x":1568299380000,"y":14.23},{"x":1568299440000,"y":14.22},{"x":1568299500000,"y":14.24},{"x":1568299560000,"y":14.25},{"x":1568299620000,"y":14.24},{"x":1568299680000,"y":14.24},{"x":1568299740000,"y":14.24},{"x":1568299800000,"y":14.24},{"x":1568299860000,"y":14.26},{"x":1568299920000,"y":14.24},{"x":1568299980000,"y":14.24},{"x":1568300040000,"y":14.24},{"x":1568300100000,"y":14.21},{"x":1568300160000,"y":14.23},{"x":1568300220000,"y":14.25},{"x":1568300280000,"y":14.25},{"x":1568300340000,"y":14.25},{"x":1568300400000,"y":14.24},{"x":1568300460000,"y":14.25},{"x":1568300520000,"y":14.25},{"x":1568300580000,"y":14.25},{"x":1568300640000,"y":14.25},{"x":1568300700000,"y":14.22},{"x":1568300760000,"y":14.22},{"x":1568300820000,"y":14.25},{"x":1568300880000,"y":14.23},{"x":1568300940000,"y":14.24},{"x":1568301000000,"y":14.24},{"x":1568301060000,"y":14.25},{"x":1568301120000,"y":14.26},{"x":1568301180000,"y":14.25},{"x":1568301240000,"y":14.25},{"x":1568301300000,"y":14.25},{"x":1568301360000,"y":14.25},{"x":1568301420000,"y":14.26},{"x":1568301480000,"y":14.24},{"x":1568301540000,"y":14.24},{"x":1568301600000,"y":14.24},{"x":1568301660000,"y":14.24},{"x":1568301720000,"y":14.25},{"x":1568301780000,"y":14.24},{"x":1568301840000,"y":14.25},{"x":1568301900000,"y":14.25},{"x":1568301960000,"y":14.25},{"x":1568302020000,"y":14.27},{"x":1568302080000,"y":14.24},{"x":1568302140000,"y":14.24},{"x":1568302200000,"y":14.24},{"x":1568302260000,"y":14.24},{"x":1568302320000,"y":14.26},{"x":1568302380000,"y":14.24},{"x":1568302440000,"y":14.24},{"x":1568302500000,"y":14.22},{"x":1568302560000,"y":14.23},{"x":1568302620000,"y":14.24},{"x":1568302680000,"y":14.23},{"x":1568302740000,"y":14.25},{"x":1568302800000,"y":14.25},{"x":1568302860000,"y":14.25},{"x":1568302920000,"y":14.25},{"x":1568302980000,"y":14.24},{"x":1568303040000,"y":14.23},{"x":1568303100000,"y":14.23},{"x":1568303160000,"y":14.23},{"x":1568303220000,"y":14.23},{"x":1568303280000,"y":14.25},{"x":1568303340000,"y":14.24},{"x":1568303400000,"y":14.24},{"x":1568303460000,"y":14.24},{"x":1568303520000,"y":14.24},{"x":1568303580000,"y":14.26},{"x":1568303640000,"y":14.23},{"x":1568303700000,"y":14.25},{"x":1568303760000,"y":14.25},{"x":1568303820000,"y":14.25},{"x":1568303880000,"y":14.26},{"x":1568303940000,"y":14.25},{"x":1568304000000,"y":14.25},{"x":1568304060000,"y":14.25},{"x":1568304120000,"y":14.25},{"x":1568304180000,"y":14.25},{"x":1568304240000,"y":14.24},{"x":1568304300000,"y":14.5},{"x":1568304360000,"y":14.83},{"x":1568304420000,"y":14.42},{"x":1568304480000,"y":14.44},{"x":1568304540000,"y":14.45},{"x":1568304600000,"y":14.46},{"x":1568304660000,"y":14.39},{"x":1568304720000,"y":14.39},{"x":1568304780000,"y":14.4},{"x":1568304840000,"y":14.38},{"x":1568304900000,"y":14.37},{"x":1568304960000,"y":14.37},{"x":1568305020000,"y":14.37},{"x":1568305080000,"y":14.39},{"x":1568305140000,"y":14.38},{"x":1568305200000,"y":14.36},{"x":1568305260000,"y":14.36},{"x":1568305320000,"y":14.36},{"x":1568305380000,"y":14.36},{"x":1568305440000,"y":14.39},{"x":1568305500000,"y":14.36},{"x":1568305560000,"y":14.36},{"x":1568305620000,"y":14.36},{"x":1568305680000,"y":14.36},{"x":1568305740000,"y":14.38},{"x":1568305800000,"y":14.39},{"x":1568305860000,"y":14.4},{"x":1568305920000,"y":14.4},{"x":1568305980000,"y":14.4},{"x":1568306040000,"y":14.4},{"x":1568306100000,"y":14.39},{"x":1568306160000,"y":14.39},{"x":1568306220000,"y":14.39},{"x":1568306280000,"y":14.39},{"x":1568306340000,"y":14.4},{"x":1568306400000,"y":14.4},{"x":1568306460000,"y":14.4},{"x":1568306520000,"y":14.4},{"x":1568306580000,"y":14.38},{"x":1568306640000,"y":14.39},{"x":1568306700000,"y":14.39},{"x":1568306760000,"y":14.39},{"x":1568306820000,"y":14.39},{"x":1568306880000,"y":14.4},{"x":1568306940000,"y":14.41},{"x":1568307000000,"y":14.38},{"x":1568307060000,"y":14.37},{"x":1568307120000,"y":14.37},{"x":1568307180000,"y":14.37},{"x":1568307240000,"y":14.38},{"x":1568307300000,"y":14.4},{"x":1568307360000,"y":14.39},{"x":1568307420000,"y":14.39},{"x":1568307480000,"y":14.4},{"x":1568307540000,"y":14.4},{"x":1568307600000,"y":14.41},{"x":1568307660000,"y":14.4},{"x":1568307720000,"y":14.4},{"x":1568307780000,"y":14.39},{"x":1568307840000,"y":14.39},{"x":1568307900000,"y":14.4},{"x":1568307960000,"y":14.39},{"x":1568308020000,"y":14.39},{"x":1568308080000,"y":14.39},{"x":1568308140000,"y":14.4},{"x":1568308200000,"y":14.41},{"x":1568308260000,"y":14.39},{"x":1568308320000,"y":14.37},{"x":1568308380000,"y":14.37},{"x":1568308440000,"y":14.37},{"x":1568308500000,"y":14.36},{"x":1568308560000,"y":14.36},{"x":1568308620000,"y":14.36},{"x":1568308680000,"y":14.36},{"x":1568308740000,"y":14.36},{"x":1568308800000,"y":14.38},{"x":1568308860000,"y":14.38},{"x":1568308920000,"y":14.37},{"x":1568308980000,"y":14.37},{"x":1568309040000,"y":14.37},{"x":1568309100000,"y":14.41},{"x":1568309160000,"y":14.47},{"x":1568309220000,"y":14.46},{"x":1568309280000,"y":14.45},{"x":1568309340000,"y":14.45},{"x":1568309400000,"y":14.43},{"x":1568309460000,"y":14.44},{"x":1568309520000,"y":14.43},{"x":1568309580000,"y":14.43},{"x":1568309640000,"y":14.43},{"x":1568309700000,"y":14.43},{"x":1568309760000,"y":14.46},{"x":1568309820000,"y":14.46},{"x":1568309880000,"y":14.46},{"x":1568309940000,"y":14.46},{"x":1568310000000,"y":14.46},{"x":1568310060000,"y":14.47},{"x":1568310120000,"y":14.49},{"x":1568310180000,"y":14.5},{"x":1568310240000,"y":14.52},{"x":1568310300000,"y":14.59},{"x":1568310360000,"y":14.61},{"x":1568310420000,"y":14.61},{"x":1568310480000,"y":14.61},{"x":1568310540000,"y":14.6},{"x":1568310600000,"y":14.6},{"x":1568310660000,"y":14.61},{"x":1568310720000,"y":14.61},{"x":1568310780000,"y":14.61},{"x":1568310840000,"y":14.61},{"x":1568310900000,"y":14.61},{"x":1568310960000,"y":14.61},{"x":1568311020000,"y":14.6},{"x":1568311080000,"y":14.61},{"x":1568311140000,"y":14.61},{"x":1568311200000,"y":14.61},{"x":1568311260000,"y":14.62},{"x":1568311320000,"y":14.61},{"x":1568311380000,"y":14.61},{"x":1568311440000,"y":14.61},{"x":1568311500000,"y":14.61},{"x":1568311560000,"y":14.61},{"x":1568311620000,"y":14.63},{"x":1568311680000,"y":14.61},{"x":1568311740000,"y":14.61},{"x":1568311800000,"y":14.66},{"x":1568311860000,"y":14.69},{"x":1568311920000,"y":14.72},{"x":1568311980000,"y":14.72},{"x":1568312040000,"y":14.72},{"x":1568312100000,"y":14.74},{"x":1568312160000,"y":14.74},{"x":1568312220000,"y":14.75},{"x":1568312280000,"y":14.73},{"x":1568312340000,"y":14.73},{"x":1568312400000,"y":14.74},{"x":1568312460000,"y":14.74},{"x":1568312520000,"y":14.75},{"x":1568312580000,"y":14.74},{"x":1568312640000,"y":14.74},{"x":1568312700000,"y":14.74},{"x":1568312760000,"y":14.74},{"x":1568312820000,"y":14.76},{"x":1568312880000,"y":14.74},{"x":1568312940000,"y":14.74},{"x":1568313000000,"y":14.75},{"x":1568313060000,"y":14.75},{"x":1568313120000,"y":14.76},{"x":1568313180000,"y":14.74},{"x":1568313240000,"y":14.74},{"x":1568313300000,"y":14.72},{"x":1568313360000,"y":14.72},{"x":1568313420000,"y":14.73},{"x":1568313480000,"y":14.75},{"x":1568313540000,"y":14.75},{"x":1568313600000,"y":15.13},{"x":1568313660000,"y":18.89},{"x":1568313720000,"y":28.78},{"x":1568313780000,"y":21.88},{"x":1568313840000,"y":29.11},{"x":1568313900000,"y":18.08},{"x":1568313960000,"y":16.13},{"x":1568314020000,"y":16.13},{"x":1568314080000,"y":16.15},{"x":1568314140000,"y":16.14},{"x":1568314200000,"y":16.12},{"x":1568314260000,"y":16.12},{"x":1568314320000,"y":16.12},{"x":1568314380000,"y":16.15},{"x":1568314440000,"y":16.13},{"x":1568314500000,"y":16.16},{"x":1568314560000,"y":16.16},{"x":1568314620000,"y":16.16},{"x":1568314680000,"y":16.18},{"x":1568314740000,"y":16.18},{"x":1568314800000,"y":16.2},{"x":1568314860000,"y":16.19},{"x":1568314920000,"y":24.78},{"x":1568314980000,"y":27.84},{"x":1568315040000,"y":16.2},{"x":1568315100000,"y":16.21},{"x":1568315160000,"y":16.21},{"x":1568315220000,"y":16.21},{"x":1568315280000,"y":16.23},{"x":1568315340000,"y":16.23},{"x":1568315400000,"y":16.19},{"x":1568315460000,"y":16.19},{"x":1568315520000,"y":16.2},{"x":1568315580000,"y":16.22},{"x":1568315640000,"y":16.22},{"x":1568315700000,"y":16.21},{"x":1568315760000,"y":16.22},{"x":1568315820000,"y":16.21},{"x":1568315880000,"y":16.23},{"x":1568315940000,"y":16.25},{"x":1568316000000,"y":16.24},{"x":1568316060000,"y":16.22},{"x":1568316120000,"y":16.23},{"x":1568316180000,"y":16.23},{"x":1568316240000,"y":16.22},{"x":1568316300000,"y":16.25},{"x":1568316360000,"y":16.25},{"x":1568316420000,"y":16.25},{"x":1568316480000,"y":16.25},{"x":1568316540000,"y":16.26},{"x":1568316600000,"y":16.25},{"x":1568316660000,"y":16.25},{"x":1568316720000,"y":16.25},{"x":1568316780000,"y":16.25},{"x":1568316840000,"y":16.27},{"x":1568316900000,"y":16.22},{"x":1568316960000,"y":16.22},{"x":1568317020000,"y":16.22},{"x":1568317080000,"y":16.2},{"x":1568317140000,"y":16.25},{"x":1568317200000,"y":16.24},{"x":1568317260000,"y":16.23},{"x":1568317320000,"y":16.21},{"x":1568317380000,"y":16.21},{"x":1568317440000,"y":16.22},{"x":1568317500000,"y":16.23},{"x":1568317560000,"y":16.23},{"x":1568317620000,"y":16.23},{"x":1568317680000,"y":16.23},{"x":1568317740000,"y":16.24},{"x":1568317800000,"y":16.21},{"x":1568317860000,"y":16.22},{"x":1568317920000,"y":16.21},{"x":1568317980000,"y":16.21},{"x":1568318040000,"y":16.23},{"x":1568318100000,"y":15.48},{"x":1568318160000,"y":14.97},{"x":1568318220000,"y":14.97},{"x":1568318280000,"y":14.97},{"x":1568318340000,"y":14.99},{"x":1568318400000,"y":15},{"x":1568318460000,"y":15},{"x":1568318520000,"y":15},{"x":1568318580000,"y":15},{"x":1568318640000,"y":15},{"x":1568318700000,"y":19.22},{"x":1568318760000,"y":28.92},{"x":1568318820000,"y":17.15},{"x":1568318880000,"y":16.07},{"x":1568318940000,"y":16.1},{"x":1568319000000,"y":16.12},{"x":1568319060000,"y":16.11},{"x":1568319120000,"y":16.11},{"x":1568319180000,"y":16.11},{"x":1568319240000,"y":16.11},{"x":1568319300000,"y":16.46},{"x":1568319360000,"y":16.19},{"x":1568319420000,"y":16.2},{"x":1568319480000,"y":16.19},{"x":1568319540000,"y":16.19},{"x":1568319600000,"y":16.17},{"x":1568319660000,"y":16.13},{"x":1568319720000,"y":16.13},{"x":1568319780000,"y":16.13},{"x":1568319840000,"y":16.11},{"x":1568319900000,"y":16.14},{"x":1568319960000,"y":16.13},{"x":1568320020000,"y":16.13},{"x":1568320080000,"y":16.13},{"x":1568320140000,"y":16.13},{"x":1568320200000,"y":16.14},{"x":1568320260000,"y":16.15},{"x":1568320320000,"y":16.15},{"x":1568320380000,"y":16.15},{"x":1568320440000,"y":16.15},{"x":1568320500000,"y":16.17},{"x":1568320560000,"y":16.15},{"x":1568320620000,"y":16.16},{"x":1568320680000,"y":16.16},{"x":1568320740000,"y":16.16},{"x":1568320800000,"y":16.14},{"x":1568320860000,"y":16.15},{"x":1568320920000,"y":16.13},{"x":1568320980000,"y":16.13},{"x":1568321040000,"y":16.13},{"x":1568321100000,"y":16.11},{"x":1568321160000,"y":16.14},{"x":1568321220000,"y":16.13},{"x":1568321280000,"y":16.13},{"x":1568321340000,"y":16.12},{"x":1568321400000,"y":16.14},{"x":1568321460000,"y":16.16},{"x":1568321520000,"y":16.15},{"x":1568321580000,"y":16.15},{"x":1568321640000,"y":16.15},{"x":1568321700000,"y":16.13},{"x":1568321760000,"y":16.16},{"x":1568321820000,"y":16.15},{"x":1568321880000,"y":16.15},{"x":1568321940000,"y":16.14},{"x":1568322000000,"y":16.12},{"x":1568322060000,"y":16.14},{"x":1568322120000,"y":16.15},{"x":1568322180000,"y":16.15},{"x":1568322240000,"y":16.15},{"x":1568322300000,"y":16.15},{"x":1568322360000,"y":16.14},{"x":1568322420000,"y":16.12},{"x":1568322480000,"y":16.12},{"x":1568322540000,"y":16.15},{"x":1568322600000,"y":16.15},{"x":1568322660000,"y":16.17},{"x":1568322720000,"y":16.15},{"x":1568322780000,"y":16.15},{"x":1568322840000,"y":16.15},{"x":1568322900000,"y":16.17},{"x":1568322960000,"y":16.18},{"x":1568323020000,"y":16.16},{"x":1568323080000,"y":16.16},{"x":1568323140000,"y":16.14},{"x":1568323200000,"y":16.11},{"x":1568323260000,"y":16.12},{"x":1568323320000,"y":16.13},{"x":1568323380000,"y":16.13},{"x":1568323440000,"y":16.13},{"x":1568323500000,"y":16.13},{"x":1568323560000,"y":16.13},{"x":1568323620000,"y":16.17},{"x":1568323680000,"y":16.16},{"x":1568323740000,"y":27.38},{"x":1568323800000,"y":28.52},{"x":1568323860000,"y":23.52},{"x":1568323920000,"y":16.17},{"x":1568323980000,"y":16.16},{"x":1568324040000,"y":16.29},{"x":1568324100000,"y":16.24},{"x":1568324160000,"y":16.25},{"x":1568324220000,"y":16.26},{"x":1568324280000,"y":16.25},{"x":1568324340000,"y":16.24},{"x":1568324400000,"y":16.17},{"x":1568324460000,"y":16.17},{"x":1568324520000,"y":16.2},{"x":1568324580000,"y":16.2},{"x":1568324640000,"y":16.2},{"x":1568324700000,"y":16.2},{"x":1568324760000,"y":16.2},{"x":1568324820000,"y":16.21},{"x":1568324880000,"y":16.19},{"x":1568324940000,"y":16.18},{"x":1568325000000,"y":16.18},{"x":1568325060000,"y":16.18},{"x":1568325120000,"y":16.2},{"x":1568325180000,"y":16.17},{"x":1568325240000,"y":16.17},{"x":1568325300000,"y":16.21},{"x":1568325360000,"y":16.21},{"x":1568325420000,"y":16.22},{"x":1568325480000,"y":16.19},{"x":1568325540000,"y":16.19},{"x":1568325600000,"y":16.18},{"x":1568325660000,"y":16.18},{"x":1568325720000,"y":16.18},{"x":1568325780000,"y":16.22},{"x":1568325840000,"y":16.22},{"x":1568325900000,"y":16.17},{"x":1568325960000,"y":16.15},{"x":1568326020000,"y":16.15},{"x":1568326080000,"y":16.2},{"x":1568326140000,"y":16.19},{"x":1568326200000,"y":16.15},{"x":1568326260000,"y":16.15},{"x":1568326320000,"y":16.15},{"x":1568326380000,"y":16.19},{"x":1568326440000,"y":16.18},{"x":1568326500000,"y":16.18},{"x":1568326560000,"y":16.18},{"x":1568326620000,"y":22.92},{"x":1568326680000,"y":25.63},{"x":1568326740000,"y":16.11},{"x":1568326800000,"y":16.12},{"x":1568326860000,"y":26.46},{"x":1568326920000,"y":23.69},{"x":1568326980000,"y":16.12},{"x":1568327040000,"y":16.13},{"x":1568327100000,"y":18.66},{"x":1568327160000,"y":29.93},{"x":1568327220000,"y":29.3},{"x":1568327280000,"y":25.52},{"x":1568327340000,"y":16.39},{"x":1568327400000,"y":29.99},{"x":1568327460000,"y":24.79},{"x":1568327520000,"y":29.83},{"x":1568327580000,"y":22.56},{"x":1568327640000,"y":26.05},{"x":1568327700000,"y":24.02},{"x":1568327760000,"y":22.49},{"x":1568327820000,"y":27.66},{"x":1568327880000,"y":28.57},{"x":1568327940000,"y":30.17},{"x":1568328000000,"y":29.22},{"x":1568328060000,"y":29.21},{"x":1568328120000,"y":28.98},{"x":1568328180000,"y":29.59},{"x":1568328240000,"y":16.49},{"x":1568328300000,"y":28.39},{"x":1568328360000,"y":29.11},{"x":1568328420000,"y":28.26},{"x":1568328480000,"y":29.66},{"x":1568328540000,"y":29.06},{"x":1568328600000,"y":22.44},{"x":1568328660000,"y":29.94},{"x":1568328720000,"y":16.3},{"x":1568328780000,"y":28.68},{"x":1568328840000,"y":30.43},{"x":1568328900000,"y":27.08},{"x":1568328960000,"y":27.12},{"x":1568329020000,"y":16.19},{"x":1568329080000,"y":16.29},{"x":1568329140000,"y":29.76},{"x":1568329200000,"y":25.8},{"x":1568329260000,"y":25.71},{"x":1568329320000,"y":16.19},{"x":1568329380000,"y":16.19},{"x":1568329440000,"y":16.21},{"x":1568329500000,"y":16.22},{"x":1568329560000,"y":16.22},{"x":1568329620000,"y":16.22},{"x":1568329680000,"y":16.22},{"x":1568329740000,"y":16.17},{"x":1568329800000,"y":14.88},{"x":1568329860000,"y":16.84},{"x":1568329920000,"y":29.34},{"x":1568329980000,"y":17.02},{"x":1568330040000,"y":16.18},{"x":1568330100000,"y":16.19},{"x":1568330160000,"y":16.19},{"x":1568330220000,"y":16.18},{"x":1568330280000,"y":16.18},{"x":1568330340000,"y":16.21},{"x":1568330400000,"y":16.26},{"x":1568330460000,"y":16.26},{"x":1568330520000,"y":16.26},{"x":1568330580000,"y":16.26},{"x":1568330640000,"y":16.26},{"x":1568330700000,"y":24.3},{"x":1568330760000,"y":22.73},{"x":1568330820000,"y":16.14},{"x":1568330880000,"y":16.15},{"x":1568330940000,"y":16.22},{"x":1568331000000,"y":16.3},{"x":1568331060000,"y":16.29},{"x":1568331120000,"y":19.57},{"x":1568331180000,"y":29.36},{"x":1568331240000,"y":23.67},{"x":1568331300000,"y":28.54},{"x":1568331360000,"y":16.19},{"x":1568331420000,"y":16.19},{"x":1568331480000,"y":16.19},{"x":1568331540000,"y":16.24},{"x":1568331600000,"y":16.25},{"x":1568331660000,"y":21.22},{"x":1568331720000,"y":27},{"x":1568331780000,"y":16.27},{"x":1568331840000,"y":22.52},{"x":1568331900000,"y":23.42},{"x":1568331960000,"y":16.35},{"x":1568332020000,"y":16.35},{"x":1568332080000,"y":16.35},{"x":1568332140000,"y":16.35},{"x":1568332200000,"y":16.38},{"x":1568332260000,"y":16.36},{"x":1568332320000,"y":16.36},{"x":1568332380000,"y":16.36},{"x":1568332440000,"y":16.36},{"x":1568332500000,"y":16.38},{"x":1568332560000,"y":16.36},{"x":1568332620000,"y":16.36},{"x":1568332680000,"y":16.35},{"x":1568332740000,"y":18.16},{"x":1568332800000,"y":29.82},{"x":1568332860000,"y":24.23},{"x":1568332920000,"y":16.23},{"x":1568332980000,"y":16.23},{"x":1568333040000,"y":16.23},{"x":1568333100000,"y":16.25},{"x":1568333160000,"y":16.28},{"x":1568333220000,"y":16.27},{"x":1568333280000,"y":16.27},{"x":1568333340000,"y":16.28},{"x":1568333400000,"y":16.24},{"x":1568333460000,"y":16.28},{"x":1568333520000,"y":16.28},{"x":1568333580000,"y":16.28},{"x":1568333640000,"y":16.28},{"x":1568333700000,"y":16.29},{"x":1568333760000,"y":16.3},{"x":1568333820000,"y":16.29},{"x":1568333880000,"y":16.28},{"x":1568333940000,"y":16.29},{"x":1568334000000,"y":15.27},{"x":1568334060000,"y":15.02},{"x":1568334120000,"y":15.03},{"x":1568334180000,"y":15.15},{"x":1568334240000,"y":29.4},{"x":1568334300000,"y":29.41},{"x":1568334360000,"y":22.65},{"x":1568334420000,"y":16.27},{"x":1568334480000,"y":16.27},{"x":1568334540000,"y":15.97},{"x":1568334600000,"y":14.78},{"x":1568334660000,"y":14.79},{"x":1568334720000,"y":14.8},{"x":1568334780000,"y":14.79},{"x":1568334840000,"y":14.8},{"x":1568334900000,"y":14.78},{"x":1568334960000,"y":14.78},{"x":1568335020000,"y":14.81},{"x":1568335080000,"y":14.8},{"x":1568335140000,"y":14.79},{"x":1568335200000,"y":14.74},{"x":1568335260000,"y":14.74},{"x":1568335320000,"y":14.78},{"x":1568335380000,"y":14.77},{"x":1568335440000,"y":14.77},{"x":1568335500000,"y":14.77},{"x":1568335560000,"y":14.77},{"x":1568335620000,"y":14.78},{"x":1568335680000,"y":14.76},{"x":1568335740000,"y":14.76},{"x":1568335800000,"y":14.73},{"x":1568335860000,"y":14.73},{"x":1568335920000,"y":14.76},{"x":1568335980000,"y":14.78},{"x":1568336040000,"y":14.78},{"x":1568336100000,"y":14.77},{"x":1568336160000,"y":14.76},{"x":1568336220000,"y":14.78},{"x":1568336280000,"y":14.78},{"x":1568336340000,"y":14.78},{"x":1568336400000,"y":14.75},{"x":1568336460000,"y":14.75},{"x":1568336520000,"y":14.76},{"x":1568336580000,"y":14.76},{"x":1568336640000,"y":14.75},{"x":1568336700000,"y":14.77},{"x":1568336760000,"y":14.77},{"x":1568336820000,"y":14.79},{"x":1568336880000,"y":14.74},{"x":1568336940000,"y":14.77},{"x":1568337000000,"y":14.77},{"x":1568337060000,"y":14.77},{"x":1568337120000,"y":14.77},{"x":1568337180000,"y":14.79},{"x":1568337240000,"y":14.77},{"x":1568337300000,"y":14.77},{"x":1568337360000,"y":14.78},{"x":1568337420000,"y":14.78},{"x":1568337480000,"y":14.79},{"x":1568337540000,"y":14.78},{"x":1568337600000,"y":14.76},{"x":1568337660000,"y":14.76},{"x":1568337720000,"y":14.76},{"x":1568337780000,"y":14.78},{"x":1568337840000,"y":14.78},{"x":1568337900000,"y":14.77},{"x":1568337960000,"y":14.78},{"x":1568338020000,"y":14.78},{"x":1568338080000,"y":14.79},{"x":1568338140000,"y":14.78},{"x":1568338200000,"y":14.78},{"x":1568338260000,"y":14.78},{"x":1568338320000,"y":14.78},{"x":1568338380000,"y":14.79},{"x":1568338440000,"y":14.78},{"x":1568338500000,"y":14.79},{"x":1568338560000,"y":14.79},{"x":1568338620000,"y":14.79},{"x":1568338680000,"y":14.79},{"x":1568338740000,"y":14.8},{"x":1568338800000,"y":14.78},{"x":1568338860000,"y":14.78},{"x":1568338920000,"y":14.78},{"x":1568338980000,"y":14.8},{"x":1568339040000,"y":14.79},{"x":1568339100000,"y":14.79},{"x":1568339160000,"y":14.79},{"x":1568339220000,"y":14.79},{"x":1568339280000,"y":14.79},{"x":1568339340000,"y":14.79},{"x":1568339400000,"y":14.77},{"x":1568339460000,"y":14.77},{"x":1568339520000,"y":14.77},{"x":1568339580000,"y":14.77},{"x":1568339640000,"y":14.79},{"x":1568339700000,"y":14.76},{"x":1568339760000,"y":14.76},{"x":1568339820000,"y":14.4},{"x":1568339880000,"y":14.44},{"x":1568339940000,"y":14.5},{"x":1568340000000,"y":14.49},{"x":1568340060000,"y":14.5},{"x":1568340120000,"y":14.5},{"x":1568340180000,"y":14.5},{"x":1568340240000,"y":14.52},{"x":1568340300000,"y":14.52},{"x":1568340360000,"y":14.52},{"x":1568340420000,"y":14.52},{"x":1568340480000,"y":14.52},{"x":1568340540000,"y":14.53},{"x":1568340600000,"y":14.52},{"x":1568340660000,"y":14.52},{"x":1568340720000,"y":14.51},{"x":1568340780000,"y":14.51},{"x":1568340840000,"y":14.52},{"x":1568340900000,"y":14.52},{"x":1568340960000,"y":14.52},{"x":1568341020000,"y":14.53},{"x":1568341080000,"y":14.53},{"x":1568341140000,"y":14.68},{"x":1568341200000,"y":14.73},{"x":1568341260000,"y":14.54},{"x":1568341320000,"y":14.54},{"x":1568341380000,"y":14.54},{"x":1568341440000,"y":14.54},{"x":1568341500000,"y":14.51},{"x":1568341560000,"y":14.5},{"x":1568341620000,"y":14.5},{"x":1568341680000,"y":14.5},{"x":1568341740000,"y":14.5},{"x":1568341800000,"y":14.51},{"x":1568341860000,"y":14.51},{"x":1568341920000,"y":14.51},{"x":1568341980000,"y":14.51},{"x":1568342040000,"y":14.51},{"x":1568342100000,"y":14.53},{"x":1568342160000,"y":14.53},{"x":1568342220000,"y":14.52},{"x":1568342280000,"y":14.52},{"x":1568342340000,"y":14.52},{"x":1568342400000,"y":14.53},{"x":1568342460000,"y":14.52},{"x":1568342520000,"y":14.52},{"x":1568342580000,"y":14.52},{"x":1568342640000,"y":14.51},{"x":1568342700000,"y":14.54},{"x":1568342760000,"y":14.52},{"x":1568342820000,"y":14.52},{"x":1568342880000,"y":14.52},{"x":1568342940000,"y":14.52},{"x":1568343000000,"y":14.54},{"x":1568343060000,"y":14.53},{"x":1568343120000,"y":14.53},{"x":1568343180000,"y":14.52},{"x":1568343240000,"y":14.52},{"x":1568343300000,"y":14.54},{"x":1568343360000,"y":14.52},{"x":1568343420000,"y":14.52},{"x":1568343480000,"y":14.52},{"x":1568343540000,"y":14.52},{"x":1568343600000,"y":14.53},{"x":1568343660000,"y":14.51},{"x":1568343720000,"y":14.49},{"x":1568343780000,"y":14.49},{"x":1568343840000,"y":14.5},{"x":1568343900000,"y":14.53},{"x":1568343960000,"y":14.54},{"x":1568344020000,"y":14.53},{"x":1568344080000,"y":14.53},{"x":1568344140000,"y":14.52},{"x":1568344200000,"y":14.51},{"x":1568344260000,"y":14.51},{"x":1568344320000,"y":14.5},{"x":1568344380000,"y":14.5},{"x":1568344440000,"y":14.5},{"x":1568344500000,"y":14.5},{"x":1568344560000,"y":14.51},{"x":1568344620000,"y":14.51},{"x":1568344680000,"y":14.51},{"x":1568344740000,"y":14.51},{"x":1568344800000,"y":14.51},{"x":1568344860000,"y":14.53},{"x":1568344920000,"y":14.51},{"x":1568344980000,"y":14.51},{"x":1568345040000,"y":14.51},{"x":1568345100000,"y":14.51},{"x":1568345160000,"y":14.52},{"x":1568345220000,"y":14.49},{"x":1568345280000,"y":14.49},{"x":1568345340000,"y":14.49},{"x":1568345400000,"y":14.5},{"x":1568345460000,"y":14.51},{"x":1568345520000,"y":14.51},{"x":1568345580000,"y":14.51},{"x":1568345640000,"y":14.51},{"x":1568345700000,"y":14.5},{"x":1568345760000,"y":14.51},{"x":1568345820000,"y":14.5},{"x":1568345880000,"y":14.5},{"x":1568345940000,"y":14.51},{"x":1568346000000,"y":14.51},{"x":1568346060000,"y":14.51},{"x":1568346120000,"y":14.52},{"x":1568346180000,"y":14.51},{"x":1568346240000,"y":14.5},{"x":1568346300000,"y":14.51},{"x":1568346360000,"y":14.5},{"x":1568346420000,"y":14.53},{"x":1568346480000,"y":14.51},{"x":1568346540000,"y":14.51},{"x":1568346600000,"y":14.5},{"x":1568346660000,"y":14.5},{"x":1568346720000,"y":14.51},{"x":1568346780000,"y":14.5},{"x":1568346840000,"y":14.5},{"x":1568346900000,"y":14.49},{"x":1568346960000,"y":14.49},{"x":1568347020000,"y":14.51},{"x":1568347080000,"y":14.51},{"x":1568347140000,"y":14.5},{"x":1568347200000,"y":14.51},{"x":1568347260000,"y":14.5},{"x":1568347320000,"y":14.51},{"x":1568347380000,"y":14.5},{"x":1568347440000,"y":14.5},{"x":1568347500000,"y":14.52},{"x":1568347560000,"y":14.52},{"x":1568347620000,"y":14.53},{"x":1568347680000,"y":14.52},{"x":1568347740000,"y":14.52},{"x":1568347800000,"y":14.52},{"x":1568347860000,"y":14.51},{"x":1568347920000,"y":14.53},{"x":1568347980000,"y":14.51},{"x":1568348040000,"y":14.51},{"x":1568348100000,"y":14.52},{"x":1568348160000,"y":14.52},{"x":1568348220000,"y":14.52},{"x":1568348280000,"y":14.51},{"x":1568348340000,"y":14.49},{"x":1568348400000,"y":14.5},{"x":1568348460000,"y":14.5},{"x":1568348520000,"y":14.5},{"x":1568348580000,"y":14.53},{"x":1568348640000,"y":14.52},{"x":1568348700000,"y":14.49},{"x":1568348760000,"y":14.49},{"x":1568348820000,"y":14.49},{"x":1568348880000,"y":14.5},{"x":1568348940000,"y":14.5},{"x":1568349000000,"y":14.47},{"x":1568349060000,"y":14.47},{"x":1568349120000,"y":14.47},{"x":1568349180000,"y":14.49},{"x":1568349240000,"y":14.49},{"x":1568349300000,"y":14.46},{"x":1568349360000,"y":14.46},{"x":1568349420000,"y":14.46},{"x":1568349480000,"y":14.47},{"x":1568349540000,"y":14.51},{"x":1568349600000,"y":14.52},{"x":1568349660000,"y":14.52},{"x":1568349720000,"y":14.52},{"x":1568349780000,"y":14.53},{"x":1568349840000,"y":14.52},{"x":1568349900000,"y":14.52},{"x":1568349960000,"y":14.52},{"x":1568350020000,"y":14.52},{"x":1568350080000,"y":14.53},{"x":1568350140000,"y":14.53},{"x":1568350200000,"y":14.53},{"x":1568350260000,"y":14.53},{"x":1568350320000,"y":14.53},{"x":1568350380000,"y":14.53},{"x":1568350440000,"y":14.54},{"x":1568350500000,"y":14.52},{"x":1568350560000,"y":14.52},{"x":1568350620000,"y":14.51},{"x":1568350680000,"y":14.51},{"x":1568350740000,"y":14.53},{"x":1568350800000,"y":14.51},{"x":1568350860000,"y":14.51},{"x":1568350920000,"y":14.51},{"x":1568350980000,"y":14.51},{"x":1568351040000,"y":14.53},{"x":1568351100000,"y":14.53},{"x":1568351160000,"y":14.53},{"x":1568351220000,"y":14.52},{"x":1568351280000,"y":14.52},{"x":1568351340000,"y":14.54},{"x":1568351400000,"y":14.54},{"x":1568351460000,"y":14.54},{"x":1568351520000,"y":14.54},{"x":1568351580000,"y":14.53},{"x":1568351640000,"y":14.54},{"x":1568351700000,"y":14.53},{"x":1568351760000,"y":14.53},{"x":1568351820000,"y":14.53},{"x":1568351880000,"y":14.53},{"x":1568351940000,"y":14.54},{"x":1568352000000,"y":14.53},{"x":1568352060000,"y":14.53},{"x":1568352120000,"y":14.53},{"x":1568352180000,"y":14.53},{"x":1568352240000,"y":14.52},{"x":1568352300000,"y":14.55},{"x":1568352360000,"y":14.53},{"x":1568352420000,"y":14.54},{"x":1568352480000,"y":14.54},{"x":1568352540000,"y":14.53},{"x":1568352600000,"y":14.54},{"x":1568352660000,"y":14.53},{"x":1568352720000,"y":14.53},{"x":1568352780000,"y":14.53},{"x":1568352840000,"y":14.53},{"x":1568352900000,"y":14.54},{"x":1568352960000,"y":14.53},{"x":1568353020000,"y":14.53},{"x":1568353080000,"y":14.53},{"x":1568353140000,"y":14.53},{"x":1568353200000,"y":14.53},{"x":1568353260000,"y":14.51},{"x":1568353320000,"y":14.51},{"x":1568353380000,"y":14.51},{"x":1568353440000,"y":14.51},{"x":1568353500000,"y":14.53},{"x":1568353560000,"y":14.51},{"x":1568353620000,"y":14.51},{"x":1568353680000,"y":14.51},{"x":1568353740000,"y":14.51},{"x":1568353800000,"y":14.53},{"x":1568353860000,"y":14.51},{"x":1568353920000,"y":14.51},{"x":1568353980000,"y":14.51},{"x":1568354040000,"y":14.51},{"x":1568354100000,"y":14.53},{"x":1568354160000,"y":14.51},{"x":1568354220000,"y":14.51},{"x":1568354280000,"y":14.51},{"x":1568354340000,"y":14.51},{"x":1568354400000,"y":14.52},{"x":1568354460000,"y":14.53},{"x":1568354520000,"y":14.51},{"x":1568354580000,"y":14.51},{"x":1568354640000,"y":14.51},{"x":1568354700000,"y":14.53},{"x":1568354760000,"y":14.53},{"x":1568354820000,"y":14.52},{"x":1568354880000,"y":14.52},{"x":1568354940000,"y":14.51},{"x":1568355000000,"y":14.48},{"x":1568355060000,"y":14.51},{"x":1568355120000,"y":14.52},{"x":1568355180000,"y":14.52},{"x":1568355240000,"y":14.52},{"x":1568355300000,"y":14.52},{"x":1568355360000,"y":14.53},{"x":1568355420000,"y":14.52},{"x":1568355480000,"y":14.52},{"x":1568355540000,"y":14.52},{"x":1568355600000,"y":14.52},{"x":1568355660000,"y":14.53},{"x":1568355720000,"y":14.51},{"x":1568355780000,"y":14.51},{"x":1568355840000,"y":14.51},{"x":1568355900000,"y":14.5},{"x":1568355960000,"y":14.52},{"x":1568356020000,"y":14.52},{"x":1568356080000,"y":14.52},{"x":1568356140000,"y":14.52},{"x":1568356200000,"y":14.49},{"x":1568356260000,"y":14.5},{"x":1568356320000,"y":14.51},{"x":1568356380000,"y":14.51},{"x":1568356440000,"y":14.51},{"x":1568356500000,"y":14.52},{"x":1568356560000,"y":14.52},{"x":1568356620000,"y":14.53},{"x":1568356680000,"y":14.52},{"x":1568356740000,"y":14.52},{"x":1568356800000,"y":14.52},{"x":1568356860000,"y":14.53},{"x":1568356920000,"y":14.52},{"x":1568356980000,"y":14.5},{"x":1568357040000,"y":14.51},{"x":1568357100000,"y":14.51},{"x":1568357160000,"y":14.51},{"x":1568357220000,"y":14.53},{"x":1568357280000,"y":14.53},{"x":1568357340000,"y":14.53},{"x":1568357400000,"y":14.52},{"x":1568357460000,"y":14.52},{"x":1568357520000,"y":14.53},{"x":1568357580000,"y":14.52},{"x":1568357640000,"y":14.52},{"x":1568357700000,"y":14.52},{"x":1568357760000,"y":14.53},{"x":1568357820000,"y":14.54},{"x":1568357880000,"y":14.53},{"x":1568357940000,"y":14.53},{"x":1568358000000,"y":14.53},{"x":1568358060000,"y":14.53},{"x":1568358120000,"y":14.55},{"x":1568358180000,"y":14.52},{"x":1568358240000,"y":14.52},{"x":1568358300000,"y":14.53},{"x":1568358360000,"y":14.53},{"x":1568358420000,"y":14.54},{"x":1568358480000,"y":14.52},{"x":1568358540000,"y":14.52},{"x":1568358600000,"y":14.52},{"x":1568358660000,"y":14.52},{"x":1568358720000,"y":14.52},{"x":1568358780000,"y":14.54},{"x":1568358840000,"y":14.52},{"x":1568358900000,"y":14.53},{"x":1568358960000,"y":14.53},{"x":1568359020000,"y":14.53},{"x":1568359080000,"y":14.54},{"x":1568359140000,"y":14.53},{"x":1568359200000,"y":14.53},{"x":1568359260000,"y":14.53},{"x":1568359320000,"y":14.52},{"x":1568359380000,"y":14.53},{"x":1568359440000,"y":14.52},{"x":1568359500000,"y":14.53},{"x":1568359560000,"y":14.53},{"x":1568359620000,"y":14.53},{"x":1568359680000,"y":14.54},{"x":1568359740000,"y":14.53},{"x":1568359800000,"y":14.52},{"x":1568359860000,"y":14.51},{"x":1568359920000,"y":14.51},{"x":1568359980000,"y":14.53},{"x":1568360040000,"y":14.52},{"x":1568360100000,"y":14.53},{"x":1568360160000,"y":14.53},{"x":1568360220000,"y":14.53},{"x":1568360280000,"y":14.54},{"x":1568360340000,"y":14.52},{"x":1568360400000,"y":14.53},{"x":1568360460000,"y":14.53},{"x":1568360520000,"y":14.53},{"x":1568360580000,"y":14.54},{"x":1568360640000,"y":14.52},{"x":1568360700000,"y":14.53},{"x":1568360760000,"y":14.53},{"x":1568360820000,"y":14.53},{"x":1568360880000,"y":14.53},{"x":1568360940000,"y":14.54},{"x":1568361000000,"y":14.53},{"x":1568361060000,"y":14.53},{"x":1568361120000,"y":14.53},{"x":1568361180000,"y":14.53},{"x":1568361240000,"y":14.54},{"x":1568361300000,"y":14.53},{"x":1568361360000,"y":14.53},{"x":1568361420000,"y":14.53},{"x":1568361480000,"y":14.53},{"x":1568361540000,"y":14.54},{"x":1568361600000,"y":14.5},{"x":1568361660000,"y":14.51},{"x":1568361720000,"y":14.51},{"x":1568361780000,"y":14.51},{"x":1568361840000,"y":14.52},{"x":1568361900000,"y":14.54},{"x":1568361960000,"y":14.54},{"x":1568362020000,"y":14.53},{"x":1568362080000,"y":14.51},{"x":1568362140000,"y":14.51},{"x":1568362200000,"y":14.48},{"x":1568362260000,"y":14.48},{"x":1568362320000,"y":14.48},{"x":1568362380000,"y":14.48},{"x":1568362440000,"y":14.5},{"x":1568362500000,"y":14.5},{"x":1568362560000,"y":14.5},{"x":1568362620000,"y":14.5},{"x":1568362680000,"y":14.5},{"x":1568362740000,"y":14.51},{"x":1568362800000,"y":14.51},{"x":1568362860000,"y":14.51},{"x":1568362920000,"y":14.51},{"x":1568362980000,"y":14.51},{"x":1568363040000,"y":14.51},{"x":1568363100000,"y":14.92},{"x":1568363160000,"y":14.58},{"x":1568363220000,"y":14.58},{"x":1568363280000,"y":14.58},{"x":1568363340000,"y":14.58},{"x":1568363400000,"y":14.53},{"x":1568363460000,"y":14.5},{"x":1568363520000,"y":14.49},{"x":1568363580000,"y":14.49},{"x":1568363640000,"y":14.49},{"x":1568363700000,"y":14.52},{"x":1568363760000,"y":14.51},{"x":1568363820000,"y":14.51},{"x":1568363880000,"y":14.51},{"x":1568363940000,"y":14.52},{"x":1568364000000,"y":14.52},{"x":1568364060000,"y":14.51},{"x":1568364120000,"y":14.51},{"x":1568364180000,"y":14.51},{"x":1568364240000,"y":14.51},{"x":1568364300000,"y":14.52},{"x":1568364360000,"y":14.5},{"x":1568364420000,"y":14.5},{"x":1568364480000,"y":14.5},{"x":1568364540000,"y":14.5},{"x":1568364600000,"y":14.52},{"x":1568364660000,"y":14.5},{"x":1568364720000,"y":14.5},{"x":1568364780000,"y":14.5},{"x":1568364840000,"y":14.5},{"x":1568364900000,"y":14.53},{"x":1568364960000,"y":14.52},{"x":1568365020000,"y":14.52},{"x":1568365080000,"y":14.52},{"x":1568365140000,"y":14.52},{"x":1568365200000,"y":14.5},{"x":1568365260000,"y":14.52},{"x":1568365320000,"y":14.5},{"x":1568365380000,"y":14.5},{"x":1568365440000,"y":14.5},{"x":1568365500000,"y":14.5},{"x":1568365560000,"y":14.51},{"x":1568365620000,"y":14.5},{"x":1568365680000,"y":14.5},{"x":1568365740000,"y":14.51},{"x":1568365800000,"y":14.52},{"x":1568365860000,"y":14.53},{"x":1568365920000,"y":14.52},{"x":1568365980000,"y":14.53},{"x":1568366040000,"y":14.53},{"x":1568366100000,"y":14.53},{"x":1568366160000,"y":14.54},{"x":1568366220000,"y":14.53},{"x":1568366280000,"y":14.53},{"x":1568366340000,"y":14.53},{"x":1568366400000,"y":14.52},{"x":1568366460000,"y":14.53},{"x":1568366520000,"y":14.52},{"x":1568366580000,"y":14.52},{"x":1568366640000,"y":14.52},{"x":1568366700000,"y":14.48},{"x":1568366760000,"y":14.49},{"x":1568366820000,"y":14.51},{"x":1568366880000,"y":14.51},{"x":1568366940000,"y":14.51},{"x":1568367000000,"y":14.53},{"x":1568367060000,"y":14.54},{"x":1568367120000,"y":14.53},{"x":1568367180000,"y":14.52},{"x":1568367240000,"y":14.52},{"x":1568367300000,"y":14.52},{"x":1568367360000,"y":14.52},{"x":1568367420000,"y":14.53},{"x":1568367480000,"y":14.52},{"x":1568367540000,"y":14.52},{"x":1568367600000,"y":14.52},{"x":1568367660000,"y":14.52},{"x":1568367720000,"y":14.54},{"x":1568367780000,"y":14.52},{"x":1568367840000,"y":14.51},{"x":1568367900000,"y":14.53},{"x":1568367960000,"y":14.52},{"x":1568368020000,"y":14.54},{"x":1568368080000,"y":14.52},{"x":1568368140000,"y":14.53},{"x":1568368200000,"y":14.52},{"x":1568368260000,"y":14.52},{"x":1568368320000,"y":14.53},{"x":1568368380000,"y":14.52},{"x":1568368440000,"y":14.52},{"x":1568368500000,"y":14.52},{"x":1568368560000,"y":14.52},{"x":1568368620000,"y":14.53},{"x":1568368680000,"y":14.5},{"x":1568368740000,"y":14.5},{"x":1568368800000,"y":14.49},{"x":1568368860000,"y":14.49},{"x":1568368920000,"y":14.5},{"x":1568368980000,"y":14.53},{"x":1568369040000,"y":14.53},{"x":1568369100000,"y":14.53},{"x":1568369160000,"y":14.53},{"x":1568369220000,"y":14.54},{"x":1568369280000,"y":14.53},{"x":1568369340000,"y":14.54},{"x":1568369400000,"y":14.54},{"x":1568369460000,"y":14.54},{"x":1568369520000,"y":14.54},{"x":1568369580000,"y":14.54},{"x":1568369640000,"y":14.53},{"x":1568369700000,"y":14.54},{"x":1568369760000,"y":14.54},{"x":1568369820000,"y":14.54},{"x":1568369880000,"y":14.55},{"x":1568369940000,"y":14.53},{"x":1568370000000,"y":14.51},{"x":1568370060000,"y":14.51},{"x":1568370120000,"y":14.51},{"x":1568370180000,"y":14.54},{"x":1568370240000,"y":14.54},{"x":1568370300000,"y":14.51},{"x":1568370360000,"y":14.82},{"x":1568370420000,"y":14.66},{"x":1568370480000,"y":14.68},{"x":1568370540000,"y":14.69},{"x":1568370600000,"y":14.67},{"x":1568370660000,"y":14.64},{"x":1568370720000,"y":14.62},{"x":1568370780000,"y":14.63},{"x":1568370840000,"y":14.62},{"x":1568370900000,"y":14.61},{"x":1568370960000,"y":14.61},{"x":1568371020000,"y":14.61},{"x":1568371080000,"y":14.62},{"x":1568371140000,"y":14.6},{"x":1568371200000,"y":14.6},{"x":1568371260000,"y":14.6},{"x":1568371320000,"y":14.6},{"x":1568371380000,"y":14.61},{"x":1568371440000,"y":14.6},{"x":1568371500000,"y":14.58},{"x":1568371560000,"y":14.58},{"x":1568371620000,"y":14.58},{"x":1568371680000,"y":14.58},{"x":1568371740000,"y":14.6},{"x":1568371800000,"y":14.6},{"x":1568371860000,"y":14.6},{"x":1568371920000,"y":14.6},{"x":1568371980000,"y":14.6},{"x":1568372040000,"y":14.61},{"x":1568372100000,"y":14.58},{"x":1568372160000,"y":14.58},{"x":1568372220000,"y":14.58},{"x":1568372280000,"y":14.58},{"x":1568372340000,"y":14.6},{"x":1568372400000,"y":14.57},{"x":1568372460000,"y":14.57},{"x":1568372520000,"y":14.57},{"x":1568372580000,"y":14.57},{"x":1568372640000,"y":14.6},{"x":1568372700000,"y":14.61},{"x":1568372760000,"y":14.6},{"x":1568372820000,"y":14.6},{"x":1568372880000,"y":14.6},{"x":1568372940000,"y":14.62},{"x":1568373000000,"y":14.6},{"x":1568373060000,"y":14.6},{"x":1568373120000,"y":14.6},{"x":1568373180000,"y":14.6},{"x":1568373240000,"y":14.62},{"x":1568373300000,"y":14.61},{"x":1568373360000,"y":14.61},{"x":1568373420000,"y":14.6},{"x":1568373480000,"y":14.6},{"x":1568373540000,"y":14.61},{"x":1568373600000,"y":14.63},{"x":1568373660000,"y":14.61},{"x":1568373720000,"y":14.61},{"x":1568373780000,"y":14.61},{"x":1568373840000,"y":14.61},{"x":1568373900000,"y":14.69},{"x":1568373960000,"y":14.6},{"x":1568374020000,"y":14.6},{"x":1568374080000,"y":14.6},{"x":1568374140000,"y":14.6},{"x":1568374200000,"y":14.62},{"x":1568374260000,"y":14.61},{"x":1568374320000,"y":14.61},{"x":1568374380000,"y":14.61},{"x":1568374440000,"y":14.61},{"x":1568374500000,"y":14.62},{"x":1568374560000,"y":14.61},{"x":1568374620000,"y":14.61},{"x":1568374680000,"y":14.6},{"x":1568374740000,"y":14.61},{"x":1568374800000,"y":14.62},{"x":1568374860000,"y":14.61},{"x":1568374920000,"y":14.61},{"x":1568374980000,"y":14.6},{"x":1568375040000,"y":14.6},{"x":1568375100000,"y":14.63},{"x":1568375160000,"y":14.61},{"x":1568375220000,"y":14.61},{"x":1568375280000,"y":14.61},{"x":1568375340000,"y":14.61},{"x":1568375400000,"y":14.89},{"x":1568375460000,"y":14.78},{"x":1568375520000,"y":14.6},{"x":1568375580000,"y":14.6},{"x":1568375640000,"y":14.6},{"x":1568375700000,"y":14.6},{"x":1568375760000,"y":14.54},{"x":1568375820000,"y":14.53},{"x":1568375880000,"y":14.53},{"x":1568375940000,"y":14.53},{"x":1568376000000,"y":14.51},{"x":1568376060000,"y":14.55},{"x":1568376120000,"y":14.54},{"x":1568376180000,"y":14.54},{"x":1568376240000,"y":14.54},{"x":1568376300000,"y":14.53},{"x":1568376360000,"y":14.53},{"x":1568376420000,"y":14.52},{"x":1568376480000,"y":14.52},{"x":1568376540000,"y":14.53},{"x":1568376600000,"y":14.53},{"x":1568376660000,"y":14.54},{"x":1568376720000,"y":14.52},{"x":1568376780000,"y":14.53},{"x":1568376840000,"y":14.53},{"x":1568376900000,"y":14.53},{"x":1568376960000,"y":14.53},{"x":1568377020000,"y":14.5},{"x":1568377080000,"y":14.5},{"x":1568377140000,"y":14.5},{"x":1568377200000,"y":14.51},{"x":1568377260000,"y":14.53},{"x":1568377320000,"y":14.53},{"x":1568377380000,"y":14.52},{"x":1568377440000,"y":14.52},{"x":1568377500000,"y":14.53},{"x":1568377560000,"y":14.54},{"x":1568377620000,"y":14.52},{"x":1568377680000,"y":14.52},{"x":1568377740000,"y":14.52},{"x":1568377800000,"y":14.52},{"x":1568377860000,"y":14.53},{"x":1568377920000,"y":14.53},{"x":1568377980000,"y":14.53},{"x":1568378040000,"y":14.53},{"x":1568378100000,"y":14.52},{"x":1568378160000,"y":14.52},{"x":1568378220000,"y":14.54},{"x":1568378280000,"y":14.53},{"x":1568378340000,"y":14.53},{"x":1568378400000,"y":14.54},{"x":1568378460000,"y":14.54},{"x":1568378520000,"y":14.54},{"x":1568378580000,"y":14.53},{"x":1568378640000,"y":14.52},{"x":1568378700000,"y":14.51},{"x":1568378760000,"y":14.51},{"x":1568378820000,"y":14.54},{"x":1568378880000,"y":14.54},{"x":1568378940000,"y":14.54},{"x":1568379000000,"y":14.54},{"x":1568379060000,"y":14.54},{"x":1568379120000,"y":14.54},{"x":1568379180000,"y":14.51},{"x":1568379240000,"y":14.51},{"x":1568379300000,"y":14.53},{"x":1568379360000,"y":14.53},{"x":1568379420000,"y":14.53},{"x":1568379480000,"y":14.5},{"x":1568379540000,"y":14.5},{"x":1568379600000,"y":14.53},{"x":1568379660000,"y":14.53},{"x":1568379720000,"y":14.54},{"x":1568379780000,"y":14.53},{"x":1568379840000,"y":14.53},{"x":1568379900000,"y":14.53},{"x":1568379960000,"y":14.53},{"x":1568380020000,"y":14.54},{"x":1568380080000,"y":14.51},{"x":1568380140000,"y":14.52},{"x":1568380200000,"y":14.51},{"x":1568380260000,"y":14.51},{"x":1568380320000,"y":14.51},{"x":1568380380000,"y":14.53},{"x":1568380440000,"y":14.51},{"x":1568380500000,"y":14.49},{"x":1568380560000,"y":14.49},{"x":1568380620000,"y":14.5},{"x":1568380680000,"y":14.53},{"x":1568380740000,"y":14.52},{"x":1568380800000,"y":14.53},{"x":1568380860000,"y":14.52},{"x":1568380920000,"y":14.52},{"x":1568380980000,"y":14.53},{"x":1568381040000,"y":14.52},{"x":1568381100000,"y":14.51},{"x":1568381160000,"y":14.51},{"x":1568381220000,"y":14.51},{"x":1568381280000,"y":14.53},{"x":1568381340000,"y":14.53},{"x":1568381400000,"y":14.49},{"x":1568381460000,"y":14.49},{"x":1568381520000,"y":14.49},{"x":1568381580000,"y":14.51},{"x":1568381640000,"y":14.52},{"x":1568381700000,"y":14.52},{"x":1568381760000,"y":14.52},{"x":1568381820000,"y":14.52},{"x":1568381880000,"y":14.53},{"x":1568381940000,"y":14.52},{"x":1568382000000,"y":14.52},{"x":1568382060000,"y":14.52},{"x":1568382120000,"y":14.52},{"x":1568382180000,"y":14.54},{"x":1568382240000,"y":14.53},{"x":1568382300000,"y":14.53},{"x":1568382360000,"y":14.53},{"x":1568382420000,"y":14.53},{"x":1568382480000,"y":14.53},{"x":1568382540000,"y":14.54},{"x":1568382600000,"y":14.52},{"x":1568382660000,"y":14.52},{"x":1568382720000,"y":14.52},{"x":1568382780000,"y":14.52},{"x":1568382840000,"y":14.53},{"x":1568382900000,"y":14.53},{"x":1568382960000,"y":14.53},{"x":1568383020000,"y":14.53},{"x":1568383080000,"y":14.53},{"x":1568383140000,"y":14.52},{"x":1568383200000,"y":14.5},{"x":1568383260000,"y":14.5},{"x":1568383320000,"y":14.5},{"x":1568383380000,"y":14.5},{"x":1568383440000,"y":14.52},{"x":1568383500000,"y":14.51},{"x":1568383560000,"y":14.51},{"x":1568383620000,"y":14.51},{"x":1568383680000,"y":14.51},{"x":1568383740000,"y":14.52},{"x":1568383800000,"y":14.49},{"x":1568383860000,"y":14.49},{"x":1568383920000,"y":14.49},{"x":1568383980000,"y":14.49},{"x":1568384040000,"y":14.5},{"x":1568384100000,"y":14.53},{"x":1568384160000,"y":14.53},{"x":1568384220000,"y":14.52},{"x":1568384280000,"y":14.53},{"x":1568384340000,"y":14.54},{"x":1568384400000,"y":14.53},{"x":1568384460000,"y":14.53},{"x":1568384520000,"y":14.53},{"x":1568384580000,"y":14.53},{"x":1568384640000,"y":14.53},{"x":1568384700000,"y":14.55},{"x":1568384760000,"y":14.53},{"x":1568384820000,"y":14.53},{"x":1568384880000,"y":14.53},{"x":1568384940000,"y":14.53},{"x":1568385000000,"y":14.9},{"x":1568385060000,"y":14.57},{"x":1568385120000,"y":14.57},{"x":1568385180000,"y":14.57},{"x":1568385240000,"y":14.56},{"x":1568385300000,"y":14.56},{"x":1568385360000,"y":14.53},{"x":1568385420000,"y":14.53},{"x":1568385480000,"y":14.53},{"x":1568385540000,"y":14.52},{"x":1568385600000,"y":14.54},{"x":1568385660000,"y":14.53},{"x":1568385720000,"y":14.53},{"x":1568385780000,"y":14.53},{"x":1568385840000,"y":14.52},{"x":1568385900000,"y":14.53},{"x":1568385960000,"y":14.49},{"x":1568386020000,"y":14.49},{"x":1568386080000,"y":14.49},{"x":1568386140000,"y":14.49},{"x":1568386200000,"y":14.54},{"x":1568386260000,"y":14.53},{"x":1568386320000,"y":14.53},{"x":1568386380000,"y":14.53},{"x":1568386440000,"y":14.53},{"x":1568386500000,"y":14.52},{"x":1568386560000,"y":14.52},{"x":1568386620000,"y":14.52},{"x":1568386680000,"y":14.52},{"x":1568386740000,"y":14.52},{"x":1568386800000,"y":14.54},{"x":1568386860000,"y":14.54},{"x":1568386920000,"y":14.53},{"x":1568386980000,"y":14.53},{"x":1568387040000,"y":14.53},{"x":1568387100000,"y":14.53},{"x":1568387160000,"y":14.51},{"x":1568387220000,"y":14.49},{"x":1568387280000,"y":14.49},{"x":1568387340000,"y":14.54},{"x":1568387400000,"y":14.53},{"x":1568387460000,"y":14.54},{"x":1568387520000,"y":14.54},{"x":1568387580000,"y":14.54},{"x":1568387640000,"y":14.54},{"x":1568387700000,"y":14.52},{"x":1568387760000,"y":14.54},{"x":1568387820000,"y":14.54},{"x":1568387880000,"y":14.53},{"x":1568387940000,"y":14.53},{"x":1568388000000,"y":14.52},{"x":1568388060000,"y":14.53},{"x":1568388120000,"y":14.52},{"x":1568388180000,"y":14.52},{"x":1568388240000,"y":14.52},{"x":1568388300000,"y":14.55},{"x":1568388360000,"y":14.56},{"x":1568388420000,"y":14.54},{"x":1568388480000,"y":14.54},{"x":1568388540000,"y":14.54},{"x":1568388600000,"y":14.55},{"x":1568388660000,"y":14.55},{"x":1568388720000,"y":14.53},{"x":1568388780000,"y":14.53},{"x":1568388840000,"y":14.53},{"x":1568388900000,"y":14.54},{"x":1568388960000,"y":14.54},{"x":1568389020000,"y":14.55},{"x":1568389080000,"y":14.52},{"x":1568389140000,"y":14.55},{"x":1568389200000,"y":14.49},{"x":1568389260000,"y":14.49},{"x":1568389320000,"y":14.52},{"x":1568389380000,"y":14.51},{"x":1568389440000,"y":14.52},{"x":1568389500000,"y":14.53},{"x":1568389560000,"y":14.52},{"x":1568389620000,"y":14.53},{"x":1568389680000,"y":14.5},{"x":1568389740000,"y":14.5},{"x":1568389800000,"y":14.49},{"x":1568389860000,"y":14.49},{"x":1568389920000,"y":14.51},{"x":1568389980000,"y":14.51},{"x":1568390040000,"y":14.51},{"x":1568390100000,"y":14.53},{"x":1568390160000,"y":14.53},{"x":1568390220000,"y":14.54},{"x":1568390280000,"y":14.53},{"x":1568390340000,"y":14.53},{"x":1568390400000,"y":14.53},{"x":1568390460000,"y":14.53},{"x":1568390520000,"y":14.54},{"x":1568390580000,"y":14.53},{"x":1568390640000,"y":14.53},{"x":1568390700000,"y":14.53},{"x":1568390760000,"y":14.53},{"x":1568390820000,"y":14.54},{"x":1568390880000,"y":14.5},{"x":1568390940000,"y":14.52},{"x":1568391000000,"y":14.5},{"x":1568391060000,"y":14.5},{"x":1568391120000,"y":14.5},{"x":1568391180000,"y":14.55},{"x":1568391240000,"y":14.53},{"x":1568391300000,"y":14.53},{"x":1568391360000,"y":14.53},{"x":1568391420000,"y":14.52},{"x":1568391480000,"y":14.54},{"x":1568391540000,"y":14.52},{"x":1568391600000,"y":14.53},{"x":1568391660000,"y":14.53},{"x":1568391720000,"y":14.53},{"x":1568391780000,"y":14.55},{"x":1568391840000,"y":14.53},{"x":1568391900000,"y":14.53},{"x":1568391960000,"y":14.53},{"x":1568392020000,"y":14.53},{"x":1568392080000,"y":14.53},{"x":1568392140000,"y":14.51},{"x":1568392200000,"y":14.51},{"x":1568392260000,"y":14.51},{"x":1568392320000,"y":14.51},{"x":1568392380000,"y":14.52},{"x":1568392440000,"y":14.51},{"x":1568392500000,"y":14.53},{"x":1568392560000,"y":14.53},{"x":1568392620000,"y":14.53},{"x":1568392680000,"y":14.54},{"x":1568392740000,"y":14.54},{"x":1568392800000,"y":14.53},{"x":1568392860000,"y":14.53},{"x":1568392920000,"y":14.53},{"x":1568392980000,"y":14.61},{"x":1568393040000,"y":14.76},{"x":1568393100000,"y":14.74},{"x":1568393160000,"y":14.74},{"x":1568393220000,"y":14.74},{"x":1568393280000,"y":14.74},{"x":1568393340000,"y":14.78},{"x":1568393400000,"y":14.75},{"x":1568393460000,"y":14.75},{"x":1568393520000,"y":14.76},{"x":1568393580000,"y":14.76},{"x":1568393640000,"y":14.76},{"x":1568393700000,"y":14.75},{"x":1568393760000,"y":14.75},{"x":1568393820000,"y":14.75},{"x":1568393880000,"y":14.75},{"x":1568393940000,"y":14.77},{"x":1568394000000,"y":14.76},{"x":1568394060000,"y":14.76},{"x":1568394120000,"y":14.75},{"x":1568394180000,"y":14.75},{"x":1568394240000,"y":14.77},{"x":1568394300000,"y":14.75},{"x":1568394360000,"y":14.75},{"x":1568394420000,"y":14.75},{"x":1568394480000,"y":14.75},{"x":1568394540000,"y":14.77},{"x":1568394600000,"y":14.76},{"x":1568394660000,"y":14.75},{"x":1568394720000,"y":14.75},{"x":1568394780000,"y":14.75},{"x":1568394840000,"y":14.76},{"x":1568394900000,"y":14.74},{"x":1568394960000,"y":14.72},{"x":1568395020000,"y":14.71},{"x":1568395080000,"y":14.71},{"x":1568395140000,"y":14.72},{"x":1568395200000,"y":14.77},{"x":1568395260000,"y":14.76},{"x":1568395320000,"y":14.76},{"x":1568395380000,"y":14.76},{"x":1568395440000,"y":14.76},{"x":1568395500000,"y":14.76},{"x":1568395560000,"y":14.75},{"x":1568395620000,"y":14.75},{"x":1568395680000,"y":14.76},{"x":1568395740000,"y":14.75},{"x":1568395800000,"y":14.77},{"x":1568395860000,"y":14.75},{"x":1568395920000,"y":14.75},{"x":1568395980000,"y":14.75},{"x":1568396040000,"y":14.75},{"x":1568396100000,"y":14.75},{"x":1568396160000,"y":14.75},{"x":1568396220000,"y":14.75},{"x":1568396280000,"y":14.75},{"x":1568396340000,"y":14.76},{"x":1568396400000,"y":14.77},{"x":1568396460000,"y":14.76},{"x":1568396520000,"y":14.76},{"x":1568396580000,"y":14.76},{"x":1568396640000,"y":14.75},{"x":1568396700000,"y":14.78},{"x":1568396760000,"y":14.77},{"x":1568396820000,"y":14.77},{"x":1568396880000,"y":14.77},{"x":1568396940000,"y":14.77},{"x":1568397000000,"y":14.76},{"x":1568397060000,"y":14.75},{"x":1568397120000,"y":14.74},{"x":1568397180000,"y":14.74},{"x":1568397240000,"y":14.74},{"x":1568397300000,"y":14.74},{"x":1568397360000,"y":14.77},{"x":1568397420000,"y":14.76},{"x":1568397480000,"y":14.76},{"x":1568397540000,"y":14.76},{"x":1568397600000,"y":14.77},{"x":1568397660000,"y":14.77},{"x":1568397720000,"y":14.76},{"x":1568397780000,"y":14.76},{"x":1568397840000,"y":14.76},{"x":1568397900000,"y":14.76},{"x":1568397960000,"y":14.77},{"x":1568398020000,"y":14.77},{"x":1568398080000,"y":14.75},{"x":1568398140000,"y":14.74},{"x":1568398200000,"y":14.74},{"x":1568398260000,"y":14.75},{"x":1568398320000,"y":14.74},{"x":1568398380000,"y":14.75},{"x":1568398440000,"y":14.75},{"x":1568398500000,"y":14.75},{"x":1568398560000,"y":14.76},{"x":1568398620000,"y":14.74},{"x":1568398680000,"y":14.74},{"x":1568398740000,"y":14.74},{"x":1568398800000,"y":14.74},{"x":1568398860000,"y":14.76},{"x":1568398920000,"y":14.75},{"x":1568398980000,"y":14.75},{"x":1568399040000,"y":14.75},{"x":1568399100000,"y":14.72},{"x":1568399160000,"y":14.71},{"x":1568399220000,"y":14.72},{"x":1568399280000,"y":14.7},{"x":1568399340000,"y":14.7},{"x":1568399400000,"y":14.73},{"x":1568399460000,"y":14.73},{"x":1568399520000,"y":14.75},{"x":1568399580000,"y":14.73},{"x":1568399640000,"y":14.73},{"x":1568399700000,"y":14.75},{"x":1568399760000,"y":14.75},{"x":1568399820000,"y":14.76},{"x":1568399880000,"y":14.75},{"x":1568399940000,"y":14.76},{"x":1568400000000,"y":14.75},{"x":1568400060000,"y":14.74},{"x":1568400120000,"y":14.75},{"x":1568400180000,"y":14.74},{"x":1568400240000,"y":14.73},{"x":1568400300000,"y":14.74},{"x":1568400360000,"y":14.74},{"x":1568400420000,"y":14.75},{"x":1568400480000,"y":14.76},{"x":1568400540000,"y":14.76},{"x":1568400600000,"y":14.75},{"x":1568400660000,"y":14.75},{"x":1568400720000,"y":14.76},{"x":1568400780000,"y":14.75},{"x":1568400840000,"y":14.75},{"x":1568400900000,"y":14.76},{"x":1568400960000,"y":14.76},{"x":1568401020000,"y":14.77},{"x":1568401080000,"y":14.73},{"x":1568401140000,"y":14.81},{"x":1568401200000,"y":14.85},{"x":1568401260000,"y":14.86},{"x":1568401320000,"y":14.9},{"x":1568401380000,"y":14.95},{"x":1568401440000,"y":14.94},{"x":1568401500000,"y":14.94},{"x":1568401560000,"y":14.94},{"x":1568401620000,"y":14.94},{"x":1568401680000,"y":14.94},{"x":1568401740000,"y":14.94},{"x":1568401800000,"y":14.94},{"x":1568401860000,"y":14.93},{"x":1568401920000,"y":14.93},{"x":1568401980000,"y":14.96},{"x":1568402040000,"y":14.95},{"x":1568402100000,"y":20.43},{"x":1568402160000,"y":28.85},{"x":1568402220000,"y":15.2},{"x":1568402280000,"y":14.96},{"x":1568402340000,"y":14.95},{"x":1568402400000,"y":14.96},{"x":1568402460000,"y":14.95},{"x":1568402520000,"y":14.95},{"x":1568402580000,"y":14.95},{"x":1568402640000,"y":14.91},{"x":1568402700000,"y":14.93},{"x":1568402760000,"y":14.93},{"x":1568402820000,"y":14.93},{"x":1568402880000,"y":14.94},{"x":1568402940000,"y":14.93},{"x":1568403000000,"y":14.94},{"x":1568403060000,"y":14.94},{"x":1568403120000,"y":14.95},{"x":1568403180000,"y":14.95},{"x":1568403240000,"y":14.98},{"x":1568403300000,"y":14.97},{"x":1568403360000,"y":14.97},{"x":1568403420000,"y":14.97},{"x":1568403480000,"y":14.97},{"x":1568403540000,"y":14.98},{"x":1568403600000,"y":14.94},{"x":1568403660000,"y":14.94},{"x":1568403720000,"y":14.94},{"x":1568403780000,"y":14.94},{"x":1568403840000,"y":14.97},{"x":1568403900000,"y":14.95},{"x":1568403960000,"y":14.95},{"x":1568404020000,"y":14.95},{"x":1568404080000,"y":14.95},{"x":1568404140000,"y":14.97},{"x":1568404200000,"y":14.97},{"x":1568404260000,"y":14.97},{"x":1568404320000,"y":14.97},{"x":1568404380000,"y":14.97},{"x":1568404440000,"y":14.97},{"x":1568404500000,"y":14.92},{"x":1568404560000,"y":14.92},{"x":1568404620000,"y":14.92},{"x":1568404680000,"y":14.92},{"x":1568404740000,"y":14.93},{"x":1568404800000,"y":14.95},{"x":1568404860000,"y":14.94},{"x":1568404920000,"y":14.94},{"x":1568404980000,"y":14.95},{"x":1568405040000,"y":14.96},{"x":1568405100000,"y":14.97},{"x":1568405160000,"y":14.97},{"x":1568405220000,"y":14.97},{"x":1568405280000,"y":14.97},{"x":1568405340000,"y":14.97},{"x":1568405400000,"y":14.97},{"x":1568405460000,"y":14.96},{"x":1568405520000,"y":14.96},{"x":1568405580000,"y":14.96},{"x":1568405640000,"y":14.96},{"x":1568405700000,"y":14.99},{"x":1568405760000,"y":14.96},{"x":1568405820000,"y":14.96},{"x":1568405880000,"y":14.97},{"x":1568405940000,"y":14.97},{"x":1568406000000,"y":14.99},{"x":1568406060000,"y":14.97},{"x":1568406120000,"y":14.97},{"x":1568406180000,"y":14.97},{"x":1568406240000,"y":14.97},{"x":1568406300000,"y":14.96},{"x":1568406360000,"y":14.96},{"x":1568406420000,"y":14.96},{"x":1568406480000,"y":14.96},{"x":1568406540000,"y":14.96},{"x":1568406600000,"y":15.33},{"x":1568406660000,"y":15.04},{"x":1568406720000,"y":15.04},{"x":1568406780000,"y":15.04},{"x":1568406840000,"y":15.03},{"x":1568406900000,"y":15.04},{"x":1568406960000,"y":14.98},{"x":1568407020000,"y":14.99},{"x":1568407080000,"y":14.99},{"x":1568407140000,"y":14.96},{"x":1568407200000,"y":14.97},{"x":1568407260000,"y":14.94},{"x":1568407320000,"y":14.94},{"x":1568407380000,"y":14.94},{"x":1568407440000,"y":14.95},{"x":1568407500000,"y":14.95},{"x":1568407560000,"y":14.98},{"x":1568407620000,"y":14.96},{"x":1568407680000,"y":14.96},{"x":1568407740000,"y":14.96},{"x":1568407800000,"y":14.95},{"x":1568407860000,"y":14.95},{"x":1568407920000,"y":14.93},{"x":1568407980000,"y":14.93},{"x":1568408040000,"y":14.93},{"x":1568408100000,"y":14.94},{"x":1568408160000,"y":14.97},{"x":1568408220000,"y":14.96},{"x":1568408280000,"y":14.96},{"x":1568408340000,"y":14.96},{"x":1568408400000,"y":14.96},{"x":1568408460000,"y":14.97},{"x":1568408520000,"y":14.96},{"x":1568408580000,"y":14.96},{"x":1568408640000,"y":14.96},{"x":1568408700000,"y":14.95},{"x":1568408760000,"y":14.96},{"x":1568408820000,"y":14.95},{"x":1568408880000,"y":14.95},{"x":1568408940000,"y":14.96},{"x":1568409000000,"y":14.94},{"x":1568409060000,"y":14.95},{"x":1568409120000,"y":14.97},{"x":1568409180000,"y":14.97},{"x":1568409240000,"y":14.96},{"x":1568409300000,"y":14.96},{"x":1568409360000,"y":14.97},{"x":1568409420000,"y":14.96},{"x":1568409480000,"y":14.96},{"x":1568409540000,"y":14.96},{"x":1568409600000,"y":14.96},{"x":1568409660000,"y":14.96},{"x":1568409720000,"y":14.97},{"x":1568409780000,"y":14.96},{"x":1568409840000,"y":14.96},{"x":1568409900000,"y":14.97},{"x":1568409960000,"y":14.96},{"x":1568410020000,"y":14.98},{"x":1568410080000,"y":14.96},{"x":1568410140000,"y":14.96},{"x":1568410200000,"y":14.96},{"x":1568410260000,"y":14.95},{"x":1568410320000,"y":14.98},{"x":1568410380000,"y":14.98},{"x":1568410440000,"y":14.98},{"x":1568410500000,"y":14.97},{"x":1568410560000,"y":14.96},{"x":1568410620000,"y":14.97},{"x":1568410680000,"y":14.96},{"x":1568410740000,"y":14.97},{"x":1568410800000,"y":14.97},{"x":1568410860000,"y":14.97},{"x":1568410920000,"y":14.98},{"x":1568410980000,"y":14.96},{"x":1568411040000,"y":14.95},{"x":1568411100000,"y":14.96},{"x":1568411160000,"y":14.95},{"x":1568411220000,"y":14.97},{"x":1568411280000,"y":14.97},{"x":1568411340000,"y":14.97},{"x":1568411400000,"y":14.96},{"x":1568411460000,"y":14.96},{"x":1568411520000,"y":14.98},{"x":1568411580000,"y":14.97},{"x":1568411640000,"y":14.97},{"x":1568411700000,"y":14.97},{"x":1568411760000,"y":14.97},{"x":1568411820000,"y":14.97},{"x":1568411880000,"y":14.98},{"x":1568411940000,"y":14.97},{"x":1568412000000,"y":14.97},{"x":1568412060000,"y":14.97},{"x":1568412120000,"y":14.97},{"x":1568412180000,"y":14.98},{"x":1568412240000,"y":14.97},{"x":1568412300000,"y":14.95},{"x":1568412360000,"y":14.95},{"x":1568412420000,"y":14.95},{"x":1568412480000,"y":14.97},{"x":1568412540000,"y":14.98},{"x":1568412600000,"y":14.97},{"x":1568412660000,"y":14.97},{"x":1568412720000,"y":14.97},{"x":1568412780000,"y":14.98},{"x":1568412840000,"y":14.97},{"x":1568412900000,"y":14.97},{"x":1568412960000,"y":14.98},{"x":1568413020000,"y":14.98},{"x":1568413080000,"y":15},{"x":1568413140000,"y":14.98},{"x":1568413200000,"y":14.98},{"x":1568413260000,"y":14.98},{"x":1568413320000,"y":14.98},{"x":1568413380000,"y":14.99},{"x":1568413440000,"y":14.96},{"x":1568413500000,"y":14.98},{"x":1568413560000,"y":14.98},{"x":1568413620000,"y":14.98},{"x":1568413680000,"y":14.98},{"x":1568413740000,"y":14.98},{"x":1568413800000,"y":14.97},{"x":1568413860000,"y":14.95},{"x":1568413920000,"y":14.9},{"x":1568413980000,"y":14.9},{"x":1568414040000,"y":14.92},{"x":1568414100000,"y":14.91},{"x":1568414160000,"y":14.91},{"x":1568414220000,"y":14.91},{"x":1568414280000,"y":14.91},{"x":1568414340000,"y":14.93},{"x":1568414400000,"y":14.91},{"x":1568414460000,"y":14.91},{"x":1568414520000,"y":14.91},{"x":1568414580000,"y":14.91},{"x":1568414640000,"y":14.92},{"x":1568414700000,"y":14.91},{"x":1568414760000,"y":14.91},{"x":1568414820000,"y":14.91},{"x":1568414880000,"y":14.91},{"x":1568414940000,"y":14.92},{"x":1568415000000,"y":14.91},{"x":1568415060000,"y":14.91},{"x":1568415120000,"y":14.91},{"x":1568415180000,"y":14.91},{"x":1568415240000,"y":14.92},{"x":1568415300000,"y":14.92},{"x":1568415360000,"y":14.91},{"x":1568415420000,"y":14.91},{"x":1568415480000,"y":14.91},{"x":1568415540000,"y":14.91},{"x":1568415600000,"y":14.92},{"x":1568415660000,"y":14.92},{"x":1568415720000,"y":14.91},{"x":1568415780000,"y":14.91},{"x":1568415840000,"y":14.92},{"x":1568415900000,"y":14.92},{"x":1568415960000,"y":14.92},{"x":1568416020000,"y":14.92},{"x":1568416080000,"y":14.92},{"x":1568416140000,"y":14.89},{"x":1568416200000,"y":14.91},{"x":1568416260000,"y":14.89},{"x":1568416320000,"y":14.89},{"x":1568416380000,"y":14.9},{"x":1568416440000,"y":14.89},{"x":1568416500000,"y":14.88},{"x":1568416560000,"y":14.87},{"x":1568416620000,"y":14.87},{"x":1568416680000,"y":14.87},{"x":1568416740000,"y":14.87},{"x":1568416800000,"y":14.9},{"x":1568416860000,"y":14.89},{"x":1568416920000,"y":14.89},{"x":1568416980000,"y":14.89},{"x":1568417040000,"y":14.9},{"x":1568417100000,"y":14.91},{"x":1568417160000,"y":14.89},{"x":1568417220000,"y":14.89},{"x":1568417280000,"y":14.89},{"x":1568417340000,"y":14.89},{"x":1568417400000,"y":14.9},{"x":1568417460000,"y":14.89},{"x":1568417520000,"y":14.89},{"x":1568417580000,"y":14.89},{"x":1568417640000,"y":14.89},{"x":1568417700000,"y":14.91},{"x":1568417760000,"y":14.89},{"x":1568417820000,"y":14.89},{"x":1568417880000,"y":14.89},{"x":1568417940000,"y":14.89},{"x":1568418000000,"y":14.91},{"x":1568418060000,"y":14.87},{"x":1568418120000,"y":14.87},{"x":1568418180000,"y":14.87},{"x":1568418240000,"y":14.86},{"x":1568418300000,"y":14.89},{"x":1568418360000,"y":14.9},{"x":1568418420000,"y":14.89},{"x":1568418480000,"y":14.89},{"x":1568418540000,"y":14.89},{"x":1568418600000,"y":14.9},{"x":1568418660000,"y":14.9},{"x":1568418720000,"y":14.89},{"x":1568418780000,"y":14.89},{"x":1568418840000,"y":14.89},{"x":1568418900000,"y":14.89},{"x":1568418960000,"y":14.91},{"x":1568419020000,"y":14.9},{"x":1568419080000,"y":14.9},{"x":1568419140000,"y":14.9},{"x":1568419200000,"y":14.88},{"x":1568419260000,"y":14.91},{"x":1568419320000,"y":14.9},{"x":1568419380000,"y":14.9},{"x":1568419440000,"y":14.9},{"x":1568419500000,"y":14.9},{"x":1568419560000,"y":14.91},{"x":1568419620000,"y":14.91},{"x":1568419680000,"y":14.91},{"x":1568419740000,"y":14.9},{"x":1568419800000,"y":14.9},{"x":1568419860000,"y":14.9},{"x":1568419920000,"y":14.89},{"x":1568419980000,"y":14.89},{"x":1568420040000,"y":14.89},{"x":1568420100000,"y":14.9},{"x":1568420160000,"y":14.91},{"x":1568420220000,"y":14.91},{"x":1568420280000,"y":14.91},{"x":1568420340000,"y":14.91},{"x":1568420400000,"y":14.9},{"x":1568420460000,"y":14.92},{"x":1568420520000,"y":14.89},{"x":1568420580000,"y":14.88},{"x":1568420640000,"y":14.88},{"x":1568420700000,"y":14.91},{"x":1568420760000,"y":14.91},{"x":1568420820000,"y":14.92},{"x":1568420880000,"y":14.91},{"x":1568420940000,"y":14.91},{"x":1568421000000,"y":14.89},{"x":1568421060000,"y":14.89},{"x":1568421120000,"y":14.91},{"x":1568421180000,"y":14.9},{"x":1568421240000,"y":14.78},{"x":1568421300000,"y":14.78},{"x":1568421360000,"y":14.78},{"x":1568421420000,"y":14.78},{"x":1568421480000,"y":14.77},{"x":1568421540000,"y":14.77},{"x":1568421600000,"y":14.78},{"x":1568421660000,"y":14.77},{"x":1568421720000,"y":14.77},{"x":1568421780000,"y":14.76},{"x":1568421840000,"y":14.77},{"x":1568421900000,"y":14.78},{"x":1568421960000,"y":14.78},{"x":1568422020000,"y":14.78},{"x":1568422080000,"y":14.74},{"x":1568422140000,"y":14.74},{"x":1568422200000,"y":14.77},{"x":1568422260000,"y":14.77},{"x":1568422320000,"y":14.78},{"x":1568422380000,"y":14.76},{"x":1568422440000,"y":14.76},{"x":1568422500000,"y":14.78},{"x":1568422560000,"y":14.78},{"x":1568422620000,"y":14.78},{"x":1568422680000,"y":14.76},{"x":1568422740000,"y":14.76},{"x":1568422800000,"y":14.76},{"x":1568422860000,"y":14.76},{"x":1568422920000,"y":14.76},{"x":1568422980000,"y":14.75},{"x":1568423040000,"y":14.75},{"x":1568423100000,"y":14.77},{"x":1568423160000,"y":14.78},{"x":1568423220000,"y":14.77},{"x":1568423280000,"y":14.78},{"x":1568423340000,"y":14.78},{"x":1568423400000,"y":14.78},{"x":1568423460000,"y":14.78},{"x":1568423520000,"y":14.78},{"x":1568423580000,"y":14.78},{"x":1568423640000,"y":14.76},{"x":1568423700000,"y":14.77},{"x":1568423760000,"y":14.77},{"x":1568423820000,"y":14.78},{"x":1568423880000,"y":14.79},{"x":1568423940000,"y":14.78},{"x":1568424000000,"y":14.78},{"x":1568424060000,"y":14.78},{"x":1568424120000,"y":14.78},{"x":1568424180000,"y":14.79},{"x":1568424240000,"y":14.78},{"x":1568424300000,"y":14.78},{"x":1568424360000,"y":14.78},{"x":1568424420000,"y":14.78},{"x":1568424480000,"y":14.78},{"x":1568424540000,"y":14.75},{"x":1568424600000,"y":14.78},{"x":1568424660000,"y":14.78},{"x":1568424720000,"y":14.78},{"x":1568424780000,"y":14.8},{"x":1568424840000,"y":14.75},{"x":1568424900000,"y":14.76},{"x":1568424960000,"y":14.76},{"x":1568425020000,"y":14.75},{"x":1568425080000,"y":14.77},{"x":1568425140000,"y":14.79},{"x":1568425200000,"y":14.78},{"x":1568425260000,"y":14.76},{"x":1568425320000,"y":14.76},{"x":1568425380000,"y":14.81},{"x":1568425440000,"y":14.9},{"x":1568425500000,"y":14.9},{"x":1568425560000,"y":14.9},{"x":1568425620000,"y":14.9},{"x":1568425680000,"y":14.9},{"x":1568425740000,"y":14.91},{"x":1568425800000,"y":14.91},{"x":1568425860000,"y":14.91},{"x":1568425920000,"y":14.91},{"x":1568425980000,"y":14.91},{"x":1568426040000,"y":14.97},{"x":1568426100000,"y":14.97},{"x":1568426160000,"y":14.97},{"x":1568426220000,"y":14.97},{"x":1568426280000,"y":14.97},{"x":1568426340000,"y":14.99},{"x":1568426400000,"y":14.98},{"x":1568426460000,"y":14.98},{"x":1568426520000,"y":14.98},{"x":1568426580000,"y":14.98},{"x":1568426640000,"y":15.04},{"x":1568426700000,"y":15.06},{"x":1568426760000,"y":15.06},{"x":1568426820000,"y":15.06},{"x":1568426880000,"y":15.07},{"x":1568426940000,"y":15.08},{"x":1568427000000,"y":15.07},{"x":1568427060000,"y":15.07},{"x":1568427120000,"y":15.07},{"x":1568427180000,"y":15.07},{"x":1568427240000,"y":15.08},{"x":1568427300000,"y":15.04},{"x":1568427360000,"y":15.04},{"x":1568427420000,"y":15.04},{"x":1568427480000,"y":15.04},{"x":1568427540000,"y":15.04},{"x":1568427600000,"y":15.05},{"x":1568427660000,"y":15.04},{"x":1568427720000,"y":15.04},{"x":1568427780000,"y":15.04},{"x":1568427840000,"y":15.04},{"x":1568427900000,"y":15.07},{"x":1568427960000,"y":15.07},{"x":1568428020000,"y":15.07},{"x":1568428080000,"y":15.07},{"x":1568428140000,"y":15.07},{"x":1568428200000,"y":15.09},{"x":1568428260000,"y":15.07},{"x":1568428320000,"y":15.07},{"x":1568428380000,"y":15.07},{"x":1568428440000,"y":15.07},{"x":1568428500000,"y":15.38},{"x":1568428560000,"y":15.13},{"x":1568428620000,"y":15.13},{"x":1568428680000,"y":15.13},{"x":1568428740000,"y":15.13},{"x":1568428800000,"y":15.13},{"x":1568428860000,"y":15.07},{"x":1568428920000,"y":15.07},{"x":1568428980000,"y":15.07},{"x":1568429040000,"y":15.07},{"x":1568429100000,"y":15.08},{"x":1568429160000,"y":15.08},{"x":1568429220000,"y":15.07},{"x":1568429280000,"y":15.07},{"x":1568429340000,"y":15.07},{"x":1568429400000,"y":15.07},{"x":1568429460000,"y":15.09},{"x":1568429520000,"y":15.07},{"x":1568429580000,"y":15.07},{"x":1568429640000,"y":15.07},{"x":1568429700000,"y":15.06},{"x":1568429760000,"y":15.08},{"x":1568429820000,"y":15.08},{"x":1568429880000,"y":15.08},{"x":1568429940000,"y":15.08},{"x":1568430000000,"y":15.08},{"x":1568430060000,"y":15.08},{"x":1568430120000,"y":15.07},{"x":1568430180000,"y":15.07},{"x":1568430240000,"y":15.07},{"x":1568430300000,"y":15.04},{"x":1568430360000,"y":15.07},{"x":1568430420000,"y":15.07},{"x":1568430480000,"y":15.07},{"x":1568430540000,"y":15.08},{"x":1568430600000,"y":15.08},{"x":1568430660000,"y":15.09},{"x":1568430720000,"y":15.08},{"x":1568430780000,"y":15.08},{"x":1568430840000,"y":15.08},{"x":1568430900000,"y":15.07},{"x":1568430960000,"y":15.09},{"x":1568431020000,"y":15.08},{"x":1568431080000,"y":15.08},{"x":1568431140000,"y":15.08},{"x":1568431200000,"y":15.08},{"x":1568431260000,"y":15.09},{"x":1568431320000,"y":15.1},{"x":1568431380000,"y":15.09},{"x":1568431440000,"y":15.08},{"x":1568431500000,"y":15.08},{"x":1568431560000,"y":15.08},{"x":1568431620000,"y":15.1},{"x":1568431680000,"y":15.09},{"x":1568431740000,"y":15.08},{"x":1568431800000,"y":15.06},{"x":1568431860000,"y":15.06},{"x":1568431920000,"y":15.08},{"x":1568431980000,"y":15.07},{"x":1568432040000,"y":15.07},{"x":1568432100000,"y":15.07},{"x":1568432160000,"y":15.06},{"x":1568432220000,"y":15.07},{"x":1568432280000,"y":15.06},{"x":1568432340000,"y":15.06},{"x":1568432400000,"y":15.08},{"x":1568432460000,"y":15.08},{"x":1568432520000,"y":15.1},{"x":1568432580000,"y":15.09},{"x":1568432640000,"y":15.08},{"x":1568432700000,"y":15.06},{"x":1568432760000,"y":15.06},{"x":1568432820000,"y":15.07},{"x":1568432880000,"y":15.06},{"x":1568432940000,"y":15.06},{"x":1568433000000,"y":15.09},{"x":1568433060000,"y":15.09},{"x":1568433120000,"y":15.1},{"x":1568433180000,"y":15.09},{"x":1568433240000,"y":15.09},{"x":1568433300000,"y":15.09},{"x":1568433360000,"y":15.09},{"x":1568433420000,"y":15.09},{"x":1568433480000,"y":15.08},{"x":1568433540000,"y":15.07},{"x":1568433600000,"y":15.09},{"x":1568433660000,"y":15.09},{"x":1568433720000,"y":15.09},{"x":1568433780000,"y":15.08},{"x":1568433840000,"y":15.06},{"x":1568433900000,"y":15.06},{"x":1568433960000,"y":15.06},{"x":1568434020000,"y":15.06},{"x":1568434080000,"y":15.07},{"x":1568434140000,"y":15.09},{"x":1568434200000,"y":15.08},{"x":1568434260000,"y":15.08},{"x":1568434320000,"y":15.08},{"x":1568434380000,"y":15.1},{"x":1568434440000,"y":15.07},{"x":1568434500000,"y":15.07},{"x":1568434560000,"y":15.06},{"x":1568434620000,"y":15.06},{"x":1568434680000,"y":15.07},{"x":1568434740000,"y":15.07},{"x":1568434800000,"y":15.08},{"x":1568434860000,"y":15.08},{"x":1568434920000,"y":15.08},{"x":1568434980000,"y":15.08},{"x":1568435040000,"y":15.06},{"x":1568435100000,"y":15.07},{"x":1568435160000,"y":15.07},{"x":1568435220000,"y":15.07},{"x":1568435280000,"y":15.08},{"x":1568435340000,"y":15.07},{"x":1568435400000,"y":15.08},{"x":1568435460000,"y":15.08},{"x":1568435520000,"y":15.08},{"x":1568435580000,"y":15.08},{"x":1568435640000,"y":15.07},{"x":1568435700000,"y":15.07},{"x":1568435760000,"y":15.07},{"x":1568435820000,"y":15.07},{"x":1568435880000,"y":15.07},{"x":1568435940000,"y":15.08},{"x":1568436000000,"y":15.07},{"x":1568436060000,"y":15.07},{"x":1568436120000,"y":15.07},{"x":1568436180000,"y":15.07},{"x":1568436240000,"y":15.07},{"x":1568436300000,"y":15.06},{"x":1568436360000,"y":15.06},{"x":1568436420000,"y":15.06},{"x":1568436480000,"y":15.06},{"x":1568436540000,"y":15.07},{"x":1568436600000,"y":15.06},{"x":1568436660000,"y":15.06},{"x":1568436720000,"y":15.06},{"x":1568436780000,"y":15.06},{"x":1568436840000,"y":15.07},{"x":1568436900000,"y":15.05},{"x":1568436960000,"y":15.05},{"x":1568437020000,"y":15.05},{"x":1568437080000,"y":15.05},{"x":1568437140000,"y":15.06},{"x":1568437200000,"y":15.06},{"x":1568437260000,"y":15.06},{"x":1568437320000,"y":15.06},{"x":1568437380000,"y":15.06},{"x":1568437440000,"y":15.08},{"x":1568437500000,"y":15.07},{"x":1568437560000,"y":15.07},{"x":1568437620000,"y":15.07},{"x":1568437680000,"y":15.07},{"x":1568437740000,"y":15.06},{"x":1568437800000,"y":15.08},{"x":1568437860000,"y":15.07},{"x":1568437920000,"y":15.07},{"x":1568437980000,"y":15.07},{"x":1568438040000,"y":15.07},{"x":1568438100000,"y":15.07},{"x":1568438160000,"y":15.06},{"x":1568438220000,"y":15.06},{"x":1568438280000,"y":15.07},{"x":1568438340000,"y":15.07},{"x":1568438400000,"y":15.1},{"x":1568438460000,"y":15.08},{"x":1568438520000,"y":15.08},{"x":1568438580000,"y":15.08},{"x":1568438640000,"y":15.08},{"x":1568438700000,"y":15.09},{"x":1568438760000,"y":15.07},{"x":1568438820000,"y":15.07},{"x":1568438880000,"y":15.07},{"x":1568438940000,"y":15.07},{"x":1568439000000,"y":15.07},{"x":1568439060000,"y":15.07},{"x":1568439120000,"y":15.07},{"x":1568439180000,"y":15.06},{"x":1568439240000,"y":15.07},{"x":1568439300000,"y":15.06},{"x":1568439360000,"y":15.06},{"x":1568439420000,"y":15.06},{"x":1568439480000,"y":15.06},{"x":1568439540000,"y":15.08},{"x":1568439600000,"y":15.07},{"x":1568439660000,"y":15.07},{"x":1568439720000,"y":15.07},{"x":1568439780000,"y":15.07},{"x":1568439840000,"y":15.06},{"x":1568439900000,"y":15.09},{"x":1568439960000,"y":15.09},{"x":1568440020000,"y":15.09},{"x":1568440080000,"y":15.09},{"x":1568440140000,"y":15.09},{"x":1568440200000,"y":15.09},{"x":1568440260000,"y":15.08},{"x":1568440320000,"y":15.08},{"x":1568440380000,"y":15.08},{"x":1568440440000,"y":15.08},{"x":1568440500000,"y":15.07},{"x":1568440560000,"y":15.09},{"x":1568440620000,"y":15.08},{"x":1568440680000,"y":15.08},{"x":1568440740000,"y":15.08},{"x":1568440800000,"y":15.06},{"x":1568440860000,"y":15.07},{"x":1568440920000,"y":15.06},{"x":1568440980000,"y":15.06},{"x":1568441040000,"y":15.06},{"x":1568441100000,"y":15.07},{"x":1568441160000,"y":15.07},{"x":1568441220000,"y":15.06},{"x":1568441280000,"y":15.06},{"x":1568441340000,"y":15.08},{"x":1568441400000,"y":15.06},{"x":1568441460000,"y":15.07},{"x":1568441520000,"y":15.07},{"x":1568441580000,"y":15.07},{"x":1568441640000,"y":15.07},{"x":1568441700000,"y":15.07},{"x":1568441760000,"y":15.07},{"x":1568441820000,"y":15.06},{"x":1568441880000,"y":15.06},{"x":1568441940000,"y":15.06},{"x":1568442000000,"y":15.07},{"x":1568442060000,"y":15.09},{"x":1568442120000,"y":15.08},{"x":1568442180000,"y":15.08},{"x":1568442240000,"y":15.08},{"x":1568442300000,"y":15.09},{"x":1568442360000,"y":15.09},{"x":1568442420000,"y":15.04},{"x":1568442480000,"y":15.04},{"x":1568442540000,"y":15.04},{"x":1568442600000,"y":15.09},{"x":1568442660000,"y":15.09},{"x":1568442720000,"y":15.1},{"x":1568442780000,"y":15.08},{"x":1568442840000,"y":15.08},{"x":1568442900000,"y":15.09},{"x":1568442960000,"y":15.09},{"x":1568443020000,"y":15.09},{"x":1568443080000,"y":15.07},{"x":1568443140000,"y":15.09},{"x":1568443200000,"y":15.09},{"x":1568443260000,"y":15.09},{"x":1568443320000,"y":15.11},{"x":1568443380000,"y":15.09},{"x":1568443440000,"y":15.09},{"x":1568443500000,"y":15.09},{"x":1568443560000,"y":15.09},{"x":1568443620000,"y":15.09},{"x":1568443680000,"y":15.04},{"x":1568443740000,"y":15.04},{"x":1568443800000,"y":15.07},{"x":1568443860000,"y":15.07},{"x":1568443920000,"y":15.07},{"x":1568443980000,"y":15.06},{"x":1568444040000,"y":15.06},{"x":1568444100000,"y":15.07},{"x":1568444160000,"y":15.07},{"x":1568444220000,"y":15.08},{"x":1568444280000,"y":15.06},{"x":1568444340000,"y":15.06},{"x":1568444400000,"y":15.04},{"x":1568444460000,"y":15.03},{"x":1568444520000,"y":15.05},{"x":1568444580000,"y":15.05},{"x":1568444640000,"y":15.05},{"x":1568444700000,"y":15.03},{"x":1568444760000,"y":15.03},{"x":1568444820000,"y":15.03},{"x":1568444880000,"y":15.07},{"x":1568444940000,"y":15.07},{"x":1568445000000,"y":15.03},{"x":1568445060000,"y":15.03},{"x":1568445120000,"y":15.03},{"x":1568445180000,"y":15.08},{"x":1568445240000,"y":15.07},{"x":1568445300000,"y":15.07},{"x":1568445360000,"y":15.07},{"x":1568445420000,"y":15.07},{"x":1568445480000,"y":15.08},{"x":1568445540000,"y":15.07},{"x":1568445600000,"y":15.07},{"x":1568445660000,"y":15.07},{"x":1568445720000,"y":15.07},{"x":1568445780000,"y":15.08},{"x":1568445840000,"y":15.07},{"x":1568445900000,"y":15.07},{"x":1568445960000,"y":15.06},{"x":1568446020000,"y":15.06},{"x":1568446080000,"y":15.08},{"x":1568446140000,"y":15.07},{"x":1568446200000,"y":15.09},{"x":1568446260000,"y":15.08},{"x":1568446320000,"y":15.08},{"x":1568446380000,"y":15.1},{"x":1568446440000,"y":15.07},{"x":1568446500000,"y":15.08},{"x":1568446560000,"y":15.08},{"x":1568446620000,"y":15.08},{"x":1568446680000,"y":15.09},{"x":1568446740000,"y":15.08},{"x":1568446800000,"y":15.05},{"x":1568446860000,"y":15.04},{"x":1568446920000,"y":15.04},{"x":1568446980000,"y":15.05},{"x":1568447040000,"y":15.08},{"x":1568447100000,"y":15.08},{"x":1568447160000,"y":15.08},{"x":1568447220000,"y":15.08},{"x":1568447280000,"y":15.08},{"x":1568447340000,"y":15.09},{"x":1568447400000,"y":15.07},{"x":1568447460000,"y":15.07},{"x":1568447520000,"y":15.07},{"x":1568447580000,"y":15.07},{"x":1568447640000,"y":15.1},{"x":1568447700000,"y":15.07},{"x":1568447760000,"y":15.07},{"x":1568447820000,"y":15.07},{"x":1568447880000,"y":15.07},{"x":1568447940000,"y":15.09},{"x":1568448000000,"y":15.08},{"x":1568448060000,"y":15.08},{"x":1568448120000,"y":15.08},{"x":1568448180000,"y":15.08},{"x":1568448240000,"y":15.09},{"x":1568448300000,"y":15.06},{"x":1568448360000,"y":15.06},{"x":1568448420000,"y":15.06},{"x":1568448480000,"y":15.06},{"x":1568448540000,"y":15.09},{"x":1568448600000,"y":15.09},{"x":1568448660000,"y":15.09},{"x":1568448720000,"y":15.09},{"x":1568448780000,"y":15.09},{"x":1568448840000,"y":15.1},{"x":1568448900000,"y":15.08},{"x":1568448960000,"y":15.08},{"x":1568449020000,"y":15.08},{"x":1568449080000,"y":15.08},{"x":1568449140000,"y":15.09},{"x":1568449200000,"y":15.06},{"x":1568449260000,"y":15.06},{"x":1568449320000,"y":15.06},{"x":1568449380000,"y":15.06},{"x":1568449440000,"y":15.06},{"x":1568449500000,"y":15.1},{"x":1568449560000,"y":15.09},{"x":1568449620000,"y":15.08},{"x":1568449680000,"y":15.08},{"x":1568449740000,"y":15.08},{"x":1568449800000,"y":15.1},{"x":1568449860000,"y":15.09},{"x":1568449920000,"y":15.09},{"x":1568449980000,"y":15.09},{"x":1568450040000,"y":15.09},{"x":1568450100000,"y":15.1},{"x":1568450160000,"y":15.09},{"x":1568450220000,"y":15.09},{"x":1568450280000,"y":15.08},{"x":1568450340000,"y":15.08},{"x":1568450400000,"y":15.33},{"x":1568450460000,"y":15.16},{"x":1568450520000,"y":15.16},{"x":1568450580000,"y":15.16},{"x":1568450640000,"y":15.15},{"x":1568450700000,"y":15.15},{"x":1568450760000,"y":15.09},{"x":1568450820000,"y":15.09},{"x":1568450880000,"y":15.09},{"x":1568450940000,"y":15.09},{"x":1568451000000,"y":15.09},{"x":1568451060000,"y":15.09},{"x":1568451120000,"y":15.09},{"x":1568451180000,"y":15.09},{"x":1568451240000,"y":15.09},{"x":1568451300000,"y":15.09},{"x":1568451360000,"y":15.1},{"x":1568451420000,"y":15.09},{"x":1568451480000,"y":15.08},{"x":1568451540000,"y":15.09},{"x":1568451600000,"y":15.09},{"x":1568451660000,"y":15.1},{"x":1568451720000,"y":15.09},{"x":1568451780000,"y":15.08},{"x":1568451840000,"y":15.08},{"x":1568451900000,"y":15.09},{"x":1568451960000,"y":15.1},{"x":1568452020000,"y":15.09},{"x":1568452080000,"y":15.09},{"x":1568452140000,"y":15.09},{"x":1568452200000,"y":15.09},{"x":1568452260000,"y":15.1},{"x":1568452320000,"y":15.09},{"x":1568452380000,"y":15.08},{"x":1568452440000,"y":15.09},{"x":1568452500000,"y":15.09},{"x":1568452560000,"y":15.1},{"x":1568452620000,"y":15.08},{"x":1568452680000,"y":15.08},{"x":1568452740000,"y":15.08},{"x":1568452800000,"y":15.09},{"x":1568452860000,"y":15.1},{"x":1568452920000,"y":15.06},{"x":1568452980000,"y":15.05},{"x":1568453040000,"y":15.05},{"x":1568453100000,"y":15.05},{"x":1568453160000,"y":15.06},{"x":1568453220000,"y":15.07},{"x":1568453280000,"y":15.07},{"x":1568453340000,"y":15.07},{"x":1568453400000,"y":15.07},{"x":1568453460000,"y":15.07},{"x":1568453520000,"y":15.05},{"x":1568453580000,"y":15.03},{"x":1568453640000,"y":15.03},{"x":1568453700000,"y":15.06},{"x":1568453760000,"y":15.06},{"x":1568453820000,"y":15.08},{"x":1568453880000,"y":15.07},{"x":1568453940000,"y":15.05},{"x":1568454000000,"y":15.07},{"x":1568454060000,"y":15.07},{"x":1568454120000,"y":15.08},{"x":1568454180000,"y":15.07},{"x":1568454240000,"y":15.07},{"x":1568454300000,"y":15.07},{"x":1568454360000,"y":15.07},{"x":1568454420000,"y":15.08},{"x":1568454480000,"y":15.07},{"x":1568454540000,"y":15.07},{"x":1568454600000,"y":15.08},{"x":1568454660000,"y":15.08},{"x":1568454720000,"y":15.1},{"x":1568454780000,"y":15.08},{"x":1568454840000,"y":15.08},{"x":1568454900000,"y":15.08},{"x":1568454960000,"y":15.08},{"x":1568455020000,"y":15.28},{"x":1568455080000,"y":15.14},{"x":1568455140000,"y":15.14},{"x":1568455200000,"y":15.15},{"x":1568455260000,"y":15.15},{"x":1568455320000,"y":15.13},{"x":1568455380000,"y":15.09},{"x":1568455440000,"y":15.08},{"x":1568455500000,"y":15.05},{"x":1568455560000,"y":15.05},{"x":1568455620000,"y":15.06},{"x":1568455680000,"y":15.08},{"x":1568455740000,"y":15.08},{"x":1568455800000,"y":15.08},{"x":1568455860000,"y":15.08},{"x":1568455920000,"y":15.08},{"x":1568455980000,"y":15.08},{"x":1568456040000,"y":15.06},{"x":1568456100000,"y":15.07},{"x":1568456160000,"y":15.07},{"x":1568456220000,"y":15.07},{"x":1568456280000,"y":15.09},{"x":1568456340000,"y":15.08},{"x":1568456400000,"y":15.09},{"x":1568456460000,"y":15.09},{"x":1568456520000,"y":15.09},{"x":1568456580000,"y":15.09},{"x":1568456640000,"y":15.09},{"x":1568456700000,"y":15.06},{"x":1568456760000,"y":15.06},{"x":1568456820000,"y":15.06},{"x":1568456880000,"y":15.07},{"x":1568456940000,"y":15.07},{"x":1568457000000,"y":15.07},{"x":1568457060000,"y":15.07},{"x":1568457120000,"y":15.07},{"x":1568457180000,"y":15.09},{"x":1568457240000,"y":15.09},{"x":1568457300000,"y":15.09},{"x":1568457360000,"y":15.09},{"x":1568457420000,"y":15.09},{"x":1568457480000,"y":15.09},{"x":1568457540000,"y":15.09},{"x":1568457600000,"y":15.07},{"x":1568457660000,"y":15.07},{"x":1568457720000,"y":15.06},{"x":1568457780000,"y":15.08},{"x":1568457840000,"y":15.07},{"x":1568457900000,"y":15.09},{"x":1568457960000,"y":15.09},{"x":1568458020000,"y":15.09},{"x":1568458080000,"y":15.1},{"x":1568458140000,"y":15.09},{"x":1568458200000,"y":15.09},{"x":1568458260000,"y":15.09},{"x":1568458320000,"y":15.09},{"x":1568458380000,"y":15.09},{"x":1568458440000,"y":15.1},{"x":1568458500000,"y":15.09},{"x":1568458560000,"y":15.09},{"x":1568458620000,"y":15.09},{"x":1568458680000,"y":15.09},{"x":1568458740000,"y":15.1},{"x":1568458800000,"y":15.06},{"x":1568458860000,"y":15.06},{"x":1568458920000,"y":15.06},{"x":1568458980000,"y":15.06},{"x":1568459040000,"y":15.09},{"x":1568459100000,"y":15.05},{"x":1568459160000,"y":15.05},{"x":1568459220000,"y":15.06},{"x":1568459280000,"y":15.06},{"x":1568459340000,"y":15.11},{"x":1568459400000,"y":15.09},{"x":1568459460000,"y":15.09},{"x":1568459520000,"y":15.09},{"x":1568459580000,"y":15.09},{"x":1568459640000,"y":15.1},{"x":1568459700000,"y":15.09},{"x":1568459760000,"y":15.09},{"x":1568459820000,"y":15.09},{"x":1568459880000,"y":15.09},{"x":1568459940000,"y":15.09},{"x":1568460000000,"y":15.1},{"x":1568460060000,"y":15.1},{"x":1568460120000,"y":15.1},{"x":1568460180000,"y":15.1},{"x":1568460240000,"y":15.1},{"x":1568460300000,"y":15.12},{"x":1568460360000,"y":15.08},{"x":1568460420000,"y":15.08},{"x":1568460480000,"y":15.08},{"x":1568460540000,"y":15.08},{"x":1568460600000,"y":15.11},{"x":1568460660000,"y":15.1},{"x":1568460720000,"y":15.1},{"x":1568460780000,"y":15.1},{"x":1568460840000,"y":15.42},{"x":1568460900000,"y":15.17},{"x":1568460960000,"y":15.18},{"x":1568461020000,"y":15.17},{"x":1568461080000,"y":15.17},{"x":1568461140000,"y":15.16},{"x":1568461200000,"y":15.11},{"x":1568461260000,"y":15.11},{"x":1568461320000,"y":15.11},{"x":1568461380000,"y":15.11},{"x":1568461440000,"y":15.11},{"x":1568461500000,"y":15.1},{"x":1568461560000,"y":15.1},{"x":1568461620000,"y":15.09},{"x":1568461680000,"y":15.09},{"x":1568461740000,"y":15.09},{"x":1568461800000,"y":15.11},{"x":1568461860000,"y":15.11},{"x":1568461920000,"y":15.11},{"x":1568461980000,"y":15.11},{"x":1568462040000,"y":15.11},{"x":1568462100000,"y":15.12},{"x":1568462160000,"y":15.11},{"x":1568462220000,"y":15.09},{"x":1568462280000,"y":15.08},{"x":1568462340000,"y":15.08},{"x":1568462400000,"y":15.08},{"x":1568462460000,"y":15.08},{"x":1568462520000,"y":15.07},{"x":1568462580000,"y":15.07},{"x":1568462640000,"y":15.07},{"x":1568462700000,"y":15.06},{"x":1568462760000,"y":15.1},{"x":1568462820000,"y":15.09},{"x":1568462880000,"y":15.09},{"x":1568462940000,"y":15.09},{"x":1568463000000,"y":15.09},{"x":1568463060000,"y":15.09},{"x":1568463120000,"y":15.08},{"x":1568463180000,"y":15.08},{"x":1568463240000,"y":15.08},{"x":1568463300000,"y":15.09},{"x":1568463360000,"y":15.1},{"x":1568463420000,"y":15.08},{"x":1568463480000,"y":15.08},{"x":1568463540000,"y":15.08},{"x":1568463600000,"y":15.09},{"x":1568463660000,"y":15.09},{"x":1568463720000,"y":15.07},{"x":1568463780000,"y":15.07},{"x":1568463840000,"y":15.07},{"x":1568463900000,"y":15.05},{"x":1568463960000,"y":15.07},{"x":1568464020000,"y":15.06},{"x":1568464080000,"y":15.06},{"x":1568464140000,"y":15.06},{"x":1568464200000,"y":15.09},{"x":1568464260000,"y":15.1},{"x":1568464320000,"y":15.09},{"x":1568464380000,"y":15.09},{"x":1568464440000,"y":15.09},{"x":1568464500000,"y":15.09},{"x":1568464560000,"y":15.1},{"x":1568464620000,"y":15.1},{"x":1568464680000,"y":15.09},{"x":1568464740000,"y":15.09},{"x":1568464800000,"y":15.09},{"x":1568464860000,"y":15.09},{"x":1568464920000,"y":15.1},{"x":1568464980000,"y":15.09},{"x":1568465040000,"y":15.09},{"x":1568465100000,"y":15.07},{"x":1568465160000,"y":15.08},{"x":1568465220000,"y":15.09},{"x":1568465280000,"y":15.07},{"x":1568465340000,"y":15.07},{"x":1568465400000,"y":15.09},{"x":1568465460000,"y":15.09},{"x":1568465520000,"y":15.1},{"x":1568465580000,"y":15.09},{"x":1568465640000,"y":15.09},{"x":1568465700000,"y":15.09},{"x":1568465760000,"y":15.09},{"x":1568465820000,"y":15.1},{"x":1568465880000,"y":15.09},{"x":1568465940000,"y":15.09},{"x":1568466000000,"y":15.1},{"x":1568466060000,"y":15.09},{"x":1568466120000,"y":15.1},{"x":1568466180000,"y":15.09},{"x":1568466240000,"y":15.09},{"x":1568466300000,"y":15.09},{"x":1568466360000,"y":15.09},{"x":1568466420000,"y":15.1},{"x":1568466480000,"y":15.09},{"x":1568466540000,"y":15.09},{"x":1568466600000,"y":15.09},{"x":1568466660000,"y":15.09},{"x":1568466720000,"y":15.1},{"x":1568466780000,"y":15.09},{"x":1568466840000,"y":15.09},{"x":1568466900000,"y":15.09},{"x":1568466960000,"y":15.09},{"x":1568467020000,"y":15.09},{"x":1568467080000,"y":15.09},{"x":1568467140000,"y":15.07},{"x":1568467200000,"y":15.07},{"x":1568467260000,"y":15.06},{"x":1568467320000,"y":15.07},{"x":1568467380000,"y":15.08},{"x":1568467440000,"y":15.07},{"x":1568467500000,"y":15.1},{"x":1568467560000,"y":15.1},{"x":1568467620000,"y":15.1},{"x":1568467680000,"y":15.11},{"x":1568467740000,"y":15.1},{"x":1568467800000,"y":15.1},{"x":1568467860000,"y":15.1},{"x":1568467920000,"y":15.1},{"x":1568467980000,"y":15.1},{"x":1568468040000,"y":15.09},{"x":1568468100000,"y":15.1},{"x":1568468160000,"y":15.09},{"x":1568468220000,"y":15.09},{"x":1568468280000,"y":15.11},{"x":1568468340000,"y":15.1},{"x":1568468400000,"y":15.08},{"x":1568468460000,"y":15.08},{"x":1568468520000,"y":15.08},{"x":1568468580000,"y":15.1},{"x":1568468640000,"y":15.08},{"x":1568468700000,"y":15.09},{"x":1568468760000,"y":15.09},{"x":1568468820000,"y":15.09},{"x":1568468880000,"y":15.11},{"x":1568468940000,"y":15.1},{"x":1568469000000,"y":15.1},{"x":1568469060000,"y":15.1},{"x":1568469120000,"y":15.11},{"x":1568469180000,"y":15.11},{"x":1568469240000,"y":15.11},{"x":1568469300000,"y":15.1},{"x":1568469360000,"y":15.1},{"x":1568469420000,"y":15.1},{"x":1568469480000,"y":15.1},{"x":1568469540000,"y":15.11},{"x":1568469600000,"y":15.1},{"x":1568469660000,"y":15.11},{"x":1568469720000,"y":15.11},{"x":1568469780000,"y":15.11},{"x":1568469840000,"y":15.11},{"x":1568469900000,"y":15.1},{"x":1568469960000,"y":15.1},{"x":1568470020000,"y":15.1},{"x":1568470080000,"y":15.1},{"x":1568470140000,"y":15.11},{"x":1568470200000,"y":15.09},{"x":1568470260000,"y":15.09},{"x":1568470320000,"y":15.09},{"x":1568470380000,"y":15.09},{"x":1568470440000,"y":15.11},{"x":1568470500000,"y":15.1},{"x":1568470560000,"y":15.11},{"x":1568470620000,"y":15.11},{"x":1568470680000,"y":15.11},{"x":1568470740000,"y":15.12},{"x":1568470800000,"y":15.11},{"x":1568470860000,"y":15.11},{"x":1568470920000,"y":15.11},{"x":1568470980000,"y":15.11},{"x":1568471040000,"y":15.11},{"x":1568471100000,"y":15.11},{"x":1568471160000,"y":15.11},{"x":1568471220000,"y":15.11},{"x":1568471280000,"y":15.1},{"x":1568471340000,"y":15.1},{"x":1568471400000,"y":15.07},{"x":1568471460000,"y":15.07},{"x":1568471520000,"y":15.07},{"x":1568471580000,"y":15.06},{"x":1568471640000,"y":15.06},{"x":1568471700000,"y":15.1},{"x":1568471760000,"y":15.09},{"x":1568471820000,"y":15.09},{"x":1568471880000,"y":15.08},{"x":1568471940000,"y":15.09},{"x":1568472000000,"y":15.11},{"x":1568472060000,"y":15.09},{"x":1568472120000,"y":15.09},{"x":1568472180000,"y":15.09},{"x":1568472240000,"y":15.09},{"x":1568472300000,"y":15.4},{"x":1568472360000,"y":15.15},{"x":1568472420000,"y":15.15},{"x":1568472480000,"y":15.15},{"x":1568472540000,"y":15.15},{"x":1568472600000,"y":15.13},{"x":1568472660000,"y":15.08},{"x":1568472720000,"y":15.08},{"x":1568472780000,"y":15.08},{"x":1568472840000,"y":15.08},{"x":1568472900000,"y":15.1},{"x":1568472960000,"y":15.09},{"x":1568473020000,"y":15.09},{"x":1568473080000,"y":15.09},{"x":1568473140000,"y":15.09},{"x":1568473200000,"y":15.08},{"x":1568473260000,"y":15.09},{"x":1568473320000,"y":15.09},{"x":1568473380000,"y":15.09},{"x":1568473440000,"y":15.09},{"x":1568473500000,"y":15.1},{"x":1568473560000,"y":15.08},{"x":1568473620000,"y":15.08},{"x":1568473680000,"y":15.08},{"x":1568473740000,"y":15.08},{"x":1568473800000,"y":15.08},{"x":1568473860000,"y":15.1},{"x":1568473920000,"y":15.09},{"x":1568473980000,"y":15.09},{"x":1568474040000,"y":15.09},{"x":1568474100000,"y":15.08},{"x":1568474160000,"y":15.1},{"x":1568474220000,"y":15.08},{"x":1568474280000,"y":15.09},{"x":1568474340000,"y":15.08},{"x":1568474400000,"y":15.08},{"x":1568474460000,"y":15.09},{"x":1568474520000,"y":15.08},{"x":1568474580000,"y":15.09},{"x":1568474640000,"y":15.08},{"x":1568474700000,"y":15.09},{"x":1568474760000,"y":15.1},{"x":1568474820000,"y":15.09},{"x":1568474880000,"y":15.09},{"x":1568474940000,"y":15.09},{"x":1568475000000,"y":15.07},{"x":1568475060000,"y":15.09},{"x":1568475120000,"y":15.06},{"x":1568475180000,"y":15.07},{"x":1568475240000,"y":15.06},{"x":1568475300000,"y":15.1},{"x":1568475360000,"y":15.11},{"x":1568475420000,"y":15.1},{"x":1568475480000,"y":15.1},{"x":1568475540000,"y":15.08},{"x":1568475600000,"y":15.08},{"x":1568475660000,"y":15.09},{"x":1568475720000,"y":15.1},{"x":1568475780000,"y":15.1},{"x":1568475840000,"y":15.1},{"x":1568475900000,"y":15.1},{"x":1568475960000,"y":15.1},{"x":1568476020000,"y":15.07},{"x":1568476080000,"y":15.07},{"x":1568476140000,"y":15.07},{"x":1568476200000,"y":15.06},{"x":1568476260000,"y":15.06},{"x":1568476320000,"y":15.1},{"x":1568476380000,"y":15.09},{"x":1568476440000,"y":15.09},{"x":1568476500000,"y":15.07},{"x":1568476560000,"y":15.07},{"x":1568476620000,"y":15.08},{"x":1568476680000,"y":15.07},{"x":1568476740000,"y":15.07},{"x":1568476800000,"y":15.08},{"x":1568476860000,"y":15.08},{"x":1568476920000,"y":15.1},{"x":1568476980000,"y":15.09},{"x":1568477040000,"y":15.09},{"x":1568477100000,"y":15.11},{"x":1568477160000,"y":15.1},{"x":1568477220000,"y":15.12},{"x":1568477280000,"y":15.09},{"x":1568477340000,"y":15.1},{"x":1568477400000,"y":15.1},{"x":1568477460000,"y":15.1},{"x":1568477520000,"y":15.11},{"x":1568477580000,"y":15.1},{"x":1568477640000,"y":15.1},{"x":1568477700000,"y":15.07},{"x":1568477760000,"y":15.07},{"x":1568477820000,"y":15.07},{"x":1568477880000,"y":15.11},{"x":1568477940000,"y":15.1},{"x":1568478000000,"y":15.1},{"x":1568478060000,"y":15.1},{"x":1568478120000,"y":15.1},{"x":1568478180000,"y":15.11},{"x":1568478240000,"y":15.1},{"x":1568478300000,"y":15.1},{"x":1568478360000,"y":15.1},{"x":1568478420000,"y":15.1},{"x":1568478480000,"y":15.08},{"x":1568478540000,"y":15.07},{"x":1568478600000,"y":15.07},{"x":1568478660000,"y":15.08},{"x":1568478720000,"y":15.08},{"x":1568478780000,"y":15.1},{"x":1568478840000,"y":15.09},{"x":1568478900000,"y":15.1},{"x":1568478960000,"y":15.1},{"x":1568479020000,"y":15.1},{"x":1568479080000,"y":15.11},{"x":1568479140000,"y":15.1},{"x":1568479200000,"y":15.09},{"x":1568479260000,"y":15.09},{"x":1568479320000,"y":15.09},{"x":1568479380000,"y":15.11},{"x":1568479440000,"y":15.1},{"x":1568479500000,"y":15.1},{"x":1568479560000,"y":15.1},{"x":1568479620000,"y":15.1},{"x":1568479680000,"y":15.11},{"x":1568479740000,"y":15.09},{"x":1568479800000,"y":15.1},{"x":1568479860000,"y":15.1},{"x":1568479920000,"y":15.09},{"x":1568479980000,"y":15.1},{"x":1568480040000,"y":15.11},{"x":1568480100000,"y":15.1},{"x":1568480160000,"y":15.1},{"x":1568480220000,"y":15.1},{"x":1568480280000,"y":15.1},{"x":1568480340000,"y":15.11},{"x":1568480400000,"y":15.1},{"x":1568480460000,"y":15.1},{"x":1568480520000,"y":15.1},{"x":1568480580000,"y":15.1},{"x":1568480640000,"y":15.09},{"x":1568480700000,"y":15.08},{"x":1568480760000,"y":15.08},{"x":1568480820000,"y":15.08},{"x":1568480880000,"y":15.08},{"x":1568480940000,"y":15.09},{"x":1568481000000,"y":15.08},{"x":1568481060000,"y":15.08},{"x":1568481120000,"y":15.08},{"x":1568481180000,"y":15.08},{"x":1568481240000,"y":15.09},{"x":1568481300000,"y":15.09},{"x":1568481360000,"y":15.09},{"x":1568481420000,"y":15.09},{"x":1568481480000,"y":15.09},{"x":1568481540000,"y":15.09},{"x":1568481600000,"y":15.07},{"x":1568481660000,"y":15.07},{"x":1568481720000,"y":15.07},{"x":1568481780000,"y":15.07},{"x":1568481840000,"y":15.08},{"x":1568481900000,"y":15.06},{"x":1568481960000,"y":15.06},{"x":1568482020000,"y":15.06},{"x":1568482080000,"y":15.06},{"x":1568482140000,"y":15.07},{"x":1568482200000,"y":15.08},{"x":1568482260000,"y":15.08},{"x":1568482320000,"y":15.08},{"x":1568482380000,"y":15.08},{"x":1568482440000,"y":15.08},{"x":1568482500000,"y":15.08},{"x":1568482560000,"y":15.06},{"x":1568482620000,"y":15.06},{"x":1568482680000,"y":15.06},{"x":1568482740000,"y":15.08},{"x":1568482800000,"y":15.1},{"x":1568482860000,"y":15.08},{"x":1568482920000,"y":15.08},{"x":1568482980000,"y":15.08},{"x":1568483040000,"y":15.08},{"x":1568483100000,"y":15.1},{"x":1568483160000,"y":15.08},{"x":1568483220000,"y":15.08},{"x":1568483280000,"y":15.08},{"x":1568483340000,"y":15.08},{"x":1568483400000,"y":15.11},{"x":1568483460000,"y":15.1},{"x":1568483520000,"y":15.09},{"x":1568483580000,"y":15.1},{"x":1568483640000,"y":15.1},{"x":1568483700000,"y":15.08},{"x":1568483760000,"y":15.08},{"x":1568483820000,"y":15.07},{"x":1568483880000,"y":15.08},{"x":1568483940000,"y":15.08},{"x":1568484000000,"y":15.09},{"x":1568484060000,"y":15.1},{"x":1568484120000,"y":15.1},{"x":1568484180000,"y":15.1},{"x":1568484240000,"y":15.1},{"x":1568484300000,"y":15.1},{"x":1568484360000,"y":15.1},{"x":1568484420000,"y":15.09},{"x":1568484480000,"y":15.09},{"x":1568484540000,"y":15.09},{"x":1568484600000,"y":15.1},{"x":1568484660000,"y":15.07},{"x":1568484720000,"y":15.06},{"x":1568484780000,"y":15.06},{"x":1568484840000,"y":15.06},{"x":1568484900000,"y":15.09},{"x":1568484960000,"y":15.1},{"x":1568485020000,"y":15.1},{"x":1568485080000,"y":15.1},{"x":1568485140000,"y":15.1},{"x":1568485200000,"y":15.1},{"x":1568485260000,"y":15.11},{"x":1568485320000,"y":15.1},{"x":1568485380000,"y":15.09},{"x":1568485440000,"y":15.09},{"x":1568485500000,"y":15.08},{"x":1568485560000,"y":15.1},{"x":1568485620000,"y":15.09},{"x":1568485680000,"y":15.1},{"x":1568485740000,"y":15.1},{"x":1568485800000,"y":15.09},{"x":1568485860000,"y":15.09},{"x":1568485920000,"y":15.1},{"x":1568485980000,"y":15.1},{"x":1568486040000,"y":15.1},{"x":1568486100000,"y":15.1},{"x":1568486160000,"y":15.1},{"x":1568486220000,"y":15.09},{"x":1568486280000,"y":15.1},{"x":1568486340000,"y":15.1},{"x":1568486400000,"y":15.07},{"x":1568486460000,"y":15.08},{"x":1568486520000,"y":15.07},{"x":1568486580000,"y":15.08},{"x":1568486640000,"y":15.08},{"x":1568486700000,"y":15.09},{"x":1568486760000,"y":15.09},{"x":1568486820000,"y":15.11},{"x":1568486880000,"y":15.1},{"x":1568486940000,"y":15.1},{"x":1568487000000,"y":15.1},{"x":1568487060000,"y":15.1},{"x":1568487120000,"y":15.11},{"x":1568487180000,"y":15.1},{"x":1568487240000,"y":15.09},{"x":1568487300000,"y":15.09},{"x":1568487360000,"y":15.09},{"x":1568487420000,"y":15.11},{"x":1568487480000,"y":15.1},{"x":1568487540000,"y":15.1},{"x":1568487600000,"y":15.1},{"x":1568487660000,"y":15.1},{"x":1568487720000,"y":15.1},{"x":1568487780000,"y":15.08},{"x":1568487840000,"y":15.08},{"x":1568487900000,"y":15.07},{"x":1568487960000,"y":15.07},{"x":1568488020000,"y":15.08},{"x":1568488080000,"y":15.09},{"x":1568488140000,"y":15.09},{"x":1568488200000,"y":15.1},{"x":1568488260000,"y":15.1},{"x":1568488320000,"y":15.11},{"x":1568488380000,"y":15.1},{"x":1568488440000,"y":15.1},{"x":1568488500000,"y":15.08},{"x":1568488560000,"y":15.08},{"x":1568488620000,"y":15.09},{"x":1568488680000,"y":15.1},{"x":1568488740000,"y":15.1},{"x":1568488800000,"y":15.08},{"x":1568488860000,"y":15.08},{"x":1568488920000,"y":15.07},{"x":1568488980000,"y":15.1},{"x":1568489040000,"y":15.1},{"x":1568489100000,"y":15.1},{"x":1568489160000,"y":15.1},{"x":1568489220000,"y":15.1},{"x":1568489280000,"y":15.11},{"x":1568489340000,"y":15.1},{"x":1568489400000,"y":15.11},{"x":1568489460000,"y":15.11},{"x":1568489520000,"y":15.11},{"x":1568489580000,"y":15.12},{"x":1568489640000,"y":15.09},{"x":1568489700000,"y":15.1},{"x":1568489760000,"y":15.09},{"x":1568489820000,"y":15.09},{"x":1568489880000,"y":15.1},{"x":1568489940000,"y":15.08},{"x":1568490000000,"y":15.05},{"x":1568490060000,"y":15.05},{"x":1568490120000,"y":15.05},{"x":1568490180000,"y":15.07},{"x":1568490240000,"y":15.09},{"x":1568490300000,"y":15.1},{"x":1568490360000,"y":15.1},{"x":1568490420000,"y":15.1},{"x":1568490480000,"y":15.1},{"x":1568490540000,"y":15.09},{"x":1568490600000,"y":15.08},{"x":1568490660000,"y":15.08},{"x":1568490720000,"y":15.08},{"x":1568490780000,"y":15.09},{"x":1568490840000,"y":15.09},{"x":1568490900000,"y":15.05},{"x":1568490960000,"y":15.05},{"x":1568491020000,"y":15.05},{"x":1568491080000,"y":15.05},{"x":1568491140000,"y":15.09},{"x":1568491200000,"y":15.08},{"x":1568491260000,"y":15.08},{"x":1568491320000,"y":15.08},{"x":1568491380000,"y":15.08},{"x":1568491440000,"y":15.11},{"x":1568491500000,"y":15.1},{"x":1568491560000,"y":15.09},{"x":1568491620000,"y":15.09},{"x":1568491680000,"y":15.09},{"x":1568491740000,"y":15.1},{"x":1568491800000,"y":15.09},{"x":1568491860000,"y":15.09},{"x":1568491920000,"y":15.09},{"x":1568491980000,"y":15.09},{"x":1568492040000,"y":15.1},{"x":1568492100000,"y":15.08},{"x":1568492160000,"y":15.08},{"x":1568492220000,"y":15.07},{"x":1568492280000,"y":15.08},{"x":1568492340000,"y":15.09},{"x":1568492400000,"y":15.05},{"x":1568492460000,"y":15.05},{"x":1568492520000,"y":15.05},{"x":1568492580000,"y":15.06},{"x":1568492640000,"y":15.07},{"x":1568492700000,"y":15.09},{"x":1568492760000,"y":15.09},{"x":1568492820000,"y":15.09},{"x":1568492880000,"y":15.09},{"x":1568492940000,"y":15.1},{"x":1568493000000,"y":15.08},{"x":1568493060000,"y":15.08},{"x":1568493120000,"y":15.08},{"x":1568493180000,"y":15.08},{"x":1568493240000,"y":15.08},{"x":1568493300000,"y":15.09},{"x":1568493360000,"y":15.08},{"x":1568493420000,"y":15.08},{"x":1568493480000,"y":15.08},{"x":1568493540000,"y":15.09},{"x":1568493600000,"y":15.1},{"x":1568493660000,"y":15.1},{"x":1568493720000,"y":15.1},{"x":1568493780000,"y":15.09},{"x":1568493840000,"y":15.09},{"x":1568493900000,"y":15.1},{"x":1568493960000,"y":15.1},{"x":1568494020000,"y":15.09},{"x":1568494080000,"y":15.09},{"x":1568494140000,"y":15.09},{"x":1568494200000,"y":15.42},{"x":1568494260000,"y":15.15},{"x":1568494320000,"y":15.15},{"x":1568494380000,"y":15.16},{"x":1568494440000,"y":15.16},{"x":1568494500000,"y":15.15},{"x":1568494560000,"y":15.09},{"x":1568494620000,"y":15.09},{"x":1568494680000,"y":15.09},{"x":1568494740000,"y":15.09},{"x":1568494800000,"y":15.09},{"x":1568494860000,"y":15.1},{"x":1568494920000,"y":15.1},{"x":1568494980000,"y":15.1},{"x":1568495040000,"y":15.1},{"x":1568495100000,"y":15.09},{"x":1568495160000,"y":15.1},{"x":1568495220000,"y":15.09},{"x":1568495280000,"y":15.09},{"x":1568495340000,"y":15.09},{"x":1568495400000,"y":15.08},{"x":1568495460000,"y":15.1},{"x":1568495520000,"y":15.09},{"x":1568495580000,"y":15.09},{"x":1568495640000,"y":15.09},{"x":1568495700000,"y":15.06},{"x":1568495760000,"y":15.09},{"x":1568495820000,"y":15.08},{"x":1568495880000,"y":15.08},{"x":1568495940000,"y":15.08},{"x":1568496000000,"y":15.09},{"x":1568496060000,"y":15.1},{"x":1568496120000,"y":15.1},{"x":1568496180000,"y":15.1},{"x":1568496240000,"y":15.09},{"x":1568496300000,"y":15.09},{"x":1568496360000,"y":15.11},{"x":1568496420000,"y":15.1},{"x":1568496480000,"y":15.1},{"x":1568496540000,"y":15.09},{"x":1568496600000,"y":15.1},{"x":1568496660000,"y":15.11},{"x":1568496720000,"y":15.09},{"x":1568496780000,"y":15.09},{"x":1568496840000,"y":15.09},{"x":1568496900000,"y":15.1},{"x":1568496960000,"y":15.11},{"x":1568497020000,"y":15.11},{"x":1568497080000,"y":15.1},{"x":1568497140000,"y":15.09},{"x":1568497200000,"y":15.09},{"x":1568497260000,"y":15.1},{"x":1568497320000,"y":15.12},{"x":1568497380000,"y":15.1},{"x":1568497440000,"y":15.1},{"x":1568497500000,"y":15.1},{"x":1568497560000,"y":15.1},{"x":1568497620000,"y":15.11},{"x":1568497680000,"y":15.1},{"x":1568497740000,"y":15.1},{"x":1568497800000,"y":15.05},{"x":1568497860000,"y":15.04},{"x":1568497920000,"y":15.09},{"x":1568497980000,"y":15.1},{"x":1568498040000,"y":15.1},{"x":1568498100000,"y":15.1},{"x":1568498160000,"y":15.1},{"x":1568498220000,"y":15.12},{"x":1568498280000,"y":15.1},{"x":1568498340000,"y":15.1},{"x":1568498400000,"y":15.08},{"x":1568498460000,"y":15.07},{"x":1568498520000,"y":15.09},{"x":1568498580000,"y":15.1},{"x":1568498640000,"y":15.1},{"x":1568498700000,"y":15.1},{"x":1568498760000,"y":15.1},{"x":1568498820000,"y":15.11},{"x":1568498880000,"y":15.1},{"x":1568498940000,"y":15.11},{"x":1568499000000,"y":15.1},{"x":1568499060000,"y":15.09},{"x":1568499120000,"y":15.09},{"x":1568499180000,"y":15.08},{"x":1568499240000,"y":15.07},{"x":1568499300000,"y":15.08},{"x":1568499360000,"y":15.08},{"x":1568499420000,"y":15.08},{"x":1568499480000,"y":15.09},{"x":1568499540000,"y":15.08},{"x":1568499600000,"y":15.08},{"x":1568499660000,"y":15.08},{"x":1568499720000,"y":15.08},{"x":1568499780000,"y":15.1},{"x":1568499840000,"y":15.09},{"x":1568499900000,"y":15.09},{"x":1568499960000,"y":15.09},{"x":1568500020000,"y":15.09},{"x":1568500080000,"y":15.09},{"x":1568500140000,"y":15.07},{"x":1568500200000,"y":15.09},{"x":1568500260000,"y":15.09},{"x":1568500320000,"y":15.09},{"x":1568500380000,"y":15.1},{"x":1568500440000,"y":15.08},{"x":1568500500000,"y":15.08},{"x":1568500560000,"y":15.08},{"x":1568500620000,"y":15.07},{"x":1568500680000,"y":15.09},{"x":1568500740000,"y":15.09},{"x":1568500800000,"y":15.09},{"x":1568500860000,"y":15.09},{"x":1568500920000,"y":15.09},{"x":1568500980000,"y":15.1},{"x":1568501040000,"y":15.08},{"x":1568501100000,"y":15.08},{"x":1568501160000,"y":15.08},{"x":1568501220000,"y":15.08},{"x":1568501280000,"y":15.08},{"x":1568501340000,"y":15.08},{"x":1568501400000,"y":15.07},{"x":1568501460000,"y":15.08},{"x":1568501520000,"y":15.08},{"x":1568501580000,"y":15.08},{"x":1568501640000,"y":15.09},{"x":1568501700000,"y":15.09},{"x":1568501760000,"y":15.09},{"x":1568501820000,"y":15.09},{"x":1568501880000,"y":15.09},{"x":1568501940000,"y":15.1},{"x":1568502000000,"y":15.07},{"x":1568502060000,"y":15.07},{"x":1568502120000,"y":15.07},{"x":1568502180000,"y":15.07},{"x":1568502240000,"y":15.09},{"x":1568502300000,"y":15.1},{"x":1568502360000,"y":15.09},{"x":1568502420000,"y":15.09},{"x":1568502480000,"y":15.09},{"x":1568502540000,"y":15.1},{"x":1568502600000,"y":15.1},{"x":1568502660000,"y":15.1},{"x":1568502720000,"y":15.09},{"x":1568502780000,"y":15.09},{"x":1568502840000,"y":15.1},{"x":1568502900000,"y":15.09},{"x":1568502960000,"y":15.09},{"x":1568503020000,"y":15.09},{"x":1568503080000,"y":15.09},{"x":1568503140000,"y":15.1},{"x":1568503200000,"y":15.08},{"x":1568503260000,"y":15.08},{"x":1568503320000,"y":15.08},{"x":1568503380000,"y":15.08},{"x":1568503440000,"y":15.08},{"x":1568503500000,"y":15.09},{"x":1568503560000,"y":15.08},{"x":1568503620000,"y":15.08},{"x":1568503680000,"y":15.08},{"x":1568503740000,"y":15.08},{"x":1568503800000,"y":15.1},{"x":1568503860000,"y":15.07},{"x":1568503920000,"y":15.07},{"x":1568503980000,"y":15.08},{"x":1568504040000,"y":15.08},{"x":1568504100000,"y":15.08},{"x":1568504160000,"y":15.07},{"x":1568504220000,"y":15.07},{"x":1568504280000,"y":15.07},{"x":1568504340000,"y":15.09},{"x":1568504400000,"y":15.1},{"x":1568504460000,"y":15.08},{"x":1568504520000,"y":15.07},{"x":1568504580000,"y":15.08},{"x":1568504640000,"y":15.08},{"x":1568504700000,"y":15.09},{"x":1568504760000,"y":15.07},{"x":1568504820000,"y":15.07},{"x":1568504880000,"y":15.07},{"x":1568504940000,"y":15.07},{"x":1568505000000,"y":15.11},{"x":1568505060000,"y":15.1},{"x":1568505120000,"y":15.1},{"x":1568505180000,"y":15.1},{"x":1568505240000,"y":15.1},{"x":1568505300000,"y":15.09},{"x":1568505360000,"y":15.08},{"x":1568505420000,"y":15.08},{"x":1568505480000,"y":15.08},{"x":1568505540000,"y":15.08},{"x":1568505600000,"y":15.07},{"x":1568505660000,"y":15.1},{"x":1568505720000,"y":15.1},{"x":1568505780000,"y":15.09},{"x":1568505840000,"y":15.09},{"x":1568505900000,"y":15.1},{"x":1568505960000,"y":15.11},{"x":1568506020000,"y":15.1},{"x":1568506080000,"y":15.1},{"x":1568506140000,"y":15.09},{"x":1568506200000,"y":15.07},{"x":1568506260000,"y":15.09},{"x":1568506320000,"y":15.08},{"x":1568506380000,"y":15.08},{"x":1568506440000,"y":15.08},{"x":1568506500000,"y":15.09},{"x":1568506560000,"y":15.11},{"x":1568506620000,"y":15.1},{"x":1568506680000,"y":15.1},{"x":1568506740000,"y":15.1},{"x":1568506800000,"y":15.1},{"x":1568506860000,"y":15.11},{"x":1568506920000,"y":15.09},{"x":1568506980000,"y":15.1},{"x":1568507040000,"y":15.1},{"x":1568507100000,"y":15.08},{"x":1568507160000,"y":15.1},{"x":1568507220000,"y":15.1},{"x":1568507280000,"y":15.1},{"x":1568507340000,"y":15.1},{"x":1568507400000,"y":15.1},{"x":1568507460000,"y":15.11},{"x":1568507520000,"y":15.1},{"x":1568507580000,"y":15.1},{"x":1568507640000,"y":15.1},{"x":1568507700000,"y":15.09},{"x":1568507760000,"y":15.08},{"x":1568507820000,"y":15.11},{"x":1568507880000,"y":15.1},{"x":1568507940000,"y":15.1},{"x":1568508000000,"y":15.1},{"x":1568508060000,"y":15.1},{"x":1568508120000,"y":15.12},{"x":1568508180000,"y":15.11},{"x":1568508240000,"y":15.1},{"x":1568508300000,"y":15.07},{"x":1568508360000,"y":15.08},{"x":1568508420000,"y":15.09},{"x":1568508480000,"y":15.09},{"x":1568508540000,"y":15.09},{"x":1568508600000,"y":15.08},{"x":1568508660000,"y":15.08},{"x":1568508720000,"y":15.09},{"x":1568508780000,"y":15.08},{"x":1568508840000,"y":15.08},{"x":1568508900000,"y":15.06},{"x":1568508960000,"y":15.06},{"x":1568509020000,"y":15.08},{"x":1568509080000,"y":15.08},{"x":1568509140000,"y":15.08},{"x":1568509200000,"y":15.06},{"x":1568509260000,"y":15.06},{"x":1568509320000,"y":15.08},{"x":1568509380000,"y":15.09},{"x":1568509440000,"y":15.09},{"x":1568509500000,"y":15.08},{"x":1568509560000,"y":15.08},{"x":1568509620000,"y":15.09},{"x":1568509680000,"y":15.09},{"x":1568509740000,"y":15.06},{"x":1568509800000,"y":15.06},{"x":1568509860000,"y":15.06},{"x":1568509920000,"y":15.05},{"x":1568509980000,"y":15.09},{"x":1568510040000,"y":15.07},{"x":1568510100000,"y":15.07},{"x":1568510160000,"y":15.08},{"x":1568510220000,"y":15.09},{"x":1568510280000,"y":15.1},{"x":1568510340000,"y":15.09},{"x":1568510400000,"y":15.09},{"x":1568510460000,"y":15.09},{"x":1568510520000,"y":15.1},{"x":1568510580000,"y":15.1},{"x":1568510640000,"y":15.08},{"x":1568510700000,"y":15.09},{"x":1568510760000,"y":15.09},{"x":1568510820000,"y":15.09},{"x":1568510880000,"y":15.09},{"x":1568510940000,"y":15.07},{"x":1568511000000,"y":15.09},{"x":1568511060000,"y":15.09},{"x":1568511120000,"y":15.08},{"x":1568511180000,"y":15.1},{"x":1568511240000,"y":15.09},{"x":1568511300000,"y":15.08},{"x":1568511360000,"y":15.08},{"x":1568511420000,"y":15.08},{"x":1568511480000,"y":15.09},{"x":1568511540000,"y":15.09},{"x":1568511600000,"y":15.08},{"x":1568511660000,"y":15.08},{"x":1568511720000,"y":15.08},{"x":1568511780000,"y":15.09},{"x":1568511840000,"y":15.06},{"x":1568511900000,"y":15.09},{"x":1568511960000,"y":15.09},{"x":1568512020000,"y":15.09},{"x":1568512080000,"y":15.09},{"x":1568512140000,"y":15.09},{"x":1568512200000,"y":15.07},{"x":1568512260000,"y":15.08},{"x":1568512320000,"y":15.07},{"x":1568512380000,"y":15.07},{"x":1568512440000,"y":15.1},{"x":1568512500000,"y":15.08},{"x":1568512560000,"y":15.08},{"x":1568512620000,"y":15.08},{"x":1568512680000,"y":15.08},{"x":1568512740000,"y":15.1},{"x":1568512800000,"y":15.09},{"x":1568512860000,"y":15.09},{"x":1568512920000,"y":15.09},{"x":1568512980000,"y":15.09},{"x":1568513040000,"y":15.1},{"x":1568513100000,"y":15.09},{"x":1568513160000,"y":15.09},{"x":1568513220000,"y":15.08},{"x":1568513280000,"y":15.09},{"x":1568513340000,"y":15.11},{"x":1568513400000,"y":15.09},{"x":1568513460000,"y":15.09},{"x":1568513520000,"y":15.09},{"x":1568513580000,"y":15.09},{"x":1568513640000,"y":15.1},{"x":1568513700000,"y":15.07},{"x":1568513760000,"y":15.07},{"x":1568513820000,"y":15.07},{"x":1568513880000,"y":15.07},{"x":1568513940000,"y":15.08},{"x":1568514000000,"y":15.09},{"x":1568514060000,"y":15.09},{"x":1568514120000,"y":15.09},{"x":1568514180000,"y":15.09},{"x":1568514240000,"y":15.09},{"x":1568514300000,"y":15.11},{"x":1568514360000,"y":15.09},{"x":1568514420000,"y":15.09},{"x":1568514480000,"y":15.09},{"x":1568514540000,"y":15.09},{"x":1568514600000,"y":15.11},{"x":1568514660000,"y":15.09},{"x":1568514720000,"y":15.09},{"x":1568514780000,"y":15.1},{"x":1568514840000,"y":15.09},{"x":1568514900000,"y":15.11},{"x":1568514960000,"y":15.09},{"x":1568515020000,"y":15.09},{"x":1568515080000,"y":15.09},{"x":1568515140000,"y":15.1},{"x":1568515200000,"y":15.11},{"x":1568515260000,"y":15.1},{"x":1568515320000,"y":15.1},{"x":1568515380000,"y":15.1},{"x":1568515440000,"y":15.1},{"x":1568515500000,"y":15.11},{"x":1568515560000,"y":15.09},{"x":1568515620000,"y":15.09},{"x":1568515680000,"y":15.09},{"x":1568515740000,"y":15.09},{"x":1568515800000,"y":15.34},{"x":1568515860000,"y":15.16},{"x":1568515920000,"y":15.16},{"x":1568515980000,"y":15.16},{"x":1568516040000,"y":15.17},{"x":1568516100000,"y":15.17},{"x":1568516160000,"y":15.11},{"x":1568516220000,"y":15.11},{"x":1568516280000,"y":15.11},{"x":1568516340000,"y":15.11},{"x":1568516400000,"y":15.09},{"x":1568516460000,"y":15.11},{"x":1568516520000,"y":15.1},{"x":1568516580000,"y":15.1},{"x":1568516640000,"y":15.1},{"x":1568516700000,"y":15.1},{"x":1568516760000,"y":15.11},{"x":1568516820000,"y":15.1},{"x":1568516880000,"y":15.11},{"x":1568516940000,"y":15.11},{"x":1568517000000,"y":15.1},{"x":1568517060000,"y":15.11},{"x":1568517120000,"y":15.1},{"x":1568517180000,"y":15.11},{"x":1568517240000,"y":15.11},{"x":1568517300000,"y":15.11},{"x":1568517360000,"y":15.1},{"x":1568517420000,"y":15.08},{"x":1568517480000,"y":15.08},{"x":1568517540000,"y":15.08},{"x":1568517600000,"y":15.09},{"x":1568517660000,"y":15.1},{"x":1568517720000,"y":15.09},{"x":1568517780000,"y":15.08},{"x":1568517840000,"y":15.08},{"x":1568517900000,"y":15.09},{"x":1568517960000,"y":15.1},{"x":1568518020000,"y":15.08},{"x":1568518080000,"y":15.08},{"x":1568518140000,"y":15.08},{"x":1568518200000,"y":15.06},{"x":1568518260000,"y":15.07},{"x":1568518320000,"y":15.09},{"x":1568518380000,"y":15.09},{"x":1568518440000,"y":15.09},{"x":1568518500000,"y":15.08},{"x":1568518560000,"y":15.09},{"x":1568518620000,"y":15.1},{"x":1568518680000,"y":15.08},{"x":1568518740000,"y":15.08},{"x":1568518800000,"y":15.08},{"x":1568518860000,"y":15.08},{"x":1568518920000,"y":15.09},{"x":1568518980000,"y":15.07},{"x":1568519040000,"y":15.07},{"x":1568519100000,"y":15.08},{"x":1568519160000,"y":15.08},{"x":1568519220000,"y":15.1},{"x":1568519280000,"y":15.09},{"x":1568519340000,"y":15.09},{"x":1568519400000,"y":15.09},{"x":1568519460000,"y":15.09},{"x":1568519520000,"y":15.09},{"x":1568519580000,"y":15.07},{"x":1568519640000,"y":15.07},{"x":1568519700000,"y":15.09},{"x":1568519760000,"y":15.08},{"x":1568519820000,"y":15.09},{"x":1568519880000,"y":15.08},{"x":1568519940000,"y":15.09},{"x":1568520000000,"y":15.1},{"x":1568520060000,"y":15.1},{"x":1568520120000,"y":15.1},{"x":1568520180000,"y":15.06},{"x":1568520240000,"y":15.06},{"x":1568520300000,"y":15.1},{"x":1568520360000,"y":15.1},{"x":1568520420000,"y":15.1},{"x":1568520480000,"y":15.1},{"x":1568520540000,"y":15.09},{"x":1568520600000,"y":15.06},{"x":1568520660000,"y":15.07},{"x":1568520720000,"y":15.06},{"x":1568520780000,"y":15.08},{"x":1568520840000,"y":15.07},{"x":1568520900000,"y":15.1},{"x":1568520960000,"y":15.1},{"x":1568521020000,"y":15.1},{"x":1568521080000,"y":15.09},{"x":1568521140000,"y":15.06},{"x":1568521200000,"y":15.07},{"x":1568521260000,"y":15.07},{"x":1568521320000,"y":15.07},{"x":1568521380000,"y":15.1},{"x":1568521440000,"y":15.1},{"x":1568521500000,"y":15.09},{"x":1568521560000,"y":15.09},{"x":1568521620000,"y":15.09},{"x":1568521680000,"y":15.1},{"x":1568521740000,"y":15.1},{"x":1568521800000,"y":15.09},{"x":1568521860000,"y":15.08},{"x":1568521920000,"y":15.08},{"x":1568521980000,"y":15.1},{"x":1568522040000,"y":15.1},{"x":1568522100000,"y":15.1},{"x":1568522160000,"y":15.1},{"x":1568522220000,"y":15.1},{"x":1568522280000,"y":15.11},{"x":1568522340000,"y":15.09},{"x":1568522400000,"y":15.09},{"x":1568522460000,"y":15.09},{"x":1568522520000,"y":15.09},{"x":1568522580000,"y":15.09},{"x":1568522640000,"y":15.11},{"x":1568522700000,"y":15.09},{"x":1568522760000,"y":15.09},{"x":1568522820000,"y":15.09},{"x":1568522880000,"y":15.09},{"x":1568522940000,"y":15.11},{"x":1568523000000,"y":15.08},{"x":1568523060000,"y":15.08},{"x":1568523120000,"y":15.08},{"x":1568523180000,"y":15.08},{"x":1568523240000,"y":15.09},{"x":1568523300000,"y":15.08},{"x":1568523360000,"y":15.08},{"x":1568523420000,"y":15.08},{"x":1568523480000,"y":15.09},{"x":1568523540000,"y":15.1},{"x":1568523600000,"y":15.1},{"x":1568523660000,"y":15.1},{"x":1568523720000,"y":15.1},{"x":1568523780000,"y":15.1},{"x":1568523840000,"y":15.11},{"x":1568523900000,"y":15.1},{"x":1568523960000,"y":15.1},{"x":1568524020000,"y":15.1},{"x":1568524080000,"y":15.1},{"x":1568524140000,"y":15.11},{"x":1568524200000,"y":15.09},{"x":1568524260000,"y":15.09},{"x":1568524320000,"y":15.09},{"x":1568524380000,"y":15.09},{"x":1568524440000,"y":15.11},{"x":1568524500000,"y":15.09},{"x":1568524560000,"y":15.09},{"x":1568524620000,"y":15.09},{"x":1568524680000,"y":15.09},{"x":1568524740000,"y":15.09},{"x":1568524800000,"y":15.12},{"x":1568524860000,"y":15.1},{"x":1568524920000,"y":15.11},{"x":1568524980000,"y":15.11},{"x":1568525040000,"y":15.1},{"x":1568525100000,"y":15.11},{"x":1568525160000,"y":15.1},{"x":1568525220000,"y":15.1},{"x":1568525280000,"y":15.11},{"x":1568525340000,"y":15.11},{"x":1568525400000,"y":15.12},{"x":1568525460000,"y":15.1},{"x":1568525520000,"y":15.1},{"x":1568525580000,"y":15.1},{"x":1568525640000,"y":15.1},{"x":1568525700000,"y":15.11},{"x":1568525760000,"y":15.1},{"x":1568525820000,"y":15.1},{"x":1568525880000,"y":15.1},{"x":1568525940000,"y":15.1},{"x":1568526000000,"y":15.12},{"x":1568526060000,"y":15.11},{"x":1568526120000,"y":15.1},{"x":1568526180000,"y":15.1},{"x":1568526240000,"y":15.1},{"x":1568526300000,"y":15.1},{"x":1568526360000,"y":15.09},{"x":1568526420000,"y":15.09},{"x":1568526480000,"y":15.09},{"x":1568526540000,"y":15.09},{"x":1568526600000,"y":15.07},{"x":1568526660000,"y":15.1},{"x":1568526720000,"y":15.1},{"x":1568526780000,"y":15.1},{"x":1568526840000,"y":15.08},{"x":1568526900000,"y":15.08},{"x":1568526960000,"y":15.09},{"x":1568527020000,"y":15.08},{"x":1568527080000,"y":15.08},{"x":1568527140000,"y":15.09},{"x":1568527200000,"y":15.07},{"x":1568527260000,"y":15.09},{"x":1568527320000,"y":15.09},{"x":1568527380000,"y":15.09},{"x":1568527440000,"y":15.09},{"x":1568527500000,"y":15.09},{"x":1568527560000,"y":15.1},{"x":1568527620000,"y":15.09},{"x":1568527680000,"y":15.09},{"x":1568527740000,"y":15.07},{"x":1568527800000,"y":15.08},{"x":1568527860000,"y":15.09},{"x":1568527920000,"y":15.08},{"x":1568527980000,"y":15.08},{"x":1568528040000,"y":15.08},{"x":1568528100000,"y":15.06},{"x":1568528160000,"y":15.07},{"x":1568528220000,"y":15.06},{"x":1568528280000,"y":15.06},{"x":1568528340000,"y":15.06},{"x":1568528400000,"y":15.09},{"x":1568528460000,"y":15.1},{"x":1568528520000,"y":15.1},{"x":1568528580000,"y":15.1},{"x":1568528640000,"y":15.1},{"x":1568528700000,"y":15.08},{"x":1568528760000,"y":15.09},{"x":1568528820000,"y":15.09},{"x":1568528880000,"y":15.09},{"x":1568528940000,"y":15.09},{"x":1568529000000,"y":15.09},{"x":1568529060000,"y":15.09},{"x":1568529120000,"y":15.1},{"x":1568529180000,"y":15.09},{"x":1568529240000,"y":15.09},{"x":1568529300000,"y":15.08},{"x":1568529360000,"y":15.07},{"x":1568529420000,"y":15.09},{"x":1568529480000,"y":15.09},{"x":1568529540000,"y":15.09},{"x":1568529600000,"y":15.1},{"x":1568529660000,"y":15.1},{"x":1568529720000,"y":15.11},{"x":1568529780000,"y":15.1},{"x":1568529840000,"y":15.1},{"x":1568529900000,"y":15.07},{"x":1568529960000,"y":15.07},{"x":1568530020000,"y":15.1},{"x":1568530080000,"y":15.09},{"x":1568530140000,"y":15.09},{"x":1568530200000,"y":15.07},{"x":1568530260000,"y":15.07},{"x":1568530320000,"y":15.08},{"x":1568530380000,"y":15.08},{"x":1568530440000,"y":15.08},{"x":1568530500000,"y":15.1},{"x":1568530560000,"y":15.1},{"x":1568530620000,"y":15.11},{"x":1568530680000,"y":15.1},{"x":1568530740000,"y":15.1},{"x":1568530800000,"y":15.09},{"x":1568530860000,"y":15.09},{"x":1568530920000,"y":15.1},{"x":1568530980000,"y":15.07},{"x":1568531040000,"y":15.07},{"x":1568531100000,"y":15.08},{"x":1568531160000,"y":15.08},{"x":1568531220000,"y":15.09},{"x":1568531280000,"y":15.09},{"x":1568531340000,"y":15.09},{"x":1568531400000,"y":15.1},{"x":1568531460000,"y":15.1},{"x":1568531520000,"y":15.1},{"x":1568531580000,"y":15.1},{"x":1568531640000,"y":15.09},{"x":1568531700000,"y":15.09},{"x":1568531760000,"y":15.09},{"x":1568531820000,"y":15.1},{"x":1568531880000,"y":15.1},{"x":1568531940000,"y":15.1},{"x":1568532000000,"y":15.1},{"x":1568532060000,"y":15.1},{"x":1568532120000,"y":15.1},{"x":1568532180000,"y":15.11},{"x":1568532240000,"y":15.09},{"x":1568532300000,"y":15.07},{"x":1568532360000,"y":15.07},{"x":1568532420000,"y":15.07},{"x":1568532480000,"y":15.09},{"x":1568532540000,"y":15.1},{"x":1568532600000,"y":15.09},{"x":1568532660000,"y":15.09},{"x":1568532720000,"y":15.09},{"x":1568532780000,"y":15.1},{"x":1568532840000,"y":15.1},{"x":1568532900000,"y":15.1},{"x":1568532960000,"y":15.1},{"x":1568533020000,"y":15.1},{"x":1568533080000,"y":15.11},{"x":1568533140000,"y":15.09},{"x":1568533200000,"y":15.1},{"x":1568533260000,"y":15.1},{"x":1568533320000,"y":15.1},{"x":1568533380000,"y":15.11},{"x":1568533440000,"y":15.09},{"x":1568533500000,"y":15.09},{"x":1568533560000,"y":15.09},{"x":1568533620000,"y":15.09},{"x":1568533680000,"y":15.1},{"x":1568533740000,"y":15.1},{"x":1568533800000,"y":15.1},{"x":1568533860000,"y":15.1},{"x":1568533920000,"y":15.1},{"x":1568533980000,"y":15.11},{"x":1568534040000,"y":15.1},{"x":1568534100000,"y":15.1},{"x":1568534160000,"y":15.1},{"x":1568534220000,"y":15.1},{"x":1568534280000,"y":15.1},{"x":1568534340000,"y":15.11},{"x":1568534400000,"y":15.07},{"x":1568534460000,"y":15.07},{"x":1568534520000,"y":15.07},{"x":1568534580000,"y":15.07},{"x":1568534640000,"y":15.1},{"x":1568534700000,"y":15.09},{"x":1568534760000,"y":15.09},{"x":1568534820000,"y":15.09},{"x":1568534880000,"y":15.09},{"x":1568534940000,"y":15.11},{"x":1568535000000,"y":15.09},{"x":1568535060000,"y":15.09},{"x":1568535120000,"y":15.09},{"x":1568535180000,"y":15.09},{"x":1568535240000,"y":15.11},{"x":1568535300000,"y":15.1},{"x":1568535360000,"y":15.1},{"x":1568535420000,"y":15.1},{"x":1568535480000,"y":15.1},{"x":1568535540000,"y":15.12},{"x":1568535600000,"y":15.1},{"x":1568535660000,"y":15.1},{"x":1568535720000,"y":15.1},{"x":1568535780000,"y":15.11},{"x":1568535840000,"y":15.11},{"x":1568535900000,"y":15.1},{"x":1568535960000,"y":15.1},{"x":1568536020000,"y":15.1},{"x":1568536080000,"y":15.08},{"x":1568536140000,"y":15.28},{"x":1568536200000,"y":15.18},{"x":1568536260000,"y":15.18},{"x":1568536320000,"y":15.18},{"x":1568536380000,"y":15.18},{"x":1568536440000,"y":15.16},{"x":1568536500000,"y":15.1},{"x":1568536560000,"y":15.08},{"x":1568536620000,"y":15.08},{"x":1568536680000,"y":15.08},{"x":1568536740000,"y":15.12},{"x":1568536800000,"y":15.14},{"x":1568536860000,"y":15.12},{"x":1568536920000,"y":15.11},{"x":1568536980000,"y":15.11},{"x":1568537040000,"y":15.11},{"x":1568537100000,"y":15.12},{"x":1568537160000,"y":15.11},{"x":1568537220000,"y":15.11},{"x":1568537280000,"y":15.11},{"x":1568537340000,"y":15.11},{"x":1568537400000,"y":15.11},{"x":1568537460000,"y":15.11},{"x":1568537520000,"y":15.11},{"x":1568537580000,"y":15.11},{"x":1568537640000,"y":15.11},{"x":1568537700000,"y":15.43},{"x":1568537760000,"y":15.17},{"x":1568537820000,"y":15.17},{"x":1568537880000,"y":15.17},{"x":1568537940000,"y":15.17},{"x":1568538000000,"y":15.17},{"x":1568538060000,"y":15.12},{"x":1568538120000,"y":15.12},{"x":1568538180000,"y":15.11},{"x":1568538240000,"y":15.11},{"x":1568538300000,"y":15.11},{"x":1568538360000,"y":15.12},{"x":1568538420000,"y":15.12},{"x":1568538480000,"y":15.12},{"x":1568538540000,"y":15.11},{"x":1568538600000,"y":15.09},{"x":1568538660000,"y":15.11},{"x":1568538720000,"y":15.11},{"x":1568538780000,"y":15.11},{"x":1568538840000,"y":15.11},{"x":1568538900000,"y":15.11},{"x":1568538960000,"y":15.13},{"x":1568539020000,"y":15.11},{"x":1568539080000,"y":15.12},{"x":1568539140000,"y":15.12},{"x":1568539200000,"y":15.12},{"x":1568539260000,"y":15.12},{"x":1568539320000,"y":15.11},{"x":1568539380000,"y":15.11},{"x":1568539440000,"y":15.11},{"x":1568539500000,"y":15.12},{"x":1568539560000,"y":15.13},{"x":1568539620000,"y":15.11},{"x":1568539680000,"y":15.11},{"x":1568539740000,"y":15.11},{"x":1568539800000,"y":15.12},{"x":1568539860000,"y":15.13},{"x":1568539920000,"y":15.12},{"x":1568539980000,"y":15.11},{"x":1568540040000,"y":15.11},{"x":1568540100000,"y":15.11},{"x":1568540160000,"y":15.13},{"x":1568540220000,"y":15.12},{"x":1568540280000,"y":15.12},{"x":1568540340000,"y":15.12},{"x":1568540400000,"y":15.11},{"x":1568540460000,"y":15.11},{"x":1568540520000,"y":15.1},{"x":1568540580000,"y":15.1},{"x":1568540640000,"y":15.09},{"x":1568540700000,"y":15.1},{"x":1568540760000,"y":15.11},{"x":1568540820000,"y":15.1},{"x":1568540880000,"y":15.1},{"x":1568540940000,"y":15.1},{"x":1568541000000,"y":15.1},{"x":1568541060000,"y":15.11},{"x":1568541120000,"y":15.12},{"x":1568541180000,"y":15.12},{"x":1568541240000,"y":15.12},{"x":1568541300000,"y":15.12},{"x":1568541360000,"y":15.12},{"x":1568541420000,"y":15.13},{"x":1568541480000,"y":15.12},{"x":1568541540000,"y":15.12},{"x":1568541600000,"y":15.09},{"x":1568541660000,"y":15.09},{"x":1568541720000,"y":15.11},{"x":1568541780000,"y":15.09},{"x":1568541840000,"y":15.09},{"x":1568541900000,"y":15.13},{"x":1568541960000,"y":15.13},{"x":1568542020000,"y":15.14},{"x":1568542080000,"y":15.13},{"x":1568542140000,"y":15.11},{"x":1568542200000,"y":15.11},{"x":1568542260000,"y":15.11},{"x":1568542320000,"y":15.13},{"x":1568542380000,"y":15.11},{"x":1568542440000,"y":15.11},{"x":1568542500000,"y":15.12},{"x":1568542560000,"y":15.12},{"x":1568542620000,"y":15.13},{"x":1568542680000,"y":15.12},{"x":1568542740000,"y":15.12},{"x":1568542800000,"y":15.12},{"x":1568542860000,"y":15.12},{"x":1568542920000,"y":15.13},{"x":1568542980000,"y":15.12},{"x":1568543040000,"y":15.12},{"x":1568543100000,"y":15.12},{"x":1568543160000,"y":15.12},{"x":1568543220000,"y":15.13},{"x":1568543280000,"y":15.12},{"x":1568543340000,"y":15.12},{"x":1568543400000,"y":15.12},{"x":1568543460000,"y":15.12},{"x":1568543520000,"y":15.12},{"x":1568543580000,"y":15.13},{"x":1568543640000,"y":15.12},{"x":1568543700000,"y":15.12},{"x":1568543760000,"y":15.12},{"x":1568543820000,"y":15.11},{"x":1568543880000,"y":15.13},{"x":1568543940000,"y":15.11},{"x":1568544000000,"y":15.14},{"x":1568544060000,"y":15.14},{"x":1568544120000,"y":15.14},{"x":1568544180000,"y":15.14},{"x":1568544240000,"y":15.13},{"x":1568544300000,"y":15.12},{"x":1568544360000,"y":15.12},{"x":1568544420000,"y":15.12},{"x":1568544480000,"y":15.14},{"x":1568544540000,"y":15.13},{"x":1568544600000,"y":15.13},{"x":1568544660000,"y":15.13},{"x":1568544720000,"y":15.13},{"x":1568544780000,"y":15.14},{"x":1568544840000,"y":15.13},{"x":1568544900000,"y":15.13},{"x":1568544960000,"y":15.13},{"x":1568545020000,"y":15.13},{"x":1568545080000,"y":15.14},{"x":1568545140000,"y":15.12},{"x":1568545200000,"y":15.76},{"x":1568545260000,"y":15.21},{"x":1568545320000,"y":15.21},{"x":1568545380000,"y":15.22},{"x":1568545440000,"y":15.21},{"x":1568545500000,"y":15.18},{"x":1568545560000,"y":15.14},{"x":1568545620000,"y":15.14},{"x":1568545680000,"y":15.15},{"x":1568545740000,"y":15.14},{"x":1568545800000,"y":15.14},{"x":1568545860000,"y":15.14},{"x":1568545920000,"y":15.14},{"x":1568545980000,"y":15.14},{"x":1568546040000,"y":15.15},{"x":1568546100000,"y":15.14},{"x":1568546160000,"y":15.15},{"x":1568546220000,"y":15.14},{"x":1568546280000,"y":15.14},{"x":1568546340000,"y":15.15},{"x":1568546400000,"y":15.14},{"x":1568546460000,"y":15.14},{"x":1568546520000,"y":15.14},{"x":1568546580000,"y":15.14},{"x":1568546640000,"y":15.15},{"x":1568546700000,"y":15.17},{"x":1568546760000,"y":15.12},{"x":1568546820000,"y":15.11},{"x":1568546880000,"y":15.11},{"x":1568546940000,"y":15.14},{"x":1568547000000,"y":15.15},{"x":1568547060000,"y":15.15},{"x":1568547120000,"y":15.14},{"x":1568547180000,"y":15.14},{"x":1568547240000,"y":15.15},{"x":1568547300000,"y":15.13},{"x":1568547360000,"y":15.13},{"x":1568547420000,"y":15.13},{"x":1568547480000,"y":15.13},{"x":1568547540000,"y":15.17},{"x":1568547600000,"y":15.16},{"x":1568547660000,"y":15.15},{"x":1568547720000,"y":15.15},{"x":1568547780000,"y":15.16},{"x":1568547840000,"y":15.16},{"x":1568547900000,"y":15.11},{"x":1568547960000,"y":15.11},{"x":1568548020000,"y":15.12},{"x":1568548080000,"y":15.12},{"x":1568548140000,"y":15.13},{"x":1568548200000,"y":15.15},{"x":1568548260000,"y":15.15},{"x":1568548320000,"y":15.15},{"x":1568548380000,"y":15.15},{"x":1568548440000,"y":15.15},{"x":1568548500000,"y":15.13},{"x":1568548560000,"y":15.11},{"x":1568548620000,"y":15.11},{"x":1568548680000,"y":15.11},{"x":1568548740000,"y":15.11},{"x":1568548800000,"y":15.16},{"x":1568548860000,"y":15.15},{"x":1568548920000,"y":15.15},{"x":1568548980000,"y":15.15},{"x":1568549040000,"y":15.15},{"x":1568549100000,"y":15.16},{"x":1568549160000,"y":15.15},{"x":1568549220000,"y":15.15},{"x":1568549280000,"y":15.15},{"x":1568549340000,"y":15.15},{"x":1568549400000,"y":15.16},{"x":1568549460000,"y":15.14},{"x":1568549520000,"y":15.14},{"x":1568549580000,"y":15.14},{"x":1568549640000,"y":15.14},{"x":1568549700000,"y":15.15},{"x":1568549760000,"y":15.15},{"x":1568549820000,"y":15.15},{"x":1568549880000,"y":15.15},{"x":1568549940000,"y":15.15},{"x":1568550000000,"y":15.16},{"x":1568550060000,"y":15.15},{"x":1568550120000,"y":15.15},{"x":1568550180000,"y":15.15},{"x":1568550240000,"y":15.15},{"x":1568550300000,"y":15.16},{"x":1568550360000,"y":15.15},{"x":1568550420000,"y":15.15},{"x":1568550480000,"y":15.15},{"x":1568550540000,"y":15.15},{"x":1568550600000,"y":15.14},{"x":1568550660000,"y":15.15},{"x":1568550720000,"y":15.15},{"x":1568550780000,"y":15.15},{"x":1568550840000,"y":15.15},{"x":1568550900000,"y":15.16},{"x":1568550960000,"y":15.16},{"x":1568551020000,"y":15.16},{"x":1568551080000,"y":15.15},{"x":1568551140000,"y":15.15},{"x":1568551200000,"y":15.16},{"x":1568551260000,"y":15.16},{"x":1568551320000,"y":15.15},{"x":1568551380000,"y":15.15},{"x":1568551440000,"y":15.15},{"x":1568551500000,"y":15.15},{"x":1568551560000,"y":15.16},{"x":1568551620000,"y":15.15},{"x":1568551680000,"y":15.16},{"x":1568551740000,"y":15.15},{"x":1568551800000,"y":15.15},{"x":1568551860000,"y":15.17},{"x":1568551920000,"y":15.16},{"x":1568551980000,"y":15.16},{"x":1568552040000,"y":15.16},{"x":1568552100000,"y":15.16},{"x":1568552160000,"y":15.17},{"x":1568552220000,"y":15.16},{"x":1568552280000,"y":15.16},{"x":1568552340000,"y":15.16},{"x":1568552400000,"y":15.13},{"x":1568552460000,"y":15.15},{"x":1568552520000,"y":15.15},{"x":1568552580000,"y":15.15},{"x":1568552640000,"y":15.15},{"x":1568552700000,"y":15.16},{"x":1568552760000,"y":15.16},{"x":1568552820000,"y":15.15},{"x":1568552880000,"y":15.15},{"x":1568552940000,"y":15.16},{"x":1568553000000,"y":15.15},{"x":1568553060000,"y":15.17},{"x":1568553120000,"y":15.17},{"x":1568553180000,"y":15.17},{"x":1568553240000,"y":15.17},{"x":1568553300000,"y":15.37},{"x":1568553360000,"y":15.37},{"x":1568553420000,"y":15.39},{"x":1568553480000,"y":15.37},{"x":1568553540000,"y":15.37},{"x":1568553600000,"y":15.37},{"x":1568553660000,"y":15.37},{"x":1568553720000,"y":15.38},{"x":1568553780000,"y":15.38},{"x":1568553840000,"y":15.37},{"x":1568553900000,"y":15.38},{"x":1568553960000,"y":15.38},{"x":1568554020000,"y":15.39},{"x":1568554080000,"y":15.38},{"x":1568554140000,"y":15.38},{"x":1568554200000,"y":15.37},{"x":1568554260000,"y":15.37},{"x":1568554320000,"y":15.39},{"x":1568554380000,"y":15.38},{"x":1568554440000,"y":15.37},{"x":1568554500000,"y":15.36},{"x":1568554560000,"y":15.36},{"x":1568554620000,"y":15.37},{"x":1568554680000,"y":15.36},{"x":1568554740000,"y":15.36},{"x":1568554800000,"y":15.32},{"x":1568554860000,"y":15.32},{"x":1568554920000,"y":15.34},{"x":1568554980000,"y":15.35},{"x":1568555040000,"y":15.35},{"x":1568555100000,"y":15.36},{"x":1568555160000,"y":15.35},{"x":1568555220000,"y":15.36},{"x":1568555280000,"y":15.36},{"x":1568555340000,"y":15.36},{"x":1568555400000,"y":15.36},{"x":1568555460000,"y":15.36},{"x":1568555520000,"y":15.38},{"x":1568555580000,"y":15.35},{"x":1568555640000,"y":15.35},{"x":1568555700000,"y":15.35},{"x":1568555760000,"y":15.35},{"x":1568555820000,"y":15.35},{"x":1568555880000,"y":15.36},{"x":1568555940000,"y":15.35},{"x":1568556000000,"y":15.35},{"x":1568556060000,"y":15.35},{"x":1568556120000,"y":15.35},{"x":1568556180000,"y":15.36},{"x":1568556240000,"y":15.36},{"x":1568556300000,"y":15.36},{"x":1568556360000,"y":15.35},{"x":1568556420000,"y":15.35},{"x":1568556480000,"y":15.37},{"x":1568556540000,"y":15.35},{"x":1568556600000,"y":15.36},{"x":1568556660000,"y":15.36},{"x":1568556720000,"y":15.36},{"x":1568556780000,"y":15.36},{"x":1568556840000,"y":15.33},{"x":1568556900000,"y":15.34},{"x":1568556960000,"y":15.34},{"x":1568557020000,"y":15.34},{"x":1568557080000,"y":15.36},{"x":1568557140000,"y":15.37},{"x":1568557200000,"y":15.34},{"x":1568557260000,"y":15.34},{"x":1568557320000,"y":15.34},{"x":1568557380000,"y":15.37},{"x":1568557440000,"y":15.36},{"x":1568557500000,"y":15.37},{"x":1568557560000,"y":15.37},{"x":1568557620000,"y":15.37},{"x":1568557680000,"y":15.38},{"x":1568557740000,"y":15.37},{"x":1568557800000,"y":15.35},{"x":1568557860000,"y":15.35},{"x":1568557920000,"y":15.35},{"x":1568557980000,"y":15.36},{"x":1568558040000,"y":15.37},{"x":1568558100000,"y":15.34},{"x":1568558160000,"y":15.33},{"x":1568558220000,"y":15.33},{"x":1568558280000,"y":15.33},{"x":1568558340000,"y":15.35},{"x":1568558400000,"y":15.37},{"x":1568558460000,"y":15.37},{"x":1568558520000,"y":15.37},{"x":1568558580000,"y":15.37},{"x":1568558640000,"y":15.37},{"x":1568558700000,"y":15.35},{"x":1568558760000,"y":15.35},{"x":1568558820000,"y":15.35},{"x":1568558880000,"y":15.35},{"x":1568558940000,"y":15.36},{"x":1568559000000,"y":15.35},{"x":1568559060000,"y":15.35},{"x":1568559120000,"y":15.35},{"x":1568559180000,"y":15.35},{"x":1568559240000,"y":15.36},{"x":1568559300000,"y":15.37},{"x":1568559360000,"y":15.37},{"x":1568559420000,"y":15.37},{"x":1568559480000,"y":15.37},{"x":1568559540000,"y":15.72},{"x":1568559600000,"y":15.4},{"x":1568559660000,"y":15.4},{"x":1568559720000,"y":15.4},{"x":1568559780000,"y":15.4},{"x":1568559840000,"y":15.41},{"x":1568559900000,"y":15.34},{"x":1568559960000,"y":15.34},{"x":1568560020000,"y":15.34},{"x":1568560080000,"y":15.34},{"x":1568560140000,"y":15.38},{"x":1568560200000,"y":15.37},{"x":1568560260000,"y":15.37},{"x":1568560320000,"y":15.37},{"x":1568560380000,"y":15.37},{"x":1568560440000,"y":15.38},{"x":1568560500000,"y":15.37},{"x":1568560560000,"y":15.37},{"x":1568560620000,"y":15.37},{"x":1568560680000,"y":15.37},{"x":1568560740000,"y":15.37},{"x":1568560800000,"y":15.4},{"x":1568560860000,"y":15.38},{"x":1568560920000,"y":15.38},{"x":1568560980000,"y":15.38},{"x":1568561040000,"y":15.38},{"x":1568561100000,"y":15.38},{"x":1568561160000,"y":15.36},{"x":1568561220000,"y":15.36},{"x":1568561280000,"y":15.37},{"x":1568561340000,"y":15.37},{"x":1568561400000,"y":15.39},{"x":1568561460000,"y":15.37},{"x":1568561520000,"y":15.37},{"x":1568561580000,"y":15.37},{"x":1568561640000,"y":15.37},{"x":1568561700000,"y":15.37},{"x":1568561760000,"y":15.36},{"x":1568561820000,"y":15.36},{"x":1568561880000,"y":15.36},{"x":1568561940000,"y":15.36},{"x":1568562000000,"y":15.39},{"x":1568562060000,"y":15.37},{"x":1568562120000,"y":15.37},{"x":1568562180000,"y":15.37},{"x":1568562240000,"y":15.37},{"x":1568562300000,"y":15.37},{"x":1568562360000,"y":15.38},{"x":1568562420000,"y":15.37},{"x":1568562480000,"y":15.37},{"x":1568562540000,"y":15.37},{"x":1568562600000,"y":15.36},{"x":1568562660000,"y":15.37},{"x":1568562720000,"y":15.37},{"x":1568562780000,"y":15.37},{"x":1568562840000,"y":15.37},{"x":1568562900000,"y":15.38},{"x":1568562960000,"y":15.39},{"x":1568563020000,"y":15.38},{"x":1568563080000,"y":15.38},{"x":1568563140000,"y":15.38},{"x":1568563200000,"y":15.38},{"x":1568563260000,"y":15.39},{"x":1568563320000,"y":15.38},{"x":1568563380000,"y":15.38},{"x":1568563440000,"y":15.38},{"x":1568563500000,"y":15.38},{"x":1568563560000,"y":15.38},{"x":1568563620000,"y":15.37},{"x":1568563680000,"y":15.37},{"x":1568563740000,"y":15.36},{"x":1568563800000,"y":15.35},{"x":1568563860000,"y":15.37},{"x":1568563920000,"y":15.35},{"x":1568563980000,"y":15.35},{"x":1568564040000,"y":15.35},{"x":1568564100000,"y":15.35},{"x":1568564160000,"y":15.36},{"x":1568564220000,"y":15.36},{"x":1568564280000,"y":15.36},{"x":1568564340000,"y":15.36},{"x":1568564400000,"y":15.34},{"x":1568564460000,"y":15.36},{"x":1568564520000,"y":15.36},{"x":1568564580000,"y":15.36},{"x":1568564640000,"y":15.36},{"x":1568564700000,"y":15.34},{"x":1568564760000,"y":15.35},{"x":1568564820000,"y":15.35},{"x":1568564880000,"y":15.35},{"x":1568564940000,"y":15.35},{"x":1568565000000,"y":15.34},{"x":1568565060000,"y":15.36},{"x":1568565120000,"y":15.36},{"x":1568565180000,"y":15.36},{"x":1568565240000,"y":15.36},{"x":1568565300000,"y":15.36},{"x":1568565360000,"y":15.36},{"x":1568565420000,"y":15.38},{"x":1568565480000,"y":15.36},{"x":1568565540000,"y":15.37},{"x":1568565600000,"y":15.35},{"x":1568565660000,"y":15.35},{"x":1568565720000,"y":15.36},{"x":1568565780000,"y":15.35},{"x":1568565840000,"y":15.35},{"x":1568565900000,"y":15.35},{"x":1568565960000,"y":15.35},{"x":1568566020000,"y":15.37},{"x":1568566080000,"y":15.37},{"x":1568566140000,"y":15.37},{"x":1568566200000,"y":15.37},{"x":1568566260000,"y":15.37},{"x":1568566320000,"y":15.38},{"x":1568566380000,"y":15.37},{"x":1568566440000,"y":15.37},{"x":1568566500000,"y":15.37},{"x":1568566560000,"y":15.37},{"x":1568566620000,"y":15.38},{"x":1568566680000,"y":15.38},{"x":1568566740000,"y":15.37},{"x":1568566800000,"y":15.36},{"x":1568566860000,"y":15.36},{"x":1568566920000,"y":15.37},{"x":1568566980000,"y":15.37},{"x":1568567040000,"y":15.37},{"x":1568567100000,"y":15.37},{"x":1568567160000,"y":15.37},{"x":1568567220000,"y":15.38},{"x":1568567280000,"y":15.36},{"x":1568567340000,"y":15.37},{"x":1568567400000,"y":15.37},{"x":1568567460000,"y":15.37},{"x":1568567520000,"y":15.37},{"x":1568567580000,"y":15.37},{"x":1568567640000,"y":15.36},{"x":1568567700000,"y":15.35},{"x":1568567760000,"y":15.35},{"x":1568567820000,"y":15.35},{"x":1568567880000,"y":15.37},{"x":1568567940000,"y":15.36},{"x":1568568000000,"y":15.36},{"x":1568568060000,"y":15.36},{"x":1568568120000,"y":15.36},{"x":1568568180000,"y":15.39},{"x":1568568240000,"y":15.38},{"x":1568568300000,"y":15.37},{"x":1568568360000,"y":15.37},{"x":1568568420000,"y":15.37},{"x":1568568480000,"y":15.38},{"x":1568568540000,"y":15.37},{"x":1568568600000,"y":15.36},{"x":1568568660000,"y":15.36},{"x":1568568720000,"y":15.36},{"x":1568568780000,"y":15.38},{"x":1568568840000,"y":15.37},{"x":1568568900000,"y":15.37},{"x":1568568960000,"y":15.37},{"x":1568569020000,"y":15.37},{"x":1568569080000,"y":15.38},{"x":1568569140000,"y":15.35},{"x":1568569200000,"y":15.35},{"x":1568569260000,"y":15.35},{"x":1568569320000,"y":15.35},{"x":1568569380000,"y":15.37},{"x":1568569440000,"y":15.38},{"x":1568569500000,"y":15.38},{"x":1568569560000,"y":15.37},{"x":1568569620000,"y":15.37},{"x":1568569680000,"y":15.37},{"x":1568569740000,"y":15.39},{"x":1568569800000,"y":15.38},{"x":1568569860000,"y":15.38},{"x":1568569920000,"y":15.38},{"x":1568569980000,"y":15.38},{"x":1568570040000,"y":15.37},{"x":1568570100000,"y":15.36},{"x":1568570160000,"y":15.35},{"x":1568570220000,"y":15.35},{"x":1568570280000,"y":15.35},{"x":1568570340000,"y":15.38},{"x":1568570400000,"y":15.36},{"x":1568570460000,"y":15.36},{"x":1568570520000,"y":15.36},{"x":1568570580000,"y":15.36},{"x":1568570640000,"y":15.38},{"x":1568570700000,"y":15.35},{"x":1568570760000,"y":15.35},{"x":1568570820000,"y":15.35},{"x":1568570880000,"y":15.35},{"x":1568570940000,"y":15.38},{"x":1568571000000,"y":15.38},{"x":1568571060000,"y":15.38},{"x":1568571120000,"y":15.38},{"x":1568571180000,"y":15.38},{"x":1568571240000,"y":15.39},{"x":1568571300000,"y":15.38},{"x":1568571360000,"y":15.38},{"x":1568571420000,"y":15.09},{"x":1568571480000,"y":14.63},{"x":1568571540000,"y":14.64},{"x":1568571600000,"y":14.63},{"x":1568571660000,"y":14.62},{"x":1568571720000,"y":14.62},{"x":1568571780000,"y":14.62},{"x":1568571840000,"y":14.62},{"x":1568571900000,"y":14.65},{"x":1568571960000,"y":14.64},{"x":1568572020000,"y":14.64},{"x":1568572080000,"y":14.64},{"x":1568572140000,"y":14.65},{"x":1568572200000,"y":14.66},{"x":1568572260000,"y":14.65},{"x":1568572320000,"y":14.65},{"x":1568572380000,"y":14.65},{"x":1568572440000,"y":14.65},{"x":1568572500000,"y":14.62},{"x":1568572560000,"y":14.6},{"x":1568572620000,"y":14.6},{"x":1568572680000,"y":14.6},{"x":1568572740000,"y":14.64},{"x":1568572800000,"y":14.66},{"x":1568572860000,"y":14.64},{"x":1568572920000,"y":14.64},{"x":1568572980000,"y":14.64},{"x":1568573040000,"y":14.62},{"x":1568573100000,"y":14.63},{"x":1568573160000,"y":14.62},{"x":1568573220000,"y":14.62},{"x":1568573280000,"y":14.62},{"x":1568573340000,"y":14.62},{"x":1568573400000,"y":14.61},{"x":1568573460000,"y":14.61},{"x":1568573520000,"y":14.61},{"x":1568573580000,"y":14.61},{"x":1568573640000,"y":14.61},{"x":1568573700000,"y":14.61},{"x":1568573760000,"y":14.63},{"x":1568573820000,"y":14.63},{"x":1568573880000,"y":14.62},{"x":1568573940000,"y":14.62},{"x":1568574000000,"y":14.61},{"x":1568574060000,"y":14.63},{"x":1568574120000,"y":14.62},{"x":1568574180000,"y":14.62},{"x":1568574240000,"y":14.62},{"x":1568574300000,"y":14.63},{"x":1568574360000,"y":14.64},{"x":1568574420000,"y":14.64},{"x":1568574480000,"y":14.64},{"x":1568574540000,"y":14.63},{"x":1568574600000,"y":14.63},{"x":1568574660000,"y":14.64},{"x":1568574720000,"y":14.64},{"x":1568574780000,"y":14.64},{"x":1568574840000,"y":14.63},{"x":1568574900000,"y":14.63},{"x":1568574960000,"y":14.65},{"x":1568575020000,"y":14.62},{"x":1568575080000,"y":14.62},{"x":1568575140000,"y":14.62},{"x":1568575200000,"y":14.62},{"x":1568575260000,"y":14.63},{"x":1568575320000,"y":14.64},{"x":1568575380000,"y":14.64},{"x":1568575440000,"y":14.64},{"x":1568575500000,"y":14.63},{"x":1568575560000,"y":14.64},{"x":1568575620000,"y":14.63},{"x":1568575680000,"y":14.63},{"x":1568575740000,"y":14.63},{"x":1568575800000,"y":14.63},{"x":1568575860000,"y":14.64},{"x":1568575920000,"y":14.64},{"x":1568575980000,"y":14.64},{"x":1568576040000,"y":14.64},{"x":1568576100000,"y":14.63},{"x":1568576160000,"y":14.63},{"x":1568576220000,"y":14.66},{"x":1568576280000,"y":14.64},{"x":1568576340000,"y":14.63},{"x":1568576400000,"y":14.6},{"x":1568576460000,"y":14.6},{"x":1568576520000,"y":14.64},{"x":1568576580000,"y":14.64},{"x":1568576640000,"y":14.64},{"x":1568576700000,"y":14.64},{"x":1568576760000,"y":14.64},{"x":1568576820000,"y":14.65},{"x":1568576880000,"y":14.64},{"x":1568576940000,"y":14.64},{"x":1568577000000,"y":14.64},{"x":1568577060000,"y":14.64},{"x":1568577120000,"y":14.65},{"x":1568577180000,"y":14.64},{"x":1568577240000,"y":14.63},{"x":1568577300000,"y":14.65},{"x":1568577360000,"y":14.65},{"x":1568577420000,"y":14.65},{"x":1568577480000,"y":14.64},{"x":1568577540000,"y":14.64},{"x":1568577600000,"y":14.64},{"x":1568577660000,"y":14.64},{"x":1568577720000,"y":14.65},{"x":1568577780000,"y":14.63},{"x":1568577840000,"y":14.63},{"x":1568577900000,"y":14.64},{"x":1568577960000,"y":14.64},{"x":1568578020000,"y":14.65},{"x":1568578080000,"y":14.61},{"x":1568578140000,"y":14.64},{"x":1568578200000,"y":14.64},{"x":1568578260000,"y":14.64},{"x":1568578320000,"y":14.64},{"x":1568578380000,"y":14.66},{"x":1568578440000,"y":14.64},{"x":1568578500000,"y":14.63},{"x":1568578560000,"y":14.63},{"x":1568578620000,"y":14.63},{"x":1568578680000,"y":14.63},{"x":1568578740000,"y":14.62},{"x":1568578800000,"y":14.64},{"x":1568578860000,"y":14.64},{"x":1568578920000,"y":14.64},{"x":1568578980000,"y":14.66},{"x":1568579040000,"y":14.64},{"x":1568579100000,"y":14.65},{"x":1568579160000,"y":14.65},{"x":1568579220000,"y":14.65},{"x":1568579280000,"y":14.66},{"x":1568579340000,"y":14.64},{"x":1568579400000,"y":14.62},{"x":1568579460000,"y":14.62},{"x":1568579520000,"y":14.62},{"x":1568579580000,"y":14.64},{"x":1568579640000,"y":14.64},{"x":1568579700000,"y":14.65},{"x":1568579760000,"y":14.65},{"x":1568579820000,"y":14.64},{"x":1568579880000,"y":14.64},{"x":1568579940000,"y":14.63},{"x":1568580000000,"y":14.63},{"x":1568580060000,"y":14.63},{"x":1568580120000,"y":14.63},{"x":1568580180000,"y":14.64},{"x":1568580240000,"y":14.63},{"x":1568580300000,"y":14.63},{"x":1568580360000,"y":14.63},{"x":1568580420000,"y":14.63},{"x":1568580480000,"y":14.63},{"x":1568580540000,"y":14.63},{"x":1568580600000,"y":14.64},{"x":1568580660000,"y":14.64},{"x":1568580720000,"y":14.64},{"x":1568580780000,"y":14.64},{"x":1568580840000,"y":14.65},{"x":1568580900000,"y":14.63},{"x":1568580960000,"y":14.63},{"x":1568581020000,"y":14.63},{"x":1568581080000,"y":14.63},{"x":1568581140000,"y":14.64},{"x":1568581200000,"y":14.6},{"x":1568581260000,"y":14.6},{"x":1568581320000,"y":14.6},{"x":1568581380000,"y":14.6},{"x":1568581440000,"y":14.94},{"x":1568581500000,"y":14.7},{"x":1568581560000,"y":14.7},{"x":1568581620000,"y":14.7},{"x":1568581680000,"y":14.7},{"x":1568581740000,"y":14.69},{"x":1568581800000,"y":14.63},{"x":1568581860000,"y":14.63},{"x":1568581920000,"y":14.63},{"x":1568581980000,"y":14.63},{"x":1568582040000,"y":14.64},{"x":1568582100000,"y":14.61},{"x":1568582160000,"y":14.61},{"x":1568582220000,"y":14.6},{"x":1568582280000,"y":14.6},{"x":1568582340000,"y":14.61},{"x":1568582400000,"y":14.61},{"x":1568582460000,"y":14.61},{"x":1568582520000,"y":14.61},{"x":1568582580000,"y":14.61},{"x":1568582640000,"y":14.62},{"x":1568582700000,"y":14.88},{"x":1568582760000,"y":14.87},{"x":1568582820000,"y":14.87},{"x":1568582880000,"y":14.87},{"x":1568582940000,"y":14.87},{"x":1568583000000,"y":14.86},{"x":1568583060000,"y":14.86},{"x":1568583120000,"y":14.88},{"x":1568583180000,"y":14.88},{"x":1568583240000,"y":14.88},{"x":1568583300000,"y":14.94},{"x":1568583360000,"y":14.93},{"x":1568583420000,"y":14.93},{"x":1568583480000,"y":14.93},{"x":1568583540000,"y":14.94},{"x":1568583600000,"y":14.94},{"x":1568583660000,"y":14.93},{"x":1568583720000,"y":14.93},{"x":1568583780000,"y":14.93},{"x":1568583840000,"y":14.93},{"x":1568583900000,"y":14.96},{"x":1568583960000,"y":14.93},{"x":1568584020000,"y":14.93},{"x":1568584080000,"y":14.93},{"x":1568584140000,"y":14.93},{"x":1568584200000,"y":14.95},{"x":1568584260000,"y":14.94},{"x":1568584320000,"y":14.94},{"x":1568584380000,"y":14.94},{"x":1568584440000,"y":14.94},{"x":1568584500000,"y":14.96},{"x":1568584560000,"y":14.95},{"x":1568584620000,"y":14.95},{"x":1568584680000,"y":14.95},{"x":1568584740000,"y":14.94},{"x":1568584800000,"y":14.94},{"x":1568584860000,"y":14.96},{"x":1568584920000,"y":14.94},{"x":1568584980000,"y":14.94},{"x":1568585040000,"y":14.95},{"x":1568585100000,"y":14.95},{"x":1568585160000,"y":14.96},{"x":1568585220000,"y":14.95},{"x":1568585280000,"y":14.95},{"x":1568585340000,"y":14.94},{"x":1568585400000,"y":14.94},{"x":1568585460000,"y":14.95},{"x":1568585520000,"y":14.94},{"x":1568585580000,"y":14.94},{"x":1568585640000,"y":14.94},{"x":1568585700000,"y":14.94},{"x":1568585760000,"y":14.96},{"x":1568585820000,"y":14.95},{"x":1568585880000,"y":14.95},{"x":1568585940000,"y":14.94},{"x":1568586000000,"y":14.94},{"x":1568586060000,"y":14.96},{"x":1568586120000,"y":14.95},{"x":1568586180000,"y":14.95},{"x":1568586240000,"y":14.95},{"x":1568586300000,"y":14.94},{"x":1568586360000,"y":14.96},{"x":1568586420000,"y":14.94},{"x":1568586480000,"y":14.94},{"x":1568586540000,"y":14.95},{"x":1568586600000,"y":14.95},{"x":1568586660000,"y":14.96},{"x":1568586720000,"y":14.94},{"x":1568586780000,"y":14.94},{"x":1568586840000,"y":14.94},{"x":1568586900000,"y":14.96},{"x":1568586960000,"y":14.97},{"x":1568587020000,"y":14.95},{"x":1568587080000,"y":14.95},{"x":1568587140000,"y":14.95},{"x":1568587200000,"y":14.95},{"x":1568587260000,"y":14.95},{"x":1568587320000,"y":14.96},{"x":1568587380000,"y":14.95},{"x":1568587440000,"y":14.95},{"x":1568587500000,"y":14.94},{"x":1568587560000,"y":14.94},{"x":1568587620000,"y":14.97},{"x":1568587680000,"y":14.95},{"x":1568587740000,"y":14.95},{"x":1568587800000,"y":14.95},{"x":1568587860000,"y":14.95},{"x":1568587920000,"y":14.96},{"x":1568587980000,"y":14.95},{"x":1568588040000,"y":14.95},{"x":1568588100000,"y":14.95},{"x":1568588160000,"y":14.95},{"x":1568588220000,"y":14.96},{"x":1568588280000,"y":14.95},{"x":1568588340000,"y":14.95},{"x":1568588400000,"y":14.96},{"x":1568588460000,"y":14.96},{"x":1568588520000,"y":14.96},{"x":1568588580000,"y":14.94},{"x":1568588640000,"y":14.94},{"x":1568588700000,"y":14.92},{"x":1568588760000,"y":14.92},{"x":1568588820000,"y":14.94},{"x":1568588880000,"y":14.95},{"x":1568588940000,"y":14.95},{"x":1568589000000,"y":14.96},{"x":1568589060000,"y":14.96},{"x":1568589120000,"y":14.97},{"x":1568589180000,"y":14.96},{"x":1568589240000,"y":14.95},{"x":1568589300000,"y":14.95},{"x":1568589360000,"y":14.95},{"x":1568589420000,"y":14.96},{"x":1568589480000,"y":14.97},{"x":1568589540000,"y":14.95},{"x":1568589600000,"y":14.95},{"x":1568589660000,"y":14.96},{"x":1568589720000,"y":14.96},{"x":1568589780000,"y":14.97},{"x":1568589840000,"y":14.96},{"x":1568589900000,"y":14.96},{"x":1568589960000,"y":14.96},{"x":1568590020000,"y":14.96},{"x":1568590080000,"y":14.97},{"x":1568590140000,"y":14.96},{"x":1568590200000,"y":14.96},{"x":1568590260000,"y":14.96},{"x":1568590320000,"y":14.95},{"x":1568590380000,"y":14.97},{"x":1568590440000,"y":14.96},{"x":1568590500000,"y":14.96},{"x":1568590560000,"y":14.96},{"x":1568590620000,"y":14.96},{"x":1568590680000,"y":14.98},{"x":1568590740000,"y":14.96},{"x":1568590800000,"y":14.94},{"x":1568590860000,"y":14.94},{"x":1568590920000,"y":14.94},{"x":1568590980000,"y":14.96},{"x":1568591040000,"y":14.96},{"x":1568591100000,"y":14.96},{"x":1568591160000,"y":14.95},{"x":1568591220000,"y":14.97},{"x":1568591280000,"y":15.01},{"x":1568591340000,"y":15.04},{"x":1568591400000,"y":15},{"x":1568591460000,"y":14.99},{"x":1568591520000,"y":14.99},{"x":1568591580000,"y":14.99},{"x":1568591640000,"y":15.01},{"x":1568591700000,"y":15.01},{"x":1568591760000,"y":15.01},{"x":1568591820000,"y":15.01},{"x":1568591880000,"y":15.01},{"x":1568591940000,"y":15.03},{"x":1568592000000,"y":15.01},{"x":1568592060000,"y":15.01},{"x":1568592120000,"y":15.01},{"x":1568592180000,"y":15.01},{"x":1568592240000,"y":15.02},{"x":1568592300000,"y":15.02},{"x":1568592360000,"y":15.02},{"x":1568592420000,"y":15.02},{"x":1568592480000,"y":15.02},{"x":1568592540000,"y":15.04},{"x":1568592600000,"y":15.02},{"x":1568592660000,"y":15.02},{"x":1568592720000,"y":15.02},{"x":1568592780000,"y":15.02},{"x":1568592840000,"y":15.03},{"x":1568592900000,"y":15.02},{"x":1568592960000,"y":15.02},{"x":1568593020000,"y":15.02},{"x":1568593080000,"y":15.02},{"x":1568593140000,"y":15.02},{"x":1568593200000,"y":15.03},{"x":1568593260000,"y":15.03},{"x":1568593320000,"y":15.03},{"x":1568593380000,"y":15.03},{"x":1568593440000,"y":15.03},{"x":1568593500000,"y":14.99},{"x":1568593560000,"y":14.99},{"x":1568593620000,"y":14.99},{"x":1568593680000,"y":14.99},{"x":1568593740000,"y":14.99},{"x":1568593800000,"y":15.01},{"x":1568593860000,"y":14.99},{"x":1568593920000,"y":14.99},{"x":1568593980000,"y":14.99},{"x":1568594040000,"y":14.99},{"x":1568594100000,"y":15.04},{"x":1568594160000,"y":15.02},{"x":1568594220000,"y":15.02},{"x":1568594280000,"y":15.02},{"x":1568594340000,"y":15.02},{"x":1568594400000,"y":15.04},{"x":1568594460000,"y":15.02},{"x":1568594520000,"y":15.02},{"x":1568594580000,"y":15.03},{"x":1568594640000,"y":15.03},{"x":1568594700000,"y":15.04},{"x":1568594760000,"y":15.02},{"x":1568594820000,"y":15.02},{"x":1568594880000,"y":15.02},{"x":1568594940000,"y":15.02},{"x":1568595000000,"y":15.03},{"x":1568595060000,"y":15.02},{"x":1568595120000,"y":15.02},{"x":1568595180000,"y":15.03},{"x":1568595240000,"y":15.03},{"x":1568595300000,"y":15.05},{"x":1568595360000,"y":15.02},{"x":1568595420000,"y":15.02},{"x":1568595480000,"y":15.02},{"x":1568595540000,"y":15.02},{"x":1568595600000,"y":15.04},{"x":1568595660000,"y":15.02},{"x":1568595720000,"y":15.02},{"x":1568595780000,"y":15.02},{"x":1568595840000,"y":15.02},{"x":1568595900000,"y":15.01},{"x":1568595960000,"y":15.05},{"x":1568596020000,"y":15.03},{"x":1568596080000,"y":15.03},{"x":1568596140000,"y":15.03},{"x":1568596200000,"y":15.01},{"x":1568596260000,"y":15.03},{"x":1568596320000,"y":15.03},{"x":1568596380000,"y":15.03},{"x":1568596440000,"y":15.03},{"x":1568596500000,"y":15.02},{"x":1568596560000,"y":15.03},{"x":1568596620000,"y":15.03},{"x":1568596680000,"y":15.03},{"x":1568596740000,"y":15.03},{"x":1568596800000,"y":15.04},{"x":1568596860000,"y":15.05},{"x":1568596920000,"y":15.03},{"x":1568596980000,"y":15.03},{"x":1568597040000,"y":15.03},{"x":1568597100000,"y":15.04},{"x":1568597160000,"y":15.05},{"x":1568597220000,"y":15.03},{"x":1568597280000,"y":15.03},{"x":1568597340000,"y":15.03},{"x":1568597400000,"y":15.03},{"x":1568597460000,"y":15.05},{"x":1568597520000,"y":15.04},{"x":1568597580000,"y":15.04},{"x":1568597640000,"y":15.04},{"x":1568597700000,"y":15.03},{"x":1568597760000,"y":15.04},{"x":1568597820000,"y":15.04},{"x":1568597880000,"y":15.04},{"x":1568597940000,"y":15.03},{"x":1568598000000,"y":15.03},{"x":1568598060000,"y":15.04},{"x":1568598120000,"y":15.04},{"x":1568598180000,"y":15.03},{"x":1568598240000,"y":15.04},{"x":1568598300000,"y":15.04},{"x":1568598360000,"y":15.03},{"x":1568598420000,"y":15.03},{"x":1568598480000,"y":15.02},{"x":1568598540000,"y":15.02},{"x":1568598600000,"y":15.03},{"x":1568598660000,"y":15.03},{"x":1568598720000,"y":15.04},{"x":1568598780000,"y":15.02},{"x":1568598840000,"y":15.02},{"x":1568598900000,"y":15.04},{"x":1568598960000,"y":15.04},{"x":1568599020000,"y":15.04},{"x":1568599080000,"y":15.01},{"x":1568599140000,"y":15.01},{"x":1568599200000,"y":15.04},{"x":1568599260000,"y":15.04},{"x":1568599320000,"y":15.04},{"x":1568599380000,"y":15.03},{"x":1568599440000,"y":15.03},{"x":1568599500000,"y":15.05},{"x":1568599560000,"y":15.05},{"x":1568599620000,"y":15.05},{"x":1568599680000,"y":15.04},{"x":1568599740000,"y":15.04},{"x":1568599800000,"y":15.04},{"x":1568599860000,"y":15.04},{"x":1568599920000,"y":15.06},{"x":1568599980000,"y":15.03},{"x":1568600040000,"y":15.03},{"x":1568600100000,"y":15.03},{"x":1568600160000,"y":15.03},{"x":1568600220000,"y":15.04},{"x":1568600280000,"y":15.04},{"x":1568600340000,"y":15.04},{"x":1568600400000,"y":15.04},{"x":1568600460000,"y":15.04},{"x":1568600520000,"y":15.04},{"x":1568600580000,"y":15.05},{"x":1568600640000,"y":15.02},{"x":1568600700000,"y":15.02},{"x":1568600760000,"y":15.02},{"x":1568600820000,"y":15.01},{"x":1568600880000,"y":15.02},{"x":1568600940000,"y":15.01},{"x":1568601000000,"y":15.03},{"x":1568601060000,"y":15.03},{"x":1568601120000,"y":15.02},{"x":1568601180000,"y":15.03},{"x":1568601240000,"y":15.02},{"x":1568601300000,"y":15.02},{"x":1568601360000,"y":15.02},{"x":1568601420000,"y":15.02},{"x":1568601480000,"y":15.03},{"x":1568601540000,"y":15.02},{"x":1568601600000,"y":15.03},{"x":1568601660000,"y":15.03},{"x":1568601720000,"y":15.03},{"x":1568601780000,"y":15.04},{"x":1568601840000,"y":15.02},{"x":1568601900000,"y":15},{"x":1568601960000,"y":14.99},{"x":1568602020000,"y":14.98},{"x":1568602080000,"y":15},{"x":1568602140000,"y":15.02},{"x":1568602200000,"y":15},{"x":1568602260000,"y":15},{"x":1568602320000,"y":15},{"x":1568602380000,"y":15.02},{"x":1568602440000,"y":15.03},{"x":1568602500000,"y":15.02},{"x":1568602560000,"y":15.02},{"x":1568602620000,"y":15.02},{"x":1568602680000,"y":15.02},{"x":1568602740000,"y":15.04},{"x":1568602800000,"y":15},{"x":1568602860000,"y":15},{"x":1568602920000,"y":15},{"x":1568602980000,"y":15},{"x":1568603040000,"y":15.04},{"x":1568603100000,"y":15.02},{"x":1568603160000,"y":15.02},{"x":1568603220000,"y":15.02},{"x":1568603280000,"y":15.02},{"x":1568603340000,"y":15.38},{"x":1568603400000,"y":15.1},{"x":1568603460000,"y":15.1},{"x":1568603520000,"y":15.1},{"x":1568603580000,"y":15.1},{"x":1568603640000,"y":15.08},{"x":1568603700000,"y":15.03},{"x":1568603760000,"y":15.03},{"x":1568603820000,"y":15.03},{"x":1568603880000,"y":15.03},{"x":1568603940000,"y":15.04},{"x":1568604000000,"y":15.03},{"x":1568604060000,"y":15.03},{"x":1568604120000,"y":15.03},{"x":1568604180000,"y":15.03},{"x":1568604240000,"y":15.05},{"x":1568604300000,"y":15.03},{"x":1568604360000,"y":15.03},{"x":1568604420000,"y":15.03},{"x":1568604480000,"y":15.03},{"x":1568604540000,"y":15.04},{"x":1568604600000,"y":15.01},{"x":1568604660000,"y":15.01},{"x":1568604720000,"y":15.01},{"x":1568604780000,"y":15.01},{"x":1568604840000,"y":15.02},{"x":1568604900000,"y":15.02},{"x":1568604960000,"y":15.02},{"x":1568605020000,"y":15.02},{"x":1568605080000,"y":15.02},{"x":1568605140000,"y":15.04},{"x":1568605200000,"y":15.05},{"x":1568605260000,"y":15.03},{"x":1568605320000,"y":15.03},{"x":1568605380000,"y":15.03},{"x":1568605440000,"y":15.03},{"x":1568605500000,"y":15.04},{"x":1568605560000,"y":15.02},{"x":1568605620000,"y":15.02},{"x":1568605680000,"y":15.02},{"x":1568605740000,"y":15.02},{"x":1568605800000,"y":15.04},{"x":1568605860000,"y":15.03},{"x":1568605920000,"y":15.03},{"x":1568605980000,"y":15.03},{"x":1568606040000,"y":15.03},{"x":1568606100000,"y":15.05},{"x":1568606160000,"y":15.04},{"x":1568606220000,"y":15.04},{"x":1568606280000,"y":15.04},{"x":1568606340000,"y":15.04},{"x":1568606400000,"y":15.05},{"x":1568606460000,"y":15.04},{"x":1568606520000,"y":15.03},{"x":1568606580000,"y":15.03},{"x":1568606640000,"y":15.03},{"x":1568606700000,"y":15.05},{"x":1568606760000,"y":15.03},{"x":1568606820000,"y":15.03},{"x":1568606880000,"y":15.03},{"x":1568606940000,"y":15.04},{"x":1568607000000,"y":15.04},{"x":1568607060000,"y":15.02},{"x":1568607120000,"y":15},{"x":1568607180000,"y":15},{"x":1568607240000,"y":15},{"x":1568607300000,"y":15.03},{"x":1568607360000,"y":15.05},{"x":1568607420000,"y":15.04},{"x":1568607480000,"y":15.04},{"x":1568607540000,"y":15.04},{"x":1568607600000,"y":15.04},{"x":1568607660000,"y":15.05},{"x":1568607720000,"y":15.04},{"x":1568607780000,"y":15.04},{"x":1568607840000,"y":15.04},{"x":1568607900000,"y":15.04},{"x":1568607960000,"y":15.04},{"x":1568608020000,"y":15.02},{"x":1568608080000,"y":15.02},{"x":1568608140000,"y":15.02},{"x":1568608200000,"y":15.03},{"x":1568608260000,"y":15.05},{"x":1568608320000,"y":15.04},{"x":1568608380000,"y":15.04},{"x":1568608440000,"y":15.04},{"x":1568608500000,"y":15.03},{"x":1568608560000,"y":15.06},{"x":1568608620000,"y":15.04},{"x":1568608680000,"y":15.04},{"x":1568608740000,"y":15.05},{"x":1568608800000,"y":15.04},{"x":1568608860000,"y":15.05},{"x":1568608920000,"y":15.04},{"x":1568608980000,"y":15.04},{"x":1568609040000,"y":15.04},{"x":1568609100000,"y":15.05},{"x":1568609160000,"y":15.04},{"x":1568609220000,"y":15.05},{"x":1568609280000,"y":15.04},{"x":1568609340000,"y":15.04},{"x":1568609400000,"y":15.04},{"x":1568609460000,"y":15.04},{"x":1568609520000,"y":15.04},{"x":1568609580000,"y":15.03},{"x":1568609640000,"y":15.03},{"x":1568609700000,"y":15.05},{"x":1568609760000,"y":15.05},{"x":1568609820000,"y":15.05},{"x":1568609880000,"y":15.04},{"x":1568609940000,"y":15.02},{"x":1568610000000,"y":15.01},{"x":1568610060000,"y":15.01},{"x":1568610120000,"y":15.03},{"x":1568610180000,"y":15.02},{"x":1568610240000,"y":15.02},{"x":1568610300000,"y":15.03},{"x":1568610360000,"y":15.03},{"x":1568610420000,"y":15.04},{"x":1568610480000,"y":15.03},{"x":1568610540000,"y":15.03},{"x":1568610600000,"y":15.03},{"x":1568610660000,"y":15.03},{"x":1568610720000,"y":15.05},{"x":1568610780000,"y":15.03},{"x":1568610840000,"y":15.03},{"x":1568610900000,"y":15.02},{"x":1568610960000,"y":15.02},{"x":1568611020000,"y":15.04},{"x":1568611080000,"y":15.03},{"x":1568611140000,"y":15.03},{"x":1568611200000,"y":15.03},{"x":1568611260000,"y":15.02},{"x":1568611320000,"y":15.02},{"x":1568611380000,"y":15.03},{"x":1568611440000,"y":15.02},{"x":1568611500000,"y":15},{"x":1568611560000,"y":15},{"x":1568611620000,"y":15},{"x":1568611680000,"y":15.03},{"x":1568611740000,"y":15.02},{"x":1568611800000,"y":15.01},{"x":1568611860000,"y":15.01},{"x":1568611920000,"y":15.01},{"x":1568611980000,"y":15.02},{"x":1568612040000,"y":15.02},{"x":1568612100000,"y":15.03},{"x":1568612160000,"y":15.03},{"x":1568612220000,"y":15.03},{"x":1568612280000,"y":15.04},{"x":1568612340000,"y":15.04},{"x":1568612400000,"y":15.02},{"x":1568612460000,"y":15.02},{"x":1568612520000,"y":15.02},{"x":1568612580000,"y":15.03},{"x":1568612640000,"y":15.03},{"x":1568612700000,"y":15.02},{"x":1568612760000,"y":15.01},{"x":1568612820000,"y":15.01},{"x":1568612880000,"y":15.02},{"x":1568612940000,"y":15.02},{"x":1568613000000,"y":15.02},{"x":1568613060000,"y":15.02},{"x":1568613120000,"y":15.01},{"x":1568613180000,"y":15.01},{"x":1568613240000,"y":15.05},{"x":1568613300000,"y":15.03},{"x":1568613360000,"y":15.03},{"x":1568613420000,"y":15.03},{"x":1568613480000,"y":15.03},{"x":1568613540000,"y":15.04},{"x":1568613600000,"y":15.04},{"x":1568613660000,"y":15.04},{"x":1568613720000,"y":15.04},{"x":1568613780000,"y":15.04},{"x":1568613840000,"y":15.04},{"x":1568613900000,"y":15.04},{"x":1568613960000,"y":15.04},{"x":1568614020000,"y":15.04},{"x":1568614080000,"y":15.04},{"x":1568614140000,"y":15.05},{"x":1568614200000,"y":15.04},{"x":1568614260000,"y":15.04},{"x":1568614320000,"y":15.04},{"x":1568614380000,"y":15.04},{"x":1568614440000,"y":15.05},{"x":1568614500000,"y":15.03},{"x":1568614560000,"y":15.03},{"x":1568614620000,"y":15.03},{"x":1568614680000,"y":15.03},{"x":1568614740000,"y":15.05},{"x":1568614800000,"y":15.05},{"x":1568614860000,"y":15.04},{"x":1568614920000,"y":15.04},{"x":1568614980000,"y":15.04},{"x":1568615040000,"y":15.05},{"x":1568615100000,"y":15.02},{"x":1568615160000,"y":15.01},{"x":1568615220000,"y":15.01},{"x":1568615280000,"y":15.01},{"x":1568615340000,"y":15.01},{"x":1568615400000,"y":15.03},{"x":1568615460000,"y":15.02},{"x":1568615520000,"y":15.02},{"x":1568615580000,"y":15.02},{"x":1568615640000,"y":15.02},{"x":1568615700000,"y":15.04},{"x":1568615760000,"y":15.04},{"x":1568615820000,"y":15.04},{"x":1568615880000,"y":15.04},{"x":1568615940000,"y":15.05},{"x":1568616000000,"y":15.05},{"x":1568616060000,"y":15.05},{"x":1568616120000,"y":15.04},{"x":1568616180000,"y":15.04},{"x":1568616240000,"y":15.04},{"x":1568616300000,"y":15.03},{"x":1568616360000,"y":15.03},{"x":1568616420000,"y":15.03},{"x":1568616480000,"y":15.03},{"x":1568616540000,"y":15.03},{"x":1568616600000,"y":15.05},{"x":1568616660000,"y":15.03},{"x":1568616720000,"y":15.03},{"x":1568616780000,"y":15.03},{"x":1568616840000,"y":15.03},{"x":1568616900000,"y":15.05},{"x":1568616960000,"y":15.04},{"x":1568617020000,"y":15.04},{"x":1568617080000,"y":15.04},{"x":1568617140000,"y":15.04},{"x":1568617200000,"y":15.03},{"x":1568617260000,"y":14.99},{"x":1568617320000,"y":14.99},{"x":1568617380000,"y":14.99},{"x":1568617440000,"y":14.99},{"x":1568617500000,"y":15.02},{"x":1568617560000,"y":15.02},{"x":1568617620000,"y":15.01},{"x":1568617680000,"y":15.01},{"x":1568617740000,"y":15.05},{"x":1568617800000,"y":15.02},{"x":1568617860000,"y":15.05},{"x":1568617920000,"y":15.05},{"x":1568617980000,"y":15.05},{"x":1568618040000,"y":15.04},{"x":1568618100000,"y":15.04},{"x":1568618160000,"y":15.06},{"x":1568618220000,"y":15.05},{"x":1568618280000,"y":15.05},{"x":1568618340000,"y":15.05},{"x":1568618400000,"y":15.05},{"x":1568618460000,"y":15.07},{"x":1568618520000,"y":15.05},{"x":1568618580000,"y":15.05},{"x":1568618640000,"y":15.05},{"x":1568618700000,"y":15.05},{"x":1568618760000,"y":15.05},{"x":1568618820000,"y":15.02},{"x":1568618880000,"y":15.02},{"x":1568618940000,"y":15.02},{"x":1568619000000,"y":15.03},{"x":1568619060000,"y":15.03},{"x":1568619120000,"y":15.03},{"x":1568619180000,"y":15.03},{"x":1568619240000,"y":15.03},{"x":1568619300000,"y":15.01},{"x":1568619360000,"y":15.02},{"x":1568619420000,"y":15.02},{"x":1568619480000,"y":15.02},{"x":1568619540000,"y":15.03},{"x":1568619600000,"y":15.03},{"x":1568619660000,"y":15.03},{"x":1568619720000,"y":15.03},{"x":1568619780000,"y":15.01},{"x":1568619840000,"y":15.01},{"x":1568619900000,"y":15.02},{"x":1568619960000,"y":15.01},{"x":1568620020000,"y":15.01},{"x":1568620080000,"y":15},{"x":1568620140000,"y":15},{"x":1568620200000,"y":15.01},{"x":1568620260000,"y":15.01},{"x":1568620320000,"y":15.03},{"x":1568620380000,"y":15.03},{"x":1568620440000,"y":15.03},{"x":1568620500000,"y":15.03},{"x":1568620560000,"y":15.03},{"x":1568620620000,"y":15.05},{"x":1568620680000,"y":15.04},{"x":1568620740000,"y":15.04},{"x":1568620800000,"y":14.99},{"x":1568620860000,"y":14.99},{"x":1568620920000,"y":15.02},{"x":1568620980000,"y":15.01},{"x":1568621040000,"y":15.01},{"x":1568621100000,"y":15.03},{"x":1568621160000,"y":15.03},{"x":1568621220000,"y":15.04},{"x":1568621280000,"y":15.03},{"x":1568621340000,"y":15.02},{"x":1568621400000,"y":15.03},{"x":1568621460000,"y":15.03},{"x":1568621520000,"y":15.04},{"x":1568621580000,"y":15.03},{"x":1568621640000,"y":15.03},{"x":1568621700000,"y":15.04},{"x":1568621760000,"y":15.05},{"x":1568621820000,"y":15.05},{"x":1568621880000,"y":15.04},{"x":1568621940000,"y":15.04},{"x":1568622000000,"y":15.04},{"x":1568622060000,"y":15.04},{"x":1568622120000,"y":15.04},{"x":1568622180000,"y":15.05},{"x":1568622240000,"y":15.04},{"x":1568622300000,"y":15.04},{"x":1568622360000,"y":15.04},{"x":1568622420000,"y":15.04},{"x":1568622480000,"y":15.06},{"x":1568622540000,"y":15.04},{"x":1568622600000,"y":15.04},{"x":1568622660000,"y":15.04},{"x":1568622720000,"y":15.04},{"x":1568622780000,"y":15.04},{"x":1568622840000,"y":15.01},{"x":1568622900000,"y":15},{"x":1568622960000,"y":15},{"x":1568623020000,"y":14.99},{"x":1568623080000,"y":15.02},{"x":1568623140000,"y":15.03},{"x":1568623200000,"y":15.01},{"x":1568623260000,"y":15.01},{"x":1568623320000,"y":15.01},{"x":1568623380000,"y":15.03},{"x":1568623440000,"y":15.04},{"x":1568623500000,"y":15.04},{"x":1568623560000,"y":15.03},{"x":1568623620000,"y":15.03},{"x":1568623680000,"y":15.04},{"x":1568623740000,"y":15.04},{"x":1568623800000,"y":15.05},{"x":1568623860000,"y":15.05},{"x":1568623920000,"y":15.05},{"x":1568623980000,"y":15.06},{"x":1568624040000,"y":15.04},{"x":1568624100000,"y":15.03},{"x":1568624160000,"y":15.02},{"x":1568624220000,"y":15.02},{"x":1568624280000,"y":15.02},{"x":1568624340000,"y":15.06},{"x":1568624400000,"y":15.04},{"x":1568624460000,"y":15.04},{"x":1568624520000,"y":15.04},{"x":1568624580000,"y":15.04},{"x":1568624640000,"y":15.06},{"x":1568624700000,"y":15.02},{"x":1568624760000,"y":15.02},{"x":1568624820000,"y":15.02},{"x":1568624880000,"y":15.02},{"x":1568624940000,"y":15.06},{"x":1568625000000,"y":15.04},{"x":1568625060000,"y":15.04},{"x":1568625120000,"y":15.04},{"x":1568625180000,"y":15.04},{"x":1568625240000,"y":15.26},{"x":1568625300000,"y":15.11},{"x":1568625360000,"y":15.11},{"x":1568625420000,"y":15.11},{"x":1568625480000,"y":15.11},{"x":1568625540000,"y":15.11},{"x":1568625600000,"y":15.05},{"x":1568625660000,"y":15.05},{"x":1568625720000,"y":15.05},{"x":1568625780000,"y":15.05},{"x":1568625840000,"y":15.07},{"x":1568625900000,"y":15.05},{"x":1568625960000,"y":15.04},{"x":1568626020000,"y":15.04},{"x":1568626080000,"y":15.04},{"x":1568626140000,"y":15.04},{"x":1568626200000,"y":15.06},{"x":1568626260000,"y":15.04},{"x":1568626320000,"y":15.04},{"x":1568626380000,"y":15.04},{"x":1568626440000,"y":15.04},{"x":1568626500000,"y":15.06},{"x":1568626560000,"y":15.05},{"x":1568626620000,"y":15.05},{"x":1568626680000,"y":15.05},{"x":1568626740000,"y":15.04},{"x":1568626800000,"y":15.05},{"x":1568626860000,"y":15.04},{"x":1568626920000,"y":15.04},{"x":1568626980000,"y":15.05},{"x":1568627040000,"y":15.04},{"x":1568627100000,"y":15.04},{"x":1568627160000,"y":15.03},{"x":1568627220000,"y":15.04},{"x":1568627280000,"y":15.04},{"x":1568627340000,"y":15.04},{"x":1568627400000,"y":15.05},{"x":1568627460000,"y":15.05},{"x":1568627520000,"y":15.05},{"x":1568627580000,"y":15.05},{"x":1568627640000,"y":15.05},{"x":1568627700000,"y":15.06},{"x":1568627760000,"y":15.05},{"x":1568627820000,"y":15.05},{"x":1568627880000,"y":15.05},{"x":1568627940000,"y":15.05},{"x":1568628000000,"y":15.03},{"x":1568628060000,"y":15.06},{"x":1568628120000,"y":15.05},{"x":1568628180000,"y":15.05},{"x":1568628240000,"y":15.05},{"x":1568628300000,"y":15.05},{"x":1568628360000,"y":15.03},{"x":1568628420000,"y":15.02},{"x":1568628480000,"y":15.02},{"x":1568628540000,"y":15.02},{"x":1568628600000,"y":15.03},{"x":1568628660000,"y":15.05},{"x":1568628720000,"y":15.03},{"x":1568628780000,"y":15.03},{"x":1568628840000,"y":15.03},{"x":1568628900000,"y":14.99},{"x":1568628960000,"y":15.02},{"x":1568629020000,"y":15.01},{"x":1568629080000,"y":15.01},{"x":1568629140000,"y":15.01},{"x":1568629200000,"y":15.04},{"x":1568629260000,"y":15.05},{"x":1568629320000,"y":15.04},{"x":1568629380000,"y":15.04},{"x":1568629440000,"y":15.04},{"x":1568629500000,"y":15.02},{"x":1568629560000,"y":15.03},{"x":1568629620000,"y":15.03},{"x":1568629680000,"y":15.25},{"x":1568629740000,"y":15.1},{"x":1568629800000,"y":15.11},{"x":1568629860000,"y":15.12},{"x":1568629920000,"y":15.11},{"x":1568629980000,"y":15.07},{"x":1568630040000,"y":15.05},{"x":1568630100000,"y":15.03},{"x":1568630160000,"y":15.04},{"x":1568630220000,"y":15.04},{"x":1568630280000,"y":15.04},{"x":1568630340000,"y":15.04},{"x":1568630400000,"y":15.02},{"x":1568630460000,"y":15.01},{"x":1568630520000,"y":15.05},{"x":1568630580000,"y":15.04},{"x":1568630640000,"y":15.04},{"x":1568630700000,"y":15.04},{"x":1568630760000,"y":15.04},{"x":1568630820000,"y":15.05},{"x":1568630880000,"y":15.04},{"x":1568630940000,"y":15.04},{"x":1568631000000,"y":15.05},{"x":1568631060000,"y":15.05},{"x":1568631120000,"y":15.04},{"x":1568631180000,"y":15.03},{"x":1568631240000,"y":15.03},{"x":1568631300000,"y":15.05},{"x":1568631360000,"y":15.05},{"x":1568631420000,"y":15.06},{"x":1568631480000,"y":15.04},{"x":1568631540000,"y":15.04},{"x":1568631600000,"y":15.04},{"x":1568631660000,"y":15.04},{"x":1568631720000,"y":15.05},{"x":1568631780000,"y":15.04},{"x":1568631840000,"y":15.04},{"x":1568631900000,"y":15.03},{"x":1568631960000,"y":15.02},{"x":1568632020000,"y":15.04},{"x":1568632080000,"y":15.05},{"x":1568632140000,"y":15.04},{"x":1568632200000,"y":15.04},{"x":1568632260000,"y":15.04},{"x":1568632320000,"y":15.05},{"x":1568632380000,"y":15.05},{"x":1568632440000,"y":15.05},{"x":1568632500000,"y":15.05},{"x":1568632560000,"y":15.05},{"x":1568632620000,"y":15.07},{"x":1568632680000,"y":15.06},{"x":1568632740000,"y":15.06},{"x":1568632800000,"y":15.02},{"x":1568632860000,"y":15.02},{"x":1568632920000,"y":15.02},{"x":1568632980000,"y":15.07},{"x":1568633040000,"y":15.05},{"x":1568633100000,"y":15.1},{"x":1568633160000,"y":15.05},{"x":1568633220000,"y":15.05},{"x":1568633280000,"y":15.06},{"x":1568633340000,"y":15.04},{"x":1568633400000,"y":15.05},{"x":1568633460000,"y":15.05},{"x":1568633520000,"y":15.06},{"x":1568633580000,"y":15.55},{"x":1568633640000,"y":15.09},{"x":1568633700000,"y":15.12},{"x":1568633760000,"y":15.12},{"x":1568633820000,"y":15.12},{"x":1568633880000,"y":15.09},{"x":1568633940000,"y":15.04},{"x":1568634000000,"y":15.06},{"x":1568634060000,"y":15.06},{"x":1568634120000,"y":15.06},{"x":1568634180000,"y":15.07},{"x":1568634240000,"y":15.05},{"x":1568634300000,"y":15.06},{"x":1568634360000,"y":15.05},{"x":1568634420000,"y":15.04},{"x":1568634480000,"y":15.06},{"x":1568634540000,"y":15.05},{"x":1568634600000,"y":15.05},{"x":1568634660000,"y":15.05},{"x":1568634720000,"y":15.05},{"x":1568634780000,"y":15.06},{"x":1568634840000,"y":15.06},{"x":1568634900000,"y":15.06},{"x":1568634960000,"y":15.06},{"x":1568635020000,"y":15.06},{"x":1568635080000,"y":15.07},{"x":1568635140000,"y":15.05},{"x":1568635200000,"y":15.03},{"x":1568635260000,"y":15.03},{"x":1568635320000,"y":15.03},{"x":1568635380000,"y":15.03},{"x":1568635440000,"y":15.07},{"x":1568635500000,"y":15.03},{"x":1568635560000,"y":15.03},{"x":1568635620000,"y":15.03},{"x":1568635680000,"y":15.03},{"x":1568635740000,"y":15.05},{"x":1568635800000,"y":15.06},{"x":1568635860000,"y":15.06},{"x":1568635920000,"y":15.07},{"x":1568635980000,"y":15.07},{"x":1568636040000,"y":15.07},{"x":1568636100000,"y":15.06},{"x":1568636160000,"y":15.06},{"x":1568636220000,"y":15.06},{"x":1568636280000,"y":15.06},{"x":1568636340000,"y":15.06},{"x":1568636400000,"y":15.05},{"x":1568636460000,"y":15.05},{"x":1568636520000,"y":15.05},{"x":1568636580000,"y":15.05},{"x":1568636640000,"y":15.07},{"x":1568636700000,"y":15.07},{"x":1568636760000,"y":15.06},{"x":1568636820000,"y":15.06},{"x":1568636880000,"y":15.06},{"x":1568636940000,"y":15.07},{"x":1568637000000,"y":15.07},{"x":1568637060000,"y":15.07},{"x":1568637120000,"y":15.07},{"x":1568637180000,"y":15.07},{"x":1568637240000,"y":15.08},{"x":1568637300000,"y":15.03},{"x":1568637360000,"y":15.03},{"x":1568637420000,"y":15.03},{"x":1568637480000,"y":15.03},{"x":1568637540000,"y":15.07},{"x":1568637600000,"y":15.04},{"x":1568637660000,"y":15.04},{"x":1568637720000,"y":15.04},{"x":1568637780000,"y":15.03},{"x":1568637840000,"y":15.03},{"x":1568637900000,"y":15.05},{"x":1568637960000,"y":15.04},{"x":1568638020000,"y":15.03},{"x":1568638080000,"y":15.03},{"x":1568638140000,"y":15.03},{"x":1568638200000,"y":15.04},{"x":1568638260000,"y":15.04},{"x":1568638320000,"y":15.04},{"x":1568638380000,"y":15.03},{"x":1568638440000,"y":15.03},{"x":1568638500000,"y":15.06},{"x":1568638560000,"y":15.05},{"x":1568638620000,"y":15.05},{"x":1568638680000,"y":15.05},{"x":1568638740000,"y":15.05},{"x":1568638800000,"y":15.04},{"x":1568638860000,"y":15.03},{"x":1568638920000,"y":15.03},{"x":1568638980000,"y":15.03},{"x":1568639040000,"y":15.03},{"x":1568639100000,"y":15.05},{"x":1568639160000,"y":15.04},{"x":1568639220000,"y":15.04},{"x":1568639280000,"y":15.05},{"x":1568639340000,"y":15.05},{"x":1568639400000,"y":15.05},{"x":1568639460000,"y":15.04},{"x":1568639520000,"y":15.04},{"x":1568639580000,"y":15.04},{"x":1568639640000,"y":15.04},{"x":1568639700000,"y":15.04},{"x":1568639760000,"y":15.05},{"x":1568639820000,"y":15.06},{"x":1568639880000,"y":15.06},{"x":1568639940000,"y":15.06},{"x":1568640000000,"y":15.04},{"x":1568640060000,"y":15.05},{"x":1568640120000,"y":15.04},{"x":1568640180000,"y":15.04},{"x":1568640240000,"y":15.03},{"x":1568640300000,"y":15.04},{"x":1568640360000,"y":15.06},{"x":1568640420000,"y":15.05},{"x":1568640480000,"y":15.05},{"x":1568640540000,"y":15.05},{"x":1568640600000,"y":15.05},{"x":1568640660000,"y":15.06},{"x":1568640720000,"y":15.05},{"x":1568640780000,"y":15.05},{"x":1568640840000,"y":15.05},{"x":1568640900000,"y":15.04},{"x":1568640960000,"y":15.05},{"x":1568641020000,"y":15.05},{"x":1568641080000,"y":15.05},{"x":1568641140000,"y":15.05},{"x":1568641200000,"y":15.05},{"x":1568641260000,"y":15.06},{"x":1568641320000,"y":15.05},{"x":1568641380000,"y":15.05},{"x":1568641440000,"y":15.05},{"x":1568641500000,"y":15.05},{"x":1568641560000,"y":15.06},{"x":1568641620000,"y":15.05},{"x":1568641680000,"y":15.05},{"x":1568641740000,"y":15.05},{"x":1568641800000,"y":15.05},{"x":1568641860000,"y":15.06},{"x":1568641920000,"y":15.06},{"x":1568641980000,"y":15.06},{"x":1568642040000,"y":15.06},{"x":1568642100000,"y":15.04},{"x":1568642160000,"y":15.05},{"x":1568642220000,"y":15.05},{"x":1568642280000,"y":15.05},{"x":1568642340000,"y":15.05},{"x":1568642400000,"y":15.05},{"x":1568642460000,"y":15.05},{"x":1568642520000,"y":15.05},{"x":1568642580000,"y":15.04},{"x":1568642640000,"y":15.04},{"x":1568642700000,"y":15.03},{"x":1568642760000,"y":15.03},{"x":1568642820000,"y":15.05},{"x":1568642880000,"y":15.05},{"x":1568642940000,"y":15.03},{"x":1568643000000,"y":15.03},{"x":1568643060000,"y":15.03},{"x":1568643120000,"y":15.06},{"x":1568643180000,"y":15.04},{"x":1568643240000,"y":15.04},{"x":1568643300000,"y":15.04},{"x":1568643360000,"y":15.04},{"x":1568643420000,"y":15.06},{"x":1568643480000,"y":15.05},{"x":1568643540000,"y":15.05},{"x":1568643600000,"y":15.05},{"x":1568643660000,"y":15.04},{"x":1568643720000,"y":15.06},{"x":1568643780000,"y":15.06},{"x":1568643840000,"y":15.06},{"x":1568643900000,"y":15.05},{"x":1568643960000,"y":15.05},{"x":1568644020000,"y":15.06},{"x":1568644080000,"y":15.05},{"x":1568644140000,"y":15.05},{"x":1568644200000,"y":15.06},{"x":1568644260000,"y":15.06},{"x":1568644320000,"y":15.07},{"x":1568644380000,"y":15.06},{"x":1568644440000,"y":15.06},{"x":1568644500000,"y":15.02},{"x":1568644560000,"y":15.02},{"x":1568644620000,"y":15.02},{"x":1568644680000,"y":15.06},{"x":1568644740000,"y":15.06},{"x":1568644800000,"y":15.02},{"x":1568644860000,"y":15.02},{"x":1568644920000,"y":15.02},{"x":1568644980000,"y":15.06},{"x":1568645040000,"y":15.06},{"x":1568645100000,"y":15.06},{"x":1568645160000,"y":15.05},{"x":1568645220000,"y":15.05},{"x":1568645280000,"y":15.02},{"x":1568645340000,"y":14.99},{"x":1568645400000,"y":15.05},{"x":1568645460000,"y":15.05},{"x":1568645520000,"y":15.05},{"x":1568645580000,"y":15.08},{"x":1568645640000,"y":15.06},{"x":1568645700000,"y":15.07},{"x":1568645760000,"y":15.07},{"x":1568645820000,"y":15.07},{"x":1568645880000,"y":15.08},{"x":1568645940000,"y":15.06},{"x":1568646000000,"y":15.04},{"x":1568646060000,"y":15.03},{"x":1568646120000,"y":15.03},{"x":1568646180000,"y":15.05},{"x":1568646240000,"y":15.07},{"x":1568646300000,"y":15.06},{"x":1568646360000,"y":15.06},{"x":1568646420000,"y":15.06},{"x":1568646480000,"y":15.06},{"x":1568646540000,"y":15.06},{"x":1568646600000,"y":15.06},{"x":1568646660000,"y":15.06},{"x":1568646720000,"y":15.06},{"x":1568646780000,"y":15.08},{"x":1568646840000,"y":15.07},{"x":1568646900000,"y":15.02},{"x":1568646960000,"y":15.01},{"x":1568647020000,"y":15.02},{"x":1568647080000,"y":15.02},{"x":1568647140000,"y":15.32},{"x":1568647200000,"y":15.08},{"x":1568647260000,"y":14.71},{"x":1568647320000,"y":14.69},{"x":1568647380000,"y":14.69},{"x":1568647440000,"y":14.66},{"x":1568647500000,"y":14.63},{"x":1568647560000,"y":14.63},{"x":1568647620000,"y":14.63},{"x":1568647680000,"y":14.63},{"x":1568647740000,"y":14.62},{"x":1568647800000,"y":14.61},{"x":1568647860000,"y":14.61},{"x":1568647920000,"y":14.61},{"x":1568647980000,"y":14.61},{"x":1568648040000,"y":14.64},{"x":1568648100000,"y":14.63},{"x":1568648160000,"y":14.63},{"x":1568648220000,"y":14.63},{"x":1568648280000,"y":14.63},{"x":1568648340000,"y":14.64},{"x":1568648400000,"y":14.63},{"x":1568648460000,"y":14.63},{"x":1568648520000,"y":14.63},{"x":1568648580000,"y":14.63},{"x":1568648640000,"y":14.64},{"x":1568648700000,"y":14.63},{"x":1568648760000,"y":14.63},{"x":1568648820000,"y":14.63},{"x":1568648880000,"y":14.63},{"x":1568648940000,"y":14.64},{"x":1568649000000,"y":14.64},{"x":1568649060000,"y":14.64},{"x":1568649120000,"y":14.64},{"x":1568649180000,"y":14.64},{"x":1568649240000,"y":14.66},{"x":1568649300000,"y":14.65},{"x":1568649360000,"y":14.65},{"x":1568649420000,"y":14.65},{"x":1568649480000,"y":14.65},{"x":1568649540000,"y":14.65},{"x":1568649600000,"y":14.65},{"x":1568649660000,"y":14.64},{"x":1568649720000,"y":14.64},{"x":1568649780000,"y":14.64},{"x":1568649840000,"y":14.64},{"x":1568649900000,"y":14.66},{"x":1568649960000,"y":14.65},{"x":1568650020000,"y":14.65},{"x":1568650080000,"y":14.65},{"x":1568650140000,"y":14.64},{"x":1568650200000,"y":14.64},{"x":1568650260000,"y":14.62},{"x":1568650320000,"y":14.62},{"x":1568650380000,"y":14.62},{"x":1568650440000,"y":14.62},{"x":1568650500000,"y":14.66},{"x":1568650560000,"y":14.65},{"x":1568650620000,"y":14.64},{"x":1568650680000,"y":14.64},{"x":1568650740000,"y":14.64},{"x":1568650800000,"y":14.66},{"x":1568650860000,"y":14.65},{"x":1568650920000,"y":14.65},{"x":1568650980000,"y":14.65},{"x":1568651040000,"y":14.65},{"x":1568651100000,"y":14.66},{"x":1568651160000,"y":14.65},{"x":1568651220000,"y":14.65},{"x":1568651280000,"y":14.65},{"x":1568651340000,"y":14.65},{"x":1568651400000,"y":14.64},{"x":1568651460000,"y":14.65},{"x":1568651520000,"y":14.65},{"x":1568651580000,"y":14.65},{"x":1568651640000,"y":14.65},{"x":1568651700000,"y":14.66},{"x":1568651760000,"y":14.65},{"x":1568651820000,"y":14.65},{"x":1568651880000,"y":14.65},{"x":1568651940000,"y":14.65},{"x":1568652000000,"y":14.65},{"x":1568652060000,"y":14.66},{"x":1568652120000,"y":14.65},{"x":1568652180000,"y":14.65},{"x":1568652240000,"y":14.65},{"x":1568652300000,"y":14.66},{"x":1568652360000,"y":14.7},{"x":1568652420000,"y":14.9},{"x":1568652480000,"y":14.96},{"x":1568652540000,"y":14.99},{"x":1568652600000,"y":15.05},{"x":1568652660000,"y":15.06},{"x":1568652720000,"y":15.05},{"x":1568652780000,"y":15.04},{"x":1568652840000,"y":15.04},{"x":1568652900000,"y":15.05},{"x":1568652960000,"y":15.06},{"x":1568653020000,"y":15.05},{"x":1568653080000,"y":15.05},{"x":1568653140000,"y":15.05},{"x":1568653200000,"y":15.05},{"x":1568653260000,"y":15.07},{"x":1568653320000,"y":15.04},{"x":1568653380000,"y":15.04},{"x":1568653440000,"y":15.04},{"x":1568653500000,"y":15.05},{"x":1568653560000,"y":15.05},{"x":1568653620000,"y":15.02},{"x":1568653680000,"y":15.02},{"x":1568653740000,"y":15.04},{"x":1568653800000,"y":15.04},{"x":1568653860000,"y":15.05},{"x":1568653920000,"y":15.05},{"x":1568653980000,"y":15.04},{"x":1568654040000,"y":15.04},{"x":1568654100000,"y":15.05},{"x":1568654160000,"y":15.07},{"x":1568654220000,"y":15.03},{"x":1568654280000,"y":15.03},{"x":1568654340000,"y":15.03},{"x":1568654400000,"y":15.02},{"x":1568654460000,"y":15.02},{"x":1568654520000,"y":15.05},{"x":1568654580000,"y":15.03},{"x":1568654640000,"y":15.03},{"x":1568654700000,"y":15.03},{"x":1568654760000,"y":15.03},{"x":1568654820000,"y":15.05},{"x":1568654880000,"y":15.04},{"x":1568654940000,"y":15.04},{"x":1568655000000,"y":15.04},{"x":1568655060000,"y":15.04},{"x":1568655120000,"y":15.05},{"x":1568655180000,"y":15.05},{"x":1568655240000,"y":15.05},{"x":1568655300000,"y":15.05},{"x":1568655360000,"y":15.05},{"x":1568655420000,"y":15.05},{"x":1568655480000,"y":15.02},{"x":1568655540000,"y":15.04},{"x":1568655600000,"y":15.04},{"x":1568655660000,"y":15.04},{"x":1568655720000,"y":15.05},{"x":1568655780000,"y":15.06},{"x":1568655840000,"y":15.06},{"x":1568655900000,"y":15.05},{"x":1568655960000,"y":15.05},{"x":1568656020000,"y":15.06},{"x":1568656080000,"y":15.02},{"x":1568656140000,"y":15.02},{"x":1568656200000,"y":14.99},{"x":1568656260000,"y":14.99},{"x":1568656320000,"y":15.02},{"x":1568656380000,"y":15.03},{"x":1568656440000,"y":15.03},{"x":1568656500000,"y":15.03},{"x":1568656560000,"y":15.03},{"x":1568656620000,"y":15.04},{"x":1568656680000,"y":15.03},{"x":1568656740000,"y":15.03},{"x":1568656800000,"y":15.03},{"x":1568656860000,"y":15.03},{"x":1568656920000,"y":15.03},{"x":1568656980000,"y":15.04},{"x":1568657040000,"y":15.03},{"x":1568657100000,"y":15.02},{"x":1568657160000,"y":15.02},{"x":1568657220000,"y":15.02},{"x":1568657280000,"y":15.04},{"x":1568657340000,"y":15.03},{"x":1568657400000,"y":15.04},{"x":1568657460000,"y":15.04},{"x":1568657520000,"y":15.04},{"x":1568657580000,"y":15.05},{"x":1568657640000,"y":15.03},{"x":1568657700000,"y":15.03},{"x":1568657760000,"y":15.03},{"x":1568657820000,"y":15.03},{"x":1568657880000,"y":15.04},{"x":1568657940000,"y":15.04},{"x":1568658000000,"y":15.04},{"x":1568658060000,"y":15.04},{"x":1568658120000,"y":15.04},{"x":1568658180000,"y":15.05},{"x":1568658240000,"y":15.05},{"x":1568658300000,"y":15.05},{"x":1568658360000,"y":15.05},{"x":1568658420000,"y":15.05},{"x":1568658480000,"y":15.06},{"x":1568658540000,"y":15.04},{"x":1568658600000,"y":15.24},{"x":1568658660000,"y":15.22},{"x":1568658720000,"y":15.13},{"x":1568658780000,"y":15.14},{"x":1568658840000,"y":15.16},{"x":1568658900000,"y":15.17},{"x":1568658960000,"y":15.18},{"x":1568659020000,"y":15.18},{"x":1568659080000,"y":15.18},{"x":1568659140000,"y":15.18},{"x":1568659200000,"y":15.17},{"x":1568659260000,"y":15.17},{"x":1568659320000,"y":15.17},{"x":1568659380000,"y":15.17},{"x":1568659440000,"y":15.16},{"x":1568659500000,"y":15.18},{"x":1568659560000,"y":15.18},{"x":1568659620000,"y":15.17},{"x":1568659680000,"y":15.17},{"x":1568659740000,"y":15.19},{"x":1568659800000,"y":15.16},{"x":1568659860000,"y":15.16},{"x":1568659920000,"y":15.16},{"x":1568659980000,"y":15.16},{"x":1568660040000,"y":15.19},{"x":1568660100000,"y":15.17},{"x":1568660160000,"y":15.17},{"x":1568660220000,"y":15.16},{"x":1568660280000,"y":15.17},{"x":1568660340000,"y":15.19},{"x":1568660400000,"y":15.18},{"x":1568660460000,"y":15.17},{"x":1568660520000,"y":15.17},{"x":1568660580000,"y":15.17},{"x":1568660640000,"y":15.19},{"x":1568660700000,"y":15.17},{"x":1568660760000,"y":15.17},{"x":1568660820000,"y":15.17},{"x":1568660880000,"y":15.17},{"x":1568660940000,"y":15.19},{"x":1568661000000,"y":15.17},{"x":1568661060000,"y":15.17},{"x":1568661120000,"y":15.17},{"x":1568661180000,"y":15.17},{"x":1568661240000,"y":15.17},{"x":1568661300000,"y":15.19},{"x":1568661360000,"y":15.17},{"x":1568661420000,"y":15.17},{"x":1568661480000,"y":15.17},{"x":1568661540000,"y":15.17},{"x":1568661600000,"y":15.18},{"x":1568661660000,"y":15.17},{"x":1568661720000,"y":15.18},{"x":1568661780000,"y":15.17},{"x":1568661840000,"y":15.17},{"x":1568661900000,"y":15.2},{"x":1568661960000,"y":15.18},{"x":1568662020000,"y":15.18},{"x":1568662080000,"y":15.18},{"x":1568662140000,"y":15.18},{"x":1568662200000,"y":15.19},{"x":1568662260000,"y":15.18},{"x":1568662320000,"y":15.18},{"x":1568662380000,"y":15.18},{"x":1568662440000,"y":15.18},{"x":1568662500000,"y":15.19},{"x":1568662560000,"y":15.17},{"x":1568662620000,"y":15.17},{"x":1568662680000,"y":15.17},{"x":1568662740000,"y":15.18},{"x":1568662800000,"y":15.19},{"x":1568662860000,"y":15.18},{"x":1568662920000,"y":15.18},{"x":1568662980000,"y":15.18},{"x":1568663040000,"y":15.18},{"x":1568663100000,"y":15.18},{"x":1568663160000,"y":15.18},{"x":1568663220000,"y":15.18},{"x":1568663280000,"y":15.18},{"x":1568663340000,"y":15.18},{"x":1568663400000,"y":15.2},{"x":1568663460000,"y":15.18},{"x":1568663520000,"y":15.18},{"x":1568663580000,"y":15.18},{"x":1568663640000,"y":15.18},{"x":1568663700000,"y":15.19},{"x":1568663760000,"y":15.19},{"x":1568663820000,"y":15.17},{"x":1568663880000,"y":15.17},{"x":1568663940000,"y":15.18},{"x":1568664000000,"y":15.19},{"x":1568664060000,"y":15.2},{"x":1568664120000,"y":15.19},{"x":1568664180000,"y":15.2},{"x":1568664240000,"y":15.19},{"x":1568664300000,"y":15.17},{"x":1568664360000,"y":15.19},{"x":1568664420000,"y":15.19},{"x":1568664480000,"y":15.19},{"x":1568664540000,"y":15.18},{"x":1568664600000,"y":15.19},{"x":1568664660000,"y":15.2},{"x":1568664720000,"y":15.19},{"x":1568664780000,"y":15.19},{"x":1568664840000,"y":15.19},{"x":1568664900000,"y":15.16},{"x":1568664960000,"y":15.18},{"x":1568665020000,"y":15.17},{"x":1568665080000,"y":15.17},{"x":1568665140000,"y":15.17},{"x":1568665200000,"y":15.19},{"x":1568665260000,"y":15.2},{"x":1568665320000,"y":15.19},{"x":1568665380000,"y":15.18},{"x":1568665440000,"y":15.16},{"x":1568665500000,"y":15.15},{"x":1568665560000,"y":15.16},{"x":1568665620000,"y":15.16},{"x":1568665680000,"y":15.16},{"x":1568665740000,"y":15.16},{"x":1568665800000,"y":15.17},{"x":1568665860000,"y":15.17},{"x":1568665920000,"y":15.18},{"x":1568665980000,"y":15.17},{"x":1568666040000,"y":15.17},{"x":1568666100000,"y":15.17},{"x":1568666160000,"y":15.17},{"x":1568666220000,"y":15.18},{"x":1568666280000,"y":15.16},{"x":1568666340000,"y":15.17},{"x":1568666400000,"y":15.18},{"x":1568666460000,"y":15.18},{"x":1568666520000,"y":15.19},{"x":1568666580000,"y":15.18},{"x":1568666640000,"y":15.18},{"x":1568666700000,"y":15.17},{"x":1568666760000,"y":15.17},{"x":1568666820000,"y":15.18},{"x":1568666880000,"y":15.18},{"x":1568666940000,"y":15.18},{"x":1568667000000,"y":15.15},{"x":1568667060000,"y":15.15},{"x":1568667120000,"y":15.18},{"x":1568667180000,"y":15.17},{"x":1568667240000,"y":15.17},{"x":1568667300000,"y":15.18},{"x":1568667360000,"y":15.18},{"x":1568667420000,"y":15.19},{"x":1568667480000,"y":15.17},{"x":1568667540000,"y":15.17},{"x":1568667600000,"y":15.18},{"x":1568667660000,"y":15.18},{"x":1568667720000,"y":15.19},{"x":1568667780000,"y":15.18},{"x":1568667840000,"y":15.18},{"x":1568667900000,"y":15.16},{"x":1568667960000,"y":15.16},{"x":1568668020000,"y":15.17},{"x":1568668080000,"y":15.18},{"x":1568668140000,"y":15.17},{"x":1568668200000,"y":15.18},{"x":1568668260000,"y":15.18},{"x":1568668320000,"y":15.18},{"x":1568668380000,"y":15.18},{"x":1568668440000,"y":15.16},{"x":1568668500000,"y":15.18},{"x":1568668560000,"y":15.18},{"x":1568668620000,"y":15.18},{"x":1568668680000,"y":15.19},{"x":1568668740000,"y":15.18},{"x":1568668800000,"y":15.18},{"x":1568668860000,"y":15.18},{"x":1568668920000,"y":15.18},{"x":1568668980000,"y":15.6},{"x":1568669040000,"y":15.25},{"x":1568669100000,"y":15.23},{"x":1568669160000,"y":15.22},{"x":1568669220000,"y":15.22},{"x":1568669280000,"y":15.22},{"x":1568669340000,"y":15.19},{"x":1568669400000,"y":15.18},{"x":1568669460000,"y":15.18},{"x":1568669520000,"y":15.18},{"x":1568669580000,"y":15.19},{"x":1568669640000,"y":15.18},{"x":1568669700000,"y":15.16},{"x":1568669760000,"y":15.16},{"x":1568669820000,"y":15.16},{"x":1568669880000,"y":15.18},{"x":1568669940000,"y":15.19},{"x":1568670000000,"y":15.19},{"x":1568670060000,"y":15.18},{"x":1568670120000,"y":15.18},{"x":1568670180000,"y":15.2},{"x":1568670240000,"y":15.19},{"x":1568670300000,"y":15.18},{"x":1568670360000,"y":15.17},{"x":1568670420000,"y":15.16},{"x":1568670480000,"y":15.17},{"x":1568670540000,"y":15.17},{"x":1568670600000,"y":15.19},{"x":1568670660000,"y":15.19},{"x":1568670720000,"y":15.19},{"x":1568670780000,"y":15.18},{"x":1568670840000,"y":15.19},{"x":1568670900000,"y":15.19},{"x":1568670960000,"y":15.19},{"x":1568671020000,"y":15.19},{"x":1568671080000,"y":15.19},{"x":1568671140000,"y":15.2},{"x":1568671200000,"y":15.18},{"x":1568671260000,"y":15.18},{"x":1568671320000,"y":15.18},{"x":1568671380000,"y":15.18},{"x":1568671440000,"y":15.19},{"x":1568671500000,"y":15.18},{"x":1568671560000,"y":15.18},{"x":1568671620000,"y":15.18},{"x":1568671680000,"y":15.18},{"x":1568671740000,"y":15.2},{"x":1568671800000,"y":15.19},{"x":1568671860000,"y":15.19},{"x":1568671920000,"y":15.19},{"x":1568671980000,"y":15.19},{"x":1568672040000,"y":15.2},{"x":1568672100000,"y":15.17},{"x":1568672160000,"y":15.17},{"x":1568672220000,"y":15.18},{"x":1568672280000,"y":15.18},{"x":1568672340000,"y":15.2},{"x":1568672400000,"y":15.19},{"x":1568672460000,"y":15.19},{"x":1568672520000,"y":15.19},{"x":1568672580000,"y":15.19},{"x":1568672640000,"y":15.2},{"x":1568672700000,"y":15.19},{"x":1568672760000,"y":15.2},{"x":1568672820000,"y":15.2},{"x":1568672880000,"y":15.2},{"x":1568672940000,"y":15.21},{"x":1568673000000,"y":15.19},{"x":1568673060000,"y":15.19},{"x":1568673120000,"y":15.19},{"x":1568673180000,"y":15.19},{"x":1568673240000,"y":15.21},{"x":1568673300000,"y":15.18},{"x":1568673360000,"y":15.18},{"x":1568673420000,"y":15.19},{"x":1568673480000,"y":15.2},{"x":1568673540000,"y":15.2},{"x":1568673600000,"y":15.2},{"x":1568673660000,"y":15.19},{"x":1568673720000,"y":15.19},{"x":1568673780000,"y":15.19},{"x":1568673840000,"y":15.19},{"x":1568673900000,"y":15.18},{"x":1568673960000,"y":15.17},{"x":1568674020000,"y":15.17},{"x":1568674080000,"y":15.17},{"x":1568674140000,"y":15.17},{"x":1568674200000,"y":15.21},{"x":1568674260000,"y":15.2},{"x":1568674320000,"y":15.2},{"x":1568674380000,"y":15.2},{"x":1568674440000,"y":15.2},{"x":1568674500000,"y":15.22},{"x":1568674560000,"y":15.2},{"x":1568674620000,"y":15.21},{"x":1568674680000,"y":15.2},{"x":1568674740000,"y":15.18},{"x":1568674800000,"y":15.17},{"x":1568674860000,"y":15.16},{"x":1568674920000,"y":15.16},{"x":1568674980000,"y":15.16},{"x":1568675040000,"y":15.16},{"x":1568675100000,"y":15.19},{"x":1568675160000,"y":15.18},{"x":1568675220000,"y":15.18},{"x":1568675280000,"y":15.18},{"x":1568675340000,"y":15.19},{"x":1568675400000,"y":15.19},{"x":1568675460000,"y":15.19},{"x":1568675520000,"y":15.19},{"x":1568675580000,"y":15.19},{"x":1568675640000,"y":15.19},{"x":1568675700000,"y":15.19},{"x":1568675760000,"y":15.2},{"x":1568675820000,"y":15.18},{"x":1568675880000,"y":15.18},{"x":1568675940000,"y":15.18},{"x":1568676000000,"y":15.18},{"x":1568676060000,"y":15.2},{"x":1568676120000,"y":15.18},{"x":1568676180000,"y":15.18},{"x":1568676240000,"y":15.18},{"x":1568676300000,"y":15.18},{"x":1568676360000,"y":15.2},{"x":1568676420000,"y":15.19},{"x":1568676480000,"y":15.19},{"x":1568676540000,"y":15.19},{"x":1568676600000,"y":15.19},{"x":1568676660000,"y":15.2},{"x":1568676720000,"y":15.19},{"x":1568676780000,"y":15.19},{"x":1568676840000,"y":15.19},{"x":1568676900000,"y":15.19},{"x":1568676960000,"y":15.2},{"x":1568677020000,"y":15.19},{"x":1568677080000,"y":15.18},{"x":1568677140000,"y":15.2},{"x":1568677200000,"y":15.21},{"x":1568677260000,"y":15.21},{"x":1568677320000,"y":15.2},{"x":1568677380000,"y":15.2},{"x":1568677440000,"y":15.2},{"x":1568677500000,"y":15.2},{"x":1568677560000,"y":15.21},{"x":1568677620000,"y":15.2},{"x":1568677680000,"y":15.2},{"x":1568677740000,"y":15.2},{"x":1568677800000,"y":15.17},{"x":1568677860000,"y":15.17},{"x":1568677920000,"y":15.2},{"x":1568677980000,"y":15.2},{"x":1568678040000,"y":15.2},{"x":1568678100000,"y":15.08},{"x":1568678160000,"y":15.08},{"x":1568678220000,"y":15.09},{"x":1568678280000,"y":15.08},{"x":1568678340000,"y":15.08},{"x":1568678400000,"y":15.09},{"x":1568678460000,"y":15.09},{"x":1568678520000,"y":15.09},{"x":1568678580000,"y":15.08},{"x":1568678640000,"y":15.08},{"x":1568678700000,"y":15.09},{"x":1568678760000,"y":15.09},{"x":1568678820000,"y":15.11},{"x":1568678880000,"y":15.09},{"x":1568678940000,"y":15.09},{"x":1568679000000,"y":15.09},{"x":1568679060000,"y":15.1},{"x":1568679120000,"y":15.1},{"x":1568679180000,"y":15.09},{"x":1568679240000,"y":15.09},{"x":1568679300000,"y":15.09},{"x":1568679360000,"y":15.09},{"x":1568679420000,"y":15.1},{"x":1568679480000,"y":15.09},{"x":1568679540000,"y":15.09},{"x":1568679600000,"y":15.09},{"x":1568679660000,"y":15.09},{"x":1568679720000,"y":15.1},{"x":1568679780000,"y":15.07},{"x":1568679840000,"y":15.08},{"x":1568679900000,"y":15.1},{"x":1568679960000,"y":15.1},{"x":1568680020000,"y":15.1},{"x":1568680080000,"y":15.08},{"x":1568680140000,"y":15.07},{"x":1568680200000,"y":15.09},{"x":1568680260000,"y":15.09},{"x":1568680320000,"y":15.09},{"x":1568680380000,"y":15.1},{"x":1568680440000,"y":15.08},{"x":1568680500000,"y":15.06},{"x":1568680560000,"y":15.06},{"x":1568680620000,"y":15.06},{"x":1568680680000,"y":15.09},{"x":1568680740000,"y":15.09},{"x":1568680800000,"y":15.08},{"x":1568680860000,"y":15.08},{"x":1568680920000,"y":15.08},{"x":1568680980000,"y":15.08},{"x":1568681040000,"y":15.07},{"x":1568681100000,"y":15.07},{"x":1568681160000,"y":15.07},{"x":1568681220000,"y":15.07},{"x":1568681280000,"y":15.07},{"x":1568681340000,"y":15.05},{"x":1568681400000,"y":15.07},{"x":1568681460000,"y":15.07},{"x":1568681520000,"y":15.07},{"x":1568681580000,"y":15.09},{"x":1568681640000,"y":15.08},{"x":1568681700000,"y":15.1},{"x":1568681760000,"y":15.1},{"x":1568681820000,"y":15.1},{"x":1568681880000,"y":15.12},{"x":1568681940000,"y":15.09},{"x":1568682000000,"y":15.08},{"x":1568682060000,"y":15.07},{"x":1568682120000,"y":15.07},{"x":1568682180000,"y":15.07},{"x":1568682240000,"y":15.07},{"x":1568682300000,"y":15.09},{"x":1568682360000,"y":15.09},{"x":1568682420000,"y":15.09},{"x":1568682480000,"y":15.09},{"x":1568682540000,"y":15.11},{"x":1568682600000,"y":15.1},{"x":1568682660000,"y":15.09},{"x":1568682720000,"y":15.09},{"x":1568682780000,"y":15.09},{"x":1568682840000,"y":15.11},{"x":1568682900000,"y":15.1},{"x":1568682960000,"y":15.1},{"x":1568683020000,"y":15.1},{"x":1568683080000,"y":15.1},{"x":1568683140000,"y":15.11},{"x":1568683200000,"y":15.08},{"x":1568683260000,"y":15.08},{"x":1568683320000,"y":15.08},{"x":1568683380000,"y":15.08},{"x":1568683440000,"y":15.09},{"x":1568683500000,"y":15.11},{"x":1568683560000,"y":15.11},{"x":1568683620000,"y":15.11},{"x":1568683680000,"y":15.11},{"x":1568683740000,"y":15.12},{"x":1568683800000,"y":15.1},{"x":1568683860000,"y":15.1},{"x":1568683920000,"y":15.1},{"x":1568683980000,"y":15.1},{"x":1568684040000,"y":15.09},{"x":1568684100000,"y":15.07},{"x":1568684160000,"y":15.07},{"x":1568684220000,"y":15.07},{"x":1568684280000,"y":15.07},{"x":1568684340000,"y":15.09},{"x":1568684400000,"y":15.07},{"x":1568684460000,"y":15.07},{"x":1568684520000,"y":15.07},{"x":1568684580000,"y":15.07},{"x":1568684640000,"y":15.07},{"x":1568684700000,"y":15.08},{"x":1568684760000,"y":15.07},{"x":1568684820000,"y":15.08},{"x":1568684880000,"y":15.07},{"x":1568684940000,"y":15.07},{"x":1568685000000,"y":15.1},{"x":1568685060000,"y":15.09},{"x":1568685120000,"y":15.09},{"x":1568685180000,"y":15.09},{"x":1568685240000,"y":15.09},{"x":1568685300000,"y":15.1},{"x":1568685360000,"y":15.09},{"x":1568685420000,"y":15.1},{"x":1568685480000,"y":15.1},{"x":1568685540000,"y":15.09},{"x":1568685600000,"y":15.07},{"x":1568685660000,"y":15.05},{"x":1568685720000,"y":15.05},{"x":1568685780000,"y":15.05},{"x":1568685840000,"y":15.05},{"x":1568685900000,"y":15.1},{"x":1568685960000,"y":15.09},{"x":1568686020000,"y":15.09},{"x":1568686080000,"y":15.09},{"x":1568686140000,"y":15.09},{"x":1568686200000,"y":15.09},{"x":1568686260000,"y":15.09},{"x":1568686320000,"y":15.09},{"x":1568686380000,"y":15.09},{"x":1568686440000,"y":15.08},{"x":1568686500000,"y":15.11},{"x":1568686560000,"y":15.08},{"x":1568686620000,"y":15.08},{"x":1568686680000,"y":15.09},{"x":1568686740000,"y":15.09},{"x":1568686800000,"y":15.09},{"x":1568686860000,"y":15.12},{"x":1568686920000,"y":15.1},{"x":1568686980000,"y":15.1},{"x":1568687040000,"y":15.1},{"x":1568687100000,"y":15.09},{"x":1568687160000,"y":15.1},{"x":1568687220000,"y":15.09},{"x":1568687280000,"y":15.09},{"x":1568687340000,"y":15.09},{"x":1568687400000,"y":15.09},{"x":1568687460000,"y":15.1},{"x":1568687520000,"y":15.09},{"x":1568687580000,"y":15.09},{"x":1568687640000,"y":15.11},{"x":1568687700000,"y":15.24},{"x":1568687760000,"y":15.25},{"x":1568687820000,"y":15.24},{"x":1568687880000,"y":15.24},{"x":1568687940000,"y":15.24},{"x":1568688000000,"y":15.23},{"x":1568688060000,"y":15.25},{"x":1568688120000,"y":15.24},{"x":1568688180000,"y":15.24},{"x":1568688240000,"y":15.24},{"x":1568688300000,"y":15.21},{"x":1568688360000,"y":15.23},{"x":1568688420000,"y":15.23},{"x":1568688480000,"y":15.23},{"x":1568688540000,"y":15.23},{"x":1568688600000,"y":15.2},{"x":1568688660000,"y":15.21},{"x":1568688720000,"y":15.22},{"x":1568688780000,"y":15.22},{"x":1568688840000,"y":15.22},{"x":1568688900000,"y":15.24},{"x":1568688960000,"y":15.25},{"x":1568689020000,"y":15.25},{"x":1568689080000,"y":15.24},{"x":1568689140000,"y":15.24},{"x":1568689200000,"y":15.23},{"x":1568689260000,"y":15.23},{"x":1568689320000,"y":15.25},{"x":1568689380000,"y":15.24},{"x":1568689440000,"y":15.24},{"x":1568689500000,"y":15.24},{"x":1568689560000,"y":15.24},{"x":1568689620000,"y":15.25},{"x":1568689680000,"y":15.24},{"x":1568689740000,"y":15.24},{"x":1568689800000,"y":15.24},{"x":1568689860000,"y":15.24},{"x":1568689920000,"y":15.26},{"x":1568689980000,"y":15.24},{"x":1568690040000,"y":15.25},{"x":1568690100000,"y":15.22},{"x":1568690160000,"y":15.22},{"x":1568690220000,"y":15.24},{"x":1568690280000,"y":15.24},{"x":1568690340000,"y":15.24},{"x":1568690400000,"y":15.24},{"x":1568690460000,"y":15.23},{"x":1568690520000,"y":15.25},{"x":1568690580000,"y":15.24},{"x":1568690640000,"y":15.24},{"x":1568690700000,"y":15.23},{"x":1568690760000,"y":15.23},{"x":1568690820000,"y":15.55},{"x":1568690880000,"y":15.31},{"x":1568690940000,"y":15.31},{"x":1568691000000,"y":15.31},{"x":1568691060000,"y":15.31},{"x":1568691120000,"y":15.31},{"x":1568691180000,"y":15.25},{"x":1568691240000,"y":15.24},{"x":1568691300000,"y":15.25},{"x":1568691360000,"y":15.25},{"x":1568691420000,"y":15.25},{"x":1568691480000,"y":15.26},{"x":1568691540000,"y":15.26},{"x":1568691600000,"y":15.25},{"x":1568691660000,"y":15.25},{"x":1568691720000,"y":15.25},{"x":1568691780000,"y":15.26},{"x":1568691840000,"y":15.26},{"x":1568691900000,"y":15.3},{"x":1568691960000,"y":15.3},{"x":1568692020000,"y":15.3},{"x":1568692080000,"y":15.33},{"x":1568692140000,"y":15.33},{"x":1568692200000,"y":15.32},{"x":1568692260000,"y":15.32},{"x":1568692320000,"y":15.32},{"x":1568692380000,"y":15.33},{"x":1568692440000,"y":15.32},{"x":1568692500000,"y":15.29},{"x":1568692560000,"y":15.29},{"x":1568692620000,"y":15.29},{"x":1568692680000,"y":15.31},{"x":1568692740000,"y":15.31},{"x":1568692800000,"y":15.34},{"x":1568692860000,"y":15.33},{"x":1568692920000,"y":15.33},{"x":1568692980000,"y":15.34},{"x":1568693040000,"y":15.3},{"x":1568693100000,"y":15.32},{"x":1568693160000,"y":15.31},{"x":1568693220000,"y":15.3},{"x":1568693280000,"y":15.34},{"x":1568693340000,"y":15.4},{"x":1568693400000,"y":15.37},{"x":1568693460000,"y":15.37},{"x":1568693520000,"y":15.37},{"x":1568693580000,"y":15.37},{"x":1568693640000,"y":15.43},{"x":1568693700000,"y":15.52},{"x":1568693760000,"y":15.43},{"x":1568693820000,"y":15.42},{"x":1568693880000,"y":15.42},{"x":1568693940000,"y":15.43},{"x":1568694000000,"y":15.4},{"x":1568694060000,"y":15.78},{"x":1568694120000,"y":15.78},{"x":1568694180000,"y":15.74},{"x":1568694240000,"y":15.8},{"x":1568694300000,"y":15.8},{"x":1568694360000,"y":15.79},{"x":1568694420000,"y":15.74},{"x":1568694480000,"y":15.74},{"x":1568694540000,"y":15.74},{"x":1568694600000,"y":15.73},{"x":1568694660000,"y":15.73},{"x":1568694720000,"y":15.73},{"x":1568694780000,"y":15.73},{"x":1568694840000,"y":15.74},{"x":1568694900000,"y":15.74},{"x":1568694960000,"y":15.74},{"x":1568695020000,"y":15.74},{"x":1568695080000,"y":15.75},{"x":1568695140000,"y":15.75},{"x":1568695200000,"y":15.74},{"x":1568695260000,"y":15.74},{"x":1568695320000,"y":15.74},{"x":1568695380000,"y":15.74},{"x":1568695440000,"y":15.75},{"x":1568695500000,"y":15.74},{"x":1568695560000,"y":16.12},{"x":1568695620000,"y":16.95},{"x":1568695680000,"y":16.16},{"x":1568695740000,"y":16.76},{"x":1568695800000,"y":20.29},{"x":1568695860000,"y":27.04},{"x":1568695920000,"y":19.05},{"x":1568695980000,"y":20.6},{"x":1568696040000,"y":15.75},{"x":1568696100000,"y":15.78},{"x":1568696160000,"y":15.76},{"x":1568696220000,"y":15.77},{"x":1568696280000,"y":26.74},{"x":1568696340000,"y":28.42},{"x":1568696400000,"y":19.33},{"x":1568696460000,"y":16.32},{"x":1568696520000,"y":24.29},{"x":1568696580000,"y":24.28},{"x":1568696640000,"y":16.96},{"x":1568696700000,"y":17.01},{"x":1568696760000,"y":24.48},{"x":1568696820000,"y":26.89},{"x":1568696880000,"y":17.01},{"x":1568696940000,"y":17.05},{"x":1568697000000,"y":17.07},{"x":1568697060000,"y":17.05},{"x":1568697120000,"y":17.05},{"x":1568697180000,"y":17.05},{"x":1568697240000,"y":17.05},{"x":1568697300000,"y":17.06},{"x":1568697360000,"y":17.05},{"x":1568697420000,"y":17.05},{"x":1568697480000,"y":17.06},{"x":1568697540000,"y":17.06},{"x":1568697600000,"y":17.08},{"x":1568697660000,"y":17.06},{"x":1568697720000,"y":17.06},{"x":1568697780000,"y":18.86},{"x":1568697840000,"y":29.17},{"x":1568697900000,"y":17.77},{"x":1568697960000,"y":17.01},{"x":1568698020000,"y":17.01},{"x":1568698080000,"y":17.01},{"x":1568698140000,"y":17.01},{"x":1568698200000,"y":16.99},{"x":1568698260000,"y":17.02},{"x":1568698320000,"y":17.01},{"x":1568698380000,"y":17.01},{"x":1568698440000,"y":17.01},{"x":1568698500000,"y":17.02},{"x":1568698560000,"y":17.03},{"x":1568698620000,"y":17.02},{"x":1568698680000,"y":17.02},{"x":1568698740000,"y":17.03},{"x":1568698800000,"y":27.84},{"x":1568698860000,"y":21.41},{"x":1568698920000,"y":17.07},{"x":1568698980000,"y":17.07},{"x":1568699040000,"y":17.07},{"x":1568699100000,"y":17.07},{"x":1568699160000,"y":17.09},{"x":1568699220000,"y":17.08},{"x":1568699280000,"y":17.08},{"x":1568699340000,"y":17.08},{"x":1568699400000,"y":17.09},{"x":1568699460000,"y":17.41},{"x":1568699520000,"y":29.7},{"x":1568699580000,"y":20.06},{"x":1568699640000,"y":29.29},{"x":1568699700000,"y":24.5},{"x":1568699760000,"y":27.9},{"x":1568699820000,"y":21.25},{"x":1568699880000,"y":28.12},{"x":1568699940000,"y":27.92},{"x":1568700000000,"y":16.99},{"x":1568700060000,"y":22.91},{"x":1568700120000,"y":25.84},{"x":1568700180000,"y":17.02},{"x":1568700240000,"y":16.93},{"x":1568700300000,"y":16.94},{"x":1568700360000,"y":16.94},{"x":1568700420000,"y":16.94},{"x":1568700480000,"y":16.93},{"x":1568700540000,"y":16.93},{"x":1568700600000,"y":16.93},{"x":1568700660000,"y":16.93},{"x":1568700720000,"y":16.95},{"x":1568700780000,"y":16.94},{"x":1568700840000,"y":16.94},{"x":1568700900000,"y":16.95},{"x":1568700960000,"y":16.95},{"x":1568701020000,"y":16.96},{"x":1568701080000,"y":16.95},{"x":1568701140000,"y":16.93},{"x":1568701200000,"y":16.93},{"x":1568701260000,"y":16.93},{"x":1568701320000,"y":16.95},{"x":1568701380000,"y":16.93},{"x":1568701440000,"y":16.93},{"x":1568701500000,"y":16.94},{"x":1568701560000,"y":16.94},{"x":1568701620000,"y":16.95},{"x":1568701680000,"y":16.95},{"x":1568701740000,"y":16.95},{"x":1568701800000,"y":16.95},{"x":1568701860000,"y":16.95},{"x":1568701920000,"y":16.96},{"x":1568701980000,"y":16.95},{"x":1568702040000,"y":16.95},{"x":1568702100000,"y":16.92},{"x":1568702160000,"y":16.92},{"x":1568702220000,"y":16.91},{"x":1568702280000,"y":16.92},{"x":1568702340000,"y":16.94},{"x":1568702400000,"y":16.93},{"x":1568702460000,"y":16.93},{"x":1568702520000,"y":16.9},{"x":1568702580000,"y":16.93},{"x":1568702640000,"y":16.93},{"x":1568702700000,"y":16.9},{"x":1568702760000,"y":16.9},{"x":1568702820000,"y":16.9},{"x":1568702880000,"y":16.92},{"x":1568702940000,"y":16.91},{"x":1568703000000,"y":16.9},{"x":1568703060000,"y":16.9},{"x":1568703120000,"y":16.9},{"x":1568703180000,"y":16.94},{"x":1568703240000,"y":16.93},{"x":1568703300000,"y":16.92},{"x":1568703360000,"y":16.91},{"x":1568703420000,"y":16.91},{"x":1568703480000,"y":16.93},{"x":1568703540000,"y":16.93},{"x":1568703600000,"y":16.92},{"x":1568703660000,"y":16.92},{"x":1568703720000,"y":16.92},{"x":1568703780000,"y":16.93},{"x":1568703840000,"y":16.93},{"x":1568703900000,"y":16.93},{"x":1568703960000,"y":16.93},{"x":1568704020000,"y":16.93},{"x":1568704080000,"y":16.94},{"x":1568704140000,"y":16.95},{"x":1568704200000,"y":16.94},{"x":1568704260000,"y":16.94},{"x":1568704320000,"y":16.94},{"x":1568704380000,"y":16.95},{"x":1568704440000,"y":16.92},{"x":1568704500000,"y":16.92},{"x":1568704560000,"y":16.92},{"x":1568704620000,"y":16.92},{"x":1568704680000,"y":16.93},{"x":1568704740000,"y":16.92},{"x":1568704800000,"y":16.93},{"x":1568704860000,"y":16.93},{"x":1568704920000,"y":16.93},{"x":1568704980000,"y":16.93},{"x":1568705040000,"y":16.92},{"x":1568705100000,"y":16.94},{"x":1568705160000,"y":16.94},{"x":1568705220000,"y":16.93},{"x":1568705280000,"y":16.93},{"x":1568705340000,"y":16.95},{"x":1568705400000,"y":16.95},{"x":1568705460000,"y":16.95},{"x":1568705520000,"y":16.95},{"x":1568705580000,"y":16.92},{"x":1568705640000,"y":16.93},{"x":1568705700000,"y":16.89},{"x":1568705760000,"y":16.89},{"x":1568705820000,"y":16.89},{"x":1568705880000,"y":16.89},{"x":1568705940000,"y":16.94},{"x":1568706000000,"y":16.92},{"x":1568706060000,"y":16.92},{"x":1568706120000,"y":16.92},{"x":1568706180000,"y":16.92},{"x":1568706240000,"y":16.94},{"x":1568706300000,"y":16.93},{"x":1568706360000,"y":16.93},{"x":1568706420000,"y":16.92},{"x":1568706480000,"y":16.92},{"x":1568706540000,"y":16.93},{"x":1568706600000,"y":16.95},{"x":1568706660000,"y":16.95},{"x":1568706720000,"y":16.93},{"x":1568706780000,"y":16.92},{"x":1568706840000,"y":16.92},{"x":1568706900000,"y":16.91},{"x":1568706960000,"y":16.9},{"x":1568707020000,"y":16.9},{"x":1568707080000,"y":16.9},{"x":1568707140000,"y":16.9},{"x":1568707200000,"y":16.92},{"x":1568707260000,"y":16.9},{"x":1568707320000,"y":16.9},{"x":1568707380000,"y":16.9},{"x":1568707440000,"y":16.9},{"x":1568707500000,"y":16.96},{"x":1568707560000,"y":16.95},{"x":1568707620000,"y":16.95},{"x":1568707680000,"y":16.95},{"x":1568707740000,"y":16.95},{"x":1568707800000,"y":16.97},{"x":1568707860000,"y":16.96},{"x":1568707920000,"y":16.94},{"x":1568707980000,"y":16.93},{"x":1568708040000,"y":16.93},{"x":1568708100000,"y":16.93},{"x":1568708160000,"y":16.93},{"x":1568708220000,"y":16.92},{"x":1568708280000,"y":16.92},{"x":1568708340000,"y":16.92},{"x":1568708400000,"y":16.94},{"x":1568708460000,"y":16.94},{"x":1568708520000,"y":16.94},{"x":1568708580000,"y":16.94},{"x":1568708640000,"y":16.94},{"x":1568708700000,"y":16.97},{"x":1568708760000,"y":16.94},{"x":1568708820000,"y":16.94},{"x":1568708880000,"y":16.94},{"x":1568708940000,"y":16.94},{"x":1568709000000,"y":16.96},{"x":1568709060000,"y":16.96},{"x":1568709120000,"y":16.94},{"x":1568709180000,"y":16.92},{"x":1568709240000,"y":16.92},{"x":1568709300000,"y":16.94},{"x":1568709360000,"y":16.95},{"x":1568709420000,"y":16.94},{"x":1568709480000,"y":16.94},{"x":1568709540000,"y":16.94},{"x":1568709600000,"y":16.95},{"x":1568709660000,"y":16.93},{"x":1568709720000,"y":16.92},{"x":1568709780000,"y":16.92},{"x":1568709840000,"y":16.92},{"x":1568709900000,"y":16.94},{"x":1568709960000,"y":16.96},{"x":1568710020000,"y":16.95},{"x":1568710080000,"y":16.95},{"x":1568710140000,"y":16.95},{"x":1568710200000,"y":16.95},{"x":1568710260000,"y":16.98},{"x":1568710320000,"y":16.96},{"x":1568710380000,"y":16.94},{"x":1568710440000,"y":16.93},{"x":1568710500000,"y":16.94},{"x":1568710560000,"y":16.94},{"x":1568710620000,"y":16.93},{"x":1568710680000,"y":16.93},{"x":1568710740000,"y":16.93},{"x":1568710800000,"y":16.93},{"x":1568710860000,"y":16.94},{"x":1568710920000,"y":16.95},{"x":1568710980000,"y":16.95},{"x":1568711040000,"y":16.94},{"x":1568711100000,"y":16.93},{"x":1568711160000,"y":16.94},{"x":1568711220000,"y":16.93},{"x":1568711280000,"y":16.93},{"x":1568711340000,"y":16.96},{"x":1568711400000,"y":16.95},{"x":1568711460000,"y":16.95},{"x":1568711520000,"y":16.97},{"x":1568711580000,"y":16.95},{"x":1568711640000,"y":16.93},{"x":1568711700000,"y":16.94},{"x":1568711760000,"y":16.94},{"x":1568711820000,"y":16.94},{"x":1568711880000,"y":16.93},{"x":1568711940000,"y":16.93},{"x":1568712000000,"y":16.93},{"x":1568712060000,"y":16.93},{"x":1568712120000,"y":16.94},{"x":1568712180000,"y":16.93},{"x":1568712240000,"y":16.94},{"x":1568712300000,"y":16.92},{"x":1568712360000,"y":16.92},{"x":1568712420000,"y":16.93},{"x":1568712480000,"y":16.92},{"x":1568712540000,"y":16.92},{"x":1568712600000,"y":16.93},{"x":1568712660000,"y":16.93},{"x":1568712720000,"y":17.21},{"x":1568712780000,"y":17.02},{"x":1568712840000,"y":16.99},{"x":1568712900000,"y":16.99},{"x":1568712960000,"y":16.99},{"x":1568713020000,"y":16.99},{"x":1568713080000,"y":16.93},{"x":1568713140000,"y":16.93},{"x":1568713200000,"y":16.93},{"x":1568713260000,"y":16.93},{"x":1568713320000,"y":16.94},{"x":1568713380000,"y":16.92},{"x":1568713440000,"y":16.92},{"x":1568713500000,"y":16.93},{"x":1568713560000,"y":16.93},{"x":1568713620000,"y":16.93},{"x":1568713680000,"y":16.94},{"x":1568713740000,"y":16.93},{"x":1568713800000,"y":16.92},{"x":1568713860000,"y":16.92},{"x":1568713920000,"y":16.93},{"x":1568713980000,"y":16.92},{"x":1568714040000,"y":16.89},{"x":1568714100000,"y":16.9},{"x":1568714160000,"y":16.9},{"x":1568714220000,"y":16.89},{"x":1568714280000,"y":16.92},{"x":1568714340000,"y":16.91},{"x":1568714400000,"y":16.93},{"x":1568714460000,"y":16.93},{"x":1568714520000,"y":16.93},{"x":1568714580000,"y":16.95},{"x":1568714640000,"y":16.93},{"x":1568714700000,"y":16.93},{"x":1568714760000,"y":16.93},{"x":1568714820000,"y":16.93},{"x":1568714880000,"y":16.94},{"x":1568714940000,"y":16.95},{"x":1568715000000,"y":16.95},{"x":1568715060000,"y":16.95},{"x":1568715120000,"y":16.95},{"x":1568715180000,"y":16.95},{"x":1568715240000,"y":16.94},{"x":1568715300000,"y":16.93},{"x":1568715360000,"y":16.93},{"x":1568715420000,"y":16.93},{"x":1568715480000,"y":16.94},{"x":1568715540000,"y":16.92},{"x":1568715600000,"y":16.91},{"x":1568715660000,"y":16.91},{"x":1568715720000,"y":16.91},{"x":1568715780000,"y":16.93},{"x":1568715840000,"y":16.94},{"x":1568715900000,"y":16.94},{"x":1568715960000,"y":16.94},{"x":1568716020000,"y":16.94},{"x":1568716080000,"y":16.94},{"x":1568716140000,"y":16.95},{"x":1568716200000,"y":16.95},{"x":1568716260000,"y":16.94},{"x":1568716320000,"y":16.94},{"x":1568716380000,"y":16.94},{"x":1568716440000,"y":16.95},{"x":1568716500000,"y":16.94},{"x":1568716560000,"y":16.92},{"x":1568716620000,"y":16.92},{"x":1568716680000,"y":16.92},{"x":1568716740000,"y":16.94},{"x":1568716800000,"y":16.94},{"x":1568716860000,"y":16.94},{"x":1568716920000,"y":16.94},{"x":1568716980000,"y":16.94},{"x":1568717040000,"y":16.95},{"x":1568717100000,"y":16.94},{"x":1568717160000,"y":16.94},{"x":1568717220000,"y":16.94},{"x":1568717280000,"y":16.94},{"x":1568717340000,"y":16.96},{"x":1568717400000,"y":16.94},{"x":1568717460000,"y":16.94},{"x":1568717520000,"y":16.94},{"x":1568717580000,"y":16.94},{"x":1568717640000,"y":16.96},{"x":1568717700000,"y":16.96},{"x":1568717760000,"y":16.94},{"x":1568717820000,"y":16.94},{"x":1568717880000,"y":16.93},{"x":1568717940000,"y":16.93},{"x":1568718000000,"y":16.94},{"x":1568718060000,"y":16.93},{"x":1568718120000,"y":16.93},{"x":1568718180000,"y":16.93},{"x":1568718240000,"y":16.93},{"x":1568718300000,"y":16.95},{"x":1568718360000,"y":16.94},{"x":1568718420000,"y":16.94},{"x":1568718480000,"y":16.94},{"x":1568718540000,"y":16.95},{"x":1568718600000,"y":16.96},{"x":1568718660000,"y":16.95},{"x":1568718720000,"y":16.95},{"x":1568718780000,"y":16.95},{"x":1568718840000,"y":16.95},{"x":1568718900000,"y":16.97},{"x":1568718960000,"y":16.94},{"x":1568719020000,"y":16.93},{"x":1568719080000,"y":16.93},{"x":1568719140000,"y":16.93},{"x":1568719200000,"y":16.94},{"x":1568719260000,"y":16.92},{"x":1568719320000,"y":16.92},{"x":1568719380000,"y":16.92},{"x":1568719440000,"y":16.92},{"x":1568719500000,"y":16.98},{"x":1568719560000,"y":16.94},{"x":1568719620000,"y":16.94},{"x":1568719680000,"y":16.95},{"x":1568719740000,"y":16.95},{"x":1568719800000,"y":16.94},{"x":1568719860000,"y":16.95},{"x":1568719920000,"y":16.95},{"x":1568719980000,"y":16.95},{"x":1568720040000,"y":16.95},{"x":1568720100000,"y":16.96},{"x":1568720160000,"y":16.92},{"x":1568720220000,"y":16.91},{"x":1568720280000,"y":16.91},{"x":1568720340000,"y":16.95},{"x":1568720400000,"y":16.95},{"x":1568720460000,"y":16.96},{"x":1568720520000,"y":16.95},{"x":1568720580000,"y":16.95},{"x":1568720640000,"y":16.95},{"x":1568720700000,"y":16.95},{"x":1568720760000,"y":16.95},{"x":1568720820000,"y":16.94},{"x":1568720880000,"y":16.95},{"x":1568720940000,"y":16.95},{"x":1568721000000,"y":16.96},{"x":1568721060000,"y":16.98},{"x":1568721120000,"y":16.96},{"x":1568721180000,"y":16.95},{"x":1568721240000,"y":16.95},{"x":1568721300000,"y":16.95},{"x":1568721360000,"y":16.96},{"x":1568721420000,"y":16.92},{"x":1568721480000,"y":16.92},{"x":1568721540000,"y":16.93},{"x":1568721600000,"y":16.93},{"x":1568721660000,"y":16.94},{"x":1568721720000,"y":16.92},{"x":1568721780000,"y":16.92},{"x":1568721840000,"y":16.92},{"x":1568721900000,"y":16.94},{"x":1568721960000,"y":16.95},{"x":1568722020000,"y":16.91},{"x":1568722080000,"y":16.91},{"x":1568722140000,"y":16.92},{"x":1568722200000,"y":16.94},{"x":1568722260000,"y":16.95},{"x":1568722320000,"y":16.95},{"x":1568722380000,"y":16.95},{"x":1568722440000,"y":16.95},{"x":1568722500000,"y":16.94},{"x":1568722560000,"y":16.95},{"x":1568722620000,"y":16.93},{"x":1568722680000,"y":16.92},{"x":1568722740000,"y":16.93},{"x":1568722800000,"y":16.93},{"x":1568722860000,"y":16.93},{"x":1568722920000,"y":16.95},{"x":1568722980000,"y":16.94},{"x":1568723040000,"y":16.93},{"x":1568723100000,"y":16.94},{"x":1568723160000,"y":16.94},{"x":1568723220000,"y":16.94},{"x":1568723280000,"y":16.92},{"x":1568723340000,"y":16.92},{"x":1568723400000,"y":16.95},{"x":1568723460000,"y":16.95},{"x":1568723520000,"y":16.96},{"x":1568723580000,"y":16.95},{"x":1568723640000,"y":16.95},{"x":1568723700000,"y":16.96},{"x":1568723760000,"y":16.96},{"x":1568723820000,"y":16.94},{"x":1568723880000,"y":16.91},{"x":1568723940000,"y":16.93},{"x":1568724000000,"y":16.94},{"x":1568724060000,"y":16.94},{"x":1568724120000,"y":16.96},{"x":1568724180000,"y":16.94},{"x":1568724240000,"y":16.94},{"x":1568724300000,"y":16.93},{"x":1568724360000,"y":16.93},{"x":1568724420000,"y":16.95},{"x":1568724480000,"y":16.94},{"x":1568724540000,"y":16.94},{"x":1568724600000,"y":16.94},{"x":1568724660000,"y":16.94},{"x":1568724720000,"y":16.96},{"x":1568724780000,"y":16.94},{"x":1568724840000,"y":16.94},{"x":1568724900000,"y":16.96},{"x":1568724960000,"y":16.96},{"x":1568725020000,"y":16.96},{"x":1568725080000,"y":16.94},{"x":1568725140000,"y":16.94},{"x":1568725200000,"y":16.93},{"x":1568725260000,"y":16.93},{"x":1568725320000,"y":16.93},{"x":1568725380000,"y":16.93},{"x":1568725440000,"y":16.92},{"x":1568725500000,"y":16.95},{"x":1568725560000,"y":16.95},{"x":1568725620000,"y":16.94},{"x":1568725680000,"y":16.95},{"x":1568725740000,"y":16.95},{"x":1568725800000,"y":16.95},{"x":1568725860000,"y":16.95},{"x":1568725920000,"y":16.95},{"x":1568725980000,"y":16.96},{"x":1568726040000,"y":16.95},{"x":1568726100000,"y":16.96},{"x":1568726160000,"y":16.96},{"x":1568726220000,"y":16.96},{"x":1568726280000,"y":16.97},{"x":1568726340000,"y":16.94},{"x":1568726400000,"y":16.92},{"x":1568726460000,"y":16.92},{"x":1568726520000,"y":16.91},{"x":1568726580000,"y":16.93},{"x":1568726640000,"y":16.94},{"x":1568726700000,"y":16.94},{"x":1568726760000,"y":16.94},{"x":1568726820000,"y":16.94},{"x":1568726880000,"y":16.96},{"x":1568726940000,"y":16.96},{"x":1568727000000,"y":16.93},{"x":1568727060000,"y":16.93},{"x":1568727120000,"y":16.93},{"x":1568727180000,"y":16.95},{"x":1568727240000,"y":16.96},{"x":1568727300000,"y":16.94},{"x":1568727360000,"y":16.94},{"x":1568727420000,"y":16.95},{"x":1568727480000,"y":16.96},{"x":1568727540000,"y":16.95},{"x":1568727600000,"y":16.95},{"x":1568727660000,"y":16.95},{"x":1568727720000,"y":16.95},{"x":1568727780000,"y":16.95},{"x":1568727840000,"y":16.96},{"x":1568727900000,"y":16.94},{"x":1568727960000,"y":16.94},{"x":1568728020000,"y":16.94},{"x":1568728080000,"y":16.94},{"x":1568728140000,"y":16.96},{"x":1568728200000,"y":16.96},{"x":1568728260000,"y":16.96},{"x":1568728320000,"y":16.96},{"x":1568728380000,"y":16.96},{"x":1568728440000,"y":16.98},{"x":1568728500000,"y":16.96},{"x":1568728560000,"y":16.96},{"x":1568728620000,"y":16.97},{"x":1568728680000,"y":16.96},{"x":1568728740000,"y":16.96},{"x":1568728800000,"y":16.94},{"x":1568728860000,"y":16.94},{"x":1568728920000,"y":16.94},{"x":1568728980000,"y":16.95},{"x":1568729040000,"y":16.95},{"x":1568729100000,"y":16.95},{"x":1568729160000,"y":16.95},{"x":1568729220000,"y":16.95},{"x":1568729280000,"y":16.95},{"x":1568729340000,"y":16.96},{"x":1568729400000,"y":16.97},{"x":1568729460000,"y":16.96},{"x":1568729520000,"y":16.96},{"x":1568729580000,"y":16.96},{"x":1568729640000,"y":16.97},{"x":1568729700000,"y":16.96},{"x":1568729760000,"y":16.96},{"x":1568729820000,"y":16.96},{"x":1568729880000,"y":16.96},{"x":1568729940000,"y":16.97},{"x":1568730000000,"y":16.94},{"x":1568730060000,"y":16.94},{"x":1568730120000,"y":16.94},{"x":1568730180000,"y":16.94},{"x":1568730240000,"y":16.95},{"x":1568730300000,"y":16.92},{"x":1568730360000,"y":16.92},{"x":1568730420000,"y":16.92},{"x":1568730480000,"y":16.92},{"x":1568730540000,"y":16.92},{"x":1568730600000,"y":16.96},{"x":1568730660000,"y":16.94},{"x":1568730720000,"y":16.94},{"x":1568730780000,"y":16.94},{"x":1568730840000,"y":16.94},{"x":1568730900000,"y":16.96},{"x":1568730960000,"y":16.96},{"x":1568731020000,"y":16.96},{"x":1568731080000,"y":16.96},{"x":1568731140000,"y":16.95},{"x":1568731200000,"y":16.95},{"x":1568731260000,"y":16.94},{"x":1568731320000,"y":16.93},{"x":1568731380000,"y":16.94},{"x":1568731440000,"y":16.94},{"x":1568731500000,"y":15.59},{"x":1568731560000,"y":15.14},{"x":1568731620000,"y":15.14},{"x":1568731680000,"y":15.14},{"x":1568731740000,"y":15.14},{"x":1568731800000,"y":15.16},{"x":1568731860000,"y":15.14},{"x":1568731920000,"y":15.14},{"x":1568731980000,"y":15.14},{"x":1568732040000,"y":15.14},{"x":1568732100000,"y":15.16},{"x":1568732160000,"y":15.14},{"x":1568732220000,"y":15.14},{"x":1568732280000,"y":15.14},{"x":1568732340000,"y":15.14},{"x":1568732400000,"y":15.13},{"x":1568732460000,"y":15.12},{"x":1568732520000,"y":15.12},{"x":1568732580000,"y":15.12},{"x":1568732640000,"y":15.12},{"x":1568732700000,"y":15.15},{"x":1568732760000,"y":15.15},{"x":1568732820000,"y":15.13},{"x":1568732880000,"y":15.13},{"x":1568732940000,"y":15.14},{"x":1568733000000,"y":15.14},{"x":1568733060000,"y":15.15},{"x":1568733120000,"y":15.14},{"x":1568733180000,"y":15.14},{"x":1568733240000,"y":15.14},{"x":1568733300000,"y":15.15},{"x":1568733360000,"y":15.14},{"x":1568733420000,"y":15.12},{"x":1568733480000,"y":15.12},{"x":1568733540000,"y":15.12},{"x":1568733600000,"y":15.12},{"x":1568733660000,"y":15.13},{"x":1568733720000,"y":15.12},{"x":1568733780000,"y":15.12},{"x":1568733840000,"y":15.12},{"x":1568733900000,"y":15.15},{"x":1568733960000,"y":15.16},{"x":1568734020000,"y":15.14},{"x":1568734080000,"y":15.14},{"x":1568734140000,"y":15.14},{"x":1568734200000,"y":15.15},{"x":1568734260000,"y":15.16},{"x":1568734320000,"y":15.14},{"x":1568734380000,"y":15.14},{"x":1568734440000,"y":15.14},{"x":1568734500000,"y":15.13},{"x":1568734560000,"y":15.42},{"x":1568734620000,"y":15.2},{"x":1568734680000,"y":15.2},{"x":1568734740000,"y":15.21},{"x":1568734800000,"y":15.21},{"x":1568734860000,"y":15.22},{"x":1568734920000,"y":15.11},{"x":1568734980000,"y":15.11},{"x":1568735040000,"y":15.11},{"x":1568735100000,"y":15.14},{"x":1568735160000,"y":15.14},{"x":1568735220000,"y":15.13},{"x":1568735280000,"y":15.11},{"x":1568735340000,"y":15.11},{"x":1568735400000,"y":15.15},{"x":1568735460000,"y":15.2},{"x":1568735520000,"y":15.26},{"x":1568735580000,"y":15.25},{"x":1568735640000,"y":15.25},{"x":1568735700000,"y":15.26},{"x":1568735760000,"y":15.26},{"x":1568735820000,"y":15.27},{"x":1568735880000,"y":15.26},{"x":1568735940000,"y":15.26},{"x":1568736000000,"y":15.26},{"x":1568736060000,"y":15.26},{"x":1568736120000,"y":15.28},{"x":1568736180000,"y":15.27},{"x":1568736240000,"y":15.26},{"x":1568736300000,"y":15.26},{"x":1568736360000,"y":15.26},{"x":1568736420000,"y":15.27},{"x":1568736480000,"y":15.26},{"x":1568736540000,"y":15.26},{"x":1568736600000,"y":15.26},{"x":1568736660000,"y":15.26},{"x":1568736720000,"y":15.27},{"x":1568736780000,"y":15.26},{"x":1568736840000,"y":15.26},{"x":1568736900000,"y":15.26},{"x":1568736960000,"y":15.25},{"x":1568737020000,"y":15.28},{"x":1568737080000,"y":15.26},{"x":1568737140000,"y":15.26},{"x":1568737200000,"y":15.26},{"x":1568737260000,"y":15.28},{"x":1568737320000,"y":15.31},{"x":1568737380000,"y":15.34},{"x":1568737440000,"y":15.34},{"x":1568737500000,"y":15.34},{"x":1568737560000,"y":15.34},{"x":1568737620000,"y":15.34},{"x":1568737680000,"y":15.32},{"x":1568737740000,"y":15.31},{"x":1568737800000,"y":15.31},{"x":1568737860000,"y":15.31},{"x":1568737920000,"y":15.31},{"x":1568737980000,"y":15.34},{"x":1568738040000,"y":15.34},{"x":1568738100000,"y":15.31},{"x":1568738160000,"y":15.31},{"x":1568738220000,"y":15.31},{"x":1568738280000,"y":15.35},{"x":1568738340000,"y":15.35},{"x":1568738400000,"y":15.34},{"x":1568738460000,"y":15.34},{"x":1568738520000,"y":15.34},{"x":1568738580000,"y":15.36},{"x":1568738640000,"y":15.34},{"x":1568738700000,"y":15.35},{"x":1568738760000,"y":15.29},{"x":1568738820000,"y":15.3},{"x":1568738880000,"y":15.33},{"x":1568738940000,"y":15.32},{"x":1568739000000,"y":15.32},{"x":1568739060000,"y":15.32},{"x":1568739120000,"y":15.32},{"x":1568739180000,"y":15.34},{"x":1568739240000,"y":15.34},{"x":1568739300000,"y":15.34},{"x":1568739360000,"y":15.34},{"x":1568739420000,"y":15.34},{"x":1568739480000,"y":15.36},{"x":1568739540000,"y":15.34},{"x":1568739600000,"y":15.3},{"x":1568739660000,"y":15.29},{"x":1568739720000,"y":15.29},{"x":1568739780000,"y":15.3},{"x":1568739840000,"y":15.31},{"x":1568739900000,"y":15.32},{"x":1568739960000,"y":15.32},{"x":1568740020000,"y":15.32},{"x":1568740080000,"y":15.33},{"x":1568740140000,"y":15.32},{"x":1568740200000,"y":15.32},{"x":1568740260000,"y":15.32},{"x":1568740320000,"y":15.32},{"x":1568740380000,"y":15.31},{"x":1568740440000,"y":15.32},{"x":1568740500000,"y":15.29},{"x":1568740560000,"y":15.29},{"x":1568740620000,"y":15.3},{"x":1568740680000,"y":15.3},{"x":1568740740000,"y":15.32},{"x":1568740800000,"y":15.31},{"x":1568740860000,"y":15.31},{"x":1568740920000,"y":15.31},{"x":1568740980000,"y":15.31},{"x":1568741040000,"y":15.32},{"x":1568741100000,"y":15.33},{"x":1568741160000,"y":15.33},{"x":1568741220000,"y":15.33},{"x":1568741280000,"y":15.33},{"x":1568741340000,"y":15.34},{"x":1568741400000,"y":15.33},{"x":1568741460000,"y":15.33},{"x":1568741520000,"y":15.33},{"x":1568741580000,"y":15.33},{"x":1568741640000,"y":15.34},{"x":1568741700000,"y":15.33},{"x":1568741760000,"y":15.33},{"x":1568741820000,"y":15.33},{"x":1568741880000,"y":15.33},{"x":1568741940000,"y":15.34},{"x":1568742000000,"y":15.32},{"x":1568742060000,"y":15.33},{"x":1568742120000,"y":15.32},{"x":1568742180000,"y":15.32},{"x":1568742240000,"y":15.32},{"x":1568742300000,"y":15.33},{"x":1568742360000,"y":15.32},{"x":1568742420000,"y":15.32},{"x":1568742480000,"y":15.32},{"x":1568742540000,"y":15.32},{"x":1568742600000,"y":15.34},{"x":1568742660000,"y":15.33},{"x":1568742720000,"y":15.33},{"x":1568742780000,"y":15.33},{"x":1568742840000,"y":15.33},{"x":1568742900000,"y":15.34},{"x":1568742960000,"y":15.31},{"x":1568743020000,"y":15.31},{"x":1568743080000,"y":15.32},{"x":1568743140000,"y":15.32},{"x":1568743200000,"y":15.34},{"x":1568743260000,"y":15.32},{"x":1568743320000,"y":15.32},{"x":1568743380000,"y":15.32},{"x":1568743440000,"y":15.32},{"x":1568743500000,"y":15.33},{"x":1568743560000,"y":15.32},{"x":1568743620000,"y":15.32},{"x":1568743680000,"y":15.32},{"x":1568743740000,"y":15.32},{"x":1568743800000,"y":15.34},{"x":1568743860000,"y":15.33},{"x":1568743920000,"y":15.33},{"x":1568743980000,"y":15.33},{"x":1568744040000,"y":15.33},{"x":1568744100000,"y":15.34},{"x":1568744160000,"y":15.34},{"x":1568744220000,"y":15.33},{"x":1568744280000,"y":15.33},{"x":1568744340000,"y":15.33},{"x":1568744400000,"y":15.31},{"x":1568744460000,"y":15.32},{"x":1568744520000,"y":15.32},{"x":1568744580000,"y":15.32},{"x":1568744640000,"y":15.32},{"x":1568744700000,"y":15.32},{"x":1568744760000,"y":15.34},{"x":1568744820000,"y":15.33},{"x":1568744880000,"y":15.33},{"x":1568744940000,"y":15.33},{"x":1568745000000,"y":15.33},{"x":1568745060000,"y":15.34},{"x":1568745120000,"y":15.33},{"x":1568745180000,"y":15.33},{"x":1568745240000,"y":15.33},{"x":1568745300000,"y":15.33},{"x":1568745360000,"y":15.34},{"x":1568745420000,"y":15.33},{"x":1568745480000,"y":15.33},{"x":1568745540000,"y":15.33},{"x":1568745600000,"y":15.33},{"x":1568745660000,"y":15.34},{"x":1568745720000,"y":15.33},{"x":1568745780000,"y":15.33},{"x":1568745840000,"y":15.33},{"x":1568745900000,"y":15.33},{"x":1568745960000,"y":15.36},{"x":1568746020000,"y":15.35},{"x":1568746080000,"y":15.34},{"x":1568746140000,"y":15.34},{"x":1568746200000,"y":15.34},{"x":1568746260000,"y":15.35},{"x":1568746320000,"y":15.33},{"x":1568746380000,"y":15.33},{"x":1568746440000,"y":15.33},{"x":1568746500000,"y":15.34},{"x":1568746560000,"y":15.35},{"x":1568746620000,"y":15.34},{"x":1568746680000,"y":15.34},{"x":1568746740000,"y":15.34},{"x":1568746800000,"y":15.34},{"x":1568746860000,"y":15.35},{"x":1568746920000,"y":15.33},{"x":1568746980000,"y":15.33},{"x":1568747040000,"y":15.33},{"x":1568747100000,"y":15.34},{"x":1568747160000,"y":15.34},{"x":1568747220000,"y":15.36},{"x":1568747280000,"y":15.34},{"x":1568747340000,"y":15.32},{"x":1568747400000,"y":15.32},{"x":1568747460000,"y":15.32},{"x":1568747520000,"y":15.35},{"x":1568747580000,"y":15.33},{"x":1568747640000,"y":15.33},{"x":1568747700000,"y":15.34},{"x":1568747760000,"y":15.34},{"x":1568747820000,"y":15.35},{"x":1568747880000,"y":15.34},{"x":1568747940000,"y":15.34},{"x":1568748000000,"y":15.34},{"x":1568748060000,"y":15.34},{"x":1568748120000,"y":15.36},{"x":1568748180000,"y":15.35},{"x":1568748240000,"y":15.35},{"x":1568748300000,"y":15.35},{"x":1568748360000,"y":15.35},{"x":1568748420000,"y":15.35},{"x":1568748480000,"y":15.34},{"x":1568748540000,"y":15.34},{"x":1568748600000,"y":15.35},{"x":1568748660000,"y":15.35},{"x":1568748720000,"y":15.37},{"x":1568748780000,"y":15.35},{"x":1568748840000,"y":15.35},{"x":1568748900000,"y":15.34},{"x":1568748960000,"y":15.33},{"x":1568749020000,"y":15.34},{"x":1568749080000,"y":15.33},{"x":1568749140000,"y":15.34},{"x":1568749200000,"y":15.3},{"x":1568749260000,"y":15.3},{"x":1568749320000,"y":15.3},{"x":1568749380000,"y":15.31},{"x":1568749440000,"y":15.3},{"x":1568749500000,"y":15.32},{"x":1568749560000,"y":15.31},{"x":1568749620000,"y":15.32},{"x":1568749680000,"y":15.33},{"x":1568749740000,"y":15.31},{"x":1568749800000,"y":15.33},{"x":1568749860000,"y":15.33},{"x":1568749920000,"y":15.33},{"x":1568749980000,"y":15.35},{"x":1568750040000,"y":15.33},{"x":1568750100000,"y":15.33},{"x":1568750160000,"y":15.34},{"x":1568750220000,"y":15.34},{"x":1568750280000,"y":15.35},{"x":1568750340000,"y":15.34},{"x":1568750400000,"y":15.33},{"x":1568750460000,"y":15.33},{"x":1568750520000,"y":15.33},{"x":1568750580000,"y":15.34},{"x":1568750640000,"y":15.33},{"x":1568750700000,"y":15.33},{"x":1568750760000,"y":15.33},{"x":1568750820000,"y":15.33},{"x":1568750880000,"y":15.34},{"x":1568750940000,"y":15.34},{"x":1568751000000,"y":15.34},{"x":1568751060000,"y":15.34},{"x":1568751120000,"y":15.34},{"x":1568751180000,"y":15.35},{"x":1568751240000,"y":15.33},{"x":1568751300000,"y":15.29},{"x":1568751360000,"y":15.29},{"x":1568751420000,"y":15.3},{"x":1568751480000,"y":15.3},{"x":1568751540000,"y":15.34},{"x":1568751600000,"y":15.33},{"x":1568751660000,"y":15.33},{"x":1568751720000,"y":15.33},{"x":1568751780000,"y":15.33},{"x":1568751840000,"y":15.34},{"x":1568751900000,"y":15.34},{"x":1568751960000,"y":15.34},{"x":1568752020000,"y":15.34},{"x":1568752080000,"y":15.34},{"x":1568752140000,"y":15.34},{"x":1568752200000,"y":15.3},{"x":1568752260000,"y":15.3},{"x":1568752320000,"y":15.3},{"x":1568752380000,"y":15.3},{"x":1568752440000,"y":15.33},{"x":1568752500000,"y":15.31},{"x":1568752560000,"y":15.31},{"x":1568752620000,"y":15.31},{"x":1568752680000,"y":15.31},{"x":1568752740000,"y":15.35},{"x":1568752800000,"y":15.33},{"x":1568752860000,"y":15.33},{"x":1568752920000,"y":15.33},{"x":1568752980000,"y":15.33},{"x":1568753040000,"y":15.35},{"x":1568753100000,"y":15.34},{"x":1568753160000,"y":15.34},{"x":1568753220000,"y":15.34},{"x":1568753280000,"y":15.55},{"x":1568753340000,"y":15.42},{"x":1568753400000,"y":15.41},{"x":1568753460000,"y":15.41},{"x":1568753520000,"y":15.41},{"x":1568753580000,"y":15.36},{"x":1568753640000,"y":15.36},{"x":1568753700000,"y":15.35},{"x":1568753760000,"y":15.35},{"x":1568753820000,"y":15.35},{"x":1568753880000,"y":15.35},{"x":1568753940000,"y":15.35},{"x":1568754000000,"y":15.36},{"x":1568754060000,"y":15.34},{"x":1568754120000,"y":15.34},{"x":1568754180000,"y":15.34},{"x":1568754240000,"y":15.34},{"x":1568754300000,"y":15.36},{"x":1568754360000,"y":15.35},{"x":1568754420000,"y":15.35},{"x":1568754480000,"y":15.35},{"x":1568754540000,"y":15.35},{"x":1568754600000,"y":15.35},{"x":1568754660000,"y":15.34},{"x":1568754720000,"y":15.34},{"x":1568754780000,"y":15.34},{"x":1568754840000,"y":15.34},{"x":1568754900000,"y":15.35},{"x":1568754960000,"y":15.27},{"x":1568755020000,"y":15.28},{"x":1568755080000,"y":15.29},{"x":1568755140000,"y":15.29},{"x":1568755200000,"y":15.27},{"x":1568755260000,"y":15.26},{"x":1568755320000,"y":15.26},{"x":1568755380000,"y":15.26},{"x":1568755440000,"y":15.26},{"x":1568755500000,"y":15.29},{"x":1568755560000,"y":15.28},{"x":1568755620000,"y":15.28},{"x":1568755680000,"y":15.28},{"x":1568755740000,"y":15.28},{"x":1568755800000,"y":15.28},{"x":1568755860000,"y":15.29},{"x":1568755920000,"y":15.28},{"x":1568755980000,"y":15.28},{"x":1568756040000,"y":15.28},{"x":1568756100000,"y":15.27},{"x":1568756160000,"y":15.29},{"x":1568756220000,"y":15.28},{"x":1568756280000,"y":15.29},{"x":1568756340000,"y":15.28},{"x":1568756400000,"y":15.28},{"x":1568756460000,"y":15.58},{"x":1568756520000,"y":15.35},{"x":1568756580000,"y":15.35},{"x":1568756640000,"y":15.35},{"x":1568756700000,"y":15.34},{"x":1568756760000,"y":15.31},{"x":1568756820000,"y":15.28},{"x":1568756880000,"y":15.28},{"x":1568756940000,"y":15.28},{"x":1568757000000,"y":15.27},{"x":1568757060000,"y":15.29},{"x":1568757120000,"y":15.29},{"x":1568757180000,"y":15.29},{"x":1568757240000,"y":15.29},{"x":1568757300000,"y":15.28},{"x":1568757360000,"y":15.29},{"x":1568757420000,"y":15.28},{"x":1568757480000,"y":15.28},{"x":1568757540000,"y":15.28},{"x":1568757600000,"y":15.28},{"x":1568757660000,"y":15.29},{"x":1568757720000,"y":15.28},{"x":1568757780000,"y":15.28},{"x":1568757840000,"y":15.28},{"x":1568757900000,"y":15.29},{"x":1568757960000,"y":15.3},{"x":1568758020000,"y":15.28},{"x":1568758080000,"y":15.28},{"x":1568758140000,"y":15.29},{"x":1568758200000,"y":15.24},{"x":1568758260000,"y":15.19},{"x":1568758320000,"y":15.21},{"x":1568758380000,"y":15.2},{"x":1568758440000,"y":15.2},{"x":1568758500000,"y":15.2},{"x":1568758560000,"y":15.2},{"x":1568758620000,"y":15.21},{"x":1568758680000,"y":15.2},{"x":1568758740000,"y":15.2},{"x":1568758800000,"y":15.2},{"x":1568758860000,"y":15.2},{"x":1568758920000,"y":15.21},{"x":1568758980000,"y":15.2},{"x":1568759040000,"y":15.2},{"x":1568759100000,"y":15.2},{"x":1568759160000,"y":15.2},{"x":1568759220000,"y":15.22},{"x":1568759280000,"y":15.21},{"x":1568759340000,"y":15.21},{"x":1568759400000,"y":15.19},{"x":1568759460000,"y":15.19},{"x":1568759520000,"y":15.21},{"x":1568759580000,"y":15.21},{"x":1568759640000,"y":15.21},{"x":1568759700000,"y":15.21},{"x":1568759760000,"y":15.21},{"x":1568759820000,"y":15.22},{"x":1568759880000,"y":15.21},{"x":1568759940000,"y":15.21},{"x":1568760000000,"y":15.21},{"x":1568760060000,"y":15.21},{"x":1568760120000,"y":15.22},{"x":1568760180000,"y":15.2},{"x":1568760240000,"y":15.2},{"x":1568760300000,"y":15.21},{"x":1568760360000,"y":15.21},{"x":1568760420000,"y":15.22},{"x":1568760480000,"y":15.2},{"x":1568760540000,"y":15.2},{"x":1568760600000,"y":15.17},{"x":1568760660000,"y":15.17},{"x":1568760720000,"y":15.18},{"x":1568760780000,"y":15.19},{"x":1568760840000,"y":15.19},{"x":1568760900000,"y":15.21},{"x":1568760960000,"y":15.21},{"x":1568761020000,"y":15.21},{"x":1568761080000,"y":15.22},{"x":1568761140000,"y":15.21},{"x":1568761200000,"y":15.18},{"x":1568761260000,"y":15.18},{"x":1568761320000,"y":15.18},{"x":1568761380000,"y":15.21},{"x":1568761440000,"y":15.2},{"x":1568761500000,"y":15.2},{"x":1568761560000,"y":15.2},{"x":1568761620000,"y":15.2},{"x":1568761680000,"y":15.22},{"x":1568761740000,"y":15.11},{"x":1568761800000,"y":15.1},{"x":1568761860000,"y":15.1},{"x":1568761920000,"y":15.1},{"x":1568761980000,"y":15.1},{"x":1568762040000,"y":15.07},{"x":1568762100000,"y":15.1},{"x":1568762160000,"y":15.1},{"x":1568762220000,"y":15.09},{"x":1568762280000,"y":15.1},{"x":1568762340000,"y":15.09},{"x":1568762400000,"y":15.1},{"x":1568762460000,"y":15.1},{"x":1568762520000,"y":15.1},{"x":1568762580000,"y":15.12},{"x":1568762640000,"y":15.1},{"x":1568762700000,"y":15.08},{"x":1568762760000,"y":15.08},{"x":1568762820000,"y":15.08},{"x":1568762880000,"y":15.09},{"x":1568762940000,"y":15.1},{"x":1568763000000,"y":15.09},{"x":1568763060000,"y":15.08},{"x":1568763120000,"y":15.08},{"x":1568763180000,"y":15.09},{"x":1568763240000,"y":15.07},{"x":1568763300000,"y":15.08},{"x":1568763360000,"y":15.08},{"x":1568763420000,"y":15.08},{"x":1568763480000,"y":15.08},{"x":1568763540000,"y":15.12},{"x":1568763600000,"y":15.07},{"x":1568763660000,"y":15.07},{"x":1568763720000,"y":15.08},{"x":1568763780000,"y":15.08},{"x":1568763840000,"y":15.11},{"x":1568763900000,"y":15.12},{"x":1568763960000,"y":15.12},{"x":1568764020000,"y":15.12},{"x":1568764080000,"y":15.11},{"x":1568764140000,"y":15.12},{"x":1568764200000,"y":15.1},{"x":1568764260000,"y":15.1},{"x":1568764320000,"y":15.1},{"x":1568764380000,"y":15.1},{"x":1568764440000,"y":15.12},{"x":1568764500000,"y":15.1},{"x":1568764560000,"y":15.1},{"x":1568764620000,"y":15.1},{"x":1568764680000,"y":15.09},{"x":1568764740000,"y":15.11},{"x":1568764800000,"y":15.11},{"x":1568764860000,"y":15.11},{"x":1568764920000,"y":15.11},{"x":1568764980000,"y":15.11},{"x":1568765040000,"y":15.11},{"x":1568765100000,"y":15.1},{"x":1568765160000,"y":15.1},{"x":1568765220000,"y":15.1},{"x":1568765280000,"y":15.09},{"x":1568765340000,"y":15.11},{"x":1568765400000,"y":15.11},{"x":1568765460000,"y":15.11},{"x":1568765520000,"y":15.11},{"x":1568765580000,"y":15.11},{"x":1568765640000,"y":15.11},{"x":1568765700000,"y":15.12},{"x":1568765760000,"y":15.1},{"x":1568765820000,"y":15.1},{"x":1568765880000,"y":15.1},{"x":1568765940000,"y":15.1},{"x":1568766000000,"y":15.12},{"x":1568766060000,"y":15.11},{"x":1568766120000,"y":15.11},{"x":1568766180000,"y":15.11},{"x":1568766240000,"y":15.11},{"x":1568766300000,"y":15.12},{"x":1568766360000,"y":15.11},{"x":1568766420000,"y":15.11},{"x":1568766480000,"y":15.11},{"x":1568766540000,"y":15.11},{"x":1568766600000,"y":15.11},{"x":1568766660000,"y":15.1},{"x":1568766720000,"y":15.1},{"x":1568766780000,"y":15.1},{"x":1568766840000,"y":15.1},{"x":1568766900000,"y":15.12},{"x":1568766960000,"y":15.12},{"x":1568767020000,"y":15.11},{"x":1568767080000,"y":15.11},{"x":1568767140000,"y":15.11},{"x":1568767200000,"y":15.12},{"x":1568767260000,"y":15.11},{"x":1568767320000,"y":15.11},{"x":1568767380000,"y":15.11},{"x":1568767440000,"y":15.11},{"x":1568767500000,"y":15.13},{"x":1568767560000,"y":15.12},{"x":1568767620000,"y":15.11},{"x":1568767680000,"y":15.11},{"x":1568767740000,"y":15.11},{"x":1568767800000,"y":15.13},{"x":1568767860000,"y":15.12},{"x":1568767920000,"y":15.11},{"x":1568767980000,"y":15.12},{"x":1568768040000,"y":15.12},{"x":1568768100000,"y":15.12},{"x":1568768160000,"y":15.13},{"x":1568768220000,"y":15.12},{"x":1568768280000,"y":15.11},{"x":1568768340000,"y":15.11},{"x":1568768400000,"y":15.09},{"x":1568768460000,"y":15.11},{"x":1568768520000,"y":15.11},{"x":1568768580000,"y":15.11},{"x":1568768640000,"y":15.11},{"x":1568768700000,"y":15.09},{"x":1568768760000,"y":15.12},{"x":1568768820000,"y":15.11},{"x":1568768880000,"y":15.09},{"x":1568768940000,"y":15.1},{"x":1568769000000,"y":15.08},{"x":1568769060000,"y":15.09},{"x":1568769120000,"y":15.09},{"x":1568769180000,"y":15.09},{"x":1568769240000,"y":15.09},{"x":1568769300000,"y":15.09},{"x":1568769360000,"y":15.11},{"x":1568769420000,"y":15.09},{"x":1568769480000,"y":15.09},{"x":1568769540000,"y":15.09},{"x":1568769600000,"y":15.1},{"x":1568769660000,"y":15.11},{"x":1568769720000,"y":15.08},{"x":1568769780000,"y":15.08},{"x":1568769840000,"y":15.08},{"x":1568769900000,"y":15.1},{"x":1568769960000,"y":15.11},{"x":1568770020000,"y":15.09},{"x":1568770080000,"y":15.09},{"x":1568770140000,"y":15.09},{"x":1568770200000,"y":15.1},{"x":1568770260000,"y":15.1},{"x":1568770320000,"y":15.12},{"x":1568770380000,"y":15.1},{"x":1568770440000,"y":15.1},{"x":1568770500000,"y":15.1},{"x":1568770560000,"y":15.1},{"x":1568770620000,"y":15.11},{"x":1568770680000,"y":15.1},{"x":1568770740000,"y":15.1},{"x":1568770800000,"y":15.1},{"x":1568770860000,"y":15.1},{"x":1568770920000,"y":15.11},{"x":1568770980000,"y":15.1},{"x":1568771040000,"y":15.1},{"x":1568771100000,"y":15.1},{"x":1568771160000,"y":15.1},{"x":1568771220000,"y":15.11},{"x":1568771280000,"y":15.08},{"x":1568771340000,"y":15.08},{"x":1568771400000,"y":15.09},{"x":1568771460000,"y":15.09},{"x":1568771520000,"y":15.11},{"x":1568771580000,"y":15.09},{"x":1568771640000,"y":15.09},{"x":1568771700000,"y":15.1},{"x":1568771760000,"y":15.1},{"x":1568771820000,"y":15.12},{"x":1568771880000,"y":15.1},{"x":1568771940000,"y":15.1},{"x":1568772000000,"y":15.07},{"x":1568772060000,"y":15.07},{"x":1568772120000,"y":15.09},{"x":1568772180000,"y":15.1},{"x":1568772240000,"y":15.1},{"x":1568772300000,"y":15.11},{"x":1568772360000,"y":15.11},{"x":1568772420000,"y":15.12},{"x":1568772480000,"y":15.1},{"x":1568772540000,"y":15.11},{"x":1568772600000,"y":15.11},{"x":1568772660000,"y":15.11},{"x":1568772720000,"y":15.11},{"x":1568772780000,"y":15.12},{"x":1568772840000,"y":15.11},{"x":1568772900000,"y":15.11},{"x":1568772960000,"y":15.11},{"x":1568773020000,"y":15.11},{"x":1568773080000,"y":15.12},{"x":1568773140000,"y":15.1},{"x":1568773200000,"y":15.11},{"x":1568773260000,"y":15.11},{"x":1568773320000,"y":15.11},{"x":1568773380000,"y":15.12},{"x":1568773440000,"y":15.1},{"x":1568773500000,"y":15.11},{"x":1568773560000,"y":15.11},{"x":1568773620000,"y":15.11},{"x":1568773680000,"y":15.12},{"x":1568773740000,"y":15.11},{"x":1568773800000,"y":15.08},{"x":1568773860000,"y":15.08},{"x":1568773920000,"y":15.08},{"x":1568773980000,"y":15.1},{"x":1568774040000,"y":15.11},{"x":1568774100000,"y":15.11},{"x":1568774160000,"y":15.11},{"x":1568774220000,"y":15.11},{"x":1568774280000,"y":15.12},{"x":1568774340000,"y":15.11},{"x":1568774400000,"y":15.1},{"x":1568774460000,"y":15.09},{"x":1568774520000,"y":15.09},{"x":1568774580000,"y":15.11},{"x":1568774640000,"y":15.11},{"x":1568774700000,"y":15.09},{"x":1568774760000,"y":15.09},{"x":1568774820000,"y":15.09},{"x":1568774880000,"y":15.09},{"x":1568774940000,"y":15.12},{"x":1568775000000,"y":15.12},{"x":1568775060000,"y":15.12},{"x":1568775120000,"y":15.12},{"x":1568775180000,"y":15.11},{"x":1568775240000,"y":15.12},{"x":1568775300000,"y":15.11},{"x":1568775360000,"y":15.11},{"x":1568775420000,"y":15.12},{"x":1568775480000,"y":15.12},{"x":1568775540000,"y":15.12},{"x":1568775600000,"y":15.09},{"x":1568775660000,"y":15.09},{"x":1568775720000,"y":15.09},{"x":1568775780000,"y":15.09},{"x":1568775840000,"y":15.12},{"x":1568775900000,"y":15.12},{"x":1568775960000,"y":15.12},{"x":1568776020000,"y":15.12},{"x":1568776080000,"y":15.12},{"x":1568776140000,"y":15.12},{"x":1568776200000,"y":15.09},{"x":1568776260000,"y":15.09},{"x":1568776320000,"y":15.09},{"x":1568776380000,"y":15.09},{"x":1568776440000,"y":15.1},{"x":1568776500000,"y":15.11},{"x":1568776560000,"y":15.11},{"x":1568776620000,"y":15.12},{"x":1568776680000,"y":15.12},{"x":1568776740000,"y":15.12},{"x":1568776800000,"y":15.12},{"x":1568776860000,"y":15.12},{"x":1568776920000,"y":15.12},{"x":1568776980000,"y":15.12},{"x":1568777040000,"y":15.14},{"x":1568777100000,"y":15.11},{"x":1568777160000,"y":15.11},{"x":1568777220000,"y":15.11},{"x":1568777280000,"y":15.12},{"x":1568777340000,"y":15.12},{"x":1568777400000,"y":15.09},{"x":1568777460000,"y":15.08},{"x":1568777520000,"y":15.07},{"x":1568777580000,"y":15.05},{"x":1568777640000,"y":15.05},{"x":1568777700000,"y":15.11},{"x":1568777760000,"y":15.1},{"x":1568777820000,"y":15.1},{"x":1568777880000,"y":15.1},{"x":1568777940000,"y":15.1},{"x":1568778000000,"y":15.1},{"x":1568778060000,"y":15.09},{"x":1568778120000,"y":15.09},{"x":1568778180000,"y":15.09},{"x":1568778240000,"y":15.09},{"x":1568778300000,"y":15.44},{"x":1568778360000,"y":15.16},{"x":1568778420000,"y":15.16},{"x":1568778480000,"y":15.15},{"x":1568778540000,"y":15.15},{"x":1568778600000,"y":15.14},{"x":1568778660000,"y":15.09},{"x":1568778720000,"y":15.09},{"x":1568778780000,"y":15.09},{"x":1568778840000,"y":15.09},{"x":1568778900000,"y":15.1},{"x":1568778960000,"y":15.09},{"x":1568779020000,"y":15.09},{"x":1568779080000,"y":15.09},{"x":1568779140000,"y":15.09},{"x":1568779200000,"y":15.1},{"x":1568779260000,"y":15.1},{"x":1568779320000,"y":15.1},{"x":1568779380000,"y":15.1},{"x":1568779440000,"y":15.1},{"x":1568779500000,"y":15.13},{"x":1568779560000,"y":15.1},{"x":1568779620000,"y":15.1},{"x":1568779680000,"y":15.1},{"x":1568779740000,"y":15.09},{"x":1568779800000,"y":15.1},{"x":1568779860000,"y":15.11},{"x":1568779920000,"y":15.1},{"x":1568779980000,"y":15.1},{"x":1568780040000,"y":15.1},{"x":1568780100000,"y":15.09},{"x":1568780160000,"y":15.09},{"x":1568780220000,"y":15.07},{"x":1568780280000,"y":15.07},{"x":1568780340000,"y":15.07},{"x":1568780400000,"y":15.07},{"x":1568780460000,"y":15.1},{"x":1568780520000,"y":15.1},{"x":1568780580000,"y":15.1},{"x":1568780640000,"y":15.11},{"x":1568780700000,"y":15.11},{"x":1568780760000,"y":15.11},{"x":1568780820000,"y":15.09},{"x":1568780880000,"y":15.09},{"x":1568780940000,"y":15.09},{"x":1568781000000,"y":15.11},{"x":1568781060000,"y":15.11},{"x":1568781120000,"y":15.09},{"x":1568781180000,"y":15.09},{"x":1568781240000,"y":15.09},{"x":1568781300000,"y":15.11},{"x":1568781360000,"y":15.12},{"x":1568781420000,"y":15.11},{"x":1568781480000,"y":15.11},{"x":1568781540000,"y":15.1},{"x":1568781600000,"y":15.09},{"x":1568781660000,"y":15.1},{"x":1568781720000,"y":15.11},{"x":1568781780000,"y":15.11},{"x":1568781840000,"y":15.11},{"x":1568781900000,"y":15.11},{"x":1568781960000,"y":15.12},{"x":1568782020000,"y":15.13},{"x":1568782080000,"y":15.11},{"x":1568782140000,"y":15.1},{"x":1568782200000,"y":15.11},{"x":1568782260000,"y":15.11},{"x":1568782320000,"y":15.11},{"x":1568782380000,"y":15.1},{"x":1568782440000,"y":15.1},{"x":1568782500000,"y":15.1},{"x":1568782560000,"y":15.1},{"x":1568782620000,"y":15.11},{"x":1568782680000,"y":15.1},{"x":1568782740000,"y":15.09},{"x":1568782800000,"y":15.09},{"x":1568782860000,"y":15.09},{"x":1568782920000,"y":15.11},{"x":1568782980000,"y":15.11},{"x":1568783040000,"y":15.1},{"x":1568783100000,"y":15.09},{"x":1568783160000,"y":15.09},{"x":1568783220000,"y":15.11},{"x":1568783280000,"y":15.09},{"x":1568783340000,"y":15.09},{"x":1568783400000,"y":15.09},{"x":1568783460000,"y":15.09},{"x":1568783520000,"y":15.11},{"x":1568783580000,"y":15.11},{"x":1568783640000,"y":15.1},{"x":1568783700000,"y":15.11},{"x":1568783760000,"y":15.11},{"x":1568783820000,"y":15.12},{"x":1568783880000,"y":15.11},{"x":1568783940000,"y":15.11},{"x":1568784000000,"y":15.12},{"x":1568784060000,"y":15.12},{"x":1568784120000,"y":15.13},{"x":1568784180000,"y":15.11},{"x":1568784240000,"y":15.11},{"x":1568784300000,"y":15.1},{"x":1568784360000,"y":15.1},{"x":1568784420000,"y":15.1},{"x":1568784480000,"y":15.14},{"x":1568784540000,"y":15.12},{"x":1568784600000,"y":15.11},{"x":1568784660000,"y":15.11},{"x":1568784720000,"y":15.1},{"x":1568784780000,"y":15.12},{"x":1568784840000,"y":15.11},{"x":1568784900000,"y":15.12},{"x":1568784960000,"y":15.12},{"x":1568785020000,"y":15.12},{"x":1568785080000,"y":15.13},{"x":1568785140000,"y":15.12},{"x":1568785200000,"y":15.12},{"x":1568785260000,"y":15.12},{"x":1568785320000,"y":15.12},{"x":1568785380000,"y":15.12},{"x":1568785440000,"y":15.1},{"x":1568785500000,"y":15.11},{"x":1568785560000,"y":15.12},{"x":1568785620000,"y":15.12},{"x":1568785680000,"y":15.12},{"x":1568785740000,"y":15.1},{"x":1568785800000,"y":15.1},{"x":1568785860000,"y":15.1},{"x":1568785920000,"y":15.1},{"x":1568785980000,"y":15.11},{"x":1568786040000,"y":15.1},{"x":1568786100000,"y":15.1},{"x":1568786160000,"y":15.1},{"x":1568786220000,"y":15.1},{"x":1568786280000,"y":15.11},{"x":1568786340000,"y":15.11},{"x":1568786400000,"y":15.13},{"x":1568786460000,"y":15.13},{"x":1568786520000,"y":15.13},{"x":1568786580000,"y":15.12},{"x":1568786640000,"y":15.1},{"x":1568786700000,"y":15.1},{"x":1568786760000,"y":15.1},{"x":1568786820000,"y":15.1},{"x":1568786880000,"y":15.1},{"x":1568786940000,"y":15.11},{"x":1568787000000,"y":15.1},{"x":1568787060000,"y":15.09},{"x":1568787120000,"y":15.09},{"x":1568787180000,"y":15.09},{"x":1568787240000,"y":15.1},{"x":1568787300000,"y":15.08},{"x":1568787360000,"y":15.08},{"x":1568787420000,"y":15.08},{"x":1568787480000,"y":15.08},{"x":1568787540000,"y":15.1},{"x":1568787600000,"y":15.07},{"x":1568787660000,"y":15.07},{"x":1568787720000,"y":15.06},{"x":1568787780000,"y":15.06},{"x":1568787840000,"y":15.08},{"x":1568787900000,"y":15.09},{"x":1568787960000,"y":15.09},{"x":1568788020000,"y":15.09},{"x":1568788080000,"y":15.09},{"x":1568788140000,"y":15.1},{"x":1568788200000,"y":15.07},{"x":1568788260000,"y":15.07},{"x":1568788320000,"y":15.06},{"x":1568788380000,"y":15.29},{"x":1568788440000,"y":15.17},{"x":1568788500000,"y":15.16},{"x":1568788560000,"y":15.16},{"x":1568788620000,"y":15.16},{"x":1568788680000,"y":15.13},{"x":1568788740000,"y":15.12},{"x":1568788800000,"y":15.1},{"x":1568788860000,"y":15.1},{"x":1568788920000,"y":15.1},{"x":1568788980000,"y":15.1},{"x":1568789040000,"y":15.1},{"x":1568789100000,"y":15.12},{"x":1568789160000,"y":15.1},{"x":1568789220000,"y":15.1},{"x":1568789280000,"y":15.09},{"x":1568789340000,"y":15.09},{"x":1568789400000,"y":15.12},{"x":1568789460000,"y":15.11},{"x":1568789520000,"y":15.11},{"x":1568789580000,"y":15.1},{"x":1568789640000,"y":15.1},{"x":1568789700000,"y":15.09},{"x":1568789760000,"y":15.08},{"x":1568789820000,"y":15.08},{"x":1568789880000,"y":15.08},{"x":1568789940000,"y":15.08},{"x":1568790000000,"y":15.12},{"x":1568790060000,"y":15.11},{"x":1568790120000,"y":15.1},{"x":1568790180000,"y":15.1},{"x":1568790240000,"y":15.1},{"x":1568790300000,"y":15.11},{"x":1568790360000,"y":15.1},{"x":1568790420000,"y":15.1},{"x":1568790480000,"y":15.1},{"x":1568790540000,"y":15.09},{"x":1568790600000,"y":15.12},{"x":1568790660000,"y":15.11},{"x":1568790720000,"y":15.11},{"x":1568790780000,"y":15.11},{"x":1568790840000,"y":15.11},{"x":1568790900000,"y":15.12},{"x":1568790960000,"y":15.1},{"x":1568791020000,"y":15.1},{"x":1568791080000,"y":15.1},{"x":1568791140000,"y":15.1},{"x":1568791200000,"y":15.12},{"x":1568791260000,"y":15.11},{"x":1568791320000,"y":15.11},{"x":1568791380000,"y":15.11},{"x":1568791440000,"y":15.11},{"x":1568791500000,"y":15.11},{"x":1568791560000,"y":15.12},{"x":1568791620000,"y":15.11},{"x":1568791680000,"y":15.11},{"x":1568791740000,"y":15.11},{"x":1568791800000,"y":15.11},{"x":1568791860000,"y":15.12},{"x":1568791920000,"y":15.1},{"x":1568791980000,"y":15.1},{"x":1568792040000,"y":15.1},{"x":1568792100000,"y":15.11},{"x":1568792160000,"y":15.12},{"x":1568792220000,"y":15.11},{"x":1568792280000,"y":15.11},{"x":1568792340000,"y":15.12},{"x":1568792400000,"y":15.11},{"x":1568792460000,"y":15.12},{"x":1568792520000,"y":15.12},{"x":1568792580000,"y":15.12},{"x":1568792640000,"y":15.12},{"x":1568792700000,"y":15.1},{"x":1568792760000,"y":15.13},{"x":1568792820000,"y":15.12},{"x":1568792880000,"y":15.11},{"x":1568792940000,"y":15.1},{"x":1568793000000,"y":15.09},{"x":1568793060000,"y":15.1},{"x":1568793120000,"y":15.09},{"x":1568793180000,"y":15.09},{"x":1568793240000,"y":15.1},{"x":1568793300000,"y":15.11},{"x":1568793360000,"y":15.11},{"x":1568793420000,"y":15.1},{"x":1568793480000,"y":15.1},{"x":1568793540000,"y":15.1},{"x":1568793600000,"y":15.11},{"x":1568793660000,"y":15.11},{"x":1568793720000,"y":15.11},{"x":1568793780000,"y":15.09},{"x":1568793840000,"y":15.1},{"x":1568793900000,"y":15.12},{"x":1568793960000,"y":15.12},{"x":1568794020000,"y":15.12},{"x":1568794080000,"y":15.11},{"x":1568794140000,"y":15.12},{"x":1568794200000,"y":15.11},{"x":1568794260000,"y":15.11},{"x":1568794320000,"y":15.11},{"x":1568794380000,"y":15.09},{"x":1568794440000,"y":15.09},{"x":1568794500000,"y":15.12},{"x":1568794560000,"y":15.12},{"x":1568794620000,"y":15.12},{"x":1568794680000,"y":15.1},{"x":1568794740000,"y":15.1},{"x":1568794800000,"y":15.12},{"x":1568794860000,"y":15.12},{"x":1568794920000,"y":15.13},{"x":1568794980000,"y":15.11},{"x":1568795040000,"y":15.11},{"x":1568795100000,"y":15.11},{"x":1568795160000,"y":15.12},{"x":1568795220000,"y":15.13},{"x":1568795280000,"y":15.12},{"x":1568795340000,"y":15.12},{"x":1568795400000,"y":15.1},{"x":1568795460000,"y":15.1},{"x":1568795520000,"y":15.12},{"x":1568795580000,"y":15.09},{"x":1568795640000,"y":15.09},{"x":1568795700000,"y":15.1},{"x":1568795760000,"y":15.1},{"x":1568795820000,"y":15.13},{"x":1568795880000,"y":15.1},{"x":1568795940000,"y":15.1},{"x":1568796000000,"y":15.1},{"x":1568796060000,"y":15.1},{"x":1568796120000,"y":15.1},{"x":1568796180000,"y":15.11},{"x":1568796240000,"y":15.09},{"x":1568796300000,"y":15.09},{"x":1568796360000,"y":15.1},{"x":1568796420000,"y":15.1},{"x":1568796480000,"y":15.11},{"x":1568796540000,"y":15.1},{"x":1568796600000,"y":15.09},{"x":1568796660000,"y":15.09},{"x":1568796720000,"y":15.09},{"x":1568796780000,"y":15.1},{"x":1568796840000,"y":15.09},{"x":1568796900000,"y":15.09},{"x":1568796960000,"y":15.09},{"x":1568797020000,"y":15.09},{"x":1568797080000,"y":15.11},{"x":1568797140000,"y":15.1},{"x":1568797200000,"y":15.07},{"x":1568797260000,"y":15.07},{"x":1568797320000,"y":15.07},{"x":1568797380000,"y":15.09},{"x":1568797440000,"y":15.09},{"x":1568797500000,"y":15.09},{"x":1568797560000,"y":15.1},{"x":1568797620000,"y":15.1},{"x":1568797680000,"y":15.11},{"x":1568797740000,"y":15.09},{"x":1568797800000,"y":15.11},{"x":1568797860000,"y":15.11},{"x":1568797920000,"y":15.11},{"x":1568797980000,"y":15.12},{"x":1568798040000,"y":15.11},{"x":1568798100000,"y":15.1},{"x":1568798160000,"y":15.1},{"x":1568798220000,"y":15.1},{"x":1568798280000,"y":15.12},{"x":1568798340000,"y":15.11},{"x":1568798400000,"y":15.11},{"x":1568798460000,"y":15.11},{"x":1568798520000,"y":15.11},{"x":1568798580000,"y":15.11},{"x":1568798640000,"y":15.11},{"x":1568798700000,"y":15.1},{"x":1568798760000,"y":15.11},{"x":1568798820000,"y":15.1},{"x":1568798880000,"y":15.1},{"x":1568798940000,"y":15.12},{"x":1568799000000,"y":15.1},{"x":1568799060000,"y":15.1},{"x":1568799120000,"y":15.1},{"x":1568799180000,"y":15.09},{"x":1568799240000,"y":15.12},{"x":1568799300000,"y":15.1},{"x":1568799360000,"y":15.1},{"x":1568799420000,"y":15.1},{"x":1568799480000,"y":15.1},{"x":1568799540000,"y":15.12},{"x":1568799600000,"y":15.11},{"x":1568799660000,"y":15.11},{"x":1568799720000,"y":15.11},{"x":1568799780000,"y":15.11},{"x":1568799840000,"y":15.12},{"x":1568799900000,"y":15.08},{"x":1568799960000,"y":15.08},{"x":1568800020000,"y":15.08},{"x":1568800080000,"y":15.08},{"x":1568800140000,"y":15.42},{"x":1568800200000,"y":15.18},{"x":1568800260000,"y":15.18},{"x":1568800320000,"y":15.18},{"x":1568800380000,"y":15.18},{"x":1568800440000,"y":15.18},{"x":1568800500000,"y":15.11},{"x":1568800560000,"y":15.11},{"x":1568800620000,"y":15.11},{"x":1568800680000,"y":15.11},{"x":1568800740000,"y":15.12},{"x":1568800800000,"y":15.1},{"x":1568800860000,"y":15.11},{"x":1568800920000,"y":15.11},{"x":1568800980000,"y":15.11},{"x":1568801040000,"y":15.12},{"x":1568801100000,"y":15.1},{"x":1568801160000,"y":15.1},{"x":1568801220000,"y":15.1},{"x":1568801280000,"y":15.1},{"x":1568801340000,"y":15.1},{"x":1568801400000,"y":15.11},{"x":1568801460000,"y":15.1},{"x":1568801520000,"y":15.1},{"x":1568801580000,"y":15.1},{"x":1568801640000,"y":15.1},{"x":1568801700000,"y":15.12},{"x":1568801760000,"y":15.1},{"x":1568801820000,"y":15.1},{"x":1568801880000,"y":15.1},{"x":1568801940000,"y":15.1},{"x":1568802000000,"y":15.12},{"x":1568802060000,"y":15.11},{"x":1568802120000,"y":15.12},{"x":1568802180000,"y":15.12},{"x":1568802240000,"y":15.11},{"x":1568802300000,"y":15.12},{"x":1568802360000,"y":15.11},{"x":1568802420000,"y":15.11},{"x":1568802480000,"y":15.11},{"x":1568802540000,"y":15.11},{"x":1568802600000,"y":15.13},{"x":1568802660000,"y":15.12},{"x":1568802720000,"y":15.12},{"x":1568802780000,"y":15.12},{"x":1568802840000,"y":15.12},{"x":1568802900000,"y":15.13},{"x":1568802960000,"y":15.11},{"x":1568803020000,"y":15.11},{"x":1568803080000,"y":15.11},{"x":1568803140000,"y":15.11},{"x":1568803200000,"y":15.13},{"x":1568803260000,"y":15.11},{"x":1568803320000,"y":15.11},{"x":1568803380000,"y":15.11},{"x":1568803440000,"y":15.11},{"x":1568803500000,"y":15.11},{"x":1568803560000,"y":15.12},{"x":1568803620000,"y":15.11},{"x":1568803680000,"y":15.11},{"x":1568803740000,"y":15.1},{"x":1568803800000,"y":15.1},{"x":1568803860000,"y":15.13},{"x":1568803920000,"y":15.12},{"x":1568803980000,"y":15.12},{"x":1568804040000,"y":15.12},{"x":1568804100000,"y":15.12},{"x":1568804160000,"y":15.13},{"x":1568804220000,"y":15.12},{"x":1568804280000,"y":15.12},{"x":1568804340000,"y":15.12},{"x":1568804400000,"y":15.11},{"x":1568804460000,"y":15.1},{"x":1568804520000,"y":15.09},{"x":1568804580000,"y":15.09},{"x":1568804640000,"y":15.09},{"x":1568804700000,"y":15.11},{"x":1568804760000,"y":15.12},{"x":1568804820000,"y":15.09},{"x":1568804880000,"y":15.1},{"x":1568804940000,"y":15.09},{"x":1568805000000,"y":15.1},{"x":1568805060000,"y":15.11},{"x":1568805120000,"y":15.1},{"x":1568805180000,"y":15.1},{"x":1568805240000,"y":15.1},{"x":1568805300000,"y":15.1},{"x":1568805360000,"y":15.11},{"x":1568805420000,"y":15.09},{"x":1568805480000,"y":15.09},{"x":1568805540000,"y":15.09},{"x":1568805600000,"y":15.1},{"x":1568805660000,"y":15.1},{"x":1568805720000,"y":15.11},{"x":1568805780000,"y":15.1},{"x":1568805840000,"y":15.1},{"x":1568805900000,"y":15.13},{"x":1568805960000,"y":15.5},{"x":1568806020000,"y":15.18},{"x":1568806080000,"y":15.17},{"x":1568806140000,"y":15.17},{"x":1568806200000,"y":15.17},{"x":1568806260000,"y":15.15},{"x":1568806320000,"y":15.1},{"x":1568806380000,"y":15.08},{"x":1568806440000,"y":15.08},{"x":1568806500000,"y":15.1},{"x":1568806560000,"y":15.1},{"x":1568806620000,"y":15.1},{"x":1568806680000,"y":15.09},{"x":1568806740000,"y":15.09},{"x":1568806800000,"y":15.08},{"x":1568806860000,"y":15.08},{"x":1568806920000,"y":15.1},{"x":1568806980000,"y":15.11},{"x":1568807040000,"y":15.11},{"x":1568807100000,"y":15.11},{"x":1568807160000,"y":15.11},{"x":1568807220000,"y":15.12},{"x":1568807280000,"y":15.1},{"x":1568807340000,"y":15.09},{"x":1568807400000,"y":15.11},{"x":1568807460000,"y":15.11},{"x":1568807520000,"y":15.12},{"x":1568807580000,"y":15.11},{"x":1568807640000,"y":15.11},{"x":1568807700000,"y":15.11},{"x":1568807760000,"y":15.11},{"x":1568807820000,"y":15.11},{"x":1568807880000,"y":15.09},{"x":1568807940000,"y":15.09},{"x":1568808000000,"y":15.11},{"x":1568808060000,"y":15.11},{"x":1568808120000,"y":15.11},{"x":1568808180000,"y":15.1},{"x":1568808240000,"y":15.09},{"x":1568808300000,"y":15.1},{"x":1568808360000,"y":15.1},{"x":1568808420000,"y":15.1},{"x":1568808480000,"y":15.1},{"x":1568808540000,"y":15.11},{"x":1568808600000,"y":15.1},{"x":1568808660000,"y":15.1},{"x":1568808720000,"y":15.11},{"x":1568808780000,"y":15.11},{"x":1568808840000,"y":15.09},{"x":1568808900000,"y":15.11},{"x":1568808960000,"y":15.11},{"x":1568809020000,"y":15.11},{"x":1568809080000,"y":15.1},{"x":1568809140000,"y":15.06},{"x":1568809200000,"y":15.08},{"x":1568809260000,"y":15.08},{"x":1568809320000,"y":15.09},{"x":1568809380000,"y":15.11},{"x":1568809440000,"y":15.11},{"x":1568809500000,"y":15.11},{"x":1568809560000,"y":15.11},{"x":1568809620000,"y":15.11},{"x":1568809680000,"y":15.12},{"x":1568809740000,"y":15.12},{"x":1568809800000,"y":15.12},{"x":1568809860000,"y":15.12},{"x":1568809920000,"y":15.12},{"x":1568809980000,"y":15.13},{"x":1568810040000,"y":15.11},{"x":1568810100000,"y":15.12},{"x":1568810160000,"y":15.11},{"x":1568810220000,"y":15.11},{"x":1568810280000,"y":15.11},{"x":1568810340000,"y":15.11},{"x":1568810400000,"y":15.11},{"x":1568810460000,"y":15.11},{"x":1568810520000,"y":15.11},{"x":1568810580000,"y":15.11},{"x":1568810640000,"y":15.12},{"x":1568810700000,"y":15.11},{"x":1568810760000,"y":15.11},{"x":1568810820000,"y":15.11},{"x":1568810880000,"y":15.11},{"x":1568810940000,"y":15.13},{"x":1568811000000,"y":15.12},{"x":1568811060000,"y":15.12},{"x":1568811120000,"y":15.12},{"x":1568811180000,"y":15.12},{"x":1568811240000,"y":15.13},{"x":1568811300000,"y":15.12},{"x":1568811360000,"y":15.12},{"x":1568811420000,"y":15.12},{"x":1568811480000,"y":15.12},{"x":1568811540000,"y":15.13},{"x":1568811600000,"y":15.1},{"x":1568811660000,"y":15.1},{"x":1568811720000,"y":15.1},{"x":1568811780000,"y":15.1},{"x":1568811840000,"y":15.11},{"x":1568811900000,"y":15.09},{"x":1568811960000,"y":15.09},{"x":1568812020000,"y":15.09},{"x":1568812080000,"y":15.09},{"x":1568812140000,"y":15.13},{"x":1568812200000,"y":15.09},{"x":1568812260000,"y":15.09},{"x":1568812320000,"y":15.09},{"x":1568812380000,"y":15.09},{"x":1568812440000,"y":15.1},{"x":1568812500000,"y":15.12},{"x":1568812560000,"y":15.12},{"x":1568812620000,"y":15.12},{"x":1568812680000,"y":15.12},{"x":1568812740000,"y":15.14},{"x":1568812800000,"y":15.11},{"x":1568812860000,"y":15.11},{"x":1568812920000,"y":15.11},{"x":1568812980000,"y":15.11},{"x":1568813040000,"y":15.11},{"x":1568813100000,"y":15.13},{"x":1568813160000,"y":15.12},{"x":1568813220000,"y":15.12},{"x":1568813280000,"y":15.12},{"x":1568813340000,"y":15.12},{"x":1568813400000,"y":15.12},{"x":1568813460000,"y":15.09},{"x":1568813520000,"y":15.09},{"x":1568813580000,"y":15.09},{"x":1568813640000,"y":15.09},{"x":1568813700000,"y":15.11},{"x":1568813760000,"y":15.1},{"x":1568813820000,"y":15.1},{"x":1568813880000,"y":15.1},{"x":1568813940000,"y":15.1},{"x":1568814000000,"y":15.1},{"x":1568814060000,"y":15.1},{"x":1568814120000,"y":15.1},{"x":1568814180000,"y":15.1},{"x":1568814240000,"y":15.1},{"x":1568814300000,"y":15.12},{"x":1568814360000,"y":15.11},{"x":1568814420000,"y":15.11},{"x":1568814480000,"y":15.1},{"x":1568814540000,"y":15.1},{"x":1568814600000,"y":15.12},{"x":1568814660000,"y":15.1},{"x":1568814720000,"y":15.1},{"x":1568814780000,"y":15.1},{"x":1568814840000,"y":15.1},{"x":1568814900000,"y":15.11},{"x":1568814960000,"y":15.1},{"x":1568815020000,"y":15.1},{"x":1568815080000,"y":15.1},{"x":1568815140000,"y":15.1},{"x":1568815200000,"y":15.12},{"x":1568815260000,"y":15.11},{"x":1568815320000,"y":15.11},{"x":1568815380000,"y":15.11},{"x":1568815440000,"y":15.11},{"x":1568815500000,"y":15.1},{"x":1568815560000,"y":15.11},{"x":1568815620000,"y":15.1},{"x":1568815680000,"y":15.1},{"x":1568815740000,"y":15.11},{"x":1568815800000,"y":15.11},{"x":1568815860000,"y":15.12},{"x":1568815920000,"y":15.11},{"x":1568815980000,"y":15.11},{"x":1568816040000,"y":15.1},{"x":1568816100000,"y":15.1},{"x":1568816160000,"y":15.11},{"x":1568816220000,"y":15.1},{"x":1568816280000,"y":15.1},{"x":1568816340000,"y":15.1},{"x":1568816400000,"y":15.1},{"x":1568816460000,"y":15.11},{"x":1568816520000,"y":15.1},{"x":1568816580000,"y":15.11},{"x":1568816640000,"y":15.11},{"x":1568816700000,"y":15.11},{"x":1568816760000,"y":15.13},{"x":1568816820000,"y":15.11},{"x":1568816880000,"y":15.11},{"x":1568816940000,"y":15.11},{"x":1568817000000,"y":15.08},{"x":1568817060000,"y":15.09},{"x":1568817120000,"y":15.1},{"x":1568817180000,"y":15.1},{"x":1568817240000,"y":15.1},{"x":1568817300000,"y":15.11},{"x":1568817360000,"y":15.11},{"x":1568817420000,"y":15.12},{"x":1568817480000,"y":15.11},{"x":1568817540000,"y":15.09},{"x":1568817600000,"y":15.09},{"x":1568817660000,"y":15.09},{"x":1568817720000,"y":15.12},{"x":1568817780000,"y":15.12},{"x":1568817840000,"y":15.12},{"x":1568817900000,"y":15.11},{"x":1568817960000,"y":15.11},{"x":1568818020000,"y":15.12},{"x":1568818080000,"y":15.1},{"x":1568818140000,"y":15.1},{"x":1568818200000,"y":15.11},{"x":1568818260000,"y":15.11},{"x":1568818320000,"y":15.13},{"x":1568818380000,"y":15.11},{"x":1568818440000,"y":15.11},{"x":1568818500000,"y":15.11},{"x":1568818560000,"y":15.11},{"x":1568818620000,"y":15.12},{"x":1568818680000,"y":15.11},{"x":1568818740000,"y":15.11},{"x":1568818800000,"y":15.11},{"x":1568818860000,"y":15.11},{"x":1568818920000,"y":15.12},{"x":1568818980000,"y":15.11},{"x":1568819040000,"y":15.11},{"x":1568819100000,"y":15.11},{"x":1568819160000,"y":15.11},{"x":1568819220000,"y":15.12},{"x":1568819280000,"y":15.11},{"x":1568819340000,"y":15.1},{"x":1568819400000,"y":15.1},{"x":1568819460000,"y":15.11},{"x":1568819520000,"y":15.12},{"x":1568819580000,"y":15.11},{"x":1568819640000,"y":15.11},{"x":1568819700000,"y":15.12},{"x":1568819760000,"y":15.12},{"x":1568819820000,"y":15.12},{"x":1568819880000,"y":15.12},{"x":1568819940000,"y":15.11},{"x":1568820000000,"y":15.12},{"x":1568820060000,"y":15.12},{"x":1568820120000,"y":15.12},{"x":1568820180000,"y":15.1},{"x":1568820240000,"y":15.08},{"x":1568820300000,"y":15.11},{"x":1568820360000,"y":15.11},{"x":1568820420000,"y":15.11},{"x":1568820480000,"y":15.12},{"x":1568820540000,"y":15.1},{"x":1568820600000,"y":15.11},{"x":1568820660000,"y":15.1},{"x":1568820720000,"y":15.1},{"x":1568820780000,"y":15.12},{"x":1568820840000,"y":15.12},{"x":1568820900000,"y":15.12},{"x":1568820960000,"y":15.12},{"x":1568821020000,"y":15.12},{"x":1568821080000,"y":15.13},{"x":1568821140000,"y":15.12},{"x":1568821200000,"y":15.12},{"x":1568821260000,"y":15.12},{"x":1568821320000,"y":15.12},{"x":1568821380000,"y":15.14},{"x":1568821440000,"y":15.12},{"x":1568821500000,"y":15.11},{"x":1568821560000,"y":15.11},{"x":1568821620000,"y":15.11},{"x":1568821680000,"y":15.12},{"x":1568821740000,"y":15.12},{"x":1568821800000,"y":15.13},{"x":1568821860000,"y":15.13},{"x":1568821920000,"y":15.12},{"x":1568821980000,"y":15.12},{"x":1568822040000,"y":15.48},{"x":1568822100000,"y":15.19},{"x":1568822160000,"y":15.19},{"x":1568822220000,"y":15.14},{"x":1568822280000,"y":15.12},{"x":1568822340000,"y":15.07},{"x":1568822400000,"y":15.04},{"x":1568822460000,"y":15.02},{"x":1568822520000,"y":15.02},{"x":1568822580000,"y":15.02},{"x":1568822640000,"y":15.05},{"x":1568822700000,"y":15.02},{"x":1568822760000,"y":15.02},{"x":1568822820000,"y":15.02},{"x":1568822880000,"y":15.02},{"x":1568822940000,"y":15.04},{"x":1568823000000,"y":15.03},{"x":1568823060000,"y":15.03},{"x":1568823120000,"y":15.03},{"x":1568823180000,"y":15.03},{"x":1568823240000,"y":15.04},{"x":1568823300000,"y":15.03},{"x":1568823360000,"y":15.03},{"x":1568823420000,"y":15.03},{"x":1568823480000,"y":15.03},{"x":1568823540000,"y":15.03},{"x":1568823600000,"y":15},{"x":1568823660000,"y":15},{"x":1568823720000,"y":15},{"x":1568823780000,"y":15},{"x":1568823840000,"y":15.02},{"x":1568823900000,"y":15.02},{"x":1568823960000,"y":15.02},{"x":1568824020000,"y":15.02},{"x":1568824080000,"y":15.02},{"x":1568824140000,"y":15.04},{"x":1568824200000,"y":15.03},{"x":1568824260000,"y":15.03},{"x":1568824320000,"y":15.03},{"x":1568824380000,"y":15.03},{"x":1568824440000,"y":15.03},{"x":1568824500000,"y":15.04},{"x":1568824560000,"y":15.03},{"x":1568824620000,"y":15.03},{"x":1568824680000,"y":15.03},{"x":1568824740000,"y":15.02},{"x":1568824800000,"y":15.04},{"x":1568824860000,"y":15.03},{"x":1568824920000,"y":15.03},{"x":1568824980000,"y":15.03},{"x":1568825040000,"y":15.03},{"x":1568825100000,"y":15.04},{"x":1568825160000,"y":15.03},{"x":1568825220000,"y":15.03},{"x":1568825280000,"y":15.03},{"x":1568825340000,"y":15.02},{"x":1568825400000,"y":15.05},{"x":1568825460000,"y":15.04},{"x":1568825520000,"y":15.03},{"x":1568825580000,"y":15.03},{"x":1568825640000,"y":15.03},{"x":1568825700000,"y":15.04},{"x":1568825760000,"y":15.03},{"x":1568825820000,"y":15.03},{"x":1568825880000,"y":15.03},{"x":1568825940000,"y":15.04},{"x":1568826000000,"y":15.02},{"x":1568826060000,"y":15.02},{"x":1568826120000,"y":15.02},{"x":1568826180000,"y":15.02},{"x":1568826240000,"y":15.02},{"x":1568826300000,"y":15.03},{"x":1568826360000,"y":14.98},{"x":1568826420000,"y":14.98},{"x":1568826480000,"y":14.98},{"x":1568826540000,"y":15.03},{"x":1568826600000,"y":15.03},{"x":1568826660000,"y":15.04},{"x":1568826720000,"y":15.04},{"x":1568826780000,"y":15.04},{"x":1568826840000,"y":15.04},{"x":1568826900000,"y":15.04},{"x":1568826960000,"y":15.04},{"x":1568827020000,"y":15.03},{"x":1568827080000,"y":15.03},{"x":1568827140000,"y":15.03},{"x":1568827200000,"y":15.04},{"x":1568827260000,"y":15.04},{"x":1568827320000,"y":15.02},{"x":1568827380000,"y":15.02},{"x":1568827440000,"y":15.02},{"x":1568827500000,"y":15.04},{"x":1568827560000,"y":15.03},{"x":1568827620000,"y":15.01},{"x":1568827680000,"y":15.01},{"x":1568827740000,"y":15.02},{"x":1568827800000,"y":15.05},{"x":1568827860000,"y":15.06},{"x":1568827920000,"y":15.04},{"x":1568827980000,"y":15.04},{"x":1568828040000,"y":15.04},{"x":1568828100000,"y":15.05},{"x":1568828160000,"y":15.05},{"x":1568828220000,"y":15.03},{"x":1568828280000,"y":15.03},{"x":1568828340000,"y":15.04},{"x":1568828400000,"y":15},{"x":1568828460000,"y":15.02},{"x":1568828520000,"y":15.03},{"x":1568828580000,"y":15.03},{"x":1568828640000,"y":15.04},{"x":1568828700000,"y":15.02},{"x":1568828760000,"y":15.04},{"x":1568828820000,"y":15.03},{"x":1568828880000,"y":15.03},{"x":1568828940000,"y":15.01},{"x":1568829000000,"y":15.04},{"x":1568829060000,"y":15.04},{"x":1568829120000,"y":15.04},{"x":1568829180000,"y":15.03},{"x":1568829240000,"y":15.03},{"x":1568829300000,"y":15.04},{"x":1568829360000,"y":15.04},{"x":1568829420000,"y":15.05},{"x":1568829480000,"y":15.04},{"x":1568829540000,"y":15.04},{"x":1568829600000,"y":15.05},{"x":1568829660000,"y":15.05},{"x":1568829720000,"y":15.06},{"x":1568829780000,"y":15.03},{"x":1568829840000,"y":15.04},{"x":1568829900000,"y":15.02},{"x":1568829960000,"y":15.02},{"x":1568830020000,"y":15.03},{"x":1568830080000,"y":15.02},{"x":1568830140000,"y":15.05},{"x":1568830200000,"y":15.04},{"x":1568830260000,"y":15.04},{"x":1568830320000,"y":15.06},{"x":1568830380000,"y":15.06},{"x":1568830440000,"y":15.06},{"x":1568830500000,"y":15.06},{"x":1568830560000,"y":15.06},{"x":1568830620000,"y":15.05},{"x":1568830680000,"y":15.01},{"x":1568830740000,"y":15.01},{"x":1568830800000,"y":15.03},{"x":1568830860000,"y":15.03},{"x":1568830920000,"y":15.04},{"x":1568830980000,"y":15.04},{"x":1568831040000,"y":15.04},{"x":1568831100000,"y":15.03},{"x":1568831160000,"y":15.03},{"x":1568831220000,"y":15.04},{"x":1568831280000,"y":15.05},{"x":1568831340000,"y":15.05},{"x":1568831400000,"y":15.04},{"x":1568831460000,"y":15.03},{"x":1568831520000,"y":15.03},{"x":1568831580000,"y":15.01},{"x":1568831640000,"y":15.01},{"x":1568831700000,"y":15.03},{"x":1568831760000,"y":15.03},{"x":1568831820000,"y":15.03},{"x":1568831880000,"y":15.03},{"x":1568831940000,"y":15.02},{"x":1568832000000,"y":15.01},{"x":1568832060000,"y":15.01},{"x":1568832120000,"y":15.01},{"x":1568832180000,"y":14.99},{"x":1568832240000,"y":14.98},{"x":1568832300000,"y":15},{"x":1568832360000,"y":15},{"x":1568832420000,"y":15},{"x":1568832480000,"y":15.04},{"x":1568832540000,"y":15.03},{"x":1568832600000,"y":15.03},{"x":1568832660000,"y":15.03},{"x":1568832720000,"y":15.03},{"x":1568832780000,"y":15.05},{"x":1568832840000,"y":15.03},{"x":1568832900000,"y":15.03},{"x":1568832960000,"y":15.03},{"x":1568833020000,"y":15.03},{"x":1568833080000,"y":15.04},{"x":1568833140000,"y":15.04},{"x":1568833200000,"y":15.02},{"x":1568833260000,"y":15.02},{"x":1568833320000,"y":15.02},{"x":1568833380000,"y":15.03},{"x":1568833440000,"y":15.02},{"x":1568833500000,"y":15.03},{"x":1568833560000,"y":15.03},{"x":1568833620000,"y":15.03},{"x":1568833680000,"y":15.03},{"x":1568833740000,"y":15.03},{"x":1568833800000,"y":15.03},{"x":1568833860000,"y":15.03},{"x":1568833920000,"y":15.03},{"x":1568833980000,"y":15.05},{"x":1568834040000,"y":15.04},{"x":1568834100000,"y":15.01},{"x":1568834160000,"y":15.01},{"x":1568834220000,"y":15.01},{"x":1568834280000,"y":15.01},{"x":1568834340000,"y":15.04},{"x":1568834400000,"y":15.03},{"x":1568834460000,"y":15.03},{"x":1568834520000,"y":15.03},{"x":1568834580000,"y":15.03},{"x":1568834640000,"y":15.05},{"x":1568834700000,"y":15.04},{"x":1568834760000,"y":15.04},{"x":1568834820000,"y":15.04},{"x":1568834880000,"y":15.04},{"x":1568834940000,"y":15.05},{"x":1568835000000,"y":15.03},{"x":1568835060000,"y":15.03},{"x":1568835120000,"y":15.03},{"x":1568835180000,"y":15.03},{"x":1568835240000,"y":15.05},{"x":1568835300000,"y":15.04},{"x":1568835360000,"y":15.04},{"x":1568835420000,"y":15.04},{"x":1568835480000,"y":15.04},{"x":1568835540000,"y":15.05},{"x":1568835600000,"y":15.04},{"x":1568835660000,"y":15.04},{"x":1568835720000,"y":15.04},{"x":1568835780000,"y":15.04},{"x":1568835840000,"y":15.05},{"x":1568835900000,"y":15},{"x":1568835960000,"y":15},{"x":1568836020000,"y":15},{"x":1568836080000,"y":15},{"x":1568836140000,"y":15.01},{"x":1568836200000,"y":15.05},{"x":1568836260000,"y":15.05},{"x":1568836320000,"y":15.05},{"x":1568836380000,"y":15.05},{"x":1568836440000,"y":15.06},{"x":1568836500000,"y":15.04},{"x":1568836560000,"y":15.04},{"x":1568836620000,"y":15.04},{"x":1568836680000,"y":15.04},{"x":1568836740000,"y":15.05},{"x":1568836800000,"y":15.01},{"x":1568836860000,"y":15.01},{"x":1568836920000,"y":15.01},{"x":1568836980000,"y":15.01},{"x":1568837040000,"y":15.01},{"x":1568837100000,"y":15.07},{"x":1568837160000,"y":15.05},{"x":1568837220000,"y":15.05},{"x":1568837280000,"y":15.05},{"x":1568837340000,"y":15.04},{"x":1568837400000,"y":15.05},{"x":1568837460000,"y":15.04},{"x":1568837520000,"y":15.04},{"x":1568837580000,"y":15.04},{"x":1568837640000,"y":15.04},{"x":1568837700000,"y":15.05},{"x":1568837760000,"y":15.04},{"x":1568837820000,"y":15.03},{"x":1568837880000,"y":15.03},{"x":1568837940000,"y":15.03},{"x":1568838000000,"y":15.05},{"x":1568838060000,"y":15.05},{"x":1568838120000,"y":15.05},{"x":1568838180000,"y":15.04},{"x":1568838240000,"y":15.05},{"x":1568838300000,"y":15.05},{"x":1568838360000,"y":15},{"x":1568838420000,"y":15},{"x":1568838480000,"y":15},{"x":1568838540000,"y":15},{"x":1568838600000,"y":15.04},{"x":1568838660000,"y":15.03},{"x":1568838720000,"y":15.04},{"x":1568838780000,"y":15.03},{"x":1568838840000,"y":15.03},{"x":1568838900000,"y":15.05},{"x":1568838960000,"y":15.01},{"x":1568839020000,"y":15.01},{"x":1568839080000,"y":15.01},{"x":1568839140000,"y":15.05},{"x":1568839200000,"y":15.06},{"x":1568839260000,"y":15.04},{"x":1568839320000,"y":15.04},{"x":1568839380000,"y":15.04},{"x":1568839440000,"y":15.04},{"x":1568839500000,"y":15.05},{"x":1568839560000,"y":15.07},{"x":1568839620000,"y":15.05},{"x":1568839680000,"y":15.05},{"x":1568839740000,"y":15.04},{"x":1568839800000,"y":15.05},{"x":1568839860000,"y":15.06},{"x":1568839920000,"y":15.05},{"x":1568839980000,"y":15.05},{"x":1568840040000,"y":15.05},{"x":1568840100000,"y":15.05},{"x":1568840160000,"y":15.06},{"x":1568840220000,"y":15.05},{"x":1568840280000,"y":15.04},{"x":1568840340000,"y":15.02},{"x":1568840400000,"y":15.01},{"x":1568840460000,"y":15.03},{"x":1568840520000,"y":15.03},{"x":1568840580000,"y":15.03},{"x":1568840640000,"y":15.03},{"x":1568840700000,"y":15.02},{"x":1568840760000,"y":15.02},{"x":1568840820000,"y":14.99},{"x":1568840880000,"y":14.99},{"x":1568840940000,"y":15.03},{"x":1568841000000,"y":15.01},{"x":1568841060000,"y":15.02},{"x":1568841120000,"y":15.01},{"x":1568841180000,"y":15.01},{"x":1568841240000,"y":15.01},{"x":1568841300000,"y":15.03},{"x":1568841360000,"y":15.04},{"x":1568841420000,"y":15.01},{"x":1568841480000,"y":15.02},{"x":1568841540000,"y":15.02},{"x":1568841600000,"y":15},{"x":1568841660000,"y":14.99},{"x":1568841720000,"y":15.05},{"x":1568841780000,"y":15.03},{"x":1568841840000,"y":15.03},{"x":1568841900000,"y":14.98},{"x":1568841960000,"y":14.98},{"x":1568842020000,"y":15.02},{"x":1568842080000,"y":15.02},{"x":1568842140000,"y":15.02},{"x":1568842200000,"y":15.02},{"x":1568842260000,"y":15.03},{"x":1568842320000,"y":15.04},{"x":1568842380000,"y":15.04},{"x":1568842440000,"y":15.03},{"x":1568842500000,"y":15.03},{"x":1568842560000,"y":15.03},{"x":1568842620000,"y":15.04},{"x":1568842680000,"y":15.03},{"x":1568842740000,"y":15.03},{"x":1568842800000,"y":15.03},{"x":1568842860000,"y":15.03},{"x":1568842920000,"y":15.04},{"x":1568842980000,"y":15.02},{"x":1568843040000,"y":15.02},{"x":1568843100000,"y":15.03},{"x":1568843160000,"y":15.03},{"x":1568843220000,"y":15.04},{"x":1568843280000,"y":15.02},{"x":1568843340000,"y":15.03},{"x":1568843400000,"y":15.03},{"x":1568843460000,"y":15.03},{"x":1568843520000,"y":15.04},{"x":1568843580000,"y":15.04},{"x":1568843640000,"y":15.04},{"x":1568843700000,"y":15.04},{"x":1568843760000,"y":15.04},{"x":1568843820000,"y":15.26},{"x":1568843880000,"y":15.16},{"x":1568843940000,"y":15.07},{"x":1568844000000,"y":15.1},{"x":1568844060000,"y":15.1},{"x":1568844120000,"y":15.1},{"x":1568844180000,"y":15.05},{"x":1568844240000,"y":15.04},{"x":1568844300000,"y":15.03},{"x":1568844360000,"y":15.03},{"x":1568844420000,"y":15.03},{"x":1568844480000,"y":15.03},{"x":1568844540000,"y":15.04},{"x":1568844600000,"y":15.05},{"x":1568844660000,"y":15.05},{"x":1568844720000,"y":15.05},{"x":1568844780000,"y":15.05},{"x":1568844840000,"y":15.04},{"x":1568844900000,"y":15.01},{"x":1568844960000,"y":15},{"x":1568845020000,"y":15.01},{"x":1568845080000,"y":15.04},{"x":1568845140000,"y":15.03},{"x":1568845200000,"y":15.04},{"x":1568845260000,"y":15.04},{"x":1568845320000,"y":15.04},{"x":1568845380000,"y":15.05},{"x":1568845440000,"y":15.04},{"x":1568845500000,"y":15.04},{"x":1568845560000,"y":15.04},{"x":1568845620000,"y":15.04},{"x":1568845680000,"y":15.05},{"x":1568845740000,"y":15.04},{"x":1568845800000,"y":15.05},{"x":1568845860000,"y":15.05},{"x":1568845920000,"y":15.05},{"x":1568845980000,"y":15.05},{"x":1568846040000,"y":15.04},{"x":1568846100000,"y":15.04},{"x":1568846160000,"y":15.04},{"x":1568846220000,"y":15.04},{"x":1568846280000,"y":15.04},{"x":1568846340000,"y":15.06},{"x":1568846400000,"y":15.01},{"x":1568846460000,"y":15.01},{"x":1568846520000,"y":15.01},{"x":1568846580000,"y":15.01},{"x":1568846640000,"y":15.04},{"x":1568846700000,"y":15.05},{"x":1568846760000,"y":15.05},{"x":1568846820000,"y":15.05},{"x":1568846880000,"y":15.04},{"x":1568846940000,"y":15.04},{"x":1568847000000,"y":15.03},{"x":1568847060000,"y":15.03},{"x":1568847120000,"y":15.03},{"x":1568847180000,"y":15.03},{"x":1568847240000,"y":15.05},{"x":1568847300000,"y":15.05},{"x":1568847360000,"y":15.05},{"x":1568847420000,"y":15.05},{"x":1568847480000,"y":15.05},{"x":1568847540000,"y":15.06},{"x":1568847600000,"y":15.05},{"x":1568847660000,"y":15.05},{"x":1568847720000,"y":15.05},{"x":1568847780000,"y":15.05},{"x":1568847840000,"y":15.06},{"x":1568847900000,"y":15.05},{"x":1568847960000,"y":15.05},{"x":1568848020000,"y":15.05},{"x":1568848080000,"y":15.05},{"x":1568848140000,"y":15.06},{"x":1568848200000,"y":15.05},{"x":1568848260000,"y":15.05},{"x":1568848320000,"y":15.05},{"x":1568848380000,"y":15.05},{"x":1568848440000,"y":15.06},{"x":1568848500000,"y":15.06},{"x":1568848560000,"y":15.06},{"x":1568848620000,"y":15.06},{"x":1568848680000,"y":15.05},{"x":1568848740000,"y":15.05},{"x":1568848800000,"y":15.07},{"x":1568848860000,"y":15.05},{"x":1568848920000,"y":15.05},{"x":1568848980000,"y":15.05},{"x":1568849040000,"y":15.05},{"x":1568849100000,"y":15.11},{"x":1568849160000,"y":15.12},{"x":1568849220000,"y":15.12},{"x":1568849280000,"y":15.12},{"x":1568849340000,"y":15.11},{"x":1568849400000,"y":15.11},{"x":1568849460000,"y":15.1},{"x":1568849520000,"y":15.1},{"x":1568849580000,"y":15.1},{"x":1568849640000,"y":15.1},{"x":1568849700000,"y":15.12},{"x":1568849760000,"y":15.11},{"x":1568849820000,"y":15.11},{"x":1568849880000,"y":15.11},{"x":1568849940000,"y":15.1},{"x":1568850000000,"y":15.1},{"x":1568850060000,"y":15.08},{"x":1568850120000,"y":15.08},{"x":1568850180000,"y":15.08},{"x":1568850240000,"y":15.08},{"x":1568850300000,"y":15.12},{"x":1568850360000,"y":15.1},{"x":1568850420000,"y":15.1},{"x":1568850480000,"y":15.1},{"x":1568850540000,"y":15.1},{"x":1568850600000,"y":15.12},{"x":1568850660000,"y":15.11},{"x":1568850720000,"y":15.11},{"x":1568850780000,"y":15.11},{"x":1568850840000,"y":15.11},{"x":1568850900000,"y":15.09},{"x":1568850960000,"y":15.1},{"x":1568851020000,"y":15.1},{"x":1568851080000,"y":15.1},{"x":1568851140000,"y":15.1},{"x":1568851200000,"y":15.1},{"x":1568851260000,"y":15.09},{"x":1568851320000,"y":15.07},{"x":1568851380000,"y":15.07},{"x":1568851440000,"y":15.07},{"x":1568851500000,"y":15.11},{"x":1568851560000,"y":15.12},{"x":1568851620000,"y":15.12},{"x":1568851680000,"y":15.12},{"x":1568851740000,"y":15.11},{"x":1568851800000,"y":15.12},{"x":1568851860000,"y":15.1},{"x":1568851920000,"y":15.08},{"x":1568851980000,"y":15.08},{"x":1568852040000,"y":15.08},{"x":1568852100000,"y":15.09},{"x":1568852160000,"y":15.1},{"x":1568852220000,"y":15.09},{"x":1568852280000,"y":15.1},{"x":1568852340000,"y":15.1},{"x":1568852400000,"y":15.1},{"x":1568852460000,"y":15.12},{"x":1568852520000,"y":15.12},{"x":1568852580000,"y":15.12},{"x":1568852640000,"y":15.12},{"x":1568852700000,"y":15.12},{"x":1568852760000,"y":15.12},{"x":1568852820000,"y":15.11},{"x":1568852880000,"y":15.11},{"x":1568852940000,"y":15.12},{"x":1568853000000,"y":15.12},{"x":1568853060000,"y":15.13},{"x":1568853120000,"y":15.1},{"x":1568853180000,"y":15.1},{"x":1568853240000,"y":15.1},{"x":1568853300000,"y":15.11},{"x":1568853360000,"y":15.11},{"x":1568853420000,"y":15.13},{"x":1568853480000,"y":15.11},{"x":1568853540000,"y":15.11},{"x":1568853600000,"y":15.11},{"x":1568853660000,"y":15.11},{"x":1568853720000,"y":15.13},{"x":1568853780000,"y":15.12},{"x":1568853840000,"y":15.12},{"x":1568853900000,"y":15.11},{"x":1568853960000,"y":15.11},{"x":1568854020000,"y":15.08},{"x":1568854080000,"y":15.07},{"x":1568854140000,"y":15.07},{"x":1568854200000,"y":15.08},{"x":1568854260000,"y":15.08},{"x":1568854320000,"y":15.1},{"x":1568854380000,"y":15.09},{"x":1568854440000,"y":15.09},{"x":1568854500000,"y":15.12},{"x":1568854560000,"y":15.12},{"x":1568854620000,"y":15.12},{"x":1568854680000,"y":15.09},{"x":1568854740000,"y":15.09},{"x":1568854800000,"y":15.11},{"x":1568854860000,"y":15.12},{"x":1568854920000,"y":15.13},{"x":1568854980000,"y":15.12},{"x":1568855040000,"y":15.12},{"x":1568855100000,"y":15.12},{"x":1568855160000,"y":15.12},{"x":1568855220000,"y":15.12},{"x":1568855280000,"y":15.08},{"x":1568855340000,"y":15.11},{"x":1568855400000,"y":15.11},{"x":1568855460000,"y":15.11},{"x":1568855520000,"y":15.13},{"x":1568855580000,"y":15.1},{"x":1568855640000,"y":15.1},{"x":1568855700000,"y":15.12},{"x":1568855760000,"y":15.12},{"x":1568855820000,"y":15.12},{"x":1568855880000,"y":15.13},{"x":1568855940000,"y":15.12},{"x":1568856000000,"y":15.11},{"x":1568856060000,"y":15.11},{"x":1568856120000,"y":15.11},{"x":1568856180000,"y":15.13},{"x":1568856240000,"y":15.12},{"x":1568856300000,"y":15.13},{"x":1568856360000,"y":15.13},{"x":1568856420000,"y":15.13},{"x":1568856480000,"y":15.13},{"x":1568856540000,"y":15.12},{"x":1568856600000,"y":15.12},{"x":1568856660000,"y":15.12},{"x":1568856720000,"y":15.12},{"x":1568856780000,"y":15.14},{"x":1568856840000,"y":15.13},{"x":1568856900000,"y":15.13},{"x":1568856960000,"y":15.13},{"x":1568857020000,"y":15.13},{"x":1568857080000,"y":15.15},{"x":1568857140000,"y":15.12},{"x":1568857200000,"y":15.12},{"x":1568857260000,"y":15.12},{"x":1568857320000,"y":15.12},{"x":1568857380000,"y":15.13},{"x":1568857440000,"y":15.13},{"x":1568857500000,"y":15.13},{"x":1568857560000,"y":15.13},{"x":1568857620000,"y":15.13},{"x":1568857680000,"y":15.14},{"x":1568857740000,"y":15.12},{"x":1568857800000,"y":15.12},{"x":1568857860000,"y":15.12},{"x":1568857920000,"y":15.12},{"x":1568857980000,"y":15.13},{"x":1568858040000,"y":15.13},{"x":1568858100000,"y":15.12},{"x":1568858160000,"y":15.12},{"x":1568858220000,"y":15.12},{"x":1568858280000,"y":15.12},{"x":1568858340000,"y":15.13},{"x":1568858400000,"y":15.1},{"x":1568858460000,"y":15.09},{"x":1568858520000,"y":15.09},{"x":1568858580000,"y":15.09},{"x":1568858640000,"y":15.11},{"x":1568858700000,"y":15.08},{"x":1568858760000,"y":15.08},{"x":1568858820000,"y":15.08},{"x":1568858880000,"y":15.08},{"x":1568858940000,"y":15.11},{"x":1568859000000,"y":15.1},{"x":1568859060000,"y":15.1},{"x":1568859120000,"y":15.1},{"x":1568859180000,"y":15.1},{"x":1568859240000,"y":15.12},{"x":1568859300000,"y":15.08},{"x":1568859360000,"y":15.08},{"x":1568859420000,"y":15.08},{"x":1568859480000,"y":15.08},{"x":1568859540000,"y":15.09},{"x":1568859600000,"y":15.11},{"x":1568859660000,"y":15.11},{"x":1568859720000,"y":15.12},{"x":1568859780000,"y":15.12},{"x":1568859840000,"y":15.12},{"x":1568859900000,"y":15.11},{"x":1568859960000,"y":15.11},{"x":1568860020000,"y":15.11},{"x":1568860080000,"y":15.11},{"x":1568860140000,"y":15.11},{"x":1568860200000,"y":15.1},{"x":1568860260000,"y":15.1},{"x":1568860320000,"y":15.1},{"x":1568860380000,"y":15.1},{"x":1568860440000,"y":15.12},{"x":1568860500000,"y":15.11},{"x":1568860560000,"y":15.11},{"x":1568860620000,"y":15.11},{"x":1568860680000,"y":15.11},{"x":1568860740000,"y":15.11},{"x":1568860800000,"y":15.12},{"x":1568860860000,"y":15.11},{"x":1568860920000,"y":15.11},{"x":1568860980000,"y":15.11},{"x":1568861040000,"y":15.12},{"x":1568861100000,"y":15.12},{"x":1568861160000,"y":15.11},{"x":1568861220000,"y":15.11},{"x":1568861280000,"y":15.11},{"x":1568861340000,"y":15.1},{"x":1568861400000,"y":15.12},{"x":1568861460000,"y":15.11},{"x":1568861520000,"y":15.11},{"x":1568861580000,"y":15.12},{"x":1568861640000,"y":15.12},{"x":1568861700000,"y":15.13},{"x":1568861760000,"y":15.12},{"x":1568861820000,"y":15.12},{"x":1568861880000,"y":15.11},{"x":1568861940000,"y":15.11},{"x":1568862000000,"y":15.11},{"x":1568862060000,"y":15.12},{"x":1568862120000,"y":15.12},{"x":1568862180000,"y":15.12},{"x":1568862240000,"y":15.12},{"x":1568862300000,"y":15.13},{"x":1568862360000,"y":15.12},{"x":1568862420000,"y":15.12},{"x":1568862480000,"y":15.12},{"x":1568862540000,"y":15.12},{"x":1568862600000,"y":15.13},{"x":1568862660000,"y":15.11},{"x":1568862720000,"y":15.11},{"x":1568862780000,"y":15.11},{"x":1568862840000,"y":15.11},{"x":1568862900000,"y":15.12},{"x":1568862960000,"y":15.1},{"x":1568863020000,"y":15.09},{"x":1568863080000,"y":15.09},{"x":1568863140000,"y":15.1},{"x":1568863200000,"y":15.09},{"x":1568863260000,"y":15.12},{"x":1568863320000,"y":15.11},{"x":1568863380000,"y":15.11},{"x":1568863440000,"y":15.11},{"x":1568863500000,"y":15.12},{"x":1568863560000,"y":15.13},{"x":1568863620000,"y":15.12},{"x":1568863680000,"y":15.12},{"x":1568863740000,"y":15.12},{"x":1568863800000,"y":15.12},{"x":1568863860000,"y":15.08},{"x":1568863920000,"y":15.05},{"x":1568863980000,"y":15.05},{"x":1568864040000,"y":15.05},{"x":1568864100000,"y":15.09},{"x":1568864160000,"y":15.12},{"x":1568864220000,"y":15.11},{"x":1568864280000,"y":15.11},{"x":1568864340000,"y":15.13},{"x":1568864400000,"y":15.12},{"x":1568864460000,"y":15.13},{"x":1568864520000,"y":15.12},{"x":1568864580000,"y":15.12},{"x":1568864640000,"y":15.12},{"x":1568864700000,"y":15.13},{"x":1568864760000,"y":15.13},{"x":1568864820000,"y":15.12},{"x":1568864880000,"y":15.12},{"x":1568864940000,"y":15.12},{"x":1568865000000,"y":15.12},{"x":1568865060000,"y":15.13},{"x":1568865120000,"y":15.13},{"x":1568865180000,"y":15.13},{"x":1568865240000,"y":15.13},{"x":1568865300000,"y":15.13},{"x":1568865360000,"y":15.13},{"x":1568865420000,"y":15.11},{"x":1568865480000,"y":15.1},{"x":1568865540000,"y":15.1},{"x":1568865600000,"y":15.12},{"x":1568865660000,"y":15.12},{"x":1568865720000,"y":15.48},{"x":1568865780000,"y":15.19},{"x":1568865840000,"y":15.19},{"x":1568865900000,"y":15.19},{"x":1568865960000,"y":15.19},{"x":1568866020000,"y":15.15},{"x":1568866080000,"y":15.12},{"x":1568866140000,"y":15.12},{"x":1568866200000,"y":15.12},{"x":1568866260000,"y":15.12},{"x":1568866320000,"y":15.15},{"x":1568866380000,"y":15.13},{"x":1568866440000,"y":15.13},{"x":1568866500000,"y":15.11},{"x":1568866560000,"y":15.11},{"x":1568866620000,"y":15.12},{"x":1568866680000,"y":15.11},{"x":1568866740000,"y":15.11},{"x":1568866800000,"y":15.13},{"x":1568866860000,"y":15.13},{"x":1568866920000,"y":15.14},{"x":1568866980000,"y":15.13},{"x":1568867040000,"y":15.13},{"x":1568867100000,"y":15.12},{"x":1568867160000,"y":15.11},{"x":1568867220000,"y":15.13},{"x":1568867280000,"y":15.11},{"x":1568867340000,"y":15.11},{"x":1568867400000,"y":15.12},{"x":1568867460000,"y":15.11},{"x":1568867520000,"y":15.12},{"x":1568867580000,"y":15.11},{"x":1568867640000,"y":15.11},{"x":1568867700000,"y":15.1},{"x":1568867760000,"y":15.1},{"x":1568867820000,"y":15.11},{"x":1568867880000,"y":15.11},{"x":1568867940000,"y":15.11},{"x":1568868000000,"y":15.1},{"x":1568868060000,"y":15.1},{"x":1568868120000,"y":15.1},{"x":1568868180000,"y":15.1},{"x":1568868240000,"y":15.09},{"x":1568868300000,"y":15.1},{"x":1568868360000,"y":15.1},{"x":1568868420000,"y":15.1},{"x":1568868480000,"y":15.12},{"x":1568868540000,"y":15.1},{"x":1568868600000,"y":15.1},{"x":1568868660000,"y":15.1},{"x":1568868720000,"y":15.09},{"x":1568868780000,"y":15.11},{"x":1568868840000,"y":15.11},{"x":1568868900000,"y":15.11},{"x":1568868960000,"y":15.11},{"x":1568869020000,"y":15.11},{"x":1568869080000,"y":15.12},{"x":1568869140000,"y":15.11},{"x":1568869200000,"y":15.25},{"x":1568869260000,"y":15.2},{"x":1568869320000,"y":15.2},{"x":1568869380000,"y":15.22},{"x":1568869440000,"y":15.21},{"x":1568869500000,"y":15.18},{"x":1568869560000,"y":15.11},{"x":1568869620000,"y":15.11},{"x":1568869680000,"y":15.13},{"x":1568869740000,"y":15.13},{"x":1568869800000,"y":15.15},{"x":1568869860000,"y":15.15},{"x":1568869920000,"y":15.15},{"x":1568869980000,"y":15.15},{"x":1568870040000,"y":15.14},{"x":1568870100000,"y":15.14},{"x":1568870160000,"y":15.14},{"x":1568870220000,"y":15.14},{"x":1568870280000,"y":15.14},{"x":1568870340000,"y":15.13},{"x":1568870400000,"y":15.14},{"x":1568870460000,"y":15.14},{"x":1568870520000,"y":15.14},{"x":1568870580000,"y":15.14},{"x":1568870640000,"y":15.16},{"x":1568870700000,"y":15.14},{"x":1568870760000,"y":15.14},{"x":1568870820000,"y":15.14},{"x":1568870880000,"y":15.14},{"x":1568870940000,"y":15.16},{"x":1568871000000,"y":15.15},{"x":1568871060000,"y":15.15},{"x":1568871120000,"y":15.15},{"x":1568871180000,"y":15.14},{"x":1568871240000,"y":15.15},{"x":1568871300000,"y":15.15},{"x":1568871360000,"y":15.15},{"x":1568871420000,"y":15.15},{"x":1568871480000,"y":15.15},{"x":1568871540000,"y":15.15},{"x":1568871600000,"y":15.13},{"x":1568871660000,"y":15.13},{"x":1568871720000,"y":15.13},{"x":1568871780000,"y":15.13},{"x":1568871840000,"y":15.15},{"x":1568871900000,"y":15.14},{"x":1568871960000,"y":15.14},{"x":1568872020000,"y":15.14},{"x":1568872080000,"y":15.14},{"x":1568872140000,"y":15.15},{"x":1568872200000,"y":15.14},{"x":1568872260000,"y":15.13},{"x":1568872320000,"y":15.13},{"x":1568872380000,"y":15.13},{"x":1568872440000,"y":15.14},{"x":1568872500000,"y":15.15},{"x":1568872560000,"y":15.15},{"x":1568872620000,"y":15.14},{"x":1568872680000,"y":15.15},{"x":1568872740000,"y":15.16},{"x":1568872800000,"y":15.14},{"x":1568872860000,"y":15.14},{"x":1568872920000,"y":15.14},{"x":1568872980000,"y":15.14},{"x":1568873040000,"y":15.14},{"x":1568873100000,"y":15.16},{"x":1568873160000,"y":15.14},{"x":1568873220000,"y":15.14},{"x":1568873280000,"y":15.14},{"x":1568873340000,"y":15.15},{"x":1568873400000,"y":15.16},{"x":1568873460000,"y":15.15},{"x":1568873520000,"y":15.15},{"x":1568873580000,"y":15.15},{"x":1568873640000,"y":15.15},{"x":1568873700000,"y":15.16},{"x":1568873760000,"y":15.15},{"x":1568873820000,"y":15.15},{"x":1568873880000,"y":15.15},{"x":1568873940000,"y":15.15},{"x":1568874000000,"y":15.17},{"x":1568874060000,"y":15.15},{"x":1568874120000,"y":15.15},{"x":1568874180000,"y":15.15},{"x":1568874240000,"y":15.15},{"x":1568874300000,"y":15.14},{"x":1568874360000,"y":15.15},{"x":1568874420000,"y":15.15},{"x":1568874480000,"y":15.15},{"x":1568874540000,"y":15.15},{"x":1568874600000,"y":15.15},{"x":1568874660000,"y":15.13},{"x":1568874720000,"y":15.13},{"x":1568874780000,"y":15.13},{"x":1568874840000,"y":15.13},{"x":1568874900000,"y":15.16},{"x":1568874960000,"y":15.15},{"x":1568875020000,"y":15.15},{"x":1568875080000,"y":15.15},{"x":1568875140000,"y":15.15},{"x":1568875200000,"y":15.13},{"x":1568875260000,"y":15.16},{"x":1568875320000,"y":15.16},{"x":1568875380000,"y":15.15},{"x":1568875440000,"y":15.15},{"x":1568875500000,"y":15.15},{"x":1568875560000,"y":15.17},{"x":1568875620000,"y":15.15},{"x":1568875680000,"y":15.15},{"x":1568875740000,"y":15.15},{"x":1568875800000,"y":15.15},{"x":1568875860000,"y":15.16},{"x":1568875920000,"y":15.15},{"x":1568875980000,"y":15.15},{"x":1568876040000,"y":15.16},{"x":1568876100000,"y":15.15},{"x":1568876160000,"y":15.17},{"x":1568876220000,"y":15.16},{"x":1568876280000,"y":15.16},{"x":1568876340000,"y":15.14},{"x":1568876400000,"y":15.14},{"x":1568876460000,"y":15.15},{"x":1568876520000,"y":15.13},{"x":1568876580000,"y":15.13},{"x":1568876640000,"y":15.13},{"x":1568876700000,"y":15.13},{"x":1568876760000,"y":15.14},{"x":1568876820000,"y":15.13},{"x":1568876880000,"y":15.13},{"x":1568876940000,"y":15.14},{"x":1568877000000,"y":15.14},{"x":1568877060000,"y":15.14},{"x":1568877120000,"y":15.12},{"x":1568877180000,"y":15.12},{"x":1568877240000,"y":15.13},{"x":1568877300000,"y":15.13},{"x":1568877360000,"y":15.15},{"x":1568877420000,"y":15.13},{"x":1568877480000,"y":15.13},{"x":1568877540000,"y":15.13},{"x":1568877600000,"y":15.12},{"x":1568877660000,"y":15.12},{"x":1568877720000,"y":15.12},{"x":1568877780000,"y":15.1},{"x":1568877840000,"y":15.1},{"x":1568877900000,"y":15.09},{"x":1568877960000,"y":15.09},{"x":1568878020000,"y":15.12},{"x":1568878080000,"y":15.12},{"x":1568878140000,"y":15.12},{"x":1568878200000,"y":15.13},{"x":1568878260000,"y":15.13},{"x":1568878320000,"y":15.15},{"x":1568878380000,"y":15.14},{"x":1568878440000,"y":15.14},{"x":1568878500000,"y":15.14},{"x":1568878560000,"y":15.14},{"x":1568878620000,"y":15.16},{"x":1568878680000,"y":15.14},{"x":1568878740000,"y":15.14},{"x":1568878800000,"y":15.13},{"x":1568878860000,"y":15.13},{"x":1568878920000,"y":15.14},{"x":1568878980000,"y":15.12},{"x":1568879040000,"y":15.12},{"x":1568879100000,"y":15.14},{"x":1568879160000,"y":15.14},{"x":1568879220000,"y":15.15},{"x":1568879280000,"y":15.13},{"x":1568879340000,"y":15.13},{"x":1568879400000,"y":15.14},{"x":1568879460000,"y":15.14},{"x":1568879520000,"y":15.15},{"x":1568879580000,"y":15.14},{"x":1568879640000,"y":15.14},{"x":1568879700000,"y":15.15},{"x":1568879760000,"y":15.15},{"x":1568879820000,"y":15.16},{"x":1568879880000,"y":15.15},{"x":1568879940000,"y":15.15},{"x":1568880000000,"y":15.14},{"x":1568880060000,"y":15.14},{"x":1568880120000,"y":15.14},{"x":1568880180000,"y":15.15},{"x":1568880240000,"y":15.14},{"x":1568880300000,"y":15.14},{"x":1568880360000,"y":15.14},{"x":1568880420000,"y":15.14},{"x":1568880480000,"y":15.16},{"x":1568880540000,"y":15.13},{"x":1568880600000,"y":15.15},{"x":1568880660000,"y":15.15},{"x":1568880720000,"y":15.15},{"x":1568880780000,"y":15.16},{"x":1568880840000,"y":15.14},{"x":1568880900000,"y":15.14},{"x":1568880960000,"y":15.14},{"x":1568881020000,"y":15.14},{"x":1568881080000,"y":15.15},{"x":1568881140000,"y":15.14},{"x":1568881200000,"y":15.14},{"x":1568881260000,"y":15.14},{"x":1568881320000,"y":15.14},{"x":1568881380000,"y":15.15},{"x":1568881440000,"y":15.14},{"x":1568881500000,"y":15.15},{"x":1568881560000,"y":15.15},{"x":1568881620000,"y":15.15},{"x":1568881680000,"y":15.16},{"x":1568881740000,"y":15.15},{"x":1568881800000,"y":15.15},{"x":1568881860000,"y":15.15},{"x":1568881920000,"y":15.15},{"x":1568881980000,"y":15.16},{"x":1568882040000,"y":15.15},{"x":1568882100000,"y":15.15},{"x":1568882160000,"y":15.15},{"x":1568882220000,"y":15.15},{"x":1568882280000,"y":15.16},{"x":1568882340000,"y":15.15},{"x":1568882400000,"y":15.15},{"x":1568882460000,"y":15.15},{"x":1568882520000,"y":15.15},{"x":1568882580000,"y":15.15},{"x":1568882640000,"y":15.15},{"x":1568882700000,"y":15.14},{"x":1568882760000,"y":15.14},{"x":1568882820000,"y":15.14},{"x":1568882880000,"y":15.14},{"x":1568882940000,"y":15.17},{"x":1568883000000,"y":15.12},{"x":1568883060000,"y":15.12},{"x":1568883120000,"y":15.12},{"x":1568883180000,"y":15.12},{"x":1568883240000,"y":15.13},{"x":1568883300000,"y":15.15},{"x":1568883360000,"y":15.15},{"x":1568883420000,"y":15.15},{"x":1568883480000,"y":15.15},{"x":1568883540000,"y":15.16},{"x":1568883600000,"y":15.15},{"x":1568883660000,"y":15.15},{"x":1568883720000,"y":15.15},{"x":1568883780000,"y":15.15},{"x":1568883840000,"y":15.16},{"x":1568883900000,"y":15.15},{"x":1568883960000,"y":15.15},{"x":1568884020000,"y":15.15},{"x":1568884080000,"y":15.14},{"x":1568884140000,"y":15.16},{"x":1568884200000,"y":15.12},{"x":1568884260000,"y":15.12},{"x":1568884320000,"y":15.12},{"x":1568884380000,"y":15.13},{"x":1568884440000,"y":15.14},{"x":1568884500000,"y":15.15},{"x":1568884560000,"y":15.15},{"x":1568884620000,"y":15.15},{"x":1568884680000,"y":15.15},{"x":1568884740000,"y":15.16},{"x":1568884800000,"y":15.16},{"x":1568884860000,"y":15.16},{"x":1568884920000,"y":15.16},{"x":1568884980000,"y":15.16},{"x":1568885040000,"y":15.16},{"x":1568885100000,"y":15.16},{"x":1568885160000,"y":15.15},{"x":1568885220000,"y":15.15},{"x":1568885280000,"y":15.15},{"x":1568885340000,"y":15.15},{"x":1568885400000,"y":15.14},{"x":1568885460000,"y":15.13},{"x":1568885520000,"y":15.13},{"x":1568885580000,"y":15.13},{"x":1568885640000,"y":15.13},{"x":1568885700000,"y":15.15},{"x":1568885760000,"y":15.14},{"x":1568885820000,"y":15.14},{"x":1568885880000,"y":15.14},{"x":1568885940000,"y":15.14},{"x":1568886000000,"y":15.15},{"x":1568886060000,"y":15.14},{"x":1568886120000,"y":15.14},{"x":1568886180000,"y":15.14},{"x":1568886240000,"y":15.14},{"x":1568886300000,"y":15.14},{"x":1568886360000,"y":15.13},{"x":1568886420000,"y":15.12},{"x":1568886480000,"y":15.12},{"x":1568886540000,"y":15.12},{"x":1568886600000,"y":15.13},{"x":1568886660000,"y":15.1},{"x":1568886720000,"y":15.1},{"x":1568886780000,"y":15.1},{"x":1568886840000,"y":15.09},{"x":1568886900000,"y":15.13},{"x":1568886960000,"y":15.14},{"x":1568887020000,"y":15.14},{"x":1568887080000,"y":15.14},{"x":1568887140000,"y":15.14},{"x":1568887200000,"y":15.15},{"x":1568887260000,"y":15.12},{"x":1568887320000,"y":15.12},{"x":1568887380000,"y":15.12},{"x":1568887440000,"y":15.12},{"x":1568887500000,"y":15.37},{"x":1568887560000,"y":15.19},{"x":1568887620000,"y":15.18},{"x":1568887680000,"y":15.18},{"x":1568887740000,"y":15.19},{"x":1568887800000,"y":15.21},{"x":1568887860000,"y":15.15},{"x":1568887920000,"y":15.14},{"x":1568887980000,"y":15.14},{"x":1568888040000,"y":15.14},{"x":1568888100000,"y":15.14},{"x":1568888160000,"y":15.15},{"x":1568888220000,"y":15.13},{"x":1568888280000,"y":15.13},{"x":1568888340000,"y":15.13},{"x":1568888400000,"y":15.14},{"x":1568888460000,"y":15.15},{"x":1568888520000,"y":15.14},{"x":1568888580000,"y":15.14},{"x":1568888640000,"y":15.14},{"x":1568888700000,"y":15.13},{"x":1568888760000,"y":15.15},{"x":1568888820000,"y":15.14},{"x":1568888880000,"y":15.14},{"x":1568888940000,"y":15.14},{"x":1568889000000,"y":15.14},{"x":1568889060000,"y":15.16},{"x":1568889120000,"y":15.14},{"x":1568889180000,"y":15.14},{"x":1568889240000,"y":15.14},{"x":1568889300000,"y":15.14},{"x":1568889360000,"y":15.15},{"x":1568889420000,"y":15.13},{"x":1568889480000,"y":15.13},{"x":1568889540000,"y":15.14},{"x":1568889600000,"y":15.14},{"x":1568889660000,"y":15.15},{"x":1568889720000,"y":15.14},{"x":1568889780000,"y":15.14},{"x":1568889840000,"y":15.14},{"x":1568889900000,"y":15.11},{"x":1568889960000,"y":15.12},{"x":1568890020000,"y":15.13},{"x":1568890080000,"y":15.13},{"x":1568890140000,"y":15.13},{"x":1568890200000,"y":15.11},{"x":1568890260000,"y":15.11},{"x":1568890320000,"y":15.13},{"x":1568890380000,"y":15.12},{"x":1568890440000,"y":15.11},{"x":1568890500000,"y":15.15},{"x":1568890560000,"y":15.15},{"x":1568890620000,"y":15.14},{"x":1568890680000,"y":15.12},{"x":1568890740000,"y":15.12},{"x":1568890800000,"y":15.15},{"x":1568890860000,"y":15.15},{"x":1568890920000,"y":15.16},{"x":1568890980000,"y":15.15},{"x":1568891040000,"y":15.15},{"x":1568891100000,"y":15.14},{"x":1568891160000,"y":15.14},{"x":1568891220000,"y":15.16},{"x":1568891280000,"y":15.15},{"x":1568891340000,"y":15.15},{"x":1568891400000,"y":15.14},{"x":1568891460000,"y":15.14},{"x":1568891520000,"y":15.78},{"x":1568891580000,"y":15.2},{"x":1568891640000,"y":15.21},{"x":1568891700000,"y":15.21},{"x":1568891760000,"y":15.2},{"x":1568891820000,"y":15.22},{"x":1568891880000,"y":15.14},{"x":1568891940000,"y":15.13},{"x":1568892000000,"y":15.13},{"x":1568892060000,"y":15.14},{"x":1568892120000,"y":15.15},{"x":1568892180000,"y":15.14},{"x":1568892240000,"y":15.14},{"x":1568892300000,"y":15.19},{"x":1568892360000,"y":15.1},{"x":1568892420000,"y":15.1},{"x":1568892480000,"y":15.14},{"x":1568892540000,"y":15.13},{"x":1568892600000,"y":15.14},{"x":1568892660000,"y":15.14},{"x":1568892720000,"y":15.15},{"x":1568892780000,"y":15.15},{"x":1568892840000,"y":15.13},{"x":1568892900000,"y":15.14},{"x":1568892960000,"y":15.14},{"x":1568893020000,"y":15.14},{"x":1568893080000,"y":15.15},{"x":1568893140000,"y":15.14},{"x":1568893200000,"y":15.14},{"x":1568893260000,"y":15.14},{"x":1568893320000,"y":15.14},{"x":1568893380000,"y":15.16},{"x":1568893440000,"y":15.14},{"x":1568893500000,"y":15.13},{"x":1568893560000,"y":15.13},{"x":1568893620000,"y":15.13},{"x":1568893680000,"y":15.14},{"x":1568893740000,"y":15.13},{"x":1568893800000,"y":15.14},{"x":1568893860000,"y":15.15},{"x":1568893920000,"y":15.15},{"x":1568893980000,"y":15.15},{"x":1568894040000,"y":15.13},{"x":1568894100000,"y":15.14},{"x":1568894160000,"y":15.14},{"x":1568894220000,"y":15.14},{"x":1568894280000,"y":15.15},{"x":1568894340000,"y":15.14},{"x":1568894400000,"y":15.13},{"x":1568894460000,"y":15.11},{"x":1568894520000,"y":15.11},{"x":1568894580000,"y":15.13},{"x":1568894640000,"y":15.11},{"x":1568894700000,"y":15.11},{"x":1568894760000,"y":15.11},{"x":1568894820000,"y":15.11},{"x":1568894880000,"y":15.11},{"x":1568894940000,"y":15.13},{"x":1568895000000,"y":15.11},{"x":1568895060000,"y":15.11},{"x":1568895120000,"y":15.11},{"x":1568895180000,"y":15.11},{"x":1568895240000,"y":15.13},{"x":1568895300000,"y":15.09},{"x":1568895360000,"y":15.09},{"x":1568895420000,"y":15.08},{"x":1568895480000,"y":15.08},{"x":1568895540000,"y":15.13},{"x":1568895600000,"y":15.11},{"x":1568895660000,"y":15.11},{"x":1568895720000,"y":15.11},{"x":1568895780000,"y":15.11},{"x":1568895840000,"y":15.13},{"x":1568895900000,"y":15.12},{"x":1568895960000,"y":15.12},{"x":1568896020000,"y":15.12},{"x":1568896080000,"y":15.12},{"x":1568896140000,"y":15.13},{"x":1568896200000,"y":15.12},{"x":1568896260000,"y":15.12},{"x":1568896320000,"y":15.12},{"x":1568896380000,"y":15.12},{"x":1568896440000,"y":15.13},{"x":1568896500000,"y":15.12},{"x":1568896560000,"y":15.13},{"x":1568896620000,"y":15.13},{"x":1568896680000,"y":15.12},{"x":1568896740000,"y":15.12},{"x":1568896800000,"y":15.13},{"x":1568896860000,"y":15.12},{"x":1568896920000,"y":15.12},{"x":1568896980000,"y":15.12},{"x":1568897040000,"y":15.11},{"x":1568897100000,"y":15.12},{"x":1568897160000,"y":15.11},{"x":1568897220000,"y":15.11},{"x":1568897280000,"y":15.11},{"x":1568897340000,"y":15.11},{"x":1568897400000,"y":15.13},{"x":1568897460000,"y":15.12},{"x":1568897520000,"y":15.12},{"x":1568897580000,"y":15.11},{"x":1568897640000,"y":15.11},{"x":1568897700000,"y":15.14},{"x":1568897760000,"y":15.13},{"x":1568897820000,"y":15.13},{"x":1568897880000,"y":15.12},{"x":1568897940000,"y":15.12},{"x":1568898000000,"y":15.12},{"x":1568898060000,"y":15.12},{"x":1568898120000,"y":15.12},{"x":1568898180000,"y":15.12},{"x":1568898240000,"y":15.12},{"x":1568898300000,"y":15.13},{"x":1568898360000,"y":15.12},{"x":1568898420000,"y":15.12},{"x":1568898480000,"y":15.13},{"x":1568898540000,"y":15.13},{"x":1568898600000,"y":15.15},{"x":1568898660000,"y":15.13},{"x":1568898720000,"y":15.13},{"x":1568898780000,"y":15.13},{"x":1568898840000,"y":15.13},{"x":1568898900000,"y":15.14},{"x":1568898960000,"y":15.13},{"x":1568899020000,"y":15.13},{"x":1568899080000,"y":15.13},{"x":1568899140000,"y":15.13},{"x":1568899200000,"y":15.14},{"x":1568899260000,"y":15.13},{"x":1568899320000,"y":15.13},{"x":1568899380000,"y":15.13},{"x":1568899440000,"y":15.13},{"x":1568899500000,"y":15.13},{"x":1568899560000,"y":15.14},{"x":1568899620000,"y":15.13},{"x":1568899680000,"y":15.13},{"x":1568899740000,"y":15.13},{"x":1568899800000,"y":15.14},{"x":1568899860000,"y":15.15},{"x":1568899920000,"y":15.13},{"x":1568899980000,"y":15.13},{"x":1568900040000,"y":15.13},{"x":1568900100000,"y":15.12},{"x":1568900160000,"y":15.14},{"x":1568900220000,"y":15.14},{"x":1568900280000,"y":15.13},{"x":1568900340000,"y":15.14},{"x":1568900400000,"y":15.14},{"x":1568900460000,"y":15.15},{"x":1568900520000,"y":15.14},{"x":1568900580000,"y":15.14},{"x":1568900640000,"y":15.14},{"x":1568900700000,"y":15.13},{"x":1568900760000,"y":15.15},{"x":1568900820000,"y":15.13},{"x":1568900880000,"y":15.13},{"x":1568900940000,"y":15.14},{"x":1568901000000,"y":15.13},{"x":1568901060000,"y":15.14},{"x":1568901120000,"y":15.14},{"x":1568901180000,"y":15.14},{"x":1568901240000,"y":15.14},{"x":1568901300000,"y":15.13},{"x":1568901360000,"y":15.14},{"x":1568901420000,"y":15.14},{"x":1568901480000,"y":15.13},{"x":1568901540000,"y":15.13},{"x":1568901600000,"y":15.14},{"x":1568901660000,"y":15.14},{"x":1568901720000,"y":15.15},{"x":1568901780000,"y":15.14},{"x":1568901840000,"y":15.14},{"x":1568901900000,"y":15.15},{"x":1568901960000,"y":15.15},{"x":1568902020000,"y":15.15},{"x":1568902080000,"y":15.14},{"x":1568902140000,"y":15.13},{"x":1568902200000,"y":15.13},{"x":1568902260000,"y":15.14},{"x":1568902320000,"y":15.13},{"x":1568902380000,"y":15.12},{"x":1568902440000,"y":15.12},{"x":1568902500000,"y":15.14},{"x":1568902560000,"y":15.14},{"x":1568902620000,"y":15.15},{"x":1568902680000,"y":15.13},{"x":1568902740000,"y":15.13},{"x":1568902800000,"y":15.13},{"x":1568902860000,"y":15.13},{"x":1568902920000,"y":15.15},{"x":1568902980000,"y":15.14},{"x":1568903040000,"y":15.14},{"x":1568903100000,"y":15.15},{"x":1568903160000,"y":15.15},{"x":1568903220000,"y":15.15},{"x":1568903280000,"y":15.13},{"x":1568903340000,"y":15.13},{"x":1568903400000,"y":15.14},{"x":1568903460000,"y":15.12},{"x":1568903520000,"y":15.12},{"x":1568903580000,"y":15.11},{"x":1568903640000,"y":15.12},{"x":1568903700000,"y":15.1},{"x":1568903760000,"y":15.1},{"x":1568903820000,"y":15.11},{"x":1568903880000,"y":15.12},{"x":1568903940000,"y":15.12},{"x":1568904000000,"y":15.11},{"x":1568904060000,"y":15.11},{"x":1568904120000,"y":15.11},{"x":1568904180000,"y":15.12},{"x":1568904240000,"y":15.11},{"x":1568904300000,"y":15.12},{"x":1568904360000,"y":15.12},{"x":1568904420000,"y":15.12},{"x":1568904480000,"y":15.13},{"x":1568904540000,"y":15.12},{"x":1568904600000,"y":15.11},{"x":1568904660000,"y":15.11},{"x":1568904720000,"y":15.11},{"x":1568904780000,"y":15.13},{"x":1568904840000,"y":15.11},{"x":1568904900000,"y":15.11},{"x":1568904960000,"y":15.11},{"x":1568905020000,"y":15.11},{"x":1568905080000,"y":15.12},{"x":1568905140000,"y":15.12},{"x":1568905200000,"y":15.12},{"x":1568905260000,"y":15.12},{"x":1568905320000,"y":15.12},{"x":1568905380000,"y":15.13},{"x":1568905440000,"y":15.13},{"x":1568905500000,"y":15.12},{"x":1568905560000,"y":15.12},{"x":1568905620000,"y":15.12},{"x":1568905680000,"y":15.13},{"x":1568905740000,"y":15.12},{"x":1568905800000,"y":15.12},{"x":1568905860000,"y":15.12},{"x":1568905920000,"y":15.12},{"x":1568905980000,"y":15.13},{"x":1568906040000,"y":15.13},{"x":1568906100000,"y":15.13},{"x":1568906160000,"y":15.13},{"x":1568906220000,"y":15.13},{"x":1568906280000,"y":15.13},{"x":1568906340000,"y":15.15},{"x":1568906400000,"y":15.13},{"x":1568906460000,"y":15.13},{"x":1568906520000,"y":15.13},{"x":1568906580000,"y":15.13},{"x":1568906640000,"y":15.14},{"x":1568906700000,"y":15.12},{"x":1568906760000,"y":15.12},{"x":1568906820000,"y":15.12},{"x":1568906880000,"y":15.12},{"x":1568906940000,"y":15.13},{"x":1568907000000,"y":15.13},{"x":1568907060000,"y":15.13},{"x":1568907120000,"y":15.13},{"x":1568907180000,"y":15.13},{"x":1568907240000,"y":15.14},{"x":1568907300000,"y":15.13},{"x":1568907360000,"y":15.13},{"x":1568907420000,"y":15.13},{"x":1568907480000,"y":15.13},{"x":1568907540000,"y":15.15},{"x":1568907600000,"y":15.13},{"x":1568907660000,"y":15.14},{"x":1568907720000,"y":15.14},{"x":1568907780000,"y":15.14},{"x":1568907840000,"y":15.14},{"x":1568907900000,"y":15.13},{"x":1568907960000,"y":15.13},{"x":1568908020000,"y":15.13},{"x":1568908080000,"y":15.13},{"x":1568908140000,"y":15.14},{"x":1568908200000,"y":15.11},{"x":1568908260000,"y":15.11},{"x":1568908320000,"y":15.12},{"x":1568908380000,"y":15.12},{"x":1568908440000,"y":15.12},{"x":1568908500000,"y":15.13},{"x":1568908560000,"y":15.12},{"x":1568908620000,"y":15.12},{"x":1568908680000,"y":15.12},{"x":1568908740000,"y":15.12},{"x":1568908800000,"y":15.14},{"x":1568908860000,"y":15.13},{"x":1568908920000,"y":15.13},{"x":1568908980000,"y":15.14},{"x":1568909040000,"y":15.14},{"x":1568909100000,"y":15.15},{"x":1568909160000,"y":15.14},{"x":1568909220000,"y":15.13},{"x":1568909280000,"y":15.13},{"x":1568909340000,"y":15.14},{"x":1568909400000,"y":15.46},{"x":1568909460000,"y":15.2},{"x":1568909520000,"y":15.2},{"x":1568909580000,"y":15.2},{"x":1568909640000,"y":15.2},{"x":1568909700000,"y":15.18},{"x":1568909760000,"y":15.15},{"x":1568909820000,"y":15.15},{"x":1568909880000,"y":15.15},{"x":1568909940000,"y":15.15},{"x":1568910000000,"y":15.15},{"x":1568910060000,"y":15.14},{"x":1568910120000,"y":15.15},{"x":1568910180000,"y":15.15},{"x":1568910240000,"y":15.15},{"x":1568910300000,"y":15.15},{"x":1568910360000,"y":15.14},{"x":1568910420000,"y":15.14},{"x":1568910480000,"y":15.14},{"x":1568910540000,"y":15.14},{"x":1568910600000,"y":15.14},{"x":1568910660000,"y":15.16},{"x":1568910720000,"y":15.14},{"x":1568910780000,"y":15.14},{"x":1568910840000,"y":15.14},{"x":1568910900000,"y":15.14},{"x":1568910960000,"y":15.16},{"x":1568911020000,"y":15.14},{"x":1568911080000,"y":15.14},{"x":1568911140000,"y":15.13},{"x":1568911200000,"y":15.14},{"x":1568911260000,"y":15.15},{"x":1568911320000,"y":15.14},{"x":1568911380000,"y":15.14},{"x":1568911440000,"y":15.14},{"x":1568911500000,"y":15.14},{"x":1568911560000,"y":15.15},{"x":1568911620000,"y":15.14},{"x":1568911680000,"y":15.14},{"x":1568911740000,"y":15.14},{"x":1568911800000,"y":15.11},{"x":1568911860000,"y":15.13},{"x":1568911920000,"y":15.14},{"x":1568911980000,"y":15.14},{"x":1568912040000,"y":15.14},{"x":1568912100000,"y":15.14},{"x":1568912160000,"y":15.15},{"x":1568912220000,"y":15.14},{"x":1568912280000,"y":15.14},{"x":1568912340000,"y":15.14},{"x":1568912400000,"y":15.13},{"x":1568912460000,"y":15.14},{"x":1568912520000,"y":15.12},{"x":1568912580000,"y":15.12},{"x":1568912640000,"y":15.12},{"x":1568912700000,"y":15.13},{"x":1568912760000,"y":15.14},{"x":1568912820000,"y":15.12},{"x":1568912880000,"y":15.12},{"x":1568912940000,"y":15.12},{"x":1568913000000,"y":15.12},{"x":1568913060000,"y":15.12},{"x":1568913120000,"y":15.13},{"x":1568913180000,"y":15.12},{"x":1568913240000,"y":15.12},{"x":1568913300000,"y":15.12},{"x":1568913360000,"y":15.12},{"x":1568913420000,"y":15.14},{"x":1568913480000,"y":15.12},{"x":1568913540000,"y":15.12},{"x":1568913600000,"y":15.12},{"x":1568913660000,"y":15.11},{"x":1568913720000,"y":15.13},{"x":1568913780000,"y":15.13},{"x":1568913840000,"y":15.13},{"x":1568913900000,"y":15.12},{"x":1568913960000,"y":15.13},{"x":1568914020000,"y":15.14},{"x":1568914080000,"y":15.13},{"x":1568914140000,"y":15.13},{"x":1568914200000,"y":15.13},{"x":1568914260000,"y":15.13},{"x":1568914320000,"y":15.13},{"x":1568914380000,"y":15.11},{"x":1568914440000,"y":15.11},{"x":1568914500000,"y":15.11},{"x":1568914560000,"y":15.1},{"x":1568914620000,"y":15.12},{"x":1568914680000,"y":15.13},{"x":1568914740000,"y":15.11},{"x":1568914800000,"y":15.12},{"x":1568914860000,"y":15.12},{"x":1568914920000,"y":15.13},{"x":1568914980000,"y":15.11},{"x":1568915040000,"y":15.09},{"x":1568915100000,"y":15.12},{"x":1568915160000,"y":15.12},{"x":1568915220000,"y":15.11},{"x":1568915280000,"y":15.12},{"x":1568915340000,"y":15.12},{"x":1568915400000,"y":15.11},{"x":1568915460000,"y":15.11},{"x":1568915520000,"y":15.11},{"x":1568915580000,"y":15.13},{"x":1568915640000,"y":15.12},{"x":1568915700000,"y":15.14},{"x":1568915760000,"y":15.14},{"x":1568915820000,"y":15.14},{"x":1568915880000,"y":15.14},{"x":1568915940000,"y":15.13},{"x":1568916000000,"y":15.11},{"x":1568916060000,"y":15.11},{"x":1568916120000,"y":15.11},{"x":1568916180000,"y":15.13},{"x":1568916240000,"y":15.14},{"x":1568916300000,"y":15.2},{"x":1568916360000,"y":15.2},{"x":1568916420000,"y":15.2},{"x":1568916480000,"y":15.21},{"x":1568916540000,"y":15.22},{"x":1568916600000,"y":21.84},{"x":1568916660000,"y":15.31},{"x":1568916720000,"y":15.31},{"x":1568916780000,"y":15.33},{"x":1568916840000,"y":15.35},{"x":1568916900000,"y":15.36},{"x":1568916960000,"y":15.36},{"x":1568917020000,"y":15.36},{"x":1568917080000,"y":15.38},{"x":1568917140000,"y":15.38},{"x":1568917200000,"y":15.37},{"x":1568917260000,"y":15.37},{"x":1568917320000,"y":15.37},{"x":1568917380000,"y":15.38},{"x":1568917440000,"y":15.38},{"x":1568917500000,"y":15.37},{"x":1568917560000,"y":15.37},{"x":1568917620000,"y":15.37},{"x":1568917680000,"y":15.37},{"x":1568917740000,"y":15.39},{"x":1568917800000,"y":15.37},{"x":1568917860000,"y":15.37},{"x":1568917920000,"y":15.37},{"x":1568917980000,"y":15.37},{"x":1568918040000,"y":15.38},{"x":1568918100000,"y":15.38},{"x":1568918160000,"y":15.38},{"x":1568918220000,"y":15.37},{"x":1568918280000,"y":15.38},{"x":1568918340000,"y":15.4},{"x":1568918400000,"y":15.3},{"x":1568918460000,"y":15.29},{"x":1568918520000,"y":28.23},{"x":1568918580000,"y":25.86},{"x":1568918640000,"y":16.6},{"x":1568918700000,"y":16.61},{"x":1568918760000,"y":16.61},{"x":1568918820000,"y":16.6},{"x":1568918880000,"y":19.25},{"x":1568918940000,"y":29.55},{"x":1568919000000,"y":30.17},{"x":1568919060000,"y":17.41},{"x":1568919120000,"y":16.56},{"x":1568919180000,"y":27.85},{"x":1568919240000,"y":22.17},{"x":1568919300000,"y":16.61},{"x":1568919360000,"y":29.4},{"x":1568919420000,"y":24.34},{"x":1568919480000,"y":16.55},{"x":1568919540000,"y":22.03},{"x":1568919600000,"y":29.39},{"x":1568919660000,"y":18.04},{"x":1568919720000,"y":20.79},{"x":1568919780000,"y":29.22},{"x":1568919840000,"y":19.12},{"x":1568919900000,"y":16.57},{"x":1568919960000,"y":16.57},{"x":1568920020000,"y":24.66},{"x":1568920080000,"y":24.41},{"x":1568920140000,"y":26.14},{"x":1568920200000,"y":29.32},{"x":1568920260000,"y":19.98},{"x":1568920320000,"y":16.53},{"x":1568920380000,"y":16.84},{"x":1568920440000,"y":30.1},{"x":1568920500000,"y":27.46},{"x":1568920560000,"y":16.58},{"x":1568920620000,"y":16.58},{"x":1568920680000,"y":16.57},{"x":1568920740000,"y":16.56},{"x":1568920800000,"y":16.59},{"x":1568920860000,"y":16.58},{"x":1568920920000,"y":16.59},{"x":1568920980000,"y":16.59},{"x":1568921040000,"y":21.61},{"x":1568921100000,"y":30.05},{"x":1568921160000,"y":16.85},{"x":1568921220000,"y":16.62},{"x":1568921280000,"y":21.73},{"x":1568921340000,"y":30.11},{"x":1568921400000,"y":18.7},{"x":1568921460000,"y":16.66},{"x":1568921520000,"y":16.66},{"x":1568921580000,"y":16.66},{"x":1568921640000,"y":16.66},{"x":1568921700000,"y":16.66},{"x":1568921760000,"y":16.65},{"x":1568921820000,"y":16.64},{"x":1568921880000,"y":16.63},{"x":1568921940000,"y":16.64},{"x":1568922000000,"y":16.67},{"x":1568922060000,"y":16.65},{"x":1568922120000,"y":16.65},{"x":1568922180000,"y":16.65},{"x":1568922240000,"y":16.67},{"x":1568922300000,"y":16.72},{"x":1568922360000,"y":16.74},{"x":1568922420000,"y":16.7},{"x":1568922480000,"y":16.7},{"x":1568922540000,"y":16.7},{"x":1568922600000,"y":16.66},{"x":1568922660000,"y":28.02},{"x":1568922720000,"y":21.61},{"x":1568922780000,"y":22.97},{"x":1568922840000,"y":26.48},{"x":1568922900000,"y":16.7},{"x":1568922960000,"y":16.71},{"x":1568923020000,"y":16.7},{"x":1568923080000,"y":28.37},{"x":1568923140000,"y":28.6},{"x":1568923200000,"y":27.2},{"x":1568923260000,"y":21.19},{"x":1568923320000,"y":29.68},{"x":1568923380000,"y":17.33},{"x":1568923440000,"y":16.67},{"x":1568923500000,"y":16.71},{"x":1568923560000,"y":16.72},{"x":1568923620000,"y":16.71},{"x":1568923680000,"y":16.68},{"x":1568923740000,"y":16.7},{"x":1568923800000,"y":16.7},{"x":1568923860000,"y":16.7},{"x":1568923920000,"y":16.72},{"x":1568923980000,"y":16.71},{"x":1568924040000,"y":16.71},{"x":1568924100000,"y":16.71},{"x":1568924160000,"y":16.71},{"x":1568924220000,"y":16.72},{"x":1568924280000,"y":16.71},{"x":1568924340000,"y":16.7},{"x":1568924400000,"y":16.69},{"x":1568924460000,"y":16.69},{"x":1568924520000,"y":16.69},{"x":1568924580000,"y":16.67},{"x":1568924640000,"y":16.67},{"x":1568924700000,"y":16.67},{"x":1568924760000,"y":16.67},{"x":1568924820000,"y":16.71},{"x":1568924880000,"y":16.71},{"x":1568924940000,"y":16.71},{"x":1568925000000,"y":16.7},{"x":1568925060000,"y":16.7},{"x":1568925120000,"y":16.72},{"x":1568925180000,"y":16.71},{"x":1568925240000,"y":16.71},{"x":1568925300000,"y":16.71},{"x":1568925360000,"y":16.71},{"x":1568925420000,"y":16.7},{"x":1568925480000,"y":16.7},{"x":1568925540000,"y":16.7},{"x":1568925600000,"y":16.71},{"x":1568925660000,"y":16.7},{"x":1568925720000,"y":16.71},{"x":1568925780000,"y":16.7},{"x":1568925840000,"y":16.7},{"x":1568925900000,"y":16.72},{"x":1568925960000,"y":16.72},{"x":1568926020000,"y":16.72},{"x":1568926080000,"y":16.72},{"x":1568926140000,"y":16.71},{"x":1568926200000,"y":16.7},{"x":1568926260000,"y":16.7},{"x":1568926320000,"y":16.7},{"x":1568926380000,"y":16.73},{"x":1568926440000,"y":16.72},{"x":1568926500000,"y":16.71},{"x":1568926560000,"y":16.69},{"x":1568926620000,"y":16.69},{"x":1568926680000,"y":16.7},{"x":1568926740000,"y":16.7},{"x":1568926800000,"y":16.7},{"x":1568926860000,"y":16.7},{"x":1568926920000,"y":16.7},{"x":1568926980000,"y":16.71},{"x":1568927040000,"y":16.71},{"x":1568927100000,"y":16.72},{"x":1568927160000,"y":16.72},{"x":1568927220000,"y":16.72},{"x":1568927280000,"y":16.74},{"x":1568927340000,"y":16.72},{"x":1568927400000,"y":16.72},{"x":1568927460000,"y":16.72},{"x":1568927520000,"y":16.72},{"x":1568927580000,"y":16.74},{"x":1568927640000,"y":16.71},{"x":1568927700000,"y":16.7},{"x":1568927760000,"y":16.7},{"x":1568927820000,"y":16.7},{"x":1568927880000,"y":16.71},{"x":1568927940000,"y":16.71},{"x":1568928000000,"y":16.71},{"x":1568928060000,"y":16.71},{"x":1568928120000,"y":16.71},{"x":1568928180000,"y":16.71},{"x":1568928240000,"y":16.72},{"x":1568928300000,"y":16.68},{"x":1568928360000,"y":16.67},{"x":1568928420000,"y":16.68},{"x":1568928480000,"y":16.68},{"x":1568928540000,"y":16.71},{"x":1568928600000,"y":16.71},{"x":1568928660000,"y":16.71},{"x":1568928720000,"y":16.71},{"x":1568928780000,"y":16.7},{"x":1568928840000,"y":16.72},{"x":1568928900000,"y":16.71},{"x":1568928960000,"y":16.7},{"x":1568929020000,"y":16.7},{"x":1568929080000,"y":16.7},{"x":1568929140000,"y":16.72},{"x":1568929200000,"y":16.7},{"x":1568929260000,"y":16.7},{"x":1568929320000,"y":16.7},{"x":1568929380000,"y":16.7},{"x":1568929440000,"y":16.72},{"x":1568929500000,"y":16.71},{"x":1568929560000,"y":16.71},{"x":1568929620000,"y":16.71},{"x":1568929680000,"y":16.71},{"x":1568929740000,"y":16.73},{"x":1568929800000,"y":16.73},{"x":1568929860000,"y":16.73},{"x":1568929920000,"y":16.73},{"x":1568929980000,"y":16.72},{"x":1568930040000,"y":16.72},{"x":1568930100000,"y":16.72},{"x":1568930160000,"y":16.72},{"x":1568930220000,"y":16.72},{"x":1568930280000,"y":16.72},{"x":1568930340000,"y":16.72},{"x":1568930400000,"y":16.73},{"x":1568930460000,"y":16.72},{"x":1568930520000,"y":16.71},{"x":1568930580000,"y":16.72},{"x":1568930640000,"y":16.72},{"x":1568930700000,"y":16.73},{"x":1568930760000,"y":16.72},{"x":1568930820000,"y":16.72},{"x":1568930880000,"y":16.72},{"x":1568930940000,"y":16.71},{"x":1568931000000,"y":16.72},{"x":1568931060000,"y":16.72},{"x":1568931120000,"y":16.72},{"x":1568931180000,"y":16.71},{"x":1568931240000,"y":16.69},{"x":1568931300000,"y":16.89},{"x":1568931360000,"y":16.76},{"x":1568931420000,"y":16.75},{"x":1568931480000,"y":16.75},{"x":1568931540000,"y":16.75},{"x":1568931600000,"y":16.74},{"x":1568931660000,"y":16.7},{"x":1568931720000,"y":16.7},{"x":1568931780000,"y":16.7},{"x":1568931840000,"y":16.7},{"x":1568931900000,"y":16.71},{"x":1568931960000,"y":16.69},{"x":1568932020000,"y":16.69},{"x":1568932080000,"y":16.69},{"x":1568932140000,"y":16.69},{"x":1568932200000,"y":16.69},{"x":1568932260000,"y":16.69},{"x":1568932320000,"y":16.68},{"x":1568932380000,"y":16.6},{"x":1568932440000,"y":16.62},{"x":1568932500000,"y":22.84},{"x":1568932560000,"y":27.42},{"x":1568932620000,"y":16.6},{"x":1568932680000,"y":16.6},{"x":1568932740000,"y":16.65},{"x":1568932800000,"y":16.66},{"x":1568932860000,"y":16.67},{"x":1568932920000,"y":16.66},{"x":1568932980000,"y":16.66},{"x":1568933040000,"y":16.66},{"x":1568933100000,"y":16.67},{"x":1568933160000,"y":16.67},{"x":1568933220000,"y":16.66},{"x":1568933280000,"y":16.66},{"x":1568933340000,"y":16.66},{"x":1568933400000,"y":16.66},{"x":1568933460000,"y":16.66},{"x":1568933520000,"y":16.65},{"x":1568933580000,"y":16.65},{"x":1568933640000,"y":16.65},{"x":1568933700000,"y":16.66},{"x":1568933760000,"y":16.67},{"x":1568933820000,"y":21.85},{"x":1568933880000,"y":15.17},{"x":1568933940000,"y":15.12},{"x":1568934000000,"y":15.15},{"x":1568934060000,"y":15.16},{"x":1568934120000,"y":15.15},{"x":1568934180000,"y":15.15},{"x":1568934240000,"y":15.15},{"x":1568934300000,"y":15.16},{"x":1568934360000,"y":15.17},{"x":1568934420000,"y":15.17},{"x":1568934480000,"y":15.17},{"x":1568934540000,"y":15.17},{"x":1568934600000,"y":15.16},{"x":1568934660000,"y":15.16},{"x":1568934720000,"y":15.17},{"x":1568934780000,"y":15.16},{"x":1568934840000,"y":15.16},{"x":1568934900000,"y":15.15},{"x":1568934960000,"y":15.15},{"x":1568935020000,"y":15.17},{"x":1568935080000,"y":15.16},{"x":1568935140000,"y":15.16},{"x":1568935200000,"y":15.17},{"x":1568935260000,"y":15.17},{"x":1568935320000,"y":15.18},{"x":1568935380000,"y":15.17},{"x":1568935440000,"y":15.17},{"x":1568935500000,"y":15.16},{"x":1568935560000,"y":15.16},{"x":1568935620000,"y":15.17},{"x":1568935680000,"y":15.17},{"x":1568935740000,"y":15.17},{"x":1568935800000,"y":15.17},{"x":1568935860000,"y":15.17},{"x":1568935920000,"y":15.18},{"x":1568935980000,"y":15.16},{"x":1568936040000,"y":15.16},{"x":1568936100000,"y":15.16},{"x":1568936160000,"y":15.16},{"x":1568936220000,"y":15.17},{"x":1568936280000,"y":15.17},{"x":1568936340000,"y":15.18},{"x":1568936400000,"y":15.17},{"x":1568936460000,"y":15.17},{"x":1568936520000,"y":15.18},{"x":1568936580000,"y":15.17},{"x":1568936640000,"y":15.17},{"x":1568936700000,"y":15.16},{"x":1568936760000,"y":15.16},{"x":1568936820000,"y":15.17},{"x":1568936880000,"y":15.17},{"x":1568936940000,"y":15.17},{"x":1568937000000,"y":15.17},{"x":1568937060000,"y":15.17},{"x":1568937120000,"y":15.17},{"x":1568937180000,"y":15.18},{"x":1568937240000,"y":15.17},{"x":1568937300000,"y":15.17},{"x":1568937360000,"y":15.18},{"x":1568937420000,"y":15.18},{"x":1568937480000,"y":15.18},{"x":1568937540000,"y":15.17},{"x":1568937600000,"y":15.18},{"x":1568937660000,"y":15.18},{"x":1568937720000,"y":15.18},{"x":1568937780000,"y":15.19},{"x":1568937840000,"y":15.17},{"x":1568937900000,"y":15.17},{"x":1568937960000,"y":15.17},{"x":1568938020000,"y":15.17},{"x":1568938080000,"y":15.2},{"x":1568938140000,"y":15.18},{"x":1568938200000,"y":15.18},{"x":1568938260000,"y":15.18},{"x":1568938320000,"y":15.18},{"x":1568938380000,"y":15.2},{"x":1568938440000,"y":15.17},{"x":1568938500000,"y":15.17},{"x":1568938560000,"y":15.17},{"x":1568938620000,"y":15.17},{"x":1568938680000,"y":15.18},{"x":1568938740000,"y":15.17},{"x":1568938800000,"y":15.18},{"x":1568938860000,"y":15.18},{"x":1568938920000,"y":15.18},{"x":1568938980000,"y":15.18},{"x":1568939040000,"y":15.19},{"x":1568939100000,"y":15.17},{"x":1568939160000,"y":15.17},{"x":1568939220000,"y":15.17},{"x":1568939280000,"y":15.17},{"x":1568939340000,"y":15.18},{"x":1568939400000,"y":15.18},{"x":1568939460000,"y":15.18},{"x":1568939520000,"y":15.18},{"x":1568939580000,"y":15.18},{"x":1568939640000,"y":15.19},{"x":1568939700000,"y":15.13},{"x":1568939760000,"y":15.13},{"x":1568939820000,"y":15.13},{"x":1568939880000,"y":15.13},{"x":1568939940000,"y":15.18},{"x":1568940000000,"y":15.17},{"x":1568940060000,"y":15.17},{"x":1568940120000,"y":15.17},{"x":1568940180000,"y":15.17},{"x":1568940240000,"y":15.16},{"x":1568940300000,"y":15.14},{"x":1568940360000,"y":15.14},{"x":1568940420000,"y":15.14},{"x":1568940480000,"y":15.14},{"x":1568940540000,"y":15.16},{"x":1568940600000,"y":15.16},{"x":1568940660000,"y":15.16},{"x":1568940720000,"y":15.16},{"x":1568940780000,"y":15.16},{"x":1568940840000,"y":15.16},{"x":1568940900000,"y":15.16},{"x":1568940960000,"y":15.15},{"x":1568941020000,"y":15.15},{"x":1568941080000,"y":15.15},{"x":1568941140000,"y":15.15},{"x":1568941200000,"y":15.17},{"x":1568941260000,"y":15.16},{"x":1568941320000,"y":15.16},{"x":1568941380000,"y":15.16},{"x":1568941440000,"y":15.16},{"x":1568941500000,"y":15.16},{"x":1568941560000,"y":15.16},{"x":1568941620000,"y":15.16},{"x":1568941680000,"y":15.16},{"x":1568941740000,"y":15.17},{"x":1568941800000,"y":15.17},{"x":1568941860000,"y":15.16},{"x":1568941920000,"y":15.16},{"x":1568941980000,"y":15.16},{"x":1568942040000,"y":15.16},{"x":1568942100000,"y":15.16},{"x":1568942160000,"y":15.15},{"x":1568942220000,"y":15.15},{"x":1568942280000,"y":15.15},{"x":1568942340000,"y":15.15},{"x":1568942400000,"y":15.19},{"x":1568942460000,"y":15.17},{"x":1568942520000,"y":15.17},{"x":1568942580000,"y":15.17},{"x":1568942640000,"y":15.17},{"x":1568942700000,"y":15.17},{"x":1568942760000,"y":15.17},{"x":1568942820000,"y":15.16},{"x":1568942880000,"y":15.16},{"x":1568942940000,"y":15.16},{"x":1568943000000,"y":15.16},{"x":1568943060000,"y":15.17},{"x":1568943120000,"y":15.16},{"x":1568943180000,"y":15.16},{"x":1568943240000,"y":15.16},{"x":1568943300000,"y":15.16},{"x":1568943360000,"y":15.18},{"x":1568943420000,"y":15.18},{"x":1568943480000,"y":15.17},{"x":1568943540000,"y":15.16},{"x":1568943600000,"y":15.17},{"x":1568943660000,"y":15.18},{"x":1568943720000,"y":15.17},{"x":1568943780000,"y":15.17},{"x":1568943840000,"y":15.17},{"x":1568943900000,"y":15.17},{"x":1568943960000,"y":15.18},{"x":1568944020000,"y":15.17},{"x":1568944080000,"y":15.17},{"x":1568944140000,"y":15.17},{"x":1568944200000,"y":15.16},{"x":1568944260000,"y":15.16},{"x":1568944320000,"y":15.15},{"x":1568944380000,"y":15.15},{"x":1568944440000,"y":15.15},{"x":1568944500000,"y":15.16},{"x":1568944560000,"y":15.17},{"x":1568944620000,"y":15.17},{"x":1568944680000,"y":15.17},{"x":1568944740000,"y":15.17},{"x":1568944800000,"y":15.17},{"x":1568944860000,"y":15.17},{"x":1568944920000,"y":15.18},{"x":1568944980000,"y":15.17},{"x":1568945040000,"y":15.17},{"x":1568945100000,"y":15.17},{"x":1568945160000,"y":15.18},{"x":1568945220000,"y":15.18},{"x":1568945280000,"y":15.17},{"x":1568945340000,"y":15.16},{"x":1568945400000,"y":15.15},{"x":1568945460000,"y":15.15},{"x":1568945520000,"y":15.18},{"x":1568945580000,"y":15.17},{"x":1568945640000,"y":15.17},{"x":1568945700000,"y":15.17},{"x":1568945760000,"y":15.17},{"x":1568945820000,"y":15.18},{"x":1568945880000,"y":15.17},{"x":1568945940000,"y":15.17},{"x":1568946000000,"y":15.17},{"x":1568946060000,"y":15.17},{"x":1568946120000,"y":15.18},{"x":1568946180000,"y":15.17},{"x":1568946240000,"y":15.17},{"x":1568946300000,"y":15.16},{"x":1568946360000,"y":15.17},{"x":1568946420000,"y":15.18},{"x":1568946480000,"y":15.16},{"x":1568946540000,"y":15.16},{"x":1568946600000,"y":15.16},{"x":1568946660000,"y":15.16},{"x":1568946720000,"y":15.18},{"x":1568946780000,"y":15.17},{"x":1568946840000,"y":15.17},{"x":1568946900000,"y":15.18},{"x":1568946960000,"y":15.18},{"x":1568947020000,"y":15.18},{"x":1568947080000,"y":15.19},{"x":1568947140000,"y":15.18},{"x":1568947200000,"y":15.17},{"x":1568947260000,"y":15.17},{"x":1568947320000,"y":15.17},{"x":1568947380000,"y":15.18},{"x":1568947440000,"y":15.17},{"x":1568947500000,"y":15.17},{"x":1568947560000,"y":15.17},{"x":1568947620000,"y":15.17},{"x":1568947680000,"y":15.19},{"x":1568947740000,"y":15.18},{"x":1568947800000,"y":15.17},{"x":1568947860000,"y":15.16},{"x":1568947920000,"y":15.16},{"x":1568947980000,"y":15.19},{"x":1568948040000,"y":15.18},{"x":1568948100000,"y":15.18},{"x":1568948160000,"y":15.18},{"x":1568948220000,"y":15.18},{"x":1568948280000,"y":15.19},{"x":1568948340000,"y":15.18},{"x":1568948400000,"y":15.16},{"x":1568948460000,"y":15.15},{"x":1568948520000,"y":15.15},{"x":1568948580000,"y":15.17},{"x":1568948640000,"y":15.18},{"x":1568948700000,"y":15.18},{"x":1568948760000,"y":15.18},{"x":1568948820000,"y":15.18},{"x":1568948880000,"y":15.19},{"x":1568948940000,"y":15.19},{"x":1568949000000,"y":15.17},{"x":1568949060000,"y":15.17},{"x":1568949120000,"y":15.17},{"x":1568949180000,"y":15.18},{"x":1568949240000,"y":15.18},{"x":1568949300000,"y":15.17},{"x":1568949360000,"y":15.15},{"x":1568949420000,"y":15.15},{"x":1568949480000,"y":15.14},{"x":1568949540000,"y":15.18},{"x":1568949600000,"y":15.16},{"x":1568949660000,"y":15.16},{"x":1568949720000,"y":15.16},{"x":1568949780000,"y":15.16},{"x":1568949840000,"y":15.17},{"x":1568949900000,"y":15.16},{"x":1568949960000,"y":15.16},{"x":1568950020000,"y":15.16},{"x":1568950080000,"y":15.16},{"x":1568950140000,"y":15.17},{"x":1568950200000,"y":15.14},{"x":1568950260000,"y":15.13},{"x":1568950320000,"y":15.13},{"x":1568950380000,"y":15.13},{"x":1568950440000,"y":15.15},{"x":1568950500000,"y":15.15},{"x":1568950560000,"y":15.15},{"x":1568950620000,"y":15.15},{"x":1568950680000,"y":15.15},{"x":1568950740000,"y":15.17},{"x":1568950800000,"y":15.16},{"x":1568950860000,"y":15.16},{"x":1568950920000,"y":15.16},{"x":1568950980000,"y":15.16},{"x":1568951040000,"y":15.18},{"x":1568951100000,"y":15.15},{"x":1568951160000,"y":15.15},{"x":1568951220000,"y":15.15},{"x":1568951280000,"y":15.15},{"x":1568951340000,"y":15.16},{"x":1568951400000,"y":15.15},{"x":1568951460000,"y":15.14},{"x":1568951520000,"y":15.14},{"x":1568951580000,"y":15.14},{"x":1568951640000,"y":15.15},{"x":1568951700000,"y":15.17},{"x":1568951760000,"y":15.17},{"x":1568951820000,"y":15.17},{"x":1568951880000,"y":15.17},{"x":1568951940000,"y":15.17},{"x":1568952000000,"y":15.17},{"x":1568952060000,"y":15.16},{"x":1568952120000,"y":15.16},{"x":1568952180000,"y":15.16},{"x":1568952240000,"y":15.16},{"x":1568952300000,"y":15.19},{"x":1568952360000,"y":15.17},{"x":1568952420000,"y":15.17},{"x":1568952480000,"y":15.17},{"x":1568952540000,"y":15.16},{"x":1568952600000,"y":15.18},{"x":1568952660000,"y":15.17},{"x":1568952720000,"y":15.17},{"x":1568952780000,"y":15.17},{"x":1568952840000,"y":15.17},{"x":1568952900000,"y":15.16},{"x":1568952960000,"y":15.16},{"x":1568953020000,"y":15.17},{"x":1568953080000,"y":15.17},{"x":1568953140000,"y":15.17},{"x":1568953200000,"y":15.45},{"x":1568953260000,"y":15.23},{"x":1568953320000,"y":15.23},{"x":1568953380000,"y":15.23},{"x":1568953440000,"y":15.23},{"x":1568953500000,"y":15.24},{"x":1568953560000,"y":15.17},{"x":1568953620000,"y":15.17},{"x":1568953680000,"y":15.17},{"x":1568953740000,"y":15.17},{"x":1568953800000,"y":15.19},{"x":1568953860000,"y":15.17},{"x":1568953920000,"y":15.17},{"x":1568953980000,"y":15.17},{"x":1568954040000,"y":15.17},{"x":1568954100000,"y":15.17},{"x":1568954160000,"y":15.19},{"x":1568954220000,"y":15.18},{"x":1568954280000,"y":15.18},{"x":1568954340000,"y":15.16},{"x":1568954400000,"y":15.17},{"x":1568954460000,"y":15.18},{"x":1568954520000,"y":15.17},{"x":1568954580000,"y":15.17},{"x":1568954640000,"y":15.17},{"x":1568954700000,"y":15.18},{"x":1568954760000,"y":15.17},{"x":1568954820000,"y":15.14},{"x":1568954880000,"y":15.14},{"x":1568954940000,"y":15.14},{"x":1568955000000,"y":15.16},{"x":1568955060000,"y":15.17},{"x":1568955120000,"y":15.17},{"x":1568955180000,"y":15.17},{"x":1568955240000,"y":15.17},{"x":1568955300000,"y":15.17},{"x":1568955360000,"y":15.18},{"x":1568955420000,"y":15.18},{"x":1568955480000,"y":15.18},{"x":1568955540000,"y":15.17},{"x":1568955600000,"y":15.17},{"x":1568955660000,"y":15.18},{"x":1568955720000,"y":15.18},{"x":1568955780000,"y":15.19},{"x":1568955840000,"y":15.19},{"x":1568955900000,"y":15.18},{"x":1568955960000,"y":15.18},{"x":1568956020000,"y":15.16},{"x":1568956080000,"y":15.24},{"x":1568956140000,"y":15.28},{"x":1568956200000,"y":15.26},{"x":1568956260000,"y":15.28},{"x":1568956320000,"y":15.23},{"x":1568956380000,"y":15.23},{"x":1568956440000,"y":15.18},{"x":1568956500000,"y":15.19},{"x":1568956560000,"y":15.19},{"x":1568956620000,"y":15.21},{"x":1568956680000,"y":15.2},{"x":1568956740000,"y":15.2},{"x":1568956800000,"y":15.17},{"x":1568956860000,"y":15.17},{"x":1568956920000,"y":15.2},{"x":1568956980000,"y":15.2},{"x":1568957040000,"y":15.2},{"x":1568957100000,"y":15.19},{"x":1568957160000,"y":15.19},{"x":1568957220000,"y":15.21},{"x":1568957280000,"y":15.2},{"x":1568957340000,"y":15.2},{"x":1568957400000,"y":15.2},{"x":1568957460000,"y":15.2},{"x":1568957520000,"y":15.22},{"x":1568957580000,"y":15.2},{"x":1568957640000,"y":15.2},{"x":1568957700000,"y":15.2},{"x":1568957760000,"y":15.21},{"x":1568957820000,"y":15.21},{"x":1568957880000,"y":15.18},{"x":1568957940000,"y":15.19},{"x":1568958000000,"y":15.19},{"x":1568958060000,"y":15.19},{"x":1568958120000,"y":15.2},{"x":1568958180000,"y":15.2},{"x":1568958240000,"y":15.2},{"x":1568958300000,"y":15.2},{"x":1568958360000,"y":15.2},{"x":1568958420000,"y":15.21},{"x":1568958480000,"y":15.2},{"x":1568958540000,"y":15.2},{"x":1568958600000,"y":15.19},{"x":1568958660000,"y":15.18},{"x":1568958720000,"y":15.18},{"x":1568958780000,"y":15.18},{"x":1568958840000,"y":15.16},{"x":1568958900000,"y":15.18},{"x":1568958960000,"y":15.18},{"x":1568959020000,"y":15.17},{"x":1568959080000,"y":15.19},{"x":1568959140000,"y":15.19},{"x":1568959200000,"y":15.18},{"x":1568959260000,"y":15.18},{"x":1568959320000,"y":15.18},{"x":1568959380000,"y":15.19},{"x":1568959440000,"y":15.18},{"x":1568959500000,"y":15.16},{"x":1568959560000,"y":15.16},{"x":1568959620000,"y":15.16},{"x":1568959680000,"y":15.17},{"x":1568959740000,"y":15.18},{"x":1568959800000,"y":15.16},{"x":1568959860000,"y":15.16},{"x":1568959920000,"y":15.16},{"x":1568959980000,"y":15.18},{"x":1568960040000,"y":15.18},{"x":1568960100000,"y":15.18},{"x":1568960160000,"y":15.18},{"x":1568960220000,"y":15.18},{"x":1568960280000,"y":15.18},{"x":1568960340000,"y":15.17},{"x":1568960400000,"y":15.19},{"x":1568960460000,"y":15.19},{"x":1568960520000,"y":15.19},{"x":1568960580000,"y":15.2},{"x":1568960640000,"y":15.18},{"x":1568960700000,"y":15.18},{"x":1568960760000,"y":15.18},{"x":1568960820000,"y":15.19},{"x":1568960880000,"y":15.2},{"x":1568960940000,"y":15.18},{"x":1568961000000,"y":15.19},{"x":1568961060000,"y":15.19},{"x":1568961120000,"y":15.18},{"x":1568961180000,"y":15.18},{"x":1568961240000,"y":15.19},{"x":1568961300000,"y":15.18},{"x":1568961360000,"y":15.18},{"x":1568961420000,"y":15.18},{"x":1568961480000,"y":15.19},{"x":1568961540000,"y":15.19},{"x":1568961600000,"y":15.19},{"x":1568961660000,"y":15.19},{"x":1568961720000,"y":15.19},{"x":1568961780000,"y":15.19},{"x":1568961840000,"y":15.2},{"x":1568961900000,"y":15.18},{"x":1568961960000,"y":15.18},{"x":1568962020000,"y":15.18},{"x":1568962080000,"y":15.18},{"x":1568962140000,"y":15.2},{"x":1568962200000,"y":15.18},{"x":1568962260000,"y":15.18},{"x":1568962320000,"y":15.18},{"x":1568962380000,"y":15.18},{"x":1568962440000,"y":15.19},{"x":1568962500000,"y":15.17},{"x":1568962560000,"y":15.17},{"x":1568962620000,"y":15.17},{"x":1568962680000,"y":15.17},{"x":1568962740000,"y":15.18},{"x":1568962800000,"y":15.19},{"x":1568962860000,"y":15.19},{"x":1568962920000,"y":15.18},{"x":1568962980000,"y":15.18},{"x":1568963040000,"y":15.19},{"x":1568963100000,"y":15.19},{"x":1568963160000,"y":15.19},{"x":1568963220000,"y":15.19},{"x":1568963280000,"y":15.19},{"x":1568963340000,"y":15.18},{"x":1568963400000,"y":15.19},{"x":1568963460000,"y":15.19},{"x":1568963520000,"y":15.19},{"x":1568963580000,"y":15.19},{"x":1568963640000,"y":15.18},{"x":1568963700000,"y":15.2},{"x":1568963760000,"y":15.18},{"x":1568963820000,"y":15.18},{"x":1568963880000,"y":15.18},{"x":1568963940000,"y":15.18},{"x":1568964000000,"y":15.2},{"x":1568964060000,"y":15.19},{"x":1568964120000,"y":15.19},{"x":1568964180000,"y":15.19},{"x":1568964240000,"y":15.19},{"x":1568964300000,"y":15.2},{"x":1568964360000,"y":15.19},{"x":1568964420000,"y":15.19},{"x":1568964480000,"y":15.19},{"x":1568964540000,"y":15.19},{"x":1568964600000,"y":15.2},{"x":1568964660000,"y":15.19},{"x":1568964720000,"y":15.19},{"x":1568964780000,"y":15.19},{"x":1568964840000,"y":15.19},{"x":1568964900000,"y":15.2},{"x":1568964960000,"y":15.19},{"x":1568965020000,"y":15.19},{"x":1568965080000,"y":15.19},{"x":1568965140000,"y":15.18},{"x":1568965200000,"y":15.2},{"x":1568965260000,"y":15.19},{"x":1568965320000,"y":15.19},{"x":1568965380000,"y":15.19},{"x":1568965440000,"y":15.19},{"x":1568965500000,"y":15.21},{"x":1568965560000,"y":15.19},{"x":1568965620000,"y":15.19},{"x":1568965680000,"y":15.19},{"x":1568965740000,"y":15.19},{"x":1568965800000,"y":15.2},{"x":1568965860000,"y":15.21},{"x":1568965920000,"y":15.2},{"x":1568965980000,"y":15.2},{"x":1568966040000,"y":15.2},{"x":1568966100000,"y":15.2},{"x":1568966160000,"y":15.2},{"x":1568966220000,"y":15.19},{"x":1568966280000,"y":15.19},{"x":1568966340000,"y":15.19},{"x":1568966400000,"y":15.2},{"x":1568966460000,"y":15.22},{"x":1568966520000,"y":15.2},{"x":1568966580000,"y":15.2},{"x":1568966640000,"y":15.2},{"x":1568966700000,"y":15.2},{"x":1568966760000,"y":15.21},{"x":1568966820000,"y":15.2},{"x":1568966880000,"y":15.2},{"x":1568966940000,"y":15.2},{"x":1568967000000,"y":15.2},{"x":1568967060000,"y":15.2},{"x":1568967120000,"y":15.19},{"x":1568967180000,"y":15.19},{"x":1568967240000,"y":15.19},{"x":1568967300000,"y":15.2},{"x":1568967360000,"y":15.21},{"x":1568967420000,"y":15.2},{"x":1568967480000,"y":15.2},{"x":1568967540000,"y":15.2},{"x":1568967600000,"y":15.2},{"x":1568967660000,"y":15.21},{"x":1568967720000,"y":15.18},{"x":1568967780000,"y":15.18},{"x":1568967840000,"y":15.18},{"x":1568967900000,"y":15.16},{"x":1568967960000,"y":15.18},{"x":1568968020000,"y":15.18},{"x":1568968080000,"y":15.18},{"x":1568968140000,"y":15.18},{"x":1568968200000,"y":15.18},{"x":1568968260000,"y":15.19},{"x":1568968320000,"y":15.18},{"x":1568968380000,"y":15.18},{"x":1568968440000,"y":15.18},{"x":1568968500000,"y":15.18},{"x":1568968560000,"y":15.18},{"x":1568968620000,"y":15.19},{"x":1568968680000,"y":15.18},{"x":1568968740000,"y":15.18},{"x":1568968800000,"y":15.15},{"x":1568968860000,"y":15.15},{"x":1568968920000,"y":15.19},{"x":1568968980000,"y":15.17},{"x":1568969040000,"y":15.17},{"x":1568969100000,"y":15.17},{"x":1568969160000,"y":15.17},{"x":1568969220000,"y":15.19},{"x":1568969280000,"y":15.19},{"x":1568969340000,"y":15.19},{"x":1568969400000,"y":15.18},{"x":1568969460000,"y":15.17},{"x":1568969520000,"y":15.19},{"x":1568969580000,"y":15.19},{"x":1568969640000,"y":15.19},{"x":1568969700000,"y":15.19},{"x":1568969760000,"y":15.18},{"x":1568969820000,"y":15.2},{"x":1568969880000,"y":15.19},{"x":1568969940000,"y":15.19},{"x":1568970000000,"y":15.18},{"x":1568970060000,"y":15.18},{"x":1568970120000,"y":15.2},{"x":1568970180000,"y":15.18},{"x":1568970240000,"y":15.18},{"x":1568970300000,"y":15.18},{"x":1568970360000,"y":15.18},{"x":1568970420000,"y":15.18},{"x":1568970480000,"y":15.2},{"x":1568970540000,"y":15.18},{"x":1568970600000,"y":15.19},{"x":1568970660000,"y":15.19},{"x":1568970720000,"y":15.19},{"x":1568970780000,"y":15.19},{"x":1568970840000,"y":15.18},{"x":1568970900000,"y":15.19},{"x":1568970960000,"y":15.19},{"x":1568971020000,"y":15.18},{"x":1568971080000,"y":15.19},{"x":1568971140000,"y":15.18},{"x":1568971200000,"y":15.18},{"x":1568971260000,"y":15.18},{"x":1568971320000,"y":15.18},{"x":1568971380000,"y":15.19},{"x":1568971440000,"y":15.18},{"x":1568971500000,"y":15.19},{"x":1568971560000,"y":15.19},{"x":1568971620000,"y":15.19},{"x":1568971680000,"y":15.2},{"x":1568971740000,"y":15.2},{"x":1568971800000,"y":15.19},{"x":1568971860000,"y":15.19},{"x":1568971920000,"y":15.19},{"x":1568971980000,"y":15.2},{"x":1568972040000,"y":15.19},{"x":1568972100000,"y":15.19},{"x":1568972160000,"y":15.19},{"x":1568972220000,"y":15.19},{"x":1568972280000,"y":15.2},{"x":1568972340000,"y":15.18},{"x":1568972400000,"y":15.17},{"x":1568972460000,"y":15.17},{"x":1568972520000,"y":15.17},{"x":1568972580000,"y":15.19},{"x":1568972640000,"y":15.19},{"x":1568972700000,"y":15.19},{"x":1568972760000,"y":15.18},{"x":1568972820000,"y":15.18},{"x":1568972880000,"y":15.18},{"x":1568972940000,"y":15.21},{"x":1568973000000,"y":15.19},{"x":1568973060000,"y":15.18},{"x":1568973120000,"y":15.18},{"x":1568973180000,"y":15.18},{"x":1568973240000,"y":15.21},{"x":1568973300000,"y":15.19},{"x":1568973360000,"y":15.19},{"x":1568973420000,"y":15.19},{"x":1568973480000,"y":15.19},{"x":1568973540000,"y":15.18},{"x":1568973600000,"y":15.19},{"x":1568973660000,"y":15.19},{"x":1568973720000,"y":15.19},{"x":1568973780000,"y":15.19},{"x":1568973840000,"y":15.2},{"x":1568973900000,"y":15.2},{"x":1568973960000,"y":15.2},{"x":1568974020000,"y":15.2},{"x":1568974080000,"y":15.2},{"x":1568974140000,"y":15.21},{"x":1568974200000,"y":15.19},{"x":1568974260000,"y":15.19},{"x":1568974320000,"y":15.19},{"x":1568974380000,"y":15.19},{"x":1568974440000,"y":15.2},{"x":1568974500000,"y":15.2},{"x":1568974560000,"y":15.2},{"x":1568974620000,"y":15.2},{"x":1568974680000,"y":15.2},{"x":1568974740000,"y":15.2},{"x":1568974800000,"y":15.2},{"x":1568974860000,"y":15.2},{"x":1568974920000,"y":15.19},{"x":1568974980000,"y":15.19},{"x":1568975040000,"y":15.36},{"x":1568975100000,"y":15.4},{"x":1568975160000,"y":15.26},{"x":1568975220000,"y":15.26},{"x":1568975280000,"y":15.26},{"x":1568975340000,"y":15.26},{"x":1568975400000,"y":15.2},{"x":1568975460000,"y":15.18},{"x":1568975520000,"y":15.18},{"x":1568975580000,"y":15.18},{"x":1568975640000,"y":15.18},{"x":1568975700000,"y":15.22},{"x":1568975760000,"y":15.2},{"x":1568975820000,"y":15.2},{"x":1568975880000,"y":15.2},{"x":1568975940000,"y":15.18},{"x":1568976000000,"y":15.2},{"x":1568976060000,"y":15.19},{"x":1568976120000,"y":15.19},{"x":1568976180000,"y":15.2},{"x":1568976240000,"y":15.2},{"x":1568976300000,"y":15.21},{"x":1568976360000,"y":15.21},{"x":1568976420000,"y":15.21},{"x":1568976480000,"y":15.21},{"x":1568976540000,"y":15.21},{"x":1568976600000,"y":15.21},{"x":1568976660000,"y":15.19},{"x":1568976720000,"y":15.19},{"x":1568976780000,"y":15.19},{"x":1568976840000,"y":15.2},{"x":1568976900000,"y":15.22},{"x":1568976960000,"y":15.2},{"x":1568977020000,"y":15.2},{"x":1568977080000,"y":15.2},{"x":1568977140000,"y":15.18},{"x":1568977200000,"y":15.19},{"x":1568977260000,"y":15.18},{"x":1568977320000,"y":15.18},{"x":1568977380000,"y":15.18},{"x":1568977440000,"y":15.18},{"x":1568977500000,"y":15.18},{"x":1568977560000,"y":15.44},{"x":1568977620000,"y":15.31},{"x":1568977680000,"y":15.25},{"x":1568977740000,"y":15.24},{"x":1568977800000,"y":15.25},{"x":1568977860000,"y":15.24},{"x":1568977920000,"y":15.16},{"x":1568977980000,"y":15.15},{"x":1568978040000,"y":15.16},{"x":1568978100000,"y":15.17},{"x":1568978160000,"y":15.18},{"x":1568978220000,"y":15.17},{"x":1568978280000,"y":15.17},{"x":1568978340000,"y":15.17},{"x":1568978400000,"y":15.17},{"x":1568978460000,"y":15.17},{"x":1568978520000,"y":15.16},{"x":1568978580000,"y":15.16},{"x":1568978640000,"y":15.15},{"x":1568978700000,"y":15.22},{"x":1568978760000,"y":15.17},{"x":1568978820000,"y":15.15},{"x":1568978880000,"y":15.15},{"x":1568978940000,"y":15.15},{"x":1568979000000,"y":15.17},{"x":1568979060000,"y":15.17},{"x":1568979120000,"y":15.14},{"x":1568979180000,"y":15.14},{"x":1568979240000,"y":15.14},{"x":1568979300000,"y":15.16},{"x":1568979360000,"y":15.17},{"x":1568979420000,"y":15.16},{"x":1568979480000,"y":15.16},{"x":1568979540000,"y":15.18},{"x":1568979600000,"y":15.15},{"x":1568979660000,"y":15.14},{"x":1568979720000,"y":15.18},{"x":1568979780000,"y":15.17},{"x":1568979840000,"y":15.17},{"x":1568979900000,"y":15.17},{"x":1568979960000,"y":15.17},{"x":1568980020000,"y":15.18},{"x":1568980080000,"y":15.17},{"x":1568980140000,"y":15.17},{"x":1568980200000,"y":15.18},{"x":1568980260000,"y":15.17},{"x":1568980320000,"y":15.18},{"x":1568980380000,"y":15.17},{"x":1568980440000,"y":15.17},{"x":1568980500000,"y":15.17},{"x":1568980560000,"y":15.17},{"x":1568980620000,"y":15.19},{"x":1568980680000,"y":15.16},{"x":1568980740000,"y":15.16},{"x":1568980800000,"y":15.15},{"x":1568980860000,"y":15.15},{"x":1568980920000,"y":15.17},{"x":1568980980000,"y":15.16},{"x":1568981040000,"y":15.16},{"x":1568981100000,"y":15.16},{"x":1568981160000,"y":15.16},{"x":1568981220000,"y":15.17},{"x":1568981280000,"y":15.15},{"x":1568981340000,"y":15.18},{"x":1568981400000,"y":15.18},{"x":1568981460000,"y":15.18},{"x":1568981520000,"y":15.19},{"x":1568981580000,"y":15.19},{"x":1568981640000,"y":15.19},{"x":1568981700000,"y":15.18},{"x":1568981760000,"y":15.18},{"x":1568981820000,"y":15.19},{"x":1568981880000,"y":15.18},{"x":1568981940000,"y":15.18},{"x":1568982000000,"y":15.17},{"x":1568982060000,"y":15.17},{"x":1568982120000,"y":15.17},{"x":1568982180000,"y":15.2},{"x":1568982240000,"y":15.18},{"x":1568982300000,"y":15.18},{"x":1568982360000,"y":15.18},{"x":1568982420000,"y":15.18},{"x":1568982480000,"y":15.19},{"x":1568982540000,"y":15.18},{"x":1568982600000,"y":15.18},{"x":1568982660000,"y":15.18},{"x":1568982720000,"y":15.18},{"x":1568982780000,"y":15.19},{"x":1568982840000,"y":15.18},{"x":1568982900000,"y":15.18},{"x":1568982960000,"y":15.18},{"x":1568983020000,"y":15.18},{"x":1568983080000,"y":15.18},{"x":1568983140000,"y":15.18},{"x":1568983200000,"y":15.15},{"x":1568983260000,"y":15.15},{"x":1568983320000,"y":15.15},{"x":1568983380000,"y":15.16},{"x":1568983440000,"y":15.17},{"x":1568983500000,"y":15.18},{"x":1568983560000,"y":15.18},{"x":1568983620000,"y":15.18},{"x":1568983680000,"y":15.19},{"x":1568983740000,"y":15.17},{"x":1568983800000,"y":15.19},{"x":1568983860000,"y":15.17},{"x":1568983920000,"y":15.17},{"x":1568983980000,"y":15.18},{"x":1568984040000,"y":15.18},{"x":1568984100000,"y":15.18},{"x":1568984160000,"y":15.18},{"x":1568984220000,"y":15.18},{"x":1568984280000,"y":15.18},{"x":1568984340000,"y":15.2},{"x":1568984400000,"y":15.19},{"x":1568984460000,"y":15.19},{"x":1568984520000,"y":15.19},{"x":1568984580000,"y":15.19},{"x":1568984640000,"y":15.19},{"x":1568984700000,"y":15.18},{"x":1568984760000,"y":15.18},{"x":1568984820000,"y":15.18},{"x":1568984880000,"y":15.18},{"x":1568984940000,"y":15.2},{"x":1568985000000,"y":15.18},{"x":1568985060000,"y":15.18},{"x":1568985120000,"y":15.18},{"x":1568985180000,"y":15.18},{"x":1568985240000,"y":15.19},{"x":1568985300000,"y":15.19},{"x":1568985360000,"y":15.19},{"x":1568985420000,"y":15.18},{"x":1568985480000,"y":15.18},{"x":1568985540000,"y":15.19},{"x":1568985600000,"y":15.19},{"x":1568985660000,"y":15.19},{"x":1568985720000,"y":15.19},{"x":1568985780000,"y":15.19},{"x":1568985840000,"y":15.2},{"x":1568985900000,"y":15.19},{"x":1568985960000,"y":15.19},{"x":1568986020000,"y":15.18},{"x":1568986080000,"y":15.18},{"x":1568986140000,"y":15.19},{"x":1568986200000,"y":15.16},{"x":1568986260000,"y":15.14},{"x":1568986320000,"y":15.13},{"x":1568986380000,"y":15.13},{"x":1568986440000,"y":15.13},{"x":1568986500000,"y":15.19},{"x":1568986560000,"y":15.17},{"x":1568986620000,"y":15.17},{"x":1568986680000,"y":15.16},{"x":1568986740000,"y":15.17},{"x":1568986800000,"y":15.17},{"x":1568986860000,"y":15.15},{"x":1568986920000,"y":15.15},{"x":1568986980000,"y":15.15},{"x":1568987040000,"y":15.15},{"x":1568987100000,"y":15.16},{"x":1568987160000,"y":15.15},{"x":1568987220000,"y":15.15},{"x":1568987280000,"y":15.15},{"x":1568987340000,"y":15.15},{"x":1568987400000,"y":15.16},{"x":1568987460000,"y":15.16},{"x":1568987520000,"y":15.16},{"x":1568987580000,"y":15.16},{"x":1568987640000,"y":15.16},{"x":1568987700000,"y":15.18},{"x":1568987760000,"y":15.17},{"x":1568987820000,"y":15.17},{"x":1568987880000,"y":15.17},{"x":1568987940000,"y":15.17},{"x":1568988000000,"y":15.17},{"x":1568988060000,"y":15.18},{"x":1568988120000,"y":15.17},{"x":1568988180000,"y":15.17},{"x":1568988240000,"y":15.17},{"x":1568988300000,"y":15.18},{"x":1568988360000,"y":15.18},{"x":1568988420000,"y":15.17},{"x":1568988480000,"y":15.17},{"x":1568988540000,"y":15.17},{"x":1568988600000,"y":15.18},{"x":1568988660000,"y":15.18},{"x":1568988720000,"y":15.17},{"x":1568988780000,"y":15.17},{"x":1568988840000,"y":15.17},{"x":1568988900000,"y":15.18},{"x":1568988960000,"y":15.19},{"x":1568989020000,"y":15.17},{"x":1568989080000,"y":15.17},{"x":1568989140000,"y":15.17},{"x":1568989200000,"y":15.18},{"x":1568989260000,"y":15.19},{"x":1568989320000,"y":15.17},{"x":1568989380000,"y":15.17},{"x":1568989440000,"y":15.17},{"x":1568989500000,"y":15.15},{"x":1568989560000,"y":15.16},{"x":1568989620000,"y":15.16},{"x":1568989680000,"y":15.16},{"x":1568989740000,"y":15.16},{"x":1568989800000,"y":15.17},{"x":1568989860000,"y":15.18},{"x":1568989920000,"y":15.19},{"x":1568989980000,"y":15.18},{"x":1568990040000,"y":15.18},{"x":1568990100000,"y":15.18},{"x":1568990160000,"y":15.17},{"x":1568990220000,"y":15.14},{"x":1568990280000,"y":15.12},{"x":1568990340000,"y":15.18},{"x":1568990400000,"y":15.18},{"x":1568990460000,"y":15.18},{"x":1568990520000,"y":15.18},{"x":1568990580000,"y":15.17},{"x":1568990640000,"y":15.17},{"x":1568990700000,"y":15.18},{"x":1568990760000,"y":15.18},{"x":1568990820000,"y":15.18},{"x":1568990880000,"y":15.16},{"x":1568990940000,"y":15.16},{"x":1568991000000,"y":15.18},{"x":1568991060000,"y":15.17},{"x":1568991120000,"y":15.19},{"x":1568991180000,"y":15.19},{"x":1568991240000,"y":15.19},{"x":1568991300000,"y":15.19},{"x":1568991360000,"y":15.19},{"x":1568991420000,"y":15.21},{"x":1568991480000,"y":15.19},{"x":1568991540000,"y":15.19},{"x":1568991600000,"y":15.19},{"x":1568991660000,"y":15.19},{"x":1568991720000,"y":15.2},{"x":1568991780000,"y":15.2},{"x":1568991840000,"y":15.2},{"x":1568991900000,"y":15.19},{"x":1568991960000,"y":15.19},{"x":1568992020000,"y":15.19},{"x":1568992080000,"y":15.2},{"x":1568992140000,"y":15.19},{"x":1568992200000,"y":15.2},{"x":1568992260000,"y":15.2},{"x":1568992320000,"y":15.2},{"x":1568992380000,"y":15.18},{"x":1568992440000,"y":15.17},{"x":1568992500000,"y":15.19},{"x":1568992560000,"y":15.19},{"x":1568992620000,"y":15.19},{"x":1568992680000,"y":15.19},{"x":1568992740000,"y":15.18},{"x":1568992800000,"y":15.2},{"x":1568992860000,"y":15.2},{"x":1568992920000,"y":15.2},{"x":1568992980000,"y":15.21},{"x":1568993040000,"y":15.19},{"x":1568993100000,"y":15.18},{"x":1568993160000,"y":15.17},{"x":1568993220000,"y":15.17},{"x":1568993280000,"y":15.19},{"x":1568993340000,"y":15.16},{"x":1568993400000,"y":15.2},{"x":1568993460000,"y":15.2},{"x":1568993520000,"y":15.2},{"x":1568993580000,"y":15.21},{"x":1568993640000,"y":15.2},{"x":1568993700000,"y":15.19},{"x":1568993760000,"y":15.19},{"x":1568993820000,"y":15.19},{"x":1568993880000,"y":15.2},{"x":1568993940000,"y":15.19},{"x":1568994000000,"y":15.2},{"x":1568994060000,"y":15.2},{"x":1568994120000,"y":15.2},{"x":1568994180000,"y":15.2},{"x":1568994240000,"y":15.2},{"x":1568994300000,"y":15.19},{"x":1568994360000,"y":15.19},{"x":1568994420000,"y":15.19},{"x":1568994480000,"y":15.19},{"x":1568994540000,"y":15.21},{"x":1568994600000,"y":15.18},{"x":1568994660000,"y":15.2},{"x":1568994720000,"y":15.2},{"x":1568994780000,"y":15.2},{"x":1568994840000,"y":15.21},{"x":1568994900000,"y":15.2},{"x":1568994960000,"y":15.2},{"x":1568995020000,"y":15.2},{"x":1568995080000,"y":15.2},{"x":1568995140000,"y":15.21},{"x":1568995200000,"y":15.2},{"x":1568995260000,"y":15.2},{"x":1568995320000,"y":15.2},{"x":1568995380000,"y":15.2},{"x":1568995440000,"y":15.22},{"x":1568995500000,"y":15.2},{"x":1568995560000,"y":15.19},{"x":1568995620000,"y":15.17},{"x":1568995680000,"y":15.17},{"x":1568995740000,"y":15.19},{"x":1568995800000,"y":15.16},{"x":1568995860000,"y":15.15},{"x":1568995920000,"y":15.15},{"x":1568995980000,"y":15.16},{"x":1568996040000,"y":15.17},{"x":1568996100000,"y":15.18},{"x":1568996160000,"y":15.18},{"x":1568996220000,"y":15.17},{"x":1568996280000,"y":15.17},{"x":1568996340000,"y":15.18},{"x":1568996400000,"y":15.19},{"x":1568996460000,"y":15.19},{"x":1568996520000,"y":15.19},{"x":1568996580000,"y":15.19},{"x":1568996640000,"y":15.19},{"x":1568996700000,"y":15.54},{"x":1568996760000,"y":15.25},{"x":1568996820000,"y":15.25},{"x":1568996880000,"y":15.25},{"x":1568996940000,"y":15.25},{"x":1568997000000,"y":15.22},{"x":1568997060000,"y":15.19},{"x":1568997120000,"y":15.19},{"x":1568997180000,"y":15.19},{"x":1568997240000,"y":15.19},{"x":1568997300000,"y":15.21},{"x":1568997360000,"y":15.19},{"x":1568997420000,"y":15.19},{"x":1568997480000,"y":15.19},{"x":1568997540000,"y":15.17},{"x":1568997600000,"y":15.19},{"x":1568997660000,"y":15.17},{"x":1568997720000,"y":15.17},{"x":1568997780000,"y":15.17},{"x":1568997840000,"y":15.17},{"x":1568997900000,"y":15.18},{"x":1568997960000,"y":15.19},{"x":1568998020000,"y":15.19},{"x":1568998080000,"y":15.19},{"x":1568998140000,"y":15.19},{"x":1568998200000,"y":15.19},{"x":1568998260000,"y":15.16},{"x":1568998320000,"y":15.16},{"x":1568998380000,"y":15.16},{"x":1568998440000,"y":15.16},{"x":1568998500000,"y":15.18},{"x":1568998560000,"y":15.19},{"x":1568998620000,"y":15.19},{"x":1568998680000,"y":15.19},{"x":1568998740000,"y":15.19},{"x":1568998800000,"y":15.19},{"x":1568998860000,"y":15.21},{"x":1568998920000,"y":15.19},{"x":1568998980000,"y":15.19},{"x":1568999040000,"y":15.19},{"x":1568999100000,"y":15.18},{"x":1568999160000,"y":15.2},{"x":1568999220000,"y":15.19},{"x":1568999280000,"y":15.19},{"x":1568999340000,"y":15.2},{"x":1568999400000,"y":15.19},{"x":1568999460000,"y":15.2},{"x":1568999520000,"y":15.19},{"x":1568999580000,"y":15.19},{"x":1568999640000,"y":15.19},{"x":1568999700000,"y":15.19},{"x":1568999760000,"y":15.2},{"x":1568999820000,"y":15.2},{"x":1568999880000,"y":15.2},{"x":1568999940000,"y":15.2},{"x":1569000000000,"y":15.19},{"x":1569000060000,"y":15.2},{"x":1569000120000,"y":15.19},{"x":1569000180000,"y":15.19},{"x":1569000240000,"y":15.19},{"x":1569000300000,"y":15.19},{"x":1569000360000,"y":15.19},{"x":1569000420000,"y":15.18},{"x":1569000480000,"y":15.18},{"x":1569000540000,"y":15.18},{"x":1569000600000,"y":15.19},{"x":1569000660000,"y":15.2},{"x":1569000720000,"y":15.18},{"x":1569000780000,"y":15.18},{"x":1569000840000,"y":15.18},{"x":1569000900000,"y":15.19},{"x":1569000960000,"y":15.2},{"x":1569001020000,"y":15.21},{"x":1569001080000,"y":15.2},{"x":1569001140000,"y":15.2},{"x":1569001200000,"y":15.2},{"x":1569001260000,"y":15.2},{"x":1569001320000,"y":15.21},{"x":1569001380000,"y":15.19},{"x":1569001440000,"y":15.19},{"x":1569001500000,"y":15.2},{"x":1569001560000,"y":15.2},{"x":1569001620000,"y":15.2},{"x":1569001680000,"y":15.19},{"x":1569001740000,"y":15.19},{"x":1569001800000,"y":15.16},{"x":1569001860000,"y":15.15},{"x":1569001920000,"y":15.18},{"x":1569001980000,"y":15.19},{"x":1569002040000,"y":15.19},{"x":1569002100000,"y":15.2},{"x":1569002160000,"y":15.2},{"x":1569002220000,"y":15.21},{"x":1569002280000,"y":15.2},{"x":1569002340000,"y":15.19},{"x":1569002400000,"y":15.17},{"x":1569002460000,"y":15.17},{"x":1569002520000,"y":15.19},{"x":1569002580000,"y":15.2},{"x":1569002640000,"y":15.2},{"x":1569002700000,"y":15.17},{"x":1569002760000,"y":15.17},{"x":1569002820000,"y":15.18},{"x":1569002880000,"y":15.18},{"x":1569002940000,"y":15.2},{"x":1569003000000,"y":15.2},{"x":1569003060000,"y":15.2},{"x":1569003120000,"y":15.2},{"x":1569003180000,"y":15.21},{"x":1569003240000,"y":15.2},{"x":1569003300000,"y":15.18},{"x":1569003360000,"y":15.18},{"x":1569003420000,"y":15.18},{"x":1569003480000,"y":15.21},{"x":1569003540000,"y":15.21},{"x":1569003600000,"y":15.2},{"x":1569003660000,"y":15.2},{"x":1569003720000,"y":15.2},{"x":1569003780000,"y":15.21},{"x":1569003840000,"y":15.2},{"x":1569003900000,"y":15.19},{"x":1569003960000,"y":15.19},{"x":1569004020000,"y":15.19},{"x":1569004080000,"y":15.2},{"x":1569004140000,"y":15.19},{"x":1569004200000,"y":15.2},{"x":1569004260000,"y":15.2},{"x":1569004320000,"y":15.2},{"x":1569004380000,"y":15.2},{"x":1569004440000,"y":15.19},{"x":1569004500000,"y":15.19},{"x":1569004560000,"y":15.19},{"x":1569004620000,"y":15.19},{"x":1569004680000,"y":15.21},{"x":1569004740000,"y":15.21},{"x":1569004800000,"y":15.19},{"x":1569004860000,"y":15.17},{"x":1569004920000,"y":15.18},{"x":1569004980000,"y":15.19},{"x":1569005040000,"y":15.19},{"x":1569005100000,"y":15.18},{"x":1569005160000,"y":15.18},{"x":1569005220000,"y":15.18},{"x":1569005280000,"y":15.18},{"x":1569005340000,"y":15.19},{"x":1569005400000,"y":15.15},{"x":1569005460000,"y":15.15},{"x":1569005520000,"y":15.15},{"x":1569005580000,"y":15.15},{"x":1569005640000,"y":15.18},{"x":1569005700000,"y":15.17},{"x":1569005760000,"y":15.17},{"x":1569005820000,"y":15.17},{"x":1569005880000,"y":15.17},{"x":1569005940000,"y":15.19},{"x":1569006000000,"y":15.18},{"x":1569006060000,"y":15.19},{"x":1569006120000,"y":15.19},{"x":1569006180000,"y":15.19},{"x":1569006240000,"y":15.19},{"x":1569006300000,"y":15.19},{"x":1569006360000,"y":15.19},{"x":1569006420000,"y":15.19},{"x":1569006480000,"y":15.19},{"x":1569006540000,"y":15.19},{"x":1569006600000,"y":15.18},{"x":1569006660000,"y":15.18},{"x":1569006720000,"y":15.18},{"x":1569006780000,"y":15.18},{"x":1569006840000,"y":15.2},{"x":1569006900000,"y":15.19},{"x":1569006960000,"y":15.18},{"x":1569007020000,"y":15.18},{"x":1569007080000,"y":15.18},{"x":1569007140000,"y":15.19},{"x":1569007200000,"y":15.2},{"x":1569007260000,"y":15.19},{"x":1569007320000,"y":15.19},{"x":1569007380000,"y":15.19},{"x":1569007440000,"y":15.19},{"x":1569007500000,"y":15.19},{"x":1569007560000,"y":15.18},{"x":1569007620000,"y":15.18},{"x":1569007680000,"y":15.18},{"x":1569007740000,"y":15.18},{"x":1569007800000,"y":15.17},{"x":1569007860000,"y":15.15},{"x":1569007920000,"y":15.15},{"x":1569007980000,"y":15.15},{"x":1569008040000,"y":15.15},{"x":1569008100000,"y":15.2},{"x":1569008160000,"y":15.19},{"x":1569008220000,"y":15.19},{"x":1569008280000,"y":15.19},{"x":1569008340000,"y":15.18},{"x":1569008400000,"y":15.2},{"x":1569008460000,"y":15.16},{"x":1569008520000,"y":15.17},{"x":1569008580000,"y":15.17},{"x":1569008640000,"y":15.17},{"x":1569008700000,"y":15.18},{"x":1569008760000,"y":15.18},{"x":1569008820000,"y":15.18},{"x":1569008880000,"y":15.18},{"x":1569008940000,"y":15.18},{"x":1569009000000,"y":15.17},{"x":1569009060000,"y":15.17},{"x":1569009120000,"y":15.17},{"x":1569009180000,"y":15.17},{"x":1569009240000,"y":15.17},{"x":1569009300000,"y":15.2},{"x":1569009360000,"y":15.19},{"x":1569009420000,"y":15.19},{"x":1569009480000,"y":15.19},{"x":1569009540000,"y":15.19},{"x":1569009600000,"y":15.19},{"x":1569009660000,"y":15.2},{"x":1569009720000,"y":15.19},{"x":1569009780000,"y":15.19},{"x":1569009840000,"y":15.19},{"x":1569009900000,"y":15.19},{"x":1569009960000,"y":15.21},{"x":1569010020000,"y":15.19},{"x":1569010080000,"y":15.19},{"x":1569010140000,"y":15.18},{"x":1569010200000,"y":15.2},{"x":1569010260000,"y":15.21},{"x":1569010320000,"y":15.19},{"x":1569010380000,"y":15.19},{"x":1569010440000,"y":15.19},{"x":1569010500000,"y":15.19},{"x":1569010560000,"y":15.2},{"x":1569010620000,"y":15.19},{"x":1569010680000,"y":15.19},{"x":1569010740000,"y":15.19},{"x":1569010800000,"y":15.2},{"x":1569010860000,"y":15.21},{"x":1569010920000,"y":15.19},{"x":1569010980000,"y":15.19},{"x":1569011040000,"y":15.19},{"x":1569011100000,"y":15.19},{"x":1569011160000,"y":15.2},{"x":1569011220000,"y":15.18},{"x":1569011280000,"y":15.18},{"x":1569011340000,"y":15.18},{"x":1569011400000,"y":15.2},{"x":1569011460000,"y":15.21},{"x":1569011520000,"y":15.2},{"x":1569011580000,"y":15.2},{"x":1569011640000,"y":15.2},{"x":1569011700000,"y":15.17},{"x":1569011760000,"y":15.17},{"x":1569011820000,"y":15.21},{"x":1569011880000,"y":15.19},{"x":1569011940000,"y":15.19},{"x":1569012000000,"y":15.2},{"x":1569012060000,"y":15.2},{"x":1569012120000,"y":15.22},{"x":1569012180000,"y":15.2},{"x":1569012240000,"y":15.2},{"x":1569012300000,"y":15.18},{"x":1569012360000,"y":15.17},{"x":1569012420000,"y":15.21},{"x":1569012480000,"y":15.2},{"x":1569012540000,"y":15.2},{"x":1569012600000,"y":15.21},{"x":1569012660000,"y":15.2},{"x":1569012720000,"y":15.21},{"x":1569012780000,"y":15.21},{"x":1569012840000,"y":15.21},{"x":1569012900000,"y":15.2},{"x":1569012960000,"y":15.2},{"x":1569013020000,"y":15.21},{"x":1569013080000,"y":15.2},{"x":1569013140000,"y":15.2},{"x":1569013200000,"y":15.2},{"x":1569013260000,"y":15.2},{"x":1569013320000,"y":15.21},{"x":1569013380000,"y":15.2},{"x":1569013440000,"y":15.2},{"x":1569013500000,"y":15.2},{"x":1569013560000,"y":15.2},{"x":1569013620000,"y":15.21},{"x":1569013680000,"y":15.2},{"x":1569013740000,"y":15.2},{"x":1569013800000,"y":15.2},{"x":1569013860000,"y":15.2},{"x":1569013920000,"y":15.2},{"x":1569013980000,"y":15.21},{"x":1569014040000,"y":15.2},{"x":1569014100000,"y":15.19},{"x":1569014160000,"y":15.18},{"x":1569014220000,"y":15.18},{"x":1569014280000,"y":15.19},{"x":1569014340000,"y":15.18},{"x":1569014400000,"y":15.17},{"x":1569014460000,"y":15.17},{"x":1569014520000,"y":15.17},{"x":1569014580000,"y":15.19},{"x":1569014640000,"y":15.18},{"x":1569014700000,"y":15.19},{"x":1569014760000,"y":15.19},{"x":1569014820000,"y":15.19},{"x":1569014880000,"y":15.2},{"x":1569014940000,"y":15.18},{"x":1569015000000,"y":15.19},{"x":1569015060000,"y":15.19},{"x":1569015120000,"y":15.19},{"x":1569015180000,"y":15.2},{"x":1569015240000,"y":15.19},{"x":1569015300000,"y":15.19},{"x":1569015360000,"y":15.19},{"x":1569015420000,"y":15.18},{"x":1569015480000,"y":15.19},{"x":1569015540000,"y":15.18},{"x":1569015600000,"y":15.18},{"x":1569015660000,"y":15.18},{"x":1569015720000,"y":15.18},{"x":1569015780000,"y":15.2},{"x":1569015840000,"y":15.19},{"x":1569015900000,"y":15.17},{"x":1569015960000,"y":15.17},{"x":1569016020000,"y":15.17},{"x":1569016080000,"y":15.17},{"x":1569016140000,"y":15.19},{"x":1569016200000,"y":15.17},{"x":1569016260000,"y":15.16},{"x":1569016320000,"y":15.16},{"x":1569016380000,"y":15.16},{"x":1569016440000,"y":15.2},{"x":1569016500000,"y":15.19},{"x":1569016560000,"y":15.19},{"x":1569016620000,"y":15.19},{"x":1569016680000,"y":15.19},{"x":1569016740000,"y":15.2},{"x":1569016800000,"y":15.19},{"x":1569016860000,"y":15.19},{"x":1569016920000,"y":15.19},{"x":1569016980000,"y":15.19},{"x":1569017040000,"y":15.2},{"x":1569017100000,"y":15.19},{"x":1569017160000,"y":15.19},{"x":1569017220000,"y":15.19},{"x":1569017280000,"y":15.19},{"x":1569017340000,"y":15.2},{"x":1569017400000,"y":15.18},{"x":1569017460000,"y":15.18},{"x":1569017520000,"y":15.18},{"x":1569017580000,"y":15.18},{"x":1569017640000,"y":15.2},{"x":1569017700000,"y":15.17},{"x":1569017760000,"y":15.17},{"x":1569017820000,"y":15.17},{"x":1569017880000,"y":15.17},{"x":1569017940000,"y":15.18},{"x":1569018000000,"y":15.19},{"x":1569018060000,"y":15.18},{"x":1569018120000,"y":15.18},{"x":1569018180000,"y":15.18},{"x":1569018240000,"y":15.18},{"x":1569018300000,"y":15.21},{"x":1569018360000,"y":15.2},{"x":1569018420000,"y":15.2},{"x":1569018480000,"y":15.2},{"x":1569018540000,"y":15.2},{"x":1569018600000,"y":15.52},{"x":1569018660000,"y":15.24},{"x":1569018720000,"y":15.24},{"x":1569018780000,"y":15.24},{"x":1569018840000,"y":15.24},{"x":1569018900000,"y":15.23},{"x":1569018960000,"y":15.2},{"x":1569019020000,"y":15.2},{"x":1569019080000,"y":15.19},{"x":1569019140000,"y":15.2},{"x":1569019200000,"y":15.21},{"x":1569019260000,"y":15.2},{"x":1569019320000,"y":15.2},{"x":1569019380000,"y":15.2},{"x":1569019440000,"y":15.2},{"x":1569019500000,"y":15.21},{"x":1569019560000,"y":15.2},{"x":1569019620000,"y":15.2},{"x":1569019680000,"y":15.19},{"x":1569019740000,"y":15.19},{"x":1569019800000,"y":15.2},{"x":1569019860000,"y":15.19},{"x":1569019920000,"y":15.19},{"x":1569019980000,"y":15.18},{"x":1569020040000,"y":15.18},{"x":1569020100000,"y":15.21},{"x":1569020160000,"y":15.2},{"x":1569020220000,"y":15.2},{"x":1569020280000,"y":15.19},{"x":1569020340000,"y":15.2},{"x":1569020400000,"y":15.21},{"x":1569020460000,"y":15.19},{"x":1569020520000,"y":15.19},{"x":1569020580000,"y":15.19},{"x":1569020640000,"y":15.19},{"x":1569020700000,"y":15.18},{"x":1569020760000,"y":15.19},{"x":1569020820000,"y":15.18},{"x":1569020880000,"y":15.18},{"x":1569020940000,"y":15.2},{"x":1569021000000,"y":15.2},{"x":1569021060000,"y":15.21},{"x":1569021120000,"y":15.2},{"x":1569021180000,"y":15.2},{"x":1569021240000,"y":15.2},{"x":1569021300000,"y":15.2},{"x":1569021360000,"y":15.21},{"x":1569021420000,"y":15.2},{"x":1569021480000,"y":15.2},{"x":1569021540000,"y":15.2},{"x":1569021600000,"y":15.2},{"x":1569021660000,"y":15.21},{"x":1569021720000,"y":15.19},{"x":1569021780000,"y":15.19},{"x":1569021840000,"y":15.19},{"x":1569021900000,"y":15.2},{"x":1569021960000,"y":15.21},{"x":1569022020000,"y":15.2},{"x":1569022080000,"y":15.2},{"x":1569022140000,"y":15.2},{"x":1569022200000,"y":15.19},{"x":1569022260000,"y":15.21},{"x":1569022320000,"y":15.2},{"x":1569022380000,"y":15.2},{"x":1569022440000,"y":15.2},{"x":1569022500000,"y":15.2},{"x":1569022560000,"y":15.21},{"x":1569022620000,"y":15.2},{"x":1569022680000,"y":15.2},{"x":1569022740000,"y":15.2},{"x":1569022800000,"y":15.21},{"x":1569022860000,"y":15.21},{"x":1569022920000,"y":15.21},{"x":1569022980000,"y":15.2},{"x":1569023040000,"y":15.2},{"x":1569023100000,"y":15.2},{"x":1569023160000,"y":15.2},{"x":1569023220000,"y":15.2},{"x":1569023280000,"y":15.18},{"x":1569023340000,"y":15.18},{"x":1569023400000,"y":15.18},{"x":1569023460000,"y":15.17},{"x":1569023520000,"y":15.18},{"x":1569023580000,"y":15.18},{"x":1569023640000,"y":15.18},{"x":1569023700000,"y":15.19},{"x":1569023760000,"y":15.19},{"x":1569023820000,"y":15.2},{"x":1569023880000,"y":15.18},{"x":1569023940000,"y":15.18},{"x":1569024000000,"y":15.18},{"x":1569024060000,"y":15.18},{"x":1569024120000,"y":15.19},{"x":1569024180000,"y":15.17},{"x":1569024240000,"y":15.18},{"x":1569024300000,"y":15.19},{"x":1569024360000,"y":15.18},{"x":1569024420000,"y":15.19},{"x":1569024480000,"y":15.19},{"x":1569024540000,"y":15.18},{"x":1569024600000,"y":15.18},{"x":1569024660000,"y":15.18},{"x":1569024720000,"y":15.18},{"x":1569024780000,"y":15.19},{"x":1569024840000,"y":15.18},{"x":1569024900000,"y":15.19},{"x":1569024960000,"y":15.19},{"x":1569025020000,"y":15.19},{"x":1569025080000,"y":15.18},{"x":1569025140000,"y":15.17},{"x":1569025200000,"y":15.17},{"x":1569025260000,"y":15.17},{"x":1569025320000,"y":15.17},{"x":1569025380000,"y":15.18},{"x":1569025440000,"y":15.17},{"x":1569025500000,"y":15.18},{"x":1569025560000,"y":15.18},{"x":1569025620000,"y":15.18},{"x":1569025680000,"y":15.19},{"x":1569025740000,"y":15.18},{"x":1569025800000,"y":15.19},{"x":1569025860000,"y":15.19},{"x":1569025920000,"y":15.19},{"x":1569025980000,"y":15.2},{"x":1569026040000,"y":15.19},{"x":1569026100000,"y":15.2},{"x":1569026160000,"y":15.2},{"x":1569026220000,"y":15.2},{"x":1569026280000,"y":15.2},{"x":1569026340000,"y":15.18},{"x":1569026400000,"y":15.2},{"x":1569026460000,"y":15.2},{"x":1569026520000,"y":15.2},{"x":1569026580000,"y":15.2},{"x":1569026640000,"y":15.19},{"x":1569026700000,"y":15.17},{"x":1569026760000,"y":15.17},{"x":1569026820000,"y":15.18},{"x":1569026880000,"y":15.19},{"x":1569026940000,"y":15.18},{"x":1569027000000,"y":15.18},{"x":1569027060000,"y":15.18},{"x":1569027120000,"y":15.18},{"x":1569027180000,"y":15.18},{"x":1569027240000,"y":15.18},{"x":1569027300000,"y":15.18},{"x":1569027360000,"y":15.17},{"x":1569027420000,"y":15.17},{"x":1569027480000,"y":15.17},{"x":1569027540000,"y":15.18},{"x":1569027600000,"y":15.15},{"x":1569027660000,"y":15.16},{"x":1569027720000,"y":15.16},{"x":1569027780000,"y":15.16},{"x":1569027840000,"y":15.19},{"x":1569027900000,"y":15.17},{"x":1569027960000,"y":15.17},{"x":1569028020000,"y":15.17},{"x":1569028080000,"y":15.17},{"x":1569028140000,"y":15.19},{"x":1569028200000,"y":15.19},{"x":1569028260000,"y":15.19},{"x":1569028320000,"y":15.19},{"x":1569028380000,"y":15.19},{"x":1569028440000,"y":15.19},{"x":1569028500000,"y":15.18},{"x":1569028560000,"y":15.18},{"x":1569028620000,"y":15.18},{"x":1569028680000,"y":15.18},{"x":1569028740000,"y":15.19},{"x":1569028800000,"y":15.18},{"x":1569028860000,"y":15.18},{"x":1569028920000,"y":15.18},{"x":1569028980000,"y":15.18},{"x":1569029040000,"y":15.2},{"x":1569029100000,"y":15.18},{"x":1569029160000,"y":15.18},{"x":1569029220000,"y":15.18},{"x":1569029280000,"y":15.18},{"x":1569029340000,"y":15.18},{"x":1569029400000,"y":15.18},{"x":1569029460000,"y":15.17},{"x":1569029520000,"y":15.17},{"x":1569029580000,"y":15.17},{"x":1569029640000,"y":15.17},{"x":1569029700000,"y":15.18},{"x":1569029760000,"y":15.17},{"x":1569029820000,"y":15.17},{"x":1569029880000,"y":15.17},{"x":1569029940000,"y":15.18},{"x":1569030000000,"y":15.19},{"x":1569030060000,"y":15.18},{"x":1569030120000,"y":15.18},{"x":1569030180000,"y":15.18},{"x":1569030240000,"y":15.18},{"x":1569030300000,"y":15.21},{"x":1569030360000,"y":15.18},{"x":1569030420000,"y":15.18},{"x":1569030480000,"y":15.18},{"x":1569030540000,"y":15.18},{"x":1569030600000,"y":15.19},{"x":1569030660000,"y":15.18},{"x":1569030720000,"y":15.18},{"x":1569030780000,"y":15.17},{"x":1569030840000,"y":15.17},{"x":1569030900000,"y":15.2},{"x":1569030960000,"y":15.19},{"x":1569031020000,"y":15.19},{"x":1569031080000,"y":15.19},{"x":1569031140000,"y":15.19},{"x":1569031200000,"y":15.2},{"x":1569031260000,"y":15.19},{"x":1569031320000,"y":15.19},{"x":1569031380000,"y":15.19},{"x":1569031440000,"y":15.19},{"x":1569031500000,"y":15.21},{"x":1569031560000,"y":15.17},{"x":1569031620000,"y":15.17},{"x":1569031680000,"y":15.17},{"x":1569031740000,"y":15.19},{"x":1569031800000,"y":15.19},{"x":1569031860000,"y":15.2},{"x":1569031920000,"y":15.19},{"x":1569031980000,"y":15.19},{"x":1569032040000,"y":15.19},{"x":1569032100000,"y":15.19},{"x":1569032160000,"y":15.2},{"x":1569032220000,"y":15.19},{"x":1569032280000,"y":15.19},{"x":1569032340000,"y":15.19},{"x":1569032400000,"y":15.19},{"x":1569032460000,"y":15.2},{"x":1569032520000,"y":15.18},{"x":1569032580000,"y":15.17},{"x":1569032640000,"y":15.17},{"x":1569032700000,"y":15.17},{"x":1569032760000,"y":15.18},{"x":1569032820000,"y":15.16},{"x":1569032880000,"y":15.16},{"x":1569032940000,"y":15.16},{"x":1569033000000,"y":15.17},{"x":1569033060000,"y":15.18},{"x":1569033120000,"y":15.17},{"x":1569033180000,"y":15.18},{"x":1569033240000,"y":15.18},{"x":1569033300000,"y":15.18},{"x":1569033360000,"y":15.18},{"x":1569033420000,"y":15.17},{"x":1569033480000,"y":15.17},{"x":1569033540000,"y":15.17},{"x":1569033600000,"y":15.16},{"x":1569033660000,"y":15.17},{"x":1569033720000,"y":15.17},{"x":1569033780000,"y":15.17},{"x":1569033840000,"y":15.18},{"x":1569033900000,"y":15.18},{"x":1569033960000,"y":15.19},{"x":1569034020000,"y":15.17},{"x":1569034080000,"y":15.17},{"x":1569034140000,"y":15.17},{"x":1569034200000,"y":15.17},{"x":1569034260000,"y":15.16},{"x":1569034320000,"y":15.19},{"x":1569034380000,"y":15.17},{"x":1569034440000,"y":15.17},{"x":1569034500000,"y":15.17},{"x":1569034560000,"y":15.17},{"x":1569034620000,"y":15.19},{"x":1569034680000,"y":15.17},{"x":1569034740000,"y":15.17},{"x":1569034800000,"y":15.15},{"x":1569034860000,"y":15.15},{"x":1569034920000,"y":15.18},{"x":1569034980000,"y":15.18},{"x":1569035040000,"y":15.18},{"x":1569035100000,"y":15.18},{"x":1569035160000,"y":15.18},{"x":1569035220000,"y":15.19},{"x":1569035280000,"y":15.18},{"x":1569035340000,"y":15.18},{"x":1569035400000,"y":15.17},{"x":1569035460000,"y":15.17},{"x":1569035520000,"y":15.18},{"x":1569035580000,"y":15.18},{"x":1569035640000,"y":15.18},{"x":1569035700000,"y":15.18},{"x":1569035760000,"y":15.18},{"x":1569035820000,"y":15.2},{"x":1569035880000,"y":15.17},{"x":1569035940000,"y":15.17},{"x":1569036000000,"y":15.17},{"x":1569036060000,"y":15.17},{"x":1569036120000,"y":15.18},{"x":1569036180000,"y":15.16},{"x":1569036240000,"y":15.16},{"x":1569036300000,"y":15.17},{"x":1569036360000,"y":15.17},{"x":1569036420000,"y":15.17},{"x":1569036480000,"y":15.18},{"x":1569036540000,"y":15.17},{"x":1569036600000,"y":15.18},{"x":1569036660000,"y":15.18},{"x":1569036720000,"y":15.18},{"x":1569036780000,"y":15.19},{"x":1569036840000,"y":15.18},{"x":1569036900000,"y":15.15},{"x":1569036960000,"y":15.15},{"x":1569037020000,"y":15.15},{"x":1569037080000,"y":15.18},{"x":1569037140000,"y":15.18},{"x":1569037200000,"y":15.17},{"x":1569037260000,"y":15.17},{"x":1569037320000,"y":15.17},{"x":1569037380000,"y":15.18},{"x":1569037440000,"y":15.18},{"x":1569037500000,"y":15.17},{"x":1569037560000,"y":15.17},{"x":1569037620000,"y":15.18},{"x":1569037680000,"y":15.18},{"x":1569037740000,"y":15.16},{"x":1569037800000,"y":15.17},{"x":1569037860000,"y":15.16},{"x":1569037920000,"y":15.15},{"x":1569037980000,"y":15.17},{"x":1569038040000,"y":15.18},{"x":1569038100000,"y":15.19},{"x":1569038160000,"y":15.19},{"x":1569038220000,"y":15.2},{"x":1569038280000,"y":15.21},{"x":1569038340000,"y":15.18},{"x":1569038400000,"y":15.16},{"x":1569038460000,"y":15.16},{"x":1569038520000,"y":15.16},{"x":1569038580000,"y":15.16},{"x":1569038640000,"y":15.19},{"x":1569038700000,"y":15.19},{"x":1569038760000,"y":15.19},{"x":1569038820000,"y":15.19},{"x":1569038880000,"y":15.19},{"x":1569038940000,"y":15.2},{"x":1569039000000,"y":15.19},{"x":1569039060000,"y":15.19},{"x":1569039120000,"y":15.19},{"x":1569039180000,"y":15.19},{"x":1569039240000,"y":15.21},{"x":1569039300000,"y":15.19},{"x":1569039360000,"y":15.19},{"x":1569039420000,"y":15.19},{"x":1569039480000,"y":15.19},{"x":1569039540000,"y":15.32},{"x":1569039600000,"y":15.46},{"x":1569039660000,"y":15.46},{"x":1569039720000,"y":15.46},{"x":1569039780000,"y":15.46},{"x":1569039840000,"y":15.48},{"x":1569039900000,"y":15.47},{"x":1569039960000,"y":15.47},{"x":1569040020000,"y":15.47},{"x":1569040080000,"y":15.47},{"x":1569040140000,"y":15.48},{"x":1569040200000,"y":15.49},{"x":1569040260000,"y":15.49},{"x":1569040320000,"y":15.49},{"x":1569040380000,"y":15.49},{"x":1569040440000,"y":15.81},{"x":1569040500000,"y":15.55},{"x":1569040560000,"y":15.55},{"x":1569040620000,"y":15.55},{"x":1569040680000,"y":15.55},{"x":1569040740000,"y":15.55},{"x":1569040800000,"y":15.51},{"x":1569040860000,"y":15.49},{"x":1569040920000,"y":15.49},{"x":1569040980000,"y":15.49},{"x":1569041040000,"y":15.49},{"x":1569041100000,"y":15.5},{"x":1569041160000,"y":15.49},{"x":1569041220000,"y":15.49},{"x":1569041280000,"y":15.48},{"x":1569041340000,"y":15.48},{"x":1569041400000,"y":15.49},{"x":1569041460000,"y":15.48},{"x":1569041520000,"y":15.47},{"x":1569041580000,"y":15.47},{"x":1569041640000,"y":15.47},{"x":1569041700000,"y":15.48},{"x":1569041760000,"y":15.46},{"x":1569041820000,"y":15.45},{"x":1569041880000,"y":15.45},{"x":1569041940000,"y":15.45},{"x":1569042000000,"y":15.46},{"x":1569042060000,"y":15.46},{"x":1569042120000,"y":15.46},{"x":1569042180000,"y":15.46},{"x":1569042240000,"y":15.46},{"x":1569042300000,"y":15.47},{"x":1569042360000,"y":15.46},{"x":1569042420000,"y":15.46},{"x":1569042480000,"y":15.46},{"x":1569042540000,"y":15.47},{"x":1569042600000,"y":15.48},{"x":1569042660000,"y":15.47},{"x":1569042720000,"y":15.47},{"x":1569042780000,"y":15.47},{"x":1569042840000,"y":15.47},{"x":1569042900000,"y":15.47},{"x":1569042960000,"y":15.47},{"x":1569043020000,"y":15.47},{"x":1569043080000,"y":15.47},{"x":1569043140000,"y":15.47},{"x":1569043200000,"y":15.47},{"x":1569043260000,"y":15.48},{"x":1569043320000,"y":15.47},{"x":1569043380000,"y":15.47},{"x":1569043440000,"y":15.47},{"x":1569043500000,"y":15.47},{"x":1569043560000,"y":15.47},{"x":1569043620000,"y":15.46},{"x":1569043680000,"y":15.46},{"x":1569043740000,"y":15.46},{"x":1569043800000,"y":15.46},{"x":1569043860000,"y":15.47},{"x":1569043920000,"y":15.46},{"x":1569043980000,"y":15.46},{"x":1569044040000,"y":15.46},{"x":1569044100000,"y":15.47},{"x":1569044160000,"y":15.47},{"x":1569044220000,"y":15.46},{"x":1569044280000,"y":15.45},{"x":1569044340000,"y":15.47},{"x":1569044400000,"y":15.47},{"x":1569044460000,"y":15.48},{"x":1569044520000,"y":15.47},{"x":1569044580000,"y":15.47},{"x":1569044640000,"y":15.47},{"x":1569044700000,"y":15.45},{"x":1569044760000,"y":15.46},{"x":1569044820000,"y":15.44},{"x":1569044880000,"y":15.44},{"x":1569044940000,"y":15.44},{"x":1569045000000,"y":15.45},{"x":1569045060000,"y":15.46},{"x":1569045120000,"y":15.48},{"x":1569045180000,"y":15.47},{"x":1569045240000,"y":15.47},{"x":1569045300000,"y":15.47},{"x":1569045360000,"y":15.47},{"x":1569045420000,"y":15.48},{"x":1569045480000,"y":15.47},{"x":1569045540000,"y":15.47},{"x":1569045600000,"y":15.47},{"x":1569045660000,"y":15.47},{"x":1569045720000,"y":15.48},{"x":1569045780000,"y":15.46},{"x":1569045840000,"y":15.47},{"x":1569045900000,"y":15.47},{"x":1569045960000,"y":15.47},{"x":1569046020000,"y":15.48},{"x":1569046080000,"y":15.47},{"x":1569046140000,"y":15.47},{"x":1569046200000,"y":15.47},{"x":1569046260000,"y":15.47},{"x":1569046320000,"y":15.49},{"x":1569046380000,"y":15.47},{"x":1569046440000,"y":15.47},{"x":1569046500000,"y":15.48},{"x":1569046560000,"y":15.48},{"x":1569046620000,"y":15.49},{"x":1569046680000,"y":15.48},{"x":1569046740000,"y":15.47},{"x":1569046800000,"y":15.48},{"x":1569046860000,"y":15.48},{"x":1569046920000,"y":15.48},{"x":1569046980000,"y":15.49},{"x":1569047040000,"y":15.48},{"x":1569047100000,"y":15.47},{"x":1569047160000,"y":15.47},{"x":1569047220000,"y":15.47},{"x":1569047280000,"y":15.48},{"x":1569047340000,"y":15.47},{"x":1569047400000,"y":15.46},{"x":1569047460000,"y":15.46},{"x":1569047520000,"y":15.46},{"x":1569047580000,"y":15.48},{"x":1569047640000,"y":15.47},{"x":1569047700000,"y":15.45},{"x":1569047760000,"y":15.45},{"x":1569047820000,"y":15.45},{"x":1569047880000,"y":15.48},{"x":1569047940000,"y":15.48},{"x":1569048000000,"y":15.47},{"x":1569048060000,"y":15.47},{"x":1569048120000,"y":15.47},{"x":1569048180000,"y":15.49},{"x":1569048240000,"y":15.47},{"x":1569048300000,"y":15.49},{"x":1569048360000,"y":15.49},{"x":1569048420000,"y":15.48},{"x":1569048480000,"y":15.49},{"x":1569048540000,"y":15.49},{"x":1569048600000,"y":15.49},{"x":1569048660000,"y":15.48},{"x":1569048720000,"y":15.47},{"x":1569048780000,"y":15.48},{"x":1569048840000,"y":15.47},{"x":1569048900000,"y":15.46},{"x":1569048960000,"y":15.46},{"x":1569049020000,"y":15.46},{"x":1569049080000,"y":15.47},{"x":1569049140000,"y":15.48},{"x":1569049200000,"y":15.48},{"x":1569049260000,"y":15.48},{"x":1569049320000,"y":15.48},{"x":1569049380000,"y":15.48},{"x":1569049440000,"y":15.49},{"x":1569049500000,"y":15.58},{"x":1569049560000,"y":15.56},{"x":1569049620000,"y":15.56},{"x":1569049680000,"y":15.56},{"x":1569049740000,"y":15.57},{"x":1569049800000,"y":15.56},{"x":1569049860000,"y":15.5},{"x":1569049920000,"y":15.5},{"x":1569049980000,"y":15.49},{"x":1569050040000,"y":15.51},{"x":1569050100000,"y":15.5},{"x":1569050160000,"y":15.5},{"x":1569050220000,"y":15.5},{"x":1569050280000,"y":15.5},{"x":1569050340000,"y":15.5},{"x":1569050400000,"y":15.5},{"x":1569050460000,"y":15.5},{"x":1569050520000,"y":15.5},{"x":1569050580000,"y":15.5},{"x":1569050640000,"y":15.51},{"x":1569050700000,"y":15.5},{"x":1569050760000,"y":15.5},{"x":1569050820000,"y":15.5},{"x":1569050880000,"y":15.5},{"x":1569050940000,"y":15.51},{"x":1569051000000,"y":15.5},{"x":1569051060000,"y":15.48},{"x":1569051120000,"y":15.47},{"x":1569051180000,"y":15.47},{"x":1569051240000,"y":15.49},{"x":1569051300000,"y":15.48},{"x":1569051360000,"y":15.48},{"x":1569051420000,"y":15.48},{"x":1569051480000,"y":15.48},{"x":1569051540000,"y":15.48},{"x":1569051600000,"y":15.5},{"x":1569051660000,"y":15.48},{"x":1569051720000,"y":15.48},{"x":1569051780000,"y":15.47},{"x":1569051840000,"y":15.47},{"x":1569051900000,"y":15.49},{"x":1569051960000,"y":15.48},{"x":1569052020000,"y":15.48},{"x":1569052080000,"y":15.48},{"x":1569052140000,"y":15.48},{"x":1569052200000,"y":15.49},{"x":1569052260000,"y":15.48},{"x":1569052320000,"y":15.47},{"x":1569052380000,"y":15.48},{"x":1569052440000,"y":15.48},{"x":1569052500000,"y":15.49},{"x":1569052560000,"y":15.48},{"x":1569052620000,"y":15.48},{"x":1569052680000,"y":15.48},{"x":1569052740000,"y":15.48},{"x":1569052800000,"y":15.48},{"x":1569052860000,"y":15.48},{"x":1569052920000,"y":15.48},{"x":1569052980000,"y":15.47},{"x":1569053040000,"y":15.47},{"x":1569053100000,"y":15.49},{"x":1569053160000,"y":15.47},{"x":1569053220000,"y":15.47},{"x":1569053280000,"y":15.47},{"x":1569053340000,"y":15.48},{"x":1569053400000,"y":15.49},{"x":1569053460000,"y":15.48},{"x":1569053520000,"y":15.48},{"x":1569053580000,"y":15.48},{"x":1569053640000,"y":15.48},{"x":1569053700000,"y":15.49},{"x":1569053760000,"y":15.49},{"x":1569053820000,"y":15.49},{"x":1569053880000,"y":15.49},{"x":1569053940000,"y":15.49},{"x":1569054000000,"y":15.49},{"x":1569054060000,"y":15.5},{"x":1569054120000,"y":15.49},{"x":1569054180000,"y":15.49},{"x":1569054240000,"y":15.49},{"x":1569054300000,"y":15.48},{"x":1569054360000,"y":15.49},{"x":1569054420000,"y":15.48},{"x":1569054480000,"y":15.48},{"x":1569054540000,"y":15.48},{"x":1569054600000,"y":15.5},{"x":1569054660000,"y":15.49},{"x":1569054720000,"y":15.46},{"x":1569054780000,"y":15.46},{"x":1569054840000,"y":15.46},{"x":1569054900000,"y":15.49},{"x":1569054960000,"y":15.5},{"x":1569055020000,"y":15.49},{"x":1569055080000,"y":15.49},{"x":1569055140000,"y":15.5},{"x":1569055200000,"y":15.5},{"x":1569055260000,"y":15.5},{"x":1569055320000,"y":15.47},{"x":1569055380000,"y":15.47},{"x":1569055440000,"y":15.47},{"x":1569055500000,"y":15.49},{"x":1569055560000,"y":15.5},{"x":1569055620000,"y":15.49},{"x":1569055680000,"y":15.49},{"x":1569055740000,"y":15.49},{"x":1569055800000,"y":15.5},{"x":1569055860000,"y":15.51},{"x":1569055920000,"y":15.49},{"x":1569055980000,"y":15.49},{"x":1569056040000,"y":15.49},{"x":1569056100000,"y":15.47},{"x":1569056160000,"y":15.47},{"x":1569056220000,"y":15.5},{"x":1569056280000,"y":15.5},{"x":1569056340000,"y":15.5},{"x":1569056400000,"y":15.5},{"x":1569056460000,"y":15.49},{"x":1569056520000,"y":15.48},{"x":1569056580000,"y":15.47},{"x":1569056640000,"y":15.47},{"x":1569056700000,"y":15.48},{"x":1569056760000,"y":15.48},{"x":1569056820000,"y":15.49},{"x":1569056880000,"y":15.49},{"x":1569056940000,"y":15.49},{"x":1569057000000,"y":15.49},{"x":1569057060000,"y":15.49},{"x":1569057120000,"y":15.51},{"x":1569057180000,"y":15.49},{"x":1569057240000,"y":15.49},{"x":1569057300000,"y":15.49},{"x":1569057360000,"y":15.5},{"x":1569057420000,"y":15.51},{"x":1569057480000,"y":15.5},{"x":1569057540000,"y":15.49},{"x":1569057600000,"y":15.49},{"x":1569057660000,"y":15.49},{"x":1569057720000,"y":15.5},{"x":1569057780000,"y":15.51},{"x":1569057840000,"y":15.5},{"x":1569057900000,"y":15.5},{"x":1569057960000,"y":15.5},{"x":1569058020000,"y":15.49},{"x":1569058080000,"y":15.49},{"x":1569058140000,"y":15.48},{"x":1569058200000,"y":15.5},{"x":1569058260000,"y":15.5},{"x":1569058320000,"y":15.5},{"x":1569058380000,"y":15.5},{"x":1569058440000,"y":15.49},{"x":1569058500000,"y":15.5},{"x":1569058560000,"y":15.5},{"x":1569058620000,"y":15.5},{"x":1569058680000,"y":15.51},{"x":1569058740000,"y":15.49},{"x":1569058800000,"y":15.49},{"x":1569058860000,"y":15.49},{"x":1569058920000,"y":15.5},{"x":1569058980000,"y":15.51},{"x":1569059040000,"y":15.5},{"x":1569059100000,"y":15.49},{"x":1569059160000,"y":15.49},{"x":1569059220000,"y":15.48},{"x":1569059280000,"y":15.49},{"x":1569059340000,"y":15.5},{"x":1569059400000,"y":15.5},{"x":1569059460000,"y":15.5},{"x":1569059520000,"y":15.49},{"x":1569059580000,"y":15.49},{"x":1569059640000,"y":15.47},{"x":1569059700000,"y":15.5},{"x":1569059760000,"y":15.5},{"x":1569059820000,"y":15.5},{"x":1569059880000,"y":15.49},{"x":1569059940000,"y":15.5},{"x":1569060000000,"y":15.49},{"x":1569060060000,"y":15.5},{"x":1569060120000,"y":15.5},{"x":1569060180000,"y":15.49},{"x":1569060240000,"y":15.49},{"x":1569060300000,"y":15.47},{"x":1569060360000,"y":15.47},{"x":1569060420000,"y":15.47},{"x":1569060480000,"y":15.48},{"x":1569060540000,"y":15.49},{"x":1569060600000,"y":15.47},{"x":1569060660000,"y":15.47},{"x":1569060720000,"y":15.47},{"x":1569060780000,"y":15.47},{"x":1569060840000,"y":15.48},{"x":1569060900000,"y":15.48},{"x":1569060960000,"y":15.48},{"x":1569061020000,"y":15.48},{"x":1569061080000,"y":15.48},{"x":1569061140000,"y":15.49},{"x":1569061200000,"y":15.47},{"x":1569061260000,"y":15.48},{"x":1569061320000,"y":15.48},{"x":1569061380000,"y":15.48},{"x":1569061440000,"y":15.48},{"x":1569061500000,"y":15.46},{"x":1569061560000,"y":15.46},{"x":1569061620000,"y":15.46},{"x":1569061680000,"y":15.46},{"x":1569061740000,"y":15.46},{"x":1569061800000,"y":15.49},{"x":1569061860000,"y":15.48},{"x":1569061920000,"y":15.48},{"x":1569061980000,"y":15.48},{"x":1569062040000,"y":15.48},{"x":1569062100000,"y":15.81},{"x":1569062160000,"y":15.55},{"x":1569062220000,"y":15.55},{"x":1569062280000,"y":15.55},{"x":1569062340000,"y":15.55},{"x":1569062400000,"y":15.52},{"x":1569062460000,"y":15.49},{"x":1569062520000,"y":15.48},{"x":1569062580000,"y":15.48},{"x":1569062640000,"y":15.49},{"x":1569062700000,"y":15.5},{"x":1569062760000,"y":15.49},{"x":1569062820000,"y":15.49},{"x":1569062880000,"y":15.49},{"x":1569062940000,"y":15.48},{"x":1569063000000,"y":15.49},{"x":1569063060000,"y":15.49},{"x":1569063120000,"y":15.48},{"x":1569063180000,"y":15.47},{"x":1569063240000,"y":15.47},{"x":1569063300000,"y":15.49},{"x":1569063360000,"y":15.46},{"x":1569063420000,"y":15.46},{"x":1569063480000,"y":15.46},{"x":1569063540000,"y":15.46},{"x":1569063600000,"y":15.48},{"x":1569063660000,"y":15.47},{"x":1569063720000,"y":15.47},{"x":1569063780000,"y":15.47},{"x":1569063840000,"y":15.47},{"x":1569063900000,"y":15.5},{"x":1569063960000,"y":15.5},{"x":1569064020000,"y":15.49},{"x":1569064080000,"y":15.49},{"x":1569064140000,"y":15.49},{"x":1569064200000,"y":15.49},{"x":1569064260000,"y":15.5},{"x":1569064320000,"y":15.49},{"x":1569064380000,"y":15.49},{"x":1569064440000,"y":15.49},{"x":1569064500000,"y":15.49},{"x":1569064560000,"y":15.5},{"x":1569064620000,"y":15.49},{"x":1569064680000,"y":15.49},{"x":1569064740000,"y":15.49},{"x":1569064800000,"y":15.49},{"x":1569064860000,"y":15.49},{"x":1569064920000,"y":15.48},{"x":1569064980000,"y":15.48},{"x":1569065040000,"y":15.48},{"x":1569065100000,"y":15.53},{"x":1569065160000,"y":15.5},{"x":1569065220000,"y":15.49},{"x":1569065280000,"y":15.49},{"x":1569065340000,"y":15.49},{"x":1569065400000,"y":15.49},{"x":1569065460000,"y":15.51},{"x":1569065520000,"y":15.5},{"x":1569065580000,"y":15.49},{"x":1569065640000,"y":15.49},{"x":1569065700000,"y":15.49},{"x":1569065760000,"y":15.5},{"x":1569065820000,"y":15.49},{"x":1569065880000,"y":15.49},{"x":1569065940000,"y":15.5},{"x":1569066000000,"y":15.49},{"x":1569066060000,"y":15.49},{"x":1569066120000,"y":15.51},{"x":1569066180000,"y":15.49},{"x":1569066240000,"y":15.49},{"x":1569066300000,"y":15.48},{"x":1569066360000,"y":15.48},{"x":1569066420000,"y":15.47},{"x":1569066480000,"y":15.59},{"x":1569066540000,"y":15.54},{"x":1569066600000,"y":15.53},{"x":1569066660000,"y":15.53},{"x":1569066720000,"y":15.56},{"x":1569066780000,"y":15.54},{"x":1569066840000,"y":15.48},{"x":1569066900000,"y":15.48},{"x":1569066960000,"y":15.48},{"x":1569067020000,"y":15.48},{"x":1569067080000,"y":15.47},{"x":1569067140000,"y":15.47},{"x":1569067200000,"y":15.48},{"x":1569067260000,"y":15.48},{"x":1569067320000,"y":15.49},{"x":1569067380000,"y":15.48},{"x":1569067440000,"y":15.48},{"x":1569067500000,"y":15.49},{"x":1569067560000,"y":15.49},{"x":1569067620000,"y":15.51},{"x":1569067680000,"y":15.48},{"x":1569067740000,"y":15.48},{"x":1569067800000,"y":15.48},{"x":1569067860000,"y":15.48},{"x":1569067920000,"y":15.5},{"x":1569067980000,"y":15.49},{"x":1569068040000,"y":15.48},{"x":1569068100000,"y":15.5},{"x":1569068160000,"y":15.5},{"x":1569068220000,"y":15.5},{"x":1569068280000,"y":15.48},{"x":1569068340000,"y":15.49},{"x":1569068400000,"y":15.49},{"x":1569068460000,"y":15.49},{"x":1569068520000,"y":15.49},{"x":1569068580000,"y":15.49},{"x":1569068640000,"y":15.48},{"x":1569068700000,"y":15.49},{"x":1569068760000,"y":15.49},{"x":1569068820000,"y":15.49},{"x":1569068880000,"y":15.51},{"x":1569068940000,"y":15.49},{"x":1569069000000,"y":15.49},{"x":1569069060000,"y":15.49},{"x":1569069120000,"y":15.49},{"x":1569069180000,"y":15.5},{"x":1569069240000,"y":15.49},{"x":1569069300000,"y":15.49},{"x":1569069360000,"y":15.49},{"x":1569069420000,"y":15.49},{"x":1569069480000,"y":15.49},{"x":1569069540000,"y":15.47},{"x":1569069600000,"y":15.47},{"x":1569069660000,"y":15.47},{"x":1569069720000,"y":15.47},{"x":1569069780000,"y":15.49},{"x":1569069840000,"y":15.47},{"x":1569069900000,"y":15.47},{"x":1569069960000,"y":15.47},{"x":1569070020000,"y":15.47},{"x":1569070080000,"y":15.48},{"x":1569070140000,"y":15.47},{"x":1569070200000,"y":15.47},{"x":1569070260000,"y":15.47},{"x":1569070320000,"y":15.47},{"x":1569070380000,"y":15.48},{"x":1569070440000,"y":15.48},{"x":1569070500000,"y":15.47},{"x":1569070560000,"y":15.47},{"x":1569070620000,"y":15.47},{"x":1569070680000,"y":15.48},{"x":1569070740000,"y":15.49},{"x":1569070800000,"y":15.49},{"x":1569070860000,"y":15.49},{"x":1569070920000,"y":15.49},{"x":1569070980000,"y":15.49},{"x":1569071040000,"y":15.49},{"x":1569071100000,"y":15.49},{"x":1569071160000,"y":15.49},{"x":1569071220000,"y":15.49},{"x":1569071280000,"y":15.49},{"x":1569071340000,"y":15.5},{"x":1569071400000,"y":15.49},{"x":1569071460000,"y":15.49},{"x":1569071520000,"y":15.49},{"x":1569071580000,"y":15.49},{"x":1569071640000,"y":15.5},{"x":1569071700000,"y":15.48},{"x":1569071760000,"y":15.48},{"x":1569071820000,"y":15.48},{"x":1569071880000,"y":15.48},{"x":1569071940000,"y":15.5},{"x":1569072000000,"y":15.47},{"x":1569072060000,"y":15.47},{"x":1569072120000,"y":15.46},{"x":1569072180000,"y":15.46},{"x":1569072240000,"y":15.49},{"x":1569072300000,"y":15.49},{"x":1569072360000,"y":15.49},{"x":1569072420000,"y":15.49},{"x":1569072480000,"y":15.49},{"x":1569072540000,"y":15.5},{"x":1569072600000,"y":15.49},{"x":1569072660000,"y":15.49},{"x":1569072720000,"y":15.49},{"x":1569072780000,"y":15.49},{"x":1569072840000,"y":15.5},{"x":1569072900000,"y":15.5},{"x":1569072960000,"y":15.5},{"x":1569073020000,"y":15.5},{"x":1569073080000,"y":15.5},{"x":1569073140000,"y":15.51},{"x":1569073200000,"y":15.48},{"x":1569073260000,"y":15.49},{"x":1569073320000,"y":15.49},{"x":1569073380000,"y":15.48},{"x":1569073440000,"y":15.48},{"x":1569073500000,"y":15.5},{"x":1569073560000,"y":15.49},{"x":1569073620000,"y":15.49},{"x":1569073680000,"y":15.49},{"x":1569073740000,"y":15.49},{"x":1569073800000,"y":15.5},{"x":1569073860000,"y":15.49},{"x":1569073920000,"y":15.48},{"x":1569073980000,"y":15.48},{"x":1569074040000,"y":15.48},{"x":1569074100000,"y":15.48},{"x":1569074160000,"y":15.46},{"x":1569074220000,"y":15.46},{"x":1569074280000,"y":15.46},{"x":1569074340000,"y":15.46},{"x":1569074400000,"y":15.51},{"x":1569074460000,"y":15.49},{"x":1569074520000,"y":15.49},{"x":1569074580000,"y":15.49},{"x":1569074640000,"y":15.49},{"x":1569074700000,"y":15.5},{"x":1569074760000,"y":15.48},{"x":1569074820000,"y":15.48},{"x":1569074880000,"y":15.49},{"x":1569074940000,"y":15.5},{"x":1569075000000,"y":15.5},{"x":1569075060000,"y":15.49},{"x":1569075120000,"y":15.49},{"x":1569075180000,"y":15.49},{"x":1569075240000,"y":15.49},{"x":1569075300000,"y":15.51},{"x":1569075360000,"y":15.5},{"x":1569075420000,"y":15.49},{"x":1569075480000,"y":15.5},{"x":1569075540000,"y":15.5},{"x":1569075600000,"y":15.51},{"x":1569075660000,"y":15.5},{"x":1569075720000,"y":15.49},{"x":1569075780000,"y":15.49},{"x":1569075840000,"y":15.49},{"x":1569075900000,"y":15.48},{"x":1569075960000,"y":15.5},{"x":1569076020000,"y":15.49},{"x":1569076080000,"y":15.49},{"x":1569076140000,"y":15.49},{"x":1569076200000,"y":15.5},{"x":1569076260000,"y":15.5},{"x":1569076320000,"y":15.49},{"x":1569076380000,"y":15.49},{"x":1569076440000,"y":15.49},{"x":1569076500000,"y":15.5},{"x":1569076560000,"y":15.51},{"x":1569076620000,"y":15.48},{"x":1569076680000,"y":15.48},{"x":1569076740000,"y":15.51},{"x":1569076800000,"y":15.5},{"x":1569076860000,"y":15.52},{"x":1569076920000,"y":15.5},{"x":1569076980000,"y":15.5},{"x":1569077040000,"y":15.51},{"x":1569077100000,"y":15.49},{"x":1569077160000,"y":15.5},{"x":1569077220000,"y":15.5},{"x":1569077280000,"y":15.5},{"x":1569077340000,"y":15.5},{"x":1569077400000,"y":15.5},{"x":1569077460000,"y":15.51},{"x":1569077520000,"y":15.49},{"x":1569077580000,"y":15.49},{"x":1569077640000,"y":15.49},{"x":1569077700000,"y":15.48},{"x":1569077760000,"y":15.49},{"x":1569077820000,"y":15.5},{"x":1569077880000,"y":15.5},{"x":1569077940000,"y":15.5},{"x":1569078000000,"y":15.5},{"x":1569078060000,"y":15.5},{"x":1569078120000,"y":15.5},{"x":1569078180000,"y":15.5},{"x":1569078240000,"y":15.5},{"x":1569078300000,"y":15.51},{"x":1569078360000,"y":15.52},{"x":1569078420000,"y":15.52},{"x":1569078480000,"y":15.5},{"x":1569078540000,"y":15.5},{"x":1569078600000,"y":15.49},{"x":1569078660000,"y":15.49},{"x":1569078720000,"y":15.5},{"x":1569078780000,"y":15.49},{"x":1569078840000,"y":15.49},{"x":1569078900000,"y":15.49},{"x":1569078960000,"y":15.5},{"x":1569079020000,"y":15.5},{"x":1569079080000,"y":15.49},{"x":1569079140000,"y":15.49},{"x":1569079200000,"y":15.5},{"x":1569079260000,"y":15.49},{"x":1569079320000,"y":15.5},{"x":1569079380000,"y":15.49},{"x":1569079440000,"y":15.49},{"x":1569079500000,"y":15.48},{"x":1569079560000,"y":15.48},{"x":1569079620000,"y":15.48},{"x":1569079680000,"y":15.46},{"x":1569079740000,"y":15.46},{"x":1569079800000,"y":15.49},{"x":1569079860000,"y":15.49},{"x":1569079920000,"y":15.51},{"x":1569079980000,"y":15.44},{"x":1569080040000,"y":15.44},{"x":1569080100000,"y":15.48},{"x":1569080160000,"y":15.48},{"x":1569080220000,"y":15.48},{"x":1569080280000,"y":15.51},{"x":1569080340000,"y":15.49},{"x":1569080400000,"y":15.47},{"x":1569080460000,"y":15.48},{"x":1569080520000,"y":15.48},{"x":1569080580000,"y":15.51},{"x":1569080640000,"y":15.5},{"x":1569080700000,"y":15.5},{"x":1569080760000,"y":15.49},{"x":1569080820000,"y":15.5},{"x":1569080880000,"y":15.51},{"x":1569080940000,"y":15.49},{"x":1569081000000,"y":15.5},{"x":1569081060000,"y":15.5},{"x":1569081120000,"y":15.49},{"x":1569081180000,"y":15.49},{"x":1569081240000,"y":15.46},{"x":1569081300000,"y":15.48},{"x":1569081360000,"y":15.48},{"x":1569081420000,"y":15.48},{"x":1569081480000,"y":15.49},{"x":1569081540000,"y":15.49},{"x":1569081600000,"y":15.49},{"x":1569081660000,"y":15.49},{"x":1569081720000,"y":15.49},{"x":1569081780000,"y":15.5},{"x":1569081840000,"y":15.5},{"x":1569081900000,"y":15.5},{"x":1569081960000,"y":15.5},{"x":1569082020000,"y":15.5},{"x":1569082080000,"y":15.52},{"x":1569082140000,"y":15.49},{"x":1569082200000,"y":15.48},{"x":1569082260000,"y":15.48},{"x":1569082320000,"y":15.48},{"x":1569082380000,"y":15.48},{"x":1569082440000,"y":15.5},{"x":1569082500000,"y":15.5},{"x":1569082560000,"y":15.5},{"x":1569082620000,"y":15.5},{"x":1569082680000,"y":15.5},{"x":1569082740000,"y":15.51},{"x":1569082800000,"y":15.5},{"x":1569082860000,"y":15.5},{"x":1569082920000,"y":15.5},{"x":1569082980000,"y":15.5},{"x":1569083040000,"y":15.5},{"x":1569083100000,"y":15.49},{"x":1569083160000,"y":15.49},{"x":1569083220000,"y":15.49},{"x":1569083280000,"y":15.49},{"x":1569083340000,"y":15.51},{"x":1569083400000,"y":15.5},{"x":1569083460000,"y":15.5},{"x":1569083520000,"y":15.5},{"x":1569083580000,"y":15.5},{"x":1569083640000,"y":15.51},{"x":1569083700000,"y":15.5},{"x":1569083760000,"y":15.5},{"x":1569083820000,"y":15.5},{"x":1569083880000,"y":15.5},{"x":1569083940000,"y":15.86},{"x":1569084000000,"y":15.57},{"x":1569084060000,"y":15.57},{"x":1569084120000,"y":15.57},{"x":1569084180000,"y":15.57},{"x":1569084240000,"y":15.57},{"x":1569084300000,"y":15.51},{"x":1569084360000,"y":15.51},{"x":1569084420000,"y":15.51},{"x":1569084480000,"y":15.51},{"x":1569084540000,"y":15.52},{"x":1569084600000,"y":15.5},{"x":1569084660000,"y":15.49},{"x":1569084720000,"y":15.49},{"x":1569084780000,"y":15.49},{"x":1569084840000,"y":15.49},{"x":1569084900000,"y":15.5},{"x":1569084960000,"y":15.5},{"x":1569085020000,"y":15.5},{"x":1569085080000,"y":15.49},{"x":1569085140000,"y":15.49},{"x":1569085200000,"y":15.5},{"x":1569085260000,"y":15.49},{"x":1569085320000,"y":15.49},{"x":1569085380000,"y":15.49},{"x":1569085440000,"y":15.49},{"x":1569085500000,"y":15.51},{"x":1569085560000,"y":15.5},{"x":1569085620000,"y":15.5},{"x":1569085680000,"y":15.5},{"x":1569085740000,"y":15.51},{"x":1569085800000,"y":15.53},{"x":1569085860000,"y":15.51},{"x":1569085920000,"y":15.51},{"x":1569085980000,"y":15.51},{"x":1569086040000,"y":15.52},{"x":1569086100000,"y":15.51},{"x":1569086160000,"y":15.51},{"x":1569086220000,"y":15.51},{"x":1569086280000,"y":15.51},{"x":1569086340000,"y":15.51},{"x":1569086400000,"y":15.51},{"x":1569086460000,"y":15.5},{"x":1569086520000,"y":15.49},{"x":1569086580000,"y":15.49},{"x":1569086640000,"y":15.49},{"x":1569086700000,"y":15.51},{"x":1569086760000,"y":15.51},{"x":1569086820000,"y":15.5},{"x":1569086880000,"y":15.5},{"x":1569086940000,"y":15.5},{"x":1569087000000,"y":15.5},{"x":1569087060000,"y":15.53},{"x":1569087120000,"y":15.52},{"x":1569087180000,"y":15.52},{"x":1569087240000,"y":15.52},{"x":1569087300000,"y":15.51},{"x":1569087360000,"y":15.53},{"x":1569087420000,"y":15.51},{"x":1569087480000,"y":15.52},{"x":1569087540000,"y":15.5},{"x":1569087600000,"y":15.51},{"x":1569087660000,"y":15.52},{"x":1569087720000,"y":15.51},{"x":1569087780000,"y":15.51},{"x":1569087840000,"y":15.51},{"x":1569087900000,"y":15.51},{"x":1569087960000,"y":15.52},{"x":1569088020000,"y":15.5},{"x":1569088080000,"y":15.49},{"x":1569088140000,"y":15.49},{"x":1569088200000,"y":15.49},{"x":1569088260000,"y":15.5},{"x":1569088320000,"y":15.49},{"x":1569088380000,"y":15.48},{"x":1569088440000,"y":15.48},{"x":1569088500000,"y":15.5},{"x":1569088560000,"y":15.51},{"x":1569088620000,"y":15.49},{"x":1569088680000,"y":15.49},{"x":1569088740000,"y":15.49},{"x":1569088800000,"y":15.5},{"x":1569088860000,"y":15.5},{"x":1569088920000,"y":15.5},{"x":1569088980000,"y":15.5},{"x":1569089040000,"y":15.5},{"x":1569089100000,"y":15.5},{"x":1569089160000,"y":15.5},{"x":1569089220000,"y":15.5},{"x":1569089280000,"y":15.49},{"x":1569089340000,"y":15.5},{"x":1569089400000,"y":15.51},{"x":1569089460000,"y":15.51},{"x":1569089520000,"y":15.51},{"x":1569089580000,"y":15.5},{"x":1569089640000,"y":15.49},{"x":1569089700000,"y":15.5},{"x":1569089760000,"y":15.5},{"x":1569089820000,"y":15.52},{"x":1569089880000,"y":15.5},{"x":1569089940000,"y":15.5},{"x":1569090000000,"y":15.5},{"x":1569090060000,"y":15.49},{"x":1569090120000,"y":15.51},{"x":1569090180000,"y":15.51},{"x":1569090240000,"y":15.51},{"x":1569090300000,"y":15.5},{"x":1569090360000,"y":15.5},{"x":1569090420000,"y":15.51},{"x":1569090480000,"y":15.5},{"x":1569090540000,"y":15.5},{"x":1569090600000,"y":15.49},{"x":1569090660000,"y":15.49},{"x":1569090720000,"y":15.5},{"x":1569090780000,"y":15.49},{"x":1569090840000,"y":15.49},{"x":1569090900000,"y":15.49},{"x":1569090960000,"y":15.49},{"x":1569091020000,"y":15.49},{"x":1569091080000,"y":15.5},{"x":1569091140000,"y":15.5},{"x":1569091200000,"y":15.5},{"x":1569091260000,"y":15.5},{"x":1569091320000,"y":15.5},{"x":1569091380000,"y":15.51},{"x":1569091440000,"y":15.49},{"x":1569091500000,"y":15.51},{"x":1569091560000,"y":15.51},{"x":1569091620000,"y":15.51},{"x":1569091680000,"y":15.52},{"x":1569091740000,"y":15.51},{"x":1569091800000,"y":15.51},{"x":1569091860000,"y":15.51},{"x":1569091920000,"y":15.5},{"x":1569091980000,"y":15.51},{"x":1569092040000,"y":15.51},{"x":1569092100000,"y":15.47},{"x":1569092160000,"y":15.47},{"x":1569092220000,"y":15.47},{"x":1569092280000,"y":15.49},{"x":1569092340000,"y":15.5},{"x":1569092400000,"y":15.51},{"x":1569092460000,"y":15.51},{"x":1569092520000,"y":15.51},{"x":1569092580000,"y":15.52},{"x":1569092640000,"y":15.51},{"x":1569092700000,"y":15.49},{"x":1569092760000,"y":15.49},{"x":1569092820000,"y":15.49},{"x":1569092880000,"y":15.49},{"x":1569092940000,"y":15.52},{"x":1569093000000,"y":15.51},{"x":1569093060000,"y":15.51},{"x":1569093120000,"y":15.51},{"x":1569093180000,"y":15.51},{"x":1569093240000,"y":15.52},{"x":1569093300000,"y":15.51},{"x":1569093360000,"y":15.51},{"x":1569093420000,"y":15.5},{"x":1569093480000,"y":15.5},{"x":1569093540000,"y":15.51},{"x":1569093600000,"y":15.5},{"x":1569093660000,"y":15.5},{"x":1569093720000,"y":15.5},{"x":1569093780000,"y":15.5},{"x":1569093840000,"y":15.5},{"x":1569093900000,"y":15.51},{"x":1569093960000,"y":15.51},{"x":1569094020000,"y":15.51},{"x":1569094080000,"y":15.51},{"x":1569094140000,"y":15.53},{"x":1569094200000,"y":15.51},{"x":1569094260000,"y":15.5},{"x":1569094320000,"y":15.51},{"x":1569094380000,"y":15.51},{"x":1569094440000,"y":15.53},{"x":1569094500000,"y":15.51},{"x":1569094560000,"y":15.51},{"x":1569094620000,"y":15.51},{"x":1569094680000,"y":15.51},{"x":1569094740000,"y":15.52},{"x":1569094800000,"y":15.52},{"x":1569094860000,"y":15.51},{"x":1569094920000,"y":15.51},{"x":1569094980000,"y":15.51},{"x":1569095040000,"y":15.51},{"x":1569095100000,"y":15.53},{"x":1569095160000,"y":15.52},{"x":1569095220000,"y":15.51},{"x":1569095280000,"y":15.51},{"x":1569095340000,"y":15.51},{"x":1569095400000,"y":15.52},{"x":1569095460000,"y":15.51},{"x":1569095520000,"y":15.5},{"x":1569095580000,"y":15.49},{"x":1569095640000,"y":15.49},{"x":1569095700000,"y":15.52},{"x":1569095760000,"y":15.51},{"x":1569095820000,"y":15.5},{"x":1569095880000,"y":15.51},{"x":1569095940000,"y":15.51},{"x":1569096000000,"y":15.52},{"x":1569096060000,"y":15.51},{"x":1569096120000,"y":15.51},{"x":1569096180000,"y":15.51},{"x":1569096240000,"y":15.51},{"x":1569096300000,"y":15.53},{"x":1569096360000,"y":15.5},{"x":1569096420000,"y":15.5},{"x":1569096480000,"y":15.5},{"x":1569096540000,"y":15.52},{"x":1569096600000,"y":15.53},{"x":1569096660000,"y":15.51},{"x":1569096720000,"y":15.51},{"x":1569096780000,"y":15.51},{"x":1569096840000,"y":15.51},{"x":1569096900000,"y":15.51},{"x":1569096960000,"y":15.48},{"x":1569097020000,"y":15.49},{"x":1569097080000,"y":15.47},{"x":1569097140000,"y":15.47},{"x":1569097200000,"y":15.48},{"x":1569097260000,"y":15.47},{"x":1569097320000,"y":15.47},{"x":1569097380000,"y":15.47},{"x":1569097440000,"y":15.47},{"x":1569097500000,"y":15.49},{"x":1569097560000,"y":15.5},{"x":1569097620000,"y":15.49},{"x":1569097680000,"y":15.48},{"x":1569097740000,"y":15.48},{"x":1569097800000,"y":15.49},{"x":1569097860000,"y":15.51},{"x":1569097920000,"y":15.51},{"x":1569097980000,"y":15.51},{"x":1569098040000,"y":15.5},{"x":1569098100000,"y":15.49},{"x":1569098160000,"y":15.52},{"x":1569098220000,"y":15.5},{"x":1569098280000,"y":15.5},{"x":1569098340000,"y":15.5},{"x":1569098400000,"y":15.47},{"x":1569098460000,"y":15.49},{"x":1569098520000,"y":15.48},{"x":1569098580000,"y":15.48},{"x":1569098640000,"y":15.48},{"x":1569098700000,"y":15.46},{"x":1569098760000,"y":15.48},{"x":1569098820000,"y":15.48},{"x":1569098880000,"y":15.48},{"x":1569098940000,"y":15.48},{"x":1569099000000,"y":15.5},{"x":1569099060000,"y":15.51},{"x":1569099120000,"y":15.49},{"x":1569099180000,"y":15.49},{"x":1569099240000,"y":15.49},{"x":1569099300000,"y":15.49},{"x":1569099360000,"y":15.49},{"x":1569099420000,"y":15.51},{"x":1569099480000,"y":15.51},{"x":1569099540000,"y":15.5},{"x":1569099600000,"y":15.46},{"x":1569099660000,"y":15.46},{"x":1569099720000,"y":15.51},{"x":1569099780000,"y":15.5},{"x":1569099840000,"y":15.5},{"x":1569099900000,"y":15.5},{"x":1569099960000,"y":15.5},{"x":1569100020000,"y":15.51},{"x":1569100080000,"y":15.51},{"x":1569100140000,"y":15.51},{"x":1569100200000,"y":15.47},{"x":1569100260000,"y":15.47},{"x":1569100320000,"y":15.5},{"x":1569100380000,"y":15.49},{"x":1569100440000,"y":15.49},{"x":1569100500000,"y":15.51},{"x":1569100560000,"y":15.51},{"x":1569100620000,"y":15.51},{"x":1569100680000,"y":15.5},{"x":1569100740000,"y":15.5},{"x":1569100800000,"y":15.51},{"x":1569100860000,"y":15.51},{"x":1569100920000,"y":15.51},{"x":1569100980000,"y":15.49},{"x":1569101040000,"y":15.49},{"x":1569101100000,"y":15.5},{"x":1569101160000,"y":15.5},{"x":1569101220000,"y":15.51},{"x":1569101280000,"y":15.51},{"x":1569101340000,"y":15.51},{"x":1569101400000,"y":15.5},{"x":1569101460000,"y":15.5},{"x":1569101520000,"y":15.52},{"x":1569101580000,"y":15.5},{"x":1569101640000,"y":15.5},{"x":1569101700000,"y":15.51},{"x":1569101760000,"y":15.51},{"x":1569101820000,"y":15.51},{"x":1569101880000,"y":15.52},{"x":1569101940000,"y":15.51},{"x":1569102000000,"y":15.51},{"x":1569102060000,"y":15.51},{"x":1569102120000,"y":15.51},{"x":1569102180000,"y":15.51},{"x":1569102240000,"y":15.5},{"x":1569102300000,"y":15.5},{"x":1569102360000,"y":15.51},{"x":1569102420000,"y":15.5},{"x":1569102480000,"y":15.53},{"x":1569102540000,"y":16.3},{"x":1569102600000,"y":15.84},{"x":1569102660000,"y":15.85},{"x":1569102720000,"y":15.99},{"x":1569102780000,"y":23.4},{"x":1569102840000,"y":15.89},{"x":1569102900000,"y":15.83},{"x":1569102960000,"y":15.83},{"x":1569103020000,"y":15.83},{"x":1569103080000,"y":15.84},{"x":1569103140000,"y":15.83},{"x":1569103200000,"y":15.81},{"x":1569103260000,"y":15.74},{"x":1569103320000,"y":25.67},{"x":1569103380000,"y":22.66},{"x":1569103440000,"y":17.11},{"x":1569103500000,"y":17.11},{"x":1569103560000,"y":17.11},{"x":1569103620000,"y":23.87},{"x":1569103680000,"y":23.51},{"x":1569103740000,"y":16.94},{"x":1569103800000,"y":15.86},{"x":1569103860000,"y":15.86},{"x":1569103920000,"y":15.85},{"x":1569103980000,"y":15.86},{"x":1569104040000,"y":15.84},{"x":1569104100000,"y":15.84},{"x":1569104160000,"y":15.85},{"x":1569104220000,"y":15.85},{"x":1569104280000,"y":15.85},{"x":1569104340000,"y":19.12},{"x":1569104400000,"y":30.31},{"x":1569104460000,"y":30.04},{"x":1569104520000,"y":19.05},{"x":1569104580000,"y":17.09},{"x":1569104640000,"y":16.31},{"x":1569104700000,"y":15.85},{"x":1569104760000,"y":15.85},{"x":1569104820000,"y":15.85},{"x":1569104880000,"y":15.85},{"x":1569104940000,"y":15.87},{"x":1569105000000,"y":15.85},{"x":1569105060000,"y":19.82},{"x":1569105120000,"y":27.49},{"x":1569105180000,"y":30.77},{"x":1569105240000,"y":18.45},{"x":1569105300000,"y":17.16},{"x":1569105360000,"y":17.16},{"x":1569105420000,"y":29.88},{"x":1569105480000,"y":19.08},{"x":1569105540000,"y":17.17},{"x":1569105600000,"y":17.15},{"x":1569105660000,"y":17.15},{"x":1569105720000,"y":17.16},{"x":1569105780000,"y":16.13},{"x":1569105840000,"y":16.13},{"x":1569105900000,"y":15.94},{"x":1569105960000,"y":15.94},{"x":1569106020000,"y":15.93},{"x":1569106080000,"y":15.93},{"x":1569106140000,"y":15.93},{"x":1569106200000,"y":15.88},{"x":1569106260000,"y":15.87},{"x":1569106320000,"y":15.86},{"x":1569106380000,"y":15.83},{"x":1569106440000,"y":15.83},{"x":1569106500000,"y":15.86},{"x":1569106560000,"y":15.84},{"x":1569106620000,"y":15.84},{"x":1569106680000,"y":15.84},{"x":1569106740000,"y":15.84},{"x":1569106800000,"y":15.86},{"x":1569106860000,"y":15.85},{"x":1569106920000,"y":15.85},{"x":1569106980000,"y":15.85},{"x":1569107040000,"y":15.85},{"x":1569107100000,"y":15.86},{"x":1569107160000,"y":15.84},{"x":1569107220000,"y":15.84},{"x":1569107280000,"y":15.84},{"x":1569107340000,"y":15.84},{"x":1569107400000,"y":15.84},{"x":1569107460000,"y":15.79},{"x":1569107520000,"y":15.79},{"x":1569107580000,"y":15.79},{"x":1569107640000,"y":15.79},{"x":1569107700000,"y":15.83},{"x":1569107760000,"y":15.82},{"x":1569107820000,"y":15.82},{"x":1569107880000,"y":15.82},{"x":1569107940000,"y":15.82},{"x":1569108000000,"y":15.85},{"x":1569108060000,"y":15.85},{"x":1569108120000,"y":15.85},{"x":1569108180000,"y":15.85},{"x":1569108240000,"y":15.85},{"x":1569108300000,"y":15.84},{"x":1569108360000,"y":15.85},{"x":1569108420000,"y":15.84},{"x":1569108480000,"y":15.83},{"x":1569108540000,"y":15.83},{"x":1569108600000,"y":15.81},{"x":1569108660000,"y":15.85},{"x":1569108720000,"y":15.84},{"x":1569108780000,"y":15.84},{"x":1569108840000,"y":15.84},{"x":1569108900000,"y":15.85},{"x":1569108960000,"y":15.86},{"x":1569109020000,"y":15.85},{"x":1569109080000,"y":15.85},{"x":1569109140000,"y":15.85},{"x":1569109200000,"y":15.86},{"x":1569109260000,"y":15.87},{"x":1569109320000,"y":15.85},{"x":1569109380000,"y":15.85},{"x":1569109440000,"y":15.85},{"x":1569109500000,"y":15.85},{"x":1569109560000,"y":15.84},{"x":1569109620000,"y":15.81},{"x":1569109680000,"y":15.81},{"x":1569109740000,"y":15.81},{"x":1569109800000,"y":15.84},{"x":1569109860000,"y":15.85},{"x":1569109920000,"y":15.85},{"x":1569109980000,"y":15.85},{"x":1569110040000,"y":15.85},{"x":1569110100000,"y":15.84},{"x":1569110160000,"y":15.85},{"x":1569110220000,"y":15.85},{"x":1569110280000,"y":15.85},{"x":1569110340000,"y":15.85},{"x":1569110400000,"y":15.83},{"x":1569110460000,"y":15.84},{"x":1569110520000,"y":15.85},{"x":1569110580000,"y":15.85},{"x":1569110640000,"y":15.85},{"x":1569110700000,"y":15.85},{"x":1569110760000,"y":15.85},{"x":1569110820000,"y":15.85},{"x":1569110880000,"y":15.84},{"x":1569110940000,"y":15.86},{"x":1569111000000,"y":15.84},{"x":1569111060000,"y":15.83},{"x":1569111120000,"y":15.86},{"x":1569111180000,"y":15.86},{"x":1569111240000,"y":15.86},{"x":1569111300000,"y":15.85},{"x":1569111360000,"y":15.85},{"x":1569111420000,"y":15.86},{"x":1569111480000,"y":15.85},{"x":1569111540000,"y":15.85},{"x":1569111600000,"y":15.86},{"x":1569111660000,"y":15.86},{"x":1569111720000,"y":15.87},{"x":1569111780000,"y":15.86},{"x":1569111840000,"y":15.86},{"x":1569111900000,"y":15.86},{"x":1569111960000,"y":15.85},{"x":1569112020000,"y":15.87},{"x":1569112080000,"y":15.86},{"x":1569112140000,"y":15.86},{"x":1569112200000,"y":15.86},{"x":1569112260000,"y":15.86},{"x":1569112320000,"y":15.86},{"x":1569112380000,"y":15.83},{"x":1569112440000,"y":15.83},{"x":1569112500000,"y":15.84},{"x":1569112560000,"y":15.84},{"x":1569112620000,"y":15.86},{"x":1569112680000,"y":15.86},{"x":1569112740000,"y":15.85},{"x":1569112800000,"y":15.86},{"x":1569112860000,"y":15.86},{"x":1569112920000,"y":15.86},{"x":1569112980000,"y":15.85},{"x":1569113040000,"y":15.84},{"x":1569113100000,"y":15.86},{"x":1569113160000,"y":15.86},{"x":1569113220000,"y":15.86},{"x":1569113280000,"y":15.85},{"x":1569113340000,"y":15.83},{"x":1569113400000,"y":15.85},{"x":1569113460000,"y":15.85},{"x":1569113520000,"y":15.8},{"x":1569113580000,"y":15.79},{"x":1569113640000,"y":15.78},{"x":1569113700000,"y":15.78},{"x":1569113760000,"y":15.78},{"x":1569113820000,"y":15.78},{"x":1569113880000,"y":15.79},{"x":1569113940000,"y":15.78},{"x":1569114000000,"y":15.77},{"x":1569114060000,"y":15.77},{"x":1569114120000,"y":15.77},{"x":1569114180000,"y":15.77},{"x":1569114240000,"y":15.75},{"x":1569114300000,"y":15.76},{"x":1569114360000,"y":15.76},{"x":1569114420000,"y":15.76},{"x":1569114480000,"y":15.77},{"x":1569114540000,"y":15.79},{"x":1569114600000,"y":15.78},{"x":1569114660000,"y":15.77},{"x":1569114720000,"y":15.78},{"x":1569114780000,"y":15.79},{"x":1569114840000,"y":15.79},{"x":1569114900000,"y":15.78},{"x":1569114960000,"y":15.78},{"x":1569115020000,"y":15.78},{"x":1569115080000,"y":15.79},{"x":1569115140000,"y":15.78},{"x":1569115200000,"y":15.79},{"x":1569115260000,"y":15.79},{"x":1569115320000,"y":15.78},{"x":1569115380000,"y":15.78},{"x":1569115440000,"y":15.79},{"x":1569115500000,"y":15.76},{"x":1569115560000,"y":15.76},{"x":1569115620000,"y":15.75},{"x":1569115680000,"y":15.74},{"x":1569115740000,"y":15.77},{"x":1569115800000,"y":15.76},{"x":1569115860000,"y":15.76},{"x":1569115920000,"y":15.76},{"x":1569115980000,"y":15.76},{"x":1569116040000,"y":15.78},{"x":1569116100000,"y":15.76},{"x":1569116160000,"y":15.76},{"x":1569116220000,"y":15.76},{"x":1569116280000,"y":15.76},{"x":1569116340000,"y":15.78},{"x":1569116400000,"y":15.77},{"x":1569116460000,"y":15.77},{"x":1569116520000,"y":15.77},{"x":1569116580000,"y":15.77},{"x":1569116640000,"y":15.78},{"x":1569116700000,"y":15.78},{"x":1569116760000,"y":15.78},{"x":1569116820000,"y":15.78},{"x":1569116880000,"y":15.77},{"x":1569116940000,"y":15.78},{"x":1569117000000,"y":15.77},{"x":1569117060000,"y":15.76},{"x":1569117120000,"y":15.75},{"x":1569117180000,"y":15.75},{"x":1569117240000,"y":15.77},{"x":1569117300000,"y":15.75},{"x":1569117360000,"y":15.75},{"x":1569117420000,"y":15.75},{"x":1569117480000,"y":15.75},{"x":1569117540000,"y":15.75},{"x":1569117600000,"y":15.77},{"x":1569117660000,"y":15.76},{"x":1569117720000,"y":15.75},{"x":1569117780000,"y":15.75},{"x":1569117840000,"y":15.75},{"x":1569117900000,"y":15.79},{"x":1569117960000,"y":15.78},{"x":1569118020000,"y":15.78},{"x":1569118080000,"y":15.78},{"x":1569118140000,"y":15.77},{"x":1569118200000,"y":15.78},{"x":1569118260000,"y":15.77},{"x":1569118320000,"y":15.77},{"x":1569118380000,"y":15.77},{"x":1569118440000,"y":15.77},{"x":1569118500000,"y":15.78},{"x":1569118560000,"y":15.76},{"x":1569118620000,"y":15.76},{"x":1569118680000,"y":15.76},{"x":1569118740000,"y":15.76},{"x":1569118800000,"y":15.79},{"x":1569118860000,"y":15.78},{"x":1569118920000,"y":15.78},{"x":1569118980000,"y":15.78},{"x":1569119040000,"y":15.77},{"x":1569119100000,"y":15.78},{"x":1569119160000,"y":15.78},{"x":1569119220000,"y":15.78},{"x":1569119280000,"y":15.78},{"x":1569119340000,"y":15.78},{"x":1569119400000,"y":15.79},{"x":1569119460000,"y":15.78},{"x":1569119520000,"y":15.78},{"x":1569119580000,"y":15.77},{"x":1569119640000,"y":15.78},{"x":1569119700000,"y":15.77},{"x":1569119760000,"y":15.79},{"x":1569119820000,"y":15.78},{"x":1569119880000,"y":15.78},{"x":1569119940000,"y":15.76},{"x":1569120000000,"y":15.77},{"x":1569120060000,"y":15.8},{"x":1569120120000,"y":15.78},{"x":1569120180000,"y":15.78},{"x":1569120240000,"y":15.78},{"x":1569120300000,"y":15.76},{"x":1569120360000,"y":15.77},{"x":1569120420000,"y":15.77},{"x":1569120480000,"y":15.77},{"x":1569120540000,"y":15.77},{"x":1569120600000,"y":15.78},{"x":1569120660000,"y":15.78},{"x":1569120720000,"y":15.76},{"x":1569120780000,"y":15.76},{"x":1569120840000,"y":15.76},{"x":1569120900000,"y":15.76},{"x":1569120960000,"y":15.78},{"x":1569121020000,"y":15.78},{"x":1569121080000,"y":15.78},{"x":1569121140000,"y":15.78},{"x":1569121200000,"y":15.78},{"x":1569121260000,"y":15.8},{"x":1569121320000,"y":15.79},{"x":1569121380000,"y":15.79},{"x":1569121440000,"y":15.79},{"x":1569121500000,"y":15.78},{"x":1569121560000,"y":15.8},{"x":1569121620000,"y":15.78},{"x":1569121680000,"y":15.78},{"x":1569121740000,"y":15.77},{"x":1569121800000,"y":15.79},{"x":1569121860000,"y":15.79},{"x":1569121920000,"y":15.8},{"x":1569121980000,"y":15.78},{"x":1569122040000,"y":15.78},{"x":1569122100000,"y":15.79},{"x":1569122160000,"y":15.79},{"x":1569122220000,"y":15.8},{"x":1569122280000,"y":15.79},{"x":1569122340000,"y":15.79},{"x":1569122400000,"y":15.79},{"x":1569122460000,"y":15.79},{"x":1569122520000,"y":15.81},{"x":1569122580000,"y":15.79},{"x":1569122640000,"y":15.79},{"x":1569122700000,"y":15.78},{"x":1569122760000,"y":15.78},{"x":1569122820000,"y":15.8},{"x":1569122880000,"y":15.78},{"x":1569122940000,"y":15.78},{"x":1569123000000,"y":15.79},{"x":1569123060000,"y":15.79},{"x":1569123120000,"y":15.8},{"x":1569123180000,"y":15.79},{"x":1569123240000,"y":15.79},{"x":1569123300000,"y":15.79},{"x":1569123360000,"y":15.79},{"x":1569123420000,"y":15.8},{"x":1569123480000,"y":15.79},{"x":1569123540000,"y":15.78},{"x":1569123600000,"y":15.78},{"x":1569123660000,"y":15.78},{"x":1569123720000,"y":15.78},{"x":1569123780000,"y":15.8},{"x":1569123840000,"y":15.79},{"x":1569123900000,"y":15.79},{"x":1569123960000,"y":15.79},{"x":1569124020000,"y":15.79},{"x":1569124080000,"y":15.8},{"x":1569124140000,"y":15.79},{"x":1569124200000,"y":15.79},{"x":1569124260000,"y":15.79},{"x":1569124320000,"y":15.79},{"x":1569124380000,"y":15.77},{"x":1569124440000,"y":15.75},{"x":1569124500000,"y":15.77},{"x":1569124560000,"y":15.77},{"x":1569124620000,"y":15.77},{"x":1569124680000,"y":15.8},{"x":1569124740000,"y":15.79},{"x":1569124800000,"y":15.78},{"x":1569124860000,"y":15.78},{"x":1569124920000,"y":15.77},{"x":1569124980000,"y":15.78},{"x":1569125040000,"y":15.77},{"x":1569125100000,"y":15.77},{"x":1569125160000,"y":15.77},{"x":1569125220000,"y":15.77},{"x":1569125280000,"y":15.78},{"x":1569125340000,"y":15.77},{"x":1569125400000,"y":15.77},{"x":1569125460000,"y":15.77},{"x":1569125520000,"y":15.77},{"x":1569125580000,"y":15.78},{"x":1569125640000,"y":15.77},{"x":1569125700000,"y":15.75},{"x":1569125760000,"y":15.75},{"x":1569125820000,"y":15.75},{"x":1569125880000,"y":15.76},{"x":1569125940000,"y":15.77},{"x":1569126000000,"y":15.77},{"x":1569126060000,"y":15.77},{"x":1569126120000,"y":15.77},{"x":1569126180000,"y":15.77},{"x":1569126240000,"y":15.78},{"x":1569126300000,"y":15.77},{"x":1569126360000,"y":15.77},{"x":1569126420000,"y":15.77},{"x":1569126480000,"y":15.76},{"x":1569126540000,"y":15.75},{"x":1569126600000,"y":15.76},{"x":1569126660000,"y":15.77},{"x":1569126720000,"y":15.77},{"x":1569126780000,"y":15.77},{"x":1569126840000,"y":15.78},{"x":1569126900000,"y":15.78},{"x":1569126960000,"y":15.78},{"x":1569127020000,"y":15.78},{"x":1569127080000,"y":15.78},{"x":1569127140000,"y":15.79},{"x":1569127200000,"y":15.77},{"x":1569127260000,"y":15.77},{"x":1569127320000,"y":15.77},{"x":1569127380000,"y":15.77},{"x":1569127440000,"y":15.78},{"x":1569127500000,"y":15.76},{"x":1569127560000,"y":15.77},{"x":1569127620000,"y":15.76},{"x":1569127680000,"y":15.76},{"x":1569127740000,"y":16.05},{"x":1569127800000,"y":15.84},{"x":1569127860000,"y":15.84},{"x":1569127920000,"y":15.84},{"x":1569127980000,"y":15.84},{"x":1569128040000,"y":15.84},{"x":1569128100000,"y":15.78},{"x":1569128160000,"y":15.77},{"x":1569128220000,"y":15.77},{"x":1569128280000,"y":15.77},{"x":1569128340000,"y":15.78},{"x":1569128400000,"y":15.78},{"x":1569128460000,"y":15.77},{"x":1569128520000,"y":15.77},{"x":1569128580000,"y":15.77},{"x":1569128640000,"y":15.77},{"x":1569128700000,"y":15.79},{"x":1569128760000,"y":15.77},{"x":1569128820000,"y":15.77},{"x":1569128880000,"y":15.78},{"x":1569128940000,"y":15.78},{"x":1569129000000,"y":15.79},{"x":1569129060000,"y":15.78},{"x":1569129120000,"y":15.78},{"x":1569129180000,"y":15.78},{"x":1569129240000,"y":15.78},{"x":1569129300000,"y":15.77},{"x":1569129360000,"y":15.78},{"x":1569129420000,"y":15.78},{"x":1569129480000,"y":15.78},{"x":1569129540000,"y":15.78},{"x":1569129600000,"y":15.78},{"x":1569129660000,"y":15.77},{"x":1569129720000,"y":15.77},{"x":1569129780000,"y":15.78},{"x":1569129840000,"y":15.78},{"x":1569129900000,"y":15.79},{"x":1569129960000,"y":15.78},{"x":1569130020000,"y":15.78},{"x":1569130080000,"y":15.78},{"x":1569130140000,"y":15.78},{"x":1569130200000,"y":15.79},{"x":1569130260000,"y":15.79},{"x":1569130320000,"y":15.78},{"x":1569130380000,"y":15.78},{"x":1569130440000,"y":15.78},{"x":1569130500000,"y":15.79},{"x":1569130560000,"y":15.79},{"x":1569130620000,"y":15.79},{"x":1569130680000,"y":15.79},{"x":1569130740000,"y":15.78},{"x":1569130800000,"y":15.78},{"x":1569130860000,"y":15.78},{"x":1569130920000,"y":15.77},{"x":1569130980000,"y":15.77},{"x":1569131040000,"y":15.77},{"x":1569131100000,"y":15.78},{"x":1569131160000,"y":15.8},{"x":1569131220000,"y":15.78},{"x":1569131280000,"y":15.78},{"x":1569131340000,"y":15.78},{"x":1569131400000,"y":15.78},{"x":1569131460000,"y":15.79},{"x":1569131520000,"y":15.78},{"x":1569131580000,"y":15.77},{"x":1569131640000,"y":15.77},{"x":1569131700000,"y":15.78},{"x":1569131760000,"y":15.78},{"x":1569131820000,"y":15.77},{"x":1569131880000,"y":15.77},{"x":1569131940000,"y":15.77},{"x":1569132000000,"y":15.78},{"x":1569132060000,"y":15.78},{"x":1569132120000,"y":15.75},{"x":1569132180000,"y":15.75},{"x":1569132240000,"y":15.75},{"x":1569132300000,"y":15.78},{"x":1569132360000,"y":15.79},{"x":1569132420000,"y":15.79},{"x":1569132480000,"y":15.79},{"x":1569132540000,"y":15.79},{"x":1569132600000,"y":15.79},{"x":1569132660000,"y":15.8},{"x":1569132720000,"y":15.79},{"x":1569132780000,"y":15.79},{"x":1569132840000,"y":15.79},{"x":1569132900000,"y":15.76},{"x":1569132960000,"y":15.76},{"x":1569133020000,"y":15.8},{"x":1569133080000,"y":15.79},{"x":1569133140000,"y":15.79},{"x":1569133200000,"y":15.79},{"x":1569133260000,"y":15.8},{"x":1569133320000,"y":15.8},{"x":1569133380000,"y":15.79},{"x":1569133440000,"y":15.79},{"x":1569133500000,"y":15.76},{"x":1569133560000,"y":15.75},{"x":1569133620000,"y":15.79},{"x":1569133680000,"y":15.78},{"x":1569133740000,"y":15.78},{"x":1569133800000,"y":15.78},{"x":1569133860000,"y":15.78},{"x":1569133920000,"y":15.81},{"x":1569133980000,"y":15.79},{"x":1569134040000,"y":15.79},{"x":1569134100000,"y":15.77},{"x":1569134160000,"y":15.77},{"x":1569134220000,"y":15.78},{"x":1569134280000,"y":15.76},{"x":1569134340000,"y":15.77},{"x":1569134400000,"y":15.77},{"x":1569134460000,"y":15.77},{"x":1569134520000,"y":15.78},{"x":1569134580000,"y":15.78},{"x":1569134640000,"y":15.78},{"x":1569134700000,"y":15.77},{"x":1569134760000,"y":15.77},{"x":1569134820000,"y":15.77},{"x":1569134880000,"y":15.75},{"x":1569134940000,"y":15.76},{"x":1569135000000,"y":15.78},{"x":1569135060000,"y":15.78},{"x":1569135120000,"y":15.78},{"x":1569135180000,"y":15.75},{"x":1569135240000,"y":15.75},{"x":1569135300000,"y":15.75},{"x":1569135360000,"y":15.75},{"x":1569135420000,"y":15.76},{"x":1569135480000,"y":15.77},{"x":1569135540000,"y":15.75},{"x":1569135600000,"y":15.72},{"x":1569135660000,"y":15.72},{"x":1569135720000,"y":15.72},{"x":1569135780000,"y":15.76},{"x":1569135840000,"y":15.76},{"x":1569135900000,"y":15.78},{"x":1569135960000,"y":15.78},{"x":1569136020000,"y":15.78},{"x":1569136080000,"y":15.78},{"x":1569136140000,"y":15.77},{"x":1569136200000,"y":15.77},{"x":1569136260000,"y":15.77},{"x":1569136320000,"y":15.78},{"x":1569136380000,"y":15.79},{"x":1569136440000,"y":15.78},{"x":1569136500000,"y":15.76},{"x":1569136560000,"y":15.76},{"x":1569136620000,"y":15.77},{"x":1569136680000,"y":15.78},{"x":1569136740000,"y":15.77},{"x":1569136800000,"y":15.78},{"x":1569136860000,"y":15.78},{"x":1569136920000,"y":15.78},{"x":1569136980000,"y":15.79},{"x":1569137040000,"y":15.78},{"x":1569137100000,"y":15.77},{"x":1569137160000,"y":15.77},{"x":1569137220000,"y":15.77},{"x":1569137280000,"y":15.78},{"x":1569137340000,"y":15.78},{"x":1569137400000,"y":15.78},{"x":1569137460000,"y":15.78},{"x":1569137520000,"y":15.78},{"x":1569137580000,"y":15.78},{"x":1569137640000,"y":15.8},{"x":1569137700000,"y":15.78},{"x":1569137760000,"y":15.78},{"x":1569137820000,"y":15.78},{"x":1569137880000,"y":15.77},{"x":1569137940000,"y":15.78},{"x":1569138000000,"y":15.78},{"x":1569138060000,"y":15.78},{"x":1569138120000,"y":15.78},{"x":1569138180000,"y":15.78},{"x":1569138240000,"y":15.79},{"x":1569138300000,"y":15.78},{"x":1569138360000,"y":15.77},{"x":1569138420000,"y":15.77},{"x":1569138480000,"y":15.77},{"x":1569138540000,"y":15.77},{"x":1569138600000,"y":15.76},{"x":1569138660000,"y":15.76},{"x":1569138720000,"y":15.77},{"x":1569138780000,"y":15.77},{"x":1569138840000,"y":15.78},{"x":1569138900000,"y":15.78},{"x":1569138960000,"y":15.78},{"x":1569139020000,"y":15.78},{"x":1569139080000,"y":15.78},{"x":1569139140000,"y":15.8},{"x":1569139200000,"y":15.78},{"x":1569139260000,"y":15.77},{"x":1569139320000,"y":15.77},{"x":1569139380000,"y":15.77},{"x":1569139440000,"y":15.78},{"x":1569139500000,"y":15.79},{"x":1569139560000,"y":15.78},{"x":1569139620000,"y":15.77},{"x":1569139680000,"y":15.77},{"x":1569139740000,"y":15.78},{"x":1569139800000,"y":15.8},{"x":1569139860000,"y":15.79},{"x":1569139920000,"y":15.79},{"x":1569139980000,"y":15.79},{"x":1569140040000,"y":15.79},{"x":1569140100000,"y":15.79},{"x":1569140160000,"y":15.78},{"x":1569140220000,"y":15.78},{"x":1569140280000,"y":15.78},{"x":1569140340000,"y":15.78},{"x":1569140400000,"y":15.8},{"x":1569140460000,"y":15.79},{"x":1569140520000,"y":15.79},{"x":1569140580000,"y":15.79},{"x":1569140640000,"y":15.79},{"x":1569140700000,"y":15.77},{"x":1569140760000,"y":15.77},{"x":1569140820000,"y":15.77},{"x":1569140880000,"y":15.77},{"x":1569140940000,"y":15.77},{"x":1569141000000,"y":15.79},{"x":1569141060000,"y":15.79},{"x":1569141120000,"y":15.79},{"x":1569141180000,"y":15.79},{"x":1569141240000,"y":15.79},{"x":1569141300000,"y":15.8},{"x":1569141360000,"y":15.78},{"x":1569141420000,"y":15.78},{"x":1569141480000,"y":15.78},{"x":1569141540000,"y":15.8},{"x":1569141600000,"y":15.78},{"x":1569141660000,"y":15.78},{"x":1569141720000,"y":15.78},{"x":1569141780000,"y":15.78},{"x":1569141840000,"y":15.78},{"x":1569141900000,"y":15.78},{"x":1569141960000,"y":15.79},{"x":1569142020000,"y":15.78},{"x":1569142080000,"y":15.78},{"x":1569142140000,"y":15.78},{"x":1569142200000,"y":15.79},{"x":1569142260000,"y":15.8},{"x":1569142320000,"y":15.78},{"x":1569142380000,"y":15.78},{"x":1569142440000,"y":15.78},{"x":1569142500000,"y":15.76},{"x":1569142560000,"y":15.79},{"x":1569142620000,"y":15.79},{"x":1569142680000,"y":15.79},{"x":1569142740000,"y":15.79},{"x":1569142800000,"y":15.79},{"x":1569142860000,"y":15.8},{"x":1569142920000,"y":15.8},{"x":1569142980000,"y":15.79},{"x":1569143040000,"y":15.79},{"x":1569143100000,"y":15.79},{"x":1569143160000,"y":15.81},{"x":1569143220000,"y":15.8},{"x":1569143280000,"y":15.8},{"x":1569143340000,"y":15.8},{"x":1569143400000,"y":15.78},{"x":1569143460000,"y":15.78},{"x":1569143520000,"y":15.77},{"x":1569143580000,"y":15.77},{"x":1569143640000,"y":15.76},{"x":1569143700000,"y":15.76},{"x":1569143760000,"y":15.77},{"x":1569143820000,"y":15.77},{"x":1569143880000,"y":15.77},{"x":1569143940000,"y":15.77},{"x":1569144000000,"y":15.76},{"x":1569144060000,"y":15.77},{"x":1569144120000,"y":15.77},{"x":1569144180000,"y":15.77},{"x":1569144240000,"y":15.77},{"x":1569144300000,"y":15.77},{"x":1569144360000,"y":15.77},{"x":1569144420000,"y":15.78},{"x":1569144480000,"y":15.77},{"x":1569144540000,"y":15.77},{"x":1569144600000,"y":15.77},{"x":1569144660000,"y":15.77},{"x":1569144720000,"y":15.78},{"x":1569144780000,"y":15.77},{"x":1569144840000,"y":15.77},{"x":1569144900000,"y":15.76},{"x":1569144960000,"y":15.76},{"x":1569145020000,"y":15.78},{"x":1569145080000,"y":15.78},{"x":1569145140000,"y":15.77},{"x":1569145200000,"y":15.75},{"x":1569145260000,"y":15.75},{"x":1569145320000,"y":15.77},{"x":1569145380000,"y":15.77},{"x":1569145440000,"y":15.77},{"x":1569145500000,"y":15.77},{"x":1569145560000,"y":15.77},{"x":1569145620000,"y":15.77},{"x":1569145680000,"y":15.76},{"x":1569145740000,"y":15.76},{"x":1569145800000,"y":15.77},{"x":1569145860000,"y":15.77},{"x":1569145920000,"y":15.78},{"x":1569145980000,"y":15.78},{"x":1569146040000,"y":15.78},{"x":1569146100000,"y":15.77},{"x":1569146160000,"y":15.77},{"x":1569146220000,"y":15.79},{"x":1569146280000,"y":15.77},{"x":1569146340000,"y":15.78},{"x":1569146400000,"y":15.78},{"x":1569146460000,"y":15.78},{"x":1569146520000,"y":15.78},{"x":1569146580000,"y":15.78},{"x":1569146640000,"y":15.77},{"x":1569146700000,"y":15.77},{"x":1569146760000,"y":15.77},{"x":1569146820000,"y":15.77},{"x":1569146880000,"y":15.78},{"x":1569146940000,"y":15.77},{"x":1569147000000,"y":15.77},{"x":1569147060000,"y":15.77},{"x":1569147120000,"y":15.77},{"x":1569147180000,"y":15.79},{"x":1569147240000,"y":15.78},{"x":1569147300000,"y":15.78},{"x":1569147360000,"y":15.78},{"x":1569147420000,"y":15.78},{"x":1569147480000,"y":15.79},{"x":1569147540000,"y":15.78},{"x":1569147600000,"y":15.78},{"x":1569147660000,"y":15.78},{"x":1569147720000,"y":15.78},{"x":1569147780000,"y":15.79},{"x":1569147840000,"y":15.79},{"x":1569147900000,"y":15.77},{"x":1569147960000,"y":15.77},{"x":1569148020000,"y":15.76},{"x":1569148080000,"y":15.79},{"x":1569148140000,"y":15.78},{"x":1569148200000,"y":15.77},{"x":1569148260000,"y":15.77},{"x":1569148320000,"y":15.77},{"x":1569148380000,"y":15.79},{"x":1569148440000,"y":15.78},{"x":1569148500000,"y":15.79},{"x":1569148560000,"y":15.79},{"x":1569148620000,"y":15.79},{"x":1569148680000,"y":15.79},{"x":1569148740000,"y":15.79},{"x":1569148800000,"y":15.79},{"x":1569148860000,"y":15.79},{"x":1569148920000,"y":15.79},{"x":1569148980000,"y":15.79},{"x":1569149040000,"y":15.8},{"x":1569149100000,"y":15.79},{"x":1569149160000,"y":15.79},{"x":1569149220000,"y":15.79},{"x":1569149280000,"y":15.79},{"x":1569149340000,"y":15.8},{"x":1569149400000,"y":15.79},{"x":1569149460000,"y":15.79},{"x":1569149520000,"y":15.79},{"x":1569149580000,"y":15.78},{"x":1569149640000,"y":16.03},{"x":1569149700000,"y":15.86},{"x":1569149760000,"y":15.86},{"x":1569149820000,"y":15.85},{"x":1569149880000,"y":15.85},{"x":1569149940000,"y":15.84},{"x":1569150000000,"y":15.79},{"x":1569150060000,"y":15.79},{"x":1569150120000,"y":15.79},{"x":1569150180000,"y":15.78},{"x":1569150240000,"y":15.79},{"x":1569150300000,"y":15.78},{"x":1569150360000,"y":15.79},{"x":1569150420000,"y":15.79},{"x":1569150480000,"y":15.79},{"x":1569150540000,"y":15.81},{"x":1569150600000,"y":15.79},{"x":1569150660000,"y":15.79},{"x":1569150720000,"y":15.79},{"x":1569150780000,"y":15.79},{"x":1569150840000,"y":15.79},{"x":1569150900000,"y":15.81},{"x":1569150960000,"y":15.79},{"x":1569151020000,"y":15.78},{"x":1569151080000,"y":15.78},{"x":1569151140000,"y":15.78},{"x":1569151200000,"y":15.79},{"x":1569151260000,"y":15.77},{"x":1569151320000,"y":15.77},{"x":1569151380000,"y":15.77},{"x":1569151440000,"y":15.77},{"x":1569151500000,"y":15.85},{"x":1569151560000,"y":15.78},{"x":1569151620000,"y":15.78},{"x":1569151680000,"y":15.79},{"x":1569151740000,"y":15.79},{"x":1569151800000,"y":15.8},{"x":1569151860000,"y":15.77},{"x":1569151920000,"y":15.77},{"x":1569151980000,"y":15.77},{"x":1569152040000,"y":15.77},{"x":1569152100000,"y":15.78},{"x":1569152160000,"y":15.76},{"x":1569152220000,"y":15.76},{"x":1569152280000,"y":15.76},{"x":1569152340000,"y":15.79},{"x":1569152400000,"y":15.81},{"x":1569152460000,"y":15.79},{"x":1569152520000,"y":15.79},{"x":1569152580000,"y":15.79},{"x":1569152640000,"y":15.79},{"x":1569152700000,"y":15.79},{"x":1569152760000,"y":15.76},{"x":1569152820000,"y":15.76},{"x":1569152880000,"y":15.76},{"x":1569152940000,"y":15.77},{"x":1569153000000,"y":15.81},{"x":1569153060000,"y":15.78},{"x":1569153120000,"y":15.78},{"x":1569153180000,"y":15.77},{"x":1569153240000,"y":15.77},{"x":1569153300000,"y":15.77},{"x":1569153360000,"y":15.79},{"x":1569153420000,"y":15.77},{"x":1569153480000,"y":15.77},{"x":1569153540000,"y":15.77},{"x":1569153600000,"y":15.78},{"x":1569153660000,"y":15.79},{"x":1569153720000,"y":15.77},{"x":1569153780000,"y":15.77},{"x":1569153840000,"y":15.77},{"x":1569153900000,"y":15.78},{"x":1569153960000,"y":15.79},{"x":1569154020000,"y":15.77},{"x":1569154080000,"y":15.77},{"x":1569154140000,"y":15.77},{"x":1569154200000,"y":15.76},{"x":1569154260000,"y":15.78},{"x":1569154320000,"y":15.78},{"x":1569154380000,"y":15.78},{"x":1569154440000,"y":15.78},{"x":1569154500000,"y":15.76},{"x":1569154560000,"y":15.77},{"x":1569154620000,"y":15.77},{"x":1569154680000,"y":15.77},{"x":1569154740000,"y":15.77},{"x":1569154800000,"y":15.77},{"x":1569154860000,"y":15.78},{"x":1569154920000,"y":15.78},{"x":1569154980000,"y":15.78},{"x":1569155040000,"y":15.78},{"x":1569155100000,"y":15.78},{"x":1569155160000,"y":15.79},{"x":1569155220000,"y":15.79},{"x":1569155280000,"y":15.79},{"x":1569155340000,"y":15.79},{"x":1569155400000,"y":15.78},{"x":1569155460000,"y":15.78},{"x":1569155520000,"y":15.8},{"x":1569155580000,"y":15.79},{"x":1569155640000,"y":15.79},{"x":1569155700000,"y":15.79},{"x":1569155760000,"y":15.78},{"x":1569155820000,"y":15.79},{"x":1569155880000,"y":15.78},{"x":1569155940000,"y":15.79},{"x":1569156000000,"y":15.79},{"x":1569156060000,"y":15.79},{"x":1569156120000,"y":15.8},{"x":1569156180000,"y":15.79},{"x":1569156240000,"y":15.79},{"x":1569156300000,"y":15.76},{"x":1569156360000,"y":15.76},{"x":1569156420000,"y":15.79},{"x":1569156480000,"y":15.79},{"x":1569156540000,"y":15.78},{"x":1569156600000,"y":15.79},{"x":1569156660000,"y":15.79},{"x":1569156720000,"y":15.8},{"x":1569156780000,"y":15.75},{"x":1569156840000,"y":15.75},{"x":1569156900000,"y":15.79},{"x":1569156960000,"y":15.79},{"x":1569157020000,"y":15.8},{"x":1569157080000,"y":15.79},{"x":1569157140000,"y":15.79},{"x":1569157200000,"y":15.78},{"x":1569157260000,"y":15.78},{"x":1569157320000,"y":15.78},{"x":1569157380000,"y":15.8},{"x":1569157440000,"y":15.78},{"x":1569157500000,"y":15.78},{"x":1569157560000,"y":15.78},{"x":1569157620000,"y":15.78},{"x":1569157680000,"y":15.79},{"x":1569157740000,"y":15.79},{"x":1569157800000,"y":15.79},{"x":1569157860000,"y":15.78},{"x":1569157920000,"y":15.78},{"x":1569157980000,"y":15.79},{"x":1569158040000,"y":15.78},{"x":1569158100000,"y":15.78},{"x":1569158160000,"y":15.78},{"x":1569158220000,"y":15.78},{"x":1569158280000,"y":15.8},{"x":1569158340000,"y":15.79},{"x":1569158400000,"y":15.79},{"x":1569158460000,"y":15.79},{"x":1569158520000,"y":15.79},{"x":1569158580000,"y":15.78},{"x":1569158640000,"y":15.74},{"x":1569158700000,"y":15.76},{"x":1569158760000,"y":15.76},{"x":1569158820000,"y":15.77},{"x":1569158880000,"y":15.78},{"x":1569158940000,"y":15.78},{"x":1569159000000,"y":15.79},{"x":1569159060000,"y":15.79},{"x":1569159120000,"y":15.79},{"x":1569159180000,"y":15.8},{"x":1569159240000,"y":15.79},{"x":1569159300000,"y":15.79},{"x":1569159360000,"y":15.79},{"x":1569159420000,"y":15.79},{"x":1569159480000,"y":15.8},{"x":1569159540000,"y":15.79},{"x":1569159600000,"y":15.79},{"x":1569159660000,"y":15.79},{"x":1569159720000,"y":15.79},{"x":1569159780000,"y":15.79},{"x":1569159840000,"y":15.81},{"x":1569159900000,"y":15.79},{"x":1569159960000,"y":15.78},{"x":1569160020000,"y":15.78},{"x":1569160080000,"y":15.78},{"x":1569160140000,"y":15.82},{"x":1569160200000,"y":15.8},{"x":1569160260000,"y":15.8},{"x":1569160320000,"y":15.79},{"x":1569160380000,"y":15.78},{"x":1569160440000,"y":15.77},{"x":1569160500000,"y":15.78},{"x":1569160560000,"y":15.78},{"x":1569160620000,"y":15.78},{"x":1569160680000,"y":15.78},{"x":1569160740000,"y":15.78},{"x":1569160800000,"y":15.78},{"x":1569160860000,"y":15.78},{"x":1569160920000,"y":15.78},{"x":1569160980000,"y":15.78},{"x":1569161040000,"y":15.79},{"x":1569161100000,"y":15.79},{"x":1569161160000,"y":15.79},{"x":1569161220000,"y":15.79},{"x":1569161280000,"y":15.79},{"x":1569161340000,"y":15.81},{"x":1569161400000,"y":15.79},{"x":1569161460000,"y":15.79},{"x":1569161520000,"y":15.79},{"x":1569161580000,"y":15.79},{"x":1569161640000,"y":15.8},{"x":1569161700000,"y":15.75},{"x":1569161760000,"y":15.74},{"x":1569161820000,"y":15.74},{"x":1569161880000,"y":15.74},{"x":1569161940000,"y":15.74},{"x":1569162000000,"y":15.78},{"x":1569162060000,"y":15.76},{"x":1569162120000,"y":15.76},{"x":1569162180000,"y":15.76},{"x":1569162240000,"y":15.76},{"x":1569162300000,"y":15.79},{"x":1569162360000,"y":15.78},{"x":1569162420000,"y":15.78},{"x":1569162480000,"y":15.79},{"x":1569162540000,"y":15.79},{"x":1569162600000,"y":15.78},{"x":1569162660000,"y":15.76},{"x":1569162720000,"y":15.76},{"x":1569162780000,"y":15.76},{"x":1569162840000,"y":15.76},{"x":1569162900000,"y":15.79},{"x":1569162960000,"y":15.77},{"x":1569163020000,"y":15.77},{"x":1569163080000,"y":15.77},{"x":1569163140000,"y":15.78},{"x":1569163200000,"y":15.8},{"x":1569163260000,"y":15.78},{"x":1569163320000,"y":15.78},{"x":1569163380000,"y":15.78},{"x":1569163440000,"y":15.78},{"x":1569163500000,"y":15.8},{"x":1569163560000,"y":15.78},{"x":1569163620000,"y":15.78},{"x":1569163680000,"y":15.78},{"x":1569163740000,"y":15.77},{"x":1569163800000,"y":15.78},{"x":1569163860000,"y":15.8},{"x":1569163920000,"y":15.79},{"x":1569163980000,"y":15.78},{"x":1569164040000,"y":15.77},{"x":1569164100000,"y":15.78},{"x":1569164160000,"y":15.79},{"x":1569164220000,"y":15.78},{"x":1569164280000,"y":15.78},{"x":1569164340000,"y":15.78},{"x":1569164400000,"y":15.79},{"x":1569164460000,"y":15.8},{"x":1569164520000,"y":15.78},{"x":1569164580000,"y":15.78},{"x":1569164640000,"y":15.78},{"x":1569164700000,"y":15.79},{"x":1569164760000,"y":15.8},{"x":1569164820000,"y":15.79},{"x":1569164880000,"y":15.79},{"x":1569164940000,"y":15.79},{"x":1569165000000,"y":15.78},{"x":1569165060000,"y":15.79},{"x":1569165120000,"y":15.79},{"x":1569165180000,"y":15.79},{"x":1569165240000,"y":15.79},{"x":1569165300000,"y":15.8},{"x":1569165360000,"y":15.81},{"x":1569165420000,"y":15.78},{"x":1569165480000,"y":15.78},{"x":1569165540000,"y":15.78},{"x":1569165600000,"y":15.78},{"x":1569165660000,"y":15.8},{"x":1569165720000,"y":15.79},{"x":1569165780000,"y":15.79},{"x":1569165840000,"y":15.79},{"x":1569165900000,"y":15.79},{"x":1569165960000,"y":15.8},{"x":1569166020000,"y":15.77},{"x":1569166080000,"y":15.77},{"x":1569166140000,"y":15.77},{"x":1569166200000,"y":15.8},{"x":1569166260000,"y":15.8},{"x":1569166320000,"y":15.76},{"x":1569166380000,"y":15.75},{"x":1569166440000,"y":15.75},{"x":1569166500000,"y":15.79},{"x":1569166560000,"y":15.78},{"x":1569166620000,"y":15.81},{"x":1569166680000,"y":15.8},{"x":1569166740000,"y":15.8},{"x":1569166800000,"y":15.79},{"x":1569166860000,"y":15.79},{"x":1569166920000,"y":15.8},{"x":1569166980000,"y":15.8},{"x":1569167040000,"y":15.8},{"x":1569167100000,"y":15.79},{"x":1569167160000,"y":15.79},{"x":1569167220000,"y":15.79},{"x":1569167280000,"y":15.77},{"x":1569167340000,"y":15.77},{"x":1569167400000,"y":15.79},{"x":1569167460000,"y":15.79},{"x":1569167520000,"y":15.81},{"x":1569167580000,"y":15.79},{"x":1569167640000,"y":15.79},{"x":1569167700000,"y":15.8},{"x":1569167760000,"y":15.8},{"x":1569167820000,"y":15.8},{"x":1569167880000,"y":15.76},{"x":1569167940000,"y":15.76},{"x":1569168000000,"y":15.78},{"x":1569168060000,"y":15.78},{"x":1569168120000,"y":15.79},{"x":1569168180000,"y":15.79},{"x":1569168240000,"y":15.79},{"x":1569168300000,"y":15.8},{"x":1569168360000,"y":15.8},{"x":1569168420000,"y":15.8},{"x":1569168480000,"y":15.77},{"x":1569168540000,"y":15.8},{"x":1569168600000,"y":15.81},{"x":1569168660000,"y":15.81},{"x":1569168720000,"y":15.8},{"x":1569168780000,"y":15.81},{"x":1569168840000,"y":15.79},{"x":1569168900000,"y":15.77},{"x":1569168960000,"y":15.77},{"x":1569169020000,"y":15.78},{"x":1569169080000,"y":15.8},{"x":1569169140000,"y":15.8},{"x":1569169200000,"y":15.8},{"x":1569169260000,"y":15.8},{"x":1569169320000,"y":15.8},{"x":1569169380000,"y":15.81},{"x":1569169440000,"y":15.81},{"x":1569169500000,"y":15.81},{"x":1569169560000,"y":15.8},{"x":1569169620000,"y":15.8},{"x":1569169680000,"y":15.8},{"x":1569169740000,"y":15.76},{"x":1569169800000,"y":15.79},{"x":1569169860000,"y":15.79},{"x":1569169920000,"y":15.79},{"x":1569169980000,"y":15.81},{"x":1569170040000,"y":15.8},{"x":1569170100000,"y":15.8},{"x":1569170160000,"y":15.8},{"x":1569170220000,"y":15.8},{"x":1569170280000,"y":15.81},{"x":1569170340000,"y":15.8},{"x":1569170400000,"y":15.81},{"x":1569170460000,"y":15.81},{"x":1569170520000,"y":15.81},{"x":1569170580000,"y":15.82},{"x":1569170640000,"y":15.79},{"x":1569170700000,"y":15.8},{"x":1569170760000,"y":15.8},{"x":1569170820000,"y":15.8},{"x":1569170880000,"y":15.81},{"x":1569170940000,"y":15.8},{"x":1569171000000,"y":15.8},{"x":1569171060000,"y":15.8},{"x":1569171120000,"y":15.8},{"x":1569171180000,"y":15.78},{"x":1569171240000,"y":15.79},{"x":1569171300000,"y":15.78},{"x":1569171360000,"y":15.78},{"x":1569171420000,"y":15.78},{"x":1569171480000,"y":15.77},{"x":1569171540000,"y":16.09},{"x":1569171600000,"y":15.85},{"x":1569171660000,"y":15.85},{"x":1569171720000,"y":15.85},{"x":1569171780000,"y":15.85},{"x":1569171840000,"y":15.82},{"x":1569171900000,"y":15.78},{"x":1569171960000,"y":15.79},{"x":1569172020000,"y":15.78},{"x":1569172080000,"y":15.78},{"x":1569172140000,"y":15.79},{"x":1569172200000,"y":15.78},{"x":1569172260000,"y":15.77},{"x":1569172320000,"y":15.78},{"x":1569172380000,"y":15.78},{"x":1569172440000,"y":15.8},{"x":1569172500000,"y":15.79},{"x":1569172560000,"y":15.79},{"x":1569172620000,"y":15.78},{"x":1569172680000,"y":15.78},{"x":1569172740000,"y":15.8},{"x":1569172800000,"y":15.8},{"x":1569172860000,"y":15.8},{"x":1569172920000,"y":15.8},{"x":1569172980000,"y":15.79},{"x":1569173040000,"y":15.8},{"x":1569173100000,"y":15.79},{"x":1569173160000,"y":15.79},{"x":1569173220000,"y":15.79},{"x":1569173280000,"y":15.79},{"x":1569173340000,"y":15.79},{"x":1569173400000,"y":15.8},{"x":1569173460000,"y":15.77},{"x":1569173520000,"y":15.77},{"x":1569173580000,"y":15.78},{"x":1569173640000,"y":15.78},{"x":1569173700000,"y":15.8},{"x":1569173760000,"y":15.8},{"x":1569173820000,"y":15.8},{"x":1569173880000,"y":15.79},{"x":1569173940000,"y":15.79},{"x":1569174000000,"y":15.8},{"x":1569174060000,"y":15.8},{"x":1569174120000,"y":15.8},{"x":1569174180000,"y":15.8},{"x":1569174240000,"y":15.79},{"x":1569174300000,"y":15.8},{"x":1569174360000,"y":15.79},{"x":1569174420000,"y":15.79},{"x":1569174480000,"y":15.79},{"x":1569174540000,"y":15.79},{"x":1569174600000,"y":15.8},{"x":1569174660000,"y":15.79},{"x":1569174720000,"y":15.79},{"x":1569174780000,"y":15.77},{"x":1569174840000,"y":15.78},{"x":1569174900000,"y":15.79},{"x":1569174960000,"y":15.78},{"x":1569175020000,"y":15.78},{"x":1569175080000,"y":15.78},{"x":1569175140000,"y":15.78},{"x":1569175200000,"y":15.78},{"x":1569175260000,"y":15.78},{"x":1569175320000,"y":15.78},{"x":1569175380000,"y":15.78},{"x":1569175440000,"y":15.78},{"x":1569175500000,"y":15.8},{"x":1569175560000,"y":15.8},{"x":1569175620000,"y":15.8},{"x":1569175680000,"y":15.8},{"x":1569175740000,"y":15.8},{"x":1569175800000,"y":15.8},{"x":1569175860000,"y":15.8},{"x":1569175920000,"y":15.79},{"x":1569175980000,"y":15.79},{"x":1569176040000,"y":15.79},{"x":1569176100000,"y":15.8},{"x":1569176160000,"y":15.8},{"x":1569176220000,"y":15.79},{"x":1569176280000,"y":15.79},{"x":1569176340000,"y":15.79},{"x":1569176400000,"y":15.81},{"x":1569176460000,"y":15.81},{"x":1569176520000,"y":15.8},{"x":1569176580000,"y":15.8},{"x":1569176640000,"y":15.79},{"x":1569176700000,"y":15.79},{"x":1569176760000,"y":15.81},{"x":1569176820000,"y":15.8},{"x":1569176880000,"y":15.8},{"x":1569176940000,"y":15.8},{"x":1569177000000,"y":15.8},{"x":1569177060000,"y":15.81},{"x":1569177120000,"y":15.8},{"x":1569177180000,"y":15.8},{"x":1569177240000,"y":15.8},{"x":1569177300000,"y":15.8},{"x":1569177360000,"y":15.81},{"x":1569177420000,"y":15.8},{"x":1569177480000,"y":15.8},{"x":1569177540000,"y":15.79},{"x":1569177600000,"y":15.8},{"x":1569177660000,"y":15.81},{"x":1569177720000,"y":15.8},{"x":1569177780000,"y":15.8},{"x":1569177840000,"y":15.8},{"x":1569177900000,"y":15.78},{"x":1569177960000,"y":15.8},{"x":1569178020000,"y":15.81},{"x":1569178080000,"y":15.81},{"x":1569178140000,"y":15.81},{"x":1569178200000,"y":15.8},{"x":1569178260000,"y":15.8},{"x":1569178320000,"y":15.82},{"x":1569178380000,"y":15.8},{"x":1569178440000,"y":15.79},{"x":1569178500000,"y":15.8},{"x":1569178560000,"y":15.8},{"x":1569178620000,"y":15.82},{"x":1569178680000,"y":15.81},{"x":1569178740000,"y":15.81},{"x":1569178800000,"y":15.81},{"x":1569178860000,"y":15.81},{"x":1569178920000,"y":15.81},{"x":1569178980000,"y":15.8},{"x":1569179040000,"y":15.8},{"x":1569179100000,"y":15.81},{"x":1569179160000,"y":15.81},{"x":1569179220000,"y":15.81},{"x":1569179280000,"y":15.8},{"x":1569179340000,"y":15.8},{"x":1569179400000,"y":15.81},{"x":1569179460000,"y":15.8},{"x":1569179520000,"y":15.81},{"x":1569179580000,"y":15.8},{"x":1569179640000,"y":15.8},{"x":1569179700000,"y":15.77},{"x":1569179760000,"y":15.77},{"x":1569179820000,"y":15.8},{"x":1569179880000,"y":15.8},{"x":1569179940000,"y":15.8},{"x":1569180000000,"y":15.81},{"x":1569180060000,"y":15.81},{"x":1569180120000,"y":15.82},{"x":1569180180000,"y":15.8},{"x":1569180240000,"y":15.8},{"x":1569180300000,"y":15.81},{"x":1569180360000,"y":15.81},{"x":1569180420000,"y":15.81},{"x":1569180480000,"y":15.82},{"x":1569180540000,"y":15.8},{"x":1569180600000,"y":15.8},{"x":1569180660000,"y":15.8},{"x":1569180720000,"y":15.8},{"x":1569180780000,"y":15.8},{"x":1569180840000,"y":15.79},{"x":1569180900000,"y":15.79},{"x":1569180960000,"y":15.79},{"x":1569181020000,"y":15.79},{"x":1569181080000,"y":15.8},{"x":1569181140000,"y":15.79},{"x":1569181200000,"y":15.79},{"x":1569181260000,"y":15.79},{"x":1569181320000,"y":15.8},{"x":1569181380000,"y":15.81},{"x":1569181440000,"y":15.79},{"x":1569181500000,"y":15.77},{"x":1569181560000,"y":15.93},{"x":1569181620000,"y":15.87},{"x":1569181680000,"y":15.88},{"x":1569181740000,"y":15.87},{"x":1569181800000,"y":15.87},{"x":1569181860000,"y":15.81},{"x":1569181920000,"y":15.8},{"x":1569181980000,"y":15.8},{"x":1569182040000,"y":15.8},{"x":1569182100000,"y":15.8},{"x":1569182160000,"y":15.8},{"x":1569182220000,"y":15.8},{"x":1569182280000,"y":15.81},{"x":1569182340000,"y":15.8},{"x":1569182400000,"y":15.78},{"x":1569182460000,"y":15.77},{"x":1569182520000,"y":15.77},{"x":1569182580000,"y":15.79},{"x":1569182640000,"y":15.8},{"x":1569182700000,"y":15.79},{"x":1569182760000,"y":15.79},{"x":1569182820000,"y":15.79},{"x":1569182880000,"y":15.79},{"x":1569182940000,"y":15.81},{"x":1569183000000,"y":15.8},{"x":1569183060000,"y":15.8},{"x":1569183120000,"y":15.8},{"x":1569183180000,"y":15.8},{"x":1569183240000,"y":15.8},{"x":1569183300000,"y":15.8},{"x":1569183360000,"y":15.8},{"x":1569183420000,"y":15.8},{"x":1569183480000,"y":15.8},{"x":1569183540000,"y":15.81},{"x":1569183600000,"y":15.81},{"x":1569183660000,"y":15.81},{"x":1569183720000,"y":15.81},{"x":1569183780000,"y":15.81},{"x":1569183840000,"y":15.82},{"x":1569183900000,"y":15.8},{"x":1569183960000,"y":15.8},{"x":1569184020000,"y":15.8},{"x":1569184080000,"y":15.8},{"x":1569184140000,"y":15.81},{"x":1569184200000,"y":15.8},{"x":1569184260000,"y":15.8},{"x":1569184320000,"y":15.8},{"x":1569184380000,"y":15.8},{"x":1569184440000,"y":15.82},{"x":1569184500000,"y":15.81},{"x":1569184560000,"y":15.81},{"x":1569184620000,"y":15.81},{"x":1569184680000,"y":15.81},{"x":1569184740000,"y":15.8},{"x":1569184800000,"y":15.81},{"x":1569184860000,"y":15.8},{"x":1569184920000,"y":15.8},{"x":1569184980000,"y":15.8},{"x":1569185040000,"y":15.8},{"x":1569185100000,"y":15.82},{"x":1569185160000,"y":15.81},{"x":1569185220000,"y":15.81},{"x":1569185280000,"y":15.81},{"x":1569185340000,"y":15.81},{"x":1569185400000,"y":15.81},{"x":1569185460000,"y":15.8},{"x":1569185520000,"y":15.8},{"x":1569185580000,"y":15.79},{"x":1569185640000,"y":15.8},{"x":1569185700000,"y":15.84},{"x":1569185760000,"y":15.82},{"x":1569185820000,"y":15.81},{"x":1569185880000,"y":15.81},{"x":1569185940000,"y":15.81},{"x":1569186000000,"y":15.81},{"x":1569186060000,"y":15.8},{"x":1569186120000,"y":15.8},{"x":1569186180000,"y":15.8},{"x":1569186240000,"y":15.8},{"x":1569186300000,"y":15.82},{"x":1569186360000,"y":15.8},{"x":1569186420000,"y":15.8},{"x":1569186480000,"y":15.8},{"x":1569186540000,"y":15.81},{"x":1569186600000,"y":15.82},{"x":1569186660000,"y":15.81},{"x":1569186720000,"y":15.81},{"x":1569186780000,"y":15.81},{"x":1569186840000,"y":15.81},{"x":1569186900000,"y":15.82},{"x":1569186960000,"y":15.82},{"x":1569187020000,"y":15.81},{"x":1569187080000,"y":15.81},{"x":1569187140000,"y":15.81},{"x":1569187200000,"y":15.81},{"x":1569187260000,"y":15.83},{"x":1569187320000,"y":15.82},{"x":1569187380000,"y":15.82},{"x":1569187440000,"y":15.81},{"x":1569187500000,"y":15.81},{"x":1569187560000,"y":15.82},{"x":1569187620000,"y":15.8},{"x":1569187680000,"y":15.8},{"x":1569187740000,"y":15.8},{"x":1569187800000,"y":15.81},{"x":1569187860000,"y":15.82},{"x":1569187920000,"y":15.81},{"x":1569187980000,"y":15.82},{"x":1569188040000,"y":15.82},{"x":1569188100000,"y":15.82},{"x":1569188160000,"y":15.83},{"x":1569188220000,"y":15.82},{"x":1569188280000,"y":15.82},{"x":1569188340000,"y":15.81},{"x":1569188400000,"y":15.82},{"x":1569188460000,"y":15.83},{"x":1569188520000,"y":15.81},{"x":1569188580000,"y":15.81},{"x":1569188640000,"y":15.81},{"x":1569188700000,"y":15.81},{"x":1569188760000,"y":15.83},{"x":1569188820000,"y":15.81},{"x":1569188880000,"y":15.81},{"x":1569188940000,"y":15.81},{"x":1569189000000,"y":15.81},{"x":1569189060000,"y":15.82},{"x":1569189120000,"y":15.81},{"x":1569189180000,"y":15.8},{"x":1569189240000,"y":15.79},{"x":1569189300000,"y":15.81},{"x":1569189360000,"y":15.81},{"x":1569189420000,"y":15.83},{"x":1569189480000,"y":15.81},{"x":1569189540000,"y":15.81},{"x":1569189600000,"y":15.82},{"x":1569189660000,"y":15.82},{"x":1569189720000,"y":15.83},{"x":1569189780000,"y":15.82},{"x":1569189840000,"y":15.8},{"x":1569189900000,"y":15.8},{"x":1569189960000,"y":15.8},{"x":1569190020000,"y":15.8},{"x":1569190080000,"y":15.79},{"x":1569190140000,"y":15.8},{"x":1569190200000,"y":15.8},{"x":1569190260000,"y":15.8},{"x":1569190320000,"y":15.81},{"x":1569190380000,"y":15.8},{"x":1569190440000,"y":15.8},{"x":1569190500000,"y":15.79},{"x":1569190560000,"y":15.79},{"x":1569190620000,"y":15.8},{"x":1569190680000,"y":15.79},{"x":1569190740000,"y":15.79},{"x":1569190800000,"y":15.79},{"x":1569190860000,"y":15.79},{"x":1569190920000,"y":15.8},{"x":1569190980000,"y":15.8},{"x":1569191040000,"y":15.8},{"x":1569191100000,"y":15.8},{"x":1569191160000,"y":15.8},{"x":1569191220000,"y":15.81},{"x":1569191280000,"y":15.78},{"x":1569191340000,"y":15.78},{"x":1569191400000,"y":15.79},{"x":1569191460000,"y":15.79},{"x":1569191520000,"y":15.79},{"x":1569191580000,"y":15.8},{"x":1569191640000,"y":15.79},{"x":1569191700000,"y":15.81},{"x":1569191760000,"y":15.8},{"x":1569191820000,"y":15.8},{"x":1569191880000,"y":15.78},{"x":1569191940000,"y":15.81},{"x":1569192000000,"y":15.81},{"x":1569192060000,"y":15.81},{"x":1569192120000,"y":15.81},{"x":1569192180000,"y":15.77},{"x":1569192240000,"y":15.74},{"x":1569192300000,"y":15.79},{"x":1569192360000,"y":15.79},{"x":1569192420000,"y":15.79},{"x":1569192480000,"y":15.8},{"x":1569192540000,"y":15.8},{"x":1569192600000,"y":15.81},{"x":1569192660000,"y":15.81},{"x":1569192720000,"y":15.82},{"x":1569192780000,"y":15.83},{"x":1569192840000,"y":15.8},{"x":1569192900000,"y":15.81},{"x":1569192960000,"y":15.81},{"x":1569193020000,"y":15.81},{"x":1569193080000,"y":15.82},{"x":1569193140000,"y":15.8},{"x":1569193200000,"y":15.81},{"x":1569193260000,"y":15.81},{"x":1569193320000,"y":15.81},{"x":1569193380000,"y":15.94},{"x":1569193440000,"y":15.91},{"x":1569193500000,"y":15.87},{"x":1569193560000,"y":15.87},{"x":1569193620000,"y":15.87},{"x":1569193680000,"y":15.87},{"x":1569193740000,"y":15.81},{"x":1569193800000,"y":15.8},{"x":1569193860000,"y":15.81},{"x":1569193920000,"y":15.81},{"x":1569193980000,"y":15.81},{"x":1569194040000,"y":15.82},{"x":1569194100000,"y":15.81},{"x":1569194160000,"y":15.8},{"x":1569194220000,"y":15.8},{"x":1569194280000,"y":15.8},{"x":1569194340000,"y":15.81},{"x":1569194400000,"y":15.79},{"x":1569194460000,"y":15.79},{"x":1569194520000,"y":15.79},{"x":1569194580000,"y":15.79},{"x":1569194640000,"y":15.81},{"x":1569194700000,"y":15.81},{"x":1569194760000,"y":15.81},{"x":1569194820000,"y":15.81},{"x":1569194880000,"y":15.81},{"x":1569194940000,"y":15.82},{"x":1569195000000,"y":15.81},{"x":1569195060000,"y":15.81},{"x":1569195120000,"y":15.81},{"x":1569195180000,"y":15.81},{"x":1569195240000,"y":15.82},{"x":1569195300000,"y":15.81},{"x":1569195360000,"y":15.81},{"x":1569195420000,"y":15.81},{"x":1569195480000,"y":15.81},{"x":1569195540000,"y":15.82},{"x":1569195600000,"y":15.81},{"x":1569195660000,"y":15.81},{"x":1569195720000,"y":15.81},{"x":1569195780000,"y":15.81},{"x":1569195840000,"y":15.81},{"x":1569195900000,"y":15.82},{"x":1569195960000,"y":15.81},{"x":1569196020000,"y":15.81},{"x":1569196080000,"y":15.81},{"x":1569196140000,"y":15.8},{"x":1569196200000,"y":15.81},{"x":1569196260000,"y":15.81},{"x":1569196320000,"y":15.81},{"x":1569196380000,"y":15.8},{"x":1569196440000,"y":15.8},{"x":1569196500000,"y":15.82},{"x":1569196560000,"y":15.82},{"x":1569196620000,"y":15.82},{"x":1569196680000,"y":15.82},{"x":1569196740000,"y":15.82},{"x":1569196800000,"y":15.82},{"x":1569196860000,"y":15.81},{"x":1569196920000,"y":15.81},{"x":1569196980000,"y":15.8},{"x":1569197040000,"y":15.8},{"x":1569197100000,"y":15.83},{"x":1569197160000,"y":15.82},{"x":1569197220000,"y":15.82},{"x":1569197280000,"y":15.82},{"x":1569197340000,"y":15.81},{"x":1569197400000,"y":15.81},{"x":1569197460000,"y":15.79},{"x":1569197520000,"y":15.79},{"x":1569197580000,"y":15.79},{"x":1569197640000,"y":15.79},{"x":1569197700000,"y":15.81},{"x":1569197760000,"y":15.76},{"x":1569197820000,"y":15.77},{"x":1569197880000,"y":15.77},{"x":1569197940000,"y":15.77},{"x":1569198000000,"y":15.81},{"x":1569198060000,"y":15.8},{"x":1569198120000,"y":15.8},{"x":1569198180000,"y":15.81},{"x":1569198240000,"y":15.81},{"x":1569198300000,"y":15.82},{"x":1569198360000,"y":15.82},{"x":1569198420000,"y":15.81},{"x":1569198480000,"y":15.81},{"x":1569198540000,"y":15.81},{"x":1569198600000,"y":15.82},{"x":1569198660000,"y":15.83},{"x":1569198720000,"y":15.82},{"x":1569198780000,"y":15.82},{"x":1569198840000,"y":15.82},{"x":1569198900000,"y":15.81},{"x":1569198960000,"y":15.83},{"x":1569199020000,"y":15.82},{"x":1569199080000,"y":15.82},{"x":1569199140000,"y":15.8},{"x":1569199200000,"y":15.79},{"x":1569199260000,"y":15.82},{"x":1569199320000,"y":15.81},{"x":1569199380000,"y":15.8},{"x":1569199440000,"y":15.8},{"x":1569199500000,"y":15.81},{"x":1569199560000,"y":15.82},{"x":1569199620000,"y":15.81},{"x":1569199680000,"y":15.81},{"x":1569199740000,"y":15.8},{"x":1569199800000,"y":15.8},{"x":1569199860000,"y":15.81},{"x":1569199920000,"y":15.8},{"x":1569199980000,"y":15.79},{"x":1569200040000,"y":15.79},{"x":1569200100000,"y":15.8},{"x":1569200160000,"y":15.81},{"x":1569200220000,"y":15.8},{"x":1569200280000,"y":15.8},{"x":1569200340000,"y":15.8},{"x":1569200400000,"y":15.81},{"x":1569200460000,"y":15.82},{"x":1569200520000,"y":15.79},{"x":1569200580000,"y":15.78},{"x":1569200640000,"y":15.78},{"x":1569200700000,"y":15.8},{"x":1569200760000,"y":15.8},{"x":1569200820000,"y":15.81},{"x":1569200880000,"y":15.79},{"x":1569200940000,"y":15.81},{"x":1569201000000,"y":15.81},{"x":1569201060000,"y":15.81},{"x":1569201120000,"y":15.83},{"x":1569201180000,"y":15.81},{"x":1569201240000,"y":15.81},{"x":1569201300000,"y":15.8},{"x":1569201360000,"y":15.8},{"x":1569201420000,"y":15.82},{"x":1569201480000,"y":15.81},{"x":1569201540000,"y":15.81},{"x":1569201600000,"y":15.81},{"x":1569201660000,"y":15.81},{"x":1569201720000,"y":15.81},{"x":1569201780000,"y":15.8},{"x":1569201840000,"y":15.8},{"x":1569201900000,"y":15.8},{"x":1569201960000,"y":15.8},{"x":1569202020000,"y":15.81},{"x":1569202080000,"y":15.79},{"x":1569202140000,"y":15.79},{"x":1569202200000,"y":15.8},{"x":1569202260000,"y":15.8},{"x":1569202320000,"y":15.8},{"x":1569202380000,"y":15.81},{"x":1569202440000,"y":15.81},{"x":1569202500000,"y":15.81},{"x":1569202560000,"y":15.81},{"x":1569202620000,"y":15.8},{"x":1569202680000,"y":15.82},{"x":1569202740000,"y":15.81},{"x":1569202800000,"y":15.81},{"x":1569202860000,"y":15.81},{"x":1569202920000,"y":15.81},{"x":1569202980000,"y":15.82},{"x":1569203040000,"y":15.8},{"x":1569203100000,"y":15.81},{"x":1569203160000,"y":15.81},{"x":1569203220000,"y":15.81},{"x":1569203280000,"y":15.81},{"x":1569203340000,"y":15.81},{"x":1569203400000,"y":15.81},{"x":1569203460000,"y":15.81},{"x":1569203520000,"y":15.81},{"x":1569203580000,"y":15.81},{"x":1569203640000,"y":15.8},{"x":1569203700000,"y":15.8},{"x":1569203760000,"y":15.81},{"x":1569203820000,"y":15.81},{"x":1569203880000,"y":15.83},{"x":1569203940000,"y":15.82},{"x":1569204000000,"y":15.82},{"x":1569204060000,"y":15.82},{"x":1569204120000,"y":15.82},{"x":1569204180000,"y":15.84},{"x":1569204240000,"y":15.82},{"x":1569204300000,"y":15.81},{"x":1569204360000,"y":15.81},{"x":1569204420000,"y":15.81},{"x":1569204480000,"y":15.81},{"x":1569204540000,"y":15.83},{"x":1569204600000,"y":15.81},{"x":1569204660000,"y":15.81},{"x":1569204720000,"y":15.81},{"x":1569204780000,"y":15.81},{"x":1569204840000,"y":15.81},{"x":1569204900000,"y":15.79},{"x":1569204960000,"y":15.79},{"x":1569205020000,"y":15.79},{"x":1569205080000,"y":15.78},{"x":1569205140000,"y":15.8},{"x":1569205200000,"y":15.8},{"x":1569205260000,"y":15.8},{"x":1569205320000,"y":15.8},{"x":1569205380000,"y":15.8},{"x":1569205440000,"y":15.83},{"x":1569205500000,"y":15.81},{"x":1569205560000,"y":15.8},{"x":1569205620000,"y":15.8},{"x":1569205680000,"y":15.8},{"x":1569205740000,"y":15.81},{"x":1569205800000,"y":15.83},{"x":1569205860000,"y":15.83},{"x":1569205920000,"y":15.82},{"x":1569205980000,"y":15.82},{"x":1569206040000,"y":15.83},{"x":1569206100000,"y":15.8},{"x":1569206160000,"y":15.8},{"x":1569206220000,"y":15.81},{"x":1569206280000,"y":15.8},{"x":1569206340000,"y":15.83},{"x":1569206400000,"y":15.82},{"x":1569206460000,"y":15.83},{"x":1569206520000,"y":15.83},{"x":1569206580000,"y":15.83},{"x":1569206640000,"y":15.84},{"x":1569206700000,"y":15.8},{"x":1569206760000,"y":15.8},{"x":1569206820000,"y":15.8},{"x":1569206880000,"y":15.81},{"x":1569206940000,"y":15.81},{"x":1569207000000,"y":15.81},{"x":1569207060000,"y":15.8},{"x":1569207120000,"y":15.8},{"x":1569207180000,"y":15.81},{"x":1569207240000,"y":15.81},{"x":1569207300000,"y":15.83},{"x":1569207360000,"y":15.83},{"x":1569207420000,"y":15.83},{"x":1569207480000,"y":15.82},{"x":1569207540000,"y":15.82},{"x":1569207600000,"y":15.83},{"x":1569207660000,"y":15.82},{"x":1569207720000,"y":15.82},{"x":1569207780000,"y":15.82},{"x":1569207840000,"y":15.82},{"x":1569207900000,"y":15.83},{"x":1569207960000,"y":15.8},{"x":1569208020000,"y":15.8},{"x":1569208080000,"y":15.8},{"x":1569208140000,"y":15.81},{"x":1569208200000,"y":15.83},{"x":1569208260000,"y":15.8},{"x":1569208320000,"y":15.8},{"x":1569208380000,"y":15.8},{"x":1569208440000,"y":15.81},{"x":1569208500000,"y":15.81},{"x":1569208560000,"y":15.8},{"x":1569208620000,"y":15.8},{"x":1569208680000,"y":15.8},{"x":1569208740000,"y":15.8},{"x":1569208800000,"y":15.81},{"x":1569208860000,"y":15.77},{"x":1569208920000,"y":15.77},{"x":1569208980000,"y":15.77},{"x":1569209040000,"y":15.77},{"x":1569209100000,"y":15.78},{"x":1569209160000,"y":15.82},{"x":1569209220000,"y":15.81},{"x":1569209280000,"y":15.81},{"x":1569209340000,"y":15.81},{"x":1569209400000,"y":15.81},{"x":1569209460000,"y":15.81},{"x":1569209520000,"y":15.8},{"x":1569209580000,"y":15.8},{"x":1569209640000,"y":15.8},{"x":1569209700000,"y":15.81},{"x":1569209760000,"y":15.82},{"x":1569209820000,"y":15.81},{"x":1569209880000,"y":15.81},{"x":1569209940000,"y":15.81},{"x":1569210000000,"y":15.81},{"x":1569210060000,"y":15.82},{"x":1569210120000,"y":15.81},{"x":1569210180000,"y":15.81},{"x":1569210240000,"y":15.81},{"x":1569210300000,"y":15.81},{"x":1569210360000,"y":15.82},{"x":1569210420000,"y":15.82},{"x":1569210480000,"y":15.82},{"x":1569210540000,"y":15.82},{"x":1569210600000,"y":15.81},{"x":1569210660000,"y":15.82},{"x":1569210720000,"y":15.81},{"x":1569210780000,"y":15.81},{"x":1569210840000,"y":15.8},{"x":1569210900000,"y":15.81},{"x":1569210960000,"y":15.81},{"x":1569211020000,"y":15.8},{"x":1569211080000,"y":15.8},{"x":1569211140000,"y":15.8},{"x":1569211200000,"y":15.8},{"x":1569211260000,"y":15.81},{"x":1569211320000,"y":15.81},{"x":1569211380000,"y":15.81},{"x":1569211440000,"y":15.81},{"x":1569211500000,"y":15.81},{"x":1569211560000,"y":15.81},{"x":1569211620000,"y":15.79},{"x":1569211680000,"y":15.78},{"x":1569211740000,"y":15.81},{"x":1569211800000,"y":15.81},{"x":1569211860000,"y":15.81},{"x":1569211920000,"y":15.83},{"x":1569211980000,"y":15.82},{"x":1569212040000,"y":15.82},{"x":1569212100000,"y":15.82},{"x":1569212160000,"y":15.81},{"x":1569212220000,"y":15.81},{"x":1569212280000,"y":15.79},{"x":1569212340000,"y":15.79},{"x":1569212400000,"y":15.82},{"x":1569212460000,"y":15.82},{"x":1569212520000,"y":15.83},{"x":1569212580000,"y":15.82},{"x":1569212640000,"y":15.82},{"x":1569212700000,"y":15.82},{"x":1569212760000,"y":15.82},{"x":1569212820000,"y":15.84},{"x":1569212880000,"y":15.82},{"x":1569212940000,"y":15.82},{"x":1569213000000,"y":15.82},{"x":1569213060000,"y":15.82},{"x":1569213120000,"y":15.84},{"x":1569213180000,"y":15.82},{"x":1569213240000,"y":15.82},{"x":1569213300000,"y":15.8},{"x":1569213360000,"y":15.8},{"x":1569213420000,"y":15.8},{"x":1569213480000,"y":15.83},{"x":1569213540000,"y":15.83},{"x":1569213600000,"y":15.82},{"x":1569213660000,"y":15.82},{"x":1569213720000,"y":15.82},{"x":1569213780000,"y":15.8},{"x":1569213840000,"y":15.78},{"x":1569213900000,"y":15.81},{"x":1569213960000,"y":15.81},{"x":1569214020000,"y":15.81},{"x":1569214080000,"y":15.81},{"x":1569214140000,"y":15.8},{"x":1569214200000,"y":15.79},{"x":1569214260000,"y":15.79},{"x":1569214320000,"y":15.79},{"x":1569214380000,"y":15.82},{"x":1569214440000,"y":15.82},{"x":1569214500000,"y":15.82},{"x":1569214560000,"y":15.82},{"x":1569214620000,"y":15.82},{"x":1569214680000,"y":15.83},{"x":1569214740000,"y":15.82},{"x":1569214800000,"y":15.81},{"x":1569214860000,"y":15.8},{"x":1569214920000,"y":15.8},{"x":1569214980000,"y":15.82},{"x":1569215040000,"y":15.81},{"x":1569215100000,"y":15.79},{"x":1569215160000,"y":15.79},{"x":1569215220000,"y":15.8},{"x":1569215280000,"y":15.83},{"x":1569215340000,"y":16.21},{"x":1569215400000,"y":15.88},{"x":1569215460000,"y":15.88},{"x":1569215520000,"y":15.88},{"x":1569215580000,"y":15.89},{"x":1569215640000,"y":15.83},{"x":1569215700000,"y":15.82},{"x":1569215760000,"y":15.82},{"x":1569215820000,"y":15.82},{"x":1569215880000,"y":15.82},{"x":1569215940000,"y":15.83},{"x":1569216000000,"y":15.8},{"x":1569216060000,"y":15.8},{"x":1569216120000,"y":15.8},{"x":1569216180000,"y":15.79},{"x":1569216240000,"y":15.81},{"x":1569216300000,"y":15.82},{"x":1569216360000,"y":15.82},{"x":1569216420000,"y":15.82},{"x":1569216480000,"y":15.82},{"x":1569216540000,"y":15.83},{"x":1569216600000,"y":15.82},{"x":1569216660000,"y":15.82},{"x":1569216720000,"y":15.82},{"x":1569216780000,"y":15.82},{"x":1569216840000,"y":15.82},{"x":1569216900000,"y":15.83},{"x":1569216960000,"y":15.83},{"x":1569217020000,"y":15.83},{"x":1569217080000,"y":15.83},{"x":1569217140000,"y":15.85},{"x":1569217200000,"y":15.81},{"x":1569217260000,"y":15.81},{"x":1569217320000,"y":15.81},{"x":1569217380000,"y":15.81},{"x":1569217440000,"y":15.82},{"x":1569217500000,"y":15.83},{"x":1569217560000,"y":15.82},{"x":1569217620000,"y":15.81},{"x":1569217680000,"y":15.81},{"x":1569217740000,"y":15.82},{"x":1569217800000,"y":15.81},{"x":1569217860000,"y":15.81},{"x":1569217920000,"y":15.81},{"x":1569217980000,"y":15.8},{"x":1569218040000,"y":15.8},{"x":1569218100000,"y":15.84},{"x":1569218160000,"y":15.81},{"x":1569218220000,"y":15.82},{"x":1569218280000,"y":15.82},{"x":1569218340000,"y":15.82},{"x":1569218400000,"y":15.82},{"x":1569218460000,"y":15.81},{"x":1569218520000,"y":15.81},{"x":1569218580000,"y":15.81},{"x":1569218640000,"y":15.81},{"x":1569218700000,"y":15.82},{"x":1569218760000,"y":15.81},{"x":1569218820000,"y":15.81},{"x":1569218880000,"y":15.81},{"x":1569218940000,"y":15.82},{"x":1569219000000,"y":15.82},{"x":1569219060000,"y":15.81},{"x":1569219120000,"y":15.81},{"x":1569219180000,"y":15.81},{"x":1569219240000,"y":15.81},{"x":1569219300000,"y":15.83},{"x":1569219360000,"y":15.82},{"x":1569219420000,"y":15.82},{"x":1569219480000,"y":15.82},{"x":1569219540000,"y":15.82},{"x":1569219600000,"y":15.83},{"x":1569219660000,"y":15.81},{"x":1569219720000,"y":15.82},{"x":1569219780000,"y":15.82},{"x":1569219840000,"y":15.82},{"x":1569219900000,"y":15.8},{"x":1569219960000,"y":15.81},{"x":1569220020000,"y":15.81},{"x":1569220080000,"y":15.81},{"x":1569220140000,"y":15.81},{"x":1569220200000,"y":15.84},{"x":1569220260000,"y":15.82},{"x":1569220320000,"y":15.82},{"x":1569220380000,"y":15.82},{"x":1569220440000,"y":15.81},{"x":1569220500000,"y":15.81},{"x":1569220560000,"y":15.83},{"x":1569220620000,"y":15.82},{"x":1569220680000,"y":15.82},{"x":1569220740000,"y":15.8},{"x":1569220800000,"y":15.81},{"x":1569220860000,"y":15.83},{"x":1569220920000,"y":15.82},{"x":1569220980000,"y":15.82},{"x":1569221040000,"y":15.82},{"x":1569221100000,"y":15.81},{"x":1569221160000,"y":15.82},{"x":1569221220000,"y":15.82},{"x":1569221280000,"y":15.82},{"x":1569221340000,"y":15.81},{"x":1569221400000,"y":15.81},{"x":1569221460000,"y":15.83},{"x":1569221520000,"y":15.82},{"x":1569221580000,"y":15.82},{"x":1569221640000,"y":15.82},{"x":1569221700000,"y":15.8},{"x":1569221760000,"y":15.82},{"x":1569221820000,"y":15.82},{"x":1569221880000,"y":15.82},{"x":1569221940000,"y":15.82},{"x":1569222000000,"y":15.79},{"x":1569222060000,"y":15.8},{"x":1569222120000,"y":15.8},{"x":1569222180000,"y":15.8},{"x":1569222240000,"y":15.79},{"x":1569222300000,"y":15.81},{"x":1569222360000,"y":15.83},{"x":1569222420000,"y":15.83},{"x":1569222480000,"y":15.82},{"x":1569222540000,"y":15.82},{"x":1569222600000,"y":15.79},{"x":1569222660000,"y":15.79},{"x":1569222720000,"y":15.83},{"x":1569222780000,"y":15.82},{"x":1569222840000,"y":15.82},{"x":1569222900000,"y":15.81},{"x":1569222960000,"y":15.81},{"x":1569223020000,"y":15.83},{"x":1569223080000,"y":15.82},{"x":1569223140000,"y":15.81},{"x":1569223200000,"y":15.79},{"x":1569223260000,"y":15.79},{"x":1569223320000,"y":15.82},{"x":1569223380000,"y":15.82},{"x":1569223440000,"y":15.82},{"x":1569223500000,"y":15.82},{"x":1569223560000,"y":15.82},{"x":1569223620000,"y":15.83},{"x":1569223680000,"y":15.82},{"x":1569223740000,"y":15.82},{"x":1569223800000,"y":15.83},{"x":1569223860000,"y":15.83},{"x":1569223920000,"y":15.84},{"x":1569223980000,"y":15.81},{"x":1569224040000,"y":15.81},{"x":1569224100000,"y":15.82},{"x":1569224160000,"y":15.82},{"x":1569224220000,"y":15.84},{"x":1569224280000,"y":15.83},{"x":1569224340000,"y":15.83},{"x":1569224400000,"y":15.83},{"x":1569224460000,"y":15.83},{"x":1569224520000,"y":15.84},{"x":1569224580000,"y":15.82},{"x":1569224640000,"y":15.82},{"x":1569224700000,"y":15.78},{"x":1569224760000,"y":15.78},{"x":1569224820000,"y":15.78},{"x":1569224880000,"y":15.83},{"x":1569224940000,"y":15.83},{"x":1569225000000,"y":15.84},{"x":1569225060000,"y":15.84},{"x":1569225120000,"y":15.84},{"x":1569225180000,"y":15.83},{"x":1569225240000,"y":15.82},{"x":1569225300000,"y":15.82},{"x":1569225360000,"y":15.82},{"x":1569225420000,"y":15.82},{"x":1569225480000,"y":15.84},{"x":1569225540000,"y":15.83},{"x":1569225600000,"y":15.8},{"x":1569225660000,"y":15.8},{"x":1569225720000,"y":15.8},{"x":1569225780000,"y":15.81},{"x":1569225840000,"y":15.81},{"x":1569225900000,"y":15.83},{"x":1569225960000,"y":15.83},{"x":1569226020000,"y":15.83},{"x":1569226080000,"y":15.83},{"x":1569226140000,"y":15.83},{"x":1569226200000,"y":15.83},{"x":1569226260000,"y":15.83},{"x":1569226320000,"y":15.83},{"x":1569226380000,"y":15.85},{"x":1569226440000,"y":15.83},{"x":1569226500000,"y":15.84},{"x":1569226560000,"y":15.84},{"x":1569226620000,"y":15.84},{"x":1569226680000,"y":15.84},{"x":1569226740000,"y":15.82},{"x":1569226800000,"y":15.82},{"x":1569226860000,"y":15.81},{"x":1569226920000,"y":15.79},{"x":1569226980000,"y":15.8},{"x":1569227040000,"y":15.79},{"x":1569227100000,"y":15.81},{"x":1569227160000,"y":15.82},{"x":1569227220000,"y":15.82},{"x":1569227280000,"y":15.82},{"x":1569227340000,"y":15.79},{"x":1569227400000,"y":15.8},{"x":1569227460000,"y":15.8},{"x":1569227520000,"y":15.8},{"x":1569227580000,"y":15.8},{"x":1569227640000,"y":15.8},{"x":1569227700000,"y":15.8},{"x":1569227760000,"y":15.8},{"x":1569227820000,"y":15.8},{"x":1569227880000,"y":15.8},{"x":1569227940000,"y":15.83},{"x":1569228000000,"y":15.8},{"x":1569228060000,"y":15.81},{"x":1569228120000,"y":15.8},{"x":1569228180000,"y":15.8},{"x":1569228240000,"y":15.82},{"x":1569228300000,"y":15.81},{"x":1569228360000,"y":15.81},{"x":1569228420000,"y":15.81},{"x":1569228480000,"y":15.81},{"x":1569228540000,"y":15.82},{"x":1569228600000,"y":15.82},{"x":1569228660000,"y":15.82},{"x":1569228720000,"y":15.82},{"x":1569228780000,"y":15.81},{"x":1569228840000,"y":15.82},{"x":1569228900000,"y":15.79},{"x":1569228960000,"y":15.79},{"x":1569229020000,"y":15.79},{"x":1569229080000,"y":15.79},{"x":1569229140000,"y":15.79},{"x":1569229200000,"y":15.8},{"x":1569229260000,"y":15.79},{"x":1569229320000,"y":15.79},{"x":1569229380000,"y":15.79},{"x":1569229440000,"y":15.79},{"x":1569229500000,"y":15.81},{"x":1569229560000,"y":15.79},{"x":1569229620000,"y":15.79},{"x":1569229680000,"y":15.79},{"x":1569229740000,"y":15.81},{"x":1569229800000,"y":15.82},{"x":1569229860000,"y":15.81},{"x":1569229920000,"y":15.8},{"x":1569229980000,"y":15.8},{"x":1569230040000,"y":15.8},{"x":1569230100000,"y":15.83},{"x":1569230160000,"y":15.82},{"x":1569230220000,"y":15.82},{"x":1569230280000,"y":15.82},{"x":1569230340000,"y":15.83},{"x":1569230400000,"y":15.84},{"x":1569230460000,"y":15.82},{"x":1569230520000,"y":15.82},{"x":1569230580000,"y":15.82},{"x":1569230640000,"y":15.82},{"x":1569230700000,"y":15.83},{"x":1569230760000,"y":15.83},{"x":1569230820000,"y":15.82},{"x":1569230880000,"y":15.82},{"x":1569230940000,"y":15.82},{"x":1569231000000,"y":15.83},{"x":1569231060000,"y":15.82},{"x":1569231120000,"y":15.82},{"x":1569231180000,"y":15.82},{"x":1569231240000,"y":15.83},{"x":1569231300000,"y":15.83},{"x":1569231360000,"y":15.84},{"x":1569231420000,"y":15.82},{"x":1569231480000,"y":15.82},{"x":1569231540000,"y":15.83},{"x":1569231600000,"y":15.84},{"x":1569231660000,"y":15.82},{"x":1569231720000,"y":15.79},{"x":1569231780000,"y":15.79},{"x":1569231840000,"y":15.79},{"x":1569231900000,"y":15.82},{"x":1569231960000,"y":15.83},{"x":1569232020000,"y":15.82},{"x":1569232080000,"y":15.82},{"x":1569232140000,"y":15.82},{"x":1569232200000,"y":15.82},{"x":1569232260000,"y":15.83},{"x":1569232320000,"y":15.82},{"x":1569232380000,"y":15.82},{"x":1569232440000,"y":15.82},{"x":1569232500000,"y":15.83},{"x":1569232560000,"y":15.85},{"x":1569232620000,"y":15.82},{"x":1569232680000,"y":15.82},{"x":1569232740000,"y":15.82},{"x":1569232800000,"y":15.83},{"x":1569232860000,"y":15.84},{"x":1569232920000,"y":15.83},{"x":1569232980000,"y":15.83},{"x":1569233040000,"y":15.83},{"x":1569233100000,"y":15.83},{"x":1569233160000,"y":15.83},{"x":1569233220000,"y":15.83},{"x":1569233280000,"y":15.82},{"x":1569233340000,"y":15.83},{"x":1569233400000,"y":15.82},{"x":1569233460000,"y":15.82},{"x":1569233520000,"y":15.84},{"x":1569233580000,"y":15.84},{"x":1569233640000,"y":15.83},{"x":1569233700000,"y":15.83},{"x":1569233760000,"y":15.83},{"x":1569233820000,"y":15.85},{"x":1569233880000,"y":15.84},{"x":1569233940000,"y":15.84},{"x":1569234000000,"y":15.84},{"x":1569234060000,"y":15.83},{"x":1569234120000,"y":15.84},{"x":1569234180000,"y":15.81},{"x":1569234240000,"y":15.81},{"x":1569234300000,"y":15.83},{"x":1569234360000,"y":15.83},{"x":1569234420000,"y":15.83},{"x":1569234480000,"y":15.83},{"x":1569234540000,"y":15.83},{"x":1569234600000,"y":15.83},{"x":1569234660000,"y":15.83},{"x":1569234720000,"y":15.84},{"x":1569234780000,"y":15.83},{"x":1569234840000,"y":15.84},{"x":1569234900000,"y":15.81},{"x":1569234960000,"y":15.81},{"x":1569235020000,"y":15.82},{"x":1569235080000,"y":15.83},{"x":1569235140000,"y":15.84},{"x":1569235200000,"y":15.84},{"x":1569235260000,"y":15.84},{"x":1569235320000,"y":15.84},{"x":1569235380000,"y":15.85},{"x":1569235440000,"y":15.84},{"x":1569235500000,"y":15.84},{"x":1569235560000,"y":15.84},{"x":1569235620000,"y":15.84},{"x":1569235680000,"y":15.85},{"x":1569235740000,"y":15.84},{"x":1569235800000,"y":15.84},{"x":1569235860000,"y":15.84},{"x":1569235920000,"y":15.84},{"x":1569235980000,"y":15.84},{"x":1569236040000,"y":15.83},{"x":1569236100000,"y":15.83},{"x":1569236160000,"y":15.83},{"x":1569236220000,"y":15.82},{"x":1569236280000,"y":15.83},{"x":1569236340000,"y":15.82},{"x":1569236400000,"y":15.82},{"x":1569236460000,"y":15.82},{"x":1569236520000,"y":15.82},{"x":1569236580000,"y":15.83},{"x":1569236640000,"y":15.82},{"x":1569236700000,"y":15.82},{"x":1569236760000,"y":15.82},{"x":1569236820000,"y":15.82},{"x":1569236880000,"y":15.82},{"x":1569236940000,"y":15.81},{"x":1569237000000,"y":15.82},{"x":1569237060000,"y":15.84},{"x":1569237120000,"y":15.83},{"x":1569237180000,"y":16},{"x":1569237240000,"y":15.89},{"x":1569237300000,"y":15.89},{"x":1569237360000,"y":15.89},{"x":1569237420000,"y":15.89},{"x":1569237480000,"y":15.89},{"x":1569237540000,"y":15.83},{"x":1569237600000,"y":15.78},{"x":1569237660000,"y":15.78},{"x":1569237720000,"y":15.78},{"x":1569237780000,"y":15.78},{"x":1569237840000,"y":15.83},{"x":1569237900000,"y":15.87},{"x":1569237960000,"y":15.81},{"x":1569238020000,"y":15.81},{"x":1569238080000,"y":15.81},{"x":1569238140000,"y":15.83},{"x":1569238200000,"y":15.82},{"x":1569238260000,"y":15.82},{"x":1569238320000,"y":15.82},{"x":1569238380000,"y":15.82},{"x":1569238440000,"y":15.83},{"x":1569238500000,"y":15.83},{"x":1569238560000,"y":15.83},{"x":1569238620000,"y":15.84},{"x":1569238680000,"y":15.84},{"x":1569238740000,"y":15.84},{"x":1569238800000,"y":15.83},{"x":1569238860000,"y":15.83},{"x":1569238920000,"y":15.83},{"x":1569238980000,"y":15.83},{"x":1569239040000,"y":15.84},{"x":1569239100000,"y":15.83},{"x":1569239160000,"y":15.83},{"x":1569239220000,"y":15.83},{"x":1569239280000,"y":15.83},{"x":1569239340000,"y":15.84},{"x":1569239400000,"y":15.83},{"x":1569239460000,"y":15.83},{"x":1569239520000,"y":15.83},{"x":1569239580000,"y":15.83},{"x":1569239640000,"y":15.82},{"x":1569239700000,"y":15.84},{"x":1569239760000,"y":15.83},{"x":1569239820000,"y":15.83},{"x":1569239880000,"y":15.83},{"x":1569239940000,"y":15.83},{"x":1569240000000,"y":15.84},{"x":1569240060000,"y":15.83},{"x":1569240120000,"y":15.83},{"x":1569240180000,"y":15.83},{"x":1569240240000,"y":15.83},{"x":1569240300000,"y":15.83},{"x":1569240360000,"y":15.82},{"x":1569240420000,"y":15.82},{"x":1569240480000,"y":15.82},{"x":1569240540000,"y":15.82},{"x":1569240600000,"y":15.84},{"x":1569240660000,"y":15.83},{"x":1569240720000,"y":15.83},{"x":1569240780000,"y":15.83},{"x":1569240840000,"y":15.84},{"x":1569240900000,"y":15.84},{"x":1569240960000,"y":15.83},{"x":1569241020000,"y":15.83},{"x":1569241080000,"y":15.83},{"x":1569241140000,"y":15.83},{"x":1569241200000,"y":15.84},{"x":1569241260000,"y":15.81},{"x":1569241320000,"y":15.81},{"x":1569241380000,"y":15.81},{"x":1569241440000,"y":15.81},{"x":1569241500000,"y":15.84},{"x":1569241560000,"y":15.83},{"x":1569241620000,"y":15.83},{"x":1569241680000,"y":15.83},{"x":1569241740000,"y":15.83},{"x":1569241800000,"y":15.83},{"x":1569241860000,"y":15.84},{"x":1569241920000,"y":15.84},{"x":1569241980000,"y":15.84},{"x":1569242040000,"y":15.84},{"x":1569242100000,"y":15.82},{"x":1569242160000,"y":15.84},{"x":1569242220000,"y":15.83},{"x":1569242280000,"y":15.83},{"x":1569242340000,"y":15.83},{"x":1569242400000,"y":15.83},{"x":1569242460000,"y":15.82},{"x":1569242520000,"y":15.79},{"x":1569242580000,"y":15.79},{"x":1569242640000,"y":15.79},{"x":1569242700000,"y":15.81},{"x":1569242760000,"y":15.84},{"x":1569242820000,"y":15.83},{"x":1569242880000,"y":15.83},{"x":1569242940000,"y":15.83},{"x":1569243000000,"y":15.83},{"x":1569243060000,"y":15.85},{"x":1569243120000,"y":15.84},{"x":1569243180000,"y":15.84},{"x":1569243240000,"y":15.83},{"x":1569243300000,"y":15.83},{"x":1569243360000,"y":15.84},{"x":1569243420000,"y":15.84},{"x":1569243480000,"y":15.84},{"x":1569243540000,"y":15.84},{"x":1569243600000,"y":15.83},{"x":1569243660000,"y":15.84},{"x":1569243720000,"y":15.84},{"x":1569243780000,"y":15.84},{"x":1569243840000,"y":15.84},{"x":1569243900000,"y":15.85},{"x":1569243960000,"y":15.86},{"x":1569244020000,"y":15.79},{"x":1569244080000,"y":15.79},{"x":1569244140000,"y":15.83},{"x":1569244200000,"y":15.84},{"x":1569244260000,"y":15.84},{"x":1569244320000,"y":15.84},{"x":1569244380000,"y":15.83},{"x":1569244440000,"y":15.83},{"x":1569244500000,"y":15.84},{"x":1569244560000,"y":15.84},{"x":1569244620000,"y":15.87},{"x":1569244680000,"y":15.85},{"x":1569244740000,"y":15.85},{"x":1569244800000,"y":15.84},{"x":1569244860000,"y":15.84},{"x":1569244920000,"y":15.86},{"x":1569244980000,"y":15.85},{"x":1569245040000,"y":15.85},{"x":1569245100000,"y":15.84},{"x":1569245160000,"y":15.84},{"x":1569245220000,"y":15.85},{"x":1569245280000,"y":15.83},{"x":1569245340000,"y":15.78},{"x":1569245400000,"y":15.76},{"x":1569245460000,"y":15.76},{"x":1569245520000,"y":15.77},{"x":1569245580000,"y":15.76},{"x":1569245640000,"y":15.76},{"x":1569245700000,"y":15.77},{"x":1569245760000,"y":15.77},{"x":1569245820000,"y":15.77},{"x":1569245880000,"y":15.76},{"x":1569245940000,"y":15.76},{"x":1569246000000,"y":15.76},{"x":1569246060000,"y":15.76},{"x":1569246120000,"y":15.77},{"x":1569246180000,"y":15.77},{"x":1569246240000,"y":15.76},{"x":1569246300000,"y":15.76},{"x":1569246360000,"y":15.77},{"x":1569246420000,"y":15.77},{"x":1569246480000,"y":15.77},{"x":1569246540000,"y":15.76},{"x":1569246600000,"y":15.77},{"x":1569246660000,"y":15.76},{"x":1569246720000,"y":15.77},{"x":1569246780000,"y":15.77},{"x":1569246840000,"y":15.75},{"x":1569246900000,"y":15.77},{"x":1569246960000,"y":15.77},{"x":1569247020000,"y":15.77},{"x":1569247080000,"y":15.78},{"x":1569247140000,"y":15.77},{"x":1569247200000,"y":15.74},{"x":1569247260000,"y":15.73},{"x":1569247320000,"y":15.73},{"x":1569247380000,"y":15.76},{"x":1569247440000,"y":15.76},{"x":1569247500000,"y":15.77},{"x":1569247560000,"y":15.76},{"x":1569247620000,"y":15.77},{"x":1569247680000,"y":15.79},{"x":1569247740000,"y":15.76},{"x":1569247800000,"y":15.74},{"x":1569247860000,"y":15.74},{"x":1569247920000,"y":15.74},{"x":1569247980000,"y":15.75},{"x":1569248040000,"y":15.76},{"x":1569248100000,"y":15.73},{"x":1569248160000,"y":15.73},{"x":1569248220000,"y":15.73},{"x":1569248280000,"y":15.74},{"x":1569248340000,"y":15.77},{"x":1569248400000,"y":15.77},{"x":1569248460000,"y":15.77},{"x":1569248520000,"y":15.77},{"x":1569248580000,"y":15.77},{"x":1569248640000,"y":15.78},{"x":1569248700000,"y":15.76},{"x":1569248760000,"y":15.77},{"x":1569248820000,"y":15.77},{"x":1569248880000,"y":15.77},{"x":1569248940000,"y":15.77},{"x":1569249000000,"y":15.77},{"x":1569249060000,"y":15.77},{"x":1569249120000,"y":15.77},{"x":1569249180000,"y":15.77},{"x":1569249240000,"y":15.77},{"x":1569249300000,"y":15.75},{"x":1569249360000,"y":15.75},{"x":1569249420000,"y":15.76},{"x":1569249480000,"y":15.75},{"x":1569249540000,"y":15.79},{"x":1569249600000,"y":15.77},{"x":1569249660000,"y":15.77},{"x":1569249720000,"y":15.76},{"x":1569249780000,"y":15.77},{"x":1569249840000,"y":15.78},{"x":1569249900000,"y":15.77},{"x":1569249960000,"y":15.77},{"x":1569250020000,"y":15.77},{"x":1569250080000,"y":15.77},{"x":1569250140000,"y":15.78},{"x":1569250200000,"y":15.77},{"x":1569250260000,"y":15.78},{"x":1569250320000,"y":15.77},{"x":1569250380000,"y":15.77},{"x":1569250440000,"y":15.78},{"x":1569250500000,"y":15.77},{"x":1569250560000,"y":15.77},{"x":1569250620000,"y":15.77},{"x":1569250680000,"y":15.78},{"x":1569250740000,"y":15.77},{"x":1569250800000,"y":15.79},{"x":1569250860000,"y":15.77},{"x":1569250920000,"y":15.77},{"x":1569250980000,"y":15.77},{"x":1569251040000,"y":15.77},{"x":1569251100000,"y":15.79},{"x":1569251160000,"y":15.78},{"x":1569251220000,"y":15.78},{"x":1569251280000,"y":15.78},{"x":1569251340000,"y":15.77},{"x":1569251400000,"y":15.77},{"x":1569251460000,"y":15.74},{"x":1569251520000,"y":15.74},{"x":1569251580000,"y":15.74},{"x":1569251640000,"y":20.94},{"x":1569251700000,"y":29.95},{"x":1569251760000,"y":21.54},{"x":1569251820000,"y":17.14},{"x":1569251880000,"y":17.14},{"x":1569251940000,"y":17.14},{"x":1569252000000,"y":17.15},{"x":1569252060000,"y":16.09},{"x":1569252120000,"y":15.57},{"x":1569252180000,"y":15.41},{"x":1569252240000,"y":15.41},{"x":1569252300000,"y":15.41},{"x":1569252360000,"y":15.4},{"x":1569252420000,"y":15.4},{"x":1569252480000,"y":15.39},{"x":1569252540000,"y":15.4},{"x":1569252600000,"y":15.4},{"x":1569252660000,"y":15.42},{"x":1569252720000,"y":15.4},{"x":1569252780000,"y":15.4},{"x":1569252840000,"y":15.4},{"x":1569252900000,"y":15.4},{"x":1569252960000,"y":15.39},{"x":1569253020000,"y":15.38},{"x":1569253080000,"y":15.37},{"x":1569253140000,"y":15.4},{"x":1569253200000,"y":15.4},{"x":1569253260000,"y":15.41},{"x":1569253320000,"y":15.41},{"x":1569253380000,"y":15.4},{"x":1569253440000,"y":15.4},{"x":1569253500000,"y":15.41},{"x":1569253560000,"y":15.41},{"x":1569253620000,"y":15.4},{"x":1569253680000,"y":15.4},{"x":1569253740000,"y":15.4},{"x":1569253800000,"y":15.38},{"x":1569253860000,"y":15.39},{"x":1569253920000,"y":15.39},{"x":1569253980000,"y":15.38},{"x":1569254040000,"y":15.38},{"x":1569254100000,"y":15.4},{"x":1569254160000,"y":15.42},{"x":1569254220000,"y":15.4},{"x":1569254280000,"y":15.4},{"x":1569254340000,"y":15.4},{"x":1569254400000,"y":15.4},{"x":1569254460000,"y":15.42},{"x":1569254520000,"y":15.4},{"x":1569254580000,"y":15.4},{"x":1569254640000,"y":15.4},{"x":1569254700000,"y":15.4},{"x":1569254760000,"y":15.4},{"x":1569254820000,"y":15.41},{"x":1569254880000,"y":15.4},{"x":1569254940000,"y":15.4},{"x":1569255000000,"y":15.4},{"x":1569255060000,"y":15.4},{"x":1569255120000,"y":15.42},{"x":1569255180000,"y":15.41},{"x":1569255240000,"y":15.41},{"x":1569255300000,"y":15.42},{"x":1569255360000,"y":15.42},{"x":1569255420000,"y":15.42},{"x":1569255480000,"y":15.4},{"x":1569255540000,"y":15.4},{"x":1569255600000,"y":15.4},{"x":1569255660000,"y":15.4},{"x":1569255720000,"y":15.41},{"x":1569255780000,"y":15.4},{"x":1569255840000,"y":15.4},{"x":1569255900000,"y":15.42},{"x":1569255960000,"y":15.4},{"x":1569256020000,"y":15.4},{"x":1569256080000,"y":15.39},{"x":1569256140000,"y":15.39},{"x":1569256200000,"y":15.39},{"x":1569256260000,"y":15.39},{"x":1569256320000,"y":15.4},{"x":1569256380000,"y":15.39},{"x":1569256440000,"y":15.39},{"x":1569256500000,"y":15.38},{"x":1569256560000,"y":15.38},{"x":1569256620000,"y":15.4},{"x":1569256680000,"y":15.39},{"x":1569256740000,"y":15.39},{"x":1569256800000,"y":15.39},{"x":1569256860000,"y":15.39},{"x":1569256920000,"y":15.39},{"x":1569256980000,"y":15.4},{"x":1569257040000,"y":15.39},{"x":1569257100000,"y":15.36},{"x":1569257160000,"y":15.35},{"x":1569257220000,"y":15.35},{"x":1569257280000,"y":15.38},{"x":1569257340000,"y":15.37},{"x":1569257400000,"y":15.35},{"x":1569257460000,"y":15.36},{"x":1569257520000,"y":15.36},{"x":1569257580000,"y":15.38},{"x":1569257640000,"y":15.37},{"x":1569257700000,"y":15.37},{"x":1569257760000,"y":15.37},{"x":1569257820000,"y":15.37},{"x":1569257880000,"y":15.38},{"x":1569257940000,"y":15.37},{"x":1569258000000,"y":15.4},{"x":1569258060000,"y":15.43},{"x":1569258120000,"y":15.43},{"x":1569258180000,"y":15.45},{"x":1569258240000,"y":15.45},{"x":1569258300000,"y":15.45},{"x":1569258360000,"y":15.45},{"x":1569258420000,"y":15.45},{"x":1569258480000,"y":15.47},{"x":1569258540000,"y":15.46},{"x":1569258600000,"y":15.46},{"x":1569258660000,"y":15.46},{"x":1569258720000,"y":15.44},{"x":1569258780000,"y":15.43},{"x":1569258840000,"y":15.46},{"x":1569258900000,"y":28.15},{"x":1569258960000,"y":26.86},{"x":1569259020000,"y":15.96},{"x":1569259080000,"y":15.62},{"x":1569259140000,"y":16.12},{"x":1569259200000,"y":15.69},{"x":1569259260000,"y":15.69},{"x":1569259320000,"y":15.69},{"x":1569259380000,"y":15.69},{"x":1569259440000,"y":15.66},{"x":1569259500000,"y":15.63},{"x":1569259560000,"y":15.62},{"x":1569259620000,"y":15.62},{"x":1569259680000,"y":15.62},{"x":1569259740000,"y":15.64},{"x":1569259800000,"y":15.64},{"x":1569259860000,"y":15.64},{"x":1569259920000,"y":15.64},{"x":1569259980000,"y":15.64},{"x":1569260040000,"y":15.64},{"x":1569260100000,"y":15.63},{"x":1569260160000,"y":15.63},{"x":1569260220000,"y":15.63},{"x":1569260280000,"y":15.63},{"x":1569260340000,"y":15.64},{"x":1569260400000,"y":15.6},{"x":1569260460000,"y":15.6},{"x":1569260520000,"y":15.6},{"x":1569260580000,"y":15.6},{"x":1569260640000,"y":15.62},{"x":1569260700000,"y":15.62},{"x":1569260760000,"y":15.62},{"x":1569260820000,"y":15.62},{"x":1569260880000,"y":15.62},{"x":1569260940000,"y":15.63},{"x":1569261000000,"y":15.64},{"x":1569261060000,"y":15.64},{"x":1569261120000,"y":15.64},{"x":1569261180000,"y":15.64},{"x":1569261240000,"y":15.65},{"x":1569261300000,"y":15.63},{"x":1569261360000,"y":15.63},{"x":1569261420000,"y":15.63},{"x":1569261480000,"y":15.63},{"x":1569261540000,"y":15.63},{"x":1569261600000,"y":15.66},{"x":1569261660000,"y":15.65},{"x":1569261720000,"y":15.65},{"x":1569261780000,"y":15.65},{"x":1569261840000,"y":15.64},{"x":1569261900000,"y":15.65},{"x":1569261960000,"y":15.64},{"x":1569262020000,"y":15.64},{"x":1569262080000,"y":15.63},{"x":1569262140000,"y":15.64},{"x":1569262200000,"y":15.65},{"x":1569262260000,"y":15.65},{"x":1569262320000,"y":15.65},{"x":1569262380000,"y":15.65},{"x":1569262440000,"y":15.65},{"x":1569262500000,"y":15.65},{"x":1569262560000,"y":15.64},{"x":1569262620000,"y":15.64},{"x":1569262680000,"y":15.64},{"x":1569262740000,"y":15.64},{"x":1569262800000,"y":15.65},{"x":1569262860000,"y":15.64},{"x":1569262920000,"y":15.58},{"x":1569262980000,"y":15.55},{"x":1569263040000,"y":15.55},{"x":1569263100000,"y":15.56},{"x":1569263160000,"y":15.56},{"x":1569263220000,"y":15.56},{"x":1569263280000,"y":15.56},{"x":1569263340000,"y":15.56},{"x":1569263400000,"y":15.56},{"x":1569263460000,"y":15.55},{"x":1569263520000,"y":15.56},{"x":1569263580000,"y":15.56},{"x":1569263640000,"y":15.56},{"x":1569263700000,"y":15.57},{"x":1569263760000,"y":15.56},{"x":1569263820000,"y":15.56},{"x":1569263880000,"y":15.56},{"x":1569263940000,"y":15.56},{"x":1569264000000,"y":15.55},{"x":1569264060000,"y":15.57},{"x":1569264120000,"y":15.55},{"x":1569264180000,"y":15.55},{"x":1569264240000,"y":15.55},{"x":1569264300000,"y":15.56},{"x":1569264360000,"y":15.57},{"x":1569264420000,"y":15.56},{"x":1569264480000,"y":15.55},{"x":1569264540000,"y":15.55},{"x":1569264600000,"y":15.55},{"x":1569264660000,"y":15.56},{"x":1569264720000,"y":15.54},{"x":1569264780000,"y":15.54},{"x":1569264840000,"y":15.52},{"x":1569264900000,"y":15.52},{"x":1569264960000,"y":15.54},{"x":1569265020000,"y":15.54},{"x":1569265080000,"y":15.54},{"x":1569265140000,"y":15.54},{"x":1569265200000,"y":15.53},{"x":1569265260000,"y":15.54},{"x":1569265320000,"y":15.54},{"x":1569265380000,"y":15.54},{"x":1569265440000,"y":15.54},{"x":1569265500000,"y":15.54},{"x":1569265560000,"y":15.55},{"x":1569265620000,"y":15.54},{"x":1569265680000,"y":15.54},{"x":1569265740000,"y":15.54},{"x":1569265800000,"y":15.54},{"x":1569265860000,"y":15.55},{"x":1569265920000,"y":15.55},{"x":1569265980000,"y":15.55},{"x":1569266040000,"y":15.55},{"x":1569266100000,"y":15.51},{"x":1569266160000,"y":15.51},{"x":1569266220000,"y":15.55},{"x":1569266280000,"y":15.53},{"x":1569266340000,"y":15.53},{"x":1569266400000,"y":15.52},{"x":1569266460000,"y":15.52},{"x":1569266520000,"y":15.55},{"x":1569266580000,"y":15.54},{"x":1569266640000,"y":15.54},{"x":1569266700000,"y":15.54},{"x":1569266760000,"y":15.54},{"x":1569266820000,"y":15.55},{"x":1569266880000,"y":15.54},{"x":1569266940000,"y":15.54},{"x":1569267000000,"y":15.54},{"x":1569267060000,"y":15.54},{"x":1569267120000,"y":15.55},{"x":1569267180000,"y":15.54},{"x":1569267240000,"y":15.54},{"x":1569267300000,"y":15.54},{"x":1569267360000,"y":15.54},{"x":1569267420000,"y":15.55},{"x":1569267480000,"y":15.55},{"x":1569267540000,"y":15.55},{"x":1569267600000,"y":15.55},{"x":1569267660000,"y":15.55},{"x":1569267720000,"y":15.57},{"x":1569267780000,"y":15.55},{"x":1569267840000,"y":15.55},{"x":1569267900000,"y":15.54},{"x":1569267960000,"y":15.54},{"x":1569268020000,"y":15.55},{"x":1569268080000,"y":15.54},{"x":1569268140000,"y":15.53},{"x":1569268200000,"y":15.55},{"x":1569268260000,"y":15.55},{"x":1569268320000,"y":15.55},{"x":1569268380000,"y":15.56},{"x":1569268440000,"y":15.54},{"x":1569268500000,"y":15.54},{"x":1569268560000,"y":15.54},{"x":1569268620000,"y":15.54},{"x":1569268680000,"y":15.55},{"x":1569268740000,"y":15.54},{"x":1569268800000,"y":15.55},{"x":1569268860000,"y":15.55},{"x":1569268920000,"y":15.55},{"x":1569268980000,"y":15.56},{"x":1569269040000,"y":15.55},{"x":1569269100000,"y":15.54},{"x":1569269160000,"y":15.54},{"x":1569269220000,"y":15.54},{"x":1569269280000,"y":15.55},{"x":1569269340000,"y":15.55},{"x":1569269400000,"y":15.55},{"x":1569269460000,"y":15.55},{"x":1569269520000,"y":15.55},{"x":1569269580000,"y":15.56},{"x":1569269640000,"y":15.55},{"x":1569269700000,"y":15.54},{"x":1569269760000,"y":15.54},{"x":1569269820000,"y":15.54},{"x":1569269880000,"y":15.57},{"x":1569269940000,"y":15.56},{"x":1569270000000,"y":15.56},{"x":1569270060000,"y":15.56},{"x":1569270120000,"y":15.56},{"x":1569270180000,"y":15.56},{"x":1569270240000,"y":15.56},{"x":1569270300000,"y":15.55},{"x":1569270360000,"y":15.55},{"x":1569270420000,"y":15.55},{"x":1569270480000,"y":15.58},{"x":1569270540000,"y":15.64},{"x":1569270600000,"y":15.63},{"x":1569270660000,"y":15.63},{"x":1569270720000,"y":15.63},{"x":1569270780000,"y":15.63},{"x":1569270840000,"y":15.64},{"x":1569270900000,"y":15.63},{"x":1569270960000,"y":15.63},{"x":1569271020000,"y":15.63},{"x":1569271080000,"y":15.63},{"x":1569271140000,"y":15.65},{"x":1569271200000,"y":15.63},{"x":1569271260000,"y":15.63},{"x":1569271320000,"y":15.63},{"x":1569271380000,"y":15.63},{"x":1569271440000,"y":15.65},{"x":1569271500000,"y":15.62},{"x":1569271560000,"y":15.62},{"x":1569271620000,"y":15.62},{"x":1569271680000,"y":15.62},{"x":1569271740000,"y":15.63},{"x":1569271800000,"y":15.62},{"x":1569271860000,"y":15.62},{"x":1569271920000,"y":15.62},{"x":1569271980000,"y":15.62},{"x":1569272040000,"y":15.63},{"x":1569272100000,"y":15.64},{"x":1569272160000,"y":15.63},{"x":1569272220000,"y":15.63},{"x":1569272280000,"y":15.63},{"x":1569272340000,"y":15.64},{"x":1569272400000,"y":15.63},{"x":1569272460000,"y":15.64},{"x":1569272520000,"y":15.64},{"x":1569272580000,"y":15.64},{"x":1569272640000,"y":15.63},{"x":1569272700000,"y":15.82},{"x":1569272760000,"y":15.71},{"x":1569272820000,"y":15.71},{"x":1569272880000,"y":15.71},{"x":1569272940000,"y":15.7},{"x":1569273000000,"y":15.69},{"x":1569273060000,"y":15.64},{"x":1569273120000,"y":15.64},{"x":1569273180000,"y":15.64},{"x":1569273240000,"y":15.64},{"x":1569273300000,"y":15.64},{"x":1569273360000,"y":15.63},{"x":1569273420000,"y":15.64},{"x":1569273480000,"y":15.64},{"x":1569273540000,"y":15.64},{"x":1569273600000,"y":15.65},{"x":1569273660000,"y":15.64},{"x":1569273720000,"y":15.62},{"x":1569273780000,"y":15.62},{"x":1569273840000,"y":15.62},{"x":1569273900000,"y":15.63},{"x":1569273960000,"y":15.63},{"x":1569274020000,"y":15.63},{"x":1569274080000,"y":15.63},{"x":1569274140000,"y":15.63},{"x":1569274200000,"y":15.63},{"x":1569274260000,"y":15.63},{"x":1569274320000,"y":15.63},{"x":1569274380000,"y":15.63},{"x":1569274440000,"y":15.63},{"x":1569274500000,"y":15.64},{"x":1569274560000,"y":15.62},{"x":1569274620000,"y":15.62},{"x":1569274680000,"y":15.62},{"x":1569274740000,"y":15.62},{"x":1569274800000,"y":15.63},{"x":1569274860000,"y":15.64},{"x":1569274920000,"y":15.64},{"x":1569274980000,"y":15.63},{"x":1569275040000,"y":15.63},{"x":1569275100000,"y":15.63},{"x":1569275160000,"y":15.63},{"x":1569275220000,"y":15.63},{"x":1569275280000,"y":15.63},{"x":1569275340000,"y":15.63},{"x":1569275400000,"y":15.62},{"x":1569275460000,"y":15.63},{"x":1569275520000,"y":15.62},{"x":1569275580000,"y":15.62},{"x":1569275640000,"y":15.61},{"x":1569275700000,"y":15.62},{"x":1569275760000,"y":15.63},{"x":1569275820000,"y":15.63},{"x":1569275880000,"y":15.63},{"x":1569275940000,"y":15.63},{"x":1569276000000,"y":15.62},{"x":1569276060000,"y":15.64},{"x":1569276120000,"y":15.63},{"x":1569276180000,"y":15.63},{"x":1569276240000,"y":15.63},{"x":1569276300000,"y":15.63},{"x":1569276360000,"y":15.63},{"x":1569276420000,"y":15.62},{"x":1569276480000,"y":15.63},{"x":1569276540000,"y":15.63},{"x":1569276600000,"y":15.63},{"x":1569276660000,"y":15.64},{"x":1569276720000,"y":15.63},{"x":1569276780000,"y":15.63},{"x":1569276840000,"y":15.63},{"x":1569276900000,"y":15.63},{"x":1569276960000,"y":15.64},{"x":1569277020000,"y":15.63},{"x":1569277080000,"y":15.63},{"x":1569277140000,"y":15.63},{"x":1569277200000,"y":15.63},{"x":1569277260000,"y":15.63},{"x":1569277320000,"y":15.65},{"x":1569277380000,"y":15.63},{"x":1569277440000,"y":15.63},{"x":1569277500000,"y":15.64},{"x":1569277560000,"y":15.64},{"x":1569277620000,"y":15.62},{"x":1569277680000,"y":15.7},{"x":1569277740000,"y":15.7},{"x":1569277800000,"y":15.7},{"x":1569277860000,"y":15.7},{"x":1569277920000,"y":15.71},{"x":1569277980000,"y":15.69},{"x":1569278040000,"y":15.64},{"x":1569278100000,"y":15.64},{"x":1569278160000,"y":15.64},{"x":1569278220000,"y":15.65},{"x":1569278280000,"y":15.64},{"x":1569278340000,"y":15.63},{"x":1569278400000,"y":15.59},{"x":1569278460000,"y":15.59},{"x":1569278520000,"y":15.62},{"x":1569278580000,"y":15.64},{"x":1569278640000,"y":15.64},{"x":1569278700000,"y":15.63},{"x":1569278760000,"y":15.63},{"x":1569278820000,"y":15.65},{"x":1569278880000,"y":15.65},{"x":1569278940000,"y":15.65},{"x":1569279000000,"y":15.61},{"x":1569279060000,"y":15.61},{"x":1569279120000,"y":15.62},{"x":1569279180000,"y":15.63},{"x":1569279240000,"y":15.64},{"x":1569279300000,"y":15.64},{"x":1569279360000,"y":15.64},{"x":1569279420000,"y":15.65},{"x":1569279480000,"y":15.65},{"x":1569279540000,"y":15.65},{"x":1569279600000,"y":15.44},{"x":1569279660000,"y":15.42},{"x":1569279720000,"y":15.42},{"x":1569279780000,"y":15.43},{"x":1569279840000,"y":15.42},{"x":1569279900000,"y":15.42},{"x":1569279960000,"y":15.42},{"x":1569280020000,"y":15.42},{"x":1569280080000,"y":15.44},{"x":1569280140000,"y":15.41},{"x":1569280200000,"y":15.4},{"x":1569280260000,"y":15.4},{"x":1569280320000,"y":15.4},{"x":1569280380000,"y":15.42},{"x":1569280440000,"y":15.42},{"x":1569280500000,"y":15.42},{"x":1569280560000,"y":15.42},{"x":1569280620000,"y":15.41},{"x":1569280680000,"y":15.43},{"x":1569280740000,"y":15.43},{"x":1569280800000,"y":15.43},{"x":1569280860000,"y":15.43},{"x":1569280920000,"y":15.43},{"x":1569280980000,"y":15.69},{"x":1569281040000,"y":15.49},{"x":1569281100000,"y":15.49},{"x":1569281160000,"y":15.49},{"x":1569281220000,"y":15.49},{"x":1569281280000,"y":15.48},{"x":1569281340000,"y":15.42},{"x":1569281400000,"y":15.42},{"x":1569281460000,"y":15.42},{"x":1569281520000,"y":15.42},{"x":1569281580000,"y":15.43},{"x":1569281640000,"y":15.43},{"x":1569281700000,"y":15.41},{"x":1569281760000,"y":15.42},{"x":1569281820000,"y":15.41},{"x":1569281880000,"y":15.41},{"x":1569281940000,"y":15.44},{"x":1569282000000,"y":15.43},{"x":1569282060000,"y":15.43},{"x":1569282120000,"y":15.43},{"x":1569282180000,"y":15.43},{"x":1569282240000,"y":15.44},{"x":1569282300000,"y":15.4},{"x":1569282360000,"y":15.4},{"x":1569282420000,"y":15.4},{"x":1569282480000,"y":15.38},{"x":1569282540000,"y":15.4},{"x":1569282600000,"y":15.4},{"x":1569282660000,"y":15.4},{"x":1569282720000,"y":15.4},{"x":1569282780000,"y":15.4},{"x":1569282840000,"y":15.41},{"x":1569282900000,"y":15.4},{"x":1569282960000,"y":15.4},{"x":1569283020000,"y":15.41},{"x":1569283080000,"y":15.41},{"x":1569283140000,"y":15.42},{"x":1569283200000,"y":15.41},{"x":1569283260000,"y":15.41},{"x":1569283320000,"y":15.41},{"x":1569283380000,"y":15.41},{"x":1569283440000,"y":15.42},{"x":1569283500000,"y":15.41},{"x":1569283560000,"y":15.4},{"x":1569283620000,"y":15.4},{"x":1569283680000,"y":15.4},{"x":1569283740000,"y":15.42},{"x":1569283800000,"y":15.42},{"x":1569283860000,"y":15.41},{"x":1569283920000,"y":15.41},{"x":1569283980000,"y":15.41},{"x":1569284040000,"y":15.41},{"x":1569284100000,"y":15.42},{"x":1569284160000,"y":15.41},{"x":1569284220000,"y":15.41},{"x":1569284280000,"y":15.4},{"x":1569284340000,"y":15.4},{"x":1569284400000,"y":15.42},{"x":1569284460000,"y":15.41},{"x":1569284520000,"y":15.41},{"x":1569284580000,"y":15.41},{"x":1569284640000,"y":15.41},{"x":1569284700000,"y":15.42},{"x":1569284760000,"y":15.41},{"x":1569284820000,"y":15.41},{"x":1569284880000,"y":15.41},{"x":1569284940000,"y":15.41},{"x":1569285000000,"y":15.42},{"x":1569285060000,"y":15.41},{"x":1569285120000,"y":15.41},{"x":1569285180000,"y":15.41},{"x":1569285240000,"y":15.4},{"x":1569285300000,"y":15.42},{"x":1569285360000,"y":15.41},{"x":1569285420000,"y":15.41},{"x":1569285480000,"y":15.41},{"x":1569285540000,"y":15.41},{"x":1569285600000,"y":15.41},{"x":1569285660000,"y":15.4},{"x":1569285720000,"y":15.4},{"x":1569285780000,"y":15.4},{"x":1569285840000,"y":15.41},{"x":1569285900000,"y":15.42},{"x":1569285960000,"y":15.42},{"x":1569286020000,"y":15.41},{"x":1569286080000,"y":15.41},{"x":1569286140000,"y":15.41},{"x":1569286200000,"y":15.41},{"x":1569286260000,"y":15.42},{"x":1569286320000,"y":15.41},{"x":1569286380000,"y":15.41},{"x":1569286440000,"y":15.41},{"x":1569286500000,"y":15.42},{"x":1569286560000,"y":15.42},{"x":1569286620000,"y":15.41},{"x":1569286680000,"y":15.41},{"x":1569286740000,"y":15.41},{"x":1569286800000,"y":15.42},{"x":1569286860000,"y":15.43},{"x":1569286920000,"y":15.42},{"x":1569286980000,"y":15.42},{"x":1569287040000,"y":15.42},{"x":1569287100000,"y":15.42},{"x":1569287160000,"y":15.44},{"x":1569287220000,"y":15.41},{"x":1569287280000,"y":15.41},{"x":1569287340000,"y":15.41},{"x":1569287400000,"y":15.41},{"x":1569287460000,"y":15.43},{"x":1569287520000,"y":15.42},{"x":1569287580000,"y":15.42},{"x":1569287640000,"y":15.42},{"x":1569287700000,"y":15.41},{"x":1569287760000,"y":15.42},{"x":1569287820000,"y":15.42},{"x":1569287880000,"y":15.42},{"x":1569287940000,"y":15.42},{"x":1569288000000,"y":15.42},{"x":1569288060000,"y":15.43},{"x":1569288120000,"y":15.42},{"x":1569288180000,"y":15.42},{"x":1569288240000,"y":15.42},{"x":1569288300000,"y":15.41},{"x":1569288360000,"y":15.41},{"x":1569288420000,"y":15.43},{"x":1569288480000,"y":15.42},{"x":1569288540000,"y":15.42},{"x":1569288600000,"y":15.42},{"x":1569288660000,"y":15.42},{"x":1569288720000,"y":15.44},{"x":1569288780000,"y":15.41},{"x":1569288840000,"y":15.41},{"x":1569288900000,"y":15.43},{"x":1569288960000,"y":15.43},{"x":1569289020000,"y":15.43},{"x":1569289080000,"y":15.42},{"x":1569289140000,"y":15.41},{"x":1569289200000,"y":15.42},{"x":1569289260000,"y":15.42},{"x":1569289320000,"y":15.43},{"x":1569289380000,"y":15.41},{"x":1569289440000,"y":15.41},{"x":1569289500000,"y":15.41},{"x":1569289560000,"y":15.4},{"x":1569289620000,"y":15.42},{"x":1569289680000,"y":15.43},{"x":1569289740000,"y":15.43},{"x":1569289800000,"y":15.43},{"x":1569289860000,"y":15.43},{"x":1569289920000,"y":15.44},{"x":1569289980000,"y":15.43},{"x":1569290040000,"y":15.41},{"x":1569290100000,"y":15.42},{"x":1569290160000,"y":15.42},{"x":1569290220000,"y":15.43},{"x":1569290280000,"y":15.42},{"x":1569290340000,"y":15.42},{"x":1569290400000,"y":15.42},{"x":1569290460000,"y":15.42},{"x":1569290520000,"y":15.42},{"x":1569290580000,"y":15.43},{"x":1569290640000,"y":15.43},{"x":1569290700000,"y":15.43},{"x":1569290760000,"y":15.43},{"x":1569290820000,"y":15.43},{"x":1569290880000,"y":15.45},{"x":1569290940000,"y":15.43},{"x":1569291000000,"y":15.43},{"x":1569291060000,"y":15.43},{"x":1569291120000,"y":15.43},{"x":1569291180000,"y":15.45},{"x":1569291240000,"y":15.43},{"x":1569291300000,"y":15.43},{"x":1569291360000,"y":15.43},{"x":1569291420000,"y":15.44},{"x":1569291480000,"y":15.44},{"x":1569291540000,"y":15.4},{"x":1569291600000,"y":15.41},{"x":1569291660000,"y":15.41},{"x":1569291720000,"y":15.41},{"x":1569291780000,"y":15.42},{"x":1569291840000,"y":15.4},{"x":1569291900000,"y":15.41},{"x":1569291960000,"y":15.41},{"x":1569292020000,"y":15.41},{"x":1569292080000,"y":15.42},{"x":1569292140000,"y":15.41},{"x":1569292200000,"y":15.41},{"x":1569292260000,"y":15.41},{"x":1569292320000,"y":15.41},{"x":1569292380000,"y":15.41},{"x":1569292440000,"y":15.42},{"x":1569292500000,"y":15.4},{"x":1569292560000,"y":15.4},{"x":1569292620000,"y":15.4},{"x":1569292680000,"y":15.4},{"x":1569292740000,"y":15.42},{"x":1569292800000,"y":15.41},{"x":1569292860000,"y":15.41},{"x":1569292920000,"y":15.41},{"x":1569292980000,"y":15.41},{"x":1569293040000,"y":15.42},{"x":1569293100000,"y":15.38},{"x":1569293160000,"y":15.38},{"x":1569293220000,"y":15.38},{"x":1569293280000,"y":15.38},{"x":1569293340000,"y":15.41},{"x":1569293400000,"y":15.41},{"x":1569293460000,"y":15.41},{"x":1569293520000,"y":15.41},{"x":1569293580000,"y":15.41},{"x":1569293640000,"y":15.42},{"x":1569293700000,"y":15.4},{"x":1569293760000,"y":15.4},{"x":1569293820000,"y":15.4},{"x":1569293880000,"y":15.4},{"x":1569293940000,"y":15.42},{"x":1569294000000,"y":15.38},{"x":1569294060000,"y":15.38},{"x":1569294120000,"y":15.38},{"x":1569294180000,"y":15.38},{"x":1569294240000,"y":15.39},{"x":1569294300000,"y":15.41},{"x":1569294360000,"y":15.41},{"x":1569294420000,"y":15.41},{"x":1569294480000,"y":15.41},{"x":1569294540000,"y":15.42},{"x":1569294600000,"y":15.42},{"x":1569294660000,"y":15.41},{"x":1569294720000,"y":15.41},{"x":1569294780000,"y":15.41},{"x":1569294840000,"y":15.41},{"x":1569294900000,"y":15.42},{"x":1569294960000,"y":15.41},{"x":1569295020000,"y":15.4},{"x":1569295080000,"y":15.4},{"x":1569295140000,"y":15.4},{"x":1569295200000,"y":15.42},{"x":1569295260000,"y":15.42},{"x":1569295320000,"y":15.42},{"x":1569295380000,"y":15.42},{"x":1569295440000,"y":15.42},{"x":1569295500000,"y":15.43},{"x":1569295560000,"y":15.41},{"x":1569295620000,"y":15.41},{"x":1569295680000,"y":15.41},{"x":1569295740000,"y":15.41},{"x":1569295800000,"y":15.42},{"x":1569295860000,"y":15.41},{"x":1569295920000,"y":15.41},{"x":1569295980000,"y":15.41},{"x":1569296040000,"y":15.41},{"x":1569296100000,"y":15.41},{"x":1569296160000,"y":15.4},{"x":1569296220000,"y":15.4},{"x":1569296280000,"y":15.41},{"x":1569296340000,"y":15.42},{"x":1569296400000,"y":15.42},{"x":1569296460000,"y":15.42},{"x":1569296520000,"y":15.42},{"x":1569296580000,"y":15.42},{"x":1569296640000,"y":15.42},{"x":1569296700000,"y":15.43},{"x":1569296760000,"y":15.42},{"x":1569296820000,"y":15.42},{"x":1569296880000,"y":15.42},{"x":1569296940000,"y":15.42},{"x":1569297000000,"y":15.42},{"x":1569297060000,"y":15.43},{"x":1569297120000,"y":15.42},{"x":1569297180000,"y":15.42},{"x":1569297240000,"y":15.41},{"x":1569297300000,"y":15.41},{"x":1569297360000,"y":15.42},{"x":1569297420000,"y":15.42},{"x":1569297480000,"y":15.42},{"x":1569297540000,"y":15.42},{"x":1569297600000,"y":15.42},{"x":1569297660000,"y":15.44},{"x":1569297720000,"y":15.42},{"x":1569297780000,"y":15.42},{"x":1569297840000,"y":15.42},{"x":1569297900000,"y":15.42},{"x":1569297960000,"y":15.43},{"x":1569298020000,"y":15.42},{"x":1569298080000,"y":15.42},{"x":1569298140000,"y":15.42},{"x":1569298200000,"y":15.42},{"x":1569298260000,"y":15.43},{"x":1569298320000,"y":15.42},{"x":1569298380000,"y":15.42},{"x":1569298440000,"y":15.42},{"x":1569298500000,"y":15.42},{"x":1569298560000,"y":15.42},{"x":1569298620000,"y":15.42},{"x":1569298680000,"y":15.42},{"x":1569298740000,"y":15.42},{"x":1569298800000,"y":15.4},{"x":1569298860000,"y":15.41},{"x":1569298920000,"y":15.43},{"x":1569298980000,"y":15.43},{"x":1569299040000,"y":15.43},{"x":1569299100000,"y":15.42},{"x":1569299160000,"y":15.42},{"x":1569299220000,"y":15.44},{"x":1569299280000,"y":15.42},{"x":1569299340000,"y":15.42},{"x":1569299400000,"y":15.42},{"x":1569299460000,"y":15.42},{"x":1569299520000,"y":15.44},{"x":1569299580000,"y":15.43},{"x":1569299640000,"y":15.43},{"x":1569299700000,"y":15.43},{"x":1569299760000,"y":15.43},{"x":1569299820000,"y":15.44},{"x":1569299880000,"y":15.43},{"x":1569299940000,"y":15.42},{"x":1569300000000,"y":15.42},{"x":1569300060000,"y":15.42},{"x":1569300120000,"y":15.44},{"x":1569300180000,"y":15.43},{"x":1569300240000,"y":15.43},{"x":1569300300000,"y":15.43},{"x":1569300360000,"y":15.43},{"x":1569300420000,"y":15.44},{"x":1569300480000,"y":15.41},{"x":1569300540000,"y":15.4},{"x":1569300600000,"y":15.41},{"x":1569300660000,"y":15.41},{"x":1569300720000,"y":15.42},{"x":1569300780000,"y":15.41},{"x":1569300840000,"y":15.39},{"x":1569300900000,"y":15.41},{"x":1569300960000,"y":15.41},{"x":1569301020000,"y":15.42},{"x":1569301080000,"y":15.39},{"x":1569301140000,"y":15.39},{"x":1569301200000,"y":15.4},{"x":1569301260000,"y":15.4},{"x":1569301320000,"y":15.39},{"x":1569301380000,"y":15.42},{"x":1569301440000,"y":15.41},{"x":1569301500000,"y":15.41},{"x":1569301560000,"y":15.41},{"x":1569301620000,"y":15.41},{"x":1569301680000,"y":15.4},{"x":1569301740000,"y":15.41},{"x":1569301800000,"y":15.41},{"x":1569301860000,"y":15.41},{"x":1569301920000,"y":15.41},{"x":1569301980000,"y":15.42},{"x":1569302040000,"y":15.41},{"x":1569302100000,"y":15.4},{"x":1569302160000,"y":15.4},{"x":1569302220000,"y":15.4},{"x":1569302280000,"y":15.41},{"x":1569302340000,"y":15.4},{"x":1569302400000,"y":15.41},{"x":1569302460000,"y":15.4},{"x":1569302520000,"y":15.41},{"x":1569302580000,"y":15.73},{"x":1569302640000,"y":15.48},{"x":1569302700000,"y":15.48},{"x":1569302760000,"y":15.48},{"x":1569302820000,"y":15.48},{"x":1569302880000,"y":15.49},{"x":1569302940000,"y":15.41},{"x":1569303000000,"y":15.41},{"x":1569303060000,"y":15.41},{"x":1569303120000,"y":15.41},{"x":1569303180000,"y":15.41},{"x":1569303240000,"y":15.43},{"x":1569303300000,"y":15.41},{"x":1569303360000,"y":15.41},{"x":1569303420000,"y":15.41},{"x":1569303480000,"y":15.41},{"x":1569303540000,"y":15.42},{"x":1569303600000,"y":15.41},{"x":1569303660000,"y":15.41},{"x":1569303720000,"y":15.41},{"x":1569303780000,"y":15.41},{"x":1569303840000,"y":15.42},{"x":1569303900000,"y":15.38},{"x":1569303960000,"y":15.38},{"x":1569304020000,"y":15.38},{"x":1569304080000,"y":15.38},{"x":1569304140000,"y":15.41},{"x":1569304200000,"y":15.4},{"x":1569304260000,"y":15.4},{"x":1569304320000,"y":15.4},{"x":1569304380000,"y":15.4},{"x":1569304440000,"y":15.41},{"x":1569304500000,"y":15.42},{"x":1569304560000,"y":15.42},{"x":1569304620000,"y":15.42},{"x":1569304680000,"y":15.41},{"x":1569304740000,"y":15.43},{"x":1569304800000,"y":15.43},{"x":1569304860000,"y":15.43},{"x":1569304920000,"y":15.43},{"x":1569304980000,"y":15.43},{"x":1569305040000,"y":15.43},{"x":1569305100000,"y":15.43},{"x":1569305160000,"y":15.41},{"x":1569305220000,"y":15.41},{"x":1569305280000,"y":15.41},{"x":1569305340000,"y":15.42},{"x":1569305400000,"y":15.43},{"x":1569305460000,"y":15.42},{"x":1569305520000,"y":15.42},{"x":1569305580000,"y":15.42},{"x":1569305640000,"y":15.42},{"x":1569305700000,"y":15.43},{"x":1569305760000,"y":15.42},{"x":1569305820000,"y":15.42},{"x":1569305880000,"y":15.42},{"x":1569305940000,"y":15.42},{"x":1569306000000,"y":15.42},{"x":1569306060000,"y":15.41},{"x":1569306120000,"y":15.41},{"x":1569306180000,"y":15.42},{"x":1569306240000,"y":15.42},{"x":1569306300000,"y":15.43},{"x":1569306360000,"y":15.42},{"x":1569306420000,"y":15.42},{"x":1569306480000,"y":15.42},{"x":1569306540000,"y":15.42},{"x":1569306600000,"y":15.43},{"x":1569306660000,"y":15.42},{"x":1569306720000,"y":15.42},{"x":1569306780000,"y":15.42},{"x":1569306840000,"y":15.42},{"x":1569306900000,"y":15.43},{"x":1569306960000,"y":15.19},{"x":1569307020000,"y":14.97},{"x":1569307080000,"y":14.97},{"x":1569307140000,"y":14.96},{"x":1569307200000,"y":14.97},{"x":1569307260000,"y":14.99},{"x":1569307320000,"y":14.98},{"x":1569307380000,"y":14.98},{"x":1569307440000,"y":14.98},{"x":1569307500000,"y":14.95},{"x":1569307560000,"y":14.99},{"x":1569307620000,"y":14.98},{"x":1569307680000,"y":14.98},{"x":1569307740000,"y":14.98},{"x":1569307800000,"y":14.98},{"x":1569307860000,"y":14.98},{"x":1569307920000,"y":14.97},{"x":1569307980000,"y":14.97},{"x":1569308040000,"y":15.14},{"x":1569308100000,"y":15.06},{"x":1569308160000,"y":15.07},{"x":1569308220000,"y":15.06},{"x":1569308280000,"y":15.06},{"x":1569308340000,"y":15.05},{"x":1569308400000,"y":14.96},{"x":1569308460000,"y":14.98},{"x":1569308520000,"y":14.97},{"x":1569308580000,"y":14.97},{"x":1569308640000,"y":14.97},{"x":1569308700000,"y":14.97},{"x":1569308760000,"y":14.99},{"x":1569308820000,"y":14.97},{"x":1569308880000,"y":14.97},{"x":1569308940000,"y":15},{"x":1569309000000,"y":15},{"x":1569309060000,"y":15.01},{"x":1569309120000,"y":14.99},{"x":1569309180000,"y":14.99},{"x":1569309240000,"y":14.99},{"x":1569309300000,"y":15},{"x":1569309360000,"y":15.01},{"x":1569309420000,"y":14.99},{"x":1569309480000,"y":14.98},{"x":1569309540000,"y":14.97},{"x":1569309600000,"y":14.96},{"x":1569309660000,"y":14.96},{"x":1569309720000,"y":14.97},{"x":1569309780000,"y":14.96},{"x":1569309840000,"y":14.96},{"x":1569309900000,"y":14.97},{"x":1569309960000,"y":14.97},{"x":1569310020000,"y":14.98},{"x":1569310080000,"y":14.97},{"x":1569310140000,"y":14.97},{"x":1569310200000,"y":14.97},{"x":1569310260000,"y":14.97},{"x":1569310320000,"y":15},{"x":1569310380000,"y":14.98},{"x":1569310440000,"y":14.98},{"x":1569310500000,"y":14.98},{"x":1569310560000,"y":14.97},{"x":1569310620000,"y":14.99},{"x":1569310680000,"y":14.97},{"x":1569310740000,"y":14.98},{"x":1569310800000,"y":14.98},{"x":1569310860000,"y":14.98},{"x":1569310920000,"y":14.99},{"x":1569310980000,"y":14.98},{"x":1569311040000,"y":14.98},{"x":1569311100000,"y":14.97},{"x":1569311160000,"y":14.97},{"x":1569311220000,"y":14.98},{"x":1569311280000,"y":14.98},{"x":1569311340000,"y":14.98},{"x":1569311400000,"y":14.98},{"x":1569311460000,"y":14.98},{"x":1569311520000,"y":14.98},{"x":1569311580000,"y":14.98},{"x":1569311640000,"y":14.96},{"x":1569311700000,"y":14.98},{"x":1569311760000,"y":14.98},{"x":1569311820000,"y":14.98},{"x":1569311880000,"y":14.99},{"x":1569311940000,"y":14.98},{"x":1569312000000,"y":14.98},{"x":1569312060000,"y":14.98},{"x":1569312120000,"y":14.98},{"x":1569312180000,"y":14.99},{"x":1569312240000,"y":14.98},{"x":1569312300000,"y":14.98},{"x":1569312360000,"y":14.98},{"x":1569312420000,"y":14.98},{"x":1569312480000,"y":14.99},{"x":1569312540000,"y":14.98},{"x":1569312600000,"y":14.98},{"x":1569312660000,"y":14.98},{"x":1569312720000,"y":14.98},{"x":1569312780000,"y":15},{"x":1569312840000,"y":14.99},{"x":1569312900000,"y":14.97},{"x":1569312960000,"y":14.97},{"x":1569313020000,"y":14.97},{"x":1569313080000,"y":14.98},{"x":1569313140000,"y":14.98},{"x":1569313200000,"y":14.99},{"x":1569313260000,"y":14.99},{"x":1569313320000,"y":14.99},{"x":1569313380000,"y":14.99},{"x":1569313440000,"y":15},{"x":1569313500000,"y":14.99},{"x":1569313560000,"y":14.99},{"x":1569313620000,"y":14.99},{"x":1569313680000,"y":14.99},{"x":1569313740000,"y":14.99},{"x":1569313800000,"y":14.95},{"x":1569313860000,"y":14.95},{"x":1569313920000,"y":14.95},{"x":1569313980000,"y":14.95},{"x":1569314040000,"y":14.99},{"x":1569314100000,"y":14.98},{"x":1569314160000,"y":14.98},{"x":1569314220000,"y":14.98},{"x":1569314280000,"y":14.98},{"x":1569314340000,"y":15.01},{"x":1569314400000,"y":14.99},{"x":1569314460000,"y":14.98},{"x":1569314520000,"y":14.98},{"x":1569314580000,"y":14.98},{"x":1569314640000,"y":14.99},{"x":1569314700000,"y":14.98},{"x":1569314760000,"y":14.98},{"x":1569314820000,"y":14.98},{"x":1569314880000,"y":14.98},{"x":1569314940000,"y":14.98},{"x":1569315000000,"y":14.96},{"x":1569315060000,"y":14.96},{"x":1569315120000,"y":14.96},{"x":1569315180000,"y":14.96},{"x":1569315240000,"y":14.98},{"x":1569315300000,"y":14.98},{"x":1569315360000,"y":14.98},{"x":1569315420000,"y":14.98},{"x":1569315480000,"y":14.98},{"x":1569315540000,"y":14.99},{"x":1569315600000,"y":14.95},{"x":1569315660000,"y":14.95},{"x":1569315720000,"y":14.95},{"x":1569315780000,"y":14.95},{"x":1569315840000,"y":14.95},{"x":1569315900000,"y":15.01},{"x":1569315960000,"y":14.99},{"x":1569316020000,"y":14.99},{"x":1569316080000,"y":14.99},{"x":1569316140000,"y":14.99},{"x":1569316200000,"y":15},{"x":1569316260000,"y":14.98},{"x":1569316320000,"y":14.98},{"x":1569316380000,"y":14.98},{"x":1569316440000,"y":14.98},{"x":1569316500000,"y":15},{"x":1569316560000,"y":14.99},{"x":1569316620000,"y":14.99},{"x":1569316680000,"y":14.99},{"x":1569316740000,"y":14.99},{"x":1569316800000,"y":14.98},{"x":1569316860000,"y":14.96},{"x":1569316920000,"y":14.96},{"x":1569316980000,"y":14.96},{"x":1569317040000,"y":14.96},{"x":1569317100000,"y":14.99},{"x":1569317160000,"y":15},{"x":1569317220000,"y":15},{"x":1569317280000,"y":15},{"x":1569317340000,"y":15},{"x":1569317400000,"y":15.01},{"x":1569317460000,"y":14.99},{"x":1569317520000,"y":14.99},{"x":1569317580000,"y":14.99},{"x":1569317640000,"y":14.99},{"x":1569317700000,"y":15},{"x":1569317760000,"y":15},{"x":1569317820000,"y":15},{"x":1569317880000,"y":15},{"x":1569317940000,"y":14.99},{"x":1569318000000,"y":14.99},{"x":1569318060000,"y":15.01},{"x":1569318120000,"y":14.99},{"x":1569318180000,"y":14.99},{"x":1569318240000,"y":14.99},{"x":1569318300000,"y":14.99},{"x":1569318360000,"y":14.99},{"x":1569318420000,"y":14.97},{"x":1569318480000,"y":14.96},{"x":1569318540000,"y":14.96},{"x":1569318600000,"y":14.95},{"x":1569318660000,"y":14.97},{"x":1569318720000,"y":14.97},{"x":1569318780000,"y":14.98},{"x":1569318840000,"y":14.98},{"x":1569318900000,"y":14.98},{"x":1569318960000,"y":14.98},{"x":1569319020000,"y":14.97},{"x":1569319080000,"y":14.97},{"x":1569319140000,"y":14.97},{"x":1569319200000,"y":14.97},{"x":1569319260000,"y":14.98},{"x":1569319320000,"y":14.97},{"x":1569319380000,"y":14.97},{"x":1569319440000,"y":14.97},{"x":1569319500000,"y":14.97},{"x":1569319560000,"y":14.98},{"x":1569319620000,"y":14.97},{"x":1569319680000,"y":14.97},{"x":1569319740000,"y":14.98},{"x":1569319800000,"y":14.96},{"x":1569319860000,"y":14.98},{"x":1569319920000,"y":14.98},{"x":1569319980000,"y":14.98},{"x":1569320040000,"y":14.98},{"x":1569320100000,"y":14.98},{"x":1569320160000,"y":14.98},{"x":1569320220000,"y":14.99},{"x":1569320280000,"y":14.98},{"x":1569320340000,"y":14.98},{"x":1569320400000,"y":14.97},{"x":1569320460000,"y":14.97},{"x":1569320520000,"y":14.98},{"x":1569320580000,"y":14.97},{"x":1569320640000,"y":14.97},{"x":1569320700000,"y":14.99},{"x":1569320760000,"y":14.99},{"x":1569320820000,"y":15},{"x":1569320880000,"y":14.99},{"x":1569320940000,"y":14.99},{"x":1569321000000,"y":14.99},{"x":1569321060000,"y":14.99},{"x":1569321120000,"y":14.99},{"x":1569321180000,"y":14.98},{"x":1569321240000,"y":14.98},{"x":1569321300000,"y":14.97},{"x":1569321360000,"y":14.96},{"x":1569321420000,"y":14.98},{"x":1569321480000,"y":14.98},{"x":1569321540000,"y":14.98},{"x":1569321600000,"y":14.97},{"x":1569321660000,"y":14.97},{"x":1569321720000,"y":14.98},{"x":1569321780000,"y":14.95},{"x":1569321840000,"y":14.95},{"x":1569321900000,"y":14.95},{"x":1569321960000,"y":14.95},{"x":1569322020000,"y":14.96},{"x":1569322080000,"y":14.98},{"x":1569322140000,"y":14.98},{"x":1569322200000,"y":14.98},{"x":1569322260000,"y":14.98},{"x":1569322320000,"y":14.98},{"x":1569322380000,"y":15},{"x":1569322440000,"y":14.99},{"x":1569322500000,"y":14.98},{"x":1569322560000,"y":14.98},{"x":1569322620000,"y":14.98},{"x":1569322680000,"y":14.98},{"x":1569322740000,"y":14.97},{"x":1569322800000,"y":14.95},{"x":1569322860000,"y":14.95},{"x":1569322920000,"y":14.94},{"x":1569322980000,"y":14.96},{"x":1569323040000,"y":14.96},{"x":1569323100000,"y":14.98},{"x":1569323160000,"y":14.98},{"x":1569323220000,"y":14.98},{"x":1569323280000,"y":14.99},{"x":1569323340000,"y":14.98},{"x":1569323400000,"y":14.98},{"x":1569323460000,"y":14.98},{"x":1569323520000,"y":14.98},{"x":1569323580000,"y":14.99},{"x":1569323640000,"y":14.96},{"x":1569323700000,"y":14.97},{"x":1569323760000,"y":14.97},{"x":1569323820000,"y":14.96},{"x":1569323880000,"y":14.96},{"x":1569323940000,"y":15},{"x":1569324000000,"y":14.98},{"x":1569324060000,"y":14.98},{"x":1569324120000,"y":14.98},{"x":1569324180000,"y":14.98},{"x":1569324240000,"y":15.3},{"x":1569324300000,"y":15.66},{"x":1569324360000,"y":15.4},{"x":1569324420000,"y":15.05},{"x":1569324480000,"y":15.05},{"x":1569324540000,"y":15.06},{"x":1569324600000,"y":15.05},{"x":1569324660000,"y":14.99},{"x":1569324720000,"y":14.97},{"x":1569324780000,"y":14.97},{"x":1569324840000,"y":14.98},{"x":1569324900000,"y":14.99},{"x":1569324960000,"y":14.99},{"x":1569325020000,"y":14.99},{"x":1569325080000,"y":14.99},{"x":1569325140000,"y":14.99},{"x":1569325200000,"y":14.99},{"x":1569325260000,"y":14.98},{"x":1569325320000,"y":14.98},{"x":1569325380000,"y":14.98},{"x":1569325440000,"y":14.99},{"x":1569325500000,"y":14.99},{"x":1569325560000,"y":14.99},{"x":1569325620000,"y":14.99},{"x":1569325680000,"y":14.99},{"x":1569325740000,"y":15},{"x":1569325800000,"y":14.99},{"x":1569325860000,"y":14.99},{"x":1569325920000,"y":14.99},{"x":1569325980000,"y":14.98},{"x":1569326040000,"y":14.99},{"x":1569326100000,"y":14.98},{"x":1569326160000,"y":14.98},{"x":1569326220000,"y":14.98},{"x":1569326280000,"y":14.98},{"x":1569326340000,"y":14.98},{"x":1569326400000,"y":14.98},{"x":1569326460000,"y":14.97},{"x":1569326520000,"y":14.97},{"x":1569326580000,"y":14.97},{"x":1569326640000,"y":14.97},{"x":1569326700000,"y":15},{"x":1569326760000,"y":14.99},{"x":1569326820000,"y":14.99},{"x":1569326880000,"y":14.99},{"x":1569326940000,"y":14.99},{"x":1569327000000,"y":15},{"x":1569327060000,"y":14.98},{"x":1569327120000,"y":14.98},{"x":1569327180000,"y":14.98},{"x":1569327240000,"y":14.98},{"x":1569327300000,"y":14.99},{"x":1569327360000,"y":14.99},{"x":1569327420000,"y":14.96},{"x":1569327480000,"y":14.96},{"x":1569327540000,"y":14.96},{"x":1569327600000,"y":14.98},{"x":1569327660000,"y":14.97},{"x":1569327720000,"y":14.97},{"x":1569327780000,"y":14.97},{"x":1569327840000,"y":14.97},{"x":1569327900000,"y":14.96},{"x":1569327960000,"y":14.93},{"x":1569328020000,"y":14.93},{"x":1569328080000,"y":14.93},{"x":1569328140000,"y":14.93},{"x":1569328200000,"y":14.97},{"x":1569328260000,"y":14.97},{"x":1569328320000,"y":14.97},{"x":1569328380000,"y":14.97},{"x":1569328440000,"y":14.97},{"x":1569328500000,"y":14.96},{"x":1569328560000,"y":14.97},{"x":1569328620000,"y":14.96},{"x":1569328680000,"y":14.97},{"x":1569328740000,"y":14.97},{"x":1569328800000,"y":14.98},{"x":1569328860000,"y":14.98},{"x":1569328920000,"y":14.97},{"x":1569328980000,"y":14.97},{"x":1569329040000,"y":14.97},{"x":1569329100000,"y":14.97},{"x":1569329160000,"y":14.99},{"x":1569329220000,"y":14.97},{"x":1569329280000,"y":14.98},{"x":1569329340000,"y":14.97},{"x":1569329400000,"y":14.98},{"x":1569329460000,"y":14.99},{"x":1569329520000,"y":14.97},{"x":1569329580000,"y":14.96},{"x":1569329640000,"y":14.96},{"x":1569329700000,"y":14.97},{"x":1569329760000,"y":14.98},{"x":1569329820000,"y":14.96},{"x":1569329880000,"y":14.96},{"x":1569329940000,"y":14.96},{"x":1569330000000,"y":14.98},{"x":1569330060000,"y":14.99},{"x":1569330120000,"y":14.98},{"x":1569330180000,"y":14.98},{"x":1569330240000,"y":14.98},{"x":1569330300000,"y":14.98},{"x":1569330360000,"y":14.98},{"x":1569330420000,"y":14.97},{"x":1569330480000,"y":14.97},{"x":1569330540000,"y":14.98},{"x":1569330600000,"y":14.98},{"x":1569330660000,"y":15},{"x":1569330720000,"y":14.98},{"x":1569330780000,"y":14.98},{"x":1569330840000,"y":14.98},{"x":1569330900000,"y":14.98},{"x":1569330960000,"y":14.98},{"x":1569331020000,"y":15},{"x":1569331080000,"y":14.98},{"x":1569331140000,"y":14.98},{"x":1569331200000,"y":14.99},{"x":1569331260000,"y":14.99},{"x":1569331320000,"y":14.98},{"x":1569331380000,"y":14.96},{"x":1569331440000,"y":14.96},{"x":1569331500000,"y":14.97},{"x":1569331560000,"y":14.97},{"x":1569331620000,"y":14.99},{"x":1569331680000,"y":14.98},{"x":1569331740000,"y":14.98},{"x":1569331800000,"y":14.98},{"x":1569331860000,"y":14.98},{"x":1569331920000,"y":14.99},{"x":1569331980000,"y":14.98},{"x":1569332040000,"y":14.98},{"x":1569332100000,"y":14.98},{"x":1569332160000,"y":14.98},{"x":1569332220000,"y":14.99},{"x":1569332280000,"y":14.98},{"x":1569332340000,"y":14.98},{"x":1569332400000,"y":14.98},{"x":1569332460000,"y":14.98},{"x":1569332520000,"y":14.99},{"x":1569332580000,"y":14.98},{"x":1569332640000,"y":14.98},{"x":1569332700000,"y":14.97},{"x":1569332760000,"y":14.97},{"x":1569332820000,"y":14.99},{"x":1569332880000,"y":14.98},{"x":1569332940000,"y":14.98},{"x":1569333000000,"y":14.98},{"x":1569333060000,"y":14.98},{"x":1569333120000,"y":14.99},{"x":1569333180000,"y":15},{"x":1569333240000,"y":14.98},{"x":1569333300000,"y":14.98},{"x":1569333360000,"y":14.98},{"x":1569333420000,"y":14.98},{"x":1569333480000,"y":14.99},{"x":1569333540000,"y":14.98},{"x":1569333600000,"y":14.98},{"x":1569333660000,"y":14.98},{"x":1569333720000,"y":14.98},{"x":1569333780000,"y":14.99},{"x":1569333840000,"y":14.99},{"x":1569333900000,"y":14.99},{"x":1569333960000,"y":14.99},{"x":1569334020000,"y":14.99},{"x":1569334080000,"y":15.01},{"x":1569334140000,"y":14.97},{"x":1569334200000,"y":14.98},{"x":1569334260000,"y":14.98},{"x":1569334320000,"y":14.98},{"x":1569334380000,"y":15},{"x":1569334440000,"y":14.97},{"x":1569334500000,"y":14.98},{"x":1569334560000,"y":14.98},{"x":1569334620000,"y":14.98},{"x":1569334680000,"y":15},{"x":1569334740000,"y":14.98},{"x":1569334800000,"y":14.98},{"x":1569334860000,"y":14.98},{"x":1569334920000,"y":14.98},{"x":1569334980000,"y":15},{"x":1569335040000,"y":14.98},{"x":1569335100000,"y":14.98},{"x":1569335160000,"y":14.99},{"x":1569335220000,"y":14.99},{"x":1569335280000,"y":14.99},{"x":1569335340000,"y":15},{"x":1569335400000,"y":14.99},{"x":1569335460000,"y":14.99},{"x":1569335520000,"y":14.99},{"x":1569335580000,"y":14.99},{"x":1569335640000,"y":14.99},{"x":1569335700000,"y":14.98},{"x":1569335760000,"y":14.98},{"x":1569335820000,"y":14.98},{"x":1569335880000,"y":14.98},{"x":1569335940000,"y":14.98},{"x":1569336000000,"y":15},{"x":1569336060000,"y":15},{"x":1569336120000,"y":15},{"x":1569336180000,"y":15},{"x":1569336240000,"y":15.01},{"x":1569336300000,"y":15},{"x":1569336360000,"y":15},{"x":1569336420000,"y":14.99},{"x":1569336480000,"y":14.97},{"x":1569336540000,"y":14.99},{"x":1569336600000,"y":14.98},{"x":1569336660000,"y":14.97},{"x":1569336720000,"y":14.97},{"x":1569336780000,"y":14.97},{"x":1569336840000,"y":14.98},{"x":1569336900000,"y":14.97},{"x":1569336960000,"y":14.97},{"x":1569337020000,"y":14.97},{"x":1569337080000,"y":14.97},{"x":1569337140000,"y":14.98},{"x":1569337200000,"y":14.98},{"x":1569337260000,"y":14.98},{"x":1569337320000,"y":14.98},{"x":1569337380000,"y":14.98},{"x":1569337440000,"y":14.99},{"x":1569337500000,"y":14.97},{"x":1569337560000,"y":14.97},{"x":1569337620000,"y":14.97},{"x":1569337680000,"y":14.97},{"x":1569337740000,"y":14.98},{"x":1569337800000,"y":15},{"x":1569337860000,"y":14.98},{"x":1569337920000,"y":14.98},{"x":1569337980000,"y":14.98},{"x":1569338040000,"y":14.97},{"x":1569338100000,"y":14.98},{"x":1569338160000,"y":14.97},{"x":1569338220000,"y":14.97},{"x":1569338280000,"y":14.97},{"x":1569338340000,"y":14.97},{"x":1569338400000,"y":14.99},{"x":1569338460000,"y":14.98},{"x":1569338520000,"y":14.98},{"x":1569338580000,"y":14.98},{"x":1569338640000,"y":14.98},{"x":1569338700000,"y":14.98},{"x":1569338760000,"y":14.97},{"x":1569338820000,"y":14.97},{"x":1569338880000,"y":14.97},{"x":1569338940000,"y":14.97},{"x":1569339000000,"y":14.98},{"x":1569339060000,"y":14.97},{"x":1569339120000,"y":14.97},{"x":1569339180000,"y":14.97},{"x":1569339240000,"y":14.97},{"x":1569339300000,"y":15},{"x":1569339360000,"y":14.97},{"x":1569339420000,"y":14.97},{"x":1569339480000,"y":14.97},{"x":1569339540000,"y":14.98},{"x":1569339600000,"y":14.96},{"x":1569339660000,"y":14.99},{"x":1569339720000,"y":14.98},{"x":1569339780000,"y":14.98},{"x":1569339840000,"y":14.98},{"x":1569339900000,"y":14.95},{"x":1569339960000,"y":14.97},{"x":1569340020000,"y":14.97},{"x":1569340080000,"y":14.97},{"x":1569340140000,"y":14.97},{"x":1569340200000,"y":14.97},{"x":1569340260000,"y":14.98},{"x":1569340320000,"y":14.97},{"x":1569340380000,"y":14.97},{"x":1569340440000,"y":14.96},{"x":1569340500000,"y":14.96},{"x":1569340560000,"y":14.99},{"x":1569340620000,"y":14.98},{"x":1569340680000,"y":14.98},{"x":1569340740000,"y":14.99},{"x":1569340800000,"y":14.98},{"x":1569340860000,"y":15},{"x":1569340920000,"y":14.98},{"x":1569340980000,"y":14.98},{"x":1569341040000,"y":14.98},{"x":1569341100000,"y":14.98},{"x":1569341160000,"y":15},{"x":1569341220000,"y":14.98},{"x":1569341280000,"y":14.98},{"x":1569341340000,"y":14.98},{"x":1569341400000,"y":14.98},{"x":1569341460000,"y":14.99},{"x":1569341520000,"y":14.99},{"x":1569341580000,"y":14.99},{"x":1569341640000,"y":14.99},{"x":1569341700000,"y":14.97},{"x":1569341760000,"y":14.97},{"x":1569341820000,"y":14.99},{"x":1569341880000,"y":14.98},{"x":1569341940000,"y":14.98},{"x":1569342000000,"y":14.98},{"x":1569342060000,"y":14.98},{"x":1569342120000,"y":14.97},{"x":1569342180000,"y":14.96},{"x":1569342240000,"y":14.96},{"x":1569342300000,"y":14.97},{"x":1569342360000,"y":14.97},{"x":1569342420000,"y":14.99},{"x":1569342480000,"y":14.98},{"x":1569342540000,"y":14.98},{"x":1569342600000,"y":14.95},{"x":1569342660000,"y":14.95},{"x":1569342720000,"y":14.98},{"x":1569342780000,"y":14.99},{"x":1569342840000,"y":14.99},{"x":1569342900000,"y":14.99},{"x":1569342960000,"y":14.99},{"x":1569343020000,"y":15.01},{"x":1569343080000,"y":15.52},{"x":1569343140000,"y":15.36},{"x":1569343200000,"y":15.39},{"x":1569343260000,"y":15.39},{"x":1569343320000,"y":15.39},{"x":1569343380000,"y":15.38},{"x":1569343440000,"y":15.32},{"x":1569343500000,"y":15.32},{"x":1569343560000,"y":15.32},{"x":1569343620000,"y":15.33},{"x":1569343680000,"y":15.32},{"x":1569343740000,"y":15.33},{"x":1569343800000,"y":15.32},{"x":1569343860000,"y":15.32},{"x":1569343920000,"y":15.33},{"x":1569343980000,"y":15.33},{"x":1569344040000,"y":15.32},{"x":1569344100000,"y":15.32},{"x":1569344160000,"y":15.32},{"x":1569344220000,"y":15.32},{"x":1569344280000,"y":15.34},{"x":1569344340000,"y":15.32},{"x":1569344400000,"y":15.33},{"x":1569344460000,"y":15.33},{"x":1569344520000,"y":15.33},{"x":1569344580000,"y":15.35},{"x":1569344640000,"y":15.33},{"x":1569344700000,"y":15.33},{"x":1569344760000,"y":15.32},{"x":1569344820000,"y":15.32},{"x":1569344880000,"y":15.34},{"x":1569344940000,"y":15.32},{"x":1569345000000,"y":15.33},{"x":1569345060000,"y":15.33},{"x":1569345120000,"y":15.33},{"x":1569345180000,"y":15.34},{"x":1569345240000,"y":15.33},{"x":1569345300000,"y":15.32},{"x":1569345360000,"y":15.32},{"x":1569345420000,"y":15.32},{"x":1569345480000,"y":15.32},{"x":1569345540000,"y":15.31},{"x":1569345600000,"y":15.31},{"x":1569345660000,"y":15.31},{"x":1569345720000,"y":15.31},{"x":1569345780000,"y":15.32},{"x":1569345840000,"y":15.3},{"x":1569345900000,"y":15.32},{"x":1569345960000,"y":15.32},{"x":1569346020000,"y":15.32},{"x":1569346080000,"y":15.32},{"x":1569346140000,"y":15.61},{"x":1569346200000,"y":15.37},{"x":1569346260000,"y":15.37},{"x":1569346320000,"y":15.37},{"x":1569346380000,"y":15.37},{"x":1569346440000,"y":15.32},{"x":1569346500000,"y":15.31},{"x":1569346560000,"y":15.31},{"x":1569346620000,"y":15.31},{"x":1569346680000,"y":15.31},{"x":1569346740000,"y":15.33},{"x":1569346800000,"y":15.31},{"x":1569346860000,"y":15.31},{"x":1569346920000,"y":15.31},{"x":1569346980000,"y":15.31},{"x":1569347040000,"y":15.33},{"x":1569347100000,"y":15.31},{"x":1569347160000,"y":15.31},{"x":1569347220000,"y":15.31},{"x":1569347280000,"y":15.31},{"x":1569347340000,"y":15.32},{"x":1569347400000,"y":15.31},{"x":1569347460000,"y":15.31},{"x":1569347520000,"y":15.31},{"x":1569347580000,"y":15.31},{"x":1569347640000,"y":15.32},{"x":1569347700000,"y":15.27},{"x":1569347760000,"y":15.27},{"x":1569347820000,"y":15.28},{"x":1569347880000,"y":15.28},{"x":1569347940000,"y":15.28},{"x":1569348000000,"y":15.33},{"x":1569348060000,"y":15.32},{"x":1569348120000,"y":15.32},{"x":1569348180000,"y":15.32},{"x":1569348240000,"y":15.32},{"x":1569348300000,"y":15.32},{"x":1569348360000,"y":15.31},{"x":1569348420000,"y":15.31},{"x":1569348480000,"y":15.31},{"x":1569348540000,"y":15.31},{"x":1569348600000,"y":15.33},{"x":1569348660000,"y":15.32},{"x":1569348720000,"y":15.32},{"x":1569348780000,"y":15.32},{"x":1569348840000,"y":15.32},{"x":1569348900000,"y":15.33},{"x":1569348960000,"y":15.32},{"x":1569349020000,"y":15.31},{"x":1569349080000,"y":15.31},{"x":1569349140000,"y":15.31},{"x":1569349200000,"y":15.33},{"x":1569349260000,"y":15.31},{"x":1569349320000,"y":15.31},{"x":1569349380000,"y":15.31},{"x":1569349440000,"y":15.31},{"x":1569349500000,"y":15.33},{"x":1569349560000,"y":15.3},{"x":1569349620000,"y":15.3},{"x":1569349680000,"y":15.3},{"x":1569349740000,"y":15.3},{"x":1569349800000,"y":15.33},{"x":1569349860000,"y":15.32},{"x":1569349920000,"y":15.32},{"x":1569349980000,"y":15.32},{"x":1569350040000,"y":15.32},{"x":1569350100000,"y":15.32},{"x":1569350160000,"y":15.32},{"x":1569350220000,"y":15.32},{"x":1569350280000,"y":15.32},{"x":1569350340000,"y":15.32},{"x":1569350400000,"y":15.32},{"x":1569350460000,"y":15.33},{"x":1569350520000,"y":15.32},{"x":1569350580000,"y":15.32},{"x":1569350640000,"y":15.32},{"x":1569350700000,"y":15.32},{"x":1569350760000,"y":15.33},{"x":1569350820000,"y":15.31},{"x":1569350880000,"y":15.31},{"x":1569350940000,"y":15.32},{"x":1569351000000,"y":15.32},{"x":1569351060000,"y":15.33},{"x":1569351120000,"y":15.32},{"x":1569351180000,"y":15.32},{"x":1569351240000,"y":15.32},{"x":1569351300000,"y":15.32},{"x":1569351360000,"y":15.33},{"x":1569351420000,"y":15.32},{"x":1569351480000,"y":15.32},{"x":1569351540000,"y":15.32},{"x":1569351600000,"y":15.29},{"x":1569351660000,"y":15.3},{"x":1569351720000,"y":15.32},{"x":1569351780000,"y":15.32},{"x":1569351840000,"y":15.31},{"x":1569351900000,"y":15.31},{"x":1569351960000,"y":15.32},{"x":1569352020000,"y":15.32},{"x":1569352080000,"y":15.32},{"x":1569352140000,"y":15.53},{"x":1569352200000,"y":15.54},{"x":1569352260000,"y":15.55},{"x":1569352320000,"y":15.54},{"x":1569352380000,"y":15.54},{"x":1569352440000,"y":15.54},{"x":1569352500000,"y":15.55},{"x":1569352560000,"y":15.55},{"x":1569352620000,"y":15.56},{"x":1569352680000,"y":15.55},{"x":1569352740000,"y":15.56},{"x":1569352800000,"y":15.55},{"x":1569352860000,"y":15.55},{"x":1569352920000,"y":15.56},{"x":1569352980000,"y":15.55},{"x":1569353040000,"y":15.55},{"x":1569353100000,"y":15.53},{"x":1569353160000,"y":15.53},{"x":1569353220000,"y":15.54},{"x":1569353280000,"y":15.53},{"x":1569353340000,"y":15.53},{"x":1569353400000,"y":15.54},{"x":1569353460000,"y":15.54},{"x":1569353520000,"y":15.55},{"x":1569353580000,"y":15.55},{"x":1569353640000,"y":15.55},{"x":1569353700000,"y":15.55},{"x":1569353760000,"y":15.55},{"x":1569353820000,"y":15.56},{"x":1569353880000,"y":15.55},{"x":1569353940000,"y":15.55},{"x":1569354000000,"y":15.55},{"x":1569354060000,"y":15.54},{"x":1569354120000,"y":15.56},{"x":1569354180000,"y":15.55},{"x":1569354240000,"y":15.55},{"x":1569354300000,"y":15.52},{"x":1569354360000,"y":15.52},{"x":1569354420000,"y":15.53},{"x":1569354480000,"y":15.53},{"x":1569354540000,"y":15.53},{"x":1569354600000,"y":15.53},{"x":1569354660000,"y":15.53},{"x":1569354720000,"y":15.53},{"x":1569354780000,"y":15.5},{"x":1569354840000,"y":15.48},{"x":1569354900000,"y":15.51},{"x":1569354960000,"y":15.51},{"x":1569355020000,"y":15.51},{"x":1569355080000,"y":15.54},{"x":1569355140000,"y":15.53},{"x":1569355200000,"y":15.51},{"x":1569355260000,"y":15.5},{"x":1569355320000,"y":15.5},{"x":1569355380000,"y":15.53},{"x":1569355440000,"y":15.52},{"x":1569355500000,"y":15.53},{"x":1569355560000,"y":15.53},{"x":1569355620000,"y":15.53},{"x":1569355680000,"y":15.54},{"x":1569355740000,"y":15.54},{"x":1569355800000,"y":15.54},{"x":1569355860000,"y":15.53},{"x":1569355920000,"y":15.53},{"x":1569355980000,"y":15.54},{"x":1569356040000,"y":15.53},{"x":1569356100000,"y":15.53},{"x":1569356160000,"y":15.53},{"x":1569356220000,"y":15.54},{"x":1569356280000,"y":15.55},{"x":1569356340000,"y":15.52},{"x":1569356400000,"y":15.53},{"x":1569356460000,"y":15.53},{"x":1569356520000,"y":15.53},{"x":1569356580000,"y":15.55},{"x":1569356640000,"y":15.51},{"x":1569356700000,"y":15.51},{"x":1569356760000,"y":15.51},{"x":1569356820000,"y":15.51},{"x":1569356880000,"y":15.51},{"x":1569356940000,"y":15.53},{"x":1569357000000,"y":15.52},{"x":1569357060000,"y":15.52},{"x":1569357120000,"y":15.52},{"x":1569357180000,"y":15.52},{"x":1569357240000,"y":15.54},{"x":1569357300000,"y":15.54},{"x":1569357360000,"y":15.54},{"x":1569357420000,"y":15.54},{"x":1569357480000,"y":15.54},{"x":1569357540000,"y":15.55},{"x":1569357600000,"y":15.54},{"x":1569357660000,"y":15.54},{"x":1569357720000,"y":15.54},{"x":1569357780000,"y":15.54},{"x":1569357840000,"y":15.55},{"x":1569357900000,"y":15.53},{"x":1569357960000,"y":15.53},{"x":1569358020000,"y":15.53},{"x":1569358080000,"y":15.53},{"x":1569358140000,"y":15.54},{"x":1569358200000,"y":15.54},{"x":1569358260000,"y":15.54},{"x":1569358320000,"y":15.54},{"x":1569358380000,"y":15.54},{"x":1569358440000,"y":15.55},{"x":1569358500000,"y":15.52},{"x":1569358560000,"y":15.52},{"x":1569358620000,"y":15.53},{"x":1569358680000,"y":15.53},{"x":1569358740000,"y":15.53},{"x":1569358800000,"y":15.55},{"x":1569358860000,"y":15.54},{"x":1569358920000,"y":15.54},{"x":1569358980000,"y":15.54},{"x":1569359040000,"y":15.54},{"x":1569359100000,"y":15.55},{"x":1569359160000,"y":15.54},{"x":1569359220000,"y":15.54},{"x":1569359280000,"y":15.54},{"x":1569359340000,"y":15.54},{"x":1569359400000,"y":15.55},{"x":1569359460000,"y":15.54},{"x":1569359520000,"y":15.54},{"x":1569359580000,"y":15.54},{"x":1569359640000,"y":15.54},{"x":1569359700000,"y":15.56},{"x":1569359760000,"y":15.54},{"x":1569359820000,"y":15.54},{"x":1569359880000,"y":15.54},{"x":1569359940000,"y":15.54},{"x":1569360000000,"y":15.55},{"x":1569360060000,"y":15.54},{"x":1569360120000,"y":15.54},{"x":1569360180000,"y":15.54},{"x":1569360240000,"y":15.54},{"x":1569360300000,"y":15.55},{"x":1569360360000,"y":15.55},{"x":1569360420000,"y":15.55},{"x":1569360480000,"y":15.55},{"x":1569360540000,"y":15.55},{"x":1569360600000,"y":15.56},{"x":1569360660000,"y":15.54},{"x":1569360720000,"y":15.54},{"x":1569360780000,"y":15.54},{"x":1569360840000,"y":15.54},{"x":1569360900000,"y":15.54},{"x":1569360960000,"y":15.54},{"x":1569361020000,"y":15.54},{"x":1569361080000,"y":15.55},{"x":1569361140000,"y":15.55},{"x":1569361200000,"y":15.55},{"x":1569361260000,"y":15.56},{"x":1569361320000,"y":15.55},{"x":1569361380000,"y":15.55},{"x":1569361440000,"y":15.55},{"x":1569361500000,"y":15.54},{"x":1569361560000,"y":15.56},{"x":1569361620000,"y":15.54},{"x":1569361680000,"y":15.54},{"x":1569361740000,"y":15.54},{"x":1569361800000,"y":15.54},{"x":1569361860000,"y":15.55},{"x":1569361920000,"y":15.54},{"x":1569361980000,"y":15.54},{"x":1569362040000,"y":15.54},{"x":1569362100000,"y":15.55},{"x":1569362160000,"y":15.56},{"x":1569362220000,"y":15.55},{"x":1569362280000,"y":15.55},{"x":1569362340000,"y":15.54},{"x":1569362400000,"y":15.55},{"x":1569362460000,"y":15.54},{"x":1569362520000,"y":15.52},{"x":1569362580000,"y":15.52},{"x":1569362640000,"y":15.52},{"x":1569362700000,"y":15.54},{"x":1569362760000,"y":15.56},{"x":1569362820000,"y":15.55},{"x":1569362880000,"y":15.55},{"x":1569362940000,"y":15.55},{"x":1569363000000,"y":15.55},{"x":1569363060000,"y":15.56},{"x":1569363120000,"y":15.55},{"x":1569363180000,"y":15.55},{"x":1569363240000,"y":15.55},{"x":1569363300000,"y":15.53},{"x":1569363360000,"y":15.53},{"x":1569363420000,"y":15.55},{"x":1569363480000,"y":15.55},{"x":1569363540000,"y":15.55},{"x":1569363600000,"y":15.6},{"x":1569363660000,"y":15.61},{"x":1569363720000,"y":15.61},{"x":1569363780000,"y":15.59},{"x":1569363840000,"y":15.59},{"x":1569363900000,"y":15.61},{"x":1569363960000,"y":15.61},{"x":1569364020000,"y":15.59},{"x":1569364080000,"y":15.57},{"x":1569364140000,"y":15.57},{"x":1569364200000,"y":15.59},{"x":1569364260000,"y":15.59},{"x":1569364320000,"y":15.62},{"x":1569364380000,"y":15.61},{"x":1569364440000,"y":15.61},{"x":1569364500000,"y":15.59},{"x":1569364560000,"y":15.59},{"x":1569364620000,"y":15.6},{"x":1569364680000,"y":15.59},{"x":1569364740000,"y":15.61},{"x":1569364800000,"y":15.6},{"x":1569364860000,"y":15.6},{"x":1569364920000,"y":15.61},{"x":1569364980000,"y":15.61},{"x":1569365040000,"y":15.6},{"x":1569365100000,"y":15.6},{"x":1569365160000,"y":15.6},{"x":1569365220000,"y":15.61},{"x":1569365280000,"y":15.6},{"x":1569365340000,"y":15.61},{"x":1569365400000,"y":15.62},{"x":1569365460000,"y":15.61},{"x":1569365520000,"y":15.62},{"x":1569365580000,"y":15.59},{"x":1569365640000,"y":15.59},{"x":1569365700000,"y":15.59},{"x":1569365760000,"y":15.59},{"x":1569365820000,"y":15.59},{"x":1569365880000,"y":15.61},{"x":1569365940000,"y":15.6},{"x":1569366000000,"y":15.6},{"x":1569366060000,"y":15.6},{"x":1569366120000,"y":15.6},{"x":1569366180000,"y":15.62},{"x":1569366240000,"y":15.61},{"x":1569366300000,"y":15.61},{"x":1569366360000,"y":15.61},{"x":1569366420000,"y":15.61},{"x":1569366480000,"y":15.62},{"x":1569366540000,"y":15.62},{"x":1569366600000,"y":15.61},{"x":1569366660000,"y":15.61},{"x":1569366720000,"y":15.61},{"x":1569366780000,"y":15.62},{"x":1569366840000,"y":15.61},{"x":1569366900000,"y":15.61},{"x":1569366960000,"y":15.61},{"x":1569367020000,"y":15.61},{"x":1569367080000,"y":15.63},{"x":1569367140000,"y":15.62},{"x":1569367200000,"y":15.61},{"x":1569367260000,"y":15.61},{"x":1569367320000,"y":15.62},{"x":1569367380000,"y":15.63},{"x":1569367440000,"y":15.61},{"x":1569367500000,"y":15.62},{"x":1569367560000,"y":15.62},{"x":1569367620000,"y":15.62},{"x":1569367680000,"y":15.63},{"x":1569367740000,"y":15.62},{"x":1569367800000,"y":15.62},{"x":1569367860000,"y":15.62},{"x":1569367920000,"y":15.62},{"x":1569367980000,"y":15.74},{"x":1569368040000,"y":15.61},{"x":1569368100000,"y":15.36},{"x":1569368160000,"y":15.36},{"x":1569368220000,"y":15.36},{"x":1569368280000,"y":15.36},{"x":1569368340000,"y":15.32},{"x":1569368400000,"y":15.3},{"x":1569368460000,"y":15.3},{"x":1569368520000,"y":15.3},{"x":1569368580000,"y":15.3},{"x":1569368640000,"y":15.31},{"x":1569368700000,"y":15.3},{"x":1569368760000,"y":15.3},{"x":1569368820000,"y":15.3},{"x":1569368880000,"y":15.3},{"x":1569368940000,"y":15.31},{"x":1569369000000,"y":15.31},{"x":1569369060000,"y":15.31},{"x":1569369120000,"y":15.31},{"x":1569369180000,"y":15.31},{"x":1569369240000,"y":15.31},{"x":1569369300000,"y":15.29},{"x":1569369360000,"y":15.29},{"x":1569369420000,"y":15.29},{"x":1569369480000,"y":15.29},{"x":1569369540000,"y":15.31},{"x":1569369600000,"y":15.28},{"x":1569369660000,"y":15.28},{"x":1569369720000,"y":15.28},{"x":1569369780000,"y":15.28},{"x":1569369840000,"y":15.3},{"x":1569369900000,"y":15.3},{"x":1569369960000,"y":15.3},{"x":1569370020000,"y":15.3},{"x":1569370080000,"y":15.3},{"x":1569370140000,"y":15.31},{"x":1569370200000,"y":15.31},{"x":1569370260000,"y":15.3},{"x":1569370320000,"y":15.3},{"x":1569370380000,"y":15.3},{"x":1569370440000,"y":15.3},{"x":1569370500000,"y":15.31},{"x":1569370560000,"y":15.3},{"x":1569370620000,"y":15.31},{"x":1569370680000,"y":15.31},{"x":1569370740000,"y":15.31},{"x":1569370800000,"y":15.32},{"x":1569370860000,"y":15.31},{"x":1569370920000,"y":15.31},{"x":1569370980000,"y":15.31},{"x":1569371040000,"y":15.31},{"x":1569371100000,"y":15.31},{"x":1569371160000,"y":15.29},{"x":1569371220000,"y":15.29},{"x":1569371280000,"y":15.29},{"x":1569371340000,"y":15.29},{"x":1569371400000,"y":15.31},{"x":1569371460000,"y":15.28},{"x":1569371520000,"y":15.28},{"x":1569371580000,"y":15.28},{"x":1569371640000,"y":15.28},{"x":1569371700000,"y":15.32},{"x":1569371760000,"y":15.3},{"x":1569371820000,"y":15.3},{"x":1569371880000,"y":15.3},{"x":1569371940000,"y":15.3},{"x":1569372000000,"y":15.31},{"x":1569372060000,"y":15.3},{"x":1569372120000,"y":15.3},{"x":1569372180000,"y":15.3},{"x":1569372240000,"y":15.3},{"x":1569372300000,"y":15.32},{"x":1569372360000,"y":15.3},{"x":1569372420000,"y":15.29},{"x":1569372480000,"y":15.29},{"x":1569372540000,"y":15.29},{"x":1569372600000,"y":15.29},{"x":1569372660000,"y":15.28},{"x":1569372720000,"y":15.28},{"x":1569372780000,"y":15.28},{"x":1569372840000,"y":15.28},{"x":1569372900000,"y":15.3},{"x":1569372960000,"y":15.27},{"x":1569373020000,"y":15.26},{"x":1569373080000,"y":15.26},{"x":1569373140000,"y":15.26},{"x":1569373200000,"y":15.28},{"x":1569373260000,"y":15.29},{"x":1569373320000,"y":15.27},{"x":1569373380000,"y":15.27},{"x":1569373440000,"y":15.27},{"x":1569373500000,"y":15.29},{"x":1569373560000,"y":15.3},{"x":1569373620000,"y":15.29},{"x":1569373680000,"y":15.29},{"x":1569373740000,"y":15.29},{"x":1569373800000,"y":15.26},{"x":1569373860000,"y":15.27},{"x":1569373920000,"y":15.26},{"x":1569373980000,"y":15.26},{"x":1569374040000,"y":15.26},{"x":1569374100000,"y":15.29},{"x":1569374160000,"y":15.3},{"x":1569374220000,"y":15.29},{"x":1569374280000,"y":15.29},{"x":1569374340000,"y":15.29},{"x":1569374400000,"y":15.3},{"x":1569374460000,"y":15.31},{"x":1569374520000,"y":15.29},{"x":1569374580000,"y":15.29},{"x":1569374640000,"y":15.29},{"x":1569374700000,"y":15.29},{"x":1569374760000,"y":15.29},{"x":1569374820000,"y":15.31},{"x":1569374880000,"y":15.28},{"x":1569374940000,"y":15.28},{"x":1569375000000,"y":15.29},{"x":1569375060000,"y":15.29},{"x":1569375120000,"y":15.3},{"x":1569375180000,"y":15.29},{"x":1569375240000,"y":15.29},{"x":1569375300000,"y":15.28},{"x":1569375360000,"y":15.28},{"x":1569375420000,"y":15.3},{"x":1569375480000,"y":15.29},{"x":1569375540000,"y":15.29},{"x":1569375600000,"y":15.29},{"x":1569375660000,"y":15.29},{"x":1569375720000,"y":15.3},{"x":1569375780000,"y":15.3},{"x":1569375840000,"y":15.3},{"x":1569375900000,"y":15.29},{"x":1569375960000,"y":15.29},{"x":1569376020000,"y":15.3},{"x":1569376080000,"y":15.3},{"x":1569376140000,"y":15.3},{"x":1569376200000,"y":15.3},{"x":1569376260000,"y":15.3},{"x":1569376320000,"y":15.31},{"x":1569376380000,"y":15.3},{"x":1569376440000,"y":15.29},{"x":1569376500000,"y":15.28},{"x":1569376560000,"y":15.28},{"x":1569376620000,"y":15.3},{"x":1569376680000,"y":15.26},{"x":1569376740000,"y":15.26},{"x":1569376800000,"y":15.3},{"x":1569376860000,"y":15.3},{"x":1569376920000,"y":15.3},{"x":1569376980000,"y":15.31},{"x":1569377040000,"y":15.3},{"x":1569377100000,"y":15.27},{"x":1569377160000,"y":15.27},{"x":1569377220000,"y":15.27},{"x":1569377280000,"y":15.29},{"x":1569377340000,"y":15.3},{"x":1569377400000,"y":15.28},{"x":1569377460000,"y":15.28},{"x":1569377520000,"y":15.28},{"x":1569377580000,"y":15.28},{"x":1569377640000,"y":15.27},{"x":1569377700000,"y":15.27},{"x":1569377760000,"y":15.27},{"x":1569377820000,"y":15.28},{"x":1569377880000,"y":15.31},{"x":1569377940000,"y":15.31},{"x":1569378000000,"y":15.31},{"x":1569378060000,"y":15.31},{"x":1569378120000,"y":15.3},{"x":1569378180000,"y":15.3},{"x":1569378240000,"y":15.28},{"x":1569378300000,"y":15.28},{"x":1569378360000,"y":15.28},{"x":1569378420000,"y":15.28},{"x":1569378480000,"y":15.29},{"x":1569378540000,"y":15.28},{"x":1569378600000,"y":15.3},{"x":1569378660000,"y":15.3},{"x":1569378720000,"y":15.3},{"x":1569378780000,"y":15.32},{"x":1569378840000,"y":15.29},{"x":1569378900000,"y":15.29},{"x":1569378960000,"y":15.29},{"x":1569379020000,"y":15.29},{"x":1569379080000,"y":15.29},{"x":1569379140000,"y":15.31},{"x":1569379200000,"y":15.3},{"x":1569379260000,"y":15.3},{"x":1569379320000,"y":15.3},{"x":1569379380000,"y":15.3},{"x":1569379440000,"y":15.3},{"x":1569379500000,"y":15.3},{"x":1569379560000,"y":15.3},{"x":1569379620000,"y":15.3},{"x":1569379680000,"y":15.3},{"x":1569379740000,"y":15.31},{"x":1569379800000,"y":15.3},{"x":1569379860000,"y":15.3},{"x":1569379920000,"y":15.3},{"x":1569379980000,"y":15.3},{"x":1569380040000,"y":15.31},{"x":1569380100000,"y":15.31},{"x":1569380160000,"y":15.31},{"x":1569380220000,"y":15.31},{"x":1569380280000,"y":15.31},{"x":1569380340000,"y":15.32},{"x":1569380400000,"y":15.28},{"x":1569380460000,"y":15.28},{"x":1569380520000,"y":15.28},{"x":1569380580000,"y":15.28},{"x":1569380640000,"y":15.31},{"x":1569380700000,"y":15.31},{"x":1569380760000,"y":15.31},{"x":1569380820000,"y":15.31},{"x":1569380880000,"y":15.31},{"x":1569380940000,"y":15.33},{"x":1569381000000,"y":15.3},{"x":1569381060000,"y":15.3},{"x":1569381120000,"y":15.3},{"x":1569381180000,"y":15.3},{"x":1569381240000,"y":15.3},{"x":1569381300000,"y":15.32},{"x":1569381360000,"y":15.3},{"x":1569381420000,"y":15.29},{"x":1569381480000,"y":15.28},{"x":1569381540000,"y":15.28},{"x":1569381600000,"y":15.3},{"x":1569381660000,"y":15.28},{"x":1569381720000,"y":15.28},{"x":1569381780000,"y":15.28},{"x":1569381840000,"y":15.28},{"x":1569381900000,"y":15.28},{"x":1569381960000,"y":15.27},{"x":1569382020000,"y":15.27},{"x":1569382080000,"y":15.27},{"x":1569382140000,"y":15.28},{"x":1569382200000,"y":15.3},{"x":1569382260000,"y":15.28},{"x":1569382320000,"y":15.28},{"x":1569382380000,"y":15.28},{"x":1569382440000,"y":15.28},{"x":1569382500000,"y":15.29},{"x":1569382560000,"y":15.27},{"x":1569382620000,"y":15.27},{"x":1569382680000,"y":15.27},{"x":1569382740000,"y":15.3},{"x":1569382800000,"y":15.31},{"x":1569382860000,"y":15.29},{"x":1569382920000,"y":15.29},{"x":1569382980000,"y":15.29},{"x":1569383040000,"y":15.29},{"x":1569383100000,"y":15.3},{"x":1569383160000,"y":15.25},{"x":1569383220000,"y":15.25},{"x":1569383280000,"y":15.25},{"x":1569383340000,"y":15.25},{"x":1569383400000,"y":15.29},{"x":1569383460000,"y":15.3},{"x":1569383520000,"y":15.28},{"x":1569383580000,"y":15.28},{"x":1569383640000,"y":15.28},{"x":1569383700000,"y":15.29},{"x":1569383760000,"y":15.3},{"x":1569383820000,"y":15.29},{"x":1569383880000,"y":15.29},{"x":1569383940000,"y":15.29},{"x":1569384000000,"y":15.29},{"x":1569384060000,"y":15.3},{"x":1569384120000,"y":15.29},{"x":1569384180000,"y":15.29},{"x":1569384240000,"y":15.29},{"x":1569384300000,"y":15.29},{"x":1569384360000,"y":15.29},{"x":1569384420000,"y":15.26},{"x":1569384480000,"y":15.26},{"x":1569384540000,"y":15.3},{"x":1569384600000,"y":15.3},{"x":1569384660000,"y":15.3},{"x":1569384720000,"y":15.27},{"x":1569384780000,"y":15.27},{"x":1569384840000,"y":15.27},{"x":1569384900000,"y":15.27},{"x":1569384960000,"y":15.29},{"x":1569385020000,"y":15.27},{"x":1569385080000,"y":15.27},{"x":1569385140000,"y":15.27},{"x":1569385200000,"y":15.29},{"x":1569385260000,"y":15.29},{"x":1569385320000,"y":15.23},{"x":1569385380000,"y":15.23},{"x":1569385440000,"y":15.23},{"x":1569385500000,"y":15.28},{"x":1569385560000,"y":15.28},{"x":1569385620000,"y":15.29},{"x":1569385680000,"y":15.28},{"x":1569385740000,"y":15.28},{"x":1569385800000,"y":15.28},{"x":1569385860000,"y":15.28},{"x":1569385920000,"y":15.29},{"x":1569385980000,"y":15.29},{"x":1569386040000,"y":15.29},{"x":1569386100000,"y":15.31},{"x":1569386160000,"y":15.31},{"x":1569386220000,"y":15.32},{"x":1569386280000,"y":15.31},{"x":1569386340000,"y":15.3},{"x":1569386400000,"y":15.3},{"x":1569386460000,"y":15.3},{"x":1569386520000,"y":15.31},{"x":1569386580000,"y":15.3},{"x":1569386640000,"y":15.3},{"x":1569386700000,"y":15.3},{"x":1569386760000,"y":15.3},{"x":1569386820000,"y":15.31},{"x":1569386880000,"y":15.3},{"x":1569386940000,"y":15.3},{"x":1569387000000,"y":15.31},{"x":1569387060000,"y":15.31},{"x":1569387120000,"y":15.32},{"x":1569387180000,"y":15.3},{"x":1569387240000,"y":15.3},{"x":1569387300000,"y":15.29},{"x":1569387360000,"y":15.29},{"x":1569387420000,"y":15.3},{"x":1569387480000,"y":15.3},{"x":1569387540000,"y":15.29},{"x":1569387600000,"y":15.28},{"x":1569387660000,"y":15.28},{"x":1569387720000,"y":15.29},{"x":1569387780000,"y":15.3},{"x":1569387840000,"y":15.3},{"x":1569387900000,"y":15.31},{"x":1569387960000,"y":15.31},{"x":1569388020000,"y":15.31},{"x":1569388080000,"y":15.32},{"x":1569388140000,"y":15.31},{"x":1569388200000,"y":15.31},{"x":1569388260000,"y":15.31},{"x":1569388320000,"y":15.31},{"x":1569388380000,"y":15.33},{"x":1569388440000,"y":15.31},{"x":1569388500000,"y":15.31},{"x":1569388560000,"y":15.31},{"x":1569388620000,"y":15.3},{"x":1569388680000,"y":15.3},{"x":1569388740000,"y":15.28},{"x":1569388800000,"y":15.3},{"x":1569388860000,"y":15.3},{"x":1569388920000,"y":15.3},{"x":1569388980000,"y":15.31},{"x":1569389040000,"y":15.31},{"x":1569389100000,"y":15.31},{"x":1569389160000,"y":15.3},{"x":1569389220000,"y":15.3},{"x":1569389280000,"y":15.31},{"x":1569389340000,"y":15.3},{"x":1569389400000,"y":15.27},{"x":1569389460000,"y":15.27},{"x":1569389520000,"y":15.27},{"x":1569389580000,"y":15.28},{"x":1569389640000,"y":15.3},{"x":1569389700000,"y":15.31},{"x":1569389760000,"y":15.31},{"x":1569389820000,"y":15.31},{"x":1569389880000,"y":15.35},{"x":1569389940000,"y":15.65},{"x":1569390000000,"y":15.38},{"x":1569390060000,"y":15.38},{"x":1569390120000,"y":15.38},{"x":1569390180000,"y":15.38},{"x":1569390240000,"y":15.33},{"x":1569390300000,"y":15.29},{"x":1569390360000,"y":15.29},{"x":1569390420000,"y":15.28},{"x":1569390480000,"y":15.28},{"x":1569390540000,"y":15.3},{"x":1569390600000,"y":15.29},{"x":1569390660000,"y":15.29},{"x":1569390720000,"y":15.29},{"x":1569390780000,"y":15.29},{"x":1569390840000,"y":15.3},{"x":1569390900000,"y":15.29},{"x":1569390960000,"y":15.29},{"x":1569391020000,"y":15.29},{"x":1569391080000,"y":15.29},{"x":1569391140000,"y":15.3},{"x":1569391200000,"y":15.26},{"x":1569391260000,"y":15.26},{"x":1569391320000,"y":15.26},{"x":1569391380000,"y":15.26},{"x":1569391440000,"y":15.28},{"x":1569391500000,"y":15.3},{"x":1569391560000,"y":15.3},{"x":1569391620000,"y":15.29},{"x":1569391680000,"y":15.29},{"x":1569391740000,"y":15.3},{"x":1569391800000,"y":15.31},{"x":1569391860000,"y":15.3},{"x":1569391920000,"y":15.3},{"x":1569391980000,"y":15.3},{"x":1569392040000,"y":15.3},{"x":1569392100000,"y":15.3},{"x":1569392160000,"y":15.29},{"x":1569392220000,"y":15.29},{"x":1569392280000,"y":15.29},{"x":1569392340000,"y":15.29},{"x":1569392400000,"y":15.29},{"x":1569392460000,"y":15.28},{"x":1569392520000,"y":15.28},{"x":1569392580000,"y":15.28},{"x":1569392640000,"y":15.28},{"x":1569392700000,"y":15.3},{"x":1569392760000,"y":15.3},{"x":1569392820000,"y":15.3},{"x":1569392880000,"y":15.3},{"x":1569392940000,"y":15.3},{"x":1569393000000,"y":15.3},{"x":1569393060000,"y":15.29},{"x":1569393120000,"y":15.29},{"x":1569393180000,"y":15.29},{"x":1569393240000,"y":15.29},{"x":1569393300000,"y":15.32},{"x":1569393360000,"y":15.29},{"x":1569393420000,"y":15.29},{"x":1569393480000,"y":15.29},{"x":1569393540000,"y":15.29},{"x":1569393600000,"y":15.31},{"x":1569393660000,"y":15.3},{"x":1569393720000,"y":15.3},{"x":1569393780000,"y":15.3},{"x":1569393840000,"y":15.3},{"x":1569393900000,"y":15.29},{"x":1569393960000,"y":15.29},{"x":1569394020000,"y":15.28},{"x":1569394080000,"y":15.28},{"x":1569394140000,"y":15.28},{"x":1569394200000,"y":15.29},{"x":1569394260000,"y":15.31},{"x":1569394320000,"y":15.3},{"x":1569394380000,"y":15.3},{"x":1569394440000,"y":15.3},{"x":1569394500000,"y":15.28},{"x":1569394560000,"y":15.29},{"x":1569394620000,"y":15.28},{"x":1569394680000,"y":15.28},{"x":1569394740000,"y":15.28},{"x":1569394800000,"y":15.25},{"x":1569394860000,"y":15.29},{"x":1569394920000,"y":15.28},{"x":1569394980000,"y":15.28},{"x":1569395040000,"y":15.28},{"x":1569395100000,"y":15.29},{"x":1569395160000,"y":15.3},{"x":1569395220000,"y":15.29},{"x":1569395280000,"y":15.29},{"x":1569395340000,"y":15.3},{"x":1569395400000,"y":15.3},{"x":1569395460000,"y":15.31},{"x":1569395520000,"y":15.31},{"x":1569395580000,"y":15.31},{"x":1569395640000,"y":15.31},{"x":1569395700000,"y":15.31},{"x":1569395760000,"y":15.32},{"x":1569395820000,"y":15.31},{"x":1569395880000,"y":15.31},{"x":1569395940000,"y":15.3},{"x":1569396000000,"y":15.29},{"x":1569396060000,"y":15.3},{"x":1569396120000,"y":15.3},{"x":1569396180000,"y":15.3},{"x":1569396240000,"y":15.3},{"x":1569396300000,"y":15.31},{"x":1569396360000,"y":15.31},{"x":1569396420000,"y":15.31},{"x":1569396480000,"y":15.3},{"x":1569396540000,"y":15.3},{"x":1569396600000,"y":15.3},{"x":1569396660000,"y":15.3},{"x":1569396720000,"y":15.32},{"x":1569396780000,"y":15.3},{"x":1569396840000,"y":15.3},{"x":1569396900000,"y":15.3},{"x":1569396960000,"y":15.3},{"x":1569397020000,"y":15.31},{"x":1569397080000,"y":15.29},{"x":1569397140000,"y":15.3},{"x":1569397200000,"y":15.3},{"x":1569397260000,"y":15.3},{"x":1569397320000,"y":15.31},{"x":1569397380000,"y":15.31},{"x":1569397440000,"y":15.31},{"x":1569397500000,"y":15.31},{"x":1569397560000,"y":15.31},{"x":1569397620000,"y":15.32},{"x":1569397680000,"y":15.31},{"x":1569397740000,"y":15.31},{"x":1569397800000,"y":15.31},{"x":1569397860000,"y":15.31},{"x":1569397920000,"y":15.32},{"x":1569397980000,"y":15.31},{"x":1569398040000,"y":15.3},{"x":1569398100000,"y":15.28},{"x":1569398160000,"y":15.28},{"x":1569398220000,"y":15.29},{"x":1569398280000,"y":15.3},{"x":1569398340000,"y":15.3},{"x":1569398400000,"y":15.29},{"x":1569398460000,"y":15.29},{"x":1569398520000,"y":15.29},{"x":1569398580000,"y":15.31},{"x":1569398640000,"y":15.3},{"x":1569398700000,"y":15.28},{"x":1569398760000,"y":15.28},{"x":1569398820000,"y":15.28},{"x":1569398880000,"y":15.32},{"x":1569398940000,"y":15.31},{"x":1569399000000,"y":15.31},{"x":1569399060000,"y":15.31},{"x":1569399120000,"y":15.31},{"x":1569399180000,"y":15.32},{"x":1569399240000,"y":15.31},{"x":1569399300000,"y":15.31},{"x":1569399360000,"y":15.31},{"x":1569399420000,"y":15.3},{"x":1569399480000,"y":15.29},{"x":1569399540000,"y":15.28},{"x":1569399600000,"y":15.26},{"x":1569399660000,"y":15.26},{"x":1569399720000,"y":15.26},{"x":1569399780000,"y":15.28},{"x":1569399840000,"y":15.28},{"x":1569399900000,"y":15.3},{"x":1569399960000,"y":15.3},{"x":1569400020000,"y":15.3},{"x":1569400080000,"y":15.3},{"x":1569400140000,"y":15.29},{"x":1569400200000,"y":15.3},{"x":1569400260000,"y":15.3},{"x":1569400320000,"y":15.3},{"x":1569400380000,"y":15.31},{"x":1569400440000,"y":15.29},{"x":1569400500000,"y":15.25},{"x":1569400560000,"y":15.25},{"x":1569400620000,"y":15.25},{"x":1569400680000,"y":15.25},{"x":1569400740000,"y":15.3},{"x":1569400800000,"y":15.29},{"x":1569400860000,"y":15.29},{"x":1569400920000,"y":15.29},{"x":1569400980000,"y":15.29},{"x":1569401040000,"y":15.3},{"x":1569401100000,"y":15.28},{"x":1569401160000,"y":15.29},{"x":1569401220000,"y":15.28},{"x":1569401280000,"y":15.28},{"x":1569401340000,"y":15.28},{"x":1569401400000,"y":15.29},{"x":1569401460000,"y":15.29},{"x":1569401520000,"y":15.29},{"x":1569401580000,"y":15.29},{"x":1569401640000,"y":15.3},{"x":1569401700000,"y":15.29},{"x":1569401760000,"y":15.29},{"x":1569401820000,"y":15.29},{"x":1569401880000,"y":15.29},{"x":1569401940000,"y":15.31},{"x":1569402000000,"y":15.3},{"x":1569402060000,"y":15.3},{"x":1569402120000,"y":15.29},{"x":1569402180000,"y":15.29},{"x":1569402240000,"y":15.31},{"x":1569402300000,"y":15.3},{"x":1569402360000,"y":15.29},{"x":1569402420000,"y":15.29},{"x":1569402480000,"y":15.29},{"x":1569402540000,"y":15.31},{"x":1569402600000,"y":15.28},{"x":1569402660000,"y":15.28},{"x":1569402720000,"y":15.28},{"x":1569402780000,"y":15.28},{"x":1569402840000,"y":15.29},{"x":1569402900000,"y":15.29},{"x":1569402960000,"y":15.29},{"x":1569403020000,"y":15.29},{"x":1569403080000,"y":15.29},{"x":1569403140000,"y":15.29},{"x":1569403200000,"y":15.31},{"x":1569403260000,"y":15.3},{"x":1569403320000,"y":15.3},{"x":1569403380000,"y":15.3},{"x":1569403440000,"y":15.3},{"x":1569403500000,"y":15.32},{"x":1569403560000,"y":15.3},{"x":1569403620000,"y":15.3},{"x":1569403680000,"y":15.3},{"x":1569403740000,"y":15.29},{"x":1569403800000,"y":15.31},{"x":1569403860000,"y":15.3},{"x":1569403920000,"y":15.3},{"x":1569403980000,"y":15.3},{"x":1569404040000,"y":15.3},{"x":1569404100000,"y":15.3},{"x":1569404160000,"y":15.3},{"x":1569404220000,"y":15.3},{"x":1569404280000,"y":15.3},{"x":1569404340000,"y":15.3},{"x":1569404400000,"y":15.31},{"x":1569404460000,"y":15.3},{"x":1569404520000,"y":15.3},{"x":1569404580000,"y":15.3},{"x":1569404640000,"y":15.3},{"x":1569404700000,"y":15.3},{"x":1569404760000,"y":15.3},{"x":1569404820000,"y":15.29},{"x":1569404880000,"y":15.29},{"x":1569404940000,"y":15.29},{"x":1569405000000,"y":15.31},{"x":1569405060000,"y":15.3},{"x":1569405120000,"y":15.3},{"x":1569405180000,"y":15.3},{"x":1569405240000,"y":15.3},{"x":1569405300000,"y":15.3},{"x":1569405360000,"y":15.31},{"x":1569405420000,"y":15.3},{"x":1569405480000,"y":15.3},{"x":1569405540000,"y":15.3},{"x":1569405600000,"y":15.3},{"x":1569405660000,"y":15.32},{"x":1569405720000,"y":15.31},{"x":1569405780000,"y":15.31},{"x":1569405840000,"y":15.31},{"x":1569405900000,"y":15.28},{"x":1569405960000,"y":15.3},{"x":1569406020000,"y":15.3},{"x":1569406080000,"y":15.3},{"x":1569406140000,"y":15.3},{"x":1569406200000,"y":15.3},{"x":1569406260000,"y":15.32},{"x":1569406320000,"y":15.31},{"x":1569406380000,"y":15.31},{"x":1569406440000,"y":15.31},{"x":1569406500000,"y":15.3},{"x":1569406560000,"y":15.31},{"x":1569406620000,"y":15.3},{"x":1569406680000,"y":15.3},{"x":1569406740000,"y":15.3},{"x":1569406800000,"y":15.31},{"x":1569406860000,"y":15.32},{"x":1569406920000,"y":15.32},{"x":1569406980000,"y":15.32},{"x":1569407040000,"y":15.32},{"x":1569407100000,"y":15.31},{"x":1569407160000,"y":15.32},{"x":1569407220000,"y":15.3},{"x":1569407280000,"y":15.3},{"x":1569407340000,"y":15.3},{"x":1569407400000,"y":15.31},{"x":1569407460000,"y":15.31},{"x":1569407520000,"y":15.32},{"x":1569407580000,"y":15.31},{"x":1569407640000,"y":15.31},{"x":1569407700000,"y":15.31},{"x":1569407760000,"y":15.31},{"x":1569407820000,"y":15.31},{"x":1569407880000,"y":15.3},{"x":1569407940000,"y":15.31},{"x":1569408000000,"y":15.31},{"x":1569408060000,"y":15.31},{"x":1569408120000,"y":15.32},{"x":1569408180000,"y":15.31},{"x":1569408240000,"y":15.31},{"x":1569408300000,"y":15.31},{"x":1569408360000,"y":15.31},{"x":1569408420000,"y":15.33},{"x":1569408480000,"y":15.31},{"x":1569408540000,"y":15.31},{"x":1569408600000,"y":15.31},{"x":1569408660000,"y":15.3},{"x":1569408720000,"y":15.3},{"x":1569408780000,"y":15.29},{"x":1569408840000,"y":15.29},{"x":1569408900000,"y":15.29},{"x":1569408960000,"y":15.28},{"x":1569409020000,"y":15.3},{"x":1569409080000,"y":15.28},{"x":1569409140000,"y":15.28},{"x":1569409200000,"y":15.26},{"x":1569409260000,"y":15.44},{"x":1569409320000,"y":15.36},{"x":1569409380000,"y":15.37},{"x":1569409440000,"y":15.36},{"x":1569409500000,"y":15.35},{"x":1569409560000,"y":15.33},{"x":1569409620000,"y":15.29},{"x":1569409680000,"y":15.31},{"x":1569409740000,"y":15.3},{"x":1569409800000,"y":15.3},{"x":1569409860000,"y":15.3},{"x":1569409920000,"y":15.3},{"x":1569409980000,"y":15.31},{"x":1569410040000,"y":15.3},{"x":1569410100000,"y":15.3},{"x":1569410160000,"y":15.3},{"x":1569410220000,"y":15.29},{"x":1569410280000,"y":15.3},{"x":1569410340000,"y":15.3},{"x":1569410400000,"y":15.3},{"x":1569410460000,"y":15.51},{"x":1569410520000,"y":15.35},{"x":1569410580000,"y":15.37},{"x":1569410640000,"y":15.36},{"x":1569410700000,"y":15.36},{"x":1569410760000,"y":15.32},{"x":1569410820000,"y":15.26},{"x":1569410880000,"y":15.28},{"x":1569410940000,"y":15.3},{"x":1569411000000,"y":15.27},{"x":1569411060000,"y":15.26},{"x":1569411120000,"y":15.26},{"x":1569411180000,"y":15.26},{"x":1569411240000,"y":15.31},{"x":1569411300000,"y":15.3},{"x":1569411360000,"y":15.3},{"x":1569411420000,"y":15.3},{"x":1569411480000,"y":15.3},{"x":1569411540000,"y":15.31},{"x":1569411600000,"y":15.3},{"x":1569411660000,"y":15.3},{"x":1569411720000,"y":15.3},{"x":1569411780000,"y":15.3},{"x":1569411840000,"y":15.66},{"x":1569411900000,"y":15.37},{"x":1569411960000,"y":15.37},{"x":1569412020000,"y":15.37},{"x":1569412080000,"y":15.37},{"x":1569412140000,"y":15.34},{"x":1569412200000,"y":15.29},{"x":1569412260000,"y":15.29},{"x":1569412320000,"y":15.28},{"x":1569412380000,"y":15.28},{"x":1569412440000,"y":15.31},{"x":1569412500000,"y":15.29},{"x":1569412560000,"y":15.29},{"x":1569412620000,"y":15.29},{"x":1569412680000,"y":15.29},{"x":1569412740000,"y":15.3},{"x":1569412800000,"y":15.3},{"x":1569412860000,"y":15.3},{"x":1569412920000,"y":15.3},{"x":1569412980000,"y":15.3},{"x":1569413040000,"y":15.31},{"x":1569413100000,"y":15.3},{"x":1569413160000,"y":15.3},{"x":1569413220000,"y":15.3},{"x":1569413280000,"y":15.3},{"x":1569413340000,"y":15.31},{"x":1569413400000,"y":15.29},{"x":1569413460000,"y":15.29},{"x":1569413520000,"y":15.29},{"x":1569413580000,"y":15.29},{"x":1569413640000,"y":15.29},{"x":1569413700000,"y":15.3},{"x":1569413760000,"y":15.28},{"x":1569413820000,"y":15.28},{"x":1569413880000,"y":15.28},{"x":1569413940000,"y":15.28},{"x":1569414000000,"y":15.32},{"x":1569414060000,"y":15.3},{"x":1569414120000,"y":15.3},{"x":1569414180000,"y":15.3},{"x":1569414240000,"y":15.3},{"x":1569414300000,"y":15.32},{"x":1569414360000,"y":15.3},{"x":1569414420000,"y":15.3},{"x":1569414480000,"y":15.3},{"x":1569414540000,"y":15.3},{"x":1569414600000,"y":15.31},{"x":1569414660000,"y":15.3},{"x":1569414720000,"y":15.3},{"x":1569414780000,"y":15.3},{"x":1569414840000,"y":15.3},{"x":1569414900000,"y":15.31},{"x":1569414960000,"y":15.31},{"x":1569415020000,"y":15.31},{"x":1569415080000,"y":15.31},{"x":1569415140000,"y":15.3},{"x":1569415200000,"y":15.31},{"x":1569415260000,"y":15.31},{"x":1569415320000,"y":15.31},{"x":1569415380000,"y":15.31},{"x":1569415440000,"y":15.31},{"x":1569415500000,"y":15.32},{"x":1569415560000,"y":15.3},{"x":1569415620000,"y":15.3},{"x":1569415680000,"y":15.3},{"x":1569415740000,"y":15.3},{"x":1569415800000,"y":15.3},{"x":1569415860000,"y":15.3},{"x":1569415920000,"y":15.28},{"x":1569415980000,"y":15.28},{"x":1569416040000,"y":15.28},{"x":1569416100000,"y":15.3},{"x":1569416160000,"y":15.32},{"x":1569416220000,"y":15.31},{"x":1569416280000,"y":15.31},{"x":1569416340000,"y":15.31},{"x":1569416400000,"y":15.31},{"x":1569416460000,"y":15.32},{"x":1569416520000,"y":15.31},{"x":1569416580000,"y":15.31},{"x":1569416640000,"y":15.31},{"x":1569416700000,"y":15.31},{"x":1569416760000,"y":15.32},{"x":1569416820000,"y":15.31},{"x":1569416880000,"y":15.31},{"x":1569416940000,"y":15.31},{"x":1569417000000,"y":15.31},{"x":1569417060000,"y":15.31},{"x":1569417120000,"y":15.3},{"x":1569417180000,"y":15.3},{"x":1569417240000,"y":15.3},{"x":1569417300000,"y":15.31},{"x":1569417360000,"y":15.33},{"x":1569417420000,"y":15.31},{"x":1569417480000,"y":15.31},{"x":1569417540000,"y":15.31},{"x":1569417600000,"y":15.3},{"x":1569417660000,"y":15.31},{"x":1569417720000,"y":15.32},{"x":1569417780000,"y":15.32},{"x":1569417840000,"y":15.32},{"x":1569417900000,"y":15.31},{"x":1569417960000,"y":15.28},{"x":1569418020000,"y":15.3},{"x":1569418080000,"y":15.29},{"x":1569418140000,"y":15.29},{"x":1569418200000,"y":15.29},{"x":1569418260000,"y":15.29},{"x":1569418320000,"y":15.29},{"x":1569418380000,"y":15.28},{"x":1569418440000,"y":15.28},{"x":1569418500000,"y":15.28},{"x":1569418560000,"y":15.28},{"x":1569418620000,"y":15.28},{"x":1569418680000,"y":15.28},{"x":1569418740000,"y":15.28},{"x":1569418800000,"y":15.29},{"x":1569418860000,"y":15.29},{"x":1569418920000,"y":15.3},{"x":1569418980000,"y":15.29},{"x":1569419040000,"y":15.29},{"x":1569419100000,"y":15.29},{"x":1569419160000,"y":15.29},{"x":1569419220000,"y":15.32},{"x":1569419280000,"y":15.3},{"x":1569419340000,"y":15.3},{"x":1569419400000,"y":15.29},{"x":1569419460000,"y":15.29},{"x":1569419520000,"y":15.31},{"x":1569419580000,"y":15.29},{"x":1569419640000,"y":15.29},{"x":1569419700000,"y":15.29},{"x":1569419760000,"y":15.29},{"x":1569419820000,"y":15.31},{"x":1569419880000,"y":15.29},{"x":1569419940000,"y":15.29},{"x":1569420000000,"y":15.26},{"x":1569420060000,"y":15.26},{"x":1569420120000,"y":15.26},{"x":1569420180000,"y":15.29},{"x":1569420240000,"y":15.28},{"x":1569420300000,"y":15.28},{"x":1569420360000,"y":15.28},{"x":1569420420000,"y":15.28},{"x":1569420480000,"y":15.3},{"x":1569420540000,"y":15.29},{"x":1569420600000,"y":15.3},{"x":1569420660000,"y":15.3},{"x":1569420720000,"y":15.3},{"x":1569420780000,"y":15.31},{"x":1569420840000,"y":15.3},{"x":1569420900000,"y":15.3},{"x":1569420960000,"y":15.3},{"x":1569421020000,"y":15.3},{"x":1569421080000,"y":15.3},{"x":1569421140000,"y":15.27},{"x":1569421200000,"y":15.27},{"x":1569421260000,"y":15.27},{"x":1569421320000,"y":15.27},{"x":1569421380000,"y":15.29},{"x":1569421440000,"y":15.28},{"x":1569421500000,"y":15.3},{"x":1569421560000,"y":15.3},{"x":1569421620000,"y":15.3},{"x":1569421680000,"y":15.31},{"x":1569421740000,"y":15.3},{"x":1569421800000,"y":15.3},{"x":1569421860000,"y":15.3},{"x":1569421920000,"y":15.3},{"x":1569421980000,"y":15.31},{"x":1569422040000,"y":15.27},{"x":1569422100000,"y":15.3},{"x":1569422160000,"y":15.3},{"x":1569422220000,"y":15.3},{"x":1569422280000,"y":15.31},{"x":1569422340000,"y":15.3},{"x":1569422400000,"y":15.3},{"x":1569422460000,"y":15.3},{"x":1569422520000,"y":15.3},{"x":1569422580000,"y":15.3},{"x":1569422640000,"y":15.32},{"x":1569422700000,"y":15.29},{"x":1569422760000,"y":15.28},{"x":1569422820000,"y":15.28},{"x":1569422880000,"y":15.28},{"x":1569422940000,"y":15.3},{"x":1569423000000,"y":15.3},{"x":1569423060000,"y":15.3},{"x":1569423120000,"y":15.3},{"x":1569423180000,"y":15.3},{"x":1569423240000,"y":15.31},{"x":1569423300000,"y":15.3},{"x":1569423360000,"y":15.3},{"x":1569423420000,"y":15.3},{"x":1569423480000,"y":15.3},{"x":1569423540000,"y":15.31},{"x":1569423600000,"y":15.29},{"x":1569423660000,"y":15.29},{"x":1569423720000,"y":15.29},{"x":1569423780000,"y":15.29},{"x":1569423840000,"y":15.31},{"x":1569423900000,"y":15.31},{"x":1569423960000,"y":15.31},{"x":1569424020000,"y":15.31},{"x":1569424080000,"y":15.31},{"x":1569424140000,"y":15.32},{"x":1569424200000,"y":15.29},{"x":1569424260000,"y":15.29},{"x":1569424320000,"y":15.29},{"x":1569424380000,"y":15.29},{"x":1569424440000,"y":15.31},{"x":1569424500000,"y":15.28},{"x":1569424560000,"y":15.28},{"x":1569424620000,"y":15.29},{"x":1569424680000,"y":15.29},{"x":1569424740000,"y":15.29},{"x":1569424800000,"y":15.3},{"x":1569424860000,"y":15.28},{"x":1569424920000,"y":15.28},{"x":1569424980000,"y":15.28},{"x":1569425040000,"y":15.28},{"x":1569425100000,"y":15.3},{"x":1569425160000,"y":15.29},{"x":1569425220000,"y":15.29},{"x":1569425280000,"y":15.29},{"x":1569425340000,"y":15.29},{"x":1569425400000,"y":15.3},{"x":1569425460000,"y":15.29},{"x":1569425520000,"y":15.29},{"x":1569425580000,"y":15.29},{"x":1569425640000,"y":15.29},{"x":1569425700000,"y":15.31},{"x":1569425760000,"y":15.3},{"x":1569425820000,"y":15.3},{"x":1569425880000,"y":15.3},{"x":1569425940000,"y":15.31},{"x":1569426000000,"y":15.31},{"x":1569426060000,"y":15.3},{"x":1569426120000,"y":15.3},{"x":1569426180000,"y":15.29},{"x":1569426240000,"y":15.29},{"x":1569426300000,"y":15.31},{"x":1569426360000,"y":15.25},{"x":1569426420000,"y":15.25},{"x":1569426480000,"y":15.25},{"x":1569426540000,"y":15.25},{"x":1569426600000,"y":15.32},{"x":1569426660000,"y":15.31},{"x":1569426720000,"y":15.31},{"x":1569426780000,"y":15.31},{"x":1569426840000,"y":15.31},{"x":1569426900000,"y":15.31},{"x":1569426960000,"y":15.27},{"x":1569427020000,"y":15.27},{"x":1569427080000,"y":15.26},{"x":1569427140000,"y":15.26},{"x":1569427200000,"y":15.28},{"x":1569427260000,"y":15.3},{"x":1569427320000,"y":15.29},{"x":1569427380000,"y":15.29},{"x":1569427440000,"y":15.29},{"x":1569427500000,"y":15.28},{"x":1569427560000,"y":15.29},{"x":1569427620000,"y":15.28},{"x":1569427680000,"y":15.28},{"x":1569427740000,"y":15.3},{"x":1569427800000,"y":15.3},{"x":1569427860000,"y":15.32},{"x":1569427920000,"y":15.3},{"x":1569427980000,"y":15.3},{"x":1569428040000,"y":15.3},{"x":1569428100000,"y":15.24},{"x":1569428160000,"y":15.27},{"x":1569428220000,"y":15.29},{"x":1569428280000,"y":15.29},{"x":1569428340000,"y":15.29},{"x":1569428400000,"y":15.31},{"x":1569428460000,"y":15.46},{"x":1569428520000,"y":15.48},{"x":1569428580000,"y":15.48},{"x":1569428640000,"y":15.48},{"x":1569428700000,"y":15.48},{"x":1569428760000,"y":15.49},{"x":1569428820000,"y":15.48},{"x":1569428880000,"y":15.48},{"x":1569428940000,"y":15.48},{"x":1569429000000,"y":15.49},{"x":1569429060000,"y":15.5},{"x":1569429120000,"y":15.58},{"x":1569429180000,"y":15.57},{"x":1569429240000,"y":15.57},{"x":1569429300000,"y":15.55},{"x":1569429360000,"y":15.55},{"x":1569429420000,"y":15.59},{"x":1569429480000,"y":15.59},{"x":1569429540000,"y":15.59},{"x":1569429600000,"y":15.59},{"x":1569429660000,"y":15.59},{"x":1569429720000,"y":15.61},{"x":1569429780000,"y":15.59},{"x":1569429840000,"y":15.59},{"x":1569429900000,"y":15.59},{"x":1569429960000,"y":15.59},{"x":1569430020000,"y":15.58},{"x":1569430080000,"y":15.56},{"x":1569430140000,"y":15.56},{"x":1569430200000,"y":15.58},{"x":1569430260000,"y":15.59},{"x":1569430320000,"y":15.6},{"x":1569430380000,"y":15.6},{"x":1569430440000,"y":15.6},{"x":1569430500000,"y":15.59},{"x":1569430560000,"y":15.59},{"x":1569430620000,"y":15.6},{"x":1569430680000,"y":15.59},{"x":1569430740000,"y":15.59},{"x":1569430800000,"y":15.57},{"x":1569430860000,"y":15.57},{"x":1569430920000,"y":15.6},{"x":1569430980000,"y":15.6},{"x":1569431040000,"y":15.59},{"x":1569431100000,"y":15.59},{"x":1569431160000,"y":15.59},{"x":1569431220000,"y":15.59},{"x":1569431280000,"y":15.58},{"x":1569431340000,"y":15.59},{"x":1569431400000,"y":15.59},{"x":1569431460000,"y":15.59},{"x":1569431520000,"y":15.59},{"x":1569431580000,"y":15.61},{"x":1569431640000,"y":15.6},{"x":1569431700000,"y":15.61},{"x":1569431760000,"y":15.6},{"x":1569431820000,"y":15.6},{"x":1569431880000,"y":15.59},{"x":1569431940000,"y":15.58},{"x":1569432000000,"y":15.59},{"x":1569432060000,"y":15.59},{"x":1569432120000,"y":15.59},{"x":1569432180000,"y":15.61},{"x":1569432240000,"y":15.6},{"x":1569432300000,"y":15.59},{"x":1569432360000,"y":15.59},{"x":1569432420000,"y":15.59},{"x":1569432480000,"y":15.61},{"x":1569432540000,"y":15.6},{"x":1569432600000,"y":15.59},{"x":1569432660000,"y":15.59},{"x":1569432720000,"y":15.59},{"x":1569432780000,"y":15.6},{"x":1569432840000,"y":15.6},{"x":1569432900000,"y":15.6},{"x":1569432960000,"y":15.6},{"x":1569433020000,"y":15.6},{"x":1569433080000,"y":15.61},{"x":1569433140000,"y":15.59},{"x":1569433200000,"y":15.6},{"x":1569433260000,"y":15.6},{"x":1569433320000,"y":15.6},{"x":1569433380000,"y":15.6},{"x":1569433440000,"y":15.61},{"x":1569433500000,"y":15.6},{"x":1569433560000,"y":15.6},{"x":1569433620000,"y":15.6},{"x":1569433680000,"y":15.6},{"x":1569433740000,"y":15.93},{"x":1569433800000,"y":15.67},{"x":1569433860000,"y":15.67},{"x":1569433920000,"y":15.67},{"x":1569433980000,"y":15.67},{"x":1569434040000,"y":15.65},{"x":1569434100000,"y":15.6},{"x":1569434160000,"y":15.59},{"x":1569434220000,"y":15.59},{"x":1569434280000,"y":15.59},{"x":1569434340000,"y":15.61},{"x":1569434400000,"y":15.61},{"x":1569434460000,"y":15.61},{"x":1569434520000,"y":15.61},{"x":1569434580000,"y":15.61},{"x":1569434640000,"y":15.62},{"x":1569434700000,"y":15.6},{"x":1569434760000,"y":15.6},{"x":1569434820000,"y":15.6},{"x":1569434880000,"y":15.6},{"x":1569434940000,"y":15.62},{"x":1569435000000,"y":15.61},{"x":1569435060000,"y":15.61},{"x":1569435120000,"y":15.61},{"x":1569435180000,"y":15.61},{"x":1569435240000,"y":15.62},{"x":1569435300000,"y":15.61},{"x":1569435360000,"y":15.61},{"x":1569435420000,"y":15.61},{"x":1569435480000,"y":15.61},{"x":1569435540000,"y":15.62},{"x":1569435600000,"y":15.61},{"x":1569435660000,"y":15.61},{"x":1569435720000,"y":15.61},{"x":1569435780000,"y":15.61},{"x":1569435840000,"y":15.61},{"x":1569435900000,"y":15.59},{"x":1569435960000,"y":15.58},{"x":1569436020000,"y":15.58},{"x":1569436080000,"y":15.58},{"x":1569436140000,"y":15.58},{"x":1569436200000,"y":15.62},{"x":1569436260000,"y":15.61},{"x":1569436320000,"y":15.61},{"x":1569436380000,"y":15.6},{"x":1569436440000,"y":15.58},{"x":1569436500000,"y":15.6},{"x":1569436560000,"y":15.58},{"x":1569436620000,"y":15.58},{"x":1569436680000,"y":15.58},{"x":1569436740000,"y":15.59},{"x":1569436800000,"y":15.59},{"x":1569436860000,"y":15.56},{"x":1569436920000,"y":15.56},{"x":1569436980000,"y":15.56},{"x":1569437040000,"y":15.56},{"x":1569437100000,"y":15.6},{"x":1569437160000,"y":15.59},{"x":1569437220000,"y":15.59},{"x":1569437280000,"y":15.59},{"x":1569437340000,"y":15.59},{"x":1569437400000,"y":15.57},{"x":1569437460000,"y":15.59},{"x":1569437520000,"y":15.59},{"x":1569437580000,"y":15.59},{"x":1569437640000,"y":15.59},{"x":1569437700000,"y":15.6},{"x":1569437760000,"y":15.59},{"x":1569437820000,"y":15.59},{"x":1569437880000,"y":15.59},{"x":1569437940000,"y":15.59},{"x":1569438000000,"y":15.6},{"x":1569438060000,"y":15.59},{"x":1569438120000,"y":15.59},{"x":1569438180000,"y":15.59},{"x":1569438240000,"y":15.59},{"x":1569438300000,"y":15.58},{"x":1569438360000,"y":15.6},{"x":1569438420000,"y":15.59},{"x":1569438480000,"y":15.59},{"x":1569438540000,"y":15.59},{"x":1569438600000,"y":15.59},{"x":1569438660000,"y":15.6},{"x":1569438720000,"y":15.59},{"x":1569438780000,"y":15.6},{"x":1569438840000,"y":15.6},{"x":1569438900000,"y":15.59},{"x":1569438960000,"y":15.61},{"x":1569439020000,"y":15.59},{"x":1569439080000,"y":15.61},{"x":1569439140000,"y":15.9},{"x":1569439200000,"y":15.97},{"x":1569439260000,"y":15.99},{"x":1569439320000,"y":15.99},{"x":1569439380000,"y":15.99},{"x":1569439440000,"y":15.96},{"x":1569439500000,"y":15.95},{"x":1569439560000,"y":15.96},{"x":1569439620000,"y":15.94},{"x":1569439680000,"y":15.97},{"x":1569439740000,"y":15.98},{"x":1569439800000,"y":16},{"x":1569439860000,"y":16.02},{"x":1569439920000,"y":16.03},{"x":1569439980000,"y":16.03},{"x":1569440040000,"y":16.03},{"x":1569440100000,"y":16.03},{"x":1569440160000,"y":16.05},{"x":1569440220000,"y":16.03},{"x":1569440280000,"y":16.03},{"x":1569440340000,"y":15.98},{"x":1569440400000,"y":16.01},{"x":1569440460000,"y":16.02},{"x":1569440520000,"y":16.01},{"x":1569440580000,"y":16},{"x":1569440640000,"y":16.01},{"x":1569440700000,"y":16.01},{"x":1569440760000,"y":16.02},{"x":1569440820000,"y":16.02},{"x":1569440880000,"y":23.09},{"x":1569440940000,"y":30.22},{"x":1569441000000,"y":28.02},{"x":1569441060000,"y":25.24},{"x":1569441120000,"y":17.19},{"x":1569441180000,"y":17.19},{"x":1569441240000,"y":17.19},{"x":1569441300000,"y":17.15},{"x":1569441360000,"y":17.11},{"x":1569441420000,"y":17.13},{"x":1569441480000,"y":17.12},{"x":1569441540000,"y":17.12},{"x":1569441600000,"y":17.12},{"x":1569441660000,"y":17.12},{"x":1569441720000,"y":17.13},{"x":1569441780000,"y":17.11},{"x":1569441840000,"y":17.11},{"x":1569441900000,"y":17.11},{"x":1569441960000,"y":17.11},{"x":1569442020000,"y":17.14},{"x":1569442080000,"y":17.12},{"x":1569442140000,"y":17.12},{"x":1569442200000,"y":17.11},{"x":1569442260000,"y":17.11},{"x":1569442320000,"y":17.13},{"x":1569442380000,"y":17.13},{"x":1569442440000,"y":17.13},{"x":1569442500000,"y":17.13},{"x":1569442560000,"y":17.13},{"x":1569442620000,"y":17.13},{"x":1569442680000,"y":17.15},{"x":1569442740000,"y":17.14},{"x":1569442800000,"y":17.14},{"x":1569442860000,"y":17.14},{"x":1569442920000,"y":17.14},{"x":1569442980000,"y":17.15},{"x":1569443040000,"y":17.14},{"x":1569443100000,"y":17.14},{"x":1569443160000,"y":17.13},{"x":1569443220000,"y":17.13},{"x":1569443280000,"y":17.14},{"x":1569443340000,"y":17.13},{"x":1569443400000,"y":17.09},{"x":1569443460000,"y":17.09},{"x":1569443520000,"y":17.09},{"x":1569443580000,"y":17.13},{"x":1569443640000,"y":17.12},{"x":1569443700000,"y":17.12},{"x":1569443760000,"y":17.11},{"x":1569443820000,"y":17.11},{"x":1569443880000,"y":17.14},{"x":1569443940000,"y":17.15},{"x":1569444000000,"y":17.14},{"x":1569444060000,"y":17.14},{"x":1569444120000,"y":17.14},{"x":1569444180000,"y":17.15},{"x":1569444240000,"y":17.12},{"x":1569444300000,"y":17.13},{"x":1569444360000,"y":17.13},{"x":1569444420000,"y":17.13},{"x":1569444480000,"y":17.15},{"x":1569444540000,"y":17.13},{"x":1569444600000,"y":17.13},{"x":1569444660000,"y":17.13},{"x":1569444720000,"y":17.13},{"x":1569444780000,"y":17.14},{"x":1569444840000,"y":17.14},{"x":1569444900000,"y":17.14},{"x":1569444960000,"y":17.14},{"x":1569445020000,"y":17.14},{"x":1569445080000,"y":17.15},{"x":1569445140000,"y":17.13},{"x":1569445200000,"y":17.14},{"x":1569445260000,"y":17.14},{"x":1569445320000,"y":17.14},{"x":1569445380000,"y":17.12},{"x":1569445440000,"y":17.13},{"x":1569445500000,"y":17.1},{"x":1569445560000,"y":17.1},{"x":1569445620000,"y":17.1},{"x":1569445680000,"y":17.08},{"x":1569445740000,"y":17.12},{"x":1569445800000,"y":17.11},{"x":1569445860000,"y":17.11},{"x":1569445920000,"y":17.11},{"x":1569445980000,"y":17.11},{"x":1569446040000,"y":17.13},{"x":1569446100000,"y":17.13},{"x":1569446160000,"y":17.12},{"x":1569446220000,"y":17.13},{"x":1569446280000,"y":17.13},{"x":1569446340000,"y":17.14},{"x":1569446400000,"y":17.13},{"x":1569446460000,"y":17.12},{"x":1569446520000,"y":17.11},{"x":1569446580000,"y":17.11},{"x":1569446640000,"y":17.12},{"x":1569446700000,"y":17.1},{"x":1569446760000,"y":17.1},{"x":1569446820000,"y":17.11},{"x":1569446880000,"y":17.11},{"x":1569446940000,"y":17.12},{"x":1569447000000,"y":17.13},{"x":1569447060000,"y":17.13},{"x":1569447120000,"y":17.13},{"x":1569447180000,"y":17.13},{"x":1569447240000,"y":17.13},{"x":1569447300000,"y":17.1},{"x":1569447360000,"y":17.1},{"x":1569447420000,"y":17.1},{"x":1569447480000,"y":17.1},{"x":1569447540000,"y":17.16},{"x":1569447600000,"y":17.14},{"x":1569447660000,"y":17.12},{"x":1569447720000,"y":17.11},{"x":1569447780000,"y":17.11},{"x":1569447840000,"y":17.11},{"x":1569447900000,"y":17.12},{"x":1569447960000,"y":17.11},{"x":1569448020000,"y":17.11},{"x":1569448080000,"y":17.11},{"x":1569448140000,"y":17.12},{"x":1569448200000,"y":17.14},{"x":1569448260000,"y":17.13},{"x":1569448320000,"y":17.13},{"x":1569448380000,"y":17.13},{"x":1569448440000,"y":17.13},{"x":1569448500000,"y":17.14},{"x":1569448560000,"y":17.12},{"x":1569448620000,"y":17.13},{"x":1569448680000,"y":17.13},{"x":1569448740000,"y":17.13},{"x":1569448800000,"y":17.15},{"x":1569448860000,"y":17.11},{"x":1569448920000,"y":17.1},{"x":1569448980000,"y":17.1},{"x":1569449040000,"y":17.1},{"x":1569449100000,"y":17.13},{"x":1569449160000,"y":17.12},{"x":1569449220000,"y":17.12},{"x":1569449280000,"y":17.12},{"x":1569449340000,"y":17.11},{"x":1569449400000,"y":17.12},{"x":1569449460000,"y":17.12},{"x":1569449520000,"y":17.12},{"x":1569449580000,"y":17.11},{"x":1569449640000,"y":17.11},{"x":1569449700000,"y":17.15},{"x":1569449760000,"y":17.13},{"x":1569449820000,"y":17.13},{"x":1569449880000,"y":17.13},{"x":1569449940000,"y":17.13},{"x":1569450000000,"y":17.14},{"x":1569450060000,"y":17.13},{"x":1569450120000,"y":17.1},{"x":1569450180000,"y":17.1},{"x":1569450240000,"y":17.1},{"x":1569450300000,"y":17.13},{"x":1569450360000,"y":17.13},{"x":1569450420000,"y":17.13},{"x":1569450480000,"y":17.13},{"x":1569450540000,"y":17.13},{"x":1569450600000,"y":17.13},{"x":1569450660000,"y":17.15},{"x":1569450720000,"y":17.14},{"x":1569450780000,"y":17.14},{"x":1569450840000,"y":17.14},{"x":1569450900000,"y":17.13},{"x":1569450960000,"y":17.15},{"x":1569451020000,"y":17.14},{"x":1569451080000,"y":17.14},{"x":1569451140000,"y":17.15},{"x":1569451200000,"y":17.15},{"x":1569451260000,"y":17.17},{"x":1569451320000,"y":17.14},{"x":1569451380000,"y":17.14},{"x":1569451440000,"y":17.14},{"x":1569451500000,"y":17.13},{"x":1569451560000,"y":17.14},{"x":1569451620000,"y":17.12},{"x":1569451680000,"y":17.13},{"x":1569451740000,"y":17.13},{"x":1569451800000,"y":17.13},{"x":1569451860000,"y":17.14},{"x":1569451920000,"y":17.14},{"x":1569451980000,"y":17.14},{"x":1569452040000,"y":17.14},{"x":1569452100000,"y":17.15},{"x":1569452160000,"y":17.15},{"x":1569452220000,"y":17.13},{"x":1569452280000,"y":17.13},{"x":1569452340000,"y":17.13},{"x":1569452400000,"y":17.14},{"x":1569452460000,"y":17.15},{"x":1569452520000,"y":17.14},{"x":1569452580000,"y":17.12},{"x":1569452640000,"y":17.12},{"x":1569452700000,"y":17.12},{"x":1569452760000,"y":17.12},{"x":1569452820000,"y":17.16},{"x":1569452880000,"y":17.15},{"x":1569452940000,"y":17.14},{"x":1569453000000,"y":17.14},{"x":1569453060000,"y":17.14},{"x":1569453120000,"y":17.16},{"x":1569453180000,"y":17.15},{"x":1569453240000,"y":17.15},{"x":1569453300000,"y":17.15},{"x":1569453360000,"y":17.15},{"x":1569453420000,"y":17.16},{"x":1569453480000,"y":17.15},{"x":1569453540000,"y":17.15},{"x":1569453600000,"y":17.16},{"x":1569453660000,"y":17.16},{"x":1569453720000,"y":17.17},{"x":1569453780000,"y":17.14},{"x":1569453840000,"y":17.14},{"x":1569453900000,"y":17.13},{"x":1569453960000,"y":17.13},{"x":1569454020000,"y":17.14},{"x":1569454080000,"y":17.14},{"x":1569454140000,"y":16.41},{"x":1569454200000,"y":15.84},{"x":1569454260000,"y":15.84},{"x":1569454320000,"y":15.85},{"x":1569454380000,"y":15.83},{"x":1569454440000,"y":15.83},{"x":1569454500000,"y":15.83},{"x":1569454560000,"y":15.81},{"x":1569454620000,"y":15.62},{"x":1569454680000,"y":15.65},{"x":1569454740000,"y":15.64},{"x":1569454800000,"y":15.62},{"x":1569454860000,"y":15.62},{"x":1569454920000,"y":15.6},{"x":1569454980000,"y":15.62},{"x":1569455040000,"y":15.61},{"x":1569455100000,"y":15.61},{"x":1569455160000,"y":15.61},{"x":1569455220000,"y":15.61},{"x":1569455280000,"y":15.62},{"x":1569455340000,"y":15.61},{"x":1569455400000,"y":15.62},{"x":1569455460000,"y":15.62},{"x":1569455520000,"y":15.62},{"x":1569455580000,"y":15.84},{"x":1569455640000,"y":15.65},{"x":1569455700000,"y":15.68},{"x":1569455760000,"y":15.67},{"x":1569455820000,"y":15.67},{"x":1569455880000,"y":15.65},{"x":1569455940000,"y":15.62},{"x":1569456000000,"y":15.62},{"x":1569456060000,"y":15.61},{"x":1569456120000,"y":15.61},{"x":1569456180000,"y":15.63},{"x":1569456240000,"y":15.61},{"x":1569456300000,"y":15.61},{"x":1569456360000,"y":15.61},{"x":1569456420000,"y":15.61},{"x":1569456480000,"y":15.63},{"x":1569456540000,"y":15.61},{"x":1569456600000,"y":15.6},{"x":1569456660000,"y":15.6},{"x":1569456720000,"y":15.6},{"x":1569456780000,"y":15.61},{"x":1569456840000,"y":15.61},{"x":1569456900000,"y":15.62},{"x":1569456960000,"y":15.62},{"x":1569457020000,"y":15.62},{"x":1569457080000,"y":15.63},{"x":1569457140000,"y":15.62},{"x":1569457200000,"y":15.61},{"x":1569457260000,"y":15.61},{"x":1569457320000,"y":15.61},{"x":1569457380000,"y":15.61},{"x":1569457440000,"y":15.63},{"x":1569457500000,"y":15.62},{"x":1569457560000,"y":15.61},{"x":1569457620000,"y":15.61},{"x":1569457680000,"y":15.61},{"x":1569457740000,"y":15.62},{"x":1569457800000,"y":15.61},{"x":1569457860000,"y":15.61},{"x":1569457920000,"y":15.61},{"x":1569457980000,"y":15.61},{"x":1569458040000,"y":15.63},{"x":1569458100000,"y":15.62},{"x":1569458160000,"y":15.61},{"x":1569458220000,"y":15.61},{"x":1569458280000,"y":15.62},{"x":1569458340000,"y":15.63},{"x":1569458400000,"y":15.63},{"x":1569458460000,"y":15.63},{"x":1569458520000,"y":15.63},{"x":1569458580000,"y":15.63},{"x":1569458640000,"y":15.64},{"x":1569458700000,"y":15.58},{"x":1569458760000,"y":15.57},{"x":1569458820000,"y":15.57},{"x":1569458880000,"y":15.58},{"x":1569458940000,"y":15.59},{"x":1569459000000,"y":15.62},{"x":1569459060000,"y":15.62},{"x":1569459120000,"y":15.62},{"x":1569459180000,"y":15.62},{"x":1569459240000,"y":15.62},{"x":1569459300000,"y":15.63},{"x":1569459360000,"y":15.61},{"x":1569459420000,"y":15.61},{"x":1569459480000,"y":15.61},{"x":1569459540000,"y":15.62},{"x":1569459600000,"y":15.59},{"x":1569459660000,"y":15.58},{"x":1569459720000,"y":15.58},{"x":1569459780000,"y":15.57},{"x":1569459840000,"y":15.57},{"x":1569459900000,"y":15.64},{"x":1569459960000,"y":15.62},{"x":1569460020000,"y":15.62},{"x":1569460080000,"y":15.62},{"x":1569460140000,"y":15.6},{"x":1569460200000,"y":15.63},{"x":1569460260000,"y":15.62},{"x":1569460320000,"y":15.62},{"x":1569460380000,"y":15.61},{"x":1569460440000,"y":15.61},{"x":1569460500000,"y":15.62},{"x":1569460560000,"y":15.59},{"x":1569460620000,"y":15.59},{"x":1569460680000,"y":15.6},{"x":1569460740000,"y":15.6},{"x":1569460800000,"y":15.64},{"x":1569460860000,"y":15.62},{"x":1569460920000,"y":15.62},{"x":1569460980000,"y":15.62},{"x":1569461040000,"y":15.62},{"x":1569461100000,"y":15.63},{"x":1569461160000,"y":15.63},{"x":1569461220000,"y":15.63},{"x":1569461280000,"y":15.63},{"x":1569461340000,"y":15.63},{"x":1569461400000,"y":15.63},{"x":1569461460000,"y":15.62},{"x":1569461520000,"y":15.62},{"x":1569461580000,"y":15.62},{"x":1569461640000,"y":15.62},{"x":1569461700000,"y":15.63},{"x":1569461760000,"y":15.63},{"x":1569461820000,"y":15.63},{"x":1569461880000,"y":15.63},{"x":1569461940000,"y":15.62},{"x":1569462000000,"y":15.63},{"x":1569462060000,"y":15.63},{"x":1569462120000,"y":15.62},{"x":1569462180000,"y":15.62},{"x":1569462240000,"y":15.62},{"x":1569462300000,"y":15.62},{"x":1569462360000,"y":15.64},{"x":1569462420000,"y":15.62},{"x":1569462480000,"y":15.62},{"x":1569462540000,"y":15.62},{"x":1569462600000,"y":15.62},{"x":1569462660000,"y":15.62},{"x":1569462720000,"y":15.6},{"x":1569462780000,"y":15.6},{"x":1569462840000,"y":15.6},{"x":1569462900000,"y":15.62},{"x":1569462960000,"y":15.62},{"x":1569463020000,"y":15.62},{"x":1569463080000,"y":15.62},{"x":1569463140000,"y":15.62},{"x":1569463200000,"y":15.64},{"x":1569463260000,"y":15.64},{"x":1569463320000,"y":15.61},{"x":1569463380000,"y":15.61},{"x":1569463440000,"y":15.61},{"x":1569463500000,"y":15.62},{"x":1569463560000,"y":15.63},{"x":1569463620000,"y":15.62},{"x":1569463680000,"y":15.62},{"x":1569463740000,"y":15.63},{"x":1569463800000,"y":15.64},{"x":1569463860000,"y":15.65},{"x":1569463920000,"y":15.64},{"x":1569463980000,"y":15.63},{"x":1569464040000,"y":15.62},{"x":1569464100000,"y":15.62},{"x":1569464160000,"y":15.63},{"x":1569464220000,"y":15.61},{"x":1569464280000,"y":15.61},{"x":1569464340000,"y":15.61},{"x":1569464400000,"y":15.61},{"x":1569464460000,"y":15.61},{"x":1569464520000,"y":15.6},{"x":1569464580000,"y":15.6},{"x":1569464640000,"y":15.64},{"x":1569464700000,"y":15.86},{"x":1569464760000,"y":15.87},{"x":1569464820000,"y":15.9},{"x":1569464880000,"y":15.9},{"x":1569464940000,"y":15.89},{"x":1569465000000,"y":15.9},{"x":1569465060000,"y":15.91},{"x":1569465120000,"y":15.91},{"x":1569465180000,"y":15.9},{"x":1569465240000,"y":15.9},{"x":1569465300000,"y":15.9},{"x":1569465360000,"y":15.9},{"x":1569465420000,"y":15.9},{"x":1569465480000,"y":15.87},{"x":1569465540000,"y":15.9},{"x":1569465600000,"y":15.89},{"x":1569465660000,"y":15.89},{"x":1569465720000,"y":15.91},{"x":1569465780000,"y":15.89},{"x":1569465840000,"y":15.89},{"x":1569465900000,"y":15.89},{"x":1569465960000,"y":15.89},{"x":1569466020000,"y":15.91},{"x":1569466080000,"y":15.9},{"x":1569466140000,"y":15.9},{"x":1569466200000,"y":15.9},{"x":1569466260000,"y":15.9},{"x":1569466320000,"y":15.9},{"x":1569466380000,"y":15.87},{"x":1569466440000,"y":15.87},{"x":1569466500000,"y":15.88},{"x":1569466560000,"y":15.88},{"x":1569466620000,"y":15.88},{"x":1569466680000,"y":15.88},{"x":1569466740000,"y":15.87},{"x":1569466800000,"y":15.86},{"x":1569466860000,"y":15.87},{"x":1569466920000,"y":15.87},{"x":1569466980000,"y":15.9},{"x":1569467040000,"y":15.89},{"x":1569467100000,"y":15.9},{"x":1569467160000,"y":15.9},{"x":1569467220000,"y":15.9},{"x":1569467280000,"y":15.92},{"x":1569467340000,"y":15.91},{"x":1569467400000,"y":15.91},{"x":1569467460000,"y":15.91},{"x":1569467520000,"y":15.9},{"x":1569467580000,"y":15.92},{"x":1569467640000,"y":15.91},{"x":1569467700000,"y":15.9},{"x":1569467760000,"y":15.9},{"x":1569467820000,"y":15.9},{"x":1569467880000,"y":15.92},{"x":1569467940000,"y":15.91},{"x":1569468000000,"y":15.91},{"x":1569468060000,"y":15.91},{"x":1569468120000,"y":15.92},{"x":1569468180000,"y":15.92},{"x":1569468240000,"y":15.9},{"x":1569468300000,"y":15.91},{"x":1569468360000,"y":15.91},{"x":1569468420000,"y":15.91},{"x":1569468480000,"y":15.91},{"x":1569468540000,"y":15.9},{"x":1569468600000,"y":15.91},{"x":1569468660000,"y":15.91},{"x":1569468720000,"y":15.9},{"x":1569468780000,"y":15.91},{"x":1569468840000,"y":15.91},{"x":1569468900000,"y":15.91},{"x":1569468960000,"y":15.91},{"x":1569469020000,"y":15.91},{"x":1569469080000,"y":15.91},{"x":1569469140000,"y":15.91},{"x":1569469200000,"y":15.91},{"x":1569469260000,"y":15.89},{"x":1569469320000,"y":15.89},{"x":1569469380000,"y":15.89},{"x":1569469440000,"y":15.9},{"x":1569469500000,"y":15.9},{"x":1569469560000,"y":15.9},{"x":1569469620000,"y":15.9},{"x":1569469680000,"y":15.9},{"x":1569469740000,"y":15.91},{"x":1569469800000,"y":15.9},{"x":1569469860000,"y":15.9},{"x":1569469920000,"y":15.9},{"x":1569469980000,"y":15.9},{"x":1569470040000,"y":15.92},{"x":1569470100000,"y":15.92},{"x":1569470160000,"y":15.91},{"x":1569470220000,"y":15.91},{"x":1569470280000,"y":15.91},{"x":1569470340000,"y":15.92},{"x":1569470400000,"y":15.9},{"x":1569470460000,"y":15.9},{"x":1569470520000,"y":15.9},{"x":1569470580000,"y":15.9},{"x":1569470640000,"y":15.91},{"x":1569470700000,"y":15.89},{"x":1569470760000,"y":15.89},{"x":1569470820000,"y":15.89},{"x":1569470880000,"y":15.89},{"x":1569470940000,"y":15.93},{"x":1569471000000,"y":15.9},{"x":1569471060000,"y":15.9},{"x":1569471120000,"y":15.91},{"x":1569471180000,"y":15.9},{"x":1569471240000,"y":15.92},{"x":1569471300000,"y":15.9},{"x":1569471360000,"y":15.9},{"x":1569471420000,"y":15.9},{"x":1569471480000,"y":15.9},{"x":1569471540000,"y":15.9},{"x":1569471600000,"y":15.92},{"x":1569471660000,"y":15.91},{"x":1569471720000,"y":15.91},{"x":1569471780000,"y":15.91},{"x":1569471840000,"y":15.91},{"x":1569471900000,"y":15.92},{"x":1569471960000,"y":15.91},{"x":1569472020000,"y":15.91},{"x":1569472080000,"y":15.91},{"x":1569472140000,"y":15.91},{"x":1569472200000,"y":15.92},{"x":1569472260000,"y":15.91},{"x":1569472320000,"y":15.91},{"x":1569472380000,"y":15.91},{"x":1569472440000,"y":15.91},{"x":1569472500000,"y":15.92},{"x":1569472560000,"y":15.91},{"x":1569472620000,"y":15.91},{"x":1569472680000,"y":15.9},{"x":1569472740000,"y":15.92},{"x":1569472800000,"y":15.93},{"x":1569472860000,"y":15.91},{"x":1569472920000,"y":15.91},{"x":1569472980000,"y":15.91},{"x":1569473040000,"y":15.91},{"x":1569473100000,"y":15.92},{"x":1569473160000,"y":15.92},{"x":1569473220000,"y":15.91},{"x":1569473280000,"y":15.91},{"x":1569473340000,"y":15.9},{"x":1569473400000,"y":15.91},{"x":1569473460000,"y":15.89},{"x":1569473520000,"y":15.89},{"x":1569473580000,"y":15.89},{"x":1569473640000,"y":15.89},{"x":1569473700000,"y":15.9},{"x":1569473760000,"y":15.89},{"x":1569473820000,"y":15.88},{"x":1569473880000,"y":15.89},{"x":1569473940000,"y":15.89},{"x":1569474000000,"y":15.89},{"x":1569474060000,"y":15.9},{"x":1569474120000,"y":15.9},{"x":1569474180000,"y":15.9},{"x":1569474240000,"y":15.9},{"x":1569474300000,"y":15.88},{"x":1569474360000,"y":15.91},{"x":1569474420000,"y":15.9},{"x":1569474480000,"y":15.9},{"x":1569474540000,"y":15.9},{"x":1569474600000,"y":15.88},{"x":1569474660000,"y":15.91},{"x":1569474720000,"y":15.91},{"x":1569474780000,"y":15.9},{"x":1569474840000,"y":15.9},{"x":1569474900000,"y":15.9},{"x":1569474960000,"y":15.91},{"x":1569475020000,"y":15.89},{"x":1569475080000,"y":15.89},{"x":1569475140000,"y":15.89},{"x":1569475200000,"y":15.89},{"x":1569475260000,"y":15.91},{"x":1569475320000,"y":15.9},{"x":1569475380000,"y":15.9},{"x":1569475440000,"y":15.9},{"x":1569475500000,"y":15.9},{"x":1569475560000,"y":15.92},{"x":1569475620000,"y":15.9},{"x":1569475680000,"y":15.9},{"x":1569475740000,"y":15.89},{"x":1569475800000,"y":15.9},{"x":1569475860000,"y":15.91},{"x":1569475920000,"y":15.91},{"x":1569475980000,"y":15.91},{"x":1569476040000,"y":15.91},{"x":1569476100000,"y":15.9},{"x":1569476160000,"y":15.91},{"x":1569476220000,"y":15.91},{"x":1569476280000,"y":15.91},{"x":1569476340000,"y":15.89},{"x":1569476400000,"y":15.89},{"x":1569476460000,"y":15.89},{"x":1569476520000,"y":15.91},{"x":1569476580000,"y":15.91},{"x":1569476640000,"y":15.91},{"x":1569476700000,"y":15.91},{"x":1569476760000,"y":15.91},{"x":1569476820000,"y":15.93},{"x":1569476880000,"y":15.9},{"x":1569476940000,"y":15.91},{"x":1569477000000,"y":15.92},{"x":1569477060000,"y":15.91},{"x":1569477120000,"y":15.92},{"x":1569477180000,"y":15.9},{"x":1569477240000,"y":15.9},{"x":1569477300000,"y":15.91},{"x":1569477360000,"y":15.91},{"x":1569477420000,"y":16.15},{"x":1569477480000,"y":15.98},{"x":1569477540000,"y":15.98},{"x":1569477600000,"y":15.96},{"x":1569477660000,"y":15.96},{"x":1569477720000,"y":15.96},{"x":1569477780000,"y":15.91},{"x":1569477840000,"y":15.91},{"x":1569477900000,"y":15.9},{"x":1569477960000,"y":15.9},{"x":1569478020000,"y":15.91},{"x":1569478080000,"y":15.92},{"x":1569478140000,"y":15.92},{"x":1569478200000,"y":15.91},{"x":1569478260000,"y":15.91},{"x":1569478320000,"y":15.92},{"x":1569478380000,"y":15.93},{"x":1569478440000,"y":15.92},{"x":1569478500000,"y":15.92},{"x":1569478560000,"y":15.91},{"x":1569478620000,"y":15.91},{"x":1569478680000,"y":15.93},{"x":1569478740000,"y":15.91},{"x":1569478800000,"y":15.91},{"x":1569478860000,"y":15.91},{"x":1569478920000,"y":15.91},{"x":1569478980000,"y":15.92},{"x":1569479040000,"y":15.91},{"x":1569479100000,"y":15.9},{"x":1569479160000,"y":15.91},{"x":1569479220000,"y":15.91},{"x":1569479280000,"y":15.93},{"x":1569479340000,"y":15.92},{"x":1569479400000,"y":15.89},{"x":1569479460000,"y":15.88},{"x":1569479520000,"y":15.89},{"x":1569479580000,"y":15.9},{"x":1569479640000,"y":15.89},{"x":1569479700000,"y":15.91},{"x":1569479760000,"y":15.91},{"x":1569479820000,"y":15.91},{"x":1569479880000,"y":15.93},{"x":1569479940000,"y":15.9},{"x":1569480000000,"y":15.91},{"x":1569480060000,"y":15.91},{"x":1569480120000,"y":15.91},{"x":1569480180000,"y":15.92},{"x":1569480240000,"y":15.91},{"x":1569480300000,"y":15.92},{"x":1569480360000,"y":15.91},{"x":1569480420000,"y":15.91},{"x":1569480480000,"y":15.91},{"x":1569480540000,"y":15.93},{"x":1569480600000,"y":15.91},{"x":1569480660000,"y":15.91},{"x":1569480720000,"y":15.91},{"x":1569480780000,"y":15.91},{"x":1569480840000,"y":15.92},{"x":1569480900000,"y":15.92},{"x":1569480960000,"y":15.92},{"x":1569481020000,"y":15.92},{"x":1569481080000,"y":15.92},{"x":1569481140000,"y":15.93},{"x":1569481200000,"y":15.92},{"x":1569481260000,"y":15.92},{"x":1569481320000,"y":15.92},{"x":1569481380000,"y":15.92},{"x":1569481440000,"y":15.93},{"x":1569481500000,"y":15.93},{"x":1569481560000,"y":15.93},{"x":1569481620000,"y":15.93},{"x":1569481680000,"y":15.93},{"x":1569481740000,"y":15.92},{"x":1569481800000,"y":15.9},{"x":1569481860000,"y":15.91},{"x":1569481920000,"y":15.91},{"x":1569481980000,"y":15.91},{"x":1569482040000,"y":15.92},{"x":1569482100000,"y":15.92},{"x":1569482160000,"y":15.92},{"x":1569482220000,"y":15.92},{"x":1569482280000,"y":15.92},{"x":1569482340000,"y":15.93},{"x":1569482400000,"y":15.91},{"x":1569482460000,"y":15.91},{"x":1569482520000,"y":15.91},{"x":1569482580000,"y":15.89},{"x":1569482640000,"y":15.9},{"x":1569482700000,"y":15.9},{"x":1569482760000,"y":15.9},{"x":1569482820000,"y":15.9},{"x":1569482880000,"y":15.9},{"x":1569482940000,"y":15.9},{"x":1569483000000,"y":15.91},{"x":1569483060000,"y":15.89},{"x":1569483120000,"y":15.89},{"x":1569483180000,"y":15.89},{"x":1569483240000,"y":15.89},{"x":1569483300000,"y":15.91},{"x":1569483360000,"y":15.9},{"x":1569483420000,"y":15.9},{"x":1569483480000,"y":15.9},{"x":1569483540000,"y":15.89},{"x":1569483600000,"y":15.91},{"x":1569483660000,"y":15.91},{"x":1569483720000,"y":15.91},{"x":1569483780000,"y":15.91},{"x":1569483840000,"y":15.91},{"x":1569483900000,"y":15.91},{"x":1569483960000,"y":15.9},{"x":1569484020000,"y":15.9},{"x":1569484080000,"y":15.9},{"x":1569484140000,"y":15.9},{"x":1569484200000,"y":15.91},{"x":1569484260000,"y":15.9},{"x":1569484320000,"y":15.9},{"x":1569484380000,"y":15.9},{"x":1569484440000,"y":15.9},{"x":1569484500000,"y":15.92},{"x":1569484560000,"y":15.89},{"x":1569484620000,"y":15.89},{"x":1569484680000,"y":15.89},{"x":1569484740000,"y":15.89},{"x":1569484800000,"y":15.91},{"x":1569484860000,"y":15.9},{"x":1569484920000,"y":15.91},{"x":1569484980000,"y":15.91},{"x":1569485040000,"y":15.91},{"x":1569485100000,"y":15.91},{"x":1569485160000,"y":15.92},{"x":1569485220000,"y":15.9},{"x":1569485280000,"y":15.9},{"x":1569485340000,"y":15.91},{"x":1569485400000,"y":15.91},{"x":1569485460000,"y":15.92},{"x":1569485520000,"y":15.91},{"x":1569485580000,"y":15.91},{"x":1569485640000,"y":15.91},{"x":1569485700000,"y":15.91},{"x":1569485760000,"y":15.92},{"x":1569485820000,"y":15.91},{"x":1569485880000,"y":15.91},{"x":1569485940000,"y":15.9},{"x":1569486000000,"y":15.91},{"x":1569486060000,"y":15.92},{"x":1569486120000,"y":15.91},{"x":1569486180000,"y":15.91},{"x":1569486240000,"y":15.91},{"x":1569486300000,"y":15.9},{"x":1569486360000,"y":15.91},{"x":1569486420000,"y":15.91},{"x":1569486480000,"y":15.91},{"x":1569486540000,"y":15.91},{"x":1569486600000,"y":15.89},{"x":1569486660000,"y":15.91},{"x":1569486720000,"y":15.91},{"x":1569486780000,"y":15.91},{"x":1569486840000,"y":15.91},{"x":1569486900000,"y":15.91},{"x":1569486960000,"y":15.92},{"x":1569487020000,"y":15.91},{"x":1569487080000,"y":15.91},{"x":1569487140000,"y":15.91},{"x":1569487200000,"y":15.91},{"x":1569487260000,"y":15.91},{"x":1569487320000,"y":15.92},{"x":1569487380000,"y":15.91},{"x":1569487440000,"y":15.9},{"x":1569487500000,"y":16.01},{"x":1569487560000,"y":15.96},{"x":1569487620000,"y":15.98},{"x":1569487680000,"y":15.98},{"x":1569487740000,"y":15.98},{"x":1569487800000,"y":15.95},{"x":1569487860000,"y":15.92},{"x":1569487920000,"y":15.93},{"x":1569487980000,"y":15.92},{"x":1569488040000,"y":15.92},{"x":1569488100000,"y":15.92},{"x":1569488160000,"y":15.91},{"x":1569488220000,"y":15.92},{"x":1569488280000,"y":15.92},{"x":1569488340000,"y":15.92},{"x":1569488400000,"y":15.87},{"x":1569488460000,"y":15.87},{"x":1569488520000,"y":15.89},{"x":1569488580000,"y":15.9},{"x":1569488640000,"y":15.9},{"x":1569488700000,"y":15.89},{"x":1569488760000,"y":15.89},{"x":1569488820000,"y":15.91},{"x":1569488880000,"y":15.92},{"x":1569488940000,"y":15.92},{"x":1569489000000,"y":15.87},{"x":1569489060000,"y":15.87},{"x":1569489120000,"y":15.88},{"x":1569489180000,"y":15.92},{"x":1569489240000,"y":15.92},{"x":1569489300000,"y":15.92},{"x":1569489360000,"y":15.92},{"x":1569489420000,"y":15.92},{"x":1569489480000,"y":15.93},{"x":1569489540000,"y":15.92},{"x":1569489600000,"y":15.92},{"x":1569489660000,"y":15.92},{"x":1569489720000,"y":15.92},{"x":1569489780000,"y":15.93},{"x":1569489840000,"y":15.92},{"x":1569489900000,"y":15.92},{"x":1569489960000,"y":15.92},{"x":1569490020000,"y":15.93},{"x":1569490080000,"y":15.93},{"x":1569490140000,"y":15.92},{"x":1569490200000,"y":15.92},{"x":1569490260000,"y":15.92},{"x":1569490320000,"y":15.92},{"x":1569490380000,"y":15.93},{"x":1569490440000,"y":15.92},{"x":1569490500000,"y":15.92},{"x":1569490560000,"y":15.93},{"x":1569490620000,"y":15.93},{"x":1569490680000,"y":15.93},{"x":1569490740000,"y":15.92},{"x":1569490800000,"y":15.92},{"x":1569490860000,"y":15.93},{"x":1569490920000,"y":15.93},{"x":1569490980000,"y":15.93},{"x":1569491040000,"y":15.91},{"x":1569491100000,"y":15.92},{"x":1569491160000,"y":15.92},{"x":1569491220000,"y":15.92},{"x":1569491280000,"y":15.94},{"x":1569491340000,"y":15.92},{"x":1569491400000,"y":15.92},{"x":1569491460000,"y":15.92},{"x":1569491520000,"y":15.92},{"x":1569491580000,"y":15.92},{"x":1569491640000,"y":15.94},{"x":1569491700000,"y":15.9},{"x":1569491760000,"y":15.91},{"x":1569491820000,"y":15.91},{"x":1569491880000,"y":15.91},{"x":1569491940000,"y":15.9},{"x":1569492000000,"y":15.88},{"x":1569492060000,"y":15.88},{"x":1569492120000,"y":15.88},{"x":1569492180000,"y":15.88},{"x":1569492240000,"y":15.91},{"x":1569492300000,"y":15.9},{"x":1569492360000,"y":15.9},{"x":1569492420000,"y":15.9},{"x":1569492480000,"y":15.9},{"x":1569492540000,"y":15.91},{"x":1569492600000,"y":15.91},{"x":1569492660000,"y":15.91},{"x":1569492720000,"y":15.91},{"x":1569492780000,"y":15.91},{"x":1569492840000,"y":15.92},{"x":1569492900000,"y":15.9},{"x":1569492960000,"y":15.9},{"x":1569493020000,"y":15.9},{"x":1569493080000,"y":15.91},{"x":1569493140000,"y":15.91},{"x":1569493200000,"y":15.91},{"x":1569493260000,"y":15.91},{"x":1569493320000,"y":15.91},{"x":1569493380000,"y":15.91},{"x":1569493440000,"y":15.92},{"x":1569493500000,"y":15.91},{"x":1569493560000,"y":15.91},{"x":1569493620000,"y":15.91},{"x":1569493680000,"y":15.91},{"x":1569493740000,"y":15.91},{"x":1569493800000,"y":15.88},{"x":1569493860000,"y":15.87},{"x":1569493920000,"y":15.87},{"x":1569493980000,"y":15.87},{"x":1569494040000,"y":15.87},{"x":1569494100000,"y":15.89},{"x":1569494160000,"y":15.88},{"x":1569494220000,"y":15.88},{"x":1569494280000,"y":15.88},{"x":1569494340000,"y":15.91},{"x":1569494400000,"y":15.91},{"x":1569494460000,"y":15.9},{"x":1569494520000,"y":15.89},{"x":1569494580000,"y":15.89},{"x":1569494640000,"y":15.9},{"x":1569494700000,"y":15.92},{"x":1569494760000,"y":15.91},{"x":1569494820000,"y":15.91},{"x":1569494880000,"y":15.91},{"x":1569494940000,"y":15.91},{"x":1569495000000,"y":15.92},{"x":1569495060000,"y":15.91},{"x":1569495120000,"y":15.91},{"x":1569495180000,"y":15.91},{"x":1569495240000,"y":15.91},{"x":1569495300000,"y":15.91},{"x":1569495360000,"y":15.91},{"x":1569495420000,"y":15.9},{"x":1569495480000,"y":15.9},{"x":1569495540000,"y":15.9},{"x":1569495600000,"y":15.92},{"x":1569495660000,"y":15.9},{"x":1569495720000,"y":15.9},{"x":1569495780000,"y":15.9},{"x":1569495840000,"y":15.9},{"x":1569495900000,"y":15.9},{"x":1569495960000,"y":15.91},{"x":1569496020000,"y":15.93},{"x":1569496080000,"y":15.92},{"x":1569496140000,"y":15.92},{"x":1569496200000,"y":15.92},{"x":1569496260000,"y":15.92},{"x":1569496320000,"y":15.91},{"x":1569496380000,"y":15.91},{"x":1569496440000,"y":15.9},{"x":1569496500000,"y":15.9},{"x":1569496560000,"y":15.92},{"x":1569496620000,"y":15.91},{"x":1569496680000,"y":15.91},{"x":1569496740000,"y":15.91},{"x":1569496800000,"y":15.91},{"x":1569496860000,"y":15.93},{"x":1569496920000,"y":15.92},{"x":1569496980000,"y":15.92},{"x":1569497040000,"y":15.92},{"x":1569497100000,"y":15.98},{"x":1569497160000,"y":15.91},{"x":1569497220000,"y":15.9},{"x":1569497280000,"y":15.9},{"x":1569497340000,"y":15.9},{"x":1569497400000,"y":15.92},{"x":1569497460000,"y":15.93},{"x":1569497520000,"y":15.91},{"x":1569497580000,"y":15.91},{"x":1569497640000,"y":15.91},{"x":1569497700000,"y":15.92},{"x":1569497760000,"y":15.93},{"x":1569497820000,"y":15.92},{"x":1569497880000,"y":15.92},{"x":1569497940000,"y":15.92},{"x":1569498000000,"y":15.92},{"x":1569498060000,"y":15.92},{"x":1569498120000,"y":15.91},{"x":1569498180000,"y":15.89},{"x":1569498240000,"y":15.9},{"x":1569498300000,"y":15.91},{"x":1569498360000,"y":15.91},{"x":1569498420000,"y":15.93},{"x":1569498480000,"y":15.91},{"x":1569498540000,"y":15.91},{"x":1569498600000,"y":15.92},{"x":1569498660000,"y":15.92},{"x":1569498720000,"y":15.93},{"x":1569498780000,"y":15.92},{"x":1569498840000,"y":15.92},{"x":1569498900000,"y":15.92},{"x":1569498960000,"y":15.92},{"x":1569499020000,"y":15.93},{"x":1569499080000,"y":15.92},{"x":1569499140000,"y":15.92},{"x":1569499200000,"y":15.9},{"x":1569499260000,"y":15.9},{"x":1569499320000,"y":16.16},{"x":1569499380000,"y":15.99},{"x":1569499440000,"y":15.99},{"x":1569499500000,"y":15.99},{"x":1569499560000,"y":15.99},{"x":1569499620000,"y":15.97},{"x":1569499680000,"y":15.91},{"x":1569499740000,"y":15.92},{"x":1569499800000,"y":15.92},{"x":1569499860000,"y":15.92},{"x":1569499920000,"y":15.93},{"x":1569499980000,"y":15.92},{"x":1569500040000,"y":15.92},{"x":1569500100000,"y":15.92},{"x":1569500160000,"y":15.92},{"x":1569500220000,"y":15.92},{"x":1569500280000,"y":15.9},{"x":1569500340000,"y":15.9},{"x":1569500400000,"y":15.91},{"x":1569500460000,"y":15.92},{"x":1569500520000,"y":15.92},{"x":1569500580000,"y":15.94},{"x":1569500640000,"y":15.93},{"x":1569500700000,"y":15.93},{"x":1569500760000,"y":15.93},{"x":1569500820000,"y":15.93},{"x":1569500880000,"y":15.93},{"x":1569500940000,"y":15.92},{"x":1569501000000,"y":15.91},{"x":1569501060000,"y":15.9},{"x":1569501120000,"y":15.9},{"x":1569501180000,"y":15.92},{"x":1569501240000,"y":15.9},{"x":1569501300000,"y":15.91},{"x":1569501360000,"y":15.91},{"x":1569501420000,"y":15.91},{"x":1569501480000,"y":15.92},{"x":1569501540000,"y":15.89},{"x":1569501600000,"y":15.9},{"x":1569501660000,"y":15.9},{"x":1569501720000,"y":15.9},{"x":1569501780000,"y":15.91},{"x":1569501840000,"y":15.9},{"x":1569501900000,"y":15.87},{"x":1569501960000,"y":15.88},{"x":1569502020000,"y":15.87},{"x":1569502080000,"y":15.89},{"x":1569502140000,"y":15.87},{"x":1569502200000,"y":15.87},{"x":1569502260000,"y":15.87},{"x":1569502320000,"y":15.87},{"x":1569502380000,"y":15.87},{"x":1569502440000,"y":15.88},{"x":1569502500000,"y":15.87},{"x":1569502560000,"y":15.88},{"x":1569502620000,"y":15.88},{"x":1569502680000,"y":15.88},{"x":1569502740000,"y":15.91},{"x":1569502800000,"y":15.85},{"x":1569502860000,"y":15.85},{"x":1569502920000,"y":15.85},{"x":1569502980000,"y":15.85},{"x":1569503040000,"y":15.9},{"x":1569503100000,"y":15.91},{"x":1569503160000,"y":15.91},{"x":1569503220000,"y":15.91},{"x":1569503280000,"y":15.91},{"x":1569503340000,"y":15.92},{"x":1569503400000,"y":15.91},{"x":1569503460000,"y":15.91},{"x":1569503520000,"y":15.92},{"x":1569503580000,"y":15.91},{"x":1569503640000,"y":15.93},{"x":1569503700000,"y":15.91},{"x":1569503760000,"y":15.91},{"x":1569503820000,"y":15.91},{"x":1569503880000,"y":15.91},{"x":1569503940000,"y":15.92},{"x":1569504000000,"y":15.92},{"x":1569504060000,"y":15.91},{"x":1569504120000,"y":15.91},{"x":1569504180000,"y":15.91},{"x":1569504240000,"y":15.92},{"x":1569504300000,"y":15.9},{"x":1569504360000,"y":15.9},{"x":1569504420000,"y":15.9},{"x":1569504480000,"y":15.9},{"x":1569504540000,"y":15.91},{"x":1569504600000,"y":15.91},{"x":1569504660000,"y":15.91},{"x":1569504720000,"y":15.91},{"x":1569504780000,"y":15.91},{"x":1569504840000,"y":15.91},{"x":1569504900000,"y":15.89},{"x":1569504960000,"y":15.88},{"x":1569505020000,"y":15.88},{"x":1569505080000,"y":15.88},{"x":1569505140000,"y":15.91},{"x":1569505200000,"y":15.91},{"x":1569505260000,"y":15.89},{"x":1569505320000,"y":15.9},{"x":1569505380000,"y":15.89},{"x":1569505440000,"y":15.89},{"x":1569505500000,"y":15.93},{"x":1569505560000,"y":15.91},{"x":1569505620000,"y":15.91},{"x":1569505680000,"y":15.91},{"x":1569505740000,"y":15.91},{"x":1569505800000,"y":15.93},{"x":1569505860000,"y":15.91},{"x":1569505920000,"y":15.91},{"x":1569505980000,"y":15.91},{"x":1569506040000,"y":15.92},{"x":1569506100000,"y":15.91},{"x":1569506160000,"y":15.89},{"x":1569506220000,"y":15.89},{"x":1569506280000,"y":15.89},{"x":1569506340000,"y":15.89},{"x":1569506400000,"y":15.92},{"x":1569506460000,"y":15.92},{"x":1569506520000,"y":15.92},{"x":1569506580000,"y":15.92},{"x":1569506640000,"y":15.92},{"x":1569506700000,"y":15.91},{"x":1569506760000,"y":15.93},{"x":1569506820000,"y":15.92},{"x":1569506880000,"y":15.92},{"x":1569506940000,"y":15.91},{"x":1569507000000,"y":15.92},{"x":1569507060000,"y":15.93},{"x":1569507120000,"y":15.92},{"x":1569507180000,"y":15.92},{"x":1569507240000,"y":15.92},{"x":1569507300000,"y":15.91},{"x":1569507360000,"y":15.91},{"x":1569507420000,"y":15.89},{"x":1569507480000,"y":15.9},{"x":1569507540000,"y":15.89},{"x":1569507600000,"y":15.92},{"x":1569507660000,"y":15.93},{"x":1569507720000,"y":15.92},{"x":1569507780000,"y":15.92},{"x":1569507840000,"y":15.92},{"x":1569507900000,"y":15.92},{"x":1569507960000,"y":15.93},{"x":1569508020000,"y":15.92},{"x":1569508080000,"y":15.92},{"x":1569508140000,"y":15.92},{"x":1569508200000,"y":15.91},{"x":1569508260000,"y":15.93},{"x":1569508320000,"y":15.92},{"x":1569508380000,"y":15.92},{"x":1569508440000,"y":15.92},{"x":1569508500000,"y":15.93},{"x":1569508560000,"y":15.94},{"x":1569508620000,"y":15.93},{"x":1569508680000,"y":15.93},{"x":1569508740000,"y":15.91},{"x":1569508800000,"y":15.91},{"x":1569508860000,"y":15.92},{"x":1569508920000,"y":15.93},{"x":1569508980000,"y":15.92},{"x":1569509040000,"y":15.92},{"x":1569509100000,"y":15.92},{"x":1569509160000,"y":15.92},{"x":1569509220000,"y":15.92},{"x":1569509280000,"y":15.91},{"x":1569509340000,"y":15.91},{"x":1569509400000,"y":15.91},{"x":1569509460000,"y":15.91},{"x":1569509520000,"y":15.95},{"x":1569509580000,"y":15.82},{"x":1569509640000,"y":15.63},{"x":1569509700000,"y":15.64},{"x":1569509760000,"y":15.64},{"x":1569509820000,"y":15.64},{"x":1569509880000,"y":15.62},{"x":1569509940000,"y":15.62},{"x":1569510000000,"y":15.64},{"x":1569510060000,"y":15.64},{"x":1569510120000,"y":15.65},{"x":1569510180000,"y":15.64},{"x":1569510240000,"y":15.64},{"x":1569510300000,"y":15.62},{"x":1569510360000,"y":15.62},{"x":1569510420000,"y":15.62},{"x":1569510480000,"y":15.61},{"x":1569510540000,"y":15.61},{"x":1569510600000,"y":15.62},{"x":1569510660000,"y":15.62},{"x":1569510720000,"y":15.63},{"x":1569510780000,"y":15.61},{"x":1569510840000,"y":15.61},{"x":1569510900000,"y":15.62},{"x":1569510960000,"y":15.62},{"x":1569511020000,"y":15.63},{"x":1569511080000,"y":15.61},{"x":1569511140000,"y":15.61},{"x":1569511200000,"y":15.61},{"x":1569511260000,"y":15.61},{"x":1569511320000,"y":15.61},{"x":1569511380000,"y":15.63},{"x":1569511440000,"y":15.62},{"x":1569511500000,"y":15.62},{"x":1569511560000,"y":15.61},{"x":1569511620000,"y":15.61},{"x":1569511680000,"y":15.63},{"x":1569511740000,"y":15.62},{"x":1569511800000,"y":15.6},{"x":1569511860000,"y":15.6},{"x":1569511920000,"y":15.6},{"x":1569511980000,"y":15.62},{"x":1569512040000,"y":15.62},{"x":1569512100000,"y":15.62},{"x":1569512160000,"y":15.61},{"x":1569512220000,"y":15.61},{"x":1569512280000,"y":15.63},{"x":1569512340000,"y":15.63},{"x":1569512400000,"y":15.7},{"x":1569512460000,"y":15.7},{"x":1569512520000,"y":15.7},{"x":1569512580000,"y":15.72},{"x":1569512640000,"y":15.71},{"x":1569512700000,"y":15.72},{"x":1569512760000,"y":15.72},{"x":1569512820000,"y":15.72},{"x":1569512880000,"y":15.73},{"x":1569512940000,"y":15.71},{"x":1569513000000,"y":15.7},{"x":1569513060000,"y":15.7},{"x":1569513120000,"y":15.7},{"x":1569513180000,"y":15.7},{"x":1569513240000,"y":15.72},{"x":1569513300000,"y":15.71},{"x":1569513360000,"y":15.71},{"x":1569513420000,"y":15.71},{"x":1569513480000,"y":15.71},{"x":1569513540000,"y":15.72},{"x":1569513600000,"y":15.72},{"x":1569513660000,"y":15.71},{"x":1569513720000,"y":15.71},{"x":1569513780000,"y":15.71},{"x":1569513840000,"y":15.72},{"x":1569513900000,"y":15.71},{"x":1569513960000,"y":15.72},{"x":1569514020000,"y":15.71},{"x":1569514080000,"y":15.71},{"x":1569514140000,"y":15.73},{"x":1569514200000,"y":15.7},{"x":1569514260000,"y":15.7},{"x":1569514320000,"y":15.7},{"x":1569514380000,"y":15.7},{"x":1569514440000,"y":15.73},{"x":1569514500000,"y":15.73},{"x":1569514560000,"y":15.74},{"x":1569514620000,"y":15.74},{"x":1569514680000,"y":15.74},{"x":1569514740000,"y":15.75},{"x":1569514800000,"y":15.72},{"x":1569514860000,"y":15.72},{"x":1569514920000,"y":15.72},{"x":1569514980000,"y":15.72},{"x":1569515040000,"y":15.74},{"x":1569515100000,"y":15.74},{"x":1569515160000,"y":15.74},{"x":1569515220000,"y":15.73},{"x":1569515280000,"y":15.73},{"x":1569515340000,"y":15.73},{"x":1569515400000,"y":15.74},{"x":1569515460000,"y":15.74},{"x":1569515520000,"y":15.74},{"x":1569515580000,"y":15.74},{"x":1569515640000,"y":15.74},{"x":1569515700000,"y":15.74},{"x":1569515760000,"y":15.73},{"x":1569515820000,"y":15.73},{"x":1569515880000,"y":15.73},{"x":1569515940000,"y":15.72},{"x":1569516000000,"y":15.74},{"x":1569516060000,"y":15.74},{"x":1569516120000,"y":15.73},{"x":1569516180000,"y":15.74},{"x":1569516240000,"y":15.74},{"x":1569516300000,"y":15.71},{"x":1569516360000,"y":15.71},{"x":1569516420000,"y":15.72},{"x":1569516480000,"y":15.72},{"x":1569516540000,"y":15.72},{"x":1569516600000,"y":15.75},{"x":1569516660000,"y":15.73},{"x":1569516720000,"y":15.73},{"x":1569516780000,"y":15.73},{"x":1569516840000,"y":15.72},{"x":1569516900000,"y":15.76},{"x":1569516960000,"y":15.73},{"x":1569517020000,"y":15.74},{"x":1569517080000,"y":15.73},{"x":1569517140000,"y":15.73},{"x":1569517200000,"y":15.7},{"x":1569517260000,"y":15.73},{"x":1569517320000,"y":15.72},{"x":1569517380000,"y":15.72},{"x":1569517440000,"y":15.71},{"x":1569517500000,"y":15.75},{"x":1569517560000,"y":15.75},{"x":1569517620000,"y":15.74},{"x":1569517680000,"y":15.74},{"x":1569517740000,"y":15.74},{"x":1569517800000,"y":15.75},{"x":1569517860000,"y":15.76},{"x":1569517920000,"y":15.74},{"x":1569517980000,"y":15.74},{"x":1569518040000,"y":15.74},{"x":1569518100000,"y":15.74},{"x":1569518160000,"y":15.75},{"x":1569518220000,"y":15.73},{"x":1569518280000,"y":15.74},{"x":1569518340000,"y":15.74},{"x":1569518400000,"y":15.73},{"x":1569518460000,"y":15.74},{"x":1569518520000,"y":15.73},{"x":1569518580000,"y":15.73},{"x":1569518640000,"y":15.73},{"x":1569518700000,"y":15.75},{"x":1569518760000,"y":15.76},{"x":1569518820000,"y":15.75},{"x":1569518880000,"y":15.75},{"x":1569518940000,"y":15.75},{"x":1569519000000,"y":15.74},{"x":1569519060000,"y":15.76},{"x":1569519120000,"y":15.75},{"x":1569519180000,"y":15.75},{"x":1569519240000,"y":15.75},{"x":1569519300000,"y":15.75},{"x":1569519360000,"y":15.76},{"x":1569519420000,"y":15.75},{"x":1569519480000,"y":15.74},{"x":1569519540000,"y":15.73},{"x":1569519600000,"y":15.73},{"x":1569519660000,"y":15.73},{"x":1569519720000,"y":15.71},{"x":1569519780000,"y":15.7},{"x":1569519840000,"y":15.7},{"x":1569519900000,"y":15.72},{"x":1569519960000,"y":15.72},{"x":1569520020000,"y":15.73},{"x":1569520080000,"y":15.73},{"x":1569520140000,"y":15.73},{"x":1569520200000,"y":15.73},{"x":1569520260000,"y":15.73},{"x":1569520320000,"y":15.74},{"x":1569520380000,"y":15.73},{"x":1569520440000,"y":15.73},{"x":1569520500000,"y":15.7},{"x":1569520560000,"y":15.7},{"x":1569520620000,"y":15.72},{"x":1569520680000,"y":15.73},{"x":1569520740000,"y":15.73},{"x":1569520800000,"y":15.74},{"x":1569520860000,"y":15.74},{"x":1569520920000,"y":15.75},{"x":1569520980000,"y":15.73},{"x":1569521040000,"y":15.73},{"x":1569521100000,"y":15.71},{"x":1569521160000,"y":15.71},{"x":1569521220000,"y":16.1},{"x":1569521280000,"y":15.77},{"x":1569521340000,"y":15.79},{"x":1569521400000,"y":15.79},{"x":1569521460000,"y":15.79},{"x":1569521520000,"y":15.79},{"x":1569521580000,"y":15.71},{"x":1569521640000,"y":15.71},{"x":1569521700000,"y":15.7},{"x":1569521760000,"y":15.7},{"x":1569521820000,"y":15.71},{"x":1569521880000,"y":15.73},{"x":1569521940000,"y":15.71},{"x":1569522000000,"y":15.72},{"x":1569522060000,"y":15.71},{"x":1569522120000,"y":15.71},{"x":1569522180000,"y":15.74},{"x":1569522240000,"y":15.72},{"x":1569522300000,"y":15.73},{"x":1569522360000,"y":15.73},{"x":1569522420000,"y":15.73},{"x":1569522480000,"y":15.73},{"x":1569522540000,"y":15.7},{"x":1569522600000,"y":15.72},{"x":1569522660000,"y":15.71},{"x":1569522720000,"y":15.72},{"x":1569522780000,"y":15.72},{"x":1569522840000,"y":15.69},{"x":1569522900000,"y":15.72},{"x":1569522960000,"y":15.72},{"x":1569523020000,"y":15.72},{"x":1569523080000,"y":15.72},{"x":1569523140000,"y":15.73},{"x":1569523200000,"y":15.71},{"x":1569523260000,"y":15.71},{"x":1569523320000,"y":15.71},{"x":1569523380000,"y":15.72},{"x":1569523440000,"y":15.71},{"x":1569523500000,"y":15.74},{"x":1569523560000,"y":15.74},{"x":1569523620000,"y":15.74},{"x":1569523680000,"y":15.76},{"x":1569523740000,"y":15.73},{"x":1569523800000,"y":15.73},{"x":1569523860000,"y":15.73},{"x":1569523920000,"y":15.73},{"x":1569523980000,"y":15.73},{"x":1569524040000,"y":15.73},{"x":1569524100000,"y":15.72},{"x":1569524160000,"y":15.72},{"x":1569524220000,"y":15.72},{"x":1569524280000,"y":15.71},{"x":1569524340000,"y":15.73},{"x":1569524400000,"y":15.7},{"x":1569524460000,"y":15.7},{"x":1569524520000,"y":15.7},{"x":1569524580000,"y":15.7},{"x":1569524640000,"y":15.73},{"x":1569524700000,"y":15.71},{"x":1569524760000,"y":15.71},{"x":1569524820000,"y":15.71},{"x":1569524880000,"y":15.71},{"x":1569524940000,"y":15.74},{"x":1569525000000,"y":15.74},{"x":1569525060000,"y":15.73},{"x":1569525120000,"y":15.73},{"x":1569525180000,"y":15.73},{"x":1569525240000,"y":15.75},{"x":1569525300000,"y":15.75},{"x":1569525360000,"y":15.74},{"x":1569525420000,"y":15.74},{"x":1569525480000,"y":15.74},{"x":1569525540000,"y":15.75},{"x":1569525600000,"y":15.73},{"x":1569525660000,"y":15.73},{"x":1569525720000,"y":15.73},{"x":1569525780000,"y":15.72},{"x":1569525840000,"y":15.73},{"x":1569525900000,"y":15.74},{"x":1569525960000,"y":15.74},{"x":1569526020000,"y":15.74},{"x":1569526080000,"y":15.74},{"x":1569526140000,"y":15.74},{"x":1569526200000,"y":15.75},{"x":1569526260000,"y":15.74},{"x":1569526320000,"y":15.73},{"x":1569526380000,"y":15.74},{"x":1569526440000,"y":15.73},{"x":1569526500000,"y":15.74},{"x":1569526560000,"y":15.72},{"x":1569526620000,"y":15.72},{"x":1569526680000,"y":15.72},{"x":1569526740000,"y":15.74},{"x":1569526800000,"y":15.75},{"x":1569526860000,"y":15.74},{"x":1569526920000,"y":15.74},{"x":1569526980000,"y":15.74},{"x":1569527040000,"y":15.74},{"x":1569527100000,"y":15.74},{"x":1569527160000,"y":15.72},{"x":1569527220000,"y":15.72},{"x":1569527280000,"y":15.72},{"x":1569527340000,"y":15.72},{"x":1569527400000,"y":15.75},{"x":1569527460000,"y":15.74},{"x":1569527520000,"y":15.74},{"x":1569527580000,"y":15.74},{"x":1569527640000,"y":15.74},{"x":1569527700000,"y":15.73},{"x":1569527760000,"y":15.73},{"x":1569527820000,"y":15.72},{"x":1569527880000,"y":15.72},{"x":1569527940000,"y":15.72},{"x":1569528000000,"y":15.74},{"x":1569528060000,"y":15.73},{"x":1569528120000,"y":15.73},{"x":1569528180000,"y":15.73},{"x":1569528240000,"y":15.73},{"x":1569528300000,"y":15.75},{"x":1569528360000,"y":15.75},{"x":1569528420000,"y":15.75},{"x":1569528480000,"y":15.75},{"x":1569528540000,"y":15.74},{"x":1569528600000,"y":15.75},{"x":1569528660000,"y":15.76},{"x":1569528720000,"y":15.75},{"x":1569528780000,"y":15.75},{"x":1569528840000,"y":15.72},{"x":1569528900000,"y":15.72},{"x":1569528960000,"y":15.73},{"x":1569529020000,"y":15.73},{"x":1569529080000,"y":15.73},{"x":1569529140000,"y":15.73},{"x":1569529200000,"y":15.73},{"x":1569529260000,"y":15.74},{"x":1569529320000,"y":15.73},{"x":1569529380000,"y":15.73},{"x":1569529440000,"y":15.73},{"x":1569529500000,"y":15.73},{"x":1569529560000,"y":15.74},{"x":1569529620000,"y":15.73},{"x":1569529680000,"y":15.73},{"x":1569529740000,"y":15.73},{"x":1569529800000,"y":15.73},{"x":1569529860000,"y":15.74},{"x":1569529920000,"y":15.73},{"x":1569529980000,"y":15.73},{"x":1569530040000,"y":15.73},{"x":1569530100000,"y":15.72},{"x":1569530160000,"y":15.73},{"x":1569530220000,"y":15.72},{"x":1569530280000,"y":15.72},{"x":1569530340000,"y":15.73},{"x":1569530400000,"y":15.74},{"x":1569530460000,"y":15.74},{"x":1569530520000,"y":15.75},{"x":1569530580000,"y":15.74},{"x":1569530640000,"y":15.74},{"x":1569530700000,"y":15.74},{"x":1569530760000,"y":15.74},{"x":1569530820000,"y":15.74},{"x":1569530880000,"y":15.74},{"x":1569530940000,"y":15.73},{"x":1569531000000,"y":15.73},{"x":1569531060000,"y":15.73},{"x":1569531120000,"y":15.74},{"x":1569531180000,"y":15.73},{"x":1569531240000,"y":15.73},{"x":1569531300000,"y":15.74},{"x":1569531360000,"y":15.73},{"x":1569531420000,"y":15.74},{"x":1569531480000,"y":15.73},{"x":1569531540000,"y":15.73},{"x":1569531600000,"y":15.72},{"x":1569531660000,"y":15.72},{"x":1569531720000,"y":15.74},{"x":1569531780000,"y":15.74},{"x":1569531840000,"y":15.74},{"x":1569531900000,"y":15.73},{"x":1569531960000,"y":15.73},{"x":1569532020000,"y":15.74},{"x":1569532080000,"y":15.71},{"x":1569532140000,"y":15.75},{"x":1569532200000,"y":15.74},{"x":1569532260000,"y":15.74},{"x":1569532320000,"y":15.75},{"x":1569532380000,"y":15.73},{"x":1569532440000,"y":15.73},{"x":1569532500000,"y":15.72},{"x":1569532560000,"y":15.72},{"x":1569532620000,"y":15.72},{"x":1569532680000,"y":15.75},{"x":1569532740000,"y":15.74},{"x":1569532800000,"y":15.74},{"x":1569532860000,"y":15.74},{"x":1569532920000,"y":15.74},{"x":1569532980000,"y":15.74},{"x":1569533040000,"y":15.72},{"x":1569533100000,"y":15.72},{"x":1569533160000,"y":15.72},{"x":1569533220000,"y":15.72},{"x":1569533280000,"y":15.74},{"x":1569533340000,"y":15.72},{"x":1569533400000,"y":15.73},{"x":1569533460000,"y":15.73},{"x":1569533520000,"y":15.73},{"x":1569533580000,"y":15.74},{"x":1569533640000,"y":15.74},{"x":1569533700000,"y":15.75},{"x":1569533760000,"y":15.75},{"x":1569533820000,"y":15.75},{"x":1569533880000,"y":15.76},{"x":1569533940000,"y":15.73},{"x":1569534000000,"y":15.72},{"x":1569534060000,"y":15.72},{"x":1569534120000,"y":15.72},{"x":1569534180000,"y":15.73},{"x":1569534240000,"y":15.73},{"x":1569534300000,"y":15.74},{"x":1569534360000,"y":15.74},{"x":1569534420000,"y":15.74},{"x":1569534480000,"y":15.74},{"x":1569534540000,"y":15.75},{"x":1569534600000,"y":15.74},{"x":1569534660000,"y":15.74},{"x":1569534720000,"y":15.74},{"x":1569534780000,"y":15.74},{"x":1569534840000,"y":15.75},{"x":1569534900000,"y":15.74},{"x":1569534960000,"y":15.74},{"x":1569535020000,"y":15.73},{"x":1569535080000,"y":15.73},{"x":1569535140000,"y":15.71},{"x":1569535200000,"y":15.73},{"x":1569535260000,"y":15.73},{"x":1569535320000,"y":15.73},{"x":1569535380000,"y":15.73},{"x":1569535440000,"y":15.76},{"x":1569535500000,"y":15.75},{"x":1569535560000,"y":15.75},{"x":1569535620000,"y":15.75},{"x":1569535680000,"y":15.74},{"x":1569535740000,"y":15.76},{"x":1569535800000,"y":15.75},{"x":1569535860000,"y":15.75},{"x":1569535920000,"y":15.75},{"x":1569535980000,"y":15.75},{"x":1569536040000,"y":15.76},{"x":1569536100000,"y":15.75},{"x":1569536160000,"y":15.75},{"x":1569536220000,"y":15.74},{"x":1569536280000,"y":15.74},{"x":1569536340000,"y":15.75},{"x":1569536400000,"y":15.72},{"x":1569536460000,"y":15.72},{"x":1569536520000,"y":15.72},{"x":1569536580000,"y":15.72},{"x":1569536640000,"y":15.73},{"x":1569536700000,"y":15.74},{"x":1569536760000,"y":15.73},{"x":1569536820000,"y":15.73},{"x":1569536880000,"y":15.73},{"x":1569536940000,"y":15.73},{"x":1569537000000,"y":15.77},{"x":1569537060000,"y":15.75},{"x":1569537120000,"y":15.75},{"x":1569537180000,"y":15.75},{"x":1569537240000,"y":15.75},{"x":1569537300000,"y":15.75},{"x":1569537360000,"y":15.75},{"x":1569537420000,"y":15.75},{"x":1569537480000,"y":15.75},{"x":1569537540000,"y":15.75},{"x":1569537600000,"y":15.76},{"x":1569537660000,"y":15.76},{"x":1569537720000,"y":15.75},{"x":1569537780000,"y":15.75},{"x":1569537840000,"y":15.75},{"x":1569537900000,"y":15.76},{"x":1569537960000,"y":15.73},{"x":1569538020000,"y":15.72},{"x":1569538080000,"y":15.72},{"x":1569538140000,"y":15.72},{"x":1569538200000,"y":15.73},{"x":1569538260000,"y":15.74},{"x":1569538320000,"y":15.74},{"x":1569538380000,"y":15.74},{"x":1569538440000,"y":15.74},{"x":1569538500000,"y":15.74},{"x":1569538560000,"y":15.72},{"x":1569538620000,"y":15.71},{"x":1569538680000,"y":15.71},{"x":1569538740000,"y":15.71},{"x":1569538800000,"y":15.73},{"x":1569538860000,"y":15.74},{"x":1569538920000,"y":15.73},{"x":1569538980000,"y":15.73},{"x":1569539040000,"y":15.73},{"x":1569539100000,"y":15.73},{"x":1569539160000,"y":15.74},{"x":1569539220000,"y":15.72},{"x":1569539280000,"y":15.72},{"x":1569539340000,"y":15.74},{"x":1569539400000,"y":15.73},{"x":1569539460000,"y":15.74},{"x":1569539520000,"y":15.73},{"x":1569539580000,"y":15.73},{"x":1569539640000,"y":15.73},{"x":1569539700000,"y":15.73},{"x":1569539760000,"y":15.75},{"x":1569539820000,"y":15.74},{"x":1569539880000,"y":15.74},{"x":1569539940000,"y":15.74},{"x":1569540000000,"y":15.73},{"x":1569540060000,"y":15.74},{"x":1569540120000,"y":15.74},{"x":1569540180000,"y":15.74},{"x":1569540240000,"y":15.74},{"x":1569540300000,"y":15.73},{"x":1569540360000,"y":15.74},{"x":1569540420000,"y":15.73},{"x":1569540480000,"y":15.73},{"x":1569540540000,"y":15.74},{"x":1569540600000,"y":15.74},{"x":1569540660000,"y":15.75},{"x":1569540720000,"y":15.73},{"x":1569540780000,"y":15.73},{"x":1569540840000,"y":15.73},{"x":1569540900000,"y":15.72},{"x":1569540960000,"y":15.73},{"x":1569541020000,"y":15.76},{"x":1569541080000,"y":15.74},{"x":1569541140000,"y":15.73},{"x":1569541200000,"y":15.73},{"x":1569541260000,"y":15.73},{"x":1569541320000,"y":15.75},{"x":1569541380000,"y":15.74},{"x":1569541440000,"y":15.74},{"x":1569541500000,"y":15.74},{"x":1569541560000,"y":15.74},{"x":1569541620000,"y":15.75},{"x":1569541680000,"y":15.74},{"x":1569541740000,"y":15.74},{"x":1569541800000,"y":15.73},{"x":1569541860000,"y":15.73},{"x":1569541920000,"y":15.73},{"x":1569541980000,"y":15.72},{"x":1569542040000,"y":15.72},{"x":1569542100000,"y":15.73},{"x":1569542160000,"y":15.73},{"x":1569542220000,"y":15.74},{"x":1569542280000,"y":15.72},{"x":1569542340000,"y":15.72},{"x":1569542400000,"y":15.74},{"x":1569542460000,"y":15.74},{"x":1569542520000,"y":15.76},{"x":1569542580000,"y":15.75},{"x":1569542640000,"y":15.75},{"x":1569542700000,"y":15.75},{"x":1569542760000,"y":15.74},{"x":1569542820000,"y":15.95},{"x":1569542880000,"y":15.94},{"x":1569542940000,"y":15.8},{"x":1569543000000,"y":15.81},{"x":1569543060000,"y":15.81},{"x":1569543120000,"y":15.81},{"x":1569543180000,"y":15.75},{"x":1569543240000,"y":15.73},{"x":1569543300000,"y":15.73},{"x":1569543360000,"y":15.73},{"x":1569543420000,"y":15.75},{"x":1569543480000,"y":15.76},{"x":1569543540000,"y":15.75},{"x":1569543600000,"y":15.75},{"x":1569543660000,"y":15.74},{"x":1569543720000,"y":15.75},{"x":1569543780000,"y":15.76},{"x":1569543840000,"y":15.75},{"x":1569543900000,"y":15.73},{"x":1569543960000,"y":15.73},{"x":1569544020000,"y":15.73},{"x":1569544080000,"y":15.67},{"x":1569544140000,"y":15.65},{"x":1569544200000,"y":15.64},{"x":1569544260000,"y":15.64},{"x":1569544320000,"y":15.64},{"x":1569544380000,"y":15.66},{"x":1569544440000,"y":15.65},{"x":1569544500000,"y":15.65},{"x":1569544560000,"y":15.65},{"x":1569544620000,"y":15.65},{"x":1569544680000,"y":15.66},{"x":1569544740000,"y":15.64},{"x":1569544800000,"y":15.63},{"x":1569544860000,"y":15.63},{"x":1569544920000,"y":15.63},{"x":1569544980000,"y":15.65},{"x":1569545040000,"y":15.65},{"x":1569545100000,"y":15.66},{"x":1569545160000,"y":15.66},{"x":1569545220000,"y":15.65},{"x":1569545280000,"y":15.65},{"x":1569545340000,"y":15.66},{"x":1569545400000,"y":15.65},{"x":1569545460000,"y":15.65},{"x":1569545520000,"y":15.65},{"x":1569545580000,"y":15.66},{"x":1569545640000,"y":15.66},{"x":1569545700000,"y":15.65},{"x":1569545760000,"y":15.65},{"x":1569545820000,"y":15.65},{"x":1569545880000,"y":15.65},{"x":1569545940000,"y":15.65},{"x":1569546000000,"y":15.65},{"x":1569546060000,"y":15.65},{"x":1569546120000,"y":15.65},{"x":1569546180000,"y":15.65},{"x":1569546240000,"y":15.66},{"x":1569546300000,"y":15.66},{"x":1569546360000,"y":15.66},{"x":1569546420000,"y":15.65},{"x":1569546480000,"y":15.65},{"x":1569546540000,"y":15.66},{"x":1569546600000,"y":15.65},{"x":1569546660000,"y":15.65},{"x":1569546720000,"y":15.65},{"x":1569546780000,"y":15.64},{"x":1569546840000,"y":15.66},{"x":1569546900000,"y":15.66},{"x":1569546960000,"y":15.66},{"x":1569547020000,"y":15.65},{"x":1569547080000,"y":15.65},{"x":1569547140000,"y":15.66},{"x":1569547200000,"y":15.65},{"x":1569547260000,"y":15.62},{"x":1569547320000,"y":15.62},{"x":1569547380000,"y":15.62},{"x":1569547440000,"y":15.64},{"x":1569547500000,"y":15.64},{"x":1569547560000,"y":15.64},{"x":1569547620000,"y":15.64},{"x":1569547680000,"y":15.64},{"x":1569547740000,"y":15.63},{"x":1569547800000,"y":15.65},{"x":1569547860000,"y":15.63},{"x":1569547920000,"y":15.63},{"x":1569547980000,"y":15.63},{"x":1569548040000,"y":15.63},{"x":1569548100000,"y":15.62},{"x":1569548160000,"y":15.6},{"x":1569548220000,"y":15.6},{"x":1569548280000,"y":15.6},{"x":1569548340000,"y":15.63},{"x":1569548400000,"y":15.64},{"x":1569548460000,"y":15.63},{"x":1569548520000,"y":15.63},{"x":1569548580000,"y":15.63},{"x":1569548640000,"y":15.62},{"x":1569548700000,"y":15.65},{"x":1569548760000,"y":15.63},{"x":1569548820000,"y":15.63},{"x":1569548880000,"y":15.63},{"x":1569548940000,"y":15.63},{"x":1569549000000,"y":15.65},{"x":1569549060000,"y":15.64},{"x":1569549120000,"y":15.63},{"x":1569549180000,"y":15.63},{"x":1569549240000,"y":15.63},{"x":1569549300000,"y":15.63},{"x":1569549360000,"y":15.59},{"x":1569549420000,"y":15.59},{"x":1569549480000,"y":15.6},{"x":1569549540000,"y":15.6},{"x":1569549600000,"y":15.63},{"x":1569549660000,"y":15.63},{"x":1569549720000,"y":15.63},{"x":1569549780000,"y":15.63},{"x":1569549840000,"y":15.63},{"x":1569549900000,"y":15.64},{"x":1569549960000,"y":15.64},{"x":1569550020000,"y":15.64},{"x":1569550080000,"y":15.64},{"x":1569550140000,"y":15.64},{"x":1569550200000,"y":15.64},{"x":1569550260000,"y":15.65},{"x":1569550320000,"y":15.63},{"x":1569550380000,"y":15.63},{"x":1569550440000,"y":15.63},{"x":1569550500000,"y":15.64},{"x":1569550560000,"y":15.65},{"x":1569550620000,"y":15.64},{"x":1569550680000,"y":15.64},{"x":1569550740000,"y":15.64},{"x":1569550800000,"y":15.62},{"x":1569550860000,"y":15.64},{"x":1569550920000,"y":15.64},{"x":1569550980000,"y":15.64},{"x":1569551040000,"y":15.64},{"x":1569551100000,"y":15.64},{"x":1569551160000,"y":15.72},{"x":1569551220000,"y":15.79},{"x":1569551280000,"y":15.79},{"x":1569551340000,"y":15.79},{"x":1569551400000,"y":15.78},{"x":1569551460000,"y":15.79},{"x":1569551520000,"y":15.77},{"x":1569551580000,"y":15.78},{"x":1569551640000,"y":15.78},{"x":1569551700000,"y":15.78},{"x":1569551760000,"y":15.79},{"x":1569551820000,"y":15.78},{"x":1569551880000,"y":15.78},{"x":1569551940000,"y":15.79},{"x":1569552000000,"y":15.78},{"x":1569552060000,"y":15.79},{"x":1569552120000,"y":15.78},{"x":1569552180000,"y":15.78},{"x":1569552240000,"y":15.78},{"x":1569552300000,"y":15.77},{"x":1569552360000,"y":15.77},{"x":1569552420000,"y":15.8},{"x":1569552480000,"y":15.78},{"x":1569552540000,"y":15.78},{"x":1569552600000,"y":15.79},{"x":1569552660000,"y":15.79},{"x":1569552720000,"y":15.79},{"x":1569552780000,"y":15.78},{"x":1569552840000,"y":15.78},{"x":1569552900000,"y":15.79},{"x":1569552960000,"y":15.78},{"x":1569553020000,"y":15.79},{"x":1569553080000,"y":15.78},{"x":1569553140000,"y":15.78},{"x":1569553200000,"y":15.77},{"x":1569553260000,"y":15.77},{"x":1569553320000,"y":15.79},{"x":1569553380000,"y":15.78},{"x":1569553440000,"y":15.78},{"x":1569553500000,"y":15.8},{"x":1569553560000,"y":15.8},{"x":1569553620000,"y":15.81},{"x":1569553680000,"y":15.79},{"x":1569553740000,"y":15.79},{"x":1569553800000,"y":15.79},{"x":1569553860000,"y":15.79},{"x":1569553920000,"y":15.8},{"x":1569553980000,"y":15.8},{"x":1569554040000,"y":15.8},{"x":1569554100000,"y":15.79},{"x":1569554160000,"y":15.79},{"x":1569554220000,"y":15.79},{"x":1569554280000,"y":15.8},{"x":1569554340000,"y":15.79},{"x":1569554400000,"y":15.79},{"x":1569554460000,"y":15.79},{"x":1569554520000,"y":15.79},{"x":1569554580000,"y":15.81},{"x":1569554640000,"y":15.8},{"x":1569554700000,"y":15.79},{"x":1569554760000,"y":15.79},{"x":1569554820000,"y":15.79},{"x":1569554880000,"y":15.8},{"x":1569554940000,"y":15.79},{"x":1569555000000,"y":15.79},{"x":1569555060000,"y":15.79},{"x":1569555120000,"y":15.79},{"x":1569555180000,"y":15.81},{"x":1569555240000,"y":15.79},{"x":1569555300000,"y":15.79},{"x":1569555360000,"y":15.81},{"x":1569555420000,"y":15.82},{"x":1569555480000,"y":15.85},{"x":1569555540000,"y":15.86},{"x":1569555600000,"y":15.87},{"x":1569555660000,"y":15.87},{"x":1569555720000,"y":15.87},{"x":1569555780000,"y":15.88},{"x":1569555840000,"y":15.86},{"x":1569555900000,"y":15.87},{"x":1569555960000,"y":15.87},{"x":1569556020000,"y":15.86},{"x":1569556080000,"y":15.88},{"x":1569556140000,"y":15.86},{"x":1569556200000,"y":15.84},{"x":1569556260000,"y":15.84},{"x":1569556320000,"y":15.84},{"x":1569556380000,"y":15.86},{"x":1569556440000,"y":15.86},{"x":1569556500000,"y":15.84},{"x":1569556560000,"y":15.83},{"x":1569556620000,"y":15.82},{"x":1569556680000,"y":15.82},{"x":1569556740000,"y":15.85},{"x":1569556800000,"y":15.83},{"x":1569556860000,"y":15.83},{"x":1569556920000,"y":15.83},{"x":1569556980000,"y":15.83},{"x":1569557040000,"y":15.87},{"x":1569557100000,"y":15.85},{"x":1569557160000,"y":15.84},{"x":1569557220000,"y":15.84},{"x":1569557280000,"y":15.84},{"x":1569557340000,"y":15.88},{"x":1569557400000,"y":15.85},{"x":1569557460000,"y":15.85},{"x":1569557520000,"y":15.85},{"x":1569557580000,"y":15.85},{"x":1569557640000,"y":15.86},{"x":1569557700000,"y":15.84},{"x":1569557760000,"y":15.84},{"x":1569557820000,"y":15.84},{"x":1569557880000,"y":15.84},{"x":1569557940000,"y":15.86},{"x":1569558000000,"y":15.85},{"x":1569558060000,"y":15.85},{"x":1569558120000,"y":15.85},{"x":1569558180000,"y":15.85},{"x":1569558240000,"y":15.86},{"x":1569558300000,"y":15.86},{"x":1569558360000,"y":15.86},{"x":1569558420000,"y":15.86},{"x":1569558480000,"y":15.86},{"x":1569558540000,"y":15.87},{"x":1569558600000,"y":15.86},{"x":1569558660000,"y":15.86},{"x":1569558720000,"y":15.86},{"x":1569558780000,"y":15.86},{"x":1569558840000,"y":15.87},{"x":1569558900000,"y":15.84},{"x":1569558960000,"y":15.84},{"x":1569559020000,"y":15.84},{"x":1569559080000,"y":15.84},{"x":1569559140000,"y":15.87},{"x":1569559200000,"y":15.86},{"x":1569559260000,"y":15.86},{"x":1569559320000,"y":15.86},{"x":1569559380000,"y":15.86},{"x":1569559440000,"y":15.86},{"x":1569559500000,"y":15.87},{"x":1569559560000,"y":15.86},{"x":1569559620000,"y":15.86},{"x":1569559680000,"y":15.86},{"x":1569559740000,"y":15.86},{"x":1569559800000,"y":15.88},{"x":1569559860000,"y":15.85},{"x":1569559920000,"y":15.86},{"x":1569559980000,"y":15.86},{"x":1569560040000,"y":15.86},{"x":1569560100000,"y":15.87},{"x":1569560160000,"y":15.86},{"x":1569560220000,"y":15.85},{"x":1569560280000,"y":15.85},{"x":1569560340000,"y":15.85},{"x":1569560400000,"y":15.86},{"x":1569560460000,"y":15.86},{"x":1569560520000,"y":15.86},{"x":1569560580000,"y":15.86},{"x":1569560640000,"y":15.85},{"x":1569560700000,"y":15.87},{"x":1569560760000,"y":15.86},{"x":1569560820000,"y":15.86},{"x":1569560880000,"y":15.86},{"x":1569560940000,"y":15.87},{"x":1569561000000,"y":15.88},{"x":1569561060000,"y":15.86},{"x":1569561120000,"y":15.86},{"x":1569561180000,"y":15.86},{"x":1569561240000,"y":15.86},{"x":1569561300000,"y":15.87},{"x":1569561360000,"y":15.87},{"x":1569561420000,"y":15.87},{"x":1569561480000,"y":15.87},{"x":1569561540000,"y":15.87},{"x":1569561600000,"y":15.87},{"x":1569561660000,"y":15.87},{"x":1569561720000,"y":15.86},{"x":1569561780000,"y":15.86},{"x":1569561840000,"y":15.86},{"x":1569561900000,"y":15.85},{"x":1569561960000,"y":15.86},{"x":1569562020000,"y":15.85},{"x":1569562080000,"y":15.85},{"x":1569562140000,"y":15.85},{"x":1569562200000,"y":15.86},{"x":1569562260000,"y":15.88},{"x":1569562320000,"y":15.85},{"x":1569562380000,"y":15.85},{"x":1569562440000,"y":15.85},{"x":1569562500000,"y":15.87},{"x":1569562560000,"y":15.88},{"x":1569562620000,"y":15.86},{"x":1569562680000,"y":15.86},{"x":1569562740000,"y":15.86},{"x":1569562800000,"y":15.87},{"x":1569562860000,"y":15.88},{"x":1569562920000,"y":15.88},{"x":1569562980000,"y":15.88},{"x":1569563040000,"y":15.88},{"x":1569563100000,"y":15.87},{"x":1569563160000,"y":15.87},{"x":1569563220000,"y":15.83},{"x":1569563280000,"y":15.83},{"x":1569563340000,"y":15.83},{"x":1569563400000,"y":15.85},{"x":1569563460000,"y":15.87},{"x":1569563520000,"y":15.86},{"x":1569563580000,"y":15.86},{"x":1569563640000,"y":15.86},{"x":1569563700000,"y":15.86},{"x":1569563760000,"y":15.87},{"x":1569563820000,"y":15.87},{"x":1569563880000,"y":15.87},{"x":1569563940000,"y":15.87},{"x":1569564000000,"y":15.84},{"x":1569564060000,"y":15.84},{"x":1569564120000,"y":15.87},{"x":1569564180000,"y":15.86},{"x":1569564240000,"y":15.86},{"x":1569564300000,"y":15.86},{"x":1569564360000,"y":15.86},{"x":1569564420000,"y":15.89},{"x":1569564480000,"y":15.88},{"x":1569564540000,"y":15.87},{"x":1569564600000,"y":15.87},{"x":1569564660000,"y":15.87},{"x":1569564720000,"y":16.18},{"x":1569564780000,"y":15.93},{"x":1569564840000,"y":15.94},{"x":1569564900000,"y":15.94},{"x":1569564960000,"y":15.94},{"x":1569565020000,"y":15.92},{"x":1569565080000,"y":15.87},{"x":1569565140000,"y":15.87},{"x":1569565200000,"y":15.87},{"x":1569565260000,"y":15.87},{"x":1569565320000,"y":15.89},{"x":1569565380000,"y":15.87},{"x":1569565440000,"y":15.87},{"x":1569565500000,"y":15.87},{"x":1569565560000,"y":15.87},{"x":1569565620000,"y":15.89},{"x":1569565680000,"y":15.89},{"x":1569565740000,"y":15.88},{"x":1569565800000,"y":15.85},{"x":1569565860000,"y":15.85},{"x":1569565920000,"y":15.87},{"x":1569565980000,"y":15.85},{"x":1569566040000,"y":15.85},{"x":1569566100000,"y":15.84},{"x":1569566160000,"y":15.84},{"x":1569566220000,"y":15.84},{"x":1569566280000,"y":15.86},{"x":1569566340000,"y":15.86},{"x":1569566400000,"y":15.83},{"x":1569566460000,"y":15.83},{"x":1569566520000,"y":15.83},{"x":1569566580000,"y":15.87},{"x":1569566640000,"y":15.86},{"x":1569566700000,"y":15.85},{"x":1569566760000,"y":15.85},{"x":1569566820000,"y":15.85},{"x":1569566880000,"y":15.87},{"x":1569566940000,"y":15.86},{"x":1569567000000,"y":15.86},{"x":1569567060000,"y":15.86},{"x":1569567120000,"y":15.86},{"x":1569567180000,"y":15.87},{"x":1569567240000,"y":15.85},{"x":1569567300000,"y":15.85},{"x":1569567360000,"y":15.85},{"x":1569567420000,"y":15.85},{"x":1569567480000,"y":15.87},{"x":1569567540000,"y":15.87},{"x":1569567600000,"y":15.85},{"x":1569567660000,"y":15.84},{"x":1569567720000,"y":15.84},{"x":1569567780000,"y":15.86},{"x":1569567840000,"y":15.86},{"x":1569567900000,"y":15.86},{"x":1569567960000,"y":15.86},{"x":1569568020000,"y":15.86},{"x":1569568080000,"y":15.87},{"x":1569568140000,"y":15.86},{"x":1569568200000,"y":15.86},{"x":1569568260000,"y":15.86},{"x":1569568320000,"y":15.86},{"x":1569568380000,"y":15.88},{"x":1569568440000,"y":15.86},{"x":1569568500000,"y":15.85},{"x":1569568560000,"y":15.85},{"x":1569568620000,"y":15.85},{"x":1569568680000,"y":15.85},{"x":1569568740000,"y":15.88},{"x":1569568800000,"y":15.86},{"x":1569568860000,"y":15.86},{"x":1569568920000,"y":15.86},{"x":1569568980000,"y":15.86},{"x":1569569040000,"y":15.88},{"x":1569569100000,"y":15.82},{"x":1569569160000,"y":15.82},{"x":1569569220000,"y":15.82},{"x":1569569280000,"y":15.82},{"x":1569569340000,"y":15.86},{"x":1569569400000,"y":15.86},{"x":1569569460000,"y":15.86},{"x":1569569520000,"y":15.86},{"x":1569569580000,"y":15.86},{"x":1569569640000,"y":15.88},{"x":1569569700000,"y":15.87},{"x":1569569760000,"y":15.87},{"x":1569569820000,"y":15.86},{"x":1569569880000,"y":15.86},{"x":1569569940000,"y":15.88},{"x":1569570000000,"y":15.87},{"x":1569570060000,"y":15.87},{"x":1569570120000,"y":15.87},{"x":1569570180000,"y":15.87},{"x":1569570240000,"y":15.88},{"x":1569570300000,"y":15.87},{"x":1569570360000,"y":15.87},{"x":1569570420000,"y":15.87},{"x":1569570480000,"y":15.87},{"x":1569570540000,"y":15.89},{"x":1569570600000,"y":15.87},{"x":1569570660000,"y":15.87},{"x":1569570720000,"y":15.86},{"x":1569570780000,"y":15.86},{"x":1569570840000,"y":15.88},{"x":1569570900000,"y":15.86},{"x":1569570960000,"y":15.86},{"x":1569571020000,"y":15.86},{"x":1569571080000,"y":15.86},{"x":1569571140000,"y":15.86},{"x":1569571200000,"y":15.88},{"x":1569571260000,"y":15.87},{"x":1569571320000,"y":15.87},{"x":1569571380000,"y":15.87},{"x":1569571440000,"y":15.87},{"x":1569571500000,"y":15.88},{"x":1569571560000,"y":15.87},{"x":1569571620000,"y":15.86},{"x":1569571680000,"y":15.87},{"x":1569571740000,"y":15.87},{"x":1569571800000,"y":15.88},{"x":1569571860000,"y":15.87},{"x":1569571920000,"y":15.87},{"x":1569571980000,"y":15.87},{"x":1569572040000,"y":15.87},{"x":1569572100000,"y":15.88},{"x":1569572160000,"y":15.87},{"x":1569572220000,"y":15.87},{"x":1569572280000,"y":15.87},{"x":1569572340000,"y":15.87},{"x":1569572400000,"y":15.88},{"x":1569572460000,"y":15.87},{"x":1569572520000,"y":15.87},{"x":1569572580000,"y":15.87},{"x":1569572640000,"y":15.87},{"x":1569572700000,"y":15.88},{"x":1569572760000,"y":15.88},{"x":1569572820000,"y":15.88},{"x":1569572880000,"y":15.88},{"x":1569572940000,"y":15.88},{"x":1569573000000,"y":15.9},{"x":1569573060000,"y":15.88},{"x":1569573120000,"y":15.88},{"x":1569573180000,"y":15.88},{"x":1569573240000,"y":15.88},{"x":1569573300000,"y":15.88},{"x":1569573360000,"y":15.87},{"x":1569573420000,"y":15.87},{"x":1569573480000,"y":15.87},{"x":1569573540000,"y":15.87},{"x":1569573600000,"y":15.89},{"x":1569573660000,"y":15.88},{"x":1569573720000,"y":15.88},{"x":1569573780000,"y":15.88},{"x":1569573840000,"y":15.88},{"x":1569573900000,"y":15.88},{"x":1569573960000,"y":15.88},{"x":1569574020000,"y":15.87},{"x":1569574080000,"y":15.87},{"x":1569574140000,"y":15.87},{"x":1569574200000,"y":15.88},{"x":1569574260000,"y":15.9},{"x":1569574320000,"y":15.88},{"x":1569574380000,"y":15.88},{"x":1569574440000,"y":15.88},{"x":1569574500000,"y":15.89},{"x":1569574560000,"y":15.88},{"x":1569574620000,"y":15.85},{"x":1569574680000,"y":15.85},{"x":1569574740000,"y":15.85},{"x":1569574800000,"y":15.86},{"x":1569574860000,"y":15.87},{"x":1569574920000,"y":15.84},{"x":1569574980000,"y":15.84},{"x":1569575040000,"y":15.84},{"x":1569575100000,"y":15.86},{"x":1569575160000,"y":15.87},{"x":1569575220000,"y":15.86},{"x":1569575280000,"y":15.86},{"x":1569575340000,"y":15.86},{"x":1569575400000,"y":15.86},{"x":1569575460000,"y":15.88},{"x":1569575520000,"y":15.87},{"x":1569575580000,"y":15.87},{"x":1569575640000,"y":15.87},{"x":1569575700000,"y":15.86},{"x":1569575760000,"y":15.87},{"x":1569575820000,"y":15.85},{"x":1569575880000,"y":15.85},{"x":1569575940000,"y":15.85},{"x":1569576000000,"y":15.87},{"x":1569576060000,"y":15.88},{"x":1569576120000,"y":15.87},{"x":1569576180000,"y":15.86},{"x":1569576240000,"y":15.86},{"x":1569576300000,"y":15.87},{"x":1569576360000,"y":15.87},{"x":1569576420000,"y":15.88},{"x":1569576480000,"y":15.87},{"x":1569576540000,"y":15.86},{"x":1569576600000,"y":15.83},{"x":1569576660000,"y":15.83},{"x":1569576720000,"y":15.87},{"x":1569576780000,"y":15.87},{"x":1569576840000,"y":15.87},{"x":1569576900000,"y":15.86},{"x":1569576960000,"y":15.86},{"x":1569577020000,"y":15.87},{"x":1569577080000,"y":15.87},{"x":1569577140000,"y":15.87},{"x":1569577200000,"y":15.87},{"x":1569577260000,"y":15.87},{"x":1569577320000,"y":15.88},{"x":1569577380000,"y":15.87},{"x":1569577440000,"y":15.87},{"x":1569577500000,"y":15.87},{"x":1569577560000,"y":15.87},{"x":1569577620000,"y":15.88},{"x":1569577680000,"y":15.87},{"x":1569577740000,"y":15.87},{"x":1569577800000,"y":15.87},{"x":1569577860000,"y":15.86},{"x":1569577920000,"y":15.88},{"x":1569577980000,"y":15.87},{"x":1569578040000,"y":15.87},{"x":1569578100000,"y":15.87},{"x":1569578160000,"y":15.87},{"x":1569578220000,"y":15.87},{"x":1569578280000,"y":15.87},{"x":1569578340000,"y":15.86},{"x":1569578400000,"y":15.87},{"x":1569578460000,"y":15.87},{"x":1569578520000,"y":15.87},{"x":1569578580000,"y":15.86},{"x":1569578640000,"y":15.84},{"x":1569578700000,"y":15.87},{"x":1569578760000,"y":15.87},{"x":1569578820000,"y":15.86},{"x":1569578880000,"y":15.89},{"x":1569578940000,"y":15.87},{"x":1569579000000,"y":15.88},{"x":1569579060000,"y":15.88},{"x":1569579120000,"y":15.88},{"x":1569579180000,"y":15.89},{"x":1569579240000,"y":15.87},{"x":1569579300000,"y":15.87},{"x":1569579360000,"y":15.87},{"x":1569579420000,"y":15.87},{"x":1569579480000,"y":15.89},{"x":1569579540000,"y":15.88},{"x":1569579600000,"y":15.87},{"x":1569579660000,"y":15.87},{"x":1569579720000,"y":15.87},{"x":1569579780000,"y":15.88},{"x":1569579840000,"y":15.87},{"x":1569579900000,"y":15.86},{"x":1569579960000,"y":15.86},{"x":1569580020000,"y":15.86},{"x":1569580080000,"y":15.88},{"x":1569580140000,"y":15.89},{"x":1569580200000,"y":15.87},{"x":1569580260000,"y":15.87},{"x":1569580320000,"y":15.87},{"x":1569580380000,"y":15.89},{"x":1569580440000,"y":15.88},{"x":1569580500000,"y":15.88},{"x":1569580560000,"y":15.88},{"x":1569580620000,"y":15.88},{"x":1569580680000,"y":15.88},{"x":1569580740000,"y":15.89},{"x":1569580800000,"y":15.88},{"x":1569580860000,"y":15.88},{"x":1569580920000,"y":15.88},{"x":1569580980000,"y":15.88},{"x":1569581040000,"y":15.88},{"x":1569581100000,"y":15.87},{"x":1569581160000,"y":15.87},{"x":1569581220000,"y":15.87},{"x":1569581280000,"y":15.87},{"x":1569581340000,"y":15.87},{"x":1569581400000,"y":15.87},{"x":1569581460000,"y":15.86},{"x":1569581520000,"y":15.86},{"x":1569581580000,"y":15.87},{"x":1569581640000,"y":15.89},{"x":1569581700000,"y":15.87},{"x":1569581760000,"y":15.87},{"x":1569581820000,"y":15.87},{"x":1569581880000,"y":15.86},{"x":1569581940000,"y":15.88},{"x":1569582000000,"y":15.86},{"x":1569582060000,"y":15.86},{"x":1569582120000,"y":15.86},{"x":1569582180000,"y":15.86},{"x":1569582240000,"y":15.87},{"x":1569582300000,"y":15.89},{"x":1569582360000,"y":15.88},{"x":1569582420000,"y":15.89},{"x":1569582480000,"y":15.88},{"x":1569582540000,"y":15.89},{"x":1569582600000,"y":15.88},{"x":1569582660000,"y":15.88},{"x":1569582720000,"y":15.88},{"x":1569582780000,"y":15.88},{"x":1569582840000,"y":15.89},{"x":1569582900000,"y":15.88},{"x":1569582960000,"y":15.88},{"x":1569583020000,"y":15.89},{"x":1569583080000,"y":15.88},{"x":1569583140000,"y":15.89},{"x":1569583200000,"y":15.92},{"x":1569583260000,"y":16.37},{"x":1569583320000,"y":15.97},{"x":1569583380000,"y":15.97},{"x":1569583440000,"y":15.97},{"x":1569583500000,"y":16.02},{"x":1569583560000,"y":15.92},{"x":1569583620000,"y":15.9},{"x":1569583680000,"y":15.9},{"x":1569583740000,"y":15.9},{"x":1569583800000,"y":15.91},{"x":1569583860000,"y":15.91},{"x":1569583920000,"y":15.91},{"x":1569583980000,"y":15.91},{"x":1569584040000,"y":15.91},{"x":1569584100000,"y":15.91},{"x":1569584160000,"y":15.9},{"x":1569584220000,"y":15.88},{"x":1569584280000,"y":15.88},{"x":1569584340000,"y":15.88},{"x":1569584400000,"y":15.9},{"x":1569584460000,"y":15.88},{"x":1569584520000,"y":15.88},{"x":1569584580000,"y":15.88},{"x":1569584640000,"y":15.88},{"x":1569584700000,"y":15.88},{"x":1569584760000,"y":15.88},{"x":1569584820000,"y":15.88},{"x":1569584880000,"y":15.88},{"x":1569584940000,"y":15.88},{"x":1569585000000,"y":15.87},{"x":1569585060000,"y":15.88},{"x":1569585120000,"y":15.88},{"x":1569585180000,"y":15.88},{"x":1569585240000,"y":15.88},{"x":1569585300000,"y":15.89},{"x":1569585360000,"y":15.88},{"x":1569585420000,"y":15.88},{"x":1569585480000,"y":15.88},{"x":1569585540000,"y":15.88},{"x":1569585600000,"y":15.89},{"x":1569585660000,"y":15.88},{"x":1569585720000,"y":15.86},{"x":1569585780000,"y":15.86},{"x":1569585840000,"y":15.86},{"x":1569585900000,"y":15.89},{"x":1569585960000,"y":15.89},{"x":1569586020000,"y":15.87},{"x":1569586080000,"y":15.87},{"x":1569586140000,"y":15.89},{"x":1569586200000,"y":15.89},{"x":1569586260000,"y":15.9},{"x":1569586320000,"y":15.89},{"x":1569586380000,"y":15.89},{"x":1569586440000,"y":15.89},{"x":1569586500000,"y":15.87},{"x":1569586560000,"y":16.25},{"x":1569586620000,"y":15.92},{"x":1569586680000,"y":15.92},{"x":1569586740000,"y":15.92},{"x":1569586800000,"y":15.93},{"x":1569586860000,"y":15.94},{"x":1569586920000,"y":15.89},{"x":1569586980000,"y":15.89},{"x":1569587040000,"y":15.89},{"x":1569587100000,"y":15.88},{"x":1569587160000,"y":15.89},{"x":1569587220000,"y":15.89},{"x":1569587280000,"y":15.89},{"x":1569587340000,"y":15.89},{"x":1569587400000,"y":15.87},{"x":1569587460000,"y":15.89},{"x":1569587520000,"y":15.89},{"x":1569587580000,"y":15.89},{"x":1569587640000,"y":15.89},{"x":1569587700000,"y":15.89},{"x":1569587760000,"y":15.9},{"x":1569587820000,"y":15.89},{"x":1569587880000,"y":15.89},{"x":1569587940000,"y":15.9},{"x":1569588000000,"y":15.89},{"x":1569588060000,"y":15.89},{"x":1569588120000,"y":15.91},{"x":1569588180000,"y":15.89},{"x":1569588240000,"y":15.89},{"x":1569588300000,"y":15.89},{"x":1569588360000,"y":15.89},{"x":1569588420000,"y":15.9},{"x":1569588480000,"y":15.89},{"x":1569588540000,"y":15.89},{"x":1569588600000,"y":15.9},{"x":1569588660000,"y":15.9},{"x":1569588720000,"y":15.91},{"x":1569588780000,"y":15.9},{"x":1569588840000,"y":15.9},{"x":1569588900000,"y":15.89},{"x":1569588960000,"y":15.89},{"x":1569589020000,"y":15.9},{"x":1569589080000,"y":15.88},{"x":1569589140000,"y":15.88},{"x":1569589200000,"y":15.9},{"x":1569589260000,"y":15.9},{"x":1569589320000,"y":15.91},{"x":1569589380000,"y":15.9},{"x":1569589440000,"y":15.9},{"x":1569589500000,"y":15.9},{"x":1569589560000,"y":15.89},{"x":1569589620000,"y":15.9},{"x":1569589680000,"y":15.89},{"x":1569589740000,"y":15.9},{"x":1569589800000,"y":15.9},{"x":1569589860000,"y":15.9},{"x":1569589920000,"y":15.91},{"x":1569589980000,"y":15.89},{"x":1569590040000,"y":15.89},{"x":1569590100000,"y":15.89},{"x":1569590160000,"y":15.89},{"x":1569590220000,"y":15.89},{"x":1569590280000,"y":15.91},{"x":1569590340000,"y":15.9},{"x":1569590400000,"y":15.89},{"x":1569590460000,"y":15.89},{"x":1569590520000,"y":15.89},{"x":1569590580000,"y":15.91},{"x":1569590640000,"y":15.9},{"x":1569590700000,"y":15.89},{"x":1569590760000,"y":15.89},{"x":1569590820000,"y":15.89},{"x":1569590880000,"y":15.91},{"x":1569590940000,"y":15.9},{"x":1569591000000,"y":15.86},{"x":1569591060000,"y":15.85},{"x":1569591120000,"y":15.85},{"x":1569591180000,"y":15.89},{"x":1569591240000,"y":15.9},{"x":1569591300000,"y":15.89},{"x":1569591360000,"y":15.89},{"x":1569591420000,"y":15.9},{"x":1569591480000,"y":15.91},{"x":1569591540000,"y":15.89},{"x":1569591600000,"y":15.88},{"x":1569591660000,"y":15.88},{"x":1569591720000,"y":15.88},{"x":1569591780000,"y":15.89},{"x":1569591840000,"y":15.9},{"x":1569591900000,"y":15.86},{"x":1569591960000,"y":15.86},{"x":1569592020000,"y":15.86},{"x":1569592080000,"y":15.88},{"x":1569592140000,"y":15.89},{"x":1569592200000,"y":15.9},{"x":1569592260000,"y":15.9},{"x":1569592320000,"y":15.9},{"x":1569592380000,"y":15.9},{"x":1569592440000,"y":15.91},{"x":1569592500000,"y":15.9},{"x":1569592560000,"y":15.9},{"x":1569592620000,"y":15.89},{"x":1569592680000,"y":15.89},{"x":1569592740000,"y":15.91},{"x":1569592800000,"y":15.91},{"x":1569592860000,"y":15.91},{"x":1569592920000,"y":15.91},{"x":1569592980000,"y":15.91},{"x":1569593040000,"y":15.92},{"x":1569593100000,"y":15.91},{"x":1569593160000,"y":15.91},{"x":1569593220000,"y":15.91},{"x":1569593280000,"y":15.91},{"x":1569593340000,"y":15.92},{"x":1569593400000,"y":15.88},{"x":1569593460000,"y":15.88},{"x":1569593520000,"y":15.87},{"x":1569593580000,"y":16.07},{"x":1569593640000,"y":15.96},{"x":1569593700000,"y":15.96},{"x":1569593760000,"y":15.96},{"x":1569593820000,"y":15.95},{"x":1569593880000,"y":15.91},{"x":1569593940000,"y":15.9},{"x":1569594000000,"y":15.88},{"x":1569594060000,"y":15.88},{"x":1569594120000,"y":15.89},{"x":1569594180000,"y":15.88},{"x":1569594240000,"y":15.89},{"x":1569594300000,"y":15.88},{"x":1569594360000,"y":15.89},{"x":1569594420000,"y":15.88},{"x":1569594480000,"y":15.88},{"x":1569594540000,"y":15.9},{"x":1569594600000,"y":15.89},{"x":1569594660000,"y":15.88},{"x":1569594720000,"y":15.89},{"x":1569594780000,"y":15.89},{"x":1569594840000,"y":15.88},{"x":1569594900000,"y":15.9},{"x":1569594960000,"y":15.89},{"x":1569595020000,"y":15.89},{"x":1569595080000,"y":15.89},{"x":1569595140000,"y":15.88},{"x":1569595200000,"y":15.9},{"x":1569595260000,"y":15.88},{"x":1569595320000,"y":15.88},{"x":1569595380000,"y":15.89},{"x":1569595440000,"y":15.88},{"x":1569595500000,"y":15.9},{"x":1569595560000,"y":15.89},{"x":1569595620000,"y":15.89},{"x":1569595680000,"y":15.89},{"x":1569595740000,"y":15.89},{"x":1569595800000,"y":15.9},{"x":1569595860000,"y":15.88},{"x":1569595920000,"y":15.89},{"x":1569595980000,"y":15.89},{"x":1569596040000,"y":15.88},{"x":1569596100000,"y":15.88},{"x":1569596160000,"y":15.86},{"x":1569596220000,"y":15.89},{"x":1569596280000,"y":15.91},{"x":1569596340000,"y":15.91},{"x":1569596400000,"y":15.78},{"x":1569596460000,"y":15.67},{"x":1569596520000,"y":15.68},{"x":1569596580000,"y":15.68},{"x":1569596640000,"y":15.68},{"x":1569596700000,"y":15.69},{"x":1569596760000,"y":15.68},{"x":1569596820000,"y":15.68},{"x":1569596880000,"y":15.68},{"x":1569596940000,"y":15.68},{"x":1569597000000,"y":15.69},{"x":1569597060000,"y":15.67},{"x":1569597120000,"y":15.67},{"x":1569597180000,"y":15.67},{"x":1569597240000,"y":15.68},{"x":1569597300000,"y":15.64},{"x":1569597360000,"y":15.67},{"x":1569597420000,"y":15.66},{"x":1569597480000,"y":15.66},{"x":1569597540000,"y":15.66},{"x":1569597600000,"y":15.67},{"x":1569597660000,"y":15.69},{"x":1569597720000,"y":15.68},{"x":1569597780000,"y":15.68},{"x":1569597840000,"y":15.67},{"x":1569597900000,"y":15.67},{"x":1569597960000,"y":15.68},{"x":1569598020000,"y":15.68},{"x":1569598080000,"y":15.68},{"x":1569598140000,"y":15.68},{"x":1569598200000,"y":15.68},{"x":1569598260000,"y":15.7},{"x":1569598320000,"y":15.68},{"x":1569598380000,"y":15.68},{"x":1569598440000,"y":15.68},{"x":1569598500000,"y":15.68},{"x":1569598560000,"y":15.69},{"x":1569598620000,"y":15.68},{"x":1569598680000,"y":15.68},{"x":1569598740000,"y":15.67},{"x":1569598800000,"y":15.68},{"x":1569598860000,"y":15.69},{"x":1569598920000,"y":15.69},{"x":1569598980000,"y":15.68},{"x":1569599040000,"y":15.68},{"x":1569599100000,"y":15.68},{"x":1569599160000,"y":15.69},{"x":1569599220000,"y":15.68},{"x":1569599280000,"y":15.68},{"x":1569599340000,"y":15.68},{"x":1569599400000,"y":15.68},{"x":1569599460000,"y":15.7},{"x":1569599520000,"y":15.66},{"x":1569599580000,"y":15.66},{"x":1569599640000,"y":15.66},{"x":1569599700000,"y":15.68},{"x":1569599760000,"y":15.68},{"x":1569599820000,"y":15.68},{"x":1569599880000,"y":15.66},{"x":1569599940000,"y":15.66},{"x":1569600000000,"y":15.68},{"x":1569600060000,"y":15.68},{"x":1569600120000,"y":15.69},{"x":1569600180000,"y":15.68},{"x":1569600240000,"y":15.68},{"x":1569600300000,"y":15.65},{"x":1569600360000,"y":15.65},{"x":1569600420000,"y":15.69},{"x":1569600480000,"y":15.68},{"x":1569600540000,"y":15.68},{"x":1569600600000,"y":15.69},{"x":1569600660000,"y":15.69},{"x":1569600720000,"y":15.68},{"x":1569600780000,"y":15.65},{"x":1569600840000,"y":15.66},{"x":1569600900000,"y":15.68},{"x":1569600960000,"y":15.68},{"x":1569601020000,"y":15.7},{"x":1569601080000,"y":15.68},{"x":1569601140000,"y":15.68},{"x":1569601200000,"y":15.68},{"x":1569601260000,"y":15.68},{"x":1569601320000,"y":15.69},{"x":1569601380000,"y":15.69},{"x":1569601440000,"y":15.69},{"x":1569601500000,"y":15.69},{"x":1569601560000,"y":15.69},{"x":1569601620000,"y":15.7},{"x":1569601680000,"y":15.7},{"x":1569601740000,"y":15.7},{"x":1569601800000,"y":15.69},{"x":1569601860000,"y":15.69},{"x":1569601920000,"y":15.7},{"x":1569601980000,"y":15.7},{"x":1569602040000,"y":15.7},{"x":1569602100000,"y":15.68},{"x":1569602160000,"y":15.68},{"x":1569602220000,"y":15.68},{"x":1569602280000,"y":15.69},{"x":1569602340000,"y":15.69},{"x":1569602400000,"y":15.7},{"x":1569602460000,"y":15.7},{"x":1569602520000,"y":15.7},{"x":1569602580000,"y":15.71},{"x":1569602640000,"y":15.69},{"x":1569602700000,"y":15.69},{"x":1569602760000,"y":15.67},{"x":1569602820000,"y":15.67},{"x":1569602880000,"y":15.69},{"x":1569602940000,"y":15.68},{"x":1569603000000,"y":15.68},{"x":1569603060000,"y":15.68},{"x":1569603120000,"y":15.68},{"x":1569603180000,"y":15.68},{"x":1569603240000,"y":15.67},{"x":1569603300000,"y":15.67},{"x":1569603360000,"y":15.67},{"x":1569603420000,"y":15.67},{"x":1569603480000,"y":15.69},{"x":1569603540000,"y":15.67},{"x":1569603600000,"y":15.68},{"x":1569603660000,"y":15.68},{"x":1569603720000,"y":15.68},{"x":1569603780000,"y":15.69},{"x":1569603840000,"y":15.67},{"x":1569603900000,"y":15.67},{"x":1569603960000,"y":15.67},{"x":1569604020000,"y":15.67},{"x":1569604080000,"y":15.68},{"x":1569604140000,"y":15.67},{"x":1569604200000,"y":15.68},{"x":1569604260000,"y":15.68},{"x":1569604320000,"y":15.68},{"x":1569604380000,"y":15.69},{"x":1569604440000,"y":15.69},{"x":1569604500000,"y":15.7},{"x":1569604560000,"y":15.7},{"x":1569604620000,"y":15.69},{"x":1569604680000,"y":15.69},{"x":1569604740000,"y":15.7},{"x":1569604800000,"y":15.69},{"x":1569604860000,"y":15.69},{"x":1569604920000,"y":15.69},{"x":1569604980000,"y":15.69},{"x":1569605040000,"y":15.71},{"x":1569605100000,"y":15.7},{"x":1569605160000,"y":15.7},{"x":1569605220000,"y":15.7},{"x":1569605280000,"y":15.7},{"x":1569605340000,"y":15.7},{"x":1569605400000,"y":15.69},{"x":1569605460000,"y":15.69},{"x":1569605520000,"y":15.69},{"x":1569605580000,"y":15.69},{"x":1569605640000,"y":15.7},{"x":1569605700000,"y":15.7},{"x":1569605760000,"y":15.7},{"x":1569605820000,"y":15.7},{"x":1569605880000,"y":15.7},{"x":1569605940000,"y":15.72},{"x":1569606000000,"y":15.7},{"x":1569606060000,"y":15.69},{"x":1569606120000,"y":15.69},{"x":1569606180000,"y":15.69},{"x":1569606240000,"y":15.71},{"x":1569606300000,"y":15.69},{"x":1569606360000,"y":15.69},{"x":1569606420000,"y":15.69},{"x":1569606480000,"y":15.69},{"x":1569606540000,"y":15.7},{"x":1569606600000,"y":15.7},{"x":1569606660000,"y":15.7},{"x":1569606720000,"y":15.7},{"x":1569606780000,"y":15.7},{"x":1569606840000,"y":15.71},{"x":1569606900000,"y":15.7},{"x":1569606960000,"y":15.7},{"x":1569607020000,"y":15.69},{"x":1569607080000,"y":15.7},{"x":1569607140000,"y":15.7},{"x":1569607200000,"y":15.71},{"x":1569607260000,"y":15.7},{"x":1569607320000,"y":15.7},{"x":1569607380000,"y":15.7},{"x":1569607440000,"y":15.7},{"x":1569607500000,"y":15.72},{"x":1569607560000,"y":15.71},{"x":1569607620000,"y":15.71},{"x":1569607680000,"y":15.71},{"x":1569607740000,"y":15.7},{"x":1569607800000,"y":15.71},{"x":1569607860000,"y":15.7},{"x":1569607920000,"y":15.7},{"x":1569607980000,"y":15.7},{"x":1569608040000,"y":15.7},{"x":1569608100000,"y":15.71},{"x":1569608160000,"y":15.7},{"x":1569608220000,"y":15.7},{"x":1569608280000,"y":15.7},{"x":1569608340000,"y":15.7},{"x":1569608400000,"y":15.97},{"x":1569608460000,"y":15.76},{"x":1569608520000,"y":15.76},{"x":1569608580000,"y":15.76},{"x":1569608640000,"y":15.76},{"x":1569608700000,"y":15.76},{"x":1569608760000,"y":15.7},{"x":1569608820000,"y":15.7},{"x":1569608880000,"y":15.7},{"x":1569608940000,"y":15.7},{"x":1569609000000,"y":15.69},{"x":1569609060000,"y":15.7},{"x":1569609120000,"y":15.7},{"x":1569609180000,"y":15.7},{"x":1569609240000,"y":15.7},{"x":1569609300000,"y":15.72},{"x":1569609360000,"y":15.7},{"x":1569609420000,"y":15.7},{"x":1569609480000,"y":15.7},{"x":1569609540000,"y":15.71},{"x":1569609600000,"y":15.71},{"x":1569609660000,"y":15.73},{"x":1569609720000,"y":15.71},{"x":1569609780000,"y":15.71},{"x":1569609840000,"y":15.71},{"x":1569609900000,"y":15.71},{"x":1569609960000,"y":15.71},{"x":1569610020000,"y":15.7},{"x":1569610080000,"y":15.7},{"x":1569610140000,"y":15.7},{"x":1569610200000,"y":15.7},{"x":1569610260000,"y":15.72},{"x":1569610320000,"y":15.72},{"x":1569610380000,"y":15.71},{"x":1569610440000,"y":15.71},{"x":1569610500000,"y":15.7},{"x":1569610560000,"y":15.71},{"x":1569610620000,"y":15.69},{"x":1569610680000,"y":15.68},{"x":1569610740000,"y":15.68},{"x":1569610800000,"y":15.7},{"x":1569610860000,"y":15.71},{"x":1569610920000,"y":15.68},{"x":1569610980000,"y":15.68},{"x":1569611040000,"y":15.68},{"x":1569611100000,"y":15.68},{"x":1569611160000,"y":15.7},{"x":1569611220000,"y":15.71},{"x":1569611280000,"y":15.71},{"x":1569611340000,"y":15.71},{"x":1569611400000,"y":15.71},{"x":1569611460000,"y":15.72},{"x":1569611520000,"y":15.71},{"x":1569611580000,"y":15.71},{"x":1569611640000,"y":15.71},{"x":1569611700000,"y":15.71},{"x":1569611760000,"y":15.72},{"x":1569611820000,"y":15.71},{"x":1569611880000,"y":15.69},{"x":1569611940000,"y":15.69},{"x":1569612000000,"y":15.68},{"x":1569612060000,"y":15.68},{"x":1569612120000,"y":15.71},{"x":1569612180000,"y":15.69},{"x":1569612240000,"y":15.69},{"x":1569612300000,"y":15.69},{"x":1569612360000,"y":15.69},{"x":1569612420000,"y":15.7},{"x":1569612480000,"y":15.69},{"x":1569612540000,"y":15.69},{"x":1569612600000,"y":15.69},{"x":1569612660000,"y":15.69},{"x":1569612720000,"y":15.7},{"x":1569612780000,"y":15.69},{"x":1569612840000,"y":15.69},{"x":1569612900000,"y":15.67},{"x":1569612960000,"y":15.67},{"x":1569613020000,"y":15.7},{"x":1569613080000,"y":15.68},{"x":1569613140000,"y":15.69},{"x":1569613200000,"y":15.69},{"x":1569613260000,"y":15.69},{"x":1569613320000,"y":15.71},{"x":1569613380000,"y":15.7},{"x":1569613440000,"y":15.7},{"x":1569613500000,"y":15.69},{"x":1569613560000,"y":15.69},{"x":1569613620000,"y":15.7},{"x":1569613680000,"y":15.69},{"x":1569613740000,"y":15.69},{"x":1569613800000,"y":15.7},{"x":1569613860000,"y":15.7},{"x":1569613920000,"y":15.71},{"x":1569613980000,"y":15.69},{"x":1569614040000,"y":15.69},{"x":1569614100000,"y":15.69},{"x":1569614160000,"y":15.69},{"x":1569614220000,"y":15.69},{"x":1569614280000,"y":15.72},{"x":1569614340000,"y":15.7},{"x":1569614400000,"y":15.69},{"x":1569614460000,"y":15.69},{"x":1569614520000,"y":15.69},{"x":1569614580000,"y":15.68},{"x":1569614640000,"y":15.67},{"x":1569614700000,"y":15.71},{"x":1569614760000,"y":15.71},{"x":1569614820000,"y":15.71},{"x":1569614880000,"y":15.71},{"x":1569614940000,"y":15.68},{"x":1569615000000,"y":15.69},{"x":1569615060000,"y":15.69},{"x":1569615120000,"y":15.69},{"x":1569615180000,"y":15.7},{"x":1569615240000,"y":15.69},{"x":1569615300000,"y":15.7},{"x":1569615360000,"y":15.7},{"x":1569615420000,"y":15.69},{"x":1569615480000,"y":15.7},{"x":1569615540000,"y":15.68},{"x":1569615600000,"y":15.68},{"x":1569615660000,"y":15.69},{"x":1569615720000,"y":15.68},{"x":1569615780000,"y":15.7},{"x":1569615840000,"y":15.7},{"x":1569615900000,"y":15.69},{"x":1569615960000,"y":15.69},{"x":1569616020000,"y":15.69},{"x":1569616080000,"y":15.7},{"x":1569616140000,"y":15.69},{"x":1569616200000,"y":15.67},{"x":1569616260000,"y":15.67},{"x":1569616320000,"y":15.67},{"x":1569616380000,"y":15.68},{"x":1569616440000,"y":15.7},{"x":1569616500000,"y":15.7},{"x":1569616560000,"y":15.7},{"x":1569616620000,"y":15.7},{"x":1569616680000,"y":15.7},{"x":1569616740000,"y":15.7},{"x":1569616800000,"y":15.7},{"x":1569616860000,"y":15.7},{"x":1569616920000,"y":15.7},{"x":1569616980000,"y":15.7},{"x":1569617040000,"y":15.71},{"x":1569617100000,"y":15.7},{"x":1569617160000,"y":15.71},{"x":1569617220000,"y":15.71},{"x":1569617280000,"y":15.71},{"x":1569617340000,"y":15.67},{"x":1569617400000,"y":15.69},{"x":1569617460000,"y":15.69},{"x":1569617520000,"y":15.69},{"x":1569617580000,"y":15.69},{"x":1569617640000,"y":15.71},{"x":1569617700000,"y":15.68},{"x":1569617760000,"y":15.68},{"x":1569617820000,"y":15.68},{"x":1569617880000,"y":15.68},{"x":1569617940000,"y":15.7},{"x":1569618000000,"y":15.71},{"x":1569618060000,"y":15.71},{"x":1569618120000,"y":15.71},{"x":1569618180000,"y":15.71},{"x":1569618240000,"y":15.72},{"x":1569618300000,"y":15.71},{"x":1569618360000,"y":15.71},{"x":1569618420000,"y":15.71},{"x":1569618480000,"y":15.71},{"x":1569618540000,"y":15.72},{"x":1569618600000,"y":15.71},{"x":1569618660000,"y":15.71},{"x":1569618720000,"y":15.71},{"x":1569618780000,"y":15.7},{"x":1569618840000,"y":15.72},{"x":1569618900000,"y":15.69},{"x":1569618960000,"y":15.69},{"x":1569619020000,"y":15.68},{"x":1569619080000,"y":15.68},{"x":1569619140000,"y":15.68},{"x":1569619200000,"y":15.71},{"x":1569619260000,"y":15.7},{"x":1569619320000,"y":15.7},{"x":1569619380000,"y":15.7},{"x":1569619440000,"y":15.7},{"x":1569619500000,"y":15.72},{"x":1569619560000,"y":15.71},{"x":1569619620000,"y":15.71},{"x":1569619680000,"y":15.71},{"x":1569619740000,"y":15.71},{"x":1569619800000,"y":15.72},{"x":1569619860000,"y":15.71},{"x":1569619920000,"y":15.71},{"x":1569619980000,"y":15.71},{"x":1569620040000,"y":15.71},{"x":1569620100000,"y":15.71},{"x":1569620160000,"y":15.68},{"x":1569620220000,"y":15.68},{"x":1569620280000,"y":15.68},{"x":1569620340000,"y":15.71},{"x":1569620400000,"y":15.73},{"x":1569620460000,"y":15.72},{"x":1569620520000,"y":15.72},{"x":1569620580000,"y":15.72},{"x":1569620640000,"y":15.71},{"x":1569620700000,"y":15.71},{"x":1569620760000,"y":15.71},{"x":1569620820000,"y":15.71},{"x":1569620880000,"y":15.71},{"x":1569620940000,"y":15.71},{"x":1569621000000,"y":15.73},{"x":1569621060000,"y":15.71},{"x":1569621120000,"y":15.71},{"x":1569621180000,"y":15.7},{"x":1569621240000,"y":15.68},{"x":1569621300000,"y":15.71},{"x":1569621360000,"y":15.69},{"x":1569621420000,"y":15.69},{"x":1569621480000,"y":15.68},{"x":1569621540000,"y":15.68},{"x":1569621600000,"y":15.68},{"x":1569621660000,"y":15.69},{"x":1569621720000,"y":15.68},{"x":1569621780000,"y":15.67},{"x":1569621840000,"y":15.67},{"x":1569621900000,"y":15.67},{"x":1569621960000,"y":15.7},{"x":1569622020000,"y":15.69},{"x":1569622080000,"y":15.69},{"x":1569622140000,"y":15.69},{"x":1569622200000,"y":15.7},{"x":1569622260000,"y":15.7},{"x":1569622320000,"y":15.69},{"x":1569622380000,"y":15.69},{"x":1569622440000,"y":15.69},{"x":1569622500000,"y":15.69},{"x":1569622560000,"y":15.69},{"x":1569622620000,"y":15.67},{"x":1569622680000,"y":15.67},{"x":1569622740000,"y":15.67},{"x":1569622800000,"y":15.68},{"x":1569622860000,"y":15.69},{"x":1569622920000,"y":15.68},{"x":1569622980000,"y":15.68},{"x":1569623040000,"y":15.68},{"x":1569623100000,"y":15.69},{"x":1569623160000,"y":15.69},{"x":1569623220000,"y":15.68},{"x":1569623280000,"y":15.68},{"x":1569623340000,"y":15.67},{"x":1569623400000,"y":15.69},{"x":1569623460000,"y":15.7},{"x":1569623520000,"y":15.68},{"x":1569623580000,"y":15.68},{"x":1569623640000,"y":15.68},{"x":1569623700000,"y":15.67},{"x":1569623760000,"y":15.69},{"x":1569623820000,"y":15.67},{"x":1569623880000,"y":15.67},{"x":1569623940000,"y":15.7},{"x":1569624000000,"y":15.67},{"x":1569624060000,"y":15.67},{"x":1569624120000,"y":15.69},{"x":1569624180000,"y":15.68},{"x":1569624240000,"y":15.68},{"x":1569624300000,"y":15.69},{"x":1569624360000,"y":15.7},{"x":1569624420000,"y":15.7},{"x":1569624480000,"y":15.69},{"x":1569624540000,"y":15.69},{"x":1569624600000,"y":15.69},{"x":1569624660000,"y":15.69},{"x":1569624720000,"y":15.7},{"x":1569624780000,"y":15.69},{"x":1569624840000,"y":15.69},{"x":1569624900000,"y":15.7},{"x":1569624960000,"y":15.7},{"x":1569625020000,"y":15.7},{"x":1569625080000,"y":15.67},{"x":1569625140000,"y":15.67},{"x":1569625200000,"y":15.71},{"x":1569625260000,"y":15.71},{"x":1569625320000,"y":15.72},{"x":1569625380000,"y":15.69},{"x":1569625440000,"y":15.69},{"x":1569625500000,"y":15.7},{"x":1569625560000,"y":15.7},{"x":1569625620000,"y":15.72},{"x":1569625680000,"y":15.7},{"x":1569625740000,"y":15.71},{"x":1569625800000,"y":15.69},{"x":1569625860000,"y":15.69},{"x":1569625920000,"y":15.69},{"x":1569625980000,"y":15.71},{"x":1569626040000,"y":15.7},{"x":1569626100000,"y":15.69},{"x":1569626160000,"y":15.69},{"x":1569626220000,"y":15.7},{"x":1569626280000,"y":15.71},{"x":1569626340000,"y":15.7},{"x":1569626400000,"y":15.7},{"x":1569626460000,"y":15.69},{"x":1569626520000,"y":15.69},{"x":1569626580000,"y":15.7},{"x":1569626640000,"y":15.69},{"x":1569626700000,"y":15.7},{"x":1569626760000,"y":15.7},{"x":1569626820000,"y":15.7},{"x":1569626880000,"y":15.71},{"x":1569626940000,"y":15.69},{"x":1569627000000,"y":15.7},{"x":1569627060000,"y":15.7},{"x":1569627120000,"y":15.7},{"x":1569627180000,"y":15.71},{"x":1569627240000,"y":15.7},{"x":1569627300000,"y":15.71},{"x":1569627360000,"y":15.71},{"x":1569627420000,"y":15.71},{"x":1569627480000,"y":15.71},{"x":1569627540000,"y":15.71},{"x":1569627600000,"y":15.68},{"x":1569627660000,"y":15.68},{"x":1569627720000,"y":15.67},{"x":1569627780000,"y":15.69},{"x":1569627840000,"y":15.7},{"x":1569627900000,"y":15.69},{"x":1569627960000,"y":15.69},{"x":1569628020000,"y":15.69},{"x":1569628080000,"y":15.71},{"x":1569628140000,"y":15.71},{"x":1569628200000,"y":15.69},{"x":1569628260000,"y":15.69},{"x":1569628320000,"y":15.7},{"x":1569628380000,"y":15.69},{"x":1569628440000,"y":15.72},{"x":1569628500000,"y":15.7},{"x":1569628560000,"y":15.7},{"x":1569628620000,"y":15.7},{"x":1569628680000,"y":15.7},{"x":1569628740000,"y":15.71},{"x":1569628800000,"y":15.69},{"x":1569628860000,"y":15.69},{"x":1569628920000,"y":15.69},{"x":1569628980000,"y":15.69},{"x":1569629040000,"y":15.72},{"x":1569629100000,"y":15.71},{"x":1569629160000,"y":15.71},{"x":1569629220000,"y":15.71},{"x":1569629280000,"y":15.71},{"x":1569629340000,"y":15.73},{"x":1569629400000,"y":15.71},{"x":1569629460000,"y":15.71},{"x":1569629520000,"y":15.71},{"x":1569629580000,"y":15.71},{"x":1569629640000,"y":15.72},{"x":1569629700000,"y":15.71},{"x":1569629760000,"y":15.71},{"x":1569629820000,"y":15.71},{"x":1569629880000,"y":15.71},{"x":1569629940000,"y":15.72},{"x":1569630000000,"y":15.71},{"x":1569630060000,"y":15.71},{"x":1569630120000,"y":15.71},{"x":1569630180000,"y":15.71},{"x":1569630240000,"y":16.09},{"x":1569630300000,"y":15.76},{"x":1569630360000,"y":15.77},{"x":1569630420000,"y":15.77},{"x":1569630480000,"y":15.76},{"x":1569630540000,"y":15.76},{"x":1569630600000,"y":15.69},{"x":1569630660000,"y":15.69},{"x":1569630720000,"y":15.69},{"x":1569630780000,"y":15.69},{"x":1569630840000,"y":15.69},{"x":1569630900000,"y":15.7},{"x":1569630960000,"y":15.68},{"x":1569631020000,"y":15.68},{"x":1569631080000,"y":15.68},{"x":1569631140000,"y":15.7},{"x":1569631200000,"y":15.69},{"x":1569631260000,"y":15.67},{"x":1569631320000,"y":15.67},{"x":1569631380000,"y":15.67},{"x":1569631440000,"y":15.67},{"x":1569631500000,"y":15.7},{"x":1569631560000,"y":15.69},{"x":1569631620000,"y":15.69},{"x":1569631680000,"y":15.69},{"x":1569631740000,"y":15.7},{"x":1569631800000,"y":15.69},{"x":1569631860000,"y":15.67},{"x":1569631920000,"y":15.67},{"x":1569631980000,"y":15.67},{"x":1569632040000,"y":15.67},{"x":1569632100000,"y":15.71},{"x":1569632160000,"y":15.89},{"x":1569632220000,"y":15.9},{"x":1569632280000,"y":15.92},{"x":1569632340000,"y":15.92},{"x":1569632400000,"y":15.97},{"x":1569632460000,"y":15.99},{"x":1569632520000,"y":15.99},{"x":1569632580000,"y":15.99},{"x":1569632640000,"y":15.99},{"x":1569632700000,"y":16},{"x":1569632760000,"y":15.99},{"x":1569632820000,"y":15.99},{"x":1569632880000,"y":15.99},{"x":1569632940000,"y":15.98},{"x":1569633000000,"y":16},{"x":1569633060000,"y":15.99},{"x":1569633120000,"y":15.99},{"x":1569633180000,"y":15.99},{"x":1569633240000,"y":15.98},{"x":1569633300000,"y":16},{"x":1569633360000,"y":15.94},{"x":1569633420000,"y":15.94},{"x":1569633480000,"y":15.93},{"x":1569633540000,"y":15.93},{"x":1569633600000,"y":15.99},{"x":1569633660000,"y":16},{"x":1569633720000,"y":15.99},{"x":1569633780000,"y":15.99},{"x":1569633840000,"y":15.99},{"x":1569633900000,"y":16},{"x":1569633960000,"y":16},{"x":1569634020000,"y":15.99},{"x":1569634080000,"y":15.99},{"x":1569634140000,"y":15.99},{"x":1569634200000,"y":16},{"x":1569634260000,"y":16},{"x":1569634320000,"y":15.99},{"x":1569634380000,"y":15.99},{"x":1569634440000,"y":15.99},{"x":1569634500000,"y":16},{"x":1569634560000,"y":16.01},{"x":1569634620000,"y":15.99},{"x":1569634680000,"y":15.99},{"x":1569634740000,"y":15.99},{"x":1569634800000,"y":15.99},{"x":1569634860000,"y":16},{"x":1569634920000,"y":15.98},{"x":1569634980000,"y":15.98},{"x":1569635040000,"y":15.98},{"x":1569635100000,"y":16},{"x":1569635160000,"y":16.01},{"x":1569635220000,"y":16},{"x":1569635280000,"y":16},{"x":1569635340000,"y":16},{"x":1569635400000,"y":16},{"x":1569635460000,"y":16},{"x":1569635520000,"y":15.99},{"x":1569635580000,"y":15.99},{"x":1569635640000,"y":16},{"x":1569635700000,"y":15.98},{"x":1569635760000,"y":15.98},{"x":1569635820000,"y":15.99},{"x":1569635880000,"y":15.97},{"x":1569635940000,"y":15.97},{"x":1569636000000,"y":15.98},{"x":1569636060000,"y":15.98},{"x":1569636120000,"y":15.99},{"x":1569636180000,"y":15.97},{"x":1569636240000,"y":15.97},{"x":1569636300000,"y":15.97},{"x":1569636360000,"y":15.97},{"x":1569636420000,"y":15.98},{"x":1569636480000,"y":15.96},{"x":1569636540000,"y":15.99},{"x":1569636600000,"y":15.99},{"x":1569636660000,"y":15.99},{"x":1569636720000,"y":15.99},{"x":1569636780000,"y":15.98},{"x":1569636840000,"y":15.98},{"x":1569636900000,"y":16},{"x":1569636960000,"y":16},{"x":1569637020000,"y":16.02},{"x":1569637080000,"y":16.01},{"x":1569637140000,"y":16.01},{"x":1569637200000,"y":15.98},{"x":1569637260000,"y":15.98},{"x":1569637320000,"y":16},{"x":1569637380000,"y":16},{"x":1569637440000,"y":16},{"x":1569637500000,"y":16},{"x":1569637560000,"y":15.99},{"x":1569637620000,"y":16},{"x":1569637680000,"y":15.99},{"x":1569637740000,"y":15.99},{"x":1569637800000,"y":16},{"x":1569637860000,"y":16},{"x":1569637920000,"y":16},{"x":1569637980000,"y":16},{"x":1569638040000,"y":16},{"x":1569638100000,"y":15.99},{"x":1569638160000,"y":16},{"x":1569638220000,"y":16},{"x":1569638280000,"y":16.01},{"x":1569638340000,"y":16},{"x":1569638400000,"y":16},{"x":1569638460000,"y":16},{"x":1569638520000,"y":16},{"x":1569638580000,"y":16.02},{"x":1569638640000,"y":16.01},{"x":1569638700000,"y":16},{"x":1569638760000,"y":16},{"x":1569638820000,"y":16},{"x":1569638880000,"y":16.01},{"x":1569638940000,"y":16.01},{"x":1569639000000,"y":16.02},{"x":1569639060000,"y":16.02},{"x":1569639120000,"y":16.02},{"x":1569639180000,"y":16.02},{"x":1569639240000,"y":16.01},{"x":1569639300000,"y":16.01},{"x":1569639360000,"y":16.01},{"x":1569639420000,"y":16.01},{"x":1569639480000,"y":16.01},{"x":1569639540000,"y":15.99},{"x":1569639600000,"y":16.01},{"x":1569639660000,"y":16.01},{"x":1569639720000,"y":16.01},{"x":1569639780000,"y":16.02},{"x":1569639840000,"y":15.99},{"x":1569639900000,"y":15.99},{"x":1569639960000,"y":15.99},{"x":1569640020000,"y":15.99},{"x":1569640080000,"y":15.99},{"x":1569640140000,"y":16.01},{"x":1569640200000,"y":16},{"x":1569640260000,"y":15.99},{"x":1569640320000,"y":15.99},{"x":1569640380000,"y":16},{"x":1569640440000,"y":16},{"x":1569640500000,"y":16},{"x":1569640560000,"y":16},{"x":1569640620000,"y":16},{"x":1569640680000,"y":16},{"x":1569640740000,"y":16},{"x":1569640800000,"y":15.95},{"x":1569640860000,"y":15.95},{"x":1569640920000,"y":15.95},{"x":1569640980000,"y":15.95},{"x":1569641040000,"y":15.99},{"x":1569641100000,"y":15.99},{"x":1569641160000,"y":15.99},{"x":1569641220000,"y":15.99},{"x":1569641280000,"y":15.99},{"x":1569641340000,"y":16.01},{"x":1569641400000,"y":15.99},{"x":1569641460000,"y":15.99},{"x":1569641520000,"y":15.98},{"x":1569641580000,"y":15.99},{"x":1569641640000,"y":16},{"x":1569641700000,"y":16},{"x":1569641760000,"y":15.99},{"x":1569641820000,"y":15.99},{"x":1569641880000,"y":15.99},{"x":1569641940000,"y":16.01},{"x":1569642000000,"y":16},{"x":1569642060000,"y":16},{"x":1569642120000,"y":16},{"x":1569642180000,"y":16},{"x":1569642240000,"y":16.01},{"x":1569642300000,"y":15.99},{"x":1569642360000,"y":16},{"x":1569642420000,"y":16},{"x":1569642480000,"y":15.99},{"x":1569642540000,"y":15.99},{"x":1569642600000,"y":16.01},{"x":1569642660000,"y":15.99},{"x":1569642720000,"y":15.99},{"x":1569642780000,"y":16},{"x":1569642840000,"y":16},{"x":1569642900000,"y":15.99},{"x":1569642960000,"y":15.97},{"x":1569643020000,"y":15.96},{"x":1569643080000,"y":15.96},{"x":1569643140000,"y":15.96},{"x":1569643200000,"y":16.01},{"x":1569643260000,"y":16.01},{"x":1569643320000,"y":16.01},{"x":1569643380000,"y":16.01},{"x":1569643440000,"y":16.01},{"x":1569643500000,"y":16},{"x":1569643560000,"y":16},{"x":1569643620000,"y":15.99},{"x":1569643680000,"y":15.99},{"x":1569643740000,"y":16},{"x":1569643800000,"y":16.02},{"x":1569643860000,"y":16},{"x":1569643920000,"y":16},{"x":1569643980000,"y":16},{"x":1569644040000,"y":16},{"x":1569644100000,"y":16.01},{"x":1569644160000,"y":16},{"x":1569644220000,"y":16},{"x":1569644280000,"y":16.01},{"x":1569644340000,"y":16.01},{"x":1569644400000,"y":16.02},{"x":1569644460000,"y":16.01},{"x":1569644520000,"y":16.01},{"x":1569644580000,"y":16.01},{"x":1569644640000,"y":16.01},{"x":1569644700000,"y":16.02},{"x":1569644760000,"y":16.02},{"x":1569644820000,"y":16.01},{"x":1569644880000,"y":16.01},{"x":1569644940000,"y":16.01},{"x":1569645000000,"y":16.01},{"x":1569645060000,"y":16.03},{"x":1569645120000,"y":16.01},{"x":1569645180000,"y":16.01},{"x":1569645240000,"y":16.01},{"x":1569645300000,"y":16},{"x":1569645360000,"y":16.01},{"x":1569645420000,"y":16.01},{"x":1569645480000,"y":16.01},{"x":1569645540000,"y":16.01},{"x":1569645600000,"y":16.01},{"x":1569645660000,"y":16.02},{"x":1569645720000,"y":16.01},{"x":1569645780000,"y":16.01},{"x":1569645840000,"y":16.02},{"x":1569645900000,"y":16.01},{"x":1569645960000,"y":16.02},{"x":1569646020000,"y":16.01},{"x":1569646080000,"y":16.01},{"x":1569646140000,"y":16},{"x":1569646200000,"y":16.01},{"x":1569646260000,"y":16.03},{"x":1569646320000,"y":16.01},{"x":1569646380000,"y":16.01},{"x":1569646440000,"y":16.01},{"x":1569646500000,"y":16.01},{"x":1569646560000,"y":16.02},{"x":1569646620000,"y":16.01},{"x":1569646680000,"y":15.99},{"x":1569646740000,"y":15.99},{"x":1569646800000,"y":15.99},{"x":1569646860000,"y":16},{"x":1569646920000,"y":16},{"x":1569646980000,"y":15.99},{"x":1569647040000,"y":16},{"x":1569647100000,"y":16.01},{"x":1569647160000,"y":16.02},{"x":1569647220000,"y":16},{"x":1569647280000,"y":16},{"x":1569647340000,"y":16},{"x":1569647400000,"y":16},{"x":1569647460000,"y":16},{"x":1569647520000,"y":16.03},{"x":1569647580000,"y":16.01},{"x":1569647640000,"y":16.01},{"x":1569647700000,"y":15.99},{"x":1569647760000,"y":15.99},{"x":1569647820000,"y":16.01},{"x":1569647880000,"y":16.01},{"x":1569647940000,"y":16.01},{"x":1569648000000,"y":16.01},{"x":1569648060000,"y":16.01},{"x":1569648120000,"y":16.02},{"x":1569648180000,"y":16},{"x":1569648240000,"y":16},{"x":1569648300000,"y":16},{"x":1569648360000,"y":16},{"x":1569648420000,"y":16.01},{"x":1569648480000,"y":16},{"x":1569648540000,"y":16},{"x":1569648600000,"y":16.01},{"x":1569648660000,"y":16},{"x":1569648720000,"y":16.03},{"x":1569648780000,"y":16.01},{"x":1569648840000,"y":16.01},{"x":1569648900000,"y":16.01},{"x":1569648960000,"y":16},{"x":1569649020000,"y":15.99},{"x":1569649080000,"y":15.98},{"x":1569649140000,"y":15.99},{"x":1569649200000,"y":16},{"x":1569649260000,"y":16},{"x":1569649320000,"y":16.01},{"x":1569649380000,"y":15.98},{"x":1569649440000,"y":15.97},{"x":1569649500000,"y":15.97},{"x":1569649560000,"y":15.97},{"x":1569649620000,"y":15.98},{"x":1569649680000,"y":15.97},{"x":1569649740000,"y":15.97},{"x":1569649800000,"y":15.96},{"x":1569649860000,"y":15.96},{"x":1569649920000,"y":15.96},{"x":1569649980000,"y":15.97},{"x":1569650040000,"y":15.95},{"x":1569650100000,"y":15.96},{"x":1569650160000,"y":15.96},{"x":1569650220000,"y":15.96},{"x":1569650280000,"y":15.95},{"x":1569650340000,"y":15.93},{"x":1569650400000,"y":15.97},{"x":1569650460000,"y":15.97},{"x":1569650520000,"y":15.97},{"x":1569650580000,"y":15.97},{"x":1569650640000,"y":15.96},{"x":1569650700000,"y":15.94},{"x":1569650760000,"y":15.94},{"x":1569650820000,"y":15.94},{"x":1569650880000,"y":15.94},{"x":1569650940000,"y":15.96},{"x":1569651000000,"y":15.97},{"x":1569651060000,"y":15.97},{"x":1569651120000,"y":15.98},{"x":1569651180000,"y":15.99},{"x":1569651240000,"y":15.95},{"x":1569651300000,"y":15.96},{"x":1569651360000,"y":15.96},{"x":1569651420000,"y":15.96},{"x":1569651480000,"y":15.97},{"x":1569651540000,"y":15.98},{"x":1569651600000,"y":15.96},{"x":1569651660000,"y":15.96},{"x":1569651720000,"y":15.96},{"x":1569651780000,"y":15.97},{"x":1569651840000,"y":15.97},{"x":1569651900000,"y":15.96},{"x":1569651960000,"y":15.96},{"x":1569652020000,"y":15.96},{"x":1569652080000,"y":15.96},{"x":1569652140000,"y":16.35},{"x":1569652200000,"y":16.04},{"x":1569652260000,"y":16.04},{"x":1569652320000,"y":16.04},{"x":1569652380000,"y":16.04},{"x":1569652440000,"y":15.98},{"x":1569652500000,"y":15.98},{"x":1569652560000,"y":15.98},{"x":1569652620000,"y":15.98},{"x":1569652680000,"y":15.98},{"x":1569652740000,"y":15.99},{"x":1569652800000,"y":15.98},{"x":1569652860000,"y":15.98},{"x":1569652920000,"y":15.98},{"x":1569652980000,"y":15.98},{"x":1569653040000,"y":15.98},{"x":1569653100000,"y":15.96},{"x":1569653160000,"y":15.96},{"x":1569653220000,"y":15.96},{"x":1569653280000,"y":15.97},{"x":1569653340000,"y":15.98},{"x":1569653400000,"y":15.98},{"x":1569653460000,"y":15.98},{"x":1569653520000,"y":15.98},{"x":1569653580000,"y":15.98},{"x":1569653640000,"y":16},{"x":1569653700000,"y":15.97},{"x":1569653760000,"y":15.97},{"x":1569653820000,"y":15.97},{"x":1569653880000,"y":16.26},{"x":1569653940000,"y":16.28},{"x":1569654000000,"y":16.25},{"x":1569654060000,"y":16.24},{"x":1569654120000,"y":16.24},{"x":1569654180000,"y":16.21},{"x":1569654240000,"y":16.19},{"x":1569654300000,"y":16.2},{"x":1569654360000,"y":16.2},{"x":1569654420000,"y":16.2},{"x":1569654480000,"y":16.2},{"x":1569654540000,"y":16.2},{"x":1569654600000,"y":16.22},{"x":1569654660000,"y":16.2},{"x":1569654720000,"y":16.2},{"x":1569654780000,"y":16.2},{"x":1569654840000,"y":16.2},{"x":1569654900000,"y":16.22},{"x":1569654960000,"y":16.21},{"x":1569655020000,"y":16.21},{"x":1569655080000,"y":16.21},{"x":1569655140000,"y":16.2},{"x":1569655200000,"y":16.21},{"x":1569655260000,"y":16.2},{"x":1569655320000,"y":16.2},{"x":1569655380000,"y":16.21},{"x":1569655440000,"y":16.21},{"x":1569655500000,"y":16.23},{"x":1569655560000,"y":16.21},{"x":1569655620000,"y":16.21},{"x":1569655680000,"y":16.21},{"x":1569655740000,"y":16.21},{"x":1569655800000,"y":16.23},{"x":1569655860000,"y":16.21},{"x":1569655920000,"y":16.21},{"x":1569655980000,"y":16.21},{"x":1569656040000,"y":16.21},{"x":1569656100000,"y":16.22},{"x":1569656160000,"y":16.21},{"x":1569656220000,"y":16.21},{"x":1569656280000,"y":16.2},{"x":1569656340000,"y":16.2},{"x":1569656400000,"y":16.22},{"x":1569656460000,"y":16.18},{"x":1569656520000,"y":16.18},{"x":1569656580000,"y":16.18},{"x":1569656640000,"y":16.18},{"x":1569656700000,"y":16.22},{"x":1569656760000,"y":16.21},{"x":1569656820000,"y":16.21},{"x":1569656880000,"y":16.21},{"x":1569656940000,"y":16.21},{"x":1569657000000,"y":16.21},{"x":1569657060000,"y":16.22},{"x":1569657120000,"y":16.21},{"x":1569657180000,"y":16.21},{"x":1569657240000,"y":16.21},{"x":1569657300000,"y":16.21},{"x":1569657360000,"y":16.22},{"x":1569657420000,"y":16.21},{"x":1569657480000,"y":16.2},{"x":1569657540000,"y":16.19},{"x":1569657600000,"y":16.22},{"x":1569657660000,"y":16.22},{"x":1569657720000,"y":16.21},{"x":1569657780000,"y":16.21},{"x":1569657840000,"y":16.21},{"x":1569657900000,"y":16.22},{"x":1569657960000,"y":16.22},{"x":1569658020000,"y":16.21},{"x":1569658080000,"y":16.21},{"x":1569658140000,"y":16.21},{"x":1569658200000,"y":16.21},{"x":1569658260000,"y":16.21},{"x":1569658320000,"y":16.18},{"x":1569658380000,"y":16.17},{"x":1569658440000,"y":16.17},{"x":1569658500000,"y":16.2},{"x":1569658560000,"y":16.21},{"x":1569658620000,"y":16.2},{"x":1569658680000,"y":16.2},{"x":1569658740000,"y":16.2},{"x":1569658800000,"y":16.2},{"x":1569658860000,"y":16.22},{"x":1569658920000,"y":16.21},{"x":1569658980000,"y":16.21},{"x":1569659040000,"y":16.2},{"x":1569659100000,"y":16.19},{"x":1569659160000,"y":16.2},{"x":1569659220000,"y":16.17},{"x":1569659280000,"y":16.17},{"x":1569659340000,"y":16.17},{"x":1569659400000,"y":16.2},{"x":1569659460000,"y":16.21},{"x":1569659520000,"y":16.2},{"x":1569659580000,"y":16.2},{"x":1569659640000,"y":16.2},{"x":1569659700000,"y":16.2},{"x":1569659760000,"y":16.2},{"x":1569659820000,"y":16.21},{"x":1569659880000,"y":16.2},{"x":1569659940000,"y":16.19},{"x":1569660000000,"y":16.19},{"x":1569660060000,"y":16.19},{"x":1569660120000,"y":16.22},{"x":1569660180000,"y":16.21},{"x":1569660240000,"y":16.2},{"x":1569660300000,"y":16.2},{"x":1569660360000,"y":16.2},{"x":1569660420000,"y":16.21},{"x":1569660480000,"y":16.2},{"x":1569660540000,"y":16.2},{"x":1569660600000,"y":16.21},{"x":1569660660000,"y":16.2},{"x":1569660720000,"y":16.21},{"x":1569660780000,"y":16.2},{"x":1569660840000,"y":16.2},{"x":1569660900000,"y":16.21},{"x":1569660960000,"y":16.2},{"x":1569661020000,"y":16.21},{"x":1569661080000,"y":16.2},{"x":1569661140000,"y":16.2},{"x":1569661200000,"y":16.18},{"x":1569661260000,"y":16.18},{"x":1569661320000,"y":16.2},{"x":1569661380000,"y":16.2},{"x":1569661440000,"y":16.2},{"x":1569661500000,"y":16.21},{"x":1569661560000,"y":16.2},{"x":1569661620000,"y":16.22},{"x":1569661680000,"y":16.21},{"x":1569661740000,"y":16.21},{"x":1569661800000,"y":16.21},{"x":1569661860000,"y":16.21},{"x":1569661920000,"y":16.2},{"x":1569661980000,"y":16.21},{"x":1569662040000,"y":16.2},{"x":1569662100000,"y":16.21},{"x":1569662160000,"y":16.21},{"x":1569662220000,"y":16.21},{"x":1569662280000,"y":16.22},{"x":1569662340000,"y":16.2},{"x":1569662400000,"y":16.2},{"x":1569662460000,"y":16.2},{"x":1569662520000,"y":16.21},{"x":1569662580000,"y":16.22},{"x":1569662640000,"y":16.21},{"x":1569662700000,"y":16.2},{"x":1569662760000,"y":16.2},{"x":1569662820000,"y":16.2},{"x":1569662880000,"y":16.21},{"x":1569662940000,"y":16.2},{"x":1569663000000,"y":16.21},{"x":1569663060000,"y":16.21},{"x":1569663120000,"y":16.21},{"x":1569663180000,"y":16.22},{"x":1569663240000,"y":16.2},{"x":1569663300000,"y":16.2},{"x":1569663360000,"y":16.2},{"x":1569663420000,"y":16.2},{"x":1569663480000,"y":16.21},{"x":1569663540000,"y":16.21},{"x":1569663600000,"y":16.21},{"x":1569663660000,"y":16.21},{"x":1569663720000,"y":16.21},{"x":1569663780000,"y":16.22},{"x":1569663840000,"y":16.21},{"x":1569663900000,"y":16.21},{"x":1569663960000,"y":16.21},{"x":1569664020000,"y":16.21},{"x":1569664080000,"y":16.2},{"x":1569664140000,"y":16.23},{"x":1569664200000,"y":16.21},{"x":1569664260000,"y":16.21},{"x":1569664320000,"y":16.21},{"x":1569664380000,"y":16.21},{"x":1569664440000,"y":16.19},{"x":1569664500000,"y":16.19},{"x":1569664560000,"y":16.2},{"x":1569664620000,"y":16.2},{"x":1569664680000,"y":16.2},{"x":1569664740000,"y":16.19},{"x":1569664800000,"y":16.22},{"x":1569664860000,"y":16.22},{"x":1569664920000,"y":16.22},{"x":1569664980000,"y":16.22},{"x":1569665040000,"y":16.23},{"x":1569665100000,"y":16.21},{"x":1569665160000,"y":16.21},{"x":1569665220000,"y":16.21},{"x":1569665280000,"y":16.21},{"x":1569665340000,"y":16.22},{"x":1569665400000,"y":16.21},{"x":1569665460000,"y":16.21},{"x":1569665520000,"y":16.21},{"x":1569665580000,"y":16.21},{"x":1569665640000,"y":16.22},{"x":1569665700000,"y":16.21},{"x":1569665760000,"y":16.21},{"x":1569665820000,"y":16.21},{"x":1569665880000,"y":16.21},{"x":1569665940000,"y":16.22},{"x":1569666000000,"y":16.22},{"x":1569666060000,"y":16.22},{"x":1569666120000,"y":16.22},{"x":1569666180000,"y":16.22},{"x":1569666240000,"y":16.23},{"x":1569666300000,"y":16.21},{"x":1569666360000,"y":16.21},{"x":1569666420000,"y":16.21},{"x":1569666480000,"y":16.21},{"x":1569666540000,"y":16.21},{"x":1569666600000,"y":16.23},{"x":1569666660000,"y":16.22},{"x":1569666720000,"y":16.22},{"x":1569666780000,"y":16.22},{"x":1569666840000,"y":16.22},{"x":1569666900000,"y":16.23},{"x":1569666960000,"y":16.22},{"x":1569667020000,"y":16.22},{"x":1569667080000,"y":16.22},{"x":1569667140000,"y":16.22},{"x":1569667200000,"y":16.21},{"x":1569667260000,"y":16.21},{"x":1569667320000,"y":16.21},{"x":1569667380000,"y":16.21},{"x":1569667440000,"y":16.21},{"x":1569667500000,"y":16.22},{"x":1569667560000,"y":16.22},{"x":1569667620000,"y":16.2},{"x":1569667680000,"y":16.19},{"x":1569667740000,"y":16.2},{"x":1569667800000,"y":16.23},{"x":1569667860000,"y":16.21},{"x":1569667920000,"y":16.21},{"x":1569667980000,"y":16.21},{"x":1569668040000,"y":16.21},{"x":1569668100000,"y":16.2},{"x":1569668160000,"y":16.2},{"x":1569668220000,"y":16.2},{"x":1569668280000,"y":16.18},{"x":1569668340000,"y":16.18},{"x":1569668400000,"y":16.2},{"x":1569668460000,"y":16.2},{"x":1569668520000,"y":16.2},{"x":1569668580000,"y":16.2},{"x":1569668640000,"y":16.2},{"x":1569668700000,"y":16.2},{"x":1569668760000,"y":16.22},{"x":1569668820000,"y":16.2},{"x":1569668880000,"y":16.2},{"x":1569668940000,"y":16.2},{"x":1569669000000,"y":16.2},{"x":1569669060000,"y":16.22},{"x":1569669120000,"y":16.2},{"x":1569669180000,"y":16.2},{"x":1569669240000,"y":16.2},{"x":1569669300000,"y":16.2},{"x":1569669360000,"y":16.22},{"x":1569669420000,"y":16.21},{"x":1569669480000,"y":16.21},{"x":1569669540000,"y":16.21},{"x":1569669600000,"y":16.21},{"x":1569669660000,"y":16.22},{"x":1569669720000,"y":16.21},{"x":1569669780000,"y":16.21},{"x":1569669840000,"y":16.21},{"x":1569669900000,"y":16.24},{"x":1569669960000,"y":16.2},{"x":1569670020000,"y":16.18},{"x":1569670080000,"y":16.17},{"x":1569670140000,"y":16.18},{"x":1569670200000,"y":16.21},{"x":1569670260000,"y":16.21},{"x":1569670320000,"y":16.18},{"x":1569670380000,"y":16.18},{"x":1569670440000,"y":16.18},{"x":1569670500000,"y":16.17},{"x":1569670560000,"y":16.19},{"x":1569670620000,"y":16.2},{"x":1569670680000,"y":16.2},{"x":1569670740000,"y":16.21},{"x":1569670800000,"y":16.19},{"x":1569670860000,"y":16.19},{"x":1569670920000,"y":16.2},{"x":1569670980000,"y":16.19},{"x":1569671040000,"y":16.19},{"x":1569671100000,"y":16.22},{"x":1569671160000,"y":16.22},{"x":1569671220000,"y":16.2},{"x":1569671280000,"y":16.18},{"x":1569671340000,"y":16.18},{"x":1569671400000,"y":16.18},{"x":1569671460000,"y":16.18},{"x":1569671520000,"y":16.22},{"x":1569671580000,"y":16.22},{"x":1569671640000,"y":16.22},{"x":1569671700000,"y":16.2},{"x":1569671760000,"y":17.11},{"x":1569671820000,"y":17.11},{"x":1569671880000,"y":17.06},{"x":1569671940000,"y":17.06},{"x":1569672000000,"y":17.09},{"x":1569672060000,"y":17.08},{"x":1569672120000,"y":17.04},{"x":1569672180000,"y":17.02},{"x":1569672240000,"y":17.02},{"x":1569672300000,"y":17.02},{"x":1569672360000,"y":17.02},{"x":1569672420000,"y":17.03},{"x":1569672480000,"y":16.98},{"x":1569672540000,"y":17.02},{"x":1569672600000,"y":17.03},{"x":1569672660000,"y":17.02},{"x":1569672720000,"y":17.03},{"x":1569672780000,"y":17},{"x":1569672840000,"y":17},{"x":1569672900000,"y":17},{"x":1569672960000,"y":16.99},{"x":1569673020000,"y":17.01},{"x":1569673080000,"y":17},{"x":1569673140000,"y":17},{"x":1569673200000,"y":17.01},{"x":1569673260000,"y":17.01},{"x":1569673320000,"y":17},{"x":1569673380000,"y":17.05},{"x":1569673440000,"y":17.03},{"x":1569673500000,"y":17.03},{"x":1569673560000,"y":17.03},{"x":1569673620000,"y":17.03},{"x":1569673680000,"y":17.04},{"x":1569673740000,"y":17.02},{"x":1569673800000,"y":17.03},{"x":1569673860000,"y":17.03},{"x":1569673920000,"y":17.02},{"x":1569673980000,"y":17.45},{"x":1569674040000,"y":17.07},{"x":1569674100000,"y":17.11},{"x":1569674160000,"y":17.11},{"x":1569674220000,"y":17.11},{"x":1569674280000,"y":17.09},{"x":1569674340000,"y":17.04},{"x":1569674400000,"y":17.04},{"x":1569674460000,"y":17.04},{"x":1569674520000,"y":17.03},{"x":1569674580000,"y":17.05},{"x":1569674640000,"y":17.04},{"x":1569674700000,"y":17.05},{"x":1569674760000,"y":17.05},{"x":1569674820000,"y":17.05},{"x":1569674880000,"y":17.07},{"x":1569674940000,"y":17.04},{"x":1569675000000,"y":17.05},{"x":1569675060000,"y":17.04},{"x":1569675120000,"y":17.04},{"x":1569675180000,"y":17.05},{"x":1569675240000,"y":17.05},{"x":1569675300000,"y":17.05},{"x":1569675360000,"y":17.05},{"x":1569675420000,"y":17.05},{"x":1569675480000,"y":17.04},{"x":1569675540000,"y":17.06},{"x":1569675600000,"y":17.06},{"x":1569675660000,"y":17.06},{"x":1569675720000,"y":17.06},{"x":1569675780000,"y":17.05},{"x":1569675840000,"y":17.06},{"x":1569675900000,"y":17.05},{"x":1569675960000,"y":17.05},{"x":1569676020000,"y":17.05},{"x":1569676080000,"y":17.05},{"x":1569676140000,"y":17.08},{"x":1569676200000,"y":17.05},{"x":1569676260000,"y":17.04},{"x":1569676320000,"y":17.05},{"x":1569676380000,"y":17.04},{"x":1569676440000,"y":17.06},{"x":1569676500000,"y":17.06},{"x":1569676560000,"y":17.06},{"x":1569676620000,"y":17.05},{"x":1569676680000,"y":17.05},{"x":1569676740000,"y":17.07},{"x":1569676800000,"y":17.06},{"x":1569676860000,"y":17.06},{"x":1569676920000,"y":17.04},{"x":1569676980000,"y":17.02},{"x":1569677040000,"y":17.03},{"x":1569677100000,"y":17.03},{"x":1569677160000,"y":17.03},{"x":1569677220000,"y":17.03},{"x":1569677280000,"y":17.03},{"x":1569677340000,"y":17.04},{"x":1569677400000,"y":17.05},{"x":1569677460000,"y":17.05},{"x":1569677520000,"y":17.05},{"x":1569677580000,"y":17.05},{"x":1569677640000,"y":17.05},{"x":1569677700000,"y":17.03},{"x":1569677760000,"y":17.02},{"x":1569677820000,"y":17.02},{"x":1569677880000,"y":17.01},{"x":1569677940000,"y":17.06},{"x":1569678000000,"y":17.08},{"x":1569678060000,"y":17.06},{"x":1569678120000,"y":17.05},{"x":1569678180000,"y":17.05},{"x":1569678240000,"y":17.05},{"x":1569678300000,"y":17.05},{"x":1569678360000,"y":17.04},{"x":1569678420000,"y":17.04},{"x":1569678480000,"y":17.04},{"x":1569678540000,"y":17.04},{"x":1569678600000,"y":17.05},{"x":1569678660000,"y":17.03},{"x":1569678720000,"y":17.03},{"x":1569678780000,"y":17.03},{"x":1569678840000,"y":17.03},{"x":1569678900000,"y":17.07},{"x":1569678960000,"y":17.06},{"x":1569679020000,"y":17.06},{"x":1569679080000,"y":17.05},{"x":1569679140000,"y":17.05},{"x":1569679200000,"y":17.09},{"x":1569679260000,"y":17.07},{"x":1569679320000,"y":17.06},{"x":1569679380000,"y":17.06},{"x":1569679440000,"y":17.06},{"x":1569679500000,"y":17.06},{"x":1569679560000,"y":17.06},{"x":1569679620000,"y":17.06},{"x":1569679680000,"y":17.07},{"x":1569679740000,"y":17.06},{"x":1569679800000,"y":17.08},{"x":1569679860000,"y":17.08},{"x":1569679920000,"y":17.07},{"x":1569679980000,"y":17.07},{"x":1569680040000,"y":17.07},{"x":1569680100000,"y":17.06},{"x":1569680160000,"y":17.08},{"x":1569680220000,"y":17.07},{"x":1569680280000,"y":17.08},{"x":1569680340000,"y":17.08},{"x":1569680400000,"y":17.08},{"x":1569680460000,"y":17.05},{"x":1569680520000,"y":17.03},{"x":1569680580000,"y":17.03},{"x":1569680640000,"y":17.03},{"x":1569680700000,"y":17.05},{"x":1569680760000,"y":17.07},{"x":1569680820000,"y":17.06},{"x":1569680880000,"y":17.06},{"x":1569680940000,"y":17.06},{"x":1569681000000,"y":17.07},{"x":1569681060000,"y":17.09},{"x":1569681120000,"y":17.08},{"x":1569681180000,"y":17.08},{"x":1569681240000,"y":17.08},{"x":1569681300000,"y":17.08},{"x":1569681360000,"y":17.09},{"x":1569681420000,"y":17.07},{"x":1569681480000,"y":17.07},{"x":1569681540000,"y":17.07},{"x":1569681600000,"y":17.08},{"x":1569681660000,"y":17.09},{"x":1569681720000,"y":17.09},{"x":1569681780000,"y":17.09},{"x":1569681840000,"y":17.08},{"x":1569681900000,"y":17.09},{"x":1569681960000,"y":17.1},{"x":1569682020000,"y":17.09},{"x":1569682080000,"y":17.08},{"x":1569682140000,"y":17.08},{"x":1569682200000,"y":17.09},{"x":1569682260000,"y":17.09},{"x":1569682320000,"y":17.1},{"x":1569682380000,"y":17.09},{"x":1569682440000,"y":17.09},{"x":1569682500000,"y":17.08},{"x":1569682560000,"y":17.08},{"x":1569682620000,"y":17.1},{"x":1569682680000,"y":17.07},{"x":1569682740000,"y":17.06},{"x":1569682800000,"y":17.07},{"x":1569682860000,"y":17.07},{"x":1569682920000,"y":17.07},{"x":1569682980000,"y":17.06},{"x":1569683040000,"y":17.06},{"x":1569683100000,"y":17.09},{"x":1569683160000,"y":17.09},{"x":1569683220000,"y":17.11},{"x":1569683280000,"y":17.1},{"x":1569683340000,"y":17.09},{"x":1569683400000,"y":17.08},{"x":1569683460000,"y":17.08},{"x":1569683520000,"y":17.08},{"x":1569683580000,"y":17.05},{"x":1569683640000,"y":17.05},{"x":1569683700000,"y":17.09},{"x":1569683760000,"y":17.09},{"x":1569683820000,"y":17.1},{"x":1569683880000,"y":17.09},{"x":1569683940000,"y":17.1},{"x":1569684000000,"y":17.1},{"x":1569684060000,"y":17.1},{"x":1569684120000,"y":17.11},{"x":1569684180000,"y":17.1},{"x":1569684240000,"y":17.1},{"x":1569684300000,"y":17.09},{"x":1569684360000,"y":17.1},{"x":1569684420000,"y":17.1},{"x":1569684480000,"y":17.12},{"x":1569684540000,"y":17.11},{"x":1569684600000,"y":17.1},{"x":1569684660000,"y":17.1},{"x":1569684720000,"y":17.1},{"x":1569684780000,"y":17.12},{"x":1569684840000,"y":17.11},{"x":1569684900000,"y":17.1},{"x":1569684960000,"y":17.1},{"x":1569685020000,"y":17.1},{"x":1569685080000,"y":17.12},{"x":1569685140000,"y":17.1},{"x":1569685200000,"y":17.1},{"x":1569685260000,"y":17.1},{"x":1569685320000,"y":17.1},{"x":1569685380000,"y":17.12},{"x":1569685440000,"y":17.1},{"x":1569685500000,"y":17.09},{"x":1569685560000,"y":17.09},{"x":1569685620000,"y":17.09},{"x":1569685680000,"y":17.11},{"x":1569685740000,"y":17.11},{"x":1569685800000,"y":17.08},{"x":1569685860000,"y":17.07},{"x":1569685920000,"y":17.07},{"x":1569685980000,"y":17.09},{"x":1569686040000,"y":17.11},{"x":1569686100000,"y":17.09},{"x":1569686160000,"y":17.09},{"x":1569686220000,"y":17.09},{"x":1569686280000,"y":17.1},{"x":1569686340000,"y":17.09},{"x":1569686400000,"y":17.08},{"x":1569686460000,"y":17.08},{"x":1569686520000,"y":17.08},{"x":1569686580000,"y":17.1},{"x":1569686640000,"y":17.06},{"x":1569686700000,"y":17.09},{"x":1569686760000,"y":17.09},{"x":1569686820000,"y":17.09},{"x":1569686880000,"y":17.1},{"x":1569686940000,"y":17.11},{"x":1569687000000,"y":17.1},{"x":1569687060000,"y":17.1},{"x":1569687120000,"y":17.1},{"x":1569687180000,"y":17.09},{"x":1569687240000,"y":17.11},{"x":1569687300000,"y":17.07},{"x":1569687360000,"y":17.07},{"x":1569687420000,"y":17.07},{"x":1569687480000,"y":17.07},{"x":1569687540000,"y":17.1},{"x":1569687600000,"y":17.1},{"x":1569687660000,"y":17.1},{"x":1569687720000,"y":17.1},{"x":1569687780000,"y":17.09},{"x":1569687840000,"y":17.1},{"x":1569687900000,"y":17.08},{"x":1569687960000,"y":17.08},{"x":1569688020000,"y":17.08},{"x":1569688080000,"y":17.08},{"x":1569688140000,"y":17.1},{"x":1569688200000,"y":17.09},{"x":1569688260000,"y":17.09},{"x":1569688320000,"y":17.09},{"x":1569688380000,"y":17.09},{"x":1569688440000,"y":17.1},{"x":1569688500000,"y":17.11},{"x":1569688560000,"y":17.1},{"x":1569688620000,"y":17.1},{"x":1569688680000,"y":17.1},{"x":1569688740000,"y":17.11},{"x":1569688800000,"y":17.08},{"x":1569688860000,"y":17.08},{"x":1569688920000,"y":17.08},{"x":1569688980000,"y":17.08},{"x":1569689040000,"y":17.1},{"x":1569689100000,"y":17.1},{"x":1569689160000,"y":17.1},{"x":1569689220000,"y":17.1},{"x":1569689280000,"y":17.1},{"x":1569689340000,"y":17.1},{"x":1569689400000,"y":17.12},{"x":1569689460000,"y":17.11},{"x":1569689520000,"y":17.1},{"x":1569689580000,"y":17.1},{"x":1569689640000,"y":17.1},{"x":1569689700000,"y":17.12},{"x":1569689760000,"y":17.11},{"x":1569689820000,"y":17.11},{"x":1569689880000,"y":17.1},{"x":1569689940000,"y":17.1},{"x":1569690000000,"y":17.09},{"x":1569690060000,"y":17.08},{"x":1569690120000,"y":17.08},{"x":1569690180000,"y":17.08},{"x":1569690240000,"y":17.08},{"x":1569690300000,"y":17.1},{"x":1569690360000,"y":17.08},{"x":1569690420000,"y":17.08},{"x":1569690480000,"y":17.08},{"x":1569690540000,"y":17.1},{"x":1569690600000,"y":17.12},{"x":1569690660000,"y":17.11},{"x":1569690720000,"y":17.11},{"x":1569690780000,"y":17.11},{"x":1569690840000,"y":17.11},{"x":1569690900000,"y":17.11},{"x":1569690960000,"y":17.11},{"x":1569691020000,"y":17.11},{"x":1569691080000,"y":17.11},{"x":1569691140000,"y":17.1},{"x":1569691200000,"y":17.11},{"x":1569691260000,"y":17.08},{"x":1569691320000,"y":17.09},{"x":1569691380000,"y":17.09},{"x":1569691440000,"y":17.08},{"x":1569691500000,"y":17.09},{"x":1569691560000,"y":17.09},{"x":1569691620000,"y":17.07},{"x":1569691680000,"y":17.07},{"x":1569691740000,"y":17.02},{"x":1569691800000,"y":16.77},{"x":1569691860000,"y":16.77},{"x":1569691920000,"y":16.76},{"x":1569691980000,"y":16.76},{"x":1569692040000,"y":16.76},{"x":1569692100000,"y":16.76},{"x":1569692160000,"y":16.8},{"x":1569692220000,"y":16.79},{"x":1569692280000,"y":16.79},{"x":1569692340000,"y":16.78},{"x":1569692400000,"y":16.76},{"x":1569692460000,"y":16.8},{"x":1569692520000,"y":16.79},{"x":1569692580000,"y":16.79},{"x":1569692640000,"y":16.79},{"x":1569692700000,"y":16.79},{"x":1569692760000,"y":16.79},{"x":1569692820000,"y":16.76},{"x":1569692880000,"y":16.76},{"x":1569692940000,"y":16.76},{"x":1569693000000,"y":16.77},{"x":1569693060000,"y":16.79},{"x":1569693120000,"y":16.79},{"x":1569693180000,"y":16.79},{"x":1569693240000,"y":16.79},{"x":1569693300000,"y":16.79},{"x":1569693360000,"y":16.81},{"x":1569693420000,"y":16.79},{"x":1569693480000,"y":16.79},{"x":1569693540000,"y":16.78},{"x":1569693600000,"y":16.79},{"x":1569693660000,"y":16.8},{"x":1569693720000,"y":16.8},{"x":1569693780000,"y":16.81},{"x":1569693840000,"y":16.9},{"x":1569693900000,"y":17.09},{"x":1569693960000,"y":17.11},{"x":1569694020000,"y":17.1},{"x":1569694080000,"y":17.1},{"x":1569694140000,"y":17.1},{"x":1569694200000,"y":17.12},{"x":1569694260000,"y":17.12},{"x":1569694320000,"y":17.13},{"x":1569694380000,"y":17.12},{"x":1569694440000,"y":17.12},{"x":1569694500000,"y":17.11},{"x":1569694560000,"y":17.11},{"x":1569694620000,"y":17.12},{"x":1569694680000,"y":17.11},{"x":1569694740000,"y":17.11},{"x":1569694800000,"y":17.12},{"x":1569694860000,"y":17.12},{"x":1569694920000,"y":17.1},{"x":1569694980000,"y":17.08},{"x":1569695040000,"y":17.09},{"x":1569695100000,"y":17.12},{"x":1569695160000,"y":17.11},{"x":1569695220000,"y":17.1},{"x":1569695280000,"y":17.08},{"x":1569695340000,"y":17.07},{"x":1569695400000,"y":17.1},{"x":1569695460000,"y":17.09},{"x":1569695520000,"y":17.11},{"x":1569695580000,"y":17.1},{"x":1569695640000,"y":17.1},{"x":1569695700000,"y":17.1},{"x":1569695760000,"y":17.1},{"x":1569695820000,"y":17.53},{"x":1569695880000,"y":17.17},{"x":1569695940000,"y":17.17},{"x":1569696000000,"y":17.17},{"x":1569696060000,"y":17.17},{"x":1569696120000,"y":17.17},{"x":1569696180000,"y":17.1},{"x":1569696240000,"y":17.1},{"x":1569696300000,"y":17.1},{"x":1569696360000,"y":17.09},{"x":1569696420000,"y":17.11},{"x":1569696480000,"y":17.1},{"x":1569696540000,"y":17.1},{"x":1569696600000,"y":17.1},{"x":1569696660000,"y":17.1},{"x":1569696720000,"y":17.09},{"x":1569696780000,"y":17.1},{"x":1569696840000,"y":17.09},{"x":1569696900000,"y":17.09},{"x":1569696960000,"y":17.1},{"x":1569697020000,"y":17.09},{"x":1569697080000,"y":17.11},{"x":1569697140000,"y":17.09},{"x":1569697200000,"y":17.09},{"x":1569697260000,"y":17.08},{"x":1569697320000,"y":17.08},{"x":1569697380000,"y":17.12},{"x":1569697440000,"y":17.11},{"x":1569697500000,"y":17.11},{"x":1569697560000,"y":17.11},{"x":1569697620000,"y":17.1},{"x":1569697680000,"y":17.1},{"x":1569697740000,"y":17.1},{"x":1569697800000,"y":17.11},{"x":1569697860000,"y":17.11},{"x":1569697920000,"y":17.11},{"x":1569697980000,"y":17.12},{"x":1569698040000,"y":17.11},{"x":1569698100000,"y":17.11},{"x":1569698160000,"y":17.11},{"x":1569698220000,"y":17.11},{"x":1569698280000,"y":17.13},{"x":1569698340000,"y":17.1},{"x":1569698400000,"y":17.1},{"x":1569698460000,"y":17.1},{"x":1569698520000,"y":17.11},{"x":1569698580000,"y":17.12},{"x":1569698640000,"y":17.12},{"x":1569698700000,"y":17.1},{"x":1569698760000,"y":17.1},{"x":1569698820000,"y":17.11},{"x":1569698880000,"y":17.12},{"x":1569698940000,"y":17.11},{"x":1569699000000,"y":17.12},{"x":1569699060000,"y":17.12},{"x":1569699120000,"y":17.12},{"x":1569699180000,"y":17.13},{"x":1569699240000,"y":17.14},{"x":1569699300000,"y":17.14},{"x":1569699360000,"y":17.15},{"x":1569699420000,"y":17.15},{"x":1569699480000,"y":17.15},{"x":1569699540000,"y":17.15},{"x":1569699600000,"y":17.14},{"x":1569699660000,"y":17.14},{"x":1569699720000,"y":17.14},{"x":1569699780000,"y":17.14},{"x":1569699840000,"y":17.15},{"x":1569699900000,"y":17.14},{"x":1569699960000,"y":17.14},{"x":1569700020000,"y":17.14},{"x":1569700080000,"y":17.14},{"x":1569700140000,"y":17.15},{"x":1569700200000,"y":17.14},{"x":1569700260000,"y":17.14},{"x":1569700320000,"y":17.15},{"x":1569700380000,"y":17.15},{"x":1569700440000,"y":17.16},{"x":1569700500000,"y":17.13},{"x":1569700560000,"y":17.13},{"x":1569700620000,"y":17.13},{"x":1569700680000,"y":17.13},{"x":1569700740000,"y":17.14},{"x":1569700800000,"y":17.14},{"x":1569700860000,"y":17.14},{"x":1569700920000,"y":17.13},{"x":1569700980000,"y":17.13},{"x":1569701040000,"y":17.15},{"x":1569701100000,"y":17.15},{"x":1569701160000,"y":17.15},{"x":1569701220000,"y":17.15},{"x":1569701280000,"y":17.15},{"x":1569701340000,"y":17.15},{"x":1569701400000,"y":17.13},{"x":1569701460000,"y":17.13},{"x":1569701520000,"y":17.13},{"x":1569701580000,"y":17.13},{"x":1569701640000,"y":17.13},{"x":1569701700000,"y":17.18},{"x":1569701760000,"y":17.17},{"x":1569701820000,"y":17.16},{"x":1569701880000,"y":17.16},{"x":1569701940000,"y":17.16},{"x":1569702000000,"y":17.17},{"x":1569702060000,"y":17.16},{"x":1569702120000,"y":17.16},{"x":1569702180000,"y":17.16},{"x":1569702240000,"y":17.16},{"x":1569702300000,"y":17.17},{"x":1569702360000,"y":17.15},{"x":1569702420000,"y":17.15},{"x":1569702480000,"y":17.15},{"x":1569702540000,"y":17.15},{"x":1569702600000,"y":17.15},{"x":1569702660000,"y":17.14},{"x":1569702720000,"y":17.15},{"x":1569702780000,"y":17.14},{"x":1569702840000,"y":17.14},{"x":1569702900000,"y":17.16},{"x":1569702960000,"y":17.16},{"x":1569703020000,"y":17.16},{"x":1569703080000,"y":17.15},{"x":1569703140000,"y":17.17},{"x":1569703200000,"y":17.18},{"x":1569703260000,"y":17.15},{"x":1569703320000,"y":17.16},{"x":1569703380000,"y":17.16},{"x":1569703440000,"y":17.16},{"x":1569703500000,"y":17.16},{"x":1569703560000,"y":17.16},{"x":1569703620000,"y":17.15},{"x":1569703680000,"y":17.15},{"x":1569703740000,"y":17.16},{"x":1569703800000,"y":17.17},{"x":1569703860000,"y":17.13},{"x":1569703920000,"y":17.13},{"x":1569703980000,"y":17.13},{"x":1569704040000,"y":17.12},{"x":1569704100000,"y":17.16},{"x":1569704160000,"y":17.17},{"x":1569704220000,"y":17.17},{"x":1569704280000,"y":17.17},{"x":1569704340000,"y":17.16},{"x":1569704400000,"y":17.16},{"x":1569704460000,"y":17.18},{"x":1569704520000,"y":17.16},{"x":1569704580000,"y":17.17},{"x":1569704640000,"y":17.17},{"x":1569704700000,"y":17.16},{"x":1569704760000,"y":17.16},{"x":1569704820000,"y":17.15},{"x":1569704880000,"y":17.15},{"x":1569704940000,"y":17.14},{"x":1569705000000,"y":17.15},{"x":1569705060000,"y":17.16},{"x":1569705120000,"y":17.15},{"x":1569705180000,"y":17.15},{"x":1569705240000,"y":17.15},{"x":1569705300000,"y":17.14},{"x":1569705360000,"y":17.15},{"x":1569705420000,"y":17.14},{"x":1569705480000,"y":17.14},{"x":1569705540000,"y":17.13},{"x":1569705600000,"y":17.13},{"x":1569705660000,"y":17.14},{"x":1569705720000,"y":17.13},{"x":1569705780000,"y":17.13},{"x":1569705840000,"y":17.13},{"x":1569705900000,"y":17.16},{"x":1569705960000,"y":17.16},{"x":1569706020000,"y":17.14},{"x":1569706080000,"y":17.14},{"x":1569706140000,"y":17.14},{"x":1569706200000,"y":17.14},{"x":1569706260000,"y":17.15},{"x":1569706320000,"y":17.15},{"x":1569706380000,"y":17.15},{"x":1569706440000,"y":17.15},{"x":1569706500000,"y":17.15},{"x":1569706560000,"y":17.16},{"x":1569706620000,"y":17.06},{"x":1569706680000,"y":16.85},{"x":1569706740000,"y":16.83},{"x":1569706800000,"y":16.84},{"x":1569706860000,"y":16.84},{"x":1569706920000,"y":16.86},{"x":1569706980000,"y":16.85},{"x":1569707040000,"y":16.85},{"x":1569707100000,"y":16.83},{"x":1569707160000,"y":16.83},{"x":1569707220000,"y":16.86},{"x":1569707280000,"y":16.85},{"x":1569707340000,"y":16.85},{"x":1569707400000,"y":16.82},{"x":1569707460000,"y":16.81},{"x":1569707520000,"y":16.85},{"x":1569707580000,"y":16.83},{"x":1569707640000,"y":16.83},{"x":1569707700000,"y":16.86},{"x":1569707760000,"y":16.85},{"x":1569707820000,"y":16.85},{"x":1569707880000,"y":16.82},{"x":1569707940000,"y":16.83},{"x":1569708000000,"y":16.85},{"x":1569708060000,"y":16.86},{"x":1569708120000,"y":16.86},{"x":1569708180000,"y":16.86},{"x":1569708240000,"y":16.86},{"x":1569708300000,"y":16.86},{"x":1569708360000,"y":16.86},{"x":1569708420000,"y":16.87},{"x":1569708480000,"y":16.84},{"x":1569708540000,"y":16.86},{"x":1569708600000,"y":16.85},{"x":1569708660000,"y":16.85},{"x":1569708720000,"y":16.86},{"x":1569708780000,"y":16.82},{"x":1569708840000,"y":16.82},{"x":1569708900000,"y":16.82},{"x":1569708960000,"y":16.82},{"x":1569709020000,"y":16.84},{"x":1569709080000,"y":16.86},{"x":1569709140000,"y":16.86},{"x":1569709200000,"y":16.86},{"x":1569709260000,"y":16.86},{"x":1569709320000,"y":16.86},{"x":1569709380000,"y":16.86},{"x":1569709440000,"y":16.85},{"x":1569709500000,"y":16.85},{"x":1569709560000,"y":16.85},{"x":1569709620000,"y":16.85},{"x":1569709680000,"y":16.86},{"x":1569709740000,"y":16.85},{"x":1569709800000,"y":16.86},{"x":1569709860000,"y":16.86},{"x":1569709920000,"y":16.85},{"x":1569709980000,"y":16.86},{"x":1569710040000,"y":16.85},{"x":1569710100000,"y":16.84},{"x":1569710160000,"y":16.84},{"x":1569710220000,"y":16.84},{"x":1569710280000,"y":16.86},{"x":1569710340000,"y":16.86},{"x":1569710400000,"y":16.87},{"x":1569710460000,"y":16.86},{"x":1569710520000,"y":16.86},{"x":1569710580000,"y":16.88},{"x":1569710640000,"y":16.86},{"x":1569710700000,"y":16.86},{"x":1569710760000,"y":16.86},{"x":1569710820000,"y":16.86},{"x":1569710880000,"y":16.87},{"x":1569710940000,"y":16.86},{"x":1569711000000,"y":16.86},{"x":1569711060000,"y":16.86},{"x":1569711120000,"y":16.86},{"x":1569711180000,"y":16.87},{"x":1569711240000,"y":16.86},{"x":1569711300000,"y":16.87},{"x":1569711360000,"y":16.87},{"x":1569711420000,"y":16.87},{"x":1569711480000,"y":16.87},{"x":1569711540000,"y":16.87},{"x":1569711600000,"y":16.87},{"x":1569711660000,"y":16.87},{"x":1569711720000,"y":16.87},{"x":1569711780000,"y":16.87},{"x":1569711840000,"y":16.87},{"x":1569711900000,"y":16.85},{"x":1569711960000,"y":16.85},{"x":1569712020000,"y":16.85},{"x":1569712080000,"y":16.86},{"x":1569712140000,"y":16.87},{"x":1569712200000,"y":16.87},{"x":1569712260000,"y":16.87},{"x":1569712320000,"y":16.87},{"x":1569712380000,"y":16.87},{"x":1569712440000,"y":16.87},{"x":1569712500000,"y":16.87},{"x":1569712560000,"y":16.86},{"x":1569712620000,"y":16.86},{"x":1569712680000,"y":16.86},{"x":1569712740000,"y":16.87},{"x":1569712800000,"y":16.87},{"x":1569712860000,"y":16.87},{"x":1569712920000,"y":16.87},{"x":1569712980000,"y":16.87},{"x":1569713040000,"y":16.87},{"x":1569713100000,"y":16.84},{"x":1569713160000,"y":16.84},{"x":1569713220000,"y":16.84},{"x":1569713280000,"y":16.84},{"x":1569713340000,"y":16.86},{"x":1569713400000,"y":16.88},{"x":1569713460000,"y":16.88},{"x":1569713520000,"y":16.87},{"x":1569713580000,"y":16.87},{"x":1569713640000,"y":16.88},{"x":1569713700000,"y":16.86},{"x":1569713760000,"y":16.86},{"x":1569713820000,"y":16.86},{"x":1569713880000,"y":16.86},{"x":1569713940000,"y":16.88},{"x":1569714000000,"y":16.88},{"x":1569714060000,"y":16.85},{"x":1569714120000,"y":16.85},{"x":1569714180000,"y":16.85},{"x":1569714240000,"y":16.85},{"x":1569714300000,"y":16.86},{"x":1569714360000,"y":16.85},{"x":1569714420000,"y":16.85},{"x":1569714480000,"y":16.84},{"x":1569714540000,"y":16.84},{"x":1569714600000,"y":16.86},{"x":1569714660000,"y":16.84},{"x":1569714720000,"y":16.84},{"x":1569714780000,"y":16.84},{"x":1569714840000,"y":16.84},{"x":1569714900000,"y":16.87},{"x":1569714960000,"y":16.86},{"x":1569715020000,"y":16.86},{"x":1569715080000,"y":16.86},{"x":1569715140000,"y":16.85},{"x":1569715200000,"y":16.87},{"x":1569715260000,"y":16.86},{"x":1569715320000,"y":16.86},{"x":1569715380000,"y":16.86},{"x":1569715440000,"y":16.86},{"x":1569715500000,"y":16.85},{"x":1569715560000,"y":16.83},{"x":1569715620000,"y":16.83},{"x":1569715680000,"y":16.84},{"x":1569715740000,"y":16.86},{"x":1569715800000,"y":16.87},{"x":1569715860000,"y":16.86},{"x":1569715920000,"y":16.86},{"x":1569715980000,"y":16.86},{"x":1569716040000,"y":16.85},{"x":1569716100000,"y":16.88},{"x":1569716160000,"y":16.85},{"x":1569716220000,"y":16.85},{"x":1569716280000,"y":16.85},{"x":1569716340000,"y":16.86},{"x":1569716400000,"y":16.86},{"x":1569716460000,"y":16.87},{"x":1569716520000,"y":16.85},{"x":1569716580000,"y":16.85},{"x":1569716640000,"y":16.85},{"x":1569716700000,"y":16.82},{"x":1569716760000,"y":16.83},{"x":1569716820000,"y":16.82},{"x":1569716880000,"y":16.82},{"x":1569716940000,"y":16.82},{"x":1569717000000,"y":16.82},{"x":1569717060000,"y":16.83},{"x":1569717120000,"y":16.81},{"x":1569717180000,"y":16.81},{"x":1569717240000,"y":16.81},{"x":1569717300000,"y":16.85},{"x":1569717360000,"y":16.85},{"x":1569717420000,"y":16.82},{"x":1569717480000,"y":16.82},{"x":1569717540000,"y":16.85},{"x":1569717600000,"y":16.86},{"x":1569717660000,"y":17.27},{"x":1569717720000,"y":16.93},{"x":1569717780000,"y":16.93},{"x":1569717840000,"y":16.93},{"x":1569717900000,"y":16.93},{"x":1569717960000,"y":16.93},{"x":1569718020000,"y":16.86},{"x":1569718080000,"y":16.86},{"x":1569718140000,"y":16.86},{"x":1569718200000,"y":16.86},{"x":1569718260000,"y":16.88},{"x":1569718320000,"y":16.87},{"x":1569718380000,"y":16.87},{"x":1569718440000,"y":16.87},{"x":1569718500000,"y":16.87},{"x":1569718560000,"y":16.87},{"x":1569718620000,"y":16.84},{"x":1569718680000,"y":16.83},{"x":1569718740000,"y":16.85},{"x":1569718800000,"y":16.86},{"x":1569718860000,"y":16.86},{"x":1569718920000,"y":16.85},{"x":1569718980000,"y":16.83},{"x":1569719040000,"y":16.83},{"x":1569719100000,"y":16.87},{"x":1569719160000,"y":16.86},{"x":1569719220000,"y":16.85},{"x":1569719280000,"y":16.83},{"x":1569719340000,"y":16.86},{"x":1569719400000,"y":16.84},{"x":1569719460000,"y":16.84},{"x":1569719520000,"y":16.87},{"x":1569719580000,"y":16.87},{"x":1569719640000,"y":16.87},{"x":1569719700000,"y":16.87},{"x":1569719760000,"y":16.86},{"x":1569719820000,"y":16.86},{"x":1569719880000,"y":16.83},{"x":1569719940000,"y":16.83},{"x":1569720000000,"y":16.81},{"x":1569720060000,"y":16.81},{"x":1569720120000,"y":16.83},{"x":1569720180000,"y":16.84},{"x":1569720240000,"y":16.84},{"x":1569720300000,"y":16.86},{"x":1569720360000,"y":16.86},{"x":1569720420000,"y":16.88},{"x":1569720480000,"y":16.86},{"x":1569720540000,"y":16.86},{"x":1569720600000,"y":16.86},{"x":1569720660000,"y":16.86},{"x":1569720720000,"y":16.86},{"x":1569720780000,"y":16.86},{"x":1569720840000,"y":16.84},{"x":1569720900000,"y":16.84},{"x":1569720960000,"y":16.84},{"x":1569721020000,"y":16.84},{"x":1569721080000,"y":16.86},{"x":1569721140000,"y":16.86},{"x":1569721200000,"y":16.86},{"x":1569721260000,"y":16.86},{"x":1569721320000,"y":16.87},{"x":1569721380000,"y":16.88},{"x":1569721440000,"y":16.87},{"x":1569721500000,"y":16.87},{"x":1569721560000,"y":16.87},{"x":1569721620000,"y":16.87},{"x":1569721680000,"y":16.88},{"x":1569721740000,"y":16.87},{"x":1569721800000,"y":16.87},{"x":1569721860000,"y":16.87},{"x":1569721920000,"y":16.87},{"x":1569721980000,"y":16.88},{"x":1569722040000,"y":16.88},{"x":1569722100000,"y":16.87},{"x":1569722160000,"y":16.87},{"x":1569722220000,"y":16.88},{"x":1569722280000,"y":16.89},{"x":1569722340000,"y":16.87},{"x":1569722400000,"y":16.88},{"x":1569722460000,"y":16.87},{"x":1569722520000,"y":16.87},{"x":1569722580000,"y":16.89},{"x":1569722640000,"y":16.87},{"x":1569722700000,"y":16.88},{"x":1569722760000,"y":16.88},{"x":1569722820000,"y":16.88},{"x":1569722880000,"y":16.88},{"x":1569722940000,"y":16.9},{"x":1569723000000,"y":16.86},{"x":1569723060000,"y":16.86},{"x":1569723120000,"y":16.86},{"x":1569723180000,"y":16.84},{"x":1569723240000,"y":16.85},{"x":1569723300000,"y":16.86},{"x":1569723360000,"y":16.86},{"x":1569723420000,"y":16.86},{"x":1569723480000,"y":16.86},{"x":1569723540000,"y":16.87},{"x":1569723600000,"y":16.87},{"x":1569723660000,"y":16.86},{"x":1569723720000,"y":16.86},{"x":1569723780000,"y":16.86},{"x":1569723840000,"y":16.87},{"x":1569723900000,"y":16.86},{"x":1569723960000,"y":16.86},{"x":1569724020000,"y":16.86},{"x":1569724080000,"y":16.86},{"x":1569724140000,"y":16.88},{"x":1569724200000,"y":16.87},{"x":1569724260000,"y":16.87},{"x":1569724320000,"y":16.86},{"x":1569724380000,"y":16.86},{"x":1569724440000,"y":16.88},{"x":1569724500000,"y":16.86},{"x":1569724560000,"y":16.86},{"x":1569724620000,"y":16.86},{"x":1569724680000,"y":16.87},{"x":1569724740000,"y":16.88},{"x":1569724800000,"y":16.87},{"x":1569724860000,"y":16.87},{"x":1569724920000,"y":16.87},{"x":1569724980000,"y":16.86},{"x":1569725040000,"y":16.86},{"x":1569725100000,"y":16.87},{"x":1569725160000,"y":16.86},{"x":1569725220000,"y":16.86},{"x":1569725280000,"y":16.86},{"x":1569725340000,"y":16.86},{"x":1569725400000,"y":16.86},{"x":1569725460000,"y":16.84},{"x":1569725520000,"y":16.84},{"x":1569725580000,"y":16.84},{"x":1569725640000,"y":16.84},{"x":1569725700000,"y":16.85},{"x":1569725760000,"y":16.83},{"x":1569725820000,"y":16.83},{"x":1569725880000,"y":16.83},{"x":1569725940000,"y":16.85},{"x":1569726000000,"y":16.85},{"x":1569726060000,"y":16.83},{"x":1569726120000,"y":16.83},{"x":1569726180000,"y":16.83},{"x":1569726240000,"y":16.83},{"x":1569726300000,"y":16.88},{"x":1569726360000,"y":16.86},{"x":1569726420000,"y":16.86},{"x":1569726480000,"y":16.86},{"x":1569726540000,"y":16.86},{"x":1569726600000,"y":16.87},{"x":1569726660000,"y":16.86},{"x":1569726720000,"y":16.87},{"x":1569726780000,"y":16.87},{"x":1569726840000,"y":16.86},{"x":1569726900000,"y":16.88},{"x":1569726960000,"y":16.86},{"x":1569727020000,"y":16.86},{"x":1569727080000,"y":16.86},{"x":1569727140000,"y":16.86},{"x":1569727200000,"y":16.88},{"x":1569727260000,"y":16.87},{"x":1569727320000,"y":16.87},{"x":1569727380000,"y":16.87},{"x":1569727440000,"y":16.87},{"x":1569727500000,"y":16.86},{"x":1569727560000,"y":16.89},{"x":1569727620000,"y":16.87},{"x":1569727680000,"y":16.87},{"x":1569727740000,"y":16.87},{"x":1569727800000,"y":16.88},{"x":1569727860000,"y":16.87},{"x":1569727920000,"y":16.85},{"x":1569727980000,"y":16.84},{"x":1569728040000,"y":16.84},{"x":1569728100000,"y":16.87},{"x":1569728160000,"y":16.88},{"x":1569728220000,"y":16.87},{"x":1569728280000,"y":16.87},{"x":1569728340000,"y":16.87},{"x":1569728400000,"y":16.87},{"x":1569728460000,"y":16.88},{"x":1569728520000,"y":16.87},{"x":1569728580000,"y":16.87},{"x":1569728640000,"y":16.87},{"x":1569728700000,"y":16.85},{"x":1569728760000,"y":16.86},{"x":1569728820000,"y":16.86},{"x":1569728880000,"y":16.86},{"x":1569728940000,"y":16.86},{"x":1569729000000,"y":16.88},{"x":1569729060000,"y":16.9},{"x":1569729120000,"y":16.87},{"x":1569729180000,"y":16.87},{"x":1569729240000,"y":16.87},{"x":1569729300000,"y":16.87},{"x":1569729360000,"y":16.87},{"x":1569729420000,"y":16.89},{"x":1569729480000,"y":16.87},{"x":1569729540000,"y":16.87},{"x":1569729600000,"y":16.88},{"x":1569729660000,"y":16.88},{"x":1569729720000,"y":16.89},{"x":1569729780000,"y":16.87},{"x":1569729840000,"y":16.87},{"x":1569729900000,"y":16.87},{"x":1569729960000,"y":16.87},{"x":1569730020000,"y":16.88},{"x":1569730080000,"y":16.86},{"x":1569730140000,"y":16.86},{"x":1569730200000,"y":16.88},{"x":1569730260000,"y":16.88},{"x":1569730320000,"y":16.88},{"x":1569730380000,"y":16.87},{"x":1569730440000,"y":16.87},{"x":1569730500000,"y":16.88},{"x":1569730560000,"y":16.88},{"x":1569730620000,"y":16.9},{"x":1569730680000,"y":16.88},{"x":1569730740000,"y":16.88},{"x":1569730800000,"y":16.89},{"x":1569730860000,"y":16.88},{"x":1569730920000,"y":16.9},{"x":1569730980000,"y":16.87},{"x":1569731040000,"y":16.87},{"x":1569731100000,"y":16.88},{"x":1569731160000,"y":16.88},{"x":1569731220000,"y":16.89},{"x":1569731280000,"y":16.88},{"x":1569731340000,"y":16.88},{"x":1569731400000,"y":16.89},{"x":1569731460000,"y":16.89},{"x":1569731520000,"y":16.89},{"x":1569731580000,"y":16.89},{"x":1569731640000,"y":16.88},{"x":1569731700000,"y":16.88},{"x":1569731760000,"y":16.88},{"x":1569731820000,"y":16.88},{"x":1569731880000,"y":16.89},{"x":1569731940000,"y":16.87},{"x":1569732000000,"y":16.85},{"x":1569732060000,"y":16.85},{"x":1569732120000,"y":16.85},{"x":1569732180000,"y":16.87},{"x":1569732240000,"y":16.86},{"x":1569732300000,"y":16.86},{"x":1569732360000,"y":16.86},{"x":1569732420000,"y":16.85},{"x":1569732480000,"y":16.89},{"x":1569732540000,"y":16.82},{"x":1569732600000,"y":16.81},{"x":1569732660000,"y":16.81},{"x":1569732720000,"y":16.81},{"x":1569732780000,"y":16.82},{"x":1569732840000,"y":16.81},{"x":1569732900000,"y":16.81},{"x":1569732960000,"y":16.81},{"x":1569733020000,"y":16.81},{"x":1569733080000,"y":16.82},{"x":1569733140000,"y":16.8},{"x":1569733200000,"y":16.82},{"x":1569733260000,"y":16.82},{"x":1569733320000,"y":16.81},{"x":1569733380000,"y":16.83},{"x":1569733440000,"y":16.82},{"x":1569733500000,"y":16.83},{"x":1569733560000,"y":16.83},{"x":1569733620000,"y":16.83},{"x":1569733680000,"y":16.85},{"x":1569733740000,"y":16.83},{"x":1569733800000,"y":16.82},{"x":1569733860000,"y":16.82},{"x":1569733920000,"y":16.82},{"x":1569733980000,"y":16.82},{"x":1569734040000,"y":16.85},{"x":1569734100000,"y":16.82},{"x":1569734160000,"y":16.82},{"x":1569734220000,"y":16.82},{"x":1569734280000,"y":16.82},{"x":1569734340000,"y":16.84},{"x":1569734400000,"y":16.83},{"x":1569734460000,"y":16.82},{"x":1569734520000,"y":16.82},{"x":1569734580000,"y":16.82},{"x":1569734640000,"y":16.83},{"x":1569734700000,"y":16.82},{"x":1569734760000,"y":16.82},{"x":1569734820000,"y":16.82},{"x":1569734880000,"y":16.83},{"x":1569734940000,"y":16.84},{"x":1569735000000,"y":16.83},{"x":1569735060000,"y":16.83},{"x":1569735120000,"y":16.83},{"x":1569735180000,"y":16.83},{"x":1569735240000,"y":16.84},{"x":1569735300000,"y":16.83},{"x":1569735360000,"y":16.83},{"x":1569735420000,"y":16.83},{"x":1569735480000,"y":16.83},{"x":1569735540000,"y":16.85},{"x":1569735600000,"y":16.83},{"x":1569735660000,"y":16.82},{"x":1569735720000,"y":16.82},{"x":1569735780000,"y":16.82},{"x":1569735840000,"y":16.84},{"x":1569735900000,"y":16.83},{"x":1569735960000,"y":16.83},{"x":1569736020000,"y":16.83},{"x":1569736080000,"y":16.83},{"x":1569736140000,"y":16.83},{"x":1569736200000,"y":16.84},{"x":1569736260000,"y":16.83},{"x":1569736320000,"y":16.83},{"x":1569736380000,"y":16.83},{"x":1569736440000,"y":16.83},{"x":1569736500000,"y":16.85},{"x":1569736560000,"y":16.83},{"x":1569736620000,"y":16.83},{"x":1569736680000,"y":16.83},{"x":1569736740000,"y":16.83},{"x":1569736800000,"y":16.85},{"x":1569736860000,"y":16.84},{"x":1569736920000,"y":16.84},{"x":1569736980000,"y":16.84},{"x":1569737040000,"y":16.84},{"x":1569737100000,"y":16.85},{"x":1569737160000,"y":16.84},{"x":1569737220000,"y":16.85},{"x":1569737280000,"y":16.85},{"x":1569737340000,"y":16.83},{"x":1569737400000,"y":16.84},{"x":1569737460000,"y":16.83},{"x":1569737520000,"y":16.83},{"x":1569737580000,"y":16.83},{"x":1569737640000,"y":16.83},{"x":1569737700000,"y":16.85},{"x":1569737760000,"y":16.84},{"x":1569737820000,"y":16.84},{"x":1569737880000,"y":16.84},{"x":1569737940000,"y":16.84},{"x":1569738000000,"y":16.86},{"x":1569738060000,"y":16.82},{"x":1569738120000,"y":16.82},{"x":1569738180000,"y":16.82},{"x":1569738240000,"y":16.82},{"x":1569738300000,"y":16.81},{"x":1569738360000,"y":16.84},{"x":1569738420000,"y":16.84},{"x":1569738480000,"y":16.84},{"x":1569738540000,"y":16.84},{"x":1569738600000,"y":16.84},{"x":1569738660000,"y":16.84},{"x":1569738720000,"y":16.83},{"x":1569738780000,"y":16.83},{"x":1569738840000,"y":16.83},{"x":1569738900000,"y":16.84},{"x":1569738960000,"y":16.83},{"x":1569739020000,"y":16.81},{"x":1569739080000,"y":16.81},{"x":1569739140000,"y":16.84},{"x":1569739200000,"y":16.85},{"x":1569739260000,"y":16.84},{"x":1569739320000,"y":16.82},{"x":1569739380000,"y":16.81},{"x":1569739440000,"y":16.81},{"x":1569739500000,"y":16.84},{"x":1569739560000,"y":17.21},{"x":1569739620000,"y":16.92},{"x":1569739680000,"y":16.91},{"x":1569739740000,"y":16.91},{"x":1569739800000,"y":16.92},{"x":1569739860000,"y":16.91},{"x":1569739920000,"y":16.84},{"x":1569739980000,"y":16.84},{"x":1569740040000,"y":16.84},{"x":1569740100000,"y":16.84},{"x":1569740160000,"y":16.86},{"x":1569740220000,"y":16.85},{"x":1569740280000,"y":16.85},{"x":1569740340000,"y":16.84},{"x":1569740400000,"y":16.84},{"x":1569740460000,"y":16.85},{"x":1569740520000,"y":16.84},{"x":1569740580000,"y":16.84},{"x":1569740640000,"y":16.84},{"x":1569740700000,"y":16.85},{"x":1569740760000,"y":16.85},{"x":1569740820000,"y":16.83},{"x":1569740880000,"y":16.82},{"x":1569740940000,"y":16.85},{"x":1569741000000,"y":16.85},{"x":1569741060000,"y":16.85},{"x":1569741120000,"y":16.86},{"x":1569741180000,"y":16.83},{"x":1569741240000,"y":16.83},{"x":1569741300000,"y":16.84},{"x":1569741360000,"y":16.84},{"x":1569741420000,"y":16.86},{"x":1569741480000,"y":16.85},{"x":1569741540000,"y":16.85},{"x":1569741600000,"y":16.85},{"x":1569741660000,"y":16.85},{"x":1569741720000,"y":16.85},{"x":1569741780000,"y":16.83},{"x":1569741840000,"y":16.83},{"x":1569741900000,"y":16.86},{"x":1569741960000,"y":16.86},{"x":1569742020000,"y":16.87},{"x":1569742080000,"y":16.85},{"x":1569742140000,"y":16.85},{"x":1569742200000,"y":16.86},{"x":1569742260000,"y":16.86},{"x":1569742320000,"y":16.86},{"x":1569742380000,"y":16.83},{"x":1569742440000,"y":16.83},{"x":1569742500000,"y":16.86},{"x":1569742560000,"y":16.86},{"x":1569742620000,"y":16.88},{"x":1569742680000,"y":16.86},{"x":1569742740000,"y":16.86},{"x":1569742800000,"y":16.83},{"x":1569742860000,"y":16.83},{"x":1569742920000,"y":16.83},{"x":1569742980000,"y":16.87},{"x":1569743040000,"y":16.86},{"x":1569743100000,"y":16.85},{"x":1569743160000,"y":16.83},{"x":1569743220000,"y":16.82},{"x":1569743280000,"y":16.84},{"x":1569743340000,"y":16.83},{"x":1569743400000,"y":16.84},{"x":1569743460000,"y":16.84},{"x":1569743520000,"y":16.83},{"x":1569743580000,"y":16.82},{"x":1569743640000,"y":16.8},{"x":1569743700000,"y":16.82},{"x":1569743760000,"y":16.82},{"x":1569743820000,"y":16.82},{"x":1569743880000,"y":16.85},{"x":1569743940000,"y":16.83},{"x":1569744000000,"y":16.84},{"x":1569744060000,"y":16.84},{"x":1569744120000,"y":16.83},{"x":1569744180000,"y":16.85},{"x":1569744240000,"y":16.83},{"x":1569744300000,"y":16.84},{"x":1569744360000,"y":16.84},{"x":1569744420000,"y":16.84},{"x":1569744480000,"y":16.85},{"x":1569744540000,"y":16.83},{"x":1569744600000,"y":16.83},{"x":1569744660000,"y":16.83},{"x":1569744720000,"y":16.84},{"x":1569744780000,"y":16.85},{"x":1569744840000,"y":16.83},{"x":1569744900000,"y":16.83},{"x":1569744960000,"y":16.83},{"x":1569745020000,"y":16.83},{"x":1569745080000,"y":16.83},{"x":1569745140000,"y":16.82},{"x":1569745200000,"y":16.84},{"x":1569745260000,"y":16.84},{"x":1569745320000,"y":16.84},{"x":1569745380000,"y":16.84},{"x":1569745440000,"y":16.85},{"x":1569745500000,"y":16.84},{"x":1569745560000,"y":16.84},{"x":1569745620000,"y":16.83},{"x":1569745680000,"y":16.83},{"x":1569745740000,"y":16.83},{"x":1569745800000,"y":16.83},{"x":1569745860000,"y":16.83},{"x":1569745920000,"y":16.83},{"x":1569745980000,"y":16.82},{"x":1569746040000,"y":16.85},{"x":1569746100000,"y":16.84},{"x":1569746160000,"y":16.84},{"x":1569746220000,"y":16.84},{"x":1569746280000,"y":16.83},{"x":1569746340000,"y":16.86},{"x":1569746400000,"y":16.83},{"x":1569746460000,"y":16.83},{"x":1569746520000,"y":16.83},{"x":1569746580000,"y":16.83},{"x":1569746640000,"y":16.84},{"x":1569746700000,"y":16.84},{"x":1569746760000,"y":16.84},{"x":1569746820000,"y":16.84},{"x":1569746880000,"y":16.84},{"x":1569746940000,"y":16.85},{"x":1569747000000,"y":16.85},{"x":1569747060000,"y":16.85},{"x":1569747120000,"y":16.85},{"x":1569747180000,"y":16.85},{"x":1569747240000,"y":16.87},{"x":1569747300000,"y":16.85},{"x":1569747360000,"y":16.85},{"x":1569747420000,"y":16.85},{"x":1569747480000,"y":16.85},{"x":1569747540000,"y":16.84},{"x":1569747600000,"y":16.84},{"x":1569747660000,"y":16.83},{"x":1569747720000,"y":16.83},{"x":1569747780000,"y":16.82},{"x":1569747840000,"y":16.82},{"x":1569747900000,"y":16.85},{"x":1569747960000,"y":16.84},{"x":1569748020000,"y":16.84},{"x":1569748080000,"y":16.84},{"x":1569748140000,"y":16.85},{"x":1569748200000,"y":16.87},{"x":1569748260000,"y":16.85},{"x":1569748320000,"y":16.85},{"x":1569748380000,"y":16.85},{"x":1569748440000,"y":16.85},{"x":1569748500000,"y":16.85},{"x":1569748560000,"y":16.84},{"x":1569748620000,"y":16.85},{"x":1569748680000,"y":16.85},{"x":1569748740000,"y":16.85},{"x":1569748800000,"y":16.86},{"x":1569748860000,"y":16.85},{"x":1569748920000,"y":16.85},{"x":1569748980000,"y":16.85},{"x":1569749040000,"y":16.85},{"x":1569749100000,"y":16.86},{"x":1569749160000,"y":16.84},{"x":1569749220000,"y":16.84},{"x":1569749280000,"y":16.84},{"x":1569749340000,"y":16.84},{"x":1569749400000,"y":16.86},{"x":1569749460000,"y":16.85},{"x":1569749520000,"y":16.85},{"x":1569749580000,"y":16.84},{"x":1569749640000,"y":16.85},{"x":1569749700000,"y":16.86},{"x":1569749760000,"y":16.85},{"x":1569749820000,"y":16.85},{"x":1569749880000,"y":16.85},{"x":1569749940000,"y":16.86},{"x":1569750000000,"y":16.86},{"x":1569750060000,"y":16.85},{"x":1569750120000,"y":16.85},{"x":1569750180000,"y":16.85},{"x":1569750240000,"y":16.85},{"x":1569750300000,"y":16.86},{"x":1569750360000,"y":16.87},{"x":1569750420000,"y":16.85},{"x":1569750480000,"y":16.85},{"x":1569750540000,"y":16.84},{"x":1569750600000,"y":16.86},{"x":1569750660000,"y":16.86},{"x":1569750720000,"y":16.85},{"x":1569750780000,"y":16.85},{"x":1569750840000,"y":16.85},{"x":1569750900000,"y":16.86},{"x":1569750960000,"y":16.86},{"x":1569751020000,"y":16.84},{"x":1569751080000,"y":16.84},{"x":1569751140000,"y":16.84},{"x":1569751200000,"y":16.83},{"x":1569751260000,"y":16.84},{"x":1569751320000,"y":16.83},{"x":1569751380000,"y":16.83},{"x":1569751440000,"y":16.83},{"x":1569751500000,"y":16.85},{"x":1569751560000,"y":16.86},{"x":1569751620000,"y":16.85},{"x":1569751680000,"y":16.85},{"x":1569751740000,"y":16.86},{"x":1569751800000,"y":16.85},{"x":1569751860000,"y":16.86},{"x":1569751920000,"y":16.83},{"x":1569751980000,"y":16.83},{"x":1569752040000,"y":16.83},{"x":1569752100000,"y":16.83},{"x":1569752160000,"y":16.84},{"x":1569752220000,"y":16.8},{"x":1569752280000,"y":16.8},{"x":1569752340000,"y":16.81},{"x":1569752400000,"y":16.82},{"x":1569752460000,"y":16.82},{"x":1569752520000,"y":16.81},{"x":1569752580000,"y":16.8},{"x":1569752640000,"y":16.8},{"x":1569752700000,"y":16.83},{"x":1569752760000,"y":16.83},{"x":1569752820000,"y":16.82},{"x":1569752880000,"y":16.8},{"x":1569752940000,"y":16.8},{"x":1569753000000,"y":16.83},{"x":1569753060000,"y":16.83},{"x":1569753120000,"y":16.86},{"x":1569753180000,"y":16.84},{"x":1569753240000,"y":16.84},{"x":1569753300000,"y":16.83},{"x":1569753360000,"y":16.83},{"x":1569753420000,"y":16.84},{"x":1569753480000,"y":16.83},{"x":1569753540000,"y":16.84},{"x":1569753600000,"y":16.83},{"x":1569753660000,"y":16.83},{"x":1569753720000,"y":16.83},{"x":1569753780000,"y":16.8},{"x":1569753840000,"y":16.8},{"x":1569753900000,"y":16.84},{"x":1569753960000,"y":16.84},{"x":1569754020000,"y":16.84},{"x":1569754080000,"y":16.81},{"x":1569754140000,"y":16.81},{"x":1569754200000,"y":16.84},{"x":1569754260000,"y":16.84},{"x":1569754320000,"y":16.85},{"x":1569754380000,"y":16.84},{"x":1569754440000,"y":16.84},{"x":1569754500000,"y":16.83},{"x":1569754560000,"y":16.83},{"x":1569754620000,"y":16.83},{"x":1569754680000,"y":16.85},{"x":1569754740000,"y":16.84},{"x":1569754800000,"y":16.83},{"x":1569754860000,"y":16.83},{"x":1569754920000,"y":16.83},{"x":1569754980000,"y":16.83},{"x":1569755040000,"y":16.81},{"x":1569755100000,"y":16.85},{"x":1569755160000,"y":16.85},{"x":1569755220000,"y":16.85},{"x":1569755280000,"y":16.86},{"x":1569755340000,"y":16.85},{"x":1569755400000,"y":16.85},{"x":1569755460000,"y":16.84},{"x":1569755520000,"y":16.84},{"x":1569755580000,"y":16.85},{"x":1569755640000,"y":16.84},{"x":1569755700000,"y":16.85},{"x":1569755760000,"y":16.85},{"x":1569755820000,"y":16.83},{"x":1569755880000,"y":16.85},{"x":1569755940000,"y":16.81},{"x":1569756000000,"y":16.85},{"x":1569756060000,"y":16.85},{"x":1569756120000,"y":16.85},{"x":1569756180000,"y":16.86},{"x":1569756240000,"y":16.84},{"x":1569756300000,"y":16.89},{"x":1569756360000,"y":16.83},{"x":1569756420000,"y":16.83},{"x":1569756480000,"y":16.84},{"x":1569756540000,"y":16.84},{"x":1569756600000,"y":16.85},{"x":1569756660000,"y":16.85},{"x":1569756720000,"y":16.85},{"x":1569756780000,"y":16.85},{"x":1569756840000,"y":16.86},{"x":1569756900000,"y":16.85},{"x":1569756960000,"y":16.84},{"x":1569757020000,"y":16.85},{"x":1569757080000,"y":16.85},{"x":1569757140000,"y":16.88},{"x":1569757200000,"y":17.15},{"x":1569757260000,"y":15.87},{"x":1569757320000,"y":15.55},{"x":1569757380000,"y":15.54},{"x":1569757440000,"y":15.56},{"x":1569757500000,"y":15.51},{"x":1569757560000,"y":15.43},{"x":1569757620000,"y":15.41},{"x":1569757680000,"y":15.4},{"x":1569757740000,"y":15.42},{"x":1569757800000,"y":15.41},{"x":1569757860000,"y":15.41},{"x":1569757920000,"y":15.41},{"x":1569757980000,"y":15.41},{"x":1569758040000,"y":15.41},{"x":1569758100000,"y":15.42},{"x":1569758160000,"y":15.42},{"x":1569758220000,"y":15.41},{"x":1569758280000,"y":15.41},{"x":1569758340000,"y":15.41},{"x":1569758400000,"y":15.4},{"x":1569758460000,"y":15.4},{"x":1569758520000,"y":15.4},{"x":1569758580000,"y":15.4},{"x":1569758640000,"y":15.42},{"x":1569758700000,"y":15.42},{"x":1569758760000,"y":15.42},{"x":1569758820000,"y":15.42},{"x":1569758880000,"y":15.42},{"x":1569758940000,"y":15.42},{"x":1569759000000,"y":15.43},{"x":1569759060000,"y":15.41},{"x":1569759120000,"y":15.41},{"x":1569759180000,"y":15.41},{"x":1569759240000,"y":15.41},{"x":1569759300000,"y":15.44},{"x":1569759360000,"y":15.43},{"x":1569759420000,"y":15.43},{"x":1569759480000,"y":15.42},{"x":1569759540000,"y":15.42},{"x":1569759600000,"y":15.44},{"x":1569759660000,"y":15.43},{"x":1569759720000,"y":15.43},{"x":1569759780000,"y":15.43},{"x":1569759840000,"y":15.42},{"x":1569759900000,"y":15.44},{"x":1569759960000,"y":15.43},{"x":1569760020000,"y":15.43},{"x":1569760080000,"y":15.43},{"x":1569760140000,"y":15.43},{"x":1569760200000,"y":15.44},{"x":1569760260000,"y":15.43},{"x":1569760320000,"y":15.43},{"x":1569760380000,"y":15.42},{"x":1569760440000,"y":15.42},{"x":1569760500000,"y":15.44},{"x":1569760560000,"y":15.43},{"x":1569760620000,"y":15.43},{"x":1569760680000,"y":15.42},{"x":1569760740000,"y":15.43},{"x":1569760800000,"y":15.42},{"x":1569760860000,"y":15.4},{"x":1569760920000,"y":15.4},{"x":1569760980000,"y":15.4},{"x":1569761040000,"y":15.4},{"x":1569761100000,"y":15.42},{"x":1569761160000,"y":15.41},{"x":1569761220000,"y":15.41},{"x":1569761280000,"y":15.4},{"x":1569761340000,"y":15.4},{"x":1569761400000,"y":15.6},{"x":1569761460000,"y":15.59},{"x":1569761520000,"y":15.49},{"x":1569761580000,"y":15.49},{"x":1569761640000,"y":15.49},{"x":1569761700000,"y":15.49},{"x":1569761760000,"y":15.43},{"x":1569761820000,"y":15.42},{"x":1569761880000,"y":15.42},{"x":1569761940000,"y":15.41},{"x":1569762000000,"y":15.42},{"x":1569762060000,"y":15.44},{"x":1569762120000,"y":15.42},{"x":1569762180000,"y":15.41},{"x":1569762240000,"y":15.41},{"x":1569762300000,"y":15.42},{"x":1569762360000,"y":15.44},{"x":1569762420000,"y":15.43},{"x":1569762480000,"y":15.43},{"x":1569762540000,"y":15.42},{"x":1569762600000,"y":15.43},{"x":1569762660000,"y":15.44},{"x":1569762720000,"y":15.43},{"x":1569762780000,"y":15.43},{"x":1569762840000,"y":15.43},{"x":1569762900000,"y":15.43},{"x":1569762960000,"y":15.43},{"x":1569763020000,"y":15.41},{"x":1569763080000,"y":15.4},{"x":1569763140000,"y":15.4},{"x":1569763200000,"y":15.4},{"x":1569763260000,"y":15.43},{"x":1569763320000,"y":15.43},{"x":1569763380000,"y":15.43},{"x":1569763440000,"y":15.43},{"x":1569763500000,"y":15.44},{"x":1569763560000,"y":15.45},{"x":1569763620000,"y":15.43},{"x":1569763680000,"y":15.43},{"x":1569763740000,"y":15.43},{"x":1569763800000,"y":15.43},{"x":1569763860000,"y":15.44},{"x":1569763920000,"y":15.44},{"x":1569763980000,"y":15.44},{"x":1569764040000,"y":15.44},{"x":1569764100000,"y":15.42},{"x":1569764160000,"y":15.42},{"x":1569764220000,"y":15.44},{"x":1569764280000,"y":15.44},{"x":1569764340000,"y":15.44},{"x":1569764400000,"y":15.43},{"x":1569764460000,"y":15.43},{"x":1569764520000,"y":15.44},{"x":1569764580000,"y":15.43},{"x":1569764640000,"y":15.43},{"x":1569764700000,"y":15.43},{"x":1569764760000,"y":15.43},{"x":1569764820000,"y":15.44},{"x":1569764880000,"y":15.43},{"x":1569764940000,"y":15.43},{"x":1569765000000,"y":15.44},{"x":1569765060000,"y":15.44},{"x":1569765120000,"y":15.43},{"x":1569765180000,"y":15.41},{"x":1569765240000,"y":15.41},{"x":1569765300000,"y":15.42},{"x":1569765360000,"y":15.42},{"x":1569765420000,"y":15.44},{"x":1569765480000,"y":15.44},{"x":1569765540000,"y":15.43},{"x":1569765600000,"y":15.39},{"x":1569765660000,"y":15.39},{"x":1569765720000,"y":15.41},{"x":1569765780000,"y":15.41},{"x":1569765840000,"y":15.41},{"x":1569765900000,"y":15.45},{"x":1569765960000,"y":15.44},{"x":1569766020000,"y":15.45},{"x":1569766080000,"y":15.44},{"x":1569766140000,"y":15.44},{"x":1569766200000,"y":15.45},{"x":1569766260000,"y":15.45},{"x":1569766320000,"y":15.46},{"x":1569766380000,"y":15.45},{"x":1569766440000,"y":15.45},{"x":1569766500000,"y":15.43},{"x":1569766560000,"y":15.43},{"x":1569766620000,"y":15.43},{"x":1569766680000,"y":15.45},{"x":1569766740000,"y":15.45},{"x":1569766800000,"y":15.44},{"x":1569766860000,"y":15.44},{"x":1569766920000,"y":15.44},{"x":1569766980000,"y":15.46},{"x":1569767040000,"y":15.46},{"x":1569767100000,"y":15.44},{"x":1569767160000,"y":15.44},{"x":1569767220000,"y":15.44},{"x":1569767280000,"y":15.47},{"x":1569767340000,"y":15.45},{"x":1569767400000,"y":15.42},{"x":1569767460000,"y":15.41},{"x":1569767520000,"y":15.41},{"x":1569767580000,"y":15.45},{"x":1569767640000,"y":15.46},{"x":1569767700000,"y":15.44},{"x":1569767760000,"y":15.44},{"x":1569767820000,"y":15.44},{"x":1569767880000,"y":15.45},{"x":1569767940000,"y":15.45},{"x":1569768000000,"y":15.45},{"x":1569768060000,"y":15.45},{"x":1569768120000,"y":15.45},{"x":1569768180000,"y":15.45},{"x":1569768240000,"y":15.42},{"x":1569768300000,"y":15.44},{"x":1569768360000,"y":15.44},{"x":1569768420000,"y":15.44},{"x":1569768480000,"y":15.43},{"x":1569768540000,"y":15.48},{"x":1569768600000,"y":15.46},{"x":1569768660000,"y":15.46},{"x":1569768720000,"y":15.46},{"x":1569768780000,"y":15.46},{"x":1569768840000,"y":15.45},{"x":1569768900000,"y":15.45},{"x":1569768960000,"y":15.45},{"x":1569769020000,"y":15.45},{"x":1569769080000,"y":15.45},{"x":1569769140000,"y":15.46},{"x":1569769200000,"y":15.45},{"x":1569769260000,"y":15.45},{"x":1569769320000,"y":15.44},{"x":1569769380000,"y":15.45},{"x":1569769440000,"y":15.47},{"x":1569769500000,"y":15.45},{"x":1569769560000,"y":15.45},{"x":1569769620000,"y":15.45},{"x":1569769680000,"y":15.45},{"x":1569769740000,"y":15.45},{"x":1569769800000,"y":15.43},{"x":1569769860000,"y":15.43},{"x":1569769920000,"y":15.43},{"x":1569769980000,"y":15.43},{"x":1569770040000,"y":15.45},{"x":1569770100000,"y":15.43},{"x":1569770160000,"y":15.43},{"x":1569770220000,"y":15.43},{"x":1569770280000,"y":15.43},{"x":1569770340000,"y":15.45},{"x":1569770400000,"y":15.43},{"x":1569770460000,"y":15.43},{"x":1569770520000,"y":15.43},{"x":1569770580000,"y":15.44},{"x":1569770640000,"y":15.45},{"x":1569770700000,"y":15.44},{"x":1569770760000,"y":15.44},{"x":1569770820000,"y":15.44},{"x":1569770880000,"y":15.44},{"x":1569770940000,"y":15.45},{"x":1569771000000,"y":15.41},{"x":1569771060000,"y":15.41},{"x":1569771120000,"y":15.41},{"x":1569771180000,"y":15.41},{"x":1569771240000,"y":15.41},{"x":1569771300000,"y":15.46},{"x":1569771360000,"y":15.44},{"x":1569771420000,"y":15.44},{"x":1569771480000,"y":15.44},{"x":1569771540000,"y":15.44},{"x":1569771600000,"y":15.45},{"x":1569771660000,"y":15.44},{"x":1569771720000,"y":15.43},{"x":1569771780000,"y":15.43},{"x":1569771840000,"y":15.43},{"x":1569771900000,"y":15.46},{"x":1569771960000,"y":15.45},{"x":1569772020000,"y":15.45},{"x":1569772080000,"y":15.45},{"x":1569772140000,"y":15.45},{"x":1569772200000,"y":15.45},{"x":1569772260000,"y":15.44},{"x":1569772320000,"y":15.44},{"x":1569772380000,"y":15.44},{"x":1569772440000,"y":15.44},{"x":1569772500000,"y":15.45},{"x":1569772560000,"y":15.42},{"x":1569772620000,"y":15.43},{"x":1569772680000,"y":15.42},{"x":1569772740000,"y":15.43},{"x":1569772800000,"y":15.45},{"x":1569772860000,"y":15.46},{"x":1569772920000,"y":15.45},{"x":1569772980000,"y":15.45},{"x":1569773040000,"y":15.45},{"x":1569773100000,"y":15.46},{"x":1569773160000,"y":15.44},{"x":1569773220000,"y":15.44},{"x":1569773280000,"y":15.44},{"x":1569773340000,"y":15.44},{"x":1569773400000,"y":15.47},{"x":1569773460000,"y":15.45},{"x":1569773520000,"y":15.45},{"x":1569773580000,"y":15.45},{"x":1569773640000,"y":15.45},{"x":1569773700000,"y":15.45},{"x":1569773760000,"y":15.46},{"x":1569773820000,"y":15.45},{"x":1569773880000,"y":15.45},{"x":1569773940000,"y":15.45},{"x":1569774000000,"y":15.43},{"x":1569774060000,"y":15.44},{"x":1569774120000,"y":15.44},{"x":1569774180000,"y":15.44},{"x":1569774240000,"y":15.44},{"x":1569774300000,"y":15.46},{"x":1569774360000,"y":15.44},{"x":1569774420000,"y":15.43},{"x":1569774480000,"y":15.42},{"x":1569774540000,"y":15.42},{"x":1569774600000,"y":15.46},{"x":1569774660000,"y":15.46},{"x":1569774720000,"y":15.44},{"x":1569774780000,"y":15.44},{"x":1569774840000,"y":15.44},{"x":1569774900000,"y":15.45},{"x":1569774960000,"y":15.45},{"x":1569775020000,"y":15.42},{"x":1569775080000,"y":15.43},{"x":1569775140000,"y":15.45},{"x":1569775200000,"y":15.45},{"x":1569775260000,"y":15.46},{"x":1569775320000,"y":15.46},{"x":1569775380000,"y":15.46},{"x":1569775440000,"y":15.46},{"x":1569775500000,"y":15.44},{"x":1569775560000,"y":15.45},{"x":1569775620000,"y":15.44},{"x":1569775680000,"y":15.44},{"x":1569775740000,"y":15.44},{"x":1569775800000,"y":15.45},{"x":1569775860000,"y":15.46},{"x":1569775920000,"y":15.45},{"x":1569775980000,"y":15.45},{"x":1569776040000,"y":15.45},{"x":1569776100000,"y":15.46},{"x":1569776160000,"y":15.46},{"x":1569776220000,"y":15.47},{"x":1569776280000,"y":15.46},{"x":1569776340000,"y":15.46},{"x":1569776400000,"y":15.45},{"x":1569776460000,"y":15.45},{"x":1569776520000,"y":15.45},{"x":1569776580000,"y":15.44},{"x":1569776640000,"y":15.44},{"x":1569776700000,"y":15.45},{"x":1569776760000,"y":15.46},{"x":1569776820000,"y":15.47},{"x":1569776880000,"y":15.46},{"x":1569776940000,"y":15.46},{"x":1569777000000,"y":15.47},{"x":1569777060000,"y":15.47},{"x":1569777120000,"y":15.47},{"x":1569777180000,"y":15.45},{"x":1569777240000,"y":15.45},{"x":1569777300000,"y":15.41},{"x":1569777360000,"y":15.41},{"x":1569777420000,"y":15.43},{"x":1569777480000,"y":15.43},{"x":1569777540000,"y":15.43},{"x":1569777600000,"y":15.45},{"x":1569777660000,"y":15.44},{"x":1569777720000,"y":15.45},{"x":1569777780000,"y":15.45},{"x":1569777840000,"y":15.45},{"x":1569777900000,"y":15.45},{"x":1569777960000,"y":15.45},{"x":1569778020000,"y":15.47},{"x":1569778080000,"y":15.44},{"x":1569778140000,"y":15.44},{"x":1569778200000,"y":15.47},{"x":1569778260000,"y":15.47},{"x":1569778320000,"y":15.47},{"x":1569778380000,"y":15.47},{"x":1569778440000,"y":15.46},{"x":1569778500000,"y":15.46},{"x":1569778560000,"y":15.46},{"x":1569778620000,"y":15.46},{"x":1569778680000,"y":15.45},{"x":1569778740000,"y":15.46},{"x":1569778800000,"y":15.44},{"x":1569778860000,"y":15.44},{"x":1569778920000,"y":15.44},{"x":1569778980000,"y":15.46},{"x":1569779040000,"y":15.45},{"x":1569779100000,"y":15.44},{"x":1569779160000,"y":15.44},{"x":1569779220000,"y":15.44},{"x":1569779280000,"y":15.44},{"x":1569779340000,"y":15.44},{"x":1569779400000,"y":15.43},{"x":1569779460000,"y":15.43},{"x":1569779520000,"y":15.43},{"x":1569779580000,"y":15.43},{"x":1569779640000,"y":15.41},{"x":1569779700000,"y":15.41},{"x":1569779760000,"y":15.41},{"x":1569779820000,"y":15.41},{"x":1569779880000,"y":15.44},{"x":1569779940000,"y":15.44},{"x":1569780000000,"y":15.44},{"x":1569780060000,"y":15.44},{"x":1569780120000,"y":15.45},{"x":1569780180000,"y":15.54},{"x":1569780240000,"y":15.59},{"x":1569780300000,"y":15.59},{"x":1569780360000,"y":15.59},{"x":1569780420000,"y":15.59},{"x":1569780480000,"y":15.59},{"x":1569780540000,"y":15.61},{"x":1569780600000,"y":15.73},{"x":1569780660000,"y":15.73},{"x":1569780720000,"y":15.73},{"x":1569780780000,"y":15.73},{"x":1569780840000,"y":15.74},{"x":1569780900000,"y":15.73},{"x":1569780960000,"y":15.73},{"x":1569781020000,"y":15.73},{"x":1569781080000,"y":15.73},{"x":1569781140000,"y":15.75},{"x":1569781200000,"y":15.73},{"x":1569781260000,"y":15.73},{"x":1569781320000,"y":15.73},{"x":1569781380000,"y":15.73},{"x":1569781440000,"y":15.74},{"x":1569781500000,"y":15.74},{"x":1569781560000,"y":15.74},{"x":1569781620000,"y":15.74},{"x":1569781680000,"y":15.74},{"x":1569781740000,"y":15.75},{"x":1569781800000,"y":15.74},{"x":1569781860000,"y":15.74},{"x":1569781920000,"y":15.74},{"x":1569781980000,"y":15.74},{"x":1569782040000,"y":15.75},{"x":1569782100000,"y":15.73},{"x":1569782160000,"y":15.73},{"x":1569782220000,"y":15.73},{"x":1569782280000,"y":15.73},{"x":1569782340000,"y":15.75},{"x":1569782400000,"y":15.73},{"x":1569782460000,"y":15.73},{"x":1569782520000,"y":15.73},{"x":1569782580000,"y":15.73},{"x":1569782640000,"y":15.73},{"x":1569782700000,"y":15.74},{"x":1569782760000,"y":15.72},{"x":1569782820000,"y":15.71},{"x":1569782880000,"y":15.71},{"x":1569782940000,"y":15.71},{"x":1569783000000,"y":15.76},{"x":1569783060000,"y":15.75},{"x":1569783120000,"y":15.75},{"x":1569783180000,"y":15.75},{"x":1569783240000,"y":15.75},{"x":1569783300000,"y":16.1},{"x":1569783360000,"y":15.78},{"x":1569783420000,"y":15.78},{"x":1569783480000,"y":15.78},{"x":1569783540000,"y":15.78},{"x":1569783600000,"y":15.77},{"x":1569783660000,"y":15.73},{"x":1569783720000,"y":15.73},{"x":1569783780000,"y":15.73},{"x":1569783840000,"y":15.73},{"x":1569783900000,"y":15.75},{"x":1569783960000,"y":15.75},{"x":1569784020000,"y":15.74},{"x":1569784080000,"y":15.74},{"x":1569784140000,"y":15.74},{"x":1569784200000,"y":15.75},{"x":1569784260000,"y":15.74},{"x":1569784320000,"y":15.74},{"x":1569784380000,"y":15.74},{"x":1569784440000,"y":15.74},{"x":1569784500000,"y":15.75},{"x":1569784560000,"y":15.74},{"x":1569784620000,"y":15.74},{"x":1569784680000,"y":15.74},{"x":1569784740000,"y":15.74},{"x":1569784800000,"y":15.75},{"x":1569784860000,"y":15.76},{"x":1569784920000,"y":15.74},{"x":1569784980000,"y":15.74},{"x":1569785040000,"y":15.74},{"x":1569785100000,"y":15.74},{"x":1569785160000,"y":15.76},{"x":1569785220000,"y":15.75},{"x":1569785280000,"y":15.75},{"x":1569785340000,"y":15.75},{"x":1569785400000,"y":15.74},{"x":1569785460000,"y":15.76},{"x":1569785520000,"y":15.75},{"x":1569785580000,"y":15.75},{"x":1569785640000,"y":15.75},{"x":1569785700000,"y":15.75},{"x":1569785760000,"y":15.76},{"x":1569785820000,"y":15.75},{"x":1569785880000,"y":15.75},{"x":1569785940000,"y":15.75},{"x":1569786000000,"y":15.72},{"x":1569786060000,"y":15.75},{"x":1569786120000,"y":15.75},{"x":1569786180000,"y":15.75},{"x":1569786240000,"y":15.75},{"x":1569786300000,"y":15.76},{"x":1569786360000,"y":15.77},{"x":1569786420000,"y":15.76},{"x":1569786480000,"y":15.75},{"x":1569786540000,"y":15.75}],"tcp":[{"x":1566453600000,"y":0},{"x":1566453660000,"y":0},{"x":1566453720000,"y":0},{"x":1566453780000,"y":0},{"x":1566453840000,"y":0},{"x":1566453900000,"y":0},{"x":1566453960000,"y":0},{"x":1566454020000,"y":0},{"x":1566454080000,"y":0},{"x":1566454140000,"y":0},{"x":1566454200000,"y":0},{"x":1566454260000,"y":0},{"x":1566454320000,"y":0},{"x":1566454380000,"y":0},{"x":1566454440000,"y":0},{"x":1566454500000,"y":0},{"x":1566454560000,"y":0.01},{"x":1566454620000,"y":0},{"x":1566454680000,"y":0},{"x":1566454740000,"y":0},{"x":1566454800000,"y":0},{"x":1566454860000,"y":0},{"x":1566454920000,"y":0},{"x":1566454980000,"y":0},{"x":1566455040000,"y":0},{"x":1566455100000,"y":0},{"x":1566455160000,"y":0},{"x":1566455220000,"y":0},{"x":1566455280000,"y":0},{"x":1566455340000,"y":0},{"x":1566455400000,"y":0},{"x":1566455460000,"y":0},{"x":1566455520000,"y":0},{"x":1566455580000,"y":0},{"x":1566455640000,"y":0},{"x":1566455700000,"y":0},{"x":1566455760000,"y":0},{"x":1566455820000,"y":0},{"x":1566455880000,"y":0},{"x":1566455940000,"y":0},{"x":1566456000000,"y":0},{"x":1566456060000,"y":0},{"x":1566456120000,"y":0},{"x":1566456180000,"y":0},{"x":1566456240000,"y":0},{"x":1566456300000,"y":0},{"x":1566456360000,"y":0},{"x":1566456420000,"y":0},{"x":1566456480000,"y":0},{"x":1566456540000,"y":0},{"x":1566456600000,"y":0},{"x":1566456660000,"y":0},{"x":1566456720000,"y":0},{"x":1566456780000,"y":0},{"x":1566456840000,"y":0},{"x":1566456900000,"y":0},{"x":1566456960000,"y":0},{"x":1566457020000,"y":0},{"x":1566457080000,"y":0},{"x":1566457140000,"y":0},{"x":1566457200000,"y":0},{"x":1566457260000,"y":0},{"x":1566457320000,"y":0},{"x":1566457380000,"y":0},{"x":1566457440000,"y":0},{"x":1566457500000,"y":0},{"x":1566457560000,"y":0},{"x":1566457620000,"y":0},{"x":1566457680000,"y":0},{"x":1566457740000,"y":0},{"x":1566457800000,"y":0},{"x":1566457860000,"y":0},{"x":1566457920000,"y":0},{"x":1566457980000,"y":0},{"x":1566458040000,"y":0},{"x":1566458100000,"y":0},{"x":1566458160000,"y":0.01},{"x":1566458220000,"y":0},{"x":1566458280000,"y":0},{"x":1566458340000,"y":0},{"x":1566458400000,"y":0},{"x":1566458460000,"y":0},{"x":1566458520000,"y":0},{"x":1566458580000,"y":0},{"x":1566458640000,"y":0},{"x":1566458700000,"y":0},{"x":1566458760000,"y":0},{"x":1566458820000,"y":0},{"x":1566458880000,"y":0},{"x":1566458940000,"y":0},{"x":1566459000000,"y":0},{"x":1566459060000,"y":0},{"x":1566459120000,"y":0},{"x":1566459180000,"y":0},{"x":1566459240000,"y":0},{"x":1566459300000,"y":0},{"x":1566459360000,"y":0},{"x":1566459420000,"y":0},{"x":1566459480000,"y":0},{"x":1566459540000,"y":0},{"x":1566459600000,"y":0},{"x":1566459660000,"y":0},{"x":1566459720000,"y":0},{"x":1566459780000,"y":0},{"x":1566459840000,"y":0},{"x":1566459900000,"y":0.01},{"x":1566459960000,"y":0},{"x":1566460020000,"y":0},{"x":1566460080000,"y":0},{"x":1566460140000,"y":0.01},{"x":1566460200000,"y":0},{"x":1566460260000,"y":0},{"x":1566460320000,"y":0},{"x":1566460380000,"y":0},{"x":1566460440000,"y":0},{"x":1566460500000,"y":0},{"x":1566460560000,"y":0},{"x":1566460620000,"y":0},{"x":1566460680000,"y":0},{"x":1566460740000,"y":0},{"x":1566460800000,"y":0},{"x":1566460860000,"y":0},{"x":1566460920000,"y":0},{"x":1566460980000,"y":0},{"x":1566461040000,"y":0},{"x":1566461100000,"y":0},{"x":1566461160000,"y":0},{"x":1566461220000,"y":0},{"x":1566461280000,"y":0},{"x":1566461340000,"y":0},{"x":1566461400000,"y":0},{"x":1566461460000,"y":0.01},{"x":1566461520000,"y":0},{"x":1566461580000,"y":0},{"x":1566461640000,"y":0},{"x":1566461700000,"y":0},{"x":1566461760000,"y":0.01},{"x":1566461820000,"y":0},{"x":1566461880000,"y":0},{"x":1566461940000,"y":0},{"x":1566462000000,"y":0},{"x":1566462060000,"y":0},{"x":1566462120000,"y":0},{"x":1566462180000,"y":0},{"x":1566462240000,"y":0},{"x":1566462300000,"y":0},{"x":1566462360000,"y":0},{"x":1566462420000,"y":0},{"x":1566462480000,"y":0},{"x":1566462540000,"y":0},{"x":1566462600000,"y":0},{"x":1566462660000,"y":0},{"x":1566462720000,"y":0},{"x":1566462780000,"y":0},{"x":1566462840000,"y":0},{"x":1566462900000,"y":0},{"x":1566462960000,"y":0},{"x":1566463020000,"y":0},{"x":1566463080000,"y":0},{"x":1566463140000,"y":0.01},{"x":1566463200000,"y":0},{"x":1566463260000,"y":0},{"x":1566463320000,"y":0},{"x":1566463380000,"y":0},{"x":1566463440000,"y":0},{"x":1566463500000,"y":0},{"x":1566463560000,"y":0},{"x":1566463620000,"y":0},{"x":1566463680000,"y":0},{"x":1566463740000,"y":0},{"x":1566463800000,"y":0},{"x":1566463860000,"y":0},{"x":1566463920000,"y":0},{"x":1566463980000,"y":0},{"x":1566464040000,"y":0},{"x":1566464100000,"y":0},{"x":1566464160000,"y":0},{"x":1566464220000,"y":0},{"x":1566464280000,"y":0},{"x":1566464340000,"y":0},{"x":1566464400000,"y":0},{"x":1566464460000,"y":0},{"x":1566464520000,"y":0},{"x":1566464580000,"y":0},{"x":1566464640000,"y":0},{"x":1566464700000,"y":0},{"x":1566464760000,"y":0},{"x":1566464820000,"y":0},{"x":1566464880000,"y":0},{"x":1566464940000,"y":0},{"x":1566465000000,"y":0},{"x":1566465060000,"y":0},{"x":1566465120000,"y":0},{"x":1566465180000,"y":0},{"x":1566465240000,"y":0},{"x":1566465300000,"y":0},{"x":1566465360000,"y":0.01},{"x":1566465420000,"y":0},{"x":1566465480000,"y":0},{"x":1566465540000,"y":0.03},{"x":1566465600000,"y":0},{"x":1566465660000,"y":0},{"x":1566465720000,"y":0},{"x":1566465780000,"y":0},{"x":1566465840000,"y":0},{"x":1566465900000,"y":0},{"x":1566465960000,"y":0},{"x":1566466020000,"y":0},{"x":1566466080000,"y":0},{"x":1566466140000,"y":0},{"x":1566466200000,"y":0},{"x":1566466260000,"y":0},{"x":1566466320000,"y":0},{"x":1566466380000,"y":0},{"x":1566466440000,"y":0},{"x":1566466500000,"y":0},{"x":1566466560000,"y":0},{"x":1566466620000,"y":0},{"x":1566466680000,"y":0},{"x":1566466740000,"y":0},{"x":1566466800000,"y":0},{"x":1566466860000,"y":0},{"x":1566466920000,"y":0},{"x":1566466980000,"y":0},{"x":1566467040000,"y":0},{"x":1566467100000,"y":0},{"x":1566467160000,"y":0},{"x":1566467220000,"y":0},{"x":1566467280000,"y":0},{"x":1566467340000,"y":0},{"x":1566467400000,"y":0},{"x":1566467460000,"y":0},{"x":1566467520000,"y":0},{"x":1566467580000,"y":0},{"x":1566467640000,"y":0},{"x":1566467700000,"y":0},{"x":1566467760000,"y":0},{"x":1566467820000,"y":0},{"x":1566467880000,"y":0},{"x":1566467940000,"y":0},{"x":1566468000000,"y":0},{"x":1566468060000,"y":0},{"x":1566468120000,"y":0},{"x":1566468180000,"y":0},{"x":1566468240000,"y":0.01},{"x":1566468300000,"y":0},{"x":1566468360000,"y":0},{"x":1566468420000,"y":0},{"x":1566468480000,"y":0},{"x":1566468540000,"y":0.02},{"x":1566468600000,"y":0.02},{"x":1566468660000,"y":0.02},{"x":1566468720000,"y":0.03},{"x":1566468780000,"y":0.03},{"x":1566468840000,"y":0.02},{"x":1566468900000,"y":0.02},{"x":1566468960000,"y":0.03},{"x":1566469020000,"y":0.02},{"x":1566469080000,"y":0.03},{"x":1566469140000,"y":0.02},{"x":1566469200000,"y":0.02},{"x":1566469260000,"y":0.02},{"x":1566469320000,"y":0.03},{"x":1566469380000,"y":0.02},{"x":1566469440000,"y":0.02},{"x":1566469500000,"y":0.02},{"x":1566469560000,"y":0.03},{"x":1566469620000,"y":0.02},{"x":1566469680000,"y":0.02},{"x":1566469740000,"y":0.03},{"x":1566469800000,"y":0.02},{"x":1566469860000,"y":0.02},{"x":1566469920000,"y":0.03},{"x":1566469980000,"y":0.02},{"x":1566470040000,"y":0.02},{"x":1566470100000,"y":0.02},{"x":1566470160000,"y":0.02},{"x":1566470220000,"y":0.03},{"x":1566470280000,"y":0.02},{"x":1566470340000,"y":0.02},{"x":1566470400000,"y":0.02},{"x":1566470460000,"y":0.02},{"x":1566470520000,"y":0.02},{"x":1566470580000,"y":0.02},{"x":1566470640000,"y":0.03},{"x":1566470700000,"y":0.02},{"x":1566470760000,"y":0.02},{"x":1566470820000,"y":0.02},{"x":1566470880000,"y":0.03},{"x":1566470940000,"y":0.03},{"x":1566471000000,"y":0.02},{"x":1566471060000,"y":0.02},{"x":1566471120000,"y":0.02},{"x":1566471180000,"y":0.02},{"x":1566471240000,"y":0.02},{"x":1566471300000,"y":0.02},{"x":1566471360000,"y":0.02},{"x":1566471420000,"y":0.03},{"x":1566471480000,"y":0.02},{"x":1566471540000,"y":0.02},{"x":1566471600000,"y":0.02},{"x":1566471660000,"y":0.03},{"x":1566471720000,"y":0.14},{"x":1566471780000,"y":0.02},{"x":1566471840000,"y":0.02},{"x":1566471900000,"y":0.02},{"x":1566471960000,"y":0.02},{"x":1566472020000,"y":0.02},{"x":1566472080000,"y":0.03},{"x":1566472140000,"y":0.03},{"x":1566472200000,"y":0.03},{"x":1566472260000,"y":0.02},{"x":1566472320000,"y":0.02},{"x":1566472380000,"y":0.02},{"x":1566472440000,"y":0.03},{"x":1566472500000,"y":0.02},{"x":1566472560000,"y":0.03},{"x":1566472620000,"y":0.03},{"x":1566472680000,"y":0.02},{"x":1566472740000,"y":0.02},{"x":1566472800000,"y":0.02},{"x":1566472860000,"y":0.02},{"x":1566472920000,"y":0.04},{"x":1566472980000,"y":0.03},{"x":1566473040000,"y":0.02},{"x":1566473100000,"y":0.02},{"x":1566473160000,"y":0.02},{"x":1566473220000,"y":0.03},{"x":1566473280000,"y":0.02},{"x":1566473340000,"y":0.03},{"x":1566473400000,"y":0.03},{"x":1566473460000,"y":0.02},{"x":1566473520000,"y":0.02},{"x":1566473580000,"y":0.03},{"x":1566473640000,"y":0.03},{"x":1566473700000,"y":0.02},{"x":1566473760000,"y":0.02},{"x":1566473820000,"y":0.02},{"x":1566473880000,"y":0.03},{"x":1566473940000,"y":0.02},{"x":1566474000000,"y":0.03},{"x":1566474060000,"y":0.02},{"x":1566474120000,"y":0.03},{"x":1566474180000,"y":0.03},{"x":1566474240000,"y":0.02},{"x":1566474300000,"y":0.03},{"x":1566474360000,"y":0.03},{"x":1566474420000,"y":0.02},{"x":1566474480000,"y":0.02},{"x":1566474540000,"y":0.02},{"x":1566474600000,"y":0.02},{"x":1566474660000,"y":0.02},{"x":1566474720000,"y":0.02},{"x":1566474780000,"y":0.02},{"x":1566474840000,"y":0.02},{"x":1566474900000,"y":0.02},{"x":1566474960000,"y":0.02},{"x":1566475020000,"y":0.02},{"x":1566475080000,"y":0.02},{"x":1566475140000,"y":0.03},{"x":1566475200000,"y":0.03},{"x":1566475260000,"y":0.03},{"x":1566475320000,"y":0.02},{"x":1566475380000,"y":0.03},{"x":1566475440000,"y":0.02},{"x":1566475500000,"y":0.03},{"x":1566475560000,"y":0.03},{"x":1566475620000,"y":0.02},{"x":1566475680000,"y":0.02},{"x":1566475740000,"y":0.02},{"x":1566475800000,"y":0.02},{"x":1566475860000,"y":0.02},{"x":1566475920000,"y":0.03},{"x":1566475980000,"y":0.02},{"x":1566476040000,"y":0.03},{"x":1566476100000,"y":0.02},{"x":1566476160000,"y":0.03},{"x":1566476220000,"y":0.02},{"x":1566476280000,"y":0.02},{"x":1566476340000,"y":0.03},{"x":1566476400000,"y":0.02},{"x":1566476460000,"y":0.02},{"x":1566476520000,"y":0.02},{"x":1566476580000,"y":0.03},{"x":1566476640000,"y":0.03},{"x":1566476700000,"y":0.02},{"x":1566476760000,"y":0.02},{"x":1566476820000,"y":0.02},{"x":1566476880000,"y":0.02},{"x":1566476940000,"y":0.02},{"x":1566477000000,"y":0.03},{"x":1566477060000,"y":0.03},{"x":1566477120000,"y":0.03},{"x":1566477180000,"y":0.02},{"x":1566477240000,"y":0.02},{"x":1566477300000,"y":0.02},{"x":1566477360000,"y":0.02},{"x":1566477420000,"y":0.03},{"x":1566477480000,"y":0.02},{"x":1566477540000,"y":0.03},{"x":1566477600000,"y":0.03},{"x":1566477660000,"y":0.02},{"x":1566477720000,"y":0.02},{"x":1566477780000,"y":0.02},{"x":1566477840000,"y":0.03},{"x":1566477900000,"y":0.03},{"x":1566477960000,"y":0.02},{"x":1566478020000,"y":0.02},{"x":1566478080000,"y":0.02},{"x":1566478140000,"y":0.02},{"x":1566478200000,"y":0.02},{"x":1566478260000,"y":0.03},{"x":1566478320000,"y":0.02},{"x":1566478380000,"y":0.03},{"x":1566478440000,"y":0.03},{"x":1566478500000,"y":0.02},{"x":1566478560000,"y":0.03},{"x":1566478620000,"y":0.02},{"x":1566478680000,"y":0.03},{"x":1566478740000,"y":0.02},{"x":1566478800000,"y":0.02},{"x":1566478860000,"y":0.02},{"x":1566478920000,"y":0.03},{"x":1566478980000,"y":0.02},{"x":1566479040000,"y":0.03},{"x":1566479100000,"y":0.02},{"x":1566479160000,"y":0.02},{"x":1566479220000,"y":0.02},{"x":1566479280000,"y":0.01},{"x":1566479340000,"y":0.01},{"x":1566479400000,"y":0.02},{"x":1566479460000,"y":0},{"x":1566479520000,"y":0},{"x":1566479580000,"y":0},{"x":1566479640000,"y":0},{"x":1566479700000,"y":0},{"x":1566479760000,"y":0.01},{"x":1566479820000,"y":0},{"x":1566479880000,"y":0},{"x":1566479940000,"y":0},{"x":1566480000000,"y":0},{"x":1566480060000,"y":0},{"x":1566480120000,"y":0},{"x":1566480180000,"y":0},{"x":1566480240000,"y":0},{"x":1566480300000,"y":0},{"x":1566480360000,"y":0},{"x":1566480420000,"y":0},{"x":1566480480000,"y":0},{"x":1566480540000,"y":0},{"x":1566480600000,"y":0},{"x":1566480660000,"y":0},{"x":1566480720000,"y":0},{"x":1566480780000,"y":0},{"x":1566480840000,"y":0},{"x":1566480900000,"y":0},{"x":1566480960000,"y":0},{"x":1566481020000,"y":0},{"x":1566481080000,"y":0},{"x":1566481140000,"y":0},{"x":1566481200000,"y":0},{"x":1566481260000,"y":0},{"x":1566481320000,"y":0},{"x":1566481380000,"y":0},{"x":1566481440000,"y":0},{"x":1566481500000,"y":0.85},{"x":1566481560000,"y":0},{"x":1566481620000,"y":0},{"x":1566481680000,"y":0},{"x":1566481740000,"y":0},{"x":1566481800000,"y":0},{"x":1566481860000,"y":0},{"x":1566481920000,"y":0},{"x":1566481980000,"y":0},{"x":1566482040000,"y":0.01},{"x":1566482100000,"y":0},{"x":1566482160000,"y":0},{"x":1566482220000,"y":0},{"x":1566482280000,"y":0},{"x":1566482340000,"y":0},{"x":1566482400000,"y":0},{"x":1566482460000,"y":0},{"x":1566482520000,"y":0},{"x":1566482580000,"y":0},{"x":1566482640000,"y":0},{"x":1566482700000,"y":0},{"x":1566482760000,"y":0},{"x":1566482820000,"y":0},{"x":1566482880000,"y":0},{"x":1566482940000,"y":0},{"x":1566483000000,"y":0},{"x":1566483060000,"y":0},{"x":1566483120000,"y":0},{"x":1566483180000,"y":0},{"x":1566483240000,"y":0},{"x":1566483300000,"y":0},{"x":1566483360000,"y":0.01},{"x":1566483420000,"y":0},{"x":1566483480000,"y":0},{"x":1566483540000,"y":0},{"x":1566483600000,"y":0},{"x":1566483660000,"y":0},{"x":1566483720000,"y":0},{"x":1566483780000,"y":0},{"x":1566483840000,"y":0},{"x":1566483900000,"y":0},{"x":1566483960000,"y":0},{"x":1566484020000,"y":0},{"x":1566484080000,"y":0},{"x":1566484140000,"y":0},{"x":1566484200000,"y":0},{"x":1566484260000,"y":0},{"x":1566484320000,"y":0},{"x":1566484380000,"y":0},{"x":1566484440000,"y":0.01},{"x":1566484500000,"y":0},{"x":1566484560000,"y":0.01},{"x":1566484620000,"y":0.03},{"x":1566484680000,"y":0.02},{"x":1566484740000,"y":0.02},{"x":1566484800000,"y":0.02},{"x":1566484860000,"y":0.02},{"x":1566484920000,"y":0.88},{"x":1566484980000,"y":0.02},{"x":1566485040000,"y":0.02},{"x":1566485100000,"y":0.02},{"x":1566485160000,"y":0.02},{"x":1566485220000,"y":0.02},{"x":1566485280000,"y":0.02},{"x":1566485340000,"y":0.87},{"x":1566485400000,"y":0.02},{"x":1566485460000,"y":0.03},{"x":1566485520000,"y":0.02},{"x":1566485580000,"y":0.02},{"x":1566485640000,"y":0.03},{"x":1566485700000,"y":0.02},{"x":1566485760000,"y":0.02},{"x":1566485820000,"y":0.58},{"x":1566485880000,"y":0.02},{"x":1566485940000,"y":0.02},{"x":1566486000000,"y":0.02},{"x":1566486060000,"y":0.03},{"x":1566486120000,"y":0.07},{"x":1566486180000,"y":0.03},{"x":1566486240000,"y":0.02},{"x":1566486300000,"y":0.03},{"x":1566486360000,"y":0.02},{"x":1566486420000,"y":0.03},{"x":1566486480000,"y":0.02},{"x":1566486540000,"y":0.02},{"x":1566486600000,"y":0.03},{"x":1566486660000,"y":0.02},{"x":1566486720000,"y":0.02},{"x":1566486780000,"y":0.02},{"x":1566486840000,"y":0.02},{"x":1566486900000,"y":0.02},{"x":1566486960000,"y":0.02},{"x":1566487020000,"y":0.02},{"x":1566487080000,"y":0.02},{"x":1566487140000,"y":0.05},{"x":1566487200000,"y":0.19},{"x":1566487260000,"y":0.02},{"x":1566487320000,"y":0.02},{"x":1566487380000,"y":0.02},{"x":1566487440000,"y":0},{"x":1566487500000,"y":0.13},{"x":1566487560000,"y":0},{"x":1566487620000,"y":0},{"x":1566487680000,"y":0},{"x":1566487740000,"y":0},{"x":1566487800000,"y":0},{"x":1566487860000,"y":0.02},{"x":1566487920000,"y":1.04},{"x":1566487980000,"y":0.03},{"x":1566488040000,"y":0.05},{"x":1566488100000,"y":0.02},{"x":1566488160000,"y":0.02},{"x":1566488220000,"y":0.02},{"x":1566488280000,"y":0.03},{"x":1566488340000,"y":0.02},{"x":1566488400000,"y":0.02},{"x":1566488460000,"y":0.02},{"x":1566488520000,"y":0.02},{"x":1566488580000,"y":0.02},{"x":1566488640000,"y":0.02},{"x":1566488700000,"y":0.02},{"x":1566488760000,"y":0.02},{"x":1566488820000,"y":0.02},{"x":1566488880000,"y":0.02},{"x":1566488940000,"y":0.02},{"x":1566489000000,"y":0.02},{"x":1566489060000,"y":0.03},{"x":1566489120000,"y":0.02},{"x":1566489180000,"y":0.03},{"x":1566489240000,"y":0.02},{"x":1566489300000,"y":0.03},{"x":1566489360000,"y":0.03},{"x":1566489420000,"y":0.03},{"x":1566489480000,"y":0.02},{"x":1566489540000,"y":0},{"x":1566489600000,"y":0},{"x":1566489660000,"y":0},{"x":1566489720000,"y":0},{"x":1566489780000,"y":0},{"x":1566489840000,"y":0},{"x":1566489900000,"y":0},{"x":1566489960000,"y":0},{"x":1566490020000,"y":0.02},{"x":1566490080000,"y":0.02},{"x":1566490140000,"y":0.02},{"x":1566490200000,"y":0.03},{"x":1566490260000,"y":0.02},{"x":1566490320000,"y":0.03},{"x":1566490380000,"y":0.02},{"x":1566490440000,"y":0.02},{"x":1566490500000,"y":0.02},{"x":1566490560000,"y":0.03},{"x":1566490620000,"y":0.03},{"x":1566490680000,"y":0.02},{"x":1566490740000,"y":0.02},{"x":1566490800000,"y":0.03},{"x":1566490860000,"y":0.02},{"x":1566490920000,"y":0.02},{"x":1566490980000,"y":1},{"x":1566491040000,"y":0.03},{"x":1566491100000,"y":0.02},{"x":1566491160000,"y":0.11},{"x":1566491220000,"y":0.04},{"x":1566491280000,"y":0.02},{"x":1566491340000,"y":1.72},{"x":1566491400000,"y":0.02},{"x":1566491460000,"y":0.02},{"x":1566491520000,"y":0.02},{"x":1566491580000,"y":1.16},{"x":1566491640000,"y":0.02},{"x":1566491700000,"y":0.02},{"x":1566491760000,"y":0.02},{"x":1566491820000,"y":0.02},{"x":1566491880000,"y":0.02},{"x":1566491940000,"y":0.02},{"x":1566492000000,"y":0.02},{"x":1566492060000,"y":0.7},{"x":1566492120000,"y":1.96},{"x":1566492180000,"y":0.05},{"x":1566492240000,"y":0.02},{"x":1566492300000,"y":0.02},{"x":1566492360000,"y":0.02},{"x":1566492420000,"y":0.02},{"x":1566492480000,"y":0.02},{"x":1566492540000,"y":0.02},{"x":1566492600000,"y":0.02},{"x":1566492660000,"y":0.02},{"x":1566492720000,"y":0.02},{"x":1566492780000,"y":0.02},{"x":1566492840000,"y":0.03},{"x":1566492900000,"y":0.02},{"x":1566492960000,"y":0.02},{"x":1566493020000,"y":0.02},{"x":1566493080000,"y":0.02},{"x":1566493140000,"y":0.02},{"x":1566493200000,"y":0.02},{"x":1566493260000,"y":0.03},{"x":1566493320000,"y":0.89},{"x":1566493380000,"y":0.02},{"x":1566493440000,"y":0.03},{"x":1566493500000,"y":0.03},{"x":1566493560000,"y":0.03},{"x":1566493620000,"y":0.89},{"x":1566493680000,"y":0.03},{"x":1566493740000,"y":0.89},{"x":1566493800000,"y":1.71},{"x":1566493860000,"y":0.02},{"x":1566493920000,"y":0.02},{"x":1566493980000,"y":0.03},{"x":1566494040000,"y":0.08},{"x":1566494100000,"y":1.75},{"x":1566494160000,"y":1.11},{"x":1566494220000,"y":0.22},{"x":1566494280000,"y":0.03},{"x":1566494340000,"y":0.03},{"x":1566494400000,"y":0.9},{"x":1566494460000,"y":1.81},{"x":1566494520000,"y":0.1},{"x":1566494580000,"y":0.03},{"x":1566494640000,"y":1.75},{"x":1566494700000,"y":1.96},{"x":1566494760000,"y":0.05},{"x":1566494820000,"y":0.03},{"x":1566494880000,"y":0.08},{"x":1566494940000,"y":0.03},{"x":1566495000000,"y":0.02},{"x":1566495060000,"y":0.03},{"x":1566495120000,"y":0.02},{"x":1566495180000,"y":0.02},{"x":1566495240000,"y":0.02},{"x":1566495300000,"y":0.02},{"x":1566495360000,"y":0.02},{"x":1566495420000,"y":0.02},{"x":1566495480000,"y":0.02},{"x":1566495540000,"y":0.02},{"x":1566495600000,"y":0.02},{"x":1566495660000,"y":0.02},{"x":1566495720000,"y":0.02},{"x":1566495780000,"y":0.03},{"x":1566495840000,"y":0.05},{"x":1566495900000,"y":2.63},{"x":1566495960000,"y":0.02},{"x":1566496020000,"y":4.35},{"x":1566496080000,"y":4.01},{"x":1566496140000,"y":0.02},{"x":1566496200000,"y":0.03},{"x":1566496260000,"y":2.78},{"x":1566496320000,"y":4.3},{"x":1566496380000,"y":4.55},{"x":1566496440000,"y":1.22},{"x":1566496500000,"y":0.72},{"x":1566496560000,"y":0.66},{"x":1566496620000,"y":0.03},{"x":1566496680000,"y":0.03},{"x":1566496740000,"y":0.03},{"x":1566496800000,"y":0.02},{"x":1566496860000,"y":0.03},{"x":1566496920000,"y":0.02},{"x":1566496980000,"y":0.02},{"x":1566497040000,"y":0.02},{"x":1566497100000,"y":0.03},{"x":1566497160000,"y":0.02},{"x":1566497220000,"y":0.02},{"x":1566497280000,"y":0.62},{"x":1566497340000,"y":0.03},{"x":1566497400000,"y":1.18},{"x":1566497460000,"y":0.03},{"x":1566497520000,"y":0.03},{"x":1566497580000,"y":3.5},{"x":1566497640000,"y":0.02},{"x":1566497700000,"y":0.02},{"x":1566497760000,"y":0.02},{"x":1566497820000,"y":1.2},{"x":1566497880000,"y":4.6},{"x":1566497940000,"y":0.02},{"x":1566498000000,"y":0.03},{"x":1566498060000,"y":0.02},{"x":1566498120000,"y":0.02},{"x":1566498180000,"y":0.02},{"x":1566498240000,"y":0.03},{"x":1566498300000,"y":0.02},{"x":1566498360000,"y":0.02},{"x":1566498420000,"y":0.02},{"x":1566498480000,"y":0.02},{"x":1566498540000,"y":0.02},{"x":1566498600000,"y":0.02},{"x":1566498660000,"y":0.02},{"x":1566498720000,"y":0.02},{"x":1566498780000,"y":0.03},{"x":1566498840000,"y":0.03},{"x":1566498900000,"y":0.03},{"x":1566498960000,"y":0.02},{"x":1566499020000,"y":0.03},{"x":1566499080000,"y":0.02},{"x":1566499140000,"y":0.02},{"x":1566499200000,"y":0.03},{"x":1566499260000,"y":0.68},{"x":1566499320000,"y":1.3},{"x":1566499380000,"y":0.09},{"x":1566499440000,"y":0.02},{"x":1566499500000,"y":0.02},{"x":1566499560000,"y":0.02},{"x":1566499620000,"y":1.27},{"x":1566499680000,"y":0.05},{"x":1566499740000,"y":0.03},{"x":1566499800000,"y":0.02},{"x":1566499860000,"y":0.02},{"x":1566499920000,"y":0.03},{"x":1566499980000,"y":0.02},{"x":1566500040000,"y":0.02},{"x":1566500100000,"y":0.02},{"x":1566500160000,"y":0.03},{"x":1566500220000,"y":0.02},{"x":1566500280000,"y":0.02},{"x":1566500340000,"y":0.02},{"x":1566500400000,"y":0.02},{"x":1566500460000,"y":0.02},{"x":1566500520000,"y":0.02},{"x":1566500580000,"y":0.02},{"x":1566500640000,"y":0.02},{"x":1566500700000,"y":0.02},{"x":1566500760000,"y":0.02},{"x":1566500820000,"y":0.02},{"x":1566500880000,"y":0.03},{"x":1566500940000,"y":0.02},{"x":1566501000000,"y":0.02},{"x":1566501060000,"y":0.02},{"x":1566501120000,"y":0.02},{"x":1566501180000,"y":0.06},{"x":1566501240000,"y":0.02},{"x":1566501300000,"y":0.03},{"x":1566501360000,"y":0.03},{"x":1566501420000,"y":0.02},{"x":1566501480000,"y":0.02},{"x":1566501540000,"y":0.04},{"x":1566501600000,"y":0.03},{"x":1566501660000,"y":0.04},{"x":1566501720000,"y":0.03},{"x":1566501780000,"y":0.06},{"x":1566501840000,"y":0.06},{"x":1566501900000,"y":0.63},{"x":1566501960000,"y":0.63},{"x":1566502020000,"y":0.06},{"x":1566502080000,"y":0.02},{"x":1566502140000,"y":0.02},{"x":1566502200000,"y":0.02},{"x":1566502260000,"y":0.03},{"x":1566502320000,"y":0.03},{"x":1566502380000,"y":0.02},{"x":1566502440000,"y":0.02},{"x":1566502500000,"y":0.64},{"x":1566502560000,"y":0.02},{"x":1566502620000,"y":0.03},{"x":1566502680000,"y":0.71},{"x":1566502740000,"y":0.02},{"x":1566502800000,"y":0.62},{"x":1566502860000,"y":0.04},{"x":1566502920000,"y":3.42},{"x":1566502980000,"y":0.59},{"x":1566503040000,"y":1.78},{"x":1566503100000,"y":0.02},{"x":1566503160000,"y":0.02},{"x":1566503220000,"y":0.02},{"x":1566503280000,"y":0.02},{"x":1566503340000,"y":0.03},{"x":1566503400000,"y":0.02},{"x":1566503460000,"y":0.02},{"x":1566503520000,"y":0.05},{"x":1566503580000,"y":0.05},{"x":1566503640000,"y":1.84},{"x":1566503700000,"y":0.65},{"x":1566503760000,"y":5.29},{"x":1566503820000,"y":4.07},{"x":1566503880000,"y":14.65},{"x":1566503940000,"y":27.97},{"x":1566504000000,"y":59.93},{"x":1566504060000,"y":0.08},{"x":1566504120000,"y":0.1},{"x":1566504180000,"y":0.05},{"x":1566504240000,"y":0.03},{"x":1566504300000,"y":0.06},{"x":1566504360000,"y":0.41},{"x":1566504420000,"y":0.79},{"x":1566504480000,"y":0.05},{"x":1566504540000,"y":2.35},{"x":1566504600000,"y":0.95},{"x":1566504660000,"y":2.02},{"x":1566504720000,"y":0.03},{"x":1566504780000,"y":0.03},{"x":1566504840000,"y":0.02},{"x":1566504900000,"y":0.02},{"x":1566504960000,"y":0.02},{"x":1566505020000,"y":0.03},{"x":1566505080000,"y":0.02},{"x":1566505140000,"y":0.02},{"x":1566505200000,"y":0.02},{"x":1566505260000,"y":3.04},{"x":1566505320000,"y":0.02},{"x":1566505380000,"y":0.02},{"x":1566505440000,"y":0.03},{"x":1566505500000,"y":0.03},{"x":1566505560000,"y":0.02},{"x":1566505620000,"y":0.03},{"x":1566505680000,"y":0.02},{"x":1566505740000,"y":0.03},{"x":1566505800000,"y":0.03},{"x":1566505860000,"y":0.02},{"x":1566505920000,"y":0.02},{"x":1566505980000,"y":0.02},{"x":1566506040000,"y":0.04},{"x":1566506100000,"y":0.02},{"x":1566506160000,"y":1.07},{"x":1566506220000,"y":0.72},{"x":1566506280000,"y":1.8},{"x":1566506340000,"y":0.03},{"x":1566506400000,"y":0.02},{"x":1566506460000,"y":0.02},{"x":1566506520000,"y":0.03},{"x":1566506580000,"y":0.02},{"x":1566506640000,"y":0.02},{"x":1566506700000,"y":0.02},{"x":1566506760000,"y":0.02},{"x":1566506820000,"y":0.02},{"x":1566506880000,"y":0.02},{"x":1566506940000,"y":0.02},{"x":1566507000000,"y":0.02},{"x":1566507060000,"y":0.02},{"x":1566507120000,"y":0.02},{"x":1566507180000,"y":0.02},{"x":1566507240000,"y":0.02},{"x":1566507300000,"y":0.02},{"x":1566507360000,"y":0.03},{"x":1566507420000,"y":0.03},{"x":1566507480000,"y":0.02},{"x":1566507540000,"y":0.03},{"x":1566507600000,"y":0.03},{"x":1566507660000,"y":1.71},{"x":1566507720000,"y":0.02},{"x":1566507780000,"y":0.02},{"x":1566507840000,"y":0.02},{"x":1566507900000,"y":1.21},{"x":1566507960000,"y":7.54},{"x":1566508020000,"y":3.62},{"x":1566508080000,"y":0.05},{"x":1566508140000,"y":0.03},{"x":1566508200000,"y":2.61},{"x":1566508260000,"y":0.94},{"x":1566508320000,"y":0.02},{"x":1566508380000,"y":0.03},{"x":1566508440000,"y":0.03},{"x":1566508500000,"y":0.02},{"x":1566508560000,"y":0.02},{"x":1566508620000,"y":0.02},{"x":1566508680000,"y":0.02},{"x":1566508740000,"y":0.02},{"x":1566508800000,"y":0.03},{"x":1566508860000,"y":0.02},{"x":1566508920000,"y":0.02},{"x":1566508980000,"y":0.03},{"x":1566509040000,"y":0.02},{"x":1566509100000,"y":0.02},{"x":1566509160000,"y":0.11},{"x":1566509220000,"y":0.05},{"x":1566509280000,"y":0.02},{"x":1566509340000,"y":0.02},{"x":1566509400000,"y":0.02},{"x":1566509460000,"y":0.03},{"x":1566509520000,"y":0.02},{"x":1566509580000,"y":0.03},{"x":1566509640000,"y":0.02},{"x":1566509700000,"y":0.03},{"x":1566509760000,"y":0.11},{"x":1566509820000,"y":0.03},{"x":1566509880000,"y":0.02},{"x":1566509940000,"y":0.02},{"x":1566510000000,"y":1.05},{"x":1566510060000,"y":0.09},{"x":1566510120000,"y":0.02},{"x":1566510180000,"y":0.86},{"x":1566510240000,"y":2.54},{"x":1566510300000,"y":0.03},{"x":1566510360000,"y":3.27},{"x":1566510420000,"y":1.21},{"x":1566510480000,"y":1.24},{"x":1566510540000,"y":2.44},{"x":1566510600000,"y":1.81},{"x":1566510660000,"y":2.62},{"x":1566510720000,"y":2.13},{"x":1566510780000,"y":5.08},{"x":1566510840000,"y":0.02},{"x":1566510900000,"y":0.71},{"x":1566510960000,"y":0.02},{"x":1566511020000,"y":0.02},{"x":1566511080000,"y":0.02},{"x":1566511140000,"y":0.02},{"x":1566511200000,"y":0.02},{"x":1566511260000,"y":0.02},{"x":1566511320000,"y":0.02},{"x":1566511380000,"y":0.02},{"x":1566511440000,"y":0.03},{"x":1566511500000,"y":0.02},{"x":1566511560000,"y":0.02},{"x":1566511620000,"y":0.02},{"x":1566511680000,"y":0.02},{"x":1566511740000,"y":0.02},{"x":1566511800000,"y":0.03},{"x":1566511860000,"y":0.03},{"x":1566511920000,"y":0.02},{"x":1566511980000,"y":0.02},{"x":1566512040000,"y":0.02},{"x":1566512100000,"y":0.02},{"x":1566512160000,"y":0.02},{"x":1566512220000,"y":0.02},{"x":1566512280000,"y":0.68},{"x":1566512340000,"y":0.02},{"x":1566512400000,"y":0.02},{"x":1566512460000,"y":0.02},{"x":1566512520000,"y":0.05},{"x":1566512580000,"y":0.02},{"x":1566512640000,"y":0.02},{"x":1566512700000,"y":0.02},{"x":1566512760000,"y":0.41},{"x":1566512820000,"y":0.26},{"x":1566512880000,"y":0.02},{"x":1566512940000,"y":0.02},{"x":1566513000000,"y":0.03},{"x":1566513060000,"y":0.02},{"x":1566513120000,"y":0.02},{"x":1566513180000,"y":0.02},{"x":1566513240000,"y":0.02},{"x":1566513300000,"y":0.02},{"x":1566513360000,"y":0.02},{"x":1566513420000,"y":0.02},{"x":1566513480000,"y":0.02},{"x":1566513540000,"y":0.02},{"x":1566513600000,"y":0.02},{"x":1566513660000,"y":0.02},{"x":1566513720000,"y":0.02},{"x":1566513780000,"y":0.02},{"x":1566513840000,"y":0.03},{"x":1566513900000,"y":0.02},{"x":1566513960000,"y":0.02},{"x":1566514020000,"y":0.03},{"x":1566514080000,"y":0.02},{"x":1566514140000,"y":0.02},{"x":1566514200000,"y":0.03},{"x":1566514260000,"y":0.03},{"x":1566514320000,"y":0.18},{"x":1566514380000,"y":0.02},{"x":1566514440000,"y":0.03},{"x":1566514500000,"y":0.07},{"x":1566514560000,"y":0.02},{"x":1566514620000,"y":0.02},{"x":1566514680000,"y":0.02},{"x":1566514740000,"y":0.02},{"x":1566514800000,"y":0.02},{"x":1566514860000,"y":0.02},{"x":1566514920000,"y":0.02},{"x":1566514980000,"y":0.02},{"x":1566515040000,"y":0.02},{"x":1566515100000,"y":0.02},{"x":1566515160000,"y":0.03},{"x":1566515220000,"y":0.02},{"x":1566515280000,"y":0.03},{"x":1566515340000,"y":0.02},{"x":1566515400000,"y":0.29},{"x":1566515460000,"y":0.05},{"x":1566515520000,"y":0.05},{"x":1566515580000,"y":0.05},{"x":1566515640000,"y":0.02},{"x":1566515700000,"y":0.02},{"x":1566515760000,"y":0.02},{"x":1566515820000,"y":0.02},{"x":1566515880000,"y":0.02},{"x":1566515940000,"y":0.02},{"x":1566516000000,"y":0.02},{"x":1566516060000,"y":0.02},{"x":1566516120000,"y":0.03},{"x":1566516180000,"y":0.02},{"x":1566516240000,"y":0.02},{"x":1566516300000,"y":0.03},{"x":1566516360000,"y":0.03},{"x":1566516420000,"y":0.02},{"x":1566516480000,"y":0.02},{"x":1566516540000,"y":0.02},{"x":1566516600000,"y":0.02},{"x":1566516660000,"y":0.02},{"x":1566516720000,"y":0.02},{"x":1566516780000,"y":0.02},{"x":1566516840000,"y":0.02},{"x":1566516900000,"y":0.02},{"x":1566516960000,"y":0.03},{"x":1566517020000,"y":0.02},{"x":1566517080000,"y":0.02},{"x":1566517140000,"y":0.02},{"x":1566517200000,"y":0.02},{"x":1566517260000,"y":0.02},{"x":1566517320000,"y":0.02},{"x":1566517380000,"y":0.02},{"x":1566517440000,"y":0.02},{"x":1566517500000,"y":0.02},{"x":1566517560000,"y":0.02},{"x":1566517620000,"y":0.02},{"x":1566517680000,"y":0.02},{"x":1566517740000,"y":0.02},{"x":1566517800000,"y":0.02},{"x":1566517860000,"y":0.03},{"x":1566517920000,"y":0.02},{"x":1566517980000,"y":0.02},{"x":1566518040000,"y":0.03},{"x":1566518100000,"y":0.02},{"x":1566518160000,"y":0.03},{"x":1566518220000,"y":0.02},{"x":1566518280000,"y":0.02},{"x":1566518340000,"y":0.02},{"x":1566518400000,"y":0.02},{"x":1566518460000,"y":0.02},{"x":1566518520000,"y":0.03},{"x":1566518580000,"y":0.02},{"x":1566518640000,"y":0.02},{"x":1566518700000,"y":0.02},{"x":1566518760000,"y":0.02},{"x":1566518820000,"y":0.02},{"x":1566518880000,"y":0.02},{"x":1566518940000,"y":0.02},{"x":1566519000000,"y":0.02},{"x":1566519060000,"y":0.02},{"x":1566519120000,"y":0.02},{"x":1566519180000,"y":0.02},{"x":1566519240000,"y":0.02},{"x":1566519300000,"y":0.02},{"x":1566519360000,"y":0.02},{"x":1566519420000,"y":0.02},{"x":1566519480000,"y":0.02},{"x":1566519540000,"y":0.02},{"x":1566519600000,"y":0.02},{"x":1566519660000,"y":0.02},{"x":1566519720000,"y":0.02},{"x":1566519780000,"y":0.02},{"x":1566519840000,"y":0.02},{"x":1566519900000,"y":0.02},{"x":1566519960000,"y":0.02},{"x":1566520020000,"y":0.02},{"x":1566520080000,"y":0.02},{"x":1566520140000,"y":0.02},{"x":1566520200000,"y":0.02},{"x":1566520260000,"y":0.02},{"x":1566520320000,"y":0.01},{"x":1566520380000,"y":0.02},{"x":1566520440000,"y":0.01},{"x":1566520500000,"y":0.02},{"x":1566520560000,"y":0.01},{"x":1566520620000,"y":0.02},{"x":1566520680000,"y":0.02},{"x":1566520740000,"y":0.02},{"x":1566520800000,"y":0.02},{"x":1566520860000,"y":0.01},{"x":1566520920000,"y":0.01},{"x":1566520980000,"y":0.01},{"x":1566521040000,"y":0.02},{"x":1566521100000,"y":0.02},{"x":1566521160000,"y":0.02},{"x":1566521220000,"y":0.02},{"x":1566521280000,"y":0.02},{"x":1566521340000,"y":0.02},{"x":1566521400000,"y":0.01},{"x":1566521460000,"y":0.02},{"x":1566521520000,"y":0.02},{"x":1566521580000,"y":0.01},{"x":1566521640000,"y":0.01},{"x":1566521700000,"y":0.01},{"x":1566521760000,"y":0.01},{"x":1566521820000,"y":0.01},{"x":1566521880000,"y":0.02},{"x":1566521940000,"y":0.04},{"x":1566522000000,"y":0.02},{"x":1566522060000,"y":0.02},{"x":1566522120000,"y":0.02},{"x":1566522180000,"y":0.02},{"x":1566522240000,"y":0.02},{"x":1566522300000,"y":0.01},{"x":1566522360000,"y":0.02},{"x":1566522420000,"y":0.01},{"x":1566522480000,"y":0.02},{"x":1566522540000,"y":0.02},{"x":1566522600000,"y":0.02},{"x":1566522660000,"y":0.02},{"x":1566522720000,"y":0.02},{"x":1566522780000,"y":0.01},{"x":1566522840000,"y":0.02},{"x":1566522900000,"y":0.01},{"x":1566522960000,"y":0.01},{"x":1566523020000,"y":0.02},{"x":1566523080000,"y":0.02},{"x":1566523140000,"y":0.01},{"x":1566523200000,"y":0.02},{"x":1566523260000,"y":0.02},{"x":1566523320000,"y":0.01},{"x":1566523380000,"y":0.02},{"x":1566523440000,"y":0.01},{"x":1566523500000,"y":0.02},{"x":1566523560000,"y":0.01},{"x":1566523620000,"y":0.02},{"x":1566523680000,"y":0.02},{"x":1566523740000,"y":0.02},{"x":1566523800000,"y":0.01},{"x":1566523860000,"y":0.02},{"x":1566523920000,"y":0.01},{"x":1566523980000,"y":0.01},{"x":1566524040000,"y":0.01},{"x":1566524100000,"y":0.02},{"x":1566524160000,"y":0.02},{"x":1566524220000,"y":0.01},{"x":1566524280000,"y":0.02},{"x":1566524340000,"y":0.02},{"x":1566524400000,"y":0.02},{"x":1566524460000,"y":0.02},{"x":1566524520000,"y":0.02},{"x":1566524580000,"y":0.02},{"x":1566524640000,"y":0.02},{"x":1566524700000,"y":0.01},{"x":1566524760000,"y":0.01},{"x":1566524820000,"y":0.01},{"x":1566524880000,"y":0.02},{"x":1566524940000,"y":0.02},{"x":1566525000000,"y":0.02},{"x":1566525060000,"y":0.01},{"x":1566525120000,"y":0.02},{"x":1566525180000,"y":0.01},{"x":1566525240000,"y":0.01},{"x":1566525300000,"y":0.02},{"x":1566525360000,"y":0.02},{"x":1566525420000,"y":0.02},{"x":1566525480000,"y":0.01},{"x":1566525540000,"y":0.01},{"x":1566525600000,"y":0.01},{"x":1566525660000,"y":0.02},{"x":1566525720000,"y":0.02},{"x":1566525780000,"y":0.03},{"x":1566525840000,"y":0.02},{"x":1566525900000,"y":0.01},{"x":1566525960000,"y":0.02},{"x":1566526020000,"y":0.01},{"x":1566526080000,"y":0.01},{"x":1566526140000,"y":0.02},{"x":1566526200000,"y":0.02},{"x":1566526260000,"y":0.01},{"x":1566526320000,"y":0.02},{"x":1566526380000,"y":2.97},{"x":1566526440000,"y":1.1},{"x":1566526500000,"y":0.02},{"x":1566526560000,"y":0.01},{"x":1566526620000,"y":0.02},{"x":1566526680000,"y":0.94},{"x":1566526740000,"y":0.02},{"x":1566526800000,"y":0.01},{"x":1566526860000,"y":0.01},{"x":1566526920000,"y":0.02},{"x":1566526980000,"y":0.01},{"x":1566527040000,"y":0.01},{"x":1566527100000,"y":0.01},{"x":1566527160000,"y":0.02},{"x":1566527220000,"y":0.02},{"x":1566527280000,"y":0.02},{"x":1566527340000,"y":0.02},{"x":1566527400000,"y":0.01},{"x":1566527460000,"y":0.02},{"x":1566527520000,"y":0.02},{"x":1566527580000,"y":0.02},{"x":1566527640000,"y":0.02},{"x":1566527700000,"y":0.02},{"x":1566527760000,"y":0.01},{"x":1566527820000,"y":0.01},{"x":1566527880000,"y":0.01},{"x":1566527940000,"y":0.02},{"x":1566528000000,"y":0.02},{"x":1566528060000,"y":0.02},{"x":1566528120000,"y":0.02},{"x":1566528180000,"y":0.16},{"x":1566528240000,"y":0.01},{"x":1566528300000,"y":0.02},{"x":1566528360000,"y":0.02},{"x":1566528420000,"y":0.04},{"x":1566528480000,"y":0.02},{"x":1566528540000,"y":0.02},{"x":1566528600000,"y":0.02},{"x":1566528660000,"y":0.02},{"x":1566528720000,"y":0.01},{"x":1566528780000,"y":0.03},{"x":1566528840000,"y":3.98},{"x":1566528900000,"y":0.02},{"x":1566528960000,"y":0.01},{"x":1566529020000,"y":0.01},{"x":1566529080000,"y":0.02},{"x":1566529140000,"y":0.02},{"x":1566529200000,"y":0.01},{"x":1566529260000,"y":0.02},{"x":1566529320000,"y":0.01},{"x":1566529380000,"y":0.01},{"x":1566529440000,"y":0.01},{"x":1566529500000,"y":0.01},{"x":1566529560000,"y":0.02},{"x":1566529620000,"y":0.01},{"x":1566529680000,"y":0.02},{"x":1566529740000,"y":0.02},{"x":1566529800000,"y":0.02},{"x":1566529860000,"y":0.01},{"x":1566529920000,"y":0.01},{"x":1566529980000,"y":0.02},{"x":1566530040000,"y":0.01},{"x":1566530100000,"y":0.01},{"x":1566530160000,"y":0.02},{"x":1566530220000,"y":0.02},{"x":1566530280000,"y":0.02},{"x":1566530340000,"y":0.02},{"x":1566530400000,"y":0.02},{"x":1566530460000,"y":0.02},{"x":1566530520000,"y":0.02},{"x":1566530580000,"y":0.02},{"x":1566530640000,"y":0.02},{"x":1566530700000,"y":0.02},{"x":1566530760000,"y":0.01},{"x":1566530820000,"y":0.02},{"x":1566530880000,"y":0.02},{"x":1566530940000,"y":0.01},{"x":1566531000000,"y":0.02},{"x":1566531060000,"y":0.02},{"x":1566531120000,"y":0.02},{"x":1566531180000,"y":0.02},{"x":1566531240000,"y":0.02},{"x":1566531300000,"y":0.02},{"x":1566531360000,"y":0.02},{"x":1566531420000,"y":0.02},{"x":1566531480000,"y":0.01},{"x":1566531540000,"y":0.01},{"x":1566531600000,"y":0.02},{"x":1566531660000,"y":0.01},{"x":1566531720000,"y":0.02},{"x":1566531780000,"y":0.01},{"x":1566531840000,"y":0.02},{"x":1566531900000,"y":0.01},{"x":1566531960000,"y":0.01},{"x":1566532020000,"y":0.02},{"x":1566532080000,"y":0.02},{"x":1566532140000,"y":0.01},{"x":1566532200000,"y":0.02},{"x":1566532260000,"y":0.02},{"x":1566532320000,"y":0.02},{"x":1566532380000,"y":0.02},{"x":1566532440000,"y":0.02},{"x":1566532500000,"y":0.02},{"x":1566532560000,"y":0.02},{"x":1566532620000,"y":0.01},{"x":1566532680000,"y":0.01},{"x":1566532740000,"y":0.02},{"x":1566532800000,"y":0.01},{"x":1566532860000,"y":0.02},{"x":1566532920000,"y":0.02},{"x":1566532980000,"y":0.01},{"x":1566533040000,"y":0.02},{"x":1566533100000,"y":0.01},{"x":1566533160000,"y":0.01},{"x":1566533220000,"y":0.01},{"x":1566533280000,"y":0.01},{"x":1566533340000,"y":0.02},{"x":1566533400000,"y":0.02},{"x":1566533460000,"y":0.01},{"x":1566533520000,"y":0.01},{"x":1566533580000,"y":0.02},{"x":1566533640000,"y":0.02},{"x":1566533700000,"y":0.02},{"x":1566533760000,"y":0.02},{"x":1566533820000,"y":0.02},{"x":1566533880000,"y":0.02},{"x":1566533940000,"y":0.02},{"x":1566534000000,"y":0.02},{"x":1566534060000,"y":0.01},{"x":1566534120000,"y":0.01},{"x":1566534180000,"y":0.02},{"x":1566534240000,"y":0.02},{"x":1566534300000,"y":0.01},{"x":1566534360000,"y":0.02},{"x":1566534420000,"y":0.01},{"x":1566534480000,"y":0.02},{"x":1566534540000,"y":0.02},{"x":1566534600000,"y":0.02},{"x":1566534660000,"y":0.01},{"x":1566534720000,"y":0.02},{"x":1566534780000,"y":0.02},{"x":1566534840000,"y":0.02},{"x":1566534900000,"y":0.02},{"x":1566534960000,"y":0.01},{"x":1566535020000,"y":0.02},{"x":1566535080000,"y":0.02},{"x":1566535140000,"y":0.01},{"x":1566535200000,"y":0.03},{"x":1566535260000,"y":0.02},{"x":1566535320000,"y":0.01},{"x":1566535380000,"y":0.01},{"x":1566535440000,"y":0.02},{"x":1566535500000,"y":0.01},{"x":1566535560000,"y":0.02},{"x":1566535620000,"y":0.02},{"x":1566535680000,"y":0.01},{"x":1566535740000,"y":0.02},{"x":1566535800000,"y":0.01},{"x":1566535860000,"y":0.02},{"x":1566535920000,"y":0.02},{"x":1566535980000,"y":0.01},{"x":1566536040000,"y":0.02},{"x":1566536100000,"y":0.02},{"x":1566536160000,"y":0.02},{"x":1566536220000,"y":0.02},{"x":1566536280000,"y":0.01},{"x":1566536340000,"y":0.02},{"x":1566536400000,"y":0.02},{"x":1566536460000,"y":0.02},{"x":1566536520000,"y":0.02},{"x":1566536580000,"y":0.03},{"x":1566536640000,"y":0.02},{"x":1566536700000,"y":0.01},{"x":1566536760000,"y":0.02},{"x":1566536820000,"y":0.02},{"x":1566536880000,"y":0.02},{"x":1566536940000,"y":0.02},{"x":1566537000000,"y":0.02},{"x":1566537060000,"y":0.02},{"x":1566537120000,"y":0.02},{"x":1566537180000,"y":0.02},{"x":1566537240000,"y":0.01},{"x":1566537300000,"y":0.01},{"x":1566537360000,"y":0.02},{"x":1566537420000,"y":0.02},{"x":1566537480000,"y":0.01},{"x":1566537540000,"y":0.02},{"x":1566537600000,"y":0.02},{"x":1566537660000,"y":0.02},{"x":1566537720000,"y":0.01},{"x":1566537780000,"y":0.02},{"x":1566537840000,"y":0.02},{"x":1566537900000,"y":0.02},{"x":1566537960000,"y":0.02},{"x":1566538020000,"y":0.01},{"x":1566538080000,"y":0.01},{"x":1566538140000,"y":0.01},{"x":1566538200000,"y":0.02},{"x":1566538260000,"y":0.01},{"x":1566538320000,"y":0.01},{"x":1566538380000,"y":0.02},{"x":1566538440000,"y":0.01},{"x":1566538500000,"y":0.02},{"x":1566538560000,"y":0.02},{"x":1566538620000,"y":0.01},{"x":1566538680000,"y":0.01},{"x":1566538740000,"y":0.02},{"x":1566538800000,"y":0.01},{"x":1566538860000,"y":0.02},{"x":1566538920000,"y":0.01},{"x":1566538980000,"y":0.02},{"x":1566539040000,"y":0.02},{"x":1566539100000,"y":0.01},{"x":1566539160000,"y":0.01},{"x":1566539220000,"y":0.02},{"x":1566539280000,"y":0.02},{"x":1566539340000,"y":0.02},{"x":1566539400000,"y":0.02},{"x":1566539460000,"y":0.02},{"x":1566539520000,"y":0.02},{"x":1566539580000,"y":0.01},{"x":1566539640000,"y":0.01},{"x":1566539700000,"y":0.01},{"x":1566539760000,"y":0.02},{"x":1566539820000,"y":0.01},{"x":1566539880000,"y":0.01},{"x":1566539940000,"y":0.02},{"x":1566540000000,"y":0.01},{"x":1566540060000,"y":0.02},{"x":1566540120000,"y":0.02},{"x":1566540180000,"y":0.02},{"x":1566540240000,"y":0.02},{"x":1566540300000,"y":0.02},{"x":1566540360000,"y":0.02},{"x":1566540420000,"y":0.02},{"x":1566540480000,"y":0.01},{"x":1566540540000,"y":0.01},{"x":1566540600000,"y":0.01},{"x":1566540660000,"y":0.01},{"x":1566540720000,"y":0.01},{"x":1566540780000,"y":0.01},{"x":1566540840000,"y":0.02},{"x":1566540900000,"y":0.02},{"x":1566540960000,"y":0.01},{"x":1566541020000,"y":0.02},{"x":1566541080000,"y":0.01},{"x":1566541140000,"y":0.02},{"x":1566541200000,"y":0.02},{"x":1566541260000,"y":0.01},{"x":1566541320000,"y":0.01},{"x":1566541380000,"y":0.02},{"x":1566541440000,"y":0.02},{"x":1566541500000,"y":0.02},{"x":1566541560000,"y":0.02},{"x":1566541620000,"y":0.02},{"x":1566541680000,"y":0.02},{"x":1566541740000,"y":0.02},{"x":1566541800000,"y":0.01},{"x":1566541860000,"y":0.01},{"x":1566541920000,"y":0.01},{"x":1566541980000,"y":0.02},{"x":1566542040000,"y":0.01},{"x":1566542100000,"y":0},{"x":1566542160000,"y":0},{"x":1566542220000,"y":0},{"x":1566542280000,"y":0},{"x":1566542340000,"y":0},{"x":1566542400000,"y":0},{"x":1566542460000,"y":0},{"x":1566542520000,"y":0},{"x":1566542580000,"y":0},{"x":1566542640000,"y":0},{"x":1566542700000,"y":0},{"x":1566542760000,"y":0},{"x":1566542820000,"y":0},{"x":1566542880000,"y":0.01},{"x":1566542940000,"y":0},{"x":1566543000000,"y":0},{"x":1566543060000,"y":0},{"x":1566543120000,"y":0},{"x":1566543180000,"y":0},{"x":1566543240000,"y":0},{"x":1566543300000,"y":0},{"x":1566543360000,"y":0},{"x":1566543420000,"y":0},{"x":1566543480000,"y":0},{"x":1566543540000,"y":0},{"x":1566543600000,"y":0},{"x":1566543660000,"y":0},{"x":1566543720000,"y":0},{"x":1566543780000,"y":0},{"x":1566543840000,"y":0},{"x":1566543900000,"y":0},{"x":1566543960000,"y":0},{"x":1566544020000,"y":0},{"x":1566544080000,"y":0},{"x":1566544140000,"y":0},{"x":1566544200000,"y":0},{"x":1566544260000,"y":0},{"x":1566544320000,"y":0},{"x":1566544380000,"y":0},{"x":1566544440000,"y":0},{"x":1566544500000,"y":0},{"x":1566544560000,"y":0},{"x":1566544620000,"y":0},{"x":1566544680000,"y":0},{"x":1566544740000,"y":0},{"x":1566544800000,"y":0},{"x":1566544860000,"y":0},{"x":1566544920000,"y":0},{"x":1566544980000,"y":0},{"x":1566545040000,"y":0},{"x":1566545100000,"y":0},{"x":1566545160000,"y":0},{"x":1566545220000,"y":0},{"x":1566545280000,"y":0},{"x":1566545340000,"y":0},{"x":1566545400000,"y":0},{"x":1566545460000,"y":0},{"x":1566545520000,"y":0},{"x":1566545580000,"y":0},{"x":1566545640000,"y":0},{"x":1566545700000,"y":0},{"x":1566545760000,"y":0},{"x":1566545820000,"y":0},{"x":1566545880000,"y":0},{"x":1566545940000,"y":0},{"x":1566546000000,"y":0},{"x":1566546060000,"y":0},{"x":1566546120000,"y":0},{"x":1566546180000,"y":0},{"x":1566546240000,"y":0},{"x":1566546300000,"y":0},{"x":1566546360000,"y":0},{"x":1566546420000,"y":0},{"x":1566546480000,"y":0},{"x":1566546540000,"y":0},{"x":1566546600000,"y":0.02},{"x":1566546660000,"y":0},{"x":1566546720000,"y":0},{"x":1566546780000,"y":0},{"x":1566546840000,"y":0},{"x":1566546900000,"y":0},{"x":1566546960000,"y":0},{"x":1566547020000,"y":0},{"x":1566547080000,"y":0},{"x":1566547140000,"y":0},{"x":1566547200000,"y":0},{"x":1566547260000,"y":0},{"x":1566547320000,"y":0},{"x":1566547380000,"y":0},{"x":1566547440000,"y":0},{"x":1566547500000,"y":0},{"x":1566547560000,"y":0},{"x":1566547620000,"y":0},{"x":1566547680000,"y":0.01},{"x":1566547740000,"y":0},{"x":1566547800000,"y":0},{"x":1566547860000,"y":0},{"x":1566547920000,"y":0},{"x":1566547980000,"y":0},{"x":1566548040000,"y":0},{"x":1566548100000,"y":0},{"x":1566548160000,"y":0},{"x":1566548220000,"y":0},{"x":1566548280000,"y":0},{"x":1566548340000,"y":0},{"x":1566548400000,"y":0},{"x":1566548460000,"y":0},{"x":1566548520000,"y":0},{"x":1566548580000,"y":0},{"x":1566548640000,"y":0},{"x":1566548700000,"y":0},{"x":1566548760000,"y":0},{"x":1566548820000,"y":0},{"x":1566548880000,"y":0},{"x":1566548940000,"y":0},{"x":1566549000000,"y":0},{"x":1566549060000,"y":0.01},{"x":1566549120000,"y":0},{"x":1566549180000,"y":0},{"x":1566549240000,"y":0},{"x":1566549300000,"y":0},{"x":1566549360000,"y":0},{"x":1566549420000,"y":0},{"x":1566549480000,"y":0},{"x":1566549540000,"y":0},{"x":1566549600000,"y":0},{"x":1566549660000,"y":0},{"x":1566549720000,"y":0},{"x":1566549780000,"y":0},{"x":1566549840000,"y":0},{"x":1566549900000,"y":0},{"x":1566549960000,"y":0},{"x":1566550020000,"y":0},{"x":1566550080000,"y":0},{"x":1566550140000,"y":0},{"x":1566550200000,"y":0},{"x":1566550260000,"y":0},{"x":1566550320000,"y":0},{"x":1566550380000,"y":0},{"x":1566550440000,"y":0},{"x":1566550500000,"y":0},{"x":1566550560000,"y":0},{"x":1566550620000,"y":0},{"x":1566550680000,"y":0},{"x":1566550740000,"y":0},{"x":1566550800000,"y":0},{"x":1566550860000,"y":0},{"x":1566550920000,"y":0},{"x":1566550980000,"y":0},{"x":1566551040000,"y":0},{"x":1566551100000,"y":0},{"x":1566551160000,"y":0},{"x":1566551220000,"y":0},{"x":1566551280000,"y":0},{"x":1566551340000,"y":0},{"x":1566551400000,"y":0},{"x":1566551460000,"y":0},{"x":1566551520000,"y":0},{"x":1566551580000,"y":0},{"x":1566551640000,"y":0},{"x":1566551700000,"y":0},{"x":1566551760000,"y":0},{"x":1566551820000,"y":0},{"x":1566551880000,"y":0},{"x":1566551940000,"y":0},{"x":1566552000000,"y":0},{"x":1566552060000,"y":0},{"x":1566552120000,"y":0},{"x":1566552180000,"y":0},{"x":1566552240000,"y":0},{"x":1566552300000,"y":0},{"x":1566552360000,"y":0},{"x":1566552420000,"y":0},{"x":1566552480000,"y":0},{"x":1566552540000,"y":0},{"x":1566552600000,"y":0},{"x":1566552660000,"y":0},{"x":1566552720000,"y":0},{"x":1566552780000,"y":0},{"x":1566552840000,"y":0},{"x":1566552900000,"y":0},{"x":1566552960000,"y":0},{"x":1566553020000,"y":0},{"x":1566553080000,"y":0},{"x":1566553140000,"y":0},{"x":1566553200000,"y":0},{"x":1566553260000,"y":0},{"x":1566553320000,"y":0},{"x":1566553380000,"y":0},{"x":1566553440000,"y":0},{"x":1566553500000,"y":0},{"x":1566553560000,"y":0},{"x":1566553620000,"y":0},{"x":1566553680000,"y":0},{"x":1566553740000,"y":0},{"x":1566553800000,"y":0},{"x":1566553860000,"y":0},{"x":1566553920000,"y":0},{"x":1566553980000,"y":0},{"x":1566554040000,"y":0},{"x":1566554100000,"y":0},{"x":1566554160000,"y":0},{"x":1566554220000,"y":0},{"x":1566554280000,"y":0},{"x":1566554340000,"y":0},{"x":1566554400000,"y":0},{"x":1566554460000,"y":0},{"x":1566554520000,"y":0},{"x":1566554580000,"y":0},{"x":1566554640000,"y":0},{"x":1566554700000,"y":0},{"x":1566554760000,"y":0},{"x":1566554820000,"y":0},{"x":1566554880000,"y":0},{"x":1566554940000,"y":0},{"x":1566555000000,"y":0},{"x":1566555060000,"y":0},{"x":1566555120000,"y":0},{"x":1566555180000,"y":0},{"x":1566555240000,"y":0},{"x":1566555300000,"y":0},{"x":1566555360000,"y":0},{"x":1566555420000,"y":0},{"x":1566555480000,"y":0},{"x":1566555540000,"y":0.01},{"x":1566555600000,"y":0.02},{"x":1566555660000,"y":0.02},{"x":1566555720000,"y":0.02},{"x":1566555780000,"y":0.02},{"x":1566555840000,"y":0.03},{"x":1566555900000,"y":0.02},{"x":1566555960000,"y":0.02},{"x":1566556020000,"y":0.03},{"x":1566556080000,"y":0.02},{"x":1566556140000,"y":0.02},{"x":1566556200000,"y":0.02},{"x":1566556260000,"y":0.02},{"x":1566556320000,"y":0.02},{"x":1566556380000,"y":0.01},{"x":1566556440000,"y":0.01},{"x":1566556500000,"y":0.02},{"x":1566556560000,"y":0.02},{"x":1566556620000,"y":0.02},{"x":1566556680000,"y":0.01},{"x":1566556740000,"y":0.02},{"x":1566556800000,"y":0.01},{"x":1566556860000,"y":0.01},{"x":1566556920000,"y":0.01},{"x":1566556980000,"y":0.01},{"x":1566557040000,"y":0.01},{"x":1566557100000,"y":0.01},{"x":1566557160000,"y":0.01},{"x":1566557220000,"y":0.01},{"x":1566557280000,"y":0},{"x":1566557340000,"y":0},{"x":1566557400000,"y":0},{"x":1566557460000,"y":0},{"x":1566557520000,"y":0},{"x":1566557580000,"y":0},{"x":1566557640000,"y":0},{"x":1566557700000,"y":0},{"x":1566557760000,"y":0},{"x":1566557820000,"y":0},{"x":1566557880000,"y":0},{"x":1566557940000,"y":0},{"x":1566558000000,"y":0},{"x":1566558060000,"y":0},{"x":1566558120000,"y":0},{"x":1566558180000,"y":0},{"x":1566558240000,"y":0},{"x":1566558300000,"y":0},{"x":1566558360000,"y":0},{"x":1566558420000,"y":0},{"x":1566558480000,"y":0},{"x":1566558540000,"y":0.01},{"x":1566558600000,"y":0.03},{"x":1566558660000,"y":0.02},{"x":1566558720000,"y":0.02},{"x":1566558780000,"y":0.02},{"x":1566558840000,"y":0.02},{"x":1566558900000,"y":0.01},{"x":1566558960000,"y":0},{"x":1566559020000,"y":0},{"x":1566559080000,"y":0},{"x":1566559140000,"y":0},{"x":1566559200000,"y":0},{"x":1566559260000,"y":0},{"x":1566559320000,"y":0},{"x":1566559380000,"y":0},{"x":1566559440000,"y":0},{"x":1566559500000,"y":0},{"x":1566559560000,"y":0},{"x":1566559620000,"y":0},{"x":1566559680000,"y":0},{"x":1566559740000,"y":0.06},{"x":1566559800000,"y":0},{"x":1566559860000,"y":0},{"x":1566559920000,"y":0},{"x":1566559980000,"y":0},{"x":1566560040000,"y":0},{"x":1566560100000,"y":0},{"x":1566560160000,"y":0},{"x":1566560220000,"y":0},{"x":1566560280000,"y":0},{"x":1566560340000,"y":0},{"x":1566560400000,"y":0},{"x":1566560460000,"y":0},{"x":1566560520000,"y":0},{"x":1566560580000,"y":0},{"x":1566560640000,"y":0},{"x":1566560700000,"y":0},{"x":1566560760000,"y":0},{"x":1566560820000,"y":0},{"x":1566560880000,"y":0},{"x":1566560940000,"y":0},{"x":1566561000000,"y":0},{"x":1566561060000,"y":0},{"x":1566561120000,"y":0},{"x":1566561180000,"y":0},{"x":1566561240000,"y":0},{"x":1566561300000,"y":0},{"x":1566561360000,"y":0},{"x":1566561420000,"y":0},{"x":1566561480000,"y":0},{"x":1566561540000,"y":0},{"x":1566561600000,"y":0},{"x":1566561660000,"y":0},{"x":1566561720000,"y":0},{"x":1566561780000,"y":0},{"x":1566561840000,"y":0},{"x":1566561900000,"y":0},{"x":1566561960000,"y":0},{"x":1566562020000,"y":0},{"x":1566562080000,"y":0},{"x":1566562140000,"y":0},{"x":1566562200000,"y":0},{"x":1566562260000,"y":0},{"x":1566562320000,"y":0},{"x":1566562380000,"y":0},{"x":1566562440000,"y":0},{"x":1566562500000,"y":0},{"x":1566562560000,"y":0},{"x":1566562620000,"y":0},{"x":1566562680000,"y":0},{"x":1566562740000,"y":0},{"x":1566562800000,"y":0},{"x":1566562860000,"y":0.01},{"x":1566562920000,"y":0},{"x":1566562980000,"y":0},{"x":1566563040000,"y":0},{"x":1566563100000,"y":0},{"x":1566563160000,"y":0},{"x":1566563220000,"y":0},{"x":1566563280000,"y":0},{"x":1566563340000,"y":0},{"x":1566563400000,"y":0},{"x":1566563460000,"y":0},{"x":1566563520000,"y":0},{"x":1566563580000,"y":0},{"x":1566563640000,"y":0},{"x":1566563700000,"y":0},{"x":1566563760000,"y":0},{"x":1566563820000,"y":0},{"x":1566563880000,"y":0},{"x":1566563940000,"y":0},{"x":1566564000000,"y":0},{"x":1566564060000,"y":0},{"x":1566564120000,"y":0},{"x":1566564180000,"y":0},{"x":1566564240000,"y":0},{"x":1566564300000,"y":0},{"x":1566564360000,"y":0},{"x":1566564420000,"y":0},{"x":1566564480000,"y":0},{"x":1566564540000,"y":0},{"x":1566564600000,"y":0},{"x":1566564660000,"y":0},{"x":1566564720000,"y":0},{"x":1566564780000,"y":0},{"x":1566564840000,"y":0},{"x":1566564900000,"y":0},{"x":1566564960000,"y":0},{"x":1566565020000,"y":0},{"x":1566565080000,"y":0},{"x":1566565140000,"y":0},{"x":1566565200000,"y":0},{"x":1566565260000,"y":0},{"x":1566565320000,"y":0},{"x":1566565380000,"y":0},{"x":1566565440000,"y":0},{"x":1566565500000,"y":0},{"x":1566565560000,"y":0},{"x":1566565620000,"y":0},{"x":1566565680000,"y":0},{"x":1566565740000,"y":0},{"x":1566565800000,"y":0},{"x":1566565860000,"y":0},{"x":1566565920000,"y":0},{"x":1566565980000,"y":0},{"x":1566566040000,"y":0},{"x":1566566100000,"y":0},{"x":1566566160000,"y":0},{"x":1566566220000,"y":0},{"x":1566566280000,"y":0},{"x":1566566340000,"y":0},{"x":1566566400000,"y":0},{"x":1566566460000,"y":0},{"x":1566566520000,"y":0},{"x":1566566580000,"y":0},{"x":1566566640000,"y":0},{"x":1566566700000,"y":0},{"x":1566566760000,"y":0},{"x":1566566820000,"y":0},{"x":1566566880000,"y":0},{"x":1566566940000,"y":0},{"x":1566567000000,"y":0},{"x":1566567060000,"y":0},{"x":1566567120000,"y":0},{"x":1566567180000,"y":0},{"x":1566567240000,"y":0},{"x":1566567300000,"y":0},{"x":1566567360000,"y":0},{"x":1566567420000,"y":1.13},{"x":1566567480000,"y":0.89},{"x":1566567540000,"y":0.58},{"x":1566567600000,"y":0.01},{"x":1566567660000,"y":0.01},{"x":1566567720000,"y":0},{"x":1566567780000,"y":0},{"x":1566567840000,"y":0},{"x":1566567900000,"y":0},{"x":1566567960000,"y":0},{"x":1566568020000,"y":0},{"x":1566568080000,"y":0},{"x":1566568140000,"y":0},{"x":1566568200000,"y":0},{"x":1566568260000,"y":0},{"x":1566568320000,"y":0},{"x":1566568380000,"y":0},{"x":1566568440000,"y":0},{"x":1566568500000,"y":0},{"x":1566568560000,"y":0},{"x":1566568620000,"y":0},{"x":1566568680000,"y":0},{"x":1566568740000,"y":0},{"x":1566568800000,"y":0},{"x":1566568860000,"y":0},{"x":1566568920000,"y":0},{"x":1566568980000,"y":0},{"x":1566569040000,"y":0},{"x":1566569100000,"y":0},{"x":1566569160000,"y":0},{"x":1566569220000,"y":0},{"x":1566569280000,"y":0},{"x":1566569340000,"y":0},{"x":1566569400000,"y":0},{"x":1566569460000,"y":0},{"x":1566569520000,"y":0.86},{"x":1566569580000,"y":0},{"x":1566569640000,"y":0},{"x":1566569700000,"y":0},{"x":1566569760000,"y":0},{"x":1566569820000,"y":0},{"x":1566569880000,"y":0},{"x":1566569940000,"y":0},{"x":1566570000000,"y":0},{"x":1566570060000,"y":0},{"x":1566570120000,"y":0.02},{"x":1566570180000,"y":0.01},{"x":1566570240000,"y":1.76},{"x":1566570300000,"y":0.9},{"x":1566570360000,"y":0.2},{"x":1566570420000,"y":0},{"x":1566570480000,"y":0.01},{"x":1566570540000,"y":0},{"x":1566570600000,"y":0},{"x":1566570660000,"y":0},{"x":1566570720000,"y":0},{"x":1566570780000,"y":0},{"x":1566570840000,"y":0},{"x":1566570900000,"y":0},{"x":1566570960000,"y":0},{"x":1566571020000,"y":0},{"x":1566571080000,"y":0},{"x":1566571140000,"y":0},{"x":1566571200000,"y":0},{"x":1566571260000,"y":0},{"x":1566571320000,"y":0},{"x":1566571380000,"y":0},{"x":1566571440000,"y":0},{"x":1566571500000,"y":0},{"x":1566571560000,"y":0},{"x":1566571620000,"y":0},{"x":1566571680000,"y":0},{"x":1566571740000,"y":0},{"x":1566571800000,"y":0},{"x":1566571860000,"y":0},{"x":1566571920000,"y":0},{"x":1566571980000,"y":0},{"x":1566572040000,"y":0},{"x":1566572100000,"y":0},{"x":1566572160000,"y":0},{"x":1566572220000,"y":0},{"x":1566572280000,"y":0},{"x":1566572340000,"y":0},{"x":1566572400000,"y":0},{"x":1566572460000,"y":0},{"x":1566572520000,"y":0},{"x":1566572580000,"y":0},{"x":1566572640000,"y":0},{"x":1566572700000,"y":0},{"x":1566572760000,"y":0},{"x":1566572820000,"y":0},{"x":1566572880000,"y":0},{"x":1566572940000,"y":0},{"x":1566573000000,"y":0},{"x":1566573060000,"y":0},{"x":1566573120000,"y":0},{"x":1566573180000,"y":0},{"x":1566573240000,"y":0},{"x":1566573300000,"y":0},{"x":1566573360000,"y":0},{"x":1566573420000,"y":0},{"x":1566573480000,"y":0},{"x":1566573540000,"y":0},{"x":1566573600000,"y":0},{"x":1566573660000,"y":0},{"x":1566573720000,"y":0},{"x":1566573780000,"y":0},{"x":1566573840000,"y":0},{"x":1566573900000,"y":0},{"x":1566573960000,"y":0},{"x":1566574020000,"y":0},{"x":1566574080000,"y":0},{"x":1566574140000,"y":0},{"x":1566574200000,"y":0},{"x":1566574260000,"y":0.01},{"x":1566574320000,"y":0},{"x":1566574380000,"y":0},{"x":1566574440000,"y":0},{"x":1566574500000,"y":0.01},{"x":1566574560000,"y":0.01},{"x":1566574620000,"y":0},{"x":1566574680000,"y":0},{"x":1566574740000,"y":0},{"x":1566574800000,"y":0},{"x":1566574860000,"y":0.01},{"x":1566574920000,"y":0.13},{"x":1566574980000,"y":0},{"x":1566575040000,"y":0},{"x":1566575100000,"y":0},{"x":1566575160000,"y":1.13},{"x":1566575220000,"y":0},{"x":1566575280000,"y":0},{"x":1566575340000,"y":0},{"x":1566575400000,"y":0},{"x":1566575460000,"y":0},{"x":1566575520000,"y":0},{"x":1566575580000,"y":0},{"x":1566575640000,"y":0},{"x":1566575700000,"y":0},{"x":1566575760000,"y":0},{"x":1566575820000,"y":0},{"x":1566575880000,"y":0},{"x":1566575940000,"y":0},{"x":1566576000000,"y":0},{"x":1566576060000,"y":0},{"x":1566576120000,"y":0},{"x":1566576180000,"y":0},{"x":1566576240000,"y":0},{"x":1566576300000,"y":0},{"x":1566576360000,"y":0},{"x":1566576420000,"y":0},{"x":1566576480000,"y":0},{"x":1566576540000,"y":0},{"x":1566576600000,"y":0},{"x":1566576660000,"y":0},{"x":1566576720000,"y":0},{"x":1566576780000,"y":0},{"x":1566576840000,"y":0.01},{"x":1566576900000,"y":0},{"x":1566576960000,"y":0},{"x":1566577020000,"y":0},{"x":1566577080000,"y":0},{"x":1566577140000,"y":0},{"x":1566577200000,"y":0},{"x":1566577260000,"y":0},{"x":1566577320000,"y":0},{"x":1566577380000,"y":0},{"x":1566577440000,"y":0},{"x":1566577500000,"y":0},{"x":1566577560000,"y":0},{"x":1566577620000,"y":0.1},{"x":1566577680000,"y":0},{"x":1566577740000,"y":0},{"x":1566577800000,"y":0},{"x":1566577860000,"y":0},{"x":1566577920000,"y":0},{"x":1566577980000,"y":0},{"x":1566578040000,"y":0},{"x":1566578100000,"y":0},{"x":1566578160000,"y":0},{"x":1566578220000,"y":0},{"x":1566578280000,"y":0},{"x":1566578340000,"y":0},{"x":1566578400000,"y":0},{"x":1566578460000,"y":0},{"x":1566578520000,"y":0},{"x":1566578580000,"y":0},{"x":1566578640000,"y":0},{"x":1566578700000,"y":0},{"x":1566578760000,"y":0},{"x":1566578820000,"y":0},{"x":1566578880000,"y":0},{"x":1566578940000,"y":0},{"x":1566579000000,"y":0},{"x":1566579060000,"y":0.09},{"x":1566579120000,"y":0},{"x":1566579180000,"y":0},{"x":1566579240000,"y":0},{"x":1566579300000,"y":0},{"x":1566579360000,"y":0},{"x":1566579420000,"y":0},{"x":1566579480000,"y":0},{"x":1566579540000,"y":0},{"x":1566579600000,"y":0},{"x":1566579660000,"y":0},{"x":1566579720000,"y":0},{"x":1566579780000,"y":0},{"x":1566579840000,"y":0},{"x":1566579900000,"y":0},{"x":1566579960000,"y":0},{"x":1566580020000,"y":0},{"x":1566580080000,"y":0},{"x":1566580140000,"y":0},{"x":1566580200000,"y":0},{"x":1566580260000,"y":0},{"x":1566580320000,"y":0},{"x":1566580380000,"y":0},{"x":1566580440000,"y":0},{"x":1566580500000,"y":0},{"x":1566580560000,"y":0},{"x":1566580620000,"y":0},{"x":1566580680000,"y":0},{"x":1566580740000,"y":0},{"x":1566580800000,"y":0},{"x":1566580860000,"y":0},{"x":1566580920000,"y":0},{"x":1566580980000,"y":0},{"x":1566581040000,"y":0},{"x":1566581100000,"y":0},{"x":1566581160000,"y":0},{"x":1566581220000,"y":0},{"x":1566581280000,"y":0},{"x":1566581340000,"y":0},{"x":1566581400000,"y":0},{"x":1566581460000,"y":0},{"x":1566581520000,"y":0},{"x":1566581580000,"y":0},{"x":1566581640000,"y":0},{"x":1566581700000,"y":0},{"x":1566581760000,"y":0},{"x":1566581820000,"y":0},{"x":1566581880000,"y":0},{"x":1566581940000,"y":0},{"x":1566582000000,"y":0},{"x":1566582060000,"y":0},{"x":1566582120000,"y":0},{"x":1566582180000,"y":0},{"x":1566582240000,"y":0},{"x":1566582300000,"y":0},{"x":1566582360000,"y":0},{"x":1566582420000,"y":0},{"x":1566582480000,"y":0},{"x":1566582540000,"y":0},{"x":1566582600000,"y":0},{"x":1566582660000,"y":0},{"x":1566582720000,"y":0},{"x":1566582780000,"y":0},{"x":1566582840000,"y":0},{"x":1566582900000,"y":0},{"x":1566582960000,"y":0},{"x":1566583020000,"y":0},{"x":1566583080000,"y":0},{"x":1566583140000,"y":0},{"x":1566583200000,"y":0},{"x":1566583260000,"y":0},{"x":1566583320000,"y":0},{"x":1566583380000,"y":0},{"x":1566583440000,"y":0},{"x":1566583500000,"y":0},{"x":1566583560000,"y":0},{"x":1566583620000,"y":0},{"x":1566583680000,"y":0},{"x":1566583740000,"y":0},{"x":1566583800000,"y":0},{"x":1566583860000,"y":0},{"x":1566583920000,"y":0},{"x":1566583980000,"y":0},{"x":1566584040000,"y":0},{"x":1566584100000,"y":0},{"x":1566584160000,"y":0},{"x":1566584220000,"y":0.01},{"x":1566584280000,"y":0},{"x":1566584340000,"y":0},{"x":1566584400000,"y":0},{"x":1566584460000,"y":0},{"x":1566584520000,"y":0},{"x":1566584580000,"y":0},{"x":1566584640000,"y":0},{"x":1566584700000,"y":0},{"x":1566584760000,"y":0},{"x":1566584820000,"y":0},{"x":1566584880000,"y":0},{"x":1566584940000,"y":0},{"x":1566585000000,"y":0},{"x":1566585060000,"y":0},{"x":1566585120000,"y":0},{"x":1566585180000,"y":0},{"x":1566585240000,"y":0},{"x":1566585300000,"y":0},{"x":1566585360000,"y":0},{"x":1566585420000,"y":0},{"x":1566585480000,"y":0},{"x":1566585540000,"y":0},{"x":1566585600000,"y":0},{"x":1566585660000,"y":0},{"x":1566585720000,"y":0},{"x":1566585780000,"y":0},{"x":1566585840000,"y":0},{"x":1566585900000,"y":0},{"x":1566585960000,"y":0},{"x":1566586020000,"y":0},{"x":1566586080000,"y":0},{"x":1566586140000,"y":0},{"x":1566586200000,"y":0},{"x":1566586260000,"y":0},{"x":1566586320000,"y":0},{"x":1566586380000,"y":0},{"x":1566586440000,"y":0},{"x":1566586500000,"y":0},{"x":1566586560000,"y":0},{"x":1566586620000,"y":0},{"x":1566586680000,"y":0.06},{"x":1566586740000,"y":0.03},{"x":1566586800000,"y":0},{"x":1566586860000,"y":0},{"x":1566586920000,"y":0},{"x":1566586980000,"y":0.01},{"x":1566587040000,"y":0.19},{"x":1566587100000,"y":0.07},{"x":1566587160000,"y":0.03},{"x":1566587220000,"y":0.04},{"x":1566587280000,"y":0},{"x":1566587340000,"y":0},{"x":1566587400000,"y":0},{"x":1566587460000,"y":0},{"x":1566587520000,"y":0},{"x":1566587580000,"y":2.09},{"x":1566587640000,"y":2.02},{"x":1566587700000,"y":0.03},{"x":1566587760000,"y":1.09},{"x":1566587820000,"y":0},{"x":1566587880000,"y":0},{"x":1566587940000,"y":3.81},{"x":1566588000000,"y":0.02},{"x":1566588060000,"y":0.01},{"x":1566588120000,"y":0},{"x":1566588180000,"y":0.01},{"x":1566588240000,"y":0},{"x":1566588300000,"y":0},{"x":1566588360000,"y":0.87},{"x":1566588420000,"y":1.76},{"x":1566588480000,"y":0},{"x":1566588540000,"y":0},{"x":1566588600000,"y":0},{"x":1566588660000,"y":0},{"x":1566588720000,"y":0},{"x":1566588780000,"y":0},{"x":1566588840000,"y":0.06},{"x":1566588900000,"y":0.07},{"x":1566588960000,"y":0},{"x":1566589020000,"y":0.07},{"x":1566589080000,"y":0.78},{"x":1566589140000,"y":0.03},{"x":1566589200000,"y":0},{"x":1566589260000,"y":0},{"x":1566589320000,"y":0},{"x":1566589380000,"y":0},{"x":1566589440000,"y":0},{"x":1566589500000,"y":0.91},{"x":1566589560000,"y":0.89},{"x":1566589620000,"y":0},{"x":1566589680000,"y":0.64},{"x":1566589740000,"y":0.96},{"x":1566589800000,"y":0},{"x":1566589860000,"y":0.86},{"x":1566589920000,"y":0.02},{"x":1566589980000,"y":0.6},{"x":1566590040000,"y":0.01},{"x":1566590100000,"y":0.01},{"x":1566590160000,"y":0},{"x":1566590220000,"y":0},{"x":1566590280000,"y":0.89},{"x":1566590340000,"y":0},{"x":1566590400000,"y":0},{"x":1566590460000,"y":0.41},{"x":1566590520000,"y":0.03},{"x":1566590580000,"y":0},{"x":1566590640000,"y":0.62},{"x":1566590700000,"y":0.03},{"x":1566590760000,"y":0.05},{"x":1566590820000,"y":0},{"x":1566590880000,"y":0},{"x":1566590940000,"y":0},{"x":1566591000000,"y":0},{"x":1566591060000,"y":0},{"x":1566591120000,"y":0.05},{"x":1566591180000,"y":1.25},{"x":1566591240000,"y":12.02},{"x":1566591300000,"y":17.85},{"x":1566591360000,"y":10.44},{"x":1566591420000,"y":53.1},{"x":1566591480000,"y":19.14},{"x":1566591540000,"y":5.46},{"x":1566591600000,"y":0.66},{"x":1566591660000,"y":0},{"x":1566591720000,"y":0},{"x":1566591780000,"y":0.03},{"x":1566591840000,"y":0.04},{"x":1566591900000,"y":0.02},{"x":1566591960000,"y":0.05},{"x":1566592020000,"y":0.77},{"x":1566592080000,"y":28.19},{"x":1566592140000,"y":1.71},{"x":1566592200000,"y":0.87},{"x":1566592260000,"y":0},{"x":1566592320000,"y":0},{"x":1566592380000,"y":0},{"x":1566592440000,"y":0},{"x":1566592500000,"y":0},{"x":1566592560000,"y":0.88},{"x":1566592620000,"y":0},{"x":1566592680000,"y":0},{"x":1566592740000,"y":0},{"x":1566592800000,"y":0},{"x":1566592860000,"y":2.36},{"x":1566592920000,"y":0.08},{"x":1566592980000,"y":0.01},{"x":1566593040000,"y":0.19},{"x":1566593100000,"y":0.02},{"x":1566593160000,"y":0.01},{"x":1566593220000,"y":0},{"x":1566593280000,"y":0},{"x":1566593340000,"y":0},{"x":1566593400000,"y":0},{"x":1566593460000,"y":0},{"x":1566593520000,"y":0},{"x":1566593580000,"y":0},{"x":1566593640000,"y":0.01},{"x":1566593700000,"y":0},{"x":1566593760000,"y":0},{"x":1566593820000,"y":0},{"x":1566593880000,"y":0},{"x":1566593940000,"y":0},{"x":1566594000000,"y":0},{"x":1566594060000,"y":0},{"x":1566594120000,"y":0.64},{"x":1566594180000,"y":0.01},{"x":1566594240000,"y":0},{"x":1566594300000,"y":0},{"x":1566594360000,"y":0.1},{"x":1566594420000,"y":0.59},{"x":1566594480000,"y":0.9},{"x":1566594540000,"y":0.88},{"x":1566594600000,"y":0.01},{"x":1566594660000,"y":0},{"x":1566594720000,"y":1.3},{"x":1566594780000,"y":0},{"x":1566594840000,"y":0.01},{"x":1566594900000,"y":0},{"x":1566594960000,"y":0},{"x":1566595020000,"y":0.01},{"x":1566595080000,"y":0.18},{"x":1566595140000,"y":0},{"x":1566595200000,"y":0},{"x":1566595260000,"y":0.01},{"x":1566595320000,"y":0.02},{"x":1566595380000,"y":0.52},{"x":1566595440000,"y":0},{"x":1566595500000,"y":0.94},{"x":1566595560000,"y":0.01},{"x":1566595620000,"y":0.01},{"x":1566595680000,"y":0.01},{"x":1566595740000,"y":0},{"x":1566595800000,"y":0.02},{"x":1566595860000,"y":2.39},{"x":1566595920000,"y":0.02},{"x":1566595980000,"y":0.71},{"x":1566596040000,"y":0},{"x":1566596100000,"y":0},{"x":1566596160000,"y":0},{"x":1566596220000,"y":0},{"x":1566596280000,"y":0},{"x":1566596340000,"y":0},{"x":1566596400000,"y":0},{"x":1566596460000,"y":0.02},{"x":1566596520000,"y":0},{"x":1566596580000,"y":0},{"x":1566596640000,"y":0},{"x":1566596700000,"y":0},{"x":1566596760000,"y":0},{"x":1566596820000,"y":0},{"x":1566596880000,"y":0},{"x":1566596940000,"y":0},{"x":1566597000000,"y":0},{"x":1566597060000,"y":0},{"x":1566597120000,"y":0},{"x":1566597180000,"y":0},{"x":1566597240000,"y":0},{"x":1566597300000,"y":0},{"x":1566597360000,"y":0},{"x":1566597420000,"y":0.01},{"x":1566597480000,"y":0.05},{"x":1566597540000,"y":0},{"x":1566597600000,"y":0},{"x":1566597660000,"y":0},{"x":1566597720000,"y":0},{"x":1566597780000,"y":0},{"x":1566597840000,"y":0},{"x":1566597900000,"y":0},{"x":1566597960000,"y":0},{"x":1566598020000,"y":0},{"x":1566598080000,"y":0},{"x":1566598140000,"y":0.81},{"x":1566598200000,"y":0.05},{"x":1566598260000,"y":0},{"x":1566598320000,"y":0},{"x":1566598380000,"y":0},{"x":1566598440000,"y":0},{"x":1566598500000,"y":0},{"x":1566598560000,"y":0},{"x":1566598620000,"y":0},{"x":1566598680000,"y":0},{"x":1566598740000,"y":0},{"x":1566598800000,"y":0},{"x":1566598860000,"y":0},{"x":1566598920000,"y":0},{"x":1566598980000,"y":0},{"x":1566599040000,"y":0},{"x":1566599100000,"y":0},{"x":1566599160000,"y":0},{"x":1566599220000,"y":0},{"x":1566599280000,"y":0},{"x":1566599340000,"y":0},{"x":1566599400000,"y":0},{"x":1566599460000,"y":0},{"x":1566599520000,"y":0},{"x":1566599580000,"y":0},{"x":1566599640000,"y":0},{"x":1566599700000,"y":0},{"x":1566599760000,"y":0},{"x":1566599820000,"y":0},{"x":1566599880000,"y":0},{"x":1566599940000,"y":0},{"x":1566600000000,"y":0},{"x":1566600060000,"y":0},{"x":1566600120000,"y":0},{"x":1566600180000,"y":0},{"x":1566600240000,"y":0},{"x":1566600300000,"y":0},{"x":1566600360000,"y":0},{"x":1566600420000,"y":0.01},{"x":1566600480000,"y":0},{"x":1566600540000,"y":0},{"x":1566600600000,"y":0},{"x":1566600660000,"y":0},{"x":1566600720000,"y":0},{"x":1566600780000,"y":0},{"x":1566600840000,"y":0},{"x":1566600900000,"y":0},{"x":1566600960000,"y":0.02},{"x":1566601020000,"y":0},{"x":1566601080000,"y":0},{"x":1566601140000,"y":0},{"x":1566601200000,"y":0},{"x":1566601260000,"y":0},{"x":1566601320000,"y":0},{"x":1566601380000,"y":0},{"x":1566601440000,"y":0},{"x":1566601500000,"y":0},{"x":1566601560000,"y":0},{"x":1566601620000,"y":0},{"x":1566601680000,"y":0},{"x":1566601740000,"y":0},{"x":1566601800000,"y":0},{"x":1566601860000,"y":0},{"x":1566601920000,"y":0},{"x":1566601980000,"y":0.02},{"x":1566602040000,"y":0},{"x":1566602100000,"y":0},{"x":1566602160000,"y":0},{"x":1566602220000,"y":0},{"x":1566602280000,"y":0},{"x":1566602340000,"y":0},{"x":1566602400000,"y":0},{"x":1566602460000,"y":0},{"x":1566602520000,"y":0},{"x":1566602580000,"y":0},{"x":1566602640000,"y":0},{"x":1566602700000,"y":0},{"x":1566602760000,"y":0},{"x":1566602820000,"y":0},{"x":1566602880000,"y":0},{"x":1566602940000,"y":0},{"x":1566603000000,"y":0},{"x":1566603060000,"y":0},{"x":1566603120000,"y":0},{"x":1566603180000,"y":0},{"x":1566603240000,"y":0},{"x":1566603300000,"y":0},{"x":1566603360000,"y":0},{"x":1566603420000,"y":0},{"x":1566603480000,"y":0},{"x":1566603540000,"y":0},{"x":1566603600000,"y":0},{"x":1566603660000,"y":0},{"x":1566603720000,"y":0},{"x":1566603780000,"y":0},{"x":1566603840000,"y":0},{"x":1566603900000,"y":0},{"x":1566603960000,"y":0},{"x":1566604020000,"y":0},{"x":1566604080000,"y":0},{"x":1566604140000,"y":0},{"x":1566604200000,"y":0},{"x":1566604260000,"y":0},{"x":1566604320000,"y":0},{"x":1566604380000,"y":0},{"x":1566604440000,"y":0},{"x":1566604500000,"y":0},{"x":1566604560000,"y":0},{"x":1566604620000,"y":0},{"x":1566604680000,"y":0},{"x":1566604740000,"y":0},{"x":1566604800000,"y":0},{"x":1566604860000,"y":0},{"x":1566604920000,"y":0},{"x":1566604980000,"y":0},{"x":1566605040000,"y":0},{"x":1566605100000,"y":0},{"x":1566605160000,"y":0},{"x":1566605220000,"y":0},{"x":1566605280000,"y":0},{"x":1566605340000,"y":0},{"x":1566605400000,"y":0},{"x":1566605460000,"y":0},{"x":1566605520000,"y":0},{"x":1566605580000,"y":0},{"x":1566605640000,"y":0},{"x":1566605700000,"y":0},{"x":1566605760000,"y":0},{"x":1566605820000,"y":0},{"x":1566605880000,"y":0},{"x":1566605940000,"y":0},{"x":1566606000000,"y":0},{"x":1566606060000,"y":0},{"x":1566606120000,"y":0.01},{"x":1566606180000,"y":0},{"x":1566606240000,"y":0},{"x":1566606300000,"y":0},{"x":1566606360000,"y":0},{"x":1566606420000,"y":0.01},{"x":1566606480000,"y":0},{"x":1566606540000,"y":0},{"x":1566606600000,"y":0},{"x":1566606660000,"y":0},{"x":1566606720000,"y":0},{"x":1566606780000,"y":0},{"x":1566606840000,"y":0},{"x":1566606900000,"y":0},{"x":1566606960000,"y":0},{"x":1566607020000,"y":0},{"x":1566607080000,"y":0},{"x":1566607140000,"y":0},{"x":1566607200000,"y":0},{"x":1566607260000,"y":0},{"x":1566607320000,"y":0},{"x":1566607380000,"y":0},{"x":1566607440000,"y":0},{"x":1566607500000,"y":0},{"x":1566607560000,"y":0},{"x":1566607620000,"y":0},{"x":1566607680000,"y":0},{"x":1566607740000,"y":0},{"x":1566607800000,"y":0},{"x":1566607860000,"y":0},{"x":1566607920000,"y":0},{"x":1566607980000,"y":0},{"x":1566608040000,"y":0},{"x":1566608100000,"y":0},{"x":1566608160000,"y":0},{"x":1566608220000,"y":0},{"x":1566608280000,"y":0},{"x":1566608340000,"y":0},{"x":1566608400000,"y":0},{"x":1566608460000,"y":0},{"x":1566608520000,"y":0},{"x":1566608580000,"y":0},{"x":1566608640000,"y":0},{"x":1566608700000,"y":0},{"x":1566608760000,"y":0},{"x":1566608820000,"y":0},{"x":1566608880000,"y":0},{"x":1566608940000,"y":0},{"x":1566609000000,"y":0},{"x":1566609060000,"y":0},{"x":1566609120000,"y":0},{"x":1566609180000,"y":0},{"x":1566609240000,"y":0},{"x":1566609300000,"y":0},{"x":1566609360000,"y":0},{"x":1566609420000,"y":0},{"x":1566609480000,"y":0},{"x":1566609540000,"y":0},{"x":1566609600000,"y":0},{"x":1566609660000,"y":0},{"x":1566609720000,"y":0},{"x":1566609780000,"y":0},{"x":1566609840000,"y":0},{"x":1566609900000,"y":0},{"x":1566609960000,"y":0},{"x":1566610020000,"y":0},{"x":1566610080000,"y":0},{"x":1566610140000,"y":0},{"x":1566610200000,"y":0},{"x":1566610260000,"y":0},{"x":1566610320000,"y":0},{"x":1566610380000,"y":0},{"x":1566610440000,"y":0},{"x":1566610500000,"y":0},{"x":1566610560000,"y":0},{"x":1566610620000,"y":0},{"x":1566610680000,"y":0},{"x":1566610740000,"y":0},{"x":1566610800000,"y":0},{"x":1566610860000,"y":0},{"x":1566610920000,"y":0},{"x":1566610980000,"y":0},{"x":1566611040000,"y":0},{"x":1566611100000,"y":0},{"x":1566611160000,"y":0},{"x":1566611220000,"y":0},{"x":1566611280000,"y":0},{"x":1566611340000,"y":0},{"x":1566611400000,"y":0},{"x":1566611460000,"y":0},{"x":1566611520000,"y":0},{"x":1566611580000,"y":0},{"x":1566611640000,"y":0},{"x":1566611700000,"y":0.01},{"x":1566611760000,"y":0},{"x":1566611820000,"y":0},{"x":1566611880000,"y":0},{"x":1566611940000,"y":0},{"x":1566612000000,"y":0},{"x":1566612060000,"y":0},{"x":1566612120000,"y":0},{"x":1566612180000,"y":0},{"x":1566612240000,"y":0},{"x":1566612300000,"y":0},{"x":1566612360000,"y":0},{"x":1566612420000,"y":0},{"x":1566612480000,"y":0},{"x":1566612540000,"y":0},{"x":1566612600000,"y":0},{"x":1566612660000,"y":0},{"x":1566612720000,"y":0},{"x":1566612780000,"y":0},{"x":1566612840000,"y":0},{"x":1566612900000,"y":0},{"x":1566612960000,"y":0},{"x":1566613020000,"y":0},{"x":1566613080000,"y":0},{"x":1566613140000,"y":0},{"x":1566613200000,"y":0},{"x":1566613260000,"y":0.02},{"x":1566613320000,"y":0},{"x":1566613380000,"y":0},{"x":1566613440000,"y":0},{"x":1566613500000,"y":0},{"x":1566613560000,"y":0},{"x":1566613620000,"y":0},{"x":1566613680000,"y":0},{"x":1566613740000,"y":0},{"x":1566613800000,"y":0},{"x":1566613860000,"y":0},{"x":1566613920000,"y":0},{"x":1566613980000,"y":0},{"x":1566614040000,"y":0},{"x":1566614100000,"y":0},{"x":1566614160000,"y":0},{"x":1566614220000,"y":0},{"x":1566614280000,"y":0},{"x":1566614340000,"y":0},{"x":1566614400000,"y":0},{"x":1566614460000,"y":0},{"x":1566614520000,"y":0},{"x":1566614580000,"y":0},{"x":1566614640000,"y":0},{"x":1566614700000,"y":0},{"x":1566614760000,"y":0},{"x":1566614820000,"y":0},{"x":1566614880000,"y":0},{"x":1566614940000,"y":0},{"x":1566615000000,"y":0},{"x":1566615060000,"y":0},{"x":1566615120000,"y":0},{"x":1566615180000,"y":0},{"x":1566615240000,"y":0},{"x":1566615300000,"y":0},{"x":1566615360000,"y":0.01},{"x":1566615420000,"y":0},{"x":1566615480000,"y":0},{"x":1566615540000,"y":0},{"x":1566615600000,"y":0},{"x":1566615660000,"y":0},{"x":1566615720000,"y":0},{"x":1566615780000,"y":0},{"x":1566615840000,"y":0},{"x":1566615900000,"y":0},{"x":1566615960000,"y":0},{"x":1566616020000,"y":0},{"x":1566616080000,"y":0},{"x":1566616140000,"y":0},{"x":1566616200000,"y":0},{"x":1566616260000,"y":0},{"x":1566616320000,"y":0},{"x":1566616380000,"y":0},{"x":1566616440000,"y":0},{"x":1566616500000,"y":0},{"x":1566616560000,"y":0},{"x":1566616620000,"y":0},{"x":1566616680000,"y":0},{"x":1566616740000,"y":0},{"x":1566616800000,"y":0},{"x":1566616860000,"y":0},{"x":1566616920000,"y":0},{"x":1566616980000,"y":0},{"x":1566617040000,"y":0},{"x":1566617100000,"y":0},{"x":1566617160000,"y":0},{"x":1566617220000,"y":0},{"x":1566617280000,"y":0},{"x":1566617340000,"y":0},{"x":1566617400000,"y":0},{"x":1566617460000,"y":0},{"x":1566617520000,"y":0},{"x":1566617580000,"y":0},{"x":1566617640000,"y":0},{"x":1566617700000,"y":0},{"x":1566617760000,"y":0},{"x":1566617820000,"y":0},{"x":1566617880000,"y":0},{"x":1566617940000,"y":0},{"x":1566618000000,"y":0},{"x":1566618060000,"y":0},{"x":1566618120000,"y":0},{"x":1566618180000,"y":0},{"x":1566618240000,"y":0},{"x":1566618300000,"y":0},{"x":1566618360000,"y":0},{"x":1566618420000,"y":0},{"x":1566618480000,"y":0},{"x":1566618540000,"y":0},{"x":1566618600000,"y":0},{"x":1566618660000,"y":0},{"x":1566618720000,"y":0},{"x":1566618780000,"y":0},{"x":1566618840000,"y":0},{"x":1566618900000,"y":0},{"x":1566618960000,"y":0.02},{"x":1566619020000,"y":0},{"x":1566619080000,"y":0},{"x":1566619140000,"y":0},{"x":1566619200000,"y":0},{"x":1566619260000,"y":0},{"x":1566619320000,"y":0},{"x":1566619380000,"y":0},{"x":1566619440000,"y":0},{"x":1566619500000,"y":0},{"x":1566619560000,"y":0},{"x":1566619620000,"y":0},{"x":1566619680000,"y":0},{"x":1566619740000,"y":0},{"x":1566619800000,"y":0},{"x":1566619860000,"y":0},{"x":1566619920000,"y":0},{"x":1566619980000,"y":0},{"x":1566620040000,"y":0},{"x":1566620100000,"y":0},{"x":1566620160000,"y":0},{"x":1566620220000,"y":0},{"x":1566620280000,"y":0},{"x":1566620340000,"y":0},{"x":1566620400000,"y":0},{"x":1566620460000,"y":0},{"x":1566620520000,"y":0},{"x":1566620580000,"y":0},{"x":1566620640000,"y":0},{"x":1566620700000,"y":0},{"x":1566620760000,"y":0},{"x":1566620820000,"y":0},{"x":1566620880000,"y":0},{"x":1566620940000,"y":0},{"x":1566621000000,"y":0},{"x":1566621060000,"y":0},{"x":1566621120000,"y":0},{"x":1566621180000,"y":0},{"x":1566621240000,"y":0},{"x":1566621300000,"y":0},{"x":1566621360000,"y":0},{"x":1566621420000,"y":0},{"x":1566621480000,"y":0},{"x":1566621540000,"y":0},{"x":1566621600000,"y":0},{"x":1566621660000,"y":0},{"x":1566621720000,"y":0},{"x":1566621780000,"y":0},{"x":1566621840000,"y":0},{"x":1566621900000,"y":0},{"x":1566621960000,"y":0},{"x":1566622020000,"y":0},{"x":1566622080000,"y":0},{"x":1566622140000,"y":0},{"x":1566622200000,"y":0},{"x":1566622260000,"y":0},{"x":1566622320000,"y":0},{"x":1566622380000,"y":0},{"x":1566622440000,"y":0},{"x":1566622500000,"y":0},{"x":1566622560000,"y":0},{"x":1566622620000,"y":0},{"x":1566622680000,"y":0},{"x":1566622740000,"y":0},{"x":1566622800000,"y":0},{"x":1566622860000,"y":0},{"x":1566622920000,"y":0},{"x":1566622980000,"y":0},{"x":1566623040000,"y":0},{"x":1566623100000,"y":0},{"x":1566623160000,"y":0},{"x":1566623220000,"y":0},{"x":1566623280000,"y":0},{"x":1566623340000,"y":0},{"x":1566623400000,"y":0},{"x":1566623460000,"y":0},{"x":1566623520000,"y":0},{"x":1566623580000,"y":0},{"x":1566623640000,"y":0},{"x":1566623700000,"y":0},{"x":1566623760000,"y":0},{"x":1566623820000,"y":0},{"x":1566623880000,"y":0},{"x":1566623940000,"y":0},{"x":1566624000000,"y":0},{"x":1566624060000,"y":0},{"x":1566624120000,"y":0},{"x":1566624180000,"y":0},{"x":1566624240000,"y":0},{"x":1566624300000,"y":0},{"x":1566624360000,"y":0},{"x":1566624420000,"y":0},{"x":1566624480000,"y":0},{"x":1566624540000,"y":0},{"x":1566624600000,"y":0},{"x":1566624660000,"y":0},{"x":1566624720000,"y":0},{"x":1566624780000,"y":0},{"x":1566624840000,"y":0},{"x":1566624900000,"y":0},{"x":1566624960000,"y":0},{"x":1566625020000,"y":0},{"x":1566625080000,"y":0},{"x":1566625140000,"y":0},{"x":1566625200000,"y":0},{"x":1566625260000,"y":0},{"x":1566625320000,"y":0},{"x":1566625380000,"y":0},{"x":1566625440000,"y":0},{"x":1566625500000,"y":0},{"x":1566625560000,"y":0},{"x":1566625620000,"y":0},{"x":1566625680000,"y":0},{"x":1566625740000,"y":0},{"x":1566625800000,"y":0},{"x":1566625860000,"y":0},{"x":1566625920000,"y":0},{"x":1566625980000,"y":0},{"x":1566626040000,"y":0},{"x":1566626100000,"y":0},{"x":1566626160000,"y":0},{"x":1566626220000,"y":0},{"x":1566626280000,"y":0},{"x":1566626340000,"y":0.01},{"x":1566626400000,"y":0.02},{"x":1566626460000,"y":0.02},{"x":1566626520000,"y":0.03},{"x":1566626580000,"y":0.02},{"x":1566626640000,"y":0.02},{"x":1566626700000,"y":0.02},{"x":1566626760000,"y":0.02},{"x":1566626820000,"y":0.02},{"x":1566626880000,"y":0.02},{"x":1566626940000,"y":0.02},{"x":1566627000000,"y":0.02},{"x":1566627060000,"y":0.01},{"x":1566627120000,"y":0.02},{"x":1566627180000,"y":0.02},{"x":1566627240000,"y":0.02},{"x":1566627300000,"y":0.02},{"x":1566627360000,"y":0.03},{"x":1566627420000,"y":0.03},{"x":1566627480000,"y":0.02},{"x":1566627540000,"y":0.02},{"x":1566627600000,"y":0.03},{"x":1566627660000,"y":0.02},{"x":1566627720000,"y":0.02},{"x":1566627780000,"y":0.02},{"x":1566627840000,"y":0.02},{"x":1566627900000,"y":0.02},{"x":1566627960000,"y":0.02},{"x":1566628020000,"y":0.02},{"x":1566628080000,"y":0.03},{"x":1566628140000,"y":0.02},{"x":1566628200000,"y":0.02},{"x":1566628260000,"y":0.03},{"x":1566628320000,"y":0.03},{"x":1566628380000,"y":0.02},{"x":1566628440000,"y":0.02},{"x":1566628500000,"y":0.02},{"x":1566628560000,"y":0.02},{"x":1566628620000,"y":0.02},{"x":1566628680000,"y":0.02},{"x":1566628740000,"y":0.02},{"x":1566628800000,"y":0.02},{"x":1566628860000,"y":0.03},{"x":1566628920000,"y":0.02},{"x":1566628980000,"y":0.02},{"x":1566629040000,"y":0.02},{"x":1566629100000,"y":0.02},{"x":1566629160000,"y":0.02},{"x":1566629220000,"y":0.02},{"x":1566629280000,"y":0.02},{"x":1566629340000,"y":0.02},{"x":1566629400000,"y":0.02},{"x":1566629460000,"y":0.02},{"x":1566629520000,"y":0.02},{"x":1566629580000,"y":0.02},{"x":1566629640000,"y":0.03},{"x":1566629700000,"y":0.05},{"x":1566629760000,"y":0.02},{"x":1566629820000,"y":0.03},{"x":1566629880000,"y":0.03},{"x":1566629940000,"y":0.02},{"x":1566630000000,"y":0.02},{"x":1566630060000,"y":0.02},{"x":1566630120000,"y":0.02},{"x":1566630180000,"y":0.02},{"x":1566630240000,"y":0.03},{"x":1566630300000,"y":0.02},{"x":1566630360000,"y":0.03},{"x":1566630420000,"y":0.02},{"x":1566630480000,"y":0.02},{"x":1566630540000,"y":0.02},{"x":1566630600000,"y":0.02},{"x":1566630660000,"y":0.03},{"x":1566630720000,"y":0.02},{"x":1566630780000,"y":0.02},{"x":1566630840000,"y":0.02},{"x":1566630900000,"y":0.02},{"x":1566630960000,"y":0.02},{"x":1566631020000,"y":0.02},{"x":1566631080000,"y":0.02},{"x":1566631140000,"y":0.02},{"x":1566631200000,"y":0.03},{"x":1566631260000,"y":0.02},{"x":1566631320000,"y":0.02},{"x":1566631380000,"y":0.02},{"x":1566631440000,"y":0.02},{"x":1566631500000,"y":0.02},{"x":1566631560000,"y":0.02},{"x":1566631620000,"y":0.03},{"x":1566631680000,"y":0.02},{"x":1566631740000,"y":0.02},{"x":1566631800000,"y":0.02},{"x":1566631860000,"y":0.02},{"x":1566631920000,"y":0.02},{"x":1566631980000,"y":0.03},{"x":1566632040000,"y":0.02},{"x":1566632100000,"y":0.02},{"x":1566632160000,"y":0.02},{"x":1566632220000,"y":0.02},{"x":1566632280000,"y":0.02},{"x":1566632340000,"y":0.02},{"x":1566632400000,"y":0.02},{"x":1566632460000,"y":0.02},{"x":1566632520000,"y":0.02},{"x":1566632580000,"y":0.02},{"x":1566632640000,"y":0.02},{"x":1566632700000,"y":0.02},{"x":1566632760000,"y":0.02},{"x":1566632820000,"y":0.02},{"x":1566632880000,"y":0.02},{"x":1566632940000,"y":0.02},{"x":1566633000000,"y":0.02},{"x":1566633060000,"y":0.02},{"x":1566633120000,"y":0.02},{"x":1566633180000,"y":0.02},{"x":1566633240000,"y":0.02},{"x":1566633300000,"y":0.03},{"x":1566633360000,"y":0.02},{"x":1566633420000,"y":0.03},{"x":1566633480000,"y":0.02},{"x":1566633540000,"y":0.02},{"x":1566633600000,"y":0.02},{"x":1566633660000,"y":0.03},{"x":1566633720000,"y":0.02},{"x":1566633780000,"y":0.02},{"x":1566633840000,"y":0.02},{"x":1566633900000,"y":0.02},{"x":1566633960000,"y":0.03},{"x":1566634020000,"y":0.02},{"x":1566634080000,"y":0.03},{"x":1566634140000,"y":0.02},{"x":1566634200000,"y":0.02},{"x":1566634260000,"y":0.02},{"x":1566634320000,"y":0.02},{"x":1566634380000,"y":0.03},{"x":1566634440000,"y":0.02},{"x":1566634500000,"y":0.03},{"x":1566634560000,"y":0.02},{"x":1566634620000,"y":0.03},{"x":1566634680000,"y":0.02},{"x":1566634740000,"y":0.02},{"x":1566634800000,"y":0.03},{"x":1566634860000,"y":0.02},{"x":1566634920000,"y":0.02},{"x":1566634980000,"y":0.02},{"x":1566635040000,"y":0.02},{"x":1566635100000,"y":0.02},{"x":1566635160000,"y":0.04},{"x":1566635220000,"y":0.03},{"x":1566635280000,"y":0.02},{"x":1566635340000,"y":0.02},{"x":1566635400000,"y":0.02},{"x":1566635460000,"y":0.02},{"x":1566635520000,"y":0.02},{"x":1566635580000,"y":0.03},{"x":1566635640000,"y":0.02},{"x":1566635700000,"y":0.03},{"x":1566635760000,"y":0.02},{"x":1566635820000,"y":0.02},{"x":1566635880000,"y":0.03},{"x":1566635940000,"y":0.02},{"x":1566636000000,"y":0.03},{"x":1566636060000,"y":0.02},{"x":1566636120000,"y":0.02},{"x":1566636180000,"y":0.03},{"x":1566636240000,"y":0.02},{"x":1566636300000,"y":0.02},{"x":1566636360000,"y":0.02},{"x":1566636420000,"y":0.02},{"x":1566636480000,"y":0.02},{"x":1566636540000,"y":0.03},{"x":1566636600000,"y":0.02},{"x":1566636660000,"y":0.02},{"x":1566636720000,"y":0.02},{"x":1566636780000,"y":0.02},{"x":1566636840000,"y":0.02},{"x":1566636900000,"y":0.02},{"x":1566636960000,"y":0.02},{"x":1566637020000,"y":0.02},{"x":1566637080000,"y":0.03},{"x":1566637140000,"y":0.02},{"x":1566637200000,"y":0.03},{"x":1566637260000,"y":0.03},{"x":1566637320000,"y":0.02},{"x":1566637380000,"y":0.02},{"x":1566637440000,"y":0.02},{"x":1566637500000,"y":0.03},{"x":1566637560000,"y":0.02},{"x":1566637620000,"y":0.03},{"x":1566637680000,"y":0.02},{"x":1566637740000,"y":0.02},{"x":1566637800000,"y":0.03},{"x":1566637860000,"y":0.03},{"x":1566637920000,"y":0.02},{"x":1566637980000,"y":0.02},{"x":1566638040000,"y":0.02},{"x":1566638100000,"y":0.02},{"x":1566638160000,"y":0.02},{"x":1566638220000,"y":0.02},{"x":1566638280000,"y":0.03},{"x":1566638340000,"y":0.02},{"x":1566638400000,"y":0.03},{"x":1566638460000,"y":0.02},{"x":1566638520000,"y":0.02},{"x":1566638580000,"y":0.02},{"x":1566638640000,"y":0.02},{"x":1566638700000,"y":0.03},{"x":1566638760000,"y":0.03},{"x":1566638820000,"y":0.02},{"x":1566638880000,"y":0.02},{"x":1566638940000,"y":0},{"x":1566639000000,"y":0},{"x":1566639060000,"y":0},{"x":1566639120000,"y":0},{"x":1566639180000,"y":0},{"x":1566639240000,"y":0},{"x":1566639300000,"y":0},{"x":1566639360000,"y":0},{"x":1566639420000,"y":0},{"x":1566639480000,"y":0},{"x":1566639540000,"y":0},{"x":1566639600000,"y":0},{"x":1566639660000,"y":0},{"x":1566639720000,"y":0},{"x":1566639780000,"y":0},{"x":1566639840000,"y":0},{"x":1566639900000,"y":0},{"x":1566639960000,"y":0},{"x":1566640020000,"y":0},{"x":1566640080000,"y":0},{"x":1566640140000,"y":0},{"x":1566640200000,"y":0},{"x":1566640260000,"y":0},{"x":1566640320000,"y":0},{"x":1566640380000,"y":0.01},{"x":1566640440000,"y":0},{"x":1566640500000,"y":0},{"x":1566640560000,"y":0},{"x":1566640620000,"y":0},{"x":1566640680000,"y":0},{"x":1566640740000,"y":0},{"x":1566640800000,"y":0.02},{"x":1566640860000,"y":0.02},{"x":1566640920000,"y":0.02},{"x":1566640980000,"y":0.03},{"x":1566641040000,"y":0.05},{"x":1566641100000,"y":0.05},{"x":1566641160000,"y":0.04},{"x":1566641220000,"y":0.04},{"x":1566641280000,"y":0.05},{"x":1566641340000,"y":0.04},{"x":1566641400000,"y":0.04},{"x":1566641460000,"y":0.02},{"x":1566641520000,"y":0.03},{"x":1566641580000,"y":0.02},{"x":1566641640000,"y":0.02},{"x":1566641700000,"y":0.02},{"x":1566641760000,"y":0.02},{"x":1566641820000,"y":0.02},{"x":1566641880000,"y":0.02},{"x":1566641940000,"y":0.02},{"x":1566642000000,"y":0.02},{"x":1566642060000,"y":0.02},{"x":1566642120000,"y":0.03},{"x":1566642180000,"y":0.03},{"x":1566642240000,"y":0.02},{"x":1566642300000,"y":0.03},{"x":1566642360000,"y":0.02},{"x":1566642420000,"y":0.03},{"x":1566642480000,"y":0.02},{"x":1566642540000,"y":0.02},{"x":1566642600000,"y":0.03},{"x":1566642660000,"y":0.03},{"x":1566642720000,"y":0.02},{"x":1566642780000,"y":0.02},{"x":1566642840000,"y":0.02},{"x":1566642900000,"y":0.02},{"x":1566642960000,"y":0.03},{"x":1566643020000,"y":0.02},{"x":1566643080000,"y":0.02},{"x":1566643140000,"y":0.02},{"x":1566643200000,"y":0.03},{"x":1566643260000,"y":0.02},{"x":1566643320000,"y":0.02},{"x":1566643380000,"y":0.02},{"x":1566643440000,"y":0.02},{"x":1566643500000,"y":0.02},{"x":1566643560000,"y":0.02},{"x":1566643620000,"y":0.03},{"x":1566643680000,"y":0.02},{"x":1566643740000,"y":0.02},{"x":1566643800000,"y":0.02},{"x":1566643860000,"y":0.03},{"x":1566643920000,"y":0.03},{"x":1566643980000,"y":0.03},{"x":1566644040000,"y":0.02},{"x":1566644100000,"y":0.03},{"x":1566644160000,"y":0.02},{"x":1566644220000,"y":0.03},{"x":1566644280000,"y":0.03},{"x":1566644340000,"y":0.02},{"x":1566644400000,"y":0.02},{"x":1566644460000,"y":0.02},{"x":1566644520000,"y":0.02},{"x":1566644580000,"y":0.03},{"x":1566644640000,"y":0.02},{"x":1566644700000,"y":0.02},{"x":1566644760000,"y":0.03},{"x":1566644820000,"y":0.02},{"x":1566644880000,"y":0.02},{"x":1566644940000,"y":0.03},{"x":1566645000000,"y":0.02},{"x":1566645060000,"y":0.03},{"x":1566645120000,"y":0.02},{"x":1566645180000,"y":0.02},{"x":1566645240000,"y":0.02},{"x":1566645300000,"y":0.02},{"x":1566645360000,"y":0.02},{"x":1566645420000,"y":0.02},{"x":1566645480000,"y":0.03},{"x":1566645540000,"y":0.03},{"x":1566645600000,"y":0.02},{"x":1566645660000,"y":0.03},{"x":1566645720000,"y":0.03},{"x":1566645780000,"y":0.03},{"x":1566645840000,"y":0.03},{"x":1566645900000,"y":0.02},{"x":1566645960000,"y":0.03},{"x":1566646020000,"y":0.03},{"x":1566646080000,"y":0.02},{"x":1566646140000,"y":0.03},{"x":1566646200000,"y":0.02},{"x":1566646260000,"y":0.02},{"x":1566646320000,"y":0.02},{"x":1566646380000,"y":0.02},{"x":1566646440000,"y":0.02},{"x":1566646500000,"y":0.03},{"x":1566646560000,"y":0.02},{"x":1566646620000,"y":0.02},{"x":1566646680000,"y":0.02},{"x":1566646740000,"y":0.02},{"x":1566646800000,"y":0.01},{"x":1566646860000,"y":0},{"x":1566646920000,"y":0},{"x":1566646980000,"y":0},{"x":1566647040000,"y":0},{"x":1566647100000,"y":0},{"x":1566647160000,"y":0},{"x":1566647220000,"y":0},{"x":1566647280000,"y":0},{"x":1566647340000,"y":0},{"x":1566647400000,"y":0},{"x":1566647460000,"y":0},{"x":1566647520000,"y":0},{"x":1566647580000,"y":0},{"x":1566647640000,"y":0},{"x":1566647700000,"y":0},{"x":1566647760000,"y":0},{"x":1566647820000,"y":0},{"x":1566647880000,"y":0.01},{"x":1566647940000,"y":0},{"x":1566648000000,"y":0},{"x":1566648060000,"y":0},{"x":1566648120000,"y":0},{"x":1566648180000,"y":0},{"x":1566648240000,"y":0},{"x":1566648300000,"y":0},{"x":1566648360000,"y":0},{"x":1566648420000,"y":0},{"x":1566648480000,"y":0},{"x":1566648540000,"y":0},{"x":1566648600000,"y":0},{"x":1566648660000,"y":0},{"x":1566648720000,"y":0},{"x":1566648780000,"y":0},{"x":1566648840000,"y":0},{"x":1566648900000,"y":0},{"x":1566648960000,"y":0},{"x":1566649020000,"y":0},{"x":1566649080000,"y":0},{"x":1566649140000,"y":0},{"x":1566649200000,"y":0},{"x":1566649260000,"y":0},{"x":1566649320000,"y":0},{"x":1566649380000,"y":0},{"x":1566649440000,"y":0},{"x":1566649500000,"y":0},{"x":1566649560000,"y":0},{"x":1566649620000,"y":0},{"x":1566649680000,"y":0},{"x":1566649740000,"y":0},{"x":1566649800000,"y":0},{"x":1566649860000,"y":0},{"x":1566649920000,"y":0},{"x":1566649980000,"y":0},{"x":1566650040000,"y":0},{"x":1566650100000,"y":0},{"x":1566650160000,"y":0},{"x":1566650220000,"y":0},{"x":1566650280000,"y":0},{"x":1566650340000,"y":0},{"x":1566650400000,"y":0},{"x":1566650460000,"y":0},{"x":1566650520000,"y":0},{"x":1566650580000,"y":0},{"x":1566650640000,"y":0},{"x":1566650700000,"y":0},{"x":1566650760000,"y":0},{"x":1566650820000,"y":0},{"x":1566650880000,"y":0},{"x":1566650940000,"y":0},{"x":1566651000000,"y":0},{"x":1566651060000,"y":0},{"x":1566651120000,"y":0},{"x":1566651180000,"y":0},{"x":1566651240000,"y":0},{"x":1566651300000,"y":0},{"x":1566651360000,"y":0},{"x":1566651420000,"y":0},{"x":1566651480000,"y":0},{"x":1566651540000,"y":0},{"x":1566651600000,"y":0},{"x":1566651660000,"y":0},{"x":1566651720000,"y":0},{"x":1566651780000,"y":0},{"x":1566651840000,"y":0},{"x":1566651900000,"y":0},{"x":1566651960000,"y":0},{"x":1566652020000,"y":0},{"x":1566652080000,"y":0},{"x":1566652140000,"y":0},{"x":1566652200000,"y":0},{"x":1566652260000,"y":0},{"x":1566652320000,"y":0},{"x":1566652380000,"y":0},{"x":1566652440000,"y":0},{"x":1566652500000,"y":0},{"x":1566652560000,"y":0},{"x":1566652620000,"y":0},{"x":1566652680000,"y":0},{"x":1566652740000,"y":0},{"x":1566652800000,"y":0},{"x":1566652860000,"y":0},{"x":1566652920000,"y":0},{"x":1566652980000,"y":0},{"x":1566653040000,"y":0},{"x":1566653100000,"y":0},{"x":1566653160000,"y":0},{"x":1566653220000,"y":0},{"x":1566653280000,"y":0},{"x":1566653340000,"y":0},{"x":1566653400000,"y":0},{"x":1566653460000,"y":0},{"x":1566653520000,"y":0},{"x":1566653580000,"y":0},{"x":1566653640000,"y":0},{"x":1566653700000,"y":0},{"x":1566653760000,"y":0},{"x":1566653820000,"y":0},{"x":1566653880000,"y":0},{"x":1566653940000,"y":0},{"x":1566654000000,"y":0},{"x":1566654060000,"y":0},{"x":1566654120000,"y":0},{"x":1566654180000,"y":0},{"x":1566654240000,"y":0},{"x":1566654300000,"y":0},{"x":1566654360000,"y":0},{"x":1566654420000,"y":0},{"x":1566654480000,"y":0},{"x":1566654540000,"y":0},{"x":1566654600000,"y":0},{"x":1566654660000,"y":0},{"x":1566654720000,"y":0},{"x":1566654780000,"y":0},{"x":1566654840000,"y":0},{"x":1566654900000,"y":0},{"x":1566654960000,"y":0},{"x":1566655020000,"y":0},{"x":1566655080000,"y":0},{"x":1566655140000,"y":0},{"x":1566655200000,"y":0},{"x":1566655260000,"y":0},{"x":1566655320000,"y":0},{"x":1566655380000,"y":0},{"x":1566655440000,"y":0},{"x":1566655500000,"y":0},{"x":1566655560000,"y":0},{"x":1566655620000,"y":0},{"x":1566655680000,"y":0},{"x":1566655740000,"y":0},{"x":1566655800000,"y":0.02},{"x":1566655860000,"y":0},{"x":1566655920000,"y":0},{"x":1566655980000,"y":0},{"x":1566656040000,"y":0},{"x":1566656100000,"y":0},{"x":1566656160000,"y":0},{"x":1566656220000,"y":0},{"x":1566656280000,"y":0},{"x":1566656340000,"y":0},{"x":1566656400000,"y":0},{"x":1566656460000,"y":0},{"x":1566656520000,"y":0},{"x":1566656580000,"y":0},{"x":1566656640000,"y":0},{"x":1566656700000,"y":0},{"x":1566656760000,"y":0},{"x":1566656820000,"y":0},{"x":1566656880000,"y":0},{"x":1566656940000,"y":0},{"x":1566657000000,"y":0},{"x":1566657060000,"y":0.01},{"x":1566657120000,"y":0},{"x":1566657180000,"y":0},{"x":1566657240000,"y":0},{"x":1566657300000,"y":0},{"x":1566657360000,"y":0},{"x":1566657420000,"y":0},{"x":1566657480000,"y":0},{"x":1566657540000,"y":0},{"x":1566657600000,"y":0},{"x":1566657660000,"y":0},{"x":1566657720000,"y":0},{"x":1566657780000,"y":0},{"x":1566657840000,"y":0},{"x":1566657900000,"y":0},{"x":1566657960000,"y":0},{"x":1566658020000,"y":0},{"x":1566658080000,"y":0},{"x":1566658140000,"y":0},{"x":1566658200000,"y":0},{"x":1566658260000,"y":0},{"x":1566658320000,"y":0},{"x":1566658380000,"y":0},{"x":1566658440000,"y":0},{"x":1566658500000,"y":0},{"x":1566658560000,"y":0},{"x":1566658620000,"y":0},{"x":1566658680000,"y":0},{"x":1566658740000,"y":0},{"x":1566658800000,"y":0},{"x":1566658860000,"y":0},{"x":1566658920000,"y":0},{"x":1566658980000,"y":0},{"x":1566659040000,"y":0},{"x":1566659100000,"y":0},{"x":1566659160000,"y":0},{"x":1566659220000,"y":0},{"x":1566659280000,"y":0},{"x":1566659340000,"y":0},{"x":1566659400000,"y":0},{"x":1566659460000,"y":0},{"x":1566659520000,"y":0},{"x":1566659580000,"y":0},{"x":1566659640000,"y":0},{"x":1566659700000,"y":0},{"x":1566659760000,"y":0},{"x":1566659820000,"y":0},{"x":1566659880000,"y":0},{"x":1566659940000,"y":0},{"x":1566660000000,"y":0},{"x":1566660060000,"y":0},{"x":1566660120000,"y":0},{"x":1566660180000,"y":0},{"x":1566660240000,"y":0},{"x":1566660300000,"y":0},{"x":1566660360000,"y":0},{"x":1566660420000,"y":0},{"x":1566660480000,"y":0},{"x":1566660540000,"y":0},{"x":1566660600000,"y":0},{"x":1566660660000,"y":0},{"x":1566660720000,"y":0},{"x":1566660780000,"y":0},{"x":1566660840000,"y":0},{"x":1566660900000,"y":0},{"x":1566660960000,"y":0},{"x":1566661020000,"y":0},{"x":1566661080000,"y":0},{"x":1566661140000,"y":0},{"x":1566661200000,"y":0},{"x":1566661260000,"y":0},{"x":1566661320000,"y":0},{"x":1566661380000,"y":0},{"x":1566661440000,"y":0},{"x":1566661500000,"y":0},{"x":1566661560000,"y":0},{"x":1566661620000,"y":0},{"x":1566661680000,"y":0},{"x":1566661740000,"y":0},{"x":1566661800000,"y":0},{"x":1566661860000,"y":0},{"x":1566661920000,"y":0},{"x":1566661980000,"y":0},{"x":1566662040000,"y":0},{"x":1566662100000,"y":0},{"x":1566662160000,"y":0},{"x":1566662220000,"y":0},{"x":1566662280000,"y":0},{"x":1566662340000,"y":0},{"x":1566662400000,"y":0},{"x":1566662460000,"y":0},{"x":1566662520000,"y":0},{"x":1566662580000,"y":0},{"x":1566662640000,"y":0},{"x":1566662700000,"y":0},{"x":1566662760000,"y":0},{"x":1566662820000,"y":0},{"x":1566662880000,"y":0},{"x":1566662940000,"y":0},{"x":1566663000000,"y":0},{"x":1566663060000,"y":0},{"x":1566663120000,"y":0},{"x":1566663180000,"y":0},{"x":1566663240000,"y":0},{"x":1566663300000,"y":0},{"x":1566663360000,"y":0},{"x":1566663420000,"y":0},{"x":1566663480000,"y":0},{"x":1566663540000,"y":0},{"x":1566663600000,"y":0},{"x":1566663660000,"y":0},{"x":1566663720000,"y":0},{"x":1566663780000,"y":0},{"x":1566663840000,"y":0},{"x":1566663900000,"y":0},{"x":1566663960000,"y":0},{"x":1566664020000,"y":0},{"x":1566664080000,"y":0},{"x":1566664140000,"y":0},{"x":1566664200000,"y":0},{"x":1566664260000,"y":0},{"x":1566664320000,"y":0},{"x":1566664380000,"y":0},{"x":1566664440000,"y":0},{"x":1566664500000,"y":0},{"x":1566664560000,"y":0},{"x":1566664620000,"y":0},{"x":1566664680000,"y":0},{"x":1566664740000,"y":0},{"x":1566664800000,"y":0},{"x":1566664860000,"y":0},{"x":1566664920000,"y":0},{"x":1566664980000,"y":0},{"x":1566665040000,"y":0},{"x":1566665100000,"y":0},{"x":1566665160000,"y":0},{"x":1566665220000,"y":0},{"x":1566665280000,"y":0},{"x":1566665340000,"y":0},{"x":1566665400000,"y":0},{"x":1566665460000,"y":0},{"x":1566665520000,"y":0},{"x":1566665580000,"y":0},{"x":1566665640000,"y":0},{"x":1566665700000,"y":0},{"x":1566665760000,"y":0},{"x":1566665820000,"y":0},{"x":1566665880000,"y":0},{"x":1566665940000,"y":0},{"x":1566666000000,"y":0},{"x":1566666060000,"y":0},{"x":1566666120000,"y":0},{"x":1566666180000,"y":0},{"x":1566666240000,"y":0},{"x":1566666300000,"y":0},{"x":1566666360000,"y":0},{"x":1566666420000,"y":0},{"x":1566666480000,"y":0},{"x":1566666540000,"y":0},{"x":1566666600000,"y":0},{"x":1566666660000,"y":0},{"x":1566666720000,"y":0},{"x":1566666780000,"y":0},{"x":1566666840000,"y":0},{"x":1566666900000,"y":0},{"x":1566666960000,"y":0},{"x":1566667020000,"y":0},{"x":1566667080000,"y":0},{"x":1566667140000,"y":0},{"x":1566667200000,"y":0},{"x":1566667260000,"y":0},{"x":1566667320000,"y":0},{"x":1566667380000,"y":0},{"x":1566667440000,"y":0},{"x":1566667500000,"y":0},{"x":1566667560000,"y":0},{"x":1566667620000,"y":0},{"x":1566667680000,"y":0},{"x":1566667740000,"y":0},{"x":1566667800000,"y":0},{"x":1566667860000,"y":0},{"x":1566667920000,"y":0},{"x":1566667980000,"y":0},{"x":1566668040000,"y":0},{"x":1566668100000,"y":0},{"x":1566668160000,"y":0},{"x":1566668220000,"y":0},{"x":1566668280000,"y":0},{"x":1566668340000,"y":0},{"x":1566668400000,"y":0},{"x":1566668460000,"y":0},{"x":1566668520000,"y":0},{"x":1566668580000,"y":0},{"x":1566668640000,"y":0},{"x":1566668700000,"y":0},{"x":1566668760000,"y":0},{"x":1566668820000,"y":0},{"x":1566668880000,"y":0},{"x":1566668940000,"y":0},{"x":1566669000000,"y":0},{"x":1566669060000,"y":0},{"x":1566669120000,"y":0},{"x":1566669180000,"y":0},{"x":1566669240000,"y":0},{"x":1566669300000,"y":0},{"x":1566669360000,"y":0},{"x":1566669420000,"y":0},{"x":1566669480000,"y":0},{"x":1566669540000,"y":0},{"x":1566669600000,"y":0},{"x":1566669660000,"y":0},{"x":1566669720000,"y":0},{"x":1566669780000,"y":0},{"x":1566669840000,"y":0},{"x":1566669900000,"y":0},{"x":1566669960000,"y":0},{"x":1566670020000,"y":0},{"x":1566670080000,"y":0},{"x":1566670140000,"y":0},{"x":1566670200000,"y":0},{"x":1566670260000,"y":0},{"x":1566670320000,"y":0},{"x":1566670380000,"y":0},{"x":1566670440000,"y":0},{"x":1566670500000,"y":0},{"x":1566670560000,"y":0},{"x":1566670620000,"y":0},{"x":1566670680000,"y":0},{"x":1566670740000,"y":0},{"x":1566670800000,"y":0},{"x":1566670860000,"y":0},{"x":1566670920000,"y":0},{"x":1566670980000,"y":0},{"x":1566671040000,"y":0},{"x":1566671100000,"y":0},{"x":1566671160000,"y":0},{"x":1566671220000,"y":0},{"x":1566671280000,"y":0},{"x":1566671340000,"y":0},{"x":1566671400000,"y":0},{"x":1566671460000,"y":0},{"x":1566671520000,"y":0},{"x":1566671580000,"y":0},{"x":1566671640000,"y":0},{"x":1566671700000,"y":0},{"x":1566671760000,"y":0},{"x":1566671820000,"y":0},{"x":1566671880000,"y":0},{"x":1566671940000,"y":0},{"x":1566672000000,"y":0},{"x":1566672060000,"y":0},{"x":1566672120000,"y":0.01},{"x":1566672180000,"y":0},{"x":1566672240000,"y":0},{"x":1566672300000,"y":0},{"x":1566672360000,"y":0},{"x":1566672420000,"y":0},{"x":1566672480000,"y":0},{"x":1566672540000,"y":0},{"x":1566672600000,"y":0},{"x":1566672660000,"y":0},{"x":1566672720000,"y":0},{"x":1566672780000,"y":0},{"x":1566672840000,"y":0},{"x":1566672900000,"y":0},{"x":1566672960000,"y":0},{"x":1566673020000,"y":0},{"x":1566673080000,"y":0},{"x":1566673140000,"y":0},{"x":1566673200000,"y":0},{"x":1566673260000,"y":0},{"x":1566673320000,"y":0},{"x":1566673380000,"y":0},{"x":1566673440000,"y":0},{"x":1566673500000,"y":0},{"x":1566673560000,"y":0},{"x":1566673620000,"y":0},{"x":1566673680000,"y":0},{"x":1566673740000,"y":0},{"x":1566673800000,"y":0},{"x":1566673860000,"y":0},{"x":1566673920000,"y":0},{"x":1566673980000,"y":0},{"x":1566674040000,"y":0},{"x":1566674100000,"y":0},{"x":1566674160000,"y":0},{"x":1566674220000,"y":0},{"x":1566674280000,"y":0},{"x":1566674340000,"y":0},{"x":1566674400000,"y":0},{"x":1566674460000,"y":0},{"x":1566674520000,"y":0},{"x":1566674580000,"y":0},{"x":1566674640000,"y":0},{"x":1566674700000,"y":0},{"x":1566674760000,"y":0},{"x":1566674820000,"y":0},{"x":1566674880000,"y":0},{"x":1566674940000,"y":0},{"x":1566675000000,"y":0},{"x":1566675060000,"y":0},{"x":1566675120000,"y":0},{"x":1566675180000,"y":0},{"x":1566675240000,"y":0},{"x":1566675300000,"y":0},{"x":1566675360000,"y":0},{"x":1566675420000,"y":0},{"x":1566675480000,"y":0},{"x":1566675540000,"y":0},{"x":1566675600000,"y":0},{"x":1566675660000,"y":0},{"x":1566675720000,"y":0},{"x":1566675780000,"y":0},{"x":1566675840000,"y":0},{"x":1566675900000,"y":0},{"x":1566675960000,"y":0},{"x":1566676020000,"y":0},{"x":1566676080000,"y":0},{"x":1566676140000,"y":0},{"x":1566676200000,"y":0},{"x":1566676260000,"y":0},{"x":1566676320000,"y":0},{"x":1566676380000,"y":0},{"x":1566676440000,"y":0},{"x":1566676500000,"y":0},{"x":1566676560000,"y":0},{"x":1566676620000,"y":0},{"x":1566676680000,"y":0},{"x":1566676740000,"y":0},{"x":1566676800000,"y":0},{"x":1566676860000,"y":0},{"x":1566676920000,"y":0},{"x":1566676980000,"y":0},{"x":1566677040000,"y":0},{"x":1566677100000,"y":0},{"x":1566677160000,"y":0},{"x":1566677220000,"y":0},{"x":1566677280000,"y":0},{"x":1566677340000,"y":0},{"x":1566677400000,"y":0},{"x":1566677460000,"y":0},{"x":1566677520000,"y":0},{"x":1566677580000,"y":0},{"x":1566677640000,"y":0},{"x":1566677700000,"y":0},{"x":1566677760000,"y":0},{"x":1566677820000,"y":0},{"x":1566677880000,"y":0},{"x":1566677940000,"y":0},{"x":1566678000000,"y":0},{"x":1566678060000,"y":0},{"x":1566678120000,"y":0},{"x":1566678180000,"y":0},{"x":1566678240000,"y":0},{"x":1566678300000,"y":0},{"x":1566678360000,"y":0},{"x":1566678420000,"y":0},{"x":1566678480000,"y":0},{"x":1566678540000,"y":0},{"x":1566678600000,"y":0},{"x":1566678660000,"y":0},{"x":1566678720000,"y":0},{"x":1566678780000,"y":0},{"x":1566678840000,"y":0},{"x":1566678900000,"y":0},{"x":1566678960000,"y":0.01},{"x":1566679020000,"y":0},{"x":1566679080000,"y":0},{"x":1566679140000,"y":0},{"x":1566679200000,"y":0},{"x":1566679260000,"y":0},{"x":1566679320000,"y":0},{"x":1566679380000,"y":0},{"x":1566679440000,"y":0},{"x":1566679500000,"y":0},{"x":1566679560000,"y":0},{"x":1566679620000,"y":0},{"x":1566679680000,"y":0},{"x":1566679740000,"y":0},{"x":1566679800000,"y":0},{"x":1566679860000,"y":0},{"x":1566679920000,"y":0},{"x":1566679980000,"y":0},{"x":1566680040000,"y":0},{"x":1566680100000,"y":0},{"x":1566680160000,"y":0},{"x":1566680220000,"y":0},{"x":1566680280000,"y":0},{"x":1566680340000,"y":0},{"x":1566680400000,"y":0},{"x":1566680460000,"y":0},{"x":1566680520000,"y":0},{"x":1566680580000,"y":0},{"x":1566680640000,"y":0},{"x":1566680700000,"y":0},{"x":1566680760000,"y":0},{"x":1566680820000,"y":0},{"x":1566680880000,"y":0},{"x":1566680940000,"y":0},{"x":1566681000000,"y":0},{"x":1566681060000,"y":0},{"x":1566681120000,"y":0},{"x":1566681180000,"y":0},{"x":1566681240000,"y":0},{"x":1566681300000,"y":0},{"x":1566681360000,"y":0},{"x":1566681420000,"y":0},{"x":1566681480000,"y":0},{"x":1566681540000,"y":0},{"x":1566681600000,"y":0},{"x":1566681660000,"y":0},{"x":1566681720000,"y":0},{"x":1566681780000,"y":0},{"x":1566681840000,"y":0},{"x":1566681900000,"y":0},{"x":1566681960000,"y":0},{"x":1566682020000,"y":0},{"x":1566682080000,"y":0},{"x":1566682140000,"y":0},{"x":1566682200000,"y":0},{"x":1566682260000,"y":0},{"x":1566682320000,"y":0},{"x":1566682380000,"y":0},{"x":1566682440000,"y":0},{"x":1566682500000,"y":0},{"x":1566682560000,"y":0},{"x":1566682620000,"y":0},{"x":1566682680000,"y":0},{"x":1566682740000,"y":0},{"x":1566682800000,"y":0},{"x":1566682860000,"y":0},{"x":1566682920000,"y":0},{"x":1566682980000,"y":0},{"x":1566683040000,"y":0},{"x":1566683100000,"y":0},{"x":1566683160000,"y":0},{"x":1566683220000,"y":0},{"x":1566683280000,"y":0},{"x":1566683340000,"y":0},{"x":1566683400000,"y":0},{"x":1566683460000,"y":0},{"x":1566683520000,"y":0},{"x":1566683580000,"y":0},{"x":1566683640000,"y":0},{"x":1566683700000,"y":0},{"x":1566683760000,"y":0},{"x":1566683820000,"y":0},{"x":1566683880000,"y":0},{"x":1566683940000,"y":0},{"x":1566684000000,"y":0},{"x":1566684060000,"y":0},{"x":1566684120000,"y":0},{"x":1566684180000,"y":0},{"x":1566684240000,"y":0},{"x":1566684300000,"y":0},{"x":1566684360000,"y":0},{"x":1566684420000,"y":0},{"x":1566684480000,"y":0},{"x":1566684540000,"y":0.08},{"x":1566684600000,"y":0},{"x":1566684660000,"y":0},{"x":1566684720000,"y":0},{"x":1566684780000,"y":0},{"x":1566684840000,"y":0},{"x":1566684900000,"y":0},{"x":1566684960000,"y":0},{"x":1566685020000,"y":0},{"x":1566685080000,"y":0},{"x":1566685140000,"y":0},{"x":1566685200000,"y":0},{"x":1566685260000,"y":0},{"x":1566685320000,"y":0},{"x":1566685380000,"y":0},{"x":1566685440000,"y":0},{"x":1566685500000,"y":0},{"x":1566685560000,"y":0},{"x":1566685620000,"y":0},{"x":1566685680000,"y":0},{"x":1566685740000,"y":0},{"x":1566685800000,"y":0},{"x":1566685860000,"y":0},{"x":1566685920000,"y":0},{"x":1566685980000,"y":0},{"x":1566686040000,"y":0},{"x":1566686100000,"y":0},{"x":1566686160000,"y":0},{"x":1566686220000,"y":0},{"x":1566686280000,"y":0},{"x":1566686340000,"y":0},{"x":1566686400000,"y":0},{"x":1566686460000,"y":0},{"x":1566686520000,"y":0},{"x":1566686580000,"y":0},{"x":1566686640000,"y":0},{"x":1566686700000,"y":0},{"x":1566686760000,"y":0},{"x":1566686820000,"y":0},{"x":1566686880000,"y":0},{"x":1566686940000,"y":0},{"x":1566687000000,"y":0},{"x":1566687060000,"y":0},{"x":1566687120000,"y":0},{"x":1566687180000,"y":0},{"x":1566687240000,"y":0},{"x":1566687300000,"y":0},{"x":1566687360000,"y":0},{"x":1566687420000,"y":0},{"x":1566687480000,"y":0},{"x":1566687540000,"y":0},{"x":1566687600000,"y":0},{"x":1566687660000,"y":0},{"x":1566687720000,"y":0},{"x":1566687780000,"y":0},{"x":1566687840000,"y":0},{"x":1566687900000,"y":0},{"x":1566687960000,"y":0},{"x":1566688020000,"y":0},{"x":1566688080000,"y":0},{"x":1566688140000,"y":0},{"x":1566688200000,"y":0},{"x":1566688260000,"y":0},{"x":1566688320000,"y":0},{"x":1566688380000,"y":0},{"x":1566688440000,"y":0},{"x":1566688500000,"y":0},{"x":1566688560000,"y":0},{"x":1566688620000,"y":0},{"x":1566688680000,"y":0},{"x":1566688740000,"y":0},{"x":1566688800000,"y":0},{"x":1566688860000,"y":0},{"x":1566688920000,"y":0},{"x":1566688980000,"y":0},{"x":1566689040000,"y":0},{"x":1566689100000,"y":0},{"x":1566689160000,"y":0},{"x":1566689220000,"y":0},{"x":1566689280000,"y":0},{"x":1566689340000,"y":0},{"x":1566689400000,"y":0},{"x":1566689460000,"y":0},{"x":1566689520000,"y":0},{"x":1566689580000,"y":0},{"x":1566689640000,"y":0},{"x":1566689700000,"y":0},{"x":1566689760000,"y":0},{"x":1566689820000,"y":0},{"x":1566689880000,"y":0},{"x":1566689940000,"y":0},{"x":1566690000000,"y":0},{"x":1566690060000,"y":0},{"x":1566690120000,"y":0},{"x":1566690180000,"y":0},{"x":1566690240000,"y":0},{"x":1566690300000,"y":0},{"x":1566690360000,"y":0},{"x":1566690420000,"y":0},{"x":1566690480000,"y":0},{"x":1566690540000,"y":0},{"x":1566690600000,"y":0},{"x":1566690660000,"y":0},{"x":1566690720000,"y":0},{"x":1566690780000,"y":0},{"x":1566690840000,"y":0},{"x":1566690900000,"y":0},{"x":1566690960000,"y":0},{"x":1566691020000,"y":0},{"x":1566691080000,"y":0},{"x":1566691140000,"y":0},{"x":1566691200000,"y":0},{"x":1566691260000,"y":0},{"x":1566691320000,"y":0},{"x":1566691380000,"y":0},{"x":1566691440000,"y":0},{"x":1566691500000,"y":0},{"x":1566691560000,"y":0},{"x":1566691620000,"y":0},{"x":1566691680000,"y":0},{"x":1566691740000,"y":0},{"x":1566691800000,"y":0},{"x":1566691860000,"y":0},{"x":1566691920000,"y":0},{"x":1566691980000,"y":0},{"x":1566692040000,"y":0},{"x":1566692100000,"y":0},{"x":1566692160000,"y":0},{"x":1566692220000,"y":0},{"x":1566692280000,"y":0},{"x":1566692340000,"y":0},{"x":1566692400000,"y":0},{"x":1566692460000,"y":0},{"x":1566692520000,"y":0},{"x":1566692580000,"y":0},{"x":1566692640000,"y":0},{"x":1566692700000,"y":0},{"x":1566692760000,"y":0},{"x":1566692820000,"y":0},{"x":1566692880000,"y":0},{"x":1566692940000,"y":0},{"x":1566693000000,"y":0},{"x":1566693060000,"y":0},{"x":1566693120000,"y":0},{"x":1566693180000,"y":0},{"x":1566693240000,"y":0},{"x":1566693300000,"y":0},{"x":1566693360000,"y":0},{"x":1566693420000,"y":0},{"x":1566693480000,"y":0},{"x":1566693540000,"y":0},{"x":1566693600000,"y":0},{"x":1566693660000,"y":0},{"x":1566693720000,"y":0},{"x":1566693780000,"y":0},{"x":1566693840000,"y":0},{"x":1566693900000,"y":0},{"x":1566693960000,"y":0},{"x":1566694020000,"y":0},{"x":1566694080000,"y":0},{"x":1566694140000,"y":0},{"x":1566694200000,"y":0},{"x":1566694260000,"y":0},{"x":1566694320000,"y":0},{"x":1566694380000,"y":0},{"x":1566694440000,"y":0},{"x":1566694500000,"y":0},{"x":1566694560000,"y":0},{"x":1566694620000,"y":0},{"x":1566694680000,"y":0},{"x":1566694740000,"y":0},{"x":1566694800000,"y":0},{"x":1566694860000,"y":0},{"x":1566694920000,"y":0},{"x":1566694980000,"y":0},{"x":1566695040000,"y":0},{"x":1566695100000,"y":0},{"x":1566695160000,"y":0},{"x":1566695220000,"y":0},{"x":1566695280000,"y":0},{"x":1566695340000,"y":0},{"x":1566695400000,"y":0},{"x":1566695460000,"y":0},{"x":1566695520000,"y":0},{"x":1566695580000,"y":0},{"x":1566695640000,"y":0},{"x":1566695700000,"y":0},{"x":1566695760000,"y":0},{"x":1566695820000,"y":0},{"x":1566695880000,"y":0},{"x":1566695940000,"y":0},{"x":1566696000000,"y":0},{"x":1566696060000,"y":0},{"x":1566696120000,"y":0},{"x":1566696180000,"y":0},{"x":1566696240000,"y":0},{"x":1566696300000,"y":0},{"x":1566696360000,"y":0},{"x":1566696420000,"y":0},{"x":1566696480000,"y":0},{"x":1566696540000,"y":0},{"x":1566696600000,"y":0},{"x":1566696660000,"y":0},{"x":1566696720000,"y":0},{"x":1566696780000,"y":0},{"x":1566696840000,"y":0.65},{"x":1566696900000,"y":0},{"x":1566696960000,"y":0},{"x":1566697020000,"y":0},{"x":1566697080000,"y":0},{"x":1566697140000,"y":0},{"x":1566697200000,"y":0},{"x":1566697260000,"y":0},{"x":1566697320000,"y":0},{"x":1566697380000,"y":0},{"x":1566697440000,"y":0},{"x":1566697500000,"y":0},{"x":1566697560000,"y":0},{"x":1566697620000,"y":0},{"x":1566697680000,"y":0},{"x":1566697740000,"y":0},{"x":1566697800000,"y":0},{"x":1566697860000,"y":0},{"x":1566697920000,"y":0},{"x":1566697980000,"y":0},{"x":1566698040000,"y":0},{"x":1566698100000,"y":0},{"x":1566698160000,"y":0},{"x":1566698220000,"y":0},{"x":1566698280000,"y":0},{"x":1566698340000,"y":0},{"x":1566698400000,"y":0},{"x":1566698460000,"y":0},{"x":1566698520000,"y":0},{"x":1566698580000,"y":0},{"x":1566698640000,"y":0},{"x":1566698700000,"y":0},{"x":1566698760000,"y":0},{"x":1566698820000,"y":0},{"x":1566698880000,"y":0},{"x":1566698940000,"y":0},{"x":1566699000000,"y":0},{"x":1566699060000,"y":0},{"x":1566699120000,"y":0},{"x":1566699180000,"y":0},{"x":1566699240000,"y":0},{"x":1566699300000,"y":0},{"x":1566699360000,"y":0},{"x":1566699420000,"y":0.01},{"x":1566699480000,"y":0},{"x":1566699540000,"y":0},{"x":1566699600000,"y":0},{"x":1566699660000,"y":0},{"x":1566699720000,"y":0},{"x":1566699780000,"y":0},{"x":1566699840000,"y":0},{"x":1566699900000,"y":0},{"x":1566699960000,"y":0},{"x":1566700020000,"y":0},{"x":1566700080000,"y":0},{"x":1566700140000,"y":0},{"x":1566700200000,"y":0},{"x":1566700260000,"y":0.01},{"x":1566700320000,"y":0},{"x":1566700380000,"y":0},{"x":1566700440000,"y":0},{"x":1566700500000,"y":0},{"x":1566700560000,"y":0},{"x":1566700620000,"y":0},{"x":1566700680000,"y":0},{"x":1566700740000,"y":0},{"x":1566700800000,"y":0},{"x":1566700860000,"y":0.01},{"x":1566700920000,"y":0},{"x":1566700980000,"y":0},{"x":1566701040000,"y":0},{"x":1566701100000,"y":0},{"x":1566701160000,"y":0},{"x":1566701220000,"y":0.02},{"x":1566701280000,"y":0},{"x":1566701340000,"y":0.03},{"x":1566701400000,"y":0.04},{"x":1566701460000,"y":0.02},{"x":1566701520000,"y":0.02},{"x":1566701580000,"y":0.03},{"x":1566701640000,"y":0.02},{"x":1566701700000,"y":0.01},{"x":1566701760000,"y":0},{"x":1566701820000,"y":0},{"x":1566701880000,"y":0},{"x":1566701940000,"y":0},{"x":1566702000000,"y":0},{"x":1566702060000,"y":0},{"x":1566702120000,"y":0},{"x":1566702180000,"y":0},{"x":1566702240000,"y":0},{"x":1566702300000,"y":0},{"x":1566702360000,"y":0},{"x":1566702420000,"y":0},{"x":1566702480000,"y":0},{"x":1566702540000,"y":0},{"x":1566702600000,"y":0},{"x":1566702660000,"y":0},{"x":1566702720000,"y":0},{"x":1566702780000,"y":0},{"x":1566702840000,"y":0},{"x":1566702900000,"y":0},{"x":1566702960000,"y":0},{"x":1566703020000,"y":0},{"x":1566703080000,"y":0},{"x":1566703140000,"y":0},{"x":1566703200000,"y":0},{"x":1566703260000,"y":0},{"x":1566703320000,"y":0},{"x":1566703380000,"y":0},{"x":1566703440000,"y":0},{"x":1566703500000,"y":0},{"x":1566703560000,"y":0},{"x":1566703620000,"y":0},{"x":1566703680000,"y":0},{"x":1566703740000,"y":0},{"x":1566703800000,"y":0.01},{"x":1566703860000,"y":0},{"x":1566703920000,"y":0},{"x":1566703980000,"y":0},{"x":1566704040000,"y":0},{"x":1566704100000,"y":0},{"x":1566704160000,"y":0},{"x":1566704220000,"y":0},{"x":1566704280000,"y":0},{"x":1566704340000,"y":0},{"x":1566704400000,"y":0},{"x":1566704460000,"y":0},{"x":1566704520000,"y":0},{"x":1566704580000,"y":0},{"x":1566704640000,"y":0},{"x":1566704700000,"y":0},{"x":1566704760000,"y":0},{"x":1566704820000,"y":0},{"x":1566704880000,"y":0},{"x":1566704940000,"y":0},{"x":1566705000000,"y":0},{"x":1566705060000,"y":0},{"x":1566705120000,"y":0},{"x":1566705180000,"y":0},{"x":1566705240000,"y":0},{"x":1566705300000,"y":0},{"x":1566705360000,"y":0},{"x":1566705420000,"y":0},{"x":1566705480000,"y":0},{"x":1566705540000,"y":0},{"x":1566705600000,"y":0},{"x":1566705660000,"y":0},{"x":1566705720000,"y":0},{"x":1566705780000,"y":0},{"x":1566705840000,"y":0},{"x":1566705900000,"y":0},{"x":1566705960000,"y":0},{"x":1566706020000,"y":0},{"x":1566706080000,"y":0},{"x":1566706140000,"y":0},{"x":1566706200000,"y":0},{"x":1566706260000,"y":0},{"x":1566706320000,"y":0},{"x":1566706380000,"y":0},{"x":1566706440000,"y":0},{"x":1566706500000,"y":0},{"x":1566706560000,"y":0},{"x":1566706620000,"y":0},{"x":1566706680000,"y":0},{"x":1566706740000,"y":0},{"x":1566706800000,"y":0},{"x":1566706860000,"y":0},{"x":1566706920000,"y":0},{"x":1566706980000,"y":0},{"x":1566707040000,"y":0},{"x":1566707100000,"y":0},{"x":1566707160000,"y":0},{"x":1566707220000,"y":0},{"x":1566707280000,"y":0},{"x":1566707340000,"y":0},{"x":1566707400000,"y":0},{"x":1566707460000,"y":0},{"x":1566707520000,"y":0},{"x":1566707580000,"y":0},{"x":1566707640000,"y":0},{"x":1566707700000,"y":0},{"x":1566707760000,"y":0},{"x":1566707820000,"y":0},{"x":1566707880000,"y":0},{"x":1566707940000,"y":0},{"x":1566708000000,"y":0},{"x":1566708060000,"y":0},{"x":1566708120000,"y":0},{"x":1566708180000,"y":0},{"x":1566708240000,"y":0},{"x":1566708300000,"y":0},{"x":1566708360000,"y":0},{"x":1566708420000,"y":0},{"x":1566708480000,"y":0},{"x":1566708540000,"y":0},{"x":1566708600000,"y":0},{"x":1566708660000,"y":0},{"x":1566708720000,"y":0},{"x":1566708780000,"y":0},{"x":1566708840000,"y":0},{"x":1566708900000,"y":0},{"x":1566708960000,"y":0},{"x":1566709020000,"y":0},{"x":1566709080000,"y":0},{"x":1566709140000,"y":0},{"x":1566709200000,"y":0},{"x":1566709260000,"y":0},{"x":1566709320000,"y":0},{"x":1566709380000,"y":0},{"x":1566709440000,"y":0},{"x":1566709500000,"y":0},{"x":1566709560000,"y":0},{"x":1566709620000,"y":0},{"x":1566709680000,"y":0},{"x":1566709740000,"y":0},{"x":1566709800000,"y":0},{"x":1566709860000,"y":0},{"x":1566709920000,"y":0},{"x":1566709980000,"y":0},{"x":1566710040000,"y":0},{"x":1566710100000,"y":0},{"x":1566710160000,"y":0},{"x":1566710220000,"y":0},{"x":1566710280000,"y":0},{"x":1566710340000,"y":0},{"x":1566710400000,"y":0},{"x":1566710460000,"y":0},{"x":1566710520000,"y":0},{"x":1566710580000,"y":0},{"x":1566710640000,"y":0},{"x":1566710700000,"y":0},{"x":1566710760000,"y":0},{"x":1566710820000,"y":0},{"x":1566710880000,"y":0},{"x":1566710940000,"y":0},{"x":1566711000000,"y":0.02},{"x":1566711060000,"y":0.04},{"x":1566711120000,"y":0},{"x":1566711180000,"y":0},{"x":1566711240000,"y":0},{"x":1566711300000,"y":0},{"x":1566711360000,"y":0},{"x":1566711420000,"y":0},{"x":1566711480000,"y":0},{"x":1566711540000,"y":0},{"x":1566711600000,"y":0},{"x":1566711660000,"y":0},{"x":1566711720000,"y":0},{"x":1566711780000,"y":0},{"x":1566711840000,"y":0},{"x":1566711900000,"y":0},{"x":1566711960000,"y":0},{"x":1566712020000,"y":0},{"x":1566712080000,"y":0},{"x":1566712140000,"y":0},{"x":1566712200000,"y":0},{"x":1566712260000,"y":0},{"x":1566712320000,"y":0},{"x":1566712380000,"y":0},{"x":1566712440000,"y":0},{"x":1566712500000,"y":0},{"x":1566712560000,"y":0},{"x":1566712620000,"y":0},{"x":1566712680000,"y":0},{"x":1566712740000,"y":0},{"x":1566712800000,"y":0},{"x":1566712860000,"y":0},{"x":1566712920000,"y":0},{"x":1566712980000,"y":0},{"x":1566713040000,"y":0},{"x":1566713100000,"y":0},{"x":1566713160000,"y":0},{"x":1566713220000,"y":0},{"x":1566713280000,"y":0},{"x":1566713340000,"y":0},{"x":1566713400000,"y":0.01},{"x":1566713460000,"y":0},{"x":1566713520000,"y":0},{"x":1566713580000,"y":0},{"x":1566713640000,"y":0},{"x":1566713700000,"y":0},{"x":1566713760000,"y":0},{"x":1566713820000,"y":0},{"x":1566713880000,"y":0},{"x":1566713940000,"y":0},{"x":1566714000000,"y":0},{"x":1566714060000,"y":0},{"x":1566714120000,"y":0},{"x":1566714180000,"y":0},{"x":1566714240000,"y":0},{"x":1566714300000,"y":0},{"x":1566714360000,"y":0},{"x":1566714420000,"y":0},{"x":1566714480000,"y":0},{"x":1566714540000,"y":0},{"x":1566714600000,"y":0},{"x":1566714660000,"y":0},{"x":1566714720000,"y":0},{"x":1566714780000,"y":0},{"x":1566714840000,"y":0},{"x":1566714900000,"y":0},{"x":1566714960000,"y":0},{"x":1566715020000,"y":0},{"x":1566715080000,"y":0},{"x":1566715140000,"y":0},{"x":1566715200000,"y":0},{"x":1566715260000,"y":0},{"x":1566715320000,"y":0},{"x":1566715380000,"y":0},{"x":1566715440000,"y":0},{"x":1566715500000,"y":0},{"x":1566715560000,"y":0},{"x":1566715620000,"y":0},{"x":1566715680000,"y":0},{"x":1566715740000,"y":0},{"x":1566715800000,"y":0},{"x":1566715860000,"y":0},{"x":1566715920000,"y":0},{"x":1566715980000,"y":0},{"x":1566716040000,"y":0},{"x":1566716100000,"y":0},{"x":1566716160000,"y":0},{"x":1566716220000,"y":0},{"x":1566716280000,"y":0},{"x":1566716340000,"y":0},{"x":1566716400000,"y":0},{"x":1566716460000,"y":0},{"x":1566716520000,"y":0},{"x":1566716580000,"y":0},{"x":1566716640000,"y":0},{"x":1566716700000,"y":0},{"x":1566716760000,"y":0},{"x":1566716820000,"y":0},{"x":1566716880000,"y":0},{"x":1566716940000,"y":0},{"x":1566717000000,"y":0},{"x":1566717060000,"y":0},{"x":1566717120000,"y":0},{"x":1566717180000,"y":0},{"x":1566717240000,"y":0},{"x":1566717300000,"y":0},{"x":1566717360000,"y":0},{"x":1566717420000,"y":0},{"x":1566717480000,"y":0},{"x":1566717540000,"y":0},{"x":1566717600000,"y":0},{"x":1566717660000,"y":0},{"x":1566717720000,"y":0},{"x":1566717780000,"y":0},{"x":1566717840000,"y":0},{"x":1566717900000,"y":0},{"x":1566717960000,"y":0},{"x":1566718020000,"y":0},{"x":1566718080000,"y":0},{"x":1566718140000,"y":0},{"x":1566718200000,"y":0},{"x":1566718260000,"y":0},{"x":1566718320000,"y":0},{"x":1566718380000,"y":0},{"x":1566718440000,"y":0},{"x":1566718500000,"y":0},{"x":1566718560000,"y":0},{"x":1566718620000,"y":0},{"x":1566718680000,"y":0},{"x":1566718740000,"y":0.01},{"x":1566718800000,"y":0},{"x":1566718860000,"y":0},{"x":1566718920000,"y":0},{"x":1566718980000,"y":0},{"x":1566719040000,"y":0},{"x":1566719100000,"y":0},{"x":1566719160000,"y":0},{"x":1566719220000,"y":0},{"x":1566719280000,"y":0},{"x":1566719340000,"y":0},{"x":1566719400000,"y":0},{"x":1566719460000,"y":0},{"x":1566719520000,"y":0},{"x":1566719580000,"y":0},{"x":1566719640000,"y":0.03},{"x":1566719700000,"y":0},{"x":1566719760000,"y":0},{"x":1566719820000,"y":0},{"x":1566719880000,"y":0},{"x":1566719940000,"y":0},{"x":1566720000000,"y":0},{"x":1566720060000,"y":0},{"x":1566720120000,"y":0},{"x":1566720180000,"y":0},{"x":1566720240000,"y":0},{"x":1566720300000,"y":0},{"x":1566720360000,"y":0},{"x":1566720420000,"y":0},{"x":1566720480000,"y":0},{"x":1566720540000,"y":0},{"x":1566720600000,"y":0},{"x":1566720660000,"y":0},{"x":1566720720000,"y":0},{"x":1566720780000,"y":0},{"x":1566720840000,"y":0},{"x":1566720900000,"y":0},{"x":1566720960000,"y":0},{"x":1566721020000,"y":0.03},{"x":1566721080000,"y":0},{"x":1566721140000,"y":0},{"x":1566721200000,"y":0},{"x":1566721260000,"y":0},{"x":1566721320000,"y":0},{"x":1566721380000,"y":0},{"x":1566721440000,"y":0},{"x":1566721500000,"y":0},{"x":1566721560000,"y":0},{"x":1566721620000,"y":0},{"x":1566721680000,"y":0},{"x":1566721740000,"y":0},{"x":1566721800000,"y":0},{"x":1566721860000,"y":0},{"x":1566721920000,"y":0},{"x":1566721980000,"y":0},{"x":1566722040000,"y":0.02},{"x":1566722100000,"y":0},{"x":1566722160000,"y":0},{"x":1566722220000,"y":0},{"x":1566722280000,"y":0},{"x":1566722340000,"y":0},{"x":1566722400000,"y":0},{"x":1566722460000,"y":0},{"x":1566722520000,"y":0},{"x":1566722580000,"y":0},{"x":1566722640000,"y":0},{"x":1566722700000,"y":0},{"x":1566722760000,"y":0.01},{"x":1566722820000,"y":0},{"x":1566722880000,"y":0},{"x":1566722940000,"y":0},{"x":1566723000000,"y":0},{"x":1566723060000,"y":0},{"x":1566723120000,"y":0},{"x":1566723180000,"y":0},{"x":1566723240000,"y":0},{"x":1566723300000,"y":0},{"x":1566723360000,"y":0},{"x":1566723420000,"y":0},{"x":1566723480000,"y":0},{"x":1566723540000,"y":0},{"x":1566723600000,"y":0},{"x":1566723660000,"y":0},{"x":1566723720000,"y":0},{"x":1566723780000,"y":0},{"x":1566723840000,"y":0},{"x":1566723900000,"y":0},{"x":1566723960000,"y":0},{"x":1566724020000,"y":0},{"x":1566724080000,"y":0},{"x":1566724140000,"y":0},{"x":1566724200000,"y":0},{"x":1566724260000,"y":0},{"x":1566724320000,"y":0},{"x":1566724380000,"y":0},{"x":1566724440000,"y":0},{"x":1566724500000,"y":0},{"x":1566724560000,"y":0},{"x":1566724620000,"y":0},{"x":1566724680000,"y":0},{"x":1566724740000,"y":0},{"x":1566724800000,"y":0},{"x":1566724860000,"y":0},{"x":1566724920000,"y":0},{"x":1566724980000,"y":0},{"x":1566725040000,"y":0},{"x":1566725100000,"y":0},{"x":1566725160000,"y":0},{"x":1566725220000,"y":0},{"x":1566725280000,"y":0},{"x":1566725340000,"y":0},{"x":1566725400000,"y":0},{"x":1566725460000,"y":0},{"x":1566725520000,"y":0},{"x":1566725580000,"y":0},{"x":1566725640000,"y":0},{"x":1566725700000,"y":0},{"x":1566725760000,"y":0},{"x":1566725820000,"y":0},{"x":1566725880000,"y":0},{"x":1566725940000,"y":0},{"x":1566726000000,"y":0},{"x":1566726060000,"y":0},{"x":1566726120000,"y":0},{"x":1566726180000,"y":0},{"x":1566726240000,"y":0},{"x":1566726300000,"y":0},{"x":1566726360000,"y":0},{"x":1566726420000,"y":0},{"x":1566726480000,"y":0},{"x":1566726540000,"y":0},{"x":1566726600000,"y":0},{"x":1566726660000,"y":0},{"x":1566726720000,"y":0},{"x":1566726780000,"y":0},{"x":1566726840000,"y":0},{"x":1566726900000,"y":0},{"x":1566726960000,"y":0},{"x":1566727020000,"y":0},{"x":1566727080000,"y":0},{"x":1566727140000,"y":0},{"x":1566727200000,"y":0},{"x":1566727260000,"y":0},{"x":1566727320000,"y":0},{"x":1566727380000,"y":0},{"x":1566727440000,"y":0},{"x":1566727500000,"y":0},{"x":1566727560000,"y":0},{"x":1566727620000,"y":0},{"x":1566727680000,"y":0},{"x":1566727740000,"y":0},{"x":1566727800000,"y":0},{"x":1566727860000,"y":0},{"x":1566727920000,"y":0},{"x":1566727980000,"y":0},{"x":1566728040000,"y":0},{"x":1566728100000,"y":0},{"x":1566728160000,"y":0},{"x":1566728220000,"y":0},{"x":1566728280000,"y":0},{"x":1566728340000,"y":0},{"x":1566728400000,"y":0},{"x":1566728460000,"y":0},{"x":1566728520000,"y":0},{"x":1566728580000,"y":0},{"x":1566728640000,"y":0},{"x":1566728700000,"y":0},{"x":1566728760000,"y":0},{"x":1566728820000,"y":0},{"x":1566728880000,"y":0},{"x":1566728940000,"y":0},{"x":1566729000000,"y":0},{"x":1566729060000,"y":0},{"x":1566729120000,"y":0},{"x":1566729180000,"y":0},{"x":1566729240000,"y":0},{"x":1566729300000,"y":0},{"x":1566729360000,"y":0},{"x":1566729420000,"y":0},{"x":1566729480000,"y":0},{"x":1566729540000,"y":0},{"x":1566729600000,"y":0},{"x":1566729660000,"y":0},{"x":1566729720000,"y":0},{"x":1566729780000,"y":0},{"x":1566729840000,"y":0},{"x":1566729900000,"y":0},{"x":1566729960000,"y":0},{"x":1566730020000,"y":0},{"x":1566730080000,"y":0},{"x":1566730140000,"y":0},{"x":1566730200000,"y":0},{"x":1566730260000,"y":0},{"x":1566730320000,"y":0},{"x":1566730380000,"y":0},{"x":1566730440000,"y":0},{"x":1566730500000,"y":0},{"x":1566730560000,"y":0},{"x":1566730620000,"y":0},{"x":1566730680000,"y":0},{"x":1566730740000,"y":0},{"x":1566730800000,"y":0},{"x":1566730860000,"y":0},{"x":1566730920000,"y":0},{"x":1566730980000,"y":0},{"x":1566731040000,"y":0},{"x":1566731100000,"y":0},{"x":1566731160000,"y":0},{"x":1566731220000,"y":0},{"x":1566731280000,"y":0},{"x":1566731340000,"y":0},{"x":1566731400000,"y":0},{"x":1566731460000,"y":0},{"x":1566731520000,"y":0},{"x":1566731580000,"y":0},{"x":1566731640000,"y":0},{"x":1566731700000,"y":0},{"x":1566731760000,"y":0},{"x":1566731820000,"y":0},{"x":1566731880000,"y":0},{"x":1566731940000,"y":0},{"x":1566732000000,"y":0},{"x":1566732060000,"y":0},{"x":1566732120000,"y":0},{"x":1566732180000,"y":0},{"x":1566732240000,"y":0},{"x":1566732300000,"y":0},{"x":1566732360000,"y":0},{"x":1566732420000,"y":0},{"x":1566732480000,"y":0},{"x":1566732540000,"y":0},{"x":1566732600000,"y":0},{"x":1566732660000,"y":0},{"x":1566732720000,"y":0},{"x":1566732780000,"y":0},{"x":1566732840000,"y":0},{"x":1566732900000,"y":0},{"x":1566732960000,"y":0},{"x":1566733020000,"y":0},{"x":1566733080000,"y":0},{"x":1566733140000,"y":0},{"x":1566733200000,"y":0},{"x":1566733260000,"y":0},{"x":1566733320000,"y":0},{"x":1566733380000,"y":0},{"x":1566733440000,"y":0},{"x":1566733500000,"y":0},{"x":1566733560000,"y":0},{"x":1566733620000,"y":0},{"x":1566733680000,"y":0},{"x":1566733740000,"y":0},{"x":1566733800000,"y":0},{"x":1566733860000,"y":0},{"x":1566733920000,"y":0},{"x":1566733980000,"y":0},{"x":1566734040000,"y":0},{"x":1566734100000,"y":0},{"x":1566734160000,"y":0},{"x":1566734220000,"y":0},{"x":1566734280000,"y":0},{"x":1566734340000,"y":0},{"x":1566734400000,"y":0},{"x":1566734460000,"y":0},{"x":1566734520000,"y":0},{"x":1566734580000,"y":0},{"x":1566734640000,"y":0},{"x":1566734700000,"y":0},{"x":1566734760000,"y":0},{"x":1566734820000,"y":0},{"x":1566734880000,"y":0},{"x":1566734940000,"y":0},{"x":1566735000000,"y":0},{"x":1566735060000,"y":0},{"x":1566735120000,"y":0},{"x":1566735180000,"y":0},{"x":1566735240000,"y":0},{"x":1566735300000,"y":0},{"x":1566735360000,"y":0},{"x":1566735420000,"y":0},{"x":1566735480000,"y":0},{"x":1566735540000,"y":0},{"x":1566735600000,"y":0},{"x":1566735660000,"y":0},{"x":1566735720000,"y":0},{"x":1566735780000,"y":0},{"x":1566735840000,"y":0},{"x":1566735900000,"y":0},{"x":1566735960000,"y":0},{"x":1566736020000,"y":0},{"x":1566736080000,"y":0},{"x":1566736140000,"y":0},{"x":1566736200000,"y":0},{"x":1566736260000,"y":0},{"x":1566736320000,"y":0},{"x":1566736380000,"y":0},{"x":1566736440000,"y":0},{"x":1566736500000,"y":0},{"x":1566736560000,"y":0},{"x":1566736620000,"y":0},{"x":1566736680000,"y":0},{"x":1566736740000,"y":0},{"x":1566736800000,"y":0},{"x":1566736860000,"y":0},{"x":1566736920000,"y":0},{"x":1566736980000,"y":0},{"x":1566737040000,"y":0},{"x":1566737100000,"y":0},{"x":1566737160000,"y":0},{"x":1566737220000,"y":0},{"x":1566737280000,"y":0},{"x":1566737340000,"y":0},{"x":1566737400000,"y":0},{"x":1566737460000,"y":0},{"x":1566737520000,"y":0},{"x":1566737580000,"y":0},{"x":1566737640000,"y":0},{"x":1566737700000,"y":0},{"x":1566737760000,"y":0},{"x":1566737820000,"y":0},{"x":1566737880000,"y":0},{"x":1566737940000,"y":0},{"x":1566738000000,"y":0},{"x":1566738060000,"y":0},{"x":1566738120000,"y":0},{"x":1566738180000,"y":0},{"x":1566738240000,"y":0},{"x":1566738300000,"y":0},{"x":1566738360000,"y":0},{"x":1566738420000,"y":0},{"x":1566738480000,"y":0},{"x":1566738540000,"y":0},{"x":1566738600000,"y":0},{"x":1566738660000,"y":0},{"x":1566738720000,"y":0},{"x":1566738780000,"y":0},{"x":1566738840000,"y":0},{"x":1566738900000,"y":0},{"x":1566738960000,"y":0},{"x":1566739020000,"y":0},{"x":1566739080000,"y":0},{"x":1566739140000,"y":0},{"x":1566739200000,"y":0},{"x":1566739260000,"y":0},{"x":1566739320000,"y":0},{"x":1566739380000,"y":0},{"x":1566739440000,"y":0},{"x":1566739500000,"y":0},{"x":1566739560000,"y":0},{"x":1566739620000,"y":0},{"x":1566739680000,"y":0},{"x":1566739740000,"y":0},{"x":1566739800000,"y":0},{"x":1566739860000,"y":0},{"x":1566739920000,"y":0},{"x":1566739980000,"y":0},{"x":1566740040000,"y":0},{"x":1566740100000,"y":0},{"x":1566740160000,"y":0},{"x":1566740220000,"y":0},{"x":1566740280000,"y":0},{"x":1566740340000,"y":0},{"x":1566740400000,"y":0},{"x":1566740460000,"y":0},{"x":1566740520000,"y":0},{"x":1566740580000,"y":0},{"x":1566740640000,"y":0},{"x":1566740700000,"y":0},{"x":1566740760000,"y":0},{"x":1566740820000,"y":0},{"x":1566740880000,"y":0},{"x":1566740940000,"y":0},{"x":1566741000000,"y":0},{"x":1566741060000,"y":0},{"x":1566741120000,"y":0},{"x":1566741180000,"y":0},{"x":1566741240000,"y":0},{"x":1566741300000,"y":0},{"x":1566741360000,"y":0},{"x":1566741420000,"y":0},{"x":1566741480000,"y":0},{"x":1566741540000,"y":0},{"x":1566741600000,"y":0},{"x":1566741660000,"y":0},{"x":1566741720000,"y":0},{"x":1566741780000,"y":0.06},{"x":1566741840000,"y":0},{"x":1566741900000,"y":0},{"x":1566741960000,"y":0},{"x":1566742020000,"y":0},{"x":1566742080000,"y":0},{"x":1566742140000,"y":0},{"x":1566742200000,"y":0},{"x":1566742260000,"y":0},{"x":1566742320000,"y":0},{"x":1566742380000,"y":0},{"x":1566742440000,"y":0},{"x":1566742500000,"y":0},{"x":1566742560000,"y":0},{"x":1566742620000,"y":0},{"x":1566742680000,"y":0},{"x":1566742740000,"y":0},{"x":1566742800000,"y":0},{"x":1566742860000,"y":0},{"x":1566742920000,"y":0},{"x":1566742980000,"y":0},{"x":1566743040000,"y":0},{"x":1566743100000,"y":0},{"x":1566743160000,"y":0},{"x":1566743220000,"y":0},{"x":1566743280000,"y":0},{"x":1566743340000,"y":0},{"x":1566743400000,"y":0},{"x":1566743460000,"y":0},{"x":1566743520000,"y":0},{"x":1566743580000,"y":0},{"x":1566743640000,"y":0},{"x":1566743700000,"y":0},{"x":1566743760000,"y":0},{"x":1566743820000,"y":0},{"x":1566743880000,"y":0},{"x":1566743940000,"y":0},{"x":1566744000000,"y":0},{"x":1566744060000,"y":0},{"x":1566744120000,"y":0},{"x":1566744180000,"y":0},{"x":1566744240000,"y":0},{"x":1566744300000,"y":0},{"x":1566744360000,"y":0},{"x":1566744420000,"y":0},{"x":1566744480000,"y":0},{"x":1566744540000,"y":0},{"x":1566744600000,"y":0.01},{"x":1566744660000,"y":0},{"x":1566744720000,"y":0},{"x":1566744780000,"y":0},{"x":1566744840000,"y":0},{"x":1566744900000,"y":0},{"x":1566744960000,"y":0},{"x":1566745020000,"y":0},{"x":1566745080000,"y":0},{"x":1566745140000,"y":0},{"x":1566745200000,"y":0},{"x":1566745260000,"y":0},{"x":1566745320000,"y":0},{"x":1566745380000,"y":0},{"x":1566745440000,"y":0},{"x":1566745500000,"y":0},{"x":1566745560000,"y":0},{"x":1566745620000,"y":0},{"x":1566745680000,"y":0},{"x":1566745740000,"y":0},{"x":1566745800000,"y":0},{"x":1566745860000,"y":0},{"x":1566745920000,"y":0},{"x":1566745980000,"y":0},{"x":1566746040000,"y":0},{"x":1566746100000,"y":0},{"x":1566746160000,"y":0},{"x":1566746220000,"y":0},{"x":1566746280000,"y":0},{"x":1566746340000,"y":0},{"x":1566746400000,"y":0},{"x":1566746460000,"y":0},{"x":1566746520000,"y":0},{"x":1566746580000,"y":0},{"x":1566746640000,"y":0},{"x":1566746700000,"y":0},{"x":1566746760000,"y":0},{"x":1566746820000,"y":0},{"x":1566746880000,"y":0},{"x":1566746940000,"y":0},{"x":1566747000000,"y":0},{"x":1566747060000,"y":0},{"x":1566747120000,"y":0},{"x":1566747180000,"y":0},{"x":1566747240000,"y":0},{"x":1566747300000,"y":0},{"x":1566747360000,"y":0},{"x":1566747420000,"y":0},{"x":1566747480000,"y":0},{"x":1566747540000,"y":0},{"x":1566747600000,"y":0},{"x":1566747660000,"y":0},{"x":1566747720000,"y":0},{"x":1566747780000,"y":0},{"x":1566747840000,"y":0},{"x":1566747900000,"y":0},{"x":1566747960000,"y":0},{"x":1566748020000,"y":0},{"x":1566748080000,"y":0},{"x":1566748140000,"y":0},{"x":1566748200000,"y":0},{"x":1566748260000,"y":0},{"x":1566748320000,"y":0},{"x":1566748380000,"y":0},{"x":1566748440000,"y":0},{"x":1566748500000,"y":0},{"x":1566748560000,"y":0},{"x":1566748620000,"y":0},{"x":1566748680000,"y":0},{"x":1566748740000,"y":0},{"x":1566748800000,"y":0},{"x":1566748860000,"y":0},{"x":1566748920000,"y":0},{"x":1566748980000,"y":0},{"x":1566749040000,"y":0},{"x":1566749100000,"y":0},{"x":1566749160000,"y":0},{"x":1566749220000,"y":0},{"x":1566749280000,"y":0},{"x":1566749340000,"y":0},{"x":1566749400000,"y":0},{"x":1566749460000,"y":0},{"x":1566749520000,"y":0},{"x":1566749580000,"y":0},{"x":1566749640000,"y":0},{"x":1566749700000,"y":0},{"x":1566749760000,"y":0},{"x":1566749820000,"y":0},{"x":1566749880000,"y":0},{"x":1566749940000,"y":0},{"x":1566750000000,"y":0},{"x":1566750060000,"y":0},{"x":1566750120000,"y":0},{"x":1566750180000,"y":0},{"x":1566750240000,"y":0},{"x":1566750300000,"y":0},{"x":1566750360000,"y":0},{"x":1566750420000,"y":0},{"x":1566750480000,"y":0},{"x":1566750540000,"y":0},{"x":1566750600000,"y":0},{"x":1566750660000,"y":0},{"x":1566750720000,"y":0},{"x":1566750780000,"y":0},{"x":1566750840000,"y":0},{"x":1566750900000,"y":0},{"x":1566750960000,"y":0},{"x":1566751020000,"y":0},{"x":1566751080000,"y":0},{"x":1566751140000,"y":0},{"x":1566751200000,"y":0},{"x":1566751260000,"y":0},{"x":1566751320000,"y":0},{"x":1566751380000,"y":0},{"x":1566751440000,"y":0},{"x":1566751500000,"y":0},{"x":1566751560000,"y":0},{"x":1566751620000,"y":0},{"x":1566751680000,"y":0},{"x":1566751740000,"y":0},{"x":1566751800000,"y":0},{"x":1566751860000,"y":0},{"x":1566751920000,"y":0},{"x":1566751980000,"y":0},{"x":1566752040000,"y":0},{"x":1566752100000,"y":0},{"x":1566752160000,"y":0},{"x":1566752220000,"y":0.87},{"x":1566752280000,"y":0},{"x":1566752340000,"y":0},{"x":1566752400000,"y":0},{"x":1566752460000,"y":0},{"x":1566752520000,"y":0},{"x":1566752580000,"y":0},{"x":1566752640000,"y":0},{"x":1566752700000,"y":0},{"x":1566752760000,"y":0},{"x":1566752820000,"y":0},{"x":1566752880000,"y":0},{"x":1566752940000,"y":0},{"x":1566753000000,"y":0},{"x":1566753060000,"y":0},{"x":1566753120000,"y":0},{"x":1566753180000,"y":0},{"x":1566753240000,"y":0},{"x":1566753300000,"y":0},{"x":1566753360000,"y":0},{"x":1566753420000,"y":0},{"x":1566753480000,"y":0},{"x":1566753540000,"y":0},{"x":1566753600000,"y":0},{"x":1566753660000,"y":0},{"x":1566753720000,"y":0},{"x":1566753780000,"y":0},{"x":1566753840000,"y":0},{"x":1566753900000,"y":0},{"x":1566753960000,"y":0},{"x":1566754020000,"y":0},{"x":1566754080000,"y":0},{"x":1566754140000,"y":0},{"x":1566754200000,"y":0},{"x":1566754260000,"y":0.01},{"x":1566754320000,"y":0},{"x":1566754380000,"y":0},{"x":1566754440000,"y":0},{"x":1566754500000,"y":0},{"x":1566754560000,"y":0},{"x":1566754620000,"y":0},{"x":1566754680000,"y":0},{"x":1566754740000,"y":0},{"x":1566754800000,"y":0},{"x":1566754860000,"y":0},{"x":1566754920000,"y":0},{"x":1566754980000,"y":0},{"x":1566755040000,"y":0},{"x":1566755100000,"y":0},{"x":1566755160000,"y":0},{"x":1566755220000,"y":0},{"x":1566755280000,"y":0},{"x":1566755340000,"y":0},{"x":1566755400000,"y":0},{"x":1566755460000,"y":0},{"x":1566755520000,"y":0},{"x":1566755580000,"y":0},{"x":1566755640000,"y":0},{"x":1566755700000,"y":0},{"x":1566755760000,"y":0},{"x":1566755820000,"y":0},{"x":1566755880000,"y":0},{"x":1566755940000,"y":0},{"x":1566756000000,"y":0},{"x":1566756060000,"y":0},{"x":1566756120000,"y":0},{"x":1566756180000,"y":0},{"x":1566756240000,"y":0},{"x":1566756300000,"y":0},{"x":1566756360000,"y":0},{"x":1566756420000,"y":0},{"x":1566756480000,"y":0},{"x":1566756540000,"y":0},{"x":1566756600000,"y":0},{"x":1566756660000,"y":0},{"x":1566756720000,"y":0},{"x":1566756780000,"y":0},{"x":1566756840000,"y":0},{"x":1566756900000,"y":0},{"x":1566756960000,"y":0},{"x":1566757020000,"y":0},{"x":1566757080000,"y":0},{"x":1566757140000,"y":0},{"x":1566757200000,"y":0},{"x":1566757260000,"y":0},{"x":1566757320000,"y":0},{"x":1566757380000,"y":0},{"x":1566757440000,"y":0},{"x":1566757500000,"y":0},{"x":1566757560000,"y":0},{"x":1566757620000,"y":0},{"x":1566757680000,"y":0},{"x":1566757740000,"y":0},{"x":1566757800000,"y":0},{"x":1566757860000,"y":0},{"x":1566757920000,"y":0},{"x":1566757980000,"y":0},{"x":1566758040000,"y":0},{"x":1566758100000,"y":0},{"x":1566758160000,"y":0},{"x":1566758220000,"y":0},{"x":1566758280000,"y":0},{"x":1566758340000,"y":0},{"x":1566758400000,"y":0},{"x":1566758460000,"y":0},{"x":1566758520000,"y":0},{"x":1566758580000,"y":0},{"x":1566758640000,"y":0},{"x":1566758700000,"y":0},{"x":1566758760000,"y":0},{"x":1566758820000,"y":0},{"x":1566758880000,"y":0},{"x":1566758940000,"y":0},{"x":1566759000000,"y":0},{"x":1566759060000,"y":0},{"x":1566759120000,"y":0},{"x":1566759180000,"y":0},{"x":1566759240000,"y":0},{"x":1566759300000,"y":0},{"x":1566759360000,"y":0},{"x":1566759420000,"y":0},{"x":1566759480000,"y":0},{"x":1566759540000,"y":0.01},{"x":1566759600000,"y":0},{"x":1566759660000,"y":0},{"x":1566759720000,"y":0},{"x":1566759780000,"y":0},{"x":1566759840000,"y":0},{"x":1566759900000,"y":0},{"x":1566759960000,"y":0},{"x":1566760020000,"y":0},{"x":1566760080000,"y":0},{"x":1566760140000,"y":0},{"x":1566760200000,"y":0},{"x":1566760260000,"y":0},{"x":1566760320000,"y":0},{"x":1566760380000,"y":0},{"x":1566760440000,"y":0},{"x":1566760500000,"y":0},{"x":1566760560000,"y":0},{"x":1566760620000,"y":0},{"x":1566760680000,"y":0},{"x":1566760740000,"y":0},{"x":1566760800000,"y":0},{"x":1566760860000,"y":0},{"x":1566760920000,"y":0},{"x":1566760980000,"y":0},{"x":1566761040000,"y":0},{"x":1566761100000,"y":0},{"x":1566761160000,"y":0},{"x":1566761220000,"y":0},{"x":1566761280000,"y":0},{"x":1566761340000,"y":0},{"x":1566761400000,"y":0},{"x":1566761460000,"y":0},{"x":1566761520000,"y":0},{"x":1566761580000,"y":0},{"x":1566761640000,"y":0},{"x":1566761700000,"y":0},{"x":1566761760000,"y":0},{"x":1566761820000,"y":0},{"x":1566761880000,"y":0},{"x":1566761940000,"y":0},{"x":1566762000000,"y":0},{"x":1566762060000,"y":0},{"x":1566762120000,"y":0},{"x":1566762180000,"y":0},{"x":1566762240000,"y":0},{"x":1566762300000,"y":0.01},{"x":1566762360000,"y":0},{"x":1566762420000,"y":0},{"x":1566762480000,"y":0},{"x":1566762540000,"y":0},{"x":1566762600000,"y":0},{"x":1566762660000,"y":0},{"x":1566762720000,"y":0},{"x":1566762780000,"y":0},{"x":1566762840000,"y":0},{"x":1566762900000,"y":0},{"x":1566762960000,"y":0},{"x":1566763020000,"y":0},{"x":1566763080000,"y":0},{"x":1566763140000,"y":0},{"x":1566763200000,"y":0},{"x":1566763260000,"y":0},{"x":1566763320000,"y":0},{"x":1566763380000,"y":0},{"x":1566763440000,"y":0},{"x":1566763500000,"y":0},{"x":1566763560000,"y":0},{"x":1566763620000,"y":0},{"x":1566763680000,"y":0},{"x":1566763740000,"y":0},{"x":1566763800000,"y":0},{"x":1566763860000,"y":0},{"x":1566763920000,"y":0},{"x":1566763980000,"y":0},{"x":1566764040000,"y":0},{"x":1566764100000,"y":0},{"x":1566764160000,"y":0},{"x":1566764220000,"y":0},{"x":1566764280000,"y":0},{"x":1566764340000,"y":0},{"x":1566764400000,"y":0},{"x":1566764460000,"y":0},{"x":1566764520000,"y":0},{"x":1566764580000,"y":0},{"x":1566764640000,"y":0},{"x":1566764700000,"y":0},{"x":1566764760000,"y":0},{"x":1566764820000,"y":0},{"x":1566764880000,"y":0},{"x":1566764940000,"y":0},{"x":1566765000000,"y":0},{"x":1566765060000,"y":0},{"x":1566765120000,"y":0},{"x":1566765180000,"y":0},{"x":1566765240000,"y":0},{"x":1566765300000,"y":0},{"x":1566765360000,"y":0},{"x":1566765420000,"y":0},{"x":1566765480000,"y":0},{"x":1566765540000,"y":0},{"x":1566765600000,"y":0},{"x":1566765660000,"y":0},{"x":1566765720000,"y":0},{"x":1566765780000,"y":0},{"x":1566765840000,"y":0},{"x":1566765900000,"y":0},{"x":1566765960000,"y":0},{"x":1566766020000,"y":0},{"x":1566766080000,"y":0},{"x":1566766140000,"y":0},{"x":1566766200000,"y":0},{"x":1566766260000,"y":0},{"x":1566766320000,"y":0},{"x":1566766380000,"y":0},{"x":1566766440000,"y":0.01},{"x":1566766500000,"y":0},{"x":1566766560000,"y":0},{"x":1566766620000,"y":0},{"x":1566766680000,"y":0},{"x":1566766740000,"y":0},{"x":1566766800000,"y":0},{"x":1566766860000,"y":0},{"x":1566766920000,"y":0},{"x":1566766980000,"y":0},{"x":1566767040000,"y":0},{"x":1566767100000,"y":0},{"x":1566767160000,"y":0},{"x":1566767220000,"y":0},{"x":1566767280000,"y":0},{"x":1566767340000,"y":0},{"x":1566767400000,"y":0},{"x":1566767460000,"y":0},{"x":1566767520000,"y":0},{"x":1566767580000,"y":0},{"x":1566767640000,"y":0},{"x":1566767700000,"y":0},{"x":1566767760000,"y":0},{"x":1566767820000,"y":0},{"x":1566767880000,"y":0},{"x":1566767940000,"y":0},{"x":1566768000000,"y":0},{"x":1566768060000,"y":0},{"x":1566768120000,"y":0},{"x":1566768180000,"y":0},{"x":1566768240000,"y":0},{"x":1566768300000,"y":0},{"x":1566768360000,"y":0},{"x":1566768420000,"y":0},{"x":1566768480000,"y":0},{"x":1566768540000,"y":0},{"x":1566768600000,"y":0},{"x":1566768660000,"y":0},{"x":1566768720000,"y":0},{"x":1566768780000,"y":0},{"x":1566768840000,"y":0},{"x":1566768900000,"y":0},{"x":1566768960000,"y":0},{"x":1566769020000,"y":0},{"x":1566769080000,"y":0},{"x":1566769140000,"y":0},{"x":1566769200000,"y":0},{"x":1566769260000,"y":0},{"x":1566769320000,"y":0},{"x":1566769380000,"y":0},{"x":1566769440000,"y":0},{"x":1566769500000,"y":0},{"x":1566769560000,"y":0},{"x":1566769620000,"y":0},{"x":1566769680000,"y":0},{"x":1566769740000,"y":0},{"x":1566769800000,"y":0},{"x":1566769860000,"y":0},{"x":1566769920000,"y":0},{"x":1566769980000,"y":0},{"x":1566770040000,"y":0},{"x":1566770100000,"y":0},{"x":1566770160000,"y":0},{"x":1566770220000,"y":0},{"x":1566770280000,"y":0},{"x":1566770340000,"y":0},{"x":1566770400000,"y":0},{"x":1566770460000,"y":0},{"x":1566770520000,"y":0},{"x":1566770580000,"y":0},{"x":1566770640000,"y":0},{"x":1566770700000,"y":0},{"x":1566770760000,"y":0},{"x":1566770820000,"y":0},{"x":1566770880000,"y":0},{"x":1566770940000,"y":0},{"x":1566771000000,"y":0},{"x":1566771060000,"y":0},{"x":1566771120000,"y":0},{"x":1566771180000,"y":0},{"x":1566771240000,"y":0},{"x":1566771300000,"y":0},{"x":1566771360000,"y":0},{"x":1566771420000,"y":0},{"x":1566771480000,"y":0},{"x":1566771540000,"y":0},{"x":1566771600000,"y":0},{"x":1566771660000,"y":0},{"x":1566771720000,"y":0},{"x":1566771780000,"y":0},{"x":1566771840000,"y":0},{"x":1566771900000,"y":0},{"x":1566771960000,"y":0},{"x":1566772020000,"y":0},{"x":1566772080000,"y":0},{"x":1566772140000,"y":0},{"x":1566772200000,"y":0},{"x":1566772260000,"y":0},{"x":1566772320000,"y":0},{"x":1566772380000,"y":0},{"x":1566772440000,"y":0},{"x":1566772500000,"y":0},{"x":1566772560000,"y":0},{"x":1566772620000,"y":0},{"x":1566772680000,"y":0},{"x":1566772740000,"y":0},{"x":1566772800000,"y":0},{"x":1566772860000,"y":0},{"x":1566772920000,"y":0},{"x":1566772980000,"y":0},{"x":1566773040000,"y":0},{"x":1566773100000,"y":0},{"x":1566773160000,"y":0},{"x":1566773220000,"y":0},{"x":1566773280000,"y":0},{"x":1566773340000,"y":0},{"x":1566773400000,"y":0},{"x":1566773460000,"y":0},{"x":1566773520000,"y":0},{"x":1566773580000,"y":0},{"x":1566773640000,"y":0},{"x":1566773700000,"y":0},{"x":1566773760000,"y":0},{"x":1566773820000,"y":0},{"x":1566773880000,"y":0},{"x":1566773940000,"y":0},{"x":1566774000000,"y":0},{"x":1566774060000,"y":0},{"x":1566774120000,"y":0},{"x":1566774180000,"y":0},{"x":1566774240000,"y":0},{"x":1566774300000,"y":0},{"x":1566774360000,"y":0},{"x":1566774420000,"y":0},{"x":1566774480000,"y":0},{"x":1566774540000,"y":0},{"x":1566774600000,"y":0},{"x":1566774660000,"y":0},{"x":1566774720000,"y":0},{"x":1566774780000,"y":0},{"x":1566774840000,"y":0},{"x":1566774900000,"y":0},{"x":1566774960000,"y":0},{"x":1566775020000,"y":0},{"x":1566775080000,"y":0},{"x":1566775140000,"y":0},{"x":1566775200000,"y":0},{"x":1566775260000,"y":0},{"x":1566775320000,"y":0},{"x":1566775380000,"y":0},{"x":1566775440000,"y":0},{"x":1566775500000,"y":0},{"x":1566775560000,"y":0},{"x":1566775620000,"y":0},{"x":1566775680000,"y":0},{"x":1566775740000,"y":0},{"x":1566775800000,"y":0},{"x":1566775860000,"y":0},{"x":1566775920000,"y":0},{"x":1566775980000,"y":0},{"x":1566776040000,"y":0},{"x":1566776100000,"y":0},{"x":1566776160000,"y":0},{"x":1566776220000,"y":0},{"x":1566776280000,"y":0},{"x":1566776340000,"y":0},{"x":1566776400000,"y":0},{"x":1566776460000,"y":0},{"x":1566776520000,"y":0},{"x":1566776580000,"y":0},{"x":1566776640000,"y":0},{"x":1566776700000,"y":0},{"x":1566776760000,"y":0},{"x":1566776820000,"y":0},{"x":1566776880000,"y":0},{"x":1566776940000,"y":0},{"x":1566777000000,"y":0},{"x":1566777060000,"y":0},{"x":1566777120000,"y":0},{"x":1566777180000,"y":0},{"x":1566777240000,"y":0},{"x":1566777300000,"y":0},{"x":1566777360000,"y":0},{"x":1566777420000,"y":0},{"x":1566777480000,"y":0},{"x":1566777540000,"y":0},{"x":1566777600000,"y":0},{"x":1566777660000,"y":0},{"x":1566777720000,"y":0},{"x":1566777780000,"y":0},{"x":1566777840000,"y":0},{"x":1566777900000,"y":0},{"x":1566777960000,"y":0},{"x":1566778020000,"y":0},{"x":1566778080000,"y":0},{"x":1566778140000,"y":0},{"x":1566778200000,"y":0},{"x":1566778260000,"y":0},{"x":1566778320000,"y":0},{"x":1566778380000,"y":0},{"x":1566778440000,"y":0},{"x":1566778500000,"y":0},{"x":1566778560000,"y":0},{"x":1566778620000,"y":0},{"x":1566778680000,"y":0},{"x":1566778740000,"y":0},{"x":1566778800000,"y":0},{"x":1566778860000,"y":0},{"x":1566778920000,"y":0},{"x":1566778980000,"y":0},{"x":1566779040000,"y":0},{"x":1566779100000,"y":0},{"x":1566779160000,"y":0},{"x":1566779220000,"y":0},{"x":1566779280000,"y":0},{"x":1566779340000,"y":0},{"x":1566779400000,"y":0},{"x":1566779460000,"y":0},{"x":1566779520000,"y":0},{"x":1566779580000,"y":0},{"x":1566779640000,"y":0},{"x":1566779700000,"y":0},{"x":1566779760000,"y":0},{"x":1566779820000,"y":0},{"x":1566779880000,"y":0},{"x":1566779940000,"y":0},{"x":1566780000000,"y":0},{"x":1566780060000,"y":0},{"x":1566780120000,"y":0},{"x":1566780180000,"y":0},{"x":1566780240000,"y":0},{"x":1566780300000,"y":0},{"x":1566780360000,"y":0},{"x":1566780420000,"y":0},{"x":1566780480000,"y":0},{"x":1566780540000,"y":0},{"x":1566780600000,"y":0},{"x":1566780660000,"y":0},{"x":1566780720000,"y":0},{"x":1566780780000,"y":0},{"x":1566780840000,"y":0},{"x":1566780900000,"y":0},{"x":1566780960000,"y":0},{"x":1566781020000,"y":0},{"x":1566781080000,"y":0},{"x":1566781140000,"y":0},{"x":1566781200000,"y":0},{"x":1566781260000,"y":0},{"x":1566781320000,"y":0},{"x":1566781380000,"y":0},{"x":1566781440000,"y":0},{"x":1566781500000,"y":0},{"x":1566781560000,"y":0},{"x":1566781620000,"y":0},{"x":1566781680000,"y":0},{"x":1566781740000,"y":0},{"x":1566781800000,"y":0},{"x":1566781860000,"y":0},{"x":1566781920000,"y":0},{"x":1566781980000,"y":0},{"x":1566782040000,"y":0},{"x":1566782100000,"y":0},{"x":1566782160000,"y":0},{"x":1566782220000,"y":0},{"x":1566782280000,"y":0},{"x":1566782340000,"y":0},{"x":1566782400000,"y":0},{"x":1566782460000,"y":0},{"x":1566782520000,"y":0},{"x":1566782580000,"y":0},{"x":1566782640000,"y":0},{"x":1566782700000,"y":0},{"x":1566782760000,"y":0},{"x":1566782820000,"y":0},{"x":1566782880000,"y":0},{"x":1566782940000,"y":0},{"x":1566783000000,"y":0},{"x":1566783060000,"y":0},{"x":1566783120000,"y":0},{"x":1566783180000,"y":0},{"x":1566783240000,"y":0},{"x":1566783300000,"y":0},{"x":1566783360000,"y":0},{"x":1566783420000,"y":0},{"x":1566783480000,"y":0},{"x":1566783540000,"y":0},{"x":1566783600000,"y":0},{"x":1566783660000,"y":0.02},{"x":1566783720000,"y":0},{"x":1566783780000,"y":0},{"x":1566783840000,"y":0.02},{"x":1566783900000,"y":0},{"x":1566783960000,"y":0},{"x":1566784020000,"y":0},{"x":1566784080000,"y":0},{"x":1566784140000,"y":0},{"x":1566784200000,"y":0},{"x":1566784260000,"y":0},{"x":1566784320000,"y":0},{"x":1566784380000,"y":0},{"x":1566784440000,"y":0},{"x":1566784500000,"y":0},{"x":1566784560000,"y":0},{"x":1566784620000,"y":0},{"x":1566784680000,"y":0},{"x":1566784740000,"y":0},{"x":1566784800000,"y":0},{"x":1566784860000,"y":0},{"x":1566784920000,"y":0},{"x":1566784980000,"y":0},{"x":1566785040000,"y":0},{"x":1566785100000,"y":0},{"x":1566785160000,"y":0},{"x":1566785220000,"y":0},{"x":1566785280000,"y":0},{"x":1566785340000,"y":0},{"x":1566785400000,"y":0},{"x":1566785460000,"y":0},{"x":1566785520000,"y":0},{"x":1566785580000,"y":0},{"x":1566785640000,"y":0},{"x":1566785700000,"y":0},{"x":1566785760000,"y":0},{"x":1566785820000,"y":0},{"x":1566785880000,"y":0},{"x":1566785940000,"y":0},{"x":1566786000000,"y":0},{"x":1566786060000,"y":0},{"x":1566786120000,"y":0},{"x":1566786180000,"y":0},{"x":1566786240000,"y":0},{"x":1566786300000,"y":0},{"x":1566786360000,"y":0},{"x":1566786420000,"y":0},{"x":1566786480000,"y":0},{"x":1566786540000,"y":0},{"x":1566786600000,"y":0},{"x":1566786660000,"y":0},{"x":1566786720000,"y":0},{"x":1566786780000,"y":0},{"x":1566786840000,"y":0},{"x":1566786900000,"y":0},{"x":1566786960000,"y":0},{"x":1566787020000,"y":0},{"x":1566787080000,"y":0},{"x":1566787140000,"y":0},{"x":1566787200000,"y":0},{"x":1566787260000,"y":0},{"x":1566787320000,"y":0},{"x":1566787380000,"y":0},{"x":1566787440000,"y":0},{"x":1566787500000,"y":0},{"x":1566787560000,"y":0},{"x":1566787620000,"y":0},{"x":1566787680000,"y":0},{"x":1566787740000,"y":0},{"x":1566787800000,"y":0},{"x":1566787860000,"y":0},{"x":1566787920000,"y":0},{"x":1566787980000,"y":0},{"x":1566788040000,"y":0},{"x":1566788100000,"y":0},{"x":1566788160000,"y":0},{"x":1566788220000,"y":0},{"x":1566788280000,"y":0},{"x":1566788340000,"y":0.01},{"x":1566788400000,"y":0.01},{"x":1566788460000,"y":0},{"x":1566788520000,"y":0},{"x":1566788580000,"y":0},{"x":1566788640000,"y":0},{"x":1566788700000,"y":0},{"x":1566788760000,"y":0},{"x":1566788820000,"y":0},{"x":1566788880000,"y":0},{"x":1566788940000,"y":0},{"x":1566789000000,"y":0},{"x":1566789060000,"y":0},{"x":1566789120000,"y":0},{"x":1566789180000,"y":0},{"x":1566789240000,"y":0},{"x":1566789300000,"y":0},{"x":1566789360000,"y":0},{"x":1566789420000,"y":0},{"x":1566789480000,"y":0},{"x":1566789540000,"y":0},{"x":1566789600000,"y":0},{"x":1566789660000,"y":0},{"x":1566789720000,"y":0},{"x":1566789780000,"y":0},{"x":1566789840000,"y":0},{"x":1566789900000,"y":0},{"x":1566789960000,"y":0},{"x":1566790020000,"y":0},{"x":1566790080000,"y":0},{"x":1566790140000,"y":0},{"x":1566790200000,"y":0},{"x":1566790260000,"y":0},{"x":1566790320000,"y":0},{"x":1566790380000,"y":0},{"x":1566790440000,"y":0},{"x":1566790500000,"y":0},{"x":1566790560000,"y":0},{"x":1566790620000,"y":0},{"x":1566790680000,"y":0},{"x":1566790740000,"y":0},{"x":1566790800000,"y":0},{"x":1566790860000,"y":0},{"x":1566790920000,"y":0},{"x":1566790980000,"y":0},{"x":1566791040000,"y":0},{"x":1566791100000,"y":0},{"x":1566791160000,"y":0},{"x":1566791220000,"y":0},{"x":1566791280000,"y":0},{"x":1566791340000,"y":0},{"x":1566791400000,"y":0},{"x":1566791460000,"y":0},{"x":1566791520000,"y":0},{"x":1566791580000,"y":0},{"x":1566791640000,"y":0},{"x":1566791700000,"y":0},{"x":1566791760000,"y":0},{"x":1566791820000,"y":0},{"x":1566791880000,"y":0},{"x":1566791940000,"y":0},{"x":1566792000000,"y":0},{"x":1566792060000,"y":0},{"x":1566792120000,"y":0},{"x":1566792180000,"y":0},{"x":1566792240000,"y":0},{"x":1566792300000,"y":0},{"x":1566792360000,"y":0},{"x":1566792420000,"y":0},{"x":1566792480000,"y":0},{"x":1566792540000,"y":0},{"x":1566792600000,"y":0},{"x":1566792660000,"y":0},{"x":1566792720000,"y":0},{"x":1566792780000,"y":0},{"x":1566792840000,"y":0},{"x":1566792900000,"y":0},{"x":1566792960000,"y":0},{"x":1566793020000,"y":0},{"x":1566793080000,"y":0},{"x":1566793140000,"y":0},{"x":1566793200000,"y":0},{"x":1566793260000,"y":0},{"x":1566793320000,"y":0.01},{"x":1566793380000,"y":0},{"x":1566793440000,"y":0},{"x":1566793500000,"y":0},{"x":1566793560000,"y":0},{"x":1566793620000,"y":0},{"x":1566793680000,"y":0},{"x":1566793740000,"y":0},{"x":1566793800000,"y":0},{"x":1566793860000,"y":0},{"x":1566793920000,"y":0},{"x":1566793980000,"y":0},{"x":1566794040000,"y":0},{"x":1566794100000,"y":0},{"x":1566794160000,"y":0},{"x":1566794220000,"y":0},{"x":1566794280000,"y":0},{"x":1566794340000,"y":0},{"x":1566794400000,"y":0},{"x":1566794460000,"y":0},{"x":1566794520000,"y":0},{"x":1566794580000,"y":0},{"x":1566794640000,"y":0},{"x":1566794700000,"y":0},{"x":1566794760000,"y":0},{"x":1566794820000,"y":0},{"x":1566794880000,"y":0},{"x":1566794940000,"y":0},{"x":1566795000000,"y":0},{"x":1566795060000,"y":0},{"x":1566795120000,"y":0},{"x":1566795180000,"y":0},{"x":1566795240000,"y":0},{"x":1566795300000,"y":0},{"x":1566795360000,"y":0},{"x":1566795420000,"y":0},{"x":1566795480000,"y":0},{"x":1566795540000,"y":0},{"x":1566795600000,"y":0},{"x":1566795660000,"y":0},{"x":1566795720000,"y":0},{"x":1566795780000,"y":0},{"x":1566795840000,"y":0},{"x":1566795900000,"y":0},{"x":1566795960000,"y":0},{"x":1566796020000,"y":0},{"x":1566796080000,"y":0},{"x":1566796140000,"y":0},{"x":1566796200000,"y":0},{"x":1566796260000,"y":0},{"x":1566796320000,"y":0},{"x":1566796380000,"y":0},{"x":1566796440000,"y":0},{"x":1566796500000,"y":0},{"x":1566796560000,"y":0},{"x":1566796620000,"y":0},{"x":1566796680000,"y":0},{"x":1566796740000,"y":0},{"x":1566796800000,"y":0},{"x":1566796860000,"y":0},{"x":1566796920000,"y":0},{"x":1566796980000,"y":0},{"x":1566797040000,"y":0},{"x":1566797100000,"y":0},{"x":1566797160000,"y":0},{"x":1566797220000,"y":0},{"x":1566797280000,"y":0},{"x":1566797340000,"y":0},{"x":1566797400000,"y":0},{"x":1566797460000,"y":0},{"x":1566797520000,"y":0},{"x":1566797580000,"y":0},{"x":1566797640000,"y":0},{"x":1566797700000,"y":0},{"x":1566797760000,"y":0},{"x":1566797820000,"y":0},{"x":1566797880000,"y":0},{"x":1566797940000,"y":0},{"x":1566798000000,"y":0},{"x":1566798060000,"y":0},{"x":1566798120000,"y":0},{"x":1566798180000,"y":0},{"x":1566798240000,"y":0},{"x":1566798300000,"y":0},{"x":1566798360000,"y":0},{"x":1566798420000,"y":0},{"x":1566798480000,"y":0},{"x":1566798540000,"y":0},{"x":1566798600000,"y":0},{"x":1566798660000,"y":0},{"x":1566798720000,"y":0},{"x":1566798780000,"y":0},{"x":1566798840000,"y":0},{"x":1566798900000,"y":0},{"x":1566798960000,"y":0},{"x":1566799020000,"y":0},{"x":1566799080000,"y":0},{"x":1566799140000,"y":0},{"x":1566799200000,"y":0},{"x":1566799260000,"y":0},{"x":1566799320000,"y":0},{"x":1566799380000,"y":0},{"x":1566799440000,"y":0},{"x":1566799500000,"y":0},{"x":1566799560000,"y":0},{"x":1566799620000,"y":0},{"x":1566799680000,"y":0},{"x":1566799740000,"y":0},{"x":1566799800000,"y":0},{"x":1566799860000,"y":0},{"x":1566799920000,"y":0},{"x":1566799980000,"y":0},{"x":1566800040000,"y":0},{"x":1566800100000,"y":0},{"x":1566800160000,"y":0},{"x":1566800220000,"y":0},{"x":1566800280000,"y":0},{"x":1566800340000,"y":0},{"x":1566800400000,"y":0},{"x":1566800460000,"y":0},{"x":1566800520000,"y":0},{"x":1566800580000,"y":0},{"x":1566800640000,"y":0},{"x":1566800700000,"y":0},{"x":1566800760000,"y":0},{"x":1566800820000,"y":0},{"x":1566800880000,"y":0},{"x":1566800940000,"y":0},{"x":1566801000000,"y":0},{"x":1566801060000,"y":0},{"x":1566801120000,"y":0},{"x":1566801180000,"y":0},{"x":1566801240000,"y":0},{"x":1566801300000,"y":0},{"x":1566801360000,"y":0},{"x":1566801420000,"y":0},{"x":1566801480000,"y":0},{"x":1566801540000,"y":0},{"x":1566801600000,"y":0},{"x":1566801660000,"y":0},{"x":1566801720000,"y":0},{"x":1566801780000,"y":0},{"x":1566801840000,"y":0},{"x":1566801900000,"y":0},{"x":1566801960000,"y":0},{"x":1566802020000,"y":0},{"x":1566802080000,"y":0},{"x":1566802140000,"y":0},{"x":1566802200000,"y":0},{"x":1566802260000,"y":0},{"x":1566802320000,"y":0},{"x":1566802380000,"y":0},{"x":1566802440000,"y":0},{"x":1566802500000,"y":0},{"x":1566802560000,"y":0},{"x":1566802620000,"y":0},{"x":1566802680000,"y":0},{"x":1566802740000,"y":0},{"x":1566802800000,"y":0},{"x":1566802860000,"y":0},{"x":1566802920000,"y":0},{"x":1566802980000,"y":0},{"x":1566803040000,"y":0},{"x":1566803100000,"y":0},{"x":1566803160000,"y":0},{"x":1566803220000,"y":0},{"x":1566803280000,"y":0},{"x":1566803340000,"y":0},{"x":1566803400000,"y":0},{"x":1566803460000,"y":0},{"x":1566803520000,"y":0},{"x":1566803580000,"y":0},{"x":1566803640000,"y":0},{"x":1566803700000,"y":0},{"x":1566803760000,"y":0},{"x":1566803820000,"y":0},{"x":1566803880000,"y":0},{"x":1566803940000,"y":0},{"x":1566804000000,"y":0},{"x":1566804060000,"y":0},{"x":1566804120000,"y":0},{"x":1566804180000,"y":0},{"x":1566804240000,"y":0},{"x":1566804300000,"y":0},{"x":1566804360000,"y":0},{"x":1566804420000,"y":0},{"x":1566804480000,"y":0},{"x":1566804540000,"y":0},{"x":1566804600000,"y":0},{"x":1566804660000,"y":0},{"x":1566804720000,"y":0},{"x":1566804780000,"y":0},{"x":1566804840000,"y":0},{"x":1566804900000,"y":0},{"x":1566804960000,"y":0},{"x":1566805020000,"y":0},{"x":1566805080000,"y":0},{"x":1566805140000,"y":0},{"x":1566805200000,"y":0},{"x":1566805260000,"y":0},{"x":1566805320000,"y":0},{"x":1566805380000,"y":0},{"x":1566805440000,"y":0},{"x":1566805500000,"y":0},{"x":1566805560000,"y":0},{"x":1566805620000,"y":0},{"x":1566805680000,"y":0},{"x":1566805740000,"y":0},{"x":1566805800000,"y":0},{"x":1566805860000,"y":0},{"x":1566805920000,"y":0},{"x":1566805980000,"y":0},{"x":1566806040000,"y":0},{"x":1566806100000,"y":0},{"x":1566806160000,"y":0},{"x":1566806220000,"y":0},{"x":1566806280000,"y":0},{"x":1566806340000,"y":0},{"x":1566806400000,"y":0},{"x":1566806460000,"y":0},{"x":1566806520000,"y":0},{"x":1566806580000,"y":0},{"x":1566806640000,"y":0},{"x":1566806700000,"y":0},{"x":1566806760000,"y":0},{"x":1566806820000,"y":0},{"x":1566806880000,"y":0},{"x":1566806940000,"y":0},{"x":1566807000000,"y":0},{"x":1566807060000,"y":0},{"x":1566807120000,"y":0},{"x":1566807180000,"y":0},{"x":1566807240000,"y":0},{"x":1566807300000,"y":0},{"x":1566807360000,"y":0},{"x":1566807420000,"y":0},{"x":1566807480000,"y":0},{"x":1566807540000,"y":0},{"x":1566807600000,"y":0},{"x":1566807660000,"y":0},{"x":1566807720000,"y":0},{"x":1566807780000,"y":0},{"x":1566807840000,"y":0},{"x":1566807900000,"y":0},{"x":1566807960000,"y":0},{"x":1566808020000,"y":0},{"x":1566808080000,"y":0},{"x":1566808140000,"y":0},{"x":1566808200000,"y":0},{"x":1566808260000,"y":0},{"x":1566808320000,"y":0},{"x":1566808380000,"y":0},{"x":1566808440000,"y":0},{"x":1566808500000,"y":0},{"x":1566808560000,"y":0},{"x":1566808620000,"y":0},{"x":1566808680000,"y":0},{"x":1566808740000,"y":0},{"x":1566808800000,"y":0},{"x":1566808860000,"y":0},{"x":1566808920000,"y":0},{"x":1566808980000,"y":0},{"x":1566809040000,"y":0},{"x":1566809100000,"y":0},{"x":1566809160000,"y":0},{"x":1566809220000,"y":0},{"x":1566809280000,"y":0},{"x":1566809340000,"y":0},{"x":1566809400000,"y":0},{"x":1566809460000,"y":0},{"x":1566809520000,"y":0},{"x":1566809580000,"y":0},{"x":1566809640000,"y":0},{"x":1566809700000,"y":0},{"x":1566809760000,"y":0},{"x":1566809820000,"y":0},{"x":1566809880000,"y":0},{"x":1566809940000,"y":0},{"x":1566810000000,"y":0},{"x":1566810060000,"y":0},{"x":1566810120000,"y":0},{"x":1566810180000,"y":0.01},{"x":1566810240000,"y":0},{"x":1566810300000,"y":0},{"x":1566810360000,"y":0},{"x":1566810420000,"y":0},{"x":1566810480000,"y":0},{"x":1566810540000,"y":0},{"x":1566810600000,"y":0},{"x":1566810660000,"y":0},{"x":1566810720000,"y":0},{"x":1566810780000,"y":0},{"x":1566810840000,"y":0},{"x":1566810900000,"y":0},{"x":1566810960000,"y":0},{"x":1566811020000,"y":0},{"x":1566811080000,"y":0},{"x":1566811140000,"y":0},{"x":1566811200000,"y":0},{"x":1566811260000,"y":0},{"x":1566811320000,"y":0},{"x":1566811380000,"y":0},{"x":1566811440000,"y":0},{"x":1566811500000,"y":0},{"x":1566811560000,"y":0},{"x":1566811620000,"y":0},{"x":1566811680000,"y":0},{"x":1566811740000,"y":0},{"x":1566811800000,"y":0},{"x":1566811860000,"y":0},{"x":1566811920000,"y":0},{"x":1566811980000,"y":0},{"x":1566812040000,"y":0},{"x":1566812100000,"y":0},{"x":1566812160000,"y":0},{"x":1566812220000,"y":0},{"x":1566812280000,"y":0},{"x":1566812340000,"y":0},{"x":1566812400000,"y":0},{"x":1566812460000,"y":0},{"x":1566812520000,"y":0},{"x":1566812580000,"y":0},{"x":1566812640000,"y":0},{"x":1566812700000,"y":0},{"x":1566812760000,"y":0},{"x":1566812820000,"y":0},{"x":1566812880000,"y":0},{"x":1566812940000,"y":0},{"x":1566813000000,"y":0},{"x":1566813060000,"y":0},{"x":1566813120000,"y":0},{"x":1566813180000,"y":0},{"x":1566813240000,"y":0},{"x":1566813300000,"y":0},{"x":1566813360000,"y":0},{"x":1566813420000,"y":0},{"x":1566813480000,"y":0},{"x":1566813540000,"y":0},{"x":1566813600000,"y":0},{"x":1566813660000,"y":0.01},{"x":1566813720000,"y":0.01},{"x":1566813780000,"y":0},{"x":1566813840000,"y":0.01},{"x":1566813900000,"y":0},{"x":1566813960000,"y":0},{"x":1566814020000,"y":0},{"x":1566814080000,"y":0},{"x":1566814140000,"y":0},{"x":1566814200000,"y":0},{"x":1566814260000,"y":0},{"x":1566814320000,"y":0},{"x":1566814380000,"y":0},{"x":1566814440000,"y":0},{"x":1566814500000,"y":0},{"x":1566814560000,"y":0},{"x":1566814620000,"y":0},{"x":1566814680000,"y":0},{"x":1566814740000,"y":0},{"x":1566814800000,"y":0},{"x":1566814860000,"y":0},{"x":1566814920000,"y":0},{"x":1566814980000,"y":0},{"x":1566815040000,"y":0},{"x":1566815100000,"y":0},{"x":1566815160000,"y":0},{"x":1566815220000,"y":0},{"x":1566815280000,"y":0},{"x":1566815340000,"y":0},{"x":1566815400000,"y":0},{"x":1566815460000,"y":0},{"x":1566815520000,"y":0},{"x":1566815580000,"y":0},{"x":1566815640000,"y":0},{"x":1566815700000,"y":0},{"x":1566815760000,"y":0.01},{"x":1566815820000,"y":0},{"x":1566815880000,"y":0},{"x":1566815940000,"y":0},{"x":1566816000000,"y":0},{"x":1566816060000,"y":0},{"x":1566816120000,"y":0},{"x":1566816180000,"y":0},{"x":1566816240000,"y":0},{"x":1566816300000,"y":0},{"x":1566816360000,"y":0},{"x":1566816420000,"y":0},{"x":1566816480000,"y":0},{"x":1566816540000,"y":0},{"x":1566816600000,"y":0},{"x":1566816660000,"y":0},{"x":1566816720000,"y":0},{"x":1566816780000,"y":0},{"x":1566816840000,"y":0},{"x":1566816900000,"y":0},{"x":1566816960000,"y":0},{"x":1566817020000,"y":0},{"x":1566817080000,"y":0},{"x":1566817140000,"y":0},{"x":1566817200000,"y":0},{"x":1566817260000,"y":0},{"x":1566817320000,"y":0},{"x":1566817380000,"y":0},{"x":1566817440000,"y":0},{"x":1566817500000,"y":0},{"x":1566817560000,"y":0},{"x":1566817620000,"y":0},{"x":1566817680000,"y":0},{"x":1566817740000,"y":0},{"x":1566817800000,"y":0},{"x":1566817860000,"y":0},{"x":1566817920000,"y":0},{"x":1566817980000,"y":0},{"x":1566818040000,"y":0},{"x":1566818100000,"y":0},{"x":1566818160000,"y":0},{"x":1566818220000,"y":0},{"x":1566818280000,"y":0.02},{"x":1566818340000,"y":0},{"x":1566818400000,"y":0},{"x":1566818460000,"y":0},{"x":1566818520000,"y":0},{"x":1566818580000,"y":0},{"x":1566818640000,"y":0},{"x":1566818700000,"y":0},{"x":1566818760000,"y":0},{"x":1566818820000,"y":0},{"x":1566818880000,"y":0},{"x":1566818940000,"y":0},{"x":1566819000000,"y":0},{"x":1566819060000,"y":0},{"x":1566819120000,"y":0},{"x":1566819180000,"y":0},{"x":1566819240000,"y":0},{"x":1566819300000,"y":0},{"x":1566819360000,"y":0},{"x":1566819420000,"y":0},{"x":1566819480000,"y":0},{"x":1566819540000,"y":0},{"x":1566819600000,"y":0},{"x":1566819660000,"y":0},{"x":1566819720000,"y":0},{"x":1566819780000,"y":0},{"x":1566819840000,"y":0},{"x":1566819900000,"y":0},{"x":1566819960000,"y":0},{"x":1566820020000,"y":0},{"x":1566820080000,"y":0},{"x":1566820140000,"y":0},{"x":1566820200000,"y":0},{"x":1566820260000,"y":0},{"x":1566820320000,"y":0},{"x":1566820380000,"y":0},{"x":1566820440000,"y":0},{"x":1566820500000,"y":0},{"x":1566820560000,"y":0},{"x":1566820620000,"y":0},{"x":1566820680000,"y":0},{"x":1566820740000,"y":0},{"x":1566820800000,"y":0},{"x":1566820860000,"y":0},{"x":1566820920000,"y":0},{"x":1566820980000,"y":0},{"x":1566821040000,"y":0},{"x":1566821100000,"y":0},{"x":1566821160000,"y":0},{"x":1566821220000,"y":0.05},{"x":1566821280000,"y":0.01},{"x":1566821340000,"y":0},{"x":1566821400000,"y":0},{"x":1566821460000,"y":0},{"x":1566821520000,"y":0},{"x":1566821580000,"y":0},{"x":1566821640000,"y":0},{"x":1566821700000,"y":0},{"x":1566821760000,"y":0},{"x":1566821820000,"y":0},{"x":1566821880000,"y":0},{"x":1566821940000,"y":0},{"x":1566822000000,"y":0},{"x":1566822060000,"y":0},{"x":1566822120000,"y":0},{"x":1566822180000,"y":0},{"x":1566822240000,"y":0},{"x":1566822300000,"y":0},{"x":1566822360000,"y":0},{"x":1566822420000,"y":0},{"x":1566822480000,"y":0},{"x":1566822540000,"y":0},{"x":1566822600000,"y":0},{"x":1566822660000,"y":0},{"x":1566822720000,"y":0},{"x":1566822780000,"y":0},{"x":1566822840000,"y":0},{"x":1566822900000,"y":0},{"x":1566822960000,"y":0},{"x":1566823020000,"y":0},{"x":1566823080000,"y":0},{"x":1566823140000,"y":0},{"x":1566823200000,"y":0},{"x":1566823260000,"y":0},{"x":1566823320000,"y":0},{"x":1566823380000,"y":0},{"x":1566823440000,"y":0},{"x":1566823500000,"y":0},{"x":1566823560000,"y":0},{"x":1566823620000,"y":0},{"x":1566823680000,"y":0},{"x":1566823740000,"y":0},{"x":1566823800000,"y":0},{"x":1566823860000,"y":0},{"x":1566823920000,"y":0},{"x":1566823980000,"y":0},{"x":1566824040000,"y":0},{"x":1566824100000,"y":0},{"x":1566824160000,"y":0},{"x":1566824220000,"y":0},{"x":1566824280000,"y":0},{"x":1566824340000,"y":0},{"x":1566824400000,"y":0},{"x":1566824460000,"y":0},{"x":1566824520000,"y":0},{"x":1566824580000,"y":0},{"x":1566824640000,"y":0},{"x":1566824700000,"y":0},{"x":1566824760000,"y":0},{"x":1566824820000,"y":0},{"x":1566824880000,"y":0},{"x":1566824940000,"y":0},{"x":1566825000000,"y":0},{"x":1566825060000,"y":0},{"x":1566825120000,"y":0},{"x":1566825180000,"y":0},{"x":1566825240000,"y":0},{"x":1566825300000,"y":0},{"x":1566825360000,"y":0},{"x":1566825420000,"y":0},{"x":1566825480000,"y":0},{"x":1566825540000,"y":0},{"x":1566825600000,"y":0},{"x":1566825660000,"y":0},{"x":1566825720000,"y":0},{"x":1566825780000,"y":0},{"x":1566825840000,"y":0},{"x":1566825900000,"y":0},{"x":1566825960000,"y":0},{"x":1566826020000,"y":0},{"x":1566826080000,"y":0},{"x":1566826140000,"y":0},{"x":1566826200000,"y":0},{"x":1566826260000,"y":0},{"x":1566826320000,"y":0},{"x":1566826380000,"y":0},{"x":1566826440000,"y":0},{"x":1566826500000,"y":0},{"x":1566826560000,"y":0},{"x":1566826620000,"y":0},{"x":1566826680000,"y":0},{"x":1566826740000,"y":0},{"x":1566826800000,"y":0},{"x":1566826860000,"y":0},{"x":1566826920000,"y":0},{"x":1566826980000,"y":0},{"x":1566827040000,"y":0},{"x":1566827100000,"y":0},{"x":1566827160000,"y":0},{"x":1566827220000,"y":0},{"x":1566827280000,"y":0},{"x":1566827340000,"y":0},{"x":1566827400000,"y":0},{"x":1566827460000,"y":0},{"x":1566827520000,"y":0},{"x":1566827580000,"y":0},{"x":1566827640000,"y":0},{"x":1566827700000,"y":0},{"x":1566827760000,"y":0.01},{"x":1566827820000,"y":0},{"x":1566827880000,"y":0},{"x":1566827940000,"y":0},{"x":1566828000000,"y":0},{"x":1566828060000,"y":0},{"x":1566828120000,"y":0},{"x":1566828180000,"y":0},{"x":1566828240000,"y":0},{"x":1566828300000,"y":0},{"x":1566828360000,"y":0},{"x":1566828420000,"y":0},{"x":1566828480000,"y":0},{"x":1566828540000,"y":0},{"x":1566828600000,"y":0},{"x":1566828660000,"y":0},{"x":1566828720000,"y":0},{"x":1566828780000,"y":0},{"x":1566828840000,"y":0},{"x":1566828900000,"y":0},{"x":1566828960000,"y":0},{"x":1566829020000,"y":0},{"x":1566829080000,"y":0},{"x":1566829140000,"y":0},{"x":1566829200000,"y":0},{"x":1566829260000,"y":0},{"x":1566829320000,"y":0},{"x":1566829380000,"y":0},{"x":1566829440000,"y":0},{"x":1566829500000,"y":0},{"x":1566829560000,"y":0},{"x":1566829620000,"y":0},{"x":1566829680000,"y":0},{"x":1566829740000,"y":0},{"x":1566829800000,"y":0},{"x":1566829860000,"y":0},{"x":1566829920000,"y":0},{"x":1566829980000,"y":0},{"x":1566830040000,"y":0},{"x":1566830100000,"y":0},{"x":1566830160000,"y":0.03},{"x":1566830220000,"y":0.63},{"x":1566830280000,"y":0},{"x":1566830340000,"y":0},{"x":1566830400000,"y":0},{"x":1566830460000,"y":0},{"x":1566830520000,"y":0},{"x":1566830580000,"y":0},{"x":1566830640000,"y":0},{"x":1566830700000,"y":0},{"x":1566830760000,"y":0},{"x":1566830820000,"y":0},{"x":1566830880000,"y":0},{"x":1566830940000,"y":0},{"x":1566831000000,"y":0},{"x":1566831060000,"y":0},{"x":1566831120000,"y":0},{"x":1566831180000,"y":0},{"x":1566831240000,"y":0},{"x":1566831300000,"y":0},{"x":1566831360000,"y":0},{"x":1566831420000,"y":0},{"x":1566831480000,"y":0},{"x":1566831540000,"y":0},{"x":1566831600000,"y":0},{"x":1566831660000,"y":0},{"x":1566831720000,"y":0},{"x":1566831780000,"y":0},{"x":1566831840000,"y":0},{"x":1566831900000,"y":0},{"x":1566831960000,"y":0},{"x":1566832020000,"y":0},{"x":1566832080000,"y":0.01},{"x":1566832140000,"y":0},{"x":1566832200000,"y":0},{"x":1566832260000,"y":0},{"x":1566832320000,"y":0},{"x":1566832380000,"y":0},{"x":1566832440000,"y":0},{"x":1566832500000,"y":0},{"x":1566832560000,"y":0},{"x":1566832620000,"y":0},{"x":1566832680000,"y":0},{"x":1566832740000,"y":0},{"x":1566832800000,"y":0.74},{"x":1566832860000,"y":0},{"x":1566832920000,"y":0},{"x":1566832980000,"y":0},{"x":1566833040000,"y":0},{"x":1566833100000,"y":0},{"x":1566833160000,"y":0},{"x":1566833220000,"y":0},{"x":1566833280000,"y":0},{"x":1566833340000,"y":0},{"x":1566833400000,"y":0},{"x":1566833460000,"y":0},{"x":1566833520000,"y":0},{"x":1566833580000,"y":0},{"x":1566833640000,"y":0},{"x":1566833700000,"y":0},{"x":1566833760000,"y":0},{"x":1566833820000,"y":0},{"x":1566833880000,"y":0},{"x":1566833940000,"y":0},{"x":1566834000000,"y":0},{"x":1566834060000,"y":0},{"x":1566834120000,"y":0},{"x":1566834180000,"y":0},{"x":1566834240000,"y":0},{"x":1566834300000,"y":0},{"x":1566834360000,"y":0},{"x":1566834420000,"y":0},{"x":1566834480000,"y":0},{"x":1566834540000,"y":0},{"x":1566834600000,"y":0},{"x":1566834660000,"y":0},{"x":1566834720000,"y":0},{"x":1566834780000,"y":0},{"x":1566834840000,"y":0},{"x":1566834900000,"y":0},{"x":1566834960000,"y":0},{"x":1566835020000,"y":0},{"x":1566835080000,"y":0},{"x":1566835140000,"y":0},{"x":1566835200000,"y":0},{"x":1566835260000,"y":0},{"x":1566835320000,"y":0},{"x":1566835380000,"y":0},{"x":1566835440000,"y":0},{"x":1566835500000,"y":0},{"x":1566835560000,"y":0},{"x":1566835620000,"y":0},{"x":1566835680000,"y":0},{"x":1566835740000,"y":0},{"x":1566835800000,"y":0},{"x":1566835860000,"y":0},{"x":1566835920000,"y":0},{"x":1566835980000,"y":0},{"x":1566836040000,"y":0},{"x":1566836100000,"y":0},{"x":1566836160000,"y":0},{"x":1566836220000,"y":0},{"x":1566836280000,"y":0},{"x":1566836340000,"y":0},{"x":1566836400000,"y":0},{"x":1566836460000,"y":0},{"x":1566836520000,"y":0},{"x":1566836580000,"y":0},{"x":1566836640000,"y":0},{"x":1566836700000,"y":0},{"x":1566836760000,"y":0},{"x":1566836820000,"y":0},{"x":1566836880000,"y":0},{"x":1566836940000,"y":0},{"x":1566837000000,"y":0},{"x":1566837060000,"y":0},{"x":1566837120000,"y":0},{"x":1566837180000,"y":0},{"x":1566837240000,"y":0},{"x":1566837300000,"y":0},{"x":1566837360000,"y":0},{"x":1566837420000,"y":0},{"x":1566837480000,"y":0},{"x":1566837540000,"y":0},{"x":1566837600000,"y":0},{"x":1566837660000,"y":0},{"x":1566837720000,"y":0},{"x":1566837780000,"y":0},{"x":1566837840000,"y":0},{"x":1566837900000,"y":0},{"x":1566837960000,"y":0},{"x":1566838020000,"y":0},{"x":1566838080000,"y":0},{"x":1566838140000,"y":0},{"x":1566838200000,"y":0},{"x":1566838260000,"y":0},{"x":1566838320000,"y":0},{"x":1566838380000,"y":0},{"x":1566838440000,"y":0},{"x":1566838500000,"y":0},{"x":1566838560000,"y":0},{"x":1566838620000,"y":0},{"x":1566838680000,"y":0},{"x":1566838740000,"y":0},{"x":1566838800000,"y":0},{"x":1566838860000,"y":0},{"x":1566838920000,"y":0},{"x":1566838980000,"y":0},{"x":1566839040000,"y":0},{"x":1566839100000,"y":0},{"x":1566839160000,"y":0},{"x":1566839220000,"y":0},{"x":1566839280000,"y":0},{"x":1566839340000,"y":0},{"x":1566839400000,"y":0},{"x":1566839460000,"y":0},{"x":1566839520000,"y":0},{"x":1566839580000,"y":0},{"x":1566839640000,"y":0},{"x":1566839700000,"y":0},{"x":1566839760000,"y":0},{"x":1566839820000,"y":0},{"x":1566839880000,"y":0},{"x":1566839940000,"y":0},{"x":1566840000000,"y":0},{"x":1566840060000,"y":0},{"x":1566840120000,"y":0},{"x":1566840180000,"y":0},{"x":1566840240000,"y":0.01},{"x":1566840300000,"y":0},{"x":1566840360000,"y":0},{"x":1566840420000,"y":0},{"x":1566840480000,"y":0},{"x":1566840540000,"y":0},{"x":1566840600000,"y":0},{"x":1566840660000,"y":0},{"x":1566840720000,"y":0},{"x":1566840780000,"y":0},{"x":1566840840000,"y":0},{"x":1566840900000,"y":0},{"x":1566840960000,"y":0},{"x":1566841020000,"y":0},{"x":1566841080000,"y":0},{"x":1566841140000,"y":0},{"x":1566841200000,"y":0},{"x":1566841260000,"y":0},{"x":1566841320000,"y":0},{"x":1566841380000,"y":0},{"x":1566841440000,"y":0},{"x":1566841500000,"y":0},{"x":1566841560000,"y":0},{"x":1566841620000,"y":0},{"x":1566841680000,"y":0},{"x":1566841740000,"y":0},{"x":1566841800000,"y":0},{"x":1566841860000,"y":0},{"x":1566841920000,"y":0},{"x":1566841980000,"y":0},{"x":1566842040000,"y":0},{"x":1566842100000,"y":0},{"x":1566842160000,"y":0},{"x":1566842220000,"y":0},{"x":1566842280000,"y":0},{"x":1566842340000,"y":0},{"x":1566842400000,"y":0},{"x":1566842460000,"y":0},{"x":1566842520000,"y":0},{"x":1566842580000,"y":0},{"x":1566842640000,"y":0},{"x":1566842700000,"y":0},{"x":1566842760000,"y":0},{"x":1566842820000,"y":0},{"x":1566842880000,"y":0},{"x":1566842940000,"y":0},{"x":1566843000000,"y":0},{"x":1566843060000,"y":0},{"x":1566843120000,"y":0},{"x":1566843180000,"y":0},{"x":1566843240000,"y":0},{"x":1566843300000,"y":0},{"x":1566843360000,"y":0},{"x":1566843420000,"y":0},{"x":1566843480000,"y":0},{"x":1566843540000,"y":0},{"x":1566843600000,"y":0},{"x":1566843660000,"y":0},{"x":1566843720000,"y":0},{"x":1566843780000,"y":0},{"x":1566843840000,"y":0},{"x":1566843900000,"y":0},{"x":1566843960000,"y":0},{"x":1566844020000,"y":0},{"x":1566844080000,"y":0},{"x":1566844140000,"y":0},{"x":1566844200000,"y":0.48},{"x":1566844260000,"y":0},{"x":1566844320000,"y":0},{"x":1566844380000,"y":0},{"x":1566844440000,"y":0},{"x":1566844500000,"y":0},{"x":1566844560000,"y":0},{"x":1566844620000,"y":0},{"x":1566844680000,"y":0},{"x":1566844740000,"y":0},{"x":1566844800000,"y":0},{"x":1566844860000,"y":0},{"x":1566844920000,"y":0},{"x":1566844980000,"y":0},{"x":1566845040000,"y":0},{"x":1566845100000,"y":0},{"x":1566845160000,"y":0},{"x":1566845220000,"y":0},{"x":1566845280000,"y":0},{"x":1566845340000,"y":0},{"x":1566845400000,"y":0},{"x":1566845460000,"y":0},{"x":1566845520000,"y":0},{"x":1566845580000,"y":0},{"x":1566845640000,"y":0},{"x":1566845700000,"y":0},{"x":1566845760000,"y":0},{"x":1566845820000,"y":0},{"x":1566845880000,"y":0},{"x":1566845940000,"y":0},{"x":1566846000000,"y":0},{"x":1566846060000,"y":0},{"x":1566846120000,"y":0},{"x":1566846180000,"y":0},{"x":1566846240000,"y":0.17},{"x":1566846300000,"y":0.06},{"x":1566846360000,"y":0},{"x":1566846420000,"y":0},{"x":1566846480000,"y":0.01},{"x":1566846540000,"y":0.02},{"x":1566846600000,"y":0},{"x":1566846660000,"y":0},{"x":1566846720000,"y":0},{"x":1566846780000,"y":0},{"x":1566846840000,"y":0.01},{"x":1566846900000,"y":0.02},{"x":1566846960000,"y":0},{"x":1566847020000,"y":0},{"x":1566847080000,"y":0},{"x":1566847140000,"y":0},{"x":1566847200000,"y":0},{"x":1566847260000,"y":0},{"x":1566847320000,"y":0},{"x":1566847380000,"y":0},{"x":1566847440000,"y":0},{"x":1566847500000,"y":0},{"x":1566847560000,"y":0},{"x":1566847620000,"y":0},{"x":1566847680000,"y":0},{"x":1566847740000,"y":0},{"x":1566847800000,"y":0},{"x":1566847860000,"y":0},{"x":1566847920000,"y":0},{"x":1566847980000,"y":0},{"x":1566848040000,"y":0.01},{"x":1566848100000,"y":0.19},{"x":1566848160000,"y":0.01},{"x":1566848220000,"y":0},{"x":1566848280000,"y":0.53},{"x":1566848340000,"y":0},{"x":1566848400000,"y":0},{"x":1566848460000,"y":0},{"x":1566848520000,"y":0},{"x":1566848580000,"y":0},{"x":1566848640000,"y":0},{"x":1566848700000,"y":0},{"x":1566848760000,"y":0},{"x":1566848820000,"y":0},{"x":1566848880000,"y":0},{"x":1566848940000,"y":0},{"x":1566849000000,"y":0},{"x":1566849060000,"y":0},{"x":1566849120000,"y":0},{"x":1566849180000,"y":0},{"x":1566849240000,"y":0.41},{"x":1566849300000,"y":0},{"x":1566849360000,"y":0},{"x":1566849420000,"y":0},{"x":1566849480000,"y":0},{"x":1566849540000,"y":0},{"x":1566849600000,"y":0},{"x":1566849660000,"y":0},{"x":1566849720000,"y":0},{"x":1566849780000,"y":0},{"x":1566849840000,"y":0},{"x":1566849900000,"y":0},{"x":1566849960000,"y":0},{"x":1566850020000,"y":0},{"x":1566850080000,"y":0.01},{"x":1566850140000,"y":0},{"x":1566850200000,"y":0},{"x":1566850260000,"y":0},{"x":1566850320000,"y":0},{"x":1566850380000,"y":0},{"x":1566850440000,"y":0},{"x":1566850500000,"y":0},{"x":1566850560000,"y":0},{"x":1566850620000,"y":0},{"x":1566850680000,"y":0},{"x":1566850740000,"y":0},{"x":1566850800000,"y":0},{"x":1566850860000,"y":0},{"x":1566850920000,"y":0},{"x":1566850980000,"y":0},{"x":1566851040000,"y":0},{"x":1566851100000,"y":0},{"x":1566851160000,"y":0},{"x":1566851220000,"y":0},{"x":1566851280000,"y":0},{"x":1566851340000,"y":0},{"x":1566851400000,"y":0},{"x":1566851460000,"y":0},{"x":1566851520000,"y":0},{"x":1566851580000,"y":0},{"x":1566851640000,"y":0},{"x":1566851700000,"y":0},{"x":1566851760000,"y":0},{"x":1566851820000,"y":0},{"x":1566851880000,"y":0},{"x":1566851940000,"y":0},{"x":1566852000000,"y":0},{"x":1566852060000,"y":0.01},{"x":1566852120000,"y":0},{"x":1566852180000,"y":0},{"x":1566852240000,"y":0},{"x":1566852300000,"y":0},{"x":1566852360000,"y":0},{"x":1566852420000,"y":0},{"x":1566852480000,"y":0},{"x":1566852540000,"y":0},{"x":1566852600000,"y":0},{"x":1566852660000,"y":0},{"x":1566852720000,"y":0},{"x":1566852780000,"y":0},{"x":1566852840000,"y":0},{"x":1566852900000,"y":0},{"x":1566852960000,"y":0},{"x":1566853020000,"y":0},{"x":1566853080000,"y":0},{"x":1566853140000,"y":0},{"x":1566853200000,"y":0},{"x":1566853260000,"y":0},{"x":1566853320000,"y":0},{"x":1566853380000,"y":0},{"x":1566853440000,"y":0},{"x":1566853500000,"y":0},{"x":1566853560000,"y":0},{"x":1566853620000,"y":0},{"x":1566853680000,"y":0},{"x":1566853740000,"y":0},{"x":1566853800000,"y":0},{"x":1566853860000,"y":0},{"x":1566853920000,"y":0},{"x":1566853980000,"y":0.01},{"x":1566854040000,"y":0},{"x":1566854100000,"y":0},{"x":1566854160000,"y":2.03},{"x":1566854220000,"y":0.02},{"x":1566854280000,"y":0.01},{"x":1566854340000,"y":0},{"x":1566854400000,"y":0},{"x":1566854460000,"y":0},{"x":1566854520000,"y":0},{"x":1566854580000,"y":0},{"x":1566854640000,"y":0},{"x":1566854700000,"y":0.01},{"x":1566854760000,"y":0},{"x":1566854820000,"y":0},{"x":1566854880000,"y":0},{"x":1566854940000,"y":0},{"x":1566855000000,"y":0},{"x":1566855060000,"y":0},{"x":1566855120000,"y":0},{"x":1566855180000,"y":0},{"x":1566855240000,"y":0},{"x":1566855300000,"y":0},{"x":1566855360000,"y":0},{"x":1566855420000,"y":0.03},{"x":1566855480000,"y":0},{"x":1566855540000,"y":0},{"x":1566855600000,"y":0},{"x":1566855660000,"y":0.01},{"x":1566855720000,"y":0.02},{"x":1566855780000,"y":0},{"x":1566855840000,"y":0.13},{"x":1566855900000,"y":0.14},{"x":1566855960000,"y":0},{"x":1566856020000,"y":0},{"x":1566856080000,"y":0},{"x":1566856140000,"y":0},{"x":1566856200000,"y":0},{"x":1566856260000,"y":0},{"x":1566856320000,"y":0},{"x":1566856380000,"y":0},{"x":1566856440000,"y":0},{"x":1566856500000,"y":0},{"x":1566856560000,"y":0},{"x":1566856620000,"y":0},{"x":1566856680000,"y":0},{"x":1566856740000,"y":0},{"x":1566856800000,"y":0},{"x":1566856860000,"y":0},{"x":1566856920000,"y":0},{"x":1566856980000,"y":0},{"x":1566857040000,"y":0.04},{"x":1566857100000,"y":0},{"x":1566857160000,"y":0},{"x":1566857220000,"y":0},{"x":1566857280000,"y":0},{"x":1566857340000,"y":0},{"x":1566857400000,"y":0},{"x":1566857460000,"y":0},{"x":1566857520000,"y":0},{"x":1566857580000,"y":0},{"x":1566857640000,"y":0},{"x":1566857700000,"y":0},{"x":1566857760000,"y":0},{"x":1566857820000,"y":0},{"x":1566857880000,"y":0},{"x":1566857940000,"y":0},{"x":1566858000000,"y":0},{"x":1566858060000,"y":0},{"x":1566858120000,"y":0},{"x":1566858180000,"y":0},{"x":1566858240000,"y":0},{"x":1566858300000,"y":0},{"x":1566858360000,"y":0.03},{"x":1566858420000,"y":0},{"x":1566858480000,"y":0},{"x":1566858540000,"y":0},{"x":1566858600000,"y":0},{"x":1566858660000,"y":0},{"x":1566858720000,"y":0},{"x":1566858780000,"y":0},{"x":1566858840000,"y":0},{"x":1566858900000,"y":0.01},{"x":1566858960000,"y":0},{"x":1566859020000,"y":0},{"x":1566859080000,"y":0},{"x":1566859140000,"y":0},{"x":1566859200000,"y":0},{"x":1566859260000,"y":0},{"x":1566859320000,"y":0},{"x":1566859380000,"y":0},{"x":1566859440000,"y":0},{"x":1566859500000,"y":0},{"x":1566859560000,"y":0},{"x":1566859620000,"y":0.69},{"x":1566859680000,"y":0},{"x":1566859740000,"y":0.22},{"x":1566859800000,"y":0},{"x":1566859860000,"y":0},{"x":1566859920000,"y":0},{"x":1566859980000,"y":0},{"x":1566860040000,"y":0},{"x":1566860100000,"y":0},{"x":1566860160000,"y":0},{"x":1566860220000,"y":0},{"x":1566860280000,"y":0},{"x":1566860340000,"y":0},{"x":1566860400000,"y":0},{"x":1566860460000,"y":0},{"x":1566860520000,"y":0},{"x":1566860580000,"y":0},{"x":1566860640000,"y":0},{"x":1566860700000,"y":0},{"x":1566860760000,"y":0},{"x":1566860820000,"y":0},{"x":1566860880000,"y":0},{"x":1566860940000,"y":0},{"x":1566861000000,"y":0},{"x":1566861060000,"y":0},{"x":1566861120000,"y":0},{"x":1566861180000,"y":0},{"x":1566861240000,"y":0},{"x":1566861300000,"y":0},{"x":1566861360000,"y":0},{"x":1566861420000,"y":0.01},{"x":1566861480000,"y":0},{"x":1566861540000,"y":0},{"x":1566861600000,"y":0},{"x":1566861660000,"y":0.03},{"x":1566861720000,"y":0},{"x":1566861780000,"y":0},{"x":1566861840000,"y":0.02},{"x":1566861900000,"y":1.34},{"x":1566861960000,"y":66.96},{"x":1566862020000,"y":64.15},{"x":1566862080000,"y":11.93},{"x":1566862140000,"y":0.08},{"x":1566862200000,"y":0.03},{"x":1566862260000,"y":0},{"x":1566862320000,"y":0.91},{"x":1566862380000,"y":0},{"x":1566862440000,"y":0},{"x":1566862500000,"y":1.91},{"x":1566862560000,"y":0.03},{"x":1566862620000,"y":0},{"x":1566862680000,"y":0.01},{"x":1566862740000,"y":0},{"x":1566862800000,"y":0},{"x":1566862860000,"y":0},{"x":1566862920000,"y":0.95},{"x":1566862980000,"y":0.01},{"x":1566863040000,"y":1.03},{"x":1566863100000,"y":0.2},{"x":1566863160000,"y":0},{"x":1566863220000,"y":0.01},{"x":1566863280000,"y":0},{"x":1566863340000,"y":0},{"x":1566863400000,"y":0},{"x":1566863460000,"y":0},{"x":1566863520000,"y":0.03},{"x":1566863580000,"y":0},{"x":1566863640000,"y":0},{"x":1566863700000,"y":0},{"x":1566863760000,"y":0},{"x":1566863820000,"y":0},{"x":1566863880000,"y":0},{"x":1566863940000,"y":0},{"x":1566864000000,"y":0},{"x":1566864060000,"y":0},{"x":1566864120000,"y":0},{"x":1566864180000,"y":0},{"x":1566864240000,"y":0},{"x":1566864300000,"y":0},{"x":1566864360000,"y":0},{"x":1566864420000,"y":0},{"x":1566864480000,"y":0},{"x":1566864540000,"y":0.02},{"x":1566864600000,"y":0},{"x":1566864660000,"y":0},{"x":1566864720000,"y":0},{"x":1566864780000,"y":0},{"x":1566864840000,"y":0},{"x":1566864900000,"y":0},{"x":1566864960000,"y":0},{"x":1566865020000,"y":0},{"x":1566865080000,"y":0},{"x":1566865140000,"y":0},{"x":1566865200000,"y":0},{"x":1566865260000,"y":0},{"x":1566865320000,"y":0},{"x":1566865380000,"y":0},{"x":1566865440000,"y":0},{"x":1566865500000,"y":0},{"x":1566865560000,"y":0},{"x":1566865620000,"y":0},{"x":1566865680000,"y":0},{"x":1566865740000,"y":0},{"x":1566865800000,"y":0},{"x":1566865860000,"y":0},{"x":1566865920000,"y":0},{"x":1566865980000,"y":0},{"x":1566866040000,"y":0.01},{"x":1566866100000,"y":0},{"x":1566866160000,"y":0},{"x":1566866220000,"y":0},{"x":1566866280000,"y":0},{"x":1566866340000,"y":0},{"x":1566866400000,"y":0},{"x":1566866460000,"y":0},{"x":1566866520000,"y":0},{"x":1566866580000,"y":0},{"x":1566866640000,"y":0},{"x":1566866700000,"y":0},{"x":1566866760000,"y":0},{"x":1566866820000,"y":0},{"x":1566866880000,"y":0},{"x":1566866940000,"y":0},{"x":1566867000000,"y":0},{"x":1566867060000,"y":0},{"x":1566867120000,"y":0},{"x":1566867180000,"y":0},{"x":1566867240000,"y":0},{"x":1566867300000,"y":0},{"x":1566867360000,"y":0},{"x":1566867420000,"y":0},{"x":1566867480000,"y":0},{"x":1566867540000,"y":0},{"x":1566867600000,"y":0},{"x":1566867660000,"y":0},{"x":1566867720000,"y":0},{"x":1566867780000,"y":0},{"x":1566867840000,"y":0},{"x":1566867900000,"y":0},{"x":1566867960000,"y":0},{"x":1566868020000,"y":0},{"x":1566868080000,"y":0},{"x":1566868140000,"y":0},{"x":1566868200000,"y":0},{"x":1566868260000,"y":0},{"x":1566868320000,"y":0},{"x":1566868380000,"y":0},{"x":1566868440000,"y":0},{"x":1566868500000,"y":0},{"x":1566868560000,"y":0},{"x":1566868620000,"y":0},{"x":1566868680000,"y":0},{"x":1566868740000,"y":0},{"x":1566868800000,"y":0},{"x":1566868860000,"y":0},{"x":1566868920000,"y":0},{"x":1566868980000,"y":0},{"x":1566869040000,"y":0},{"x":1566869100000,"y":0},{"x":1566869160000,"y":0},{"x":1566869220000,"y":0},{"x":1566869280000,"y":0},{"x":1566869340000,"y":0},{"x":1566869400000,"y":0},{"x":1566869460000,"y":0},{"x":1566869520000,"y":0},{"x":1566869580000,"y":0},{"x":1566869640000,"y":0},{"x":1566869700000,"y":0},{"x":1566869760000,"y":0},{"x":1566869820000,"y":0},{"x":1566869880000,"y":0},{"x":1566869940000,"y":0},{"x":1566870000000,"y":0},{"x":1566870060000,"y":0},{"x":1566870120000,"y":0},{"x":1566870180000,"y":0},{"x":1566870240000,"y":0},{"x":1566870300000,"y":0},{"x":1566870360000,"y":0},{"x":1566870420000,"y":0},{"x":1566870480000,"y":0},{"x":1566870540000,"y":0},{"x":1566870600000,"y":0},{"x":1566870660000,"y":0},{"x":1566870720000,"y":0},{"x":1566870780000,"y":0},{"x":1566870840000,"y":0},{"x":1566870900000,"y":0},{"x":1566870960000,"y":0},{"x":1566871020000,"y":0},{"x":1566871080000,"y":0},{"x":1566871140000,"y":0},{"x":1566871200000,"y":0},{"x":1566871260000,"y":0},{"x":1566871320000,"y":0},{"x":1566871380000,"y":0},{"x":1566871440000,"y":0},{"x":1566871500000,"y":0},{"x":1566871560000,"y":0},{"x":1566871620000,"y":0},{"x":1566871680000,"y":0},{"x":1566871740000,"y":0},{"x":1566871800000,"y":0},{"x":1566871860000,"y":0},{"x":1566871920000,"y":0},{"x":1566871980000,"y":0},{"x":1566872040000,"y":0},{"x":1566872100000,"y":0},{"x":1566872160000,"y":0},{"x":1566872220000,"y":0},{"x":1566872280000,"y":0},{"x":1566872340000,"y":0},{"x":1566872400000,"y":0},{"x":1566872460000,"y":0},{"x":1566872520000,"y":0},{"x":1566872580000,"y":0},{"x":1566872640000,"y":0.03},{"x":1566872700000,"y":0.05},{"x":1566872760000,"y":0},{"x":1566872820000,"y":1.03},{"x":1566872880000,"y":2.1},{"x":1566872940000,"y":1.87},{"x":1566873000000,"y":0.01},{"x":1566873060000,"y":0},{"x":1566873120000,"y":0.02},{"x":1566873180000,"y":0.01},{"x":1566873240000,"y":0},{"x":1566873300000,"y":0},{"x":1566873360000,"y":0},{"x":1566873420000,"y":0},{"x":1566873480000,"y":0},{"x":1566873540000,"y":0},{"x":1566873600000,"y":0},{"x":1566873660000,"y":0},{"x":1566873720000,"y":0},{"x":1566873780000,"y":0},{"x":1566873840000,"y":0},{"x":1566873900000,"y":0},{"x":1566873960000,"y":0},{"x":1566874020000,"y":0},{"x":1566874080000,"y":0},{"x":1566874140000,"y":0},{"x":1566874200000,"y":0},{"x":1566874260000,"y":0},{"x":1566874320000,"y":0.01},{"x":1566874380000,"y":0},{"x":1566874440000,"y":0.01},{"x":1566874500000,"y":0},{"x":1566874560000,"y":0.01},{"x":1566874620000,"y":0.13},{"x":1566874680000,"y":0.86},{"x":1566874740000,"y":0},{"x":1566874800000,"y":0},{"x":1566874860000,"y":0.01},{"x":1566874920000,"y":0.56},{"x":1566874980000,"y":0.6},{"x":1566875040000,"y":0.95},{"x":1566875100000,"y":0.89},{"x":1566875160000,"y":5.69},{"x":1566875220000,"y":0.62},{"x":1566875280000,"y":0},{"x":1566875340000,"y":0},{"x":1566875400000,"y":0},{"x":1566875460000,"y":0},{"x":1566875520000,"y":0},{"x":1566875580000,"y":0},{"x":1566875640000,"y":0},{"x":1566875700000,"y":0},{"x":1566875760000,"y":0},{"x":1566875820000,"y":0},{"x":1566875880000,"y":0.01},{"x":1566875940000,"y":0},{"x":1566876000000,"y":0},{"x":1566876060000,"y":0},{"x":1566876120000,"y":0},{"x":1566876180000,"y":0},{"x":1566876240000,"y":0},{"x":1566876300000,"y":0},{"x":1566876360000,"y":0},{"x":1566876420000,"y":0},{"x":1566876480000,"y":0},{"x":1566876540000,"y":0},{"x":1566876600000,"y":0},{"x":1566876660000,"y":0.01},{"x":1566876720000,"y":0},{"x":1566876780000,"y":0},{"x":1566876840000,"y":0},{"x":1566876900000,"y":0},{"x":1566876960000,"y":0},{"x":1566877020000,"y":0},{"x":1566877080000,"y":0},{"x":1566877140000,"y":0},{"x":1566877200000,"y":0},{"x":1566877260000,"y":0},{"x":1566877320000,"y":0},{"x":1566877380000,"y":0},{"x":1566877440000,"y":0},{"x":1566877500000,"y":0},{"x":1566877560000,"y":0},{"x":1566877620000,"y":3.24},{"x":1566877680000,"y":0},{"x":1566877740000,"y":0},{"x":1566877800000,"y":0},{"x":1566877860000,"y":0},{"x":1566877920000,"y":0},{"x":1566877980000,"y":0},{"x":1566878040000,"y":0},{"x":1566878100000,"y":0},{"x":1566878160000,"y":0},{"x":1566878220000,"y":0.01},{"x":1566878280000,"y":0},{"x":1566878340000,"y":0},{"x":1566878400000,"y":0},{"x":1566878460000,"y":0},{"x":1566878520000,"y":0},{"x":1566878580000,"y":0},{"x":1566878640000,"y":0},{"x":1566878700000,"y":0},{"x":1566878760000,"y":0},{"x":1566878820000,"y":0},{"x":1566878880000,"y":0},{"x":1566878940000,"y":0},{"x":1566879000000,"y":0},{"x":1566879060000,"y":0},{"x":1566879120000,"y":0},{"x":1566879180000,"y":0},{"x":1566879240000,"y":0},{"x":1566879300000,"y":0},{"x":1566879360000,"y":0},{"x":1566879420000,"y":0},{"x":1566879480000,"y":0.01},{"x":1566879540000,"y":0},{"x":1566879600000,"y":0},{"x":1566879660000,"y":0},{"x":1566879720000,"y":0},{"x":1566879780000,"y":0},{"x":1566879840000,"y":0},{"x":1566879900000,"y":0},{"x":1566879960000,"y":0},{"x":1566880020000,"y":0},{"x":1566880080000,"y":0},{"x":1566880140000,"y":0},{"x":1566880200000,"y":0},{"x":1566880260000,"y":0},{"x":1566880320000,"y":0},{"x":1566880380000,"y":0},{"x":1566880440000,"y":0},{"x":1566880500000,"y":0},{"x":1566880560000,"y":0},{"x":1566880620000,"y":0},{"x":1566880680000,"y":0},{"x":1566880740000,"y":0},{"x":1566880800000,"y":0},{"x":1566880860000,"y":0},{"x":1566880920000,"y":0.02},{"x":1566880980000,"y":0.01},{"x":1566881040000,"y":0},{"x":1566881100000,"y":0},{"x":1566881160000,"y":0.01},{"x":1566881220000,"y":0},{"x":1566881280000,"y":0},{"x":1566881340000,"y":0},{"x":1566881400000,"y":0},{"x":1566881460000,"y":0},{"x":1566881520000,"y":0},{"x":1566881580000,"y":0},{"x":1566881640000,"y":0},{"x":1566881700000,"y":0},{"x":1566881760000,"y":0},{"x":1566881820000,"y":0.01},{"x":1566881880000,"y":0.87},{"x":1566881940000,"y":0},{"x":1566882000000,"y":0.63},{"x":1566882060000,"y":0},{"x":1566882120000,"y":0.81},{"x":1566882180000,"y":0.01},{"x":1566882240000,"y":0},{"x":1566882300000,"y":1.99},{"x":1566882360000,"y":0.39},{"x":1566882420000,"y":0.22},{"x":1566882480000,"y":0},{"x":1566882540000,"y":0},{"x":1566882600000,"y":0},{"x":1566882660000,"y":0},{"x":1566882720000,"y":0.03},{"x":1566882780000,"y":0},{"x":1566882840000,"y":0},{"x":1566882900000,"y":0},{"x":1566882960000,"y":0},{"x":1566883020000,"y":0},{"x":1566883080000,"y":0},{"x":1566883140000,"y":0},{"x":1566883200000,"y":0},{"x":1566883260000,"y":0},{"x":1566883320000,"y":0},{"x":1566883380000,"y":0},{"x":1566883440000,"y":0},{"x":1566883500000,"y":0},{"x":1566883560000,"y":0},{"x":1566883620000,"y":0},{"x":1566883680000,"y":0},{"x":1566883740000,"y":0},{"x":1566883800000,"y":0},{"x":1566883860000,"y":0},{"x":1566883920000,"y":0},{"x":1566883980000,"y":0},{"x":1566884040000,"y":0},{"x":1566884100000,"y":0},{"x":1566884160000,"y":0},{"x":1566884220000,"y":0},{"x":1566884280000,"y":0},{"x":1566884340000,"y":0},{"x":1566884400000,"y":0},{"x":1566884460000,"y":0},{"x":1566884520000,"y":0},{"x":1566884580000,"y":0},{"x":1566884640000,"y":0},{"x":1566884700000,"y":0},{"x":1566884760000,"y":0},{"x":1566884820000,"y":0},{"x":1566884880000,"y":0},{"x":1566884940000,"y":0},{"x":1566885000000,"y":0},{"x":1566885060000,"y":0},{"x":1566885120000,"y":0},{"x":1566885180000,"y":0},{"x":1566885240000,"y":0},{"x":1566885300000,"y":0},{"x":1566885360000,"y":0},{"x":1566885420000,"y":0.01},{"x":1566885480000,"y":0},{"x":1566885540000,"y":0},{"x":1566885600000,"y":0},{"x":1566885660000,"y":0},{"x":1566885720000,"y":0},{"x":1566885780000,"y":0},{"x":1566885840000,"y":0},{"x":1566885900000,"y":0},{"x":1566885960000,"y":0},{"x":1566886020000,"y":0},{"x":1566886080000,"y":0},{"x":1566886140000,"y":0},{"x":1566886200000,"y":0},{"x":1566886260000,"y":0},{"x":1566886320000,"y":0},{"x":1566886380000,"y":0},{"x":1566886440000,"y":0},{"x":1566886500000,"y":0},{"x":1566886560000,"y":0},{"x":1566886620000,"y":0},{"x":1566886680000,"y":0},{"x":1566886740000,"y":0},{"x":1566886800000,"y":0},{"x":1566886860000,"y":0},{"x":1566886920000,"y":0},{"x":1566886980000,"y":0},{"x":1566887040000,"y":0},{"x":1566887100000,"y":0},{"x":1566887160000,"y":0},{"x":1566887220000,"y":0},{"x":1566887280000,"y":0},{"x":1566887340000,"y":0},{"x":1566887400000,"y":0},{"x":1566887460000,"y":0},{"x":1566887520000,"y":0},{"x":1566887580000,"y":0},{"x":1566887640000,"y":0},{"x":1566887700000,"y":0},{"x":1566887760000,"y":0},{"x":1566887820000,"y":0},{"x":1566887880000,"y":0},{"x":1566887940000,"y":0},{"x":1566888000000,"y":0},{"x":1566888060000,"y":0},{"x":1566888120000,"y":0},{"x":1566888180000,"y":0},{"x":1566888240000,"y":0},{"x":1566888300000,"y":0},{"x":1566888360000,"y":0},{"x":1566888420000,"y":0},{"x":1566888480000,"y":0},{"x":1566888540000,"y":0},{"x":1566888600000,"y":0},{"x":1566888660000,"y":0},{"x":1566888720000,"y":0},{"x":1566888780000,"y":0},{"x":1566888840000,"y":0},{"x":1566888900000,"y":0},{"x":1566888960000,"y":0},{"x":1566889020000,"y":0.01},{"x":1566889080000,"y":0},{"x":1566889140000,"y":0},{"x":1566889200000,"y":0},{"x":1566889260000,"y":0},{"x":1566889320000,"y":0},{"x":1566889380000,"y":0},{"x":1566889440000,"y":0},{"x":1566889500000,"y":0},{"x":1566889560000,"y":0},{"x":1566889620000,"y":0},{"x":1566889680000,"y":0},{"x":1566889740000,"y":0},{"x":1566889800000,"y":0},{"x":1566889860000,"y":0},{"x":1566889920000,"y":0},{"x":1566889980000,"y":0},{"x":1566890040000,"y":0},{"x":1566890100000,"y":0},{"x":1566890160000,"y":0},{"x":1566890220000,"y":0},{"x":1566890280000,"y":0},{"x":1566890340000,"y":0},{"x":1566890400000,"y":0},{"x":1566890460000,"y":0},{"x":1566890520000,"y":0},{"x":1566890580000,"y":0},{"x":1566890640000,"y":0},{"x":1566890700000,"y":0},{"x":1566890760000,"y":0},{"x":1566890820000,"y":0},{"x":1566890880000,"y":0},{"x":1566890940000,"y":0},{"x":1566891000000,"y":0},{"x":1566891060000,"y":0},{"x":1566891120000,"y":0},{"x":1566891180000,"y":0},{"x":1566891240000,"y":0},{"x":1566891300000,"y":0},{"x":1566891360000,"y":0},{"x":1566891420000,"y":0},{"x":1566891480000,"y":0},{"x":1566891540000,"y":0},{"x":1566891600000,"y":0},{"x":1566891660000,"y":0},{"x":1566891720000,"y":0},{"x":1566891780000,"y":0},{"x":1566891840000,"y":0},{"x":1566891900000,"y":0},{"x":1566891960000,"y":0},{"x":1566892020000,"y":0},{"x":1566892080000,"y":0},{"x":1566892140000,"y":0},{"x":1566892200000,"y":0},{"x":1566892260000,"y":0},{"x":1566892320000,"y":0},{"x":1566892380000,"y":0},{"x":1566892440000,"y":0},{"x":1566892500000,"y":0},{"x":1566892560000,"y":0},{"x":1566892620000,"y":0.01},{"x":1566892680000,"y":0},{"x":1566892740000,"y":0},{"x":1566892800000,"y":0},{"x":1566892860000,"y":0},{"x":1566892920000,"y":0},{"x":1566892980000,"y":0},{"x":1566893040000,"y":0},{"x":1566893100000,"y":0},{"x":1566893160000,"y":0},{"x":1566893220000,"y":0},{"x":1566893280000,"y":0},{"x":1566893340000,"y":0},{"x":1566893400000,"y":0},{"x":1566893460000,"y":0},{"x":1566893520000,"y":0},{"x":1566893580000,"y":0},{"x":1566893640000,"y":0},{"x":1566893700000,"y":0},{"x":1566893760000,"y":0},{"x":1566893820000,"y":0},{"x":1566893880000,"y":0},{"x":1566893940000,"y":0},{"x":1566894000000,"y":0},{"x":1566894060000,"y":0},{"x":1566894120000,"y":0},{"x":1566894180000,"y":0},{"x":1566894240000,"y":0},{"x":1566894300000,"y":0},{"x":1566894360000,"y":0},{"x":1566894420000,"y":0},{"x":1566894480000,"y":0},{"x":1566894540000,"y":0},{"x":1566894600000,"y":0},{"x":1566894660000,"y":0},{"x":1566894720000,"y":0},{"x":1566894780000,"y":0},{"x":1566894840000,"y":0},{"x":1566894900000,"y":0},{"x":1566894960000,"y":0},{"x":1566895020000,"y":0},{"x":1566895080000,"y":0},{"x":1566895140000,"y":0},{"x":1566895200000,"y":0},{"x":1566895260000,"y":0},{"x":1566895320000,"y":0},{"x":1566895380000,"y":0},{"x":1566895440000,"y":0},{"x":1566895500000,"y":0},{"x":1566895560000,"y":0},{"x":1566895620000,"y":0},{"x":1566895680000,"y":0},{"x":1566895740000,"y":0},{"x":1566895800000,"y":0},{"x":1566895860000,"y":0},{"x":1566895920000,"y":0},{"x":1566895980000,"y":0},{"x":1566896040000,"y":0},{"x":1566896100000,"y":0},{"x":1566896160000,"y":0},{"x":1566896220000,"y":0.01},{"x":1566896280000,"y":0},{"x":1566896340000,"y":0},{"x":1566896400000,"y":0.02},{"x":1566896460000,"y":0},{"x":1566896520000,"y":0},{"x":1566896580000,"y":0},{"x":1566896640000,"y":0},{"x":1566896700000,"y":0},{"x":1566896760000,"y":0},{"x":1566896820000,"y":0},{"x":1566896880000,"y":0},{"x":1566896940000,"y":0},{"x":1566897000000,"y":0},{"x":1566897060000,"y":0},{"x":1566897120000,"y":0},{"x":1566897180000,"y":0},{"x":1566897240000,"y":0},{"x":1566897300000,"y":0},{"x":1566897360000,"y":0},{"x":1566897420000,"y":0},{"x":1566897480000,"y":0},{"x":1566897540000,"y":0},{"x":1566897600000,"y":0},{"x":1566897660000,"y":0},{"x":1566897720000,"y":0},{"x":1566897780000,"y":0.01},{"x":1566897840000,"y":0.02},{"x":1566897900000,"y":0},{"x":1566897960000,"y":0},{"x":1566898020000,"y":0},{"x":1566898080000,"y":0.01},{"x":1566898140000,"y":0},{"x":1566898200000,"y":0},{"x":1566898260000,"y":0},{"x":1566898320000,"y":0},{"x":1566898380000,"y":0},{"x":1566898440000,"y":0},{"x":1566898500000,"y":0},{"x":1566898560000,"y":0},{"x":1566898620000,"y":0},{"x":1566898680000,"y":0},{"x":1566898740000,"y":0},{"x":1566898800000,"y":0},{"x":1566898860000,"y":0},{"x":1566898920000,"y":0},{"x":1566898980000,"y":0},{"x":1566899040000,"y":0},{"x":1566899100000,"y":0},{"x":1566899160000,"y":0},{"x":1566899220000,"y":0},{"x":1566899280000,"y":0},{"x":1566899340000,"y":0},{"x":1566899400000,"y":0},{"x":1566899460000,"y":0},{"x":1566899520000,"y":0},{"x":1566899580000,"y":0},{"x":1566899640000,"y":0},{"x":1566899700000,"y":0},{"x":1566899760000,"y":0},{"x":1566899820000,"y":0.01},{"x":1566899880000,"y":0},{"x":1566899940000,"y":0},{"x":1566900000000,"y":0},{"x":1566900060000,"y":0},{"x":1566900120000,"y":0},{"x":1566900180000,"y":0},{"x":1566900240000,"y":0},{"x":1566900300000,"y":0},{"x":1566900360000,"y":0},{"x":1566900420000,"y":0},{"x":1566900480000,"y":0},{"x":1566900540000,"y":0},{"x":1566900600000,"y":0},{"x":1566900660000,"y":0},{"x":1566900720000,"y":0},{"x":1566900780000,"y":0},{"x":1566900840000,"y":0},{"x":1566900900000,"y":0},{"x":1566900960000,"y":0},{"x":1566901020000,"y":0},{"x":1566901080000,"y":0},{"x":1566901140000,"y":0},{"x":1566901200000,"y":0},{"x":1566901260000,"y":0},{"x":1566901320000,"y":0},{"x":1566901380000,"y":0},{"x":1566901440000,"y":0},{"x":1566901500000,"y":0},{"x":1566901560000,"y":0},{"x":1566901620000,"y":0},{"x":1566901680000,"y":0},{"x":1566901740000,"y":0.01},{"x":1566901800000,"y":0},{"x":1566901860000,"y":0},{"x":1566901920000,"y":0},{"x":1566901980000,"y":0},{"x":1566902040000,"y":0},{"x":1566902100000,"y":0},{"x":1566902160000,"y":0},{"x":1566902220000,"y":0},{"x":1566902280000,"y":0},{"x":1566902340000,"y":0},{"x":1566902400000,"y":0},{"x":1566902460000,"y":0},{"x":1566902520000,"y":0},{"x":1566902580000,"y":0},{"x":1566902640000,"y":0},{"x":1566902700000,"y":0},{"x":1566902760000,"y":0},{"x":1566902820000,"y":0},{"x":1566902880000,"y":0},{"x":1566902940000,"y":0},{"x":1566903000000,"y":0},{"x":1566903060000,"y":0},{"x":1566903120000,"y":0},{"x":1566903180000,"y":0},{"x":1566903240000,"y":0},{"x":1566903300000,"y":0},{"x":1566903360000,"y":0},{"x":1566903420000,"y":0.01},{"x":1566903480000,"y":0},{"x":1566903540000,"y":0},{"x":1566903600000,"y":0},{"x":1566903660000,"y":0},{"x":1566903720000,"y":0},{"x":1566903780000,"y":0},{"x":1566903840000,"y":0},{"x":1566903900000,"y":0},{"x":1566903960000,"y":0},{"x":1566904020000,"y":0},{"x":1566904080000,"y":0},{"x":1566904140000,"y":0},{"x":1566904200000,"y":0},{"x":1566904260000,"y":0},{"x":1566904320000,"y":0},{"x":1566904380000,"y":0},{"x":1566904440000,"y":0},{"x":1566904500000,"y":0},{"x":1566904560000,"y":0},{"x":1566904620000,"y":0},{"x":1566904680000,"y":0},{"x":1566904740000,"y":0},{"x":1566904800000,"y":0},{"x":1566904860000,"y":0},{"x":1566904920000,"y":0},{"x":1566904980000,"y":0},{"x":1566905040000,"y":0},{"x":1566905100000,"y":0},{"x":1566905160000,"y":0},{"x":1566905220000,"y":0},{"x":1566905280000,"y":0},{"x":1566905340000,"y":0},{"x":1566905400000,"y":0},{"x":1566905460000,"y":0},{"x":1566905520000,"y":0},{"x":1566905580000,"y":0},{"x":1566905640000,"y":0},{"x":1566905700000,"y":0},{"x":1566905760000,"y":0},{"x":1566905820000,"y":0},{"x":1566905880000,"y":0},{"x":1566905940000,"y":0},{"x":1566906000000,"y":0},{"x":1566906060000,"y":0.01},{"x":1566906120000,"y":0},{"x":1566906180000,"y":0},{"x":1566906240000,"y":0},{"x":1566906300000,"y":0},{"x":1566906360000,"y":0},{"x":1566906420000,"y":0},{"x":1566906480000,"y":0},{"x":1566906540000,"y":0},{"x":1566906600000,"y":0.01},{"x":1566906660000,"y":0},{"x":1566906720000,"y":0},{"x":1566906780000,"y":0},{"x":1566906840000,"y":0},{"x":1566906900000,"y":0},{"x":1566906960000,"y":0},{"x":1566907020000,"y":0.01},{"x":1566907080000,"y":0},{"x":1566907140000,"y":0},{"x":1566907200000,"y":0},{"x":1566907260000,"y":0},{"x":1566907320000,"y":0},{"x":1566907380000,"y":0},{"x":1566907440000,"y":0},{"x":1566907500000,"y":0},{"x":1566907560000,"y":0},{"x":1566907620000,"y":0},{"x":1566907680000,"y":0},{"x":1566907740000,"y":0},{"x":1566907800000,"y":0},{"x":1566907860000,"y":0},{"x":1566907920000,"y":0},{"x":1566907980000,"y":0},{"x":1566908040000,"y":0},{"x":1566908100000,"y":0},{"x":1566908160000,"y":0},{"x":1566908220000,"y":0},{"x":1566908280000,"y":0},{"x":1566908340000,"y":0},{"x":1566908400000,"y":0},{"x":1566908460000,"y":0},{"x":1566908520000,"y":0},{"x":1566908580000,"y":0.01},{"x":1566908640000,"y":0},{"x":1566908700000,"y":0},{"x":1566908760000,"y":0},{"x":1566908820000,"y":0},{"x":1566908880000,"y":0},{"x":1566908940000,"y":0},{"x":1566909000000,"y":0},{"x":1566909060000,"y":0},{"x":1566909120000,"y":0},{"x":1566909180000,"y":0},{"x":1566909240000,"y":0},{"x":1566909300000,"y":0},{"x":1566909360000,"y":0},{"x":1566909420000,"y":0},{"x":1566909480000,"y":0},{"x":1566909540000,"y":0},{"x":1566909600000,"y":0},{"x":1566909660000,"y":0},{"x":1566909720000,"y":0},{"x":1566909780000,"y":0},{"x":1566909840000,"y":0},{"x":1566909900000,"y":0},{"x":1566909960000,"y":0},{"x":1566910020000,"y":0},{"x":1566910080000,"y":0},{"x":1566910140000,"y":0},{"x":1566910200000,"y":0},{"x":1566910260000,"y":0},{"x":1566910320000,"y":0},{"x":1566910380000,"y":0},{"x":1566910440000,"y":0},{"x":1566910500000,"y":0},{"x":1566910560000,"y":0},{"x":1566910620000,"y":0.01},{"x":1566910680000,"y":0},{"x":1566910740000,"y":0},{"x":1566910800000,"y":0},{"x":1566910860000,"y":0},{"x":1566910920000,"y":0},{"x":1566910980000,"y":0},{"x":1566911040000,"y":0},{"x":1566911100000,"y":0},{"x":1566911160000,"y":0},{"x":1566911220000,"y":0},{"x":1566911280000,"y":0.02},{"x":1566911340000,"y":0},{"x":1566911400000,"y":0},{"x":1566911460000,"y":0},{"x":1566911520000,"y":0},{"x":1566911580000,"y":0},{"x":1566911640000,"y":0},{"x":1566911700000,"y":0},{"x":1566911760000,"y":0},{"x":1566911820000,"y":0},{"x":1566911880000,"y":0},{"x":1566911940000,"y":0},{"x":1566912000000,"y":0},{"x":1566912060000,"y":0},{"x":1566912120000,"y":0},{"x":1566912180000,"y":0},{"x":1566912240000,"y":0},{"x":1566912300000,"y":0},{"x":1566912360000,"y":0},{"x":1566912420000,"y":0},{"x":1566912480000,"y":0},{"x":1566912540000,"y":0},{"x":1566912600000,"y":0},{"x":1566912660000,"y":0},{"x":1566912720000,"y":0},{"x":1566912780000,"y":0},{"x":1566912840000,"y":0.02},{"x":1566912900000,"y":0},{"x":1566912960000,"y":0},{"x":1566913020000,"y":0},{"x":1566913080000,"y":0},{"x":1566913140000,"y":0},{"x":1566913200000,"y":0},{"x":1566913260000,"y":0},{"x":1566913320000,"y":0},{"x":1566913380000,"y":0},{"x":1566913440000,"y":0},{"x":1566913500000,"y":0},{"x":1566913560000,"y":0},{"x":1566913620000,"y":0},{"x":1566913680000,"y":0},{"x":1566913740000,"y":0},{"x":1566913800000,"y":0},{"x":1566913860000,"y":0},{"x":1566913920000,"y":0},{"x":1566913980000,"y":0},{"x":1566914040000,"y":0},{"x":1566914100000,"y":0},{"x":1566914160000,"y":0},{"x":1566914220000,"y":0.01},{"x":1566914280000,"y":0},{"x":1566914340000,"y":0},{"x":1566914400000,"y":0},{"x":1566914460000,"y":0},{"x":1566914520000,"y":0},{"x":1566914580000,"y":0},{"x":1566914640000,"y":0},{"x":1566914700000,"y":0},{"x":1566914760000,"y":0},{"x":1566914820000,"y":0},{"x":1566914880000,"y":0},{"x":1566914940000,"y":0.81},{"x":1566915000000,"y":0},{"x":1566915060000,"y":0},{"x":1566915120000,"y":0},{"x":1566915180000,"y":0.01},{"x":1566915240000,"y":0},{"x":1566915300000,"y":0},{"x":1566915360000,"y":0},{"x":1566915420000,"y":0},{"x":1566915480000,"y":0},{"x":1566915540000,"y":0},{"x":1566915600000,"y":0},{"x":1566915660000,"y":0},{"x":1566915720000,"y":0},{"x":1566915780000,"y":0},{"x":1566915840000,"y":0},{"x":1566915900000,"y":0},{"x":1566915960000,"y":0},{"x":1566916020000,"y":0},{"x":1566916080000,"y":0},{"x":1566916140000,"y":0},{"x":1566916200000,"y":0},{"x":1566916260000,"y":0},{"x":1566916320000,"y":0},{"x":1566916380000,"y":0},{"x":1566916440000,"y":0},{"x":1566916500000,"y":0},{"x":1566916560000,"y":0},{"x":1566916620000,"y":0},{"x":1566916680000,"y":0},{"x":1566916740000,"y":0},{"x":1566916800000,"y":0},{"x":1566916860000,"y":0},{"x":1566916920000,"y":0},{"x":1566916980000,"y":0},{"x":1566917040000,"y":0},{"x":1566917100000,"y":0},{"x":1566917160000,"y":0},{"x":1566917220000,"y":0},{"x":1566917280000,"y":0},{"x":1566917340000,"y":0},{"x":1566917400000,"y":0},{"x":1566917460000,"y":0},{"x":1566917520000,"y":0},{"x":1566917580000,"y":0},{"x":1566917640000,"y":0},{"x":1566917700000,"y":0},{"x":1566917760000,"y":0},{"x":1566917820000,"y":0.01},{"x":1566917880000,"y":0},{"x":1566917940000,"y":0},{"x":1566918000000,"y":0},{"x":1566918060000,"y":0},{"x":1566918120000,"y":0},{"x":1566918180000,"y":0},{"x":1566918240000,"y":0},{"x":1566918300000,"y":0},{"x":1566918360000,"y":0},{"x":1566918420000,"y":0},{"x":1566918480000,"y":0},{"x":1566918540000,"y":0},{"x":1566918600000,"y":0},{"x":1566918660000,"y":0},{"x":1566918720000,"y":0},{"x":1566918780000,"y":0},{"x":1566918840000,"y":0},{"x":1566918900000,"y":0},{"x":1566918960000,"y":0},{"x":1566919020000,"y":0},{"x":1566919080000,"y":0},{"x":1566919140000,"y":0},{"x":1566919200000,"y":0},{"x":1566919260000,"y":0.01},{"x":1566919320000,"y":0},{"x":1566919380000,"y":0},{"x":1566919440000,"y":0},{"x":1566919500000,"y":0},{"x":1566919560000,"y":0.01},{"x":1566919620000,"y":0},{"x":1566919680000,"y":0},{"x":1566919740000,"y":0},{"x":1566919800000,"y":0},{"x":1566919860000,"y":0},{"x":1566919920000,"y":0},{"x":1566919980000,"y":0},{"x":1566920040000,"y":0},{"x":1566920100000,"y":0},{"x":1566920160000,"y":0},{"x":1566920220000,"y":0},{"x":1566920280000,"y":0},{"x":1566920340000,"y":0},{"x":1566920400000,"y":0},{"x":1566920460000,"y":0},{"x":1566920520000,"y":0},{"x":1566920580000,"y":0},{"x":1566920640000,"y":0.33},{"x":1566920700000,"y":0},{"x":1566920760000,"y":0},{"x":1566920820000,"y":0},{"x":1566920880000,"y":0},{"x":1566920940000,"y":0},{"x":1566921000000,"y":0},{"x":1566921060000,"y":0},{"x":1566921120000,"y":0},{"x":1566921180000,"y":0},{"x":1566921240000,"y":0.87},{"x":1566921300000,"y":0.78},{"x":1566921360000,"y":0},{"x":1566921420000,"y":0},{"x":1566921480000,"y":0},{"x":1566921540000,"y":0},{"x":1566921600000,"y":0},{"x":1566921660000,"y":0},{"x":1566921720000,"y":0},{"x":1566921780000,"y":0},{"x":1566921840000,"y":0},{"x":1566921900000,"y":0},{"x":1566921960000,"y":0},{"x":1566922020000,"y":0},{"x":1566922080000,"y":0},{"x":1566922140000,"y":0},{"x":1566922200000,"y":0},{"x":1566922260000,"y":0},{"x":1566922320000,"y":0},{"x":1566922380000,"y":0},{"x":1566922440000,"y":0},{"x":1566922500000,"y":0},{"x":1566922560000,"y":0},{"x":1566922620000,"y":0},{"x":1566922680000,"y":2.55},{"x":1566922740000,"y":0},{"x":1566922800000,"y":0},{"x":1566922860000,"y":0.01},{"x":1566922920000,"y":0.02},{"x":1566922980000,"y":0},{"x":1566923040000,"y":0},{"x":1566923100000,"y":0},{"x":1566923160000,"y":0},{"x":1566923220000,"y":0},{"x":1566923280000,"y":0},{"x":1566923340000,"y":0},{"x":1566923400000,"y":0},{"x":1566923460000,"y":0},{"x":1566923520000,"y":0},{"x":1566923580000,"y":0},{"x":1566923640000,"y":0},{"x":1566923700000,"y":0},{"x":1566923760000,"y":0},{"x":1566923820000,"y":0},{"x":1566923880000,"y":0.87},{"x":1566923940000,"y":0},{"x":1566924000000,"y":0},{"x":1566924060000,"y":0},{"x":1566924120000,"y":0},{"x":1566924180000,"y":0},{"x":1566924240000,"y":0.11},{"x":1566924300000,"y":0},{"x":1566924360000,"y":0},{"x":1566924420000,"y":0.15},{"x":1566924480000,"y":0},{"x":1566924540000,"y":0},{"x":1566924600000,"y":0},{"x":1566924660000,"y":0},{"x":1566924720000,"y":0},{"x":1566924780000,"y":0},{"x":1566924840000,"y":0},{"x":1566924900000,"y":0},{"x":1566924960000,"y":0},{"x":1566925020000,"y":0},{"x":1566925080000,"y":0},{"x":1566925140000,"y":0},{"x":1566925200000,"y":0},{"x":1566925260000,"y":0},{"x":1566925320000,"y":0},{"x":1566925380000,"y":0},{"x":1566925440000,"y":0},{"x":1566925500000,"y":0},{"x":1566925560000,"y":0},{"x":1566925620000,"y":0},{"x":1566925680000,"y":0},{"x":1566925740000,"y":0},{"x":1566925800000,"y":0},{"x":1566925860000,"y":0},{"x":1566925920000,"y":0},{"x":1566925980000,"y":0.02},{"x":1566926040000,"y":0.39},{"x":1566926100000,"y":0},{"x":1566926160000,"y":0},{"x":1566926220000,"y":0},{"x":1566926280000,"y":0},{"x":1566926340000,"y":0},{"x":1566926400000,"y":1.35},{"x":1566926460000,"y":0},{"x":1566926520000,"y":0},{"x":1566926580000,"y":0},{"x":1566926640000,"y":0},{"x":1566926700000,"y":0.01},{"x":1566926760000,"y":0},{"x":1566926820000,"y":0},{"x":1566926880000,"y":0},{"x":1566926940000,"y":0},{"x":1566927000000,"y":0},{"x":1566927060000,"y":0},{"x":1566927120000,"y":0},{"x":1566927180000,"y":0},{"x":1566927240000,"y":0},{"x":1566927300000,"y":0},{"x":1566927360000,"y":0},{"x":1566927420000,"y":0},{"x":1566927480000,"y":0},{"x":1566927540000,"y":0},{"x":1566927600000,"y":0},{"x":1566927660000,"y":0},{"x":1566927720000,"y":0},{"x":1566927780000,"y":0},{"x":1566927840000,"y":0},{"x":1566927900000,"y":0},{"x":1566927960000,"y":0},{"x":1566928020000,"y":0},{"x":1566928080000,"y":0.01},{"x":1566928140000,"y":0.02},{"x":1566928200000,"y":0.02},{"x":1566928260000,"y":0.02},{"x":1566928320000,"y":0.02},{"x":1566928380000,"y":0.02},{"x":1566928440000,"y":0.02},{"x":1566928500000,"y":0.02},{"x":1566928560000,"y":0.02},{"x":1566928620000,"y":0.02},{"x":1566928680000,"y":0},{"x":1566928740000,"y":0},{"x":1566928800000,"y":0},{"x":1566928860000,"y":0},{"x":1566928920000,"y":0},{"x":1566928980000,"y":0},{"x":1566929040000,"y":0},{"x":1566929100000,"y":0},{"x":1566929160000,"y":0.09},{"x":1566929220000,"y":0},{"x":1566929280000,"y":0},{"x":1566929340000,"y":0},{"x":1566929400000,"y":0},{"x":1566929460000,"y":0},{"x":1566929520000,"y":0},{"x":1566929580000,"y":0},{"x":1566929640000,"y":0},{"x":1566929700000,"y":0},{"x":1566929760000,"y":0},{"x":1566929820000,"y":2.18},{"x":1566929880000,"y":1.4},{"x":1566929940000,"y":0},{"x":1566930000000,"y":0},{"x":1566930060000,"y":0.15},{"x":1566930120000,"y":0},{"x":1566930180000,"y":0.6},{"x":1566930240000,"y":0.05},{"x":1566930300000,"y":0},{"x":1566930360000,"y":0.33},{"x":1566930420000,"y":3.02},{"x":1566930480000,"y":0},{"x":1566930540000,"y":0},{"x":1566930600000,"y":0},{"x":1566930660000,"y":0},{"x":1566930720000,"y":0},{"x":1566930780000,"y":0},{"x":1566930840000,"y":0.01},{"x":1566930900000,"y":0},{"x":1566930960000,"y":0},{"x":1566931020000,"y":0},{"x":1566931080000,"y":0},{"x":1566931140000,"y":0},{"x":1566931200000,"y":0},{"x":1566931260000,"y":0},{"x":1566931320000,"y":0},{"x":1566931380000,"y":0},{"x":1566931440000,"y":0.01},{"x":1566931500000,"y":0},{"x":1566931560000,"y":0},{"x":1566931620000,"y":0},{"x":1566931680000,"y":3.92},{"x":1566931740000,"y":0},{"x":1566931800000,"y":0},{"x":1566931860000,"y":0},{"x":1566931920000,"y":0},{"x":1566931980000,"y":0},{"x":1566932040000,"y":0},{"x":1566932100000,"y":0},{"x":1566932160000,"y":0.01},{"x":1566932220000,"y":0.9},{"x":1566932280000,"y":0},{"x":1566932340000,"y":0.87},{"x":1566932400000,"y":4.29},{"x":1566932460000,"y":1.51},{"x":1566932520000,"y":0.01},{"x":1566932580000,"y":0.76},{"x":1566932640000,"y":0.88},{"x":1566932700000,"y":0.01},{"x":1566932760000,"y":0.01},{"x":1566932820000,"y":0},{"x":1566932880000,"y":0.01},{"x":1566932940000,"y":0},{"x":1566933000000,"y":0.91},{"x":1566933060000,"y":0.99},{"x":1566933120000,"y":1.8},{"x":1566933180000,"y":0.01},{"x":1566933240000,"y":0.87},{"x":1566933300000,"y":0},{"x":1566933360000,"y":0.88},{"x":1566933420000,"y":0.02},{"x":1566933480000,"y":3.74},{"x":1566933540000,"y":0.91},{"x":1566933600000,"y":0.02},{"x":1566933660000,"y":0.89},{"x":1566933720000,"y":0},{"x":1566933780000,"y":0.01},{"x":1566933840000,"y":0.01},{"x":1566933900000,"y":0},{"x":1566933960000,"y":0},{"x":1566934020000,"y":0},{"x":1566934080000,"y":0},{"x":1566934140000,"y":0.01},{"x":1566934200000,"y":1.27},{"x":1566934260000,"y":0.3},{"x":1566934320000,"y":0.02},{"x":1566934380000,"y":0.9},{"x":1566934440000,"y":1.37},{"x":1566934500000,"y":0},{"x":1566934560000,"y":0},{"x":1566934620000,"y":0},{"x":1566934680000,"y":0},{"x":1566934740000,"y":0},{"x":1566934800000,"y":0.01},{"x":1566934860000,"y":0},{"x":1566934920000,"y":0},{"x":1566934980000,"y":0.87},{"x":1566935040000,"y":1.13},{"x":1566935100000,"y":1.64},{"x":1566935160000,"y":0.92},{"x":1566935220000,"y":0.77},{"x":1566935280000,"y":0},{"x":1566935340000,"y":0},{"x":1566935400000,"y":0},{"x":1566935460000,"y":0},{"x":1566935520000,"y":0},{"x":1566935580000,"y":0.15},{"x":1566935640000,"y":1.1},{"x":1566935700000,"y":0},{"x":1566935760000,"y":0.02},{"x":1566935820000,"y":0.13},{"x":1566935880000,"y":0.56},{"x":1566935940000,"y":1.84},{"x":1566936000000,"y":0.12},{"x":1566936060000,"y":4.49},{"x":1566936120000,"y":0},{"x":1566936180000,"y":0},{"x":1566936240000,"y":0.83},{"x":1566936300000,"y":0},{"x":1566936360000,"y":2.67},{"x":1566936420000,"y":1.14},{"x":1566936480000,"y":0},{"x":1566936540000,"y":0.03},{"x":1566936600000,"y":0.01},{"x":1566936660000,"y":0},{"x":1566936720000,"y":0},{"x":1566936780000,"y":1.59},{"x":1566936840000,"y":0},{"x":1566936900000,"y":0},{"x":1566936960000,"y":0.15},{"x":1566937020000,"y":0},{"x":1566937080000,"y":0},{"x":1566937140000,"y":0},{"x":1566937200000,"y":0},{"x":1566937260000,"y":0},{"x":1566937320000,"y":0},{"x":1566937380000,"y":0},{"x":1566937440000,"y":0},{"x":1566937500000,"y":0},{"x":1566937560000,"y":0},{"x":1566937620000,"y":0},{"x":1566937680000,"y":0},{"x":1566937740000,"y":0},{"x":1566937800000,"y":0},{"x":1566937860000,"y":0},{"x":1566937920000,"y":0},{"x":1566937980000,"y":0},{"x":1566938040000,"y":0},{"x":1566938100000,"y":0},{"x":1566938160000,"y":0},{"x":1566938220000,"y":0},{"x":1566938280000,"y":0},{"x":1566938340000,"y":0},{"x":1566938400000,"y":0},{"x":1566938460000,"y":0},{"x":1566938520000,"y":0},{"x":1566938580000,"y":0},{"x":1566938640000,"y":0},{"x":1566938700000,"y":0},{"x":1566938760000,"y":0},{"x":1566938820000,"y":0},{"x":1566938880000,"y":0.01},{"x":1566938940000,"y":0},{"x":1566939000000,"y":0},{"x":1566939060000,"y":0},{"x":1566939120000,"y":0},{"x":1566939180000,"y":0},{"x":1566939240000,"y":0},{"x":1566939300000,"y":0},{"x":1566939360000,"y":0},{"x":1566939420000,"y":0},{"x":1566939480000,"y":0},{"x":1566939540000,"y":0},{"x":1566939600000,"y":0},{"x":1566939660000,"y":0},{"x":1566939720000,"y":0},{"x":1566939780000,"y":0},{"x":1566939840000,"y":0},{"x":1566939900000,"y":0},{"x":1566939960000,"y":0},{"x":1566940020000,"y":0},{"x":1566940080000,"y":0},{"x":1566940140000,"y":0},{"x":1566940200000,"y":0},{"x":1566940260000,"y":0},{"x":1566940320000,"y":0},{"x":1566940380000,"y":0},{"x":1566940440000,"y":0},{"x":1566940500000,"y":0},{"x":1566940560000,"y":0},{"x":1566940620000,"y":0},{"x":1566940680000,"y":0},{"x":1566940740000,"y":0},{"x":1566940800000,"y":0},{"x":1566940860000,"y":0},{"x":1566940920000,"y":0},{"x":1566940980000,"y":0},{"x":1566941040000,"y":1.63},{"x":1566941100000,"y":0},{"x":1566941160000,"y":0},{"x":1566941220000,"y":0},{"x":1566941280000,"y":0},{"x":1566941340000,"y":0},{"x":1566941400000,"y":0.01},{"x":1566941460000,"y":0},{"x":1566941520000,"y":0},{"x":1566941580000,"y":0},{"x":1566941640000,"y":0},{"x":1566941700000,"y":2.51},{"x":1566941760000,"y":0.84},{"x":1566941820000,"y":0.01},{"x":1566941880000,"y":0},{"x":1566941940000,"y":0},{"x":1566942000000,"y":0},{"x":1566942060000,"y":0},{"x":1566942120000,"y":0.84},{"x":1566942180000,"y":0},{"x":1566942240000,"y":1.7},{"x":1566942300000,"y":0},{"x":1566942360000,"y":0},{"x":1566942420000,"y":0.83},{"x":1566942480000,"y":0.01},{"x":1566942540000,"y":0},{"x":1566942600000,"y":1.54},{"x":1566942660000,"y":3.49},{"x":1566942720000,"y":1.34},{"x":1566942780000,"y":0.38},{"x":1566942840000,"y":1.33},{"x":1566942900000,"y":1.6},{"x":1566942960000,"y":0.81},{"x":1566943020000,"y":0.83},{"x":1566943080000,"y":0.04},{"x":1566943140000,"y":0.86},{"x":1566943200000,"y":0},{"x":1566943260000,"y":0.86},{"x":1566943320000,"y":0.86},{"x":1566943380000,"y":0},{"x":1566943440000,"y":1.68},{"x":1566943500000,"y":0.86},{"x":1566943560000,"y":0.86},{"x":1566943620000,"y":0.82},{"x":1566943680000,"y":0.01},{"x":1566943740000,"y":0.85},{"x":1566943800000,"y":0.8},{"x":1566943860000,"y":0.04},{"x":1566943920000,"y":0},{"x":1566943980000,"y":0.01},{"x":1566944040000,"y":0},{"x":1566944100000,"y":0.01},{"x":1566944160000,"y":0},{"x":1566944220000,"y":0},{"x":1566944280000,"y":0.03},{"x":1566944340000,"y":0.86},{"x":1566944400000,"y":1.19},{"x":1566944460000,"y":0.86},{"x":1566944520000,"y":0.01},{"x":1566944580000,"y":0},{"x":1566944640000,"y":0},{"x":1566944700000,"y":0},{"x":1566944760000,"y":0},{"x":1566944820000,"y":0.01},{"x":1566944880000,"y":0},{"x":1566944940000,"y":0.01},{"x":1566945000000,"y":0.83},{"x":1566945060000,"y":0},{"x":1566945120000,"y":0},{"x":1566945180000,"y":0},{"x":1566945240000,"y":0},{"x":1566945300000,"y":0},{"x":1566945360000,"y":0},{"x":1566945420000,"y":0},{"x":1566945480000,"y":0},{"x":1566945540000,"y":0},{"x":1566945600000,"y":0},{"x":1566945660000,"y":0},{"x":1566945720000,"y":0},{"x":1566945780000,"y":0},{"x":1566945840000,"y":0},{"x":1566945900000,"y":0},{"x":1566945960000,"y":0},{"x":1566946020000,"y":0},{"x":1566946080000,"y":0},{"x":1566946140000,"y":0.03},{"x":1566946200000,"y":4.99},{"x":1566946260000,"y":1.69},{"x":1566946320000,"y":0.37},{"x":1566946380000,"y":0},{"x":1566946440000,"y":0},{"x":1566946500000,"y":0},{"x":1566946560000,"y":0},{"x":1566946620000,"y":0},{"x":1566946680000,"y":0},{"x":1566946740000,"y":0},{"x":1566946800000,"y":2.18},{"x":1566946860000,"y":0},{"x":1566946920000,"y":0.01},{"x":1566946980000,"y":0},{"x":1566947040000,"y":0},{"x":1566947100000,"y":0},{"x":1566947160000,"y":0.24},{"x":1566947220000,"y":13.28},{"x":1566947280000,"y":30},{"x":1566947340000,"y":87.95},{"x":1566947400000,"y":0},{"x":1566947460000,"y":0.04},{"x":1566947520000,"y":0.03},{"x":1566947580000,"y":21.19},{"x":1566947640000,"y":0.52},{"x":1566947700000,"y":0.45},{"x":1566947760000,"y":0.2},{"x":1566947820000,"y":0.05},{"x":1566947880000,"y":0.02},{"x":1566947940000,"y":0.83},{"x":1566948000000,"y":0.03},{"x":1566948060000,"y":0.06},{"x":1566948120000,"y":0},{"x":1566948180000,"y":0.98},{"x":1566948240000,"y":0.01},{"x":1566948300000,"y":13.57},{"x":1566948360000,"y":0},{"x":1566948420000,"y":0},{"x":1566948480000,"y":0},{"x":1566948540000,"y":0},{"x":1566948600000,"y":0},{"x":1566948660000,"y":0},{"x":1566948720000,"y":0},{"x":1566948780000,"y":0},{"x":1566948840000,"y":0},{"x":1566948900000,"y":0},{"x":1566948960000,"y":0},{"x":1566949020000,"y":0},{"x":1566949080000,"y":0},{"x":1566949140000,"y":0},{"x":1566949200000,"y":0},{"x":1566949260000,"y":0},{"x":1566949320000,"y":0},{"x":1566949380000,"y":0},{"x":1566949440000,"y":0},{"x":1566949500000,"y":0},{"x":1566949560000,"y":0},{"x":1566949620000,"y":0},{"x":1566949680000,"y":0},{"x":1566949740000,"y":0},{"x":1566949800000,"y":0},{"x":1566949860000,"y":0},{"x":1566949920000,"y":0},{"x":1566949980000,"y":0},{"x":1566950040000,"y":0},{"x":1566950100000,"y":0},{"x":1566950160000,"y":0},{"x":1566950220000,"y":0},{"x":1566950280000,"y":0},{"x":1566950340000,"y":0},{"x":1566950400000,"y":0},{"x":1566950460000,"y":0},{"x":1566950520000,"y":0.01},{"x":1566950580000,"y":0.01},{"x":1566950640000,"y":0},{"x":1566950700000,"y":0},{"x":1566950760000,"y":0},{"x":1566950820000,"y":0},{"x":1566950880000,"y":0},{"x":1566950940000,"y":0},{"x":1566951000000,"y":0},{"x":1566951060000,"y":0},{"x":1566951120000,"y":0},{"x":1566951180000,"y":0},{"x":1566951240000,"y":0},{"x":1566951300000,"y":0},{"x":1566951360000,"y":0},{"x":1566951420000,"y":0},{"x":1566951480000,"y":0},{"x":1566951540000,"y":0},{"x":1566951600000,"y":0},{"x":1566951660000,"y":0},{"x":1566951720000,"y":0.02},{"x":1566951780000,"y":0.02},{"x":1566951840000,"y":0.02},{"x":1566951900000,"y":0.01},{"x":1566951960000,"y":0.01},{"x":1566952020000,"y":0.01},{"x":1566952080000,"y":0.01},{"x":1566952140000,"y":0.02},{"x":1566952200000,"y":0.02},{"x":1566952260000,"y":0.01},{"x":1566952320000,"y":0.01},{"x":1566952380000,"y":0.01},{"x":1566952440000,"y":0.02},{"x":1566952500000,"y":0},{"x":1566952560000,"y":0},{"x":1566952620000,"y":0},{"x":1566952680000,"y":0},{"x":1566952740000,"y":0},{"x":1566952800000,"y":0},{"x":1566952860000,"y":0},{"x":1566952920000,"y":0},{"x":1566952980000,"y":0},{"x":1566953040000,"y":0},{"x":1566953100000,"y":0},{"x":1566953160000,"y":0},{"x":1566953220000,"y":0},{"x":1566953280000,"y":0},{"x":1566953340000,"y":0},{"x":1566953400000,"y":0},{"x":1566953460000,"y":0},{"x":1566953520000,"y":0},{"x":1566953580000,"y":2.42},{"x":1566953640000,"y":0.02},{"x":1566953700000,"y":0},{"x":1566953760000,"y":0},{"x":1566953820000,"y":0},{"x":1566953880000,"y":0},{"x":1566953940000,"y":0},{"x":1566954000000,"y":0},{"x":1566954060000,"y":0},{"x":1566954120000,"y":0},{"x":1566954180000,"y":0},{"x":1566954240000,"y":0},{"x":1566954300000,"y":0},{"x":1566954360000,"y":0},{"x":1566954420000,"y":0},{"x":1566954480000,"y":0},{"x":1566954540000,"y":0},{"x":1566954600000,"y":0},{"x":1566954660000,"y":0},{"x":1566954720000,"y":0},{"x":1566954780000,"y":0},{"x":1566954840000,"y":0.01},{"x":1566954900000,"y":0.04},{"x":1566954960000,"y":0.05},{"x":1566955020000,"y":0},{"x":1566955080000,"y":0},{"x":1566955140000,"y":0},{"x":1566955200000,"y":0.21},{"x":1566955260000,"y":0},{"x":1566955320000,"y":0.38},{"x":1566955380000,"y":0},{"x":1566955440000,"y":0.02},{"x":1566955500000,"y":0},{"x":1566955560000,"y":0},{"x":1566955620000,"y":0},{"x":1566955680000,"y":0},{"x":1566955740000,"y":0},{"x":1566955800000,"y":0},{"x":1566955860000,"y":0},{"x":1566955920000,"y":0},{"x":1566955980000,"y":0},{"x":1566956040000,"y":0},{"x":1566956100000,"y":0.01},{"x":1566956160000,"y":0.02},{"x":1566956220000,"y":0},{"x":1566956280000,"y":0},{"x":1566956340000,"y":0},{"x":1566956400000,"y":0},{"x":1566956460000,"y":0},{"x":1566956520000,"y":0},{"x":1566956580000,"y":0},{"x":1566956640000,"y":0},{"x":1566956700000,"y":0},{"x":1566956760000,"y":0},{"x":1566956820000,"y":0},{"x":1566956880000,"y":0},{"x":1566956940000,"y":0},{"x":1566957000000,"y":0},{"x":1566957060000,"y":0},{"x":1566957120000,"y":0},{"x":1566957180000,"y":0},{"x":1566957240000,"y":0},{"x":1566957300000,"y":0},{"x":1566957360000,"y":0},{"x":1566957420000,"y":1.66},{"x":1566957480000,"y":0},{"x":1566957540000,"y":0},{"x":1566957600000,"y":0},{"x":1566957660000,"y":0},{"x":1566957720000,"y":0.83},{"x":1566957780000,"y":0.01},{"x":1566957840000,"y":0},{"x":1566957900000,"y":2.52},{"x":1566957960000,"y":0.02},{"x":1566958020000,"y":0},{"x":1566958080000,"y":0.01},{"x":1566958140000,"y":0},{"x":1566958200000,"y":0},{"x":1566958260000,"y":0},{"x":1566958320000,"y":0},{"x":1566958380000,"y":0},{"x":1566958440000,"y":0},{"x":1566958500000,"y":0},{"x":1566958560000,"y":0},{"x":1566958620000,"y":0},{"x":1566958680000,"y":0},{"x":1566958740000,"y":0},{"x":1566958800000,"y":0},{"x":1566958860000,"y":0},{"x":1566958920000,"y":0.02},{"x":1566958980000,"y":0},{"x":1566959040000,"y":0},{"x":1566959100000,"y":0},{"x":1566959160000,"y":0},{"x":1566959220000,"y":0},{"x":1566959280000,"y":0},{"x":1566959340000,"y":0},{"x":1566959400000,"y":0},{"x":1566959460000,"y":0},{"x":1566959520000,"y":0},{"x":1566959580000,"y":0},{"x":1566959640000,"y":0},{"x":1566959700000,"y":0},{"x":1566959760000,"y":0},{"x":1566959820000,"y":0},{"x":1566959880000,"y":0},{"x":1566959940000,"y":0},{"x":1566960000000,"y":0},{"x":1566960060000,"y":0},{"x":1566960120000,"y":0},{"x":1566960180000,"y":0},{"x":1566960240000,"y":0},{"x":1566960300000,"y":0},{"x":1566960360000,"y":0},{"x":1566960420000,"y":0},{"x":1566960480000,"y":0},{"x":1566960540000,"y":0},{"x":1566960600000,"y":0},{"x":1566960660000,"y":0},{"x":1566960720000,"y":0},{"x":1566960780000,"y":0},{"x":1566960840000,"y":0},{"x":1566960900000,"y":0},{"x":1566960960000,"y":0},{"x":1566961020000,"y":0},{"x":1566961080000,"y":0},{"x":1566961140000,"y":0},{"x":1566961200000,"y":0},{"x":1566961260000,"y":0},{"x":1566961320000,"y":0},{"x":1566961380000,"y":0},{"x":1566961440000,"y":0},{"x":1566961500000,"y":0},{"x":1566961560000,"y":0},{"x":1566961620000,"y":0},{"x":1566961680000,"y":0},{"x":1566961740000,"y":0},{"x":1566961800000,"y":0},{"x":1566961860000,"y":0},{"x":1566961920000,"y":0},{"x":1566961980000,"y":0},{"x":1566962040000,"y":0},{"x":1566962100000,"y":0},{"x":1566962160000,"y":0},{"x":1566962220000,"y":0},{"x":1566962280000,"y":0},{"x":1566962340000,"y":0},{"x":1566962400000,"y":0},{"x":1566962460000,"y":0},{"x":1566962520000,"y":0},{"x":1566962580000,"y":0},{"x":1566962640000,"y":0},{"x":1566962700000,"y":0},{"x":1566962760000,"y":0},{"x":1566962820000,"y":0},{"x":1566962880000,"y":0},{"x":1566962940000,"y":0},{"x":1566963000000,"y":0},{"x":1566963060000,"y":0},{"x":1566963120000,"y":0},{"x":1566963180000,"y":0},{"x":1566963240000,"y":0.01},{"x":1566963300000,"y":0},{"x":1566963360000,"y":0},{"x":1566963420000,"y":0},{"x":1566963480000,"y":0},{"x":1566963540000,"y":0},{"x":1566963600000,"y":0},{"x":1566963660000,"y":0},{"x":1566963720000,"y":0},{"x":1566963780000,"y":0},{"x":1566963840000,"y":0},{"x":1566963900000,"y":0},{"x":1566963960000,"y":0},{"x":1566964020000,"y":0},{"x":1566964080000,"y":0},{"x":1566964140000,"y":0},{"x":1566964200000,"y":0},{"x":1566964260000,"y":0},{"x":1566964320000,"y":0},{"x":1566964380000,"y":0},{"x":1566964440000,"y":0},{"x":1566964500000,"y":0},{"x":1566964560000,"y":0},{"x":1566964620000,"y":0},{"x":1566964680000,"y":0},{"x":1566964740000,"y":0},{"x":1566964800000,"y":0.01},{"x":1566964860000,"y":0},{"x":1566964920000,"y":0},{"x":1566964980000,"y":0},{"x":1566965040000,"y":0},{"x":1566965100000,"y":0},{"x":1566965160000,"y":0},{"x":1566965220000,"y":0},{"x":1566965280000,"y":0},{"x":1566965340000,"y":0},{"x":1566965400000,"y":0},{"x":1566965460000,"y":0},{"x":1566965520000,"y":0},{"x":1566965580000,"y":0},{"x":1566965640000,"y":0},{"x":1566965700000,"y":0},{"x":1566965760000,"y":0},{"x":1566965820000,"y":0},{"x":1566965880000,"y":0},{"x":1566965940000,"y":0},{"x":1566966000000,"y":0},{"x":1566966060000,"y":0},{"x":1566966120000,"y":0},{"x":1566966180000,"y":0},{"x":1566966240000,"y":0},{"x":1566966300000,"y":0},{"x":1566966360000,"y":0},{"x":1566966420000,"y":0},{"x":1566966480000,"y":0},{"x":1566966540000,"y":0},{"x":1566966600000,"y":0},{"x":1566966660000,"y":0},{"x":1566966720000,"y":0},{"x":1566966780000,"y":0},{"x":1566966840000,"y":0},{"x":1566966900000,"y":0},{"x":1566966960000,"y":0},{"x":1566967020000,"y":0},{"x":1566967080000,"y":0},{"x":1566967140000,"y":0},{"x":1566967200000,"y":0},{"x":1566967260000,"y":0},{"x":1566967320000,"y":0},{"x":1566967380000,"y":0},{"x":1566967440000,"y":0},{"x":1566967500000,"y":0},{"x":1566967560000,"y":0},{"x":1566967620000,"y":0},{"x":1566967680000,"y":0},{"x":1566967740000,"y":0},{"x":1566967800000,"y":0},{"x":1566967860000,"y":0},{"x":1566967920000,"y":0},{"x":1566967980000,"y":0},{"x":1566968040000,"y":0},{"x":1566968100000,"y":0},{"x":1566968160000,"y":0},{"x":1566968220000,"y":0},{"x":1566968280000,"y":0},{"x":1566968340000,"y":0},{"x":1566968400000,"y":0},{"x":1566968460000,"y":0},{"x":1566968520000,"y":0},{"x":1566968580000,"y":0},{"x":1566968640000,"y":0},{"x":1566968700000,"y":0},{"x":1566968760000,"y":0},{"x":1566968820000,"y":0},{"x":1566968880000,"y":0},{"x":1566968940000,"y":0},{"x":1566969000000,"y":0},{"x":1566969060000,"y":0},{"x":1566969120000,"y":0},{"x":1566969180000,"y":0},{"x":1566969240000,"y":0},{"x":1566969300000,"y":0},{"x":1566969360000,"y":0},{"x":1566969420000,"y":0},{"x":1566969480000,"y":0},{"x":1566969540000,"y":0},{"x":1566969600000,"y":0},{"x":1566969660000,"y":0},{"x":1566969720000,"y":0},{"x":1566969780000,"y":0},{"x":1566969840000,"y":0},{"x":1566969900000,"y":0},{"x":1566969960000,"y":0},{"x":1566970020000,"y":0},{"x":1566970080000,"y":0},{"x":1566970140000,"y":0},{"x":1566970200000,"y":0},{"x":1566970260000,"y":0},{"x":1566970320000,"y":0},{"x":1566970380000,"y":0},{"x":1566970440000,"y":0},{"x":1566970500000,"y":0},{"x":1566970560000,"y":0},{"x":1566970620000,"y":0},{"x":1566970680000,"y":0},{"x":1566970740000,"y":0},{"x":1566970800000,"y":0},{"x":1566970860000,"y":0},{"x":1566970920000,"y":0},{"x":1566970980000,"y":0},{"x":1566971040000,"y":0},{"x":1566971100000,"y":0},{"x":1566971160000,"y":0},{"x":1566971220000,"y":0},{"x":1566971280000,"y":0},{"x":1566971340000,"y":0},{"x":1566971400000,"y":0},{"x":1566971460000,"y":0},{"x":1566971520000,"y":0},{"x":1566971580000,"y":0},{"x":1566971640000,"y":0},{"x":1566971700000,"y":0},{"x":1566971760000,"y":0},{"x":1566971820000,"y":0},{"x":1566971880000,"y":0},{"x":1566971940000,"y":0},{"x":1566972000000,"y":0},{"x":1566972060000,"y":0},{"x":1566972120000,"y":0},{"x":1566972180000,"y":0},{"x":1566972240000,"y":0},{"x":1566972300000,"y":0},{"x":1566972360000,"y":0},{"x":1566972420000,"y":0},{"x":1566972480000,"y":0},{"x":1566972540000,"y":0},{"x":1566972600000,"y":0},{"x":1566972660000,"y":0},{"x":1566972720000,"y":0},{"x":1566972780000,"y":0},{"x":1566972840000,"y":0},{"x":1566972900000,"y":0},{"x":1566972960000,"y":0},{"x":1566973020000,"y":0},{"x":1566973080000,"y":0},{"x":1566973140000,"y":0},{"x":1566973200000,"y":0},{"x":1566973260000,"y":0},{"x":1566973320000,"y":0},{"x":1566973380000,"y":0},{"x":1566973440000,"y":0},{"x":1566973500000,"y":0},{"x":1566973560000,"y":0},{"x":1566973620000,"y":0.01},{"x":1566973680000,"y":0},{"x":1566973740000,"y":0},{"x":1566973800000,"y":0.01},{"x":1566973860000,"y":0},{"x":1566973920000,"y":0},{"x":1566973980000,"y":0},{"x":1566974040000,"y":0},{"x":1566974100000,"y":0},{"x":1566974160000,"y":0},{"x":1566974220000,"y":0},{"x":1566974280000,"y":0},{"x":1566974340000,"y":0},{"x":1566974400000,"y":0},{"x":1566974460000,"y":0},{"x":1566974520000,"y":0},{"x":1566974580000,"y":0},{"x":1566974640000,"y":0},{"x":1566974700000,"y":0},{"x":1566974760000,"y":0},{"x":1566974820000,"y":0},{"x":1566974880000,"y":0},{"x":1566974940000,"y":0},{"x":1566975000000,"y":0},{"x":1566975060000,"y":0},{"x":1566975120000,"y":0},{"x":1566975180000,"y":0},{"x":1566975240000,"y":0},{"x":1566975300000,"y":0},{"x":1566975360000,"y":0},{"x":1566975420000,"y":0},{"x":1566975480000,"y":0},{"x":1566975540000,"y":0},{"x":1566975600000,"y":0},{"x":1566975660000,"y":0},{"x":1566975720000,"y":0},{"x":1566975780000,"y":0},{"x":1566975840000,"y":0},{"x":1566975900000,"y":0},{"x":1566975960000,"y":0},{"x":1566976020000,"y":0},{"x":1566976080000,"y":0},{"x":1566976140000,"y":0},{"x":1566976200000,"y":0},{"x":1566976260000,"y":0},{"x":1566976320000,"y":0},{"x":1566976380000,"y":0},{"x":1566976440000,"y":0},{"x":1566976500000,"y":0},{"x":1566976560000,"y":0},{"x":1566976620000,"y":0.02},{"x":1566976680000,"y":0},{"x":1566976740000,"y":0},{"x":1566976800000,"y":0},{"x":1566976860000,"y":0},{"x":1566976920000,"y":0},{"x":1566976980000,"y":0},{"x":1566977040000,"y":0},{"x":1566977100000,"y":0},{"x":1566977160000,"y":0},{"x":1566977220000,"y":0},{"x":1566977280000,"y":0},{"x":1566977340000,"y":0},{"x":1566977400000,"y":0},{"x":1566977460000,"y":0},{"x":1566977520000,"y":0},{"x":1566977580000,"y":0},{"x":1566977640000,"y":0},{"x":1566977700000,"y":0},{"x":1566977760000,"y":0},{"x":1566977820000,"y":0},{"x":1566977880000,"y":0},{"x":1566977940000,"y":0},{"x":1566978000000,"y":0},{"x":1566978060000,"y":0},{"x":1566978120000,"y":0},{"x":1566978180000,"y":0},{"x":1566978240000,"y":0},{"x":1566978300000,"y":0},{"x":1566978360000,"y":0},{"x":1566978420000,"y":0},{"x":1566978480000,"y":0},{"x":1566978540000,"y":0},{"x":1566978600000,"y":0},{"x":1566978660000,"y":0},{"x":1566978720000,"y":0},{"x":1566978780000,"y":0},{"x":1566978840000,"y":0},{"x":1566978900000,"y":0},{"x":1566978960000,"y":0},{"x":1566979020000,"y":0},{"x":1566979080000,"y":0},{"x":1566979140000,"y":0},{"x":1566979200000,"y":0},{"x":1566979260000,"y":0},{"x":1566979320000,"y":0},{"x":1566979380000,"y":0},{"x":1566979440000,"y":0},{"x":1566979500000,"y":0},{"x":1566979560000,"y":0},{"x":1566979620000,"y":0},{"x":1566979680000,"y":0},{"x":1566979740000,"y":0},{"x":1566979800000,"y":0},{"x":1566979860000,"y":0},{"x":1566979920000,"y":0},{"x":1566979980000,"y":0},{"x":1566980040000,"y":0},{"x":1566980100000,"y":0},{"x":1566980160000,"y":0},{"x":1566980220000,"y":0},{"x":1566980280000,"y":0},{"x":1566980340000,"y":0},{"x":1566980400000,"y":0},{"x":1566980460000,"y":0},{"x":1566980520000,"y":0},{"x":1566980580000,"y":0},{"x":1566980640000,"y":0},{"x":1566980700000,"y":0},{"x":1566980760000,"y":0},{"x":1566980820000,"y":0},{"x":1566980880000,"y":0},{"x":1566980940000,"y":0},{"x":1566981000000,"y":0},{"x":1566981060000,"y":0},{"x":1566981120000,"y":0},{"x":1566981180000,"y":0},{"x":1566981240000,"y":0},{"x":1566981300000,"y":0},{"x":1566981360000,"y":0},{"x":1566981420000,"y":0},{"x":1566981480000,"y":0},{"x":1566981540000,"y":0},{"x":1566981600000,"y":0},{"x":1566981660000,"y":0},{"x":1566981720000,"y":0},{"x":1566981780000,"y":0},{"x":1566981840000,"y":0},{"x":1566981900000,"y":0},{"x":1566981960000,"y":0},{"x":1566982020000,"y":0},{"x":1566982080000,"y":0},{"x":1566982140000,"y":0},{"x":1566982200000,"y":0},{"x":1566982260000,"y":0},{"x":1566982320000,"y":0},{"x":1566982380000,"y":0},{"x":1566982440000,"y":0},{"x":1566982500000,"y":0},{"x":1566982560000,"y":0},{"x":1566982620000,"y":0},{"x":1566982680000,"y":0},{"x":1566982740000,"y":0},{"x":1566982800000,"y":0},{"x":1566982860000,"y":0},{"x":1566982920000,"y":0},{"x":1566982980000,"y":0},{"x":1566983040000,"y":0},{"x":1566983100000,"y":0},{"x":1566983160000,"y":0},{"x":1566983220000,"y":0},{"x":1566983280000,"y":0},{"x":1566983340000,"y":0},{"x":1566983400000,"y":0},{"x":1566983460000,"y":0},{"x":1566983520000,"y":0},{"x":1566983580000,"y":0},{"x":1566983640000,"y":0},{"x":1566983700000,"y":0},{"x":1566983760000,"y":0},{"x":1566983820000,"y":0},{"x":1566983880000,"y":0},{"x":1566983940000,"y":0},{"x":1566984000000,"y":0},{"x":1566984060000,"y":0},{"x":1566984120000,"y":0},{"x":1566984180000,"y":0},{"x":1566984240000,"y":0},{"x":1566984300000,"y":0},{"x":1566984360000,"y":0},{"x":1566984420000,"y":0},{"x":1566984480000,"y":0},{"x":1566984540000,"y":0},{"x":1566984600000,"y":0},{"x":1566984660000,"y":0},{"x":1566984720000,"y":0},{"x":1566984780000,"y":0},{"x":1566984840000,"y":0},{"x":1566984900000,"y":0},{"x":1566984960000,"y":0},{"x":1566985020000,"y":0},{"x":1566985080000,"y":0.01},{"x":1566985140000,"y":0},{"x":1566985200000,"y":0},{"x":1566985260000,"y":0},{"x":1566985320000,"y":0},{"x":1566985380000,"y":0},{"x":1566985440000,"y":0},{"x":1566985500000,"y":0},{"x":1566985560000,"y":0},{"x":1566985620000,"y":0},{"x":1566985680000,"y":0},{"x":1566985740000,"y":0},{"x":1566985800000,"y":0},{"x":1566985860000,"y":0},{"x":1566985920000,"y":0},{"x":1566985980000,"y":0},{"x":1566986040000,"y":0},{"x":1566986100000,"y":0},{"x":1566986160000,"y":0},{"x":1566986220000,"y":0},{"x":1566986280000,"y":0},{"x":1566986340000,"y":0},{"x":1566986400000,"y":0},{"x":1566986460000,"y":0},{"x":1566986520000,"y":0},{"x":1566986580000,"y":0},{"x":1566986640000,"y":0},{"x":1566986700000,"y":0.01},{"x":1566986760000,"y":0},{"x":1566986820000,"y":0},{"x":1566986880000,"y":0},{"x":1566986940000,"y":0},{"x":1566987000000,"y":0},{"x":1566987060000,"y":0},{"x":1566987120000,"y":0},{"x":1566987180000,"y":0},{"x":1566987240000,"y":0},{"x":1566987300000,"y":0},{"x":1566987360000,"y":0},{"x":1566987420000,"y":0},{"x":1566987480000,"y":0},{"x":1566987540000,"y":0},{"x":1566987600000,"y":0},{"x":1566987660000,"y":0},{"x":1566987720000,"y":0},{"x":1566987780000,"y":0},{"x":1566987840000,"y":0},{"x":1566987900000,"y":0},{"x":1566987960000,"y":0},{"x":1566988020000,"y":0},{"x":1566988080000,"y":0},{"x":1566988140000,"y":0},{"x":1566988200000,"y":0},{"x":1566988260000,"y":0},{"x":1566988320000,"y":0},{"x":1566988380000,"y":0},{"x":1566988440000,"y":0},{"x":1566988500000,"y":0},{"x":1566988560000,"y":0},{"x":1566988620000,"y":0},{"x":1566988680000,"y":0},{"x":1566988740000,"y":0},{"x":1566988800000,"y":0},{"x":1566988860000,"y":0},{"x":1566988920000,"y":0},{"x":1566988980000,"y":0},{"x":1566989040000,"y":0},{"x":1566989100000,"y":0},{"x":1566989160000,"y":0},{"x":1566989220000,"y":0},{"x":1566989280000,"y":0},{"x":1566989340000,"y":0},{"x":1566989400000,"y":0},{"x":1566989460000,"y":0},{"x":1566989520000,"y":0},{"x":1566989580000,"y":0},{"x":1566989640000,"y":0},{"x":1566989700000,"y":0},{"x":1566989760000,"y":0},{"x":1566989820000,"y":0},{"x":1566989880000,"y":0},{"x":1566989940000,"y":0},{"x":1566990000000,"y":0},{"x":1566990060000,"y":0},{"x":1566990120000,"y":0},{"x":1566990180000,"y":0},{"x":1566990240000,"y":0},{"x":1566990300000,"y":0},{"x":1566990360000,"y":0},{"x":1566990420000,"y":0},{"x":1566990480000,"y":0},{"x":1566990540000,"y":0},{"x":1566990600000,"y":0},{"x":1566990660000,"y":0},{"x":1566990720000,"y":0},{"x":1566990780000,"y":0},{"x":1566990840000,"y":0},{"x":1566990900000,"y":0},{"x":1566990960000,"y":0},{"x":1566991020000,"y":0},{"x":1566991080000,"y":0},{"x":1566991140000,"y":0},{"x":1566991200000,"y":0},{"x":1566991260000,"y":0},{"x":1566991320000,"y":0},{"x":1566991380000,"y":0},{"x":1566991440000,"y":0},{"x":1566991500000,"y":0},{"x":1566991560000,"y":0},{"x":1566991620000,"y":0},{"x":1566991680000,"y":0},{"x":1566991740000,"y":0},{"x":1566991800000,"y":0},{"x":1566991860000,"y":0},{"x":1566991920000,"y":0},{"x":1566991980000,"y":0},{"x":1566992040000,"y":0},{"x":1566992100000,"y":0.02},{"x":1566992160000,"y":0},{"x":1566992220000,"y":0},{"x":1566992280000,"y":0},{"x":1566992340000,"y":0},{"x":1566992400000,"y":0},{"x":1566992460000,"y":0},{"x":1566992520000,"y":0},{"x":1566992580000,"y":0.01},{"x":1566992640000,"y":0},{"x":1566992700000,"y":0},{"x":1566992760000,"y":0},{"x":1566992820000,"y":0},{"x":1566992880000,"y":0},{"x":1566992940000,"y":0},{"x":1566993000000,"y":0},{"x":1566993060000,"y":0},{"x":1566993120000,"y":0},{"x":1566993180000,"y":0},{"x":1566993240000,"y":0},{"x":1566993300000,"y":0},{"x":1566993360000,"y":0},{"x":1566993420000,"y":0},{"x":1566993480000,"y":0},{"x":1566993540000,"y":0},{"x":1566993600000,"y":0},{"x":1566993660000,"y":0},{"x":1566993720000,"y":0},{"x":1566993780000,"y":0},{"x":1566993840000,"y":0},{"x":1566993900000,"y":0},{"x":1566993960000,"y":0},{"x":1566994020000,"y":0},{"x":1566994080000,"y":0},{"x":1566994140000,"y":0},{"x":1566994200000,"y":0},{"x":1566994260000,"y":0},{"x":1566994320000,"y":0},{"x":1566994380000,"y":0},{"x":1566994440000,"y":0},{"x":1566994500000,"y":0},{"x":1566994560000,"y":0},{"x":1566994620000,"y":0},{"x":1566994680000,"y":0},{"x":1566994740000,"y":0},{"x":1566994800000,"y":0},{"x":1566994860000,"y":0},{"x":1566994920000,"y":0},{"x":1566994980000,"y":0},{"x":1566995040000,"y":0},{"x":1566995100000,"y":0},{"x":1566995160000,"y":0},{"x":1566995220000,"y":0},{"x":1566995280000,"y":0},{"x":1566995340000,"y":0},{"x":1566995400000,"y":0},{"x":1566995460000,"y":0},{"x":1566995520000,"y":0},{"x":1566995580000,"y":0},{"x":1566995640000,"y":0},{"x":1566995700000,"y":0},{"x":1566995760000,"y":0},{"x":1566995820000,"y":0},{"x":1566995880000,"y":0},{"x":1566995940000,"y":0},{"x":1566996000000,"y":0},{"x":1566996060000,"y":0},{"x":1566996120000,"y":0},{"x":1566996180000,"y":0},{"x":1566996240000,"y":0},{"x":1566996300000,"y":0},{"x":1566996360000,"y":0},{"x":1566996420000,"y":0},{"x":1566996480000,"y":0},{"x":1566996540000,"y":0},{"x":1566996600000,"y":0},{"x":1566996660000,"y":0},{"x":1566996720000,"y":0},{"x":1566996780000,"y":0},{"x":1566996840000,"y":0},{"x":1566996900000,"y":0},{"x":1566996960000,"y":0},{"x":1566997020000,"y":0.39},{"x":1566997080000,"y":0},{"x":1566997140000,"y":0},{"x":1566997200000,"y":0},{"x":1566997260000,"y":0},{"x":1566997320000,"y":0},{"x":1566997380000,"y":0},{"x":1566997440000,"y":0},{"x":1566997500000,"y":0},{"x":1566997560000,"y":0},{"x":1566997620000,"y":0},{"x":1566997680000,"y":0},{"x":1566997740000,"y":0},{"x":1566997800000,"y":0},{"x":1566997860000,"y":0},{"x":1566997920000,"y":0},{"x":1566997980000,"y":0},{"x":1566998040000,"y":0},{"x":1566998100000,"y":0},{"x":1566998160000,"y":0},{"x":1566998220000,"y":0},{"x":1566998280000,"y":0},{"x":1566998340000,"y":0},{"x":1566998400000,"y":0},{"x":1566998460000,"y":0},{"x":1566998520000,"y":0},{"x":1566998580000,"y":0},{"x":1566998640000,"y":0},{"x":1566998700000,"y":0},{"x":1566998760000,"y":0},{"x":1566998820000,"y":0},{"x":1566998880000,"y":0},{"x":1566998940000,"y":0},{"x":1566999000000,"y":0},{"x":1566999060000,"y":0},{"x":1566999120000,"y":0},{"x":1566999180000,"y":0},{"x":1566999240000,"y":0},{"x":1566999300000,"y":0},{"x":1566999360000,"y":0},{"x":1566999420000,"y":0},{"x":1566999480000,"y":0},{"x":1566999540000,"y":0},{"x":1566999600000,"y":0},{"x":1566999660000,"y":0},{"x":1566999720000,"y":0},{"x":1566999780000,"y":0},{"x":1566999840000,"y":0},{"x":1566999900000,"y":0},{"x":1566999960000,"y":0},{"x":1567000020000,"y":0},{"x":1567000080000,"y":0},{"x":1567000140000,"y":0},{"x":1567000200000,"y":0},{"x":1567000260000,"y":0},{"x":1567000320000,"y":0},{"x":1567000380000,"y":0},{"x":1567000440000,"y":0},{"x":1567000500000,"y":0},{"x":1567000560000,"y":0},{"x":1567000620000,"y":0},{"x":1567000680000,"y":0},{"x":1567000740000,"y":0},{"x":1567000800000,"y":0},{"x":1567000860000,"y":0},{"x":1567000920000,"y":0},{"x":1567000980000,"y":0},{"x":1567001040000,"y":0},{"x":1567001100000,"y":0},{"x":1567001160000,"y":0},{"x":1567001220000,"y":0},{"x":1567001280000,"y":0},{"x":1567001340000,"y":0},{"x":1567001400000,"y":0},{"x":1567001460000,"y":0},{"x":1567001520000,"y":0},{"x":1567001580000,"y":0},{"x":1567001640000,"y":0},{"x":1567001700000,"y":0},{"x":1567001760000,"y":0},{"x":1567001820000,"y":0},{"x":1567001880000,"y":0},{"x":1567001940000,"y":0},{"x":1567002000000,"y":0},{"x":1567002060000,"y":0},{"x":1567002120000,"y":0},{"x":1567002180000,"y":0},{"x":1567002240000,"y":0},{"x":1567002300000,"y":0},{"x":1567002360000,"y":0},{"x":1567002420000,"y":0},{"x":1567002480000,"y":0},{"x":1567002540000,"y":0},{"x":1567002600000,"y":0},{"x":1567002660000,"y":0},{"x":1567002720000,"y":0},{"x":1567002780000,"y":0},{"x":1567002840000,"y":0},{"x":1567002900000,"y":0},{"x":1567002960000,"y":0.01},{"x":1567003020000,"y":0},{"x":1567003080000,"y":0},{"x":1567003140000,"y":0},{"x":1567003200000,"y":0.14},{"x":1567003260000,"y":0},{"x":1567003320000,"y":0},{"x":1567003380000,"y":0},{"x":1567003440000,"y":0},{"x":1567003500000,"y":0},{"x":1567003560000,"y":0},{"x":1567003620000,"y":0},{"x":1567003680000,"y":0},{"x":1567003740000,"y":0},{"x":1567003800000,"y":0},{"x":1567003860000,"y":0},{"x":1567003920000,"y":0},{"x":1567003980000,"y":1.3},{"x":1567004040000,"y":0.64},{"x":1567004100000,"y":0},{"x":1567004160000,"y":0},{"x":1567004220000,"y":0.4},{"x":1567004280000,"y":0.76},{"x":1567004340000,"y":0},{"x":1567004400000,"y":0.76},{"x":1567004460000,"y":0.02},{"x":1567004520000,"y":0},{"x":1567004580000,"y":0},{"x":1567004640000,"y":0},{"x":1567004700000,"y":0},{"x":1567004760000,"y":0},{"x":1567004820000,"y":0},{"x":1567004880000,"y":0},{"x":1567004940000,"y":0},{"x":1567005000000,"y":0},{"x":1567005060000,"y":0},{"x":1567005120000,"y":0},{"x":1567005180000,"y":0},{"x":1567005240000,"y":0},{"x":1567005300000,"y":0},{"x":1567005360000,"y":0.01},{"x":1567005420000,"y":0},{"x":1567005480000,"y":0},{"x":1567005540000,"y":0.01},{"x":1567005600000,"y":0},{"x":1567005660000,"y":0},{"x":1567005720000,"y":0},{"x":1567005780000,"y":0},{"x":1567005840000,"y":0.23},{"x":1567005900000,"y":0},{"x":1567005960000,"y":0},{"x":1567006020000,"y":0},{"x":1567006080000,"y":0},{"x":1567006140000,"y":0},{"x":1567006200000,"y":0},{"x":1567006260000,"y":0},{"x":1567006320000,"y":0},{"x":1567006380000,"y":0},{"x":1567006440000,"y":0},{"x":1567006500000,"y":0},{"x":1567006560000,"y":0},{"x":1567006620000,"y":0},{"x":1567006680000,"y":0},{"x":1567006740000,"y":0},{"x":1567006800000,"y":0},{"x":1567006860000,"y":0},{"x":1567006920000,"y":0},{"x":1567006980000,"y":0.01},{"x":1567007040000,"y":0},{"x":1567007100000,"y":0},{"x":1567007160000,"y":0},{"x":1567007220000,"y":0},{"x":1567007280000,"y":0},{"x":1567007340000,"y":0},{"x":1567007400000,"y":0},{"x":1567007460000,"y":0},{"x":1567007520000,"y":0},{"x":1567007580000,"y":0},{"x":1567007640000,"y":0},{"x":1567007700000,"y":0},{"x":1567007760000,"y":0},{"x":1567007820000,"y":0},{"x":1567007880000,"y":0},{"x":1567007940000,"y":0},{"x":1567008000000,"y":0},{"x":1567008060000,"y":0},{"x":1567008120000,"y":0},{"x":1567008180000,"y":0},{"x":1567008240000,"y":0},{"x":1567008300000,"y":0},{"x":1567008360000,"y":0},{"x":1567008420000,"y":0},{"x":1567008480000,"y":0},{"x":1567008540000,"y":0},{"x":1567008600000,"y":0},{"x":1567008660000,"y":0},{"x":1567008720000,"y":0},{"x":1567008780000,"y":0},{"x":1567008840000,"y":0},{"x":1567008900000,"y":0},{"x":1567008960000,"y":0},{"x":1567009020000,"y":0},{"x":1567009080000,"y":0},{"x":1567009140000,"y":0},{"x":1567009200000,"y":0},{"x":1567009260000,"y":0},{"x":1567009320000,"y":0},{"x":1567009380000,"y":0},{"x":1567009440000,"y":0},{"x":1567009500000,"y":0},{"x":1567009560000,"y":0},{"x":1567009620000,"y":0},{"x":1567009680000,"y":0},{"x":1567009740000,"y":0},{"x":1567009800000,"y":0},{"x":1567009860000,"y":0},{"x":1567009920000,"y":0},{"x":1567009980000,"y":0},{"x":1567010040000,"y":0},{"x":1567010100000,"y":0},{"x":1567010160000,"y":0},{"x":1567010220000,"y":0},{"x":1567010280000,"y":0},{"x":1567010340000,"y":0},{"x":1567010400000,"y":0},{"x":1567010460000,"y":0},{"x":1567010520000,"y":0},{"x":1567010580000,"y":0},{"x":1567010640000,"y":0},{"x":1567010700000,"y":0},{"x":1567010760000,"y":0},{"x":1567010820000,"y":0},{"x":1567010880000,"y":0},{"x":1567010940000,"y":0},{"x":1567011000000,"y":0},{"x":1567011060000,"y":0},{"x":1567011120000,"y":0},{"x":1567011180000,"y":0},{"x":1567011240000,"y":0},{"x":1567011300000,"y":0},{"x":1567011360000,"y":0},{"x":1567011420000,"y":0},{"x":1567011480000,"y":0},{"x":1567011540000,"y":0},{"x":1567011600000,"y":0},{"x":1567011660000,"y":0.83},{"x":1567011720000,"y":0},{"x":1567011780000,"y":0},{"x":1567011840000,"y":0},{"x":1567011900000,"y":0},{"x":1567011960000,"y":0},{"x":1567012020000,"y":0.63},{"x":1567012080000,"y":0},{"x":1567012140000,"y":0},{"x":1567012200000,"y":0},{"x":1567012260000,"y":0},{"x":1567012320000,"y":0},{"x":1567012380000,"y":0},{"x":1567012440000,"y":0},{"x":1567012500000,"y":0},{"x":1567012560000,"y":0},{"x":1567012620000,"y":0},{"x":1567012680000,"y":0},{"x":1567012740000,"y":0},{"x":1567012800000,"y":0},{"x":1567012860000,"y":0},{"x":1567012920000,"y":0},{"x":1567012980000,"y":0},{"x":1567013040000,"y":0},{"x":1567013100000,"y":0},{"x":1567013160000,"y":0},{"x":1567013220000,"y":0},{"x":1567013280000,"y":0},{"x":1567013340000,"y":0},{"x":1567013400000,"y":0},{"x":1567013460000,"y":0.01},{"x":1567013520000,"y":0},{"x":1567013580000,"y":0.05},{"x":1567013640000,"y":1.33},{"x":1567013700000,"y":1.7},{"x":1567013760000,"y":0},{"x":1567013820000,"y":0},{"x":1567013880000,"y":0},{"x":1567013940000,"y":0},{"x":1567014000000,"y":0},{"x":1567014060000,"y":0},{"x":1567014120000,"y":0},{"x":1567014180000,"y":0},{"x":1567014240000,"y":0},{"x":1567014300000,"y":0},{"x":1567014360000,"y":0},{"x":1567014420000,"y":0},{"x":1567014480000,"y":0},{"x":1567014540000,"y":0},{"x":1567014600000,"y":0},{"x":1567014660000,"y":0},{"x":1567014720000,"y":0},{"x":1567014780000,"y":0},{"x":1567014840000,"y":0},{"x":1567014900000,"y":0},{"x":1567014960000,"y":0},{"x":1567015020000,"y":0},{"x":1567015080000,"y":0},{"x":1567015140000,"y":0},{"x":1567015200000,"y":0},{"x":1567015260000,"y":0},{"x":1567015320000,"y":0},{"x":1567015380000,"y":0},{"x":1567015440000,"y":0},{"x":1567015500000,"y":0},{"x":1567015560000,"y":0},{"x":1567015620000,"y":0.83},{"x":1567015680000,"y":0},{"x":1567015740000,"y":0},{"x":1567015800000,"y":0},{"x":1567015860000,"y":0},{"x":1567015920000,"y":0},{"x":1567015980000,"y":0},{"x":1567016040000,"y":0},{"x":1567016100000,"y":0},{"x":1567016160000,"y":0},{"x":1567016220000,"y":0},{"x":1567016280000,"y":0},{"x":1567016340000,"y":0},{"x":1567016400000,"y":0},{"x":1567016460000,"y":0},{"x":1567016520000,"y":0},{"x":1567016580000,"y":0},{"x":1567016640000,"y":0},{"x":1567016700000,"y":0},{"x":1567016760000,"y":0},{"x":1567016820000,"y":0},{"x":1567016880000,"y":0},{"x":1567016940000,"y":0},{"x":1567017000000,"y":0},{"x":1567017060000,"y":0},{"x":1567017120000,"y":0},{"x":1567017180000,"y":0},{"x":1567017240000,"y":0},{"x":1567017300000,"y":0},{"x":1567017360000,"y":0},{"x":1567017420000,"y":0},{"x":1567017480000,"y":0},{"x":1567017540000,"y":0},{"x":1567017600000,"y":0},{"x":1567017660000,"y":0.01},{"x":1567017720000,"y":0},{"x":1567017780000,"y":0},{"x":1567017840000,"y":0},{"x":1567017900000,"y":0},{"x":1567017960000,"y":0},{"x":1567018020000,"y":0},{"x":1567018080000,"y":0},{"x":1567018140000,"y":0},{"x":1567018200000,"y":0},{"x":1567018260000,"y":0.01},{"x":1567018320000,"y":0},{"x":1567018380000,"y":0.02},{"x":1567018440000,"y":0.07},{"x":1567018500000,"y":0.07},{"x":1567018560000,"y":0.01},{"x":1567018620000,"y":1.7},{"x":1567018680000,"y":2.5},{"x":1567018740000,"y":0},{"x":1567018800000,"y":1.67},{"x":1567018860000,"y":0},{"x":1567018920000,"y":0},{"x":1567018980000,"y":0},{"x":1567019040000,"y":0},{"x":1567019100000,"y":0},{"x":1567019160000,"y":0},{"x":1567019220000,"y":0},{"x":1567019280000,"y":0},{"x":1567019340000,"y":0},{"x":1567019400000,"y":0},{"x":1567019460000,"y":0},{"x":1567019520000,"y":0},{"x":1567019580000,"y":0},{"x":1567019640000,"y":0},{"x":1567019700000,"y":0},{"x":1567019760000,"y":0},{"x":1567019820000,"y":0.01},{"x":1567019880000,"y":0},{"x":1567019940000,"y":0},{"x":1567020000000,"y":0},{"x":1567020060000,"y":0},{"x":1567020120000,"y":0},{"x":1567020180000,"y":0},{"x":1567020240000,"y":0},{"x":1567020300000,"y":0},{"x":1567020360000,"y":0},{"x":1567020420000,"y":0},{"x":1567020480000,"y":0},{"x":1567020540000,"y":0},{"x":1567020600000,"y":0},{"x":1567020660000,"y":0},{"x":1567020720000,"y":0.01},{"x":1567020780000,"y":0},{"x":1567020840000,"y":0},{"x":1567020900000,"y":0},{"x":1567020960000,"y":0},{"x":1567021020000,"y":0},{"x":1567021080000,"y":0},{"x":1567021140000,"y":0},{"x":1567021200000,"y":0},{"x":1567021260000,"y":0},{"x":1567021320000,"y":0},{"x":1567021380000,"y":0},{"x":1567021440000,"y":0},{"x":1567021500000,"y":0},{"x":1567021560000,"y":0},{"x":1567021620000,"y":0},{"x":1567021680000,"y":0},{"x":1567021740000,"y":0},{"x":1567021800000,"y":0},{"x":1567021860000,"y":0},{"x":1567021920000,"y":0},{"x":1567021980000,"y":0},{"x":1567022040000,"y":0},{"x":1567022100000,"y":0},{"x":1567022160000,"y":0},{"x":1567022220000,"y":0},{"x":1567022280000,"y":0},{"x":1567022340000,"y":0},{"x":1567022400000,"y":0},{"x":1567022460000,"y":0},{"x":1567022520000,"y":0},{"x":1567022580000,"y":0},{"x":1567022640000,"y":0},{"x":1567022700000,"y":0},{"x":1567022760000,"y":0},{"x":1567022820000,"y":0},{"x":1567022880000,"y":0},{"x":1567022940000,"y":0},{"x":1567023000000,"y":0},{"x":1567023060000,"y":0},{"x":1567023120000,"y":0},{"x":1567023180000,"y":0},{"x":1567023240000,"y":0},{"x":1567023300000,"y":0},{"x":1567023360000,"y":0},{"x":1567023420000,"y":1.49},{"x":1567023480000,"y":0.03},{"x":1567023540000,"y":0.84},{"x":1567023600000,"y":0},{"x":1567023660000,"y":0},{"x":1567023720000,"y":0.01},{"x":1567023780000,"y":0},{"x":1567023840000,"y":0},{"x":1567023900000,"y":0},{"x":1567023960000,"y":0},{"x":1567024020000,"y":0},{"x":1567024080000,"y":0},{"x":1567024140000,"y":0},{"x":1567024200000,"y":0},{"x":1567024260000,"y":0},{"x":1567024320000,"y":0},{"x":1567024380000,"y":0},{"x":1567024440000,"y":0},{"x":1567024500000,"y":0.01},{"x":1567024560000,"y":0},{"x":1567024620000,"y":0},{"x":1567024680000,"y":0},{"x":1567024740000,"y":0},{"x":1567024800000,"y":0},{"x":1567024860000,"y":0},{"x":1567024920000,"y":0},{"x":1567024980000,"y":0},{"x":1567025040000,"y":0},{"x":1567025100000,"y":0},{"x":1567025160000,"y":0},{"x":1567025220000,"y":0},{"x":1567025280000,"y":0},{"x":1567025340000,"y":0},{"x":1567025400000,"y":0},{"x":1567025460000,"y":0},{"x":1567025520000,"y":0},{"x":1567025580000,"y":0},{"x":1567025640000,"y":0},{"x":1567025700000,"y":0},{"x":1567025760000,"y":0},{"x":1567025820000,"y":0},{"x":1567025880000,"y":0},{"x":1567025940000,"y":0},{"x":1567026000000,"y":0},{"x":1567026060000,"y":0},{"x":1567026120000,"y":0},{"x":1567026180000,"y":0},{"x":1567026240000,"y":0},{"x":1567026300000,"y":0},{"x":1567026360000,"y":0},{"x":1567026420000,"y":0},{"x":1567026480000,"y":0},{"x":1567026540000,"y":0},{"x":1567026600000,"y":0},{"x":1567026660000,"y":0},{"x":1567026720000,"y":0},{"x":1567026780000,"y":0},{"x":1567026840000,"y":0},{"x":1567026900000,"y":0},{"x":1567026960000,"y":0},{"x":1567027020000,"y":0},{"x":1567027080000,"y":0},{"x":1567027140000,"y":0},{"x":1567027200000,"y":0.06},{"x":1567027260000,"y":0},{"x":1567027320000,"y":0},{"x":1567027380000,"y":0},{"x":1567027440000,"y":0},{"x":1567027500000,"y":0},{"x":1567027560000,"y":0},{"x":1567027620000,"y":0},{"x":1567027680000,"y":0},{"x":1567027740000,"y":0},{"x":1567027800000,"y":0},{"x":1567027860000,"y":0},{"x":1567027920000,"y":0},{"x":1567027980000,"y":0},{"x":1567028040000,"y":0},{"x":1567028100000,"y":0},{"x":1567028160000,"y":0},{"x":1567028220000,"y":0},{"x":1567028280000,"y":0},{"x":1567028340000,"y":0},{"x":1567028400000,"y":0},{"x":1567028460000,"y":0},{"x":1567028520000,"y":0},{"x":1567028580000,"y":0},{"x":1567028640000,"y":0},{"x":1567028700000,"y":0},{"x":1567028760000,"y":0},{"x":1567028820000,"y":0.01},{"x":1567028880000,"y":0},{"x":1567028940000,"y":0},{"x":1567029000000,"y":0},{"x":1567029060000,"y":0},{"x":1567029120000,"y":0},{"x":1567029180000,"y":0},{"x":1567029240000,"y":0},{"x":1567029300000,"y":0},{"x":1567029360000,"y":0},{"x":1567029420000,"y":0},{"x":1567029480000,"y":0},{"x":1567029540000,"y":0},{"x":1567029600000,"y":0},{"x":1567029660000,"y":0},{"x":1567029720000,"y":0},{"x":1567029780000,"y":0},{"x":1567029840000,"y":0},{"x":1567029900000,"y":0},{"x":1567029960000,"y":0},{"x":1567030020000,"y":0},{"x":1567030080000,"y":0},{"x":1567030140000,"y":0},{"x":1567030200000,"y":0},{"x":1567030260000,"y":0},{"x":1567030320000,"y":0},{"x":1567030380000,"y":0},{"x":1567030440000,"y":0},{"x":1567030500000,"y":0},{"x":1567030560000,"y":0},{"x":1567030620000,"y":0},{"x":1567030680000,"y":0},{"x":1567030740000,"y":0},{"x":1567030800000,"y":0},{"x":1567030860000,"y":0},{"x":1567030920000,"y":0.84},{"x":1567030980000,"y":0},{"x":1567031040000,"y":0},{"x":1567031100000,"y":0},{"x":1567031160000,"y":0},{"x":1567031220000,"y":0},{"x":1567031280000,"y":0},{"x":1567031340000,"y":0},{"x":1567031400000,"y":0},{"x":1567031460000,"y":0},{"x":1567031520000,"y":0},{"x":1567031580000,"y":0},{"x":1567031640000,"y":0},{"x":1567031700000,"y":0},{"x":1567031760000,"y":0},{"x":1567031820000,"y":0},{"x":1567031880000,"y":0},{"x":1567031940000,"y":0},{"x":1567032000000,"y":0},{"x":1567032060000,"y":0},{"x":1567032120000,"y":0},{"x":1567032180000,"y":0},{"x":1567032240000,"y":0},{"x":1567032300000,"y":0},{"x":1567032360000,"y":0},{"x":1567032420000,"y":0},{"x":1567032480000,"y":0},{"x":1567032540000,"y":0},{"x":1567032600000,"y":0},{"x":1567032660000,"y":0},{"x":1567032720000,"y":0},{"x":1567032780000,"y":0},{"x":1567032840000,"y":0},{"x":1567032900000,"y":0},{"x":1567032960000,"y":0},{"x":1567033020000,"y":0},{"x":1567033080000,"y":0},{"x":1567033140000,"y":0},{"x":1567033200000,"y":0},{"x":1567033260000,"y":0},{"x":1567033320000,"y":0},{"x":1567033380000,"y":0},{"x":1567033440000,"y":0},{"x":1567033500000,"y":0},{"x":1567033560000,"y":0.04},{"x":1567033620000,"y":0},{"x":1567033680000,"y":0},{"x":1567033740000,"y":0},{"x":1567033800000,"y":0},{"x":1567033860000,"y":0},{"x":1567033920000,"y":0},{"x":1567033980000,"y":0},{"x":1567034040000,"y":0},{"x":1567034100000,"y":0},{"x":1567034160000,"y":0},{"x":1567034220000,"y":0},{"x":1567034280000,"y":0},{"x":1567034340000,"y":0},{"x":1567034400000,"y":0},{"x":1567034460000,"y":0},{"x":1567034520000,"y":0},{"x":1567034580000,"y":0},{"x":1567034640000,"y":0},{"x":1567034700000,"y":0},{"x":1567034760000,"y":0},{"x":1567034820000,"y":0},{"x":1567034880000,"y":0},{"x":1567034940000,"y":0},{"x":1567035000000,"y":0},{"x":1567035060000,"y":0},{"x":1567035120000,"y":0},{"x":1567035180000,"y":0},{"x":1567035240000,"y":0},{"x":1567035300000,"y":0},{"x":1567035360000,"y":0},{"x":1567035420000,"y":0},{"x":1567035480000,"y":0},{"x":1567035540000,"y":0},{"x":1567035600000,"y":0},{"x":1567035660000,"y":0},{"x":1567035720000,"y":0},{"x":1567035780000,"y":0},{"x":1567035840000,"y":0},{"x":1567035900000,"y":0},{"x":1567035960000,"y":0},{"x":1567036020000,"y":0},{"x":1567036080000,"y":0},{"x":1567036140000,"y":0},{"x":1567036200000,"y":0},{"x":1567036260000,"y":0},{"x":1567036320000,"y":0},{"x":1567036380000,"y":0},{"x":1567036440000,"y":0},{"x":1567036500000,"y":0},{"x":1567036560000,"y":0},{"x":1567036620000,"y":0},{"x":1567036680000,"y":0},{"x":1567036740000,"y":0},{"x":1567036800000,"y":0},{"x":1567036860000,"y":0},{"x":1567036920000,"y":0},{"x":1567036980000,"y":0},{"x":1567037040000,"y":0},{"x":1567037100000,"y":0},{"x":1567037160000,"y":0},{"x":1567037220000,"y":0},{"x":1567037280000,"y":0},{"x":1567037340000,"y":0},{"x":1567037400000,"y":0},{"x":1567037460000,"y":0},{"x":1567037520000,"y":0},{"x":1567037580000,"y":0},{"x":1567037640000,"y":0},{"x":1567037700000,"y":0},{"x":1567037760000,"y":0},{"x":1567037820000,"y":0},{"x":1567037880000,"y":0},{"x":1567037940000,"y":0},{"x":1567038000000,"y":0},{"x":1567038060000,"y":0},{"x":1567038120000,"y":0},{"x":1567038180000,"y":0},{"x":1567038240000,"y":0},{"x":1567038300000,"y":0},{"x":1567038360000,"y":0},{"x":1567038420000,"y":0},{"x":1567038480000,"y":0},{"x":1567038540000,"y":0},{"x":1567038600000,"y":0},{"x":1567038660000,"y":0},{"x":1567038720000,"y":0},{"x":1567038780000,"y":0},{"x":1567038840000,"y":0},{"x":1567038900000,"y":0},{"x":1567038960000,"y":0},{"x":1567039020000,"y":0},{"x":1567039080000,"y":0},{"x":1567039140000,"y":0},{"x":1567039200000,"y":0},{"x":1567039260000,"y":0},{"x":1567039320000,"y":0},{"x":1567039380000,"y":0},{"x":1567039440000,"y":0},{"x":1567039500000,"y":0},{"x":1567039560000,"y":0},{"x":1567039620000,"y":0},{"x":1567039680000,"y":0},{"x":1567039740000,"y":0},{"x":1567039800000,"y":0},{"x":1567039860000,"y":0},{"x":1567039920000,"y":0},{"x":1567039980000,"y":0},{"x":1567040040000,"y":0},{"x":1567040100000,"y":0},{"x":1567040160000,"y":0},{"x":1567040220000,"y":0},{"x":1567040280000,"y":0},{"x":1567040340000,"y":0},{"x":1567040400000,"y":0},{"x":1567040460000,"y":0},{"x":1567040520000,"y":0},{"x":1567040580000,"y":0},{"x":1567040640000,"y":0},{"x":1567040700000,"y":0},{"x":1567040760000,"y":0},{"x":1567040820000,"y":0},{"x":1567040880000,"y":0.02},{"x":1567040940000,"y":0},{"x":1567041000000,"y":0},{"x":1567041060000,"y":0},{"x":1567041120000,"y":0},{"x":1567041180000,"y":0.25},{"x":1567041240000,"y":16.26},{"x":1567041300000,"y":3.85},{"x":1567041360000,"y":17.1},{"x":1567041420000,"y":17.51},{"x":1567041480000,"y":0},{"x":1567041540000,"y":0.12},{"x":1567041600000,"y":0},{"x":1567041660000,"y":0},{"x":1567041720000,"y":0},{"x":1567041780000,"y":0},{"x":1567041840000,"y":0},{"x":1567041900000,"y":0},{"x":1567041960000,"y":0},{"x":1567042020000,"y":0},{"x":1567042080000,"y":0},{"x":1567042140000,"y":0},{"x":1567042200000,"y":0},{"x":1567042260000,"y":0},{"x":1567042320000,"y":0},{"x":1567042380000,"y":0},{"x":1567042440000,"y":0.94},{"x":1567042500000,"y":0.38},{"x":1567042560000,"y":0},{"x":1567042620000,"y":0},{"x":1567042680000,"y":0},{"x":1567042740000,"y":0},{"x":1567042800000,"y":0.12},{"x":1567042860000,"y":0},{"x":1567042920000,"y":0},{"x":1567042980000,"y":0},{"x":1567043040000,"y":0},{"x":1567043100000,"y":0},{"x":1567043160000,"y":0},{"x":1567043220000,"y":0},{"x":1567043280000,"y":0},{"x":1567043340000,"y":0},{"x":1567043400000,"y":0},{"x":1567043460000,"y":0},{"x":1567043520000,"y":0},{"x":1567043580000,"y":0},{"x":1567043640000,"y":0},{"x":1567043700000,"y":0},{"x":1567043760000,"y":0},{"x":1567043820000,"y":0},{"x":1567043880000,"y":0},{"x":1567043940000,"y":0},{"x":1567044000000,"y":0},{"x":1567044060000,"y":0},{"x":1567044120000,"y":0},{"x":1567044180000,"y":0},{"x":1567044240000,"y":0},{"x":1567044300000,"y":0},{"x":1567044360000,"y":0},{"x":1567044420000,"y":0},{"x":1567044480000,"y":0},{"x":1567044540000,"y":0},{"x":1567044600000,"y":0},{"x":1567044660000,"y":0},{"x":1567044720000,"y":0},{"x":1567044780000,"y":0},{"x":1567044840000,"y":0},{"x":1567044900000,"y":0},{"x":1567044960000,"y":0},{"x":1567045020000,"y":0},{"x":1567045080000,"y":0},{"x":1567045140000,"y":0},{"x":1567045200000,"y":0},{"x":1567045260000,"y":0},{"x":1567045320000,"y":0},{"x":1567045380000,"y":0},{"x":1567045440000,"y":0},{"x":1567045500000,"y":0},{"x":1567045560000,"y":0},{"x":1567045620000,"y":0},{"x":1567045680000,"y":0},{"x":1567045740000,"y":0},{"x":1567045800000,"y":0},{"x":1567045860000,"y":0},{"x":1567045920000,"y":0},{"x":1567045980000,"y":0},{"x":1567046040000,"y":0},{"x":1567046100000,"y":0},{"x":1567046160000,"y":0},{"x":1567046220000,"y":0},{"x":1567046280000,"y":0},{"x":1567046340000,"y":0},{"x":1567046400000,"y":0},{"x":1567046460000,"y":0},{"x":1567046520000,"y":0},{"x":1567046580000,"y":0},{"x":1567046640000,"y":0},{"x":1567046700000,"y":0},{"x":1567046760000,"y":0},{"x":1567046820000,"y":0},{"x":1567046880000,"y":0},{"x":1567046940000,"y":0},{"x":1567047000000,"y":0},{"x":1567047060000,"y":0},{"x":1567047120000,"y":0},{"x":1567047180000,"y":0},{"x":1567047240000,"y":0},{"x":1567047300000,"y":0},{"x":1567047360000,"y":0.02},{"x":1567047420000,"y":0},{"x":1567047480000,"y":0},{"x":1567047540000,"y":0},{"x":1567047600000,"y":0},{"x":1567047660000,"y":0},{"x":1567047720000,"y":0.11},{"x":1567047780000,"y":0.21},{"x":1567047840000,"y":0.64},{"x":1567047900000,"y":0},{"x":1567047960000,"y":1.78},{"x":1567048020000,"y":0},{"x":1567048080000,"y":0},{"x":1567048140000,"y":0},{"x":1567048200000,"y":0},{"x":1567048260000,"y":0},{"x":1567048320000,"y":0},{"x":1567048380000,"y":0},{"x":1567048440000,"y":0},{"x":1567048500000,"y":0},{"x":1567048560000,"y":0},{"x":1567048620000,"y":0},{"x":1567048680000,"y":0},{"x":1567048740000,"y":0},{"x":1567048800000,"y":0},{"x":1567048860000,"y":0},{"x":1567048920000,"y":0},{"x":1567048980000,"y":0},{"x":1567049040000,"y":0},{"x":1567049100000,"y":0},{"x":1567049160000,"y":0},{"x":1567049220000,"y":0},{"x":1567049280000,"y":0},{"x":1567049340000,"y":0},{"x":1567049400000,"y":0},{"x":1567049460000,"y":0},{"x":1567049520000,"y":0},{"x":1567049580000,"y":0},{"x":1567049640000,"y":0},{"x":1567049700000,"y":0},{"x":1567049760000,"y":0},{"x":1567049820000,"y":0},{"x":1567049880000,"y":0},{"x":1567049940000,"y":2.01},{"x":1567050000000,"y":0.64},{"x":1567050060000,"y":0},{"x":1567050120000,"y":0},{"x":1567050180000,"y":0},{"x":1567050240000,"y":0},{"x":1567050300000,"y":0},{"x":1567050360000,"y":0},{"x":1567050420000,"y":0},{"x":1567050480000,"y":0},{"x":1567050540000,"y":0},{"x":1567050600000,"y":0},{"x":1567050660000,"y":0.01},{"x":1567050720000,"y":0},{"x":1567050780000,"y":0},{"x":1567050840000,"y":0},{"x":1567050900000,"y":0},{"x":1567050960000,"y":0},{"x":1567051020000,"y":0},{"x":1567051080000,"y":0},{"x":1567051140000,"y":0},{"x":1567051200000,"y":0},{"x":1567051260000,"y":0},{"x":1567051320000,"y":0},{"x":1567051380000,"y":0},{"x":1567051440000,"y":0},{"x":1567051500000,"y":0},{"x":1567051560000,"y":0.01},{"x":1567051620000,"y":0},{"x":1567051680000,"y":0},{"x":1567051740000,"y":0},{"x":1567051800000,"y":0},{"x":1567051860000,"y":0},{"x":1567051920000,"y":0},{"x":1567051980000,"y":0},{"x":1567052040000,"y":0},{"x":1567052100000,"y":0},{"x":1567052160000,"y":0},{"x":1567052220000,"y":0},{"x":1567052280000,"y":0},{"x":1567052340000,"y":0},{"x":1567052400000,"y":0},{"x":1567052460000,"y":0},{"x":1567052520000,"y":0},{"x":1567052580000,"y":0},{"x":1567052640000,"y":0},{"x":1567052700000,"y":0},{"x":1567052760000,"y":0},{"x":1567052820000,"y":0},{"x":1567052880000,"y":0},{"x":1567052940000,"y":0},{"x":1567053000000,"y":0},{"x":1567053060000,"y":0},{"x":1567053120000,"y":0},{"x":1567053180000,"y":0},{"x":1567053240000,"y":0},{"x":1567053300000,"y":0},{"x":1567053360000,"y":0},{"x":1567053420000,"y":0},{"x":1567053480000,"y":0},{"x":1567053540000,"y":0},{"x":1567053600000,"y":0},{"x":1567053660000,"y":0},{"x":1567053720000,"y":0},{"x":1567053780000,"y":0},{"x":1567053840000,"y":0},{"x":1567053900000,"y":0},{"x":1567053960000,"y":0},{"x":1567054020000,"y":0},{"x":1567054080000,"y":0},{"x":1567054140000,"y":0},{"x":1567054200000,"y":0},{"x":1567054260000,"y":0},{"x":1567054320000,"y":0},{"x":1567054380000,"y":0},{"x":1567054440000,"y":0},{"x":1567054500000,"y":0},{"x":1567054560000,"y":0},{"x":1567054620000,"y":0},{"x":1567054680000,"y":0},{"x":1567054740000,"y":0},{"x":1567054800000,"y":0},{"x":1567054860000,"y":0},{"x":1567054920000,"y":0.01},{"x":1567054980000,"y":0},{"x":1567055040000,"y":0},{"x":1567055100000,"y":0},{"x":1567055160000,"y":0},{"x":1567055220000,"y":0},{"x":1567055280000,"y":0},{"x":1567055340000,"y":0},{"x":1567055400000,"y":0},{"x":1567055460000,"y":0},{"x":1567055520000,"y":0},{"x":1567055580000,"y":0.02},{"x":1567055640000,"y":0},{"x":1567055700000,"y":0},{"x":1567055760000,"y":0},{"x":1567055820000,"y":0},{"x":1567055880000,"y":0},{"x":1567055940000,"y":0},{"x":1567056000000,"y":0},{"x":1567056060000,"y":0},{"x":1567056120000,"y":0},{"x":1567056180000,"y":0},{"x":1567056240000,"y":0},{"x":1567056300000,"y":0},{"x":1567056360000,"y":0},{"x":1567056420000,"y":0},{"x":1567056480000,"y":0},{"x":1567056540000,"y":0},{"x":1567056600000,"y":0},{"x":1567056660000,"y":0},{"x":1567056720000,"y":0},{"x":1567056780000,"y":0},{"x":1567056840000,"y":0},{"x":1567056900000,"y":0},{"x":1567056960000,"y":0},{"x":1567057020000,"y":0},{"x":1567057080000,"y":0},{"x":1567057140000,"y":0},{"x":1567057200000,"y":0},{"x":1567057260000,"y":0},{"x":1567057320000,"y":0},{"x":1567057380000,"y":0},{"x":1567057440000,"y":0},{"x":1567057500000,"y":0},{"x":1567057560000,"y":0},{"x":1567057620000,"y":0},{"x":1567057680000,"y":0},{"x":1567057740000,"y":0},{"x":1567057800000,"y":0},{"x":1567057860000,"y":0},{"x":1567057920000,"y":0},{"x":1567057980000,"y":0},{"x":1567058040000,"y":0},{"x":1567058100000,"y":0},{"x":1567058160000,"y":0},{"x":1567058220000,"y":0},{"x":1567058280000,"y":0},{"x":1567058340000,"y":0},{"x":1567058400000,"y":0},{"x":1567058460000,"y":0},{"x":1567058520000,"y":0},{"x":1567058580000,"y":0},{"x":1567058640000,"y":0},{"x":1567058700000,"y":0},{"x":1567058760000,"y":0},{"x":1567058820000,"y":0},{"x":1567058880000,"y":0},{"x":1567058940000,"y":0},{"x":1567059000000,"y":0},{"x":1567059060000,"y":0},{"x":1567059120000,"y":0},{"x":1567059180000,"y":0},{"x":1567059240000,"y":0},{"x":1567059300000,"y":0},{"x":1567059360000,"y":0},{"x":1567059420000,"y":0},{"x":1567059480000,"y":0},{"x":1567059540000,"y":0},{"x":1567059600000,"y":0},{"x":1567059660000,"y":0},{"x":1567059720000,"y":0},{"x":1567059780000,"y":0},{"x":1567059840000,"y":0.02},{"x":1567059900000,"y":0},{"x":1567059960000,"y":0},{"x":1567060020000,"y":0},{"x":1567060080000,"y":0},{"x":1567060140000,"y":0},{"x":1567060200000,"y":0},{"x":1567060260000,"y":0},{"x":1567060320000,"y":0},{"x":1567060380000,"y":0},{"x":1567060440000,"y":0},{"x":1567060500000,"y":0},{"x":1567060560000,"y":0},{"x":1567060620000,"y":0},{"x":1567060680000,"y":0},{"x":1567060740000,"y":0},{"x":1567060800000,"y":0},{"x":1567060860000,"y":0},{"x":1567060920000,"y":0},{"x":1567060980000,"y":0},{"x":1567061040000,"y":0},{"x":1567061100000,"y":0},{"x":1567061160000,"y":0},{"x":1567061220000,"y":0},{"x":1567061280000,"y":0},{"x":1567061340000,"y":0},{"x":1567061400000,"y":0},{"x":1567061460000,"y":0},{"x":1567061520000,"y":0},{"x":1567061580000,"y":0.02},{"x":1567061640000,"y":0},{"x":1567061700000,"y":0},{"x":1567061760000,"y":0.02},{"x":1567061820000,"y":0},{"x":1567061880000,"y":0},{"x":1567061940000,"y":0},{"x":1567062000000,"y":0},{"x":1567062060000,"y":0},{"x":1567062120000,"y":0},{"x":1567062180000,"y":0},{"x":1567062240000,"y":0},{"x":1567062300000,"y":0},{"x":1567062360000,"y":0},{"x":1567062420000,"y":0},{"x":1567062480000,"y":0},{"x":1567062540000,"y":0},{"x":1567062600000,"y":0},{"x":1567062660000,"y":0},{"x":1567062720000,"y":0},{"x":1567062780000,"y":0},{"x":1567062840000,"y":0},{"x":1567062900000,"y":0},{"x":1567062960000,"y":0},{"x":1567063020000,"y":0},{"x":1567063080000,"y":0},{"x":1567063140000,"y":0.02},{"x":1567063200000,"y":0},{"x":1567063260000,"y":0},{"x":1567063320000,"y":0},{"x":1567063380000,"y":0},{"x":1567063440000,"y":0},{"x":1567063500000,"y":0},{"x":1567063560000,"y":0},{"x":1567063620000,"y":0},{"x":1567063680000,"y":0},{"x":1567063740000,"y":0},{"x":1567063800000,"y":0},{"x":1567063860000,"y":0},{"x":1567063920000,"y":0},{"x":1567063980000,"y":0},{"x":1567064040000,"y":0},{"x":1567064100000,"y":0},{"x":1567064160000,"y":0},{"x":1567064220000,"y":0},{"x":1567064280000,"y":0},{"x":1567064340000,"y":0},{"x":1567064400000,"y":0},{"x":1567064460000,"y":0},{"x":1567064520000,"y":0},{"x":1567064580000,"y":0},{"x":1567064640000,"y":0},{"x":1567064700000,"y":0},{"x":1567064760000,"y":0},{"x":1567064820000,"y":0},{"x":1567064880000,"y":0},{"x":1567064940000,"y":0},{"x":1567065000000,"y":0},{"x":1567065060000,"y":0},{"x":1567065120000,"y":0},{"x":1567065180000,"y":0},{"x":1567065240000,"y":0},{"x":1567065300000,"y":0},{"x":1567065360000,"y":0},{"x":1567065420000,"y":0},{"x":1567065480000,"y":0},{"x":1567065540000,"y":0},{"x":1567065600000,"y":0},{"x":1567065660000,"y":0},{"x":1567065720000,"y":0},{"x":1567065780000,"y":0},{"x":1567065840000,"y":0},{"x":1567065900000,"y":0},{"x":1567065960000,"y":0},{"x":1567066020000,"y":0},{"x":1567066080000,"y":0},{"x":1567066140000,"y":0},{"x":1567066200000,"y":0},{"x":1567066260000,"y":0},{"x":1567066320000,"y":0},{"x":1567066380000,"y":0},{"x":1567066440000,"y":0},{"x":1567066500000,"y":0},{"x":1567066560000,"y":0},{"x":1567066620000,"y":0},{"x":1567066680000,"y":0},{"x":1567066740000,"y":0},{"x":1567066800000,"y":0},{"x":1567066860000,"y":0},{"x":1567066920000,"y":0},{"x":1567066980000,"y":0},{"x":1567067040000,"y":0},{"x":1567067100000,"y":0},{"x":1567067160000,"y":0},{"x":1567067220000,"y":0},{"x":1567067280000,"y":0},{"x":1567067340000,"y":0},{"x":1567067400000,"y":0},{"x":1567067460000,"y":0},{"x":1567067520000,"y":0},{"x":1567067580000,"y":0},{"x":1567067640000,"y":0},{"x":1567067700000,"y":0},{"x":1567067760000,"y":0},{"x":1567067820000,"y":0},{"x":1567067880000,"y":0},{"x":1567067940000,"y":0},{"x":1567068000000,"y":0},{"x":1567068060000,"y":0},{"x":1567068120000,"y":0},{"x":1567068180000,"y":0},{"x":1567068240000,"y":0},{"x":1567068300000,"y":0},{"x":1567068360000,"y":0},{"x":1567068420000,"y":0},{"x":1567068480000,"y":0},{"x":1567068540000,"y":0},{"x":1567068600000,"y":0},{"x":1567068660000,"y":0},{"x":1567068720000,"y":0},{"x":1567068780000,"y":0},{"x":1567068840000,"y":0},{"x":1567068900000,"y":0},{"x":1567068960000,"y":0},{"x":1567069020000,"y":0},{"x":1567069080000,"y":0},{"x":1567069140000,"y":0},{"x":1567069200000,"y":0},{"x":1567069260000,"y":0},{"x":1567069320000,"y":0},{"x":1567069380000,"y":0},{"x":1567069440000,"y":0},{"x":1567069500000,"y":0},{"x":1567069560000,"y":0},{"x":1567069620000,"y":0},{"x":1567069680000,"y":0},{"x":1567069740000,"y":0},{"x":1567069800000,"y":0},{"x":1567069860000,"y":0},{"x":1567069920000,"y":0},{"x":1567069980000,"y":0},{"x":1567070040000,"y":0},{"x":1567070100000,"y":0},{"x":1567070160000,"y":0},{"x":1567070220000,"y":0},{"x":1567070280000,"y":0},{"x":1567070340000,"y":0},{"x":1567070400000,"y":0},{"x":1567070460000,"y":0},{"x":1567070520000,"y":0},{"x":1567070580000,"y":0},{"x":1567070640000,"y":0},{"x":1567070700000,"y":0},{"x":1567070760000,"y":0},{"x":1567070820000,"y":0},{"x":1567070880000,"y":0},{"x":1567070940000,"y":0},{"x":1567071000000,"y":0},{"x":1567071060000,"y":0},{"x":1567071120000,"y":0},{"x":1567071180000,"y":0.01},{"x":1567071240000,"y":0},{"x":1567071300000,"y":0},{"x":1567071360000,"y":0},{"x":1567071420000,"y":0},{"x":1567071480000,"y":0},{"x":1567071540000,"y":0},{"x":1567071600000,"y":0.01},{"x":1567071660000,"y":0},{"x":1567071720000,"y":0},{"x":1567071780000,"y":0},{"x":1567071840000,"y":0},{"x":1567071900000,"y":0},{"x":1567071960000,"y":0},{"x":1567072020000,"y":0},{"x":1567072080000,"y":0},{"x":1567072140000,"y":0.01},{"x":1567072200000,"y":0},{"x":1567072260000,"y":0},{"x":1567072320000,"y":0},{"x":1567072380000,"y":0},{"x":1567072440000,"y":0},{"x":1567072500000,"y":0.01},{"x":1567072560000,"y":0},{"x":1567072620000,"y":0},{"x":1567072680000,"y":0},{"x":1567072740000,"y":0},{"x":1567072800000,"y":0},{"x":1567072860000,"y":0},{"x":1567072920000,"y":0},{"x":1567072980000,"y":0},{"x":1567073040000,"y":0},{"x":1567073100000,"y":0.01},{"x":1567073160000,"y":0},{"x":1567073220000,"y":0},{"x":1567073280000,"y":0},{"x":1567073340000,"y":0},{"x":1567073400000,"y":0},{"x":1567073460000,"y":0},{"x":1567073520000,"y":0},{"x":1567073580000,"y":0},{"x":1567073640000,"y":0},{"x":1567073700000,"y":0},{"x":1567073760000,"y":0},{"x":1567073820000,"y":0},{"x":1567073880000,"y":0},{"x":1567073940000,"y":0},{"x":1567074000000,"y":0},{"x":1567074060000,"y":0},{"x":1567074120000,"y":0},{"x":1567074180000,"y":0},{"x":1567074240000,"y":0},{"x":1567074300000,"y":0},{"x":1567074360000,"y":0},{"x":1567074420000,"y":0},{"x":1567074480000,"y":0},{"x":1567074540000,"y":0},{"x":1567074600000,"y":0},{"x":1567074660000,"y":0},{"x":1567074720000,"y":0},{"x":1567074780000,"y":0},{"x":1567074840000,"y":0},{"x":1567074900000,"y":0},{"x":1567074960000,"y":0},{"x":1567075020000,"y":0},{"x":1567075080000,"y":0},{"x":1567075140000,"y":0},{"x":1567075200000,"y":0},{"x":1567075260000,"y":0},{"x":1567075320000,"y":0},{"x":1567075380000,"y":0},{"x":1567075440000,"y":0},{"x":1567075500000,"y":0},{"x":1567075560000,"y":0},{"x":1567075620000,"y":0},{"x":1567075680000,"y":0},{"x":1567075740000,"y":0},{"x":1567075800000,"y":0},{"x":1567075860000,"y":0},{"x":1567075920000,"y":0},{"x":1567075980000,"y":0},{"x":1567076040000,"y":0},{"x":1567076100000,"y":0},{"x":1567076160000,"y":0},{"x":1567076220000,"y":0},{"x":1567076280000,"y":0},{"x":1567076340000,"y":0},{"x":1567076400000,"y":0},{"x":1567076460000,"y":0},{"x":1567076520000,"y":0},{"x":1567076580000,"y":0},{"x":1567076640000,"y":0},{"x":1567076700000,"y":0},{"x":1567076760000,"y":0},{"x":1567076820000,"y":0},{"x":1567076880000,"y":0},{"x":1567076940000,"y":0},{"x":1567077000000,"y":0},{"x":1567077060000,"y":0},{"x":1567077120000,"y":0},{"x":1567077180000,"y":0},{"x":1567077240000,"y":0},{"x":1567077300000,"y":0},{"x":1567077360000,"y":0},{"x":1567077420000,"y":0},{"x":1567077480000,"y":0},{"x":1567077540000,"y":0},{"x":1567077600000,"y":0},{"x":1567077660000,"y":0},{"x":1567077720000,"y":0},{"x":1567077780000,"y":0},{"x":1567077840000,"y":0},{"x":1567077900000,"y":0},{"x":1567077960000,"y":0},{"x":1567078020000,"y":0},{"x":1567078080000,"y":0},{"x":1567078140000,"y":0},{"x":1567078200000,"y":0},{"x":1567078260000,"y":0},{"x":1567078320000,"y":0},{"x":1567078380000,"y":0},{"x":1567078440000,"y":0},{"x":1567078500000,"y":0},{"x":1567078560000,"y":0},{"x":1567078620000,"y":0},{"x":1567078680000,"y":0},{"x":1567078740000,"y":0},{"x":1567078800000,"y":0},{"x":1567078860000,"y":0},{"x":1567078920000,"y":0},{"x":1567078980000,"y":0},{"x":1567079040000,"y":0},{"x":1567079100000,"y":0},{"x":1567079160000,"y":0},{"x":1567079220000,"y":0},{"x":1567079280000,"y":0},{"x":1567079340000,"y":0},{"x":1567079400000,"y":0},{"x":1567079460000,"y":0},{"x":1567079520000,"y":0},{"x":1567079580000,"y":0},{"x":1567079640000,"y":0},{"x":1567079700000,"y":0},{"x":1567079760000,"y":0},{"x":1567079820000,"y":0},{"x":1567079880000,"y":0},{"x":1567079940000,"y":0},{"x":1567080000000,"y":0},{"x":1567080060000,"y":0},{"x":1567080120000,"y":0},{"x":1567080180000,"y":0},{"x":1567080240000,"y":0},{"x":1567080300000,"y":0},{"x":1567080360000,"y":0},{"x":1567080420000,"y":0},{"x":1567080480000,"y":0},{"x":1567080540000,"y":0},{"x":1567080600000,"y":0},{"x":1567080660000,"y":0},{"x":1567080720000,"y":0},{"x":1567080780000,"y":0},{"x":1567080840000,"y":0},{"x":1567080900000,"y":0},{"x":1567080960000,"y":0},{"x":1567081020000,"y":0},{"x":1567081080000,"y":0},{"x":1567081140000,"y":0},{"x":1567081200000,"y":0},{"x":1567081260000,"y":0},{"x":1567081320000,"y":0},{"x":1567081380000,"y":0},{"x":1567081440000,"y":0},{"x":1567081500000,"y":0},{"x":1567081560000,"y":0},{"x":1567081620000,"y":0},{"x":1567081680000,"y":0},{"x":1567081740000,"y":0},{"x":1567081800000,"y":0},{"x":1567081860000,"y":0},{"x":1567081920000,"y":0},{"x":1567081980000,"y":0},{"x":1567082040000,"y":0},{"x":1567082100000,"y":0},{"x":1567082160000,"y":0},{"x":1567082220000,"y":0},{"x":1567082280000,"y":0},{"x":1567082340000,"y":0},{"x":1567082400000,"y":0},{"x":1567082460000,"y":0},{"x":1567082520000,"y":0},{"x":1567082580000,"y":0},{"x":1567082640000,"y":0},{"x":1567082700000,"y":0},{"x":1567082760000,"y":0},{"x":1567082820000,"y":0},{"x":1567082880000,"y":0},{"x":1567082940000,"y":0},{"x":1567083000000,"y":0},{"x":1567083060000,"y":0},{"x":1567083120000,"y":0},{"x":1567083180000,"y":0},{"x":1567083240000,"y":0},{"x":1567083300000,"y":0},{"x":1567083360000,"y":0},{"x":1567083420000,"y":0},{"x":1567083480000,"y":0},{"x":1567083540000,"y":0},{"x":1567083600000,"y":0},{"x":1567083660000,"y":0},{"x":1567083720000,"y":0},{"x":1567083780000,"y":0},{"x":1567083840000,"y":0},{"x":1567083900000,"y":0},{"x":1567083960000,"y":0},{"x":1567084020000,"y":0},{"x":1567084080000,"y":0},{"x":1567084140000,"y":0},{"x":1567084200000,"y":0},{"x":1567084260000,"y":0},{"x":1567084320000,"y":0},{"x":1567084380000,"y":0},{"x":1567084440000,"y":0},{"x":1567084500000,"y":0},{"x":1567084560000,"y":0},{"x":1567084620000,"y":0},{"x":1567084680000,"y":0},{"x":1567084740000,"y":0},{"x":1567084800000,"y":0},{"x":1567084860000,"y":0},{"x":1567084920000,"y":0},{"x":1567084980000,"y":0},{"x":1567085040000,"y":0},{"x":1567085100000,"y":0},{"x":1567085160000,"y":0},{"x":1567085220000,"y":0},{"x":1567085280000,"y":0},{"x":1567085340000,"y":0},{"x":1567085400000,"y":0},{"x":1567085460000,"y":0},{"x":1567085520000,"y":0},{"x":1567085580000,"y":0},{"x":1567085640000,"y":0},{"x":1567085700000,"y":0},{"x":1567085760000,"y":0},{"x":1567085820000,"y":0},{"x":1567085880000,"y":0},{"x":1567085940000,"y":0},{"x":1567086000000,"y":0},{"x":1567086060000,"y":0},{"x":1567086120000,"y":0},{"x":1567086180000,"y":0},{"x":1567086240000,"y":0},{"x":1567086300000,"y":0},{"x":1567086360000,"y":0},{"x":1567086420000,"y":0},{"x":1567086480000,"y":0},{"x":1567086540000,"y":0},{"x":1567086600000,"y":0},{"x":1567086660000,"y":0},{"x":1567086720000,"y":0},{"x":1567086780000,"y":0},{"x":1567086840000,"y":0},{"x":1567086900000,"y":0},{"x":1567086960000,"y":0},{"x":1567087020000,"y":0},{"x":1567087080000,"y":0},{"x":1567087140000,"y":0},{"x":1567087200000,"y":0},{"x":1567087260000,"y":0},{"x":1567087320000,"y":0},{"x":1567087380000,"y":0},{"x":1567087440000,"y":0},{"x":1567087500000,"y":0},{"x":1567087560000,"y":0},{"x":1567087620000,"y":0},{"x":1567087680000,"y":0},{"x":1567087740000,"y":0},{"x":1567087800000,"y":0},{"x":1567087860000,"y":0},{"x":1567087920000,"y":0},{"x":1567087980000,"y":0},{"x":1567088040000,"y":0},{"x":1567088100000,"y":0},{"x":1567088160000,"y":0},{"x":1567088220000,"y":0},{"x":1567088280000,"y":0},{"x":1567088340000,"y":0},{"x":1567088400000,"y":0},{"x":1567088460000,"y":0},{"x":1567088520000,"y":0},{"x":1567088580000,"y":0},{"x":1567088640000,"y":0},{"x":1567088700000,"y":0},{"x":1567088760000,"y":0},{"x":1567088820000,"y":0},{"x":1567088880000,"y":0},{"x":1567088940000,"y":0},{"x":1567089000000,"y":0},{"x":1567089060000,"y":0},{"x":1567089120000,"y":0},{"x":1567089180000,"y":0},{"x":1567089240000,"y":0},{"x":1567089300000,"y":0},{"x":1567089360000,"y":0},{"x":1567089420000,"y":0},{"x":1567089480000,"y":0},{"x":1567089540000,"y":0},{"x":1567089600000,"y":0},{"x":1567089660000,"y":0},{"x":1567089720000,"y":0},{"x":1567089780000,"y":0},{"x":1567089840000,"y":0},{"x":1567089900000,"y":0},{"x":1567089960000,"y":0},{"x":1567090020000,"y":0},{"x":1567090080000,"y":0},{"x":1567090140000,"y":0},{"x":1567090200000,"y":0},{"x":1567090260000,"y":0},{"x":1567090320000,"y":0},{"x":1567090380000,"y":0},{"x":1567090440000,"y":0},{"x":1567090500000,"y":0},{"x":1567090560000,"y":0},{"x":1567090620000,"y":0},{"x":1567090680000,"y":0.83},{"x":1567090740000,"y":0.01},{"x":1567090800000,"y":0},{"x":1567090860000,"y":0},{"x":1567090920000,"y":0},{"x":1567090980000,"y":0},{"x":1567091040000,"y":0},{"x":1567091100000,"y":0},{"x":1567091160000,"y":0},{"x":1567091220000,"y":0},{"x":1567091280000,"y":0},{"x":1567091340000,"y":0},{"x":1567091400000,"y":0},{"x":1567091460000,"y":0},{"x":1567091520000,"y":0},{"x":1567091580000,"y":0},{"x":1567091640000,"y":0},{"x":1567091700000,"y":0},{"x":1567091760000,"y":0},{"x":1567091820000,"y":0},{"x":1567091880000,"y":0},{"x":1567091940000,"y":0},{"x":1567092000000,"y":0},{"x":1567092060000,"y":0},{"x":1567092120000,"y":0},{"x":1567092180000,"y":0},{"x":1567092240000,"y":0},{"x":1567092300000,"y":0},{"x":1567092360000,"y":0},{"x":1567092420000,"y":0},{"x":1567092480000,"y":0},{"x":1567092540000,"y":0},{"x":1567092600000,"y":0},{"x":1567092660000,"y":0},{"x":1567092720000,"y":0},{"x":1567092780000,"y":0},{"x":1567092840000,"y":0},{"x":1567092900000,"y":0},{"x":1567092960000,"y":0},{"x":1567093020000,"y":0},{"x":1567093080000,"y":0.83},{"x":1567093140000,"y":0.84},{"x":1567093200000,"y":0.2},{"x":1567093260000,"y":0.05},{"x":1567093320000,"y":0},{"x":1567093380000,"y":0},{"x":1567093440000,"y":0},{"x":1567093500000,"y":0},{"x":1567093560000,"y":0},{"x":1567093620000,"y":0},{"x":1567093680000,"y":0},{"x":1567093740000,"y":0},{"x":1567093800000,"y":0},{"x":1567093860000,"y":0},{"x":1567093920000,"y":0},{"x":1567093980000,"y":0},{"x":1567094040000,"y":0},{"x":1567094100000,"y":0},{"x":1567094160000,"y":0},{"x":1567094220000,"y":0},{"x":1567094280000,"y":0},{"x":1567094340000,"y":0},{"x":1567094400000,"y":0.01},{"x":1567094460000,"y":0},{"x":1567094520000,"y":0},{"x":1567094580000,"y":0},{"x":1567094640000,"y":0.83},{"x":1567094700000,"y":0.02},{"x":1567094760000,"y":2},{"x":1567094820000,"y":0.01},{"x":1567094880000,"y":0.01},{"x":1567094940000,"y":0},{"x":1567095000000,"y":0},{"x":1567095060000,"y":0},{"x":1567095120000,"y":0},{"x":1567095180000,"y":0},{"x":1567095240000,"y":0},{"x":1567095300000,"y":0.49},{"x":1567095360000,"y":0.02},{"x":1567095420000,"y":0},{"x":1567095480000,"y":0},{"x":1567095540000,"y":0.01},{"x":1567095600000,"y":0},{"x":1567095660000,"y":0},{"x":1567095720000,"y":0},{"x":1567095780000,"y":0},{"x":1567095840000,"y":0},{"x":1567095900000,"y":0},{"x":1567095960000,"y":0},{"x":1567096020000,"y":0},{"x":1567096080000,"y":0.2},{"x":1567096140000,"y":0},{"x":1567096200000,"y":0},{"x":1567096260000,"y":0},{"x":1567096320000,"y":0},{"x":1567096380000,"y":0.01},{"x":1567096440000,"y":0},{"x":1567096500000,"y":0.01},{"x":1567096560000,"y":0},{"x":1567096620000,"y":0},{"x":1567096680000,"y":0},{"x":1567096740000,"y":0},{"x":1567096800000,"y":0},{"x":1567096860000,"y":0},{"x":1567096920000,"y":0},{"x":1567096980000,"y":0},{"x":1567097040000,"y":0},{"x":1567097100000,"y":0.2},{"x":1567097160000,"y":0.18},{"x":1567097220000,"y":0.01},{"x":1567097280000,"y":0},{"x":1567097340000,"y":0},{"x":1567097400000,"y":0},{"x":1567097460000,"y":0.18},{"x":1567097520000,"y":1.24},{"x":1567097580000,"y":74.06},{"x":1567097640000,"y":38.13},{"x":1567097700000,"y":39.47},{"x":1567097760000,"y":0.06},{"x":1567097820000,"y":0},{"x":1567097880000,"y":0.04},{"x":1567097940000,"y":0.03},{"x":1567098000000,"y":0.01},{"x":1567098060000,"y":0.11},{"x":1567098120000,"y":0},{"x":1567098180000,"y":0.13},{"x":1567098240000,"y":0.05},{"x":1567098300000,"y":11.62},{"x":1567098360000,"y":0.82},{"x":1567098420000,"y":1.37},{"x":1567098480000,"y":2.51},{"x":1567098540000,"y":1.17},{"x":1567098600000,"y":0.03},{"x":1567098660000,"y":0.01},{"x":1567098720000,"y":0},{"x":1567098780000,"y":0},{"x":1567098840000,"y":0},{"x":1567098900000,"y":0},{"x":1567098960000,"y":0},{"x":1567099020000,"y":0},{"x":1567099080000,"y":0},{"x":1567099140000,"y":0},{"x":1567099200000,"y":0},{"x":1567099260000,"y":0},{"x":1567099320000,"y":0},{"x":1567099380000,"y":0},{"x":1567099440000,"y":0},{"x":1567099500000,"y":0},{"x":1567099560000,"y":0},{"x":1567099620000,"y":0},{"x":1567099680000,"y":0},{"x":1567099740000,"y":0},{"x":1567099800000,"y":0},{"x":1567099860000,"y":0},{"x":1567099920000,"y":0},{"x":1567099980000,"y":0},{"x":1567100040000,"y":0},{"x":1567100100000,"y":0},{"x":1567100160000,"y":0},{"x":1567100220000,"y":0},{"x":1567100280000,"y":0},{"x":1567100340000,"y":0},{"x":1567100400000,"y":0},{"x":1567100460000,"y":0},{"x":1567100520000,"y":0},{"x":1567100580000,"y":0},{"x":1567100640000,"y":0},{"x":1567100700000,"y":0},{"x":1567100760000,"y":0},{"x":1567100820000,"y":0},{"x":1567100880000,"y":0},{"x":1567100940000,"y":0},{"x":1567101000000,"y":0},{"x":1567101060000,"y":0},{"x":1567101120000,"y":0},{"x":1567101180000,"y":0},{"x":1567101240000,"y":0},{"x":1567101300000,"y":0},{"x":1567101360000,"y":0},{"x":1567101420000,"y":0},{"x":1567101480000,"y":0},{"x":1567101540000,"y":0},{"x":1567101600000,"y":0},{"x":1567101660000,"y":0},{"x":1567101720000,"y":0},{"x":1567101780000,"y":0},{"x":1567101840000,"y":0},{"x":1567101900000,"y":0},{"x":1567101960000,"y":0},{"x":1567102020000,"y":0},{"x":1567102080000,"y":0},{"x":1567102140000,"y":0},{"x":1567102200000,"y":0},{"x":1567102260000,"y":0},{"x":1567102320000,"y":0.01},{"x":1567102380000,"y":0},{"x":1567102440000,"y":0},{"x":1567102500000,"y":0.01},{"x":1567102560000,"y":0},{"x":1567102620000,"y":0},{"x":1567102680000,"y":0},{"x":1567102740000,"y":0},{"x":1567102800000,"y":0},{"x":1567102860000,"y":0},{"x":1567102920000,"y":0.09},{"x":1567102980000,"y":0},{"x":1567103040000,"y":0},{"x":1567103100000,"y":0.96},{"x":1567103160000,"y":0},{"x":1567103220000,"y":0},{"x":1567103280000,"y":0},{"x":1567103340000,"y":0},{"x":1567103400000,"y":0},{"x":1567103460000,"y":0},{"x":1567103520000,"y":0},{"x":1567103580000,"y":0},{"x":1567103640000,"y":0},{"x":1567103700000,"y":0},{"x":1567103760000,"y":0},{"x":1567103820000,"y":0},{"x":1567103880000,"y":0},{"x":1567103940000,"y":0},{"x":1567104000000,"y":0},{"x":1567104060000,"y":0},{"x":1567104120000,"y":0},{"x":1567104180000,"y":0},{"x":1567104240000,"y":0},{"x":1567104300000,"y":0},{"x":1567104360000,"y":0},{"x":1567104420000,"y":0},{"x":1567104480000,"y":0},{"x":1567104540000,"y":0},{"x":1567104600000,"y":0},{"x":1567104660000,"y":0},{"x":1567104720000,"y":0.01},{"x":1567104780000,"y":0.01},{"x":1567104840000,"y":0.01},{"x":1567104900000,"y":1.69},{"x":1567104960000,"y":0.71},{"x":1567105020000,"y":0.01},{"x":1567105080000,"y":0.98},{"x":1567105140000,"y":0.02},{"x":1567105200000,"y":0},{"x":1567105260000,"y":0},{"x":1567105320000,"y":0},{"x":1567105380000,"y":0.01},{"x":1567105440000,"y":2.8},{"x":1567105500000,"y":0.02},{"x":1567105560000,"y":0},{"x":1567105620000,"y":0},{"x":1567105680000,"y":0.01},{"x":1567105740000,"y":0},{"x":1567105800000,"y":0.71},{"x":1567105860000,"y":1.06},{"x":1567105920000,"y":0.04},{"x":1567105980000,"y":0},{"x":1567106040000,"y":0},{"x":1567106100000,"y":0},{"x":1567106160000,"y":0},{"x":1567106220000,"y":0.15},{"x":1567106280000,"y":0.02},{"x":1567106340000,"y":0.03},{"x":1567106400000,"y":0.73},{"x":1567106460000,"y":0},{"x":1567106520000,"y":0.23},{"x":1567106580000,"y":1.21},{"x":1567106640000,"y":0},{"x":1567106700000,"y":0.66},{"x":1567106760000,"y":0.04},{"x":1567106820000,"y":0},{"x":1567106880000,"y":0},{"x":1567106940000,"y":1.91},{"x":1567107000000,"y":1.45},{"x":1567107060000,"y":0.72},{"x":1567107120000,"y":2.69},{"x":1567107180000,"y":0.73},{"x":1567107240000,"y":0.73},{"x":1567107300000,"y":0},{"x":1567107360000,"y":0.74},{"x":1567107420000,"y":0},{"x":1567107480000,"y":3.1},{"x":1567107540000,"y":0},{"x":1567107600000,"y":0.01},{"x":1567107660000,"y":0},{"x":1567107720000,"y":0.01},{"x":1567107780000,"y":0},{"x":1567107840000,"y":0.86},{"x":1567107900000,"y":0.88},{"x":1567107960000,"y":0.02},{"x":1567108020000,"y":0.03},{"x":1567108080000,"y":0},{"x":1567108140000,"y":0},{"x":1567108200000,"y":0},{"x":1567108260000,"y":2.53},{"x":1567108320000,"y":1.7},{"x":1567108380000,"y":1.74},{"x":1567108440000,"y":0},{"x":1567108500000,"y":0},{"x":1567108560000,"y":0},{"x":1567108620000,"y":0.01},{"x":1567108680000,"y":0},{"x":1567108740000,"y":0},{"x":1567108800000,"y":0.04},{"x":1567108860000,"y":0.02},{"x":1567108920000,"y":0},{"x":1567108980000,"y":0},{"x":1567109040000,"y":0.83},{"x":1567109100000,"y":0.04},{"x":1567109160000,"y":0.04},{"x":1567109220000,"y":0.09},{"x":1567109280000,"y":0.3},{"x":1567109340000,"y":0.99},{"x":1567109400000,"y":0},{"x":1567109460000,"y":0},{"x":1567109520000,"y":0.02},{"x":1567109580000,"y":0.01},{"x":1567109640000,"y":0},{"x":1567109700000,"y":0.68},{"x":1567109760000,"y":1.7},{"x":1567109820000,"y":0},{"x":1567109880000,"y":1.73},{"x":1567109940000,"y":0.02},{"x":1567110000000,"y":2},{"x":1567110060000,"y":2},{"x":1567110120000,"y":0},{"x":1567110180000,"y":0.01},{"x":1567110240000,"y":5.93},{"x":1567110300000,"y":0.02},{"x":1567110360000,"y":0.93},{"x":1567110420000,"y":1.01},{"x":1567110480000,"y":0.35},{"x":1567110540000,"y":0.21},{"x":1567110600000,"y":0.02},{"x":1567110660000,"y":0.02},{"x":1567110720000,"y":0.11},{"x":1567110780000,"y":1.76},{"x":1567110840000,"y":0.72},{"x":1567110900000,"y":0.97},{"x":1567110960000,"y":3.11},{"x":1567111020000,"y":0},{"x":1567111080000,"y":0.08},{"x":1567111140000,"y":0.01},{"x":1567111200000,"y":0},{"x":1567111260000,"y":0},{"x":1567111320000,"y":0},{"x":1567111380000,"y":0},{"x":1567111440000,"y":0},{"x":1567111500000,"y":0},{"x":1567111560000,"y":0},{"x":1567111620000,"y":0},{"x":1567111680000,"y":0.02},{"x":1567111740000,"y":0},{"x":1567111800000,"y":0},{"x":1567111860000,"y":0},{"x":1567111920000,"y":0.02},{"x":1567111980000,"y":0},{"x":1567112040000,"y":0.25},{"x":1567112100000,"y":0.44},{"x":1567112160000,"y":0.01},{"x":1567112220000,"y":0},{"x":1567112280000,"y":0},{"x":1567112340000,"y":0},{"x":1567112400000,"y":0},{"x":1567112460000,"y":0.01},{"x":1567112520000,"y":0.01},{"x":1567112580000,"y":0.34},{"x":1567112640000,"y":0.01},{"x":1567112700000,"y":0.08},{"x":1567112760000,"y":0.01},{"x":1567112820000,"y":0},{"x":1567112880000,"y":0.01},{"x":1567112940000,"y":0},{"x":1567113000000,"y":0},{"x":1567113060000,"y":0.02},{"x":1567113120000,"y":0},{"x":1567113180000,"y":0},{"x":1567113240000,"y":0},{"x":1567113300000,"y":0},{"x":1567113360000,"y":0},{"x":1567113420000,"y":0},{"x":1567113480000,"y":0},{"x":1567113540000,"y":0},{"x":1567113600000,"y":0},{"x":1567113660000,"y":0},{"x":1567113720000,"y":0},{"x":1567113780000,"y":0},{"x":1567113840000,"y":0},{"x":1567113900000,"y":0},{"x":1567113960000,"y":0},{"x":1567114020000,"y":0},{"x":1567114080000,"y":0},{"x":1567114140000,"y":0},{"x":1567114200000,"y":0},{"x":1567114260000,"y":0},{"x":1567114320000,"y":0},{"x":1567114380000,"y":0},{"x":1567114440000,"y":0},{"x":1567114500000,"y":0},{"x":1567114560000,"y":0.01},{"x":1567114620000,"y":0.01},{"x":1567114680000,"y":0},{"x":1567114740000,"y":0},{"x":1567114800000,"y":0},{"x":1567114860000,"y":0},{"x":1567114920000,"y":0},{"x":1567114980000,"y":0},{"x":1567115040000,"y":0.01},{"x":1567115100000,"y":0},{"x":1567115160000,"y":0.81},{"x":1567115220000,"y":0.01},{"x":1567115280000,"y":0.01},{"x":1567115340000,"y":0},{"x":1567115400000,"y":0},{"x":1567115460000,"y":0},{"x":1567115520000,"y":0},{"x":1567115580000,"y":0},{"x":1567115640000,"y":0},{"x":1567115700000,"y":0.01},{"x":1567115760000,"y":0.14},{"x":1567115820000,"y":0.16},{"x":1567115880000,"y":8.02},{"x":1567115940000,"y":1.42},{"x":1567116000000,"y":0},{"x":1567116060000,"y":1.53},{"x":1567116120000,"y":1.04},{"x":1567116180000,"y":0},{"x":1567116240000,"y":0.01},{"x":1567116300000,"y":0.02},{"x":1567116360000,"y":0.01},{"x":1567116420000,"y":0},{"x":1567116480000,"y":0.07},{"x":1567116540000,"y":0},{"x":1567116600000,"y":0},{"x":1567116660000,"y":0.01},{"x":1567116720000,"y":0},{"x":1567116780000,"y":0},{"x":1567116840000,"y":0},{"x":1567116900000,"y":0},{"x":1567116960000,"y":0},{"x":1567117020000,"y":0},{"x":1567117080000,"y":0},{"x":1567117140000,"y":0},{"x":1567117200000,"y":0},{"x":1567117260000,"y":0},{"x":1567117320000,"y":0},{"x":1567117380000,"y":0},{"x":1567117440000,"y":0},{"x":1567117500000,"y":0},{"x":1567117560000,"y":0},{"x":1567117620000,"y":0},{"x":1567117680000,"y":0},{"x":1567117740000,"y":0},{"x":1567117800000,"y":0},{"x":1567117860000,"y":0},{"x":1567117920000,"y":0},{"x":1567117980000,"y":0},{"x":1567118040000,"y":0},{"x":1567118100000,"y":0},{"x":1567118160000,"y":0},{"x":1567118220000,"y":0},{"x":1567118280000,"y":0},{"x":1567118340000,"y":0},{"x":1567118400000,"y":0},{"x":1567118460000,"y":0},{"x":1567118520000,"y":0},{"x":1567118580000,"y":0},{"x":1567118640000,"y":0.71},{"x":1567118700000,"y":0.81},{"x":1567118760000,"y":0},{"x":1567118820000,"y":0},{"x":1567118880000,"y":0},{"x":1567118940000,"y":0},{"x":1567119000000,"y":0},{"x":1567119060000,"y":0},{"x":1567119120000,"y":0},{"x":1567119180000,"y":0},{"x":1567119240000,"y":0},{"x":1567119300000,"y":0},{"x":1567119360000,"y":0},{"x":1567119420000,"y":0},{"x":1567119480000,"y":0},{"x":1567119540000,"y":0},{"x":1567119600000,"y":0},{"x":1567119660000,"y":0},{"x":1567119720000,"y":0},{"x":1567119780000,"y":0},{"x":1567119840000,"y":0},{"x":1567119900000,"y":0},{"x":1567119960000,"y":0},{"x":1567120020000,"y":0},{"x":1567120080000,"y":0.11},{"x":1567120140000,"y":0},{"x":1567120200000,"y":0},{"x":1567120260000,"y":0.01},{"x":1567120320000,"y":0},{"x":1567120380000,"y":0},{"x":1567120440000,"y":0},{"x":1567120500000,"y":0},{"x":1567120560000,"y":0},{"x":1567120620000,"y":0},{"x":1567120680000,"y":0},{"x":1567120740000,"y":0},{"x":1567120800000,"y":0},{"x":1567120860000,"y":0},{"x":1567120920000,"y":0},{"x":1567120980000,"y":0},{"x":1567121040000,"y":0},{"x":1567121100000,"y":0},{"x":1567121160000,"y":0},{"x":1567121220000,"y":0.01},{"x":1567121280000,"y":0},{"x":1567121340000,"y":0},{"x":1567121400000,"y":5.39},{"x":1567121460000,"y":0.02},{"x":1567121520000,"y":0},{"x":1567121580000,"y":0},{"x":1567121640000,"y":0},{"x":1567121700000,"y":0},{"x":1567121760000,"y":0},{"x":1567121820000,"y":0.34},{"x":1567121880000,"y":0.01},{"x":1567121940000,"y":0},{"x":1567122000000,"y":0},{"x":1567122060000,"y":0},{"x":1567122120000,"y":0},{"x":1567122180000,"y":0},{"x":1567122240000,"y":0},{"x":1567122300000,"y":0},{"x":1567122360000,"y":0},{"x":1567122420000,"y":0},{"x":1567122480000,"y":0},{"x":1567122540000,"y":0},{"x":1567122600000,"y":0},{"x":1567122660000,"y":2.14},{"x":1567122720000,"y":0},{"x":1567122780000,"y":0},{"x":1567122840000,"y":0},{"x":1567122900000,"y":0},{"x":1567122960000,"y":0},{"x":1567123020000,"y":0},{"x":1567123080000,"y":0},{"x":1567123140000,"y":0.23},{"x":1567123200000,"y":0},{"x":1567123260000,"y":0},{"x":1567123320000,"y":0},{"x":1567123380000,"y":0},{"x":1567123440000,"y":0},{"x":1567123500000,"y":0},{"x":1567123560000,"y":0},{"x":1567123620000,"y":0},{"x":1567123680000,"y":0},{"x":1567123740000,"y":0},{"x":1567123800000,"y":0},{"x":1567123860000,"y":0},{"x":1567123920000,"y":0},{"x":1567123980000,"y":0},{"x":1567124040000,"y":0},{"x":1567124100000,"y":0},{"x":1567124160000,"y":0},{"x":1567124220000,"y":0},{"x":1567124280000,"y":1.99},{"x":1567124340000,"y":0},{"x":1567124400000,"y":0},{"x":1567124460000,"y":0},{"x":1567124520000,"y":0},{"x":1567124580000,"y":0},{"x":1567124640000,"y":0},{"x":1567124700000,"y":1.19},{"x":1567124760000,"y":0.86},{"x":1567124820000,"y":0},{"x":1567124880000,"y":0},{"x":1567124940000,"y":0},{"x":1567125000000,"y":0},{"x":1567125060000,"y":0},{"x":1567125120000,"y":0},{"x":1567125180000,"y":0},{"x":1567125240000,"y":0},{"x":1567125300000,"y":0},{"x":1567125360000,"y":0},{"x":1567125420000,"y":0},{"x":1567125480000,"y":0},{"x":1567125540000,"y":0},{"x":1567125600000,"y":0},{"x":1567125660000,"y":1.17},{"x":1567125720000,"y":0},{"x":1567125780000,"y":0},{"x":1567125840000,"y":0},{"x":1567125900000,"y":0},{"x":1567125960000,"y":0},{"x":1567126020000,"y":0},{"x":1567126080000,"y":0},{"x":1567126140000,"y":0},{"x":1567126200000,"y":0},{"x":1567126260000,"y":0},{"x":1567126320000,"y":0},{"x":1567126380000,"y":0},{"x":1567126440000,"y":0},{"x":1567126500000,"y":0},{"x":1567126560000,"y":0},{"x":1567126620000,"y":0},{"x":1567126680000,"y":0},{"x":1567126740000,"y":0},{"x":1567126800000,"y":0},{"x":1567126860000,"y":0},{"x":1567126920000,"y":0},{"x":1567126980000,"y":0},{"x":1567127040000,"y":0},{"x":1567127100000,"y":0},{"x":1567127160000,"y":0},{"x":1567127220000,"y":0},{"x":1567127280000,"y":0},{"x":1567127340000,"y":0},{"x":1567127400000,"y":0},{"x":1567127460000,"y":0},{"x":1567127520000,"y":0},{"x":1567127580000,"y":0},{"x":1567127640000,"y":0},{"x":1567127700000,"y":0},{"x":1567127760000,"y":0},{"x":1567127820000,"y":0},{"x":1567127880000,"y":0},{"x":1567127940000,"y":0},{"x":1567128000000,"y":0},{"x":1567128060000,"y":0},{"x":1567128120000,"y":0},{"x":1567128180000,"y":0},{"x":1567128240000,"y":0},{"x":1567128300000,"y":0},{"x":1567128360000,"y":0},{"x":1567128420000,"y":1.25},{"x":1567128480000,"y":0},{"x":1567128540000,"y":0},{"x":1567128600000,"y":0},{"x":1567128660000,"y":0},{"x":1567128720000,"y":0.02},{"x":1567128780000,"y":0},{"x":1567128840000,"y":0},{"x":1567128900000,"y":0},{"x":1567128960000,"y":0},{"x":1567129020000,"y":0},{"x":1567129080000,"y":0},{"x":1567129140000,"y":0},{"x":1567129200000,"y":0},{"x":1567129260000,"y":0},{"x":1567129320000,"y":0},{"x":1567129380000,"y":0},{"x":1567129440000,"y":0},{"x":1567129500000,"y":0},{"x":1567129560000,"y":0},{"x":1567129620000,"y":0},{"x":1567129680000,"y":0},{"x":1567129740000,"y":0},{"x":1567129800000,"y":0},{"x":1567129860000,"y":0},{"x":1567129920000,"y":0},{"x":1567129980000,"y":0},{"x":1567130040000,"y":0},{"x":1567130100000,"y":0},{"x":1567130160000,"y":0},{"x":1567130220000,"y":0},{"x":1567130280000,"y":0},{"x":1567130340000,"y":0},{"x":1567130400000,"y":0},{"x":1567130460000,"y":0},{"x":1567130520000,"y":0},{"x":1567130580000,"y":0},{"x":1567130640000,"y":0},{"x":1567130700000,"y":0},{"x":1567130760000,"y":0},{"x":1567130820000,"y":0},{"x":1567130880000,"y":0},{"x":1567130940000,"y":0},{"x":1567131000000,"y":0},{"x":1567131060000,"y":0},{"x":1567131120000,"y":0},{"x":1567131180000,"y":0},{"x":1567131240000,"y":0},{"x":1567131300000,"y":0},{"x":1567131360000,"y":0},{"x":1567131420000,"y":0},{"x":1567131480000,"y":0},{"x":1567131540000,"y":0},{"x":1567131600000,"y":0},{"x":1567131660000,"y":0},{"x":1567131720000,"y":0},{"x":1567131780000,"y":0},{"x":1567131840000,"y":0},{"x":1567131900000,"y":0},{"x":1567131960000,"y":0},{"x":1567132020000,"y":0},{"x":1567132080000,"y":0},{"x":1567132140000,"y":0},{"x":1567132200000,"y":0},{"x":1567132260000,"y":0},{"x":1567132320000,"y":0},{"x":1567132380000,"y":0},{"x":1567132440000,"y":0},{"x":1567132500000,"y":0},{"x":1567132560000,"y":0},{"x":1567132620000,"y":0},{"x":1567132680000,"y":0},{"x":1567132740000,"y":0},{"x":1567132800000,"y":0},{"x":1567132860000,"y":0},{"x":1567132920000,"y":0},{"x":1567132980000,"y":0},{"x":1567133040000,"y":0},{"x":1567133100000,"y":0},{"x":1567133160000,"y":0},{"x":1567133220000,"y":0},{"x":1567133280000,"y":0},{"x":1567133340000,"y":0},{"x":1567133400000,"y":0},{"x":1567133460000,"y":0},{"x":1567133520000,"y":0},{"x":1567133580000,"y":0},{"x":1567133640000,"y":0},{"x":1567133700000,"y":0},{"x":1567133760000,"y":0},{"x":1567133820000,"y":0},{"x":1567133880000,"y":0},{"x":1567133940000,"y":0},{"x":1567134000000,"y":0},{"x":1567134060000,"y":0},{"x":1567134120000,"y":0},{"x":1567134180000,"y":0},{"x":1567134240000,"y":0},{"x":1567134300000,"y":0},{"x":1567134360000,"y":0.03},{"x":1567134420000,"y":0},{"x":1567134480000,"y":0},{"x":1567134540000,"y":0},{"x":1567134600000,"y":0},{"x":1567134660000,"y":0},{"x":1567134720000,"y":0},{"x":1567134780000,"y":0},{"x":1567134840000,"y":0},{"x":1567134900000,"y":0},{"x":1567134960000,"y":0},{"x":1567135020000,"y":0},{"x":1567135080000,"y":0},{"x":1567135140000,"y":0},{"x":1567135200000,"y":0},{"x":1567135260000,"y":0},{"x":1567135320000,"y":0},{"x":1567135380000,"y":0},{"x":1567135440000,"y":0},{"x":1567135500000,"y":0},{"x":1567135560000,"y":0},{"x":1567135620000,"y":0},{"x":1567135680000,"y":0},{"x":1567135740000,"y":0},{"x":1567135800000,"y":0},{"x":1567135860000,"y":0},{"x":1567135920000,"y":0},{"x":1567135980000,"y":0},{"x":1567136040000,"y":0},{"x":1567136100000,"y":0},{"x":1567136160000,"y":0},{"x":1567136220000,"y":0},{"x":1567136280000,"y":0},{"x":1567136340000,"y":0},{"x":1567136400000,"y":0},{"x":1567136460000,"y":0},{"x":1567136520000,"y":0},{"x":1567136580000,"y":0},{"x":1567136640000,"y":0},{"x":1567136700000,"y":0},{"x":1567136760000,"y":0},{"x":1567136820000,"y":0},{"x":1567136880000,"y":0},{"x":1567136940000,"y":0},{"x":1567137000000,"y":0},{"x":1567137060000,"y":0},{"x":1567137120000,"y":0},{"x":1567137180000,"y":0},{"x":1567137240000,"y":0},{"x":1567137300000,"y":0},{"x":1567137360000,"y":0},{"x":1567137420000,"y":0},{"x":1567137480000,"y":0},{"x":1567137540000,"y":0},{"x":1567137600000,"y":0},{"x":1567137660000,"y":0},{"x":1567137720000,"y":0},{"x":1567137780000,"y":0},{"x":1567137840000,"y":0},{"x":1567137900000,"y":0},{"x":1567137960000,"y":0},{"x":1567138020000,"y":0},{"x":1567138080000,"y":0.09},{"x":1567138140000,"y":0},{"x":1567138200000,"y":0},{"x":1567138260000,"y":0},{"x":1567138320000,"y":0},{"x":1567138380000,"y":0},{"x":1567138440000,"y":0},{"x":1567138500000,"y":0},{"x":1567138560000,"y":0},{"x":1567138620000,"y":0},{"x":1567138680000,"y":0},{"x":1567138740000,"y":0},{"x":1567138800000,"y":0},{"x":1567138860000,"y":0},{"x":1567138920000,"y":0},{"x":1567138980000,"y":0},{"x":1567139040000,"y":0},{"x":1567139100000,"y":0},{"x":1567139160000,"y":0},{"x":1567139220000,"y":0},{"x":1567139280000,"y":0},{"x":1567139340000,"y":0},{"x":1567139400000,"y":0},{"x":1567139460000,"y":0},{"x":1567139520000,"y":0},{"x":1567139580000,"y":0},{"x":1567139640000,"y":0},{"x":1567139700000,"y":0},{"x":1567139760000,"y":0},{"x":1567139820000,"y":0},{"x":1567139880000,"y":0},{"x":1567139940000,"y":0},{"x":1567140000000,"y":0},{"x":1567140060000,"y":0},{"x":1567140120000,"y":0},{"x":1567140180000,"y":0},{"x":1567140240000,"y":0},{"x":1567140300000,"y":0},{"x":1567140360000,"y":0},{"x":1567140420000,"y":0},{"x":1567140480000,"y":0},{"x":1567140540000,"y":0},{"x":1567140600000,"y":0},{"x":1567140660000,"y":0},{"x":1567140720000,"y":0},{"x":1567140780000,"y":0},{"x":1567140840000,"y":0},{"x":1567140900000,"y":0},{"x":1567140960000,"y":0},{"x":1567141020000,"y":0},{"x":1567141080000,"y":0},{"x":1567141140000,"y":0},{"x":1567141200000,"y":0},{"x":1567141260000,"y":0},{"x":1567141320000,"y":0},{"x":1567141380000,"y":0},{"x":1567141440000,"y":0},{"x":1567141500000,"y":0},{"x":1567141560000,"y":0},{"x":1567141620000,"y":0},{"x":1567141680000,"y":0},{"x":1567141740000,"y":0},{"x":1567141800000,"y":0},{"x":1567141860000,"y":0},{"x":1567141920000,"y":0},{"x":1567141980000,"y":0},{"x":1567142040000,"y":0},{"x":1567142100000,"y":0},{"x":1567142160000,"y":0},{"x":1567142220000,"y":0},{"x":1567142280000,"y":0},{"x":1567142340000,"y":0},{"x":1567142400000,"y":0},{"x":1567142460000,"y":0},{"x":1567142520000,"y":0},{"x":1567142580000,"y":0},{"x":1567142640000,"y":0},{"x":1567142700000,"y":0},{"x":1567142760000,"y":0},{"x":1567142820000,"y":0},{"x":1567142880000,"y":0},{"x":1567142940000,"y":0},{"x":1567143000000,"y":0},{"x":1567143060000,"y":0},{"x":1567143120000,"y":0},{"x":1567143180000,"y":0},{"x":1567143240000,"y":0},{"x":1567143300000,"y":0},{"x":1567143360000,"y":0},{"x":1567143420000,"y":0},{"x":1567143480000,"y":0},{"x":1567143540000,"y":0},{"x":1567143600000,"y":0},{"x":1567143660000,"y":0},{"x":1567143720000,"y":0},{"x":1567143780000,"y":0},{"x":1567143840000,"y":0},{"x":1567143900000,"y":0},{"x":1567143960000,"y":0},{"x":1567144020000,"y":0},{"x":1567144080000,"y":0},{"x":1567144140000,"y":0},{"x":1567144200000,"y":0},{"x":1567144260000,"y":0},{"x":1567144320000,"y":0},{"x":1567144380000,"y":0},{"x":1567144440000,"y":0},{"x":1567144500000,"y":0},{"x":1567144560000,"y":0},{"x":1567144620000,"y":0},{"x":1567144680000,"y":0},{"x":1567144740000,"y":0},{"x":1567144800000,"y":0},{"x":1567144860000,"y":0},{"x":1567144920000,"y":0},{"x":1567144980000,"y":0},{"x":1567145040000,"y":0},{"x":1567145100000,"y":0},{"x":1567145160000,"y":0},{"x":1567145220000,"y":0},{"x":1567145280000,"y":0},{"x":1567145340000,"y":0},{"x":1567145400000,"y":0},{"x":1567145460000,"y":0},{"x":1567145520000,"y":0},{"x":1567145580000,"y":0},{"x":1567145640000,"y":0},{"x":1567145700000,"y":0},{"x":1567145760000,"y":0},{"x":1567145820000,"y":0},{"x":1567145880000,"y":0},{"x":1567145940000,"y":0},{"x":1567146000000,"y":0},{"x":1567146060000,"y":0},{"x":1567146120000,"y":0},{"x":1567146180000,"y":0},{"x":1567146240000,"y":0},{"x":1567146300000,"y":0},{"x":1567146360000,"y":0},{"x":1567146420000,"y":0},{"x":1567146480000,"y":0},{"x":1567146540000,"y":0},{"x":1567146600000,"y":0},{"x":1567146660000,"y":0},{"x":1567146720000,"y":0},{"x":1567146780000,"y":0},{"x":1567146840000,"y":0},{"x":1567146900000,"y":0},{"x":1567146960000,"y":0},{"x":1567147020000,"y":0},{"x":1567147080000,"y":0},{"x":1567147140000,"y":0},{"x":1567147200000,"y":0},{"x":1567147260000,"y":0},{"x":1567147320000,"y":0},{"x":1567147380000,"y":0},{"x":1567147440000,"y":0},{"x":1567147500000,"y":0},{"x":1567147560000,"y":0},{"x":1567147620000,"y":0},{"x":1567147680000,"y":0},{"x":1567147740000,"y":0},{"x":1567147800000,"y":0},{"x":1567147860000,"y":0},{"x":1567147920000,"y":0},{"x":1567147980000,"y":0},{"x":1567148040000,"y":0},{"x":1567148100000,"y":0},{"x":1567148160000,"y":0},{"x":1567148220000,"y":0},{"x":1567148280000,"y":0},{"x":1567148340000,"y":0},{"x":1567148400000,"y":0},{"x":1567148460000,"y":0},{"x":1567148520000,"y":0},{"x":1567148580000,"y":0},{"x":1567148640000,"y":0},{"x":1567148700000,"y":0},{"x":1567148760000,"y":0},{"x":1567148820000,"y":0},{"x":1567148880000,"y":0},{"x":1567148940000,"y":0},{"x":1567149000000,"y":0},{"x":1567149060000,"y":0},{"x":1567149120000,"y":0},{"x":1567149180000,"y":0},{"x":1567149240000,"y":0},{"x":1567149300000,"y":0},{"x":1567149360000,"y":0},{"x":1567149420000,"y":0},{"x":1567149480000,"y":0},{"x":1567149540000,"y":0},{"x":1567149600000,"y":0},{"x":1567149660000,"y":0},{"x":1567149720000,"y":0},{"x":1567149780000,"y":0},{"x":1567149840000,"y":0},{"x":1567149900000,"y":0},{"x":1567149960000,"y":0},{"x":1567150020000,"y":0},{"x":1567150080000,"y":0},{"x":1567150140000,"y":0},{"x":1567150200000,"y":0},{"x":1567150260000,"y":0},{"x":1567150320000,"y":0},{"x":1567150380000,"y":0},{"x":1567150440000,"y":0},{"x":1567150500000,"y":0},{"x":1567150560000,"y":0},{"x":1567150620000,"y":0},{"x":1567150680000,"y":0},{"x":1567150740000,"y":0},{"x":1567150800000,"y":0},{"x":1567150860000,"y":0},{"x":1567150920000,"y":0},{"x":1567150980000,"y":0},{"x":1567151040000,"y":0},{"x":1567151100000,"y":0},{"x":1567151160000,"y":0},{"x":1567151220000,"y":0},{"x":1567151280000,"y":0},{"x":1567151340000,"y":0},{"x":1567151400000,"y":0},{"x":1567151460000,"y":0},{"x":1567151520000,"y":0},{"x":1567151580000,"y":0},{"x":1567151640000,"y":0},{"x":1567151700000,"y":0},{"x":1567151760000,"y":0},{"x":1567151820000,"y":0},{"x":1567151880000,"y":0},{"x":1567151940000,"y":0},{"x":1567152000000,"y":0},{"x":1567152060000,"y":0},{"x":1567152120000,"y":0},{"x":1567152180000,"y":0},{"x":1567152240000,"y":0},{"x":1567152300000,"y":0},{"x":1567152360000,"y":0},{"x":1567152420000,"y":0},{"x":1567152480000,"y":0},{"x":1567152540000,"y":0},{"x":1567152600000,"y":0},{"x":1567152660000,"y":0},{"x":1567152720000,"y":0},{"x":1567152780000,"y":0},{"x":1567152840000,"y":0},{"x":1567152900000,"y":0},{"x":1567152960000,"y":0},{"x":1567153020000,"y":0},{"x":1567153080000,"y":0},{"x":1567153140000,"y":0},{"x":1567153200000,"y":0},{"x":1567153260000,"y":0},{"x":1567153320000,"y":0},{"x":1567153380000,"y":0},{"x":1567153440000,"y":0},{"x":1567153500000,"y":0},{"x":1567153560000,"y":0},{"x":1567153620000,"y":0},{"x":1567153680000,"y":0},{"x":1567153740000,"y":0},{"x":1567153800000,"y":0},{"x":1567153860000,"y":0},{"x":1567153920000,"y":0},{"x":1567153980000,"y":0},{"x":1567154040000,"y":0},{"x":1567154100000,"y":0},{"x":1567154160000,"y":0},{"x":1567154220000,"y":0},{"x":1567154280000,"y":0},{"x":1567154340000,"y":0},{"x":1567154400000,"y":0},{"x":1567154460000,"y":0},{"x":1567154520000,"y":0},{"x":1567154580000,"y":0},{"x":1567154640000,"y":0},{"x":1567154700000,"y":0},{"x":1567154760000,"y":0},{"x":1567154820000,"y":0},{"x":1567154880000,"y":0},{"x":1567154940000,"y":0},{"x":1567155000000,"y":0},{"x":1567155060000,"y":0},{"x":1567155120000,"y":0},{"x":1567155180000,"y":0},{"x":1567155240000,"y":0.01},{"x":1567155300000,"y":0},{"x":1567155360000,"y":0},{"x":1567155420000,"y":0},{"x":1567155480000,"y":0},{"x":1567155540000,"y":0},{"x":1567155600000,"y":0},{"x":1567155660000,"y":0},{"x":1567155720000,"y":0},{"x":1567155780000,"y":0},{"x":1567155840000,"y":0},{"x":1567155900000,"y":0},{"x":1567155960000,"y":0},{"x":1567156020000,"y":0},{"x":1567156080000,"y":0},{"x":1567156140000,"y":0},{"x":1567156200000,"y":0},{"x":1567156260000,"y":0},{"x":1567156320000,"y":0},{"x":1567156380000,"y":0},{"x":1567156440000,"y":0},{"x":1567156500000,"y":0},{"x":1567156560000,"y":0},{"x":1567156620000,"y":0},{"x":1567156680000,"y":0},{"x":1567156740000,"y":0},{"x":1567156800000,"y":0},{"x":1567156860000,"y":0},{"x":1567156920000,"y":0},{"x":1567156980000,"y":0},{"x":1567157040000,"y":0},{"x":1567157100000,"y":0},{"x":1567157160000,"y":0},{"x":1567157220000,"y":0},{"x":1567157280000,"y":0},{"x":1567157340000,"y":0},{"x":1567157400000,"y":0},{"x":1567157460000,"y":0},{"x":1567157520000,"y":0},{"x":1567157580000,"y":0},{"x":1567157640000,"y":0},{"x":1567157700000,"y":0},{"x":1567157760000,"y":0},{"x":1567157820000,"y":0},{"x":1567157880000,"y":0},{"x":1567157940000,"y":0},{"x":1567158000000,"y":0},{"x":1567158060000,"y":0},{"x":1567158120000,"y":0},{"x":1567158180000,"y":0},{"x":1567158240000,"y":0},{"x":1567158300000,"y":0},{"x":1567158360000,"y":0},{"x":1567158420000,"y":0},{"x":1567158480000,"y":0},{"x":1567158540000,"y":0},{"x":1567158600000,"y":0},{"x":1567158660000,"y":0},{"x":1567158720000,"y":0},{"x":1567158780000,"y":0},{"x":1567158840000,"y":0},{"x":1567158900000,"y":0},{"x":1567158960000,"y":0},{"x":1567159020000,"y":0},{"x":1567159080000,"y":0},{"x":1567159140000,"y":0},{"x":1567159200000,"y":0},{"x":1567159260000,"y":0},{"x":1567159320000,"y":0},{"x":1567159380000,"y":0},{"x":1567159440000,"y":0},{"x":1567159500000,"y":0},{"x":1567159560000,"y":0},{"x":1567159620000,"y":0},{"x":1567159680000,"y":0},{"x":1567159740000,"y":0},{"x":1567159800000,"y":0},{"x":1567159860000,"y":0},{"x":1567159920000,"y":0.01},{"x":1567159980000,"y":0},{"x":1567160040000,"y":0},{"x":1567160100000,"y":0},{"x":1567160160000,"y":0},{"x":1567160220000,"y":0},{"x":1567160280000,"y":0},{"x":1567160340000,"y":0},{"x":1567160400000,"y":0},{"x":1567160460000,"y":0},{"x":1567160520000,"y":0},{"x":1567160580000,"y":0},{"x":1567160640000,"y":0},{"x":1567160700000,"y":0},{"x":1567160760000,"y":0},{"x":1567160820000,"y":0},{"x":1567160880000,"y":0},{"x":1567160940000,"y":0},{"x":1567161000000,"y":0},{"x":1567161060000,"y":0},{"x":1567161120000,"y":0},{"x":1567161180000,"y":0},{"x":1567161240000,"y":0},{"x":1567161300000,"y":0},{"x":1567161360000,"y":0},{"x":1567161420000,"y":0},{"x":1567161480000,"y":0},{"x":1567161540000,"y":0},{"x":1567161600000,"y":0},{"x":1567161660000,"y":0},{"x":1567161720000,"y":0},{"x":1567161780000,"y":0},{"x":1567161840000,"y":0},{"x":1567161900000,"y":0},{"x":1567161960000,"y":0},{"x":1567162020000,"y":0},{"x":1567162080000,"y":0},{"x":1567162140000,"y":0},{"x":1567162200000,"y":0},{"x":1567162260000,"y":0},{"x":1567162320000,"y":0},{"x":1567162380000,"y":0},{"x":1567162440000,"y":0},{"x":1567162500000,"y":0},{"x":1567162560000,"y":0},{"x":1567162620000,"y":0},{"x":1567162680000,"y":0},{"x":1567162740000,"y":0},{"x":1567162800000,"y":0},{"x":1567162860000,"y":0},{"x":1567162920000,"y":0},{"x":1567162980000,"y":0},{"x":1567163040000,"y":0},{"x":1567163100000,"y":0},{"x":1567163160000,"y":0},{"x":1567163220000,"y":0},{"x":1567163280000,"y":0},{"x":1567163340000,"y":0},{"x":1567163400000,"y":0},{"x":1567163460000,"y":0},{"x":1567163520000,"y":0},{"x":1567163580000,"y":0},{"x":1567163640000,"y":0},{"x":1567163700000,"y":0},{"x":1567163760000,"y":0},{"x":1567163820000,"y":0},{"x":1567163880000,"y":0},{"x":1567163940000,"y":0.01},{"x":1567164000000,"y":0.01},{"x":1567164060000,"y":0},{"x":1567164120000,"y":0},{"x":1567164180000,"y":0},{"x":1567164240000,"y":0},{"x":1567164300000,"y":0},{"x":1567164360000,"y":0},{"x":1567164420000,"y":0},{"x":1567164480000,"y":0},{"x":1567164540000,"y":0},{"x":1567164600000,"y":0},{"x":1567164660000,"y":0},{"x":1567164720000,"y":0},{"x":1567164780000,"y":0},{"x":1567164840000,"y":0},{"x":1567164900000,"y":0},{"x":1567164960000,"y":0.01},{"x":1567165020000,"y":0},{"x":1567165080000,"y":0},{"x":1567165140000,"y":0},{"x":1567165200000,"y":0},{"x":1567165260000,"y":0},{"x":1567165320000,"y":0},{"x":1567165380000,"y":0},{"x":1567165440000,"y":0},{"x":1567165500000,"y":0},{"x":1567165560000,"y":0},{"x":1567165620000,"y":0},{"x":1567165680000,"y":0},{"x":1567165740000,"y":0},{"x":1567165800000,"y":0},{"x":1567165860000,"y":0},{"x":1567165920000,"y":0},{"x":1567165980000,"y":0},{"x":1567166040000,"y":0},{"x":1567166100000,"y":0},{"x":1567166160000,"y":0},{"x":1567166220000,"y":0},{"x":1567166280000,"y":0},{"x":1567166340000,"y":0},{"x":1567166400000,"y":0},{"x":1567166460000,"y":0},{"x":1567166520000,"y":0},{"x":1567166580000,"y":0},{"x":1567166640000,"y":0},{"x":1567166700000,"y":0},{"x":1567166760000,"y":0},{"x":1567166820000,"y":0},{"x":1567166880000,"y":0},{"x":1567166940000,"y":0},{"x":1567167000000,"y":0},{"x":1567167060000,"y":0},{"x":1567167120000,"y":0},{"x":1567167180000,"y":0},{"x":1567167240000,"y":0},{"x":1567167300000,"y":0},{"x":1567167360000,"y":0},{"x":1567167420000,"y":0},{"x":1567167480000,"y":0},{"x":1567167540000,"y":0},{"x":1567167600000,"y":0},{"x":1567167660000,"y":0},{"x":1567167720000,"y":0},{"x":1567167780000,"y":0},{"x":1567167840000,"y":0},{"x":1567167900000,"y":0.98},{"x":1567167960000,"y":0},{"x":1567168020000,"y":0},{"x":1567168080000,"y":0},{"x":1567168140000,"y":0},{"x":1567168200000,"y":0},{"x":1567168260000,"y":0},{"x":1567168320000,"y":0},{"x":1567168380000,"y":0},{"x":1567168440000,"y":0},{"x":1567168500000,"y":0},{"x":1567168560000,"y":0},{"x":1567168620000,"y":0},{"x":1567168680000,"y":0},{"x":1567168740000,"y":0},{"x":1567168800000,"y":0},{"x":1567168860000,"y":0},{"x":1567168920000,"y":0},{"x":1567168980000,"y":0},{"x":1567169040000,"y":0},{"x":1567169100000,"y":0},{"x":1567169160000,"y":0},{"x":1567169220000,"y":0},{"x":1567169280000,"y":0},{"x":1567169340000,"y":0},{"x":1567169400000,"y":0},{"x":1567169460000,"y":0},{"x":1567169520000,"y":0},{"x":1567169580000,"y":0},{"x":1567169640000,"y":0},{"x":1567169700000,"y":0},{"x":1567169760000,"y":0},{"x":1567169820000,"y":0},{"x":1567169880000,"y":0},{"x":1567169940000,"y":0},{"x":1567170000000,"y":0},{"x":1567170060000,"y":0},{"x":1567170120000,"y":0},{"x":1567170180000,"y":0},{"x":1567170240000,"y":0},{"x":1567170300000,"y":0},{"x":1567170360000,"y":0},{"x":1567170420000,"y":0},{"x":1567170480000,"y":0},{"x":1567170540000,"y":0},{"x":1567170600000,"y":0},{"x":1567170660000,"y":0},{"x":1567170720000,"y":0},{"x":1567170780000,"y":0},{"x":1567170840000,"y":0},{"x":1567170900000,"y":0},{"x":1567170960000,"y":0},{"x":1567171020000,"y":0},{"x":1567171080000,"y":0},{"x":1567171140000,"y":0},{"x":1567171200000,"y":0.84},{"x":1567171260000,"y":0},{"x":1567171320000,"y":0},{"x":1567171380000,"y":0},{"x":1567171440000,"y":0},{"x":1567171500000,"y":0},{"x":1567171560000,"y":0.03},{"x":1567171620000,"y":0.21},{"x":1567171680000,"y":0},{"x":1567171740000,"y":0},{"x":1567171800000,"y":0},{"x":1567171860000,"y":0},{"x":1567171920000,"y":0},{"x":1567171980000,"y":0.01},{"x":1567172040000,"y":0},{"x":1567172100000,"y":0},{"x":1567172160000,"y":0},{"x":1567172220000,"y":0},{"x":1567172280000,"y":0},{"x":1567172340000,"y":0},{"x":1567172400000,"y":0},{"x":1567172460000,"y":0},{"x":1567172520000,"y":0},{"x":1567172580000,"y":0},{"x":1567172640000,"y":0},{"x":1567172700000,"y":0},{"x":1567172760000,"y":0},{"x":1567172820000,"y":0},{"x":1567172880000,"y":0},{"x":1567172940000,"y":0},{"x":1567173000000,"y":0},{"x":1567173060000,"y":0},{"x":1567173120000,"y":0},{"x":1567173180000,"y":0},{"x":1567173240000,"y":0},{"x":1567173300000,"y":0},{"x":1567173360000,"y":0},{"x":1567173420000,"y":0},{"x":1567173480000,"y":0},{"x":1567173540000,"y":0},{"x":1567173600000,"y":0},{"x":1567173660000,"y":0},{"x":1567173720000,"y":0},{"x":1567173780000,"y":0},{"x":1567173840000,"y":0},{"x":1567173900000,"y":0},{"x":1567173960000,"y":0},{"x":1567174020000,"y":0},{"x":1567174080000,"y":0},{"x":1567174140000,"y":0},{"x":1567174200000,"y":0},{"x":1567174260000,"y":0},{"x":1567174320000,"y":0},{"x":1567174380000,"y":0},{"x":1567174440000,"y":0},{"x":1567174500000,"y":0},{"x":1567174560000,"y":0},{"x":1567174620000,"y":0.04},{"x":1567174680000,"y":0},{"x":1567174740000,"y":0},{"x":1567174800000,"y":0},{"x":1567174860000,"y":0},{"x":1567174920000,"y":0},{"x":1567174980000,"y":0},{"x":1567175040000,"y":0},{"x":1567175100000,"y":0},{"x":1567175160000,"y":0},{"x":1567175220000,"y":0},{"x":1567175280000,"y":0},{"x":1567175340000,"y":0.01},{"x":1567175400000,"y":0},{"x":1567175460000,"y":0},{"x":1567175520000,"y":0},{"x":1567175580000,"y":0},{"x":1567175640000,"y":0},{"x":1567175700000,"y":0},{"x":1567175760000,"y":0},{"x":1567175820000,"y":0},{"x":1567175880000,"y":0},{"x":1567175940000,"y":0},{"x":1567176000000,"y":0},{"x":1567176060000,"y":0},{"x":1567176120000,"y":0},{"x":1567176180000,"y":0},{"x":1567176240000,"y":0},{"x":1567176300000,"y":0},{"x":1567176360000,"y":0},{"x":1567176420000,"y":0},{"x":1567176480000,"y":0},{"x":1567176540000,"y":0.03},{"x":1567176600000,"y":0},{"x":1567176660000,"y":0},{"x":1567176720000,"y":0},{"x":1567176780000,"y":0},{"x":1567176840000,"y":0},{"x":1567176900000,"y":0},{"x":1567176960000,"y":0},{"x":1567177020000,"y":0},{"x":1567177080000,"y":0},{"x":1567177140000,"y":0},{"x":1567177200000,"y":0},{"x":1567177260000,"y":0},{"x":1567177320000,"y":0},{"x":1567177380000,"y":0},{"x":1567177440000,"y":0},{"x":1567177500000,"y":0},{"x":1567177560000,"y":0},{"x":1567177620000,"y":0},{"x":1567177680000,"y":0},{"x":1567177740000,"y":0},{"x":1567177800000,"y":0},{"x":1567177860000,"y":0},{"x":1567177920000,"y":0},{"x":1567177980000,"y":0},{"x":1567178040000,"y":0},{"x":1567178100000,"y":0},{"x":1567178160000,"y":0},{"x":1567178220000,"y":0},{"x":1567178280000,"y":0},{"x":1567178340000,"y":0},{"x":1567178400000,"y":0},{"x":1567178460000,"y":0},{"x":1567178520000,"y":0},{"x":1567178580000,"y":0},{"x":1567178640000,"y":0},{"x":1567178700000,"y":0},{"x":1567178760000,"y":0},{"x":1567178820000,"y":0.01},{"x":1567178880000,"y":0},{"x":1567178940000,"y":0},{"x":1567179000000,"y":0},{"x":1567179060000,"y":0},{"x":1567179120000,"y":0},{"x":1567179180000,"y":0},{"x":1567179240000,"y":0.01},{"x":1567179300000,"y":0},{"x":1567179360000,"y":0},{"x":1567179420000,"y":0},{"x":1567179480000,"y":0},{"x":1567179540000,"y":0.01},{"x":1567179600000,"y":0},{"x":1567179660000,"y":0},{"x":1567179720000,"y":0},{"x":1567179780000,"y":0},{"x":1567179840000,"y":0},{"x":1567179900000,"y":0},{"x":1567179960000,"y":0},{"x":1567180020000,"y":0},{"x":1567180080000,"y":0},{"x":1567180140000,"y":0},{"x":1567180200000,"y":0},{"x":1567180260000,"y":0},{"x":1567180320000,"y":0},{"x":1567180380000,"y":0},{"x":1567180440000,"y":0},{"x":1567180500000,"y":0},{"x":1567180560000,"y":0},{"x":1567180620000,"y":0},{"x":1567180680000,"y":0},{"x":1567180740000,"y":0},{"x":1567180800000,"y":0},{"x":1567180860000,"y":0},{"x":1567180920000,"y":0},{"x":1567180980000,"y":0},{"x":1567181040000,"y":0},{"x":1567181100000,"y":0},{"x":1567181160000,"y":0},{"x":1567181220000,"y":0},{"x":1567181280000,"y":0},{"x":1567181340000,"y":0},{"x":1567181400000,"y":0},{"x":1567181460000,"y":0},{"x":1567181520000,"y":0},{"x":1567181580000,"y":0},{"x":1567181640000,"y":0},{"x":1567181700000,"y":0},{"x":1567181760000,"y":0.02},{"x":1567181820000,"y":0},{"x":1567181880000,"y":0},{"x":1567181940000,"y":0},{"x":1567182000000,"y":0},{"x":1567182060000,"y":0},{"x":1567182120000,"y":0},{"x":1567182180000,"y":0},{"x":1567182240000,"y":0},{"x":1567182300000,"y":0},{"x":1567182360000,"y":0},{"x":1567182420000,"y":0},{"x":1567182480000,"y":0},{"x":1567182540000,"y":0},{"x":1567182600000,"y":0},{"x":1567182660000,"y":0},{"x":1567182720000,"y":0},{"x":1567182780000,"y":0},{"x":1567182840000,"y":0},{"x":1567182900000,"y":0},{"x":1567182960000,"y":0},{"x":1567183020000,"y":0},{"x":1567183080000,"y":0},{"x":1567183140000,"y":0},{"x":1567183200000,"y":0},{"x":1567183260000,"y":0},{"x":1567183320000,"y":0},{"x":1567183380000,"y":0},{"x":1567183440000,"y":0},{"x":1567183500000,"y":0},{"x":1567183560000,"y":0},{"x":1567183620000,"y":0},{"x":1567183680000,"y":0},{"x":1567183740000,"y":0},{"x":1567183800000,"y":0},{"x":1567183860000,"y":0},{"x":1567183920000,"y":0},{"x":1567183980000,"y":0},{"x":1567184040000,"y":0},{"x":1567184100000,"y":0},{"x":1567184160000,"y":0},{"x":1567184220000,"y":0},{"x":1567184280000,"y":0},{"x":1567184340000,"y":0},{"x":1567184400000,"y":0},{"x":1567184460000,"y":0},{"x":1567184520000,"y":0},{"x":1567184580000,"y":0},{"x":1567184640000,"y":0},{"x":1567184700000,"y":0},{"x":1567184760000,"y":0},{"x":1567184820000,"y":0},{"x":1567184880000,"y":0},{"x":1567184940000,"y":0},{"x":1567185000000,"y":0},{"x":1567185060000,"y":0.85},{"x":1567185120000,"y":1.16},{"x":1567185180000,"y":0},{"x":1567185240000,"y":0.1},{"x":1567185300000,"y":0},{"x":1567185360000,"y":0},{"x":1567185420000,"y":0},{"x":1567185480000,"y":0},{"x":1567185540000,"y":0},{"x":1567185600000,"y":0},{"x":1567185660000,"y":0},{"x":1567185720000,"y":0},{"x":1567185780000,"y":0},{"x":1567185840000,"y":0},{"x":1567185900000,"y":0},{"x":1567185960000,"y":0},{"x":1567186020000,"y":0},{"x":1567186080000,"y":0},{"x":1567186140000,"y":0},{"x":1567186200000,"y":0},{"x":1567186260000,"y":0},{"x":1567186320000,"y":0},{"x":1567186380000,"y":0},{"x":1567186440000,"y":0},{"x":1567186500000,"y":0},{"x":1567186560000,"y":0},{"x":1567186620000,"y":0},{"x":1567186680000,"y":0},{"x":1567186740000,"y":0},{"x":1567186800000,"y":0},{"x":1567186860000,"y":0},{"x":1567186920000,"y":0},{"x":1567186980000,"y":0},{"x":1567187040000,"y":0},{"x":1567187100000,"y":0},{"x":1567187160000,"y":0},{"x":1567187220000,"y":0},{"x":1567187280000,"y":0},{"x":1567187340000,"y":0},{"x":1567187400000,"y":0},{"x":1567187460000,"y":0},{"x":1567187520000,"y":0},{"x":1567187580000,"y":0},{"x":1567187640000,"y":0},{"x":1567187700000,"y":0},{"x":1567187760000,"y":0},{"x":1567187820000,"y":0},{"x":1567187880000,"y":0},{"x":1567187940000,"y":0.01},{"x":1567188000000,"y":0},{"x":1567188060000,"y":0},{"x":1567188120000,"y":0},{"x":1567188180000,"y":0.02},{"x":1567188240000,"y":0},{"x":1567188300000,"y":0},{"x":1567188360000,"y":0},{"x":1567188420000,"y":0},{"x":1567188480000,"y":0},{"x":1567188540000,"y":0},{"x":1567188600000,"y":0},{"x":1567188660000,"y":0},{"x":1567188720000,"y":0},{"x":1567188780000,"y":0},{"x":1567188840000,"y":0},{"x":1567188900000,"y":0},{"x":1567188960000,"y":0},{"x":1567189020000,"y":0},{"x":1567189080000,"y":0},{"x":1567189140000,"y":0},{"x":1567189200000,"y":0},{"x":1567189260000,"y":0},{"x":1567189320000,"y":0},{"x":1567189380000,"y":0},{"x":1567189440000,"y":0},{"x":1567189500000,"y":1.94},{"x":1567189560000,"y":1.19},{"x":1567189620000,"y":0},{"x":1567189680000,"y":0.01},{"x":1567189740000,"y":0.01},{"x":1567189800000,"y":0},{"x":1567189860000,"y":0},{"x":1567189920000,"y":0},{"x":1567189980000,"y":0},{"x":1567190040000,"y":0},{"x":1567190100000,"y":0},{"x":1567190160000,"y":0},{"x":1567190220000,"y":0},{"x":1567190280000,"y":0.01},{"x":1567190340000,"y":0},{"x":1567190400000,"y":0},{"x":1567190460000,"y":0},{"x":1567190520000,"y":0},{"x":1567190580000,"y":0},{"x":1567190640000,"y":0},{"x":1567190700000,"y":0},{"x":1567190760000,"y":0},{"x":1567190820000,"y":0},{"x":1567190880000,"y":0},{"x":1567190940000,"y":0},{"x":1567191000000,"y":0},{"x":1567191060000,"y":0},{"x":1567191120000,"y":0},{"x":1567191180000,"y":0},{"x":1567191240000,"y":0},{"x":1567191300000,"y":0},{"x":1567191360000,"y":0},{"x":1567191420000,"y":0},{"x":1567191480000,"y":0},{"x":1567191540000,"y":0},{"x":1567191600000,"y":0},{"x":1567191660000,"y":0},{"x":1567191720000,"y":0},{"x":1567191780000,"y":0},{"x":1567191840000,"y":0},{"x":1567191900000,"y":0},{"x":1567191960000,"y":0},{"x":1567192020000,"y":0},{"x":1567192080000,"y":0},{"x":1567192140000,"y":0},{"x":1567192200000,"y":0},{"x":1567192260000,"y":0},{"x":1567192320000,"y":0},{"x":1567192380000,"y":0},{"x":1567192440000,"y":0},{"x":1567192500000,"y":0},{"x":1567192560000,"y":0},{"x":1567192620000,"y":0},{"x":1567192680000,"y":0},{"x":1567192740000,"y":0},{"x":1567192800000,"y":0},{"x":1567192860000,"y":0},{"x":1567192920000,"y":0},{"x":1567192980000,"y":0},{"x":1567193040000,"y":0},{"x":1567193100000,"y":0},{"x":1567193160000,"y":0},{"x":1567193220000,"y":0},{"x":1567193280000,"y":0},{"x":1567193340000,"y":0},{"x":1567193400000,"y":0},{"x":1567193460000,"y":0},{"x":1567193520000,"y":0},{"x":1567193580000,"y":0},{"x":1567193640000,"y":0},{"x":1567193700000,"y":0},{"x":1567193760000,"y":0},{"x":1567193820000,"y":0},{"x":1567193880000,"y":0},{"x":1567193940000,"y":0},{"x":1567194000000,"y":0},{"x":1567194060000,"y":0},{"x":1567194120000,"y":0},{"x":1567194180000,"y":0},{"x":1567194240000,"y":0},{"x":1567194300000,"y":0},{"x":1567194360000,"y":0},{"x":1567194420000,"y":0},{"x":1567194480000,"y":0},{"x":1567194540000,"y":0},{"x":1567194600000,"y":0},{"x":1567194660000,"y":0},{"x":1567194720000,"y":0},{"x":1567194780000,"y":0},{"x":1567194840000,"y":0},{"x":1567194900000,"y":0},{"x":1567194960000,"y":0},{"x":1567195020000,"y":0},{"x":1567195080000,"y":0},{"x":1567195140000,"y":0},{"x":1567195200000,"y":0},{"x":1567195260000,"y":0},{"x":1567195320000,"y":0},{"x":1567195380000,"y":0},{"x":1567195440000,"y":0},{"x":1567195500000,"y":0},{"x":1567195560000,"y":0},{"x":1567195620000,"y":0},{"x":1567195680000,"y":0},{"x":1567195740000,"y":0},{"x":1567195800000,"y":0},{"x":1567195860000,"y":0.01},{"x":1567195920000,"y":0},{"x":1567195980000,"y":0},{"x":1567196040000,"y":0},{"x":1567196100000,"y":0},{"x":1567196160000,"y":0},{"x":1567196220000,"y":0},{"x":1567196280000,"y":0},{"x":1567196340000,"y":0},{"x":1567196400000,"y":0},{"x":1567196460000,"y":0},{"x":1567196520000,"y":0},{"x":1567196580000,"y":0},{"x":1567196640000,"y":0},{"x":1567196700000,"y":0},{"x":1567196760000,"y":0},{"x":1567196820000,"y":0},{"x":1567196880000,"y":0},{"x":1567196940000,"y":0},{"x":1567197000000,"y":0},{"x":1567197060000,"y":0},{"x":1567197120000,"y":0},{"x":1567197180000,"y":0},{"x":1567197240000,"y":0},{"x":1567197300000,"y":0},{"x":1567197360000,"y":0},{"x":1567197420000,"y":0},{"x":1567197480000,"y":0},{"x":1567197540000,"y":0},{"x":1567197600000,"y":0},{"x":1567197660000,"y":0.12},{"x":1567197720000,"y":0},{"x":1567197780000,"y":0},{"x":1567197840000,"y":0},{"x":1567197900000,"y":0},{"x":1567197960000,"y":0},{"x":1567198020000,"y":0},{"x":1567198080000,"y":0},{"x":1567198140000,"y":0},{"x":1567198200000,"y":0},{"x":1567198260000,"y":0},{"x":1567198320000,"y":0},{"x":1567198380000,"y":0},{"x":1567198440000,"y":0},{"x":1567198500000,"y":0},{"x":1567198560000,"y":0},{"x":1567198620000,"y":0},{"x":1567198680000,"y":0},{"x":1567198740000,"y":0},{"x":1567198800000,"y":0},{"x":1567198860000,"y":0},{"x":1567198920000,"y":0},{"x":1567198980000,"y":0},{"x":1567199040000,"y":0},{"x":1567199100000,"y":0},{"x":1567199160000,"y":0},{"x":1567199220000,"y":0},{"x":1567199280000,"y":0},{"x":1567199340000,"y":0},{"x":1567199400000,"y":0},{"x":1567199460000,"y":0},{"x":1567199520000,"y":0},{"x":1567199580000,"y":0},{"x":1567199640000,"y":0},{"x":1567199700000,"y":0},{"x":1567199760000,"y":0},{"x":1567199820000,"y":0},{"x":1567199880000,"y":0},{"x":1567199940000,"y":0},{"x":1567200000000,"y":0},{"x":1567200060000,"y":0},{"x":1567200120000,"y":0},{"x":1567200180000,"y":0},{"x":1567200240000,"y":0},{"x":1567200300000,"y":0},{"x":1567200360000,"y":0},{"x":1567200420000,"y":0},{"x":1567200480000,"y":0},{"x":1567200540000,"y":0},{"x":1567200600000,"y":0},{"x":1567200660000,"y":0},{"x":1567200720000,"y":0},{"x":1567200780000,"y":0},{"x":1567200840000,"y":0},{"x":1567200900000,"y":0},{"x":1567200960000,"y":0},{"x":1567201020000,"y":0},{"x":1567201080000,"y":0},{"x":1567201140000,"y":0},{"x":1567201200000,"y":0},{"x":1567201260000,"y":0},{"x":1567201320000,"y":0},{"x":1567201380000,"y":0},{"x":1567201440000,"y":0},{"x":1567201500000,"y":0},{"x":1567201560000,"y":0},{"x":1567201620000,"y":0},{"x":1567201680000,"y":0},{"x":1567201740000,"y":0},{"x":1567201800000,"y":0},{"x":1567201860000,"y":0},{"x":1567201920000,"y":0},{"x":1567201980000,"y":0},{"x":1567202040000,"y":0},{"x":1567202100000,"y":0},{"x":1567202160000,"y":0},{"x":1567202220000,"y":0},{"x":1567202280000,"y":0},{"x":1567202340000,"y":0},{"x":1567202400000,"y":0},{"x":1567202460000,"y":0},{"x":1567202520000,"y":0},{"x":1567202580000,"y":0},{"x":1567202640000,"y":0},{"x":1567202700000,"y":0},{"x":1567202760000,"y":0},{"x":1567202820000,"y":0},{"x":1567202880000,"y":0},{"x":1567202940000,"y":0},{"x":1567203000000,"y":0},{"x":1567203060000,"y":0},{"x":1567203120000,"y":0},{"x":1567203180000,"y":0},{"x":1567203240000,"y":0},{"x":1567203300000,"y":0},{"x":1567203360000,"y":0},{"x":1567203420000,"y":0},{"x":1567203480000,"y":0},{"x":1567203540000,"y":0},{"x":1567203600000,"y":0.01},{"x":1567203660000,"y":0},{"x":1567203720000,"y":0},{"x":1567203780000,"y":0},{"x":1567203840000,"y":0},{"x":1567203900000,"y":0},{"x":1567203960000,"y":0},{"x":1567204020000,"y":0},{"x":1567204080000,"y":0},{"x":1567204140000,"y":0},{"x":1567204200000,"y":0},{"x":1567204260000,"y":0},{"x":1567204320000,"y":0},{"x":1567204380000,"y":0},{"x":1567204440000,"y":0},{"x":1567204500000,"y":0},{"x":1567204560000,"y":0},{"x":1567204620000,"y":0},{"x":1567204680000,"y":0},{"x":1567204740000,"y":0},{"x":1567204800000,"y":0},{"x":1567204860000,"y":0},{"x":1567204920000,"y":0},{"x":1567204980000,"y":0},{"x":1567205040000,"y":0},{"x":1567205100000,"y":0},{"x":1567205160000,"y":0},{"x":1567205220000,"y":0},{"x":1567205280000,"y":0},{"x":1567205340000,"y":0},{"x":1567205400000,"y":0},{"x":1567205460000,"y":0},{"x":1567205520000,"y":0},{"x":1567205580000,"y":0},{"x":1567205640000,"y":0},{"x":1567205700000,"y":0},{"x":1567205760000,"y":0},{"x":1567205820000,"y":0},{"x":1567205880000,"y":0},{"x":1567205940000,"y":0},{"x":1567206000000,"y":0},{"x":1567206060000,"y":0.01},{"x":1567206120000,"y":0},{"x":1567206180000,"y":0},{"x":1567206240000,"y":0},{"x":1567206300000,"y":0},{"x":1567206360000,"y":0},{"x":1567206420000,"y":0},{"x":1567206480000,"y":0.01},{"x":1567206540000,"y":0},{"x":1567206600000,"y":0},{"x":1567206660000,"y":0},{"x":1567206720000,"y":0},{"x":1567206780000,"y":0},{"x":1567206840000,"y":0},{"x":1567206900000,"y":0},{"x":1567206960000,"y":0},{"x":1567207020000,"y":0},{"x":1567207080000,"y":0},{"x":1567207140000,"y":0},{"x":1567207200000,"y":0},{"x":1567207260000,"y":0},{"x":1567207320000,"y":0},{"x":1567207380000,"y":0},{"x":1567207440000,"y":0},{"x":1567207500000,"y":0},{"x":1567207560000,"y":0},{"x":1567207620000,"y":0},{"x":1567207680000,"y":0},{"x":1567207740000,"y":0},{"x":1567207800000,"y":0},{"x":1567207860000,"y":0},{"x":1567207920000,"y":0},{"x":1567207980000,"y":0},{"x":1567208040000,"y":0},{"x":1567208100000,"y":0},{"x":1567208160000,"y":0},{"x":1567208220000,"y":0},{"x":1567208280000,"y":0},{"x":1567208340000,"y":0},{"x":1567208400000,"y":0},{"x":1567208460000,"y":0},{"x":1567208520000,"y":0},{"x":1567208580000,"y":0},{"x":1567208640000,"y":0},{"x":1567208700000,"y":0},{"x":1567208760000,"y":0},{"x":1567208820000,"y":0},{"x":1567208880000,"y":0},{"x":1567208940000,"y":0},{"x":1567209000000,"y":0},{"x":1567209060000,"y":0},{"x":1567209120000,"y":0},{"x":1567209180000,"y":0},{"x":1567209240000,"y":0},{"x":1567209300000,"y":0},{"x":1567209360000,"y":0},{"x":1567209420000,"y":0},{"x":1567209480000,"y":0},{"x":1567209540000,"y":0},{"x":1567209600000,"y":0},{"x":1567209660000,"y":0},{"x":1567209720000,"y":0},{"x":1567209780000,"y":0},{"x":1567209840000,"y":0},{"x":1567209900000,"y":0},{"x":1567209960000,"y":0},{"x":1567210020000,"y":0},{"x":1567210080000,"y":0},{"x":1567210140000,"y":0},{"x":1567210200000,"y":0},{"x":1567210260000,"y":0},{"x":1567210320000,"y":0},{"x":1567210380000,"y":0},{"x":1567210440000,"y":0},{"x":1567210500000,"y":0},{"x":1567210560000,"y":0},{"x":1567210620000,"y":0},{"x":1567210680000,"y":0},{"x":1567210740000,"y":0},{"x":1567210800000,"y":0},{"x":1567210860000,"y":0},{"x":1567210920000,"y":0},{"x":1567210980000,"y":0},{"x":1567211040000,"y":0},{"x":1567211100000,"y":0},{"x":1567211160000,"y":0},{"x":1567211220000,"y":0},{"x":1567211280000,"y":0},{"x":1567211340000,"y":0},{"x":1567211400000,"y":0},{"x":1567211460000,"y":0},{"x":1567211520000,"y":0},{"x":1567211580000,"y":0},{"x":1567211640000,"y":0},{"x":1567211700000,"y":0},{"x":1567211760000,"y":0},{"x":1567211820000,"y":0},{"x":1567211880000,"y":0},{"x":1567211940000,"y":0},{"x":1567212000000,"y":0},{"x":1567212060000,"y":0},{"x":1567212120000,"y":0},{"x":1567212180000,"y":0},{"x":1567212240000,"y":0},{"x":1567212300000,"y":0},{"x":1567212360000,"y":0},{"x":1567212420000,"y":0},{"x":1567212480000,"y":0},{"x":1567212540000,"y":0},{"x":1567212600000,"y":0.02},{"x":1567212660000,"y":0},{"x":1567212720000,"y":0},{"x":1567212780000,"y":0},{"x":1567212840000,"y":0.01},{"x":1567212900000,"y":0},{"x":1567212960000,"y":0},{"x":1567213020000,"y":0},{"x":1567213080000,"y":0},{"x":1567213140000,"y":0},{"x":1567213200000,"y":0},{"x":1567213260000,"y":0},{"x":1567213320000,"y":0},{"x":1567213380000,"y":0},{"x":1567213440000,"y":0},{"x":1567213500000,"y":0},{"x":1567213560000,"y":0},{"x":1567213620000,"y":0},{"x":1567213680000,"y":0},{"x":1567213740000,"y":0},{"x":1567213800000,"y":0},{"x":1567213860000,"y":0},{"x":1567213920000,"y":0},{"x":1567213980000,"y":0},{"x":1567214040000,"y":0},{"x":1567214100000,"y":0},{"x":1567214160000,"y":0},{"x":1567214220000,"y":0},{"x":1567214280000,"y":0},{"x":1567214340000,"y":0},{"x":1567214400000,"y":0},{"x":1567214460000,"y":0},{"x":1567214520000,"y":0},{"x":1567214580000,"y":0},{"x":1567214640000,"y":0},{"x":1567214700000,"y":0},{"x":1567214760000,"y":0},{"x":1567214820000,"y":0},{"x":1567214880000,"y":5.88},{"x":1567214940000,"y":9.42},{"x":1567215000000,"y":0},{"x":1567215060000,"y":0},{"x":1567215120000,"y":0},{"x":1567215180000,"y":0},{"x":1567215240000,"y":0},{"x":1567215300000,"y":0},{"x":1567215360000,"y":0},{"x":1567215420000,"y":0},{"x":1567215480000,"y":0},{"x":1567215540000,"y":0},{"x":1567215600000,"y":0},{"x":1567215660000,"y":0},{"x":1567215720000,"y":0},{"x":1567215780000,"y":0},{"x":1567215840000,"y":0},{"x":1567215900000,"y":0},{"x":1567215960000,"y":0},{"x":1567216020000,"y":0},{"x":1567216080000,"y":0},{"x":1567216140000,"y":0},{"x":1567216200000,"y":0},{"x":1567216260000,"y":0},{"x":1567216320000,"y":0},{"x":1567216380000,"y":0},{"x":1567216440000,"y":0},{"x":1567216500000,"y":0},{"x":1567216560000,"y":0},{"x":1567216620000,"y":0},{"x":1567216680000,"y":0},{"x":1567216740000,"y":0},{"x":1567216800000,"y":0},{"x":1567216860000,"y":0},{"x":1567216920000,"y":0},{"x":1567216980000,"y":0},{"x":1567217040000,"y":0},{"x":1567217100000,"y":0},{"x":1567217160000,"y":0},{"x":1567217220000,"y":0},{"x":1567217280000,"y":0},{"x":1567217340000,"y":0},{"x":1567217400000,"y":0},{"x":1567217460000,"y":0},{"x":1567217520000,"y":0},{"x":1567217580000,"y":0},{"x":1567217640000,"y":0},{"x":1567217700000,"y":0},{"x":1567217760000,"y":0},{"x":1567217820000,"y":0},{"x":1567217880000,"y":0},{"x":1567217940000,"y":0},{"x":1567218000000,"y":0},{"x":1567218060000,"y":0},{"x":1567218120000,"y":0},{"x":1567218180000,"y":0},{"x":1567218240000,"y":0},{"x":1567218300000,"y":0},{"x":1567218360000,"y":0},{"x":1567218420000,"y":0},{"x":1567218480000,"y":0},{"x":1567218540000,"y":0},{"x":1567218600000,"y":0},{"x":1567218660000,"y":0},{"x":1567218720000,"y":0},{"x":1567218780000,"y":0},{"x":1567218840000,"y":0},{"x":1567218900000,"y":0},{"x":1567218960000,"y":0},{"x":1567219020000,"y":0},{"x":1567219080000,"y":0},{"x":1567219140000,"y":0},{"x":1567219200000,"y":0},{"x":1567219260000,"y":0},{"x":1567219320000,"y":0},{"x":1567219380000,"y":0},{"x":1567219440000,"y":0},{"x":1567219500000,"y":0},{"x":1567219560000,"y":0},{"x":1567219620000,"y":0},{"x":1567219680000,"y":0},{"x":1567219740000,"y":0},{"x":1567219800000,"y":0},{"x":1567219860000,"y":0},{"x":1567219920000,"y":0},{"x":1567219980000,"y":0},{"x":1567220040000,"y":0},{"x":1567220100000,"y":0},{"x":1567220160000,"y":0},{"x":1567220220000,"y":0},{"x":1567220280000,"y":0},{"x":1567220340000,"y":0},{"x":1567220400000,"y":0},{"x":1567220460000,"y":0},{"x":1567220520000,"y":0},{"x":1567220580000,"y":0},{"x":1567220640000,"y":0},{"x":1567220700000,"y":0},{"x":1567220760000,"y":0},{"x":1567220820000,"y":0},{"x":1567220880000,"y":0},{"x":1567220940000,"y":0},{"x":1567221000000,"y":0},{"x":1567221060000,"y":0},{"x":1567221120000,"y":0},{"x":1567221180000,"y":0},{"x":1567221240000,"y":0},{"x":1567221300000,"y":0},{"x":1567221360000,"y":0},{"x":1567221420000,"y":0},{"x":1567221480000,"y":0},{"x":1567221540000,"y":0},{"x":1567221600000,"y":0},{"x":1567221660000,"y":0},{"x":1567221720000,"y":0},{"x":1567221780000,"y":0},{"x":1567221840000,"y":0},{"x":1567221900000,"y":0},{"x":1567221960000,"y":0},{"x":1567222020000,"y":0},{"x":1567222080000,"y":0},{"x":1567222140000,"y":0},{"x":1567222200000,"y":0},{"x":1567222260000,"y":0},{"x":1567222320000,"y":0},{"x":1567222380000,"y":0},{"x":1567222440000,"y":0},{"x":1567222500000,"y":0},{"x":1567222560000,"y":0},{"x":1567222620000,"y":0},{"x":1567222680000,"y":0},{"x":1567222740000,"y":0.01},{"x":1567222800000,"y":0},{"x":1567222860000,"y":0},{"x":1567222920000,"y":0},{"x":1567222980000,"y":0},{"x":1567223040000,"y":0},{"x":1567223100000,"y":0},{"x":1567223160000,"y":0},{"x":1567223220000,"y":0},{"x":1567223280000,"y":0},{"x":1567223340000,"y":0},{"x":1567223400000,"y":0},{"x":1567223460000,"y":0},{"x":1567223520000,"y":0},{"x":1567223580000,"y":0},{"x":1567223640000,"y":0},{"x":1567223700000,"y":0},{"x":1567223760000,"y":0},{"x":1567223820000,"y":0},{"x":1567223880000,"y":0},{"x":1567223940000,"y":0},{"x":1567224000000,"y":0},{"x":1567224060000,"y":0},{"x":1567224120000,"y":0},{"x":1567224180000,"y":0},{"x":1567224240000,"y":0},{"x":1567224300000,"y":0},{"x":1567224360000,"y":0},{"x":1567224420000,"y":0},{"x":1567224480000,"y":0},{"x":1567224540000,"y":0},{"x":1567224600000,"y":0},{"x":1567224660000,"y":0},{"x":1567224720000,"y":0},{"x":1567224780000,"y":0},{"x":1567224840000,"y":0},{"x":1567224900000,"y":0},{"x":1567224960000,"y":0},{"x":1567225020000,"y":0},{"x":1567225080000,"y":0},{"x":1567225140000,"y":0},{"x":1567225200000,"y":0},{"x":1567225260000,"y":0},{"x":1567225320000,"y":0},{"x":1567225380000,"y":0},{"x":1567225440000,"y":0},{"x":1567225500000,"y":0.01},{"x":1567225560000,"y":0},{"x":1567225620000,"y":0},{"x":1567225680000,"y":0},{"x":1567225740000,"y":0},{"x":1567225800000,"y":0},{"x":1567225860000,"y":0},{"x":1567225920000,"y":0},{"x":1567225980000,"y":0},{"x":1567226040000,"y":0},{"x":1567226100000,"y":0},{"x":1567226160000,"y":0.01},{"x":1567226220000,"y":0},{"x":1567226280000,"y":0},{"x":1567226340000,"y":0},{"x":1567226400000,"y":0},{"x":1567226460000,"y":0},{"x":1567226520000,"y":0},{"x":1567226580000,"y":0},{"x":1567226640000,"y":0},{"x":1567226700000,"y":0},{"x":1567226760000,"y":0},{"x":1567226820000,"y":0},{"x":1567226880000,"y":0},{"x":1567226940000,"y":0},{"x":1567227000000,"y":0},{"x":1567227060000,"y":0},{"x":1567227120000,"y":0},{"x":1567227180000,"y":0},{"x":1567227240000,"y":0},{"x":1567227300000,"y":0},{"x":1567227360000,"y":0},{"x":1567227420000,"y":0},{"x":1567227480000,"y":0},{"x":1567227540000,"y":0},{"x":1567227600000,"y":0},{"x":1567227660000,"y":0},{"x":1567227720000,"y":0},{"x":1567227780000,"y":0},{"x":1567227840000,"y":0},{"x":1567227900000,"y":0},{"x":1567227960000,"y":0},{"x":1567228020000,"y":0},{"x":1567228080000,"y":0},{"x":1567228140000,"y":0},{"x":1567228200000,"y":0},{"x":1567228260000,"y":0},{"x":1567228320000,"y":0},{"x":1567228380000,"y":0},{"x":1567228440000,"y":0},{"x":1567228500000,"y":0},{"x":1567228560000,"y":0},{"x":1567228620000,"y":0},{"x":1567228680000,"y":0},{"x":1567228740000,"y":0},{"x":1567228800000,"y":0},{"x":1567228860000,"y":0},{"x":1567228920000,"y":0},{"x":1567228980000,"y":0},{"x":1567229040000,"y":0},{"x":1567229100000,"y":0},{"x":1567229160000,"y":0},{"x":1567229220000,"y":0},{"x":1567229280000,"y":0},{"x":1567229340000,"y":0},{"x":1567229400000,"y":0},{"x":1567229460000,"y":0},{"x":1567229520000,"y":0},{"x":1567229580000,"y":0},{"x":1567229640000,"y":0},{"x":1567229700000,"y":0},{"x":1567229760000,"y":0},{"x":1567229820000,"y":0},{"x":1567229880000,"y":0},{"x":1567229940000,"y":0},{"x":1567230000000,"y":0},{"x":1567230060000,"y":0},{"x":1567230120000,"y":0},{"x":1567230180000,"y":0},{"x":1567230240000,"y":0},{"x":1567230300000,"y":0},{"x":1567230360000,"y":0},{"x":1567230420000,"y":0},{"x":1567230480000,"y":0},{"x":1567230540000,"y":0},{"x":1567230600000,"y":0},{"x":1567230660000,"y":0},{"x":1567230720000,"y":0},{"x":1567230780000,"y":0},{"x":1567230840000,"y":0},{"x":1567230900000,"y":0},{"x":1567230960000,"y":0},{"x":1567231020000,"y":0},{"x":1567231080000,"y":0},{"x":1567231140000,"y":0},{"x":1567231200000,"y":0},{"x":1567231260000,"y":0},{"x":1567231320000,"y":0},{"x":1567231380000,"y":0},{"x":1567231440000,"y":0},{"x":1567231500000,"y":0},{"x":1567231560000,"y":0},{"x":1567231620000,"y":0},{"x":1567231680000,"y":0},{"x":1567231740000,"y":0},{"x":1567231800000,"y":0},{"x":1567231860000,"y":0},{"x":1567231920000,"y":0},{"x":1567231980000,"y":0},{"x":1567232040000,"y":0},{"x":1567232100000,"y":0},{"x":1567232160000,"y":0},{"x":1567232220000,"y":0},{"x":1567232280000,"y":0},{"x":1567232340000,"y":0},{"x":1567232400000,"y":0},{"x":1567232460000,"y":0},{"x":1567232520000,"y":0},{"x":1567232580000,"y":0},{"x":1567232640000,"y":0},{"x":1567232700000,"y":0},{"x":1567232760000,"y":0},{"x":1567232820000,"y":0},{"x":1567232880000,"y":0},{"x":1567232940000,"y":0},{"x":1567233000000,"y":0},{"x":1567233060000,"y":0},{"x":1567233120000,"y":0},{"x":1567233180000,"y":0},{"x":1567233240000,"y":0},{"x":1567233300000,"y":0},{"x":1567233360000,"y":0},{"x":1567233420000,"y":0},{"x":1567233480000,"y":0},{"x":1567233540000,"y":0},{"x":1567233600000,"y":0.01},{"x":1567233660000,"y":0},{"x":1567233720000,"y":0},{"x":1567233780000,"y":0},{"x":1567233840000,"y":0},{"x":1567233900000,"y":0},{"x":1567233960000,"y":0},{"x":1567234020000,"y":0},{"x":1567234080000,"y":0},{"x":1567234140000,"y":0},{"x":1567234200000,"y":0},{"x":1567234260000,"y":0},{"x":1567234320000,"y":0},{"x":1567234380000,"y":0},{"x":1567234440000,"y":0},{"x":1567234500000,"y":0},{"x":1567234560000,"y":0},{"x":1567234620000,"y":0},{"x":1567234680000,"y":0},{"x":1567234740000,"y":0},{"x":1567234800000,"y":0},{"x":1567234860000,"y":0},{"x":1567234920000,"y":0},{"x":1567234980000,"y":0},{"x":1567235040000,"y":0},{"x":1567235100000,"y":0},{"x":1567235160000,"y":0},{"x":1567235220000,"y":0},{"x":1567235280000,"y":0},{"x":1567235340000,"y":0},{"x":1567235400000,"y":0},{"x":1567235460000,"y":0},{"x":1567235520000,"y":0},{"x":1567235580000,"y":0},{"x":1567235640000,"y":0},{"x":1567235700000,"y":0},{"x":1567235760000,"y":0},{"x":1567235820000,"y":0},{"x":1567235880000,"y":0},{"x":1567235940000,"y":0},{"x":1567236000000,"y":0},{"x":1567236060000,"y":0},{"x":1567236120000,"y":0},{"x":1567236180000,"y":0},{"x":1567236240000,"y":0},{"x":1567236300000,"y":0},{"x":1567236360000,"y":0},{"x":1567236420000,"y":0},{"x":1567236480000,"y":0},{"x":1567236540000,"y":0},{"x":1567236600000,"y":0},{"x":1567236660000,"y":0},{"x":1567236720000,"y":0},{"x":1567236780000,"y":0},{"x":1567236840000,"y":0},{"x":1567236900000,"y":0},{"x":1567236960000,"y":0},{"x":1567237020000,"y":0},{"x":1567237080000,"y":0},{"x":1567237140000,"y":0},{"x":1567237200000,"y":0},{"x":1567237260000,"y":0},{"x":1567237320000,"y":0},{"x":1567237380000,"y":0},{"x":1567237440000,"y":0},{"x":1567237500000,"y":0},{"x":1567237560000,"y":0},{"x":1567237620000,"y":0},{"x":1567237680000,"y":0},{"x":1567237740000,"y":0},{"x":1567237800000,"y":0},{"x":1567237860000,"y":0},{"x":1567237920000,"y":0},{"x":1567237980000,"y":0},{"x":1567238040000,"y":0},{"x":1567238100000,"y":0},{"x":1567238160000,"y":0},{"x":1567238220000,"y":0},{"x":1567238280000,"y":0},{"x":1567238340000,"y":0},{"x":1567238400000,"y":0},{"x":1567238460000,"y":0},{"x":1567238520000,"y":0},{"x":1567238580000,"y":0},{"x":1567238640000,"y":0},{"x":1567238700000,"y":0},{"x":1567238760000,"y":0},{"x":1567238820000,"y":0},{"x":1567238880000,"y":0},{"x":1567238940000,"y":0},{"x":1567239000000,"y":0},{"x":1567239060000,"y":0},{"x":1567239120000,"y":0},{"x":1567239180000,"y":0},{"x":1567239240000,"y":0},{"x":1567239300000,"y":0},{"x":1567239360000,"y":0},{"x":1567239420000,"y":0},{"x":1567239480000,"y":0},{"x":1567239540000,"y":0},{"x":1567239600000,"y":0},{"x":1567239660000,"y":0},{"x":1567239720000,"y":0},{"x":1567239780000,"y":0},{"x":1567239840000,"y":0},{"x":1567239900000,"y":0},{"x":1567239960000,"y":0},{"x":1567240020000,"y":0},{"x":1567240080000,"y":0},{"x":1567240140000,"y":0},{"x":1567240200000,"y":0},{"x":1567240260000,"y":0},{"x":1567240320000,"y":0},{"x":1567240380000,"y":0},{"x":1567240440000,"y":0},{"x":1567240500000,"y":0},{"x":1567240560000,"y":0},{"x":1567240620000,"y":0},{"x":1567240680000,"y":0},{"x":1567240740000,"y":0},{"x":1567240800000,"y":0},{"x":1567240860000,"y":0},{"x":1567240920000,"y":0},{"x":1567240980000,"y":0},{"x":1567241040000,"y":0},{"x":1567241100000,"y":0},{"x":1567241160000,"y":0},{"x":1567241220000,"y":0},{"x":1567241280000,"y":0},{"x":1567241340000,"y":0},{"x":1567241400000,"y":0},{"x":1567241460000,"y":0},{"x":1567241520000,"y":0},{"x":1567241580000,"y":0},{"x":1567241640000,"y":0},{"x":1567241700000,"y":0},{"x":1567241760000,"y":0},{"x":1567241820000,"y":0},{"x":1567241880000,"y":0},{"x":1567241940000,"y":0},{"x":1567242000000,"y":0},{"x":1567242060000,"y":0},{"x":1567242120000,"y":0},{"x":1567242180000,"y":0},{"x":1567242240000,"y":0},{"x":1567242300000,"y":0},{"x":1567242360000,"y":0},{"x":1567242420000,"y":0},{"x":1567242480000,"y":0},{"x":1567242540000,"y":0},{"x":1567242600000,"y":0},{"x":1567242660000,"y":0},{"x":1567242720000,"y":0},{"x":1567242780000,"y":0},{"x":1567242840000,"y":0},{"x":1567242900000,"y":0},{"x":1567242960000,"y":0},{"x":1567243020000,"y":0},{"x":1567243080000,"y":0},{"x":1567243140000,"y":0},{"x":1567243200000,"y":0},{"x":1567243260000,"y":0},{"x":1567243320000,"y":0},{"x":1567243380000,"y":0},{"x":1567243440000,"y":0},{"x":1567243500000,"y":0},{"x":1567243560000,"y":0},{"x":1567243620000,"y":0},{"x":1567243680000,"y":0},{"x":1567243740000,"y":0},{"x":1567243800000,"y":0},{"x":1567243860000,"y":0},{"x":1567243920000,"y":0},{"x":1567243980000,"y":0},{"x":1567244040000,"y":0},{"x":1567244100000,"y":0},{"x":1567244160000,"y":0},{"x":1567244220000,"y":0},{"x":1567244280000,"y":0},{"x":1567244340000,"y":0},{"x":1567244400000,"y":0},{"x":1567244460000,"y":0},{"x":1567244520000,"y":0},{"x":1567244580000,"y":0},{"x":1567244640000,"y":0},{"x":1567244700000,"y":0},{"x":1567244760000,"y":0},{"x":1567244820000,"y":0},{"x":1567244880000,"y":0},{"x":1567244940000,"y":0},{"x":1567245000000,"y":0},{"x":1567245060000,"y":0},{"x":1567245120000,"y":0},{"x":1567245180000,"y":0},{"x":1567245240000,"y":0},{"x":1567245300000,"y":0},{"x":1567245360000,"y":0},{"x":1567245420000,"y":0},{"x":1567245480000,"y":0},{"x":1567245540000,"y":0},{"x":1567245600000,"y":0},{"x":1567245660000,"y":0},{"x":1567245720000,"y":0},{"x":1567245780000,"y":0},{"x":1567245840000,"y":0},{"x":1567245900000,"y":0},{"x":1567245960000,"y":0},{"x":1567246020000,"y":0},{"x":1567246080000,"y":0},{"x":1567246140000,"y":0},{"x":1567246200000,"y":0},{"x":1567246260000,"y":0},{"x":1567246320000,"y":0},{"x":1567246380000,"y":0},{"x":1567246440000,"y":0},{"x":1567246500000,"y":0},{"x":1567246560000,"y":0},{"x":1567246620000,"y":0},{"x":1567246680000,"y":0},{"x":1567246740000,"y":0},{"x":1567246800000,"y":0},{"x":1567246860000,"y":0},{"x":1567246920000,"y":0},{"x":1567246980000,"y":0},{"x":1567247040000,"y":0},{"x":1567247100000,"y":0},{"x":1567247160000,"y":0},{"x":1567247220000,"y":0.01},{"x":1567247280000,"y":0},{"x":1567247340000,"y":0.01},{"x":1567247400000,"y":0},{"x":1567247460000,"y":0},{"x":1567247520000,"y":0},{"x":1567247580000,"y":0},{"x":1567247640000,"y":0},{"x":1567247700000,"y":0},{"x":1567247760000,"y":0},{"x":1567247820000,"y":0},{"x":1567247880000,"y":0},{"x":1567247940000,"y":0},{"x":1567248000000,"y":0},{"x":1567248060000,"y":0},{"x":1567248120000,"y":0},{"x":1567248180000,"y":0},{"x":1567248240000,"y":0},{"x":1567248300000,"y":0},{"x":1567248360000,"y":0},{"x":1567248420000,"y":0},{"x":1567248480000,"y":0},{"x":1567248540000,"y":0},{"x":1567248600000,"y":0},{"x":1567248660000,"y":0},{"x":1567248720000,"y":0},{"x":1567248780000,"y":0},{"x":1567248840000,"y":0},{"x":1567248900000,"y":0},{"x":1567248960000,"y":0},{"x":1567249020000,"y":0},{"x":1567249080000,"y":0},{"x":1567249140000,"y":0},{"x":1567249200000,"y":0},{"x":1567249260000,"y":0},{"x":1567249320000,"y":0},{"x":1567249380000,"y":0},{"x":1567249440000,"y":0},{"x":1567249500000,"y":0},{"x":1567249560000,"y":0},{"x":1567249620000,"y":0},{"x":1567249680000,"y":0},{"x":1567249740000,"y":0},{"x":1567249800000,"y":0},{"x":1567249860000,"y":0},{"x":1567249920000,"y":0},{"x":1567249980000,"y":0},{"x":1567250040000,"y":0},{"x":1567250100000,"y":0},{"x":1567250160000,"y":0},{"x":1567250220000,"y":0},{"x":1567250280000,"y":0.01},{"x":1567250340000,"y":0},{"x":1567250400000,"y":0},{"x":1567250460000,"y":0},{"x":1567250520000,"y":0},{"x":1567250580000,"y":0},{"x":1567250640000,"y":0},{"x":1567250700000,"y":0.01},{"x":1567250760000,"y":0},{"x":1567250820000,"y":0},{"x":1567250880000,"y":0},{"x":1567250940000,"y":0},{"x":1567251000000,"y":0},{"x":1567251060000,"y":0},{"x":1567251120000,"y":0},{"x":1567251180000,"y":0},{"x":1567251240000,"y":0},{"x":1567251300000,"y":0},{"x":1567251360000,"y":0},{"x":1567251420000,"y":0},{"x":1567251480000,"y":0},{"x":1567251540000,"y":0},{"x":1567251600000,"y":0},{"x":1567251660000,"y":0},{"x":1567251720000,"y":0},{"x":1567251780000,"y":0},{"x":1567251840000,"y":0},{"x":1567251900000,"y":0},{"x":1567251960000,"y":0},{"x":1567252020000,"y":0},{"x":1567252080000,"y":0},{"x":1567252140000,"y":0},{"x":1567252200000,"y":0},{"x":1567252260000,"y":0},{"x":1567252320000,"y":0},{"x":1567252380000,"y":0},{"x":1567252440000,"y":0},{"x":1567252500000,"y":0},{"x":1567252560000,"y":0},{"x":1567252620000,"y":0},{"x":1567252680000,"y":0},{"x":1567252740000,"y":0},{"x":1567252800000,"y":0},{"x":1567252860000,"y":0},{"x":1567252920000,"y":0},{"x":1567252980000,"y":0},{"x":1567253040000,"y":0},{"x":1567253100000,"y":0},{"x":1567253160000,"y":0},{"x":1567253220000,"y":0},{"x":1567253280000,"y":0},{"x":1567253340000,"y":0},{"x":1567253400000,"y":0},{"x":1567253460000,"y":0},{"x":1567253520000,"y":0},{"x":1567253580000,"y":0},{"x":1567253640000,"y":0},{"x":1567253700000,"y":0},{"x":1567253760000,"y":0},{"x":1567253820000,"y":0},{"x":1567253880000,"y":0},{"x":1567253940000,"y":0},{"x":1567254000000,"y":0},{"x":1567254060000,"y":0},{"x":1567254120000,"y":0},{"x":1567254180000,"y":0},{"x":1567254240000,"y":0},{"x":1567254300000,"y":0},{"x":1567254360000,"y":0},{"x":1567254420000,"y":0},{"x":1567254480000,"y":0},{"x":1567254540000,"y":0},{"x":1567254600000,"y":0},{"x":1567254660000,"y":0},{"x":1567254720000,"y":0},{"x":1567254780000,"y":0},{"x":1567254840000,"y":0},{"x":1567254900000,"y":0},{"x":1567254960000,"y":0},{"x":1567255020000,"y":0},{"x":1567255080000,"y":0},{"x":1567255140000,"y":0},{"x":1567255200000,"y":0},{"x":1567255260000,"y":0},{"x":1567255320000,"y":0},{"x":1567255380000,"y":0},{"x":1567255440000,"y":0},{"x":1567255500000,"y":0},{"x":1567255560000,"y":0},{"x":1567255620000,"y":0},{"x":1567255680000,"y":0},{"x":1567255740000,"y":0},{"x":1567255800000,"y":0},{"x":1567255860000,"y":0},{"x":1567255920000,"y":0},{"x":1567255980000,"y":0},{"x":1567256040000,"y":0},{"x":1567256100000,"y":0},{"x":1567256160000,"y":0},{"x":1567256220000,"y":0},{"x":1567256280000,"y":0},{"x":1567256340000,"y":0.04},{"x":1567256400000,"y":0},{"x":1567256460000,"y":0},{"x":1567256520000,"y":0},{"x":1567256580000,"y":0},{"x":1567256640000,"y":0},{"x":1567256700000,"y":0},{"x":1567256760000,"y":0},{"x":1567256820000,"y":0},{"x":1567256880000,"y":0},{"x":1567256940000,"y":0},{"x":1567257000000,"y":0},{"x":1567257060000,"y":0},{"x":1567257120000,"y":0},{"x":1567257180000,"y":0},{"x":1567257240000,"y":0},{"x":1567257300000,"y":0},{"x":1567257360000,"y":0},{"x":1567257420000,"y":0},{"x":1567257480000,"y":0},{"x":1567257540000,"y":0},{"x":1567257600000,"y":0},{"x":1567257660000,"y":0},{"x":1567257720000,"y":0},{"x":1567257780000,"y":0},{"x":1567257840000,"y":0},{"x":1567257900000,"y":0},{"x":1567257960000,"y":0},{"x":1567258020000,"y":0},{"x":1567258080000,"y":0},{"x":1567258140000,"y":0},{"x":1567258200000,"y":0},{"x":1567258260000,"y":0},{"x":1567258320000,"y":0},{"x":1567258380000,"y":0},{"x":1567258440000,"y":0},{"x":1567258500000,"y":0},{"x":1567258560000,"y":0},{"x":1567258620000,"y":0},{"x":1567258680000,"y":0},{"x":1567258740000,"y":0},{"x":1567258800000,"y":0},{"x":1567258860000,"y":0},{"x":1567258920000,"y":0},{"x":1567258980000,"y":0},{"x":1567259040000,"y":0},{"x":1567259100000,"y":0},{"x":1567259160000,"y":0},{"x":1567259220000,"y":0},{"x":1567259280000,"y":0},{"x":1567259340000,"y":0},{"x":1567259400000,"y":0},{"x":1567259460000,"y":0},{"x":1567259520000,"y":0},{"x":1567259580000,"y":0},{"x":1567259640000,"y":0},{"x":1567259700000,"y":0},{"x":1567259760000,"y":0},{"x":1567259820000,"y":0},{"x":1567259880000,"y":0},{"x":1567259940000,"y":0},{"x":1567260000000,"y":0},{"x":1567260060000,"y":0},{"x":1567260120000,"y":0},{"x":1567260180000,"y":0},{"x":1567260240000,"y":0},{"x":1567260300000,"y":0},{"x":1567260360000,"y":0},{"x":1567260420000,"y":0},{"x":1567260480000,"y":0},{"x":1567260540000,"y":0},{"x":1567260600000,"y":0},{"x":1567260660000,"y":0},{"x":1567260720000,"y":0},{"x":1567260780000,"y":0},{"x":1567260840000,"y":0},{"x":1567260900000,"y":0},{"x":1567260960000,"y":0},{"x":1567261020000,"y":0},{"x":1567261080000,"y":0},{"x":1567261140000,"y":0},{"x":1567261200000,"y":0},{"x":1567261260000,"y":0},{"x":1567261320000,"y":0},{"x":1567261380000,"y":0},{"x":1567261440000,"y":0},{"x":1567261500000,"y":0},{"x":1567261560000,"y":0},{"x":1567261620000,"y":0},{"x":1567261680000,"y":0},{"x":1567261740000,"y":0},{"x":1567261800000,"y":0},{"x":1567261860000,"y":0.05},{"x":1567261920000,"y":0.06},{"x":1567261980000,"y":0.06},{"x":1567262040000,"y":0.01},{"x":1567262100000,"y":0},{"x":1567262160000,"y":0},{"x":1567262220000,"y":0},{"x":1567262280000,"y":0},{"x":1567262340000,"y":0},{"x":1567262400000,"y":0},{"x":1567262460000,"y":0},{"x":1567262520000,"y":0},{"x":1567262580000,"y":0},{"x":1567262640000,"y":0},{"x":1567262700000,"y":0},{"x":1567262760000,"y":0},{"x":1567262820000,"y":0},{"x":1567262880000,"y":0},{"x":1567262940000,"y":0},{"x":1567263000000,"y":0},{"x":1567263060000,"y":0},{"x":1567263120000,"y":0},{"x":1567263180000,"y":0},{"x":1567263240000,"y":0},{"x":1567263300000,"y":0},{"x":1567263360000,"y":0},{"x":1567263420000,"y":0},{"x":1567263480000,"y":0},{"x":1567263540000,"y":0},{"x":1567263600000,"y":0},{"x":1567263660000,"y":0},{"x":1567263720000,"y":0},{"x":1567263780000,"y":0},{"x":1567263840000,"y":0},{"x":1567263900000,"y":0},{"x":1567263960000,"y":0},{"x":1567264020000,"y":0},{"x":1567264080000,"y":0},{"x":1567264140000,"y":0},{"x":1567264200000,"y":0},{"x":1567264260000,"y":0},{"x":1567264320000,"y":0},{"x":1567264380000,"y":0},{"x":1567264440000,"y":0},{"x":1567264500000,"y":0},{"x":1567264560000,"y":0},{"x":1567264620000,"y":0},{"x":1567264680000,"y":0},{"x":1567264740000,"y":0},{"x":1567264800000,"y":0},{"x":1567264860000,"y":0},{"x":1567264920000,"y":0},{"x":1567264980000,"y":0},{"x":1567265040000,"y":0},{"x":1567265100000,"y":0},{"x":1567265160000,"y":0},{"x":1567265220000,"y":0},{"x":1567265280000,"y":0},{"x":1567265340000,"y":0},{"x":1567265400000,"y":0},{"x":1567265460000,"y":0},{"x":1567265520000,"y":0},{"x":1567265580000,"y":0},{"x":1567265640000,"y":0},{"x":1567265700000,"y":0},{"x":1567265760000,"y":0},{"x":1567265820000,"y":0},{"x":1567265880000,"y":0},{"x":1567265940000,"y":0},{"x":1567266000000,"y":0},{"x":1567266060000,"y":0.02},{"x":1567266120000,"y":0},{"x":1567266180000,"y":0},{"x":1567266240000,"y":0},{"x":1567266300000,"y":0},{"x":1567266360000,"y":0},{"x":1567266420000,"y":0},{"x":1567266480000,"y":0},{"x":1567266540000,"y":0},{"x":1567266600000,"y":0},{"x":1567266660000,"y":0},{"x":1567266720000,"y":0},{"x":1567266780000,"y":0},{"x":1567266840000,"y":0},{"x":1567266900000,"y":0},{"x":1567266960000,"y":0},{"x":1567267020000,"y":0},{"x":1567267080000,"y":0},{"x":1567267140000,"y":0},{"x":1567267200000,"y":0},{"x":1567267260000,"y":0},{"x":1567267320000,"y":0},{"x":1567267380000,"y":0},{"x":1567267440000,"y":0},{"x":1567267500000,"y":0},{"x":1567267560000,"y":0},{"x":1567267620000,"y":0},{"x":1567267680000,"y":0},{"x":1567267740000,"y":0},{"x":1567267800000,"y":0},{"x":1567267860000,"y":0},{"x":1567267920000,"y":0},{"x":1567267980000,"y":0},{"x":1567268040000,"y":0},{"x":1567268100000,"y":0},{"x":1567268160000,"y":0},{"x":1567268220000,"y":0},{"x":1567268280000,"y":0},{"x":1567268340000,"y":0},{"x":1567268400000,"y":0},{"x":1567268460000,"y":0},{"x":1567268520000,"y":0},{"x":1567268580000,"y":0},{"x":1567268640000,"y":0},{"x":1567268700000,"y":0},{"x":1567268760000,"y":0},{"x":1567268820000,"y":0},{"x":1567268880000,"y":0},{"x":1567268940000,"y":0},{"x":1567269000000,"y":0},{"x":1567269060000,"y":0},{"x":1567269120000,"y":0},{"x":1567269180000,"y":0.01},{"x":1567269240000,"y":0},{"x":1567269300000,"y":0},{"x":1567269360000,"y":0},{"x":1567269420000,"y":0},{"x":1567269480000,"y":0},{"x":1567269540000,"y":0},{"x":1567269600000,"y":0},{"x":1567269660000,"y":0},{"x":1567269720000,"y":0},{"x":1567269780000,"y":0},{"x":1567269840000,"y":0},{"x":1567269900000,"y":0},{"x":1567269960000,"y":0},{"x":1567270020000,"y":0},{"x":1567270080000,"y":0},{"x":1567270140000,"y":0},{"x":1567270200000,"y":0},{"x":1567270260000,"y":0},{"x":1567270320000,"y":0},{"x":1567270380000,"y":0},{"x":1567270440000,"y":0},{"x":1567270500000,"y":0},{"x":1567270560000,"y":0},{"x":1567270620000,"y":0},{"x":1567270680000,"y":0},{"x":1567270740000,"y":0},{"x":1567270800000,"y":0},{"x":1567270860000,"y":0},{"x":1567270920000,"y":0},{"x":1567270980000,"y":0},{"x":1567271040000,"y":0},{"x":1567271100000,"y":0},{"x":1567271160000,"y":0},{"x":1567271220000,"y":0},{"x":1567271280000,"y":0},{"x":1567271340000,"y":0},{"x":1567271400000,"y":0},{"x":1567271460000,"y":0},{"x":1567271520000,"y":0},{"x":1567271580000,"y":0},{"x":1567271640000,"y":0},{"x":1567271700000,"y":0},{"x":1567271760000,"y":0},{"x":1567271820000,"y":0},{"x":1567271880000,"y":0},{"x":1567271940000,"y":0},{"x":1567272000000,"y":0},{"x":1567272060000,"y":0},{"x":1567272120000,"y":0},{"x":1567272180000,"y":0},{"x":1567272240000,"y":0},{"x":1567272300000,"y":0},{"x":1567272360000,"y":0},{"x":1567272420000,"y":0},{"x":1567272480000,"y":0},{"x":1567272540000,"y":0},{"x":1567272600000,"y":0},{"x":1567272660000,"y":0},{"x":1567272720000,"y":0},{"x":1567272780000,"y":0},{"x":1567272840000,"y":0},{"x":1567272900000,"y":0},{"x":1567272960000,"y":0},{"x":1567273020000,"y":0},{"x":1567273080000,"y":0},{"x":1567273140000,"y":0},{"x":1567273200000,"y":0},{"x":1567273260000,"y":0},{"x":1567273320000,"y":0},{"x":1567273380000,"y":0},{"x":1567273440000,"y":0},{"x":1567273500000,"y":0},{"x":1567273560000,"y":0},{"x":1567273620000,"y":0},{"x":1567273680000,"y":0},{"x":1567273740000,"y":0},{"x":1567273800000,"y":0},{"x":1567273860000,"y":0},{"x":1567273920000,"y":0},{"x":1567273980000,"y":0},{"x":1567274040000,"y":0},{"x":1567274100000,"y":0},{"x":1567274160000,"y":0},{"x":1567274220000,"y":0},{"x":1567274280000,"y":0},{"x":1567274340000,"y":0},{"x":1567274400000,"y":0},{"x":1567274460000,"y":0},{"x":1567274520000,"y":0},{"x":1567274580000,"y":0},{"x":1567274640000,"y":0},{"x":1567274700000,"y":0},{"x":1567274760000,"y":0},{"x":1567274820000,"y":0},{"x":1567274880000,"y":0},{"x":1567274940000,"y":0},{"x":1567275000000,"y":0},{"x":1567275060000,"y":0},{"x":1567275120000,"y":0},{"x":1567275180000,"y":0},{"x":1567275240000,"y":0},{"x":1567275300000,"y":0},{"x":1567275360000,"y":0},{"x":1567275420000,"y":0},{"x":1567275480000,"y":0},{"x":1567275540000,"y":0},{"x":1567275600000,"y":0},{"x":1567275660000,"y":0},{"x":1567275720000,"y":0},{"x":1567275780000,"y":0},{"x":1567275840000,"y":0},{"x":1567275900000,"y":0},{"x":1567275960000,"y":0},{"x":1567276020000,"y":0},{"x":1567276080000,"y":0},{"x":1567276140000,"y":0},{"x":1567276200000,"y":0},{"x":1567276260000,"y":0},{"x":1567276320000,"y":0},{"x":1567276380000,"y":0},{"x":1567276440000,"y":0},{"x":1567276500000,"y":0},{"x":1567276560000,"y":0},{"x":1567276620000,"y":0},{"x":1567276680000,"y":0},{"x":1567276740000,"y":0},{"x":1567276800000,"y":0},{"x":1567276860000,"y":0},{"x":1567276920000,"y":0},{"x":1567276980000,"y":0},{"x":1567277040000,"y":0},{"x":1567277100000,"y":0},{"x":1567277160000,"y":0},{"x":1567277220000,"y":0},{"x":1567277280000,"y":0},{"x":1567277340000,"y":0},{"x":1567277400000,"y":0},{"x":1567277460000,"y":0},{"x":1567277520000,"y":0},{"x":1567277580000,"y":0},{"x":1567277640000,"y":0},{"x":1567277700000,"y":0},{"x":1567277760000,"y":0},{"x":1567277820000,"y":0},{"x":1567277880000,"y":0},{"x":1567277940000,"y":0},{"x":1567278000000,"y":0},{"x":1567278060000,"y":0},{"x":1567278120000,"y":0},{"x":1567278180000,"y":0},{"x":1567278240000,"y":0},{"x":1567278300000,"y":0},{"x":1567278360000,"y":0},{"x":1567278420000,"y":0},{"x":1567278480000,"y":0},{"x":1567278540000,"y":0},{"x":1567278600000,"y":0},{"x":1567278660000,"y":0},{"x":1567278720000,"y":0},{"x":1567278780000,"y":0},{"x":1567278840000,"y":0},{"x":1567278900000,"y":0},{"x":1567278960000,"y":0},{"x":1567279020000,"y":0},{"x":1567279080000,"y":0},{"x":1567279140000,"y":0},{"x":1567279200000,"y":0},{"x":1567279260000,"y":0},{"x":1567279320000,"y":0},{"x":1567279380000,"y":0},{"x":1567279440000,"y":0},{"x":1567279500000,"y":0},{"x":1567279560000,"y":0},{"x":1567279620000,"y":0},{"x":1567279680000,"y":0},{"x":1567279740000,"y":0},{"x":1567279800000,"y":0},{"x":1567279860000,"y":0},{"x":1567279920000,"y":0},{"x":1567279980000,"y":0},{"x":1567280040000,"y":0},{"x":1567280100000,"y":0},{"x":1567280160000,"y":0},{"x":1567280220000,"y":0},{"x":1567280280000,"y":0},{"x":1567280340000,"y":0},{"x":1567280400000,"y":0},{"x":1567280460000,"y":0},{"x":1567280520000,"y":0.01},{"x":1567280580000,"y":0},{"x":1567280640000,"y":0},{"x":1567280700000,"y":0},{"x":1567280760000,"y":0},{"x":1567280820000,"y":0},{"x":1567280880000,"y":0},{"x":1567280940000,"y":0},{"x":1567281000000,"y":0},{"x":1567281060000,"y":0},{"x":1567281120000,"y":0},{"x":1567281180000,"y":0},{"x":1567281240000,"y":0},{"x":1567281300000,"y":0},{"x":1567281360000,"y":0},{"x":1567281420000,"y":0.02},{"x":1567281480000,"y":0},{"x":1567281540000,"y":0},{"x":1567281600000,"y":0},{"x":1567281660000,"y":0},{"x":1567281720000,"y":0},{"x":1567281780000,"y":0},{"x":1567281840000,"y":0},{"x":1567281900000,"y":0},{"x":1567281960000,"y":0},{"x":1567282020000,"y":0},{"x":1567282080000,"y":0},{"x":1567282140000,"y":0},{"x":1567282200000,"y":0},{"x":1567282260000,"y":0},{"x":1567282320000,"y":0},{"x":1567282380000,"y":0},{"x":1567282440000,"y":0},{"x":1567282500000,"y":0},{"x":1567282560000,"y":0},{"x":1567282620000,"y":0},{"x":1567282680000,"y":0},{"x":1567282740000,"y":0},{"x":1567282800000,"y":0},{"x":1567282860000,"y":0},{"x":1567282920000,"y":0},{"x":1567282980000,"y":0},{"x":1567283040000,"y":0},{"x":1567283100000,"y":0},{"x":1567283160000,"y":0},{"x":1567283220000,"y":0},{"x":1567283280000,"y":0},{"x":1567283340000,"y":0},{"x":1567283400000,"y":0},{"x":1567283460000,"y":0},{"x":1567283520000,"y":0},{"x":1567283580000,"y":0},{"x":1567283640000,"y":0},{"x":1567283700000,"y":0},{"x":1567283760000,"y":0},{"x":1567283820000,"y":0.01},{"x":1567283880000,"y":0},{"x":1567283940000,"y":0},{"x":1567284000000,"y":0},{"x":1567284060000,"y":0},{"x":1567284120000,"y":0},{"x":1567284180000,"y":0},{"x":1567284240000,"y":0},{"x":1567284300000,"y":0},{"x":1567284360000,"y":0},{"x":1567284420000,"y":0},{"x":1567284480000,"y":0},{"x":1567284540000,"y":0},{"x":1567284600000,"y":0},{"x":1567284660000,"y":0},{"x":1567284720000,"y":0},{"x":1567284780000,"y":0},{"x":1567284840000,"y":0},{"x":1567284900000,"y":0},{"x":1567284960000,"y":0},{"x":1567285020000,"y":0},{"x":1567285080000,"y":0},{"x":1567285140000,"y":0},{"x":1567285200000,"y":0},{"x":1567285260000,"y":0},{"x":1567285320000,"y":0},{"x":1567285380000,"y":0},{"x":1567285440000,"y":0},{"x":1567285500000,"y":0},{"x":1567285560000,"y":0},{"x":1567285620000,"y":0},{"x":1567285680000,"y":0},{"x":1567285740000,"y":0},{"x":1567285800000,"y":0},{"x":1567285860000,"y":0},{"x":1567285920000,"y":0},{"x":1567285980000,"y":0},{"x":1567286040000,"y":0},{"x":1567286100000,"y":0},{"x":1567286160000,"y":0},{"x":1567286220000,"y":0},{"x":1567286280000,"y":0},{"x":1567286340000,"y":0},{"x":1567286400000,"y":0},{"x":1567286460000,"y":0},{"x":1567286520000,"y":0},{"x":1567286580000,"y":0},{"x":1567286640000,"y":0},{"x":1567286700000,"y":0},{"x":1567286760000,"y":0},{"x":1567286820000,"y":0},{"x":1567286880000,"y":0},{"x":1567286940000,"y":0},{"x":1567287000000,"y":0},{"x":1567287060000,"y":0},{"x":1567287120000,"y":0},{"x":1567287180000,"y":0},{"x":1567287240000,"y":0},{"x":1567287300000,"y":0},{"x":1567287360000,"y":0},{"x":1567287420000,"y":0},{"x":1567287480000,"y":0},{"x":1567287540000,"y":0},{"x":1567287600000,"y":0},{"x":1567287660000,"y":0},{"x":1567287720000,"y":0},{"x":1567287780000,"y":0},{"x":1567287840000,"y":0},{"x":1567287900000,"y":0},{"x":1567287960000,"y":0},{"x":1567288020000,"y":0},{"x":1567288080000,"y":0},{"x":1567288140000,"y":0},{"x":1567288200000,"y":0},{"x":1567288260000,"y":0},{"x":1567288320000,"y":0},{"x":1567288380000,"y":0},{"x":1567288440000,"y":0},{"x":1567288500000,"y":0},{"x":1567288560000,"y":0},{"x":1567288620000,"y":0},{"x":1567288680000,"y":0},{"x":1567288740000,"y":0},{"x":1567288800000,"y":0},{"x":1567288860000,"y":0},{"x":1567288920000,"y":0},{"x":1567288980000,"y":0},{"x":1567289040000,"y":0},{"x":1567289100000,"y":0},{"x":1567289160000,"y":0},{"x":1567289220000,"y":0},{"x":1567289280000,"y":0},{"x":1567289340000,"y":0.01},{"x":1567289400000,"y":0},{"x":1567289460000,"y":0},{"x":1567289520000,"y":0},{"x":1567289580000,"y":0},{"x":1567289640000,"y":0},{"x":1567289700000,"y":0},{"x":1567289760000,"y":0},{"x":1567289820000,"y":0},{"x":1567289880000,"y":0},{"x":1567289940000,"y":0},{"x":1567290000000,"y":0},{"x":1567290060000,"y":0},{"x":1567290120000,"y":0},{"x":1567290180000,"y":0},{"x":1567290240000,"y":0},{"x":1567290300000,"y":0},{"x":1567290360000,"y":0},{"x":1567290420000,"y":0},{"x":1567290480000,"y":0},{"x":1567290540000,"y":0},{"x":1567290600000,"y":0},{"x":1567290660000,"y":0},{"x":1567290720000,"y":0},{"x":1567290780000,"y":0.01},{"x":1567290840000,"y":0},{"x":1567290900000,"y":0},{"x":1567290960000,"y":0},{"x":1567291020000,"y":0.61},{"x":1567291080000,"y":0.01},{"x":1567291140000,"y":0},{"x":1567291200000,"y":0},{"x":1567291260000,"y":0},{"x":1567291320000,"y":0},{"x":1567291380000,"y":0},{"x":1567291440000,"y":0},{"x":1567291500000,"y":0},{"x":1567291560000,"y":0},{"x":1567291620000,"y":0},{"x":1567291680000,"y":0},{"x":1567291740000,"y":0},{"x":1567291800000,"y":0},{"x":1567291860000,"y":0},{"x":1567291920000,"y":0},{"x":1567291980000,"y":0},{"x":1567292040000,"y":0},{"x":1567292100000,"y":0},{"x":1567292160000,"y":0},{"x":1567292220000,"y":0},{"x":1567292280000,"y":0},{"x":1567292340000,"y":0},{"x":1567292400000,"y":0},{"x":1567292460000,"y":0},{"x":1567292520000,"y":0},{"x":1567292580000,"y":0},{"x":1567292640000,"y":0},{"x":1567292700000,"y":0},{"x":1567292760000,"y":0},{"x":1567292820000,"y":0},{"x":1567292880000,"y":0},{"x":1567292940000,"y":0},{"x":1567293000000,"y":0},{"x":1567293060000,"y":0},{"x":1567293120000,"y":0},{"x":1567293180000,"y":0},{"x":1567293240000,"y":0},{"x":1567293300000,"y":0},{"x":1567293360000,"y":0},{"x":1567293420000,"y":0},{"x":1567293480000,"y":0},{"x":1567293540000,"y":0},{"x":1567293600000,"y":0},{"x":1567293660000,"y":0},{"x":1567293720000,"y":0},{"x":1567293780000,"y":0},{"x":1567293840000,"y":0},{"x":1567293900000,"y":0},{"x":1567293960000,"y":0},{"x":1567294020000,"y":0},{"x":1567294080000,"y":0},{"x":1567294140000,"y":0},{"x":1567294200000,"y":0},{"x":1567294260000,"y":0.01},{"x":1567294320000,"y":0},{"x":1567294380000,"y":0},{"x":1567294440000,"y":0},{"x":1567294500000,"y":0},{"x":1567294560000,"y":0},{"x":1567294620000,"y":0},{"x":1567294680000,"y":0},{"x":1567294740000,"y":0},{"x":1567294800000,"y":0},{"x":1567294860000,"y":0},{"x":1567294920000,"y":0},{"x":1567294980000,"y":0},{"x":1567295040000,"y":0},{"x":1567295100000,"y":0},{"x":1567295160000,"y":0},{"x":1567295220000,"y":0},{"x":1567295280000,"y":0},{"x":1567295340000,"y":0},{"x":1567295400000,"y":0},{"x":1567295460000,"y":0},{"x":1567295520000,"y":0},{"x":1567295580000,"y":0},{"x":1567295640000,"y":0},{"x":1567295700000,"y":0},{"x":1567295760000,"y":0},{"x":1567295820000,"y":0},{"x":1567295880000,"y":0},{"x":1567295940000,"y":0},{"x":1567296000000,"y":0},{"x":1567296060000,"y":0},{"x":1567296120000,"y":0},{"x":1567296180000,"y":0},{"x":1567296240000,"y":0},{"x":1567296300000,"y":0},{"x":1567296360000,"y":0},{"x":1567296420000,"y":0},{"x":1567296480000,"y":0},{"x":1567296540000,"y":0},{"x":1567296600000,"y":0},{"x":1567296660000,"y":0},{"x":1567296720000,"y":0.01},{"x":1567296780000,"y":0},{"x":1567296840000,"y":0},{"x":1567296900000,"y":0},{"x":1567296960000,"y":0},{"x":1567297020000,"y":0},{"x":1567297080000,"y":0},{"x":1567297140000,"y":0},{"x":1567297200000,"y":0},{"x":1567297260000,"y":0},{"x":1567297320000,"y":0},{"x":1567297380000,"y":0},{"x":1567297440000,"y":0},{"x":1567297500000,"y":0},{"x":1567297560000,"y":0},{"x":1567297620000,"y":0},{"x":1567297680000,"y":0},{"x":1567297740000,"y":0},{"x":1567297800000,"y":0},{"x":1567297860000,"y":0},{"x":1567297920000,"y":0},{"x":1567297980000,"y":0},{"x":1567298040000,"y":0},{"x":1567298100000,"y":0},{"x":1567298160000,"y":0},{"x":1567298220000,"y":0},{"x":1567298280000,"y":0},{"x":1567298340000,"y":0},{"x":1567298400000,"y":0.01},{"x":1567298460000,"y":0},{"x":1567298520000,"y":0},{"x":1567298580000,"y":0},{"x":1567298640000,"y":0},{"x":1567298700000,"y":0},{"x":1567298760000,"y":0},{"x":1567298820000,"y":0},{"x":1567298880000,"y":0},{"x":1567298940000,"y":0},{"x":1567299000000,"y":0},{"x":1567299060000,"y":0},{"x":1567299120000,"y":0},{"x":1567299180000,"y":0},{"x":1567299240000,"y":0},{"x":1567299300000,"y":0},{"x":1567299360000,"y":0},{"x":1567299420000,"y":0},{"x":1567299480000,"y":0},{"x":1567299540000,"y":0},{"x":1567299600000,"y":0},{"x":1567299660000,"y":0},{"x":1567299720000,"y":0},{"x":1567299780000,"y":0},{"x":1567299840000,"y":0},{"x":1567299900000,"y":0},{"x":1567299960000,"y":0},{"x":1567300020000,"y":0},{"x":1567300080000,"y":0},{"x":1567300140000,"y":0},{"x":1567300200000,"y":0},{"x":1567300260000,"y":0},{"x":1567300320000,"y":0},{"x":1567300380000,"y":0},{"x":1567300440000,"y":0},{"x":1567300500000,"y":0},{"x":1567300560000,"y":0},{"x":1567300620000,"y":0},{"x":1567300680000,"y":0},{"x":1567300740000,"y":0},{"x":1567300800000,"y":0},{"x":1567300860000,"y":0},{"x":1567300920000,"y":0},{"x":1567300980000,"y":0},{"x":1567301040000,"y":0},{"x":1567301100000,"y":0.01},{"x":1567301160000,"y":0},{"x":1567301220000,"y":0},{"x":1567301280000,"y":0},{"x":1567301340000,"y":0},{"x":1567301400000,"y":0},{"x":1567301460000,"y":0},{"x":1567301520000,"y":0},{"x":1567301580000,"y":0},{"x":1567301640000,"y":0},{"x":1567301700000,"y":0},{"x":1567301760000,"y":0},{"x":1567301820000,"y":0},{"x":1567301880000,"y":0.01},{"x":1567301940000,"y":0},{"x":1567302000000,"y":0},{"x":1567302060000,"y":0},{"x":1567302120000,"y":0},{"x":1567302180000,"y":0},{"x":1567302240000,"y":0},{"x":1567302300000,"y":0},{"x":1567302360000,"y":0},{"x":1567302420000,"y":0},{"x":1567302480000,"y":0},{"x":1567302540000,"y":0},{"x":1567302600000,"y":0},{"x":1567302660000,"y":0},{"x":1567302720000,"y":0},{"x":1567302780000,"y":0},{"x":1567302840000,"y":0},{"x":1567302900000,"y":0},{"x":1567302960000,"y":0},{"x":1567303020000,"y":0},{"x":1567303080000,"y":0},{"x":1567303140000,"y":0},{"x":1567303200000,"y":0},{"x":1567303260000,"y":0},{"x":1567303320000,"y":0},{"x":1567303380000,"y":0},{"x":1567303440000,"y":0},{"x":1567303500000,"y":0},{"x":1567303560000,"y":0},{"x":1567303620000,"y":0},{"x":1567303680000,"y":0},{"x":1567303740000,"y":0},{"x":1567303800000,"y":0},{"x":1567303860000,"y":0},{"x":1567303920000,"y":0},{"x":1567303980000,"y":0},{"x":1567304040000,"y":0},{"x":1567304100000,"y":0},{"x":1567304160000,"y":0},{"x":1567304220000,"y":0},{"x":1567304280000,"y":0},{"x":1567304340000,"y":0},{"x":1567304400000,"y":0},{"x":1567304460000,"y":0},{"x":1567304520000,"y":0},{"x":1567304580000,"y":0},{"x":1567304640000,"y":0},{"x":1567304700000,"y":0},{"x":1567304760000,"y":0},{"x":1567304820000,"y":0},{"x":1567304880000,"y":0},{"x":1567304940000,"y":0},{"x":1567305000000,"y":0},{"x":1567305060000,"y":0},{"x":1567305120000,"y":0},{"x":1567305180000,"y":0},{"x":1567305240000,"y":0},{"x":1567305300000,"y":0},{"x":1567305360000,"y":0},{"x":1567305420000,"y":0},{"x":1567305480000,"y":0},{"x":1567305540000,"y":0},{"x":1567305600000,"y":0.07},{"x":1567305660000,"y":0},{"x":1567305720000,"y":0},{"x":1567305780000,"y":0},{"x":1567305840000,"y":0},{"x":1567305900000,"y":0},{"x":1567305960000,"y":0},{"x":1567306020000,"y":0},{"x":1567306080000,"y":0},{"x":1567306140000,"y":0},{"x":1567306200000,"y":0},{"x":1567306260000,"y":0},{"x":1567306320000,"y":0},{"x":1567306380000,"y":0.01},{"x":1567306440000,"y":0},{"x":1567306500000,"y":0},{"x":1567306560000,"y":0},{"x":1567306620000,"y":0},{"x":1567306680000,"y":0},{"x":1567306740000,"y":0},{"x":1567306800000,"y":0},{"x":1567306860000,"y":0},{"x":1567306920000,"y":0},{"x":1567306980000,"y":0},{"x":1567307040000,"y":0},{"x":1567307100000,"y":0},{"x":1567307160000,"y":0},{"x":1567307220000,"y":0},{"x":1567307280000,"y":0},{"x":1567307340000,"y":0},{"x":1567307400000,"y":0},{"x":1567307460000,"y":0},{"x":1567307520000,"y":0},{"x":1567307580000,"y":0},{"x":1567307640000,"y":0},{"x":1567307700000,"y":0},{"x":1567307760000,"y":0},{"x":1567307820000,"y":0},{"x":1567307880000,"y":0},{"x":1567307940000,"y":0},{"x":1567308000000,"y":0},{"x":1567308060000,"y":0},{"x":1567308120000,"y":0},{"x":1567308180000,"y":0},{"x":1567308240000,"y":0},{"x":1567308300000,"y":0},{"x":1567308360000,"y":0},{"x":1567308420000,"y":0},{"x":1567308480000,"y":0},{"x":1567308540000,"y":0},{"x":1567308600000,"y":0},{"x":1567308660000,"y":0},{"x":1567308720000,"y":0},{"x":1567308780000,"y":0},{"x":1567308840000,"y":0},{"x":1567308900000,"y":0},{"x":1567308960000,"y":0},{"x":1567309020000,"y":0},{"x":1567309080000,"y":0},{"x":1567309140000,"y":0},{"x":1567309200000,"y":0},{"x":1567309260000,"y":0},{"x":1567309320000,"y":0},{"x":1567309380000,"y":0},{"x":1567309440000,"y":0},{"x":1567309500000,"y":0},{"x":1567309560000,"y":0},{"x":1567309620000,"y":0},{"x":1567309680000,"y":0},{"x":1567309740000,"y":0},{"x":1567309800000,"y":0},{"x":1567309860000,"y":0},{"x":1567309920000,"y":0},{"x":1567309980000,"y":0},{"x":1567310040000,"y":0},{"x":1567310100000,"y":0},{"x":1567310160000,"y":0},{"x":1567310220000,"y":0},{"x":1567310280000,"y":0},{"x":1567310340000,"y":0},{"x":1567310400000,"y":0},{"x":1567310460000,"y":0},{"x":1567310520000,"y":0},{"x":1567310580000,"y":0},{"x":1567310640000,"y":0},{"x":1567310700000,"y":0},{"x":1567310760000,"y":0},{"x":1567310820000,"y":0},{"x":1567310880000,"y":0},{"x":1567310940000,"y":0},{"x":1567311000000,"y":0},{"x":1567311060000,"y":0},{"x":1567311120000,"y":0.7},{"x":1567311180000,"y":0},{"x":1567311240000,"y":0},{"x":1567311300000,"y":0},{"x":1567311360000,"y":0},{"x":1567311420000,"y":0},{"x":1567311480000,"y":0},{"x":1567311540000,"y":0},{"x":1567311600000,"y":0},{"x":1567311660000,"y":0},{"x":1567311720000,"y":0},{"x":1567311780000,"y":0},{"x":1567311840000,"y":0},{"x":1567311900000,"y":0},{"x":1567311960000,"y":0},{"x":1567312020000,"y":0},{"x":1567312080000,"y":0},{"x":1567312140000,"y":0},{"x":1567312200000,"y":0},{"x":1567312260000,"y":0},{"x":1567312320000,"y":0},{"x":1567312380000,"y":0},{"x":1567312440000,"y":0},{"x":1567312500000,"y":0},{"x":1567312560000,"y":0},{"x":1567312620000,"y":0},{"x":1567312680000,"y":0},{"x":1567312740000,"y":0},{"x":1567312800000,"y":0},{"x":1567312860000,"y":0},{"x":1567312920000,"y":0.01},{"x":1567312980000,"y":0},{"x":1567313040000,"y":0},{"x":1567313100000,"y":0},{"x":1567313160000,"y":0},{"x":1567313220000,"y":0},{"x":1567313280000,"y":0},{"x":1567313340000,"y":0},{"x":1567313400000,"y":0},{"x":1567313460000,"y":0},{"x":1567313520000,"y":0},{"x":1567313580000,"y":0},{"x":1567313640000,"y":0},{"x":1567313700000,"y":0},{"x":1567313760000,"y":0},{"x":1567313820000,"y":0},{"x":1567313880000,"y":0},{"x":1567313940000,"y":0},{"x":1567314000000,"y":0},{"x":1567314060000,"y":0},{"x":1567314120000,"y":0},{"x":1567314180000,"y":0},{"x":1567314240000,"y":0},{"x":1567314300000,"y":0},{"x":1567314360000,"y":0},{"x":1567314420000,"y":0},{"x":1567314480000,"y":0},{"x":1567314540000,"y":0},{"x":1567314600000,"y":0},{"x":1567314660000,"y":0},{"x":1567314720000,"y":0},{"x":1567314780000,"y":0},{"x":1567314840000,"y":0},{"x":1567314900000,"y":0},{"x":1567314960000,"y":0},{"x":1567315020000,"y":0},{"x":1567315080000,"y":0},{"x":1567315140000,"y":0},{"x":1567315200000,"y":0},{"x":1567315260000,"y":0},{"x":1567315320000,"y":0},{"x":1567315380000,"y":0},{"x":1567315440000,"y":0},{"x":1567315500000,"y":0},{"x":1567315560000,"y":0},{"x":1567315620000,"y":0},{"x":1567315680000,"y":0},{"x":1567315740000,"y":0},{"x":1567315800000,"y":0},{"x":1567315860000,"y":0},{"x":1567315920000,"y":0},{"x":1567315980000,"y":0},{"x":1567316040000,"y":0},{"x":1567316100000,"y":0},{"x":1567316160000,"y":0},{"x":1567316220000,"y":0},{"x":1567316280000,"y":0},{"x":1567316340000,"y":0},{"x":1567316400000,"y":0},{"x":1567316460000,"y":0},{"x":1567316520000,"y":0},{"x":1567316580000,"y":0},{"x":1567316640000,"y":0},{"x":1567316700000,"y":0},{"x":1567316760000,"y":0},{"x":1567316820000,"y":0},{"x":1567316880000,"y":0},{"x":1567316940000,"y":0},{"x":1567317000000,"y":0},{"x":1567317060000,"y":0},{"x":1567317120000,"y":0},{"x":1567317180000,"y":0},{"x":1567317240000,"y":0},{"x":1567317300000,"y":0},{"x":1567317360000,"y":0},{"x":1567317420000,"y":0},{"x":1567317480000,"y":0},{"x":1567317540000,"y":0},{"x":1567317600000,"y":0},{"x":1567317660000,"y":0},{"x":1567317720000,"y":0},{"x":1567317780000,"y":0},{"x":1567317840000,"y":0},{"x":1567317900000,"y":0},{"x":1567317960000,"y":0},{"x":1567318020000,"y":0},{"x":1567318080000,"y":0},{"x":1567318140000,"y":0},{"x":1567318200000,"y":0},{"x":1567318260000,"y":0},{"x":1567318320000,"y":0},{"x":1567318380000,"y":0},{"x":1567318440000,"y":0},{"x":1567318500000,"y":0},{"x":1567318560000,"y":0},{"x":1567318620000,"y":0},{"x":1567318680000,"y":0},{"x":1567318740000,"y":0},{"x":1567318800000,"y":0},{"x":1567318860000,"y":0},{"x":1567318920000,"y":0},{"x":1567318980000,"y":0},{"x":1567319040000,"y":0},{"x":1567319100000,"y":0},{"x":1567319160000,"y":0},{"x":1567319220000,"y":0},{"x":1567319280000,"y":0},{"x":1567319340000,"y":0},{"x":1567319400000,"y":0},{"x":1567319460000,"y":0},{"x":1567319520000,"y":0},{"x":1567319580000,"y":0},{"x":1567319640000,"y":0},{"x":1567319700000,"y":0},{"x":1567319760000,"y":0},{"x":1567319820000,"y":0},{"x":1567319880000,"y":0},{"x":1567319940000,"y":0},{"x":1567320000000,"y":0},{"x":1567320060000,"y":0},{"x":1567320120000,"y":0},{"x":1567320180000,"y":0},{"x":1567320240000,"y":0},{"x":1567320300000,"y":0},{"x":1567320360000,"y":0.02},{"x":1567320420000,"y":0.01},{"x":1567320480000,"y":0.02},{"x":1567320540000,"y":0},{"x":1567320600000,"y":0.02},{"x":1567320660000,"y":0},{"x":1567320720000,"y":0.01},{"x":1567320780000,"y":0.01},{"x":1567320840000,"y":0.01},{"x":1567320900000,"y":0.01},{"x":1567320960000,"y":0.02},{"x":1567321020000,"y":0},{"x":1567321080000,"y":0.02},{"x":1567321140000,"y":0},{"x":1567321200000,"y":0.02},{"x":1567321260000,"y":0},{"x":1567321320000,"y":0.02},{"x":1567321380000,"y":0},{"x":1567321440000,"y":0.02},{"x":1567321500000,"y":0},{"x":1567321560000,"y":0.02},{"x":1567321620000,"y":0},{"x":1567321680000,"y":0.02},{"x":1567321740000,"y":0},{"x":1567321800000,"y":0.02},{"x":1567321860000,"y":0.01},{"x":1567321920000,"y":0},{"x":1567321980000,"y":0.02},{"x":1567322040000,"y":0},{"x":1567322100000,"y":0.02},{"x":1567322160000,"y":0},{"x":1567322220000,"y":0.02},{"x":1567322280000,"y":0},{"x":1567322340000,"y":0.02},{"x":1567322400000,"y":0},{"x":1567322460000,"y":0.02},{"x":1567322520000,"y":0},{"x":1567322580000,"y":0.02},{"x":1567322640000,"y":0},{"x":1567322700000,"y":0.02},{"x":1567322760000,"y":0},{"x":1567322820000,"y":0.02},{"x":1567322880000,"y":0},{"x":1567322940000,"y":0.02},{"x":1567323000000,"y":0},{"x":1567323060000,"y":0.02},{"x":1567323120000,"y":0},{"x":1567323180000,"y":0.02},{"x":1567323240000,"y":0},{"x":1567323300000,"y":0.02},{"x":1567323360000,"y":0},{"x":1567323420000,"y":0.02},{"x":1567323480000,"y":0},{"x":1567323540000,"y":0.02},{"x":1567323600000,"y":0},{"x":1567323660000,"y":0.02},{"x":1567323720000,"y":0},{"x":1567323780000,"y":0.02},{"x":1567323840000,"y":0},{"x":1567323900000,"y":0.02},{"x":1567323960000,"y":0},{"x":1567324020000,"y":0.02},{"x":1567324080000,"y":0},{"x":1567324140000,"y":0.02},{"x":1567324200000,"y":0},{"x":1567324260000,"y":0.02},{"x":1567324320000,"y":0},{"x":1567324380000,"y":0.02},{"x":1567324440000,"y":0},{"x":1567324500000,"y":0.02},{"x":1567324560000,"y":0},{"x":1567324620000,"y":0.02},{"x":1567324680000,"y":0},{"x":1567324740000,"y":0.02},{"x":1567324800000,"y":0},{"x":1567324860000,"y":0},{"x":1567324920000,"y":0},{"x":1567324980000,"y":0},{"x":1567325040000,"y":0},{"x":1567325100000,"y":0},{"x":1567325160000,"y":0},{"x":1567325220000,"y":0},{"x":1567325280000,"y":0},{"x":1567325340000,"y":0},{"x":1567325400000,"y":0},{"x":1567325460000,"y":0},{"x":1567325520000,"y":0},{"x":1567325580000,"y":0},{"x":1567325640000,"y":0},{"x":1567325700000,"y":0},{"x":1567325760000,"y":0},{"x":1567325820000,"y":0},{"x":1567325880000,"y":0},{"x":1567325940000,"y":0},{"x":1567326000000,"y":0},{"x":1567326060000,"y":0},{"x":1567326120000,"y":0},{"x":1567326180000,"y":0},{"x":1567326240000,"y":0},{"x":1567326300000,"y":0},{"x":1567326360000,"y":0},{"x":1567326420000,"y":0},{"x":1567326480000,"y":0},{"x":1567326540000,"y":0},{"x":1567326600000,"y":0},{"x":1567326660000,"y":0},{"x":1567326720000,"y":0},{"x":1567326780000,"y":0},{"x":1567326840000,"y":0},{"x":1567326900000,"y":0},{"x":1567326960000,"y":0},{"x":1567327020000,"y":0},{"x":1567327080000,"y":0},{"x":1567327140000,"y":0},{"x":1567327200000,"y":0},{"x":1567327260000,"y":0},{"x":1567327320000,"y":0},{"x":1567327380000,"y":0},{"x":1567327440000,"y":0},{"x":1567327500000,"y":0},{"x":1567327560000,"y":0},{"x":1567327620000,"y":0},{"x":1567327680000,"y":0},{"x":1567327740000,"y":0},{"x":1567327800000,"y":0},{"x":1567327860000,"y":0},{"x":1567327920000,"y":0},{"x":1567327980000,"y":0},{"x":1567328040000,"y":0},{"x":1567328100000,"y":0},{"x":1567328160000,"y":0},{"x":1567328220000,"y":0},{"x":1567328280000,"y":0},{"x":1567328340000,"y":0},{"x":1567328400000,"y":0},{"x":1567328460000,"y":0},{"x":1567328520000,"y":0},{"x":1567328580000,"y":0},{"x":1567328640000,"y":0},{"x":1567328700000,"y":0},{"x":1567328760000,"y":0},{"x":1567328820000,"y":0},{"x":1567328880000,"y":0},{"x":1567328940000,"y":0},{"x":1567329000000,"y":0},{"x":1567329060000,"y":0},{"x":1567329120000,"y":0},{"x":1567329180000,"y":0},{"x":1567329240000,"y":0},{"x":1567329300000,"y":0},{"x":1567329360000,"y":0},{"x":1567329420000,"y":0},{"x":1567329480000,"y":0},{"x":1567329540000,"y":0},{"x":1567329600000,"y":0},{"x":1567329660000,"y":0},{"x":1567329720000,"y":0},{"x":1567329780000,"y":0},{"x":1567329840000,"y":0},{"x":1567329900000,"y":0},{"x":1567329960000,"y":0},{"x":1567330020000,"y":0},{"x":1567330080000,"y":0},{"x":1567330140000,"y":0},{"x":1567330200000,"y":0},{"x":1567330260000,"y":0},{"x":1567330320000,"y":0},{"x":1567330380000,"y":0},{"x":1567330440000,"y":0},{"x":1567330500000,"y":0},{"x":1567330560000,"y":0},{"x":1567330620000,"y":0},{"x":1567330680000,"y":0},{"x":1567330740000,"y":0},{"x":1567330800000,"y":0},{"x":1567330860000,"y":0},{"x":1567330920000,"y":0},{"x":1567330980000,"y":0},{"x":1567331040000,"y":0},{"x":1567331100000,"y":0},{"x":1567331160000,"y":0},{"x":1567331220000,"y":0},{"x":1567331280000,"y":0},{"x":1567331340000,"y":0},{"x":1567331400000,"y":0},{"x":1567331460000,"y":0},{"x":1567331520000,"y":0},{"x":1567331580000,"y":0},{"x":1567331640000,"y":0},{"x":1567331700000,"y":0},{"x":1567331760000,"y":0},{"x":1567331820000,"y":0},{"x":1567331880000,"y":0},{"x":1567331940000,"y":0},{"x":1567332000000,"y":0},{"x":1567332060000,"y":0},{"x":1567332120000,"y":0},{"x":1567332180000,"y":0},{"x":1567332240000,"y":0},{"x":1567332300000,"y":0},{"x":1567332360000,"y":0},{"x":1567332420000,"y":0},{"x":1567332480000,"y":0},{"x":1567332540000,"y":0},{"x":1567332600000,"y":0},{"x":1567332660000,"y":0},{"x":1567332720000,"y":0},{"x":1567332780000,"y":0},{"x":1567332840000,"y":0},{"x":1567332900000,"y":0},{"x":1567332960000,"y":0},{"x":1567333020000,"y":0},{"x":1567333080000,"y":0},{"x":1567333140000,"y":0},{"x":1567333200000,"y":0},{"x":1567333260000,"y":0},{"x":1567333320000,"y":0},{"x":1567333380000,"y":0},{"x":1567333440000,"y":0},{"x":1567333500000,"y":0},{"x":1567333560000,"y":0},{"x":1567333620000,"y":0},{"x":1567333680000,"y":0},{"x":1567333740000,"y":0},{"x":1567333800000,"y":0},{"x":1567333860000,"y":0},{"x":1567333920000,"y":0},{"x":1567333980000,"y":0},{"x":1567334040000,"y":0},{"x":1567334100000,"y":0},{"x":1567334160000,"y":0},{"x":1567334220000,"y":0},{"x":1567334280000,"y":0},{"x":1567334340000,"y":0},{"x":1567334400000,"y":0},{"x":1567334460000,"y":0},{"x":1567334520000,"y":0},{"x":1567334580000,"y":0},{"x":1567334640000,"y":0},{"x":1567334700000,"y":0},{"x":1567334760000,"y":0},{"x":1567334820000,"y":0.01},{"x":1567334880000,"y":0},{"x":1567334940000,"y":0},{"x":1567335000000,"y":0},{"x":1567335060000,"y":0},{"x":1567335120000,"y":0},{"x":1567335180000,"y":0},{"x":1567335240000,"y":0},{"x":1567335300000,"y":0},{"x":1567335360000,"y":0},{"x":1567335420000,"y":0},{"x":1567335480000,"y":0},{"x":1567335540000,"y":0},{"x":1567335600000,"y":0},{"x":1567335660000,"y":0},{"x":1567335720000,"y":0},{"x":1567335780000,"y":0},{"x":1567335840000,"y":0},{"x":1567335900000,"y":0},{"x":1567335960000,"y":0},{"x":1567336020000,"y":0},{"x":1567336080000,"y":0},{"x":1567336140000,"y":0},{"x":1567336200000,"y":0},{"x":1567336260000,"y":0},{"x":1567336320000,"y":0},{"x":1567336380000,"y":0},{"x":1567336440000,"y":0},{"x":1567336500000,"y":0.02},{"x":1567336560000,"y":0},{"x":1567336620000,"y":0},{"x":1567336680000,"y":0},{"x":1567336740000,"y":0},{"x":1567336800000,"y":0},{"x":1567336860000,"y":0},{"x":1567336920000,"y":0},{"x":1567336980000,"y":0},{"x":1567337040000,"y":0},{"x":1567337100000,"y":0},{"x":1567337160000,"y":0},{"x":1567337220000,"y":0},{"x":1567337280000,"y":0},{"x":1567337340000,"y":0},{"x":1567337400000,"y":0},{"x":1567337460000,"y":0},{"x":1567337520000,"y":0},{"x":1567337580000,"y":0},{"x":1567337640000,"y":0},{"x":1567337700000,"y":0},{"x":1567337760000,"y":0},{"x":1567337820000,"y":0},{"x":1567337880000,"y":0},{"x":1567337940000,"y":0},{"x":1567338000000,"y":0},{"x":1567338060000,"y":0},{"x":1567338120000,"y":0},{"x":1567338180000,"y":0},{"x":1567338240000,"y":0},{"x":1567338300000,"y":0},{"x":1567338360000,"y":0},{"x":1567338420000,"y":0},{"x":1567338480000,"y":0},{"x":1567338540000,"y":0},{"x":1567338600000,"y":0},{"x":1567338660000,"y":0},{"x":1567338720000,"y":0},{"x":1567338780000,"y":0},{"x":1567338840000,"y":0},{"x":1567338900000,"y":0},{"x":1567338960000,"y":0},{"x":1567339020000,"y":0},{"x":1567339080000,"y":0},{"x":1567339140000,"y":0},{"x":1567339200000,"y":0},{"x":1567339260000,"y":0},{"x":1567339320000,"y":0},{"x":1567339380000,"y":0},{"x":1567339440000,"y":0},{"x":1567339500000,"y":0},{"x":1567339560000,"y":0},{"x":1567339620000,"y":0},{"x":1567339680000,"y":0},{"x":1567339740000,"y":0},{"x":1567339800000,"y":0},{"x":1567339860000,"y":0},{"x":1567339920000,"y":0},{"x":1567339980000,"y":0},{"x":1567340040000,"y":0},{"x":1567340100000,"y":0},{"x":1567340160000,"y":0},{"x":1567340220000,"y":0},{"x":1567340280000,"y":0.02},{"x":1567340340000,"y":0},{"x":1567340400000,"y":0.01},{"x":1567340460000,"y":0},{"x":1567340520000,"y":0},{"x":1567340580000,"y":0},{"x":1567340640000,"y":0},{"x":1567340700000,"y":0},{"x":1567340760000,"y":0},{"x":1567340820000,"y":0},{"x":1567340880000,"y":0},{"x":1567340940000,"y":0},{"x":1567341000000,"y":0},{"x":1567341060000,"y":0},{"x":1567341120000,"y":0},{"x":1567341180000,"y":0},{"x":1567341240000,"y":0},{"x":1567341300000,"y":0},{"x":1567341360000,"y":0},{"x":1567341420000,"y":0},{"x":1567341480000,"y":0},{"x":1567341540000,"y":0},{"x":1567341600000,"y":0},{"x":1567341660000,"y":0},{"x":1567341720000,"y":0},{"x":1567341780000,"y":0},{"x":1567341840000,"y":0},{"x":1567341900000,"y":0},{"x":1567341960000,"y":0},{"x":1567342020000,"y":0},{"x":1567342080000,"y":0},{"x":1567342140000,"y":0},{"x":1567342200000,"y":0},{"x":1567342260000,"y":0},{"x":1567342320000,"y":0},{"x":1567342380000,"y":0},{"x":1567342440000,"y":0},{"x":1567342500000,"y":0},{"x":1567342560000,"y":0},{"x":1567342620000,"y":0},{"x":1567342680000,"y":0},{"x":1567342740000,"y":0},{"x":1567342800000,"y":0},{"x":1567342860000,"y":0},{"x":1567342920000,"y":0},{"x":1567342980000,"y":0},{"x":1567343040000,"y":0},{"x":1567343100000,"y":0},{"x":1567343160000,"y":0},{"x":1567343220000,"y":0},{"x":1567343280000,"y":0},{"x":1567343340000,"y":0},{"x":1567343400000,"y":0},{"x":1567343460000,"y":0},{"x":1567343520000,"y":0},{"x":1567343580000,"y":0},{"x":1567343640000,"y":0},{"x":1567343700000,"y":0},{"x":1567343760000,"y":0},{"x":1567343820000,"y":0},{"x":1567343880000,"y":0},{"x":1567343940000,"y":0},{"x":1567344000000,"y":0},{"x":1567344060000,"y":0},{"x":1567344120000,"y":0},{"x":1567344180000,"y":0},{"x":1567344240000,"y":0},{"x":1567344300000,"y":0},{"x":1567344360000,"y":0},{"x":1567344420000,"y":0},{"x":1567344480000,"y":0},{"x":1567344540000,"y":0},{"x":1567344600000,"y":0},{"x":1567344660000,"y":0},{"x":1567344720000,"y":0},{"x":1567344780000,"y":0},{"x":1567344840000,"y":0},{"x":1567344900000,"y":0},{"x":1567344960000,"y":0},{"x":1567345020000,"y":0},{"x":1567345080000,"y":0},{"x":1567345140000,"y":0},{"x":1567345200000,"y":0},{"x":1567345260000,"y":0},{"x":1567345320000,"y":0},{"x":1567345380000,"y":0},{"x":1567345440000,"y":0},{"x":1567345500000,"y":0},{"x":1567345560000,"y":0},{"x":1567345620000,"y":0},{"x":1567345680000,"y":0},{"x":1567345740000,"y":0},{"x":1567345800000,"y":0},{"x":1567345860000,"y":0},{"x":1567345920000,"y":0},{"x":1567345980000,"y":0},{"x":1567346040000,"y":0},{"x":1567346100000,"y":0},{"x":1567346160000,"y":0},{"x":1567346220000,"y":0},{"x":1567346280000,"y":0},{"x":1567346340000,"y":0},{"x":1567346400000,"y":0},{"x":1567346460000,"y":0},{"x":1567346520000,"y":0},{"x":1567346580000,"y":0.06},{"x":1567346640000,"y":0},{"x":1567346700000,"y":0},{"x":1567346760000,"y":0},{"x":1567346820000,"y":0},{"x":1567346880000,"y":0},{"x":1567346940000,"y":0},{"x":1567347000000,"y":0},{"x":1567347060000,"y":0},{"x":1567347120000,"y":0},{"x":1567347180000,"y":0},{"x":1567347240000,"y":0},{"x":1567347300000,"y":0},{"x":1567347360000,"y":0},{"x":1567347420000,"y":0},{"x":1567347480000,"y":0},{"x":1567347540000,"y":0},{"x":1567347600000,"y":0},{"x":1567347660000,"y":0},{"x":1567347720000,"y":0},{"x":1567347780000,"y":0},{"x":1567347840000,"y":0},{"x":1567347900000,"y":0},{"x":1567347960000,"y":0},{"x":1567348020000,"y":0},{"x":1567348080000,"y":0},{"x":1567348140000,"y":0},{"x":1567348200000,"y":0},{"x":1567348260000,"y":0},{"x":1567348320000,"y":0},{"x":1567348380000,"y":0},{"x":1567348440000,"y":0},{"x":1567348500000,"y":0},{"x":1567348560000,"y":0},{"x":1567348620000,"y":0},{"x":1567348680000,"y":0},{"x":1567348740000,"y":0},{"x":1567348800000,"y":0},{"x":1567348860000,"y":0},{"x":1567348920000,"y":0},{"x":1567348980000,"y":0},{"x":1567349040000,"y":0},{"x":1567349100000,"y":0},{"x":1567349160000,"y":0},{"x":1567349220000,"y":0},{"x":1567349280000,"y":0},{"x":1567349340000,"y":0},{"x":1567349400000,"y":0},{"x":1567349460000,"y":0},{"x":1567349520000,"y":0},{"x":1567349580000,"y":0},{"x":1567349640000,"y":0},{"x":1567349700000,"y":0},{"x":1567349760000,"y":0},{"x":1567349820000,"y":0},{"x":1567349880000,"y":0},{"x":1567349940000,"y":0},{"x":1567350000000,"y":0},{"x":1567350060000,"y":0},{"x":1567350120000,"y":0},{"x":1567350180000,"y":0},{"x":1567350240000,"y":0},{"x":1567350300000,"y":0},{"x":1567350360000,"y":0},{"x":1567350420000,"y":0},{"x":1567350480000,"y":0},{"x":1567350540000,"y":0},{"x":1567350600000,"y":0},{"x":1567350660000,"y":0},{"x":1567350720000,"y":0},{"x":1567350780000,"y":0},{"x":1567350840000,"y":0.85},{"x":1567350900000,"y":0.61},{"x":1567350960000,"y":1.51},{"x":1567351020000,"y":1.06},{"x":1567351080000,"y":0.15},{"x":1567351140000,"y":0.56},{"x":1567351200000,"y":0.01},{"x":1567351260000,"y":0},{"x":1567351320000,"y":0},{"x":1567351380000,"y":0},{"x":1567351440000,"y":0},{"x":1567351500000,"y":0},{"x":1567351560000,"y":0},{"x":1567351620000,"y":0},{"x":1567351680000,"y":0},{"x":1567351740000,"y":0},{"x":1567351800000,"y":0},{"x":1567351860000,"y":0},{"x":1567351920000,"y":0},{"x":1567351980000,"y":0},{"x":1567352040000,"y":0},{"x":1567352100000,"y":0},{"x":1567352160000,"y":0},{"x":1567352220000,"y":0},{"x":1567352280000,"y":0},{"x":1567352340000,"y":0},{"x":1567352400000,"y":0},{"x":1567352460000,"y":0},{"x":1567352520000,"y":0},{"x":1567352580000,"y":0},{"x":1567352640000,"y":0},{"x":1567352700000,"y":0},{"x":1567352760000,"y":0},{"x":1567352820000,"y":0},{"x":1567352880000,"y":0},{"x":1567352940000,"y":0},{"x":1567353000000,"y":0},{"x":1567353060000,"y":0},{"x":1567353120000,"y":0},{"x":1567353180000,"y":0},{"x":1567353240000,"y":0},{"x":1567353300000,"y":0},{"x":1567353360000,"y":0},{"x":1567353420000,"y":0},{"x":1567353480000,"y":0},{"x":1567353540000,"y":0},{"x":1567353600000,"y":0},{"x":1567353660000,"y":0},{"x":1567353720000,"y":0},{"x":1567353780000,"y":0},{"x":1567353840000,"y":0},{"x":1567353900000,"y":0},{"x":1567353960000,"y":0},{"x":1567354020000,"y":0},{"x":1567354080000,"y":0},{"x":1567354140000,"y":0},{"x":1567354200000,"y":0},{"x":1567354260000,"y":0},{"x":1567354320000,"y":0},{"x":1567354380000,"y":0},{"x":1567354440000,"y":0},{"x":1567354500000,"y":0},{"x":1567354560000,"y":0},{"x":1567354620000,"y":0},{"x":1567354680000,"y":0},{"x":1567354740000,"y":0},{"x":1567354800000,"y":0},{"x":1567354860000,"y":0},{"x":1567354920000,"y":0},{"x":1567354980000,"y":0},{"x":1567355040000,"y":0},{"x":1567355100000,"y":0},{"x":1567355160000,"y":0},{"x":1567355220000,"y":0},{"x":1567355280000,"y":0},{"x":1567355340000,"y":0},{"x":1567355400000,"y":0},{"x":1567355460000,"y":0},{"x":1567355520000,"y":0},{"x":1567355580000,"y":0},{"x":1567355640000,"y":0},{"x":1567355700000,"y":0},{"x":1567355760000,"y":0},{"x":1567355820000,"y":0},{"x":1567355880000,"y":0},{"x":1567355940000,"y":0},{"x":1567356000000,"y":0},{"x":1567356060000,"y":0},{"x":1567356120000,"y":0},{"x":1567356180000,"y":0},{"x":1567356240000,"y":0},{"x":1567356300000,"y":0},{"x":1567356360000,"y":0},{"x":1567356420000,"y":0},{"x":1567356480000,"y":0},{"x":1567356540000,"y":0},{"x":1567356600000,"y":0},{"x":1567356660000,"y":0},{"x":1567356720000,"y":0.01},{"x":1567356780000,"y":0},{"x":1567356840000,"y":0},{"x":1567356900000,"y":0},{"x":1567356960000,"y":0},{"x":1567357020000,"y":0},{"x":1567357080000,"y":0},{"x":1567357140000,"y":0},{"x":1567357200000,"y":0},{"x":1567357260000,"y":0},{"x":1567357320000,"y":0},{"x":1567357380000,"y":0},{"x":1567357440000,"y":0},{"x":1567357500000,"y":0},{"x":1567357560000,"y":0},{"x":1567357620000,"y":0},{"x":1567357680000,"y":0},{"x":1567357740000,"y":0},{"x":1567357800000,"y":0},{"x":1567357860000,"y":0},{"x":1567357920000,"y":0},{"x":1567357980000,"y":0},{"x":1567358040000,"y":0},{"x":1567358100000,"y":0},{"x":1567358160000,"y":0},{"x":1567358220000,"y":0},{"x":1567358280000,"y":0},{"x":1567358340000,"y":0},{"x":1567358400000,"y":0},{"x":1567358460000,"y":0},{"x":1567358520000,"y":0},{"x":1567358580000,"y":0},{"x":1567358640000,"y":0},{"x":1567358700000,"y":0},{"x":1567358760000,"y":0},{"x":1567358820000,"y":0},{"x":1567358880000,"y":0},{"x":1567358940000,"y":0},{"x":1567359000000,"y":0},{"x":1567359060000,"y":0},{"x":1567359120000,"y":0},{"x":1567359180000,"y":0},{"x":1567359240000,"y":0},{"x":1567359300000,"y":0},{"x":1567359360000,"y":0},{"x":1567359420000,"y":0},{"x":1567359480000,"y":0},{"x":1567359540000,"y":0},{"x":1567359600000,"y":0},{"x":1567359660000,"y":0},{"x":1567359720000,"y":0},{"x":1567359780000,"y":0},{"x":1567359840000,"y":0},{"x":1567359900000,"y":0},{"x":1567359960000,"y":0},{"x":1567360020000,"y":6.29},{"x":1567360080000,"y":4.9},{"x":1567360140000,"y":1.89},{"x":1567360200000,"y":0},{"x":1567360260000,"y":0},{"x":1567360320000,"y":0},{"x":1567360380000,"y":0},{"x":1567360440000,"y":0},{"x":1567360500000,"y":0},{"x":1567360560000,"y":0},{"x":1567360620000,"y":0},{"x":1567360680000,"y":0},{"x":1567360740000,"y":0},{"x":1567360800000,"y":0},{"x":1567360860000,"y":0},{"x":1567360920000,"y":0},{"x":1567360980000,"y":0},{"x":1567361040000,"y":0},{"x":1567361100000,"y":0},{"x":1567361160000,"y":0},{"x":1567361220000,"y":0},{"x":1567361280000,"y":0},{"x":1567361340000,"y":0},{"x":1567361400000,"y":0},{"x":1567361460000,"y":0},{"x":1567361520000,"y":0},{"x":1567361580000,"y":0.04},{"x":1567361640000,"y":0.05},{"x":1567361700000,"y":0},{"x":1567361760000,"y":0},{"x":1567361820000,"y":0},{"x":1567361880000,"y":0},{"x":1567361940000,"y":0},{"x":1567362000000,"y":0},{"x":1567362060000,"y":0},{"x":1567362120000,"y":0},{"x":1567362180000,"y":0},{"x":1567362240000,"y":0},{"x":1567362300000,"y":0},{"x":1567362360000,"y":0},{"x":1567362420000,"y":0},{"x":1567362480000,"y":0},{"x":1567362540000,"y":0},{"x":1567362600000,"y":0},{"x":1567362660000,"y":0},{"x":1567362720000,"y":0},{"x":1567362780000,"y":0},{"x":1567362840000,"y":0},{"x":1567362900000,"y":0},{"x":1567362960000,"y":0},{"x":1567363020000,"y":0},{"x":1567363080000,"y":0},{"x":1567363140000,"y":0},{"x":1567363200000,"y":0},{"x":1567363260000,"y":0},{"x":1567363320000,"y":0},{"x":1567363380000,"y":0},{"x":1567363440000,"y":0},{"x":1567363500000,"y":0},{"x":1567363560000,"y":0},{"x":1567363620000,"y":0},{"x":1567363680000,"y":0},{"x":1567363740000,"y":0},{"x":1567363800000,"y":0},{"x":1567363860000,"y":0},{"x":1567363920000,"y":0},{"x":1567363980000,"y":0.08},{"x":1567364040000,"y":0},{"x":1567364100000,"y":0},{"x":1567364160000,"y":0},{"x":1567364220000,"y":0},{"x":1567364280000,"y":0},{"x":1567364340000,"y":0},{"x":1567364400000,"y":0},{"x":1567364460000,"y":0},{"x":1567364520000,"y":0},{"x":1567364580000,"y":0},{"x":1567364640000,"y":0},{"x":1567364700000,"y":0},{"x":1567364760000,"y":0},{"x":1567364820000,"y":0},{"x":1567364880000,"y":0},{"x":1567364940000,"y":0},{"x":1567365000000,"y":0},{"x":1567365060000,"y":0},{"x":1567365120000,"y":0},{"x":1567365180000,"y":0},{"x":1567365240000,"y":0},{"x":1567365300000,"y":0},{"x":1567365360000,"y":0},{"x":1567365420000,"y":0},{"x":1567365480000,"y":0},{"x":1567365540000,"y":0},{"x":1567365600000,"y":0},{"x":1567365660000,"y":0},{"x":1567365720000,"y":0},{"x":1567365780000,"y":0},{"x":1567365840000,"y":0},{"x":1567365900000,"y":0},{"x":1567365960000,"y":0},{"x":1567366020000,"y":0},{"x":1567366080000,"y":0},{"x":1567366140000,"y":0},{"x":1567366200000,"y":0},{"x":1567366260000,"y":0},{"x":1567366320000,"y":0},{"x":1567366380000,"y":0},{"x":1567366440000,"y":0},{"x":1567366500000,"y":0},{"x":1567366560000,"y":0},{"x":1567366620000,"y":0},{"x":1567366680000,"y":0},{"x":1567366740000,"y":0},{"x":1567366800000,"y":0},{"x":1567366860000,"y":0},{"x":1567366920000,"y":0},{"x":1567366980000,"y":0},{"x":1567367040000,"y":0},{"x":1567367100000,"y":0},{"x":1567367160000,"y":0},{"x":1567367220000,"y":0},{"x":1567367280000,"y":0},{"x":1567367340000,"y":0},{"x":1567367400000,"y":0},{"x":1567367460000,"y":0},{"x":1567367520000,"y":0},{"x":1567367580000,"y":0},{"x":1567367640000,"y":0},{"x":1567367700000,"y":0},{"x":1567367760000,"y":0},{"x":1567367820000,"y":0},{"x":1567367880000,"y":0},{"x":1567367940000,"y":0},{"x":1567368000000,"y":0},{"x":1567368060000,"y":0},{"x":1567368120000,"y":0},{"x":1567368180000,"y":0},{"x":1567368240000,"y":0},{"x":1567368300000,"y":0},{"x":1567368360000,"y":0},{"x":1567368420000,"y":0},{"x":1567368480000,"y":0},{"x":1567368540000,"y":0},{"x":1567368600000,"y":0},{"x":1567368660000,"y":0},{"x":1567368720000,"y":0},{"x":1567368780000,"y":0},{"x":1567368840000,"y":0},{"x":1567368900000,"y":0},{"x":1567368960000,"y":0},{"x":1567369020000,"y":0},{"x":1567369080000,"y":0},{"x":1567369140000,"y":0},{"x":1567369200000,"y":0},{"x":1567369260000,"y":0},{"x":1567369320000,"y":0},{"x":1567369380000,"y":0},{"x":1567369440000,"y":0},{"x":1567369500000,"y":0},{"x":1567369560000,"y":0},{"x":1567369620000,"y":0},{"x":1567369680000,"y":0},{"x":1567369740000,"y":0},{"x":1567369800000,"y":0},{"x":1567369860000,"y":0},{"x":1567369920000,"y":0},{"x":1567369980000,"y":0},{"x":1567370040000,"y":0},{"x":1567370100000,"y":0},{"x":1567370160000,"y":0},{"x":1567370220000,"y":0},{"x":1567370280000,"y":0},{"x":1567370340000,"y":0},{"x":1567370400000,"y":0},{"x":1567370460000,"y":0},{"x":1567370520000,"y":0},{"x":1567370580000,"y":0},{"x":1567370640000,"y":0},{"x":1567370700000,"y":0},{"x":1567370760000,"y":0},{"x":1567370820000,"y":0},{"x":1567370880000,"y":0},{"x":1567370940000,"y":0},{"x":1567371000000,"y":0},{"x":1567371060000,"y":0},{"x":1567371120000,"y":0},{"x":1567371180000,"y":0},{"x":1567371240000,"y":0},{"x":1567371300000,"y":0},{"x":1567371360000,"y":0},{"x":1567371420000,"y":0},{"x":1567371480000,"y":0},{"x":1567371540000,"y":0},{"x":1567371600000,"y":0},{"x":1567371660000,"y":0},{"x":1567371720000,"y":0},{"x":1567371780000,"y":0},{"x":1567371840000,"y":0},{"x":1567371900000,"y":0},{"x":1567371960000,"y":0},{"x":1567372020000,"y":0},{"x":1567372080000,"y":0},{"x":1567372140000,"y":0},{"x":1567372200000,"y":0},{"x":1567372260000,"y":0},{"x":1567372320000,"y":0},{"x":1567372380000,"y":0},{"x":1567372440000,"y":0},{"x":1567372500000,"y":0},{"x":1567372560000,"y":0},{"x":1567372620000,"y":0},{"x":1567372680000,"y":0},{"x":1567372740000,"y":0},{"x":1567372800000,"y":0},{"x":1567372860000,"y":0},{"x":1567372920000,"y":0},{"x":1567372980000,"y":0},{"x":1567373040000,"y":0},{"x":1567373100000,"y":0.01},{"x":1567373160000,"y":0},{"x":1567373220000,"y":0},{"x":1567373280000,"y":0},{"x":1567373340000,"y":0},{"x":1567373400000,"y":0},{"x":1567373460000,"y":0},{"x":1567373520000,"y":0},{"x":1567373580000,"y":0},{"x":1567373640000,"y":0},{"x":1567373700000,"y":0},{"x":1567373760000,"y":0.02},{"x":1567373820000,"y":0},{"x":1567373880000,"y":0},{"x":1567373940000,"y":0},{"x":1567374000000,"y":0},{"x":1567374060000,"y":0},{"x":1567374120000,"y":0},{"x":1567374180000,"y":0},{"x":1567374240000,"y":0},{"x":1567374300000,"y":0},{"x":1567374360000,"y":0},{"x":1567374420000,"y":0},{"x":1567374480000,"y":0},{"x":1567374540000,"y":0},{"x":1567374600000,"y":0},{"x":1567374660000,"y":0},{"x":1567374720000,"y":0},{"x":1567374780000,"y":0},{"x":1567374840000,"y":0},{"x":1567374900000,"y":0},{"x":1567374960000,"y":0},{"x":1567375020000,"y":0},{"x":1567375080000,"y":0},{"x":1567375140000,"y":0},{"x":1567375200000,"y":0},{"x":1567375260000,"y":0},{"x":1567375320000,"y":0},{"x":1567375380000,"y":0},{"x":1567375440000,"y":0},{"x":1567375500000,"y":0},{"x":1567375560000,"y":0},{"x":1567375620000,"y":0},{"x":1567375680000,"y":0},{"x":1567375740000,"y":0},{"x":1567375800000,"y":0},{"x":1567375860000,"y":0},{"x":1567375920000,"y":0},{"x":1567375980000,"y":0},{"x":1567376040000,"y":0},{"x":1567376100000,"y":0},{"x":1567376160000,"y":0},{"x":1567376220000,"y":0},{"x":1567376280000,"y":0},{"x":1567376340000,"y":0},{"x":1567376400000,"y":0},{"x":1567376460000,"y":0},{"x":1567376520000,"y":0},{"x":1567376580000,"y":0},{"x":1567376640000,"y":0},{"x":1567376700000,"y":0},{"x":1567376760000,"y":0},{"x":1567376820000,"y":0},{"x":1567376880000,"y":0},{"x":1567376940000,"y":0},{"x":1567377000000,"y":0},{"x":1567377060000,"y":0},{"x":1567377120000,"y":0},{"x":1567377180000,"y":0},{"x":1567377240000,"y":0},{"x":1567377300000,"y":0},{"x":1567377360000,"y":0},{"x":1567377420000,"y":0},{"x":1567377480000,"y":0},{"x":1567377540000,"y":0},{"x":1567377600000,"y":0},{"x":1567377660000,"y":0},{"x":1567377720000,"y":0},{"x":1567377780000,"y":0},{"x":1567377840000,"y":0},{"x":1567377900000,"y":0},{"x":1567377960000,"y":0},{"x":1567378020000,"y":0},{"x":1567378080000,"y":0},{"x":1567378140000,"y":0},{"x":1567378200000,"y":0},{"x":1567378260000,"y":0},{"x":1567378320000,"y":0},{"x":1567378380000,"y":0},{"x":1567378440000,"y":0},{"x":1567378500000,"y":0},{"x":1567378560000,"y":0.01},{"x":1567378620000,"y":0},{"x":1567378680000,"y":0},{"x":1567378740000,"y":0},{"x":1567378800000,"y":0},{"x":1567378860000,"y":0},{"x":1567378920000,"y":0},{"x":1567378980000,"y":0.01},{"x":1567379040000,"y":0},{"x":1567379100000,"y":0},{"x":1567379160000,"y":0},{"x":1567379220000,"y":0},{"x":1567379280000,"y":0},{"x":1567379340000,"y":0},{"x":1567379400000,"y":0},{"x":1567379460000,"y":0},{"x":1567379520000,"y":0},{"x":1567379580000,"y":0},{"x":1567379640000,"y":0},{"x":1567379700000,"y":0},{"x":1567379760000,"y":0},{"x":1567379820000,"y":0},{"x":1567379880000,"y":0},{"x":1567379940000,"y":0.07},{"x":1567380000000,"y":0},{"x":1567380060000,"y":0},{"x":1567380120000,"y":0},{"x":1567380180000,"y":0},{"x":1567380240000,"y":0},{"x":1567380300000,"y":0},{"x":1567380360000,"y":0},{"x":1567380420000,"y":0},{"x":1567380480000,"y":0},{"x":1567380540000,"y":0},{"x":1567380600000,"y":0},{"x":1567380660000,"y":0},{"x":1567380720000,"y":0},{"x":1567380780000,"y":0},{"x":1567380840000,"y":0},{"x":1567380900000,"y":0},{"x":1567380960000,"y":0},{"x":1567381020000,"y":0},{"x":1567381080000,"y":0},{"x":1567381140000,"y":0},{"x":1567381200000,"y":0},{"x":1567381260000,"y":0},{"x":1567381320000,"y":0},{"x":1567381380000,"y":0},{"x":1567381440000,"y":0},{"x":1567381500000,"y":0},{"x":1567381560000,"y":0},{"x":1567381620000,"y":0},{"x":1567381680000,"y":0},{"x":1567381740000,"y":0},{"x":1567381800000,"y":0},{"x":1567381860000,"y":0},{"x":1567381920000,"y":0},{"x":1567381980000,"y":0},{"x":1567382040000,"y":0},{"x":1567382100000,"y":0},{"x":1567382160000,"y":0},{"x":1567382220000,"y":0},{"x":1567382280000,"y":0},{"x":1567382340000,"y":0},{"x":1567382400000,"y":0},{"x":1567382460000,"y":0},{"x":1567382520000,"y":0},{"x":1567382580000,"y":0},{"x":1567382640000,"y":0},{"x":1567382700000,"y":0},{"x":1567382760000,"y":0},{"x":1567382820000,"y":0},{"x":1567382880000,"y":0},{"x":1567382940000,"y":0},{"x":1567383000000,"y":0},{"x":1567383060000,"y":0},{"x":1567383120000,"y":0},{"x":1567383180000,"y":0},{"x":1567383240000,"y":0},{"x":1567383300000,"y":0},{"x":1567383360000,"y":0},{"x":1567383420000,"y":0.01},{"x":1567383480000,"y":0},{"x":1567383540000,"y":0},{"x":1567383600000,"y":0},{"x":1567383660000,"y":0},{"x":1567383720000,"y":0},{"x":1567383780000,"y":0},{"x":1567383840000,"y":0},{"x":1567383900000,"y":0},{"x":1567383960000,"y":0},{"x":1567384020000,"y":0},{"x":1567384080000,"y":0},{"x":1567384140000,"y":0},{"x":1567384200000,"y":0},{"x":1567384260000,"y":0},{"x":1567384320000,"y":0},{"x":1567384380000,"y":0},{"x":1567384440000,"y":0.01},{"x":1567384500000,"y":0.06},{"x":1567384560000,"y":0.07},{"x":1567384620000,"y":0.04},{"x":1567384680000,"y":0},{"x":1567384740000,"y":0},{"x":1567384800000,"y":0},{"x":1567384860000,"y":0},{"x":1567384920000,"y":0},{"x":1567384980000,"y":0},{"x":1567385040000,"y":0},{"x":1567385100000,"y":0},{"x":1567385160000,"y":0},{"x":1567385220000,"y":0},{"x":1567385280000,"y":0},{"x":1567385340000,"y":0},{"x":1567385400000,"y":0},{"x":1567385460000,"y":0},{"x":1567385520000,"y":0},{"x":1567385580000,"y":0},{"x":1567385640000,"y":0},{"x":1567385700000,"y":0},{"x":1567385760000,"y":0},{"x":1567385820000,"y":0},{"x":1567385880000,"y":0.02},{"x":1567385940000,"y":0},{"x":1567386000000,"y":0},{"x":1567386060000,"y":0},{"x":1567386120000,"y":0},{"x":1567386180000,"y":0},{"x":1567386240000,"y":0},{"x":1567386300000,"y":0},{"x":1567386360000,"y":0},{"x":1567386420000,"y":0},{"x":1567386480000,"y":0},{"x":1567386540000,"y":0},{"x":1567386600000,"y":0},{"x":1567386660000,"y":0},{"x":1567386720000,"y":0},{"x":1567386780000,"y":0},{"x":1567386840000,"y":0},{"x":1567386900000,"y":0},{"x":1567386960000,"y":0},{"x":1567387020000,"y":0},{"x":1567387080000,"y":0},{"x":1567387140000,"y":0},{"x":1567387200000,"y":0},{"x":1567387260000,"y":0},{"x":1567387320000,"y":0},{"x":1567387380000,"y":0},{"x":1567387440000,"y":0},{"x":1567387500000,"y":0},{"x":1567387560000,"y":0},{"x":1567387620000,"y":0},{"x":1567387680000,"y":0},{"x":1567387740000,"y":0},{"x":1567387800000,"y":0},{"x":1567387860000,"y":0},{"x":1567387920000,"y":0},{"x":1567387980000,"y":0},{"x":1567388040000,"y":0},{"x":1567388100000,"y":0},{"x":1567388160000,"y":0},{"x":1567388220000,"y":0},{"x":1567388280000,"y":0},{"x":1567388340000,"y":0},{"x":1567388400000,"y":0},{"x":1567388460000,"y":0},{"x":1567388520000,"y":0},{"x":1567388580000,"y":0},{"x":1567388640000,"y":0},{"x":1567388700000,"y":0},{"x":1567388760000,"y":0},{"x":1567388820000,"y":0},{"x":1567388880000,"y":0},{"x":1567388940000,"y":0},{"x":1567389000000,"y":0},{"x":1567389060000,"y":0},{"x":1567389120000,"y":0},{"x":1567389180000,"y":0},{"x":1567389240000,"y":0},{"x":1567389300000,"y":0},{"x":1567389360000,"y":0},{"x":1567389420000,"y":0},{"x":1567389480000,"y":0.01},{"x":1567389540000,"y":0},{"x":1567389600000,"y":0},{"x":1567389660000,"y":0},{"x":1567389720000,"y":0},{"x":1567389780000,"y":0},{"x":1567389840000,"y":0},{"x":1567389900000,"y":0},{"x":1567389960000,"y":0.59},{"x":1567390020000,"y":3.11},{"x":1567390080000,"y":0.86},{"x":1567390140000,"y":2.14},{"x":1567390200000,"y":0.68},{"x":1567390260000,"y":3.32},{"x":1567390320000,"y":0.18},{"x":1567390380000,"y":0.02},{"x":1567390440000,"y":0},{"x":1567390500000,"y":0},{"x":1567390560000,"y":0},{"x":1567390620000,"y":0},{"x":1567390680000,"y":0},{"x":1567390740000,"y":0},{"x":1567390800000,"y":0},{"x":1567390860000,"y":0},{"x":1567390920000,"y":0},{"x":1567390980000,"y":0},{"x":1567391040000,"y":0},{"x":1567391100000,"y":0},{"x":1567391160000,"y":0},{"x":1567391220000,"y":0},{"x":1567391280000,"y":0},{"x":1567391340000,"y":0},{"x":1567391400000,"y":0},{"x":1567391460000,"y":0},{"x":1567391520000,"y":0},{"x":1567391580000,"y":0},{"x":1567391640000,"y":0},{"x":1567391700000,"y":0},{"x":1567391760000,"y":0},{"x":1567391820000,"y":0},{"x":1567391880000,"y":0},{"x":1567391940000,"y":0},{"x":1567392000000,"y":0},{"x":1567392060000,"y":0.01},{"x":1567392120000,"y":0.01},{"x":1567392180000,"y":0},{"x":1567392240000,"y":0},{"x":1567392300000,"y":0},{"x":1567392360000,"y":0},{"x":1567392420000,"y":0},{"x":1567392480000,"y":0},{"x":1567392540000,"y":0},{"x":1567392600000,"y":0},{"x":1567392660000,"y":0},{"x":1567392720000,"y":0},{"x":1567392780000,"y":0},{"x":1567392840000,"y":0},{"x":1567392900000,"y":0},{"x":1567392960000,"y":0},{"x":1567393020000,"y":0},{"x":1567393080000,"y":0},{"x":1567393140000,"y":0},{"x":1567393200000,"y":0},{"x":1567393260000,"y":0},{"x":1567393320000,"y":0},{"x":1567393380000,"y":0},{"x":1567393440000,"y":0},{"x":1567393500000,"y":0},{"x":1567393560000,"y":0},{"x":1567393620000,"y":0},{"x":1567393680000,"y":0},{"x":1567393740000,"y":0},{"x":1567393800000,"y":0},{"x":1567393860000,"y":0},{"x":1567393920000,"y":0},{"x":1567393980000,"y":0},{"x":1567394040000,"y":0},{"x":1567394100000,"y":0},{"x":1567394160000,"y":0},{"x":1567394220000,"y":0},{"x":1567394280000,"y":0},{"x":1567394340000,"y":0},{"x":1567394400000,"y":0},{"x":1567394460000,"y":0},{"x":1567394520000,"y":0},{"x":1567394580000,"y":0},{"x":1567394640000,"y":0},{"x":1567394700000,"y":0},{"x":1567394760000,"y":0},{"x":1567394820000,"y":0},{"x":1567394880000,"y":0},{"x":1567394940000,"y":0},{"x":1567395000000,"y":0},{"x":1567395060000,"y":0},{"x":1567395120000,"y":0},{"x":1567395180000,"y":0},{"x":1567395240000,"y":0},{"x":1567395300000,"y":0},{"x":1567395360000,"y":0},{"x":1567395420000,"y":0},{"x":1567395480000,"y":0},{"x":1567395540000,"y":0},{"x":1567395600000,"y":0},{"x":1567395660000,"y":0},{"x":1567395720000,"y":0},{"x":1567395780000,"y":0},{"x":1567395840000,"y":0},{"x":1567395900000,"y":0},{"x":1567395960000,"y":0},{"x":1567396020000,"y":0},{"x":1567396080000,"y":0},{"x":1567396140000,"y":0},{"x":1567396200000,"y":0},{"x":1567396260000,"y":0},{"x":1567396320000,"y":0},{"x":1567396380000,"y":0},{"x":1567396440000,"y":0},{"x":1567396500000,"y":0},{"x":1567396560000,"y":0},{"x":1567396620000,"y":0},{"x":1567396680000,"y":0},{"x":1567396740000,"y":0},{"x":1567396800000,"y":0},{"x":1567396860000,"y":0},{"x":1567396920000,"y":0},{"x":1567396980000,"y":0},{"x":1567397040000,"y":0},{"x":1567397100000,"y":0},{"x":1567397160000,"y":0},{"x":1567397220000,"y":0},{"x":1567397280000,"y":0},{"x":1567397340000,"y":0},{"x":1567397400000,"y":0},{"x":1567397460000,"y":0},{"x":1567397520000,"y":0},{"x":1567397580000,"y":0},{"x":1567397640000,"y":0},{"x":1567397700000,"y":0},{"x":1567397760000,"y":0},{"x":1567397820000,"y":0},{"x":1567397880000,"y":0},{"x":1567397940000,"y":0},{"x":1567398000000,"y":0},{"x":1567398060000,"y":0},{"x":1567398120000,"y":0},{"x":1567398180000,"y":0},{"x":1567398240000,"y":0},{"x":1567398300000,"y":0},{"x":1567398360000,"y":0},{"x":1567398420000,"y":0},{"x":1567398480000,"y":0},{"x":1567398540000,"y":0},{"x":1567398600000,"y":0},{"x":1567398660000,"y":0},{"x":1567398720000,"y":0},{"x":1567398780000,"y":0},{"x":1567398840000,"y":0},{"x":1567398900000,"y":0},{"x":1567398960000,"y":0},{"x":1567399020000,"y":0},{"x":1567399080000,"y":0},{"x":1567399140000,"y":0},{"x":1567399200000,"y":0},{"x":1567399260000,"y":0},{"x":1567399320000,"y":0},{"x":1567399380000,"y":0},{"x":1567399440000,"y":0},{"x":1567399500000,"y":0},{"x":1567399560000,"y":0},{"x":1567399620000,"y":0},{"x":1567399680000,"y":0},{"x":1567399740000,"y":0},{"x":1567399800000,"y":0},{"x":1567399860000,"y":0},{"x":1567399920000,"y":0},{"x":1567399980000,"y":0},{"x":1567400040000,"y":0},{"x":1567400100000,"y":0},{"x":1567400160000,"y":0},{"x":1567400220000,"y":0},{"x":1567400280000,"y":0},{"x":1567400340000,"y":0},{"x":1567400400000,"y":0.01},{"x":1567400460000,"y":0},{"x":1567400520000,"y":0},{"x":1567400580000,"y":0},{"x":1567400640000,"y":0},{"x":1567400700000,"y":0},{"x":1567400760000,"y":0},{"x":1567400820000,"y":0},{"x":1567400880000,"y":0},{"x":1567400940000,"y":0},{"x":1567401000000,"y":0},{"x":1567401060000,"y":0},{"x":1567401120000,"y":0},{"x":1567401180000,"y":0},{"x":1567401240000,"y":0},{"x":1567401300000,"y":0},{"x":1567401360000,"y":0},{"x":1567401420000,"y":0},{"x":1567401480000,"y":0},{"x":1567401540000,"y":0},{"x":1567401600000,"y":0},{"x":1567401660000,"y":0},{"x":1567401720000,"y":0},{"x":1567401780000,"y":0},{"x":1567401840000,"y":0},{"x":1567401900000,"y":0},{"x":1567401960000,"y":0.02},{"x":1567402020000,"y":0.01},{"x":1567402080000,"y":0},{"x":1567402140000,"y":0},{"x":1567402200000,"y":0},{"x":1567402260000,"y":0},{"x":1567402320000,"y":0},{"x":1567402380000,"y":0},{"x":1567402440000,"y":0},{"x":1567402500000,"y":0},{"x":1567402560000,"y":0},{"x":1567402620000,"y":0},{"x":1567402680000,"y":0},{"x":1567402740000,"y":0},{"x":1567402800000,"y":0},{"x":1567402860000,"y":0},{"x":1567402920000,"y":0},{"x":1567402980000,"y":0},{"x":1567403040000,"y":0},{"x":1567403100000,"y":0},{"x":1567403160000,"y":0},{"x":1567403220000,"y":0},{"x":1567403280000,"y":0},{"x":1567403340000,"y":0},{"x":1567403400000,"y":0},{"x":1567403460000,"y":0},{"x":1567403520000,"y":0},{"x":1567403580000,"y":0},{"x":1567403640000,"y":0},{"x":1567403700000,"y":0},{"x":1567403760000,"y":0},{"x":1567403820000,"y":0},{"x":1567403880000,"y":0.02},{"x":1567403940000,"y":0.01},{"x":1567404000000,"y":0.02},{"x":1567404060000,"y":0.03},{"x":1567404120000,"y":0.02},{"x":1567404180000,"y":0.04},{"x":1567404240000,"y":0.03},{"x":1567404300000,"y":0.01},{"x":1567404360000,"y":0.02},{"x":1567404420000,"y":0.02},{"x":1567404480000,"y":0},{"x":1567404540000,"y":0},{"x":1567404600000,"y":0},{"x":1567404660000,"y":0},{"x":1567404720000,"y":0},{"x":1567404780000,"y":0},{"x":1567404840000,"y":0.01},{"x":1567404900000,"y":0},{"x":1567404960000,"y":0},{"x":1567405020000,"y":0},{"x":1567405080000,"y":0},{"x":1567405140000,"y":0},{"x":1567405200000,"y":0},{"x":1567405260000,"y":0},{"x":1567405320000,"y":0},{"x":1567405380000,"y":0},{"x":1567405440000,"y":0},{"x":1567405500000,"y":0},{"x":1567405560000,"y":0},{"x":1567405620000,"y":0},{"x":1567405680000,"y":0},{"x":1567405740000,"y":0},{"x":1567405800000,"y":0},{"x":1567405860000,"y":0},{"x":1567405920000,"y":0},{"x":1567405980000,"y":0},{"x":1567406040000,"y":0},{"x":1567406100000,"y":0},{"x":1567406160000,"y":0},{"x":1567406220000,"y":0},{"x":1567406280000,"y":0},{"x":1567406340000,"y":0},{"x":1567406400000,"y":0},{"x":1567406460000,"y":0},{"x":1567406520000,"y":0},{"x":1567406580000,"y":0},{"x":1567406640000,"y":0},{"x":1567406700000,"y":0},{"x":1567406760000,"y":0},{"x":1567406820000,"y":0},{"x":1567406880000,"y":0},{"x":1567406940000,"y":0},{"x":1567407000000,"y":0},{"x":1567407060000,"y":0},{"x":1567407120000,"y":0},{"x":1567407180000,"y":0},{"x":1567407240000,"y":0},{"x":1567407300000,"y":0},{"x":1567407360000,"y":0},{"x":1567407420000,"y":0},{"x":1567407480000,"y":0},{"x":1567407540000,"y":0},{"x":1567407600000,"y":0},{"x":1567407660000,"y":0},{"x":1567407720000,"y":0},{"x":1567407780000,"y":0},{"x":1567407840000,"y":0},{"x":1567407900000,"y":0},{"x":1567407960000,"y":0},{"x":1567408020000,"y":0},{"x":1567408080000,"y":0},{"x":1567408140000,"y":0},{"x":1567408200000,"y":0},{"x":1567408260000,"y":0},{"x":1567408320000,"y":0},{"x":1567408380000,"y":0},{"x":1567408440000,"y":0},{"x":1567408500000,"y":0},{"x":1567408560000,"y":0},{"x":1567408620000,"y":0},{"x":1567408680000,"y":0},{"x":1567408740000,"y":0},{"x":1567408800000,"y":0},{"x":1567408860000,"y":0},{"x":1567408920000,"y":0},{"x":1567408980000,"y":0},{"x":1567409040000,"y":0},{"x":1567409100000,"y":0},{"x":1567409160000,"y":0},{"x":1567409220000,"y":0},{"x":1567409280000,"y":0},{"x":1567409340000,"y":0},{"x":1567409400000,"y":0},{"x":1567409460000,"y":0},{"x":1567409520000,"y":0},{"x":1567409580000,"y":0},{"x":1567409640000,"y":0},{"x":1567409700000,"y":0},{"x":1567409760000,"y":0},{"x":1567409820000,"y":0},{"x":1567409880000,"y":0},{"x":1567409940000,"y":0},{"x":1567410000000,"y":0},{"x":1567410060000,"y":0},{"x":1567410120000,"y":0},{"x":1567410180000,"y":0},{"x":1567410240000,"y":0},{"x":1567410300000,"y":0},{"x":1567410360000,"y":0},{"x":1567410420000,"y":0},{"x":1567410480000,"y":0},{"x":1567410540000,"y":0},{"x":1567410600000,"y":0},{"x":1567410660000,"y":0},{"x":1567410720000,"y":0},{"x":1567410780000,"y":0},{"x":1567410840000,"y":0},{"x":1567410900000,"y":0},{"x":1567410960000,"y":0},{"x":1567411020000,"y":0},{"x":1567411080000,"y":0},{"x":1567411140000,"y":0},{"x":1567411200000,"y":0},{"x":1567411260000,"y":0},{"x":1567411320000,"y":0},{"x":1567411380000,"y":0},{"x":1567411440000,"y":0},{"x":1567411500000,"y":0},{"x":1567411560000,"y":0},{"x":1567411620000,"y":0},{"x":1567411680000,"y":0},{"x":1567411740000,"y":0},{"x":1567411800000,"y":0.01},{"x":1567411860000,"y":0},{"x":1567411920000,"y":0},{"x":1567411980000,"y":0},{"x":1567412040000,"y":0},{"x":1567412100000,"y":0},{"x":1567412160000,"y":0},{"x":1567412220000,"y":0},{"x":1567412280000,"y":0},{"x":1567412340000,"y":0},{"x":1567412400000,"y":0},{"x":1567412460000,"y":0},{"x":1567412520000,"y":0},{"x":1567412580000,"y":0},{"x":1567412640000,"y":0},{"x":1567412700000,"y":0},{"x":1567412760000,"y":0},{"x":1567412820000,"y":0},{"x":1567412880000,"y":0},{"x":1567412940000,"y":0},{"x":1567413000000,"y":0},{"x":1567413060000,"y":0},{"x":1567413120000,"y":0},{"x":1567413180000,"y":0},{"x":1567413240000,"y":0},{"x":1567413300000,"y":0},{"x":1567413360000,"y":0},{"x":1567413420000,"y":0},{"x":1567413480000,"y":0},{"x":1567413540000,"y":0},{"x":1567413600000,"y":0},{"x":1567413660000,"y":0},{"x":1567413720000,"y":0},{"x":1567413780000,"y":0},{"x":1567413840000,"y":0},{"x":1567413900000,"y":0},{"x":1567413960000,"y":0},{"x":1567414020000,"y":0},{"x":1567414080000,"y":0},{"x":1567414140000,"y":0},{"x":1567414200000,"y":0},{"x":1567414260000,"y":0},{"x":1567414320000,"y":0},{"x":1567414380000,"y":0},{"x":1567414440000,"y":0},{"x":1567414500000,"y":0},{"x":1567414560000,"y":0},{"x":1567414620000,"y":0},{"x":1567414680000,"y":0},{"x":1567414740000,"y":0},{"x":1567414800000,"y":0},{"x":1567414860000,"y":0},{"x":1567414920000,"y":0},{"x":1567414980000,"y":0},{"x":1567415040000,"y":0},{"x":1567415100000,"y":0},{"x":1567415160000,"y":0},{"x":1567415220000,"y":0},{"x":1567415280000,"y":0},{"x":1567415340000,"y":0},{"x":1567415400000,"y":0},{"x":1567415460000,"y":0},{"x":1567415520000,"y":0},{"x":1567415580000,"y":0},{"x":1567415640000,"y":0},{"x":1567415700000,"y":0},{"x":1567415760000,"y":0},{"x":1567415820000,"y":0},{"x":1567415880000,"y":0},{"x":1567415940000,"y":0.01},{"x":1567416000000,"y":0},{"x":1567416060000,"y":0},{"x":1567416120000,"y":0},{"x":1567416180000,"y":0},{"x":1567416240000,"y":0},{"x":1567416300000,"y":0},{"x":1567416360000,"y":0},{"x":1567416420000,"y":0},{"x":1567416480000,"y":0},{"x":1567416540000,"y":0},{"x":1567416600000,"y":0},{"x":1567416660000,"y":0},{"x":1567416720000,"y":0},{"x":1567416780000,"y":0},{"x":1567416840000,"y":0.02},{"x":1567416900000,"y":0},{"x":1567416960000,"y":0},{"x":1567417020000,"y":0},{"x":1567417080000,"y":0},{"x":1567417140000,"y":0},{"x":1567417200000,"y":0},{"x":1567417260000,"y":0},{"x":1567417320000,"y":0},{"x":1567417380000,"y":0},{"x":1567417440000,"y":0},{"x":1567417500000,"y":0},{"x":1567417560000,"y":0},{"x":1567417620000,"y":0},{"x":1567417680000,"y":0},{"x":1567417740000,"y":0},{"x":1567417800000,"y":0},{"x":1567417860000,"y":0},{"x":1567417920000,"y":0},{"x":1567417980000,"y":0},{"x":1567418040000,"y":0},{"x":1567418100000,"y":0},{"x":1567418160000,"y":0},{"x":1567418220000,"y":0},{"x":1567418280000,"y":0},{"x":1567418340000,"y":0},{"x":1567418400000,"y":0},{"x":1567418460000,"y":0},{"x":1567418520000,"y":0},{"x":1567418580000,"y":0},{"x":1567418640000,"y":0},{"x":1567418700000,"y":0},{"x":1567418760000,"y":0},{"x":1567418820000,"y":0},{"x":1567418880000,"y":0},{"x":1567418940000,"y":0},{"x":1567419000000,"y":0},{"x":1567419060000,"y":0},{"x":1567419120000,"y":0},{"x":1567419180000,"y":0},{"x":1567419240000,"y":0},{"x":1567419300000,"y":0},{"x":1567419360000,"y":0},{"x":1567419420000,"y":0},{"x":1567419480000,"y":0},{"x":1567419540000,"y":0},{"x":1567419600000,"y":0},{"x":1567419660000,"y":0},{"x":1567419720000,"y":0},{"x":1567419780000,"y":0},{"x":1567419840000,"y":0},{"x":1567419900000,"y":0},{"x":1567419960000,"y":0},{"x":1567420020000,"y":0},{"x":1567420080000,"y":0},{"x":1567420140000,"y":0},{"x":1567420200000,"y":0},{"x":1567420260000,"y":0},{"x":1567420320000,"y":0},{"x":1567420380000,"y":0},{"x":1567420440000,"y":0},{"x":1567420500000,"y":0},{"x":1567420560000,"y":0},{"x":1567420620000,"y":0},{"x":1567420680000,"y":0},{"x":1567420740000,"y":0},{"x":1567420800000,"y":0},{"x":1567420860000,"y":0},{"x":1567420920000,"y":0},{"x":1567420980000,"y":0},{"x":1567421040000,"y":0},{"x":1567421100000,"y":0},{"x":1567421160000,"y":0},{"x":1567421220000,"y":0},{"x":1567421280000,"y":0},{"x":1567421340000,"y":0},{"x":1567421400000,"y":0},{"x":1567421460000,"y":0},{"x":1567421520000,"y":0},{"x":1567421580000,"y":0},{"x":1567421640000,"y":0},{"x":1567421700000,"y":0},{"x":1567421760000,"y":0},{"x":1567421820000,"y":0},{"x":1567421880000,"y":0},{"x":1567421940000,"y":0},{"x":1567422000000,"y":0.01},{"x":1567422060000,"y":0},{"x":1567422120000,"y":0},{"x":1567422180000,"y":0},{"x":1567422240000,"y":0},{"x":1567422300000,"y":0.01},{"x":1567422360000,"y":0},{"x":1567422420000,"y":0},{"x":1567422480000,"y":0},{"x":1567422540000,"y":0},{"x":1567422600000,"y":0},{"x":1567422660000,"y":0},{"x":1567422720000,"y":0},{"x":1567422780000,"y":0},{"x":1567422840000,"y":0},{"x":1567422900000,"y":0},{"x":1567422960000,"y":0},{"x":1567423020000,"y":0},{"x":1567423080000,"y":0},{"x":1567423140000,"y":0},{"x":1567423200000,"y":0},{"x":1567423260000,"y":0},{"x":1567423320000,"y":0},{"x":1567423380000,"y":0},{"x":1567423440000,"y":0},{"x":1567423500000,"y":0},{"x":1567423560000,"y":0},{"x":1567423620000,"y":0},{"x":1567423680000,"y":0},{"x":1567423740000,"y":0},{"x":1567423800000,"y":0},{"x":1567423860000,"y":0},{"x":1567423920000,"y":0},{"x":1567423980000,"y":0},{"x":1567424040000,"y":0},{"x":1567424100000,"y":0},{"x":1567424160000,"y":0},{"x":1567424220000,"y":0},{"x":1567424280000,"y":0},{"x":1567424340000,"y":0},{"x":1567424400000,"y":0},{"x":1567424460000,"y":0},{"x":1567424520000,"y":0},{"x":1567424580000,"y":0},{"x":1567424640000,"y":0},{"x":1567424700000,"y":0},{"x":1567424760000,"y":0},{"x":1567424820000,"y":0},{"x":1567424880000,"y":0},{"x":1567424940000,"y":0},{"x":1567425000000,"y":0},{"x":1567425060000,"y":0},{"x":1567425120000,"y":0},{"x":1567425180000,"y":0},{"x":1567425240000,"y":0},{"x":1567425300000,"y":0},{"x":1567425360000,"y":0},{"x":1567425420000,"y":0},{"x":1567425480000,"y":0},{"x":1567425540000,"y":0},{"x":1567425600000,"y":0},{"x":1567425660000,"y":0},{"x":1567425720000,"y":0},{"x":1567425780000,"y":0},{"x":1567425840000,"y":0},{"x":1567425900000,"y":0},{"x":1567425960000,"y":0},{"x":1567426020000,"y":0},{"x":1567426080000,"y":0},{"x":1567426140000,"y":0},{"x":1567426200000,"y":0},{"x":1567426260000,"y":0},{"x":1567426320000,"y":0.85},{"x":1567426380000,"y":0.01},{"x":1567426440000,"y":0},{"x":1567426500000,"y":0},{"x":1567426560000,"y":0},{"x":1567426620000,"y":0},{"x":1567426680000,"y":0},{"x":1567426740000,"y":0},{"x":1567426800000,"y":0},{"x":1567426860000,"y":0},{"x":1567426920000,"y":0},{"x":1567426980000,"y":0},{"x":1567427040000,"y":0},{"x":1567427100000,"y":0},{"x":1567427160000,"y":0},{"x":1567427220000,"y":0},{"x":1567427280000,"y":0},{"x":1567427340000,"y":0},{"x":1567427400000,"y":0},{"x":1567427460000,"y":0},{"x":1567427520000,"y":0},{"x":1567427580000,"y":0},{"x":1567427640000,"y":0},{"x":1567427700000,"y":0},{"x":1567427760000,"y":0},{"x":1567427820000,"y":0},{"x":1567427880000,"y":0},{"x":1567427940000,"y":0},{"x":1567428000000,"y":0},{"x":1567428060000,"y":0},{"x":1567428120000,"y":0},{"x":1567428180000,"y":0},{"x":1567428240000,"y":0},{"x":1567428300000,"y":0},{"x":1567428360000,"y":0},{"x":1567428420000,"y":0},{"x":1567428480000,"y":0},{"x":1567428540000,"y":0},{"x":1567428600000,"y":0},{"x":1567428660000,"y":0},{"x":1567428720000,"y":0},{"x":1567428780000,"y":0},{"x":1567428840000,"y":0},{"x":1567428900000,"y":0},{"x":1567428960000,"y":0},{"x":1567429020000,"y":0},{"x":1567429080000,"y":0},{"x":1567429140000,"y":0},{"x":1567429200000,"y":0},{"x":1567429260000,"y":0},{"x":1567429320000,"y":0.01},{"x":1567429380000,"y":0},{"x":1567429440000,"y":0},{"x":1567429500000,"y":0},{"x":1567429560000,"y":0},{"x":1567429620000,"y":0},{"x":1567429680000,"y":0},{"x":1567429740000,"y":0},{"x":1567429800000,"y":0},{"x":1567429860000,"y":0},{"x":1567429920000,"y":0},{"x":1567429980000,"y":0},{"x":1567430040000,"y":0},{"x":1567430100000,"y":0},{"x":1567430160000,"y":0},{"x":1567430220000,"y":0},{"x":1567430280000,"y":0},{"x":1567430340000,"y":0},{"x":1567430400000,"y":0},{"x":1567430460000,"y":0},{"x":1567430520000,"y":0},{"x":1567430580000,"y":0},{"x":1567430640000,"y":0},{"x":1567430700000,"y":0},{"x":1567430760000,"y":0},{"x":1567430820000,"y":0},{"x":1567430880000,"y":0},{"x":1567430940000,"y":0},{"x":1567431000000,"y":0},{"x":1567431060000,"y":0},{"x":1567431120000,"y":0},{"x":1567431180000,"y":0},{"x":1567431240000,"y":0},{"x":1567431300000,"y":0},{"x":1567431360000,"y":0},{"x":1567431420000,"y":0},{"x":1567431480000,"y":0},{"x":1567431540000,"y":0},{"x":1567431600000,"y":0},{"x":1567431660000,"y":0},{"x":1567431720000,"y":0},{"x":1567431780000,"y":0},{"x":1567431840000,"y":0},{"x":1567431900000,"y":0},{"x":1567431960000,"y":0},{"x":1567432020000,"y":0},{"x":1567432080000,"y":0},{"x":1567432140000,"y":0},{"x":1567432200000,"y":0},{"x":1567432260000,"y":0},{"x":1567432320000,"y":0},{"x":1567432380000,"y":0},{"x":1567432440000,"y":0},{"x":1567432500000,"y":0},{"x":1567432560000,"y":0},{"x":1567432620000,"y":0},{"x":1567432680000,"y":0},{"x":1567432740000,"y":0},{"x":1567432800000,"y":0},{"x":1567432860000,"y":0},{"x":1567432920000,"y":0},{"x":1567432980000,"y":0},{"x":1567433040000,"y":0},{"x":1567433100000,"y":0},{"x":1567433160000,"y":0},{"x":1567433220000,"y":0},{"x":1567433280000,"y":0},{"x":1567433340000,"y":0},{"x":1567433400000,"y":0},{"x":1567433460000,"y":0},{"x":1567433520000,"y":0},{"x":1567433580000,"y":0},{"x":1567433640000,"y":0},{"x":1567433700000,"y":0},{"x":1567433760000,"y":0},{"x":1567433820000,"y":0},{"x":1567433880000,"y":0},{"x":1567433940000,"y":0},{"x":1567434000000,"y":0},{"x":1567434060000,"y":0},{"x":1567434120000,"y":0},{"x":1567434180000,"y":0},{"x":1567434240000,"y":0},{"x":1567434300000,"y":0},{"x":1567434360000,"y":0},{"x":1567434420000,"y":0},{"x":1567434480000,"y":0},{"x":1567434540000,"y":0},{"x":1567434600000,"y":0},{"x":1567434660000,"y":0},{"x":1567434720000,"y":0},{"x":1567434780000,"y":0},{"x":1567434840000,"y":0},{"x":1567434900000,"y":0},{"x":1567434960000,"y":0},{"x":1567435020000,"y":0},{"x":1567435080000,"y":0},{"x":1567435140000,"y":0},{"x":1567435200000,"y":0},{"x":1567435260000,"y":0},{"x":1567435320000,"y":0},{"x":1567435380000,"y":0},{"x":1567435440000,"y":0},{"x":1567435500000,"y":0},{"x":1567435560000,"y":0},{"x":1567435620000,"y":0},{"x":1567435680000,"y":0},{"x":1567435740000,"y":0},{"x":1567435800000,"y":0},{"x":1567435860000,"y":0},{"x":1567435920000,"y":0},{"x":1567435980000,"y":0},{"x":1567436040000,"y":0},{"x":1567436100000,"y":0},{"x":1567436160000,"y":0.02},{"x":1567436220000,"y":0},{"x":1567436280000,"y":0},{"x":1567436340000,"y":0},{"x":1567436400000,"y":0},{"x":1567436460000,"y":0},{"x":1567436520000,"y":0},{"x":1567436580000,"y":0},{"x":1567436640000,"y":0},{"x":1567436700000,"y":0},{"x":1567436760000,"y":0},{"x":1567436820000,"y":0},{"x":1567436880000,"y":0},{"x":1567436940000,"y":0},{"x":1567437000000,"y":0},{"x":1567437060000,"y":0},{"x":1567437120000,"y":0},{"x":1567437180000,"y":0},{"x":1567437240000,"y":0},{"x":1567437300000,"y":0},{"x":1567437360000,"y":0},{"x":1567437420000,"y":0},{"x":1567437480000,"y":0},{"x":1567437540000,"y":0},{"x":1567437600000,"y":0.01},{"x":1567437660000,"y":0},{"x":1567437720000,"y":0},{"x":1567437780000,"y":0},{"x":1567437840000,"y":0},{"x":1567437900000,"y":0},{"x":1567437960000,"y":0},{"x":1567438020000,"y":0},{"x":1567438080000,"y":0},{"x":1567438140000,"y":0},{"x":1567438200000,"y":0},{"x":1567438260000,"y":0},{"x":1567438320000,"y":0},{"x":1567438380000,"y":0},{"x":1567438440000,"y":0},{"x":1567438500000,"y":0},{"x":1567438560000,"y":0},{"x":1567438620000,"y":0},{"x":1567438680000,"y":0},{"x":1567438740000,"y":0},{"x":1567438800000,"y":0},{"x":1567438860000,"y":0},{"x":1567438920000,"y":0},{"x":1567438980000,"y":0},{"x":1567439040000,"y":0},{"x":1567439100000,"y":0},{"x":1567439160000,"y":0},{"x":1567439220000,"y":0},{"x":1567439280000,"y":0},{"x":1567439340000,"y":0},{"x":1567439400000,"y":0},{"x":1567439460000,"y":0},{"x":1567439520000,"y":0},{"x":1567439580000,"y":0},{"x":1567439640000,"y":0},{"x":1567439700000,"y":0},{"x":1567439760000,"y":0},{"x":1567439820000,"y":0},{"x":1567439880000,"y":0},{"x":1567439940000,"y":0},{"x":1567440000000,"y":0},{"x":1567440060000,"y":0},{"x":1567440120000,"y":0},{"x":1567440180000,"y":0},{"x":1567440240000,"y":0},{"x":1567440300000,"y":0},{"x":1567440360000,"y":0},{"x":1567440420000,"y":0},{"x":1567440480000,"y":0},{"x":1567440540000,"y":0},{"x":1567440600000,"y":0},{"x":1567440660000,"y":0},{"x":1567440720000,"y":0},{"x":1567440780000,"y":0},{"x":1567440840000,"y":0},{"x":1567440900000,"y":0},{"x":1567440960000,"y":0},{"x":1567441020000,"y":0},{"x":1567441080000,"y":0},{"x":1567441140000,"y":0},{"x":1567441200000,"y":0},{"x":1567441260000,"y":0},{"x":1567441320000,"y":0},{"x":1567441380000,"y":0},{"x":1567441440000,"y":0},{"x":1567441500000,"y":0},{"x":1567441560000,"y":0},{"x":1567441620000,"y":0},{"x":1567441680000,"y":0},{"x":1567441740000,"y":0},{"x":1567441800000,"y":0},{"x":1567441860000,"y":0},{"x":1567441920000,"y":0},{"x":1567441980000,"y":0},{"x":1567442040000,"y":0},{"x":1567442100000,"y":0.02},{"x":1567442160000,"y":0},{"x":1567442220000,"y":0},{"x":1567442280000,"y":0},{"x":1567442340000,"y":0},{"x":1567442400000,"y":0},{"x":1567442460000,"y":0},{"x":1567442520000,"y":0},{"x":1567442580000,"y":0},{"x":1567442640000,"y":0},{"x":1567442700000,"y":0},{"x":1567442760000,"y":0},{"x":1567442820000,"y":0},{"x":1567442880000,"y":0},{"x":1567442940000,"y":0},{"x":1567443000000,"y":0},{"x":1567443060000,"y":0},{"x":1567443120000,"y":0},{"x":1567443180000,"y":0},{"x":1567443240000,"y":0},{"x":1567443300000,"y":0},{"x":1567443360000,"y":0},{"x":1567443420000,"y":0},{"x":1567443480000,"y":0},{"x":1567443540000,"y":0},{"x":1567443600000,"y":0},{"x":1567443660000,"y":0},{"x":1567443720000,"y":0},{"x":1567443780000,"y":0},{"x":1567443840000,"y":0},{"x":1567443900000,"y":0},{"x":1567443960000,"y":0},{"x":1567444020000,"y":0},{"x":1567444080000,"y":0},{"x":1567444140000,"y":0.01},{"x":1567444200000,"y":0},{"x":1567444260000,"y":0},{"x":1567444320000,"y":0},{"x":1567444380000,"y":0},{"x":1567444440000,"y":0},{"x":1567444500000,"y":0},{"x":1567444560000,"y":0},{"x":1567444620000,"y":0},{"x":1567444680000,"y":0},{"x":1567444740000,"y":0},{"x":1567444800000,"y":0},{"x":1567444860000,"y":0},{"x":1567444920000,"y":0},{"x":1567444980000,"y":0},{"x":1567445040000,"y":0},{"x":1567445100000,"y":0},{"x":1567445160000,"y":0},{"x":1567445220000,"y":0},{"x":1567445280000,"y":0},{"x":1567445340000,"y":0},{"x":1567445400000,"y":0},{"x":1567445460000,"y":0},{"x":1567445520000,"y":0},{"x":1567445580000,"y":0},{"x":1567445640000,"y":0},{"x":1567445700000,"y":0},{"x":1567445760000,"y":0},{"x":1567445820000,"y":0},{"x":1567445880000,"y":0},{"x":1567445940000,"y":0},{"x":1567446000000,"y":0},{"x":1567446060000,"y":0},{"x":1567446120000,"y":0},{"x":1567446180000,"y":0},{"x":1567446240000,"y":0},{"x":1567446300000,"y":0},{"x":1567446360000,"y":0},{"x":1567446420000,"y":0},{"x":1567446480000,"y":0},{"x":1567446540000,"y":0},{"x":1567446600000,"y":0},{"x":1567446660000,"y":0},{"x":1567446720000,"y":0},{"x":1567446780000,"y":0},{"x":1567446840000,"y":0},{"x":1567446900000,"y":0.03},{"x":1567446960000,"y":0},{"x":1567447020000,"y":0},{"x":1567447080000,"y":0},{"x":1567447140000,"y":0},{"x":1567447200000,"y":0},{"x":1567447260000,"y":0},{"x":1567447320000,"y":0},{"x":1567447380000,"y":0},{"x":1567447440000,"y":0},{"x":1567447500000,"y":0},{"x":1567447560000,"y":0},{"x":1567447620000,"y":0},{"x":1567447680000,"y":0},{"x":1567447740000,"y":0},{"x":1567447800000,"y":0},{"x":1567447860000,"y":0},{"x":1567447920000,"y":0},{"x":1567447980000,"y":0},{"x":1567448040000,"y":0},{"x":1567448100000,"y":0},{"x":1567448160000,"y":0},{"x":1567448220000,"y":0},{"x":1567448280000,"y":0},{"x":1567448340000,"y":0},{"x":1567448400000,"y":0},{"x":1567448460000,"y":0},{"x":1567448520000,"y":0.01},{"x":1567448580000,"y":0.1},{"x":1567448640000,"y":0.14},{"x":1567448700000,"y":0.07},{"x":1567448760000,"y":0},{"x":1567448820000,"y":0},{"x":1567448880000,"y":0},{"x":1567448940000,"y":0},{"x":1567449000000,"y":0},{"x":1567449060000,"y":0},{"x":1567449120000,"y":0},{"x":1567449180000,"y":0},{"x":1567449240000,"y":0},{"x":1567449300000,"y":0},{"x":1567449360000,"y":0},{"x":1567449420000,"y":0},{"x":1567449480000,"y":0},{"x":1567449540000,"y":0},{"x":1567449600000,"y":0},{"x":1567449660000,"y":0},{"x":1567449720000,"y":0},{"x":1567449780000,"y":0},{"x":1567449840000,"y":0},{"x":1567449900000,"y":0},{"x":1567449960000,"y":0},{"x":1567450020000,"y":0},{"x":1567450080000,"y":0},{"x":1567450140000,"y":0},{"x":1567450200000,"y":0},{"x":1567450260000,"y":0},{"x":1567450320000,"y":0},{"x":1567450380000,"y":0},{"x":1567450440000,"y":0},{"x":1567450500000,"y":0},{"x":1567450560000,"y":0},{"x":1567450620000,"y":0},{"x":1567450680000,"y":0},{"x":1567450740000,"y":0},{"x":1567450800000,"y":0},{"x":1567450860000,"y":0},{"x":1567450920000,"y":0},{"x":1567450980000,"y":0},{"x":1567451040000,"y":0},{"x":1567451100000,"y":0},{"x":1567451160000,"y":0},{"x":1567451220000,"y":0},{"x":1567451280000,"y":0},{"x":1567451340000,"y":0},{"x":1567451400000,"y":0},{"x":1567451460000,"y":0},{"x":1567451520000,"y":0.01},{"x":1567451580000,"y":0},{"x":1567451640000,"y":0},{"x":1567451700000,"y":0},{"x":1567451760000,"y":0},{"x":1567451820000,"y":0},{"x":1567451880000,"y":0},{"x":1567451940000,"y":0},{"x":1567452000000,"y":0},{"x":1567452060000,"y":0},{"x":1567452120000,"y":0},{"x":1567452180000,"y":0},{"x":1567452240000,"y":0},{"x":1567452300000,"y":0.01},{"x":1567452360000,"y":0},{"x":1567452420000,"y":0},{"x":1567452480000,"y":0},{"x":1567452540000,"y":0},{"x":1567452600000,"y":0},{"x":1567452660000,"y":0},{"x":1567452720000,"y":0.01},{"x":1567452780000,"y":0},{"x":1567452840000,"y":0},{"x":1567452900000,"y":0},{"x":1567452960000,"y":0},{"x":1567453020000,"y":0},{"x":1567453080000,"y":0},{"x":1567453140000,"y":0},{"x":1567453200000,"y":0},{"x":1567453260000,"y":0},{"x":1567453320000,"y":0},{"x":1567453380000,"y":0},{"x":1567453440000,"y":0},{"x":1567453500000,"y":0},{"x":1567453560000,"y":0},{"x":1567453620000,"y":0},{"x":1567453680000,"y":0},{"x":1567453740000,"y":0},{"x":1567453800000,"y":0},{"x":1567453860000,"y":0},{"x":1567453920000,"y":0},{"x":1567453980000,"y":0},{"x":1567454040000,"y":0},{"x":1567454100000,"y":0.02},{"x":1567454160000,"y":0.01},{"x":1567454220000,"y":0},{"x":1567454280000,"y":0},{"x":1567454340000,"y":0},{"x":1567454400000,"y":0},{"x":1567454460000,"y":0},{"x":1567454520000,"y":0},{"x":1567454580000,"y":0},{"x":1567454640000,"y":0},{"x":1567454700000,"y":0},{"x":1567454760000,"y":0},{"x":1567454820000,"y":0},{"x":1567454880000,"y":0},{"x":1567454940000,"y":0},{"x":1567455000000,"y":0},{"x":1567455060000,"y":0},{"x":1567455120000,"y":0.01},{"x":1567455180000,"y":0},{"x":1567455240000,"y":0},{"x":1567455300000,"y":0},{"x":1567455360000,"y":0},{"x":1567455420000,"y":0},{"x":1567455480000,"y":0},{"x":1567455540000,"y":0},{"x":1567455600000,"y":0},{"x":1567455660000,"y":0},{"x":1567455720000,"y":0},{"x":1567455780000,"y":0.01},{"x":1567455840000,"y":0},{"x":1567455900000,"y":0.01},{"x":1567455960000,"y":0},{"x":1567456020000,"y":0},{"x":1567456080000,"y":0},{"x":1567456140000,"y":0},{"x":1567456200000,"y":0},{"x":1567456260000,"y":0},{"x":1567456320000,"y":0},{"x":1567456380000,"y":0},{"x":1567456440000,"y":0},{"x":1567456500000,"y":0},{"x":1567456560000,"y":0},{"x":1567456620000,"y":0},{"x":1567456680000,"y":0},{"x":1567456740000,"y":0},{"x":1567456800000,"y":0},{"x":1567456860000,"y":0},{"x":1567456920000,"y":0},{"x":1567456980000,"y":0},{"x":1567457040000,"y":0},{"x":1567457100000,"y":0},{"x":1567457160000,"y":0},{"x":1567457220000,"y":0},{"x":1567457280000,"y":0},{"x":1567457340000,"y":0},{"x":1567457400000,"y":0},{"x":1567457460000,"y":0},{"x":1567457520000,"y":0},{"x":1567457580000,"y":0},{"x":1567457640000,"y":0},{"x":1567457700000,"y":0},{"x":1567457760000,"y":0},{"x":1567457820000,"y":0},{"x":1567457880000,"y":0},{"x":1567457940000,"y":0},{"x":1567458000000,"y":0},{"x":1567458060000,"y":0},{"x":1567458120000,"y":0},{"x":1567458180000,"y":0},{"x":1567458240000,"y":0},{"x":1567458300000,"y":0},{"x":1567458360000,"y":0},{"x":1567458420000,"y":1.04},{"x":1567458480000,"y":2.81},{"x":1567458540000,"y":0},{"x":1567458600000,"y":0},{"x":1567458660000,"y":0},{"x":1567458720000,"y":0},{"x":1567458780000,"y":0},{"x":1567458840000,"y":0},{"x":1567458900000,"y":0},{"x":1567458960000,"y":0},{"x":1567459020000,"y":0},{"x":1567459080000,"y":0},{"x":1567459140000,"y":0},{"x":1567459200000,"y":0},{"x":1567459260000,"y":0},{"x":1567459320000,"y":0},{"x":1567459380000,"y":0},{"x":1567459440000,"y":0},{"x":1567459500000,"y":0},{"x":1567459560000,"y":0},{"x":1567459620000,"y":0},{"x":1567459680000,"y":0},{"x":1567459740000,"y":0},{"x":1567459800000,"y":0},{"x":1567459860000,"y":0},{"x":1567459920000,"y":0},{"x":1567459980000,"y":0},{"x":1567460040000,"y":0},{"x":1567460100000,"y":0},{"x":1567460160000,"y":0},{"x":1567460220000,"y":0},{"x":1567460280000,"y":0},{"x":1567460340000,"y":0},{"x":1567460400000,"y":0},{"x":1567460460000,"y":0},{"x":1567460520000,"y":0},{"x":1567460580000,"y":0},{"x":1567460640000,"y":0},{"x":1567460700000,"y":0},{"x":1567460760000,"y":0},{"x":1567460820000,"y":0},{"x":1567460880000,"y":0},{"x":1567460940000,"y":0},{"x":1567461000000,"y":0},{"x":1567461060000,"y":0},{"x":1567461120000,"y":0},{"x":1567461180000,"y":0},{"x":1567461240000,"y":0},{"x":1567461300000,"y":0},{"x":1567461360000,"y":0},{"x":1567461420000,"y":0},{"x":1567461480000,"y":0},{"x":1567461540000,"y":0},{"x":1567461600000,"y":0},{"x":1567461660000,"y":0},{"x":1567461720000,"y":0},{"x":1567461780000,"y":0},{"x":1567461840000,"y":0},{"x":1567461900000,"y":0},{"x":1567461960000,"y":0},{"x":1567462020000,"y":0},{"x":1567462080000,"y":0},{"x":1567462140000,"y":0},{"x":1567462200000,"y":0},{"x":1567462260000,"y":0},{"x":1567462320000,"y":0},{"x":1567462380000,"y":0},{"x":1567462440000,"y":0},{"x":1567462500000,"y":0},{"x":1567462560000,"y":0},{"x":1567462620000,"y":0},{"x":1567462680000,"y":0},{"x":1567462740000,"y":0},{"x":1567462800000,"y":0},{"x":1567462860000,"y":0.08},{"x":1567462920000,"y":0.01},{"x":1567462980000,"y":0},{"x":1567463040000,"y":0.02},{"x":1567463100000,"y":0},{"x":1567463160000,"y":0},{"x":1567463220000,"y":0},{"x":1567463280000,"y":0},{"x":1567463340000,"y":0},{"x":1567463400000,"y":0},{"x":1567463460000,"y":0},{"x":1567463520000,"y":0},{"x":1567463580000,"y":0},{"x":1567463640000,"y":0},{"x":1567463700000,"y":0},{"x":1567463760000,"y":0},{"x":1567463820000,"y":0},{"x":1567463880000,"y":0},{"x":1567463940000,"y":0},{"x":1567464000000,"y":0},{"x":1567464060000,"y":0},{"x":1567464120000,"y":0},{"x":1567464180000,"y":0},{"x":1567464240000,"y":0},{"x":1567464300000,"y":0},{"x":1567464360000,"y":0},{"x":1567464420000,"y":0},{"x":1567464480000,"y":0},{"x":1567464540000,"y":0.02},{"x":1567464600000,"y":0},{"x":1567464660000,"y":0},{"x":1567464720000,"y":0},{"x":1567464780000,"y":0},{"x":1567464840000,"y":0},{"x":1567464900000,"y":0},{"x":1567464960000,"y":0},{"x":1567465020000,"y":0},{"x":1567465080000,"y":0},{"x":1567465140000,"y":0},{"x":1567465200000,"y":0},{"x":1567465260000,"y":0},{"x":1567465320000,"y":0},{"x":1567465380000,"y":0},{"x":1567465440000,"y":0},{"x":1567465500000,"y":0},{"x":1567465560000,"y":0},{"x":1567465620000,"y":0},{"x":1567465680000,"y":0},{"x":1567465740000,"y":0},{"x":1567465800000,"y":0},{"x":1567465860000,"y":0},{"x":1567465920000,"y":0.01},{"x":1567465980000,"y":0.01},{"x":1567466040000,"y":0},{"x":1567466100000,"y":0},{"x":1567466160000,"y":0},{"x":1567466220000,"y":0},{"x":1567466280000,"y":0},{"x":1567466340000,"y":0},{"x":1567466400000,"y":0},{"x":1567466460000,"y":0.01},{"x":1567466520000,"y":0},{"x":1567466580000,"y":0},{"x":1567466640000,"y":0},{"x":1567466700000,"y":0},{"x":1567466760000,"y":0},{"x":1567466820000,"y":0},{"x":1567466880000,"y":0},{"x":1567466940000,"y":0},{"x":1567467000000,"y":0},{"x":1567467060000,"y":0},{"x":1567467120000,"y":0},{"x":1567467180000,"y":0.01},{"x":1567467240000,"y":0},{"x":1567467300000,"y":0},{"x":1567467360000,"y":0.03},{"x":1567467420000,"y":0},{"x":1567467480000,"y":0},{"x":1567467540000,"y":0},{"x":1567467600000,"y":0},{"x":1567467660000,"y":0},{"x":1567467720000,"y":0},{"x":1567467780000,"y":0},{"x":1567467840000,"y":0},{"x":1567467900000,"y":0},{"x":1567467960000,"y":0},{"x":1567468020000,"y":0},{"x":1567468080000,"y":0},{"x":1567468140000,"y":0},{"x":1567468200000,"y":0},{"x":1567468260000,"y":0},{"x":1567468320000,"y":0},{"x":1567468380000,"y":0},{"x":1567468440000,"y":0},{"x":1567468500000,"y":0},{"x":1567468560000,"y":0},{"x":1567468620000,"y":0},{"x":1567468680000,"y":0},{"x":1567468740000,"y":0},{"x":1567468800000,"y":0},{"x":1567468860000,"y":0},{"x":1567468920000,"y":0},{"x":1567468980000,"y":0},{"x":1567469040000,"y":0},{"x":1567469100000,"y":0},{"x":1567469160000,"y":0},{"x":1567469220000,"y":0},{"x":1567469280000,"y":0},{"x":1567469340000,"y":0},{"x":1567469400000,"y":0},{"x":1567469460000,"y":0},{"x":1567469520000,"y":0.01},{"x":1567469580000,"y":0},{"x":1567469640000,"y":0},{"x":1567469700000,"y":0},{"x":1567469760000,"y":0},{"x":1567469820000,"y":0},{"x":1567469880000,"y":0},{"x":1567469940000,"y":0},{"x":1567470000000,"y":0},{"x":1567470060000,"y":0.01},{"x":1567470120000,"y":0},{"x":1567470180000,"y":0},{"x":1567470240000,"y":0},{"x":1567470300000,"y":0},{"x":1567470360000,"y":0},{"x":1567470420000,"y":0},{"x":1567470480000,"y":0},{"x":1567470540000,"y":0},{"x":1567470600000,"y":0},{"x":1567470660000,"y":0},{"x":1567470720000,"y":0},{"x":1567470780000,"y":0},{"x":1567470840000,"y":0},{"x":1567470900000,"y":0},{"x":1567470960000,"y":0},{"x":1567471020000,"y":0},{"x":1567471080000,"y":0},{"x":1567471140000,"y":0},{"x":1567471200000,"y":0},{"x":1567471260000,"y":0},{"x":1567471320000,"y":0},{"x":1567471380000,"y":0},{"x":1567471440000,"y":0},{"x":1567471500000,"y":0.01},{"x":1567471560000,"y":0},{"x":1567471620000,"y":0},{"x":1567471680000,"y":0},{"x":1567471740000,"y":0.01},{"x":1567471800000,"y":0},{"x":1567471860000,"y":0},{"x":1567471920000,"y":0},{"x":1567471980000,"y":0},{"x":1567472040000,"y":0},{"x":1567472100000,"y":0},{"x":1567472160000,"y":0.01},{"x":1567472220000,"y":0},{"x":1567472280000,"y":0},{"x":1567472340000,"y":0},{"x":1567472400000,"y":0},{"x":1567472460000,"y":0},{"x":1567472520000,"y":0},{"x":1567472580000,"y":0},{"x":1567472640000,"y":0},{"x":1567472700000,"y":0},{"x":1567472760000,"y":0},{"x":1567472820000,"y":0},{"x":1567472880000,"y":0},{"x":1567472940000,"y":0},{"x":1567473000000,"y":0},{"x":1567473060000,"y":0},{"x":1567473120000,"y":0.01},{"x":1567473180000,"y":0},{"x":1567473240000,"y":0},{"x":1567473300000,"y":0},{"x":1567473360000,"y":0},{"x":1567473420000,"y":0},{"x":1567473480000,"y":0},{"x":1567473540000,"y":0},{"x":1567473600000,"y":0},{"x":1567473660000,"y":0.01},{"x":1567473720000,"y":0},{"x":1567473780000,"y":0},{"x":1567473840000,"y":0},{"x":1567473900000,"y":0},{"x":1567473960000,"y":0},{"x":1567474020000,"y":0},{"x":1567474080000,"y":0},{"x":1567474140000,"y":0},{"x":1567474200000,"y":0},{"x":1567474260000,"y":0},{"x":1567474320000,"y":0},{"x":1567474380000,"y":0},{"x":1567474440000,"y":0},{"x":1567474500000,"y":0},{"x":1567474560000,"y":0},{"x":1567474620000,"y":0},{"x":1567474680000,"y":0},{"x":1567474740000,"y":0},{"x":1567474800000,"y":0},{"x":1567474860000,"y":0},{"x":1567474920000,"y":0},{"x":1567474980000,"y":0},{"x":1567475040000,"y":0},{"x":1567475100000,"y":0},{"x":1567475160000,"y":0},{"x":1567475220000,"y":0},{"x":1567475280000,"y":0},{"x":1567475340000,"y":0},{"x":1567475400000,"y":0},{"x":1567475460000,"y":0},{"x":1567475520000,"y":0},{"x":1567475580000,"y":0},{"x":1567475640000,"y":0},{"x":1567475700000,"y":0},{"x":1567475760000,"y":0},{"x":1567475820000,"y":0},{"x":1567475880000,"y":0},{"x":1567475940000,"y":0},{"x":1567476000000,"y":0},{"x":1567476060000,"y":0},{"x":1567476120000,"y":0},{"x":1567476180000,"y":0},{"x":1567476240000,"y":0},{"x":1567476300000,"y":0},{"x":1567476360000,"y":0},{"x":1567476420000,"y":0},{"x":1567476480000,"y":0},{"x":1567476540000,"y":0.01},{"x":1567476600000,"y":0},{"x":1567476660000,"y":0},{"x":1567476720000,"y":0.01},{"x":1567476780000,"y":0},{"x":1567476840000,"y":0},{"x":1567476900000,"y":0},{"x":1567476960000,"y":0},{"x":1567477020000,"y":0},{"x":1567477080000,"y":0},{"x":1567477140000,"y":0},{"x":1567477200000,"y":0},{"x":1567477260000,"y":0.01},{"x":1567477320000,"y":0},{"x":1567477380000,"y":0},{"x":1567477440000,"y":0},{"x":1567477500000,"y":0},{"x":1567477560000,"y":0},{"x":1567477620000,"y":0},{"x":1567477680000,"y":0},{"x":1567477740000,"y":0},{"x":1567477800000,"y":0},{"x":1567477860000,"y":0},{"x":1567477920000,"y":0},{"x":1567477980000,"y":0},{"x":1567478040000,"y":0},{"x":1567478100000,"y":0},{"x":1567478160000,"y":0},{"x":1567478220000,"y":0},{"x":1567478280000,"y":0},{"x":1567478340000,"y":0},{"x":1567478400000,"y":0},{"x":1567478460000,"y":0},{"x":1567478520000,"y":0},{"x":1567478580000,"y":0},{"x":1567478640000,"y":0},{"x":1567478700000,"y":0},{"x":1567478760000,"y":0},{"x":1567478820000,"y":0.01},{"x":1567478880000,"y":0},{"x":1567478940000,"y":0},{"x":1567479000000,"y":0},{"x":1567479060000,"y":0},{"x":1567479120000,"y":0},{"x":1567479180000,"y":0},{"x":1567479240000,"y":0},{"x":1567479300000,"y":0.01},{"x":1567479360000,"y":0},{"x":1567479420000,"y":0},{"x":1567479480000,"y":0},{"x":1567479540000,"y":0},{"x":1567479600000,"y":0.01},{"x":1567479660000,"y":0.01},{"x":1567479720000,"y":0},{"x":1567479780000,"y":0},{"x":1567479840000,"y":0},{"x":1567479900000,"y":0},{"x":1567479960000,"y":0},{"x":1567480020000,"y":0},{"x":1567480080000,"y":0},{"x":1567480140000,"y":0},{"x":1567480200000,"y":0},{"x":1567480260000,"y":0},{"x":1567480320000,"y":0.01},{"x":1567480380000,"y":0},{"x":1567480440000,"y":0},{"x":1567480500000,"y":0},{"x":1567480560000,"y":0},{"x":1567480620000,"y":0},{"x":1567480680000,"y":0},{"x":1567480740000,"y":0},{"x":1567480800000,"y":0},{"x":1567480860000,"y":0.01},{"x":1567480920000,"y":0},{"x":1567480980000,"y":0},{"x":1567481040000,"y":0},{"x":1567481100000,"y":0},{"x":1567481160000,"y":0},{"x":1567481220000,"y":0.02},{"x":1567481280000,"y":0},{"x":1567481340000,"y":0},{"x":1567481400000,"y":0},{"x":1567481460000,"y":0.01},{"x":1567481520000,"y":0},{"x":1567481580000,"y":0},{"x":1567481640000,"y":0},{"x":1567481700000,"y":0},{"x":1567481760000,"y":0},{"x":1567481820000,"y":0},{"x":1567481880000,"y":0},{"x":1567481940000,"y":0},{"x":1567482000000,"y":0},{"x":1567482060000,"y":0},{"x":1567482120000,"y":0},{"x":1567482180000,"y":0},{"x":1567482240000,"y":0},{"x":1567482300000,"y":0},{"x":1567482360000,"y":0},{"x":1567482420000,"y":0},{"x":1567482480000,"y":0},{"x":1567482540000,"y":0},{"x":1567482600000,"y":0},{"x":1567482660000,"y":0},{"x":1567482720000,"y":0},{"x":1567482780000,"y":0},{"x":1567482840000,"y":0},{"x":1567482900000,"y":0},{"x":1567482960000,"y":0},{"x":1567483020000,"y":0},{"x":1567483080000,"y":0.01},{"x":1567483140000,"y":0},{"x":1567483200000,"y":0},{"x":1567483260000,"y":0},{"x":1567483320000,"y":0},{"x":1567483380000,"y":0},{"x":1567483440000,"y":0},{"x":1567483500000,"y":0},{"x":1567483560000,"y":0},{"x":1567483620000,"y":0},{"x":1567483680000,"y":0},{"x":1567483740000,"y":0},{"x":1567483800000,"y":0},{"x":1567483860000,"y":0},{"x":1567483920000,"y":0.01},{"x":1567483980000,"y":0},{"x":1567484040000,"y":0},{"x":1567484100000,"y":0},{"x":1567484160000,"y":0},{"x":1567484220000,"y":0},{"x":1567484280000,"y":0},{"x":1567484340000,"y":0},{"x":1567484400000,"y":0},{"x":1567484460000,"y":0.01},{"x":1567484520000,"y":0},{"x":1567484580000,"y":0},{"x":1567484640000,"y":0},{"x":1567484700000,"y":0},{"x":1567484760000,"y":0},{"x":1567484820000,"y":0},{"x":1567484880000,"y":0},{"x":1567484940000,"y":0},{"x":1567485000000,"y":0},{"x":1567485060000,"y":0},{"x":1567485120000,"y":0},{"x":1567485180000,"y":0},{"x":1567485240000,"y":0},{"x":1567485300000,"y":0},{"x":1567485360000,"y":0},{"x":1567485420000,"y":0},{"x":1567485480000,"y":0},{"x":1567485540000,"y":0},{"x":1567485600000,"y":0},{"x":1567485660000,"y":0},{"x":1567485720000,"y":0},{"x":1567485780000,"y":0},{"x":1567485840000,"y":0},{"x":1567485900000,"y":0},{"x":1567485960000,"y":0},{"x":1567486020000,"y":0},{"x":1567486080000,"y":0},{"x":1567486140000,"y":0},{"x":1567486200000,"y":0},{"x":1567486260000,"y":0},{"x":1567486320000,"y":0},{"x":1567486380000,"y":0},{"x":1567486440000,"y":0},{"x":1567486500000,"y":0},{"x":1567486560000,"y":0},{"x":1567486620000,"y":0},{"x":1567486680000,"y":0},{"x":1567486740000,"y":0},{"x":1567486800000,"y":0},{"x":1567486860000,"y":0},{"x":1567486920000,"y":0},{"x":1567486980000,"y":0},{"x":1567487040000,"y":0},{"x":1567487100000,"y":0},{"x":1567487160000,"y":0},{"x":1567487220000,"y":0},{"x":1567487280000,"y":0},{"x":1567487340000,"y":0},{"x":1567487400000,"y":0},{"x":1567487460000,"y":0},{"x":1567487520000,"y":0.01},{"x":1567487580000,"y":0},{"x":1567487640000,"y":0},{"x":1567487700000,"y":0},{"x":1567487760000,"y":0.01},{"x":1567487820000,"y":0.01},{"x":1567487880000,"y":0},{"x":1567487940000,"y":0},{"x":1567488000000,"y":0},{"x":1567488060000,"y":0.01},{"x":1567488120000,"y":0},{"x":1567488180000,"y":0},{"x":1567488240000,"y":0},{"x":1567488300000,"y":0},{"x":1567488360000,"y":0},{"x":1567488420000,"y":0},{"x":1567488480000,"y":0},{"x":1567488540000,"y":0},{"x":1567488600000,"y":0},{"x":1567488660000,"y":0},{"x":1567488720000,"y":0},{"x":1567488780000,"y":0},{"x":1567488840000,"y":0},{"x":1567488900000,"y":0},{"x":1567488960000,"y":0},{"x":1567489020000,"y":0},{"x":1567489080000,"y":0},{"x":1567489140000,"y":0},{"x":1567489200000,"y":0},{"x":1567489260000,"y":0},{"x":1567489320000,"y":0},{"x":1567489380000,"y":0},{"x":1567489440000,"y":0},{"x":1567489500000,"y":0},{"x":1567489560000,"y":0},{"x":1567489620000,"y":0},{"x":1567489680000,"y":0},{"x":1567489740000,"y":0},{"x":1567489800000,"y":0},{"x":1567489860000,"y":0},{"x":1567489920000,"y":0},{"x":1567489980000,"y":0},{"x":1567490040000,"y":0},{"x":1567490100000,"y":0},{"x":1567490160000,"y":0},{"x":1567490220000,"y":0},{"x":1567490280000,"y":0},{"x":1567490340000,"y":0},{"x":1567490400000,"y":0},{"x":1567490460000,"y":0},{"x":1567490520000,"y":0},{"x":1567490580000,"y":0},{"x":1567490640000,"y":0},{"x":1567490700000,"y":0},{"x":1567490760000,"y":0},{"x":1567490820000,"y":0},{"x":1567490880000,"y":0},{"x":1567490940000,"y":0},{"x":1567491000000,"y":0},{"x":1567491060000,"y":0},{"x":1567491120000,"y":0.01},{"x":1567491180000,"y":0},{"x":1567491240000,"y":0},{"x":1567491300000,"y":0},{"x":1567491360000,"y":0},{"x":1567491420000,"y":0},{"x":1567491480000,"y":0},{"x":1567491540000,"y":0},{"x":1567491600000,"y":0},{"x":1567491660000,"y":0.01},{"x":1567491720000,"y":0},{"x":1567491780000,"y":0},{"x":1567491840000,"y":0},{"x":1567491900000,"y":0},{"x":1567491960000,"y":0},{"x":1567492020000,"y":0},{"x":1567492080000,"y":0},{"x":1567492140000,"y":0},{"x":1567492200000,"y":0},{"x":1567492260000,"y":0},{"x":1567492320000,"y":0},{"x":1567492380000,"y":0},{"x":1567492440000,"y":0},{"x":1567492500000,"y":0},{"x":1567492560000,"y":0},{"x":1567492620000,"y":0},{"x":1567492680000,"y":0},{"x":1567492740000,"y":0},{"x":1567492800000,"y":0},{"x":1567492860000,"y":0},{"x":1567492920000,"y":0},{"x":1567492980000,"y":0},{"x":1567493040000,"y":0},{"x":1567493100000,"y":0},{"x":1567493160000,"y":0},{"x":1567493220000,"y":0},{"x":1567493280000,"y":0},{"x":1567493340000,"y":0},{"x":1567493400000,"y":0},{"x":1567493460000,"y":0},{"x":1567493520000,"y":0},{"x":1567493580000,"y":0},{"x":1567493640000,"y":0},{"x":1567493700000,"y":0},{"x":1567493760000,"y":0},{"x":1567493820000,"y":0},{"x":1567493880000,"y":0},{"x":1567493940000,"y":0},{"x":1567494000000,"y":0},{"x":1567494060000,"y":0},{"x":1567494120000,"y":0},{"x":1567494180000,"y":0},{"x":1567494240000,"y":0.01},{"x":1567494300000,"y":0},{"x":1567494360000,"y":0},{"x":1567494420000,"y":0},{"x":1567494480000,"y":0},{"x":1567494540000,"y":0},{"x":1567494600000,"y":0},{"x":1567494660000,"y":0},{"x":1567494720000,"y":0.01},{"x":1567494780000,"y":0},{"x":1567494840000,"y":0},{"x":1567494900000,"y":0},{"x":1567494960000,"y":0},{"x":1567495020000,"y":0},{"x":1567495080000,"y":0},{"x":1567495140000,"y":0},{"x":1567495200000,"y":0},{"x":1567495260000,"y":0.01},{"x":1567495320000,"y":0},{"x":1567495380000,"y":0},{"x":1567495440000,"y":0.02},{"x":1567495500000,"y":0},{"x":1567495560000,"y":0},{"x":1567495620000,"y":0},{"x":1567495680000,"y":0},{"x":1567495740000,"y":0},{"x":1567495800000,"y":0},{"x":1567495860000,"y":0},{"x":1567495920000,"y":0},{"x":1567495980000,"y":0},{"x":1567496040000,"y":0},{"x":1567496100000,"y":0},{"x":1567496160000,"y":0},{"x":1567496220000,"y":0},{"x":1567496280000,"y":0},{"x":1567496340000,"y":0},{"x":1567496400000,"y":0},{"x":1567496460000,"y":0},{"x":1567496520000,"y":0},{"x":1567496580000,"y":0},{"x":1567496640000,"y":0},{"x":1567496700000,"y":0},{"x":1567496760000,"y":0},{"x":1567496820000,"y":0},{"x":1567496880000,"y":0},{"x":1567496940000,"y":0},{"x":1567497000000,"y":0},{"x":1567497060000,"y":0},{"x":1567497120000,"y":0},{"x":1567497180000,"y":0},{"x":1567497240000,"y":0},{"x":1567497300000,"y":0},{"x":1567497360000,"y":0},{"x":1567497420000,"y":0},{"x":1567497480000,"y":0},{"x":1567497540000,"y":0},{"x":1567497600000,"y":0},{"x":1567497660000,"y":0},{"x":1567497720000,"y":0},{"x":1567497780000,"y":0},{"x":1567497840000,"y":0},{"x":1567497900000,"y":0},{"x":1567497960000,"y":0},{"x":1567498020000,"y":0},{"x":1567498080000,"y":0},{"x":1567498140000,"y":0},{"x":1567498200000,"y":0},{"x":1567498260000,"y":0.02},{"x":1567498320000,"y":0.01},{"x":1567498380000,"y":0},{"x":1567498440000,"y":0},{"x":1567498500000,"y":0},{"x":1567498560000,"y":0},{"x":1567498620000,"y":0},{"x":1567498680000,"y":0},{"x":1567498740000,"y":0},{"x":1567498800000,"y":0},{"x":1567498860000,"y":0.01},{"x":1567498920000,"y":0},{"x":1567498980000,"y":0},{"x":1567499040000,"y":0},{"x":1567499100000,"y":0},{"x":1567499160000,"y":0},{"x":1567499220000,"y":0},{"x":1567499280000,"y":0},{"x":1567499340000,"y":0},{"x":1567499400000,"y":0},{"x":1567499460000,"y":0},{"x":1567499520000,"y":0},{"x":1567499580000,"y":0},{"x":1567499640000,"y":0},{"x":1567499700000,"y":0},{"x":1567499760000,"y":0},{"x":1567499820000,"y":0},{"x":1567499880000,"y":0},{"x":1567499940000,"y":0},{"x":1567500000000,"y":0},{"x":1567500060000,"y":0},{"x":1567500120000,"y":0},{"x":1567500180000,"y":0},{"x":1567500240000,"y":0},{"x":1567500300000,"y":0},{"x":1567500360000,"y":0},{"x":1567500420000,"y":0},{"x":1567500480000,"y":0},{"x":1567500540000,"y":0},{"x":1567500600000,"y":0},{"x":1567500660000,"y":0},{"x":1567500720000,"y":0},{"x":1567500780000,"y":0},{"x":1567500840000,"y":0},{"x":1567500900000,"y":0},{"x":1567500960000,"y":0},{"x":1567501020000,"y":0},{"x":1567501080000,"y":0},{"x":1567501140000,"y":0},{"x":1567501200000,"y":0},{"x":1567501260000,"y":0},{"x":1567501320000,"y":0},{"x":1567501380000,"y":0},{"x":1567501440000,"y":0},{"x":1567501500000,"y":0.08},{"x":1567501560000,"y":0},{"x":1567501620000,"y":0},{"x":1567501680000,"y":0},{"x":1567501740000,"y":0},{"x":1567501800000,"y":0},{"x":1567501860000,"y":0},{"x":1567501920000,"y":0.01},{"x":1567501980000,"y":0},{"x":1567502040000,"y":0},{"x":1567502100000,"y":0},{"x":1567502160000,"y":0},{"x":1567502220000,"y":0},{"x":1567502280000,"y":0},{"x":1567502340000,"y":0},{"x":1567502400000,"y":0},{"x":1567502460000,"y":0.01},{"x":1567502520000,"y":0},{"x":1567502580000,"y":0},{"x":1567502640000,"y":0},{"x":1567502700000,"y":0},{"x":1567502760000,"y":0},{"x":1567502820000,"y":0},{"x":1567502880000,"y":0},{"x":1567502940000,"y":0},{"x":1567503000000,"y":0.01},{"x":1567503060000,"y":0},{"x":1567503120000,"y":0},{"x":1567503180000,"y":0},{"x":1567503240000,"y":0},{"x":1567503300000,"y":0},{"x":1567503360000,"y":0},{"x":1567503420000,"y":0},{"x":1567503480000,"y":0},{"x":1567503540000,"y":0},{"x":1567503600000,"y":0},{"x":1567503660000,"y":0},{"x":1567503720000,"y":0},{"x":1567503780000,"y":0},{"x":1567503840000,"y":0},{"x":1567503900000,"y":0},{"x":1567503960000,"y":0},{"x":1567504020000,"y":0},{"x":1567504080000,"y":0},{"x":1567504140000,"y":0},{"x":1567504200000,"y":0},{"x":1567504260000,"y":0},{"x":1567504320000,"y":0},{"x":1567504380000,"y":0},{"x":1567504440000,"y":0},{"x":1567504500000,"y":0},{"x":1567504560000,"y":0},{"x":1567504620000,"y":0},{"x":1567504680000,"y":0},{"x":1567504740000,"y":0},{"x":1567504800000,"y":0},{"x":1567504860000,"y":0},{"x":1567504920000,"y":0},{"x":1567504980000,"y":0},{"x":1567505040000,"y":0},{"x":1567505100000,"y":0},{"x":1567505160000,"y":0},{"x":1567505220000,"y":0},{"x":1567505280000,"y":0},{"x":1567505340000,"y":0.02},{"x":1567505400000,"y":0},{"x":1567505460000,"y":0},{"x":1567505520000,"y":0.01},{"x":1567505580000,"y":0},{"x":1567505640000,"y":0},{"x":1567505700000,"y":0},{"x":1567505760000,"y":0},{"x":1567505820000,"y":0},{"x":1567505880000,"y":0},{"x":1567505940000,"y":0},{"x":1567506000000,"y":0},{"x":1567506060000,"y":0.01},{"x":1567506120000,"y":0},{"x":1567506180000,"y":0},{"x":1567506240000,"y":0},{"x":1567506300000,"y":0},{"x":1567506360000,"y":0},{"x":1567506420000,"y":0},{"x":1567506480000,"y":0},{"x":1567506540000,"y":0},{"x":1567506600000,"y":0},{"x":1567506660000,"y":0},{"x":1567506720000,"y":0},{"x":1567506780000,"y":0},{"x":1567506840000,"y":0},{"x":1567506900000,"y":0},{"x":1567506960000,"y":0},{"x":1567507020000,"y":0},{"x":1567507080000,"y":0},{"x":1567507140000,"y":0},{"x":1567507200000,"y":0},{"x":1567507260000,"y":0},{"x":1567507320000,"y":0},{"x":1567507380000,"y":0},{"x":1567507440000,"y":0},{"x":1567507500000,"y":0},{"x":1567507560000,"y":0},{"x":1567507620000,"y":0},{"x":1567507680000,"y":0},{"x":1567507740000,"y":0},{"x":1567507800000,"y":0},{"x":1567507860000,"y":0},{"x":1567507920000,"y":0},{"x":1567507980000,"y":0},{"x":1567508040000,"y":0},{"x":1567508100000,"y":0},{"x":1567508160000,"y":0},{"x":1567508220000,"y":0},{"x":1567508280000,"y":0},{"x":1567508340000,"y":0},{"x":1567508400000,"y":0},{"x":1567508460000,"y":0},{"x":1567508520000,"y":0},{"x":1567508580000,"y":0},{"x":1567508640000,"y":0},{"x":1567508700000,"y":0},{"x":1567508760000,"y":0},{"x":1567508820000,"y":0},{"x":1567508880000,"y":0},{"x":1567508940000,"y":0},{"x":1567509000000,"y":0},{"x":1567509060000,"y":0},{"x":1567509120000,"y":0.01},{"x":1567509180000,"y":0},{"x":1567509240000,"y":0},{"x":1567509300000,"y":0},{"x":1567509360000,"y":0},{"x":1567509420000,"y":0},{"x":1567509480000,"y":0},{"x":1567509540000,"y":0},{"x":1567509600000,"y":0},{"x":1567509660000,"y":0.02},{"x":1567509720000,"y":0},{"x":1567509780000,"y":0},{"x":1567509840000,"y":0},{"x":1567509900000,"y":0},{"x":1567509960000,"y":0},{"x":1567510020000,"y":0},{"x":1567510080000,"y":0},{"x":1567510140000,"y":0},{"x":1567510200000,"y":0},{"x":1567510260000,"y":0.01},{"x":1567510320000,"y":0},{"x":1567510380000,"y":0},{"x":1567510440000,"y":0},{"x":1567510500000,"y":0},{"x":1567510560000,"y":0},{"x":1567510620000,"y":0},{"x":1567510680000,"y":0},{"x":1567510740000,"y":0},{"x":1567510800000,"y":0},{"x":1567510860000,"y":0},{"x":1567510920000,"y":0},{"x":1567510980000,"y":0},{"x":1567511040000,"y":0},{"x":1567511100000,"y":0},{"x":1567511160000,"y":0},{"x":1567511220000,"y":0},{"x":1567511280000,"y":0},{"x":1567511340000,"y":0},{"x":1567511400000,"y":0},{"x":1567511460000,"y":0},{"x":1567511520000,"y":0},{"x":1567511580000,"y":0},{"x":1567511640000,"y":0},{"x":1567511700000,"y":0},{"x":1567511760000,"y":0},{"x":1567511820000,"y":0},{"x":1567511880000,"y":0},{"x":1567511940000,"y":0},{"x":1567512000000,"y":0},{"x":1567512060000,"y":0},{"x":1567512120000,"y":0},{"x":1567512180000,"y":0},{"x":1567512240000,"y":0},{"x":1567512300000,"y":0},{"x":1567512360000,"y":0},{"x":1567512420000,"y":0},{"x":1567512480000,"y":0},{"x":1567512540000,"y":0},{"x":1567512600000,"y":0},{"x":1567512660000,"y":0},{"x":1567512720000,"y":0.01},{"x":1567512780000,"y":0},{"x":1567512840000,"y":0},{"x":1567512900000,"y":0},{"x":1567512960000,"y":0},{"x":1567513020000,"y":0},{"x":1567513080000,"y":0},{"x":1567513140000,"y":0},{"x":1567513200000,"y":0},{"x":1567513260000,"y":0.01},{"x":1567513320000,"y":0},{"x":1567513380000,"y":0},{"x":1567513440000,"y":0},{"x":1567513500000,"y":0},{"x":1567513560000,"y":0},{"x":1567513620000,"y":0},{"x":1567513680000,"y":0},{"x":1567513740000,"y":0},{"x":1567513800000,"y":0},{"x":1567513860000,"y":0},{"x":1567513920000,"y":0},{"x":1567513980000,"y":0},{"x":1567514040000,"y":0},{"x":1567514100000,"y":0},{"x":1567514160000,"y":0},{"x":1567514220000,"y":0},{"x":1567514280000,"y":0},{"x":1567514340000,"y":0},{"x":1567514400000,"y":0},{"x":1567514460000,"y":0},{"x":1567514520000,"y":0},{"x":1567514580000,"y":0},{"x":1567514640000,"y":0},{"x":1567514700000,"y":0},{"x":1567514760000,"y":0},{"x":1567514820000,"y":0},{"x":1567514880000,"y":0},{"x":1567514940000,"y":0},{"x":1567515000000,"y":0},{"x":1567515060000,"y":0},{"x":1567515120000,"y":0},{"x":1567515180000,"y":0},{"x":1567515240000,"y":0},{"x":1567515300000,"y":0},{"x":1567515360000,"y":0},{"x":1567515420000,"y":0},{"x":1567515480000,"y":0},{"x":1567515540000,"y":0},{"x":1567515600000,"y":0},{"x":1567515660000,"y":0},{"x":1567515720000,"y":0},{"x":1567515780000,"y":0},{"x":1567515840000,"y":0},{"x":1567515900000,"y":0},{"x":1567515960000,"y":0.02},{"x":1567516020000,"y":0},{"x":1567516080000,"y":0},{"x":1567516140000,"y":0},{"x":1567516200000,"y":0},{"x":1567516260000,"y":0},{"x":1567516320000,"y":0.01},{"x":1567516380000,"y":0},{"x":1567516440000,"y":0},{"x":1567516500000,"y":0},{"x":1567516560000,"y":0},{"x":1567516620000,"y":0},{"x":1567516680000,"y":0},{"x":1567516740000,"y":0},{"x":1567516800000,"y":0},{"x":1567516860000,"y":0.01},{"x":1567516920000,"y":0},{"x":1567516980000,"y":0},{"x":1567517040000,"y":0},{"x":1567517100000,"y":0},{"x":1567517160000,"y":0},{"x":1567517220000,"y":0.01},{"x":1567517280000,"y":0},{"x":1567517340000,"y":0},{"x":1567517400000,"y":0},{"x":1567517460000,"y":0},{"x":1567517520000,"y":0},{"x":1567517580000,"y":0},{"x":1567517640000,"y":0},{"x":1567517700000,"y":0},{"x":1567517760000,"y":0},{"x":1567517820000,"y":0},{"x":1567517880000,"y":0},{"x":1567517940000,"y":0},{"x":1567518000000,"y":0},{"x":1567518060000,"y":0},{"x":1567518120000,"y":0},{"x":1567518180000,"y":0},{"x":1567518240000,"y":0},{"x":1567518300000,"y":0},{"x":1567518360000,"y":0},{"x":1567518420000,"y":0},{"x":1567518480000,"y":0},{"x":1567518540000,"y":0},{"x":1567518600000,"y":0},{"x":1567518660000,"y":0},{"x":1567518720000,"y":0},{"x":1567518780000,"y":0},{"x":1567518840000,"y":0},{"x":1567518900000,"y":0},{"x":1567518960000,"y":0},{"x":1567519020000,"y":0},{"x":1567519080000,"y":0},{"x":1567519140000,"y":0},{"x":1567519200000,"y":0},{"x":1567519260000,"y":0},{"x":1567519320000,"y":0},{"x":1567519380000,"y":0},{"x":1567519440000,"y":0},{"x":1567519500000,"y":0},{"x":1567519560000,"y":0},{"x":1567519620000,"y":0},{"x":1567519680000,"y":0},{"x":1567519740000,"y":0},{"x":1567519800000,"y":0},{"x":1567519860000,"y":0},{"x":1567519920000,"y":0.01},{"x":1567519980000,"y":0},{"x":1567520040000,"y":0.12},{"x":1567520100000,"y":0.71},{"x":1567520160000,"y":0},{"x":1567520220000,"y":0},{"x":1567520280000,"y":0},{"x":1567520340000,"y":0},{"x":1567520400000,"y":0},{"x":1567520460000,"y":0.01},{"x":1567520520000,"y":0},{"x":1567520580000,"y":0},{"x":1567520640000,"y":0},{"x":1567520700000,"y":0},{"x":1567520760000,"y":0},{"x":1567520820000,"y":0},{"x":1567520880000,"y":0},{"x":1567520940000,"y":0},{"x":1567521000000,"y":0},{"x":1567521060000,"y":0},{"x":1567521120000,"y":0},{"x":1567521180000,"y":0},{"x":1567521240000,"y":0},{"x":1567521300000,"y":0},{"x":1567521360000,"y":0},{"x":1567521420000,"y":0},{"x":1567521480000,"y":0},{"x":1567521540000,"y":0},{"x":1567521600000,"y":0},{"x":1567521660000,"y":0},{"x":1567521720000,"y":0},{"x":1567521780000,"y":0},{"x":1567521840000,"y":0},{"x":1567521900000,"y":0},{"x":1567521960000,"y":0},{"x":1567522020000,"y":0},{"x":1567522080000,"y":0},{"x":1567522140000,"y":0},{"x":1567522200000,"y":0},{"x":1567522260000,"y":0},{"x":1567522320000,"y":0},{"x":1567522380000,"y":0},{"x":1567522440000,"y":0},{"x":1567522500000,"y":0},{"x":1567522560000,"y":0},{"x":1567522620000,"y":0},{"x":1567522680000,"y":0},{"x":1567522740000,"y":0},{"x":1567522800000,"y":0},{"x":1567522860000,"y":0},{"x":1567522920000,"y":0},{"x":1567522980000,"y":0},{"x":1567523040000,"y":0},{"x":1567523100000,"y":0},{"x":1567523160000,"y":0},{"x":1567523220000,"y":0},{"x":1567523280000,"y":0},{"x":1567523340000,"y":0},{"x":1567523400000,"y":0},{"x":1567523460000,"y":0},{"x":1567523520000,"y":0},{"x":1567523580000,"y":0},{"x":1567523640000,"y":0},{"x":1567523700000,"y":0},{"x":1567523760000,"y":0},{"x":1567523820000,"y":0.01},{"x":1567523880000,"y":0},{"x":1567523940000,"y":0},{"x":1567524000000,"y":0},{"x":1567524060000,"y":0},{"x":1567524120000,"y":0.01},{"x":1567524180000,"y":0},{"x":1567524240000,"y":0},{"x":1567524300000,"y":0},{"x":1567524360000,"y":0},{"x":1567524420000,"y":0},{"x":1567524480000,"y":0},{"x":1567524540000,"y":0},{"x":1567524600000,"y":0},{"x":1567524660000,"y":0},{"x":1567524720000,"y":0},{"x":1567524780000,"y":0},{"x":1567524840000,"y":0},{"x":1567524900000,"y":0},{"x":1567524960000,"y":0},{"x":1567525020000,"y":0},{"x":1567525080000,"y":0},{"x":1567525140000,"y":0},{"x":1567525200000,"y":0},{"x":1567525260000,"y":0},{"x":1567525320000,"y":0},{"x":1567525380000,"y":0},{"x":1567525440000,"y":0},{"x":1567525500000,"y":0},{"x":1567525560000,"y":0},{"x":1567525620000,"y":0},{"x":1567525680000,"y":0},{"x":1567525740000,"y":0},{"x":1567525800000,"y":0},{"x":1567525860000,"y":0},{"x":1567525920000,"y":0},{"x":1567525980000,"y":0},{"x":1567526040000,"y":0},{"x":1567526100000,"y":0.06},{"x":1567526160000,"y":0.28},{"x":1567526220000,"y":0},{"x":1567526280000,"y":0},{"x":1567526340000,"y":0},{"x":1567526400000,"y":0},{"x":1567526460000,"y":0},{"x":1567526520000,"y":0},{"x":1567526580000,"y":0},{"x":1567526640000,"y":0},{"x":1567526700000,"y":0.01},{"x":1567526760000,"y":0},{"x":1567526820000,"y":0},{"x":1567526880000,"y":0},{"x":1567526940000,"y":0},{"x":1567527000000,"y":0},{"x":1567527060000,"y":0.03},{"x":1567527120000,"y":0},{"x":1567527180000,"y":0},{"x":1567527240000,"y":0},{"x":1567527300000,"y":0},{"x":1567527360000,"y":0},{"x":1567527420000,"y":0},{"x":1567527480000,"y":0},{"x":1567527540000,"y":0},{"x":1567527600000,"y":0},{"x":1567527660000,"y":0},{"x":1567527720000,"y":0},{"x":1567527780000,"y":0},{"x":1567527840000,"y":0},{"x":1567527900000,"y":0},{"x":1567527960000,"y":0},{"x":1567528020000,"y":0},{"x":1567528080000,"y":0},{"x":1567528140000,"y":0},{"x":1567528200000,"y":0},{"x":1567528260000,"y":0},{"x":1567528320000,"y":0},{"x":1567528380000,"y":0},{"x":1567528440000,"y":0},{"x":1567528500000,"y":0},{"x":1567528560000,"y":0},{"x":1567528620000,"y":0},{"x":1567528680000,"y":0},{"x":1567528740000,"y":0},{"x":1567528800000,"y":0},{"x":1567528860000,"y":0},{"x":1567528920000,"y":0},{"x":1567528980000,"y":0},{"x":1567529040000,"y":0},{"x":1567529100000,"y":0},{"x":1567529160000,"y":0},{"x":1567529220000,"y":0},{"x":1567529280000,"y":0},{"x":1567529340000,"y":0},{"x":1567529400000,"y":0.01},{"x":1567529460000,"y":1.32},{"x":1567529520000,"y":0},{"x":1567529580000,"y":0},{"x":1567529640000,"y":0},{"x":1567529700000,"y":0},{"x":1567529760000,"y":0},{"x":1567529820000,"y":0.01},{"x":1567529880000,"y":0.04},{"x":1567529940000,"y":0},{"x":1567530000000,"y":0},{"x":1567530060000,"y":0.01},{"x":1567530120000,"y":0},{"x":1567530180000,"y":0},{"x":1567530240000,"y":0},{"x":1567530300000,"y":0},{"x":1567530360000,"y":0.01},{"x":1567530420000,"y":0},{"x":1567530480000,"y":0},{"x":1567530540000,"y":0},{"x":1567530600000,"y":0},{"x":1567530660000,"y":0},{"x":1567530720000,"y":0},{"x":1567530780000,"y":0.83},{"x":1567530840000,"y":0.01},{"x":1567530900000,"y":0.84},{"x":1567530960000,"y":0.01},{"x":1567531020000,"y":0},{"x":1567531080000,"y":0},{"x":1567531140000,"y":0.22},{"x":1567531200000,"y":0},{"x":1567531260000,"y":0},{"x":1567531320000,"y":0},{"x":1567531380000,"y":0},{"x":1567531440000,"y":0},{"x":1567531500000,"y":0},{"x":1567531560000,"y":0.01},{"x":1567531620000,"y":0},{"x":1567531680000,"y":0},{"x":1567531740000,"y":0},{"x":1567531800000,"y":0},{"x":1567531860000,"y":0},{"x":1567531920000,"y":0},{"x":1567531980000,"y":0.01},{"x":1567532040000,"y":0.03},{"x":1567532100000,"y":0.01},{"x":1567532160000,"y":0.03},{"x":1567532220000,"y":0.01},{"x":1567532280000,"y":0},{"x":1567532340000,"y":0},{"x":1567532400000,"y":0},{"x":1567532460000,"y":0},{"x":1567532520000,"y":0},{"x":1567532580000,"y":0},{"x":1567532640000,"y":0},{"x":1567532700000,"y":0},{"x":1567532760000,"y":0},{"x":1567532820000,"y":0},{"x":1567532880000,"y":0},{"x":1567532940000,"y":0.45},{"x":1567533000000,"y":0.02},{"x":1567533060000,"y":0},{"x":1567533120000,"y":0},{"x":1567533180000,"y":0},{"x":1567533240000,"y":0},{"x":1567533300000,"y":0},{"x":1567533360000,"y":0},{"x":1567533420000,"y":0},{"x":1567533480000,"y":0},{"x":1567533540000,"y":0},{"x":1567533600000,"y":0},{"x":1567533660000,"y":0},{"x":1567533720000,"y":0},{"x":1567533780000,"y":0},{"x":1567533840000,"y":0},{"x":1567533900000,"y":0},{"x":1567533960000,"y":0},{"x":1567534020000,"y":0},{"x":1567534080000,"y":0},{"x":1567534140000,"y":0},{"x":1567534200000,"y":0},{"x":1567534260000,"y":0.01},{"x":1567534320000,"y":0},{"x":1567534380000,"y":0.01},{"x":1567534440000,"y":0},{"x":1567534500000,"y":0},{"x":1567534560000,"y":1.04},{"x":1567534620000,"y":0},{"x":1567534680000,"y":1.34},{"x":1567534740000,"y":0},{"x":1567534800000,"y":0},{"x":1567534860000,"y":0},{"x":1567534920000,"y":0},{"x":1567534980000,"y":0},{"x":1567535040000,"y":0},{"x":1567535100000,"y":0},{"x":1567535160000,"y":0},{"x":1567535220000,"y":0},{"x":1567535280000,"y":0},{"x":1567535340000,"y":0},{"x":1567535400000,"y":0},{"x":1567535460000,"y":0},{"x":1567535520000,"y":0},{"x":1567535580000,"y":0},{"x":1567535640000,"y":0},{"x":1567535700000,"y":2.21},{"x":1567535760000,"y":0},{"x":1567535820000,"y":0.02},{"x":1567535880000,"y":0},{"x":1567535940000,"y":0},{"x":1567536000000,"y":0},{"x":1567536060000,"y":0.02},{"x":1567536120000,"y":0.02},{"x":1567536180000,"y":0},{"x":1567536240000,"y":0.02},{"x":1567536300000,"y":0},{"x":1567536360000,"y":0},{"x":1567536420000,"y":2.39},{"x":1567536480000,"y":0.01},{"x":1567536540000,"y":1.68},{"x":1567536600000,"y":0},{"x":1567536660000,"y":0},{"x":1567536720000,"y":0},{"x":1567536780000,"y":1.81},{"x":1567536840000,"y":0},{"x":1567536900000,"y":0},{"x":1567536960000,"y":0},{"x":1567537020000,"y":0.02},{"x":1567537080000,"y":0.48},{"x":1567537140000,"y":0.02},{"x":1567537200000,"y":0},{"x":1567537260000,"y":0},{"x":1567537320000,"y":0},{"x":1567537380000,"y":0},{"x":1567537440000,"y":0},{"x":1567537500000,"y":0},{"x":1567537560000,"y":0},{"x":1567537620000,"y":0},{"x":1567537680000,"y":0},{"x":1567537740000,"y":0},{"x":1567537800000,"y":0},{"x":1567537860000,"y":0},{"x":1567537920000,"y":0},{"x":1567537980000,"y":0},{"x":1567538040000,"y":0},{"x":1567538100000,"y":0},{"x":1567538160000,"y":0},{"x":1567538220000,"y":0},{"x":1567538280000,"y":0},{"x":1567538340000,"y":0},{"x":1567538400000,"y":0},{"x":1567538460000,"y":0},{"x":1567538520000,"y":0},{"x":1567538580000,"y":0},{"x":1567538640000,"y":0},{"x":1567538700000,"y":0},{"x":1567538760000,"y":0},{"x":1567538820000,"y":0},{"x":1567538880000,"y":0},{"x":1567538940000,"y":0},{"x":1567539000000,"y":0},{"x":1567539060000,"y":0},{"x":1567539120000,"y":0},{"x":1567539180000,"y":0},{"x":1567539240000,"y":0},{"x":1567539300000,"y":0},{"x":1567539360000,"y":0},{"x":1567539420000,"y":0},{"x":1567539480000,"y":0},{"x":1567539540000,"y":0},{"x":1567539600000,"y":0},{"x":1567539660000,"y":0},{"x":1567539720000,"y":0},{"x":1567539780000,"y":0},{"x":1567539840000,"y":0},{"x":1567539900000,"y":0},{"x":1567539960000,"y":0},{"x":1567540020000,"y":0},{"x":1567540080000,"y":0},{"x":1567540140000,"y":0},{"x":1567540200000,"y":0},{"x":1567540260000,"y":0},{"x":1567540320000,"y":0},{"x":1567540380000,"y":0},{"x":1567540440000,"y":0},{"x":1567540500000,"y":0},{"x":1567540560000,"y":0},{"x":1567540620000,"y":0},{"x":1567540680000,"y":0},{"x":1567540740000,"y":0},{"x":1567540800000,"y":0},{"x":1567540860000,"y":0},{"x":1567540920000,"y":0},{"x":1567540980000,"y":0},{"x":1567541040000,"y":0},{"x":1567541100000,"y":0},{"x":1567541160000,"y":0},{"x":1567541220000,"y":0},{"x":1567541280000,"y":0},{"x":1567541340000,"y":0},{"x":1567541400000,"y":0},{"x":1567541460000,"y":0},{"x":1567541520000,"y":0},{"x":1567541580000,"y":0},{"x":1567541640000,"y":0},{"x":1567541700000,"y":0},{"x":1567541760000,"y":0},{"x":1567541820000,"y":0},{"x":1567541880000,"y":0},{"x":1567541940000,"y":0},{"x":1567542000000,"y":0},{"x":1567542060000,"y":0},{"x":1567542120000,"y":0},{"x":1567542180000,"y":0},{"x":1567542240000,"y":0},{"x":1567542300000,"y":0},{"x":1567542360000,"y":0},{"x":1567542420000,"y":0},{"x":1567542480000,"y":0},{"x":1567542540000,"y":0},{"x":1567542600000,"y":0},{"x":1567542660000,"y":0},{"x":1567542720000,"y":0},{"x":1567542780000,"y":0},{"x":1567542840000,"y":0},{"x":1567542900000,"y":0},{"x":1567542960000,"y":0},{"x":1567543020000,"y":0},{"x":1567543080000,"y":0},{"x":1567543140000,"y":0},{"x":1567543200000,"y":1.01},{"x":1567543260000,"y":0},{"x":1567543320000,"y":0},{"x":1567543380000,"y":0},{"x":1567543440000,"y":1.37},{"x":1567543500000,"y":0},{"x":1567543560000,"y":0},{"x":1567543620000,"y":0},{"x":1567543680000,"y":0},{"x":1567543740000,"y":0},{"x":1567543800000,"y":0},{"x":1567543860000,"y":0},{"x":1567543920000,"y":0},{"x":1567543980000,"y":0},{"x":1567544040000,"y":0},{"x":1567544100000,"y":0},{"x":1567544160000,"y":0},{"x":1567544220000,"y":0},{"x":1567544280000,"y":0},{"x":1567544340000,"y":0},{"x":1567544400000,"y":0},{"x":1567544460000,"y":0},{"x":1567544520000,"y":0},{"x":1567544580000,"y":0},{"x":1567544640000,"y":0},{"x":1567544700000,"y":0},{"x":1567544760000,"y":0},{"x":1567544820000,"y":0},{"x":1567544880000,"y":0},{"x":1567544940000,"y":0},{"x":1567545000000,"y":0},{"x":1567545060000,"y":0},{"x":1567545120000,"y":0},{"x":1567545180000,"y":0},{"x":1567545240000,"y":0},{"x":1567545300000,"y":0},{"x":1567545360000,"y":0},{"x":1567545420000,"y":0},{"x":1567545480000,"y":0},{"x":1567545540000,"y":0},{"x":1567545600000,"y":0},{"x":1567545660000,"y":0},{"x":1567545720000,"y":0},{"x":1567545780000,"y":0},{"x":1567545840000,"y":0},{"x":1567545900000,"y":0},{"x":1567545960000,"y":0},{"x":1567546020000,"y":0},{"x":1567546080000,"y":0},{"x":1567546140000,"y":0},{"x":1567546200000,"y":0},{"x":1567546260000,"y":0},{"x":1567546320000,"y":0},{"x":1567546380000,"y":0},{"x":1567546440000,"y":0},{"x":1567546500000,"y":0},{"x":1567546560000,"y":0},{"x":1567546620000,"y":0},{"x":1567546680000,"y":0},{"x":1567546740000,"y":0},{"x":1567546800000,"y":0},{"x":1567546860000,"y":0},{"x":1567546920000,"y":0},{"x":1567546980000,"y":0},{"x":1567547040000,"y":0},{"x":1567547100000,"y":0},{"x":1567547160000,"y":0},{"x":1567547220000,"y":0},{"x":1567547280000,"y":0},{"x":1567547340000,"y":0},{"x":1567547400000,"y":0},{"x":1567547460000,"y":0},{"x":1567547520000,"y":0},{"x":1567547580000,"y":0},{"x":1567547640000,"y":0},{"x":1567547700000,"y":0},{"x":1567547760000,"y":0},{"x":1567547820000,"y":0},{"x":1567547880000,"y":0},{"x":1567547940000,"y":0},{"x":1567548000000,"y":0},{"x":1567548060000,"y":0},{"x":1567548120000,"y":0},{"x":1567548180000,"y":0},{"x":1567548240000,"y":0},{"x":1567548300000,"y":0},{"x":1567548360000,"y":0},{"x":1567548420000,"y":0},{"x":1567548480000,"y":0},{"x":1567548540000,"y":0},{"x":1567548600000,"y":0},{"x":1567548660000,"y":0},{"x":1567548720000,"y":0},{"x":1567548780000,"y":0},{"x":1567548840000,"y":0},{"x":1567548900000,"y":0},{"x":1567548960000,"y":0},{"x":1567549020000,"y":0},{"x":1567549080000,"y":0},{"x":1567549140000,"y":0},{"x":1567549200000,"y":0},{"x":1567549260000,"y":0},{"x":1567549320000,"y":0},{"x":1567549380000,"y":0},{"x":1567549440000,"y":0},{"x":1567549500000,"y":0},{"x":1567549560000,"y":0},{"x":1567549620000,"y":0},{"x":1567549680000,"y":0},{"x":1567549740000,"y":0},{"x":1567549800000,"y":0},{"x":1567549860000,"y":0},{"x":1567549920000,"y":0},{"x":1567549980000,"y":0},{"x":1567550040000,"y":0},{"x":1567550100000,"y":0},{"x":1567550160000,"y":0},{"x":1567550220000,"y":0},{"x":1567550280000,"y":0},{"x":1567550340000,"y":0},{"x":1567550400000,"y":0},{"x":1567550460000,"y":0},{"x":1567550520000,"y":0},{"x":1567550580000,"y":0},{"x":1567550640000,"y":0},{"x":1567550700000,"y":0},{"x":1567550760000,"y":0},{"x":1567550820000,"y":0},{"x":1567550880000,"y":0},{"x":1567550940000,"y":0.83},{"x":1567551000000,"y":0},{"x":1567551060000,"y":0},{"x":1567551120000,"y":0},{"x":1567551180000,"y":0},{"x":1567551240000,"y":0},{"x":1567551300000,"y":0},{"x":1567551360000,"y":0},{"x":1567551420000,"y":0},{"x":1567551480000,"y":0},{"x":1567551540000,"y":0},{"x":1567551600000,"y":0},{"x":1567551660000,"y":0},{"x":1567551720000,"y":0},{"x":1567551780000,"y":0},{"x":1567551840000,"y":0},{"x":1567551900000,"y":0},{"x":1567551960000,"y":0},{"x":1567552020000,"y":0},{"x":1567552080000,"y":0},{"x":1567552140000,"y":0},{"x":1567552200000,"y":0},{"x":1567552260000,"y":0},{"x":1567552320000,"y":0},{"x":1567552380000,"y":0},{"x":1567552440000,"y":0},{"x":1567552500000,"y":0},{"x":1567552560000,"y":0},{"x":1567552620000,"y":0},{"x":1567552680000,"y":0},{"x":1567552740000,"y":0},{"x":1567552800000,"y":0},{"x":1567552860000,"y":0},{"x":1567552920000,"y":0},{"x":1567552980000,"y":0},{"x":1567553040000,"y":0},{"x":1567553100000,"y":0},{"x":1567553160000,"y":0},{"x":1567553220000,"y":0},{"x":1567553280000,"y":0},{"x":1567553340000,"y":0},{"x":1567553400000,"y":0},{"x":1567553460000,"y":0.01},{"x":1567553520000,"y":0},{"x":1567553580000,"y":0},{"x":1567553640000,"y":0},{"x":1567553700000,"y":0},{"x":1567553760000,"y":0},{"x":1567553820000,"y":0},{"x":1567553880000,"y":0},{"x":1567553940000,"y":0},{"x":1567554000000,"y":0},{"x":1567554060000,"y":0},{"x":1567554120000,"y":0},{"x":1567554180000,"y":0},{"x":1567554240000,"y":0},{"x":1567554300000,"y":0},{"x":1567554360000,"y":0},{"x":1567554420000,"y":0},{"x":1567554480000,"y":0},{"x":1567554540000,"y":0},{"x":1567554600000,"y":0},{"x":1567554660000,"y":0},{"x":1567554720000,"y":0},{"x":1567554780000,"y":0},{"x":1567554840000,"y":0},{"x":1567554900000,"y":0},{"x":1567554960000,"y":0},{"x":1567555020000,"y":0},{"x":1567555080000,"y":0},{"x":1567555140000,"y":0},{"x":1567555200000,"y":0},{"x":1567555260000,"y":0},{"x":1567555320000,"y":0},{"x":1567555380000,"y":0},{"x":1567555440000,"y":0},{"x":1567555500000,"y":0},{"x":1567555560000,"y":0},{"x":1567555620000,"y":0},{"x":1567555680000,"y":0},{"x":1567555740000,"y":0},{"x":1567555800000,"y":0},{"x":1567555860000,"y":0},{"x":1567555920000,"y":0},{"x":1567555980000,"y":0},{"x":1567556040000,"y":0},{"x":1567556100000,"y":0},{"x":1567556160000,"y":0},{"x":1567556220000,"y":0},{"x":1567556280000,"y":0},{"x":1567556340000,"y":0},{"x":1567556400000,"y":0.01},{"x":1567556460000,"y":0},{"x":1567556520000,"y":0},{"x":1567556580000,"y":0},{"x":1567556640000,"y":0},{"x":1567556700000,"y":0},{"x":1567556760000,"y":0},{"x":1567556820000,"y":0},{"x":1567556880000,"y":0},{"x":1567556940000,"y":0},{"x":1567557000000,"y":0.02},{"x":1567557060000,"y":0.01},{"x":1567557120000,"y":0},{"x":1567557180000,"y":0},{"x":1567557240000,"y":0},{"x":1567557300000,"y":0},{"x":1567557360000,"y":0},{"x":1567557420000,"y":0},{"x":1567557480000,"y":0},{"x":1567557540000,"y":0},{"x":1567557600000,"y":0},{"x":1567557660000,"y":0},{"x":1567557720000,"y":0},{"x":1567557780000,"y":0},{"x":1567557840000,"y":0},{"x":1567557900000,"y":0},{"x":1567557960000,"y":0},{"x":1567558020000,"y":0},{"x":1567558080000,"y":0},{"x":1567558140000,"y":0},{"x":1567558200000,"y":0},{"x":1567558260000,"y":0},{"x":1567558320000,"y":0},{"x":1567558380000,"y":0},{"x":1567558440000,"y":0},{"x":1567558500000,"y":0},{"x":1567558560000,"y":0},{"x":1567558620000,"y":0},{"x":1567558680000,"y":0},{"x":1567558740000,"y":0},{"x":1567558800000,"y":0},{"x":1567558860000,"y":0},{"x":1567558920000,"y":0},{"x":1567558980000,"y":0},{"x":1567559040000,"y":0},{"x":1567559100000,"y":0},{"x":1567559160000,"y":0},{"x":1567559220000,"y":0},{"x":1567559280000,"y":0},{"x":1567559340000,"y":0},{"x":1567559400000,"y":0},{"x":1567559460000,"y":0},{"x":1567559520000,"y":0},{"x":1567559580000,"y":0},{"x":1567559640000,"y":0},{"x":1567559700000,"y":0},{"x":1567559760000,"y":0},{"x":1567559820000,"y":0},{"x":1567559880000,"y":0},{"x":1567559940000,"y":0},{"x":1567560000000,"y":0},{"x":1567560060000,"y":0},{"x":1567560120000,"y":0},{"x":1567560180000,"y":0},{"x":1567560240000,"y":0},{"x":1567560300000,"y":0},{"x":1567560360000,"y":0},{"x":1567560420000,"y":0},{"x":1567560480000,"y":0},{"x":1567560540000,"y":0},{"x":1567560600000,"y":0},{"x":1567560660000,"y":0},{"x":1567560720000,"y":0},{"x":1567560780000,"y":0},{"x":1567560840000,"y":0},{"x":1567560900000,"y":0},{"x":1567560960000,"y":0},{"x":1567561020000,"y":0},{"x":1567561080000,"y":0},{"x":1567561140000,"y":0},{"x":1567561200000,"y":0},{"x":1567561260000,"y":0},{"x":1567561320000,"y":0},{"x":1567561380000,"y":0},{"x":1567561440000,"y":0},{"x":1567561500000,"y":0},{"x":1567561560000,"y":0},{"x":1567561620000,"y":0},{"x":1567561680000,"y":0},{"x":1567561740000,"y":0},{"x":1567561800000,"y":0},{"x":1567561860000,"y":0},{"x":1567561920000,"y":0},{"x":1567561980000,"y":0},{"x":1567562040000,"y":0},{"x":1567562100000,"y":0},{"x":1567562160000,"y":0},{"x":1567562220000,"y":0},{"x":1567562280000,"y":0},{"x":1567562340000,"y":0},{"x":1567562400000,"y":0},{"x":1567562460000,"y":0},{"x":1567562520000,"y":0},{"x":1567562580000,"y":0},{"x":1567562640000,"y":0},{"x":1567562700000,"y":0},{"x":1567562760000,"y":0},{"x":1567562820000,"y":0},{"x":1567562880000,"y":0},{"x":1567562940000,"y":0},{"x":1567563000000,"y":0},{"x":1567563060000,"y":0},{"x":1567563120000,"y":0},{"x":1567563180000,"y":0},{"x":1567563240000,"y":0},{"x":1567563300000,"y":0},{"x":1567563360000,"y":0},{"x":1567563420000,"y":0},{"x":1567563480000,"y":0},{"x":1567563540000,"y":0.01},{"x":1567563600000,"y":0.06},{"x":1567563660000,"y":0.01},{"x":1567563720000,"y":0},{"x":1567563780000,"y":0},{"x":1567563840000,"y":0},{"x":1567563900000,"y":0},{"x":1567563960000,"y":0},{"x":1567564020000,"y":0},{"x":1567564080000,"y":0},{"x":1567564140000,"y":0},{"x":1567564200000,"y":0},{"x":1567564260000,"y":0},{"x":1567564320000,"y":0},{"x":1567564380000,"y":0},{"x":1567564440000,"y":0},{"x":1567564500000,"y":0},{"x":1567564560000,"y":0.03},{"x":1567564620000,"y":0},{"x":1567564680000,"y":0},{"x":1567564740000,"y":0},{"x":1567564800000,"y":0},{"x":1567564860000,"y":0},{"x":1567564920000,"y":0},{"x":1567564980000,"y":0},{"x":1567565040000,"y":0},{"x":1567565100000,"y":0},{"x":1567565160000,"y":0},{"x":1567565220000,"y":0},{"x":1567565280000,"y":0},{"x":1567565340000,"y":0},{"x":1567565400000,"y":0},{"x":1567565460000,"y":0},{"x":1567565520000,"y":0},{"x":1567565580000,"y":0},{"x":1567565640000,"y":0},{"x":1567565700000,"y":0},{"x":1567565760000,"y":0},{"x":1567565820000,"y":0},{"x":1567565880000,"y":0},{"x":1567565940000,"y":0.01},{"x":1567566000000,"y":0},{"x":1567566060000,"y":0},{"x":1567566120000,"y":0},{"x":1567566180000,"y":0},{"x":1567566240000,"y":0},{"x":1567566300000,"y":0},{"x":1567566360000,"y":0},{"x":1567566420000,"y":0},{"x":1567566480000,"y":0},{"x":1567566540000,"y":0},{"x":1567566600000,"y":0},{"x":1567566660000,"y":0},{"x":1567566720000,"y":0.01},{"x":1567566780000,"y":0},{"x":1567566840000,"y":0},{"x":1567566900000,"y":0},{"x":1567566960000,"y":0},{"x":1567567020000,"y":0},{"x":1567567080000,"y":0},{"x":1567567140000,"y":0},{"x":1567567200000,"y":0},{"x":1567567260000,"y":0},{"x":1567567320000,"y":0},{"x":1567567380000,"y":0},{"x":1567567440000,"y":0},{"x":1567567500000,"y":0},{"x":1567567560000,"y":0},{"x":1567567620000,"y":0},{"x":1567567680000,"y":0},{"x":1567567740000,"y":0},{"x":1567567800000,"y":0},{"x":1567567860000,"y":0},{"x":1567567920000,"y":0},{"x":1567567980000,"y":0},{"x":1567568040000,"y":0},{"x":1567568100000,"y":0},{"x":1567568160000,"y":0},{"x":1567568220000,"y":0},{"x":1567568280000,"y":0},{"x":1567568340000,"y":0},{"x":1567568400000,"y":0},{"x":1567568460000,"y":0},{"x":1567568520000,"y":0},{"x":1567568580000,"y":0},{"x":1567568640000,"y":0},{"x":1567568700000,"y":0},{"x":1567568760000,"y":0},{"x":1567568820000,"y":0},{"x":1567568880000,"y":0},{"x":1567568940000,"y":0},{"x":1567569000000,"y":0},{"x":1567569060000,"y":0},{"x":1567569120000,"y":0},{"x":1567569180000,"y":0},{"x":1567569240000,"y":0},{"x":1567569300000,"y":0},{"x":1567569360000,"y":0},{"x":1567569420000,"y":0},{"x":1567569480000,"y":0},{"x":1567569540000,"y":0},{"x":1567569600000,"y":0},{"x":1567569660000,"y":0},{"x":1567569720000,"y":0},{"x":1567569780000,"y":0},{"x":1567569840000,"y":0},{"x":1567569900000,"y":0},{"x":1567569960000,"y":0},{"x":1567570020000,"y":0},{"x":1567570080000,"y":0},{"x":1567570140000,"y":0},{"x":1567570200000,"y":0},{"x":1567570260000,"y":0},{"x":1567570320000,"y":0.01},{"x":1567570380000,"y":0},{"x":1567570440000,"y":0},{"x":1567570500000,"y":0},{"x":1567570560000,"y":0},{"x":1567570620000,"y":0},{"x":1567570680000,"y":0},{"x":1567570740000,"y":0},{"x":1567570800000,"y":0},{"x":1567570860000,"y":0.01},{"x":1567570920000,"y":0},{"x":1567570980000,"y":0},{"x":1567571040000,"y":0},{"x":1567571100000,"y":0},{"x":1567571160000,"y":0},{"x":1567571220000,"y":0},{"x":1567571280000,"y":0},{"x":1567571340000,"y":0},{"x":1567571400000,"y":0},{"x":1567571460000,"y":0},{"x":1567571520000,"y":0},{"x":1567571580000,"y":0},{"x":1567571640000,"y":0},{"x":1567571700000,"y":0},{"x":1567571760000,"y":0},{"x":1567571820000,"y":0},{"x":1567571880000,"y":0},{"x":1567571940000,"y":0},{"x":1567572000000,"y":0},{"x":1567572060000,"y":0},{"x":1567572120000,"y":0},{"x":1567572180000,"y":0},{"x":1567572240000,"y":0},{"x":1567572300000,"y":0},{"x":1567572360000,"y":0},{"x":1567572420000,"y":0},{"x":1567572480000,"y":0},{"x":1567572540000,"y":0},{"x":1567572600000,"y":0},{"x":1567572660000,"y":0},{"x":1567572720000,"y":0},{"x":1567572780000,"y":0},{"x":1567572840000,"y":0},{"x":1567572900000,"y":0},{"x":1567572960000,"y":0},{"x":1567573020000,"y":0},{"x":1567573080000,"y":0},{"x":1567573140000,"y":0},{"x":1567573200000,"y":0},{"x":1567573260000,"y":0},{"x":1567573320000,"y":0},{"x":1567573380000,"y":0},{"x":1567573440000,"y":0},{"x":1567573500000,"y":0},{"x":1567573560000,"y":0},{"x":1567573620000,"y":0},{"x":1567573680000,"y":0},{"x":1567573740000,"y":0},{"x":1567573800000,"y":0},{"x":1567573860000,"y":0},{"x":1567573920000,"y":0.01},{"x":1567573980000,"y":0},{"x":1567574040000,"y":0},{"x":1567574100000,"y":0},{"x":1567574160000,"y":0},{"x":1567574220000,"y":0},{"x":1567574280000,"y":0},{"x":1567574340000,"y":0},{"x":1567574400000,"y":0},{"x":1567574460000,"y":0},{"x":1567574520000,"y":0},{"x":1567574580000,"y":0},{"x":1567574640000,"y":0},{"x":1567574700000,"y":0},{"x":1567574760000,"y":0},{"x":1567574820000,"y":0},{"x":1567574880000,"y":0},{"x":1567574940000,"y":0},{"x":1567575000000,"y":0},{"x":1567575060000,"y":0},{"x":1567575120000,"y":0},{"x":1567575180000,"y":0},{"x":1567575240000,"y":0},{"x":1567575300000,"y":0},{"x":1567575360000,"y":0.01},{"x":1567575420000,"y":0},{"x":1567575480000,"y":0},{"x":1567575540000,"y":0},{"x":1567575600000,"y":0},{"x":1567575660000,"y":0},{"x":1567575720000,"y":0},{"x":1567575780000,"y":0},{"x":1567575840000,"y":0},{"x":1567575900000,"y":0},{"x":1567575960000,"y":0},{"x":1567576020000,"y":0},{"x":1567576080000,"y":0},{"x":1567576140000,"y":0},{"x":1567576200000,"y":0},{"x":1567576260000,"y":0},{"x":1567576320000,"y":0},{"x":1567576380000,"y":0},{"x":1567576440000,"y":0},{"x":1567576500000,"y":0},{"x":1567576560000,"y":0},{"x":1567576620000,"y":0},{"x":1567576680000,"y":0},{"x":1567576740000,"y":0},{"x":1567576800000,"y":0},{"x":1567576860000,"y":0},{"x":1567576920000,"y":0},{"x":1567576980000,"y":0},{"x":1567577040000,"y":0},{"x":1567577100000,"y":0},{"x":1567577160000,"y":0},{"x":1567577220000,"y":0},{"x":1567577280000,"y":0},{"x":1567577340000,"y":0},{"x":1567577400000,"y":0},{"x":1567577460000,"y":0},{"x":1567577520000,"y":0.01},{"x":1567577580000,"y":0},{"x":1567577640000,"y":0},{"x":1567577700000,"y":0},{"x":1567577760000,"y":0},{"x":1567577820000,"y":0},{"x":1567577880000,"y":0},{"x":1567577940000,"y":0},{"x":1567578000000,"y":0},{"x":1567578060000,"y":0},{"x":1567578120000,"y":0},{"x":1567578180000,"y":0},{"x":1567578240000,"y":0},{"x":1567578300000,"y":0},{"x":1567578360000,"y":0},{"x":1567578420000,"y":0},{"x":1567578480000,"y":0},{"x":1567578540000,"y":0},{"x":1567578600000,"y":0},{"x":1567578660000,"y":0},{"x":1567578720000,"y":0},{"x":1567578780000,"y":0},{"x":1567578840000,"y":0},{"x":1567578900000,"y":0},{"x":1567578960000,"y":0},{"x":1567579020000,"y":0},{"x":1567579080000,"y":0},{"x":1567579140000,"y":0},{"x":1567579200000,"y":0},{"x":1567579260000,"y":5.65},{"x":1567579320000,"y":0.01},{"x":1567579380000,"y":0},{"x":1567579440000,"y":0},{"x":1567579500000,"y":0},{"x":1567579560000,"y":0},{"x":1567579620000,"y":0},{"x":1567579680000,"y":0},{"x":1567579740000,"y":0},{"x":1567579800000,"y":0},{"x":1567579860000,"y":0},{"x":1567579920000,"y":0},{"x":1567579980000,"y":0},{"x":1567580040000,"y":0},{"x":1567580100000,"y":0},{"x":1567580160000,"y":0},{"x":1567580220000,"y":0},{"x":1567580280000,"y":0},{"x":1567580340000,"y":0},{"x":1567580400000,"y":0},{"x":1567580460000,"y":0},{"x":1567580520000,"y":0},{"x":1567580580000,"y":0},{"x":1567580640000,"y":0},{"x":1567580700000,"y":0},{"x":1567580760000,"y":0},{"x":1567580820000,"y":0},{"x":1567580880000,"y":0},{"x":1567580940000,"y":0},{"x":1567581000000,"y":0},{"x":1567581060000,"y":0},{"x":1567581120000,"y":0.01},{"x":1567581180000,"y":0},{"x":1567581240000,"y":0},{"x":1567581300000,"y":0},{"x":1567581360000,"y":0},{"x":1567581420000,"y":0},{"x":1567581480000,"y":0},{"x":1567581540000,"y":0},{"x":1567581600000,"y":0},{"x":1567581660000,"y":0},{"x":1567581720000,"y":0},{"x":1567581780000,"y":0},{"x":1567581840000,"y":0},{"x":1567581900000,"y":0},{"x":1567581960000,"y":0},{"x":1567582020000,"y":0},{"x":1567582080000,"y":0},{"x":1567582140000,"y":0},{"x":1567582200000,"y":0.74},{"x":1567582260000,"y":0.03},{"x":1567582320000,"y":0.01},{"x":1567582380000,"y":0},{"x":1567582440000,"y":0},{"x":1567582500000,"y":0},{"x":1567582560000,"y":0},{"x":1567582620000,"y":0},{"x":1567582680000,"y":0},{"x":1567582740000,"y":0},{"x":1567582800000,"y":0},{"x":1567582860000,"y":0},{"x":1567582920000,"y":0},{"x":1567582980000,"y":0},{"x":1567583040000,"y":0},{"x":1567583100000,"y":0},{"x":1567583160000,"y":0},{"x":1567583220000,"y":0},{"x":1567583280000,"y":0},{"x":1567583340000,"y":0},{"x":1567583400000,"y":0},{"x":1567583460000,"y":0},{"x":1567583520000,"y":0},{"x":1567583580000,"y":0},{"x":1567583640000,"y":0},{"x":1567583700000,"y":0},{"x":1567583760000,"y":0},{"x":1567583820000,"y":0},{"x":1567583880000,"y":0},{"x":1567583940000,"y":0},{"x":1567584000000,"y":0},{"x":1567584060000,"y":0},{"x":1567584120000,"y":0},{"x":1567584180000,"y":0},{"x":1567584240000,"y":0},{"x":1567584300000,"y":0},{"x":1567584360000,"y":0},{"x":1567584420000,"y":0},{"x":1567584480000,"y":0},{"x":1567584540000,"y":0},{"x":1567584600000,"y":0},{"x":1567584660000,"y":0},{"x":1567584720000,"y":0.01},{"x":1567584780000,"y":0},{"x":1567584840000,"y":0},{"x":1567584900000,"y":0},{"x":1567584960000,"y":0},{"x":1567585020000,"y":0},{"x":1567585080000,"y":0},{"x":1567585140000,"y":0},{"x":1567585200000,"y":0},{"x":1567585260000,"y":0.01},{"x":1567585320000,"y":0},{"x":1567585380000,"y":0},{"x":1567585440000,"y":0},{"x":1567585500000,"y":0},{"x":1567585560000,"y":0},{"x":1567585620000,"y":0},{"x":1567585680000,"y":0},{"x":1567585740000,"y":0},{"x":1567585800000,"y":0},{"x":1567585860000,"y":0},{"x":1567585920000,"y":0},{"x":1567585980000,"y":0},{"x":1567586040000,"y":0},{"x":1567586100000,"y":0},{"x":1567586160000,"y":0},{"x":1567586220000,"y":0},{"x":1567586280000,"y":0},{"x":1567586340000,"y":0},{"x":1567586400000,"y":0},{"x":1567586460000,"y":0},{"x":1567586520000,"y":0},{"x":1567586580000,"y":0},{"x":1567586640000,"y":0},{"x":1567586700000,"y":0},{"x":1567586760000,"y":0},{"x":1567586820000,"y":0},{"x":1567586880000,"y":0},{"x":1567586940000,"y":0},{"x":1567587000000,"y":0},{"x":1567587060000,"y":0},{"x":1567587120000,"y":0},{"x":1567587180000,"y":0},{"x":1567587240000,"y":0},{"x":1567587300000,"y":0},{"x":1567587360000,"y":0},{"x":1567587420000,"y":0},{"x":1567587480000,"y":0},{"x":1567587540000,"y":0},{"x":1567587600000,"y":0},{"x":1567587660000,"y":0},{"x":1567587720000,"y":0},{"x":1567587780000,"y":0},{"x":1567587840000,"y":0},{"x":1567587900000,"y":0},{"x":1567587960000,"y":0},{"x":1567588020000,"y":0},{"x":1567588080000,"y":0},{"x":1567588140000,"y":0},{"x":1567588200000,"y":0},{"x":1567588260000,"y":0},{"x":1567588320000,"y":0.01},{"x":1567588380000,"y":0},{"x":1567588440000,"y":0.01},{"x":1567588500000,"y":0},{"x":1567588560000,"y":0},{"x":1567588620000,"y":0},{"x":1567588680000,"y":0},{"x":1567588740000,"y":0},{"x":1567588800000,"y":0},{"x":1567588860000,"y":0},{"x":1567588920000,"y":0},{"x":1567588980000,"y":0},{"x":1567589040000,"y":0},{"x":1567589100000,"y":0},{"x":1567589160000,"y":0},{"x":1567589220000,"y":0},{"x":1567589280000,"y":0},{"x":1567589340000,"y":0},{"x":1567589400000,"y":0},{"x":1567589460000,"y":0},{"x":1567589520000,"y":0},{"x":1567589580000,"y":0},{"x":1567589640000,"y":0},{"x":1567589700000,"y":0},{"x":1567589760000,"y":0},{"x":1567589820000,"y":0},{"x":1567589880000,"y":0},{"x":1567589940000,"y":0},{"x":1567590000000,"y":0},{"x":1567590060000,"y":0},{"x":1567590120000,"y":0},{"x":1567590180000,"y":0},{"x":1567590240000,"y":0},{"x":1567590300000,"y":0},{"x":1567590360000,"y":0},{"x":1567590420000,"y":0},{"x":1567590480000,"y":0},{"x":1567590540000,"y":0},{"x":1567590600000,"y":0},{"x":1567590660000,"y":0},{"x":1567590720000,"y":0},{"x":1567590780000,"y":0},{"x":1567590840000,"y":0},{"x":1567590900000,"y":0},{"x":1567590960000,"y":0},{"x":1567591020000,"y":0},{"x":1567591080000,"y":0},{"x":1567591140000,"y":0},{"x":1567591200000,"y":0},{"x":1567591260000,"y":0},{"x":1567591320000,"y":0},{"x":1567591380000,"y":0},{"x":1567591440000,"y":0},{"x":1567591500000,"y":0},{"x":1567591560000,"y":0},{"x":1567591620000,"y":0},{"x":1567591680000,"y":0},{"x":1567591740000,"y":0.07},{"x":1567591800000,"y":0.01},{"x":1567591860000,"y":0},{"x":1567591920000,"y":0.01},{"x":1567591980000,"y":0},{"x":1567592040000,"y":0},{"x":1567592100000,"y":0},{"x":1567592160000,"y":0},{"x":1567592220000,"y":0},{"x":1567592280000,"y":0},{"x":1567592340000,"y":0},{"x":1567592400000,"y":0},{"x":1567592460000,"y":0},{"x":1567592520000,"y":0},{"x":1567592580000,"y":0},{"x":1567592640000,"y":0},{"x":1567592700000,"y":0},{"x":1567592760000,"y":0},{"x":1567592820000,"y":0},{"x":1567592880000,"y":0},{"x":1567592940000,"y":0},{"x":1567593000000,"y":0},{"x":1567593060000,"y":0},{"x":1567593120000,"y":0},{"x":1567593180000,"y":0},{"x":1567593240000,"y":0},{"x":1567593300000,"y":0},{"x":1567593360000,"y":0},{"x":1567593420000,"y":0},{"x":1567593480000,"y":0},{"x":1567593540000,"y":0},{"x":1567593600000,"y":0},{"x":1567593660000,"y":0},{"x":1567593720000,"y":0},{"x":1567593780000,"y":0},{"x":1567593840000,"y":0},{"x":1567593900000,"y":0},{"x":1567593960000,"y":0},{"x":1567594020000,"y":0},{"x":1567594080000,"y":0},{"x":1567594140000,"y":0},{"x":1567594200000,"y":0},{"x":1567594260000,"y":0},{"x":1567594320000,"y":0},{"x":1567594380000,"y":0},{"x":1567594440000,"y":0},{"x":1567594500000,"y":0},{"x":1567594560000,"y":0},{"x":1567594620000,"y":0},{"x":1567594680000,"y":0},{"x":1567594740000,"y":0},{"x":1567594800000,"y":0},{"x":1567594860000,"y":0},{"x":1567594920000,"y":0},{"x":1567594980000,"y":0},{"x":1567595040000,"y":0},{"x":1567595100000,"y":0},{"x":1567595160000,"y":0},{"x":1567595220000,"y":0},{"x":1567595280000,"y":0},{"x":1567595340000,"y":0},{"x":1567595400000,"y":0},{"x":1567595460000,"y":0},{"x":1567595520000,"y":0.01},{"x":1567595580000,"y":0},{"x":1567595640000,"y":0.02},{"x":1567595700000,"y":0},{"x":1567595760000,"y":0},{"x":1567595820000,"y":0},{"x":1567595880000,"y":0},{"x":1567595940000,"y":0},{"x":1567596000000,"y":0},{"x":1567596060000,"y":0},{"x":1567596120000,"y":0},{"x":1567596180000,"y":0},{"x":1567596240000,"y":0},{"x":1567596300000,"y":0},{"x":1567596360000,"y":0},{"x":1567596420000,"y":0},{"x":1567596480000,"y":0},{"x":1567596540000,"y":0},{"x":1567596600000,"y":0},{"x":1567596660000,"y":0},{"x":1567596720000,"y":0},{"x":1567596780000,"y":0},{"x":1567596840000,"y":0},{"x":1567596900000,"y":0},{"x":1567596960000,"y":0},{"x":1567597020000,"y":0},{"x":1567597080000,"y":0},{"x":1567597140000,"y":0},{"x":1567597200000,"y":0},{"x":1567597260000,"y":0.01},{"x":1567597320000,"y":0.01},{"x":1567597380000,"y":0},{"x":1567597440000,"y":0},{"x":1567597500000,"y":0},{"x":1567597560000,"y":0},{"x":1567597620000,"y":0},{"x":1567597680000,"y":0},{"x":1567597740000,"y":0},{"x":1567597800000,"y":0},{"x":1567597860000,"y":0},{"x":1567597920000,"y":0},{"x":1567597980000,"y":0},{"x":1567598040000,"y":0},{"x":1567598100000,"y":0},{"x":1567598160000,"y":0},{"x":1567598220000,"y":0},{"x":1567598280000,"y":0},{"x":1567598340000,"y":0},{"x":1567598400000,"y":0},{"x":1567598460000,"y":0},{"x":1567598520000,"y":0},{"x":1567598580000,"y":0},{"x":1567598640000,"y":0},{"x":1567598700000,"y":0},{"x":1567598760000,"y":0.01},{"x":1567598820000,"y":0},{"x":1567598880000,"y":0},{"x":1567598940000,"y":0},{"x":1567599000000,"y":0},{"x":1567599060000,"y":0},{"x":1567599120000,"y":0.01},{"x":1567599180000,"y":0},{"x":1567599240000,"y":0},{"x":1567599300000,"y":0},{"x":1567599360000,"y":0},{"x":1567599420000,"y":0},{"x":1567599480000,"y":0},{"x":1567599540000,"y":0},{"x":1567599600000,"y":0.01},{"x":1567599660000,"y":0},{"x":1567599720000,"y":0},{"x":1567599780000,"y":0},{"x":1567599840000,"y":0},{"x":1567599900000,"y":0},{"x":1567599960000,"y":0},{"x":1567600020000,"y":0},{"x":1567600080000,"y":0},{"x":1567600140000,"y":0},{"x":1567600200000,"y":0},{"x":1567600260000,"y":0},{"x":1567600320000,"y":0},{"x":1567600380000,"y":0},{"x":1567600440000,"y":0},{"x":1567600500000,"y":0},{"x":1567600560000,"y":0},{"x":1567600620000,"y":0},{"x":1567600680000,"y":0},{"x":1567600740000,"y":0},{"x":1567600800000,"y":0},{"x":1567600860000,"y":0},{"x":1567600920000,"y":0},{"x":1567600980000,"y":0},{"x":1567601040000,"y":0},{"x":1567601100000,"y":0},{"x":1567601160000,"y":0},{"x":1567601220000,"y":0},{"x":1567601280000,"y":0},{"x":1567601340000,"y":0},{"x":1567601400000,"y":0},{"x":1567601460000,"y":0},{"x":1567601520000,"y":0},{"x":1567601580000,"y":0},{"x":1567601640000,"y":0},{"x":1567601700000,"y":0},{"x":1567601760000,"y":0},{"x":1567601820000,"y":0},{"x":1567601880000,"y":0},{"x":1567601940000,"y":0},{"x":1567602000000,"y":0},{"x":1567602060000,"y":0},{"x":1567602120000,"y":0},{"x":1567602180000,"y":0.01},{"x":1567602240000,"y":0},{"x":1567602300000,"y":0},{"x":1567602360000,"y":0.01},{"x":1567602420000,"y":0.01},{"x":1567602480000,"y":0},{"x":1567602540000,"y":0},{"x":1567602600000,"y":0},{"x":1567602660000,"y":0},{"x":1567602720000,"y":0.01},{"x":1567602780000,"y":0},{"x":1567602840000,"y":0},{"x":1567602900000,"y":0},{"x":1567602960000,"y":0},{"x":1567603020000,"y":0},{"x":1567603080000,"y":0},{"x":1567603140000,"y":0},{"x":1567603200000,"y":0.01},{"x":1567603260000,"y":0},{"x":1567603320000,"y":0},{"x":1567603380000,"y":0},{"x":1567603440000,"y":0},{"x":1567603500000,"y":0},{"x":1567603560000,"y":0},{"x":1567603620000,"y":0},{"x":1567603680000,"y":0},{"x":1567603740000,"y":0},{"x":1567603800000,"y":0},{"x":1567603860000,"y":0},{"x":1567603920000,"y":0},{"x":1567603980000,"y":0},{"x":1567604040000,"y":0},{"x":1567604100000,"y":0},{"x":1567604160000,"y":0},{"x":1567604220000,"y":0},{"x":1567604280000,"y":0},{"x":1567604340000,"y":0},{"x":1567604400000,"y":0},{"x":1567604460000,"y":0},{"x":1567604520000,"y":0},{"x":1567604580000,"y":0},{"x":1567604640000,"y":0},{"x":1567604700000,"y":0},{"x":1567604760000,"y":0},{"x":1567604820000,"y":0},{"x":1567604880000,"y":0},{"x":1567604940000,"y":0},{"x":1567605000000,"y":0.02},{"x":1567605060000,"y":0},{"x":1567605120000,"y":0},{"x":1567605180000,"y":0},{"x":1567605240000,"y":0},{"x":1567605300000,"y":0},{"x":1567605360000,"y":0},{"x":1567605420000,"y":0},{"x":1567605480000,"y":0},{"x":1567605540000,"y":0},{"x":1567605600000,"y":0},{"x":1567605660000,"y":0},{"x":1567605720000,"y":0},{"x":1567605780000,"y":0},{"x":1567605840000,"y":0},{"x":1567605900000,"y":0},{"x":1567605960000,"y":0},{"x":1567606020000,"y":0},{"x":1567606080000,"y":0},{"x":1567606140000,"y":0},{"x":1567606200000,"y":0},{"x":1567606260000,"y":0},{"x":1567606320000,"y":0.01},{"x":1567606380000,"y":0},{"x":1567606440000,"y":0},{"x":1567606500000,"y":0},{"x":1567606560000,"y":0},{"x":1567606620000,"y":0.01},{"x":1567606680000,"y":0},{"x":1567606740000,"y":0},{"x":1567606800000,"y":0.01},{"x":1567606860000,"y":0},{"x":1567606920000,"y":0},{"x":1567606980000,"y":0},{"x":1567607040000,"y":0},{"x":1567607100000,"y":0},{"x":1567607160000,"y":0},{"x":1567607220000,"y":0},{"x":1567607280000,"y":0},{"x":1567607340000,"y":0},{"x":1567607400000,"y":0},{"x":1567607460000,"y":0},{"x":1567607520000,"y":0},{"x":1567607580000,"y":0},{"x":1567607640000,"y":0},{"x":1567607700000,"y":0},{"x":1567607760000,"y":0},{"x":1567607820000,"y":0},{"x":1567607880000,"y":0},{"x":1567607940000,"y":0},{"x":1567608000000,"y":0},{"x":1567608060000,"y":0},{"x":1567608120000,"y":0},{"x":1567608180000,"y":0},{"x":1567608240000,"y":0},{"x":1567608300000,"y":0},{"x":1567608360000,"y":0},{"x":1567608420000,"y":0.14},{"x":1567608480000,"y":0},{"x":1567608540000,"y":0},{"x":1567608600000,"y":0},{"x":1567608660000,"y":0},{"x":1567608720000,"y":0},{"x":1567608780000,"y":0},{"x":1567608840000,"y":0},{"x":1567608900000,"y":0},{"x":1567608960000,"y":0},{"x":1567609020000,"y":0},{"x":1567609080000,"y":0},{"x":1567609140000,"y":0},{"x":1567609200000,"y":0},{"x":1567609260000,"y":0},{"x":1567609320000,"y":0},{"x":1567609380000,"y":0},{"x":1567609440000,"y":0},{"x":1567609500000,"y":0},{"x":1567609560000,"y":0},{"x":1567609620000,"y":0},{"x":1567609680000,"y":0},{"x":1567609740000,"y":0},{"x":1567609800000,"y":0},{"x":1567609860000,"y":0.02},{"x":1567609920000,"y":0},{"x":1567609980000,"y":0},{"x":1567610040000,"y":0},{"x":1567610100000,"y":0},{"x":1567610160000,"y":0},{"x":1567610220000,"y":0},{"x":1567610280000,"y":0},{"x":1567610340000,"y":0},{"x":1567610400000,"y":0},{"x":1567610460000,"y":0},{"x":1567610520000,"y":0},{"x":1567610580000,"y":0},{"x":1567610640000,"y":0},{"x":1567610700000,"y":0},{"x":1567610760000,"y":0},{"x":1567610820000,"y":0},{"x":1567610880000,"y":0},{"x":1567610940000,"y":0},{"x":1567611000000,"y":0},{"x":1567611060000,"y":0},{"x":1567611120000,"y":0},{"x":1567611180000,"y":0},{"x":1567611240000,"y":0},{"x":1567611300000,"y":0},{"x":1567611360000,"y":0},{"x":1567611420000,"y":0},{"x":1567611480000,"y":0},{"x":1567611540000,"y":0},{"x":1567611600000,"y":0},{"x":1567611660000,"y":1.1},{"x":1567611720000,"y":0},{"x":1567611780000,"y":0},{"x":1567611840000,"y":0.74},{"x":1567611900000,"y":0.01},{"x":1567611960000,"y":0},{"x":1567612020000,"y":0},{"x":1567612080000,"y":0},{"x":1567612140000,"y":0},{"x":1567612200000,"y":0},{"x":1567612260000,"y":0},{"x":1567612320000,"y":0},{"x":1567612380000,"y":0},{"x":1567612440000,"y":0},{"x":1567612500000,"y":0},{"x":1567612560000,"y":1.97},{"x":1567612620000,"y":1.96},{"x":1567612680000,"y":0},{"x":1567612740000,"y":0},{"x":1567612800000,"y":0.01},{"x":1567612860000,"y":0},{"x":1567612920000,"y":0},{"x":1567612980000,"y":0},{"x":1567613040000,"y":0},{"x":1567613100000,"y":0},{"x":1567613160000,"y":0},{"x":1567613220000,"y":0},{"x":1567613280000,"y":0},{"x":1567613340000,"y":0},{"x":1567613400000,"y":0},{"x":1567613460000,"y":0},{"x":1567613520000,"y":0},{"x":1567613580000,"y":0.84},{"x":1567613640000,"y":0},{"x":1567613700000,"y":0},{"x":1567613760000,"y":0},{"x":1567613820000,"y":0},{"x":1567613880000,"y":0},{"x":1567613940000,"y":0},{"x":1567614000000,"y":0},{"x":1567614060000,"y":0},{"x":1567614120000,"y":0},{"x":1567614180000,"y":0},{"x":1567614240000,"y":0},{"x":1567614300000,"y":0},{"x":1567614360000,"y":0},{"x":1567614420000,"y":0},{"x":1567614480000,"y":0},{"x":1567614540000,"y":0},{"x":1567614600000,"y":0},{"x":1567614660000,"y":0},{"x":1567614720000,"y":0},{"x":1567614780000,"y":0},{"x":1567614840000,"y":0},{"x":1567614900000,"y":0},{"x":1567614960000,"y":0},{"x":1567615020000,"y":0},{"x":1567615080000,"y":0},{"x":1567615140000,"y":0},{"x":1567615200000,"y":0},{"x":1567615260000,"y":0},{"x":1567615320000,"y":0},{"x":1567615380000,"y":0},{"x":1567615440000,"y":0},{"x":1567615500000,"y":0},{"x":1567615560000,"y":0},{"x":1567615620000,"y":0},{"x":1567615680000,"y":0},{"x":1567615740000,"y":0},{"x":1567615800000,"y":0},{"x":1567615860000,"y":0},{"x":1567615920000,"y":0.01},{"x":1567615980000,"y":0},{"x":1567616040000,"y":0},{"x":1567616100000,"y":0},{"x":1567616160000,"y":0},{"x":1567616220000,"y":0},{"x":1567616280000,"y":0},{"x":1567616340000,"y":0},{"x":1567616400000,"y":0},{"x":1567616460000,"y":0},{"x":1567616520000,"y":0},{"x":1567616580000,"y":0},{"x":1567616640000,"y":0},{"x":1567616700000,"y":0},{"x":1567616760000,"y":0},{"x":1567616820000,"y":0},{"x":1567616880000,"y":0},{"x":1567616940000,"y":0},{"x":1567617000000,"y":0},{"x":1567617060000,"y":0},{"x":1567617120000,"y":0},{"x":1567617180000,"y":0},{"x":1567617240000,"y":0},{"x":1567617300000,"y":0},{"x":1567617360000,"y":0},{"x":1567617420000,"y":0},{"x":1567617480000,"y":0},{"x":1567617540000,"y":0},{"x":1567617600000,"y":0},{"x":1567617660000,"y":0},{"x":1567617720000,"y":0},{"x":1567617780000,"y":0},{"x":1567617840000,"y":0},{"x":1567617900000,"y":0},{"x":1567617960000,"y":0},{"x":1567618020000,"y":0},{"x":1567618080000,"y":0},{"x":1567618140000,"y":0},{"x":1567618200000,"y":0},{"x":1567618260000,"y":0},{"x":1567618320000,"y":0},{"x":1567618380000,"y":0},{"x":1567618440000,"y":0},{"x":1567618500000,"y":0},{"x":1567618560000,"y":0},{"x":1567618620000,"y":0},{"x":1567618680000,"y":0},{"x":1567618740000,"y":0},{"x":1567618800000,"y":0},{"x":1567618860000,"y":0},{"x":1567618920000,"y":0},{"x":1567618980000,"y":0},{"x":1567619040000,"y":0},{"x":1567619100000,"y":0},{"x":1567619160000,"y":0.01},{"x":1567619220000,"y":0},{"x":1567619280000,"y":0},{"x":1567619340000,"y":0},{"x":1567619400000,"y":0},{"x":1567619460000,"y":0},{"x":1567619520000,"y":0},{"x":1567619580000,"y":0},{"x":1567619640000,"y":0},{"x":1567619700000,"y":0},{"x":1567619760000,"y":0},{"x":1567619820000,"y":0},{"x":1567619880000,"y":0},{"x":1567619940000,"y":0},{"x":1567620000000,"y":0},{"x":1567620060000,"y":0},{"x":1567620120000,"y":0},{"x":1567620180000,"y":0},{"x":1567620240000,"y":0},{"x":1567620300000,"y":0},{"x":1567620360000,"y":0},{"x":1567620420000,"y":0},{"x":1567620480000,"y":0},{"x":1567620540000,"y":0},{"x":1567620600000,"y":0},{"x":1567620660000,"y":0},{"x":1567620720000,"y":0},{"x":1567620780000,"y":0},{"x":1567620840000,"y":0},{"x":1567620900000,"y":0},{"x":1567620960000,"y":0},{"x":1567621020000,"y":0},{"x":1567621080000,"y":0},{"x":1567621140000,"y":0},{"x":1567621200000,"y":0},{"x":1567621260000,"y":0},{"x":1567621320000,"y":0},{"x":1567621380000,"y":0},{"x":1567621440000,"y":0},{"x":1567621500000,"y":0},{"x":1567621560000,"y":0},{"x":1567621620000,"y":0},{"x":1567621680000,"y":0},{"x":1567621740000,"y":0},{"x":1567621800000,"y":0},{"x":1567621860000,"y":0},{"x":1567621920000,"y":0},{"x":1567621980000,"y":0},{"x":1567622040000,"y":0},{"x":1567622100000,"y":0},{"x":1567622160000,"y":0},{"x":1567622220000,"y":0},{"x":1567622280000,"y":0},{"x":1567622340000,"y":0},{"x":1567622400000,"y":0},{"x":1567622460000,"y":0},{"x":1567622520000,"y":0},{"x":1567622580000,"y":0},{"x":1567622640000,"y":0},{"x":1567622700000,"y":0},{"x":1567622760000,"y":0},{"x":1567622820000,"y":0},{"x":1567622880000,"y":0},{"x":1567622940000,"y":0},{"x":1567623000000,"y":0},{"x":1567623060000,"y":0},{"x":1567623120000,"y":0},{"x":1567623180000,"y":0},{"x":1567623240000,"y":0},{"x":1567623300000,"y":0},{"x":1567623360000,"y":0},{"x":1567623420000,"y":0},{"x":1567623480000,"y":0},{"x":1567623540000,"y":0},{"x":1567623600000,"y":0},{"x":1567623660000,"y":0},{"x":1567623720000,"y":0},{"x":1567623780000,"y":0},{"x":1567623840000,"y":0},{"x":1567623900000,"y":0},{"x":1567623960000,"y":0},{"x":1567624020000,"y":0},{"x":1567624080000,"y":0},{"x":1567624140000,"y":0},{"x":1567624200000,"y":0.04},{"x":1567624260000,"y":0},{"x":1567624320000,"y":0},{"x":1567624380000,"y":0},{"x":1567624440000,"y":0},{"x":1567624500000,"y":0},{"x":1567624560000,"y":0},{"x":1567624620000,"y":0},{"x":1567624680000,"y":0},{"x":1567624740000,"y":0.01},{"x":1567624800000,"y":0},{"x":1567624860000,"y":0},{"x":1567624920000,"y":0},{"x":1567624980000,"y":0},{"x":1567625040000,"y":0},{"x":1567625100000,"y":0},{"x":1567625160000,"y":0},{"x":1567625220000,"y":0.64},{"x":1567625280000,"y":0},{"x":1567625340000,"y":0},{"x":1567625400000,"y":3.57},{"x":1567625460000,"y":0},{"x":1567625520000,"y":0},{"x":1567625580000,"y":0},{"x":1567625640000,"y":0},{"x":1567625700000,"y":0},{"x":1567625760000,"y":0},{"x":1567625820000,"y":0},{"x":1567625880000,"y":0},{"x":1567625940000,"y":0},{"x":1567626000000,"y":0},{"x":1567626060000,"y":0},{"x":1567626120000,"y":0},{"x":1567626180000,"y":0},{"x":1567626240000,"y":0},{"x":1567626300000,"y":0},{"x":1567626360000,"y":0},{"x":1567626420000,"y":0},{"x":1567626480000,"y":0},{"x":1567626540000,"y":0},{"x":1567626600000,"y":0},{"x":1567626660000,"y":0},{"x":1567626720000,"y":0},{"x":1567626780000,"y":0},{"x":1567626840000,"y":0},{"x":1567626900000,"y":0},{"x":1567626960000,"y":0},{"x":1567627020000,"y":0},{"x":1567627080000,"y":0},{"x":1567627140000,"y":0},{"x":1567627200000,"y":0},{"x":1567627260000,"y":0},{"x":1567627320000,"y":0},{"x":1567627380000,"y":0},{"x":1567627440000,"y":0},{"x":1567627500000,"y":0},{"x":1567627560000,"y":0},{"x":1567627620000,"y":0},{"x":1567627680000,"y":0},{"x":1567627740000,"y":0},{"x":1567627800000,"y":0},{"x":1567627860000,"y":0},{"x":1567627920000,"y":0},{"x":1567627980000,"y":0},{"x":1567628040000,"y":0},{"x":1567628100000,"y":0},{"x":1567628160000,"y":0},{"x":1567628220000,"y":0},{"x":1567628280000,"y":0},{"x":1567628340000,"y":0},{"x":1567628400000,"y":0},{"x":1567628460000,"y":0},{"x":1567628520000,"y":0},{"x":1567628580000,"y":0},{"x":1567628640000,"y":0},{"x":1567628700000,"y":0},{"x":1567628760000,"y":0},{"x":1567628820000,"y":0},{"x":1567628880000,"y":0},{"x":1567628940000,"y":0},{"x":1567629000000,"y":0},{"x":1567629060000,"y":0.02},{"x":1567629120000,"y":0},{"x":1567629180000,"y":0},{"x":1567629240000,"y":0},{"x":1567629300000,"y":0},{"x":1567629360000,"y":0},{"x":1567629420000,"y":0},{"x":1567629480000,"y":0},{"x":1567629540000,"y":0},{"x":1567629600000,"y":0},{"x":1567629660000,"y":0},{"x":1567629720000,"y":0},{"x":1567629780000,"y":0},{"x":1567629840000,"y":0},{"x":1567629900000,"y":0},{"x":1567629960000,"y":0},{"x":1567630020000,"y":0},{"x":1567630080000,"y":0},{"x":1567630140000,"y":0},{"x":1567630200000,"y":0},{"x":1567630260000,"y":0},{"x":1567630320000,"y":0},{"x":1567630380000,"y":0},{"x":1567630440000,"y":0},{"x":1567630500000,"y":0},{"x":1567630560000,"y":0},{"x":1567630620000,"y":0},{"x":1567630680000,"y":0},{"x":1567630740000,"y":0},{"x":1567630800000,"y":0},{"x":1567630860000,"y":0},{"x":1567630920000,"y":0},{"x":1567630980000,"y":0},{"x":1567631040000,"y":0},{"x":1567631100000,"y":0},{"x":1567631160000,"y":0},{"x":1567631220000,"y":0},{"x":1567631280000,"y":0},{"x":1567631340000,"y":0},{"x":1567631400000,"y":0},{"x":1567631460000,"y":0},{"x":1567631520000,"y":0},{"x":1567631580000,"y":0},{"x":1567631640000,"y":0},{"x":1567631700000,"y":0},{"x":1567631760000,"y":0},{"x":1567631820000,"y":0},{"x":1567631880000,"y":0},{"x":1567631940000,"y":0},{"x":1567632000000,"y":0},{"x":1567632060000,"y":0},{"x":1567632120000,"y":0},{"x":1567632180000,"y":0},{"x":1567632240000,"y":0},{"x":1567632300000,"y":0},{"x":1567632360000,"y":0},{"x":1567632420000,"y":0},{"x":1567632480000,"y":0},{"x":1567632540000,"y":0},{"x":1567632600000,"y":0},{"x":1567632660000,"y":0},{"x":1567632720000,"y":0},{"x":1567632780000,"y":0},{"x":1567632840000,"y":0},{"x":1567632900000,"y":0},{"x":1567632960000,"y":0},{"x":1567633020000,"y":0},{"x":1567633080000,"y":0},{"x":1567633140000,"y":0},{"x":1567633200000,"y":0},{"x":1567633260000,"y":0},{"x":1567633320000,"y":0},{"x":1567633380000,"y":0},{"x":1567633440000,"y":0},{"x":1567633500000,"y":0},{"x":1567633560000,"y":0},{"x":1567633620000,"y":0},{"x":1567633680000,"y":0},{"x":1567633740000,"y":0},{"x":1567633800000,"y":0},{"x":1567633860000,"y":0},{"x":1567633920000,"y":0},{"x":1567633980000,"y":0},{"x":1567634040000,"y":0},{"x":1567634100000,"y":0},{"x":1567634160000,"y":0},{"x":1567634220000,"y":0},{"x":1567634280000,"y":0},{"x":1567634340000,"y":0},{"x":1567634400000,"y":0},{"x":1567634460000,"y":0},{"x":1567634520000,"y":0},{"x":1567634580000,"y":0},{"x":1567634640000,"y":0},{"x":1567634700000,"y":0},{"x":1567634760000,"y":0},{"x":1567634820000,"y":0},{"x":1567634880000,"y":0},{"x":1567634940000,"y":0},{"x":1567635000000,"y":0},{"x":1567635060000,"y":0},{"x":1567635120000,"y":0},{"x":1567635180000,"y":0},{"x":1567635240000,"y":0},{"x":1567635300000,"y":0},{"x":1567635360000,"y":0},{"x":1567635420000,"y":0},{"x":1567635480000,"y":0},{"x":1567635540000,"y":0},{"x":1567635600000,"y":0},{"x":1567635660000,"y":0},{"x":1567635720000,"y":0},{"x":1567635780000,"y":0},{"x":1567635840000,"y":0},{"x":1567635900000,"y":0},{"x":1567635960000,"y":0},{"x":1567636020000,"y":0},{"x":1567636080000,"y":0},{"x":1567636140000,"y":0},{"x":1567636200000,"y":0},{"x":1567636260000,"y":0},{"x":1567636320000,"y":0},{"x":1567636380000,"y":0},{"x":1567636440000,"y":0},{"x":1567636500000,"y":0},{"x":1567636560000,"y":0},{"x":1567636620000,"y":0},{"x":1567636680000,"y":0},{"x":1567636740000,"y":0},{"x":1567636800000,"y":0},{"x":1567636860000,"y":0},{"x":1567636920000,"y":0},{"x":1567636980000,"y":0},{"x":1567637040000,"y":0},{"x":1567637100000,"y":0},{"x":1567637160000,"y":0},{"x":1567637220000,"y":0},{"x":1567637280000,"y":0},{"x":1567637340000,"y":0},{"x":1567637400000,"y":0},{"x":1567637460000,"y":0},{"x":1567637520000,"y":0},{"x":1567637580000,"y":0},{"x":1567637640000,"y":0},{"x":1567637700000,"y":0},{"x":1567637760000,"y":0},{"x":1567637820000,"y":0},{"x":1567637880000,"y":0},{"x":1567637940000,"y":0},{"x":1567638000000,"y":0},{"x":1567638060000,"y":0},{"x":1567638120000,"y":0},{"x":1567638180000,"y":0},{"x":1567638240000,"y":0},{"x":1567638300000,"y":0},{"x":1567638360000,"y":0},{"x":1567638420000,"y":0},{"x":1567638480000,"y":0},{"x":1567638540000,"y":0},{"x":1567638600000,"y":0},{"x":1567638660000,"y":0},{"x":1567638720000,"y":0},{"x":1567638780000,"y":0},{"x":1567638840000,"y":0},{"x":1567638900000,"y":0},{"x":1567638960000,"y":0},{"x":1567639020000,"y":0},{"x":1567639080000,"y":0},{"x":1567639140000,"y":0},{"x":1567639200000,"y":0},{"x":1567639260000,"y":0},{"x":1567639320000,"y":0},{"x":1567639380000,"y":0},{"x":1567639440000,"y":0},{"x":1567639500000,"y":0},{"x":1567639560000,"y":0},{"x":1567639620000,"y":0},{"x":1567639680000,"y":0},{"x":1567639740000,"y":0},{"x":1567639800000,"y":0},{"x":1567639860000,"y":0},{"x":1567639920000,"y":0},{"x":1567639980000,"y":0},{"x":1567640040000,"y":0},{"x":1567640100000,"y":0},{"x":1567640160000,"y":0},{"x":1567640220000,"y":0},{"x":1567640280000,"y":0},{"x":1567640340000,"y":0},{"x":1567640400000,"y":0},{"x":1567640460000,"y":0},{"x":1567640520000,"y":0},{"x":1567640580000,"y":0},{"x":1567640640000,"y":0},{"x":1567640700000,"y":0},{"x":1567640760000,"y":0},{"x":1567640820000,"y":0},{"x":1567640880000,"y":0},{"x":1567640940000,"y":0},{"x":1567641000000,"y":0},{"x":1567641060000,"y":0.01},{"x":1567641120000,"y":0},{"x":1567641180000,"y":0},{"x":1567641240000,"y":0},{"x":1567641300000,"y":0},{"x":1567641360000,"y":0},{"x":1567641420000,"y":0},{"x":1567641480000,"y":0},{"x":1567641540000,"y":0},{"x":1567641600000,"y":0},{"x":1567641660000,"y":0},{"x":1567641720000,"y":0},{"x":1567641780000,"y":0},{"x":1567641840000,"y":0.01},{"x":1567641900000,"y":0},{"x":1567641960000,"y":0},{"x":1567642020000,"y":0},{"x":1567642080000,"y":0},{"x":1567642140000,"y":0},{"x":1567642200000,"y":0},{"x":1567642260000,"y":0},{"x":1567642320000,"y":0},{"x":1567642380000,"y":0},{"x":1567642440000,"y":0},{"x":1567642500000,"y":0},{"x":1567642560000,"y":0},{"x":1567642620000,"y":0},{"x":1567642680000,"y":0},{"x":1567642740000,"y":0},{"x":1567642800000,"y":0},{"x":1567642860000,"y":0},{"x":1567642920000,"y":0},{"x":1567642980000,"y":0},{"x":1567643040000,"y":0},{"x":1567643100000,"y":0},{"x":1567643160000,"y":0},{"x":1567643220000,"y":0},{"x":1567643280000,"y":0},{"x":1567643340000,"y":0},{"x":1567643400000,"y":0},{"x":1567643460000,"y":0},{"x":1567643520000,"y":0},{"x":1567643580000,"y":0},{"x":1567643640000,"y":0},{"x":1567643700000,"y":0},{"x":1567643760000,"y":0},{"x":1567643820000,"y":0},{"x":1567643880000,"y":0},{"x":1567643940000,"y":0},{"x":1567644000000,"y":0},{"x":1567644060000,"y":0},{"x":1567644120000,"y":0},{"x":1567644180000,"y":0},{"x":1567644240000,"y":0},{"x":1567644300000,"y":0},{"x":1567644360000,"y":0},{"x":1567644420000,"y":0},{"x":1567644480000,"y":0},{"x":1567644540000,"y":0},{"x":1567644600000,"y":0},{"x":1567644660000,"y":0},{"x":1567644720000,"y":0},{"x":1567644780000,"y":0},{"x":1567644840000,"y":0},{"x":1567644900000,"y":0},{"x":1567644960000,"y":0},{"x":1567645020000,"y":0},{"x":1567645080000,"y":0},{"x":1567645140000,"y":0},{"x":1567645200000,"y":0},{"x":1567645260000,"y":0},{"x":1567645320000,"y":0},{"x":1567645380000,"y":0},{"x":1567645440000,"y":0},{"x":1567645500000,"y":0},{"x":1567645560000,"y":0},{"x":1567645620000,"y":0},{"x":1567645680000,"y":0},{"x":1567645740000,"y":0},{"x":1567645800000,"y":0},{"x":1567645860000,"y":0},{"x":1567645920000,"y":0},{"x":1567645980000,"y":0.01},{"x":1567646040000,"y":0},{"x":1567646100000,"y":0},{"x":1567646160000,"y":0},{"x":1567646220000,"y":0},{"x":1567646280000,"y":0},{"x":1567646340000,"y":0},{"x":1567646400000,"y":0},{"x":1567646460000,"y":0},{"x":1567646520000,"y":0},{"x":1567646580000,"y":0},{"x":1567646640000,"y":0},{"x":1567646700000,"y":0},{"x":1567646760000,"y":0},{"x":1567646820000,"y":0},{"x":1567646880000,"y":0},{"x":1567646940000,"y":0},{"x":1567647000000,"y":0},{"x":1567647060000,"y":0},{"x":1567647120000,"y":0},{"x":1567647180000,"y":0},{"x":1567647240000,"y":0},{"x":1567647300000,"y":0},{"x":1567647360000,"y":0},{"x":1567647420000,"y":0},{"x":1567647480000,"y":0},{"x":1567647540000,"y":0},{"x":1567647600000,"y":0},{"x":1567647660000,"y":0},{"x":1567647720000,"y":0},{"x":1567647780000,"y":0},{"x":1567647840000,"y":0},{"x":1567647900000,"y":0},{"x":1567647960000,"y":0},{"x":1567648020000,"y":0},{"x":1567648080000,"y":0},{"x":1567648140000,"y":0},{"x":1567648200000,"y":0},{"x":1567648260000,"y":0},{"x":1567648320000,"y":0},{"x":1567648380000,"y":0},{"x":1567648440000,"y":0},{"x":1567648500000,"y":0},{"x":1567648560000,"y":0},{"x":1567648620000,"y":0},{"x":1567648680000,"y":0},{"x":1567648740000,"y":0},{"x":1567648800000,"y":0},{"x":1567648860000,"y":0},{"x":1567648920000,"y":0},{"x":1567648980000,"y":0},{"x":1567649040000,"y":0},{"x":1567649100000,"y":0},{"x":1567649160000,"y":0},{"x":1567649220000,"y":0},{"x":1567649280000,"y":0},{"x":1567649340000,"y":0},{"x":1567649400000,"y":0},{"x":1567649460000,"y":0},{"x":1567649520000,"y":0},{"x":1567649580000,"y":0},{"x":1567649640000,"y":0},{"x":1567649700000,"y":0},{"x":1567649760000,"y":0},{"x":1567649820000,"y":0},{"x":1567649880000,"y":0},{"x":1567649940000,"y":0},{"x":1567650000000,"y":0},{"x":1567650060000,"y":0},{"x":1567650120000,"y":0},{"x":1567650180000,"y":0},{"x":1567650240000,"y":0},{"x":1567650300000,"y":0},{"x":1567650360000,"y":0},{"x":1567650420000,"y":0},{"x":1567650480000,"y":0},{"x":1567650540000,"y":0},{"x":1567650600000,"y":0},{"x":1567650660000,"y":0},{"x":1567650720000,"y":0},{"x":1567650780000,"y":0},{"x":1567650840000,"y":0},{"x":1567650900000,"y":0},{"x":1567650960000,"y":0},{"x":1567651020000,"y":0},{"x":1567651080000,"y":0},{"x":1567651140000,"y":0},{"x":1567651200000,"y":0},{"x":1567651260000,"y":0},{"x":1567651320000,"y":0},{"x":1567651380000,"y":0},{"x":1567651440000,"y":0},{"x":1567651500000,"y":0},{"x":1567651560000,"y":0},{"x":1567651620000,"y":0},{"x":1567651680000,"y":0},{"x":1567651740000,"y":0},{"x":1567651800000,"y":0},{"x":1567651860000,"y":0},{"x":1567651920000,"y":0},{"x":1567651980000,"y":0},{"x":1567652040000,"y":0},{"x":1567652100000,"y":0},{"x":1567652160000,"y":0.84},{"x":1567652220000,"y":0},{"x":1567652280000,"y":0},{"x":1567652340000,"y":0},{"x":1567652400000,"y":0},{"x":1567652460000,"y":0.64},{"x":1567652520000,"y":0},{"x":1567652580000,"y":0},{"x":1567652640000,"y":0},{"x":1567652700000,"y":0},{"x":1567652760000,"y":0},{"x":1567652820000,"y":0},{"x":1567652880000,"y":0},{"x":1567652940000,"y":0},{"x":1567653000000,"y":0},{"x":1567653060000,"y":0},{"x":1567653120000,"y":0},{"x":1567653180000,"y":0},{"x":1567653240000,"y":0.19},{"x":1567653300000,"y":0},{"x":1567653360000,"y":0},{"x":1567653420000,"y":0},{"x":1567653480000,"y":0},{"x":1567653540000,"y":0},{"x":1567653600000,"y":1.08},{"x":1567653660000,"y":0.01},{"x":1567653720000,"y":0},{"x":1567653780000,"y":0},{"x":1567653840000,"y":0},{"x":1567653900000,"y":0},{"x":1567653960000,"y":0},{"x":1567654020000,"y":0},{"x":1567654080000,"y":0},{"x":1567654140000,"y":0},{"x":1567654200000,"y":0},{"x":1567654260000,"y":0},{"x":1567654320000,"y":0},{"x":1567654380000,"y":0},{"x":1567654440000,"y":0},{"x":1567654500000,"y":0},{"x":1567654560000,"y":0},{"x":1567654620000,"y":0},{"x":1567654680000,"y":0},{"x":1567654740000,"y":0},{"x":1567654800000,"y":0},{"x":1567654860000,"y":0},{"x":1567654920000,"y":0},{"x":1567654980000,"y":0},{"x":1567655040000,"y":0},{"x":1567655100000,"y":0},{"x":1567655160000,"y":0},{"x":1567655220000,"y":0},{"x":1567655280000,"y":0},{"x":1567655340000,"y":0},{"x":1567655400000,"y":0},{"x":1567655460000,"y":0},{"x":1567655520000,"y":0},{"x":1567655580000,"y":0},{"x":1567655640000,"y":0},{"x":1567655700000,"y":0},{"x":1567655760000,"y":0},{"x":1567655820000,"y":0},{"x":1567655880000,"y":0},{"x":1567655940000,"y":0},{"x":1567656000000,"y":0},{"x":1567656060000,"y":0},{"x":1567656120000,"y":0},{"x":1567656180000,"y":0},{"x":1567656240000,"y":0},{"x":1567656300000,"y":0},{"x":1567656360000,"y":0},{"x":1567656420000,"y":0},{"x":1567656480000,"y":0},{"x":1567656540000,"y":0.01},{"x":1567656600000,"y":0},{"x":1567656660000,"y":0},{"x":1567656720000,"y":0},{"x":1567656780000,"y":0},{"x":1567656840000,"y":0},{"x":1567656900000,"y":0},{"x":1567656960000,"y":0},{"x":1567657020000,"y":0},{"x":1567657080000,"y":0},{"x":1567657140000,"y":0},{"x":1567657200000,"y":0},{"x":1567657260000,"y":0},{"x":1567657320000,"y":0},{"x":1567657380000,"y":0},{"x":1567657440000,"y":0},{"x":1567657500000,"y":0},{"x":1567657560000,"y":0},{"x":1567657620000,"y":0},{"x":1567657680000,"y":0},{"x":1567657740000,"y":0},{"x":1567657800000,"y":0},{"x":1567657860000,"y":1.8},{"x":1567657920000,"y":0},{"x":1567657980000,"y":0},{"x":1567658040000,"y":0},{"x":1567658100000,"y":0},{"x":1567658160000,"y":0},{"x":1567658220000,"y":0},{"x":1567658280000,"y":0},{"x":1567658340000,"y":0},{"x":1567658400000,"y":0},{"x":1567658460000,"y":0},{"x":1567658520000,"y":0},{"x":1567658580000,"y":0},{"x":1567658640000,"y":0},{"x":1567658700000,"y":0},{"x":1567658760000,"y":0},{"x":1567658820000,"y":0.83},{"x":1567658880000,"y":0.01},{"x":1567658940000,"y":0},{"x":1567659000000,"y":0},{"x":1567659060000,"y":0},{"x":1567659120000,"y":1.01},{"x":1567659180000,"y":0.01},{"x":1567659240000,"y":0},{"x":1567659300000,"y":0},{"x":1567659360000,"y":0},{"x":1567659420000,"y":0},{"x":1567659480000,"y":0},{"x":1567659540000,"y":0},{"x":1567659600000,"y":0},{"x":1567659660000,"y":0},{"x":1567659720000,"y":0.01},{"x":1567659780000,"y":0},{"x":1567659840000,"y":0},{"x":1567659900000,"y":0},{"x":1567659960000,"y":0},{"x":1567660020000,"y":0},{"x":1567660080000,"y":0},{"x":1567660140000,"y":0.21},{"x":1567660200000,"y":0},{"x":1567660260000,"y":0},{"x":1567660320000,"y":0},{"x":1567660380000,"y":0.01},{"x":1567660440000,"y":0},{"x":1567660500000,"y":0.01},{"x":1567660560000,"y":0},{"x":1567660620000,"y":0.02},{"x":1567660680000,"y":0},{"x":1567660740000,"y":0},{"x":1567660800000,"y":0},{"x":1567660860000,"y":0},{"x":1567660920000,"y":0},{"x":1567660980000,"y":0},{"x":1567661040000,"y":0},{"x":1567661100000,"y":0},{"x":1567661160000,"y":0},{"x":1567661220000,"y":0},{"x":1567661280000,"y":0},{"x":1567661340000,"y":0},{"x":1567661400000,"y":0},{"x":1567661460000,"y":0.02},{"x":1567661520000,"y":0},{"x":1567661580000,"y":0},{"x":1567661640000,"y":0},{"x":1567661700000,"y":0},{"x":1567661760000,"y":0},{"x":1567661820000,"y":0},{"x":1567661880000,"y":0},{"x":1567661940000,"y":0.8},{"x":1567662000000,"y":0},{"x":1567662060000,"y":0},{"x":1567662120000,"y":0},{"x":1567662180000,"y":0},{"x":1567662240000,"y":0},{"x":1567662300000,"y":0},{"x":1567662360000,"y":0.9},{"x":1567662420000,"y":0.01},{"x":1567662480000,"y":0},{"x":1567662540000,"y":0},{"x":1567662600000,"y":0},{"x":1567662660000,"y":0},{"x":1567662720000,"y":0},{"x":1567662780000,"y":0},{"x":1567662840000,"y":0},{"x":1567662900000,"y":0},{"x":1567662960000,"y":0.01},{"x":1567663020000,"y":0},{"x":1567663080000,"y":0},{"x":1567663140000,"y":0},{"x":1567663200000,"y":0},{"x":1567663260000,"y":0},{"x":1567663320000,"y":0},{"x":1567663380000,"y":0},{"x":1567663440000,"y":0},{"x":1567663500000,"y":0},{"x":1567663560000,"y":0},{"x":1567663620000,"y":0},{"x":1567663680000,"y":0},{"x":1567663740000,"y":0},{"x":1567663800000,"y":0},{"x":1567663860000,"y":0},{"x":1567663920000,"y":0},{"x":1567663980000,"y":0},{"x":1567664040000,"y":0},{"x":1567664100000,"y":0},{"x":1567664160000,"y":0},{"x":1567664220000,"y":0},{"x":1567664280000,"y":0},{"x":1567664340000,"y":0},{"x":1567664400000,"y":0},{"x":1567664460000,"y":0},{"x":1567664520000,"y":0},{"x":1567664580000,"y":0},{"x":1567664640000,"y":0},{"x":1567664700000,"y":0},{"x":1567664760000,"y":0},{"x":1567664820000,"y":0},{"x":1567664880000,"y":0},{"x":1567664940000,"y":0},{"x":1567665000000,"y":0},{"x":1567665060000,"y":0},{"x":1567665120000,"y":0},{"x":1567665180000,"y":0},{"x":1567665240000,"y":0},{"x":1567665300000,"y":0},{"x":1567665360000,"y":0},{"x":1567665420000,"y":0},{"x":1567665480000,"y":0},{"x":1567665540000,"y":0},{"x":1567665600000,"y":0},{"x":1567665660000,"y":0},{"x":1567665720000,"y":0},{"x":1567665780000,"y":0},{"x":1567665840000,"y":0},{"x":1567665900000,"y":0},{"x":1567665960000,"y":0},{"x":1567666020000,"y":0},{"x":1567666080000,"y":0},{"x":1567666140000,"y":0},{"x":1567666200000,"y":0},{"x":1567666260000,"y":0},{"x":1567666320000,"y":0},{"x":1567666380000,"y":0},{"x":1567666440000,"y":0},{"x":1567666500000,"y":0},{"x":1567666560000,"y":0},{"x":1567666620000,"y":0},{"x":1567666680000,"y":0},{"x":1567666740000,"y":0},{"x":1567666800000,"y":0},{"x":1567666860000,"y":0},{"x":1567666920000,"y":0},{"x":1567666980000,"y":0},{"x":1567667040000,"y":0},{"x":1567667100000,"y":0},{"x":1567667160000,"y":0},{"x":1567667220000,"y":0},{"x":1567667280000,"y":0},{"x":1567667340000,"y":0},{"x":1567667400000,"y":0},{"x":1567667460000,"y":0.01},{"x":1567667520000,"y":0.01},{"x":1567667580000,"y":0},{"x":1567667640000,"y":0},{"x":1567667700000,"y":0},{"x":1567667760000,"y":0},{"x":1567667820000,"y":0},{"x":1567667880000,"y":0},{"x":1567667940000,"y":0},{"x":1567668000000,"y":0},{"x":1567668060000,"y":0},{"x":1567668120000,"y":0},{"x":1567668180000,"y":0},{"x":1567668240000,"y":0},{"x":1567668300000,"y":0},{"x":1567668360000,"y":0},{"x":1567668420000,"y":0},{"x":1567668480000,"y":0},{"x":1567668540000,"y":0},{"x":1567668600000,"y":0},{"x":1567668660000,"y":0},{"x":1567668720000,"y":0},{"x":1567668780000,"y":0},{"x":1567668840000,"y":0},{"x":1567668900000,"y":0},{"x":1567668960000,"y":0},{"x":1567669020000,"y":0},{"x":1567669080000,"y":0},{"x":1567669140000,"y":0},{"x":1567669200000,"y":0},{"x":1567669260000,"y":0},{"x":1567669320000,"y":0},{"x":1567669380000,"y":0},{"x":1567669440000,"y":0},{"x":1567669500000,"y":0},{"x":1567669560000,"y":0},{"x":1567669620000,"y":0},{"x":1567669680000,"y":0},{"x":1567669740000,"y":0},{"x":1567669800000,"y":0},{"x":1567669860000,"y":0},{"x":1567669920000,"y":0},{"x":1567669980000,"y":0},{"x":1567670040000,"y":0},{"x":1567670100000,"y":0},{"x":1567670160000,"y":0},{"x":1567670220000,"y":0},{"x":1567670280000,"y":0},{"x":1567670340000,"y":0},{"x":1567670400000,"y":0},{"x":1567670460000,"y":0},{"x":1567670520000,"y":0.01},{"x":1567670580000,"y":0.01},{"x":1567670640000,"y":0},{"x":1567670700000,"y":0},{"x":1567670760000,"y":0},{"x":1567670820000,"y":0.01},{"x":1567670880000,"y":0},{"x":1567670940000,"y":0},{"x":1567671000000,"y":0},{"x":1567671060000,"y":0},{"x":1567671120000,"y":0},{"x":1567671180000,"y":0},{"x":1567671240000,"y":0},{"x":1567671300000,"y":0},{"x":1567671360000,"y":0},{"x":1567671420000,"y":0},{"x":1567671480000,"y":0},{"x":1567671540000,"y":0},{"x":1567671600000,"y":0},{"x":1567671660000,"y":0},{"x":1567671720000,"y":0},{"x":1567671780000,"y":0},{"x":1567671840000,"y":0},{"x":1567671900000,"y":0},{"x":1567671960000,"y":0},{"x":1567672020000,"y":0},{"x":1567672080000,"y":0},{"x":1567672140000,"y":0},{"x":1567672200000,"y":0},{"x":1567672260000,"y":0},{"x":1567672320000,"y":0},{"x":1567672380000,"y":0},{"x":1567672440000,"y":0},{"x":1567672500000,"y":0},{"x":1567672560000,"y":0},{"x":1567672620000,"y":0},{"x":1567672680000,"y":0},{"x":1567672740000,"y":0},{"x":1567672800000,"y":0},{"x":1567672860000,"y":0.03},{"x":1567672920000,"y":0},{"x":1567672980000,"y":0},{"x":1567673040000,"y":0.01},{"x":1567673100000,"y":0.02},{"x":1567673160000,"y":0.03},{"x":1567673220000,"y":0.01},{"x":1567673280000,"y":0},{"x":1567673340000,"y":0},{"x":1567673400000,"y":0},{"x":1567673460000,"y":0},{"x":1567673520000,"y":0},{"x":1567673580000,"y":0},{"x":1567673640000,"y":0},{"x":1567673700000,"y":0},{"x":1567673760000,"y":0},{"x":1567673820000,"y":0},{"x":1567673880000,"y":0},{"x":1567673940000,"y":0},{"x":1567674000000,"y":0},{"x":1567674060000,"y":0},{"x":1567674120000,"y":0},{"x":1567674180000,"y":0},{"x":1567674240000,"y":0},{"x":1567674300000,"y":0},{"x":1567674360000,"y":0},{"x":1567674420000,"y":0},{"x":1567674480000,"y":0},{"x":1567674540000,"y":0},{"x":1567674600000,"y":0},{"x":1567674660000,"y":0},{"x":1567674720000,"y":0},{"x":1567674780000,"y":0},{"x":1567674840000,"y":0},{"x":1567674900000,"y":0},{"x":1567674960000,"y":0},{"x":1567675020000,"y":0},{"x":1567675080000,"y":0},{"x":1567675140000,"y":0},{"x":1567675200000,"y":0},{"x":1567675260000,"y":0},{"x":1567675320000,"y":0},{"x":1567675380000,"y":0},{"x":1567675440000,"y":0},{"x":1567675500000,"y":0},{"x":1567675560000,"y":0},{"x":1567675620000,"y":0},{"x":1567675680000,"y":0},{"x":1567675740000,"y":0},{"x":1567675800000,"y":0},{"x":1567675860000,"y":0},{"x":1567675920000,"y":0},{"x":1567675980000,"y":0},{"x":1567676040000,"y":0},{"x":1567676100000,"y":0},{"x":1567676160000,"y":0},{"x":1567676220000,"y":0},{"x":1567676280000,"y":0},{"x":1567676340000,"y":0},{"x":1567676400000,"y":0},{"x":1567676460000,"y":0},{"x":1567676520000,"y":0},{"x":1567676580000,"y":0},{"x":1567676640000,"y":0},{"x":1567676700000,"y":0},{"x":1567676760000,"y":0},{"x":1567676820000,"y":0},{"x":1567676880000,"y":0},{"x":1567676940000,"y":0},{"x":1567677000000,"y":0},{"x":1567677060000,"y":0.09},{"x":1567677120000,"y":0},{"x":1567677180000,"y":0},{"x":1567677240000,"y":0},{"x":1567677300000,"y":0},{"x":1567677360000,"y":0},{"x":1567677420000,"y":0},{"x":1567677480000,"y":0},{"x":1567677540000,"y":0},{"x":1567677600000,"y":0},{"x":1567677660000,"y":0},{"x":1567677720000,"y":0},{"x":1567677780000,"y":0},{"x":1567677840000,"y":0},{"x":1567677900000,"y":0},{"x":1567677960000,"y":0},{"x":1567678020000,"y":0},{"x":1567678080000,"y":0},{"x":1567678140000,"y":0},{"x":1567678200000,"y":0},{"x":1567678260000,"y":0},{"x":1567678320000,"y":0},{"x":1567678380000,"y":0},{"x":1567678440000,"y":0},{"x":1567678500000,"y":0},{"x":1567678560000,"y":0},{"x":1567678620000,"y":0},{"x":1567678680000,"y":0},{"x":1567678740000,"y":0},{"x":1567678800000,"y":0},{"x":1567678860000,"y":0},{"x":1567678920000,"y":0},{"x":1567678980000,"y":0},{"x":1567679040000,"y":0},{"x":1567679100000,"y":0},{"x":1567679160000,"y":0},{"x":1567679220000,"y":0},{"x":1567679280000,"y":0},{"x":1567679340000,"y":0},{"x":1567679400000,"y":0},{"x":1567679460000,"y":0},{"x":1567679520000,"y":0},{"x":1567679580000,"y":0},{"x":1567679640000,"y":0},{"x":1567679700000,"y":0},{"x":1567679760000,"y":0},{"x":1567679820000,"y":0},{"x":1567679880000,"y":0},{"x":1567679940000,"y":0},{"x":1567680000000,"y":0},{"x":1567680060000,"y":0},{"x":1567680120000,"y":0},{"x":1567680180000,"y":0},{"x":1567680240000,"y":0},{"x":1567680300000,"y":0},{"x":1567680360000,"y":0},{"x":1567680420000,"y":0},{"x":1567680480000,"y":0},{"x":1567680540000,"y":0},{"x":1567680600000,"y":0},{"x":1567680660000,"y":0},{"x":1567680720000,"y":0},{"x":1567680780000,"y":0},{"x":1567680840000,"y":0},{"x":1567680900000,"y":0},{"x":1567680960000,"y":0},{"x":1567681020000,"y":0},{"x":1567681080000,"y":0},{"x":1567681140000,"y":0},{"x":1567681200000,"y":0},{"x":1567681260000,"y":0},{"x":1567681320000,"y":0},{"x":1567681380000,"y":0},{"x":1567681440000,"y":0},{"x":1567681500000,"y":0},{"x":1567681560000,"y":0},{"x":1567681620000,"y":0},{"x":1567681680000,"y":0},{"x":1567681740000,"y":0},{"x":1567681800000,"y":0},{"x":1567681860000,"y":0},{"x":1567681920000,"y":0},{"x":1567681980000,"y":0},{"x":1567682040000,"y":0},{"x":1567682100000,"y":0},{"x":1567682160000,"y":0},{"x":1567682220000,"y":0},{"x":1567682280000,"y":0},{"x":1567682340000,"y":0},{"x":1567682400000,"y":0},{"x":1567682460000,"y":0},{"x":1567682520000,"y":0},{"x":1567682580000,"y":0},{"x":1567682640000,"y":0},{"x":1567682700000,"y":0},{"x":1567682760000,"y":0},{"x":1567682820000,"y":0},{"x":1567682880000,"y":0},{"x":1567682940000,"y":0},{"x":1567683000000,"y":0},{"x":1567683060000,"y":0},{"x":1567683120000,"y":0},{"x":1567683180000,"y":0},{"x":1567683240000,"y":0},{"x":1567683300000,"y":0},{"x":1567683360000,"y":0},{"x":1567683420000,"y":0},{"x":1567683480000,"y":0},{"x":1567683540000,"y":0},{"x":1567683600000,"y":0},{"x":1567683660000,"y":0},{"x":1567683720000,"y":0},{"x":1567683780000,"y":0},{"x":1567683840000,"y":0},{"x":1567683900000,"y":0},{"x":1567683960000,"y":0},{"x":1567684020000,"y":0.02},{"x":1567684080000,"y":0},{"x":1567684140000,"y":0},{"x":1567684200000,"y":0},{"x":1567684260000,"y":0},{"x":1567684320000,"y":0},{"x":1567684380000,"y":0},{"x":1567684440000,"y":0},{"x":1567684500000,"y":0},{"x":1567684560000,"y":0},{"x":1567684620000,"y":0},{"x":1567684680000,"y":0},{"x":1567684740000,"y":0},{"x":1567684800000,"y":0},{"x":1567684860000,"y":0.01},{"x":1567684920000,"y":0},{"x":1567684980000,"y":0},{"x":1567685040000,"y":0},{"x":1567685100000,"y":0},{"x":1567685160000,"y":0},{"x":1567685220000,"y":0},{"x":1567685280000,"y":0},{"x":1567685340000,"y":0},{"x":1567685400000,"y":0},{"x":1567685460000,"y":0},{"x":1567685520000,"y":0},{"x":1567685580000,"y":0},{"x":1567685640000,"y":0},{"x":1567685700000,"y":0},{"x":1567685760000,"y":0},{"x":1567685820000,"y":0},{"x":1567685880000,"y":0},{"x":1567685940000,"y":0},{"x":1567686000000,"y":0},{"x":1567686060000,"y":0},{"x":1567686120000,"y":0},{"x":1567686180000,"y":0},{"x":1567686240000,"y":0},{"x":1567686300000,"y":0},{"x":1567686360000,"y":0},{"x":1567686420000,"y":0},{"x":1567686480000,"y":0},{"x":1567686540000,"y":0},{"x":1567686600000,"y":0},{"x":1567686660000,"y":0},{"x":1567686720000,"y":0},{"x":1567686780000,"y":0},{"x":1567686840000,"y":0},{"x":1567686900000,"y":0},{"x":1567686960000,"y":0},{"x":1567687020000,"y":0},{"x":1567687080000,"y":0},{"x":1567687140000,"y":0},{"x":1567687200000,"y":0},{"x":1567687260000,"y":0},{"x":1567687320000,"y":0},{"x":1567687380000,"y":0},{"x":1567687440000,"y":0},{"x":1567687500000,"y":0},{"x":1567687560000,"y":0},{"x":1567687620000,"y":0},{"x":1567687680000,"y":0},{"x":1567687740000,"y":0},{"x":1567687800000,"y":0},{"x":1567687860000,"y":0},{"x":1567687920000,"y":0},{"x":1567687980000,"y":0},{"x":1567688040000,"y":0},{"x":1567688100000,"y":0},{"x":1567688160000,"y":0},{"x":1567688220000,"y":0},{"x":1567688280000,"y":0},{"x":1567688340000,"y":0},{"x":1567688400000,"y":0},{"x":1567688460000,"y":0},{"x":1567688520000,"y":0},{"x":1567688580000,"y":0},{"x":1567688640000,"y":0},{"x":1567688700000,"y":0},{"x":1567688760000,"y":0},{"x":1567688820000,"y":0},{"x":1567688880000,"y":0},{"x":1567688940000,"y":0},{"x":1567689000000,"y":0},{"x":1567689060000,"y":0},{"x":1567689120000,"y":0},{"x":1567689180000,"y":0},{"x":1567689240000,"y":0},{"x":1567689300000,"y":0},{"x":1567689360000,"y":0},{"x":1567689420000,"y":0},{"x":1567689480000,"y":0},{"x":1567689540000,"y":0},{"x":1567689600000,"y":0},{"x":1567689660000,"y":0},{"x":1567689720000,"y":0},{"x":1567689780000,"y":0},{"x":1567689840000,"y":0},{"x":1567689900000,"y":0},{"x":1567689960000,"y":0},{"x":1567690020000,"y":0},{"x":1567690080000,"y":0},{"x":1567690140000,"y":0},{"x":1567690200000,"y":0},{"x":1567690260000,"y":0},{"x":1567690320000,"y":0},{"x":1567690380000,"y":0},{"x":1567690440000,"y":0},{"x":1567690500000,"y":0},{"x":1567690560000,"y":0},{"x":1567690620000,"y":0},{"x":1567690680000,"y":0},{"x":1567690740000,"y":0},{"x":1567690800000,"y":0},{"x":1567690860000,"y":0},{"x":1567690920000,"y":0},{"x":1567690980000,"y":0},{"x":1567691040000,"y":0},{"x":1567691100000,"y":0},{"x":1567691160000,"y":0},{"x":1567691220000,"y":0},{"x":1567691280000,"y":0},{"x":1567691340000,"y":0},{"x":1567691400000,"y":0},{"x":1567691460000,"y":0},{"x":1567691520000,"y":0},{"x":1567691580000,"y":0},{"x":1567691640000,"y":0},{"x":1567691700000,"y":0},{"x":1567691760000,"y":0},{"x":1567691820000,"y":0},{"x":1567691880000,"y":0},{"x":1567691940000,"y":0},{"x":1567692000000,"y":0},{"x":1567692060000,"y":0},{"x":1567692120000,"y":0},{"x":1567692180000,"y":0},{"x":1567692240000,"y":0},{"x":1567692300000,"y":0},{"x":1567692360000,"y":0},{"x":1567692420000,"y":0},{"x":1567692480000,"y":0},{"x":1567692540000,"y":0},{"x":1567692600000,"y":0},{"x":1567692660000,"y":0},{"x":1567692720000,"y":0},{"x":1567692780000,"y":0},{"x":1567692840000,"y":0},{"x":1567692900000,"y":0},{"x":1567692960000,"y":0},{"x":1567693020000,"y":0},{"x":1567693080000,"y":0},{"x":1567693140000,"y":0},{"x":1567693200000,"y":0},{"x":1567693260000,"y":0},{"x":1567693320000,"y":0},{"x":1567693380000,"y":0},{"x":1567693440000,"y":0},{"x":1567693500000,"y":0},{"x":1567693560000,"y":0},{"x":1567693620000,"y":0},{"x":1567693680000,"y":0},{"x":1567693740000,"y":0},{"x":1567693800000,"y":0},{"x":1567693860000,"y":0},{"x":1567693920000,"y":0},{"x":1567693980000,"y":0},{"x":1567694040000,"y":0},{"x":1567694100000,"y":0},{"x":1567694160000,"y":0},{"x":1567694220000,"y":0},{"x":1567694280000,"y":0},{"x":1567694340000,"y":0},{"x":1567694400000,"y":0},{"x":1567694460000,"y":0},{"x":1567694520000,"y":0},{"x":1567694580000,"y":0},{"x":1567694640000,"y":0},{"x":1567694700000,"y":0.84},{"x":1567694760000,"y":0},{"x":1567694820000,"y":0},{"x":1567694880000,"y":0},{"x":1567694940000,"y":0.84},{"x":1567695000000,"y":0},{"x":1567695060000,"y":0},{"x":1567695120000,"y":0},{"x":1567695180000,"y":0},{"x":1567695240000,"y":0.71},{"x":1567695300000,"y":0},{"x":1567695360000,"y":0},{"x":1567695420000,"y":0},{"x":1567695480000,"y":0},{"x":1567695540000,"y":0},{"x":1567695600000,"y":0.44},{"x":1567695660000,"y":1.36},{"x":1567695720000,"y":0},{"x":1567695780000,"y":0},{"x":1567695840000,"y":0},{"x":1567695900000,"y":0},{"x":1567695960000,"y":0},{"x":1567696020000,"y":0},{"x":1567696080000,"y":0},{"x":1567696140000,"y":0},{"x":1567696200000,"y":0},{"x":1567696260000,"y":0},{"x":1567696320000,"y":0.01},{"x":1567696380000,"y":1.46},{"x":1567696440000,"y":0.01},{"x":1567696500000,"y":0},{"x":1567696560000,"y":0},{"x":1567696620000,"y":0},{"x":1567696680000,"y":0},{"x":1567696740000,"y":0},{"x":1567696800000,"y":0},{"x":1567696860000,"y":0},{"x":1567696920000,"y":0},{"x":1567696980000,"y":0},{"x":1567697040000,"y":0},{"x":1567697100000,"y":0},{"x":1567697160000,"y":0},{"x":1567697220000,"y":0},{"x":1567697280000,"y":0},{"x":1567697340000,"y":0},{"x":1567697400000,"y":0},{"x":1567697460000,"y":0},{"x":1567697520000,"y":0},{"x":1567697580000,"y":0},{"x":1567697640000,"y":0},{"x":1567697700000,"y":0},{"x":1567697760000,"y":0},{"x":1567697820000,"y":0},{"x":1567697880000,"y":0},{"x":1567697940000,"y":0},{"x":1567698000000,"y":0},{"x":1567698060000,"y":0},{"x":1567698120000,"y":0},{"x":1567698180000,"y":0},{"x":1567698240000,"y":0},{"x":1567698300000,"y":0},{"x":1567698360000,"y":0},{"x":1567698420000,"y":0},{"x":1567698480000,"y":0},{"x":1567698540000,"y":0},{"x":1567698600000,"y":0},{"x":1567698660000,"y":0},{"x":1567698720000,"y":0},{"x":1567698780000,"y":0},{"x":1567698840000,"y":0},{"x":1567698900000,"y":0},{"x":1567698960000,"y":0},{"x":1567699020000,"y":0.04},{"x":1567699080000,"y":0},{"x":1567699140000,"y":0},{"x":1567699200000,"y":0.01},{"x":1567699260000,"y":0},{"x":1567699320000,"y":0},{"x":1567699380000,"y":0},{"x":1567699440000,"y":0},{"x":1567699500000,"y":0},{"x":1567699560000,"y":0},{"x":1567699620000,"y":0},{"x":1567699680000,"y":0},{"x":1567699740000,"y":0},{"x":1567699800000,"y":0},{"x":1567699860000,"y":0},{"x":1567699920000,"y":0},{"x":1567699980000,"y":0},{"x":1567700040000,"y":0},{"x":1567700100000,"y":0},{"x":1567700160000,"y":0},{"x":1567700220000,"y":0},{"x":1567700280000,"y":0},{"x":1567700340000,"y":0},{"x":1567700400000,"y":0},{"x":1567700460000,"y":0},{"x":1567700520000,"y":0},{"x":1567700580000,"y":0},{"x":1567700640000,"y":0.84},{"x":1567700700000,"y":1.47},{"x":1567700760000,"y":0},{"x":1567700820000,"y":0},{"x":1567700880000,"y":0},{"x":1567700940000,"y":0},{"x":1567701000000,"y":0},{"x":1567701060000,"y":0},{"x":1567701120000,"y":0},{"x":1567701180000,"y":0},{"x":1567701240000,"y":0},{"x":1567701300000,"y":0},{"x":1567701360000,"y":0},{"x":1567701420000,"y":0},{"x":1567701480000,"y":0},{"x":1567701540000,"y":0},{"x":1567701600000,"y":0},{"x":1567701660000,"y":3.11},{"x":1567701720000,"y":0},{"x":1567701780000,"y":0},{"x":1567701840000,"y":0},{"x":1567701900000,"y":0},{"x":1567701960000,"y":0},{"x":1567702020000,"y":0},{"x":1567702080000,"y":0},{"x":1567702140000,"y":0},{"x":1567702200000,"y":0},{"x":1567702260000,"y":0},{"x":1567702320000,"y":0},{"x":1567702380000,"y":0},{"x":1567702440000,"y":2.32},{"x":1567702500000,"y":0.99},{"x":1567702560000,"y":1.71},{"x":1567702620000,"y":0.01},{"x":1567702680000,"y":1.8},{"x":1567702740000,"y":0.01},{"x":1567702800000,"y":0},{"x":1567702860000,"y":0},{"x":1567702920000,"y":0.64},{"x":1567702980000,"y":0.03},{"x":1567703040000,"y":0},{"x":1567703100000,"y":0.06},{"x":1567703160000,"y":0},{"x":1567703220000,"y":0},{"x":1567703280000,"y":0},{"x":1567703340000,"y":0},{"x":1567703400000,"y":0},{"x":1567703460000,"y":0},{"x":1567703520000,"y":0.01},{"x":1567703580000,"y":0},{"x":1567703640000,"y":0},{"x":1567703700000,"y":0},{"x":1567703760000,"y":0},{"x":1567703820000,"y":0},{"x":1567703880000,"y":0},{"x":1567703940000,"y":1.12},{"x":1567704000000,"y":71.97},{"x":1567704060000,"y":29.07},{"x":1567704120000,"y":62.7},{"x":1567704180000,"y":0.01},{"x":1567704240000,"y":2.39},{"x":1567704300000,"y":0.02},{"x":1567704360000,"y":0.08},{"x":1567704420000,"y":0.05},{"x":1567704480000,"y":0.04},{"x":1567704540000,"y":0.04},{"x":1567704600000,"y":0.05},{"x":1567704660000,"y":0.03},{"x":1567704720000,"y":0.12},{"x":1567704780000,"y":0.04},{"x":1567704840000,"y":0.3},{"x":1567704900000,"y":0.1},{"x":1567704960000,"y":0.03},{"x":1567705020000,"y":0},{"x":1567705080000,"y":0.35},{"x":1567705140000,"y":0.11},{"x":1567705200000,"y":1.53},{"x":1567705260000,"y":0.05},{"x":1567705320000,"y":2.12},{"x":1567705380000,"y":0.04},{"x":1567705440000,"y":0},{"x":1567705500000,"y":0.01},{"x":1567705560000,"y":0.86},{"x":1567705620000,"y":0},{"x":1567705680000,"y":0},{"x":1567705740000,"y":0.9},{"x":1567705800000,"y":0},{"x":1567705860000,"y":0.79},{"x":1567705920000,"y":0.04},{"x":1567705980000,"y":0.03},{"x":1567706040000,"y":1.64},{"x":1567706100000,"y":0.9},{"x":1567706160000,"y":0},{"x":1567706220000,"y":0},{"x":1567706280000,"y":0},{"x":1567706340000,"y":0},{"x":1567706400000,"y":0},{"x":1567706460000,"y":0},{"x":1567706520000,"y":0.03},{"x":1567706580000,"y":0},{"x":1567706640000,"y":0},{"x":1567706700000,"y":0},{"x":1567706760000,"y":0.02},{"x":1567706820000,"y":0},{"x":1567706880000,"y":0},{"x":1567706940000,"y":0},{"x":1567707000000,"y":0},{"x":1567707060000,"y":0},{"x":1567707120000,"y":0},{"x":1567707180000,"y":0},{"x":1567707240000,"y":0},{"x":1567707300000,"y":0},{"x":1567707360000,"y":0},{"x":1567707420000,"y":0},{"x":1567707480000,"y":0},{"x":1567707540000,"y":0},{"x":1567707600000,"y":0},{"x":1567707660000,"y":0},{"x":1567707720000,"y":0},{"x":1567707780000,"y":0},{"x":1567707840000,"y":0},{"x":1567707900000,"y":0},{"x":1567707960000,"y":0},{"x":1567708020000,"y":0},{"x":1567708080000,"y":0},{"x":1567708140000,"y":0},{"x":1567708200000,"y":0},{"x":1567708260000,"y":0},{"x":1567708320000,"y":0},{"x":1567708380000,"y":0},{"x":1567708440000,"y":0},{"x":1567708500000,"y":0},{"x":1567708560000,"y":0},{"x":1567708620000,"y":0},{"x":1567708680000,"y":0},{"x":1567708740000,"y":0},{"x":1567708800000,"y":0},{"x":1567708860000,"y":0},{"x":1567708920000,"y":0},{"x":1567708980000,"y":0},{"x":1567709040000,"y":0},{"x":1567709100000,"y":0},{"x":1567709160000,"y":0},{"x":1567709220000,"y":0},{"x":1567709280000,"y":0},{"x":1567709340000,"y":0},{"x":1567709400000,"y":0},{"x":1567709460000,"y":0},{"x":1567709520000,"y":0},{"x":1567709580000,"y":0},{"x":1567709640000,"y":0},{"x":1567709700000,"y":0},{"x":1567709760000,"y":0},{"x":1567709820000,"y":0},{"x":1567709880000,"y":0},{"x":1567709940000,"y":0},{"x":1567710000000,"y":0},{"x":1567710060000,"y":0},{"x":1567710120000,"y":0.83},{"x":1567710180000,"y":0.01},{"x":1567710240000,"y":0},{"x":1567710300000,"y":0},{"x":1567710360000,"y":0},{"x":1567710420000,"y":0},{"x":1567710480000,"y":0},{"x":1567710540000,"y":0},{"x":1567710600000,"y":0},{"x":1567710660000,"y":0},{"x":1567710720000,"y":0},{"x":1567710780000,"y":0},{"x":1567710840000,"y":0},{"x":1567710900000,"y":0},{"x":1567710960000,"y":0},{"x":1567711020000,"y":0},{"x":1567711080000,"y":0},{"x":1567711140000,"y":0},{"x":1567711200000,"y":0},{"x":1567711260000,"y":0},{"x":1567711320000,"y":0},{"x":1567711380000,"y":0},{"x":1567711440000,"y":0},{"x":1567711500000,"y":0},{"x":1567711560000,"y":0},{"x":1567711620000,"y":0},{"x":1567711680000,"y":0},{"x":1567711740000,"y":0},{"x":1567711800000,"y":0},{"x":1567711860000,"y":0},{"x":1567711920000,"y":0},{"x":1567711980000,"y":0},{"x":1567712040000,"y":0},{"x":1567712100000,"y":0},{"x":1567712160000,"y":0},{"x":1567712220000,"y":0},{"x":1567712280000,"y":0},{"x":1567712340000,"y":0},{"x":1567712400000,"y":0},{"x":1567712460000,"y":0},{"x":1567712520000,"y":0},{"x":1567712580000,"y":0},{"x":1567712640000,"y":0},{"x":1567712700000,"y":0},{"x":1567712760000,"y":0},{"x":1567712820000,"y":0},{"x":1567712880000,"y":0},{"x":1567712940000,"y":0},{"x":1567713000000,"y":0},{"x":1567713060000,"y":0},{"x":1567713120000,"y":0},{"x":1567713180000,"y":0},{"x":1567713240000,"y":0},{"x":1567713300000,"y":0},{"x":1567713360000,"y":0},{"x":1567713420000,"y":0},{"x":1567713480000,"y":0.02},{"x":1567713540000,"y":0},{"x":1567713600000,"y":0},{"x":1567713660000,"y":0},{"x":1567713720000,"y":0},{"x":1567713780000,"y":0},{"x":1567713840000,"y":0},{"x":1567713900000,"y":0},{"x":1567713960000,"y":0},{"x":1567714020000,"y":0},{"x":1567714080000,"y":0},{"x":1567714140000,"y":0},{"x":1567714200000,"y":0},{"x":1567714260000,"y":0},{"x":1567714320000,"y":0},{"x":1567714380000,"y":0},{"x":1567714440000,"y":0},{"x":1567714500000,"y":0},{"x":1567714560000,"y":0},{"x":1567714620000,"y":0},{"x":1567714680000,"y":0},{"x":1567714740000,"y":0},{"x":1567714800000,"y":0},{"x":1567714860000,"y":0},{"x":1567714920000,"y":0},{"x":1567714980000,"y":0},{"x":1567715040000,"y":0},{"x":1567715100000,"y":0},{"x":1567715160000,"y":0},{"x":1567715220000,"y":0.83},{"x":1567715280000,"y":0.11},{"x":1567715340000,"y":1.25},{"x":1567715400000,"y":0.01},{"x":1567715460000,"y":0},{"x":1567715520000,"y":0},{"x":1567715580000,"y":0},{"x":1567715640000,"y":2.22},{"x":1567715700000,"y":0},{"x":1567715760000,"y":0},{"x":1567715820000,"y":0.46},{"x":1567715880000,"y":0},{"x":1567715940000,"y":0.45},{"x":1567716000000,"y":0.01},{"x":1567716060000,"y":0},{"x":1567716120000,"y":0.03},{"x":1567716180000,"y":3.92},{"x":1567716240000,"y":0},{"x":1567716300000,"y":0},{"x":1567716360000,"y":0},{"x":1567716420000,"y":0},{"x":1567716480000,"y":0},{"x":1567716540000,"y":0},{"x":1567716600000,"y":0.05},{"x":1567716660000,"y":0.01},{"x":1567716720000,"y":0},{"x":1567716780000,"y":0.03},{"x":1567716840000,"y":0.27},{"x":1567716900000,"y":0},{"x":1567716960000,"y":0},{"x":1567717020000,"y":0},{"x":1567717080000,"y":0.01},{"x":1567717140000,"y":0},{"x":1567717200000,"y":0.45},{"x":1567717260000,"y":0.03},{"x":1567717320000,"y":0},{"x":1567717380000,"y":0},{"x":1567717440000,"y":0},{"x":1567717500000,"y":1.97},{"x":1567717560000,"y":0.1},{"x":1567717620000,"y":0.1},{"x":1567717680000,"y":0},{"x":1567717740000,"y":0},{"x":1567717800000,"y":0},{"x":1567717860000,"y":0},{"x":1567717920000,"y":0.05},{"x":1567717980000,"y":0},{"x":1567718040000,"y":0},{"x":1567718100000,"y":0.02},{"x":1567718160000,"y":0.01},{"x":1567718220000,"y":0.03},{"x":1567718280000,"y":0},{"x":1567718340000,"y":0},{"x":1567718400000,"y":0},{"x":1567718460000,"y":0},{"x":1567718520000,"y":0},{"x":1567718580000,"y":0},{"x":1567718640000,"y":0},{"x":1567718700000,"y":0},{"x":1567718760000,"y":0},{"x":1567718820000,"y":0},{"x":1567718880000,"y":0},{"x":1567718940000,"y":0},{"x":1567719000000,"y":0},{"x":1567719060000,"y":0},{"x":1567719120000,"y":0},{"x":1567719180000,"y":0},{"x":1567719240000,"y":0},{"x":1567719300000,"y":0},{"x":1567719360000,"y":0.02},{"x":1567719420000,"y":0},{"x":1567719480000,"y":0.01},{"x":1567719540000,"y":0.02},{"x":1567719600000,"y":0},{"x":1567719660000,"y":0.05},{"x":1567719720000,"y":0.29},{"x":1567719780000,"y":0.07},{"x":1567719840000,"y":0.01},{"x":1567719900000,"y":0},{"x":1567719960000,"y":0},{"x":1567720020000,"y":0},{"x":1567720080000,"y":0.5},{"x":1567720140000,"y":0.16},{"x":1567720200000,"y":0.01},{"x":1567720260000,"y":0.01},{"x":1567720320000,"y":0.04},{"x":1567720380000,"y":0},{"x":1567720440000,"y":0},{"x":1567720500000,"y":0},{"x":1567720560000,"y":0.03},{"x":1567720620000,"y":0},{"x":1567720680000,"y":0},{"x":1567720740000,"y":0},{"x":1567720800000,"y":0},{"x":1567720860000,"y":0},{"x":1567720920000,"y":0},{"x":1567720980000,"y":0},{"x":1567721040000,"y":0},{"x":1567721100000,"y":0},{"x":1567721160000,"y":0},{"x":1567721220000,"y":0},{"x":1567721280000,"y":0},{"x":1567721340000,"y":0},{"x":1567721400000,"y":0},{"x":1567721460000,"y":0},{"x":1567721520000,"y":0.42},{"x":1567721580000,"y":0},{"x":1567721640000,"y":0},{"x":1567721700000,"y":0},{"x":1567721760000,"y":0},{"x":1567721820000,"y":0},{"x":1567721880000,"y":0},{"x":1567721940000,"y":0},{"x":1567722000000,"y":0},{"x":1567722060000,"y":0},{"x":1567722120000,"y":0},{"x":1567722180000,"y":0},{"x":1567722240000,"y":0},{"x":1567722300000,"y":0},{"x":1567722360000,"y":0},{"x":1567722420000,"y":0},{"x":1567722480000,"y":0},{"x":1567722540000,"y":0},{"x":1567722600000,"y":0},{"x":1567722660000,"y":0},{"x":1567722720000,"y":0},{"x":1567722780000,"y":0},{"x":1567722840000,"y":0},{"x":1567722900000,"y":0},{"x":1567722960000,"y":0},{"x":1567723020000,"y":0},{"x":1567723080000,"y":0},{"x":1567723140000,"y":0},{"x":1567723200000,"y":0},{"x":1567723260000,"y":0},{"x":1567723320000,"y":0},{"x":1567723380000,"y":0},{"x":1567723440000,"y":0},{"x":1567723500000,"y":0},{"x":1567723560000,"y":0},{"x":1567723620000,"y":0},{"x":1567723680000,"y":0},{"x":1567723740000,"y":0},{"x":1567723800000,"y":0},{"x":1567723860000,"y":0},{"x":1567723920000,"y":0},{"x":1567723980000,"y":0},{"x":1567724040000,"y":0},{"x":1567724100000,"y":0},{"x":1567724160000,"y":0},{"x":1567724220000,"y":0},{"x":1567724280000,"y":0},{"x":1567724340000,"y":0},{"x":1567724400000,"y":0},{"x":1567724460000,"y":0},{"x":1567724520000,"y":0},{"x":1567724580000,"y":0},{"x":1567724640000,"y":0},{"x":1567724700000,"y":0},{"x":1567724760000,"y":0},{"x":1567724820000,"y":0},{"x":1567724880000,"y":0},{"x":1567724940000,"y":0},{"x":1567725000000,"y":0},{"x":1567725060000,"y":0},{"x":1567725120000,"y":0},{"x":1567725180000,"y":0},{"x":1567725240000,"y":0},{"x":1567725300000,"y":0},{"x":1567725360000,"y":0},{"x":1567725420000,"y":0},{"x":1567725480000,"y":0},{"x":1567725540000,"y":0},{"x":1567725600000,"y":0},{"x":1567725660000,"y":0},{"x":1567725720000,"y":0},{"x":1567725780000,"y":0},{"x":1567725840000,"y":0},{"x":1567725900000,"y":0},{"x":1567725960000,"y":0},{"x":1567726020000,"y":0},{"x":1567726080000,"y":0},{"x":1567726140000,"y":0},{"x":1567726200000,"y":0},{"x":1567726260000,"y":0},{"x":1567726320000,"y":0},{"x":1567726380000,"y":0},{"x":1567726440000,"y":0},{"x":1567726500000,"y":0},{"x":1567726560000,"y":0},{"x":1567726620000,"y":0},{"x":1567726680000,"y":0},{"x":1567726740000,"y":0},{"x":1567726800000,"y":0},{"x":1567726860000,"y":0},{"x":1567726920000,"y":0},{"x":1567726980000,"y":0},{"x":1567727040000,"y":0},{"x":1567727100000,"y":0},{"x":1567727160000,"y":0},{"x":1567727220000,"y":0},{"x":1567727280000,"y":0},{"x":1567727340000,"y":0},{"x":1567727400000,"y":0},{"x":1567727460000,"y":0},{"x":1567727520000,"y":0},{"x":1567727580000,"y":0},{"x":1567727640000,"y":0},{"x":1567727700000,"y":0},{"x":1567727760000,"y":0},{"x":1567727820000,"y":0},{"x":1567727880000,"y":0},{"x":1567727940000,"y":0},{"x":1567728000000,"y":0},{"x":1567728060000,"y":0},{"x":1567728120000,"y":0},{"x":1567728180000,"y":0},{"x":1567728240000,"y":0},{"x":1567728300000,"y":0},{"x":1567728360000,"y":0},{"x":1567728420000,"y":0},{"x":1567728480000,"y":0},{"x":1567728540000,"y":0},{"x":1567728600000,"y":0},{"x":1567728660000,"y":0.01},{"x":1567728720000,"y":0},{"x":1567728780000,"y":0},{"x":1567728840000,"y":0},{"x":1567728900000,"y":0},{"x":1567728960000,"y":0},{"x":1567729020000,"y":0},{"x":1567729080000,"y":0},{"x":1567729140000,"y":0},{"x":1567729200000,"y":0},{"x":1567729260000,"y":0},{"x":1567729320000,"y":0},{"x":1567729380000,"y":0},{"x":1567729440000,"y":0},{"x":1567729500000,"y":0},{"x":1567729560000,"y":0},{"x":1567729620000,"y":0},{"x":1567729680000,"y":0},{"x":1567729740000,"y":0},{"x":1567729800000,"y":0},{"x":1567729860000,"y":0.01},{"x":1567729920000,"y":0},{"x":1567729980000,"y":0},{"x":1567730040000,"y":0},{"x":1567730100000,"y":0},{"x":1567730160000,"y":0},{"x":1567730220000,"y":0},{"x":1567730280000,"y":0},{"x":1567730340000,"y":0},{"x":1567730400000,"y":0},{"x":1567730460000,"y":0},{"x":1567730520000,"y":0},{"x":1567730580000,"y":0},{"x":1567730640000,"y":0},{"x":1567730700000,"y":0},{"x":1567730760000,"y":0},{"x":1567730820000,"y":0},{"x":1567730880000,"y":0},{"x":1567730940000,"y":0},{"x":1567731000000,"y":0},{"x":1567731060000,"y":0},{"x":1567731120000,"y":0},{"x":1567731180000,"y":0},{"x":1567731240000,"y":0},{"x":1567731300000,"y":0},{"x":1567731360000,"y":0},{"x":1567731420000,"y":0},{"x":1567731480000,"y":0},{"x":1567731540000,"y":0},{"x":1567731600000,"y":0},{"x":1567731660000,"y":0},{"x":1567731720000,"y":0},{"x":1567731780000,"y":0},{"x":1567731840000,"y":0},{"x":1567731900000,"y":0},{"x":1567731960000,"y":0},{"x":1567732020000,"y":0},{"x":1567732080000,"y":0},{"x":1567732140000,"y":0},{"x":1567732200000,"y":0},{"x":1567732260000,"y":0},{"x":1567732320000,"y":0},{"x":1567732380000,"y":0},{"x":1567732440000,"y":0},{"x":1567732500000,"y":0},{"x":1567732560000,"y":0},{"x":1567732620000,"y":0},{"x":1567732680000,"y":0},{"x":1567732740000,"y":0},{"x":1567732800000,"y":0.01},{"x":1567732860000,"y":0},{"x":1567732920000,"y":0},{"x":1567732980000,"y":0},{"x":1567733040000,"y":0},{"x":1567733100000,"y":0},{"x":1567733160000,"y":0},{"x":1567733220000,"y":0},{"x":1567733280000,"y":0},{"x":1567733340000,"y":0},{"x":1567733400000,"y":0},{"x":1567733460000,"y":0},{"x":1567733520000,"y":0},{"x":1567733580000,"y":0},{"x":1567733640000,"y":0},{"x":1567733700000,"y":0},{"x":1567733760000,"y":0.01},{"x":1567733820000,"y":0},{"x":1567733880000,"y":0},{"x":1567733940000,"y":0},{"x":1567734000000,"y":0},{"x":1567734060000,"y":0},{"x":1567734120000,"y":0},{"x":1567734180000,"y":0.01},{"x":1567734240000,"y":0},{"x":1567734300000,"y":0},{"x":1567734360000,"y":0},{"x":1567734420000,"y":0},{"x":1567734480000,"y":0},{"x":1567734540000,"y":0},{"x":1567734600000,"y":0},{"x":1567734660000,"y":0},{"x":1567734720000,"y":0},{"x":1567734780000,"y":0},{"x":1567734840000,"y":0},{"x":1567734900000,"y":0},{"x":1567734960000,"y":0},{"x":1567735020000,"y":0},{"x":1567735080000,"y":0},{"x":1567735140000,"y":0},{"x":1567735200000,"y":0},{"x":1567735260000,"y":0},{"x":1567735320000,"y":0},{"x":1567735380000,"y":0},{"x":1567735440000,"y":0},{"x":1567735500000,"y":0},{"x":1567735560000,"y":0},{"x":1567735620000,"y":0},{"x":1567735680000,"y":0},{"x":1567735740000,"y":0},{"x":1567735800000,"y":0},{"x":1567735860000,"y":0},{"x":1567735920000,"y":0},{"x":1567735980000,"y":0},{"x":1567736040000,"y":0},{"x":1567736100000,"y":0},{"x":1567736160000,"y":0},{"x":1567736220000,"y":0},{"x":1567736280000,"y":0},{"x":1567736340000,"y":0},{"x":1567736400000,"y":0},{"x":1567736460000,"y":0},{"x":1567736520000,"y":0},{"x":1567736580000,"y":0},{"x":1567736640000,"y":0},{"x":1567736700000,"y":0},{"x":1567736760000,"y":0},{"x":1567736820000,"y":0},{"x":1567736880000,"y":0},{"x":1567736940000,"y":0},{"x":1567737000000,"y":0},{"x":1567737060000,"y":0},{"x":1567737120000,"y":0},{"x":1567737180000,"y":0},{"x":1567737240000,"y":0},{"x":1567737300000,"y":0},{"x":1567737360000,"y":0},{"x":1567737420000,"y":0},{"x":1567737480000,"y":0},{"x":1567737540000,"y":0},{"x":1567737600000,"y":0},{"x":1567737660000,"y":0},{"x":1567737720000,"y":0},{"x":1567737780000,"y":0},{"x":1567737840000,"y":0},{"x":1567737900000,"y":0},{"x":1567737960000,"y":0},{"x":1567738020000,"y":0},{"x":1567738080000,"y":0},{"x":1567738140000,"y":0},{"x":1567738200000,"y":0},{"x":1567738260000,"y":0},{"x":1567738320000,"y":0},{"x":1567738380000,"y":0},{"x":1567738440000,"y":0},{"x":1567738500000,"y":0},{"x":1567738560000,"y":0},{"x":1567738620000,"y":0},{"x":1567738680000,"y":0},{"x":1567738740000,"y":0},{"x":1567738800000,"y":0},{"x":1567738860000,"y":0},{"x":1567738920000,"y":0},{"x":1567738980000,"y":0},{"x":1567739040000,"y":0},{"x":1567739100000,"y":0},{"x":1567739160000,"y":0},{"x":1567739220000,"y":0},{"x":1567739280000,"y":0},{"x":1567739340000,"y":0},{"x":1567739400000,"y":0},{"x":1567739460000,"y":0},{"x":1567739520000,"y":0},{"x":1567739580000,"y":0},{"x":1567739640000,"y":0},{"x":1567739700000,"y":0},{"x":1567739760000,"y":0},{"x":1567739820000,"y":0},{"x":1567739880000,"y":0},{"x":1567739940000,"y":0},{"x":1567740000000,"y":0},{"x":1567740060000,"y":0},{"x":1567740120000,"y":0},{"x":1567740180000,"y":0},{"x":1567740240000,"y":0},{"x":1567740300000,"y":0},{"x":1567740360000,"y":0},{"x":1567740420000,"y":0},{"x":1567740480000,"y":0},{"x":1567740540000,"y":0},{"x":1567740600000,"y":0},{"x":1567740660000,"y":0},{"x":1567740720000,"y":0},{"x":1567740780000,"y":0},{"x":1567740840000,"y":0},{"x":1567740900000,"y":0},{"x":1567740960000,"y":0},{"x":1567741020000,"y":0},{"x":1567741080000,"y":0},{"x":1567741140000,"y":0},{"x":1567741200000,"y":0},{"x":1567741260000,"y":0},{"x":1567741320000,"y":0},{"x":1567741380000,"y":0},{"x":1567741440000,"y":0},{"x":1567741500000,"y":0},{"x":1567741560000,"y":0},{"x":1567741620000,"y":0},{"x":1567741680000,"y":0},{"x":1567741740000,"y":0},{"x":1567741800000,"y":0},{"x":1567741860000,"y":0},{"x":1567741920000,"y":0},{"x":1567741980000,"y":0},{"x":1567742040000,"y":0},{"x":1567742100000,"y":0},{"x":1567742160000,"y":0},{"x":1567742220000,"y":0},{"x":1567742280000,"y":0},{"x":1567742340000,"y":0},{"x":1567742400000,"y":0},{"x":1567742460000,"y":0},{"x":1567742520000,"y":0},{"x":1567742580000,"y":0},{"x":1567742640000,"y":0},{"x":1567742700000,"y":0},{"x":1567742760000,"y":0.02},{"x":1567742820000,"y":0},{"x":1567742880000,"y":0},{"x":1567742940000,"y":0},{"x":1567743000000,"y":0},{"x":1567743060000,"y":0},{"x":1567743120000,"y":0},{"x":1567743180000,"y":0},{"x":1567743240000,"y":0},{"x":1567743300000,"y":0},{"x":1567743360000,"y":0},{"x":1567743420000,"y":0},{"x":1567743480000,"y":0},{"x":1567743540000,"y":0},{"x":1567743600000,"y":0},{"x":1567743660000,"y":0},{"x":1567743720000,"y":0},{"x":1567743780000,"y":0},{"x":1567743840000,"y":0},{"x":1567743900000,"y":0},{"x":1567743960000,"y":0},{"x":1567744020000,"y":0},{"x":1567744080000,"y":0},{"x":1567744140000,"y":0},{"x":1567744200000,"y":0},{"x":1567744260000,"y":0},{"x":1567744320000,"y":0},{"x":1567744380000,"y":0},{"x":1567744440000,"y":0},{"x":1567744500000,"y":0},{"x":1567744560000,"y":0},{"x":1567744620000,"y":0},{"x":1567744680000,"y":0},{"x":1567744740000,"y":0},{"x":1567744800000,"y":0},{"x":1567744860000,"y":0},{"x":1567744920000,"y":0},{"x":1567744980000,"y":0},{"x":1567745040000,"y":0},{"x":1567745100000,"y":0},{"x":1567745160000,"y":0},{"x":1567745220000,"y":0},{"x":1567745280000,"y":0},{"x":1567745340000,"y":0},{"x":1567745400000,"y":0},{"x":1567745460000,"y":0},{"x":1567745520000,"y":0},{"x":1567745580000,"y":0.01},{"x":1567745640000,"y":0},{"x":1567745700000,"y":0},{"x":1567745760000,"y":0},{"x":1567745820000,"y":0},{"x":1567745880000,"y":0},{"x":1567745940000,"y":0},{"x":1567746000000,"y":0},{"x":1567746060000,"y":0},{"x":1567746120000,"y":0},{"x":1567746180000,"y":0},{"x":1567746240000,"y":0},{"x":1567746300000,"y":0},{"x":1567746360000,"y":0},{"x":1567746420000,"y":0},{"x":1567746480000,"y":0},{"x":1567746540000,"y":0},{"x":1567746600000,"y":0},{"x":1567746660000,"y":0},{"x":1567746720000,"y":0},{"x":1567746780000,"y":0},{"x":1567746840000,"y":0},{"x":1567746900000,"y":0},{"x":1567746960000,"y":0},{"x":1567747020000,"y":0},{"x":1567747080000,"y":0},{"x":1567747140000,"y":0},{"x":1567747200000,"y":0},{"x":1567747260000,"y":0},{"x":1567747320000,"y":0},{"x":1567747380000,"y":0},{"x":1567747440000,"y":0},{"x":1567747500000,"y":0},{"x":1567747560000,"y":0},{"x":1567747620000,"y":0},{"x":1567747680000,"y":0},{"x":1567747740000,"y":0},{"x":1567747800000,"y":0},{"x":1567747860000,"y":0},{"x":1567747920000,"y":0},{"x":1567747980000,"y":0},{"x":1567748040000,"y":0},{"x":1567748100000,"y":0},{"x":1567748160000,"y":0},{"x":1567748220000,"y":0},{"x":1567748280000,"y":0},{"x":1567748340000,"y":0},{"x":1567748400000,"y":0},{"x":1567748460000,"y":0},{"x":1567748520000,"y":0},{"x":1567748580000,"y":0},{"x":1567748640000,"y":0},{"x":1567748700000,"y":0},{"x":1567748760000,"y":0},{"x":1567748820000,"y":0},{"x":1567748880000,"y":0},{"x":1567748940000,"y":0},{"x":1567749000000,"y":0},{"x":1567749060000,"y":0},{"x":1567749120000,"y":0},{"x":1567749180000,"y":0},{"x":1567749240000,"y":0},{"x":1567749300000,"y":0},{"x":1567749360000,"y":0},{"x":1567749420000,"y":0},{"x":1567749480000,"y":0},{"x":1567749540000,"y":0},{"x":1567749600000,"y":0},{"x":1567749660000,"y":0},{"x":1567749720000,"y":0},{"x":1567749780000,"y":0},{"x":1567749840000,"y":0},{"x":1567749900000,"y":0},{"x":1567749960000,"y":0},{"x":1567750020000,"y":0},{"x":1567750080000,"y":0},{"x":1567750140000,"y":0},{"x":1567750200000,"y":0},{"x":1567750260000,"y":0},{"x":1567750320000,"y":0},{"x":1567750380000,"y":0},{"x":1567750440000,"y":0},{"x":1567750500000,"y":0},{"x":1567750560000,"y":0.01},{"x":1567750620000,"y":0},{"x":1567750680000,"y":0},{"x":1567750740000,"y":0},{"x":1567750800000,"y":0},{"x":1567750860000,"y":0},{"x":1567750920000,"y":0},{"x":1567750980000,"y":0},{"x":1567751040000,"y":0},{"x":1567751100000,"y":0},{"x":1567751160000,"y":0},{"x":1567751220000,"y":0},{"x":1567751280000,"y":0},{"x":1567751340000,"y":0},{"x":1567751400000,"y":0},{"x":1567751460000,"y":0},{"x":1567751520000,"y":0},{"x":1567751580000,"y":0},{"x":1567751640000,"y":0},{"x":1567751700000,"y":0},{"x":1567751760000,"y":0},{"x":1567751820000,"y":0},{"x":1567751880000,"y":0},{"x":1567751940000,"y":0},{"x":1567752000000,"y":0},{"x":1567752060000,"y":0},{"x":1567752120000,"y":0},{"x":1567752180000,"y":0},{"x":1567752240000,"y":0},{"x":1567752300000,"y":0},{"x":1567752360000,"y":0},{"x":1567752420000,"y":0},{"x":1567752480000,"y":0},{"x":1567752540000,"y":0},{"x":1567752600000,"y":0},{"x":1567752660000,"y":0},{"x":1567752720000,"y":0},{"x":1567752780000,"y":0},{"x":1567752840000,"y":0},{"x":1567752900000,"y":0},{"x":1567752960000,"y":0},{"x":1567753020000,"y":0},{"x":1567753080000,"y":0},{"x":1567753140000,"y":0},{"x":1567753200000,"y":0},{"x":1567753260000,"y":0},{"x":1567753320000,"y":0},{"x":1567753380000,"y":0},{"x":1567753440000,"y":0},{"x":1567753500000,"y":0},{"x":1567753560000,"y":0},{"x":1567753620000,"y":0},{"x":1567753680000,"y":0},{"x":1567753740000,"y":0},{"x":1567753800000,"y":0},{"x":1567753860000,"y":0},{"x":1567753920000,"y":0},{"x":1567753980000,"y":0},{"x":1567754040000,"y":0},{"x":1567754100000,"y":0},{"x":1567754160000,"y":0},{"x":1567754220000,"y":0},{"x":1567754280000,"y":0},{"x":1567754340000,"y":0},{"x":1567754400000,"y":0},{"x":1567754460000,"y":0},{"x":1567754520000,"y":0},{"x":1567754580000,"y":0},{"x":1567754640000,"y":0},{"x":1567754700000,"y":0},{"x":1567754760000,"y":0},{"x":1567754820000,"y":0},{"x":1567754880000,"y":0},{"x":1567754940000,"y":0},{"x":1567755000000,"y":0},{"x":1567755060000,"y":0},{"x":1567755120000,"y":0},{"x":1567755180000,"y":0},{"x":1567755240000,"y":0},{"x":1567755300000,"y":0.01},{"x":1567755360000,"y":0},{"x":1567755420000,"y":0},{"x":1567755480000,"y":0},{"x":1567755540000,"y":0},{"x":1567755600000,"y":0},{"x":1567755660000,"y":0},{"x":1567755720000,"y":0},{"x":1567755780000,"y":0},{"x":1567755840000,"y":0},{"x":1567755900000,"y":0},{"x":1567755960000,"y":0},{"x":1567756020000,"y":0},{"x":1567756080000,"y":0},{"x":1567756140000,"y":0},{"x":1567756200000,"y":0},{"x":1567756260000,"y":0},{"x":1567756320000,"y":0},{"x":1567756380000,"y":0},{"x":1567756440000,"y":0},{"x":1567756500000,"y":0},{"x":1567756560000,"y":0},{"x":1567756620000,"y":0},{"x":1567756680000,"y":0},{"x":1567756740000,"y":0},{"x":1567756800000,"y":0},{"x":1567756860000,"y":0},{"x":1567756920000,"y":0},{"x":1567756980000,"y":0},{"x":1567757040000,"y":0},{"x":1567757100000,"y":0.14},{"x":1567757160000,"y":0},{"x":1567757220000,"y":0},{"x":1567757280000,"y":0},{"x":1567757340000,"y":0},{"x":1567757400000,"y":0},{"x":1567757460000,"y":0},{"x":1567757520000,"y":0},{"x":1567757580000,"y":0},{"x":1567757640000,"y":0},{"x":1567757700000,"y":0},{"x":1567757760000,"y":0},{"x":1567757820000,"y":0},{"x":1567757880000,"y":0},{"x":1567757940000,"y":0},{"x":1567758000000,"y":0},{"x":1567758060000,"y":0},{"x":1567758120000,"y":0},{"x":1567758180000,"y":0},{"x":1567758240000,"y":0},{"x":1567758300000,"y":0},{"x":1567758360000,"y":0},{"x":1567758420000,"y":0},{"x":1567758480000,"y":0},{"x":1567758540000,"y":0},{"x":1567758600000,"y":0},{"x":1567758660000,"y":0},{"x":1567758720000,"y":0},{"x":1567758780000,"y":0},{"x":1567758840000,"y":0},{"x":1567758900000,"y":0},{"x":1567758960000,"y":0},{"x":1567759020000,"y":0},{"x":1567759080000,"y":0},{"x":1567759140000,"y":0},{"x":1567759200000,"y":0},{"x":1567759260000,"y":0},{"x":1567759320000,"y":0},{"x":1567759380000,"y":0},{"x":1567759440000,"y":0},{"x":1567759500000,"y":0},{"x":1567759560000,"y":0},{"x":1567759620000,"y":0},{"x":1567759680000,"y":0},{"x":1567759740000,"y":0},{"x":1567759800000,"y":0},{"x":1567759860000,"y":0},{"x":1567759920000,"y":0},{"x":1567759980000,"y":0},{"x":1567760040000,"y":0},{"x":1567760100000,"y":0},{"x":1567760160000,"y":0},{"x":1567760220000,"y":0},{"x":1567760280000,"y":0},{"x":1567760340000,"y":0},{"x":1567760400000,"y":0},{"x":1567760460000,"y":0},{"x":1567760520000,"y":0},{"x":1567760580000,"y":0},{"x":1567760640000,"y":0},{"x":1567760700000,"y":0},{"x":1567760760000,"y":0},{"x":1567760820000,"y":0},{"x":1567760880000,"y":0},{"x":1567760940000,"y":0},{"x":1567761000000,"y":0},{"x":1567761060000,"y":0},{"x":1567761120000,"y":0},{"x":1567761180000,"y":0},{"x":1567761240000,"y":0},{"x":1567761300000,"y":0},{"x":1567761360000,"y":0},{"x":1567761420000,"y":0},{"x":1567761480000,"y":0},{"x":1567761540000,"y":0},{"x":1567761600000,"y":0},{"x":1567761660000,"y":0},{"x":1567761720000,"y":0},{"x":1567761780000,"y":0},{"x":1567761840000,"y":0},{"x":1567761900000,"y":0},{"x":1567761960000,"y":0},{"x":1567762020000,"y":0},{"x":1567762080000,"y":0},{"x":1567762140000,"y":0},{"x":1567762200000,"y":0},{"x":1567762260000,"y":0},{"x":1567762320000,"y":0},{"x":1567762380000,"y":0},{"x":1567762440000,"y":0},{"x":1567762500000,"y":0},{"x":1567762560000,"y":0},{"x":1567762620000,"y":0},{"x":1567762680000,"y":0},{"x":1567762740000,"y":0},{"x":1567762800000,"y":0},{"x":1567762860000,"y":0},{"x":1567762920000,"y":0},{"x":1567762980000,"y":0},{"x":1567763040000,"y":0},{"x":1567763100000,"y":0},{"x":1567763160000,"y":0},{"x":1567763220000,"y":0},{"x":1567763280000,"y":0},{"x":1567763340000,"y":0},{"x":1567763400000,"y":0},{"x":1567763460000,"y":0},{"x":1567763520000,"y":0},{"x":1567763580000,"y":0},{"x":1567763640000,"y":0},{"x":1567763700000,"y":0},{"x":1567763760000,"y":0},{"x":1567763820000,"y":0},{"x":1567763880000,"y":0},{"x":1567763940000,"y":0},{"x":1567764000000,"y":0},{"x":1567764060000,"y":0},{"x":1567764120000,"y":0},{"x":1567764180000,"y":0},{"x":1567764240000,"y":0},{"x":1567764300000,"y":0},{"x":1567764360000,"y":0},{"x":1567764420000,"y":0},{"x":1567764480000,"y":0},{"x":1567764540000,"y":0},{"x":1567764600000,"y":0},{"x":1567764660000,"y":0},{"x":1567764720000,"y":0},{"x":1567764780000,"y":0},{"x":1567764840000,"y":0},{"x":1567764900000,"y":0},{"x":1567764960000,"y":0},{"x":1567765020000,"y":0},{"x":1567765080000,"y":0},{"x":1567765140000,"y":0},{"x":1567765200000,"y":0},{"x":1567765260000,"y":0},{"x":1567765320000,"y":0},{"x":1567765380000,"y":0},{"x":1567765440000,"y":0},{"x":1567765500000,"y":0},{"x":1567765560000,"y":0},{"x":1567765620000,"y":0},{"x":1567765680000,"y":0},{"x":1567765740000,"y":0},{"x":1567765800000,"y":0},{"x":1567765860000,"y":0},{"x":1567765920000,"y":0},{"x":1567765980000,"y":0},{"x":1567766040000,"y":0.01},{"x":1567766100000,"y":0.01},{"x":1567766160000,"y":0},{"x":1567766220000,"y":0},{"x":1567766280000,"y":0.01},{"x":1567766340000,"y":0},{"x":1567766400000,"y":0},{"x":1567766460000,"y":0},{"x":1567766520000,"y":0},{"x":1567766580000,"y":0},{"x":1567766640000,"y":0},{"x":1567766700000,"y":0},{"x":1567766760000,"y":0},{"x":1567766820000,"y":0},{"x":1567766880000,"y":0},{"x":1567766940000,"y":0},{"x":1567767000000,"y":0},{"x":1567767060000,"y":0},{"x":1567767120000,"y":0},{"x":1567767180000,"y":0},{"x":1567767240000,"y":0},{"x":1567767300000,"y":0},{"x":1567767360000,"y":0},{"x":1567767420000,"y":0},{"x":1567767480000,"y":0},{"x":1567767540000,"y":0},{"x":1567767600000,"y":0},{"x":1567767660000,"y":0},{"x":1567767720000,"y":0},{"x":1567767780000,"y":0},{"x":1567767840000,"y":0},{"x":1567767900000,"y":0},{"x":1567767960000,"y":0},{"x":1567768020000,"y":0},{"x":1567768080000,"y":0},{"x":1567768140000,"y":0},{"x":1567768200000,"y":0},{"x":1567768260000,"y":0},{"x":1567768320000,"y":0},{"x":1567768380000,"y":0},{"x":1567768440000,"y":0},{"x":1567768500000,"y":0},{"x":1567768560000,"y":0},{"x":1567768620000,"y":0},{"x":1567768680000,"y":0},{"x":1567768740000,"y":0},{"x":1567768800000,"y":0},{"x":1567768860000,"y":0},{"x":1567768920000,"y":0},{"x":1567768980000,"y":0},{"x":1567769040000,"y":0},{"x":1567769100000,"y":0},{"x":1567769160000,"y":0},{"x":1567769220000,"y":0},{"x":1567769280000,"y":0},{"x":1567769340000,"y":0},{"x":1567769400000,"y":0},{"x":1567769460000,"y":0},{"x":1567769520000,"y":0},{"x":1567769580000,"y":0},{"x":1567769640000,"y":0},{"x":1567769700000,"y":0},{"x":1567769760000,"y":0},{"x":1567769820000,"y":0},{"x":1567769880000,"y":0},{"x":1567769940000,"y":0},{"x":1567770000000,"y":0},{"x":1567770060000,"y":0},{"x":1567770120000,"y":0},{"x":1567770180000,"y":0},{"x":1567770240000,"y":0},{"x":1567770300000,"y":0},{"x":1567770360000,"y":0},{"x":1567770420000,"y":0},{"x":1567770480000,"y":0},{"x":1567770540000,"y":0},{"x":1567770600000,"y":0},{"x":1567770660000,"y":0},{"x":1567770720000,"y":0},{"x":1567770780000,"y":0},{"x":1567770840000,"y":0},{"x":1567770900000,"y":0},{"x":1567770960000,"y":0},{"x":1567771020000,"y":0},{"x":1567771080000,"y":0},{"x":1567771140000,"y":0},{"x":1567771200000,"y":0},{"x":1567771260000,"y":0},{"x":1567771320000,"y":0},{"x":1567771380000,"y":0},{"x":1567771440000,"y":0},{"x":1567771500000,"y":0},{"x":1567771560000,"y":0},{"x":1567771620000,"y":0},{"x":1567771680000,"y":0},{"x":1567771740000,"y":0},{"x":1567771800000,"y":0},{"x":1567771860000,"y":0},{"x":1567771920000,"y":0},{"x":1567771980000,"y":0},{"x":1567772040000,"y":0},{"x":1567772100000,"y":0},{"x":1567772160000,"y":0},{"x":1567772220000,"y":0},{"x":1567772280000,"y":0},{"x":1567772340000,"y":0},{"x":1567772400000,"y":0},{"x":1567772460000,"y":0.01},{"x":1567772520000,"y":0},{"x":1567772580000,"y":0},{"x":1567772640000,"y":0},{"x":1567772700000,"y":0},{"x":1567772760000,"y":0},{"x":1567772820000,"y":0},{"x":1567772880000,"y":0},{"x":1567772940000,"y":0},{"x":1567773000000,"y":0},{"x":1567773060000,"y":0},{"x":1567773120000,"y":0},{"x":1567773180000,"y":0},{"x":1567773240000,"y":0},{"x":1567773300000,"y":0},{"x":1567773360000,"y":0},{"x":1567773420000,"y":0},{"x":1567773480000,"y":0},{"x":1567773540000,"y":0},{"x":1567773600000,"y":0},{"x":1567773660000,"y":0},{"x":1567773720000,"y":0},{"x":1567773780000,"y":0},{"x":1567773840000,"y":0},{"x":1567773900000,"y":0},{"x":1567773960000,"y":0},{"x":1567774020000,"y":0},{"x":1567774080000,"y":0},{"x":1567774140000,"y":0},{"x":1567774200000,"y":0},{"x":1567774260000,"y":0},{"x":1567774320000,"y":0},{"x":1567774380000,"y":0},{"x":1567774440000,"y":0},{"x":1567774500000,"y":0},{"x":1567774560000,"y":0},{"x":1567774620000,"y":0},{"x":1567774680000,"y":0},{"x":1567774740000,"y":0},{"x":1567774800000,"y":0},{"x":1567774860000,"y":0},{"x":1567774920000,"y":0},{"x":1567774980000,"y":0},{"x":1567775040000,"y":0},{"x":1567775100000,"y":0},{"x":1567775160000,"y":0},{"x":1567775220000,"y":0},{"x":1567775280000,"y":0},{"x":1567775340000,"y":0},{"x":1567775400000,"y":0},{"x":1567775460000,"y":0},{"x":1567775520000,"y":0},{"x":1567775580000,"y":0},{"x":1567775640000,"y":0},{"x":1567775700000,"y":0},{"x":1567775760000,"y":0},{"x":1567775820000,"y":0},{"x":1567775880000,"y":0},{"x":1567775940000,"y":0},{"x":1567776000000,"y":0},{"x":1567776060000,"y":0},{"x":1567776120000,"y":0},{"x":1567776180000,"y":0},{"x":1567776240000,"y":0},{"x":1567776300000,"y":0},{"x":1567776360000,"y":0},{"x":1567776420000,"y":0},{"x":1567776480000,"y":0},{"x":1567776540000,"y":0},{"x":1567776600000,"y":0},{"x":1567776660000,"y":0},{"x":1567776720000,"y":0},{"x":1567776780000,"y":0},{"x":1567776840000,"y":0},{"x":1567776900000,"y":0},{"x":1567776960000,"y":0},{"x":1567777020000,"y":0},{"x":1567777080000,"y":0},{"x":1567777140000,"y":0},{"x":1567777200000,"y":0},{"x":1567777260000,"y":0},{"x":1567777320000,"y":0},{"x":1567777380000,"y":0},{"x":1567777440000,"y":0},{"x":1567777500000,"y":0},{"x":1567777560000,"y":0},{"x":1567777620000,"y":0},{"x":1567777680000,"y":0},{"x":1567777740000,"y":0},{"x":1567777800000,"y":0},{"x":1567777860000,"y":0},{"x":1567777920000,"y":0},{"x":1567777980000,"y":0},{"x":1567778040000,"y":0},{"x":1567778100000,"y":0},{"x":1567778160000,"y":0},{"x":1567778220000,"y":0},{"x":1567778280000,"y":0},{"x":1567778340000,"y":0},{"x":1567778400000,"y":0},{"x":1567778460000,"y":0},{"x":1567778520000,"y":0},{"x":1567778580000,"y":0},{"x":1567778640000,"y":0},{"x":1567778700000,"y":0},{"x":1567778760000,"y":0},{"x":1567778820000,"y":0},{"x":1567778880000,"y":0},{"x":1567778940000,"y":0},{"x":1567779000000,"y":0},{"x":1567779060000,"y":0},{"x":1567779120000,"y":0},{"x":1567779180000,"y":0},{"x":1567779240000,"y":0},{"x":1567779300000,"y":0},{"x":1567779360000,"y":0},{"x":1567779420000,"y":0},{"x":1567779480000,"y":0},{"x":1567779540000,"y":0},{"x":1567779600000,"y":0},{"x":1567779660000,"y":0},{"x":1567779720000,"y":0},{"x":1567779780000,"y":0},{"x":1567779840000,"y":0},{"x":1567779900000,"y":0},{"x":1567779960000,"y":0},{"x":1567780020000,"y":0},{"x":1567780080000,"y":0},{"x":1567780140000,"y":0},{"x":1567780200000,"y":0},{"x":1567780260000,"y":0},{"x":1567780320000,"y":0},{"x":1567780380000,"y":0},{"x":1567780440000,"y":0},{"x":1567780500000,"y":0},{"x":1567780560000,"y":0},{"x":1567780620000,"y":0},{"x":1567780680000,"y":0},{"x":1567780740000,"y":0},{"x":1567780800000,"y":0},{"x":1567780860000,"y":0},{"x":1567780920000,"y":0},{"x":1567780980000,"y":0},{"x":1567781040000,"y":0},{"x":1567781100000,"y":0},{"x":1567781160000,"y":0},{"x":1567781220000,"y":0},{"x":1567781280000,"y":0},{"x":1567781340000,"y":0},{"x":1567781400000,"y":0},{"x":1567781460000,"y":0},{"x":1567781520000,"y":0},{"x":1567781580000,"y":0},{"x":1567781640000,"y":0},{"x":1567781700000,"y":0},{"x":1567781760000,"y":0},{"x":1567781820000,"y":0},{"x":1567781880000,"y":0.84},{"x":1567781940000,"y":0},{"x":1567782000000,"y":0},{"x":1567782060000,"y":0},{"x":1567782120000,"y":1.21},{"x":1567782180000,"y":0.01},{"x":1567782240000,"y":0.02},{"x":1567782300000,"y":0.54},{"x":1567782360000,"y":0.24},{"x":1567782420000,"y":0.01},{"x":1567782480000,"y":2.01},{"x":1567782540000,"y":0.04},{"x":1567782600000,"y":0.01},{"x":1567782660000,"y":0},{"x":1567782720000,"y":0.02},{"x":1567782780000,"y":0},{"x":1567782840000,"y":0.04},{"x":1567782900000,"y":1.91},{"x":1567782960000,"y":0},{"x":1567783020000,"y":0},{"x":1567783080000,"y":0},{"x":1567783140000,"y":0},{"x":1567783200000,"y":0},{"x":1567783260000,"y":0},{"x":1567783320000,"y":0.01},{"x":1567783380000,"y":0},{"x":1567783440000,"y":2.01},{"x":1567783500000,"y":0},{"x":1567783560000,"y":0.01},{"x":1567783620000,"y":0},{"x":1567783680000,"y":0},{"x":1567783740000,"y":0},{"x":1567783800000,"y":0},{"x":1567783860000,"y":0},{"x":1567783920000,"y":0},{"x":1567783980000,"y":0},{"x":1567784040000,"y":0},{"x":1567784100000,"y":0},{"x":1567784160000,"y":0},{"x":1567784220000,"y":0},{"x":1567784280000,"y":2.37},{"x":1567784340000,"y":0.61},{"x":1567784400000,"y":0.04},{"x":1567784460000,"y":0},{"x":1567784520000,"y":0},{"x":1567784580000,"y":0},{"x":1567784640000,"y":0.85},{"x":1567784700000,"y":0.17},{"x":1567784760000,"y":0.01},{"x":1567784820000,"y":0},{"x":1567784880000,"y":0},{"x":1567784940000,"y":0},{"x":1567785000000,"y":0},{"x":1567785060000,"y":0},{"x":1567785120000,"y":0},{"x":1567785180000,"y":0},{"x":1567785240000,"y":0},{"x":1567785300000,"y":0},{"x":1567785360000,"y":0},{"x":1567785420000,"y":0},{"x":1567785480000,"y":0},{"x":1567785540000,"y":0},{"x":1567785600000,"y":1.5},{"x":1567785660000,"y":0.69},{"x":1567785720000,"y":0.63},{"x":1567785780000,"y":0.66},{"x":1567785840000,"y":0.48},{"x":1567785900000,"y":0.01},{"x":1567785960000,"y":0.69},{"x":1567786020000,"y":0.72},{"x":1567786080000,"y":0.07},{"x":1567786140000,"y":0.8},{"x":1567786200000,"y":0},{"x":1567786260000,"y":0.07},{"x":1567786320000,"y":0},{"x":1567786380000,"y":0},{"x":1567786440000,"y":0},{"x":1567786500000,"y":0},{"x":1567786560000,"y":1.85},{"x":1567786620000,"y":0.02},{"x":1567786680000,"y":0.13},{"x":1567786740000,"y":0},{"x":1567786800000,"y":0.13},{"x":1567786860000,"y":0.02},{"x":1567786920000,"y":0},{"x":1567786980000,"y":0},{"x":1567787040000,"y":0.2},{"x":1567787100000,"y":0.12},{"x":1567787160000,"y":0.38},{"x":1567787220000,"y":0.03},{"x":1567787280000,"y":0},{"x":1567787340000,"y":0},{"x":1567787400000,"y":0},{"x":1567787460000,"y":0},{"x":1567787520000,"y":0},{"x":1567787580000,"y":0},{"x":1567787640000,"y":1.5},{"x":1567787700000,"y":0},{"x":1567787760000,"y":0},{"x":1567787820000,"y":0},{"x":1567787880000,"y":0},{"x":1567787940000,"y":0},{"x":1567788000000,"y":0},{"x":1567788060000,"y":0},{"x":1567788120000,"y":0},{"x":1567788180000,"y":0},{"x":1567788240000,"y":0},{"x":1567788300000,"y":0},{"x":1567788360000,"y":0},{"x":1567788420000,"y":0},{"x":1567788480000,"y":0},{"x":1567788540000,"y":0.01},{"x":1567788600000,"y":0},{"x":1567788660000,"y":0},{"x":1567788720000,"y":0.01},{"x":1567788780000,"y":0.01},{"x":1567788840000,"y":0},{"x":1567788900000,"y":0},{"x":1567788960000,"y":0},{"x":1567789020000,"y":0},{"x":1567789080000,"y":0.83},{"x":1567789140000,"y":0},{"x":1567789200000,"y":0},{"x":1567789260000,"y":0.01},{"x":1567789320000,"y":1.44},{"x":1567789380000,"y":0},{"x":1567789440000,"y":0},{"x":1567789500000,"y":0},{"x":1567789560000,"y":0.01},{"x":1567789620000,"y":0},{"x":1567789680000,"y":0.01},{"x":1567789740000,"y":0.26},{"x":1567789800000,"y":0.11},{"x":1567789860000,"y":1.68},{"x":1567789920000,"y":0.03},{"x":1567789980000,"y":0.85},{"x":1567790040000,"y":0},{"x":1567790100000,"y":0},{"x":1567790160000,"y":0.03},{"x":1567790220000,"y":0},{"x":1567790280000,"y":0.8},{"x":1567790340000,"y":25.06},{"x":1567790400000,"y":23.46},{"x":1567790460000,"y":60.17},{"x":1567790520000,"y":1.53},{"x":1567790580000,"y":0.05},{"x":1567790640000,"y":0},{"x":1567790700000,"y":0},{"x":1567790760000,"y":0},{"x":1567790820000,"y":0},{"x":1567790880000,"y":0},{"x":1567790940000,"y":0},{"x":1567791000000,"y":0},{"x":1567791060000,"y":0},{"x":1567791120000,"y":0},{"x":1567791180000,"y":0.07},{"x":1567791240000,"y":0.13},{"x":1567791300000,"y":0.2},{"x":1567791360000,"y":2},{"x":1567791420000,"y":0.03},{"x":1567791480000,"y":0},{"x":1567791540000,"y":0},{"x":1567791600000,"y":0.05},{"x":1567791660000,"y":0},{"x":1567791720000,"y":0.03},{"x":1567791780000,"y":0.02},{"x":1567791840000,"y":0.03},{"x":1567791900000,"y":0.06},{"x":1567791960000,"y":0.02},{"x":1567792020000,"y":0.01},{"x":1567792080000,"y":0.02},{"x":1567792140000,"y":0},{"x":1567792200000,"y":0.01},{"x":1567792260000,"y":0.03},{"x":1567792320000,"y":0.56},{"x":1567792380000,"y":0.08},{"x":1567792440000,"y":0},{"x":1567792500000,"y":0},{"x":1567792560000,"y":0},{"x":1567792620000,"y":0},{"x":1567792680000,"y":0},{"x":1567792740000,"y":0},{"x":1567792800000,"y":0},{"x":1567792860000,"y":0},{"x":1567792920000,"y":0.52},{"x":1567792980000,"y":0},{"x":1567793040000,"y":0},{"x":1567793100000,"y":0},{"x":1567793160000,"y":0},{"x":1567793220000,"y":0},{"x":1567793280000,"y":0},{"x":1567793340000,"y":0},{"x":1567793400000,"y":0},{"x":1567793460000,"y":0},{"x":1567793520000,"y":0},{"x":1567793580000,"y":1.64},{"x":1567793640000,"y":0.01},{"x":1567793700000,"y":0},{"x":1567793760000,"y":0},{"x":1567793820000,"y":0.84},{"x":1567793880000,"y":0},{"x":1567793940000,"y":0},{"x":1567794000000,"y":0},{"x":1567794060000,"y":0},{"x":1567794120000,"y":0},{"x":1567794180000,"y":0},{"x":1567794240000,"y":0},{"x":1567794300000,"y":0.01},{"x":1567794360000,"y":0},{"x":1567794420000,"y":0},{"x":1567794480000,"y":0},{"x":1567794540000,"y":0},{"x":1567794600000,"y":0},{"x":1567794660000,"y":0},{"x":1567794720000,"y":0},{"x":1567794780000,"y":0},{"x":1567794840000,"y":0},{"x":1567794900000,"y":0},{"x":1567794960000,"y":0},{"x":1567795020000,"y":0},{"x":1567795080000,"y":0},{"x":1567795140000,"y":0},{"x":1567795200000,"y":0},{"x":1567795260000,"y":0},{"x":1567795320000,"y":0},{"x":1567795380000,"y":0},{"x":1567795440000,"y":0},{"x":1567795500000,"y":0},{"x":1567795560000,"y":0},{"x":1567795620000,"y":0},{"x":1567795680000,"y":0},{"x":1567795740000,"y":0},{"x":1567795800000,"y":0},{"x":1567795860000,"y":0},{"x":1567795920000,"y":0},{"x":1567795980000,"y":0},{"x":1567796040000,"y":0},{"x":1567796100000,"y":0},{"x":1567796160000,"y":0.02},{"x":1567796220000,"y":0},{"x":1567796280000,"y":0},{"x":1567796340000,"y":0},{"x":1567796400000,"y":0},{"x":1567796460000,"y":0},{"x":1567796520000,"y":0},{"x":1567796580000,"y":0},{"x":1567796640000,"y":0},{"x":1567796700000,"y":0},{"x":1567796760000,"y":0},{"x":1567796820000,"y":0},{"x":1567796880000,"y":0},{"x":1567796940000,"y":0},{"x":1567797000000,"y":0},{"x":1567797060000,"y":0},{"x":1567797120000,"y":0},{"x":1567797180000,"y":0},{"x":1567797240000,"y":0},{"x":1567797300000,"y":0},{"x":1567797360000,"y":0},{"x":1567797420000,"y":0},{"x":1567797480000,"y":0},{"x":1567797540000,"y":0},{"x":1567797600000,"y":0},{"x":1567797660000,"y":0},{"x":1567797720000,"y":0},{"x":1567797780000,"y":0},{"x":1567797840000,"y":0},{"x":1567797900000,"y":0},{"x":1567797960000,"y":0},{"x":1567798020000,"y":0},{"x":1567798080000,"y":1.03},{"x":1567798140000,"y":0.02},{"x":1567798200000,"y":0},{"x":1567798260000,"y":0},{"x":1567798320000,"y":0},{"x":1567798380000,"y":0},{"x":1567798440000,"y":0},{"x":1567798500000,"y":0},{"x":1567798560000,"y":0},{"x":1567798620000,"y":0},{"x":1567798680000,"y":0},{"x":1567798740000,"y":0},{"x":1567798800000,"y":0},{"x":1567798860000,"y":0.01},{"x":1567798920000,"y":0},{"x":1567798980000,"y":0},{"x":1567799040000,"y":0},{"x":1567799100000,"y":0},{"x":1567799160000,"y":0},{"x":1567799220000,"y":0},{"x":1567799280000,"y":0},{"x":1567799340000,"y":0},{"x":1567799400000,"y":0},{"x":1567799460000,"y":0},{"x":1567799520000,"y":0},{"x":1567799580000,"y":0},{"x":1567799640000,"y":0},{"x":1567799700000,"y":0},{"x":1567799760000,"y":0},{"x":1567799820000,"y":0},{"x":1567799880000,"y":0},{"x":1567799940000,"y":0},{"x":1567800000000,"y":0},{"x":1567800060000,"y":0},{"x":1567800120000,"y":0},{"x":1567800180000,"y":0.01},{"x":1567800240000,"y":2.91},{"x":1567800300000,"y":0.01},{"x":1567800360000,"y":0.12},{"x":1567800420000,"y":0.05},{"x":1567800480000,"y":0.89},{"x":1567800540000,"y":1.06},{"x":1567800600000,"y":1.04},{"x":1567800660000,"y":1.25},{"x":1567800720000,"y":1.02},{"x":1567800780000,"y":1.03},{"x":1567800840000,"y":0},{"x":1567800900000,"y":0},{"x":1567800960000,"y":0},{"x":1567801020000,"y":0},{"x":1567801080000,"y":0},{"x":1567801140000,"y":0},{"x":1567801200000,"y":0},{"x":1567801260000,"y":0},{"x":1567801320000,"y":0},{"x":1567801380000,"y":0},{"x":1567801440000,"y":0},{"x":1567801500000,"y":0},{"x":1567801560000,"y":0},{"x":1567801620000,"y":0},{"x":1567801680000,"y":1.68},{"x":1567801740000,"y":0.01},{"x":1567801800000,"y":0},{"x":1567801860000,"y":0},{"x":1567801920000,"y":0},{"x":1567801980000,"y":0},{"x":1567802040000,"y":0},{"x":1567802100000,"y":2.15},{"x":1567802160000,"y":3.4},{"x":1567802220000,"y":1.48},{"x":1567802280000,"y":0},{"x":1567802340000,"y":0},{"x":1567802400000,"y":0},{"x":1567802460000,"y":0},{"x":1567802520000,"y":0},{"x":1567802580000,"y":0},{"x":1567802640000,"y":0},{"x":1567802700000,"y":0},{"x":1567802760000,"y":0},{"x":1567802820000,"y":0},{"x":1567802880000,"y":0},{"x":1567802940000,"y":0},{"x":1567803000000,"y":0},{"x":1567803060000,"y":0},{"x":1567803120000,"y":0},{"x":1567803180000,"y":0},{"x":1567803240000,"y":0},{"x":1567803300000,"y":0},{"x":1567803360000,"y":0},{"x":1567803420000,"y":0},{"x":1567803480000,"y":0},{"x":1567803540000,"y":0},{"x":1567803600000,"y":0},{"x":1567803660000,"y":0},{"x":1567803720000,"y":0},{"x":1567803780000,"y":0},{"x":1567803840000,"y":0},{"x":1567803900000,"y":0},{"x":1567803960000,"y":0},{"x":1567804020000,"y":0},{"x":1567804080000,"y":0},{"x":1567804140000,"y":0},{"x":1567804200000,"y":0},{"x":1567804260000,"y":0},{"x":1567804320000,"y":0},{"x":1567804380000,"y":0},{"x":1567804440000,"y":0},{"x":1567804500000,"y":0},{"x":1567804560000,"y":0},{"x":1567804620000,"y":0},{"x":1567804680000,"y":0},{"x":1567804740000,"y":0},{"x":1567804800000,"y":0},{"x":1567804860000,"y":0},{"x":1567804920000,"y":0},{"x":1567804980000,"y":0},{"x":1567805040000,"y":0},{"x":1567805100000,"y":0},{"x":1567805160000,"y":0},{"x":1567805220000,"y":0},{"x":1567805280000,"y":0.01},{"x":1567805340000,"y":0},{"x":1567805400000,"y":0},{"x":1567805460000,"y":0},{"x":1567805520000,"y":0},{"x":1567805580000,"y":0},{"x":1567805640000,"y":0},{"x":1567805700000,"y":0.01},{"x":1567805760000,"y":0},{"x":1567805820000,"y":0},{"x":1567805880000,"y":0},{"x":1567805940000,"y":0.01},{"x":1567806000000,"y":0},{"x":1567806060000,"y":0},{"x":1567806120000,"y":0},{"x":1567806180000,"y":0.03},{"x":1567806240000,"y":0},{"x":1567806300000,"y":0},{"x":1567806360000,"y":0},{"x":1567806420000,"y":0},{"x":1567806480000,"y":0},{"x":1567806540000,"y":0},{"x":1567806600000,"y":0},{"x":1567806660000,"y":0},{"x":1567806720000,"y":0},{"x":1567806780000,"y":0},{"x":1567806840000,"y":0},{"x":1567806900000,"y":0},{"x":1567806960000,"y":0},{"x":1567807020000,"y":0},{"x":1567807080000,"y":0},{"x":1567807140000,"y":0},{"x":1567807200000,"y":0},{"x":1567807260000,"y":0},{"x":1567807320000,"y":0},{"x":1567807380000,"y":0},{"x":1567807440000,"y":0},{"x":1567807500000,"y":0},{"x":1567807560000,"y":0},{"x":1567807620000,"y":0},{"x":1567807680000,"y":0},{"x":1567807740000,"y":0},{"x":1567807800000,"y":0},{"x":1567807860000,"y":0},{"x":1567807920000,"y":0},{"x":1567807980000,"y":0},{"x":1567808040000,"y":0},{"x":1567808100000,"y":0},{"x":1567808160000,"y":0},{"x":1567808220000,"y":0},{"x":1567808280000,"y":0},{"x":1567808340000,"y":0},{"x":1567808400000,"y":0},{"x":1567808460000,"y":0},{"x":1567808520000,"y":0},{"x":1567808580000,"y":0},{"x":1567808640000,"y":0},{"x":1567808700000,"y":0},{"x":1567808760000,"y":1.97},{"x":1567808820000,"y":0.05},{"x":1567808880000,"y":0},{"x":1567808940000,"y":4.59},{"x":1567809000000,"y":0.03},{"x":1567809060000,"y":0},{"x":1567809120000,"y":0},{"x":1567809180000,"y":0},{"x":1567809240000,"y":0.01},{"x":1567809300000,"y":0.11},{"x":1567809360000,"y":0.19},{"x":1567809420000,"y":0.01},{"x":1567809480000,"y":0},{"x":1567809540000,"y":0},{"x":1567809600000,"y":0.01},{"x":1567809660000,"y":0.01},{"x":1567809720000,"y":0},{"x":1567809780000,"y":0.06},{"x":1567809840000,"y":0.93},{"x":1567809900000,"y":0.05},{"x":1567809960000,"y":0},{"x":1567810020000,"y":0},{"x":1567810080000,"y":0.84},{"x":1567810140000,"y":0.06},{"x":1567810200000,"y":0},{"x":1567810260000,"y":0.91},{"x":1567810320000,"y":0.91},{"x":1567810380000,"y":0.01},{"x":1567810440000,"y":0},{"x":1567810500000,"y":0},{"x":1567810560000,"y":0},{"x":1567810620000,"y":0},{"x":1567810680000,"y":0},{"x":1567810740000,"y":0},{"x":1567810800000,"y":0},{"x":1567810860000,"y":0},{"x":1567810920000,"y":0},{"x":1567810980000,"y":0},{"x":1567811040000,"y":0},{"x":1567811100000,"y":0},{"x":1567811160000,"y":0},{"x":1567811220000,"y":0},{"x":1567811280000,"y":0},{"x":1567811340000,"y":0},{"x":1567811400000,"y":0},{"x":1567811460000,"y":0},{"x":1567811520000,"y":0},{"x":1567811580000,"y":0},{"x":1567811640000,"y":0},{"x":1567811700000,"y":0},{"x":1567811760000,"y":0},{"x":1567811820000,"y":0.01},{"x":1567811880000,"y":0.76},{"x":1567811940000,"y":1.69},{"x":1567812000000,"y":0.03},{"x":1567812060000,"y":0},{"x":1567812120000,"y":0},{"x":1567812180000,"y":0},{"x":1567812240000,"y":0},{"x":1567812300000,"y":0},{"x":1567812360000,"y":0},{"x":1567812420000,"y":0},{"x":1567812480000,"y":0},{"x":1567812540000,"y":0},{"x":1567812600000,"y":0},{"x":1567812660000,"y":0},{"x":1567812720000,"y":0},{"x":1567812780000,"y":0},{"x":1567812840000,"y":0},{"x":1567812900000,"y":0},{"x":1567812960000,"y":0},{"x":1567813020000,"y":0.04},{"x":1567813080000,"y":0},{"x":1567813140000,"y":0},{"x":1567813200000,"y":0},{"x":1567813260000,"y":0},{"x":1567813320000,"y":0},{"x":1567813380000,"y":0},{"x":1567813440000,"y":0},{"x":1567813500000,"y":0},{"x":1567813560000,"y":0},{"x":1567813620000,"y":0},{"x":1567813680000,"y":0},{"x":1567813740000,"y":0},{"x":1567813800000,"y":0},{"x":1567813860000,"y":0},{"x":1567813920000,"y":0},{"x":1567813980000,"y":0},{"x":1567814040000,"y":0},{"x":1567814100000,"y":0},{"x":1567814160000,"y":0},{"x":1567814220000,"y":0},{"x":1567814280000,"y":0},{"x":1567814340000,"y":0},{"x":1567814400000,"y":0},{"x":1567814460000,"y":0},{"x":1567814520000,"y":0},{"x":1567814580000,"y":0},{"x":1567814640000,"y":0},{"x":1567814700000,"y":0},{"x":1567814760000,"y":0},{"x":1567814820000,"y":0},{"x":1567814880000,"y":0},{"x":1567814940000,"y":0},{"x":1567815000000,"y":0},{"x":1567815060000,"y":0},{"x":1567815120000,"y":0},{"x":1567815180000,"y":0},{"x":1567815240000,"y":0},{"x":1567815300000,"y":0},{"x":1567815360000,"y":0},{"x":1567815420000,"y":0},{"x":1567815480000,"y":0},{"x":1567815540000,"y":0},{"x":1567815600000,"y":0},{"x":1567815660000,"y":0},{"x":1567815720000,"y":0},{"x":1567815780000,"y":0},{"x":1567815840000,"y":0},{"x":1567815900000,"y":0},{"x":1567815960000,"y":0},{"x":1567816020000,"y":0},{"x":1567816080000,"y":0},{"x":1567816140000,"y":0},{"x":1567816200000,"y":0},{"x":1567816260000,"y":0.01},{"x":1567816320000,"y":0},{"x":1567816380000,"y":0},{"x":1567816440000,"y":0},{"x":1567816500000,"y":0},{"x":1567816560000,"y":0},{"x":1567816620000,"y":0},{"x":1567816680000,"y":0},{"x":1567816740000,"y":0},{"x":1567816800000,"y":0},{"x":1567816860000,"y":0},{"x":1567816920000,"y":0},{"x":1567816980000,"y":0},{"x":1567817040000,"y":0},{"x":1567817100000,"y":0},{"x":1567817160000,"y":0},{"x":1567817220000,"y":0},{"x":1567817280000,"y":0},{"x":1567817340000,"y":0},{"x":1567817400000,"y":0},{"x":1567817460000,"y":0},{"x":1567817520000,"y":0},{"x":1567817580000,"y":0},{"x":1567817640000,"y":0},{"x":1567817700000,"y":0},{"x":1567817760000,"y":0},{"x":1567817820000,"y":0},{"x":1567817880000,"y":0},{"x":1567817940000,"y":0},{"x":1567818000000,"y":0},{"x":1567818060000,"y":0},{"x":1567818120000,"y":0},{"x":1567818180000,"y":0},{"x":1567818240000,"y":0},{"x":1567818300000,"y":0},{"x":1567818360000,"y":0},{"x":1567818420000,"y":0},{"x":1567818480000,"y":0},{"x":1567818540000,"y":0},{"x":1567818600000,"y":0},{"x":1567818660000,"y":0},{"x":1567818720000,"y":0},{"x":1567818780000,"y":0},{"x":1567818840000,"y":0},{"x":1567818900000,"y":0},{"x":1567818960000,"y":0},{"x":1567819020000,"y":0},{"x":1567819080000,"y":0},{"x":1567819140000,"y":0},{"x":1567819200000,"y":0},{"x":1567819260000,"y":0},{"x":1567819320000,"y":0},{"x":1567819380000,"y":0},{"x":1567819440000,"y":0},{"x":1567819500000,"y":0},{"x":1567819560000,"y":0},{"x":1567819620000,"y":0},{"x":1567819680000,"y":0},{"x":1567819740000,"y":0},{"x":1567819800000,"y":0},{"x":1567819860000,"y":0},{"x":1567819920000,"y":0},{"x":1567819980000,"y":0},{"x":1567820040000,"y":0},{"x":1567820100000,"y":0},{"x":1567820160000,"y":0},{"x":1567820220000,"y":0},{"x":1567820280000,"y":0},{"x":1567820340000,"y":0},{"x":1567820400000,"y":0},{"x":1567820460000,"y":0},{"x":1567820520000,"y":0},{"x":1567820580000,"y":0},{"x":1567820640000,"y":0},{"x":1567820700000,"y":0.01},{"x":1567820760000,"y":0.01},{"x":1567820820000,"y":0},{"x":1567820880000,"y":0},{"x":1567820940000,"y":0},{"x":1567821000000,"y":0},{"x":1567821060000,"y":0},{"x":1567821120000,"y":0},{"x":1567821180000,"y":0},{"x":1567821240000,"y":0},{"x":1567821300000,"y":0},{"x":1567821360000,"y":0},{"x":1567821420000,"y":0},{"x":1567821480000,"y":0},{"x":1567821540000,"y":0},{"x":1567821600000,"y":0},{"x":1567821660000,"y":0},{"x":1567821720000,"y":0},{"x":1567821780000,"y":0},{"x":1567821840000,"y":0},{"x":1567821900000,"y":0},{"x":1567821960000,"y":0},{"x":1567822020000,"y":0},{"x":1567822080000,"y":0},{"x":1567822140000,"y":0},{"x":1567822200000,"y":0},{"x":1567822260000,"y":0},{"x":1567822320000,"y":0},{"x":1567822380000,"y":0},{"x":1567822440000,"y":0},{"x":1567822500000,"y":0},{"x":1567822560000,"y":0},{"x":1567822620000,"y":0},{"x":1567822680000,"y":0},{"x":1567822740000,"y":0},{"x":1567822800000,"y":0},{"x":1567822860000,"y":0},{"x":1567822920000,"y":0},{"x":1567822980000,"y":0},{"x":1567823040000,"y":0},{"x":1567823100000,"y":0},{"x":1567823160000,"y":0},{"x":1567823220000,"y":0},{"x":1567823280000,"y":0},{"x":1567823340000,"y":0},{"x":1567823400000,"y":0},{"x":1567823460000,"y":0},{"x":1567823520000,"y":0},{"x":1567823580000,"y":0},{"x":1567823640000,"y":0.02},{"x":1567823700000,"y":0},{"x":1567823760000,"y":0},{"x":1567823820000,"y":0},{"x":1567823880000,"y":0},{"x":1567823940000,"y":0},{"x":1567824000000,"y":0},{"x":1567824060000,"y":0},{"x":1567824120000,"y":0},{"x":1567824180000,"y":0},{"x":1567824240000,"y":0.02},{"x":1567824300000,"y":0},{"x":1567824360000,"y":0},{"x":1567824420000,"y":0},{"x":1567824480000,"y":0},{"x":1567824540000,"y":0},{"x":1567824600000,"y":0},{"x":1567824660000,"y":0},{"x":1567824720000,"y":0},{"x":1567824780000,"y":0},{"x":1567824840000,"y":0},{"x":1567824900000,"y":0},{"x":1567824960000,"y":0},{"x":1567825020000,"y":0},{"x":1567825080000,"y":0},{"x":1567825140000,"y":0},{"x":1567825200000,"y":0},{"x":1567825260000,"y":0},{"x":1567825320000,"y":0},{"x":1567825380000,"y":0},{"x":1567825440000,"y":0},{"x":1567825500000,"y":0},{"x":1567825560000,"y":0},{"x":1567825620000,"y":0},{"x":1567825680000,"y":0},{"x":1567825740000,"y":0},{"x":1567825800000,"y":0.61},{"x":1567825860000,"y":0},{"x":1567825920000,"y":0},{"x":1567825980000,"y":0},{"x":1567826040000,"y":0},{"x":1567826100000,"y":0},{"x":1567826160000,"y":0},{"x":1567826220000,"y":0},{"x":1567826280000,"y":0.01},{"x":1567826340000,"y":0.02},{"x":1567826400000,"y":0.01},{"x":1567826460000,"y":0},{"x":1567826520000,"y":0},{"x":1567826580000,"y":0},{"x":1567826640000,"y":0},{"x":1567826700000,"y":0},{"x":1567826760000,"y":0},{"x":1567826820000,"y":0},{"x":1567826880000,"y":0},{"x":1567826940000,"y":0},{"x":1567827000000,"y":0},{"x":1567827060000,"y":0},{"x":1567827120000,"y":0},{"x":1567827180000,"y":0},{"x":1567827240000,"y":0},{"x":1567827300000,"y":0},{"x":1567827360000,"y":0},{"x":1567827420000,"y":0},{"x":1567827480000,"y":0},{"x":1567827540000,"y":0},{"x":1567827600000,"y":0},{"x":1567827660000,"y":0.02},{"x":1567827720000,"y":0.01},{"x":1567827780000,"y":0},{"x":1567827840000,"y":0},{"x":1567827900000,"y":0},{"x":1567827960000,"y":0},{"x":1567828020000,"y":0},{"x":1567828080000,"y":0},{"x":1567828140000,"y":0},{"x":1567828200000,"y":0},{"x":1567828260000,"y":0},{"x":1567828320000,"y":0},{"x":1567828380000,"y":0},{"x":1567828440000,"y":0},{"x":1567828500000,"y":0},{"x":1567828560000,"y":0},{"x":1567828620000,"y":0},{"x":1567828680000,"y":0},{"x":1567828740000,"y":0},{"x":1567828800000,"y":0},{"x":1567828860000,"y":0},{"x":1567828920000,"y":0},{"x":1567828980000,"y":0},{"x":1567829040000,"y":0},{"x":1567829100000,"y":0},{"x":1567829160000,"y":0},{"x":1567829220000,"y":0},{"x":1567829280000,"y":0},{"x":1567829340000,"y":0},{"x":1567829400000,"y":0},{"x":1567829460000,"y":0},{"x":1567829520000,"y":0},{"x":1567829580000,"y":0},{"x":1567829640000,"y":0},{"x":1567829700000,"y":0},{"x":1567829760000,"y":0},{"x":1567829820000,"y":0},{"x":1567829880000,"y":0},{"x":1567829940000,"y":0},{"x":1567830000000,"y":0},{"x":1567830060000,"y":0},{"x":1567830120000,"y":0},{"x":1567830180000,"y":0},{"x":1567830240000,"y":0},{"x":1567830300000,"y":0},{"x":1567830360000,"y":0},{"x":1567830420000,"y":0},{"x":1567830480000,"y":0},{"x":1567830540000,"y":0},{"x":1567830600000,"y":0},{"x":1567830660000,"y":0},{"x":1567830720000,"y":0},{"x":1567830780000,"y":0},{"x":1567830840000,"y":0},{"x":1567830900000,"y":0},{"x":1567830960000,"y":0},{"x":1567831020000,"y":0},{"x":1567831080000,"y":0},{"x":1567831140000,"y":0},{"x":1567831200000,"y":0},{"x":1567831260000,"y":0},{"x":1567831320000,"y":0},{"x":1567831380000,"y":0},{"x":1567831440000,"y":0},{"x":1567831500000,"y":0},{"x":1567831560000,"y":0},{"x":1567831620000,"y":0},{"x":1567831680000,"y":0},{"x":1567831740000,"y":0},{"x":1567831800000,"y":0},{"x":1567831860000,"y":0},{"x":1567831920000,"y":0},{"x":1567831980000,"y":0},{"x":1567832040000,"y":0},{"x":1567832100000,"y":0},{"x":1567832160000,"y":0},{"x":1567832220000,"y":0},{"x":1567832280000,"y":0},{"x":1567832340000,"y":0},{"x":1567832400000,"y":0},{"x":1567832460000,"y":0},{"x":1567832520000,"y":0},{"x":1567832580000,"y":0},{"x":1567832640000,"y":0},{"x":1567832700000,"y":0},{"x":1567832760000,"y":0},{"x":1567832820000,"y":0},{"x":1567832880000,"y":0},{"x":1567832940000,"y":0},{"x":1567833000000,"y":0},{"x":1567833060000,"y":0},{"x":1567833120000,"y":0},{"x":1567833180000,"y":0},{"x":1567833240000,"y":0},{"x":1567833300000,"y":0},{"x":1567833360000,"y":0},{"x":1567833420000,"y":0},{"x":1567833480000,"y":0},{"x":1567833540000,"y":0},{"x":1567833600000,"y":0},{"x":1567833660000,"y":0.02},{"x":1567833720000,"y":0},{"x":1567833780000,"y":0},{"x":1567833840000,"y":0},{"x":1567833900000,"y":0},{"x":1567833960000,"y":0},{"x":1567834020000,"y":0},{"x":1567834080000,"y":0},{"x":1567834140000,"y":0},{"x":1567834200000,"y":0},{"x":1567834260000,"y":0},{"x":1567834320000,"y":0},{"x":1567834380000,"y":0},{"x":1567834440000,"y":0.01},{"x":1567834500000,"y":0},{"x":1567834560000,"y":0},{"x":1567834620000,"y":0},{"x":1567834680000,"y":0},{"x":1567834740000,"y":0},{"x":1567834800000,"y":0},{"x":1567834860000,"y":0},{"x":1567834920000,"y":0},{"x":1567834980000,"y":0},{"x":1567835040000,"y":0},{"x":1567835100000,"y":0},{"x":1567835160000,"y":0},{"x":1567835220000,"y":0},{"x":1567835280000,"y":0},{"x":1567835340000,"y":0},{"x":1567835400000,"y":0},{"x":1567835460000,"y":0},{"x":1567835520000,"y":0},{"x":1567835580000,"y":0},{"x":1567835640000,"y":0},{"x":1567835700000,"y":0},{"x":1567835760000,"y":0},{"x":1567835820000,"y":0},{"x":1567835880000,"y":0},{"x":1567835940000,"y":0},{"x":1567836000000,"y":0},{"x":1567836060000,"y":0},{"x":1567836120000,"y":0},{"x":1567836180000,"y":0},{"x":1567836240000,"y":0},{"x":1567836300000,"y":0},{"x":1567836360000,"y":0},{"x":1567836420000,"y":0},{"x":1567836480000,"y":0},{"x":1567836540000,"y":0},{"x":1567836600000,"y":0},{"x":1567836660000,"y":0},{"x":1567836720000,"y":0},{"x":1567836780000,"y":0},{"x":1567836840000,"y":0},{"x":1567836900000,"y":0},{"x":1567836960000,"y":0},{"x":1567837020000,"y":0},{"x":1567837080000,"y":0},{"x":1567837140000,"y":0},{"x":1567837200000,"y":0},{"x":1567837260000,"y":0},{"x":1567837320000,"y":0},{"x":1567837380000,"y":0},{"x":1567837440000,"y":0},{"x":1567837500000,"y":0},{"x":1567837560000,"y":0},{"x":1567837620000,"y":0},{"x":1567837680000,"y":0},{"x":1567837740000,"y":0},{"x":1567837800000,"y":0},{"x":1567837860000,"y":0},{"x":1567837920000,"y":0},{"x":1567837980000,"y":0},{"x":1567838040000,"y":0},{"x":1567838100000,"y":0.01},{"x":1567838160000,"y":0},{"x":1567838220000,"y":0},{"x":1567838280000,"y":0},{"x":1567838340000,"y":0},{"x":1567838400000,"y":0},{"x":1567838460000,"y":0},{"x":1567838520000,"y":0},{"x":1567838580000,"y":0},{"x":1567838640000,"y":0},{"x":1567838700000,"y":0},{"x":1567838760000,"y":0},{"x":1567838820000,"y":0},{"x":1567838880000,"y":0},{"x":1567838940000,"y":0},{"x":1567839000000,"y":0},{"x":1567839060000,"y":0},{"x":1567839120000,"y":0},{"x":1567839180000,"y":0},{"x":1567839240000,"y":0},{"x":1567839300000,"y":0},{"x":1567839360000,"y":0},{"x":1567839420000,"y":0},{"x":1567839480000,"y":0},{"x":1567839540000,"y":0},{"x":1567839600000,"y":0},{"x":1567839660000,"y":0},{"x":1567839720000,"y":0},{"x":1567839780000,"y":0},{"x":1567839840000,"y":0},{"x":1567839900000,"y":0},{"x":1567839960000,"y":0},{"x":1567840020000,"y":0},{"x":1567840080000,"y":0},{"x":1567840140000,"y":0},{"x":1567840200000,"y":0},{"x":1567840260000,"y":0},{"x":1567840320000,"y":0},{"x":1567840380000,"y":0},{"x":1567840440000,"y":0.01},{"x":1567840500000,"y":0},{"x":1567840560000,"y":0},{"x":1567840620000,"y":0},{"x":1567840680000,"y":0},{"x":1567840740000,"y":0},{"x":1567840800000,"y":0},{"x":1567840860000,"y":0},{"x":1567840920000,"y":0},{"x":1567840980000,"y":0},{"x":1567841040000,"y":0},{"x":1567841100000,"y":0},{"x":1567841160000,"y":0},{"x":1567841220000,"y":0},{"x":1567841280000,"y":0},{"x":1567841340000,"y":0},{"x":1567841400000,"y":0},{"x":1567841460000,"y":0},{"x":1567841520000,"y":0},{"x":1567841580000,"y":0},{"x":1567841640000,"y":0},{"x":1567841700000,"y":0},{"x":1567841760000,"y":0},{"x":1567841820000,"y":0},{"x":1567841880000,"y":0},{"x":1567841940000,"y":0},{"x":1567842000000,"y":0},{"x":1567842060000,"y":0},{"x":1567842120000,"y":0},{"x":1567842180000,"y":0},{"x":1567842240000,"y":0},{"x":1567842300000,"y":0},{"x":1567842360000,"y":0},{"x":1567842420000,"y":0},{"x":1567842480000,"y":0},{"x":1567842540000,"y":0},{"x":1567842600000,"y":0},{"x":1567842660000,"y":0},{"x":1567842720000,"y":0},{"x":1567842780000,"y":0},{"x":1567842840000,"y":0},{"x":1567842900000,"y":0},{"x":1567842960000,"y":0},{"x":1567843020000,"y":0},{"x":1567843080000,"y":0},{"x":1567843140000,"y":0},{"x":1567843200000,"y":0},{"x":1567843260000,"y":0},{"x":1567843320000,"y":0},{"x":1567843380000,"y":0},{"x":1567843440000,"y":0.01},{"x":1567843500000,"y":0},{"x":1567843560000,"y":0},{"x":1567843620000,"y":0},{"x":1567843680000,"y":0},{"x":1567843740000,"y":0},{"x":1567843800000,"y":0},{"x":1567843860000,"y":0},{"x":1567843920000,"y":0},{"x":1567843980000,"y":0},{"x":1567844040000,"y":0},{"x":1567844100000,"y":0},{"x":1567844160000,"y":0},{"x":1567844220000,"y":0},{"x":1567844280000,"y":0},{"x":1567844340000,"y":0},{"x":1567844400000,"y":0},{"x":1567844460000,"y":0},{"x":1567844520000,"y":0},{"x":1567844580000,"y":0},{"x":1567844640000,"y":0},{"x":1567844700000,"y":0},{"x":1567844760000,"y":0},{"x":1567844820000,"y":0},{"x":1567844880000,"y":0},{"x":1567844940000,"y":0},{"x":1567845000000,"y":0},{"x":1567845060000,"y":0},{"x":1567845120000,"y":0},{"x":1567845180000,"y":0},{"x":1567845240000,"y":0},{"x":1567845300000,"y":0},{"x":1567845360000,"y":0},{"x":1567845420000,"y":0},{"x":1567845480000,"y":0},{"x":1567845540000,"y":0},{"x":1567845600000,"y":0},{"x":1567845660000,"y":0},{"x":1567845720000,"y":0},{"x":1567845780000,"y":0},{"x":1567845840000,"y":0},{"x":1567845900000,"y":0},{"x":1567845960000,"y":0},{"x":1567846020000,"y":0},{"x":1567846080000,"y":0},{"x":1567846140000,"y":0},{"x":1567846200000,"y":0},{"x":1567846260000,"y":0},{"x":1567846320000,"y":0},{"x":1567846380000,"y":0},{"x":1567846440000,"y":0},{"x":1567846500000,"y":0},{"x":1567846560000,"y":0},{"x":1567846620000,"y":0},{"x":1567846680000,"y":0},{"x":1567846740000,"y":0},{"x":1567846800000,"y":0},{"x":1567846860000,"y":0},{"x":1567846920000,"y":0},{"x":1567846980000,"y":0},{"x":1567847040000,"y":0},{"x":1567847100000,"y":0},{"x":1567847160000,"y":0},{"x":1567847220000,"y":0},{"x":1567847280000,"y":0},{"x":1567847340000,"y":0},{"x":1567847400000,"y":0},{"x":1567847460000,"y":0},{"x":1567847520000,"y":0},{"x":1567847580000,"y":0},{"x":1567847640000,"y":0},{"x":1567847700000,"y":0},{"x":1567847760000,"y":0},{"x":1567847820000,"y":0},{"x":1567847880000,"y":0},{"x":1567847940000,"y":0},{"x":1567848000000,"y":0},{"x":1567848060000,"y":0},{"x":1567848120000,"y":0},{"x":1567848180000,"y":0},{"x":1567848240000,"y":0},{"x":1567848300000,"y":0},{"x":1567848360000,"y":0},{"x":1567848420000,"y":0},{"x":1567848480000,"y":0},{"x":1567848540000,"y":0},{"x":1567848600000,"y":0},{"x":1567848660000,"y":0},{"x":1567848720000,"y":0},{"x":1567848780000,"y":0},{"x":1567848840000,"y":0},{"x":1567848900000,"y":0},{"x":1567848960000,"y":0},{"x":1567849020000,"y":0},{"x":1567849080000,"y":0},{"x":1567849140000,"y":0},{"x":1567849200000,"y":0},{"x":1567849260000,"y":0},{"x":1567849320000,"y":0},{"x":1567849380000,"y":0},{"x":1567849440000,"y":0},{"x":1567849500000,"y":0},{"x":1567849560000,"y":0},{"x":1567849620000,"y":0},{"x":1567849680000,"y":0},{"x":1567849740000,"y":0},{"x":1567849800000,"y":0},{"x":1567849860000,"y":0},{"x":1567849920000,"y":0},{"x":1567849980000,"y":0},{"x":1567850040000,"y":0},{"x":1567850100000,"y":0},{"x":1567850160000,"y":0},{"x":1567850220000,"y":0},{"x":1567850280000,"y":0},{"x":1567850340000,"y":0},{"x":1567850400000,"y":0},{"x":1567850460000,"y":0},{"x":1567850520000,"y":0},{"x":1567850580000,"y":0},{"x":1567850640000,"y":0},{"x":1567850700000,"y":0.01},{"x":1567850760000,"y":0},{"x":1567850820000,"y":0},{"x":1567850880000,"y":0},{"x":1567850940000,"y":0},{"x":1567851000000,"y":0},{"x":1567851060000,"y":0},{"x":1567851120000,"y":0.02},{"x":1567851180000,"y":0},{"x":1567851240000,"y":0},{"x":1567851300000,"y":0},{"x":1567851360000,"y":0},{"x":1567851420000,"y":0},{"x":1567851480000,"y":0},{"x":1567851540000,"y":0},{"x":1567851600000,"y":0},{"x":1567851660000,"y":0},{"x":1567851720000,"y":0},{"x":1567851780000,"y":0.01},{"x":1567851840000,"y":0},{"x":1567851900000,"y":0},{"x":1567851960000,"y":0},{"x":1567852020000,"y":0},{"x":1567852080000,"y":0},{"x":1567852140000,"y":0},{"x":1567852200000,"y":0},{"x":1567852260000,"y":0},{"x":1567852320000,"y":0},{"x":1567852380000,"y":0.02},{"x":1567852440000,"y":0.03},{"x":1567852500000,"y":0.03},{"x":1567852560000,"y":0.04},{"x":1567852620000,"y":0.04},{"x":1567852680000,"y":0.03},{"x":1567852740000,"y":0},{"x":1567852800000,"y":0},{"x":1567852860000,"y":0},{"x":1567852920000,"y":0},{"x":1567852980000,"y":0},{"x":1567853040000,"y":0},{"x":1567853100000,"y":0},{"x":1567853160000,"y":0},{"x":1567853220000,"y":0},{"x":1567853280000,"y":0},{"x":1567853340000,"y":0},{"x":1567853400000,"y":0},{"x":1567853460000,"y":0},{"x":1567853520000,"y":0},{"x":1567853580000,"y":0},{"x":1567853640000,"y":0},{"x":1567853700000,"y":0},{"x":1567853760000,"y":0},{"x":1567853820000,"y":0},{"x":1567853880000,"y":0},{"x":1567853940000,"y":0},{"x":1567854000000,"y":0},{"x":1567854060000,"y":0.01},{"x":1567854120000,"y":0},{"x":1567854180000,"y":0},{"x":1567854240000,"y":0},{"x":1567854300000,"y":0},{"x":1567854360000,"y":0},{"x":1567854420000,"y":0},{"x":1567854480000,"y":0},{"x":1567854540000,"y":0},{"x":1567854600000,"y":0},{"x":1567854660000,"y":0},{"x":1567854720000,"y":0},{"x":1567854780000,"y":0},{"x":1567854840000,"y":0},{"x":1567854900000,"y":0},{"x":1567854960000,"y":0},{"x":1567855020000,"y":0},{"x":1567855080000,"y":0},{"x":1567855140000,"y":0},{"x":1567855200000,"y":0},{"x":1567855260000,"y":0},{"x":1567855320000,"y":0},{"x":1567855380000,"y":0.01},{"x":1567855440000,"y":0},{"x":1567855500000,"y":0},{"x":1567855560000,"y":0},{"x":1567855620000,"y":0},{"x":1567855680000,"y":0},{"x":1567855740000,"y":0},{"x":1567855800000,"y":0},{"x":1567855860000,"y":0},{"x":1567855920000,"y":0},{"x":1567855980000,"y":0},{"x":1567856040000,"y":0},{"x":1567856100000,"y":0},{"x":1567856160000,"y":0},{"x":1567856220000,"y":0},{"x":1567856280000,"y":0},{"x":1567856340000,"y":0},{"x":1567856400000,"y":0},{"x":1567856460000,"y":0},{"x":1567856520000,"y":0},{"x":1567856580000,"y":0},{"x":1567856640000,"y":0},{"x":1567856700000,"y":0},{"x":1567856760000,"y":0},{"x":1567856820000,"y":0},{"x":1567856880000,"y":0},{"x":1567856940000,"y":0},{"x":1567857000000,"y":0},{"x":1567857060000,"y":0},{"x":1567857120000,"y":0},{"x":1567857180000,"y":0},{"x":1567857240000,"y":0},{"x":1567857300000,"y":0},{"x":1567857360000,"y":0},{"x":1567857420000,"y":0},{"x":1567857480000,"y":0},{"x":1567857540000,"y":0},{"x":1567857600000,"y":0},{"x":1567857660000,"y":0},{"x":1567857720000,"y":0},{"x":1567857780000,"y":0},{"x":1567857840000,"y":0},{"x":1567857900000,"y":0},{"x":1567857960000,"y":0},{"x":1567858020000,"y":0},{"x":1567858080000,"y":0},{"x":1567858140000,"y":0},{"x":1567858200000,"y":0},{"x":1567858260000,"y":0},{"x":1567858320000,"y":0},{"x":1567858380000,"y":0},{"x":1567858440000,"y":0},{"x":1567858500000,"y":0},{"x":1567858560000,"y":0},{"x":1567858620000,"y":0},{"x":1567858680000,"y":0},{"x":1567858740000,"y":0},{"x":1567858800000,"y":0},{"x":1567858860000,"y":0},{"x":1567858920000,"y":0},{"x":1567858980000,"y":0},{"x":1567859040000,"y":0},{"x":1567859100000,"y":0},{"x":1567859160000,"y":0},{"x":1567859220000,"y":0},{"x":1567859280000,"y":0},{"x":1567859340000,"y":0},{"x":1567859400000,"y":0},{"x":1567859460000,"y":0},{"x":1567859520000,"y":0},{"x":1567859580000,"y":0},{"x":1567859640000,"y":0},{"x":1567859700000,"y":0},{"x":1567859760000,"y":0},{"x":1567859820000,"y":0},{"x":1567859880000,"y":0},{"x":1567859940000,"y":0},{"x":1567860000000,"y":0.01},{"x":1567860060000,"y":0},{"x":1567860120000,"y":0},{"x":1567860180000,"y":0},{"x":1567860240000,"y":0},{"x":1567860300000,"y":0},{"x":1567860360000,"y":0},{"x":1567860420000,"y":0},{"x":1567860480000,"y":0},{"x":1567860540000,"y":0},{"x":1567860600000,"y":0},{"x":1567860660000,"y":0},{"x":1567860720000,"y":0},{"x":1567860780000,"y":0},{"x":1567860840000,"y":0},{"x":1567860900000,"y":0},{"x":1567860960000,"y":0},{"x":1567861020000,"y":0},{"x":1567861080000,"y":0},{"x":1567861140000,"y":0},{"x":1567861200000,"y":0},{"x":1567861260000,"y":0},{"x":1567861320000,"y":0},{"x":1567861380000,"y":0},{"x":1567861440000,"y":0},{"x":1567861500000,"y":0},{"x":1567861560000,"y":0},{"x":1567861620000,"y":0},{"x":1567861680000,"y":0},{"x":1567861740000,"y":0},{"x":1567861800000,"y":0},{"x":1567861860000,"y":0},{"x":1567861920000,"y":0},{"x":1567861980000,"y":0},{"x":1567862040000,"y":0},{"x":1567862100000,"y":0},{"x":1567862160000,"y":0},{"x":1567862220000,"y":0},{"x":1567862280000,"y":0},{"x":1567862340000,"y":0.01},{"x":1567862400000,"y":0},{"x":1567862460000,"y":0},{"x":1567862520000,"y":0},{"x":1567862580000,"y":0},{"x":1567862640000,"y":0},{"x":1567862700000,"y":0},{"x":1567862760000,"y":0},{"x":1567862820000,"y":0},{"x":1567862880000,"y":0},{"x":1567862940000,"y":0},{"x":1567863000000,"y":0},{"x":1567863060000,"y":0},{"x":1567863120000,"y":0},{"x":1567863180000,"y":0},{"x":1567863240000,"y":0},{"x":1567863300000,"y":0},{"x":1567863360000,"y":0},{"x":1567863420000,"y":0},{"x":1567863480000,"y":0},{"x":1567863540000,"y":0},{"x":1567863600000,"y":0},{"x":1567863660000,"y":0},{"x":1567863720000,"y":0},{"x":1567863780000,"y":0},{"x":1567863840000,"y":0},{"x":1567863900000,"y":0},{"x":1567863960000,"y":0},{"x":1567864020000,"y":0},{"x":1567864080000,"y":0},{"x":1567864140000,"y":0},{"x":1567864200000,"y":0},{"x":1567864260000,"y":0},{"x":1567864320000,"y":0},{"x":1567864380000,"y":0},{"x":1567864440000,"y":0},{"x":1567864500000,"y":0},{"x":1567864560000,"y":0},{"x":1567864620000,"y":0},{"x":1567864680000,"y":0},{"x":1567864740000,"y":0},{"x":1567864800000,"y":0},{"x":1567864860000,"y":0},{"x":1567864920000,"y":0},{"x":1567864980000,"y":0},{"x":1567865040000,"y":0},{"x":1567865100000,"y":0},{"x":1567865160000,"y":0},{"x":1567865220000,"y":0},{"x":1567865280000,"y":0},{"x":1567865340000,"y":0},{"x":1567865400000,"y":0},{"x":1567865460000,"y":0},{"x":1567865520000,"y":0},{"x":1567865580000,"y":0},{"x":1567865640000,"y":0},{"x":1567865700000,"y":0},{"x":1567865760000,"y":0},{"x":1567865820000,"y":0},{"x":1567865880000,"y":0},{"x":1567865940000,"y":0},{"x":1567866000000,"y":0},{"x":1567866060000,"y":0},{"x":1567866120000,"y":0},{"x":1567866180000,"y":0},{"x":1567866240000,"y":0},{"x":1567866300000,"y":0},{"x":1567866360000,"y":0},{"x":1567866420000,"y":0},{"x":1567866480000,"y":0},{"x":1567866540000,"y":0},{"x":1567866600000,"y":0.02},{"x":1567866660000,"y":0},{"x":1567866720000,"y":0},{"x":1567866780000,"y":0},{"x":1567866840000,"y":0},{"x":1567866900000,"y":0},{"x":1567866960000,"y":0},{"x":1567867020000,"y":0},{"x":1567867080000,"y":0.81},{"x":1567867140000,"y":0},{"x":1567867200000,"y":0},{"x":1567867260000,"y":0},{"x":1567867320000,"y":0},{"x":1567867380000,"y":0},{"x":1567867440000,"y":0},{"x":1567867500000,"y":0},{"x":1567867560000,"y":0},{"x":1567867620000,"y":0},{"x":1567867680000,"y":0},{"x":1567867740000,"y":0},{"x":1567867800000,"y":0},{"x":1567867860000,"y":0},{"x":1567867920000,"y":0},{"x":1567867980000,"y":0},{"x":1567868040000,"y":0},{"x":1567868100000,"y":0},{"x":1567868160000,"y":0},{"x":1567868220000,"y":0},{"x":1567868280000,"y":0},{"x":1567868340000,"y":0},{"x":1567868400000,"y":0},{"x":1567868460000,"y":0},{"x":1567868520000,"y":0},{"x":1567868580000,"y":0},{"x":1567868640000,"y":0},{"x":1567868700000,"y":0},{"x":1567868760000,"y":0},{"x":1567868820000,"y":0},{"x":1567868880000,"y":0},{"x":1567868940000,"y":0},{"x":1567869000000,"y":0},{"x":1567869060000,"y":0},{"x":1567869120000,"y":0},{"x":1567869180000,"y":0},{"x":1567869240000,"y":0},{"x":1567869300000,"y":0},{"x":1567869360000,"y":0},{"x":1567869420000,"y":0},{"x":1567869480000,"y":0},{"x":1567869540000,"y":0},{"x":1567869600000,"y":0},{"x":1567869660000,"y":0},{"x":1567869720000,"y":0},{"x":1567869780000,"y":0},{"x":1567869840000,"y":0},{"x":1567869900000,"y":0},{"x":1567869960000,"y":0},{"x":1567870020000,"y":0},{"x":1567870080000,"y":0},{"x":1567870140000,"y":0},{"x":1567870200000,"y":0},{"x":1567870260000,"y":0},{"x":1567870320000,"y":0},{"x":1567870380000,"y":0},{"x":1567870440000,"y":0},{"x":1567870500000,"y":0},{"x":1567870560000,"y":0},{"x":1567870620000,"y":0},{"x":1567870680000,"y":0},{"x":1567870740000,"y":0},{"x":1567870800000,"y":0},{"x":1567870860000,"y":0},{"x":1567870920000,"y":0},{"x":1567870980000,"y":0},{"x":1567871040000,"y":0},{"x":1567871100000,"y":0},{"x":1567871160000,"y":0},{"x":1567871220000,"y":0},{"x":1567871280000,"y":0},{"x":1567871340000,"y":0},{"x":1567871400000,"y":0},{"x":1567871460000,"y":0},{"x":1567871520000,"y":0},{"x":1567871580000,"y":0},{"x":1567871640000,"y":0},{"x":1567871700000,"y":0},{"x":1567871760000,"y":0},{"x":1567871820000,"y":0},{"x":1567871880000,"y":0},{"x":1567871940000,"y":0},{"x":1567872000000,"y":0},{"x":1567872060000,"y":0},{"x":1567872120000,"y":0},{"x":1567872180000,"y":0},{"x":1567872240000,"y":0},{"x":1567872300000,"y":0},{"x":1567872360000,"y":0},{"x":1567872420000,"y":0},{"x":1567872480000,"y":0},{"x":1567872540000,"y":0},{"x":1567872600000,"y":0},{"x":1567872660000,"y":0},{"x":1567872720000,"y":0},{"x":1567872780000,"y":0},{"x":1567872840000,"y":0},{"x":1567872900000,"y":0},{"x":1567872960000,"y":0},{"x":1567873020000,"y":0},{"x":1567873080000,"y":0},{"x":1567873140000,"y":0},{"x":1567873200000,"y":0},{"x":1567873260000,"y":0},{"x":1567873320000,"y":0},{"x":1567873380000,"y":0},{"x":1567873440000,"y":0},{"x":1567873500000,"y":0},{"x":1567873560000,"y":0},{"x":1567873620000,"y":0},{"x":1567873680000,"y":0},{"x":1567873740000,"y":0},{"x":1567873800000,"y":0},{"x":1567873860000,"y":0},{"x":1567873920000,"y":0},{"x":1567873980000,"y":0},{"x":1567874040000,"y":0},{"x":1567874100000,"y":0},{"x":1567874160000,"y":0},{"x":1567874220000,"y":0},{"x":1567874280000,"y":0},{"x":1567874340000,"y":0},{"x":1567874400000,"y":0},{"x":1567874460000,"y":0},{"x":1567874520000,"y":0},{"x":1567874580000,"y":0},{"x":1567874640000,"y":0},{"x":1567874700000,"y":0},{"x":1567874760000,"y":0},{"x":1567874820000,"y":0},{"x":1567874880000,"y":0},{"x":1567874940000,"y":0},{"x":1567875000000,"y":0},{"x":1567875060000,"y":0},{"x":1567875120000,"y":0},{"x":1567875180000,"y":0},{"x":1567875240000,"y":0},{"x":1567875300000,"y":0},{"x":1567875360000,"y":0},{"x":1567875420000,"y":0},{"x":1567875480000,"y":0},{"x":1567875540000,"y":0},{"x":1567875600000,"y":0},{"x":1567875660000,"y":0},{"x":1567875720000,"y":0},{"x":1567875780000,"y":0},{"x":1567875840000,"y":0},{"x":1567875900000,"y":0},{"x":1567875960000,"y":0},{"x":1567876020000,"y":0},{"x":1567876080000,"y":0},{"x":1567876140000,"y":0},{"x":1567876200000,"y":0},{"x":1567876260000,"y":0},{"x":1567876320000,"y":0},{"x":1567876380000,"y":0},{"x":1567876440000,"y":0},{"x":1567876500000,"y":0},{"x":1567876560000,"y":0},{"x":1567876620000,"y":0},{"x":1567876680000,"y":0},{"x":1567876740000,"y":0},{"x":1567876800000,"y":0},{"x":1567876860000,"y":0},{"x":1567876920000,"y":0},{"x":1567876980000,"y":0},{"x":1567877040000,"y":0},{"x":1567877100000,"y":0},{"x":1567877160000,"y":0},{"x":1567877220000,"y":0},{"x":1567877280000,"y":0},{"x":1567877340000,"y":0},{"x":1567877400000,"y":0},{"x":1567877460000,"y":0},{"x":1567877520000,"y":0},{"x":1567877580000,"y":0},{"x":1567877640000,"y":0},{"x":1567877700000,"y":0},{"x":1567877760000,"y":0},{"x":1567877820000,"y":0},{"x":1567877880000,"y":0},{"x":1567877940000,"y":0},{"x":1567878000000,"y":0},{"x":1567878060000,"y":0},{"x":1567878120000,"y":0},{"x":1567878180000,"y":0},{"x":1567878240000,"y":0},{"x":1567878300000,"y":0},{"x":1567878360000,"y":0},{"x":1567878420000,"y":0},{"x":1567878480000,"y":0},{"x":1567878540000,"y":0},{"x":1567878600000,"y":0},{"x":1567878660000,"y":0},{"x":1567878720000,"y":0},{"x":1567878780000,"y":0},{"x":1567878840000,"y":0},{"x":1567878900000,"y":0},{"x":1567878960000,"y":0},{"x":1567879020000,"y":0},{"x":1567879080000,"y":0},{"x":1567879140000,"y":0},{"x":1567879200000,"y":0},{"x":1567879260000,"y":0},{"x":1567879320000,"y":0},{"x":1567879380000,"y":0},{"x":1567879440000,"y":0},{"x":1567879500000,"y":0},{"x":1567879560000,"y":0},{"x":1567879620000,"y":0},{"x":1567879680000,"y":0},{"x":1567879740000,"y":0},{"x":1567879800000,"y":0},{"x":1567879860000,"y":0},{"x":1567879920000,"y":0},{"x":1567879980000,"y":0},{"x":1567880040000,"y":0},{"x":1567880100000,"y":0},{"x":1567880160000,"y":0},{"x":1567880220000,"y":0},{"x":1567880280000,"y":0},{"x":1567880340000,"y":0},{"x":1567880400000,"y":0},{"x":1567880460000,"y":0},{"x":1567880520000,"y":0},{"x":1567880580000,"y":0},{"x":1567880640000,"y":0},{"x":1567880700000,"y":0},{"x":1567880760000,"y":0},{"x":1567880820000,"y":0},{"x":1567880880000,"y":0},{"x":1567880940000,"y":0},{"x":1567881000000,"y":0},{"x":1567881060000,"y":0},{"x":1567881120000,"y":0},{"x":1567881180000,"y":0},{"x":1567881240000,"y":0},{"x":1567881300000,"y":0},{"x":1567881360000,"y":0},{"x":1567881420000,"y":0},{"x":1567881480000,"y":0},{"x":1567881540000,"y":0},{"x":1567881600000,"y":0},{"x":1567881660000,"y":0},{"x":1567881720000,"y":0},{"x":1567881780000,"y":0},{"x":1567881840000,"y":0},{"x":1567881900000,"y":0.01},{"x":1567881960000,"y":0},{"x":1567882020000,"y":0},{"x":1567882080000,"y":0},{"x":1567882140000,"y":0},{"x":1567882200000,"y":0},{"x":1567882260000,"y":0},{"x":1567882320000,"y":0},{"x":1567882380000,"y":0},{"x":1567882440000,"y":0},{"x":1567882500000,"y":0.01},{"x":1567882560000,"y":0},{"x":1567882620000,"y":0},{"x":1567882680000,"y":0},{"x":1567882740000,"y":0},{"x":1567882800000,"y":0},{"x":1567882860000,"y":0},{"x":1567882920000,"y":0},{"x":1567882980000,"y":0},{"x":1567883040000,"y":0},{"x":1567883100000,"y":0},{"x":1567883160000,"y":0},{"x":1567883220000,"y":0},{"x":1567883280000,"y":0},{"x":1567883340000,"y":0},{"x":1567883400000,"y":0},{"x":1567883460000,"y":0},{"x":1567883520000,"y":0},{"x":1567883580000,"y":0},{"x":1567883640000,"y":0},{"x":1567883700000,"y":0},{"x":1567883760000,"y":0},{"x":1567883820000,"y":0},{"x":1567883880000,"y":0},{"x":1567883940000,"y":0},{"x":1567884000000,"y":0},{"x":1567884060000,"y":0},{"x":1567884120000,"y":0},{"x":1567884180000,"y":0},{"x":1567884240000,"y":0},{"x":1567884300000,"y":0.02},{"x":1567884360000,"y":0},{"x":1567884420000,"y":0},{"x":1567884480000,"y":0},{"x":1567884540000,"y":0},{"x":1567884600000,"y":0},{"x":1567884660000,"y":0},{"x":1567884720000,"y":0},{"x":1567884780000,"y":0},{"x":1567884840000,"y":0},{"x":1567884900000,"y":0},{"x":1567884960000,"y":0},{"x":1567885020000,"y":0},{"x":1567885080000,"y":0},{"x":1567885140000,"y":0},{"x":1567885200000,"y":0},{"x":1567885260000,"y":0},{"x":1567885320000,"y":0.01},{"x":1567885380000,"y":0},{"x":1567885440000,"y":0},{"x":1567885500000,"y":0},{"x":1567885560000,"y":0},{"x":1567885620000,"y":0},{"x":1567885680000,"y":0},{"x":1567885740000,"y":0},{"x":1567885800000,"y":0},{"x":1567885860000,"y":0},{"x":1567885920000,"y":0},{"x":1567885980000,"y":0},{"x":1567886040000,"y":0},{"x":1567886100000,"y":0},{"x":1567886160000,"y":0},{"x":1567886220000,"y":0},{"x":1567886280000,"y":0},{"x":1567886340000,"y":0},{"x":1567886400000,"y":0},{"x":1567886460000,"y":0},{"x":1567886520000,"y":0},{"x":1567886580000,"y":0},{"x":1567886640000,"y":0},{"x":1567886700000,"y":0},{"x":1567886760000,"y":0},{"x":1567886820000,"y":0},{"x":1567886880000,"y":0},{"x":1567886940000,"y":0},{"x":1567887000000,"y":0},{"x":1567887060000,"y":0},{"x":1567887120000,"y":0},{"x":1567887180000,"y":0},{"x":1567887240000,"y":0},{"x":1567887300000,"y":0},{"x":1567887360000,"y":0},{"x":1567887420000,"y":0},{"x":1567887480000,"y":0},{"x":1567887540000,"y":0},{"x":1567887600000,"y":0},{"x":1567887660000,"y":0},{"x":1567887720000,"y":0},{"x":1567887780000,"y":0},{"x":1567887840000,"y":0},{"x":1567887900000,"y":0},{"x":1567887960000,"y":0},{"x":1567888020000,"y":0},{"x":1567888080000,"y":0},{"x":1567888140000,"y":0},{"x":1567888200000,"y":0},{"x":1567888260000,"y":0},{"x":1567888320000,"y":0},{"x":1567888380000,"y":0},{"x":1567888440000,"y":0},{"x":1567888500000,"y":0},{"x":1567888560000,"y":0},{"x":1567888620000,"y":0},{"x":1567888680000,"y":0},{"x":1567888740000,"y":0},{"x":1567888800000,"y":0},{"x":1567888860000,"y":0},{"x":1567888920000,"y":0},{"x":1567888980000,"y":0},{"x":1567889040000,"y":0},{"x":1567889100000,"y":0},{"x":1567889160000,"y":0},{"x":1567889220000,"y":0},{"x":1567889280000,"y":0},{"x":1567889340000,"y":0},{"x":1567889400000,"y":0},{"x":1567889460000,"y":0},{"x":1567889520000,"y":0},{"x":1567889580000,"y":0},{"x":1567889640000,"y":0},{"x":1567889700000,"y":0},{"x":1567889760000,"y":0},{"x":1567889820000,"y":0},{"x":1567889880000,"y":0},{"x":1567889940000,"y":0},{"x":1567890000000,"y":0},{"x":1567890060000,"y":0},{"x":1567890120000,"y":0},{"x":1567890180000,"y":0},{"x":1567890240000,"y":0},{"x":1567890300000,"y":0},{"x":1567890360000,"y":0},{"x":1567890420000,"y":0},{"x":1567890480000,"y":0},{"x":1567890540000,"y":0},{"x":1567890600000,"y":0},{"x":1567890660000,"y":0.01},{"x":1567890720000,"y":0},{"x":1567890780000,"y":0},{"x":1567890840000,"y":0},{"x":1567890900000,"y":0},{"x":1567890960000,"y":0},{"x":1567891020000,"y":0},{"x":1567891080000,"y":0},{"x":1567891140000,"y":0},{"x":1567891200000,"y":0},{"x":1567891260000,"y":0},{"x":1567891320000,"y":0},{"x":1567891380000,"y":0},{"x":1567891440000,"y":0},{"x":1567891500000,"y":0},{"x":1567891560000,"y":0},{"x":1567891620000,"y":0},{"x":1567891680000,"y":0},{"x":1567891740000,"y":0},{"x":1567891800000,"y":0},{"x":1567891860000,"y":0},{"x":1567891920000,"y":0},{"x":1567891980000,"y":0},{"x":1567892040000,"y":0},{"x":1567892100000,"y":0},{"x":1567892160000,"y":0},{"x":1567892220000,"y":0},{"x":1567892280000,"y":0},{"x":1567892340000,"y":0},{"x":1567892400000,"y":0},{"x":1567892460000,"y":0},{"x":1567892520000,"y":0},{"x":1567892580000,"y":0},{"x":1567892640000,"y":0},{"x":1567892700000,"y":0},{"x":1567892760000,"y":0},{"x":1567892820000,"y":0},{"x":1567892880000,"y":0},{"x":1567892940000,"y":0},{"x":1567893000000,"y":0},{"x":1567893060000,"y":0},{"x":1567893120000,"y":0},{"x":1567893180000,"y":0},{"x":1567893240000,"y":0},{"x":1567893300000,"y":0},{"x":1567893360000,"y":0},{"x":1567893420000,"y":0},{"x":1567893480000,"y":0},{"x":1567893540000,"y":0},{"x":1567893600000,"y":0.04},{"x":1567893660000,"y":0.06},{"x":1567893720000,"y":0},{"x":1567893780000,"y":0},{"x":1567893840000,"y":0},{"x":1567893900000,"y":0},{"x":1567893960000,"y":0},{"x":1567894020000,"y":0},{"x":1567894080000,"y":0},{"x":1567894140000,"y":0.01},{"x":1567894200000,"y":0},{"x":1567894260000,"y":0},{"x":1567894320000,"y":0},{"x":1567894380000,"y":0},{"x":1567894440000,"y":0},{"x":1567894500000,"y":0},{"x":1567894560000,"y":0},{"x":1567894620000,"y":0},{"x":1567894680000,"y":0},{"x":1567894740000,"y":0},{"x":1567894800000,"y":0},{"x":1567894860000,"y":0},{"x":1567894920000,"y":0},{"x":1567894980000,"y":0},{"x":1567895040000,"y":0},{"x":1567895100000,"y":0},{"x":1567895160000,"y":0},{"x":1567895220000,"y":0},{"x":1567895280000,"y":0},{"x":1567895340000,"y":0},{"x":1567895400000,"y":0},{"x":1567895460000,"y":0},{"x":1567895520000,"y":0},{"x":1567895580000,"y":0},{"x":1567895640000,"y":0},{"x":1567895700000,"y":0},{"x":1567895760000,"y":0},{"x":1567895820000,"y":0},{"x":1567895880000,"y":0},{"x":1567895940000,"y":0.01},{"x":1567896000000,"y":0},{"x":1567896060000,"y":0},{"x":1567896120000,"y":0},{"x":1567896180000,"y":0},{"x":1567896240000,"y":0},{"x":1567896300000,"y":0},{"x":1567896360000,"y":0},{"x":1567896420000,"y":0},{"x":1567896480000,"y":0},{"x":1567896540000,"y":0},{"x":1567896600000,"y":0},{"x":1567896660000,"y":0},{"x":1567896720000,"y":0},{"x":1567896780000,"y":0},{"x":1567896840000,"y":0},{"x":1567896900000,"y":0},{"x":1567896960000,"y":0},{"x":1567897020000,"y":0},{"x":1567897080000,"y":0},{"x":1567897140000,"y":0},{"x":1567897200000,"y":0},{"x":1567897260000,"y":0},{"x":1567897320000,"y":0},{"x":1567897380000,"y":0},{"x":1567897440000,"y":0},{"x":1567897500000,"y":0},{"x":1567897560000,"y":0},{"x":1567897620000,"y":0},{"x":1567897680000,"y":0},{"x":1567897740000,"y":0},{"x":1567897800000,"y":0},{"x":1567897860000,"y":0},{"x":1567897920000,"y":0},{"x":1567897980000,"y":0},{"x":1567898040000,"y":0},{"x":1567898100000,"y":0},{"x":1567898160000,"y":0},{"x":1567898220000,"y":0},{"x":1567898280000,"y":0},{"x":1567898340000,"y":0},{"x":1567898400000,"y":0},{"x":1567898460000,"y":0},{"x":1567898520000,"y":0},{"x":1567898580000,"y":0},{"x":1567898640000,"y":0},{"x":1567898700000,"y":0},{"x":1567898760000,"y":0},{"x":1567898820000,"y":0},{"x":1567898880000,"y":0},{"x":1567898940000,"y":0},{"x":1567899000000,"y":0},{"x":1567899060000,"y":0},{"x":1567899120000,"y":0},{"x":1567899180000,"y":0},{"x":1567899240000,"y":0},{"x":1567899300000,"y":0},{"x":1567899360000,"y":0},{"x":1567899420000,"y":0},{"x":1567899480000,"y":0},{"x":1567899540000,"y":0},{"x":1567899600000,"y":0.04},{"x":1567899660000,"y":0},{"x":1567899720000,"y":0},{"x":1567899780000,"y":0},{"x":1567899840000,"y":0},{"x":1567899900000,"y":0},{"x":1567899960000,"y":0},{"x":1567900020000,"y":0},{"x":1567900080000,"y":0},{"x":1567900140000,"y":0},{"x":1567900200000,"y":0.06},{"x":1567900260000,"y":0},{"x":1567900320000,"y":0},{"x":1567900380000,"y":0},{"x":1567900440000,"y":0},{"x":1567900500000,"y":0},{"x":1567900560000,"y":0},{"x":1567900620000,"y":0},{"x":1567900680000,"y":0},{"x":1567900740000,"y":0},{"x":1567900800000,"y":0},{"x":1567900860000,"y":0},{"x":1567900920000,"y":0},{"x":1567900980000,"y":0},{"x":1567901040000,"y":0},{"x":1567901100000,"y":0},{"x":1567901160000,"y":0},{"x":1567901220000,"y":0},{"x":1567901280000,"y":0},{"x":1567901340000,"y":0.01},{"x":1567901400000,"y":0},{"x":1567901460000,"y":0},{"x":1567901520000,"y":0},{"x":1567901580000,"y":0},{"x":1567901640000,"y":0},{"x":1567901700000,"y":0},{"x":1567901760000,"y":0},{"x":1567901820000,"y":0},{"x":1567901880000,"y":0},{"x":1567901940000,"y":0},{"x":1567902000000,"y":0},{"x":1567902060000,"y":0},{"x":1567902120000,"y":0},{"x":1567902180000,"y":0},{"x":1567902240000,"y":0},{"x":1567902300000,"y":0},{"x":1567902360000,"y":0},{"x":1567902420000,"y":0},{"x":1567902480000,"y":0},{"x":1567902540000,"y":0},{"x":1567902600000,"y":0},{"x":1567902660000,"y":0},{"x":1567902720000,"y":0},{"x":1567902780000,"y":0},{"x":1567902840000,"y":0},{"x":1567902900000,"y":0},{"x":1567902960000,"y":0},{"x":1567903020000,"y":0},{"x":1567903080000,"y":0},{"x":1567903140000,"y":0},{"x":1567903200000,"y":0.01},{"x":1567903260000,"y":0},{"x":1567903320000,"y":0},{"x":1567903380000,"y":0},{"x":1567903440000,"y":0},{"x":1567903500000,"y":0},{"x":1567903560000,"y":0},{"x":1567903620000,"y":0},{"x":1567903680000,"y":0},{"x":1567903740000,"y":0},{"x":1567903800000,"y":0.01},{"x":1567903860000,"y":0},{"x":1567903920000,"y":0},{"x":1567903980000,"y":0},{"x":1567904040000,"y":0},{"x":1567904100000,"y":0},{"x":1567904160000,"y":0},{"x":1567904220000,"y":0},{"x":1567904280000,"y":0},{"x":1567904340000,"y":0},{"x":1567904400000,"y":0},{"x":1567904460000,"y":0},{"x":1567904520000,"y":0},{"x":1567904580000,"y":0},{"x":1567904640000,"y":0},{"x":1567904700000,"y":0},{"x":1567904760000,"y":0},{"x":1567904820000,"y":0},{"x":1567904880000,"y":0},{"x":1567904940000,"y":0.01},{"x":1567905000000,"y":0},{"x":1567905060000,"y":0},{"x":1567905120000,"y":0},{"x":1567905180000,"y":0},{"x":1567905240000,"y":0},{"x":1567905300000,"y":0},{"x":1567905360000,"y":0},{"x":1567905420000,"y":0},{"x":1567905480000,"y":0},{"x":1567905540000,"y":0},{"x":1567905600000,"y":0},{"x":1567905660000,"y":0},{"x":1567905720000,"y":0},{"x":1567905780000,"y":0},{"x":1567905840000,"y":0},{"x":1567905900000,"y":0},{"x":1567905960000,"y":0},{"x":1567906020000,"y":0},{"x":1567906080000,"y":0},{"x":1567906140000,"y":0},{"x":1567906200000,"y":0},{"x":1567906260000,"y":0},{"x":1567906320000,"y":0},{"x":1567906380000,"y":0},{"x":1567906440000,"y":0},{"x":1567906500000,"y":0},{"x":1567906560000,"y":0},{"x":1567906620000,"y":0},{"x":1567906680000,"y":0},{"x":1567906740000,"y":0},{"x":1567906800000,"y":0.01},{"x":1567906860000,"y":0},{"x":1567906920000,"y":0},{"x":1567906980000,"y":0},{"x":1567907040000,"y":0},{"x":1567907100000,"y":0},{"x":1567907160000,"y":0},{"x":1567907220000,"y":0},{"x":1567907280000,"y":0},{"x":1567907340000,"y":0},{"x":1567907400000,"y":0},{"x":1567907460000,"y":0},{"x":1567907520000,"y":0},{"x":1567907580000,"y":0},{"x":1567907640000,"y":0},{"x":1567907700000,"y":0},{"x":1567907760000,"y":0},{"x":1567907820000,"y":0},{"x":1567907880000,"y":0},{"x":1567907940000,"y":0},{"x":1567908000000,"y":0},{"x":1567908060000,"y":0},{"x":1567908120000,"y":0},{"x":1567908180000,"y":0},{"x":1567908240000,"y":0},{"x":1567908300000,"y":0},{"x":1567908360000,"y":0},{"x":1567908420000,"y":0},{"x":1567908480000,"y":0},{"x":1567908540000,"y":0.01},{"x":1567908600000,"y":0},{"x":1567908660000,"y":0},{"x":1567908720000,"y":0},{"x":1567908780000,"y":0},{"x":1567908840000,"y":0},{"x":1567908900000,"y":0},{"x":1567908960000,"y":0},{"x":1567909020000,"y":0},{"x":1567909080000,"y":0},{"x":1567909140000,"y":0},{"x":1567909200000,"y":0},{"x":1567909260000,"y":0},{"x":1567909320000,"y":0},{"x":1567909380000,"y":0},{"x":1567909440000,"y":0},{"x":1567909500000,"y":0},{"x":1567909560000,"y":0},{"x":1567909620000,"y":0},{"x":1567909680000,"y":0},{"x":1567909740000,"y":0},{"x":1567909800000,"y":0},{"x":1567909860000,"y":0},{"x":1567909920000,"y":0},{"x":1567909980000,"y":1.49},{"x":1567910040000,"y":1.03},{"x":1567910100000,"y":0.58},{"x":1567910160000,"y":1.94},{"x":1567910220000,"y":0.67},{"x":1567910280000,"y":0},{"x":1567910340000,"y":0},{"x":1567910400000,"y":0.01},{"x":1567910460000,"y":0},{"x":1567910520000,"y":0},{"x":1567910580000,"y":0},{"x":1567910640000,"y":0},{"x":1567910700000,"y":0},{"x":1567910760000,"y":0},{"x":1567910820000,"y":0},{"x":1567910880000,"y":0},{"x":1567910940000,"y":0},{"x":1567911000000,"y":0},{"x":1567911060000,"y":0},{"x":1567911120000,"y":0},{"x":1567911180000,"y":0},{"x":1567911240000,"y":0},{"x":1567911300000,"y":0},{"x":1567911360000,"y":0},{"x":1567911420000,"y":0},{"x":1567911480000,"y":0},{"x":1567911540000,"y":0},{"x":1567911600000,"y":0},{"x":1567911660000,"y":0},{"x":1567911720000,"y":0},{"x":1567911780000,"y":0},{"x":1567911840000,"y":0},{"x":1567911900000,"y":0},{"x":1567911960000,"y":0},{"x":1567912020000,"y":0},{"x":1567912080000,"y":0},{"x":1567912140000,"y":0.01},{"x":1567912200000,"y":0},{"x":1567912260000,"y":0},{"x":1567912320000,"y":0},{"x":1567912380000,"y":0},{"x":1567912440000,"y":0},{"x":1567912500000,"y":0},{"x":1567912560000,"y":0},{"x":1567912620000,"y":0},{"x":1567912680000,"y":0},{"x":1567912740000,"y":0},{"x":1567912800000,"y":0},{"x":1567912860000,"y":0},{"x":1567912920000,"y":0},{"x":1567912980000,"y":0},{"x":1567913040000,"y":0},{"x":1567913100000,"y":0},{"x":1567913160000,"y":0},{"x":1567913220000,"y":0},{"x":1567913280000,"y":0},{"x":1567913340000,"y":0},{"x":1567913400000,"y":0},{"x":1567913460000,"y":0},{"x":1567913520000,"y":0},{"x":1567913580000,"y":0},{"x":1567913640000,"y":0},{"x":1567913700000,"y":0},{"x":1567913760000,"y":0},{"x":1567913820000,"y":0},{"x":1567913880000,"y":0},{"x":1567913940000,"y":0},{"x":1567914000000,"y":0.01},{"x":1567914060000,"y":0},{"x":1567914120000,"y":0},{"x":1567914180000,"y":0},{"x":1567914240000,"y":0},{"x":1567914300000,"y":0},{"x":1567914360000,"y":0},{"x":1567914420000,"y":0},{"x":1567914480000,"y":0},{"x":1567914540000,"y":0},{"x":1567914600000,"y":0},{"x":1567914660000,"y":0},{"x":1567914720000,"y":0},{"x":1567914780000,"y":0},{"x":1567914840000,"y":0},{"x":1567914900000,"y":0},{"x":1567914960000,"y":0},{"x":1567915020000,"y":0},{"x":1567915080000,"y":0},{"x":1567915140000,"y":0},{"x":1567915200000,"y":0},{"x":1567915260000,"y":0},{"x":1567915320000,"y":0},{"x":1567915380000,"y":0},{"x":1567915440000,"y":0},{"x":1567915500000,"y":0},{"x":1567915560000,"y":0},{"x":1567915620000,"y":0},{"x":1567915680000,"y":0},{"x":1567915740000,"y":0.01},{"x":1567915800000,"y":0},{"x":1567915860000,"y":0},{"x":1567915920000,"y":0},{"x":1567915980000,"y":0},{"x":1567916040000,"y":0},{"x":1567916100000,"y":0},{"x":1567916160000,"y":0},{"x":1567916220000,"y":0},{"x":1567916280000,"y":0},{"x":1567916340000,"y":0},{"x":1567916400000,"y":0},{"x":1567916460000,"y":0},{"x":1567916520000,"y":0},{"x":1567916580000,"y":0},{"x":1567916640000,"y":0},{"x":1567916700000,"y":0},{"x":1567916760000,"y":0},{"x":1567916820000,"y":0},{"x":1567916880000,"y":0},{"x":1567916940000,"y":0},{"x":1567917000000,"y":0},{"x":1567917060000,"y":0},{"x":1567917120000,"y":0},{"x":1567917180000,"y":0},{"x":1567917240000,"y":0},{"x":1567917300000,"y":0},{"x":1567917360000,"y":0},{"x":1567917420000,"y":0},{"x":1567917480000,"y":0},{"x":1567917540000,"y":0},{"x":1567917600000,"y":0.01},{"x":1567917660000,"y":0},{"x":1567917720000,"y":0},{"x":1567917780000,"y":0},{"x":1567917840000,"y":0},{"x":1567917900000,"y":0},{"x":1567917960000,"y":0},{"x":1567918020000,"y":0},{"x":1567918080000,"y":0},{"x":1567918140000,"y":0},{"x":1567918200000,"y":0},{"x":1567918260000,"y":0},{"x":1567918320000,"y":0},{"x":1567918380000,"y":0},{"x":1567918440000,"y":0},{"x":1567918500000,"y":0},{"x":1567918560000,"y":0},{"x":1567918620000,"y":0},{"x":1567918680000,"y":0},{"x":1567918740000,"y":0},{"x":1567918800000,"y":0},{"x":1567918860000,"y":0},{"x":1567918920000,"y":0},{"x":1567918980000,"y":0},{"x":1567919040000,"y":0},{"x":1567919100000,"y":0},{"x":1567919160000,"y":0},{"x":1567919220000,"y":0.01},{"x":1567919280000,"y":0},{"x":1567919340000,"y":0.01},{"x":1567919400000,"y":0},{"x":1567919460000,"y":0},{"x":1567919520000,"y":0},{"x":1567919580000,"y":0},{"x":1567919640000,"y":0},{"x":1567919700000,"y":0},{"x":1567919760000,"y":0},{"x":1567919820000,"y":0},{"x":1567919880000,"y":0.01},{"x":1567919940000,"y":0},{"x":1567920000000,"y":0},{"x":1567920060000,"y":0},{"x":1567920120000,"y":0},{"x":1567920180000,"y":0},{"x":1567920240000,"y":0},{"x":1567920300000,"y":0},{"x":1567920360000,"y":0},{"x":1567920420000,"y":0},{"x":1567920480000,"y":0},{"x":1567920540000,"y":0},{"x":1567920600000,"y":0},{"x":1567920660000,"y":0},{"x":1567920720000,"y":0},{"x":1567920780000,"y":0},{"x":1567920840000,"y":0},{"x":1567920900000,"y":0},{"x":1567920960000,"y":0},{"x":1567921020000,"y":0},{"x":1567921080000,"y":0},{"x":1567921140000,"y":0},{"x":1567921200000,"y":0.01},{"x":1567921260000,"y":0},{"x":1567921320000,"y":0},{"x":1567921380000,"y":0},{"x":1567921440000,"y":0},{"x":1567921500000,"y":0},{"x":1567921560000,"y":0},{"x":1567921620000,"y":0},{"x":1567921680000,"y":0},{"x":1567921740000,"y":0},{"x":1567921800000,"y":0},{"x":1567921860000,"y":0},{"x":1567921920000,"y":0},{"x":1567921980000,"y":0},{"x":1567922040000,"y":0},{"x":1567922100000,"y":0},{"x":1567922160000,"y":0},{"x":1567922220000,"y":0},{"x":1567922280000,"y":0},{"x":1567922340000,"y":0},{"x":1567922400000,"y":0},{"x":1567922460000,"y":0},{"x":1567922520000,"y":0},{"x":1567922580000,"y":0},{"x":1567922640000,"y":0},{"x":1567922700000,"y":0},{"x":1567922760000,"y":0},{"x":1567922820000,"y":0},{"x":1567922880000,"y":0},{"x":1567922940000,"y":0.01},{"x":1567923000000,"y":0},{"x":1567923060000,"y":0},{"x":1567923120000,"y":0},{"x":1567923180000,"y":0},{"x":1567923240000,"y":0},{"x":1567923300000,"y":0},{"x":1567923360000,"y":0},{"x":1567923420000,"y":0},{"x":1567923480000,"y":0},{"x":1567923540000,"y":0},{"x":1567923600000,"y":0},{"x":1567923660000,"y":0},{"x":1567923720000,"y":0},{"x":1567923780000,"y":0},{"x":1567923840000,"y":0},{"x":1567923900000,"y":0},{"x":1567923960000,"y":0},{"x":1567924020000,"y":0},{"x":1567924080000,"y":0},{"x":1567924140000,"y":0},{"x":1567924200000,"y":0},{"x":1567924260000,"y":0},{"x":1567924320000,"y":0},{"x":1567924380000,"y":0},{"x":1567924440000,"y":0},{"x":1567924500000,"y":0},{"x":1567924560000,"y":0},{"x":1567924620000,"y":0},{"x":1567924680000,"y":0},{"x":1567924740000,"y":0},{"x":1567924800000,"y":0.01},{"x":1567924860000,"y":0},{"x":1567924920000,"y":0},{"x":1567924980000,"y":0},{"x":1567925040000,"y":0},{"x":1567925100000,"y":0},{"x":1567925160000,"y":0},{"x":1567925220000,"y":0},{"x":1567925280000,"y":0},{"x":1567925340000,"y":0},{"x":1567925400000,"y":0},{"x":1567925460000,"y":0},{"x":1567925520000,"y":0},{"x":1567925580000,"y":0},{"x":1567925640000,"y":0},{"x":1567925700000,"y":0.01},{"x":1567925760000,"y":0},{"x":1567925820000,"y":0},{"x":1567925880000,"y":0},{"x":1567925940000,"y":0},{"x":1567926000000,"y":0},{"x":1567926060000,"y":0},{"x":1567926120000,"y":0},{"x":1567926180000,"y":0},{"x":1567926240000,"y":0},{"x":1567926300000,"y":0},{"x":1567926360000,"y":0},{"x":1567926420000,"y":0},{"x":1567926480000,"y":0},{"x":1567926540000,"y":0.01},{"x":1567926600000,"y":0},{"x":1567926660000,"y":0},{"x":1567926720000,"y":0},{"x":1567926780000,"y":0},{"x":1567926840000,"y":0},{"x":1567926900000,"y":0},{"x":1567926960000,"y":0},{"x":1567927020000,"y":0},{"x":1567927080000,"y":0},{"x":1567927140000,"y":0},{"x":1567927200000,"y":0},{"x":1567927260000,"y":0},{"x":1567927320000,"y":0},{"x":1567927380000,"y":0},{"x":1567927440000,"y":0},{"x":1567927500000,"y":0},{"x":1567927560000,"y":0},{"x":1567927620000,"y":0},{"x":1567927680000,"y":0.01},{"x":1567927740000,"y":0},{"x":1567927800000,"y":0},{"x":1567927860000,"y":0},{"x":1567927920000,"y":0},{"x":1567927980000,"y":0},{"x":1567928040000,"y":0},{"x":1567928100000,"y":0},{"x":1567928160000,"y":0},{"x":1567928220000,"y":0},{"x":1567928280000,"y":0},{"x":1567928340000,"y":0},{"x":1567928400000,"y":0.01},{"x":1567928460000,"y":0},{"x":1567928520000,"y":0},{"x":1567928580000,"y":0},{"x":1567928640000,"y":0},{"x":1567928700000,"y":0},{"x":1567928760000,"y":0},{"x":1567928820000,"y":0},{"x":1567928880000,"y":0},{"x":1567928940000,"y":0},{"x":1567929000000,"y":0},{"x":1567929060000,"y":0},{"x":1567929120000,"y":0},{"x":1567929180000,"y":0},{"x":1567929240000,"y":0},{"x":1567929300000,"y":0},{"x":1567929360000,"y":0},{"x":1567929420000,"y":0},{"x":1567929480000,"y":0},{"x":1567929540000,"y":0},{"x":1567929600000,"y":0},{"x":1567929660000,"y":0},{"x":1567929720000,"y":0},{"x":1567929780000,"y":0},{"x":1567929840000,"y":0},{"x":1567929900000,"y":0},{"x":1567929960000,"y":0},{"x":1567930020000,"y":0},{"x":1567930080000,"y":0},{"x":1567930140000,"y":0.01},{"x":1567930200000,"y":0},{"x":1567930260000,"y":0},{"x":1567930320000,"y":0},{"x":1567930380000,"y":0},{"x":1567930440000,"y":0},{"x":1567930500000,"y":0},{"x":1567930560000,"y":0},{"x":1567930620000,"y":0},{"x":1567930680000,"y":0},{"x":1567930740000,"y":0},{"x":1567930800000,"y":0},{"x":1567930860000,"y":0},{"x":1567930920000,"y":0},{"x":1567930980000,"y":0},{"x":1567931040000,"y":0},{"x":1567931100000,"y":0},{"x":1567931160000,"y":0},{"x":1567931220000,"y":0},{"x":1567931280000,"y":0},{"x":1567931340000,"y":0},{"x":1567931400000,"y":0},{"x":1567931460000,"y":0},{"x":1567931520000,"y":0},{"x":1567931580000,"y":0},{"x":1567931640000,"y":0},{"x":1567931700000,"y":0},{"x":1567931760000,"y":0},{"x":1567931820000,"y":0},{"x":1567931880000,"y":0},{"x":1567931940000,"y":0},{"x":1567932000000,"y":0.01},{"x":1567932060000,"y":0},{"x":1567932120000,"y":0},{"x":1567932180000,"y":0},{"x":1567932240000,"y":0},{"x":1567932300000,"y":0},{"x":1567932360000,"y":0},{"x":1567932420000,"y":0},{"x":1567932480000,"y":0},{"x":1567932540000,"y":0},{"x":1567932600000,"y":0},{"x":1567932660000,"y":0},{"x":1567932720000,"y":0},{"x":1567932780000,"y":0},{"x":1567932840000,"y":0},{"x":1567932900000,"y":0},{"x":1567932960000,"y":0},{"x":1567933020000,"y":0},{"x":1567933080000,"y":0},{"x":1567933140000,"y":0},{"x":1567933200000,"y":0},{"x":1567933260000,"y":0},{"x":1567933320000,"y":0},{"x":1567933380000,"y":0},{"x":1567933440000,"y":0},{"x":1567933500000,"y":0},{"x":1567933560000,"y":0},{"x":1567933620000,"y":0},{"x":1567933680000,"y":0},{"x":1567933740000,"y":0.01},{"x":1567933800000,"y":0},{"x":1567933860000,"y":0},{"x":1567933920000,"y":0},{"x":1567933980000,"y":0},{"x":1567934040000,"y":0},{"x":1567934100000,"y":0},{"x":1567934160000,"y":0},{"x":1567934220000,"y":0},{"x":1567934280000,"y":0},{"x":1567934340000,"y":0},{"x":1567934400000,"y":0},{"x":1567934460000,"y":0},{"x":1567934520000,"y":0},{"x":1567934580000,"y":0},{"x":1567934640000,"y":0},{"x":1567934700000,"y":0},{"x":1567934760000,"y":0},{"x":1567934820000,"y":0},{"x":1567934880000,"y":0},{"x":1567934940000,"y":0},{"x":1567935000000,"y":0},{"x":1567935060000,"y":0},{"x":1567935120000,"y":0},{"x":1567935180000,"y":0},{"x":1567935240000,"y":0},{"x":1567935300000,"y":0},{"x":1567935360000,"y":0},{"x":1567935420000,"y":0},{"x":1567935480000,"y":0},{"x":1567935540000,"y":0},{"x":1567935600000,"y":0.01},{"x":1567935660000,"y":0},{"x":1567935720000,"y":0},{"x":1567935780000,"y":0},{"x":1567935840000,"y":0},{"x":1567935900000,"y":0},{"x":1567935960000,"y":0},{"x":1567936020000,"y":0},{"x":1567936080000,"y":0},{"x":1567936140000,"y":0},{"x":1567936200000,"y":0},{"x":1567936260000,"y":0},{"x":1567936320000,"y":0},{"x":1567936380000,"y":0},{"x":1567936440000,"y":0},{"x":1567936500000,"y":0},{"x":1567936560000,"y":0},{"x":1567936620000,"y":0},{"x":1567936680000,"y":0},{"x":1567936740000,"y":0},{"x":1567936800000,"y":0},{"x":1567936860000,"y":0},{"x":1567936920000,"y":0},{"x":1567936980000,"y":0},{"x":1567937040000,"y":0},{"x":1567937100000,"y":0},{"x":1567937160000,"y":0},{"x":1567937220000,"y":0},{"x":1567937280000,"y":0},{"x":1567937340000,"y":0.01},{"x":1567937400000,"y":0},{"x":1567937460000,"y":0},{"x":1567937520000,"y":0},{"x":1567937580000,"y":0},{"x":1567937640000,"y":0},{"x":1567937700000,"y":0},{"x":1567937760000,"y":0},{"x":1567937820000,"y":0},{"x":1567937880000,"y":0},{"x":1567937940000,"y":0},{"x":1567938000000,"y":0},{"x":1567938060000,"y":0},{"x":1567938120000,"y":0},{"x":1567938180000,"y":0},{"x":1567938240000,"y":0},{"x":1567938300000,"y":0},{"x":1567938360000,"y":0},{"x":1567938420000,"y":0},{"x":1567938480000,"y":0},{"x":1567938540000,"y":0},{"x":1567938600000,"y":0},{"x":1567938660000,"y":0},{"x":1567938720000,"y":0},{"x":1567938780000,"y":0},{"x":1567938840000,"y":0},{"x":1567938900000,"y":0},{"x":1567938960000,"y":0},{"x":1567939020000,"y":0},{"x":1567939080000,"y":0},{"x":1567939140000,"y":0},{"x":1567939200000,"y":0.01},{"x":1567939260000,"y":0},{"x":1567939320000,"y":0},{"x":1567939380000,"y":0},{"x":1567939440000,"y":0},{"x":1567939500000,"y":0},{"x":1567939560000,"y":0},{"x":1567939620000,"y":0},{"x":1567939680000,"y":0},{"x":1567939740000,"y":0},{"x":1567939800000,"y":0},{"x":1567939860000,"y":0},{"x":1567939920000,"y":0},{"x":1567939980000,"y":0},{"x":1567940040000,"y":0},{"x":1567940100000,"y":0},{"x":1567940160000,"y":0},{"x":1567940220000,"y":0},{"x":1567940280000,"y":0},{"x":1567940340000,"y":0},{"x":1567940400000,"y":0},{"x":1567940460000,"y":0},{"x":1567940520000,"y":0},{"x":1567940580000,"y":0},{"x":1567940640000,"y":0},{"x":1567940700000,"y":0},{"x":1567940760000,"y":0},{"x":1567940820000,"y":0},{"x":1567940880000,"y":0},{"x":1567940940000,"y":0.01},{"x":1567941000000,"y":0},{"x":1567941060000,"y":0},{"x":1567941120000,"y":0},{"x":1567941180000,"y":0},{"x":1567941240000,"y":0},{"x":1567941300000,"y":0},{"x":1567941360000,"y":0},{"x":1567941420000,"y":0},{"x":1567941480000,"y":0},{"x":1567941540000,"y":0},{"x":1567941600000,"y":0},{"x":1567941660000,"y":0},{"x":1567941720000,"y":0},{"x":1567941780000,"y":0},{"x":1567941840000,"y":0},{"x":1567941900000,"y":0},{"x":1567941960000,"y":0},{"x":1567942020000,"y":0},{"x":1567942080000,"y":0},{"x":1567942140000,"y":0},{"x":1567942200000,"y":0},{"x":1567942260000,"y":0},{"x":1567942320000,"y":0},{"x":1567942380000,"y":0},{"x":1567942440000,"y":0},{"x":1567942500000,"y":0},{"x":1567942560000,"y":0},{"x":1567942620000,"y":0},{"x":1567942680000,"y":0},{"x":1567942740000,"y":0},{"x":1567942800000,"y":0.01},{"x":1567942860000,"y":0},{"x":1567942920000,"y":0},{"x":1567942980000,"y":0},{"x":1567943040000,"y":0},{"x":1567943100000,"y":0},{"x":1567943160000,"y":0},{"x":1567943220000,"y":0},{"x":1567943280000,"y":0},{"x":1567943340000,"y":0},{"x":1567943400000,"y":0},{"x":1567943460000,"y":0},{"x":1567943520000,"y":0},{"x":1567943580000,"y":0},{"x":1567943640000,"y":0},{"x":1567943700000,"y":0},{"x":1567943760000,"y":0},{"x":1567943820000,"y":0},{"x":1567943880000,"y":0},{"x":1567943940000,"y":0},{"x":1567944000000,"y":0},{"x":1567944060000,"y":0},{"x":1567944120000,"y":0},{"x":1567944180000,"y":0},{"x":1567944240000,"y":0},{"x":1567944300000,"y":0},{"x":1567944360000,"y":0},{"x":1567944420000,"y":0},{"x":1567944480000,"y":0},{"x":1567944540000,"y":0.01},{"x":1567944600000,"y":0},{"x":1567944660000,"y":0},{"x":1567944720000,"y":0},{"x":1567944780000,"y":0},{"x":1567944840000,"y":0},{"x":1567944900000,"y":0},{"x":1567944960000,"y":0},{"x":1567945020000,"y":0},{"x":1567945080000,"y":0},{"x":1567945140000,"y":0},{"x":1567945200000,"y":0},{"x":1567945260000,"y":0},{"x":1567945320000,"y":0},{"x":1567945380000,"y":0},{"x":1567945440000,"y":0},{"x":1567945500000,"y":0},{"x":1567945560000,"y":0},{"x":1567945620000,"y":0},{"x":1567945680000,"y":0},{"x":1567945740000,"y":0},{"x":1567945800000,"y":0},{"x":1567945860000,"y":0},{"x":1567945920000,"y":0},{"x":1567945980000,"y":0},{"x":1567946040000,"y":0},{"x":1567946100000,"y":0},{"x":1567946160000,"y":0},{"x":1567946220000,"y":0},{"x":1567946280000,"y":0},{"x":1567946340000,"y":0},{"x":1567946400000,"y":0.01},{"x":1567946460000,"y":0},{"x":1567946520000,"y":0},{"x":1567946580000,"y":0},{"x":1567946640000,"y":0},{"x":1567946700000,"y":0},{"x":1567946760000,"y":0},{"x":1567946820000,"y":0},{"x":1567946880000,"y":0},{"x":1567946940000,"y":0},{"x":1567947000000,"y":0},{"x":1567947060000,"y":0},{"x":1567947120000,"y":0},{"x":1567947180000,"y":0},{"x":1567947240000,"y":0},{"x":1567947300000,"y":0},{"x":1567947360000,"y":0},{"x":1567947420000,"y":0},{"x":1567947480000,"y":0},{"x":1567947540000,"y":0},{"x":1567947600000,"y":0.01},{"x":1567947660000,"y":0},{"x":1567947720000,"y":0},{"x":1567947780000,"y":0},{"x":1567947840000,"y":0},{"x":1567947900000,"y":0},{"x":1567947960000,"y":0},{"x":1567948020000,"y":0},{"x":1567948080000,"y":0},{"x":1567948140000,"y":0.01},{"x":1567948200000,"y":0},{"x":1567948260000,"y":0},{"x":1567948320000,"y":0},{"x":1567948380000,"y":0},{"x":1567948440000,"y":0},{"x":1567948500000,"y":0},{"x":1567948560000,"y":0},{"x":1567948620000,"y":0},{"x":1567948680000,"y":0},{"x":1567948740000,"y":0},{"x":1567948800000,"y":0},{"x":1567948860000,"y":0},{"x":1567948920000,"y":0},{"x":1567948980000,"y":0},{"x":1567949040000,"y":0},{"x":1567949100000,"y":0},{"x":1567949160000,"y":0},{"x":1567949220000,"y":0},{"x":1567949280000,"y":0},{"x":1567949340000,"y":0},{"x":1567949400000,"y":0},{"x":1567949460000,"y":0},{"x":1567949520000,"y":0},{"x":1567949580000,"y":0},{"x":1567949640000,"y":0},{"x":1567949700000,"y":0},{"x":1567949760000,"y":0},{"x":1567949820000,"y":0},{"x":1567949880000,"y":0},{"x":1567949940000,"y":0},{"x":1567950000000,"y":0.01},{"x":1567950060000,"y":0},{"x":1567950120000,"y":0},{"x":1567950180000,"y":0},{"x":1567950240000,"y":0},{"x":1567950300000,"y":0},{"x":1567950360000,"y":0},{"x":1567950420000,"y":0},{"x":1567950480000,"y":0},{"x":1567950540000,"y":0},{"x":1567950600000,"y":0},{"x":1567950660000,"y":0},{"x":1567950720000,"y":0},{"x":1567950780000,"y":0},{"x":1567950840000,"y":0},{"x":1567950900000,"y":0},{"x":1567950960000,"y":0},{"x":1567951020000,"y":0},{"x":1567951080000,"y":0},{"x":1567951140000,"y":0},{"x":1567951200000,"y":0},{"x":1567951260000,"y":0},{"x":1567951320000,"y":0},{"x":1567951380000,"y":0.06},{"x":1567951440000,"y":0},{"x":1567951500000,"y":0},{"x":1567951560000,"y":0},{"x":1567951620000,"y":0},{"x":1567951680000,"y":0},{"x":1567951740000,"y":0.01},{"x":1567951800000,"y":0},{"x":1567951860000,"y":0},{"x":1567951920000,"y":0},{"x":1567951980000,"y":0},{"x":1567952040000,"y":0},{"x":1567952100000,"y":0},{"x":1567952160000,"y":0},{"x":1567952220000,"y":0},{"x":1567952280000,"y":0},{"x":1567952340000,"y":0},{"x":1567952400000,"y":0},{"x":1567952460000,"y":0},{"x":1567952520000,"y":0},{"x":1567952580000,"y":0},{"x":1567952640000,"y":0},{"x":1567952700000,"y":0},{"x":1567952760000,"y":0},{"x":1567952820000,"y":0},{"x":1567952880000,"y":0},{"x":1567952940000,"y":0},{"x":1567953000000,"y":0},{"x":1567953060000,"y":0},{"x":1567953120000,"y":0},{"x":1567953180000,"y":0},{"x":1567953240000,"y":0},{"x":1567953300000,"y":0},{"x":1567953360000,"y":0},{"x":1567953420000,"y":0},{"x":1567953480000,"y":0},{"x":1567953540000,"y":0},{"x":1567953600000,"y":0.01},{"x":1567953660000,"y":0},{"x":1567953720000,"y":0},{"x":1567953780000,"y":0},{"x":1567953840000,"y":0},{"x":1567953900000,"y":0},{"x":1567953960000,"y":0},{"x":1567954020000,"y":0},{"x":1567954080000,"y":0},{"x":1567954140000,"y":0},{"x":1567954200000,"y":0},{"x":1567954260000,"y":0},{"x":1567954320000,"y":0.01},{"x":1567954380000,"y":0},{"x":1567954440000,"y":0},{"x":1567954500000,"y":0},{"x":1567954560000,"y":0},{"x":1567954620000,"y":0},{"x":1567954680000,"y":0},{"x":1567954740000,"y":0},{"x":1567954800000,"y":0},{"x":1567954860000,"y":0},{"x":1567954920000,"y":0},{"x":1567954980000,"y":0},{"x":1567955040000,"y":0.01},{"x":1567955100000,"y":0},{"x":1567955160000,"y":0},{"x":1567955220000,"y":0},{"x":1567955280000,"y":0},{"x":1567955340000,"y":0.01},{"x":1567955400000,"y":0},{"x":1567955460000,"y":0},{"x":1567955520000,"y":0},{"x":1567955580000,"y":0},{"x":1567955640000,"y":0},{"x":1567955700000,"y":0},{"x":1567955760000,"y":0},{"x":1567955820000,"y":0},{"x":1567955880000,"y":0},{"x":1567955940000,"y":0},{"x":1567956000000,"y":0},{"x":1567956060000,"y":0},{"x":1567956120000,"y":0},{"x":1567956180000,"y":0},{"x":1567956240000,"y":0},{"x":1567956300000,"y":0},{"x":1567956360000,"y":0},{"x":1567956420000,"y":0},{"x":1567956480000,"y":0},{"x":1567956540000,"y":0},{"x":1567956600000,"y":0},{"x":1567956660000,"y":0},{"x":1567956720000,"y":0},{"x":1567956780000,"y":0},{"x":1567956840000,"y":0.01},{"x":1567956900000,"y":0},{"x":1567956960000,"y":0},{"x":1567957020000,"y":0},{"x":1567957080000,"y":0},{"x":1567957140000,"y":0},{"x":1567957200000,"y":0.01},{"x":1567957260000,"y":0},{"x":1567957320000,"y":0},{"x":1567957380000,"y":0},{"x":1567957440000,"y":0},{"x":1567957500000,"y":0},{"x":1567957560000,"y":0},{"x":1567957620000,"y":0},{"x":1567957680000,"y":0},{"x":1567957740000,"y":0},{"x":1567957800000,"y":0},{"x":1567957860000,"y":0},{"x":1567957920000,"y":0},{"x":1567957980000,"y":0},{"x":1567958040000,"y":0},{"x":1567958100000,"y":0},{"x":1567958160000,"y":0},{"x":1567958220000,"y":0},{"x":1567958280000,"y":0},{"x":1567958340000,"y":0},{"x":1567958400000,"y":0},{"x":1567958460000,"y":0},{"x":1567958520000,"y":0},{"x":1567958580000,"y":0},{"x":1567958640000,"y":0},{"x":1567958700000,"y":0},{"x":1567958760000,"y":0},{"x":1567958820000,"y":0},{"x":1567958880000,"y":0},{"x":1567958940000,"y":0.01},{"x":1567959000000,"y":0},{"x":1567959060000,"y":0},{"x":1567959120000,"y":0},{"x":1567959180000,"y":0.01},{"x":1567959240000,"y":0},{"x":1567959300000,"y":0},{"x":1567959360000,"y":0},{"x":1567959420000,"y":0},{"x":1567959480000,"y":0},{"x":1567959540000,"y":0},{"x":1567959600000,"y":0},{"x":1567959660000,"y":0},{"x":1567959720000,"y":0},{"x":1567959780000,"y":0},{"x":1567959840000,"y":0},{"x":1567959900000,"y":0},{"x":1567959960000,"y":0},{"x":1567960020000,"y":0},{"x":1567960080000,"y":0},{"x":1567960140000,"y":0},{"x":1567960200000,"y":0},{"x":1567960260000,"y":0},{"x":1567960320000,"y":0},{"x":1567960380000,"y":0},{"x":1567960440000,"y":0},{"x":1567960500000,"y":0},{"x":1567960560000,"y":0},{"x":1567960620000,"y":0},{"x":1567960680000,"y":0},{"x":1567960740000,"y":0},{"x":1567960800000,"y":0.01},{"x":1567960860000,"y":0},{"x":1567960920000,"y":0},{"x":1567960980000,"y":0},{"x":1567961040000,"y":0},{"x":1567961100000,"y":0},{"x":1567961160000,"y":0},{"x":1567961220000,"y":0},{"x":1567961280000,"y":0},{"x":1567961340000,"y":0},{"x":1567961400000,"y":0},{"x":1567961460000,"y":0},{"x":1567961520000,"y":0},{"x":1567961580000,"y":0},{"x":1567961640000,"y":0},{"x":1567961700000,"y":0},{"x":1567961760000,"y":0},{"x":1567961820000,"y":0},{"x":1567961880000,"y":0},{"x":1567961940000,"y":0},{"x":1567962000000,"y":0},{"x":1567962060000,"y":0},{"x":1567962120000,"y":0},{"x":1567962180000,"y":0},{"x":1567962240000,"y":0},{"x":1567962300000,"y":0},{"x":1567962360000,"y":0},{"x":1567962420000,"y":0},{"x":1567962480000,"y":0},{"x":1567962540000,"y":0.01},{"x":1567962600000,"y":0},{"x":1567962660000,"y":0},{"x":1567962720000,"y":0},{"x":1567962780000,"y":0},{"x":1567962840000,"y":0},{"x":1567962900000,"y":0},{"x":1567962960000,"y":0},{"x":1567963020000,"y":0},{"x":1567963080000,"y":0},{"x":1567963140000,"y":0},{"x":1567963200000,"y":0},{"x":1567963260000,"y":0},{"x":1567963320000,"y":0},{"x":1567963380000,"y":0},{"x":1567963440000,"y":0},{"x":1567963500000,"y":0},{"x":1567963560000,"y":0},{"x":1567963620000,"y":0},{"x":1567963680000,"y":0},{"x":1567963740000,"y":0},{"x":1567963800000,"y":0},{"x":1567963860000,"y":0},{"x":1567963920000,"y":0},{"x":1567963980000,"y":0},{"x":1567964040000,"y":0},{"x":1567964100000,"y":0},{"x":1567964160000,"y":0},{"x":1567964220000,"y":0},{"x":1567964280000,"y":0},{"x":1567964340000,"y":0},{"x":1567964400000,"y":0.01},{"x":1567964460000,"y":0},{"x":1567964520000,"y":0},{"x":1567964580000,"y":0},{"x":1567964640000,"y":0},{"x":1567964700000,"y":0},{"x":1567964760000,"y":0},{"x":1567964820000,"y":0},{"x":1567964880000,"y":0},{"x":1567964940000,"y":0},{"x":1567965000000,"y":0},{"x":1567965060000,"y":0},{"x":1567965120000,"y":0},{"x":1567965180000,"y":0},{"x":1567965240000,"y":0},{"x":1567965300000,"y":0},{"x":1567965360000,"y":0},{"x":1567965420000,"y":0},{"x":1567965480000,"y":0},{"x":1567965540000,"y":0},{"x":1567965600000,"y":0},{"x":1567965660000,"y":0},{"x":1567965720000,"y":0},{"x":1567965780000,"y":0},{"x":1567965840000,"y":0},{"x":1567965900000,"y":0},{"x":1567965960000,"y":0},{"x":1567966020000,"y":0},{"x":1567966080000,"y":0},{"x":1567966140000,"y":0.01},{"x":1567966200000,"y":0},{"x":1567966260000,"y":0},{"x":1567966320000,"y":0},{"x":1567966380000,"y":0},{"x":1567966440000,"y":0},{"x":1567966500000,"y":0},{"x":1567966560000,"y":0},{"x":1567966620000,"y":0},{"x":1567966680000,"y":0},{"x":1567966740000,"y":0},{"x":1567966800000,"y":0},{"x":1567966860000,"y":0},{"x":1567966920000,"y":0},{"x":1567966980000,"y":0},{"x":1567967040000,"y":0},{"x":1567967100000,"y":0},{"x":1567967160000,"y":0},{"x":1567967220000,"y":0},{"x":1567967280000,"y":0},{"x":1567967340000,"y":0},{"x":1567967400000,"y":0},{"x":1567967460000,"y":0},{"x":1567967520000,"y":0},{"x":1567967580000,"y":0},{"x":1567967640000,"y":0},{"x":1567967700000,"y":0},{"x":1567967760000,"y":0},{"x":1567967820000,"y":0},{"x":1567967880000,"y":0},{"x":1567967940000,"y":0},{"x":1567968000000,"y":0.01},{"x":1567968060000,"y":0},{"x":1567968120000,"y":0},{"x":1567968180000,"y":0},{"x":1567968240000,"y":0},{"x":1567968300000,"y":2.69},{"x":1567968360000,"y":0.29},{"x":1567968420000,"y":4.21},{"x":1567968480000,"y":0},{"x":1567968540000,"y":0},{"x":1567968600000,"y":0},{"x":1567968660000,"y":0},{"x":1567968720000,"y":0.75},{"x":1567968780000,"y":0},{"x":1567968840000,"y":0},{"x":1567968900000,"y":0},{"x":1567968960000,"y":0},{"x":1567969020000,"y":0},{"x":1567969080000,"y":0},{"x":1567969140000,"y":0},{"x":1567969200000,"y":0},{"x":1567969260000,"y":1},{"x":1567969320000,"y":0},{"x":1567969380000,"y":0},{"x":1567969440000,"y":0},{"x":1567969500000,"y":0.03},{"x":1567969560000,"y":0},{"x":1567969620000,"y":0},{"x":1567969680000,"y":0},{"x":1567969740000,"y":0.04},{"x":1567969800000,"y":0},{"x":1567969860000,"y":0},{"x":1567969920000,"y":0.03},{"x":1567969980000,"y":0.62},{"x":1567970040000,"y":0},{"x":1567970100000,"y":0},{"x":1567970160000,"y":0.37},{"x":1567970220000,"y":0.26},{"x":1567970280000,"y":0.06},{"x":1567970340000,"y":0},{"x":1567970400000,"y":0},{"x":1567970460000,"y":0},{"x":1567970520000,"y":0},{"x":1567970580000,"y":0},{"x":1567970640000,"y":0},{"x":1567970700000,"y":0},{"x":1567970760000,"y":0},{"x":1567970820000,"y":0},{"x":1567970880000,"y":0},{"x":1567970940000,"y":0.01},{"x":1567971000000,"y":0},{"x":1567971060000,"y":0},{"x":1567971120000,"y":0},{"x":1567971180000,"y":0},{"x":1567971240000,"y":0},{"x":1567971300000,"y":0},{"x":1567971360000,"y":0},{"x":1567971420000,"y":0},{"x":1567971480000,"y":0},{"x":1567971540000,"y":0},{"x":1567971600000,"y":0.01},{"x":1567971660000,"y":0},{"x":1567971720000,"y":0},{"x":1567971780000,"y":0},{"x":1567971840000,"y":0.01},{"x":1567971900000,"y":0},{"x":1567971960000,"y":0},{"x":1567972020000,"y":0},{"x":1567972080000,"y":0},{"x":1567972140000,"y":0},{"x":1567972200000,"y":0},{"x":1567972260000,"y":0},{"x":1567972320000,"y":0},{"x":1567972380000,"y":0},{"x":1567972440000,"y":0},{"x":1567972500000,"y":0},{"x":1567972560000,"y":0},{"x":1567972620000,"y":0},{"x":1567972680000,"y":0},{"x":1567972740000,"y":0},{"x":1567972800000,"y":0},{"x":1567972860000,"y":0},{"x":1567972920000,"y":0},{"x":1567972980000,"y":0},{"x":1567973040000,"y":0},{"x":1567973100000,"y":0},{"x":1567973160000,"y":0},{"x":1567973220000,"y":0},{"x":1567973280000,"y":0},{"x":1567973340000,"y":0.01},{"x":1567973400000,"y":0},{"x":1567973460000,"y":0},{"x":1567973520000,"y":0},{"x":1567973580000,"y":0},{"x":1567973640000,"y":0},{"x":1567973700000,"y":0},{"x":1567973760000,"y":0},{"x":1567973820000,"y":0},{"x":1567973880000,"y":0},{"x":1567973940000,"y":0},{"x":1567974000000,"y":0},{"x":1567974060000,"y":0},{"x":1567974120000,"y":0},{"x":1567974180000,"y":0},{"x":1567974240000,"y":0},{"x":1567974300000,"y":0},{"x":1567974360000,"y":0},{"x":1567974420000,"y":0},{"x":1567974480000,"y":0},{"x":1567974540000,"y":0},{"x":1567974600000,"y":0},{"x":1567974660000,"y":0},{"x":1567974720000,"y":0},{"x":1567974780000,"y":0},{"x":1567974840000,"y":0},{"x":1567974900000,"y":0},{"x":1567974960000,"y":0},{"x":1567975020000,"y":0},{"x":1567975080000,"y":0},{"x":1567975140000,"y":0},{"x":1567975200000,"y":0.01},{"x":1567975260000,"y":0},{"x":1567975320000,"y":0},{"x":1567975380000,"y":0},{"x":1567975440000,"y":0},{"x":1567975500000,"y":0},{"x":1567975560000,"y":0},{"x":1567975620000,"y":0},{"x":1567975680000,"y":0},{"x":1567975740000,"y":0},{"x":1567975800000,"y":0},{"x":1567975860000,"y":0.12},{"x":1567975920000,"y":0.4},{"x":1567975980000,"y":0},{"x":1567976040000,"y":0},{"x":1567976100000,"y":0},{"x":1567976160000,"y":0},{"x":1567976220000,"y":0.02},{"x":1567976280000,"y":0.07},{"x":1567976340000,"y":0},{"x":1567976400000,"y":0},{"x":1567976460000,"y":0},{"x":1567976520000,"y":0},{"x":1567976580000,"y":0.01},{"x":1567976640000,"y":0},{"x":1567976700000,"y":0},{"x":1567976760000,"y":0},{"x":1567976820000,"y":0},{"x":1567976880000,"y":0.44},{"x":1567976940000,"y":0.02},{"x":1567977000000,"y":0},{"x":1567977060000,"y":0},{"x":1567977120000,"y":0},{"x":1567977180000,"y":0},{"x":1567977240000,"y":0},{"x":1567977300000,"y":0},{"x":1567977360000,"y":0},{"x":1567977420000,"y":0},{"x":1567977480000,"y":0},{"x":1567977540000,"y":0},{"x":1567977600000,"y":0},{"x":1567977660000,"y":0},{"x":1567977720000,"y":0},{"x":1567977780000,"y":0},{"x":1567977840000,"y":0.01},{"x":1567977900000,"y":0},{"x":1567977960000,"y":0},{"x":1567978020000,"y":0},{"x":1567978080000,"y":0},{"x":1567978140000,"y":0},{"x":1567978200000,"y":0},{"x":1567978260000,"y":0},{"x":1567978320000,"y":0.01},{"x":1567978380000,"y":0},{"x":1567978440000,"y":0},{"x":1567978500000,"y":0.02},{"x":1567978560000,"y":0},{"x":1567978620000,"y":0.12},{"x":1567978680000,"y":0},{"x":1567978740000,"y":0},{"x":1567978800000,"y":0.01},{"x":1567978860000,"y":0},{"x":1567978920000,"y":0},{"x":1567978980000,"y":0},{"x":1567979040000,"y":0},{"x":1567979100000,"y":0},{"x":1567979160000,"y":0},{"x":1567979220000,"y":0},{"x":1567979280000,"y":0},{"x":1567979340000,"y":0},{"x":1567979400000,"y":0},{"x":1567979460000,"y":0},{"x":1567979520000,"y":0.17},{"x":1567979580000,"y":0},{"x":1567979640000,"y":0},{"x":1567979700000,"y":0},{"x":1567979760000,"y":0},{"x":1567979820000,"y":0},{"x":1567979880000,"y":0},{"x":1567979940000,"y":0.84},{"x":1567980000000,"y":0},{"x":1567980060000,"y":0},{"x":1567980120000,"y":0},{"x":1567980180000,"y":0},{"x":1567980240000,"y":0},{"x":1567980300000,"y":0},{"x":1567980360000,"y":0},{"x":1567980420000,"y":0},{"x":1567980480000,"y":0},{"x":1567980540000,"y":0.01},{"x":1567980600000,"y":0},{"x":1567980660000,"y":0},{"x":1567980720000,"y":0},{"x":1567980780000,"y":0},{"x":1567980840000,"y":0},{"x":1567980900000,"y":0},{"x":1567980960000,"y":0},{"x":1567981020000,"y":0},{"x":1567981080000,"y":0},{"x":1567981140000,"y":0},{"x":1567981200000,"y":0},{"x":1567981260000,"y":0.01},{"x":1567981320000,"y":0},{"x":1567981380000,"y":0},{"x":1567981440000,"y":0},{"x":1567981500000,"y":0},{"x":1567981560000,"y":0},{"x":1567981620000,"y":0},{"x":1567981680000,"y":0},{"x":1567981740000,"y":0.01},{"x":1567981800000,"y":0},{"x":1567981860000,"y":0},{"x":1567981920000,"y":0},{"x":1567981980000,"y":0},{"x":1567982040000,"y":0},{"x":1567982100000,"y":0},{"x":1567982160000,"y":0},{"x":1567982220000,"y":0},{"x":1567982280000,"y":0},{"x":1567982340000,"y":0},{"x":1567982400000,"y":0.01},{"x":1567982460000,"y":0},{"x":1567982520000,"y":0},{"x":1567982580000,"y":0},{"x":1567982640000,"y":0},{"x":1567982700000,"y":0},{"x":1567982760000,"y":0},{"x":1567982820000,"y":0},{"x":1567982880000,"y":0},{"x":1567982940000,"y":0},{"x":1567983000000,"y":0},{"x":1567983060000,"y":0},{"x":1567983120000,"y":0},{"x":1567983180000,"y":0},{"x":1567983240000,"y":0},{"x":1567983300000,"y":0},{"x":1567983360000,"y":0},{"x":1567983420000,"y":0},{"x":1567983480000,"y":0},{"x":1567983540000,"y":0},{"x":1567983600000,"y":0},{"x":1567983660000,"y":0},{"x":1567983720000,"y":0},{"x":1567983780000,"y":0},{"x":1567983840000,"y":0},{"x":1567983900000,"y":0},{"x":1567983960000,"y":0},{"x":1567984020000,"y":0},{"x":1567984080000,"y":0},{"x":1567984140000,"y":0.01},{"x":1567984200000,"y":0},{"x":1567984260000,"y":0},{"x":1567984320000,"y":0},{"x":1567984380000,"y":0},{"x":1567984440000,"y":0},{"x":1567984500000,"y":0},{"x":1567984560000,"y":0},{"x":1567984620000,"y":0},{"x":1567984680000,"y":0},{"x":1567984740000,"y":0},{"x":1567984800000,"y":0},{"x":1567984860000,"y":0},{"x":1567984920000,"y":0},{"x":1567984980000,"y":0},{"x":1567985040000,"y":0},{"x":1567985100000,"y":0},{"x":1567985160000,"y":0},{"x":1567985220000,"y":0},{"x":1567985280000,"y":0},{"x":1567985340000,"y":0},{"x":1567985400000,"y":0},{"x":1567985460000,"y":0},{"x":1567985520000,"y":0},{"x":1567985580000,"y":0},{"x":1567985640000,"y":0},{"x":1567985700000,"y":0},{"x":1567985760000,"y":0},{"x":1567985820000,"y":0},{"x":1567985880000,"y":0},{"x":1567985940000,"y":0},{"x":1567986000000,"y":0.01},{"x":1567986060000,"y":0},{"x":1567986120000,"y":0},{"x":1567986180000,"y":0},{"x":1567986240000,"y":0},{"x":1567986300000,"y":0},{"x":1567986360000,"y":0},{"x":1567986420000,"y":0},{"x":1567986480000,"y":0},{"x":1567986540000,"y":0},{"x":1567986600000,"y":0},{"x":1567986660000,"y":0},{"x":1567986720000,"y":0},{"x":1567986780000,"y":0},{"x":1567986840000,"y":0},{"x":1567986900000,"y":0},{"x":1567986960000,"y":0},{"x":1567987020000,"y":0},{"x":1567987080000,"y":0},{"x":1567987140000,"y":0},{"x":1567987200000,"y":0},{"x":1567987260000,"y":0},{"x":1567987320000,"y":0},{"x":1567987380000,"y":0},{"x":1567987440000,"y":0},{"x":1567987500000,"y":0},{"x":1567987560000,"y":0},{"x":1567987620000,"y":0},{"x":1567987680000,"y":0},{"x":1567987740000,"y":0.01},{"x":1567987800000,"y":0},{"x":1567987860000,"y":0},{"x":1567987920000,"y":0},{"x":1567987980000,"y":0},{"x":1567988040000,"y":0},{"x":1567988100000,"y":0},{"x":1567988160000,"y":0},{"x":1567988220000,"y":0},{"x":1567988280000,"y":0},{"x":1567988340000,"y":0},{"x":1567988400000,"y":0},{"x":1567988460000,"y":0},{"x":1567988520000,"y":0},{"x":1567988580000,"y":0},{"x":1567988640000,"y":0},{"x":1567988700000,"y":0},{"x":1567988760000,"y":0},{"x":1567988820000,"y":0},{"x":1567988880000,"y":0},{"x":1567988940000,"y":0},{"x":1567989000000,"y":0},{"x":1567989060000,"y":0},{"x":1567989120000,"y":0},{"x":1567989180000,"y":0},{"x":1567989240000,"y":0},{"x":1567989300000,"y":0},{"x":1567989360000,"y":0},{"x":1567989420000,"y":0},{"x":1567989480000,"y":0},{"x":1567989540000,"y":0},{"x":1567989600000,"y":0.01},{"x":1567989660000,"y":0},{"x":1567989720000,"y":0},{"x":1567989780000,"y":0},{"x":1567989840000,"y":0},{"x":1567989900000,"y":0},{"x":1567989960000,"y":0},{"x":1567990020000,"y":0},{"x":1567990080000,"y":0},{"x":1567990140000,"y":0},{"x":1567990200000,"y":0},{"x":1567990260000,"y":0},{"x":1567990320000,"y":0},{"x":1567990380000,"y":0},{"x":1567990440000,"y":0},{"x":1567990500000,"y":0},{"x":1567990560000,"y":0},{"x":1567990620000,"y":0},{"x":1567990680000,"y":0},{"x":1567990740000,"y":0},{"x":1567990800000,"y":0},{"x":1567990860000,"y":0},{"x":1567990920000,"y":0},{"x":1567990980000,"y":0},{"x":1567991040000,"y":0},{"x":1567991100000,"y":0},{"x":1567991160000,"y":0},{"x":1567991220000,"y":0},{"x":1567991280000,"y":0},{"x":1567991340000,"y":0.04},{"x":1567991400000,"y":0},{"x":1567991460000,"y":0},{"x":1567991520000,"y":0},{"x":1567991580000,"y":0},{"x":1567991640000,"y":0},{"x":1567991700000,"y":0},{"x":1567991760000,"y":0},{"x":1567991820000,"y":0},{"x":1567991880000,"y":0},{"x":1567991940000,"y":0},{"x":1567992000000,"y":0},{"x":1567992060000,"y":0},{"x":1567992120000,"y":0},{"x":1567992180000,"y":0},{"x":1567992240000,"y":0},{"x":1567992300000,"y":0},{"x":1567992360000,"y":0},{"x":1567992420000,"y":0},{"x":1567992480000,"y":0},{"x":1567992540000,"y":0},{"x":1567992600000,"y":0},{"x":1567992660000,"y":0},{"x":1567992720000,"y":0},{"x":1567992780000,"y":0},{"x":1567992840000,"y":0},{"x":1567992900000,"y":0},{"x":1567992960000,"y":0},{"x":1567993020000,"y":0},{"x":1567993080000,"y":0},{"x":1567993140000,"y":0},{"x":1567993200000,"y":0.01},{"x":1567993260000,"y":0},{"x":1567993320000,"y":0},{"x":1567993380000,"y":0},{"x":1567993440000,"y":0},{"x":1567993500000,"y":0},{"x":1567993560000,"y":0},{"x":1567993620000,"y":0},{"x":1567993680000,"y":0},{"x":1567993740000,"y":0},{"x":1567993800000,"y":0.01},{"x":1567993860000,"y":0},{"x":1567993920000,"y":0},{"x":1567993980000,"y":0},{"x":1567994040000,"y":0},{"x":1567994100000,"y":0},{"x":1567994160000,"y":0},{"x":1567994220000,"y":0},{"x":1567994280000,"y":0},{"x":1567994340000,"y":0},{"x":1567994400000,"y":0},{"x":1567994460000,"y":0},{"x":1567994520000,"y":0},{"x":1567994580000,"y":0},{"x":1567994640000,"y":0},{"x":1567994700000,"y":0},{"x":1567994760000,"y":0},{"x":1567994820000,"y":0},{"x":1567994880000,"y":0},{"x":1567994940000,"y":0.01},{"x":1567995000000,"y":0},{"x":1567995060000,"y":0},{"x":1567995120000,"y":0},{"x":1567995180000,"y":0},{"x":1567995240000,"y":0},{"x":1567995300000,"y":0},{"x":1567995360000,"y":0.01},{"x":1567995420000,"y":0},{"x":1567995480000,"y":0},{"x":1567995540000,"y":0},{"x":1567995600000,"y":0},{"x":1567995660000,"y":0},{"x":1567995720000,"y":0},{"x":1567995780000,"y":0},{"x":1567995840000,"y":0},{"x":1567995900000,"y":0},{"x":1567995960000,"y":0},{"x":1567996020000,"y":0},{"x":1567996080000,"y":0},{"x":1567996140000,"y":0},{"x":1567996200000,"y":0},{"x":1567996260000,"y":0},{"x":1567996320000,"y":0},{"x":1567996380000,"y":0},{"x":1567996440000,"y":0},{"x":1567996500000,"y":0},{"x":1567996560000,"y":0},{"x":1567996620000,"y":0},{"x":1567996680000,"y":0},{"x":1567996740000,"y":0},{"x":1567996800000,"y":0.01},{"x":1567996860000,"y":0},{"x":1567996920000,"y":0},{"x":1567996980000,"y":0},{"x":1567997040000,"y":0},{"x":1567997100000,"y":0},{"x":1567997160000,"y":0},{"x":1567997220000,"y":0},{"x":1567997280000,"y":0},{"x":1567997340000,"y":0},{"x":1567997400000,"y":0},{"x":1567997460000,"y":0},{"x":1567997520000,"y":0},{"x":1567997580000,"y":0},{"x":1567997640000,"y":0},{"x":1567997700000,"y":0},{"x":1567997760000,"y":0.31},{"x":1567997820000,"y":1.36},{"x":1567997880000,"y":0.68},{"x":1567997940000,"y":0.02},{"x":1567998000000,"y":0},{"x":1567998060000,"y":0},{"x":1567998120000,"y":0},{"x":1567998180000,"y":0},{"x":1567998240000,"y":0},{"x":1567998300000,"y":0},{"x":1567998360000,"y":0},{"x":1567998420000,"y":0},{"x":1567998480000,"y":0},{"x":1567998540000,"y":0.01},{"x":1567998600000,"y":0},{"x":1567998660000,"y":0},{"x":1567998720000,"y":0},{"x":1567998780000,"y":0},{"x":1567998840000,"y":0},{"x":1567998900000,"y":0},{"x":1567998960000,"y":0},{"x":1567999020000,"y":0},{"x":1567999080000,"y":0},{"x":1567999140000,"y":0},{"x":1567999200000,"y":0},{"x":1567999260000,"y":0},{"x":1567999320000,"y":0},{"x":1567999380000,"y":0},{"x":1567999440000,"y":0},{"x":1567999500000,"y":0},{"x":1567999560000,"y":0},{"x":1567999620000,"y":0},{"x":1567999680000,"y":0},{"x":1567999740000,"y":0},{"x":1567999800000,"y":0},{"x":1567999860000,"y":0},{"x":1567999920000,"y":0},{"x":1567999980000,"y":0},{"x":1568000040000,"y":0},{"x":1568000100000,"y":0.01},{"x":1568000160000,"y":0.01},{"x":1568000220000,"y":0},{"x":1568000280000,"y":0},{"x":1568000340000,"y":0},{"x":1568000400000,"y":0.01},{"x":1568000460000,"y":0},{"x":1568000520000,"y":0},{"x":1568000580000,"y":0},{"x":1568000640000,"y":0},{"x":1568000700000,"y":0},{"x":1568000760000,"y":0},{"x":1568000820000,"y":0},{"x":1568000880000,"y":0},{"x":1568000940000,"y":0},{"x":1568001000000,"y":0},{"x":1568001060000,"y":0},{"x":1568001120000,"y":0},{"x":1568001180000,"y":0},{"x":1568001240000,"y":0},{"x":1568001300000,"y":0},{"x":1568001360000,"y":0},{"x":1568001420000,"y":0},{"x":1568001480000,"y":0},{"x":1568001540000,"y":0},{"x":1568001600000,"y":0},{"x":1568001660000,"y":0.01},{"x":1568001720000,"y":0},{"x":1568001780000,"y":0},{"x":1568001840000,"y":0},{"x":1568001900000,"y":0},{"x":1568001960000,"y":0},{"x":1568002020000,"y":0},{"x":1568002080000,"y":0},{"x":1568002140000,"y":0.01},{"x":1568002200000,"y":0},{"x":1568002260000,"y":0},{"x":1568002320000,"y":0},{"x":1568002380000,"y":0},{"x":1568002440000,"y":0},{"x":1568002500000,"y":0},{"x":1568002560000,"y":0},{"x":1568002620000,"y":0},{"x":1568002680000,"y":0},{"x":1568002740000,"y":0},{"x":1568002800000,"y":0},{"x":1568002860000,"y":0},{"x":1568002920000,"y":0},{"x":1568002980000,"y":0},{"x":1568003040000,"y":0},{"x":1568003100000,"y":0},{"x":1568003160000,"y":0},{"x":1568003220000,"y":0},{"x":1568003280000,"y":0},{"x":1568003340000,"y":0},{"x":1568003400000,"y":0},{"x":1568003460000,"y":0},{"x":1568003520000,"y":0},{"x":1568003580000,"y":0},{"x":1568003640000,"y":0},{"x":1568003700000,"y":0},{"x":1568003760000,"y":0},{"x":1568003820000,"y":0},{"x":1568003880000,"y":0},{"x":1568003940000,"y":0},{"x":1568004000000,"y":0.01},{"x":1568004060000,"y":0},{"x":1568004120000,"y":0},{"x":1568004180000,"y":0},{"x":1568004240000,"y":0},{"x":1568004300000,"y":0},{"x":1568004360000,"y":0},{"x":1568004420000,"y":0},{"x":1568004480000,"y":0},{"x":1568004540000,"y":0},{"x":1568004600000,"y":0},{"x":1568004660000,"y":0},{"x":1568004720000,"y":0},{"x":1568004780000,"y":0},{"x":1568004840000,"y":0},{"x":1568004900000,"y":0},{"x":1568004960000,"y":0},{"x":1568005020000,"y":0},{"x":1568005080000,"y":0},{"x":1568005140000,"y":0},{"x":1568005200000,"y":0},{"x":1568005260000,"y":0},{"x":1568005320000,"y":0},{"x":1568005380000,"y":0},{"x":1568005440000,"y":0},{"x":1568005500000,"y":0},{"x":1568005560000,"y":0},{"x":1568005620000,"y":0},{"x":1568005680000,"y":0},{"x":1568005740000,"y":0.01},{"x":1568005800000,"y":0},{"x":1568005860000,"y":0},{"x":1568005920000,"y":0},{"x":1568005980000,"y":0},{"x":1568006040000,"y":0},{"x":1568006100000,"y":0},{"x":1568006160000,"y":0},{"x":1568006220000,"y":0},{"x":1568006280000,"y":0},{"x":1568006340000,"y":0},{"x":1568006400000,"y":0},{"x":1568006460000,"y":0.01},{"x":1568006520000,"y":0},{"x":1568006580000,"y":0},{"x":1568006640000,"y":0},{"x":1568006700000,"y":0},{"x":1568006760000,"y":0},{"x":1568006820000,"y":0},{"x":1568006880000,"y":0},{"x":1568006940000,"y":0},{"x":1568007000000,"y":0},{"x":1568007060000,"y":0},{"x":1568007120000,"y":0},{"x":1568007180000,"y":0},{"x":1568007240000,"y":0},{"x":1568007300000,"y":0},{"x":1568007360000,"y":0},{"x":1568007420000,"y":0},{"x":1568007480000,"y":0},{"x":1568007540000,"y":0},{"x":1568007600000,"y":0.01},{"x":1568007660000,"y":0},{"x":1568007720000,"y":0},{"x":1568007780000,"y":0},{"x":1568007840000,"y":0},{"x":1568007900000,"y":0},{"x":1568007960000,"y":0},{"x":1568008020000,"y":0},{"x":1568008080000,"y":0},{"x":1568008140000,"y":0},{"x":1568008200000,"y":0},{"x":1568008260000,"y":0},{"x":1568008320000,"y":0},{"x":1568008380000,"y":0},{"x":1568008440000,"y":0},{"x":1568008500000,"y":0},{"x":1568008560000,"y":0.02},{"x":1568008620000,"y":0},{"x":1568008680000,"y":0},{"x":1568008740000,"y":0},{"x":1568008800000,"y":0},{"x":1568008860000,"y":0},{"x":1568008920000,"y":0},{"x":1568008980000,"y":0},{"x":1568009040000,"y":0},{"x":1568009100000,"y":0},{"x":1568009160000,"y":0},{"x":1568009220000,"y":0},{"x":1568009280000,"y":0},{"x":1568009340000,"y":0.01},{"x":1568009400000,"y":0},{"x":1568009460000,"y":0},{"x":1568009520000,"y":0.02},{"x":1568009580000,"y":0},{"x":1568009640000,"y":0},{"x":1568009700000,"y":0},{"x":1568009760000,"y":0},{"x":1568009820000,"y":0},{"x":1568009880000,"y":0},{"x":1568009940000,"y":0},{"x":1568010000000,"y":0},{"x":1568010060000,"y":0},{"x":1568010120000,"y":0},{"x":1568010180000,"y":0},{"x":1568010240000,"y":0},{"x":1568010300000,"y":0},{"x":1568010360000,"y":0},{"x":1568010420000,"y":0},{"x":1568010480000,"y":0},{"x":1568010540000,"y":0},{"x":1568010600000,"y":0},{"x":1568010660000,"y":0},{"x":1568010720000,"y":0},{"x":1568010780000,"y":0},{"x":1568010840000,"y":0},{"x":1568010900000,"y":0},{"x":1568010960000,"y":0},{"x":1568011020000,"y":0},{"x":1568011080000,"y":0},{"x":1568011140000,"y":0},{"x":1568011200000,"y":0.01},{"x":1568011260000,"y":0},{"x":1568011320000,"y":0},{"x":1568011380000,"y":0},{"x":1568011440000,"y":0},{"x":1568011500000,"y":0},{"x":1568011560000,"y":0},{"x":1568011620000,"y":0},{"x":1568011680000,"y":0},{"x":1568011740000,"y":0},{"x":1568011800000,"y":0},{"x":1568011860000,"y":0},{"x":1568011920000,"y":0},{"x":1568011980000,"y":0},{"x":1568012040000,"y":0},{"x":1568012100000,"y":0},{"x":1568012160000,"y":0},{"x":1568012220000,"y":0},{"x":1568012280000,"y":0},{"x":1568012340000,"y":0},{"x":1568012400000,"y":0},{"x":1568012460000,"y":0},{"x":1568012520000,"y":0},{"x":1568012580000,"y":0},{"x":1568012640000,"y":0},{"x":1568012700000,"y":0},{"x":1568012760000,"y":0},{"x":1568012820000,"y":0},{"x":1568012880000,"y":0},{"x":1568012940000,"y":0.01},{"x":1568013000000,"y":0},{"x":1568013060000,"y":0},{"x":1568013120000,"y":0},{"x":1568013180000,"y":0.01},{"x":1568013240000,"y":0},{"x":1568013300000,"y":0},{"x":1568013360000,"y":0},{"x":1568013420000,"y":0},{"x":1568013480000,"y":0},{"x":1568013540000,"y":0},{"x":1568013600000,"y":0},{"x":1568013660000,"y":0},{"x":1568013720000,"y":0},{"x":1568013780000,"y":0},{"x":1568013840000,"y":0},{"x":1568013900000,"y":0},{"x":1568013960000,"y":0},{"x":1568014020000,"y":0},{"x":1568014080000,"y":0},{"x":1568014140000,"y":0},{"x":1568014200000,"y":0},{"x":1568014260000,"y":0},{"x":1568014320000,"y":0},{"x":1568014380000,"y":0},{"x":1568014440000,"y":0},{"x":1568014500000,"y":0},{"x":1568014560000,"y":0},{"x":1568014620000,"y":0},{"x":1568014680000,"y":0},{"x":1568014740000,"y":0},{"x":1568014800000,"y":0},{"x":1568014860000,"y":0},{"x":1568014920000,"y":0},{"x":1568014980000,"y":0},{"x":1568015040000,"y":0},{"x":1568015100000,"y":0},{"x":1568015160000,"y":0},{"x":1568015220000,"y":0},{"x":1568015280000,"y":0},{"x":1568015340000,"y":0},{"x":1568015400000,"y":0},{"x":1568015460000,"y":0},{"x":1568015520000,"y":0},{"x":1568015580000,"y":0},{"x":1568015640000,"y":0},{"x":1568015700000,"y":0},{"x":1568015760000,"y":0},{"x":1568015820000,"y":0},{"x":1568015880000,"y":0},{"x":1568015940000,"y":0},{"x":1568016000000,"y":0},{"x":1568016060000,"y":0},{"x":1568016120000,"y":0},{"x":1568016180000,"y":0},{"x":1568016240000,"y":0},{"x":1568016300000,"y":0},{"x":1568016360000,"y":0},{"x":1568016420000,"y":0},{"x":1568016480000,"y":0},{"x":1568016540000,"y":0.01},{"x":1568016600000,"y":0},{"x":1568016660000,"y":0},{"x":1568016720000,"y":0},{"x":1568016780000,"y":0},{"x":1568016840000,"y":0},{"x":1568016900000,"y":0},{"x":1568016960000,"y":0},{"x":1568017020000,"y":0},{"x":1568017080000,"y":0},{"x":1568017140000,"y":0},{"x":1568017200000,"y":0},{"x":1568017260000,"y":0},{"x":1568017320000,"y":0},{"x":1568017380000,"y":0},{"x":1568017440000,"y":0},{"x":1568017500000,"y":0},{"x":1568017560000,"y":0},{"x":1568017620000,"y":0},{"x":1568017680000,"y":0},{"x":1568017740000,"y":0},{"x":1568017800000,"y":0},{"x":1568017860000,"y":0},{"x":1568017920000,"y":0},{"x":1568017980000,"y":0},{"x":1568018040000,"y":0},{"x":1568018100000,"y":0},{"x":1568018160000,"y":0},{"x":1568018220000,"y":0},{"x":1568018280000,"y":0},{"x":1568018340000,"y":0},{"x":1568018400000,"y":0.01},{"x":1568018460000,"y":0},{"x":1568018520000,"y":0},{"x":1568018580000,"y":0},{"x":1568018640000,"y":0},{"x":1568018700000,"y":0},{"x":1568018760000,"y":0},{"x":1568018820000,"y":0},{"x":1568018880000,"y":0},{"x":1568018940000,"y":0},{"x":1568019000000,"y":0},{"x":1568019060000,"y":0},{"x":1568019120000,"y":0},{"x":1568019180000,"y":0},{"x":1568019240000,"y":0},{"x":1568019300000,"y":0},{"x":1568019360000,"y":0},{"x":1568019420000,"y":0},{"x":1568019480000,"y":0},{"x":1568019540000,"y":0},{"x":1568019600000,"y":0},{"x":1568019660000,"y":0},{"x":1568019720000,"y":0},{"x":1568019780000,"y":0},{"x":1568019840000,"y":0},{"x":1568019900000,"y":0},{"x":1568019960000,"y":0},{"x":1568020020000,"y":0},{"x":1568020080000,"y":0},{"x":1568020140000,"y":0.01},{"x":1568020200000,"y":0},{"x":1568020260000,"y":0},{"x":1568020320000,"y":0},{"x":1568020380000,"y":0},{"x":1568020440000,"y":0},{"x":1568020500000,"y":0},{"x":1568020560000,"y":0},{"x":1568020620000,"y":0},{"x":1568020680000,"y":0},{"x":1568020740000,"y":0},{"x":1568020800000,"y":0},{"x":1568020860000,"y":0},{"x":1568020920000,"y":0},{"x":1568020980000,"y":0},{"x":1568021040000,"y":0},{"x":1568021100000,"y":0},{"x":1568021160000,"y":0},{"x":1568021220000,"y":0},{"x":1568021280000,"y":0},{"x":1568021340000,"y":0},{"x":1568021400000,"y":0},{"x":1568021460000,"y":0},{"x":1568021520000,"y":0},{"x":1568021580000,"y":0},{"x":1568021640000,"y":0},{"x":1568021700000,"y":0},{"x":1568021760000,"y":0},{"x":1568021820000,"y":0},{"x":1568021880000,"y":0},{"x":1568021940000,"y":0},{"x":1568022000000,"y":0},{"x":1568022060000,"y":0},{"x":1568022120000,"y":0},{"x":1568022180000,"y":0},{"x":1568022240000,"y":0},{"x":1568022300000,"y":0},{"x":1568022360000,"y":0},{"x":1568022420000,"y":0},{"x":1568022480000,"y":0},{"x":1568022540000,"y":0},{"x":1568022600000,"y":0},{"x":1568022660000,"y":0},{"x":1568022720000,"y":0},{"x":1568022780000,"y":0},{"x":1568022840000,"y":0},{"x":1568022900000,"y":0},{"x":1568022960000,"y":0},{"x":1568023020000,"y":0},{"x":1568023080000,"y":0},{"x":1568023140000,"y":0},{"x":1568023200000,"y":0},{"x":1568023260000,"y":0},{"x":1568023320000,"y":0},{"x":1568023380000,"y":0},{"x":1568023440000,"y":0},{"x":1568023500000,"y":0},{"x":1568023560000,"y":0},{"x":1568023620000,"y":0},{"x":1568023680000,"y":0},{"x":1568023740000,"y":0.01},{"x":1568023800000,"y":0},{"x":1568023860000,"y":0},{"x":1568023920000,"y":0},{"x":1568023980000,"y":0},{"x":1568024040000,"y":0},{"x":1568024100000,"y":0},{"x":1568024160000,"y":0},{"x":1568024220000,"y":0},{"x":1568024280000,"y":0},{"x":1568024340000,"y":0},{"x":1568024400000,"y":0},{"x":1568024460000,"y":0},{"x":1568024520000,"y":0},{"x":1568024580000,"y":0},{"x":1568024640000,"y":0},{"x":1568024700000,"y":0},{"x":1568024760000,"y":0},{"x":1568024820000,"y":0},{"x":1568024880000,"y":0},{"x":1568024940000,"y":0},{"x":1568025000000,"y":0},{"x":1568025060000,"y":0},{"x":1568025120000,"y":0},{"x":1568025180000,"y":0},{"x":1568025240000,"y":0},{"x":1568025300000,"y":0},{"x":1568025360000,"y":0},{"x":1568025420000,"y":0},{"x":1568025480000,"y":0},{"x":1568025540000,"y":0},{"x":1568025600000,"y":0.01},{"x":1568025660000,"y":0},{"x":1568025720000,"y":0},{"x":1568025780000,"y":0},{"x":1568025840000,"y":0},{"x":1568025900000,"y":0},{"x":1568025960000,"y":0},{"x":1568026020000,"y":0},{"x":1568026080000,"y":0},{"x":1568026140000,"y":0},{"x":1568026200000,"y":0},{"x":1568026260000,"y":0},{"x":1568026320000,"y":0},{"x":1568026380000,"y":0},{"x":1568026440000,"y":0},{"x":1568026500000,"y":0},{"x":1568026560000,"y":0},{"x":1568026620000,"y":0},{"x":1568026680000,"y":0},{"x":1568026740000,"y":0},{"x":1568026800000,"y":0},{"x":1568026860000,"y":0},{"x":1568026920000,"y":0},{"x":1568026980000,"y":0},{"x":1568027040000,"y":0},{"x":1568027100000,"y":0},{"x":1568027160000,"y":0},{"x":1568027220000,"y":0},{"x":1568027280000,"y":0},{"x":1568027340000,"y":0.01},{"x":1568027400000,"y":0},{"x":1568027460000,"y":0},{"x":1568027520000,"y":0},{"x":1568027580000,"y":0},{"x":1568027640000,"y":0},{"x":1568027700000,"y":0},{"x":1568027760000,"y":0},{"x":1568027820000,"y":0},{"x":1568027880000,"y":0},{"x":1568027940000,"y":0},{"x":1568028000000,"y":0},{"x":1568028060000,"y":0},{"x":1568028120000,"y":0},{"x":1568028180000,"y":0},{"x":1568028240000,"y":0},{"x":1568028300000,"y":0},{"x":1568028360000,"y":0},{"x":1568028420000,"y":0},{"x":1568028480000,"y":0},{"x":1568028540000,"y":0},{"x":1568028600000,"y":0},{"x":1568028660000,"y":0},{"x":1568028720000,"y":0},{"x":1568028780000,"y":0},{"x":1568028840000,"y":0},{"x":1568028900000,"y":0},{"x":1568028960000,"y":0},{"x":1568029020000,"y":0},{"x":1568029080000,"y":0},{"x":1568029140000,"y":0},{"x":1568029200000,"y":0.01},{"x":1568029260000,"y":0},{"x":1568029320000,"y":0},{"x":1568029380000,"y":0},{"x":1568029440000,"y":0},{"x":1568029500000,"y":0},{"x":1568029560000,"y":0},{"x":1568029620000,"y":0},{"x":1568029680000,"y":0},{"x":1568029740000,"y":0},{"x":1568029800000,"y":0},{"x":1568029860000,"y":0},{"x":1568029920000,"y":0},{"x":1568029980000,"y":0},{"x":1568030040000,"y":0},{"x":1568030100000,"y":0},{"x":1568030160000,"y":0},{"x":1568030220000,"y":0},{"x":1568030280000,"y":0},{"x":1568030340000,"y":0},{"x":1568030400000,"y":0},{"x":1568030460000,"y":0},{"x":1568030520000,"y":0},{"x":1568030580000,"y":0},{"x":1568030640000,"y":0},{"x":1568030700000,"y":0},{"x":1568030760000,"y":0},{"x":1568030820000,"y":0},{"x":1568030880000,"y":0},{"x":1568030940000,"y":0.01},{"x":1568031000000,"y":0},{"x":1568031060000,"y":0},{"x":1568031120000,"y":0},{"x":1568031180000,"y":0},{"x":1568031240000,"y":0},{"x":1568031300000,"y":0},{"x":1568031360000,"y":0},{"x":1568031420000,"y":0},{"x":1568031480000,"y":0},{"x":1568031540000,"y":0},{"x":1568031600000,"y":0},{"x":1568031660000,"y":0},{"x":1568031720000,"y":0},{"x":1568031780000,"y":0},{"x":1568031840000,"y":0},{"x":1568031900000,"y":0},{"x":1568031960000,"y":0},{"x":1568032020000,"y":0},{"x":1568032080000,"y":0},{"x":1568032140000,"y":0},{"x":1568032200000,"y":0},{"x":1568032260000,"y":0},{"x":1568032320000,"y":0},{"x":1568032380000,"y":0},{"x":1568032440000,"y":0},{"x":1568032500000,"y":0},{"x":1568032560000,"y":0},{"x":1568032620000,"y":0},{"x":1568032680000,"y":0},{"x":1568032740000,"y":0},{"x":1568032800000,"y":0.01},{"x":1568032860000,"y":0},{"x":1568032920000,"y":0},{"x":1568032980000,"y":0},{"x":1568033040000,"y":0},{"x":1568033100000,"y":0},{"x":1568033160000,"y":0},{"x":1568033220000,"y":0},{"x":1568033280000,"y":0},{"x":1568033340000,"y":0},{"x":1568033400000,"y":0},{"x":1568033460000,"y":0},{"x":1568033520000,"y":0},{"x":1568033580000,"y":0},{"x":1568033640000,"y":0},{"x":1568033700000,"y":0},{"x":1568033760000,"y":0},{"x":1568033820000,"y":0.01},{"x":1568033880000,"y":0},{"x":1568033940000,"y":0},{"x":1568034000000,"y":0},{"x":1568034060000,"y":0},{"x":1568034120000,"y":0},{"x":1568034180000,"y":0},{"x":1568034240000,"y":0},{"x":1568034300000,"y":0},{"x":1568034360000,"y":0},{"x":1568034420000,"y":0},{"x":1568034480000,"y":0},{"x":1568034540000,"y":0.01},{"x":1568034600000,"y":0},{"x":1568034660000,"y":0},{"x":1568034720000,"y":0},{"x":1568034780000,"y":0},{"x":1568034840000,"y":0},{"x":1568034900000,"y":0},{"x":1568034960000,"y":0},{"x":1568035020000,"y":0},{"x":1568035080000,"y":0.01},{"x":1568035140000,"y":0},{"x":1568035200000,"y":0},{"x":1568035260000,"y":0},{"x":1568035320000,"y":0},{"x":1568035380000,"y":0},{"x":1568035440000,"y":0},{"x":1568035500000,"y":0},{"x":1568035560000,"y":0},{"x":1568035620000,"y":0},{"x":1568035680000,"y":0},{"x":1568035740000,"y":0},{"x":1568035800000,"y":0},{"x":1568035860000,"y":0},{"x":1568035920000,"y":0},{"x":1568035980000,"y":0},{"x":1568036040000,"y":0},{"x":1568036100000,"y":0.01},{"x":1568036160000,"y":0},{"x":1568036220000,"y":0},{"x":1568036280000,"y":0},{"x":1568036340000,"y":0},{"x":1568036400000,"y":0.01},{"x":1568036460000,"y":0},{"x":1568036520000,"y":0},{"x":1568036580000,"y":0},{"x":1568036640000,"y":0},{"x":1568036700000,"y":0},{"x":1568036760000,"y":0},{"x":1568036820000,"y":0},{"x":1568036880000,"y":0},{"x":1568036940000,"y":0},{"x":1568037000000,"y":0},{"x":1568037060000,"y":0},{"x":1568037120000,"y":0},{"x":1568037180000,"y":0},{"x":1568037240000,"y":0},{"x":1568037300000,"y":0},{"x":1568037360000,"y":0},{"x":1568037420000,"y":0},{"x":1568037480000,"y":0},{"x":1568037540000,"y":0},{"x":1568037600000,"y":0},{"x":1568037660000,"y":0},{"x":1568037720000,"y":0},{"x":1568037780000,"y":0},{"x":1568037840000,"y":0},{"x":1568037900000,"y":0},{"x":1568037960000,"y":0},{"x":1568038020000,"y":0},{"x":1568038080000,"y":0},{"x":1568038140000,"y":0.01},{"x":1568038200000,"y":0},{"x":1568038260000,"y":0},{"x":1568038320000,"y":0},{"x":1568038380000,"y":0},{"x":1568038440000,"y":0},{"x":1568038500000,"y":0},{"x":1568038560000,"y":0},{"x":1568038620000,"y":0},{"x":1568038680000,"y":0},{"x":1568038740000,"y":0},{"x":1568038800000,"y":0},{"x":1568038860000,"y":0},{"x":1568038920000,"y":0},{"x":1568038980000,"y":0},{"x":1568039040000,"y":0},{"x":1568039100000,"y":0},{"x":1568039160000,"y":0},{"x":1568039220000,"y":0},{"x":1568039280000,"y":0},{"x":1568039340000,"y":0},{"x":1568039400000,"y":0.11},{"x":1568039460000,"y":0},{"x":1568039520000,"y":0},{"x":1568039580000,"y":0},{"x":1568039640000,"y":0},{"x":1568039700000,"y":0},{"x":1568039760000,"y":0},{"x":1568039820000,"y":0},{"x":1568039880000,"y":0.01},{"x":1568039940000,"y":0},{"x":1568040000000,"y":0},{"x":1568040060000,"y":0},{"x":1568040120000,"y":0},{"x":1568040180000,"y":0},{"x":1568040240000,"y":0},{"x":1568040300000,"y":0},{"x":1568040360000,"y":0},{"x":1568040420000,"y":0},{"x":1568040480000,"y":0},{"x":1568040540000,"y":0},{"x":1568040600000,"y":0},{"x":1568040660000,"y":0},{"x":1568040720000,"y":0},{"x":1568040780000,"y":0},{"x":1568040840000,"y":0},{"x":1568040900000,"y":0},{"x":1568040960000,"y":0},{"x":1568041020000,"y":0},{"x":1568041080000,"y":0},{"x":1568041140000,"y":0},{"x":1568041200000,"y":0},{"x":1568041260000,"y":0},{"x":1568041320000,"y":0},{"x":1568041380000,"y":0},{"x":1568041440000,"y":0},{"x":1568041500000,"y":0},{"x":1568041560000,"y":0},{"x":1568041620000,"y":0},{"x":1568041680000,"y":0},{"x":1568041740000,"y":0.01},{"x":1568041800000,"y":0},{"x":1568041860000,"y":0},{"x":1568041920000,"y":0},{"x":1568041980000,"y":0},{"x":1568042040000,"y":0},{"x":1568042100000,"y":0},{"x":1568042160000,"y":0},{"x":1568042220000,"y":0},{"x":1568042280000,"y":0},{"x":1568042340000,"y":0},{"x":1568042400000,"y":0},{"x":1568042460000,"y":0},{"x":1568042520000,"y":0},{"x":1568042580000,"y":0},{"x":1568042640000,"y":0},{"x":1568042700000,"y":0},{"x":1568042760000,"y":0},{"x":1568042820000,"y":0},{"x":1568042880000,"y":0},{"x":1568042940000,"y":0},{"x":1568043000000,"y":0},{"x":1568043060000,"y":0},{"x":1568043120000,"y":0},{"x":1568043180000,"y":0},{"x":1568043240000,"y":0},{"x":1568043300000,"y":0},{"x":1568043360000,"y":0},{"x":1568043420000,"y":0},{"x":1568043480000,"y":0},{"x":1568043540000,"y":0},{"x":1568043600000,"y":0},{"x":1568043660000,"y":0},{"x":1568043720000,"y":0},{"x":1568043780000,"y":0.55},{"x":1568043840000,"y":0},{"x":1568043900000,"y":0},{"x":1568043960000,"y":0},{"x":1568044020000,"y":0},{"x":1568044080000,"y":0},{"x":1568044140000,"y":0},{"x":1568044200000,"y":0},{"x":1568044260000,"y":0},{"x":1568044320000,"y":0},{"x":1568044380000,"y":0},{"x":1568044440000,"y":0},{"x":1568044500000,"y":0},{"x":1568044560000,"y":0},{"x":1568044620000,"y":0},{"x":1568044680000,"y":0},{"x":1568044740000,"y":0},{"x":1568044800000,"y":0},{"x":1568044860000,"y":0},{"x":1568044920000,"y":0},{"x":1568044980000,"y":0},{"x":1568045040000,"y":0},{"x":1568045100000,"y":0},{"x":1568045160000,"y":0},{"x":1568045220000,"y":0},{"x":1568045280000,"y":0},{"x":1568045340000,"y":0},{"x":1568045400000,"y":0},{"x":1568045460000,"y":0},{"x":1568045520000,"y":0},{"x":1568045580000,"y":0},{"x":1568045640000,"y":0},{"x":1568045700000,"y":0},{"x":1568045760000,"y":0},{"x":1568045820000,"y":0},{"x":1568045880000,"y":0},{"x":1568045940000,"y":0},{"x":1568046000000,"y":0},{"x":1568046060000,"y":0},{"x":1568046120000,"y":0},{"x":1568046180000,"y":0},{"x":1568046240000,"y":0},{"x":1568046300000,"y":0},{"x":1568046360000,"y":0},{"x":1568046420000,"y":0},{"x":1568046480000,"y":0},{"x":1568046540000,"y":0},{"x":1568046600000,"y":0},{"x":1568046660000,"y":0},{"x":1568046720000,"y":0},{"x":1568046780000,"y":0},{"x":1568046840000,"y":0},{"x":1568046900000,"y":0},{"x":1568046960000,"y":0},{"x":1568047020000,"y":0},{"x":1568047080000,"y":0},{"x":1568047140000,"y":0},{"x":1568047200000,"y":0},{"x":1568047260000,"y":0},{"x":1568047320000,"y":0.01},{"x":1568047380000,"y":0},{"x":1568047440000,"y":0},{"x":1568047500000,"y":0},{"x":1568047560000,"y":0},{"x":1568047620000,"y":0},{"x":1568047680000,"y":0},{"x":1568047740000,"y":0},{"x":1568047800000,"y":0},{"x":1568047860000,"y":0},{"x":1568047920000,"y":0},{"x":1568047980000,"y":0},{"x":1568048040000,"y":0},{"x":1568048100000,"y":0},{"x":1568048160000,"y":0},{"x":1568048220000,"y":0},{"x":1568048280000,"y":0},{"x":1568048340000,"y":0},{"x":1568048400000,"y":0},{"x":1568048460000,"y":0},{"x":1568048520000,"y":0},{"x":1568048580000,"y":0},{"x":1568048640000,"y":0},{"x":1568048700000,"y":0},{"x":1568048760000,"y":0},{"x":1568048820000,"y":0},{"x":1568048880000,"y":0},{"x":1568048940000,"y":0},{"x":1568049000000,"y":0},{"x":1568049060000,"y":0},{"x":1568049120000,"y":0},{"x":1568049180000,"y":0},{"x":1568049240000,"y":0},{"x":1568049300000,"y":0},{"x":1568049360000,"y":0},{"x":1568049420000,"y":0},{"x":1568049480000,"y":0},{"x":1568049540000,"y":0.04},{"x":1568049600000,"y":0},{"x":1568049660000,"y":0},{"x":1568049720000,"y":0},{"x":1568049780000,"y":0},{"x":1568049840000,"y":0},{"x":1568049900000,"y":0},{"x":1568049960000,"y":0},{"x":1568050020000,"y":0},{"x":1568050080000,"y":0},{"x":1568050140000,"y":0},{"x":1568050200000,"y":0},{"x":1568050260000,"y":0},{"x":1568050320000,"y":0},{"x":1568050380000,"y":0},{"x":1568050440000,"y":0},{"x":1568050500000,"y":0},{"x":1568050560000,"y":0},{"x":1568050620000,"y":0},{"x":1568050680000,"y":0},{"x":1568050740000,"y":0.31},{"x":1568050800000,"y":0.19},{"x":1568050860000,"y":0},{"x":1568050920000,"y":0},{"x":1568050980000,"y":0.01},{"x":1568051040000,"y":0},{"x":1568051100000,"y":0},{"x":1568051160000,"y":0},{"x":1568051220000,"y":0},{"x":1568051280000,"y":0},{"x":1568051340000,"y":0},{"x":1568051400000,"y":0},{"x":1568051460000,"y":0},{"x":1568051520000,"y":0},{"x":1568051580000,"y":0},{"x":1568051640000,"y":0},{"x":1568051700000,"y":0},{"x":1568051760000,"y":0.01},{"x":1568051820000,"y":0},{"x":1568051880000,"y":0},{"x":1568051940000,"y":0},{"x":1568052000000,"y":0},{"x":1568052060000,"y":0},{"x":1568052120000,"y":0},{"x":1568052180000,"y":0},{"x":1568052240000,"y":0},{"x":1568052300000,"y":2.29},{"x":1568052360000,"y":1.39},{"x":1568052420000,"y":1.59},{"x":1568052480000,"y":0.01},{"x":1568052540000,"y":0.02},{"x":1568052600000,"y":1.51},{"x":1568052660000,"y":0},{"x":1568052720000,"y":0.01},{"x":1568052780000,"y":0},{"x":1568052840000,"y":0},{"x":1568052900000,"y":0},{"x":1568052960000,"y":0},{"x":1568053020000,"y":0},{"x":1568053080000,"y":0},{"x":1568053140000,"y":0},{"x":1568053200000,"y":0},{"x":1568053260000,"y":0},{"x":1568053320000,"y":0},{"x":1568053380000,"y":0},{"x":1568053440000,"y":0},{"x":1568053500000,"y":0},{"x":1568053560000,"y":0},{"x":1568053620000,"y":0},{"x":1568053680000,"y":0},{"x":1568053740000,"y":0.85},{"x":1568053800000,"y":24.49},{"x":1568053860000,"y":22.98},{"x":1568053920000,"y":59.58},{"x":1568053980000,"y":0},{"x":1568054040000,"y":0},{"x":1568054100000,"y":0},{"x":1568054160000,"y":0},{"x":1568054220000,"y":0},{"x":1568054280000,"y":0},{"x":1568054340000,"y":0},{"x":1568054400000,"y":0},{"x":1568054460000,"y":0},{"x":1568054520000,"y":0.01},{"x":1568054580000,"y":0.01},{"x":1568054640000,"y":2.99},{"x":1568054700000,"y":0},{"x":1568054760000,"y":0},{"x":1568054820000,"y":0},{"x":1568054880000,"y":1.97},{"x":1568054940000,"y":0.1},{"x":1568055000000,"y":0.32},{"x":1568055060000,"y":0},{"x":1568055120000,"y":0},{"x":1568055180000,"y":0},{"x":1568055240000,"y":0},{"x":1568055300000,"y":0},{"x":1568055360000,"y":0.04},{"x":1568055420000,"y":3.92},{"x":1568055480000,"y":1.96},{"x":1568055540000,"y":1.96},{"x":1568055600000,"y":0},{"x":1568055660000,"y":0},{"x":1568055720000,"y":0.01},{"x":1568055780000,"y":0.02},{"x":1568055840000,"y":0.02},{"x":1568055900000,"y":3.95},{"x":1568055960000,"y":2.03},{"x":1568056020000,"y":0.66},{"x":1568056080000,"y":0},{"x":1568056140000,"y":0.01},{"x":1568056200000,"y":1.31},{"x":1568056260000,"y":1.4},{"x":1568056320000,"y":0.82},{"x":1568056380000,"y":0},{"x":1568056440000,"y":0.03},{"x":1568056500000,"y":0.83},{"x":1568056560000,"y":0.01},{"x":1568056620000,"y":1.48},{"x":1568056680000,"y":0},{"x":1568056740000,"y":0},{"x":1568056800000,"y":0},{"x":1568056860000,"y":0},{"x":1568056920000,"y":0},{"x":1568056980000,"y":0.01},{"x":1568057040000,"y":0},{"x":1568057100000,"y":0},{"x":1568057160000,"y":0},{"x":1568057220000,"y":0},{"x":1568057280000,"y":0},{"x":1568057340000,"y":0.01},{"x":1568057400000,"y":0},{"x":1568057460000,"y":0},{"x":1568057520000,"y":0},{"x":1568057580000,"y":0},{"x":1568057640000,"y":0},{"x":1568057700000,"y":0},{"x":1568057760000,"y":0},{"x":1568057820000,"y":0},{"x":1568057880000,"y":0.01},{"x":1568057940000,"y":0},{"x":1568058000000,"y":0},{"x":1568058060000,"y":0},{"x":1568058120000,"y":0},{"x":1568058180000,"y":0},{"x":1568058240000,"y":0},{"x":1568058300000,"y":0},{"x":1568058360000,"y":0},{"x":1568058420000,"y":0.01},{"x":1568058480000,"y":0.01},{"x":1568058540000,"y":0},{"x":1568058600000,"y":0.01},{"x":1568058660000,"y":0},{"x":1568058720000,"y":0},{"x":1568058780000,"y":0},{"x":1568058840000,"y":0},{"x":1568058900000,"y":0},{"x":1568058960000,"y":0},{"x":1568059020000,"y":0},{"x":1568059080000,"y":0},{"x":1568059140000,"y":0},{"x":1568059200000,"y":0},{"x":1568059260000,"y":0},{"x":1568059320000,"y":0},{"x":1568059380000,"y":0},{"x":1568059440000,"y":0},{"x":1568059500000,"y":0},{"x":1568059560000,"y":0},{"x":1568059620000,"y":1.3},{"x":1568059680000,"y":0.02},{"x":1568059740000,"y":0.01},{"x":1568059800000,"y":0},{"x":1568059860000,"y":0.01},{"x":1568059920000,"y":0},{"x":1568059980000,"y":0},{"x":1568060040000,"y":1.24},{"x":1568060100000,"y":0.02},{"x":1568060160000,"y":0.01},{"x":1568060220000,"y":0},{"x":1568060280000,"y":0},{"x":1568060340000,"y":0},{"x":1568060400000,"y":0},{"x":1568060460000,"y":0},{"x":1568060520000,"y":0},{"x":1568060580000,"y":0},{"x":1568060640000,"y":0},{"x":1568060700000,"y":4.38},{"x":1568060760000,"y":0},{"x":1568060820000,"y":0},{"x":1568060880000,"y":0},{"x":1568060940000,"y":0},{"x":1568061000000,"y":0},{"x":1568061060000,"y":0},{"x":1568061120000,"y":0},{"x":1568061180000,"y":0.84},{"x":1568061240000,"y":2.8},{"x":1568061300000,"y":0},{"x":1568061360000,"y":0},{"x":1568061420000,"y":0},{"x":1568061480000,"y":0},{"x":1568061540000,"y":0},{"x":1568061600000,"y":0},{"x":1568061660000,"y":1.96},{"x":1568061720000,"y":0.03},{"x":1568061780000,"y":0},{"x":1568061840000,"y":1.55},{"x":1568061900000,"y":0.01},{"x":1568061960000,"y":0},{"x":1568062020000,"y":0.3},{"x":1568062080000,"y":0.02},{"x":1568062140000,"y":0},{"x":1568062200000,"y":0.19},{"x":1568062260000,"y":0.65},{"x":1568062320000,"y":0},{"x":1568062380000,"y":0},{"x":1568062440000,"y":0.02},{"x":1568062500000,"y":0},{"x":1568062560000,"y":0},{"x":1568062620000,"y":0},{"x":1568062680000,"y":0},{"x":1568062740000,"y":0},{"x":1568062800000,"y":0},{"x":1568062860000,"y":0},{"x":1568062920000,"y":0},{"x":1568062980000,"y":2.92},{"x":1568063040000,"y":0.01},{"x":1568063100000,"y":0},{"x":1568063160000,"y":0},{"x":1568063220000,"y":0.01},{"x":1568063280000,"y":0.01},{"x":1568063340000,"y":0.01},{"x":1568063400000,"y":0},{"x":1568063460000,"y":0},{"x":1568063520000,"y":0.03},{"x":1568063580000,"y":0.02},{"x":1568063640000,"y":0.03},{"x":1568063700000,"y":2.07},{"x":1568063760000,"y":0.52},{"x":1568063820000,"y":1.25},{"x":1568063880000,"y":0.01},{"x":1568063940000,"y":0},{"x":1568064000000,"y":0.01},{"x":1568064060000,"y":0.01},{"x":1568064120000,"y":0},{"x":1568064180000,"y":1.18},{"x":1568064240000,"y":0.62},{"x":1568064300000,"y":1.99},{"x":1568064360000,"y":0},{"x":1568064420000,"y":0},{"x":1568064480000,"y":3.63},{"x":1568064540000,"y":0.85},{"x":1568064600000,"y":0},{"x":1568064660000,"y":0},{"x":1568064720000,"y":0.48},{"x":1568064780000,"y":0},{"x":1568064840000,"y":2.75},{"x":1568064900000,"y":0.89},{"x":1568064960000,"y":0.53},{"x":1568065020000,"y":0.01},{"x":1568065080000,"y":0.01},{"x":1568065140000,"y":0},{"x":1568065200000,"y":0},{"x":1568065260000,"y":0},{"x":1568065320000,"y":0},{"x":1568065380000,"y":0},{"x":1568065440000,"y":0},{"x":1568065500000,"y":0},{"x":1568065560000,"y":0},{"x":1568065620000,"y":0},{"x":1568065680000,"y":0},{"x":1568065740000,"y":0},{"x":1568065800000,"y":0},{"x":1568065860000,"y":1.86},{"x":1568065920000,"y":0},{"x":1568065980000,"y":0.39},{"x":1568066040000,"y":0.45},{"x":1568066100000,"y":0},{"x":1568066160000,"y":0},{"x":1568066220000,"y":0},{"x":1568066280000,"y":0.4},{"x":1568066340000,"y":0},{"x":1568066400000,"y":0},{"x":1568066460000,"y":0},{"x":1568066520000,"y":0},{"x":1568066580000,"y":0},{"x":1568066640000,"y":0},{"x":1568066700000,"y":0},{"x":1568066760000,"y":0},{"x":1568066820000,"y":0.27},{"x":1568066880000,"y":0},{"x":1568066940000,"y":0.01},{"x":1568067000000,"y":0.88},{"x":1568067060000,"y":0},{"x":1568067120000,"y":0.07},{"x":1568067180000,"y":0.05},{"x":1568067240000,"y":0.11},{"x":1568067300000,"y":0.04},{"x":1568067360000,"y":0.89},{"x":1568067420000,"y":1.74},{"x":1568067480000,"y":1.67},{"x":1568067540000,"y":0.01},{"x":1568067600000,"y":0},{"x":1568067660000,"y":0},{"x":1568067720000,"y":0},{"x":1568067780000,"y":0},{"x":1568067840000,"y":0},{"x":1568067900000,"y":0},{"x":1568067960000,"y":0},{"x":1568068020000,"y":0},{"x":1568068080000,"y":0},{"x":1568068140000,"y":0},{"x":1568068200000,"y":0},{"x":1568068260000,"y":0},{"x":1568068320000,"y":0.01},{"x":1568068380000,"y":0.01},{"x":1568068440000,"y":0},{"x":1568068500000,"y":0},{"x":1568068560000,"y":0},{"x":1568068620000,"y":0},{"x":1568068680000,"y":0},{"x":1568068740000,"y":0},{"x":1568068800000,"y":0.08},{"x":1568068860000,"y":0.03},{"x":1568068920000,"y":0.01},{"x":1568068980000,"y":0},{"x":1568069040000,"y":0.01},{"x":1568069100000,"y":0},{"x":1568069160000,"y":0},{"x":1568069220000,"y":0.01},{"x":1568069280000,"y":0.01},{"x":1568069340000,"y":0},{"x":1568069400000,"y":0},{"x":1568069460000,"y":0.01},{"x":1568069520000,"y":0.04},{"x":1568069580000,"y":0.03},{"x":1568069640000,"y":2.3},{"x":1568069700000,"y":2.3},{"x":1568069760000,"y":0.01},{"x":1568069820000,"y":2.37},{"x":1568069880000,"y":0.01},{"x":1568069940000,"y":0.56},{"x":1568070000000,"y":0.03},{"x":1568070060000,"y":0.55},{"x":1568070120000,"y":0.01},{"x":1568070180000,"y":0},{"x":1568070240000,"y":0},{"x":1568070300000,"y":1.83},{"x":1568070360000,"y":0.23},{"x":1568070420000,"y":0.01},{"x":1568070480000,"y":0.01},{"x":1568070540000,"y":0.91},{"x":1568070600000,"y":0},{"x":1568070660000,"y":0},{"x":1568070720000,"y":0},{"x":1568070780000,"y":0},{"x":1568070840000,"y":0},{"x":1568070900000,"y":0},{"x":1568070960000,"y":0},{"x":1568071020000,"y":0},{"x":1568071080000,"y":0},{"x":1568071140000,"y":0},{"x":1568071200000,"y":0},{"x":1568071260000,"y":0},{"x":1568071320000,"y":0},{"x":1568071380000,"y":0.01},{"x":1568071440000,"y":0},{"x":1568071500000,"y":0},{"x":1568071560000,"y":0},{"x":1568071620000,"y":0},{"x":1568071680000,"y":0},{"x":1568071740000,"y":0},{"x":1568071800000,"y":0},{"x":1568071860000,"y":0},{"x":1568071920000,"y":0},{"x":1568071980000,"y":0},{"x":1568072040000,"y":0},{"x":1568072100000,"y":0},{"x":1568072160000,"y":0},{"x":1568072220000,"y":0},{"x":1568072280000,"y":0},{"x":1568072340000,"y":0},{"x":1568072400000,"y":0},{"x":1568072460000,"y":0},{"x":1568072520000,"y":0},{"x":1568072580000,"y":0},{"x":1568072640000,"y":0},{"x":1568072700000,"y":0},{"x":1568072760000,"y":0},{"x":1568072820000,"y":0},{"x":1568072880000,"y":0},{"x":1568072940000,"y":0},{"x":1568073000000,"y":0},{"x":1568073060000,"y":0},{"x":1568073120000,"y":0},{"x":1568073180000,"y":0},{"x":1568073240000,"y":0},{"x":1568073300000,"y":0},{"x":1568073360000,"y":0},{"x":1568073420000,"y":0},{"x":1568073480000,"y":0},{"x":1568073540000,"y":0},{"x":1568073600000,"y":0},{"x":1568073660000,"y":0},{"x":1568073720000,"y":0},{"x":1568073780000,"y":0},{"x":1568073840000,"y":0},{"x":1568073900000,"y":0},{"x":1568073960000,"y":0},{"x":1568074020000,"y":0},{"x":1568074080000,"y":0},{"x":1568074140000,"y":0},{"x":1568074200000,"y":0},{"x":1568074260000,"y":0},{"x":1568074320000,"y":0},{"x":1568074380000,"y":0},{"x":1568074440000,"y":0},{"x":1568074500000,"y":0},{"x":1568074560000,"y":0},{"x":1568074620000,"y":0},{"x":1568074680000,"y":0},{"x":1568074740000,"y":0},{"x":1568074800000,"y":0},{"x":1568074860000,"y":0},{"x":1568074920000,"y":0},{"x":1568074980000,"y":0},{"x":1568075040000,"y":0},{"x":1568075100000,"y":0},{"x":1568075160000,"y":0},{"x":1568075220000,"y":0},{"x":1568075280000,"y":0},{"x":1568075340000,"y":0},{"x":1568075400000,"y":0},{"x":1568075460000,"y":0},{"x":1568075520000,"y":0},{"x":1568075580000,"y":0},{"x":1568075640000,"y":0},{"x":1568075700000,"y":0},{"x":1568075760000,"y":0},{"x":1568075820000,"y":0},{"x":1568075880000,"y":0},{"x":1568075940000,"y":0},{"x":1568076000000,"y":0},{"x":1568076060000,"y":0},{"x":1568076120000,"y":0},{"x":1568076180000,"y":0},{"x":1568076240000,"y":0},{"x":1568076300000,"y":0},{"x":1568076360000,"y":0},{"x":1568076420000,"y":0},{"x":1568076480000,"y":0},{"x":1568076540000,"y":0},{"x":1568076600000,"y":0},{"x":1568076660000,"y":0},{"x":1568076720000,"y":0},{"x":1568076780000,"y":0},{"x":1568076840000,"y":0},{"x":1568076900000,"y":0},{"x":1568076960000,"y":0},{"x":1568077020000,"y":0},{"x":1568077080000,"y":0.01},{"x":1568077140000,"y":0},{"x":1568077200000,"y":0},{"x":1568077260000,"y":0},{"x":1568077320000,"y":0},{"x":1568077380000,"y":0},{"x":1568077440000,"y":0},{"x":1568077500000,"y":0},{"x":1568077560000,"y":0.01},{"x":1568077620000,"y":0.01},{"x":1568077680000,"y":0},{"x":1568077740000,"y":0},{"x":1568077800000,"y":0},{"x":1568077860000,"y":0},{"x":1568077920000,"y":0},{"x":1568077980000,"y":0},{"x":1568078040000,"y":0},{"x":1568078100000,"y":0},{"x":1568078160000,"y":0},{"x":1568078220000,"y":0},{"x":1568078280000,"y":0},{"x":1568078340000,"y":0},{"x":1568078400000,"y":0},{"x":1568078460000,"y":0},{"x":1568078520000,"y":0},{"x":1568078580000,"y":0},{"x":1568078640000,"y":0},{"x":1568078700000,"y":0},{"x":1568078760000,"y":0},{"x":1568078820000,"y":0.01},{"x":1568078880000,"y":0},{"x":1568078940000,"y":0},{"x":1568079000000,"y":0},{"x":1568079060000,"y":0},{"x":1568079120000,"y":0},{"x":1568079180000,"y":0},{"x":1568079240000,"y":0},{"x":1568079300000,"y":0},{"x":1568079360000,"y":0},{"x":1568079420000,"y":0},{"x":1568079480000,"y":0},{"x":1568079540000,"y":0},{"x":1568079600000,"y":0},{"x":1568079660000,"y":0},{"x":1568079720000,"y":0},{"x":1568079780000,"y":0},{"x":1568079840000,"y":0},{"x":1568079900000,"y":0},{"x":1568079960000,"y":0},{"x":1568080020000,"y":0},{"x":1568080080000,"y":0},{"x":1568080140000,"y":0},{"x":1568080200000,"y":0},{"x":1568080260000,"y":0},{"x":1568080320000,"y":0},{"x":1568080380000,"y":0},{"x":1568080440000,"y":0},{"x":1568080500000,"y":0},{"x":1568080560000,"y":0},{"x":1568080620000,"y":0},{"x":1568080680000,"y":0},{"x":1568080740000,"y":0},{"x":1568080800000,"y":0},{"x":1568080860000,"y":0},{"x":1568080920000,"y":0},{"x":1568080980000,"y":0},{"x":1568081040000,"y":0},{"x":1568081100000,"y":0},{"x":1568081160000,"y":0},{"x":1568081220000,"y":0},{"x":1568081280000,"y":0},{"x":1568081340000,"y":0},{"x":1568081400000,"y":0},{"x":1568081460000,"y":0},{"x":1568081520000,"y":0},{"x":1568081580000,"y":0},{"x":1568081640000,"y":0},{"x":1568081700000,"y":0},{"x":1568081760000,"y":0},{"x":1568081820000,"y":0},{"x":1568081880000,"y":0},{"x":1568081940000,"y":0},{"x":1568082000000,"y":0},{"x":1568082060000,"y":0},{"x":1568082120000,"y":0},{"x":1568082180000,"y":0},{"x":1568082240000,"y":0},{"x":1568082300000,"y":0},{"x":1568082360000,"y":0},{"x":1568082420000,"y":0},{"x":1568082480000,"y":0},{"x":1568082540000,"y":0},{"x":1568082600000,"y":0},{"x":1568082660000,"y":0},{"x":1568082720000,"y":0},{"x":1568082780000,"y":0},{"x":1568082840000,"y":0},{"x":1568082900000,"y":0},{"x":1568082960000,"y":0},{"x":1568083020000,"y":0},{"x":1568083080000,"y":0},{"x":1568083140000,"y":0},{"x":1568083200000,"y":0},{"x":1568083260000,"y":0},{"x":1568083320000,"y":0},{"x":1568083380000,"y":0},{"x":1568083440000,"y":0},{"x":1568083500000,"y":0},{"x":1568083560000,"y":0},{"x":1568083620000,"y":0},{"x":1568083680000,"y":0},{"x":1568083740000,"y":0},{"x":1568083800000,"y":0},{"x":1568083860000,"y":0},{"x":1568083920000,"y":0},{"x":1568083980000,"y":0},{"x":1568084040000,"y":0},{"x":1568084100000,"y":0},{"x":1568084160000,"y":0},{"x":1568084220000,"y":0},{"x":1568084280000,"y":0},{"x":1568084340000,"y":0},{"x":1568084400000,"y":0},{"x":1568084460000,"y":0},{"x":1568084520000,"y":0},{"x":1568084580000,"y":0},{"x":1568084640000,"y":0},{"x":1568084700000,"y":0},{"x":1568084760000,"y":0},{"x":1568084820000,"y":0},{"x":1568084880000,"y":0},{"x":1568084940000,"y":0},{"x":1568085000000,"y":0},{"x":1568085060000,"y":0},{"x":1568085120000,"y":0},{"x":1568085180000,"y":0},{"x":1568085240000,"y":0},{"x":1568085300000,"y":0},{"x":1568085360000,"y":0},{"x":1568085420000,"y":0},{"x":1568085480000,"y":0},{"x":1568085540000,"y":0},{"x":1568085600000,"y":0},{"x":1568085660000,"y":0},{"x":1568085720000,"y":0},{"x":1568085780000,"y":0},{"x":1568085840000,"y":0},{"x":1568085900000,"y":0},{"x":1568085960000,"y":0},{"x":1568086020000,"y":0},{"x":1568086080000,"y":0},{"x":1568086140000,"y":0},{"x":1568086200000,"y":0},{"x":1568086260000,"y":0},{"x":1568086320000,"y":0},{"x":1568086380000,"y":0},{"x":1568086440000,"y":0},{"x":1568086500000,"y":0},{"x":1568086560000,"y":0},{"x":1568086620000,"y":0},{"x":1568086680000,"y":0},{"x":1568086740000,"y":0},{"x":1568086800000,"y":0},{"x":1568086860000,"y":0},{"x":1568086920000,"y":0},{"x":1568086980000,"y":0},{"x":1568087040000,"y":0},{"x":1568087100000,"y":0},{"x":1568087160000,"y":0},{"x":1568087220000,"y":0},{"x":1568087280000,"y":0},{"x":1568087340000,"y":0},{"x":1568087400000,"y":0},{"x":1568087460000,"y":0},{"x":1568087520000,"y":0},{"x":1568087580000,"y":0},{"x":1568087640000,"y":0},{"x":1568087700000,"y":0},{"x":1568087760000,"y":0},{"x":1568087820000,"y":0},{"x":1568087880000,"y":0},{"x":1568087940000,"y":0},{"x":1568088000000,"y":0},{"x":1568088060000,"y":0},{"x":1568088120000,"y":0},{"x":1568088180000,"y":0},{"x":1568088240000,"y":0},{"x":1568088300000,"y":0},{"x":1568088360000,"y":0},{"x":1568088420000,"y":0},{"x":1568088480000,"y":0},{"x":1568088540000,"y":0},{"x":1568088600000,"y":0},{"x":1568088660000,"y":0},{"x":1568088720000,"y":0},{"x":1568088780000,"y":0},{"x":1568088840000,"y":0},{"x":1568088900000,"y":0},{"x":1568088960000,"y":0},{"x":1568089020000,"y":0},{"x":1568089080000,"y":0},{"x":1568089140000,"y":0},{"x":1568089200000,"y":0},{"x":1568089260000,"y":0},{"x":1568089320000,"y":0},{"x":1568089380000,"y":0},{"x":1568089440000,"y":0},{"x":1568089500000,"y":0},{"x":1568089560000,"y":0},{"x":1568089620000,"y":0},{"x":1568089680000,"y":0},{"x":1568089740000,"y":0},{"x":1568089800000,"y":0.02},{"x":1568089860000,"y":0},{"x":1568089920000,"y":0},{"x":1568089980000,"y":0.02},{"x":1568090040000,"y":0},{"x":1568090100000,"y":0},{"x":1568090160000,"y":0},{"x":1568090220000,"y":0},{"x":1568090280000,"y":0},{"x":1568090340000,"y":0},{"x":1568090400000,"y":0},{"x":1568090460000,"y":0},{"x":1568090520000,"y":0},{"x":1568090580000,"y":0},{"x":1568090640000,"y":0},{"x":1568090700000,"y":0},{"x":1568090760000,"y":0},{"x":1568090820000,"y":0},{"x":1568090880000,"y":0},{"x":1568090940000,"y":0},{"x":1568091000000,"y":0},{"x":1568091060000,"y":0},{"x":1568091120000,"y":0},{"x":1568091180000,"y":0},{"x":1568091240000,"y":0},{"x":1568091300000,"y":0},{"x":1568091360000,"y":0},{"x":1568091420000,"y":0},{"x":1568091480000,"y":0},{"x":1568091540000,"y":0},{"x":1568091600000,"y":0},{"x":1568091660000,"y":0},{"x":1568091720000,"y":0},{"x":1568091780000,"y":0},{"x":1568091840000,"y":0},{"x":1568091900000,"y":0},{"x":1568091960000,"y":0},{"x":1568092020000,"y":0},{"x":1568092080000,"y":0},{"x":1568092140000,"y":0},{"x":1568092200000,"y":0},{"x":1568092260000,"y":0},{"x":1568092320000,"y":0},{"x":1568092380000,"y":0},{"x":1568092440000,"y":0},{"x":1568092500000,"y":0},{"x":1568092560000,"y":0.01},{"x":1568092620000,"y":0},{"x":1568092680000,"y":0},{"x":1568092740000,"y":0},{"x":1568092800000,"y":0},{"x":1568092860000,"y":0},{"x":1568092920000,"y":0},{"x":1568092980000,"y":0},{"x":1568093040000,"y":0},{"x":1568093100000,"y":0},{"x":1568093160000,"y":0},{"x":1568093220000,"y":0},{"x":1568093280000,"y":0},{"x":1568093340000,"y":0},{"x":1568093400000,"y":0},{"x":1568093460000,"y":0},{"x":1568093520000,"y":0},{"x":1568093580000,"y":0},{"x":1568093640000,"y":0},{"x":1568093700000,"y":0},{"x":1568093760000,"y":0},{"x":1568093820000,"y":0},{"x":1568093880000,"y":0},{"x":1568093940000,"y":0.01},{"x":1568094000000,"y":0},{"x":1568094060000,"y":0},{"x":1568094120000,"y":0},{"x":1568094180000,"y":0},{"x":1568094240000,"y":0},{"x":1568094300000,"y":0},{"x":1568094360000,"y":0},{"x":1568094420000,"y":0},{"x":1568094480000,"y":0},{"x":1568094540000,"y":0},{"x":1568094600000,"y":0},{"x":1568094660000,"y":0},{"x":1568094720000,"y":0},{"x":1568094780000,"y":0},{"x":1568094840000,"y":0},{"x":1568094900000,"y":0},{"x":1568094960000,"y":0},{"x":1568095020000,"y":0},{"x":1568095080000,"y":0},{"x":1568095140000,"y":0},{"x":1568095200000,"y":0},{"x":1568095260000,"y":0},{"x":1568095320000,"y":0},{"x":1568095380000,"y":0},{"x":1568095440000,"y":0},{"x":1568095500000,"y":0},{"x":1568095560000,"y":0.01},{"x":1568095620000,"y":0},{"x":1568095680000,"y":0},{"x":1568095740000,"y":0},{"x":1568095800000,"y":0},{"x":1568095860000,"y":0},{"x":1568095920000,"y":0},{"x":1568095980000,"y":0},{"x":1568096040000,"y":0},{"x":1568096100000,"y":0},{"x":1568096160000,"y":0},{"x":1568096220000,"y":0},{"x":1568096280000,"y":0},{"x":1568096340000,"y":0},{"x":1568096400000,"y":0},{"x":1568096460000,"y":0},{"x":1568096520000,"y":0},{"x":1568096580000,"y":0},{"x":1568096640000,"y":0},{"x":1568096700000,"y":0},{"x":1568096760000,"y":0},{"x":1568096820000,"y":0},{"x":1568096880000,"y":0},{"x":1568096940000,"y":0.03},{"x":1568097000000,"y":0},{"x":1568097060000,"y":0},{"x":1568097120000,"y":0},{"x":1568097180000,"y":0},{"x":1568097240000,"y":0},{"x":1568097300000,"y":0},{"x":1568097360000,"y":0},{"x":1568097420000,"y":0},{"x":1568097480000,"y":0},{"x":1568097540000,"y":0},{"x":1568097600000,"y":0},{"x":1568097660000,"y":0},{"x":1568097720000,"y":0},{"x":1568097780000,"y":0},{"x":1568097840000,"y":0},{"x":1568097900000,"y":0},{"x":1568097960000,"y":0},{"x":1568098020000,"y":0},{"x":1568098080000,"y":0},{"x":1568098140000,"y":0},{"x":1568098200000,"y":0},{"x":1568098260000,"y":0},{"x":1568098320000,"y":0},{"x":1568098380000,"y":0},{"x":1568098440000,"y":0},{"x":1568098500000,"y":0},{"x":1568098560000,"y":0},{"x":1568098620000,"y":0},{"x":1568098680000,"y":0},{"x":1568098740000,"y":0},{"x":1568098800000,"y":0},{"x":1568098860000,"y":0},{"x":1568098920000,"y":0},{"x":1568098980000,"y":0},{"x":1568099040000,"y":0},{"x":1568099100000,"y":0},{"x":1568099160000,"y":0},{"x":1568099220000,"y":0},{"x":1568099280000,"y":0},{"x":1568099340000,"y":0},{"x":1568099400000,"y":0},{"x":1568099460000,"y":0},{"x":1568099520000,"y":0},{"x":1568099580000,"y":0},{"x":1568099640000,"y":0},{"x":1568099700000,"y":0},{"x":1568099760000,"y":0},{"x":1568099820000,"y":0},{"x":1568099880000,"y":0},{"x":1568099940000,"y":0},{"x":1568100000000,"y":0},{"x":1568100060000,"y":0},{"x":1568100120000,"y":0},{"x":1568100180000,"y":0},{"x":1568100240000,"y":0},{"x":1568100300000,"y":0},{"x":1568100360000,"y":0},{"x":1568100420000,"y":0},{"x":1568100480000,"y":0},{"x":1568100540000,"y":0},{"x":1568100600000,"y":0},{"x":1568100660000,"y":0.01},{"x":1568100720000,"y":0},{"x":1568100780000,"y":0},{"x":1568100840000,"y":0},{"x":1568100900000,"y":0},{"x":1568100960000,"y":0},{"x":1568101020000,"y":0},{"x":1568101080000,"y":0},{"x":1568101140000,"y":0.06},{"x":1568101200000,"y":0},{"x":1568101260000,"y":0},{"x":1568101320000,"y":0},{"x":1568101380000,"y":0},{"x":1568101440000,"y":0},{"x":1568101500000,"y":0},{"x":1568101560000,"y":0},{"x":1568101620000,"y":0},{"x":1568101680000,"y":0},{"x":1568101740000,"y":0},{"x":1568101800000,"y":0},{"x":1568101860000,"y":0.01},{"x":1568101920000,"y":0},{"x":1568101980000,"y":0},{"x":1568102040000,"y":0},{"x":1568102100000,"y":0},{"x":1568102160000,"y":0},{"x":1568102220000,"y":0},{"x":1568102280000,"y":0},{"x":1568102340000,"y":0},{"x":1568102400000,"y":0},{"x":1568102460000,"y":0},{"x":1568102520000,"y":0},{"x":1568102580000,"y":0},{"x":1568102640000,"y":0},{"x":1568102700000,"y":0},{"x":1568102760000,"y":0},{"x":1568102820000,"y":0},{"x":1568102880000,"y":0},{"x":1568102940000,"y":0},{"x":1568103000000,"y":0},{"x":1568103060000,"y":0},{"x":1568103120000,"y":0},{"x":1568103180000,"y":0},{"x":1568103240000,"y":0},{"x":1568103300000,"y":0},{"x":1568103360000,"y":0},{"x":1568103420000,"y":0},{"x":1568103480000,"y":0},{"x":1568103540000,"y":0},{"x":1568103600000,"y":0},{"x":1568103660000,"y":0},{"x":1568103720000,"y":0},{"x":1568103780000,"y":0},{"x":1568103840000,"y":0},{"x":1568103900000,"y":0},{"x":1568103960000,"y":0},{"x":1568104020000,"y":0},{"x":1568104080000,"y":0},{"x":1568104140000,"y":0},{"x":1568104200000,"y":0},{"x":1568104260000,"y":0},{"x":1568104320000,"y":0},{"x":1568104380000,"y":0},{"x":1568104440000,"y":0},{"x":1568104500000,"y":0},{"x":1568104560000,"y":0},{"x":1568104620000,"y":0},{"x":1568104680000,"y":0},{"x":1568104740000,"y":0},{"x":1568104800000,"y":0},{"x":1568104860000,"y":0},{"x":1568104920000,"y":0},{"x":1568104980000,"y":0},{"x":1568105040000,"y":0},{"x":1568105100000,"y":0},{"x":1568105160000,"y":0},{"x":1568105220000,"y":0},{"x":1568105280000,"y":0},{"x":1568105340000,"y":0},{"x":1568105400000,"y":0},{"x":1568105460000,"y":0},{"x":1568105520000,"y":0},{"x":1568105580000,"y":0},{"x":1568105640000,"y":0},{"x":1568105700000,"y":0},{"x":1568105760000,"y":0},{"x":1568105820000,"y":0},{"x":1568105880000,"y":0},{"x":1568105940000,"y":0},{"x":1568106000000,"y":0},{"x":1568106060000,"y":0},{"x":1568106120000,"y":0},{"x":1568106180000,"y":0},{"x":1568106240000,"y":0},{"x":1568106300000,"y":0},{"x":1568106360000,"y":0},{"x":1568106420000,"y":0},{"x":1568106480000,"y":0},{"x":1568106540000,"y":0},{"x":1568106600000,"y":0},{"x":1568106660000,"y":0},{"x":1568106720000,"y":0},{"x":1568106780000,"y":0},{"x":1568106840000,"y":0},{"x":1568106900000,"y":0},{"x":1568106960000,"y":0},{"x":1568107020000,"y":0},{"x":1568107080000,"y":0},{"x":1568107140000,"y":0},{"x":1568107200000,"y":0},{"x":1568107260000,"y":0},{"x":1568107320000,"y":0},{"x":1568107380000,"y":0.02},{"x":1568107440000,"y":0},{"x":1568107500000,"y":0},{"x":1568107560000,"y":0},{"x":1568107620000,"y":0},{"x":1568107680000,"y":0},{"x":1568107740000,"y":0},{"x":1568107800000,"y":0},{"x":1568107860000,"y":0},{"x":1568107920000,"y":0},{"x":1568107980000,"y":0},{"x":1568108040000,"y":0},{"x":1568108100000,"y":0},{"x":1568108160000,"y":0},{"x":1568108220000,"y":0},{"x":1568108280000,"y":0},{"x":1568108340000,"y":0},{"x":1568108400000,"y":0},{"x":1568108460000,"y":0},{"x":1568108520000,"y":0},{"x":1568108580000,"y":0},{"x":1568108640000,"y":0},{"x":1568108700000,"y":0},{"x":1568108760000,"y":0},{"x":1568108820000,"y":0},{"x":1568108880000,"y":0},{"x":1568108940000,"y":0},{"x":1568109000000,"y":0},{"x":1568109060000,"y":0},{"x":1568109120000,"y":0},{"x":1568109180000,"y":0},{"x":1568109240000,"y":0},{"x":1568109300000,"y":0},{"x":1568109360000,"y":0},{"x":1568109420000,"y":0},{"x":1568109480000,"y":0},{"x":1568109540000,"y":0},{"x":1568109600000,"y":0},{"x":1568109660000,"y":0},{"x":1568109720000,"y":0},{"x":1568109780000,"y":0},{"x":1568109840000,"y":0},{"x":1568109900000,"y":0},{"x":1568109960000,"y":0},{"x":1568110020000,"y":0},{"x":1568110080000,"y":0},{"x":1568110140000,"y":0},{"x":1568110200000,"y":0},{"x":1568110260000,"y":0},{"x":1568110320000,"y":0},{"x":1568110380000,"y":0},{"x":1568110440000,"y":0},{"x":1568110500000,"y":0},{"x":1568110560000,"y":0},{"x":1568110620000,"y":0},{"x":1568110680000,"y":0},{"x":1568110740000,"y":0},{"x":1568110800000,"y":0},{"x":1568110860000,"y":0},{"x":1568110920000,"y":0},{"x":1568110980000,"y":0},{"x":1568111040000,"y":0},{"x":1568111100000,"y":0},{"x":1568111160000,"y":0},{"x":1568111220000,"y":0},{"x":1568111280000,"y":0},{"x":1568111340000,"y":0},{"x":1568111400000,"y":0},{"x":1568111460000,"y":0},{"x":1568111520000,"y":0},{"x":1568111580000,"y":0},{"x":1568111640000,"y":0},{"x":1568111700000,"y":0},{"x":1568111760000,"y":0},{"x":1568111820000,"y":0},{"x":1568111880000,"y":0},{"x":1568111940000,"y":0},{"x":1568112000000,"y":0},{"x":1568112060000,"y":0},{"x":1568112120000,"y":0},{"x":1568112180000,"y":0},{"x":1568112240000,"y":0},{"x":1568112300000,"y":0},{"x":1568112360000,"y":0},{"x":1568112420000,"y":0},{"x":1568112480000,"y":0},{"x":1568112540000,"y":0},{"x":1568112600000,"y":0},{"x":1568112660000,"y":0},{"x":1568112720000,"y":0},{"x":1568112780000,"y":0},{"x":1568112840000,"y":0},{"x":1568112900000,"y":0},{"x":1568112960000,"y":0},{"x":1568113020000,"y":0},{"x":1568113080000,"y":0},{"x":1568113140000,"y":0},{"x":1568113200000,"y":0},{"x":1568113260000,"y":0},{"x":1568113320000,"y":0},{"x":1568113380000,"y":0},{"x":1568113440000,"y":0},{"x":1568113500000,"y":0.01},{"x":1568113560000,"y":0},{"x":1568113620000,"y":0},{"x":1568113680000,"y":0.01},{"x":1568113740000,"y":0.01},{"x":1568113800000,"y":0},{"x":1568113860000,"y":0},{"x":1568113920000,"y":0},{"x":1568113980000,"y":0},{"x":1568114040000,"y":0},{"x":1568114100000,"y":0},{"x":1568114160000,"y":0},{"x":1568114220000,"y":0},{"x":1568114280000,"y":0},{"x":1568114340000,"y":0},{"x":1568114400000,"y":0},{"x":1568114460000,"y":0},{"x":1568114520000,"y":0},{"x":1568114580000,"y":0.02},{"x":1568114640000,"y":0.37},{"x":1568114700000,"y":0},{"x":1568114760000,"y":0},{"x":1568114820000,"y":0},{"x":1568114880000,"y":0},{"x":1568114940000,"y":0},{"x":1568115000000,"y":0},{"x":1568115060000,"y":0},{"x":1568115120000,"y":0},{"x":1568115180000,"y":0},{"x":1568115240000,"y":0},{"x":1568115300000,"y":0},{"x":1568115360000,"y":0},{"x":1568115420000,"y":0},{"x":1568115480000,"y":0},{"x":1568115540000,"y":0},{"x":1568115600000,"y":0},{"x":1568115660000,"y":0},{"x":1568115720000,"y":0},{"x":1568115780000,"y":0},{"x":1568115840000,"y":0},{"x":1568115900000,"y":0},{"x":1568115960000,"y":0},{"x":1568116020000,"y":0},{"x":1568116080000,"y":0},{"x":1568116140000,"y":0},{"x":1568116200000,"y":0},{"x":1568116260000,"y":0},{"x":1568116320000,"y":0},{"x":1568116380000,"y":0},{"x":1568116440000,"y":0},{"x":1568116500000,"y":0},{"x":1568116560000,"y":0},{"x":1568116620000,"y":0},{"x":1568116680000,"y":0},{"x":1568116740000,"y":0},{"x":1568116800000,"y":0},{"x":1568116860000,"y":0},{"x":1568116920000,"y":0},{"x":1568116980000,"y":0},{"x":1568117040000,"y":0},{"x":1568117100000,"y":0},{"x":1568117160000,"y":0},{"x":1568117220000,"y":0},{"x":1568117280000,"y":0},{"x":1568117340000,"y":0},{"x":1568117400000,"y":0},{"x":1568117460000,"y":0.02},{"x":1568117520000,"y":0},{"x":1568117580000,"y":0},{"x":1568117640000,"y":0},{"x":1568117700000,"y":0},{"x":1568117760000,"y":0},{"x":1568117820000,"y":0},{"x":1568117880000,"y":0},{"x":1568117940000,"y":0},{"x":1568118000000,"y":0},{"x":1568118060000,"y":0},{"x":1568118120000,"y":0},{"x":1568118180000,"y":0},{"x":1568118240000,"y":0},{"x":1568118300000,"y":0},{"x":1568118360000,"y":0},{"x":1568118420000,"y":0},{"x":1568118480000,"y":0.01},{"x":1568118540000,"y":0},{"x":1568118600000,"y":0.01},{"x":1568118660000,"y":0},{"x":1568118720000,"y":0},{"x":1568118780000,"y":0},{"x":1568118840000,"y":0},{"x":1568118900000,"y":0},{"x":1568118960000,"y":0},{"x":1568119020000,"y":0},{"x":1568119080000,"y":0},{"x":1568119140000,"y":0},{"x":1568119200000,"y":0},{"x":1568119260000,"y":0},{"x":1568119320000,"y":0},{"x":1568119380000,"y":0},{"x":1568119440000,"y":0},{"x":1568119500000,"y":0},{"x":1568119560000,"y":0},{"x":1568119620000,"y":0},{"x":1568119680000,"y":0},{"x":1568119740000,"y":0},{"x":1568119800000,"y":0},{"x":1568119860000,"y":0},{"x":1568119920000,"y":0},{"x":1568119980000,"y":0},{"x":1568120040000,"y":0},{"x":1568120100000,"y":0},{"x":1568120160000,"y":0},{"x":1568120220000,"y":0},{"x":1568120280000,"y":0},{"x":1568120340000,"y":0},{"x":1568120400000,"y":0},{"x":1568120460000,"y":0},{"x":1568120520000,"y":0},{"x":1568120580000,"y":0},{"x":1568120640000,"y":0},{"x":1568120700000,"y":0},{"x":1568120760000,"y":0},{"x":1568120820000,"y":0.03},{"x":1568120880000,"y":0.04},{"x":1568120940000,"y":0.04},{"x":1568121000000,"y":0.04},{"x":1568121060000,"y":0.04},{"x":1568121120000,"y":0.04},{"x":1568121180000,"y":0.02},{"x":1568121240000,"y":0.01},{"x":1568121300000,"y":0},{"x":1568121360000,"y":0},{"x":1568121420000,"y":0},{"x":1568121480000,"y":0},{"x":1568121540000,"y":0},{"x":1568121600000,"y":0},{"x":1568121660000,"y":0},{"x":1568121720000,"y":0},{"x":1568121780000,"y":0},{"x":1568121840000,"y":0},{"x":1568121900000,"y":0},{"x":1568121960000,"y":0},{"x":1568122020000,"y":0},{"x":1568122080000,"y":0},{"x":1568122140000,"y":0},{"x":1568122200000,"y":0},{"x":1568122260000,"y":0},{"x":1568122320000,"y":0},{"x":1568122380000,"y":0},{"x":1568122440000,"y":0},{"x":1568122500000,"y":0},{"x":1568122560000,"y":0.01},{"x":1568122620000,"y":0},{"x":1568122680000,"y":0},{"x":1568122740000,"y":0},{"x":1568122800000,"y":0},{"x":1568122860000,"y":0},{"x":1568122920000,"y":0},{"x":1568122980000,"y":0},{"x":1568123040000,"y":0},{"x":1568123100000,"y":0},{"x":1568123160000,"y":0},{"x":1568123220000,"y":0},{"x":1568123280000,"y":0},{"x":1568123340000,"y":0},{"x":1568123400000,"y":0},{"x":1568123460000,"y":0},{"x":1568123520000,"y":0},{"x":1568123580000,"y":0},{"x":1568123640000,"y":0},{"x":1568123700000,"y":0},{"x":1568123760000,"y":0},{"x":1568123820000,"y":0},{"x":1568123880000,"y":0},{"x":1568123940000,"y":0},{"x":1568124000000,"y":0},{"x":1568124060000,"y":0},{"x":1568124120000,"y":0},{"x":1568124180000,"y":0},{"x":1568124240000,"y":0},{"x":1568124300000,"y":0},{"x":1568124360000,"y":0},{"x":1568124420000,"y":0},{"x":1568124480000,"y":0},{"x":1568124540000,"y":0},{"x":1568124600000,"y":0},{"x":1568124660000,"y":0},{"x":1568124720000,"y":0},{"x":1568124780000,"y":0},{"x":1568124840000,"y":0},{"x":1568124900000,"y":0},{"x":1568124960000,"y":0},{"x":1568125020000,"y":0},{"x":1568125080000,"y":0},{"x":1568125140000,"y":0},{"x":1568125200000,"y":0},{"x":1568125260000,"y":0},{"x":1568125320000,"y":0},{"x":1568125380000,"y":0.01},{"x":1568125440000,"y":0},{"x":1568125500000,"y":0},{"x":1568125560000,"y":0},{"x":1568125620000,"y":0},{"x":1568125680000,"y":0},{"x":1568125740000,"y":0},{"x":1568125800000,"y":0},{"x":1568125860000,"y":0},{"x":1568125920000,"y":0},{"x":1568125980000,"y":0},{"x":1568126040000,"y":0},{"x":1568126100000,"y":0},{"x":1568126160000,"y":0},{"x":1568126220000,"y":0},{"x":1568126280000,"y":0},{"x":1568126340000,"y":0},{"x":1568126400000,"y":0},{"x":1568126460000,"y":0},{"x":1568126520000,"y":0},{"x":1568126580000,"y":0},{"x":1568126640000,"y":0.03},{"x":1568126700000,"y":0},{"x":1568126760000,"y":0},{"x":1568126820000,"y":0},{"x":1568126880000,"y":0},{"x":1568126940000,"y":0},{"x":1568127000000,"y":0},{"x":1568127060000,"y":0},{"x":1568127120000,"y":0},{"x":1568127180000,"y":0},{"x":1568127240000,"y":0},{"x":1568127300000,"y":0},{"x":1568127360000,"y":0},{"x":1568127420000,"y":0},{"x":1568127480000,"y":0},{"x":1568127540000,"y":0},{"x":1568127600000,"y":0},{"x":1568127660000,"y":0},{"x":1568127720000,"y":0},{"x":1568127780000,"y":0},{"x":1568127840000,"y":0},{"x":1568127900000,"y":0},{"x":1568127960000,"y":0},{"x":1568128020000,"y":0},{"x":1568128080000,"y":0},{"x":1568128140000,"y":0},{"x":1568128200000,"y":0},{"x":1568128260000,"y":0},{"x":1568128320000,"y":0},{"x":1568128380000,"y":0},{"x":1568128440000,"y":0},{"x":1568128500000,"y":0},{"x":1568128560000,"y":0},{"x":1568128620000,"y":0},{"x":1568128680000,"y":0},{"x":1568128740000,"y":0},{"x":1568128800000,"y":0},{"x":1568128860000,"y":0},{"x":1568128920000,"y":0},{"x":1568128980000,"y":0.01},{"x":1568129040000,"y":0},{"x":1568129100000,"y":0},{"x":1568129160000,"y":0},{"x":1568129220000,"y":0},{"x":1568129280000,"y":0},{"x":1568129340000,"y":0},{"x":1568129400000,"y":0},{"x":1568129460000,"y":0},{"x":1568129520000,"y":0},{"x":1568129580000,"y":0},{"x":1568129640000,"y":0},{"x":1568129700000,"y":0},{"x":1568129760000,"y":0},{"x":1568129820000,"y":0},{"x":1568129880000,"y":0},{"x":1568129940000,"y":0},{"x":1568130000000,"y":0},{"x":1568130060000,"y":0},{"x":1568130120000,"y":0},{"x":1568130180000,"y":0},{"x":1568130240000,"y":0},{"x":1568130300000,"y":0},{"x":1568130360000,"y":0.01},{"x":1568130420000,"y":0},{"x":1568130480000,"y":0},{"x":1568130540000,"y":0},{"x":1568130600000,"y":0},{"x":1568130660000,"y":0},{"x":1568130720000,"y":0},{"x":1568130780000,"y":0},{"x":1568130840000,"y":0},{"x":1568130900000,"y":0},{"x":1568130960000,"y":0},{"x":1568131020000,"y":0},{"x":1568131080000,"y":0},{"x":1568131140000,"y":0},{"x":1568131200000,"y":0},{"x":1568131260000,"y":0},{"x":1568131320000,"y":0},{"x":1568131380000,"y":0},{"x":1568131440000,"y":0},{"x":1568131500000,"y":0},{"x":1568131560000,"y":0},{"x":1568131620000,"y":0},{"x":1568131680000,"y":0},{"x":1568131740000,"y":0},{"x":1568131800000,"y":0},{"x":1568131860000,"y":0},{"x":1568131920000,"y":0},{"x":1568131980000,"y":0},{"x":1568132040000,"y":0},{"x":1568132100000,"y":0},{"x":1568132160000,"y":0},{"x":1568132220000,"y":0},{"x":1568132280000,"y":0},{"x":1568132340000,"y":0},{"x":1568132400000,"y":0},{"x":1568132460000,"y":0},{"x":1568132520000,"y":0},{"x":1568132580000,"y":0},{"x":1568132640000,"y":0},{"x":1568132700000,"y":0},{"x":1568132760000,"y":0},{"x":1568132820000,"y":0},{"x":1568132880000,"y":0},{"x":1568132940000,"y":0},{"x":1568133000000,"y":0},{"x":1568133060000,"y":0},{"x":1568133120000,"y":0},{"x":1568133180000,"y":0},{"x":1568133240000,"y":0},{"x":1568133300000,"y":0},{"x":1568133360000,"y":0},{"x":1568133420000,"y":0},{"x":1568133480000,"y":0},{"x":1568133540000,"y":0},{"x":1568133600000,"y":0},{"x":1568133660000,"y":0},{"x":1568133720000,"y":0},{"x":1568133780000,"y":0},{"x":1568133840000,"y":0},{"x":1568133900000,"y":0},{"x":1568133960000,"y":0},{"x":1568134020000,"y":0},{"x":1568134080000,"y":0},{"x":1568134140000,"y":0},{"x":1568134200000,"y":0},{"x":1568134260000,"y":0},{"x":1568134320000,"y":0},{"x":1568134380000,"y":0},{"x":1568134440000,"y":0},{"x":1568134500000,"y":0},{"x":1568134560000,"y":0},{"x":1568134620000,"y":0},{"x":1568134680000,"y":0.01},{"x":1568134740000,"y":0},{"x":1568134800000,"y":0},{"x":1568134860000,"y":0},{"x":1568134920000,"y":0},{"x":1568134980000,"y":0},{"x":1568135040000,"y":0},{"x":1568135100000,"y":0},{"x":1568135160000,"y":0},{"x":1568135220000,"y":0},{"x":1568135280000,"y":0},{"x":1568135340000,"y":0},{"x":1568135400000,"y":0},{"x":1568135460000,"y":0},{"x":1568135520000,"y":0},{"x":1568135580000,"y":0},{"x":1568135640000,"y":0},{"x":1568135700000,"y":0},{"x":1568135760000,"y":0},{"x":1568135820000,"y":0},{"x":1568135880000,"y":0},{"x":1568135940000,"y":0},{"x":1568136000000,"y":0},{"x":1568136060000,"y":0},{"x":1568136120000,"y":0},{"x":1568136180000,"y":0},{"x":1568136240000,"y":0},{"x":1568136300000,"y":0},{"x":1568136360000,"y":0},{"x":1568136420000,"y":0},{"x":1568136480000,"y":0},{"x":1568136540000,"y":0},{"x":1568136600000,"y":0},{"x":1568136660000,"y":0},{"x":1568136720000,"y":0},{"x":1568136780000,"y":0},{"x":1568136840000,"y":0},{"x":1568136900000,"y":0},{"x":1568136960000,"y":0},{"x":1568137020000,"y":0},{"x":1568137080000,"y":0},{"x":1568137140000,"y":0},{"x":1568137200000,"y":0},{"x":1568137260000,"y":0},{"x":1568137320000,"y":0},{"x":1568137380000,"y":0},{"x":1568137440000,"y":0},{"x":1568137500000,"y":0},{"x":1568137560000,"y":0},{"x":1568137620000,"y":0},{"x":1568137680000,"y":0},{"x":1568137740000,"y":0},{"x":1568137800000,"y":0},{"x":1568137860000,"y":0},{"x":1568137920000,"y":0},{"x":1568137980000,"y":0},{"x":1568138040000,"y":0},{"x":1568138100000,"y":0},{"x":1568138160000,"y":0},{"x":1568138220000,"y":0},{"x":1568138280000,"y":0},{"x":1568138340000,"y":0},{"x":1568138400000,"y":0},{"x":1568138460000,"y":0},{"x":1568138520000,"y":0},{"x":1568138580000,"y":0},{"x":1568138640000,"y":0},{"x":1568138700000,"y":0},{"x":1568138760000,"y":0.03},{"x":1568138820000,"y":0},{"x":1568138880000,"y":0},{"x":1568138940000,"y":1.58},{"x":1568139000000,"y":0.03},{"x":1568139060000,"y":0},{"x":1568139120000,"y":0},{"x":1568139180000,"y":0},{"x":1568139240000,"y":0},{"x":1568139300000,"y":0},{"x":1568139360000,"y":0},{"x":1568139420000,"y":0},{"x":1568139480000,"y":0},{"x":1568139540000,"y":0},{"x":1568139600000,"y":0},{"x":1568139660000,"y":0},{"x":1568139720000,"y":0},{"x":1568139780000,"y":0},{"x":1568139840000,"y":0},{"x":1568139900000,"y":0},{"x":1568139960000,"y":0},{"x":1568140020000,"y":0},{"x":1568140080000,"y":0},{"x":1568140140000,"y":0},{"x":1568140200000,"y":0},{"x":1568140260000,"y":0.05},{"x":1568140320000,"y":2.11},{"x":1568140380000,"y":0},{"x":1568140440000,"y":0},{"x":1568140500000,"y":0},{"x":1568140560000,"y":0},{"x":1568140620000,"y":0},{"x":1568140680000,"y":0},{"x":1568140740000,"y":0},{"x":1568140800000,"y":0},{"x":1568140860000,"y":0},{"x":1568140920000,"y":0},{"x":1568140980000,"y":0},{"x":1568141040000,"y":0},{"x":1568141100000,"y":0},{"x":1568141160000,"y":0},{"x":1568141220000,"y":0},{"x":1568141280000,"y":0},{"x":1568141340000,"y":0},{"x":1568141400000,"y":1.05},{"x":1568141460000,"y":0},{"x":1568141520000,"y":1.23},{"x":1568141580000,"y":60.53},{"x":1568141640000,"y":39.86},{"x":1568141700000,"y":61.46},{"x":1568141760000,"y":30.93},{"x":1568141820000,"y":78.64},{"x":1568141880000,"y":61.71},{"x":1568141940000,"y":0.21},{"x":1568142000000,"y":0.07},{"x":1568142060000,"y":0.03},{"x":1568142120000,"y":2.29},{"x":1568142180000,"y":15.05},{"x":1568142240000,"y":0},{"x":1568142300000,"y":0.26},{"x":1568142360000,"y":0},{"x":1568142420000,"y":0.26},{"x":1568142480000,"y":0},{"x":1568142540000,"y":0},{"x":1568142600000,"y":0},{"x":1568142660000,"y":0.7},{"x":1568142720000,"y":0.01},{"x":1568142780000,"y":0},{"x":1568142840000,"y":0},{"x":1568142900000,"y":0},{"x":1568142960000,"y":0},{"x":1568143020000,"y":0},{"x":1568143080000,"y":0},{"x":1568143140000,"y":0},{"x":1568143200000,"y":0},{"x":1568143260000,"y":0},{"x":1568143320000,"y":0},{"x":1568143380000,"y":0},{"x":1568143440000,"y":0.75},{"x":1568143500000,"y":0.02},{"x":1568143560000,"y":0.01},{"x":1568143620000,"y":0.67},{"x":1568143680000,"y":0.46},{"x":1568143740000,"y":1.06},{"x":1568143800000,"y":0.51},{"x":1568143860000,"y":0.44},{"x":1568143920000,"y":0.07},{"x":1568143980000,"y":0.4},{"x":1568144040000,"y":0.07},{"x":1568144100000,"y":0.16},{"x":1568144160000,"y":0.34},{"x":1568144220000,"y":0.01},{"x":1568144280000,"y":1.89},{"x":1568144340000,"y":0.87},{"x":1568144400000,"y":0.01},{"x":1568144460000,"y":0.9},{"x":1568144520000,"y":2.1},{"x":1568144580000,"y":0.58},{"x":1568144640000,"y":1.93},{"x":1568144700000,"y":0.01},{"x":1568144760000,"y":0.15},{"x":1568144820000,"y":1.29},{"x":1568144880000,"y":1.9},{"x":1568144940000,"y":0.01},{"x":1568145000000,"y":0},{"x":1568145060000,"y":0.01},{"x":1568145120000,"y":0},{"x":1568145180000,"y":0},{"x":1568145240000,"y":0},{"x":1568145300000,"y":0},{"x":1568145360000,"y":0},{"x":1568145420000,"y":0.14},{"x":1568145480000,"y":0},{"x":1568145540000,"y":0},{"x":1568145600000,"y":0},{"x":1568145660000,"y":0},{"x":1568145720000,"y":0},{"x":1568145780000,"y":0.85},{"x":1568145840000,"y":0.03},{"x":1568145900000,"y":0},{"x":1568145960000,"y":0},{"x":1568146020000,"y":0},{"x":1568146080000,"y":0.01},{"x":1568146140000,"y":0.01},{"x":1568146200000,"y":0.01},{"x":1568146260000,"y":0.01},{"x":1568146320000,"y":0},{"x":1568146380000,"y":0},{"x":1568146440000,"y":0},{"x":1568146500000,"y":0.02},{"x":1568146560000,"y":0.18},{"x":1568146620000,"y":0},{"x":1568146680000,"y":1.17},{"x":1568146740000,"y":0.01},{"x":1568146800000,"y":21.44},{"x":1568146860000,"y":7.54},{"x":1568146920000,"y":0.52},{"x":1568146980000,"y":1.81},{"x":1568147040000,"y":0.22},{"x":1568147100000,"y":0.02},{"x":1568147160000,"y":5.69},{"x":1568147220000,"y":0},{"x":1568147280000,"y":0.01},{"x":1568147340000,"y":0},{"x":1568147400000,"y":0},{"x":1568147460000,"y":0},{"x":1568147520000,"y":0},{"x":1568147580000,"y":0},{"x":1568147640000,"y":0},{"x":1568147700000,"y":1.41},{"x":1568147760000,"y":0.01},{"x":1568147820000,"y":0},{"x":1568147880000,"y":0.02},{"x":1568147940000,"y":0},{"x":1568148000000,"y":0},{"x":1568148060000,"y":0},{"x":1568148120000,"y":0},{"x":1568148180000,"y":0},{"x":1568148240000,"y":0},{"x":1568148300000,"y":0},{"x":1568148360000,"y":0},{"x":1568148420000,"y":0},{"x":1568148480000,"y":0},{"x":1568148540000,"y":0},{"x":1568148600000,"y":0},{"x":1568148660000,"y":0},{"x":1568148720000,"y":0},{"x":1568148780000,"y":0},{"x":1568148840000,"y":0},{"x":1568148900000,"y":0},{"x":1568148960000,"y":0},{"x":1568149020000,"y":0},{"x":1568149080000,"y":4.19},{"x":1568149140000,"y":0.08},{"x":1568149200000,"y":1.33},{"x":1568149260000,"y":0},{"x":1568149320000,"y":0},{"x":1568149380000,"y":0},{"x":1568149440000,"y":0},{"x":1568149500000,"y":1.25},{"x":1568149560000,"y":0},{"x":1568149620000,"y":0},{"x":1568149680000,"y":0},{"x":1568149740000,"y":0.02},{"x":1568149800000,"y":0.02},{"x":1568149860000,"y":0},{"x":1568149920000,"y":0.23},{"x":1568149980000,"y":0},{"x":1568150040000,"y":0},{"x":1568150100000,"y":0},{"x":1568150160000,"y":0.02},{"x":1568150220000,"y":0.83},{"x":1568150280000,"y":0},{"x":1568150340000,"y":0},{"x":1568150400000,"y":0},{"x":1568150460000,"y":0},{"x":1568150520000,"y":0},{"x":1568150580000,"y":0},{"x":1568150640000,"y":0.01},{"x":1568150700000,"y":0.02},{"x":1568150760000,"y":0},{"x":1568150820000,"y":0},{"x":1568150880000,"y":0},{"x":1568150940000,"y":0.01},{"x":1568151000000,"y":0.01},{"x":1568151060000,"y":0},{"x":1568151120000,"y":0},{"x":1568151180000,"y":0},{"x":1568151240000,"y":0},{"x":1568151300000,"y":0},{"x":1568151360000,"y":0},{"x":1568151420000,"y":0.01},{"x":1568151480000,"y":0},{"x":1568151540000,"y":0},{"x":1568151600000,"y":0},{"x":1568151660000,"y":0},{"x":1568151720000,"y":0},{"x":1568151780000,"y":0},{"x":1568151840000,"y":0},{"x":1568151900000,"y":0},{"x":1568151960000,"y":0},{"x":1568152020000,"y":0.01},{"x":1568152080000,"y":0.01},{"x":1568152140000,"y":0},{"x":1568152200000,"y":0},{"x":1568152260000,"y":0},{"x":1568152320000,"y":0},{"x":1568152380000,"y":0},{"x":1568152440000,"y":0},{"x":1568152500000,"y":0},{"x":1568152560000,"y":0},{"x":1568152620000,"y":0},{"x":1568152680000,"y":0},{"x":1568152740000,"y":0},{"x":1568152800000,"y":0},{"x":1568152860000,"y":0},{"x":1568152920000,"y":0.03},{"x":1568152980000,"y":0},{"x":1568153040000,"y":0},{"x":1568153100000,"y":2.52},{"x":1568153160000,"y":0.25},{"x":1568153220000,"y":0},{"x":1568153280000,"y":0},{"x":1568153340000,"y":0},{"x":1568153400000,"y":0},{"x":1568153460000,"y":0},{"x":1568153520000,"y":0},{"x":1568153580000,"y":0},{"x":1568153640000,"y":0},{"x":1568153700000,"y":0},{"x":1568153760000,"y":0},{"x":1568153820000,"y":0},{"x":1568153880000,"y":0},{"x":1568153940000,"y":0},{"x":1568154000000,"y":0},{"x":1568154060000,"y":0},{"x":1568154120000,"y":0},{"x":1568154180000,"y":0},{"x":1568154240000,"y":0},{"x":1568154300000,"y":0},{"x":1568154360000,"y":0},{"x":1568154420000,"y":0},{"x":1568154480000,"y":0},{"x":1568154540000,"y":0},{"x":1568154600000,"y":0},{"x":1568154660000,"y":0},{"x":1568154720000,"y":0},{"x":1568154780000,"y":0.01},{"x":1568154840000,"y":0},{"x":1568154900000,"y":0},{"x":1568154960000,"y":0},{"x":1568155020000,"y":0},{"x":1568155080000,"y":0},{"x":1568155140000,"y":0},{"x":1568155200000,"y":0},{"x":1568155260000,"y":0},{"x":1568155320000,"y":2.06},{"x":1568155380000,"y":0.05},{"x":1568155440000,"y":0},{"x":1568155500000,"y":0},{"x":1568155560000,"y":0},{"x":1568155620000,"y":0},{"x":1568155680000,"y":0},{"x":1568155740000,"y":0},{"x":1568155800000,"y":0},{"x":1568155860000,"y":0},{"x":1568155920000,"y":0},{"x":1568155980000,"y":0},{"x":1568156040000,"y":0.03},{"x":1568156100000,"y":0},{"x":1568156160000,"y":0},{"x":1568156220000,"y":0},{"x":1568156280000,"y":0},{"x":1568156340000,"y":0},{"x":1568156400000,"y":0},{"x":1568156460000,"y":0},{"x":1568156520000,"y":0},{"x":1568156580000,"y":1.28},{"x":1568156640000,"y":0.22},{"x":1568156700000,"y":0},{"x":1568156760000,"y":0},{"x":1568156820000,"y":0},{"x":1568156880000,"y":0},{"x":1568156940000,"y":0},{"x":1568157000000,"y":0},{"x":1568157060000,"y":0},{"x":1568157120000,"y":0},{"x":1568157180000,"y":0},{"x":1568157240000,"y":0},{"x":1568157300000,"y":0},{"x":1568157360000,"y":0},{"x":1568157420000,"y":0},{"x":1568157480000,"y":0},{"x":1568157540000,"y":0},{"x":1568157600000,"y":0},{"x":1568157660000,"y":0},{"x":1568157720000,"y":0},{"x":1568157780000,"y":0},{"x":1568157840000,"y":0},{"x":1568157900000,"y":0},{"x":1568157960000,"y":0},{"x":1568158020000,"y":0.02},{"x":1568158080000,"y":0.01},{"x":1568158140000,"y":0},{"x":1568158200000,"y":0},{"x":1568158260000,"y":0},{"x":1568158320000,"y":0},{"x":1568158380000,"y":0},{"x":1568158440000,"y":0},{"x":1568158500000,"y":0},{"x":1568158560000,"y":0},{"x":1568158620000,"y":0},{"x":1568158680000,"y":0},{"x":1568158740000,"y":0},{"x":1568158800000,"y":0},{"x":1568158860000,"y":0},{"x":1568158920000,"y":0},{"x":1568158980000,"y":0},{"x":1568159040000,"y":0},{"x":1568159100000,"y":0.01},{"x":1568159160000,"y":0},{"x":1568159220000,"y":0},{"x":1568159280000,"y":0},{"x":1568159340000,"y":0},{"x":1568159400000,"y":0},{"x":1568159460000,"y":0},{"x":1568159520000,"y":0},{"x":1568159580000,"y":0},{"x":1568159640000,"y":0},{"x":1568159700000,"y":0},{"x":1568159760000,"y":0},{"x":1568159820000,"y":0},{"x":1568159880000,"y":0},{"x":1568159940000,"y":0},{"x":1568160000000,"y":0},{"x":1568160060000,"y":0},{"x":1568160120000,"y":0},{"x":1568160180000,"y":0},{"x":1568160240000,"y":0},{"x":1568160300000,"y":0},{"x":1568160360000,"y":0},{"x":1568160420000,"y":0},{"x":1568160480000,"y":0},{"x":1568160540000,"y":0},{"x":1568160600000,"y":0},{"x":1568160660000,"y":0},{"x":1568160720000,"y":0},{"x":1568160780000,"y":0},{"x":1568160840000,"y":0},{"x":1568160900000,"y":0},{"x":1568160960000,"y":0},{"x":1568161020000,"y":0},{"x":1568161080000,"y":0},{"x":1568161140000,"y":0},{"x":1568161200000,"y":0},{"x":1568161260000,"y":0},{"x":1568161320000,"y":0},{"x":1568161380000,"y":0},{"x":1568161440000,"y":0},{"x":1568161500000,"y":0},{"x":1568161560000,"y":0},{"x":1568161620000,"y":0},{"x":1568161680000,"y":0},{"x":1568161740000,"y":0},{"x":1568161800000,"y":0},{"x":1568161860000,"y":0},{"x":1568161920000,"y":0},{"x":1568161980000,"y":0},{"x":1568162040000,"y":0},{"x":1568162100000,"y":0},{"x":1568162160000,"y":0},{"x":1568162220000,"y":0},{"x":1568162280000,"y":0},{"x":1568162340000,"y":0},{"x":1568162400000,"y":0},{"x":1568162460000,"y":0},{"x":1568162520000,"y":0},{"x":1568162580000,"y":0},{"x":1568162640000,"y":0},{"x":1568162700000,"y":0},{"x":1568162760000,"y":0},{"x":1568162820000,"y":0},{"x":1568162880000,"y":0},{"x":1568162940000,"y":0},{"x":1568163000000,"y":0},{"x":1568163060000,"y":0},{"x":1568163120000,"y":0},{"x":1568163180000,"y":0},{"x":1568163240000,"y":0},{"x":1568163300000,"y":0},{"x":1568163360000,"y":0},{"x":1568163420000,"y":0},{"x":1568163480000,"y":0},{"x":1568163540000,"y":0},{"x":1568163600000,"y":0},{"x":1568163660000,"y":0},{"x":1568163720000,"y":0},{"x":1568163780000,"y":0},{"x":1568163840000,"y":0},{"x":1568163900000,"y":0},{"x":1568163960000,"y":0},{"x":1568164020000,"y":0},{"x":1568164080000,"y":0},{"x":1568164140000,"y":0},{"x":1568164200000,"y":0},{"x":1568164260000,"y":0},{"x":1568164320000,"y":0},{"x":1568164380000,"y":0},{"x":1568164440000,"y":0},{"x":1568164500000,"y":0},{"x":1568164560000,"y":0},{"x":1568164620000,"y":0},{"x":1568164680000,"y":0},{"x":1568164740000,"y":0},{"x":1568164800000,"y":0},{"x":1568164860000,"y":0},{"x":1568164920000,"y":0},{"x":1568164980000,"y":0},{"x":1568165040000,"y":0},{"x":1568165100000,"y":0},{"x":1568165160000,"y":0},{"x":1568165220000,"y":0},{"x":1568165280000,"y":0},{"x":1568165340000,"y":0},{"x":1568165400000,"y":0},{"x":1568165460000,"y":0},{"x":1568165520000,"y":0},{"x":1568165580000,"y":0},{"x":1568165640000,"y":0},{"x":1568165700000,"y":0},{"x":1568165760000,"y":0},{"x":1568165820000,"y":0},{"x":1568165880000,"y":0},{"x":1568165940000,"y":0},{"x":1568166000000,"y":0},{"x":1568166060000,"y":0},{"x":1568166120000,"y":0},{"x":1568166180000,"y":0},{"x":1568166240000,"y":0.01},{"x":1568166300000,"y":0.01},{"x":1568166360000,"y":0},{"x":1568166420000,"y":0},{"x":1568166480000,"y":0},{"x":1568166540000,"y":0},{"x":1568166600000,"y":0},{"x":1568166660000,"y":0},{"x":1568166720000,"y":0},{"x":1568166780000,"y":0},{"x":1568166840000,"y":0},{"x":1568166900000,"y":0},{"x":1568166960000,"y":0},{"x":1568167020000,"y":0},{"x":1568167080000,"y":0},{"x":1568167140000,"y":0},{"x":1568167200000,"y":0},{"x":1568167260000,"y":0},{"x":1568167320000,"y":0},{"x":1568167380000,"y":0},{"x":1568167440000,"y":0},{"x":1568167500000,"y":0},{"x":1568167560000,"y":0},{"x":1568167620000,"y":0},{"x":1568167680000,"y":0},{"x":1568167740000,"y":0},{"x":1568167800000,"y":0},{"x":1568167860000,"y":0},{"x":1568167920000,"y":0},{"x":1568167980000,"y":0},{"x":1568168040000,"y":0},{"x":1568168100000,"y":0},{"x":1568168160000,"y":0},{"x":1568168220000,"y":0},{"x":1568168280000,"y":0},{"x":1568168340000,"y":0},{"x":1568168400000,"y":0},{"x":1568168460000,"y":0},{"x":1568168520000,"y":0},{"x":1568168580000,"y":0},{"x":1568168640000,"y":0},{"x":1568168700000,"y":0},{"x":1568168760000,"y":0},{"x":1568168820000,"y":0},{"x":1568168880000,"y":0},{"x":1568168940000,"y":0},{"x":1568169000000,"y":0},{"x":1568169060000,"y":0},{"x":1568169120000,"y":0},{"x":1568169180000,"y":0},{"x":1568169240000,"y":0},{"x":1568169300000,"y":0.27},{"x":1568169360000,"y":0.07},{"x":1568169420000,"y":0.46},{"x":1568169480000,"y":0},{"x":1568169540000,"y":0},{"x":1568169600000,"y":0},{"x":1568169660000,"y":0},{"x":1568169720000,"y":0},{"x":1568169780000,"y":0},{"x":1568169840000,"y":0},{"x":1568169900000,"y":0},{"x":1568169960000,"y":0},{"x":1568170020000,"y":0},{"x":1568170080000,"y":0},{"x":1568170140000,"y":0},{"x":1568170200000,"y":0},{"x":1568170260000,"y":0},{"x":1568170320000,"y":0},{"x":1568170380000,"y":0},{"x":1568170440000,"y":0},{"x":1568170500000,"y":0},{"x":1568170560000,"y":0},{"x":1568170620000,"y":0},{"x":1568170680000,"y":0},{"x":1568170740000,"y":0},{"x":1568170800000,"y":0},{"x":1568170860000,"y":0},{"x":1568170920000,"y":0},{"x":1568170980000,"y":0},{"x":1568171040000,"y":0},{"x":1568171100000,"y":0},{"x":1568171160000,"y":0},{"x":1568171220000,"y":0},{"x":1568171280000,"y":0},{"x":1568171340000,"y":0},{"x":1568171400000,"y":0.01},{"x":1568171460000,"y":0},{"x":1568171520000,"y":0},{"x":1568171580000,"y":0},{"x":1568171640000,"y":0},{"x":1568171700000,"y":0},{"x":1568171760000,"y":0},{"x":1568171820000,"y":0},{"x":1568171880000,"y":0},{"x":1568171940000,"y":0},{"x":1568172000000,"y":0},{"x":1568172060000,"y":0},{"x":1568172120000,"y":0},{"x":1568172180000,"y":0},{"x":1568172240000,"y":0},{"x":1568172300000,"y":0},{"x":1568172360000,"y":0},{"x":1568172420000,"y":0},{"x":1568172480000,"y":0},{"x":1568172540000,"y":0},{"x":1568172600000,"y":0},{"x":1568172660000,"y":0},{"x":1568172720000,"y":0},{"x":1568172780000,"y":0},{"x":1568172840000,"y":0},{"x":1568172900000,"y":0},{"x":1568172960000,"y":0},{"x":1568173020000,"y":0},{"x":1568173080000,"y":0},{"x":1568173140000,"y":0},{"x":1568173200000,"y":0},{"x":1568173260000,"y":0},{"x":1568173320000,"y":0},{"x":1568173380000,"y":0},{"x":1568173440000,"y":0},{"x":1568173500000,"y":0},{"x":1568173560000,"y":0},{"x":1568173620000,"y":0},{"x":1568173680000,"y":0},{"x":1568173740000,"y":0},{"x":1568173800000,"y":0},{"x":1568173860000,"y":0},{"x":1568173920000,"y":0},{"x":1568173980000,"y":0},{"x":1568174040000,"y":0},{"x":1568174100000,"y":0.01},{"x":1568174160000,"y":0},{"x":1568174220000,"y":0},{"x":1568174280000,"y":0},{"x":1568174340000,"y":0},{"x":1568174400000,"y":0},{"x":1568174460000,"y":0},{"x":1568174520000,"y":0},{"x":1568174580000,"y":0},{"x":1568174640000,"y":0},{"x":1568174700000,"y":0},{"x":1568174760000,"y":0},{"x":1568174820000,"y":0},{"x":1568174880000,"y":0},{"x":1568174940000,"y":0},{"x":1568175000000,"y":0},{"x":1568175060000,"y":0},{"x":1568175120000,"y":0},{"x":1568175180000,"y":0},{"x":1568175240000,"y":0},{"x":1568175300000,"y":0},{"x":1568175360000,"y":0},{"x":1568175420000,"y":0},{"x":1568175480000,"y":0},{"x":1568175540000,"y":0},{"x":1568175600000,"y":0},{"x":1568175660000,"y":0},{"x":1568175720000,"y":0},{"x":1568175780000,"y":0},{"x":1568175840000,"y":0},{"x":1568175900000,"y":0},{"x":1568175960000,"y":0},{"x":1568176020000,"y":0},{"x":1568176080000,"y":0},{"x":1568176140000,"y":0},{"x":1568176200000,"y":0},{"x":1568176260000,"y":0},{"x":1568176320000,"y":0},{"x":1568176380000,"y":0},{"x":1568176440000,"y":0},{"x":1568176500000,"y":0},{"x":1568176560000,"y":0},{"x":1568176620000,"y":0},{"x":1568176680000,"y":0},{"x":1568176740000,"y":0},{"x":1568176800000,"y":0},{"x":1568176860000,"y":0},{"x":1568176920000,"y":0},{"x":1568176980000,"y":0},{"x":1568177040000,"y":0},{"x":1568177100000,"y":0},{"x":1568177160000,"y":0},{"x":1568177220000,"y":0},{"x":1568177280000,"y":0},{"x":1568177340000,"y":0},{"x":1568177400000,"y":0},{"x":1568177460000,"y":0},{"x":1568177520000,"y":0},{"x":1568177580000,"y":0},{"x":1568177640000,"y":0},{"x":1568177700000,"y":0},{"x":1568177760000,"y":0},{"x":1568177820000,"y":0},{"x":1568177880000,"y":0},{"x":1568177940000,"y":0},{"x":1568178000000,"y":0},{"x":1568178060000,"y":0},{"x":1568178120000,"y":0},{"x":1568178180000,"y":0},{"x":1568178240000,"y":0},{"x":1568178300000,"y":0},{"x":1568178360000,"y":0},{"x":1568178420000,"y":0},{"x":1568178480000,"y":0},{"x":1568178540000,"y":0},{"x":1568178600000,"y":0},{"x":1568178660000,"y":0},{"x":1568178720000,"y":0},{"x":1568178780000,"y":0},{"x":1568178840000,"y":0},{"x":1568178900000,"y":0},{"x":1568178960000,"y":0},{"x":1568179020000,"y":0},{"x":1568179080000,"y":0},{"x":1568179140000,"y":0},{"x":1568179200000,"y":0},{"x":1568179260000,"y":0},{"x":1568179320000,"y":0},{"x":1568179380000,"y":0},{"x":1568179440000,"y":0},{"x":1568179500000,"y":0},{"x":1568179560000,"y":0},{"x":1568179620000,"y":0},{"x":1568179680000,"y":0},{"x":1568179740000,"y":0},{"x":1568179800000,"y":0},{"x":1568179860000,"y":0},{"x":1568179920000,"y":0},{"x":1568179980000,"y":0},{"x":1568180040000,"y":0},{"x":1568180100000,"y":0},{"x":1568180160000,"y":0},{"x":1568180220000,"y":0},{"x":1568180280000,"y":0},{"x":1568180340000,"y":0},{"x":1568180400000,"y":0},{"x":1568180460000,"y":0},{"x":1568180520000,"y":0},{"x":1568180580000,"y":0},{"x":1568180640000,"y":0},{"x":1568180700000,"y":0},{"x":1568180760000,"y":0},{"x":1568180820000,"y":0},{"x":1568180880000,"y":0},{"x":1568180940000,"y":0.01},{"x":1568181000000,"y":0},{"x":1568181060000,"y":0},{"x":1568181120000,"y":0},{"x":1568181180000,"y":0},{"x":1568181240000,"y":0},{"x":1568181300000,"y":0},{"x":1568181360000,"y":0},{"x":1568181420000,"y":0},{"x":1568181480000,"y":0},{"x":1568181540000,"y":0},{"x":1568181600000,"y":0},{"x":1568181660000,"y":0},{"x":1568181720000,"y":0},{"x":1568181780000,"y":0},{"x":1568181840000,"y":0},{"x":1568181900000,"y":0},{"x":1568181960000,"y":0},{"x":1568182020000,"y":0},{"x":1568182080000,"y":0},{"x":1568182140000,"y":0},{"x":1568182200000,"y":0},{"x":1568182260000,"y":0},{"x":1568182320000,"y":0},{"x":1568182380000,"y":0},{"x":1568182440000,"y":0},{"x":1568182500000,"y":0},{"x":1568182560000,"y":0},{"x":1568182620000,"y":0},{"x":1568182680000,"y":0},{"x":1568182740000,"y":0},{"x":1568182800000,"y":0},{"x":1568182860000,"y":0},{"x":1568182920000,"y":0},{"x":1568182980000,"y":0},{"x":1568183040000,"y":0},{"x":1568183100000,"y":0},{"x":1568183160000,"y":0},{"x":1568183220000,"y":0},{"x":1568183280000,"y":0},{"x":1568183340000,"y":0},{"x":1568183400000,"y":0},{"x":1568183460000,"y":0},{"x":1568183520000,"y":0},{"x":1568183580000,"y":0},{"x":1568183640000,"y":0},{"x":1568183700000,"y":0},{"x":1568183760000,"y":0},{"x":1568183820000,"y":0},{"x":1568183880000,"y":0},{"x":1568183940000,"y":0},{"x":1568184000000,"y":0},{"x":1568184060000,"y":0},{"x":1568184120000,"y":0},{"x":1568184180000,"y":0},{"x":1568184240000,"y":0},{"x":1568184300000,"y":0},{"x":1568184360000,"y":0},{"x":1568184420000,"y":0},{"x":1568184480000,"y":0},{"x":1568184540000,"y":0},{"x":1568184600000,"y":0},{"x":1568184660000,"y":0},{"x":1568184720000,"y":0},{"x":1568184780000,"y":0},{"x":1568184840000,"y":0},{"x":1568184900000,"y":0},{"x":1568184960000,"y":0},{"x":1568185020000,"y":0},{"x":1568185080000,"y":0},{"x":1568185140000,"y":0},{"x":1568185200000,"y":0},{"x":1568185260000,"y":0},{"x":1568185320000,"y":0},{"x":1568185380000,"y":0},{"x":1568185440000,"y":0},{"x":1568185500000,"y":0},{"x":1568185560000,"y":0},{"x":1568185620000,"y":0},{"x":1568185680000,"y":0},{"x":1568185740000,"y":0},{"x":1568185800000,"y":0},{"x":1568185860000,"y":0},{"x":1568185920000,"y":0},{"x":1568185980000,"y":0},{"x":1568186040000,"y":0},{"x":1568186100000,"y":0},{"x":1568186160000,"y":0},{"x":1568186220000,"y":0},{"x":1568186280000,"y":0},{"x":1568186340000,"y":0},{"x":1568186400000,"y":0},{"x":1568186460000,"y":0},{"x":1568186520000,"y":0},{"x":1568186580000,"y":0},{"x":1568186640000,"y":0},{"x":1568186700000,"y":0},{"x":1568186760000,"y":0},{"x":1568186820000,"y":0},{"x":1568186880000,"y":0},{"x":1568186940000,"y":0},{"x":1568187000000,"y":0},{"x":1568187060000,"y":0},{"x":1568187120000,"y":0},{"x":1568187180000,"y":0},{"x":1568187240000,"y":0},{"x":1568187300000,"y":0},{"x":1568187360000,"y":0},{"x":1568187420000,"y":0},{"x":1568187480000,"y":0},{"x":1568187540000,"y":0},{"x":1568187600000,"y":0},{"x":1568187660000,"y":0},{"x":1568187720000,"y":0},{"x":1568187780000,"y":0},{"x":1568187840000,"y":0},{"x":1568187900000,"y":0},{"x":1568187960000,"y":0},{"x":1568188020000,"y":0},{"x":1568188080000,"y":0},{"x":1568188140000,"y":0.01},{"x":1568188200000,"y":0},{"x":1568188260000,"y":0},{"x":1568188320000,"y":0},{"x":1568188380000,"y":0},{"x":1568188440000,"y":0},{"x":1568188500000,"y":0},{"x":1568188560000,"y":0},{"x":1568188620000,"y":0},{"x":1568188680000,"y":0},{"x":1568188740000,"y":0},{"x":1568188800000,"y":0},{"x":1568188860000,"y":0},{"x":1568188920000,"y":0},{"x":1568188980000,"y":0},{"x":1568189040000,"y":0},{"x":1568189100000,"y":0},{"x":1568189160000,"y":0},{"x":1568189220000,"y":0},{"x":1568189280000,"y":0},{"x":1568189340000,"y":0},{"x":1568189400000,"y":0},{"x":1568189460000,"y":0},{"x":1568189520000,"y":0},{"x":1568189580000,"y":0},{"x":1568189640000,"y":0},{"x":1568189700000,"y":0},{"x":1568189760000,"y":0},{"x":1568189820000,"y":0},{"x":1568189880000,"y":0},{"x":1568189940000,"y":0},{"x":1568190000000,"y":0},{"x":1568190060000,"y":0},{"x":1568190120000,"y":0},{"x":1568190180000,"y":0},{"x":1568190240000,"y":0},{"x":1568190300000,"y":0},{"x":1568190360000,"y":0},{"x":1568190420000,"y":0},{"x":1568190480000,"y":0},{"x":1568190540000,"y":0},{"x":1568190600000,"y":0},{"x":1568190660000,"y":0},{"x":1568190720000,"y":0},{"x":1568190780000,"y":0},{"x":1568190840000,"y":0},{"x":1568190900000,"y":0},{"x":1568190960000,"y":0},{"x":1568191020000,"y":0},{"x":1568191080000,"y":0},{"x":1568191140000,"y":0},{"x":1568191200000,"y":0},{"x":1568191260000,"y":0},{"x":1568191320000,"y":0},{"x":1568191380000,"y":0.01},{"x":1568191440000,"y":0},{"x":1568191500000,"y":0},{"x":1568191560000,"y":0},{"x":1568191620000,"y":0},{"x":1568191680000,"y":0},{"x":1568191740000,"y":0},{"x":1568191800000,"y":0},{"x":1568191860000,"y":0},{"x":1568191920000,"y":0},{"x":1568191980000,"y":0},{"x":1568192040000,"y":0},{"x":1568192100000,"y":0},{"x":1568192160000,"y":0},{"x":1568192220000,"y":0},{"x":1568192280000,"y":0},{"x":1568192340000,"y":0},{"x":1568192400000,"y":0},{"x":1568192460000,"y":0},{"x":1568192520000,"y":0},{"x":1568192580000,"y":0},{"x":1568192640000,"y":0},{"x":1568192700000,"y":0},{"x":1568192760000,"y":0.02},{"x":1568192820000,"y":0},{"x":1568192880000,"y":0},{"x":1568192940000,"y":0},{"x":1568193000000,"y":0},{"x":1568193060000,"y":0},{"x":1568193120000,"y":0},{"x":1568193180000,"y":0},{"x":1568193240000,"y":0},{"x":1568193300000,"y":0},{"x":1568193360000,"y":0},{"x":1568193420000,"y":0},{"x":1568193480000,"y":0},{"x":1568193540000,"y":0},{"x":1568193600000,"y":0},{"x":1568193660000,"y":0.02},{"x":1568193720000,"y":0},{"x":1568193780000,"y":0},{"x":1568193840000,"y":0},{"x":1568193900000,"y":0},{"x":1568193960000,"y":0},{"x":1568194020000,"y":0},{"x":1568194080000,"y":0},{"x":1568194140000,"y":0},{"x":1568194200000,"y":0.01},{"x":1568194260000,"y":0},{"x":1568194320000,"y":0},{"x":1568194380000,"y":0},{"x":1568194440000,"y":0},{"x":1568194500000,"y":0},{"x":1568194560000,"y":0},{"x":1568194620000,"y":0},{"x":1568194680000,"y":0},{"x":1568194740000,"y":0},{"x":1568194800000,"y":0},{"x":1568194860000,"y":0},{"x":1568194920000,"y":1.12},{"x":1568194980000,"y":0},{"x":1568195040000,"y":0},{"x":1568195100000,"y":0},{"x":1568195160000,"y":0},{"x":1568195220000,"y":0},{"x":1568195280000,"y":0},{"x":1568195340000,"y":0},{"x":1568195400000,"y":0},{"x":1568195460000,"y":0},{"x":1568195520000,"y":0},{"x":1568195580000,"y":0},{"x":1568195640000,"y":0},{"x":1568195700000,"y":0},{"x":1568195760000,"y":0},{"x":1568195820000,"y":0},{"x":1568195880000,"y":0},{"x":1568195940000,"y":0},{"x":1568196000000,"y":0},{"x":1568196060000,"y":0},{"x":1568196120000,"y":0},{"x":1568196180000,"y":0},{"x":1568196240000,"y":0},{"x":1568196300000,"y":0},{"x":1568196360000,"y":0},{"x":1568196420000,"y":0},{"x":1568196480000,"y":0},{"x":1568196540000,"y":0},{"x":1568196600000,"y":0},{"x":1568196660000,"y":0},{"x":1568196720000,"y":0},{"x":1568196780000,"y":0},{"x":1568196840000,"y":0},{"x":1568196900000,"y":0},{"x":1568196960000,"y":0},{"x":1568197020000,"y":0},{"x":1568197080000,"y":0},{"x":1568197140000,"y":0},{"x":1568197200000,"y":0},{"x":1568197260000,"y":0},{"x":1568197320000,"y":0},{"x":1568197380000,"y":0},{"x":1568197440000,"y":0},{"x":1568197500000,"y":0},{"x":1568197560000,"y":0},{"x":1568197620000,"y":0},{"x":1568197680000,"y":0},{"x":1568197740000,"y":0},{"x":1568197800000,"y":0},{"x":1568197860000,"y":0},{"x":1568197920000,"y":0},{"x":1568197980000,"y":0},{"x":1568198040000,"y":0},{"x":1568198100000,"y":0},{"x":1568198160000,"y":0},{"x":1568198220000,"y":0},{"x":1568198280000,"y":0},{"x":1568198340000,"y":0.08},{"x":1568198400000,"y":0},{"x":1568198460000,"y":0},{"x":1568198520000,"y":0},{"x":1568198580000,"y":0},{"x":1568198640000,"y":0},{"x":1568198700000,"y":0},{"x":1568198760000,"y":0},{"x":1568198820000,"y":0},{"x":1568198880000,"y":0},{"x":1568198940000,"y":0},{"x":1568199000000,"y":0},{"x":1568199060000,"y":0},{"x":1568199120000,"y":0},{"x":1568199180000,"y":0},{"x":1568199240000,"y":0},{"x":1568199300000,"y":0},{"x":1568199360000,"y":0},{"x":1568199420000,"y":0},{"x":1568199480000,"y":0},{"x":1568199540000,"y":0},{"x":1568199600000,"y":0},{"x":1568199660000,"y":0},{"x":1568199720000,"y":0},{"x":1568199780000,"y":0},{"x":1568199840000,"y":0},{"x":1568199900000,"y":0},{"x":1568199960000,"y":0},{"x":1568200020000,"y":0},{"x":1568200080000,"y":0},{"x":1568200140000,"y":0},{"x":1568200200000,"y":0},{"x":1568200260000,"y":0},{"x":1568200320000,"y":0},{"x":1568200380000,"y":0},{"x":1568200440000,"y":0},{"x":1568200500000,"y":0},{"x":1568200560000,"y":0},{"x":1568200620000,"y":0},{"x":1568200680000,"y":0},{"x":1568200740000,"y":0},{"x":1568200800000,"y":0},{"x":1568200860000,"y":0},{"x":1568200920000,"y":0},{"x":1568200980000,"y":0},{"x":1568201040000,"y":0},{"x":1568201100000,"y":0},{"x":1568201160000,"y":0},{"x":1568201220000,"y":0},{"x":1568201280000,"y":0},{"x":1568201340000,"y":0},{"x":1568201400000,"y":0},{"x":1568201460000,"y":0},{"x":1568201520000,"y":0},{"x":1568201580000,"y":0},{"x":1568201640000,"y":0},{"x":1568201700000,"y":0},{"x":1568201760000,"y":0},{"x":1568201820000,"y":0},{"x":1568201880000,"y":0},{"x":1568201940000,"y":0},{"x":1568202000000,"y":0},{"x":1568202060000,"y":0},{"x":1568202120000,"y":0},{"x":1568202180000,"y":0},{"x":1568202240000,"y":0},{"x":1568202300000,"y":0},{"x":1568202360000,"y":0},{"x":1568202420000,"y":0},{"x":1568202480000,"y":0},{"x":1568202540000,"y":0},{"x":1568202600000,"y":0},{"x":1568202660000,"y":0},{"x":1568202720000,"y":0},{"x":1568202780000,"y":0},{"x":1568202840000,"y":0},{"x":1568202900000,"y":0},{"x":1568202960000,"y":0},{"x":1568203020000,"y":0},{"x":1568203080000,"y":0},{"x":1568203140000,"y":0},{"x":1568203200000,"y":0},{"x":1568203260000,"y":0},{"x":1568203320000,"y":0},{"x":1568203380000,"y":0},{"x":1568203440000,"y":0},{"x":1568203500000,"y":0},{"x":1568203560000,"y":0},{"x":1568203620000,"y":0},{"x":1568203680000,"y":0},{"x":1568203740000,"y":0},{"x":1568203800000,"y":0},{"x":1568203860000,"y":0},{"x":1568203920000,"y":0},{"x":1568203980000,"y":0},{"x":1568204040000,"y":0},{"x":1568204100000,"y":0},{"x":1568204160000,"y":0},{"x":1568204220000,"y":0},{"x":1568204280000,"y":0},{"x":1568204340000,"y":0},{"x":1568204400000,"y":0},{"x":1568204460000,"y":0},{"x":1568204520000,"y":0},{"x":1568204580000,"y":0},{"x":1568204640000,"y":0},{"x":1568204700000,"y":0},{"x":1568204760000,"y":0},{"x":1568204820000,"y":0},{"x":1568204880000,"y":0},{"x":1568204940000,"y":0},{"x":1568205000000,"y":0},{"x":1568205060000,"y":0},{"x":1568205120000,"y":0},{"x":1568205180000,"y":0},{"x":1568205240000,"y":0},{"x":1568205300000,"y":0},{"x":1568205360000,"y":0},{"x":1568205420000,"y":0},{"x":1568205480000,"y":0},{"x":1568205540000,"y":0},{"x":1568205600000,"y":0},{"x":1568205660000,"y":0},{"x":1568205720000,"y":0},{"x":1568205780000,"y":0},{"x":1568205840000,"y":0},{"x":1568205900000,"y":0},{"x":1568205960000,"y":0},{"x":1568206020000,"y":0},{"x":1568206080000,"y":0},{"x":1568206140000,"y":0},{"x":1568206200000,"y":0},{"x":1568206260000,"y":0},{"x":1568206320000,"y":0},{"x":1568206380000,"y":0},{"x":1568206440000,"y":0},{"x":1568206500000,"y":0},{"x":1568206560000,"y":0},{"x":1568206620000,"y":0},{"x":1568206680000,"y":0},{"x":1568206740000,"y":0},{"x":1568206800000,"y":0},{"x":1568206860000,"y":0},{"x":1568206920000,"y":0},{"x":1568206980000,"y":0},{"x":1568207040000,"y":0},{"x":1568207100000,"y":0},{"x":1568207160000,"y":0},{"x":1568207220000,"y":0},{"x":1568207280000,"y":0},{"x":1568207340000,"y":0},{"x":1568207400000,"y":0},{"x":1568207460000,"y":0},{"x":1568207520000,"y":0},{"x":1568207580000,"y":0},{"x":1568207640000,"y":0},{"x":1568207700000,"y":0},{"x":1568207760000,"y":0},{"x":1568207820000,"y":0},{"x":1568207880000,"y":0},{"x":1568207940000,"y":0},{"x":1568208000000,"y":0},{"x":1568208060000,"y":0},{"x":1568208120000,"y":0},{"x":1568208180000,"y":0},{"x":1568208240000,"y":0},{"x":1568208300000,"y":0},{"x":1568208360000,"y":0},{"x":1568208420000,"y":0},{"x":1568208480000,"y":0},{"x":1568208540000,"y":0},{"x":1568208600000,"y":0},{"x":1568208660000,"y":0},{"x":1568208720000,"y":0},{"x":1568208780000,"y":0},{"x":1568208840000,"y":0},{"x":1568208900000,"y":0},{"x":1568208960000,"y":0},{"x":1568209020000,"y":0},{"x":1568209080000,"y":0},{"x":1568209140000,"y":0},{"x":1568209200000,"y":0},{"x":1568209260000,"y":0},{"x":1568209320000,"y":0},{"x":1568209380000,"y":0},{"x":1568209440000,"y":0},{"x":1568209500000,"y":0},{"x":1568209560000,"y":0},{"x":1568209620000,"y":0},{"x":1568209680000,"y":0},{"x":1568209740000,"y":0},{"x":1568209800000,"y":0},{"x":1568209860000,"y":0},{"x":1568209920000,"y":0},{"x":1568209980000,"y":0.01},{"x":1568210040000,"y":0},{"x":1568210100000,"y":0},{"x":1568210160000,"y":0},{"x":1568210220000,"y":0},{"x":1568210280000,"y":0},{"x":1568210340000,"y":0},{"x":1568210400000,"y":0},{"x":1568210460000,"y":0},{"x":1568210520000,"y":0},{"x":1568210580000,"y":0},{"x":1568210640000,"y":0},{"x":1568210700000,"y":0},{"x":1568210760000,"y":0},{"x":1568210820000,"y":0},{"x":1568210880000,"y":0},{"x":1568210940000,"y":0},{"x":1568211000000,"y":0},{"x":1568211060000,"y":0},{"x":1568211120000,"y":0},{"x":1568211180000,"y":0},{"x":1568211240000,"y":0},{"x":1568211300000,"y":0},{"x":1568211360000,"y":0},{"x":1568211420000,"y":0},{"x":1568211480000,"y":0},{"x":1568211540000,"y":0},{"x":1568211600000,"y":0},{"x":1568211660000,"y":0},{"x":1568211720000,"y":0},{"x":1568211780000,"y":0},{"x":1568211840000,"y":0},{"x":1568211900000,"y":0},{"x":1568211960000,"y":0},{"x":1568212020000,"y":0},{"x":1568212080000,"y":0},{"x":1568212140000,"y":0},{"x":1568212200000,"y":0},{"x":1568212260000,"y":0},{"x":1568212320000,"y":0},{"x":1568212380000,"y":0},{"x":1568212440000,"y":0.25},{"x":1568212500000,"y":0},{"x":1568212560000,"y":0.01},{"x":1568212620000,"y":1.49},{"x":1568212680000,"y":0},{"x":1568212740000,"y":0},{"x":1568212800000,"y":0},{"x":1568212860000,"y":0},{"x":1568212920000,"y":0},{"x":1568212980000,"y":0},{"x":1568213040000,"y":0},{"x":1568213100000,"y":0},{"x":1568213160000,"y":0},{"x":1568213220000,"y":0},{"x":1568213280000,"y":0},{"x":1568213340000,"y":0},{"x":1568213400000,"y":0},{"x":1568213460000,"y":0},{"x":1568213520000,"y":0},{"x":1568213580000,"y":2.03},{"x":1568213640000,"y":27.86},{"x":1568213700000,"y":66.93},{"x":1568213760000,"y":0.01},{"x":1568213820000,"y":0},{"x":1568213880000,"y":0},{"x":1568213940000,"y":0},{"x":1568214000000,"y":0},{"x":1568214060000,"y":0.1},{"x":1568214120000,"y":0},{"x":1568214180000,"y":0},{"x":1568214240000,"y":0},{"x":1568214300000,"y":0},{"x":1568214360000,"y":0},{"x":1568214420000,"y":0},{"x":1568214480000,"y":0},{"x":1568214540000,"y":0},{"x":1568214600000,"y":0},{"x":1568214660000,"y":0},{"x":1568214720000,"y":0},{"x":1568214780000,"y":0.28},{"x":1568214840000,"y":0.76},{"x":1568214900000,"y":0},{"x":1568214960000,"y":0},{"x":1568215020000,"y":0},{"x":1568215080000,"y":0},{"x":1568215140000,"y":0},{"x":1568215200000,"y":0},{"x":1568215260000,"y":0},{"x":1568215320000,"y":0},{"x":1568215380000,"y":0},{"x":1568215440000,"y":2.13},{"x":1568215500000,"y":2.76},{"x":1568215560000,"y":0},{"x":1568215620000,"y":0},{"x":1568215680000,"y":0},{"x":1568215740000,"y":0.1},{"x":1568215800000,"y":0},{"x":1568215860000,"y":0},{"x":1568215920000,"y":0},{"x":1568215980000,"y":0},{"x":1568216040000,"y":0},{"x":1568216100000,"y":0},{"x":1568216160000,"y":0},{"x":1568216220000,"y":0},{"x":1568216280000,"y":0},{"x":1568216340000,"y":0},{"x":1568216400000,"y":0},{"x":1568216460000,"y":0},{"x":1568216520000,"y":0},{"x":1568216580000,"y":0},{"x":1568216640000,"y":0},{"x":1568216700000,"y":0.1},{"x":1568216760000,"y":0},{"x":1568216820000,"y":0},{"x":1568216880000,"y":0},{"x":1568216940000,"y":0},{"x":1568217000000,"y":0},{"x":1568217060000,"y":0},{"x":1568217120000,"y":0},{"x":1568217180000,"y":0},{"x":1568217240000,"y":0},{"x":1568217300000,"y":0},{"x":1568217360000,"y":28.32},{"x":1568217420000,"y":20.5},{"x":1568217480000,"y":0},{"x":1568217540000,"y":0},{"x":1568217600000,"y":0},{"x":1568217660000,"y":0},{"x":1568217720000,"y":0},{"x":1568217780000,"y":0},{"x":1568217840000,"y":0},{"x":1568217900000,"y":0},{"x":1568217960000,"y":0},{"x":1568218020000,"y":0},{"x":1568218080000,"y":0},{"x":1568218140000,"y":0},{"x":1568218200000,"y":0},{"x":1568218260000,"y":0},{"x":1568218320000,"y":0},{"x":1568218380000,"y":2.23},{"x":1568218440000,"y":0},{"x":1568218500000,"y":0},{"x":1568218560000,"y":0},{"x":1568218620000,"y":0},{"x":1568218680000,"y":0},{"x":1568218740000,"y":0},{"x":1568218800000,"y":0},{"x":1568218860000,"y":0},{"x":1568218920000,"y":0},{"x":1568218980000,"y":0},{"x":1568219040000,"y":0},{"x":1568219100000,"y":0},{"x":1568219160000,"y":0},{"x":1568219220000,"y":0.03},{"x":1568219280000,"y":0.04},{"x":1568219340000,"y":0},{"x":1568219400000,"y":0},{"x":1568219460000,"y":0},{"x":1568219520000,"y":0},{"x":1568219580000,"y":0},{"x":1568219640000,"y":0},{"x":1568219700000,"y":0},{"x":1568219760000,"y":0},{"x":1568219820000,"y":0},{"x":1568219880000,"y":0},{"x":1568219940000,"y":0},{"x":1568220000000,"y":0.07},{"x":1568220060000,"y":2.16},{"x":1568220120000,"y":0.01},{"x":1568220180000,"y":0},{"x":1568220240000,"y":0},{"x":1568220300000,"y":0},{"x":1568220360000,"y":0.01},{"x":1568220420000,"y":0},{"x":1568220480000,"y":0.01},{"x":1568220540000,"y":1.31},{"x":1568220600000,"y":0.03},{"x":1568220660000,"y":1.28},{"x":1568220720000,"y":0.27},{"x":1568220780000,"y":0.01},{"x":1568220840000,"y":1.32},{"x":1568220900000,"y":1.32},{"x":1568220960000,"y":3.61},{"x":1568221020000,"y":0},{"x":1568221080000,"y":0},{"x":1568221140000,"y":1.31},{"x":1568221200000,"y":0},{"x":1568221260000,"y":0},{"x":1568221320000,"y":0},{"x":1568221380000,"y":0},{"x":1568221440000,"y":0},{"x":1568221500000,"y":0},{"x":1568221560000,"y":0},{"x":1568221620000,"y":0.01},{"x":1568221680000,"y":0},{"x":1568221740000,"y":0},{"x":1568221800000,"y":0.01},{"x":1568221860000,"y":0.01},{"x":1568221920000,"y":0},{"x":1568221980000,"y":0.06},{"x":1568222040000,"y":0.01},{"x":1568222100000,"y":0},{"x":1568222160000,"y":0},{"x":1568222220000,"y":0},{"x":1568222280000,"y":0},{"x":1568222340000,"y":0},{"x":1568222400000,"y":0},{"x":1568222460000,"y":0},{"x":1568222520000,"y":0},{"x":1568222580000,"y":0},{"x":1568222640000,"y":0},{"x":1568222700000,"y":0},{"x":1568222760000,"y":0},{"x":1568222820000,"y":0},{"x":1568222880000,"y":0},{"x":1568222940000,"y":0.02},{"x":1568223000000,"y":1.2},{"x":1568223060000,"y":0.07},{"x":1568223120000,"y":0},{"x":1568223180000,"y":0.23},{"x":1568223240000,"y":0.4},{"x":1568223300000,"y":1.39},{"x":1568223360000,"y":0.82},{"x":1568223420000,"y":0},{"x":1568223480000,"y":1.86},{"x":1568223540000,"y":0.01},{"x":1568223600000,"y":0},{"x":1568223660000,"y":0},{"x":1568223720000,"y":0},{"x":1568223780000,"y":0},{"x":1568223840000,"y":0},{"x":1568223900000,"y":1.44},{"x":1568223960000,"y":0.02},{"x":1568224020000,"y":0},{"x":1568224080000,"y":0},{"x":1568224140000,"y":0},{"x":1568224200000,"y":0},{"x":1568224260000,"y":0.01},{"x":1568224320000,"y":0},{"x":1568224380000,"y":0},{"x":1568224440000,"y":0.14},{"x":1568224500000,"y":0},{"x":1568224560000,"y":2.15},{"x":1568224620000,"y":1.27},{"x":1568224680000,"y":0},{"x":1568224740000,"y":0},{"x":1568224800000,"y":0},{"x":1568224860000,"y":0},{"x":1568224920000,"y":0},{"x":1568224980000,"y":0},{"x":1568225040000,"y":0},{"x":1568225100000,"y":0},{"x":1568225160000,"y":0},{"x":1568225220000,"y":0},{"x":1568225280000,"y":0},{"x":1568225340000,"y":0},{"x":1568225400000,"y":0},{"x":1568225460000,"y":0},{"x":1568225520000,"y":1.75},{"x":1568225580000,"y":0.12},{"x":1568225640000,"y":0.01},{"x":1568225700000,"y":3.07},{"x":1568225760000,"y":0.01},{"x":1568225820000,"y":0},{"x":1568225880000,"y":0},{"x":1568225940000,"y":0},{"x":1568226000000,"y":0},{"x":1568226060000,"y":3.95},{"x":1568226120000,"y":0},{"x":1568226180000,"y":0},{"x":1568226240000,"y":0},{"x":1568226300000,"y":0},{"x":1568226360000,"y":0},{"x":1568226420000,"y":0},{"x":1568226480000,"y":3.15},{"x":1568226540000,"y":0.01},{"x":1568226600000,"y":2.21},{"x":1568226660000,"y":0.04},{"x":1568226720000,"y":0},{"x":1568226780000,"y":0},{"x":1568226840000,"y":3.05},{"x":1568226900000,"y":0},{"x":1568226960000,"y":0},{"x":1568227020000,"y":0},{"x":1568227080000,"y":0},{"x":1568227140000,"y":0},{"x":1568227200000,"y":0},{"x":1568227260000,"y":0},{"x":1568227320000,"y":0},{"x":1568227380000,"y":0},{"x":1568227440000,"y":0},{"x":1568227500000,"y":0},{"x":1568227560000,"y":0},{"x":1568227620000,"y":0},{"x":1568227680000,"y":0},{"x":1568227740000,"y":0},{"x":1568227800000,"y":0},{"x":1568227860000,"y":0},{"x":1568227920000,"y":0},{"x":1568227980000,"y":0.01},{"x":1568228040000,"y":0},{"x":1568228100000,"y":0},{"x":1568228160000,"y":0},{"x":1568228220000,"y":0},{"x":1568228280000,"y":0},{"x":1568228340000,"y":0},{"x":1568228400000,"y":0},{"x":1568228460000,"y":0},{"x":1568228520000,"y":0.02},{"x":1568228580000,"y":0},{"x":1568228640000,"y":0},{"x":1568228700000,"y":0},{"x":1568228760000,"y":0},{"x":1568228820000,"y":0},{"x":1568228880000,"y":0},{"x":1568228940000,"y":0},{"x":1568229000000,"y":0},{"x":1568229060000,"y":0},{"x":1568229120000,"y":0},{"x":1568229180000,"y":0},{"x":1568229240000,"y":0},{"x":1568229300000,"y":0},{"x":1568229360000,"y":0},{"x":1568229420000,"y":1.53},{"x":1568229480000,"y":0.03},{"x":1568229540000,"y":0},{"x":1568229600000,"y":0},{"x":1568229660000,"y":0},{"x":1568229720000,"y":0},{"x":1568229780000,"y":0},{"x":1568229840000,"y":0},{"x":1568229900000,"y":0},{"x":1568229960000,"y":0},{"x":1568230020000,"y":0},{"x":1568230080000,"y":0},{"x":1568230140000,"y":0},{"x":1568230200000,"y":0},{"x":1568230260000,"y":0},{"x":1568230320000,"y":0},{"x":1568230380000,"y":0},{"x":1568230440000,"y":0},{"x":1568230500000,"y":0},{"x":1568230560000,"y":0},{"x":1568230620000,"y":0},{"x":1568230680000,"y":0},{"x":1568230740000,"y":0},{"x":1568230800000,"y":0},{"x":1568230860000,"y":0},{"x":1568230920000,"y":0},{"x":1568230980000,"y":0},{"x":1568231040000,"y":0.01},{"x":1568231100000,"y":0},{"x":1568231160000,"y":0},{"x":1568231220000,"y":0},{"x":1568231280000,"y":0},{"x":1568231340000,"y":1.8},{"x":1568231400000,"y":0.02},{"x":1568231460000,"y":0},{"x":1568231520000,"y":1.1},{"x":1568231580000,"y":0},{"x":1568231640000,"y":0.01},{"x":1568231700000,"y":2.35},{"x":1568231760000,"y":0},{"x":1568231820000,"y":0.01},{"x":1568231880000,"y":0},{"x":1568231940000,"y":0.01},{"x":1568232000000,"y":0},{"x":1568232060000,"y":0},{"x":1568232120000,"y":0},{"x":1568232180000,"y":0},{"x":1568232240000,"y":0},{"x":1568232300000,"y":0},{"x":1568232360000,"y":0},{"x":1568232420000,"y":0},{"x":1568232480000,"y":0},{"x":1568232540000,"y":0},{"x":1568232600000,"y":0},{"x":1568232660000,"y":0},{"x":1568232720000,"y":0},{"x":1568232780000,"y":0},{"x":1568232840000,"y":0},{"x":1568232900000,"y":0.27},{"x":1568232960000,"y":0},{"x":1568233020000,"y":0},{"x":1568233080000,"y":0},{"x":1568233140000,"y":0},{"x":1568233200000,"y":0},{"x":1568233260000,"y":0},{"x":1568233320000,"y":0},{"x":1568233380000,"y":0},{"x":1568233440000,"y":0},{"x":1568233500000,"y":0},{"x":1568233560000,"y":0},{"x":1568233620000,"y":0.01},{"x":1568233680000,"y":0},{"x":1568233740000,"y":0},{"x":1568233800000,"y":0},{"x":1568233860000,"y":0},{"x":1568233920000,"y":0.01},{"x":1568233980000,"y":0.01},{"x":1568234040000,"y":0},{"x":1568234100000,"y":0},{"x":1568234160000,"y":0},{"x":1568234220000,"y":0},{"x":1568234280000,"y":0},{"x":1568234340000,"y":0},{"x":1568234400000,"y":0},{"x":1568234460000,"y":0},{"x":1568234520000,"y":0},{"x":1568234580000,"y":0},{"x":1568234640000,"y":0},{"x":1568234700000,"y":0},{"x":1568234760000,"y":0},{"x":1568234820000,"y":0},{"x":1568234880000,"y":0},{"x":1568234940000,"y":0},{"x":1568235000000,"y":0},{"x":1568235060000,"y":0},{"x":1568235120000,"y":0},{"x":1568235180000,"y":0},{"x":1568235240000,"y":0},{"x":1568235300000,"y":0},{"x":1568235360000,"y":0},{"x":1568235420000,"y":0},{"x":1568235480000,"y":0},{"x":1568235540000,"y":0},{"x":1568235600000,"y":0},{"x":1568235660000,"y":0},{"x":1568235720000,"y":0},{"x":1568235780000,"y":0},{"x":1568235840000,"y":0},{"x":1568235900000,"y":0},{"x":1568235960000,"y":0},{"x":1568236020000,"y":0},{"x":1568236080000,"y":0.07},{"x":1568236140000,"y":0},{"x":1568236200000,"y":0},{"x":1568236260000,"y":0},{"x":1568236320000,"y":0},{"x":1568236380000,"y":0},{"x":1568236440000,"y":0},{"x":1568236500000,"y":0},{"x":1568236560000,"y":0},{"x":1568236620000,"y":0},{"x":1568236680000,"y":0},{"x":1568236740000,"y":0},{"x":1568236800000,"y":0},{"x":1568236860000,"y":0},{"x":1568236920000,"y":0},{"x":1568236980000,"y":0},{"x":1568237040000,"y":0},{"x":1568237100000,"y":0},{"x":1568237160000,"y":0},{"x":1568237220000,"y":0},{"x":1568237280000,"y":0},{"x":1568237340000,"y":0},{"x":1568237400000,"y":0},{"x":1568237460000,"y":0},{"x":1568237520000,"y":0.31},{"x":1568237580000,"y":0.82},{"x":1568237640000,"y":0},{"x":1568237700000,"y":0},{"x":1568237760000,"y":0},{"x":1568237820000,"y":0},{"x":1568237880000,"y":0.15},{"x":1568237940000,"y":0},{"x":1568238000000,"y":0},{"x":1568238060000,"y":0},{"x":1568238120000,"y":0},{"x":1568238180000,"y":0},{"x":1568238240000,"y":0},{"x":1568238300000,"y":0},{"x":1568238360000,"y":0},{"x":1568238420000,"y":0},{"x":1568238480000,"y":0.12},{"x":1568238540000,"y":0},{"x":1568238600000,"y":0},{"x":1568238660000,"y":0.38},{"x":1568238720000,"y":19.36},{"x":1568238780000,"y":69.2},{"x":1568238840000,"y":23.43},{"x":1568238900000,"y":56.11},{"x":1568238960000,"y":0.03},{"x":1568239020000,"y":0.02},{"x":1568239080000,"y":0.01},{"x":1568239140000,"y":0.03},{"x":1568239200000,"y":0.18},{"x":1568239260000,"y":0.07},{"x":1568239320000,"y":0.03},{"x":1568239380000,"y":0.01},{"x":1568239440000,"y":0},{"x":1568239500000,"y":1.05},{"x":1568239560000,"y":0},{"x":1568239620000,"y":0.03},{"x":1568239680000,"y":0},{"x":1568239740000,"y":0},{"x":1568239800000,"y":0},{"x":1568239860000,"y":0},{"x":1568239920000,"y":0},{"x":1568239980000,"y":0},{"x":1568240040000,"y":0},{"x":1568240100000,"y":0},{"x":1568240160000,"y":0},{"x":1568240220000,"y":0},{"x":1568240280000,"y":0},{"x":1568240340000,"y":0},{"x":1568240400000,"y":0},{"x":1568240460000,"y":0},{"x":1568240520000,"y":0},{"x":1568240580000,"y":0.05},{"x":1568240640000,"y":0},{"x":1568240700000,"y":0.05},{"x":1568240760000,"y":0},{"x":1568240820000,"y":0},{"x":1568240880000,"y":0},{"x":1568240940000,"y":0},{"x":1568241000000,"y":0},{"x":1568241060000,"y":0},{"x":1568241120000,"y":0},{"x":1568241180000,"y":0},{"x":1568241240000,"y":0},{"x":1568241300000,"y":0.01},{"x":1568241360000,"y":0.31},{"x":1568241420000,"y":0.01},{"x":1568241480000,"y":0.57},{"x":1568241540000,"y":0},{"x":1568241600000,"y":0.01},{"x":1568241660000,"y":0.29},{"x":1568241720000,"y":0.3},{"x":1568241780000,"y":0.26},{"x":1568241840000,"y":0},{"x":1568241900000,"y":0.01},{"x":1568241960000,"y":0.29},{"x":1568242020000,"y":0.01},{"x":1568242080000,"y":0.29},{"x":1568242140000,"y":0.01},{"x":1568242200000,"y":0.82},{"x":1568242260000,"y":1.06},{"x":1568242320000,"y":2.08},{"x":1568242380000,"y":0.27},{"x":1568242440000,"y":0},{"x":1568242500000,"y":0},{"x":1568242560000,"y":0.26},{"x":1568242620000,"y":0.01},{"x":1568242680000,"y":0.03},{"x":1568242740000,"y":7.61},{"x":1568242800000,"y":0.01},{"x":1568242860000,"y":0},{"x":1568242920000,"y":0},{"x":1568242980000,"y":0},{"x":1568243040000,"y":0},{"x":1568243100000,"y":0},{"x":1568243160000,"y":0},{"x":1568243220000,"y":0},{"x":1568243280000,"y":0},{"x":1568243340000,"y":0},{"x":1568243400000,"y":0},{"x":1568243460000,"y":0},{"x":1568243520000,"y":0},{"x":1568243580000,"y":0},{"x":1568243640000,"y":0.2},{"x":1568243700000,"y":0},{"x":1568243760000,"y":0},{"x":1568243820000,"y":0},{"x":1568243880000,"y":0.2},{"x":1568243940000,"y":0.18},{"x":1568244000000,"y":0},{"x":1568244060000,"y":0},{"x":1568244120000,"y":0},{"x":1568244180000,"y":0},{"x":1568244240000,"y":0},{"x":1568244300000,"y":0.39},{"x":1568244360000,"y":0.05},{"x":1568244420000,"y":0.08},{"x":1568244480000,"y":0.04},{"x":1568244540000,"y":0.03},{"x":1568244600000,"y":0},{"x":1568244660000,"y":0.14},{"x":1568244720000,"y":0},{"x":1568244780000,"y":0},{"x":1568244840000,"y":0},{"x":1568244900000,"y":0},{"x":1568244960000,"y":0.03},{"x":1568245020000,"y":0.52},{"x":1568245080000,"y":0},{"x":1568245140000,"y":0},{"x":1568245200000,"y":0},{"x":1568245260000,"y":0.54},{"x":1568245320000,"y":0},{"x":1568245380000,"y":0},{"x":1568245440000,"y":0.01},{"x":1568245500000,"y":0},{"x":1568245560000,"y":0},{"x":1568245620000,"y":0},{"x":1568245680000,"y":0},{"x":1568245740000,"y":0},{"x":1568245800000,"y":0},{"x":1568245860000,"y":0},{"x":1568245920000,"y":0},{"x":1568245980000,"y":0},{"x":1568246040000,"y":0},{"x":1568246100000,"y":0},{"x":1568246160000,"y":0},{"x":1568246220000,"y":0},{"x":1568246280000,"y":0},{"x":1568246340000,"y":0},{"x":1568246400000,"y":0},{"x":1568246460000,"y":0},{"x":1568246520000,"y":0},{"x":1568246580000,"y":0},{"x":1568246640000,"y":0},{"x":1568246700000,"y":0},{"x":1568246760000,"y":0},{"x":1568246820000,"y":0},{"x":1568246880000,"y":0},{"x":1568246940000,"y":0},{"x":1568247000000,"y":0},{"x":1568247060000,"y":0.02},{"x":1568247120000,"y":0},{"x":1568247180000,"y":0},{"x":1568247240000,"y":0},{"x":1568247300000,"y":0},{"x":1568247360000,"y":0},{"x":1568247420000,"y":0},{"x":1568247480000,"y":0},{"x":1568247540000,"y":0},{"x":1568247600000,"y":0},{"x":1568247660000,"y":0},{"x":1568247720000,"y":0},{"x":1568247780000,"y":0},{"x":1568247840000,"y":0},{"x":1568247900000,"y":0},{"x":1568247960000,"y":0},{"x":1568248020000,"y":0},{"x":1568248080000,"y":0},{"x":1568248140000,"y":0},{"x":1568248200000,"y":0},{"x":1568248260000,"y":0},{"x":1568248320000,"y":0},{"x":1568248380000,"y":0},{"x":1568248440000,"y":0},{"x":1568248500000,"y":0},{"x":1568248560000,"y":0},{"x":1568248620000,"y":0},{"x":1568248680000,"y":0.02},{"x":1568248740000,"y":0},{"x":1568248800000,"y":0},{"x":1568248860000,"y":0},{"x":1568248920000,"y":0},{"x":1568248980000,"y":0},{"x":1568249040000,"y":0},{"x":1568249100000,"y":0},{"x":1568249160000,"y":0},{"x":1568249220000,"y":0},{"x":1568249280000,"y":0},{"x":1568249340000,"y":0},{"x":1568249400000,"y":0},{"x":1568249460000,"y":0},{"x":1568249520000,"y":0},{"x":1568249580000,"y":0},{"x":1568249640000,"y":0},{"x":1568249700000,"y":0},{"x":1568249760000,"y":0},{"x":1568249820000,"y":0},{"x":1568249880000,"y":0},{"x":1568249940000,"y":0},{"x":1568250000000,"y":0},{"x":1568250060000,"y":1.13},{"x":1568250120000,"y":1.15},{"x":1568250180000,"y":0.08},{"x":1568250240000,"y":0},{"x":1568250300000,"y":0},{"x":1568250360000,"y":0},{"x":1568250420000,"y":0},{"x":1568250480000,"y":0},{"x":1568250540000,"y":0},{"x":1568250600000,"y":0},{"x":1568250660000,"y":0},{"x":1568250720000,"y":0},{"x":1568250780000,"y":0},{"x":1568250840000,"y":0},{"x":1568250900000,"y":0},{"x":1568250960000,"y":0},{"x":1568251020000,"y":0},{"x":1568251080000,"y":0},{"x":1568251140000,"y":0},{"x":1568251200000,"y":0},{"x":1568251260000,"y":0},{"x":1568251320000,"y":0},{"x":1568251380000,"y":0},{"x":1568251440000,"y":0},{"x":1568251500000,"y":0},{"x":1568251560000,"y":0},{"x":1568251620000,"y":0},{"x":1568251680000,"y":0},{"x":1568251740000,"y":0},{"x":1568251800000,"y":0},{"x":1568251860000,"y":0.03},{"x":1568251920000,"y":1.32},{"x":1568251980000,"y":0.01},{"x":1568252040000,"y":0.23},{"x":1568252100000,"y":0},{"x":1568252160000,"y":0},{"x":1568252220000,"y":0},{"x":1568252280000,"y":0},{"x":1568252340000,"y":0},{"x":1568252400000,"y":0},{"x":1568252460000,"y":0},{"x":1568252520000,"y":0},{"x":1568252580000,"y":0},{"x":1568252640000,"y":0},{"x":1568252700000,"y":0},{"x":1568252760000,"y":0},{"x":1568252820000,"y":0},{"x":1568252880000,"y":0},{"x":1568252940000,"y":0},{"x":1568253000000,"y":0},{"x":1568253060000,"y":0},{"x":1568253120000,"y":0},{"x":1568253180000,"y":0},{"x":1568253240000,"y":0},{"x":1568253300000,"y":0},{"x":1568253360000,"y":0},{"x":1568253420000,"y":0},{"x":1568253480000,"y":0},{"x":1568253540000,"y":0},{"x":1568253600000,"y":0},{"x":1568253660000,"y":0.01},{"x":1568253720000,"y":0},{"x":1568253780000,"y":0},{"x":1568253840000,"y":0},{"x":1568253900000,"y":0},{"x":1568253960000,"y":0},{"x":1568254020000,"y":0},{"x":1568254080000,"y":0},{"x":1568254140000,"y":0},{"x":1568254200000,"y":0},{"x":1568254260000,"y":0},{"x":1568254320000,"y":0},{"x":1568254380000,"y":0},{"x":1568254440000,"y":0},{"x":1568254500000,"y":0},{"x":1568254560000,"y":0},{"x":1568254620000,"y":0},{"x":1568254680000,"y":0},{"x":1568254740000,"y":0},{"x":1568254800000,"y":0},{"x":1568254860000,"y":0},{"x":1568254920000,"y":0},{"x":1568254980000,"y":0},{"x":1568255040000,"y":0},{"x":1568255100000,"y":0},{"x":1568255160000,"y":0},{"x":1568255220000,"y":0},{"x":1568255280000,"y":0},{"x":1568255340000,"y":0},{"x":1568255400000,"y":0},{"x":1568255460000,"y":0},{"x":1568255520000,"y":0},{"x":1568255580000,"y":0},{"x":1568255640000,"y":0},{"x":1568255700000,"y":0},{"x":1568255760000,"y":0},{"x":1568255820000,"y":0},{"x":1568255880000,"y":0},{"x":1568255940000,"y":0},{"x":1568256000000,"y":0},{"x":1568256060000,"y":0},{"x":1568256120000,"y":0.01},{"x":1568256180000,"y":0},{"x":1568256240000,"y":0},{"x":1568256300000,"y":0},{"x":1568256360000,"y":0},{"x":1568256420000,"y":0},{"x":1568256480000,"y":0},{"x":1568256540000,"y":0},{"x":1568256600000,"y":0},{"x":1568256660000,"y":0},{"x":1568256720000,"y":0},{"x":1568256780000,"y":0},{"x":1568256840000,"y":0},{"x":1568256900000,"y":0},{"x":1568256960000,"y":0},{"x":1568257020000,"y":0},{"x":1568257080000,"y":0},{"x":1568257140000,"y":0},{"x":1568257200000,"y":0},{"x":1568257260000,"y":0},{"x":1568257320000,"y":0},{"x":1568257380000,"y":0},{"x":1568257440000,"y":0},{"x":1568257500000,"y":0},{"x":1568257560000,"y":0},{"x":1568257620000,"y":0},{"x":1568257680000,"y":0},{"x":1568257740000,"y":0},{"x":1568257800000,"y":0},{"x":1568257860000,"y":0},{"x":1568257920000,"y":0},{"x":1568257980000,"y":0},{"x":1568258040000,"y":0},{"x":1568258100000,"y":0},{"x":1568258160000,"y":0},{"x":1568258220000,"y":0},{"x":1568258280000,"y":0},{"x":1568258340000,"y":0},{"x":1568258400000,"y":0},{"x":1568258460000,"y":0},{"x":1568258520000,"y":0},{"x":1568258580000,"y":0},{"x":1568258640000,"y":0},{"x":1568258700000,"y":0},{"x":1568258760000,"y":0},{"x":1568258820000,"y":0},{"x":1568258880000,"y":0},{"x":1568258940000,"y":0},{"x":1568259000000,"y":0},{"x":1568259060000,"y":0},{"x":1568259120000,"y":0},{"x":1568259180000,"y":0},{"x":1568259240000,"y":0},{"x":1568259300000,"y":0},{"x":1568259360000,"y":0},{"x":1568259420000,"y":0},{"x":1568259480000,"y":0},{"x":1568259540000,"y":0},{"x":1568259600000,"y":0},{"x":1568259660000,"y":0},{"x":1568259720000,"y":0},{"x":1568259780000,"y":0},{"x":1568259840000,"y":0},{"x":1568259900000,"y":0},{"x":1568259960000,"y":0},{"x":1568260020000,"y":0},{"x":1568260080000,"y":0},{"x":1568260140000,"y":0},{"x":1568260200000,"y":0},{"x":1568260260000,"y":0},{"x":1568260320000,"y":0},{"x":1568260380000,"y":0},{"x":1568260440000,"y":0},{"x":1568260500000,"y":0},{"x":1568260560000,"y":0},{"x":1568260620000,"y":0},{"x":1568260680000,"y":0},{"x":1568260740000,"y":0},{"x":1568260800000,"y":0},{"x":1568260860000,"y":0},{"x":1568260920000,"y":0},{"x":1568260980000,"y":0},{"x":1568261040000,"y":0},{"x":1568261100000,"y":0},{"x":1568261160000,"y":0},{"x":1568261220000,"y":0},{"x":1568261280000,"y":0},{"x":1568261340000,"y":0},{"x":1568261400000,"y":0},{"x":1568261460000,"y":0},{"x":1568261520000,"y":0},{"x":1568261580000,"y":0},{"x":1568261640000,"y":0},{"x":1568261700000,"y":0},{"x":1568261760000,"y":0},{"x":1568261820000,"y":0},{"x":1568261880000,"y":0},{"x":1568261940000,"y":0},{"x":1568262000000,"y":0},{"x":1568262060000,"y":0},{"x":1568262120000,"y":0},{"x":1568262180000,"y":0},{"x":1568262240000,"y":0},{"x":1568262300000,"y":0},{"x":1568262360000,"y":0},{"x":1568262420000,"y":0},{"x":1568262480000,"y":0},{"x":1568262540000,"y":0},{"x":1568262600000,"y":0},{"x":1568262660000,"y":0},{"x":1568262720000,"y":0},{"x":1568262780000,"y":0},{"x":1568262840000,"y":0},{"x":1568262900000,"y":0},{"x":1568262960000,"y":0},{"x":1568263020000,"y":0},{"x":1568263080000,"y":0},{"x":1568263140000,"y":0},{"x":1568263200000,"y":0},{"x":1568263260000,"y":0},{"x":1568263320000,"y":0},{"x":1568263380000,"y":0},{"x":1568263440000,"y":0},{"x":1568263500000,"y":0},{"x":1568263560000,"y":0},{"x":1568263620000,"y":0},{"x":1568263680000,"y":0},{"x":1568263740000,"y":0},{"x":1568263800000,"y":0},{"x":1568263860000,"y":0},{"x":1568263920000,"y":0},{"x":1568263980000,"y":0},{"x":1568264040000,"y":0},{"x":1568264100000,"y":0},{"x":1568264160000,"y":0},{"x":1568264220000,"y":0},{"x":1568264280000,"y":0},{"x":1568264340000,"y":0},{"x":1568264400000,"y":0},{"x":1568264460000,"y":0},{"x":1568264520000,"y":0},{"x":1568264580000,"y":0},{"x":1568264640000,"y":0},{"x":1568264700000,"y":0},{"x":1568264760000,"y":0},{"x":1568264820000,"y":0},{"x":1568264880000,"y":0},{"x":1568264940000,"y":0},{"x":1568265000000,"y":0},{"x":1568265060000,"y":0},{"x":1568265120000,"y":0},{"x":1568265180000,"y":0},{"x":1568265240000,"y":0},{"x":1568265300000,"y":0},{"x":1568265360000,"y":0},{"x":1568265420000,"y":0},{"x":1568265480000,"y":0},{"x":1568265540000,"y":0},{"x":1568265600000,"y":0.05},{"x":1568265660000,"y":0},{"x":1568265720000,"y":0},{"x":1568265780000,"y":0},{"x":1568265840000,"y":0},{"x":1568265900000,"y":0},{"x":1568265960000,"y":0},{"x":1568266020000,"y":0},{"x":1568266080000,"y":0},{"x":1568266140000,"y":0},{"x":1568266200000,"y":2.57},{"x":1568266260000,"y":0},{"x":1568266320000,"y":0},{"x":1568266380000,"y":0},{"x":1568266440000,"y":0},{"x":1568266500000,"y":0},{"x":1568266560000,"y":0},{"x":1568266620000,"y":0},{"x":1568266680000,"y":0},{"x":1568266740000,"y":0},{"x":1568266800000,"y":0},{"x":1568266860000,"y":0},{"x":1568266920000,"y":0},{"x":1568266980000,"y":0.03},{"x":1568267040000,"y":1.37},{"x":1568267100000,"y":1.95},{"x":1568267160000,"y":0.68},{"x":1568267220000,"y":0},{"x":1568267280000,"y":0.01},{"x":1568267340000,"y":0},{"x":1568267400000,"y":0},{"x":1568267460000,"y":0},{"x":1568267520000,"y":0},{"x":1568267580000,"y":0},{"x":1568267640000,"y":0},{"x":1568267700000,"y":0},{"x":1568267760000,"y":0},{"x":1568267820000,"y":0},{"x":1568267880000,"y":0},{"x":1568267940000,"y":0},{"x":1568268000000,"y":0},{"x":1568268060000,"y":0},{"x":1568268120000,"y":0},{"x":1568268180000,"y":0},{"x":1568268240000,"y":0},{"x":1568268300000,"y":0},{"x":1568268360000,"y":0},{"x":1568268420000,"y":0},{"x":1568268480000,"y":0},{"x":1568268540000,"y":0},{"x":1568268600000,"y":0},{"x":1568268660000,"y":0},{"x":1568268720000,"y":0},{"x":1568268780000,"y":0},{"x":1568268840000,"y":0},{"x":1568268900000,"y":0},{"x":1568268960000,"y":0},{"x":1568269020000,"y":0},{"x":1568269080000,"y":0},{"x":1568269140000,"y":0},{"x":1568269200000,"y":0},{"x":1568269260000,"y":0},{"x":1568269320000,"y":0},{"x":1568269380000,"y":0},{"x":1568269440000,"y":0},{"x":1568269500000,"y":0},{"x":1568269560000,"y":0},{"x":1568269620000,"y":0},{"x":1568269680000,"y":0},{"x":1568269740000,"y":0},{"x":1568269800000,"y":0},{"x":1568269860000,"y":0},{"x":1568269920000,"y":0},{"x":1568269980000,"y":0},{"x":1568270040000,"y":0},{"x":1568270100000,"y":0},{"x":1568270160000,"y":0.02},{"x":1568270220000,"y":0},{"x":1568270280000,"y":0},{"x":1568270340000,"y":0},{"x":1568270400000,"y":0},{"x":1568270460000,"y":0},{"x":1568270520000,"y":0},{"x":1568270580000,"y":0},{"x":1568270640000,"y":0},{"x":1568270700000,"y":0},{"x":1568270760000,"y":0},{"x":1568270820000,"y":0},{"x":1568270880000,"y":0},{"x":1568270940000,"y":0},{"x":1568271000000,"y":0},{"x":1568271060000,"y":0},{"x":1568271120000,"y":0},{"x":1568271180000,"y":0},{"x":1568271240000,"y":0},{"x":1568271300000,"y":0},{"x":1568271360000,"y":0},{"x":1568271420000,"y":0},{"x":1568271480000,"y":0},{"x":1568271540000,"y":0},{"x":1568271600000,"y":0},{"x":1568271660000,"y":0},{"x":1568271720000,"y":0},{"x":1568271780000,"y":0},{"x":1568271840000,"y":0},{"x":1568271900000,"y":0},{"x":1568271960000,"y":0},{"x":1568272020000,"y":0},{"x":1568272080000,"y":0},{"x":1568272140000,"y":0},{"x":1568272200000,"y":0},{"x":1568272260000,"y":0},{"x":1568272320000,"y":0},{"x":1568272380000,"y":0},{"x":1568272440000,"y":0},{"x":1568272500000,"y":0},{"x":1568272560000,"y":0},{"x":1568272620000,"y":0},{"x":1568272680000,"y":0},{"x":1568272740000,"y":0},{"x":1568272800000,"y":0},{"x":1568272860000,"y":0},{"x":1568272920000,"y":0},{"x":1568272980000,"y":0},{"x":1568273040000,"y":0},{"x":1568273100000,"y":0},{"x":1568273160000,"y":0},{"x":1568273220000,"y":0},{"x":1568273280000,"y":0},{"x":1568273340000,"y":0},{"x":1568273400000,"y":0},{"x":1568273460000,"y":0},{"x":1568273520000,"y":0},{"x":1568273580000,"y":0},{"x":1568273640000,"y":0},{"x":1568273700000,"y":0},{"x":1568273760000,"y":0},{"x":1568273820000,"y":0},{"x":1568273880000,"y":0},{"x":1568273940000,"y":0},{"x":1568274000000,"y":0},{"x":1568274060000,"y":0},{"x":1568274120000,"y":0},{"x":1568274180000,"y":0},{"x":1568274240000,"y":0},{"x":1568274300000,"y":0},{"x":1568274360000,"y":0},{"x":1568274420000,"y":0},{"x":1568274480000,"y":0},{"x":1568274540000,"y":0},{"x":1568274600000,"y":0},{"x":1568274660000,"y":0},{"x":1568274720000,"y":0},{"x":1568274780000,"y":0},{"x":1568274840000,"y":0},{"x":1568274900000,"y":0},{"x":1568274960000,"y":0},{"x":1568275020000,"y":0},{"x":1568275080000,"y":0},{"x":1568275140000,"y":0},{"x":1568275200000,"y":0},{"x":1568275260000,"y":0},{"x":1568275320000,"y":0},{"x":1568275380000,"y":0},{"x":1568275440000,"y":0},{"x":1568275500000,"y":0},{"x":1568275560000,"y":0.01},{"x":1568275620000,"y":0},{"x":1568275680000,"y":0},{"x":1568275740000,"y":0},{"x":1568275800000,"y":0},{"x":1568275860000,"y":0},{"x":1568275920000,"y":0},{"x":1568275980000,"y":0},{"x":1568276040000,"y":0},{"x":1568276100000,"y":0},{"x":1568276160000,"y":0},{"x":1568276220000,"y":0},{"x":1568276280000,"y":0},{"x":1568276340000,"y":0},{"x":1568276400000,"y":0},{"x":1568276460000,"y":0},{"x":1568276520000,"y":0},{"x":1568276580000,"y":0},{"x":1568276640000,"y":0},{"x":1568276700000,"y":0},{"x":1568276760000,"y":0},{"x":1568276820000,"y":0},{"x":1568276880000,"y":0},{"x":1568276940000,"y":0},{"x":1568277000000,"y":0},{"x":1568277060000,"y":0},{"x":1568277120000,"y":0},{"x":1568277180000,"y":0},{"x":1568277240000,"y":0},{"x":1568277300000,"y":0},{"x":1568277360000,"y":0},{"x":1568277420000,"y":0},{"x":1568277480000,"y":0},{"x":1568277540000,"y":0},{"x":1568277600000,"y":0},{"x":1568277660000,"y":0},{"x":1568277720000,"y":0},{"x":1568277780000,"y":0},{"x":1568277840000,"y":0},{"x":1568277900000,"y":0},{"x":1568277960000,"y":0},{"x":1568278020000,"y":0},{"x":1568278080000,"y":0},{"x":1568278140000,"y":0},{"x":1568278200000,"y":0},{"x":1568278260000,"y":0},{"x":1568278320000,"y":0},{"x":1568278380000,"y":0},{"x":1568278440000,"y":0},{"x":1568278500000,"y":0},{"x":1568278560000,"y":0},{"x":1568278620000,"y":0},{"x":1568278680000,"y":0},{"x":1568278740000,"y":0},{"x":1568278800000,"y":0},{"x":1568278860000,"y":0},{"x":1568278920000,"y":0},{"x":1568278980000,"y":0},{"x":1568279040000,"y":0},{"x":1568279100000,"y":0},{"x":1568279160000,"y":0},{"x":1568279220000,"y":0},{"x":1568279280000,"y":0},{"x":1568279340000,"y":0},{"x":1568279400000,"y":0},{"x":1568279460000,"y":0},{"x":1568279520000,"y":0},{"x":1568279580000,"y":0},{"x":1568279640000,"y":0},{"x":1568279700000,"y":0},{"x":1568279760000,"y":0},{"x":1568279820000,"y":0},{"x":1568279880000,"y":0},{"x":1568279940000,"y":0},{"x":1568280000000,"y":0},{"x":1568280060000,"y":0},{"x":1568280120000,"y":0},{"x":1568280180000,"y":0},{"x":1568280240000,"y":0},{"x":1568280300000,"y":0},{"x":1568280360000,"y":0},{"x":1568280420000,"y":0},{"x":1568280480000,"y":0},{"x":1568280540000,"y":0},{"x":1568280600000,"y":0},{"x":1568280660000,"y":0.01},{"x":1568280720000,"y":0},{"x":1568280780000,"y":0},{"x":1568280840000,"y":0},{"x":1568280900000,"y":0},{"x":1568280960000,"y":0},{"x":1568281020000,"y":0},{"x":1568281080000,"y":0},{"x":1568281140000,"y":0},{"x":1568281200000,"y":0},{"x":1568281260000,"y":0},{"x":1568281320000,"y":0},{"x":1568281380000,"y":0},{"x":1568281440000,"y":0},{"x":1568281500000,"y":0.01},{"x":1568281560000,"y":0},{"x":1568281620000,"y":0},{"x":1568281680000,"y":0},{"x":1568281740000,"y":0},{"x":1568281800000,"y":0},{"x":1568281860000,"y":0},{"x":1568281920000,"y":0},{"x":1568281980000,"y":0},{"x":1568282040000,"y":0},{"x":1568282100000,"y":0},{"x":1568282160000,"y":0},{"x":1568282220000,"y":0},{"x":1568282280000,"y":0},{"x":1568282340000,"y":0},{"x":1568282400000,"y":0},{"x":1568282460000,"y":0},{"x":1568282520000,"y":0},{"x":1568282580000,"y":0},{"x":1568282640000,"y":0},{"x":1568282700000,"y":0},{"x":1568282760000,"y":0},{"x":1568282820000,"y":0},{"x":1568282880000,"y":0},{"x":1568282940000,"y":0},{"x":1568283000000,"y":0},{"x":1568283060000,"y":0},{"x":1568283120000,"y":0},{"x":1568283180000,"y":0},{"x":1568283240000,"y":0},{"x":1568283300000,"y":0},{"x":1568283360000,"y":0},{"x":1568283420000,"y":0},{"x":1568283480000,"y":0},{"x":1568283540000,"y":0},{"x":1568283600000,"y":0},{"x":1568283660000,"y":0},{"x":1568283720000,"y":0},{"x":1568283780000,"y":0},{"x":1568283840000,"y":0},{"x":1568283900000,"y":0},{"x":1568283960000,"y":0},{"x":1568284020000,"y":0},{"x":1568284080000,"y":0},{"x":1568284140000,"y":0},{"x":1568284200000,"y":0},{"x":1568284260000,"y":0},{"x":1568284320000,"y":0},{"x":1568284380000,"y":0},{"x":1568284440000,"y":0},{"x":1568284500000,"y":0},{"x":1568284560000,"y":0},{"x":1568284620000,"y":0},{"x":1568284680000,"y":0},{"x":1568284740000,"y":0},{"x":1568284800000,"y":0},{"x":1568284860000,"y":0},{"x":1568284920000,"y":0},{"x":1568284980000,"y":0},{"x":1568285040000,"y":0},{"x":1568285100000,"y":0},{"x":1568285160000,"y":0},{"x":1568285220000,"y":0},{"x":1568285280000,"y":0},{"x":1568285340000,"y":0},{"x":1568285400000,"y":0},{"x":1568285460000,"y":0},{"x":1568285520000,"y":0},{"x":1568285580000,"y":0},{"x":1568285640000,"y":0},{"x":1568285700000,"y":0},{"x":1568285760000,"y":0},{"x":1568285820000,"y":0},{"x":1568285880000,"y":0},{"x":1568285940000,"y":0},{"x":1568286000000,"y":0},{"x":1568286060000,"y":0},{"x":1568286120000,"y":0},{"x":1568286180000,"y":0},{"x":1568286240000,"y":0},{"x":1568286300000,"y":0},{"x":1568286360000,"y":0},{"x":1568286420000,"y":0},{"x":1568286480000,"y":0},{"x":1568286540000,"y":0},{"x":1568286600000,"y":0},{"x":1568286660000,"y":0},{"x":1568286720000,"y":0},{"x":1568286780000,"y":0},{"x":1568286840000,"y":0},{"x":1568286900000,"y":0},{"x":1568286960000,"y":0},{"x":1568287020000,"y":0.01},{"x":1568287080000,"y":0},{"x":1568287140000,"y":0},{"x":1568287200000,"y":0},{"x":1568287260000,"y":0},{"x":1568287320000,"y":0},{"x":1568287380000,"y":0},{"x":1568287440000,"y":0},{"x":1568287500000,"y":0},{"x":1568287560000,"y":0},{"x":1568287620000,"y":0},{"x":1568287680000,"y":0},{"x":1568287740000,"y":0},{"x":1568287800000,"y":0},{"x":1568287860000,"y":0},{"x":1568287920000,"y":0},{"x":1568287980000,"y":0},{"x":1568288040000,"y":0},{"x":1568288100000,"y":0},{"x":1568288160000,"y":0},{"x":1568288220000,"y":0},{"x":1568288280000,"y":0},{"x":1568288340000,"y":0},{"x":1568288400000,"y":0},{"x":1568288460000,"y":0},{"x":1568288520000,"y":0},{"x":1568288580000,"y":0},{"x":1568288640000,"y":0},{"x":1568288700000,"y":0},{"x":1568288760000,"y":0},{"x":1568288820000,"y":0},{"x":1568288880000,"y":0},{"x":1568288940000,"y":0},{"x":1568289000000,"y":0},{"x":1568289060000,"y":0},{"x":1568289120000,"y":0},{"x":1568289180000,"y":0},{"x":1568289240000,"y":0},{"x":1568289300000,"y":0},{"x":1568289360000,"y":0},{"x":1568289420000,"y":0},{"x":1568289480000,"y":0},{"x":1568289540000,"y":0},{"x":1568289600000,"y":0},{"x":1568289660000,"y":0},{"x":1568289720000,"y":0},{"x":1568289780000,"y":0},{"x":1568289840000,"y":0},{"x":1568289900000,"y":0},{"x":1568289960000,"y":0},{"x":1568290020000,"y":0},{"x":1568290080000,"y":0},{"x":1568290140000,"y":0},{"x":1568290200000,"y":0},{"x":1568290260000,"y":0},{"x":1568290320000,"y":0},{"x":1568290380000,"y":0},{"x":1568290440000,"y":0},{"x":1568290500000,"y":0},{"x":1568290560000,"y":0},{"x":1568290620000,"y":0},{"x":1568290680000,"y":0},{"x":1568290740000,"y":0},{"x":1568290800000,"y":0},{"x":1568290860000,"y":0},{"x":1568290920000,"y":0},{"x":1568290980000,"y":0},{"x":1568291040000,"y":0},{"x":1568291100000,"y":0},{"x":1568291160000,"y":0},{"x":1568291220000,"y":0},{"x":1568291280000,"y":0},{"x":1568291340000,"y":0},{"x":1568291400000,"y":0},{"x":1568291460000,"y":0},{"x":1568291520000,"y":0},{"x":1568291580000,"y":0},{"x":1568291640000,"y":0},{"x":1568291700000,"y":0},{"x":1568291760000,"y":0},{"x":1568291820000,"y":0},{"x":1568291880000,"y":0},{"x":1568291940000,"y":0},{"x":1568292000000,"y":0},{"x":1568292060000,"y":0},{"x":1568292120000,"y":0},{"x":1568292180000,"y":0},{"x":1568292240000,"y":0},{"x":1568292300000,"y":0},{"x":1568292360000,"y":0},{"x":1568292420000,"y":0},{"x":1568292480000,"y":0},{"x":1568292540000,"y":0},{"x":1568292600000,"y":0},{"x":1568292660000,"y":0},{"x":1568292720000,"y":0},{"x":1568292780000,"y":0},{"x":1568292840000,"y":0},{"x":1568292900000,"y":0},{"x":1568292960000,"y":0},{"x":1568293020000,"y":0},{"x":1568293080000,"y":0},{"x":1568293140000,"y":0},{"x":1568293200000,"y":0},{"x":1568293260000,"y":0},{"x":1568293320000,"y":0},{"x":1568293380000,"y":0},{"x":1568293440000,"y":0},{"x":1568293500000,"y":0},{"x":1568293560000,"y":0},{"x":1568293620000,"y":0},{"x":1568293680000,"y":0},{"x":1568293740000,"y":0},{"x":1568293800000,"y":0},{"x":1568293860000,"y":0},{"x":1568293920000,"y":0},{"x":1568293980000,"y":0},{"x":1568294040000,"y":0},{"x":1568294100000,"y":0},{"x":1568294160000,"y":0},{"x":1568294220000,"y":0},{"x":1568294280000,"y":0},{"x":1568294340000,"y":0},{"x":1568294400000,"y":0},{"x":1568294460000,"y":0},{"x":1568294520000,"y":0},{"x":1568294580000,"y":0},{"x":1568294640000,"y":0},{"x":1568294700000,"y":0},{"x":1568294760000,"y":0},{"x":1568294820000,"y":0},{"x":1568294880000,"y":0},{"x":1568294940000,"y":0},{"x":1568295000000,"y":0},{"x":1568295060000,"y":0},{"x":1568295120000,"y":0},{"x":1568295180000,"y":0},{"x":1568295240000,"y":0},{"x":1568295300000,"y":0},{"x":1568295360000,"y":0},{"x":1568295420000,"y":0},{"x":1568295480000,"y":0},{"x":1568295540000,"y":0},{"x":1568295600000,"y":0},{"x":1568295660000,"y":0},{"x":1568295720000,"y":0},{"x":1568295780000,"y":0},{"x":1568295840000,"y":0},{"x":1568295900000,"y":0},{"x":1568295960000,"y":0},{"x":1568296020000,"y":0},{"x":1568296080000,"y":0},{"x":1568296140000,"y":0},{"x":1568296200000,"y":0},{"x":1568296260000,"y":0},{"x":1568296320000,"y":0},{"x":1568296380000,"y":0},{"x":1568296440000,"y":0},{"x":1568296500000,"y":0},{"x":1568296560000,"y":0},{"x":1568296620000,"y":0},{"x":1568296680000,"y":0},{"x":1568296740000,"y":0},{"x":1568296800000,"y":1.14},{"x":1568296860000,"y":0},{"x":1568296920000,"y":0},{"x":1568296980000,"y":0},{"x":1568297040000,"y":0},{"x":1568297100000,"y":0},{"x":1568297160000,"y":0},{"x":1568297220000,"y":0},{"x":1568297280000,"y":0},{"x":1568297340000,"y":0},{"x":1568297400000,"y":0.01},{"x":1568297460000,"y":0},{"x":1568297520000,"y":0},{"x":1568297580000,"y":0},{"x":1568297640000,"y":0},{"x":1568297700000,"y":0},{"x":1568297760000,"y":0},{"x":1568297820000,"y":0.01},{"x":1568297880000,"y":0},{"x":1568297940000,"y":0},{"x":1568298000000,"y":0},{"x":1568298060000,"y":0},{"x":1568298120000,"y":0},{"x":1568298180000,"y":0},{"x":1568298240000,"y":0},{"x":1568298300000,"y":0},{"x":1568298360000,"y":0},{"x":1568298420000,"y":0},{"x":1568298480000,"y":0},{"x":1568298540000,"y":0},{"x":1568298600000,"y":0},{"x":1568298660000,"y":0},{"x":1568298720000,"y":0},{"x":1568298780000,"y":0},{"x":1568298840000,"y":0},{"x":1568298900000,"y":0},{"x":1568298960000,"y":0},{"x":1568299020000,"y":0},{"x":1568299080000,"y":0},{"x":1568299140000,"y":0},{"x":1568299200000,"y":0},{"x":1568299260000,"y":0},{"x":1568299320000,"y":0},{"x":1568299380000,"y":0},{"x":1568299440000,"y":0},{"x":1568299500000,"y":0},{"x":1568299560000,"y":0},{"x":1568299620000,"y":0},{"x":1568299680000,"y":0},{"x":1568299740000,"y":0},{"x":1568299800000,"y":0},{"x":1568299860000,"y":0},{"x":1568299920000,"y":0},{"x":1568299980000,"y":0},{"x":1568300040000,"y":0},{"x":1568300100000,"y":0},{"x":1568300160000,"y":0},{"x":1568300220000,"y":0},{"x":1568300280000,"y":0},{"x":1568300340000,"y":0},{"x":1568300400000,"y":0},{"x":1568300460000,"y":0},{"x":1568300520000,"y":0},{"x":1568300580000,"y":0},{"x":1568300640000,"y":0},{"x":1568300700000,"y":0},{"x":1568300760000,"y":0},{"x":1568300820000,"y":0},{"x":1568300880000,"y":0},{"x":1568300940000,"y":0},{"x":1568301000000,"y":0},{"x":1568301060000,"y":0},{"x":1568301120000,"y":0.02},{"x":1568301180000,"y":0},{"x":1568301240000,"y":0},{"x":1568301300000,"y":0},{"x":1568301360000,"y":0},{"x":1568301420000,"y":0},{"x":1568301480000,"y":0},{"x":1568301540000,"y":0},{"x":1568301600000,"y":0},{"x":1568301660000,"y":0},{"x":1568301720000,"y":0},{"x":1568301780000,"y":0},{"x":1568301840000,"y":0},{"x":1568301900000,"y":0.04},{"x":1568301960000,"y":0},{"x":1568302020000,"y":0},{"x":1568302080000,"y":0},{"x":1568302140000,"y":0},{"x":1568302200000,"y":0},{"x":1568302260000,"y":0},{"x":1568302320000,"y":0},{"x":1568302380000,"y":0},{"x":1568302440000,"y":0},{"x":1568302500000,"y":0},{"x":1568302560000,"y":0},{"x":1568302620000,"y":0},{"x":1568302680000,"y":0},{"x":1568302740000,"y":0},{"x":1568302800000,"y":0},{"x":1568302860000,"y":0},{"x":1568302920000,"y":0},{"x":1568302980000,"y":0},{"x":1568303040000,"y":0},{"x":1568303100000,"y":0},{"x":1568303160000,"y":0},{"x":1568303220000,"y":0},{"x":1568303280000,"y":0},{"x":1568303340000,"y":0},{"x":1568303400000,"y":0},{"x":1568303460000,"y":0.94},{"x":1568303520000,"y":0},{"x":1568303580000,"y":0},{"x":1568303640000,"y":0},{"x":1568303700000,"y":0},{"x":1568303760000,"y":0},{"x":1568303820000,"y":0},{"x":1568303880000,"y":0.93},{"x":1568303940000,"y":0.01},{"x":1568304000000,"y":0},{"x":1568304060000,"y":0},{"x":1568304120000,"y":0},{"x":1568304180000,"y":0},{"x":1568304240000,"y":0},{"x":1568304300000,"y":0.08},{"x":1568304360000,"y":0.25},{"x":1568304420000,"y":0},{"x":1568304480000,"y":0},{"x":1568304540000,"y":0},{"x":1568304600000,"y":0},{"x":1568304660000,"y":0},{"x":1568304720000,"y":0},{"x":1568304780000,"y":0},{"x":1568304840000,"y":0},{"x":1568304900000,"y":0},{"x":1568304960000,"y":0},{"x":1568305020000,"y":0},{"x":1568305080000,"y":0},{"x":1568305140000,"y":0},{"x":1568305200000,"y":0},{"x":1568305260000,"y":0},{"x":1568305320000,"y":0},{"x":1568305380000,"y":0},{"x":1568305440000,"y":0.01},{"x":1568305500000,"y":0},{"x":1568305560000,"y":0},{"x":1568305620000,"y":0},{"x":1568305680000,"y":0},{"x":1568305740000,"y":0},{"x":1568305800000,"y":0},{"x":1568305860000,"y":0},{"x":1568305920000,"y":0},{"x":1568305980000,"y":0},{"x":1568306040000,"y":0},{"x":1568306100000,"y":2.26},{"x":1568306160000,"y":0.21},{"x":1568306220000,"y":0},{"x":1568306280000,"y":0},{"x":1568306340000,"y":0},{"x":1568306400000,"y":0},{"x":1568306460000,"y":0},{"x":1568306520000,"y":0},{"x":1568306580000,"y":0},{"x":1568306640000,"y":0},{"x":1568306700000,"y":0},{"x":1568306760000,"y":0},{"x":1568306820000,"y":0},{"x":1568306880000,"y":0},{"x":1568306940000,"y":0.01},{"x":1568307000000,"y":0},{"x":1568307060000,"y":0},{"x":1568307120000,"y":0},{"x":1568307180000,"y":0},{"x":1568307240000,"y":0},{"x":1568307300000,"y":0},{"x":1568307360000,"y":0},{"x":1568307420000,"y":0},{"x":1568307480000,"y":0},{"x":1568307540000,"y":1.2},{"x":1568307600000,"y":0.03},{"x":1568307660000,"y":0},{"x":1568307720000,"y":0},{"x":1568307780000,"y":0},{"x":1568307840000,"y":0.52},{"x":1568307900000,"y":0.52},{"x":1568307960000,"y":0},{"x":1568308020000,"y":0},{"x":1568308080000,"y":0},{"x":1568308140000,"y":4.33},{"x":1568308200000,"y":0.86},{"x":1568308260000,"y":2.36},{"x":1568308320000,"y":0.01},{"x":1568308380000,"y":0},{"x":1568308440000,"y":0},{"x":1568308500000,"y":0},{"x":1568308560000,"y":0},{"x":1568308620000,"y":0},{"x":1568308680000,"y":0},{"x":1568308740000,"y":0},{"x":1568308800000,"y":0},{"x":1568308860000,"y":0},{"x":1568308920000,"y":0},{"x":1568308980000,"y":0},{"x":1568309040000,"y":0},{"x":1568309100000,"y":0.06},{"x":1568309160000,"y":0},{"x":1568309220000,"y":0},{"x":1568309280000,"y":0},{"x":1568309340000,"y":0},{"x":1568309400000,"y":0},{"x":1568309460000,"y":0},{"x":1568309520000,"y":0},{"x":1568309580000,"y":0},{"x":1568309640000,"y":0},{"x":1568309700000,"y":0},{"x":1568309760000,"y":0},{"x":1568309820000,"y":0},{"x":1568309880000,"y":0},{"x":1568309940000,"y":0},{"x":1568310000000,"y":0},{"x":1568310060000,"y":0},{"x":1568310120000,"y":0.1},{"x":1568310180000,"y":0.03},{"x":1568310240000,"y":0.07},{"x":1568310300000,"y":0},{"x":1568310360000,"y":0},{"x":1568310420000,"y":0},{"x":1568310480000,"y":0},{"x":1568310540000,"y":0},{"x":1568310600000,"y":0},{"x":1568310660000,"y":0},{"x":1568310720000,"y":0},{"x":1568310780000,"y":0},{"x":1568310840000,"y":0},{"x":1568310900000,"y":0},{"x":1568310960000,"y":0},{"x":1568311020000,"y":0},{"x":1568311080000,"y":0},{"x":1568311140000,"y":0},{"x":1568311200000,"y":0},{"x":1568311260000,"y":0},{"x":1568311320000,"y":0},{"x":1568311380000,"y":0},{"x":1568311440000,"y":0},{"x":1568311500000,"y":0},{"x":1568311560000,"y":0},{"x":1568311620000,"y":0},{"x":1568311680000,"y":0},{"x":1568311740000,"y":0},{"x":1568311800000,"y":0.04},{"x":1568311860000,"y":0},{"x":1568311920000,"y":0},{"x":1568311980000,"y":0},{"x":1568312040000,"y":0},{"x":1568312100000,"y":0},{"x":1568312160000,"y":0.03},{"x":1568312220000,"y":0},{"x":1568312280000,"y":0.03},{"x":1568312340000,"y":0.03},{"x":1568312400000,"y":0},{"x":1568312460000,"y":0},{"x":1568312520000,"y":0.02},{"x":1568312580000,"y":0},{"x":1568312640000,"y":0.06},{"x":1568312700000,"y":0.03},{"x":1568312760000,"y":0},{"x":1568312820000,"y":0.05},{"x":1568312880000,"y":0},{"x":1568312940000,"y":0},{"x":1568313000000,"y":0.01},{"x":1568313060000,"y":0},{"x":1568313120000,"y":0},{"x":1568313180000,"y":0.01},{"x":1568313240000,"y":0.03},{"x":1568313300000,"y":0},{"x":1568313360000,"y":0},{"x":1568313420000,"y":0},{"x":1568313480000,"y":0},{"x":1568313540000,"y":0.01},{"x":1568313600000,"y":0.01},{"x":1568313660000,"y":0.03},{"x":1568313720000,"y":2.1},{"x":1568313780000,"y":0.03},{"x":1568313840000,"y":0.67},{"x":1568313900000,"y":0.02},{"x":1568313960000,"y":0},{"x":1568314020000,"y":0},{"x":1568314080000,"y":0},{"x":1568314140000,"y":0},{"x":1568314200000,"y":0},{"x":1568314260000,"y":0},{"x":1568314320000,"y":0},{"x":1568314380000,"y":0},{"x":1568314440000,"y":0},{"x":1568314500000,"y":0},{"x":1568314560000,"y":0},{"x":1568314620000,"y":0},{"x":1568314680000,"y":0},{"x":1568314740000,"y":0.09},{"x":1568314800000,"y":0.01},{"x":1568314860000,"y":0.62},{"x":1568314920000,"y":1.79},{"x":1568314980000,"y":2.49},{"x":1568315040000,"y":0},{"x":1568315100000,"y":0},{"x":1568315160000,"y":0},{"x":1568315220000,"y":0},{"x":1568315280000,"y":0},{"x":1568315340000,"y":0},{"x":1568315400000,"y":0},{"x":1568315460000,"y":0.01},{"x":1568315520000,"y":0},{"x":1568315580000,"y":0.52},{"x":1568315640000,"y":0},{"x":1568315700000,"y":0},{"x":1568315760000,"y":0},{"x":1568315820000,"y":0},{"x":1568315880000,"y":0},{"x":1568315940000,"y":0},{"x":1568316000000,"y":0},{"x":1568316060000,"y":0},{"x":1568316120000,"y":0},{"x":1568316180000,"y":0},{"x":1568316240000,"y":0},{"x":1568316300000,"y":0},{"x":1568316360000,"y":0},{"x":1568316420000,"y":0},{"x":1568316480000,"y":0},{"x":1568316540000,"y":0},{"x":1568316600000,"y":0},{"x":1568316660000,"y":0},{"x":1568316720000,"y":0},{"x":1568316780000,"y":0},{"x":1568316840000,"y":0},{"x":1568316900000,"y":0},{"x":1568316960000,"y":0},{"x":1568317020000,"y":1.96},{"x":1568317080000,"y":0.35},{"x":1568317140000,"y":0},{"x":1568317200000,"y":0},{"x":1568317260000,"y":0},{"x":1568317320000,"y":0},{"x":1568317380000,"y":0},{"x":1568317440000,"y":0},{"x":1568317500000,"y":0},{"x":1568317560000,"y":0},{"x":1568317620000,"y":0},{"x":1568317680000,"y":0},{"x":1568317740000,"y":0},{"x":1568317800000,"y":0},{"x":1568317860000,"y":0},{"x":1568317920000,"y":0},{"x":1568317980000,"y":0},{"x":1568318040000,"y":0},{"x":1568318100000,"y":0.27},{"x":1568318160000,"y":4.17},{"x":1568318220000,"y":71.55},{"x":1568318280000,"y":28.65},{"x":1568318340000,"y":63.24},{"x":1568318400000,"y":2.74},{"x":1568318460000,"y":0.1},{"x":1568318520000,"y":0.1},{"x":1568318580000,"y":0.05},{"x":1568318640000,"y":6.43},{"x":1568318700000,"y":2.83},{"x":1568318760000,"y":2.38},{"x":1568318820000,"y":0.06},{"x":1568318880000,"y":2.09},{"x":1568318940000,"y":0},{"x":1568319000000,"y":0},{"x":1568319060000,"y":0.11},{"x":1568319120000,"y":0},{"x":1568319180000,"y":0},{"x":1568319240000,"y":0},{"x":1568319300000,"y":0.01},{"x":1568319360000,"y":1.03},{"x":1568319420000,"y":0},{"x":1568319480000,"y":0},{"x":1568319540000,"y":0},{"x":1568319600000,"y":0},{"x":1568319660000,"y":0},{"x":1568319720000,"y":0},{"x":1568319780000,"y":0},{"x":1568319840000,"y":0},{"x":1568319900000,"y":0},{"x":1568319960000,"y":0},{"x":1568320020000,"y":0},{"x":1568320080000,"y":0},{"x":1568320140000,"y":0},{"x":1568320200000,"y":0},{"x":1568320260000,"y":0},{"x":1568320320000,"y":0},{"x":1568320380000,"y":0},{"x":1568320440000,"y":0},{"x":1568320500000,"y":0},{"x":1568320560000,"y":0},{"x":1568320620000,"y":0},{"x":1568320680000,"y":0},{"x":1568320740000,"y":0},{"x":1568320800000,"y":0},{"x":1568320860000,"y":0},{"x":1568320920000,"y":0},{"x":1568320980000,"y":0},{"x":1568321040000,"y":0.03},{"x":1568321100000,"y":0},{"x":1568321160000,"y":1.97},{"x":1568321220000,"y":0.04},{"x":1568321280000,"y":0.01},{"x":1568321340000,"y":0.01},{"x":1568321400000,"y":0.47},{"x":1568321460000,"y":0},{"x":1568321520000,"y":0.86},{"x":1568321580000,"y":0.08},{"x":1568321640000,"y":0.01},{"x":1568321700000,"y":0},{"x":1568321760000,"y":0.02},{"x":1568321820000,"y":0.01},{"x":1568321880000,"y":0.01},{"x":1568321940000,"y":0.04},{"x":1568322000000,"y":0},{"x":1568322060000,"y":0.01},{"x":1568322120000,"y":0.04},{"x":1568322180000,"y":0.02},{"x":1568322240000,"y":0.03},{"x":1568322300000,"y":0.13},{"x":1568322360000,"y":0.68},{"x":1568322420000,"y":0.01},{"x":1568322480000,"y":0},{"x":1568322540000,"y":0},{"x":1568322600000,"y":0.01},{"x":1568322660000,"y":0.07},{"x":1568322720000,"y":0},{"x":1568322780000,"y":0},{"x":1568322840000,"y":0},{"x":1568322900000,"y":0},{"x":1568322960000,"y":0},{"x":1568323020000,"y":0},{"x":1568323080000,"y":0},{"x":1568323140000,"y":0},{"x":1568323200000,"y":0},{"x":1568323260000,"y":0},{"x":1568323320000,"y":0},{"x":1568323380000,"y":0},{"x":1568323440000,"y":0},{"x":1568323500000,"y":0},{"x":1568323560000,"y":0},{"x":1568323620000,"y":2.11},{"x":1568323680000,"y":1.26},{"x":1568323740000,"y":0.03},{"x":1568323800000,"y":0.03},{"x":1568323860000,"y":0.01},{"x":1568323920000,"y":0},{"x":1568323980000,"y":0},{"x":1568324040000,"y":0.01},{"x":1568324100000,"y":0.01},{"x":1568324160000,"y":0.01},{"x":1568324220000,"y":0},{"x":1568324280000,"y":0},{"x":1568324340000,"y":0},{"x":1568324400000,"y":0},{"x":1568324460000,"y":0},{"x":1568324520000,"y":0},{"x":1568324580000,"y":0},{"x":1568324640000,"y":0},{"x":1568324700000,"y":0},{"x":1568324760000,"y":0},{"x":1568324820000,"y":0},{"x":1568324880000,"y":0.02},{"x":1568324940000,"y":0},{"x":1568325000000,"y":0},{"x":1568325060000,"y":0},{"x":1568325120000,"y":0},{"x":1568325180000,"y":0},{"x":1568325240000,"y":0},{"x":1568325300000,"y":0},{"x":1568325360000,"y":0.02},{"x":1568325420000,"y":0.76},{"x":1568325480000,"y":0.82},{"x":1568325540000,"y":0},{"x":1568325600000,"y":0},{"x":1568325660000,"y":0},{"x":1568325720000,"y":0},{"x":1568325780000,"y":0},{"x":1568325840000,"y":0},{"x":1568325900000,"y":0},{"x":1568325960000,"y":0.06},{"x":1568326020000,"y":0.02},{"x":1568326080000,"y":0.01},{"x":1568326140000,"y":0},{"x":1568326200000,"y":0},{"x":1568326260000,"y":0},{"x":1568326320000,"y":0.01},{"x":1568326380000,"y":0},{"x":1568326440000,"y":0},{"x":1568326500000,"y":0},{"x":1568326560000,"y":0},{"x":1568326620000,"y":0.86},{"x":1568326680000,"y":0},{"x":1568326740000,"y":0},{"x":1568326800000,"y":0},{"x":1568326860000,"y":0.86},{"x":1568326920000,"y":0},{"x":1568326980000,"y":0},{"x":1568327040000,"y":0},{"x":1568327100000,"y":0.01},{"x":1568327160000,"y":0.85},{"x":1568327220000,"y":0.85},{"x":1568327280000,"y":0},{"x":1568327340000,"y":0},{"x":1568327400000,"y":3.31},{"x":1568327460000,"y":0},{"x":1568327520000,"y":0.86},{"x":1568327580000,"y":0},{"x":1568327640000,"y":0.85},{"x":1568327700000,"y":0.82},{"x":1568327760000,"y":0.86},{"x":1568327820000,"y":0.01},{"x":1568327880000,"y":0.86},{"x":1568327940000,"y":0.85},{"x":1568328000000,"y":0.85},{"x":1568328060000,"y":0.85},{"x":1568328120000,"y":0.85},{"x":1568328180000,"y":0.01},{"x":1568328240000,"y":0},{"x":1568328300000,"y":0.05},{"x":1568328360000,"y":0.84},{"x":1568328420000,"y":1.69},{"x":1568328480000,"y":0.1},{"x":1568328540000,"y":0.01},{"x":1568328600000,"y":0.07},{"x":1568328660000,"y":0.82},{"x":1568328720000,"y":0},{"x":1568328780000,"y":0.04},{"x":1568328840000,"y":0.05},{"x":1568328900000,"y":0.04},{"x":1568328960000,"y":2.45},{"x":1568329020000,"y":0},{"x":1568329080000,"y":0},{"x":1568329140000,"y":0.85},{"x":1568329200000,"y":0.85},{"x":1568329260000,"y":0.82},{"x":1568329320000,"y":2.02},{"x":1568329380000,"y":0.08},{"x":1568329440000,"y":0.01},{"x":1568329500000,"y":0.01},{"x":1568329560000,"y":0},{"x":1568329620000,"y":0},{"x":1568329680000,"y":0},{"x":1568329740000,"y":0.01},{"x":1568329800000,"y":0.02},{"x":1568329860000,"y":0.01},{"x":1568329920000,"y":0.86},{"x":1568329980000,"y":1.74},{"x":1568330040000,"y":0.43},{"x":1568330100000,"y":0.39},{"x":1568330160000,"y":0},{"x":1568330220000,"y":0.01},{"x":1568330280000,"y":0.01},{"x":1568330340000,"y":0.88},{"x":1568330400000,"y":0},{"x":1568330460000,"y":0.05},{"x":1568330520000,"y":0.01},{"x":1568330580000,"y":0.17},{"x":1568330640000,"y":0.01},{"x":1568330700000,"y":0.38},{"x":1568330760000,"y":0.01},{"x":1568330820000,"y":0.87},{"x":1568330880000,"y":0.39},{"x":1568330940000,"y":0.04},{"x":1568331000000,"y":0},{"x":1568331060000,"y":0.41},{"x":1568331120000,"y":2.08},{"x":1568331180000,"y":1.18},{"x":1568331240000,"y":0.01},{"x":1568331300000,"y":0.04},{"x":1568331360000,"y":0.01},{"x":1568331420000,"y":0},{"x":1568331480000,"y":0},{"x":1568331540000,"y":0.01},{"x":1568331600000,"y":0.13},{"x":1568331660000,"y":1.76},{"x":1568331720000,"y":0.12},{"x":1568331780000,"y":0.01},{"x":1568331840000,"y":1.05},{"x":1568331900000,"y":0.01},{"x":1568331960000,"y":0.17},{"x":1568332020000,"y":1.6},{"x":1568332080000,"y":9.16},{"x":1568332140000,"y":0.01},{"x":1568332200000,"y":1.71},{"x":1568332260000,"y":0.77},{"x":1568332320000,"y":0.08},{"x":1568332380000,"y":0.02},{"x":1568332440000,"y":0.59},{"x":1568332500000,"y":0.01},{"x":1568332560000,"y":0.02},{"x":1568332620000,"y":0.01},{"x":1568332680000,"y":0.68},{"x":1568332740000,"y":0.01},{"x":1568332800000,"y":1.22},{"x":1568332860000,"y":0},{"x":1568332920000,"y":0},{"x":1568332980000,"y":0},{"x":1568333040000,"y":0},{"x":1568333100000,"y":0},{"x":1568333160000,"y":0},{"x":1568333220000,"y":0},{"x":1568333280000,"y":0},{"x":1568333340000,"y":0},{"x":1568333400000,"y":1.36},{"x":1568333460000,"y":2.06},{"x":1568333520000,"y":0},{"x":1568333580000,"y":0},{"x":1568333640000,"y":0.01},{"x":1568333700000,"y":0},{"x":1568333760000,"y":0},{"x":1568333820000,"y":0},{"x":1568333880000,"y":0},{"x":1568333940000,"y":2.06},{"x":1568334000000,"y":0.02},{"x":1568334060000,"y":0.08},{"x":1568334120000,"y":1.65},{"x":1568334180000,"y":0.56},{"x":1568334240000,"y":0.28},{"x":1568334300000,"y":0.83},{"x":1568334360000,"y":0},{"x":1568334420000,"y":0.02},{"x":1568334480000,"y":0.17},{"x":1568334540000,"y":0},{"x":1568334600000,"y":0},{"x":1568334660000,"y":0},{"x":1568334720000,"y":0},{"x":1568334780000,"y":0},{"x":1568334840000,"y":0},{"x":1568334900000,"y":0},{"x":1568334960000,"y":0},{"x":1568335020000,"y":0},{"x":1568335080000,"y":0},{"x":1568335140000,"y":0},{"x":1568335200000,"y":0},{"x":1568335260000,"y":0},{"x":1568335320000,"y":0},{"x":1568335380000,"y":0},{"x":1568335440000,"y":0},{"x":1568335500000,"y":0},{"x":1568335560000,"y":0},{"x":1568335620000,"y":0},{"x":1568335680000,"y":0},{"x":1568335740000,"y":0},{"x":1568335800000,"y":0},{"x":1568335860000,"y":0},{"x":1568335920000,"y":0},{"x":1568335980000,"y":0},{"x":1568336040000,"y":0},{"x":1568336100000,"y":0},{"x":1568336160000,"y":0},{"x":1568336220000,"y":0},{"x":1568336280000,"y":0},{"x":1568336340000,"y":0},{"x":1568336400000,"y":0.25},{"x":1568336460000,"y":1.04},{"x":1568336520000,"y":0.88},{"x":1568336580000,"y":0},{"x":1568336640000,"y":0},{"x":1568336700000,"y":0},{"x":1568336760000,"y":0},{"x":1568336820000,"y":0},{"x":1568336880000,"y":0},{"x":1568336940000,"y":0},{"x":1568337000000,"y":0},{"x":1568337060000,"y":0},{"x":1568337120000,"y":0},{"x":1568337180000,"y":0},{"x":1568337240000,"y":0},{"x":1568337300000,"y":0},{"x":1568337360000,"y":0.02},{"x":1568337420000,"y":0},{"x":1568337480000,"y":0},{"x":1568337540000,"y":0},{"x":1568337600000,"y":0},{"x":1568337660000,"y":0.01},{"x":1568337720000,"y":0},{"x":1568337780000,"y":0.01},{"x":1568337840000,"y":0},{"x":1568337900000,"y":0},{"x":1568337960000,"y":0},{"x":1568338020000,"y":0.02},{"x":1568338080000,"y":0},{"x":1568338140000,"y":0},{"x":1568338200000,"y":0},{"x":1568338260000,"y":0},{"x":1568338320000,"y":0},{"x":1568338380000,"y":0},{"x":1568338440000,"y":0},{"x":1568338500000,"y":0},{"x":1568338560000,"y":0},{"x":1568338620000,"y":0},{"x":1568338680000,"y":0.01},{"x":1568338740000,"y":0},{"x":1568338800000,"y":0},{"x":1568338860000,"y":0},{"x":1568338920000,"y":0},{"x":1568338980000,"y":0},{"x":1568339040000,"y":0},{"x":1568339100000,"y":0},{"x":1568339160000,"y":0},{"x":1568339220000,"y":0},{"x":1568339280000,"y":0},{"x":1568339340000,"y":0},{"x":1568339400000,"y":0},{"x":1568339460000,"y":0},{"x":1568339520000,"y":0},{"x":1568339580000,"y":0},{"x":1568339640000,"y":0},{"x":1568339700000,"y":0},{"x":1568339760000,"y":0},{"x":1568339820000,"y":0},{"x":1568339880000,"y":0.01},{"x":1568339940000,"y":0},{"x":1568340000000,"y":0},{"x":1568340060000,"y":0},{"x":1568340120000,"y":0},{"x":1568340180000,"y":0},{"x":1568340240000,"y":0},{"x":1568340300000,"y":0},{"x":1568340360000,"y":0},{"x":1568340420000,"y":0},{"x":1568340480000,"y":0},{"x":1568340540000,"y":0},{"x":1568340600000,"y":0},{"x":1568340660000,"y":0.02},{"x":1568340720000,"y":0},{"x":1568340780000,"y":0},{"x":1568340840000,"y":0},{"x":1568340900000,"y":0},{"x":1568340960000,"y":0},{"x":1568341020000,"y":0},{"x":1568341080000,"y":0},{"x":1568341140000,"y":0.01},{"x":1568341200000,"y":0},{"x":1568341260000,"y":0},{"x":1568341320000,"y":0},{"x":1568341380000,"y":0},{"x":1568341440000,"y":0},{"x":1568341500000,"y":0},{"x":1568341560000,"y":0},{"x":1568341620000,"y":0},{"x":1568341680000,"y":0},{"x":1568341740000,"y":0},{"x":1568341800000,"y":0},{"x":1568341860000,"y":0},{"x":1568341920000,"y":0},{"x":1568341980000,"y":0},{"x":1568342040000,"y":0},{"x":1568342100000,"y":0},{"x":1568342160000,"y":0},{"x":1568342220000,"y":0},{"x":1568342280000,"y":0},{"x":1568342340000,"y":0},{"x":1568342400000,"y":0},{"x":1568342460000,"y":0},{"x":1568342520000,"y":0},{"x":1568342580000,"y":0},{"x":1568342640000,"y":0},{"x":1568342700000,"y":0},{"x":1568342760000,"y":0},{"x":1568342820000,"y":0},{"x":1568342880000,"y":0},{"x":1568342940000,"y":0},{"x":1568343000000,"y":0},{"x":1568343060000,"y":0},{"x":1568343120000,"y":0},{"x":1568343180000,"y":0},{"x":1568343240000,"y":0},{"x":1568343300000,"y":0},{"x":1568343360000,"y":0},{"x":1568343420000,"y":0},{"x":1568343480000,"y":0},{"x":1568343540000,"y":0},{"x":1568343600000,"y":0},{"x":1568343660000,"y":0.01},{"x":1568343720000,"y":0},{"x":1568343780000,"y":0},{"x":1568343840000,"y":0},{"x":1568343900000,"y":0},{"x":1568343960000,"y":0},{"x":1568344020000,"y":0},{"x":1568344080000,"y":0},{"x":1568344140000,"y":0},{"x":1568344200000,"y":0},{"x":1568344260000,"y":0},{"x":1568344320000,"y":0},{"x":1568344380000,"y":0},{"x":1568344440000,"y":0},{"x":1568344500000,"y":0},{"x":1568344560000,"y":0},{"x":1568344620000,"y":0},{"x":1568344680000,"y":0},{"x":1568344740000,"y":0},{"x":1568344800000,"y":0},{"x":1568344860000,"y":0},{"x":1568344920000,"y":0},{"x":1568344980000,"y":0},{"x":1568345040000,"y":0},{"x":1568345100000,"y":0},{"x":1568345160000,"y":0},{"x":1568345220000,"y":0},{"x":1568345280000,"y":0},{"x":1568345340000,"y":0},{"x":1568345400000,"y":0},{"x":1568345460000,"y":0},{"x":1568345520000,"y":0},{"x":1568345580000,"y":0},{"x":1568345640000,"y":0},{"x":1568345700000,"y":0},{"x":1568345760000,"y":0},{"x":1568345820000,"y":0},{"x":1568345880000,"y":0},{"x":1568345940000,"y":0},{"x":1568346000000,"y":0},{"x":1568346060000,"y":0},{"x":1568346120000,"y":0},{"x":1568346180000,"y":0},{"x":1568346240000,"y":0},{"x":1568346300000,"y":0},{"x":1568346360000,"y":0},{"x":1568346420000,"y":0},{"x":1568346480000,"y":0},{"x":1568346540000,"y":0},{"x":1568346600000,"y":0},{"x":1568346660000,"y":0},{"x":1568346720000,"y":0},{"x":1568346780000,"y":0},{"x":1568346840000,"y":0},{"x":1568346900000,"y":0},{"x":1568346960000,"y":0},{"x":1568347020000,"y":0},{"x":1568347080000,"y":0},{"x":1568347140000,"y":0},{"x":1568347200000,"y":0},{"x":1568347260000,"y":0},{"x":1568347320000,"y":0},{"x":1568347380000,"y":0},{"x":1568347440000,"y":0},{"x":1568347500000,"y":0},{"x":1568347560000,"y":0},{"x":1568347620000,"y":0},{"x":1568347680000,"y":0},{"x":1568347740000,"y":0},{"x":1568347800000,"y":0},{"x":1568347860000,"y":0},{"x":1568347920000,"y":0},{"x":1568347980000,"y":0},{"x":1568348040000,"y":0},{"x":1568348100000,"y":0},{"x":1568348160000,"y":0},{"x":1568348220000,"y":0},{"x":1568348280000,"y":0},{"x":1568348340000,"y":0},{"x":1568348400000,"y":0},{"x":1568348460000,"y":0},{"x":1568348520000,"y":0},{"x":1568348580000,"y":0},{"x":1568348640000,"y":0},{"x":1568348700000,"y":0},{"x":1568348760000,"y":0},{"x":1568348820000,"y":0},{"x":1568348880000,"y":0},{"x":1568348940000,"y":0},{"x":1568349000000,"y":0},{"x":1568349060000,"y":0},{"x":1568349120000,"y":0},{"x":1568349180000,"y":0},{"x":1568349240000,"y":0},{"x":1568349300000,"y":0},{"x":1568349360000,"y":0},{"x":1568349420000,"y":0},{"x":1568349480000,"y":0},{"x":1568349540000,"y":0},{"x":1568349600000,"y":0},{"x":1568349660000,"y":0},{"x":1568349720000,"y":0},{"x":1568349780000,"y":0},{"x":1568349840000,"y":0},{"x":1568349900000,"y":0},{"x":1568349960000,"y":0},{"x":1568350020000,"y":0},{"x":1568350080000,"y":0},{"x":1568350140000,"y":0},{"x":1568350200000,"y":0},{"x":1568350260000,"y":0},{"x":1568350320000,"y":0},{"x":1568350380000,"y":0},{"x":1568350440000,"y":0},{"x":1568350500000,"y":0},{"x":1568350560000,"y":0},{"x":1568350620000,"y":0},{"x":1568350680000,"y":0},{"x":1568350740000,"y":0},{"x":1568350800000,"y":0},{"x":1568350860000,"y":0},{"x":1568350920000,"y":0},{"x":1568350980000,"y":0},{"x":1568351040000,"y":0},{"x":1568351100000,"y":0.03},{"x":1568351160000,"y":0},{"x":1568351220000,"y":0},{"x":1568351280000,"y":0},{"x":1568351340000,"y":0},{"x":1568351400000,"y":0},{"x":1568351460000,"y":0},{"x":1568351520000,"y":0},{"x":1568351580000,"y":0},{"x":1568351640000,"y":0},{"x":1568351700000,"y":0},{"x":1568351760000,"y":0},{"x":1568351820000,"y":0},{"x":1568351880000,"y":0},{"x":1568351940000,"y":0},{"x":1568352000000,"y":0},{"x":1568352060000,"y":0},{"x":1568352120000,"y":0},{"x":1568352180000,"y":0},{"x":1568352240000,"y":0},{"x":1568352300000,"y":0},{"x":1568352360000,"y":0},{"x":1568352420000,"y":0},{"x":1568352480000,"y":0},{"x":1568352540000,"y":0},{"x":1568352600000,"y":0},{"x":1568352660000,"y":0},{"x":1568352720000,"y":0},{"x":1568352780000,"y":0},{"x":1568352840000,"y":0},{"x":1568352900000,"y":0},{"x":1568352960000,"y":0},{"x":1568353020000,"y":0},{"x":1568353080000,"y":0},{"x":1568353140000,"y":0},{"x":1568353200000,"y":0},{"x":1568353260000,"y":0},{"x":1568353320000,"y":0},{"x":1568353380000,"y":0},{"x":1568353440000,"y":0},{"x":1568353500000,"y":0},{"x":1568353560000,"y":0},{"x":1568353620000,"y":0},{"x":1568353680000,"y":0},{"x":1568353740000,"y":0},{"x":1568353800000,"y":0},{"x":1568353860000,"y":0},{"x":1568353920000,"y":0},{"x":1568353980000,"y":0},{"x":1568354040000,"y":0},{"x":1568354100000,"y":0},{"x":1568354160000,"y":0},{"x":1568354220000,"y":0},{"x":1568354280000,"y":0},{"x":1568354340000,"y":0},{"x":1568354400000,"y":0},{"x":1568354460000,"y":0},{"x":1568354520000,"y":0},{"x":1568354580000,"y":0},{"x":1568354640000,"y":0},{"x":1568354700000,"y":0},{"x":1568354760000,"y":0},{"x":1568354820000,"y":0},{"x":1568354880000,"y":0},{"x":1568354940000,"y":0},{"x":1568355000000,"y":0},{"x":1568355060000,"y":0},{"x":1568355120000,"y":0},{"x":1568355180000,"y":0},{"x":1568355240000,"y":0},{"x":1568355300000,"y":0},{"x":1568355360000,"y":0},{"x":1568355420000,"y":0},{"x":1568355480000,"y":0},{"x":1568355540000,"y":0},{"x":1568355600000,"y":0},{"x":1568355660000,"y":0},{"x":1568355720000,"y":0},{"x":1568355780000,"y":0},{"x":1568355840000,"y":0},{"x":1568355900000,"y":0},{"x":1568355960000,"y":0},{"x":1568356020000,"y":0},{"x":1568356080000,"y":0.01},{"x":1568356140000,"y":0},{"x":1568356200000,"y":0},{"x":1568356260000,"y":0},{"x":1568356320000,"y":0},{"x":1568356380000,"y":0},{"x":1568356440000,"y":0},{"x":1568356500000,"y":0},{"x":1568356560000,"y":0},{"x":1568356620000,"y":0},{"x":1568356680000,"y":0},{"x":1568356740000,"y":0},{"x":1568356800000,"y":0},{"x":1568356860000,"y":0},{"x":1568356920000,"y":0},{"x":1568356980000,"y":0},{"x":1568357040000,"y":0},{"x":1568357100000,"y":0},{"x":1568357160000,"y":0},{"x":1568357220000,"y":0},{"x":1568357280000,"y":0},{"x":1568357340000,"y":0},{"x":1568357400000,"y":0},{"x":1568357460000,"y":0},{"x":1568357520000,"y":0},{"x":1568357580000,"y":0},{"x":1568357640000,"y":0},{"x":1568357700000,"y":0},{"x":1568357760000,"y":0},{"x":1568357820000,"y":0},{"x":1568357880000,"y":0},{"x":1568357940000,"y":0},{"x":1568358000000,"y":0},{"x":1568358060000,"y":0},{"x":1568358120000,"y":0},{"x":1568358180000,"y":0},{"x":1568358240000,"y":0},{"x":1568358300000,"y":0},{"x":1568358360000,"y":0},{"x":1568358420000,"y":0},{"x":1568358480000,"y":0},{"x":1568358540000,"y":0},{"x":1568358600000,"y":0},{"x":1568358660000,"y":0},{"x":1568358720000,"y":0},{"x":1568358780000,"y":0},{"x":1568358840000,"y":0},{"x":1568358900000,"y":0},{"x":1568358960000,"y":0},{"x":1568359020000,"y":0},{"x":1568359080000,"y":0},{"x":1568359140000,"y":0},{"x":1568359200000,"y":0},{"x":1568359260000,"y":0},{"x":1568359320000,"y":0},{"x":1568359380000,"y":0},{"x":1568359440000,"y":0},{"x":1568359500000,"y":0},{"x":1568359560000,"y":0},{"x":1568359620000,"y":0},{"x":1568359680000,"y":0},{"x":1568359740000,"y":0},{"x":1568359800000,"y":0},{"x":1568359860000,"y":0},{"x":1568359920000,"y":0},{"x":1568359980000,"y":0},{"x":1568360040000,"y":0},{"x":1568360100000,"y":0},{"x":1568360160000,"y":0},{"x":1568360220000,"y":0},{"x":1568360280000,"y":0},{"x":1568360340000,"y":0},{"x":1568360400000,"y":0},{"x":1568360460000,"y":0},{"x":1568360520000,"y":0},{"x":1568360580000,"y":0},{"x":1568360640000,"y":0},{"x":1568360700000,"y":0},{"x":1568360760000,"y":0},{"x":1568360820000,"y":0},{"x":1568360880000,"y":0},{"x":1568360940000,"y":0},{"x":1568361000000,"y":0},{"x":1568361060000,"y":0},{"x":1568361120000,"y":0},{"x":1568361180000,"y":0},{"x":1568361240000,"y":0},{"x":1568361300000,"y":0},{"x":1568361360000,"y":0},{"x":1568361420000,"y":0},{"x":1568361480000,"y":0},{"x":1568361540000,"y":0},{"x":1568361600000,"y":0},{"x":1568361660000,"y":0},{"x":1568361720000,"y":0},{"x":1568361780000,"y":0},{"x":1568361840000,"y":0},{"x":1568361900000,"y":0},{"x":1568361960000,"y":0},{"x":1568362020000,"y":0},{"x":1568362080000,"y":0},{"x":1568362140000,"y":0},{"x":1568362200000,"y":0},{"x":1568362260000,"y":0},{"x":1568362320000,"y":0},{"x":1568362380000,"y":0},{"x":1568362440000,"y":0},{"x":1568362500000,"y":0.03},{"x":1568362560000,"y":0},{"x":1568362620000,"y":0},{"x":1568362680000,"y":0},{"x":1568362740000,"y":0},{"x":1568362800000,"y":0},{"x":1568362860000,"y":0},{"x":1568362920000,"y":0},{"x":1568362980000,"y":0},{"x":1568363040000,"y":0},{"x":1568363100000,"y":0.01},{"x":1568363160000,"y":0},{"x":1568363220000,"y":0},{"x":1568363280000,"y":0},{"x":1568363340000,"y":0},{"x":1568363400000,"y":0},{"x":1568363460000,"y":0},{"x":1568363520000,"y":0},{"x":1568363580000,"y":0},{"x":1568363640000,"y":0},{"x":1568363700000,"y":0},{"x":1568363760000,"y":0},{"x":1568363820000,"y":0},{"x":1568363880000,"y":0},{"x":1568363940000,"y":0},{"x":1568364000000,"y":0},{"x":1568364060000,"y":0},{"x":1568364120000,"y":0},{"x":1568364180000,"y":0},{"x":1568364240000,"y":0},{"x":1568364300000,"y":0},{"x":1568364360000,"y":0},{"x":1568364420000,"y":0},{"x":1568364480000,"y":0},{"x":1568364540000,"y":0},{"x":1568364600000,"y":0},{"x":1568364660000,"y":0},{"x":1568364720000,"y":0},{"x":1568364780000,"y":0},{"x":1568364840000,"y":0},{"x":1568364900000,"y":0},{"x":1568364960000,"y":0},{"x":1568365020000,"y":0},{"x":1568365080000,"y":0},{"x":1568365140000,"y":0},{"x":1568365200000,"y":0},{"x":1568365260000,"y":0},{"x":1568365320000,"y":0},{"x":1568365380000,"y":0},{"x":1568365440000,"y":0},{"x":1568365500000,"y":0},{"x":1568365560000,"y":0},{"x":1568365620000,"y":0},{"x":1568365680000,"y":0},{"x":1568365740000,"y":0},{"x":1568365800000,"y":0},{"x":1568365860000,"y":0},{"x":1568365920000,"y":0},{"x":1568365980000,"y":0},{"x":1568366040000,"y":0},{"x":1568366100000,"y":0},{"x":1568366160000,"y":0},{"x":1568366220000,"y":0},{"x":1568366280000,"y":0},{"x":1568366340000,"y":0},{"x":1568366400000,"y":0},{"x":1568366460000,"y":0},{"x":1568366520000,"y":0},{"x":1568366580000,"y":0},{"x":1568366640000,"y":0},{"x":1568366700000,"y":0},{"x":1568366760000,"y":0},{"x":1568366820000,"y":0},{"x":1568366880000,"y":0},{"x":1568366940000,"y":0},{"x":1568367000000,"y":0},{"x":1568367060000,"y":0},{"x":1568367120000,"y":0},{"x":1568367180000,"y":0},{"x":1568367240000,"y":0},{"x":1568367300000,"y":0},{"x":1568367360000,"y":0},{"x":1568367420000,"y":0},{"x":1568367480000,"y":0},{"x":1568367540000,"y":0},{"x":1568367600000,"y":0},{"x":1568367660000,"y":0},{"x":1568367720000,"y":0},{"x":1568367780000,"y":0},{"x":1568367840000,"y":0},{"x":1568367900000,"y":0},{"x":1568367960000,"y":0},{"x":1568368020000,"y":0},{"x":1568368080000,"y":0},{"x":1568368140000,"y":0},{"x":1568368200000,"y":0},{"x":1568368260000,"y":0},{"x":1568368320000,"y":0},{"x":1568368380000,"y":0},{"x":1568368440000,"y":0},{"x":1568368500000,"y":0},{"x":1568368560000,"y":0},{"x":1568368620000,"y":0},{"x":1568368680000,"y":0},{"x":1568368740000,"y":0},{"x":1568368800000,"y":0},{"x":1568368860000,"y":0},{"x":1568368920000,"y":0},{"x":1568368980000,"y":0},{"x":1568369040000,"y":0},{"x":1568369100000,"y":0},{"x":1568369160000,"y":0},{"x":1568369220000,"y":0},{"x":1568369280000,"y":0},{"x":1568369340000,"y":0},{"x":1568369400000,"y":0},{"x":1568369460000,"y":0},{"x":1568369520000,"y":0},{"x":1568369580000,"y":0},{"x":1568369640000,"y":0},{"x":1568369700000,"y":0},{"x":1568369760000,"y":0},{"x":1568369820000,"y":0},{"x":1568369880000,"y":0},{"x":1568369940000,"y":0},{"x":1568370000000,"y":0},{"x":1568370060000,"y":0},{"x":1568370120000,"y":0},{"x":1568370180000,"y":0},{"x":1568370240000,"y":0},{"x":1568370300000,"y":0},{"x":1568370360000,"y":0.03},{"x":1568370420000,"y":0},{"x":1568370480000,"y":0},{"x":1568370540000,"y":0},{"x":1568370600000,"y":0},{"x":1568370660000,"y":0},{"x":1568370720000,"y":0},{"x":1568370780000,"y":0},{"x":1568370840000,"y":0},{"x":1568370900000,"y":0},{"x":1568370960000,"y":0},{"x":1568371020000,"y":0},{"x":1568371080000,"y":0},{"x":1568371140000,"y":0},{"x":1568371200000,"y":0},{"x":1568371260000,"y":0},{"x":1568371320000,"y":0},{"x":1568371380000,"y":0},{"x":1568371440000,"y":0},{"x":1568371500000,"y":0},{"x":1568371560000,"y":0},{"x":1568371620000,"y":0},{"x":1568371680000,"y":0},{"x":1568371740000,"y":0},{"x":1568371800000,"y":0},{"x":1568371860000,"y":0},{"x":1568371920000,"y":0},{"x":1568371980000,"y":0},{"x":1568372040000,"y":0},{"x":1568372100000,"y":0},{"x":1568372160000,"y":0},{"x":1568372220000,"y":0},{"x":1568372280000,"y":0},{"x":1568372340000,"y":0},{"x":1568372400000,"y":0},{"x":1568372460000,"y":0},{"x":1568372520000,"y":0},{"x":1568372580000,"y":0},{"x":1568372640000,"y":0},{"x":1568372700000,"y":0},{"x":1568372760000,"y":0},{"x":1568372820000,"y":0},{"x":1568372880000,"y":0},{"x":1568372940000,"y":0},{"x":1568373000000,"y":0},{"x":1568373060000,"y":0},{"x":1568373120000,"y":0},{"x":1568373180000,"y":0},{"x":1568373240000,"y":0},{"x":1568373300000,"y":0},{"x":1568373360000,"y":0},{"x":1568373420000,"y":0},{"x":1568373480000,"y":0},{"x":1568373540000,"y":0},{"x":1568373600000,"y":0},{"x":1568373660000,"y":0},{"x":1568373720000,"y":0},{"x":1568373780000,"y":0},{"x":1568373840000,"y":0},{"x":1568373900000,"y":0},{"x":1568373960000,"y":0},{"x":1568374020000,"y":0},{"x":1568374080000,"y":0},{"x":1568374140000,"y":0},{"x":1568374200000,"y":0},{"x":1568374260000,"y":0},{"x":1568374320000,"y":0},{"x":1568374380000,"y":0},{"x":1568374440000,"y":0},{"x":1568374500000,"y":0},{"x":1568374560000,"y":0},{"x":1568374620000,"y":0.02},{"x":1568374680000,"y":0},{"x":1568374740000,"y":0},{"x":1568374800000,"y":0},{"x":1568374860000,"y":0},{"x":1568374920000,"y":0},{"x":1568374980000,"y":0},{"x":1568375040000,"y":0},{"x":1568375100000,"y":0},{"x":1568375160000,"y":0},{"x":1568375220000,"y":0},{"x":1568375280000,"y":0},{"x":1568375340000,"y":0},{"x":1568375400000,"y":0},{"x":1568375460000,"y":0},{"x":1568375520000,"y":0},{"x":1568375580000,"y":0},{"x":1568375640000,"y":0},{"x":1568375700000,"y":0},{"x":1568375760000,"y":0},{"x":1568375820000,"y":0},{"x":1568375880000,"y":0},{"x":1568375940000,"y":0},{"x":1568376000000,"y":0},{"x":1568376060000,"y":0},{"x":1568376120000,"y":0},{"x":1568376180000,"y":0},{"x":1568376240000,"y":0},{"x":1568376300000,"y":0},{"x":1568376360000,"y":0},{"x":1568376420000,"y":0},{"x":1568376480000,"y":0},{"x":1568376540000,"y":0},{"x":1568376600000,"y":0},{"x":1568376660000,"y":0},{"x":1568376720000,"y":0},{"x":1568376780000,"y":0},{"x":1568376840000,"y":0},{"x":1568376900000,"y":0},{"x":1568376960000,"y":0},{"x":1568377020000,"y":0},{"x":1568377080000,"y":0},{"x":1568377140000,"y":0},{"x":1568377200000,"y":0},{"x":1568377260000,"y":0},{"x":1568377320000,"y":0},{"x":1568377380000,"y":0},{"x":1568377440000,"y":0},{"x":1568377500000,"y":0},{"x":1568377560000,"y":0},{"x":1568377620000,"y":0},{"x":1568377680000,"y":0},{"x":1568377740000,"y":0},{"x":1568377800000,"y":0},{"x":1568377860000,"y":0},{"x":1568377920000,"y":0},{"x":1568377980000,"y":0},{"x":1568378040000,"y":0},{"x":1568378100000,"y":0},{"x":1568378160000,"y":0},{"x":1568378220000,"y":0},{"x":1568378280000,"y":0},{"x":1568378340000,"y":0},{"x":1568378400000,"y":0},{"x":1568378460000,"y":0},{"x":1568378520000,"y":0},{"x":1568378580000,"y":0},{"x":1568378640000,"y":0},{"x":1568378700000,"y":0},{"x":1568378760000,"y":0},{"x":1568378820000,"y":0},{"x":1568378880000,"y":0},{"x":1568378940000,"y":0},{"x":1568379000000,"y":0},{"x":1568379060000,"y":0},{"x":1568379120000,"y":0},{"x":1568379180000,"y":0},{"x":1568379240000,"y":0},{"x":1568379300000,"y":0},{"x":1568379360000,"y":0},{"x":1568379420000,"y":0},{"x":1568379480000,"y":0},{"x":1568379540000,"y":0},{"x":1568379600000,"y":0},{"x":1568379660000,"y":0},{"x":1568379720000,"y":0},{"x":1568379780000,"y":0},{"x":1568379840000,"y":0},{"x":1568379900000,"y":0},{"x":1568379960000,"y":0},{"x":1568380020000,"y":0},{"x":1568380080000,"y":0},{"x":1568380140000,"y":0},{"x":1568380200000,"y":0},{"x":1568380260000,"y":0},{"x":1568380320000,"y":0},{"x":1568380380000,"y":0},{"x":1568380440000,"y":0},{"x":1568380500000,"y":0},{"x":1568380560000,"y":0},{"x":1568380620000,"y":0},{"x":1568380680000,"y":0},{"x":1568380740000,"y":0},{"x":1568380800000,"y":0},{"x":1568380860000,"y":0},{"x":1568380920000,"y":0},{"x":1568380980000,"y":0},{"x":1568381040000,"y":0},{"x":1568381100000,"y":0},{"x":1568381160000,"y":0},{"x":1568381220000,"y":0},{"x":1568381280000,"y":0},{"x":1568381340000,"y":0},{"x":1568381400000,"y":0},{"x":1568381460000,"y":0},{"x":1568381520000,"y":0},{"x":1568381580000,"y":0},{"x":1568381640000,"y":0},{"x":1568381700000,"y":0},{"x":1568381760000,"y":0},{"x":1568381820000,"y":0},{"x":1568381880000,"y":0},{"x":1568381940000,"y":0},{"x":1568382000000,"y":0},{"x":1568382060000,"y":0},{"x":1568382120000,"y":0},{"x":1568382180000,"y":0},{"x":1568382240000,"y":0},{"x":1568382300000,"y":0},{"x":1568382360000,"y":0},{"x":1568382420000,"y":0},{"x":1568382480000,"y":0},{"x":1568382540000,"y":0},{"x":1568382600000,"y":0},{"x":1568382660000,"y":0},{"x":1568382720000,"y":0},{"x":1568382780000,"y":0},{"x":1568382840000,"y":0},{"x":1568382900000,"y":0},{"x":1568382960000,"y":0},{"x":1568383020000,"y":0},{"x":1568383080000,"y":0},{"x":1568383140000,"y":0},{"x":1568383200000,"y":0},{"x":1568383260000,"y":0},{"x":1568383320000,"y":0},{"x":1568383380000,"y":0},{"x":1568383440000,"y":0},{"x":1568383500000,"y":0},{"x":1568383560000,"y":0},{"x":1568383620000,"y":0},{"x":1568383680000,"y":0},{"x":1568383740000,"y":0},{"x":1568383800000,"y":0},{"x":1568383860000,"y":0},{"x":1568383920000,"y":0},{"x":1568383980000,"y":0},{"x":1568384040000,"y":0},{"x":1568384100000,"y":0},{"x":1568384160000,"y":0},{"x":1568384220000,"y":0},{"x":1568384280000,"y":0},{"x":1568384340000,"y":0},{"x":1568384400000,"y":0},{"x":1568384460000,"y":0},{"x":1568384520000,"y":0},{"x":1568384580000,"y":0},{"x":1568384640000,"y":0},{"x":1568384700000,"y":0},{"x":1568384760000,"y":0},{"x":1568384820000,"y":0},{"x":1568384880000,"y":0.01},{"x":1568384940000,"y":0},{"x":1568385000000,"y":0.01},{"x":1568385060000,"y":0},{"x":1568385120000,"y":0},{"x":1568385180000,"y":0},{"x":1568385240000,"y":0},{"x":1568385300000,"y":0},{"x":1568385360000,"y":0},{"x":1568385420000,"y":0},{"x":1568385480000,"y":0},{"x":1568385540000,"y":0},{"x":1568385600000,"y":0},{"x":1568385660000,"y":0},{"x":1568385720000,"y":0},{"x":1568385780000,"y":0},{"x":1568385840000,"y":0},{"x":1568385900000,"y":0},{"x":1568385960000,"y":0},{"x":1568386020000,"y":0},{"x":1568386080000,"y":0},{"x":1568386140000,"y":0},{"x":1568386200000,"y":0},{"x":1568386260000,"y":0},{"x":1568386320000,"y":0},{"x":1568386380000,"y":0},{"x":1568386440000,"y":0},{"x":1568386500000,"y":0.01},{"x":1568386560000,"y":0},{"x":1568386620000,"y":0},{"x":1568386680000,"y":0},{"x":1568386740000,"y":0},{"x":1568386800000,"y":0},{"x":1568386860000,"y":0},{"x":1568386920000,"y":0},{"x":1568386980000,"y":0},{"x":1568387040000,"y":0},{"x":1568387100000,"y":0},{"x":1568387160000,"y":0},{"x":1568387220000,"y":0.01},{"x":1568387280000,"y":0},{"x":1568387340000,"y":0},{"x":1568387400000,"y":0},{"x":1568387460000,"y":0},{"x":1568387520000,"y":0},{"x":1568387580000,"y":0},{"x":1568387640000,"y":0},{"x":1568387700000,"y":0},{"x":1568387760000,"y":0},{"x":1568387820000,"y":0.75},{"x":1568387880000,"y":0.27},{"x":1568387940000,"y":0},{"x":1568388000000,"y":0},{"x":1568388060000,"y":0},{"x":1568388120000,"y":0},{"x":1568388180000,"y":0},{"x":1568388240000,"y":0.91},{"x":1568388300000,"y":0},{"x":1568388360000,"y":0},{"x":1568388420000,"y":0},{"x":1568388480000,"y":0.34},{"x":1568388540000,"y":0},{"x":1568388600000,"y":0},{"x":1568388660000,"y":0},{"x":1568388720000,"y":0},{"x":1568388780000,"y":0},{"x":1568388840000,"y":0},{"x":1568388900000,"y":0},{"x":1568388960000,"y":0},{"x":1568389020000,"y":0},{"x":1568389080000,"y":0},{"x":1568389140000,"y":0},{"x":1568389200000,"y":0},{"x":1568389260000,"y":0},{"x":1568389320000,"y":0},{"x":1568389380000,"y":0},{"x":1568389440000,"y":0},{"x":1568389500000,"y":0},{"x":1568389560000,"y":0},{"x":1568389620000,"y":0},{"x":1568389680000,"y":0},{"x":1568389740000,"y":0},{"x":1568389800000,"y":0},{"x":1568389860000,"y":0},{"x":1568389920000,"y":0},{"x":1568389980000,"y":0},{"x":1568390040000,"y":1.27},{"x":1568390100000,"y":0},{"x":1568390160000,"y":0},{"x":1568390220000,"y":0},{"x":1568390280000,"y":0},{"x":1568390340000,"y":0},{"x":1568390400000,"y":0},{"x":1568390460000,"y":0},{"x":1568390520000,"y":1.53},{"x":1568390580000,"y":0.26},{"x":1568390640000,"y":0},{"x":1568390700000,"y":0},{"x":1568390760000,"y":0},{"x":1568390820000,"y":0},{"x":1568390880000,"y":0},{"x":1568390940000,"y":0},{"x":1568391000000,"y":0},{"x":1568391060000,"y":0},{"x":1568391120000,"y":0},{"x":1568391180000,"y":0},{"x":1568391240000,"y":0},{"x":1568391300000,"y":0},{"x":1568391360000,"y":0},{"x":1568391420000,"y":0},{"x":1568391480000,"y":0},{"x":1568391540000,"y":0.02},{"x":1568391600000,"y":0},{"x":1568391660000,"y":0},{"x":1568391720000,"y":0},{"x":1568391780000,"y":0},{"x":1568391840000,"y":0},{"x":1568391900000,"y":0},{"x":1568391960000,"y":0},{"x":1568392020000,"y":0},{"x":1568392080000,"y":0},{"x":1568392140000,"y":0},{"x":1568392200000,"y":0},{"x":1568392260000,"y":0},{"x":1568392320000,"y":0},{"x":1568392380000,"y":0},{"x":1568392440000,"y":0},{"x":1568392500000,"y":0},{"x":1568392560000,"y":0},{"x":1568392620000,"y":0},{"x":1568392680000,"y":0},{"x":1568392740000,"y":0},{"x":1568392800000,"y":0},{"x":1568392860000,"y":0},{"x":1568392920000,"y":0},{"x":1568392980000,"y":0.06},{"x":1568393040000,"y":0},{"x":1568393100000,"y":0},{"x":1568393160000,"y":0},{"x":1568393220000,"y":0},{"x":1568393280000,"y":0},{"x":1568393340000,"y":0},{"x":1568393400000,"y":0},{"x":1568393460000,"y":0},{"x":1568393520000,"y":0},{"x":1568393580000,"y":0},{"x":1568393640000,"y":0},{"x":1568393700000,"y":0},{"x":1568393760000,"y":0},{"x":1568393820000,"y":0},{"x":1568393880000,"y":0},{"x":1568393940000,"y":0},{"x":1568394000000,"y":0},{"x":1568394060000,"y":0},{"x":1568394120000,"y":0},{"x":1568394180000,"y":0},{"x":1568394240000,"y":0},{"x":1568394300000,"y":0},{"x":1568394360000,"y":0},{"x":1568394420000,"y":0},{"x":1568394480000,"y":0},{"x":1568394540000,"y":0},{"x":1568394600000,"y":0},{"x":1568394660000,"y":0},{"x":1568394720000,"y":0},{"x":1568394780000,"y":1.88},{"x":1568394840000,"y":0},{"x":1568394900000,"y":3.51},{"x":1568394960000,"y":0.17},{"x":1568395020000,"y":0},{"x":1568395080000,"y":0},{"x":1568395140000,"y":0},{"x":1568395200000,"y":0},{"x":1568395260000,"y":0},{"x":1568395320000,"y":0},{"x":1568395380000,"y":0},{"x":1568395440000,"y":0},{"x":1568395500000,"y":0},{"x":1568395560000,"y":0},{"x":1568395620000,"y":0},{"x":1568395680000,"y":0},{"x":1568395740000,"y":0},{"x":1568395800000,"y":0},{"x":1568395860000,"y":0},{"x":1568395920000,"y":0},{"x":1568395980000,"y":0},{"x":1568396040000,"y":0},{"x":1568396100000,"y":0},{"x":1568396160000,"y":0},{"x":1568396220000,"y":0},{"x":1568396280000,"y":0},{"x":1568396340000,"y":0},{"x":1568396400000,"y":0},{"x":1568396460000,"y":0},{"x":1568396520000,"y":0},{"x":1568396580000,"y":0.01},{"x":1568396640000,"y":0},{"x":1568396700000,"y":0},{"x":1568396760000,"y":0},{"x":1568396820000,"y":0},{"x":1568396880000,"y":0},{"x":1568396940000,"y":0},{"x":1568397000000,"y":0},{"x":1568397060000,"y":0},{"x":1568397120000,"y":0},{"x":1568397180000,"y":0.01},{"x":1568397240000,"y":0},{"x":1568397300000,"y":0},{"x":1568397360000,"y":0},{"x":1568397420000,"y":0},{"x":1568397480000,"y":0},{"x":1568397540000,"y":0},{"x":1568397600000,"y":0},{"x":1568397660000,"y":0},{"x":1568397720000,"y":0},{"x":1568397780000,"y":0},{"x":1568397840000,"y":0},{"x":1568397900000,"y":0},{"x":1568397960000,"y":0},{"x":1568398020000,"y":0},{"x":1568398080000,"y":0},{"x":1568398140000,"y":0},{"x":1568398200000,"y":0},{"x":1568398260000,"y":0},{"x":1568398320000,"y":0},{"x":1568398380000,"y":0},{"x":1568398440000,"y":0},{"x":1568398500000,"y":0},{"x":1568398560000,"y":0},{"x":1568398620000,"y":0},{"x":1568398680000,"y":0},{"x":1568398740000,"y":0},{"x":1568398800000,"y":0},{"x":1568398860000,"y":0},{"x":1568398920000,"y":0},{"x":1568398980000,"y":0},{"x":1568399040000,"y":0},{"x":1568399100000,"y":0},{"x":1568399160000,"y":0},{"x":1568399220000,"y":0},{"x":1568399280000,"y":0.14},{"x":1568399340000,"y":0},{"x":1568399400000,"y":0},{"x":1568399460000,"y":0},{"x":1568399520000,"y":0},{"x":1568399580000,"y":0},{"x":1568399640000,"y":0},{"x":1568399700000,"y":0},{"x":1568399760000,"y":0},{"x":1568399820000,"y":0},{"x":1568399880000,"y":0},{"x":1568399940000,"y":0},{"x":1568400000000,"y":0},{"x":1568400060000,"y":0},{"x":1568400120000,"y":0},{"x":1568400180000,"y":0.01},{"x":1568400240000,"y":0},{"x":1568400300000,"y":0},{"x":1568400360000,"y":0},{"x":1568400420000,"y":0},{"x":1568400480000,"y":0},{"x":1568400540000,"y":0},{"x":1568400600000,"y":0},{"x":1568400660000,"y":0},{"x":1568400720000,"y":0},{"x":1568400780000,"y":0},{"x":1568400840000,"y":1.41},{"x":1568400900000,"y":0.01},{"x":1568400960000,"y":0},{"x":1568401020000,"y":0.16},{"x":1568401080000,"y":0.22},{"x":1568401140000,"y":0.01},{"x":1568401200000,"y":0},{"x":1568401260000,"y":0.32},{"x":1568401320000,"y":13.81},{"x":1568401380000,"y":71.58},{"x":1568401440000,"y":23.59},{"x":1568401500000,"y":57.3},{"x":1568401560000,"y":0.03},{"x":1568401620000,"y":0.03},{"x":1568401680000,"y":0},{"x":1568401740000,"y":0.03},{"x":1568401800000,"y":0.05},{"x":1568401860000,"y":0.01},{"x":1568401920000,"y":0.02},{"x":1568401980000,"y":0.04},{"x":1568402040000,"y":0.22},{"x":1568402100000,"y":0.06},{"x":1568402160000,"y":0.2},{"x":1568402220000,"y":0.01},{"x":1568402280000,"y":1.13},{"x":1568402340000,"y":0.01},{"x":1568402400000,"y":0},{"x":1568402460000,"y":1.28},{"x":1568402520000,"y":0.02},{"x":1568402580000,"y":0.72},{"x":1568402640000,"y":0.03},{"x":1568402700000,"y":0},{"x":1568402760000,"y":0.02},{"x":1568402820000,"y":0},{"x":1568402880000,"y":0},{"x":1568402940000,"y":0},{"x":1568403000000,"y":0},{"x":1568403060000,"y":0},{"x":1568403120000,"y":0.01},{"x":1568403180000,"y":0},{"x":1568403240000,"y":0.01},{"x":1568403300000,"y":0.01},{"x":1568403360000,"y":0},{"x":1568403420000,"y":0},{"x":1568403480000,"y":0},{"x":1568403540000,"y":0},{"x":1568403600000,"y":0},{"x":1568403660000,"y":0},{"x":1568403720000,"y":0},{"x":1568403780000,"y":0.01},{"x":1568403840000,"y":0},{"x":1568403900000,"y":0},{"x":1568403960000,"y":0.01},{"x":1568404020000,"y":0.01},{"x":1568404080000,"y":0.05},{"x":1568404140000,"y":0},{"x":1568404200000,"y":0},{"x":1568404260000,"y":0},{"x":1568404320000,"y":0},{"x":1568404380000,"y":0},{"x":1568404440000,"y":0},{"x":1568404500000,"y":0},{"x":1568404560000,"y":0},{"x":1568404620000,"y":0},{"x":1568404680000,"y":0.01},{"x":1568404740000,"y":0.01},{"x":1568404800000,"y":0},{"x":1568404860000,"y":0},{"x":1568404920000,"y":0},{"x":1568404980000,"y":0},{"x":1568405040000,"y":0},{"x":1568405100000,"y":0},{"x":1568405160000,"y":0},{"x":1568405220000,"y":0},{"x":1568405280000,"y":0},{"x":1568405340000,"y":0},{"x":1568405400000,"y":0},{"x":1568405460000,"y":0.02},{"x":1568405520000,"y":0.01},{"x":1568405580000,"y":0.01},{"x":1568405640000,"y":0},{"x":1568405700000,"y":0},{"x":1568405760000,"y":0},{"x":1568405820000,"y":0},{"x":1568405880000,"y":0},{"x":1568405940000,"y":0},{"x":1568406000000,"y":0},{"x":1568406060000,"y":0},{"x":1568406120000,"y":0},{"x":1568406180000,"y":0},{"x":1568406240000,"y":0},{"x":1568406300000,"y":0.02},{"x":1568406360000,"y":0.02},{"x":1568406420000,"y":0.01},{"x":1568406480000,"y":0},{"x":1568406540000,"y":0},{"x":1568406600000,"y":0.01},{"x":1568406660000,"y":0},{"x":1568406720000,"y":0},{"x":1568406780000,"y":0},{"x":1568406840000,"y":0},{"x":1568406900000,"y":0},{"x":1568406960000,"y":0},{"x":1568407020000,"y":0},{"x":1568407080000,"y":0},{"x":1568407140000,"y":0},{"x":1568407200000,"y":0},{"x":1568407260000,"y":0},{"x":1568407320000,"y":0},{"x":1568407380000,"y":0.01},{"x":1568407440000,"y":0},{"x":1568407500000,"y":0},{"x":1568407560000,"y":0},{"x":1568407620000,"y":0},{"x":1568407680000,"y":0},{"x":1568407740000,"y":0},{"x":1568407800000,"y":0},{"x":1568407860000,"y":0},{"x":1568407920000,"y":0},{"x":1568407980000,"y":0},{"x":1568408040000,"y":0},{"x":1568408100000,"y":0},{"x":1568408160000,"y":0},{"x":1568408220000,"y":0.01},{"x":1568408280000,"y":0.01},{"x":1568408340000,"y":0},{"x":1568408400000,"y":0},{"x":1568408460000,"y":0.01},{"x":1568408520000,"y":0},{"x":1568408580000,"y":0},{"x":1568408640000,"y":0},{"x":1568408700000,"y":0},{"x":1568408760000,"y":0},{"x":1568408820000,"y":0},{"x":1568408880000,"y":0},{"x":1568408940000,"y":0},{"x":1568409000000,"y":0},{"x":1568409060000,"y":0},{"x":1568409120000,"y":0},{"x":1568409180000,"y":0},{"x":1568409240000,"y":0},{"x":1568409300000,"y":0},{"x":1568409360000,"y":0.01},{"x":1568409420000,"y":0},{"x":1568409480000,"y":0.01},{"x":1568409540000,"y":0},{"x":1568409600000,"y":0.01},{"x":1568409660000,"y":0},{"x":1568409720000,"y":0},{"x":1568409780000,"y":0.03},{"x":1568409840000,"y":0.01},{"x":1568409900000,"y":0},{"x":1568409960000,"y":0},{"x":1568410020000,"y":0},{"x":1568410080000,"y":0},{"x":1568410140000,"y":0},{"x":1568410200000,"y":0},{"x":1568410260000,"y":0},{"x":1568410320000,"y":0.07},{"x":1568410380000,"y":0.05},{"x":1568410440000,"y":0},{"x":1568410500000,"y":0.35},{"x":1568410560000,"y":0},{"x":1568410620000,"y":0},{"x":1568410680000,"y":0},{"x":1568410740000,"y":0},{"x":1568410800000,"y":0},{"x":1568410860000,"y":0},{"x":1568410920000,"y":0},{"x":1568410980000,"y":0.01},{"x":1568411040000,"y":0},{"x":1568411100000,"y":0},{"x":1568411160000,"y":0},{"x":1568411220000,"y":0},{"x":1568411280000,"y":0},{"x":1568411340000,"y":0},{"x":1568411400000,"y":0},{"x":1568411460000,"y":0},{"x":1568411520000,"y":0},{"x":1568411580000,"y":0},{"x":1568411640000,"y":0},{"x":1568411700000,"y":0},{"x":1568411760000,"y":0},{"x":1568411820000,"y":0},{"x":1568411880000,"y":0},{"x":1568411940000,"y":0},{"x":1568412000000,"y":0},{"x":1568412060000,"y":0},{"x":1568412120000,"y":0},{"x":1568412180000,"y":0},{"x":1568412240000,"y":0},{"x":1568412300000,"y":0},{"x":1568412360000,"y":0},{"x":1568412420000,"y":0.01},{"x":1568412480000,"y":0},{"x":1568412540000,"y":0},{"x":1568412600000,"y":0},{"x":1568412660000,"y":0},{"x":1568412720000,"y":0},{"x":1568412780000,"y":0},{"x":1568412840000,"y":0},{"x":1568412900000,"y":0},{"x":1568412960000,"y":0},{"x":1568413020000,"y":0},{"x":1568413080000,"y":0},{"x":1568413140000,"y":0},{"x":1568413200000,"y":0},{"x":1568413260000,"y":0},{"x":1568413320000,"y":0},{"x":1568413380000,"y":0},{"x":1568413440000,"y":0},{"x":1568413500000,"y":0},{"x":1568413560000,"y":0},{"x":1568413620000,"y":0},{"x":1568413680000,"y":0},{"x":1568413740000,"y":0.01},{"x":1568413800000,"y":0.01},{"x":1568413860000,"y":0},{"x":1568413920000,"y":0.02},{"x":1568413980000,"y":0},{"x":1568414040000,"y":0},{"x":1568414100000,"y":0},{"x":1568414160000,"y":0},{"x":1568414220000,"y":0},{"x":1568414280000,"y":0},{"x":1568414340000,"y":0},{"x":1568414400000,"y":0},{"x":1568414460000,"y":0},{"x":1568414520000,"y":0},{"x":1568414580000,"y":0.01},{"x":1568414640000,"y":0},{"x":1568414700000,"y":0.01},{"x":1568414760000,"y":0},{"x":1568414820000,"y":0.01},{"x":1568414880000,"y":0.01},{"x":1568414940000,"y":0},{"x":1568415000000,"y":0},{"x":1568415060000,"y":0},{"x":1568415120000,"y":0},{"x":1568415180000,"y":0},{"x":1568415240000,"y":0},{"x":1568415300000,"y":0},{"x":1568415360000,"y":0},{"x":1568415420000,"y":0},{"x":1568415480000,"y":0},{"x":1568415540000,"y":0},{"x":1568415600000,"y":0},{"x":1568415660000,"y":0},{"x":1568415720000,"y":0},{"x":1568415780000,"y":0},{"x":1568415840000,"y":0.01},{"x":1568415900000,"y":0},{"x":1568415960000,"y":0},{"x":1568416020000,"y":0},{"x":1568416080000,"y":0},{"x":1568416140000,"y":0},{"x":1568416200000,"y":0},{"x":1568416260000,"y":0},{"x":1568416320000,"y":0},{"x":1568416380000,"y":0},{"x":1568416440000,"y":3.23},{"x":1568416500000,"y":0.01},{"x":1568416560000,"y":0},{"x":1568416620000,"y":0},{"x":1568416680000,"y":0},{"x":1568416740000,"y":0},{"x":1568416800000,"y":0},{"x":1568416860000,"y":0},{"x":1568416920000,"y":0},{"x":1568416980000,"y":0},{"x":1568417040000,"y":0},{"x":1568417100000,"y":0},{"x":1568417160000,"y":0},{"x":1568417220000,"y":0},{"x":1568417280000,"y":0},{"x":1568417340000,"y":0},{"x":1568417400000,"y":0},{"x":1568417460000,"y":0},{"x":1568417520000,"y":0},{"x":1568417580000,"y":0},{"x":1568417640000,"y":0.01},{"x":1568417700000,"y":0},{"x":1568417760000,"y":0},{"x":1568417820000,"y":0},{"x":1568417880000,"y":0},{"x":1568417940000,"y":0},{"x":1568418000000,"y":0},{"x":1568418060000,"y":0},{"x":1568418120000,"y":0},{"x":1568418180000,"y":0.01},{"x":1568418240000,"y":0},{"x":1568418300000,"y":0},{"x":1568418360000,"y":0},{"x":1568418420000,"y":0},{"x":1568418480000,"y":0.04},{"x":1568418540000,"y":0},{"x":1568418600000,"y":0.03},{"x":1568418660000,"y":0.98},{"x":1568418720000,"y":0.01},{"x":1568418780000,"y":0.01},{"x":1568418840000,"y":0},{"x":1568418900000,"y":0},{"x":1568418960000,"y":0},{"x":1568419020000,"y":0},{"x":1568419080000,"y":0},{"x":1568419140000,"y":0.01},{"x":1568419200000,"y":0},{"x":1568419260000,"y":0},{"x":1568419320000,"y":0},{"x":1568419380000,"y":0},{"x":1568419440000,"y":0.02},{"x":1568419500000,"y":0},{"x":1568419560000,"y":0.02},{"x":1568419620000,"y":0},{"x":1568419680000,"y":0},{"x":1568419740000,"y":0.01},{"x":1568419800000,"y":0.01},{"x":1568419860000,"y":0},{"x":1568419920000,"y":0.02},{"x":1568419980000,"y":0.01},{"x":1568420040000,"y":0.01},{"x":1568420100000,"y":0.01},{"x":1568420160000,"y":0.01},{"x":1568420220000,"y":0},{"x":1568420280000,"y":0},{"x":1568420340000,"y":0},{"x":1568420400000,"y":0},{"x":1568420460000,"y":0},{"x":1568420520000,"y":0},{"x":1568420580000,"y":0},{"x":1568420640000,"y":0},{"x":1568420700000,"y":0},{"x":1568420760000,"y":0},{"x":1568420820000,"y":0},{"x":1568420880000,"y":0},{"x":1568420940000,"y":0},{"x":1568421000000,"y":0},{"x":1568421060000,"y":0},{"x":1568421120000,"y":0},{"x":1568421180000,"y":0},{"x":1568421240000,"y":0},{"x":1568421300000,"y":0},{"x":1568421360000,"y":0},{"x":1568421420000,"y":0},{"x":1568421480000,"y":0},{"x":1568421540000,"y":0},{"x":1568421600000,"y":0},{"x":1568421660000,"y":0},{"x":1568421720000,"y":0},{"x":1568421780000,"y":0.01},{"x":1568421840000,"y":0},{"x":1568421900000,"y":0},{"x":1568421960000,"y":0},{"x":1568422020000,"y":0},{"x":1568422080000,"y":0},{"x":1568422140000,"y":0},{"x":1568422200000,"y":0},{"x":1568422260000,"y":0},{"x":1568422320000,"y":0},{"x":1568422380000,"y":0},{"x":1568422440000,"y":0},{"x":1568422500000,"y":0},{"x":1568422560000,"y":0},{"x":1568422620000,"y":0},{"x":1568422680000,"y":0},{"x":1568422740000,"y":0},{"x":1568422800000,"y":0},{"x":1568422860000,"y":0},{"x":1568422920000,"y":0},{"x":1568422980000,"y":0},{"x":1568423040000,"y":0},{"x":1568423100000,"y":0.08},{"x":1568423160000,"y":0},{"x":1568423220000,"y":0},{"x":1568423280000,"y":0},{"x":1568423340000,"y":0},{"x":1568423400000,"y":0},{"x":1568423460000,"y":0},{"x":1568423520000,"y":0},{"x":1568423580000,"y":0},{"x":1568423640000,"y":0},{"x":1568423700000,"y":0},{"x":1568423760000,"y":0},{"x":1568423820000,"y":0},{"x":1568423880000,"y":0},{"x":1568423940000,"y":0},{"x":1568424000000,"y":0},{"x":1568424060000,"y":0},{"x":1568424120000,"y":0},{"x":1568424180000,"y":0},{"x":1568424240000,"y":0},{"x":1568424300000,"y":0},{"x":1568424360000,"y":0},{"x":1568424420000,"y":0},{"x":1568424480000,"y":0},{"x":1568424540000,"y":0},{"x":1568424600000,"y":0},{"x":1568424660000,"y":0},{"x":1568424720000,"y":0},{"x":1568424780000,"y":0},{"x":1568424840000,"y":0},{"x":1568424900000,"y":0},{"x":1568424960000,"y":0},{"x":1568425020000,"y":0},{"x":1568425080000,"y":0},{"x":1568425140000,"y":0},{"x":1568425200000,"y":0},{"x":1568425260000,"y":0},{"x":1568425320000,"y":0},{"x":1568425380000,"y":0.05},{"x":1568425440000,"y":0},{"x":1568425500000,"y":0},{"x":1568425560000,"y":0},{"x":1568425620000,"y":0},{"x":1568425680000,"y":0},{"x":1568425740000,"y":0},{"x":1568425800000,"y":0},{"x":1568425860000,"y":0},{"x":1568425920000,"y":0},{"x":1568425980000,"y":0},{"x":1568426040000,"y":0.06},{"x":1568426100000,"y":0},{"x":1568426160000,"y":0},{"x":1568426220000,"y":0.03},{"x":1568426280000,"y":0},{"x":1568426340000,"y":0},{"x":1568426400000,"y":0},{"x":1568426460000,"y":0},{"x":1568426520000,"y":0.03},{"x":1568426580000,"y":0},{"x":1568426640000,"y":0.01},{"x":1568426700000,"y":0},{"x":1568426760000,"y":0},{"x":1568426820000,"y":0},{"x":1568426880000,"y":0},{"x":1568426940000,"y":0},{"x":1568427000000,"y":0},{"x":1568427060000,"y":1.4},{"x":1568427120000,"y":0.01},{"x":1568427180000,"y":0},{"x":1568427240000,"y":0.02},{"x":1568427300000,"y":0},{"x":1568427360000,"y":0},{"x":1568427420000,"y":0.05},{"x":1568427480000,"y":0},{"x":1568427540000,"y":0},{"x":1568427600000,"y":0},{"x":1568427660000,"y":0},{"x":1568427720000,"y":0},{"x":1568427780000,"y":0},{"x":1568427840000,"y":0.01},{"x":1568427900000,"y":0},{"x":1568427960000,"y":0},{"x":1568428020000,"y":0},{"x":1568428080000,"y":0},{"x":1568428140000,"y":0},{"x":1568428200000,"y":0},{"x":1568428260000,"y":0},{"x":1568428320000,"y":0},{"x":1568428380000,"y":0},{"x":1568428440000,"y":0},{"x":1568428500000,"y":0.01},{"x":1568428560000,"y":0},{"x":1568428620000,"y":0},{"x":1568428680000,"y":0},{"x":1568428740000,"y":0},{"x":1568428800000,"y":0},{"x":1568428860000,"y":0},{"x":1568428920000,"y":0},{"x":1568428980000,"y":0.01},{"x":1568429040000,"y":0},{"x":1568429100000,"y":0},{"x":1568429160000,"y":0},{"x":1568429220000,"y":0},{"x":1568429280000,"y":0},{"x":1568429340000,"y":0},{"x":1568429400000,"y":0},{"x":1568429460000,"y":0},{"x":1568429520000,"y":0.97},{"x":1568429580000,"y":1.89},{"x":1568429640000,"y":1.6},{"x":1568429700000,"y":0},{"x":1568429760000,"y":0},{"x":1568429820000,"y":0},{"x":1568429880000,"y":0},{"x":1568429940000,"y":0},{"x":1568430000000,"y":0},{"x":1568430060000,"y":0},{"x":1568430120000,"y":0},{"x":1568430180000,"y":0},{"x":1568430240000,"y":0},{"x":1568430300000,"y":0},{"x":1568430360000,"y":0},{"x":1568430420000,"y":0},{"x":1568430480000,"y":0},{"x":1568430540000,"y":0},{"x":1568430600000,"y":0},{"x":1568430660000,"y":0},{"x":1568430720000,"y":0},{"x":1568430780000,"y":0},{"x":1568430840000,"y":0},{"x":1568430900000,"y":0},{"x":1568430960000,"y":0},{"x":1568431020000,"y":0},{"x":1568431080000,"y":0},{"x":1568431140000,"y":0},{"x":1568431200000,"y":0},{"x":1568431260000,"y":0},{"x":1568431320000,"y":0},{"x":1568431380000,"y":0},{"x":1568431440000,"y":0},{"x":1568431500000,"y":0},{"x":1568431560000,"y":0},{"x":1568431620000,"y":2.52},{"x":1568431680000,"y":2.61},{"x":1568431740000,"y":0},{"x":1568431800000,"y":0},{"x":1568431860000,"y":0},{"x":1568431920000,"y":0},{"x":1568431980000,"y":0.03},{"x":1568432040000,"y":0.05},{"x":1568432100000,"y":0},{"x":1568432160000,"y":0},{"x":1568432220000,"y":0},{"x":1568432280000,"y":0},{"x":1568432340000,"y":0},{"x":1568432400000,"y":0},{"x":1568432460000,"y":0},{"x":1568432520000,"y":0},{"x":1568432580000,"y":0.01},{"x":1568432640000,"y":0},{"x":1568432700000,"y":0},{"x":1568432760000,"y":0},{"x":1568432820000,"y":0},{"x":1568432880000,"y":0},{"x":1568432940000,"y":0},{"x":1568433000000,"y":0},{"x":1568433060000,"y":0},{"x":1568433120000,"y":0.03},{"x":1568433180000,"y":0},{"x":1568433240000,"y":0.01},{"x":1568433300000,"y":0},{"x":1568433360000,"y":0},{"x":1568433420000,"y":0},{"x":1568433480000,"y":0},{"x":1568433540000,"y":0},{"x":1568433600000,"y":0},{"x":1568433660000,"y":1.71},{"x":1568433720000,"y":0},{"x":1568433780000,"y":0},{"x":1568433840000,"y":0},{"x":1568433900000,"y":0.01},{"x":1568433960000,"y":0},{"x":1568434020000,"y":0.04},{"x":1568434080000,"y":0},{"x":1568434140000,"y":0},{"x":1568434200000,"y":0.01},{"x":1568434260000,"y":0},{"x":1568434320000,"y":0.01},{"x":1568434380000,"y":0.03},{"x":1568434440000,"y":0.01},{"x":1568434500000,"y":0},{"x":1568434560000,"y":0},{"x":1568434620000,"y":0.02},{"x":1568434680000,"y":0},{"x":1568434740000,"y":0},{"x":1568434800000,"y":0},{"x":1568434860000,"y":0.01},{"x":1568434920000,"y":0},{"x":1568434980000,"y":0},{"x":1568435040000,"y":0},{"x":1568435100000,"y":0},{"x":1568435160000,"y":0},{"x":1568435220000,"y":0},{"x":1568435280000,"y":0},{"x":1568435340000,"y":0},{"x":1568435400000,"y":0},{"x":1568435460000,"y":0},{"x":1568435520000,"y":0},{"x":1568435580000,"y":0},{"x":1568435640000,"y":0},{"x":1568435700000,"y":0},{"x":1568435760000,"y":0},{"x":1568435820000,"y":0},{"x":1568435880000,"y":0},{"x":1568435940000,"y":0},{"x":1568436000000,"y":0},{"x":1568436060000,"y":0},{"x":1568436120000,"y":0},{"x":1568436180000,"y":0.01},{"x":1568436240000,"y":0},{"x":1568436300000,"y":0},{"x":1568436360000,"y":0},{"x":1568436420000,"y":0},{"x":1568436480000,"y":0},{"x":1568436540000,"y":0},{"x":1568436600000,"y":0},{"x":1568436660000,"y":0},{"x":1568436720000,"y":0},{"x":1568436780000,"y":0},{"x":1568436840000,"y":0},{"x":1568436900000,"y":0},{"x":1568436960000,"y":0},{"x":1568437020000,"y":0},{"x":1568437080000,"y":0},{"x":1568437140000,"y":0},{"x":1568437200000,"y":0},{"x":1568437260000,"y":0},{"x":1568437320000,"y":0},{"x":1568437380000,"y":0},{"x":1568437440000,"y":0},{"x":1568437500000,"y":0},{"x":1568437560000,"y":0},{"x":1568437620000,"y":0},{"x":1568437680000,"y":0},{"x":1568437740000,"y":0},{"x":1568437800000,"y":0},{"x":1568437860000,"y":0},{"x":1568437920000,"y":0},{"x":1568437980000,"y":0},{"x":1568438040000,"y":0},{"x":1568438100000,"y":0},{"x":1568438160000,"y":0},{"x":1568438220000,"y":0},{"x":1568438280000,"y":0},{"x":1568438340000,"y":0},{"x":1568438400000,"y":0},{"x":1568438460000,"y":0},{"x":1568438520000,"y":0},{"x":1568438580000,"y":0.01},{"x":1568438640000,"y":0},{"x":1568438700000,"y":0},{"x":1568438760000,"y":0},{"x":1568438820000,"y":0},{"x":1568438880000,"y":0},{"x":1568438940000,"y":0},{"x":1568439000000,"y":0},{"x":1568439060000,"y":0},{"x":1568439120000,"y":0},{"x":1568439180000,"y":0},{"x":1568439240000,"y":0},{"x":1568439300000,"y":0},{"x":1568439360000,"y":0},{"x":1568439420000,"y":0},{"x":1568439480000,"y":0},{"x":1568439540000,"y":0},{"x":1568439600000,"y":0},{"x":1568439660000,"y":0},{"x":1568439720000,"y":0},{"x":1568439780000,"y":0.01},{"x":1568439840000,"y":0},{"x":1568439900000,"y":0},{"x":1568439960000,"y":0},{"x":1568440020000,"y":0},{"x":1568440080000,"y":0},{"x":1568440140000,"y":0},{"x":1568440200000,"y":0},{"x":1568440260000,"y":0},{"x":1568440320000,"y":0},{"x":1568440380000,"y":0},{"x":1568440440000,"y":0},{"x":1568440500000,"y":0},{"x":1568440560000,"y":0},{"x":1568440620000,"y":0},{"x":1568440680000,"y":0},{"x":1568440740000,"y":0},{"x":1568440800000,"y":0},{"x":1568440860000,"y":0},{"x":1568440920000,"y":0},{"x":1568440980000,"y":0},{"x":1568441040000,"y":0},{"x":1568441100000,"y":0},{"x":1568441160000,"y":0},{"x":1568441220000,"y":0},{"x":1568441280000,"y":0},{"x":1568441340000,"y":0.01},{"x":1568441400000,"y":0},{"x":1568441460000,"y":0},{"x":1568441520000,"y":0},{"x":1568441580000,"y":0},{"x":1568441640000,"y":0},{"x":1568441700000,"y":0},{"x":1568441760000,"y":0},{"x":1568441820000,"y":0},{"x":1568441880000,"y":0},{"x":1568441940000,"y":0},{"x":1568442000000,"y":0},{"x":1568442060000,"y":0},{"x":1568442120000,"y":0},{"x":1568442180000,"y":0},{"x":1568442240000,"y":0},{"x":1568442300000,"y":0},{"x":1568442360000,"y":0},{"x":1568442420000,"y":0},{"x":1568442480000,"y":0},{"x":1568442540000,"y":0},{"x":1568442600000,"y":0},{"x":1568442660000,"y":0},{"x":1568442720000,"y":0},{"x":1568442780000,"y":0},{"x":1568442840000,"y":0},{"x":1568442900000,"y":0},{"x":1568442960000,"y":0},{"x":1568443020000,"y":0},{"x":1568443080000,"y":0},{"x":1568443140000,"y":0},{"x":1568443200000,"y":0},{"x":1568443260000,"y":0},{"x":1568443320000,"y":0},{"x":1568443380000,"y":0.01},{"x":1568443440000,"y":0},{"x":1568443500000,"y":0},{"x":1568443560000,"y":0},{"x":1568443620000,"y":0},{"x":1568443680000,"y":0},{"x":1568443740000,"y":0},{"x":1568443800000,"y":0},{"x":1568443860000,"y":0},{"x":1568443920000,"y":0},{"x":1568443980000,"y":0},{"x":1568444040000,"y":0},{"x":1568444100000,"y":0},{"x":1568444160000,"y":0},{"x":1568444220000,"y":0},{"x":1568444280000,"y":0},{"x":1568444340000,"y":0},{"x":1568444400000,"y":0.02},{"x":1568444460000,"y":0.01},{"x":1568444520000,"y":0},{"x":1568444580000,"y":0},{"x":1568444640000,"y":0},{"x":1568444700000,"y":0},{"x":1568444760000,"y":0},{"x":1568444820000,"y":0},{"x":1568444880000,"y":0},{"x":1568444940000,"y":0},{"x":1568445000000,"y":0},{"x":1568445060000,"y":0},{"x":1568445120000,"y":0},{"x":1568445180000,"y":0},{"x":1568445240000,"y":0},{"x":1568445300000,"y":0},{"x":1568445360000,"y":0},{"x":1568445420000,"y":0},{"x":1568445480000,"y":0.01},{"x":1568445540000,"y":0},{"x":1568445600000,"y":0},{"x":1568445660000,"y":0},{"x":1568445720000,"y":0},{"x":1568445780000,"y":0},{"x":1568445840000,"y":0},{"x":1568445900000,"y":0},{"x":1568445960000,"y":0},{"x":1568446020000,"y":0},{"x":1568446080000,"y":0},{"x":1568446140000,"y":0},{"x":1568446200000,"y":0},{"x":1568446260000,"y":0},{"x":1568446320000,"y":0},{"x":1568446380000,"y":0},{"x":1568446440000,"y":0},{"x":1568446500000,"y":0},{"x":1568446560000,"y":0},{"x":1568446620000,"y":0},{"x":1568446680000,"y":0},{"x":1568446740000,"y":0},{"x":1568446800000,"y":0},{"x":1568446860000,"y":0},{"x":1568446920000,"y":0},{"x":1568446980000,"y":0.01},{"x":1568447040000,"y":0},{"x":1568447100000,"y":0},{"x":1568447160000,"y":0},{"x":1568447220000,"y":0},{"x":1568447280000,"y":0},{"x":1568447340000,"y":0},{"x":1568447400000,"y":0},{"x":1568447460000,"y":0},{"x":1568447520000,"y":0},{"x":1568447580000,"y":0},{"x":1568447640000,"y":0},{"x":1568447700000,"y":0},{"x":1568447760000,"y":0},{"x":1568447820000,"y":0},{"x":1568447880000,"y":0},{"x":1568447940000,"y":0},{"x":1568448000000,"y":0},{"x":1568448060000,"y":0},{"x":1568448120000,"y":0},{"x":1568448180000,"y":0},{"x":1568448240000,"y":0},{"x":1568448300000,"y":0},{"x":1568448360000,"y":0},{"x":1568448420000,"y":0},{"x":1568448480000,"y":0},{"x":1568448540000,"y":0},{"x":1568448600000,"y":0},{"x":1568448660000,"y":0},{"x":1568448720000,"y":0},{"x":1568448780000,"y":0},{"x":1568448840000,"y":0},{"x":1568448900000,"y":0},{"x":1568448960000,"y":0},{"x":1568449020000,"y":0},{"x":1568449080000,"y":0},{"x":1568449140000,"y":0},{"x":1568449200000,"y":0},{"x":1568449260000,"y":0},{"x":1568449320000,"y":0},{"x":1568449380000,"y":0},{"x":1568449440000,"y":0},{"x":1568449500000,"y":0},{"x":1568449560000,"y":0},{"x":1568449620000,"y":0},{"x":1568449680000,"y":0},{"x":1568449740000,"y":0},{"x":1568449800000,"y":0.02},{"x":1568449860000,"y":0},{"x":1568449920000,"y":0},{"x":1568449980000,"y":0},{"x":1568450040000,"y":0},{"x":1568450100000,"y":0},{"x":1568450160000,"y":0},{"x":1568450220000,"y":0.01},{"x":1568450280000,"y":0},{"x":1568450340000,"y":0},{"x":1568450400000,"y":0.01},{"x":1568450460000,"y":0},{"x":1568450520000,"y":0},{"x":1568450580000,"y":0.01},{"x":1568450640000,"y":0},{"x":1568450700000,"y":0},{"x":1568450760000,"y":0},{"x":1568450820000,"y":0},{"x":1568450880000,"y":0},{"x":1568450940000,"y":0},{"x":1568451000000,"y":0},{"x":1568451060000,"y":0},{"x":1568451120000,"y":0},{"x":1568451180000,"y":0},{"x":1568451240000,"y":0},{"x":1568451300000,"y":0},{"x":1568451360000,"y":0},{"x":1568451420000,"y":0},{"x":1568451480000,"y":0},{"x":1568451540000,"y":0},{"x":1568451600000,"y":0},{"x":1568451660000,"y":0},{"x":1568451720000,"y":0},{"x":1568451780000,"y":0},{"x":1568451840000,"y":0},{"x":1568451900000,"y":0},{"x":1568451960000,"y":0},{"x":1568452020000,"y":0},{"x":1568452080000,"y":0},{"x":1568452140000,"y":0},{"x":1568452200000,"y":0},{"x":1568452260000,"y":0},{"x":1568452320000,"y":0},{"x":1568452380000,"y":0},{"x":1568452440000,"y":0},{"x":1568452500000,"y":0},{"x":1568452560000,"y":0},{"x":1568452620000,"y":0},{"x":1568452680000,"y":0},{"x":1568452740000,"y":0},{"x":1568452800000,"y":0},{"x":1568452860000,"y":0},{"x":1568452920000,"y":0},{"x":1568452980000,"y":0},{"x":1568453040000,"y":0},{"x":1568453100000,"y":0},{"x":1568453160000,"y":0},{"x":1568453220000,"y":0},{"x":1568453280000,"y":0},{"x":1568453340000,"y":0},{"x":1568453400000,"y":0},{"x":1568453460000,"y":0},{"x":1568453520000,"y":0},{"x":1568453580000,"y":0},{"x":1568453640000,"y":0},{"x":1568453700000,"y":0},{"x":1568453760000,"y":0},{"x":1568453820000,"y":0},{"x":1568453880000,"y":0},{"x":1568453940000,"y":0},{"x":1568454000000,"y":0},{"x":1568454060000,"y":0},{"x":1568454120000,"y":0},{"x":1568454180000,"y":0.01},{"x":1568454240000,"y":0},{"x":1568454300000,"y":0.01},{"x":1568454360000,"y":0},{"x":1568454420000,"y":0},{"x":1568454480000,"y":0},{"x":1568454540000,"y":0},{"x":1568454600000,"y":0},{"x":1568454660000,"y":0},{"x":1568454720000,"y":0},{"x":1568454780000,"y":0},{"x":1568454840000,"y":0},{"x":1568454900000,"y":0},{"x":1568454960000,"y":0},{"x":1568455020000,"y":0.01},{"x":1568455080000,"y":0},{"x":1568455140000,"y":0},{"x":1568455200000,"y":0},{"x":1568455260000,"y":0},{"x":1568455320000,"y":0},{"x":1568455380000,"y":0},{"x":1568455440000,"y":0},{"x":1568455500000,"y":0},{"x":1568455560000,"y":0},{"x":1568455620000,"y":0},{"x":1568455680000,"y":0},{"x":1568455740000,"y":0},{"x":1568455800000,"y":0},{"x":1568455860000,"y":0},{"x":1568455920000,"y":0},{"x":1568455980000,"y":0},{"x":1568456040000,"y":0},{"x":1568456100000,"y":0},{"x":1568456160000,"y":0},{"x":1568456220000,"y":0},{"x":1568456280000,"y":0},{"x":1568456340000,"y":0},{"x":1568456400000,"y":0},{"x":1568456460000,"y":0},{"x":1568456520000,"y":0},{"x":1568456580000,"y":0},{"x":1568456640000,"y":0},{"x":1568456700000,"y":0},{"x":1568456760000,"y":0},{"x":1568456820000,"y":0},{"x":1568456880000,"y":0},{"x":1568456940000,"y":0},{"x":1568457000000,"y":0},{"x":1568457060000,"y":0},{"x":1568457120000,"y":0},{"x":1568457180000,"y":0},{"x":1568457240000,"y":0},{"x":1568457300000,"y":0},{"x":1568457360000,"y":0},{"x":1568457420000,"y":0},{"x":1568457480000,"y":0},{"x":1568457540000,"y":0},{"x":1568457600000,"y":0},{"x":1568457660000,"y":0},{"x":1568457720000,"y":0},{"x":1568457780000,"y":0.01},{"x":1568457840000,"y":0},{"x":1568457900000,"y":0},{"x":1568457960000,"y":0},{"x":1568458020000,"y":0},{"x":1568458080000,"y":0},{"x":1568458140000,"y":0},{"x":1568458200000,"y":0},{"x":1568458260000,"y":0},{"x":1568458320000,"y":0},{"x":1568458380000,"y":0},{"x":1568458440000,"y":0},{"x":1568458500000,"y":0},{"x":1568458560000,"y":0},{"x":1568458620000,"y":0},{"x":1568458680000,"y":0},{"x":1568458740000,"y":0},{"x":1568458800000,"y":0},{"x":1568458860000,"y":0},{"x":1568458920000,"y":0},{"x":1568458980000,"y":0},{"x":1568459040000,"y":0},{"x":1568459100000,"y":0},{"x":1568459160000,"y":0},{"x":1568459220000,"y":0},{"x":1568459280000,"y":0},{"x":1568459340000,"y":0},{"x":1568459400000,"y":0},{"x":1568459460000,"y":0},{"x":1568459520000,"y":0},{"x":1568459580000,"y":0},{"x":1568459640000,"y":0},{"x":1568459700000,"y":0},{"x":1568459760000,"y":0},{"x":1568459820000,"y":0},{"x":1568459880000,"y":0},{"x":1568459940000,"y":0},{"x":1568460000000,"y":0},{"x":1568460060000,"y":0},{"x":1568460120000,"y":0},{"x":1568460180000,"y":0},{"x":1568460240000,"y":0},{"x":1568460300000,"y":0},{"x":1568460360000,"y":0},{"x":1568460420000,"y":0},{"x":1568460480000,"y":0},{"x":1568460540000,"y":0},{"x":1568460600000,"y":0},{"x":1568460660000,"y":0},{"x":1568460720000,"y":0},{"x":1568460780000,"y":0},{"x":1568460840000,"y":0},{"x":1568460900000,"y":0},{"x":1568460960000,"y":0},{"x":1568461020000,"y":0},{"x":1568461080000,"y":0},{"x":1568461140000,"y":0},{"x":1568461200000,"y":0},{"x":1568461260000,"y":0},{"x":1568461320000,"y":0},{"x":1568461380000,"y":0.01},{"x":1568461440000,"y":0},{"x":1568461500000,"y":0},{"x":1568461560000,"y":0},{"x":1568461620000,"y":0},{"x":1568461680000,"y":0},{"x":1568461740000,"y":0},{"x":1568461800000,"y":0},{"x":1568461860000,"y":0},{"x":1568461920000,"y":0},{"x":1568461980000,"y":0},{"x":1568462040000,"y":0},{"x":1568462100000,"y":0},{"x":1568462160000,"y":0},{"x":1568462220000,"y":0},{"x":1568462280000,"y":0},{"x":1568462340000,"y":0},{"x":1568462400000,"y":0},{"x":1568462460000,"y":0},{"x":1568462520000,"y":0},{"x":1568462580000,"y":0},{"x":1568462640000,"y":0},{"x":1568462700000,"y":0},{"x":1568462760000,"y":0},{"x":1568462820000,"y":0},{"x":1568462880000,"y":0},{"x":1568462940000,"y":0},{"x":1568463000000,"y":0},{"x":1568463060000,"y":0},{"x":1568463120000,"y":0},{"x":1568463180000,"y":0},{"x":1568463240000,"y":0},{"x":1568463300000,"y":0},{"x":1568463360000,"y":0},{"x":1568463420000,"y":0},{"x":1568463480000,"y":0},{"x":1568463540000,"y":0},{"x":1568463600000,"y":0},{"x":1568463660000,"y":0},{"x":1568463720000,"y":0},{"x":1568463780000,"y":0},{"x":1568463840000,"y":0},{"x":1568463900000,"y":0},{"x":1568463960000,"y":0},{"x":1568464020000,"y":0},{"x":1568464080000,"y":0},{"x":1568464140000,"y":0},{"x":1568464200000,"y":0},{"x":1568464260000,"y":0},{"x":1568464320000,"y":0},{"x":1568464380000,"y":0},{"x":1568464440000,"y":0},{"x":1568464500000,"y":0},{"x":1568464560000,"y":0},{"x":1568464620000,"y":0},{"x":1568464680000,"y":0},{"x":1568464740000,"y":0},{"x":1568464800000,"y":0},{"x":1568464860000,"y":0},{"x":1568464920000,"y":0},{"x":1568464980000,"y":0.01},{"x":1568465040000,"y":0},{"x":1568465100000,"y":0},{"x":1568465160000,"y":0},{"x":1568465220000,"y":0},{"x":1568465280000,"y":0},{"x":1568465340000,"y":0},{"x":1568465400000,"y":0},{"x":1568465460000,"y":0},{"x":1568465520000,"y":0},{"x":1568465580000,"y":0},{"x":1568465640000,"y":0},{"x":1568465700000,"y":0},{"x":1568465760000,"y":0},{"x":1568465820000,"y":0},{"x":1568465880000,"y":0},{"x":1568465940000,"y":0},{"x":1568466000000,"y":0},{"x":1568466060000,"y":0},{"x":1568466120000,"y":0},{"x":1568466180000,"y":0},{"x":1568466240000,"y":0},{"x":1568466300000,"y":0},{"x":1568466360000,"y":0},{"x":1568466420000,"y":0},{"x":1568466480000,"y":0},{"x":1568466540000,"y":0},{"x":1568466600000,"y":0},{"x":1568466660000,"y":0},{"x":1568466720000,"y":0},{"x":1568466780000,"y":0},{"x":1568466840000,"y":0},{"x":1568466900000,"y":0},{"x":1568466960000,"y":0},{"x":1568467020000,"y":0},{"x":1568467080000,"y":0},{"x":1568467140000,"y":0},{"x":1568467200000,"y":0},{"x":1568467260000,"y":0},{"x":1568467320000,"y":0},{"x":1568467380000,"y":0},{"x":1568467440000,"y":0},{"x":1568467500000,"y":0},{"x":1568467560000,"y":0},{"x":1568467620000,"y":0},{"x":1568467680000,"y":0},{"x":1568467740000,"y":0.61},{"x":1568467800000,"y":0},{"x":1568467860000,"y":0},{"x":1568467920000,"y":0},{"x":1568467980000,"y":0},{"x":1568468040000,"y":0.09},{"x":1568468100000,"y":0},{"x":1568468160000,"y":0},{"x":1568468220000,"y":0},{"x":1568468280000,"y":0},{"x":1568468340000,"y":0},{"x":1568468400000,"y":0},{"x":1568468460000,"y":0},{"x":1568468520000,"y":0},{"x":1568468580000,"y":0.01},{"x":1568468640000,"y":0},{"x":1568468700000,"y":0},{"x":1568468760000,"y":0},{"x":1568468820000,"y":0},{"x":1568468880000,"y":0},{"x":1568468940000,"y":0},{"x":1568469000000,"y":0},{"x":1568469060000,"y":0},{"x":1568469120000,"y":0},{"x":1568469180000,"y":0},{"x":1568469240000,"y":0},{"x":1568469300000,"y":0},{"x":1568469360000,"y":0},{"x":1568469420000,"y":0},{"x":1568469480000,"y":0},{"x":1568469540000,"y":0},{"x":1568469600000,"y":0},{"x":1568469660000,"y":0},{"x":1568469720000,"y":0},{"x":1568469780000,"y":0},{"x":1568469840000,"y":0},{"x":1568469900000,"y":0},{"x":1568469960000,"y":0},{"x":1568470020000,"y":0},{"x":1568470080000,"y":0},{"x":1568470140000,"y":0},{"x":1568470200000,"y":0},{"x":1568470260000,"y":0},{"x":1568470320000,"y":0},{"x":1568470380000,"y":0},{"x":1568470440000,"y":0},{"x":1568470500000,"y":0},{"x":1568470560000,"y":0},{"x":1568470620000,"y":0},{"x":1568470680000,"y":0},{"x":1568470740000,"y":0},{"x":1568470800000,"y":0},{"x":1568470860000,"y":0},{"x":1568470920000,"y":0},{"x":1568470980000,"y":0},{"x":1568471040000,"y":0},{"x":1568471100000,"y":0.03},{"x":1568471160000,"y":0},{"x":1568471220000,"y":0},{"x":1568471280000,"y":0},{"x":1568471340000,"y":0},{"x":1568471400000,"y":0},{"x":1568471460000,"y":0},{"x":1568471520000,"y":0},{"x":1568471580000,"y":0.01},{"x":1568471640000,"y":0},{"x":1568471700000,"y":0},{"x":1568471760000,"y":0},{"x":1568471820000,"y":0},{"x":1568471880000,"y":0},{"x":1568471940000,"y":0},{"x":1568472000000,"y":0},{"x":1568472060000,"y":0},{"x":1568472120000,"y":0},{"x":1568472180000,"y":0.01},{"x":1568472240000,"y":0},{"x":1568472300000,"y":0.01},{"x":1568472360000,"y":0},{"x":1568472420000,"y":0},{"x":1568472480000,"y":0},{"x":1568472540000,"y":0},{"x":1568472600000,"y":0},{"x":1568472660000,"y":0},{"x":1568472720000,"y":0},{"x":1568472780000,"y":0},{"x":1568472840000,"y":0},{"x":1568472900000,"y":0},{"x":1568472960000,"y":0},{"x":1568473020000,"y":0},{"x":1568473080000,"y":0},{"x":1568473140000,"y":0},{"x":1568473200000,"y":0},{"x":1568473260000,"y":0},{"x":1568473320000,"y":0},{"x":1568473380000,"y":0},{"x":1568473440000,"y":0.02},{"x":1568473500000,"y":0},{"x":1568473560000,"y":0},{"x":1568473620000,"y":0},{"x":1568473680000,"y":0},{"x":1568473740000,"y":0},{"x":1568473800000,"y":0},{"x":1568473860000,"y":0},{"x":1568473920000,"y":0},{"x":1568473980000,"y":0},{"x":1568474040000,"y":0},{"x":1568474100000,"y":0},{"x":1568474160000,"y":0},{"x":1568474220000,"y":0},{"x":1568474280000,"y":0},{"x":1568474340000,"y":0},{"x":1568474400000,"y":0},{"x":1568474460000,"y":0},{"x":1568474520000,"y":0},{"x":1568474580000,"y":0},{"x":1568474640000,"y":0},{"x":1568474700000,"y":0},{"x":1568474760000,"y":0},{"x":1568474820000,"y":0},{"x":1568474880000,"y":0},{"x":1568474940000,"y":0},{"x":1568475000000,"y":0},{"x":1568475060000,"y":0},{"x":1568475120000,"y":0},{"x":1568475180000,"y":0},{"x":1568475240000,"y":0},{"x":1568475300000,"y":0},{"x":1568475360000,"y":0},{"x":1568475420000,"y":0},{"x":1568475480000,"y":0},{"x":1568475540000,"y":0},{"x":1568475600000,"y":0},{"x":1568475660000,"y":0},{"x":1568475720000,"y":0},{"x":1568475780000,"y":0.01},{"x":1568475840000,"y":0},{"x":1568475900000,"y":0},{"x":1568475960000,"y":0},{"x":1568476020000,"y":0},{"x":1568476080000,"y":0},{"x":1568476140000,"y":0},{"x":1568476200000,"y":0},{"x":1568476260000,"y":0},{"x":1568476320000,"y":0},{"x":1568476380000,"y":0},{"x":1568476440000,"y":0},{"x":1568476500000,"y":0},{"x":1568476560000,"y":0},{"x":1568476620000,"y":0},{"x":1568476680000,"y":0},{"x":1568476740000,"y":0},{"x":1568476800000,"y":0},{"x":1568476860000,"y":0},{"x":1568476920000,"y":0},{"x":1568476980000,"y":0},{"x":1568477040000,"y":0},{"x":1568477100000,"y":0},{"x":1568477160000,"y":0},{"x":1568477220000,"y":0},{"x":1568477280000,"y":0},{"x":1568477340000,"y":0},{"x":1568477400000,"y":0},{"x":1568477460000,"y":0},{"x":1568477520000,"y":0},{"x":1568477580000,"y":0},{"x":1568477640000,"y":0},{"x":1568477700000,"y":0},{"x":1568477760000,"y":0},{"x":1568477820000,"y":0},{"x":1568477880000,"y":0},{"x":1568477940000,"y":0},{"x":1568478000000,"y":0},{"x":1568478060000,"y":0},{"x":1568478120000,"y":0},{"x":1568478180000,"y":0},{"x":1568478240000,"y":0},{"x":1568478300000,"y":0.01},{"x":1568478360000,"y":0},{"x":1568478420000,"y":0},{"x":1568478480000,"y":0},{"x":1568478540000,"y":0},{"x":1568478600000,"y":0},{"x":1568478660000,"y":0},{"x":1568478720000,"y":0},{"x":1568478780000,"y":0},{"x":1568478840000,"y":0},{"x":1568478900000,"y":0},{"x":1568478960000,"y":0},{"x":1568479020000,"y":0},{"x":1568479080000,"y":0},{"x":1568479140000,"y":0},{"x":1568479200000,"y":0},{"x":1568479260000,"y":0},{"x":1568479320000,"y":0},{"x":1568479380000,"y":0.01},{"x":1568479440000,"y":0},{"x":1568479500000,"y":0},{"x":1568479560000,"y":0},{"x":1568479620000,"y":0},{"x":1568479680000,"y":0},{"x":1568479740000,"y":0},{"x":1568479800000,"y":0},{"x":1568479860000,"y":0},{"x":1568479920000,"y":0},{"x":1568479980000,"y":0},{"x":1568480040000,"y":0},{"x":1568480100000,"y":0},{"x":1568480160000,"y":0},{"x":1568480220000,"y":0},{"x":1568480280000,"y":0},{"x":1568480340000,"y":0},{"x":1568480400000,"y":0},{"x":1568480460000,"y":0},{"x":1568480520000,"y":0},{"x":1568480580000,"y":0},{"x":1568480640000,"y":0},{"x":1568480700000,"y":0},{"x":1568480760000,"y":0},{"x":1568480820000,"y":0},{"x":1568480880000,"y":0},{"x":1568480940000,"y":0},{"x":1568481000000,"y":0},{"x":1568481060000,"y":0},{"x":1568481120000,"y":0},{"x":1568481180000,"y":0},{"x":1568481240000,"y":0},{"x":1568481300000,"y":0},{"x":1568481360000,"y":0},{"x":1568481420000,"y":0},{"x":1568481480000,"y":0},{"x":1568481540000,"y":0},{"x":1568481600000,"y":0},{"x":1568481660000,"y":0},{"x":1568481720000,"y":0},{"x":1568481780000,"y":0},{"x":1568481840000,"y":0},{"x":1568481900000,"y":0},{"x":1568481960000,"y":0},{"x":1568482020000,"y":0},{"x":1568482080000,"y":0},{"x":1568482140000,"y":0},{"x":1568482200000,"y":0},{"x":1568482260000,"y":0},{"x":1568482320000,"y":0},{"x":1568482380000,"y":0},{"x":1568482440000,"y":0},{"x":1568482500000,"y":0},{"x":1568482560000,"y":0},{"x":1568482620000,"y":0},{"x":1568482680000,"y":0},{"x":1568482740000,"y":0},{"x":1568482800000,"y":0},{"x":1568482860000,"y":0},{"x":1568482920000,"y":0},{"x":1568482980000,"y":0.01},{"x":1568483040000,"y":0},{"x":1568483100000,"y":0},{"x":1568483160000,"y":0},{"x":1568483220000,"y":0},{"x":1568483280000,"y":0},{"x":1568483340000,"y":0},{"x":1568483400000,"y":0},{"x":1568483460000,"y":0},{"x":1568483520000,"y":0},{"x":1568483580000,"y":0},{"x":1568483640000,"y":0},{"x":1568483700000,"y":0},{"x":1568483760000,"y":0},{"x":1568483820000,"y":0},{"x":1568483880000,"y":0},{"x":1568483940000,"y":0},{"x":1568484000000,"y":0},{"x":1568484060000,"y":0},{"x":1568484120000,"y":0},{"x":1568484180000,"y":0},{"x":1568484240000,"y":0},{"x":1568484300000,"y":0},{"x":1568484360000,"y":0},{"x":1568484420000,"y":0},{"x":1568484480000,"y":0},{"x":1568484540000,"y":0},{"x":1568484600000,"y":0},{"x":1568484660000,"y":0},{"x":1568484720000,"y":0},{"x":1568484780000,"y":0},{"x":1568484840000,"y":0},{"x":1568484900000,"y":0},{"x":1568484960000,"y":0},{"x":1568485020000,"y":0},{"x":1568485080000,"y":0},{"x":1568485140000,"y":0},{"x":1568485200000,"y":0},{"x":1568485260000,"y":0},{"x":1568485320000,"y":0.01},{"x":1568485380000,"y":0},{"x":1568485440000,"y":0},{"x":1568485500000,"y":0},{"x":1568485560000,"y":0.01},{"x":1568485620000,"y":0},{"x":1568485680000,"y":0},{"x":1568485740000,"y":0},{"x":1568485800000,"y":0},{"x":1568485860000,"y":0},{"x":1568485920000,"y":0},{"x":1568485980000,"y":0},{"x":1568486040000,"y":0},{"x":1568486100000,"y":0},{"x":1568486160000,"y":0},{"x":1568486220000,"y":0},{"x":1568486280000,"y":0},{"x":1568486340000,"y":0},{"x":1568486400000,"y":0},{"x":1568486460000,"y":0},{"x":1568486520000,"y":0},{"x":1568486580000,"y":0.01},{"x":1568486640000,"y":0},{"x":1568486700000,"y":0},{"x":1568486760000,"y":0},{"x":1568486820000,"y":0},{"x":1568486880000,"y":0},{"x":1568486940000,"y":0},{"x":1568487000000,"y":0},{"x":1568487060000,"y":0},{"x":1568487120000,"y":0},{"x":1568487180000,"y":0},{"x":1568487240000,"y":0},{"x":1568487300000,"y":0},{"x":1568487360000,"y":0},{"x":1568487420000,"y":0},{"x":1568487480000,"y":0},{"x":1568487540000,"y":0},{"x":1568487600000,"y":0},{"x":1568487660000,"y":0},{"x":1568487720000,"y":0},{"x":1568487780000,"y":0},{"x":1568487840000,"y":0},{"x":1568487900000,"y":0},{"x":1568487960000,"y":0},{"x":1568488020000,"y":0},{"x":1568488080000,"y":0},{"x":1568488140000,"y":0},{"x":1568488200000,"y":0},{"x":1568488260000,"y":0},{"x":1568488320000,"y":0},{"x":1568488380000,"y":0},{"x":1568488440000,"y":0},{"x":1568488500000,"y":0},{"x":1568488560000,"y":0},{"x":1568488620000,"y":0},{"x":1568488680000,"y":0},{"x":1568488740000,"y":0},{"x":1568488800000,"y":0},{"x":1568488860000,"y":0},{"x":1568488920000,"y":0},{"x":1568488980000,"y":0},{"x":1568489040000,"y":0},{"x":1568489100000,"y":0},{"x":1568489160000,"y":0},{"x":1568489220000,"y":0},{"x":1568489280000,"y":0},{"x":1568489340000,"y":0},{"x":1568489400000,"y":0},{"x":1568489460000,"y":0},{"x":1568489520000,"y":0},{"x":1568489580000,"y":0},{"x":1568489640000,"y":0},{"x":1568489700000,"y":0},{"x":1568489760000,"y":0},{"x":1568489820000,"y":0},{"x":1568489880000,"y":0},{"x":1568489940000,"y":0},{"x":1568490000000,"y":0.02},{"x":1568490060000,"y":0},{"x":1568490120000,"y":0},{"x":1568490180000,"y":0.01},{"x":1568490240000,"y":0},{"x":1568490300000,"y":0},{"x":1568490360000,"y":0},{"x":1568490420000,"y":0},{"x":1568490480000,"y":0},{"x":1568490540000,"y":0},{"x":1568490600000,"y":0},{"x":1568490660000,"y":0},{"x":1568490720000,"y":0},{"x":1568490780000,"y":0},{"x":1568490840000,"y":0},{"x":1568490900000,"y":0},{"x":1568490960000,"y":0},{"x":1568491020000,"y":0},{"x":1568491080000,"y":0},{"x":1568491140000,"y":0},{"x":1568491200000,"y":0},{"x":1568491260000,"y":0},{"x":1568491320000,"y":0},{"x":1568491380000,"y":0.02},{"x":1568491440000,"y":0},{"x":1568491500000,"y":0},{"x":1568491560000,"y":0.82},{"x":1568491620000,"y":0},{"x":1568491680000,"y":0},{"x":1568491740000,"y":0},{"x":1568491800000,"y":0},{"x":1568491860000,"y":0},{"x":1568491920000,"y":0},{"x":1568491980000,"y":0},{"x":1568492040000,"y":0},{"x":1568492100000,"y":0},{"x":1568492160000,"y":0},{"x":1568492220000,"y":0},{"x":1568492280000,"y":0},{"x":1568492340000,"y":0},{"x":1568492400000,"y":0},{"x":1568492460000,"y":0},{"x":1568492520000,"y":0},{"x":1568492580000,"y":0},{"x":1568492640000,"y":0},{"x":1568492700000,"y":0},{"x":1568492760000,"y":0},{"x":1568492820000,"y":0},{"x":1568492880000,"y":0},{"x":1568492940000,"y":0},{"x":1568493000000,"y":0},{"x":1568493060000,"y":0},{"x":1568493120000,"y":0},{"x":1568493180000,"y":0},{"x":1568493240000,"y":0},{"x":1568493300000,"y":0},{"x":1568493360000,"y":0},{"x":1568493420000,"y":0},{"x":1568493480000,"y":0},{"x":1568493540000,"y":0},{"x":1568493600000,"y":0},{"x":1568493660000,"y":0},{"x":1568493720000,"y":0},{"x":1568493780000,"y":0.01},{"x":1568493840000,"y":0},{"x":1568493900000,"y":0},{"x":1568493960000,"y":0},{"x":1568494020000,"y":0},{"x":1568494080000,"y":0},{"x":1568494140000,"y":0},{"x":1568494200000,"y":0.01},{"x":1568494260000,"y":0},{"x":1568494320000,"y":0},{"x":1568494380000,"y":0},{"x":1568494440000,"y":0},{"x":1568494500000,"y":0},{"x":1568494560000,"y":0},{"x":1568494620000,"y":0},{"x":1568494680000,"y":0},{"x":1568494740000,"y":0},{"x":1568494800000,"y":0},{"x":1568494860000,"y":0},{"x":1568494920000,"y":0},{"x":1568494980000,"y":0},{"x":1568495040000,"y":0},{"x":1568495100000,"y":0},{"x":1568495160000,"y":0},{"x":1568495220000,"y":0},{"x":1568495280000,"y":0},{"x":1568495340000,"y":0},{"x":1568495400000,"y":0},{"x":1568495460000,"y":0},{"x":1568495520000,"y":0},{"x":1568495580000,"y":0},{"x":1568495640000,"y":0},{"x":1568495700000,"y":0},{"x":1568495760000,"y":0},{"x":1568495820000,"y":0},{"x":1568495880000,"y":0},{"x":1568495940000,"y":0},{"x":1568496000000,"y":0},{"x":1568496060000,"y":0},{"x":1568496120000,"y":0},{"x":1568496180000,"y":0},{"x":1568496240000,"y":0},{"x":1568496300000,"y":0},{"x":1568496360000,"y":0},{"x":1568496420000,"y":0},{"x":1568496480000,"y":0},{"x":1568496540000,"y":0},{"x":1568496600000,"y":0},{"x":1568496660000,"y":0},{"x":1568496720000,"y":0},{"x":1568496780000,"y":0},{"x":1568496840000,"y":0},{"x":1568496900000,"y":2.2},{"x":1568496960000,"y":0.02},{"x":1568497020000,"y":0},{"x":1568497080000,"y":0},{"x":1568497140000,"y":0},{"x":1568497200000,"y":0},{"x":1568497260000,"y":0},{"x":1568497320000,"y":0},{"x":1568497380000,"y":0.01},{"x":1568497440000,"y":0},{"x":1568497500000,"y":0},{"x":1568497560000,"y":0},{"x":1568497620000,"y":0},{"x":1568497680000,"y":0},{"x":1568497740000,"y":0},{"x":1568497800000,"y":0},{"x":1568497860000,"y":0},{"x":1568497920000,"y":0},{"x":1568497980000,"y":0},{"x":1568498040000,"y":0},{"x":1568498100000,"y":0},{"x":1568498160000,"y":0},{"x":1568498220000,"y":0},{"x":1568498280000,"y":0},{"x":1568498340000,"y":0},{"x":1568498400000,"y":0},{"x":1568498460000,"y":0},{"x":1568498520000,"y":0},{"x":1568498580000,"y":0},{"x":1568498640000,"y":0},{"x":1568498700000,"y":0},{"x":1568498760000,"y":0},{"x":1568498820000,"y":0},{"x":1568498880000,"y":0},{"x":1568498940000,"y":0},{"x":1568499000000,"y":0},{"x":1568499060000,"y":0},{"x":1568499120000,"y":0},{"x":1568499180000,"y":0},{"x":1568499240000,"y":0},{"x":1568499300000,"y":0},{"x":1568499360000,"y":0},{"x":1568499420000,"y":0},{"x":1568499480000,"y":0},{"x":1568499540000,"y":0},{"x":1568499600000,"y":0},{"x":1568499660000,"y":0},{"x":1568499720000,"y":0},{"x":1568499780000,"y":0},{"x":1568499840000,"y":0},{"x":1568499900000,"y":0},{"x":1568499960000,"y":0},{"x":1568500020000,"y":0},{"x":1568500080000,"y":0},{"x":1568500140000,"y":0},{"x":1568500200000,"y":0},{"x":1568500260000,"y":0},{"x":1568500320000,"y":0},{"x":1568500380000,"y":0},{"x":1568500440000,"y":0},{"x":1568500500000,"y":0},{"x":1568500560000,"y":0},{"x":1568500620000,"y":0},{"x":1568500680000,"y":0},{"x":1568500740000,"y":0},{"x":1568500800000,"y":0},{"x":1568500860000,"y":0},{"x":1568500920000,"y":0},{"x":1568500980000,"y":0.01},{"x":1568501040000,"y":0},{"x":1568501100000,"y":0},{"x":1568501160000,"y":0},{"x":1568501220000,"y":0},{"x":1568501280000,"y":0},{"x":1568501340000,"y":0},{"x":1568501400000,"y":0},{"x":1568501460000,"y":0},{"x":1568501520000,"y":0},{"x":1568501580000,"y":0},{"x":1568501640000,"y":0},{"x":1568501700000,"y":0},{"x":1568501760000,"y":0},{"x":1568501820000,"y":0},{"x":1568501880000,"y":0},{"x":1568501940000,"y":0},{"x":1568502000000,"y":0},{"x":1568502060000,"y":0},{"x":1568502120000,"y":0},{"x":1568502180000,"y":0},{"x":1568502240000,"y":0},{"x":1568502300000,"y":0},{"x":1568502360000,"y":0},{"x":1568502420000,"y":0},{"x":1568502480000,"y":0},{"x":1568502540000,"y":0},{"x":1568502600000,"y":0},{"x":1568502660000,"y":0},{"x":1568502720000,"y":0},{"x":1568502780000,"y":0.01},{"x":1568502840000,"y":0},{"x":1568502900000,"y":0},{"x":1568502960000,"y":0},{"x":1568503020000,"y":0},{"x":1568503080000,"y":0},{"x":1568503140000,"y":0},{"x":1568503200000,"y":0},{"x":1568503260000,"y":0},{"x":1568503320000,"y":0},{"x":1568503380000,"y":0},{"x":1568503440000,"y":0},{"x":1568503500000,"y":0},{"x":1568503560000,"y":0},{"x":1568503620000,"y":0},{"x":1568503680000,"y":0},{"x":1568503740000,"y":0},{"x":1568503800000,"y":0},{"x":1568503860000,"y":0},{"x":1568503920000,"y":0},{"x":1568503980000,"y":0},{"x":1568504040000,"y":0},{"x":1568504100000,"y":0},{"x":1568504160000,"y":0},{"x":1568504220000,"y":0},{"x":1568504280000,"y":0},{"x":1568504340000,"y":0},{"x":1568504400000,"y":0},{"x":1568504460000,"y":0},{"x":1568504520000,"y":0},{"x":1568504580000,"y":0.03},{"x":1568504640000,"y":0},{"x":1568504700000,"y":0},{"x":1568504760000,"y":0},{"x":1568504820000,"y":0},{"x":1568504880000,"y":0},{"x":1568504940000,"y":0},{"x":1568505000000,"y":0},{"x":1568505060000,"y":0},{"x":1568505120000,"y":0},{"x":1568505180000,"y":0},{"x":1568505240000,"y":0},{"x":1568505300000,"y":0},{"x":1568505360000,"y":0},{"x":1568505420000,"y":0},{"x":1568505480000,"y":0},{"x":1568505540000,"y":0},{"x":1568505600000,"y":0},{"x":1568505660000,"y":0},{"x":1568505720000,"y":0},{"x":1568505780000,"y":0},{"x":1568505840000,"y":0},{"x":1568505900000,"y":0},{"x":1568505960000,"y":0},{"x":1568506020000,"y":0},{"x":1568506080000,"y":0},{"x":1568506140000,"y":0},{"x":1568506200000,"y":0},{"x":1568506260000,"y":0},{"x":1568506320000,"y":0},{"x":1568506380000,"y":0},{"x":1568506440000,"y":0},{"x":1568506500000,"y":0},{"x":1568506560000,"y":0},{"x":1568506620000,"y":0},{"x":1568506680000,"y":0},{"x":1568506740000,"y":0},{"x":1568506800000,"y":0},{"x":1568506860000,"y":0},{"x":1568506920000,"y":0.01},{"x":1568506980000,"y":0},{"x":1568507040000,"y":0},{"x":1568507100000,"y":0},{"x":1568507160000,"y":0},{"x":1568507220000,"y":0},{"x":1568507280000,"y":0},{"x":1568507340000,"y":0},{"x":1568507400000,"y":0},{"x":1568507460000,"y":0},{"x":1568507520000,"y":0},{"x":1568507580000,"y":0},{"x":1568507640000,"y":0},{"x":1568507700000,"y":0},{"x":1568507760000,"y":0},{"x":1568507820000,"y":0},{"x":1568507880000,"y":0},{"x":1568507940000,"y":0},{"x":1568508000000,"y":0},{"x":1568508060000,"y":0},{"x":1568508120000,"y":0},{"x":1568508180000,"y":0.01},{"x":1568508240000,"y":0},{"x":1568508300000,"y":0},{"x":1568508360000,"y":0},{"x":1568508420000,"y":0},{"x":1568508480000,"y":0},{"x":1568508540000,"y":0},{"x":1568508600000,"y":0},{"x":1568508660000,"y":0},{"x":1568508720000,"y":0},{"x":1568508780000,"y":0},{"x":1568508840000,"y":0},{"x":1568508900000,"y":0},{"x":1568508960000,"y":0},{"x":1568509020000,"y":0},{"x":1568509080000,"y":0},{"x":1568509140000,"y":0},{"x":1568509200000,"y":0},{"x":1568509260000,"y":0},{"x":1568509320000,"y":0},{"x":1568509380000,"y":0},{"x":1568509440000,"y":0},{"x":1568509500000,"y":0},{"x":1568509560000,"y":0},{"x":1568509620000,"y":0},{"x":1568509680000,"y":0},{"x":1568509740000,"y":0},{"x":1568509800000,"y":0},{"x":1568509860000,"y":0},{"x":1568509920000,"y":0},{"x":1568509980000,"y":0},{"x":1568510040000,"y":0},{"x":1568510100000,"y":0},{"x":1568510160000,"y":0},{"x":1568510220000,"y":0},{"x":1568510280000,"y":0},{"x":1568510340000,"y":0},{"x":1568510400000,"y":0},{"x":1568510460000,"y":0},{"x":1568510520000,"y":0},{"x":1568510580000,"y":0},{"x":1568510640000,"y":0},{"x":1568510700000,"y":0},{"x":1568510760000,"y":0},{"x":1568510820000,"y":0},{"x":1568510880000,"y":0},{"x":1568510940000,"y":0},{"x":1568511000000,"y":0},{"x":1568511060000,"y":0},{"x":1568511120000,"y":0},{"x":1568511180000,"y":0},{"x":1568511240000,"y":0},{"x":1568511300000,"y":0},{"x":1568511360000,"y":0},{"x":1568511420000,"y":0},{"x":1568511480000,"y":0},{"x":1568511540000,"y":0},{"x":1568511600000,"y":0},{"x":1568511660000,"y":0},{"x":1568511720000,"y":0},{"x":1568511780000,"y":0.01},{"x":1568511840000,"y":0},{"x":1568511900000,"y":0},{"x":1568511960000,"y":0},{"x":1568512020000,"y":0},{"x":1568512080000,"y":0},{"x":1568512140000,"y":0},{"x":1568512200000,"y":0},{"x":1568512260000,"y":0},{"x":1568512320000,"y":0},{"x":1568512380000,"y":0},{"x":1568512440000,"y":0},{"x":1568512500000,"y":0},{"x":1568512560000,"y":0},{"x":1568512620000,"y":0},{"x":1568512680000,"y":0},{"x":1568512740000,"y":0},{"x":1568512800000,"y":0},{"x":1568512860000,"y":0},{"x":1568512920000,"y":0},{"x":1568512980000,"y":0},{"x":1568513040000,"y":0},{"x":1568513100000,"y":0},{"x":1568513160000,"y":0},{"x":1568513220000,"y":0},{"x":1568513280000,"y":0},{"x":1568513340000,"y":0},{"x":1568513400000,"y":0},{"x":1568513460000,"y":0},{"x":1568513520000,"y":0},{"x":1568513580000,"y":0},{"x":1568513640000,"y":0},{"x":1568513700000,"y":0},{"x":1568513760000,"y":0},{"x":1568513820000,"y":0},{"x":1568513880000,"y":0},{"x":1568513940000,"y":0},{"x":1568514000000,"y":0},{"x":1568514060000,"y":0},{"x":1568514120000,"y":0},{"x":1568514180000,"y":0},{"x":1568514240000,"y":0},{"x":1568514300000,"y":0},{"x":1568514360000,"y":0},{"x":1568514420000,"y":0},{"x":1568514480000,"y":0},{"x":1568514540000,"y":0},{"x":1568514600000,"y":0},{"x":1568514660000,"y":0},{"x":1568514720000,"y":0},{"x":1568514780000,"y":0},{"x":1568514840000,"y":0.01},{"x":1568514900000,"y":0.01},{"x":1568514960000,"y":0},{"x":1568515020000,"y":0},{"x":1568515080000,"y":0},{"x":1568515140000,"y":0},{"x":1568515200000,"y":0},{"x":1568515260000,"y":0},{"x":1568515320000,"y":0},{"x":1568515380000,"y":0.01},{"x":1568515440000,"y":0},{"x":1568515500000,"y":0},{"x":1568515560000,"y":0},{"x":1568515620000,"y":0},{"x":1568515680000,"y":0},{"x":1568515740000,"y":0},{"x":1568515800000,"y":0.01},{"x":1568515860000,"y":0},{"x":1568515920000,"y":0},{"x":1568515980000,"y":0},{"x":1568516040000,"y":0},{"x":1568516100000,"y":0},{"x":1568516160000,"y":0},{"x":1568516220000,"y":0.01},{"x":1568516280000,"y":0},{"x":1568516340000,"y":0},{"x":1568516400000,"y":0},{"x":1568516460000,"y":0},{"x":1568516520000,"y":0},{"x":1568516580000,"y":0},{"x":1568516640000,"y":0},{"x":1568516700000,"y":0.02},{"x":1568516760000,"y":0.01},{"x":1568516820000,"y":0},{"x":1568516880000,"y":0},{"x":1568516940000,"y":0},{"x":1568517000000,"y":0.01},{"x":1568517060000,"y":0},{"x":1568517120000,"y":0},{"x":1568517180000,"y":0},{"x":1568517240000,"y":0},{"x":1568517300000,"y":0},{"x":1568517360000,"y":0},{"x":1568517420000,"y":0},{"x":1568517480000,"y":0},{"x":1568517540000,"y":0},{"x":1568517600000,"y":0},{"x":1568517660000,"y":0},{"x":1568517720000,"y":0},{"x":1568517780000,"y":0},{"x":1568517840000,"y":0},{"x":1568517900000,"y":0},{"x":1568517960000,"y":0},{"x":1568518020000,"y":0.07},{"x":1568518080000,"y":0},{"x":1568518140000,"y":0},{"x":1568518200000,"y":0},{"x":1568518260000,"y":0},{"x":1568518320000,"y":0},{"x":1568518380000,"y":0},{"x":1568518440000,"y":0},{"x":1568518500000,"y":0},{"x":1568518560000,"y":0},{"x":1568518620000,"y":0},{"x":1568518680000,"y":0},{"x":1568518740000,"y":0},{"x":1568518800000,"y":0},{"x":1568518860000,"y":0},{"x":1568518920000,"y":0},{"x":1568518980000,"y":0.01},{"x":1568519040000,"y":0},{"x":1568519100000,"y":0},{"x":1568519160000,"y":0},{"x":1568519220000,"y":0},{"x":1568519280000,"y":0},{"x":1568519340000,"y":0},{"x":1568519400000,"y":0},{"x":1568519460000,"y":0},{"x":1568519520000,"y":0},{"x":1568519580000,"y":0},{"x":1568519640000,"y":0},{"x":1568519700000,"y":0},{"x":1568519760000,"y":0},{"x":1568519820000,"y":0},{"x":1568519880000,"y":0},{"x":1568519940000,"y":0},{"x":1568520000000,"y":0},{"x":1568520060000,"y":0},{"x":1568520120000,"y":0},{"x":1568520180000,"y":0},{"x":1568520240000,"y":0},{"x":1568520300000,"y":0},{"x":1568520360000,"y":0},{"x":1568520420000,"y":0},{"x":1568520480000,"y":0},{"x":1568520540000,"y":0},{"x":1568520600000,"y":0},{"x":1568520660000,"y":0.01},{"x":1568520720000,"y":0},{"x":1568520780000,"y":0},{"x":1568520840000,"y":0},{"x":1568520900000,"y":0},{"x":1568520960000,"y":0},{"x":1568521020000,"y":0},{"x":1568521080000,"y":0},{"x":1568521140000,"y":0},{"x":1568521200000,"y":0},{"x":1568521260000,"y":0},{"x":1568521320000,"y":0},{"x":1568521380000,"y":0},{"x":1568521440000,"y":0},{"x":1568521500000,"y":0},{"x":1568521560000,"y":0},{"x":1568521620000,"y":0},{"x":1568521680000,"y":0},{"x":1568521740000,"y":0},{"x":1568521800000,"y":0},{"x":1568521860000,"y":0},{"x":1568521920000,"y":0},{"x":1568521980000,"y":0},{"x":1568522040000,"y":0},{"x":1568522100000,"y":0},{"x":1568522160000,"y":0},{"x":1568522220000,"y":0},{"x":1568522280000,"y":0},{"x":1568522340000,"y":0},{"x":1568522400000,"y":0},{"x":1568522460000,"y":0},{"x":1568522520000,"y":0},{"x":1568522580000,"y":0.01},{"x":1568522640000,"y":0},{"x":1568522700000,"y":0},{"x":1568522760000,"y":0},{"x":1568522820000,"y":0},{"x":1568522880000,"y":0},{"x":1568522940000,"y":0},{"x":1568523000000,"y":0},{"x":1568523060000,"y":0},{"x":1568523120000,"y":0},{"x":1568523180000,"y":0},{"x":1568523240000,"y":0},{"x":1568523300000,"y":0},{"x":1568523360000,"y":0},{"x":1568523420000,"y":0},{"x":1568523480000,"y":0},{"x":1568523540000,"y":0},{"x":1568523600000,"y":0},{"x":1568523660000,"y":0},{"x":1568523720000,"y":0},{"x":1568523780000,"y":0},{"x":1568523840000,"y":0},{"x":1568523900000,"y":0},{"x":1568523960000,"y":0},{"x":1568524020000,"y":0},{"x":1568524080000,"y":0},{"x":1568524140000,"y":0},{"x":1568524200000,"y":0},{"x":1568524260000,"y":0},{"x":1568524320000,"y":0},{"x":1568524380000,"y":0},{"x":1568524440000,"y":0},{"x":1568524500000,"y":0},{"x":1568524560000,"y":0},{"x":1568524620000,"y":0},{"x":1568524680000,"y":0},{"x":1568524740000,"y":0},{"x":1568524800000,"y":0},{"x":1568524860000,"y":0},{"x":1568524920000,"y":0},{"x":1568524980000,"y":0},{"x":1568525040000,"y":0},{"x":1568525100000,"y":0},{"x":1568525160000,"y":0},{"x":1568525220000,"y":0},{"x":1568525280000,"y":0},{"x":1568525340000,"y":0},{"x":1568525400000,"y":0},{"x":1568525460000,"y":0},{"x":1568525520000,"y":0},{"x":1568525580000,"y":0},{"x":1568525640000,"y":0},{"x":1568525700000,"y":0},{"x":1568525760000,"y":0},{"x":1568525820000,"y":0},{"x":1568525880000,"y":0},{"x":1568525940000,"y":0},{"x":1568526000000,"y":0},{"x":1568526060000,"y":0},{"x":1568526120000,"y":0},{"x":1568526180000,"y":0.01},{"x":1568526240000,"y":0},{"x":1568526300000,"y":0},{"x":1568526360000,"y":0},{"x":1568526420000,"y":0},{"x":1568526480000,"y":0},{"x":1568526540000,"y":0},{"x":1568526600000,"y":0},{"x":1568526660000,"y":0},{"x":1568526720000,"y":0},{"x":1568526780000,"y":0},{"x":1568526840000,"y":0},{"x":1568526900000,"y":0},{"x":1568526960000,"y":0},{"x":1568527020000,"y":0},{"x":1568527080000,"y":0},{"x":1568527140000,"y":0},{"x":1568527200000,"y":0},{"x":1568527260000,"y":0},{"x":1568527320000,"y":0},{"x":1568527380000,"y":0},{"x":1568527440000,"y":0},{"x":1568527500000,"y":0},{"x":1568527560000,"y":0},{"x":1568527620000,"y":0},{"x":1568527680000,"y":0},{"x":1568527740000,"y":0},{"x":1568527800000,"y":0},{"x":1568527860000,"y":0},{"x":1568527920000,"y":0},{"x":1568527980000,"y":0},{"x":1568528040000,"y":0},{"x":1568528100000,"y":0},{"x":1568528160000,"y":0},{"x":1568528220000,"y":0},{"x":1568528280000,"y":0},{"x":1568528340000,"y":0},{"x":1568528400000,"y":0},{"x":1568528460000,"y":0},{"x":1568528520000,"y":0},{"x":1568528580000,"y":0},{"x":1568528640000,"y":0},{"x":1568528700000,"y":0},{"x":1568528760000,"y":0},{"x":1568528820000,"y":0},{"x":1568528880000,"y":0},{"x":1568528940000,"y":0},{"x":1568529000000,"y":0},{"x":1568529060000,"y":0},{"x":1568529120000,"y":0},{"x":1568529180000,"y":0},{"x":1568529240000,"y":0},{"x":1568529300000,"y":0},{"x":1568529360000,"y":0},{"x":1568529420000,"y":0},{"x":1568529480000,"y":0},{"x":1568529540000,"y":0},{"x":1568529600000,"y":0},{"x":1568529660000,"y":0},{"x":1568529720000,"y":0},{"x":1568529780000,"y":0.01},{"x":1568529840000,"y":0},{"x":1568529900000,"y":0},{"x":1568529960000,"y":0},{"x":1568530020000,"y":0},{"x":1568530080000,"y":0},{"x":1568530140000,"y":0},{"x":1568530200000,"y":0},{"x":1568530260000,"y":0},{"x":1568530320000,"y":0},{"x":1568530380000,"y":0},{"x":1568530440000,"y":0},{"x":1568530500000,"y":0},{"x":1568530560000,"y":0},{"x":1568530620000,"y":0},{"x":1568530680000,"y":0},{"x":1568530740000,"y":0},{"x":1568530800000,"y":0},{"x":1568530860000,"y":0},{"x":1568530920000,"y":0},{"x":1568530980000,"y":0},{"x":1568531040000,"y":0},{"x":1568531100000,"y":0},{"x":1568531160000,"y":0},{"x":1568531220000,"y":0},{"x":1568531280000,"y":0},{"x":1568531340000,"y":0},{"x":1568531400000,"y":0},{"x":1568531460000,"y":0},{"x":1568531520000,"y":0},{"x":1568531580000,"y":0},{"x":1568531640000,"y":0},{"x":1568531700000,"y":0},{"x":1568531760000,"y":0},{"x":1568531820000,"y":0},{"x":1568531880000,"y":0},{"x":1568531940000,"y":0},{"x":1568532000000,"y":0},{"x":1568532060000,"y":0},{"x":1568532120000,"y":0},{"x":1568532180000,"y":0},{"x":1568532240000,"y":0},{"x":1568532300000,"y":0},{"x":1568532360000,"y":0},{"x":1568532420000,"y":0},{"x":1568532480000,"y":0},{"x":1568532540000,"y":0},{"x":1568532600000,"y":0},{"x":1568532660000,"y":0},{"x":1568532720000,"y":0},{"x":1568532780000,"y":0.02},{"x":1568532840000,"y":0},{"x":1568532900000,"y":0},{"x":1568532960000,"y":0},{"x":1568533020000,"y":0},{"x":1568533080000,"y":0},{"x":1568533140000,"y":0},{"x":1568533200000,"y":0},{"x":1568533260000,"y":0},{"x":1568533320000,"y":0},{"x":1568533380000,"y":0.01},{"x":1568533440000,"y":0},{"x":1568533500000,"y":0},{"x":1568533560000,"y":0},{"x":1568533620000,"y":0},{"x":1568533680000,"y":0},{"x":1568533740000,"y":0},{"x":1568533800000,"y":0},{"x":1568533860000,"y":0},{"x":1568533920000,"y":0},{"x":1568533980000,"y":0},{"x":1568534040000,"y":0},{"x":1568534100000,"y":0},{"x":1568534160000,"y":0},{"x":1568534220000,"y":0},{"x":1568534280000,"y":0},{"x":1568534340000,"y":0},{"x":1568534400000,"y":0},{"x":1568534460000,"y":0},{"x":1568534520000,"y":0},{"x":1568534580000,"y":0},{"x":1568534640000,"y":0},{"x":1568534700000,"y":0},{"x":1568534760000,"y":0},{"x":1568534820000,"y":0},{"x":1568534880000,"y":0},{"x":1568534940000,"y":0},{"x":1568535000000,"y":0},{"x":1568535060000,"y":0},{"x":1568535120000,"y":0},{"x":1568535180000,"y":0},{"x":1568535240000,"y":0},{"x":1568535300000,"y":0},{"x":1568535360000,"y":0},{"x":1568535420000,"y":0},{"x":1568535480000,"y":0},{"x":1568535540000,"y":0},{"x":1568535600000,"y":0},{"x":1568535660000,"y":0},{"x":1568535720000,"y":0},{"x":1568535780000,"y":0},{"x":1568535840000,"y":0},{"x":1568535900000,"y":0},{"x":1568535960000,"y":0},{"x":1568536020000,"y":0},{"x":1568536080000,"y":0},{"x":1568536140000,"y":0.03},{"x":1568536200000,"y":0},{"x":1568536260000,"y":0},{"x":1568536320000,"y":0},{"x":1568536380000,"y":0},{"x":1568536440000,"y":0},{"x":1568536500000,"y":0},{"x":1568536560000,"y":0},{"x":1568536620000,"y":0},{"x":1568536680000,"y":0},{"x":1568536740000,"y":0},{"x":1568536800000,"y":0},{"x":1568536860000,"y":0},{"x":1568536920000,"y":0},{"x":1568536980000,"y":0.01},{"x":1568537040000,"y":0},{"x":1568537100000,"y":0},{"x":1568537160000,"y":0},{"x":1568537220000,"y":0},{"x":1568537280000,"y":0},{"x":1568537340000,"y":0},{"x":1568537400000,"y":0},{"x":1568537460000,"y":0},{"x":1568537520000,"y":0},{"x":1568537580000,"y":0},{"x":1568537640000,"y":0},{"x":1568537700000,"y":0.01},{"x":1568537760000,"y":0},{"x":1568537820000,"y":0},{"x":1568537880000,"y":0},{"x":1568537940000,"y":0},{"x":1568538000000,"y":0},{"x":1568538060000,"y":0},{"x":1568538120000,"y":0},{"x":1568538180000,"y":0},{"x":1568538240000,"y":0},{"x":1568538300000,"y":0},{"x":1568538360000,"y":0},{"x":1568538420000,"y":0},{"x":1568538480000,"y":0},{"x":1568538540000,"y":0},{"x":1568538600000,"y":0},{"x":1568538660000,"y":0},{"x":1568538720000,"y":0},{"x":1568538780000,"y":0},{"x":1568538840000,"y":0},{"x":1568538900000,"y":0},{"x":1568538960000,"y":0},{"x":1568539020000,"y":0},{"x":1568539080000,"y":0},{"x":1568539140000,"y":0},{"x":1568539200000,"y":0},{"x":1568539260000,"y":0},{"x":1568539320000,"y":0},{"x":1568539380000,"y":0},{"x":1568539440000,"y":0},{"x":1568539500000,"y":0},{"x":1568539560000,"y":0},{"x":1568539620000,"y":0},{"x":1568539680000,"y":0},{"x":1568539740000,"y":0},{"x":1568539800000,"y":0},{"x":1568539860000,"y":0},{"x":1568539920000,"y":0},{"x":1568539980000,"y":0},{"x":1568540040000,"y":0},{"x":1568540100000,"y":0},{"x":1568540160000,"y":0},{"x":1568540220000,"y":0},{"x":1568540280000,"y":0},{"x":1568540340000,"y":0},{"x":1568540400000,"y":0},{"x":1568540460000,"y":0},{"x":1568540520000,"y":0},{"x":1568540580000,"y":0.01},{"x":1568540640000,"y":0},{"x":1568540700000,"y":0},{"x":1568540760000,"y":0},{"x":1568540820000,"y":0},{"x":1568540880000,"y":0},{"x":1568540940000,"y":0},{"x":1568541000000,"y":0},{"x":1568541060000,"y":0},{"x":1568541120000,"y":0},{"x":1568541180000,"y":0},{"x":1568541240000,"y":0},{"x":1568541300000,"y":0},{"x":1568541360000,"y":0},{"x":1568541420000,"y":0},{"x":1568541480000,"y":0},{"x":1568541540000,"y":0},{"x":1568541600000,"y":0},{"x":1568541660000,"y":0},{"x":1568541720000,"y":0},{"x":1568541780000,"y":0},{"x":1568541840000,"y":0.02},{"x":1568541900000,"y":0},{"x":1568541960000,"y":0},{"x":1568542020000,"y":0},{"x":1568542080000,"y":0},{"x":1568542140000,"y":0},{"x":1568542200000,"y":0},{"x":1568542260000,"y":0},{"x":1568542320000,"y":0},{"x":1568542380000,"y":0},{"x":1568542440000,"y":0},{"x":1568542500000,"y":0},{"x":1568542560000,"y":0},{"x":1568542620000,"y":0},{"x":1568542680000,"y":0},{"x":1568542740000,"y":0},{"x":1568542800000,"y":0},{"x":1568542860000,"y":0},{"x":1568542920000,"y":0},{"x":1568542980000,"y":0},{"x":1568543040000,"y":0},{"x":1568543100000,"y":0},{"x":1568543160000,"y":0},{"x":1568543220000,"y":0},{"x":1568543280000,"y":0},{"x":1568543340000,"y":0},{"x":1568543400000,"y":0},{"x":1568543460000,"y":0},{"x":1568543520000,"y":0},{"x":1568543580000,"y":0},{"x":1568543640000,"y":0},{"x":1568543700000,"y":0.03},{"x":1568543760000,"y":0},{"x":1568543820000,"y":0},{"x":1568543880000,"y":0},{"x":1568543940000,"y":0},{"x":1568544000000,"y":0},{"x":1568544060000,"y":0},{"x":1568544120000,"y":0},{"x":1568544180000,"y":0.01},{"x":1568544240000,"y":0},{"x":1568544300000,"y":0},{"x":1568544360000,"y":0},{"x":1568544420000,"y":0},{"x":1568544480000,"y":0},{"x":1568544540000,"y":0},{"x":1568544600000,"y":0},{"x":1568544660000,"y":0},{"x":1568544720000,"y":0},{"x":1568544780000,"y":0},{"x":1568544840000,"y":0},{"x":1568544900000,"y":0},{"x":1568544960000,"y":0},{"x":1568545020000,"y":0},{"x":1568545080000,"y":0},{"x":1568545140000,"y":0},{"x":1568545200000,"y":0},{"x":1568545260000,"y":0},{"x":1568545320000,"y":0},{"x":1568545380000,"y":0},{"x":1568545440000,"y":0.01},{"x":1568545500000,"y":0},{"x":1568545560000,"y":0},{"x":1568545620000,"y":0},{"x":1568545680000,"y":0},{"x":1568545740000,"y":0},{"x":1568545800000,"y":0},{"x":1568545860000,"y":0},{"x":1568545920000,"y":0},{"x":1568545980000,"y":0},{"x":1568546040000,"y":0},{"x":1568546100000,"y":0},{"x":1568546160000,"y":0},{"x":1568546220000,"y":0},{"x":1568546280000,"y":0},{"x":1568546340000,"y":0.01},{"x":1568546400000,"y":0},{"x":1568546460000,"y":0},{"x":1568546520000,"y":0},{"x":1568546580000,"y":0},{"x":1568546640000,"y":0},{"x":1568546700000,"y":0},{"x":1568546760000,"y":0},{"x":1568546820000,"y":0},{"x":1568546880000,"y":0},{"x":1568546940000,"y":0},{"x":1568547000000,"y":0},{"x":1568547060000,"y":0},{"x":1568547120000,"y":0},{"x":1568547180000,"y":0},{"x":1568547240000,"y":0},{"x":1568547300000,"y":0},{"x":1568547360000,"y":0},{"x":1568547420000,"y":0},{"x":1568547480000,"y":0},{"x":1568547540000,"y":0},{"x":1568547600000,"y":0},{"x":1568547660000,"y":0},{"x":1568547720000,"y":0},{"x":1568547780000,"y":0.01},{"x":1568547840000,"y":0},{"x":1568547900000,"y":0},{"x":1568547960000,"y":0},{"x":1568548020000,"y":0},{"x":1568548080000,"y":0},{"x":1568548140000,"y":0},{"x":1568548200000,"y":0},{"x":1568548260000,"y":0},{"x":1568548320000,"y":0},{"x":1568548380000,"y":0},{"x":1568548440000,"y":0},{"x":1568548500000,"y":0},{"x":1568548560000,"y":0},{"x":1568548620000,"y":0},{"x":1568548680000,"y":0},{"x":1568548740000,"y":0},{"x":1568548800000,"y":0},{"x":1568548860000,"y":0},{"x":1568548920000,"y":0},{"x":1568548980000,"y":0},{"x":1568549040000,"y":0},{"x":1568549100000,"y":0},{"x":1568549160000,"y":0},{"x":1568549220000,"y":0},{"x":1568549280000,"y":0},{"x":1568549340000,"y":0},{"x":1568549400000,"y":0},{"x":1568549460000,"y":0},{"x":1568549520000,"y":0},{"x":1568549580000,"y":0},{"x":1568549640000,"y":0},{"x":1568549700000,"y":0},{"x":1568549760000,"y":0},{"x":1568549820000,"y":0},{"x":1568549880000,"y":0},{"x":1568549940000,"y":0},{"x":1568550000000,"y":0},{"x":1568550060000,"y":0},{"x":1568550120000,"y":0},{"x":1568550180000,"y":0},{"x":1568550240000,"y":0},{"x":1568550300000,"y":0},{"x":1568550360000,"y":0},{"x":1568550420000,"y":0},{"x":1568550480000,"y":0},{"x":1568550540000,"y":0},{"x":1568550600000,"y":0},{"x":1568550660000,"y":0},{"x":1568550720000,"y":0},{"x":1568550780000,"y":0},{"x":1568550840000,"y":0},{"x":1568550900000,"y":0},{"x":1568550960000,"y":0},{"x":1568551020000,"y":0},{"x":1568551080000,"y":0},{"x":1568551140000,"y":0},{"x":1568551200000,"y":0},{"x":1568551260000,"y":0},{"x":1568551320000,"y":0},{"x":1568551380000,"y":0.01},{"x":1568551440000,"y":0},{"x":1568551500000,"y":0},{"x":1568551560000,"y":0},{"x":1568551620000,"y":0},{"x":1568551680000,"y":0},{"x":1568551740000,"y":0},{"x":1568551800000,"y":0},{"x":1568551860000,"y":0},{"x":1568551920000,"y":0},{"x":1568551980000,"y":0},{"x":1568552040000,"y":0},{"x":1568552100000,"y":0},{"x":1568552160000,"y":0.01},{"x":1568552220000,"y":0},{"x":1568552280000,"y":0},{"x":1568552340000,"y":0},{"x":1568552400000,"y":0},{"x":1568552460000,"y":0},{"x":1568552520000,"y":0},{"x":1568552580000,"y":0},{"x":1568552640000,"y":0},{"x":1568552700000,"y":0},{"x":1568552760000,"y":0},{"x":1568552820000,"y":0},{"x":1568552880000,"y":0},{"x":1568552940000,"y":0},{"x":1568553000000,"y":0},{"x":1568553060000,"y":0},{"x":1568553120000,"y":0},{"x":1568553180000,"y":0},{"x":1568553240000,"y":0},{"x":1568553300000,"y":0},{"x":1568553360000,"y":0},{"x":1568553420000,"y":0},{"x":1568553480000,"y":0},{"x":1568553540000,"y":0},{"x":1568553600000,"y":0},{"x":1568553660000,"y":0},{"x":1568553720000,"y":0},{"x":1568553780000,"y":0},{"x":1568553840000,"y":0},{"x":1568553900000,"y":0},{"x":1568553960000,"y":0},{"x":1568554020000,"y":0},{"x":1568554080000,"y":0},{"x":1568554140000,"y":0},{"x":1568554200000,"y":0},{"x":1568554260000,"y":0},{"x":1568554320000,"y":0},{"x":1568554380000,"y":0},{"x":1568554440000,"y":0},{"x":1568554500000,"y":0},{"x":1568554560000,"y":0},{"x":1568554620000,"y":0},{"x":1568554680000,"y":0},{"x":1568554740000,"y":0},{"x":1568554800000,"y":0},{"x":1568554860000,"y":0},{"x":1568554920000,"y":0},{"x":1568554980000,"y":0.01},{"x":1568555040000,"y":0},{"x":1568555100000,"y":0},{"x":1568555160000,"y":0},{"x":1568555220000,"y":0},{"x":1568555280000,"y":0},{"x":1568555340000,"y":0},{"x":1568555400000,"y":0},{"x":1568555460000,"y":0},{"x":1568555520000,"y":0},{"x":1568555580000,"y":0},{"x":1568555640000,"y":0},{"x":1568555700000,"y":0},{"x":1568555760000,"y":0},{"x":1568555820000,"y":0},{"x":1568555880000,"y":0},{"x":1568555940000,"y":0},{"x":1568556000000,"y":0},{"x":1568556060000,"y":0},{"x":1568556120000,"y":0},{"x":1568556180000,"y":0},{"x":1568556240000,"y":0},{"x":1568556300000,"y":0},{"x":1568556360000,"y":0},{"x":1568556420000,"y":0},{"x":1568556480000,"y":0},{"x":1568556540000,"y":0.07},{"x":1568556600000,"y":0},{"x":1568556660000,"y":0},{"x":1568556720000,"y":0},{"x":1568556780000,"y":0},{"x":1568556840000,"y":0},{"x":1568556900000,"y":0},{"x":1568556960000,"y":0},{"x":1568557020000,"y":0.01},{"x":1568557080000,"y":0.01},{"x":1568557140000,"y":0},{"x":1568557200000,"y":0},{"x":1568557260000,"y":0},{"x":1568557320000,"y":0},{"x":1568557380000,"y":0},{"x":1568557440000,"y":0},{"x":1568557500000,"y":0},{"x":1568557560000,"y":0},{"x":1568557620000,"y":0},{"x":1568557680000,"y":0},{"x":1568557740000,"y":0},{"x":1568557800000,"y":0},{"x":1568557860000,"y":0},{"x":1568557920000,"y":0},{"x":1568557980000,"y":0},{"x":1568558040000,"y":0},{"x":1568558100000,"y":0},{"x":1568558160000,"y":0},{"x":1568558220000,"y":0},{"x":1568558280000,"y":0},{"x":1568558340000,"y":0},{"x":1568558400000,"y":0},{"x":1568558460000,"y":0},{"x":1568558520000,"y":0},{"x":1568558580000,"y":0.01},{"x":1568558640000,"y":0},{"x":1568558700000,"y":0},{"x":1568558760000,"y":0},{"x":1568558820000,"y":0},{"x":1568558880000,"y":0},{"x":1568558940000,"y":0},{"x":1568559000000,"y":0},{"x":1568559060000,"y":0},{"x":1568559120000,"y":0},{"x":1568559180000,"y":0},{"x":1568559240000,"y":0},{"x":1568559300000,"y":0},{"x":1568559360000,"y":0},{"x":1568559420000,"y":0},{"x":1568559480000,"y":0},{"x":1568559540000,"y":0.01},{"x":1568559600000,"y":0},{"x":1568559660000,"y":0},{"x":1568559720000,"y":0},{"x":1568559780000,"y":0},{"x":1568559840000,"y":0},{"x":1568559900000,"y":0},{"x":1568559960000,"y":0},{"x":1568560020000,"y":0},{"x":1568560080000,"y":0},{"x":1568560140000,"y":0},{"x":1568560200000,"y":0},{"x":1568560260000,"y":0},{"x":1568560320000,"y":0},{"x":1568560380000,"y":0},{"x":1568560440000,"y":0},{"x":1568560500000,"y":0},{"x":1568560560000,"y":0},{"x":1568560620000,"y":0},{"x":1568560680000,"y":0},{"x":1568560740000,"y":0},{"x":1568560800000,"y":0},{"x":1568560860000,"y":0},{"x":1568560920000,"y":0},{"x":1568560980000,"y":0},{"x":1568561040000,"y":0},{"x":1568561100000,"y":0},{"x":1568561160000,"y":0},{"x":1568561220000,"y":0},{"x":1568561280000,"y":0},{"x":1568561340000,"y":0},{"x":1568561400000,"y":0},{"x":1568561460000,"y":0},{"x":1568561520000,"y":0},{"x":1568561580000,"y":0},{"x":1568561640000,"y":0},{"x":1568561700000,"y":0},{"x":1568561760000,"y":0},{"x":1568561820000,"y":0},{"x":1568561880000,"y":0},{"x":1568561940000,"y":0},{"x":1568562000000,"y":0},{"x":1568562060000,"y":0},{"x":1568562120000,"y":0},{"x":1568562180000,"y":0.01},{"x":1568562240000,"y":0},{"x":1568562300000,"y":0},{"x":1568562360000,"y":0},{"x":1568562420000,"y":0},{"x":1568562480000,"y":0},{"x":1568562540000,"y":0},{"x":1568562600000,"y":0},{"x":1568562660000,"y":0},{"x":1568562720000,"y":0},{"x":1568562780000,"y":0},{"x":1568562840000,"y":0},{"x":1568562900000,"y":0},{"x":1568562960000,"y":0},{"x":1568563020000,"y":0},{"x":1568563080000,"y":0},{"x":1568563140000,"y":0},{"x":1568563200000,"y":0},{"x":1568563260000,"y":0},{"x":1568563320000,"y":0},{"x":1568563380000,"y":0},{"x":1568563440000,"y":0},{"x":1568563500000,"y":0},{"x":1568563560000,"y":0},{"x":1568563620000,"y":0},{"x":1568563680000,"y":0},{"x":1568563740000,"y":0},{"x":1568563800000,"y":0},{"x":1568563860000,"y":0},{"x":1568563920000,"y":0},{"x":1568563980000,"y":0},{"x":1568564040000,"y":0},{"x":1568564100000,"y":0},{"x":1568564160000,"y":0},{"x":1568564220000,"y":0},{"x":1568564280000,"y":0},{"x":1568564340000,"y":0},{"x":1568564400000,"y":0},{"x":1568564460000,"y":0},{"x":1568564520000,"y":0},{"x":1568564580000,"y":0},{"x":1568564640000,"y":0},{"x":1568564700000,"y":0},{"x":1568564760000,"y":0},{"x":1568564820000,"y":0},{"x":1568564880000,"y":0},{"x":1568564940000,"y":0},{"x":1568565000000,"y":0},{"x":1568565060000,"y":0},{"x":1568565120000,"y":0},{"x":1568565180000,"y":0},{"x":1568565240000,"y":0},{"x":1568565300000,"y":0},{"x":1568565360000,"y":0},{"x":1568565420000,"y":0},{"x":1568565480000,"y":0},{"x":1568565540000,"y":0},{"x":1568565600000,"y":0},{"x":1568565660000,"y":0},{"x":1568565720000,"y":0},{"x":1568565780000,"y":0},{"x":1568565840000,"y":0},{"x":1568565900000,"y":0},{"x":1568565960000,"y":0},{"x":1568566020000,"y":0},{"x":1568566080000,"y":0},{"x":1568566140000,"y":0},{"x":1568566200000,"y":0},{"x":1568566260000,"y":0},{"x":1568566320000,"y":0},{"x":1568566380000,"y":0},{"x":1568566440000,"y":0},{"x":1568566500000,"y":0},{"x":1568566560000,"y":0},{"x":1568566620000,"y":0},{"x":1568566680000,"y":0},{"x":1568566740000,"y":0},{"x":1568566800000,"y":0},{"x":1568566860000,"y":0},{"x":1568566920000,"y":0},{"x":1568566980000,"y":0},{"x":1568567040000,"y":0},{"x":1568567100000,"y":0},{"x":1568567160000,"y":0},{"x":1568567220000,"y":0},{"x":1568567280000,"y":0},{"x":1568567340000,"y":0},{"x":1568567400000,"y":0},{"x":1568567460000,"y":0},{"x":1568567520000,"y":0},{"x":1568567580000,"y":0},{"x":1568567640000,"y":0},{"x":1568567700000,"y":0},{"x":1568567760000,"y":0},{"x":1568567820000,"y":0},{"x":1568567880000,"y":0},{"x":1568567940000,"y":0},{"x":1568568000000,"y":0},{"x":1568568060000,"y":0},{"x":1568568120000,"y":0},{"x":1568568180000,"y":0},{"x":1568568240000,"y":0},{"x":1568568300000,"y":0},{"x":1568568360000,"y":0},{"x":1568568420000,"y":0},{"x":1568568480000,"y":0},{"x":1568568540000,"y":0},{"x":1568568600000,"y":0},{"x":1568568660000,"y":0},{"x":1568568720000,"y":0},{"x":1568568780000,"y":0},{"x":1568568840000,"y":0},{"x":1568568900000,"y":0},{"x":1568568960000,"y":0},{"x":1568569020000,"y":0},{"x":1568569080000,"y":0},{"x":1568569140000,"y":0},{"x":1568569200000,"y":0},{"x":1568569260000,"y":0},{"x":1568569320000,"y":0},{"x":1568569380000,"y":0},{"x":1568569440000,"y":0},{"x":1568569500000,"y":0},{"x":1568569560000,"y":0},{"x":1568569620000,"y":0},{"x":1568569680000,"y":0},{"x":1568569740000,"y":0},{"x":1568569800000,"y":0},{"x":1568569860000,"y":0},{"x":1568569920000,"y":0},{"x":1568569980000,"y":0},{"x":1568570040000,"y":0},{"x":1568570100000,"y":0},{"x":1568570160000,"y":0},{"x":1568570220000,"y":0},{"x":1568570280000,"y":0},{"x":1568570340000,"y":0},{"x":1568570400000,"y":0},{"x":1568570460000,"y":0},{"x":1568570520000,"y":0},{"x":1568570580000,"y":0},{"x":1568570640000,"y":0},{"x":1568570700000,"y":0},{"x":1568570760000,"y":0},{"x":1568570820000,"y":0},{"x":1568570880000,"y":0},{"x":1568570940000,"y":0},{"x":1568571000000,"y":0},{"x":1568571060000,"y":0},{"x":1568571120000,"y":0},{"x":1568571180000,"y":0.01},{"x":1568571240000,"y":0},{"x":1568571300000,"y":0},{"x":1568571360000,"y":0},{"x":1568571420000,"y":0},{"x":1568571480000,"y":0},{"x":1568571540000,"y":0},{"x":1568571600000,"y":0},{"x":1568571660000,"y":0},{"x":1568571720000,"y":0},{"x":1568571780000,"y":0},{"x":1568571840000,"y":0},{"x":1568571900000,"y":0},{"x":1568571960000,"y":0},{"x":1568572020000,"y":0},{"x":1568572080000,"y":0},{"x":1568572140000,"y":0},{"x":1568572200000,"y":0},{"x":1568572260000,"y":0},{"x":1568572320000,"y":0},{"x":1568572380000,"y":0},{"x":1568572440000,"y":0},{"x":1568572500000,"y":0},{"x":1568572560000,"y":0},{"x":1568572620000,"y":0},{"x":1568572680000,"y":0},{"x":1568572740000,"y":0},{"x":1568572800000,"y":0},{"x":1568572860000,"y":0},{"x":1568572920000,"y":0},{"x":1568572980000,"y":0},{"x":1568573040000,"y":0},{"x":1568573100000,"y":0},{"x":1568573160000,"y":0},{"x":1568573220000,"y":0},{"x":1568573280000,"y":0},{"x":1568573340000,"y":0},{"x":1568573400000,"y":0},{"x":1568573460000,"y":0},{"x":1568573520000,"y":0},{"x":1568573580000,"y":0},{"x":1568573640000,"y":0},{"x":1568573700000,"y":0},{"x":1568573760000,"y":0},{"x":1568573820000,"y":0},{"x":1568573880000,"y":0},{"x":1568573940000,"y":0},{"x":1568574000000,"y":0},{"x":1568574060000,"y":0},{"x":1568574120000,"y":0},{"x":1568574180000,"y":0},{"x":1568574240000,"y":0},{"x":1568574300000,"y":0},{"x":1568574360000,"y":0},{"x":1568574420000,"y":0},{"x":1568574480000,"y":0},{"x":1568574540000,"y":0},{"x":1568574600000,"y":0},{"x":1568574660000,"y":0},{"x":1568574720000,"y":0.01},{"x":1568574780000,"y":0},{"x":1568574840000,"y":0},{"x":1568574900000,"y":0},{"x":1568574960000,"y":0},{"x":1568575020000,"y":0},{"x":1568575080000,"y":0},{"x":1568575140000,"y":0},{"x":1568575200000,"y":0},{"x":1568575260000,"y":0},{"x":1568575320000,"y":0},{"x":1568575380000,"y":0},{"x":1568575440000,"y":0},{"x":1568575500000,"y":0},{"x":1568575560000,"y":0},{"x":1568575620000,"y":0},{"x":1568575680000,"y":0},{"x":1568575740000,"y":0},{"x":1568575800000,"y":0},{"x":1568575860000,"y":0},{"x":1568575920000,"y":0},{"x":1568575980000,"y":0},{"x":1568576040000,"y":0},{"x":1568576100000,"y":0},{"x":1568576160000,"y":0},{"x":1568576220000,"y":0},{"x":1568576280000,"y":0},{"x":1568576340000,"y":0},{"x":1568576400000,"y":0},{"x":1568576460000,"y":0},{"x":1568576520000,"y":0},{"x":1568576580000,"y":0},{"x":1568576640000,"y":0},{"x":1568576700000,"y":0},{"x":1568576760000,"y":0},{"x":1568576820000,"y":0},{"x":1568576880000,"y":0},{"x":1568576940000,"y":0},{"x":1568577000000,"y":0},{"x":1568577060000,"y":0},{"x":1568577120000,"y":0},{"x":1568577180000,"y":0},{"x":1568577240000,"y":0},{"x":1568577300000,"y":0},{"x":1568577360000,"y":0},{"x":1568577420000,"y":0},{"x":1568577480000,"y":0},{"x":1568577540000,"y":0},{"x":1568577600000,"y":0},{"x":1568577660000,"y":0},{"x":1568577720000,"y":0},{"x":1568577780000,"y":0},{"x":1568577840000,"y":0},{"x":1568577900000,"y":0},{"x":1568577960000,"y":0},{"x":1568578020000,"y":0},{"x":1568578080000,"y":0},{"x":1568578140000,"y":0},{"x":1568578200000,"y":0},{"x":1568578260000,"y":0},{"x":1568578320000,"y":0},{"x":1568578380000,"y":0},{"x":1568578440000,"y":0},{"x":1568578500000,"y":0},{"x":1568578560000,"y":0},{"x":1568578620000,"y":0},{"x":1568578680000,"y":0},{"x":1568578740000,"y":0},{"x":1568578800000,"y":0},{"x":1568578860000,"y":0},{"x":1568578920000,"y":0},{"x":1568578980000,"y":0},{"x":1568579040000,"y":0},{"x":1568579100000,"y":0},{"x":1568579160000,"y":0},{"x":1568579220000,"y":0},{"x":1568579280000,"y":0},{"x":1568579340000,"y":0},{"x":1568579400000,"y":0},{"x":1568579460000,"y":0},{"x":1568579520000,"y":0},{"x":1568579580000,"y":0},{"x":1568579640000,"y":0},{"x":1568579700000,"y":0},{"x":1568579760000,"y":0},{"x":1568579820000,"y":3.94},{"x":1568579880000,"y":0.04},{"x":1568579940000,"y":0},{"x":1568580000000,"y":0},{"x":1568580060000,"y":0},{"x":1568580120000,"y":0},{"x":1568580180000,"y":0},{"x":1568580240000,"y":0},{"x":1568580300000,"y":0},{"x":1568580360000,"y":0},{"x":1568580420000,"y":0},{"x":1568580480000,"y":0},{"x":1568580540000,"y":0},{"x":1568580600000,"y":0},{"x":1568580660000,"y":0},{"x":1568580720000,"y":0},{"x":1568580780000,"y":0},{"x":1568580840000,"y":0},{"x":1568580900000,"y":0},{"x":1568580960000,"y":0},{"x":1568581020000,"y":0},{"x":1568581080000,"y":0},{"x":1568581140000,"y":0},{"x":1568581200000,"y":0},{"x":1568581260000,"y":0},{"x":1568581320000,"y":0},{"x":1568581380000,"y":0},{"x":1568581440000,"y":0.01},{"x":1568581500000,"y":0},{"x":1568581560000,"y":0},{"x":1568581620000,"y":0},{"x":1568581680000,"y":0},{"x":1568581740000,"y":0},{"x":1568581800000,"y":0},{"x":1568581860000,"y":0},{"x":1568581920000,"y":0},{"x":1568581980000,"y":0},{"x":1568582040000,"y":0},{"x":1568582100000,"y":0},{"x":1568582160000,"y":0},{"x":1568582220000,"y":0},{"x":1568582280000,"y":0},{"x":1568582340000,"y":0},{"x":1568582400000,"y":0},{"x":1568582460000,"y":0},{"x":1568582520000,"y":0},{"x":1568582580000,"y":0},{"x":1568582640000,"y":0},{"x":1568582700000,"y":0.04},{"x":1568582760000,"y":0},{"x":1568582820000,"y":0},{"x":1568582880000,"y":0},{"x":1568582940000,"y":0},{"x":1568583000000,"y":0},{"x":1568583060000,"y":0},{"x":1568583120000,"y":0.04},{"x":1568583180000,"y":0},{"x":1568583240000,"y":0},{"x":1568583300000,"y":0},{"x":1568583360000,"y":0},{"x":1568583420000,"y":0},{"x":1568583480000,"y":0},{"x":1568583540000,"y":0},{"x":1568583600000,"y":0},{"x":1568583660000,"y":0},{"x":1568583720000,"y":0},{"x":1568583780000,"y":0},{"x":1568583840000,"y":0},{"x":1568583900000,"y":0},{"x":1568583960000,"y":0},{"x":1568584020000,"y":0},{"x":1568584080000,"y":0},{"x":1568584140000,"y":0},{"x":1568584200000,"y":0},{"x":1568584260000,"y":0},{"x":1568584320000,"y":0},{"x":1568584380000,"y":0},{"x":1568584440000,"y":0},{"x":1568584500000,"y":0},{"x":1568584560000,"y":0},{"x":1568584620000,"y":0},{"x":1568584680000,"y":0},{"x":1568584740000,"y":0},{"x":1568584800000,"y":0},{"x":1568584860000,"y":0.01},{"x":1568584920000,"y":0},{"x":1568584980000,"y":0},{"x":1568585040000,"y":0},{"x":1568585100000,"y":0},{"x":1568585160000,"y":0},{"x":1568585220000,"y":0},{"x":1568585280000,"y":0},{"x":1568585340000,"y":0},{"x":1568585400000,"y":0},{"x":1568585460000,"y":0},{"x":1568585520000,"y":0},{"x":1568585580000,"y":0},{"x":1568585640000,"y":0},{"x":1568585700000,"y":0},{"x":1568585760000,"y":0},{"x":1568585820000,"y":0},{"x":1568585880000,"y":0},{"x":1568585940000,"y":0.01},{"x":1568586000000,"y":0},{"x":1568586060000,"y":0},{"x":1568586120000,"y":0},{"x":1568586180000,"y":0},{"x":1568586240000,"y":0},{"x":1568586300000,"y":0.02},{"x":1568586360000,"y":0},{"x":1568586420000,"y":0.07},{"x":1568586480000,"y":0},{"x":1568586540000,"y":0},{"x":1568586600000,"y":0},{"x":1568586660000,"y":0},{"x":1568586720000,"y":0},{"x":1568586780000,"y":0},{"x":1568586840000,"y":0},{"x":1568586900000,"y":0},{"x":1568586960000,"y":0},{"x":1568587020000,"y":0},{"x":1568587080000,"y":0},{"x":1568587140000,"y":0},{"x":1568587200000,"y":0},{"x":1568587260000,"y":0},{"x":1568587320000,"y":0},{"x":1568587380000,"y":0},{"x":1568587440000,"y":0},{"x":1568587500000,"y":0},{"x":1568587560000,"y":0},{"x":1568587620000,"y":0},{"x":1568587680000,"y":0},{"x":1568587740000,"y":0},{"x":1568587800000,"y":0},{"x":1568587860000,"y":0},{"x":1568587920000,"y":0},{"x":1568587980000,"y":0},{"x":1568588040000,"y":0},{"x":1568588100000,"y":0},{"x":1568588160000,"y":0.01},{"x":1568588220000,"y":0},{"x":1568588280000,"y":0},{"x":1568588340000,"y":0},{"x":1568588400000,"y":0},{"x":1568588460000,"y":0},{"x":1568588520000,"y":0},{"x":1568588580000,"y":0},{"x":1568588640000,"y":0},{"x":1568588700000,"y":0},{"x":1568588760000,"y":0},{"x":1568588820000,"y":0},{"x":1568588880000,"y":0},{"x":1568588940000,"y":0},{"x":1568589000000,"y":0},{"x":1568589060000,"y":0},{"x":1568589120000,"y":0},{"x":1568589180000,"y":0},{"x":1568589240000,"y":0},{"x":1568589300000,"y":0},{"x":1568589360000,"y":0},{"x":1568589420000,"y":0},{"x":1568589480000,"y":0},{"x":1568589540000,"y":0},{"x":1568589600000,"y":0},{"x":1568589660000,"y":0},{"x":1568589720000,"y":0},{"x":1568589780000,"y":0},{"x":1568589840000,"y":0},{"x":1568589900000,"y":0},{"x":1568589960000,"y":0},{"x":1568590020000,"y":0},{"x":1568590080000,"y":0},{"x":1568590140000,"y":0},{"x":1568590200000,"y":0},{"x":1568590260000,"y":0},{"x":1568590320000,"y":0},{"x":1568590380000,"y":0},{"x":1568590440000,"y":0},{"x":1568590500000,"y":0},{"x":1568590560000,"y":0},{"x":1568590620000,"y":0},{"x":1568590680000,"y":0},{"x":1568590740000,"y":0},{"x":1568590800000,"y":0},{"x":1568590860000,"y":0},{"x":1568590920000,"y":0},{"x":1568590980000,"y":0},{"x":1568591040000,"y":0},{"x":1568591100000,"y":0.03},{"x":1568591160000,"y":0.14},{"x":1568591220000,"y":0.01},{"x":1568591280000,"y":0},{"x":1568591340000,"y":0},{"x":1568591400000,"y":0},{"x":1568591460000,"y":0},{"x":1568591520000,"y":0},{"x":1568591580000,"y":0},{"x":1568591640000,"y":0},{"x":1568591700000,"y":0},{"x":1568591760000,"y":0},{"x":1568591820000,"y":0},{"x":1568591880000,"y":0},{"x":1568591940000,"y":0},{"x":1568592000000,"y":0},{"x":1568592060000,"y":0},{"x":1568592120000,"y":0},{"x":1568592180000,"y":2.72},{"x":1568592240000,"y":0.01},{"x":1568592300000,"y":0},{"x":1568592360000,"y":0},{"x":1568592420000,"y":0},{"x":1568592480000,"y":0},{"x":1568592540000,"y":0},{"x":1568592600000,"y":0},{"x":1568592660000,"y":0},{"x":1568592720000,"y":0},{"x":1568592780000,"y":0},{"x":1568592840000,"y":0},{"x":1568592900000,"y":0},{"x":1568592960000,"y":0},{"x":1568593020000,"y":0},{"x":1568593080000,"y":0},{"x":1568593140000,"y":0},{"x":1568593200000,"y":0},{"x":1568593260000,"y":0},{"x":1568593320000,"y":0},{"x":1568593380000,"y":0},{"x":1568593440000,"y":0},{"x":1568593500000,"y":0},{"x":1568593560000,"y":0},{"x":1568593620000,"y":0},{"x":1568593680000,"y":0},{"x":1568593740000,"y":0},{"x":1568593800000,"y":0},{"x":1568593860000,"y":0},{"x":1568593920000,"y":0},{"x":1568593980000,"y":0},{"x":1568594040000,"y":0},{"x":1568594100000,"y":0},{"x":1568594160000,"y":0},{"x":1568594220000,"y":0},{"x":1568594280000,"y":0},{"x":1568594340000,"y":0},{"x":1568594400000,"y":0},{"x":1568594460000,"y":0},{"x":1568594520000,"y":0},{"x":1568594580000,"y":0},{"x":1568594640000,"y":0},{"x":1568594700000,"y":0},{"x":1568594760000,"y":0},{"x":1568594820000,"y":0},{"x":1568594880000,"y":0},{"x":1568594940000,"y":0},{"x":1568595000000,"y":0},{"x":1568595060000,"y":0},{"x":1568595120000,"y":0},{"x":1568595180000,"y":0},{"x":1568595240000,"y":0},{"x":1568595300000,"y":0},{"x":1568595360000,"y":0},{"x":1568595420000,"y":0},{"x":1568595480000,"y":0},{"x":1568595540000,"y":0},{"x":1568595600000,"y":0},{"x":1568595660000,"y":0},{"x":1568595720000,"y":0},{"x":1568595780000,"y":0},{"x":1568595840000,"y":0},{"x":1568595900000,"y":0},{"x":1568595960000,"y":0},{"x":1568596020000,"y":0},{"x":1568596080000,"y":0},{"x":1568596140000,"y":0},{"x":1568596200000,"y":0},{"x":1568596260000,"y":0},{"x":1568596320000,"y":0},{"x":1568596380000,"y":0},{"x":1568596440000,"y":0},{"x":1568596500000,"y":0},{"x":1568596560000,"y":0},{"x":1568596620000,"y":0},{"x":1568596680000,"y":0},{"x":1568596740000,"y":0},{"x":1568596800000,"y":0},{"x":1568596860000,"y":0},{"x":1568596920000,"y":0},{"x":1568596980000,"y":0},{"x":1568597040000,"y":0},{"x":1568597100000,"y":0},{"x":1568597160000,"y":0},{"x":1568597220000,"y":0},{"x":1568597280000,"y":0},{"x":1568597340000,"y":0},{"x":1568597400000,"y":0},{"x":1568597460000,"y":0},{"x":1568597520000,"y":0},{"x":1568597580000,"y":0},{"x":1568597640000,"y":0},{"x":1568597700000,"y":0},{"x":1568597760000,"y":0},{"x":1568597820000,"y":0},{"x":1568597880000,"y":0},{"x":1568597940000,"y":0},{"x":1568598000000,"y":0},{"x":1568598060000,"y":0},{"x":1568598120000,"y":0.76},{"x":1568598180000,"y":0.05},{"x":1568598240000,"y":0},{"x":1568598300000,"y":0},{"x":1568598360000,"y":0},{"x":1568598420000,"y":0},{"x":1568598480000,"y":0},{"x":1568598540000,"y":0},{"x":1568598600000,"y":0},{"x":1568598660000,"y":0},{"x":1568598720000,"y":0},{"x":1568598780000,"y":0},{"x":1568598840000,"y":0},{"x":1568598900000,"y":0},{"x":1568598960000,"y":0},{"x":1568599020000,"y":0},{"x":1568599080000,"y":0},{"x":1568599140000,"y":0},{"x":1568599200000,"y":0},{"x":1568599260000,"y":0},{"x":1568599320000,"y":0},{"x":1568599380000,"y":0},{"x":1568599440000,"y":0},{"x":1568599500000,"y":0},{"x":1568599560000,"y":0},{"x":1568599620000,"y":0},{"x":1568599680000,"y":0},{"x":1568599740000,"y":0},{"x":1568599800000,"y":0},{"x":1568599860000,"y":0},{"x":1568599920000,"y":0},{"x":1568599980000,"y":0},{"x":1568600040000,"y":0},{"x":1568600100000,"y":0},{"x":1568600160000,"y":0},{"x":1568600220000,"y":0},{"x":1568600280000,"y":0},{"x":1568600340000,"y":0},{"x":1568600400000,"y":0},{"x":1568600460000,"y":0},{"x":1568600520000,"y":0},{"x":1568600580000,"y":0},{"x":1568600640000,"y":0},{"x":1568600700000,"y":0},{"x":1568600760000,"y":0},{"x":1568600820000,"y":0},{"x":1568600880000,"y":0},{"x":1568600940000,"y":0},{"x":1568601000000,"y":0},{"x":1568601060000,"y":0},{"x":1568601120000,"y":0},{"x":1568601180000,"y":0},{"x":1568601240000,"y":0},{"x":1568601300000,"y":0},{"x":1568601360000,"y":0},{"x":1568601420000,"y":0},{"x":1568601480000,"y":0},{"x":1568601540000,"y":0},{"x":1568601600000,"y":0},{"x":1568601660000,"y":0},{"x":1568601720000,"y":0},{"x":1568601780000,"y":0},{"x":1568601840000,"y":0},{"x":1568601900000,"y":0},{"x":1568601960000,"y":0},{"x":1568602020000,"y":0},{"x":1568602080000,"y":0},{"x":1568602140000,"y":0},{"x":1568602200000,"y":0},{"x":1568602260000,"y":0},{"x":1568602320000,"y":0},{"x":1568602380000,"y":0},{"x":1568602440000,"y":0},{"x":1568602500000,"y":0.02},{"x":1568602560000,"y":0},{"x":1568602620000,"y":0},{"x":1568602680000,"y":0},{"x":1568602740000,"y":0},{"x":1568602800000,"y":0},{"x":1568602860000,"y":0},{"x":1568602920000,"y":0},{"x":1568602980000,"y":0},{"x":1568603040000,"y":0},{"x":1568603100000,"y":0},{"x":1568603160000,"y":0},{"x":1568603220000,"y":0},{"x":1568603280000,"y":0},{"x":1568603340000,"y":0.01},{"x":1568603400000,"y":0},{"x":1568603460000,"y":0},{"x":1568603520000,"y":0},{"x":1568603580000,"y":0},{"x":1568603640000,"y":0},{"x":1568603700000,"y":0},{"x":1568603760000,"y":0},{"x":1568603820000,"y":0},{"x":1568603880000,"y":0},{"x":1568603940000,"y":0},{"x":1568604000000,"y":0},{"x":1568604060000,"y":0},{"x":1568604120000,"y":0},{"x":1568604180000,"y":0},{"x":1568604240000,"y":0},{"x":1568604300000,"y":0},{"x":1568604360000,"y":0},{"x":1568604420000,"y":0},{"x":1568604480000,"y":0},{"x":1568604540000,"y":0},{"x":1568604600000,"y":0},{"x":1568604660000,"y":0},{"x":1568604720000,"y":0},{"x":1568604780000,"y":0},{"x":1568604840000,"y":0},{"x":1568604900000,"y":0},{"x":1568604960000,"y":0},{"x":1568605020000,"y":0},{"x":1568605080000,"y":0},{"x":1568605140000,"y":0},{"x":1568605200000,"y":0},{"x":1568605260000,"y":0},{"x":1568605320000,"y":0},{"x":1568605380000,"y":0},{"x":1568605440000,"y":0},{"x":1568605500000,"y":0},{"x":1568605560000,"y":0},{"x":1568605620000,"y":0},{"x":1568605680000,"y":0},{"x":1568605740000,"y":0},{"x":1568605800000,"y":0},{"x":1568605860000,"y":0},{"x":1568605920000,"y":0},{"x":1568605980000,"y":0},{"x":1568606040000,"y":0},{"x":1568606100000,"y":0},{"x":1568606160000,"y":0},{"x":1568606220000,"y":0},{"x":1568606280000,"y":0},{"x":1568606340000,"y":0},{"x":1568606400000,"y":0},{"x":1568606460000,"y":0},{"x":1568606520000,"y":0},{"x":1568606580000,"y":0},{"x":1568606640000,"y":0},{"x":1568606700000,"y":0},{"x":1568606760000,"y":0},{"x":1568606820000,"y":0},{"x":1568606880000,"y":0},{"x":1568606940000,"y":0},{"x":1568607000000,"y":0},{"x":1568607060000,"y":0},{"x":1568607120000,"y":0},{"x":1568607180000,"y":0},{"x":1568607240000,"y":0},{"x":1568607300000,"y":0},{"x":1568607360000,"y":0},{"x":1568607420000,"y":0},{"x":1568607480000,"y":0},{"x":1568607540000,"y":0},{"x":1568607600000,"y":0},{"x":1568607660000,"y":0},{"x":1568607720000,"y":0},{"x":1568607780000,"y":0},{"x":1568607840000,"y":0},{"x":1568607900000,"y":0},{"x":1568607960000,"y":0},{"x":1568608020000,"y":0},{"x":1568608080000,"y":0},{"x":1568608140000,"y":0},{"x":1568608200000,"y":0},{"x":1568608260000,"y":0},{"x":1568608320000,"y":0},{"x":1568608380000,"y":0},{"x":1568608440000,"y":0},{"x":1568608500000,"y":0},{"x":1568608560000,"y":0},{"x":1568608620000,"y":0},{"x":1568608680000,"y":0},{"x":1568608740000,"y":0},{"x":1568608800000,"y":0},{"x":1568608860000,"y":0},{"x":1568608920000,"y":0},{"x":1568608980000,"y":0},{"x":1568609040000,"y":0},{"x":1568609100000,"y":0},{"x":1568609160000,"y":0},{"x":1568609220000,"y":0},{"x":1568609280000,"y":0},{"x":1568609340000,"y":0},{"x":1568609400000,"y":0},{"x":1568609460000,"y":0},{"x":1568609520000,"y":0},{"x":1568609580000,"y":0},{"x":1568609640000,"y":0},{"x":1568609700000,"y":0},{"x":1568609760000,"y":0},{"x":1568609820000,"y":0},{"x":1568609880000,"y":0},{"x":1568609940000,"y":0},{"x":1568610000000,"y":0},{"x":1568610060000,"y":0},{"x":1568610120000,"y":0},{"x":1568610180000,"y":0},{"x":1568610240000,"y":0},{"x":1568610300000,"y":0},{"x":1568610360000,"y":0},{"x":1568610420000,"y":0},{"x":1568610480000,"y":0},{"x":1568610540000,"y":0},{"x":1568610600000,"y":0},{"x":1568610660000,"y":0},{"x":1568610720000,"y":0},{"x":1568610780000,"y":0},{"x":1568610840000,"y":0},{"x":1568610900000,"y":0},{"x":1568610960000,"y":0},{"x":1568611020000,"y":0},{"x":1568611080000,"y":0},{"x":1568611140000,"y":0},{"x":1568611200000,"y":0.01},{"x":1568611260000,"y":0},{"x":1568611320000,"y":0},{"x":1568611380000,"y":0},{"x":1568611440000,"y":0},{"x":1568611500000,"y":0},{"x":1568611560000,"y":0},{"x":1568611620000,"y":0},{"x":1568611680000,"y":0},{"x":1568611740000,"y":0},{"x":1568611800000,"y":0},{"x":1568611860000,"y":0},{"x":1568611920000,"y":0},{"x":1568611980000,"y":0},{"x":1568612040000,"y":0},{"x":1568612100000,"y":0},{"x":1568612160000,"y":0},{"x":1568612220000,"y":0},{"x":1568612280000,"y":0},{"x":1568612340000,"y":0},{"x":1568612400000,"y":0},{"x":1568612460000,"y":0},{"x":1568612520000,"y":0},{"x":1568612580000,"y":0},{"x":1568612640000,"y":0},{"x":1568612700000,"y":0},{"x":1568612760000,"y":0},{"x":1568612820000,"y":0},{"x":1568612880000,"y":0},{"x":1568612940000,"y":0},{"x":1568613000000,"y":0},{"x":1568613060000,"y":0},{"x":1568613120000,"y":0},{"x":1568613180000,"y":0},{"x":1568613240000,"y":0},{"x":1568613300000,"y":0},{"x":1568613360000,"y":0},{"x":1568613420000,"y":0},{"x":1568613480000,"y":0},{"x":1568613540000,"y":0},{"x":1568613600000,"y":0},{"x":1568613660000,"y":0},{"x":1568613720000,"y":0},{"x":1568613780000,"y":0},{"x":1568613840000,"y":0},{"x":1568613900000,"y":0},{"x":1568613960000,"y":0},{"x":1568614020000,"y":0},{"x":1568614080000,"y":0},{"x":1568614140000,"y":0},{"x":1568614200000,"y":0},{"x":1568614260000,"y":0},{"x":1568614320000,"y":0},{"x":1568614380000,"y":0},{"x":1568614440000,"y":0},{"x":1568614500000,"y":0},{"x":1568614560000,"y":0},{"x":1568614620000,"y":0},{"x":1568614680000,"y":0},{"x":1568614740000,"y":0},{"x":1568614800000,"y":0},{"x":1568614860000,"y":0},{"x":1568614920000,"y":0},{"x":1568614980000,"y":0},{"x":1568615040000,"y":0},{"x":1568615100000,"y":0},{"x":1568615160000,"y":0},{"x":1568615220000,"y":0},{"x":1568615280000,"y":0},{"x":1568615340000,"y":0},{"x":1568615400000,"y":0},{"x":1568615460000,"y":0},{"x":1568615520000,"y":0},{"x":1568615580000,"y":0},{"x":1568615640000,"y":0},{"x":1568615700000,"y":0},{"x":1568615760000,"y":0},{"x":1568615820000,"y":0},{"x":1568615880000,"y":0},{"x":1568615940000,"y":0},{"x":1568616000000,"y":0},{"x":1568616060000,"y":0},{"x":1568616120000,"y":0},{"x":1568616180000,"y":0},{"x":1568616240000,"y":0},{"x":1568616300000,"y":0},{"x":1568616360000,"y":0},{"x":1568616420000,"y":0},{"x":1568616480000,"y":0},{"x":1568616540000,"y":0},{"x":1568616600000,"y":0},{"x":1568616660000,"y":0},{"x":1568616720000,"y":0},{"x":1568616780000,"y":0},{"x":1568616840000,"y":0},{"x":1568616900000,"y":0},{"x":1568616960000,"y":0},{"x":1568617020000,"y":0},{"x":1568617080000,"y":0},{"x":1568617140000,"y":0},{"x":1568617200000,"y":0},{"x":1568617260000,"y":0},{"x":1568617320000,"y":0},{"x":1568617380000,"y":0},{"x":1568617440000,"y":0},{"x":1568617500000,"y":0},{"x":1568617560000,"y":0},{"x":1568617620000,"y":0},{"x":1568617680000,"y":0},{"x":1568617740000,"y":0},{"x":1568617800000,"y":0},{"x":1568617860000,"y":0},{"x":1568617920000,"y":0},{"x":1568617980000,"y":0},{"x":1568618040000,"y":0},{"x":1568618100000,"y":0},{"x":1568618160000,"y":0},{"x":1568618220000,"y":0},{"x":1568618280000,"y":0},{"x":1568618340000,"y":0},{"x":1568618400000,"y":0},{"x":1568618460000,"y":0},{"x":1568618520000,"y":0},{"x":1568618580000,"y":0},{"x":1568618640000,"y":0},{"x":1568618700000,"y":0},{"x":1568618760000,"y":0},{"x":1568618820000,"y":0},{"x":1568618880000,"y":0},{"x":1568618940000,"y":0},{"x":1568619000000,"y":0},{"x":1568619060000,"y":0},{"x":1568619120000,"y":0},{"x":1568619180000,"y":0},{"x":1568619240000,"y":0},{"x":1568619300000,"y":0},{"x":1568619360000,"y":0},{"x":1568619420000,"y":0},{"x":1568619480000,"y":0},{"x":1568619540000,"y":0},{"x":1568619600000,"y":0},{"x":1568619660000,"y":0},{"x":1568619720000,"y":0},{"x":1568619780000,"y":0},{"x":1568619840000,"y":0},{"x":1568619900000,"y":0},{"x":1568619960000,"y":0},{"x":1568620020000,"y":0},{"x":1568620080000,"y":0},{"x":1568620140000,"y":0},{"x":1568620200000,"y":0},{"x":1568620260000,"y":0},{"x":1568620320000,"y":0},{"x":1568620380000,"y":0},{"x":1568620440000,"y":0},{"x":1568620500000,"y":0},{"x":1568620560000,"y":0},{"x":1568620620000,"y":0},{"x":1568620680000,"y":0},{"x":1568620740000,"y":0},{"x":1568620800000,"y":0},{"x":1568620860000,"y":0},{"x":1568620920000,"y":0},{"x":1568620980000,"y":0},{"x":1568621040000,"y":0},{"x":1568621100000,"y":0},{"x":1568621160000,"y":0},{"x":1568621220000,"y":0},{"x":1568621280000,"y":0},{"x":1568621340000,"y":0},{"x":1568621400000,"y":0},{"x":1568621460000,"y":0},{"x":1568621520000,"y":0},{"x":1568621580000,"y":0},{"x":1568621640000,"y":0},{"x":1568621700000,"y":0},{"x":1568621760000,"y":0},{"x":1568621820000,"y":0},{"x":1568621880000,"y":0},{"x":1568621940000,"y":0},{"x":1568622000000,"y":0},{"x":1568622060000,"y":0},{"x":1568622120000,"y":0},{"x":1568622180000,"y":0},{"x":1568622240000,"y":0},{"x":1568622300000,"y":0},{"x":1568622360000,"y":0},{"x":1568622420000,"y":0},{"x":1568622480000,"y":0},{"x":1568622540000,"y":0},{"x":1568622600000,"y":0},{"x":1568622660000,"y":0},{"x":1568622720000,"y":0},{"x":1568622780000,"y":0},{"x":1568622840000,"y":0},{"x":1568622900000,"y":0},{"x":1568622960000,"y":0},{"x":1568623020000,"y":0},{"x":1568623080000,"y":0},{"x":1568623140000,"y":0},{"x":1568623200000,"y":0},{"x":1568623260000,"y":0},{"x":1568623320000,"y":0},{"x":1568623380000,"y":0},{"x":1568623440000,"y":0},{"x":1568623500000,"y":0},{"x":1568623560000,"y":0},{"x":1568623620000,"y":0},{"x":1568623680000,"y":0},{"x":1568623740000,"y":0},{"x":1568623800000,"y":0},{"x":1568623860000,"y":0},{"x":1568623920000,"y":0},{"x":1568623980000,"y":0},{"x":1568624040000,"y":0},{"x":1568624100000,"y":0},{"x":1568624160000,"y":0},{"x":1568624220000,"y":0},{"x":1568624280000,"y":0},{"x":1568624340000,"y":0},{"x":1568624400000,"y":0},{"x":1568624460000,"y":0},{"x":1568624520000,"y":0},{"x":1568624580000,"y":0},{"x":1568624640000,"y":0},{"x":1568624700000,"y":0},{"x":1568624760000,"y":0},{"x":1568624820000,"y":0},{"x":1568624880000,"y":0},{"x":1568624940000,"y":0},{"x":1568625000000,"y":0},{"x":1568625060000,"y":0},{"x":1568625120000,"y":0},{"x":1568625180000,"y":0},{"x":1568625240000,"y":0.01},{"x":1568625300000,"y":0},{"x":1568625360000,"y":0},{"x":1568625420000,"y":0},{"x":1568625480000,"y":0},{"x":1568625540000,"y":0},{"x":1568625600000,"y":0},{"x":1568625660000,"y":0},{"x":1568625720000,"y":0},{"x":1568625780000,"y":0},{"x":1568625840000,"y":0},{"x":1568625900000,"y":0},{"x":1568625960000,"y":0},{"x":1568626020000,"y":0},{"x":1568626080000,"y":0},{"x":1568626140000,"y":0},{"x":1568626200000,"y":0},{"x":1568626260000,"y":0},{"x":1568626320000,"y":0},{"x":1568626380000,"y":0},{"x":1568626440000,"y":0},{"x":1568626500000,"y":0},{"x":1568626560000,"y":0},{"x":1568626620000,"y":0},{"x":1568626680000,"y":0},{"x":1568626740000,"y":0},{"x":1568626800000,"y":0},{"x":1568626860000,"y":0.79},{"x":1568626920000,"y":0},{"x":1568626980000,"y":0},{"x":1568627040000,"y":0},{"x":1568627100000,"y":0},{"x":1568627160000,"y":0},{"x":1568627220000,"y":0},{"x":1568627280000,"y":0},{"x":1568627340000,"y":0},{"x":1568627400000,"y":0},{"x":1568627460000,"y":0},{"x":1568627520000,"y":0},{"x":1568627580000,"y":0},{"x":1568627640000,"y":0},{"x":1568627700000,"y":0},{"x":1568627760000,"y":0},{"x":1568627820000,"y":0},{"x":1568627880000,"y":0},{"x":1568627940000,"y":0},{"x":1568628000000,"y":0},{"x":1568628060000,"y":0},{"x":1568628120000,"y":0},{"x":1568628180000,"y":0},{"x":1568628240000,"y":0},{"x":1568628300000,"y":0},{"x":1568628360000,"y":0},{"x":1568628420000,"y":0},{"x":1568628480000,"y":0},{"x":1568628540000,"y":0},{"x":1568628600000,"y":0},{"x":1568628660000,"y":0},{"x":1568628720000,"y":0},{"x":1568628780000,"y":0},{"x":1568628840000,"y":0},{"x":1568628900000,"y":0},{"x":1568628960000,"y":0},{"x":1568629020000,"y":0},{"x":1568629080000,"y":0},{"x":1568629140000,"y":0},{"x":1568629200000,"y":0},{"x":1568629260000,"y":0},{"x":1568629320000,"y":0},{"x":1568629380000,"y":0},{"x":1568629440000,"y":0},{"x":1568629500000,"y":0},{"x":1568629560000,"y":0},{"x":1568629620000,"y":0},{"x":1568629680000,"y":0.01},{"x":1568629740000,"y":0},{"x":1568629800000,"y":0},{"x":1568629860000,"y":0},{"x":1568629920000,"y":0},{"x":1568629980000,"y":0},{"x":1568630040000,"y":0.01},{"x":1568630100000,"y":0},{"x":1568630160000,"y":0},{"x":1568630220000,"y":0},{"x":1568630280000,"y":0},{"x":1568630340000,"y":0},{"x":1568630400000,"y":0},{"x":1568630460000,"y":0},{"x":1568630520000,"y":0},{"x":1568630580000,"y":0},{"x":1568630640000,"y":0},{"x":1568630700000,"y":0},{"x":1568630760000,"y":0},{"x":1568630820000,"y":0},{"x":1568630880000,"y":0},{"x":1568630940000,"y":0},{"x":1568631000000,"y":0},{"x":1568631060000,"y":0},{"x":1568631120000,"y":0},{"x":1568631180000,"y":0},{"x":1568631240000,"y":0},{"x":1568631300000,"y":0},{"x":1568631360000,"y":0},{"x":1568631420000,"y":0},{"x":1568631480000,"y":0},{"x":1568631540000,"y":0},{"x":1568631600000,"y":0},{"x":1568631660000,"y":0},{"x":1568631720000,"y":0},{"x":1568631780000,"y":0},{"x":1568631840000,"y":0},{"x":1568631900000,"y":0},{"x":1568631960000,"y":0},{"x":1568632020000,"y":0},{"x":1568632080000,"y":0},{"x":1568632140000,"y":0},{"x":1568632200000,"y":0},{"x":1568632260000,"y":0},{"x":1568632320000,"y":0},{"x":1568632380000,"y":0},{"x":1568632440000,"y":0},{"x":1568632500000,"y":0},{"x":1568632560000,"y":0},{"x":1568632620000,"y":0},{"x":1568632680000,"y":0},{"x":1568632740000,"y":0},{"x":1568632800000,"y":0},{"x":1568632860000,"y":0},{"x":1568632920000,"y":0},{"x":1568632980000,"y":0},{"x":1568633040000,"y":0},{"x":1568633100000,"y":0},{"x":1568633160000,"y":0},{"x":1568633220000,"y":0},{"x":1568633280000,"y":0},{"x":1568633340000,"y":0},{"x":1568633400000,"y":0},{"x":1568633460000,"y":0},{"x":1568633520000,"y":0},{"x":1568633580000,"y":0},{"x":1568633640000,"y":0},{"x":1568633700000,"y":0},{"x":1568633760000,"y":0},{"x":1568633820000,"y":0},{"x":1568633880000,"y":0},{"x":1568633940000,"y":0},{"x":1568634000000,"y":0},{"x":1568634060000,"y":0},{"x":1568634120000,"y":0},{"x":1568634180000,"y":0},{"x":1568634240000,"y":0},{"x":1568634300000,"y":0},{"x":1568634360000,"y":0},{"x":1568634420000,"y":0},{"x":1568634480000,"y":0},{"x":1568634540000,"y":0},{"x":1568634600000,"y":0},{"x":1568634660000,"y":0},{"x":1568634720000,"y":0},{"x":1568634780000,"y":0},{"x":1568634840000,"y":0},{"x":1568634900000,"y":0},{"x":1568634960000,"y":0},{"x":1568635020000,"y":0},{"x":1568635080000,"y":0},{"x":1568635140000,"y":0},{"x":1568635200000,"y":0},{"x":1568635260000,"y":0},{"x":1568635320000,"y":0},{"x":1568635380000,"y":0},{"x":1568635440000,"y":0},{"x":1568635500000,"y":0},{"x":1568635560000,"y":0},{"x":1568635620000,"y":0},{"x":1568635680000,"y":0},{"x":1568635740000,"y":0},{"x":1568635800000,"y":0},{"x":1568635860000,"y":0},{"x":1568635920000,"y":0},{"x":1568635980000,"y":0},{"x":1568636040000,"y":0},{"x":1568636100000,"y":0},{"x":1568636160000,"y":0},{"x":1568636220000,"y":0},{"x":1568636280000,"y":0},{"x":1568636340000,"y":0},{"x":1568636400000,"y":0},{"x":1568636460000,"y":0},{"x":1568636520000,"y":0},{"x":1568636580000,"y":0},{"x":1568636640000,"y":0},{"x":1568636700000,"y":0},{"x":1568636760000,"y":0},{"x":1568636820000,"y":0},{"x":1568636880000,"y":0},{"x":1568636940000,"y":0},{"x":1568637000000,"y":0},{"x":1568637060000,"y":0},{"x":1568637120000,"y":0},{"x":1568637180000,"y":0},{"x":1568637240000,"y":0},{"x":1568637300000,"y":0},{"x":1568637360000,"y":0},{"x":1568637420000,"y":0},{"x":1568637480000,"y":0},{"x":1568637540000,"y":0},{"x":1568637600000,"y":0},{"x":1568637660000,"y":0},{"x":1568637720000,"y":0},{"x":1568637780000,"y":0},{"x":1568637840000,"y":0},{"x":1568637900000,"y":0},{"x":1568637960000,"y":0},{"x":1568638020000,"y":0},{"x":1568638080000,"y":0},{"x":1568638140000,"y":0},{"x":1568638200000,"y":0},{"x":1568638260000,"y":0},{"x":1568638320000,"y":0},{"x":1568638380000,"y":0},{"x":1568638440000,"y":0},{"x":1568638500000,"y":0},{"x":1568638560000,"y":0},{"x":1568638620000,"y":0},{"x":1568638680000,"y":0},{"x":1568638740000,"y":0},{"x":1568638800000,"y":0},{"x":1568638860000,"y":0},{"x":1568638920000,"y":0},{"x":1568638980000,"y":0},{"x":1568639040000,"y":0},{"x":1568639100000,"y":0},{"x":1568639160000,"y":0},{"x":1568639220000,"y":0},{"x":1568639280000,"y":0},{"x":1568639340000,"y":0},{"x":1568639400000,"y":0},{"x":1568639460000,"y":0},{"x":1568639520000,"y":0},{"x":1568639580000,"y":0},{"x":1568639640000,"y":0},{"x":1568639700000,"y":0},{"x":1568639760000,"y":0},{"x":1568639820000,"y":0},{"x":1568639880000,"y":0},{"x":1568639940000,"y":0},{"x":1568640000000,"y":0},{"x":1568640060000,"y":0},{"x":1568640120000,"y":0},{"x":1568640180000,"y":0},{"x":1568640240000,"y":0},{"x":1568640300000,"y":0},{"x":1568640360000,"y":0},{"x":1568640420000,"y":0},{"x":1568640480000,"y":0},{"x":1568640540000,"y":0},{"x":1568640600000,"y":0},{"x":1568640660000,"y":0},{"x":1568640720000,"y":0},{"x":1568640780000,"y":0},{"x":1568640840000,"y":0},{"x":1568640900000,"y":0},{"x":1568640960000,"y":0},{"x":1568641020000,"y":0},{"x":1568641080000,"y":0},{"x":1568641140000,"y":0},{"x":1568641200000,"y":0},{"x":1568641260000,"y":0},{"x":1568641320000,"y":0},{"x":1568641380000,"y":0},{"x":1568641440000,"y":0},{"x":1568641500000,"y":0},{"x":1568641560000,"y":0},{"x":1568641620000,"y":0},{"x":1568641680000,"y":0},{"x":1568641740000,"y":0},{"x":1568641800000,"y":0},{"x":1568641860000,"y":0},{"x":1568641920000,"y":0},{"x":1568641980000,"y":0},{"x":1568642040000,"y":0},{"x":1568642100000,"y":0},{"x":1568642160000,"y":0},{"x":1568642220000,"y":0},{"x":1568642280000,"y":0},{"x":1568642340000,"y":0},{"x":1568642400000,"y":0},{"x":1568642460000,"y":0},{"x":1568642520000,"y":0},{"x":1568642580000,"y":0},{"x":1568642640000,"y":0},{"x":1568642700000,"y":0},{"x":1568642760000,"y":0},{"x":1568642820000,"y":0},{"x":1568642880000,"y":0},{"x":1568642940000,"y":0},{"x":1568643000000,"y":0},{"x":1568643060000,"y":0},{"x":1568643120000,"y":0},{"x":1568643180000,"y":0},{"x":1568643240000,"y":0},{"x":1568643300000,"y":0.01},{"x":1568643360000,"y":0},{"x":1568643420000,"y":0},{"x":1568643480000,"y":0},{"x":1568643540000,"y":0},{"x":1568643600000,"y":0},{"x":1568643660000,"y":0},{"x":1568643720000,"y":0},{"x":1568643780000,"y":0},{"x":1568643840000,"y":0},{"x":1568643900000,"y":0},{"x":1568643960000,"y":0},{"x":1568644020000,"y":0},{"x":1568644080000,"y":0},{"x":1568644140000,"y":0},{"x":1568644200000,"y":0},{"x":1568644260000,"y":0},{"x":1568644320000,"y":0},{"x":1568644380000,"y":0},{"x":1568644440000,"y":0},{"x":1568644500000,"y":0},{"x":1568644560000,"y":0},{"x":1568644620000,"y":0},{"x":1568644680000,"y":0},{"x":1568644740000,"y":0},{"x":1568644800000,"y":0},{"x":1568644860000,"y":0},{"x":1568644920000,"y":0},{"x":1568644980000,"y":0},{"x":1568645040000,"y":0},{"x":1568645100000,"y":0},{"x":1568645160000,"y":0},{"x":1568645220000,"y":0.01},{"x":1568645280000,"y":0},{"x":1568645340000,"y":0},{"x":1568645400000,"y":0},{"x":1568645460000,"y":0},{"x":1568645520000,"y":0},{"x":1568645580000,"y":0},{"x":1568645640000,"y":0},{"x":1568645700000,"y":0},{"x":1568645760000,"y":0},{"x":1568645820000,"y":0},{"x":1568645880000,"y":0},{"x":1568645940000,"y":0},{"x":1568646000000,"y":0},{"x":1568646060000,"y":0},{"x":1568646120000,"y":0},{"x":1568646180000,"y":0},{"x":1568646240000,"y":0},{"x":1568646300000,"y":0},{"x":1568646360000,"y":0},{"x":1568646420000,"y":0},{"x":1568646480000,"y":0},{"x":1568646540000,"y":0},{"x":1568646600000,"y":0},{"x":1568646660000,"y":0},{"x":1568646720000,"y":0},{"x":1568646780000,"y":0},{"x":1568646840000,"y":0},{"x":1568646900000,"y":0},{"x":1568646960000,"y":0},{"x":1568647020000,"y":0},{"x":1568647080000,"y":0},{"x":1568647140000,"y":0.02},{"x":1568647200000,"y":0},{"x":1568647260000,"y":0},{"x":1568647320000,"y":0},{"x":1568647380000,"y":0},{"x":1568647440000,"y":0},{"x":1568647500000,"y":0},{"x":1568647560000,"y":0},{"x":1568647620000,"y":0},{"x":1568647680000,"y":0},{"x":1568647740000,"y":0},{"x":1568647800000,"y":0},{"x":1568647860000,"y":0},{"x":1568647920000,"y":0},{"x":1568647980000,"y":0},{"x":1568648040000,"y":0},{"x":1568648100000,"y":0},{"x":1568648160000,"y":0},{"x":1568648220000,"y":0},{"x":1568648280000,"y":0},{"x":1568648340000,"y":0},{"x":1568648400000,"y":0},{"x":1568648460000,"y":0},{"x":1568648520000,"y":1.76},{"x":1568648580000,"y":1.35},{"x":1568648640000,"y":0.01},{"x":1568648700000,"y":0},{"x":1568648760000,"y":0},{"x":1568648820000,"y":0},{"x":1568648880000,"y":0},{"x":1568648940000,"y":0},{"x":1568649000000,"y":0},{"x":1568649060000,"y":0},{"x":1568649120000,"y":0},{"x":1568649180000,"y":0},{"x":1568649240000,"y":0},{"x":1568649300000,"y":0},{"x":1568649360000,"y":0},{"x":1568649420000,"y":1.56},{"x":1568649480000,"y":0},{"x":1568649540000,"y":0.05},{"x":1568649600000,"y":0},{"x":1568649660000,"y":0},{"x":1568649720000,"y":0},{"x":1568649780000,"y":0},{"x":1568649840000,"y":0},{"x":1568649900000,"y":0},{"x":1568649960000,"y":0},{"x":1568650020000,"y":0},{"x":1568650080000,"y":0},{"x":1568650140000,"y":0},{"x":1568650200000,"y":0},{"x":1568650260000,"y":0},{"x":1568650320000,"y":0},{"x":1568650380000,"y":0},{"x":1568650440000,"y":0},{"x":1568650500000,"y":0},{"x":1568650560000,"y":0},{"x":1568650620000,"y":0},{"x":1568650680000,"y":0},{"x":1568650740000,"y":0},{"x":1568650800000,"y":0},{"x":1568650860000,"y":0},{"x":1568650920000,"y":0},{"x":1568650980000,"y":0},{"x":1568651040000,"y":0},{"x":1568651100000,"y":0},{"x":1568651160000,"y":0},{"x":1568651220000,"y":0},{"x":1568651280000,"y":0},{"x":1568651340000,"y":0},{"x":1568651400000,"y":0},{"x":1568651460000,"y":0},{"x":1568651520000,"y":0},{"x":1568651580000,"y":0},{"x":1568651640000,"y":0},{"x":1568651700000,"y":0},{"x":1568651760000,"y":0},{"x":1568651820000,"y":0},{"x":1568651880000,"y":0},{"x":1568651940000,"y":0},{"x":1568652000000,"y":0},{"x":1568652060000,"y":0},{"x":1568652120000,"y":0},{"x":1568652180000,"y":0},{"x":1568652240000,"y":0},{"x":1568652300000,"y":0},{"x":1568652360000,"y":0.01},{"x":1568652420000,"y":0},{"x":1568652480000,"y":0.02},{"x":1568652540000,"y":0},{"x":1568652600000,"y":0},{"x":1568652660000,"y":0},{"x":1568652720000,"y":0},{"x":1568652780000,"y":0},{"x":1568652840000,"y":0},{"x":1568652900000,"y":0.01},{"x":1568652960000,"y":0},{"x":1568653020000,"y":0},{"x":1568653080000,"y":0},{"x":1568653140000,"y":0},{"x":1568653200000,"y":0},{"x":1568653260000,"y":0},{"x":1568653320000,"y":0},{"x":1568653380000,"y":0},{"x":1568653440000,"y":0},{"x":1568653500000,"y":0},{"x":1568653560000,"y":0},{"x":1568653620000,"y":0},{"x":1568653680000,"y":0},{"x":1568653740000,"y":0},{"x":1568653800000,"y":0},{"x":1568653860000,"y":0},{"x":1568653920000,"y":0},{"x":1568653980000,"y":0},{"x":1568654040000,"y":0},{"x":1568654100000,"y":0},{"x":1568654160000,"y":0},{"x":1568654220000,"y":0},{"x":1568654280000,"y":0},{"x":1568654340000,"y":0},{"x":1568654400000,"y":0},{"x":1568654460000,"y":0},{"x":1568654520000,"y":0},{"x":1568654580000,"y":0},{"x":1568654640000,"y":0},{"x":1568654700000,"y":0},{"x":1568654760000,"y":0},{"x":1568654820000,"y":0},{"x":1568654880000,"y":0},{"x":1568654940000,"y":0.01},{"x":1568655000000,"y":0},{"x":1568655060000,"y":0},{"x":1568655120000,"y":0},{"x":1568655180000,"y":0},{"x":1568655240000,"y":0},{"x":1568655300000,"y":0},{"x":1568655360000,"y":0},{"x":1568655420000,"y":0},{"x":1568655480000,"y":0},{"x":1568655540000,"y":0},{"x":1568655600000,"y":0},{"x":1568655660000,"y":0},{"x":1568655720000,"y":0},{"x":1568655780000,"y":0},{"x":1568655840000,"y":0},{"x":1568655900000,"y":0},{"x":1568655960000,"y":0.01},{"x":1568656020000,"y":0},{"x":1568656080000,"y":0},{"x":1568656140000,"y":0},{"x":1568656200000,"y":0},{"x":1568656260000,"y":0},{"x":1568656320000,"y":0},{"x":1568656380000,"y":0},{"x":1568656440000,"y":0},{"x":1568656500000,"y":0},{"x":1568656560000,"y":0},{"x":1568656620000,"y":0},{"x":1568656680000,"y":0},{"x":1568656740000,"y":0},{"x":1568656800000,"y":0},{"x":1568656860000,"y":0},{"x":1568656920000,"y":0},{"x":1568656980000,"y":0},{"x":1568657040000,"y":0},{"x":1568657100000,"y":0},{"x":1568657160000,"y":0},{"x":1568657220000,"y":0.17},{"x":1568657280000,"y":0},{"x":1568657340000,"y":0},{"x":1568657400000,"y":0},{"x":1568657460000,"y":0},{"x":1568657520000,"y":0},{"x":1568657580000,"y":0},{"x":1568657640000,"y":0},{"x":1568657700000,"y":0},{"x":1568657760000,"y":0},{"x":1568657820000,"y":0},{"x":1568657880000,"y":0},{"x":1568657940000,"y":0},{"x":1568658000000,"y":0},{"x":1568658060000,"y":0},{"x":1568658120000,"y":0},{"x":1568658180000,"y":0},{"x":1568658240000,"y":0},{"x":1568658300000,"y":0},{"x":1568658360000,"y":0},{"x":1568658420000,"y":0},{"x":1568658480000,"y":0},{"x":1568658540000,"y":0},{"x":1568658600000,"y":0.06},{"x":1568658660000,"y":0.09},{"x":1568658720000,"y":0},{"x":1568658780000,"y":0},{"x":1568658840000,"y":0},{"x":1568658900000,"y":0},{"x":1568658960000,"y":0},{"x":1568659020000,"y":0},{"x":1568659080000,"y":0},{"x":1568659140000,"y":0},{"x":1568659200000,"y":0},{"x":1568659260000,"y":0},{"x":1568659320000,"y":0},{"x":1568659380000,"y":0},{"x":1568659440000,"y":0},{"x":1568659500000,"y":0},{"x":1568659560000,"y":0},{"x":1568659620000,"y":0},{"x":1568659680000,"y":0},{"x":1568659740000,"y":0},{"x":1568659800000,"y":0},{"x":1568659860000,"y":0},{"x":1568659920000,"y":0},{"x":1568659980000,"y":0},{"x":1568660040000,"y":0},{"x":1568660100000,"y":0},{"x":1568660160000,"y":0},{"x":1568660220000,"y":0},{"x":1568660280000,"y":0},{"x":1568660340000,"y":0},{"x":1568660400000,"y":0},{"x":1568660460000,"y":0},{"x":1568660520000,"y":0},{"x":1568660580000,"y":0},{"x":1568660640000,"y":0},{"x":1568660700000,"y":0},{"x":1568660760000,"y":0},{"x":1568660820000,"y":0},{"x":1568660880000,"y":0},{"x":1568660940000,"y":0},{"x":1568661000000,"y":0},{"x":1568661060000,"y":0},{"x":1568661120000,"y":0},{"x":1568661180000,"y":0.01},{"x":1568661240000,"y":0},{"x":1568661300000,"y":0},{"x":1568661360000,"y":0},{"x":1568661420000,"y":0},{"x":1568661480000,"y":0},{"x":1568661540000,"y":0},{"x":1568661600000,"y":0},{"x":1568661660000,"y":0},{"x":1568661720000,"y":0},{"x":1568661780000,"y":0},{"x":1568661840000,"y":0},{"x":1568661900000,"y":0},{"x":1568661960000,"y":0},{"x":1568662020000,"y":0},{"x":1568662080000,"y":0},{"x":1568662140000,"y":0},{"x":1568662200000,"y":0},{"x":1568662260000,"y":0},{"x":1568662320000,"y":0},{"x":1568662380000,"y":0},{"x":1568662440000,"y":0},{"x":1568662500000,"y":0},{"x":1568662560000,"y":0},{"x":1568662620000,"y":0},{"x":1568662680000,"y":0},{"x":1568662740000,"y":0},{"x":1568662800000,"y":0},{"x":1568662860000,"y":0.67},{"x":1568662920000,"y":0},{"x":1568662980000,"y":0},{"x":1568663040000,"y":0},{"x":1568663100000,"y":0},{"x":1568663160000,"y":0.01},{"x":1568663220000,"y":0},{"x":1568663280000,"y":0},{"x":1568663340000,"y":0},{"x":1568663400000,"y":0},{"x":1568663460000,"y":0},{"x":1568663520000,"y":0},{"x":1568663580000,"y":0},{"x":1568663640000,"y":0},{"x":1568663700000,"y":0},{"x":1568663760000,"y":0},{"x":1568663820000,"y":0},{"x":1568663880000,"y":0},{"x":1568663940000,"y":0},{"x":1568664000000,"y":0},{"x":1568664060000,"y":0},{"x":1568664120000,"y":0.52},{"x":1568664180000,"y":16.56},{"x":1568664240000,"y":0},{"x":1568664300000,"y":0.82},{"x":1568664360000,"y":1.14},{"x":1568664420000,"y":0.01},{"x":1568664480000,"y":0.73},{"x":1568664540000,"y":0},{"x":1568664600000,"y":0},{"x":1568664660000,"y":0},{"x":1568664720000,"y":0},{"x":1568664780000,"y":0},{"x":1568664840000,"y":0},{"x":1568664900000,"y":0},{"x":1568664960000,"y":0},{"x":1568665020000,"y":0},{"x":1568665080000,"y":0.02},{"x":1568665140000,"y":0},{"x":1568665200000,"y":0},{"x":1568665260000,"y":0},{"x":1568665320000,"y":0},{"x":1568665380000,"y":0},{"x":1568665440000,"y":0},{"x":1568665500000,"y":0},{"x":1568665560000,"y":0},{"x":1568665620000,"y":0.01},{"x":1568665680000,"y":0},{"x":1568665740000,"y":0},{"x":1568665800000,"y":0},{"x":1568665860000,"y":0},{"x":1568665920000,"y":0},{"x":1568665980000,"y":0},{"x":1568666040000,"y":0},{"x":1568666100000,"y":0},{"x":1568666160000,"y":0},{"x":1568666220000,"y":0},{"x":1568666280000,"y":0},{"x":1568666340000,"y":0},{"x":1568666400000,"y":0},{"x":1568666460000,"y":0},{"x":1568666520000,"y":0},{"x":1568666580000,"y":0},{"x":1568666640000,"y":0},{"x":1568666700000,"y":0},{"x":1568666760000,"y":0},{"x":1568666820000,"y":0},{"x":1568666880000,"y":0},{"x":1568666940000,"y":0},{"x":1568667000000,"y":0},{"x":1568667060000,"y":0},{"x":1568667120000,"y":0},{"x":1568667180000,"y":0.1},{"x":1568667240000,"y":0.01},{"x":1568667300000,"y":0},{"x":1568667360000,"y":0},{"x":1568667420000,"y":0},{"x":1568667480000,"y":0},{"x":1568667540000,"y":0},{"x":1568667600000,"y":0},{"x":1568667660000,"y":0},{"x":1568667720000,"y":0},{"x":1568667780000,"y":0},{"x":1568667840000,"y":0},{"x":1568667900000,"y":0},{"x":1568667960000,"y":0},{"x":1568668020000,"y":0},{"x":1568668080000,"y":0},{"x":1568668140000,"y":0},{"x":1568668200000,"y":0},{"x":1568668260000,"y":0},{"x":1568668320000,"y":0},{"x":1568668380000,"y":0},{"x":1568668440000,"y":0},{"x":1568668500000,"y":0},{"x":1568668560000,"y":0},{"x":1568668620000,"y":0},{"x":1568668680000,"y":0},{"x":1568668740000,"y":0.04},{"x":1568668800000,"y":0},{"x":1568668860000,"y":0},{"x":1568668920000,"y":0},{"x":1568668980000,"y":1.18},{"x":1568669040000,"y":0.02},{"x":1568669100000,"y":0},{"x":1568669160000,"y":0.95},{"x":1568669220000,"y":1.33},{"x":1568669280000,"y":0},{"x":1568669340000,"y":0},{"x":1568669400000,"y":0},{"x":1568669460000,"y":0},{"x":1568669520000,"y":0},{"x":1568669580000,"y":0},{"x":1568669640000,"y":0},{"x":1568669700000,"y":0},{"x":1568669760000,"y":0},{"x":1568669820000,"y":0.01},{"x":1568669880000,"y":0},{"x":1568669940000,"y":0},{"x":1568670000000,"y":0},{"x":1568670060000,"y":0},{"x":1568670120000,"y":0},{"x":1568670180000,"y":0},{"x":1568670240000,"y":0},{"x":1568670300000,"y":0},{"x":1568670360000,"y":0.01},{"x":1568670420000,"y":0},{"x":1568670480000,"y":0},{"x":1568670540000,"y":0},{"x":1568670600000,"y":0},{"x":1568670660000,"y":0},{"x":1568670720000,"y":0},{"x":1568670780000,"y":0},{"x":1568670840000,"y":0},{"x":1568670900000,"y":0.01},{"x":1568670960000,"y":0.03},{"x":1568671020000,"y":0},{"x":1568671080000,"y":0.01},{"x":1568671140000,"y":0},{"x":1568671200000,"y":0},{"x":1568671260000,"y":0},{"x":1568671320000,"y":0},{"x":1568671380000,"y":0},{"x":1568671440000,"y":0},{"x":1568671500000,"y":0},{"x":1568671560000,"y":0},{"x":1568671620000,"y":0.13},{"x":1568671680000,"y":0},{"x":1568671740000,"y":0},{"x":1568671800000,"y":0},{"x":1568671860000,"y":0},{"x":1568671920000,"y":0},{"x":1568671980000,"y":0},{"x":1568672040000,"y":0},{"x":1568672100000,"y":0},{"x":1568672160000,"y":0},{"x":1568672220000,"y":0},{"x":1568672280000,"y":0},{"x":1568672340000,"y":0},{"x":1568672400000,"y":0},{"x":1568672460000,"y":0},{"x":1568672520000,"y":0},{"x":1568672580000,"y":0},{"x":1568672640000,"y":0},{"x":1568672700000,"y":0},{"x":1568672760000,"y":0},{"x":1568672820000,"y":0},{"x":1568672880000,"y":0},{"x":1568672940000,"y":0},{"x":1568673000000,"y":0},{"x":1568673060000,"y":0},{"x":1568673120000,"y":0},{"x":1568673180000,"y":0},{"x":1568673240000,"y":0},{"x":1568673300000,"y":0},{"x":1568673360000,"y":0.01},{"x":1568673420000,"y":0},{"x":1568673480000,"y":0},{"x":1568673540000,"y":0},{"x":1568673600000,"y":0.01},{"x":1568673660000,"y":0},{"x":1568673720000,"y":0},{"x":1568673780000,"y":0},{"x":1568673840000,"y":0},{"x":1568673900000,"y":0},{"x":1568673960000,"y":0},{"x":1568674020000,"y":0},{"x":1568674080000,"y":0},{"x":1568674140000,"y":0},{"x":1568674200000,"y":0},{"x":1568674260000,"y":0},{"x":1568674320000,"y":0},{"x":1568674380000,"y":0},{"x":1568674440000,"y":0},{"x":1568674500000,"y":0},{"x":1568674560000,"y":0},{"x":1568674620000,"y":0},{"x":1568674680000,"y":0},{"x":1568674740000,"y":0},{"x":1568674800000,"y":0},{"x":1568674860000,"y":0},{"x":1568674920000,"y":0},{"x":1568674980000,"y":0},{"x":1568675040000,"y":0},{"x":1568675100000,"y":0},{"x":1568675160000,"y":0},{"x":1568675220000,"y":0},{"x":1568675280000,"y":0},{"x":1568675340000,"y":0},{"x":1568675400000,"y":0},{"x":1568675460000,"y":0},{"x":1568675520000,"y":0},{"x":1568675580000,"y":0},{"x":1568675640000,"y":0},{"x":1568675700000,"y":0},{"x":1568675760000,"y":0},{"x":1568675820000,"y":0},{"x":1568675880000,"y":0},{"x":1568675940000,"y":0},{"x":1568676000000,"y":0},{"x":1568676060000,"y":0},{"x":1568676120000,"y":0},{"x":1568676180000,"y":0},{"x":1568676240000,"y":0},{"x":1568676300000,"y":0},{"x":1568676360000,"y":0},{"x":1568676420000,"y":0},{"x":1568676480000,"y":0},{"x":1568676540000,"y":0},{"x":1568676600000,"y":0},{"x":1568676660000,"y":0},{"x":1568676720000,"y":0},{"x":1568676780000,"y":0},{"x":1568676840000,"y":0},{"x":1568676900000,"y":0.01},{"x":1568676960000,"y":0.01},{"x":1568677020000,"y":2.24},{"x":1568677080000,"y":0},{"x":1568677140000,"y":0},{"x":1568677200000,"y":0},{"x":1568677260000,"y":0},{"x":1568677320000,"y":0},{"x":1568677380000,"y":0},{"x":1568677440000,"y":0},{"x":1568677500000,"y":0},{"x":1568677560000,"y":0},{"x":1568677620000,"y":0},{"x":1568677680000,"y":0},{"x":1568677740000,"y":0},{"x":1568677800000,"y":0},{"x":1568677860000,"y":0},{"x":1568677920000,"y":0},{"x":1568677980000,"y":0.15},{"x":1568678040000,"y":0},{"x":1568678100000,"y":0},{"x":1568678160000,"y":0},{"x":1568678220000,"y":0},{"x":1568678280000,"y":0},{"x":1568678340000,"y":0},{"x":1568678400000,"y":0},{"x":1568678460000,"y":0},{"x":1568678520000,"y":0},{"x":1568678580000,"y":0},{"x":1568678640000,"y":0},{"x":1568678700000,"y":0},{"x":1568678760000,"y":0},{"x":1568678820000,"y":0},{"x":1568678880000,"y":0},{"x":1568678940000,"y":0},{"x":1568679000000,"y":0},{"x":1568679060000,"y":0},{"x":1568679120000,"y":0},{"x":1568679180000,"y":0},{"x":1568679240000,"y":0},{"x":1568679300000,"y":0},{"x":1568679360000,"y":0},{"x":1568679420000,"y":0},{"x":1568679480000,"y":0},{"x":1568679540000,"y":0},{"x":1568679600000,"y":0},{"x":1568679660000,"y":0},{"x":1568679720000,"y":0},{"x":1568679780000,"y":0},{"x":1568679840000,"y":0},{"x":1568679900000,"y":0},{"x":1568679960000,"y":0},{"x":1568680020000,"y":0},{"x":1568680080000,"y":0},{"x":1568680140000,"y":0},{"x":1568680200000,"y":0},{"x":1568680260000,"y":0},{"x":1568680320000,"y":0},{"x":1568680380000,"y":0},{"x":1568680440000,"y":0},{"x":1568680500000,"y":0},{"x":1568680560000,"y":0},{"x":1568680620000,"y":0},{"x":1568680680000,"y":0},{"x":1568680740000,"y":0},{"x":1568680800000,"y":0},{"x":1568680860000,"y":0},{"x":1568680920000,"y":0},{"x":1568680980000,"y":0},{"x":1568681040000,"y":0},{"x":1568681100000,"y":0},{"x":1568681160000,"y":0},{"x":1568681220000,"y":0},{"x":1568681280000,"y":0},{"x":1568681340000,"y":0},{"x":1568681400000,"y":0},{"x":1568681460000,"y":0},{"x":1568681520000,"y":0},{"x":1568681580000,"y":0},{"x":1568681640000,"y":0},{"x":1568681700000,"y":0},{"x":1568681760000,"y":0},{"x":1568681820000,"y":0},{"x":1568681880000,"y":0},{"x":1568681940000,"y":0},{"x":1568682000000,"y":0},{"x":1568682060000,"y":0},{"x":1568682120000,"y":0},{"x":1568682180000,"y":0},{"x":1568682240000,"y":0},{"x":1568682300000,"y":0},{"x":1568682360000,"y":0},{"x":1568682420000,"y":0},{"x":1568682480000,"y":0},{"x":1568682540000,"y":0},{"x":1568682600000,"y":0.01},{"x":1568682660000,"y":0.01},{"x":1568682720000,"y":0},{"x":1568682780000,"y":0},{"x":1568682840000,"y":0},{"x":1568682900000,"y":0},{"x":1568682960000,"y":0},{"x":1568683020000,"y":0},{"x":1568683080000,"y":0},{"x":1568683140000,"y":0},{"x":1568683200000,"y":0},{"x":1568683260000,"y":0},{"x":1568683320000,"y":0},{"x":1568683380000,"y":0},{"x":1568683440000,"y":0},{"x":1568683500000,"y":0},{"x":1568683560000,"y":0},{"x":1568683620000,"y":0},{"x":1568683680000,"y":0},{"x":1568683740000,"y":0},{"x":1568683800000,"y":0},{"x":1568683860000,"y":0},{"x":1568683920000,"y":0},{"x":1568683980000,"y":0},{"x":1568684040000,"y":0},{"x":1568684100000,"y":0},{"x":1568684160000,"y":0},{"x":1568684220000,"y":0},{"x":1568684280000,"y":0},{"x":1568684340000,"y":0},{"x":1568684400000,"y":0.01},{"x":1568684460000,"y":0},{"x":1568684520000,"y":0},{"x":1568684580000,"y":0},{"x":1568684640000,"y":0.02},{"x":1568684700000,"y":0},{"x":1568684760000,"y":0},{"x":1568684820000,"y":0},{"x":1568684880000,"y":0},{"x":1568684940000,"y":0},{"x":1568685000000,"y":0},{"x":1568685060000,"y":0},{"x":1568685120000,"y":0.01},{"x":1568685180000,"y":0},{"x":1568685240000,"y":0},{"x":1568685300000,"y":0},{"x":1568685360000,"y":0},{"x":1568685420000,"y":0},{"x":1568685480000,"y":0},{"x":1568685540000,"y":0.01},{"x":1568685600000,"y":0},{"x":1568685660000,"y":0},{"x":1568685720000,"y":0},{"x":1568685780000,"y":0},{"x":1568685840000,"y":0},{"x":1568685900000,"y":0},{"x":1568685960000,"y":0},{"x":1568686020000,"y":0},{"x":1568686080000,"y":0},{"x":1568686140000,"y":0},{"x":1568686200000,"y":0},{"x":1568686260000,"y":0},{"x":1568686320000,"y":0},{"x":1568686380000,"y":0},{"x":1568686440000,"y":0},{"x":1568686500000,"y":0},{"x":1568686560000,"y":0},{"x":1568686620000,"y":0},{"x":1568686680000,"y":0},{"x":1568686740000,"y":0},{"x":1568686800000,"y":0},{"x":1568686860000,"y":0},{"x":1568686920000,"y":0},{"x":1568686980000,"y":0},{"x":1568687040000,"y":0},{"x":1568687100000,"y":0},{"x":1568687160000,"y":0},{"x":1568687220000,"y":0},{"x":1568687280000,"y":0},{"x":1568687340000,"y":0},{"x":1568687400000,"y":0.65},{"x":1568687460000,"y":0},{"x":1568687520000,"y":0},{"x":1568687580000,"y":0},{"x":1568687640000,"y":0.04},{"x":1568687700000,"y":0},{"x":1568687760000,"y":0},{"x":1568687820000,"y":0},{"x":1568687880000,"y":0},{"x":1568687940000,"y":0},{"x":1568688000000,"y":0},{"x":1568688060000,"y":0},{"x":1568688120000,"y":0},{"x":1568688180000,"y":0},{"x":1568688240000,"y":0},{"x":1568688300000,"y":0.02},{"x":1568688360000,"y":0.01},{"x":1568688420000,"y":0},{"x":1568688480000,"y":0},{"x":1568688540000,"y":0},{"x":1568688600000,"y":0},{"x":1568688660000,"y":0},{"x":1568688720000,"y":0},{"x":1568688780000,"y":0},{"x":1568688840000,"y":0},{"x":1568688900000,"y":0},{"x":1568688960000,"y":0},{"x":1568689020000,"y":0},{"x":1568689080000,"y":0},{"x":1568689140000,"y":0},{"x":1568689200000,"y":0},{"x":1568689260000,"y":0},{"x":1568689320000,"y":0},{"x":1568689380000,"y":0},{"x":1568689440000,"y":0},{"x":1568689500000,"y":0},{"x":1568689560000,"y":0},{"x":1568689620000,"y":0},{"x":1568689680000,"y":0},{"x":1568689740000,"y":0},{"x":1568689800000,"y":0},{"x":1568689860000,"y":0},{"x":1568689920000,"y":0},{"x":1568689980000,"y":0},{"x":1568690040000,"y":0},{"x":1568690100000,"y":0},{"x":1568690160000,"y":0},{"x":1568690220000,"y":0},{"x":1568690280000,"y":0},{"x":1568690340000,"y":0},{"x":1568690400000,"y":0},{"x":1568690460000,"y":0},{"x":1568690520000,"y":0},{"x":1568690580000,"y":0},{"x":1568690640000,"y":0},{"x":1568690700000,"y":0},{"x":1568690760000,"y":0},{"x":1568690820000,"y":0.01},{"x":1568690880000,"y":0},{"x":1568690940000,"y":0},{"x":1568691000000,"y":0},{"x":1568691060000,"y":0},{"x":1568691120000,"y":0},{"x":1568691180000,"y":0},{"x":1568691240000,"y":0},{"x":1568691300000,"y":0},{"x":1568691360000,"y":0},{"x":1568691420000,"y":0},{"x":1568691480000,"y":0},{"x":1568691540000,"y":0.01},{"x":1568691600000,"y":0},{"x":1568691660000,"y":0},{"x":1568691720000,"y":0},{"x":1568691780000,"y":0},{"x":1568691840000,"y":0.05},{"x":1568691900000,"y":0},{"x":1568691960000,"y":0.01},{"x":1568692020000,"y":0},{"x":1568692080000,"y":0},{"x":1568692140000,"y":0},{"x":1568692200000,"y":0},{"x":1568692260000,"y":0},{"x":1568692320000,"y":0},{"x":1568692380000,"y":0},{"x":1568692440000,"y":0},{"x":1568692500000,"y":0},{"x":1568692560000,"y":0},{"x":1568692620000,"y":0},{"x":1568692680000,"y":0},{"x":1568692740000,"y":0},{"x":1568692800000,"y":0},{"x":1568692860000,"y":0},{"x":1568692920000,"y":0},{"x":1568692980000,"y":0},{"x":1568693040000,"y":0},{"x":1568693100000,"y":0.01},{"x":1568693160000,"y":0},{"x":1568693220000,"y":0},{"x":1568693280000,"y":0},{"x":1568693340000,"y":0},{"x":1568693400000,"y":0},{"x":1568693460000,"y":0},{"x":1568693520000,"y":0},{"x":1568693580000,"y":0},{"x":1568693640000,"y":0.04},{"x":1568693700000,"y":0},{"x":1568693760000,"y":0},{"x":1568693820000,"y":0.03},{"x":1568693880000,"y":0},{"x":1568693940000,"y":0},{"x":1568694000000,"y":0.01},{"x":1568694060000,"y":0.14},{"x":1568694120000,"y":0.13},{"x":1568694180000,"y":0.03},{"x":1568694240000,"y":0},{"x":1568694300000,"y":0},{"x":1568694360000,"y":0},{"x":1568694420000,"y":0},{"x":1568694480000,"y":0},{"x":1568694540000,"y":0.01},{"x":1568694600000,"y":0},{"x":1568694660000,"y":0},{"x":1568694720000,"y":0},{"x":1568694780000,"y":0.03},{"x":1568694840000,"y":0},{"x":1568694900000,"y":0},{"x":1568694960000,"y":0},{"x":1568695020000,"y":0},{"x":1568695080000,"y":0},{"x":1568695140000,"y":0},{"x":1568695200000,"y":0},{"x":1568695260000,"y":0},{"x":1568695320000,"y":0},{"x":1568695380000,"y":3.1},{"x":1568695440000,"y":0.61},{"x":1568695500000,"y":0.16},{"x":1568695560000,"y":0.07},{"x":1568695620000,"y":0.02},{"x":1568695680000,"y":0.01},{"x":1568695740000,"y":0.01},{"x":1568695800000,"y":0.93},{"x":1568695860000,"y":0.04},{"x":1568695920000,"y":0},{"x":1568695980000,"y":0.05},{"x":1568696040000,"y":0.05},{"x":1568696100000,"y":0},{"x":1568696160000,"y":0},{"x":1568696220000,"y":0},{"x":1568696280000,"y":0.03},{"x":1568696340000,"y":0.54},{"x":1568696400000,"y":0},{"x":1568696460000,"y":0.05},{"x":1568696520000,"y":0.07},{"x":1568696580000,"y":0.49},{"x":1568696640000,"y":0},{"x":1568696700000,"y":0},{"x":1568696760000,"y":1.72},{"x":1568696820000,"y":0},{"x":1568696880000,"y":0},{"x":1568696940000,"y":0},{"x":1568697000000,"y":0},{"x":1568697060000,"y":0},{"x":1568697120000,"y":0},{"x":1568697180000,"y":0.01},{"x":1568697240000,"y":0},{"x":1568697300000,"y":0},{"x":1568697360000,"y":0},{"x":1568697420000,"y":0},{"x":1568697480000,"y":0},{"x":1568697540000,"y":0},{"x":1568697600000,"y":0},{"x":1568697660000,"y":0.01},{"x":1568697720000,"y":0},{"x":1568697780000,"y":0.01},{"x":1568697840000,"y":0.52},{"x":1568697900000,"y":0},{"x":1568697960000,"y":0.98},{"x":1568698020000,"y":0},{"x":1568698080000,"y":0},{"x":1568698140000,"y":0},{"x":1568698200000,"y":0.08},{"x":1568698260000,"y":0},{"x":1568698320000,"y":0},{"x":1568698380000,"y":0},{"x":1568698440000,"y":0},{"x":1568698500000,"y":0},{"x":1568698560000,"y":0},{"x":1568698620000,"y":0},{"x":1568698680000,"y":0},{"x":1568698740000,"y":0},{"x":1568698800000,"y":0.52},{"x":1568698860000,"y":0},{"x":1568698920000,"y":0},{"x":1568698980000,"y":0},{"x":1568699040000,"y":0},{"x":1568699100000,"y":0},{"x":1568699160000,"y":0.01},{"x":1568699220000,"y":0},{"x":1568699280000,"y":0.04},{"x":1568699340000,"y":0.03},{"x":1568699400000,"y":0},{"x":1568699460000,"y":0},{"x":1568699520000,"y":0.06},{"x":1568699580000,"y":0},{"x":1568699640000,"y":0.16},{"x":1568699700000,"y":0.17},{"x":1568699760000,"y":0.01},{"x":1568699820000,"y":0.31},{"x":1568699880000,"y":0.01},{"x":1568699940000,"y":0.9},{"x":1568700000000,"y":0},{"x":1568700060000,"y":0.53},{"x":1568700120000,"y":0},{"x":1568700180000,"y":0},{"x":1568700240000,"y":0},{"x":1568700300000,"y":0},{"x":1568700360000,"y":0},{"x":1568700420000,"y":0},{"x":1568700480000,"y":0},{"x":1568700540000,"y":0},{"x":1568700600000,"y":0},{"x":1568700660000,"y":0},{"x":1568700720000,"y":0},{"x":1568700780000,"y":0},{"x":1568700840000,"y":0},{"x":1568700900000,"y":0},{"x":1568700960000,"y":0},{"x":1568701020000,"y":0},{"x":1568701080000,"y":0},{"x":1568701140000,"y":0},{"x":1568701200000,"y":0},{"x":1568701260000,"y":0.01},{"x":1568701320000,"y":0},{"x":1568701380000,"y":0},{"x":1568701440000,"y":0},{"x":1568701500000,"y":0},{"x":1568701560000,"y":0},{"x":1568701620000,"y":0},{"x":1568701680000,"y":0},{"x":1568701740000,"y":0},{"x":1568701800000,"y":0},{"x":1568701860000,"y":0},{"x":1568701920000,"y":0},{"x":1568701980000,"y":0},{"x":1568702040000,"y":0},{"x":1568702100000,"y":0},{"x":1568702160000,"y":0},{"x":1568702220000,"y":0},{"x":1568702280000,"y":0},{"x":1568702340000,"y":0},{"x":1568702400000,"y":0},{"x":1568702460000,"y":0},{"x":1568702520000,"y":0},{"x":1568702580000,"y":0},{"x":1568702640000,"y":0},{"x":1568702700000,"y":0},{"x":1568702760000,"y":0.01},{"x":1568702820000,"y":0},{"x":1568702880000,"y":0},{"x":1568702940000,"y":0},{"x":1568703000000,"y":0},{"x":1568703060000,"y":0},{"x":1568703120000,"y":0},{"x":1568703180000,"y":0},{"x":1568703240000,"y":0},{"x":1568703300000,"y":0},{"x":1568703360000,"y":0},{"x":1568703420000,"y":0},{"x":1568703480000,"y":0},{"x":1568703540000,"y":0},{"x":1568703600000,"y":0},{"x":1568703660000,"y":0},{"x":1568703720000,"y":0},{"x":1568703780000,"y":0},{"x":1568703840000,"y":0},{"x":1568703900000,"y":0},{"x":1568703960000,"y":0},{"x":1568704020000,"y":0},{"x":1568704080000,"y":0},{"x":1568704140000,"y":0},{"x":1568704200000,"y":0.01},{"x":1568704260000,"y":0},{"x":1568704320000,"y":0},{"x":1568704380000,"y":0},{"x":1568704440000,"y":0},{"x":1568704500000,"y":0},{"x":1568704560000,"y":0},{"x":1568704620000,"y":0},{"x":1568704680000,"y":0},{"x":1568704740000,"y":0},{"x":1568704800000,"y":0},{"x":1568704860000,"y":0.01},{"x":1568704920000,"y":0},{"x":1568704980000,"y":0},{"x":1568705040000,"y":0},{"x":1568705100000,"y":0},{"x":1568705160000,"y":0},{"x":1568705220000,"y":0},{"x":1568705280000,"y":0},{"x":1568705340000,"y":0},{"x":1568705400000,"y":0},{"x":1568705460000,"y":0},{"x":1568705520000,"y":0},{"x":1568705580000,"y":0},{"x":1568705640000,"y":0},{"x":1568705700000,"y":0},{"x":1568705760000,"y":0},{"x":1568705820000,"y":0},{"x":1568705880000,"y":0},{"x":1568705940000,"y":0},{"x":1568706000000,"y":0.01},{"x":1568706060000,"y":0},{"x":1568706120000,"y":0},{"x":1568706180000,"y":0},{"x":1568706240000,"y":0},{"x":1568706300000,"y":0},{"x":1568706360000,"y":0.01},{"x":1568706420000,"y":0},{"x":1568706480000,"y":0},{"x":1568706540000,"y":0},{"x":1568706600000,"y":0},{"x":1568706660000,"y":0},{"x":1568706720000,"y":0},{"x":1568706780000,"y":0},{"x":1568706840000,"y":0},{"x":1568706900000,"y":0},{"x":1568706960000,"y":0},{"x":1568707020000,"y":0},{"x":1568707080000,"y":0},{"x":1568707140000,"y":0},{"x":1568707200000,"y":0},{"x":1568707260000,"y":0},{"x":1568707320000,"y":0},{"x":1568707380000,"y":0},{"x":1568707440000,"y":0},{"x":1568707500000,"y":0},{"x":1568707560000,"y":0},{"x":1568707620000,"y":0},{"x":1568707680000,"y":0},{"x":1568707740000,"y":0},{"x":1568707800000,"y":0},{"x":1568707860000,"y":0},{"x":1568707920000,"y":0},{"x":1568707980000,"y":0},{"x":1568708040000,"y":0},{"x":1568708100000,"y":0},{"x":1568708160000,"y":0},{"x":1568708220000,"y":0},{"x":1568708280000,"y":0},{"x":1568708340000,"y":0},{"x":1568708400000,"y":0},{"x":1568708460000,"y":0.01},{"x":1568708520000,"y":0},{"x":1568708580000,"y":0},{"x":1568708640000,"y":0},{"x":1568708700000,"y":0},{"x":1568708760000,"y":0},{"x":1568708820000,"y":0},{"x":1568708880000,"y":0},{"x":1568708940000,"y":0},{"x":1568709000000,"y":0},{"x":1568709060000,"y":0},{"x":1568709120000,"y":0},{"x":1568709180000,"y":0},{"x":1568709240000,"y":0},{"x":1568709300000,"y":0},{"x":1568709360000,"y":0},{"x":1568709420000,"y":0},{"x":1568709480000,"y":0},{"x":1568709540000,"y":0},{"x":1568709600000,"y":0},{"x":1568709660000,"y":0},{"x":1568709720000,"y":0},{"x":1568709780000,"y":0},{"x":1568709840000,"y":0},{"x":1568709900000,"y":0},{"x":1568709960000,"y":0.01},{"x":1568710020000,"y":0},{"x":1568710080000,"y":0},{"x":1568710140000,"y":0},{"x":1568710200000,"y":0},{"x":1568710260000,"y":0},{"x":1568710320000,"y":0},{"x":1568710380000,"y":0},{"x":1568710440000,"y":0},{"x":1568710500000,"y":0},{"x":1568710560000,"y":0},{"x":1568710620000,"y":0},{"x":1568710680000,"y":0},{"x":1568710740000,"y":0},{"x":1568710800000,"y":0},{"x":1568710860000,"y":0},{"x":1568710920000,"y":0},{"x":1568710980000,"y":0},{"x":1568711040000,"y":0},{"x":1568711100000,"y":0},{"x":1568711160000,"y":0.01},{"x":1568711220000,"y":0},{"x":1568711280000,"y":0},{"x":1568711340000,"y":0},{"x":1568711400000,"y":0},{"x":1568711460000,"y":0},{"x":1568711520000,"y":0},{"x":1568711580000,"y":0},{"x":1568711640000,"y":0},{"x":1568711700000,"y":0},{"x":1568711760000,"y":0},{"x":1568711820000,"y":0},{"x":1568711880000,"y":0},{"x":1568711940000,"y":0},{"x":1568712000000,"y":0},{"x":1568712060000,"y":0.01},{"x":1568712120000,"y":0},{"x":1568712180000,"y":0},{"x":1568712240000,"y":0},{"x":1568712300000,"y":0},{"x":1568712360000,"y":0},{"x":1568712420000,"y":0},{"x":1568712480000,"y":0},{"x":1568712540000,"y":0},{"x":1568712600000,"y":0},{"x":1568712660000,"y":0},{"x":1568712720000,"y":0.01},{"x":1568712780000,"y":0},{"x":1568712840000,"y":0},{"x":1568712900000,"y":0},{"x":1568712960000,"y":0},{"x":1568713020000,"y":0},{"x":1568713080000,"y":0},{"x":1568713140000,"y":0},{"x":1568713200000,"y":0},{"x":1568713260000,"y":0},{"x":1568713320000,"y":0},{"x":1568713380000,"y":0},{"x":1568713440000,"y":0},{"x":1568713500000,"y":0},{"x":1568713560000,"y":0.01},{"x":1568713620000,"y":0},{"x":1568713680000,"y":0},{"x":1568713740000,"y":0},{"x":1568713800000,"y":0},{"x":1568713860000,"y":0},{"x":1568713920000,"y":0},{"x":1568713980000,"y":0},{"x":1568714040000,"y":0},{"x":1568714100000,"y":0},{"x":1568714160000,"y":0},{"x":1568714220000,"y":0},{"x":1568714280000,"y":0},{"x":1568714340000,"y":0},{"x":1568714400000,"y":0},{"x":1568714460000,"y":0},{"x":1568714520000,"y":0},{"x":1568714580000,"y":0},{"x":1568714640000,"y":0},{"x":1568714700000,"y":0},{"x":1568714760000,"y":0.01},{"x":1568714820000,"y":0},{"x":1568714880000,"y":0},{"x":1568714940000,"y":0},{"x":1568715000000,"y":0.04},{"x":1568715060000,"y":0},{"x":1568715120000,"y":0},{"x":1568715180000,"y":0},{"x":1568715240000,"y":0},{"x":1568715300000,"y":0},{"x":1568715360000,"y":0},{"x":1568715420000,"y":0},{"x":1568715480000,"y":0},{"x":1568715540000,"y":0},{"x":1568715600000,"y":0},{"x":1568715660000,"y":0.01},{"x":1568715720000,"y":0},{"x":1568715780000,"y":0},{"x":1568715840000,"y":0},{"x":1568715900000,"y":0},{"x":1568715960000,"y":0},{"x":1568716020000,"y":0},{"x":1568716080000,"y":0},{"x":1568716140000,"y":0},{"x":1568716200000,"y":0},{"x":1568716260000,"y":0},{"x":1568716320000,"y":0},{"x":1568716380000,"y":0},{"x":1568716440000,"y":0.01},{"x":1568716500000,"y":0},{"x":1568716560000,"y":0},{"x":1568716620000,"y":0},{"x":1568716680000,"y":0},{"x":1568716740000,"y":0},{"x":1568716800000,"y":0},{"x":1568716860000,"y":0},{"x":1568716920000,"y":0},{"x":1568716980000,"y":0},{"x":1568717040000,"y":0},{"x":1568717100000,"y":0},{"x":1568717160000,"y":0.01},{"x":1568717220000,"y":0},{"x":1568717280000,"y":0},{"x":1568717340000,"y":0},{"x":1568717400000,"y":0},{"x":1568717460000,"y":0},{"x":1568717520000,"y":0},{"x":1568717580000,"y":0},{"x":1568717640000,"y":0},{"x":1568717700000,"y":0},{"x":1568717760000,"y":0.01},{"x":1568717820000,"y":0},{"x":1568717880000,"y":0},{"x":1568717940000,"y":0},{"x":1568718000000,"y":0},{"x":1568718060000,"y":0},{"x":1568718120000,"y":0},{"x":1568718180000,"y":0},{"x":1568718240000,"y":0},{"x":1568718300000,"y":0},{"x":1568718360000,"y":0},{"x":1568718420000,"y":0},{"x":1568718480000,"y":0},{"x":1568718540000,"y":0},{"x":1568718600000,"y":0},{"x":1568718660000,"y":0},{"x":1568718720000,"y":0},{"x":1568718780000,"y":0},{"x":1568718840000,"y":0},{"x":1568718900000,"y":0},{"x":1568718960000,"y":0},{"x":1568719020000,"y":0},{"x":1568719080000,"y":0},{"x":1568719140000,"y":0},{"x":1568719200000,"y":0},{"x":1568719260000,"y":0.01},{"x":1568719320000,"y":0},{"x":1568719380000,"y":0.01},{"x":1568719440000,"y":0},{"x":1568719500000,"y":0},{"x":1568719560000,"y":0},{"x":1568719620000,"y":0},{"x":1568719680000,"y":0},{"x":1568719740000,"y":0},{"x":1568719800000,"y":0},{"x":1568719860000,"y":0},{"x":1568719920000,"y":0},{"x":1568719980000,"y":0},{"x":1568720040000,"y":0},{"x":1568720100000,"y":0},{"x":1568720160000,"y":0},{"x":1568720220000,"y":0},{"x":1568720280000,"y":0},{"x":1568720340000,"y":0},{"x":1568720400000,"y":0},{"x":1568720460000,"y":0},{"x":1568720520000,"y":0},{"x":1568720580000,"y":0},{"x":1568720640000,"y":0},{"x":1568720700000,"y":0},{"x":1568720760000,"y":0.01},{"x":1568720820000,"y":0},{"x":1568720880000,"y":0},{"x":1568720940000,"y":0},{"x":1568721000000,"y":0},{"x":1568721060000,"y":0},{"x":1568721120000,"y":0},{"x":1568721180000,"y":0},{"x":1568721240000,"y":0},{"x":1568721300000,"y":0},{"x":1568721360000,"y":0},{"x":1568721420000,"y":0},{"x":1568721480000,"y":0},{"x":1568721540000,"y":0},{"x":1568721600000,"y":0},{"x":1568721660000,"y":0},{"x":1568721720000,"y":0},{"x":1568721780000,"y":0},{"x":1568721840000,"y":0},{"x":1568721900000,"y":0},{"x":1568721960000,"y":0},{"x":1568722020000,"y":0},{"x":1568722080000,"y":0},{"x":1568722140000,"y":0},{"x":1568722200000,"y":0},{"x":1568722260000,"y":0},{"x":1568722320000,"y":0},{"x":1568722380000,"y":0},{"x":1568722440000,"y":0},{"x":1568722500000,"y":0},{"x":1568722560000,"y":0},{"x":1568722620000,"y":0},{"x":1568722680000,"y":0},{"x":1568722740000,"y":0},{"x":1568722800000,"y":0},{"x":1568722860000,"y":0.01},{"x":1568722920000,"y":0},{"x":1568722980000,"y":0},{"x":1568723040000,"y":0},{"x":1568723100000,"y":0},{"x":1568723160000,"y":0},{"x":1568723220000,"y":0},{"x":1568723280000,"y":0},{"x":1568723340000,"y":0},{"x":1568723400000,"y":0},{"x":1568723460000,"y":0},{"x":1568723520000,"y":0},{"x":1568723580000,"y":0},{"x":1568723640000,"y":0},{"x":1568723700000,"y":0},{"x":1568723760000,"y":0},{"x":1568723820000,"y":0},{"x":1568723880000,"y":0},{"x":1568723940000,"y":0},{"x":1568724000000,"y":0},{"x":1568724060000,"y":0},{"x":1568724120000,"y":0},{"x":1568724180000,"y":0},{"x":1568724240000,"y":0},{"x":1568724300000,"y":0},{"x":1568724360000,"y":0.01},{"x":1568724420000,"y":0},{"x":1568724480000,"y":0},{"x":1568724540000,"y":0},{"x":1568724600000,"y":0},{"x":1568724660000,"y":0},{"x":1568724720000,"y":0},{"x":1568724780000,"y":0},{"x":1568724840000,"y":0},{"x":1568724900000,"y":0},{"x":1568724960000,"y":0},{"x":1568725020000,"y":0},{"x":1568725080000,"y":0},{"x":1568725140000,"y":0},{"x":1568725200000,"y":0},{"x":1568725260000,"y":0},{"x":1568725320000,"y":0},{"x":1568725380000,"y":0},{"x":1568725440000,"y":0},{"x":1568725500000,"y":0},{"x":1568725560000,"y":0},{"x":1568725620000,"y":0},{"x":1568725680000,"y":0},{"x":1568725740000,"y":0},{"x":1568725800000,"y":0},{"x":1568725860000,"y":0},{"x":1568725920000,"y":0},{"x":1568725980000,"y":0},{"x":1568726040000,"y":0},{"x":1568726100000,"y":0},{"x":1568726160000,"y":0},{"x":1568726220000,"y":0},{"x":1568726280000,"y":0},{"x":1568726340000,"y":0},{"x":1568726400000,"y":0},{"x":1568726460000,"y":0.01},{"x":1568726520000,"y":0},{"x":1568726580000,"y":0},{"x":1568726640000,"y":0},{"x":1568726700000,"y":0},{"x":1568726760000,"y":0},{"x":1568726820000,"y":0},{"x":1568726880000,"y":0},{"x":1568726940000,"y":0},{"x":1568727000000,"y":0},{"x":1568727060000,"y":0},{"x":1568727120000,"y":0},{"x":1568727180000,"y":0},{"x":1568727240000,"y":0},{"x":1568727300000,"y":0},{"x":1568727360000,"y":0},{"x":1568727420000,"y":0},{"x":1568727480000,"y":0},{"x":1568727540000,"y":0},{"x":1568727600000,"y":0},{"x":1568727660000,"y":0},{"x":1568727720000,"y":0},{"x":1568727780000,"y":0},{"x":1568727840000,"y":0},{"x":1568727900000,"y":0},{"x":1568727960000,"y":0.01},{"x":1568728020000,"y":0},{"x":1568728080000,"y":0},{"x":1568728140000,"y":0},{"x":1568728200000,"y":0},{"x":1568728260000,"y":0},{"x":1568728320000,"y":0},{"x":1568728380000,"y":0},{"x":1568728440000,"y":0},{"x":1568728500000,"y":0},{"x":1568728560000,"y":0},{"x":1568728620000,"y":0},{"x":1568728680000,"y":0},{"x":1568728740000,"y":0},{"x":1568728800000,"y":0},{"x":1568728860000,"y":0},{"x":1568728920000,"y":0},{"x":1568728980000,"y":0},{"x":1568729040000,"y":0},{"x":1568729100000,"y":0},{"x":1568729160000,"y":0},{"x":1568729220000,"y":0},{"x":1568729280000,"y":0},{"x":1568729340000,"y":0},{"x":1568729400000,"y":0},{"x":1568729460000,"y":0},{"x":1568729520000,"y":0},{"x":1568729580000,"y":0},{"x":1568729640000,"y":0},{"x":1568729700000,"y":0},{"x":1568729760000,"y":0},{"x":1568729820000,"y":0},{"x":1568729880000,"y":0},{"x":1568729940000,"y":0},{"x":1568730000000,"y":0},{"x":1568730060000,"y":0.01},{"x":1568730120000,"y":0},{"x":1568730180000,"y":0},{"x":1568730240000,"y":0},{"x":1568730300000,"y":0},{"x":1568730360000,"y":0},{"x":1568730420000,"y":0},{"x":1568730480000,"y":0},{"x":1568730540000,"y":0},{"x":1568730600000,"y":0},{"x":1568730660000,"y":0},{"x":1568730720000,"y":0},{"x":1568730780000,"y":0},{"x":1568730840000,"y":0},{"x":1568730900000,"y":0},{"x":1568730960000,"y":0},{"x":1568731020000,"y":0},{"x":1568731080000,"y":0},{"x":1568731140000,"y":0},{"x":1568731200000,"y":0},{"x":1568731260000,"y":0},{"x":1568731320000,"y":0},{"x":1568731380000,"y":0},{"x":1568731440000,"y":0},{"x":1568731500000,"y":0},{"x":1568731560000,"y":0},{"x":1568731620000,"y":0},{"x":1568731680000,"y":0.01},{"x":1568731740000,"y":0},{"x":1568731800000,"y":0},{"x":1568731860000,"y":0},{"x":1568731920000,"y":0},{"x":1568731980000,"y":0},{"x":1568732040000,"y":0},{"x":1568732100000,"y":0},{"x":1568732160000,"y":0},{"x":1568732220000,"y":0},{"x":1568732280000,"y":0},{"x":1568732340000,"y":0},{"x":1568732400000,"y":0},{"x":1568732460000,"y":0},{"x":1568732520000,"y":0},{"x":1568732580000,"y":0},{"x":1568732640000,"y":0},{"x":1568732700000,"y":0},{"x":1568732760000,"y":0},{"x":1568732820000,"y":0},{"x":1568732880000,"y":0},{"x":1568732940000,"y":0},{"x":1568733000000,"y":0},{"x":1568733060000,"y":0},{"x":1568733120000,"y":0},{"x":1568733180000,"y":0},{"x":1568733240000,"y":0},{"x":1568733300000,"y":0},{"x":1568733360000,"y":0},{"x":1568733420000,"y":0},{"x":1568733480000,"y":0},{"x":1568733540000,"y":0.56},{"x":1568733600000,"y":0},{"x":1568733660000,"y":0},{"x":1568733720000,"y":0},{"x":1568733780000,"y":0},{"x":1568733840000,"y":0},{"x":1568733900000,"y":0},{"x":1568733960000,"y":0},{"x":1568734020000,"y":0},{"x":1568734080000,"y":0},{"x":1568734140000,"y":0},{"x":1568734200000,"y":0},{"x":1568734260000,"y":0},{"x":1568734320000,"y":0.02},{"x":1568734380000,"y":0},{"x":1568734440000,"y":0},{"x":1568734500000,"y":0.03},{"x":1568734560000,"y":0.01},{"x":1568734620000,"y":0},{"x":1568734680000,"y":0},{"x":1568734740000,"y":0},{"x":1568734800000,"y":0},{"x":1568734860000,"y":0},{"x":1568734920000,"y":0},{"x":1568734980000,"y":0},{"x":1568735040000,"y":0},{"x":1568735100000,"y":0},{"x":1568735160000,"y":0},{"x":1568735220000,"y":0},{"x":1568735280000,"y":0},{"x":1568735340000,"y":0.05},{"x":1568735400000,"y":0.07},{"x":1568735460000,"y":0.06},{"x":1568735520000,"y":0},{"x":1568735580000,"y":0},{"x":1568735640000,"y":0},{"x":1568735700000,"y":0},{"x":1568735760000,"y":0.01},{"x":1568735820000,"y":0},{"x":1568735880000,"y":0},{"x":1568735940000,"y":0},{"x":1568736000000,"y":0},{"x":1568736060000,"y":0},{"x":1568736120000,"y":0},{"x":1568736180000,"y":0.01},{"x":1568736240000,"y":0.01},{"x":1568736300000,"y":0.69},{"x":1568736360000,"y":1.75},{"x":1568736420000,"y":0},{"x":1568736480000,"y":1.42},{"x":1568736540000,"y":0},{"x":1568736600000,"y":0},{"x":1568736660000,"y":0},{"x":1568736720000,"y":0},{"x":1568736780000,"y":0},{"x":1568736840000,"y":0},{"x":1568736900000,"y":0},{"x":1568736960000,"y":0},{"x":1568737020000,"y":0},{"x":1568737080000,"y":0},{"x":1568737140000,"y":0},{"x":1568737200000,"y":0},{"x":1568737260000,"y":1.67},{"x":1568737320000,"y":0.82},{"x":1568737380000,"y":14.39},{"x":1568737440000,"y":16.11},{"x":1568737500000,"y":15.8},{"x":1568737560000,"y":58.96},{"x":1568737620000,"y":4.85},{"x":1568737680000,"y":0.02},{"x":1568737740000,"y":0},{"x":1568737800000,"y":0},{"x":1568737860000,"y":0},{"x":1568737920000,"y":0.02},{"x":1568737980000,"y":0},{"x":1568738040000,"y":0.02},{"x":1568738100000,"y":0.02},{"x":1568738160000,"y":0},{"x":1568738220000,"y":0.04},{"x":1568738280000,"y":0.21},{"x":1568738340000,"y":0.4},{"x":1568738400000,"y":0.01},{"x":1568738460000,"y":0},{"x":1568738520000,"y":0},{"x":1568738580000,"y":0.04},{"x":1568738640000,"y":0.01},{"x":1568738700000,"y":0.01},{"x":1568738760000,"y":0.05},{"x":1568738820000,"y":0.02},{"x":1568738880000,"y":0.02},{"x":1568738940000,"y":0},{"x":1568739000000,"y":0},{"x":1568739060000,"y":0},{"x":1568739120000,"y":0},{"x":1568739180000,"y":0},{"x":1568739240000,"y":0},{"x":1568739300000,"y":0},{"x":1568739360000,"y":0},{"x":1568739420000,"y":0},{"x":1568739480000,"y":0},{"x":1568739540000,"y":0},{"x":1568739600000,"y":0},{"x":1568739660000,"y":0},{"x":1568739720000,"y":0},{"x":1568739780000,"y":0},{"x":1568739840000,"y":0},{"x":1568739900000,"y":0},{"x":1568739960000,"y":0},{"x":1568740020000,"y":0},{"x":1568740080000,"y":0},{"x":1568740140000,"y":0},{"x":1568740200000,"y":0},{"x":1568740260000,"y":0},{"x":1568740320000,"y":0},{"x":1568740380000,"y":0},{"x":1568740440000,"y":0},{"x":1568740500000,"y":0},{"x":1568740560000,"y":0},{"x":1568740620000,"y":0},{"x":1568740680000,"y":0},{"x":1568740740000,"y":0},{"x":1568740800000,"y":0},{"x":1568740860000,"y":0},{"x":1568740920000,"y":0},{"x":1568740980000,"y":0},{"x":1568741040000,"y":0},{"x":1568741100000,"y":0},{"x":1568741160000,"y":0},{"x":1568741220000,"y":0},{"x":1568741280000,"y":0},{"x":1568741340000,"y":0},{"x":1568741400000,"y":0},{"x":1568741460000,"y":0},{"x":1568741520000,"y":0},{"x":1568741580000,"y":0},{"x":1568741640000,"y":0},{"x":1568741700000,"y":0},{"x":1568741760000,"y":0},{"x":1568741820000,"y":0},{"x":1568741880000,"y":0},{"x":1568741940000,"y":0},{"x":1568742000000,"y":0},{"x":1568742060000,"y":0},{"x":1568742120000,"y":0},{"x":1568742180000,"y":0},{"x":1568742240000,"y":0},{"x":1568742300000,"y":0},{"x":1568742360000,"y":0.01},{"x":1568742420000,"y":0},{"x":1568742480000,"y":0},{"x":1568742540000,"y":0},{"x":1568742600000,"y":0},{"x":1568742660000,"y":0},{"x":1568742720000,"y":0},{"x":1568742780000,"y":0},{"x":1568742840000,"y":0},{"x":1568742900000,"y":0},{"x":1568742960000,"y":0.01},{"x":1568743020000,"y":0},{"x":1568743080000,"y":0},{"x":1568743140000,"y":0},{"x":1568743200000,"y":0},{"x":1568743260000,"y":0},{"x":1568743320000,"y":0},{"x":1568743380000,"y":0},{"x":1568743440000,"y":0},{"x":1568743500000,"y":0},{"x":1568743560000,"y":0},{"x":1568743620000,"y":0},{"x":1568743680000,"y":0},{"x":1568743740000,"y":0},{"x":1568743800000,"y":0},{"x":1568743860000,"y":0},{"x":1568743920000,"y":0},{"x":1568743980000,"y":0},{"x":1568744040000,"y":0},{"x":1568744100000,"y":0},{"x":1568744160000,"y":0},{"x":1568744220000,"y":0},{"x":1568744280000,"y":0},{"x":1568744340000,"y":0},{"x":1568744400000,"y":0},{"x":1568744460000,"y":0},{"x":1568744520000,"y":0},{"x":1568744580000,"y":0},{"x":1568744640000,"y":0},{"x":1568744700000,"y":0},{"x":1568744760000,"y":0},{"x":1568744820000,"y":0},{"x":1568744880000,"y":0},{"x":1568744940000,"y":0},{"x":1568745000000,"y":0},{"x":1568745060000,"y":0},{"x":1568745120000,"y":0},{"x":1568745180000,"y":0},{"x":1568745240000,"y":0},{"x":1568745300000,"y":0},{"x":1568745360000,"y":0},{"x":1568745420000,"y":0},{"x":1568745480000,"y":0},{"x":1568745540000,"y":0},{"x":1568745600000,"y":0},{"x":1568745660000,"y":0},{"x":1568745720000,"y":0},{"x":1568745780000,"y":0},{"x":1568745840000,"y":0},{"x":1568745900000,"y":0},{"x":1568745960000,"y":0},{"x":1568746020000,"y":0},{"x":1568746080000,"y":0},{"x":1568746140000,"y":0},{"x":1568746200000,"y":0},{"x":1568746260000,"y":0},{"x":1568746320000,"y":0},{"x":1568746380000,"y":0},{"x":1568746440000,"y":0},{"x":1568746500000,"y":0},{"x":1568746560000,"y":0},{"x":1568746620000,"y":0},{"x":1568746680000,"y":0},{"x":1568746740000,"y":0},{"x":1568746800000,"y":0},{"x":1568746860000,"y":0},{"x":1568746920000,"y":0},{"x":1568746980000,"y":0},{"x":1568747040000,"y":0},{"x":1568747100000,"y":0.03},{"x":1568747160000,"y":0},{"x":1568747220000,"y":0},{"x":1568747280000,"y":0},{"x":1568747340000,"y":0},{"x":1568747400000,"y":0},{"x":1568747460000,"y":0.09},{"x":1568747520000,"y":0},{"x":1568747580000,"y":0.03},{"x":1568747640000,"y":0},{"x":1568747700000,"y":0},{"x":1568747760000,"y":0},{"x":1568747820000,"y":0},{"x":1568747880000,"y":0},{"x":1568747940000,"y":0},{"x":1568748000000,"y":0},{"x":1568748060000,"y":0},{"x":1568748120000,"y":0},{"x":1568748180000,"y":1.33},{"x":1568748240000,"y":0},{"x":1568748300000,"y":0},{"x":1568748360000,"y":0},{"x":1568748420000,"y":0},{"x":1568748480000,"y":0},{"x":1568748540000,"y":0},{"x":1568748600000,"y":0},{"x":1568748660000,"y":0},{"x":1568748720000,"y":0},{"x":1568748780000,"y":0},{"x":1568748840000,"y":0},{"x":1568748900000,"y":0},{"x":1568748960000,"y":0},{"x":1568749020000,"y":0},{"x":1568749080000,"y":0},{"x":1568749140000,"y":0.04},{"x":1568749200000,"y":0},{"x":1568749260000,"y":0.17},{"x":1568749320000,"y":0},{"x":1568749380000,"y":0},{"x":1568749440000,"y":0},{"x":1568749500000,"y":0},{"x":1568749560000,"y":0},{"x":1568749620000,"y":0},{"x":1568749680000,"y":0},{"x":1568749740000,"y":0},{"x":1568749800000,"y":0},{"x":1568749860000,"y":0},{"x":1568749920000,"y":0},{"x":1568749980000,"y":0.14},{"x":1568750040000,"y":0},{"x":1568750100000,"y":0},{"x":1568750160000,"y":0},{"x":1568750220000,"y":0},{"x":1568750280000,"y":0},{"x":1568750340000,"y":0},{"x":1568750400000,"y":0},{"x":1568750460000,"y":0},{"x":1568750520000,"y":0},{"x":1568750580000,"y":0},{"x":1568750640000,"y":0},{"x":1568750700000,"y":0},{"x":1568750760000,"y":0},{"x":1568750820000,"y":0},{"x":1568750880000,"y":0},{"x":1568750940000,"y":0},{"x":1568751000000,"y":0},{"x":1568751060000,"y":0},{"x":1568751120000,"y":0},{"x":1568751180000,"y":0},{"x":1568751240000,"y":0},{"x":1568751300000,"y":0},{"x":1568751360000,"y":0},{"x":1568751420000,"y":0},{"x":1568751480000,"y":0},{"x":1568751540000,"y":0},{"x":1568751600000,"y":0},{"x":1568751660000,"y":0},{"x":1568751720000,"y":0},{"x":1568751780000,"y":0},{"x":1568751840000,"y":0},{"x":1568751900000,"y":0},{"x":1568751960000,"y":0},{"x":1568752020000,"y":0},{"x":1568752080000,"y":0},{"x":1568752140000,"y":0},{"x":1568752200000,"y":0},{"x":1568752260000,"y":0},{"x":1568752320000,"y":0},{"x":1568752380000,"y":0},{"x":1568752440000,"y":0},{"x":1568752500000,"y":0},{"x":1568752560000,"y":0},{"x":1568752620000,"y":0},{"x":1568752680000,"y":0},{"x":1568752740000,"y":0},{"x":1568752800000,"y":0},{"x":1568752860000,"y":0},{"x":1568752920000,"y":0},{"x":1568752980000,"y":0},{"x":1568753040000,"y":0},{"x":1568753100000,"y":0},{"x":1568753160000,"y":0},{"x":1568753220000,"y":0},{"x":1568753280000,"y":0.02},{"x":1568753340000,"y":0},{"x":1568753400000,"y":0},{"x":1568753460000,"y":0},{"x":1568753520000,"y":0},{"x":1568753580000,"y":0},{"x":1568753640000,"y":0},{"x":1568753700000,"y":0},{"x":1568753760000,"y":0},{"x":1568753820000,"y":0},{"x":1568753880000,"y":0},{"x":1568753940000,"y":0},{"x":1568754000000,"y":0},{"x":1568754060000,"y":0},{"x":1568754120000,"y":0},{"x":1568754180000,"y":0},{"x":1568754240000,"y":0},{"x":1568754300000,"y":0},{"x":1568754360000,"y":0},{"x":1568754420000,"y":0},{"x":1568754480000,"y":0},{"x":1568754540000,"y":0},{"x":1568754600000,"y":0},{"x":1568754660000,"y":0},{"x":1568754720000,"y":0},{"x":1568754780000,"y":0.17},{"x":1568754840000,"y":0.16},{"x":1568754900000,"y":0},{"x":1568754960000,"y":0},{"x":1568755020000,"y":0},{"x":1568755080000,"y":0},{"x":1568755140000,"y":0},{"x":1568755200000,"y":0},{"x":1568755260000,"y":0},{"x":1568755320000,"y":0},{"x":1568755380000,"y":0},{"x":1568755440000,"y":0},{"x":1568755500000,"y":0},{"x":1568755560000,"y":0},{"x":1568755620000,"y":0},{"x":1568755680000,"y":0},{"x":1568755740000,"y":0},{"x":1568755800000,"y":0},{"x":1568755860000,"y":0},{"x":1568755920000,"y":0},{"x":1568755980000,"y":0},{"x":1568756040000,"y":0},{"x":1568756100000,"y":0},{"x":1568756160000,"y":0},{"x":1568756220000,"y":0},{"x":1568756280000,"y":0.05},{"x":1568756340000,"y":0},{"x":1568756400000,"y":0},{"x":1568756460000,"y":0.01},{"x":1568756520000,"y":0},{"x":1568756580000,"y":0},{"x":1568756640000,"y":0},{"x":1568756700000,"y":0},{"x":1568756760000,"y":0.01},{"x":1568756820000,"y":0},{"x":1568756880000,"y":0.01},{"x":1568756940000,"y":0},{"x":1568757000000,"y":0.01},{"x":1568757060000,"y":0.01},{"x":1568757120000,"y":0},{"x":1568757180000,"y":0},{"x":1568757240000,"y":0},{"x":1568757300000,"y":0},{"x":1568757360000,"y":0.01},{"x":1568757420000,"y":0.01},{"x":1568757480000,"y":0},{"x":1568757540000,"y":0},{"x":1568757600000,"y":0},{"x":1568757660000,"y":0},{"x":1568757720000,"y":0},{"x":1568757780000,"y":0},{"x":1568757840000,"y":0},{"x":1568757900000,"y":0},{"x":1568757960000,"y":0},{"x":1568758020000,"y":0},{"x":1568758080000,"y":0},{"x":1568758140000,"y":0},{"x":1568758200000,"y":0},{"x":1568758260000,"y":0},{"x":1568758320000,"y":0},{"x":1568758380000,"y":0},{"x":1568758440000,"y":0},{"x":1568758500000,"y":0},{"x":1568758560000,"y":0},{"x":1568758620000,"y":0},{"x":1568758680000,"y":0},{"x":1568758740000,"y":0},{"x":1568758800000,"y":0},{"x":1568758860000,"y":0},{"x":1568758920000,"y":0},{"x":1568758980000,"y":0},{"x":1568759040000,"y":0},{"x":1568759100000,"y":0},{"x":1568759160000,"y":0},{"x":1568759220000,"y":0},{"x":1568759280000,"y":0},{"x":1568759340000,"y":0},{"x":1568759400000,"y":0},{"x":1568759460000,"y":0},{"x":1568759520000,"y":0},{"x":1568759580000,"y":0},{"x":1568759640000,"y":0},{"x":1568759700000,"y":0},{"x":1568759760000,"y":0},{"x":1568759820000,"y":0},{"x":1568759880000,"y":0},{"x":1568759940000,"y":0},{"x":1568760000000,"y":0},{"x":1568760060000,"y":0},{"x":1568760120000,"y":0},{"x":1568760180000,"y":0},{"x":1568760240000,"y":0},{"x":1568760300000,"y":0},{"x":1568760360000,"y":0.01},{"x":1568760420000,"y":0},{"x":1568760480000,"y":0.01},{"x":1568760540000,"y":0.01},{"x":1568760600000,"y":0},{"x":1568760660000,"y":0},{"x":1568760720000,"y":0},{"x":1568760780000,"y":0},{"x":1568760840000,"y":0},{"x":1568760900000,"y":0},{"x":1568760960000,"y":0.02},{"x":1568761020000,"y":0},{"x":1568761080000,"y":0},{"x":1568761140000,"y":0},{"x":1568761200000,"y":0.01},{"x":1568761260000,"y":0},{"x":1568761320000,"y":0},{"x":1568761380000,"y":0},{"x":1568761440000,"y":0},{"x":1568761500000,"y":0},{"x":1568761560000,"y":0},{"x":1568761620000,"y":0},{"x":1568761680000,"y":0},{"x":1568761740000,"y":0},{"x":1568761800000,"y":0},{"x":1568761860000,"y":0},{"x":1568761920000,"y":0},{"x":1568761980000,"y":0},{"x":1568762040000,"y":0},{"x":1568762100000,"y":0},{"x":1568762160000,"y":0},{"x":1568762220000,"y":0},{"x":1568762280000,"y":0},{"x":1568762340000,"y":0},{"x":1568762400000,"y":0},{"x":1568762460000,"y":0},{"x":1568762520000,"y":0},{"x":1568762580000,"y":0},{"x":1568762640000,"y":0},{"x":1568762700000,"y":0},{"x":1568762760000,"y":0},{"x":1568762820000,"y":0},{"x":1568762880000,"y":0},{"x":1568762940000,"y":0},{"x":1568763000000,"y":0},{"x":1568763060000,"y":0},{"x":1568763120000,"y":0},{"x":1568763180000,"y":0},{"x":1568763240000,"y":0},{"x":1568763300000,"y":0},{"x":1568763360000,"y":0},{"x":1568763420000,"y":0},{"x":1568763480000,"y":0},{"x":1568763540000,"y":0},{"x":1568763600000,"y":0},{"x":1568763660000,"y":0},{"x":1568763720000,"y":0},{"x":1568763780000,"y":0},{"x":1568763840000,"y":0},{"x":1568763900000,"y":0},{"x":1568763960000,"y":0},{"x":1568764020000,"y":0},{"x":1568764080000,"y":0},{"x":1568764140000,"y":0},{"x":1568764200000,"y":0},{"x":1568764260000,"y":0},{"x":1568764320000,"y":0},{"x":1568764380000,"y":0},{"x":1568764440000,"y":0},{"x":1568764500000,"y":0},{"x":1568764560000,"y":0},{"x":1568764620000,"y":0},{"x":1568764680000,"y":0.56},{"x":1568764740000,"y":0},{"x":1568764800000,"y":0},{"x":1568764860000,"y":0},{"x":1568764920000,"y":0},{"x":1568764980000,"y":0},{"x":1568765040000,"y":0},{"x":1568765100000,"y":0},{"x":1568765160000,"y":0},{"x":1568765220000,"y":0},{"x":1568765280000,"y":0},{"x":1568765340000,"y":0},{"x":1568765400000,"y":0},{"x":1568765460000,"y":0},{"x":1568765520000,"y":0},{"x":1568765580000,"y":0},{"x":1568765640000,"y":0},{"x":1568765700000,"y":0},{"x":1568765760000,"y":0},{"x":1568765820000,"y":0},{"x":1568765880000,"y":0.01},{"x":1568765940000,"y":0},{"x":1568766000000,"y":0},{"x":1568766060000,"y":0},{"x":1568766120000,"y":0},{"x":1568766180000,"y":0},{"x":1568766240000,"y":0},{"x":1568766300000,"y":0},{"x":1568766360000,"y":0},{"x":1568766420000,"y":0},{"x":1568766480000,"y":0},{"x":1568766540000,"y":0},{"x":1568766600000,"y":0},{"x":1568766660000,"y":0},{"x":1568766720000,"y":0},{"x":1568766780000,"y":0},{"x":1568766840000,"y":0},{"x":1568766900000,"y":0},{"x":1568766960000,"y":0},{"x":1568767020000,"y":0},{"x":1568767080000,"y":0},{"x":1568767140000,"y":0},{"x":1568767200000,"y":0},{"x":1568767260000,"y":0},{"x":1568767320000,"y":0},{"x":1568767380000,"y":0},{"x":1568767440000,"y":0},{"x":1568767500000,"y":0},{"x":1568767560000,"y":0},{"x":1568767620000,"y":0},{"x":1568767680000,"y":0},{"x":1568767740000,"y":0},{"x":1568767800000,"y":0},{"x":1568767860000,"y":0},{"x":1568767920000,"y":0},{"x":1568767980000,"y":0},{"x":1568768040000,"y":0},{"x":1568768100000,"y":0},{"x":1568768160000,"y":0},{"x":1568768220000,"y":0},{"x":1568768280000,"y":0},{"x":1568768340000,"y":0.01},{"x":1568768400000,"y":0},{"x":1568768460000,"y":0},{"x":1568768520000,"y":0},{"x":1568768580000,"y":0},{"x":1568768640000,"y":0},{"x":1568768700000,"y":0},{"x":1568768760000,"y":0},{"x":1568768820000,"y":0},{"x":1568768880000,"y":0},{"x":1568768940000,"y":0},{"x":1568769000000,"y":0},{"x":1568769060000,"y":0},{"x":1568769120000,"y":0},{"x":1568769180000,"y":0},{"x":1568769240000,"y":0},{"x":1568769300000,"y":0},{"x":1568769360000,"y":0},{"x":1568769420000,"y":0},{"x":1568769480000,"y":0},{"x":1568769540000,"y":0},{"x":1568769600000,"y":0},{"x":1568769660000,"y":0},{"x":1568769720000,"y":0},{"x":1568769780000,"y":0},{"x":1568769840000,"y":0},{"x":1568769900000,"y":0},{"x":1568769960000,"y":0},{"x":1568770020000,"y":0},{"x":1568770080000,"y":0},{"x":1568770140000,"y":0},{"x":1568770200000,"y":0},{"x":1568770260000,"y":0},{"x":1568770320000,"y":0},{"x":1568770380000,"y":0},{"x":1568770440000,"y":0},{"x":1568770500000,"y":0},{"x":1568770560000,"y":0},{"x":1568770620000,"y":0},{"x":1568770680000,"y":0},{"x":1568770740000,"y":0},{"x":1568770800000,"y":0},{"x":1568770860000,"y":0},{"x":1568770920000,"y":0},{"x":1568770980000,"y":0},{"x":1568771040000,"y":0},{"x":1568771100000,"y":0},{"x":1568771160000,"y":0},{"x":1568771220000,"y":0},{"x":1568771280000,"y":0},{"x":1568771340000,"y":0},{"x":1568771400000,"y":0},{"x":1568771460000,"y":0},{"x":1568771520000,"y":0},{"x":1568771580000,"y":0},{"x":1568771640000,"y":0},{"x":1568771700000,"y":0},{"x":1568771760000,"y":0},{"x":1568771820000,"y":0},{"x":1568771880000,"y":0},{"x":1568771940000,"y":0},{"x":1568772000000,"y":0},{"x":1568772060000,"y":0},{"x":1568772120000,"y":0},{"x":1568772180000,"y":0},{"x":1568772240000,"y":0},{"x":1568772300000,"y":0},{"x":1568772360000,"y":0},{"x":1568772420000,"y":0},{"x":1568772480000,"y":0},{"x":1568772540000,"y":0},{"x":1568772600000,"y":0},{"x":1568772660000,"y":0},{"x":1568772720000,"y":0},{"x":1568772780000,"y":0},{"x":1568772840000,"y":0},{"x":1568772900000,"y":0},{"x":1568772960000,"y":0},{"x":1568773020000,"y":0},{"x":1568773080000,"y":0},{"x":1568773140000,"y":0},{"x":1568773200000,"y":0},{"x":1568773260000,"y":0},{"x":1568773320000,"y":0},{"x":1568773380000,"y":0},{"x":1568773440000,"y":0},{"x":1568773500000,"y":0},{"x":1568773560000,"y":0},{"x":1568773620000,"y":0},{"x":1568773680000,"y":0},{"x":1568773740000,"y":0},{"x":1568773800000,"y":0},{"x":1568773860000,"y":0},{"x":1568773920000,"y":0},{"x":1568773980000,"y":0},{"x":1568774040000,"y":0},{"x":1568774100000,"y":0},{"x":1568774160000,"y":0},{"x":1568774220000,"y":0},{"x":1568774280000,"y":0},{"x":1568774340000,"y":0},{"x":1568774400000,"y":0},{"x":1568774460000,"y":0},{"x":1568774520000,"y":0},{"x":1568774580000,"y":0},{"x":1568774640000,"y":0},{"x":1568774700000,"y":0},{"x":1568774760000,"y":0},{"x":1568774820000,"y":0},{"x":1568774880000,"y":0},{"x":1568774940000,"y":0},{"x":1568775000000,"y":0},{"x":1568775060000,"y":0},{"x":1568775120000,"y":0},{"x":1568775180000,"y":0.02},{"x":1568775240000,"y":0},{"x":1568775300000,"y":0},{"x":1568775360000,"y":0},{"x":1568775420000,"y":0.01},{"x":1568775480000,"y":0},{"x":1568775540000,"y":0},{"x":1568775600000,"y":0},{"x":1568775660000,"y":0.01},{"x":1568775720000,"y":0.01},{"x":1568775780000,"y":0.01},{"x":1568775840000,"y":0},{"x":1568775900000,"y":0},{"x":1568775960000,"y":0},{"x":1568776020000,"y":0},{"x":1568776080000,"y":0},{"x":1568776140000,"y":0},{"x":1568776200000,"y":0},{"x":1568776260000,"y":0},{"x":1568776320000,"y":0},{"x":1568776380000,"y":0},{"x":1568776440000,"y":0},{"x":1568776500000,"y":0},{"x":1568776560000,"y":0},{"x":1568776620000,"y":0},{"x":1568776680000,"y":0},{"x":1568776740000,"y":0},{"x":1568776800000,"y":0},{"x":1568776860000,"y":0},{"x":1568776920000,"y":0},{"x":1568776980000,"y":0},{"x":1568777040000,"y":0},{"x":1568777100000,"y":0},{"x":1568777160000,"y":0},{"x":1568777220000,"y":0},{"x":1568777280000,"y":0},{"x":1568777340000,"y":0},{"x":1568777400000,"y":0},{"x":1568777460000,"y":0},{"x":1568777520000,"y":0},{"x":1568777580000,"y":0},{"x":1568777640000,"y":0},{"x":1568777700000,"y":0},{"x":1568777760000,"y":0},{"x":1568777820000,"y":0},{"x":1568777880000,"y":0},{"x":1568777940000,"y":0},{"x":1568778000000,"y":0},{"x":1568778060000,"y":0},{"x":1568778120000,"y":0},{"x":1568778180000,"y":0},{"x":1568778240000,"y":0},{"x":1568778300000,"y":0.01},{"x":1568778360000,"y":0},{"x":1568778420000,"y":0},{"x":1568778480000,"y":0},{"x":1568778540000,"y":0},{"x":1568778600000,"y":0},{"x":1568778660000,"y":0},{"x":1568778720000,"y":0},{"x":1568778780000,"y":0},{"x":1568778840000,"y":0},{"x":1568778900000,"y":0},{"x":1568778960000,"y":0},{"x":1568779020000,"y":0},{"x":1568779080000,"y":0},{"x":1568779140000,"y":0},{"x":1568779200000,"y":0},{"x":1568779260000,"y":0},{"x":1568779320000,"y":0},{"x":1568779380000,"y":0},{"x":1568779440000,"y":0},{"x":1568779500000,"y":0},{"x":1568779560000,"y":0},{"x":1568779620000,"y":0},{"x":1568779680000,"y":0},{"x":1568779740000,"y":0},{"x":1568779800000,"y":0},{"x":1568779860000,"y":0},{"x":1568779920000,"y":0},{"x":1568779980000,"y":0},{"x":1568780040000,"y":0},{"x":1568780100000,"y":0},{"x":1568780160000,"y":0},{"x":1568780220000,"y":0},{"x":1568780280000,"y":0},{"x":1568780340000,"y":0.01},{"x":1568780400000,"y":0},{"x":1568780460000,"y":0},{"x":1568780520000,"y":0},{"x":1568780580000,"y":0},{"x":1568780640000,"y":0},{"x":1568780700000,"y":0},{"x":1568780760000,"y":0},{"x":1568780820000,"y":0},{"x":1568780880000,"y":0},{"x":1568780940000,"y":0},{"x":1568781000000,"y":0},{"x":1568781060000,"y":0},{"x":1568781120000,"y":0},{"x":1568781180000,"y":0},{"x":1568781240000,"y":0},{"x":1568781300000,"y":0},{"x":1568781360000,"y":0},{"x":1568781420000,"y":0},{"x":1568781480000,"y":0},{"x":1568781540000,"y":0},{"x":1568781600000,"y":0},{"x":1568781660000,"y":0},{"x":1568781720000,"y":0},{"x":1568781780000,"y":0},{"x":1568781840000,"y":0},{"x":1568781900000,"y":0},{"x":1568781960000,"y":0},{"x":1568782020000,"y":0},{"x":1568782080000,"y":0},{"x":1568782140000,"y":0},{"x":1568782200000,"y":0},{"x":1568782260000,"y":0},{"x":1568782320000,"y":0},{"x":1568782380000,"y":0},{"x":1568782440000,"y":0},{"x":1568782500000,"y":0},{"x":1568782560000,"y":0},{"x":1568782620000,"y":0},{"x":1568782680000,"y":0},{"x":1568782740000,"y":0},{"x":1568782800000,"y":0},{"x":1568782860000,"y":0},{"x":1568782920000,"y":0},{"x":1568782980000,"y":0},{"x":1568783040000,"y":0},{"x":1568783100000,"y":0},{"x":1568783160000,"y":0},{"x":1568783220000,"y":0},{"x":1568783280000,"y":0},{"x":1568783340000,"y":0},{"x":1568783400000,"y":0},{"x":1568783460000,"y":0},{"x":1568783520000,"y":0},{"x":1568783580000,"y":0},{"x":1568783640000,"y":0},{"x":1568783700000,"y":0},{"x":1568783760000,"y":0},{"x":1568783820000,"y":0},{"x":1568783880000,"y":0},{"x":1568783940000,"y":0},{"x":1568784000000,"y":0},{"x":1568784060000,"y":0},{"x":1568784120000,"y":0},{"x":1568784180000,"y":0},{"x":1568784240000,"y":0.01},{"x":1568784300000,"y":0},{"x":1568784360000,"y":0},{"x":1568784420000,"y":0},{"x":1568784480000,"y":0},{"x":1568784540000,"y":0},{"x":1568784600000,"y":0},{"x":1568784660000,"y":0},{"x":1568784720000,"y":0},{"x":1568784780000,"y":0},{"x":1568784840000,"y":0},{"x":1568784900000,"y":0},{"x":1568784960000,"y":0},{"x":1568785020000,"y":0},{"x":1568785080000,"y":0},{"x":1568785140000,"y":0},{"x":1568785200000,"y":0},{"x":1568785260000,"y":0},{"x":1568785320000,"y":0},{"x":1568785380000,"y":0},{"x":1568785440000,"y":0},{"x":1568785500000,"y":0},{"x":1568785560000,"y":0},{"x":1568785620000,"y":0},{"x":1568785680000,"y":0},{"x":1568785740000,"y":0},{"x":1568785800000,"y":0},{"x":1568785860000,"y":0},{"x":1568785920000,"y":0},{"x":1568785980000,"y":0},{"x":1568786040000,"y":0},{"x":1568786100000,"y":0},{"x":1568786160000,"y":0},{"x":1568786220000,"y":0},{"x":1568786280000,"y":0},{"x":1568786340000,"y":0},{"x":1568786400000,"y":0},{"x":1568786460000,"y":0},{"x":1568786520000,"y":0},{"x":1568786580000,"y":0},{"x":1568786640000,"y":0},{"x":1568786700000,"y":0},{"x":1568786760000,"y":0},{"x":1568786820000,"y":0},{"x":1568786880000,"y":0},{"x":1568786940000,"y":0},{"x":1568787000000,"y":0},{"x":1568787060000,"y":0},{"x":1568787120000,"y":0},{"x":1568787180000,"y":0},{"x":1568787240000,"y":0},{"x":1568787300000,"y":0},{"x":1568787360000,"y":0},{"x":1568787420000,"y":0},{"x":1568787480000,"y":0},{"x":1568787540000,"y":0},{"x":1568787600000,"y":0},{"x":1568787660000,"y":0},{"x":1568787720000,"y":0},{"x":1568787780000,"y":0},{"x":1568787840000,"y":0},{"x":1568787900000,"y":0},{"x":1568787960000,"y":0},{"x":1568788020000,"y":0},{"x":1568788080000,"y":0},{"x":1568788140000,"y":0},{"x":1568788200000,"y":0},{"x":1568788260000,"y":0},{"x":1568788320000,"y":0},{"x":1568788380000,"y":0.01},{"x":1568788440000,"y":0},{"x":1568788500000,"y":0},{"x":1568788560000,"y":0},{"x":1568788620000,"y":0},{"x":1568788680000,"y":0},{"x":1568788740000,"y":0},{"x":1568788800000,"y":0},{"x":1568788860000,"y":0},{"x":1568788920000,"y":0},{"x":1568788980000,"y":0},{"x":1568789040000,"y":0},{"x":1568789100000,"y":0},{"x":1568789160000,"y":0},{"x":1568789220000,"y":0},{"x":1568789280000,"y":0},{"x":1568789340000,"y":0},{"x":1568789400000,"y":0},{"x":1568789460000,"y":0},{"x":1568789520000,"y":0},{"x":1568789580000,"y":0},{"x":1568789640000,"y":0},{"x":1568789700000,"y":0},{"x":1568789760000,"y":0},{"x":1568789820000,"y":0},{"x":1568789880000,"y":0},{"x":1568789940000,"y":0},{"x":1568790000000,"y":0},{"x":1568790060000,"y":0},{"x":1568790120000,"y":0},{"x":1568790180000,"y":0},{"x":1568790240000,"y":0},{"x":1568790300000,"y":0},{"x":1568790360000,"y":0},{"x":1568790420000,"y":0},{"x":1568790480000,"y":0},{"x":1568790540000,"y":0},{"x":1568790600000,"y":0},{"x":1568790660000,"y":0},{"x":1568790720000,"y":0},{"x":1568790780000,"y":0},{"x":1568790840000,"y":0},{"x":1568790900000,"y":0},{"x":1568790960000,"y":0},{"x":1568791020000,"y":0},{"x":1568791080000,"y":0},{"x":1568791140000,"y":0},{"x":1568791200000,"y":0},{"x":1568791260000,"y":0},{"x":1568791320000,"y":0},{"x":1568791380000,"y":0},{"x":1568791440000,"y":0},{"x":1568791500000,"y":0},{"x":1568791560000,"y":0},{"x":1568791620000,"y":0},{"x":1568791680000,"y":0},{"x":1568791740000,"y":0},{"x":1568791800000,"y":0},{"x":1568791860000,"y":0},{"x":1568791920000,"y":0},{"x":1568791980000,"y":0},{"x":1568792040000,"y":0},{"x":1568792100000,"y":0},{"x":1568792160000,"y":0},{"x":1568792220000,"y":0},{"x":1568792280000,"y":0},{"x":1568792340000,"y":0},{"x":1568792400000,"y":0.01},{"x":1568792460000,"y":0},{"x":1568792520000,"y":0},{"x":1568792580000,"y":0},{"x":1568792640000,"y":0},{"x":1568792700000,"y":0},{"x":1568792760000,"y":0},{"x":1568792820000,"y":0},{"x":1568792880000,"y":0},{"x":1568792940000,"y":0},{"x":1568793000000,"y":0},{"x":1568793060000,"y":0},{"x":1568793120000,"y":0},{"x":1568793180000,"y":0},{"x":1568793240000,"y":0},{"x":1568793300000,"y":0},{"x":1568793360000,"y":0},{"x":1568793420000,"y":0},{"x":1568793480000,"y":0},{"x":1568793540000,"y":0},{"x":1568793600000,"y":0},{"x":1568793660000,"y":0},{"x":1568793720000,"y":0},{"x":1568793780000,"y":0},{"x":1568793840000,"y":0},{"x":1568793900000,"y":0},{"x":1568793960000,"y":0},{"x":1568794020000,"y":0},{"x":1568794080000,"y":0},{"x":1568794140000,"y":0},{"x":1568794200000,"y":0},{"x":1568794260000,"y":0},{"x":1568794320000,"y":0},{"x":1568794380000,"y":0},{"x":1568794440000,"y":0},{"x":1568794500000,"y":0},{"x":1568794560000,"y":0},{"x":1568794620000,"y":0},{"x":1568794680000,"y":0},{"x":1568794740000,"y":0},{"x":1568794800000,"y":0},{"x":1568794860000,"y":0},{"x":1568794920000,"y":0},{"x":1568794980000,"y":0},{"x":1568795040000,"y":0},{"x":1568795100000,"y":0},{"x":1568795160000,"y":0},{"x":1568795220000,"y":0},{"x":1568795280000,"y":0},{"x":1568795340000,"y":0},{"x":1568795400000,"y":0},{"x":1568795460000,"y":0},{"x":1568795520000,"y":0},{"x":1568795580000,"y":0},{"x":1568795640000,"y":0},{"x":1568795700000,"y":0},{"x":1568795760000,"y":0},{"x":1568795820000,"y":0},{"x":1568795880000,"y":0},{"x":1568795940000,"y":0},{"x":1568796000000,"y":0},{"x":1568796060000,"y":0},{"x":1568796120000,"y":0},{"x":1568796180000,"y":0},{"x":1568796240000,"y":0},{"x":1568796300000,"y":0},{"x":1568796360000,"y":0},{"x":1568796420000,"y":0},{"x":1568796480000,"y":0},{"x":1568796540000,"y":0},{"x":1568796600000,"y":0},{"x":1568796660000,"y":0},{"x":1568796720000,"y":0},{"x":1568796780000,"y":0},{"x":1568796840000,"y":0},{"x":1568796900000,"y":0},{"x":1568796960000,"y":0},{"x":1568797020000,"y":0},{"x":1568797080000,"y":0},{"x":1568797140000,"y":0},{"x":1568797200000,"y":0},{"x":1568797260000,"y":0},{"x":1568797320000,"y":0},{"x":1568797380000,"y":0},{"x":1568797440000,"y":0},{"x":1568797500000,"y":0},{"x":1568797560000,"y":0},{"x":1568797620000,"y":0},{"x":1568797680000,"y":0},{"x":1568797740000,"y":0},{"x":1568797800000,"y":0},{"x":1568797860000,"y":0},{"x":1568797920000,"y":0},{"x":1568797980000,"y":0},{"x":1568798040000,"y":0},{"x":1568798100000,"y":0},{"x":1568798160000,"y":0},{"x":1568798220000,"y":0},{"x":1568798280000,"y":0},{"x":1568798340000,"y":0},{"x":1568798400000,"y":0},{"x":1568798460000,"y":0},{"x":1568798520000,"y":0},{"x":1568798580000,"y":0},{"x":1568798640000,"y":0},{"x":1568798700000,"y":0},{"x":1568798760000,"y":0},{"x":1568798820000,"y":0},{"x":1568798880000,"y":0},{"x":1568798940000,"y":0},{"x":1568799000000,"y":0},{"x":1568799060000,"y":0},{"x":1568799120000,"y":0},{"x":1568799180000,"y":0},{"x":1568799240000,"y":0},{"x":1568799300000,"y":0},{"x":1568799360000,"y":0},{"x":1568799420000,"y":0},{"x":1568799480000,"y":0},{"x":1568799540000,"y":0},{"x":1568799600000,"y":0},{"x":1568799660000,"y":0},{"x":1568799720000,"y":0},{"x":1568799780000,"y":0},{"x":1568799840000,"y":0},{"x":1568799900000,"y":0},{"x":1568799960000,"y":0},{"x":1568800020000,"y":0},{"x":1568800080000,"y":0},{"x":1568800140000,"y":0.01},{"x":1568800200000,"y":0},{"x":1568800260000,"y":0},{"x":1568800320000,"y":0},{"x":1568800380000,"y":0},{"x":1568800440000,"y":0},{"x":1568800500000,"y":0},{"x":1568800560000,"y":0},{"x":1568800620000,"y":0},{"x":1568800680000,"y":0},{"x":1568800740000,"y":0},{"x":1568800800000,"y":0},{"x":1568800860000,"y":0},{"x":1568800920000,"y":0},{"x":1568800980000,"y":0},{"x":1568801040000,"y":0},{"x":1568801100000,"y":0},{"x":1568801160000,"y":0},{"x":1568801220000,"y":0},{"x":1568801280000,"y":0},{"x":1568801340000,"y":0},{"x":1568801400000,"y":0},{"x":1568801460000,"y":0},{"x":1568801520000,"y":0},{"x":1568801580000,"y":0},{"x":1568801640000,"y":0},{"x":1568801700000,"y":0},{"x":1568801760000,"y":0},{"x":1568801820000,"y":0},{"x":1568801880000,"y":0},{"x":1568801940000,"y":0},{"x":1568802000000,"y":0},{"x":1568802060000,"y":0},{"x":1568802120000,"y":0},{"x":1568802180000,"y":0},{"x":1568802240000,"y":0},{"x":1568802300000,"y":0},{"x":1568802360000,"y":0},{"x":1568802420000,"y":0},{"x":1568802480000,"y":0},{"x":1568802540000,"y":0},{"x":1568802600000,"y":0},{"x":1568802660000,"y":0},{"x":1568802720000,"y":0},{"x":1568802780000,"y":0},{"x":1568802840000,"y":0},{"x":1568802900000,"y":0},{"x":1568802960000,"y":0},{"x":1568803020000,"y":0},{"x":1568803080000,"y":0},{"x":1568803140000,"y":0},{"x":1568803200000,"y":0},{"x":1568803260000,"y":0},{"x":1568803320000,"y":0},{"x":1568803380000,"y":0},{"x":1568803440000,"y":0},{"x":1568803500000,"y":0},{"x":1568803560000,"y":0},{"x":1568803620000,"y":0},{"x":1568803680000,"y":0},{"x":1568803740000,"y":0},{"x":1568803800000,"y":0},{"x":1568803860000,"y":0},{"x":1568803920000,"y":0},{"x":1568803980000,"y":0},{"x":1568804040000,"y":0},{"x":1568804100000,"y":0},{"x":1568804160000,"y":0},{"x":1568804220000,"y":0},{"x":1568804280000,"y":0},{"x":1568804340000,"y":0},{"x":1568804400000,"y":0},{"x":1568804460000,"y":0},{"x":1568804520000,"y":0},{"x":1568804580000,"y":0},{"x":1568804640000,"y":0},{"x":1568804700000,"y":0},{"x":1568804760000,"y":0},{"x":1568804820000,"y":0},{"x":1568804880000,"y":0},{"x":1568804940000,"y":0},{"x":1568805000000,"y":0},{"x":1568805060000,"y":0},{"x":1568805120000,"y":0},{"x":1568805180000,"y":0},{"x":1568805240000,"y":0},{"x":1568805300000,"y":0},{"x":1568805360000,"y":0},{"x":1568805420000,"y":0},{"x":1568805480000,"y":0},{"x":1568805540000,"y":0},{"x":1568805600000,"y":0},{"x":1568805660000,"y":0},{"x":1568805720000,"y":0},{"x":1568805780000,"y":0},{"x":1568805840000,"y":0},{"x":1568805900000,"y":0},{"x":1568805960000,"y":0},{"x":1568806020000,"y":0},{"x":1568806080000,"y":0},{"x":1568806140000,"y":0},{"x":1568806200000,"y":0},{"x":1568806260000,"y":0},{"x":1568806320000,"y":0},{"x":1568806380000,"y":0},{"x":1568806440000,"y":0},{"x":1568806500000,"y":0},{"x":1568806560000,"y":0},{"x":1568806620000,"y":0},{"x":1568806680000,"y":0},{"x":1568806740000,"y":0},{"x":1568806800000,"y":0},{"x":1568806860000,"y":0},{"x":1568806920000,"y":0},{"x":1568806980000,"y":0},{"x":1568807040000,"y":0},{"x":1568807100000,"y":0},{"x":1568807160000,"y":0},{"x":1568807220000,"y":0},{"x":1568807280000,"y":0},{"x":1568807340000,"y":0},{"x":1568807400000,"y":0},{"x":1568807460000,"y":0},{"x":1568807520000,"y":0},{"x":1568807580000,"y":0},{"x":1568807640000,"y":0},{"x":1568807700000,"y":0},{"x":1568807760000,"y":0},{"x":1568807820000,"y":0},{"x":1568807880000,"y":0},{"x":1568807940000,"y":0},{"x":1568808000000,"y":0},{"x":1568808060000,"y":0},{"x":1568808120000,"y":0},{"x":1568808180000,"y":0},{"x":1568808240000,"y":0},{"x":1568808300000,"y":0},{"x":1568808360000,"y":0},{"x":1568808420000,"y":0},{"x":1568808480000,"y":0.02},{"x":1568808540000,"y":0},{"x":1568808600000,"y":0},{"x":1568808660000,"y":0},{"x":1568808720000,"y":0},{"x":1568808780000,"y":0.01},{"x":1568808840000,"y":0},{"x":1568808900000,"y":0},{"x":1568808960000,"y":0},{"x":1568809020000,"y":0},{"x":1568809080000,"y":0},{"x":1568809140000,"y":0},{"x":1568809200000,"y":0},{"x":1568809260000,"y":0},{"x":1568809320000,"y":0},{"x":1568809380000,"y":0},{"x":1568809440000,"y":0},{"x":1568809500000,"y":0},{"x":1568809560000,"y":0},{"x":1568809620000,"y":0},{"x":1568809680000,"y":0},{"x":1568809740000,"y":0},{"x":1568809800000,"y":0},{"x":1568809860000,"y":0},{"x":1568809920000,"y":0},{"x":1568809980000,"y":0},{"x":1568810040000,"y":0},{"x":1568810100000,"y":0},{"x":1568810160000,"y":0},{"x":1568810220000,"y":0},{"x":1568810280000,"y":0},{"x":1568810340000,"y":0},{"x":1568810400000,"y":0},{"x":1568810460000,"y":0},{"x":1568810520000,"y":0},{"x":1568810580000,"y":0},{"x":1568810640000,"y":0},{"x":1568810700000,"y":0},{"x":1568810760000,"y":0},{"x":1568810820000,"y":0},{"x":1568810880000,"y":0},{"x":1568810940000,"y":0},{"x":1568811000000,"y":0},{"x":1568811060000,"y":0},{"x":1568811120000,"y":0},{"x":1568811180000,"y":0},{"x":1568811240000,"y":0},{"x":1568811300000,"y":0},{"x":1568811360000,"y":0},{"x":1568811420000,"y":0},{"x":1568811480000,"y":0},{"x":1568811540000,"y":0},{"x":1568811600000,"y":0},{"x":1568811660000,"y":0},{"x":1568811720000,"y":0},{"x":1568811780000,"y":0},{"x":1568811840000,"y":0},{"x":1568811900000,"y":0},{"x":1568811960000,"y":0},{"x":1568812020000,"y":0},{"x":1568812080000,"y":0},{"x":1568812140000,"y":0},{"x":1568812200000,"y":0},{"x":1568812260000,"y":0},{"x":1568812320000,"y":0},{"x":1568812380000,"y":0},{"x":1568812440000,"y":0},{"x":1568812500000,"y":0},{"x":1568812560000,"y":0},{"x":1568812620000,"y":0},{"x":1568812680000,"y":0},{"x":1568812740000,"y":0},{"x":1568812800000,"y":0},{"x":1568812860000,"y":0},{"x":1568812920000,"y":0},{"x":1568812980000,"y":0},{"x":1568813040000,"y":0},{"x":1568813100000,"y":0},{"x":1568813160000,"y":0},{"x":1568813220000,"y":0},{"x":1568813280000,"y":0},{"x":1568813340000,"y":0},{"x":1568813400000,"y":0},{"x":1568813460000,"y":0},{"x":1568813520000,"y":0},{"x":1568813580000,"y":0},{"x":1568813640000,"y":0},{"x":1568813700000,"y":0},{"x":1568813760000,"y":0},{"x":1568813820000,"y":0},{"x":1568813880000,"y":0},{"x":1568813940000,"y":0},{"x":1568814000000,"y":0},{"x":1568814060000,"y":0},{"x":1568814120000,"y":0},{"x":1568814180000,"y":0},{"x":1568814240000,"y":0},{"x":1568814300000,"y":0},{"x":1568814360000,"y":0},{"x":1568814420000,"y":0},{"x":1568814480000,"y":0},{"x":1568814540000,"y":0},{"x":1568814600000,"y":0},{"x":1568814660000,"y":0},{"x":1568814720000,"y":0},{"x":1568814780000,"y":0},{"x":1568814840000,"y":0},{"x":1568814900000,"y":0},{"x":1568814960000,"y":0},{"x":1568815020000,"y":0},{"x":1568815080000,"y":0},{"x":1568815140000,"y":0},{"x":1568815200000,"y":0},{"x":1568815260000,"y":0},{"x":1568815320000,"y":0},{"x":1568815380000,"y":0},{"x":1568815440000,"y":0},{"x":1568815500000,"y":0},{"x":1568815560000,"y":0},{"x":1568815620000,"y":0},{"x":1568815680000,"y":0},{"x":1568815740000,"y":0},{"x":1568815800000,"y":0},{"x":1568815860000,"y":0},{"x":1568815920000,"y":0},{"x":1568815980000,"y":0},{"x":1568816040000,"y":0},{"x":1568816100000,"y":0},{"x":1568816160000,"y":0},{"x":1568816220000,"y":0},{"x":1568816280000,"y":0},{"x":1568816340000,"y":0},{"x":1568816400000,"y":0},{"x":1568816460000,"y":0},{"x":1568816520000,"y":0},{"x":1568816580000,"y":0},{"x":1568816640000,"y":0},{"x":1568816700000,"y":0},{"x":1568816760000,"y":0},{"x":1568816820000,"y":0},{"x":1568816880000,"y":0},{"x":1568816940000,"y":0},{"x":1568817000000,"y":0},{"x":1568817060000,"y":0},{"x":1568817120000,"y":0},{"x":1568817180000,"y":0},{"x":1568817240000,"y":0},{"x":1568817300000,"y":0},{"x":1568817360000,"y":0},{"x":1568817420000,"y":0},{"x":1568817480000,"y":0},{"x":1568817540000,"y":0},{"x":1568817600000,"y":0},{"x":1568817660000,"y":0},{"x":1568817720000,"y":0.01},{"x":1568817780000,"y":0},{"x":1568817840000,"y":0},{"x":1568817900000,"y":0},{"x":1568817960000,"y":0},{"x":1568818020000,"y":0.01},{"x":1568818080000,"y":0},{"x":1568818140000,"y":0},{"x":1568818200000,"y":0},{"x":1568818260000,"y":0},{"x":1568818320000,"y":0},{"x":1568818380000,"y":0},{"x":1568818440000,"y":0},{"x":1568818500000,"y":0},{"x":1568818560000,"y":0},{"x":1568818620000,"y":0},{"x":1568818680000,"y":0},{"x":1568818740000,"y":0},{"x":1568818800000,"y":0},{"x":1568818860000,"y":0},{"x":1568818920000,"y":0},{"x":1568818980000,"y":0},{"x":1568819040000,"y":0},{"x":1568819100000,"y":0},{"x":1568819160000,"y":0},{"x":1568819220000,"y":0},{"x":1568819280000,"y":0},{"x":1568819340000,"y":0},{"x":1568819400000,"y":0},{"x":1568819460000,"y":0},{"x":1568819520000,"y":0},{"x":1568819580000,"y":0},{"x":1568819640000,"y":0},{"x":1568819700000,"y":0},{"x":1568819760000,"y":0},{"x":1568819820000,"y":0},{"x":1568819880000,"y":0},{"x":1568819940000,"y":0},{"x":1568820000000,"y":0},{"x":1568820060000,"y":0},{"x":1568820120000,"y":0},{"x":1568820180000,"y":0},{"x":1568820240000,"y":0},{"x":1568820300000,"y":0},{"x":1568820360000,"y":0},{"x":1568820420000,"y":0},{"x":1568820480000,"y":0},{"x":1568820540000,"y":0},{"x":1568820600000,"y":0},{"x":1568820660000,"y":0},{"x":1568820720000,"y":0},{"x":1568820780000,"y":0},{"x":1568820840000,"y":0},{"x":1568820900000,"y":0},{"x":1568820960000,"y":0},{"x":1568821020000,"y":0},{"x":1568821080000,"y":0},{"x":1568821140000,"y":0},{"x":1568821200000,"y":0},{"x":1568821260000,"y":0},{"x":1568821320000,"y":0},{"x":1568821380000,"y":0},{"x":1568821440000,"y":0},{"x":1568821500000,"y":0},{"x":1568821560000,"y":0},{"x":1568821620000,"y":0},{"x":1568821680000,"y":0},{"x":1568821740000,"y":0},{"x":1568821800000,"y":0},{"x":1568821860000,"y":0},{"x":1568821920000,"y":0},{"x":1568821980000,"y":0},{"x":1568822040000,"y":0.01},{"x":1568822100000,"y":0},{"x":1568822160000,"y":0},{"x":1568822220000,"y":0},{"x":1568822280000,"y":0},{"x":1568822340000,"y":0},{"x":1568822400000,"y":0},{"x":1568822460000,"y":0},{"x":1568822520000,"y":0},{"x":1568822580000,"y":0},{"x":1568822640000,"y":0},{"x":1568822700000,"y":0},{"x":1568822760000,"y":0},{"x":1568822820000,"y":0},{"x":1568822880000,"y":0},{"x":1568822940000,"y":0},{"x":1568823000000,"y":0},{"x":1568823060000,"y":0},{"x":1568823120000,"y":0},{"x":1568823180000,"y":0},{"x":1568823240000,"y":0},{"x":1568823300000,"y":0},{"x":1568823360000,"y":0},{"x":1568823420000,"y":0},{"x":1568823480000,"y":0},{"x":1568823540000,"y":0},{"x":1568823600000,"y":0},{"x":1568823660000,"y":0},{"x":1568823720000,"y":0},{"x":1568823780000,"y":0},{"x":1568823840000,"y":0},{"x":1568823900000,"y":0},{"x":1568823960000,"y":0},{"x":1568824020000,"y":0},{"x":1568824080000,"y":0},{"x":1568824140000,"y":0},{"x":1568824200000,"y":0},{"x":1568824260000,"y":0},{"x":1568824320000,"y":0},{"x":1568824380000,"y":0},{"x":1568824440000,"y":0},{"x":1568824500000,"y":0},{"x":1568824560000,"y":0},{"x":1568824620000,"y":0},{"x":1568824680000,"y":0},{"x":1568824740000,"y":0},{"x":1568824800000,"y":0},{"x":1568824860000,"y":0},{"x":1568824920000,"y":0},{"x":1568824980000,"y":0},{"x":1568825040000,"y":0},{"x":1568825100000,"y":0},{"x":1568825160000,"y":0},{"x":1568825220000,"y":0},{"x":1568825280000,"y":0},{"x":1568825340000,"y":0},{"x":1568825400000,"y":0},{"x":1568825460000,"y":0},{"x":1568825520000,"y":0},{"x":1568825580000,"y":0},{"x":1568825640000,"y":0},{"x":1568825700000,"y":0},{"x":1568825760000,"y":0},{"x":1568825820000,"y":0},{"x":1568825880000,"y":0.02},{"x":1568825940000,"y":0.01},{"x":1568826000000,"y":0.02},{"x":1568826060000,"y":0.01},{"x":1568826120000,"y":0.01},{"x":1568826180000,"y":0.01},{"x":1568826240000,"y":0.01},{"x":1568826300000,"y":0.01},{"x":1568826360000,"y":0.02},{"x":1568826420000,"y":0},{"x":1568826480000,"y":0.01},{"x":1568826540000,"y":0.01},{"x":1568826600000,"y":0.02},{"x":1568826660000,"y":0},{"x":1568826720000,"y":0.01},{"x":1568826780000,"y":0.01},{"x":1568826840000,"y":0.01},{"x":1568826900000,"y":0.01},{"x":1568826960000,"y":0.02},{"x":1568827020000,"y":0},{"x":1568827080000,"y":0.01},{"x":1568827140000,"y":0.01},{"x":1568827200000,"y":0.01},{"x":1568827260000,"y":0.01},{"x":1568827320000,"y":0.01},{"x":1568827380000,"y":0.01},{"x":1568827440000,"y":0.01},{"x":1568827500000,"y":0.01},{"x":1568827560000,"y":0.01},{"x":1568827620000,"y":0.01},{"x":1568827680000,"y":0.01},{"x":1568827740000,"y":0.01},{"x":1568827800000,"y":0.01},{"x":1568827860000,"y":0.01},{"x":1568827920000,"y":0.02},{"x":1568827980000,"y":0},{"x":1568828040000,"y":0.02},{"x":1568828100000,"y":0.01},{"x":1568828160000,"y":0.02},{"x":1568828220000,"y":0.01},{"x":1568828280000,"y":0.01},{"x":1568828340000,"y":0.01},{"x":1568828400000,"y":0.04},{"x":1568828460000,"y":0},{"x":1568828520000,"y":0.01},{"x":1568828580000,"y":0.01},{"x":1568828640000,"y":0.02},{"x":1568828700000,"y":0.01},{"x":1568828760000,"y":0.02},{"x":1568828820000,"y":0.01},{"x":1568828880000,"y":0.02},{"x":1568828940000,"y":0},{"x":1568829000000,"y":0.01},{"x":1568829060000,"y":0.01},{"x":1568829120000,"y":0.02},{"x":1568829180000,"y":0.01},{"x":1568829240000,"y":0.02},{"x":1568829300000,"y":0.01},{"x":1568829360000,"y":0.02},{"x":1568829420000,"y":0.01},{"x":1568829480000,"y":0.02},{"x":1568829540000,"y":0},{"x":1568829600000,"y":0.02},{"x":1568829660000,"y":0},{"x":1568829720000,"y":0.06},{"x":1568829780000,"y":0.11},{"x":1568829840000,"y":0.01},{"x":1568829900000,"y":0.02},{"x":1568829960000,"y":0},{"x":1568830020000,"y":0},{"x":1568830080000,"y":0},{"x":1568830140000,"y":0},{"x":1568830200000,"y":0},{"x":1568830260000,"y":0},{"x":1568830320000,"y":0},{"x":1568830380000,"y":0},{"x":1568830440000,"y":1.42},{"x":1568830500000,"y":0.02},{"x":1568830560000,"y":0},{"x":1568830620000,"y":0},{"x":1568830680000,"y":0},{"x":1568830740000,"y":0},{"x":1568830800000,"y":0},{"x":1568830860000,"y":0},{"x":1568830920000,"y":0},{"x":1568830980000,"y":0},{"x":1568831040000,"y":0},{"x":1568831100000,"y":0},{"x":1568831160000,"y":0},{"x":1568831220000,"y":0},{"x":1568831280000,"y":0},{"x":1568831340000,"y":0},{"x":1568831400000,"y":0},{"x":1568831460000,"y":0},{"x":1568831520000,"y":0},{"x":1568831580000,"y":0},{"x":1568831640000,"y":0},{"x":1568831700000,"y":0},{"x":1568831760000,"y":0},{"x":1568831820000,"y":0},{"x":1568831880000,"y":0},{"x":1568831940000,"y":0},{"x":1568832000000,"y":0},{"x":1568832060000,"y":0},{"x":1568832120000,"y":0},{"x":1568832180000,"y":0},{"x":1568832240000,"y":0},{"x":1568832300000,"y":0},{"x":1568832360000,"y":0},{"x":1568832420000,"y":0},{"x":1568832480000,"y":0},{"x":1568832540000,"y":0},{"x":1568832600000,"y":0},{"x":1568832660000,"y":0},{"x":1568832720000,"y":0},{"x":1568832780000,"y":0},{"x":1568832840000,"y":0},{"x":1568832900000,"y":0},{"x":1568832960000,"y":0},{"x":1568833020000,"y":0},{"x":1568833080000,"y":0},{"x":1568833140000,"y":0},{"x":1568833200000,"y":0},{"x":1568833260000,"y":0},{"x":1568833320000,"y":0},{"x":1568833380000,"y":0},{"x":1568833440000,"y":0},{"x":1568833500000,"y":0},{"x":1568833560000,"y":0},{"x":1568833620000,"y":0},{"x":1568833680000,"y":0},{"x":1568833740000,"y":0},{"x":1568833800000,"y":0},{"x":1568833860000,"y":0},{"x":1568833920000,"y":0},{"x":1568833980000,"y":0},{"x":1568834040000,"y":0},{"x":1568834100000,"y":0},{"x":1568834160000,"y":0},{"x":1568834220000,"y":0},{"x":1568834280000,"y":0},{"x":1568834340000,"y":0},{"x":1568834400000,"y":0},{"x":1568834460000,"y":0},{"x":1568834520000,"y":0},{"x":1568834580000,"y":0},{"x":1568834640000,"y":0},{"x":1568834700000,"y":0},{"x":1568834760000,"y":0},{"x":1568834820000,"y":0},{"x":1568834880000,"y":0},{"x":1568834940000,"y":0},{"x":1568835000000,"y":0},{"x":1568835060000,"y":0},{"x":1568835120000,"y":0},{"x":1568835180000,"y":0},{"x":1568835240000,"y":0},{"x":1568835300000,"y":0},{"x":1568835360000,"y":0},{"x":1568835420000,"y":0},{"x":1568835480000,"y":0},{"x":1568835540000,"y":0},{"x":1568835600000,"y":0},{"x":1568835660000,"y":0},{"x":1568835720000,"y":0},{"x":1568835780000,"y":0},{"x":1568835840000,"y":0},{"x":1568835900000,"y":0},{"x":1568835960000,"y":0},{"x":1568836020000,"y":0},{"x":1568836080000,"y":0},{"x":1568836140000,"y":0},{"x":1568836200000,"y":0},{"x":1568836260000,"y":0},{"x":1568836320000,"y":0},{"x":1568836380000,"y":0},{"x":1568836440000,"y":0},{"x":1568836500000,"y":0},{"x":1568836560000,"y":0},{"x":1568836620000,"y":0},{"x":1568836680000,"y":0},{"x":1568836740000,"y":0},{"x":1568836800000,"y":0},{"x":1568836860000,"y":0},{"x":1568836920000,"y":0},{"x":1568836980000,"y":0},{"x":1568837040000,"y":0},{"x":1568837100000,"y":0},{"x":1568837160000,"y":0},{"x":1568837220000,"y":0},{"x":1568837280000,"y":0},{"x":1568837340000,"y":0},{"x":1568837400000,"y":0},{"x":1568837460000,"y":0},{"x":1568837520000,"y":0},{"x":1568837580000,"y":0},{"x":1568837640000,"y":0},{"x":1568837700000,"y":0},{"x":1568837760000,"y":0},{"x":1568837820000,"y":0},{"x":1568837880000,"y":0},{"x":1568837940000,"y":0},{"x":1568838000000,"y":0},{"x":1568838060000,"y":0},{"x":1568838120000,"y":0},{"x":1568838180000,"y":0},{"x":1568838240000,"y":0},{"x":1568838300000,"y":0},{"x":1568838360000,"y":0.95},{"x":1568838420000,"y":1.16},{"x":1568838480000,"y":1.53},{"x":1568838540000,"y":0.04},{"x":1568838600000,"y":0},{"x":1568838660000,"y":1.77},{"x":1568838720000,"y":0.37},{"x":1568838780000,"y":0},{"x":1568838840000,"y":0},{"x":1568838900000,"y":0},{"x":1568838960000,"y":0},{"x":1568839020000,"y":0},{"x":1568839080000,"y":0},{"x":1568839140000,"y":0},{"x":1568839200000,"y":0},{"x":1568839260000,"y":0},{"x":1568839320000,"y":0},{"x":1568839380000,"y":0},{"x":1568839440000,"y":0},{"x":1568839500000,"y":0},{"x":1568839560000,"y":0},{"x":1568839620000,"y":0},{"x":1568839680000,"y":0},{"x":1568839740000,"y":0},{"x":1568839800000,"y":0},{"x":1568839860000,"y":0},{"x":1568839920000,"y":0},{"x":1568839980000,"y":0},{"x":1568840040000,"y":0},{"x":1568840100000,"y":0},{"x":1568840160000,"y":0},{"x":1568840220000,"y":0},{"x":1568840280000,"y":0},{"x":1568840340000,"y":0},{"x":1568840400000,"y":0},{"x":1568840460000,"y":0},{"x":1568840520000,"y":0},{"x":1568840580000,"y":0},{"x":1568840640000,"y":0},{"x":1568840700000,"y":0},{"x":1568840760000,"y":0},{"x":1568840820000,"y":0},{"x":1568840880000,"y":0},{"x":1568840940000,"y":0},{"x":1568841000000,"y":0},{"x":1568841060000,"y":0},{"x":1568841120000,"y":0},{"x":1568841180000,"y":0},{"x":1568841240000,"y":0},{"x":1568841300000,"y":0},{"x":1568841360000,"y":0},{"x":1568841420000,"y":0},{"x":1568841480000,"y":0},{"x":1568841540000,"y":0},{"x":1568841600000,"y":0},{"x":1568841660000,"y":0},{"x":1568841720000,"y":0},{"x":1568841780000,"y":0},{"x":1568841840000,"y":0},{"x":1568841900000,"y":0},{"x":1568841960000,"y":0},{"x":1568842020000,"y":0},{"x":1568842080000,"y":0},{"x":1568842140000,"y":0},{"x":1568842200000,"y":0},{"x":1568842260000,"y":0},{"x":1568842320000,"y":0},{"x":1568842380000,"y":0},{"x":1568842440000,"y":0},{"x":1568842500000,"y":0},{"x":1568842560000,"y":0},{"x":1568842620000,"y":0},{"x":1568842680000,"y":0},{"x":1568842740000,"y":0},{"x":1568842800000,"y":0},{"x":1568842860000,"y":0},{"x":1568842920000,"y":0},{"x":1568842980000,"y":0},{"x":1568843040000,"y":0},{"x":1568843100000,"y":0},{"x":1568843160000,"y":0},{"x":1568843220000,"y":0},{"x":1568843280000,"y":0},{"x":1568843340000,"y":0},{"x":1568843400000,"y":0},{"x":1568843460000,"y":0},{"x":1568843520000,"y":0},{"x":1568843580000,"y":0},{"x":1568843640000,"y":0},{"x":1568843700000,"y":0},{"x":1568843760000,"y":0},{"x":1568843820000,"y":0.01},{"x":1568843880000,"y":0},{"x":1568843940000,"y":0},{"x":1568844000000,"y":0},{"x":1568844060000,"y":0},{"x":1568844120000,"y":0},{"x":1568844180000,"y":0},{"x":1568844240000,"y":0},{"x":1568844300000,"y":0},{"x":1568844360000,"y":0},{"x":1568844420000,"y":0},{"x":1568844480000,"y":0},{"x":1568844540000,"y":0},{"x":1568844600000,"y":0},{"x":1568844660000,"y":0},{"x":1568844720000,"y":0},{"x":1568844780000,"y":0},{"x":1568844840000,"y":0},{"x":1568844900000,"y":0},{"x":1568844960000,"y":0},{"x":1568845020000,"y":0},{"x":1568845080000,"y":0.01},{"x":1568845140000,"y":0},{"x":1568845200000,"y":0},{"x":1568845260000,"y":0},{"x":1568845320000,"y":0},{"x":1568845380000,"y":0},{"x":1568845440000,"y":0},{"x":1568845500000,"y":0},{"x":1568845560000,"y":0},{"x":1568845620000,"y":0},{"x":1568845680000,"y":0},{"x":1568845740000,"y":0},{"x":1568845800000,"y":0},{"x":1568845860000,"y":0},{"x":1568845920000,"y":0},{"x":1568845980000,"y":0},{"x":1568846040000,"y":0},{"x":1568846100000,"y":0},{"x":1568846160000,"y":0},{"x":1568846220000,"y":0},{"x":1568846280000,"y":0},{"x":1568846340000,"y":0},{"x":1568846400000,"y":0},{"x":1568846460000,"y":0},{"x":1568846520000,"y":0},{"x":1568846580000,"y":0},{"x":1568846640000,"y":0},{"x":1568846700000,"y":0},{"x":1568846760000,"y":0},{"x":1568846820000,"y":0.01},{"x":1568846880000,"y":0},{"x":1568846940000,"y":0},{"x":1568847000000,"y":0},{"x":1568847060000,"y":0},{"x":1568847120000,"y":0},{"x":1568847180000,"y":0},{"x":1568847240000,"y":0},{"x":1568847300000,"y":0},{"x":1568847360000,"y":0},{"x":1568847420000,"y":0},{"x":1568847480000,"y":0},{"x":1568847540000,"y":0},{"x":1568847600000,"y":0},{"x":1568847660000,"y":0},{"x":1568847720000,"y":0},{"x":1568847780000,"y":0},{"x":1568847840000,"y":0},{"x":1568847900000,"y":0},{"x":1568847960000,"y":0},{"x":1568848020000,"y":0},{"x":1568848080000,"y":0},{"x":1568848140000,"y":0.01},{"x":1568848200000,"y":0},{"x":1568848260000,"y":0},{"x":1568848320000,"y":0},{"x":1568848380000,"y":0},{"x":1568848440000,"y":0},{"x":1568848500000,"y":0},{"x":1568848560000,"y":0},{"x":1568848620000,"y":0},{"x":1568848680000,"y":0},{"x":1568848740000,"y":0},{"x":1568848800000,"y":0},{"x":1568848860000,"y":0},{"x":1568848920000,"y":0},{"x":1568848980000,"y":0},{"x":1568849040000,"y":0},{"x":1568849100000,"y":0.16},{"x":1568849160000,"y":0},{"x":1568849220000,"y":0},{"x":1568849280000,"y":0},{"x":1568849340000,"y":0},{"x":1568849400000,"y":0},{"x":1568849460000,"y":0},{"x":1568849520000,"y":0},{"x":1568849580000,"y":0},{"x":1568849640000,"y":0},{"x":1568849700000,"y":0},{"x":1568849760000,"y":0},{"x":1568849820000,"y":0},{"x":1568849880000,"y":0},{"x":1568849940000,"y":0},{"x":1568850000000,"y":0},{"x":1568850060000,"y":0},{"x":1568850120000,"y":0},{"x":1568850180000,"y":0},{"x":1568850240000,"y":0},{"x":1568850300000,"y":0},{"x":1568850360000,"y":0},{"x":1568850420000,"y":0},{"x":1568850480000,"y":0},{"x":1568850540000,"y":0},{"x":1568850600000,"y":0},{"x":1568850660000,"y":0},{"x":1568850720000,"y":0},{"x":1568850780000,"y":0},{"x":1568850840000,"y":0},{"x":1568850900000,"y":0},{"x":1568850960000,"y":0},{"x":1568851020000,"y":0},{"x":1568851080000,"y":0},{"x":1568851140000,"y":0},{"x":1568851200000,"y":0},{"x":1568851260000,"y":0},{"x":1568851320000,"y":0},{"x":1568851380000,"y":0},{"x":1568851440000,"y":0},{"x":1568851500000,"y":0},{"x":1568851560000,"y":0},{"x":1568851620000,"y":0},{"x":1568851680000,"y":0},{"x":1568851740000,"y":0},{"x":1568851800000,"y":0},{"x":1568851860000,"y":0},{"x":1568851920000,"y":0},{"x":1568851980000,"y":0},{"x":1568852040000,"y":0},{"x":1568852100000,"y":0},{"x":1568852160000,"y":0},{"x":1568852220000,"y":0},{"x":1568852280000,"y":0},{"x":1568852340000,"y":0},{"x":1568852400000,"y":0},{"x":1568852460000,"y":0},{"x":1568852520000,"y":0},{"x":1568852580000,"y":0},{"x":1568852640000,"y":0},{"x":1568852700000,"y":0},{"x":1568852760000,"y":0},{"x":1568852820000,"y":0},{"x":1568852880000,"y":0},{"x":1568852940000,"y":0},{"x":1568853000000,"y":0},{"x":1568853060000,"y":0},{"x":1568853120000,"y":0},{"x":1568853180000,"y":0},{"x":1568853240000,"y":0},{"x":1568853300000,"y":0},{"x":1568853360000,"y":0},{"x":1568853420000,"y":0},{"x":1568853480000,"y":0},{"x":1568853540000,"y":0},{"x":1568853600000,"y":0},{"x":1568853660000,"y":0},{"x":1568853720000,"y":0},{"x":1568853780000,"y":0},{"x":1568853840000,"y":0},{"x":1568853900000,"y":0},{"x":1568853960000,"y":0},{"x":1568854020000,"y":0},{"x":1568854080000,"y":0},{"x":1568854140000,"y":0},{"x":1568854200000,"y":0},{"x":1568854260000,"y":0},{"x":1568854320000,"y":0},{"x":1568854380000,"y":0},{"x":1568854440000,"y":0},{"x":1568854500000,"y":0},{"x":1568854560000,"y":0},{"x":1568854620000,"y":0},{"x":1568854680000,"y":0},{"x":1568854740000,"y":0},{"x":1568854800000,"y":0},{"x":1568854860000,"y":0},{"x":1568854920000,"y":0},{"x":1568854980000,"y":0},{"x":1568855040000,"y":0},{"x":1568855100000,"y":0},{"x":1568855160000,"y":0},{"x":1568855220000,"y":0},{"x":1568855280000,"y":0},{"x":1568855340000,"y":0},{"x":1568855400000,"y":0},{"x":1568855460000,"y":0},{"x":1568855520000,"y":0},{"x":1568855580000,"y":0},{"x":1568855640000,"y":0},{"x":1568855700000,"y":0},{"x":1568855760000,"y":0},{"x":1568855820000,"y":0},{"x":1568855880000,"y":0},{"x":1568855940000,"y":0},{"x":1568856000000,"y":0},{"x":1568856060000,"y":0},{"x":1568856120000,"y":0},{"x":1568856180000,"y":0},{"x":1568856240000,"y":0},{"x":1568856300000,"y":0},{"x":1568856360000,"y":0},{"x":1568856420000,"y":0},{"x":1568856480000,"y":0},{"x":1568856540000,"y":0},{"x":1568856600000,"y":0},{"x":1568856660000,"y":0},{"x":1568856720000,"y":0},{"x":1568856780000,"y":0},{"x":1568856840000,"y":0},{"x":1568856900000,"y":0},{"x":1568856960000,"y":0},{"x":1568857020000,"y":0},{"x":1568857080000,"y":0},{"x":1568857140000,"y":0},{"x":1568857200000,"y":0},{"x":1568857260000,"y":0},{"x":1568857320000,"y":0},{"x":1568857380000,"y":0},{"x":1568857440000,"y":0.01},{"x":1568857500000,"y":0},{"x":1568857560000,"y":0},{"x":1568857620000,"y":0},{"x":1568857680000,"y":0},{"x":1568857740000,"y":0},{"x":1568857800000,"y":0},{"x":1568857860000,"y":0},{"x":1568857920000,"y":0},{"x":1568857980000,"y":0},{"x":1568858040000,"y":0},{"x":1568858100000,"y":0},{"x":1568858160000,"y":0},{"x":1568858220000,"y":0},{"x":1568858280000,"y":0},{"x":1568858340000,"y":0},{"x":1568858400000,"y":0},{"x":1568858460000,"y":0},{"x":1568858520000,"y":0},{"x":1568858580000,"y":0},{"x":1568858640000,"y":0},{"x":1568858700000,"y":0},{"x":1568858760000,"y":0},{"x":1568858820000,"y":0},{"x":1568858880000,"y":0},{"x":1568858940000,"y":0},{"x":1568859000000,"y":0},{"x":1568859060000,"y":0},{"x":1568859120000,"y":0},{"x":1568859180000,"y":0},{"x":1568859240000,"y":0},{"x":1568859300000,"y":0},{"x":1568859360000,"y":0},{"x":1568859420000,"y":0},{"x":1568859480000,"y":0},{"x":1568859540000,"y":0},{"x":1568859600000,"y":0},{"x":1568859660000,"y":0},{"x":1568859720000,"y":0},{"x":1568859780000,"y":0},{"x":1568859840000,"y":0},{"x":1568859900000,"y":0},{"x":1568859960000,"y":0},{"x":1568860020000,"y":0},{"x":1568860080000,"y":0},{"x":1568860140000,"y":0},{"x":1568860200000,"y":0},{"x":1568860260000,"y":0},{"x":1568860320000,"y":0},{"x":1568860380000,"y":0},{"x":1568860440000,"y":0},{"x":1568860500000,"y":0},{"x":1568860560000,"y":0},{"x":1568860620000,"y":0},{"x":1568860680000,"y":0},{"x":1568860740000,"y":0},{"x":1568860800000,"y":0},{"x":1568860860000,"y":0},{"x":1568860920000,"y":0},{"x":1568860980000,"y":0},{"x":1568861040000,"y":0},{"x":1568861100000,"y":0},{"x":1568861160000,"y":0},{"x":1568861220000,"y":0},{"x":1568861280000,"y":0},{"x":1568861340000,"y":0.01},{"x":1568861400000,"y":0},{"x":1568861460000,"y":0},{"x":1568861520000,"y":0},{"x":1568861580000,"y":0},{"x":1568861640000,"y":0},{"x":1568861700000,"y":0},{"x":1568861760000,"y":0},{"x":1568861820000,"y":0},{"x":1568861880000,"y":0},{"x":1568861940000,"y":0},{"x":1568862000000,"y":0},{"x":1568862060000,"y":0},{"x":1568862120000,"y":0},{"x":1568862180000,"y":0},{"x":1568862240000,"y":0},{"x":1568862300000,"y":0},{"x":1568862360000,"y":0},{"x":1568862420000,"y":0},{"x":1568862480000,"y":0.01},{"x":1568862540000,"y":0},{"x":1568862600000,"y":0},{"x":1568862660000,"y":0.01},{"x":1568862720000,"y":0},{"x":1568862780000,"y":0},{"x":1568862840000,"y":0},{"x":1568862900000,"y":0},{"x":1568862960000,"y":0},{"x":1568863020000,"y":0},{"x":1568863080000,"y":0},{"x":1568863140000,"y":0},{"x":1568863200000,"y":0},{"x":1568863260000,"y":0},{"x":1568863320000,"y":0},{"x":1568863380000,"y":0},{"x":1568863440000,"y":0},{"x":1568863500000,"y":0},{"x":1568863560000,"y":0},{"x":1568863620000,"y":0},{"x":1568863680000,"y":0},{"x":1568863740000,"y":0},{"x":1568863800000,"y":0},{"x":1568863860000,"y":0},{"x":1568863920000,"y":0},{"x":1568863980000,"y":0},{"x":1568864040000,"y":0},{"x":1568864100000,"y":0},{"x":1568864160000,"y":0},{"x":1568864220000,"y":0},{"x":1568864280000,"y":0},{"x":1568864340000,"y":0.01},{"x":1568864400000,"y":0},{"x":1568864460000,"y":0},{"x":1568864520000,"y":0},{"x":1568864580000,"y":0},{"x":1568864640000,"y":0},{"x":1568864700000,"y":0},{"x":1568864760000,"y":0.01},{"x":1568864820000,"y":0},{"x":1568864880000,"y":0},{"x":1568864940000,"y":0},{"x":1568865000000,"y":0},{"x":1568865060000,"y":0},{"x":1568865120000,"y":0},{"x":1568865180000,"y":0},{"x":1568865240000,"y":0},{"x":1568865300000,"y":0},{"x":1568865360000,"y":0},{"x":1568865420000,"y":0},{"x":1568865480000,"y":0},{"x":1568865540000,"y":0},{"x":1568865600000,"y":0},{"x":1568865660000,"y":0},{"x":1568865720000,"y":0.01},{"x":1568865780000,"y":0},{"x":1568865840000,"y":0},{"x":1568865900000,"y":0},{"x":1568865960000,"y":0},{"x":1568866020000,"y":0},{"x":1568866080000,"y":0},{"x":1568866140000,"y":0},{"x":1568866200000,"y":0},{"x":1568866260000,"y":0},{"x":1568866320000,"y":0},{"x":1568866380000,"y":0},{"x":1568866440000,"y":0},{"x":1568866500000,"y":0},{"x":1568866560000,"y":0},{"x":1568866620000,"y":0},{"x":1568866680000,"y":0},{"x":1568866740000,"y":0},{"x":1568866800000,"y":0},{"x":1568866860000,"y":0},{"x":1568866920000,"y":0},{"x":1568866980000,"y":0},{"x":1568867040000,"y":0},{"x":1568867100000,"y":0},{"x":1568867160000,"y":0},{"x":1568867220000,"y":0},{"x":1568867280000,"y":0},{"x":1568867340000,"y":0},{"x":1568867400000,"y":0.02},{"x":1568867460000,"y":0},{"x":1568867520000,"y":0},{"x":1568867580000,"y":0},{"x":1568867640000,"y":0},{"x":1568867700000,"y":0},{"x":1568867760000,"y":0},{"x":1568867820000,"y":0},{"x":1568867880000,"y":0},{"x":1568867940000,"y":0},{"x":1568868000000,"y":0},{"x":1568868060000,"y":0},{"x":1568868120000,"y":0},{"x":1568868180000,"y":0},{"x":1568868240000,"y":0},{"x":1568868300000,"y":0},{"x":1568868360000,"y":0},{"x":1568868420000,"y":0},{"x":1568868480000,"y":0},{"x":1568868540000,"y":0},{"x":1568868600000,"y":0},{"x":1568868660000,"y":0},{"x":1568868720000,"y":0},{"x":1568868780000,"y":0},{"x":1568868840000,"y":0},{"x":1568868900000,"y":0},{"x":1568868960000,"y":0},{"x":1568869020000,"y":0},{"x":1568869080000,"y":0},{"x":1568869140000,"y":0},{"x":1568869200000,"y":0.02},{"x":1568869260000,"y":0},{"x":1568869320000,"y":0},{"x":1568869380000,"y":0},{"x":1568869440000,"y":0},{"x":1568869500000,"y":0},{"x":1568869560000,"y":0},{"x":1568869620000,"y":0},{"x":1568869680000,"y":0},{"x":1568869740000,"y":0},{"x":1568869800000,"y":0},{"x":1568869860000,"y":0},{"x":1568869920000,"y":0},{"x":1568869980000,"y":0},{"x":1568870040000,"y":0},{"x":1568870100000,"y":0},{"x":1568870160000,"y":0},{"x":1568870220000,"y":0},{"x":1568870280000,"y":0},{"x":1568870340000,"y":0},{"x":1568870400000,"y":0},{"x":1568870460000,"y":0},{"x":1568870520000,"y":0},{"x":1568870580000,"y":0},{"x":1568870640000,"y":0},{"x":1568870700000,"y":0},{"x":1568870760000,"y":0},{"x":1568870820000,"y":0},{"x":1568870880000,"y":0},{"x":1568870940000,"y":0},{"x":1568871000000,"y":0},{"x":1568871060000,"y":0},{"x":1568871120000,"y":0.01},{"x":1568871180000,"y":0},{"x":1568871240000,"y":0},{"x":1568871300000,"y":0},{"x":1568871360000,"y":0},{"x":1568871420000,"y":0},{"x":1568871480000,"y":0},{"x":1568871540000,"y":0},{"x":1568871600000,"y":0},{"x":1568871660000,"y":0},{"x":1568871720000,"y":0},{"x":1568871780000,"y":0},{"x":1568871840000,"y":0},{"x":1568871900000,"y":0},{"x":1568871960000,"y":0},{"x":1568872020000,"y":0},{"x":1568872080000,"y":0},{"x":1568872140000,"y":0},{"x":1568872200000,"y":0},{"x":1568872260000,"y":0},{"x":1568872320000,"y":0},{"x":1568872380000,"y":0},{"x":1568872440000,"y":0},{"x":1568872500000,"y":0},{"x":1568872560000,"y":0},{"x":1568872620000,"y":0},{"x":1568872680000,"y":0},{"x":1568872740000,"y":0},{"x":1568872800000,"y":0},{"x":1568872860000,"y":0},{"x":1568872920000,"y":0},{"x":1568872980000,"y":0},{"x":1568873040000,"y":0},{"x":1568873100000,"y":0},{"x":1568873160000,"y":0},{"x":1568873220000,"y":0},{"x":1568873280000,"y":0},{"x":1568873340000,"y":0},{"x":1568873400000,"y":0},{"x":1568873460000,"y":0},{"x":1568873520000,"y":0},{"x":1568873580000,"y":0},{"x":1568873640000,"y":0},{"x":1568873700000,"y":0},{"x":1568873760000,"y":0},{"x":1568873820000,"y":0},{"x":1568873880000,"y":0},{"x":1568873940000,"y":0},{"x":1568874000000,"y":0},{"x":1568874060000,"y":0},{"x":1568874120000,"y":0},{"x":1568874180000,"y":0},{"x":1568874240000,"y":0},{"x":1568874300000,"y":0},{"x":1568874360000,"y":0},{"x":1568874420000,"y":0},{"x":1568874480000,"y":0},{"x":1568874540000,"y":0},{"x":1568874600000,"y":0},{"x":1568874660000,"y":0},{"x":1568874720000,"y":0},{"x":1568874780000,"y":0},{"x":1568874840000,"y":0},{"x":1568874900000,"y":0},{"x":1568874960000,"y":0},{"x":1568875020000,"y":0},{"x":1568875080000,"y":0},{"x":1568875140000,"y":0},{"x":1568875200000,"y":0},{"x":1568875260000,"y":0},{"x":1568875320000,"y":0},{"x":1568875380000,"y":0},{"x":1568875440000,"y":0},{"x":1568875500000,"y":0},{"x":1568875560000,"y":0},{"x":1568875620000,"y":0},{"x":1568875680000,"y":0},{"x":1568875740000,"y":0},{"x":1568875800000,"y":0},{"x":1568875860000,"y":0},{"x":1568875920000,"y":0},{"x":1568875980000,"y":0},{"x":1568876040000,"y":0},{"x":1568876100000,"y":0},{"x":1568876160000,"y":0},{"x":1568876220000,"y":0},{"x":1568876280000,"y":0},{"x":1568876340000,"y":0},{"x":1568876400000,"y":0},{"x":1568876460000,"y":0},{"x":1568876520000,"y":0},{"x":1568876580000,"y":0},{"x":1568876640000,"y":0},{"x":1568876700000,"y":0},{"x":1568876760000,"y":0},{"x":1568876820000,"y":0},{"x":1568876880000,"y":0},{"x":1568876940000,"y":0},{"x":1568877000000,"y":0},{"x":1568877060000,"y":0},{"x":1568877120000,"y":0},{"x":1568877180000,"y":0},{"x":1568877240000,"y":0},{"x":1568877300000,"y":0},{"x":1568877360000,"y":0},{"x":1568877420000,"y":0},{"x":1568877480000,"y":0},{"x":1568877540000,"y":0},{"x":1568877600000,"y":0},{"x":1568877660000,"y":0},{"x":1568877720000,"y":0},{"x":1568877780000,"y":0},{"x":1568877840000,"y":0},{"x":1568877900000,"y":0},{"x":1568877960000,"y":0},{"x":1568878020000,"y":0},{"x":1568878080000,"y":0},{"x":1568878140000,"y":0},{"x":1568878200000,"y":0},{"x":1568878260000,"y":0},{"x":1568878320000,"y":0},{"x":1568878380000,"y":0},{"x":1568878440000,"y":0},{"x":1568878500000,"y":0},{"x":1568878560000,"y":0},{"x":1568878620000,"y":0},{"x":1568878680000,"y":0},{"x":1568878740000,"y":0},{"x":1568878800000,"y":0},{"x":1568878860000,"y":0},{"x":1568878920000,"y":0},{"x":1568878980000,"y":0},{"x":1568879040000,"y":0},{"x":1568879100000,"y":0},{"x":1568879160000,"y":0},{"x":1568879220000,"y":0},{"x":1568879280000,"y":0},{"x":1568879340000,"y":0},{"x":1568879400000,"y":0},{"x":1568879460000,"y":0},{"x":1568879520000,"y":0},{"x":1568879580000,"y":0},{"x":1568879640000,"y":0},{"x":1568879700000,"y":0},{"x":1568879760000,"y":0},{"x":1568879820000,"y":0},{"x":1568879880000,"y":0},{"x":1568879940000,"y":0},{"x":1568880000000,"y":0},{"x":1568880060000,"y":0},{"x":1568880120000,"y":0},{"x":1568880180000,"y":0},{"x":1568880240000,"y":0},{"x":1568880300000,"y":0},{"x":1568880360000,"y":0},{"x":1568880420000,"y":0},{"x":1568880480000,"y":0},{"x":1568880540000,"y":0},{"x":1568880600000,"y":0},{"x":1568880660000,"y":0},{"x":1568880720000,"y":0.02},{"x":1568880780000,"y":0},{"x":1568880840000,"y":0},{"x":1568880900000,"y":0},{"x":1568880960000,"y":0},{"x":1568881020000,"y":0},{"x":1568881080000,"y":0},{"x":1568881140000,"y":0},{"x":1568881200000,"y":0},{"x":1568881260000,"y":0},{"x":1568881320000,"y":0},{"x":1568881380000,"y":0},{"x":1568881440000,"y":0},{"x":1568881500000,"y":0},{"x":1568881560000,"y":0},{"x":1568881620000,"y":0},{"x":1568881680000,"y":0},{"x":1568881740000,"y":0},{"x":1568881800000,"y":0},{"x":1568881860000,"y":0},{"x":1568881920000,"y":0},{"x":1568881980000,"y":0},{"x":1568882040000,"y":0},{"x":1568882100000,"y":0},{"x":1568882160000,"y":0},{"x":1568882220000,"y":0},{"x":1568882280000,"y":0},{"x":1568882340000,"y":0},{"x":1568882400000,"y":0},{"x":1568882460000,"y":0},{"x":1568882520000,"y":0},{"x":1568882580000,"y":0},{"x":1568882640000,"y":0},{"x":1568882700000,"y":0},{"x":1568882760000,"y":0},{"x":1568882820000,"y":0},{"x":1568882880000,"y":0},{"x":1568882940000,"y":0},{"x":1568883000000,"y":0},{"x":1568883060000,"y":0},{"x":1568883120000,"y":0},{"x":1568883180000,"y":0},{"x":1568883240000,"y":0},{"x":1568883300000,"y":0},{"x":1568883360000,"y":0},{"x":1568883420000,"y":0},{"x":1568883480000,"y":0},{"x":1568883540000,"y":0},{"x":1568883600000,"y":0},{"x":1568883660000,"y":0},{"x":1568883720000,"y":0},{"x":1568883780000,"y":0},{"x":1568883840000,"y":0},{"x":1568883900000,"y":0},{"x":1568883960000,"y":0},{"x":1568884020000,"y":0},{"x":1568884080000,"y":0},{"x":1568884140000,"y":0},{"x":1568884200000,"y":0},{"x":1568884260000,"y":0},{"x":1568884320000,"y":0},{"x":1568884380000,"y":0},{"x":1568884440000,"y":0},{"x":1568884500000,"y":0},{"x":1568884560000,"y":0},{"x":1568884620000,"y":0.01},{"x":1568884680000,"y":0},{"x":1568884740000,"y":0},{"x":1568884800000,"y":0},{"x":1568884860000,"y":0},{"x":1568884920000,"y":0},{"x":1568884980000,"y":0},{"x":1568885040000,"y":0},{"x":1568885100000,"y":0},{"x":1568885160000,"y":0},{"x":1568885220000,"y":0},{"x":1568885280000,"y":0},{"x":1568885340000,"y":0},{"x":1568885400000,"y":0},{"x":1568885460000,"y":0},{"x":1568885520000,"y":0},{"x":1568885580000,"y":0},{"x":1568885640000,"y":0},{"x":1568885700000,"y":0},{"x":1568885760000,"y":0},{"x":1568885820000,"y":0},{"x":1568885880000,"y":0},{"x":1568885940000,"y":0},{"x":1568886000000,"y":0},{"x":1568886060000,"y":0},{"x":1568886120000,"y":0},{"x":1568886180000,"y":0},{"x":1568886240000,"y":0},{"x":1568886300000,"y":0},{"x":1568886360000,"y":0},{"x":1568886420000,"y":0},{"x":1568886480000,"y":0},{"x":1568886540000,"y":0},{"x":1568886600000,"y":0},{"x":1568886660000,"y":0},{"x":1568886720000,"y":0},{"x":1568886780000,"y":0},{"x":1568886840000,"y":0},{"x":1568886900000,"y":0},{"x":1568886960000,"y":0},{"x":1568887020000,"y":0},{"x":1568887080000,"y":0},{"x":1568887140000,"y":0},{"x":1568887200000,"y":0},{"x":1568887260000,"y":0},{"x":1568887320000,"y":0},{"x":1568887380000,"y":0},{"x":1568887440000,"y":0},{"x":1568887500000,"y":0.01},{"x":1568887560000,"y":0},{"x":1568887620000,"y":0},{"x":1568887680000,"y":0},{"x":1568887740000,"y":0.01},{"x":1568887800000,"y":0},{"x":1568887860000,"y":0},{"x":1568887920000,"y":0},{"x":1568887980000,"y":0.02},{"x":1568888040000,"y":0},{"x":1568888100000,"y":0},{"x":1568888160000,"y":0},{"x":1568888220000,"y":0},{"x":1568888280000,"y":0},{"x":1568888340000,"y":0},{"x":1568888400000,"y":0.66},{"x":1568888460000,"y":0},{"x":1568888520000,"y":0},{"x":1568888580000,"y":0},{"x":1568888640000,"y":0},{"x":1568888700000,"y":0},{"x":1568888760000,"y":0},{"x":1568888820000,"y":0},{"x":1568888880000,"y":0},{"x":1568888940000,"y":0},{"x":1568889000000,"y":0},{"x":1568889060000,"y":0},{"x":1568889120000,"y":0},{"x":1568889180000,"y":0},{"x":1568889240000,"y":0},{"x":1568889300000,"y":0},{"x":1568889360000,"y":0},{"x":1568889420000,"y":0},{"x":1568889480000,"y":0},{"x":1568889540000,"y":0},{"x":1568889600000,"y":0},{"x":1568889660000,"y":0},{"x":1568889720000,"y":0},{"x":1568889780000,"y":0},{"x":1568889840000,"y":0},{"x":1568889900000,"y":0},{"x":1568889960000,"y":0},{"x":1568890020000,"y":0},{"x":1568890080000,"y":0},{"x":1568890140000,"y":0},{"x":1568890200000,"y":0},{"x":1568890260000,"y":0},{"x":1568890320000,"y":0},{"x":1568890380000,"y":0},{"x":1568890440000,"y":0},{"x":1568890500000,"y":0},{"x":1568890560000,"y":0},{"x":1568890620000,"y":0},{"x":1568890680000,"y":0},{"x":1568890740000,"y":0},{"x":1568890800000,"y":0},{"x":1568890860000,"y":0},{"x":1568890920000,"y":0},{"x":1568890980000,"y":0},{"x":1568891040000,"y":0},{"x":1568891100000,"y":0},{"x":1568891160000,"y":0},{"x":1568891220000,"y":0},{"x":1568891280000,"y":0},{"x":1568891340000,"y":0},{"x":1568891400000,"y":0},{"x":1568891460000,"y":0},{"x":1568891520000,"y":0},{"x":1568891580000,"y":0},{"x":1568891640000,"y":0},{"x":1568891700000,"y":0},{"x":1568891760000,"y":0},{"x":1568891820000,"y":0.02},{"x":1568891880000,"y":0},{"x":1568891940000,"y":0},{"x":1568892000000,"y":0},{"x":1568892060000,"y":0},{"x":1568892120000,"y":0},{"x":1568892180000,"y":0},{"x":1568892240000,"y":0},{"x":1568892300000,"y":0},{"x":1568892360000,"y":0},{"x":1568892420000,"y":0},{"x":1568892480000,"y":0},{"x":1568892540000,"y":0},{"x":1568892600000,"y":0},{"x":1568892660000,"y":0},{"x":1568892720000,"y":0},{"x":1568892780000,"y":0},{"x":1568892840000,"y":0},{"x":1568892900000,"y":0},{"x":1568892960000,"y":0},{"x":1568893020000,"y":0},{"x":1568893080000,"y":0},{"x":1568893140000,"y":0},{"x":1568893200000,"y":0},{"x":1568893260000,"y":0},{"x":1568893320000,"y":0},{"x":1568893380000,"y":0},{"x":1568893440000,"y":0},{"x":1568893500000,"y":0},{"x":1568893560000,"y":0},{"x":1568893620000,"y":0},{"x":1568893680000,"y":0},{"x":1568893740000,"y":0},{"x":1568893800000,"y":0},{"x":1568893860000,"y":0},{"x":1568893920000,"y":0},{"x":1568893980000,"y":0},{"x":1568894040000,"y":0},{"x":1568894100000,"y":0},{"x":1568894160000,"y":0},{"x":1568894220000,"y":0},{"x":1568894280000,"y":0},{"x":1568894340000,"y":0},{"x":1568894400000,"y":0},{"x":1568894460000,"y":0},{"x":1568894520000,"y":0},{"x":1568894580000,"y":0},{"x":1568894640000,"y":0},{"x":1568894700000,"y":0},{"x":1568894760000,"y":0},{"x":1568894820000,"y":0},{"x":1568894880000,"y":0},{"x":1568894940000,"y":0},{"x":1568895000000,"y":0},{"x":1568895060000,"y":0},{"x":1568895120000,"y":0},{"x":1568895180000,"y":0},{"x":1568895240000,"y":0},{"x":1568895300000,"y":0},{"x":1568895360000,"y":0},{"x":1568895420000,"y":0},{"x":1568895480000,"y":0},{"x":1568895540000,"y":0},{"x":1568895600000,"y":0},{"x":1568895660000,"y":0},{"x":1568895720000,"y":0},{"x":1568895780000,"y":0},{"x":1568895840000,"y":0},{"x":1568895900000,"y":0},{"x":1568895960000,"y":0},{"x":1568896020000,"y":0},{"x":1568896080000,"y":0},{"x":1568896140000,"y":0},{"x":1568896200000,"y":0},{"x":1568896260000,"y":0},{"x":1568896320000,"y":0},{"x":1568896380000,"y":0},{"x":1568896440000,"y":0},{"x":1568896500000,"y":0},{"x":1568896560000,"y":0},{"x":1568896620000,"y":0},{"x":1568896680000,"y":0},{"x":1568896740000,"y":0},{"x":1568896800000,"y":0},{"x":1568896860000,"y":0},{"x":1568896920000,"y":0},{"x":1568896980000,"y":0},{"x":1568897040000,"y":0},{"x":1568897100000,"y":0},{"x":1568897160000,"y":0},{"x":1568897220000,"y":0},{"x":1568897280000,"y":0},{"x":1568897340000,"y":0},{"x":1568897400000,"y":0},{"x":1568897460000,"y":0.01},{"x":1568897520000,"y":0},{"x":1568897580000,"y":0},{"x":1568897640000,"y":0},{"x":1568897700000,"y":0},{"x":1568897760000,"y":0},{"x":1568897820000,"y":0},{"x":1568897880000,"y":0},{"x":1568897940000,"y":0},{"x":1568898000000,"y":0},{"x":1568898060000,"y":0},{"x":1568898120000,"y":0},{"x":1568898180000,"y":0},{"x":1568898240000,"y":0},{"x":1568898300000,"y":0},{"x":1568898360000,"y":0},{"x":1568898420000,"y":0},{"x":1568898480000,"y":0},{"x":1568898540000,"y":0},{"x":1568898600000,"y":0},{"x":1568898660000,"y":0},{"x":1568898720000,"y":0},{"x":1568898780000,"y":0},{"x":1568898840000,"y":0},{"x":1568898900000,"y":0},{"x":1568898960000,"y":0},{"x":1568899020000,"y":0},{"x":1568899080000,"y":0},{"x":1568899140000,"y":0},{"x":1568899200000,"y":0},{"x":1568899260000,"y":0},{"x":1568899320000,"y":0},{"x":1568899380000,"y":0},{"x":1568899440000,"y":0},{"x":1568899500000,"y":0},{"x":1568899560000,"y":0},{"x":1568899620000,"y":0},{"x":1568899680000,"y":0},{"x":1568899740000,"y":0},{"x":1568899800000,"y":0},{"x":1568899860000,"y":0},{"x":1568899920000,"y":0},{"x":1568899980000,"y":0},{"x":1568900040000,"y":0},{"x":1568900100000,"y":0},{"x":1568900160000,"y":0},{"x":1568900220000,"y":0},{"x":1568900280000,"y":0.02},{"x":1568900340000,"y":0},{"x":1568900400000,"y":0},{"x":1568900460000,"y":0},{"x":1568900520000,"y":0},{"x":1568900580000,"y":0},{"x":1568900640000,"y":0},{"x":1568900700000,"y":0},{"x":1568900760000,"y":0},{"x":1568900820000,"y":0},{"x":1568900880000,"y":0},{"x":1568900940000,"y":0},{"x":1568901000000,"y":0},{"x":1568901060000,"y":0},{"x":1568901120000,"y":0},{"x":1568901180000,"y":0},{"x":1568901240000,"y":0},{"x":1568901300000,"y":0},{"x":1568901360000,"y":0},{"x":1568901420000,"y":0},{"x":1568901480000,"y":0},{"x":1568901540000,"y":0},{"x":1568901600000,"y":0},{"x":1568901660000,"y":0},{"x":1568901720000,"y":0},{"x":1568901780000,"y":0},{"x":1568901840000,"y":0},{"x":1568901900000,"y":0},{"x":1568901960000,"y":0},{"x":1568902020000,"y":0},{"x":1568902080000,"y":0},{"x":1568902140000,"y":0},{"x":1568902200000,"y":0},{"x":1568902260000,"y":0},{"x":1568902320000,"y":0},{"x":1568902380000,"y":0},{"x":1568902440000,"y":0},{"x":1568902500000,"y":0},{"x":1568902560000,"y":0},{"x":1568902620000,"y":0},{"x":1568902680000,"y":0},{"x":1568902740000,"y":0},{"x":1568902800000,"y":0},{"x":1568902860000,"y":0},{"x":1568902920000,"y":0},{"x":1568902980000,"y":0},{"x":1568903040000,"y":0},{"x":1568903100000,"y":0},{"x":1568903160000,"y":0},{"x":1568903220000,"y":0},{"x":1568903280000,"y":0},{"x":1568903340000,"y":0},{"x":1568903400000,"y":0},{"x":1568903460000,"y":0},{"x":1568903520000,"y":0},{"x":1568903580000,"y":0},{"x":1568903640000,"y":0},{"x":1568903700000,"y":0},{"x":1568903760000,"y":0},{"x":1568903820000,"y":0},{"x":1568903880000,"y":0},{"x":1568903940000,"y":0},{"x":1568904000000,"y":0},{"x":1568904060000,"y":0},{"x":1568904120000,"y":0},{"x":1568904180000,"y":0},{"x":1568904240000,"y":0},{"x":1568904300000,"y":0},{"x":1568904360000,"y":0},{"x":1568904420000,"y":0},{"x":1568904480000,"y":0},{"x":1568904540000,"y":0},{"x":1568904600000,"y":0},{"x":1568904660000,"y":0},{"x":1568904720000,"y":0},{"x":1568904780000,"y":0},{"x":1568904840000,"y":0},{"x":1568904900000,"y":0},{"x":1568904960000,"y":0},{"x":1568905020000,"y":0},{"x":1568905080000,"y":0},{"x":1568905140000,"y":0},{"x":1568905200000,"y":0},{"x":1568905260000,"y":0},{"x":1568905320000,"y":0},{"x":1568905380000,"y":0},{"x":1568905440000,"y":0},{"x":1568905500000,"y":0},{"x":1568905560000,"y":0},{"x":1568905620000,"y":0},{"x":1568905680000,"y":0},{"x":1568905740000,"y":0},{"x":1568905800000,"y":0},{"x":1568905860000,"y":0},{"x":1568905920000,"y":0},{"x":1568905980000,"y":0},{"x":1568906040000,"y":0},{"x":1568906100000,"y":0},{"x":1568906160000,"y":0},{"x":1568906220000,"y":0},{"x":1568906280000,"y":0},{"x":1568906340000,"y":0},{"x":1568906400000,"y":0},{"x":1568906460000,"y":0},{"x":1568906520000,"y":0},{"x":1568906580000,"y":0},{"x":1568906640000,"y":0},{"x":1568906700000,"y":0},{"x":1568906760000,"y":0},{"x":1568906820000,"y":0},{"x":1568906880000,"y":0},{"x":1568906940000,"y":0},{"x":1568907000000,"y":0},{"x":1568907060000,"y":0},{"x":1568907120000,"y":0},{"x":1568907180000,"y":0},{"x":1568907240000,"y":0},{"x":1568907300000,"y":0},{"x":1568907360000,"y":0},{"x":1568907420000,"y":0},{"x":1568907480000,"y":0},{"x":1568907540000,"y":0},{"x":1568907600000,"y":0},{"x":1568907660000,"y":0},{"x":1568907720000,"y":0},{"x":1568907780000,"y":0},{"x":1568907840000,"y":0},{"x":1568907900000,"y":0},{"x":1568907960000,"y":0},{"x":1568908020000,"y":0},{"x":1568908080000,"y":0},{"x":1568908140000,"y":0},{"x":1568908200000,"y":0},{"x":1568908260000,"y":0},{"x":1568908320000,"y":0},{"x":1568908380000,"y":0},{"x":1568908440000,"y":0},{"x":1568908500000,"y":0},{"x":1568908560000,"y":0},{"x":1568908620000,"y":0},{"x":1568908680000,"y":0},{"x":1568908740000,"y":0},{"x":1568908800000,"y":0},{"x":1568908860000,"y":0},{"x":1568908920000,"y":0},{"x":1568908980000,"y":0},{"x":1568909040000,"y":0},{"x":1568909100000,"y":0},{"x":1568909160000,"y":0},{"x":1568909220000,"y":0},{"x":1568909280000,"y":0},{"x":1568909340000,"y":0},{"x":1568909400000,"y":0.01},{"x":1568909460000,"y":0},{"x":1568909520000,"y":0},{"x":1568909580000,"y":0},{"x":1568909640000,"y":0},{"x":1568909700000,"y":0},{"x":1568909760000,"y":0},{"x":1568909820000,"y":0},{"x":1568909880000,"y":0},{"x":1568909940000,"y":0},{"x":1568910000000,"y":0},{"x":1568910060000,"y":0},{"x":1568910120000,"y":0},{"x":1568910180000,"y":0},{"x":1568910240000,"y":0},{"x":1568910300000,"y":0},{"x":1568910360000,"y":0},{"x":1568910420000,"y":0.01},{"x":1568910480000,"y":0},{"x":1568910540000,"y":0},{"x":1568910600000,"y":0},{"x":1568910660000,"y":0},{"x":1568910720000,"y":0.16},{"x":1568910780000,"y":0},{"x":1568910840000,"y":0},{"x":1568910900000,"y":0},{"x":1568910960000,"y":0},{"x":1568911020000,"y":0},{"x":1568911080000,"y":0},{"x":1568911140000,"y":0},{"x":1568911200000,"y":0},{"x":1568911260000,"y":0.01},{"x":1568911320000,"y":0},{"x":1568911380000,"y":0},{"x":1568911440000,"y":0},{"x":1568911500000,"y":0},{"x":1568911560000,"y":0},{"x":1568911620000,"y":0},{"x":1568911680000,"y":0},{"x":1568911740000,"y":0},{"x":1568911800000,"y":0},{"x":1568911860000,"y":0},{"x":1568911920000,"y":0},{"x":1568911980000,"y":0},{"x":1568912040000,"y":0},{"x":1568912100000,"y":0},{"x":1568912160000,"y":0},{"x":1568912220000,"y":0},{"x":1568912280000,"y":0},{"x":1568912340000,"y":0},{"x":1568912400000,"y":0},{"x":1568912460000,"y":0},{"x":1568912520000,"y":0},{"x":1568912580000,"y":0},{"x":1568912640000,"y":0},{"x":1568912700000,"y":0},{"x":1568912760000,"y":0},{"x":1568912820000,"y":0},{"x":1568912880000,"y":0},{"x":1568912940000,"y":0},{"x":1568913000000,"y":0},{"x":1568913060000,"y":0},{"x":1568913120000,"y":0},{"x":1568913180000,"y":0},{"x":1568913240000,"y":0},{"x":1568913300000,"y":0},{"x":1568913360000,"y":0},{"x":1568913420000,"y":0},{"x":1568913480000,"y":0},{"x":1568913540000,"y":0},{"x":1568913600000,"y":0},{"x":1568913660000,"y":0},{"x":1568913720000,"y":0},{"x":1568913780000,"y":0},{"x":1568913840000,"y":0},{"x":1568913900000,"y":0},{"x":1568913960000,"y":0},{"x":1568914020000,"y":0},{"x":1568914080000,"y":0},{"x":1568914140000,"y":0},{"x":1568914200000,"y":0},{"x":1568914260000,"y":0},{"x":1568914320000,"y":0},{"x":1568914380000,"y":0},{"x":1568914440000,"y":0},{"x":1568914500000,"y":0},{"x":1568914560000,"y":0},{"x":1568914620000,"y":0},{"x":1568914680000,"y":0},{"x":1568914740000,"y":0},{"x":1568914800000,"y":0.03},{"x":1568914860000,"y":1.27},{"x":1568914920000,"y":0.39},{"x":1568914980000,"y":1.02},{"x":1568915040000,"y":0.81},{"x":1568915100000,"y":0},{"x":1568915160000,"y":0},{"x":1568915220000,"y":0.02},{"x":1568915280000,"y":0.01},{"x":1568915340000,"y":0.02},{"x":1568915400000,"y":0.01},{"x":1568915460000,"y":0.01},{"x":1568915520000,"y":0.01},{"x":1568915580000,"y":0.02},{"x":1568915640000,"y":0.01},{"x":1568915700000,"y":0},{"x":1568915760000,"y":0.01},{"x":1568915820000,"y":0},{"x":1568915880000,"y":0},{"x":1568915940000,"y":0},{"x":1568916000000,"y":0.01},{"x":1568916060000,"y":0.04},{"x":1568916120000,"y":0.01},{"x":1568916180000,"y":0.02},{"x":1568916240000,"y":0.74},{"x":1568916300000,"y":46.23},{"x":1568916360000,"y":48.39},{"x":1568916420000,"y":49.8},{"x":1568916480000,"y":20.83},{"x":1568916540000,"y":6.71},{"x":1568916600000,"y":0.87},{"x":1568916660000,"y":3.23},{"x":1568916720000,"y":0.6},{"x":1568916780000,"y":0.07},{"x":1568916840000,"y":0},{"x":1568916900000,"y":0},{"x":1568916960000,"y":0},{"x":1568917020000,"y":0},{"x":1568917080000,"y":0},{"x":1568917140000,"y":0},{"x":1568917200000,"y":0},{"x":1568917260000,"y":0},{"x":1568917320000,"y":0},{"x":1568917380000,"y":0},{"x":1568917440000,"y":0},{"x":1568917500000,"y":0},{"x":1568917560000,"y":0},{"x":1568917620000,"y":0},{"x":1568917680000,"y":0},{"x":1568917740000,"y":0},{"x":1568917800000,"y":0},{"x":1568917860000,"y":0},{"x":1568917920000,"y":0},{"x":1568917980000,"y":0},{"x":1568918040000,"y":0},{"x":1568918100000,"y":0},{"x":1568918160000,"y":2.79},{"x":1568918220000,"y":0.01},{"x":1568918280000,"y":0.01},{"x":1568918340000,"y":0},{"x":1568918400000,"y":0.03},{"x":1568918460000,"y":0},{"x":1568918520000,"y":1.29},{"x":1568918580000,"y":0.56},{"x":1568918640000,"y":0.01},{"x":1568918700000,"y":0},{"x":1568918760000,"y":0.02},{"x":1568918820000,"y":0.02},{"x":1568918880000,"y":0.02},{"x":1568918940000,"y":1.29},{"x":1568919000000,"y":1.48},{"x":1568919060000,"y":0},{"x":1568919120000,"y":0.02},{"x":1568919180000,"y":1.04},{"x":1568919240000,"y":0},{"x":1568919300000,"y":0},{"x":1568919360000,"y":2.66},{"x":1568919420000,"y":0},{"x":1568919480000,"y":0.07},{"x":1568919540000,"y":1.44},{"x":1568919600000,"y":0},{"x":1568919660000,"y":0},{"x":1568919720000,"y":1.58},{"x":1568919780000,"y":1.43},{"x":1568919840000,"y":1},{"x":1568919900000,"y":0},{"x":1568919960000,"y":2.14},{"x":1568920020000,"y":1.22},{"x":1568920080000,"y":0.01},{"x":1568920140000,"y":0.04},{"x":1568920200000,"y":3.28},{"x":1568920260000,"y":0},{"x":1568920320000,"y":1.31},{"x":1568920380000,"y":0},{"x":1568920440000,"y":2.71},{"x":1568920500000,"y":0.01},{"x":1568920560000,"y":0},{"x":1568920620000,"y":1.82},{"x":1568920680000,"y":1.15},{"x":1568920740000,"y":0},{"x":1568920800000,"y":0},{"x":1568920860000,"y":0},{"x":1568920920000,"y":0.09},{"x":1568920980000,"y":0},{"x":1568921040000,"y":1.05},{"x":1568921100000,"y":0.04},{"x":1568921160000,"y":0},{"x":1568921220000,"y":0},{"x":1568921280000,"y":1.44},{"x":1568921340000,"y":0.01},{"x":1568921400000,"y":0.05},{"x":1568921460000,"y":0},{"x":1568921520000,"y":0},{"x":1568921580000,"y":0},{"x":1568921640000,"y":1.09},{"x":1568921700000,"y":0},{"x":1568921760000,"y":0},{"x":1568921820000,"y":1.12},{"x":1568921880000,"y":0.31},{"x":1568921940000,"y":0.01},{"x":1568922000000,"y":0.01},{"x":1568922060000,"y":0},{"x":1568922120000,"y":0},{"x":1568922180000,"y":0},{"x":1568922240000,"y":1.39},{"x":1568922300000,"y":0.07},{"x":1568922360000,"y":0.01},{"x":1568922420000,"y":0.04},{"x":1568922480000,"y":0.03},{"x":1568922540000,"y":0.11},{"x":1568922600000,"y":2.33},{"x":1568922660000,"y":4.49},{"x":1568922720000,"y":0.01},{"x":1568922780000,"y":0.03},{"x":1568922840000,"y":1.35},{"x":1568922900000,"y":0},{"x":1568922960000,"y":1.46},{"x":1568923020000,"y":0},{"x":1568923080000,"y":3.03},{"x":1568923140000,"y":1.06},{"x":1568923200000,"y":0},{"x":1568923260000,"y":1.3},{"x":1568923320000,"y":0.03},{"x":1568923380000,"y":0.04},{"x":1568923440000,"y":0},{"x":1568923500000,"y":0.95},{"x":1568923560000,"y":1.37},{"x":1568923620000,"y":1.42},{"x":1568923680000,"y":1.5},{"x":1568923740000,"y":0},{"x":1568923800000,"y":0},{"x":1568923860000,"y":0},{"x":1568923920000,"y":0},{"x":1568923980000,"y":0},{"x":1568924040000,"y":0.04},{"x":1568924100000,"y":0.01},{"x":1568924160000,"y":0.04},{"x":1568924220000,"y":0},{"x":1568924280000,"y":0},{"x":1568924340000,"y":0},{"x":1568924400000,"y":0},{"x":1568924460000,"y":0},{"x":1568924520000,"y":0},{"x":1568924580000,"y":0},{"x":1568924640000,"y":0.01},{"x":1568924700000,"y":0},{"x":1568924760000,"y":0},{"x":1568924820000,"y":0},{"x":1568924880000,"y":0},{"x":1568924940000,"y":0},{"x":1568925000000,"y":0.01},{"x":1568925060000,"y":0.02},{"x":1568925120000,"y":0},{"x":1568925180000,"y":0},{"x":1568925240000,"y":0},{"x":1568925300000,"y":0},{"x":1568925360000,"y":0},{"x":1568925420000,"y":0.02},{"x":1568925480000,"y":0},{"x":1568925540000,"y":0},{"x":1568925600000,"y":0},{"x":1568925660000,"y":0},{"x":1568925720000,"y":0},{"x":1568925780000,"y":0},{"x":1568925840000,"y":0},{"x":1568925900000,"y":0},{"x":1568925960000,"y":0},{"x":1568926020000,"y":0.01},{"x":1568926080000,"y":0},{"x":1568926140000,"y":0},{"x":1568926200000,"y":0},{"x":1568926260000,"y":0},{"x":1568926320000,"y":0},{"x":1568926380000,"y":0.2},{"x":1568926440000,"y":0.02},{"x":1568926500000,"y":0.29},{"x":1568926560000,"y":0},{"x":1568926620000,"y":0},{"x":1568926680000,"y":0},{"x":1568926740000,"y":0},{"x":1568926800000,"y":0},{"x":1568926860000,"y":0},{"x":1568926920000,"y":0},{"x":1568926980000,"y":0.01},{"x":1568927040000,"y":0},{"x":1568927100000,"y":0},{"x":1568927160000,"y":0.01},{"x":1568927220000,"y":0.02},{"x":1568927280000,"y":0.01},{"x":1568927340000,"y":0},{"x":1568927400000,"y":0.01},{"x":1568927460000,"y":0},{"x":1568927520000,"y":0.01},{"x":1568927580000,"y":0},{"x":1568927640000,"y":0.02},{"x":1568927700000,"y":0.01},{"x":1568927760000,"y":0},{"x":1568927820000,"y":0.04},{"x":1568927880000,"y":0},{"x":1568927940000,"y":0},{"x":1568928000000,"y":0},{"x":1568928060000,"y":0.02},{"x":1568928120000,"y":0.02},{"x":1568928180000,"y":0},{"x":1568928240000,"y":0},{"x":1568928300000,"y":0.07},{"x":1568928360000,"y":0},{"x":1568928420000,"y":0},{"x":1568928480000,"y":0},{"x":1568928540000,"y":0.04},{"x":1568928600000,"y":0.16},{"x":1568928660000,"y":0.12},{"x":1568928720000,"y":0},{"x":1568928780000,"y":0},{"x":1568928840000,"y":0},{"x":1568928900000,"y":0},{"x":1568928960000,"y":0},{"x":1568929020000,"y":0},{"x":1568929080000,"y":0},{"x":1568929140000,"y":0},{"x":1568929200000,"y":0},{"x":1568929260000,"y":0},{"x":1568929320000,"y":0},{"x":1568929380000,"y":0},{"x":1568929440000,"y":0},{"x":1568929500000,"y":0},{"x":1568929560000,"y":0},{"x":1568929620000,"y":0.01},{"x":1568929680000,"y":0},{"x":1568929740000,"y":0},{"x":1568929800000,"y":0},{"x":1568929860000,"y":0},{"x":1568929920000,"y":0},{"x":1568929980000,"y":0},{"x":1568930040000,"y":0},{"x":1568930100000,"y":0},{"x":1568930160000,"y":0},{"x":1568930220000,"y":0},{"x":1568930280000,"y":0},{"x":1568930340000,"y":0},{"x":1568930400000,"y":0},{"x":1568930460000,"y":0},{"x":1568930520000,"y":0},{"x":1568930580000,"y":0},{"x":1568930640000,"y":0},{"x":1568930700000,"y":0},{"x":1568930760000,"y":0},{"x":1568930820000,"y":0},{"x":1568930880000,"y":0},{"x":1568930940000,"y":0},{"x":1568931000000,"y":0},{"x":1568931060000,"y":0},{"x":1568931120000,"y":0},{"x":1568931180000,"y":0},{"x":1568931240000,"y":0},{"x":1568931300000,"y":0.01},{"x":1568931360000,"y":0},{"x":1568931420000,"y":0},{"x":1568931480000,"y":0},{"x":1568931540000,"y":0},{"x":1568931600000,"y":0},{"x":1568931660000,"y":0},{"x":1568931720000,"y":0},{"x":1568931780000,"y":0},{"x":1568931840000,"y":0},{"x":1568931900000,"y":0},{"x":1568931960000,"y":0},{"x":1568932020000,"y":0},{"x":1568932080000,"y":0},{"x":1568932140000,"y":0.96},{"x":1568932200000,"y":0.84},{"x":1568932260000,"y":0},{"x":1568932320000,"y":0.09},{"x":1568932380000,"y":0},{"x":1568932440000,"y":8.59},{"x":1568932500000,"y":5.18},{"x":1568932560000,"y":0},{"x":1568932620000,"y":0},{"x":1568932680000,"y":0},{"x":1568932740000,"y":0},{"x":1568932800000,"y":0},{"x":1568932860000,"y":0},{"x":1568932920000,"y":0},{"x":1568932980000,"y":0},{"x":1568933040000,"y":0},{"x":1568933100000,"y":0},{"x":1568933160000,"y":0},{"x":1568933220000,"y":0},{"x":1568933280000,"y":0},{"x":1568933340000,"y":0},{"x":1568933400000,"y":0},{"x":1568933460000,"y":0},{"x":1568933520000,"y":0},{"x":1568933580000,"y":0},{"x":1568933640000,"y":0},{"x":1568933700000,"y":0},{"x":1568933760000,"y":0},{"x":1568933820000,"y":0.03},{"x":1568933880000,"y":0},{"x":1568933940000,"y":0},{"x":1568934000000,"y":0},{"x":1568934060000,"y":0},{"x":1568934120000,"y":0},{"x":1568934180000,"y":0},{"x":1568934240000,"y":0},{"x":1568934300000,"y":0},{"x":1568934360000,"y":0},{"x":1568934420000,"y":0},{"x":1568934480000,"y":0},{"x":1568934540000,"y":0},{"x":1568934600000,"y":0},{"x":1568934660000,"y":0},{"x":1568934720000,"y":0},{"x":1568934780000,"y":0},{"x":1568934840000,"y":0},{"x":1568934900000,"y":0},{"x":1568934960000,"y":0},{"x":1568935020000,"y":0},{"x":1568935080000,"y":0},{"x":1568935140000,"y":0},{"x":1568935200000,"y":0},{"x":1568935260000,"y":0},{"x":1568935320000,"y":0},{"x":1568935380000,"y":0},{"x":1568935440000,"y":0},{"x":1568935500000,"y":0},{"x":1568935560000,"y":0},{"x":1568935620000,"y":0},{"x":1568935680000,"y":0},{"x":1568935740000,"y":0},{"x":1568935800000,"y":0},{"x":1568935860000,"y":0},{"x":1568935920000,"y":0},{"x":1568935980000,"y":0},{"x":1568936040000,"y":0},{"x":1568936100000,"y":0},{"x":1568936160000,"y":0},{"x":1568936220000,"y":0},{"x":1568936280000,"y":0},{"x":1568936340000,"y":0},{"x":1568936400000,"y":0},{"x":1568936460000,"y":0},{"x":1568936520000,"y":0},{"x":1568936580000,"y":0},{"x":1568936640000,"y":0},{"x":1568936700000,"y":0},{"x":1568936760000,"y":0},{"x":1568936820000,"y":0},{"x":1568936880000,"y":0},{"x":1568936940000,"y":0},{"x":1568937000000,"y":0},{"x":1568937060000,"y":0},{"x":1568937120000,"y":0},{"x":1568937180000,"y":0},{"x":1568937240000,"y":0},{"x":1568937300000,"y":0},{"x":1568937360000,"y":0},{"x":1568937420000,"y":0},{"x":1568937480000,"y":0},{"x":1568937540000,"y":0},{"x":1568937600000,"y":0},{"x":1568937660000,"y":0},{"x":1568937720000,"y":0},{"x":1568937780000,"y":0},{"x":1568937840000,"y":0},{"x":1568937900000,"y":0},{"x":1568937960000,"y":0},{"x":1568938020000,"y":0},{"x":1568938080000,"y":0},{"x":1568938140000,"y":0},{"x":1568938200000,"y":0},{"x":1568938260000,"y":0},{"x":1568938320000,"y":0},{"x":1568938380000,"y":0},{"x":1568938440000,"y":0},{"x":1568938500000,"y":0},{"x":1568938560000,"y":0},{"x":1568938620000,"y":0},{"x":1568938680000,"y":0},{"x":1568938740000,"y":0},{"x":1568938800000,"y":0},{"x":1568938860000,"y":0},{"x":1568938920000,"y":0},{"x":1568938980000,"y":0},{"x":1568939040000,"y":0},{"x":1568939100000,"y":0},{"x":1568939160000,"y":0},{"x":1568939220000,"y":0},{"x":1568939280000,"y":0},{"x":1568939340000,"y":0},{"x":1568939400000,"y":0},{"x":1568939460000,"y":0},{"x":1568939520000,"y":0},{"x":1568939580000,"y":0},{"x":1568939640000,"y":0},{"x":1568939700000,"y":0},{"x":1568939760000,"y":0},{"x":1568939820000,"y":0},{"x":1568939880000,"y":0},{"x":1568939940000,"y":0},{"x":1568940000000,"y":0},{"x":1568940060000,"y":0},{"x":1568940120000,"y":0},{"x":1568940180000,"y":0},{"x":1568940240000,"y":0},{"x":1568940300000,"y":0},{"x":1568940360000,"y":0},{"x":1568940420000,"y":0},{"x":1568940480000,"y":0},{"x":1568940540000,"y":0},{"x":1568940600000,"y":0},{"x":1568940660000,"y":0},{"x":1568940720000,"y":0},{"x":1568940780000,"y":0},{"x":1568940840000,"y":0},{"x":1568940900000,"y":0},{"x":1568940960000,"y":0},{"x":1568941020000,"y":0},{"x":1568941080000,"y":0},{"x":1568941140000,"y":0},{"x":1568941200000,"y":0},{"x":1568941260000,"y":0},{"x":1568941320000,"y":0},{"x":1568941380000,"y":0},{"x":1568941440000,"y":0},{"x":1568941500000,"y":0},{"x":1568941560000,"y":0},{"x":1568941620000,"y":0},{"x":1568941680000,"y":0},{"x":1568941740000,"y":0},{"x":1568941800000,"y":0},{"x":1568941860000,"y":0},{"x":1568941920000,"y":0},{"x":1568941980000,"y":0},{"x":1568942040000,"y":0},{"x":1568942100000,"y":0},{"x":1568942160000,"y":0},{"x":1568942220000,"y":0},{"x":1568942280000,"y":0},{"x":1568942340000,"y":0},{"x":1568942400000,"y":0},{"x":1568942460000,"y":0},{"x":1568942520000,"y":0},{"x":1568942580000,"y":0},{"x":1568942640000,"y":0},{"x":1568942700000,"y":0},{"x":1568942760000,"y":0},{"x":1568942820000,"y":0},{"x":1568942880000,"y":0},{"x":1568942940000,"y":0},{"x":1568943000000,"y":0},{"x":1568943060000,"y":0},{"x":1568943120000,"y":0},{"x":1568943180000,"y":0},{"x":1568943240000,"y":0},{"x":1568943300000,"y":0},{"x":1568943360000,"y":0},{"x":1568943420000,"y":0},{"x":1568943480000,"y":0},{"x":1568943540000,"y":0},{"x":1568943600000,"y":0},{"x":1568943660000,"y":0},{"x":1568943720000,"y":0},{"x":1568943780000,"y":0},{"x":1568943840000,"y":0},{"x":1568943900000,"y":0},{"x":1568943960000,"y":0},{"x":1568944020000,"y":0},{"x":1568944080000,"y":0},{"x":1568944140000,"y":0},{"x":1568944200000,"y":0},{"x":1568944260000,"y":0},{"x":1568944320000,"y":0},{"x":1568944380000,"y":0},{"x":1568944440000,"y":0},{"x":1568944500000,"y":0},{"x":1568944560000,"y":0},{"x":1568944620000,"y":0},{"x":1568944680000,"y":0},{"x":1568944740000,"y":0},{"x":1568944800000,"y":0},{"x":1568944860000,"y":0},{"x":1568944920000,"y":0},{"x":1568944980000,"y":0},{"x":1568945040000,"y":0},{"x":1568945100000,"y":0},{"x":1568945160000,"y":0},{"x":1568945220000,"y":0},{"x":1568945280000,"y":0},{"x":1568945340000,"y":0},{"x":1568945400000,"y":0},{"x":1568945460000,"y":0},{"x":1568945520000,"y":0},{"x":1568945580000,"y":0},{"x":1568945640000,"y":0},{"x":1568945700000,"y":0},{"x":1568945760000,"y":0},{"x":1568945820000,"y":0},{"x":1568945880000,"y":0},{"x":1568945940000,"y":0},{"x":1568946000000,"y":0},{"x":1568946060000,"y":0},{"x":1568946120000,"y":0},{"x":1568946180000,"y":0},{"x":1568946240000,"y":0},{"x":1568946300000,"y":0},{"x":1568946360000,"y":0},{"x":1568946420000,"y":0},{"x":1568946480000,"y":0},{"x":1568946540000,"y":0},{"x":1568946600000,"y":0},{"x":1568946660000,"y":0},{"x":1568946720000,"y":0},{"x":1568946780000,"y":0},{"x":1568946840000,"y":0},{"x":1568946900000,"y":0},{"x":1568946960000,"y":0},{"x":1568947020000,"y":0},{"x":1568947080000,"y":0},{"x":1568947140000,"y":0},{"x":1568947200000,"y":0},{"x":1568947260000,"y":0},{"x":1568947320000,"y":0},{"x":1568947380000,"y":0},{"x":1568947440000,"y":0},{"x":1568947500000,"y":0},{"x":1568947560000,"y":0},{"x":1568947620000,"y":0},{"x":1568947680000,"y":0},{"x":1568947740000,"y":0},{"x":1568947800000,"y":0},{"x":1568947860000,"y":0},{"x":1568947920000,"y":0},{"x":1568947980000,"y":0},{"x":1568948040000,"y":0},{"x":1568948100000,"y":0},{"x":1568948160000,"y":0},{"x":1568948220000,"y":0},{"x":1568948280000,"y":0},{"x":1568948340000,"y":0},{"x":1568948400000,"y":0},{"x":1568948460000,"y":0},{"x":1568948520000,"y":0},{"x":1568948580000,"y":0},{"x":1568948640000,"y":0},{"x":1568948700000,"y":0},{"x":1568948760000,"y":0},{"x":1568948820000,"y":0},{"x":1568948880000,"y":0},{"x":1568948940000,"y":0},{"x":1568949000000,"y":0},{"x":1568949060000,"y":0},{"x":1568949120000,"y":0},{"x":1568949180000,"y":0},{"x":1568949240000,"y":0},{"x":1568949300000,"y":0},{"x":1568949360000,"y":0},{"x":1568949420000,"y":0},{"x":1568949480000,"y":0},{"x":1568949540000,"y":0},{"x":1568949600000,"y":0},{"x":1568949660000,"y":0},{"x":1568949720000,"y":0},{"x":1568949780000,"y":0},{"x":1568949840000,"y":0},{"x":1568949900000,"y":0},{"x":1568949960000,"y":0},{"x":1568950020000,"y":0},{"x":1568950080000,"y":0},{"x":1568950140000,"y":0},{"x":1568950200000,"y":0},{"x":1568950260000,"y":0},{"x":1568950320000,"y":0},{"x":1568950380000,"y":0},{"x":1568950440000,"y":0},{"x":1568950500000,"y":0},{"x":1568950560000,"y":0},{"x":1568950620000,"y":0},{"x":1568950680000,"y":0},{"x":1568950740000,"y":0},{"x":1568950800000,"y":0},{"x":1568950860000,"y":0},{"x":1568950920000,"y":0},{"x":1568950980000,"y":0},{"x":1568951040000,"y":0},{"x":1568951100000,"y":0},{"x":1568951160000,"y":0},{"x":1568951220000,"y":0},{"x":1568951280000,"y":0},{"x":1568951340000,"y":0},{"x":1568951400000,"y":0},{"x":1568951460000,"y":0},{"x":1568951520000,"y":0},{"x":1568951580000,"y":0},{"x":1568951640000,"y":0},{"x":1568951700000,"y":0},{"x":1568951760000,"y":0},{"x":1568951820000,"y":0},{"x":1568951880000,"y":0},{"x":1568951940000,"y":0},{"x":1568952000000,"y":0},{"x":1568952060000,"y":0},{"x":1568952120000,"y":0},{"x":1568952180000,"y":0},{"x":1568952240000,"y":0},{"x":1568952300000,"y":0},{"x":1568952360000,"y":0},{"x":1568952420000,"y":0.02},{"x":1568952480000,"y":0},{"x":1568952540000,"y":0},{"x":1568952600000,"y":0},{"x":1568952660000,"y":0},{"x":1568952720000,"y":0},{"x":1568952780000,"y":0},{"x":1568952840000,"y":0},{"x":1568952900000,"y":0},{"x":1568952960000,"y":0},{"x":1568953020000,"y":0},{"x":1568953080000,"y":0},{"x":1568953140000,"y":0},{"x":1568953200000,"y":0.01},{"x":1568953260000,"y":0},{"x":1568953320000,"y":0},{"x":1568953380000,"y":0},{"x":1568953440000,"y":0},{"x":1568953500000,"y":0},{"x":1568953560000,"y":0},{"x":1568953620000,"y":0},{"x":1568953680000,"y":0},{"x":1568953740000,"y":0},{"x":1568953800000,"y":0},{"x":1568953860000,"y":0},{"x":1568953920000,"y":0},{"x":1568953980000,"y":0},{"x":1568954040000,"y":0},{"x":1568954100000,"y":0},{"x":1568954160000,"y":0},{"x":1568954220000,"y":0},{"x":1568954280000,"y":0},{"x":1568954340000,"y":0},{"x":1568954400000,"y":0},{"x":1568954460000,"y":0},{"x":1568954520000,"y":0},{"x":1568954580000,"y":0},{"x":1568954640000,"y":0},{"x":1568954700000,"y":0},{"x":1568954760000,"y":0},{"x":1568954820000,"y":0},{"x":1568954880000,"y":0},{"x":1568954940000,"y":0},{"x":1568955000000,"y":0},{"x":1568955060000,"y":0},{"x":1568955120000,"y":0},{"x":1568955180000,"y":0},{"x":1568955240000,"y":0},{"x":1568955300000,"y":0},{"x":1568955360000,"y":0},{"x":1568955420000,"y":0},{"x":1568955480000,"y":0},{"x":1568955540000,"y":0},{"x":1568955600000,"y":0},{"x":1568955660000,"y":0},{"x":1568955720000,"y":0},{"x":1568955780000,"y":0},{"x":1568955840000,"y":0},{"x":1568955900000,"y":0},{"x":1568955960000,"y":0},{"x":1568956020000,"y":0},{"x":1568956080000,"y":0.01},{"x":1568956140000,"y":0.01},{"x":1568956200000,"y":0},{"x":1568956260000,"y":0},{"x":1568956320000,"y":0},{"x":1568956380000,"y":0},{"x":1568956440000,"y":0},{"x":1568956500000,"y":0},{"x":1568956560000,"y":0},{"x":1568956620000,"y":0},{"x":1568956680000,"y":0},{"x":1568956740000,"y":0},{"x":1568956800000,"y":0},{"x":1568956860000,"y":0},{"x":1568956920000,"y":0},{"x":1568956980000,"y":0},{"x":1568957040000,"y":0},{"x":1568957100000,"y":0},{"x":1568957160000,"y":0},{"x":1568957220000,"y":0},{"x":1568957280000,"y":0},{"x":1568957340000,"y":0},{"x":1568957400000,"y":0},{"x":1568957460000,"y":0},{"x":1568957520000,"y":0},{"x":1568957580000,"y":0},{"x":1568957640000,"y":0},{"x":1568957700000,"y":0},{"x":1568957760000,"y":0},{"x":1568957820000,"y":0},{"x":1568957880000,"y":0},{"x":1568957940000,"y":0},{"x":1568958000000,"y":0},{"x":1568958060000,"y":0},{"x":1568958120000,"y":0},{"x":1568958180000,"y":0},{"x":1568958240000,"y":0},{"x":1568958300000,"y":0},{"x":1568958360000,"y":0},{"x":1568958420000,"y":0},{"x":1568958480000,"y":0},{"x":1568958540000,"y":0},{"x":1568958600000,"y":0},{"x":1568958660000,"y":0},{"x":1568958720000,"y":0},{"x":1568958780000,"y":0},{"x":1568958840000,"y":0},{"x":1568958900000,"y":0},{"x":1568958960000,"y":0},{"x":1568959020000,"y":0},{"x":1568959080000,"y":0},{"x":1568959140000,"y":0},{"x":1568959200000,"y":0},{"x":1568959260000,"y":0},{"x":1568959320000,"y":0},{"x":1568959380000,"y":0},{"x":1568959440000,"y":0},{"x":1568959500000,"y":0},{"x":1568959560000,"y":0},{"x":1568959620000,"y":0},{"x":1568959680000,"y":0},{"x":1568959740000,"y":0},{"x":1568959800000,"y":0},{"x":1568959860000,"y":0},{"x":1568959920000,"y":0},{"x":1568959980000,"y":0},{"x":1568960040000,"y":0},{"x":1568960100000,"y":0},{"x":1568960160000,"y":0},{"x":1568960220000,"y":0},{"x":1568960280000,"y":0.01},{"x":1568960340000,"y":0.01},{"x":1568960400000,"y":0},{"x":1568960460000,"y":0},{"x":1568960520000,"y":0},{"x":1568960580000,"y":0},{"x":1568960640000,"y":0},{"x":1568960700000,"y":0},{"x":1568960760000,"y":0},{"x":1568960820000,"y":0},{"x":1568960880000,"y":0},{"x":1568960940000,"y":0},{"x":1568961000000,"y":0},{"x":1568961060000,"y":0},{"x":1568961120000,"y":0},{"x":1568961180000,"y":0},{"x":1568961240000,"y":0},{"x":1568961300000,"y":0},{"x":1568961360000,"y":0},{"x":1568961420000,"y":0},{"x":1568961480000,"y":0},{"x":1568961540000,"y":0},{"x":1568961600000,"y":0},{"x":1568961660000,"y":0},{"x":1568961720000,"y":0},{"x":1568961780000,"y":0},{"x":1568961840000,"y":0},{"x":1568961900000,"y":0},{"x":1568961960000,"y":0},{"x":1568962020000,"y":0},{"x":1568962080000,"y":0},{"x":1568962140000,"y":0},{"x":1568962200000,"y":0},{"x":1568962260000,"y":0},{"x":1568962320000,"y":0},{"x":1568962380000,"y":0},{"x":1568962440000,"y":0},{"x":1568962500000,"y":0},{"x":1568962560000,"y":0},{"x":1568962620000,"y":0},{"x":1568962680000,"y":0},{"x":1568962740000,"y":0},{"x":1568962800000,"y":0},{"x":1568962860000,"y":0},{"x":1568962920000,"y":0},{"x":1568962980000,"y":0},{"x":1568963040000,"y":0},{"x":1568963100000,"y":0},{"x":1568963160000,"y":0},{"x":1568963220000,"y":0},{"x":1568963280000,"y":0},{"x":1568963340000,"y":0},{"x":1568963400000,"y":0},{"x":1568963460000,"y":0},{"x":1568963520000,"y":0},{"x":1568963580000,"y":0},{"x":1568963640000,"y":0},{"x":1568963700000,"y":0},{"x":1568963760000,"y":0},{"x":1568963820000,"y":0},{"x":1568963880000,"y":0},{"x":1568963940000,"y":0},{"x":1568964000000,"y":0},{"x":1568964060000,"y":0},{"x":1568964120000,"y":0},{"x":1568964180000,"y":0},{"x":1568964240000,"y":0},{"x":1568964300000,"y":0},{"x":1568964360000,"y":0},{"x":1568964420000,"y":0},{"x":1568964480000,"y":0},{"x":1568964540000,"y":0},{"x":1568964600000,"y":0},{"x":1568964660000,"y":0},{"x":1568964720000,"y":0},{"x":1568964780000,"y":0},{"x":1568964840000,"y":0},{"x":1568964900000,"y":0},{"x":1568964960000,"y":0},{"x":1568965020000,"y":0},{"x":1568965080000,"y":0},{"x":1568965140000,"y":0},{"x":1568965200000,"y":0},{"x":1568965260000,"y":0},{"x":1568965320000,"y":0},{"x":1568965380000,"y":0},{"x":1568965440000,"y":0},{"x":1568965500000,"y":0},{"x":1568965560000,"y":0},{"x":1568965620000,"y":0},{"x":1568965680000,"y":0},{"x":1568965740000,"y":0},{"x":1568965800000,"y":0},{"x":1568965860000,"y":0},{"x":1568965920000,"y":0},{"x":1568965980000,"y":0},{"x":1568966040000,"y":0},{"x":1568966100000,"y":0},{"x":1568966160000,"y":0},{"x":1568966220000,"y":0},{"x":1568966280000,"y":0},{"x":1568966340000,"y":0},{"x":1568966400000,"y":0},{"x":1568966460000,"y":0},{"x":1568966520000,"y":0},{"x":1568966580000,"y":0},{"x":1568966640000,"y":0},{"x":1568966700000,"y":0},{"x":1568966760000,"y":0},{"x":1568966820000,"y":0},{"x":1568966880000,"y":0},{"x":1568966940000,"y":0},{"x":1568967000000,"y":0},{"x":1568967060000,"y":0},{"x":1568967120000,"y":0},{"x":1568967180000,"y":0},{"x":1568967240000,"y":0},{"x":1568967300000,"y":0},{"x":1568967360000,"y":0},{"x":1568967420000,"y":0},{"x":1568967480000,"y":0},{"x":1568967540000,"y":0},{"x":1568967600000,"y":0},{"x":1568967660000,"y":0},{"x":1568967720000,"y":0},{"x":1568967780000,"y":0},{"x":1568967840000,"y":0},{"x":1568967900000,"y":0},{"x":1568967960000,"y":0},{"x":1568968020000,"y":0},{"x":1568968080000,"y":0},{"x":1568968140000,"y":0},{"x":1568968200000,"y":0},{"x":1568968260000,"y":0},{"x":1568968320000,"y":0},{"x":1568968380000,"y":0},{"x":1568968440000,"y":0},{"x":1568968500000,"y":0.01},{"x":1568968560000,"y":0.02},{"x":1568968620000,"y":0},{"x":1568968680000,"y":0},{"x":1568968740000,"y":0},{"x":1568968800000,"y":0},{"x":1568968860000,"y":0},{"x":1568968920000,"y":0},{"x":1568968980000,"y":0},{"x":1568969040000,"y":0},{"x":1568969100000,"y":0},{"x":1568969160000,"y":0},{"x":1568969220000,"y":0},{"x":1568969280000,"y":0},{"x":1568969340000,"y":0},{"x":1568969400000,"y":0},{"x":1568969460000,"y":0},{"x":1568969520000,"y":0},{"x":1568969580000,"y":0},{"x":1568969640000,"y":0},{"x":1568969700000,"y":0},{"x":1568969760000,"y":0},{"x":1568969820000,"y":0},{"x":1568969880000,"y":0},{"x":1568969940000,"y":0},{"x":1568970000000,"y":0},{"x":1568970060000,"y":0},{"x":1568970120000,"y":0},{"x":1568970180000,"y":0},{"x":1568970240000,"y":0},{"x":1568970300000,"y":0},{"x":1568970360000,"y":0},{"x":1568970420000,"y":0},{"x":1568970480000,"y":0},{"x":1568970540000,"y":0},{"x":1568970600000,"y":0},{"x":1568970660000,"y":0},{"x":1568970720000,"y":0},{"x":1568970780000,"y":0},{"x":1568970840000,"y":0},{"x":1568970900000,"y":0},{"x":1568970960000,"y":0},{"x":1568971020000,"y":0},{"x":1568971080000,"y":0},{"x":1568971140000,"y":0},{"x":1568971200000,"y":0},{"x":1568971260000,"y":0},{"x":1568971320000,"y":0},{"x":1568971380000,"y":0},{"x":1568971440000,"y":0},{"x":1568971500000,"y":0},{"x":1568971560000,"y":0},{"x":1568971620000,"y":0.02},{"x":1568971680000,"y":0},{"x":1568971740000,"y":0},{"x":1568971800000,"y":0},{"x":1568971860000,"y":0},{"x":1568971920000,"y":0},{"x":1568971980000,"y":0},{"x":1568972040000,"y":0},{"x":1568972100000,"y":0},{"x":1568972160000,"y":0},{"x":1568972220000,"y":0},{"x":1568972280000,"y":0},{"x":1568972340000,"y":0},{"x":1568972400000,"y":0},{"x":1568972460000,"y":0.43},{"x":1568972520000,"y":0.07},{"x":1568972580000,"y":0},{"x":1568972640000,"y":0},{"x":1568972700000,"y":0},{"x":1568972760000,"y":0},{"x":1568972820000,"y":0},{"x":1568972880000,"y":0},{"x":1568972940000,"y":0},{"x":1568973000000,"y":0},{"x":1568973060000,"y":0},{"x":1568973120000,"y":0},{"x":1568973180000,"y":0},{"x":1568973240000,"y":0},{"x":1568973300000,"y":0},{"x":1568973360000,"y":0},{"x":1568973420000,"y":0},{"x":1568973480000,"y":0},{"x":1568973540000,"y":0},{"x":1568973600000,"y":0},{"x":1568973660000,"y":0},{"x":1568973720000,"y":0},{"x":1568973780000,"y":0},{"x":1568973840000,"y":0},{"x":1568973900000,"y":0},{"x":1568973960000,"y":0},{"x":1568974020000,"y":0},{"x":1568974080000,"y":0},{"x":1568974140000,"y":0},{"x":1568974200000,"y":0},{"x":1568974260000,"y":0},{"x":1568974320000,"y":0},{"x":1568974380000,"y":0},{"x":1568974440000,"y":0},{"x":1568974500000,"y":0},{"x":1568974560000,"y":0},{"x":1568974620000,"y":0},{"x":1568974680000,"y":0},{"x":1568974740000,"y":0},{"x":1568974800000,"y":0},{"x":1568974860000,"y":0},{"x":1568974920000,"y":0},{"x":1568974980000,"y":0},{"x":1568975040000,"y":0.01},{"x":1568975100000,"y":0},{"x":1568975160000,"y":0},{"x":1568975220000,"y":0},{"x":1568975280000,"y":0},{"x":1568975340000,"y":0},{"x":1568975400000,"y":0},{"x":1568975460000,"y":0},{"x":1568975520000,"y":0},{"x":1568975580000,"y":0},{"x":1568975640000,"y":0},{"x":1568975700000,"y":0},{"x":1568975760000,"y":0},{"x":1568975820000,"y":0},{"x":1568975880000,"y":0},{"x":1568975940000,"y":0},{"x":1568976000000,"y":0},{"x":1568976060000,"y":0},{"x":1568976120000,"y":0},{"x":1568976180000,"y":0},{"x":1568976240000,"y":0},{"x":1568976300000,"y":0},{"x":1568976360000,"y":0},{"x":1568976420000,"y":0},{"x":1568976480000,"y":0},{"x":1568976540000,"y":0},{"x":1568976600000,"y":0},{"x":1568976660000,"y":0},{"x":1568976720000,"y":0},{"x":1568976780000,"y":0},{"x":1568976840000,"y":0},{"x":1568976900000,"y":0},{"x":1568976960000,"y":0},{"x":1568977020000,"y":0},{"x":1568977080000,"y":0},{"x":1568977140000,"y":0},{"x":1568977200000,"y":0},{"x":1568977260000,"y":0},{"x":1568977320000,"y":0},{"x":1568977380000,"y":0},{"x":1568977440000,"y":0},{"x":1568977500000,"y":0},{"x":1568977560000,"y":0},{"x":1568977620000,"y":0},{"x":1568977680000,"y":0},{"x":1568977740000,"y":0},{"x":1568977800000,"y":0},{"x":1568977860000,"y":0},{"x":1568977920000,"y":0},{"x":1568977980000,"y":0},{"x":1568978040000,"y":0},{"x":1568978100000,"y":0},{"x":1568978160000,"y":0},{"x":1568978220000,"y":0},{"x":1568978280000,"y":0},{"x":1568978340000,"y":0},{"x":1568978400000,"y":0},{"x":1568978460000,"y":0},{"x":1568978520000,"y":0},{"x":1568978580000,"y":0},{"x":1568978640000,"y":0},{"x":1568978700000,"y":0},{"x":1568978760000,"y":0},{"x":1568978820000,"y":0},{"x":1568978880000,"y":0},{"x":1568978940000,"y":0},{"x":1568979000000,"y":0},{"x":1568979060000,"y":0},{"x":1568979120000,"y":0},{"x":1568979180000,"y":0},{"x":1568979240000,"y":0},{"x":1568979300000,"y":0},{"x":1568979360000,"y":0},{"x":1568979420000,"y":0},{"x":1568979480000,"y":0},{"x":1568979540000,"y":0},{"x":1568979600000,"y":0},{"x":1568979660000,"y":0},{"x":1568979720000,"y":0},{"x":1568979780000,"y":0},{"x":1568979840000,"y":0},{"x":1568979900000,"y":0},{"x":1568979960000,"y":0},{"x":1568980020000,"y":0},{"x":1568980080000,"y":0},{"x":1568980140000,"y":0},{"x":1568980200000,"y":0},{"x":1568980260000,"y":0},{"x":1568980320000,"y":0},{"x":1568980380000,"y":0},{"x":1568980440000,"y":0},{"x":1568980500000,"y":0},{"x":1568980560000,"y":0},{"x":1568980620000,"y":0.09},{"x":1568980680000,"y":0},{"x":1568980740000,"y":0},{"x":1568980800000,"y":0},{"x":1568980860000,"y":0},{"x":1568980920000,"y":0},{"x":1568980980000,"y":0},{"x":1568981040000,"y":0},{"x":1568981100000,"y":0},{"x":1568981160000,"y":0},{"x":1568981220000,"y":0},{"x":1568981280000,"y":0},{"x":1568981340000,"y":0},{"x":1568981400000,"y":0},{"x":1568981460000,"y":0},{"x":1568981520000,"y":0},{"x":1568981580000,"y":0},{"x":1568981640000,"y":0},{"x":1568981700000,"y":0},{"x":1568981760000,"y":0},{"x":1568981820000,"y":0},{"x":1568981880000,"y":0},{"x":1568981940000,"y":0},{"x":1568982000000,"y":0},{"x":1568982060000,"y":0},{"x":1568982120000,"y":0},{"x":1568982180000,"y":0},{"x":1568982240000,"y":0},{"x":1568982300000,"y":0},{"x":1568982360000,"y":0},{"x":1568982420000,"y":0},{"x":1568982480000,"y":0},{"x":1568982540000,"y":0},{"x":1568982600000,"y":0},{"x":1568982660000,"y":0},{"x":1568982720000,"y":0},{"x":1568982780000,"y":0},{"x":1568982840000,"y":0},{"x":1568982900000,"y":0},{"x":1568982960000,"y":0},{"x":1568983020000,"y":0},{"x":1568983080000,"y":0.01},{"x":1568983140000,"y":0.01},{"x":1568983200000,"y":0.02},{"x":1568983260000,"y":0.01},{"x":1568983320000,"y":0.01},{"x":1568983380000,"y":0.01},{"x":1568983440000,"y":0},{"x":1568983500000,"y":0.01},{"x":1568983560000,"y":0.01},{"x":1568983620000,"y":0},{"x":1568983680000,"y":0},{"x":1568983740000,"y":0},{"x":1568983800000,"y":0},{"x":1568983860000,"y":0},{"x":1568983920000,"y":0},{"x":1568983980000,"y":0},{"x":1568984040000,"y":0},{"x":1568984100000,"y":0},{"x":1568984160000,"y":0},{"x":1568984220000,"y":0},{"x":1568984280000,"y":0},{"x":1568984340000,"y":0},{"x":1568984400000,"y":0},{"x":1568984460000,"y":0},{"x":1568984520000,"y":0},{"x":1568984580000,"y":0},{"x":1568984640000,"y":0},{"x":1568984700000,"y":0},{"x":1568984760000,"y":0},{"x":1568984820000,"y":0},{"x":1568984880000,"y":0},{"x":1568984940000,"y":0},{"x":1568985000000,"y":0},{"x":1568985060000,"y":0},{"x":1568985120000,"y":0},{"x":1568985180000,"y":0},{"x":1568985240000,"y":0},{"x":1568985300000,"y":0},{"x":1568985360000,"y":0},{"x":1568985420000,"y":0},{"x":1568985480000,"y":0},{"x":1568985540000,"y":0},{"x":1568985600000,"y":0},{"x":1568985660000,"y":0},{"x":1568985720000,"y":0},{"x":1568985780000,"y":0},{"x":1568985840000,"y":0},{"x":1568985900000,"y":0},{"x":1568985960000,"y":0},{"x":1568986020000,"y":0},{"x":1568986080000,"y":0},{"x":1568986140000,"y":0},{"x":1568986200000,"y":0},{"x":1568986260000,"y":0},{"x":1568986320000,"y":0},{"x":1568986380000,"y":0},{"x":1568986440000,"y":0},{"x":1568986500000,"y":0},{"x":1568986560000,"y":0},{"x":1568986620000,"y":0},{"x":1568986680000,"y":0},{"x":1568986740000,"y":0},{"x":1568986800000,"y":0},{"x":1568986860000,"y":0},{"x":1568986920000,"y":0},{"x":1568986980000,"y":0},{"x":1568987040000,"y":0},{"x":1568987100000,"y":0},{"x":1568987160000,"y":0},{"x":1568987220000,"y":0},{"x":1568987280000,"y":0},{"x":1568987340000,"y":0},{"x":1568987400000,"y":0},{"x":1568987460000,"y":0},{"x":1568987520000,"y":0},{"x":1568987580000,"y":0},{"x":1568987640000,"y":0},{"x":1568987700000,"y":0},{"x":1568987760000,"y":0},{"x":1568987820000,"y":0},{"x":1568987880000,"y":0},{"x":1568987940000,"y":0},{"x":1568988000000,"y":0},{"x":1568988060000,"y":0},{"x":1568988120000,"y":0},{"x":1568988180000,"y":0},{"x":1568988240000,"y":0},{"x":1568988300000,"y":0},{"x":1568988360000,"y":0},{"x":1568988420000,"y":0},{"x":1568988480000,"y":0},{"x":1568988540000,"y":0},{"x":1568988600000,"y":0.02},{"x":1568988660000,"y":0.01},{"x":1568988720000,"y":0},{"x":1568988780000,"y":0},{"x":1568988840000,"y":0},{"x":1568988900000,"y":0},{"x":1568988960000,"y":0},{"x":1568989020000,"y":0},{"x":1568989080000,"y":0},{"x":1568989140000,"y":0},{"x":1568989200000,"y":0},{"x":1568989260000,"y":0},{"x":1568989320000,"y":0},{"x":1568989380000,"y":0},{"x":1568989440000,"y":0},{"x":1568989500000,"y":0},{"x":1568989560000,"y":0},{"x":1568989620000,"y":0},{"x":1568989680000,"y":0},{"x":1568989740000,"y":0},{"x":1568989800000,"y":0},{"x":1568989860000,"y":0},{"x":1568989920000,"y":0},{"x":1568989980000,"y":0},{"x":1568990040000,"y":0},{"x":1568990100000,"y":0.02},{"x":1568990160000,"y":0},{"x":1568990220000,"y":0},{"x":1568990280000,"y":0},{"x":1568990340000,"y":0},{"x":1568990400000,"y":0},{"x":1568990460000,"y":0},{"x":1568990520000,"y":0},{"x":1568990580000,"y":0},{"x":1568990640000,"y":0},{"x":1568990700000,"y":0},{"x":1568990760000,"y":0},{"x":1568990820000,"y":0},{"x":1568990880000,"y":0},{"x":1568990940000,"y":0},{"x":1568991000000,"y":0},{"x":1568991060000,"y":0.29},{"x":1568991120000,"y":1.33},{"x":1568991180000,"y":0.08},{"x":1568991240000,"y":0},{"x":1568991300000,"y":0},{"x":1568991360000,"y":0},{"x":1568991420000,"y":0},{"x":1568991480000,"y":0},{"x":1568991540000,"y":0},{"x":1568991600000,"y":0},{"x":1568991660000,"y":0},{"x":1568991720000,"y":0},{"x":1568991780000,"y":0},{"x":1568991840000,"y":0},{"x":1568991900000,"y":0},{"x":1568991960000,"y":0},{"x":1568992020000,"y":0},{"x":1568992080000,"y":0},{"x":1568992140000,"y":0},{"x":1568992200000,"y":0},{"x":1568992260000,"y":0},{"x":1568992320000,"y":0},{"x":1568992380000,"y":0},{"x":1568992440000,"y":0},{"x":1568992500000,"y":0},{"x":1568992560000,"y":0},{"x":1568992620000,"y":0},{"x":1568992680000,"y":0},{"x":1568992740000,"y":0},{"x":1568992800000,"y":0.01},{"x":1568992860000,"y":0},{"x":1568992920000,"y":0},{"x":1568992980000,"y":0},{"x":1568993040000,"y":0},{"x":1568993100000,"y":0},{"x":1568993160000,"y":0},{"x":1568993220000,"y":0},{"x":1568993280000,"y":0},{"x":1568993340000,"y":0},{"x":1568993400000,"y":0},{"x":1568993460000,"y":0},{"x":1568993520000,"y":0},{"x":1568993580000,"y":0},{"x":1568993640000,"y":0},{"x":1568993700000,"y":0},{"x":1568993760000,"y":0},{"x":1568993820000,"y":0},{"x":1568993880000,"y":0},{"x":1568993940000,"y":0},{"x":1568994000000,"y":0},{"x":1568994060000,"y":0},{"x":1568994120000,"y":0},{"x":1568994180000,"y":0},{"x":1568994240000,"y":0},{"x":1568994300000,"y":0},{"x":1568994360000,"y":0},{"x":1568994420000,"y":0},{"x":1568994480000,"y":0},{"x":1568994540000,"y":0},{"x":1568994600000,"y":0},{"x":1568994660000,"y":0.01},{"x":1568994720000,"y":0.24},{"x":1568994780000,"y":0},{"x":1568994840000,"y":0},{"x":1568994900000,"y":0},{"x":1568994960000,"y":0},{"x":1568995020000,"y":0},{"x":1568995080000,"y":0},{"x":1568995140000,"y":0},{"x":1568995200000,"y":0},{"x":1568995260000,"y":0.81},{"x":1568995320000,"y":0.01},{"x":1568995380000,"y":0},{"x":1568995440000,"y":0},{"x":1568995500000,"y":0},{"x":1568995560000,"y":0},{"x":1568995620000,"y":0},{"x":1568995680000,"y":0.01},{"x":1568995740000,"y":0},{"x":1568995800000,"y":0},{"x":1568995860000,"y":0},{"x":1568995920000,"y":0},{"x":1568995980000,"y":0},{"x":1568996040000,"y":0},{"x":1568996100000,"y":0},{"x":1568996160000,"y":0},{"x":1568996220000,"y":0},{"x":1568996280000,"y":0},{"x":1568996340000,"y":0},{"x":1568996400000,"y":0},{"x":1568996460000,"y":0},{"x":1568996520000,"y":0},{"x":1568996580000,"y":0},{"x":1568996640000,"y":0},{"x":1568996700000,"y":0.01},{"x":1568996760000,"y":0},{"x":1568996820000,"y":0},{"x":1568996880000,"y":0},{"x":1568996940000,"y":0},{"x":1568997000000,"y":0},{"x":1568997060000,"y":0},{"x":1568997120000,"y":0},{"x":1568997180000,"y":0},{"x":1568997240000,"y":0},{"x":1568997300000,"y":0},{"x":1568997360000,"y":0},{"x":1568997420000,"y":0},{"x":1568997480000,"y":0},{"x":1568997540000,"y":0},{"x":1568997600000,"y":0},{"x":1568997660000,"y":0},{"x":1568997720000,"y":0},{"x":1568997780000,"y":0},{"x":1568997840000,"y":0},{"x":1568997900000,"y":0},{"x":1568997960000,"y":0},{"x":1568998020000,"y":0},{"x":1568998080000,"y":0},{"x":1568998140000,"y":0},{"x":1568998200000,"y":0},{"x":1568998260000,"y":0},{"x":1568998320000,"y":0},{"x":1568998380000,"y":0},{"x":1568998440000,"y":0},{"x":1568998500000,"y":0},{"x":1568998560000,"y":0},{"x":1568998620000,"y":0},{"x":1568998680000,"y":0},{"x":1568998740000,"y":0},{"x":1568998800000,"y":0},{"x":1568998860000,"y":0},{"x":1568998920000,"y":0},{"x":1568998980000,"y":0},{"x":1568999040000,"y":0},{"x":1568999100000,"y":0},{"x":1568999160000,"y":0},{"x":1568999220000,"y":0},{"x":1568999280000,"y":0},{"x":1568999340000,"y":0},{"x":1568999400000,"y":0},{"x":1568999460000,"y":0},{"x":1568999520000,"y":0},{"x":1568999580000,"y":0},{"x":1568999640000,"y":0},{"x":1568999700000,"y":0},{"x":1568999760000,"y":0},{"x":1568999820000,"y":0},{"x":1568999880000,"y":0},{"x":1568999940000,"y":0},{"x":1569000000000,"y":0},{"x":1569000060000,"y":0},{"x":1569000120000,"y":0},{"x":1569000180000,"y":0},{"x":1569000240000,"y":0},{"x":1569000300000,"y":0},{"x":1569000360000,"y":0},{"x":1569000420000,"y":0},{"x":1569000480000,"y":0},{"x":1569000540000,"y":0},{"x":1569000600000,"y":0},{"x":1569000660000,"y":0},{"x":1569000720000,"y":0.01},{"x":1569000780000,"y":0},{"x":1569000840000,"y":0},{"x":1569000900000,"y":0},{"x":1569000960000,"y":0},{"x":1569001020000,"y":0},{"x":1569001080000,"y":0},{"x":1569001140000,"y":0},{"x":1569001200000,"y":0},{"x":1569001260000,"y":0},{"x":1569001320000,"y":0},{"x":1569001380000,"y":0},{"x":1569001440000,"y":0},{"x":1569001500000,"y":0},{"x":1569001560000,"y":0},{"x":1569001620000,"y":0},{"x":1569001680000,"y":0},{"x":1569001740000,"y":0},{"x":1569001800000,"y":0},{"x":1569001860000,"y":0},{"x":1569001920000,"y":0},{"x":1569001980000,"y":0},{"x":1569002040000,"y":0},{"x":1569002100000,"y":0},{"x":1569002160000,"y":0},{"x":1569002220000,"y":0},{"x":1569002280000,"y":0},{"x":1569002340000,"y":0},{"x":1569002400000,"y":0},{"x":1569002460000,"y":0},{"x":1569002520000,"y":0},{"x":1569002580000,"y":0},{"x":1569002640000,"y":0},{"x":1569002700000,"y":0},{"x":1569002760000,"y":0},{"x":1569002820000,"y":0},{"x":1569002880000,"y":0},{"x":1569002940000,"y":0},{"x":1569003000000,"y":0},{"x":1569003060000,"y":0},{"x":1569003120000,"y":0},{"x":1569003180000,"y":0},{"x":1569003240000,"y":0},{"x":1569003300000,"y":0},{"x":1569003360000,"y":0},{"x":1569003420000,"y":0},{"x":1569003480000,"y":0},{"x":1569003540000,"y":0},{"x":1569003600000,"y":0},{"x":1569003660000,"y":0},{"x":1569003720000,"y":0},{"x":1569003780000,"y":0},{"x":1569003840000,"y":0},{"x":1569003900000,"y":0},{"x":1569003960000,"y":0},{"x":1569004020000,"y":0},{"x":1569004080000,"y":0},{"x":1569004140000,"y":0},{"x":1569004200000,"y":0},{"x":1569004260000,"y":0},{"x":1569004320000,"y":0},{"x":1569004380000,"y":0},{"x":1569004440000,"y":0},{"x":1569004500000,"y":0},{"x":1569004560000,"y":0},{"x":1569004620000,"y":0},{"x":1569004680000,"y":0},{"x":1569004740000,"y":0},{"x":1569004800000,"y":0},{"x":1569004860000,"y":0},{"x":1569004920000,"y":0},{"x":1569004980000,"y":0},{"x":1569005040000,"y":0},{"x":1569005100000,"y":0},{"x":1569005160000,"y":0},{"x":1569005220000,"y":0},{"x":1569005280000,"y":0},{"x":1569005340000,"y":0},{"x":1569005400000,"y":0},{"x":1569005460000,"y":0},{"x":1569005520000,"y":0},{"x":1569005580000,"y":0},{"x":1569005640000,"y":0},{"x":1569005700000,"y":0},{"x":1569005760000,"y":0},{"x":1569005820000,"y":0},{"x":1569005880000,"y":0},{"x":1569005940000,"y":0},{"x":1569006000000,"y":0},{"x":1569006060000,"y":0},{"x":1569006120000,"y":0},{"x":1569006180000,"y":0},{"x":1569006240000,"y":0},{"x":1569006300000,"y":0},{"x":1569006360000,"y":0},{"x":1569006420000,"y":0},{"x":1569006480000,"y":0},{"x":1569006540000,"y":0},{"x":1569006600000,"y":0},{"x":1569006660000,"y":0},{"x":1569006720000,"y":0.01},{"x":1569006780000,"y":0},{"x":1569006840000,"y":0},{"x":1569006900000,"y":0},{"x":1569006960000,"y":0},{"x":1569007020000,"y":0},{"x":1569007080000,"y":0},{"x":1569007140000,"y":0},{"x":1569007200000,"y":0},{"x":1569007260000,"y":0},{"x":1569007320000,"y":0},{"x":1569007380000,"y":0},{"x":1569007440000,"y":0},{"x":1569007500000,"y":0},{"x":1569007560000,"y":0},{"x":1569007620000,"y":0},{"x":1569007680000,"y":0},{"x":1569007740000,"y":0},{"x":1569007800000,"y":0},{"x":1569007860000,"y":0},{"x":1569007920000,"y":0},{"x":1569007980000,"y":0},{"x":1569008040000,"y":0},{"x":1569008100000,"y":0},{"x":1569008160000,"y":0},{"x":1569008220000,"y":0},{"x":1569008280000,"y":0},{"x":1569008340000,"y":0},{"x":1569008400000,"y":0},{"x":1569008460000,"y":0},{"x":1569008520000,"y":0.01},{"x":1569008580000,"y":0},{"x":1569008640000,"y":0},{"x":1569008700000,"y":0},{"x":1569008760000,"y":0},{"x":1569008820000,"y":0},{"x":1569008880000,"y":0},{"x":1569008940000,"y":0},{"x":1569009000000,"y":0},{"x":1569009060000,"y":0},{"x":1569009120000,"y":0},{"x":1569009180000,"y":0},{"x":1569009240000,"y":0},{"x":1569009300000,"y":0},{"x":1569009360000,"y":0},{"x":1569009420000,"y":0},{"x":1569009480000,"y":0},{"x":1569009540000,"y":0},{"x":1569009600000,"y":0},{"x":1569009660000,"y":0},{"x":1569009720000,"y":0},{"x":1569009780000,"y":0},{"x":1569009840000,"y":0},{"x":1569009900000,"y":0},{"x":1569009960000,"y":0},{"x":1569010020000,"y":0},{"x":1569010080000,"y":0},{"x":1569010140000,"y":0},{"x":1569010200000,"y":0},{"x":1569010260000,"y":0},{"x":1569010320000,"y":0},{"x":1569010380000,"y":0},{"x":1569010440000,"y":0},{"x":1569010500000,"y":0},{"x":1569010560000,"y":0},{"x":1569010620000,"y":0},{"x":1569010680000,"y":0},{"x":1569010740000,"y":0},{"x":1569010800000,"y":0},{"x":1569010860000,"y":0},{"x":1569010920000,"y":0},{"x":1569010980000,"y":0},{"x":1569011040000,"y":0},{"x":1569011100000,"y":0},{"x":1569011160000,"y":0},{"x":1569011220000,"y":0},{"x":1569011280000,"y":0},{"x":1569011340000,"y":0},{"x":1569011400000,"y":0},{"x":1569011460000,"y":0},{"x":1569011520000,"y":0},{"x":1569011580000,"y":0},{"x":1569011640000,"y":0},{"x":1569011700000,"y":0},{"x":1569011760000,"y":0},{"x":1569011820000,"y":0},{"x":1569011880000,"y":0},{"x":1569011940000,"y":0},{"x":1569012000000,"y":0},{"x":1569012060000,"y":0},{"x":1569012120000,"y":0},{"x":1569012180000,"y":0},{"x":1569012240000,"y":0},{"x":1569012300000,"y":0},{"x":1569012360000,"y":0},{"x":1569012420000,"y":0},{"x":1569012480000,"y":0},{"x":1569012540000,"y":0},{"x":1569012600000,"y":0},{"x":1569012660000,"y":0},{"x":1569012720000,"y":0},{"x":1569012780000,"y":0},{"x":1569012840000,"y":0},{"x":1569012900000,"y":0},{"x":1569012960000,"y":0},{"x":1569013020000,"y":0},{"x":1569013080000,"y":0},{"x":1569013140000,"y":0},{"x":1569013200000,"y":0},{"x":1569013260000,"y":0.09},{"x":1569013320000,"y":0},{"x":1569013380000,"y":0.01},{"x":1569013440000,"y":0},{"x":1569013500000,"y":0},{"x":1569013560000,"y":0},{"x":1569013620000,"y":0},{"x":1569013680000,"y":0},{"x":1569013740000,"y":0},{"x":1569013800000,"y":0},{"x":1569013860000,"y":0},{"x":1569013920000,"y":0},{"x":1569013980000,"y":0},{"x":1569014040000,"y":0},{"x":1569014100000,"y":0},{"x":1569014160000,"y":0},{"x":1569014220000,"y":0},{"x":1569014280000,"y":0},{"x":1569014340000,"y":0},{"x":1569014400000,"y":0},{"x":1569014460000,"y":0},{"x":1569014520000,"y":0},{"x":1569014580000,"y":0},{"x":1569014640000,"y":0},{"x":1569014700000,"y":0},{"x":1569014760000,"y":0},{"x":1569014820000,"y":0.02},{"x":1569014880000,"y":0},{"x":1569014940000,"y":0},{"x":1569015000000,"y":0},{"x":1569015060000,"y":0},{"x":1569015120000,"y":0},{"x":1569015180000,"y":0},{"x":1569015240000,"y":0},{"x":1569015300000,"y":0},{"x":1569015360000,"y":0},{"x":1569015420000,"y":0},{"x":1569015480000,"y":0},{"x":1569015540000,"y":0.03},{"x":1569015600000,"y":0},{"x":1569015660000,"y":0},{"x":1569015720000,"y":0},{"x":1569015780000,"y":0},{"x":1569015840000,"y":0},{"x":1569015900000,"y":0},{"x":1569015960000,"y":0},{"x":1569016020000,"y":0},{"x":1569016080000,"y":0},{"x":1569016140000,"y":0},{"x":1569016200000,"y":0},{"x":1569016260000,"y":0},{"x":1569016320000,"y":0},{"x":1569016380000,"y":0},{"x":1569016440000,"y":0},{"x":1569016500000,"y":0},{"x":1569016560000,"y":0},{"x":1569016620000,"y":0},{"x":1569016680000,"y":0},{"x":1569016740000,"y":0},{"x":1569016800000,"y":0},{"x":1569016860000,"y":0},{"x":1569016920000,"y":0},{"x":1569016980000,"y":0},{"x":1569017040000,"y":0},{"x":1569017100000,"y":0},{"x":1569017160000,"y":0},{"x":1569017220000,"y":0},{"x":1569017280000,"y":0},{"x":1569017340000,"y":0},{"x":1569017400000,"y":0},{"x":1569017460000,"y":0},{"x":1569017520000,"y":0},{"x":1569017580000,"y":0},{"x":1569017640000,"y":0},{"x":1569017700000,"y":0},{"x":1569017760000,"y":0},{"x":1569017820000,"y":0},{"x":1569017880000,"y":0},{"x":1569017940000,"y":0},{"x":1569018000000,"y":0},{"x":1569018060000,"y":0},{"x":1569018120000,"y":0},{"x":1569018180000,"y":0},{"x":1569018240000,"y":0},{"x":1569018300000,"y":0},{"x":1569018360000,"y":0},{"x":1569018420000,"y":0},{"x":1569018480000,"y":0},{"x":1569018540000,"y":0},{"x":1569018600000,"y":0.01},{"x":1569018660000,"y":0},{"x":1569018720000,"y":0},{"x":1569018780000,"y":0},{"x":1569018840000,"y":0},{"x":1569018900000,"y":0},{"x":1569018960000,"y":0},{"x":1569019020000,"y":0},{"x":1569019080000,"y":0},{"x":1569019140000,"y":0},{"x":1569019200000,"y":0},{"x":1569019260000,"y":0},{"x":1569019320000,"y":0},{"x":1569019380000,"y":0},{"x":1569019440000,"y":0},{"x":1569019500000,"y":0},{"x":1569019560000,"y":0},{"x":1569019620000,"y":0},{"x":1569019680000,"y":0},{"x":1569019740000,"y":0},{"x":1569019800000,"y":0},{"x":1569019860000,"y":0},{"x":1569019920000,"y":0},{"x":1569019980000,"y":0},{"x":1569020040000,"y":0},{"x":1569020100000,"y":0},{"x":1569020160000,"y":0},{"x":1569020220000,"y":0.61},{"x":1569020280000,"y":0},{"x":1569020340000,"y":0},{"x":1569020400000,"y":0},{"x":1569020460000,"y":0},{"x":1569020520000,"y":0},{"x":1569020580000,"y":0},{"x":1569020640000,"y":0},{"x":1569020700000,"y":0},{"x":1569020760000,"y":0},{"x":1569020820000,"y":0},{"x":1569020880000,"y":0},{"x":1569020940000,"y":0},{"x":1569021000000,"y":0},{"x":1569021060000,"y":0},{"x":1569021120000,"y":0},{"x":1569021180000,"y":0},{"x":1569021240000,"y":0},{"x":1569021300000,"y":0},{"x":1569021360000,"y":0},{"x":1569021420000,"y":0},{"x":1569021480000,"y":0},{"x":1569021540000,"y":0},{"x":1569021600000,"y":0},{"x":1569021660000,"y":0},{"x":1569021720000,"y":0},{"x":1569021780000,"y":0},{"x":1569021840000,"y":0},{"x":1569021900000,"y":0},{"x":1569021960000,"y":0},{"x":1569022020000,"y":0},{"x":1569022080000,"y":0},{"x":1569022140000,"y":0},{"x":1569022200000,"y":0},{"x":1569022260000,"y":0},{"x":1569022320000,"y":0},{"x":1569022380000,"y":0},{"x":1569022440000,"y":0},{"x":1569022500000,"y":0},{"x":1569022560000,"y":0},{"x":1569022620000,"y":0},{"x":1569022680000,"y":0},{"x":1569022740000,"y":0},{"x":1569022800000,"y":0},{"x":1569022860000,"y":0},{"x":1569022920000,"y":0},{"x":1569022980000,"y":0},{"x":1569023040000,"y":0},{"x":1569023100000,"y":0},{"x":1569023160000,"y":0},{"x":1569023220000,"y":0},{"x":1569023280000,"y":0},{"x":1569023340000,"y":0},{"x":1569023400000,"y":0},{"x":1569023460000,"y":0},{"x":1569023520000,"y":0},{"x":1569023580000,"y":0},{"x":1569023640000,"y":0},{"x":1569023700000,"y":0},{"x":1569023760000,"y":0},{"x":1569023820000,"y":0},{"x":1569023880000,"y":0},{"x":1569023940000,"y":0},{"x":1569024000000,"y":0},{"x":1569024060000,"y":0},{"x":1569024120000,"y":0},{"x":1569024180000,"y":0},{"x":1569024240000,"y":0},{"x":1569024300000,"y":0},{"x":1569024360000,"y":0},{"x":1569024420000,"y":0},{"x":1569024480000,"y":0},{"x":1569024540000,"y":0},{"x":1569024600000,"y":0},{"x":1569024660000,"y":0},{"x":1569024720000,"y":0},{"x":1569024780000,"y":0},{"x":1569024840000,"y":0},{"x":1569024900000,"y":0},{"x":1569024960000,"y":0},{"x":1569025020000,"y":0},{"x":1569025080000,"y":0},{"x":1569025140000,"y":0},{"x":1569025200000,"y":0},{"x":1569025260000,"y":0},{"x":1569025320000,"y":0},{"x":1569025380000,"y":0},{"x":1569025440000,"y":0},{"x":1569025500000,"y":0},{"x":1569025560000,"y":0},{"x":1569025620000,"y":0},{"x":1569025680000,"y":0},{"x":1569025740000,"y":0},{"x":1569025800000,"y":0},{"x":1569025860000,"y":0},{"x":1569025920000,"y":0},{"x":1569025980000,"y":0},{"x":1569026040000,"y":0},{"x":1569026100000,"y":0},{"x":1569026160000,"y":0},{"x":1569026220000,"y":0},{"x":1569026280000,"y":0},{"x":1569026340000,"y":0},{"x":1569026400000,"y":0},{"x":1569026460000,"y":0},{"x":1569026520000,"y":0},{"x":1569026580000,"y":0},{"x":1569026640000,"y":0},{"x":1569026700000,"y":0},{"x":1569026760000,"y":0},{"x":1569026820000,"y":0},{"x":1569026880000,"y":1.4},{"x":1569026940000,"y":1.8},{"x":1569027000000,"y":0.67},{"x":1569027060000,"y":0},{"x":1569027120000,"y":0},{"x":1569027180000,"y":1.11},{"x":1569027240000,"y":0.7},{"x":1569027300000,"y":1.02},{"x":1569027360000,"y":0},{"x":1569027420000,"y":0},{"x":1569027480000,"y":0},{"x":1569027540000,"y":0},{"x":1569027600000,"y":0},{"x":1569027660000,"y":0},{"x":1569027720000,"y":0},{"x":1569027780000,"y":0},{"x":1569027840000,"y":0},{"x":1569027900000,"y":0},{"x":1569027960000,"y":0},{"x":1569028020000,"y":0},{"x":1569028080000,"y":0},{"x":1569028140000,"y":0},{"x":1569028200000,"y":0},{"x":1569028260000,"y":0},{"x":1569028320000,"y":0},{"x":1569028380000,"y":0},{"x":1569028440000,"y":0},{"x":1569028500000,"y":0},{"x":1569028560000,"y":0},{"x":1569028620000,"y":0},{"x":1569028680000,"y":0},{"x":1569028740000,"y":0},{"x":1569028800000,"y":0},{"x":1569028860000,"y":0},{"x":1569028920000,"y":0},{"x":1569028980000,"y":0},{"x":1569029040000,"y":0},{"x":1569029100000,"y":0},{"x":1569029160000,"y":0},{"x":1569029220000,"y":0},{"x":1569029280000,"y":0},{"x":1569029340000,"y":0},{"x":1569029400000,"y":0},{"x":1569029460000,"y":0},{"x":1569029520000,"y":0},{"x":1569029580000,"y":0},{"x":1569029640000,"y":0},{"x":1569029700000,"y":0},{"x":1569029760000,"y":0},{"x":1569029820000,"y":0},{"x":1569029880000,"y":0},{"x":1569029940000,"y":0},{"x":1569030000000,"y":0},{"x":1569030060000,"y":0},{"x":1569030120000,"y":0},{"x":1569030180000,"y":0},{"x":1569030240000,"y":0},{"x":1569030300000,"y":0},{"x":1569030360000,"y":0},{"x":1569030420000,"y":0},{"x":1569030480000,"y":0},{"x":1569030540000,"y":0},{"x":1569030600000,"y":0},{"x":1569030660000,"y":0},{"x":1569030720000,"y":0},{"x":1569030780000,"y":0},{"x":1569030840000,"y":0},{"x":1569030900000,"y":0},{"x":1569030960000,"y":0},{"x":1569031020000,"y":0},{"x":1569031080000,"y":0.02},{"x":1569031140000,"y":0},{"x":1569031200000,"y":0},{"x":1569031260000,"y":0},{"x":1569031320000,"y":0},{"x":1569031380000,"y":0},{"x":1569031440000,"y":0},{"x":1569031500000,"y":0},{"x":1569031560000,"y":0},{"x":1569031620000,"y":0},{"x":1569031680000,"y":0},{"x":1569031740000,"y":0},{"x":1569031800000,"y":0},{"x":1569031860000,"y":0},{"x":1569031920000,"y":0},{"x":1569031980000,"y":0},{"x":1569032040000,"y":0},{"x":1569032100000,"y":0},{"x":1569032160000,"y":0},{"x":1569032220000,"y":0},{"x":1569032280000,"y":0},{"x":1569032340000,"y":0},{"x":1569032400000,"y":0},{"x":1569032460000,"y":0},{"x":1569032520000,"y":0},{"x":1569032580000,"y":0},{"x":1569032640000,"y":0},{"x":1569032700000,"y":0},{"x":1569032760000,"y":0},{"x":1569032820000,"y":0},{"x":1569032880000,"y":0},{"x":1569032940000,"y":0},{"x":1569033000000,"y":0},{"x":1569033060000,"y":0},{"x":1569033120000,"y":0},{"x":1569033180000,"y":0},{"x":1569033240000,"y":0},{"x":1569033300000,"y":0},{"x":1569033360000,"y":0},{"x":1569033420000,"y":0},{"x":1569033480000,"y":0},{"x":1569033540000,"y":0},{"x":1569033600000,"y":0},{"x":1569033660000,"y":0},{"x":1569033720000,"y":0},{"x":1569033780000,"y":0},{"x":1569033840000,"y":0},{"x":1569033900000,"y":0},{"x":1569033960000,"y":0},{"x":1569034020000,"y":0},{"x":1569034080000,"y":0},{"x":1569034140000,"y":0},{"x":1569034200000,"y":0},{"x":1569034260000,"y":0},{"x":1569034320000,"y":0},{"x":1569034380000,"y":0},{"x":1569034440000,"y":0},{"x":1569034500000,"y":0},{"x":1569034560000,"y":0},{"x":1569034620000,"y":0.01},{"x":1569034680000,"y":0},{"x":1569034740000,"y":0},{"x":1569034800000,"y":0},{"x":1569034860000,"y":0},{"x":1569034920000,"y":0},{"x":1569034980000,"y":0},{"x":1569035040000,"y":0},{"x":1569035100000,"y":0},{"x":1569035160000,"y":0},{"x":1569035220000,"y":0},{"x":1569035280000,"y":0},{"x":1569035340000,"y":0},{"x":1569035400000,"y":0},{"x":1569035460000,"y":0},{"x":1569035520000,"y":0},{"x":1569035580000,"y":0},{"x":1569035640000,"y":0},{"x":1569035700000,"y":0},{"x":1569035760000,"y":0},{"x":1569035820000,"y":0},{"x":1569035880000,"y":0},{"x":1569035940000,"y":0},{"x":1569036000000,"y":0},{"x":1569036060000,"y":0},{"x":1569036120000,"y":0},{"x":1569036180000,"y":0},{"x":1569036240000,"y":0},{"x":1569036300000,"y":0},{"x":1569036360000,"y":0},{"x":1569036420000,"y":0},{"x":1569036480000,"y":0},{"x":1569036540000,"y":0},{"x":1569036600000,"y":0},{"x":1569036660000,"y":0},{"x":1569036720000,"y":0},{"x":1569036780000,"y":0},{"x":1569036840000,"y":0},{"x":1569036900000,"y":0},{"x":1569036960000,"y":0},{"x":1569037020000,"y":0},{"x":1569037080000,"y":0},{"x":1569037140000,"y":0},{"x":1569037200000,"y":0},{"x":1569037260000,"y":0},{"x":1569037320000,"y":0},{"x":1569037380000,"y":0},{"x":1569037440000,"y":0},{"x":1569037500000,"y":0},{"x":1569037560000,"y":0},{"x":1569037620000,"y":0},{"x":1569037680000,"y":0},{"x":1569037740000,"y":0},{"x":1569037800000,"y":0},{"x":1569037860000,"y":0},{"x":1569037920000,"y":0},{"x":1569037980000,"y":0},{"x":1569038040000,"y":0},{"x":1569038100000,"y":0},{"x":1569038160000,"y":0},{"x":1569038220000,"y":0},{"x":1569038280000,"y":0},{"x":1569038340000,"y":0},{"x":1569038400000,"y":0},{"x":1569038460000,"y":0},{"x":1569038520000,"y":0},{"x":1569038580000,"y":0},{"x":1569038640000,"y":0},{"x":1569038700000,"y":0},{"x":1569038760000,"y":0},{"x":1569038820000,"y":0},{"x":1569038880000,"y":0},{"x":1569038940000,"y":0},{"x":1569039000000,"y":0},{"x":1569039060000,"y":0},{"x":1569039120000,"y":0},{"x":1569039180000,"y":0},{"x":1569039240000,"y":0},{"x":1569039300000,"y":0},{"x":1569039360000,"y":0},{"x":1569039420000,"y":0},{"x":1569039480000,"y":0},{"x":1569039540000,"y":0.15},{"x":1569039600000,"y":0},{"x":1569039660000,"y":0},{"x":1569039720000,"y":0},{"x":1569039780000,"y":0},{"x":1569039840000,"y":0},{"x":1569039900000,"y":0},{"x":1569039960000,"y":0},{"x":1569040020000,"y":0},{"x":1569040080000,"y":0},{"x":1569040140000,"y":0},{"x":1569040200000,"y":0},{"x":1569040260000,"y":0},{"x":1569040320000,"y":0},{"x":1569040380000,"y":0},{"x":1569040440000,"y":0.01},{"x":1569040500000,"y":0},{"x":1569040560000,"y":0},{"x":1569040620000,"y":0},{"x":1569040680000,"y":0},{"x":1569040740000,"y":0},{"x":1569040800000,"y":0},{"x":1569040860000,"y":0},{"x":1569040920000,"y":0},{"x":1569040980000,"y":0},{"x":1569041040000,"y":0},{"x":1569041100000,"y":0},{"x":1569041160000,"y":0},{"x":1569041220000,"y":0.01},{"x":1569041280000,"y":0},{"x":1569041340000,"y":0},{"x":1569041400000,"y":0},{"x":1569041460000,"y":0},{"x":1569041520000,"y":0},{"x":1569041580000,"y":0},{"x":1569041640000,"y":0},{"x":1569041700000,"y":0},{"x":1569041760000,"y":0},{"x":1569041820000,"y":0},{"x":1569041880000,"y":0},{"x":1569041940000,"y":0},{"x":1569042000000,"y":0},{"x":1569042060000,"y":0},{"x":1569042120000,"y":0},{"x":1569042180000,"y":0},{"x":1569042240000,"y":0},{"x":1569042300000,"y":0},{"x":1569042360000,"y":0},{"x":1569042420000,"y":0},{"x":1569042480000,"y":0},{"x":1569042540000,"y":0},{"x":1569042600000,"y":0},{"x":1569042660000,"y":0},{"x":1569042720000,"y":0},{"x":1569042780000,"y":0},{"x":1569042840000,"y":0},{"x":1569042900000,"y":0},{"x":1569042960000,"y":0},{"x":1569043020000,"y":0},{"x":1569043080000,"y":0},{"x":1569043140000,"y":0.01},{"x":1569043200000,"y":0},{"x":1569043260000,"y":0},{"x":1569043320000,"y":0},{"x":1569043380000,"y":0},{"x":1569043440000,"y":0},{"x":1569043500000,"y":0},{"x":1569043560000,"y":0},{"x":1569043620000,"y":0},{"x":1569043680000,"y":0},{"x":1569043740000,"y":0},{"x":1569043800000,"y":0},{"x":1569043860000,"y":0},{"x":1569043920000,"y":0},{"x":1569043980000,"y":0},{"x":1569044040000,"y":0},{"x":1569044100000,"y":0},{"x":1569044160000,"y":0},{"x":1569044220000,"y":0},{"x":1569044280000,"y":0},{"x":1569044340000,"y":0},{"x":1569044400000,"y":0},{"x":1569044460000,"y":0},{"x":1569044520000,"y":0},{"x":1569044580000,"y":0},{"x":1569044640000,"y":0},{"x":1569044700000,"y":0},{"x":1569044760000,"y":0.02},{"x":1569044820000,"y":0.01},{"x":1569044880000,"y":0},{"x":1569044940000,"y":0},{"x":1569045000000,"y":0},{"x":1569045060000,"y":0},{"x":1569045120000,"y":0},{"x":1569045180000,"y":0},{"x":1569045240000,"y":0},{"x":1569045300000,"y":0},{"x":1569045360000,"y":0},{"x":1569045420000,"y":0},{"x":1569045480000,"y":0.03},{"x":1569045540000,"y":0},{"x":1569045600000,"y":0},{"x":1569045660000,"y":0},{"x":1569045720000,"y":0},{"x":1569045780000,"y":0},{"x":1569045840000,"y":0},{"x":1569045900000,"y":0},{"x":1569045960000,"y":0},{"x":1569046020000,"y":0},{"x":1569046080000,"y":0},{"x":1569046140000,"y":0},{"x":1569046200000,"y":0},{"x":1569046260000,"y":0},{"x":1569046320000,"y":0},{"x":1569046380000,"y":0},{"x":1569046440000,"y":0},{"x":1569046500000,"y":0},{"x":1569046560000,"y":0},{"x":1569046620000,"y":0},{"x":1569046680000,"y":0},{"x":1569046740000,"y":0.01},{"x":1569046800000,"y":0},{"x":1569046860000,"y":0},{"x":1569046920000,"y":0},{"x":1569046980000,"y":0},{"x":1569047040000,"y":0},{"x":1569047100000,"y":0},{"x":1569047160000,"y":0},{"x":1569047220000,"y":0},{"x":1569047280000,"y":0},{"x":1569047340000,"y":0},{"x":1569047400000,"y":0},{"x":1569047460000,"y":0},{"x":1569047520000,"y":0},{"x":1569047580000,"y":0},{"x":1569047640000,"y":0},{"x":1569047700000,"y":0},{"x":1569047760000,"y":0},{"x":1569047820000,"y":0},{"x":1569047880000,"y":0},{"x":1569047940000,"y":0},{"x":1569048000000,"y":0},{"x":1569048060000,"y":0},{"x":1569048120000,"y":0},{"x":1569048180000,"y":0},{"x":1569048240000,"y":0},{"x":1569048300000,"y":0},{"x":1569048360000,"y":0},{"x":1569048420000,"y":0.01},{"x":1569048480000,"y":0},{"x":1569048540000,"y":0},{"x":1569048600000,"y":0},{"x":1569048660000,"y":0},{"x":1569048720000,"y":0.01},{"x":1569048780000,"y":0},{"x":1569048840000,"y":0},{"x":1569048900000,"y":0},{"x":1569048960000,"y":0},{"x":1569049020000,"y":0},{"x":1569049080000,"y":0},{"x":1569049140000,"y":0},{"x":1569049200000,"y":0},{"x":1569049260000,"y":0},{"x":1569049320000,"y":0},{"x":1569049380000,"y":0},{"x":1569049440000,"y":0},{"x":1569049500000,"y":0.02},{"x":1569049560000,"y":0},{"x":1569049620000,"y":0},{"x":1569049680000,"y":0},{"x":1569049740000,"y":0},{"x":1569049800000,"y":0},{"x":1569049860000,"y":0},{"x":1569049920000,"y":0},{"x":1569049980000,"y":0},{"x":1569050040000,"y":0},{"x":1569050100000,"y":0},{"x":1569050160000,"y":0},{"x":1569050220000,"y":0},{"x":1569050280000,"y":0},{"x":1569050340000,"y":0.01},{"x":1569050400000,"y":0},{"x":1569050460000,"y":0},{"x":1569050520000,"y":0},{"x":1569050580000,"y":0},{"x":1569050640000,"y":0},{"x":1569050700000,"y":0.01},{"x":1569050760000,"y":0},{"x":1569050820000,"y":0},{"x":1569050880000,"y":0},{"x":1569050940000,"y":0},{"x":1569051000000,"y":0},{"x":1569051060000,"y":0},{"x":1569051120000,"y":0},{"x":1569051180000,"y":0},{"x":1569051240000,"y":0},{"x":1569051300000,"y":0},{"x":1569051360000,"y":0},{"x":1569051420000,"y":0},{"x":1569051480000,"y":0},{"x":1569051540000,"y":0},{"x":1569051600000,"y":0},{"x":1569051660000,"y":0},{"x":1569051720000,"y":0},{"x":1569051780000,"y":0},{"x":1569051840000,"y":0},{"x":1569051900000,"y":0},{"x":1569051960000,"y":0},{"x":1569052020000,"y":0.01},{"x":1569052080000,"y":0},{"x":1569052140000,"y":0},{"x":1569052200000,"y":0},{"x":1569052260000,"y":0},{"x":1569052320000,"y":0},{"x":1569052380000,"y":0},{"x":1569052440000,"y":0},{"x":1569052500000,"y":0},{"x":1569052560000,"y":0},{"x":1569052620000,"y":0},{"x":1569052680000,"y":0},{"x":1569052740000,"y":0},{"x":1569052800000,"y":0},{"x":1569052860000,"y":0},{"x":1569052920000,"y":0},{"x":1569052980000,"y":0},{"x":1569053040000,"y":0},{"x":1569053100000,"y":0},{"x":1569053160000,"y":0},{"x":1569053220000,"y":0},{"x":1569053280000,"y":0},{"x":1569053340000,"y":0},{"x":1569053400000,"y":0.01},{"x":1569053460000,"y":0},{"x":1569053520000,"y":0},{"x":1569053580000,"y":0},{"x":1569053640000,"y":0},{"x":1569053700000,"y":0},{"x":1569053760000,"y":0},{"x":1569053820000,"y":0},{"x":1569053880000,"y":0},{"x":1569053940000,"y":0.01},{"x":1569054000000,"y":0},{"x":1569054060000,"y":0},{"x":1569054120000,"y":0},{"x":1569054180000,"y":0.01},{"x":1569054240000,"y":0},{"x":1569054300000,"y":0},{"x":1569054360000,"y":0},{"x":1569054420000,"y":0},{"x":1569054480000,"y":0},{"x":1569054540000,"y":0},{"x":1569054600000,"y":0},{"x":1569054660000,"y":0},{"x":1569054720000,"y":0},{"x":1569054780000,"y":0},{"x":1569054840000,"y":0},{"x":1569054900000,"y":0},{"x":1569054960000,"y":0},{"x":1569055020000,"y":0},{"x":1569055080000,"y":0},{"x":1569055140000,"y":0},{"x":1569055200000,"y":0},{"x":1569055260000,"y":0},{"x":1569055320000,"y":0},{"x":1569055380000,"y":0},{"x":1569055440000,"y":0},{"x":1569055500000,"y":0},{"x":1569055560000,"y":0},{"x":1569055620000,"y":0.01},{"x":1569055680000,"y":0},{"x":1569055740000,"y":0},{"x":1569055800000,"y":0},{"x":1569055860000,"y":0},{"x":1569055920000,"y":0},{"x":1569055980000,"y":0},{"x":1569056040000,"y":0},{"x":1569056100000,"y":0},{"x":1569056160000,"y":0},{"x":1569056220000,"y":0},{"x":1569056280000,"y":0},{"x":1569056340000,"y":0},{"x":1569056400000,"y":0},{"x":1569056460000,"y":0},{"x":1569056520000,"y":0},{"x":1569056580000,"y":0},{"x":1569056640000,"y":0},{"x":1569056700000,"y":0},{"x":1569056760000,"y":0},{"x":1569056820000,"y":0},{"x":1569056880000,"y":0},{"x":1569056940000,"y":0},{"x":1569057000000,"y":0},{"x":1569057060000,"y":0},{"x":1569057120000,"y":0},{"x":1569057180000,"y":0},{"x":1569057240000,"y":0},{"x":1569057300000,"y":0},{"x":1569057360000,"y":0},{"x":1569057420000,"y":0},{"x":1569057480000,"y":0},{"x":1569057540000,"y":0.01},{"x":1569057600000,"y":0},{"x":1569057660000,"y":0},{"x":1569057720000,"y":0},{"x":1569057780000,"y":0},{"x":1569057840000,"y":0},{"x":1569057900000,"y":0},{"x":1569057960000,"y":0},{"x":1569058020000,"y":0},{"x":1569058080000,"y":0},{"x":1569058140000,"y":0},{"x":1569058200000,"y":0},{"x":1569058260000,"y":0},{"x":1569058320000,"y":0},{"x":1569058380000,"y":0},{"x":1569058440000,"y":0},{"x":1569058500000,"y":0},{"x":1569058560000,"y":0},{"x":1569058620000,"y":0},{"x":1569058680000,"y":0},{"x":1569058740000,"y":0},{"x":1569058800000,"y":0},{"x":1569058860000,"y":0},{"x":1569058920000,"y":0},{"x":1569058980000,"y":0},{"x":1569059040000,"y":0},{"x":1569059100000,"y":0},{"x":1569059160000,"y":0},{"x":1569059220000,"y":0.01},{"x":1569059280000,"y":0},{"x":1569059340000,"y":0},{"x":1569059400000,"y":0},{"x":1569059460000,"y":0},{"x":1569059520000,"y":0},{"x":1569059580000,"y":0},{"x":1569059640000,"y":0},{"x":1569059700000,"y":0},{"x":1569059760000,"y":0},{"x":1569059820000,"y":0},{"x":1569059880000,"y":0},{"x":1569059940000,"y":0},{"x":1569060000000,"y":0},{"x":1569060060000,"y":0},{"x":1569060120000,"y":0},{"x":1569060180000,"y":0},{"x":1569060240000,"y":0},{"x":1569060300000,"y":0},{"x":1569060360000,"y":0},{"x":1569060420000,"y":0},{"x":1569060480000,"y":0},{"x":1569060540000,"y":0},{"x":1569060600000,"y":0},{"x":1569060660000,"y":0},{"x":1569060720000,"y":0},{"x":1569060780000,"y":0},{"x":1569060840000,"y":0},{"x":1569060900000,"y":0},{"x":1569060960000,"y":0},{"x":1569061020000,"y":0},{"x":1569061080000,"y":0},{"x":1569061140000,"y":0.01},{"x":1569061200000,"y":0},{"x":1569061260000,"y":0},{"x":1569061320000,"y":0},{"x":1569061380000,"y":0},{"x":1569061440000,"y":0},{"x":1569061500000,"y":0},{"x":1569061560000,"y":0},{"x":1569061620000,"y":0},{"x":1569061680000,"y":0},{"x":1569061740000,"y":0},{"x":1569061800000,"y":0},{"x":1569061860000,"y":0},{"x":1569061920000,"y":0},{"x":1569061980000,"y":0},{"x":1569062040000,"y":0},{"x":1569062100000,"y":0.01},{"x":1569062160000,"y":0},{"x":1569062220000,"y":0},{"x":1569062280000,"y":0},{"x":1569062340000,"y":0},{"x":1569062400000,"y":0},{"x":1569062460000,"y":0},{"x":1569062520000,"y":0},{"x":1569062580000,"y":0},{"x":1569062640000,"y":0},{"x":1569062700000,"y":0},{"x":1569062760000,"y":0},{"x":1569062820000,"y":0.01},{"x":1569062880000,"y":0},{"x":1569062940000,"y":0},{"x":1569063000000,"y":0},{"x":1569063060000,"y":0},{"x":1569063120000,"y":0},{"x":1569063180000,"y":0},{"x":1569063240000,"y":0},{"x":1569063300000,"y":0},{"x":1569063360000,"y":0},{"x":1569063420000,"y":0},{"x":1569063480000,"y":0},{"x":1569063540000,"y":0},{"x":1569063600000,"y":0},{"x":1569063660000,"y":0},{"x":1569063720000,"y":0},{"x":1569063780000,"y":0},{"x":1569063840000,"y":0},{"x":1569063900000,"y":0},{"x":1569063960000,"y":0},{"x":1569064020000,"y":0},{"x":1569064080000,"y":0},{"x":1569064140000,"y":0},{"x":1569064200000,"y":0},{"x":1569064260000,"y":0},{"x":1569064320000,"y":0},{"x":1569064380000,"y":0},{"x":1569064440000,"y":0},{"x":1569064500000,"y":0},{"x":1569064560000,"y":0},{"x":1569064620000,"y":0},{"x":1569064680000,"y":0},{"x":1569064740000,"y":0.01},{"x":1569064800000,"y":0},{"x":1569064860000,"y":0},{"x":1569064920000,"y":0},{"x":1569064980000,"y":0},{"x":1569065040000,"y":0},{"x":1569065100000,"y":0},{"x":1569065160000,"y":0},{"x":1569065220000,"y":0},{"x":1569065280000,"y":0},{"x":1569065340000,"y":0},{"x":1569065400000,"y":0},{"x":1569065460000,"y":0},{"x":1569065520000,"y":0},{"x":1569065580000,"y":0},{"x":1569065640000,"y":0},{"x":1569065700000,"y":0},{"x":1569065760000,"y":0},{"x":1569065820000,"y":0},{"x":1569065880000,"y":0},{"x":1569065940000,"y":0},{"x":1569066000000,"y":0},{"x":1569066060000,"y":0},{"x":1569066120000,"y":0},{"x":1569066180000,"y":0},{"x":1569066240000,"y":0},{"x":1569066300000,"y":0},{"x":1569066360000,"y":0},{"x":1569066420000,"y":0.01},{"x":1569066480000,"y":0},{"x":1569066540000,"y":0},{"x":1569066600000,"y":0},{"x":1569066660000,"y":0},{"x":1569066720000,"y":0},{"x":1569066780000,"y":0},{"x":1569066840000,"y":0},{"x":1569066900000,"y":0},{"x":1569066960000,"y":0},{"x":1569067020000,"y":0},{"x":1569067080000,"y":0},{"x":1569067140000,"y":0},{"x":1569067200000,"y":0},{"x":1569067260000,"y":0},{"x":1569067320000,"y":0},{"x":1569067380000,"y":0},{"x":1569067440000,"y":0},{"x":1569067500000,"y":0},{"x":1569067560000,"y":0},{"x":1569067620000,"y":0},{"x":1569067680000,"y":0},{"x":1569067740000,"y":0},{"x":1569067800000,"y":0},{"x":1569067860000,"y":0},{"x":1569067920000,"y":0},{"x":1569067980000,"y":0},{"x":1569068040000,"y":0},{"x":1569068100000,"y":0},{"x":1569068160000,"y":0},{"x":1569068220000,"y":0},{"x":1569068280000,"y":0},{"x":1569068340000,"y":0.01},{"x":1569068400000,"y":0},{"x":1569068460000,"y":0},{"x":1569068520000,"y":0},{"x":1569068580000,"y":0},{"x":1569068640000,"y":0},{"x":1569068700000,"y":0},{"x":1569068760000,"y":0},{"x":1569068820000,"y":0},{"x":1569068880000,"y":0},{"x":1569068940000,"y":0},{"x":1569069000000,"y":0},{"x":1569069060000,"y":0},{"x":1569069120000,"y":0},{"x":1569069180000,"y":0},{"x":1569069240000,"y":0},{"x":1569069300000,"y":0},{"x":1569069360000,"y":0},{"x":1569069420000,"y":0},{"x":1569069480000,"y":0},{"x":1569069540000,"y":0},{"x":1569069600000,"y":0},{"x":1569069660000,"y":0},{"x":1569069720000,"y":0},{"x":1569069780000,"y":0},{"x":1569069840000,"y":0},{"x":1569069900000,"y":0},{"x":1569069960000,"y":0},{"x":1569070020000,"y":0.01},{"x":1569070080000,"y":0},{"x":1569070140000,"y":0},{"x":1569070200000,"y":0},{"x":1569070260000,"y":0},{"x":1569070320000,"y":0},{"x":1569070380000,"y":0},{"x":1569070440000,"y":0},{"x":1569070500000,"y":0},{"x":1569070560000,"y":0.97},{"x":1569070620000,"y":0},{"x":1569070680000,"y":0.02},{"x":1569070740000,"y":0},{"x":1569070800000,"y":0},{"x":1569070860000,"y":0},{"x":1569070920000,"y":0},{"x":1569070980000,"y":0},{"x":1569071040000,"y":0},{"x":1569071100000,"y":0},{"x":1569071160000,"y":0},{"x":1569071220000,"y":0},{"x":1569071280000,"y":0},{"x":1569071340000,"y":0},{"x":1569071400000,"y":0},{"x":1569071460000,"y":0},{"x":1569071520000,"y":0},{"x":1569071580000,"y":0},{"x":1569071640000,"y":0},{"x":1569071700000,"y":0},{"x":1569071760000,"y":0},{"x":1569071820000,"y":0},{"x":1569071880000,"y":0},{"x":1569071940000,"y":0.01},{"x":1569072000000,"y":0},{"x":1569072060000,"y":0},{"x":1569072120000,"y":0},{"x":1569072180000,"y":0},{"x":1569072240000,"y":0},{"x":1569072300000,"y":0},{"x":1569072360000,"y":0},{"x":1569072420000,"y":0},{"x":1569072480000,"y":0},{"x":1569072540000,"y":0},{"x":1569072600000,"y":0},{"x":1569072660000,"y":0},{"x":1569072720000,"y":0},{"x":1569072780000,"y":0},{"x":1569072840000,"y":0},{"x":1569072900000,"y":0},{"x":1569072960000,"y":0},{"x":1569073020000,"y":0},{"x":1569073080000,"y":0},{"x":1569073140000,"y":0.02},{"x":1569073200000,"y":0},{"x":1569073260000,"y":0},{"x":1569073320000,"y":0},{"x":1569073380000,"y":0},{"x":1569073440000,"y":0},{"x":1569073500000,"y":0},{"x":1569073560000,"y":0},{"x":1569073620000,"y":0.01},{"x":1569073680000,"y":0},{"x":1569073740000,"y":0},{"x":1569073800000,"y":0},{"x":1569073860000,"y":0},{"x":1569073920000,"y":0},{"x":1569073980000,"y":0},{"x":1569074040000,"y":0},{"x":1569074100000,"y":0},{"x":1569074160000,"y":0},{"x":1569074220000,"y":0},{"x":1569074280000,"y":0},{"x":1569074340000,"y":0},{"x":1569074400000,"y":0},{"x":1569074460000,"y":0},{"x":1569074520000,"y":0},{"x":1569074580000,"y":0},{"x":1569074640000,"y":0},{"x":1569074700000,"y":0},{"x":1569074760000,"y":0},{"x":1569074820000,"y":0},{"x":1569074880000,"y":0},{"x":1569074940000,"y":0.02},{"x":1569075000000,"y":0},{"x":1569075060000,"y":0},{"x":1569075120000,"y":0},{"x":1569075180000,"y":0},{"x":1569075240000,"y":0},{"x":1569075300000,"y":0},{"x":1569075360000,"y":0},{"x":1569075420000,"y":0},{"x":1569075480000,"y":0},{"x":1569075540000,"y":0.01},{"x":1569075600000,"y":0},{"x":1569075660000,"y":0},{"x":1569075720000,"y":0},{"x":1569075780000,"y":0},{"x":1569075840000,"y":0},{"x":1569075900000,"y":0},{"x":1569075960000,"y":0},{"x":1569076020000,"y":0},{"x":1569076080000,"y":0},{"x":1569076140000,"y":0},{"x":1569076200000,"y":0},{"x":1569076260000,"y":0},{"x":1569076320000,"y":0},{"x":1569076380000,"y":0},{"x":1569076440000,"y":0},{"x":1569076500000,"y":0},{"x":1569076560000,"y":0},{"x":1569076620000,"y":0},{"x":1569076680000,"y":0},{"x":1569076740000,"y":0},{"x":1569076800000,"y":0},{"x":1569076860000,"y":0},{"x":1569076920000,"y":0},{"x":1569076980000,"y":0},{"x":1569077040000,"y":0},{"x":1569077100000,"y":0},{"x":1569077160000,"y":0},{"x":1569077220000,"y":0.01},{"x":1569077280000,"y":0},{"x":1569077340000,"y":0},{"x":1569077400000,"y":0},{"x":1569077460000,"y":0},{"x":1569077520000,"y":0},{"x":1569077580000,"y":0},{"x":1569077640000,"y":0},{"x":1569077700000,"y":0},{"x":1569077760000,"y":0},{"x":1569077820000,"y":0},{"x":1569077880000,"y":0},{"x":1569077940000,"y":0},{"x":1569078000000,"y":0},{"x":1569078060000,"y":0},{"x":1569078120000,"y":0},{"x":1569078180000,"y":0},{"x":1569078240000,"y":0},{"x":1569078300000,"y":0},{"x":1569078360000,"y":0},{"x":1569078420000,"y":0},{"x":1569078480000,"y":0},{"x":1569078540000,"y":0},{"x":1569078600000,"y":0},{"x":1569078660000,"y":0},{"x":1569078720000,"y":0},{"x":1569078780000,"y":0},{"x":1569078840000,"y":0},{"x":1569078900000,"y":0},{"x":1569078960000,"y":0},{"x":1569079020000,"y":0},{"x":1569079080000,"y":0},{"x":1569079140000,"y":0.01},{"x":1569079200000,"y":0},{"x":1569079260000,"y":0},{"x":1569079320000,"y":0},{"x":1569079380000,"y":0},{"x":1569079440000,"y":0},{"x":1569079500000,"y":0},{"x":1569079560000,"y":0},{"x":1569079620000,"y":0},{"x":1569079680000,"y":0},{"x":1569079740000,"y":0},{"x":1569079800000,"y":0},{"x":1569079860000,"y":0},{"x":1569079920000,"y":0},{"x":1569079980000,"y":0},{"x":1569080040000,"y":0},{"x":1569080100000,"y":0},{"x":1569080160000,"y":0.01},{"x":1569080220000,"y":0},{"x":1569080280000,"y":0},{"x":1569080340000,"y":0},{"x":1569080400000,"y":0},{"x":1569080460000,"y":0},{"x":1569080520000,"y":0},{"x":1569080580000,"y":0},{"x":1569080640000,"y":0},{"x":1569080700000,"y":0},{"x":1569080760000,"y":0},{"x":1569080820000,"y":0.01},{"x":1569080880000,"y":0},{"x":1569080940000,"y":0},{"x":1569081000000,"y":0},{"x":1569081060000,"y":0},{"x":1569081120000,"y":0},{"x":1569081180000,"y":0},{"x":1569081240000,"y":0},{"x":1569081300000,"y":0},{"x":1569081360000,"y":0},{"x":1569081420000,"y":0},{"x":1569081480000,"y":0},{"x":1569081540000,"y":0},{"x":1569081600000,"y":0},{"x":1569081660000,"y":0},{"x":1569081720000,"y":0},{"x":1569081780000,"y":0},{"x":1569081840000,"y":0},{"x":1569081900000,"y":0},{"x":1569081960000,"y":0},{"x":1569082020000,"y":0},{"x":1569082080000,"y":0},{"x":1569082140000,"y":0},{"x":1569082200000,"y":0},{"x":1569082260000,"y":0},{"x":1569082320000,"y":0},{"x":1569082380000,"y":0},{"x":1569082440000,"y":0},{"x":1569082500000,"y":0},{"x":1569082560000,"y":0},{"x":1569082620000,"y":0},{"x":1569082680000,"y":0},{"x":1569082740000,"y":0.01},{"x":1569082800000,"y":0},{"x":1569082860000,"y":0},{"x":1569082920000,"y":0},{"x":1569082980000,"y":0},{"x":1569083040000,"y":0},{"x":1569083100000,"y":0},{"x":1569083160000,"y":0},{"x":1569083220000,"y":0},{"x":1569083280000,"y":0},{"x":1569083340000,"y":0},{"x":1569083400000,"y":0},{"x":1569083460000,"y":0},{"x":1569083520000,"y":0},{"x":1569083580000,"y":0},{"x":1569083640000,"y":0},{"x":1569083700000,"y":0},{"x":1569083760000,"y":0},{"x":1569083820000,"y":0},{"x":1569083880000,"y":0},{"x":1569083940000,"y":0.01},{"x":1569084000000,"y":0},{"x":1569084060000,"y":0},{"x":1569084120000,"y":0},{"x":1569084180000,"y":0},{"x":1569084240000,"y":0},{"x":1569084300000,"y":0},{"x":1569084360000,"y":0},{"x":1569084420000,"y":0.01},{"x":1569084480000,"y":0},{"x":1569084540000,"y":0},{"x":1569084600000,"y":0},{"x":1569084660000,"y":0},{"x":1569084720000,"y":0},{"x":1569084780000,"y":0},{"x":1569084840000,"y":0},{"x":1569084900000,"y":0},{"x":1569084960000,"y":0},{"x":1569085020000,"y":0},{"x":1569085080000,"y":0},{"x":1569085140000,"y":0},{"x":1569085200000,"y":0},{"x":1569085260000,"y":0},{"x":1569085320000,"y":0},{"x":1569085380000,"y":0},{"x":1569085440000,"y":0},{"x":1569085500000,"y":0},{"x":1569085560000,"y":0},{"x":1569085620000,"y":0},{"x":1569085680000,"y":0},{"x":1569085740000,"y":0},{"x":1569085800000,"y":0},{"x":1569085860000,"y":0},{"x":1569085920000,"y":0},{"x":1569085980000,"y":0},{"x":1569086040000,"y":0},{"x":1569086100000,"y":0},{"x":1569086160000,"y":0},{"x":1569086220000,"y":0.02},{"x":1569086280000,"y":0},{"x":1569086340000,"y":0.01},{"x":1569086400000,"y":0},{"x":1569086460000,"y":0},{"x":1569086520000,"y":0},{"x":1569086580000,"y":0},{"x":1569086640000,"y":0},{"x":1569086700000,"y":0},{"x":1569086760000,"y":0},{"x":1569086820000,"y":0},{"x":1569086880000,"y":0},{"x":1569086940000,"y":0},{"x":1569087000000,"y":0},{"x":1569087060000,"y":0},{"x":1569087120000,"y":0},{"x":1569087180000,"y":0},{"x":1569087240000,"y":0},{"x":1569087300000,"y":0},{"x":1569087360000,"y":0},{"x":1569087420000,"y":0},{"x":1569087480000,"y":0},{"x":1569087540000,"y":0},{"x":1569087600000,"y":0},{"x":1569087660000,"y":0},{"x":1569087720000,"y":0},{"x":1569087780000,"y":0},{"x":1569087840000,"y":0},{"x":1569087900000,"y":0},{"x":1569087960000,"y":0},{"x":1569088020000,"y":0.01},{"x":1569088080000,"y":0},{"x":1569088140000,"y":0},{"x":1569088200000,"y":0},{"x":1569088260000,"y":0},{"x":1569088320000,"y":0},{"x":1569088380000,"y":0},{"x":1569088440000,"y":0},{"x":1569088500000,"y":0},{"x":1569088560000,"y":0},{"x":1569088620000,"y":0},{"x":1569088680000,"y":0},{"x":1569088740000,"y":0},{"x":1569088800000,"y":0},{"x":1569088860000,"y":0},{"x":1569088920000,"y":0},{"x":1569088980000,"y":0},{"x":1569089040000,"y":0},{"x":1569089100000,"y":0},{"x":1569089160000,"y":0},{"x":1569089220000,"y":0},{"x":1569089280000,"y":0},{"x":1569089340000,"y":0},{"x":1569089400000,"y":0},{"x":1569089460000,"y":0},{"x":1569089520000,"y":0},{"x":1569089580000,"y":0},{"x":1569089640000,"y":0},{"x":1569089700000,"y":0},{"x":1569089760000,"y":0},{"x":1569089820000,"y":0},{"x":1569089880000,"y":0},{"x":1569089940000,"y":0.01},{"x":1569090000000,"y":0},{"x":1569090060000,"y":0},{"x":1569090120000,"y":0},{"x":1569090180000,"y":0},{"x":1569090240000,"y":0},{"x":1569090300000,"y":0},{"x":1569090360000,"y":0},{"x":1569090420000,"y":0},{"x":1569090480000,"y":0},{"x":1569090540000,"y":0},{"x":1569090600000,"y":0},{"x":1569090660000,"y":0},{"x":1569090720000,"y":0},{"x":1569090780000,"y":0},{"x":1569090840000,"y":0},{"x":1569090900000,"y":0},{"x":1569090960000,"y":0},{"x":1569091020000,"y":0},{"x":1569091080000,"y":0},{"x":1569091140000,"y":0},{"x":1569091200000,"y":0},{"x":1569091260000,"y":0},{"x":1569091320000,"y":0},{"x":1569091380000,"y":0},{"x":1569091440000,"y":0},{"x":1569091500000,"y":0},{"x":1569091560000,"y":0},{"x":1569091620000,"y":0.01},{"x":1569091680000,"y":0},{"x":1569091740000,"y":0},{"x":1569091800000,"y":0},{"x":1569091860000,"y":0},{"x":1569091920000,"y":0},{"x":1569091980000,"y":0},{"x":1569092040000,"y":0},{"x":1569092100000,"y":0},{"x":1569092160000,"y":0},{"x":1569092220000,"y":0},{"x":1569092280000,"y":0},{"x":1569092340000,"y":0},{"x":1569092400000,"y":0},{"x":1569092460000,"y":0},{"x":1569092520000,"y":0},{"x":1569092580000,"y":0},{"x":1569092640000,"y":0},{"x":1569092700000,"y":0},{"x":1569092760000,"y":0},{"x":1569092820000,"y":0},{"x":1569092880000,"y":0},{"x":1569092940000,"y":0},{"x":1569093000000,"y":0},{"x":1569093060000,"y":0},{"x":1569093120000,"y":0},{"x":1569093180000,"y":0},{"x":1569093240000,"y":0},{"x":1569093300000,"y":0},{"x":1569093360000,"y":0},{"x":1569093420000,"y":0},{"x":1569093480000,"y":0},{"x":1569093540000,"y":0.01},{"x":1569093600000,"y":0},{"x":1569093660000,"y":0},{"x":1569093720000,"y":0},{"x":1569093780000,"y":0},{"x":1569093840000,"y":0},{"x":1569093900000,"y":0},{"x":1569093960000,"y":0},{"x":1569094020000,"y":0},{"x":1569094080000,"y":0},{"x":1569094140000,"y":0},{"x":1569094200000,"y":0},{"x":1569094260000,"y":0},{"x":1569094320000,"y":0},{"x":1569094380000,"y":0},{"x":1569094440000,"y":0},{"x":1569094500000,"y":0},{"x":1569094560000,"y":0},{"x":1569094620000,"y":0},{"x":1569094680000,"y":0},{"x":1569094740000,"y":0},{"x":1569094800000,"y":0},{"x":1569094860000,"y":0},{"x":1569094920000,"y":0},{"x":1569094980000,"y":0},{"x":1569095040000,"y":0},{"x":1569095100000,"y":0},{"x":1569095160000,"y":0},{"x":1569095220000,"y":0.01},{"x":1569095280000,"y":0},{"x":1569095340000,"y":0},{"x":1569095400000,"y":0},{"x":1569095460000,"y":0},{"x":1569095520000,"y":0},{"x":1569095580000,"y":0},{"x":1569095640000,"y":0},{"x":1569095700000,"y":0},{"x":1569095760000,"y":0},{"x":1569095820000,"y":0},{"x":1569095880000,"y":0},{"x":1569095940000,"y":0},{"x":1569096000000,"y":0},{"x":1569096060000,"y":0},{"x":1569096120000,"y":0},{"x":1569096180000,"y":0},{"x":1569096240000,"y":0},{"x":1569096300000,"y":0},{"x":1569096360000,"y":0},{"x":1569096420000,"y":0},{"x":1569096480000,"y":0},{"x":1569096540000,"y":0},{"x":1569096600000,"y":0},{"x":1569096660000,"y":0},{"x":1569096720000,"y":0},{"x":1569096780000,"y":0},{"x":1569096840000,"y":0},{"x":1569096900000,"y":0},{"x":1569096960000,"y":0},{"x":1569097020000,"y":0},{"x":1569097080000,"y":0},{"x":1569097140000,"y":0.01},{"x":1569097200000,"y":0},{"x":1569097260000,"y":0},{"x":1569097320000,"y":0},{"x":1569097380000,"y":0},{"x":1569097440000,"y":0},{"x":1569097500000,"y":0},{"x":1569097560000,"y":0},{"x":1569097620000,"y":0},{"x":1569097680000,"y":0},{"x":1569097740000,"y":0},{"x":1569097800000,"y":0},{"x":1569097860000,"y":0},{"x":1569097920000,"y":0},{"x":1569097980000,"y":0},{"x":1569098040000,"y":0},{"x":1569098100000,"y":0},{"x":1569098160000,"y":0},{"x":1569098220000,"y":0},{"x":1569098280000,"y":0},{"x":1569098340000,"y":0},{"x":1569098400000,"y":0},{"x":1569098460000,"y":0},{"x":1569098520000,"y":0},{"x":1569098580000,"y":0},{"x":1569098640000,"y":0},{"x":1569098700000,"y":0.09},{"x":1569098760000,"y":0.05},{"x":1569098820000,"y":0.01},{"x":1569098880000,"y":0.08},{"x":1569098940000,"y":0.01},{"x":1569099000000,"y":0.01},{"x":1569099060000,"y":0},{"x":1569099120000,"y":0.02},{"x":1569099180000,"y":0},{"x":1569099240000,"y":0},{"x":1569099300000,"y":0},{"x":1569099360000,"y":0},{"x":1569099420000,"y":0},{"x":1569099480000,"y":0},{"x":1569099540000,"y":0},{"x":1569099600000,"y":0},{"x":1569099660000,"y":0},{"x":1569099720000,"y":0},{"x":1569099780000,"y":0},{"x":1569099840000,"y":0},{"x":1569099900000,"y":0},{"x":1569099960000,"y":0},{"x":1569100020000,"y":0},{"x":1569100080000,"y":0},{"x":1569100140000,"y":0},{"x":1569100200000,"y":0},{"x":1569100260000,"y":0.01},{"x":1569100320000,"y":0},{"x":1569100380000,"y":0},{"x":1569100440000,"y":0},{"x":1569100500000,"y":0},{"x":1569100560000,"y":0},{"x":1569100620000,"y":0},{"x":1569100680000,"y":0},{"x":1569100740000,"y":0.01},{"x":1569100800000,"y":0},{"x":1569100860000,"y":0},{"x":1569100920000,"y":0},{"x":1569100980000,"y":0},{"x":1569101040000,"y":0},{"x":1569101100000,"y":0},{"x":1569101160000,"y":0},{"x":1569101220000,"y":0},{"x":1569101280000,"y":0},{"x":1569101340000,"y":0},{"x":1569101400000,"y":0},{"x":1569101460000,"y":0},{"x":1569101520000,"y":0},{"x":1569101580000,"y":2.04},{"x":1569101640000,"y":1},{"x":1569101700000,"y":0.95},{"x":1569101760000,"y":0},{"x":1569101820000,"y":0.07},{"x":1569101880000,"y":0.01},{"x":1569101940000,"y":0},{"x":1569102000000,"y":0},{"x":1569102060000,"y":0},{"x":1569102120000,"y":0.01},{"x":1569102180000,"y":0.03},{"x":1569102240000,"y":0},{"x":1569102300000,"y":0},{"x":1569102360000,"y":0},{"x":1569102420000,"y":0.01},{"x":1569102480000,"y":0.01},{"x":1569102540000,"y":0.24},{"x":1569102600000,"y":0},{"x":1569102660000,"y":0},{"x":1569102720000,"y":0.01},{"x":1569102780000,"y":3.83},{"x":1569102840000,"y":1.98},{"x":1569102900000,"y":0},{"x":1569102960000,"y":0},{"x":1569103020000,"y":0},{"x":1569103080000,"y":0},{"x":1569103140000,"y":0},{"x":1569103200000,"y":0},{"x":1569103260000,"y":0},{"x":1569103320000,"y":1.92},{"x":1569103380000,"y":0.95},{"x":1569103440000,"y":0},{"x":1569103500000,"y":0},{"x":1569103560000,"y":0},{"x":1569103620000,"y":0.94},{"x":1569103680000,"y":3.81},{"x":1569103740000,"y":2.89},{"x":1569103800000,"y":0.01},{"x":1569103860000,"y":0.94},{"x":1569103920000,"y":0.01},{"x":1569103980000,"y":3.77},{"x":1569104040000,"y":7.76},{"x":1569104100000,"y":3.44},{"x":1569104160000,"y":0.95},{"x":1569104220000,"y":1.89},{"x":1569104280000,"y":0},{"x":1569104340000,"y":0.02},{"x":1569104400000,"y":7.67},{"x":1569104460000,"y":3.58},{"x":1569104520000,"y":0.13},{"x":1569104580000,"y":1.89},{"x":1569104640000,"y":0.01},{"x":1569104700000,"y":0},{"x":1569104760000,"y":1.87},{"x":1569104820000,"y":2.78},{"x":1569104880000,"y":0},{"x":1569104940000,"y":0.11},{"x":1569105000000,"y":0.05},{"x":1569105060000,"y":0.03},{"x":1569105120000,"y":1.82},{"x":1569105180000,"y":1.96},{"x":1569105240000,"y":3.8},{"x":1569105300000,"y":0.01},{"x":1569105360000,"y":0.02},{"x":1569105420000,"y":5.72},{"x":1569105480000,"y":3.46},{"x":1569105540000,"y":2.31},{"x":1569105600000,"y":0},{"x":1569105660000,"y":0},{"x":1569105720000,"y":4.89},{"x":1569105780000,"y":5.14},{"x":1569105840000,"y":4.66},{"x":1569105900000,"y":0.01},{"x":1569105960000,"y":0},{"x":1569106020000,"y":2.7},{"x":1569106080000,"y":5.51},{"x":1569106140000,"y":0},{"x":1569106200000,"y":0},{"x":1569106260000,"y":0},{"x":1569106320000,"y":0},{"x":1569106380000,"y":4.12},{"x":1569106440000,"y":0.41},{"x":1569106500000,"y":9.55},{"x":1569106560000,"y":0.01},{"x":1569106620000,"y":0},{"x":1569106680000,"y":0},{"x":1569106740000,"y":0},{"x":1569106800000,"y":0},{"x":1569106860000,"y":0},{"x":1569106920000,"y":0},{"x":1569106980000,"y":0},{"x":1569107040000,"y":0},{"x":1569107100000,"y":0},{"x":1569107160000,"y":0},{"x":1569107220000,"y":0},{"x":1569107280000,"y":0},{"x":1569107340000,"y":0},{"x":1569107400000,"y":0},{"x":1569107460000,"y":0},{"x":1569107520000,"y":0},{"x":1569107580000,"y":0},{"x":1569107640000,"y":0},{"x":1569107700000,"y":0.94},{"x":1569107760000,"y":0.21},{"x":1569107820000,"y":1.1},{"x":1569107880000,"y":0.16},{"x":1569107940000,"y":0.01},{"x":1569108000000,"y":0.01},{"x":1569108060000,"y":0.02},{"x":1569108120000,"y":0},{"x":1569108180000,"y":0},{"x":1569108240000,"y":0},{"x":1569108300000,"y":0},{"x":1569108360000,"y":0},{"x":1569108420000,"y":0},{"x":1569108480000,"y":0},{"x":1569108540000,"y":0},{"x":1569108600000,"y":0},{"x":1569108660000,"y":0},{"x":1569108720000,"y":0},{"x":1569108780000,"y":0},{"x":1569108840000,"y":0},{"x":1569108900000,"y":0},{"x":1569108960000,"y":0},{"x":1569109020000,"y":0},{"x":1569109080000,"y":0},{"x":1569109140000,"y":0},{"x":1569109200000,"y":0},{"x":1569109260000,"y":0},{"x":1569109320000,"y":0},{"x":1569109380000,"y":0},{"x":1569109440000,"y":0},{"x":1569109500000,"y":0},{"x":1569109560000,"y":0},{"x":1569109620000,"y":0.01},{"x":1569109680000,"y":0},{"x":1569109740000,"y":0},{"x":1569109800000,"y":0},{"x":1569109860000,"y":0},{"x":1569109920000,"y":0},{"x":1569109980000,"y":0},{"x":1569110040000,"y":0},{"x":1569110100000,"y":0},{"x":1569110160000,"y":0},{"x":1569110220000,"y":0},{"x":1569110280000,"y":0},{"x":1569110340000,"y":0},{"x":1569110400000,"y":0},{"x":1569110460000,"y":0},{"x":1569110520000,"y":0},{"x":1569110580000,"y":0},{"x":1569110640000,"y":0},{"x":1569110700000,"y":0},{"x":1569110760000,"y":0},{"x":1569110820000,"y":0},{"x":1569110880000,"y":0},{"x":1569110940000,"y":0},{"x":1569111000000,"y":0},{"x":1569111060000,"y":0},{"x":1569111120000,"y":0},{"x":1569111180000,"y":0},{"x":1569111240000,"y":0},{"x":1569111300000,"y":0},{"x":1569111360000,"y":0},{"x":1569111420000,"y":0},{"x":1569111480000,"y":0},{"x":1569111540000,"y":0.01},{"x":1569111600000,"y":0},{"x":1569111660000,"y":0},{"x":1569111720000,"y":0},{"x":1569111780000,"y":0},{"x":1569111840000,"y":0},{"x":1569111900000,"y":0},{"x":1569111960000,"y":0},{"x":1569112020000,"y":0},{"x":1569112080000,"y":0},{"x":1569112140000,"y":0},{"x":1569112200000,"y":0},{"x":1569112260000,"y":0},{"x":1569112320000,"y":0},{"x":1569112380000,"y":0},{"x":1569112440000,"y":0},{"x":1569112500000,"y":0},{"x":1569112560000,"y":0},{"x":1569112620000,"y":0},{"x":1569112680000,"y":0},{"x":1569112740000,"y":0},{"x":1569112800000,"y":0},{"x":1569112860000,"y":0},{"x":1569112920000,"y":0},{"x":1569112980000,"y":0},{"x":1569113040000,"y":0},{"x":1569113100000,"y":0},{"x":1569113160000,"y":0},{"x":1569113220000,"y":0.01},{"x":1569113280000,"y":0},{"x":1569113340000,"y":0},{"x":1569113400000,"y":0},{"x":1569113460000,"y":0},{"x":1569113520000,"y":0},{"x":1569113580000,"y":0},{"x":1569113640000,"y":0},{"x":1569113700000,"y":0},{"x":1569113760000,"y":0},{"x":1569113820000,"y":0},{"x":1569113880000,"y":0.01},{"x":1569113940000,"y":0},{"x":1569114000000,"y":0},{"x":1569114060000,"y":0},{"x":1569114120000,"y":0},{"x":1569114180000,"y":0},{"x":1569114240000,"y":0},{"x":1569114300000,"y":0},{"x":1569114360000,"y":0},{"x":1569114420000,"y":0},{"x":1569114480000,"y":0},{"x":1569114540000,"y":0},{"x":1569114600000,"y":0},{"x":1569114660000,"y":0},{"x":1569114720000,"y":0},{"x":1569114780000,"y":0},{"x":1569114840000,"y":0},{"x":1569114900000,"y":0},{"x":1569114960000,"y":0},{"x":1569115020000,"y":0},{"x":1569115080000,"y":0},{"x":1569115140000,"y":0.01},{"x":1569115200000,"y":0},{"x":1569115260000,"y":0},{"x":1569115320000,"y":0},{"x":1569115380000,"y":0},{"x":1569115440000,"y":0},{"x":1569115500000,"y":0},{"x":1569115560000,"y":0},{"x":1569115620000,"y":0},{"x":1569115680000,"y":0},{"x":1569115740000,"y":0},{"x":1569115800000,"y":0},{"x":1569115860000,"y":0},{"x":1569115920000,"y":0},{"x":1569115980000,"y":0},{"x":1569116040000,"y":0},{"x":1569116100000,"y":0},{"x":1569116160000,"y":0},{"x":1569116220000,"y":0},{"x":1569116280000,"y":0},{"x":1569116340000,"y":0},{"x":1569116400000,"y":0},{"x":1569116460000,"y":0},{"x":1569116520000,"y":0},{"x":1569116580000,"y":0},{"x":1569116640000,"y":0},{"x":1569116700000,"y":0},{"x":1569116760000,"y":0},{"x":1569116820000,"y":0.01},{"x":1569116880000,"y":0},{"x":1569116940000,"y":0},{"x":1569117000000,"y":0},{"x":1569117060000,"y":0},{"x":1569117120000,"y":0},{"x":1569117180000,"y":0},{"x":1569117240000,"y":0},{"x":1569117300000,"y":0},{"x":1569117360000,"y":0},{"x":1569117420000,"y":0},{"x":1569117480000,"y":0},{"x":1569117540000,"y":0},{"x":1569117600000,"y":0},{"x":1569117660000,"y":0},{"x":1569117720000,"y":0},{"x":1569117780000,"y":0},{"x":1569117840000,"y":0},{"x":1569117900000,"y":0},{"x":1569117960000,"y":0},{"x":1569118020000,"y":0},{"x":1569118080000,"y":0},{"x":1569118140000,"y":0},{"x":1569118200000,"y":0},{"x":1569118260000,"y":0},{"x":1569118320000,"y":0},{"x":1569118380000,"y":0},{"x":1569118440000,"y":0},{"x":1569118500000,"y":0},{"x":1569118560000,"y":0},{"x":1569118620000,"y":0},{"x":1569118680000,"y":0},{"x":1569118740000,"y":0.01},{"x":1569118800000,"y":0},{"x":1569118860000,"y":0},{"x":1569118920000,"y":0},{"x":1569118980000,"y":0},{"x":1569119040000,"y":0},{"x":1569119100000,"y":0},{"x":1569119160000,"y":0},{"x":1569119220000,"y":0},{"x":1569119280000,"y":0},{"x":1569119340000,"y":0},{"x":1569119400000,"y":0},{"x":1569119460000,"y":0},{"x":1569119520000,"y":0},{"x":1569119580000,"y":0},{"x":1569119640000,"y":0},{"x":1569119700000,"y":0},{"x":1569119760000,"y":0},{"x":1569119820000,"y":0},{"x":1569119880000,"y":0},{"x":1569119940000,"y":0},{"x":1569120000000,"y":0},{"x":1569120060000,"y":0},{"x":1569120120000,"y":0},{"x":1569120180000,"y":0},{"x":1569120240000,"y":0},{"x":1569120300000,"y":0},{"x":1569120360000,"y":0},{"x":1569120420000,"y":0.01},{"x":1569120480000,"y":0},{"x":1569120540000,"y":0},{"x":1569120600000,"y":0},{"x":1569120660000,"y":0},{"x":1569120720000,"y":0},{"x":1569120780000,"y":0},{"x":1569120840000,"y":0},{"x":1569120900000,"y":0},{"x":1569120960000,"y":0},{"x":1569121020000,"y":0},{"x":1569121080000,"y":0},{"x":1569121140000,"y":0},{"x":1569121200000,"y":0},{"x":1569121260000,"y":0},{"x":1569121320000,"y":0},{"x":1569121380000,"y":0},{"x":1569121440000,"y":0},{"x":1569121500000,"y":0},{"x":1569121560000,"y":0},{"x":1569121620000,"y":0},{"x":1569121680000,"y":0},{"x":1569121740000,"y":0},{"x":1569121800000,"y":0},{"x":1569121860000,"y":0},{"x":1569121920000,"y":0},{"x":1569121980000,"y":0},{"x":1569122040000,"y":0},{"x":1569122100000,"y":0},{"x":1569122160000,"y":0},{"x":1569122220000,"y":0},{"x":1569122280000,"y":0},{"x":1569122340000,"y":0.01},{"x":1569122400000,"y":0},{"x":1569122460000,"y":0},{"x":1569122520000,"y":0},{"x":1569122580000,"y":0},{"x":1569122640000,"y":0},{"x":1569122700000,"y":0},{"x":1569122760000,"y":0},{"x":1569122820000,"y":0},{"x":1569122880000,"y":0},{"x":1569122940000,"y":0},{"x":1569123000000,"y":0},{"x":1569123060000,"y":0},{"x":1569123120000,"y":0},{"x":1569123180000,"y":0},{"x":1569123240000,"y":0},{"x":1569123300000,"y":0},{"x":1569123360000,"y":0},{"x":1569123420000,"y":0},{"x":1569123480000,"y":0},{"x":1569123540000,"y":0},{"x":1569123600000,"y":0},{"x":1569123660000,"y":0},{"x":1569123720000,"y":0},{"x":1569123780000,"y":0},{"x":1569123840000,"y":0},{"x":1569123900000,"y":0},{"x":1569123960000,"y":0},{"x":1569124020000,"y":0.01},{"x":1569124080000,"y":0},{"x":1569124140000,"y":0},{"x":1569124200000,"y":0},{"x":1569124260000,"y":0},{"x":1569124320000,"y":0},{"x":1569124380000,"y":0.01},{"x":1569124440000,"y":0},{"x":1569124500000,"y":0},{"x":1569124560000,"y":0},{"x":1569124620000,"y":0},{"x":1569124680000,"y":0},{"x":1569124740000,"y":6.74},{"x":1569124800000,"y":2.63},{"x":1569124860000,"y":0},{"x":1569124920000,"y":0},{"x":1569124980000,"y":0},{"x":1569125040000,"y":0},{"x":1569125100000,"y":2.01},{"x":1569125160000,"y":0.06},{"x":1569125220000,"y":0.07},{"x":1569125280000,"y":0},{"x":1569125340000,"y":0},{"x":1569125400000,"y":0.06},{"x":1569125460000,"y":0},{"x":1569125520000,"y":1.15},{"x":1569125580000,"y":0.35},{"x":1569125640000,"y":0},{"x":1569125700000,"y":0},{"x":1569125760000,"y":0},{"x":1569125820000,"y":0},{"x":1569125880000,"y":0},{"x":1569125940000,"y":0.01},{"x":1569126000000,"y":0},{"x":1569126060000,"y":0},{"x":1569126120000,"y":0},{"x":1569126180000,"y":0},{"x":1569126240000,"y":0.01},{"x":1569126300000,"y":0},{"x":1569126360000,"y":0.01},{"x":1569126420000,"y":0.01},{"x":1569126480000,"y":0},{"x":1569126540000,"y":0},{"x":1569126600000,"y":0},{"x":1569126660000,"y":2.25},{"x":1569126720000,"y":1.99},{"x":1569126780000,"y":2.7},{"x":1569126840000,"y":2.22},{"x":1569126900000,"y":0.01},{"x":1569126960000,"y":0},{"x":1569127020000,"y":0},{"x":1569127080000,"y":0},{"x":1569127140000,"y":0},{"x":1569127200000,"y":0},{"x":1569127260000,"y":0},{"x":1569127320000,"y":0},{"x":1569127380000,"y":0},{"x":1569127440000,"y":0},{"x":1569127500000,"y":0},{"x":1569127560000,"y":0.11},{"x":1569127620000,"y":0.01},{"x":1569127680000,"y":0},{"x":1569127740000,"y":0.01},{"x":1569127800000,"y":0},{"x":1569127860000,"y":0},{"x":1569127920000,"y":0},{"x":1569127980000,"y":0},{"x":1569128040000,"y":0},{"x":1569128100000,"y":0},{"x":1569128160000,"y":0},{"x":1569128220000,"y":0},{"x":1569128280000,"y":0},{"x":1569128340000,"y":0},{"x":1569128400000,"y":0},{"x":1569128460000,"y":0},{"x":1569128520000,"y":0},{"x":1569128580000,"y":0},{"x":1569128640000,"y":0},{"x":1569128700000,"y":0},{"x":1569128760000,"y":0},{"x":1569128820000,"y":0},{"x":1569128880000,"y":0},{"x":1569128940000,"y":0},{"x":1569129000000,"y":0},{"x":1569129060000,"y":0},{"x":1569129120000,"y":0},{"x":1569129180000,"y":0},{"x":1569129240000,"y":0},{"x":1569129300000,"y":0},{"x":1569129360000,"y":0},{"x":1569129420000,"y":0},{"x":1569129480000,"y":0},{"x":1569129540000,"y":0.01},{"x":1569129600000,"y":0},{"x":1569129660000,"y":0},{"x":1569129720000,"y":0},{"x":1569129780000,"y":0},{"x":1569129840000,"y":0},{"x":1569129900000,"y":0},{"x":1569129960000,"y":0},{"x":1569130020000,"y":0},{"x":1569130080000,"y":0},{"x":1569130140000,"y":0},{"x":1569130200000,"y":0},{"x":1569130260000,"y":0},{"x":1569130320000,"y":0},{"x":1569130380000,"y":0},{"x":1569130440000,"y":0},{"x":1569130500000,"y":0},{"x":1569130560000,"y":0},{"x":1569130620000,"y":0},{"x":1569130680000,"y":0},{"x":1569130740000,"y":0},{"x":1569130800000,"y":0},{"x":1569130860000,"y":0},{"x":1569130920000,"y":0},{"x":1569130980000,"y":0},{"x":1569131040000,"y":0},{"x":1569131100000,"y":0},{"x":1569131160000,"y":0},{"x":1569131220000,"y":0.01},{"x":1569131280000,"y":0},{"x":1569131340000,"y":0},{"x":1569131400000,"y":0},{"x":1569131460000,"y":0.01},{"x":1569131520000,"y":0},{"x":1569131580000,"y":0},{"x":1569131640000,"y":0},{"x":1569131700000,"y":0},{"x":1569131760000,"y":0},{"x":1569131820000,"y":0},{"x":1569131880000,"y":0},{"x":1569131940000,"y":0},{"x":1569132000000,"y":0},{"x":1569132060000,"y":0},{"x":1569132120000,"y":0},{"x":1569132180000,"y":0},{"x":1569132240000,"y":0},{"x":1569132300000,"y":0},{"x":1569132360000,"y":0},{"x":1569132420000,"y":0},{"x":1569132480000,"y":0},{"x":1569132540000,"y":0},{"x":1569132600000,"y":0},{"x":1569132660000,"y":0},{"x":1569132720000,"y":0},{"x":1569132780000,"y":0},{"x":1569132840000,"y":0},{"x":1569132900000,"y":0},{"x":1569132960000,"y":0},{"x":1569133020000,"y":0},{"x":1569133080000,"y":0},{"x":1569133140000,"y":0.01},{"x":1569133200000,"y":0},{"x":1569133260000,"y":0},{"x":1569133320000,"y":0},{"x":1569133380000,"y":0},{"x":1569133440000,"y":0},{"x":1569133500000,"y":0},{"x":1569133560000,"y":0},{"x":1569133620000,"y":0},{"x":1569133680000,"y":0},{"x":1569133740000,"y":0},{"x":1569133800000,"y":0},{"x":1569133860000,"y":0},{"x":1569133920000,"y":0},{"x":1569133980000,"y":0},{"x":1569134040000,"y":0},{"x":1569134100000,"y":0},{"x":1569134160000,"y":0},{"x":1569134220000,"y":0},{"x":1569134280000,"y":0},{"x":1569134340000,"y":0},{"x":1569134400000,"y":0},{"x":1569134460000,"y":0},{"x":1569134520000,"y":0},{"x":1569134580000,"y":0},{"x":1569134640000,"y":0},{"x":1569134700000,"y":0},{"x":1569134760000,"y":0},{"x":1569134820000,"y":0.01},{"x":1569134880000,"y":0},{"x":1569134940000,"y":0},{"x":1569135000000,"y":0},{"x":1569135060000,"y":0},{"x":1569135120000,"y":0},{"x":1569135180000,"y":0},{"x":1569135240000,"y":0},{"x":1569135300000,"y":0},{"x":1569135360000,"y":0},{"x":1569135420000,"y":0},{"x":1569135480000,"y":0},{"x":1569135540000,"y":0},{"x":1569135600000,"y":0},{"x":1569135660000,"y":0},{"x":1569135720000,"y":0},{"x":1569135780000,"y":0},{"x":1569135840000,"y":0},{"x":1569135900000,"y":0},{"x":1569135960000,"y":0},{"x":1569136020000,"y":0},{"x":1569136080000,"y":0},{"x":1569136140000,"y":0},{"x":1569136200000,"y":0},{"x":1569136260000,"y":0},{"x":1569136320000,"y":0},{"x":1569136380000,"y":0},{"x":1569136440000,"y":0},{"x":1569136500000,"y":0},{"x":1569136560000,"y":0},{"x":1569136620000,"y":0},{"x":1569136680000,"y":0},{"x":1569136740000,"y":0.01},{"x":1569136800000,"y":0},{"x":1569136860000,"y":0},{"x":1569136920000,"y":0},{"x":1569136980000,"y":0},{"x":1569137040000,"y":0},{"x":1569137100000,"y":0},{"x":1569137160000,"y":0},{"x":1569137220000,"y":0},{"x":1569137280000,"y":0},{"x":1569137340000,"y":0},{"x":1569137400000,"y":0},{"x":1569137460000,"y":0},{"x":1569137520000,"y":0},{"x":1569137580000,"y":0},{"x":1569137640000,"y":0},{"x":1569137700000,"y":0},{"x":1569137760000,"y":0},{"x":1569137820000,"y":0},{"x":1569137880000,"y":0},{"x":1569137940000,"y":0},{"x":1569138000000,"y":0},{"x":1569138060000,"y":0},{"x":1569138120000,"y":0},{"x":1569138180000,"y":0},{"x":1569138240000,"y":0},{"x":1569138300000,"y":0},{"x":1569138360000,"y":0},{"x":1569138420000,"y":0.01},{"x":1569138480000,"y":0},{"x":1569138540000,"y":0},{"x":1569138600000,"y":0},{"x":1569138660000,"y":0},{"x":1569138720000,"y":0},{"x":1569138780000,"y":0},{"x":1569138840000,"y":0},{"x":1569138900000,"y":0},{"x":1569138960000,"y":0},{"x":1569139020000,"y":0},{"x":1569139080000,"y":0},{"x":1569139140000,"y":0},{"x":1569139200000,"y":0},{"x":1569139260000,"y":0},{"x":1569139320000,"y":0},{"x":1569139380000,"y":0},{"x":1569139440000,"y":0},{"x":1569139500000,"y":0},{"x":1569139560000,"y":0},{"x":1569139620000,"y":0},{"x":1569139680000,"y":0},{"x":1569139740000,"y":0},{"x":1569139800000,"y":0},{"x":1569139860000,"y":0},{"x":1569139920000,"y":0},{"x":1569139980000,"y":0},{"x":1569140040000,"y":0},{"x":1569140100000,"y":0},{"x":1569140160000,"y":0},{"x":1569140220000,"y":0},{"x":1569140280000,"y":0},{"x":1569140340000,"y":0.01},{"x":1569140400000,"y":0},{"x":1569140460000,"y":0},{"x":1569140520000,"y":0},{"x":1569140580000,"y":0},{"x":1569140640000,"y":0},{"x":1569140700000,"y":0},{"x":1569140760000,"y":0},{"x":1569140820000,"y":0},{"x":1569140880000,"y":0},{"x":1569140940000,"y":0},{"x":1569141000000,"y":0},{"x":1569141060000,"y":0},{"x":1569141120000,"y":0},{"x":1569141180000,"y":0},{"x":1569141240000,"y":0},{"x":1569141300000,"y":0},{"x":1569141360000,"y":0},{"x":1569141420000,"y":0},{"x":1569141480000,"y":0},{"x":1569141540000,"y":0},{"x":1569141600000,"y":0},{"x":1569141660000,"y":0},{"x":1569141720000,"y":0},{"x":1569141780000,"y":0},{"x":1569141840000,"y":0},{"x":1569141900000,"y":0},{"x":1569141960000,"y":0},{"x":1569142020000,"y":0.01},{"x":1569142080000,"y":0},{"x":1569142140000,"y":0},{"x":1569142200000,"y":0},{"x":1569142260000,"y":0},{"x":1569142320000,"y":0},{"x":1569142380000,"y":0},{"x":1569142440000,"y":0},{"x":1569142500000,"y":0},{"x":1569142560000,"y":0},{"x":1569142620000,"y":0},{"x":1569142680000,"y":0},{"x":1569142740000,"y":0},{"x":1569142800000,"y":0},{"x":1569142860000,"y":0},{"x":1569142920000,"y":0},{"x":1569142980000,"y":0},{"x":1569143040000,"y":0},{"x":1569143100000,"y":0},{"x":1569143160000,"y":0},{"x":1569143220000,"y":0},{"x":1569143280000,"y":0},{"x":1569143340000,"y":0},{"x":1569143400000,"y":0},{"x":1569143460000,"y":0.01},{"x":1569143520000,"y":0},{"x":1569143580000,"y":0},{"x":1569143640000,"y":0},{"x":1569143700000,"y":0},{"x":1569143760000,"y":0},{"x":1569143820000,"y":0},{"x":1569143880000,"y":0},{"x":1569143940000,"y":0.01},{"x":1569144000000,"y":0},{"x":1569144060000,"y":0},{"x":1569144120000,"y":0},{"x":1569144180000,"y":0},{"x":1569144240000,"y":0},{"x":1569144300000,"y":0},{"x":1569144360000,"y":0},{"x":1569144420000,"y":0},{"x":1569144480000,"y":0},{"x":1569144540000,"y":0},{"x":1569144600000,"y":0},{"x":1569144660000,"y":0},{"x":1569144720000,"y":0},{"x":1569144780000,"y":0},{"x":1569144840000,"y":0},{"x":1569144900000,"y":0},{"x":1569144960000,"y":0},{"x":1569145020000,"y":0},{"x":1569145080000,"y":0},{"x":1569145140000,"y":0},{"x":1569145200000,"y":0},{"x":1569145260000,"y":0},{"x":1569145320000,"y":0},{"x":1569145380000,"y":0},{"x":1569145440000,"y":0},{"x":1569145500000,"y":0},{"x":1569145560000,"y":0},{"x":1569145620000,"y":0.01},{"x":1569145680000,"y":0},{"x":1569145740000,"y":0},{"x":1569145800000,"y":0},{"x":1569145860000,"y":0},{"x":1569145920000,"y":0},{"x":1569145980000,"y":0},{"x":1569146040000,"y":0},{"x":1569146100000,"y":0},{"x":1569146160000,"y":0},{"x":1569146220000,"y":0},{"x":1569146280000,"y":0},{"x":1569146340000,"y":0},{"x":1569146400000,"y":0},{"x":1569146460000,"y":0},{"x":1569146520000,"y":0},{"x":1569146580000,"y":0},{"x":1569146640000,"y":0},{"x":1569146700000,"y":0},{"x":1569146760000,"y":0},{"x":1569146820000,"y":0},{"x":1569146880000,"y":0},{"x":1569146940000,"y":0},{"x":1569147000000,"y":0},{"x":1569147060000,"y":0},{"x":1569147120000,"y":0},{"x":1569147180000,"y":0},{"x":1569147240000,"y":0},{"x":1569147300000,"y":0},{"x":1569147360000,"y":0},{"x":1569147420000,"y":0},{"x":1569147480000,"y":0},{"x":1569147540000,"y":0.01},{"x":1569147600000,"y":0},{"x":1569147660000,"y":0},{"x":1569147720000,"y":0},{"x":1569147780000,"y":0},{"x":1569147840000,"y":0},{"x":1569147900000,"y":0},{"x":1569147960000,"y":0},{"x":1569148020000,"y":0},{"x":1569148080000,"y":0},{"x":1569148140000,"y":0},{"x":1569148200000,"y":0.01},{"x":1569148260000,"y":0},{"x":1569148320000,"y":0},{"x":1569148380000,"y":0},{"x":1569148440000,"y":0},{"x":1569148500000,"y":0},{"x":1569148560000,"y":0},{"x":1569148620000,"y":0},{"x":1569148680000,"y":0},{"x":1569148740000,"y":0},{"x":1569148800000,"y":0},{"x":1569148860000,"y":0},{"x":1569148920000,"y":0},{"x":1569148980000,"y":0},{"x":1569149040000,"y":0},{"x":1569149100000,"y":0},{"x":1569149160000,"y":0},{"x":1569149220000,"y":0.01},{"x":1569149280000,"y":0},{"x":1569149340000,"y":0},{"x":1569149400000,"y":0},{"x":1569149460000,"y":0},{"x":1569149520000,"y":0},{"x":1569149580000,"y":0},{"x":1569149640000,"y":0.01},{"x":1569149700000,"y":0},{"x":1569149760000,"y":0},{"x":1569149820000,"y":0},{"x":1569149880000,"y":0},{"x":1569149940000,"y":0},{"x":1569150000000,"y":0},{"x":1569150060000,"y":0},{"x":1569150120000,"y":0},{"x":1569150180000,"y":0},{"x":1569150240000,"y":0},{"x":1569150300000,"y":0},{"x":1569150360000,"y":0},{"x":1569150420000,"y":0},{"x":1569150480000,"y":0},{"x":1569150540000,"y":0},{"x":1569150600000,"y":0},{"x":1569150660000,"y":0},{"x":1569150720000,"y":0},{"x":1569150780000,"y":0},{"x":1569150840000,"y":0},{"x":1569150900000,"y":0},{"x":1569150960000,"y":0},{"x":1569151020000,"y":0},{"x":1569151080000,"y":0},{"x":1569151140000,"y":0.01},{"x":1569151200000,"y":0},{"x":1569151260000,"y":0},{"x":1569151320000,"y":0},{"x":1569151380000,"y":0},{"x":1569151440000,"y":0},{"x":1569151500000,"y":0},{"x":1569151560000,"y":0},{"x":1569151620000,"y":0},{"x":1569151680000,"y":0},{"x":1569151740000,"y":0},{"x":1569151800000,"y":0},{"x":1569151860000,"y":0},{"x":1569151920000,"y":0},{"x":1569151980000,"y":0},{"x":1569152040000,"y":0},{"x":1569152100000,"y":0},{"x":1569152160000,"y":0},{"x":1569152220000,"y":0},{"x":1569152280000,"y":0},{"x":1569152340000,"y":0},{"x":1569152400000,"y":0},{"x":1569152460000,"y":0},{"x":1569152520000,"y":0},{"x":1569152580000,"y":0},{"x":1569152640000,"y":0},{"x":1569152700000,"y":0},{"x":1569152760000,"y":0},{"x":1569152820000,"y":0.01},{"x":1569152880000,"y":0},{"x":1569152940000,"y":0},{"x":1569153000000,"y":0},{"x":1569153060000,"y":0},{"x":1569153120000,"y":0},{"x":1569153180000,"y":0},{"x":1569153240000,"y":0},{"x":1569153300000,"y":0},{"x":1569153360000,"y":0},{"x":1569153420000,"y":0},{"x":1569153480000,"y":0},{"x":1569153540000,"y":0},{"x":1569153600000,"y":0},{"x":1569153660000,"y":0},{"x":1569153720000,"y":0},{"x":1569153780000,"y":0},{"x":1569153840000,"y":0},{"x":1569153900000,"y":0},{"x":1569153960000,"y":0},{"x":1569154020000,"y":0},{"x":1569154080000,"y":0},{"x":1569154140000,"y":0},{"x":1569154200000,"y":0},{"x":1569154260000,"y":0},{"x":1569154320000,"y":0},{"x":1569154380000,"y":0},{"x":1569154440000,"y":0},{"x":1569154500000,"y":0},{"x":1569154560000,"y":0},{"x":1569154620000,"y":0},{"x":1569154680000,"y":0},{"x":1569154740000,"y":0.01},{"x":1569154800000,"y":0},{"x":1569154860000,"y":0},{"x":1569154920000,"y":0},{"x":1569154980000,"y":0},{"x":1569155040000,"y":0},{"x":1569155100000,"y":0},{"x":1569155160000,"y":0},{"x":1569155220000,"y":0},{"x":1569155280000,"y":0},{"x":1569155340000,"y":0},{"x":1569155400000,"y":0},{"x":1569155460000,"y":0},{"x":1569155520000,"y":0},{"x":1569155580000,"y":0},{"x":1569155640000,"y":0},{"x":1569155700000,"y":0.01},{"x":1569155760000,"y":0},{"x":1569155820000,"y":0},{"x":1569155880000,"y":0},{"x":1569155940000,"y":0},{"x":1569156000000,"y":0},{"x":1569156060000,"y":0},{"x":1569156120000,"y":0},{"x":1569156180000,"y":0},{"x":1569156240000,"y":0},{"x":1569156300000,"y":0},{"x":1569156360000,"y":0},{"x":1569156420000,"y":0.01},{"x":1569156480000,"y":0},{"x":1569156540000,"y":0},{"x":1569156600000,"y":0},{"x":1569156660000,"y":0},{"x":1569156720000,"y":0},{"x":1569156780000,"y":0},{"x":1569156840000,"y":0},{"x":1569156900000,"y":0},{"x":1569156960000,"y":0},{"x":1569157020000,"y":0},{"x":1569157080000,"y":0},{"x":1569157140000,"y":0},{"x":1569157200000,"y":0},{"x":1569157260000,"y":0},{"x":1569157320000,"y":0},{"x":1569157380000,"y":0},{"x":1569157440000,"y":0},{"x":1569157500000,"y":0},{"x":1569157560000,"y":0},{"x":1569157620000,"y":0},{"x":1569157680000,"y":0},{"x":1569157740000,"y":0},{"x":1569157800000,"y":0},{"x":1569157860000,"y":0},{"x":1569157920000,"y":0},{"x":1569157980000,"y":0.01},{"x":1569158040000,"y":0},{"x":1569158100000,"y":0},{"x":1569158160000,"y":0},{"x":1569158220000,"y":0},{"x":1569158280000,"y":0},{"x":1569158340000,"y":0.01},{"x":1569158400000,"y":0},{"x":1569158460000,"y":0},{"x":1569158520000,"y":0},{"x":1569158580000,"y":0},{"x":1569158640000,"y":0},{"x":1569158700000,"y":0},{"x":1569158760000,"y":0},{"x":1569158820000,"y":0},{"x":1569158880000,"y":0},{"x":1569158940000,"y":0},{"x":1569159000000,"y":0},{"x":1569159060000,"y":0},{"x":1569159120000,"y":0},{"x":1569159180000,"y":0},{"x":1569159240000,"y":0},{"x":1569159300000,"y":0},{"x":1569159360000,"y":0},{"x":1569159420000,"y":0},{"x":1569159480000,"y":0},{"x":1569159540000,"y":0},{"x":1569159600000,"y":0},{"x":1569159660000,"y":0},{"x":1569159720000,"y":0},{"x":1569159780000,"y":0},{"x":1569159840000,"y":0},{"x":1569159900000,"y":0},{"x":1569159960000,"y":0},{"x":1569160020000,"y":0.01},{"x":1569160080000,"y":0},{"x":1569160140000,"y":0},{"x":1569160200000,"y":0},{"x":1569160260000,"y":0},{"x":1569160320000,"y":0},{"x":1569160380000,"y":0},{"x":1569160440000,"y":0},{"x":1569160500000,"y":0},{"x":1569160560000,"y":0},{"x":1569160620000,"y":0},{"x":1569160680000,"y":0},{"x":1569160740000,"y":0},{"x":1569160800000,"y":0.06},{"x":1569160860000,"y":0},{"x":1569160920000,"y":0},{"x":1569160980000,"y":0},{"x":1569161040000,"y":0},{"x":1569161100000,"y":0},{"x":1569161160000,"y":0},{"x":1569161220000,"y":0},{"x":1569161280000,"y":0},{"x":1569161340000,"y":0},{"x":1569161400000,"y":0},{"x":1569161460000,"y":0},{"x":1569161520000,"y":0},{"x":1569161580000,"y":0},{"x":1569161640000,"y":0},{"x":1569161700000,"y":0},{"x":1569161760000,"y":0},{"x":1569161820000,"y":0},{"x":1569161880000,"y":0},{"x":1569161940000,"y":0.01},{"x":1569162000000,"y":0},{"x":1569162060000,"y":0},{"x":1569162120000,"y":0},{"x":1569162180000,"y":0},{"x":1569162240000,"y":0},{"x":1569162300000,"y":0},{"x":1569162360000,"y":0},{"x":1569162420000,"y":0},{"x":1569162480000,"y":0},{"x":1569162540000,"y":0},{"x":1569162600000,"y":0},{"x":1569162660000,"y":0},{"x":1569162720000,"y":0},{"x":1569162780000,"y":0},{"x":1569162840000,"y":0},{"x":1569162900000,"y":0.01},{"x":1569162960000,"y":0},{"x":1569163020000,"y":0},{"x":1569163080000,"y":0},{"x":1569163140000,"y":0},{"x":1569163200000,"y":0},{"x":1569163260000,"y":0},{"x":1569163320000,"y":0},{"x":1569163380000,"y":0},{"x":1569163440000,"y":0},{"x":1569163500000,"y":0},{"x":1569163560000,"y":0},{"x":1569163620000,"y":0.01},{"x":1569163680000,"y":0},{"x":1569163740000,"y":0},{"x":1569163800000,"y":0},{"x":1569163860000,"y":0},{"x":1569163920000,"y":0},{"x":1569163980000,"y":0},{"x":1569164040000,"y":0},{"x":1569164100000,"y":0},{"x":1569164160000,"y":0},{"x":1569164220000,"y":0},{"x":1569164280000,"y":0},{"x":1569164340000,"y":0},{"x":1569164400000,"y":0},{"x":1569164460000,"y":0},{"x":1569164520000,"y":0},{"x":1569164580000,"y":0},{"x":1569164640000,"y":0},{"x":1569164700000,"y":0},{"x":1569164760000,"y":0},{"x":1569164820000,"y":0},{"x":1569164880000,"y":0},{"x":1569164940000,"y":0},{"x":1569165000000,"y":0},{"x":1569165060000,"y":0},{"x":1569165120000,"y":0},{"x":1569165180000,"y":0},{"x":1569165240000,"y":0},{"x":1569165300000,"y":0},{"x":1569165360000,"y":0},{"x":1569165420000,"y":0},{"x":1569165480000,"y":0},{"x":1569165540000,"y":0.01},{"x":1569165600000,"y":0},{"x":1569165660000,"y":0},{"x":1569165720000,"y":0},{"x":1569165780000,"y":0},{"x":1569165840000,"y":0},{"x":1569165900000,"y":0},{"x":1569165960000,"y":0},{"x":1569166020000,"y":0},{"x":1569166080000,"y":0},{"x":1569166140000,"y":0},{"x":1569166200000,"y":0},{"x":1569166260000,"y":0},{"x":1569166320000,"y":0},{"x":1569166380000,"y":0},{"x":1569166440000,"y":0},{"x":1569166500000,"y":0},{"x":1569166560000,"y":0},{"x":1569166620000,"y":0},{"x":1569166680000,"y":0},{"x":1569166740000,"y":0},{"x":1569166800000,"y":0},{"x":1569166860000,"y":0},{"x":1569166920000,"y":0},{"x":1569166980000,"y":0},{"x":1569167040000,"y":0.1},{"x":1569167100000,"y":0},{"x":1569167160000,"y":0},{"x":1569167220000,"y":0.01},{"x":1569167280000,"y":0},{"x":1569167340000,"y":0},{"x":1569167400000,"y":0},{"x":1569167460000,"y":0},{"x":1569167520000,"y":0},{"x":1569167580000,"y":0},{"x":1569167640000,"y":0},{"x":1569167700000,"y":0},{"x":1569167760000,"y":0},{"x":1569167820000,"y":0},{"x":1569167880000,"y":0},{"x":1569167940000,"y":0},{"x":1569168000000,"y":0},{"x":1569168060000,"y":0},{"x":1569168120000,"y":0},{"x":1569168180000,"y":0},{"x":1569168240000,"y":0},{"x":1569168300000,"y":0},{"x":1569168360000,"y":0},{"x":1569168420000,"y":0},{"x":1569168480000,"y":0},{"x":1569168540000,"y":0},{"x":1569168600000,"y":0},{"x":1569168660000,"y":0},{"x":1569168720000,"y":0},{"x":1569168780000,"y":0},{"x":1569168840000,"y":0},{"x":1569168900000,"y":0},{"x":1569168960000,"y":0},{"x":1569169020000,"y":0},{"x":1569169080000,"y":0},{"x":1569169140000,"y":0.01},{"x":1569169200000,"y":0},{"x":1569169260000,"y":0},{"x":1569169320000,"y":0},{"x":1569169380000,"y":0},{"x":1569169440000,"y":0},{"x":1569169500000,"y":0},{"x":1569169560000,"y":0},{"x":1569169620000,"y":0},{"x":1569169680000,"y":0},{"x":1569169740000,"y":0},{"x":1569169800000,"y":0},{"x":1569169860000,"y":0},{"x":1569169920000,"y":0},{"x":1569169980000,"y":0},{"x":1569170040000,"y":0},{"x":1569170100000,"y":0},{"x":1569170160000,"y":0},{"x":1569170220000,"y":0.01},{"x":1569170280000,"y":0},{"x":1569170340000,"y":0},{"x":1569170400000,"y":0},{"x":1569170460000,"y":0},{"x":1569170520000,"y":0},{"x":1569170580000,"y":0},{"x":1569170640000,"y":0},{"x":1569170700000,"y":0},{"x":1569170760000,"y":0},{"x":1569170820000,"y":0.01},{"x":1569170880000,"y":0},{"x":1569170940000,"y":0},{"x":1569171000000,"y":0},{"x":1569171060000,"y":0},{"x":1569171120000,"y":0},{"x":1569171180000,"y":0},{"x":1569171240000,"y":0},{"x":1569171300000,"y":0},{"x":1569171360000,"y":0},{"x":1569171420000,"y":0},{"x":1569171480000,"y":0},{"x":1569171540000,"y":0.01},{"x":1569171600000,"y":0},{"x":1569171660000,"y":0},{"x":1569171720000,"y":0},{"x":1569171780000,"y":0},{"x":1569171840000,"y":0},{"x":1569171900000,"y":0},{"x":1569171960000,"y":0},{"x":1569172020000,"y":0},{"x":1569172080000,"y":0},{"x":1569172140000,"y":0},{"x":1569172200000,"y":0},{"x":1569172260000,"y":0},{"x":1569172320000,"y":0.01},{"x":1569172380000,"y":0},{"x":1569172440000,"y":0},{"x":1569172500000,"y":0},{"x":1569172560000,"y":0},{"x":1569172620000,"y":0},{"x":1569172680000,"y":0},{"x":1569172740000,"y":0.01},{"x":1569172800000,"y":0},{"x":1569172860000,"y":0},{"x":1569172920000,"y":0},{"x":1569172980000,"y":0},{"x":1569173040000,"y":0},{"x":1569173100000,"y":0},{"x":1569173160000,"y":0},{"x":1569173220000,"y":0},{"x":1569173280000,"y":0},{"x":1569173340000,"y":0},{"x":1569173400000,"y":0},{"x":1569173460000,"y":0},{"x":1569173520000,"y":0},{"x":1569173580000,"y":0},{"x":1569173640000,"y":0},{"x":1569173700000,"y":0},{"x":1569173760000,"y":0},{"x":1569173820000,"y":0},{"x":1569173880000,"y":0},{"x":1569173940000,"y":0},{"x":1569174000000,"y":0},{"x":1569174060000,"y":0},{"x":1569174120000,"y":0},{"x":1569174180000,"y":0},{"x":1569174240000,"y":0},{"x":1569174300000,"y":0},{"x":1569174360000,"y":0},{"x":1569174420000,"y":0.01},{"x":1569174480000,"y":0},{"x":1569174540000,"y":0},{"x":1569174600000,"y":0},{"x":1569174660000,"y":0},{"x":1569174720000,"y":0},{"x":1569174780000,"y":0},{"x":1569174840000,"y":0},{"x":1569174900000,"y":0},{"x":1569174960000,"y":0},{"x":1569175020000,"y":0},{"x":1569175080000,"y":0},{"x":1569175140000,"y":0},{"x":1569175200000,"y":0},{"x":1569175260000,"y":0},{"x":1569175320000,"y":0},{"x":1569175380000,"y":0},{"x":1569175440000,"y":0},{"x":1569175500000,"y":0},{"x":1569175560000,"y":0},{"x":1569175620000,"y":0},{"x":1569175680000,"y":0.01},{"x":1569175740000,"y":0},{"x":1569175800000,"y":0},{"x":1569175860000,"y":0},{"x":1569175920000,"y":0},{"x":1569175980000,"y":0},{"x":1569176040000,"y":0},{"x":1569176100000,"y":0},{"x":1569176160000,"y":0},{"x":1569176220000,"y":0},{"x":1569176280000,"y":0},{"x":1569176340000,"y":0.01},{"x":1569176400000,"y":0},{"x":1569176460000,"y":0},{"x":1569176520000,"y":0},{"x":1569176580000,"y":0},{"x":1569176640000,"y":0},{"x":1569176700000,"y":0},{"x":1569176760000,"y":0},{"x":1569176820000,"y":0},{"x":1569176880000,"y":0},{"x":1569176940000,"y":0},{"x":1569177000000,"y":0},{"x":1569177060000,"y":0},{"x":1569177120000,"y":0},{"x":1569177180000,"y":0},{"x":1569177240000,"y":0},{"x":1569177300000,"y":0},{"x":1569177360000,"y":0},{"x":1569177420000,"y":0},{"x":1569177480000,"y":0},{"x":1569177540000,"y":0},{"x":1569177600000,"y":0},{"x":1569177660000,"y":0},{"x":1569177720000,"y":0},{"x":1569177780000,"y":0},{"x":1569177840000,"y":0},{"x":1569177900000,"y":0},{"x":1569177960000,"y":0},{"x":1569178020000,"y":0.01},{"x":1569178080000,"y":0},{"x":1569178140000,"y":0},{"x":1569178200000,"y":0},{"x":1569178260000,"y":0},{"x":1569178320000,"y":0},{"x":1569178380000,"y":0},{"x":1569178440000,"y":0},{"x":1569178500000,"y":0.01},{"x":1569178560000,"y":0},{"x":1569178620000,"y":0},{"x":1569178680000,"y":0},{"x":1569178740000,"y":0},{"x":1569178800000,"y":0},{"x":1569178860000,"y":0},{"x":1569178920000,"y":0},{"x":1569178980000,"y":0},{"x":1569179040000,"y":0},{"x":1569179100000,"y":0},{"x":1569179160000,"y":0},{"x":1569179220000,"y":0},{"x":1569179280000,"y":0},{"x":1569179340000,"y":0},{"x":1569179400000,"y":0},{"x":1569179460000,"y":0},{"x":1569179520000,"y":0},{"x":1569179580000,"y":0},{"x":1569179640000,"y":0},{"x":1569179700000,"y":0},{"x":1569179760000,"y":0},{"x":1569179820000,"y":0},{"x":1569179880000,"y":0},{"x":1569179940000,"y":0.01},{"x":1569180000000,"y":0},{"x":1569180060000,"y":0},{"x":1569180120000,"y":0},{"x":1569180180000,"y":0},{"x":1569180240000,"y":0},{"x":1569180300000,"y":0},{"x":1569180360000,"y":0},{"x":1569180420000,"y":0},{"x":1569180480000,"y":0},{"x":1569180540000,"y":0},{"x":1569180600000,"y":0},{"x":1569180660000,"y":0},{"x":1569180720000,"y":0},{"x":1569180780000,"y":0},{"x":1569180840000,"y":0},{"x":1569180900000,"y":0},{"x":1569180960000,"y":0},{"x":1569181020000,"y":0},{"x":1569181080000,"y":0},{"x":1569181140000,"y":0},{"x":1569181200000,"y":0},{"x":1569181260000,"y":0},{"x":1569181320000,"y":0.15},{"x":1569181380000,"y":0},{"x":1569181440000,"y":0},{"x":1569181500000,"y":0},{"x":1569181560000,"y":0.01},{"x":1569181620000,"y":0.01},{"x":1569181680000,"y":0},{"x":1569181740000,"y":0},{"x":1569181800000,"y":0},{"x":1569181860000,"y":0},{"x":1569181920000,"y":0},{"x":1569181980000,"y":0},{"x":1569182040000,"y":0},{"x":1569182100000,"y":0},{"x":1569182160000,"y":0},{"x":1569182220000,"y":0},{"x":1569182280000,"y":0},{"x":1569182340000,"y":0},{"x":1569182400000,"y":0},{"x":1569182460000,"y":0},{"x":1569182520000,"y":0},{"x":1569182580000,"y":0},{"x":1569182640000,"y":0},{"x":1569182700000,"y":0.01},{"x":1569182760000,"y":0.01},{"x":1569182820000,"y":0},{"x":1569182880000,"y":0},{"x":1569182940000,"y":0},{"x":1569183000000,"y":0},{"x":1569183060000,"y":0},{"x":1569183120000,"y":0},{"x":1569183180000,"y":0},{"x":1569183240000,"y":0},{"x":1569183300000,"y":0},{"x":1569183360000,"y":0},{"x":1569183420000,"y":0},{"x":1569183480000,"y":0},{"x":1569183540000,"y":0.01},{"x":1569183600000,"y":0},{"x":1569183660000,"y":0},{"x":1569183720000,"y":0},{"x":1569183780000,"y":0},{"x":1569183840000,"y":0},{"x":1569183900000,"y":0},{"x":1569183960000,"y":0},{"x":1569184020000,"y":0},{"x":1569184080000,"y":0},{"x":1569184140000,"y":0},{"x":1569184200000,"y":0},{"x":1569184260000,"y":0},{"x":1569184320000,"y":0},{"x":1569184380000,"y":0},{"x":1569184440000,"y":0},{"x":1569184500000,"y":0.01},{"x":1569184560000,"y":0},{"x":1569184620000,"y":0},{"x":1569184680000,"y":0},{"x":1569184740000,"y":0},{"x":1569184800000,"y":0},{"x":1569184860000,"y":0},{"x":1569184920000,"y":0},{"x":1569184980000,"y":0},{"x":1569185040000,"y":0.01},{"x":1569185100000,"y":0},{"x":1569185160000,"y":0},{"x":1569185220000,"y":0.01},{"x":1569185280000,"y":0},{"x":1569185340000,"y":0},{"x":1569185400000,"y":0},{"x":1569185460000,"y":0},{"x":1569185520000,"y":0},{"x":1569185580000,"y":0},{"x":1569185640000,"y":0},{"x":1569185700000,"y":0},{"x":1569185760000,"y":0},{"x":1569185820000,"y":0.01},{"x":1569185880000,"y":0},{"x":1569185940000,"y":0},{"x":1569186000000,"y":0},{"x":1569186060000,"y":0},{"x":1569186120000,"y":0},{"x":1569186180000,"y":0},{"x":1569186240000,"y":0},{"x":1569186300000,"y":0},{"x":1569186360000,"y":0},{"x":1569186420000,"y":0},{"x":1569186480000,"y":0},{"x":1569186540000,"y":0},{"x":1569186600000,"y":0},{"x":1569186660000,"y":0},{"x":1569186720000,"y":0},{"x":1569186780000,"y":0},{"x":1569186840000,"y":0},{"x":1569186900000,"y":0},{"x":1569186960000,"y":0},{"x":1569187020000,"y":0},{"x":1569187080000,"y":0},{"x":1569187140000,"y":0.01},{"x":1569187200000,"y":0},{"x":1569187260000,"y":0},{"x":1569187320000,"y":0},{"x":1569187380000,"y":0},{"x":1569187440000,"y":0},{"x":1569187500000,"y":0.01},{"x":1569187560000,"y":0},{"x":1569187620000,"y":0},{"x":1569187680000,"y":0.96},{"x":1569187740000,"y":0},{"x":1569187800000,"y":0},{"x":1569187860000,"y":0},{"x":1569187920000,"y":0},{"x":1569187980000,"y":0},{"x":1569188040000,"y":0},{"x":1569188100000,"y":0},{"x":1569188160000,"y":0},{"x":1569188220000,"y":0},{"x":1569188280000,"y":0},{"x":1569188340000,"y":0},{"x":1569188400000,"y":0.12},{"x":1569188460000,"y":0},{"x":1569188520000,"y":0},{"x":1569188580000,"y":0},{"x":1569188640000,"y":0},{"x":1569188700000,"y":0},{"x":1569188760000,"y":0},{"x":1569188820000,"y":0.01},{"x":1569188880000,"y":0.01},{"x":1569188940000,"y":0},{"x":1569189000000,"y":0},{"x":1569189060000,"y":0},{"x":1569189120000,"y":0},{"x":1569189180000,"y":0},{"x":1569189240000,"y":0},{"x":1569189300000,"y":0},{"x":1569189360000,"y":0},{"x":1569189420000,"y":0},{"x":1569189480000,"y":0},{"x":1569189540000,"y":0},{"x":1569189600000,"y":0},{"x":1569189660000,"y":0},{"x":1569189720000,"y":0},{"x":1569189780000,"y":0},{"x":1569189840000,"y":0},{"x":1569189900000,"y":0},{"x":1569189960000,"y":0},{"x":1569190020000,"y":0},{"x":1569190080000,"y":0},{"x":1569190140000,"y":0},{"x":1569190200000,"y":0},{"x":1569190260000,"y":0},{"x":1569190320000,"y":0},{"x":1569190380000,"y":0},{"x":1569190440000,"y":0},{"x":1569190500000,"y":0},{"x":1569190560000,"y":0},{"x":1569190620000,"y":0},{"x":1569190680000,"y":0},{"x":1569190740000,"y":0.02},{"x":1569190800000,"y":0},{"x":1569190860000,"y":0},{"x":1569190920000,"y":0},{"x":1569190980000,"y":0},{"x":1569191040000,"y":0},{"x":1569191100000,"y":0},{"x":1569191160000,"y":0},{"x":1569191220000,"y":0},{"x":1569191280000,"y":0},{"x":1569191340000,"y":0},{"x":1569191400000,"y":0},{"x":1569191460000,"y":0},{"x":1569191520000,"y":0},{"x":1569191580000,"y":0},{"x":1569191640000,"y":0},{"x":1569191700000,"y":0},{"x":1569191760000,"y":0},{"x":1569191820000,"y":0},{"x":1569191880000,"y":0},{"x":1569191940000,"y":0},{"x":1569192000000,"y":0},{"x":1569192060000,"y":0},{"x":1569192120000,"y":0},{"x":1569192180000,"y":0},{"x":1569192240000,"y":0},{"x":1569192300000,"y":0},{"x":1569192360000,"y":0},{"x":1569192420000,"y":0.01},{"x":1569192480000,"y":0},{"x":1569192540000,"y":0},{"x":1569192600000,"y":0},{"x":1569192660000,"y":0},{"x":1569192720000,"y":0},{"x":1569192780000,"y":0},{"x":1569192840000,"y":0},{"x":1569192900000,"y":0},{"x":1569192960000,"y":0},{"x":1569193020000,"y":0},{"x":1569193080000,"y":0},{"x":1569193140000,"y":0},{"x":1569193200000,"y":0},{"x":1569193260000,"y":0},{"x":1569193320000,"y":0},{"x":1569193380000,"y":0.01},{"x":1569193440000,"y":0},{"x":1569193500000,"y":0},{"x":1569193560000,"y":0},{"x":1569193620000,"y":0},{"x":1569193680000,"y":0},{"x":1569193740000,"y":0},{"x":1569193800000,"y":0},{"x":1569193860000,"y":0},{"x":1569193920000,"y":0},{"x":1569193980000,"y":0},{"x":1569194040000,"y":0},{"x":1569194100000,"y":0},{"x":1569194160000,"y":0},{"x":1569194220000,"y":0},{"x":1569194280000,"y":0},{"x":1569194340000,"y":0.01},{"x":1569194400000,"y":0},{"x":1569194460000,"y":0},{"x":1569194520000,"y":0},{"x":1569194580000,"y":0},{"x":1569194640000,"y":0},{"x":1569194700000,"y":0},{"x":1569194760000,"y":0},{"x":1569194820000,"y":0},{"x":1569194880000,"y":0},{"x":1569194940000,"y":0},{"x":1569195000000,"y":0},{"x":1569195060000,"y":0.01},{"x":1569195120000,"y":0},{"x":1569195180000,"y":0},{"x":1569195240000,"y":0},{"x":1569195300000,"y":0},{"x":1569195360000,"y":0},{"x":1569195420000,"y":0},{"x":1569195480000,"y":0},{"x":1569195540000,"y":0},{"x":1569195600000,"y":0},{"x":1569195660000,"y":0},{"x":1569195720000,"y":0},{"x":1569195780000,"y":0},{"x":1569195840000,"y":0},{"x":1569195900000,"y":0},{"x":1569195960000,"y":0},{"x":1569196020000,"y":0.01},{"x":1569196080000,"y":0},{"x":1569196140000,"y":0},{"x":1569196200000,"y":0},{"x":1569196260000,"y":0},{"x":1569196320000,"y":0},{"x":1569196380000,"y":0},{"x":1569196440000,"y":0},{"x":1569196500000,"y":0},{"x":1569196560000,"y":0},{"x":1569196620000,"y":0},{"x":1569196680000,"y":0},{"x":1569196740000,"y":0},{"x":1569196800000,"y":0},{"x":1569196860000,"y":0},{"x":1569196920000,"y":0},{"x":1569196980000,"y":0},{"x":1569197040000,"y":0},{"x":1569197100000,"y":0},{"x":1569197160000,"y":0},{"x":1569197220000,"y":0},{"x":1569197280000,"y":0},{"x":1569197340000,"y":0},{"x":1569197400000,"y":0},{"x":1569197460000,"y":0},{"x":1569197520000,"y":0},{"x":1569197580000,"y":0},{"x":1569197640000,"y":0},{"x":1569197700000,"y":0.01},{"x":1569197760000,"y":0},{"x":1569197820000,"y":0},{"x":1569197880000,"y":0},{"x":1569197940000,"y":0.01},{"x":1569198000000,"y":0},{"x":1569198060000,"y":0},{"x":1569198120000,"y":0},{"x":1569198180000,"y":0},{"x":1569198240000,"y":0},{"x":1569198300000,"y":0},{"x":1569198360000,"y":0},{"x":1569198420000,"y":0},{"x":1569198480000,"y":0},{"x":1569198540000,"y":0},{"x":1569198600000,"y":0},{"x":1569198660000,"y":0},{"x":1569198720000,"y":0},{"x":1569198780000,"y":0},{"x":1569198840000,"y":0},{"x":1569198900000,"y":0},{"x":1569198960000,"y":0},{"x":1569199020000,"y":0},{"x":1569199080000,"y":0},{"x":1569199140000,"y":0},{"x":1569199200000,"y":0},{"x":1569199260000,"y":0},{"x":1569199320000,"y":0},{"x":1569199380000,"y":0},{"x":1569199440000,"y":0},{"x":1569199500000,"y":0},{"x":1569199560000,"y":0},{"x":1569199620000,"y":0.01},{"x":1569199680000,"y":0},{"x":1569199740000,"y":0},{"x":1569199800000,"y":0},{"x":1569199860000,"y":0},{"x":1569199920000,"y":0},{"x":1569199980000,"y":0},{"x":1569200040000,"y":0},{"x":1569200100000,"y":0},{"x":1569200160000,"y":0},{"x":1569200220000,"y":0},{"x":1569200280000,"y":0},{"x":1569200340000,"y":0},{"x":1569200400000,"y":0},{"x":1569200460000,"y":0},{"x":1569200520000,"y":0},{"x":1569200580000,"y":0},{"x":1569200640000,"y":0},{"x":1569200700000,"y":0},{"x":1569200760000,"y":0},{"x":1569200820000,"y":0},{"x":1569200880000,"y":0},{"x":1569200940000,"y":0},{"x":1569201000000,"y":0.01},{"x":1569201060000,"y":0},{"x":1569201120000,"y":0},{"x":1569201180000,"y":0},{"x":1569201240000,"y":0},{"x":1569201300000,"y":0},{"x":1569201360000,"y":0},{"x":1569201420000,"y":0},{"x":1569201480000,"y":0},{"x":1569201540000,"y":0.01},{"x":1569201600000,"y":0},{"x":1569201660000,"y":0},{"x":1569201720000,"y":0},{"x":1569201780000,"y":0},{"x":1569201840000,"y":0},{"x":1569201900000,"y":0},{"x":1569201960000,"y":0},{"x":1569202020000,"y":0},{"x":1569202080000,"y":0},{"x":1569202140000,"y":0},{"x":1569202200000,"y":0},{"x":1569202260000,"y":0},{"x":1569202320000,"y":0},{"x":1569202380000,"y":0},{"x":1569202440000,"y":0},{"x":1569202500000,"y":0},{"x":1569202560000,"y":0},{"x":1569202620000,"y":0},{"x":1569202680000,"y":0},{"x":1569202740000,"y":0},{"x":1569202800000,"y":0},{"x":1569202860000,"y":0},{"x":1569202920000,"y":0},{"x":1569202980000,"y":0},{"x":1569203040000,"y":0},{"x":1569203100000,"y":0},{"x":1569203160000,"y":0},{"x":1569203220000,"y":0.01},{"x":1569203280000,"y":0},{"x":1569203340000,"y":0},{"x":1569203400000,"y":0},{"x":1569203460000,"y":0},{"x":1569203520000,"y":0},{"x":1569203580000,"y":0},{"x":1569203640000,"y":0},{"x":1569203700000,"y":0},{"x":1569203760000,"y":0},{"x":1569203820000,"y":0},{"x":1569203880000,"y":0},{"x":1569203940000,"y":0},{"x":1569204000000,"y":0},{"x":1569204060000,"y":0},{"x":1569204120000,"y":0},{"x":1569204180000,"y":0},{"x":1569204240000,"y":0},{"x":1569204300000,"y":0},{"x":1569204360000,"y":0},{"x":1569204420000,"y":0},{"x":1569204480000,"y":0},{"x":1569204540000,"y":0},{"x":1569204600000,"y":0},{"x":1569204660000,"y":0},{"x":1569204720000,"y":0.01},{"x":1569204780000,"y":0},{"x":1569204840000,"y":0},{"x":1569204900000,"y":0},{"x":1569204960000,"y":0},{"x":1569205020000,"y":0},{"x":1569205080000,"y":0},{"x":1569205140000,"y":0.01},{"x":1569205200000,"y":0},{"x":1569205260000,"y":0},{"x":1569205320000,"y":0},{"x":1569205380000,"y":0},{"x":1569205440000,"y":0},{"x":1569205500000,"y":0},{"x":1569205560000,"y":0},{"x":1569205620000,"y":0},{"x":1569205680000,"y":0},{"x":1569205740000,"y":0},{"x":1569205800000,"y":0},{"x":1569205860000,"y":0},{"x":1569205920000,"y":0},{"x":1569205980000,"y":0},{"x":1569206040000,"y":0},{"x":1569206100000,"y":0},{"x":1569206160000,"y":0.02},{"x":1569206220000,"y":0},{"x":1569206280000,"y":0.01},{"x":1569206340000,"y":0},{"x":1569206400000,"y":0},{"x":1569206460000,"y":0},{"x":1569206520000,"y":0},{"x":1569206580000,"y":0},{"x":1569206640000,"y":0},{"x":1569206700000,"y":0},{"x":1569206760000,"y":0},{"x":1569206820000,"y":0.01},{"x":1569206880000,"y":0},{"x":1569206940000,"y":0},{"x":1569207000000,"y":0},{"x":1569207060000,"y":0},{"x":1569207120000,"y":0},{"x":1569207180000,"y":0},{"x":1569207240000,"y":0},{"x":1569207300000,"y":0},{"x":1569207360000,"y":0},{"x":1569207420000,"y":0},{"x":1569207480000,"y":0},{"x":1569207540000,"y":0},{"x":1569207600000,"y":0},{"x":1569207660000,"y":0},{"x":1569207720000,"y":0},{"x":1569207780000,"y":0},{"x":1569207840000,"y":0},{"x":1569207900000,"y":0},{"x":1569207960000,"y":0},{"x":1569208020000,"y":0},{"x":1569208080000,"y":0},{"x":1569208140000,"y":0},{"x":1569208200000,"y":0},{"x":1569208260000,"y":0},{"x":1569208320000,"y":0.01},{"x":1569208380000,"y":0},{"x":1569208440000,"y":0},{"x":1569208500000,"y":0},{"x":1569208560000,"y":0},{"x":1569208620000,"y":0},{"x":1569208680000,"y":0},{"x":1569208740000,"y":0.01},{"x":1569208800000,"y":0},{"x":1569208860000,"y":0},{"x":1569208920000,"y":0},{"x":1569208980000,"y":0},{"x":1569209040000,"y":0},{"x":1569209100000,"y":0},{"x":1569209160000,"y":0},{"x":1569209220000,"y":0},{"x":1569209280000,"y":0},{"x":1569209340000,"y":0},{"x":1569209400000,"y":0},{"x":1569209460000,"y":0},{"x":1569209520000,"y":0},{"x":1569209580000,"y":0},{"x":1569209640000,"y":0},{"x":1569209700000,"y":0},{"x":1569209760000,"y":0},{"x":1569209820000,"y":0},{"x":1569209880000,"y":0},{"x":1569209940000,"y":0},{"x":1569210000000,"y":0},{"x":1569210060000,"y":0},{"x":1569210120000,"y":0},{"x":1569210180000,"y":0},{"x":1569210240000,"y":0},{"x":1569210300000,"y":0},{"x":1569210360000,"y":0},{"x":1569210420000,"y":0.01},{"x":1569210480000,"y":0},{"x":1569210540000,"y":0},{"x":1569210600000,"y":0},{"x":1569210660000,"y":0},{"x":1569210720000,"y":0},{"x":1569210780000,"y":0},{"x":1569210840000,"y":0},{"x":1569210900000,"y":0},{"x":1569210960000,"y":0},{"x":1569211020000,"y":0},{"x":1569211080000,"y":0},{"x":1569211140000,"y":0},{"x":1569211200000,"y":0},{"x":1569211260000,"y":0},{"x":1569211320000,"y":0},{"x":1569211380000,"y":0},{"x":1569211440000,"y":0},{"x":1569211500000,"y":0},{"x":1569211560000,"y":0},{"x":1569211620000,"y":0},{"x":1569211680000,"y":0},{"x":1569211740000,"y":0},{"x":1569211800000,"y":0},{"x":1569211860000,"y":0},{"x":1569211920000,"y":0},{"x":1569211980000,"y":0},{"x":1569212040000,"y":0},{"x":1569212100000,"y":0},{"x":1569212160000,"y":0},{"x":1569212220000,"y":0},{"x":1569212280000,"y":0},{"x":1569212340000,"y":0.01},{"x":1569212400000,"y":0},{"x":1569212460000,"y":0},{"x":1569212520000,"y":0},{"x":1569212580000,"y":0},{"x":1569212640000,"y":0},{"x":1569212700000,"y":0},{"x":1569212760000,"y":0},{"x":1569212820000,"y":0},{"x":1569212880000,"y":0},{"x":1569212940000,"y":0},{"x":1569213000000,"y":0},{"x":1569213060000,"y":0},{"x":1569213120000,"y":0},{"x":1569213180000,"y":0},{"x":1569213240000,"y":0},{"x":1569213300000,"y":0},{"x":1569213360000,"y":0},{"x":1569213420000,"y":0},{"x":1569213480000,"y":0},{"x":1569213540000,"y":0},{"x":1569213600000,"y":0},{"x":1569213660000,"y":0},{"x":1569213720000,"y":0},{"x":1569213780000,"y":0},{"x":1569213840000,"y":0},{"x":1569213900000,"y":0},{"x":1569213960000,"y":0},{"x":1569214020000,"y":0.01},{"x":1569214080000,"y":0},{"x":1569214140000,"y":0},{"x":1569214200000,"y":0},{"x":1569214260000,"y":0},{"x":1569214320000,"y":0},{"x":1569214380000,"y":0},{"x":1569214440000,"y":0},{"x":1569214500000,"y":0},{"x":1569214560000,"y":0},{"x":1569214620000,"y":0},{"x":1569214680000,"y":0},{"x":1569214740000,"y":0},{"x":1569214800000,"y":0},{"x":1569214860000,"y":0},{"x":1569214920000,"y":0},{"x":1569214980000,"y":0},{"x":1569215040000,"y":0},{"x":1569215100000,"y":0},{"x":1569215160000,"y":0},{"x":1569215220000,"y":0},{"x":1569215280000,"y":0.01},{"x":1569215340000,"y":0},{"x":1569215400000,"y":0},{"x":1569215460000,"y":0},{"x":1569215520000,"y":0},{"x":1569215580000,"y":0},{"x":1569215640000,"y":0},{"x":1569215700000,"y":0},{"x":1569215760000,"y":0},{"x":1569215820000,"y":0},{"x":1569215880000,"y":0},{"x":1569215940000,"y":0.01},{"x":1569216000000,"y":0},{"x":1569216060000,"y":0},{"x":1569216120000,"y":0},{"x":1569216180000,"y":0},{"x":1569216240000,"y":0},{"x":1569216300000,"y":0},{"x":1569216360000,"y":0},{"x":1569216420000,"y":0},{"x":1569216480000,"y":0},{"x":1569216540000,"y":0},{"x":1569216600000,"y":0},{"x":1569216660000,"y":0.02},{"x":1569216720000,"y":0},{"x":1569216780000,"y":0},{"x":1569216840000,"y":0},{"x":1569216900000,"y":0},{"x":1569216960000,"y":0},{"x":1569217020000,"y":0},{"x":1569217080000,"y":0},{"x":1569217140000,"y":0},{"x":1569217200000,"y":0},{"x":1569217260000,"y":0},{"x":1569217320000,"y":0},{"x":1569217380000,"y":0},{"x":1569217440000,"y":0},{"x":1569217500000,"y":0},{"x":1569217560000,"y":0},{"x":1569217620000,"y":0.01},{"x":1569217680000,"y":0},{"x":1569217740000,"y":0},{"x":1569217800000,"y":0},{"x":1569217860000,"y":0},{"x":1569217920000,"y":0},{"x":1569217980000,"y":0},{"x":1569218040000,"y":0},{"x":1569218100000,"y":0},{"x":1569218160000,"y":0},{"x":1569218220000,"y":0},{"x":1569218280000,"y":0},{"x":1569218340000,"y":0},{"x":1569218400000,"y":0},{"x":1569218460000,"y":0},{"x":1569218520000,"y":0},{"x":1569218580000,"y":0},{"x":1569218640000,"y":0},{"x":1569218700000,"y":0},{"x":1569218760000,"y":0},{"x":1569218820000,"y":0},{"x":1569218880000,"y":0},{"x":1569218940000,"y":0},{"x":1569219000000,"y":0},{"x":1569219060000,"y":0},{"x":1569219120000,"y":0},{"x":1569219180000,"y":0},{"x":1569219240000,"y":0},{"x":1569219300000,"y":0},{"x":1569219360000,"y":0},{"x":1569219420000,"y":0},{"x":1569219480000,"y":0},{"x":1569219540000,"y":0.01},{"x":1569219600000,"y":0},{"x":1569219660000,"y":0},{"x":1569219720000,"y":0},{"x":1569219780000,"y":0},{"x":1569219840000,"y":0},{"x":1569219900000,"y":0},{"x":1569219960000,"y":0},{"x":1569220020000,"y":0},{"x":1569220080000,"y":0},{"x":1569220140000,"y":0},{"x":1569220200000,"y":0},{"x":1569220260000,"y":0},{"x":1569220320000,"y":0},{"x":1569220380000,"y":0},{"x":1569220440000,"y":0},{"x":1569220500000,"y":0},{"x":1569220560000,"y":0},{"x":1569220620000,"y":0},{"x":1569220680000,"y":0},{"x":1569220740000,"y":0},{"x":1569220800000,"y":0},{"x":1569220860000,"y":0},{"x":1569220920000,"y":0},{"x":1569220980000,"y":0},{"x":1569221040000,"y":0},{"x":1569221100000,"y":0},{"x":1569221160000,"y":0},{"x":1569221220000,"y":0.01},{"x":1569221280000,"y":0},{"x":1569221340000,"y":0},{"x":1569221400000,"y":0},{"x":1569221460000,"y":0},{"x":1569221520000,"y":0},{"x":1569221580000,"y":0},{"x":1569221640000,"y":0},{"x":1569221700000,"y":0},{"x":1569221760000,"y":0},{"x":1569221820000,"y":0},{"x":1569221880000,"y":0},{"x":1569221940000,"y":0},{"x":1569222000000,"y":0},{"x":1569222060000,"y":0},{"x":1569222120000,"y":0},{"x":1569222180000,"y":0},{"x":1569222240000,"y":0},{"x":1569222300000,"y":0},{"x":1569222360000,"y":0},{"x":1569222420000,"y":0},{"x":1569222480000,"y":0},{"x":1569222540000,"y":0},{"x":1569222600000,"y":0},{"x":1569222660000,"y":0},{"x":1569222720000,"y":0},{"x":1569222780000,"y":0},{"x":1569222840000,"y":0},{"x":1569222900000,"y":0},{"x":1569222960000,"y":0},{"x":1569223020000,"y":0},{"x":1569223080000,"y":0},{"x":1569223140000,"y":0.01},{"x":1569223200000,"y":0},{"x":1569223260000,"y":0},{"x":1569223320000,"y":0},{"x":1569223380000,"y":0},{"x":1569223440000,"y":0},{"x":1569223500000,"y":0},{"x":1569223560000,"y":0},{"x":1569223620000,"y":0},{"x":1569223680000,"y":0},{"x":1569223740000,"y":0},{"x":1569223800000,"y":0},{"x":1569223860000,"y":0},{"x":1569223920000,"y":0},{"x":1569223980000,"y":0.01},{"x":1569224040000,"y":0},{"x":1569224100000,"y":0},{"x":1569224160000,"y":0},{"x":1569224220000,"y":0},{"x":1569224280000,"y":0},{"x":1569224340000,"y":0},{"x":1569224400000,"y":0},{"x":1569224460000,"y":0},{"x":1569224520000,"y":0},{"x":1569224580000,"y":0},{"x":1569224640000,"y":0},{"x":1569224700000,"y":0},{"x":1569224760000,"y":0},{"x":1569224820000,"y":0.01},{"x":1569224880000,"y":0},{"x":1569224940000,"y":0},{"x":1569225000000,"y":0},{"x":1569225060000,"y":0},{"x":1569225120000,"y":0},{"x":1569225180000,"y":0},{"x":1569225240000,"y":0},{"x":1569225300000,"y":0},{"x":1569225360000,"y":0},{"x":1569225420000,"y":0},{"x":1569225480000,"y":0},{"x":1569225540000,"y":0},{"x":1569225600000,"y":0},{"x":1569225660000,"y":0},{"x":1569225720000,"y":0},{"x":1569225780000,"y":0},{"x":1569225840000,"y":0},{"x":1569225900000,"y":0},{"x":1569225960000,"y":0},{"x":1569226020000,"y":0},{"x":1569226080000,"y":0},{"x":1569226140000,"y":0},{"x":1569226200000,"y":0},{"x":1569226260000,"y":0},{"x":1569226320000,"y":0},{"x":1569226380000,"y":0},{"x":1569226440000,"y":0},{"x":1569226500000,"y":0},{"x":1569226560000,"y":0},{"x":1569226620000,"y":0},{"x":1569226680000,"y":0},{"x":1569226740000,"y":0.01},{"x":1569226800000,"y":0},{"x":1569226860000,"y":0},{"x":1569226920000,"y":0},{"x":1569226980000,"y":0},{"x":1569227040000,"y":0},{"x":1569227100000,"y":0},{"x":1569227160000,"y":0},{"x":1569227220000,"y":0.01},{"x":1569227280000,"y":0},{"x":1569227340000,"y":0},{"x":1569227400000,"y":0},{"x":1569227460000,"y":0},{"x":1569227520000,"y":0},{"x":1569227580000,"y":0},{"x":1569227640000,"y":0},{"x":1569227700000,"y":0},{"x":1569227760000,"y":0},{"x":1569227820000,"y":0},{"x":1569227880000,"y":0},{"x":1569227940000,"y":0},{"x":1569228000000,"y":0},{"x":1569228060000,"y":0},{"x":1569228120000,"y":0},{"x":1569228180000,"y":0},{"x":1569228240000,"y":0},{"x":1569228300000,"y":0},{"x":1569228360000,"y":0},{"x":1569228420000,"y":0.01},{"x":1569228480000,"y":0},{"x":1569228540000,"y":0},{"x":1569228600000,"y":0},{"x":1569228660000,"y":0},{"x":1569228720000,"y":0},{"x":1569228780000,"y":0},{"x":1569228840000,"y":0},{"x":1569228900000,"y":0},{"x":1569228960000,"y":0},{"x":1569229020000,"y":0},{"x":1569229080000,"y":0},{"x":1569229140000,"y":0},{"x":1569229200000,"y":0},{"x":1569229260000,"y":0},{"x":1569229320000,"y":0},{"x":1569229380000,"y":0},{"x":1569229440000,"y":0},{"x":1569229500000,"y":0},{"x":1569229560000,"y":0},{"x":1569229620000,"y":0},{"x":1569229680000,"y":0},{"x":1569229740000,"y":0},{"x":1569229800000,"y":0},{"x":1569229860000,"y":0},{"x":1569229920000,"y":0},{"x":1569229980000,"y":0},{"x":1569230040000,"y":0},{"x":1569230100000,"y":0},{"x":1569230160000,"y":0},{"x":1569230220000,"y":0},{"x":1569230280000,"y":0},{"x":1569230340000,"y":0.01},{"x":1569230400000,"y":0},{"x":1569230460000,"y":0},{"x":1569230520000,"y":0},{"x":1569230580000,"y":0},{"x":1569230640000,"y":0},{"x":1569230700000,"y":0},{"x":1569230760000,"y":0},{"x":1569230820000,"y":0},{"x":1569230880000,"y":0},{"x":1569230940000,"y":0},{"x":1569231000000,"y":0},{"x":1569231060000,"y":0},{"x":1569231120000,"y":0},{"x":1569231180000,"y":0},{"x":1569231240000,"y":0},{"x":1569231300000,"y":0},{"x":1569231360000,"y":0},{"x":1569231420000,"y":0},{"x":1569231480000,"y":0},{"x":1569231540000,"y":0},{"x":1569231600000,"y":0},{"x":1569231660000,"y":0},{"x":1569231720000,"y":0},{"x":1569231780000,"y":0},{"x":1569231840000,"y":0},{"x":1569231900000,"y":0},{"x":1569231960000,"y":0},{"x":1569232020000,"y":0.01},{"x":1569232080000,"y":0},{"x":1569232140000,"y":0},{"x":1569232200000,"y":0},{"x":1569232260000,"y":0},{"x":1569232320000,"y":0},{"x":1569232380000,"y":0},{"x":1569232440000,"y":0},{"x":1569232500000,"y":0},{"x":1569232560000,"y":0},{"x":1569232620000,"y":0},{"x":1569232680000,"y":0},{"x":1569232740000,"y":0},{"x":1569232800000,"y":0},{"x":1569232860000,"y":0},{"x":1569232920000,"y":0},{"x":1569232980000,"y":0},{"x":1569233040000,"y":0},{"x":1569233100000,"y":0},{"x":1569233160000,"y":0},{"x":1569233220000,"y":0},{"x":1569233280000,"y":0},{"x":1569233340000,"y":0},{"x":1569233400000,"y":0},{"x":1569233460000,"y":0},{"x":1569233520000,"y":0},{"x":1569233580000,"y":0},{"x":1569233640000,"y":0},{"x":1569233700000,"y":0},{"x":1569233760000,"y":0},{"x":1569233820000,"y":0},{"x":1569233880000,"y":0},{"x":1569233940000,"y":0.01},{"x":1569234000000,"y":0},{"x":1569234060000,"y":0},{"x":1569234120000,"y":0},{"x":1569234180000,"y":0},{"x":1569234240000,"y":0},{"x":1569234300000,"y":0},{"x":1569234360000,"y":0},{"x":1569234420000,"y":0},{"x":1569234480000,"y":0},{"x":1569234540000,"y":0},{"x":1569234600000,"y":0},{"x":1569234660000,"y":0.99},{"x":1569234720000,"y":0},{"x":1569234780000,"y":0},{"x":1569234840000,"y":0},{"x":1569234900000,"y":0},{"x":1569234960000,"y":0},{"x":1569235020000,"y":0},{"x":1569235080000,"y":0},{"x":1569235140000,"y":0},{"x":1569235200000,"y":0},{"x":1569235260000,"y":0},{"x":1569235320000,"y":0},{"x":1569235380000,"y":0},{"x":1569235440000,"y":0},{"x":1569235500000,"y":0},{"x":1569235560000,"y":0},{"x":1569235620000,"y":0.01},{"x":1569235680000,"y":0},{"x":1569235740000,"y":0},{"x":1569235800000,"y":0},{"x":1569235860000,"y":0},{"x":1569235920000,"y":0},{"x":1569235980000,"y":0},{"x":1569236040000,"y":0},{"x":1569236100000,"y":0},{"x":1569236160000,"y":0},{"x":1569236220000,"y":0},{"x":1569236280000,"y":0},{"x":1569236340000,"y":0},{"x":1569236400000,"y":0},{"x":1569236460000,"y":0},{"x":1569236520000,"y":0},{"x":1569236580000,"y":0},{"x":1569236640000,"y":0},{"x":1569236700000,"y":0},{"x":1569236760000,"y":0},{"x":1569236820000,"y":0},{"x":1569236880000,"y":0},{"x":1569236940000,"y":0},{"x":1569237000000,"y":0},{"x":1569237060000,"y":0},{"x":1569237120000,"y":0},{"x":1569237180000,"y":0.01},{"x":1569237240000,"y":0},{"x":1569237300000,"y":0},{"x":1569237360000,"y":0},{"x":1569237420000,"y":0},{"x":1569237480000,"y":0},{"x":1569237540000,"y":0.01},{"x":1569237600000,"y":0},{"x":1569237660000,"y":0},{"x":1569237720000,"y":0},{"x":1569237780000,"y":0},{"x":1569237840000,"y":0},{"x":1569237900000,"y":0},{"x":1569237960000,"y":0},{"x":1569238020000,"y":0},{"x":1569238080000,"y":0},{"x":1569238140000,"y":0},{"x":1569238200000,"y":0},{"x":1569238260000,"y":0},{"x":1569238320000,"y":0},{"x":1569238380000,"y":0},{"x":1569238440000,"y":0},{"x":1569238500000,"y":0},{"x":1569238560000,"y":0},{"x":1569238620000,"y":0},{"x":1569238680000,"y":0},{"x":1569238740000,"y":0},{"x":1569238800000,"y":0},{"x":1569238860000,"y":0},{"x":1569238920000,"y":0},{"x":1569238980000,"y":0},{"x":1569239040000,"y":0},{"x":1569239100000,"y":0},{"x":1569239160000,"y":0},{"x":1569239220000,"y":0.01},{"x":1569239280000,"y":0},{"x":1569239340000,"y":0},{"x":1569239400000,"y":0},{"x":1569239460000,"y":0},{"x":1569239520000,"y":0},{"x":1569239580000,"y":0},{"x":1569239640000,"y":0},{"x":1569239700000,"y":0},{"x":1569239760000,"y":0},{"x":1569239820000,"y":0},{"x":1569239880000,"y":0},{"x":1569239940000,"y":0},{"x":1569240000000,"y":0},{"x":1569240060000,"y":0},{"x":1569240120000,"y":0},{"x":1569240180000,"y":0},{"x":1569240240000,"y":0},{"x":1569240300000,"y":0},{"x":1569240360000,"y":0},{"x":1569240420000,"y":0},{"x":1569240480000,"y":0},{"x":1569240540000,"y":0},{"x":1569240600000,"y":0},{"x":1569240660000,"y":0},{"x":1569240720000,"y":0},{"x":1569240780000,"y":0},{"x":1569240840000,"y":0},{"x":1569240900000,"y":0},{"x":1569240960000,"y":0},{"x":1569241020000,"y":0},{"x":1569241080000,"y":0},{"x":1569241140000,"y":0.01},{"x":1569241200000,"y":0},{"x":1569241260000,"y":0},{"x":1569241320000,"y":0},{"x":1569241380000,"y":0},{"x":1569241440000,"y":0},{"x":1569241500000,"y":0},{"x":1569241560000,"y":0},{"x":1569241620000,"y":0},{"x":1569241680000,"y":0.01},{"x":1569241740000,"y":0.01},{"x":1569241800000,"y":0},{"x":1569241860000,"y":0},{"x":1569241920000,"y":0},{"x":1569241980000,"y":0},{"x":1569242040000,"y":0},{"x":1569242100000,"y":0},{"x":1569242160000,"y":0},{"x":1569242220000,"y":0},{"x":1569242280000,"y":0},{"x":1569242340000,"y":0},{"x":1569242400000,"y":0},{"x":1569242460000,"y":0},{"x":1569242520000,"y":0},{"x":1569242580000,"y":0},{"x":1569242640000,"y":0},{"x":1569242700000,"y":0},{"x":1569242760000,"y":0},{"x":1569242820000,"y":0.01},{"x":1569242880000,"y":0},{"x":1569242940000,"y":0},{"x":1569243000000,"y":0},{"x":1569243060000,"y":0},{"x":1569243120000,"y":0},{"x":1569243180000,"y":0},{"x":1569243240000,"y":0},{"x":1569243300000,"y":0},{"x":1569243360000,"y":0},{"x":1569243420000,"y":0.02},{"x":1569243480000,"y":0},{"x":1569243540000,"y":0},{"x":1569243600000,"y":0},{"x":1569243660000,"y":0},{"x":1569243720000,"y":0},{"x":1569243780000,"y":0},{"x":1569243840000,"y":0},{"x":1569243900000,"y":0},{"x":1569243960000,"y":0},{"x":1569244020000,"y":0},{"x":1569244080000,"y":0},{"x":1569244140000,"y":0},{"x":1569244200000,"y":0},{"x":1569244260000,"y":0},{"x":1569244320000,"y":0},{"x":1569244380000,"y":0},{"x":1569244440000,"y":0},{"x":1569244500000,"y":0},{"x":1569244560000,"y":0},{"x":1569244620000,"y":0},{"x":1569244680000,"y":0},{"x":1569244740000,"y":0.01},{"x":1569244800000,"y":0},{"x":1569244860000,"y":0},{"x":1569244920000,"y":0},{"x":1569244980000,"y":0},{"x":1569245040000,"y":0},{"x":1569245100000,"y":0},{"x":1569245160000,"y":0},{"x":1569245220000,"y":0},{"x":1569245280000,"y":0},{"x":1569245340000,"y":0},{"x":1569245400000,"y":0},{"x":1569245460000,"y":0},{"x":1569245520000,"y":0},{"x":1569245580000,"y":0},{"x":1569245640000,"y":0},{"x":1569245700000,"y":0},{"x":1569245760000,"y":0},{"x":1569245820000,"y":0},{"x":1569245880000,"y":0},{"x":1569245940000,"y":0},{"x":1569246000000,"y":0},{"x":1569246060000,"y":0},{"x":1569246120000,"y":0},{"x":1569246180000,"y":0},{"x":1569246240000,"y":0},{"x":1569246300000,"y":0},{"x":1569246360000,"y":0},{"x":1569246420000,"y":0.01},{"x":1569246480000,"y":0},{"x":1569246540000,"y":0},{"x":1569246600000,"y":0.01},{"x":1569246660000,"y":0},{"x":1569246720000,"y":0},{"x":1569246780000,"y":0},{"x":1569246840000,"y":0},{"x":1569246900000,"y":0},{"x":1569246960000,"y":0},{"x":1569247020000,"y":0},{"x":1569247080000,"y":0},{"x":1569247140000,"y":0},{"x":1569247200000,"y":0},{"x":1569247260000,"y":0},{"x":1569247320000,"y":0},{"x":1569247380000,"y":0},{"x":1569247440000,"y":0},{"x":1569247500000,"y":0},{"x":1569247560000,"y":0},{"x":1569247620000,"y":0},{"x":1569247680000,"y":0},{"x":1569247740000,"y":0},{"x":1569247800000,"y":0},{"x":1569247860000,"y":0},{"x":1569247920000,"y":0.01},{"x":1569247980000,"y":0},{"x":1569248040000,"y":0},{"x":1569248100000,"y":0},{"x":1569248160000,"y":0},{"x":1569248220000,"y":0},{"x":1569248280000,"y":0},{"x":1569248340000,"y":0.01},{"x":1569248400000,"y":0},{"x":1569248460000,"y":0},{"x":1569248520000,"y":0},{"x":1569248580000,"y":0},{"x":1569248640000,"y":0},{"x":1569248700000,"y":0},{"x":1569248760000,"y":0},{"x":1569248820000,"y":0},{"x":1569248880000,"y":0},{"x":1569248940000,"y":0},{"x":1569249000000,"y":0.08},{"x":1569249060000,"y":0},{"x":1569249120000,"y":0},{"x":1569249180000,"y":0},{"x":1569249240000,"y":0},{"x":1569249300000,"y":0},{"x":1569249360000,"y":0},{"x":1569249420000,"y":0},{"x":1569249480000,"y":0},{"x":1569249540000,"y":0},{"x":1569249600000,"y":0.01},{"x":1569249660000,"y":0},{"x":1569249720000,"y":0},{"x":1569249780000,"y":0},{"x":1569249840000,"y":0},{"x":1569249900000,"y":0},{"x":1569249960000,"y":0},{"x":1569250020000,"y":0.01},{"x":1569250080000,"y":0},{"x":1569250140000,"y":0},{"x":1569250200000,"y":0},{"x":1569250260000,"y":0},{"x":1569250320000,"y":0},{"x":1569250380000,"y":0},{"x":1569250440000,"y":0},{"x":1569250500000,"y":0},{"x":1569250560000,"y":0},{"x":1569250620000,"y":0},{"x":1569250680000,"y":0},{"x":1569250740000,"y":0},{"x":1569250800000,"y":0},{"x":1569250860000,"y":0},{"x":1569250920000,"y":0},{"x":1569250980000,"y":0},{"x":1569251040000,"y":0},{"x":1569251100000,"y":0},{"x":1569251160000,"y":0},{"x":1569251220000,"y":0},{"x":1569251280000,"y":0},{"x":1569251340000,"y":0},{"x":1569251400000,"y":0},{"x":1569251460000,"y":0},{"x":1569251520000,"y":0},{"x":1569251580000,"y":0.09},{"x":1569251640000,"y":0.03},{"x":1569251700000,"y":0.04},{"x":1569251760000,"y":0},{"x":1569251820000,"y":0},{"x":1569251880000,"y":1.15},{"x":1569251940000,"y":1.78},{"x":1569252000000,"y":0.01},{"x":1569252060000,"y":0},{"x":1569252120000,"y":0},{"x":1569252180000,"y":0},{"x":1569252240000,"y":0},{"x":1569252300000,"y":0},{"x":1569252360000,"y":0},{"x":1569252420000,"y":0},{"x":1569252480000,"y":0},{"x":1569252540000,"y":0},{"x":1569252600000,"y":0},{"x":1569252660000,"y":0},{"x":1569252720000,"y":0},{"x":1569252780000,"y":0},{"x":1569252840000,"y":0},{"x":1569252900000,"y":0},{"x":1569252960000,"y":0},{"x":1569253020000,"y":0},{"x":1569253080000,"y":0},{"x":1569253140000,"y":0},{"x":1569253200000,"y":0},{"x":1569253260000,"y":0},{"x":1569253320000,"y":0},{"x":1569253380000,"y":0},{"x":1569253440000,"y":0},{"x":1569253500000,"y":0},{"x":1569253560000,"y":0},{"x":1569253620000,"y":0},{"x":1569253680000,"y":0},{"x":1569253740000,"y":0},{"x":1569253800000,"y":0},{"x":1569253860000,"y":0},{"x":1569253920000,"y":0},{"x":1569253980000,"y":0},{"x":1569254040000,"y":0},{"x":1569254100000,"y":0},{"x":1569254160000,"y":0},{"x":1569254220000,"y":0},{"x":1569254280000,"y":0},{"x":1569254340000,"y":0},{"x":1569254400000,"y":0},{"x":1569254460000,"y":0},{"x":1569254520000,"y":0},{"x":1569254580000,"y":0},{"x":1569254640000,"y":0},{"x":1569254700000,"y":0},{"x":1569254760000,"y":0},{"x":1569254820000,"y":0},{"x":1569254880000,"y":0},{"x":1569254940000,"y":0},{"x":1569255000000,"y":0},{"x":1569255060000,"y":0},{"x":1569255120000,"y":0},{"x":1569255180000,"y":0},{"x":1569255240000,"y":0},{"x":1569255300000,"y":0},{"x":1569255360000,"y":0},{"x":1569255420000,"y":0},{"x":1569255480000,"y":0},{"x":1569255540000,"y":0},{"x":1569255600000,"y":0},{"x":1569255660000,"y":0},{"x":1569255720000,"y":0},{"x":1569255780000,"y":0},{"x":1569255840000,"y":0},{"x":1569255900000,"y":0},{"x":1569255960000,"y":0},{"x":1569256020000,"y":0},{"x":1569256080000,"y":0},{"x":1569256140000,"y":0},{"x":1569256200000,"y":0},{"x":1569256260000,"y":0},{"x":1569256320000,"y":0},{"x":1569256380000,"y":0},{"x":1569256440000,"y":0},{"x":1569256500000,"y":0},{"x":1569256560000,"y":0},{"x":1569256620000,"y":2.39},{"x":1569256680000,"y":0},{"x":1569256740000,"y":0},{"x":1569256800000,"y":0},{"x":1569256860000,"y":0},{"x":1569256920000,"y":0},{"x":1569256980000,"y":0},{"x":1569257040000,"y":0},{"x":1569257100000,"y":0},{"x":1569257160000,"y":0},{"x":1569257220000,"y":0},{"x":1569257280000,"y":0},{"x":1569257340000,"y":0},{"x":1569257400000,"y":0},{"x":1569257460000,"y":0},{"x":1569257520000,"y":0},{"x":1569257580000,"y":0},{"x":1569257640000,"y":2.35},{"x":1569257700000,"y":0.01},{"x":1569257760000,"y":0},{"x":1569257820000,"y":0},{"x":1569257880000,"y":0},{"x":1569257940000,"y":0},{"x":1569258000000,"y":0.53},{"x":1569258060000,"y":7.19},{"x":1569258120000,"y":36.57},{"x":1569258180000,"y":56.96},{"x":1569258240000,"y":15.67},{"x":1569258300000,"y":0.11},{"x":1569258360000,"y":0.04},{"x":1569258420000,"y":0.05},{"x":1569258480000,"y":0.07},{"x":1569258540000,"y":0.1},{"x":1569258600000,"y":0.06},{"x":1569258660000,"y":0},{"x":1569258720000,"y":0.28},{"x":1569258780000,"y":0.16},{"x":1569258840000,"y":3.88},{"x":1569258900000,"y":4.41},{"x":1569258960000,"y":4.1},{"x":1569259020000,"y":0.01},{"x":1569259080000,"y":0},{"x":1569259140000,"y":0.01},{"x":1569259200000,"y":0},{"x":1569259260000,"y":0.01},{"x":1569259320000,"y":0},{"x":1569259380000,"y":0},{"x":1569259440000,"y":0},{"x":1569259500000,"y":0},{"x":1569259560000,"y":0},{"x":1569259620000,"y":0.01},{"x":1569259680000,"y":0},{"x":1569259740000,"y":0},{"x":1569259800000,"y":0},{"x":1569259860000,"y":0},{"x":1569259920000,"y":0},{"x":1569259980000,"y":0},{"x":1569260040000,"y":0.01},{"x":1569260100000,"y":0},{"x":1569260160000,"y":0},{"x":1569260220000,"y":0},{"x":1569260280000,"y":0},{"x":1569260340000,"y":0},{"x":1569260400000,"y":0},{"x":1569260460000,"y":0},{"x":1569260520000,"y":0},{"x":1569260580000,"y":0},{"x":1569260640000,"y":0},{"x":1569260700000,"y":0},{"x":1569260760000,"y":0},{"x":1569260820000,"y":0},{"x":1569260880000,"y":0},{"x":1569260940000,"y":0},{"x":1569261000000,"y":0},{"x":1569261060000,"y":0},{"x":1569261120000,"y":0},{"x":1569261180000,"y":6.26},{"x":1569261240000,"y":0.97},{"x":1569261300000,"y":0},{"x":1569261360000,"y":0},{"x":1569261420000,"y":0},{"x":1569261480000,"y":0},{"x":1569261540000,"y":0},{"x":1569261600000,"y":0},{"x":1569261660000,"y":0.39},{"x":1569261720000,"y":0},{"x":1569261780000,"y":4.63},{"x":1569261840000,"y":0.05},{"x":1569261900000,"y":0},{"x":1569261960000,"y":0},{"x":1569262020000,"y":0},{"x":1569262080000,"y":0.01},{"x":1569262140000,"y":0},{"x":1569262200000,"y":0},{"x":1569262260000,"y":0},{"x":1569262320000,"y":0},{"x":1569262380000,"y":0},{"x":1569262440000,"y":0.01},{"x":1569262500000,"y":0},{"x":1569262560000,"y":0},{"x":1569262620000,"y":0},{"x":1569262680000,"y":0},{"x":1569262740000,"y":0},{"x":1569262800000,"y":0},{"x":1569262860000,"y":3.46},{"x":1569262920000,"y":0},{"x":1569262980000,"y":0},{"x":1569263040000,"y":0},{"x":1569263100000,"y":0},{"x":1569263160000,"y":0},{"x":1569263220000,"y":0},{"x":1569263280000,"y":0},{"x":1569263340000,"y":0},{"x":1569263400000,"y":0},{"x":1569263460000,"y":0.12},{"x":1569263520000,"y":2.97},{"x":1569263580000,"y":0.11},{"x":1569263640000,"y":0.01},{"x":1569263700000,"y":0},{"x":1569263760000,"y":0.05},{"x":1569263820000,"y":0.02},{"x":1569263880000,"y":0},{"x":1569263940000,"y":0},{"x":1569264000000,"y":0.03},{"x":1569264060000,"y":0},{"x":1569264120000,"y":0},{"x":1569264180000,"y":0},{"x":1569264240000,"y":0},{"x":1569264300000,"y":0},{"x":1569264360000,"y":0},{"x":1569264420000,"y":0},{"x":1569264480000,"y":0},{"x":1569264540000,"y":0},{"x":1569264600000,"y":3.15},{"x":1569264660000,"y":0.06},{"x":1569264720000,"y":0},{"x":1569264780000,"y":0},{"x":1569264840000,"y":0},{"x":1569264900000,"y":0},{"x":1569264960000,"y":0},{"x":1569265020000,"y":0},{"x":1569265080000,"y":0},{"x":1569265140000,"y":0},{"x":1569265200000,"y":0},{"x":1569265260000,"y":0},{"x":1569265320000,"y":0},{"x":1569265380000,"y":0},{"x":1569265440000,"y":0},{"x":1569265500000,"y":0},{"x":1569265560000,"y":0.02},{"x":1569265620000,"y":0},{"x":1569265680000,"y":0},{"x":1569265740000,"y":0},{"x":1569265800000,"y":0},{"x":1569265860000,"y":0},{"x":1569265920000,"y":0},{"x":1569265980000,"y":0},{"x":1569266040000,"y":0},{"x":1569266100000,"y":0},{"x":1569266160000,"y":0},{"x":1569266220000,"y":0},{"x":1569266280000,"y":0},{"x":1569266340000,"y":0},{"x":1569266400000,"y":0},{"x":1569266460000,"y":0},{"x":1569266520000,"y":0},{"x":1569266580000,"y":0},{"x":1569266640000,"y":0},{"x":1569266700000,"y":0},{"x":1569266760000,"y":0},{"x":1569266820000,"y":0},{"x":1569266880000,"y":0},{"x":1569266940000,"y":0},{"x":1569267000000,"y":0},{"x":1569267060000,"y":0},{"x":1569267120000,"y":0},{"x":1569267180000,"y":0},{"x":1569267240000,"y":0},{"x":1569267300000,"y":0},{"x":1569267360000,"y":0},{"x":1569267420000,"y":0},{"x":1569267480000,"y":0},{"x":1569267540000,"y":0},{"x":1569267600000,"y":0},{"x":1569267660000,"y":0},{"x":1569267720000,"y":0},{"x":1569267780000,"y":0},{"x":1569267840000,"y":0},{"x":1569267900000,"y":0},{"x":1569267960000,"y":0},{"x":1569268020000,"y":0.01},{"x":1569268080000,"y":0},{"x":1569268140000,"y":0},{"x":1569268200000,"y":0},{"x":1569268260000,"y":0},{"x":1569268320000,"y":0},{"x":1569268380000,"y":0},{"x":1569268440000,"y":0},{"x":1569268500000,"y":0},{"x":1569268560000,"y":0},{"x":1569268620000,"y":0},{"x":1569268680000,"y":0},{"x":1569268740000,"y":0},{"x":1569268800000,"y":0},{"x":1569268860000,"y":0},{"x":1569268920000,"y":0},{"x":1569268980000,"y":0},{"x":1569269040000,"y":0},{"x":1569269100000,"y":0},{"x":1569269160000,"y":0},{"x":1569269220000,"y":0},{"x":1569269280000,"y":0},{"x":1569269340000,"y":0},{"x":1569269400000,"y":0},{"x":1569269460000,"y":0},{"x":1569269520000,"y":0},{"x":1569269580000,"y":0},{"x":1569269640000,"y":0},{"x":1569269700000,"y":0},{"x":1569269760000,"y":0},{"x":1569269820000,"y":0},{"x":1569269880000,"y":0},{"x":1569269940000,"y":0},{"x":1569270000000,"y":0},{"x":1569270060000,"y":0},{"x":1569270120000,"y":0},{"x":1569270180000,"y":0},{"x":1569270240000,"y":0},{"x":1569270300000,"y":0},{"x":1569270360000,"y":0},{"x":1569270420000,"y":0},{"x":1569270480000,"y":1.43},{"x":1569270540000,"y":0.07},{"x":1569270600000,"y":0.02},{"x":1569270660000,"y":0.01},{"x":1569270720000,"y":0.04},{"x":1569270780000,"y":0},{"x":1569270840000,"y":0},{"x":1569270900000,"y":0.13},{"x":1569270960000,"y":0.01},{"x":1569271020000,"y":0},{"x":1569271080000,"y":0},{"x":1569271140000,"y":0},{"x":1569271200000,"y":0},{"x":1569271260000,"y":0},{"x":1569271320000,"y":0},{"x":1569271380000,"y":0},{"x":1569271440000,"y":0},{"x":1569271500000,"y":0},{"x":1569271560000,"y":0},{"x":1569271620000,"y":0},{"x":1569271680000,"y":0},{"x":1569271740000,"y":1.17},{"x":1569271800000,"y":0},{"x":1569271860000,"y":1.6},{"x":1569271920000,"y":0.59},{"x":1569271980000,"y":0},{"x":1569272040000,"y":0},{"x":1569272100000,"y":0},{"x":1569272160000,"y":0},{"x":1569272220000,"y":0},{"x":1569272280000,"y":0},{"x":1569272340000,"y":0},{"x":1569272400000,"y":0},{"x":1569272460000,"y":0},{"x":1569272520000,"y":0},{"x":1569272580000,"y":0},{"x":1569272640000,"y":0},{"x":1569272700000,"y":0.01},{"x":1569272760000,"y":0},{"x":1569272820000,"y":0},{"x":1569272880000,"y":0},{"x":1569272940000,"y":0},{"x":1569273000000,"y":0},{"x":1569273060000,"y":0},{"x":1569273120000,"y":0},{"x":1569273180000,"y":0},{"x":1569273240000,"y":0},{"x":1569273300000,"y":0},{"x":1569273360000,"y":0},{"x":1569273420000,"y":0},{"x":1569273480000,"y":0},{"x":1569273540000,"y":0},{"x":1569273600000,"y":0},{"x":1569273660000,"y":0},{"x":1569273720000,"y":0},{"x":1569273780000,"y":0},{"x":1569273840000,"y":0},{"x":1569273900000,"y":0},{"x":1569273960000,"y":0},{"x":1569274020000,"y":0},{"x":1569274080000,"y":0},{"x":1569274140000,"y":0},{"x":1569274200000,"y":0},{"x":1569274260000,"y":0},{"x":1569274320000,"y":0},{"x":1569274380000,"y":0},{"x":1569274440000,"y":0},{"x":1569274500000,"y":0},{"x":1569274560000,"y":0.01},{"x":1569274620000,"y":0},{"x":1569274680000,"y":0},{"x":1569274740000,"y":0},{"x":1569274800000,"y":0},{"x":1569274860000,"y":0},{"x":1569274920000,"y":0},{"x":1569274980000,"y":0},{"x":1569275040000,"y":0},{"x":1569275100000,"y":0.12},{"x":1569275160000,"y":0},{"x":1569275220000,"y":0},{"x":1569275280000,"y":0},{"x":1569275340000,"y":0},{"x":1569275400000,"y":0},{"x":1569275460000,"y":0},{"x":1569275520000,"y":0},{"x":1569275580000,"y":0},{"x":1569275640000,"y":0},{"x":1569275700000,"y":0},{"x":1569275760000,"y":0},{"x":1569275820000,"y":0},{"x":1569275880000,"y":0},{"x":1569275940000,"y":0},{"x":1569276000000,"y":0},{"x":1569276060000,"y":0},{"x":1569276120000,"y":0},{"x":1569276180000,"y":0},{"x":1569276240000,"y":0},{"x":1569276300000,"y":0},{"x":1569276360000,"y":0},{"x":1569276420000,"y":0},{"x":1569276480000,"y":0},{"x":1569276540000,"y":0},{"x":1569276600000,"y":0},{"x":1569276660000,"y":0},{"x":1569276720000,"y":0},{"x":1569276780000,"y":0},{"x":1569276840000,"y":0},{"x":1569276900000,"y":0},{"x":1569276960000,"y":0.01},{"x":1569277020000,"y":0},{"x":1569277080000,"y":0},{"x":1569277140000,"y":0},{"x":1569277200000,"y":0},{"x":1569277260000,"y":0},{"x":1569277320000,"y":0},{"x":1569277380000,"y":0},{"x":1569277440000,"y":0},{"x":1569277500000,"y":0},{"x":1569277560000,"y":0},{"x":1569277620000,"y":0},{"x":1569277680000,"y":0.06},{"x":1569277740000,"y":0},{"x":1569277800000,"y":0},{"x":1569277860000,"y":0},{"x":1569277920000,"y":0},{"x":1569277980000,"y":0},{"x":1569278040000,"y":0},{"x":1569278100000,"y":0},{"x":1569278160000,"y":0},{"x":1569278220000,"y":0.01},{"x":1569278280000,"y":0},{"x":1569278340000,"y":0},{"x":1569278400000,"y":0},{"x":1569278460000,"y":0},{"x":1569278520000,"y":0},{"x":1569278580000,"y":0},{"x":1569278640000,"y":0},{"x":1569278700000,"y":0},{"x":1569278760000,"y":0},{"x":1569278820000,"y":0},{"x":1569278880000,"y":0},{"x":1569278940000,"y":0},{"x":1569279000000,"y":0},{"x":1569279060000,"y":0},{"x":1569279120000,"y":0},{"x":1569279180000,"y":0},{"x":1569279240000,"y":0},{"x":1569279300000,"y":0},{"x":1569279360000,"y":0},{"x":1569279420000,"y":0},{"x":1569279480000,"y":0},{"x":1569279540000,"y":0},{"x":1569279600000,"y":0},{"x":1569279660000,"y":0},{"x":1569279720000,"y":0},{"x":1569279780000,"y":0},{"x":1569279840000,"y":0},{"x":1569279900000,"y":0},{"x":1569279960000,"y":0},{"x":1569280020000,"y":0},{"x":1569280080000,"y":0},{"x":1569280140000,"y":0},{"x":1569280200000,"y":0},{"x":1569280260000,"y":0},{"x":1569280320000,"y":0},{"x":1569280380000,"y":0},{"x":1569280440000,"y":0},{"x":1569280500000,"y":0},{"x":1569280560000,"y":0},{"x":1569280620000,"y":0},{"x":1569280680000,"y":0},{"x":1569280740000,"y":0},{"x":1569280800000,"y":0},{"x":1569280860000,"y":0},{"x":1569280920000,"y":0},{"x":1569280980000,"y":0.01},{"x":1569281040000,"y":0},{"x":1569281100000,"y":0},{"x":1569281160000,"y":0},{"x":1569281220000,"y":0},{"x":1569281280000,"y":0},{"x":1569281340000,"y":0},{"x":1569281400000,"y":0},{"x":1569281460000,"y":0},{"x":1569281520000,"y":0},{"x":1569281580000,"y":0},{"x":1569281640000,"y":0},{"x":1569281700000,"y":0},{"x":1569281760000,"y":0},{"x":1569281820000,"y":0},{"x":1569281880000,"y":0},{"x":1569281940000,"y":0},{"x":1569282000000,"y":0},{"x":1569282060000,"y":0},{"x":1569282120000,"y":0},{"x":1569282180000,"y":0},{"x":1569282240000,"y":0},{"x":1569282300000,"y":0},{"x":1569282360000,"y":0},{"x":1569282420000,"y":0},{"x":1569282480000,"y":0},{"x":1569282540000,"y":0},{"x":1569282600000,"y":0},{"x":1569282660000,"y":0},{"x":1569282720000,"y":0},{"x":1569282780000,"y":0},{"x":1569282840000,"y":0},{"x":1569282900000,"y":0},{"x":1569282960000,"y":0},{"x":1569283020000,"y":0},{"x":1569283080000,"y":0},{"x":1569283140000,"y":0},{"x":1569283200000,"y":0},{"x":1569283260000,"y":0},{"x":1569283320000,"y":0},{"x":1569283380000,"y":0},{"x":1569283440000,"y":0},{"x":1569283500000,"y":0},{"x":1569283560000,"y":0},{"x":1569283620000,"y":0},{"x":1569283680000,"y":0},{"x":1569283740000,"y":0},{"x":1569283800000,"y":0},{"x":1569283860000,"y":0},{"x":1569283920000,"y":0},{"x":1569283980000,"y":0},{"x":1569284040000,"y":0},{"x":1569284100000,"y":0},{"x":1569284160000,"y":0},{"x":1569284220000,"y":0},{"x":1569284280000,"y":0},{"x":1569284340000,"y":0},{"x":1569284400000,"y":0},{"x":1569284460000,"y":0},{"x":1569284520000,"y":0},{"x":1569284580000,"y":0},{"x":1569284640000,"y":0},{"x":1569284700000,"y":0},{"x":1569284760000,"y":0},{"x":1569284820000,"y":0},{"x":1569284880000,"y":0},{"x":1569284940000,"y":0},{"x":1569285000000,"y":0},{"x":1569285060000,"y":0},{"x":1569285120000,"y":0},{"x":1569285180000,"y":0},{"x":1569285240000,"y":0},{"x":1569285300000,"y":0.02},{"x":1569285360000,"y":0},{"x":1569285420000,"y":0},{"x":1569285480000,"y":0},{"x":1569285540000,"y":0},{"x":1569285600000,"y":0},{"x":1569285660000,"y":0},{"x":1569285720000,"y":0},{"x":1569285780000,"y":0},{"x":1569285840000,"y":0},{"x":1569285900000,"y":0},{"x":1569285960000,"y":0},{"x":1569286020000,"y":0},{"x":1569286080000,"y":0},{"x":1569286140000,"y":0},{"x":1569286200000,"y":0},{"x":1569286260000,"y":0},{"x":1569286320000,"y":0.01},{"x":1569286380000,"y":0},{"x":1569286440000,"y":0},{"x":1569286500000,"y":0},{"x":1569286560000,"y":0},{"x":1569286620000,"y":0},{"x":1569286680000,"y":0},{"x":1569286740000,"y":0},{"x":1569286800000,"y":0},{"x":1569286860000,"y":0},{"x":1569286920000,"y":0},{"x":1569286980000,"y":0},{"x":1569287040000,"y":0},{"x":1569287100000,"y":0},{"x":1569287160000,"y":0},{"x":1569287220000,"y":0},{"x":1569287280000,"y":0},{"x":1569287340000,"y":0},{"x":1569287400000,"y":0},{"x":1569287460000,"y":0},{"x":1569287520000,"y":0},{"x":1569287580000,"y":0},{"x":1569287640000,"y":0},{"x":1569287700000,"y":0},{"x":1569287760000,"y":0},{"x":1569287820000,"y":0},{"x":1569287880000,"y":0},{"x":1569287940000,"y":0},{"x":1569288000000,"y":0},{"x":1569288060000,"y":0},{"x":1569288120000,"y":0},{"x":1569288180000,"y":0},{"x":1569288240000,"y":0},{"x":1569288300000,"y":0},{"x":1569288360000,"y":0},{"x":1569288420000,"y":0},{"x":1569288480000,"y":0},{"x":1569288540000,"y":0},{"x":1569288600000,"y":0},{"x":1569288660000,"y":0},{"x":1569288720000,"y":0},{"x":1569288780000,"y":0},{"x":1569288840000,"y":0},{"x":1569288900000,"y":0},{"x":1569288960000,"y":0},{"x":1569289020000,"y":0},{"x":1569289080000,"y":0},{"x":1569289140000,"y":0},{"x":1569289200000,"y":0},{"x":1569289260000,"y":0},{"x":1569289320000,"y":0},{"x":1569289380000,"y":0.02},{"x":1569289440000,"y":0},{"x":1569289500000,"y":0},{"x":1569289560000,"y":0},{"x":1569289620000,"y":0},{"x":1569289680000,"y":0},{"x":1569289740000,"y":0},{"x":1569289800000,"y":0},{"x":1569289860000,"y":0},{"x":1569289920000,"y":0},{"x":1569289980000,"y":0},{"x":1569290040000,"y":0},{"x":1569290100000,"y":0},{"x":1569290160000,"y":0},{"x":1569290220000,"y":0},{"x":1569290280000,"y":0},{"x":1569290340000,"y":0},{"x":1569290400000,"y":0},{"x":1569290460000,"y":0},{"x":1569290520000,"y":0},{"x":1569290580000,"y":0},{"x":1569290640000,"y":0},{"x":1569290700000,"y":0},{"x":1569290760000,"y":0},{"x":1569290820000,"y":0},{"x":1569290880000,"y":0},{"x":1569290940000,"y":0},{"x":1569291000000,"y":0},{"x":1569291060000,"y":0},{"x":1569291120000,"y":0},{"x":1569291180000,"y":0},{"x":1569291240000,"y":0},{"x":1569291300000,"y":0},{"x":1569291360000,"y":0},{"x":1569291420000,"y":0},{"x":1569291480000,"y":0},{"x":1569291540000,"y":0},{"x":1569291600000,"y":0},{"x":1569291660000,"y":0},{"x":1569291720000,"y":0},{"x":1569291780000,"y":0},{"x":1569291840000,"y":0},{"x":1569291900000,"y":0},{"x":1569291960000,"y":0},{"x":1569292020000,"y":0},{"x":1569292080000,"y":0},{"x":1569292140000,"y":0},{"x":1569292200000,"y":0},{"x":1569292260000,"y":0},{"x":1569292320000,"y":0},{"x":1569292380000,"y":0},{"x":1569292440000,"y":0},{"x":1569292500000,"y":0},{"x":1569292560000,"y":0},{"x":1569292620000,"y":0},{"x":1569292680000,"y":0},{"x":1569292740000,"y":0},{"x":1569292800000,"y":0},{"x":1569292860000,"y":0},{"x":1569292920000,"y":0},{"x":1569292980000,"y":0},{"x":1569293040000,"y":0},{"x":1569293100000,"y":0},{"x":1569293160000,"y":0},{"x":1569293220000,"y":0},{"x":1569293280000,"y":0},{"x":1569293340000,"y":0},{"x":1569293400000,"y":0},{"x":1569293460000,"y":0},{"x":1569293520000,"y":0},{"x":1569293580000,"y":0},{"x":1569293640000,"y":0},{"x":1569293700000,"y":0},{"x":1569293760000,"y":0},{"x":1569293820000,"y":0},{"x":1569293880000,"y":0},{"x":1569293940000,"y":0},{"x":1569294000000,"y":0},{"x":1569294060000,"y":0},{"x":1569294120000,"y":0},{"x":1569294180000,"y":0},{"x":1569294240000,"y":0},{"x":1569294300000,"y":0},{"x":1569294360000,"y":0},{"x":1569294420000,"y":0},{"x":1569294480000,"y":0},{"x":1569294540000,"y":0},{"x":1569294600000,"y":0},{"x":1569294660000,"y":0},{"x":1569294720000,"y":0},{"x":1569294780000,"y":0},{"x":1569294840000,"y":0},{"x":1569294900000,"y":0},{"x":1569294960000,"y":0},{"x":1569295020000,"y":0},{"x":1569295080000,"y":0.01},{"x":1569295140000,"y":0.01},{"x":1569295200000,"y":0},{"x":1569295260000,"y":0},{"x":1569295320000,"y":0},{"x":1569295380000,"y":0},{"x":1569295440000,"y":0},{"x":1569295500000,"y":0},{"x":1569295560000,"y":0},{"x":1569295620000,"y":0},{"x":1569295680000,"y":0},{"x":1569295740000,"y":0},{"x":1569295800000,"y":0},{"x":1569295860000,"y":0},{"x":1569295920000,"y":0},{"x":1569295980000,"y":0},{"x":1569296040000,"y":0},{"x":1569296100000,"y":0},{"x":1569296160000,"y":0},{"x":1569296220000,"y":0},{"x":1569296280000,"y":0},{"x":1569296340000,"y":0},{"x":1569296400000,"y":0},{"x":1569296460000,"y":0},{"x":1569296520000,"y":0},{"x":1569296580000,"y":0},{"x":1569296640000,"y":0},{"x":1569296700000,"y":0},{"x":1569296760000,"y":0},{"x":1569296820000,"y":0},{"x":1569296880000,"y":0},{"x":1569296940000,"y":0},{"x":1569297000000,"y":0},{"x":1569297060000,"y":0},{"x":1569297120000,"y":0},{"x":1569297180000,"y":0},{"x":1569297240000,"y":0},{"x":1569297300000,"y":0},{"x":1569297360000,"y":0},{"x":1569297420000,"y":0},{"x":1569297480000,"y":0},{"x":1569297540000,"y":0},{"x":1569297600000,"y":0},{"x":1569297660000,"y":0},{"x":1569297720000,"y":0},{"x":1569297780000,"y":0},{"x":1569297840000,"y":0},{"x":1569297900000,"y":0},{"x":1569297960000,"y":0},{"x":1569298020000,"y":0},{"x":1569298080000,"y":0},{"x":1569298140000,"y":0.02},{"x":1569298200000,"y":0},{"x":1569298260000,"y":0},{"x":1569298320000,"y":0},{"x":1569298380000,"y":0},{"x":1569298440000,"y":0},{"x":1569298500000,"y":0},{"x":1569298560000,"y":0},{"x":1569298620000,"y":0},{"x":1569298680000,"y":0.03},{"x":1569298740000,"y":0},{"x":1569298800000,"y":0},{"x":1569298860000,"y":0},{"x":1569298920000,"y":0},{"x":1569298980000,"y":0},{"x":1569299040000,"y":0},{"x":1569299100000,"y":0},{"x":1569299160000,"y":0},{"x":1569299220000,"y":0},{"x":1569299280000,"y":0},{"x":1569299340000,"y":0},{"x":1569299400000,"y":0},{"x":1569299460000,"y":0},{"x":1569299520000,"y":0},{"x":1569299580000,"y":0},{"x":1569299640000,"y":0},{"x":1569299700000,"y":0},{"x":1569299760000,"y":0},{"x":1569299820000,"y":0},{"x":1569299880000,"y":0},{"x":1569299940000,"y":0},{"x":1569300000000,"y":0.01},{"x":1569300060000,"y":0},{"x":1569300120000,"y":0},{"x":1569300180000,"y":0},{"x":1569300240000,"y":0},{"x":1569300300000,"y":0},{"x":1569300360000,"y":0},{"x":1569300420000,"y":0},{"x":1569300480000,"y":0},{"x":1569300540000,"y":0},{"x":1569300600000,"y":0},{"x":1569300660000,"y":0},{"x":1569300720000,"y":0},{"x":1569300780000,"y":0},{"x":1569300840000,"y":0},{"x":1569300900000,"y":0},{"x":1569300960000,"y":0},{"x":1569301020000,"y":0},{"x":1569301080000,"y":0},{"x":1569301140000,"y":0},{"x":1569301200000,"y":0},{"x":1569301260000,"y":0},{"x":1569301320000,"y":0},{"x":1569301380000,"y":0},{"x":1569301440000,"y":0},{"x":1569301500000,"y":0},{"x":1569301560000,"y":0},{"x":1569301620000,"y":0},{"x":1569301680000,"y":0},{"x":1569301740000,"y":0},{"x":1569301800000,"y":0},{"x":1569301860000,"y":0},{"x":1569301920000,"y":0},{"x":1569301980000,"y":0},{"x":1569302040000,"y":0},{"x":1569302100000,"y":0},{"x":1569302160000,"y":0},{"x":1569302220000,"y":0},{"x":1569302280000,"y":0},{"x":1569302340000,"y":0},{"x":1569302400000,"y":0},{"x":1569302460000,"y":0},{"x":1569302520000,"y":0},{"x":1569302580000,"y":0.01},{"x":1569302640000,"y":0},{"x":1569302700000,"y":0},{"x":1569302760000,"y":0},{"x":1569302820000,"y":0},{"x":1569302880000,"y":0},{"x":1569302940000,"y":0},{"x":1569303000000,"y":0},{"x":1569303060000,"y":0},{"x":1569303120000,"y":0},{"x":1569303180000,"y":0.01},{"x":1569303240000,"y":0},{"x":1569303300000,"y":0},{"x":1569303360000,"y":0},{"x":1569303420000,"y":0},{"x":1569303480000,"y":0},{"x":1569303540000,"y":0},{"x":1569303600000,"y":0},{"x":1569303660000,"y":0},{"x":1569303720000,"y":0},{"x":1569303780000,"y":0},{"x":1569303840000,"y":0},{"x":1569303900000,"y":0},{"x":1569303960000,"y":0},{"x":1569304020000,"y":0},{"x":1569304080000,"y":0},{"x":1569304140000,"y":0},{"x":1569304200000,"y":0},{"x":1569304260000,"y":0},{"x":1569304320000,"y":0},{"x":1569304380000,"y":0},{"x":1569304440000,"y":0},{"x":1569304500000,"y":0},{"x":1569304560000,"y":0},{"x":1569304620000,"y":0},{"x":1569304680000,"y":0},{"x":1569304740000,"y":0},{"x":1569304800000,"y":0},{"x":1569304860000,"y":0},{"x":1569304920000,"y":0},{"x":1569304980000,"y":0},{"x":1569305040000,"y":0},{"x":1569305100000,"y":0},{"x":1569305160000,"y":0},{"x":1569305220000,"y":0},{"x":1569305280000,"y":0},{"x":1569305340000,"y":0},{"x":1569305400000,"y":0},{"x":1569305460000,"y":0},{"x":1569305520000,"y":0},{"x":1569305580000,"y":0},{"x":1569305640000,"y":0},{"x":1569305700000,"y":0},{"x":1569305760000,"y":0},{"x":1569305820000,"y":0},{"x":1569305880000,"y":0},{"x":1569305940000,"y":0},{"x":1569306000000,"y":0},{"x":1569306060000,"y":0},{"x":1569306120000,"y":0},{"x":1569306180000,"y":0},{"x":1569306240000,"y":0},{"x":1569306300000,"y":0},{"x":1569306360000,"y":0},{"x":1569306420000,"y":0},{"x":1569306480000,"y":0},{"x":1569306540000,"y":0},{"x":1569306600000,"y":0},{"x":1569306660000,"y":0},{"x":1569306720000,"y":0},{"x":1569306780000,"y":0},{"x":1569306840000,"y":0},{"x":1569306900000,"y":0},{"x":1569306960000,"y":0},{"x":1569307020000,"y":0},{"x":1569307080000,"y":0},{"x":1569307140000,"y":0},{"x":1569307200000,"y":0},{"x":1569307260000,"y":0},{"x":1569307320000,"y":0},{"x":1569307380000,"y":0},{"x":1569307440000,"y":0},{"x":1569307500000,"y":0},{"x":1569307560000,"y":0},{"x":1569307620000,"y":0},{"x":1569307680000,"y":0},{"x":1569307740000,"y":0},{"x":1569307800000,"y":0},{"x":1569307860000,"y":0},{"x":1569307920000,"y":0},{"x":1569307980000,"y":0},{"x":1569308040000,"y":0.02},{"x":1569308100000,"y":0},{"x":1569308160000,"y":0},{"x":1569308220000,"y":0},{"x":1569308280000,"y":0},{"x":1569308340000,"y":0},{"x":1569308400000,"y":0},{"x":1569308460000,"y":0},{"x":1569308520000,"y":0},{"x":1569308580000,"y":0},{"x":1569308640000,"y":0},{"x":1569308700000,"y":0},{"x":1569308760000,"y":0},{"x":1569308820000,"y":0},{"x":1569308880000,"y":0},{"x":1569308940000,"y":0},{"x":1569309000000,"y":0},{"x":1569309060000,"y":0},{"x":1569309120000,"y":0},{"x":1569309180000,"y":0},{"x":1569309240000,"y":0},{"x":1569309300000,"y":0},{"x":1569309360000,"y":0},{"x":1569309420000,"y":0},{"x":1569309480000,"y":0},{"x":1569309540000,"y":0},{"x":1569309600000,"y":0},{"x":1569309660000,"y":0},{"x":1569309720000,"y":0},{"x":1569309780000,"y":0},{"x":1569309840000,"y":0},{"x":1569309900000,"y":0},{"x":1569309960000,"y":0},{"x":1569310020000,"y":0},{"x":1569310080000,"y":0},{"x":1569310140000,"y":0},{"x":1569310200000,"y":0},{"x":1569310260000,"y":0},{"x":1569310320000,"y":0},{"x":1569310380000,"y":0},{"x":1569310440000,"y":0},{"x":1569310500000,"y":0},{"x":1569310560000,"y":0},{"x":1569310620000,"y":0},{"x":1569310680000,"y":0},{"x":1569310740000,"y":0},{"x":1569310800000,"y":0},{"x":1569310860000,"y":0},{"x":1569310920000,"y":0},{"x":1569310980000,"y":0},{"x":1569311040000,"y":0},{"x":1569311100000,"y":0},{"x":1569311160000,"y":0},{"x":1569311220000,"y":0},{"x":1569311280000,"y":0},{"x":1569311340000,"y":0},{"x":1569311400000,"y":0},{"x":1569311460000,"y":0},{"x":1569311520000,"y":0},{"x":1569311580000,"y":0},{"x":1569311640000,"y":0},{"x":1569311700000,"y":0},{"x":1569311760000,"y":0},{"x":1569311820000,"y":0},{"x":1569311880000,"y":0},{"x":1569311940000,"y":0},{"x":1569312000000,"y":0},{"x":1569312060000,"y":0},{"x":1569312120000,"y":0},{"x":1569312180000,"y":0},{"x":1569312240000,"y":0},{"x":1569312300000,"y":0},{"x":1569312360000,"y":0},{"x":1569312420000,"y":0},{"x":1569312480000,"y":0},{"x":1569312540000,"y":0},{"x":1569312600000,"y":0},{"x":1569312660000,"y":0},{"x":1569312720000,"y":0},{"x":1569312780000,"y":0},{"x":1569312840000,"y":0},{"x":1569312900000,"y":0},{"x":1569312960000,"y":0},{"x":1569313020000,"y":0},{"x":1569313080000,"y":0},{"x":1569313140000,"y":0},{"x":1569313200000,"y":0},{"x":1569313260000,"y":0},{"x":1569313320000,"y":0},{"x":1569313380000,"y":0},{"x":1569313440000,"y":0},{"x":1569313500000,"y":0},{"x":1569313560000,"y":0},{"x":1569313620000,"y":0},{"x":1569313680000,"y":0},{"x":1569313740000,"y":0},{"x":1569313800000,"y":0},{"x":1569313860000,"y":0},{"x":1569313920000,"y":0},{"x":1569313980000,"y":0},{"x":1569314040000,"y":0},{"x":1569314100000,"y":0},{"x":1569314160000,"y":0},{"x":1569314220000,"y":0},{"x":1569314280000,"y":0},{"x":1569314340000,"y":0},{"x":1569314400000,"y":0},{"x":1569314460000,"y":0},{"x":1569314520000,"y":0},{"x":1569314580000,"y":0},{"x":1569314640000,"y":0},{"x":1569314700000,"y":0},{"x":1569314760000,"y":0},{"x":1569314820000,"y":0},{"x":1569314880000,"y":0},{"x":1569314940000,"y":0},{"x":1569315000000,"y":0},{"x":1569315060000,"y":0},{"x":1569315120000,"y":0},{"x":1569315180000,"y":0},{"x":1569315240000,"y":0},{"x":1569315300000,"y":0},{"x":1569315360000,"y":0},{"x":1569315420000,"y":0},{"x":1569315480000,"y":0},{"x":1569315540000,"y":0},{"x":1569315600000,"y":0},{"x":1569315660000,"y":0},{"x":1569315720000,"y":0},{"x":1569315780000,"y":0.01},{"x":1569315840000,"y":0},{"x":1569315900000,"y":0},{"x":1569315960000,"y":0},{"x":1569316020000,"y":0},{"x":1569316080000,"y":0},{"x":1569316140000,"y":0},{"x":1569316200000,"y":0},{"x":1569316260000,"y":0},{"x":1569316320000,"y":0},{"x":1569316380000,"y":0},{"x":1569316440000,"y":0},{"x":1569316500000,"y":0},{"x":1569316560000,"y":0},{"x":1569316620000,"y":0},{"x":1569316680000,"y":0},{"x":1569316740000,"y":0},{"x":1569316800000,"y":0},{"x":1569316860000,"y":0},{"x":1569316920000,"y":0},{"x":1569316980000,"y":0},{"x":1569317040000,"y":0},{"x":1569317100000,"y":0},{"x":1569317160000,"y":0},{"x":1569317220000,"y":0.01},{"x":1569317280000,"y":0},{"x":1569317340000,"y":0.01},{"x":1569317400000,"y":0},{"x":1569317460000,"y":0.01},{"x":1569317520000,"y":0},{"x":1569317580000,"y":0},{"x":1569317640000,"y":0},{"x":1569317700000,"y":0},{"x":1569317760000,"y":0},{"x":1569317820000,"y":0},{"x":1569317880000,"y":0},{"x":1569317940000,"y":0},{"x":1569318000000,"y":0},{"x":1569318060000,"y":0},{"x":1569318120000,"y":0},{"x":1569318180000,"y":0},{"x":1569318240000,"y":0},{"x":1569318300000,"y":0},{"x":1569318360000,"y":0},{"x":1569318420000,"y":0},{"x":1569318480000,"y":0},{"x":1569318540000,"y":0},{"x":1569318600000,"y":0},{"x":1569318660000,"y":0},{"x":1569318720000,"y":0},{"x":1569318780000,"y":0.01},{"x":1569318840000,"y":0},{"x":1569318900000,"y":0},{"x":1569318960000,"y":0},{"x":1569319020000,"y":0},{"x":1569319080000,"y":0},{"x":1569319140000,"y":0},{"x":1569319200000,"y":0},{"x":1569319260000,"y":0},{"x":1569319320000,"y":0},{"x":1569319380000,"y":0},{"x":1569319440000,"y":0},{"x":1569319500000,"y":0},{"x":1569319560000,"y":0},{"x":1569319620000,"y":0},{"x":1569319680000,"y":0},{"x":1569319740000,"y":0},{"x":1569319800000,"y":0},{"x":1569319860000,"y":0},{"x":1569319920000,"y":0},{"x":1569319980000,"y":0},{"x":1569320040000,"y":0},{"x":1569320100000,"y":0},{"x":1569320160000,"y":0},{"x":1569320220000,"y":0},{"x":1569320280000,"y":0},{"x":1569320340000,"y":0},{"x":1569320400000,"y":0},{"x":1569320460000,"y":0},{"x":1569320520000,"y":0},{"x":1569320580000,"y":0},{"x":1569320640000,"y":0},{"x":1569320700000,"y":0},{"x":1569320760000,"y":0},{"x":1569320820000,"y":0},{"x":1569320880000,"y":0},{"x":1569320940000,"y":0},{"x":1569321000000,"y":0},{"x":1569321060000,"y":0},{"x":1569321120000,"y":0},{"x":1569321180000,"y":0},{"x":1569321240000,"y":0},{"x":1569321300000,"y":0},{"x":1569321360000,"y":0},{"x":1569321420000,"y":0},{"x":1569321480000,"y":0},{"x":1569321540000,"y":0},{"x":1569321600000,"y":0},{"x":1569321660000,"y":0},{"x":1569321720000,"y":0},{"x":1569321780000,"y":0},{"x":1569321840000,"y":0},{"x":1569321900000,"y":0},{"x":1569321960000,"y":0},{"x":1569322020000,"y":0},{"x":1569322080000,"y":0},{"x":1569322140000,"y":0},{"x":1569322200000,"y":0},{"x":1569322260000,"y":0},{"x":1569322320000,"y":0},{"x":1569322380000,"y":0},{"x":1569322440000,"y":0},{"x":1569322500000,"y":0},{"x":1569322560000,"y":0},{"x":1569322620000,"y":0},{"x":1569322680000,"y":0},{"x":1569322740000,"y":0},{"x":1569322800000,"y":0},{"x":1569322860000,"y":0},{"x":1569322920000,"y":0},{"x":1569322980000,"y":0},{"x":1569323040000,"y":0},{"x":1569323100000,"y":0},{"x":1569323160000,"y":0},{"x":1569323220000,"y":0},{"x":1569323280000,"y":0},{"x":1569323340000,"y":0},{"x":1569323400000,"y":0},{"x":1569323460000,"y":0},{"x":1569323520000,"y":0},{"x":1569323580000,"y":0},{"x":1569323640000,"y":0},{"x":1569323700000,"y":0},{"x":1569323760000,"y":0},{"x":1569323820000,"y":0},{"x":1569323880000,"y":0},{"x":1569323940000,"y":0},{"x":1569324000000,"y":0},{"x":1569324060000,"y":0},{"x":1569324120000,"y":0},{"x":1569324180000,"y":0},{"x":1569324240000,"y":0.01},{"x":1569324300000,"y":0},{"x":1569324360000,"y":0},{"x":1569324420000,"y":0},{"x":1569324480000,"y":0},{"x":1569324540000,"y":0},{"x":1569324600000,"y":0},{"x":1569324660000,"y":0},{"x":1569324720000,"y":0},{"x":1569324780000,"y":0},{"x":1569324840000,"y":0},{"x":1569324900000,"y":0},{"x":1569324960000,"y":0},{"x":1569325020000,"y":0},{"x":1569325080000,"y":0},{"x":1569325140000,"y":0},{"x":1569325200000,"y":0},{"x":1569325260000,"y":0},{"x":1569325320000,"y":0},{"x":1569325380000,"y":0},{"x":1569325440000,"y":0},{"x":1569325500000,"y":0},{"x":1569325560000,"y":0},{"x":1569325620000,"y":0},{"x":1569325680000,"y":0},{"x":1569325740000,"y":0},{"x":1569325800000,"y":0},{"x":1569325860000,"y":0},{"x":1569325920000,"y":0},{"x":1569325980000,"y":0},{"x":1569326040000,"y":0},{"x":1569326100000,"y":0},{"x":1569326160000,"y":0},{"x":1569326220000,"y":0},{"x":1569326280000,"y":0},{"x":1569326340000,"y":0},{"x":1569326400000,"y":0},{"x":1569326460000,"y":0},{"x":1569326520000,"y":0},{"x":1569326580000,"y":0},{"x":1569326640000,"y":0},{"x":1569326700000,"y":0},{"x":1569326760000,"y":0},{"x":1569326820000,"y":0},{"x":1569326880000,"y":0},{"x":1569326940000,"y":0},{"x":1569327000000,"y":0},{"x":1569327060000,"y":0},{"x":1569327120000,"y":0},{"x":1569327180000,"y":0},{"x":1569327240000,"y":0},{"x":1569327300000,"y":0},{"x":1569327360000,"y":0},{"x":1569327420000,"y":0},{"x":1569327480000,"y":0},{"x":1569327540000,"y":0},{"x":1569327600000,"y":0},{"x":1569327660000,"y":0},{"x":1569327720000,"y":0},{"x":1569327780000,"y":0},{"x":1569327840000,"y":0},{"x":1569327900000,"y":0},{"x":1569327960000,"y":0},{"x":1569328020000,"y":0},{"x":1569328080000,"y":0},{"x":1569328140000,"y":0},{"x":1569328200000,"y":0},{"x":1569328260000,"y":0},{"x":1569328320000,"y":0},{"x":1569328380000,"y":0},{"x":1569328440000,"y":0},{"x":1569328500000,"y":0},{"x":1569328560000,"y":0},{"x":1569328620000,"y":0},{"x":1569328680000,"y":0},{"x":1569328740000,"y":0},{"x":1569328800000,"y":0},{"x":1569328860000,"y":0},{"x":1569328920000,"y":0},{"x":1569328980000,"y":0},{"x":1569329040000,"y":0},{"x":1569329100000,"y":0},{"x":1569329160000,"y":0},{"x":1569329220000,"y":0},{"x":1569329280000,"y":0},{"x":1569329340000,"y":0},{"x":1569329400000,"y":0},{"x":1569329460000,"y":0},{"x":1569329520000,"y":0},{"x":1569329580000,"y":0},{"x":1569329640000,"y":0},{"x":1569329700000,"y":0},{"x":1569329760000,"y":0},{"x":1569329820000,"y":0},{"x":1569329880000,"y":0},{"x":1569329940000,"y":0},{"x":1569330000000,"y":0},{"x":1569330060000,"y":0},{"x":1569330120000,"y":0},{"x":1569330180000,"y":0},{"x":1569330240000,"y":0},{"x":1569330300000,"y":0},{"x":1569330360000,"y":0},{"x":1569330420000,"y":0},{"x":1569330480000,"y":0},{"x":1569330540000,"y":0},{"x":1569330600000,"y":0},{"x":1569330660000,"y":0},{"x":1569330720000,"y":0},{"x":1569330780000,"y":0},{"x":1569330840000,"y":0},{"x":1569330900000,"y":0},{"x":1569330960000,"y":0},{"x":1569331020000,"y":0},{"x":1569331080000,"y":0},{"x":1569331140000,"y":0.01},{"x":1569331200000,"y":0.01},{"x":1569331260000,"y":0},{"x":1569331320000,"y":0},{"x":1569331380000,"y":0},{"x":1569331440000,"y":0},{"x":1569331500000,"y":0},{"x":1569331560000,"y":0},{"x":1569331620000,"y":0},{"x":1569331680000,"y":0},{"x":1569331740000,"y":0},{"x":1569331800000,"y":0},{"x":1569331860000,"y":0},{"x":1569331920000,"y":0},{"x":1569331980000,"y":0},{"x":1569332040000,"y":0},{"x":1569332100000,"y":0},{"x":1569332160000,"y":0},{"x":1569332220000,"y":0},{"x":1569332280000,"y":0},{"x":1569332340000,"y":0},{"x":1569332400000,"y":0},{"x":1569332460000,"y":0},{"x":1569332520000,"y":0},{"x":1569332580000,"y":0},{"x":1569332640000,"y":0},{"x":1569332700000,"y":0},{"x":1569332760000,"y":0},{"x":1569332820000,"y":0},{"x":1569332880000,"y":0},{"x":1569332940000,"y":0},{"x":1569333000000,"y":0},{"x":1569333060000,"y":0},{"x":1569333120000,"y":0},{"x":1569333180000,"y":0},{"x":1569333240000,"y":0},{"x":1569333300000,"y":0},{"x":1569333360000,"y":0},{"x":1569333420000,"y":0},{"x":1569333480000,"y":0},{"x":1569333540000,"y":0},{"x":1569333600000,"y":0},{"x":1569333660000,"y":0},{"x":1569333720000,"y":0},{"x":1569333780000,"y":0},{"x":1569333840000,"y":0},{"x":1569333900000,"y":0},{"x":1569333960000,"y":0},{"x":1569334020000,"y":0},{"x":1569334080000,"y":0},{"x":1569334140000,"y":0},{"x":1569334200000,"y":0},{"x":1569334260000,"y":0},{"x":1569334320000,"y":0},{"x":1569334380000,"y":0},{"x":1569334440000,"y":0},{"x":1569334500000,"y":0},{"x":1569334560000,"y":0},{"x":1569334620000,"y":0},{"x":1569334680000,"y":0},{"x":1569334740000,"y":0},{"x":1569334800000,"y":0},{"x":1569334860000,"y":0},{"x":1569334920000,"y":0},{"x":1569334980000,"y":0},{"x":1569335040000,"y":0},{"x":1569335100000,"y":0},{"x":1569335160000,"y":0.97},{"x":1569335220000,"y":0},{"x":1569335280000,"y":0},{"x":1569335340000,"y":0.01},{"x":1569335400000,"y":0},{"x":1569335460000,"y":0},{"x":1569335520000,"y":0},{"x":1569335580000,"y":0},{"x":1569335640000,"y":0},{"x":1569335700000,"y":0},{"x":1569335760000,"y":0},{"x":1569335820000,"y":0},{"x":1569335880000,"y":0},{"x":1569335940000,"y":0},{"x":1569336000000,"y":0},{"x":1569336060000,"y":0},{"x":1569336120000,"y":0},{"x":1569336180000,"y":0},{"x":1569336240000,"y":0},{"x":1569336300000,"y":0},{"x":1569336360000,"y":0},{"x":1569336420000,"y":0},{"x":1569336480000,"y":0},{"x":1569336540000,"y":0},{"x":1569336600000,"y":0},{"x":1569336660000,"y":0},{"x":1569336720000,"y":0},{"x":1569336780000,"y":0},{"x":1569336840000,"y":0},{"x":1569336900000,"y":0},{"x":1569336960000,"y":0},{"x":1569337020000,"y":0},{"x":1569337080000,"y":0},{"x":1569337140000,"y":0},{"x":1569337200000,"y":0},{"x":1569337260000,"y":0},{"x":1569337320000,"y":0},{"x":1569337380000,"y":0},{"x":1569337440000,"y":0},{"x":1569337500000,"y":0},{"x":1569337560000,"y":0},{"x":1569337620000,"y":0},{"x":1569337680000,"y":0},{"x":1569337740000,"y":0},{"x":1569337800000,"y":0},{"x":1569337860000,"y":0},{"x":1569337920000,"y":0},{"x":1569337980000,"y":0},{"x":1569338040000,"y":0},{"x":1569338100000,"y":0},{"x":1569338160000,"y":0},{"x":1569338220000,"y":0},{"x":1569338280000,"y":0},{"x":1569338340000,"y":0},{"x":1569338400000,"y":0},{"x":1569338460000,"y":0},{"x":1569338520000,"y":0},{"x":1569338580000,"y":0},{"x":1569338640000,"y":0},{"x":1569338700000,"y":0},{"x":1569338760000,"y":0},{"x":1569338820000,"y":0},{"x":1569338880000,"y":0},{"x":1569338940000,"y":0},{"x":1569339000000,"y":0},{"x":1569339060000,"y":0},{"x":1569339120000,"y":0},{"x":1569339180000,"y":0},{"x":1569339240000,"y":0},{"x":1569339300000,"y":0},{"x":1569339360000,"y":0},{"x":1569339420000,"y":0},{"x":1569339480000,"y":0},{"x":1569339540000,"y":0},{"x":1569339600000,"y":0},{"x":1569339660000,"y":0},{"x":1569339720000,"y":0},{"x":1569339780000,"y":0},{"x":1569339840000,"y":0},{"x":1569339900000,"y":0},{"x":1569339960000,"y":0},{"x":1569340020000,"y":0},{"x":1569340080000,"y":0},{"x":1569340140000,"y":0},{"x":1569340200000,"y":0},{"x":1569340260000,"y":0},{"x":1569340320000,"y":0},{"x":1569340380000,"y":0},{"x":1569340440000,"y":0},{"x":1569340500000,"y":0},{"x":1569340560000,"y":0.95},{"x":1569340620000,"y":0},{"x":1569340680000,"y":0},{"x":1569340740000,"y":0},{"x":1569340800000,"y":0},{"x":1569340860000,"y":0.94},{"x":1569340920000,"y":0},{"x":1569340980000,"y":0},{"x":1569341040000,"y":0},{"x":1569341100000,"y":0},{"x":1569341160000,"y":0},{"x":1569341220000,"y":0},{"x":1569341280000,"y":0},{"x":1569341340000,"y":0},{"x":1569341400000,"y":0},{"x":1569341460000,"y":0},{"x":1569341520000,"y":0},{"x":1569341580000,"y":0},{"x":1569341640000,"y":0},{"x":1569341700000,"y":0},{"x":1569341760000,"y":0},{"x":1569341820000,"y":0},{"x":1569341880000,"y":0},{"x":1569341940000,"y":0},{"x":1569342000000,"y":0},{"x":1569342060000,"y":0},{"x":1569342120000,"y":0},{"x":1569342180000,"y":0},{"x":1569342240000,"y":0},{"x":1569342300000,"y":0},{"x":1569342360000,"y":0},{"x":1569342420000,"y":0},{"x":1569342480000,"y":0},{"x":1569342540000,"y":0},{"x":1569342600000,"y":0},{"x":1569342660000,"y":0},{"x":1569342720000,"y":0},{"x":1569342780000,"y":0},{"x":1569342840000,"y":0},{"x":1569342900000,"y":0},{"x":1569342960000,"y":0},{"x":1569343020000,"y":0},{"x":1569343080000,"y":0.14},{"x":1569343140000,"y":0.03},{"x":1569343200000,"y":0.02},{"x":1569343260000,"y":0},{"x":1569343320000,"y":0},{"x":1569343380000,"y":0},{"x":1569343440000,"y":1.93},{"x":1569343500000,"y":0.24},{"x":1569343560000,"y":0},{"x":1569343620000,"y":0},{"x":1569343680000,"y":0},{"x":1569343740000,"y":0},{"x":1569343800000,"y":0},{"x":1569343860000,"y":0},{"x":1569343920000,"y":0},{"x":1569343980000,"y":0},{"x":1569344040000,"y":0},{"x":1569344100000,"y":0},{"x":1569344160000,"y":0},{"x":1569344220000,"y":0},{"x":1569344280000,"y":0},{"x":1569344340000,"y":0},{"x":1569344400000,"y":0},{"x":1569344460000,"y":0},{"x":1569344520000,"y":0},{"x":1569344580000,"y":0},{"x":1569344640000,"y":0},{"x":1569344700000,"y":0},{"x":1569344760000,"y":0},{"x":1569344820000,"y":0},{"x":1569344880000,"y":0},{"x":1569344940000,"y":0},{"x":1569345000000,"y":2.4},{"x":1569345060000,"y":0},{"x":1569345120000,"y":0},{"x":1569345180000,"y":0},{"x":1569345240000,"y":0},{"x":1569345300000,"y":0},{"x":1569345360000,"y":0},{"x":1569345420000,"y":0},{"x":1569345480000,"y":0.01},{"x":1569345540000,"y":0},{"x":1569345600000,"y":0},{"x":1569345660000,"y":0},{"x":1569345720000,"y":0},{"x":1569345780000,"y":0},{"x":1569345840000,"y":0},{"x":1569345900000,"y":0},{"x":1569345960000,"y":0},{"x":1569346020000,"y":0.1},{"x":1569346080000,"y":0},{"x":1569346140000,"y":0.01},{"x":1569346200000,"y":0},{"x":1569346260000,"y":0},{"x":1569346320000,"y":0},{"x":1569346380000,"y":0},{"x":1569346440000,"y":0},{"x":1569346500000,"y":0},{"x":1569346560000,"y":0},{"x":1569346620000,"y":0},{"x":1569346680000,"y":0},{"x":1569346740000,"y":0},{"x":1569346800000,"y":0},{"x":1569346860000,"y":0},{"x":1569346920000,"y":0},{"x":1569346980000,"y":0},{"x":1569347040000,"y":0},{"x":1569347100000,"y":0},{"x":1569347160000,"y":0},{"x":1569347220000,"y":0},{"x":1569347280000,"y":0},{"x":1569347340000,"y":0},{"x":1569347400000,"y":0},{"x":1569347460000,"y":0},{"x":1569347520000,"y":0},{"x":1569347580000,"y":0},{"x":1569347640000,"y":0},{"x":1569347700000,"y":0},{"x":1569347760000,"y":0},{"x":1569347820000,"y":0},{"x":1569347880000,"y":0},{"x":1569347940000,"y":0},{"x":1569348000000,"y":0},{"x":1569348060000,"y":0},{"x":1569348120000,"y":0},{"x":1569348180000,"y":0},{"x":1569348240000,"y":0},{"x":1569348300000,"y":0},{"x":1569348360000,"y":0},{"x":1569348420000,"y":0},{"x":1569348480000,"y":0},{"x":1569348540000,"y":0},{"x":1569348600000,"y":0},{"x":1569348660000,"y":0},{"x":1569348720000,"y":0},{"x":1569348780000,"y":0},{"x":1569348840000,"y":0},{"x":1569348900000,"y":0},{"x":1569348960000,"y":0},{"x":1569349020000,"y":0},{"x":1569349080000,"y":0},{"x":1569349140000,"y":0},{"x":1569349200000,"y":0},{"x":1569349260000,"y":0},{"x":1569349320000,"y":0},{"x":1569349380000,"y":0},{"x":1569349440000,"y":0},{"x":1569349500000,"y":0.01},{"x":1569349560000,"y":0},{"x":1569349620000,"y":0},{"x":1569349680000,"y":0},{"x":1569349740000,"y":0},{"x":1569349800000,"y":0},{"x":1569349860000,"y":0},{"x":1569349920000,"y":0},{"x":1569349980000,"y":0},{"x":1569350040000,"y":0},{"x":1569350100000,"y":0},{"x":1569350160000,"y":0},{"x":1569350220000,"y":0},{"x":1569350280000,"y":0},{"x":1569350340000,"y":0},{"x":1569350400000,"y":0},{"x":1569350460000,"y":0},{"x":1569350520000,"y":0},{"x":1569350580000,"y":0},{"x":1569350640000,"y":0},{"x":1569350700000,"y":0},{"x":1569350760000,"y":0},{"x":1569350820000,"y":0},{"x":1569350880000,"y":0},{"x":1569350940000,"y":0},{"x":1569351000000,"y":0},{"x":1569351060000,"y":0},{"x":1569351120000,"y":0},{"x":1569351180000,"y":0},{"x":1569351240000,"y":0},{"x":1569351300000,"y":0},{"x":1569351360000,"y":0},{"x":1569351420000,"y":0},{"x":1569351480000,"y":0},{"x":1569351540000,"y":0},{"x":1569351600000,"y":0},{"x":1569351660000,"y":0},{"x":1569351720000,"y":0},{"x":1569351780000,"y":0.01},{"x":1569351840000,"y":0.01},{"x":1569351900000,"y":0.01},{"x":1569351960000,"y":0},{"x":1569352020000,"y":0},{"x":1569352080000,"y":0},{"x":1569352140000,"y":0},{"x":1569352200000,"y":0},{"x":1569352260000,"y":0},{"x":1569352320000,"y":0},{"x":1569352380000,"y":0},{"x":1569352440000,"y":0},{"x":1569352500000,"y":0},{"x":1569352560000,"y":0},{"x":1569352620000,"y":0},{"x":1569352680000,"y":0},{"x":1569352740000,"y":0},{"x":1569352800000,"y":0},{"x":1569352860000,"y":0},{"x":1569352920000,"y":0},{"x":1569352980000,"y":0},{"x":1569353040000,"y":0},{"x":1569353100000,"y":0},{"x":1569353160000,"y":0},{"x":1569353220000,"y":0},{"x":1569353280000,"y":0},{"x":1569353340000,"y":0},{"x":1569353400000,"y":0},{"x":1569353460000,"y":0},{"x":1569353520000,"y":0},{"x":1569353580000,"y":0},{"x":1569353640000,"y":0},{"x":1569353700000,"y":0},{"x":1569353760000,"y":0},{"x":1569353820000,"y":0},{"x":1569353880000,"y":0},{"x":1569353940000,"y":0},{"x":1569354000000,"y":0},{"x":1569354060000,"y":0},{"x":1569354120000,"y":0},{"x":1569354180000,"y":0},{"x":1569354240000,"y":0},{"x":1569354300000,"y":0},{"x":1569354360000,"y":0},{"x":1569354420000,"y":0},{"x":1569354480000,"y":0},{"x":1569354540000,"y":0},{"x":1569354600000,"y":0},{"x":1569354660000,"y":0},{"x":1569354720000,"y":0},{"x":1569354780000,"y":0.01},{"x":1569354840000,"y":0},{"x":1569354900000,"y":0.3},{"x":1569354960000,"y":0.29},{"x":1569355020000,"y":0},{"x":1569355080000,"y":0},{"x":1569355140000,"y":0},{"x":1569355200000,"y":0},{"x":1569355260000,"y":0},{"x":1569355320000,"y":0},{"x":1569355380000,"y":0},{"x":1569355440000,"y":0},{"x":1569355500000,"y":0},{"x":1569355560000,"y":0},{"x":1569355620000,"y":0},{"x":1569355680000,"y":0},{"x":1569355740000,"y":0},{"x":1569355800000,"y":0},{"x":1569355860000,"y":0},{"x":1569355920000,"y":0},{"x":1569355980000,"y":0},{"x":1569356040000,"y":0},{"x":1569356100000,"y":0},{"x":1569356160000,"y":0},{"x":1569356220000,"y":0},{"x":1569356280000,"y":0},{"x":1569356340000,"y":0},{"x":1569356400000,"y":0},{"x":1569356460000,"y":0},{"x":1569356520000,"y":0},{"x":1569356580000,"y":0},{"x":1569356640000,"y":0},{"x":1569356700000,"y":0},{"x":1569356760000,"y":0},{"x":1569356820000,"y":0},{"x":1569356880000,"y":0},{"x":1569356940000,"y":0},{"x":1569357000000,"y":0},{"x":1569357060000,"y":0},{"x":1569357120000,"y":0},{"x":1569357180000,"y":0},{"x":1569357240000,"y":0},{"x":1569357300000,"y":0.01},{"x":1569357360000,"y":0},{"x":1569357420000,"y":0},{"x":1569357480000,"y":0},{"x":1569357540000,"y":0},{"x":1569357600000,"y":0},{"x":1569357660000,"y":0},{"x":1569357720000,"y":0},{"x":1569357780000,"y":0},{"x":1569357840000,"y":0},{"x":1569357900000,"y":0},{"x":1569357960000,"y":0},{"x":1569358020000,"y":0},{"x":1569358080000,"y":0},{"x":1569358140000,"y":0},{"x":1569358200000,"y":0.01},{"x":1569358260000,"y":0},{"x":1569358320000,"y":0},{"x":1569358380000,"y":0},{"x":1569358440000,"y":0},{"x":1569358500000,"y":0},{"x":1569358560000,"y":0},{"x":1569358620000,"y":0},{"x":1569358680000,"y":0},{"x":1569358740000,"y":0},{"x":1569358800000,"y":0},{"x":1569358860000,"y":0},{"x":1569358920000,"y":0},{"x":1569358980000,"y":0},{"x":1569359040000,"y":0},{"x":1569359100000,"y":0},{"x":1569359160000,"y":0},{"x":1569359220000,"y":0},{"x":1569359280000,"y":0},{"x":1569359340000,"y":0},{"x":1569359400000,"y":0},{"x":1569359460000,"y":0},{"x":1569359520000,"y":0},{"x":1569359580000,"y":0},{"x":1569359640000,"y":0},{"x":1569359700000,"y":0},{"x":1569359760000,"y":0},{"x":1569359820000,"y":0},{"x":1569359880000,"y":0},{"x":1569359940000,"y":0},{"x":1569360000000,"y":0},{"x":1569360060000,"y":0},{"x":1569360120000,"y":0},{"x":1569360180000,"y":0},{"x":1569360240000,"y":0},{"x":1569360300000,"y":0},{"x":1569360360000,"y":0},{"x":1569360420000,"y":0},{"x":1569360480000,"y":0},{"x":1569360540000,"y":0},{"x":1569360600000,"y":0},{"x":1569360660000,"y":0},{"x":1569360720000,"y":0},{"x":1569360780000,"y":0},{"x":1569360840000,"y":0},{"x":1569360900000,"y":0},{"x":1569360960000,"y":0},{"x":1569361020000,"y":0},{"x":1569361080000,"y":0},{"x":1569361140000,"y":0},{"x":1569361200000,"y":0},{"x":1569361260000,"y":0},{"x":1569361320000,"y":0},{"x":1569361380000,"y":0},{"x":1569361440000,"y":0},{"x":1569361500000,"y":0},{"x":1569361560000,"y":0},{"x":1569361620000,"y":0},{"x":1569361680000,"y":0},{"x":1569361740000,"y":0},{"x":1569361800000,"y":0},{"x":1569361860000,"y":0},{"x":1569361920000,"y":0},{"x":1569361980000,"y":0},{"x":1569362040000,"y":0},{"x":1569362100000,"y":0},{"x":1569362160000,"y":0},{"x":1569362220000,"y":0},{"x":1569362280000,"y":0},{"x":1569362340000,"y":0},{"x":1569362400000,"y":0},{"x":1569362460000,"y":0},{"x":1569362520000,"y":0},{"x":1569362580000,"y":0.4},{"x":1569362640000,"y":0},{"x":1569362700000,"y":0},{"x":1569362760000,"y":0},{"x":1569362820000,"y":0},{"x":1569362880000,"y":0},{"x":1569362940000,"y":0.1},{"x":1569363000000,"y":0},{"x":1569363060000,"y":0},{"x":1569363120000,"y":0},{"x":1569363180000,"y":0},{"x":1569363240000,"y":0},{"x":1569363300000,"y":0},{"x":1569363360000,"y":0},{"x":1569363420000,"y":1.93},{"x":1569363480000,"y":0.01},{"x":1569363540000,"y":0},{"x":1569363600000,"y":0},{"x":1569363660000,"y":0},{"x":1569363720000,"y":0},{"x":1569363780000,"y":0},{"x":1569363840000,"y":0},{"x":1569363900000,"y":0},{"x":1569363960000,"y":0},{"x":1569364020000,"y":0},{"x":1569364080000,"y":0},{"x":1569364140000,"y":0},{"x":1569364200000,"y":0},{"x":1569364260000,"y":0.4},{"x":1569364320000,"y":0},{"x":1569364380000,"y":0.01},{"x":1569364440000,"y":0.1},{"x":1569364500000,"y":0},{"x":1569364560000,"y":0},{"x":1569364620000,"y":0},{"x":1569364680000,"y":0},{"x":1569364740000,"y":0},{"x":1569364800000,"y":0},{"x":1569364860000,"y":0},{"x":1569364920000,"y":0},{"x":1569364980000,"y":0},{"x":1569365040000,"y":0},{"x":1569365100000,"y":0},{"x":1569365160000,"y":0},{"x":1569365220000,"y":0},{"x":1569365280000,"y":0},{"x":1569365340000,"y":0},{"x":1569365400000,"y":0},{"x":1569365460000,"y":0},{"x":1569365520000,"y":0},{"x":1569365580000,"y":0},{"x":1569365640000,"y":0},{"x":1569365700000,"y":0},{"x":1569365760000,"y":0},{"x":1569365820000,"y":0},{"x":1569365880000,"y":0},{"x":1569365940000,"y":0},{"x":1569366000000,"y":0},{"x":1569366060000,"y":0},{"x":1569366120000,"y":0},{"x":1569366180000,"y":0},{"x":1569366240000,"y":0},{"x":1569366300000,"y":0.09},{"x":1569366360000,"y":0.01},{"x":1569366420000,"y":0},{"x":1569366480000,"y":0},{"x":1569366540000,"y":0.3},{"x":1569366600000,"y":0},{"x":1569366660000,"y":0},{"x":1569366720000,"y":0},{"x":1569366780000,"y":0},{"x":1569366840000,"y":0.2},{"x":1569366900000,"y":0.7},{"x":1569366960000,"y":0},{"x":1569367020000,"y":0},{"x":1569367080000,"y":0},{"x":1569367140000,"y":0},{"x":1569367200000,"y":0},{"x":1569367260000,"y":0},{"x":1569367320000,"y":0},{"x":1569367380000,"y":0},{"x":1569367440000,"y":0},{"x":1569367500000,"y":0},{"x":1569367560000,"y":0},{"x":1569367620000,"y":0},{"x":1569367680000,"y":0},{"x":1569367740000,"y":0},{"x":1569367800000,"y":0.1},{"x":1569367860000,"y":0},{"x":1569367920000,"y":0},{"x":1569367980000,"y":0.01},{"x":1569368040000,"y":0},{"x":1569368100000,"y":0},{"x":1569368160000,"y":0},{"x":1569368220000,"y":0},{"x":1569368280000,"y":0},{"x":1569368340000,"y":0},{"x":1569368400000,"y":0},{"x":1569368460000,"y":0},{"x":1569368520000,"y":0},{"x":1569368580000,"y":0},{"x":1569368640000,"y":0},{"x":1569368700000,"y":0},{"x":1569368760000,"y":0},{"x":1569368820000,"y":0},{"x":1569368880000,"y":0},{"x":1569368940000,"y":0},{"x":1569369000000,"y":0},{"x":1569369060000,"y":0},{"x":1569369120000,"y":0},{"x":1569369180000,"y":0},{"x":1569369240000,"y":0},{"x":1569369300000,"y":0},{"x":1569369360000,"y":0},{"x":1569369420000,"y":0},{"x":1569369480000,"y":0},{"x":1569369540000,"y":0},{"x":1569369600000,"y":0},{"x":1569369660000,"y":0},{"x":1569369720000,"y":0},{"x":1569369780000,"y":0},{"x":1569369840000,"y":0},{"x":1569369900000,"y":0},{"x":1569369960000,"y":0},{"x":1569370020000,"y":0},{"x":1569370080000,"y":0},{"x":1569370140000,"y":0},{"x":1569370200000,"y":0},{"x":1569370260000,"y":0},{"x":1569370320000,"y":0},{"x":1569370380000,"y":0},{"x":1569370440000,"y":0},{"x":1569370500000,"y":0},{"x":1569370560000,"y":0},{"x":1569370620000,"y":0},{"x":1569370680000,"y":0},{"x":1569370740000,"y":0},{"x":1569370800000,"y":0},{"x":1569370860000,"y":0},{"x":1569370920000,"y":0},{"x":1569370980000,"y":0},{"x":1569371040000,"y":0},{"x":1569371100000,"y":0},{"x":1569371160000,"y":0},{"x":1569371220000,"y":0},{"x":1569371280000,"y":0},{"x":1569371340000,"y":0},{"x":1569371400000,"y":0},{"x":1569371460000,"y":0},{"x":1569371520000,"y":0},{"x":1569371580000,"y":0},{"x":1569371640000,"y":0},{"x":1569371700000,"y":0},{"x":1569371760000,"y":0},{"x":1569371820000,"y":0},{"x":1569371880000,"y":0},{"x":1569371940000,"y":0},{"x":1569372000000,"y":0},{"x":1569372060000,"y":0},{"x":1569372120000,"y":0},{"x":1569372180000,"y":0},{"x":1569372240000,"y":0},{"x":1569372300000,"y":0},{"x":1569372360000,"y":0},{"x":1569372420000,"y":0.01},{"x":1569372480000,"y":0},{"x":1569372540000,"y":0},{"x":1569372600000,"y":0},{"x":1569372660000,"y":0},{"x":1569372720000,"y":0},{"x":1569372780000,"y":0},{"x":1569372840000,"y":0},{"x":1569372900000,"y":0},{"x":1569372960000,"y":0},{"x":1569373020000,"y":0},{"x":1569373080000,"y":0},{"x":1569373140000,"y":0},{"x":1569373200000,"y":0},{"x":1569373260000,"y":0},{"x":1569373320000,"y":0},{"x":1569373380000,"y":0},{"x":1569373440000,"y":0},{"x":1569373500000,"y":0},{"x":1569373560000,"y":0},{"x":1569373620000,"y":0},{"x":1569373680000,"y":0},{"x":1569373740000,"y":0},{"x":1569373800000,"y":0},{"x":1569373860000,"y":0},{"x":1569373920000,"y":0},{"x":1569373980000,"y":0.16},{"x":1569374040000,"y":0},{"x":1569374100000,"y":0.02},{"x":1569374160000,"y":0},{"x":1569374220000,"y":0},{"x":1569374280000,"y":0},{"x":1569374340000,"y":0},{"x":1569374400000,"y":0},{"x":1569374460000,"y":0},{"x":1569374520000,"y":0},{"x":1569374580000,"y":0},{"x":1569374640000,"y":0},{"x":1569374700000,"y":0},{"x":1569374760000,"y":0},{"x":1569374820000,"y":0},{"x":1569374880000,"y":0},{"x":1569374940000,"y":0},{"x":1569375000000,"y":0},{"x":1569375060000,"y":0},{"x":1569375120000,"y":0},{"x":1569375180000,"y":0},{"x":1569375240000,"y":0.09},{"x":1569375300000,"y":0.51},{"x":1569375360000,"y":0.11},{"x":1569375420000,"y":0},{"x":1569375480000,"y":0},{"x":1569375540000,"y":0.09},{"x":1569375600000,"y":0.01},{"x":1569375660000,"y":0},{"x":1569375720000,"y":0},{"x":1569375780000,"y":0},{"x":1569375840000,"y":0},{"x":1569375900000,"y":0},{"x":1569375960000,"y":0},{"x":1569376020000,"y":0},{"x":1569376080000,"y":0.01},{"x":1569376140000,"y":0},{"x":1569376200000,"y":0},{"x":1569376260000,"y":0.01},{"x":1569376320000,"y":0},{"x":1569376380000,"y":0},{"x":1569376440000,"y":0},{"x":1569376500000,"y":0},{"x":1569376560000,"y":0},{"x":1569376620000,"y":0},{"x":1569376680000,"y":0},{"x":1569376740000,"y":0.09},{"x":1569376800000,"y":0.01},{"x":1569376860000,"y":0},{"x":1569376920000,"y":0},{"x":1569376980000,"y":0},{"x":1569377040000,"y":0},{"x":1569377100000,"y":0},{"x":1569377160000,"y":0},{"x":1569377220000,"y":0},{"x":1569377280000,"y":0},{"x":1569377340000,"y":0},{"x":1569377400000,"y":0},{"x":1569377460000,"y":0},{"x":1569377520000,"y":0},{"x":1569377580000,"y":0.1},{"x":1569377640000,"y":0},{"x":1569377700000,"y":0},{"x":1569377760000,"y":0},{"x":1569377820000,"y":0},{"x":1569377880000,"y":0},{"x":1569377940000,"y":0},{"x":1569378000000,"y":0},{"x":1569378060000,"y":0},{"x":1569378120000,"y":0},{"x":1569378180000,"y":0},{"x":1569378240000,"y":0},{"x":1569378300000,"y":0},{"x":1569378360000,"y":0},{"x":1569378420000,"y":0},{"x":1569378480000,"y":0},{"x":1569378540000,"y":0},{"x":1569378600000,"y":0},{"x":1569378660000,"y":0},{"x":1569378720000,"y":0},{"x":1569378780000,"y":0.2},{"x":1569378840000,"y":0},{"x":1569378900000,"y":0},{"x":1569378960000,"y":0},{"x":1569379020000,"y":0},{"x":1569379080000,"y":0},{"x":1569379140000,"y":0},{"x":1569379200000,"y":0},{"x":1569379260000,"y":0},{"x":1569379320000,"y":0},{"x":1569379380000,"y":0},{"x":1569379440000,"y":0},{"x":1569379500000,"y":0},{"x":1569379560000,"y":0},{"x":1569379620000,"y":0},{"x":1569379680000,"y":0},{"x":1569379740000,"y":0},{"x":1569379800000,"y":0},{"x":1569379860000,"y":0},{"x":1569379920000,"y":0},{"x":1569379980000,"y":0},{"x":1569380040000,"y":0},{"x":1569380100000,"y":0},{"x":1569380160000,"y":0},{"x":1569380220000,"y":0},{"x":1569380280000,"y":0},{"x":1569380340000,"y":0},{"x":1569380400000,"y":0},{"x":1569380460000,"y":0},{"x":1569380520000,"y":0},{"x":1569380580000,"y":0},{"x":1569380640000,"y":0},{"x":1569380700000,"y":0},{"x":1569380760000,"y":0},{"x":1569380820000,"y":0},{"x":1569380880000,"y":0},{"x":1569380940000,"y":0},{"x":1569381000000,"y":0},{"x":1569381060000,"y":0},{"x":1569381120000,"y":0},{"x":1569381180000,"y":0},{"x":1569381240000,"y":0},{"x":1569381300000,"y":0},{"x":1569381360000,"y":0},{"x":1569381420000,"y":0},{"x":1569381480000,"y":0},{"x":1569381540000,"y":0},{"x":1569381600000,"y":0},{"x":1569381660000,"y":0},{"x":1569381720000,"y":0},{"x":1569381780000,"y":0},{"x":1569381840000,"y":0},{"x":1569381900000,"y":0},{"x":1569381960000,"y":0.1},{"x":1569382020000,"y":0},{"x":1569382080000,"y":0},{"x":1569382140000,"y":0},{"x":1569382200000,"y":0},{"x":1569382260000,"y":0},{"x":1569382320000,"y":0},{"x":1569382380000,"y":0},{"x":1569382440000,"y":0},{"x":1569382500000,"y":0},{"x":1569382560000,"y":0},{"x":1569382620000,"y":0},{"x":1569382680000,"y":0},{"x":1569382740000,"y":0},{"x":1569382800000,"y":0},{"x":1569382860000,"y":0},{"x":1569382920000,"y":0},{"x":1569382980000,"y":0},{"x":1569383040000,"y":0},{"x":1569383100000,"y":0},{"x":1569383160000,"y":0},{"x":1569383220000,"y":0},{"x":1569383280000,"y":0},{"x":1569383340000,"y":0},{"x":1569383400000,"y":0},{"x":1569383460000,"y":0},{"x":1569383520000,"y":0},{"x":1569383580000,"y":0},{"x":1569383640000,"y":0},{"x":1569383700000,"y":0},{"x":1569383760000,"y":0},{"x":1569383820000,"y":0},{"x":1569383880000,"y":0},{"x":1569383940000,"y":0},{"x":1569384000000,"y":0},{"x":1569384060000,"y":0},{"x":1569384120000,"y":0},{"x":1569384180000,"y":0},{"x":1569384240000,"y":0},{"x":1569384300000,"y":0},{"x":1569384360000,"y":0},{"x":1569384420000,"y":0},{"x":1569384480000,"y":0},{"x":1569384540000,"y":0},{"x":1569384600000,"y":0},{"x":1569384660000,"y":0},{"x":1569384720000,"y":0},{"x":1569384780000,"y":0},{"x":1569384840000,"y":0},{"x":1569384900000,"y":0},{"x":1569384960000,"y":0},{"x":1569385020000,"y":0},{"x":1569385080000,"y":0},{"x":1569385140000,"y":0},{"x":1569385200000,"y":0},{"x":1569385260000,"y":0},{"x":1569385320000,"y":0},{"x":1569385380000,"y":0},{"x":1569385440000,"y":0},{"x":1569385500000,"y":0},{"x":1569385560000,"y":0},{"x":1569385620000,"y":0},{"x":1569385680000,"y":0},{"x":1569385740000,"y":0},{"x":1569385800000,"y":0},{"x":1569385860000,"y":0},{"x":1569385920000,"y":0.01},{"x":1569385980000,"y":0},{"x":1569386040000,"y":0},{"x":1569386100000,"y":0},{"x":1569386160000,"y":0},{"x":1569386220000,"y":0},{"x":1569386280000,"y":0},{"x":1569386340000,"y":0},{"x":1569386400000,"y":0},{"x":1569386460000,"y":0},{"x":1569386520000,"y":0},{"x":1569386580000,"y":0},{"x":1569386640000,"y":0},{"x":1569386700000,"y":0},{"x":1569386760000,"y":0},{"x":1569386820000,"y":0},{"x":1569386880000,"y":0},{"x":1569386940000,"y":0},{"x":1569387000000,"y":0},{"x":1569387060000,"y":0},{"x":1569387120000,"y":0},{"x":1569387180000,"y":0},{"x":1569387240000,"y":0},{"x":1569387300000,"y":0},{"x":1569387360000,"y":0},{"x":1569387420000,"y":0},{"x":1569387480000,"y":0},{"x":1569387540000,"y":0},{"x":1569387600000,"y":0},{"x":1569387660000,"y":0},{"x":1569387720000,"y":0},{"x":1569387780000,"y":0},{"x":1569387840000,"y":0},{"x":1569387900000,"y":0},{"x":1569387960000,"y":0},{"x":1569388020000,"y":0},{"x":1569388080000,"y":0},{"x":1569388140000,"y":0},{"x":1569388200000,"y":0},{"x":1569388260000,"y":0},{"x":1569388320000,"y":0},{"x":1569388380000,"y":0},{"x":1569388440000,"y":0},{"x":1569388500000,"y":0},{"x":1569388560000,"y":0},{"x":1569388620000,"y":0},{"x":1569388680000,"y":0},{"x":1569388740000,"y":0},{"x":1569388800000,"y":0},{"x":1569388860000,"y":0},{"x":1569388920000,"y":0},{"x":1569388980000,"y":0},{"x":1569389040000,"y":0},{"x":1569389100000,"y":0},{"x":1569389160000,"y":0},{"x":1569389220000,"y":0},{"x":1569389280000,"y":0},{"x":1569389340000,"y":0},{"x":1569389400000,"y":0},{"x":1569389460000,"y":0},{"x":1569389520000,"y":0},{"x":1569389580000,"y":0},{"x":1569389640000,"y":0},{"x":1569389700000,"y":0},{"x":1569389760000,"y":0},{"x":1569389820000,"y":0},{"x":1569389880000,"y":0.01},{"x":1569389940000,"y":0},{"x":1569390000000,"y":0},{"x":1569390060000,"y":0},{"x":1569390120000,"y":0},{"x":1569390180000,"y":0},{"x":1569390240000,"y":0},{"x":1569390300000,"y":0},{"x":1569390360000,"y":0},{"x":1569390420000,"y":0},{"x":1569390480000,"y":0},{"x":1569390540000,"y":0},{"x":1569390600000,"y":0},{"x":1569390660000,"y":0.01},{"x":1569390720000,"y":0.03},{"x":1569390780000,"y":0.02},{"x":1569390840000,"y":0.02},{"x":1569390900000,"y":0.01},{"x":1569390960000,"y":0.01},{"x":1569391020000,"y":0.02},{"x":1569391080000,"y":0.02},{"x":1569391140000,"y":0.01},{"x":1569391200000,"y":0.01},{"x":1569391260000,"y":0.02},{"x":1569391320000,"y":0.02},{"x":1569391380000,"y":0.01},{"x":1569391440000,"y":0.02},{"x":1569391500000,"y":0},{"x":1569391560000,"y":0},{"x":1569391620000,"y":0},{"x":1569391680000,"y":0},{"x":1569391740000,"y":0},{"x":1569391800000,"y":0},{"x":1569391860000,"y":0},{"x":1569391920000,"y":0},{"x":1569391980000,"y":0},{"x":1569392040000,"y":0},{"x":1569392100000,"y":0},{"x":1569392160000,"y":0},{"x":1569392220000,"y":0},{"x":1569392280000,"y":0},{"x":1569392340000,"y":0},{"x":1569392400000,"y":0},{"x":1569392460000,"y":0},{"x":1569392520000,"y":0},{"x":1569392580000,"y":0},{"x":1569392640000,"y":0},{"x":1569392700000,"y":0},{"x":1569392760000,"y":0},{"x":1569392820000,"y":0},{"x":1569392880000,"y":0},{"x":1569392940000,"y":0},{"x":1569393000000,"y":0},{"x":1569393060000,"y":0},{"x":1569393120000,"y":0},{"x":1569393180000,"y":0},{"x":1569393240000,"y":0},{"x":1569393300000,"y":0},{"x":1569393360000,"y":0},{"x":1569393420000,"y":0},{"x":1569393480000,"y":0},{"x":1569393540000,"y":0},{"x":1569393600000,"y":0},{"x":1569393660000,"y":0},{"x":1569393720000,"y":0},{"x":1569393780000,"y":0},{"x":1569393840000,"y":0},{"x":1569393900000,"y":0},{"x":1569393960000,"y":0},{"x":1569394020000,"y":0},{"x":1569394080000,"y":0},{"x":1569394140000,"y":0},{"x":1569394200000,"y":0},{"x":1569394260000,"y":0},{"x":1569394320000,"y":0},{"x":1569394380000,"y":0},{"x":1569394440000,"y":0},{"x":1569394500000,"y":0},{"x":1569394560000,"y":0},{"x":1569394620000,"y":0},{"x":1569394680000,"y":0},{"x":1569394740000,"y":0},{"x":1569394800000,"y":0},{"x":1569394860000,"y":0},{"x":1569394920000,"y":0},{"x":1569394980000,"y":0},{"x":1569395040000,"y":0},{"x":1569395100000,"y":0},{"x":1569395160000,"y":0},{"x":1569395220000,"y":0},{"x":1569395280000,"y":0},{"x":1569395340000,"y":0},{"x":1569395400000,"y":0},{"x":1569395460000,"y":0},{"x":1569395520000,"y":0},{"x":1569395580000,"y":0},{"x":1569395640000,"y":0},{"x":1569395700000,"y":0},{"x":1569395760000,"y":0},{"x":1569395820000,"y":0},{"x":1569395880000,"y":0},{"x":1569395940000,"y":0},{"x":1569396000000,"y":0},{"x":1569396060000,"y":0},{"x":1569396120000,"y":0},{"x":1569396180000,"y":0},{"x":1569396240000,"y":0},{"x":1569396300000,"y":0},{"x":1569396360000,"y":0},{"x":1569396420000,"y":0},{"x":1569396480000,"y":0},{"x":1569396540000,"y":0},{"x":1569396600000,"y":0},{"x":1569396660000,"y":0},{"x":1569396720000,"y":0},{"x":1569396780000,"y":0},{"x":1569396840000,"y":0},{"x":1569396900000,"y":0},{"x":1569396960000,"y":0},{"x":1569397020000,"y":0},{"x":1569397080000,"y":0},{"x":1569397140000,"y":0},{"x":1569397200000,"y":0},{"x":1569397260000,"y":0},{"x":1569397320000,"y":0},{"x":1569397380000,"y":0},{"x":1569397440000,"y":0},{"x":1569397500000,"y":0},{"x":1569397560000,"y":0},{"x":1569397620000,"y":0},{"x":1569397680000,"y":0},{"x":1569397740000,"y":0},{"x":1569397800000,"y":0},{"x":1569397860000,"y":0},{"x":1569397920000,"y":0},{"x":1569397980000,"y":0},{"x":1569398040000,"y":0},{"x":1569398100000,"y":0},{"x":1569398160000,"y":0},{"x":1569398220000,"y":0},{"x":1569398280000,"y":0},{"x":1569398340000,"y":0},{"x":1569398400000,"y":0},{"x":1569398460000,"y":0},{"x":1569398520000,"y":0},{"x":1569398580000,"y":0},{"x":1569398640000,"y":0},{"x":1569398700000,"y":0},{"x":1569398760000,"y":0},{"x":1569398820000,"y":0},{"x":1569398880000,"y":0.01},{"x":1569398940000,"y":0},{"x":1569399000000,"y":0},{"x":1569399060000,"y":0},{"x":1569399120000,"y":0},{"x":1569399180000,"y":0},{"x":1569399240000,"y":0},{"x":1569399300000,"y":0},{"x":1569399360000,"y":0},{"x":1569399420000,"y":0},{"x":1569399480000,"y":0},{"x":1569399540000,"y":0},{"x":1569399600000,"y":0},{"x":1569399660000,"y":0},{"x":1569399720000,"y":0},{"x":1569399780000,"y":0},{"x":1569399840000,"y":0},{"x":1569399900000,"y":0},{"x":1569399960000,"y":0},{"x":1569400020000,"y":0},{"x":1569400080000,"y":0},{"x":1569400140000,"y":0},{"x":1569400200000,"y":0},{"x":1569400260000,"y":0},{"x":1569400320000,"y":0},{"x":1569400380000,"y":0},{"x":1569400440000,"y":0},{"x":1569400500000,"y":0},{"x":1569400560000,"y":0},{"x":1569400620000,"y":0},{"x":1569400680000,"y":0},{"x":1569400740000,"y":0},{"x":1569400800000,"y":0},{"x":1569400860000,"y":0},{"x":1569400920000,"y":0},{"x":1569400980000,"y":0},{"x":1569401040000,"y":0},{"x":1569401100000,"y":0},{"x":1569401160000,"y":0},{"x":1569401220000,"y":0},{"x":1569401280000,"y":0},{"x":1569401340000,"y":0},{"x":1569401400000,"y":0},{"x":1569401460000,"y":0},{"x":1569401520000,"y":0},{"x":1569401580000,"y":0},{"x":1569401640000,"y":0},{"x":1569401700000,"y":0},{"x":1569401760000,"y":0},{"x":1569401820000,"y":0},{"x":1569401880000,"y":0},{"x":1569401940000,"y":0},{"x":1569402000000,"y":0},{"x":1569402060000,"y":0},{"x":1569402120000,"y":0},{"x":1569402180000,"y":0},{"x":1569402240000,"y":0},{"x":1569402300000,"y":0},{"x":1569402360000,"y":0},{"x":1569402420000,"y":0},{"x":1569402480000,"y":0},{"x":1569402540000,"y":0},{"x":1569402600000,"y":0},{"x":1569402660000,"y":0},{"x":1569402720000,"y":0},{"x":1569402780000,"y":0},{"x":1569402840000,"y":0},{"x":1569402900000,"y":0},{"x":1569402960000,"y":0},{"x":1569403020000,"y":0},{"x":1569403080000,"y":0},{"x":1569403140000,"y":0},{"x":1569403200000,"y":0},{"x":1569403260000,"y":0},{"x":1569403320000,"y":0},{"x":1569403380000,"y":0},{"x":1569403440000,"y":0},{"x":1569403500000,"y":0},{"x":1569403560000,"y":0},{"x":1569403620000,"y":0},{"x":1569403680000,"y":0},{"x":1569403740000,"y":0},{"x":1569403800000,"y":0},{"x":1569403860000,"y":0},{"x":1569403920000,"y":0},{"x":1569403980000,"y":0},{"x":1569404040000,"y":0},{"x":1569404100000,"y":0},{"x":1569404160000,"y":0},{"x":1569404220000,"y":0},{"x":1569404280000,"y":0},{"x":1569404340000,"y":0},{"x":1569404400000,"y":0},{"x":1569404460000,"y":0},{"x":1569404520000,"y":0.01},{"x":1569404580000,"y":0},{"x":1569404640000,"y":0},{"x":1569404700000,"y":0},{"x":1569404760000,"y":0},{"x":1569404820000,"y":0},{"x":1569404880000,"y":0},{"x":1569404940000,"y":0},{"x":1569405000000,"y":0},{"x":1569405060000,"y":0},{"x":1569405120000,"y":0},{"x":1569405180000,"y":0},{"x":1569405240000,"y":0},{"x":1569405300000,"y":0},{"x":1569405360000,"y":0},{"x":1569405420000,"y":0},{"x":1569405480000,"y":0},{"x":1569405540000,"y":0},{"x":1569405600000,"y":0},{"x":1569405660000,"y":0},{"x":1569405720000,"y":0},{"x":1569405780000,"y":0},{"x":1569405840000,"y":0},{"x":1569405900000,"y":0},{"x":1569405960000,"y":0},{"x":1569406020000,"y":0},{"x":1569406080000,"y":0},{"x":1569406140000,"y":0},{"x":1569406200000,"y":0},{"x":1569406260000,"y":0},{"x":1569406320000,"y":0},{"x":1569406380000,"y":0},{"x":1569406440000,"y":0},{"x":1569406500000,"y":0},{"x":1569406560000,"y":0},{"x":1569406620000,"y":0},{"x":1569406680000,"y":0},{"x":1569406740000,"y":0},{"x":1569406800000,"y":0},{"x":1569406860000,"y":0},{"x":1569406920000,"y":0},{"x":1569406980000,"y":0},{"x":1569407040000,"y":0},{"x":1569407100000,"y":0},{"x":1569407160000,"y":0},{"x":1569407220000,"y":0},{"x":1569407280000,"y":0},{"x":1569407340000,"y":0},{"x":1569407400000,"y":0},{"x":1569407460000,"y":0},{"x":1569407520000,"y":0},{"x":1569407580000,"y":0},{"x":1569407640000,"y":0},{"x":1569407700000,"y":0},{"x":1569407760000,"y":0},{"x":1569407820000,"y":0},{"x":1569407880000,"y":0},{"x":1569407940000,"y":0},{"x":1569408000000,"y":0},{"x":1569408060000,"y":0},{"x":1569408120000,"y":0},{"x":1569408180000,"y":0},{"x":1569408240000,"y":0},{"x":1569408300000,"y":0},{"x":1569408360000,"y":0},{"x":1569408420000,"y":0},{"x":1569408480000,"y":0},{"x":1569408540000,"y":0},{"x":1569408600000,"y":0},{"x":1569408660000,"y":0},{"x":1569408720000,"y":0},{"x":1569408780000,"y":0},{"x":1569408840000,"y":0},{"x":1569408900000,"y":0},{"x":1569408960000,"y":0},{"x":1569409020000,"y":0},{"x":1569409080000,"y":0},{"x":1569409140000,"y":0},{"x":1569409200000,"y":0},{"x":1569409260000,"y":0.01},{"x":1569409320000,"y":0},{"x":1569409380000,"y":0},{"x":1569409440000,"y":0},{"x":1569409500000,"y":0},{"x":1569409560000,"y":0},{"x":1569409620000,"y":0},{"x":1569409680000,"y":0},{"x":1569409740000,"y":0},{"x":1569409800000,"y":0},{"x":1569409860000,"y":0},{"x":1569409920000,"y":0},{"x":1569409980000,"y":0},{"x":1569410040000,"y":0},{"x":1569410100000,"y":0},{"x":1569410160000,"y":0},{"x":1569410220000,"y":0},{"x":1569410280000,"y":0},{"x":1569410340000,"y":0},{"x":1569410400000,"y":0},{"x":1569410460000,"y":0},{"x":1569410520000,"y":0},{"x":1569410580000,"y":0},{"x":1569410640000,"y":0},{"x":1569410700000,"y":0},{"x":1569410760000,"y":0},{"x":1569410820000,"y":0},{"x":1569410880000,"y":0.03},{"x":1569410940000,"y":0},{"x":1569411000000,"y":0},{"x":1569411060000,"y":0},{"x":1569411120000,"y":0},{"x":1569411180000,"y":0},{"x":1569411240000,"y":0},{"x":1569411300000,"y":0},{"x":1569411360000,"y":0},{"x":1569411420000,"y":0},{"x":1569411480000,"y":0},{"x":1569411540000,"y":0},{"x":1569411600000,"y":0},{"x":1569411660000,"y":0},{"x":1569411720000,"y":0},{"x":1569411780000,"y":0},{"x":1569411840000,"y":0.01},{"x":1569411900000,"y":0},{"x":1569411960000,"y":0},{"x":1569412020000,"y":0},{"x":1569412080000,"y":0},{"x":1569412140000,"y":0},{"x":1569412200000,"y":0},{"x":1569412260000,"y":0},{"x":1569412320000,"y":0},{"x":1569412380000,"y":0},{"x":1569412440000,"y":0},{"x":1569412500000,"y":0},{"x":1569412560000,"y":0},{"x":1569412620000,"y":0},{"x":1569412680000,"y":0},{"x":1569412740000,"y":0},{"x":1569412800000,"y":0},{"x":1569412860000,"y":0},{"x":1569412920000,"y":0},{"x":1569412980000,"y":0},{"x":1569413040000,"y":0},{"x":1569413100000,"y":0},{"x":1569413160000,"y":0},{"x":1569413220000,"y":0},{"x":1569413280000,"y":0},{"x":1569413340000,"y":0},{"x":1569413400000,"y":0},{"x":1569413460000,"y":0},{"x":1569413520000,"y":0},{"x":1569413580000,"y":0},{"x":1569413640000,"y":0},{"x":1569413700000,"y":0},{"x":1569413760000,"y":0},{"x":1569413820000,"y":0},{"x":1569413880000,"y":0},{"x":1569413940000,"y":0},{"x":1569414000000,"y":0},{"x":1569414060000,"y":0},{"x":1569414120000,"y":0},{"x":1569414180000,"y":0},{"x":1569414240000,"y":0},{"x":1569414300000,"y":0},{"x":1569414360000,"y":0},{"x":1569414420000,"y":0},{"x":1569414480000,"y":0},{"x":1569414540000,"y":0},{"x":1569414600000,"y":0},{"x":1569414660000,"y":0},{"x":1569414720000,"y":0},{"x":1569414780000,"y":0},{"x":1569414840000,"y":0},{"x":1569414900000,"y":0},{"x":1569414960000,"y":0},{"x":1569415020000,"y":0},{"x":1569415080000,"y":0},{"x":1569415140000,"y":0},{"x":1569415200000,"y":0},{"x":1569415260000,"y":0},{"x":1569415320000,"y":0},{"x":1569415380000,"y":0},{"x":1569415440000,"y":0},{"x":1569415500000,"y":0},{"x":1569415560000,"y":0},{"x":1569415620000,"y":0},{"x":1569415680000,"y":0},{"x":1569415740000,"y":0},{"x":1569415800000,"y":0},{"x":1569415860000,"y":0},{"x":1569415920000,"y":0},{"x":1569415980000,"y":0},{"x":1569416040000,"y":0},{"x":1569416100000,"y":0},{"x":1569416160000,"y":0},{"x":1569416220000,"y":0},{"x":1569416280000,"y":0},{"x":1569416340000,"y":0},{"x":1569416400000,"y":0},{"x":1569416460000,"y":0},{"x":1569416520000,"y":0},{"x":1569416580000,"y":0},{"x":1569416640000,"y":0},{"x":1569416700000,"y":0},{"x":1569416760000,"y":0},{"x":1569416820000,"y":0},{"x":1569416880000,"y":0},{"x":1569416940000,"y":0},{"x":1569417000000,"y":0},{"x":1569417060000,"y":0},{"x":1569417120000,"y":0},{"x":1569417180000,"y":0},{"x":1569417240000,"y":0},{"x":1569417300000,"y":0},{"x":1569417360000,"y":0},{"x":1569417420000,"y":0},{"x":1569417480000,"y":0},{"x":1569417540000,"y":0},{"x":1569417600000,"y":0},{"x":1569417660000,"y":0},{"x":1569417720000,"y":0},{"x":1569417780000,"y":0},{"x":1569417840000,"y":0},{"x":1569417900000,"y":0},{"x":1569417960000,"y":0},{"x":1569418020000,"y":0},{"x":1569418080000,"y":0},{"x":1569418140000,"y":0},{"x":1569418200000,"y":0},{"x":1569418260000,"y":0},{"x":1569418320000,"y":0},{"x":1569418380000,"y":0},{"x":1569418440000,"y":0},{"x":1569418500000,"y":0},{"x":1569418560000,"y":0},{"x":1569418620000,"y":0},{"x":1569418680000,"y":0},{"x":1569418740000,"y":0},{"x":1569418800000,"y":0},{"x":1569418860000,"y":0},{"x":1569418920000,"y":0},{"x":1569418980000,"y":0},{"x":1569419040000,"y":0},{"x":1569419100000,"y":0},{"x":1569419160000,"y":0},{"x":1569419220000,"y":0},{"x":1569419280000,"y":0},{"x":1569419340000,"y":0},{"x":1569419400000,"y":0},{"x":1569419460000,"y":0},{"x":1569419520000,"y":0},{"x":1569419580000,"y":0},{"x":1569419640000,"y":0},{"x":1569419700000,"y":0},{"x":1569419760000,"y":0},{"x":1569419820000,"y":0},{"x":1569419880000,"y":0},{"x":1569419940000,"y":0},{"x":1569420000000,"y":0},{"x":1569420060000,"y":0},{"x":1569420120000,"y":0},{"x":1569420180000,"y":0},{"x":1569420240000,"y":0},{"x":1569420300000,"y":0},{"x":1569420360000,"y":0},{"x":1569420420000,"y":0},{"x":1569420480000,"y":0},{"x":1569420540000,"y":0},{"x":1569420600000,"y":0},{"x":1569420660000,"y":0},{"x":1569420720000,"y":0},{"x":1569420780000,"y":0},{"x":1569420840000,"y":0},{"x":1569420900000,"y":0},{"x":1569420960000,"y":0},{"x":1569421020000,"y":0},{"x":1569421080000,"y":0},{"x":1569421140000,"y":0},{"x":1569421200000,"y":0},{"x":1569421260000,"y":0},{"x":1569421320000,"y":0},{"x":1569421380000,"y":0},{"x":1569421440000,"y":0},{"x":1569421500000,"y":0},{"x":1569421560000,"y":0},{"x":1569421620000,"y":0},{"x":1569421680000,"y":0},{"x":1569421740000,"y":0},{"x":1569421800000,"y":0},{"x":1569421860000,"y":0},{"x":1569421920000,"y":0},{"x":1569421980000,"y":0},{"x":1569422040000,"y":0.03},{"x":1569422100000,"y":0.03},{"x":1569422160000,"y":0.03},{"x":1569422220000,"y":0.03},{"x":1569422280000,"y":0.03},{"x":1569422340000,"y":0.05},{"x":1569422400000,"y":0.02},{"x":1569422460000,"y":0.02},{"x":1569422520000,"y":0.01},{"x":1569422580000,"y":0},{"x":1569422640000,"y":0},{"x":1569422700000,"y":0},{"x":1569422760000,"y":0},{"x":1569422820000,"y":0},{"x":1569422880000,"y":0},{"x":1569422940000,"y":0},{"x":1569423000000,"y":0},{"x":1569423060000,"y":0},{"x":1569423120000,"y":0},{"x":1569423180000,"y":0},{"x":1569423240000,"y":0},{"x":1569423300000,"y":0},{"x":1569423360000,"y":0},{"x":1569423420000,"y":0},{"x":1569423480000,"y":0},{"x":1569423540000,"y":0},{"x":1569423600000,"y":0},{"x":1569423660000,"y":0},{"x":1569423720000,"y":0},{"x":1569423780000,"y":0},{"x":1569423840000,"y":0},{"x":1569423900000,"y":0},{"x":1569423960000,"y":0},{"x":1569424020000,"y":0},{"x":1569424080000,"y":0},{"x":1569424140000,"y":0},{"x":1569424200000,"y":0},{"x":1569424260000,"y":0},{"x":1569424320000,"y":0},{"x":1569424380000,"y":0},{"x":1569424440000,"y":0},{"x":1569424500000,"y":0},{"x":1569424560000,"y":0},{"x":1569424620000,"y":0},{"x":1569424680000,"y":0},{"x":1569424740000,"y":0},{"x":1569424800000,"y":0},{"x":1569424860000,"y":0},{"x":1569424920000,"y":0},{"x":1569424980000,"y":0},{"x":1569425040000,"y":0},{"x":1569425100000,"y":0},{"x":1569425160000,"y":0},{"x":1569425220000,"y":0},{"x":1569425280000,"y":0},{"x":1569425340000,"y":0},{"x":1569425400000,"y":0},{"x":1569425460000,"y":0},{"x":1569425520000,"y":0},{"x":1569425580000,"y":0},{"x":1569425640000,"y":0},{"x":1569425700000,"y":0},{"x":1569425760000,"y":0},{"x":1569425820000,"y":0},{"x":1569425880000,"y":0},{"x":1569425940000,"y":0},{"x":1569426000000,"y":0},{"x":1569426060000,"y":0},{"x":1569426120000,"y":0},{"x":1569426180000,"y":0},{"x":1569426240000,"y":0},{"x":1569426300000,"y":0},{"x":1569426360000,"y":0},{"x":1569426420000,"y":0},{"x":1569426480000,"y":0},{"x":1569426540000,"y":0},{"x":1569426600000,"y":0},{"x":1569426660000,"y":0},{"x":1569426720000,"y":0},{"x":1569426780000,"y":0},{"x":1569426840000,"y":0},{"x":1569426900000,"y":0},{"x":1569426960000,"y":0},{"x":1569427020000,"y":0},{"x":1569427080000,"y":0},{"x":1569427140000,"y":0},{"x":1569427200000,"y":0},{"x":1569427260000,"y":0},{"x":1569427320000,"y":0},{"x":1569427380000,"y":0},{"x":1569427440000,"y":0},{"x":1569427500000,"y":0},{"x":1569427560000,"y":0},{"x":1569427620000,"y":0},{"x":1569427680000,"y":0},{"x":1569427740000,"y":0},{"x":1569427800000,"y":0},{"x":1569427860000,"y":0},{"x":1569427920000,"y":0},{"x":1569427980000,"y":0},{"x":1569428040000,"y":0},{"x":1569428100000,"y":0.97},{"x":1569428160000,"y":0},{"x":1569428220000,"y":0},{"x":1569428280000,"y":0},{"x":1569428340000,"y":0},{"x":1569428400000,"y":0.04},{"x":1569428460000,"y":0.91},{"x":1569428520000,"y":0},{"x":1569428580000,"y":0},{"x":1569428640000,"y":0},{"x":1569428700000,"y":0.09},{"x":1569428760000,"y":0.01},{"x":1569428820000,"y":0},{"x":1569428880000,"y":0},{"x":1569428940000,"y":0},{"x":1569429000000,"y":1.57},{"x":1569429060000,"y":0},{"x":1569429120000,"y":2.01},{"x":1569429180000,"y":0.01},{"x":1569429240000,"y":0},{"x":1569429300000,"y":0},{"x":1569429360000,"y":0},{"x":1569429420000,"y":0},{"x":1569429480000,"y":0},{"x":1569429540000,"y":0.72},{"x":1569429600000,"y":0},{"x":1569429660000,"y":0},{"x":1569429720000,"y":0},{"x":1569429780000,"y":0},{"x":1569429840000,"y":0.01},{"x":1569429900000,"y":0},{"x":1569429960000,"y":0},{"x":1569430020000,"y":0},{"x":1569430080000,"y":0},{"x":1569430140000,"y":0},{"x":1569430200000,"y":0},{"x":1569430260000,"y":0},{"x":1569430320000,"y":0},{"x":1569430380000,"y":0},{"x":1569430440000,"y":0},{"x":1569430500000,"y":0.68},{"x":1569430560000,"y":0.01},{"x":1569430620000,"y":0.29},{"x":1569430680000,"y":0.09},{"x":1569430740000,"y":0.01},{"x":1569430800000,"y":0},{"x":1569430860000,"y":0},{"x":1569430920000,"y":0},{"x":1569430980000,"y":0.09},{"x":1569431040000,"y":0},{"x":1569431100000,"y":0.01},{"x":1569431160000,"y":0},{"x":1569431220000,"y":0},{"x":1569431280000,"y":0},{"x":1569431340000,"y":0},{"x":1569431400000,"y":0},{"x":1569431460000,"y":0},{"x":1569431520000,"y":0},{"x":1569431580000,"y":0},{"x":1569431640000,"y":0},{"x":1569431700000,"y":0},{"x":1569431760000,"y":0},{"x":1569431820000,"y":0},{"x":1569431880000,"y":0},{"x":1569431940000,"y":0},{"x":1569432000000,"y":0},{"x":1569432060000,"y":0},{"x":1569432120000,"y":0},{"x":1569432180000,"y":0},{"x":1569432240000,"y":0},{"x":1569432300000,"y":0},{"x":1569432360000,"y":0},{"x":1569432420000,"y":0},{"x":1569432480000,"y":0},{"x":1569432540000,"y":0},{"x":1569432600000,"y":0},{"x":1569432660000,"y":0},{"x":1569432720000,"y":0},{"x":1569432780000,"y":0},{"x":1569432840000,"y":0},{"x":1569432900000,"y":0},{"x":1569432960000,"y":0},{"x":1569433020000,"y":0},{"x":1569433080000,"y":0},{"x":1569433140000,"y":0.08},{"x":1569433200000,"y":0.01},{"x":1569433260000,"y":0.01},{"x":1569433320000,"y":0},{"x":1569433380000,"y":0},{"x":1569433440000,"y":0},{"x":1569433500000,"y":0},{"x":1569433560000,"y":0},{"x":1569433620000,"y":0},{"x":1569433680000,"y":0},{"x":1569433740000,"y":0.01},{"x":1569433800000,"y":0},{"x":1569433860000,"y":0},{"x":1569433920000,"y":0},{"x":1569433980000,"y":0},{"x":1569434040000,"y":0},{"x":1569434100000,"y":0},{"x":1569434160000,"y":0},{"x":1569434220000,"y":0},{"x":1569434280000,"y":0},{"x":1569434340000,"y":0},{"x":1569434400000,"y":0},{"x":1569434460000,"y":0},{"x":1569434520000,"y":0},{"x":1569434580000,"y":0},{"x":1569434640000,"y":0},{"x":1569434700000,"y":0},{"x":1569434760000,"y":0},{"x":1569434820000,"y":0},{"x":1569434880000,"y":0},{"x":1569434940000,"y":0},{"x":1569435000000,"y":0},{"x":1569435060000,"y":0},{"x":1569435120000,"y":0},{"x":1569435180000,"y":0},{"x":1569435240000,"y":0},{"x":1569435300000,"y":0},{"x":1569435360000,"y":0},{"x":1569435420000,"y":0},{"x":1569435480000,"y":0},{"x":1569435540000,"y":0},{"x":1569435600000,"y":0},{"x":1569435660000,"y":0},{"x":1569435720000,"y":0},{"x":1569435780000,"y":0},{"x":1569435840000,"y":0},{"x":1569435900000,"y":0},{"x":1569435960000,"y":0.14},{"x":1569436020000,"y":0.98},{"x":1569436080000,"y":0},{"x":1569436140000,"y":0},{"x":1569436200000,"y":0.01},{"x":1569436260000,"y":0},{"x":1569436320000,"y":0},{"x":1569436380000,"y":0},{"x":1569436440000,"y":0},{"x":1569436500000,"y":0},{"x":1569436560000,"y":0},{"x":1569436620000,"y":0},{"x":1569436680000,"y":0},{"x":1569436740000,"y":0},{"x":1569436800000,"y":0},{"x":1569436860000,"y":0},{"x":1569436920000,"y":0},{"x":1569436980000,"y":0},{"x":1569437040000,"y":0.08},{"x":1569437100000,"y":0.01},{"x":1569437160000,"y":0},{"x":1569437220000,"y":0},{"x":1569437280000,"y":0},{"x":1569437340000,"y":0},{"x":1569437400000,"y":0},{"x":1569437460000,"y":0},{"x":1569437520000,"y":0},{"x":1569437580000,"y":0},{"x":1569437640000,"y":0},{"x":1569437700000,"y":0},{"x":1569437760000,"y":0},{"x":1569437820000,"y":0},{"x":1569437880000,"y":0},{"x":1569437940000,"y":0},{"x":1569438000000,"y":0},{"x":1569438060000,"y":0},{"x":1569438120000,"y":0},{"x":1569438180000,"y":0},{"x":1569438240000,"y":0},{"x":1569438300000,"y":0},{"x":1569438360000,"y":0},{"x":1569438420000,"y":0},{"x":1569438480000,"y":0},{"x":1569438540000,"y":0},{"x":1569438600000,"y":0},{"x":1569438660000,"y":0},{"x":1569438720000,"y":0},{"x":1569438780000,"y":0},{"x":1569438840000,"y":0},{"x":1569438900000,"y":0},{"x":1569438960000,"y":0},{"x":1569439020000,"y":0},{"x":1569439080000,"y":0.04},{"x":1569439140000,"y":0.16},{"x":1569439200000,"y":2.12},{"x":1569439260000,"y":8.45},{"x":1569439320000,"y":36.01},{"x":1569439380000,"y":53.83},{"x":1569439440000,"y":20.21},{"x":1569439500000,"y":0},{"x":1569439560000,"y":0},{"x":1569439620000,"y":0},{"x":1569439680000,"y":0.93},{"x":1569439740000,"y":15.11},{"x":1569439800000,"y":62.84},{"x":1569439860000,"y":5.24},{"x":1569439920000,"y":0.01},{"x":1569439980000,"y":0.07},{"x":1569440040000,"y":0.06},{"x":1569440100000,"y":0.03},{"x":1569440160000,"y":0.1},{"x":1569440220000,"y":0.05},{"x":1569440280000,"y":0.04},{"x":1569440340000,"y":0.18},{"x":1569440400000,"y":0.08},{"x":1569440460000,"y":0.01},{"x":1569440520000,"y":0.02},{"x":1569440580000,"y":0.02},{"x":1569440640000,"y":1.81},{"x":1569440700000,"y":2.08},{"x":1569440760000,"y":0.27},{"x":1569440820000,"y":3.78},{"x":1569440880000,"y":0.09},{"x":1569440940000,"y":0.09},{"x":1569441000000,"y":0.86},{"x":1569441060000,"y":0},{"x":1569441120000,"y":0},{"x":1569441180000,"y":0.13},{"x":1569441240000,"y":0.48},{"x":1569441300000,"y":0},{"x":1569441360000,"y":0},{"x":1569441420000,"y":0.19},{"x":1569441480000,"y":0.01},{"x":1569441540000,"y":0},{"x":1569441600000,"y":0},{"x":1569441660000,"y":0},{"x":1569441720000,"y":0},{"x":1569441780000,"y":0},{"x":1569441840000,"y":0},{"x":1569441900000,"y":0},{"x":1569441960000,"y":0},{"x":1569442020000,"y":0},{"x":1569442080000,"y":0},{"x":1569442140000,"y":0},{"x":1569442200000,"y":0},{"x":1569442260000,"y":0},{"x":1569442320000,"y":0},{"x":1569442380000,"y":0},{"x":1569442440000,"y":0},{"x":1569442500000,"y":0},{"x":1569442560000,"y":0},{"x":1569442620000,"y":0},{"x":1569442680000,"y":0},{"x":1569442740000,"y":0.01},{"x":1569442800000,"y":0},{"x":1569442860000,"y":0},{"x":1569442920000,"y":0},{"x":1569442980000,"y":0},{"x":1569443040000,"y":0},{"x":1569443100000,"y":0},{"x":1569443160000,"y":0},{"x":1569443220000,"y":0},{"x":1569443280000,"y":0},{"x":1569443340000,"y":0},{"x":1569443400000,"y":0},{"x":1569443460000,"y":0},{"x":1569443520000,"y":0},{"x":1569443580000,"y":0},{"x":1569443640000,"y":0},{"x":1569443700000,"y":0},{"x":1569443760000,"y":0},{"x":1569443820000,"y":0},{"x":1569443880000,"y":0},{"x":1569443940000,"y":0},{"x":1569444000000,"y":0},{"x":1569444060000,"y":0},{"x":1569444120000,"y":0},{"x":1569444180000,"y":0},{"x":1569444240000,"y":0},{"x":1569444300000,"y":0},{"x":1569444360000,"y":0},{"x":1569444420000,"y":0},{"x":1569444480000,"y":0},{"x":1569444540000,"y":0},{"x":1569444600000,"y":0},{"x":1569444660000,"y":0},{"x":1569444720000,"y":0},{"x":1569444780000,"y":0},{"x":1569444840000,"y":0},{"x":1569444900000,"y":0},{"x":1569444960000,"y":0},{"x":1569445020000,"y":0},{"x":1569445080000,"y":0},{"x":1569445140000,"y":0},{"x":1569445200000,"y":0},{"x":1569445260000,"y":0},{"x":1569445320000,"y":0},{"x":1569445380000,"y":0},{"x":1569445440000,"y":0},{"x":1569445500000,"y":0},{"x":1569445560000,"y":0},{"x":1569445620000,"y":0},{"x":1569445680000,"y":0},{"x":1569445740000,"y":0},{"x":1569445800000,"y":0.96},{"x":1569445860000,"y":0.86},{"x":1569445920000,"y":0},{"x":1569445980000,"y":0},{"x":1569446040000,"y":0},{"x":1569446100000,"y":0},{"x":1569446160000,"y":0},{"x":1569446220000,"y":0},{"x":1569446280000,"y":0},{"x":1569446340000,"y":0.01},{"x":1569446400000,"y":0},{"x":1569446460000,"y":0},{"x":1569446520000,"y":0},{"x":1569446580000,"y":0},{"x":1569446640000,"y":0},{"x":1569446700000,"y":0},{"x":1569446760000,"y":0},{"x":1569446820000,"y":0},{"x":1569446880000,"y":0},{"x":1569446940000,"y":0},{"x":1569447000000,"y":0},{"x":1569447060000,"y":0},{"x":1569447120000,"y":0},{"x":1569447180000,"y":0},{"x":1569447240000,"y":0},{"x":1569447300000,"y":0},{"x":1569447360000,"y":0},{"x":1569447420000,"y":0},{"x":1569447480000,"y":0},{"x":1569447540000,"y":0},{"x":1569447600000,"y":0},{"x":1569447660000,"y":0},{"x":1569447720000,"y":0},{"x":1569447780000,"y":0},{"x":1569447840000,"y":0},{"x":1569447900000,"y":0},{"x":1569447960000,"y":0},{"x":1569448020000,"y":0},{"x":1569448080000,"y":0},{"x":1569448140000,"y":0},{"x":1569448200000,"y":0},{"x":1569448260000,"y":0},{"x":1569448320000,"y":0},{"x":1569448380000,"y":0},{"x":1569448440000,"y":0.01},{"x":1569448500000,"y":0},{"x":1569448560000,"y":0},{"x":1569448620000,"y":0},{"x":1569448680000,"y":0},{"x":1569448740000,"y":0},{"x":1569448800000,"y":0},{"x":1569448860000,"y":0},{"x":1569448920000,"y":0.1},{"x":1569448980000,"y":0},{"x":1569449040000,"y":0},{"x":1569449100000,"y":0},{"x":1569449160000,"y":0},{"x":1569449220000,"y":0},{"x":1569449280000,"y":0},{"x":1569449340000,"y":0.08},{"x":1569449400000,"y":0.01},{"x":1569449460000,"y":0},{"x":1569449520000,"y":0},{"x":1569449580000,"y":0},{"x":1569449640000,"y":0},{"x":1569449700000,"y":0},{"x":1569449760000,"y":0},{"x":1569449820000,"y":0},{"x":1569449880000,"y":0},{"x":1569449940000,"y":0.01},{"x":1569450000000,"y":0},{"x":1569450060000,"y":0},{"x":1569450120000,"y":0},{"x":1569450180000,"y":0},{"x":1569450240000,"y":0},{"x":1569450300000,"y":0},{"x":1569450360000,"y":0},{"x":1569450420000,"y":0},{"x":1569450480000,"y":0},{"x":1569450540000,"y":0},{"x":1569450600000,"y":0},{"x":1569450660000,"y":0},{"x":1569450720000,"y":0},{"x":1569450780000,"y":0},{"x":1569450840000,"y":0},{"x":1569450900000,"y":0},{"x":1569450960000,"y":0},{"x":1569451020000,"y":0},{"x":1569451080000,"y":0},{"x":1569451140000,"y":0},{"x":1569451200000,"y":0},{"x":1569451260000,"y":0},{"x":1569451320000,"y":0},{"x":1569451380000,"y":0},{"x":1569451440000,"y":0},{"x":1569451500000,"y":0},{"x":1569451560000,"y":0},{"x":1569451620000,"y":0},{"x":1569451680000,"y":0},{"x":1569451740000,"y":0},{"x":1569451800000,"y":0},{"x":1569451860000,"y":0},{"x":1569451920000,"y":0},{"x":1569451980000,"y":0},{"x":1569452040000,"y":0.02},{"x":1569452100000,"y":0},{"x":1569452160000,"y":0},{"x":1569452220000,"y":0},{"x":1569452280000,"y":0},{"x":1569452340000,"y":0},{"x":1569452400000,"y":0},{"x":1569452460000,"y":0},{"x":1569452520000,"y":0},{"x":1569452580000,"y":0},{"x":1569452640000,"y":0},{"x":1569452700000,"y":0},{"x":1569452760000,"y":0},{"x":1569452820000,"y":0},{"x":1569452880000,"y":0},{"x":1569452940000,"y":0},{"x":1569453000000,"y":0},{"x":1569453060000,"y":0},{"x":1569453120000,"y":0},{"x":1569453180000,"y":0},{"x":1569453240000,"y":0},{"x":1569453300000,"y":0},{"x":1569453360000,"y":0},{"x":1569453420000,"y":0},{"x":1569453480000,"y":0},{"x":1569453540000,"y":0.01},{"x":1569453600000,"y":0},{"x":1569453660000,"y":0.01},{"x":1569453720000,"y":0},{"x":1569453780000,"y":0.1},{"x":1569453840000,"y":0},{"x":1569453900000,"y":0.01},{"x":1569453960000,"y":0},{"x":1569454020000,"y":0},{"x":1569454080000,"y":0},{"x":1569454140000,"y":0},{"x":1569454200000,"y":0},{"x":1569454260000,"y":0},{"x":1569454320000,"y":0},{"x":1569454380000,"y":0},{"x":1569454440000,"y":0},{"x":1569454500000,"y":0},{"x":1569454560000,"y":0.08},{"x":1569454620000,"y":0},{"x":1569454680000,"y":0},{"x":1569454740000,"y":0},{"x":1569454800000,"y":0},{"x":1569454860000,"y":0},{"x":1569454920000,"y":0},{"x":1569454980000,"y":0},{"x":1569455040000,"y":0},{"x":1569455100000,"y":0},{"x":1569455160000,"y":0},{"x":1569455220000,"y":0},{"x":1569455280000,"y":0},{"x":1569455340000,"y":0},{"x":1569455400000,"y":0},{"x":1569455460000,"y":0},{"x":1569455520000,"y":0},{"x":1569455580000,"y":0.01},{"x":1569455640000,"y":0},{"x":1569455700000,"y":0},{"x":1569455760000,"y":0},{"x":1569455820000,"y":0},{"x":1569455880000,"y":0},{"x":1569455940000,"y":0},{"x":1569456000000,"y":0},{"x":1569456060000,"y":0},{"x":1569456120000,"y":0},{"x":1569456180000,"y":0},{"x":1569456240000,"y":0},{"x":1569456300000,"y":0},{"x":1569456360000,"y":0},{"x":1569456420000,"y":0},{"x":1569456480000,"y":0},{"x":1569456540000,"y":0},{"x":1569456600000,"y":0},{"x":1569456660000,"y":0},{"x":1569456720000,"y":0},{"x":1569456780000,"y":0},{"x":1569456840000,"y":0},{"x":1569456900000,"y":0},{"x":1569456960000,"y":0},{"x":1569457020000,"y":0},{"x":1569457080000,"y":0},{"x":1569457140000,"y":0.01},{"x":1569457200000,"y":0},{"x":1569457260000,"y":0},{"x":1569457320000,"y":0},{"x":1569457380000,"y":0.1},{"x":1569457440000,"y":0},{"x":1569457500000,"y":0},{"x":1569457560000,"y":0},{"x":1569457620000,"y":0},{"x":1569457680000,"y":0},{"x":1569457740000,"y":0},{"x":1569457800000,"y":0},{"x":1569457860000,"y":0},{"x":1569457920000,"y":0},{"x":1569457980000,"y":0},{"x":1569458040000,"y":0},{"x":1569458100000,"y":0},{"x":1569458160000,"y":0.01},{"x":1569458220000,"y":0},{"x":1569458280000,"y":0},{"x":1569458340000,"y":0},{"x":1569458400000,"y":0},{"x":1569458460000,"y":0},{"x":1569458520000,"y":0},{"x":1569458580000,"y":0},{"x":1569458640000,"y":0},{"x":1569458700000,"y":0},{"x":1569458760000,"y":0},{"x":1569458820000,"y":0},{"x":1569458880000,"y":0},{"x":1569458940000,"y":0},{"x":1569459000000,"y":0},{"x":1569459060000,"y":0},{"x":1569459120000,"y":0},{"x":1569459180000,"y":0},{"x":1569459240000,"y":0},{"x":1569459300000,"y":0},{"x":1569459360000,"y":0},{"x":1569459420000,"y":0},{"x":1569459480000,"y":0},{"x":1569459540000,"y":0},{"x":1569459600000,"y":0},{"x":1569459660000,"y":0},{"x":1569459720000,"y":0},{"x":1569459780000,"y":0},{"x":1569459840000,"y":0},{"x":1569459900000,"y":0},{"x":1569459960000,"y":0},{"x":1569460020000,"y":0},{"x":1569460080000,"y":0},{"x":1569460140000,"y":0},{"x":1569460200000,"y":0},{"x":1569460260000,"y":0},{"x":1569460320000,"y":0},{"x":1569460380000,"y":0},{"x":1569460440000,"y":0},{"x":1569460500000,"y":0},{"x":1569460560000,"y":0},{"x":1569460620000,"y":0},{"x":1569460680000,"y":0},{"x":1569460740000,"y":0.01},{"x":1569460800000,"y":0},{"x":1569460860000,"y":0.01},{"x":1569460920000,"y":0},{"x":1569460980000,"y":0},{"x":1569461040000,"y":0},{"x":1569461100000,"y":0},{"x":1569461160000,"y":0},{"x":1569461220000,"y":0},{"x":1569461280000,"y":0},{"x":1569461340000,"y":0},{"x":1569461400000,"y":0},{"x":1569461460000,"y":0},{"x":1569461520000,"y":0},{"x":1569461580000,"y":0},{"x":1569461640000,"y":0},{"x":1569461700000,"y":0},{"x":1569461760000,"y":0},{"x":1569461820000,"y":0},{"x":1569461880000,"y":0},{"x":1569461940000,"y":0},{"x":1569462000000,"y":0},{"x":1569462060000,"y":0},{"x":1569462120000,"y":0},{"x":1569462180000,"y":0},{"x":1569462240000,"y":0},{"x":1569462300000,"y":0},{"x":1569462360000,"y":0},{"x":1569462420000,"y":0},{"x":1569462480000,"y":0},{"x":1569462540000,"y":0},{"x":1569462600000,"y":0},{"x":1569462660000,"y":0},{"x":1569462720000,"y":0},{"x":1569462780000,"y":0},{"x":1569462840000,"y":0},{"x":1569462900000,"y":0},{"x":1569462960000,"y":0},{"x":1569463020000,"y":0},{"x":1569463080000,"y":0},{"x":1569463140000,"y":0},{"x":1569463200000,"y":0},{"x":1569463260000,"y":0},{"x":1569463320000,"y":0},{"x":1569463380000,"y":0},{"x":1569463440000,"y":0},{"x":1569463500000,"y":0},{"x":1569463560000,"y":0},{"x":1569463620000,"y":0},{"x":1569463680000,"y":0},{"x":1569463740000,"y":0},{"x":1569463800000,"y":0},{"x":1569463860000,"y":0},{"x":1569463920000,"y":0},{"x":1569463980000,"y":0},{"x":1569464040000,"y":0},{"x":1569464100000,"y":0},{"x":1569464160000,"y":0},{"x":1569464220000,"y":0},{"x":1569464280000,"y":0.01},{"x":1569464340000,"y":0.01},{"x":1569464400000,"y":0},{"x":1569464460000,"y":0},{"x":1569464520000,"y":0},{"x":1569464580000,"y":0},{"x":1569464640000,"y":0.12},{"x":1569464700000,"y":0.02},{"x":1569464760000,"y":0.01},{"x":1569464820000,"y":0},{"x":1569464880000,"y":0.28},{"x":1569464940000,"y":0},{"x":1569465000000,"y":0},{"x":1569465060000,"y":0.14},{"x":1569465120000,"y":0.07},{"x":1569465180000,"y":0},{"x":1569465240000,"y":0},{"x":1569465300000,"y":0},{"x":1569465360000,"y":0},{"x":1569465420000,"y":0.07},{"x":1569465480000,"y":0.14},{"x":1569465540000,"y":0.58},{"x":1569465600000,"y":0.48},{"x":1569465660000,"y":0.31},{"x":1569465720000,"y":0},{"x":1569465780000,"y":0.1},{"x":1569465840000,"y":0.24},{"x":1569465900000,"y":0.24},{"x":1569465960000,"y":0},{"x":1569466020000,"y":0},{"x":1569466080000,"y":0},{"x":1569466140000,"y":0},{"x":1569466200000,"y":0},{"x":1569466260000,"y":0.28},{"x":1569466320000,"y":0},{"x":1569466380000,"y":0},{"x":1569466440000,"y":0},{"x":1569466500000,"y":0},{"x":1569466560000,"y":0},{"x":1569466620000,"y":0.07},{"x":1569466680000,"y":0},{"x":1569466740000,"y":0},{"x":1569466800000,"y":0},{"x":1569466860000,"y":0},{"x":1569466920000,"y":0},{"x":1569466980000,"y":0.17},{"x":1569467040000,"y":0.16},{"x":1569467100000,"y":0.02},{"x":1569467160000,"y":0.25},{"x":1569467220000,"y":0.12},{"x":1569467280000,"y":0.92},{"x":1569467340000,"y":0.65},{"x":1569467400000,"y":0},{"x":1569467460000,"y":2.13},{"x":1569467520000,"y":1.61},{"x":1569467580000,"y":0.36},{"x":1569467640000,"y":0},{"x":1569467700000,"y":1},{"x":1569467760000,"y":0},{"x":1569467820000,"y":1.07},{"x":1569467880000,"y":0.71},{"x":1569467940000,"y":1.95},{"x":1569468000000,"y":0},{"x":1569468060000,"y":3.03},{"x":1569468120000,"y":0},{"x":1569468180000,"y":0},{"x":1569468240000,"y":0.01},{"x":1569468300000,"y":0.36},{"x":1569468360000,"y":0},{"x":1569468420000,"y":0},{"x":1569468480000,"y":0},{"x":1569468540000,"y":0},{"x":1569468600000,"y":0},{"x":1569468660000,"y":0.01},{"x":1569468720000,"y":0},{"x":1569468780000,"y":0},{"x":1569468840000,"y":0},{"x":1569468900000,"y":0},{"x":1569468960000,"y":0},{"x":1569469020000,"y":0},{"x":1569469080000,"y":0},{"x":1569469140000,"y":0},{"x":1569469200000,"y":0},{"x":1569469260000,"y":0.32},{"x":1569469320000,"y":0},{"x":1569469380000,"y":0.33},{"x":1569469440000,"y":0.07},{"x":1569469500000,"y":0},{"x":1569469560000,"y":0},{"x":1569469620000,"y":0},{"x":1569469680000,"y":0},{"x":1569469740000,"y":0},{"x":1569469800000,"y":0},{"x":1569469860000,"y":0},{"x":1569469920000,"y":0},{"x":1569469980000,"y":0},{"x":1569470040000,"y":0},{"x":1569470100000,"y":0},{"x":1569470160000,"y":0},{"x":1569470220000,"y":0},{"x":1569470280000,"y":0},{"x":1569470340000,"y":0},{"x":1569470400000,"y":0.32},{"x":1569470460000,"y":0},{"x":1569470520000,"y":0.32},{"x":1569470580000,"y":0.32},{"x":1569470640000,"y":0},{"x":1569470700000,"y":0.32},{"x":1569470760000,"y":0},{"x":1569470820000,"y":0.65},{"x":1569470880000,"y":0.33},{"x":1569470940000,"y":0},{"x":1569471000000,"y":0.32},{"x":1569471060000,"y":0.93},{"x":1569471120000,"y":0.37},{"x":1569471180000,"y":0},{"x":1569471240000,"y":0.33},{"x":1569471300000,"y":0},{"x":1569471360000,"y":0.32},{"x":1569471420000,"y":0.33},{"x":1569471480000,"y":0.65},{"x":1569471540000,"y":0.33},{"x":1569471600000,"y":0.01},{"x":1569471660000,"y":0.33},{"x":1569471720000,"y":0.33},{"x":1569471780000,"y":0},{"x":1569471840000,"y":0.01},{"x":1569471900000,"y":0.65},{"x":1569471960000,"y":0.33},{"x":1569472020000,"y":0},{"x":1569472080000,"y":0.33},{"x":1569472140000,"y":0.68},{"x":1569472200000,"y":0},{"x":1569472260000,"y":0},{"x":1569472320000,"y":0.33},{"x":1569472380000,"y":0.32},{"x":1569472440000,"y":0.65},{"x":1569472500000,"y":1.33},{"x":1569472560000,"y":0},{"x":1569472620000,"y":0},{"x":1569472680000,"y":0},{"x":1569472740000,"y":0},{"x":1569472800000,"y":0},{"x":1569472860000,"y":0},{"x":1569472920000,"y":0},{"x":1569472980000,"y":0},{"x":1569473040000,"y":0},{"x":1569473100000,"y":0},{"x":1569473160000,"y":0.32},{"x":1569473220000,"y":0},{"x":1569473280000,"y":0},{"x":1569473340000,"y":0},{"x":1569473400000,"y":0},{"x":1569473460000,"y":0},{"x":1569473520000,"y":0},{"x":1569473580000,"y":0},{"x":1569473640000,"y":0},{"x":1569473700000,"y":0.31},{"x":1569473760000,"y":0.66},{"x":1569473820000,"y":0},{"x":1569473880000,"y":0.65},{"x":1569473940000,"y":0.61},{"x":1569474000000,"y":0.69},{"x":1569474060000,"y":0.71},{"x":1569474120000,"y":0.65},{"x":1569474180000,"y":0.33},{"x":1569474240000,"y":0},{"x":1569474300000,"y":0},{"x":1569474360000,"y":0},{"x":1569474420000,"y":0},{"x":1569474480000,"y":0},{"x":1569474540000,"y":0},{"x":1569474600000,"y":0},{"x":1569474660000,"y":0},{"x":1569474720000,"y":0},{"x":1569474780000,"y":0},{"x":1569474840000,"y":0.97},{"x":1569474900000,"y":0.65},{"x":1569474960000,"y":0.65},{"x":1569475020000,"y":1},{"x":1569475080000,"y":0.97},{"x":1569475140000,"y":1.02},{"x":1569475200000,"y":0.33},{"x":1569475260000,"y":0},{"x":1569475320000,"y":0},{"x":1569475380000,"y":0.01},{"x":1569475440000,"y":0.01},{"x":1569475500000,"y":0},{"x":1569475560000,"y":0},{"x":1569475620000,"y":0},{"x":1569475680000,"y":0.84},{"x":1569475740000,"y":0.49},{"x":1569475800000,"y":0.85},{"x":1569475860000,"y":0.42},{"x":1569475920000,"y":1.36},{"x":1569475980000,"y":1.29},{"x":1569476040000,"y":0},{"x":1569476100000,"y":0.43},{"x":1569476160000,"y":0},{"x":1569476220000,"y":0},{"x":1569476280000,"y":0},{"x":1569476340000,"y":0},{"x":1569476400000,"y":0},{"x":1569476460000,"y":0.42},{"x":1569476520000,"y":0},{"x":1569476580000,"y":0},{"x":1569476640000,"y":0},{"x":1569476700000,"y":0},{"x":1569476760000,"y":0},{"x":1569476820000,"y":0},{"x":1569476880000,"y":0},{"x":1569476940000,"y":0},{"x":1569477000000,"y":0},{"x":1569477060000,"y":0},{"x":1569477120000,"y":0},{"x":1569477180000,"y":3.79},{"x":1569477240000,"y":0},{"x":1569477300000,"y":0},{"x":1569477360000,"y":0},{"x":1569477420000,"y":0.01},{"x":1569477480000,"y":0},{"x":1569477540000,"y":0},{"x":1569477600000,"y":0},{"x":1569477660000,"y":0},{"x":1569477720000,"y":0.01},{"x":1569477780000,"y":0},{"x":1569477840000,"y":0},{"x":1569477900000,"y":0},{"x":1569477960000,"y":0},{"x":1569478020000,"y":0},{"x":1569478080000,"y":0},{"x":1569478140000,"y":0},{"x":1569478200000,"y":0},{"x":1569478260000,"y":0},{"x":1569478320000,"y":0},{"x":1569478380000,"y":0},{"x":1569478440000,"y":0},{"x":1569478500000,"y":0},{"x":1569478560000,"y":0},{"x":1569478620000,"y":0},{"x":1569478680000,"y":0},{"x":1569478740000,"y":0.01},{"x":1569478800000,"y":0},{"x":1569478860000,"y":0},{"x":1569478920000,"y":0},{"x":1569478980000,"y":0},{"x":1569479040000,"y":0.01},{"x":1569479100000,"y":0},{"x":1569479160000,"y":0},{"x":1569479220000,"y":0},{"x":1569479280000,"y":0},{"x":1569479340000,"y":0},{"x":1569479400000,"y":0},{"x":1569479460000,"y":0},{"x":1569479520000,"y":0},{"x":1569479580000,"y":0},{"x":1569479640000,"y":0},{"x":1569479700000,"y":0},{"x":1569479760000,"y":0},{"x":1569479820000,"y":0},{"x":1569479880000,"y":0},{"x":1569479940000,"y":0},{"x":1569480000000,"y":0},{"x":1569480060000,"y":0},{"x":1569480120000,"y":0},{"x":1569480180000,"y":0},{"x":1569480240000,"y":0},{"x":1569480300000,"y":0},{"x":1569480360000,"y":0},{"x":1569480420000,"y":0},{"x":1569480480000,"y":0},{"x":1569480540000,"y":0},{"x":1569480600000,"y":0},{"x":1569480660000,"y":0},{"x":1569480720000,"y":0},{"x":1569480780000,"y":0},{"x":1569480840000,"y":0},{"x":1569480900000,"y":0},{"x":1569480960000,"y":0},{"x":1569481020000,"y":0},{"x":1569481080000,"y":0},{"x":1569481140000,"y":0},{"x":1569481200000,"y":0},{"x":1569481260000,"y":0},{"x":1569481320000,"y":0},{"x":1569481380000,"y":0},{"x":1569481440000,"y":0},{"x":1569481500000,"y":0},{"x":1569481560000,"y":0},{"x":1569481620000,"y":0},{"x":1569481680000,"y":0},{"x":1569481740000,"y":0},{"x":1569481800000,"y":0},{"x":1569481860000,"y":0},{"x":1569481920000,"y":0},{"x":1569481980000,"y":0},{"x":1569482040000,"y":0},{"x":1569482100000,"y":0},{"x":1569482160000,"y":0},{"x":1569482220000,"y":0},{"x":1569482280000,"y":0},{"x":1569482340000,"y":0.01},{"x":1569482400000,"y":0},{"x":1569482460000,"y":0},{"x":1569482520000,"y":0},{"x":1569482580000,"y":0},{"x":1569482640000,"y":0.01},{"x":1569482700000,"y":0},{"x":1569482760000,"y":0},{"x":1569482820000,"y":0},{"x":1569482880000,"y":0},{"x":1569482940000,"y":0},{"x":1569483000000,"y":0},{"x":1569483060000,"y":0},{"x":1569483120000,"y":0},{"x":1569483180000,"y":0},{"x":1569483240000,"y":0},{"x":1569483300000,"y":0},{"x":1569483360000,"y":0},{"x":1569483420000,"y":0},{"x":1569483480000,"y":0},{"x":1569483540000,"y":0},{"x":1569483600000,"y":0.01},{"x":1569483660000,"y":0},{"x":1569483720000,"y":0},{"x":1569483780000,"y":0},{"x":1569483840000,"y":0},{"x":1569483900000,"y":0},{"x":1569483960000,"y":0},{"x":1569484020000,"y":0},{"x":1569484080000,"y":0},{"x":1569484140000,"y":0},{"x":1569484200000,"y":0},{"x":1569484260000,"y":0},{"x":1569484320000,"y":0},{"x":1569484380000,"y":0},{"x":1569484440000,"y":0},{"x":1569484500000,"y":0},{"x":1569484560000,"y":0},{"x":1569484620000,"y":0},{"x":1569484680000,"y":0},{"x":1569484740000,"y":0},{"x":1569484800000,"y":0},{"x":1569484860000,"y":0},{"x":1569484920000,"y":0},{"x":1569484980000,"y":0},{"x":1569485040000,"y":0},{"x":1569485100000,"y":0},{"x":1569485160000,"y":0},{"x":1569485220000,"y":0},{"x":1569485280000,"y":0},{"x":1569485340000,"y":0},{"x":1569485400000,"y":0},{"x":1569485460000,"y":0},{"x":1569485520000,"y":0},{"x":1569485580000,"y":0},{"x":1569485640000,"y":0},{"x":1569485700000,"y":0},{"x":1569485760000,"y":0},{"x":1569485820000,"y":0},{"x":1569485880000,"y":0.01},{"x":1569485940000,"y":0.01},{"x":1569486000000,"y":0},{"x":1569486060000,"y":0},{"x":1569486120000,"y":0},{"x":1569486180000,"y":0},{"x":1569486240000,"y":0.01},{"x":1569486300000,"y":0},{"x":1569486360000,"y":0},{"x":1569486420000,"y":0},{"x":1569486480000,"y":0},{"x":1569486540000,"y":0},{"x":1569486600000,"y":0},{"x":1569486660000,"y":0},{"x":1569486720000,"y":0},{"x":1569486780000,"y":0},{"x":1569486840000,"y":0},{"x":1569486900000,"y":0},{"x":1569486960000,"y":0},{"x":1569487020000,"y":0},{"x":1569487080000,"y":0},{"x":1569487140000,"y":0},{"x":1569487200000,"y":0},{"x":1569487260000,"y":0},{"x":1569487320000,"y":0},{"x":1569487380000,"y":0},{"x":1569487440000,"y":0},{"x":1569487500000,"y":0.01},{"x":1569487560000,"y":0},{"x":1569487620000,"y":0},{"x":1569487680000,"y":0},{"x":1569487740000,"y":0},{"x":1569487800000,"y":0},{"x":1569487860000,"y":0},{"x":1569487920000,"y":0},{"x":1569487980000,"y":0},{"x":1569488040000,"y":0},{"x":1569488100000,"y":0},{"x":1569488160000,"y":0},{"x":1569488220000,"y":0},{"x":1569488280000,"y":0},{"x":1569488340000,"y":0},{"x":1569488400000,"y":0},{"x":1569488460000,"y":0},{"x":1569488520000,"y":0},{"x":1569488580000,"y":0},{"x":1569488640000,"y":0},{"x":1569488700000,"y":0},{"x":1569488760000,"y":0},{"x":1569488820000,"y":0},{"x":1569488880000,"y":0},{"x":1569488940000,"y":0},{"x":1569489000000,"y":0},{"x":1569489060000,"y":0},{"x":1569489120000,"y":0},{"x":1569489180000,"y":0},{"x":1569489240000,"y":0},{"x":1569489300000,"y":0},{"x":1569489360000,"y":0},{"x":1569489420000,"y":0},{"x":1569489480000,"y":0},{"x":1569489540000,"y":0.01},{"x":1569489600000,"y":0},{"x":1569489660000,"y":0},{"x":1569489720000,"y":0},{"x":1569489780000,"y":0},{"x":1569489840000,"y":0.01},{"x":1569489900000,"y":0},{"x":1569489960000,"y":0},{"x":1569490020000,"y":0},{"x":1569490080000,"y":0},{"x":1569490140000,"y":0},{"x":1569490200000,"y":0},{"x":1569490260000,"y":0},{"x":1569490320000,"y":0},{"x":1569490380000,"y":0},{"x":1569490440000,"y":0},{"x":1569490500000,"y":0},{"x":1569490560000,"y":0},{"x":1569490620000,"y":0},{"x":1569490680000,"y":0},{"x":1569490740000,"y":0},{"x":1569490800000,"y":0.01},{"x":1569490860000,"y":0},{"x":1569490920000,"y":0},{"x":1569490980000,"y":0},{"x":1569491040000,"y":0},{"x":1569491100000,"y":0},{"x":1569491160000,"y":0},{"x":1569491220000,"y":0},{"x":1569491280000,"y":0},{"x":1569491340000,"y":0},{"x":1569491400000,"y":0},{"x":1569491460000,"y":0},{"x":1569491520000,"y":0},{"x":1569491580000,"y":0},{"x":1569491640000,"y":0},{"x":1569491700000,"y":0},{"x":1569491760000,"y":0},{"x":1569491820000,"y":0},{"x":1569491880000,"y":0},{"x":1569491940000,"y":0},{"x":1569492000000,"y":0},{"x":1569492060000,"y":0},{"x":1569492120000,"y":0},{"x":1569492180000,"y":0},{"x":1569492240000,"y":0},{"x":1569492300000,"y":0},{"x":1569492360000,"y":0},{"x":1569492420000,"y":0},{"x":1569492480000,"y":0},{"x":1569492540000,"y":0},{"x":1569492600000,"y":0},{"x":1569492660000,"y":0},{"x":1569492720000,"y":0},{"x":1569492780000,"y":0},{"x":1569492840000,"y":0},{"x":1569492900000,"y":0},{"x":1569492960000,"y":0},{"x":1569493020000,"y":0},{"x":1569493080000,"y":0},{"x":1569493140000,"y":0.01},{"x":1569493200000,"y":0},{"x":1569493260000,"y":0},{"x":1569493320000,"y":0},{"x":1569493380000,"y":0},{"x":1569493440000,"y":0.01},{"x":1569493500000,"y":0.01},{"x":1569493560000,"y":0},{"x":1569493620000,"y":0},{"x":1569493680000,"y":0},{"x":1569493740000,"y":0},{"x":1569493800000,"y":0},{"x":1569493860000,"y":0},{"x":1569493920000,"y":0},{"x":1569493980000,"y":0},{"x":1569494040000,"y":0},{"x":1569494100000,"y":0},{"x":1569494160000,"y":0},{"x":1569494220000,"y":0},{"x":1569494280000,"y":0},{"x":1569494340000,"y":0},{"x":1569494400000,"y":0},{"x":1569494460000,"y":0},{"x":1569494520000,"y":0},{"x":1569494580000,"y":0},{"x":1569494640000,"y":0},{"x":1569494700000,"y":0},{"x":1569494760000,"y":0.03},{"x":1569494820000,"y":0},{"x":1569494880000,"y":0.02},{"x":1569494940000,"y":0},{"x":1569495000000,"y":0.02},{"x":1569495060000,"y":0},{"x":1569495120000,"y":0.02},{"x":1569495180000,"y":0},{"x":1569495240000,"y":0.02},{"x":1569495300000,"y":0},{"x":1569495360000,"y":0.02},{"x":1569495420000,"y":0},{"x":1569495480000,"y":0.02},{"x":1569495540000,"y":0},{"x":1569495600000,"y":0.02},{"x":1569495660000,"y":0},{"x":1569495720000,"y":0.02},{"x":1569495780000,"y":0},{"x":1569495840000,"y":0.02},{"x":1569495900000,"y":0},{"x":1569495960000,"y":0.02},{"x":1569496020000,"y":0},{"x":1569496080000,"y":0.02},{"x":1569496140000,"y":0},{"x":1569496200000,"y":0.02},{"x":1569496260000,"y":0},{"x":1569496320000,"y":0.02},{"x":1569496380000,"y":0},{"x":1569496440000,"y":0.02},{"x":1569496500000,"y":0},{"x":1569496560000,"y":0.02},{"x":1569496620000,"y":0},{"x":1569496680000,"y":0.02},{"x":1569496740000,"y":0.01},{"x":1569496800000,"y":0.02},{"x":1569496860000,"y":0},{"x":1569496920000,"y":0.02},{"x":1569496980000,"y":0},{"x":1569497040000,"y":0.03},{"x":1569497100000,"y":0},{"x":1569497160000,"y":0.02},{"x":1569497220000,"y":0},{"x":1569497280000,"y":0.02},{"x":1569497340000,"y":0},{"x":1569497400000,"y":0.02},{"x":1569497460000,"y":0},{"x":1569497520000,"y":0.02},{"x":1569497580000,"y":0},{"x":1569497640000,"y":0.03},{"x":1569497700000,"y":0},{"x":1569497760000,"y":0.02},{"x":1569497820000,"y":0},{"x":1569497880000,"y":0.02},{"x":1569497940000,"y":0},{"x":1569498000000,"y":0.02},{"x":1569498060000,"y":0},{"x":1569498120000,"y":0.02},{"x":1569498180000,"y":0},{"x":1569498240000,"y":0.02},{"x":1569498300000,"y":0},{"x":1569498360000,"y":0.02},{"x":1569498420000,"y":0},{"x":1569498480000,"y":0.02},{"x":1569498540000,"y":0},{"x":1569498600000,"y":0.02},{"x":1569498660000,"y":0},{"x":1569498720000,"y":0.02},{"x":1569498780000,"y":0},{"x":1569498840000,"y":0.02},{"x":1569498900000,"y":0},{"x":1569498960000,"y":0.02},{"x":1569499020000,"y":0},{"x":1569499080000,"y":0.02},{"x":1569499140000,"y":0},{"x":1569499200000,"y":0.02},{"x":1569499260000,"y":0},{"x":1569499320000,"y":0.03},{"x":1569499380000,"y":0},{"x":1569499440000,"y":0.02},{"x":1569499500000,"y":0.01},{"x":1569499560000,"y":0},{"x":1569499620000,"y":0.02},{"x":1569499680000,"y":0},{"x":1569499740000,"y":0.02},{"x":1569499800000,"y":0},{"x":1569499860000,"y":0.02},{"x":1569499920000,"y":0},{"x":1569499980000,"y":0.02},{"x":1569500040000,"y":0},{"x":1569500100000,"y":0.02},{"x":1569500160000,"y":0},{"x":1569500220000,"y":0.02},{"x":1569500280000,"y":0},{"x":1569500340000,"y":0.03},{"x":1569500400000,"y":0},{"x":1569500460000,"y":0.02},{"x":1569500520000,"y":0},{"x":1569500580000,"y":0.02},{"x":1569500640000,"y":0.01},{"x":1569500700000,"y":0.02},{"x":1569500760000,"y":0},{"x":1569500820000,"y":0.02},{"x":1569500880000,"y":0},{"x":1569500940000,"y":0.02},{"x":1569501000000,"y":0},{"x":1569501060000,"y":0.02},{"x":1569501120000,"y":0},{"x":1569501180000,"y":0.02},{"x":1569501240000,"y":0},{"x":1569501300000,"y":0.02},{"x":1569501360000,"y":0},{"x":1569501420000,"y":0.02},{"x":1569501480000,"y":0},{"x":1569501540000,"y":0.02},{"x":1569501600000,"y":0},{"x":1569501660000,"y":0.02},{"x":1569501720000,"y":0},{"x":1569501780000,"y":0.02},{"x":1569501840000,"y":0},{"x":1569501900000,"y":0.02},{"x":1569501960000,"y":0},{"x":1569502020000,"y":0.02},{"x":1569502080000,"y":0},{"x":1569502140000,"y":0.02},{"x":1569502200000,"y":0},{"x":1569502260000,"y":0.02},{"x":1569502320000,"y":0},{"x":1569502380000,"y":0.02},{"x":1569502440000,"y":0},{"x":1569502500000,"y":0.02},{"x":1569502560000,"y":0},{"x":1569502620000,"y":0.02},{"x":1569502680000,"y":0},{"x":1569502740000,"y":0.02},{"x":1569502800000,"y":0},{"x":1569502860000,"y":0.02},{"x":1569502920000,"y":0},{"x":1569502980000,"y":0.02},{"x":1569503040000,"y":0},{"x":1569503100000,"y":0.02},{"x":1569503160000,"y":0},{"x":1569503220000,"y":0.02},{"x":1569503280000,"y":0},{"x":1569503340000,"y":0.02},{"x":1569503400000,"y":0},{"x":1569503460000,"y":0.02},{"x":1569503520000,"y":0},{"x":1569503580000,"y":0.02},{"x":1569503640000,"y":0},{"x":1569503700000,"y":0.02},{"x":1569503760000,"y":0},{"x":1569503820000,"y":0.02},{"x":1569503880000,"y":0},{"x":1569503940000,"y":0.03},{"x":1569504000000,"y":0},{"x":1569504060000,"y":0.02},{"x":1569504120000,"y":0},{"x":1569504180000,"y":0.02},{"x":1569504240000,"y":0.01},{"x":1569504300000,"y":0.02},{"x":1569504360000,"y":0},{"x":1569504420000,"y":0.02},{"x":1569504480000,"y":0},{"x":1569504540000,"y":0.02},{"x":1569504600000,"y":0},{"x":1569504660000,"y":0.02},{"x":1569504720000,"y":0},{"x":1569504780000,"y":0.02},{"x":1569504840000,"y":0},{"x":1569504900000,"y":0.02},{"x":1569504960000,"y":0},{"x":1569505020000,"y":0.02},{"x":1569505080000,"y":0},{"x":1569505140000,"y":0.02},{"x":1569505200000,"y":0},{"x":1569505260000,"y":0.02},{"x":1569505320000,"y":0},{"x":1569505380000,"y":0.02},{"x":1569505440000,"y":0},{"x":1569505500000,"y":0.02},{"x":1569505560000,"y":0},{"x":1569505620000,"y":0.02},{"x":1569505680000,"y":0},{"x":1569505740000,"y":0.02},{"x":1569505800000,"y":0},{"x":1569505860000,"y":0.02},{"x":1569505920000,"y":0},{"x":1569505980000,"y":0.02},{"x":1569506040000,"y":0},{"x":1569506100000,"y":0.02},{"x":1569506160000,"y":0},{"x":1569506220000,"y":0.02},{"x":1569506280000,"y":0},{"x":1569506340000,"y":0.02},{"x":1569506400000,"y":0},{"x":1569506460000,"y":0.02},{"x":1569506520000,"y":0},{"x":1569506580000,"y":0.02},{"x":1569506640000,"y":0},{"x":1569506700000,"y":0.02},{"x":1569506760000,"y":0},{"x":1569506820000,"y":0.02},{"x":1569506880000,"y":0},{"x":1569506940000,"y":0.02},{"x":1569507000000,"y":0},{"x":1569507060000,"y":0.02},{"x":1569507120000,"y":0},{"x":1569507180000,"y":0.02},{"x":1569507240000,"y":0},{"x":1569507300000,"y":0.02},{"x":1569507360000,"y":0},{"x":1569507420000,"y":0.02},{"x":1569507480000,"y":0},{"x":1569507540000,"y":0.03},{"x":1569507600000,"y":0},{"x":1569507660000,"y":0.02},{"x":1569507720000,"y":0},{"x":1569507780000,"y":0.02},{"x":1569507840000,"y":0.01},{"x":1569507900000,"y":0.02},{"x":1569507960000,"y":0},{"x":1569508020000,"y":0.02},{"x":1569508080000,"y":0},{"x":1569508140000,"y":0.02},{"x":1569508200000,"y":0},{"x":1569508260000,"y":0.02},{"x":1569508320000,"y":0},{"x":1569508380000,"y":0.02},{"x":1569508440000,"y":0},{"x":1569508500000,"y":0.02},{"x":1569508560000,"y":0},{"x":1569508620000,"y":0.02},{"x":1569508680000,"y":0},{"x":1569508740000,"y":0.44},{"x":1569508800000,"y":0.44},{"x":1569508860000,"y":0.02},{"x":1569508920000,"y":0.45},{"x":1569508980000,"y":0.02},{"x":1569509040000,"y":0},{"x":1569509100000,"y":0.02},{"x":1569509160000,"y":0},{"x":1569509220000,"y":0.02},{"x":1569509280000,"y":0},{"x":1569509340000,"y":0.02},{"x":1569509400000,"y":0},{"x":1569509460000,"y":0.02},{"x":1569509520000,"y":0.02},{"x":1569509580000,"y":0.02},{"x":1569509640000,"y":0},{"x":1569509700000,"y":0.02},{"x":1569509760000,"y":0},{"x":1569509820000,"y":0.02},{"x":1569509880000,"y":0},{"x":1569509940000,"y":0.02},{"x":1569510000000,"y":0},{"x":1569510060000,"y":0.02},{"x":1569510120000,"y":0},{"x":1569510180000,"y":0.02},{"x":1569510240000,"y":0},{"x":1569510300000,"y":0.02},{"x":1569510360000,"y":0},{"x":1569510420000,"y":0.02},{"x":1569510480000,"y":0},{"x":1569510540000,"y":0.02},{"x":1569510600000,"y":0},{"x":1569510660000,"y":0.02},{"x":1569510720000,"y":0},{"x":1569510780000,"y":0.02},{"x":1569510840000,"y":0},{"x":1569510900000,"y":0.02},{"x":1569510960000,"y":0},{"x":1569511020000,"y":0.02},{"x":1569511080000,"y":0},{"x":1569511140000,"y":0.03},{"x":1569511200000,"y":0},{"x":1569511260000,"y":0.02},{"x":1569511320000,"y":0},{"x":1569511380000,"y":0.02},{"x":1569511440000,"y":0},{"x":1569511500000,"y":0.02},{"x":1569511560000,"y":0},{"x":1569511620000,"y":0.02},{"x":1569511680000,"y":0},{"x":1569511740000,"y":0.02},{"x":1569511800000,"y":0},{"x":1569511860000,"y":0.02},{"x":1569511920000,"y":0},{"x":1569511980000,"y":0.02},{"x":1569512040000,"y":0},{"x":1569512100000,"y":0.02},{"x":1569512160000,"y":0},{"x":1569512220000,"y":0.02},{"x":1569512280000,"y":0},{"x":1569512340000,"y":0.02},{"x":1569512400000,"y":0},{"x":1569512460000,"y":0.05},{"x":1569512520000,"y":0},{"x":1569512580000,"y":0.02},{"x":1569512640000,"y":0},{"x":1569512700000,"y":0.02},{"x":1569512760000,"y":0},{"x":1569512820000,"y":0.02},{"x":1569512880000,"y":0},{"x":1569512940000,"y":0.02},{"x":1569513000000,"y":0},{"x":1569513060000,"y":0},{"x":1569513120000,"y":0},{"x":1569513180000,"y":0},{"x":1569513240000,"y":0},{"x":1569513300000,"y":0},{"x":1569513360000,"y":0},{"x":1569513420000,"y":2.09},{"x":1569513480000,"y":0.9},{"x":1569513540000,"y":0},{"x":1569513600000,"y":0.4},{"x":1569513660000,"y":0.11},{"x":1569513720000,"y":0},{"x":1569513780000,"y":0},{"x":1569513840000,"y":0},{"x":1569513900000,"y":0},{"x":1569513960000,"y":0.38},{"x":1569514020000,"y":0.08},{"x":1569514080000,"y":0},{"x":1569514140000,"y":0.89},{"x":1569514200000,"y":0.01},{"x":1569514260000,"y":0.5},{"x":1569514320000,"y":0},{"x":1569514380000,"y":0},{"x":1569514440000,"y":0.04},{"x":1569514500000,"y":0.05},{"x":1569514560000,"y":0},{"x":1569514620000,"y":0},{"x":1569514680000,"y":0},{"x":1569514740000,"y":0.01},{"x":1569514800000,"y":0},{"x":1569514860000,"y":0},{"x":1569514920000,"y":0},{"x":1569514980000,"y":0},{"x":1569515040000,"y":0},{"x":1569515100000,"y":0},{"x":1569515160000,"y":0},{"x":1569515220000,"y":0},{"x":1569515280000,"y":0},{"x":1569515340000,"y":0},{"x":1569515400000,"y":0},{"x":1569515460000,"y":0},{"x":1569515520000,"y":0},{"x":1569515580000,"y":0},{"x":1569515640000,"y":0},{"x":1569515700000,"y":0},{"x":1569515760000,"y":0},{"x":1569515820000,"y":0},{"x":1569515880000,"y":0},{"x":1569515940000,"y":0.01},{"x":1569516000000,"y":0.01},{"x":1569516060000,"y":0},{"x":1569516120000,"y":0.01},{"x":1569516180000,"y":0},{"x":1569516240000,"y":0},{"x":1569516300000,"y":0},{"x":1569516360000,"y":0.41},{"x":1569516420000,"y":0.41},{"x":1569516480000,"y":0},{"x":1569516540000,"y":0},{"x":1569516600000,"y":0},{"x":1569516660000,"y":0},{"x":1569516720000,"y":0.02},{"x":1569516780000,"y":0.79},{"x":1569516840000,"y":0.03},{"x":1569516900000,"y":2.01},{"x":1569516960000,"y":1.24},{"x":1569517020000,"y":0.04},{"x":1569517080000,"y":0.39},{"x":1569517140000,"y":0.02},{"x":1569517200000,"y":0},{"x":1569517260000,"y":0},{"x":1569517320000,"y":0},{"x":1569517380000,"y":0},{"x":1569517440000,"y":0.42},{"x":1569517500000,"y":0.41},{"x":1569517560000,"y":0.01},{"x":1569517620000,"y":1.23},{"x":1569517680000,"y":5.35},{"x":1569517740000,"y":0.41},{"x":1569517800000,"y":2.05},{"x":1569517860000,"y":1.23},{"x":1569517920000,"y":0.01},{"x":1569517980000,"y":0},{"x":1569518040000,"y":0},{"x":1569518100000,"y":0},{"x":1569518160000,"y":0},{"x":1569518220000,"y":0.05},{"x":1569518280000,"y":0},{"x":1569518340000,"y":0.01},{"x":1569518400000,"y":0.41},{"x":1569518460000,"y":0},{"x":1569518520000,"y":0},{"x":1569518580000,"y":0},{"x":1569518640000,"y":1.65},{"x":1569518700000,"y":0.41},{"x":1569518760000,"y":0},{"x":1569518820000,"y":0},{"x":1569518880000,"y":0.42},{"x":1569518940000,"y":1.24},{"x":1569519000000,"y":0.42},{"x":1569519060000,"y":2.48},{"x":1569519120000,"y":0.81},{"x":1569519180000,"y":0.02},{"x":1569519240000,"y":0},{"x":1569519300000,"y":0.01},{"x":1569519360000,"y":0.01},{"x":1569519420000,"y":0.84},{"x":1569519480000,"y":0.41},{"x":1569519540000,"y":0.4},{"x":1569519600000,"y":1.65},{"x":1569519660000,"y":0.02},{"x":1569519720000,"y":2.07},{"x":1569519780000,"y":2.46},{"x":1569519840000,"y":2.16},{"x":1569519900000,"y":3.26},{"x":1569519960000,"y":0.88},{"x":1569520020000,"y":0},{"x":1569520080000,"y":0},{"x":1569520140000,"y":0},{"x":1569520200000,"y":0},{"x":1569520260000,"y":0},{"x":1569520320000,"y":0},{"x":1569520380000,"y":0},{"x":1569520440000,"y":0},{"x":1569520500000,"y":0},{"x":1569520560000,"y":0},{"x":1569520620000,"y":0},{"x":1569520680000,"y":0},{"x":1569520740000,"y":0},{"x":1569520800000,"y":0},{"x":1569520860000,"y":0},{"x":1569520920000,"y":0},{"x":1569520980000,"y":0},{"x":1569521040000,"y":0},{"x":1569521100000,"y":0},{"x":1569521160000,"y":0},{"x":1569521220000,"y":0.01},{"x":1569521280000,"y":0},{"x":1569521340000,"y":0},{"x":1569521400000,"y":0},{"x":1569521460000,"y":0},{"x":1569521520000,"y":0},{"x":1569521580000,"y":0},{"x":1569521640000,"y":0},{"x":1569521700000,"y":0},{"x":1569521760000,"y":0},{"x":1569521820000,"y":0.42},{"x":1569521880000,"y":0},{"x":1569521940000,"y":0.01},{"x":1569522000000,"y":0},{"x":1569522060000,"y":0},{"x":1569522120000,"y":0},{"x":1569522180000,"y":0},{"x":1569522240000,"y":0.01},{"x":1569522300000,"y":0},{"x":1569522360000,"y":0},{"x":1569522420000,"y":0},{"x":1569522480000,"y":0},{"x":1569522540000,"y":0},{"x":1569522600000,"y":0},{"x":1569522660000,"y":0},{"x":1569522720000,"y":0.01},{"x":1569522780000,"y":0},{"x":1569522840000,"y":0},{"x":1569522900000,"y":0},{"x":1569522960000,"y":0.02},{"x":1569523020000,"y":0.01},{"x":1569523080000,"y":0},{"x":1569523140000,"y":0},{"x":1569523200000,"y":0},{"x":1569523260000,"y":0},{"x":1569523320000,"y":0},{"x":1569523380000,"y":0},{"x":1569523440000,"y":0},{"x":1569523500000,"y":0},{"x":1569523560000,"y":0},{"x":1569523620000,"y":0},{"x":1569523680000,"y":0},{"x":1569523740000,"y":0},{"x":1569523800000,"y":0},{"x":1569523860000,"y":0},{"x":1569523920000,"y":0},{"x":1569523980000,"y":0},{"x":1569524040000,"y":0},{"x":1569524100000,"y":0},{"x":1569524160000,"y":0},{"x":1569524220000,"y":0},{"x":1569524280000,"y":0},{"x":1569524340000,"y":0},{"x":1569524400000,"y":0},{"x":1569524460000,"y":0},{"x":1569524520000,"y":0},{"x":1569524580000,"y":0},{"x":1569524640000,"y":0},{"x":1569524700000,"y":0},{"x":1569524760000,"y":0},{"x":1569524820000,"y":0},{"x":1569524880000,"y":0},{"x":1569524940000,"y":0},{"x":1569525000000,"y":0},{"x":1569525060000,"y":0},{"x":1569525120000,"y":0},{"x":1569525180000,"y":0},{"x":1569525240000,"y":0},{"x":1569525300000,"y":0},{"x":1569525360000,"y":0},{"x":1569525420000,"y":0},{"x":1569525480000,"y":0},{"x":1569525540000,"y":0.01},{"x":1569525600000,"y":0},{"x":1569525660000,"y":0},{"x":1569525720000,"y":1.24},{"x":1569525780000,"y":0},{"x":1569525840000,"y":0},{"x":1569525900000,"y":0},{"x":1569525960000,"y":0},{"x":1569526020000,"y":0},{"x":1569526080000,"y":0.41},{"x":1569526140000,"y":0.83},{"x":1569526200000,"y":0},{"x":1569526260000,"y":0.83},{"x":1569526320000,"y":0.35},{"x":1569526380000,"y":0.89},{"x":1569526440000,"y":0.71},{"x":1569526500000,"y":0.12},{"x":1569526560000,"y":0},{"x":1569526620000,"y":0.41},{"x":1569526680000,"y":3.26},{"x":1569526740000,"y":1.31},{"x":1569526800000,"y":0},{"x":1569526860000,"y":0.83},{"x":1569526920000,"y":0},{"x":1569526980000,"y":0},{"x":1569527040000,"y":0},{"x":1569527100000,"y":0},{"x":1569527160000,"y":0},{"x":1569527220000,"y":0.02},{"x":1569527280000,"y":0.39},{"x":1569527340000,"y":0},{"x":1569527400000,"y":0},{"x":1569527460000,"y":0},{"x":1569527520000,"y":0},{"x":1569527580000,"y":0.82},{"x":1569527640000,"y":0},{"x":1569527700000,"y":0},{"x":1569527760000,"y":0},{"x":1569527820000,"y":0},{"x":1569527880000,"y":0},{"x":1569527940000,"y":0},{"x":1569528000000,"y":0},{"x":1569528060000,"y":0},{"x":1569528120000,"y":0},{"x":1569528180000,"y":0},{"x":1569528240000,"y":0},{"x":1569528300000,"y":0},{"x":1569528360000,"y":0.81},{"x":1569528420000,"y":1.25},{"x":1569528480000,"y":0},{"x":1569528540000,"y":0},{"x":1569528600000,"y":0},{"x":1569528660000,"y":0.01},{"x":1569528720000,"y":0},{"x":1569528780000,"y":1.6},{"x":1569528840000,"y":0.05},{"x":1569528900000,"y":0.89},{"x":1569528960000,"y":0},{"x":1569529020000,"y":0},{"x":1569529080000,"y":0},{"x":1569529140000,"y":0.01},{"x":1569529200000,"y":0},{"x":1569529260000,"y":0},{"x":1569529320000,"y":0},{"x":1569529380000,"y":0.04},{"x":1569529440000,"y":0},{"x":1569529500000,"y":0},{"x":1569529560000,"y":0},{"x":1569529620000,"y":0},{"x":1569529680000,"y":0},{"x":1569529740000,"y":0},{"x":1569529800000,"y":0},{"x":1569529860000,"y":1.76},{"x":1569529920000,"y":0},{"x":1569529980000,"y":0},{"x":1569530040000,"y":0.05},{"x":1569530100000,"y":0},{"x":1569530160000,"y":0.04},{"x":1569530220000,"y":0},{"x":1569530280000,"y":0.01},{"x":1569530340000,"y":0},{"x":1569530400000,"y":0},{"x":1569530460000,"y":0.01},{"x":1569530520000,"y":0},{"x":1569530580000,"y":0.01},{"x":1569530640000,"y":1.21},{"x":1569530700000,"y":1.68},{"x":1569530760000,"y":0},{"x":1569530820000,"y":0},{"x":1569530880000,"y":0.83},{"x":1569530940000,"y":0},{"x":1569531000000,"y":0.78},{"x":1569531060000,"y":0.88},{"x":1569531120000,"y":2.42},{"x":1569531180000,"y":0.47},{"x":1569531240000,"y":1.65},{"x":1569531300000,"y":0},{"x":1569531360000,"y":0},{"x":1569531420000,"y":0},{"x":1569531480000,"y":0},{"x":1569531540000,"y":0},{"x":1569531600000,"y":0},{"x":1569531660000,"y":0},{"x":1569531720000,"y":0},{"x":1569531780000,"y":0},{"x":1569531840000,"y":0},{"x":1569531900000,"y":0},{"x":1569531960000,"y":0},{"x":1569532020000,"y":0},{"x":1569532080000,"y":0},{"x":1569532140000,"y":0},{"x":1569532200000,"y":0},{"x":1569532260000,"y":0},{"x":1569532320000,"y":0},{"x":1569532380000,"y":0},{"x":1569532440000,"y":0},{"x":1569532500000,"y":0},{"x":1569532560000,"y":0},{"x":1569532620000,"y":0},{"x":1569532680000,"y":0},{"x":1569532740000,"y":0.01},{"x":1569532800000,"y":0},{"x":1569532860000,"y":0},{"x":1569532920000,"y":0},{"x":1569532980000,"y":0},{"x":1569533040000,"y":0},{"x":1569533100000,"y":0},{"x":1569533160000,"y":0},{"x":1569533220000,"y":0},{"x":1569533280000,"y":0},{"x":1569533340000,"y":0},{"x":1569533400000,"y":0},{"x":1569533460000,"y":0},{"x":1569533520000,"y":0},{"x":1569533580000,"y":1.3},{"x":1569533640000,"y":0.43},{"x":1569533700000,"y":0},{"x":1569533760000,"y":0.83},{"x":1569533820000,"y":0.83},{"x":1569533880000,"y":0},{"x":1569533940000,"y":0},{"x":1569534000000,"y":0},{"x":1569534060000,"y":0},{"x":1569534120000,"y":0},{"x":1569534180000,"y":0},{"x":1569534240000,"y":0},{"x":1569534300000,"y":0},{"x":1569534360000,"y":0},{"x":1569534420000,"y":0},{"x":1569534480000,"y":1.35},{"x":1569534540000,"y":0},{"x":1569534600000,"y":0.42},{"x":1569534660000,"y":0.48},{"x":1569534720000,"y":0},{"x":1569534780000,"y":0},{"x":1569534840000,"y":0},{"x":1569534900000,"y":0},{"x":1569534960000,"y":0},{"x":1569535020000,"y":0},{"x":1569535080000,"y":0.77},{"x":1569535140000,"y":0.92},{"x":1569535200000,"y":0.88},{"x":1569535260000,"y":0.02},{"x":1569535320000,"y":0},{"x":1569535380000,"y":0},{"x":1569535440000,"y":0},{"x":1569535500000,"y":0.01},{"x":1569535560000,"y":0},{"x":1569535620000,"y":0},{"x":1569535680000,"y":0.4},{"x":1569535740000,"y":0.35},{"x":1569535800000,"y":0.08},{"x":1569535860000,"y":0},{"x":1569535920000,"y":0},{"x":1569535980000,"y":0},{"x":1569536040000,"y":0},{"x":1569536100000,"y":0},{"x":1569536160000,"y":0.41},{"x":1569536220000,"y":0.83},{"x":1569536280000,"y":0},{"x":1569536340000,"y":0.84},{"x":1569536400000,"y":0},{"x":1569536460000,"y":0.41},{"x":1569536520000,"y":0},{"x":1569536580000,"y":0},{"x":1569536640000,"y":0.01},{"x":1569536700000,"y":0.42},{"x":1569536760000,"y":0.01},{"x":1569536820000,"y":0.01},{"x":1569536880000,"y":0.01},{"x":1569536940000,"y":0.83},{"x":1569537000000,"y":0},{"x":1569537060000,"y":0.83},{"x":1569537120000,"y":1.65},{"x":1569537180000,"y":0.01},{"x":1569537240000,"y":0},{"x":1569537300000,"y":0},{"x":1569537360000,"y":0},{"x":1569537420000,"y":0},{"x":1569537480000,"y":0},{"x":1569537540000,"y":0},{"x":1569537600000,"y":0},{"x":1569537660000,"y":0},{"x":1569537720000,"y":0.83},{"x":1569537780000,"y":0},{"x":1569537840000,"y":0},{"x":1569537900000,"y":0},{"x":1569537960000,"y":0},{"x":1569538020000,"y":0.37},{"x":1569538080000,"y":1.27},{"x":1569538140000,"y":0.44},{"x":1569538200000,"y":0.43},{"x":1569538260000,"y":0.42},{"x":1569538320000,"y":0.42},{"x":1569538380000,"y":0},{"x":1569538440000,"y":0},{"x":1569538500000,"y":0},{"x":1569538560000,"y":0},{"x":1569538620000,"y":0},{"x":1569538680000,"y":0},{"x":1569538740000,"y":0},{"x":1569538800000,"y":0},{"x":1569538860000,"y":0},{"x":1569538920000,"y":0},{"x":1569538980000,"y":0},{"x":1569539040000,"y":0},{"x":1569539100000,"y":0},{"x":1569539160000,"y":0},{"x":1569539220000,"y":0},{"x":1569539280000,"y":0},{"x":1569539340000,"y":0},{"x":1569539400000,"y":0},{"x":1569539460000,"y":0},{"x":1569539520000,"y":0},{"x":1569539580000,"y":0.01},{"x":1569539640000,"y":0.83},{"x":1569539700000,"y":0},{"x":1569539760000,"y":0.42},{"x":1569539820000,"y":0.42},{"x":1569539880000,"y":0},{"x":1569539940000,"y":0.01},{"x":1569540000000,"y":0},{"x":1569540060000,"y":0},{"x":1569540120000,"y":0},{"x":1569540180000,"y":0},{"x":1569540240000,"y":0},{"x":1569540300000,"y":0},{"x":1569540360000,"y":0},{"x":1569540420000,"y":0},{"x":1569540480000,"y":0},{"x":1569540540000,"y":0},{"x":1569540600000,"y":0},{"x":1569540660000,"y":0},{"x":1569540720000,"y":0.82},{"x":1569540780000,"y":1.68},{"x":1569540840000,"y":0.83},{"x":1569540900000,"y":0},{"x":1569540960000,"y":0.83},{"x":1569541020000,"y":0.41},{"x":1569541080000,"y":0.42},{"x":1569541140000,"y":0},{"x":1569541200000,"y":0},{"x":1569541260000,"y":0},{"x":1569541320000,"y":0},{"x":1569541380000,"y":0},{"x":1569541440000,"y":0},{"x":1569541500000,"y":0.79},{"x":1569541560000,"y":0.04},{"x":1569541620000,"y":0.42},{"x":1569541680000,"y":0},{"x":1569541740000,"y":0.83},{"x":1569541800000,"y":0.42},{"x":1569541860000,"y":0},{"x":1569541920000,"y":0.83},{"x":1569541980000,"y":0.42},{"x":1569542040000,"y":0},{"x":1569542100000,"y":0},{"x":1569542160000,"y":0.01},{"x":1569542220000,"y":0.83},{"x":1569542280000,"y":1.66},{"x":1569542340000,"y":0.01},{"x":1569542400000,"y":0},{"x":1569542460000,"y":0},{"x":1569542520000,"y":0},{"x":1569542580000,"y":0},{"x":1569542640000,"y":0},{"x":1569542700000,"y":0},{"x":1569542760000,"y":0},{"x":1569542820000,"y":0.01},{"x":1569542880000,"y":0},{"x":1569542940000,"y":0},{"x":1569543000000,"y":0},{"x":1569543060000,"y":0.01},{"x":1569543120000,"y":0},{"x":1569543180000,"y":0},{"x":1569543240000,"y":1.25},{"x":1569543300000,"y":0},{"x":1569543360000,"y":0.01},{"x":1569543420000,"y":0},{"x":1569543480000,"y":0},{"x":1569543540000,"y":0.01},{"x":1569543600000,"y":0},{"x":1569543660000,"y":0},{"x":1569543720000,"y":0},{"x":1569543780000,"y":0},{"x":1569543840000,"y":0},{"x":1569543900000,"y":0.01},{"x":1569543960000,"y":0},{"x":1569544020000,"y":0},{"x":1569544080000,"y":0},{"x":1569544140000,"y":0},{"x":1569544200000,"y":0},{"x":1569544260000,"y":0},{"x":1569544320000,"y":0},{"x":1569544380000,"y":0},{"x":1569544440000,"y":0},{"x":1569544500000,"y":0},{"x":1569544560000,"y":0},{"x":1569544620000,"y":0},{"x":1569544680000,"y":0},{"x":1569544740000,"y":0},{"x":1569544800000,"y":0},{"x":1569544860000,"y":0},{"x":1569544920000,"y":0},{"x":1569544980000,"y":0},{"x":1569545040000,"y":0},{"x":1569545100000,"y":0},{"x":1569545160000,"y":0},{"x":1569545220000,"y":0},{"x":1569545280000,"y":0},{"x":1569545340000,"y":0},{"x":1569545400000,"y":0},{"x":1569545460000,"y":0},{"x":1569545520000,"y":0},{"x":1569545580000,"y":0},{"x":1569545640000,"y":0},{"x":1569545700000,"y":0},{"x":1569545760000,"y":0},{"x":1569545820000,"y":0},{"x":1569545880000,"y":0},{"x":1569545940000,"y":0},{"x":1569546000000,"y":0},{"x":1569546060000,"y":0},{"x":1569546120000,"y":0},{"x":1569546180000,"y":0},{"x":1569546240000,"y":0},{"x":1569546300000,"y":0},{"x":1569546360000,"y":0},{"x":1569546420000,"y":0},{"x":1569546480000,"y":0},{"x":1569546540000,"y":0},{"x":1569546600000,"y":0},{"x":1569546660000,"y":0},{"x":1569546720000,"y":0},{"x":1569546780000,"y":0},{"x":1569546840000,"y":0},{"x":1569546900000,"y":0},{"x":1569546960000,"y":0},{"x":1569547020000,"y":0},{"x":1569547080000,"y":0},{"x":1569547140000,"y":0.01},{"x":1569547200000,"y":0},{"x":1569547260000,"y":0},{"x":1569547320000,"y":0},{"x":1569547380000,"y":0},{"x":1569547440000,"y":0},{"x":1569547500000,"y":0},{"x":1569547560000,"y":0},{"x":1569547620000,"y":0},{"x":1569547680000,"y":0},{"x":1569547740000,"y":0},{"x":1569547800000,"y":0},{"x":1569547860000,"y":0},{"x":1569547920000,"y":0},{"x":1569547980000,"y":0},{"x":1569548040000,"y":0},{"x":1569548100000,"y":0.01},{"x":1569548160000,"y":0},{"x":1569548220000,"y":0},{"x":1569548280000,"y":0},{"x":1569548340000,"y":0},{"x":1569548400000,"y":0},{"x":1569548460000,"y":0},{"x":1569548520000,"y":0},{"x":1569548580000,"y":0},{"x":1569548640000,"y":0},{"x":1569548700000,"y":0},{"x":1569548760000,"y":0},{"x":1569548820000,"y":0},{"x":1569548880000,"y":0},{"x":1569548940000,"y":0},{"x":1569549000000,"y":0},{"x":1569549060000,"y":0},{"x":1569549120000,"y":0},{"x":1569549180000,"y":0},{"x":1569549240000,"y":0},{"x":1569549300000,"y":0},{"x":1569549360000,"y":0},{"x":1569549420000,"y":0},{"x":1569549480000,"y":0},{"x":1569549540000,"y":0},{"x":1569549600000,"y":0},{"x":1569549660000,"y":0},{"x":1569549720000,"y":0},{"x":1569549780000,"y":0},{"x":1569549840000,"y":0},{"x":1569549900000,"y":0},{"x":1569549960000,"y":0},{"x":1569550020000,"y":0},{"x":1569550080000,"y":0},{"x":1569550140000,"y":0.01},{"x":1569550200000,"y":0},{"x":1569550260000,"y":0},{"x":1569550320000,"y":0},{"x":1569550380000,"y":0},{"x":1569550440000,"y":0},{"x":1569550500000,"y":0},{"x":1569550560000,"y":0},{"x":1569550620000,"y":0},{"x":1569550680000,"y":0},{"x":1569550740000,"y":0.01},{"x":1569550800000,"y":0},{"x":1569550860000,"y":0},{"x":1569550920000,"y":0},{"x":1569550980000,"y":0},{"x":1569551040000,"y":0},{"x":1569551100000,"y":0},{"x":1569551160000,"y":0.46},{"x":1569551220000,"y":2.08},{"x":1569551280000,"y":1.25},{"x":1569551340000,"y":0},{"x":1569551400000,"y":2.09},{"x":1569551460000,"y":0},{"x":1569551520000,"y":0},{"x":1569551580000,"y":0.01},{"x":1569551640000,"y":0},{"x":1569551700000,"y":0},{"x":1569551760000,"y":0},{"x":1569551820000,"y":0},{"x":1569551880000,"y":0},{"x":1569551940000,"y":0},{"x":1569552000000,"y":0},{"x":1569552060000,"y":0},{"x":1569552120000,"y":0},{"x":1569552180000,"y":0},{"x":1569552240000,"y":0},{"x":1569552300000,"y":0},{"x":1569552360000,"y":0},{"x":1569552420000,"y":0},{"x":1569552480000,"y":0},{"x":1569552540000,"y":0},{"x":1569552600000,"y":0},{"x":1569552660000,"y":0},{"x":1569552720000,"y":0},{"x":1569552780000,"y":0},{"x":1569552840000,"y":0},{"x":1569552900000,"y":0},{"x":1569552960000,"y":0},{"x":1569553020000,"y":0},{"x":1569553080000,"y":0},{"x":1569553140000,"y":0},{"x":1569553200000,"y":0},{"x":1569553260000,"y":0},{"x":1569553320000,"y":0},{"x":1569553380000,"y":0},{"x":1569553440000,"y":0},{"x":1569553500000,"y":0},{"x":1569553560000,"y":0.03},{"x":1569553620000,"y":0},{"x":1569553680000,"y":0},{"x":1569553740000,"y":0},{"x":1569553800000,"y":1.25},{"x":1569553860000,"y":0},{"x":1569553920000,"y":0},{"x":1569553980000,"y":0},{"x":1569554040000,"y":0},{"x":1569554100000,"y":0},{"x":1569554160000,"y":0},{"x":1569554220000,"y":0},{"x":1569554280000,"y":0},{"x":1569554340000,"y":0.84},{"x":1569554400000,"y":0},{"x":1569554460000,"y":0},{"x":1569554520000,"y":0},{"x":1569554580000,"y":0},{"x":1569554640000,"y":0},{"x":1569554700000,"y":0},{"x":1569554760000,"y":0},{"x":1569554820000,"y":0.01},{"x":1569554880000,"y":0},{"x":1569554940000,"y":0},{"x":1569555000000,"y":0},{"x":1569555060000,"y":0},{"x":1569555120000,"y":0},{"x":1569555180000,"y":0},{"x":1569555240000,"y":0},{"x":1569555300000,"y":0.42},{"x":1569555360000,"y":0.06},{"x":1569555420000,"y":0},{"x":1569555480000,"y":0},{"x":1569555540000,"y":0},{"x":1569555600000,"y":0},{"x":1569555660000,"y":0},{"x":1569555720000,"y":0},{"x":1569555780000,"y":0},{"x":1569555840000,"y":0},{"x":1569555900000,"y":0},{"x":1569555960000,"y":0},{"x":1569556020000,"y":0},{"x":1569556080000,"y":0},{"x":1569556140000,"y":0},{"x":1569556200000,"y":0},{"x":1569556260000,"y":0},{"x":1569556320000,"y":0},{"x":1569556380000,"y":0},{"x":1569556440000,"y":0},{"x":1569556500000,"y":0.02},{"x":1569556560000,"y":0},{"x":1569556620000,"y":0.01},{"x":1569556680000,"y":0},{"x":1569556740000,"y":0},{"x":1569556800000,"y":0},{"x":1569556860000,"y":0},{"x":1569556920000,"y":0},{"x":1569556980000,"y":0},{"x":1569557040000,"y":0},{"x":1569557100000,"y":0},{"x":1569557160000,"y":0},{"x":1569557220000,"y":0},{"x":1569557280000,"y":0},{"x":1569557340000,"y":0},{"x":1569557400000,"y":0},{"x":1569557460000,"y":0},{"x":1569557520000,"y":0},{"x":1569557580000,"y":0},{"x":1569557640000,"y":0},{"x":1569557700000,"y":0},{"x":1569557760000,"y":0},{"x":1569557820000,"y":0},{"x":1569557880000,"y":0},{"x":1569557940000,"y":0.01},{"x":1569558000000,"y":0},{"x":1569558060000,"y":0},{"x":1569558120000,"y":0.42},{"x":1569558180000,"y":0},{"x":1569558240000,"y":0},{"x":1569558300000,"y":0},{"x":1569558360000,"y":0.01},{"x":1569558420000,"y":0.42},{"x":1569558480000,"y":0},{"x":1569558540000,"y":0.83},{"x":1569558600000,"y":0.42},{"x":1569558660000,"y":0},{"x":1569558720000,"y":0},{"x":1569558780000,"y":0},{"x":1569558840000,"y":0},{"x":1569558900000,"y":0},{"x":1569558960000,"y":0},{"x":1569559020000,"y":0},{"x":1569559080000,"y":0},{"x":1569559140000,"y":0.01},{"x":1569559200000,"y":0.03},{"x":1569559260000,"y":0.01},{"x":1569559320000,"y":0.02},{"x":1569559380000,"y":0.02},{"x":1569559440000,"y":0.02},{"x":1569559500000,"y":0.02},{"x":1569559560000,"y":0.03},{"x":1569559620000,"y":0.02},{"x":1569559680000,"y":0.04},{"x":1569559740000,"y":0.02},{"x":1569559800000,"y":0},{"x":1569559860000,"y":0},{"x":1569559920000,"y":0},{"x":1569559980000,"y":0},{"x":1569560040000,"y":0},{"x":1569560100000,"y":0},{"x":1569560160000,"y":0},{"x":1569560220000,"y":0},{"x":1569560280000,"y":0},{"x":1569560340000,"y":0},{"x":1569560400000,"y":0},{"x":1569560460000,"y":0},{"x":1569560520000,"y":0},{"x":1569560580000,"y":0},{"x":1569560640000,"y":0},{"x":1569560700000,"y":0},{"x":1569560760000,"y":0},{"x":1569560820000,"y":0},{"x":1569560880000,"y":0},{"x":1569560940000,"y":0},{"x":1569561000000,"y":0},{"x":1569561060000,"y":0},{"x":1569561120000,"y":0},{"x":1569561180000,"y":0},{"x":1569561240000,"y":0},{"x":1569561300000,"y":0},{"x":1569561360000,"y":0},{"x":1569561420000,"y":0},{"x":1569561480000,"y":0},{"x":1569561540000,"y":0.01},{"x":1569561600000,"y":0},{"x":1569561660000,"y":0},{"x":1569561720000,"y":0},{"x":1569561780000,"y":0},{"x":1569561840000,"y":0.01},{"x":1569561900000,"y":0},{"x":1569561960000,"y":0.01},{"x":1569562020000,"y":0},{"x":1569562080000,"y":0},{"x":1569562140000,"y":0},{"x":1569562200000,"y":0},{"x":1569562260000,"y":0},{"x":1569562320000,"y":0},{"x":1569562380000,"y":0},{"x":1569562440000,"y":0},{"x":1569562500000,"y":0},{"x":1569562560000,"y":0},{"x":1569562620000,"y":0},{"x":1569562680000,"y":0},{"x":1569562740000,"y":0},{"x":1569562800000,"y":0},{"x":1569562860000,"y":0},{"x":1569562920000,"y":0},{"x":1569562980000,"y":0},{"x":1569563040000,"y":0},{"x":1569563100000,"y":0},{"x":1569563160000,"y":0},{"x":1569563220000,"y":0},{"x":1569563280000,"y":0},{"x":1569563340000,"y":0},{"x":1569563400000,"y":0},{"x":1569563460000,"y":0},{"x":1569563520000,"y":0},{"x":1569563580000,"y":0},{"x":1569563640000,"y":0},{"x":1569563700000,"y":0},{"x":1569563760000,"y":0},{"x":1569563820000,"y":0},{"x":1569563880000,"y":0},{"x":1569563940000,"y":0},{"x":1569564000000,"y":0},{"x":1569564060000,"y":0},{"x":1569564120000,"y":0},{"x":1569564180000,"y":0},{"x":1569564240000,"y":0},{"x":1569564300000,"y":0},{"x":1569564360000,"y":0},{"x":1569564420000,"y":0},{"x":1569564480000,"y":0},{"x":1569564540000,"y":0},{"x":1569564600000,"y":0},{"x":1569564660000,"y":0},{"x":1569564720000,"y":0.01},{"x":1569564780000,"y":0},{"x":1569564840000,"y":0},{"x":1569564900000,"y":0},{"x":1569564960000,"y":0},{"x":1569565020000,"y":0},{"x":1569565080000,"y":0},{"x":1569565140000,"y":0.01},{"x":1569565200000,"y":0},{"x":1569565260000,"y":0},{"x":1569565320000,"y":0},{"x":1569565380000,"y":0},{"x":1569565440000,"y":0},{"x":1569565500000,"y":0},{"x":1569565560000,"y":0.01},{"x":1569565620000,"y":0},{"x":1569565680000,"y":0},{"x":1569565740000,"y":0},{"x":1569565800000,"y":0},{"x":1569565860000,"y":0},{"x":1569565920000,"y":0},{"x":1569565980000,"y":0},{"x":1569566040000,"y":0},{"x":1569566100000,"y":0},{"x":1569566160000,"y":0},{"x":1569566220000,"y":0},{"x":1569566280000,"y":0},{"x":1569566340000,"y":0},{"x":1569566400000,"y":0},{"x":1569566460000,"y":0},{"x":1569566520000,"y":0},{"x":1569566580000,"y":0},{"x":1569566640000,"y":0},{"x":1569566700000,"y":0},{"x":1569566760000,"y":0},{"x":1569566820000,"y":0},{"x":1569566880000,"y":0},{"x":1569566940000,"y":0},{"x":1569567000000,"y":0},{"x":1569567060000,"y":0},{"x":1569567120000,"y":0},{"x":1569567180000,"y":0},{"x":1569567240000,"y":0},{"x":1569567300000,"y":0.01},{"x":1569567360000,"y":0},{"x":1569567420000,"y":0},{"x":1569567480000,"y":0},{"x":1569567540000,"y":0},{"x":1569567600000,"y":0},{"x":1569567660000,"y":0},{"x":1569567720000,"y":0},{"x":1569567780000,"y":0},{"x":1569567840000,"y":0},{"x":1569567900000,"y":0},{"x":1569567960000,"y":0},{"x":1569568020000,"y":0},{"x":1569568080000,"y":0},{"x":1569568140000,"y":0},{"x":1569568200000,"y":0},{"x":1569568260000,"y":0},{"x":1569568320000,"y":0},{"x":1569568380000,"y":0},{"x":1569568440000,"y":0},{"x":1569568500000,"y":0},{"x":1569568560000,"y":0},{"x":1569568620000,"y":0},{"x":1569568680000,"y":0},{"x":1569568740000,"y":0.01},{"x":1569568800000,"y":0},{"x":1569568860000,"y":0.01},{"x":1569568920000,"y":0},{"x":1569568980000,"y":0},{"x":1569569040000,"y":0},{"x":1569569100000,"y":0},{"x":1569569160000,"y":0.01},{"x":1569569220000,"y":0},{"x":1569569280000,"y":0},{"x":1569569340000,"y":0},{"x":1569569400000,"y":0},{"x":1569569460000,"y":0},{"x":1569569520000,"y":0},{"x":1569569580000,"y":0},{"x":1569569640000,"y":0},{"x":1569569700000,"y":0},{"x":1569569760000,"y":0},{"x":1569569820000,"y":0},{"x":1569569880000,"y":0},{"x":1569569940000,"y":0},{"x":1569570000000,"y":0},{"x":1569570060000,"y":0},{"x":1569570120000,"y":0},{"x":1569570180000,"y":0},{"x":1569570240000,"y":0},{"x":1569570300000,"y":0},{"x":1569570360000,"y":0},{"x":1569570420000,"y":0},{"x":1569570480000,"y":0},{"x":1569570540000,"y":0},{"x":1569570600000,"y":0},{"x":1569570660000,"y":0},{"x":1569570720000,"y":0},{"x":1569570780000,"y":0},{"x":1569570840000,"y":0},{"x":1569570900000,"y":0},{"x":1569570960000,"y":0},{"x":1569571020000,"y":0},{"x":1569571080000,"y":0},{"x":1569571140000,"y":0},{"x":1569571200000,"y":0},{"x":1569571260000,"y":0},{"x":1569571320000,"y":0},{"x":1569571380000,"y":0},{"x":1569571440000,"y":0},{"x":1569571500000,"y":0},{"x":1569571560000,"y":0},{"x":1569571620000,"y":0},{"x":1569571680000,"y":0.01},{"x":1569571740000,"y":0},{"x":1569571800000,"y":0},{"x":1569571860000,"y":0},{"x":1569571920000,"y":0},{"x":1569571980000,"y":0},{"x":1569572040000,"y":0},{"x":1569572100000,"y":0},{"x":1569572160000,"y":0},{"x":1569572220000,"y":0},{"x":1569572280000,"y":0},{"x":1569572340000,"y":0.01},{"x":1569572400000,"y":0},{"x":1569572460000,"y":0},{"x":1569572520000,"y":0},{"x":1569572580000,"y":0},{"x":1569572640000,"y":0},{"x":1569572700000,"y":0},{"x":1569572760000,"y":0.01},{"x":1569572820000,"y":0},{"x":1569572880000,"y":0},{"x":1569572940000,"y":0},{"x":1569573000000,"y":0},{"x":1569573060000,"y":0},{"x":1569573120000,"y":0},{"x":1569573180000,"y":0},{"x":1569573240000,"y":0},{"x":1569573300000,"y":0},{"x":1569573360000,"y":0},{"x":1569573420000,"y":0},{"x":1569573480000,"y":0},{"x":1569573540000,"y":0},{"x":1569573600000,"y":0},{"x":1569573660000,"y":0},{"x":1569573720000,"y":0},{"x":1569573780000,"y":0},{"x":1569573840000,"y":0},{"x":1569573900000,"y":0},{"x":1569573960000,"y":0},{"x":1569574020000,"y":0},{"x":1569574080000,"y":0},{"x":1569574140000,"y":0},{"x":1569574200000,"y":0},{"x":1569574260000,"y":0},{"x":1569574320000,"y":0},{"x":1569574380000,"y":0},{"x":1569574440000,"y":0},{"x":1569574500000,"y":0},{"x":1569574560000,"y":0},{"x":1569574620000,"y":0},{"x":1569574680000,"y":0},{"x":1569574740000,"y":0},{"x":1569574800000,"y":0},{"x":1569574860000,"y":0},{"x":1569574920000,"y":0},{"x":1569574980000,"y":0},{"x":1569575040000,"y":0},{"x":1569575100000,"y":0},{"x":1569575160000,"y":0},{"x":1569575220000,"y":0},{"x":1569575280000,"y":0},{"x":1569575340000,"y":0},{"x":1569575400000,"y":0},{"x":1569575460000,"y":0},{"x":1569575520000,"y":0},{"x":1569575580000,"y":0},{"x":1569575640000,"y":0},{"x":1569575700000,"y":0},{"x":1569575760000,"y":0},{"x":1569575820000,"y":0},{"x":1569575880000,"y":0},{"x":1569575940000,"y":0.01},{"x":1569576000000,"y":0},{"x":1569576060000,"y":0},{"x":1569576120000,"y":0},{"x":1569576180000,"y":0.01},{"x":1569576240000,"y":0},{"x":1569576300000,"y":0},{"x":1569576360000,"y":0.01},{"x":1569576420000,"y":0},{"x":1569576480000,"y":0},{"x":1569576540000,"y":0},{"x":1569576600000,"y":0},{"x":1569576660000,"y":0},{"x":1569576720000,"y":0},{"x":1569576780000,"y":0},{"x":1569576840000,"y":0},{"x":1569576900000,"y":0},{"x":1569576960000,"y":0},{"x":1569577020000,"y":0},{"x":1569577080000,"y":0},{"x":1569577140000,"y":0},{"x":1569577200000,"y":0},{"x":1569577260000,"y":0.02},{"x":1569577320000,"y":0.01},{"x":1569577380000,"y":0},{"x":1569577440000,"y":0},{"x":1569577500000,"y":0},{"x":1569577560000,"y":0},{"x":1569577620000,"y":0},{"x":1569577680000,"y":0},{"x":1569577740000,"y":0},{"x":1569577800000,"y":0},{"x":1569577860000,"y":0},{"x":1569577920000,"y":0},{"x":1569577980000,"y":0},{"x":1569578040000,"y":0},{"x":1569578100000,"y":0},{"x":1569578160000,"y":0},{"x":1569578220000,"y":0},{"x":1569578280000,"y":0},{"x":1569578340000,"y":0},{"x":1569578400000,"y":0},{"x":1569578460000,"y":0},{"x":1569578520000,"y":0},{"x":1569578580000,"y":0},{"x":1569578640000,"y":0},{"x":1569578700000,"y":0},{"x":1569578760000,"y":0},{"x":1569578820000,"y":0},{"x":1569578880000,"y":0},{"x":1569578940000,"y":0},{"x":1569579000000,"y":0},{"x":1569579060000,"y":0},{"x":1569579120000,"y":0},{"x":1569579180000,"y":0},{"x":1569579240000,"y":0},{"x":1569579300000,"y":0},{"x":1569579360000,"y":0.01},{"x":1569579420000,"y":0},{"x":1569579480000,"y":0},{"x":1569579540000,"y":0.01},{"x":1569579600000,"y":0},{"x":1569579660000,"y":0},{"x":1569579720000,"y":0},{"x":1569579780000,"y":0},{"x":1569579840000,"y":0},{"x":1569579900000,"y":0},{"x":1569579960000,"y":0.01},{"x":1569580020000,"y":0},{"x":1569580080000,"y":0},{"x":1569580140000,"y":0},{"x":1569580200000,"y":0},{"x":1569580260000,"y":0},{"x":1569580320000,"y":0},{"x":1569580380000,"y":0},{"x":1569580440000,"y":0},{"x":1569580500000,"y":0},{"x":1569580560000,"y":0},{"x":1569580620000,"y":0},{"x":1569580680000,"y":0},{"x":1569580740000,"y":0},{"x":1569580800000,"y":0},{"x":1569580860000,"y":0},{"x":1569580920000,"y":0},{"x":1569580980000,"y":0},{"x":1569581040000,"y":0},{"x":1569581100000,"y":0},{"x":1569581160000,"y":0},{"x":1569581220000,"y":0},{"x":1569581280000,"y":0},{"x":1569581340000,"y":0},{"x":1569581400000,"y":0},{"x":1569581460000,"y":0},{"x":1569581520000,"y":0},{"x":1569581580000,"y":0},{"x":1569581640000,"y":0},{"x":1569581700000,"y":0},{"x":1569581760000,"y":0},{"x":1569581820000,"y":0},{"x":1569581880000,"y":0},{"x":1569581940000,"y":0.01},{"x":1569582000000,"y":0},{"x":1569582060000,"y":0},{"x":1569582120000,"y":0},{"x":1569582180000,"y":0},{"x":1569582240000,"y":0},{"x":1569582300000,"y":0},{"x":1569582360000,"y":0},{"x":1569582420000,"y":0},{"x":1569582480000,"y":0},{"x":1569582540000,"y":0},{"x":1569582600000,"y":0},{"x":1569582660000,"y":0},{"x":1569582720000,"y":0},{"x":1569582780000,"y":0},{"x":1569582840000,"y":0},{"x":1569582900000,"y":0},{"x":1569582960000,"y":0},{"x":1569583020000,"y":0},{"x":1569583080000,"y":0},{"x":1569583140000,"y":0.01},{"x":1569583200000,"y":0},{"x":1569583260000,"y":0.01},{"x":1569583320000,"y":0},{"x":1569583380000,"y":0},{"x":1569583440000,"y":0},{"x":1569583500000,"y":0},{"x":1569583560000,"y":0.01},{"x":1569583620000,"y":0},{"x":1569583680000,"y":0},{"x":1569583740000,"y":0},{"x":1569583800000,"y":0},{"x":1569583860000,"y":0},{"x":1569583920000,"y":0},{"x":1569583980000,"y":0},{"x":1569584040000,"y":0},{"x":1569584100000,"y":0},{"x":1569584160000,"y":0},{"x":1569584220000,"y":0},{"x":1569584280000,"y":0},{"x":1569584340000,"y":0},{"x":1569584400000,"y":0},{"x":1569584460000,"y":0},{"x":1569584520000,"y":0},{"x":1569584580000,"y":0},{"x":1569584640000,"y":0},{"x":1569584700000,"y":0},{"x":1569584760000,"y":0},{"x":1569584820000,"y":0},{"x":1569584880000,"y":0},{"x":1569584940000,"y":0},{"x":1569585000000,"y":0},{"x":1569585060000,"y":0},{"x":1569585120000,"y":0},{"x":1569585180000,"y":0},{"x":1569585240000,"y":0},{"x":1569585300000,"y":0},{"x":1569585360000,"y":0},{"x":1569585420000,"y":0},{"x":1569585480000,"y":0},{"x":1569585540000,"y":0},{"x":1569585600000,"y":0},{"x":1569585660000,"y":0},{"x":1569585720000,"y":0},{"x":1569585780000,"y":0},{"x":1569585840000,"y":0},{"x":1569585900000,"y":0},{"x":1569585960000,"y":0},{"x":1569586020000,"y":0},{"x":1569586080000,"y":0},{"x":1569586140000,"y":0},{"x":1569586200000,"y":0},{"x":1569586260000,"y":0},{"x":1569586320000,"y":0},{"x":1569586380000,"y":0},{"x":1569586440000,"y":0},{"x":1569586500000,"y":0},{"x":1569586560000,"y":0.01},{"x":1569586620000,"y":0},{"x":1569586680000,"y":0},{"x":1569586740000,"y":0.01},{"x":1569586800000,"y":0},{"x":1569586860000,"y":0},{"x":1569586920000,"y":0},{"x":1569586980000,"y":0},{"x":1569587040000,"y":0},{"x":1569587100000,"y":0},{"x":1569587160000,"y":0.01},{"x":1569587220000,"y":0},{"x":1569587280000,"y":0},{"x":1569587340000,"y":0},{"x":1569587400000,"y":0},{"x":1569587460000,"y":0},{"x":1569587520000,"y":0},{"x":1569587580000,"y":0},{"x":1569587640000,"y":0},{"x":1569587700000,"y":0},{"x":1569587760000,"y":0},{"x":1569587820000,"y":0},{"x":1569587880000,"y":0},{"x":1569587940000,"y":0},{"x":1569588000000,"y":0},{"x":1569588060000,"y":0},{"x":1569588120000,"y":0},{"x":1569588180000,"y":0},{"x":1569588240000,"y":0},{"x":1569588300000,"y":0},{"x":1569588360000,"y":0},{"x":1569588420000,"y":0},{"x":1569588480000,"y":0.01},{"x":1569588540000,"y":0},{"x":1569588600000,"y":0},{"x":1569588660000,"y":0},{"x":1569588720000,"y":0.01},{"x":1569588780000,"y":0.01},{"x":1569588840000,"y":0},{"x":1569588900000,"y":0},{"x":1569588960000,"y":0},{"x":1569589020000,"y":0},{"x":1569589080000,"y":0},{"x":1569589140000,"y":0},{"x":1569589200000,"y":0},{"x":1569589260000,"y":0},{"x":1569589320000,"y":0},{"x":1569589380000,"y":0},{"x":1569589440000,"y":0},{"x":1569589500000,"y":0},{"x":1569589560000,"y":0},{"x":1569589620000,"y":0},{"x":1569589680000,"y":0},{"x":1569589740000,"y":0},{"x":1569589800000,"y":0},{"x":1569589860000,"y":0},{"x":1569589920000,"y":0},{"x":1569589980000,"y":0},{"x":1569590040000,"y":0},{"x":1569590100000,"y":0},{"x":1569590160000,"y":0},{"x":1569590220000,"y":0},{"x":1569590280000,"y":0},{"x":1569590340000,"y":0.01},{"x":1569590400000,"y":0},{"x":1569590460000,"y":0},{"x":1569590520000,"y":0},{"x":1569590580000,"y":0},{"x":1569590640000,"y":0},{"x":1569590700000,"y":0},{"x":1569590760000,"y":0.01},{"x":1569590820000,"y":0.01},{"x":1569590880000,"y":0},{"x":1569590940000,"y":0},{"x":1569591000000,"y":0},{"x":1569591060000,"y":0},{"x":1569591120000,"y":0},{"x":1569591180000,"y":0},{"x":1569591240000,"y":0},{"x":1569591300000,"y":0},{"x":1569591360000,"y":0},{"x":1569591420000,"y":0},{"x":1569591480000,"y":0},{"x":1569591540000,"y":0},{"x":1569591600000,"y":0},{"x":1569591660000,"y":0},{"x":1569591720000,"y":0},{"x":1569591780000,"y":0},{"x":1569591840000,"y":0},{"x":1569591900000,"y":0},{"x":1569591960000,"y":0},{"x":1569592020000,"y":0},{"x":1569592080000,"y":0},{"x":1569592140000,"y":0},{"x":1569592200000,"y":0},{"x":1569592260000,"y":0},{"x":1569592320000,"y":0},{"x":1569592380000,"y":0},{"x":1569592440000,"y":0},{"x":1569592500000,"y":0},{"x":1569592560000,"y":0},{"x":1569592620000,"y":0},{"x":1569592680000,"y":0},{"x":1569592740000,"y":0},{"x":1569592800000,"y":0},{"x":1569592860000,"y":0},{"x":1569592920000,"y":0},{"x":1569592980000,"y":0},{"x":1569593040000,"y":0},{"x":1569593100000,"y":0},{"x":1569593160000,"y":0},{"x":1569593220000,"y":0},{"x":1569593280000,"y":0},{"x":1569593340000,"y":0},{"x":1569593400000,"y":0},{"x":1569593460000,"y":0},{"x":1569593520000,"y":0},{"x":1569593580000,"y":0.01},{"x":1569593640000,"y":0},{"x":1569593700000,"y":0},{"x":1569593760000,"y":0},{"x":1569593820000,"y":0},{"x":1569593880000,"y":0},{"x":1569593940000,"y":0.01},{"x":1569594000000,"y":0},{"x":1569594060000,"y":0},{"x":1569594120000,"y":0},{"x":1569594180000,"y":0},{"x":1569594240000,"y":0},{"x":1569594300000,"y":0},{"x":1569594360000,"y":0.01},{"x":1569594420000,"y":0},{"x":1569594480000,"y":0},{"x":1569594540000,"y":0},{"x":1569594600000,"y":0},{"x":1569594660000,"y":0},{"x":1569594720000,"y":0},{"x":1569594780000,"y":0},{"x":1569594840000,"y":0},{"x":1569594900000,"y":0},{"x":1569594960000,"y":0},{"x":1569595020000,"y":0},{"x":1569595080000,"y":0},{"x":1569595140000,"y":0},{"x":1569595200000,"y":0},{"x":1569595260000,"y":0},{"x":1569595320000,"y":0},{"x":1569595380000,"y":0},{"x":1569595440000,"y":0},{"x":1569595500000,"y":0},{"x":1569595560000,"y":0},{"x":1569595620000,"y":0},{"x":1569595680000,"y":0},{"x":1569595740000,"y":0},{"x":1569595800000,"y":0},{"x":1569595860000,"y":0},{"x":1569595920000,"y":0},{"x":1569595980000,"y":0},{"x":1569596040000,"y":0},{"x":1569596100000,"y":0},{"x":1569596160000,"y":2.45},{"x":1569596220000,"y":0.53},{"x":1569596280000,"y":0},{"x":1569596340000,"y":4.75},{"x":1569596400000,"y":0},{"x":1569596460000,"y":0},{"x":1569596520000,"y":0},{"x":1569596580000,"y":0},{"x":1569596640000,"y":0},{"x":1569596700000,"y":0},{"x":1569596760000,"y":0},{"x":1569596820000,"y":0},{"x":1569596880000,"y":0},{"x":1569596940000,"y":0},{"x":1569597000000,"y":0},{"x":1569597060000,"y":0},{"x":1569597120000,"y":0},{"x":1569597180000,"y":0},{"x":1569597240000,"y":0},{"x":1569597300000,"y":0},{"x":1569597360000,"y":0},{"x":1569597420000,"y":0},{"x":1569597480000,"y":0.02},{"x":1569597540000,"y":0.01},{"x":1569597600000,"y":0},{"x":1569597660000,"y":0},{"x":1569597720000,"y":0},{"x":1569597780000,"y":0},{"x":1569597840000,"y":4.21},{"x":1569597900000,"y":0},{"x":1569597960000,"y":0},{"x":1569598020000,"y":0},{"x":1569598080000,"y":2.59},{"x":1569598140000,"y":0},{"x":1569598200000,"y":0},{"x":1569598260000,"y":0},{"x":1569598320000,"y":0},{"x":1569598380000,"y":0},{"x":1569598440000,"y":1.23},{"x":1569598500000,"y":0},{"x":1569598560000,"y":0},{"x":1569598620000,"y":0},{"x":1569598680000,"y":0},{"x":1569598740000,"y":0},{"x":1569598800000,"y":0},{"x":1569598860000,"y":1.77},{"x":1569598920000,"y":0},{"x":1569598980000,"y":0},{"x":1569599040000,"y":0.44},{"x":1569599100000,"y":0.41},{"x":1569599160000,"y":1.24},{"x":1569599220000,"y":0},{"x":1569599280000,"y":0},{"x":1569599340000,"y":0},{"x":1569599400000,"y":0},{"x":1569599460000,"y":0},{"x":1569599520000,"y":0},{"x":1569599580000,"y":0},{"x":1569599640000,"y":0},{"x":1569599700000,"y":0},{"x":1569599760000,"y":0},{"x":1569599820000,"y":0},{"x":1569599880000,"y":0},{"x":1569599940000,"y":0},{"x":1569600000000,"y":0},{"x":1569600060000,"y":0},{"x":1569600120000,"y":0.41},{"x":1569600180000,"y":0},{"x":1569600240000,"y":0},{"x":1569600300000,"y":0},{"x":1569600360000,"y":0},{"x":1569600420000,"y":0},{"x":1569600480000,"y":0},{"x":1569600540000,"y":0},{"x":1569600600000,"y":0},{"x":1569600660000,"y":0},{"x":1569600720000,"y":0},{"x":1569600780000,"y":0.82},{"x":1569600840000,"y":0},{"x":1569600900000,"y":0},{"x":1569600960000,"y":0},{"x":1569601020000,"y":0},{"x":1569601080000,"y":0},{"x":1569601140000,"y":0.01},{"x":1569601200000,"y":0},{"x":1569601260000,"y":0},{"x":1569601320000,"y":0},{"x":1569601380000,"y":0},{"x":1569601440000,"y":0},{"x":1569601500000,"y":0},{"x":1569601560000,"y":0},{"x":1569601620000,"y":0},{"x":1569601680000,"y":0},{"x":1569601740000,"y":0},{"x":1569601800000,"y":0},{"x":1569601860000,"y":0},{"x":1569601920000,"y":0},{"x":1569601980000,"y":0},{"x":1569602040000,"y":0},{"x":1569602100000,"y":0},{"x":1569602160000,"y":0},{"x":1569602220000,"y":0},{"x":1569602280000,"y":0},{"x":1569602340000,"y":0},{"x":1569602400000,"y":0},{"x":1569602460000,"y":0},{"x":1569602520000,"y":0},{"x":1569602580000,"y":0},{"x":1569602640000,"y":0},{"x":1569602700000,"y":0},{"x":1569602760000,"y":0},{"x":1569602820000,"y":0},{"x":1569602880000,"y":0},{"x":1569602940000,"y":0},{"x":1569603000000,"y":0},{"x":1569603060000,"y":0},{"x":1569603120000,"y":0},{"x":1569603180000,"y":0},{"x":1569603240000,"y":0},{"x":1569603300000,"y":0},{"x":1569603360000,"y":0},{"x":1569603420000,"y":0},{"x":1569603480000,"y":0},{"x":1569603540000,"y":0},{"x":1569603600000,"y":0},{"x":1569603660000,"y":0},{"x":1569603720000,"y":0},{"x":1569603780000,"y":0},{"x":1569603840000,"y":0},{"x":1569603900000,"y":0},{"x":1569603960000,"y":0},{"x":1569604020000,"y":0},{"x":1569604080000,"y":0},{"x":1569604140000,"y":0},{"x":1569604200000,"y":0},{"x":1569604260000,"y":0.13},{"x":1569604320000,"y":1.76},{"x":1569604380000,"y":0},{"x":1569604440000,"y":0},{"x":1569604500000,"y":0},{"x":1569604560000,"y":0},{"x":1569604620000,"y":0},{"x":1569604680000,"y":0},{"x":1569604740000,"y":0.01},{"x":1569604800000,"y":0},{"x":1569604860000,"y":0},{"x":1569604920000,"y":0},{"x":1569604980000,"y":0},{"x":1569605040000,"y":0},{"x":1569605100000,"y":0},{"x":1569605160000,"y":0},{"x":1569605220000,"y":0},{"x":1569605280000,"y":0},{"x":1569605340000,"y":0},{"x":1569605400000,"y":0},{"x":1569605460000,"y":0},{"x":1569605520000,"y":0},{"x":1569605580000,"y":0},{"x":1569605640000,"y":0},{"x":1569605700000,"y":0},{"x":1569605760000,"y":0},{"x":1569605820000,"y":0},{"x":1569605880000,"y":0},{"x":1569605940000,"y":0},{"x":1569606000000,"y":0},{"x":1569606060000,"y":0},{"x":1569606120000,"y":0},{"x":1569606180000,"y":0},{"x":1569606240000,"y":0},{"x":1569606300000,"y":0},{"x":1569606360000,"y":0},{"x":1569606420000,"y":0},{"x":1569606480000,"y":0},{"x":1569606540000,"y":0},{"x":1569606600000,"y":0},{"x":1569606660000,"y":0},{"x":1569606720000,"y":0},{"x":1569606780000,"y":0},{"x":1569606840000,"y":0},{"x":1569606900000,"y":0},{"x":1569606960000,"y":0},{"x":1569607020000,"y":0},{"x":1569607080000,"y":0},{"x":1569607140000,"y":0},{"x":1569607200000,"y":0},{"x":1569607260000,"y":0},{"x":1569607320000,"y":0},{"x":1569607380000,"y":0},{"x":1569607440000,"y":0},{"x":1569607500000,"y":0},{"x":1569607560000,"y":0},{"x":1569607620000,"y":0},{"x":1569607680000,"y":0},{"x":1569607740000,"y":0.02},{"x":1569607800000,"y":0},{"x":1569607860000,"y":0},{"x":1569607920000,"y":0},{"x":1569607980000,"y":0},{"x":1569608040000,"y":0},{"x":1569608100000,"y":0},{"x":1569608160000,"y":0},{"x":1569608220000,"y":0},{"x":1569608280000,"y":0},{"x":1569608340000,"y":0.01},{"x":1569608400000,"y":0.01},{"x":1569608460000,"y":0},{"x":1569608520000,"y":0},{"x":1569608580000,"y":0},{"x":1569608640000,"y":0},{"x":1569608700000,"y":0},{"x":1569608760000,"y":0},{"x":1569608820000,"y":0},{"x":1569608880000,"y":0},{"x":1569608940000,"y":0},{"x":1569609000000,"y":0},{"x":1569609060000,"y":0},{"x":1569609120000,"y":0},{"x":1569609180000,"y":0},{"x":1569609240000,"y":0},{"x":1569609300000,"y":0},{"x":1569609360000,"y":0.03},{"x":1569609420000,"y":0.83},{"x":1569609480000,"y":1.09},{"x":1569609540000,"y":1.14},{"x":1569609600000,"y":0.86},{"x":1569609660000,"y":16.09},{"x":1569609720000,"y":2.46},{"x":1569609780000,"y":0},{"x":1569609840000,"y":0},{"x":1569609900000,"y":0},{"x":1569609960000,"y":0},{"x":1569610020000,"y":0},{"x":1569610080000,"y":0},{"x":1569610140000,"y":0},{"x":1569610200000,"y":0},{"x":1569610260000,"y":0},{"x":1569610320000,"y":0},{"x":1569610380000,"y":0},{"x":1569610440000,"y":0},{"x":1569610500000,"y":0},{"x":1569610560000,"y":0},{"x":1569610620000,"y":0},{"x":1569610680000,"y":0},{"x":1569610740000,"y":0},{"x":1569610800000,"y":0},{"x":1569610860000,"y":0},{"x":1569610920000,"y":0},{"x":1569610980000,"y":0},{"x":1569611040000,"y":0},{"x":1569611100000,"y":0},{"x":1569611160000,"y":0},{"x":1569611220000,"y":0},{"x":1569611280000,"y":0},{"x":1569611340000,"y":0},{"x":1569611400000,"y":0},{"x":1569611460000,"y":0},{"x":1569611520000,"y":0},{"x":1569611580000,"y":0},{"x":1569611640000,"y":0},{"x":1569611700000,"y":0},{"x":1569611760000,"y":0},{"x":1569611820000,"y":0},{"x":1569611880000,"y":0},{"x":1569611940000,"y":0.01},{"x":1569612000000,"y":0},{"x":1569612060000,"y":0},{"x":1569612120000,"y":0},{"x":1569612180000,"y":0},{"x":1569612240000,"y":0},{"x":1569612300000,"y":0},{"x":1569612360000,"y":0},{"x":1569612420000,"y":0},{"x":1569612480000,"y":0},{"x":1569612540000,"y":0},{"x":1569612600000,"y":0},{"x":1569612660000,"y":0},{"x":1569612720000,"y":0},{"x":1569612780000,"y":0},{"x":1569612840000,"y":0},{"x":1569612900000,"y":0},{"x":1569612960000,"y":0},{"x":1569613020000,"y":0},{"x":1569613080000,"y":0},{"x":1569613140000,"y":0},{"x":1569613200000,"y":0},{"x":1569613260000,"y":0},{"x":1569613320000,"y":0},{"x":1569613380000,"y":0},{"x":1569613440000,"y":0},{"x":1569613500000,"y":0},{"x":1569613560000,"y":0},{"x":1569613620000,"y":0},{"x":1569613680000,"y":0},{"x":1569613740000,"y":0},{"x":1569613800000,"y":0},{"x":1569613860000,"y":0},{"x":1569613920000,"y":0},{"x":1569613980000,"y":0},{"x":1569614040000,"y":0},{"x":1569614100000,"y":0},{"x":1569614160000,"y":0},{"x":1569614220000,"y":0},{"x":1569614280000,"y":0},{"x":1569614340000,"y":0},{"x":1569614400000,"y":0},{"x":1569614460000,"y":0},{"x":1569614520000,"y":0},{"x":1569614580000,"y":0},{"x":1569614640000,"y":0},{"x":1569614700000,"y":0},{"x":1569614760000,"y":0},{"x":1569614820000,"y":0},{"x":1569614880000,"y":0},{"x":1569614940000,"y":0},{"x":1569615000000,"y":0},{"x":1569615060000,"y":0},{"x":1569615120000,"y":0},{"x":1569615180000,"y":0},{"x":1569615240000,"y":0},{"x":1569615300000,"y":0},{"x":1569615360000,"y":0},{"x":1569615420000,"y":0},{"x":1569615480000,"y":0},{"x":1569615540000,"y":0.01},{"x":1569615600000,"y":0},{"x":1569615660000,"y":0.1},{"x":1569615720000,"y":0.01},{"x":1569615780000,"y":0},{"x":1569615840000,"y":0},{"x":1569615900000,"y":0.1},{"x":1569615960000,"y":0},{"x":1569616020000,"y":0},{"x":1569616080000,"y":0},{"x":1569616140000,"y":0},{"x":1569616200000,"y":0.01},{"x":1569616260000,"y":0},{"x":1569616320000,"y":0},{"x":1569616380000,"y":0},{"x":1569616440000,"y":0},{"x":1569616500000,"y":0},{"x":1569616560000,"y":0},{"x":1569616620000,"y":0},{"x":1569616680000,"y":0},{"x":1569616740000,"y":0},{"x":1569616800000,"y":0},{"x":1569616860000,"y":0},{"x":1569616920000,"y":0},{"x":1569616980000,"y":0},{"x":1569617040000,"y":0},{"x":1569617100000,"y":0},{"x":1569617160000,"y":0},{"x":1569617220000,"y":0},{"x":1569617280000,"y":0},{"x":1569617340000,"y":0},{"x":1569617400000,"y":0},{"x":1569617460000,"y":0},{"x":1569617520000,"y":0},{"x":1569617580000,"y":0},{"x":1569617640000,"y":0},{"x":1569617700000,"y":0},{"x":1569617760000,"y":0},{"x":1569617820000,"y":0},{"x":1569617880000,"y":0},{"x":1569617940000,"y":0},{"x":1569618000000,"y":0},{"x":1569618060000,"y":0},{"x":1569618120000,"y":0},{"x":1569618180000,"y":0},{"x":1569618240000,"y":0},{"x":1569618300000,"y":0},{"x":1569618360000,"y":0},{"x":1569618420000,"y":0},{"x":1569618480000,"y":0},{"x":1569618540000,"y":0},{"x":1569618600000,"y":0},{"x":1569618660000,"y":0},{"x":1569618720000,"y":0},{"x":1569618780000,"y":0},{"x":1569618840000,"y":0},{"x":1569618900000,"y":0},{"x":1569618960000,"y":0},{"x":1569619020000,"y":0},{"x":1569619080000,"y":0.01},{"x":1569619140000,"y":0.01},{"x":1569619200000,"y":0},{"x":1569619260000,"y":0},{"x":1569619320000,"y":0.95},{"x":1569619380000,"y":0},{"x":1569619440000,"y":0},{"x":1569619500000,"y":0},{"x":1569619560000,"y":0},{"x":1569619620000,"y":0},{"x":1569619680000,"y":0},{"x":1569619740000,"y":0},{"x":1569619800000,"y":0},{"x":1569619860000,"y":0},{"x":1569619920000,"y":0},{"x":1569619980000,"y":0},{"x":1569620040000,"y":0},{"x":1569620100000,"y":0},{"x":1569620160000,"y":0},{"x":1569620220000,"y":0},{"x":1569620280000,"y":0},{"x":1569620340000,"y":0},{"x":1569620400000,"y":0},{"x":1569620460000,"y":0.95},{"x":1569620520000,"y":0},{"x":1569620580000,"y":0},{"x":1569620640000,"y":0},{"x":1569620700000,"y":0},{"x":1569620760000,"y":0},{"x":1569620820000,"y":0},{"x":1569620880000,"y":0},{"x":1569620940000,"y":0},{"x":1569621000000,"y":0},{"x":1569621060000,"y":0},{"x":1569621120000,"y":0},{"x":1569621180000,"y":0},{"x":1569621240000,"y":0},{"x":1569621300000,"y":0},{"x":1569621360000,"y":0},{"x":1569621420000,"y":0},{"x":1569621480000,"y":0.01},{"x":1569621540000,"y":0},{"x":1569621600000,"y":0},{"x":1569621660000,"y":0},{"x":1569621720000,"y":0},{"x":1569621780000,"y":0},{"x":1569621840000,"y":0},{"x":1569621900000,"y":0},{"x":1569621960000,"y":0},{"x":1569622020000,"y":0},{"x":1569622080000,"y":0},{"x":1569622140000,"y":0},{"x":1569622200000,"y":0},{"x":1569622260000,"y":0},{"x":1569622320000,"y":0},{"x":1569622380000,"y":0},{"x":1569622440000,"y":0},{"x":1569622500000,"y":0},{"x":1569622560000,"y":0},{"x":1569622620000,"y":0},{"x":1569622680000,"y":0},{"x":1569622740000,"y":0.01},{"x":1569622800000,"y":0},{"x":1569622860000,"y":0},{"x":1569622920000,"y":0},{"x":1569622980000,"y":0},{"x":1569623040000,"y":0},{"x":1569623100000,"y":0.77},{"x":1569623160000,"y":0},{"x":1569623220000,"y":0},{"x":1569623280000,"y":1.59},{"x":1569623340000,"y":0},{"x":1569623400000,"y":0.02},{"x":1569623460000,"y":0.27},{"x":1569623520000,"y":0.88},{"x":1569623580000,"y":0},{"x":1569623640000,"y":5.55},{"x":1569623700000,"y":0},{"x":1569623760000,"y":0.24},{"x":1569623820000,"y":0},{"x":1569623880000,"y":0.01},{"x":1569623940000,"y":0},{"x":1569624000000,"y":0},{"x":1569624060000,"y":0},{"x":1569624120000,"y":0},{"x":1569624180000,"y":0},{"x":1569624240000,"y":0},{"x":1569624300000,"y":0},{"x":1569624360000,"y":0},{"x":1569624420000,"y":0},{"x":1569624480000,"y":0},{"x":1569624540000,"y":0},{"x":1569624600000,"y":0},{"x":1569624660000,"y":0},{"x":1569624720000,"y":0},{"x":1569624780000,"y":0},{"x":1569624840000,"y":0},{"x":1569624900000,"y":0},{"x":1569624960000,"y":0},{"x":1569625020000,"y":0},{"x":1569625080000,"y":0},{"x":1569625140000,"y":0},{"x":1569625200000,"y":0},{"x":1569625260000,"y":0},{"x":1569625320000,"y":0},{"x":1569625380000,"y":0},{"x":1569625440000,"y":0},{"x":1569625500000,"y":0},{"x":1569625560000,"y":0},{"x":1569625620000,"y":0},{"x":1569625680000,"y":0},{"x":1569625740000,"y":0},{"x":1569625800000,"y":0},{"x":1569625860000,"y":0},{"x":1569625920000,"y":0},{"x":1569625980000,"y":0},{"x":1569626040000,"y":0},{"x":1569626100000,"y":0},{"x":1569626160000,"y":0},{"x":1569626220000,"y":0},{"x":1569626280000,"y":0},{"x":1569626340000,"y":0.01},{"x":1569626400000,"y":0},{"x":1569626460000,"y":0},{"x":1569626520000,"y":0},{"x":1569626580000,"y":0},{"x":1569626640000,"y":0},{"x":1569626700000,"y":0},{"x":1569626760000,"y":0},{"x":1569626820000,"y":0},{"x":1569626880000,"y":0},{"x":1569626940000,"y":0},{"x":1569627000000,"y":0},{"x":1569627060000,"y":0},{"x":1569627120000,"y":0},{"x":1569627180000,"y":0},{"x":1569627240000,"y":0},{"x":1569627300000,"y":0},{"x":1569627360000,"y":0},{"x":1569627420000,"y":0},{"x":1569627480000,"y":0},{"x":1569627540000,"y":0},{"x":1569627600000,"y":0},{"x":1569627660000,"y":0},{"x":1569627720000,"y":0},{"x":1569627780000,"y":0},{"x":1569627840000,"y":0},{"x":1569627900000,"y":0},{"x":1569627960000,"y":0},{"x":1569628020000,"y":0},{"x":1569628080000,"y":0},{"x":1569628140000,"y":0},{"x":1569628200000,"y":0},{"x":1569628260000,"y":0},{"x":1569628320000,"y":0},{"x":1569628380000,"y":0},{"x":1569628440000,"y":0},{"x":1569628500000,"y":0},{"x":1569628560000,"y":0},{"x":1569628620000,"y":0},{"x":1569628680000,"y":0},{"x":1569628740000,"y":0},{"x":1569628800000,"y":0},{"x":1569628860000,"y":0},{"x":1569628920000,"y":0},{"x":1569628980000,"y":0},{"x":1569629040000,"y":0},{"x":1569629100000,"y":0},{"x":1569629160000,"y":0},{"x":1569629220000,"y":0},{"x":1569629280000,"y":0.96},{"x":1569629340000,"y":0},{"x":1569629400000,"y":0},{"x":1569629460000,"y":0},{"x":1569629520000,"y":0},{"x":1569629580000,"y":0},{"x":1569629640000,"y":0},{"x":1569629700000,"y":0},{"x":1569629760000,"y":0.01},{"x":1569629820000,"y":0},{"x":1569629880000,"y":0},{"x":1569629940000,"y":0.01},{"x":1569630000000,"y":0},{"x":1569630060000,"y":0},{"x":1569630120000,"y":0},{"x":1569630180000,"y":0},{"x":1569630240000,"y":0.01},{"x":1569630300000,"y":0},{"x":1569630360000,"y":0},{"x":1569630420000,"y":0},{"x":1569630480000,"y":0},{"x":1569630540000,"y":0},{"x":1569630600000,"y":0},{"x":1569630660000,"y":0},{"x":1569630720000,"y":0},{"x":1569630780000,"y":0},{"x":1569630840000,"y":0},{"x":1569630900000,"y":0},{"x":1569630960000,"y":0},{"x":1569631020000,"y":0},{"x":1569631080000,"y":0},{"x":1569631140000,"y":0},{"x":1569631200000,"y":0},{"x":1569631260000,"y":0},{"x":1569631320000,"y":0},{"x":1569631380000,"y":0},{"x":1569631440000,"y":0},{"x":1569631500000,"y":0},{"x":1569631560000,"y":0},{"x":1569631620000,"y":0},{"x":1569631680000,"y":0},{"x":1569631740000,"y":0},{"x":1569631800000,"y":0},{"x":1569631860000,"y":0},{"x":1569631920000,"y":0},{"x":1569631980000,"y":0},{"x":1569632040000,"y":0},{"x":1569632100000,"y":0.04},{"x":1569632160000,"y":0.18},{"x":1569632220000,"y":0},{"x":1569632280000,"y":0},{"x":1569632340000,"y":0},{"x":1569632400000,"y":0},{"x":1569632460000,"y":0},{"x":1569632520000,"y":0},{"x":1569632580000,"y":0},{"x":1569632640000,"y":0},{"x":1569632700000,"y":0},{"x":1569632760000,"y":0},{"x":1569632820000,"y":0},{"x":1569632880000,"y":0},{"x":1569632940000,"y":0},{"x":1569633000000,"y":0},{"x":1569633060000,"y":0},{"x":1569633120000,"y":0},{"x":1569633180000,"y":0},{"x":1569633240000,"y":0},{"x":1569633300000,"y":0.01},{"x":1569633360000,"y":0},{"x":1569633420000,"y":0},{"x":1569633480000,"y":0},{"x":1569633540000,"y":0.01},{"x":1569633600000,"y":0},{"x":1569633660000,"y":0},{"x":1569633720000,"y":0.94},{"x":1569633780000,"y":0},{"x":1569633840000,"y":0},{"x":1569633900000,"y":0},{"x":1569633960000,"y":0},{"x":1569634020000,"y":0},{"x":1569634080000,"y":0},{"x":1569634140000,"y":0},{"x":1569634200000,"y":0},{"x":1569634260000,"y":0},{"x":1569634320000,"y":0},{"x":1569634380000,"y":0},{"x":1569634440000,"y":0},{"x":1569634500000,"y":0.08},{"x":1569634560000,"y":0},{"x":1569634620000,"y":0},{"x":1569634680000,"y":0},{"x":1569634740000,"y":0},{"x":1569634800000,"y":0},{"x":1569634860000,"y":0},{"x":1569634920000,"y":0},{"x":1569634980000,"y":0},{"x":1569635040000,"y":0},{"x":1569635100000,"y":0},{"x":1569635160000,"y":0},{"x":1569635220000,"y":0},{"x":1569635280000,"y":0},{"x":1569635340000,"y":0},{"x":1569635400000,"y":0},{"x":1569635460000,"y":0},{"x":1569635520000,"y":0},{"x":1569635580000,"y":0},{"x":1569635640000,"y":0},{"x":1569635700000,"y":0.01},{"x":1569635760000,"y":0.01},{"x":1569635820000,"y":0},{"x":1569635880000,"y":0},{"x":1569635940000,"y":0},{"x":1569636000000,"y":0},{"x":1569636060000,"y":0},{"x":1569636120000,"y":0},{"x":1569636180000,"y":0},{"x":1569636240000,"y":0},{"x":1569636300000,"y":0},{"x":1569636360000,"y":0},{"x":1569636420000,"y":0},{"x":1569636480000,"y":0},{"x":1569636540000,"y":0},{"x":1569636600000,"y":0},{"x":1569636660000,"y":0},{"x":1569636720000,"y":0},{"x":1569636780000,"y":0},{"x":1569636840000,"y":0},{"x":1569636900000,"y":0},{"x":1569636960000,"y":0},{"x":1569637020000,"y":0},{"x":1569637080000,"y":0},{"x":1569637140000,"y":0.01},{"x":1569637200000,"y":0.02},{"x":1569637260000,"y":0},{"x":1569637320000,"y":0},{"x":1569637380000,"y":0.02},{"x":1569637440000,"y":0.59},{"x":1569637500000,"y":0},{"x":1569637560000,"y":0},{"x":1569637620000,"y":0},{"x":1569637680000,"y":0},{"x":1569637740000,"y":0},{"x":1569637800000,"y":0},{"x":1569637860000,"y":0},{"x":1569637920000,"y":0},{"x":1569637980000,"y":0},{"x":1569638040000,"y":0},{"x":1569638100000,"y":0},{"x":1569638160000,"y":0},{"x":1569638220000,"y":0},{"x":1569638280000,"y":0.07},{"x":1569638340000,"y":0.72},{"x":1569638400000,"y":0},{"x":1569638460000,"y":0.01},{"x":1569638520000,"y":0},{"x":1569638580000,"y":0},{"x":1569638640000,"y":0},{"x":1569638700000,"y":0.01},{"x":1569638760000,"y":0},{"x":1569638820000,"y":0},{"x":1569638880000,"y":0},{"x":1569638940000,"y":0},{"x":1569639000000,"y":0},{"x":1569639060000,"y":0},{"x":1569639120000,"y":0},{"x":1569639180000,"y":0},{"x":1569639240000,"y":0},{"x":1569639300000,"y":0.01},{"x":1569639360000,"y":0.01},{"x":1569639420000,"y":0},{"x":1569639480000,"y":0},{"x":1569639540000,"y":0},{"x":1569639600000,"y":0},{"x":1569639660000,"y":0},{"x":1569639720000,"y":0},{"x":1569639780000,"y":0},{"x":1569639840000,"y":0},{"x":1569639900000,"y":0},{"x":1569639960000,"y":0},{"x":1569640020000,"y":0},{"x":1569640080000,"y":0},{"x":1569640140000,"y":0},{"x":1569640200000,"y":0},{"x":1569640260000,"y":0},{"x":1569640320000,"y":0.01},{"x":1569640380000,"y":0},{"x":1569640440000,"y":0},{"x":1569640500000,"y":0},{"x":1569640560000,"y":0},{"x":1569640620000,"y":0},{"x":1569640680000,"y":0},{"x":1569640740000,"y":0.01},{"x":1569640800000,"y":0},{"x":1569640860000,"y":0},{"x":1569640920000,"y":0},{"x":1569640980000,"y":0},{"x":1569641040000,"y":0},{"x":1569641100000,"y":0},{"x":1569641160000,"y":0},{"x":1569641220000,"y":0},{"x":1569641280000,"y":0},{"x":1569641340000,"y":0},{"x":1569641400000,"y":0},{"x":1569641460000,"y":0},{"x":1569641520000,"y":0},{"x":1569641580000,"y":0},{"x":1569641640000,"y":0},{"x":1569641700000,"y":0},{"x":1569641760000,"y":0},{"x":1569641820000,"y":0},{"x":1569641880000,"y":0},{"x":1569641940000,"y":0},{"x":1569642000000,"y":0},{"x":1569642060000,"y":0},{"x":1569642120000,"y":0},{"x":1569642180000,"y":0},{"x":1569642240000,"y":0},{"x":1569642300000,"y":0},{"x":1569642360000,"y":0},{"x":1569642420000,"y":0},{"x":1569642480000,"y":0},{"x":1569642540000,"y":0},{"x":1569642600000,"y":0},{"x":1569642660000,"y":0},{"x":1569642720000,"y":0},{"x":1569642780000,"y":0},{"x":1569642840000,"y":0},{"x":1569642900000,"y":0.01},{"x":1569642960000,"y":0.01},{"x":1569643020000,"y":0},{"x":1569643080000,"y":0},{"x":1569643140000,"y":0},{"x":1569643200000,"y":0},{"x":1569643260000,"y":0},{"x":1569643320000,"y":0},{"x":1569643380000,"y":0},{"x":1569643440000,"y":0},{"x":1569643500000,"y":0},{"x":1569643560000,"y":0},{"x":1569643620000,"y":0},{"x":1569643680000,"y":0},{"x":1569643740000,"y":0},{"x":1569643800000,"y":0},{"x":1569643860000,"y":0},{"x":1569643920000,"y":0},{"x":1569643980000,"y":0},{"x":1569644040000,"y":0},{"x":1569644100000,"y":0},{"x":1569644160000,"y":0},{"x":1569644220000,"y":0},{"x":1569644280000,"y":0},{"x":1569644340000,"y":0.01},{"x":1569644400000,"y":0},{"x":1569644460000,"y":0},{"x":1569644520000,"y":0},{"x":1569644580000,"y":0},{"x":1569644640000,"y":0},{"x":1569644700000,"y":0},{"x":1569644760000,"y":0},{"x":1569644820000,"y":0},{"x":1569644880000,"y":0},{"x":1569644940000,"y":0},{"x":1569645000000,"y":0},{"x":1569645060000,"y":0},{"x":1569645120000,"y":0},{"x":1569645180000,"y":0},{"x":1569645240000,"y":0},{"x":1569645300000,"y":0},{"x":1569645360000,"y":0.01},{"x":1569645420000,"y":0},{"x":1569645480000,"y":0},{"x":1569645540000,"y":0},{"x":1569645600000,"y":0},{"x":1569645660000,"y":0},{"x":1569645720000,"y":0},{"x":1569645780000,"y":0},{"x":1569645840000,"y":0},{"x":1569645900000,"y":0},{"x":1569645960000,"y":0},{"x":1569646020000,"y":0},{"x":1569646080000,"y":0},{"x":1569646140000,"y":0},{"x":1569646200000,"y":0},{"x":1569646260000,"y":0},{"x":1569646320000,"y":0},{"x":1569646380000,"y":0},{"x":1569646440000,"y":0},{"x":1569646500000,"y":0.01},{"x":1569646560000,"y":0.01},{"x":1569646620000,"y":0},{"x":1569646680000,"y":0},{"x":1569646740000,"y":0},{"x":1569646800000,"y":0},{"x":1569646860000,"y":0},{"x":1569646920000,"y":0},{"x":1569646980000,"y":0},{"x":1569647040000,"y":0},{"x":1569647100000,"y":0},{"x":1569647160000,"y":0},{"x":1569647220000,"y":0},{"x":1569647280000,"y":0},{"x":1569647340000,"y":0},{"x":1569647400000,"y":0},{"x":1569647460000,"y":0},{"x":1569647520000,"y":0},{"x":1569647580000,"y":0},{"x":1569647640000,"y":0},{"x":1569647700000,"y":0},{"x":1569647760000,"y":0},{"x":1569647820000,"y":0},{"x":1569647880000,"y":0},{"x":1569647940000,"y":0.01},{"x":1569648000000,"y":0},{"x":1569648060000,"y":0},{"x":1569648120000,"y":0},{"x":1569648180000,"y":0},{"x":1569648240000,"y":0},{"x":1569648300000,"y":0},{"x":1569648360000,"y":0},{"x":1569648420000,"y":0},{"x":1569648480000,"y":1.45},{"x":1569648540000,"y":0},{"x":1569648600000,"y":0},{"x":1569648660000,"y":0},{"x":1569648720000,"y":0},{"x":1569648780000,"y":0},{"x":1569648840000,"y":0},{"x":1569648900000,"y":0},{"x":1569648960000,"y":0},{"x":1569649020000,"y":0},{"x":1569649080000,"y":0},{"x":1569649140000,"y":0.01},{"x":1569649200000,"y":0},{"x":1569649260000,"y":0},{"x":1569649320000,"y":0},{"x":1569649380000,"y":0.42},{"x":1569649440000,"y":0},{"x":1569649500000,"y":0.42},{"x":1569649560000,"y":0},{"x":1569649620000,"y":0.42},{"x":1569649680000,"y":0},{"x":1569649740000,"y":0},{"x":1569649800000,"y":0},{"x":1569649860000,"y":0},{"x":1569649920000,"y":0},{"x":1569649980000,"y":0},{"x":1569650040000,"y":0},{"x":1569650100000,"y":0.01},{"x":1569650160000,"y":0.01},{"x":1569650220000,"y":0},{"x":1569650280000,"y":0},{"x":1569650340000,"y":0},{"x":1569650400000,"y":0},{"x":1569650460000,"y":0},{"x":1569650520000,"y":0.13},{"x":1569650580000,"y":0.01},{"x":1569650640000,"y":0},{"x":1569650700000,"y":0},{"x":1569650760000,"y":0.4},{"x":1569650820000,"y":0},{"x":1569650880000,"y":0},{"x":1569650940000,"y":0},{"x":1569651000000,"y":0},{"x":1569651060000,"y":0},{"x":1569651120000,"y":0},{"x":1569651180000,"y":0},{"x":1569651240000,"y":0},{"x":1569651300000,"y":0},{"x":1569651360000,"y":0},{"x":1569651420000,"y":0},{"x":1569651480000,"y":0},{"x":1569651540000,"y":0.01},{"x":1569651600000,"y":0},{"x":1569651660000,"y":0},{"x":1569651720000,"y":0},{"x":1569651780000,"y":0},{"x":1569651840000,"y":0},{"x":1569651900000,"y":0},{"x":1569651960000,"y":0},{"x":1569652020000,"y":0},{"x":1569652080000,"y":0},{"x":1569652140000,"y":0.01},{"x":1569652200000,"y":0},{"x":1569652260000,"y":0},{"x":1569652320000,"y":0},{"x":1569652380000,"y":0},{"x":1569652440000,"y":0},{"x":1569652500000,"y":0},{"x":1569652560000,"y":0},{"x":1569652620000,"y":0},{"x":1569652680000,"y":0},{"x":1569652740000,"y":0},{"x":1569652800000,"y":0.02},{"x":1569652860000,"y":0.01},{"x":1569652920000,"y":0},{"x":1569652980000,"y":0},{"x":1569653040000,"y":0},{"x":1569653100000,"y":0},{"x":1569653160000,"y":0},{"x":1569653220000,"y":0},{"x":1569653280000,"y":0},{"x":1569653340000,"y":0},{"x":1569653400000,"y":0},{"x":1569653460000,"y":0},{"x":1569653520000,"y":0},{"x":1569653580000,"y":0},{"x":1569653640000,"y":0},{"x":1569653700000,"y":0.01},{"x":1569653760000,"y":0.01},{"x":1569653820000,"y":0},{"x":1569653880000,"y":0.07},{"x":1569653940000,"y":0},{"x":1569654000000,"y":0},{"x":1569654060000,"y":0},{"x":1569654120000,"y":0},{"x":1569654180000,"y":0},{"x":1569654240000,"y":0},{"x":1569654300000,"y":0},{"x":1569654360000,"y":0},{"x":1569654420000,"y":0},{"x":1569654480000,"y":0},{"x":1569654540000,"y":0},{"x":1569654600000,"y":0},{"x":1569654660000,"y":0},{"x":1569654720000,"y":0},{"x":1569654780000,"y":0},{"x":1569654840000,"y":0},{"x":1569654900000,"y":0},{"x":1569654960000,"y":0},{"x":1569655020000,"y":0},{"x":1569655080000,"y":0},{"x":1569655140000,"y":0.01},{"x":1569655200000,"y":0},{"x":1569655260000,"y":0},{"x":1569655320000,"y":0},{"x":1569655380000,"y":0},{"x":1569655440000,"y":0},{"x":1569655500000,"y":0},{"x":1569655560000,"y":0},{"x":1569655620000,"y":0},{"x":1569655680000,"y":0},{"x":1569655740000,"y":0},{"x":1569655800000,"y":0},{"x":1569655860000,"y":0},{"x":1569655920000,"y":0},{"x":1569655980000,"y":0},{"x":1569656040000,"y":0},{"x":1569656100000,"y":0},{"x":1569656160000,"y":0},{"x":1569656220000,"y":0},{"x":1569656280000,"y":0},{"x":1569656340000,"y":0},{"x":1569656400000,"y":0},{"x":1569656460000,"y":0},{"x":1569656520000,"y":0},{"x":1569656580000,"y":0},{"x":1569656640000,"y":0.01},{"x":1569656700000,"y":0},{"x":1569656760000,"y":0},{"x":1569656820000,"y":0},{"x":1569656880000,"y":0},{"x":1569656940000,"y":0},{"x":1569657000000,"y":0},{"x":1569657060000,"y":0},{"x":1569657120000,"y":0},{"x":1569657180000,"y":0},{"x":1569657240000,"y":0},{"x":1569657300000,"y":0.01},{"x":1569657360000,"y":0.01},{"x":1569657420000,"y":0},{"x":1569657480000,"y":0},{"x":1569657540000,"y":0},{"x":1569657600000,"y":0},{"x":1569657660000,"y":0},{"x":1569657720000,"y":0},{"x":1569657780000,"y":0},{"x":1569657840000,"y":0},{"x":1569657900000,"y":0},{"x":1569657960000,"y":0},{"x":1569658020000,"y":0},{"x":1569658080000,"y":0},{"x":1569658140000,"y":0},{"x":1569658200000,"y":0},{"x":1569658260000,"y":0},{"x":1569658320000,"y":0},{"x":1569658380000,"y":0},{"x":1569658440000,"y":0},{"x":1569658500000,"y":0},{"x":1569658560000,"y":0},{"x":1569658620000,"y":0},{"x":1569658680000,"y":0},{"x":1569658740000,"y":0.01},{"x":1569658800000,"y":0},{"x":1569658860000,"y":0},{"x":1569658920000,"y":0},{"x":1569658980000,"y":0},{"x":1569659040000,"y":0},{"x":1569659100000,"y":0},{"x":1569659160000,"y":0},{"x":1569659220000,"y":0},{"x":1569659280000,"y":0},{"x":1569659340000,"y":0},{"x":1569659400000,"y":0},{"x":1569659460000,"y":0},{"x":1569659520000,"y":0},{"x":1569659580000,"y":0},{"x":1569659640000,"y":0},{"x":1569659700000,"y":0},{"x":1569659760000,"y":0},{"x":1569659820000,"y":0},{"x":1569659880000,"y":0},{"x":1569659940000,"y":0},{"x":1569660000000,"y":0},{"x":1569660060000,"y":0},{"x":1569660120000,"y":0},{"x":1569660180000,"y":0},{"x":1569660240000,"y":0},{"x":1569660300000,"y":0},{"x":1569660360000,"y":0},{"x":1569660420000,"y":0},{"x":1569660480000,"y":0},{"x":1569660540000,"y":0.02},{"x":1569660600000,"y":0},{"x":1569660660000,"y":0},{"x":1569660720000,"y":0.01},{"x":1569660780000,"y":0.02},{"x":1569660840000,"y":0.02},{"x":1569660900000,"y":0.02},{"x":1569660960000,"y":0.02},{"x":1569661020000,"y":0.02},{"x":1569661080000,"y":0.02},{"x":1569661140000,"y":0.02},{"x":1569661200000,"y":0.02},{"x":1569661260000,"y":0.01},{"x":1569661320000,"y":0.01},{"x":1569661380000,"y":0.01},{"x":1569661440000,"y":0.02},{"x":1569661500000,"y":0.01},{"x":1569661560000,"y":0},{"x":1569661620000,"y":0},{"x":1569661680000,"y":0},{"x":1569661740000,"y":0},{"x":1569661800000,"y":0},{"x":1569661860000,"y":0},{"x":1569661920000,"y":0},{"x":1569661980000,"y":0},{"x":1569662040000,"y":0},{"x":1569662100000,"y":0},{"x":1569662160000,"y":0},{"x":1569662220000,"y":0},{"x":1569662280000,"y":0},{"x":1569662340000,"y":0.01},{"x":1569662400000,"y":0},{"x":1569662460000,"y":0},{"x":1569662520000,"y":0},{"x":1569662580000,"y":0},{"x":1569662640000,"y":0},{"x":1569662700000,"y":0},{"x":1569662760000,"y":0},{"x":1569662820000,"y":0},{"x":1569662880000,"y":0},{"x":1569662940000,"y":0},{"x":1569663000000,"y":0},{"x":1569663060000,"y":0},{"x":1569663120000,"y":0},{"x":1569663180000,"y":0},{"x":1569663240000,"y":0},{"x":1569663300000,"y":0},{"x":1569663360000,"y":0},{"x":1569663420000,"y":0},{"x":1569663480000,"y":0},{"x":1569663540000,"y":0},{"x":1569663600000,"y":0},{"x":1569663660000,"y":0},{"x":1569663720000,"y":0},{"x":1569663780000,"y":0},{"x":1569663840000,"y":0},{"x":1569663900000,"y":0},{"x":1569663960000,"y":0},{"x":1569664020000,"y":0},{"x":1569664080000,"y":0},{"x":1569664140000,"y":0},{"x":1569664200000,"y":0},{"x":1569664260000,"y":0},{"x":1569664320000,"y":0},{"x":1569664380000,"y":0},{"x":1569664440000,"y":0},{"x":1569664500000,"y":0.01},{"x":1569664560000,"y":0.01},{"x":1569664620000,"y":0},{"x":1569664680000,"y":0},{"x":1569664740000,"y":0},{"x":1569664800000,"y":0},{"x":1569664860000,"y":0},{"x":1569664920000,"y":0},{"x":1569664980000,"y":0},{"x":1569665040000,"y":0},{"x":1569665100000,"y":0},{"x":1569665160000,"y":0},{"x":1569665220000,"y":0},{"x":1569665280000,"y":0},{"x":1569665340000,"y":0},{"x":1569665400000,"y":0},{"x":1569665460000,"y":0},{"x":1569665520000,"y":0},{"x":1569665580000,"y":0},{"x":1569665640000,"y":0},{"x":1569665700000,"y":0},{"x":1569665760000,"y":0},{"x":1569665820000,"y":0},{"x":1569665880000,"y":0},{"x":1569665940000,"y":0.01},{"x":1569666000000,"y":0},{"x":1569666060000,"y":0},{"x":1569666120000,"y":0},{"x":1569666180000,"y":0},{"x":1569666240000,"y":0},{"x":1569666300000,"y":0},{"x":1569666360000,"y":0},{"x":1569666420000,"y":0},{"x":1569666480000,"y":0},{"x":1569666540000,"y":0},{"x":1569666600000,"y":0},{"x":1569666660000,"y":0},{"x":1569666720000,"y":0},{"x":1569666780000,"y":0},{"x":1569666840000,"y":0},{"x":1569666900000,"y":0},{"x":1569666960000,"y":0},{"x":1569667020000,"y":0},{"x":1569667080000,"y":0},{"x":1569667140000,"y":0},{"x":1569667200000,"y":0},{"x":1569667260000,"y":0},{"x":1569667320000,"y":0},{"x":1569667380000,"y":0},{"x":1569667440000,"y":0},{"x":1569667500000,"y":0},{"x":1569667560000,"y":0},{"x":1569667620000,"y":0},{"x":1569667680000,"y":0},{"x":1569667740000,"y":0},{"x":1569667800000,"y":0},{"x":1569667860000,"y":0},{"x":1569667920000,"y":0},{"x":1569667980000,"y":0},{"x":1569668040000,"y":0},{"x":1569668100000,"y":0.01},{"x":1569668160000,"y":0.01},{"x":1569668220000,"y":0},{"x":1569668280000,"y":0},{"x":1569668340000,"y":0},{"x":1569668400000,"y":0},{"x":1569668460000,"y":0},{"x":1569668520000,"y":0},{"x":1569668580000,"y":0},{"x":1569668640000,"y":0},{"x":1569668700000,"y":0},{"x":1569668760000,"y":0},{"x":1569668820000,"y":0},{"x":1569668880000,"y":0},{"x":1569668940000,"y":0},{"x":1569669000000,"y":0},{"x":1569669060000,"y":0},{"x":1569669120000,"y":0},{"x":1569669180000,"y":0},{"x":1569669240000,"y":0},{"x":1569669300000,"y":0},{"x":1569669360000,"y":0},{"x":1569669420000,"y":0},{"x":1569669480000,"y":0},{"x":1569669540000,"y":0.01},{"x":1569669600000,"y":0},{"x":1569669660000,"y":0},{"x":1569669720000,"y":0},{"x":1569669780000,"y":0},{"x":1569669840000,"y":0},{"x":1569669900000,"y":0},{"x":1569669960000,"y":0},{"x":1569670020000,"y":0},{"x":1569670080000,"y":0},{"x":1569670140000,"y":0},{"x":1569670200000,"y":0},{"x":1569670260000,"y":0},{"x":1569670320000,"y":0},{"x":1569670380000,"y":0},{"x":1569670440000,"y":0},{"x":1569670500000,"y":0},{"x":1569670560000,"y":0},{"x":1569670620000,"y":0},{"x":1569670680000,"y":0},{"x":1569670740000,"y":0},{"x":1569670800000,"y":0},{"x":1569670860000,"y":0},{"x":1569670920000,"y":0},{"x":1569670980000,"y":0},{"x":1569671040000,"y":0.01},{"x":1569671100000,"y":0},{"x":1569671160000,"y":0},{"x":1569671220000,"y":0},{"x":1569671280000,"y":0},{"x":1569671340000,"y":0},{"x":1569671400000,"y":0},{"x":1569671460000,"y":0},{"x":1569671520000,"y":0},{"x":1569671580000,"y":0},{"x":1569671640000,"y":0},{"x":1569671700000,"y":0.01},{"x":1569671760000,"y":0.01},{"x":1569671820000,"y":0},{"x":1569671880000,"y":0},{"x":1569671940000,"y":0},{"x":1569672000000,"y":0},{"x":1569672060000,"y":0},{"x":1569672120000,"y":0},{"x":1569672180000,"y":0},{"x":1569672240000,"y":0},{"x":1569672300000,"y":0},{"x":1569672360000,"y":0},{"x":1569672420000,"y":0},{"x":1569672480000,"y":0},{"x":1569672540000,"y":0},{"x":1569672600000,"y":0},{"x":1569672660000,"y":0},{"x":1569672720000,"y":0},{"x":1569672780000,"y":0},{"x":1569672840000,"y":0},{"x":1569672900000,"y":0},{"x":1569672960000,"y":0},{"x":1569673020000,"y":0},{"x":1569673080000,"y":0},{"x":1569673140000,"y":0.01},{"x":1569673200000,"y":0},{"x":1569673260000,"y":0},{"x":1569673320000,"y":0},{"x":1569673380000,"y":0},{"x":1569673440000,"y":0},{"x":1569673500000,"y":0},{"x":1569673560000,"y":0},{"x":1569673620000,"y":0},{"x":1569673680000,"y":0},{"x":1569673740000,"y":0},{"x":1569673800000,"y":0},{"x":1569673860000,"y":0},{"x":1569673920000,"y":0},{"x":1569673980000,"y":0.01},{"x":1569674040000,"y":0},{"x":1569674100000,"y":0.01},{"x":1569674160000,"y":0},{"x":1569674220000,"y":0},{"x":1569674280000,"y":0},{"x":1569674340000,"y":0},{"x":1569674400000,"y":0},{"x":1569674460000,"y":0},{"x":1569674520000,"y":0},{"x":1569674580000,"y":0},{"x":1569674640000,"y":0},{"x":1569674700000,"y":0},{"x":1569674760000,"y":0},{"x":1569674820000,"y":0},{"x":1569674880000,"y":0},{"x":1569674940000,"y":0},{"x":1569675000000,"y":0},{"x":1569675060000,"y":0},{"x":1569675120000,"y":0},{"x":1569675180000,"y":0},{"x":1569675240000,"y":0},{"x":1569675300000,"y":0.01},{"x":1569675360000,"y":0.01},{"x":1569675420000,"y":0},{"x":1569675480000,"y":0},{"x":1569675540000,"y":0},{"x":1569675600000,"y":0},{"x":1569675660000,"y":0},{"x":1569675720000,"y":0},{"x":1569675780000,"y":0},{"x":1569675840000,"y":0},{"x":1569675900000,"y":0},{"x":1569675960000,"y":0},{"x":1569676020000,"y":0},{"x":1569676080000,"y":0},{"x":1569676140000,"y":0.01},{"x":1569676200000,"y":0},{"x":1569676260000,"y":0},{"x":1569676320000,"y":0},{"x":1569676380000,"y":0},{"x":1569676440000,"y":0},{"x":1569676500000,"y":0},{"x":1569676560000,"y":0},{"x":1569676620000,"y":0},{"x":1569676680000,"y":0},{"x":1569676740000,"y":0.01},{"x":1569676800000,"y":0},{"x":1569676860000,"y":0},{"x":1569676920000,"y":0},{"x":1569676980000,"y":0},{"x":1569677040000,"y":0},{"x":1569677100000,"y":0},{"x":1569677160000,"y":0},{"x":1569677220000,"y":0},{"x":1569677280000,"y":0},{"x":1569677340000,"y":0},{"x":1569677400000,"y":0},{"x":1569677460000,"y":0},{"x":1569677520000,"y":0},{"x":1569677580000,"y":0},{"x":1569677640000,"y":0},{"x":1569677700000,"y":0},{"x":1569677760000,"y":0},{"x":1569677820000,"y":0},{"x":1569677880000,"y":0},{"x":1569677940000,"y":0},{"x":1569678000000,"y":0},{"x":1569678060000,"y":0},{"x":1569678120000,"y":0},{"x":1569678180000,"y":0},{"x":1569678240000,"y":0},{"x":1569678300000,"y":0},{"x":1569678360000,"y":0},{"x":1569678420000,"y":0},{"x":1569678480000,"y":0},{"x":1569678540000,"y":0},{"x":1569678600000,"y":0},{"x":1569678660000,"y":0},{"x":1569678720000,"y":0},{"x":1569678780000,"y":0},{"x":1569678840000,"y":0},{"x":1569678900000,"y":0.01},{"x":1569678960000,"y":0.01},{"x":1569679020000,"y":0},{"x":1569679080000,"y":0},{"x":1569679140000,"y":0},{"x":1569679200000,"y":0},{"x":1569679260000,"y":0},{"x":1569679320000,"y":0},{"x":1569679380000,"y":0},{"x":1569679440000,"y":0},{"x":1569679500000,"y":0},{"x":1569679560000,"y":0},{"x":1569679620000,"y":0},{"x":1569679680000,"y":0},{"x":1569679740000,"y":0},{"x":1569679800000,"y":0.01},{"x":1569679860000,"y":0},{"x":1569679920000,"y":0},{"x":1569679980000,"y":0},{"x":1569680040000,"y":0},{"x":1569680100000,"y":0},{"x":1569680160000,"y":0},{"x":1569680220000,"y":0},{"x":1569680280000,"y":0},{"x":1569680340000,"y":0.01},{"x":1569680400000,"y":0},{"x":1569680460000,"y":0},{"x":1569680520000,"y":0},{"x":1569680580000,"y":0},{"x":1569680640000,"y":0},{"x":1569680700000,"y":0},{"x":1569680760000,"y":0},{"x":1569680820000,"y":0},{"x":1569680880000,"y":0},{"x":1569680940000,"y":0},{"x":1569681000000,"y":0},{"x":1569681060000,"y":0},{"x":1569681120000,"y":0},{"x":1569681180000,"y":0},{"x":1569681240000,"y":0},{"x":1569681300000,"y":0},{"x":1569681360000,"y":0},{"x":1569681420000,"y":0},{"x":1569681480000,"y":0},{"x":1569681540000,"y":0},{"x":1569681600000,"y":0},{"x":1569681660000,"y":0},{"x":1569681720000,"y":0.01},{"x":1569681780000,"y":0},{"x":1569681840000,"y":0},{"x":1569681900000,"y":0},{"x":1569681960000,"y":0},{"x":1569682020000,"y":0},{"x":1569682080000,"y":0},{"x":1569682140000,"y":0},{"x":1569682200000,"y":0},{"x":1569682260000,"y":0},{"x":1569682320000,"y":0},{"x":1569682380000,"y":0},{"x":1569682440000,"y":0},{"x":1569682500000,"y":0.01},{"x":1569682560000,"y":0.01},{"x":1569682620000,"y":0},{"x":1569682680000,"y":0},{"x":1569682740000,"y":0},{"x":1569682800000,"y":0},{"x":1569682860000,"y":0},{"x":1569682920000,"y":0},{"x":1569682980000,"y":0},{"x":1569683040000,"y":0},{"x":1569683100000,"y":0},{"x":1569683160000,"y":0},{"x":1569683220000,"y":0},{"x":1569683280000,"y":0},{"x":1569683340000,"y":0},{"x":1569683400000,"y":0},{"x":1569683460000,"y":0},{"x":1569683520000,"y":0},{"x":1569683580000,"y":0},{"x":1569683640000,"y":0},{"x":1569683700000,"y":0},{"x":1569683760000,"y":0},{"x":1569683820000,"y":0},{"x":1569683880000,"y":0},{"x":1569683940000,"y":0.01},{"x":1569684000000,"y":0},{"x":1569684060000,"y":0.15},{"x":1569684120000,"y":0.01},{"x":1569684180000,"y":0},{"x":1569684240000,"y":0},{"x":1569684300000,"y":0},{"x":1569684360000,"y":0},{"x":1569684420000,"y":0},{"x":1569684480000,"y":0},{"x":1569684540000,"y":0},{"x":1569684600000,"y":0},{"x":1569684660000,"y":0},{"x":1569684720000,"y":0},{"x":1569684780000,"y":0},{"x":1569684840000,"y":0},{"x":1569684900000,"y":0},{"x":1569684960000,"y":0},{"x":1569685020000,"y":0},{"x":1569685080000,"y":0},{"x":1569685140000,"y":0},{"x":1569685200000,"y":0},{"x":1569685260000,"y":0.01},{"x":1569685320000,"y":0},{"x":1569685380000,"y":0},{"x":1569685440000,"y":0},{"x":1569685500000,"y":0},{"x":1569685560000,"y":0},{"x":1569685620000,"y":0},{"x":1569685680000,"y":0},{"x":1569685740000,"y":0},{"x":1569685800000,"y":0},{"x":1569685860000,"y":0},{"x":1569685920000,"y":0},{"x":1569685980000,"y":0},{"x":1569686040000,"y":0},{"x":1569686100000,"y":0},{"x":1569686160000,"y":0.01},{"x":1569686220000,"y":0},{"x":1569686280000,"y":0},{"x":1569686340000,"y":0},{"x":1569686400000,"y":0},{"x":1569686460000,"y":0},{"x":1569686520000,"y":0},{"x":1569686580000,"y":0},{"x":1569686640000,"y":0},{"x":1569686700000,"y":0},{"x":1569686760000,"y":0},{"x":1569686820000,"y":0},{"x":1569686880000,"y":0},{"x":1569686940000,"y":0},{"x":1569687000000,"y":0},{"x":1569687060000,"y":0},{"x":1569687120000,"y":0},{"x":1569687180000,"y":0},{"x":1569687240000,"y":0},{"x":1569687300000,"y":0},{"x":1569687360000,"y":0},{"x":1569687420000,"y":0},{"x":1569687480000,"y":0},{"x":1569687540000,"y":0.01},{"x":1569687600000,"y":0},{"x":1569687660000,"y":0},{"x":1569687720000,"y":0},{"x":1569687780000,"y":0},{"x":1569687840000,"y":0},{"x":1569687900000,"y":0},{"x":1569687960000,"y":0},{"x":1569688020000,"y":0},{"x":1569688080000,"y":0},{"x":1569688140000,"y":0},{"x":1569688200000,"y":0},{"x":1569688260000,"y":0},{"x":1569688320000,"y":0},{"x":1569688380000,"y":0},{"x":1569688440000,"y":0},{"x":1569688500000,"y":0},{"x":1569688560000,"y":0},{"x":1569688620000,"y":0},{"x":1569688680000,"y":0},{"x":1569688740000,"y":0},{"x":1569688800000,"y":0},{"x":1569688860000,"y":0},{"x":1569688920000,"y":0},{"x":1569688980000,"y":0},{"x":1569689040000,"y":0},{"x":1569689100000,"y":0},{"x":1569689160000,"y":0},{"x":1569689220000,"y":0},{"x":1569689280000,"y":0},{"x":1569689340000,"y":0},{"x":1569689400000,"y":0.44},{"x":1569689460000,"y":0},{"x":1569689520000,"y":0},{"x":1569689580000,"y":0},{"x":1569689640000,"y":0},{"x":1569689700000,"y":0},{"x":1569689760000,"y":0.01},{"x":1569689820000,"y":0},{"x":1569689880000,"y":0},{"x":1569689940000,"y":0},{"x":1569690000000,"y":0},{"x":1569690060000,"y":0},{"x":1569690120000,"y":0},{"x":1569690180000,"y":0},{"x":1569690240000,"y":0},{"x":1569690300000,"y":0},{"x":1569690360000,"y":0},{"x":1569690420000,"y":0},{"x":1569690480000,"y":0},{"x":1569690540000,"y":0},{"x":1569690600000,"y":0},{"x":1569690660000,"y":0},{"x":1569690720000,"y":0},{"x":1569690780000,"y":0},{"x":1569690840000,"y":0},{"x":1569690900000,"y":0},{"x":1569690960000,"y":0},{"x":1569691020000,"y":0},{"x":1569691080000,"y":0},{"x":1569691140000,"y":0.01},{"x":1569691200000,"y":0},{"x":1569691260000,"y":0},{"x":1569691320000,"y":0},{"x":1569691380000,"y":0},{"x":1569691440000,"y":0},{"x":1569691500000,"y":0},{"x":1569691560000,"y":0},{"x":1569691620000,"y":0},{"x":1569691680000,"y":0},{"x":1569691740000,"y":0},{"x":1569691800000,"y":0},{"x":1569691860000,"y":0},{"x":1569691920000,"y":0},{"x":1569691980000,"y":0},{"x":1569692040000,"y":0},{"x":1569692100000,"y":0},{"x":1569692160000,"y":0},{"x":1569692220000,"y":0},{"x":1569692280000,"y":0},{"x":1569692340000,"y":0},{"x":1569692400000,"y":0},{"x":1569692460000,"y":0},{"x":1569692520000,"y":0},{"x":1569692580000,"y":0},{"x":1569692640000,"y":0},{"x":1569692700000,"y":0},{"x":1569692760000,"y":0},{"x":1569692820000,"y":0},{"x":1569692880000,"y":0},{"x":1569692940000,"y":0},{"x":1569693000000,"y":0},{"x":1569693060000,"y":0},{"x":1569693120000,"y":0},{"x":1569693180000,"y":0},{"x":1569693240000,"y":0},{"x":1569693300000,"y":0},{"x":1569693360000,"y":0},{"x":1569693420000,"y":0},{"x":1569693480000,"y":0},{"x":1569693540000,"y":0},{"x":1569693600000,"y":0},{"x":1569693660000,"y":0},{"x":1569693720000,"y":0},{"x":1569693780000,"y":0.04},{"x":1569693840000,"y":0.18},{"x":1569693900000,"y":0},{"x":1569693960000,"y":0},{"x":1569694020000,"y":0},{"x":1569694080000,"y":0},{"x":1569694140000,"y":0},{"x":1569694200000,"y":0},{"x":1569694260000,"y":0},{"x":1569694320000,"y":0},{"x":1569694380000,"y":0},{"x":1569694440000,"y":0},{"x":1569694500000,"y":0},{"x":1569694560000,"y":0},{"x":1569694620000,"y":0},{"x":1569694680000,"y":0},{"x":1569694740000,"y":0.01},{"x":1569694800000,"y":0},{"x":1569694860000,"y":0.01},{"x":1569694920000,"y":0},{"x":1569694980000,"y":0},{"x":1569695040000,"y":0},{"x":1569695100000,"y":0},{"x":1569695160000,"y":0},{"x":1569695220000,"y":0},{"x":1569695280000,"y":0},{"x":1569695340000,"y":0},{"x":1569695400000,"y":0},{"x":1569695460000,"y":0},{"x":1569695520000,"y":0},{"x":1569695580000,"y":0},{"x":1569695640000,"y":0},{"x":1569695700000,"y":0},{"x":1569695760000,"y":0},{"x":1569695820000,"y":0.01},{"x":1569695880000,"y":0},{"x":1569695940000,"y":0},{"x":1569696000000,"y":0},{"x":1569696060000,"y":0},{"x":1569696120000,"y":0},{"x":1569696180000,"y":0},{"x":1569696240000,"y":0},{"x":1569696300000,"y":0},{"x":1569696360000,"y":0},{"x":1569696420000,"y":0},{"x":1569696480000,"y":0},{"x":1569696540000,"y":0},{"x":1569696600000,"y":0},{"x":1569696660000,"y":0},{"x":1569696720000,"y":0},{"x":1569696780000,"y":0},{"x":1569696840000,"y":0},{"x":1569696900000,"y":0},{"x":1569696960000,"y":0},{"x":1569697020000,"y":0},{"x":1569697080000,"y":0},{"x":1569697140000,"y":0},{"x":1569697200000,"y":0},{"x":1569697260000,"y":0},{"x":1569697320000,"y":0},{"x":1569697380000,"y":0.01},{"x":1569697440000,"y":0.01},{"x":1569697500000,"y":0},{"x":1569697560000,"y":0},{"x":1569697620000,"y":0},{"x":1569697680000,"y":0},{"x":1569697740000,"y":0},{"x":1569697800000,"y":0},{"x":1569697860000,"y":0},{"x":1569697920000,"y":0},{"x":1569697980000,"y":0},{"x":1569698040000,"y":0},{"x":1569698100000,"y":0},{"x":1569698160000,"y":0},{"x":1569698220000,"y":0},{"x":1569698280000,"y":0.01},{"x":1569698340000,"y":0.01},{"x":1569698400000,"y":0.01},{"x":1569698460000,"y":1.29},{"x":1569698520000,"y":2.7},{"x":1569698580000,"y":0},{"x":1569698640000,"y":0},{"x":1569698700000,"y":0},{"x":1569698760000,"y":0},{"x":1569698820000,"y":0},{"x":1569698880000,"y":0.01},{"x":1569698940000,"y":3.16},{"x":1569699000000,"y":0.21},{"x":1569699060000,"y":0.09},{"x":1569699120000,"y":0},{"x":1569699180000,"y":0},{"x":1569699240000,"y":0},{"x":1569699300000,"y":0},{"x":1569699360000,"y":0},{"x":1569699420000,"y":0},{"x":1569699480000,"y":0},{"x":1569699540000,"y":0},{"x":1569699600000,"y":0},{"x":1569699660000,"y":0},{"x":1569699720000,"y":0.01},{"x":1569699780000,"y":0},{"x":1569699840000,"y":0},{"x":1569699900000,"y":0},{"x":1569699960000,"y":0},{"x":1569700020000,"y":0},{"x":1569700080000,"y":0},{"x":1569700140000,"y":0.02},{"x":1569700200000,"y":0},{"x":1569700260000,"y":0},{"x":1569700320000,"y":0},{"x":1569700380000,"y":0},{"x":1569700440000,"y":0.01},{"x":1569700500000,"y":0},{"x":1569700560000,"y":0},{"x":1569700620000,"y":0},{"x":1569700680000,"y":0.13},{"x":1569700740000,"y":0},{"x":1569700800000,"y":0},{"x":1569700860000,"y":0},{"x":1569700920000,"y":0},{"x":1569700980000,"y":0.01},{"x":1569701040000,"y":0.01},{"x":1569701100000,"y":0},{"x":1569701160000,"y":1.77},{"x":1569701220000,"y":0.59},{"x":1569701280000,"y":0},{"x":1569701340000,"y":0},{"x":1569701400000,"y":0},{"x":1569701460000,"y":0},{"x":1569701520000,"y":0},{"x":1569701580000,"y":0},{"x":1569701640000,"y":0},{"x":1569701700000,"y":0},{"x":1569701760000,"y":0},{"x":1569701820000,"y":0},{"x":1569701880000,"y":0.01},{"x":1569701940000,"y":0.01},{"x":1569702000000,"y":0},{"x":1569702060000,"y":0.04},{"x":1569702120000,"y":0.07},{"x":1569702180000,"y":0},{"x":1569702240000,"y":0},{"x":1569702300000,"y":0},{"x":1569702360000,"y":0},{"x":1569702420000,"y":0},{"x":1569702480000,"y":0},{"x":1569702540000,"y":0},{"x":1569702600000,"y":0},{"x":1569702660000,"y":0},{"x":1569702720000,"y":0},{"x":1569702780000,"y":0},{"x":1569702840000,"y":0},{"x":1569702900000,"y":0},{"x":1569702960000,"y":0},{"x":1569703020000,"y":0},{"x":1569703080000,"y":0},{"x":1569703140000,"y":0.01},{"x":1569703200000,"y":0},{"x":1569703260000,"y":0},{"x":1569703320000,"y":0},{"x":1569703380000,"y":0},{"x":1569703440000,"y":0},{"x":1569703500000,"y":0},{"x":1569703560000,"y":0},{"x":1569703620000,"y":0},{"x":1569703680000,"y":0},{"x":1569703740000,"y":0},{"x":1569703800000,"y":0},{"x":1569703860000,"y":0},{"x":1569703920000,"y":0},{"x":1569703980000,"y":0},{"x":1569704040000,"y":0},{"x":1569704100000,"y":0},{"x":1569704160000,"y":0},{"x":1569704220000,"y":0},{"x":1569704280000,"y":0},{"x":1569704340000,"y":0},{"x":1569704400000,"y":0},{"x":1569704460000,"y":0},{"x":1569704520000,"y":0},{"x":1569704580000,"y":0.01},{"x":1569704640000,"y":0.01},{"x":1569704700000,"y":0},{"x":1569704760000,"y":0},{"x":1569704820000,"y":0},{"x":1569704880000,"y":0},{"x":1569704940000,"y":0},{"x":1569705000000,"y":0},{"x":1569705060000,"y":0},{"x":1569705120000,"y":0},{"x":1569705180000,"y":0},{"x":1569705240000,"y":0},{"x":1569705300000,"y":0},{"x":1569705360000,"y":0},{"x":1569705420000,"y":0},{"x":1569705480000,"y":0},{"x":1569705540000,"y":0.01},{"x":1569705600000,"y":0},{"x":1569705660000,"y":0},{"x":1569705720000,"y":0},{"x":1569705780000,"y":0},{"x":1569705840000,"y":0},{"x":1569705900000,"y":0},{"x":1569705960000,"y":0},{"x":1569706020000,"y":0},{"x":1569706080000,"y":0},{"x":1569706140000,"y":0},{"x":1569706200000,"y":0},{"x":1569706260000,"y":0},{"x":1569706320000,"y":0},{"x":1569706380000,"y":0},{"x":1569706440000,"y":0},{"x":1569706500000,"y":0},{"x":1569706560000,"y":0},{"x":1569706620000,"y":0.01},{"x":1569706680000,"y":0},{"x":1569706740000,"y":0},{"x":1569706800000,"y":0},{"x":1569706860000,"y":0},{"x":1569706920000,"y":0},{"x":1569706980000,"y":0},{"x":1569707040000,"y":0},{"x":1569707100000,"y":0},{"x":1569707160000,"y":0},{"x":1569707220000,"y":0},{"x":1569707280000,"y":0},{"x":1569707340000,"y":0},{"x":1569707400000,"y":0},{"x":1569707460000,"y":0},{"x":1569707520000,"y":0},{"x":1569707580000,"y":0},{"x":1569707640000,"y":0},{"x":1569707700000,"y":0},{"x":1569707760000,"y":0},{"x":1569707820000,"y":0},{"x":1569707880000,"y":0},{"x":1569707940000,"y":0},{"x":1569708000000,"y":0},{"x":1569708060000,"y":0},{"x":1569708120000,"y":0},{"x":1569708180000,"y":0},{"x":1569708240000,"y":0},{"x":1569708300000,"y":0},{"x":1569708360000,"y":0},{"x":1569708420000,"y":0},{"x":1569708480000,"y":0},{"x":1569708540000,"y":0},{"x":1569708600000,"y":0},{"x":1569708660000,"y":0},{"x":1569708720000,"y":0},{"x":1569708780000,"y":0},{"x":1569708840000,"y":0},{"x":1569708900000,"y":0},{"x":1569708960000,"y":0},{"x":1569709020000,"y":0},{"x":1569709080000,"y":0},{"x":1569709140000,"y":0.01},{"x":1569709200000,"y":0},{"x":1569709260000,"y":0},{"x":1569709320000,"y":0},{"x":1569709380000,"y":0},{"x":1569709440000,"y":0},{"x":1569709500000,"y":0},{"x":1569709560000,"y":0},{"x":1569709620000,"y":0},{"x":1569709680000,"y":0},{"x":1569709740000,"y":0},{"x":1569709800000,"y":0},{"x":1569709860000,"y":0},{"x":1569709920000,"y":0},{"x":1569709980000,"y":0},{"x":1569710040000,"y":0},{"x":1569710100000,"y":0},{"x":1569710160000,"y":0},{"x":1569710220000,"y":0},{"x":1569710280000,"y":0},{"x":1569710340000,"y":0},{"x":1569710400000,"y":0},{"x":1569710460000,"y":0},{"x":1569710520000,"y":0},{"x":1569710580000,"y":0},{"x":1569710640000,"y":0},{"x":1569710700000,"y":0},{"x":1569710760000,"y":0},{"x":1569710820000,"y":0},{"x":1569710880000,"y":0},{"x":1569710940000,"y":0},{"x":1569711000000,"y":0},{"x":1569711060000,"y":0},{"x":1569711120000,"y":0},{"x":1569711180000,"y":0},{"x":1569711240000,"y":0},{"x":1569711300000,"y":0},{"x":1569711360000,"y":0},{"x":1569711420000,"y":0},{"x":1569711480000,"y":0},{"x":1569711540000,"y":0},{"x":1569711600000,"y":0},{"x":1569711660000,"y":0},{"x":1569711720000,"y":0},{"x":1569711780000,"y":0},{"x":1569711840000,"y":0},{"x":1569711900000,"y":0},{"x":1569711960000,"y":0},{"x":1569712020000,"y":0.01},{"x":1569712080000,"y":0},{"x":1569712140000,"y":0},{"x":1569712200000,"y":0},{"x":1569712260000,"y":0},{"x":1569712320000,"y":0},{"x":1569712380000,"y":0},{"x":1569712440000,"y":0},{"x":1569712500000,"y":0},{"x":1569712560000,"y":0},{"x":1569712620000,"y":0},{"x":1569712680000,"y":0},{"x":1569712740000,"y":0.01},{"x":1569712800000,"y":0},{"x":1569712860000,"y":0},{"x":1569712920000,"y":0},{"x":1569712980000,"y":0},{"x":1569713040000,"y":0},{"x":1569713100000,"y":0},{"x":1569713160000,"y":0},{"x":1569713220000,"y":0},{"x":1569713280000,"y":0},{"x":1569713340000,"y":0},{"x":1569713400000,"y":0},{"x":1569713460000,"y":0},{"x":1569713520000,"y":0},{"x":1569713580000,"y":0},{"x":1569713640000,"y":0},{"x":1569713700000,"y":0},{"x":1569713760000,"y":0},{"x":1569713820000,"y":0},{"x":1569713880000,"y":0.01},{"x":1569713940000,"y":0},{"x":1569714000000,"y":0},{"x":1569714060000,"y":0},{"x":1569714120000,"y":0},{"x":1569714180000,"y":0},{"x":1569714240000,"y":0.01},{"x":1569714300000,"y":0},{"x":1569714360000,"y":0},{"x":1569714420000,"y":0},{"x":1569714480000,"y":0},{"x":1569714540000,"y":0},{"x":1569714600000,"y":0},{"x":1569714660000,"y":0},{"x":1569714720000,"y":0},{"x":1569714780000,"y":0},{"x":1569714840000,"y":0},{"x":1569714900000,"y":0},{"x":1569714960000,"y":0},{"x":1569715020000,"y":0},{"x":1569715080000,"y":0},{"x":1569715140000,"y":0},{"x":1569715200000,"y":0},{"x":1569715260000,"y":0},{"x":1569715320000,"y":0},{"x":1569715380000,"y":0},{"x":1569715440000,"y":0},{"x":1569715500000,"y":0},{"x":1569715560000,"y":0},{"x":1569715620000,"y":0},{"x":1569715680000,"y":0},{"x":1569715740000,"y":0},{"x":1569715800000,"y":0},{"x":1569715860000,"y":0},{"x":1569715920000,"y":0},{"x":1569715980000,"y":0},{"x":1569716040000,"y":0},{"x":1569716100000,"y":0},{"x":1569716160000,"y":0},{"x":1569716220000,"y":0},{"x":1569716280000,"y":0},{"x":1569716340000,"y":0.01},{"x":1569716400000,"y":0},{"x":1569716460000,"y":0},{"x":1569716520000,"y":0},{"x":1569716580000,"y":0},{"x":1569716640000,"y":0},{"x":1569716700000,"y":0},{"x":1569716760000,"y":0},{"x":1569716820000,"y":0},{"x":1569716880000,"y":0.02},{"x":1569716940000,"y":0},{"x":1569717000000,"y":0.01},{"x":1569717060000,"y":0},{"x":1569717120000,"y":0},{"x":1569717180000,"y":0},{"x":1569717240000,"y":0},{"x":1569717300000,"y":0},{"x":1569717360000,"y":0},{"x":1569717420000,"y":0},{"x":1569717480000,"y":0},{"x":1569717540000,"y":0},{"x":1569717600000,"y":0},{"x":1569717660000,"y":0.01},{"x":1569717720000,"y":0},{"x":1569717780000,"y":0},{"x":1569717840000,"y":0},{"x":1569717900000,"y":0},{"x":1569717960000,"y":0},{"x":1569718020000,"y":0},{"x":1569718080000,"y":0},{"x":1569718140000,"y":0},{"x":1569718200000,"y":0},{"x":1569718260000,"y":0},{"x":1569718320000,"y":0},{"x":1569718380000,"y":0},{"x":1569718440000,"y":0},{"x":1569718500000,"y":0},{"x":1569718560000,"y":0},{"x":1569718620000,"y":0},{"x":1569718680000,"y":0.01},{"x":1569718740000,"y":0},{"x":1569718800000,"y":0},{"x":1569718860000,"y":0},{"x":1569718920000,"y":0},{"x":1569718980000,"y":0},{"x":1569719040000,"y":0},{"x":1569719100000,"y":0},{"x":1569719160000,"y":0},{"x":1569719220000,"y":0},{"x":1569719280000,"y":0},{"x":1569719340000,"y":0},{"x":1569719400000,"y":0},{"x":1569719460000,"y":0},{"x":1569719520000,"y":0},{"x":1569719580000,"y":0},{"x":1569719640000,"y":0},{"x":1569719700000,"y":0},{"x":1569719760000,"y":0},{"x":1569719820000,"y":0},{"x":1569719880000,"y":0},{"x":1569719940000,"y":0.01},{"x":1569720000000,"y":0},{"x":1569720060000,"y":0},{"x":1569720120000,"y":0},{"x":1569720180000,"y":0},{"x":1569720240000,"y":0},{"x":1569720300000,"y":0},{"x":1569720360000,"y":0},{"x":1569720420000,"y":0},{"x":1569720480000,"y":0},{"x":1569720540000,"y":0},{"x":1569720600000,"y":0},{"x":1569720660000,"y":0},{"x":1569720720000,"y":0},{"x":1569720780000,"y":0},{"x":1569720840000,"y":0},{"x":1569720900000,"y":0},{"x":1569720960000,"y":0},{"x":1569721020000,"y":0},{"x":1569721080000,"y":0},{"x":1569721140000,"y":0},{"x":1569721200000,"y":0},{"x":1569721260000,"y":0},{"x":1569721320000,"y":0},{"x":1569721380000,"y":0},{"x":1569721440000,"y":0},{"x":1569721500000,"y":0},{"x":1569721560000,"y":0},{"x":1569721620000,"y":0},{"x":1569721680000,"y":0},{"x":1569721740000,"y":0},{"x":1569721800000,"y":0},{"x":1569721860000,"y":0},{"x":1569721920000,"y":0},{"x":1569721980000,"y":0},{"x":1569722040000,"y":0},{"x":1569722100000,"y":0},{"x":1569722160000,"y":0},{"x":1569722220000,"y":0},{"x":1569722280000,"y":0},{"x":1569722340000,"y":0},{"x":1569722400000,"y":0},{"x":1569722460000,"y":0},{"x":1569722520000,"y":0},{"x":1569722580000,"y":0},{"x":1569722640000,"y":0},{"x":1569722700000,"y":0.01},{"x":1569722760000,"y":0},{"x":1569722820000,"y":0},{"x":1569722880000,"y":0},{"x":1569722940000,"y":0},{"x":1569723000000,"y":0},{"x":1569723060000,"y":0},{"x":1569723120000,"y":0},{"x":1569723180000,"y":0},{"x":1569723240000,"y":0},{"x":1569723300000,"y":0},{"x":1569723360000,"y":0},{"x":1569723420000,"y":0},{"x":1569723480000,"y":0},{"x":1569723540000,"y":0.01},{"x":1569723600000,"y":0},{"x":1569723660000,"y":0},{"x":1569723720000,"y":0},{"x":1569723780000,"y":0},{"x":1569723840000,"y":0},{"x":1569723900000,"y":0},{"x":1569723960000,"y":0},{"x":1569724020000,"y":0},{"x":1569724080000,"y":0},{"x":1569724140000,"y":0},{"x":1569724200000,"y":0},{"x":1569724260000,"y":0},{"x":1569724320000,"y":0},{"x":1569724380000,"y":0},{"x":1569724440000,"y":0},{"x":1569724500000,"y":0},{"x":1569724560000,"y":0},{"x":1569724620000,"y":0},{"x":1569724680000,"y":0},{"x":1569724740000,"y":0},{"x":1569724800000,"y":0},{"x":1569724860000,"y":0},{"x":1569724920000,"y":0},{"x":1569724980000,"y":0},{"x":1569725040000,"y":0},{"x":1569725100000,"y":0},{"x":1569725160000,"y":0},{"x":1569725220000,"y":0},{"x":1569725280000,"y":0},{"x":1569725340000,"y":0},{"x":1569725400000,"y":0},{"x":1569725460000,"y":0},{"x":1569725520000,"y":0},{"x":1569725580000,"y":0},{"x":1569725640000,"y":0},{"x":1569725700000,"y":0},{"x":1569725760000,"y":0},{"x":1569725820000,"y":0},{"x":1569725880000,"y":0},{"x":1569725940000,"y":0},{"x":1569726000000,"y":0},{"x":1569726060000,"y":0},{"x":1569726120000,"y":0},{"x":1569726180000,"y":0},{"x":1569726240000,"y":0},{"x":1569726300000,"y":0},{"x":1569726360000,"y":0},{"x":1569726420000,"y":0},{"x":1569726480000,"y":0},{"x":1569726540000,"y":0},{"x":1569726600000,"y":0},{"x":1569726660000,"y":0},{"x":1569726720000,"y":0},{"x":1569726780000,"y":0},{"x":1569726840000,"y":0},{"x":1569726900000,"y":0},{"x":1569726960000,"y":0},{"x":1569727020000,"y":0},{"x":1569727080000,"y":0},{"x":1569727140000,"y":0.01},{"x":1569727200000,"y":0},{"x":1569727260000,"y":0},{"x":1569727320000,"y":0},{"x":1569727380000,"y":0},{"x":1569727440000,"y":0},{"x":1569727500000,"y":0},{"x":1569727560000,"y":0},{"x":1569727620000,"y":0},{"x":1569727680000,"y":0},{"x":1569727740000,"y":0},{"x":1569727800000,"y":0},{"x":1569727860000,"y":0},{"x":1569727920000,"y":0},{"x":1569727980000,"y":0},{"x":1569728040000,"y":0},{"x":1569728100000,"y":0},{"x":1569728160000,"y":0},{"x":1569728220000,"y":0},{"x":1569728280000,"y":0},{"x":1569728340000,"y":0},{"x":1569728400000,"y":0},{"x":1569728460000,"y":0},{"x":1569728520000,"y":0},{"x":1569728580000,"y":0},{"x":1569728640000,"y":0},{"x":1569728700000,"y":0},{"x":1569728760000,"y":0},{"x":1569728820000,"y":0},{"x":1569728880000,"y":0},{"x":1569728940000,"y":0},{"x":1569729000000,"y":0},{"x":1569729060000,"y":0},{"x":1569729120000,"y":0},{"x":1569729180000,"y":0},{"x":1569729240000,"y":0},{"x":1569729300000,"y":0},{"x":1569729360000,"y":0},{"x":1569729420000,"y":0},{"x":1569729480000,"y":0},{"x":1569729540000,"y":0},{"x":1569729600000,"y":0},{"x":1569729660000,"y":0},{"x":1569729720000,"y":0},{"x":1569729780000,"y":0},{"x":1569729840000,"y":0},{"x":1569729900000,"y":0},{"x":1569729960000,"y":0},{"x":1569730020000,"y":0},{"x":1569730080000,"y":0},{"x":1569730140000,"y":0},{"x":1569730200000,"y":0},{"x":1569730260000,"y":0},{"x":1569730320000,"y":0},{"x":1569730380000,"y":0.01},{"x":1569730440000,"y":0},{"x":1569730500000,"y":0},{"x":1569730560000,"y":0},{"x":1569730620000,"y":0},{"x":1569730680000,"y":0},{"x":1569730740000,"y":0.01},{"x":1569730800000,"y":0},{"x":1569730860000,"y":0},{"x":1569730920000,"y":0},{"x":1569730980000,"y":0},{"x":1569731040000,"y":0},{"x":1569731100000,"y":0},{"x":1569731160000,"y":0},{"x":1569731220000,"y":0},{"x":1569731280000,"y":0},{"x":1569731340000,"y":0},{"x":1569731400000,"y":0},{"x":1569731460000,"y":0},{"x":1569731520000,"y":0},{"x":1569731580000,"y":0},{"x":1569731640000,"y":0},{"x":1569731700000,"y":0},{"x":1569731760000,"y":0},{"x":1569731820000,"y":0},{"x":1569731880000,"y":0},{"x":1569731940000,"y":0},{"x":1569732000000,"y":0},{"x":1569732060000,"y":0},{"x":1569732120000,"y":0},{"x":1569732180000,"y":0},{"x":1569732240000,"y":0},{"x":1569732300000,"y":0},{"x":1569732360000,"y":0},{"x":1569732420000,"y":0},{"x":1569732480000,"y":0},{"x":1569732540000,"y":0},{"x":1569732600000,"y":0},{"x":1569732660000,"y":0},{"x":1569732720000,"y":0},{"x":1569732780000,"y":0},{"x":1569732840000,"y":0},{"x":1569732900000,"y":0},{"x":1569732960000,"y":0},{"x":1569733020000,"y":0},{"x":1569733080000,"y":0},{"x":1569733140000,"y":0},{"x":1569733200000,"y":0},{"x":1569733260000,"y":0},{"x":1569733320000,"y":0},{"x":1569733380000,"y":0},{"x":1569733440000,"y":0},{"x":1569733500000,"y":0},{"x":1569733560000,"y":0},{"x":1569733620000,"y":0},{"x":1569733680000,"y":0},{"x":1569733740000,"y":0},{"x":1569733800000,"y":0},{"x":1569733860000,"y":0},{"x":1569733920000,"y":0},{"x":1569733980000,"y":0},{"x":1569734040000,"y":0},{"x":1569734100000,"y":0},{"x":1569734160000,"y":0},{"x":1569734220000,"y":0},{"x":1569734280000,"y":0},{"x":1569734340000,"y":0.01},{"x":1569734400000,"y":0},{"x":1569734460000,"y":0},{"x":1569734520000,"y":0},{"x":1569734580000,"y":0},{"x":1569734640000,"y":0},{"x":1569734700000,"y":0.08},{"x":1569734760000,"y":0},{"x":1569734820000,"y":0},{"x":1569734880000,"y":0},{"x":1569734940000,"y":0},{"x":1569735000000,"y":0},{"x":1569735060000,"y":0},{"x":1569735120000,"y":0},{"x":1569735180000,"y":0},{"x":1569735240000,"y":0},{"x":1569735300000,"y":0},{"x":1569735360000,"y":0},{"x":1569735420000,"y":0},{"x":1569735480000,"y":0},{"x":1569735540000,"y":0},{"x":1569735600000,"y":0},{"x":1569735660000,"y":0.01},{"x":1569735720000,"y":0},{"x":1569735780000,"y":0},{"x":1569735840000,"y":0},{"x":1569735900000,"y":0},{"x":1569735960000,"y":0},{"x":1569736020000,"y":0},{"x":1569736080000,"y":0},{"x":1569736140000,"y":0},{"x":1569736200000,"y":0},{"x":1569736260000,"y":0},{"x":1569736320000,"y":0},{"x":1569736380000,"y":0},{"x":1569736440000,"y":0},{"x":1569736500000,"y":0},{"x":1569736560000,"y":0},{"x":1569736620000,"y":0},{"x":1569736680000,"y":0},{"x":1569736740000,"y":0},{"x":1569736800000,"y":0},{"x":1569736860000,"y":0},{"x":1569736920000,"y":0},{"x":1569736980000,"y":0},{"x":1569737040000,"y":0},{"x":1569737100000,"y":0},{"x":1569737160000,"y":0},{"x":1569737220000,"y":0},{"x":1569737280000,"y":0},{"x":1569737340000,"y":0},{"x":1569737400000,"y":0},{"x":1569737460000,"y":0},{"x":1569737520000,"y":0},{"x":1569737580000,"y":0},{"x":1569737640000,"y":0},{"x":1569737700000,"y":0},{"x":1569737760000,"y":0},{"x":1569737820000,"y":0},{"x":1569737880000,"y":0},{"x":1569737940000,"y":0.01},{"x":1569738000000,"y":0},{"x":1569738060000,"y":0},{"x":1569738120000,"y":0},{"x":1569738180000,"y":0},{"x":1569738240000,"y":0},{"x":1569738300000,"y":0},{"x":1569738360000,"y":0},{"x":1569738420000,"y":0.01},{"x":1569738480000,"y":0},{"x":1569738540000,"y":0},{"x":1569738600000,"y":0},{"x":1569738660000,"y":0},{"x":1569738720000,"y":0},{"x":1569738780000,"y":0},{"x":1569738840000,"y":0},{"x":1569738900000,"y":0},{"x":1569738960000,"y":0},{"x":1569739020000,"y":0},{"x":1569739080000,"y":0},{"x":1569739140000,"y":0},{"x":1569739200000,"y":0},{"x":1569739260000,"y":0},{"x":1569739320000,"y":0},{"x":1569739380000,"y":0},{"x":1569739440000,"y":0},{"x":1569739500000,"y":0},{"x":1569739560000,"y":0.01},{"x":1569739620000,"y":0},{"x":1569739680000,"y":0},{"x":1569739740000,"y":0},{"x":1569739800000,"y":0},{"x":1569739860000,"y":0.01},{"x":1569739920000,"y":0},{"x":1569739980000,"y":0},{"x":1569740040000,"y":0},{"x":1569740100000,"y":0},{"x":1569740160000,"y":0},{"x":1569740220000,"y":0},{"x":1569740280000,"y":0},{"x":1569740340000,"y":0},{"x":1569740400000,"y":0},{"x":1569740460000,"y":0},{"x":1569740520000,"y":0},{"x":1569740580000,"y":0},{"x":1569740640000,"y":0},{"x":1569740700000,"y":0},{"x":1569740760000,"y":0},{"x":1569740820000,"y":0},{"x":1569740880000,"y":0},{"x":1569740940000,"y":0},{"x":1569741000000,"y":0},{"x":1569741060000,"y":0},{"x":1569741120000,"y":0},{"x":1569741180000,"y":0},{"x":1569741240000,"y":0},{"x":1569741300000,"y":0},{"x":1569741360000,"y":0},{"x":1569741420000,"y":0},{"x":1569741480000,"y":0},{"x":1569741540000,"y":0.01},{"x":1569741600000,"y":0},{"x":1569741660000,"y":0},{"x":1569741720000,"y":0},{"x":1569741780000,"y":0},{"x":1569741840000,"y":0},{"x":1569741900000,"y":0},{"x":1569741960000,"y":0},{"x":1569742020000,"y":0},{"x":1569742080000,"y":0},{"x":1569742140000,"y":0},{"x":1569742200000,"y":0},{"x":1569742260000,"y":0},{"x":1569742320000,"y":0},{"x":1569742380000,"y":0},{"x":1569742440000,"y":0},{"x":1569742500000,"y":0},{"x":1569742560000,"y":0},{"x":1569742620000,"y":0},{"x":1569742680000,"y":0},{"x":1569742740000,"y":0},{"x":1569742800000,"y":0},{"x":1569742860000,"y":0},{"x":1569742920000,"y":0},{"x":1569742980000,"y":0},{"x":1569743040000,"y":0},{"x":1569743100000,"y":0},{"x":1569743160000,"y":0},{"x":1569743220000,"y":0},{"x":1569743280000,"y":0},{"x":1569743340000,"y":0},{"x":1569743400000,"y":0.01},{"x":1569743460000,"y":0},{"x":1569743520000,"y":0},{"x":1569743580000,"y":0},{"x":1569743640000,"y":0},{"x":1569743700000,"y":0},{"x":1569743760000,"y":0},{"x":1569743820000,"y":0},{"x":1569743880000,"y":0},{"x":1569743940000,"y":0},{"x":1569744000000,"y":0},{"x":1569744060000,"y":0},{"x":1569744120000,"y":0},{"x":1569744180000,"y":0},{"x":1569744240000,"y":0},{"x":1569744300000,"y":0},{"x":1569744360000,"y":0},{"x":1569744420000,"y":0},{"x":1569744480000,"y":0},{"x":1569744540000,"y":0},{"x":1569744600000,"y":0},{"x":1569744660000,"y":0},{"x":1569744720000,"y":0},{"x":1569744780000,"y":0},{"x":1569744840000,"y":0},{"x":1569744900000,"y":0},{"x":1569744960000,"y":0},{"x":1569745020000,"y":0},{"x":1569745080000,"y":0},{"x":1569745140000,"y":0.01},{"x":1569745200000,"y":0},{"x":1569745260000,"y":0},{"x":1569745320000,"y":0},{"x":1569745380000,"y":0},{"x":1569745440000,"y":0},{"x":1569745500000,"y":0},{"x":1569745560000,"y":0},{"x":1569745620000,"y":0},{"x":1569745680000,"y":0},{"x":1569745740000,"y":0},{"x":1569745800000,"y":0},{"x":1569745860000,"y":0},{"x":1569745920000,"y":0},{"x":1569745980000,"y":0},{"x":1569746040000,"y":0},{"x":1569746100000,"y":0},{"x":1569746160000,"y":0},{"x":1569746220000,"y":0},{"x":1569746280000,"y":0},{"x":1569746340000,"y":0},{"x":1569746400000,"y":0},{"x":1569746460000,"y":0},{"x":1569746520000,"y":0},{"x":1569746580000,"y":0},{"x":1569746640000,"y":0},{"x":1569746700000,"y":0},{"x":1569746760000,"y":0},{"x":1569746820000,"y":0},{"x":1569746880000,"y":0},{"x":1569746940000,"y":0},{"x":1569747000000,"y":0},{"x":1569747060000,"y":0},{"x":1569747120000,"y":0},{"x":1569747180000,"y":0},{"x":1569747240000,"y":0},{"x":1569747300000,"y":0},{"x":1569747360000,"y":0},{"x":1569747420000,"y":0},{"x":1569747480000,"y":0},{"x":1569747540000,"y":0},{"x":1569747600000,"y":0},{"x":1569747660000,"y":0},{"x":1569747720000,"y":0},{"x":1569747780000,"y":0},{"x":1569747840000,"y":0},{"x":1569747900000,"y":0},{"x":1569747960000,"y":0},{"x":1569748020000,"y":0},{"x":1569748080000,"y":0},{"x":1569748140000,"y":0},{"x":1569748200000,"y":0},{"x":1569748260000,"y":0},{"x":1569748320000,"y":0},{"x":1569748380000,"y":0},{"x":1569748440000,"y":0},{"x":1569748500000,"y":0},{"x":1569748560000,"y":0},{"x":1569748620000,"y":0},{"x":1569748680000,"y":0},{"x":1569748740000,"y":0.01},{"x":1569748800000,"y":0},{"x":1569748860000,"y":0},{"x":1569748920000,"y":0},{"x":1569748980000,"y":0},{"x":1569749040000,"y":0},{"x":1569749100000,"y":0},{"x":1569749160000,"y":0},{"x":1569749220000,"y":0},{"x":1569749280000,"y":0},{"x":1569749340000,"y":0},{"x":1569749400000,"y":0},{"x":1569749460000,"y":0},{"x":1569749520000,"y":0},{"x":1569749580000,"y":0},{"x":1569749640000,"y":0},{"x":1569749700000,"y":0},{"x":1569749760000,"y":0},{"x":1569749820000,"y":0},{"x":1569749880000,"y":0},{"x":1569749940000,"y":0},{"x":1569750000000,"y":0},{"x":1569750060000,"y":0},{"x":1569750120000,"y":0},{"x":1569750180000,"y":0},{"x":1569750240000,"y":0},{"x":1569750300000,"y":0},{"x":1569750360000,"y":0},{"x":1569750420000,"y":0},{"x":1569750480000,"y":0},{"x":1569750540000,"y":0},{"x":1569750600000,"y":0},{"x":1569750660000,"y":0},{"x":1569750720000,"y":0},{"x":1569750780000,"y":0},{"x":1569750840000,"y":0},{"x":1569750900000,"y":0},{"x":1569750960000,"y":0},{"x":1569751020000,"y":0},{"x":1569751080000,"y":0},{"x":1569751140000,"y":0},{"x":1569751200000,"y":0},{"x":1569751260000,"y":0},{"x":1569751320000,"y":0},{"x":1569751380000,"y":0},{"x":1569751440000,"y":0},{"x":1569751500000,"y":0},{"x":1569751560000,"y":0},{"x":1569751620000,"y":0},{"x":1569751680000,"y":0},{"x":1569751740000,"y":0},{"x":1569751800000,"y":0},{"x":1569751860000,"y":0},{"x":1569751920000,"y":0},{"x":1569751980000,"y":0},{"x":1569752040000,"y":0},{"x":1569752100000,"y":0},{"x":1569752160000,"y":0},{"x":1569752220000,"y":0},{"x":1569752280000,"y":0},{"x":1569752340000,"y":0.01},{"x":1569752400000,"y":0},{"x":1569752460000,"y":0},{"x":1569752520000,"y":0},{"x":1569752580000,"y":0},{"x":1569752640000,"y":0},{"x":1569752700000,"y":0},{"x":1569752760000,"y":0},{"x":1569752820000,"y":0},{"x":1569752880000,"y":0},{"x":1569752940000,"y":0},{"x":1569753000000,"y":0},{"x":1569753060000,"y":0},{"x":1569753120000,"y":0},{"x":1569753180000,"y":0},{"x":1569753240000,"y":0},{"x":1569753300000,"y":0},{"x":1569753360000,"y":0},{"x":1569753420000,"y":0},{"x":1569753480000,"y":0},{"x":1569753540000,"y":0},{"x":1569753600000,"y":0},{"x":1569753660000,"y":0},{"x":1569753720000,"y":0},{"x":1569753780000,"y":0},{"x":1569753840000,"y":0},{"x":1569753900000,"y":0},{"x":1569753960000,"y":0},{"x":1569754020000,"y":0},{"x":1569754080000,"y":0},{"x":1569754140000,"y":0},{"x":1569754200000,"y":0},{"x":1569754260000,"y":0},{"x":1569754320000,"y":0},{"x":1569754380000,"y":0},{"x":1569754440000,"y":0},{"x":1569754500000,"y":0},{"x":1569754560000,"y":0},{"x":1569754620000,"y":0},{"x":1569754680000,"y":0},{"x":1569754740000,"y":0},{"x":1569754800000,"y":0},{"x":1569754860000,"y":0},{"x":1569754920000,"y":0},{"x":1569754980000,"y":0},{"x":1569755040000,"y":0},{"x":1569755100000,"y":0},{"x":1569755160000,"y":0},{"x":1569755220000,"y":0},{"x":1569755280000,"y":0},{"x":1569755340000,"y":0},{"x":1569755400000,"y":0},{"x":1569755460000,"y":0},{"x":1569755520000,"y":0},{"x":1569755580000,"y":0},{"x":1569755640000,"y":0},{"x":1569755700000,"y":0},{"x":1569755760000,"y":0},{"x":1569755820000,"y":0},{"x":1569755880000,"y":0.01},{"x":1569755940000,"y":0.01},{"x":1569756000000,"y":0},{"x":1569756060000,"y":0},{"x":1569756120000,"y":0},{"x":1569756180000,"y":0},{"x":1569756240000,"y":0},{"x":1569756300000,"y":0},{"x":1569756360000,"y":0},{"x":1569756420000,"y":0},{"x":1569756480000,"y":0},{"x":1569756540000,"y":0},{"x":1569756600000,"y":0},{"x":1569756660000,"y":0},{"x":1569756720000,"y":0},{"x":1569756780000,"y":0},{"x":1569756840000,"y":0},{"x":1569756900000,"y":0},{"x":1569756960000,"y":0},{"x":1569757020000,"y":0},{"x":1569757080000,"y":0},{"x":1569757140000,"y":0},{"x":1569757200000,"y":0.01},{"x":1569757260000,"y":0.01},{"x":1569757320000,"y":0},{"x":1569757380000,"y":0},{"x":1569757440000,"y":0},{"x":1569757500000,"y":0},{"x":1569757560000,"y":0},{"x":1569757620000,"y":0},{"x":1569757680000,"y":0},{"x":1569757740000,"y":0},{"x":1569757800000,"y":0},{"x":1569757860000,"y":0},{"x":1569757920000,"y":0},{"x":1569757980000,"y":0},{"x":1569758040000,"y":0},{"x":1569758100000,"y":0},{"x":1569758160000,"y":0},{"x":1569758220000,"y":0},{"x":1569758280000,"y":0},{"x":1569758340000,"y":0},{"x":1569758400000,"y":0},{"x":1569758460000,"y":0},{"x":1569758520000,"y":0},{"x":1569758580000,"y":0},{"x":1569758640000,"y":0},{"x":1569758700000,"y":0},{"x":1569758760000,"y":0},{"x":1569758820000,"y":0},{"x":1569758880000,"y":0},{"x":1569758940000,"y":0},{"x":1569759000000,"y":0},{"x":1569759060000,"y":0},{"x":1569759120000,"y":0},{"x":1569759180000,"y":0.01},{"x":1569759240000,"y":0},{"x":1569759300000,"y":0},{"x":1569759360000,"y":0},{"x":1569759420000,"y":0},{"x":1569759480000,"y":0},{"x":1569759540000,"y":0.01},{"x":1569759600000,"y":0},{"x":1569759660000,"y":0},{"x":1569759720000,"y":0},{"x":1569759780000,"y":0},{"x":1569759840000,"y":0},{"x":1569759900000,"y":0},{"x":1569759960000,"y":0},{"x":1569760020000,"y":0},{"x":1569760080000,"y":0},{"x":1569760140000,"y":0},{"x":1569760200000,"y":0},{"x":1569760260000,"y":0},{"x":1569760320000,"y":0},{"x":1569760380000,"y":0},{"x":1569760440000,"y":0},{"x":1569760500000,"y":0},{"x":1569760560000,"y":0},{"x":1569760620000,"y":0},{"x":1569760680000,"y":0},{"x":1569760740000,"y":0},{"x":1569760800000,"y":0},{"x":1569760860000,"y":0},{"x":1569760920000,"y":0.03},{"x":1569760980000,"y":0},{"x":1569761040000,"y":0},{"x":1569761100000,"y":0},{"x":1569761160000,"y":0},{"x":1569761220000,"y":0},{"x":1569761280000,"y":0},{"x":1569761340000,"y":0},{"x":1569761400000,"y":0.01},{"x":1569761460000,"y":0},{"x":1569761520000,"y":0},{"x":1569761580000,"y":0},{"x":1569761640000,"y":0},{"x":1569761700000,"y":0},{"x":1569761760000,"y":0},{"x":1569761820000,"y":0},{"x":1569761880000,"y":0},{"x":1569761940000,"y":0},{"x":1569762000000,"y":0},{"x":1569762060000,"y":0},{"x":1569762120000,"y":0},{"x":1569762180000,"y":0},{"x":1569762240000,"y":0},{"x":1569762300000,"y":0},{"x":1569762360000,"y":0},{"x":1569762420000,"y":0},{"x":1569762480000,"y":0},{"x":1569762540000,"y":0},{"x":1569762600000,"y":0},{"x":1569762660000,"y":0},{"x":1569762720000,"y":0},{"x":1569762780000,"y":0},{"x":1569762840000,"y":0},{"x":1569762900000,"y":0},{"x":1569762960000,"y":0},{"x":1569763020000,"y":0.01},{"x":1569763080000,"y":0},{"x":1569763140000,"y":0.01},{"x":1569763200000,"y":0},{"x":1569763260000,"y":0},{"x":1569763320000,"y":0},{"x":1569763380000,"y":0},{"x":1569763440000,"y":0},{"x":1569763500000,"y":0},{"x":1569763560000,"y":0},{"x":1569763620000,"y":0},{"x":1569763680000,"y":0},{"x":1569763740000,"y":0},{"x":1569763800000,"y":0},{"x":1569763860000,"y":0},{"x":1569763920000,"y":0},{"x":1569763980000,"y":0},{"x":1569764040000,"y":0},{"x":1569764100000,"y":0},{"x":1569764160000,"y":0},{"x":1569764220000,"y":0},{"x":1569764280000,"y":0},{"x":1569764340000,"y":0},{"x":1569764400000,"y":0},{"x":1569764460000,"y":0},{"x":1569764520000,"y":0},{"x":1569764580000,"y":0},{"x":1569764640000,"y":0},{"x":1569764700000,"y":0},{"x":1569764760000,"y":0},{"x":1569764820000,"y":0.06},{"x":1569764880000,"y":0},{"x":1569764940000,"y":0},{"x":1569765000000,"y":0},{"x":1569765060000,"y":0},{"x":1569765120000,"y":0},{"x":1569765180000,"y":0},{"x":1569765240000,"y":0},{"x":1569765300000,"y":0},{"x":1569765360000,"y":0},{"x":1569765420000,"y":0},{"x":1569765480000,"y":0},{"x":1569765540000,"y":0},{"x":1569765600000,"y":0},{"x":1569765660000,"y":0},{"x":1569765720000,"y":0},{"x":1569765780000,"y":0},{"x":1569765840000,"y":0},{"x":1569765900000,"y":0},{"x":1569765960000,"y":0},{"x":1569766020000,"y":0},{"x":1569766080000,"y":0},{"x":1569766140000,"y":0},{"x":1569766200000,"y":0},{"x":1569766260000,"y":0.01},{"x":1569766320000,"y":0},{"x":1569766380000,"y":0},{"x":1569766440000,"y":0},{"x":1569766500000,"y":0},{"x":1569766560000,"y":0},{"x":1569766620000,"y":0},{"x":1569766680000,"y":0},{"x":1569766740000,"y":0.01},{"x":1569766800000,"y":0},{"x":1569766860000,"y":0},{"x":1569766920000,"y":0.02},{"x":1569766980000,"y":0},{"x":1569767040000,"y":0},{"x":1569767100000,"y":0},{"x":1569767160000,"y":0},{"x":1569767220000,"y":0},{"x":1569767280000,"y":0},{"x":1569767340000,"y":0},{"x":1569767400000,"y":0},{"x":1569767460000,"y":0},{"x":1569767520000,"y":0},{"x":1569767580000,"y":0},{"x":1569767640000,"y":0},{"x":1569767700000,"y":0},{"x":1569767760000,"y":0},{"x":1569767820000,"y":0},{"x":1569767880000,"y":0},{"x":1569767940000,"y":0},{"x":1569768000000,"y":0},{"x":1569768060000,"y":0},{"x":1569768120000,"y":0},{"x":1569768180000,"y":0},{"x":1569768240000,"y":0},{"x":1569768300000,"y":0},{"x":1569768360000,"y":0},{"x":1569768420000,"y":0},{"x":1569768480000,"y":0},{"x":1569768540000,"y":0},{"x":1569768600000,"y":0},{"x":1569768660000,"y":0},{"x":1569768720000,"y":0},{"x":1569768780000,"y":0},{"x":1569768840000,"y":0},{"x":1569768900000,"y":0},{"x":1569768960000,"y":0},{"x":1569769020000,"y":0},{"x":1569769080000,"y":0},{"x":1569769140000,"y":0},{"x":1569769200000,"y":0},{"x":1569769260000,"y":0},{"x":1569769320000,"y":0},{"x":1569769380000,"y":0},{"x":1569769440000,"y":0},{"x":1569769500000,"y":0},{"x":1569769560000,"y":0},{"x":1569769620000,"y":0},{"x":1569769680000,"y":0.01},{"x":1569769740000,"y":0},{"x":1569769800000,"y":0},{"x":1569769860000,"y":0},{"x":1569769920000,"y":0},{"x":1569769980000,"y":0},{"x":1569770040000,"y":0},{"x":1569770100000,"y":0},{"x":1569770160000,"y":0},{"x":1569770220000,"y":0},{"x":1569770280000,"y":0},{"x":1569770340000,"y":0.01},{"x":1569770400000,"y":0},{"x":1569770460000,"y":0},{"x":1569770520000,"y":0},{"x":1569770580000,"y":0},{"x":1569770640000,"y":0},{"x":1569770700000,"y":0},{"x":1569770760000,"y":0},{"x":1569770820000,"y":0},{"x":1569770880000,"y":0},{"x":1569770940000,"y":0},{"x":1569771000000,"y":0},{"x":1569771060000,"y":0},{"x":1569771120000,"y":0},{"x":1569771180000,"y":0},{"x":1569771240000,"y":0},{"x":1569771300000,"y":0},{"x":1569771360000,"y":0},{"x":1569771420000,"y":0},{"x":1569771480000,"y":0},{"x":1569771540000,"y":0},{"x":1569771600000,"y":0},{"x":1569771660000,"y":0},{"x":1569771720000,"y":0},{"x":1569771780000,"y":0},{"x":1569771840000,"y":0},{"x":1569771900000,"y":0},{"x":1569771960000,"y":0},{"x":1569772020000,"y":0},{"x":1569772080000,"y":0},{"x":1569772140000,"y":0},{"x":1569772200000,"y":0},{"x":1569772260000,"y":0},{"x":1569772320000,"y":0},{"x":1569772380000,"y":0},{"x":1569772440000,"y":0},{"x":1569772500000,"y":0},{"x":1569772560000,"y":0},{"x":1569772620000,"y":0},{"x":1569772680000,"y":0},{"x":1569772740000,"y":0},{"x":1569772800000,"y":0},{"x":1569772860000,"y":0},{"x":1569772920000,"y":0},{"x":1569772980000,"y":0},{"x":1569773040000,"y":0},{"x":1569773100000,"y":0},{"x":1569773160000,"y":0},{"x":1569773220000,"y":0},{"x":1569773280000,"y":0},{"x":1569773340000,"y":0},{"x":1569773400000,"y":0},{"x":1569773460000,"y":0},{"x":1569773520000,"y":0},{"x":1569773580000,"y":0},{"x":1569773640000,"y":0},{"x":1569773700000,"y":0},{"x":1569773760000,"y":0},{"x":1569773820000,"y":0},{"x":1569773880000,"y":0},{"x":1569773940000,"y":0.02},{"x":1569774000000,"y":0},{"x":1569774060000,"y":0},{"x":1569774120000,"y":0},{"x":1569774180000,"y":0},{"x":1569774240000,"y":0},{"x":1569774300000,"y":0},{"x":1569774360000,"y":0},{"x":1569774420000,"y":0},{"x":1569774480000,"y":0},{"x":1569774540000,"y":0},{"x":1569774600000,"y":0},{"x":1569774660000,"y":0},{"x":1569774720000,"y":0},{"x":1569774780000,"y":0},{"x":1569774840000,"y":0},{"x":1569774900000,"y":0},{"x":1569774960000,"y":0},{"x":1569775020000,"y":0},{"x":1569775080000,"y":0},{"x":1569775140000,"y":0},{"x":1569775200000,"y":0},{"x":1569775260000,"y":0},{"x":1569775320000,"y":0},{"x":1569775380000,"y":0},{"x":1569775440000,"y":0},{"x":1569775500000,"y":0},{"x":1569775560000,"y":0},{"x":1569775620000,"y":0},{"x":1569775680000,"y":0},{"x":1569775740000,"y":0},{"x":1569775800000,"y":0},{"x":1569775860000,"y":0},{"x":1569775920000,"y":0},{"x":1569775980000,"y":0},{"x":1569776040000,"y":0},{"x":1569776100000,"y":0},{"x":1569776160000,"y":0},{"x":1569776220000,"y":0},{"x":1569776280000,"y":0},{"x":1569776340000,"y":0},{"x":1569776400000,"y":0},{"x":1569776460000,"y":0},{"x":1569776520000,"y":0},{"x":1569776580000,"y":0},{"x":1569776640000,"y":0},{"x":1569776700000,"y":0},{"x":1569776760000,"y":0},{"x":1569776820000,"y":0},{"x":1569776880000,"y":0},{"x":1569776940000,"y":0},{"x":1569777000000,"y":0},{"x":1569777060000,"y":0},{"x":1569777120000,"y":0},{"x":1569777180000,"y":0},{"x":1569777240000,"y":0},{"x":1569777300000,"y":0},{"x":1569777360000,"y":0},{"x":1569777420000,"y":0},{"x":1569777480000,"y":0},{"x":1569777540000,"y":0.01},{"x":1569777600000,"y":0},{"x":1569777660000,"y":0.01},{"x":1569777720000,"y":0},{"x":1569777780000,"y":0},{"x":1569777840000,"y":0},{"x":1569777900000,"y":0},{"x":1569777960000,"y":0},{"x":1569778020000,"y":0},{"x":1569778080000,"y":0},{"x":1569778140000,"y":0},{"x":1569778200000,"y":0},{"x":1569778260000,"y":0},{"x":1569778320000,"y":0},{"x":1569778380000,"y":0},{"x":1569778440000,"y":0},{"x":1569778500000,"y":0},{"x":1569778560000,"y":0},{"x":1569778620000,"y":0},{"x":1569778680000,"y":0},{"x":1569778740000,"y":0},{"x":1569778800000,"y":0},{"x":1569778860000,"y":0},{"x":1569778920000,"y":0},{"x":1569778980000,"y":0},{"x":1569779040000,"y":0},{"x":1569779100000,"y":0.02},{"x":1569779160000,"y":0.03},{"x":1569779220000,"y":0.03},{"x":1569779280000,"y":0.02},{"x":1569779340000,"y":0.02},{"x":1569779400000,"y":0.02},{"x":1569779460000,"y":0.03},{"x":1569779520000,"y":0.02},{"x":1569779580000,"y":0},{"x":1569779640000,"y":0},{"x":1569779700000,"y":0},{"x":1569779760000,"y":0},{"x":1569779820000,"y":0},{"x":1569779880000,"y":0},{"x":1569779940000,"y":0},{"x":1569780000000,"y":0},{"x":1569780060000,"y":0},{"x":1569780120000,"y":0.04},{"x":1569780180000,"y":0},{"x":1569780240000,"y":0},{"x":1569780300000,"y":0},{"x":1569780360000,"y":0},{"x":1569780420000,"y":0},{"x":1569780480000,"y":0},{"x":1569780540000,"y":0.1},{"x":1569780600000,"y":0},{"x":1569780660000,"y":0},{"x":1569780720000,"y":0},{"x":1569780780000,"y":0},{"x":1569780840000,"y":0},{"x":1569780900000,"y":0},{"x":1569780960000,"y":0},{"x":1569781020000,"y":0},{"x":1569781080000,"y":0},{"x":1569781140000,"y":0.01},{"x":1569781200000,"y":0},{"x":1569781260000,"y":0},{"x":1569781320000,"y":0},{"x":1569781380000,"y":0},{"x":1569781440000,"y":0},{"x":1569781500000,"y":0},{"x":1569781560000,"y":0},{"x":1569781620000,"y":0},{"x":1569781680000,"y":0},{"x":1569781740000,"y":0},{"x":1569781800000,"y":0},{"x":1569781860000,"y":0},{"x":1569781920000,"y":0},{"x":1569781980000,"y":0},{"x":1569782040000,"y":0},{"x":1569782100000,"y":0},{"x":1569782160000,"y":0},{"x":1569782220000,"y":0},{"x":1569782280000,"y":0},{"x":1569782340000,"y":0},{"x":1569782400000,"y":0},{"x":1569782460000,"y":0},{"x":1569782520000,"y":0},{"x":1569782580000,"y":0},{"x":1569782640000,"y":0},{"x":1569782700000,"y":0},{"x":1569782760000,"y":0},{"x":1569782820000,"y":0},{"x":1569782880000,"y":0},{"x":1569782940000,"y":0},{"x":1569783000000,"y":0},{"x":1569783060000,"y":0},{"x":1569783120000,"y":0},{"x":1569783180000,"y":0},{"x":1569783240000,"y":0},{"x":1569783300000,"y":0.01},{"x":1569783360000,"y":0},{"x":1569783420000,"y":0},{"x":1569783480000,"y":0},{"x":1569783540000,"y":0},{"x":1569783600000,"y":0},{"x":1569783660000,"y":0},{"x":1569783720000,"y":0.01},{"x":1569783780000,"y":0},{"x":1569783840000,"y":0},{"x":1569783900000,"y":0},{"x":1569783960000,"y":0},{"x":1569784020000,"y":0},{"x":1569784080000,"y":0},{"x":1569784140000,"y":0.01},{"x":1569784200000,"y":0},{"x":1569784260000,"y":0},{"x":1569784320000,"y":0},{"x":1569784380000,"y":0},{"x":1569784440000,"y":0},{"x":1569784500000,"y":0},{"x":1569784560000,"y":0},{"x":1569784620000,"y":0},{"x":1569784680000,"y":0},{"x":1569784740000,"y":0.01},{"x":1569784800000,"y":0},{"x":1569784860000,"y":0},{"x":1569784920000,"y":0},{"x":1569784980000,"y":0},{"x":1569785040000,"y":0},{"x":1569785100000,"y":0},{"x":1569785160000,"y":0},{"x":1569785220000,"y":0},{"x":1569785280000,"y":0},{"x":1569785340000,"y":0},{"x":1569785400000,"y":0},{"x":1569785460000,"y":0},{"x":1569785520000,"y":0},{"x":1569785580000,"y":0},{"x":1569785640000,"y":0.01},{"x":1569785700000,"y":0},{"x":1569785760000,"y":0},{"x":1569785820000,"y":0},{"x":1569785880000,"y":0},{"x":1569785940000,"y":0},{"x":1569786000000,"y":0},{"x":1569786060000,"y":0},{"x":1569786120000,"y":0},{"x":1569786180000,"y":0},{"x":1569786240000,"y":0},{"x":1569786300000,"y":0},{"x":1569786360000,"y":0},{"x":1569786420000,"y":0},{"x":1569786480000,"y":0},{"x":1569786540000,"y":0}]} \ No newline at end of file diff --git a/docs/static/data/examples/bench/wide_data/convert.js b/docs/static/data/examples/bench/wide_data/convert.js new file mode 100644 index 000000000..d3e353f12 --- /dev/null +++ b/docs/static/data/examples/bench/wide_data/convert.js @@ -0,0 +1,43 @@ +import fs from 'node:fs'; + +function parseMetricsData(data) { + // Parse the string if it's not already an array + const rawData = typeof data === 'string' ? JSON.parse(data) : data; + const fieldLength = rawData[0]; + + // Extract the header fields + const [_, ...fields] = rawData.slice(0, fieldLength + 1); + + // Get the actual data values + const values = rawData.slice(fieldLength + 1); + + // Calculate how many complete sets of metrics we have + const numSets = Math.floor(values.length / fieldLength); + + // Transform the data into objects + const result = []; + for (let i = 0; i < numSets; i++) { + const obj = {}; + fields.forEach((field, fieldIndex) => { + obj[field] = values[i * fieldLength + fieldIndex]; + }); + result.push(obj); + } + + return result; +} + +try { + const inputFile = '../packedData.json'; + const outputFile = 'data.json'; + + // Read and parse the input file + const data = fs.readFileSync(inputFile, 'utf8'); + const parsedData = parseMetricsData(data); + fs.writeFileSync(outputFile, JSON.stringify(parsedData)); + + console.log(`Successfully transformed data from ${inputFile} to ${outputFile}`); +} catch (error) { + console.error('Error processing file:', error.message); + process.exit(1); +} diff --git a/docs/static/data/examples/bench/wide_data/data.json b/docs/static/data/examples/bench/wide_data/data.json new file mode 100644 index 000000000..99a69704d --- /dev/null +++ b/docs/static/data/examples/bench/wide_data/data.json @@ -0,0 +1 @@ +[{"epoch":26107560,"idl":99.46,"recv":0,"send":0,"writ":0.63,"used":614.52,"free":3767.67},{"epoch":26107561,"idl":99.85,"recv":0,"send":0,"writ":0.41,"used":614.04,"free":3768.14},{"epoch":26107562,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":614.01,"free":3768.18},{"epoch":26107563,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":613.98,"free":3768.2},{"epoch":26107564,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":613.95,"free":3768.22},{"epoch":26107565,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":614.99,"free":3767.2},{"epoch":26107566,"idl":99.68,"recv":0,"send":0,"writ":0.63,"used":614.99,"free":3767.19},{"epoch":26107567,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":614.54,"free":3767.63},{"epoch":26107568,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":614.52,"free":3767.66},{"epoch":26107569,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":614.73,"free":3767.44},{"epoch":26107570,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":614.96,"free":3767.22},{"epoch":26107571,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":615.39,"free":3766.79},{"epoch":26107572,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":614.81,"free":3767.36},{"epoch":26107573,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":614.8,"free":3767.37},{"epoch":26107574,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":614.77,"free":3767.41},{"epoch":26107575,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":614.53,"free":3767.67},{"epoch":26107576,"idl":99.68,"recv":0.01,"send":0.01,"writ":0.51,"used":615.16,"free":3767.04},{"epoch":26107577,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":614.7,"free":3767.49},{"epoch":26107578,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":614.75,"free":3767.44},{"epoch":26107579,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":614.82,"free":3767.37},{"epoch":26107580,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":614.71,"free":3767.5},{"epoch":26107581,"idl":99.71,"recv":0,"send":0,"writ":0.42,"used":614.9,"free":3767.3},{"epoch":26107582,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":614.98,"free":3767.21},{"epoch":26107583,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":614.95,"free":3767.24},{"epoch":26107584,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":614.92,"free":3767.26},{"epoch":26107585,"idl":99.55,"recv":0,"send":0,"writ":0.32,"used":615.03,"free":3767.17},{"epoch":26107586,"idl":99.72,"recv":0,"send":0,"writ":0.43,"used":615.46,"free":3766.74},{"epoch":26107587,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":615.07,"free":3767.12},{"epoch":26107588,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":615.03,"free":3767.15},{"epoch":26107589,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":615.01,"free":3767.17},{"epoch":26107590,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":614.76,"free":3767.44},{"epoch":26107591,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":615.47,"free":3766.72},{"epoch":26107592,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":615.03,"free":3767.16},{"epoch":26107593,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":615.09,"free":3767.1},{"epoch":26107594,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":615.06,"free":3767.12},{"epoch":26107595,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":615.29,"free":3766.91},{"epoch":26107596,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":615.86,"free":3766.33},{"epoch":26107597,"idl":99.78,"recv":0,"send":0,"writ":0.45,"used":614.99,"free":3767.2},{"epoch":26107598,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":614.95,"free":3767.23},{"epoch":26107599,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":615,"free":3767.14},{"epoch":26107600,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":615.32,"free":3766.84},{"epoch":26107601,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":615.3,"free":3766.86},{"epoch":26107602,"idl":99.7,"recv":0,"send":0,"writ":0.62,"used":615.53,"free":3766.62},{"epoch":26107603,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":614.99,"free":3767.16},{"epoch":26107604,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":614.96,"free":3767.18},{"epoch":26107605,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":614.96,"free":3767.2},{"epoch":26107606,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":615.01,"free":3767.14},{"epoch":26107607,"idl":99.71,"recv":0,"send":0,"writ":0.62,"used":615.58,"free":3766.56},{"epoch":26107608,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":615.28,"free":3766.86},{"epoch":26107609,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":615.25,"free":3766.88},{"epoch":26107610,"idl":99.73,"recv":0,"send":0,"writ":0.35,"used":615.07,"free":3767.09},{"epoch":26107611,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":614.97,"free":3767.18},{"epoch":26107612,"idl":99.67,"recv":0,"send":0,"writ":0.61,"used":615.3,"free":3766.87},{"epoch":26107613,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":614.91,"free":3767.25},{"epoch":26107614,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":615.06,"free":3767.1},{"epoch":26107615,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":615.07,"free":3767.1},{"epoch":26107616,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":615.03,"free":3767.14},{"epoch":26107617,"idl":98.3,"recv":0,"send":0,"writ":0.46,"used":615.35,"free":3766.81},{"epoch":26107618,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":614.95,"free":3767.2},{"epoch":26107619,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":614.91,"free":3767.24},{"epoch":26107620,"idl":99.66,"recv":0,"send":0,"writ":0.28,"used":614.99,"free":3767.19},{"epoch":26107621,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":614.69,"free":3767.48},{"epoch":26107622,"idl":99.72,"recv":0,"send":0,"writ":0.51,"used":614.48,"free":3767.68},{"epoch":26107623,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":614.26,"free":3767.9},{"epoch":26107624,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":614.22,"free":3767.93},{"epoch":26107625,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":613.98,"free":3768.19},{"epoch":26107626,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":613.94,"free":3768.22},{"epoch":26107627,"idl":99.72,"recv":0,"send":0,"writ":0.47,"used":614.37,"free":3767.79},{"epoch":26107628,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":614.54,"free":3767.59},{"epoch":26107629,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":614.5,"free":3767.6},{"epoch":26107630,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":614.25,"free":3767.87},{"epoch":26107631,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":614.21,"free":3767.91},{"epoch":26107632,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":614.53,"free":3767.58},{"epoch":26107633,"idl":99.8,"recv":0,"send":0,"writ":0.42,"used":613.91,"free":3768.2},{"epoch":26107634,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":613.98,"free":3768.14},{"epoch":26107635,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":614.32,"free":3767.82},{"epoch":26107636,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.15,"used":614.29,"free":3767.85},{"epoch":26107637,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":614.5,"free":3767.63},{"epoch":26107638,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":614.83,"free":3767.3},{"epoch":26107639,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":614.43,"free":3767.69},{"epoch":26107640,"idl":99.62,"recv":0,"send":0,"writ":0.3,"used":613.43,"free":3768.71},{"epoch":26107641,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":614.32,"free":3767.81},{"epoch":26107642,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":614.3,"free":3767.83},{"epoch":26107643,"idl":99.7,"recv":0,"send":0,"writ":0.63,"used":615.25,"free":3766.87},{"epoch":26107644,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":614.71,"free":3767.4},{"epoch":26107645,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":614.46,"free":3767.67},{"epoch":26107646,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":614.43,"free":3767.69},{"epoch":26107647,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":614.4,"free":3767.72},{"epoch":26107648,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":614.85,"free":3767.27},{"epoch":26107649,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":614.52,"free":3767.6},{"epoch":26107650,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":614.76,"free":3767.37},{"epoch":26107651,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":614.73,"free":3767.4},{"epoch":26107652,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":614.69,"free":3767.43},{"epoch":26107653,"idl":99.7,"recv":0,"send":0,"writ":0.61,"used":614.89,"free":3767.23},{"epoch":26107654,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":614.39,"free":3767.73},{"epoch":26107655,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":614.42,"free":3767.71},{"epoch":26107656,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":614.28,"free":3767.85},{"epoch":26107657,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":614.25,"free":3767.88},{"epoch":26107658,"idl":99.7,"recv":0,"send":0,"writ":0.42,"used":614.57,"free":3767.54},{"epoch":26107659,"idl":99.59,"recv":0,"send":0,"writ":0.43,"used":614.42,"free":3767.67},{"epoch":26107660,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":614.4,"free":3767.7},{"epoch":26107661,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":614.38,"free":3767.72},{"epoch":26107662,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":614.52,"free":3767.57},{"epoch":26107663,"idl":99.72,"recv":0,"send":0,"writ":0.44,"used":614.89,"free":3767.21},{"epoch":26107664,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":614.71,"free":3767.38},{"epoch":26107665,"idl":99.67,"recv":0,"send":0.01,"writ":0.32,"used":614.46,"free":3767.64},{"epoch":26107666,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":614.39,"free":3767.7},{"epoch":26107667,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":614.36,"free":3767.73},{"epoch":26107668,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":614.45,"free":3767.63},{"epoch":26107669,"idl":94.8,"recv":0.39,"send":0.01,"writ":265.68,"used":629.49,"free":3752.89},{"epoch":26107670,"idl":99.77,"recv":0,"send":0,"writ":0.43,"used":616.92,"free":3765.12},{"epoch":26107671,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":616.89,"free":3765.14},{"epoch":26107672,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":617.03,"free":3765},{"epoch":26107673,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":617,"free":3765.03},{"epoch":26107674,"idl":99.67,"recv":0,"send":0,"writ":0.69,"used":615.44,"free":3766.62},{"epoch":26107675,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":614.78,"free":3767.31},{"epoch":26107676,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":614.75,"free":3767.34},{"epoch":26107677,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":614.72,"free":3767.36},{"epoch":26107678,"idl":99.08,"recv":0,"send":0,"writ":0.15,"used":614.78,"free":3767.3},{"epoch":26107679,"idl":99.72,"recv":0,"send":0,"writ":0.6,"used":614.89,"free":3767.22},{"epoch":26107680,"idl":99.67,"recv":0,"send":0,"writ":0.28,"used":614.83,"free":3767.31},{"epoch":26107681,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":614.81,"free":3767.32},{"epoch":26107682,"idl":99.79,"recv":0.01,"send":0,"writ":0.16,"used":614.78,"free":3767.36},{"epoch":26107683,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":614.73,"free":3767.4},{"epoch":26107684,"idl":99.68,"recv":0,"send":0,"writ":0.52,"used":614.95,"free":3767.17},{"epoch":26107685,"idl":99.39,"recv":0,"send":0,"writ":0.35,"used":613.6,"free":3768.54},{"epoch":26107686,"idl":98.52,"recv":0,"send":0,"writ":0.14,"used":613.65,"free":3768.49},{"epoch":26107687,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":613.62,"free":3768.52},{"epoch":26107688,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":613.59,"free":3768.55},{"epoch":26107689,"idl":99.56,"recv":0,"send":0,"writ":0.57,"used":614.73,"free":3767.38},{"epoch":26107690,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":614.79,"free":3767.35},{"epoch":26107691,"idl":99.81,"recv":0,"send":0.01,"writ":0.17,"used":614.82,"free":3767.32},{"epoch":26107692,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":614.88,"free":3767.25},{"epoch":26107693,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":614.85,"free":3767.28},{"epoch":26107694,"idl":99.67,"recv":0,"send":0,"writ":0.46,"used":615,"free":3767.13},{"epoch":26107695,"idl":99.74,"recv":0,"send":0,"writ":0.44,"used":614.79,"free":3767.35},{"epoch":26107696,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.14,"used":614.76,"free":3767.37},{"epoch":26107697,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":614.96,"free":3767.16},{"epoch":26107698,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":615.12,"free":3767},{"epoch":26107699,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":615.33,"free":3766.79},{"epoch":26107700,"idl":99.75,"recv":0,"send":0,"writ":0.45,"used":614.61,"free":3767.54},{"epoch":26107701,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":614.07,"free":3768.07},{"epoch":26107702,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":614.05,"free":3768.09},{"epoch":26107703,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":614.01,"free":3768.12},{"epoch":26107704,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":613.98,"free":3768.15},{"epoch":26107705,"idl":99.63,"recv":0,"send":0,"writ":0.74,"used":614.61,"free":3767.53},{"epoch":26107706,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":614.13,"free":3768},{"epoch":26107707,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":614.1,"free":3768.04},{"epoch":26107708,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":614.08,"free":3768.05},{"epoch":26107709,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":614.04,"free":3768.09},{"epoch":26107710,"idl":99.66,"recv":0,"send":0,"writ":0.75,"used":615.29,"free":3766.85},{"epoch":26107711,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":614.97,"free":3767.16},{"epoch":26107712,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":615.06,"free":3767.07},{"epoch":26107713,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":615.1,"free":3767.02},{"epoch":26107714,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":615.07,"free":3767.05},{"epoch":26107715,"idl":99.63,"recv":0,"send":0,"writ":0.74,"used":614.38,"free":3767.75},{"epoch":26107716,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":614.04,"free":3768.09},{"epoch":26107717,"idl":99.93,"recv":0.01,"send":0,"writ":0.17,"used":614.05,"free":3768.07},{"epoch":26107718,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":614.12,"free":3767.99},{"epoch":26107719,"idl":99.75,"recv":0,"send":0.01,"writ":0.32,"used":614.78,"free":3767.31},{"epoch":26107720,"idl":99.74,"recv":0,"send":0,"writ":0.76,"used":615.37,"free":3766.73},{"epoch":26107721,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":614.97,"free":3767.12},{"epoch":26107722,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":614.93,"free":3767.15},{"epoch":26107723,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":615.01,"free":3767.06},{"epoch":26107724,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":615.06,"free":3767.01},{"epoch":26107725,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":615.39,"free":3766.71},{"epoch":26107726,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":614.99,"free":3767.09},{"epoch":26107727,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":614.95,"free":3767.12},{"epoch":26107728,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":614.98,"free":3767.09},{"epoch":26107729,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":615.09,"free":3766.98},{"epoch":26107730,"idl":99.74,"recv":0,"send":0,"writ":0.68,"used":615.73,"free":3766.35},{"epoch":26107731,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":615.04,"free":3767.04},{"epoch":26107732,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":615,"free":3767.07},{"epoch":26107733,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":614.97,"free":3767.1},{"epoch":26107734,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":614.94,"free":3767.12},{"epoch":26107735,"idl":99.75,"recv":0,"send":0,"writ":0.53,"used":614.96,"free":3767.12},{"epoch":26107736,"idl":99.94,"recv":0,"send":0,"writ":0.38,"used":615.09,"free":3767},{"epoch":26107737,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":615.06,"free":3767.02},{"epoch":26107738,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":615.03,"free":3767.04},{"epoch":26107739,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":615,"free":3767.07},{"epoch":26107740,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":614.99,"free":3767.09},{"epoch":26107741,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":615.32,"free":3766.77},{"epoch":26107742,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":614.99,"free":3767.09},{"epoch":26107743,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":615.08,"free":3767},{"epoch":26107744,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":615.04,"free":3767.03},{"epoch":26107745,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":615.03,"free":3767.05},{"epoch":26107746,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":615.36,"free":3766.73},{"epoch":26107747,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":614.97,"free":3767.11},{"epoch":26107748,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":614.94,"free":3767.14},{"epoch":26107749,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":615.03,"free":3767.04},{"epoch":26107750,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":615.13,"free":3766.94},{"epoch":26107751,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":615.59,"free":3766.48},{"epoch":26107752,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":615.25,"free":3766.81},{"epoch":26107753,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":615.22,"free":3766.84},{"epoch":26107754,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":615.18,"free":3766.89},{"epoch":26107755,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":614.24,"free":3767.86},{"epoch":26107756,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.57,"used":615.49,"free":3766.6},{"epoch":26107757,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":615.05,"free":3767.04},{"epoch":26107758,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":615.01,"free":3767.08},{"epoch":26107759,"idl":99.89,"recv":0.01,"send":0.03,"writ":0.21,"used":614.94,"free":3767.14},{"epoch":26107760,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":615.14,"free":3766.96},{"epoch":26107761,"idl":99.8,"recv":0,"send":0,"writ":0.47,"used":615.51,"free":3766.58},{"epoch":26107762,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":615.04,"free":3767.04},{"epoch":26107763,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":615.01,"free":3767.07},{"epoch":26107764,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":614.99,"free":3767.09},{"epoch":26107765,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":614.98,"free":3767.12},{"epoch":26107766,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":615.37,"free":3766.72},{"epoch":26107767,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":615.16,"free":3766.93},{"epoch":26107768,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":615.27,"free":3766.82},{"epoch":26107769,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":615.31,"free":3766.77},{"epoch":26107770,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":615.06,"free":3767.03},{"epoch":26107771,"idl":99.78,"recv":0,"send":0,"writ":0.6,"used":614.87,"free":3767.22},{"epoch":26107772,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":613.27,"free":3768.81},{"epoch":26107773,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":613.24,"free":3768.84},{"epoch":26107774,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":613.2,"free":3768.87},{"epoch":26107775,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":614.29,"free":3767.8},{"epoch":26107776,"idl":99.78,"recv":0,"send":0,"writ":0.44,"used":614.71,"free":3767.38},{"epoch":26107777,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":614.55,"free":3767.54},{"epoch":26107778,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":614.51,"free":3767.57},{"epoch":26107779,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":614.25,"free":3767.79},{"epoch":26107780,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":614.23,"free":3767.83},{"epoch":26107781,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":614.2,"free":3767.86},{"epoch":26107782,"idl":99.8,"recv":0,"send":0,"writ":0.64,"used":615.24,"free":3766.81},{"epoch":26107783,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":614.57,"free":3767.48},{"epoch":26107784,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":614.54,"free":3767.52},{"epoch":26107785,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":614.3,"free":3767.78},{"epoch":26107786,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":614.24,"free":3767.84},{"epoch":26107787,"idl":99.74,"recv":0,"send":0,"writ":0.62,"used":614.37,"free":3767.7},{"epoch":26107788,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":613.93,"free":3768.13},{"epoch":26107789,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":614,"free":3768.06},{"epoch":26107790,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":614.33,"free":3767.75},{"epoch":26107791,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":614.3,"free":3767.79},{"epoch":26107792,"idl":99.78,"recv":0,"send":0,"writ":0.63,"used":614.82,"free":3767.27},{"epoch":26107793,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":614.49,"free":3767.6},{"epoch":26107794,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":614.45,"free":3767.63},{"epoch":26107795,"idl":99.78,"recv":0,"send":0,"writ":0.37,"used":614.48,"free":3767.61},{"epoch":26107796,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":614.5,"free":3767.59},{"epoch":26107797,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":614.76,"free":3767.32},{"epoch":26107798,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":614.27,"free":3767.81},{"epoch":26107799,"idl":96.75,"recv":0,"send":0,"writ":0.14,"used":614.25,"free":3767.83},{"epoch":26107800,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":613.28,"free":3768.81},{"epoch":26107801,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":613.21,"free":3768.88},{"epoch":26107802,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":613.83,"free":3768.25},{"epoch":26107803,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":614.07,"free":3768.01},{"epoch":26107804,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.17,"used":613.97,"free":3768.1},{"epoch":26107805,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":613.7,"free":3768.38},{"epoch":26107806,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":613.72,"free":3768.36},{"epoch":26107807,"idl":98.68,"recv":0,"send":0,"writ":0.6,"used":614.17,"free":3767.91},{"epoch":26107808,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":613.78,"free":3768.29},{"epoch":26107809,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.3,"used":614.43,"free":3767.61},{"epoch":26107810,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.29,"used":614.79,"free":3767.27},{"epoch":26107811,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.16,"used":614.74,"free":3767.3},{"epoch":26107812,"idl":99.75,"recv":0.01,"send":0.03,"writ":0.34,"used":615.09,"free":3766.95},{"epoch":26107813,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.39,"used":615,"free":3767.04},{"epoch":26107814,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.14,"used":614.97,"free":3767.06},{"epoch":26107815,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.29,"used":614.71,"free":3767.34},{"epoch":26107816,"idl":99.8,"recv":0.01,"send":0.03,"writ":0.16,"used":614.75,"free":3767.29},{"epoch":26107817,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.18,"used":614.72,"free":3767.32},{"epoch":26107818,"idl":99.67,"recv":0.01,"send":0.03,"writ":0.63,"used":615.17,"free":3766.87},{"epoch":26107819,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.15,"used":614.73,"free":3767.3},{"epoch":26107820,"idl":99.73,"recv":0.01,"send":0.02,"writ":0.32,"used":614.72,"free":3767.33},{"epoch":26107821,"idl":99.71,"recv":0.01,"send":0.02,"writ":0.16,"used":614.5,"free":3767.55},{"epoch":26107822,"idl":99.71,"recv":0.01,"send":0.03,"writ":0.18,"used":614.5,"free":3767.54},{"epoch":26107823,"idl":99.64,"recv":0.01,"send":0.02,"writ":0.57,"used":614.83,"free":3767.2},{"epoch":26107824,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.15,"used":614.48,"free":3767.55},{"epoch":26107825,"idl":99.66,"recv":0.01,"send":0.02,"writ":0.3,"used":614.99,"free":3767.05},{"epoch":26107826,"idl":99.8,"recv":0.01,"send":0.03,"writ":0.16,"used":614.96,"free":3767.08},{"epoch":26107827,"idl":99.82,"recv":0,"send":0.02,"writ":0.17,"used":614.96,"free":3767.08},{"epoch":26107828,"idl":99.71,"recv":0.01,"send":0.02,"writ":0.6,"used":615.05,"free":3766.99},{"epoch":26107829,"idl":99.91,"recv":0.01,"send":0.03,"writ":0.2,"used":614.46,"free":3767.57},{"epoch":26107830,"idl":99.77,"recv":0.01,"send":0.02,"writ":0.32,"used":614.72,"free":3767.33},{"epoch":26107831,"idl":99.91,"recv":0.01,"send":0.02,"writ":0.18,"used":614.75,"free":3767.29},{"epoch":26107832,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.18,"used":614.73,"free":3767.31},{"epoch":26107833,"idl":99.77,"recv":0.01,"send":0.02,"writ":0.64,"used":615.08,"free":3766.96},{"epoch":26107834,"idl":99.89,"recv":0.01,"send":0.02,"writ":0.14,"used":614.74,"free":3767.29},{"epoch":26107835,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.3,"used":614.48,"free":3767.57},{"epoch":26107836,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.14,"used":614.49,"free":3767.56},{"epoch":26107837,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.16,"used":614.48,"free":3767.56},{"epoch":26107838,"idl":99.76,"recv":0.01,"send":0.02,"writ":0.57,"used":614.87,"free":3767.17},{"epoch":26107839,"idl":99.81,"recv":0,"send":0.02,"writ":0.33,"used":614.75,"free":3767.26},{"epoch":26107840,"idl":99.76,"recv":0.01,"send":0.02,"writ":0.32,"used":614.8,"free":3767.23},{"epoch":26107841,"idl":99.9,"recv":0.01,"send":0.02,"writ":0.15,"used":614.7,"free":3767.32},{"epoch":26107842,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.16,"used":614.77,"free":3767.25},{"epoch":26107843,"idl":99.75,"recv":0.01,"send":0.02,"writ":0.42,"used":615.48,"free":3766.53},{"epoch":26107844,"idl":99.81,"recv":0.01,"send":0.03,"writ":0.29,"used":614.72,"free":3767.3},{"epoch":26107845,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.29,"used":614.77,"free":3767.28},{"epoch":26107846,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.16,"used":614.75,"free":3767.29},{"epoch":26107847,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.14,"used":614.71,"free":3767.33},{"epoch":26107848,"idl":99.85,"recv":0.01,"send":0.03,"writ":0.15,"used":614.74,"free":3767.29},{"epoch":26107849,"idl":99.74,"recv":0.01,"send":0.03,"writ":0.56,"used":615.51,"free":3766.51},{"epoch":26107850,"idl":99.73,"recv":0.01,"send":0.02,"writ":0.28,"used":614.03,"free":3768.01},{"epoch":26107851,"idl":99.9,"recv":0,"send":0.02,"writ":0.16,"used":613.99,"free":3768.05},{"epoch":26107852,"idl":99.9,"recv":0,"send":0.02,"writ":0.14,"used":614,"free":3768.03},{"epoch":26107853,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.14,"used":613.98,"free":3768.05},{"epoch":26107854,"idl":99.77,"recv":0.01,"send":0.02,"writ":0.61,"used":615,"free":3767.02},{"epoch":26107855,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.3,"used":614.99,"free":3767.05},{"epoch":26107856,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.13,"used":614.98,"free":3767.05},{"epoch":26107857,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.17,"used":614.99,"free":3767.04},{"epoch":26107858,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.14,"used":614.98,"free":3767.05},{"epoch":26107859,"idl":99.59,"recv":0.01,"send":0.02,"writ":0.53,"used":615.3,"free":3766.73},{"epoch":26107860,"idl":99.66,"recv":0.01,"send":0.02,"writ":0.38,"used":615,"free":3767.04},{"epoch":26107861,"idl":99.89,"recv":0.01,"send":0.03,"writ":0.16,"used":614.97,"free":3767.06},{"epoch":26107862,"idl":82.09,"recv":94.15,"send":0.14,"writ":328.66,"used":654.79,"free":3661.71},{"epoch":26107863,"idl":80.94,"recv":0.01,"send":0.02,"writ":486.87,"used":657.63,"free":3667.58},{"epoch":26107864,"idl":99.72,"recv":0.01,"send":0.02,"writ":33.35,"used":617.72,"free":3851.77},{"epoch":26107865,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.34,"used":616.79,"free":3852.15},{"epoch":26107866,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.17,"used":616.69,"free":3852.16},{"epoch":26107867,"idl":95.97,"recv":0.01,"send":0.02,"writ":0.14,"used":616.65,"free":3852.13},{"epoch":26107868,"idl":99.87,"recv":0.01,"send":0.03,"writ":0.17,"used":615.93,"free":3852.8},{"epoch":26107869,"idl":99.64,"recv":0.01,"send":0.03,"writ":0.66,"used":615.36,"free":3853.02},{"epoch":26107870,"idl":99.76,"recv":0.01,"send":0.03,"writ":0.38,"used":614.61,"free":3853.68},{"epoch":26107871,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.15,"used":614.42,"free":3853.66},{"epoch":26107872,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.16,"used":614.52,"free":3853.48},{"epoch":26107873,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.15,"used":614.49,"free":3853.43},{"epoch":26107874,"idl":99.68,"recv":0.01,"send":0.03,"writ":0.46,"used":615.3,"free":3852.56},{"epoch":26107875,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.45,"used":614.6,"free":3853.2},{"epoch":26107876,"idl":99.87,"recv":0.01,"send":0.03,"writ":0.16,"used":614.48,"free":3853.24},{"epoch":26107877,"idl":99.87,"recv":0.01,"send":0.03,"writ":0.19,"used":614.67,"free":3852.97},{"epoch":26107878,"idl":99.91,"recv":0.01,"send":0.02,"writ":0.16,"used":614.57,"free":3852.98},{"epoch":26107879,"idl":99.73,"recv":0.01,"send":0.02,"writ":0.36,"used":615.08,"free":3852.39},{"epoch":26107880,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.49,"used":615.18,"free":3852.23},{"epoch":26107881,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.18,"used":614.85,"free":3852.47},{"epoch":26107882,"idl":99.87,"recv":0.01,"send":0.04,"writ":0.15,"used":614.81,"free":3852.43},{"epoch":26107883,"idl":99.87,"recv":0.01,"send":0.03,"writ":0.15,"used":614.68,"free":3852.47},{"epoch":26107884,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.14,"used":614.59,"free":3852.49},{"epoch":26107885,"idl":98.44,"recv":0.01,"send":0.02,"writ":16.37,"used":617.6,"free":3848.16},{"epoch":26107886,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.19,"used":614.85,"free":3850.28},{"epoch":26107887,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.16,"used":614.75,"free":3850.29},{"epoch":26107888,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.14,"used":614.72,"free":3850.24},{"epoch":26107889,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.15,"used":614.6,"free":3850.28},{"epoch":26107890,"idl":99.63,"recv":0.01,"send":0.03,"writ":0.69,"used":615.61,"free":3849.2},{"epoch":26107891,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.16,"used":615.2,"free":3849.53},{"epoch":26107892,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.14,"used":615.15,"free":3849.49},{"epoch":26107893,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.15,"used":615.04,"free":3849.52},{"epoch":26107894,"idl":99.89,"recv":0.01,"send":0.03,"writ":0.14,"used":614.94,"free":3849.54},{"epoch":26107895,"idl":99.67,"recv":0.01,"send":0.02,"writ":0.7,"used":615.59,"free":3848.83},{"epoch":26107896,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.14,"used":615.06,"free":3849.28},{"epoch":26107897,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.17,"used":614.94,"free":3849.31},{"epoch":26107898,"idl":99.87,"recv":0.01,"send":0.03,"writ":0.14,"used":614.9,"free":3849.27},{"epoch":26107899,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.3,"used":615.05,"free":3849.02},{"epoch":26107900,"idl":99.63,"recv":0.01,"send":0.03,"writ":0.68,"used":615.47,"free":3848.54},{"epoch":26107901,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.18,"used":615.17,"free":3848.76},{"epoch":26107902,"idl":99.89,"recv":0.01,"send":0.03,"writ":0.16,"used":615.08,"free":3848.76},{"epoch":26107903,"idl":99.85,"recv":0.01,"send":0.03,"writ":0.14,"used":615,"free":3848.76},{"epoch":26107904,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.15,"used":614.89,"free":3848.8},{"epoch":26107905,"idl":99.62,"recv":0.01,"send":0.03,"writ":0.75,"used":615.71,"free":3847.76},{"epoch":26107906,"idl":99.9,"recv":0.01,"send":0.03,"writ":0.21,"used":615.24,"free":3848.06},{"epoch":26107907,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.14,"used":615.13,"free":3848.09},{"epoch":26107908,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.15,"used":615.08,"free":3848.05},{"epoch":26107909,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.15,"used":615,"free":3848.05},{"epoch":26107910,"idl":99.64,"recv":0.01,"send":0.02,"writ":0.54,"used":615.33,"free":3847.66},{"epoch":26107911,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.29,"used":615.11,"free":3847.8},{"epoch":26107912,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.16,"used":615.03,"free":3847.8},{"epoch":26107913,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.14,"used":614.93,"free":3847.82},{"epoch":26107914,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.15,"used":614.87,"free":3847.8},{"epoch":26107915,"idl":99.6,"recv":0.01,"send":0.02,"writ":0.5,"used":614.03,"free":3848.57},{"epoch":26107916,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.4,"used":615.19,"free":3847.32},{"epoch":26107917,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.14,"used":615.12,"free":3847.31},{"epoch":26107918,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.15,"used":615.03,"free":3847.32},{"epoch":26107919,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.14,"used":614.93,"free":3847.33},{"epoch":26107920,"idl":99.62,"recv":0.01,"send":0.03,"writ":0.28,"used":615.59,"free":3846.62},{"epoch":26107921,"idl":99.69,"recv":0.01,"send":0.03,"writ":0.56,"used":615.71,"free":3846.41},{"epoch":26107922,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.14,"used":615.23,"free":3846.81},{"epoch":26107923,"idl":99.85,"recv":0.01,"send":0.03,"writ":0.15,"used":614.38,"free":3847.58},{"epoch":26107924,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.16,"used":614.1,"free":3847.78},{"epoch":26107925,"idl":99.76,"recv":0.01,"send":0.03,"writ":0.32,"used":614.02,"free":3847.8},{"epoch":26107926,"idl":99.68,"recv":0.01,"send":0.03,"writ":0.53,"used":614.9,"free":3846.84},{"epoch":26107927,"idl":99.83,"recv":0,"send":0.02,"writ":0.16,"used":614.57,"free":3847.08},{"epoch":26107928,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.15,"used":614.49,"free":3847.08},{"epoch":26107929,"idl":99.69,"recv":0.01,"send":0.02,"writ":0.31,"used":614.37,"free":3847.09},{"epoch":26107930,"idl":99.68,"recv":0.01,"send":0.02,"writ":0.32,"used":614.56,"free":3846.83},{"epoch":26107931,"idl":99.61,"recv":0.01,"send":0.02,"writ":0.39,"used":614.99,"free":3846.32},{"epoch":26107932,"idl":99.75,"recv":0.01,"send":0.03,"writ":0.29,"used":614.67,"free":3846.55},{"epoch":26107933,"idl":99.59,"recv":0.01,"send":0.02,"writ":0.14,"used":614.55,"free":3846.59},{"epoch":26107934,"idl":99.69,"recv":0.01,"send":0.03,"writ":0.14,"used":614.52,"free":3846.54},{"epoch":26107935,"idl":99.74,"recv":0.01,"send":0.02,"writ":0.3,"used":614.2,"free":3846.8},{"epoch":26107936,"idl":99.65,"recv":0.01,"send":0.03,"writ":0.51,"used":614.43,"free":3846.48},{"epoch":26107937,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.23,"used":614.05,"free":3846.78},{"epoch":26107938,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.15,"used":613.94,"free":3846.81},{"epoch":26107939,"idl":99.77,"recv":0.01,"send":0.03,"writ":0.16,"used":613.82,"free":3846.84},{"epoch":26107940,"idl":99.73,"recv":0.01,"send":0.02,"writ":0.3,"used":614.05,"free":3846.56},{"epoch":26107941,"idl":99.71,"recv":0.01,"send":0.02,"writ":0.42,"used":614.33,"free":3846.19},{"epoch":26107942,"idl":99.75,"recv":0.01,"send":0.02,"writ":0.31,"used":614.36,"free":3846.08},{"epoch":26107943,"idl":99.8,"recv":0.01,"send":0.03,"writ":0.14,"used":614.32,"free":3846.03},{"epoch":26107944,"idl":99.81,"recv":0.01,"send":0.03,"writ":0.15,"used":614.21,"free":3846.07},{"epoch":26107945,"idl":99.72,"recv":0.01,"send":0.02,"writ":0.33,"used":614.6,"free":3845.61},{"epoch":26107946,"idl":99.7,"recv":0.01,"send":0.02,"writ":0.56,"used":614.99,"free":3845.13},{"epoch":26107947,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.19,"used":614.93,"free":3845.09},{"epoch":26107948,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.15,"used":614.81,"free":3845.12},{"epoch":26107949,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.14,"used":614.78,"free":3845.07},{"epoch":26107950,"idl":99.61,"recv":0.01,"send":0.03,"writ":0.34,"used":614.02,"free":3845.67},{"epoch":26107951,"idl":99.79,"recv":0.01,"send":0.03,"writ":0.17,"used":614.28,"free":3845.33},{"epoch":26107952,"idl":99.79,"recv":0.01,"send":0.03,"writ":0.56,"used":615.02,"free":3844.5},{"epoch":26107953,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.15,"used":614.63,"free":3844.81},{"epoch":26107954,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.15,"used":614.51,"free":3844.85},{"epoch":26107955,"idl":99.73,"recv":0.01,"send":0.02,"writ":0.3,"used":614.46,"free":3844.86},{"epoch":26107956,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.14,"used":614.41,"free":3844.84},{"epoch":26107957,"idl":99.68,"recv":0.01,"send":0.03,"writ":0.56,"used":615.2,"free":3843.97},{"epoch":26107958,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.13,"used":614.72,"free":3844.37},{"epoch":26107959,"idl":99.79,"recv":0.01,"send":0.03,"writ":0.31,"used":614.67,"free":3844.32},{"epoch":26107960,"idl":99.73,"recv":0.01,"send":0.03,"writ":0.29,"used":613.88,"free":3845.06},{"epoch":26107961,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.16,"used":613.84,"free":3845.04},{"epoch":26107962,"idl":99.66,"recv":0.01,"send":0.02,"writ":0.55,"used":614.91,"free":3843.93},{"epoch":26107963,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.15,"used":614.73,"free":3844.08},{"epoch":26107964,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.15,"used":614.68,"free":3844.09},{"epoch":26107965,"idl":99.7,"recv":0.01,"send":0.03,"writ":0.3,"used":614.38,"free":3844.34},{"epoch":26107966,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.14,"used":614.34,"free":3844.32},{"epoch":26107967,"idl":99.61,"recv":0.01,"send":0.02,"writ":0.57,"used":615.09,"free":3843.51},{"epoch":26107968,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.14,"used":614.93,"free":3843.64},{"epoch":26107969,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.16,"used":614.95,"free":3843.59},{"epoch":26107970,"idl":99.74,"recv":0.01,"send":0.02,"writ":0.31,"used":614.67,"free":3843.85},{"epoch":26107971,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.14,"used":614.56,"free":3843.88},{"epoch":26107972,"idl":99.72,"recv":0.01,"send":0.02,"writ":0.51,"used":615.35,"free":3843.02},{"epoch":26107973,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.2,"used":614.5,"free":3843.83},{"epoch":26107974,"idl":99.85,"recv":0.01,"send":0.03,"writ":0.14,"used":614.46,"free":3843.85},{"epoch":26107975,"idl":99.74,"recv":0.01,"send":0.02,"writ":0.29,"used":615.13,"free":3843.15},{"epoch":26107976,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.17,"used":615.15,"free":3843.09},{"epoch":26107977,"idl":99.75,"recv":0.01,"send":0.02,"writ":0.43,"used":615.58,"free":3842.59},{"epoch":26107978,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.3,"used":615.23,"free":3842.89},{"epoch":26107979,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.16,"used":615.21,"free":3842.88},{"epoch":26107980,"idl":99.55,"recv":0.01,"send":0.02,"writ":0.3,"used":614.96,"free":3843.11},{"epoch":26107981,"idl":99.54,"recv":0.01,"send":0.02,"writ":0.14,"used":614.89,"free":3843.14},{"epoch":26107982,"idl":99.69,"recv":0.01,"send":0.03,"writ":0.49,"used":615.22,"free":3842.73},{"epoch":26107983,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.26,"used":615.03,"free":3842.83},{"epoch":26107984,"idl":99.8,"recv":0.01,"send":0.03,"writ":0.15,"used":614.98,"free":3842.8},{"epoch":26107985,"idl":99.73,"recv":0.01,"send":0.02,"writ":0.31,"used":614.64,"free":3843.1},{"epoch":26107986,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.16,"used":614.62,"free":3843.09},{"epoch":26107987,"idl":99.73,"recv":0,"send":0.02,"writ":0.42,"used":614.93,"free":3842.76},{"epoch":26107988,"idl":99.88,"recv":0,"send":0.01,"writ":0.29,"used":614.8,"free":3842.83},{"epoch":26107989,"idl":99.8,"recv":0,"send":0.01,"writ":0.3,"used":614.66,"free":3842.91},{"epoch":26107990,"idl":99.72,"recv":0.01,"send":0.02,"writ":0.32,"used":614.98,"free":3842.56},{"epoch":26107991,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":614.89,"free":3842.63},{"epoch":26107992,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":614.83,"free":3842.66},{"epoch":26107993,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":615.36,"free":3842.09},{"epoch":26107994,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":614.94,"free":3842.47},{"epoch":26107995,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":614.99,"free":3842.39},{"epoch":26107996,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.13,"used":614.99,"free":3842.35},{"epoch":26107997,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":615.15,"free":3842.15},{"epoch":26107998,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":615.23,"free":3842.02},{"epoch":26107999,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":614.76,"free":3842.45},{"epoch":26108000,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":615.15,"free":3842.02},{"epoch":26108001,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":614.96,"free":3842.17},{"epoch":26108002,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":615.04,"free":3842.06},{"epoch":26108003,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":615.63,"free":3841.43},{"epoch":26108004,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":615.39,"free":3841.61},{"epoch":26108005,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":615.07,"free":3841.89},{"epoch":26108006,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":614.99,"free":3841.93},{"epoch":26108007,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":614.93,"free":3841.96},{"epoch":26108008,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":615.34,"free":3841.52},{"epoch":26108009,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":615.17,"free":3841.64},{"epoch":26108010,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":614.69,"free":3842.08},{"epoch":26108011,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":614.6,"free":3842.12},{"epoch":26108012,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":614.7,"free":3842},{"epoch":26108013,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":615.1,"free":3841.57},{"epoch":26108014,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":614.69,"free":3841.95},{"epoch":26108015,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":614.86,"free":3841.74},{"epoch":26108016,"idl":99.91,"recv":0,"send":0,"writ":0.12,"used":615.04,"free":3841.5},{"epoch":26108017,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":615.14,"free":3841.36},{"epoch":26108018,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":615.48,"free":3840.97},{"epoch":26108019,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":614.4,"free":3841.86},{"epoch":26108020,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":614.54,"free":3841.67},{"epoch":26108021,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":614.46,"free":3841.69},{"epoch":26108022,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":614.38,"free":3841.73},{"epoch":26108023,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":614.95,"free":3841.12},{"epoch":26108024,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":615.15,"free":3840.85},{"epoch":26108025,"idl":99.77,"recv":0.03,"send":0.85,"writ":0.34,"used":615.04,"free":3840.87},{"epoch":26108026,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":614.74,"free":3840.92},{"epoch":26108027,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":614.9,"free":3840.72},{"epoch":26108028,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":615,"free":3840.58},{"epoch":26108029,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":615.49,"free":3840.02},{"epoch":26108030,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":615.12,"free":3840.36},{"epoch":26108031,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":615.02,"free":3840.4},{"epoch":26108032,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":614.94,"free":3840.43},{"epoch":26108033,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":614.87,"free":3840.45},{"epoch":26108034,"idl":94.64,"recv":0.37,"send":0.01,"writ":264.83,"used":625.65,"free":3829.51},{"epoch":26108035,"idl":99.79,"recv":0,"send":0,"writ":0.37,"used":617.03,"free":3837.56},{"epoch":26108036,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":616.89,"free":3837.65},{"epoch":26108037,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":616.81,"free":3837.68},{"epoch":26108038,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":616.72,"free":3837.7},{"epoch":26108039,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":616.3,"free":3838.12},{"epoch":26108040,"idl":99.71,"recv":0,"send":0,"writ":0.39,"used":615.14,"free":3839.29},{"epoch":26108041,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":615.06,"free":3839.32},{"epoch":26108042,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":614.98,"free":3839.35},{"epoch":26108043,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":614.88,"free":3839.38},{"epoch":26108044,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":615.5,"free":3838.73},{"epoch":26108045,"idl":99.82,"recv":0,"send":0,"writ":0.35,"used":614.78,"free":3839.44},{"epoch":26108046,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":614.78,"free":3839.38},{"epoch":26108047,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":614.88,"free":3839.24},{"epoch":26108048,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":614.96,"free":3839.09},{"epoch":26108049,"idl":99.72,"recv":0,"send":0,"writ":0.75,"used":615.69,"free":3838.28},{"epoch":26108050,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":614.81,"free":3839.14},{"epoch":26108051,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":614.73,"free":3839.18},{"epoch":26108052,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":614.66,"free":3839.2},{"epoch":26108053,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":614.75,"free":3839.05},{"epoch":26108054,"idl":99.75,"recv":0,"send":0,"writ":0.5,"used":615.31,"free":3838.46},{"epoch":26108055,"idl":99.81,"recv":0,"send":0,"writ":0.35,"used":614.64,"free":3839.11},{"epoch":26108056,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.16,"used":614.55,"free":3839.16},{"epoch":26108057,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":614.5,"free":3839.19},{"epoch":26108058,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":614.44,"free":3839.22},{"epoch":26108059,"idl":99.77,"recv":0,"send":0,"writ":0.4,"used":615.04,"free":3838.59},{"epoch":26108060,"idl":99.77,"recv":0,"send":0,"writ":0.42,"used":615.25,"free":3838.37},{"epoch":26108061,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":614.74,"free":3838.87},{"epoch":26108062,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":614.68,"free":3838.93},{"epoch":26108063,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":614.62,"free":3838.96},{"epoch":26108064,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":614.56,"free":3838.99},{"epoch":26108065,"idl":99.58,"recv":0,"send":0,"writ":0.72,"used":615.16,"free":3838.39},{"epoch":26108066,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":614.68,"free":3838.85},{"epoch":26108067,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":614.6,"free":3838.9},{"epoch":26108068,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":614.53,"free":3838.93},{"epoch":26108069,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":614.48,"free":3838.97},{"epoch":26108070,"idl":99.72,"recv":0,"send":0,"writ":0.71,"used":615.28,"free":3838.17},{"epoch":26108071,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":614.83,"free":3838.61},{"epoch":26108072,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":614.77,"free":3838.65},{"epoch":26108073,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":614.71,"free":3838.68},{"epoch":26108074,"idl":99.89,"recv":0,"send":0.01,"writ":0.18,"used":614.6,"free":3838.66},{"epoch":26108075,"idl":99.65,"recv":0,"send":0,"writ":0.73,"used":614.95,"free":3838.27},{"epoch":26108076,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.16,"used":614.29,"free":3838.9},{"epoch":26108077,"idl":99.78,"recv":0.01,"send":0.03,"writ":0.16,"used":614.26,"free":3838.9},{"epoch":26108078,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.16,"used":614.3,"free":3838.81},{"epoch":26108079,"idl":99.77,"recv":0.01,"send":0.02,"writ":0.41,"used":614.44,"free":3838.43},{"epoch":26108080,"idl":99.57,"recv":0.01,"send":0.02,"writ":0.72,"used":614.88,"free":3837.97},{"epoch":26108081,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.18,"used":614.67,"free":3838.15},{"epoch":26108082,"idl":99.79,"recv":0.03,"send":0.88,"writ":0.16,"used":614.63,"free":3838.17},{"epoch":26108083,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.2,"used":614.63,"free":3838.15},{"epoch":26108084,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.19,"used":614.61,"free":3838.16},{"epoch":26108085,"idl":99.61,"recv":0.01,"send":0.02,"writ":0.71,"used":614.76,"free":3838.01},{"epoch":26108086,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.18,"used":614.12,"free":3838.63},{"epoch":26108087,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.15,"used":614.07,"free":3838.66},{"epoch":26108088,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.16,"used":614.05,"free":3838.65},{"epoch":26108089,"idl":99.76,"recv":0.03,"send":0.87,"writ":0.23,"used":614.02,"free":3838.64},{"epoch":26108090,"idl":99.51,"recv":0.01,"send":0.02,"writ":0.74,"used":615.31,"free":3837.33},{"epoch":26108091,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.16,"used":614.47,"free":3838.15},{"epoch":26108092,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.17,"used":614.43,"free":3838.15},{"epoch":26108093,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.14,"used":614.39,"free":3838.16},{"epoch":26108094,"idl":99.75,"recv":0.01,"send":0.03,"writ":0.16,"used":614.4,"free":3838.12},{"epoch":26108095,"idl":99.61,"recv":0.01,"send":0.02,"writ":0.51,"used":614.93,"free":3837.59},{"epoch":26108096,"idl":99.77,"recv":0.01,"send":0.02,"writ":0.38,"used":614.35,"free":3838.16},{"epoch":26108097,"idl":99.73,"recv":0.03,"send":0.58,"writ":0.3,"used":614.16,"free":3838.16},{"epoch":26108098,"idl":99.81,"recv":0,"send":0.02,"writ":0.15,"used":614,"free":3838.19},{"epoch":26108099,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.14,"used":614.01,"free":3838.14},{"epoch":26108100,"idl":99.38,"recv":0.01,"send":0.02,"writ":0.65,"used":615.07,"free":3837.07},{"epoch":26108101,"idl":99.75,"recv":0.01,"send":0.03,"writ":0.23,"used":614.69,"free":3837.43},{"epoch":26108102,"idl":99.8,"recv":0.01,"send":0.07,"writ":0.16,"used":614.56,"free":3837.42},{"epoch":26108103,"idl":99.78,"recv":0.01,"send":0.03,"writ":0.14,"used":614.55,"free":3837.39},{"epoch":26108104,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.14,"used":614.51,"free":3837.4},{"epoch":26108105,"idl":99.71,"recv":0.01,"send":0.03,"writ":0.41,"used":611.4,"free":3840.73},{"epoch":26108106,"idl":99.67,"recv":0.01,"send":0.02,"writ":0.56,"used":609.85,"free":3842.41},{"epoch":26108107,"idl":99.77,"recv":0.01,"send":0.03,"writ":0.15,"used":609.5,"free":3842.73},{"epoch":26108108,"idl":99.75,"recv":0.01,"send":0.02,"writ":0.16,"used":605.36,"free":3846.95},{"epoch":26108109,"idl":99.71,"recv":0.01,"send":0.02,"writ":0.3,"used":598.7,"free":3853.75},{"epoch":26108110,"idl":99.7,"recv":0.01,"send":0.03,"writ":0.31,"used":598.51,"free":3853.96},{"epoch":26108111,"idl":99.69,"recv":0,"send":0.02,"writ":0.56,"used":599.03,"free":3853.43},{"epoch":26108112,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.15,"used":598.68,"free":3853.74},{"epoch":26108113,"idl":99.76,"recv":0,"send":0.02,"writ":0.14,"used":598.72,"free":3853.69},{"epoch":26108114,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.16,"used":598.66,"free":3853.75},{"epoch":26108115,"idl":99.67,"recv":0,"send":0.02,"writ":0.32,"used":598.44,"free":3853.98},{"epoch":26108116,"idl":99.65,"recv":0,"send":0.02,"writ":0.59,"used":598.54,"free":3853.86},{"epoch":26108117,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.19,"used":597.85,"free":3854.52},{"epoch":26108118,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.14,"used":597.87,"free":3854.46},{"epoch":26108119,"idl":99.8,"recv":0.01,"send":0.05,"writ":0.14,"used":597.95,"free":3854.34},{"epoch":26108120,"idl":99.55,"recv":0.01,"send":0.19,"writ":0.43,"used":597.84,"free":3854.46},{"epoch":26108121,"idl":99.63,"recv":0,"send":0.02,"writ":0.7,"used":598.04,"free":3854.23},{"epoch":26108122,"idl":99.79,"recv":0,"send":0.02,"writ":0.16,"used":598.29,"free":3853.95},{"epoch":26108123,"idl":99.81,"recv":0,"send":0.02,"writ":0.14,"used":598.26,"free":3853.97},{"epoch":26108124,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":598.3,"free":3853.92},{"epoch":26108125,"idl":99.71,"recv":0.01,"send":0.13,"writ":0.3,"used":598.52,"free":3853.71},{"epoch":26108126,"idl":99.74,"recv":0,"send":0,"writ":0.63,"used":598.76,"free":3853.33},{"epoch":26108127,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":598.71,"free":3853.35},{"epoch":26108128,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":598.8,"free":3853.2},{"epoch":26108129,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":598.74,"free":3853.2},{"epoch":26108130,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":598.72,"free":3853.21},{"epoch":26108131,"idl":99.68,"recv":0,"send":0.02,"writ":0.58,"used":598.97,"free":3852.93},{"epoch":26108132,"idl":99.76,"recv":0.03,"send":1.04,"writ":0.2,"used":598.32,"free":3853.54},{"epoch":26108133,"idl":99.81,"recv":0.01,"send":0.03,"writ":0.15,"used":598.1,"free":3853.74},{"epoch":26108134,"idl":95.44,"recv":7.24,"send":0.05,"writ":151.08,"used":606.85,"free":3839.1},{"epoch":26108135,"idl":99.72,"recv":0,"send":0.02,"writ":0.32,"used":599.54,"free":3843.11},{"epoch":26108136,"idl":99.63,"recv":0,"send":0.02,"writ":0.32,"used":599.96,"free":3842.67},{"epoch":26108137,"idl":99.78,"recv":0,"send":0.02,"writ":0.39,"used":600.47,"free":3842.13},{"epoch":26108138,"idl":99.78,"recv":0.01,"send":0.03,"writ":0.15,"used":600.49,"free":3842.1},{"epoch":26108139,"idl":99.71,"recv":0,"send":0.02,"writ":0.32,"used":599.04,"free":3843.56},{"epoch":26108140,"idl":99.66,"recv":0,"send":0.02,"writ":0.31,"used":598.08,"free":3844.55},{"epoch":26108141,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.14,"used":598.01,"free":3844.59},{"epoch":26108142,"idl":99.67,"recv":0,"send":0.02,"writ":0.61,"used":598.14,"free":3844.43},{"epoch":26108143,"idl":99.8,"recv":0,"send":0.02,"writ":0.14,"used":597.27,"free":3845.29},{"epoch":26108144,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.16,"used":597.01,"free":3845.57},{"epoch":26108145,"idl":99.7,"recv":0,"send":0.02,"writ":0.29,"used":597.78,"free":3844.81},{"epoch":26108146,"idl":99.8,"recv":0,"send":0.02,"writ":0.16,"used":597.7,"free":3844.87},{"epoch":26108147,"idl":99.62,"recv":0.01,"send":0.02,"writ":0.59,"used":598.52,"free":3844.02},{"epoch":26108148,"idl":99.78,"recv":0,"send":0.02,"writ":0.16,"used":598.18,"free":3844.36},{"epoch":26108149,"idl":99.78,"recv":0,"send":0.02,"writ":0.16,"used":598.16,"free":3844.36},{"epoch":26108150,"idl":99.63,"recv":0,"send":0.02,"writ":0.3,"used":598.19,"free":3844.34},{"epoch":26108151,"idl":99.78,"recv":0.01,"send":0.03,"writ":0.14,"used":598.12,"free":3844.4},{"epoch":26108152,"idl":99.64,"recv":0,"send":0.02,"writ":0.55,"used":598.51,"free":3843.99},{"epoch":26108153,"idl":99.8,"recv":0.01,"send":0.03,"writ":0.15,"used":598.11,"free":3844.35},{"epoch":26108154,"idl":99.73,"recv":0.01,"send":0.02,"writ":0.14,"used":598.08,"free":3844.36},{"epoch":26108155,"idl":99.64,"recv":0.01,"send":0.03,"writ":0.34,"used":598.13,"free":3844.32},{"epoch":26108156,"idl":99.77,"recv":0.01,"send":0.03,"writ":0.14,"used":598.1,"free":3844.35},{"epoch":26108157,"idl":99.65,"recv":0,"send":0.03,"writ":0.57,"used":598.4,"free":3844.03},{"epoch":26108158,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.17,"used":598.09,"free":3844.31},{"epoch":26108159,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":598.01,"free":3844.39},{"epoch":26108160,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":598.08,"free":3844.32},{"epoch":26108161,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":597.96,"free":3844.42},{"epoch":26108162,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":598.29,"free":3844.06},{"epoch":26108163,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":598.05,"free":3844.28},{"epoch":26108164,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":598.01,"free":3844.29},{"epoch":26108165,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":598.24,"free":3844.05},{"epoch":26108166,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":598.21,"free":3844.08},{"epoch":26108167,"idl":99.64,"recv":0,"send":0.02,"writ":0.55,"used":598.56,"free":3843.72},{"epoch":26108168,"idl":99.82,"recv":0,"send":0.02,"writ":0.16,"used":598.43,"free":3843.83},{"epoch":26108169,"idl":99.63,"recv":0,"send":0.02,"writ":0.29,"used":597.42,"free":3844.82},{"epoch":26108170,"idl":99.64,"recv":0.01,"send":0.03,"writ":0.3,"used":597.19,"free":3845.05},{"epoch":26108171,"idl":99.79,"recv":0,"send":0.02,"writ":0.16,"used":597.11,"free":3845.09},{"epoch":26108172,"idl":99.66,"recv":0.01,"send":0.03,"writ":0.32,"used":597.73,"free":3844.44},{"epoch":26108173,"idl":99.77,"recv":0,"send":0.02,"writ":0.38,"used":597.61,"free":3844.52},{"epoch":26108174,"idl":99.75,"recv":0,"send":0.02,"writ":0.14,"used":597.5,"free":3844.61},{"epoch":26108175,"idl":99.69,"recv":0,"send":0.02,"writ":0.36,"used":598.03,"free":3844.09},{"epoch":26108176,"idl":99.78,"recv":0.01,"send":0.03,"writ":0.16,"used":597.98,"free":3844.12},{"epoch":26108177,"idl":99.77,"recv":0.01,"send":0.03,"writ":0.2,"used":597.97,"free":3844.12},{"epoch":26108178,"idl":99.66,"recv":0,"send":0.02,"writ":0.55,"used":598.74,"free":3843.33},{"epoch":26108179,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.17,"used":598.42,"free":3843.62},{"epoch":26108180,"idl":99.68,"recv":0.01,"send":0.03,"writ":0.35,"used":598.15,"free":3843.9},{"epoch":26108181,"idl":99.77,"recv":0,"send":0.02,"writ":0.18,"used":597.99,"free":3844.03},{"epoch":26108182,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.14,"used":597.86,"free":3844.14},{"epoch":26108183,"idl":99.66,"recv":0.03,"send":1,"writ":0.65,"used":598.75,"free":3843.23},{"epoch":26108184,"idl":99.8,"recv":0.01,"send":0.03,"writ":0.16,"used":598.59,"free":3843.37},{"epoch":26108185,"idl":99.75,"recv":0,"send":0.02,"writ":0.33,"used":598.85,"free":3843.12},{"epoch":26108186,"idl":99.73,"recv":0.02,"send":0.11,"writ":0.23,"used":598.73,"free":3843.06},{"epoch":26108187,"idl":99.75,"recv":0.13,"send":0.04,"writ":0.38,"used":597.93,"free":3842.88},{"epoch":26108188,"idl":99.65,"recv":0.01,"send":0.02,"writ":0.55,"used":598.55,"free":3842.16},{"epoch":26108189,"idl":99.75,"recv":0.06,"send":1.72,"writ":0.25,"used":598.58,"free":3842.1},{"epoch":26108190,"idl":99.64,"recv":0.01,"send":0.02,"writ":0.36,"used":599.12,"free":3841.43},{"epoch":26108191,"idl":99.8,"recv":0,"send":0.02,"writ":0.14,"used":599.17,"free":3841.37},{"epoch":26108192,"idl":99.77,"recv":0.01,"send":0.02,"writ":0.15,"used":599.11,"free":3841.4},{"epoch":26108193,"idl":99.62,"recv":0.03,"send":1.16,"writ":0.67,"used":599.29,"free":3841.12},{"epoch":26108194,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.21,"used":598.67,"free":3841.67},{"epoch":26108195,"idl":99.7,"recv":0.01,"send":0.02,"writ":0.32,"used":598.85,"free":3841.38},{"epoch":26108196,"idl":99.78,"recv":0,"send":0.02,"writ":0.15,"used":598.81,"free":3841.4},{"epoch":26108197,"idl":99.8,"recv":0,"send":0.02,"writ":0.17,"used":598.78,"free":3841.4},{"epoch":26108198,"idl":99.67,"recv":0,"send":0.02,"writ":0.55,"used":599.22,"free":3840.95},{"epoch":26108199,"idl":99.62,"recv":0,"send":0.02,"writ":0.39,"used":598.94,"free":3841.18},{"epoch":26108200,"idl":99.7,"recv":0,"send":0.02,"writ":0.34,"used":599.04,"free":3841.08},{"epoch":26108201,"idl":99.76,"recv":0.05,"send":0.7,"writ":0.23,"used":598.95,"free":3841.13},{"epoch":26108202,"idl":94.41,"recv":35.83,"send":1.96,"writ":99.79,"used":608.92,"free":3828.22},{"epoch":26108203,"idl":84.38,"recv":0.01,"send":0.05,"writ":636.5,"used":514.24,"free":3693.5},{"epoch":26108204,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.5,"used":503.79,"free":3675.66},{"epoch":26108205,"idl":99.66,"recv":0,"send":0.02,"writ":0.38,"used":503.3,"free":3676.15},{"epoch":26108206,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.17,"used":503.3,"free":3676.15},{"epoch":26108207,"idl":99.77,"recv":0.01,"send":0.02,"writ":0.14,"used":503.27,"free":3676.15},{"epoch":26108208,"idl":99.68,"recv":0,"send":0.02,"writ":0.33,"used":502.71,"free":3676.79},{"epoch":26108209,"idl":99.8,"recv":0,"send":0.02,"writ":0.43,"used":501.09,"free":3678.48},{"epoch":26108210,"idl":99.77,"recv":0.01,"send":0.02,"writ":0.29,"used":501.13,"free":3678.45},{"epoch":26108211,"idl":99.81,"recv":0,"send":0.02,"writ":0.14,"used":501.07,"free":3678.5},{"epoch":26108212,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.16,"used":501.1,"free":3678.44},{"epoch":26108213,"idl":99.69,"recv":0,"send":0.02,"writ":0.29,"used":501.37,"free":3678.18},{"epoch":26108214,"idl":99.73,"recv":0.01,"send":0.03,"writ":0.39,"used":501.07,"free":3678.5},{"epoch":26108215,"idl":99.66,"recv":0,"send":0.02,"writ":0.28,"used":501.29,"free":3678.29},{"epoch":26108216,"idl":99.81,"recv":0,"send":0.02,"writ":0.16,"used":501.29,"free":3678.29},{"epoch":26108217,"idl":99.8,"recv":0,"send":0.02,"writ":0.14,"used":501.29,"free":3678.27},{"epoch":26108218,"idl":99.75,"recv":0.01,"send":0.02,"writ":0.15,"used":501.23,"free":3678.32},{"epoch":26108219,"idl":99.64,"recv":0,"send":0.02,"writ":0.56,"used":501.43,"free":3678.11},{"epoch":26108220,"idl":99.58,"recv":0.01,"send":0.02,"writ":0.28,"used":501.02,"free":3678.54},{"epoch":26108221,"idl":86.27,"recv":0.02,"send":0.03,"writ":1.08,"used":570.47,"free":3609.02},{"epoch":26108222,"idl":94.49,"recv":0.03,"send":0.89,"writ":3.05,"used":905.76,"free":3273.34},{"epoch":26108223,"idl":99.79,"recv":0.02,"send":0.02,"writ":0.22,"used":553.09,"free":3626.01},{"epoch":26108224,"idl":98.56,"recv":0.03,"send":0.03,"writ":0.67,"used":539.48,"free":3639.61},{"epoch":26108225,"idl":99.72,"recv":0.01,"send":0.03,"writ":0.4,"used":506.34,"free":3672.77},{"epoch":26108226,"idl":99.75,"recv":0.01,"send":0.03,"writ":0.17,"used":506.34,"free":3672.77},{"epoch":26108227,"idl":84.43,"recv":0.03,"send":0.89,"writ":3.51,"used":864.7,"free":3314.37},{"epoch":26108228,"idl":98.78,"recv":0.01,"send":0.03,"writ":0.23,"used":556.45,"free":3622.63},{"epoch":26108229,"idl":84.5,"recv":0.04,"send":0.89,"writ":4.03,"used":788.44,"free":3390.58},{"epoch":26108230,"idl":98.1,"recv":0.04,"send":1.71,"writ":0.39,"used":698.38,"free":3480.65},{"epoch":26108231,"idl":99.74,"recv":0.01,"send":0.02,"writ":0.24,"used":535.21,"free":3643.8},{"epoch":26108232,"idl":99.77,"recv":0,"send":0.02,"writ":0.16,"used":507.09,"free":3671.9},{"epoch":26108233,"idl":99.77,"recv":0.01,"send":0.03,"writ":0.15,"used":507.11,"free":3671.87},{"epoch":26108234,"idl":87.61,"recv":0.58,"send":0.08,"writ":7.23,"used":568.94,"free":3608.29},{"epoch":26108235,"idl":90.59,"recv":0.05,"send":1.75,"writ":7.19,"used":784.93,"free":3389.52},{"epoch":26108236,"idl":99.53,"recv":0.21,"send":1.11,"writ":0.49,"used":506.77,"free":3667.1},{"epoch":26108237,"idl":99.64,"recv":0.05,"send":0.22,"writ":0.31,"used":507.58,"free":3665.52},{"epoch":26108238,"idl":99.73,"recv":0.01,"send":0.03,"writ":0.2,"used":508.05,"free":3665.01},{"epoch":26108239,"idl":90.82,"recv":0.01,"send":0.03,"writ":1.06,"used":560.87,"free":3612.16},{"epoch":26108240,"idl":80.68,"recv":0.05,"send":0.9,"writ":3.75,"used":659.8,"free":3513.21},{"epoch":26108241,"idl":92.99,"recv":0.74,"send":1.81,"writ":4.6,"used":645.73,"free":3526.88},{"epoch":26108242,"idl":91.98,"recv":0.62,"send":0.1,"writ":54.8,"used":526.67,"free":3626.78},{"epoch":26108243,"idl":96.33,"recv":0.04,"send":0.03,"writ":1.14,"used":520.07,"free":3629.42},{"epoch":26108244,"idl":87.78,"recv":0.06,"send":1.75,"writ":3.8,"used":887.41,"free":3262.06},{"epoch":26108245,"idl":82.52,"recv":0.1,"send":1.96,"writ":12.18,"used":794.21,"free":3355.31},{"epoch":26108246,"idl":84.52,"recv":0.04,"send":0.05,"writ":3.36,"used":835.31,"free":3314.21},{"epoch":26108247,"idl":95.79,"recv":0.01,"send":0.03,"writ":0.65,"used":524.18,"free":3625.33},{"epoch":26108248,"idl":99.73,"recv":0.03,"send":0.08,"writ":0.28,"used":510.76,"free":3638.64},{"epoch":26108249,"idl":99.78,"recv":0.01,"send":0.03,"writ":0.29,"used":510.99,"free":3638.19},{"epoch":26108250,"idl":97.08,"recv":0.01,"send":0.02,"writ":0.92,"used":513.9,"free":3635.28},{"epoch":26108251,"idl":97.59,"recv":0.02,"send":0.03,"writ":0.48,"used":513.4,"free":3635.78},{"epoch":26108252,"idl":96.38,"recv":0.03,"send":0.02,"writ":0.53,"used":518.69,"free":3630.48},{"epoch":26108253,"idl":99.78,"recv":0,"send":0.02,"writ":0.19,"used":510.57,"free":3638.6},{"epoch":26108254,"idl":99.83,"recv":0,"send":0.02,"writ":0.16,"used":510.54,"free":3638.62},{"epoch":26108255,"idl":99.6,"recv":0,"send":0.02,"writ":0.74,"used":511.22,"free":3637.93},{"epoch":26108256,"idl":99.86,"recv":0,"send":0.02,"writ":0.17,"used":510.78,"free":3638.36},{"epoch":26108257,"idl":99.86,"recv":0,"send":0.02,"writ":0.17,"used":510.77,"free":3638.36},{"epoch":26108258,"idl":99.87,"recv":0,"send":0.02,"writ":0.14,"used":510.77,"free":3638.35},{"epoch":26108259,"idl":99.72,"recv":0,"send":0.02,"writ":0.28,"used":510.74,"free":3638.35},{"epoch":26108260,"idl":99.63,"recv":0,"send":0.02,"writ":0.71,"used":511.14,"free":3637.95},{"epoch":26108261,"idl":99.88,"recv":0,"send":0.02,"writ":0.14,"used":510.76,"free":3638.33},{"epoch":26108262,"idl":97.83,"recv":0.01,"send":0.02,"writ":0.41,"used":514.42,"free":3634.66},{"epoch":26108263,"idl":87.45,"recv":0.02,"send":0.03,"writ":0.78,"used":584.92,"free":3564.14},{"epoch":26108264,"idl":84.49,"recv":0.02,"send":0.05,"writ":3.35,"used":916.05,"free":3233.01},{"epoch":26108265,"idl":81.7,"recv":0.1,"send":2.63,"writ":6.84,"used":906.69,"free":3242.37},{"epoch":26108266,"idl":99.63,"recv":0,"send":0.02,"writ":0.23,"used":837.62,"free":3311.44},{"epoch":26108267,"idl":81.21,"recv":0.22,"send":4.35,"writ":9.77,"used":698.11,"free":3450.86},{"epoch":26108268,"idl":82.62,"recv":0.17,"send":4.01,"writ":8.47,"used":835.62,"free":3313.19},{"epoch":26108269,"idl":99.72,"recv":0.01,"send":0.02,"writ":0.33,"used":724.2,"free":3424.6},{"epoch":26108270,"idl":97.2,"recv":0.02,"send":0.03,"writ":0.93,"used":548.1,"free":3600.72},{"epoch":26108271,"idl":84.63,"recv":0.11,"send":2.78,"writ":3.55,"used":757.04,"free":3391.76},{"epoch":26108272,"idl":84.79,"recv":0.12,"send":4.3,"writ":3.46,"used":904.08,"free":3244.66},{"epoch":26108273,"idl":99.68,"recv":0.13,"send":4.55,"writ":0.26,"used":628.66,"free":3520.06},{"epoch":26108274,"idl":99.81,"recv":0.04,"send":1.22,"writ":0.35,"used":556.59,"free":3592.07},{"epoch":26108275,"idl":99.61,"recv":0.02,"send":0.72,"writ":0.79,"used":558.82,"free":3589.85},{"epoch":26108276,"idl":99.85,"recv":0.02,"send":0.66,"writ":0.23,"used":558.47,"free":3590.19},{"epoch":26108277,"idl":99.79,"recv":0.01,"send":0.03,"writ":0.14,"used":558.43,"free":3590.22},{"epoch":26108278,"idl":99.79,"recv":0.01,"send":0.03,"writ":0.15,"used":558.42,"free":3590.23},{"epoch":26108279,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.15,"used":558.46,"free":3590.18},{"epoch":26108280,"idl":99.39,"recv":0.01,"send":0.02,"writ":0.57,"used":559.93,"free":3588.72},{"epoch":26108281,"idl":99.75,"recv":0.01,"send":0.03,"writ":0.3,"used":559.18,"free":3589.47},{"epoch":26108282,"idl":99.83,"recv":0,"send":0.02,"writ":0.14,"used":559.2,"free":3589.44},{"epoch":26108283,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.15,"used":558.49,"free":3590.15},{"epoch":26108284,"idl":99.86,"recv":0,"send":0.02,"writ":0.16,"used":558.15,"free":3590.47},{"epoch":26108285,"idl":99.56,"recv":0.01,"send":0.03,"writ":0.55,"used":559,"free":3589.64},{"epoch":26108286,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.27,"used":558.42,"free":3590.22},{"epoch":26108287,"idl":99.8,"recv":0,"send":0.02,"writ":0.17,"used":558.4,"free":3590.21},{"epoch":26108288,"idl":84.78,"recv":0.04,"send":0.62,"writ":3.53,"used":820.75,"free":3327.83},{"epoch":26108289,"idl":92.73,"recv":0.01,"send":0.03,"writ":0.74,"used":753.48,"free":3395.09},{"epoch":26108290,"idl":88.54,"recv":0.08,"send":1.18,"writ":3.5,"used":930.73,"free":3217.83},{"epoch":26108291,"idl":99.55,"recv":0.01,"send":0.03,"writ":0.61,"used":786.38,"free":3362.18},{"epoch":26108292,"idl":99.76,"recv":0.02,"send":0.03,"writ":0.21,"used":556.12,"free":3592.41},{"epoch":26108293,"idl":84.74,"recv":0.1,"send":3.5,"writ":3.62,"used":825.79,"free":3322.71},{"epoch":26108294,"idl":99.64,"recv":0,"send":0.02,"writ":0.2,"used":730.52,"free":3417.94},{"epoch":26108295,"idl":99.71,"recv":0,"send":0.02,"writ":0.35,"used":557.54,"free":3590.93},{"epoch":26108296,"idl":99.61,"recv":0.02,"send":0.02,"writ":0.62,"used":558.87,"free":3589.58},{"epoch":26108297,"idl":84.97,"recv":0.07,"send":1.2,"writ":3.57,"used":854.35,"free":3294.08},{"epoch":26108298,"idl":99.6,"recv":0.13,"send":4.6,"writ":0.37,"used":635.43,"free":3512.97},{"epoch":26108299,"idl":99.84,"recv":0,"send":0.02,"writ":0.23,"used":555.21,"free":3593.15},{"epoch":26108300,"idl":99.73,"recv":0.01,"send":0.03,"writ":0.32,"used":556.97,"free":3591.4},{"epoch":26108301,"idl":99.71,"recv":0,"send":0.02,"writ":0.57,"used":557.88,"free":3590.47},{"epoch":26108302,"idl":99.88,"recv":0,"send":0.02,"writ":0.18,"used":557.68,"free":3590.67},{"epoch":26108303,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.16,"used":557.69,"free":3590.65},{"epoch":26108304,"idl":99.85,"recv":0.01,"send":0.03,"writ":0.21,"used":557.64,"free":3590.69},{"epoch":26108305,"idl":99.72,"recv":0,"send":0.02,"writ":0.39,"used":557.96,"free":3590.39},{"epoch":26108306,"idl":99.71,"recv":0,"send":0.02,"writ":0.57,"used":558.71,"free":3589.64},{"epoch":26108307,"idl":99.86,"recv":0,"send":0.02,"writ":0.16,"used":558.42,"free":3589.93},{"epoch":26108308,"idl":99.85,"recv":0,"send":0.02,"writ":0.16,"used":557.82,"free":3590.51},{"epoch":26108309,"idl":99.85,"recv":0,"send":0.02,"writ":0.17,"used":557.4,"free":3590.92},{"epoch":26108310,"idl":99.71,"recv":0,"send":0.02,"writ":0.32,"used":557.99,"free":3590.36},{"epoch":26108311,"idl":99.62,"recv":0,"send":0.02,"writ":0.51,"used":558.17,"free":3590.17},{"epoch":26108312,"idl":99.75,"recv":0,"send":0.02,"writ":0.19,"used":557.74,"free":3590.59},{"epoch":26108313,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.15,"used":557.68,"free":3590.65},{"epoch":26108314,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.16,"used":557.67,"free":3590.65},{"epoch":26108315,"idl":99.75,"recv":0,"send":0.03,"writ":0.32,"used":557.96,"free":3590.38},{"epoch":26108316,"idl":99.73,"recv":0,"send":0.02,"writ":0.57,"used":558.58,"free":3589.75},{"epoch":26108317,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.15,"used":558.67,"free":3589.66},{"epoch":26108318,"idl":99.83,"recv":0,"send":0.02,"writ":0.14,"used":558.51,"free":3589.81},{"epoch":26108319,"idl":99.65,"recv":0.01,"send":0.02,"writ":0.29,"used":557.63,"free":3590.67},{"epoch":26108320,"idl":99.68,"recv":0.02,"send":0.03,"writ":0.34,"used":557.92,"free":3590.39},{"epoch":26108321,"idl":83.78,"recv":0.05,"send":0.68,"writ":3.59,"used":669.85,"free":3478.45},{"epoch":26108322,"idl":99.81,"recv":0.04,"send":1.3,"writ":0.61,"used":892.83,"free":3255.44},{"epoch":26108323,"idl":83.89,"recv":0.08,"send":0.09,"writ":4.14,"used":794.26,"free":3353.94},{"epoch":26108324,"idl":99.84,"recv":0,"send":0.02,"writ":0.16,"used":509.5,"free":3638.7},{"epoch":26108325,"idl":99.76,"recv":0,"send":0.02,"writ":0.33,"used":511.49,"free":3636.72},{"epoch":26108326,"idl":99.68,"recv":0,"send":0.02,"writ":0.43,"used":512.09,"free":3636.12},{"epoch":26108327,"idl":99.79,"recv":0.04,"send":1.27,"writ":0.31,"used":511.52,"free":3636.68},{"epoch":26108328,"idl":99.83,"recv":0.01,"send":0.05,"writ":0.23,"used":511.47,"free":3636.72},{"epoch":26108329,"idl":99.8,"recv":0.01,"send":0.03,"writ":0.16,"used":511.48,"free":3636.72},{"epoch":26108330,"idl":99.7,"recv":0,"send":0.02,"writ":0.29,"used":511.98,"free":3636.24},{"epoch":26108331,"idl":99.88,"recv":0,"send":0.02,"writ":0.16,"used":511.95,"free":3636.26},{"epoch":26108332,"idl":99.69,"recv":0.01,"send":0.03,"writ":0.54,"used":511.89,"free":3636.31},{"epoch":26108333,"idl":99.87,"recv":0,"send":0.02,"writ":0.16,"used":511.47,"free":3636.73},{"epoch":26108334,"idl":99.88,"recv":0,"send":0.02,"writ":0.15,"used":511.5,"free":3636.69},{"epoch":26108335,"idl":99.7,"recv":0,"send":0.02,"writ":0.29,"used":511.74,"free":3636.47},{"epoch":26108336,"idl":99.86,"recv":0.01,"send":0.03,"writ":0.16,"used":511.7,"free":3636.5},{"epoch":26108337,"idl":99.74,"recv":0.01,"send":0.02,"writ":0.55,"used":510.98,"free":3637.2},{"epoch":26108338,"idl":99.88,"recv":0,"send":0.02,"writ":0.15,"used":510.46,"free":3637.71},{"epoch":26108339,"idl":99.89,"recv":0,"send":0.02,"writ":0.16,"used":510.47,"free":3637.7},{"epoch":26108340,"idl":99.5,"recv":0.01,"send":0.02,"writ":0.28,"used":510.96,"free":3637.22},{"epoch":26108341,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.2,"used":510.93,"free":3637.25},{"epoch":26108342,"idl":99.66,"recv":0,"send":0.02,"writ":0.55,"used":511.54,"free":3636.63},{"epoch":26108343,"idl":99.89,"recv":0,"send":0.02,"writ":0.14,"used":511.19,"free":3636.98},{"epoch":26108344,"idl":99.89,"recv":0,"send":0.02,"writ":0.16,"used":511.22,"free":3636.94},{"epoch":26108345,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.3,"used":511.93,"free":3636.25},{"epoch":26108346,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.13,"used":511.97,"free":3636.2},{"epoch":26108347,"idl":99.65,"recv":0.01,"send":0.02,"writ":0.59,"used":512.12,"free":3636.05},{"epoch":26108348,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.14,"used":510.92,"free":3637.24},{"epoch":26108349,"idl":99.73,"recv":0,"send":0.02,"writ":0.28,"used":512.19,"free":3635.94},{"epoch":26108350,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.29,"used":511.93,"free":3636.21},{"epoch":26108351,"idl":98.89,"recv":0,"send":0.02,"writ":0.16,"used":511.96,"free":3636.18},{"epoch":26108352,"idl":99.75,"recv":0.02,"send":0.02,"writ":0.5,"used":512.25,"free":3635.89},{"epoch":26108353,"idl":85.1,"recv":0.01,"send":0.06,"writ":1.74,"used":853.43,"free":3294.85},{"epoch":26108354,"idl":99.65,"recv":0,"send":0.02,"writ":0.16,"used":722.21,"free":3426.16},{"epoch":26108355,"idl":99.75,"recv":0.01,"send":0.03,"writ":0.33,"used":560.48,"free":3587.91},{"epoch":26108356,"idl":99.86,"recv":0.01,"send":0.03,"writ":0.16,"used":560.52,"free":3587.86},{"epoch":26108357,"idl":99.69,"recv":0.01,"send":0.02,"writ":0.6,"used":560.88,"free":3587.5},{"epoch":26108358,"idl":99.86,"recv":0,"send":0.02,"writ":0.14,"used":561.5,"free":3586.87},{"epoch":26108359,"idl":97.43,"recv":0.02,"send":0.04,"writ":0.27,"used":541.67,"free":3606.69},{"epoch":26108360,"idl":91.79,"recv":0.04,"send":0.03,"writ":0.75,"used":548.86,"free":3599.5},{"epoch":26108361,"idl":97.4,"recv":0.01,"send":0.04,"writ":0.31,"used":520.25,"free":3628.1},{"epoch":26108362,"idl":97.62,"recv":0.03,"send":0.03,"writ":0.59,"used":517.14,"free":3631.2},{"epoch":26108363,"idl":84.36,"recv":0.01,"send":0.06,"writ":2.44,"used":701.61,"free":3446.71},{"epoch":26108364,"idl":84.35,"recv":0.03,"send":0.06,"writ":2.55,"used":889.95,"free":3258.35},{"epoch":26108365,"idl":83.78,"recv":0.04,"send":0.63,"writ":3.63,"used":901.92,"free":3246.25},{"epoch":26108366,"idl":84.27,"recv":0.04,"send":0.63,"writ":3.4,"used":791.26,"free":3356.76},{"epoch":26108367,"idl":99.47,"recv":0.02,"send":0.06,"writ":0.45,"used":814.53,"free":3333.49},{"epoch":26108368,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.43,"used":555.71,"free":3592.3},{"epoch":26108369,"idl":99.84,"recv":0,"send":0.02,"writ":0.17,"used":555.65,"free":3592.35},{"epoch":26108370,"idl":99.67,"recv":0.01,"send":0.02,"writ":0.31,"used":555.43,"free":3592.58},{"epoch":26108371,"idl":99.87,"recv":0.02,"send":0.03,"writ":0.21,"used":555.45,"free":3592.55},{"epoch":26108372,"idl":95.59,"recv":0.02,"send":0.03,"writ":0.48,"used":555.68,"free":3592.28},{"epoch":26108373,"idl":99.62,"recv":0.01,"send":0.02,"writ":0.7,"used":512.12,"free":3635.74},{"epoch":26108374,"idl":98.94,"recv":0.04,"send":0.02,"writ":0.24,"used":513.75,"free":3634.1},{"epoch":26108375,"idl":82.26,"recv":0.05,"send":0.64,"writ":3.56,"used":668,"free":3479.8},{"epoch":26108376,"idl":99.66,"recv":0,"send":0.02,"writ":0.46,"used":840.03,"free":3307.57},{"epoch":26108377,"idl":87.75,"recv":0.03,"send":0.03,"writ":0.75,"used":620.9,"free":3526.69},{"epoch":26108378,"idl":95.88,"recv":0.03,"send":0.71,"writ":3.46,"used":903.38,"free":3244.2},{"epoch":26108379,"idl":97.16,"recv":0.02,"send":0.02,"writ":0.51,"used":663.75,"free":3483.77},{"epoch":26108380,"idl":83.65,"recv":0.03,"send":0.62,"writ":3.54,"used":916.84,"free":3230.68},{"epoch":26108381,"idl":99.54,"recv":0,"send":0.04,"writ":0.24,"used":575.38,"free":3572.15},{"epoch":26108382,"idl":99.78,"recv":0.1,"send":3.42,"writ":0.35,"used":558.52,"free":3588.98},{"epoch":26108383,"idl":99.68,"recv":0.02,"send":0.59,"writ":0.59,"used":559.61,"free":3587.85},{"epoch":26108384,"idl":99.83,"recv":0.05,"send":1.78,"writ":0.25,"used":558.94,"free":3588.49},{"epoch":26108385,"idl":99.71,"recv":0,"send":0.02,"writ":0.34,"used":558.65,"free":3588.8},{"epoch":26108386,"idl":99.88,"recv":0,"send":0.02,"writ":0.16,"used":558.66,"free":3588.79},{"epoch":26108387,"idl":99.86,"recv":0,"send":0.02,"writ":0.15,"used":558.65,"free":3588.79},{"epoch":26108388,"idl":99.67,"recv":0.01,"send":0.02,"writ":0.76,"used":559.41,"free":3586.96},{"epoch":26108389,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.21,"used":559.17,"free":3586.29},{"epoch":26108390,"idl":99.79,"recv":0,"send":0.02,"writ":0.3,"used":558.89,"free":3586.58},{"epoch":26108391,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.14,"used":558.05,"free":3587.42},{"epoch":26108392,"idl":99.86,"recv":0.01,"send":0.05,"writ":0.2,"used":557.9,"free":3587.56},{"epoch":26108393,"idl":99.66,"recv":0.01,"send":0.05,"writ":0.68,"used":558.4,"free":3587},{"epoch":26108394,"idl":99.82,"recv":0.04,"send":1.84,"writ":0.3,"used":558.21,"free":3587.07},{"epoch":26108395,"idl":99.67,"recv":0.02,"send":0.65,"writ":0.3,"used":558.25,"free":3587.05},{"epoch":26108396,"idl":99.78,"recv":0.14,"send":5.29,"writ":0.41,"used":558.22,"free":3586.96},{"epoch":26108397,"idl":95.81,"recv":0.3,"send":4.07,"writ":5.86,"used":551.35,"free":3590.16},{"epoch":26108398,"idl":96.11,"recv":0.66,"send":14.65,"writ":14.87,"used":518.19,"free":3624.42},{"epoch":26108399,"idl":99.34,"recv":1.02,"send":27.97,"writ":66.31,"used":514.87,"free":3625.05},{"epoch":26108400,"idl":98.69,"recv":1.8,"send":59.93,"writ":0.74,"used":515.01,"free":3624.88},{"epoch":26108401,"idl":99.81,"recv":0.04,"send":0.08,"writ":0.25,"used":515.04,"free":3624.85},{"epoch":26108402,"idl":99.83,"recv":0.04,"send":0.1,"writ":0.25,"used":514.97,"free":3624.93},{"epoch":26108403,"idl":99.63,"recv":0.02,"send":0.05,"writ":0.52,"used":513.22,"free":3626.71},{"epoch":26108404,"idl":99.87,"recv":0.02,"send":0.03,"writ":0.41,"used":512.38,"free":3627.6},{"epoch":26108405,"idl":99.61,"recv":0.03,"send":0.06,"writ":0.39,"used":511.22,"free":3628.77},{"epoch":26108406,"idl":99.78,"recv":0.04,"send":0.41,"writ":0.3,"used":511.15,"free":3628.83},{"epoch":26108407,"idl":99.76,"recv":0.78,"send":0.79,"writ":1.03,"used":510.99,"free":3628.6},{"epoch":26108408,"idl":83.03,"recv":0.01,"send":0.05,"writ":4.05,"used":741.01,"free":3398.26},{"epoch":26108409,"idl":99.51,"recv":0.06,"send":2.35,"writ":0.75,"used":852.35,"free":3286.84},{"epoch":26108410,"idl":99.68,"recv":0.03,"send":0.95,"writ":0.43,"used":560.16,"free":3579.03},{"epoch":26108411,"idl":99.8,"recv":0.05,"send":2.02,"writ":0.24,"used":560.21,"free":3578.96},{"epoch":26108412,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.19,"used":524.87,"free":3614.29},{"epoch":26108413,"idl":99.8,"recv":0,"send":0.03,"writ":0.16,"used":513.14,"free":3626.02},{"epoch":26108414,"idl":99.6,"recv":0.01,"send":0.02,"writ":0.61,"used":514.17,"free":3624.98},{"epoch":26108415,"idl":99.6,"recv":0,"send":0.02,"writ":0.34,"used":513.35,"free":3625.81},{"epoch":26108416,"idl":99.85,"recv":0,"send":0.02,"writ":0.17,"used":513.34,"free":3625.81},{"epoch":26108417,"idl":99.82,"recv":0.01,"send":0.03,"writ":0.21,"used":513.3,"free":3625.84},{"epoch":26108418,"idl":99.82,"recv":0,"send":0.02,"writ":0.17,"used":513.33,"free":3625.8},{"epoch":26108419,"idl":99.71,"recv":0,"send":0.02,"writ":0.59,"used":513.76,"free":3625.37},{"epoch":26108420,"idl":99.64,"recv":0.01,"send":0.02,"writ":0.36,"used":513.31,"free":3625.82},{"epoch":26108421,"idl":99.67,"recv":0.08,"send":3.04,"writ":0.41,"used":513.14,"free":3625.97},{"epoch":26108422,"idl":99.77,"recv":0.01,"send":0.02,"writ":0.18,"used":513.03,"free":3626.06},{"epoch":26108423,"idl":99.8,"recv":0,"send":0.02,"writ":0.14,"used":513.08,"free":3626.01},{"epoch":26108424,"idl":99.52,"recv":0.01,"send":0.03,"writ":0.5,"used":513.5,"free":3625.58},{"epoch":26108425,"idl":99.73,"recv":0.01,"send":0.03,"writ":0.36,"used":513.54,"free":3625.55},{"epoch":26108426,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.14,"used":513.57,"free":3625.52},{"epoch":26108427,"idl":99.81,"recv":0.01,"send":0.03,"writ":0.14,"used":513.53,"free":3625.55},{"epoch":26108428,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.15,"used":513.55,"free":3625.52},{"epoch":26108429,"idl":99.71,"recv":0.01,"send":0.03,"writ":0.63,"used":513.76,"free":3625.3},{"epoch":26108430,"idl":99.76,"recv":0.01,"send":0.03,"writ":0.36,"used":513.28,"free":3625.8},{"epoch":26108431,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.16,"used":513.29,"free":3625.78},{"epoch":26108432,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.14,"used":513.27,"free":3625.8},{"epoch":26108433,"idl":99.88,"recv":0,"send":0.02,"writ":0.17,"used":513.23,"free":3625.84},{"epoch":26108434,"idl":99.69,"recv":0.01,"send":0.04,"writ":0.42,"used":513.72,"free":3625.34},{"epoch":26108435,"idl":99.69,"recv":0.01,"send":0.02,"writ":0.48,"used":513.52,"free":3625.55},{"epoch":26108436,"idl":99.85,"recv":0.03,"send":1.07,"writ":0.19,"used":513.52,"free":3625.55},{"epoch":26108437,"idl":99.85,"recv":0.03,"send":0.72,"writ":0.21,"used":513.54,"free":3625.51},{"epoch":26108438,"idl":99.84,"recv":0.04,"send":1.8,"writ":0.28,"used":513.7,"free":3625.32},{"epoch":26108439,"idl":99.47,"recv":0.01,"send":0.03,"writ":0.59,"used":514.28,"free":3624.71},{"epoch":26108440,"idl":99.71,"recv":0.01,"send":0.02,"writ":0.45,"used":513.81,"free":3625.2},{"epoch":26108441,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":513.69,"free":3625.3},{"epoch":26108442,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.16,"used":513.69,"free":3625.3},{"epoch":26108443,"idl":99.86,"recv":0,"send":0.02,"writ":0.14,"used":513.64,"free":3625.35},{"epoch":26108444,"idl":99.83,"recv":0,"send":0.02,"writ":0.16,"used":513.9,"free":3625.08},{"epoch":26108445,"idl":99.62,"recv":0,"send":0.02,"writ":0.72,"used":513.28,"free":3625.72},{"epoch":26108446,"idl":99.83,"recv":0,"send":0.02,"writ":0.16,"used":512.95,"free":3626.04},{"epoch":26108447,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":512.94,"free":3626.05},{"epoch":26108448,"idl":99.83,"recv":0,"send":0.02,"writ":0.16,"used":512.9,"free":3626.09},{"epoch":26108449,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.15,"used":512.97,"free":3626.01},{"epoch":26108450,"idl":99.56,"recv":0,"send":0.02,"writ":0.75,"used":513.46,"free":3625.53},{"epoch":26108451,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.18,"used":513.2,"free":3625.79},{"epoch":26108452,"idl":99.88,"recv":0,"send":0.02,"writ":0.18,"used":513.23,"free":3625.76},{"epoch":26108453,"idl":99.89,"recv":0,"send":0.02,"writ":0.18,"used":513.15,"free":3625.83},{"epoch":26108454,"idl":99.89,"recv":0.01,"send":0.02,"writ":0.19,"used":513.21,"free":3625.77},{"epoch":26108455,"idl":99.66,"recv":0.01,"send":0.02,"writ":0.76,"used":513.95,"free":3625.06},{"epoch":26108456,"idl":99.85,"recv":0.01,"send":0.03,"writ":0.14,"used":513.67,"free":3625.34},{"epoch":26108457,"idl":99.89,"recv":0.01,"send":0.03,"writ":0.19,"used":513.7,"free":3625.3},{"epoch":26108458,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.15,"used":513.66,"free":3625.34},{"epoch":26108459,"idl":99.87,"recv":0.01,"send":0.03,"writ":0.15,"used":513.66,"free":3625.34},{"epoch":26108460,"idl":99.38,"recv":0.01,"send":0.03,"writ":0.78,"used":513.81,"free":3625.19},{"epoch":26108461,"idl":99.73,"recv":0.05,"send":1.71,"writ":0.28,"used":513.37,"free":3625.61},{"epoch":26108462,"idl":99.8,"recv":0,"send":0.02,"writ":0.16,"used":513.41,"free":3625.56},{"epoch":26108463,"idl":99.86,"recv":0,"send":0.02,"writ":0.14,"used":513.37,"free":3625.61},{"epoch":26108464,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.14,"used":513.39,"free":3625.57},{"epoch":26108465,"idl":99.47,"recv":0.04,"send":1.21,"writ":0.62,"used":513.87,"free":3625.11},{"epoch":26108466,"idl":99.78,"recv":0.18,"send":7.54,"writ":0.55,"used":513.66,"free":3625.29},{"epoch":26108467,"idl":99.83,"recv":0.09,"send":3.62,"writ":0.44,"used":513.74,"free":3625.12},{"epoch":26108468,"idl":99.88,"recv":0.01,"send":0.05,"writ":0.16,"used":513.74,"free":3625.1},{"epoch":26108469,"idl":99.68,"recv":0.02,"send":0.03,"writ":0.32,"used":513.76,"free":3625.06},{"epoch":26108470,"idl":83.01,"recv":0.08,"send":2.61,"writ":4.41,"used":876.19,"free":3262.61},{"epoch":26108471,"idl":99.68,"recv":0.03,"send":0.94,"writ":0.32,"used":729.11,"free":3409.67},{"epoch":26108472,"idl":99.87,"recv":0,"send":0.02,"writ":0.16,"used":560.3,"free":3578.47},{"epoch":26108473,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.14,"used":560.42,"free":3578.35},{"epoch":26108474,"idl":99.86,"recv":0.01,"send":0.03,"writ":0.16,"used":560.52,"free":3578.24},{"epoch":26108475,"idl":99.52,"recv":0.01,"send":0.02,"writ":0.62,"used":561.8,"free":3576.98},{"epoch":26108476,"idl":99.85,"recv":0,"send":0.02,"writ":0.27,"used":562.02,"free":3576.76},{"epoch":26108477,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.2,"used":561.96,"free":3576.81},{"epoch":26108478,"idl":99.88,"recv":0,"send":0.02,"writ":0.15,"used":562,"free":3576.76},{"epoch":26108479,"idl":99.84,"recv":0,"send":0.02,"writ":0.15,"used":561.97,"free":3576.78},{"epoch":26108480,"idl":99.55,"recv":0.01,"send":0.03,"writ":0.56,"used":562.28,"free":3576.49},{"epoch":26108481,"idl":99.78,"recv":0,"send":0.02,"writ":0.37,"used":562.19,"free":3576.58},{"epoch":26108482,"idl":99.84,"recv":0,"send":0.02,"writ":0.14,"used":561.48,"free":3577.29},{"epoch":26108483,"idl":99.86,"recv":0.01,"send":0.03,"writ":0.18,"used":561.51,"free":3577.25},{"epoch":26108484,"idl":99.79,"recv":0,"send":0.02,"writ":0.19,"used":561.56,"free":3577.2},{"epoch":26108485,"idl":99.61,"recv":0,"send":0.02,"writ":0.32,"used":560.99,"free":3577.78},{"epoch":26108486,"idl":99.54,"recv":0.19,"send":0.11,"writ":0.65,"used":562.63,"free":3576.06},{"epoch":26108487,"idl":99.83,"recv":0.01,"send":0.05,"writ":0.35,"used":562.31,"free":3576.28},{"epoch":26108488,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.16,"used":562.29,"free":3576.3},{"epoch":26108489,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.16,"used":562.58,"free":3576},{"epoch":26108490,"idl":99.61,"recv":0,"send":0.02,"writ":0.29,"used":562.81,"free":3575.79},{"epoch":26108491,"idl":99.68,"recv":0.01,"send":0.03,"writ":0.57,"used":564.12,"free":3574.48},{"epoch":26108492,"idl":99.79,"recv":0,"send":0.02,"writ":0.14,"used":562.62,"free":3575.97},{"epoch":26108493,"idl":99.85,"recv":0.01,"send":0.03,"writ":0.15,"used":562.57,"free":3576.02},{"epoch":26108494,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.14,"used":562.55,"free":3576.03},{"epoch":26108495,"idl":99.7,"recv":0.01,"send":0.03,"writ":0.31,"used":563.08,"free":3575.52},{"epoch":26108496,"idl":99.67,"recv":0.15,"send":0.11,"writ":0.74,"used":563.67,"free":3574.85},{"epoch":26108497,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.22,"used":563.44,"free":3575.02},{"epoch":26108498,"idl":99.84,"recv":0,"send":0.02,"writ":0.14,"used":563.38,"free":3575.07},{"epoch":26108499,"idl":99.66,"recv":0,"send":0.02,"writ":0.3,"used":563.42,"free":3575},{"epoch":26108500,"idl":99.74,"recv":0.04,"send":1.05,"writ":0.38,"used":563.89,"free":3574.54},{"epoch":26108501,"idl":99.74,"recv":0.1,"send":0.09,"writ":0.59,"used":564.03,"free":3574.34},{"epoch":26108502,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.33,"used":563.45,"free":3574.88},{"epoch":26108503,"idl":99.8,"recv":0.03,"send":0.86,"writ":0.16,"used":562.75,"free":3575.57},{"epoch":26108504,"idl":99.81,"recv":0.07,"send":2.54,"writ":0.27,"used":562.77,"free":3575.53},{"epoch":26108505,"idl":99.72,"recv":0.01,"send":0.03,"writ":0.36,"used":563,"free":3575.3},{"epoch":26108506,"idl":99.63,"recv":0.09,"send":3.27,"writ":0.63,"used":563.48,"free":3574.81},{"epoch":26108507,"idl":99.81,"recv":0.03,"send":1.21,"writ":0.34,"used":563.19,"free":3575.05},{"epoch":26108508,"idl":99.79,"recv":0.04,"send":1.24,"writ":0.2,"used":563.27,"free":3574.95},{"epoch":26108509,"idl":99.76,"recv":0.07,"send":2.44,"writ":0.27,"used":563.42,"free":3574.77},{"epoch":26108510,"idl":99.59,"recv":0.05,"send":1.81,"writ":0.39,"used":563.19,"free":3575},{"epoch":26108511,"idl":99.64,"recv":0.07,"send":2.62,"writ":0.66,"used":563.59,"free":3574.55},{"epoch":26108512,"idl":99.83,"recv":0.06,"send":2.13,"writ":0.28,"used":563.56,"free":3574.58},{"epoch":26108513,"idl":99.75,"recv":0.14,"send":5.08,"writ":0.29,"used":563.46,"free":3574.63},{"epoch":26108514,"idl":99.85,"recv":0,"send":0.02,"writ":0.28,"used":562.78,"free":3575.26},{"epoch":26108515,"idl":99.68,"recv":0.02,"send":0.71,"writ":0.32,"used":563.26,"free":3574.8},{"epoch":26108516,"idl":99.67,"recv":0,"send":0.02,"writ":0.59,"used":563.95,"free":3574.1},{"epoch":26108517,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.21,"used":563.27,"free":3574.78},{"epoch":26108518,"idl":99.84,"recv":0,"send":0.02,"writ":0.14,"used":563.21,"free":3574.83},{"epoch":26108519,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.14,"used":563.29,"free":3574.74},{"epoch":26108520,"idl":99.67,"recv":0,"send":0.02,"writ":0.33,"used":563.51,"free":3574.54},{"epoch":26108521,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.16,"used":563.51,"free":3574.53},{"epoch":26108522,"idl":99.68,"recv":0,"send":0.02,"writ":0.56,"used":564.11,"free":3573.92},{"epoch":26108523,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.17,"used":563.71,"free":3574.31},{"epoch":26108524,"idl":99.71,"recv":0.01,"send":0.03,"writ":0.14,"used":563.75,"free":3574.27},{"epoch":26108525,"idl":99.75,"recv":0,"send":0.02,"writ":0.33,"used":563.01,"free":3575.03},{"epoch":26108526,"idl":99.68,"recv":0.01,"send":0.02,"writ":0.14,"used":562.73,"free":3575.3},{"epoch":26108527,"idl":99.68,"recv":0,"send":0.02,"writ":0.57,"used":563.34,"free":3574.69},{"epoch":26108528,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.15,"used":562.97,"free":3575.05},{"epoch":26108529,"idl":99.6,"recv":0.01,"send":0.02,"writ":0.28,"used":563.24,"free":3574.76},{"epoch":26108530,"idl":99.75,"recv":0.01,"send":0.03,"writ":0.31,"used":563.49,"free":3574.53},{"epoch":26108531,"idl":99.86,"recv":0.01,"send":0.03,"writ":0.16,"used":563.47,"free":3574.53},{"epoch":26108532,"idl":99.75,"recv":0,"send":0.02,"writ":0.62,"used":563.51,"free":3574.49},{"epoch":26108533,"idl":99.75,"recv":0,"send":0.02,"writ":0.14,"used":562.96,"free":3575.03},{"epoch":26108534,"idl":99.75,"recv":0,"send":0.02,"writ":0.14,"used":563,"free":3574.98},{"epoch":26108535,"idl":99.67,"recv":0.01,"send":0.02,"writ":0.33,"used":563.47,"free":3574.54},{"epoch":26108536,"idl":99.84,"recv":0,"send":0.02,"writ":0.14,"used":563.11,"free":3574.88},{"epoch":26108537,"idl":99.68,"recv":0.01,"send":0.02,"writ":0.65,"used":563.12,"free":3574.88},{"epoch":26108538,"idl":99.79,"recv":0.02,"send":0.68,"writ":0.2,"used":562.71,"free":3575.27},{"epoch":26108539,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.18,"used":562.12,"free":3575.86},{"epoch":26108540,"idl":99.7,"recv":0,"send":0.02,"writ":0.31,"used":562.46,"free":3575.54},{"epoch":26108541,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.2,"used":562.35,"free":3575.64},{"epoch":26108542,"idl":99.71,"recv":0.01,"send":0.05,"writ":0.61,"used":563.1,"free":3574.88},{"epoch":26108543,"idl":99.88,"recv":0,"send":0.02,"writ":0.15,"used":562.45,"free":3575.52},{"epoch":26108544,"idl":99.88,"recv":0,"send":0.02,"writ":0.15,"used":562.49,"free":3575.48},{"epoch":26108545,"idl":99.75,"recv":0.01,"send":0.02,"writ":0.33,"used":562.97,"free":3575.01},{"epoch":26108546,"idl":99.83,"recv":0.02,"send":0.41,"writ":0.25,"used":562.95,"free":3575.03},{"epoch":26108547,"idl":99.68,"recv":0.01,"send":0.26,"writ":0.45,"used":563.63,"free":3574.34},{"epoch":26108548,"idl":99.83,"recv":0,"send":0.02,"writ":0.29,"used":562.22,"free":3575.74},{"epoch":26108549,"idl":99.85,"recv":0,"send":0.02,"writ":0.16,"used":562.21,"free":3575.76},{"epoch":26108550,"idl":99.72,"recv":0.01,"send":0.03,"writ":0.34,"used":562.23,"free":3575.75},{"epoch":26108551,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.14,"used":562.2,"free":3575.78},{"epoch":26108552,"idl":99.68,"recv":0,"send":0.02,"writ":0.42,"used":562.66,"free":3575.31},{"epoch":26108553,"idl":99.85,"recv":0,"send":0.02,"writ":0.29,"used":562.69,"free":3575.27},{"epoch":26108554,"idl":99.87,"recv":0,"send":0.02,"writ":0.14,"used":562.69,"free":3575.26},{"epoch":26108555,"idl":99.67,"recv":0.01,"send":0.02,"writ":0.32,"used":562,"free":3575.97},{"epoch":26108556,"idl":99.83,"recv":0,"send":0.02,"writ":0.17,"used":561.95,"free":3576.02},{"epoch":26108557,"idl":99.71,"recv":0,"send":0.02,"writ":0.4,"used":562.41,"free":3575.56},{"epoch":26108558,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.3,"used":562.65,"free":3575.31},{"epoch":26108559,"idl":99.69,"recv":0.01,"send":0.02,"writ":0.29,"used":562.37,"free":3575.56},{"epoch":26108560,"idl":99.73,"recv":0,"send":0.02,"writ":0.35,"used":561.93,"free":3576.01},{"epoch":26108561,"idl":99.86,"recv":0,"send":0.02,"writ":0.16,"used":561.95,"free":3575.99},{"epoch":26108562,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.14,"used":561.95,"free":3575.98},{"epoch":26108563,"idl":99.68,"recv":0.01,"send":0.02,"writ":0.55,"used":562.97,"free":3574.96},{"epoch":26108564,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.14,"used":562.71,"free":3575.23},{"epoch":26108565,"idl":99.71,"recv":0,"send":0.02,"writ":0.33,"used":562.69,"free":3575.27},{"epoch":26108566,"idl":99.79,"recv":0,"send":0.02,"writ":0.14,"used":562.68,"free":3575.27},{"epoch":26108567,"idl":99.81,"recv":0.01,"send":0.03,"writ":0.15,"used":562.71,"free":3575.24},{"epoch":26108568,"idl":99.68,"recv":0.01,"send":0.02,"writ":0.56,"used":563.74,"free":3574.2},{"epoch":26108569,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.15,"used":563.41,"free":3574.53},{"epoch":26108570,"idl":99.71,"recv":0.01,"send":0.03,"writ":0.32,"used":562.23,"free":3575.72},{"epoch":26108571,"idl":99.89,"recv":0.01,"send":0.03,"writ":0.17,"used":562.16,"free":3575.8},{"epoch":26108572,"idl":99.8,"recv":0.05,"send":0.18,"writ":0.16,"used":561.84,"free":3576.11},{"epoch":26108573,"idl":99.67,"recv":0.01,"send":0.02,"writ":0.65,"used":559.45,"free":3578.54},{"epoch":26108574,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.15,"used":559.21,"free":3578.78},{"epoch":26108575,"idl":99.65,"recv":0.03,"send":0.07,"writ":0.38,"used":559.22,"free":3578.78},{"epoch":26108576,"idl":99.84,"recv":0,"send":0.02,"writ":0.15,"used":559.21,"free":3578.78},{"epoch":26108577,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.15,"used":559.17,"free":3578.82},{"epoch":26108578,"idl":99.72,"recv":0.01,"send":0.02,"writ":0.41,"used":559.79,"free":3578.19},{"epoch":26108579,"idl":99.89,"recv":0,"send":0.02,"writ":0.3,"used":559.69,"free":3578.28},{"epoch":26108580,"idl":99.61,"recv":0,"send":0.02,"writ":0.32,"used":559.92,"free":3578.07},{"epoch":26108581,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.16,"used":559.96,"free":3578.03},{"epoch":26108582,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.14,"used":559.58,"free":3578.4},{"epoch":26108583,"idl":99.73,"recv":0,"send":0.02,"writ":0.5,"used":559.16,"free":3578.82},{"epoch":26108584,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.21,"used":558.7,"free":3579.27},{"epoch":26108585,"idl":99.67,"recv":0.01,"send":0.02,"writ":0.34,"used":559.46,"free":3578.54},{"epoch":26108586,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.13,"used":559.42,"free":3578.57},{"epoch":26108587,"idl":99.87,"recv":0,"send":0.02,"writ":0.16,"used":559.44,"free":3578.55},{"epoch":26108588,"idl":99.73,"recv":0.01,"send":0.03,"writ":0.4,"used":560.01,"free":3577.97},{"epoch":26108589,"idl":99.69,"recv":0,"send":0.02,"writ":0.48,"used":559.41,"free":3578.54},{"epoch":26108590,"idl":99.63,"recv":0.11,"send":0.29,"writ":0.48,"used":560.41,"free":3577.46},{"epoch":26108591,"idl":99.86,"recv":0.02,"send":0.05,"writ":0.3,"used":560.71,"free":3577.07},{"epoch":26108592,"idl":99.87,"recv":0.03,"send":0.05,"writ":0.25,"used":560.72,"free":3577.06},{"epoch":26108593,"idl":83.26,"recv":0.01,"send":0.05,"writ":7,"used":619.52,"free":3517.49},{"epoch":26108594,"idl":99.86,"recv":0,"send":0.02,"writ":0.41,"used":505.08,"free":3632},{"epoch":26108595,"idl":99.68,"recv":0,"send":0.02,"writ":0.34,"used":504.81,"free":3632.3},{"epoch":26108596,"idl":99.82,"recv":0,"send":0.02,"writ":0.14,"used":504.86,"free":3632.24},{"epoch":26108597,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.2,"used":504.82,"free":3632.28},{"epoch":26108598,"idl":99.73,"recv":0,"send":0.02,"writ":0.32,"used":505.18,"free":3631.94},{"epoch":26108599,"idl":99.88,"recv":0,"send":0.02,"writ":0.38,"used":505.05,"free":3632.08},{"epoch":26108600,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.31,"used":504.81,"free":3632.36},{"epoch":26108601,"idl":99.83,"recv":0,"send":0.02,"writ":0.18,"used":504.75,"free":3632.41},{"epoch":26108602,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.16,"used":504.6,"free":3632.56},{"epoch":26108603,"idl":99.87,"recv":0,"send":0.02,"writ":0.15,"used":504.58,"free":3632.58},{"epoch":26108604,"idl":99.73,"recv":0,"send":0.02,"writ":0.58,"used":505.15,"free":3632},{"epoch":26108605,"idl":99.72,"recv":0.01,"send":0.03,"writ":0.36,"used":504.33,"free":3632.84},{"epoch":26108606,"idl":99.9,"recv":0.01,"send":0.03,"writ":0.16,"used":504.36,"free":3632.82},{"epoch":26108607,"idl":99.9,"recv":0,"send":0.02,"writ":0.14,"used":504.35,"free":3632.83},{"epoch":26108608,"idl":99.88,"recv":0,"send":0.02,"writ":0.15,"used":504.11,"free":3633.06},{"epoch":26108609,"idl":99.74,"recv":0,"send":0.02,"writ":0.54,"used":504.65,"free":3632.51},{"epoch":26108610,"idl":99.74,"recv":0.01,"send":0.02,"writ":0.32,"used":504.56,"free":3632.62},{"epoch":26108611,"idl":99.9,"recv":0.01,"send":0.02,"writ":0.19,"used":504.58,"free":3632.59},{"epoch":26108612,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":504.56,"free":3632.61},{"epoch":26108613,"idl":99.81,"recv":0,"send":0.02,"writ":0.14,"used":504.57,"free":3632.59},{"epoch":26108614,"idl":99.72,"recv":0,"send":0.02,"writ":0.54,"used":505.37,"free":3631.78},{"epoch":26108615,"idl":99.76,"recv":0.01,"send":0.02,"writ":0.32,"used":505.05,"free":3632.12},{"epoch":26108616,"idl":99.86,"recv":0.01,"send":0.03,"writ":0.16,"used":505.1,"free":3632.07},{"epoch":26108617,"idl":99.84,"recv":0,"send":0.02,"writ":0.14,"used":505.07,"free":3632.09},{"epoch":26108618,"idl":99.85,"recv":0,"send":0.02,"writ":0.16,"used":505.06,"free":3632.1},{"epoch":26108619,"idl":99.57,"recv":0,"send":0.02,"writ":0.63,"used":505.47,"free":3631.67},{"epoch":26108620,"idl":99.66,"recv":0,"send":0.02,"writ":0.37,"used":504.79,"free":3632.36},{"epoch":26108621,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.15,"used":504.82,"free":3632.32},{"epoch":26108622,"idl":99.86,"recv":0,"send":0.02,"writ":0.16,"used":504.75,"free":3632.39},{"epoch":26108623,"idl":99.8,"recv":0,"send":0.02,"writ":0.14,"used":504.82,"free":3632.32},{"epoch":26108624,"idl":99.66,"recv":0,"send":0.02,"writ":0.57,"used":504.95,"free":3632.18},{"epoch":26108625,"idl":99.62,"recv":0.01,"send":0.02,"writ":0.33,"used":503.45,"free":3633.7},{"epoch":26108626,"idl":99.88,"recv":0,"send":0.02,"writ":0.13,"used":503.35,"free":3633.8},{"epoch":26108627,"idl":99.85,"recv":0,"send":0.02,"writ":0.16,"used":503.3,"free":3633.84},{"epoch":26108628,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.14,"used":503.36,"free":3633.78},{"epoch":26108629,"idl":99.69,"recv":0,"send":0.02,"writ":0.44,"used":503.86,"free":3633.28},{"epoch":26108630,"idl":99.73,"recv":0,"send":0.02,"writ":0.46,"used":504.35,"free":3632.79},{"epoch":26108631,"idl":99.87,"recv":0.01,"send":0.03,"writ":0.18,"used":504.31,"free":3632.83},{"epoch":26108632,"idl":99.87,"recv":0,"send":0.02,"writ":0.14,"used":504.29,"free":3632.84},{"epoch":26108633,"idl":99.81,"recv":0,"send":0.02,"writ":0.14,"used":504.31,"free":3632.83},{"epoch":26108634,"idl":99.68,"recv":0.01,"send":0.03,"writ":0.36,"used":504.64,"free":3632.49},{"epoch":26108635,"idl":99.74,"recv":0,"send":0.02,"writ":0.52,"used":505.32,"free":3631.83},{"epoch":26108636,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.18,"used":505.3,"free":3631.84},{"epoch":26108637,"idl":99.83,"recv":0,"send":0.02,"writ":0.15,"used":505.3,"free":3631.83},{"epoch":26108638,"idl":99.83,"recv":0,"send":0.02,"writ":0.15,"used":505.31,"free":3631.83},{"epoch":26108639,"idl":99.86,"recv":0,"send":0.02,"writ":0.16,"used":505.28,"free":3631.85},{"epoch":26108640,"idl":99.5,"recv":0,"send":0.02,"writ":0.75,"used":505.74,"free":3631.4},{"epoch":26108641,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.16,"used":505.02,"free":3632.12},{"epoch":26108642,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.15,"used":505.06,"free":3632.07},{"epoch":26108643,"idl":99.86,"recv":0,"send":0.02,"writ":0.16,"used":505.03,"free":3632.1},{"epoch":26108644,"idl":99.8,"recv":0,"send":0.02,"writ":0.14,"used":505.03,"free":3632.09},{"epoch":26108645,"idl":99.59,"recv":0,"send":0.02,"writ":0.79,"used":505.75,"free":3631.39},{"epoch":26108646,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.19,"used":505.29,"free":3631.84},{"epoch":26108647,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.2,"used":505.26,"free":3631.87},{"epoch":26108648,"idl":99.81,"recv":0,"send":0.02,"writ":0.2,"used":505.23,"free":3631.89},{"epoch":26108649,"idl":99.58,"recv":0,"send":0.02,"writ":0.32,"used":505.32,"free":3631.77},{"epoch":26108650,"idl":99.52,"recv":0.01,"send":0.02,"writ":0.73,"used":505.26,"free":3631.85},{"epoch":26108651,"idl":99.78,"recv":0,"send":0.02,"writ":0.17,"used":504.83,"free":3632.28},{"epoch":26108652,"idl":99.83,"recv":0,"send":0.02,"writ":0.14,"used":504.79,"free":3632.32},{"epoch":26108653,"idl":99.66,"recv":0,"send":0.02,"writ":0.17,"used":504.8,"free":3632.3},{"epoch":26108654,"idl":99.69,"recv":0,"send":0.02,"writ":0.15,"used":504.76,"free":3632.35},{"epoch":26108655,"idl":99.33,"recv":0,"send":0.02,"writ":0.73,"used":505.37,"free":3631.76},{"epoch":26108656,"idl":99.75,"recv":0,"send":0.02,"writ":0.16,"used":504.55,"free":3632.57},{"epoch":26108657,"idl":99.77,"recv":0.01,"send":0.02,"writ":0.19,"used":504.54,"free":3632.58},{"epoch":26108658,"idl":99.8,"recv":0,"send":0.02,"writ":0.14,"used":504.54,"free":3632.59},{"epoch":26108659,"idl":99.76,"recv":0,"send":0.02,"writ":0.14,"used":504.52,"free":3632.6},{"epoch":26108660,"idl":99.6,"recv":0,"send":0.02,"writ":0.66,"used":505.37,"free":3631.77},{"epoch":26108661,"idl":99.75,"recv":0,"send":0.02,"writ":0.26,"used":504.91,"free":3632.23},{"epoch":26108662,"idl":99.78,"recv":0,"send":0.02,"writ":0.14,"used":504.79,"free":3632.34},{"epoch":26108663,"idl":99.77,"recv":0,"send":0.02,"writ":0.15,"used":504.78,"free":3632.34},{"epoch":26108664,"idl":99.73,"recv":0,"send":0.02,"writ":0.16,"used":504.78,"free":3632.34},{"epoch":26108665,"idl":99.5,"recv":0,"send":0.02,"writ":0.71,"used":505.24,"free":3631.9},{"epoch":26108666,"idl":99.77,"recv":0,"send":0.02,"writ":0.15,"used":504.55,"free":3632.59},{"epoch":26108667,"idl":99.76,"recv":0,"send":0.02,"writ":0.16,"used":504.54,"free":3632.6},{"epoch":26108668,"idl":99.8,"recv":0,"send":0.02,"writ":0.16,"used":504.56,"free":3632.57},{"epoch":26108669,"idl":99.8,"recv":0,"send":0.02,"writ":0.18,"used":504.49,"free":3632.63},{"epoch":26108670,"idl":99.58,"recv":0.01,"send":0.02,"writ":0.45,"used":504.94,"free":3632.2},{"epoch":26108671,"idl":99.77,"recv":0,"send":0.02,"writ":0.41,"used":505.26,"free":3631.87},{"epoch":26108672,"idl":99.77,"recv":0,"send":0.01,"writ":0.14,"used":505.3,"free":3631.83},{"epoch":26108673,"idl":99.77,"recv":0,"send":0.02,"writ":0.14,"used":505.22,"free":3631.9},{"epoch":26108674,"idl":99.78,"recv":0,"send":0.01,"writ":0.14,"used":505.25,"free":3631.87},{"epoch":26108675,"idl":99.4,"recv":0,"send":0.02,"writ":0.32,"used":505.05,"free":3632.09},{"epoch":26108676,"idl":99.62,"recv":0,"send":0.01,"writ":0.62,"used":505.58,"free":3631.56},{"epoch":26108677,"idl":99.81,"recv":0,"send":0.02,"writ":0.15,"used":505.32,"free":3631.81},{"epoch":26108678,"idl":99.76,"recv":0,"send":0.02,"writ":0.16,"used":505.23,"free":3631.9},{"epoch":26108679,"idl":99.71,"recv":0,"send":0.02,"writ":0.29,"used":505.56,"free":3631.54},{"epoch":26108680,"idl":99.68,"recv":0,"send":0.02,"writ":0.32,"used":505.49,"free":3631.63},{"epoch":26108681,"idl":99.68,"recv":0,"send":0.01,"writ":0.57,"used":505.72,"free":3631.39},{"epoch":26108682,"idl":99.8,"recv":0,"send":0.01,"writ":0.16,"used":505.24,"free":3631.86},{"epoch":26108683,"idl":99.79,"recv":0,"send":0.01,"writ":0.14,"used":505.26,"free":3631.84},{"epoch":26108684,"idl":99.78,"recv":0,"send":0.02,"writ":0.15,"used":505.26,"free":3631.86},{"epoch":26108685,"idl":99.73,"recv":0,"send":0.02,"writ":0.32,"used":505.23,"free":3631.91},{"epoch":26108686,"idl":99.68,"recv":0,"send":0.02,"writ":0.57,"used":505.64,"free":3631.49},{"epoch":26108687,"idl":99.76,"recv":0,"send":0.02,"writ":0.14,"used":505.18,"free":3631.94},{"epoch":26108688,"idl":99.78,"recv":0,"send":0.02,"writ":0.14,"used":505.27,"free":3631.84},{"epoch":26108689,"idl":99.81,"recv":0,"send":0.02,"writ":0.17,"used":505.19,"free":3631.92},{"epoch":26108690,"idl":99.71,"recv":0,"send":0.01,"writ":0.32,"used":505.07,"free":3632.06},{"epoch":26108691,"idl":99.65,"recv":0,"send":0.02,"writ":0.55,"used":504.73,"free":3632.39},{"epoch":26108692,"idl":99.81,"recv":0,"send":0.02,"writ":0.16,"used":504.25,"free":3632.86},{"epoch":26108693,"idl":99.81,"recv":0,"send":0.01,"writ":0.16,"used":504.29,"free":3632.82},{"epoch":26108694,"idl":99.81,"recv":0,"send":0.01,"writ":0.16,"used":504.2,"free":3632.9},{"epoch":26108695,"idl":99.67,"recv":0,"send":0.01,"writ":0.41,"used":504.55,"free":3632.57},{"epoch":26108696,"idl":99.66,"recv":0,"send":0.01,"writ":0.57,"used":505.15,"free":3631.97},{"epoch":26108697,"idl":99.83,"recv":0,"send":0.01,"writ":0.14,"used":504.45,"free":3632.65},{"epoch":26108698,"idl":99.81,"recv":0,"send":0.02,"writ":0.14,"used":504.53,"free":3632.56},{"epoch":26108699,"idl":99.78,"recv":0,"send":0.04,"writ":0.17,"used":504.46,"free":3632.63},{"epoch":26108700,"idl":99.51,"recv":0,"send":0.02,"writ":0.34,"used":504.77,"free":3632.34},{"epoch":26108701,"idl":99.65,"recv":0.01,"send":0.02,"writ":0.57,"used":505.06,"free":3632.05},{"epoch":26108702,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.14,"used":504.76,"free":3632.34},{"epoch":26108703,"idl":99.8,"recv":0,"send":0.02,"writ":0.15,"used":504.7,"free":3632.39},{"epoch":26108704,"idl":99.73,"recv":0,"send":0.02,"writ":0.14,"used":504.74,"free":3632.35},{"epoch":26108705,"idl":99.7,"recv":0,"send":0.01,"writ":0.37,"used":504.2,"free":3632.91},{"epoch":26108706,"idl":99.65,"recv":0.01,"send":0.02,"writ":0.43,"used":504.67,"free":3632.43},{"epoch":26108707,"idl":99.81,"recv":0,"send":0.01,"writ":0.29,"used":504.44,"free":3632.66},{"epoch":26108708,"idl":99.82,"recv":0,"send":0.02,"writ":0.14,"used":504.49,"free":3632.6},{"epoch":26108709,"idl":99.62,"recv":0,"send":0.02,"writ":0.29,"used":504.95,"free":3632.12},{"epoch":26108710,"idl":99.54,"recv":0.01,"send":0.02,"writ":0.34,"used":503.12,"free":3633.97},{"epoch":26108711,"idl":99.82,"recv":0,"send":0.02,"writ":0.16,"used":503,"free":3634.08},{"epoch":26108712,"idl":99.69,"recv":0,"send":0.02,"writ":0.55,"used":505.12,"free":3631.96},{"epoch":26108713,"idl":99.79,"recv":0,"send":0.01,"writ":0.19,"used":504.72,"free":3632.36},{"epoch":26108714,"idl":99.77,"recv":0,"send":0.02,"writ":0.22,"used":504.72,"free":3632.36},{"epoch":26108715,"idl":99.66,"recv":0,"send":0.01,"writ":0.38,"used":504.52,"free":3632.58},{"epoch":26108716,"idl":99.78,"recv":0,"send":0.01,"writ":0.18,"used":504.43,"free":3632.67},{"epoch":26108717,"idl":99.61,"recv":0.01,"send":0.02,"writ":0.67,"used":504.72,"free":3632.38},{"epoch":26108718,"idl":99.77,"recv":0,"send":0.02,"writ":0.15,"used":503.94,"free":3633.16},{"epoch":26108719,"idl":99.82,"recv":0,"send":0.01,"writ":0.18,"used":504.03,"free":3633.06},{"epoch":26108720,"idl":99.71,"recv":0,"send":0.02,"writ":0.32,"used":504.45,"free":3632.66},{"epoch":26108721,"idl":99.81,"recv":0,"send":0.02,"writ":0.18,"used":504.63,"free":3632.47},{"epoch":26108722,"idl":99.66,"recv":0,"send":0.01,"writ":0.56,"used":504.93,"free":3632.17},{"epoch":26108723,"idl":99.78,"recv":0,"send":0.02,"writ":0.14,"used":504.46,"free":3632.64},{"epoch":26108724,"idl":99.82,"recv":0,"send":0.01,"writ":0.17,"used":504.52,"free":3632.57},{"epoch":26108725,"idl":99.73,"recv":0,"send":0.02,"writ":0.32,"used":504.7,"free":3632.4},{"epoch":26108726,"idl":99.83,"recv":0,"send":0.01,"writ":0.17,"used":504.79,"free":3632.31},{"epoch":26108727,"idl":99.65,"recv":0,"send":0.02,"writ":0.54,"used":504.74,"free":3632.35},{"epoch":26108728,"idl":99.78,"recv":0,"send":0.02,"writ":0.16,"used":504.26,"free":3632.84},{"epoch":26108729,"idl":99.81,"recv":0,"send":0.02,"writ":0.15,"used":504.22,"free":3632.87},{"epoch":26108730,"idl":99.68,"recv":0,"send":0.01,"writ":0.33,"used":503.74,"free":3633.37},{"epoch":26108731,"idl":99.8,"recv":0,"send":0.02,"writ":0.14,"used":503.78,"free":3633.32},{"epoch":26108732,"idl":99.66,"recv":0,"send":0.01,"writ":0.52,"used":504.63,"free":3632.46},{"epoch":26108733,"idl":99.8,"recv":0,"send":0.01,"writ":0.18,"used":505.02,"free":3632.06},{"epoch":26108734,"idl":99.82,"recv":0,"send":0.01,"writ":0.15,"used":504.95,"free":3632.14},{"epoch":26108735,"idl":99.64,"recv":0,"send":0.02,"writ":0.33,"used":503.52,"free":3633.59},{"epoch":26108736,"idl":99.79,"recv":0,"send":0.02,"writ":0.16,"used":503.5,"free":3633.6},{"epoch":26108737,"idl":99.64,"recv":0,"send":0.01,"writ":0.59,"used":504.18,"free":3632.91},{"epoch":26108738,"idl":99.8,"recv":0,"send":0.02,"writ":0.14,"used":504.75,"free":3632.34},{"epoch":26108739,"idl":99.63,"recv":0,"send":0.02,"writ":0.32,"used":504.67,"free":3632.39},{"epoch":26108740,"idl":99.69,"recv":0,"send":0.02,"writ":0.33,"used":504.79,"free":3632.29},{"epoch":26108741,"idl":99.81,"recv":0,"send":0.02,"writ":0.16,"used":504.7,"free":3632.36},{"epoch":26108742,"idl":99.66,"recv":0.01,"send":0.02,"writ":0.52,"used":505.15,"free":3631.92},{"epoch":26108743,"idl":99.79,"recv":0,"send":0.02,"writ":0.2,"used":504.94,"free":3632.12},{"epoch":26108744,"idl":99.81,"recv":0,"send":0.02,"writ":0.15,"used":504.97,"free":3632.08},{"epoch":26108745,"idl":99.66,"recv":0,"send":0.01,"writ":0.34,"used":504.74,"free":3632.33},{"epoch":26108746,"idl":99.79,"recv":0,"send":0.01,"writ":0.16,"used":504.7,"free":3632.37},{"epoch":26108747,"idl":99.81,"recv":0,"send":0.01,"writ":0.14,"used":504.76,"free":3632.31},{"epoch":26108748,"idl":99.6,"recv":0,"send":0.02,"writ":0.56,"used":504.68,"free":3632.37},{"epoch":26108749,"idl":99.78,"recv":0,"send":0.02,"writ":0.16,"used":504.02,"free":3633.04},{"epoch":26108750,"idl":99.67,"recv":0,"send":0.02,"writ":0.32,"used":503.25,"free":3633.82},{"epoch":26108751,"idl":99.77,"recv":0,"send":0.01,"writ":0.14,"used":503.25,"free":3633.82},{"epoch":26108752,"idl":99.82,"recv":0,"send":0.02,"writ":0.15,"used":503.23,"free":3633.84},{"epoch":26108753,"idl":99.67,"recv":0,"send":0.01,"writ":0.55,"used":504.76,"free":3632.3},{"epoch":26108754,"idl":99.42,"recv":0,"send":0.01,"writ":0.3,"used":504.68,"free":3632.37},{"epoch":26108755,"idl":99.63,"recv":0,"send":0.02,"writ":0.34,"used":504.91,"free":3632.16},{"epoch":26108756,"idl":99.71,"recv":0,"send":0.02,"writ":0.16,"used":505.04,"free":3632.03},{"epoch":26108757,"idl":99.78,"recv":0,"send":0.02,"writ":0.14,"used":504.95,"free":3632.11},{"epoch":26108758,"idl":99.61,"recv":0,"send":0.01,"writ":0.55,"used":505.65,"free":3631.41},{"epoch":26108759,"idl":99.8,"recv":0,"send":0.01,"writ":0.16,"used":504.97,"free":3632.08},{"epoch":26108760,"idl":99.56,"recv":0,"send":0.01,"writ":0.32,"used":505.19,"free":3631.9},{"epoch":26108761,"idl":99.75,"recv":0,"send":0.02,"writ":0.13,"used":505.26,"free":3631.82},{"epoch":26108762,"idl":99.73,"recv":0,"send":0.02,"writ":0.16,"used":505.18,"free":3631.9},{"epoch":26108763,"idl":94.87,"recv":0.33,"send":0.03,"writ":80.23,"used":520.31,"free":3617.09},{"epoch":26108764,"idl":99.63,"recv":0,"send":0.02,"writ":185.11,"used":507.44,"free":3629.39},{"epoch":26108765,"idl":99.62,"recv":0,"send":0.01,"writ":0.32,"used":507.28,"free":3629.56},{"epoch":26108766,"idl":99.72,"recv":0.01,"send":0.02,"writ":0.14,"used":507.19,"free":3629.66},{"epoch":26108767,"idl":99.56,"recv":0,"send":0.01,"writ":0.16,"used":507.27,"free":3629.57},{"epoch":26108768,"idl":99.63,"recv":0,"send":0.01,"writ":0.6,"used":506.55,"free":3630.3},{"epoch":26108769,"idl":99.68,"recv":0,"send":0.02,"writ":0.28,"used":504.77,"free":3632.08},{"epoch":26108770,"idl":99.71,"recv":0.01,"send":0.02,"writ":0.34,"used":505.33,"free":3631.53},{"epoch":26108771,"idl":99.75,"recv":0,"send":0.01,"writ":0.16,"used":505.25,"free":3631.61},{"epoch":26108772,"idl":99.79,"recv":0,"send":0.02,"writ":0.14,"used":505.34,"free":3631.51},{"epoch":26108773,"idl":99.57,"recv":0.08,"send":2.97,"writ":0.63,"used":505.55,"free":3631.29},{"epoch":26108774,"idl":99.72,"recv":0.03,"send":1.1,"writ":0.37,"used":505.06,"free":3631.78},{"epoch":26108775,"idl":99.64,"recv":0,"send":0.02,"writ":0.31,"used":505.24,"free":3631.62},{"epoch":26108776,"idl":99.78,"recv":0,"send":0.01,"writ":0.16,"used":505.28,"free":3631.58},{"epoch":26108777,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.18,"used":505.05,"free":3631.8},{"epoch":26108778,"idl":99.61,"recv":0.02,"send":0.94,"writ":0.6,"used":505.7,"free":3631.14},{"epoch":26108779,"idl":99.76,"recv":0,"send":0.02,"writ":0.28,"used":505.3,"free":3631.54},{"epoch":26108780,"idl":99.66,"recv":0,"send":0.01,"writ":0.31,"used":505,"free":3631.86},{"epoch":26108781,"idl":99.77,"recv":0,"send":0.01,"writ":0.18,"used":504.85,"free":3632.01},{"epoch":26108782,"idl":99.76,"recv":0,"send":0.02,"writ":0.18,"used":504.51,"free":3632.34},{"epoch":26108783,"idl":99.75,"recv":0,"send":0.01,"writ":0.15,"used":504.53,"free":3632.32},{"epoch":26108784,"idl":99.63,"recv":0,"send":0.01,"writ":0.58,"used":505.26,"free":3631.57},{"epoch":26108785,"idl":99.7,"recv":0,"send":0.01,"writ":0.33,"used":505.01,"free":3631.85},{"epoch":26108786,"idl":99.8,"recv":0,"send":0.02,"writ":0.16,"used":505.02,"free":3631.83},{"epoch":26108787,"idl":99.77,"recv":0,"send":0.02,"writ":0.14,"used":505.01,"free":3631.84},{"epoch":26108788,"idl":99.8,"recv":0,"send":0.02,"writ":0.16,"used":504.99,"free":3631.86},{"epoch":26108789,"idl":99.63,"recv":0,"send":0.02,"writ":0.54,"used":505.36,"free":3631.48},{"epoch":26108790,"idl":99.64,"recv":0,"send":0.01,"writ":0.33,"used":505.23,"free":3631.63},{"epoch":26108791,"idl":99.78,"recv":0,"send":0.02,"writ":0.14,"used":505.29,"free":3631.57},{"epoch":26108792,"idl":99.76,"recv":0,"send":0.02,"writ":0.16,"used":505.23,"free":3631.62},{"epoch":26108793,"idl":99.79,"recv":0,"send":0.02,"writ":0.14,"used":505.3,"free":3631.54},{"epoch":26108794,"idl":99.64,"recv":0,"send":0.02,"writ":0.58,"used":505,"free":3631.84},{"epoch":26108795,"idl":99.51,"recv":0,"send":0.02,"writ":0.34,"used":504.11,"free":3632.75},{"epoch":26108796,"idl":99.77,"recv":0,"send":0.01,"writ":0.16,"used":504.01,"free":3632.85},{"epoch":26108797,"idl":99.8,"recv":0,"send":0.01,"writ":0.14,"used":504.04,"free":3632.8},{"epoch":26108798,"idl":99.79,"recv":0,"send":0.01,"writ":0.16,"used":504.04,"free":3632.8},{"epoch":26108799,"idl":99.47,"recv":0,"send":0.02,"writ":0.7,"used":505.02,"free":3631.8},{"epoch":26108800,"idl":99.68,"recv":0,"send":0.02,"writ":0.37,"used":504.81,"free":3632.02},{"epoch":26108801,"idl":99.77,"recv":0,"send":0.02,"writ":0.14,"used":504.72,"free":3632.11},{"epoch":26108802,"idl":99.78,"recv":0,"send":0.02,"writ":0.14,"used":504.81,"free":3632.02},{"epoch":26108803,"idl":99.79,"recv":0.02,"send":0.16,"writ":0.18,"used":504.74,"free":3632.08},{"epoch":26108804,"idl":99.64,"recv":0,"send":0.01,"writ":0.61,"used":505.3,"free":3631.5},{"epoch":26108805,"idl":99.68,"recv":0.01,"send":0.02,"writ":0.32,"used":505.27,"free":3631.55},{"epoch":26108806,"idl":99.76,"recv":0,"send":0.02,"writ":0.16,"used":505.2,"free":3631.62},{"epoch":26108807,"idl":99.78,"recv":0.01,"send":0.04,"writ":0.18,"used":505.27,"free":3631.55},{"epoch":26108808,"idl":99.76,"recv":0,"send":0.02,"writ":0.16,"used":505.21,"free":3631.6},{"epoch":26108809,"idl":99.63,"recv":0,"send":0.02,"writ":0.55,"used":505.56,"free":3631.24},{"epoch":26108810,"idl":99.61,"recv":0,"send":0.02,"writ":0.32,"used":504.97,"free":3631.85},{"epoch":26108811,"idl":99.83,"recv":0,"send":0.02,"writ":0.15,"used":505.06,"free":3631.76},{"epoch":26108812,"idl":99.88,"recv":0,"send":0.01,"writ":0.19,"used":504.97,"free":3631.84},{"epoch":26108813,"idl":99.87,"recv":0.01,"send":0.03,"writ":0.17,"used":504.98,"free":3631.82},{"epoch":26108814,"idl":99.72,"recv":0.06,"send":3.98,"writ":0.84,"used":505.39,"free":3631.39},{"epoch":26108815,"idl":99.76,"recv":0,"send":0.02,"writ":0.4,"used":504.06,"free":3632.73},{"epoch":26108816,"idl":99.88,"recv":0,"send":0.01,"writ":0.13,"used":503.97,"free":3632.82},{"epoch":26108817,"idl":99.88,"recv":0,"send":0.01,"writ":0.17,"used":504,"free":3632.78},{"epoch":26108818,"idl":99.87,"recv":0,"send":0.02,"writ":0.15,"used":503.98,"free":3632.78},{"epoch":26108819,"idl":99.73,"recv":0,"send":0.02,"writ":0.43,"used":504.73,"free":3632.03},{"epoch":26108820,"idl":99.42,"recv":0,"send":0.01,"writ":0.43,"used":503.76,"free":3633.01},{"epoch":26108821,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.16,"used":503.68,"free":3633.09},{"epoch":26108822,"idl":99.83,"recv":0,"send":0.01,"writ":0.14,"used":503.78,"free":3632.99},{"epoch":26108823,"idl":99.81,"recv":0,"send":0.01,"writ":0.15,"used":503.71,"free":3633.05},{"epoch":26108824,"idl":99.87,"recv":0,"send":0.01,"writ":0.16,"used":503.7,"free":3633.06},{"epoch":26108825,"idl":99.53,"recv":0,"send":0.01,"writ":0.73,"used":505.99,"free":3630.78},{"epoch":26108826,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.14,"used":505.42,"free":3631.34},{"epoch":26108827,"idl":99.83,"recv":0,"send":0.01,"writ":0.15,"used":505.51,"free":3631.25},{"epoch":26108828,"idl":98.77,"recv":0,"send":0.02,"writ":0.14,"used":505.44,"free":3631.32},{"epoch":26108829,"idl":99.64,"recv":0,"send":0.02,"writ":0.29,"used":505.22,"free":3631.52},{"epoch":26108830,"idl":99.53,"recv":0.01,"send":0.02,"writ":0.72,"used":505.4,"free":3631.35},{"epoch":26108831,"idl":99.86,"recv":0,"send":0.01,"writ":0.17,"used":505.19,"free":3631.55},{"epoch":26108832,"idl":99.84,"recv":0,"send":0.01,"writ":0.14,"used":505.23,"free":3631.52},{"epoch":26108833,"idl":99.88,"recv":0,"send":0.02,"writ":0.16,"used":505.15,"free":3631.59},{"epoch":26108834,"idl":99.72,"recv":0,"send":0.01,"writ":0.16,"used":505.25,"free":3631.49},{"epoch":26108835,"idl":99.57,"recv":0,"send":0.01,"writ":0.72,"used":505.78,"free":3630.97},{"epoch":26108836,"idl":99.88,"recv":0,"send":0.02,"writ":0.16,"used":505.45,"free":3631.29},{"epoch":26108837,"idl":99.82,"recv":0,"send":0.02,"writ":0.18,"used":505.69,"free":3631.06},{"epoch":26108838,"idl":99.85,"recv":0,"send":0.02,"writ":0.16,"used":505.65,"free":3631.09},{"epoch":26108839,"idl":99.85,"recv":0,"send":0.02,"writ":0.15,"used":505.7,"free":3631.03},{"epoch":26108840,"idl":99.64,"recv":0,"send":0.02,"writ":0.73,"used":506.26,"free":3630.49},{"epoch":26108841,"idl":99.89,"recv":0,"send":0.02,"writ":0.2,"used":505.55,"free":3631.2},{"epoch":26108842,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":505.17,"free":3631.57},{"epoch":26108843,"idl":99.88,"recv":0,"send":0.02,"writ":0.14,"used":505.25,"free":3631.49},{"epoch":26108844,"idl":99.89,"recv":0.01,"send":0.02,"writ":0.15,"used":505.18,"free":3631.55},{"epoch":26108845,"idl":99.66,"recv":0,"send":0.02,"writ":0.76,"used":505.82,"free":3630.93},{"epoch":26108846,"idl":99.88,"recv":0,"send":0.01,"writ":0.16,"used":504.46,"free":3632.29},{"epoch":26108847,"idl":99.89,"recv":0.01,"send":0.02,"writ":0.14,"used":504.46,"free":3632.28},{"epoch":26108848,"idl":99.87,"recv":0,"send":0.02,"writ":0.16,"used":504.46,"free":3632.28},{"epoch":26108849,"idl":99.88,"recv":0,"send":0.01,"writ":0.14,"used":504.43,"free":3632.3},{"epoch":26108850,"idl":99.6,"recv":0,"send":0.02,"writ":0.6,"used":505.08,"free":3631.66},{"epoch":26108851,"idl":99.86,"recv":0,"send":0.02,"writ":0.29,"used":504.68,"free":3632.06},{"epoch":26108852,"idl":99.83,"recv":0,"send":0.02,"writ":0.18,"used":504.74,"free":3632},{"epoch":26108853,"idl":99.88,"recv":0,"send":0.02,"writ":0.14,"used":504.65,"free":3632.09},{"epoch":26108854,"idl":99.88,"recv":0,"send":0.02,"writ":0.14,"used":504.73,"free":3632.02},{"epoch":26108855,"idl":99.6,"recv":0,"send":0.02,"writ":0.75,"used":504.8,"free":3631.96},{"epoch":26108856,"idl":99.88,"recv":0,"send":0.02,"writ":0.17,"used":504.52,"free":3632.24},{"epoch":26108857,"idl":99.8,"recv":0,"send":0.02,"writ":0.16,"used":504.45,"free":3632.3},{"epoch":26108858,"idl":99.88,"recv":0,"send":0.01,"writ":0.14,"used":504.46,"free":3632.28},{"epoch":26108859,"idl":99.59,"recv":0,"send":0.01,"writ":0.29,"used":504,"free":3632.72},{"epoch":26108860,"idl":99.59,"recv":0,"send":0.02,"writ":0.55,"used":504.36,"free":3632.37},{"epoch":26108861,"idl":99.86,"recv":0,"send":0.01,"writ":0.39,"used":504.74,"free":3632},{"epoch":26108862,"idl":99.82,"recv":0,"send":0.02,"writ":0.18,"used":504.65,"free":3632.07},{"epoch":26108863,"idl":99.88,"recv":0,"send":0.01,"writ":0.16,"used":504.74,"free":3631.98},{"epoch":26108864,"idl":99.87,"recv":0,"send":0.02,"writ":0.16,"used":504.65,"free":3632.07},{"epoch":26108865,"idl":99.65,"recv":0,"send":0.01,"writ":0.32,"used":504.28,"free":3632.46},{"epoch":26108866,"idl":99.75,"recv":0,"send":0.01,"writ":0.6,"used":505.57,"free":3631.17},{"epoch":26108867,"idl":99.86,"recv":0,"send":0.02,"writ":0.17,"used":504.92,"free":3631.81},{"epoch":26108868,"idl":99.9,"recv":0,"send":0.02,"writ":0.16,"used":504.94,"free":3631.78},{"epoch":26108869,"idl":99.87,"recv":0,"send":0.01,"writ":0.17,"used":504.88,"free":3631.84},{"epoch":26108870,"idl":99.8,"recv":0,"send":0.02,"writ":0.38,"used":504.02,"free":3632.72},{"epoch":26108871,"idl":99.76,"recv":0,"send":0.02,"writ":0.58,"used":505.02,"free":3631.71},{"epoch":26108872,"idl":99.88,"recv":0,"send":0.02,"writ":0.16,"used":504.75,"free":3631.97},{"epoch":26108873,"idl":99.89,"recv":0,"send":0.02,"writ":0.17,"used":504.66,"free":3632.06},{"epoch":26108874,"idl":99.87,"recv":0,"send":0.02,"writ":0.17,"used":504.74,"free":3631.98},{"epoch":26108875,"idl":99.75,"recv":0,"send":0.02,"writ":0.36,"used":504.68,"free":3632.05},{"epoch":26108876,"idl":99.7,"recv":0,"send":0.02,"writ":0.48,"used":504.96,"free":3631.77},{"epoch":26108877,"idl":99.9,"recv":0,"send":0.01,"writ":0.28,"used":504.45,"free":3632.28},{"epoch":26108878,"idl":99.89,"recv":0,"send":0.01,"writ":0.21,"used":504.44,"free":3632.28},{"epoch":26108879,"idl":99.86,"recv":0,"send":0.02,"writ":0.21,"used":504.46,"free":3632.25},{"epoch":26108880,"idl":99.61,"recv":0,"send":0.01,"writ":0.42,"used":504.65,"free":3632.08},{"epoch":26108881,"idl":99.71,"recv":0.01,"send":0.02,"writ":0.43,"used":505.1,"free":3631.64},{"epoch":26108882,"idl":99.81,"recv":0,"send":0.02,"writ":0.32,"used":504.66,"free":3632.07},{"epoch":26108883,"idl":99.85,"recv":0,"send":0.01,"writ":0.16,"used":504.71,"free":3632.02},{"epoch":26108884,"idl":99.86,"recv":0,"send":0.02,"writ":0.18,"used":504.68,"free":3632.06},{"epoch":26108885,"idl":99.8,"recv":0,"send":0.01,"writ":0.34,"used":504.92,"free":3631.84},{"epoch":26108886,"idl":99.75,"recv":0,"send":0.01,"writ":0.53,"used":505.23,"free":3631.52},{"epoch":26108887,"idl":99.9,"recv":0,"send":0.01,"writ":0.21,"used":504.65,"free":3632.1},{"epoch":26108888,"idl":99.86,"recv":0,"send":0.01,"writ":0.15,"used":504.75,"free":3631.99},{"epoch":26108889,"idl":99.79,"recv":0,"send":0.02,"writ":0.32,"used":504.69,"free":3632.02},{"epoch":26108890,"idl":99.75,"recv":0.01,"send":0.02,"writ":0.34,"used":504.71,"free":3632.02},{"epoch":26108891,"idl":99.72,"recv":0,"send":0.01,"writ":0.4,"used":505.43,"free":3631.3},{"epoch":26108892,"idl":99.88,"recv":0,"send":0.01,"writ":0.3,"used":504.89,"free":3631.83},{"epoch":26108893,"idl":99.81,"recv":0,"send":0.02,"writ":0.14,"used":504.99,"free":3631.73},{"epoch":26108894,"idl":99.83,"recv":0,"send":0.02,"writ":0.15,"used":504.91,"free":3631.82},{"epoch":26108895,"idl":99.63,"recv":0,"send":0.02,"writ":0.33,"used":504.74,"free":3632.01},{"epoch":26108896,"idl":99.66,"recv":0,"send":0.02,"writ":0.34,"used":505.2,"free":3631.55},{"epoch":26108897,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.4,"used":504.95,"free":3631.79},{"epoch":26108898,"idl":99.88,"recv":0,"send":0.02,"writ":0.14,"used":504.94,"free":3631.8},{"epoch":26108899,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":504.91,"free":3631.82},{"epoch":26108900,"idl":99.71,"recv":0,"send":0.02,"writ":0.33,"used":504.96,"free":3631.79},{"epoch":26108901,"idl":99.79,"recv":0,"send":0.01,"writ":0.18,"used":504.7,"free":3632.05},{"epoch":26108902,"idl":99.7,"recv":0,"send":0.01,"writ":0.54,"used":504.2,"free":3632.55},{"epoch":26108903,"idl":99.85,"recv":0,"send":0.02,"writ":0.16,"used":503.67,"free":3633.07},{"epoch":26108904,"idl":99.83,"recv":0,"send":0.02,"writ":0.15,"used":503.71,"free":3633.02},{"epoch":26108905,"idl":99.78,"recv":0,"send":0.01,"writ":0.36,"used":504.95,"free":3631.8},{"epoch":26108906,"idl":99.86,"recv":0,"send":0.02,"writ":0.15,"used":504.93,"free":3631.82},{"epoch":26108907,"idl":99.75,"recv":0,"send":0.01,"writ":0.56,"used":505.33,"free":3631.41},{"epoch":26108908,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":504.9,"free":3631.84},{"epoch":26108909,"idl":99.85,"recv":0,"send":0.02,"writ":0.17,"used":504.98,"free":3631.75},{"epoch":26108910,"idl":99.67,"recv":0,"send":0.02,"writ":0.33,"used":504.68,"free":3632.07},{"epoch":26108911,"idl":99.86,"recv":0,"send":0.01,"writ":0.14,"used":504.73,"free":3632.02},{"epoch":26108912,"idl":99.65,"recv":0,"send":0.02,"writ":0.56,"used":504.16,"free":3632.58},{"epoch":26108913,"idl":99.81,"recv":0,"send":0.02,"writ":0.15,"used":503.45,"free":3633.28},{"epoch":26108914,"idl":99.87,"recv":0,"send":0.02,"writ":0.15,"used":503.45,"free":3633.28},{"epoch":26108915,"idl":99.69,"recv":0,"send":0.02,"writ":0.32,"used":504.88,"free":3631.87},{"epoch":26108916,"idl":99.85,"recv":0,"send":0.01,"writ":0.16,"used":504.96,"free":3631.78},{"epoch":26108917,"idl":99.78,"recv":0,"send":0.02,"writ":0.51,"used":504.86,"free":3631.88},{"epoch":26108918,"idl":99.9,"recv":0,"send":0.02,"writ":0.2,"used":504.23,"free":3632.51},{"epoch":26108919,"idl":99.71,"recv":0,"send":0.01,"writ":0.29,"used":504.86,"free":3631.85},{"epoch":26108920,"idl":99.77,"recv":0.01,"send":0.03,"writ":0.32,"used":504.98,"free":3631.75},{"epoch":26108921,"idl":99.87,"recv":0,"send":0.02,"writ":0.19,"used":504.93,"free":3631.79},{"epoch":26108922,"idl":99.74,"recv":0,"send":0.01,"writ":0.55,"used":505.49,"free":3631.23},{"epoch":26108923,"idl":99.88,"recv":0,"send":0.01,"writ":0.14,"used":505.18,"free":3631.53},{"epoch":26108924,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":505.16,"free":3631.55},{"epoch":26108925,"idl":99.7,"recv":0,"send":0.01,"writ":0.34,"used":504.98,"free":3631.74},{"epoch":26108926,"idl":99.87,"recv":0,"send":0.02,"writ":0.14,"used":504.89,"free":3631.83},{"epoch":26108927,"idl":99.69,"recv":0,"send":0.02,"writ":0.42,"used":505.27,"free":3631.45},{"epoch":26108928,"idl":99.88,"recv":0,"send":0.01,"writ":0.29,"used":504.65,"free":3632.06},{"epoch":26108929,"idl":99.87,"recv":0,"send":0.02,"writ":0.14,"used":504.7,"free":3632},{"epoch":26108930,"idl":99.79,"recv":0,"send":0.01,"writ":0.34,"used":504.94,"free":3631.79},{"epoch":26108931,"idl":99.88,"recv":0,"send":0.02,"writ":0.15,"used":504.9,"free":3631.82},{"epoch":26108932,"idl":99.7,"recv":0,"send":0.02,"writ":0.43,"used":505.32,"free":3631.4},{"epoch":26108933,"idl":99.86,"recv":0,"send":0.01,"writ":0.3,"used":504.87,"free":3631.84},{"epoch":26108934,"idl":99.87,"recv":0,"send":0.02,"writ":0.15,"used":504.96,"free":3631.74},{"epoch":26108935,"idl":99.73,"recv":0,"send":0.02,"writ":0.34,"used":504.9,"free":3631.82},{"epoch":26108936,"idl":99.85,"recv":0,"send":0.02,"writ":0.15,"used":504.99,"free":3631.74},{"epoch":26108937,"idl":99.75,"recv":0,"send":0.02,"writ":0.16,"used":505.22,"free":3631.5},{"epoch":26108938,"idl":99.83,"recv":0,"send":0.01,"writ":0.54,"used":505.28,"free":3631.43},{"epoch":26108939,"idl":99.85,"recv":0,"send":0.02,"writ":0.2,"used":504.95,"free":3631.76},{"epoch":26108940,"idl":98.18,"recv":0,"send":0.02,"writ":10.15,"used":504.76,"free":3631.07},{"epoch":26108941,"idl":99.83,"recv":0,"send":0.02,"writ":0.16,"used":504.71,"free":3631.12},{"epoch":26108942,"idl":99.89,"recv":0,"send":0.02,"writ":0.14,"used":504.63,"free":3631.21},{"epoch":26108943,"idl":99.72,"recv":0.01,"send":0.03,"writ":0.62,"used":505.25,"free":3630.57},{"epoch":26108944,"idl":99.86,"recv":0,"send":0.02,"writ":0.18,"used":504.82,"free":3630.97},{"epoch":26108945,"idl":99.64,"recv":0,"send":0.01,"writ":0.34,"used":503.99,"free":3631.84},{"epoch":26108946,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.14,"used":503.88,"free":3631.95},{"epoch":26108947,"idl":99.85,"recv":0,"send":0.02,"writ":0.16,"used":503.92,"free":3631.9},{"epoch":26108948,"idl":99.75,"recv":0,"send":0.02,"writ":0.56,"used":504.85,"free":3630.97},{"epoch":26108949,"idl":99.68,"recv":0,"send":0.02,"writ":0.3,"used":505.14,"free":3630.67},{"epoch":26108950,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.32,"used":505.37,"free":3630.46},{"epoch":26108951,"idl":99.88,"recv":0,"send":0.02,"writ":0.14,"used":505.4,"free":3630.42},{"epoch":26108952,"idl":99.88,"recv":0,"send":0.02,"writ":0.15,"used":505.39,"free":3630.42},{"epoch":26108953,"idl":99.74,"recv":0,"send":0.02,"writ":0.57,"used":505.58,"free":3630.23},{"epoch":26108954,"idl":99.85,"recv":0,"send":0.01,"writ":0.16,"used":505.16,"free":3630.66},{"epoch":26108955,"idl":99.65,"recv":0,"send":0.01,"writ":0.32,"used":505.12,"free":3630.73},{"epoch":26108956,"idl":99.81,"recv":0,"send":0.02,"writ":0.16,"used":505.2,"free":3630.64},{"epoch":26108957,"idl":99.85,"recv":0,"send":0.02,"writ":0.19,"used":505.11,"free":3630.72},{"epoch":26108958,"idl":99.7,"recv":0,"send":0.01,"writ":0.41,"used":505.99,"free":3629.84},{"epoch":26108959,"idl":99.89,"recv":0,"send":0.02,"writ":0.29,"used":505.4,"free":3630.42},{"epoch":26108960,"idl":99.69,"recv":0,"send":0.02,"writ":0.32,"used":505.43,"free":3630.41},{"epoch":26108961,"idl":99.83,"recv":0,"send":0.02,"writ":0.22,"used":505.43,"free":3630.41},{"epoch":26108962,"idl":99.87,"recv":0,"send":0.01,"writ":0.18,"used":505.36,"free":3630.47},{"epoch":26108963,"idl":99.74,"recv":0,"send":0.02,"writ":0.43,"used":505.99,"free":3629.85},{"epoch":26108964,"idl":99.87,"recv":0,"send":0.02,"writ":0.28,"used":505.36,"free":3630.5},{"epoch":26108965,"idl":99.72,"recv":0,"send":0.02,"writ":0.37,"used":505.45,"free":3630.43},{"epoch":26108966,"idl":99.85,"recv":0,"send":0.02,"writ":0.16,"used":505.4,"free":3630.48},{"epoch":26108967,"idl":99.88,"recv":0,"send":0.01,"writ":0.14,"used":505.42,"free":3630.44},{"epoch":26108968,"idl":99.63,"recv":0,"send":0.01,"writ":0.56,"used":505.81,"free":3630.05},{"epoch":26108969,"idl":99.87,"recv":0,"send":0.01,"writ":0.18,"used":505.37,"free":3630.49},{"epoch":26108970,"idl":99.63,"recv":0,"send":0.02,"writ":0.37,"used":504.52,"free":3631.36},{"epoch":26108971,"idl":99.8,"recv":0,"send":0.01,"writ":0.14,"used":504.42,"free":3631.45},{"epoch":26108972,"idl":99.84,"recv":0,"send":0.01,"writ":0.14,"used":504.48,"free":3631.39},{"epoch":26108973,"idl":99.73,"recv":0,"send":0.02,"writ":0.57,"used":504.96,"free":3630.91},{"epoch":26108974,"idl":99.85,"recv":0,"send":0.01,"writ":0.14,"used":505.35,"free":3630.51},{"epoch":26108975,"idl":99.69,"recv":0,"send":0.02,"writ":0.33,"used":504.29,"free":3631.58},{"epoch":26108976,"idl":99.89,"recv":0,"send":0.02,"writ":0.17,"used":504.16,"free":3631.71},{"epoch":26108977,"idl":99.83,"recv":0,"send":0.01,"writ":0.14,"used":504.21,"free":3631.66},{"epoch":26108978,"idl":99.86,"recv":0,"send":0.01,"writ":0.15,"used":504.18,"free":3631.69},{"epoch":26108979,"idl":99.28,"recv":0,"send":0.02,"writ":0.71,"used":505.93,"free":3629.89},{"epoch":26108980,"idl":99.76,"recv":0,"send":0.01,"writ":0.37,"used":505.43,"free":3630.4},{"epoch":26108981,"idl":99.88,"recv":0,"send":0.02,"writ":0.16,"used":505.39,"free":3630.45},{"epoch":26108982,"idl":99.85,"recv":0,"send":0.01,"writ":0.15,"used":505.45,"free":3630.38},{"epoch":26108983,"idl":99.88,"recv":0,"send":0.02,"writ":0.14,"used":505.36,"free":3630.46},{"epoch":26108984,"idl":99.75,"recv":0,"send":0.02,"writ":0.57,"used":506.11,"free":3629.7},{"epoch":26108985,"idl":99.75,"recv":0,"send":0.01,"writ":0.39,"used":505.67,"free":3630.16},{"epoch":26108986,"idl":99.87,"recv":0,"send":0.01,"writ":0.18,"used":505.63,"free":3630.19},{"epoch":26108987,"idl":99.83,"recv":0,"send":0.02,"writ":0.14,"used":505.7,"free":3630.12},{"epoch":26108988,"idl":99.86,"recv":0,"send":0.02,"writ":0.16,"used":505.61,"free":3630.21},{"epoch":26108989,"idl":99.73,"recv":0,"send":0.02,"writ":0.56,"used":506.13,"free":3629.68},{"epoch":26108990,"idl":99.77,"recv":0,"send":0.02,"writ":0.34,"used":505.63,"free":3630.2},{"epoch":26108991,"idl":99.88,"recv":0,"send":0.02,"writ":0.16,"used":505.69,"free":3630.13},{"epoch":26108992,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":505.61,"free":3630.21},{"epoch":26108993,"idl":99.85,"recv":0,"send":0.01,"writ":0.15,"used":505.68,"free":3630.14},{"epoch":26108994,"idl":99.75,"recv":0,"send":0.01,"writ":0.51,"used":505.77,"free":3630.04},{"epoch":26108995,"idl":99.77,"recv":0,"send":0.01,"writ":0.4,"used":505.16,"free":3630.67},{"epoch":26108996,"idl":99.88,"recv":0,"send":0.02,"writ":0.16,"used":505.18,"free":3630.64},{"epoch":26108997,"idl":99.83,"recv":0,"send":0.01,"writ":0.14,"used":505.1,"free":3630.72},{"epoch":26108998,"idl":99.85,"recv":0,"send":0.01,"writ":0.15,"used":505.19,"free":3630.63},{"epoch":26108999,"idl":99.73,"recv":0,"send":0.02,"writ":0.5,"used":505.61,"free":3630.2},{"epoch":26109000,"idl":99.6,"recv":0,"send":0.01,"writ":0.43,"used":504.91,"free":3630.91},{"epoch":26109001,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.15,"used":504.94,"free":3630.88},{"epoch":26109002,"idl":99.81,"recv":0,"send":0.02,"writ":0.16,"used":504.88,"free":3630.93},{"epoch":26109003,"idl":99.78,"recv":0,"send":0.02,"writ":0.15,"used":504.96,"free":3630.85},{"epoch":26109004,"idl":99.68,"recv":0,"send":0.02,"writ":0.58,"used":505.22,"free":3630.59},{"epoch":26109005,"idl":99.73,"recv":0,"send":0.02,"writ":0.3,"used":503.75,"free":3632.08},{"epoch":26109006,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.16,"used":503.66,"free":3632.16},{"epoch":26109007,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":503.71,"free":3632.11},{"epoch":26109008,"idl":99.85,"recv":0,"send":0.01,"writ":0.16,"used":503.67,"free":3632.14},{"epoch":26109009,"idl":99.52,"recv":0,"send":0.01,"writ":0.7,"used":504.97,"free":3630.81},{"epoch":26109010,"idl":93.01,"recv":0.01,"send":0.01,"writ":0.24,"used":503.81,"free":3631.99},{"epoch":26109011,"idl":99.83,"recv":0,"send":0.01,"writ":0.14,"used":503.63,"free":3632.17},{"epoch":26109012,"idl":99.9,"recv":0,"send":0.01,"writ":0.16,"used":503.67,"free":3632.12},{"epoch":26109013,"idl":99.82,"recv":0,"send":0.01,"writ":0.14,"used":503.68,"free":3632.11},{"epoch":26109014,"idl":99.84,"recv":0,"send":0.02,"writ":0.17,"used":503.6,"free":3632.19},{"epoch":26109015,"idl":99.52,"recv":0,"send":0.02,"writ":0.72,"used":504.56,"free":3631.24},{"epoch":26109016,"idl":99.89,"recv":0,"send":0.01,"writ":0.18,"used":503.87,"free":3631.93},{"epoch":26109017,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.23,"used":503.96,"free":3631.84},{"epoch":26109018,"idl":99.81,"recv":0,"send":0.01,"writ":0.15,"used":503.92,"free":3631.87},{"epoch":26109019,"idl":99.88,"recv":0,"send":0.02,"writ":0.16,"used":503.91,"free":3631.87},{"epoch":26109020,"idl":99.66,"recv":0,"send":0.02,"writ":0.75,"used":505.21,"free":3630.59},{"epoch":26109021,"idl":99.88,"recv":0,"send":0.01,"writ":0.21,"used":504.65,"free":3631.14},{"epoch":26109022,"idl":99.87,"recv":0,"send":0.01,"writ":0.15,"used":504.45,"free":3631.34},{"epoch":26109023,"idl":99.88,"recv":0,"send":0.02,"writ":0.15,"used":504.37,"free":3631.42},{"epoch":26109024,"idl":99.89,"recv":0,"send":0.02,"writ":0.14,"used":504.41,"free":3631.37},{"epoch":26109025,"idl":99.45,"recv":0,"send":0.02,"writ":0.72,"used":504.82,"free":3630.98},{"epoch":26109026,"idl":99.84,"recv":0,"send":0.02,"writ":0.16,"used":504.63,"free":3631.17},{"epoch":26109027,"idl":99.88,"recv":0,"send":0.02,"writ":0.17,"used":504.66,"free":3631.15},{"epoch":26109028,"idl":99.83,"recv":0,"send":0.02,"writ":0.14,"used":504.6,"free":3631.2},{"epoch":26109029,"idl":99.8,"recv":0,"send":0.02,"writ":0.16,"used":504.67,"free":3631.13},{"epoch":26109030,"idl":99.49,"recv":0,"send":0.01,"writ":0.72,"used":504.64,"free":3631.17},{"epoch":26109031,"idl":99.87,"recv":0,"send":0.01,"writ":0.16,"used":504.4,"free":3631.4},{"epoch":26109032,"idl":99.81,"recv":0,"send":0.01,"writ":0.15,"used":504.39,"free":3631.41},{"epoch":26109033,"idl":99.86,"recv":0,"send":0.02,"writ":0.16,"used":504.36,"free":3631.44},{"epoch":26109034,"idl":99.88,"recv":0,"send":0.01,"writ":0.15,"used":504.43,"free":3631.37},{"epoch":26109035,"idl":99.6,"recv":0,"send":0,"writ":0.77,"used":505.27,"free":3630.54},{"epoch":26109036,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":504.62,"free":3631.19},{"epoch":26109037,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":504.61,"free":3631.2},{"epoch":26109038,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":504.57,"free":3631.23},{"epoch":26109039,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":505.06,"free":3630.71},{"epoch":26109040,"idl":99.59,"recv":0,"send":0,"writ":0.75,"used":505.15,"free":3630.65},{"epoch":26109041,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":504.97,"free":3630.82},{"epoch":26109042,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":504.95,"free":3630.84},{"epoch":26109043,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":504.93,"free":3630.85},{"epoch":26109044,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":504.91,"free":3630.87},{"epoch":26109045,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":505.62,"free":3630.17},{"epoch":26109046,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":504.15,"free":3631.64},{"epoch":26109047,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":504.14,"free":3631.64},{"epoch":26109048,"idl":99.88,"recv":0,"send":0.01,"writ":0.18,"used":504.1,"free":3631.68},{"epoch":26109049,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":504.07,"free":3631.7},{"epoch":26109050,"idl":99.75,"recv":0,"send":0,"writ":0.25,"used":505.07,"free":3630.72},{"epoch":26109051,"idl":99.73,"recv":0,"send":0,"writ":0.6,"used":505.65,"free":3630.13},{"epoch":26109052,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":504.95,"free":3630.84},{"epoch":26109053,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":504.94,"free":3630.85},{"epoch":26109054,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":504.91,"free":3630.87},{"epoch":26109055,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":503.96,"free":3631.83},{"epoch":26109056,"idl":99.69,"recv":0,"send":0,"writ":0.62,"used":505.39,"free":3630.41},{"epoch":26109057,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":505.1,"free":3630.68},{"epoch":26109058,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.1,"free":3630.69},{"epoch":26109059,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":505.08,"free":3630.7},{"epoch":26109060,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":505.32,"free":3630.48},{"epoch":26109061,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":505.37,"free":3630.42},{"epoch":26109062,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":504.94,"free":3630.84},{"epoch":26109063,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":504.95,"free":3630.82},{"epoch":26109064,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":504.93,"free":3630.84},{"epoch":26109065,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":505.17,"free":3630.61},{"epoch":26109066,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":504.94,"free":3630.85},{"epoch":26109067,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":504.14,"free":3631.64},{"epoch":26109068,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":504.13,"free":3631.64},{"epoch":26109069,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":503.63,"free":3632.12},{"epoch":26109070,"idl":99.69,"recv":0,"send":0,"writ":0.26,"used":504.58,"free":3631.18},{"epoch":26109071,"idl":99.74,"recv":0,"send":0,"writ":0.43,"used":505.16,"free":3630.6},{"epoch":26109072,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":505.05,"free":3630.7},{"epoch":26109073,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.04,"free":3630.71},{"epoch":26109074,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":505.07,"free":3630.68},{"epoch":26109075,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":505.21,"free":3630.56},{"epoch":26109076,"idl":99.77,"recv":0,"send":0,"writ":0.44,"used":505.88,"free":3629.9},{"epoch":26109077,"idl":99.17,"recv":0,"send":0,"writ":0.32,"used":504.9,"free":3630.87},{"epoch":26109078,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":504.9,"free":3630.87},{"epoch":26109079,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":504.87,"free":3630.9},{"epoch":26109080,"idl":99.64,"recv":0,"send":0,"writ":0.26,"used":505.11,"free":3630.67},{"epoch":26109081,"idl":99.68,"recv":0,"send":0,"writ":0.43,"used":505.4,"free":3630.38},{"epoch":26109082,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":504.82,"free":3630.96},{"epoch":26109083,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":504.8,"free":3630.97},{"epoch":26109084,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":504.79,"free":3630.97},{"epoch":26109085,"idl":99.74,"recv":0,"send":0,"writ":0.26,"used":504.32,"free":3631.46},{"epoch":26109086,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":504.2,"free":3631.58},{"epoch":26109087,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":505.21,"free":3630.56},{"epoch":26109088,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":504.9,"free":3630.88},{"epoch":26109089,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":504.87,"free":3630.91},{"epoch":26109090,"idl":99.7,"recv":0,"send":0,"writ":0.24,"used":504.41,"free":3631.4},{"epoch":26109091,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":504.36,"free":3631.44},{"epoch":26109092,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":505.39,"free":3630.41},{"epoch":26109093,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.06,"free":3630.73},{"epoch":26109094,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":505.05,"free":3630.73},{"epoch":26109095,"idl":99.76,"recv":0,"send":0,"writ":0.25,"used":505.28,"free":3630.52},{"epoch":26109096,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":505.37,"free":3630.43},{"epoch":26109097,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":505.61,"free":3630.18},{"epoch":26109098,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":505.18,"free":3630.61},{"epoch":26109099,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":505.39,"free":3630.38},{"epoch":26109100,"idl":99.76,"recv":0,"send":0,"writ":0.26,"used":505.39,"free":3630.39},{"epoch":26109101,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.37,"free":3630.41},{"epoch":26109102,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":505.85,"free":3629.91},{"epoch":26109103,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":505.56,"free":3630.2},{"epoch":26109104,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":505.55,"free":3630.22},{"epoch":26109105,"idl":99.77,"recv":0,"send":0,"writ":0.26,"used":505.06,"free":3630.72},{"epoch":26109106,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.02,"free":3630.76},{"epoch":26109107,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":505.26,"free":3630.52},{"epoch":26109108,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":504.92,"free":3630.85},{"epoch":26109109,"idl":99.9,"recv":0.01,"send":0,"writ":0.14,"used":504.94,"free":3630.83},{"epoch":26109110,"idl":99.69,"recv":0.02,"send":0.02,"writ":0.28,"used":504.19,"free":3631.59},{"epoch":26109111,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":504.18,"free":3631.59},{"epoch":26109112,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":505.2,"free":3630.57},{"epoch":26109113,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":505.62,"free":3630.15},{"epoch":26109114,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.58,"free":3630.18},{"epoch":26109115,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":504.14,"free":3631.63},{"epoch":26109116,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":504.08,"free":3631.69},{"epoch":26109117,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":504.71,"free":3631.06},{"epoch":26109118,"idl":99.88,"recv":0,"send":0,"writ":0.45,"used":505.28,"free":3630.49},{"epoch":26109119,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":505.27,"free":3630.49},{"epoch":26109120,"idl":99.56,"recv":0,"send":0,"writ":0.25,"used":505.31,"free":3630.47},{"epoch":26109121,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":505.44,"free":3630.34},{"epoch":26109122,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":505.41,"free":3630.36},{"epoch":26109123,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":505.97,"free":3629.79},{"epoch":26109124,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":505.62,"free":3630.14},{"epoch":26109125,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":505.39,"free":3630.38},{"epoch":26109126,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":505.35,"free":3630.42},{"epoch":26109127,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":505.32,"free":3630.44},{"epoch":26109128,"idl":94.57,"recv":0.34,"send":0.01,"writ":265.28,"used":517,"free":3618.7},{"epoch":26109129,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":507.89,"free":3627.72},{"epoch":26109130,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":507.9,"free":3627.72},{"epoch":26109131,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":508.04,"free":3627.57},{"epoch":26109132,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":508.06,"free":3627.55},{"epoch":26109133,"idl":99.74,"recv":0,"send":0,"writ":0.62,"used":506.44,"free":3629.19},{"epoch":26109134,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":505.36,"free":3630.32},{"epoch":26109135,"idl":99.66,"recv":0,"send":0,"writ":0.26,"used":504.87,"free":3630.84},{"epoch":26109136,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":504.86,"free":3630.85},{"epoch":26109137,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":505.08,"free":3630.62},{"epoch":26109138,"idl":98.96,"recv":0,"send":0,"writ":0.55,"used":505.97,"free":3629.72},{"epoch":26109139,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":505.27,"free":3630.42},{"epoch":26109140,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":505.53,"free":3630.18},{"epoch":26109141,"idl":99.81,"recv":0,"send":0,"writ":0.23,"used":505.45,"free":3630.26},{"epoch":26109142,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":505.25,"free":3630.45},{"epoch":26109143,"idl":99.66,"recv":0,"send":0,"writ":0.51,"used":505.77,"free":3629.92},{"epoch":26109144,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":505.64,"free":3630.05},{"epoch":26109145,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":505.63,"free":3630.07},{"epoch":26109146,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":505.62,"free":3630.08},{"epoch":26109147,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":505.58,"free":3630.11},{"epoch":26109148,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":505.93,"free":3629.75},{"epoch":26109149,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.51,"free":3630.17},{"epoch":26109150,"idl":99.66,"recv":0,"send":0,"writ":0.31,"used":504.29,"free":3631.41},{"epoch":26109151,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.16,"used":504.35,"free":3631.34},{"epoch":26109152,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":504.33,"free":3631.37},{"epoch":26109153,"idl":99.7,"recv":0,"send":0,"writ":0.4,"used":504.89,"free":3630.8},{"epoch":26109154,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":505.26,"free":3630.42},{"epoch":26109155,"idl":99.53,"recv":0,"send":0,"writ":0.28,"used":503.88,"free":3631.81},{"epoch":26109156,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":503.77,"free":3631.93},{"epoch":26109157,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":503.76,"free":3631.93},{"epoch":26109158,"idl":99.7,"recv":0,"send":0,"writ":0.42,"used":504.13,"free":3631.56},{"epoch":26109159,"idl":99.61,"recv":0,"send":0,"writ":0.45,"used":504.55,"free":3631.11},{"epoch":26109160,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":504.17,"free":3631.51},{"epoch":26109161,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":504.14,"free":3631.54},{"epoch":26109162,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":504.1,"free":3631.57},{"epoch":26109163,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":504.1,"free":3631.57},{"epoch":26109164,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":504.78,"free":3630.88},{"epoch":26109165,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":503.84,"free":3631.84},{"epoch":26109166,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":503.8,"free":3631.87},{"epoch":26109167,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":503.78,"free":3631.89},{"epoch":26109168,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":503.76,"free":3631.91},{"epoch":26109169,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":504.97,"free":3630.69},{"epoch":26109170,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":504.83,"free":3630.85},{"epoch":26109171,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":504.88,"free":3630.8},{"epoch":26109172,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":504.86,"free":3630.81},{"epoch":26109173,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":504.84,"free":3630.83},{"epoch":26109174,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":505.49,"free":3630.17},{"epoch":26109175,"idl":99.72,"recv":0,"send":0,"writ":0.26,"used":503.85,"free":3631.83},{"epoch":26109176,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":503.8,"free":3631.88},{"epoch":26109177,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":503.78,"free":3631.89},{"epoch":26109178,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":503.76,"free":3631.91},{"epoch":26109179,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":504.49,"free":3631.18},{"epoch":26109180,"idl":99.44,"recv":0,"send":0,"writ":0.26,"used":503.76,"free":3631.92},{"epoch":26109181,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":503.91,"free":3631.77},{"epoch":26109182,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":503.92,"free":3631.75},{"epoch":26109183,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":503.89,"free":3631.78},{"epoch":26109184,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":504.54,"free":3631.13},{"epoch":26109185,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":504.85,"free":3630.83},{"epoch":26109186,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":504.84,"free":3630.83},{"epoch":26109187,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":504.81,"free":3630.86},{"epoch":26109188,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":504.8,"free":3630.87},{"epoch":26109189,"idl":99.56,"recv":0,"send":0,"writ":0.55,"used":505.4,"free":3630.24},{"epoch":26109190,"idl":99.69,"recv":0,"send":0,"writ":0.52,"used":504.98,"free":3630.68},{"epoch":26109191,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":504.74,"free":3630.91},{"epoch":26109192,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":504.79,"free":3630.85},{"epoch":26109193,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":504.91,"free":3630.73},{"epoch":26109194,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":504.92,"free":3630.72},{"epoch":26109195,"idl":99.56,"recv":0,"send":0,"writ":0.67,"used":505.32,"free":3630.34},{"epoch":26109196,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":504.9,"free":3630.77},{"epoch":26109197,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":504.88,"free":3630.79},{"epoch":26109198,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":504.85,"free":3630.82},{"epoch":26109199,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":504.83,"free":3630.83},{"epoch":26109200,"idl":99.56,"recv":0,"send":0,"writ":0.66,"used":505.42,"free":3630.27},{"epoch":26109201,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":504.95,"free":3630.73},{"epoch":26109202,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":504.54,"free":3631.13},{"epoch":26109203,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":504.56,"free":3631.11},{"epoch":26109204,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":504.69,"free":3630.98},{"epoch":26109205,"idl":99.59,"recv":0,"send":0,"writ":0.67,"used":505.58,"free":3630.1},{"epoch":26109206,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.16,"free":3630.52},{"epoch":26109207,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":505.14,"free":3630.53},{"epoch":26109208,"idl":99.73,"recv":0,"send":0,"writ":0.17,"used":505.12,"free":3630.55},{"epoch":26109209,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":505.1,"free":3630.56},{"epoch":26109210,"idl":99.42,"recv":0,"send":0,"writ":0.71,"used":505.32,"free":3630.35},{"epoch":26109211,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":504.85,"free":3630.82},{"epoch":26109212,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":504.81,"free":3630.86},{"epoch":26109213,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":504.78,"free":3630.88},{"epoch":26109214,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":504.77,"free":3630.89},{"epoch":26109215,"idl":99.58,"recv":0,"send":0,"writ":0.7,"used":505.76,"free":3629.92},{"epoch":26109216,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":505.19,"free":3630.48},{"epoch":26109217,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":505.15,"free":3630.52},{"epoch":26109218,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.15,"free":3630.52},{"epoch":26109219,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":505.13,"free":3630.52},{"epoch":26109220,"idl":99.52,"recv":0,"send":0,"writ":0.66,"used":505.84,"free":3629.83},{"epoch":26109221,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":504.88,"free":3630.78},{"epoch":26109222,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":504.86,"free":3630.8},{"epoch":26109223,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":504.83,"free":3630.83},{"epoch":26109224,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":504.81,"free":3630.85},{"epoch":26109225,"idl":99.59,"recv":0,"send":0,"writ":0.43,"used":505.39,"free":3630.28},{"epoch":26109226,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":504.56,"free":3631.09},{"epoch":26109227,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":504.63,"free":3631.02},{"epoch":26109228,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":504.69,"free":3630.95},{"epoch":26109229,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":504.68,"free":3630.95},{"epoch":26109230,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":505.19,"free":3630.47},{"epoch":26109231,"idl":99.64,"recv":0,"send":0,"writ":0.58,"used":505.29,"free":3630.36},{"epoch":26109232,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":504.88,"free":3630.77},{"epoch":26109233,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":504.85,"free":3630.79},{"epoch":26109234,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":504.84,"free":3630.8},{"epoch":26109235,"idl":99.66,"recv":0,"send":0,"writ":0.28,"used":503.15,"free":3632.5},{"epoch":26109236,"idl":99.69,"recv":0,"send":0,"writ":0.6,"used":504.9,"free":3630.75},{"epoch":26109237,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":504.78,"free":3630.86},{"epoch":26109238,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":504.93,"free":3630.7},{"epoch":26109239,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":504.93,"free":3630.7},{"epoch":26109240,"idl":99.53,"recv":0,"send":0,"writ":0.26,"used":504.95,"free":3630.71},{"epoch":26109241,"idl":99.56,"recv":0,"send":0,"writ":0.56,"used":505.96,"free":3629.69},{"epoch":26109242,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":505.39,"free":3630.26},{"epoch":26109243,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":505.36,"free":3630.28},{"epoch":26109244,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":505.33,"free":3630.3},{"epoch":26109245,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":505.33,"free":3630.32},{"epoch":26109246,"idl":99.68,"recv":0,"send":0,"writ":0.46,"used":505.85,"free":3629.8},{"epoch":26109247,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":505.29,"free":3630.35},{"epoch":26109248,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.28,"free":3630.36},{"epoch":26109249,"idl":99.55,"recv":0,"send":0,"writ":0.29,"used":505.43,"free":3630.19},{"epoch":26109250,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":505.44,"free":3630.19},{"epoch":26109251,"idl":99.68,"recv":0,"send":0,"writ":0.47,"used":505.76,"free":3629.87},{"epoch":26109252,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":505.39,"free":3630.23},{"epoch":26109253,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":505.36,"free":3630.25},{"epoch":26109254,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":505.36,"free":3630.27},{"epoch":26109255,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":505.35,"free":3630.3},{"epoch":26109256,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":505.78,"free":3629.87},{"epoch":26109257,"idl":99.81,"recv":0,"send":0,"writ":0.23,"used":505.55,"free":3630.09},{"epoch":26109258,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":505.55,"free":3630.09},{"epoch":26109259,"idl":99.68,"recv":0,"send":0.01,"writ":0.17,"used":505.59,"free":3630.04},{"epoch":26109260,"idl":99.58,"recv":0,"send":0.02,"writ":0.29,"used":505.16,"free":3630.49},{"epoch":26109261,"idl":99.43,"recv":0,"send":0.02,"writ":0.45,"used":505.51,"free":3630.14},{"epoch":26109262,"idl":99.71,"recv":0,"send":0.02,"writ":0.32,"used":505.12,"free":3630.51},{"epoch":26109263,"idl":99.69,"recv":0.01,"send":0.02,"writ":0.17,"used":505.12,"free":3630.5},{"epoch":26109264,"idl":99.72,"recv":0.01,"send":0.03,"writ":0.18,"used":505.09,"free":3630.53},{"epoch":26109265,"idl":99.54,"recv":0,"send":0.02,"writ":0.31,"used":504.66,"free":3630.97},{"epoch":26109266,"idl":99.62,"recv":0,"send":0.02,"writ":0.17,"used":504.63,"free":3631.01},{"epoch":26109267,"idl":99.54,"recv":0.01,"send":0.03,"writ":0.61,"used":506.13,"free":3629.5},{"epoch":26109268,"idl":99.69,"recv":0,"send":0.02,"writ":0.16,"used":505.39,"free":3630.23},{"epoch":26109269,"idl":99.76,"recv":0.01,"send":0.02,"writ":0.17,"used":505.33,"free":3630.29},{"epoch":26109270,"idl":99.63,"recv":0,"send":0.02,"writ":0.35,"used":505.44,"free":3630.2},{"epoch":26109271,"idl":99.7,"recv":0,"send":0.02,"writ":0.16,"used":505.34,"free":3630.31},{"epoch":26109272,"idl":99.6,"recv":0,"send":0.02,"writ":0.57,"used":505.95,"free":3629.72},{"epoch":26109273,"idl":99.79,"recv":0,"send":0.01,"writ":0.17,"used":505.56,"free":3630.1},{"epoch":26109274,"idl":99.78,"recv":0,"send":0.01,"writ":0.21,"used":505.67,"free":3629.99},{"epoch":26109275,"idl":99.63,"recv":0,"send":0.02,"writ":0.34,"used":505.6,"free":3630.07},{"epoch":26109276,"idl":99.8,"recv":0,"send":0.02,"writ":0.2,"used":505.64,"free":3630.03},{"epoch":26109277,"idl":99.6,"recv":0,"send":0.02,"writ":0.6,"used":505.97,"free":3629.7},{"epoch":26109278,"idl":99.76,"recv":0,"send":0.01,"writ":0.17,"used":505.6,"free":3630.06},{"epoch":26109279,"idl":99.59,"recv":0,"send":0.02,"writ":0.32,"used":505.61,"free":3630.03},{"epoch":26109280,"idl":99.6,"recv":0,"send":0.01,"writ":0.29,"used":504.65,"free":3631},{"epoch":26109281,"idl":99.82,"recv":0,"send":0.01,"writ":0.17,"used":504.66,"free":3630.99},{"epoch":26109282,"idl":99.63,"recv":0,"send":0.01,"writ":0.58,"used":505.27,"free":3630.37},{"epoch":26109283,"idl":99.76,"recv":0,"send":0.01,"writ":0.17,"used":505.03,"free":3630.6},{"epoch":26109284,"idl":99.72,"recv":0,"send":0.01,"writ":0.2,"used":505.14,"free":3630.49},{"epoch":26109285,"idl":99.61,"recv":0,"send":0.01,"writ":0.32,"used":505.59,"free":3630.06},{"epoch":26109286,"idl":99.75,"recv":0,"send":0.01,"writ":0.16,"used":505.54,"free":3630.11},{"epoch":26109287,"idl":99.62,"recv":0,"send":0.01,"writ":0.59,"used":506.19,"free":3629.46},{"epoch":26109288,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":505.65,"free":3629.98},{"epoch":26109289,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":505.64,"free":3629.99},{"epoch":26109290,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":505.88,"free":3629.77},{"epoch":26109291,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":505.86,"free":3629.78},{"epoch":26109292,"idl":99.63,"recv":0,"send":0,"writ":0.48,"used":506.2,"free":3629.44},{"epoch":26109293,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":505.58,"free":3630.06},{"epoch":26109294,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":505.55,"free":3630.08},{"epoch":26109295,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":505.54,"free":3630.11},{"epoch":26109296,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":505.54,"free":3630.11},{"epoch":26109297,"idl":99.65,"recv":0,"send":0,"writ":0.43,"used":505.65,"free":3629.99},{"epoch":26109298,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":503.77,"free":3631.86},{"epoch":26109299,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":503.95,"free":3631.68},{"epoch":26109300,"idl":99.53,"recv":0,"send":0,"writ":0.29,"used":505.67,"free":3629.98},{"epoch":26109301,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":505.66,"free":3629.98},{"epoch":26109302,"idl":99.64,"recv":0,"send":0,"writ":0.43,"used":505.92,"free":3629.72},{"epoch":26109303,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":504.88,"free":3630.75},{"epoch":26109304,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":504.88,"free":3630.75},{"epoch":26109305,"idl":99.68,"recv":0,"send":0,"writ":0.33,"used":504.87,"free":3630.78},{"epoch":26109306,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":504.43,"free":3631.22},{"epoch":26109307,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":503.84,"free":3631.8},{"epoch":26109308,"idl":99.62,"recv":0,"send":0,"writ":0.57,"used":505.18,"free":3630.46},{"epoch":26109309,"idl":99.6,"recv":0,"send":0.01,"writ":0.31,"used":504.61,"free":3631},{"epoch":26109310,"idl":99.59,"recv":0.01,"send":0.03,"writ":0.3,"used":504.17,"free":3631.46},{"epoch":26109311,"idl":99.73,"recv":0,"send":0.02,"writ":0.16,"used":504.16,"free":3631.47},{"epoch":26109312,"idl":99.74,"recv":0.01,"send":0.02,"writ":0.16,"used":504.1,"free":3631.52},{"epoch":26109313,"idl":99.64,"recv":0,"send":0.02,"writ":0.56,"used":505.22,"free":3630.39},{"epoch":26109314,"idl":99.72,"recv":0,"send":0.02,"writ":0.15,"used":504.83,"free":3630.78},{"epoch":26109315,"idl":99.66,"recv":0,"send":0.01,"writ":0.29,"used":503.95,"free":3631.69},{"epoch":26109316,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":503.91,"free":3631.73},{"epoch":26109317,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":504.11,"free":3631.52},{"epoch":26109318,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":504.77,"free":3630.86},{"epoch":26109319,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":504.57,"free":3631.05},{"epoch":26109320,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":505.07,"free":3630.57},{"epoch":26109321,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":504.99,"free":3630.65},{"epoch":26109322,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":504.54,"free":3631.09},{"epoch":26109323,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":505.17,"free":3630.46},{"epoch":26109324,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":505.09,"free":3630.53},{"epoch":26109325,"idl":98.38,"recv":0,"send":0,"writ":15.88,"used":507.82,"free":3628.49},{"epoch":26109326,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":504.37,"free":3631.45},{"epoch":26109327,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":504.34,"free":3631.48},{"epoch":26109328,"idl":99.66,"recv":0,"send":0,"writ":0.51,"used":504.91,"free":3630.91},{"epoch":26109329,"idl":89.69,"recv":34,"send":0.06,"writ":186.7,"used":523.79,"free":3600.69},{"epoch":26109330,"idl":99.64,"recv":0,"send":0,"writ":32.96,"used":507.65,"free":3625.07},{"epoch":26109331,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.66,"free":3625.07},{"epoch":26109332,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":507.63,"free":3625.1},{"epoch":26109333,"idl":99.68,"recv":0,"send":0,"writ":0.4,"used":508.09,"free":3624.63},{"epoch":26109334,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":507.39,"free":3625.34},{"epoch":26109335,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":505.12,"free":3627.73},{"epoch":26109336,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":505.09,"free":3627.75},{"epoch":26109337,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":505.07,"free":3627.79},{"epoch":26109338,"idl":99.69,"recv":0,"send":0,"writ":0.42,"used":505.63,"free":3627.24},{"epoch":26109339,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":505.05,"free":3627.8},{"epoch":26109340,"idl":99.67,"recv":0,"send":0,"writ":0.28,"used":505.28,"free":3627.6},{"epoch":26109341,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":505.26,"free":3627.61},{"epoch":26109342,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":505.24,"free":3627.63},{"epoch":26109343,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":505.22,"free":3627.65},{"epoch":26109344,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":505.32,"free":3627.53},{"epoch":26109345,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":505.62,"free":3627.25},{"epoch":26109346,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":505.64,"free":3627.22},{"epoch":26109347,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":505.61,"free":3627.25},{"epoch":26109348,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":505.6,"free":3627.25},{"epoch":26109349,"idl":99.66,"recv":0,"send":0,"writ":0.57,"used":505.69,"free":3627.16},{"epoch":26109350,"idl":99.67,"recv":0,"send":0,"writ":0.27,"used":504.85,"free":3628.01},{"epoch":26109351,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":504.82,"free":3628.04},{"epoch":26109352,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":504.8,"free":3628.05},{"epoch":26109353,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":504.77,"free":3628.09},{"epoch":26109354,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":505.3,"free":3627.55},{"epoch":26109355,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":505.05,"free":3627.81},{"epoch":26109356,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":504.99,"free":3627.87},{"epoch":26109357,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":505.12,"free":3627.74},{"epoch":26109358,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.13,"free":3627.72},{"epoch":26109359,"idl":99.65,"recv":0,"send":0,"writ":0.59,"used":506.03,"free":3626.81},{"epoch":26109360,"idl":99.48,"recv":0,"send":0,"writ":0.27,"used":504.42,"free":3628.44},{"epoch":26109361,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":504.35,"free":3628.51},{"epoch":26109362,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":504.33,"free":3628.52},{"epoch":26109363,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":504.3,"free":3628.55},{"epoch":26109364,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":504.36,"free":3628.49},{"epoch":26109365,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":504.49,"free":3628.36},{"epoch":26109366,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":504.51,"free":3628.35},{"epoch":26109367,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":504.49,"free":3628.36},{"epoch":26109368,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":504.54,"free":3628.31},{"epoch":26109369,"idl":99.65,"recv":0,"send":0,"writ":0.7,"used":505.23,"free":3627.61},{"epoch":26109370,"idl":99.71,"recv":0,"send":0,"writ":0.26,"used":504.85,"free":3628.01},{"epoch":26109371,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":504.86,"free":3628},{"epoch":26109372,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":504.83,"free":3628.03},{"epoch":26109373,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":504.82,"free":3628.03},{"epoch":26109374,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":505.41,"free":3627.44},{"epoch":26109375,"idl":99.65,"recv":0,"send":0,"writ":0.29,"used":504.55,"free":3628.31},{"epoch":26109376,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":504.52,"free":3628.34},{"epoch":26109377,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":504.5,"free":3628.36},{"epoch":26109378,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":504.47,"free":3628.38},{"epoch":26109379,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":504.96,"free":3627.89},{"epoch":26109380,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":504.64,"free":3628.23},{"epoch":26109381,"idl":99.9,"recv":0,"send":0.01,"writ":0.16,"used":504.65,"free":3628.21},{"epoch":26109382,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":505.29,"free":3627.57},{"epoch":26109383,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":505.28,"free":3627.57},{"epoch":26109384,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":505.53,"free":3627.32},{"epoch":26109385,"idl":99.84,"recv":0,"send":0,"writ":0.5,"used":504.52,"free":3628.34},{"epoch":26109386,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":504.49,"free":3628.37},{"epoch":26109387,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":504.48,"free":3628.37},{"epoch":26109388,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":504.5,"free":3628.35},{"epoch":26109389,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":504.62,"free":3628.22},{"epoch":26109390,"idl":99.51,"recv":0,"send":0,"writ":0.76,"used":505.43,"free":3627.43},{"epoch":26109391,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":504.6,"free":3628.26},{"epoch":26109392,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":504.58,"free":3628.28},{"epoch":26109393,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":504.56,"free":3628.29},{"epoch":26109394,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":504.54,"free":3628.31},{"epoch":26109395,"idl":99.6,"recv":0,"send":0,"writ":0.73,"used":505.71,"free":3627.15},{"epoch":26109396,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":505.25,"free":3627.6},{"epoch":26109397,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":505.24,"free":3627.61},{"epoch":26109398,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.21,"free":3627.63},{"epoch":26109399,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":505.2,"free":3627.62},{"epoch":26109400,"idl":99.55,"recv":0,"send":0,"writ":0.7,"used":505.78,"free":3627.05},{"epoch":26109401,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":505.62,"free":3627.21},{"epoch":26109402,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.58,"free":3627.25},{"epoch":26109403,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":505.58,"free":3627.25},{"epoch":26109404,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":505.54,"free":3627.28},{"epoch":26109405,"idl":99.59,"recv":0,"send":0,"writ":0.7,"used":505.81,"free":3627.04},{"epoch":26109406,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.53,"free":3627.32},{"epoch":26109407,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":505.51,"free":3627.34},{"epoch":26109408,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":505.49,"free":3627.36},{"epoch":26109409,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.47,"free":3627.36},{"epoch":26109410,"idl":99.65,"recv":0,"send":0,"writ":0.73,"used":505.92,"free":3626.94},{"epoch":26109411,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":505.43,"free":3627.41},{"epoch":26109412,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.57,"free":3627.27},{"epoch":26109413,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":505.58,"free":3627.26},{"epoch":26109414,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":505.56,"free":3627.28},{"epoch":26109415,"idl":99.7,"recv":0,"send":0,"writ":0.62,"used":505.91,"free":3626.94},{"epoch":26109416,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":505.52,"free":3627.32},{"epoch":26109417,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":505.52,"free":3627.32},{"epoch":26109418,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":505.49,"free":3627.35},{"epoch":26109419,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":505.48,"free":3627.36},{"epoch":26109420,"idl":99.58,"recv":0,"send":0,"writ":0.7,"used":505.67,"free":3627.17},{"epoch":26109421,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.7,"free":3627.14},{"epoch":26109422,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":505.67,"free":3627.17},{"epoch":26109423,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":505.66,"free":3627.17},{"epoch":26109424,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.85,"free":3626.98},{"epoch":26109425,"idl":99.7,"recv":0,"send":0,"writ":0.51,"used":505.74,"free":3627.1},{"epoch":26109426,"idl":99.89,"recv":0,"send":0,"writ":0.39,"used":505.58,"free":3627.26},{"epoch":26109427,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.57,"free":3627.26},{"epoch":26109428,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":505.54,"free":3627.29},{"epoch":26109429,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":505.53,"free":3627.28},{"epoch":26109430,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":504.55,"free":3628.27},{"epoch":26109431,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":506.34,"free":3626.48},{"epoch":26109432,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":505.73,"free":3627.09},{"epoch":26109433,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.72,"free":3627.09},{"epoch":26109434,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":505.69,"free":3627.12},{"epoch":26109435,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":504.76,"free":3628.06},{"epoch":26109436,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":506.25,"free":3626.57},{"epoch":26109437,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":505.85,"free":3626.96},{"epoch":26109438,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":505.82,"free":3626.99},{"epoch":26109439,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":505.81,"free":3626.99},{"epoch":26109440,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":506.04,"free":3626.78},{"epoch":26109441,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":506.45,"free":3626.37},{"epoch":26109442,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":505.51,"free":3627.3},{"epoch":26109443,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":505.51,"free":3627.3},{"epoch":26109444,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.47,"free":3627.33},{"epoch":26109445,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":505.48,"free":3627.34},{"epoch":26109446,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":505.8,"free":3627.01},{"epoch":26109447,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":505.44,"free":3627.36},{"epoch":26109448,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":505.47,"free":3627.34},{"epoch":26109449,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":505.59,"free":3627.21},{"epoch":26109450,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":505.82,"free":3627},{"epoch":26109451,"idl":99.77,"recv":0,"send":0,"writ":0.49,"used":506.16,"free":3626.65},{"epoch":26109452,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":505.78,"free":3627.02},{"epoch":26109453,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":505.77,"free":3627.03},{"epoch":26109454,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":505.74,"free":3627.05},{"epoch":26109455,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":505.26,"free":3627.55},{"epoch":26109456,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":505.83,"free":3626.98},{"epoch":26109457,"idl":99.9,"recv":0.02,"send":1.13,"writ":0.41,"used":505.5,"free":3627.31},{"epoch":26109458,"idl":99.83,"recv":0.01,"send":0.89,"writ":0.29,"used":505.47,"free":3627.31},{"epoch":26109459,"idl":99.81,"recv":0.01,"send":0.58,"writ":0.36,"used":505.99,"free":3626.77},{"epoch":26109460,"idl":99.81,"recv":0,"send":0.01,"writ":0.35,"used":506.05,"free":3626.72},{"epoch":26109461,"idl":99.91,"recv":0,"send":0.01,"writ":0.16,"used":505.82,"free":3626.95},{"epoch":26109462,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":505.14,"free":3627.62},{"epoch":26109463,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":504.79,"free":3627.96},{"epoch":26109464,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":504.56,"free":3628.2},{"epoch":26109465,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":504.05,"free":3628.73},{"epoch":26109466,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":504.01,"free":3628.77},{"epoch":26109467,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":504.61,"free":3628.17},{"epoch":26109468,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":504.22,"free":3628.56},{"epoch":26109469,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":504.21,"free":3628.56},{"epoch":26109470,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":504.44,"free":3628.35},{"epoch":26109471,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":504.44,"free":3628.35},{"epoch":26109472,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":503.85,"free":3628.93},{"epoch":26109473,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":502.85,"free":3629.92},{"epoch":26109474,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":502.83,"free":3629.95},{"epoch":26109475,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":503.8,"free":3628.99},{"epoch":26109476,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":503.79,"free":3628.99},{"epoch":26109477,"idl":99.76,"recv":0,"send":0,"writ":0.53,"used":504.29,"free":3628.49},{"epoch":26109478,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":504,"free":3628.78},{"epoch":26109479,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":503.99,"free":3628.78},{"epoch":26109480,"idl":99.66,"recv":0,"send":0,"writ":0.28,"used":503.99,"free":3628.8},{"epoch":26109481,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":503.97,"free":3628.83},{"epoch":26109482,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":504.46,"free":3628.34},{"epoch":26109483,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":504.17,"free":3628.62},{"epoch":26109484,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":504.3,"free":3628.48},{"epoch":26109485,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":504.57,"free":3628.22},{"epoch":26109486,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":504.55,"free":3628.24},{"epoch":26109487,"idl":99.78,"recv":0,"send":0,"writ":0.51,"used":504.31,"free":3628.48},{"epoch":26109488,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":503.28,"free":3629.5},{"epoch":26109489,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":504.21,"free":3628.55},{"epoch":26109490,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":503.52,"free":3629.25},{"epoch":26109491,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":503.46,"free":3629.3},{"epoch":26109492,"idl":94.96,"recv":0.35,"send":0.86,"writ":80.02,"used":515.98,"free":3617.29},{"epoch":26109493,"idl":99.75,"recv":0,"send":0,"writ":185.15,"used":506.81,"free":3625.43},{"epoch":26109494,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.79,"free":3625.45},{"epoch":26109495,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":506.78,"free":3625.47},{"epoch":26109496,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.77,"free":3625.48},{"epoch":26109497,"idl":99.75,"recv":0,"send":0,"writ":0.63,"used":506.98,"free":3625.27},{"epoch":26109498,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":504.56,"free":3627.72},{"epoch":26109499,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":504.54,"free":3627.74},{"epoch":26109500,"idl":99.83,"recv":0,"send":0,"writ":0.26,"used":504.9,"free":3627.39},{"epoch":26109501,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":504.98,"free":3627.3},{"epoch":26109502,"idl":99.74,"recv":0,"send":0.02,"writ":0.46,"used":504.86,"free":3627.42},{"epoch":26109503,"idl":99.86,"recv":0,"send":0.01,"writ":0.32,"used":504.66,"free":3627.61},{"epoch":26109504,"idl":99.87,"recv":0.05,"send":1.76,"writ":0.35,"used":504.7,"free":3627.56},{"epoch":26109505,"idl":99.75,"recv":0.03,"send":0.9,"writ":0.52,"used":504.91,"free":3627.38},{"epoch":26109506,"idl":99.85,"recv":0.01,"send":0.2,"writ":0.27,"used":504.86,"free":3627.42},{"epoch":26109507,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":504.83,"free":3627.45},{"epoch":26109508,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.54,"used":505.27,"free":3626.99},{"epoch":26109509,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":504.63,"free":3627.62},{"epoch":26109510,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":504.88,"free":3627.39},{"epoch":26109511,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":504.86,"free":3627.41},{"epoch":26109512,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":504.83,"free":3627.44},{"epoch":26109513,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":505.08,"free":3627.19},{"epoch":26109514,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":504.54,"free":3627.72},{"epoch":26109515,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":504.56,"free":3627.72},{"epoch":26109516,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":504.61,"free":3627.66},{"epoch":26109517,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":504.69,"free":3627.57},{"epoch":26109518,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":505.17,"free":3627.09},{"epoch":26109519,"idl":99.74,"recv":0,"send":0,"writ":0.39,"used":504.88,"free":3627.36},{"epoch":26109520,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":504.89,"free":3627.37},{"epoch":26109521,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":504.86,"free":3627.39},{"epoch":26109522,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":504.85,"free":3627.4},{"epoch":26109523,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":505.03,"free":3627.21},{"epoch":26109524,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":504.56,"free":3627.69},{"epoch":26109525,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":504.79,"free":3627.48},{"epoch":26109526,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":504.79,"free":3627.48},{"epoch":26109527,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":504.76,"free":3627.5},{"epoch":26109528,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":505.58,"free":3626.68},{"epoch":26109529,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":504.91,"free":3627.34},{"epoch":26109530,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":504.22,"free":3628.05},{"epoch":26109531,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":504.15,"free":3628.12},{"epoch":26109532,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":504.14,"free":3628.12},{"epoch":26109533,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":504.88,"free":3627.38},{"epoch":26109534,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":504.84,"free":3627.41},{"epoch":26109535,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":504.12,"free":3628.15},{"epoch":26109536,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":504.07,"free":3628.19},{"epoch":26109537,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":504.05,"free":3628.21},{"epoch":26109538,"idl":99.72,"recv":0,"send":0,"writ":0.35,"used":504.59,"free":3627.66},{"epoch":26109539,"idl":99.88,"recv":0,"send":0,"writ":0.37,"used":504.68,"free":3627.58},{"epoch":26109540,"idl":99.61,"recv":0,"send":0,"writ":0.28,"used":504.19,"free":3628.07},{"epoch":26109541,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":504.17,"free":3628.1},{"epoch":26109542,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":504.14,"free":3628.12},{"epoch":26109543,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":504.13,"free":3628.12},{"epoch":26109544,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":505.15,"free":3627.1},{"epoch":26109545,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":504.85,"free":3627.41},{"epoch":26109546,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":504.82,"free":3627.44},{"epoch":26109547,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":504.81,"free":3627.45},{"epoch":26109548,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":504.78,"free":3627.48},{"epoch":26109549,"idl":99.61,"recv":0,"send":0,"writ":0.72,"used":505.3,"free":3626.93},{"epoch":26109550,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":504.86,"free":3627.39},{"epoch":26109551,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":504.92,"free":3627.32},{"epoch":26109552,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":504.91,"free":3627.33},{"epoch":26109553,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":504.88,"free":3627.36},{"epoch":26109554,"idl":99.68,"recv":0,"send":0,"writ":0.61,"used":505.35,"free":3626.88},{"epoch":26109555,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":504.86,"free":3627.39},{"epoch":26109556,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":504.82,"free":3627.42},{"epoch":26109557,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":505.06,"free":3627.18},{"epoch":26109558,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":505.04,"free":3627.19},{"epoch":26109559,"idl":99.76,"recv":0,"send":0,"writ":0.6,"used":505.37,"free":3626.85},{"epoch":26109560,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":504.54,"free":3627.71},{"epoch":26109561,"idl":99.14,"recv":0,"send":0,"writ":0.17,"used":504.51,"free":3627.73},{"epoch":26109562,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":504.22,"free":3628.01},{"epoch":26109563,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":504.16,"free":3628.07},{"epoch":26109564,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":504.69,"free":3627.53},{"epoch":26109565,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":504.9,"free":3627.34},{"epoch":26109566,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":504.85,"free":3627.39},{"epoch":26109567,"idl":99.86,"recv":0,"send":0,"writ":0.22,"used":504.82,"free":3627.42},{"epoch":26109568,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":504.8,"free":3627.43},{"epoch":26109569,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":505.25,"free":3626.98},{"epoch":26109570,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":504.09,"free":3628.15},{"epoch":26109571,"idl":99.91,"recv":0,"send":0.01,"writ":0.18,"used":504.15,"free":3628.09},{"epoch":26109572,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":504.2,"free":3628.04},{"epoch":26109573,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":504.18,"free":3628.05},{"epoch":26109574,"idl":99.77,"recv":0,"send":0,"writ":0.42,"used":504.97,"free":3627.25},{"epoch":26109575,"idl":99.76,"recv":0,"send":0.01,"writ":0.47,"used":505.13,"free":3627.11},{"epoch":26109576,"idl":99.89,"recv":0,"send":0.01,"writ":0.2,"used":505.04,"free":3627.2},{"epoch":26109577,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":505.03,"free":3627.21},{"epoch":26109578,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":505.09,"free":3627.14},{"epoch":26109579,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":505.16,"free":3627.04},{"epoch":26109580,"idl":99.63,"recv":0,"send":0,"writ":0.71,"used":505.69,"free":3626.53},{"epoch":26109581,"idl":99.89,"recv":0,"send":0.01,"writ":0.18,"used":505.14,"free":3627.08},{"epoch":26109582,"idl":99.88,"recv":0.01,"send":0.13,"writ":0.19,"used":505.03,"free":3627.18},{"epoch":26109583,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":505.07,"free":3627.14},{"epoch":26109584,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":505.16,"free":3627.05},{"epoch":26109585,"idl":99.63,"recv":0,"send":0,"writ":0.71,"used":505.56,"free":3626.66},{"epoch":26109586,"idl":99.88,"recv":0.04,"send":1.13,"writ":0.21,"used":505.12,"free":3627.09},{"epoch":26109587,"idl":99.85,"recv":0,"send":0,"writ":0.22,"used":505.07,"free":3627.13},{"epoch":26109588,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":505.06,"free":3627.14},{"epoch":26109589,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.03,"free":3627.16},{"epoch":26109590,"idl":99.69,"recv":0,"send":0,"writ":0.69,"used":505.4,"free":3626.81},{"epoch":26109591,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.01,"free":3627.19},{"epoch":26109592,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505,"free":3627.2},{"epoch":26109593,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":504.98,"free":3627.21},{"epoch":26109594,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":504.96,"free":3627.23},{"epoch":26109595,"idl":99.71,"recv":0,"send":0,"writ":0.69,"used":505.51,"free":3626.69},{"epoch":26109596,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.16,"free":3627.04},{"epoch":26109597,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":505.14,"free":3627.06},{"epoch":26109598,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.12,"free":3627.07},{"epoch":26109599,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":505.1,"free":3627.09},{"epoch":26109600,"idl":99.51,"recv":0,"send":0,"writ":0.64,"used":504.65,"free":3627.55},{"epoch":26109601,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":504.82,"free":3627.38},{"epoch":26109602,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":504.81,"free":3627.39},{"epoch":26109603,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":504.78,"free":3627.41},{"epoch":26109604,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":504.77,"free":3627.42},{"epoch":26109605,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":505.16,"free":3627.04},{"epoch":26109606,"idl":99.63,"recv":0,"send":0,"writ":0.32,"used":505.08,"free":3627.13},{"epoch":26109607,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":505.15,"free":3627.04},{"epoch":26109608,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":505.13,"free":3627.06},{"epoch":26109609,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":505.14,"free":3627.02},{"epoch":26109610,"idl":99.59,"recv":0,"send":0,"writ":0.45,"used":505.49,"free":3626.69},{"epoch":26109611,"idl":99.89,"recv":0,"send":0,"writ":0.4,"used":505.09,"free":3627.09},{"epoch":26109612,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":505.06,"free":3627.12},{"epoch":26109613,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":505.05,"free":3627.12},{"epoch":26109614,"idl":94.16,"recv":0.47,"send":0.01,"writ":263.98,"used":515.91,"free":3616.28},{"epoch":26109615,"idl":99.51,"recv":0,"send":0,"writ":0.55,"used":506.97,"free":3625.89},{"epoch":26109616,"idl":99.9,"recv":0,"send":0,"writ":0.39,"used":506.79,"free":3626.07},{"epoch":26109617,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":506.77,"free":3626.08},{"epoch":26109618,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.75,"free":3626.1},{"epoch":26109619,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":505.24,"free":3627.63},{"epoch":26109620,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":504.61,"free":3628.3},{"epoch":26109621,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":505.06,"free":3627.84},{"epoch":26109622,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":503.93,"free":3628.96},{"epoch":26109623,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":504,"free":3628.89},{"epoch":26109624,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":503.98,"free":3628.92},{"epoch":26109625,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":503.75,"free":3629.2},{"epoch":26109626,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":504.26,"free":3628.69},{"epoch":26109627,"idl":99.88,"recv":0.02,"send":0.1,"writ":0.2,"used":503.96,"free":3628.98},{"epoch":26109628,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":503.94,"free":3628.97},{"epoch":26109629,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":503.93,"free":3628.98},{"epoch":26109630,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":504.4,"free":3628.52},{"epoch":26109631,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":504.76,"free":3628.17},{"epoch":26109632,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":504.38,"free":3628.56},{"epoch":26109633,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":504.36,"free":3628.57},{"epoch":26109634,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":504.34,"free":3628.59},{"epoch":26109635,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":504.35,"free":3628.59},{"epoch":26109636,"idl":99.77,"recv":0,"send":0,"writ":0.43,"used":504.77,"free":3628.17},{"epoch":26109637,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":504.49,"free":3628.44},{"epoch":26109638,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":504.47,"free":3628.46},{"epoch":26109639,"idl":99.63,"recv":0,"send":0,"writ":0.34,"used":504.47,"free":3628.44},{"epoch":26109640,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":503.96,"free":3628.96},{"epoch":26109641,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":504.78,"free":3628.13},{"epoch":26109642,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":504.4,"free":3628.51},{"epoch":26109643,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":504.39,"free":3628.52},{"epoch":26109644,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":504.36,"free":3628.56},{"epoch":26109645,"idl":99.85,"recv":0,"send":0,"writ":0.41,"used":504.62,"free":3628.32},{"epoch":26109646,"idl":99.77,"recv":0,"send":0,"writ":0.62,"used":505.08,"free":3627.86},{"epoch":26109647,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":504.34,"free":3628.6},{"epoch":26109648,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":504.38,"free":3628.55},{"epoch":26109649,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":504.48,"free":3628.44},{"epoch":26109650,"idl":99.67,"recv":0.03,"send":0,"writ":0.43,"used":504.51,"free":3628.43},{"epoch":26109651,"idl":99.69,"recv":0.02,"send":0.09,"writ":0.54,"used":504.72,"free":3628.21},{"epoch":26109652,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":504.81,"free":3628.1},{"epoch":26109653,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":504.8,"free":3628.11},{"epoch":26109654,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":504.89,"free":3628.01},{"epoch":26109655,"idl":99.69,"recv":0,"send":0,"writ":0.38,"used":503.77,"free":3629.15},{"epoch":26109656,"idl":99.74,"recv":0,"send":0,"writ":0.36,"used":504.07,"free":3628.84},{"epoch":26109657,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":504.41,"free":3628.5},{"epoch":26109658,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":504.39,"free":3628.52},{"epoch":26109659,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":504.37,"free":3628.53},{"epoch":26109660,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":504.62,"free":3628.31},{"epoch":26109661,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":504.6,"free":3628.31},{"epoch":26109662,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":505.34,"free":3627.57},{"epoch":26109663,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":504.8,"free":3628.11},{"epoch":26109664,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":504.77,"free":3628.13},{"epoch":26109665,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":504.9,"free":3628.02},{"epoch":26109666,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":504.94,"free":3627.97},{"epoch":26109667,"idl":99.76,"recv":0,"send":0,"writ":0.53,"used":505.28,"free":3627.63},{"epoch":26109668,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":504.9,"free":3628},{"epoch":26109669,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":504.65,"free":3628.23},{"epoch":26109670,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":504.89,"free":3628.02},{"epoch":26109671,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":504.86,"free":3628.04},{"epoch":26109672,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":505.2,"free":3627.69},{"epoch":26109673,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":504.82,"free":3628.07},{"epoch":26109674,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":504.81,"free":3628.07},{"epoch":26109675,"idl":88.97,"recv":0,"send":0,"writ":0.3,"used":503.59,"free":3629.31},{"epoch":26109676,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":503.56,"free":3629.34},{"epoch":26109677,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":504.73,"free":3628.16},{"epoch":26109678,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":504.71,"free":3628.18},{"epoch":26109679,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":504.69,"free":3628.2},{"epoch":26109680,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":504.69,"free":3628.21},{"epoch":26109681,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":504.67,"free":3628.23},{"epoch":26109682,"idl":99.53,"recv":0,"send":0,"writ":0.57,"used":504.76,"free":3628.13},{"epoch":26109683,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":504.63,"free":3628.26},{"epoch":26109684,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":504.61,"free":3628.27},{"epoch":26109685,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":504.91,"free":3627.99},{"epoch":26109686,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":504.82,"free":3628.1},{"epoch":26109687,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":505.13,"free":3627.79},{"epoch":26109688,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":504.7,"free":3628.22},{"epoch":26109689,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":504.71,"free":3628.2},{"epoch":26109690,"idl":99.61,"recv":0,"send":0,"writ":0.29,"used":503.99,"free":3628.94},{"epoch":26109691,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":503.95,"free":3628.98},{"epoch":26109692,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":504.29,"free":3628.63},{"epoch":26109693,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":504.9,"free":3628.02},{"epoch":26109694,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":504.87,"free":3628.04},{"epoch":26109695,"idl":99.69,"recv":0,"send":0,"writ":0.35,"used":505.1,"free":3627.83},{"epoch":26109696,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":505.09,"free":3627.84},{"epoch":26109697,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":505.06,"free":3627.86},{"epoch":26109698,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":505.33,"free":3627.58},{"epoch":26109699,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":504.68,"free":3628.22},{"epoch":26109700,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":504.21,"free":3628.71},{"epoch":26109701,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":504.18,"free":3628.74},{"epoch":26109702,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":504.15,"free":3628.76},{"epoch":26109703,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":504.98,"free":3627.93},{"epoch":26109704,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":504.86,"free":3628.08},{"epoch":26109705,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":504.85,"free":3628.11},{"epoch":26109706,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":504.83,"free":3628.11},{"epoch":26109707,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":504.82,"free":3628.12},{"epoch":26109708,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":505.15,"free":3627.79},{"epoch":26109709,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":504.78,"free":3628.15},{"epoch":26109710,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":505.18,"free":3627.77},{"epoch":26109711,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":505.2,"free":3627.75},{"epoch":26109712,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.17,"free":3627.77},{"epoch":26109713,"idl":99.76,"recv":0,"send":0,"writ":0.49,"used":505.6,"free":3627.34},{"epoch":26109714,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":504.88,"free":3628.05},{"epoch":26109715,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":503.92,"free":3629.03},{"epoch":26109716,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":503.88,"free":3629.07},{"epoch":26109717,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":503.87,"free":3629.07},{"epoch":26109718,"idl":99.77,"recv":0,"send":0,"writ":0.51,"used":504.11,"free":3628.83},{"epoch":26109719,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":503.58,"free":3629.35},{"epoch":26109720,"idl":99.59,"recv":0,"send":0,"writ":0.3,"used":503.66,"free":3629.29},{"epoch":26109721,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":503.56,"free":3629.38},{"epoch":26109722,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":503.6,"free":3629.34},{"epoch":26109723,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":504.28,"free":3628.66},{"epoch":26109724,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":505.16,"free":3627.77},{"epoch":26109725,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":505.39,"free":3627.56},{"epoch":26109726,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":505.39,"free":3627.56},{"epoch":26109727,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":505.35,"free":3627.59},{"epoch":26109728,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":505.7,"free":3627.24},{"epoch":26109729,"idl":99.82,"recv":0,"send":0,"writ":0.4,"used":504.83,"free":3628.08},{"epoch":26109730,"idl":99.79,"recv":0,"send":0,"writ":0.37,"used":504.83,"free":3628.1},{"epoch":26109731,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":504.8,"free":3628.12},{"epoch":26109732,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":504.8,"free":3628.12},{"epoch":26109733,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":504.76,"free":3628.15},{"epoch":26109734,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":505.82,"free":3627.09},{"epoch":26109735,"idl":98.18,"recv":0,"send":0,"writ":0.34,"used":505.42,"free":3627.5},{"epoch":26109736,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":505.41,"free":3627.5},{"epoch":26109737,"idl":99.85,"recv":0,"send":0.01,"writ":0.22,"used":505.37,"free":3627.55},{"epoch":26109738,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":505.32,"free":3627.58},{"epoch":26109739,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":505.46,"free":3627.44},{"epoch":26109740,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":505.05,"free":3627.87},{"epoch":26109741,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":505.03,"free":3627.88},{"epoch":26109742,"idl":99.47,"recv":0,"send":0,"writ":0.21,"used":504.8,"free":3628.1},{"epoch":26109743,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":504.82,"free":3628.08},{"epoch":26109744,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":504.86,"free":3628.03},{"epoch":26109745,"idl":99.72,"recv":0,"send":0,"writ":0.35,"used":505.4,"free":3627.52},{"epoch":26109746,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":505.38,"free":3627.53},{"epoch":26109747,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":505.37,"free":3627.54},{"epoch":26109748,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":505.33,"free":3627.57},{"epoch":26109749,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":505.68,"free":3627.22},{"epoch":26109750,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":504.84,"free":3628.07},{"epoch":26109751,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":504.82,"free":3628.09},{"epoch":26109752,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":504.79,"free":3628.12},{"epoch":26109753,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":504.78,"free":3628.12},{"epoch":26109754,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":504.44,"free":3628.45},{"epoch":26109755,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":503.1,"free":3629.81},{"epoch":26109756,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":503.22,"free":3629.69},{"epoch":26109757,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":503.22,"free":3629.69},{"epoch":26109758,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":503.19,"free":3629.71},{"epoch":26109759,"idl":99.53,"recv":0,"send":0,"writ":0.71,"used":505.49,"free":3627.39},{"epoch":26109760,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":504.66,"free":3628.24},{"epoch":26109761,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":504.62,"free":3628.27},{"epoch":26109762,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":504.59,"free":3628.3},{"epoch":26109763,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":504.58,"free":3628.3},{"epoch":26109764,"idl":99.67,"recv":0,"send":0,"writ":0.41,"used":504.99,"free":3627.9},{"epoch":26109765,"idl":99.7,"recv":0,"send":0,"writ":0.44,"used":505.31,"free":3627.6},{"epoch":26109766,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":505.28,"free":3627.63},{"epoch":26109767,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.28,"free":3627.63},{"epoch":26109768,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":505.42,"free":3627.48},{"epoch":26109769,"idl":99.69,"recv":0,"send":0,"writ":0.41,"used":505.76,"free":3627.14},{"epoch":26109770,"idl":99.71,"recv":0,"send":0,"writ":0.42,"used":504.71,"free":3628.2},{"epoch":26109771,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":504.39,"free":3628.51},{"epoch":26109772,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":504.37,"free":3628.53},{"epoch":26109773,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":504.35,"free":3628.55},{"epoch":26109774,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":504.33,"free":3628.56},{"epoch":26109775,"idl":99.62,"recv":0,"send":0,"writ":0.71,"used":505.12,"free":3627.78},{"epoch":26109776,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":504.56,"free":3628.34},{"epoch":26109777,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":504.52,"free":3628.37},{"epoch":26109778,"idl":99.79,"recv":0.02,"send":0.06,"writ":0.19,"used":504.54,"free":3628.35},{"epoch":26109779,"idl":99.8,"recv":0.04,"send":0.03,"writ":0.17,"used":504.56,"free":3628.31},{"epoch":26109780,"idl":99.51,"recv":0,"send":0,"writ":0.75,"used":505.21,"free":3627.68},{"epoch":26109781,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":504.82,"free":3628.07},{"epoch":26109782,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":504.79,"free":3628.08},{"epoch":26109783,"idl":99.75,"recv":0.02,"send":0.01,"writ":0.66,"used":505.82,"free":3626.98},{"epoch":26109784,"idl":88.96,"recv":25.5,"send":0.19,"writ":102.73,"used":528.85,"free":3595.44},{"epoch":26109785,"idl":81.11,"recv":0.02,"send":0.07,"writ":181.16,"used":873.74,"free":3231.25},{"epoch":26109786,"idl":99.52,"recv":0.02,"send":0.03,"writ":0.35,"used":586.99,"free":3521},{"epoch":26109787,"idl":99.77,"recv":0.02,"send":0.04,"writ":0.25,"used":556.69,"free":3551.29},{"epoch":26109788,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":556.78,"free":3551.2},{"epoch":26109789,"idl":99.7,"recv":0,"send":0,"writ":0.36,"used":558.94,"free":3549},{"epoch":26109790,"idl":99.58,"recv":0,"send":0,"writ":0.77,"used":556.58,"free":3551.43},{"epoch":26109791,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":556.29,"free":3551.73},{"epoch":26109792,"idl":99.79,"recv":0.02,"send":0,"writ":0.23,"used":556.26,"free":3551.75},{"epoch":26109793,"idl":83.37,"recv":0.06,"send":2.09,"writ":3.98,"used":629.78,"free":3478.21},{"epoch":26109794,"idl":83.22,"recv":0.07,"send":2.02,"writ":3.88,"used":765.75,"free":3342.22},{"epoch":26109795,"idl":83.03,"recv":0.02,"send":0.03,"writ":4.51,"used":915.83,"free":3192.12},{"epoch":26109796,"idl":99.72,"recv":0.04,"send":1.09,"writ":0.31,"used":898.99,"free":3208.97},{"epoch":26109797,"idl":99.68,"recv":0,"send":0,"writ":0.21,"used":559.17,"free":3548.78},{"epoch":26109798,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":557.41,"free":3550.54},{"epoch":26109799,"idl":99.75,"recv":0.1,"send":3.81,"writ":0.25,"used":557.99,"free":3549.93},{"epoch":26109800,"idl":99.51,"recv":0.01,"send":0.02,"writ":0.56,"used":558.82,"free":3549.1},{"epoch":26109801,"idl":99.74,"recv":0,"send":0.01,"writ":0.36,"used":559.49,"free":3548.42},{"epoch":26109802,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":558.97,"free":3548.94},{"epoch":26109803,"idl":99.8,"recv":0,"send":0.01,"writ":0.17,"used":558.22,"free":3549.68},{"epoch":26109804,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":558.19,"free":3549.7},{"epoch":26109805,"idl":99.53,"recv":0,"send":0,"writ":0.72,"used":559.26,"free":3548.65},{"epoch":26109806,"idl":85.66,"recv":0.11,"send":0.87,"writ":1.03,"used":640.04,"free":3467.81},{"epoch":26109807,"idl":97.02,"recv":0.05,"send":1.76,"writ":3.19,"used":888.33,"free":3219.5},{"epoch":26109808,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":554.61,"free":3553.21},{"epoch":26109809,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":554.59,"free":3553.23},{"epoch":26109810,"idl":99.56,"recv":0,"send":0,"writ":0.57,"used":555.58,"free":3552.25},{"epoch":26109811,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":553.83,"free":3554},{"epoch":26109812,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":553.92,"free":3553.91},{"epoch":26109813,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":553.93,"free":3553.89},{"epoch":26109814,"idl":99.8,"recv":0.01,"send":0.06,"writ":0.22,"used":553.84,"free":3553.97},{"epoch":26109815,"idl":99.71,"recv":0.01,"send":0.07,"writ":0.36,"used":555.81,"free":3552.01},{"epoch":26109816,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":556.42,"free":3551.4},{"epoch":26109817,"idl":99.82,"recv":0.01,"send":0.07,"writ":0.18,"used":556.12,"free":3551.69},{"epoch":26109818,"idl":99.79,"recv":0.02,"send":0.78,"writ":0.23,"used":556.15,"free":3551.66},{"epoch":26109819,"idl":99.54,"recv":0,"send":0.03,"writ":0.38,"used":556.34,"free":3551.44},{"epoch":26109820,"idl":99.61,"recv":0,"send":0,"writ":0.31,"used":555.36,"free":3552.44},{"epoch":26109821,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":556.9,"free":3550.89},{"epoch":26109822,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":556.52,"free":3551.27},{"epoch":26109823,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":555.97,"free":3551.81},{"epoch":26109824,"idl":99.78,"recv":0.02,"send":0,"writ":0.21,"used":555.6,"free":3552.18},{"epoch":26109825,"idl":68.01,"recv":0.05,"send":0.91,"writ":5.05,"used":874.48,"free":3233.3},{"epoch":26109826,"idl":98.18,"recv":0.02,"send":0.89,"writ":3.36,"used":911.84,"free":3195.93},{"epoch":26109827,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":608.45,"free":3499.32},{"epoch":26109828,"idl":99.78,"recv":0.01,"send":0.64,"writ":0.22,"used":554.84,"free":3552.92},{"epoch":26109829,"idl":99.82,"recv":0.02,"send":0.96,"writ":0.23,"used":554.79,"free":3552.97},{"epoch":26109830,"idl":99.69,"recv":0,"send":0,"writ":0.37,"used":555.78,"free":3551.99},{"epoch":26109831,"idl":99.7,"recv":0.01,"send":0.86,"writ":0.59,"used":556.51,"free":3551.26},{"epoch":26109832,"idl":99.83,"recv":0,"send":0.02,"writ":0.49,"used":556.23,"free":3551.52},{"epoch":26109833,"idl":99.82,"recv":0.01,"send":0.6,"writ":0.24,"used":556.24,"free":3551.51},{"epoch":26109834,"idl":99.83,"recv":0,"send":0.01,"writ":0.19,"used":556.24,"free":3551.5},{"epoch":26109835,"idl":99.73,"recv":0,"send":0.01,"writ":0.4,"used":556.78,"free":3550.97},{"epoch":26109836,"idl":99.69,"recv":0,"send":0,"writ":0.7,"used":556.95,"free":3550.8},{"epoch":26109837,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":556.54,"free":3551.21},{"epoch":26109838,"idl":99.8,"recv":0.03,"send":0.89,"writ":0.24,"used":556.49,"free":3551.25},{"epoch":26109839,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":556.55,"free":3551.18},{"epoch":26109840,"idl":99.45,"recv":0,"send":0,"writ":0.35,"used":556.16,"free":3551.59},{"epoch":26109841,"idl":99.68,"recv":0.01,"send":0.41,"writ":0.54,"used":556.66,"free":3551.08},{"epoch":26109842,"idl":99.82,"recv":0,"send":0.03,"writ":0.34,"used":556.09,"free":3551.64},{"epoch":26109843,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":555.25,"free":3552.48},{"epoch":26109844,"idl":99.81,"recv":0.03,"send":0.62,"writ":0.29,"used":555.3,"free":3552.42},{"epoch":26109845,"idl":99.66,"recv":0.01,"send":0.03,"writ":0.42,"used":555.5,"free":3552.23},{"epoch":26109846,"idl":99.66,"recv":0.01,"send":0.05,"writ":0.38,"used":555.97,"free":3551.75},{"epoch":26109847,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":556.97,"free":3550.75},{"epoch":26109848,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":556.96,"free":3550.75},{"epoch":26109849,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":557.16,"free":3550.52},{"epoch":26109850,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":557.46,"free":3550.24},{"epoch":26109851,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":557.58,"free":3550.11},{"epoch":26109852,"idl":99.65,"recv":0.01,"send":0.05,"writ":0.58,"used":557.66,"free":3550.04},{"epoch":26109853,"idl":99.45,"recv":0.11,"send":1.25,"writ":0.43,"used":558.21,"free":3549.39},{"epoch":26109854,"idl":99.35,"recv":0.43,"send":12.02,"writ":0.59,"used":558.93,"free":3548.53},{"epoch":26109855,"idl":98.97,"recv":0.6,"send":17.85,"writ":0.8,"used":560.43,"free":3547.05},{"epoch":26109856,"idl":99.39,"recv":0.38,"send":10.44,"writ":0.64,"used":560.42,"free":3547.05},{"epoch":26109857,"idl":95.55,"recv":1.53,"send":53.1,"writ":80.43,"used":572.05,"free":3536.82},{"epoch":26109858,"idl":99.25,"recv":0.64,"send":19.14,"writ":0.74,"used":563.42,"free":3543.63},{"epoch":26109859,"idl":99.36,"recv":0.25,"send":5.46,"writ":0.4,"used":563.18,"free":3543.88},{"epoch":26109860,"idl":99.65,"recv":0.01,"send":0.66,"writ":0.51,"used":562.4,"free":3544.68},{"epoch":26109861,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":562.45,"free":3544.63},{"epoch":26109862,"idl":99.63,"recv":0,"send":0,"writ":0.66,"used":560.69,"free":3546.41},{"epoch":26109863,"idl":99.75,"recv":0.03,"send":0.03,"writ":0.22,"used":558.92,"free":3548.19},{"epoch":26109864,"idl":98.5,"recv":0.03,"send":0.04,"writ":0.29,"used":558.8,"free":3548.28},{"epoch":26109865,"idl":99.65,"recv":0.02,"send":0.02,"writ":0.43,"used":559.51,"free":3547.57},{"epoch":26109866,"idl":99.77,"recv":0.05,"send":0.05,"writ":0.34,"used":559.52,"free":3547.56},{"epoch":26109867,"idl":99.31,"recv":17.1,"send":0.77,"writ":5.04,"used":560.27,"free":3544.24},{"epoch":26109868,"idl":99.4,"recv":13.18,"send":28.19,"writ":23.96,"used":560.14,"free":3519.5},{"epoch":26109869,"idl":83.49,"recv":0.06,"send":1.71,"writ":4.06,"used":769.03,"free":3309.45},{"epoch":26109870,"idl":99.46,"recv":0.02,"send":0.87,"writ":0.47,"used":814.47,"free":3264.01},{"epoch":26109871,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":559.34,"free":3519.13},{"epoch":26109872,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":560.44,"free":3518.02},{"epoch":26109873,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":560.89,"free":3517.56},{"epoch":26109874,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":560.93,"free":3517.53},{"epoch":26109875,"idl":99.66,"recv":0,"send":0,"writ":0.31,"used":560.93,"free":3517.54},{"epoch":26109876,"idl":99.79,"recv":0.03,"send":0.88,"writ":0.22,"used":560.89,"free":3517.57},{"epoch":26109877,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":561.37,"free":3517.08},{"epoch":26109878,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":561.3,"free":3517.14},{"epoch":26109879,"idl":99.51,"recv":0,"send":0,"writ":0.28,"used":559.88,"free":3518.53},{"epoch":26109880,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":560.3,"free":3518.13},{"epoch":26109881,"idl":99.8,"recv":0.04,"send":2.36,"writ":0.21,"used":560.44,"free":3517.98},{"epoch":26109882,"idl":99.63,"recv":0.01,"send":0.08,"writ":0.59,"used":560.92,"free":3517.49},{"epoch":26109883,"idl":99.83,"recv":0,"send":0.01,"writ":0.22,"used":561.51,"free":3516.89},{"epoch":26109884,"idl":99.79,"recv":0.01,"send":0.19,"writ":0.18,"used":561.61,"free":3516.78},{"epoch":26109885,"idl":99.69,"recv":0,"send":0.02,"writ":0.42,"used":561.77,"free":3516.63},{"epoch":26109886,"idl":99.84,"recv":0,"send":0.01,"writ":0.17,"used":561.38,"free":3517.02},{"epoch":26109887,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":561.36,"free":3517.03},{"epoch":26109888,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":560.92,"free":3517.47},{"epoch":26109889,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":560.89,"free":3517.5},{"epoch":26109890,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":561.14,"free":3517.26},{"epoch":26109891,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":561.11,"free":3517.29},{"epoch":26109892,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":561.43,"free":3516.97},{"epoch":26109893,"idl":99.82,"recv":0,"send":0,"writ":0.38,"used":559.85,"free":3518.54},{"epoch":26109894,"idl":99.8,"recv":0,"send":0.01,"writ":0.16,"used":559.82,"free":3518.56},{"epoch":26109895,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":560.55,"free":3517.86},{"epoch":26109896,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":560.62,"free":3517.78},{"epoch":26109897,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":560.71,"free":3517.69},{"epoch":26109898,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":561.03,"free":3517.36},{"epoch":26109899,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":560.66,"free":3517.73},{"epoch":26109900,"idl":99.42,"recv":0,"send":0,"writ":0.37,"used":561.63,"free":3516.78},{"epoch":26109901,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":561.63,"free":3516.77},{"epoch":26109902,"idl":99.73,"recv":0.01,"send":0.64,"writ":0.29,"used":561.6,"free":3516.8},{"epoch":26109903,"idl":99.69,"recv":0,"send":0.01,"writ":0.6,"used":562.21,"free":3516.17},{"epoch":26109904,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":561.13,"free":3517.25},{"epoch":26109905,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":560.89,"free":3517.5},{"epoch":26109906,"idl":99.84,"recv":0.01,"send":0.1,"writ":0.18,"used":560.85,"free":3517.54},{"epoch":26109907,"idl":99.83,"recv":0.01,"send":0.59,"writ":0.23,"used":560.85,"free":3517.53},{"epoch":26109908,"idl":99.68,"recv":0.01,"send":0.9,"writ":0.73,"used":561.51,"free":3516.87},{"epoch":26109909,"idl":99.65,"recv":0.01,"send":0.88,"writ":0.36,"used":561.38,"free":3516.97},{"epoch":26109910,"idl":99.74,"recv":0,"send":0.01,"writ":0.35,"used":561.23,"free":3517.12},{"epoch":26109911,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":561.15,"free":3517.2},{"epoch":26109912,"idl":99.8,"recv":0.04,"send":1.3,"writ":0.23,"used":561.14,"free":3517.19},{"epoch":26109913,"idl":99.69,"recv":0,"send":0,"writ":0.43,"used":561.72,"free":3516.62},{"epoch":26109914,"idl":99.83,"recv":0,"send":0.01,"writ":0.3,"used":561.84,"free":3516.52},{"epoch":26109915,"idl":99.7,"recv":0,"send":0,"writ":0.37,"used":562.3,"free":3516.07},{"epoch":26109916,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":562.31,"free":3516.06},{"epoch":26109917,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.2,"used":561.98,"free":3516.39},{"epoch":26109918,"idl":99.67,"recv":0.01,"send":0.18,"writ":0.44,"used":561.86,"free":3516.5},{"epoch":26109919,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":561.31,"free":3517.04},{"epoch":26109920,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":561.54,"free":3516.83},{"epoch":26109921,"idl":99.86,"recv":0,"send":0.01,"writ":0.17,"used":561.48,"free":3516.89},{"epoch":26109922,"idl":99.85,"recv":0,"send":0.02,"writ":0.22,"used":559.97,"free":3518.39},{"epoch":26109923,"idl":99.9,"recv":0.01,"send":0.52,"writ":0.21,"used":559.61,"free":3518.75},{"epoch":26109924,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":560.15,"free":3518.2},{"epoch":26109925,"idl":99.86,"recv":0.02,"send":0.94,"writ":0.33,"used":560.12,"free":3518.26},{"epoch":26109926,"idl":99.93,"recv":0,"send":0.01,"writ":0.21,"used":560.18,"free":3518.19},{"epoch":26109927,"idl":99.9,"recv":0,"send":0.01,"writ":0.16,"used":560.13,"free":3518.22},{"epoch":26109928,"idl":99.9,"recv":0,"send":0.01,"writ":0.2,"used":560.1,"free":3518.25},{"epoch":26109929,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":560.92,"free":3517.43},{"epoch":26109930,"idl":99.81,"recv":0,"send":0.02,"writ":0.41,"used":560.06,"free":3518.3},{"epoch":26109931,"idl":99.91,"recv":0.05,"send":2.39,"writ":0.15,"used":560.06,"free":3518.29},{"epoch":26109932,"idl":99.89,"recv":0,"send":0.02,"writ":0.25,"used":560.03,"free":3518.3},{"epoch":26109933,"idl":99.86,"recv":0.02,"send":0.71,"writ":0.26,"used":560.01,"free":3518.32},{"epoch":26109934,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":560.92,"free":3517.4},{"epoch":26109935,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":560.95,"free":3517.4},{"epoch":26109936,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":561.11,"free":3517.25},{"epoch":26109937,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":561.13,"free":3517.23},{"epoch":26109938,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":561.1,"free":3517.26},{"epoch":26109939,"idl":99.61,"recv":0,"send":0,"writ":0.67,"used":561.66,"free":3516.67},{"epoch":26109940,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":561.13,"free":3517.22},{"epoch":26109941,"idl":99.93,"recv":0,"send":0.02,"writ":0.14,"used":560.31,"free":3518.04},{"epoch":26109942,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":560.26,"free":3518.08},{"epoch":26109943,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":560.23,"free":3518.11},{"epoch":26109944,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":560.25,"free":3518.1},{"epoch":26109945,"idl":99.77,"recv":0,"send":0,"writ":0.36,"used":560.38,"free":3517.98},{"epoch":26109946,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":560.37,"free":3517.99},{"epoch":26109947,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":560.35,"free":3518.01},{"epoch":26109948,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":560.32,"free":3518.04},{"epoch":26109949,"idl":99.75,"recv":0,"send":0,"writ":0.43,"used":560.66,"free":3517.69},{"epoch":26109950,"idl":99.72,"recv":0,"send":0,"writ":0.43,"used":560.79,"free":3517.57},{"epoch":26109951,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":560.77,"free":3517.59},{"epoch":26109952,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":560.75,"free":3517.61},{"epoch":26109953,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":560.72,"free":3517.64},{"epoch":26109954,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":560.99,"free":3517.36},{"epoch":26109955,"idl":99.79,"recv":0,"send":0,"writ":0.38,"used":560.44,"free":3517.93},{"epoch":26109956,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":560.38,"free":3517.99},{"epoch":26109957,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.15,"used":560.34,"free":3518.02},{"epoch":26109958,"idl":99.91,"recv":0.01,"send":0.05,"writ":0.21,"used":560.27,"free":3518.08},{"epoch":26109959,"idl":99.78,"recv":0,"send":0,"writ":0.47,"used":560.74,"free":3517.6},{"epoch":26109960,"idl":99.68,"recv":0,"send":0,"writ":0.45,"used":560.36,"free":3517.99},{"epoch":26109961,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":560.33,"free":3518.02},{"epoch":26109962,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":560.31,"free":3518.04},{"epoch":26109963,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":560.28,"free":3518.06},{"epoch":26109964,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":560.26,"free":3518.07},{"epoch":26109965,"idl":99.6,"recv":0,"send":0,"writ":0.7,"used":560.84,"free":3517.51},{"epoch":26109966,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":560.47,"free":3517.88},{"epoch":26109967,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":560.46,"free":3517.88},{"epoch":26109968,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":560.43,"free":3517.91},{"epoch":26109969,"idl":99.79,"recv":0.02,"send":0.81,"writ":0.29,"used":561.08,"free":3517.24},{"epoch":26109970,"idl":99.69,"recv":0,"send":0.05,"writ":0.75,"used":561.71,"free":3516.62},{"epoch":26109971,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":561,"free":3517.33},{"epoch":26109972,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":560.97,"free":3517.35},{"epoch":26109973,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":560.94,"free":3517.38},{"epoch":26109974,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":560.92,"free":3517.39},{"epoch":26109975,"idl":99.6,"recv":0,"send":0,"writ":0.82,"used":561.89,"free":3516.44},{"epoch":26109976,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":561.35,"free":3516.97},{"epoch":26109977,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":561.34,"free":3516.97},{"epoch":26109978,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":561.31,"free":3517},{"epoch":26109979,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":560.35,"free":3517.96},{"epoch":26109980,"idl":99.64,"recv":0,"send":0,"writ":0.73,"used":560.85,"free":3517.48},{"epoch":26109981,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":560.54,"free":3517.77},{"epoch":26109982,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":560.36,"free":3517.95},{"epoch":26109983,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":560.25,"free":3518.06},{"epoch":26109984,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":560.22,"free":3518.08},{"epoch":26109985,"idl":98.34,"recv":0,"send":0,"writ":0.58,"used":561.11,"free":3517.21},{"epoch":26109986,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":561.07,"free":3517.24},{"epoch":26109987,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":561.09,"free":3517.22},{"epoch":26109988,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":561.06,"free":3517.25},{"epoch":26109989,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":561.05,"free":3517.25},{"epoch":26109990,"idl":99.51,"recv":0,"send":0,"writ":0.63,"used":560.65,"free":3517.66},{"epoch":26109991,"idl":99.86,"recv":0,"send":0,"writ":0.23,"used":560.78,"free":3517.53},{"epoch":26109992,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":560.75,"free":3517.55},{"epoch":26109993,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":560.74,"free":3517.56},{"epoch":26109994,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":560.71,"free":3517.59},{"epoch":26109995,"idl":99.58,"recv":0,"send":0,"writ":0.72,"used":561.76,"free":3516.56},{"epoch":26109996,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":561.19,"free":3517.13},{"epoch":26109997,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":561.24,"free":3517.07},{"epoch":26109998,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":561.33,"free":3516.97},{"epoch":26109999,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":561.21,"free":3517.07},{"epoch":26110000,"idl":99.74,"recv":0,"send":0,"writ":0.35,"used":559.63,"free":3518.66},{"epoch":26110001,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":560.75,"free":3517.53},{"epoch":26110002,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":560.29,"free":3518},{"epoch":26110003,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":560.27,"free":3518.01},{"epoch":26110004,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":560.25,"free":3518.03},{"epoch":26110005,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":560.98,"free":3517.31},{"epoch":26110006,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":561.33,"free":3516.97},{"epoch":26110007,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.23,"used":532.52,"free":3546},{"epoch":26110008,"idl":99.92,"recv":0,"send":0,"writ":0.24,"used":506.53,"free":3572.21},{"epoch":26110009,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":505.63,"free":3573.12},{"epoch":26110010,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":505.66,"free":3573.13},{"epoch":26110011,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":506.18,"free":3572.6},{"epoch":26110012,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":505.87,"free":3572.92},{"epoch":26110013,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":505.84,"free":3572.95},{"epoch":26110014,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":505.82,"free":3572.97},{"epoch":26110015,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":505.34,"free":3573.47},{"epoch":26110016,"idl":99.76,"recv":0,"send":0.02,"writ":0.46,"used":506.26,"free":3572.53},{"epoch":26110017,"idl":99.94,"recv":0,"send":0,"writ":0.26,"used":505.68,"free":3573.11},{"epoch":26110018,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":505.67,"free":3573.11},{"epoch":26110019,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":505.64,"free":3573.14},{"epoch":26110020,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":504.69,"free":3574.11},{"epoch":26110021,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":505.52,"free":3573.27},{"epoch":26110022,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":505.36,"free":3573.42},{"epoch":26110023,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.34,"free":3573.45},{"epoch":26110024,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":505.31,"free":3573.48},{"epoch":26110025,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":505.32,"free":3573.48},{"epoch":26110026,"idl":99.79,"recv":0,"send":0,"writ":0.49,"used":505.75,"free":3573.05},{"epoch":26110027,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":505.71,"free":3573.08},{"epoch":26110028,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":505.68,"free":3573.11},{"epoch":26110029,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":505.95,"free":3572.81},{"epoch":26110030,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":505.91,"free":3572.87},{"epoch":26110031,"idl":99.75,"recv":0,"send":0,"writ":0.51,"used":506.22,"free":3572.55},{"epoch":26110032,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":505.85,"free":3572.92},{"epoch":26110033,"idl":99.89,"recv":0,"send":0.02,"writ":0.15,"used":505.82,"free":3572.94},{"epoch":26110034,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":505.8,"free":3572.99},{"epoch":26110035,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":505.32,"free":3573.5},{"epoch":26110036,"idl":99.78,"recv":0,"send":0,"writ":0.39,"used":505.74,"free":3573.07},{"epoch":26110037,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":505.94,"free":3572.89},{"epoch":26110038,"idl":99.18,"recv":0,"send":0,"writ":0.16,"used":505.92,"free":3572.9},{"epoch":26110039,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":505.89,"free":3572.95},{"epoch":26110040,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":505.9,"free":3572.96},{"epoch":26110041,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":505.87,"free":3572.98},{"epoch":26110042,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":506.25,"free":3572.61},{"epoch":26110043,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.34,"free":3573.51},{"epoch":26110044,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":505.32,"free":3573.52},{"epoch":26110045,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":505.08,"free":3573.78},{"epoch":26110046,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":505.06,"free":3573.8},{"epoch":26110047,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":505.88,"free":3572.98},{"epoch":26110048,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":505.47,"free":3573.38},{"epoch":26110049,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":505.44,"free":3573.41},{"epoch":26110050,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":505.93,"free":3572.94},{"epoch":26110051,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.9,"free":3572.95},{"epoch":26110052,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":506.25,"free":3572.6},{"epoch":26110053,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.87,"free":3572.98},{"epoch":26110054,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.86,"free":3572.98},{"epoch":26110055,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":505.61,"free":3573.25},{"epoch":26110056,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":505.6,"free":3573.26},{"epoch":26110057,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":506.02,"free":3572.84},{"epoch":26110058,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.84,"free":3573.01},{"epoch":26110059,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":505.95,"free":3572.88},{"epoch":26110060,"idl":99.79,"recv":0,"send":0,"writ":0.38,"used":506.19,"free":3572.65},{"epoch":26110061,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":506.17,"free":3572.67},{"epoch":26110062,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":506.35,"free":3572.48},{"epoch":26110063,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":505.88,"free":3572.95},{"epoch":26110064,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":505.84,"free":3572.97},{"epoch":26110065,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":505.62,"free":3573.21},{"epoch":26110066,"idl":99.93,"recv":0,"send":0,"writ":0.12,"used":505.58,"free":3573.25},{"epoch":26110067,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":505.99,"free":3572.84},{"epoch":26110068,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.78,"free":3573.04},{"epoch":26110069,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":505.78,"free":3573.04},{"epoch":26110070,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":505.93,"free":3572.9},{"epoch":26110071,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":505.95,"free":3572.88},{"epoch":26110072,"idl":99.76,"recv":0,"send":0,"writ":0.43,"used":506.41,"free":3572.42},{"epoch":26110073,"idl":99.94,"recv":0,"send":0,"writ":0.31,"used":505.91,"free":3572.91},{"epoch":26110074,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.88,"free":3572.94},{"epoch":26110075,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":506.13,"free":3572.7},{"epoch":26110076,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":506.1,"free":3572.73},{"epoch":26110077,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.72,"free":3573.11},{"epoch":26110078,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":505.45,"free":3573.37},{"epoch":26110079,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":505.05,"free":3573.77},{"epoch":26110080,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":504.39,"free":3574.44},{"epoch":26110081,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":504.37,"free":3574.46},{"epoch":26110082,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":504.46,"free":3574.37},{"epoch":26110083,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":505.14,"free":3573.68},{"epoch":26110084,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":504.92,"free":3573.9},{"epoch":26110085,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":505.15,"free":3573.68},{"epoch":26110086,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":505.13,"free":3573.7},{"epoch":26110087,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":505.11,"free":3573.71},{"epoch":26110088,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":505.64,"free":3573.19},{"epoch":26110089,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":505.31,"free":3573.48},{"epoch":26110090,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":505.08,"free":3573.74},{"epoch":26110091,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":505.05,"free":3573.76},{"epoch":26110092,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":505.01,"free":3573.79},{"epoch":26110093,"idl":99.73,"recv":0,"send":0,"writ":0.53,"used":505.88,"free":3572.92},{"epoch":26110094,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":505.4,"free":3573.39},{"epoch":26110095,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":505.42,"free":3573.39},{"epoch":26110096,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":505.38,"free":3573.42},{"epoch":26110097,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":505.14,"free":3573.66},{"epoch":26110098,"idl":99.8,"recv":0,"send":0,"writ":0.51,"used":505.45,"free":3573.34},{"epoch":26110099,"idl":98.82,"recv":0,"send":0,"writ":0.2,"used":505.09,"free":3573.7},{"epoch":26110100,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":505.32,"free":3573.48},{"epoch":26110101,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":505.31,"free":3573.49},{"epoch":26110102,"idl":99.86,"recv":0,"send":0.01,"writ":0.19,"used":505.01,"free":3573.79},{"epoch":26110103,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":505.28,"free":3573.51},{"epoch":26110104,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":504.9,"free":3573.88},{"epoch":26110105,"idl":99.87,"recv":0,"send":0,"writ":0.35,"used":505.16,"free":3573.64},{"epoch":26110106,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":505.13,"free":3573.67},{"epoch":26110107,"idl":99.92,"recv":0,"send":0.01,"writ":0.18,"used":505.06,"free":3573.73},{"epoch":26110108,"idl":99.8,"recv":0,"send":0,"writ":0.5,"used":505.47,"free":3573.32},{"epoch":26110109,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":505.27,"free":3573.51},{"epoch":26110110,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":505.28,"free":3573.52},{"epoch":26110111,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":505.27,"free":3573.53},{"epoch":26110112,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":505.24,"free":3573.55},{"epoch":26110113,"idl":99.79,"recv":0,"send":0,"writ":0.42,"used":505.77,"free":3573.02},{"epoch":26110114,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":505.39,"free":3573.39},{"epoch":26110115,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":505.63,"free":3573.17},{"epoch":26110116,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.62,"free":3573.18},{"epoch":26110117,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":505.59,"free":3573.2},{"epoch":26110118,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":505.58,"free":3573.21},{"epoch":26110119,"idl":99.68,"recv":0,"send":0,"writ":0.73,"used":505.88,"free":3572.88},{"epoch":26110120,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":505.32,"free":3573.45},{"epoch":26110121,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.28,"free":3573.49},{"epoch":26110122,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.28,"free":3573.49},{"epoch":26110123,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":505.26,"free":3573.51},{"epoch":26110124,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":505.64,"free":3573.12},{"epoch":26110125,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":505.45,"free":3573.33},{"epoch":26110126,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":505.43,"free":3573.34},{"epoch":26110127,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.4,"free":3573.37},{"epoch":26110128,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":505.38,"free":3573.38},{"epoch":26110129,"idl":99.75,"recv":0,"send":0,"writ":0.6,"used":505.73,"free":3573.03},{"epoch":26110130,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":505.61,"free":3573.17},{"epoch":26110131,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":505.59,"free":3573.18},{"epoch":26110132,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":505.56,"free":3573.21},{"epoch":26110133,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":505.55,"free":3573.21},{"epoch":26110134,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":505.77,"free":3572.99},{"epoch":26110135,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":505.68,"free":3573.1},{"epoch":26110136,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":505.65,"free":3573.12},{"epoch":26110137,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.65,"free":3573.12},{"epoch":26110138,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":505.62,"free":3573.15},{"epoch":26110139,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":506.22,"free":3572.54},{"epoch":26110140,"idl":99.69,"recv":0,"send":0,"writ":0.38,"used":505.61,"free":3573.17},{"epoch":26110141,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":505.59,"free":3573.18},{"epoch":26110142,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":505.58,"free":3573.19},{"epoch":26110143,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":505.55,"free":3573.21},{"epoch":26110144,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":505.89,"free":3572.87},{"epoch":26110145,"idl":99.88,"recv":0,"send":0,"writ":0.44,"used":505.28,"free":3573.49},{"epoch":26110146,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":505.26,"free":3573.51},{"epoch":26110147,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.42,"free":3573.35},{"epoch":26110148,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":505.41,"free":3573.35},{"epoch":26110149,"idl":99.66,"recv":0,"send":0,"writ":0.73,"used":505.78,"free":3572.95},{"epoch":26110150,"idl":99.75,"recv":0,"send":0,"writ":0.37,"used":505.39,"free":3573.36},{"epoch":26110151,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":505.36,"free":3573.38},{"epoch":26110152,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":505.33,"free":3573.41},{"epoch":26110153,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":505.32,"free":3573.41},{"epoch":26110154,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":505.65,"free":3573.11},{"epoch":26110155,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":505.79,"free":3572.98},{"epoch":26110156,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.61,"free":3573.17},{"epoch":26110157,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":505.51,"free":3573.26},{"epoch":26110158,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":505.52,"free":3573.24},{"epoch":26110159,"idl":99,"recv":0,"send":0,"writ":0.14,"used":505.66,"free":3573.11},{"epoch":26110160,"idl":99.73,"recv":0,"send":0,"writ":0.7,"used":505.91,"free":3572.87},{"epoch":26110161,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":505.39,"free":3573.38},{"epoch":26110162,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":505.11,"free":3573.66},{"epoch":26110163,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":504.85,"free":3573.92},{"epoch":26110164,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":504.83,"free":3573.94},{"epoch":26110165,"idl":99.74,"recv":0,"send":0,"writ":0.72,"used":505.89,"free":3572.88},{"epoch":26110166,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":505.54,"free":3573.23},{"epoch":26110167,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":505.51,"free":3573.25},{"epoch":26110168,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":505.5,"free":3573.26},{"epoch":26110169,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.48,"free":3573.28},{"epoch":26110170,"idl":99.58,"recv":0,"send":0,"writ":0.7,"used":505.9,"free":3572.87},{"epoch":26110171,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.65,"free":3573.12},{"epoch":26110172,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":505.63,"free":3573.14},{"epoch":26110173,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.6,"free":3573.17},{"epoch":26110174,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":505.58,"free":3573.18},{"epoch":26110175,"idl":99.64,"recv":0,"send":0,"writ":0.74,"used":506.38,"free":3572.39},{"epoch":26110176,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.8,"free":3572.97},{"epoch":26110177,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":505.78,"free":3572.98},{"epoch":26110178,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.75,"free":3573.01},{"epoch":26110179,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":505.5,"free":3573.24},{"epoch":26110180,"idl":99.58,"recv":0,"send":0,"writ":0.59,"used":506.07,"free":3572.69},{"epoch":26110181,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":505.8,"free":3572.95},{"epoch":26110182,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.87,"free":3572.88},{"epoch":26110183,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.86,"free":3572.88},{"epoch":26110184,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":505.84,"free":3572.9},{"epoch":26110185,"idl":99.71,"recv":0,"send":0,"writ":0.68,"used":505.96,"free":3572.8},{"epoch":26110186,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":505.57,"free":3573.19},{"epoch":26110187,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.56,"free":3573.19},{"epoch":26110188,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":505.52,"free":3573.22},{"epoch":26110189,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.5,"free":3573.24},{"epoch":26110190,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":505.89,"free":3572.86},{"epoch":26110191,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":505.73,"free":3573.02},{"epoch":26110192,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.76,"free":3572.99},{"epoch":26110193,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.87,"free":3572.88},{"epoch":26110194,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":505.86,"free":3572.88},{"epoch":26110195,"idl":99.79,"recv":0,"send":0.01,"writ":0.36,"used":504.62,"free":3574.13},{"epoch":26110196,"idl":99.76,"recv":0,"send":0,"writ":0.6,"used":506.13,"free":3572.62},{"epoch":26110197,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":505.79,"free":3572.95},{"epoch":26110198,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.76,"free":3572.98},{"epoch":26110199,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":505.73,"free":3573.01},{"epoch":26110200,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":505.98,"free":3572.77},{"epoch":26110201,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":506.42,"free":3572.32},{"epoch":26110202,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":505.87,"free":3572.86},{"epoch":26110203,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":505.86,"free":3572.87},{"epoch":26110204,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":505.84,"free":3572.88},{"epoch":26110205,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":505.83,"free":3572.91},{"epoch":26110206,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":506.17,"free":3572.57},{"epoch":26110207,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":505.79,"free":3572.95},{"epoch":26110208,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.75,"free":3572.97},{"epoch":26110209,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":505.54,"free":3573.16},{"epoch":26110210,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":505.78,"free":3572.95},{"epoch":26110211,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":506.13,"free":3572.59},{"epoch":26110212,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.89,"free":3572.83},{"epoch":26110213,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":505.87,"free":3572.84},{"epoch":26110214,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":505.85,"free":3572.86},{"epoch":26110215,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":505.63,"free":3573.09},{"epoch":26110216,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":506.06,"free":3572.67},{"epoch":26110217,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":505.81,"free":3572.9},{"epoch":26110218,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.79,"free":3572.92},{"epoch":26110219,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.76,"free":3572.95},{"epoch":26110220,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":505.78,"free":3572.95},{"epoch":26110221,"idl":95,"recv":0.47,"send":0.02,"writ":79.45,"used":515.64,"free":3563.75},{"epoch":26110222,"idl":99.74,"recv":0,"send":0,"writ":185.53,"used":508.19,"free":3571.66},{"epoch":26110223,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":508.03,"free":3571.82},{"epoch":26110224,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":508.02,"free":3571.82},{"epoch":26110225,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":508.17,"free":3571.69},{"epoch":26110226,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":508.36,"free":3571.49},{"epoch":26110227,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":506,"free":3573.89},{"epoch":26110228,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":505.99,"free":3573.89},{"epoch":26110229,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":505.97,"free":3573.91},{"epoch":26110230,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":506.21,"free":3573.68},{"epoch":26110231,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.78,"free":3574.11},{"epoch":26110232,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":505.54,"free":3574.36},{"epoch":26110233,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":505.16,"free":3574.74},{"epoch":26110234,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.15,"free":3574.75},{"epoch":26110235,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":504.66,"free":3575.25},{"epoch":26110236,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":504.64,"free":3575.27},{"epoch":26110237,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":505.36,"free":3574.55},{"epoch":26110238,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.04,"free":3574.86},{"epoch":26110239,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":504.52,"free":3575.37},{"epoch":26110240,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":505.49,"free":3574.43},{"epoch":26110241,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.48,"free":3574.44},{"epoch":26110242,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":505.76,"free":3574.15},{"epoch":26110243,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":504.94,"free":3574.96},{"epoch":26110244,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":504.91,"free":3574.99},{"epoch":26110245,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":505.16,"free":3574.76},{"epoch":26110246,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.14,"free":3574.78},{"epoch":26110247,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":505.18,"free":3574.72},{"epoch":26110248,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":504.2,"free":3575.71},{"epoch":26110249,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":504.29,"free":3575.61},{"epoch":26110250,"idl":99.77,"recv":0,"send":0,"writ":0.37,"used":505.29,"free":3574.62},{"epoch":26110251,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.26,"free":3574.65},{"epoch":26110252,"idl":99.68,"recv":0,"send":0,"writ":0.61,"used":505.75,"free":3574.15},{"epoch":26110253,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":505.21,"free":3574.68},{"epoch":26110254,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":505.18,"free":3574.71},{"epoch":26110255,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":505.44,"free":3574.47},{"epoch":26110256,"idl":99.88,"recv":0,"send":0.01,"writ":0.18,"used":505.39,"free":3574.52},{"epoch":26110257,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":505.66,"free":3574.24},{"epoch":26110258,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":505.11,"free":3574.77},{"epoch":26110259,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":505.26,"free":3574.62},{"epoch":26110260,"idl":99.52,"recv":0,"send":0,"writ":0.34,"used":505.48,"free":3574.41},{"epoch":26110261,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":505.49,"free":3574.41},{"epoch":26110262,"idl":99.72,"recv":0,"send":0,"writ":0.4,"used":505.78,"free":3574.1},{"epoch":26110263,"idl":99.9,"recv":0,"send":0,"writ":0.37,"used":505.2,"free":3574.69},{"epoch":26110264,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":505.16,"free":3574.71},{"epoch":26110265,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":505.67,"free":3574.23},{"epoch":26110266,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":505.64,"free":3574.25},{"epoch":26110267,"idl":99.77,"recv":0,"send":0,"writ":0.45,"used":505.95,"free":3573.94},{"epoch":26110268,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":505.35,"free":3574.53},{"epoch":26110269,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":505.1,"free":3574.76},{"epoch":26110270,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":504.89,"free":3574.99},{"epoch":26110271,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":505,"free":3574.88},{"epoch":26110272,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":504.99,"free":3574.88},{"epoch":26110273,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":505.56,"free":3574.31},{"epoch":26110274,"idl":98.72,"recv":0,"send":0,"writ":0.19,"used":505.2,"free":3574.68},{"epoch":26110275,"idl":99.76,"recv":0,"send":0,"writ":0.37,"used":505.2,"free":3574.69},{"epoch":26110276,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":505.17,"free":3574.71},{"epoch":26110277,"idl":99.03,"recv":0,"send":0,"writ":0.22,"used":505.14,"free":3574.74},{"epoch":26110278,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":505.49,"free":3574.39},{"epoch":26110279,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":505.1,"free":3574.78},{"epoch":26110280,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":505.11,"free":3574.79},{"epoch":26110281,"idl":98.66,"recv":0,"send":0,"writ":0.15,"used":505.16,"free":3574.73},{"epoch":26110282,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":505.13,"free":3574.75},{"epoch":26110283,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":505.51,"free":3574.37},{"epoch":26110284,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":504.96,"free":3574.92},{"epoch":26110285,"idl":99.39,"recv":0,"send":0,"writ":0.47,"used":505.76,"free":3574.13},{"epoch":26110286,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":505.68,"free":3574.19},{"epoch":26110287,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":505.66,"free":3574.21},{"epoch":26110288,"idl":99.52,"recv":0,"send":0,"writ":0.59,"used":505.69,"free":3574.18},{"epoch":26110289,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":504.88,"free":3574.98},{"epoch":26110290,"idl":99.6,"recv":0,"send":0,"writ":0.34,"used":504.88,"free":3575},{"epoch":26110291,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":504.86,"free":3575.02},{"epoch":26110292,"idl":98.61,"recv":0,"send":0,"writ":0.16,"used":504.83,"free":3575.04},{"epoch":26110293,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":505.13,"free":3574.74},{"epoch":26110294,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":504.52,"free":3575.34},{"epoch":26110295,"idl":99.51,"recv":0,"send":0,"writ":0.34,"used":504.74,"free":3575.14},{"epoch":26110296,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":504.56,"free":3575.32},{"epoch":26110297,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":504.46,"free":3575.41},{"epoch":26110298,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":505.09,"free":3574.78},{"epoch":26110299,"idl":99.63,"recv":0,"send":0,"writ":0.29,"used":505.41,"free":3574.44},{"epoch":26110300,"idl":99.7,"recv":0,"send":0,"writ":0.36,"used":505.4,"free":3574.48},{"epoch":26110301,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":505.38,"free":3574.49},{"epoch":26110302,"idl":99.65,"recv":0,"send":0,"writ":0.14,"used":505.35,"free":3574.52},{"epoch":26110303,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":506.11,"free":3573.75},{"epoch":26110304,"idl":99.93,"recv":0,"send":0,"writ":0.41,"used":504.76,"free":3575.1},{"epoch":26110305,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":504.76,"free":3575.11},{"epoch":26110306,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":504.74,"free":3575.13},{"epoch":26110307,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":504.73,"free":3575.14},{"epoch":26110308,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":504.7,"free":3575.16},{"epoch":26110309,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":506.47,"free":3573.38},{"epoch":26110310,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":505.67,"free":3574.2},{"epoch":26110311,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":505.66,"free":3574.21},{"epoch":26110312,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":505.63,"free":3574.24},{"epoch":26110313,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":505.62,"free":3574.24},{"epoch":26110314,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":505.66,"free":3574.19},{"epoch":26110315,"idl":99.72,"recv":0,"send":0,"writ":0.4,"used":505.11,"free":3574.76},{"epoch":26110316,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.21,"used":505.19,"free":3574.67},{"epoch":26110317,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":505.19,"free":3574.67},{"epoch":26110318,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":505.16,"free":3574.7},{"epoch":26110319,"idl":99.57,"recv":0,"send":0,"writ":0.56,"used":504.78,"free":3575.08},{"epoch":26110320,"idl":99.48,"recv":0,"send":0,"writ":0.31,"used":505.37,"free":3574.5},{"epoch":26110321,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":505.37,"free":3574.5},{"epoch":26110322,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.35,"free":3574.52},{"epoch":26110323,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":505.37,"free":3574.49},{"epoch":26110324,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":505.27,"free":3574.59},{"epoch":26110325,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":504.5,"free":3575.37},{"epoch":26110326,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":504.46,"free":3575.4},{"epoch":26110327,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":504.44,"free":3575.41},{"epoch":26110328,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":504.42,"free":3575.44},{"epoch":26110329,"idl":99.45,"recv":0,"send":0,"writ":0.62,"used":505.74,"free":3574.09},{"epoch":26110330,"idl":99.73,"recv":0,"send":0,"writ":0.37,"used":504.64,"free":3575.21},{"epoch":26110331,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":504.63,"free":3575.21},{"epoch":26110332,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":504.6,"free":3575.24},{"epoch":26110333,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":504.58,"free":3575.25},{"epoch":26110334,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":505.02,"free":3574.83},{"epoch":26110335,"idl":99.72,"recv":0,"send":0,"writ":0.37,"used":505.99,"free":3573.89},{"epoch":26110336,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":505.96,"free":3573.91},{"epoch":26110337,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":505.93,"free":3573.94},{"epoch":26110338,"idl":97.78,"recv":0,"send":0,"writ":0.16,"used":505.92,"free":3573.95},{"epoch":26110339,"idl":99.72,"recv":0,"send":0,"writ":0.38,"used":506.23,"free":3573.63},{"epoch":26110340,"idl":99.49,"recv":0,"send":0,"writ":0.53,"used":504.69,"free":3575.2},{"epoch":26110341,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":504.64,"free":3575.25},{"epoch":26110342,"idl":99.65,"recv":0,"send":0,"writ":0.2,"used":504.89,"free":3575},{"epoch":26110343,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":505.34,"free":3574.55},{"epoch":26110344,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":505.32,"free":3574.56},{"epoch":26110345,"idl":99.57,"recv":0,"send":0,"writ":0.71,"used":505.91,"free":3573.99},{"epoch":26110346,"idl":99.48,"recv":0,"send":0,"writ":0.16,"used":505.74,"free":3574.16},{"epoch":26110347,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":505.71,"free":3574.18},{"epoch":26110348,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.71,"free":3574.18},{"epoch":26110349,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":505.67,"free":3574.21},{"epoch":26110350,"idl":99.38,"recv":0,"send":0,"writ":0.79,"used":506.07,"free":3573.83},{"epoch":26110351,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":505.66,"free":3574.23},{"epoch":26110352,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":505.65,"free":3574.24},{"epoch":26110353,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":505.62,"free":3574.27},{"epoch":26110354,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":505.6,"free":3574.28},{"epoch":26110355,"idl":99.46,"recv":0,"send":0,"writ":0.73,"used":506.12,"free":3573.77},{"epoch":26110356,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":505.82,"free":3574.07},{"epoch":26110357,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":505.85,"free":3574.04},{"epoch":26110358,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":505.96,"free":3573.93},{"epoch":26110359,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":505.95,"free":3573.92},{"epoch":26110360,"idl":99.6,"recv":0,"send":0,"writ":0.72,"used":506.11,"free":3573.77},{"epoch":26110361,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.93,"free":3573.95},{"epoch":26110362,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.91,"free":3573.96},{"epoch":26110363,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.89,"free":3573.98},{"epoch":26110364,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":505.86,"free":3574.03},{"epoch":26110365,"idl":99.38,"recv":0,"send":0,"writ":0.7,"used":505.35,"free":3574.55},{"epoch":26110366,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":505.1,"free":3574.8},{"epoch":26110367,"idl":98.78,"recv":0,"send":0,"writ":0.14,"used":505.1,"free":3574.8},{"epoch":26110368,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":505.07,"free":3574.83},{"epoch":26110369,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.05,"free":3574.83},{"epoch":26110370,"idl":99.54,"recv":0,"send":0,"writ":0.73,"used":506.29,"free":3573.62},{"epoch":26110371,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.75,"free":3574.15},{"epoch":26110372,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":505.72,"free":3574.17},{"epoch":26110373,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.71,"free":3574.18},{"epoch":26110374,"idl":99.43,"recv":0,"send":0,"writ":0.13,"used":505.7,"free":3574.19},{"epoch":26110375,"idl":99.1,"recv":0,"send":0,"writ":0.58,"used":506.28,"free":3573.62},{"epoch":26110376,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":504.92,"free":3574.98},{"epoch":26110377,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":504.91,"free":3574.98},{"epoch":26110378,"idl":99.67,"recv":0,"send":0,"writ":0.18,"used":504.9,"free":3574.99},{"epoch":26110379,"idl":99.66,"recv":0,"send":0,"writ":0.19,"used":504.87,"free":3575.01},{"epoch":26110380,"idl":98.49,"recv":0,"send":0,"writ":10.84,"used":505.8,"free":3575.4},{"epoch":26110381,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":506.11,"free":3575.19},{"epoch":26110382,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":506.11,"free":3575.19},{"epoch":26110383,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.25,"free":3575.04},{"epoch":26110384,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":506.24,"free":3575.05},{"epoch":26110385,"idl":99.61,"recv":0,"send":0,"writ":0.31,"used":506.01,"free":3575.35},{"epoch":26110386,"idl":99.53,"recv":0,"send":0,"writ":0.57,"used":505.12,"free":3576.24},{"epoch":26110387,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":504.49,"free":3576.87},{"epoch":26110388,"idl":99.69,"recv":0,"send":0,"writ":0.15,"used":504.47,"free":3576.88},{"epoch":26110389,"idl":99.22,"recv":0,"send":0,"writ":0.29,"used":504.93,"free":3576.41},{"epoch":26110390,"idl":99.76,"recv":0,"send":0,"writ":0.37,"used":504.95,"free":3576.41},{"epoch":26110391,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":505.73,"free":3575.63},{"epoch":26110392,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":505.4,"free":3575.95},{"epoch":26110393,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":505.38,"free":3575.97},{"epoch":26110394,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":505.36,"free":3575.98},{"epoch":26110395,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":505.53,"free":3575.82},{"epoch":26110396,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":505.37,"free":3575.99},{"epoch":26110397,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":504.52,"free":3576.83},{"epoch":26110398,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":504.52,"free":3576.83},{"epoch":26110399,"idl":99.68,"recv":0,"send":0,"writ":0.15,"used":504.48,"free":3576.86},{"epoch":26110400,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":504.73,"free":3576.63},{"epoch":26110401,"idl":98.14,"recv":0,"send":0,"writ":0.53,"used":505.36,"free":3575.99},{"epoch":26110402,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":505.11,"free":3576.24},{"epoch":26110403,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":504.92,"free":3576.43},{"epoch":26110404,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":504.9,"free":3576.44},{"epoch":26110405,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":505.14,"free":3576.22},{"epoch":26110406,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":505.8,"free":3575.56},{"epoch":26110407,"idl":99.33,"recv":0,"send":0,"writ":0.14,"used":505.49,"free":3575.86},{"epoch":26110408,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":505.52,"free":3575.83},{"epoch":26110409,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":505.5,"free":3575.84},{"epoch":26110410,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":505.27,"free":3576.09},{"epoch":26110411,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":505.59,"free":3575.76},{"epoch":26110412,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.22,"free":3576.13},{"epoch":26110413,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":505.19,"free":3576.15},{"epoch":26110414,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.18,"free":3576.16},{"epoch":26110415,"idl":99.62,"recv":0,"send":0,"writ":0.33,"used":505,"free":3576.36},{"epoch":26110416,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":504.91,"free":3576.44},{"epoch":26110417,"idl":99.49,"recv":0,"send":0,"writ":0.54,"used":504.76,"free":3576.59},{"epoch":26110418,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":504.37,"free":3576.98},{"epoch":26110419,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":505.46,"free":3575.86},{"epoch":26110420,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":505.51,"free":3575.82},{"epoch":26110421,"idl":99.34,"recv":0,"send":0,"writ":0.16,"used":505.49,"free":3575.84},{"epoch":26110422,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":505.82,"free":3575.51},{"epoch":26110423,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":505.45,"free":3575.88},{"epoch":26110424,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":505.42,"free":3575.9},{"epoch":26110425,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":505.42,"free":3575.91},{"epoch":26110426,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":505.4,"free":3575.93},{"epoch":26110427,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":505.74,"free":3575.6},{"epoch":26110428,"idl":99.66,"recv":0,"send":0,"writ":0.15,"used":505.36,"free":3575.98},{"epoch":26110429,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":505.36,"free":3575.98},{"epoch":26110430,"idl":99.52,"recv":0,"send":0,"writ":0.32,"used":505.1,"free":3576.25},{"epoch":26110431,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":505.26,"free":3576.08},{"epoch":26110432,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":505.42,"free":3575.92},{"epoch":26110433,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":504.73,"free":3576.6},{"epoch":26110434,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":504.71,"free":3576.62},{"epoch":26110435,"idl":99.78,"recv":0,"send":0,"writ":0.35,"used":504.94,"free":3576.4},{"epoch":26110436,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":504.94,"free":3576.41},{"epoch":26110437,"idl":99.7,"recv":0,"send":0,"writ":0.61,"used":505.62,"free":3575.74},{"epoch":26110438,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":505.64,"free":3575.73},{"epoch":26110439,"idl":99.83,"recv":0,"send":0.01,"writ":0.17,"used":505.61,"free":3575.75},{"epoch":26110440,"idl":99.55,"recv":0,"send":0.02,"writ":0.36,"used":505.45,"free":3575.93},{"epoch":26110441,"idl":99.59,"recv":0.01,"send":0.02,"writ":0.16,"used":505.42,"free":3575.96},{"epoch":26110442,"idl":99.63,"recv":0.01,"send":0.03,"writ":0.53,"used":505.22,"free":3576.15},{"epoch":26110443,"idl":99.78,"recv":0,"send":0.02,"writ":0.17,"used":504.23,"free":3577.13},{"epoch":26110444,"idl":99.76,"recv":0.01,"send":0.02,"writ":0.17,"used":504.18,"free":3577.18},{"epoch":26110445,"idl":99.48,"recv":0,"send":0.02,"writ":0.3,"used":505.44,"free":3575.94},{"epoch":26110446,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.16,"used":505.43,"free":3575.95},{"epoch":26110447,"idl":99.48,"recv":0,"send":0.02,"writ":0.57,"used":505.78,"free":3575.59},{"epoch":26110448,"idl":99.8,"recv":0,"send":0.02,"writ":0.14,"used":505.45,"free":3575.91},{"epoch":26110449,"idl":99.59,"recv":0.01,"send":0.02,"writ":0.27,"used":505.67,"free":3575.67},{"epoch":26110450,"idl":99.68,"recv":0,"send":0.02,"writ":0.29,"used":504.72,"free":3576.63},{"epoch":26110451,"idl":99.78,"recv":0,"send":0.01,"writ":0.16,"used":504.62,"free":3576.73},{"epoch":26110452,"idl":99.59,"recv":0,"send":0.02,"writ":0.49,"used":505.51,"free":3575.84},{"epoch":26110453,"idl":99.75,"recv":0.01,"send":0.02,"writ":0.2,"used":505.63,"free":3575.7},{"epoch":26110454,"idl":99.43,"recv":0,"send":0.02,"writ":0.15,"used":505.68,"free":3575.66},{"epoch":26110455,"idl":99.63,"recv":0.01,"send":0.02,"writ":0.3,"used":505.47,"free":3575.88},{"epoch":26110456,"idl":99.73,"recv":0.01,"send":0.03,"writ":0.19,"used":505.41,"free":3575.94},{"epoch":26110457,"idl":99.72,"recv":0.01,"send":0.03,"writ":0.25,"used":505.43,"free":3575.91},{"epoch":26110458,"idl":99.57,"recv":0.01,"send":0.02,"writ":0.57,"used":505.84,"free":3575.49},{"epoch":26110459,"idl":99.74,"recv":0,"send":0.02,"writ":0.17,"used":505.36,"free":3575.97},{"epoch":26110460,"idl":99.69,"recv":0.01,"send":0.03,"writ":0.28,"used":505.45,"free":3575.9},{"epoch":26110461,"idl":99.74,"recv":0.01,"send":0.02,"writ":0.18,"used":505.41,"free":3575.93},{"epoch":26110462,"idl":99.75,"recv":0.01,"send":0.02,"writ":0.21,"used":505.3,"free":3576.04},{"epoch":26110463,"idl":99.61,"recv":0.01,"send":0.02,"writ":0.57,"used":505.93,"free":3575.41},{"epoch":26110464,"idl":99.73,"recv":0,"send":0.02,"writ":0.17,"used":505.64,"free":3575.68},{"epoch":26110465,"idl":99.28,"recv":0,"send":0.02,"writ":0.32,"used":504.73,"free":3576.61},{"epoch":26110466,"idl":99.77,"recv":0,"send":0.02,"writ":0.17,"used":504.7,"free":3576.63},{"epoch":26110467,"idl":99.58,"recv":0,"send":0.02,"writ":0.22,"used":504.64,"free":3576.69},{"epoch":26110468,"idl":99.62,"recv":0.01,"send":0.03,"writ":0.59,"used":505.82,"free":3575.5},{"epoch":26110469,"idl":99.8,"recv":0,"send":0.02,"writ":0.17,"used":505.64,"free":3575.68},{"epoch":26110470,"idl":99.64,"recv":0.01,"send":0.02,"writ":0.29,"used":505.4,"free":3575.94},{"epoch":26110471,"idl":99.81,"recv":0.01,"send":0.03,"writ":0.13,"used":505.42,"free":3575.92},{"epoch":26110472,"idl":99.81,"recv":0.01,"send":0.03,"writ":0.16,"used":505.38,"free":3575.95},{"epoch":26110473,"idl":99.64,"recv":0,"send":0.02,"writ":0.54,"used":505.43,"free":3575.89},{"epoch":26110474,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.14,"used":504.9,"free":3576.42},{"epoch":26110475,"idl":99.73,"recv":0,"send":0.02,"writ":0.28,"used":505.11,"free":3576.23},{"epoch":26110476,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.16,"used":505.2,"free":3576.13},{"epoch":26110477,"idl":99.83,"recv":0,"send":0.02,"writ":0.15,"used":505.16,"free":3576.17},{"epoch":26110478,"idl":99.68,"recv":0,"send":0.02,"writ":0.49,"used":505.74,"free":3575.58},{"epoch":26110479,"idl":99.75,"recv":0,"send":0.02,"writ":0.32,"used":505.16,"free":3576.14},{"epoch":26110480,"idl":99.76,"recv":0.01,"send":0.02,"writ":0.27,"used":504.89,"free":3576.43},{"epoch":26110481,"idl":99.66,"recv":0.01,"send":0.03,"writ":0.16,"used":504.94,"free":3576.37},{"epoch":26110482,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.14,"used":504.9,"free":3576.41},{"epoch":26110483,"idl":99.71,"recv":0,"send":0.02,"writ":0.4,"used":505.62,"free":3575.68},{"epoch":26110484,"idl":99.6,"recv":0,"send":0.02,"writ":0.3,"used":505.67,"free":3575.65},{"epoch":26110485,"idl":99.72,"recv":0.01,"send":0.02,"writ":0.28,"used":505.37,"free":3575.97},{"epoch":26110486,"idl":99.68,"recv":0.01,"send":0.02,"writ":0.15,"used":505.42,"free":3575.91},{"epoch":26110487,"idl":99.8,"recv":0,"send":0.02,"writ":0.16,"used":505.39,"free":3575.93},{"epoch":26110488,"idl":99.73,"recv":0.01,"send":0.02,"writ":0.4,"used":505.79,"free":3575.54},{"epoch":26110489,"idl":98.86,"recv":0,"send":0.02,"writ":0.29,"used":505.68,"free":3575.64},{"epoch":26110490,"idl":99.72,"recv":0.01,"send":0.02,"writ":0.28,"used":505.88,"free":3575.46},{"epoch":26110491,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":505.93,"free":3575.41},{"epoch":26110492,"idl":99.87,"recv":0,"send":0.02,"writ":0.14,"used":505.9,"free":3575.45},{"epoch":26110493,"idl":99.73,"recv":0,"send":0.02,"writ":0.41,"used":506.21,"free":3575.13},{"epoch":26110494,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.29,"used":505.66,"free":3575.68},{"epoch":26110495,"idl":99.76,"recv":0.01,"send":0.05,"writ":0.29,"used":504.68,"free":3576.68},{"epoch":26110496,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.19,"used":504.64,"free":3576.71},{"epoch":26110497,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.15,"used":504.67,"free":3576.67},{"epoch":26110498,"idl":99.82,"recv":0.01,"send":0.03,"writ":0.14,"used":504.67,"free":3576.67},{"epoch":26110499,"idl":99.71,"recv":0,"send":0.02,"writ":0.56,"used":505.94,"free":3575.4},{"epoch":26110500,"idl":99.54,"recv":0,"send":0.02,"writ":0.32,"used":505.7,"free":3575.66},{"epoch":26110501,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.18,"used":505.65,"free":3575.7},{"epoch":26110502,"idl":99.8,"recv":0,"send":0.02,"writ":0.18,"used":505.66,"free":3575.69},{"epoch":26110503,"idl":99.84,"recv":0,"send":0.02,"writ":0.2,"used":505.65,"free":3575.69},{"epoch":26110504,"idl":98.76,"recv":0.01,"send":0.03,"writ":0.56,"used":506.29,"free":3575.04},{"epoch":26110505,"idl":99.75,"recv":0,"send":0.02,"writ":0.3,"used":505.93,"free":3575.42},{"epoch":26110506,"idl":99.86,"recv":0.01,"send":0.03,"writ":0.16,"used":505.89,"free":3575.46},{"epoch":26110507,"idl":97.76,"recv":0,"send":0.02,"writ":0.12,"used":505.88,"free":3575.47},{"epoch":26110508,"idl":99,"recv":0,"send":0.02,"writ":0.17,"used":505.9,"free":3575.44},{"epoch":26110509,"idl":99.66,"recv":0.01,"send":0.02,"writ":0.75,"used":506.33,"free":3574.98},{"epoch":26110510,"idl":99.74,"recv":0,"send":0.02,"writ":0.3,"used":505.68,"free":3575.65},{"epoch":26110511,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.21,"used":505.67,"free":3575.65},{"epoch":26110512,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.16,"used":505.67,"free":3575.65},{"epoch":26110513,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.15,"used":505.61,"free":3575.7},{"epoch":26110514,"idl":99.7,"recv":0,"send":0.02,"writ":0.56,"used":506.11,"free":3575.21},{"epoch":26110515,"idl":99.49,"recv":0,"send":0.02,"writ":0.27,"used":505.88,"free":3575.46},{"epoch":26110516,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":505.89,"free":3575.45},{"epoch":26110517,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.21,"used":505.88,"free":3575.46},{"epoch":26110518,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":505.86,"free":3575.47},{"epoch":26110519,"idl":99.67,"recv":0,"send":0.02,"writ":0.59,"used":506.32,"free":3575},{"epoch":26110520,"idl":99.68,"recv":0.01,"send":0.03,"writ":0.28,"used":505.9,"free":3575.44},{"epoch":26110521,"idl":99.82,"recv":0,"send":0.02,"writ":0.16,"used":505.92,"free":3575.42},{"epoch":26110522,"idl":98.54,"recv":0.01,"send":0.02,"writ":0.17,"used":505.82,"free":3575.51},{"epoch":26110523,"idl":99.87,"recv":0,"send":0.02,"writ":0.18,"used":505.6,"free":3575.73},{"epoch":26110524,"idl":99.68,"recv":0.01,"send":0.02,"writ":0.55,"used":506.08,"free":3575.25},{"epoch":26110525,"idl":99.72,"recv":0,"send":0.02,"writ":0.3,"used":506.11,"free":3575.23},{"epoch":26110526,"idl":99.88,"recv":0,"send":0.02,"writ":0.13,"used":506.14,"free":3575.2},{"epoch":26110527,"idl":99.89,"recv":0.01,"send":0.03,"writ":0.16,"used":506.15,"free":3575.19},{"epoch":26110528,"idl":99.86,"recv":0,"send":0.02,"writ":0.16,"used":506.08,"free":3575.25},{"epoch":26110529,"idl":99.7,"recv":0.01,"send":0.02,"writ":0.55,"used":506.39,"free":3574.93},{"epoch":26110530,"idl":99.67,"recv":0,"send":0.02,"writ":0.27,"used":505.18,"free":3576.16},{"epoch":26110531,"idl":99.87,"recv":0,"send":0.02,"writ":0.16,"used":505.18,"free":3576.16},{"epoch":26110532,"idl":99.84,"recv":0,"send":0.02,"writ":0.14,"used":505.16,"free":3576.17},{"epoch":26110533,"idl":99.89,"recv":0.01,"send":0.03,"writ":0.15,"used":505.12,"free":3576.2},{"epoch":26110534,"idl":99.88,"recv":0,"send":0.02,"writ":0.14,"used":505.18,"free":3576.14},{"epoch":26110535,"idl":99.5,"recv":0.01,"send":0.02,"writ":0.69,"used":506.75,"free":3574.58},{"epoch":26110536,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.18,"used":506.13,"free":3575.2},{"epoch":26110537,"idl":99.89,"recv":0.01,"send":0.02,"writ":0.14,"used":506.12,"free":3575.21},{"epoch":26110538,"idl":99.87,"recv":0,"send":0.02,"writ":0.16,"used":505.51,"free":3575.81},{"epoch":26110539,"idl":99.74,"recv":0,"send":0.02,"writ":0.27,"used":505.41,"free":3575.89},{"epoch":26110540,"idl":99.11,"recv":0.01,"send":0.02,"writ":0.66,"used":505.5,"free":3575.81},{"epoch":26110541,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.16,"used":505.12,"free":3576.19},{"epoch":26110542,"idl":99.86,"recv":0,"send":0.02,"writ":0.14,"used":505.16,"free":3576.14},{"epoch":26110543,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.15,"used":505.11,"free":3576.19},{"epoch":26110544,"idl":99.87,"recv":0,"send":0.02,"writ":0.14,"used":505.18,"free":3576.14},{"epoch":26110545,"idl":99.64,"recv":0.01,"send":0.02,"writ":0.7,"used":505.17,"free":3576.18},{"epoch":26110546,"idl":99.8,"recv":0,"send":0.02,"writ":0.18,"used":504.9,"free":3576.45},{"epoch":26110547,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.14,"used":504.91,"free":3576.42},{"epoch":26110548,"idl":99.86,"recv":0,"send":0.02,"writ":0.16,"used":504.85,"free":3576.48},{"epoch":26110549,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.15,"used":504.92,"free":3576.41},{"epoch":26110550,"idl":99.56,"recv":0,"send":0.02,"writ":0.67,"used":505.29,"free":3576.06},{"epoch":26110551,"idl":99.84,"recv":0,"send":0.02,"writ":0.16,"used":504.64,"free":3576.7},{"epoch":26110552,"idl":99.87,"recv":0,"send":0.02,"writ":0.14,"used":504.66,"free":3576.68},{"epoch":26110553,"idl":99.87,"recv":0,"send":0.02,"writ":0.15,"used":504.59,"free":3576.74},{"epoch":26110554,"idl":99.87,"recv":0,"send":0.02,"writ":0.16,"used":504.7,"free":3576.63},{"epoch":26110555,"idl":99.57,"recv":0.01,"send":0.03,"writ":0.71,"used":504.64,"free":3576.7},{"epoch":26110556,"idl":99.82,"recv":0,"send":0.02,"writ":0.22,"used":505.37,"free":3575.96},{"epoch":26110557,"idl":99.86,"recv":0.01,"send":0.03,"writ":0.15,"used":505.42,"free":3575.91},{"epoch":26110558,"idl":98.05,"recv":0.01,"send":0.02,"writ":0.15,"used":505.38,"free":3575.95},{"epoch":26110559,"idl":99.86,"recv":0,"send":0.02,"writ":0.13,"used":505.37,"free":3575.95},{"epoch":26110560,"idl":99.37,"recv":0.01,"send":0.02,"writ":0.82,"used":505.7,"free":3575.64},{"epoch":26110561,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.12,"used":505.11,"free":3576.23},{"epoch":26110562,"idl":98.9,"recv":0,"send":0.02,"writ":0.16,"used":505.16,"free":3576.17},{"epoch":26110563,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.14,"used":505.13,"free":3576.2},{"epoch":26110564,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":505.09,"free":3576.24},{"epoch":26110565,"idl":99.48,"recv":0.01,"send":0.02,"writ":0.44,"used":505.19,"free":3576.15},{"epoch":26110566,"idl":99.85,"recv":0.01,"send":0.03,"writ":0.37,"used":505.38,"free":3575.96},{"epoch":26110567,"idl":99.83,"recv":0,"send":0.02,"writ":0.18,"used":505.38,"free":3575.96},{"epoch":26110568,"idl":99.82,"recv":0.01,"send":0.03,"writ":0.14,"used":505.4,"free":3575.92},{"epoch":26110569,"idl":99.74,"recv":0.01,"send":0.02,"writ":0.32,"used":505.1,"free":3576.2},{"epoch":26110570,"idl":99.75,"recv":0,"send":0.02,"writ":0.3,"used":505.38,"free":3575.93},{"epoch":26110571,"idl":99.59,"recv":0.01,"send":0.02,"writ":0.55,"used":505.74,"free":3575.57},{"epoch":26110572,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.14,"used":505.35,"free":3575.95},{"epoch":26110573,"idl":99.77,"recv":0.01,"send":0.03,"writ":0.15,"used":505.38,"free":3575.92},{"epoch":26110574,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.16,"used":505.34,"free":3575.97},{"epoch":26110575,"idl":99.57,"recv":0.01,"send":0.03,"writ":0.28,"used":504.86,"free":3576.47},{"epoch":26110576,"idl":98,"recv":0,"send":0.02,"writ":0.56,"used":505.73,"free":3575.6},{"epoch":26110577,"idl":99.82,"recv":0.01,"send":0.03,"writ":0.18,"used":505.38,"free":3575.95},{"epoch":26110578,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.16,"used":505.36,"free":3575.96},{"epoch":26110579,"idl":99.87,"recv":0,"send":0.02,"writ":0.16,"used":505.38,"free":3575.93},{"epoch":26110580,"idl":99.64,"recv":0.01,"send":0.03,"writ":0.3,"used":505.13,"free":3576.2},{"epoch":26110581,"idl":99.69,"recv":0,"send":0.02,"writ":0.55,"used":504.79,"free":3576.54},{"epoch":26110582,"idl":99.83,"recv":0,"send":0.02,"writ":0.16,"used":504.36,"free":3576.96},{"epoch":26110583,"idl":98.87,"recv":0.01,"send":0.02,"writ":0.17,"used":505.07,"free":3576.25},{"epoch":26110584,"idl":99.87,"recv":0,"send":0.02,"writ":0.14,"used":505.14,"free":3576.18},{"epoch":26110585,"idl":99.84,"recv":0,"send":0.02,"writ":0.29,"used":505.09,"free":3576.24},{"epoch":26110586,"idl":94.84,"recv":0.34,"send":0.04,"writ":197.05,"used":515.9,"free":3566.17},{"epoch":26110587,"idl":99.71,"recv":0.01,"send":0.03,"writ":64.41,"used":507.94,"free":3574.15},{"epoch":26110588,"idl":99.85,"recv":0,"send":0.02,"writ":0.18,"used":507.9,"free":3574.18},{"epoch":26110589,"idl":99.88,"recv":0,"send":0.02,"writ":0.18,"used":507.93,"free":3574.15},{"epoch":26110590,"idl":99.63,"recv":0,"send":0.02,"writ":0.34,"used":507.19,"free":3574.9},{"epoch":26110591,"idl":98.97,"recv":0,"send":0.02,"writ":0.62,"used":507.1,"free":3575.02},{"epoch":26110592,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.18,"used":505.76,"free":3576.39},{"epoch":26110593,"idl":99.85,"recv":0.01,"send":0.03,"writ":0.18,"used":505.74,"free":3576.41},{"epoch":26110594,"idl":99.8,"recv":0,"send":0.02,"writ":0.17,"used":505.75,"free":3576.4},{"epoch":26110595,"idl":99.74,"recv":0.01,"send":0.03,"writ":0.31,"used":505.54,"free":3576.62},{"epoch":26110596,"idl":99.65,"recv":0.01,"send":0.02,"writ":0.61,"used":505.86,"free":3576.31},{"epoch":26110597,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.14,"used":505.5,"free":3576.69},{"epoch":26110598,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.15,"used":505.52,"free":3576.67},{"epoch":26110599,"idl":99.72,"recv":0.01,"send":0.02,"writ":0.29,"used":505.77,"free":3576.4},{"epoch":26110600,"idl":99.73,"recv":0.01,"send":0.03,"writ":0.32,"used":505.58,"free":3576.6},{"epoch":26110601,"idl":99.75,"recv":0,"send":0.02,"writ":0.4,"used":505.87,"free":3576.3},{"epoch":26110602,"idl":99.88,"recv":0,"send":0.02,"writ":0.32,"used":505.47,"free":3576.7},{"epoch":26110603,"idl":99.87,"recv":0.01,"send":0.03,"writ":0.17,"used":505.49,"free":3576.67},{"epoch":26110604,"idl":99.88,"recv":0,"send":0.02,"writ":0.19,"used":505.47,"free":3576.7},{"epoch":26110605,"idl":99.69,"recv":0,"send":0.02,"writ":0.36,"used":505.3,"free":3576.88},{"epoch":26110606,"idl":99.74,"recv":0.01,"send":0.02,"writ":0.3,"used":505.65,"free":3576.53},{"epoch":26110607,"idl":99.87,"recv":0,"send":0.02,"writ":0.38,"used":505.75,"free":3576.43},{"epoch":26110608,"idl":99.89,"recv":0,"send":0.02,"writ":0.14,"used":505.76,"free":3576.4},{"epoch":26110609,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.14,"used":505.71,"free":3576.45},{"epoch":26110610,"idl":99.76,"recv":0.01,"send":0.02,"writ":0.27,"used":505.3,"free":3576.88},{"epoch":26110611,"idl":99.85,"recv":0,"send":0.02,"writ":0.16,"used":505.27,"free":3576.91},{"epoch":26110612,"idl":98.8,"recv":0,"send":0.02,"writ":0.57,"used":506.23,"free":3575.94},{"epoch":26110613,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.15,"used":505.75,"free":3576.41},{"epoch":26110614,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":505.71,"free":3576.45},{"epoch":26110615,"idl":99.71,"recv":0,"send":0.02,"writ":0.29,"used":505.29,"free":3576.89},{"epoch":26110616,"idl":99.86,"recv":0,"send":0.02,"writ":0.16,"used":505.25,"free":3576.93},{"epoch":26110617,"idl":99.71,"recv":0,"send":0.02,"writ":0.55,"used":504.78,"free":3577.4},{"epoch":26110618,"idl":99.87,"recv":0.01,"send":0.03,"writ":0.15,"used":504.05,"free":3578.12},{"epoch":26110619,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":503.98,"free":3578.19},{"epoch":26110620,"idl":99.46,"recv":0.01,"send":0.03,"writ":0.29,"used":505.5,"free":3576.68},{"epoch":26110621,"idl":99.78,"recv":0.01,"send":0.03,"writ":0.16,"used":505.51,"free":3576.67},{"epoch":26110622,"idl":99.72,"recv":0.01,"send":0.02,"writ":0.56,"used":505.66,"free":3576.52},{"epoch":26110623,"idl":99.85,"recv":0,"send":0.02,"writ":0.17,"used":505.28,"free":3576.89},{"epoch":26110624,"idl":99.88,"recv":0,"send":0.02,"writ":0.15,"used":505.22,"free":3576.94},{"epoch":26110625,"idl":99.78,"recv":0.01,"send":0.03,"writ":0.33,"used":505.5,"free":3576.68},{"epoch":26110626,"idl":99.93,"recv":0.01,"send":0.02,"writ":0.14,"used":505.53,"free":3576.65},{"epoch":26110627,"idl":99.74,"recv":0.01,"send":0.03,"writ":0.55,"used":505.97,"free":3576.21},{"epoch":26110628,"idl":99.86,"recv":0,"send":0.02,"writ":0.14,"used":505.78,"free":3576.39},{"epoch":26110629,"idl":99.76,"recv":0,"send":0.02,"writ":0.39,"used":505.73,"free":3576.41},{"epoch":26110630,"idl":99.66,"recv":0.01,"send":0.03,"writ":0.32,"used":505.5,"free":3576.66},{"epoch":26110631,"idl":99.87,"recv":0.01,"send":0.03,"writ":0.22,"used":505.51,"free":3576.66},{"epoch":26110632,"idl":99.73,"recv":0,"send":0.02,"writ":0.61,"used":505.89,"free":3576.26},{"epoch":26110633,"idl":99.9,"recv":0,"send":0.02,"writ":0.2,"used":505.75,"free":3576.4},{"epoch":26110634,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.18,"used":505.7,"free":3576.46},{"epoch":26110635,"idl":99.66,"recv":0,"send":0.02,"writ":0.32,"used":504.77,"free":3577.41},{"epoch":26110636,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.18,"used":504.76,"free":3577.42},{"epoch":26110637,"idl":99.71,"recv":0.01,"send":0.02,"writ":0.45,"used":505.26,"free":3576.91},{"epoch":26110638,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.29,"used":505.23,"free":3576.95},{"epoch":26110639,"idl":99.85,"recv":0,"send":0.02,"writ":0.17,"used":505.26,"free":3576.91},{"epoch":26110640,"idl":99.73,"recv":0.01,"send":0.03,"writ":0.28,"used":505.47,"free":3576.71},{"epoch":26110641,"idl":99.87,"recv":0,"send":0.02,"writ":0.13,"used":505.52,"free":3576.66},{"epoch":26110642,"idl":99.7,"recv":0.01,"send":0.02,"writ":0.33,"used":505.79,"free":3576.39},{"epoch":26110643,"idl":99.86,"recv":0,"send":0.02,"writ":0.41,"used":505.49,"free":3576.69},{"epoch":26110644,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.19,"used":505.48,"free":3576.69},{"epoch":26110645,"idl":99.8,"recv":0.01,"send":0.03,"writ":0.33,"used":505.71,"free":3576.47},{"epoch":26110646,"idl":99.86,"recv":0.01,"send":0.03,"writ":0.14,"used":505.72,"free":3576.46},{"epoch":26110647,"idl":99.77,"recv":0,"send":0.02,"writ":0.3,"used":506.09,"free":3576.09},{"epoch":26110648,"idl":99.82,"recv":0,"send":0.02,"writ":0.42,"used":504.93,"free":3577.24},{"epoch":26110649,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":504.97,"free":3577.2},{"epoch":26110650,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":504.82,"free":3577.37},{"epoch":26110651,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":504.78,"free":3577.4},{"epoch":26110652,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":504.78,"free":3577.41},{"epoch":26110653,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":505.13,"free":3577.05},{"epoch":26110654,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":504.74,"free":3577.44},{"epoch":26110655,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":505.7,"free":3576.5},{"epoch":26110656,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":505.68,"free":3576.51},{"epoch":26110657,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.67,"free":3576.52},{"epoch":26110658,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":506.51,"free":3575.67},{"epoch":26110659,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":505.69,"free":3576.47},{"epoch":26110660,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":506.09,"free":3576.09},{"epoch":26110661,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.08,"free":3576.09},{"epoch":26110662,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.05,"free":3576.12},{"epoch":26110663,"idl":99.71,"recv":0,"send":0,"writ":0.49,"used":506.51,"free":3575.65},{"epoch":26110664,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":506,"free":3576.15},{"epoch":26110665,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":505.78,"free":3576.4},{"epoch":26110666,"idl":99.94,"recv":0,"send":0,"writ":0.33,"used":505.74,"free":3576.43},{"epoch":26110667,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":505.74,"free":3576.43},{"epoch":26110668,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":506.05,"free":3576.11},{"epoch":26110669,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":505.67,"free":3576.49},{"epoch":26110670,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":505.93,"free":3576.25},{"epoch":26110671,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":506.04,"free":3576.15},{"epoch":26110672,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":506.08,"free":3576.11},{"epoch":26110673,"idl":99.75,"recv":0.01,"send":0.01,"writ":0.57,"used":506.33,"free":3575.85},{"epoch":26110674,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.95,"free":3576.23},{"epoch":26110675,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":505.72,"free":3576.47},{"epoch":26110676,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":505.68,"free":3576.51},{"epoch":26110677,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":505.67,"free":3576.51},{"epoch":26110678,"idl":99.76,"recv":0,"send":0,"writ":0.43,"used":506.13,"free":3576.05},{"epoch":26110679,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":506.05,"free":3576.12},{"epoch":26110680,"idl":99.53,"recv":0.03,"send":0.02,"writ":0.32,"used":505.85,"free":3576.34},{"epoch":26110681,"idl":99.76,"recv":0.03,"send":0.02,"writ":0.14,"used":505.73,"free":3576.46},{"epoch":26110682,"idl":99.81,"recv":0.04,"send":0.02,"writ":0.16,"used":505.75,"free":3576.43},{"epoch":26110683,"idl":99.81,"recv":0.04,"send":0.03,"writ":0.14,"used":505.74,"free":3576.43},{"epoch":26110684,"idl":99.6,"recv":0.04,"send":0.05,"writ":0.55,"used":506.45,"free":3575.72},{"epoch":26110685,"idl":99.67,"recv":0.04,"send":0.05,"writ":0.35,"used":505.75,"free":3576.44},{"epoch":26110686,"idl":99.88,"recv":0.03,"send":0.04,"writ":0.14,"used":505.74,"free":3576.45},{"epoch":26110687,"idl":99.89,"recv":0.02,"send":0.04,"writ":0.18,"used":505.74,"free":3576.44},{"epoch":26110688,"idl":99.87,"recv":0.05,"send":0.05,"writ":0.16,"used":505.74,"free":3576.44},{"epoch":26110689,"idl":99.61,"recv":0.04,"send":0.04,"writ":0.74,"used":506.32,"free":3575.83},{"epoch":26110690,"idl":99.69,"recv":0.02,"send":0.04,"writ":0.33,"used":505.99,"free":3576.18},{"epoch":26110691,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.18,"used":506.02,"free":3576.15},{"epoch":26110692,"idl":99.79,"recv":0.01,"send":0.03,"writ":0.18,"used":506.01,"free":3576.15},{"epoch":26110693,"idl":99.73,"recv":0.01,"send":0.02,"writ":0.2,"used":505.35,"free":3576.81},{"epoch":26110694,"idl":99.63,"recv":0.01,"send":0.02,"writ":0.61,"used":505.52,"free":3576.63},{"epoch":26110695,"idl":99.65,"recv":0,"send":0.02,"writ":0.35,"used":505.27,"free":3576.9},{"epoch":26110696,"idl":99.78,"recv":0,"send":0.02,"writ":0.18,"used":505.24,"free":3576.93},{"epoch":26110697,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.25,"used":505.26,"free":3576.9},{"epoch":26110698,"idl":99.73,"recv":0.01,"send":0.02,"writ":0.21,"used":505.2,"free":3576.95},{"epoch":26110699,"idl":99.63,"recv":0.01,"send":0.02,"writ":0.63,"used":505.73,"free":3576.42},{"epoch":26110700,"idl":99.71,"recv":0,"send":0.02,"writ":0.36,"used":505.23,"free":3576.93},{"epoch":26110701,"idl":99.7,"recv":0.01,"send":0.02,"writ":0.2,"used":505.24,"free":3576.93},{"epoch":26110702,"idl":99.68,"recv":0.01,"send":0.03,"writ":0.24,"used":505.24,"free":3576.92},{"epoch":26110703,"idl":99.71,"recv":0.01,"send":0.03,"writ":0.2,"used":505,"free":3577.16},{"epoch":26110704,"idl":99.69,"recv":0,"send":0.02,"writ":0.59,"used":505.47,"free":3576.68},{"epoch":26110705,"idl":99.57,"recv":0.01,"send":0.03,"writ":0.35,"used":505.02,"free":3577.14},{"epoch":26110706,"idl":99.68,"recv":0,"send":0.02,"writ":0.18,"used":504.98,"free":3577.19},{"epoch":26110707,"idl":99.76,"recv":0.01,"send":0.03,"writ":0.18,"used":505.02,"free":3577.14},{"epoch":26110708,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.19,"used":504.99,"free":3577.16},{"epoch":26110709,"idl":99.58,"recv":0,"send":0.02,"writ":0.56,"used":505.22,"free":3576.93},{"epoch":26110710,"idl":99.65,"recv":0.01,"send":0.03,"writ":0.32,"used":505.52,"free":3576.65},{"epoch":26110711,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.18,"used":505.48,"free":3576.68},{"epoch":26110712,"idl":99.78,"recv":0,"send":0.02,"writ":0.18,"used":505.45,"free":3576.71},{"epoch":26110713,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.18,"used":505.52,"free":3576.63},{"epoch":26110714,"idl":99.73,"recv":0,"send":0.02,"writ":0.55,"used":506.07,"free":3576.08},{"epoch":26110715,"idl":99.79,"recv":0,"send":0.02,"writ":0.39,"used":505.27,"free":3576.9},{"epoch":26110716,"idl":99.77,"recv":0.01,"send":0.03,"writ":0.18,"used":505.27,"free":3576.9},{"epoch":26110717,"idl":99.82,"recv":0,"send":0.02,"writ":0.18,"used":505.23,"free":3576.93},{"epoch":26110718,"idl":99.9,"recv":0,"send":0.02,"writ":0.18,"used":505.26,"free":3576.89},{"epoch":26110719,"idl":99.67,"recv":0.01,"send":0.02,"writ":0.3,"used":505.73,"free":3576.39},{"epoch":26110720,"idl":99.46,"recv":0.01,"send":0.03,"writ":0.68,"used":505.35,"free":3576.79},{"epoch":26110721,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.14,"used":505.04,"free":3577.1},{"epoch":26110722,"idl":99.84,"recv":0,"send":0.02,"writ":0.17,"used":504.97,"free":3577.16},{"epoch":26110723,"idl":99.86,"recv":0,"send":0.02,"writ":0.18,"used":504.99,"free":3577.14},{"epoch":26110724,"idl":99.86,"recv":0,"send":0.02,"writ":0.21,"used":504.98,"free":3577.18},{"epoch":26110725,"idl":99.42,"recv":0,"send":0.02,"writ":0.67,"used":505.89,"free":3576.29},{"epoch":26110726,"idl":99.89,"recv":0,"send":0.02,"writ":0.16,"used":505.53,"free":3576.64},{"epoch":26110727,"idl":99.76,"recv":0.01,"send":0.03,"writ":0.14,"used":505.49,"free":3576.67},{"epoch":26110728,"idl":99.78,"recv":0,"send":0.02,"writ":0.16,"used":505.49,"free":3576.67},{"epoch":26110729,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.14,"used":505.5,"free":3576.66},{"epoch":26110730,"idl":99.54,"recv":0.01,"send":0.02,"writ":0.65,"used":504.94,"free":3577.23},{"epoch":26110731,"idl":99.87,"recv":0.01,"send":0.03,"writ":0.16,"used":504.52,"free":3577.65},{"epoch":26110732,"idl":99.85,"recv":0,"send":0.03,"writ":0.15,"used":504.51,"free":3577.65},{"epoch":26110733,"idl":99.82,"recv":0.01,"send":0.03,"writ":0.14,"used":504.46,"free":3577.7},{"epoch":26110734,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.16,"used":504.51,"free":3577.64},{"epoch":26110735,"idl":99.56,"recv":0.01,"send":0.03,"writ":0.7,"used":506.22,"free":3575.95},{"epoch":26110736,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.13,"used":505.47,"free":3576.69},{"epoch":26110737,"idl":99.85,"recv":0.01,"send":0.03,"writ":0.16,"used":505.53,"free":3576.63},{"epoch":26110738,"idl":99.79,"recv":0.01,"send":0.03,"writ":0.14,"used":505.49,"free":3576.67},{"epoch":26110739,"idl":99.82,"recv":0,"send":0.02,"writ":0.15,"used":505.46,"free":3576.69},{"epoch":26110740,"idl":99.46,"recv":0,"send":0.02,"writ":0.65,"used":506,"free":3576.17},{"epoch":26110741,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.23,"used":505.46,"free":3576.7},{"epoch":26110742,"idl":99.85,"recv":0,"send":0.02,"writ":0.17,"used":505.53,"free":3576.64},{"epoch":26110743,"idl":93.13,"recv":1.41,"send":0.03,"writ":73.86,"used":520.9,"free":3555.01},{"epoch":26110744,"idl":99.83,"recv":0,"send":0.02,"writ":0.2,"used":508.22,"free":3573.59},{"epoch":26110745,"idl":99.59,"recv":0.01,"send":0.02,"writ":0.75,"used":508.69,"free":3573.13},{"epoch":26110746,"idl":99.86,"recv":0.01,"send":0.03,"writ":0.14,"used":508.49,"free":3573.31},{"epoch":26110747,"idl":99.86,"recv":0,"send":0.02,"writ":0.15,"used":508.43,"free":3573.37},{"epoch":26110748,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.18,"used":506.72,"free":3575.13},{"epoch":26110749,"idl":99.75,"recv":0,"send":0.03,"writ":0.3,"used":505.53,"free":3576.33},{"epoch":26110750,"idl":99.55,"recv":0,"send":0.02,"writ":0.54,"used":505.88,"free":3576},{"epoch":26110751,"idl":99.86,"recv":0.01,"send":0.03,"writ":0.3,"used":504.84,"free":3577.04},{"epoch":26110752,"idl":99.87,"recv":0,"send":0.02,"writ":0.14,"used":504.81,"free":3577.07},{"epoch":26110753,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.15,"used":504.83,"free":3577.06},{"epoch":26110754,"idl":99.89,"recv":0,"send":0.02,"writ":0.16,"used":504.83,"free":3577.07},{"epoch":26110755,"idl":99.52,"recv":0,"send":0.02,"writ":0.54,"used":506.13,"free":3575.79},{"epoch":26110756,"idl":99.88,"recv":0,"send":0.02,"writ":0.32,"used":506.09,"free":3575.83},{"epoch":26110757,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.22,"used":506.01,"free":3575.9},{"epoch":26110758,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.18,"used":506.05,"free":3575.85},{"epoch":26110759,"idl":99.85,"recv":0.01,"send":0.03,"writ":0.19,"used":506.05,"free":3575.86},{"epoch":26110760,"idl":99.7,"recv":0.01,"send":0.02,"writ":0.3,"used":505.83,"free":3576.09},{"epoch":26110761,"idl":99.75,"recv":0.01,"send":0.03,"writ":0.57,"used":506.6,"free":3575.32},{"epoch":26110762,"idl":99.85,"recv":0.01,"send":0.03,"writ":0.17,"used":505.78,"free":3576.13},{"epoch":26110763,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.16,"used":505.3,"free":3576.61},{"epoch":26110764,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.14,"used":505.31,"free":3576.59},{"epoch":26110765,"idl":98.66,"recv":0,"send":0.02,"writ":15.71,"used":508.08,"free":3574.44},{"epoch":26110766,"idl":99.72,"recv":0.01,"send":0.03,"writ":0.57,"used":506.29,"free":3575.77},{"epoch":26110767,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.16,"used":505.69,"free":3576.36},{"epoch":26110768,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.14,"used":505.71,"free":3576.34},{"epoch":26110769,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.15,"used":505.67,"free":3576.37},{"epoch":26110770,"idl":99.74,"recv":0,"send":0.02,"writ":0.3,"used":505.7,"free":3576.37},{"epoch":26110771,"idl":99.71,"recv":0.01,"send":0.02,"writ":0.57,"used":505.93,"free":3576.13},{"epoch":26110772,"idl":99.82,"recv":0,"send":0.02,"writ":0.14,"used":505.42,"free":3576.63},{"epoch":26110773,"idl":99.85,"recv":0,"send":0.02,"writ":0.14,"used":505.49,"free":3576.56},{"epoch":26110774,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.14,"used":505.43,"free":3576.61},{"epoch":26110775,"idl":99.65,"recv":0.01,"send":0.03,"writ":0.27,"used":505.7,"free":3576.37},{"epoch":26110776,"idl":99.67,"recv":0,"send":0.02,"writ":0.57,"used":506.1,"free":3575.97},{"epoch":26110777,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.15,"used":505.7,"free":3576.36},{"epoch":26110778,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.14,"used":505.67,"free":3576.38},{"epoch":26110779,"idl":99.79,"recv":0,"send":0.02,"writ":0.32,"used":505.73,"free":3576.31},{"epoch":26110780,"idl":99.78,"recv":0,"send":0.01,"writ":0.26,"used":505.73,"free":3576.32},{"epoch":26110781,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":506.14,"free":3575.91},{"epoch":26110782,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":505.88,"free":3576.15},{"epoch":26110783,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.89,"free":3576.14},{"epoch":26110784,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":505.98,"free":3576.05},{"epoch":26110785,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":505.75,"free":3576.3},{"epoch":26110786,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":506.13,"free":3575.92},{"epoch":26110787,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.94,"free":3576.09},{"epoch":26110788,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":505.91,"free":3576.12},{"epoch":26110789,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.91,"free":3576.14},{"epoch":26110790,"idl":99.81,"recv":0,"send":0,"writ":0.26,"used":505.9,"free":3576.16},{"epoch":26110791,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":506.24,"free":3575.82},{"epoch":26110792,"idl":99.88,"recv":0,"send":0,"writ":0.4,"used":505.86,"free":3576.2},{"epoch":26110793,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":505.93,"free":3576.12},{"epoch":26110794,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.04,"free":3576.01},{"epoch":26110795,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":505.56,"free":3576.5},{"epoch":26110796,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":505.53,"free":3576.54},{"epoch":26110797,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":506.73,"free":3575.33},{"epoch":26110798,"idl":97.02,"recv":0.02,"send":0.01,"writ":0.52,"used":511.48,"free":3571.88},{"epoch":26110799,"idl":99.83,"recv":0.01,"send":0,"writ":78.2,"used":508.56,"free":3573.14},{"epoch":26110800,"idl":99.67,"recv":0.01,"send":0,"writ":0.26,"used":508.36,"free":3573.35},{"epoch":26110801,"idl":99.89,"recv":0.01,"send":0,"writ":0.16,"used":508.36,"free":3573.35},{"epoch":26110802,"idl":99.73,"recv":0.01,"send":0,"writ":0.56,"used":508.84,"free":3572.86},{"epoch":26110803,"idl":99.8,"recv":0.01,"send":0,"writ":0.16,"used":508.14,"free":3573.57},{"epoch":26110804,"idl":99.85,"recv":0.01,"send":0,"writ":0.18,"used":506.2,"free":3575.54},{"epoch":26110805,"idl":99.8,"recv":0.01,"send":0,"writ":0.29,"used":505.43,"free":3576.32},{"epoch":26110806,"idl":99.85,"recv":0.01,"send":0,"writ":0.15,"used":505.43,"free":3576.31},{"epoch":26110807,"idl":99.76,"recv":0.01,"send":0,"writ":0.57,"used":505.82,"free":3575.93},{"epoch":26110808,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":505.43,"free":3576.3},{"epoch":26110809,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":506.14,"free":3575.59},{"epoch":26110810,"idl":99.74,"recv":0,"send":0,"writ":0.27,"used":505.67,"free":3576.08},{"epoch":26110811,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":505.62,"free":3576.12},{"epoch":26110812,"idl":99.64,"recv":0,"send":0,"writ":0.53,"used":506.65,"free":3575.09},{"epoch":26110813,"idl":99.82,"recv":0,"send":0,"writ":0.23,"used":506.26,"free":3575.47},{"epoch":26110814,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.26,"free":3575.48},{"epoch":26110815,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":506.49,"free":3575.28},{"epoch":26110816,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":506.49,"free":3575.27},{"epoch":26110817,"idl":99.74,"recv":0,"send":0,"writ":0.46,"used":506.67,"free":3575.08},{"epoch":26110818,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":505.46,"free":3576.29},{"epoch":26110819,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":505.43,"free":3576.32},{"epoch":26110820,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":505.44,"free":3576.32},{"epoch":26110821,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":505.41,"free":3576.35},{"epoch":26110822,"idl":99.77,"recv":0,"send":0,"writ":0.63,"used":506.14,"free":3575.61},{"epoch":26110823,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":505.84,"free":3575.9},{"epoch":26110824,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506,"free":3575.74},{"epoch":26110825,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":506.25,"free":3575.5},{"epoch":26110826,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.23,"free":3575.52},{"epoch":26110827,"idl":99.72,"recv":0.01,"send":0,"writ":0.32,"used":506.51,"free":3575.24},{"epoch":26110828,"idl":99.88,"recv":0,"send":0,"writ":0.39,"used":506.21,"free":3575.53},{"epoch":26110829,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.17,"free":3575.56},{"epoch":26110830,"idl":98.56,"recv":0,"send":0,"writ":0.31,"used":505.46,"free":3576.3},{"epoch":26110831,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":505.42,"free":3576.33},{"epoch":26110832,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.4,"free":3576.35},{"epoch":26110833,"idl":99.72,"recv":0,"send":0,"writ":0.64,"used":505.73,"free":3576.02},{"epoch":26110834,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.36,"free":3576.38},{"epoch":26110835,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":505.37,"free":3576.39},{"epoch":26110836,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":505.48,"free":3576.28},{"epoch":26110837,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":505.5,"free":3576.26},{"epoch":26110838,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":506.71,"free":3575.03},{"epoch":26110839,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":505.98,"free":3575.74},{"epoch":26110840,"idl":99.75,"recv":0,"send":0,"writ":0.26,"used":506.18,"free":3575.55},{"epoch":26110841,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.17,"free":3575.57},{"epoch":26110842,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.15,"free":3575.58},{"epoch":26110843,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":506.65,"free":3575.07},{"epoch":26110844,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.34,"free":3575.38},{"epoch":26110845,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":506.35,"free":3575.38},{"epoch":26110846,"idl":99.23,"recv":0,"send":0,"writ":0.14,"used":506.33,"free":3575.4},{"epoch":26110847,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.93,"free":3575.8},{"epoch":26110848,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":506.31,"free":3575.4},{"epoch":26110849,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":505.47,"free":3576.24},{"epoch":26110850,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":504.74,"free":3576.99},{"epoch":26110851,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":504.71,"free":3577.01},{"epoch":26110852,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":504.7,"free":3577.02},{"epoch":26110853,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":505.4,"free":3576.32},{"epoch":26110854,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.14,"free":3576.58},{"epoch":26110855,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":505.4,"free":3576.33},{"epoch":26110856,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.36,"free":3576.36},{"epoch":26110857,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":505.4,"free":3576.32},{"epoch":26110858,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":505.74,"free":3575.98},{"epoch":26110859,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":505.18,"free":3576.53},{"epoch":26110860,"idl":99.67,"recv":0,"send":0,"writ":0.28,"used":504.93,"free":3576.79},{"epoch":26110861,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":504.91,"free":3576.81},{"epoch":26110862,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":504.88,"free":3576.84},{"epoch":26110863,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":505.41,"free":3576.3},{"epoch":26110864,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":505.8,"free":3575.9},{"epoch":26110865,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":505.34,"free":3576.38},{"epoch":26110866,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":505.48,"free":3576.23},{"epoch":26110867,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":505.49,"free":3576.22},{"epoch":26110868,"idl":99.66,"recv":0,"send":0,"writ":0.4,"used":505.83,"free":3575.87},{"epoch":26110869,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":505.68,"free":3576},{"epoch":26110870,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":505.44,"free":3576.25},{"epoch":26110871,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":505.4,"free":3576.29},{"epoch":26110872,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":505.39,"free":3576.3},{"epoch":26110873,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":505.37,"free":3576.31},{"epoch":26110874,"idl":99.56,"recv":0,"send":0,"writ":0.6,"used":506.31,"free":3575.37},{"epoch":26110875,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":505.59,"free":3576.11},{"epoch":26110876,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.58,"free":3576.11},{"epoch":26110877,"idl":99.76,"recv":0,"send":0,"writ":0.19,"used":505.67,"free":3576.02},{"epoch":26110878,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":505.72,"free":3575.96},{"epoch":26110879,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":506.29,"free":3575.38},{"epoch":26110880,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":505.92,"free":3575.77},{"epoch":26110881,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":505.9,"free":3575.78},{"epoch":26110882,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":505.86,"free":3575.82},{"epoch":26110883,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":505.35,"free":3576.32},{"epoch":26110884,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":505.95,"free":3575.72},{"epoch":26110885,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":505.6,"free":3576.09},{"epoch":26110886,"idl":99.82,"recv":0.01,"send":0,"writ":0.16,"used":505.66,"free":3576.03},{"epoch":26110887,"idl":99.8,"recv":0.01,"send":0,"writ":0.17,"used":505.64,"free":3576.04},{"epoch":26110888,"idl":99.8,"recv":0.01,"send":0,"writ":0.16,"used":505.62,"free":3576.05},{"epoch":26110889,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":505.93,"free":3575.73},{"epoch":26110890,"idl":99.71,"recv":0,"send":0,"writ":0.28,"used":505.57,"free":3576.11},{"epoch":26110891,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":505.56,"free":3576.12},{"epoch":26110892,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":505.53,"free":3576.14},{"epoch":26110893,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":505.7,"free":3575.97},{"epoch":26110894,"idl":99.68,"recv":0,"send":0,"writ":0.4,"used":506.12,"free":3575.55},{"epoch":26110895,"idl":99.71,"recv":0,"send":0,"writ":0.43,"used":505.93,"free":3575.77},{"epoch":26110896,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":505.91,"free":3575.79},{"epoch":26110897,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":505.9,"free":3575.8},{"epoch":26110898,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.87,"free":3575.82},{"epoch":26110899,"idl":99.59,"recv":0,"send":0,"writ":0.65,"used":506.23,"free":3575.44},{"epoch":26110900,"idl":99.7,"recv":0,"send":0,"writ":0.34,"used":505.87,"free":3575.81},{"epoch":26110901,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.84,"free":3575.84},{"epoch":26110902,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":505.82,"free":3575.85},{"epoch":26110903,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":505.79,"free":3575.88},{"epoch":26110904,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":506.36,"free":3575.31},{"epoch":26110905,"idl":99.64,"recv":0,"send":0,"writ":0.6,"used":504.81,"free":3576.87},{"epoch":26110906,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":504.72,"free":3576.96},{"epoch":26110907,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":504.7,"free":3576.97},{"epoch":26110908,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":504.68,"free":3576.99},{"epoch":26110909,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":504.66,"free":3577},{"epoch":26110910,"idl":99.58,"recv":0,"send":0,"writ":0.71,"used":506.03,"free":3575.65},{"epoch":26110911,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":505.87,"free":3575.8},{"epoch":26110912,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":505.85,"free":3575.82},{"epoch":26110913,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":505.84,"free":3575.83},{"epoch":26110914,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":505.81,"free":3575.85},{"epoch":26110915,"idl":99.58,"recv":0,"send":0,"writ":0.69,"used":506.16,"free":3575.52},{"epoch":26110916,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":505.79,"free":3575.88},{"epoch":26110917,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.96,"free":3575.71},{"epoch":26110918,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":505.97,"free":3575.7},{"epoch":26110919,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.95,"free":3575.71},{"epoch":26110920,"idl":99.51,"recv":0,"send":0,"writ":0.7,"used":506.31,"free":3575.36},{"epoch":26110921,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.93,"free":3575.74},{"epoch":26110922,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.91,"free":3575.76},{"epoch":26110923,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":505.88,"free":3575.78},{"epoch":26110924,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":505.87,"free":3575.79},{"epoch":26110925,"idl":99.62,"recv":0,"send":0,"writ":0.71,"used":506.76,"free":3574.91},{"epoch":26110926,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.09,"free":3575.57},{"epoch":26110927,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.06,"free":3575.6},{"epoch":26110928,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.09,"free":3575.57},{"epoch":26110929,"idl":99.67,"recv":0,"send":0,"writ":0.36,"used":505.97,"free":3575.67},{"epoch":26110930,"idl":99.61,"recv":0,"send":0.02,"writ":0.74,"used":506.56,"free":3575.09},{"epoch":26110931,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.89,"free":3575.76},{"epoch":26110932,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":505.87,"free":3575.77},{"epoch":26110933,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":505.84,"free":3575.79},{"epoch":26110934,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":505.84,"free":3575.81},{"epoch":26110935,"idl":99.41,"recv":0,"send":0,"writ":0.55,"used":505.58,"free":3576.08},{"epoch":26110936,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":505.81,"free":3575.84},{"epoch":26110937,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":505.87,"free":3575.79},{"epoch":26110938,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.96,"free":3575.69},{"epoch":26110939,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":505.93,"free":3575.72},{"epoch":26110940,"idl":99.55,"recv":0,"send":0,"writ":0.7,"used":505.68,"free":3576},{"epoch":26110941,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":505.67,"free":3576.01},{"epoch":26110942,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":505.64,"free":3576.04},{"epoch":26110943,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":505.63,"free":3576.04},{"epoch":26110944,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":505.59,"free":3576.07},{"epoch":26110945,"idl":99.67,"recv":0,"send":0,"writ":0.31,"used":505.82,"free":3575.86},{"epoch":26110946,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":504.96,"free":3576.72},{"epoch":26110947,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":504.6,"free":3577.08},{"epoch":26110948,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":504.73,"free":3576.94},{"epoch":26110949,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":504.7,"free":3576.96},{"epoch":26110950,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":505.67,"free":3576.01},{"epoch":26110951,"idl":94.82,"recv":0.34,"send":0.01,"writ":260.98,"used":518.39,"free":3563.6},{"epoch":26110952,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":508.93,"free":3572.83},{"epoch":26110953,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":508.9,"free":3572.86},{"epoch":26110954,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":508.88,"free":3572.87},{"epoch":26110955,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":508.64,"free":3573.13},{"epoch":26110956,"idl":99.66,"recv":0,"send":0,"writ":0.64,"used":507.77,"free":3574.01},{"epoch":26110957,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":506.37,"free":3575.43},{"epoch":26110958,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":506.12,"free":3575.67},{"epoch":26110959,"idl":99.62,"recv":0,"send":0,"writ":0.43,"used":506.09,"free":3575.68},{"epoch":26110960,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":506.58,"free":3575.2},{"epoch":26110961,"idl":99.67,"recv":0,"send":0,"writ":0.52,"used":506.97,"free":3574.82},{"epoch":26110962,"idl":99.8,"recv":0,"send":0,"writ":0.25,"used":506.3,"free":3575.49},{"epoch":26110963,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":506.27,"free":3575.51},{"epoch":26110964,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":506.27,"free":3575.51},{"epoch":26110965,"idl":99.69,"recv":0,"send":0,"writ":0.37,"used":506.27,"free":3575.53},{"epoch":26110966,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":506.6,"free":3575.19},{"epoch":26110967,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":506.22,"free":3575.57},{"epoch":26110968,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":506.21,"free":3575.58},{"epoch":26110969,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":506.33,"free":3575.46},{"epoch":26110970,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":506.14,"free":3575.66},{"epoch":26110971,"idl":99.62,"recv":0,"send":0,"writ":0.44,"used":506.49,"free":3575.3},{"epoch":26110972,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":506.34,"free":3575.45},{"epoch":26110973,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.31,"free":3575.48},{"epoch":26110974,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":506.3,"free":3575.48},{"epoch":26110975,"idl":99.64,"recv":0,"send":0,"writ":0.34,"used":506.54,"free":3575.27},{"epoch":26110976,"idl":99.66,"recv":0,"send":0,"writ":0.57,"used":506.87,"free":3574.93},{"epoch":26110977,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":506.5,"free":3575.3},{"epoch":26110978,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":506.49,"free":3575.3},{"epoch":26110979,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":506.46,"free":3575.33},{"epoch":26110980,"idl":99.51,"recv":0,"send":0,"writ":0.36,"used":506.53,"free":3575.27},{"epoch":26110981,"idl":99.73,"recv":0,"send":0,"writ":0.17,"used":506.52,"free":3575.28},{"epoch":26110982,"idl":99.58,"recv":0,"send":0,"writ":0.59,"used":506.96,"free":3574.83},{"epoch":26110983,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":506.59,"free":3575.22},{"epoch":26110984,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":506.58,"free":3575.23},{"epoch":26110985,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":505.39,"free":3576.44},{"epoch":26110986,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":505.33,"free":3576.49},{"epoch":26110987,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":506.63,"free":3575.19},{"epoch":26110988,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":506.27,"free":3575.54},{"epoch":26110989,"idl":99.67,"recv":0,"send":0,"writ":0.38,"used":506.72,"free":3575.07},{"epoch":26110990,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":506.72,"free":3575.08},{"epoch":26110991,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":506.71,"free":3575.09},{"epoch":26110992,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":506.72,"free":3575.07},{"epoch":26110993,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.35,"free":3575.43},{"epoch":26110994,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.33,"free":3575.48},{"epoch":26110995,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":506.58,"free":3575.25},{"epoch":26110996,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":506.56,"free":3575.27},{"epoch":26110997,"idl":99.65,"recv":0,"send":0,"writ":0.62,"used":507.05,"free":3574.77},{"epoch":26110998,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.76,"free":3575.06},{"epoch":26110999,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":506.75,"free":3575.07},{"epoch":26111000,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":506.5,"free":3575.33},{"epoch":26111001,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":506.48,"free":3575.34},{"epoch":26111002,"idl":99.63,"recv":0,"send":0,"writ":0.58,"used":506.15,"free":3575.67},{"epoch":26111003,"idl":99.78,"recv":0,"send":0,"writ":0.22,"used":505.46,"free":3576.36},{"epoch":26111004,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.52,"free":3576.3},{"epoch":26111005,"idl":99.7,"recv":0,"send":0,"writ":0.33,"used":505.61,"free":3576.22},{"epoch":26111006,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":505.6,"free":3576.23},{"epoch":26111007,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":506.24,"free":3575.59},{"epoch":26111008,"idl":99.01,"recv":0,"send":0,"writ":0.17,"used":505.55,"free":3576.27},{"epoch":26111009,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":505.52,"free":3576.29},{"epoch":26111010,"idl":98.56,"recv":0,"send":0,"writ":0.3,"used":504.8,"free":3577.03},{"epoch":26111011,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":504.77,"free":3577.06},{"epoch":26111012,"idl":99.69,"recv":0,"send":0,"writ":0.39,"used":505.17,"free":3576.65},{"epoch":26111013,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":505.47,"free":3576.35},{"epoch":26111014,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":505.45,"free":3576.37},{"epoch":26111015,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":505.45,"free":3576.38},{"epoch":26111016,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":505.61,"free":3576.21},{"epoch":26111017,"idl":99.68,"recv":0,"send":0,"writ":0.39,"used":505.99,"free":3575.83},{"epoch":26111018,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":505.84,"free":3575.98},{"epoch":26111019,"idl":99.55,"recv":0,"send":0,"writ":0.32,"used":505.81,"free":3575.98},{"epoch":26111020,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":505.82,"free":3575.99},{"epoch":26111021,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":505.8,"free":3576.01},{"epoch":26111022,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":505.78,"free":3576.02},{"epoch":26111023,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":506.11,"free":3575.69},{"epoch":26111024,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":505.75,"free":3576.05},{"epoch":26111025,"idl":99.6,"recv":0,"send":0,"writ":0.33,"used":505.03,"free":3576.78},{"epoch":26111026,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":504.99,"free":3576.82},{"epoch":26111027,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":504.97,"free":3576.84},{"epoch":26111028,"idl":99.65,"recv":0,"send":0,"writ":0.6,"used":506.25,"free":3575.55},{"epoch":26111029,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":505.86,"free":3575.93},{"epoch":26111030,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":506.13,"free":3575.68},{"epoch":26111031,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.1,"free":3575.71},{"epoch":26111032,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.09,"free":3575.71},{"epoch":26111033,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":506.54,"free":3575.25},{"epoch":26111034,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":505.8,"free":3575.99},{"epoch":26111035,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":506.04,"free":3575.77},{"epoch":26111036,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506,"free":3575.8},{"epoch":26111037,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.97,"free":3575.84},{"epoch":26111038,"idl":99.75,"recv":0,"send":0,"writ":0.51,"used":506.32,"free":3575.48},{"epoch":26111039,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":505.82,"free":3575.97},{"epoch":26111040,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":505.89,"free":3575.92},{"epoch":26111041,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":505.85,"free":3575.95},{"epoch":26111042,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.84,"free":3575.96},{"epoch":26111043,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":506.23,"free":3575.56},{"epoch":26111044,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":506.04,"free":3575.75},{"epoch":26111045,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":505.31,"free":3576.5},{"epoch":26111046,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":505.28,"free":3576.52},{"epoch":26111047,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":505.26,"free":3576.54},{"epoch":26111048,"idl":99.78,"recv":0,"send":0,"writ":0.39,"used":505.79,"free":3576},{"epoch":26111049,"idl":99.66,"recv":0,"send":0,"writ":0.46,"used":505.95,"free":3575.81},{"epoch":26111050,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":505.99,"free":3575.79},{"epoch":26111051,"idl":99.88,"recv":0.01,"send":0,"writ":0.18,"used":506.07,"free":3575.71},{"epoch":26111052,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":505.99,"free":3575.79},{"epoch":26111053,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":506.41,"free":3575.36},{"epoch":26111054,"idl":99.83,"recv":0.01,"send":0,"writ":0.29,"used":506.26,"free":3575.51},{"epoch":26111055,"idl":99.68,"recv":0,"send":0,"writ":0.31,"used":505.65,"free":3576.14},{"epoch":26111056,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.49,"free":3576.29},{"epoch":26111057,"idl":99.89,"recv":0.01,"send":0,"writ":0.18,"used":505.56,"free":3576.21},{"epoch":26111058,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":505.46,"free":3576.31},{"epoch":26111059,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":506.12,"free":3575.65},{"epoch":26111060,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":505.69,"free":3576.11},{"epoch":26111061,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":505.86,"free":3575.94},{"epoch":26111062,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.86,"free":3575.93},{"epoch":26111063,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":505.83,"free":3575.95},{"epoch":26111064,"idl":99.73,"recv":0,"send":0,"writ":0.6,"used":505.97,"free":3575.81},{"epoch":26111065,"idl":99.69,"recv":0,"send":0,"writ":0.33,"used":505.09,"free":3576.71},{"epoch":26111066,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":505.07,"free":3576.73},{"epoch":26111067,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":505.05,"free":3576.75},{"epoch":26111068,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":505.02,"free":3576.77},{"epoch":26111069,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":505.91,"free":3575.89},{"epoch":26111070,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":505.8,"free":3576.02},{"epoch":26111071,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":505.78,"free":3576.04},{"epoch":26111072,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":505.8,"free":3576.01},{"epoch":26111073,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":505.8,"free":3576},{"epoch":26111074,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":506.19,"free":3575.61},{"epoch":26111075,"idl":99.72,"recv":0,"send":0,"writ":0.38,"used":505.06,"free":3576.75},{"epoch":26111076,"idl":99.89,"recv":0.01,"send":0,"writ":0.13,"used":505.03,"free":3576.78},{"epoch":26111077,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":504.98,"free":3576.83},{"epoch":26111078,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":505.04,"free":3576.75},{"epoch":26111079,"idl":99.6,"recv":0,"send":0,"writ":0.67,"used":506.56,"free":3575.22},{"epoch":26111080,"idl":99.74,"recv":0,"send":0,"writ":0.43,"used":506.21,"free":3575.58},{"epoch":26111081,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":506.31,"free":3575.48},{"epoch":26111082,"idl":99.87,"recv":0.01,"send":0,"writ":0.14,"used":506.22,"free":3575.57},{"epoch":26111083,"idl":99.85,"recv":0.01,"send":0,"writ":0.15,"used":506.29,"free":3575.49},{"epoch":26111084,"idl":99.74,"recv":0.01,"send":0,"writ":0.57,"used":506.53,"free":3575.25},{"epoch":26111085,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":506.26,"free":3575.53},{"epoch":26111086,"idl":99.85,"recv":0.01,"send":0,"writ":0.16,"used":506.26,"free":3575.52},{"epoch":26111087,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.21,"free":3575.56},{"epoch":26111088,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":506.17,"free":3575.61},{"epoch":26111089,"idl":99.71,"recv":0.01,"send":0,"writ":0.41,"used":507,"free":3574.77},{"epoch":26111090,"idl":99.65,"recv":0.01,"send":0,"writ":0.44,"used":506.25,"free":3575.54},{"epoch":26111091,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.25,"free":3575.53},{"epoch":26111092,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.24,"free":3575.54},{"epoch":26111093,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.22,"free":3575.56},{"epoch":26111094,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.19,"free":3575.58},{"epoch":26111095,"idl":99.51,"recv":0,"send":0,"writ":0.7,"used":506.91,"free":3574.88},{"epoch":26111096,"idl":99.85,"recv":0.01,"send":0,"writ":0.16,"used":506.22,"free":3575.57},{"epoch":26111097,"idl":99.84,"recv":0.01,"send":0,"writ":0.14,"used":506.24,"free":3575.55},{"epoch":26111098,"idl":99.83,"recv":0.01,"send":0,"writ":0.16,"used":506.27,"free":3575.51},{"epoch":26111099,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":506.23,"free":3575.55},{"epoch":26111100,"idl":99.33,"recv":0.01,"send":0,"writ":0.7,"used":506.42,"free":3575.37},{"epoch":26111101,"idl":99.86,"recv":0.01,"send":0,"writ":0.17,"used":506.02,"free":3575.76},{"epoch":26111102,"idl":99.89,"recv":0.01,"send":0,"writ":0.15,"used":505.97,"free":3575.81},{"epoch":26111103,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.02,"free":3575.76},{"epoch":26111104,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":505.98,"free":3575.79},{"epoch":26111105,"idl":99.64,"recv":0.01,"send":0,"writ":0.68,"used":506.52,"free":3575.26},{"epoch":26111106,"idl":99.87,"recv":0.01,"send":0,"writ":0.16,"used":506.26,"free":3575.52},{"epoch":26111107,"idl":99.9,"recv":0.01,"send":0,"writ":0.15,"used":506.22,"free":3575.56},{"epoch":26111108,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.21,"free":3575.56},{"epoch":26111109,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":506.16,"free":3575.59},{"epoch":26111110,"idl":99.66,"recv":0,"send":0,"writ":0.73,"used":506.51,"free":3575.26},{"epoch":26111111,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.33,"free":3575.43},{"epoch":26111112,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":506.33,"free":3575.43},{"epoch":26111113,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":506.3,"free":3575.45},{"epoch":26111114,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.29,"free":3575.46},{"epoch":26111115,"idl":99.67,"recv":0,"send":0,"writ":0.7,"used":506.72,"free":3575.05},{"epoch":26111116,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.53,"free":3575.24},{"epoch":26111117,"idl":99.89,"recv":0,"send":0,"writ":0.22,"used":506.5,"free":3575.26},{"epoch":26111118,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.48,"free":3575.27},{"epoch":26111119,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.47,"free":3575.28},{"epoch":26111120,"idl":99.67,"recv":0,"send":0,"writ":0.7,"used":506.88,"free":3574.88},{"epoch":26111121,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":506.69,"free":3575.07},{"epoch":26111122,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":506.66,"free":3575.09},{"epoch":26111123,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.25,"free":3575.5},{"epoch":26111124,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.32,"free":3575.43},{"epoch":26111125,"idl":99.65,"recv":0,"send":0,"writ":0.46,"used":507.36,"free":3574.41},{"epoch":26111126,"idl":99.92,"recv":0,"send":0,"writ":0.42,"used":506.3,"free":3575.47},{"epoch":26111127,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":506.29,"free":3575.49},{"epoch":26111128,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.26,"free":3575.5},{"epoch":26111129,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.24,"free":3575.52},{"epoch":26111130,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":506.49,"free":3575.29},{"epoch":26111131,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":506.82,"free":3574.96},{"epoch":26111132,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.45,"free":3575.33},{"epoch":26111133,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.42,"free":3575.35},{"epoch":26111134,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.4,"free":3575.36},{"epoch":26111135,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":506.58,"free":3575.2},{"epoch":26111136,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":507.12,"free":3574.65},{"epoch":26111137,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.76,"free":3575},{"epoch":26111138,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.74,"free":3575.02},{"epoch":26111139,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":506.24,"free":3575.49},{"epoch":26111140,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":505.27,"free":3576.47},{"epoch":26111141,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":506.49,"free":3575.26},{"epoch":26111142,"idl":99.85,"recv":0.01,"send":0,"writ":0.14,"used":506.47,"free":3575.27},{"epoch":26111143,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.44,"free":3575.29},{"epoch":26111144,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.47,"free":3575.27},{"epoch":26111145,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":506.44,"free":3575.33},{"epoch":26111146,"idl":99.75,"recv":0,"send":0,"writ":0.51,"used":506.92,"free":3574.84},{"epoch":26111147,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":506.44,"free":3575.31},{"epoch":26111148,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.49,"free":3575.26},{"epoch":26111149,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.47,"free":3575.27},{"epoch":26111150,"idl":99.76,"recv":0.01,"send":0,"writ":0.32,"used":506.47,"free":3575.29},{"epoch":26111151,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":506.86,"free":3574.9},{"epoch":26111152,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":506.45,"free":3575.3},{"epoch":26111153,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":506.2,"free":3575.55},{"epoch":26111154,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":505.46,"free":3576.28},{"epoch":26111155,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":505.76,"free":3576.01},{"epoch":26111156,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":506.17,"free":3575.59},{"epoch":26111157,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":505.98,"free":3575.78},{"epoch":26111158,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":505.94,"free":3575.81},{"epoch":26111159,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.96,"free":3575.78},{"epoch":26111160,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":505.76,"free":3576},{"epoch":26111161,"idl":99.71,"recv":0.01,"send":0,"writ":0.54,"used":506.45,"free":3575.31},{"epoch":26111162,"idl":99.85,"recv":0.01,"send":0,"writ":0.15,"used":505.77,"free":3575.98},{"epoch":26111163,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.69,"free":3576.06},{"epoch":26111164,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":505.75,"free":3575.99},{"epoch":26111165,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":504.76,"free":3577},{"epoch":26111166,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":505.23,"free":3576.52},{"epoch":26111167,"idl":99.83,"recv":0,"send":0,"writ":0.42,"used":505.96,"free":3575.79},{"epoch":26111168,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":505.98,"free":3575.76},{"epoch":26111169,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":505.97,"free":3575.76},{"epoch":26111170,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":505.7,"free":3576.04},{"epoch":26111171,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":505.77,"free":3575.97},{"epoch":26111172,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":506.25,"free":3575.48},{"epoch":26111173,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":505.93,"free":3575.79},{"epoch":26111174,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.96,"free":3575.76},{"epoch":26111175,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":505.22,"free":3576.51},{"epoch":26111176,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":505.27,"free":3576.46},{"epoch":26111177,"idl":99.76,"recv":0,"send":0,"writ":0.61,"used":505.74,"free":3575.98},{"epoch":26111178,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.45,"free":3576.27},{"epoch":26111179,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":505.51,"free":3576.21},{"epoch":26111180,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":505.93,"free":3575.8},{"epoch":26111181,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.98,"free":3575.75},{"epoch":26111182,"idl":99.76,"recv":0,"send":0,"writ":0.49,"used":506.48,"free":3575.25},{"epoch":26111183,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":505.76,"free":3575.96},{"epoch":26111184,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":505.74,"free":3575.98},{"epoch":26111185,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":505.05,"free":3576.69},{"epoch":26111186,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":504.95,"free":3576.79},{"epoch":26111187,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":505.64,"free":3576.08},{"epoch":26111188,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":505.78,"free":3575.95},{"epoch":26111189,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":505.74,"free":3575.98},{"epoch":26111190,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":505.93,"free":3575.81},{"epoch":26111191,"idl":99.33,"recv":0,"send":0,"writ":0.16,"used":505.88,"free":3575.85},{"epoch":26111192,"idl":99.68,"recv":0,"send":0,"writ":0.52,"used":506.38,"free":3575.35},{"epoch":26111193,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":506,"free":3575.73},{"epoch":26111194,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":505.99,"free":3575.73},{"epoch":26111195,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":505.74,"free":3576},{"epoch":26111196,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":505.72,"free":3576.01},{"epoch":26111197,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":506.48,"free":3575.25},{"epoch":26111198,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.16,"free":3575.56},{"epoch":26111199,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":506.12,"free":3575.57},{"epoch":26111200,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":505.89,"free":3575.83},{"epoch":26111201,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":505.86,"free":3575.85},{"epoch":26111202,"idl":99.88,"recv":0,"send":0.01,"writ":0.16,"used":506,"free":3575.7},{"epoch":26111203,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":506.57,"free":3575.13},{"epoch":26111204,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.21,"free":3575.52},{"epoch":26111205,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":506.2,"free":3575.54},{"epoch":26111206,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":506.19,"free":3575.56},{"epoch":26111207,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":506.16,"free":3575.57},{"epoch":26111208,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":506.49,"free":3575.25},{"epoch":26111209,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.12,"free":3575.61},{"epoch":26111210,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":505.87,"free":3575.87},{"epoch":26111211,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.9,"free":3575.84},{"epoch":26111212,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":506.04,"free":3575.69},{"epoch":26111213,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":506.55,"free":3575.18},{"epoch":26111214,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.25,"free":3575.48},{"epoch":26111215,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":505.35,"free":3576.4},{"epoch":26111216,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":505.24,"free":3576.5},{"epoch":26111217,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":505.22,"free":3576.52},{"epoch":26111218,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":506.05,"free":3575.68},{"epoch":26111219,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":506.16,"free":3575.57},{"epoch":26111220,"idl":99.6,"recv":0,"send":0,"writ":0.31,"used":505.22,"free":3576.53},{"epoch":26111221,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.16,"free":3576.58},{"epoch":26111222,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.15,"free":3576.58},{"epoch":26111223,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":505.99,"free":3575.74},{"epoch":26111224,"idl":99.94,"recv":0,"send":0,"writ":0.29,"used":506.27,"free":3575.46},{"epoch":26111225,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":506.51,"free":3575.24},{"epoch":26111226,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.49,"free":3575.25},{"epoch":26111227,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.47,"free":3575.27},{"epoch":26111228,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":506.77,"free":3574.97},{"epoch":26111229,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":506.42,"free":3575.3},{"epoch":26111230,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":506.17,"free":3575.56},{"epoch":26111231,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.16,"free":3575.57},{"epoch":26111232,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":506.14,"free":3575.59},{"epoch":26111233,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.12,"free":3575.61},{"epoch":26111234,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":506.91,"free":3574.8},{"epoch":26111235,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":506.53,"free":3575.2},{"epoch":26111236,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.5,"free":3575.23},{"epoch":26111237,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":506.49,"free":3575.23},{"epoch":26111238,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":506.46,"free":3575.26},{"epoch":26111239,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":506.8,"free":3574.92},{"epoch":26111240,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":506.22,"free":3575.52},{"epoch":26111241,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":506.19,"free":3575.54},{"epoch":26111242,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.18,"free":3575.55},{"epoch":26111243,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":505.95,"free":3575.77},{"epoch":26111244,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":506.38,"free":3575.33},{"epoch":26111245,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":505.89,"free":3575.84},{"epoch":26111246,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":505.93,"free":3575.8},{"epoch":26111247,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.02,"free":3575.7},{"epoch":26111248,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":505.99,"free":3575.73},{"epoch":26111249,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":506.68,"free":3575.03},{"epoch":26111250,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":506.69,"free":3575.03},{"epoch":26111251,"idl":95.81,"recv":0,"send":0,"writ":0.17,"used":506.67,"free":3575.05},{"epoch":26111252,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.65,"free":3575.06},{"epoch":26111253,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.63,"free":3575.08},{"epoch":26111254,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":506.74,"free":3574.97},{"epoch":26111255,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":506.59,"free":3575.13},{"epoch":26111256,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":506.59,"free":3575.13},{"epoch":26111257,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.69,"free":3575.02},{"epoch":26111258,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.73,"free":3574.98},{"epoch":26111259,"idl":99.59,"recv":0,"send":0,"writ":0.75,"used":506.84,"free":3574.85},{"epoch":26111260,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":506.23,"free":3575.47},{"epoch":26111261,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":506.2,"free":3575.5},{"epoch":26111262,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.17,"free":3575.52},{"epoch":26111263,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.16,"free":3575.53},{"epoch":26111264,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":506.92,"free":3574.76},{"epoch":26111265,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":506.39,"free":3575.31},{"epoch":26111266,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":506.36,"free":3575.34},{"epoch":26111267,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.35,"free":3575.34},{"epoch":26111268,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.32,"free":3575.37},{"epoch":26111269,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.34,"free":3575.35},{"epoch":26111270,"idl":99.49,"recv":0,"send":0,"writ":0.71,"used":506.08,"free":3575.62},{"epoch":26111271,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":505.49,"free":3576.2},{"epoch":26111272,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":505.48,"free":3576.21},{"epoch":26111273,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":505.45,"free":3576.23},{"epoch":26111274,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":505.44,"free":3576.24},{"epoch":26111275,"idl":99.67,"recv":0,"send":0,"writ":1.01,"used":506.63,"free":3575.08},{"epoch":26111276,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":506.41,"free":3575.29},{"epoch":26111277,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.38,"free":3575.31},{"epoch":26111278,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.37,"free":3575.32},{"epoch":26111279,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":506.33,"free":3575.36},{"epoch":26111280,"idl":99.51,"recv":0,"send":0,"writ":0.83,"used":506.73,"free":3574.98},{"epoch":26111281,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.49,"free":3575.21},{"epoch":26111282,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.48,"free":3575.22},{"epoch":26111283,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.46,"free":3575.24},{"epoch":26111284,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.44,"free":3575.25},{"epoch":26111285,"idl":99.55,"recv":0,"send":0,"writ":0.73,"used":507.36,"free":3574.34},{"epoch":26111286,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.67,"free":3575.04},{"epoch":26111287,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.63,"free":3575.06},{"epoch":26111288,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":506.62,"free":3575.07},{"epoch":26111289,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":506.9,"free":3574.77},{"epoch":26111290,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":506.86,"free":3574.83},{"epoch":26111291,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":506.58,"free":3575.1},{"epoch":26111292,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.7,"free":3574.97},{"epoch":26111293,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.76,"free":3574.91},{"epoch":26111294,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":506.73,"free":3574.96},{"epoch":26111295,"idl":99.5,"recv":0,"send":0,"writ":0.77,"used":506.74,"free":3574.97},{"epoch":26111296,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":506.71,"free":3575},{"epoch":26111297,"idl":99.84,"recv":0,"send":0,"writ":0.23,"used":506.68,"free":3575.03},{"epoch":26111298,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":506.64,"free":3575.06},{"epoch":26111299,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.63,"free":3575.07},{"epoch":26111300,"idl":99.53,"recv":0,"send":0,"writ":0.59,"used":506.81,"free":3574.9},{"epoch":26111301,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":506.85,"free":3574.85},{"epoch":26111302,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":506.84,"free":3574.86},{"epoch":26111303,"idl":99.84,"recv":0,"send":0,"writ":0.24,"used":506.61,"free":3575.09},{"epoch":26111304,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.5,"free":3575.19},{"epoch":26111305,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":506.74,"free":3574.97},{"epoch":26111306,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":506.85,"free":3574.86},{"epoch":26111307,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.46,"free":3575.25},{"epoch":26111308,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":506.28,"free":3575.42},{"epoch":26111309,"idl":98.23,"recv":0,"send":0,"writ":0.18,"used":505.68,"free":3576.02},{"epoch":26111310,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":505.68,"free":3576.03},{"epoch":26111311,"idl":99.81,"recv":0,"send":0,"writ":0.59,"used":506.02,"free":3575.69},{"epoch":26111312,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":505.65,"free":3576.06},{"epoch":26111313,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":505.62,"free":3576.08},{"epoch":26111314,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":505.61,"free":3576.09},{"epoch":26111315,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":506.01,"free":3575.7},{"epoch":26111316,"idl":94.91,"recv":0.34,"send":0.01,"writ":261.79,"used":520.7,"free":3561.49},{"epoch":26111317,"idl":99.88,"recv":0,"send":0,"writ":0.24,"used":508.33,"free":3573.19},{"epoch":26111318,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":508.3,"free":3573.22},{"epoch":26111319,"idl":99.84,"recv":0,"send":0,"writ":0.35,"used":508.04,"free":3573.46},{"epoch":26111320,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":508.03,"free":3573.48},{"epoch":26111321,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":507.05,"free":3574.48},{"epoch":26111322,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":505.86,"free":3575.69},{"epoch":26111323,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":505.99,"free":3575.55},{"epoch":26111324,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":505.96,"free":3575.59},{"epoch":26111325,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":506.22,"free":3575.35},{"epoch":26111326,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":506.45,"free":3575.14},{"epoch":26111327,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":505.92,"free":3575.68},{"epoch":26111328,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":505.91,"free":3575.69},{"epoch":26111329,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":505.88,"free":3575.72},{"epoch":26111330,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":505.89,"free":3575.72},{"epoch":26111331,"idl":99.77,"recv":0,"send":0,"writ":0.4,"used":506.27,"free":3575.33},{"epoch":26111332,"idl":99.91,"recv":0,"send":0,"writ":0.27,"used":506.09,"free":3575.51},{"epoch":26111333,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.06,"free":3575.54},{"epoch":26111334,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.13,"free":3575.46},{"epoch":26111335,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":505.56,"free":3576.05},{"epoch":26111336,"idl":99.76,"recv":0,"send":0,"writ":0.42,"used":505.91,"free":3575.69},{"epoch":26111337,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":506.19,"free":3575.41},{"epoch":26111338,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.18,"free":3575.42},{"epoch":26111339,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":506.15,"free":3575.44},{"epoch":26111340,"idl":99.56,"recv":0,"send":0,"writ":0.36,"used":504.96,"free":3576.64},{"epoch":26111341,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":504.9,"free":3576.7},{"epoch":26111342,"idl":99.75,"recv":0,"send":0,"writ":0.6,"used":506.72,"free":3574.88},{"epoch":26111343,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.09,"free":3575.5},{"epoch":26111344,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.08,"free":3575.51},{"epoch":26111345,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":506.32,"free":3575.29},{"epoch":26111346,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":506.47,"free":3575.13},{"epoch":26111347,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":506.93,"free":3574.67},{"epoch":26111348,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":506.22,"free":3575.38},{"epoch":26111349,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":505.96,"free":3575.63},{"epoch":26111350,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":505.95,"free":3575.66},{"epoch":26111351,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.94,"free":3575.66},{"epoch":26111352,"idl":99.78,"recv":0,"send":0,"writ":0.63,"used":506.57,"free":3575.03},{"epoch":26111353,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":506.14,"free":3575.45},{"epoch":26111354,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":506.11,"free":3575.47},{"epoch":26111355,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":506.12,"free":3575.48},{"epoch":26111356,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.09,"free":3575.5},{"epoch":26111357,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":506.55,"free":3575.04},{"epoch":26111358,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":506.24,"free":3575.35},{"epoch":26111359,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.22,"free":3575.36},{"epoch":26111360,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":506.23,"free":3575.37},{"epoch":26111361,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.2,"free":3575.39},{"epoch":26111362,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":506.53,"free":3575.06},{"epoch":26111363,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":505.79,"free":3575.8},{"epoch":26111364,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":505.65,"free":3575.93},{"epoch":26111365,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":505.88,"free":3575.72},{"epoch":26111366,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.88,"free":3575.72},{"epoch":26111367,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":506.28,"free":3575.32},{"epoch":26111368,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":506.09,"free":3575.5},{"epoch":26111369,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":506.1,"free":3575.49},{"epoch":26111370,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":506.26,"free":3575.34},{"epoch":26111371,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.23,"free":3575.37},{"epoch":26111372,"idl":99.77,"recv":0,"send":0,"writ":0.36,"used":506.57,"free":3575.03},{"epoch":26111373,"idl":99.93,"recv":0,"send":0,"writ":0.37,"used":506.2,"free":3575.4},{"epoch":26111374,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.18,"free":3575.41},{"epoch":26111375,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":505.69,"free":3575.91},{"epoch":26111376,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":505.66,"free":3575.93},{"epoch":26111377,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":505.65,"free":3575.95},{"epoch":26111378,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":506.66,"free":3574.97},{"epoch":26111379,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":506.14,"free":3575.46},{"epoch":26111380,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":506.19,"free":3575.43},{"epoch":26111381,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":506.09,"free":3575.52},{"epoch":26111382,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":506.21,"free":3575.39},{"epoch":26111383,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":506.59,"free":3575.01},{"epoch":26111384,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.21,"free":3575.39},{"epoch":26111385,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":506.24,"free":3575.38},{"epoch":26111386,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":506.2,"free":3575.42},{"epoch":26111387,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":506.19,"free":3575.42},{"epoch":26111388,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":506.53,"free":3575.08},{"epoch":26111389,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":506.15,"free":3575.46},{"epoch":26111390,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":506.15,"free":3575.47},{"epoch":26111391,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.12,"free":3575.49},{"epoch":26111392,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":506.1,"free":3575.51},{"epoch":26111393,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":506.58,"free":3575.03},{"epoch":26111394,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.38,"free":3575.22},{"epoch":26111395,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":506.48,"free":3575.13},{"epoch":26111396,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.47,"free":3575.14},{"epoch":26111397,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.44,"free":3575.17},{"epoch":26111398,"idl":99.73,"recv":0,"send":0,"writ":0.51,"used":506.83,"free":3574.77},{"epoch":26111399,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":506.15,"free":3575.45},{"epoch":26111400,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":506.16,"free":3575.48},{"epoch":26111401,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":506.14,"free":3575.5},{"epoch":26111402,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":506.1,"free":3575.52},{"epoch":26111403,"idl":99.76,"recv":0,"send":0,"writ":0.44,"used":506.5,"free":3575.12},{"epoch":26111404,"idl":99.94,"recv":0,"send":0,"writ":0.31,"used":506.31,"free":3575.31},{"epoch":26111405,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":506.47,"free":3575.16},{"epoch":26111406,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.48,"free":3575.15},{"epoch":26111407,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.46,"free":3575.17},{"epoch":26111408,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":506.79,"free":3574.83},{"epoch":26111409,"idl":99.66,"recv":0.03,"send":0.08,"writ":0.5,"used":506.43,"free":3575.19},{"epoch":26111410,"idl":99.77,"recv":0,"send":0,"writ":0.35,"used":506.74,"free":3574.89},{"epoch":26111411,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":506.71,"free":3574.92},{"epoch":26111412,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":506.71,"free":3574.92},{"epoch":26111413,"idl":99.72,"recv":0,"send":0,"writ":0.35,"used":507.07,"free":3574.54},{"epoch":26111414,"idl":99.83,"recv":0,"send":0,"writ":0.41,"used":506.42,"free":3575.2},{"epoch":26111415,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":506.65,"free":3574.98},{"epoch":26111416,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.64,"free":3574.98},{"epoch":26111417,"idl":99.88,"recv":0,"send":0,"writ":0.22,"used":506.37,"free":3575.25},{"epoch":26111418,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":506.35,"free":3575.26},{"epoch":26111419,"idl":99.75,"recv":0,"send":0,"writ":0.6,"used":507,"free":3574.61},{"epoch":26111420,"idl":99.74,"recv":0,"send":0,"writ":0.35,"used":505.86,"free":3575.77},{"epoch":26111421,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":505.9,"free":3575.73},{"epoch":26111422,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":505.99,"free":3575.63},{"epoch":26111423,"idl":99.84,"recv":0,"send":0,"writ":0.23,"used":505.98,"free":3575.64},{"epoch":26111424,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":507.06,"free":3574.55},{"epoch":26111425,"idl":99.69,"recv":0,"send":0,"writ":0.38,"used":506.75,"free":3574.88},{"epoch":26111426,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.67,"free":3574.95},{"epoch":26111427,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":506.64,"free":3574.98},{"epoch":26111428,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.62,"free":3574.99},{"epoch":26111429,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":507.1,"free":3574.51},{"epoch":26111430,"idl":99.7,"recv":0,"send":0,"writ":0.35,"used":506.59,"free":3575.03},{"epoch":26111431,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":506.58,"free":3575.04},{"epoch":26111432,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.57,"free":3575.05},{"epoch":26111433,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":506.72,"free":3574.89},{"epoch":26111434,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":507.05,"free":3574.56},{"epoch":26111435,"idl":99.69,"recv":0,"send":0,"writ":0.36,"used":505.52,"free":3576.11},{"epoch":26111436,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":505.45,"free":3576.17},{"epoch":26111437,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":505.44,"free":3576.18},{"epoch":26111438,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":505.42,"free":3576.19},{"epoch":26111439,"idl":99.6,"recv":0,"send":0,"writ":0.72,"used":507.12,"free":3574.47},{"epoch":26111440,"idl":99.64,"recv":0,"send":0,"writ":0.35,"used":506.63,"free":3574.97},{"epoch":26111441,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.61,"free":3574.99},{"epoch":26111442,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.58,"free":3575.01},{"epoch":26111443,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.57,"free":3575.02},{"epoch":26111444,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":506.9,"free":3574.68},{"epoch":26111445,"idl":99.63,"recv":0,"send":0,"writ":0.37,"used":506.98,"free":3574.63},{"epoch":26111446,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":506.95,"free":3574.65},{"epoch":26111447,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.94,"free":3574.65},{"epoch":26111448,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":506.91,"free":3574.68},{"epoch":26111449,"idl":99.66,"recv":0,"send":0,"writ":0.36,"used":507.55,"free":3574.04},{"epoch":26111450,"idl":99.7,"recv":0,"send":0,"writ":0.51,"used":506.65,"free":3574.95},{"epoch":26111451,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.63,"free":3574.97},{"epoch":26111452,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.6,"free":3574.99},{"epoch":26111453,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.58,"free":3575.04},{"epoch":26111454,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":506.55,"free":3575.05},{"epoch":26111455,"idl":99.54,"recv":0,"send":0,"writ":0.74,"used":506.94,"free":3574.68},{"epoch":26111456,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.47,"free":3575.15},{"epoch":26111457,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":506.45,"free":3575.17},{"epoch":26111458,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.42,"free":3575.19},{"epoch":26111459,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.39,"free":3575.22},{"epoch":26111460,"idl":99.48,"recv":0,"send":0,"writ":0.7,"used":507.22,"free":3574.4},{"epoch":26111461,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":506.86,"free":3574.76},{"epoch":26111462,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.71,"free":3574.91},{"epoch":26111463,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":505.86,"free":3575.75},{"epoch":26111464,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":505.96,"free":3575.65},{"epoch":26111465,"idl":99.54,"recv":0,"send":0,"writ":0.76,"used":505.37,"free":3576.25},{"epoch":26111466,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":505.18,"free":3576.43},{"epoch":26111467,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":505.16,"free":3576.45},{"epoch":26111468,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":505.12,"free":3576.48},{"epoch":26111469,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":506.04,"free":3575.54},{"epoch":26111470,"idl":99.45,"recv":0,"send":0,"writ":0.64,"used":506.06,"free":3575.54},{"epoch":26111471,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":505.63,"free":3575.96},{"epoch":26111472,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.73,"free":3575.86},{"epoch":26111473,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.7,"free":3575.88},{"epoch":26111474,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":505.68,"free":3575.9},{"epoch":26111475,"idl":99.57,"recv":0,"send":0,"writ":0.57,"used":506.27,"free":3575.33},{"epoch":26111476,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":505.89,"free":3575.7},{"epoch":26111477,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":505.86,"free":3575.73},{"epoch":26111478,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":505.84,"free":3575.74},{"epoch":26111479,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":505.83,"free":3575.74},{"epoch":26111480,"idl":99.54,"recv":0,"send":0,"writ":0.56,"used":506.58,"free":3575.02},{"epoch":26111481,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":506.2,"free":3575.39},{"epoch":26111482,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.18,"free":3575.41},{"epoch":26111483,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":505.81,"free":3575.77},{"epoch":26111484,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.63,"free":3575.95},{"epoch":26111485,"idl":99.62,"recv":0,"send":0,"writ":0.56,"used":506.11,"free":3575.49},{"epoch":26111486,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":505.86,"free":3575.73},{"epoch":26111487,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":505.83,"free":3575.76},{"epoch":26111488,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.82,"free":3575.76},{"epoch":26111489,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.97,"free":3575.61},{"epoch":26111490,"idl":98.26,"recv":0,"send":0,"writ":0.3,"used":505.23,"free":3576.36},{"epoch":26111491,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":506.52,"free":3575.07},{"epoch":26111492,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.16,"free":3575.43},{"epoch":26111493,"idl":98.75,"recv":0,"send":0,"writ":0.17,"used":506.13,"free":3575.45},{"epoch":26111494,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.11,"free":3575.47},{"epoch":26111495,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":506.11,"free":3575.49},{"epoch":26111496,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":505.79,"free":3575.8},{"epoch":26111497,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":505.08,"free":3576.5},{"epoch":26111498,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":505.14,"free":3576.44},{"epoch":26111499,"idl":99.66,"recv":0,"send":0,"writ":0.33,"used":505.73,"free":3575.83},{"epoch":26111500,"idl":99.61,"recv":0,"send":0,"writ":0.35,"used":505.52,"free":3576.06},{"epoch":26111501,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":506.28,"free":3575.28},{"epoch":26111502,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":506.15,"free":3575.41},{"epoch":26111503,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.13,"free":3575.43},{"epoch":26111504,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.1,"free":3575.51},{"epoch":26111505,"idl":99.68,"recv":0,"send":0,"writ":0.34,"used":506.11,"free":3575.53},{"epoch":26111506,"idl":99.72,"recv":0,"send":0,"writ":0.51,"used":506.78,"free":3574.85},{"epoch":26111507,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":506.06,"free":3575.57},{"epoch":26111508,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.05,"free":3575.59},{"epoch":26111509,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.17,"free":3575.46},{"epoch":26111510,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":505.25,"free":3576.41},{"epoch":26111511,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":505.89,"free":3575.76},{"epoch":26111512,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":505.91,"free":3575.73},{"epoch":26111513,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":505.88,"free":3575.76},{"epoch":26111514,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.87,"free":3575.77},{"epoch":26111515,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":506.11,"free":3575.55},{"epoch":26111516,"idl":99.65,"recv":0,"send":0,"writ":0.4,"used":506.21,"free":3575.44},{"epoch":26111517,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":505.33,"free":3576.32},{"epoch":26111518,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":505.3,"free":3576.34},{"epoch":26111519,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.43,"free":3576.21},{"epoch":26111520,"idl":99.57,"recv":0,"send":0,"writ":0.31,"used":505.46,"free":3576.2},{"epoch":26111521,"idl":99.66,"recv":0,"send":0,"writ":0.57,"used":505.76,"free":3575.89},{"epoch":26111522,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":505.17,"free":3576.47},{"epoch":26111523,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":505.14,"free":3576.5},{"epoch":26111524,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":505.13,"free":3576.5},{"epoch":26111525,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":506.33,"free":3575.32},{"epoch":26111526,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":506.33,"free":3575.32},{"epoch":26111527,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":507.01,"free":3574.63},{"epoch":26111528,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.27,"free":3575.36},{"epoch":26111529,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":506.39,"free":3575.22},{"epoch":26111530,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":506.18,"free":3575.44},{"epoch":26111531,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":506.16,"free":3575.46},{"epoch":26111532,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":506.93,"free":3574.69},{"epoch":26111533,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.36,"free":3575.26},{"epoch":26111534,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":506.35,"free":3575.28},{"epoch":26111535,"idl":99.55,"recv":0,"send":0,"writ":0.32,"used":505.62,"free":3576.03},{"epoch":26111536,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":505.59,"free":3576.05},{"epoch":26111537,"idl":99.66,"recv":0,"send":0,"writ":0.63,"used":506.41,"free":3575.23},{"epoch":26111538,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.29,"free":3575.34},{"epoch":26111539,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.27,"free":3575.36},{"epoch":26111540,"idl":99.63,"recv":0,"send":0,"writ":0.32,"used":506.51,"free":3575.14},{"epoch":26111541,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.6,"free":3575.04},{"epoch":26111542,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":506.72,"free":3574.91},{"epoch":26111543,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":506.03,"free":3575.6},{"epoch":26111544,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":505.91,"free":3575.71},{"epoch":26111545,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":505.69,"free":3575.95},{"epoch":26111546,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.65,"free":3575.98},{"epoch":26111547,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":506.47,"free":3575.16},{"epoch":26111548,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":506.6,"free":3575.03},{"epoch":26111549,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.59,"free":3575.04},{"epoch":26111550,"idl":99.69,"recv":0,"send":0,"writ":0.35,"used":506.09,"free":3575.54},{"epoch":26111551,"idl":99.09,"recv":0,"send":0,"writ":0.16,"used":506.07,"free":3575.56},{"epoch":26111552,"idl":99.68,"recv":0,"send":0,"writ":0.53,"used":506.83,"free":3574.8},{"epoch":26111553,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":506.28,"free":3575.34},{"epoch":26111554,"idl":98.43,"recv":0,"send":0,"writ":0.14,"used":506.4,"free":3575.22},{"epoch":26111555,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":506.45,"free":3575.19},{"epoch":26111556,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.42,"free":3575.22},{"epoch":26111557,"idl":99.67,"recv":0,"send":0,"writ":0.41,"used":506.88,"free":3574.74},{"epoch":26111558,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":506.12,"free":3575.5},{"epoch":26111559,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":506.35,"free":3575.24},{"epoch":26111560,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":506.6,"free":3575.02},{"epoch":26111561,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.59,"free":3575.02},{"epoch":26111562,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.56,"free":3575.04},{"epoch":26111563,"idl":99.65,"recv":0,"send":0,"writ":0.58,"used":506.91,"free":3574.69},{"epoch":26111564,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.52,"free":3575.09},{"epoch":26111565,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":506.53,"free":3575.1},{"epoch":26111566,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.68,"free":3574.95},{"epoch":26111567,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":506.66,"free":3574.96},{"epoch":26111568,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":506.21,"free":3575.4},{"epoch":26111569,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":505.63,"free":3575.98},{"epoch":26111570,"idl":99.65,"recv":0,"send":0,"writ":0.35,"used":506.36,"free":3575.26},{"epoch":26111571,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":506.35,"free":3575.27},{"epoch":26111572,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":506.34,"free":3575.28},{"epoch":26111573,"idl":99.69,"recv":0,"send":0,"writ":0.6,"used":506.65,"free":3574.95},{"epoch":26111574,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.28,"free":3575.31},{"epoch":26111575,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":506.77,"free":3574.84},{"epoch":26111576,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.76,"free":3574.84},{"epoch":26111577,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":506.74,"free":3574.87},{"epoch":26111578,"idl":99.65,"recv":0,"send":0,"writ":0.6,"used":507.23,"free":3574.37},{"epoch":26111579,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":506.88,"free":3574.72},{"epoch":26111580,"idl":99.48,"recv":0,"send":0,"writ":0.31,"used":505.52,"free":3576.09},{"epoch":26111581,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":505.38,"free":3576.23},{"epoch":26111582,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":505.36,"free":3576.25},{"epoch":26111583,"idl":99.7,"recv":0,"send":0,"writ":0.5,"used":506.63,"free":3574.97},{"epoch":26111584,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":506.53,"free":3575.07},{"epoch":26111585,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":506.52,"free":3575.09},{"epoch":26111586,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.49,"free":3575.11},{"epoch":26111587,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.64,"free":3574.97},{"epoch":26111588,"idl":99.74,"recv":0,"send":0,"writ":0.49,"used":507.01,"free":3574.59},{"epoch":26111589,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":506.62,"free":3574.95},{"epoch":26111590,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":506.84,"free":3574.74},{"epoch":26111591,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.84,"free":3574.74},{"epoch":26111592,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.81,"free":3574.77},{"epoch":26111593,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":507.13,"free":3574.45},{"epoch":26111594,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.52,"free":3575.08},{"epoch":26111595,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":506.76,"free":3574.86},{"epoch":26111596,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":506.75,"free":3574.87},{"epoch":26111597,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":506.48,"free":3575.13},{"epoch":26111598,"idl":99.77,"recv":0,"send":0,"writ":0.39,"used":506.93,"free":3574.68},{"epoch":26111599,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":506.87,"free":3574.74},{"epoch":26111600,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":506.88,"free":3574.74},{"epoch":26111601,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.85,"free":3574.77},{"epoch":26111602,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":506.84,"free":3574.77},{"epoch":26111603,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.52,"free":3575.09},{"epoch":26111604,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":507.13,"free":3574.48},{"epoch":26111605,"idl":99.77,"recv":0,"send":0,"writ":0.35,"used":506.8,"free":3574.82},{"epoch":26111606,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.78,"free":3574.84},{"epoch":26111607,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.77,"free":3574.85},{"epoch":26111608,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":506.74,"free":3574.87},{"epoch":26111609,"idl":99.79,"recv":0,"send":0,"writ":0.6,"used":507.06,"free":3574.55},{"epoch":26111610,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":506.72,"free":3574.9},{"epoch":26111611,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":506.9,"free":3574.72},{"epoch":26111612,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.9,"free":3574.71},{"epoch":26111613,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.88,"free":3574.72},{"epoch":26111614,"idl":99.29,"recv":0.01,"send":0.65,"writ":0.54,"used":506.92,"free":3574.68},{"epoch":26111615,"idl":96.98,"recv":0,"send":0,"writ":0.49,"used":506.81,"free":3574.81},{"epoch":26111616,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":506.79,"free":3574.82},{"epoch":26111617,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":506.76,"free":3574.84},{"epoch":26111618,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.34,"free":3575.26},{"epoch":26111619,"idl":99.66,"recv":0,"send":0,"writ":0.66,"used":505.79,"free":3575.79},{"epoch":26111620,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":505,"free":3576.59},{"epoch":26111621,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":505.07,"free":3576.52},{"epoch":26111622,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":505.15,"free":3576.43},{"epoch":26111623,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":505.14,"free":3576.44},{"epoch":26111624,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":505.77,"free":3575.8},{"epoch":26111625,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":505.46,"free":3576.13},{"epoch":26111626,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":505.33,"free":3576.26},{"epoch":26111627,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":505.33,"free":3576.26},{"epoch":26111628,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.3,"free":3576.28},{"epoch":26111629,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":505.7,"free":3575.87},{"epoch":26111630,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":506,"free":3575.59},{"epoch":26111631,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":506.01,"free":3575.58},{"epoch":26111632,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":505.99,"free":3575.59},{"epoch":26111633,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506,"free":3575.58},{"epoch":26111634,"idl":99.79,"recv":0,"send":0,"writ":0.43,"used":506.49,"free":3575.08},{"epoch":26111635,"idl":99.81,"recv":0,"send":0,"writ":0.47,"used":505.18,"free":3576.41},{"epoch":26111636,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":505.12,"free":3576.47},{"epoch":26111637,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":505.11,"free":3576.47},{"epoch":26111638,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":505.08,"free":3576.5},{"epoch":26111639,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":505.06,"free":3576.52},{"epoch":26111640,"idl":99.58,"recv":0,"send":0,"writ":0.76,"used":506.68,"free":3574.9},{"epoch":26111641,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.02,"free":3575.56},{"epoch":26111642,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506,"free":3575.58},{"epoch":26111643,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":505.98,"free":3575.59},{"epoch":26111644,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.96,"free":3575.61},{"epoch":26111645,"idl":99.69,"recv":0,"send":0,"writ":0.74,"used":505.95,"free":3575.64},{"epoch":26111646,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":505.42,"free":3576.16},{"epoch":26111647,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":505.39,"free":3576.19},{"epoch":26111648,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":505.38,"free":3576.2},{"epoch":26111649,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":506.32,"free":3575.24},{"epoch":26111650,"idl":99.69,"recv":0,"send":0,"writ":0.72,"used":506.63,"free":3574.94},{"epoch":26111651,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.3,"free":3575.26},{"epoch":26111652,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.27,"free":3575.29},{"epoch":26111653,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.26,"free":3575.3},{"epoch":26111654,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":506.23,"free":3575.32},{"epoch":26111655,"idl":99.5,"recv":0,"send":0,"writ":0.68,"used":506.59,"free":3574.97},{"epoch":26111656,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":506.29,"free":3575.27},{"epoch":26111657,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.2,"used":506.13,"free":3575.42},{"epoch":26111658,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.1,"free":3575.46},{"epoch":26111659,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.07,"free":3575.48},{"epoch":26111660,"idl":99.66,"recv":0,"send":0,"writ":0.69,"used":506.26,"free":3575.3},{"epoch":26111661,"idl":99.87,"recv":0,"send":0,"writ":0.22,"used":505.8,"free":3575.76},{"epoch":26111662,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.8,"free":3575.76},{"epoch":26111663,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":505.62,"free":3575.93},{"epoch":26111664,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":505.51,"free":3576.04},{"epoch":26111665,"idl":99.6,"recv":0,"send":0,"writ":0.72,"used":506.6,"free":3574.97},{"epoch":26111666,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.23,"free":3575.34},{"epoch":26111667,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.35,"free":3575.22},{"epoch":26111668,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.37,"free":3575.19},{"epoch":26111669,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.34,"free":3575.22},{"epoch":26111670,"idl":99.56,"recv":0,"send":0,"writ":0.52,"used":506.65,"free":3574.92},{"epoch":26111671,"idl":99.87,"recv":0,"send":0.01,"writ":0.41,"used":505.08,"free":3576.49},{"epoch":26111672,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":505.06,"free":3576.51},{"epoch":26111673,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":505.03,"free":3576.54},{"epoch":26111674,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":505.02,"free":3576.54},{"epoch":26111675,"idl":99.7,"recv":0,"send":0,"writ":0.37,"used":505.47,"free":3576.1},{"epoch":26111676,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":506.51,"free":3575.06},{"epoch":26111677,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":506.27,"free":3575.29},{"epoch":26111678,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.36,"free":3575.19},{"epoch":26111679,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":506.33,"free":3575.21},{"epoch":26111680,"idl":99.77,"recv":0,"send":0,"writ":0.36,"used":506.32,"free":3575.22},{"epoch":26111681,"idl":94.75,"recv":0.3,"send":0.01,"writ":260.98,"used":520.97,"free":3561.02},{"epoch":26111682,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":508.93,"free":3572.5},{"epoch":26111683,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":508.91,"free":3572.52},{"epoch":26111684,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":508.89,"free":3572.53},{"epoch":26111685,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":508.65,"free":3572.79},{"epoch":26111686,"idl":99.75,"recv":0,"send":0,"writ":0.61,"used":507.78,"free":3573.68},{"epoch":26111687,"idl":99.84,"recv":0.03,"send":0.02,"writ":0.16,"used":506.53,"free":3574.95},{"epoch":26111688,"idl":99.88,"recv":0.01,"send":0,"writ":0.15,"used":506.47,"free":3575.01},{"epoch":26111689,"idl":99.83,"recv":0.06,"send":0.03,"writ":0.14,"used":506.5,"free":3574.97},{"epoch":26111690,"idl":99.82,"recv":0.06,"send":0.04,"writ":0.31,"used":506.51,"free":3574.97},{"epoch":26111691,"idl":99.71,"recv":0.03,"send":0.02,"writ":0.59,"used":507.1,"free":3574.39},{"epoch":26111692,"idl":99.84,"recv":0.04,"send":0.02,"writ":0.15,"used":506.27,"free":3575.25},{"epoch":26111693,"idl":99.87,"recv":0.05,"send":0.03,"writ":0.15,"used":506.25,"free":3575.26},{"epoch":26111694,"idl":99.9,"recv":0.02,"send":0.02,"writ":0.17,"used":506.28,"free":3575.22},{"epoch":26111695,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.32,"used":506.56,"free":3574.96},{"epoch":26111696,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":507.15,"free":3574.37},{"epoch":26111697,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":506.27,"free":3575.25},{"epoch":26111698,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.25,"free":3575.26},{"epoch":26111699,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.23,"free":3575.28},{"epoch":26111700,"idl":99.45,"recv":0,"send":0,"writ":0.35,"used":506,"free":3575.53},{"epoch":26111701,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":506.49,"free":3575.03},{"epoch":26111702,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.25,"free":3575.27},{"epoch":26111703,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.36,"free":3575.16},{"epoch":26111704,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.33,"free":3575.18},{"epoch":26111705,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":506.69,"free":3574.84},{"epoch":26111706,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":506.91,"free":3574.61},{"epoch":26111707,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":506.78,"free":3574.74},{"epoch":26111708,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.76,"free":3574.76},{"epoch":26111709,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":506,"free":3575.49},{"epoch":26111710,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":506.22,"free":3575.28},{"epoch":26111711,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":506.57,"free":3574.93},{"epoch":26111712,"idl":99.88,"recv":0,"send":0,"writ":0.42,"used":506.44,"free":3575.06},{"epoch":26111713,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.48,"free":3575.01},{"epoch":26111714,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":506.57,"free":3574.94},{"epoch":26111715,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":506.81,"free":3574.73},{"epoch":26111716,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.8,"free":3574.73},{"epoch":26111717,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":506.92,"free":3574.61},{"epoch":26111718,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.5,"free":3575.02},{"epoch":26111719,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.49,"free":3575.03},{"epoch":26111720,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":506.73,"free":3574.81},{"epoch":26111721,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":506.72,"free":3574.81},{"epoch":26111722,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":506.86,"free":3574.66},{"epoch":26111723,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":506.3,"free":3575.22},{"epoch":26111724,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":506.15,"free":3575.36},{"epoch":26111725,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":506.32,"free":3575.21},{"epoch":26111726,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.32,"free":3575.21},{"epoch":26111727,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":507.16,"free":3574.37},{"epoch":26111728,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.77,"free":3574.75},{"epoch":26111729,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.76,"free":3574.76},{"epoch":26111730,"idl":99.75,"recv":0,"send":0.01,"writ":0.32,"used":506.73,"free":3574.81},{"epoch":26111731,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":506.72,"free":3574.81},{"epoch":26111732,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":507.17,"free":3574.36},{"epoch":26111733,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.68,"free":3574.84},{"epoch":26111734,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.64,"free":3574.87},{"epoch":26111735,"idl":99.41,"recv":0,"send":0,"writ":0.34,"used":506.56,"free":3574.97},{"epoch":26111736,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.57,"free":3574.96},{"epoch":26111737,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":506.91,"free":3574.62},{"epoch":26111738,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.52,"free":3575},{"epoch":26111739,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":506.27,"free":3575.22},{"epoch":26111740,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":506.76,"free":3574.76},{"epoch":26111741,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.73,"free":3574.78},{"epoch":26111742,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":507.06,"free":3574.46},{"epoch":26111743,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":506.45,"free":3575.07},{"epoch":26111744,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.43,"free":3575.1},{"epoch":26111745,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":506.43,"free":3575.12},{"epoch":26111746,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":506.42,"free":3575.13},{"epoch":26111747,"idl":99.77,"recv":0,"send":0,"writ":0.37,"used":506.94,"free":3574.6},{"epoch":26111748,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":506.6,"free":3574.94},{"epoch":26111749,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":506.58,"free":3574.95},{"epoch":26111750,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":506.82,"free":3574.73},{"epoch":26111751,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.82,"free":3574.73},{"epoch":26111752,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.79,"free":3574.75},{"epoch":26111753,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":506.92,"free":3574.62},{"epoch":26111754,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.5,"free":3575.03},{"epoch":26111755,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":506.5,"free":3575.05},{"epoch":26111756,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.48,"free":3575.07},{"epoch":26111757,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.47,"free":3575.07},{"epoch":26111758,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":507.27,"free":3574.27},{"epoch":26111759,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.68,"free":3574.85},{"epoch":26111760,"idl":99.59,"recv":0,"send":0,"writ":0.32,"used":506.84,"free":3574.71},{"epoch":26111761,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.85,"free":3574.7},{"epoch":26111762,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.82,"free":3574.72},{"epoch":26111763,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":507.25,"free":3574.29},{"epoch":26111764,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.78,"free":3574.75},{"epoch":26111765,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":506.79,"free":3574.76},{"epoch":26111766,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.75,"free":3574.79},{"epoch":26111767,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.74,"free":3574.8},{"epoch":26111768,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":507.06,"free":3574.47},{"epoch":26111769,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":506.92,"free":3574.58},{"epoch":26111770,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":506.93,"free":3574.6},{"epoch":26111771,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":506.04,"free":3575.48},{"epoch":26111772,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.09,"free":3575.43},{"epoch":26111773,"idl":99.76,"recv":0,"send":0,"writ":0.51,"used":506.42,"free":3575.09},{"epoch":26111774,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":506.06,"free":3575.47},{"epoch":26111775,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":506.05,"free":3575.5},{"epoch":26111776,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":506.04,"free":3575.5},{"epoch":26111777,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":505.77,"free":3575.77},{"epoch":26111778,"idl":99.77,"recv":0,"send":0,"writ":0.42,"used":506.15,"free":3575.38},{"epoch":26111779,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":505.97,"free":3575.56},{"epoch":26111780,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":506.22,"free":3575.32},{"epoch":26111781,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.19,"free":3575.35},{"epoch":26111782,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":506.17,"free":3575.36},{"epoch":26111783,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":506.54,"free":3574.99},{"epoch":26111784,"idl":99.87,"recv":0,"send":0,"writ":0.39,"used":506.42,"free":3575.11},{"epoch":26111785,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":505.35,"free":3576.2},{"epoch":26111786,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":505.31,"free":3576.23},{"epoch":26111787,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":505.3,"free":3576.24},{"epoch":26111788,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.26,"free":3576.27},{"epoch":26111789,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":506.46,"free":3575.07},{"epoch":26111790,"idl":99.62,"recv":0,"send":0,"writ":0.31,"used":506.05,"free":3575.49},{"epoch":26111791,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":505.96,"free":3575.58},{"epoch":26111792,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":505.94,"free":3575.6},{"epoch":26111793,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":505.91,"free":3575.62},{"epoch":26111794,"idl":99.76,"recv":0,"send":0,"writ":0.61,"used":506.59,"free":3574.94},{"epoch":26111795,"idl":99.64,"recv":0,"send":0,"writ":0.34,"used":505.38,"free":3576.18},{"epoch":26111796,"idl":99.28,"recv":0,"send":0,"writ":0.15,"used":505.33,"free":3576.23},{"epoch":26111797,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":505.31,"free":3576.25},{"epoch":26111798,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.29,"free":3576.26},{"epoch":26111799,"idl":99.67,"recv":0,"send":0,"writ":0.73,"used":506.59,"free":3574.94},{"epoch":26111800,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":506.01,"free":3575.53},{"epoch":26111801,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":505.98,"free":3575.56},{"epoch":26111802,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":505.97,"free":3575.57},{"epoch":26111803,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":505.94,"free":3575.59},{"epoch":26111804,"idl":99.73,"recv":0,"send":0,"writ":0.61,"used":506.41,"free":3575.12},{"epoch":26111805,"idl":99.73,"recv":0,"send":0,"writ":0.37,"used":505.92,"free":3575.62},{"epoch":26111806,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.05,"free":3575.48},{"epoch":26111807,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.06,"free":3575.47},{"epoch":26111808,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.04,"free":3575.49},{"epoch":26111809,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":506.38,"free":3575.14},{"epoch":26111810,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":506.25,"free":3575.29},{"epoch":26111811,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.24,"free":3575.29},{"epoch":26111812,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.21,"free":3575.32},{"epoch":26111813,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.2,"free":3575.32},{"epoch":26111814,"idl":99.73,"recv":0,"send":0,"writ":0.42,"used":506.49,"free":3575.03},{"epoch":26111815,"idl":99.77,"recv":0,"send":0,"writ":0.49,"used":504.97,"free":3576.57},{"epoch":26111816,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":504.96,"free":3576.58},{"epoch":26111817,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":505.09,"free":3576.44},{"epoch":26111818,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":505.07,"free":3576.46},{"epoch":26111819,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":505.28,"free":3576.24},{"epoch":26111820,"idl":98.14,"recv":0,"send":0,"writ":11.5,"used":506.17,"free":3575.71},{"epoch":26111821,"idl":99.79,"recv":0,"send":0,"writ":0.19,"used":505.39,"free":3576.54},{"epoch":26111822,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.37,"free":3576.56},{"epoch":26111823,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":505.34,"free":3576.59},{"epoch":26111824,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":505.32,"free":3576.59},{"epoch":26111825,"idl":99.44,"recv":0,"send":0,"writ":0.78,"used":506.7,"free":3575.25},{"epoch":26111826,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.04,"free":3575.91},{"epoch":26111827,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.02,"free":3575.93},{"epoch":26111828,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.05,"free":3575.89},{"epoch":26111829,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":506.66,"free":3575.27},{"epoch":26111830,"idl":99.57,"recv":0,"send":0,"writ":0.73,"used":507.04,"free":3574.91},{"epoch":26111831,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.41,"free":3575.54},{"epoch":26111832,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":506.4,"free":3575.54},{"epoch":26111833,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.37,"free":3575.57},{"epoch":26111834,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":506.36,"free":3575.57},{"epoch":26111835,"idl":99.64,"recv":0,"send":0,"writ":0.76,"used":506.52,"free":3575.43},{"epoch":26111836,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":505.61,"free":3576.34},{"epoch":26111837,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":505.57,"free":3576.37},{"epoch":26111838,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":505.57,"free":3576.37},{"epoch":26111839,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":505.54,"free":3576.4},{"epoch":26111840,"idl":99.65,"recv":0,"send":0,"writ":0.75,"used":506.74,"free":3575.21},{"epoch":26111841,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.36,"free":3575.58},{"epoch":26111842,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":506.43,"free":3575.51},{"epoch":26111843,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":506.3,"free":3575.64},{"epoch":26111844,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":506.14,"free":3575.79},{"epoch":26111845,"idl":99.64,"recv":0,"send":0,"writ":0.77,"used":506.76,"free":3575.19},{"epoch":26111846,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.37,"free":3575.57},{"epoch":26111847,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.37,"free":3575.57},{"epoch":26111848,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":506.33,"free":3575.6},{"epoch":26111849,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.32,"free":3575.61},{"epoch":26111850,"idl":99.74,"recv":0.01,"send":0.02,"writ":0.35,"used":506.55,"free":3575.39},{"epoch":26111851,"idl":99.7,"recv":0.01,"send":0.04,"writ":0.61,"used":506.49,"free":3575.45},{"epoch":26111852,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":506.09,"free":3575.84},{"epoch":26111853,"idl":99.35,"recv":0,"send":0,"writ":0.17,"used":506.08,"free":3575.85},{"epoch":26111854,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.06,"free":3575.86},{"epoch":26111855,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":506.3,"free":3575.64},{"epoch":26111856,"idl":99.74,"recv":0,"send":0,"writ":0.62,"used":506.86,"free":3575.07},{"epoch":26111857,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":506.5,"free":3575.42},{"epoch":26111858,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":506.62,"free":3575.3},{"epoch":26111859,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":506.67,"free":3575.22},{"epoch":26111860,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":506.66,"free":3575.26},{"epoch":26111861,"idl":99.72,"recv":0,"send":0,"writ":0.61,"used":506.77,"free":3575.13},{"epoch":26111862,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.36,"free":3575.54},{"epoch":26111863,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.33,"free":3575.57},{"epoch":26111864,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":506.32,"free":3575.58},{"epoch":26111865,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":506.36,"free":3575.55},{"epoch":26111866,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":507.32,"free":3574.59},{"epoch":26111867,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.76,"free":3575.14},{"epoch":26111868,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.73,"free":3575.16},{"epoch":26111869,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":506.89,"free":3575},{"epoch":26111870,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":506.66,"free":3575.25},{"epoch":26111871,"idl":99.75,"recv":0,"send":0,"writ":0.46,"used":507.34,"free":3574.57},{"epoch":26111872,"idl":99.87,"recv":0,"send":0,"writ":0.25,"used":506.61,"free":3575.29},{"epoch":26111873,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.59,"free":3575.31},{"epoch":26111874,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":506.57,"free":3575.32},{"epoch":26111875,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":506.33,"free":3575.58},{"epoch":26111876,"idl":99.76,"recv":0,"send":0,"writ":0.52,"used":506.87,"free":3575.04},{"epoch":26111877,"idl":99.86,"recv":0,"send":0,"writ":0.25,"used":506.27,"free":3575.62},{"epoch":26111878,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.25,"free":3575.64},{"epoch":26111879,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":506.26,"free":3575.63},{"epoch":26111880,"idl":99.64,"recv":0,"send":0,"writ":0.37,"used":506.65,"free":3575.25},{"epoch":26111881,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":506.99,"free":3574.91},{"epoch":26111882,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.62,"free":3575.27},{"epoch":26111883,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.6,"free":3575.29},{"epoch":26111884,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.59,"free":3575.29},{"epoch":26111885,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":506.58,"free":3575.32},{"epoch":26111886,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.56,"free":3575.34},{"epoch":26111887,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":506.41,"free":3575.48},{"epoch":26111888,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.01,"free":3575.88},{"epoch":26111889,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":506.49,"free":3575.37},{"epoch":26111890,"idl":99.78,"recv":0,"send":0.01,"writ":0.31,"used":506.55,"free":3575.32},{"epoch":26111891,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.63,"free":3575.24},{"epoch":26111892,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":506.95,"free":3574.91},{"epoch":26111893,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.59,"free":3575.27},{"epoch":26111894,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.57,"free":3575.31},{"epoch":26111895,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":506.56,"free":3575.33},{"epoch":26111896,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.53,"free":3575.36},{"epoch":26111897,"idl":99.73,"recv":0,"send":0,"writ":0.66,"used":507.06,"free":3574.82},{"epoch":26111898,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.73,"free":3575.15},{"epoch":26111899,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.77,"free":3575.11},{"epoch":26111900,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":506.45,"free":3575.45},{"epoch":26111901,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.43,"free":3575.46},{"epoch":26111902,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":506.93,"free":3574.98},{"epoch":26111903,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":506.53,"free":3575.37},{"epoch":26111904,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.37,"free":3575.53},{"epoch":26111905,"idl":99.34,"recv":0,"send":0,"writ":0.29,"used":506.18,"free":3575.73},{"epoch":26111906,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.09,"free":3575.82},{"epoch":26111907,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":506.88,"free":3575.03},{"epoch":26111908,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":506.54,"free":3575.36},{"epoch":26111909,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":506.51,"free":3575.39},{"epoch":26111910,"idl":99.65,"recv":0,"send":0,"writ":0.31,"used":505.65,"free":3576.26},{"epoch":26111911,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":505.69,"free":3576.21},{"epoch":26111912,"idl":99.69,"recv":0,"send":0,"writ":0.51,"used":506.44,"free":3575.46},{"epoch":26111913,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":506.88,"free":3575.02},{"epoch":26111914,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":506.85,"free":3575.04},{"epoch":26111915,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":506.86,"free":3575.05},{"epoch":26111916,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.83,"free":3575.07},{"epoch":26111917,"idl":99.78,"recv":0,"send":0,"writ":0.39,"used":507.17,"free":3574.73},{"epoch":26111918,"idl":99.9,"recv":0,"send":0,"writ":0.39,"used":506.78,"free":3575.11},{"epoch":26111919,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":506.77,"free":3575.1},{"epoch":26111920,"idl":99.76,"recv":0,"send":0,"writ":0.26,"used":506.82,"free":3575.06},{"epoch":26111921,"idl":99.9,"recv":0.01,"send":0,"writ":0.16,"used":506.86,"free":3575.02},{"epoch":26111922,"idl":99.72,"recv":0,"send":0,"writ":0.45,"used":507.19,"free":3574.68},{"epoch":26111923,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":507.05,"free":3574.82},{"epoch":26111924,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.03,"free":3574.85},{"epoch":26111925,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":506.8,"free":3575.11},{"epoch":26111926,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.5,"free":3575.4},{"epoch":26111927,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":506.01,"free":3575.88},{"epoch":26111928,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":505.79,"free":3576.09},{"epoch":26111929,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":505.17,"free":3576.71},{"epoch":26111930,"idl":99.81,"recv":0,"send":0,"writ":0.26,"used":505.89,"free":3576.01},{"epoch":26111931,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":505.89,"free":3576},{"epoch":26111932,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":505.87,"free":3576.02},{"epoch":26111933,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":506.63,"free":3575.25},{"epoch":26111934,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.06,"free":3575.82},{"epoch":26111935,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":506.06,"free":3575.84},{"epoch":26111936,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.05,"free":3575.85},{"epoch":26111937,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.01,"free":3575.88},{"epoch":26111938,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":506.35,"free":3575.53},{"epoch":26111939,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":505.97,"free":3575.91},{"epoch":26111940,"idl":99.54,"recv":0,"send":0,"writ":0.27,"used":506.19,"free":3575.7},{"epoch":26111941,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.14,"free":3575.75},{"epoch":26111942,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.12,"free":3575.77},{"epoch":26111943,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":506.46,"free":3575.43},{"epoch":26111944,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.08,"free":3575.8},{"epoch":26111945,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":506.09,"free":3575.81},{"epoch":26111946,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":506.05,"free":3575.84},{"epoch":26111947,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":506.04,"free":3575.85},{"epoch":26111948,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":506.47,"free":3575.41},{"epoch":26111949,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":505.75,"free":3576.12},{"epoch":26111950,"idl":99.86,"recv":0,"send":0,"writ":0.26,"used":506.3,"free":3575.59},{"epoch":26111951,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.39,"free":3575.5},{"epoch":26111952,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.38,"free":3575.5},{"epoch":26111953,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":506.7,"free":3575.18},{"epoch":26111954,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":506.34,"free":3575.55},{"epoch":26111955,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":506.09,"free":3575.83},{"epoch":26111956,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.05,"free":3575.86},{"epoch":26111957,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":506.04,"free":3575.86},{"epoch":26111958,"idl":99.68,"recv":0,"send":0,"writ":0.43,"used":506.36,"free":3575.54},{"epoch":26111959,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":506,"free":3575.89},{"epoch":26111960,"idl":99.76,"recv":0,"send":0,"writ":0.25,"used":505.99,"free":3575.92},{"epoch":26111961,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":506.09,"free":3575.82},{"epoch":26111962,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.08,"free":3575.83},{"epoch":26111963,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":505.87,"free":3576.03},{"epoch":26111964,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":506.46,"free":3575.44},{"epoch":26111965,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":506.33,"free":3575.58},{"epoch":26111966,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.32,"free":3575.59},{"epoch":26111967,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.31,"free":3575.6},{"epoch":26111968,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":506.28,"free":3575.62},{"epoch":26111969,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":506.57,"free":3575.32},{"epoch":26111970,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":506.02,"free":3575.89},{"epoch":26111971,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.01,"free":3575.89},{"epoch":26111972,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":505.98,"free":3575.92},{"epoch":26111973,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.02,"free":3575.88},{"epoch":26111974,"idl":99.44,"recv":0,"send":0,"writ":0.5,"used":506.66,"free":3575.23},{"epoch":26111975,"idl":99.62,"recv":0,"send":0,"writ":0.32,"used":505.2,"free":3576.71},{"epoch":26111976,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.15,"free":3576.75},{"epoch":26111977,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":505.14,"free":3576.76},{"epoch":26111978,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":505.11,"free":3576.79},{"epoch":26111979,"idl":99.63,"recv":0,"send":0.01,"writ":0.61,"used":506.54,"free":3575.33},{"epoch":26111980,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":506.31,"free":3575.57},{"epoch":26111981,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":506.26,"free":3575.62},{"epoch":26111982,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":506.23,"free":3575.64},{"epoch":26111983,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.35,"free":3575.52},{"epoch":26111984,"idl":99.74,"recv":0,"send":0,"writ":0.52,"used":506.63,"free":3575.25},{"epoch":26111985,"idl":99.64,"recv":0,"send":0,"writ":0.36,"used":505.41,"free":3576.48},{"epoch":26111986,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":505.38,"free":3576.52},{"epoch":26111987,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":505.35,"free":3576.54},{"epoch":26111988,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":505.34,"free":3576.55},{"epoch":26111989,"idl":99.7,"recv":0,"send":0,"writ":0.44,"used":506.16,"free":3575.72},{"epoch":26111990,"idl":99.75,"recv":0,"send":0,"writ":0.43,"used":506.05,"free":3575.85},{"epoch":26111991,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":506.03,"free":3575.86},{"epoch":26111992,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.01,"free":3575.87},{"epoch":26111993,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":505.98,"free":3575.9},{"epoch":26111994,"idl":93.69,"recv":2.43,"send":0.03,"writ":263.77,"used":517.02,"free":3563.53},{"epoch":26111995,"idl":99.74,"recv":0,"send":0,"writ":0.48,"used":508.76,"free":3570.76},{"epoch":26111996,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":508.73,"free":3570.79},{"epoch":26111997,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":508.72,"free":3570.79},{"epoch":26111998,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":508.69,"free":3570.82},{"epoch":26111999,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":506.87,"free":3572.68},{"epoch":26112000,"idl":99.17,"recv":0,"send":0,"writ":0.71,"used":504.6,"free":3575},{"epoch":26112001,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":504.2,"free":3575.4},{"epoch":26112002,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":504.18,"free":3575.41},{"epoch":26112003,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":504.15,"free":3575.44},{"epoch":26112004,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":504.13,"free":3575.45},{"epoch":26112005,"idl":99.6,"recv":0,"send":0,"writ":0.76,"used":506.41,"free":3573.19},{"epoch":26112006,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.09,"free":3573.51},{"epoch":26112007,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.06,"free":3573.53},{"epoch":26112008,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.06,"free":3573.53},{"epoch":26112009,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":506.03,"free":3573.54},{"epoch":26112010,"idl":99.56,"recv":0,"send":0,"writ":0.72,"used":506.87,"free":3572.71},{"epoch":26112011,"idl":99.82,"recv":0,"send":0,"writ":0.24,"used":506.25,"free":3573.33},{"epoch":26112012,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.31,"free":3573.26},{"epoch":26112013,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.39,"free":3573.18},{"epoch":26112014,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":506.38,"free":3573.18},{"epoch":26112015,"idl":99.42,"recv":0,"send":0,"writ":0.71,"used":506.97,"free":3572.61},{"epoch":26112016,"idl":99.77,"recv":0,"send":0,"writ":0.13,"used":506.61,"free":3572.97},{"epoch":26112017,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.21,"used":506.56,"free":3573.01},{"epoch":26112018,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.52,"free":3573.05},{"epoch":26112019,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":506.51,"free":3573.05},{"epoch":26112020,"idl":99.55,"recv":0,"send":0,"writ":0.65,"used":507.23,"free":3572.35},{"epoch":26112021,"idl":99.76,"recv":0,"send":0,"writ":0.21,"used":506.49,"free":3573.09},{"epoch":26112022,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.66,"free":3572.91},{"epoch":26112023,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":506.67,"free":3572.89},{"epoch":26112024,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":506.64,"free":3572.92},{"epoch":26112025,"idl":99.6,"recv":0,"send":0,"writ":0.59,"used":506.9,"free":3572.68},{"epoch":26112026,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":506.61,"free":3572.96},{"epoch":26112027,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.59,"free":3572.98},{"epoch":26112028,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.57,"free":3572.99},{"epoch":26112029,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":506.55,"free":3573},{"epoch":26112030,"idl":99.53,"recv":0,"send":0,"writ":0.46,"used":506.89,"free":3572.68},{"epoch":26112031,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":506.3,"free":3573.28},{"epoch":26112032,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":506.27,"free":3573.3},{"epoch":26112033,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":506.26,"free":3573.3},{"epoch":26112034,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.16,"used":506.36,"free":3573.2},{"epoch":26112035,"idl":99.48,"recv":0,"send":0,"writ":0.47,"used":506.7,"free":3572.88},{"epoch":26112036,"idl":99.82,"recv":0,"send":0,"writ":0.38,"used":506.57,"free":3573},{"epoch":26112037,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.54,"free":3573.02},{"epoch":26112038,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.53,"free":3573.03},{"epoch":26112039,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":506.75,"free":3572.8},{"epoch":26112040,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":506.64,"free":3572.93},{"epoch":26112041,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":507.04,"free":3572.53},{"epoch":26112042,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.64,"free":3572.92},{"epoch":26112043,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.63,"free":3572.93},{"epoch":26112044,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.6,"free":3572.97},{"epoch":26112045,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":506.86,"free":3572.73},{"epoch":26112046,"idl":96.58,"recv":0.02,"send":0.01,"writ":78.75,"used":519.39,"free":3562.1},{"epoch":26112047,"idl":99.83,"recv":0,"send":0,"writ":0.25,"used":509.42,"free":3570.18},{"epoch":26112048,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":509.39,"free":3570.21},{"epoch":26112049,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":509.38,"free":3570.21},{"epoch":26112050,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":509.13,"free":3570.47},{"epoch":26112051,"idl":99.7,"recv":0,"send":0,"writ":0.67,"used":508.02,"free":3571.6},{"epoch":26112052,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":506.42,"free":3573.21},{"epoch":26112053,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":506.41,"free":3573.23},{"epoch":26112054,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.38,"free":3573.25},{"epoch":26112055,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":506.63,"free":3573.01},{"epoch":26112056,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":506.96,"free":3572.68},{"epoch":26112057,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.59,"free":3573.04},{"epoch":26112058,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.61,"free":3573.02},{"epoch":26112059,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":506.74,"free":3572.89},{"epoch":26112060,"idl":99.39,"recv":0,"send":0,"writ":0.33,"used":506.02,"free":3573.63},{"epoch":26112061,"idl":99.58,"recv":0,"send":0,"writ":0.42,"used":506.61,"free":3573.02},{"epoch":26112062,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":506.69,"free":3572.94},{"epoch":26112063,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.67,"free":3572.96},{"epoch":26112064,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":506.65,"free":3572.97},{"epoch":26112065,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":506.65,"free":3572.99},{"epoch":26112066,"idl":99.69,"recv":0,"send":0,"writ":0.51,"used":506.89,"free":3572.75},{"epoch":26112067,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.13,"free":3573.51},{"epoch":26112068,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.1,"free":3573.52},{"epoch":26112069,"idl":99.59,"recv":0,"send":0,"writ":0.43,"used":506.09,"free":3573.51},{"epoch":26112070,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":506.64,"free":3572.99},{"epoch":26112071,"idl":99.68,"recv":0,"send":0,"writ":0.33,"used":507.4,"free":3572.23},{"epoch":26112072,"idl":99.74,"recv":0,"send":0,"writ":0.4,"used":506.93,"free":3572.7},{"epoch":26112073,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":506.9,"free":3572.72},{"epoch":26112074,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":506.89,"free":3572.73},{"epoch":26112075,"idl":99.6,"recv":0,"send":0,"writ":0.29,"used":506.65,"free":3572.98},{"epoch":26112076,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.62,"free":3573.01},{"epoch":26112077,"idl":99.59,"recv":0,"send":0,"writ":0.6,"used":507.08,"free":3572.54},{"epoch":26112078,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":506.57,"free":3573.05},{"epoch":26112079,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.54,"free":3573.07},{"epoch":26112080,"idl":99.69,"recv":0,"send":0,"writ":0.27,"used":506.47,"free":3573.16},{"epoch":26112081,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":506.29,"free":3573.34},{"epoch":26112082,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":506.25,"free":3573.37},{"epoch":26112083,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":505.76,"free":3573.86},{"epoch":26112084,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":505.44,"free":3574.18},{"epoch":26112085,"idl":99.6,"recv":0,"send":0,"writ":0.29,"used":504.72,"free":3574.92},{"epoch":26112086,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":504.68,"free":3574.95},{"epoch":26112087,"idl":99.65,"recv":0,"send":0,"writ":0.52,"used":505.76,"free":3573.87},{"epoch":26112088,"idl":99.76,"recv":0,"send":0,"writ":0.19,"used":506.11,"free":3573.51},{"epoch":26112089,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":506.08,"free":3573.53},{"epoch":26112090,"idl":99.58,"recv":0,"send":0,"writ":0.28,"used":506.34,"free":3573.3},{"epoch":26112091,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":506.31,"free":3573.32},{"epoch":26112092,"idl":99.63,"recv":0,"send":0,"writ":0.41,"used":506.61,"free":3573.01},{"epoch":26112093,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":506.24,"free":3573.38},{"epoch":26112094,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":506.21,"free":3573.4},{"epoch":26112095,"idl":99.62,"recv":0,"send":0,"writ":0.34,"used":506.22,"free":3573.41},{"epoch":26112096,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":506.19,"free":3573.44},{"epoch":26112097,"idl":99.63,"recv":0,"send":0,"writ":0.44,"used":506.89,"free":3572.73},{"epoch":26112098,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":506.15,"free":3573.47},{"epoch":26112099,"idl":99.6,"recv":0,"send":0,"writ":0.36,"used":505.89,"free":3573.7},{"epoch":26112100,"idl":99.68,"recv":0,"send":0,"writ":0.33,"used":506.13,"free":3573.48},{"epoch":26112101,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":506.12,"free":3573.48},{"epoch":26112102,"idl":99.68,"recv":0,"send":0,"writ":0.47,"used":506.47,"free":3573.12},{"epoch":26112103,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":506.33,"free":3573.26},{"epoch":26112104,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.45,"free":3573.15},{"epoch":26112105,"idl":99.58,"recv":0,"send":0,"writ":0.29,"used":506.5,"free":3573.12},{"epoch":26112106,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":506.22,"free":3573.4},{"epoch":26112107,"idl":99.6,"recv":0,"send":0,"writ":0.54,"used":506.53,"free":3573.08},{"epoch":26112108,"idl":99.78,"recv":0,"send":0,"writ":0.23,"used":505.94,"free":3573.67},{"epoch":26112109,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.92,"free":3573.68},{"epoch":26112110,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":505.93,"free":3573.7},{"epoch":26112111,"idl":99.74,"recv":0,"send":0,"writ":0.13,"used":505.92,"free":3573.72},{"epoch":26112112,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":505.88,"free":3573.75},{"epoch":26112113,"idl":99.62,"recv":0,"send":0,"writ":0.61,"used":506.72,"free":3572.91},{"epoch":26112114,"idl":99.79,"recv":0,"send":0,"writ":0.19,"used":506.33,"free":3573.29},{"epoch":26112115,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":506.1,"free":3573.54},{"epoch":26112116,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":506.21,"free":3573.43},{"epoch":26112117,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.24,"free":3573.39},{"epoch":26112118,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":506.77,"free":3572.86},{"epoch":26112119,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.45,"free":3573.18},{"epoch":26112120,"idl":99.57,"recv":0,"send":0,"writ":0.27,"used":506.45,"free":3573.2},{"epoch":26112121,"idl":99.71,"recv":0,"send":0,"writ":0.15,"used":506.43,"free":3573.21},{"epoch":26112122,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":506.4,"free":3573.23},{"epoch":26112123,"idl":99.6,"recv":0,"send":0,"writ":0.55,"used":506.86,"free":3572.77},{"epoch":26112124,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":506.36,"free":3573.26},{"epoch":26112125,"idl":99.65,"recv":0,"send":0,"writ":0.29,"used":505.42,"free":3574.22},{"epoch":26112126,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":505.36,"free":3574.28},{"epoch":26112127,"idl":99.79,"recv":0,"send":0,"writ":0.19,"used":505.35,"free":3574.28},{"epoch":26112128,"idl":99.65,"recv":0,"send":0,"writ":0.58,"used":506.22,"free":3573.41},{"epoch":26112129,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":506.71,"free":3572.89},{"epoch":26112130,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":506.23,"free":3573.4},{"epoch":26112131,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.2,"free":3573.42},{"epoch":26112132,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":506.18,"free":3573.44},{"epoch":26112133,"idl":99.61,"recv":0,"send":0,"writ":0.45,"used":506.5,"free":3573.11},{"epoch":26112134,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":506.14,"free":3573.47},{"epoch":26112135,"idl":99.6,"recv":0,"send":0,"writ":0.34,"used":506.37,"free":3573.25},{"epoch":26112136,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":506.36,"free":3573.26},{"epoch":26112137,"idl":99.76,"recv":0,"send":0,"writ":0.22,"used":506.09,"free":3573.53},{"epoch":26112138,"idl":99.65,"recv":0,"send":0,"writ":0.44,"used":506.68,"free":3572.93},{"epoch":26112139,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":506.08,"free":3573.52},{"epoch":26112140,"idl":99.58,"recv":0,"send":0,"writ":0.33,"used":506.48,"free":3573.14},{"epoch":26112141,"idl":99.72,"recv":0,"send":0,"writ":0.17,"used":506.46,"free":3573.16},{"epoch":26112142,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":506.45,"free":3573.17},{"epoch":26112143,"idl":99.56,"recv":0,"send":0,"writ":0.46,"used":506.63,"free":3572.97},{"epoch":26112144,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":505.67,"free":3573.94},{"epoch":26112145,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":505.18,"free":3574.44},{"epoch":26112146,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":505.15,"free":3574.47},{"epoch":26112147,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":505.13,"free":3574.48},{"epoch":26112148,"idl":99.62,"recv":0,"send":0,"writ":0.57,"used":505.58,"free":3574.02},{"epoch":26112149,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.07,"free":3573.53},{"epoch":26112150,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":506.38,"free":3573.24},{"epoch":26112151,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":506.44,"free":3573.18},{"epoch":26112152,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":506.45,"free":3573.16},{"epoch":26112153,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":506.44,"free":3573.17},{"epoch":26112154,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":507.08,"free":3572.52},{"epoch":26112155,"idl":99.54,"recv":0,"send":0,"writ":0.29,"used":505.48,"free":3574.15},{"epoch":26112156,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":505.41,"free":3574.21},{"epoch":26112157,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":505.41,"free":3574.21},{"epoch":26112158,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":505.38,"free":3574.24},{"epoch":26112159,"idl":99.62,"recv":0,"send":0,"writ":0.75,"used":505.61,"free":3573.98},{"epoch":26112160,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":506.55,"free":3573.05},{"epoch":26112161,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":506.56,"free":3573.04},{"epoch":26112162,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":506.54,"free":3573.05},{"epoch":26112163,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":506.68,"free":3572.91},{"epoch":26112164,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":506.83,"free":3572.78},{"epoch":26112165,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":506.46,"free":3573.16},{"epoch":26112166,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.42,"free":3573.19},{"epoch":26112167,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":506.4,"free":3573.22},{"epoch":26112168,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.38,"free":3573.22},{"epoch":26112169,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":506.77,"free":3572.83},{"epoch":26112170,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":506.37,"free":3573.26},{"epoch":26112171,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.34,"free":3573.28},{"epoch":26112172,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.33,"free":3573.29},{"epoch":26112173,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.3,"free":3573.31},{"epoch":26112174,"idl":99.71,"recv":0,"send":0,"writ":0.51,"used":506.75,"free":3572.86},{"epoch":26112175,"idl":99.66,"recv":0,"send":0,"writ":0.36,"used":506.53,"free":3573.09},{"epoch":26112176,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.49,"free":3573.13},{"epoch":26112177,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.46,"free":3573.15},{"epoch":26112178,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.45,"free":3573.16},{"epoch":26112179,"idl":99.75,"recv":0,"send":0,"writ":0.43,"used":506.78,"free":3572.82},{"epoch":26112180,"idl":99.55,"recv":0,"send":0,"writ":0.41,"used":506.68,"free":3572.95},{"epoch":26112181,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.65,"free":3572.97},{"epoch":26112182,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":506.58,"free":3573.04},{"epoch":26112183,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.37,"free":3573.25},{"epoch":26112184,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":506.51,"free":3573.1},{"epoch":26112185,"idl":99.84,"recv":0,"send":0,"writ":0.37,"used":506.55,"free":3573.07},{"epoch":26112186,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.62,"free":3572.99},{"epoch":26112187,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.73,"free":3572.88},{"epoch":26112188,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":506.71,"free":3572.89},{"epoch":26112189,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":506.91,"free":3572.67},{"epoch":26112190,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":506.69,"free":3572.91},{"epoch":26112191,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.67,"free":3572.92},{"epoch":26112192,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.65,"free":3572.95},{"epoch":26112193,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.63,"free":3572.95},{"epoch":26112194,"idl":87.29,"recv":0,"send":0,"writ":69.42,"used":536.01,"free":3527.1},{"epoch":26112195,"idl":99.72,"recv":0,"send":0,"writ":34.11,"used":509.46,"free":3565.71},{"epoch":26112196,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":509.41,"free":3565.77},{"epoch":26112197,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":509.15,"free":3566.03},{"epoch":26112198,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":509.3,"free":3565.88},{"epoch":26112199,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":509.3,"free":3565.87},{"epoch":26112200,"idl":99.56,"recv":0,"send":0,"writ":0.71,"used":507.27,"free":3568.02},{"epoch":26112201,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.86,"free":3568.43},{"epoch":26112202,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.83,"free":3568.45},{"epoch":26112203,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.7,"free":3568.57},{"epoch":26112204,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":506.3,"free":3568.97},{"epoch":26112205,"idl":98.35,"recv":0,"send":0,"writ":16.07,"used":509.94,"free":3565.85},{"epoch":26112206,"idl":99.87,"recv":0,"send":0,"writ":0.22,"used":506.89,"free":3568.53},{"epoch":26112207,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.88,"free":3568.53},{"epoch":26112208,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.86,"free":3568.56},{"epoch":26112209,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.84,"free":3568.56},{"epoch":26112210,"idl":99.6,"recv":0,"send":0,"writ":0.55,"used":506.58,"free":3568.84},{"epoch":26112211,"idl":99.88,"recv":0,"send":0,"writ":0.26,"used":507,"free":3568.42},{"epoch":26112212,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.99,"free":3568.43},{"epoch":26112213,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.97,"free":3568.44},{"epoch":26112214,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.94,"free":3568.47},{"epoch":26112215,"idl":99.51,"recv":0,"send":0,"writ":0.69,"used":507.45,"free":3567.98},{"epoch":26112216,"idl":99.72,"recv":0,"send":0,"writ":0.19,"used":507.17,"free":3568.25},{"epoch":26112217,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":507.16,"free":3568.26},{"epoch":26112218,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":507.12,"free":3568.29},{"epoch":26112219,"idl":99.08,"recv":0,"send":0,"writ":0.33,"used":506.37,"free":3569},{"epoch":26112220,"idl":99.55,"recv":0,"send":0,"writ":0.75,"used":507.23,"free":3568.16},{"epoch":26112221,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":506.83,"free":3568.56},{"epoch":26112222,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.87,"free":3568.51},{"epoch":26112223,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":506.97,"free":3568.41},{"epoch":26112224,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":506.95,"free":3568.43},{"epoch":26112225,"idl":99.64,"recv":0,"send":0,"writ":0.79,"used":506.77,"free":3568.62},{"epoch":26112226,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.93,"free":3568.46},{"epoch":26112227,"idl":99.79,"recv":0,"send":0,"writ":0.21,"used":506.91,"free":3568.48},{"epoch":26112228,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.89,"free":3568.49},{"epoch":26112229,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":506.87,"free":3568.5},{"epoch":26112230,"idl":99.55,"recv":0,"send":0,"writ":0.72,"used":507.23,"free":3568.17},{"epoch":26112231,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.85,"free":3568.54},{"epoch":26112232,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.83,"free":3568.55},{"epoch":26112233,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.81,"free":3568.57},{"epoch":26112234,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.79,"free":3568.59},{"epoch":26112235,"idl":99.51,"recv":0,"send":0,"writ":0.45,"used":507.79,"free":3567.61},{"epoch":26112236,"idl":99.88,"recv":0,"send":0,"writ":0.42,"used":506.85,"free":3568.54},{"epoch":26112237,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.2,"free":3569.18},{"epoch":26112238,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.18,"free":3569.2},{"epoch":26112239,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.16,"free":3569.22},{"epoch":26112240,"idl":99.6,"recv":0,"send":0,"writ":0.28,"used":505.93,"free":3569.47},{"epoch":26112241,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":506.24,"free":3569.15},{"epoch":26112242,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":505.87,"free":3569.51},{"epoch":26112243,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":505.85,"free":3569.54},{"epoch":26112244,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":505.83,"free":3569.55},{"epoch":26112245,"idl":99.67,"recv":0,"send":0,"writ":0.38,"used":506.06,"free":3569.33},{"epoch":26112246,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":506.49,"free":3568.9},{"epoch":26112247,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.22,"free":3569.17},{"epoch":26112248,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.21,"free":3569.17},{"epoch":26112249,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":506.22,"free":3569.14},{"epoch":26112250,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":506.45,"free":3568.92},{"epoch":26112251,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":506.95,"free":3568.42},{"epoch":26112252,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.16,"free":3569.21},{"epoch":26112253,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.13,"free":3569.24},{"epoch":26112254,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.12,"free":3569.26},{"epoch":26112255,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":506.12,"free":3569.28},{"epoch":26112256,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":506.46,"free":3568.93},{"epoch":26112257,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":506.07,"free":3569.32},{"epoch":26112258,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.22,"free":3569.17},{"epoch":26112259,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.25,"free":3569.13},{"epoch":26112260,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":506.5,"free":3568.89},{"epoch":26112261,"idl":99.78,"recv":0,"send":0,"writ":0.48,"used":506.22,"free":3569.17},{"epoch":26112262,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":505.22,"free":3570.17},{"epoch":26112263,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":505.34,"free":3570.04},{"epoch":26112264,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.91,"free":3569.46},{"epoch":26112265,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":504.98,"free":3570.42},{"epoch":26112266,"idl":99.73,"recv":0,"send":0,"writ":0.39,"used":506,"free":3569.39},{"epoch":26112267,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":506.13,"free":3569.25},{"epoch":26112268,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.12,"free":3569.26},{"epoch":26112269,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.25,"free":3569.13},{"epoch":26112270,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":506.26,"free":3569.13},{"epoch":26112271,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":506.66,"free":3568.73},{"epoch":26112272,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.71,"free":3568.67},{"epoch":26112273,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":506.68,"free":3568.7},{"epoch":26112274,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.67,"free":3568.7},{"epoch":26112275,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":506.42,"free":3568.97},{"epoch":26112276,"idl":99.75,"recv":0,"send":0,"writ":0.46,"used":506.71,"free":3568.68},{"epoch":26112277,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":506.48,"free":3568.9},{"epoch":26112278,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.48,"free":3568.89},{"epoch":26112279,"idl":99.68,"recv":0,"send":0,"writ":0.27,"used":506.45,"free":3568.91},{"epoch":26112280,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":506.68,"free":3568.69},{"epoch":26112281,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.67,"free":3568.69},{"epoch":26112282,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":506.77,"free":3568.59},{"epoch":26112283,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.39,"free":3568.97},{"epoch":26112284,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":506.37,"free":3568.98},{"epoch":26112285,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":506.37,"free":3569},{"epoch":26112286,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.36,"free":3569},{"epoch":26112287,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":506.78,"free":3568.58},{"epoch":26112288,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":506.32,"free":3569.03},{"epoch":26112289,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.34,"free":3569.01},{"epoch":26112290,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":506.73,"free":3568.63},{"epoch":26112291,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":506.7,"free":3568.66},{"epoch":26112292,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":507.04,"free":3568.32},{"epoch":26112293,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.66,"free":3568.69},{"epoch":26112294,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.64,"free":3568.7},{"epoch":26112295,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":506.16,"free":3569.2},{"epoch":26112296,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":506.13,"free":3569.23},{"epoch":26112297,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":506.7,"free":3568.66},{"epoch":26112298,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.58,"free":3568.77},{"epoch":26112299,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":506.56,"free":3568.79},{"epoch":26112300,"idl":99.55,"recv":0,"send":0,"writ":0.29,"used":506.6,"free":3568.76},{"epoch":26112301,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.68,"free":3568.68},{"epoch":26112302,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":507.19,"free":3568.16},{"epoch":26112303,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":506.68,"free":3568.66},{"epoch":26112304,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.66,"free":3568.68},{"epoch":26112305,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":505.95,"free":3569.4},{"epoch":26112306,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":505.91,"free":3569.44},{"epoch":26112307,"idl":99.69,"recv":0,"send":0,"writ":0.45,"used":506.33,"free":3569.01},{"epoch":26112308,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":506.6,"free":3568.73},{"epoch":26112309,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":506.59,"free":3568.72},{"epoch":26112310,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":506.58,"free":3568.75},{"epoch":26112311,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.57,"free":3568.76},{"epoch":26112312,"idl":99.73,"recv":0,"send":0,"writ":0.46,"used":506.92,"free":3568.4},{"epoch":26112313,"idl":99.91,"recv":0,"send":0,"writ":0.26,"used":506.82,"free":3568.51},{"epoch":26112314,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.95,"free":3568.39},{"epoch":26112315,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":506.7,"free":3568.65},{"epoch":26112316,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.68,"free":3568.66},{"epoch":26112317,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":506.66,"free":3568.68},{"epoch":26112318,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":507.4,"free":3567.94},{"epoch":26112319,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.84,"free":3568.49},{"epoch":26112320,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":506.84,"free":3568.51},{"epoch":26112321,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":506.82,"free":3568.53},{"epoch":26112322,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":506.79,"free":3568.56},{"epoch":26112323,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":507.25,"free":3568.08},{"epoch":26112324,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.68,"free":3568.65},{"epoch":26112325,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":506.94,"free":3568.41},{"epoch":26112326,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.9,"free":3568.44},{"epoch":26112327,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":506.89,"free":3568.45},{"epoch":26112328,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":507.22,"free":3568.11},{"epoch":26112329,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.84,"free":3568.49},{"epoch":26112330,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":506.61,"free":3568.74},{"epoch":26112331,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.58,"free":3568.77},{"epoch":26112332,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.56,"free":3568.78},{"epoch":26112333,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":506.9,"free":3568.44},{"epoch":26112334,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.52,"free":3568.81},{"epoch":26112335,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":506.93,"free":3568.41},{"epoch":26112336,"idl":99.65,"recv":0,"send":0,"writ":0.17,"used":506.97,"free":3568.38},{"epoch":26112337,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":506.94,"free":3568.4},{"epoch":26112338,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":507.52,"free":3567.81},{"epoch":26112339,"idl":99.7,"recv":0,"send":0,"writ":0.28,"used":506.4,"free":3568.92},{"epoch":26112340,"idl":99.46,"recv":0,"send":0,"writ":0.3,"used":506.92,"free":3568.41},{"epoch":26112341,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.86,"free":3568.47},{"epoch":26112342,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":506.83,"free":3568.49},{"epoch":26112343,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":507.18,"free":3568.15},{"epoch":26112344,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.8,"free":3568.54},{"epoch":26112345,"idl":99.68,"recv":0,"send":0,"writ":0.28,"used":506.57,"free":3568.79},{"epoch":26112346,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":506.69,"free":3568.66},{"epoch":26112347,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.71,"free":3568.64},{"epoch":26112348,"idl":99.72,"recv":0,"send":0,"writ":0.48,"used":507.16,"free":3568.18},{"epoch":26112349,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":507.16,"free":3568.18},{"epoch":26112350,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":506.66,"free":3568.69},{"epoch":26112351,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.63,"free":3568.72},{"epoch":26112352,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.62,"free":3568.73},{"epoch":26112353,"idl":99.71,"recv":0,"send":0,"writ":0.4,"used":507.28,"free":3568.06},{"epoch":26112354,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":506.82,"free":3568.52},{"epoch":26112355,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":506.59,"free":3568.76},{"epoch":26112356,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.56,"free":3568.8},{"epoch":26112357,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.55,"free":3568.81},{"epoch":26112358,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.68,"free":3568.68},{"epoch":26112359,"idl":99.65,"recv":0,"send":0,"writ":0.53,"used":507.51,"free":3567.85},{"epoch":26112360,"idl":99.58,"recv":0,"send":0,"writ":0.3,"used":506.94,"free":3568.43},{"epoch":26112361,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.93,"free":3568.44},{"epoch":26112362,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.9,"free":3568.47},{"epoch":26112363,"idl":99.8,"recv":0.01,"send":0.06,"writ":0.15,"used":506.94,"free":3568.42},{"epoch":26112364,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":507.25,"free":3568.11},{"epoch":26112365,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":505.69,"free":3569.68},{"epoch":26112366,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":505.66,"free":3569.71},{"epoch":26112367,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":505.63,"free":3569.73},{"epoch":26112368,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":505.6,"free":3569.75},{"epoch":26112369,"idl":99.5,"recv":0,"send":0,"writ":0.7,"used":507.58,"free":3567.75},{"epoch":26112370,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":506.56,"free":3568.79},{"epoch":26112371,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.54,"free":3568.81},{"epoch":26112372,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":506.55,"free":3568.79},{"epoch":26112373,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.69,"free":3568.65},{"epoch":26112374,"idl":99.64,"recv":0,"send":0,"writ":0.54,"used":507.29,"free":3568.04},{"epoch":26112375,"idl":99.65,"recv":0,"send":0,"writ":0.33,"used":505.95,"free":3569.4},{"epoch":26112376,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":505.87,"free":3569.47},{"epoch":26112377,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.08,"free":3569.26},{"epoch":26112378,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.07,"free":3569.26},{"epoch":26112379,"idl":99.69,"recv":0,"send":0,"writ":0.49,"used":506.81,"free":3568.52},{"epoch":26112380,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":506.8,"free":3568.55},{"epoch":26112381,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.76,"free":3568.58},{"epoch":26112382,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.9,"free":3568.44},{"epoch":26112383,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":506.91,"free":3568.43},{"epoch":26112384,"idl":99.76,"recv":0,"send":0,"writ":0.49,"used":507.34,"free":3567.99},{"epoch":26112385,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":506.9,"free":3568.45},{"epoch":26112386,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.87,"free":3568.47},{"epoch":26112387,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.85,"free":3568.49},{"epoch":26112388,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":506.77,"free":3568.56},{"epoch":26112389,"idl":99.73,"recv":0,"send":0,"writ":0.48,"used":506.27,"free":3569.07},{"epoch":26112390,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":506.04,"free":3569.31},{"epoch":26112391,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.08,"free":3569.27},{"epoch":26112392,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.17,"free":3569.17},{"epoch":26112393,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.16,"free":3569.17},{"epoch":26112394,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":506.55,"free":3568.78},{"epoch":26112395,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":506.39,"free":3568.95},{"epoch":26112396,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":506.36,"free":3568.98},{"epoch":26112397,"idl":99.83,"recv":0,"send":0,"writ":0.12,"used":506.34,"free":3569},{"epoch":26112398,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.31,"free":3569.02},{"epoch":26112399,"idl":99.54,"recv":0,"send":0,"writ":0.7,"used":506.91,"free":3568.4},{"epoch":26112400,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":506.79,"free":3568.54},{"epoch":26112401,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.76,"free":3568.57},{"epoch":26112402,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.83,"free":3568.49},{"epoch":26112403,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.94,"free":3568.38},{"epoch":26112404,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.93,"free":3568.4},{"epoch":26112405,"idl":99.61,"recv":0,"send":0,"writ":0.67,"used":507.13,"free":3568.22},{"epoch":26112406,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.67,"free":3568.68},{"epoch":26112407,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.63,"free":3568.71},{"epoch":26112408,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.63,"free":3568.71},{"epoch":26112409,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.59,"free":3568.74},{"epoch":26112410,"idl":94.74,"recv":0.33,"send":0.01,"writ":261.16,"used":520.91,"free":3555.12},{"epoch":26112411,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":508.8,"free":3566.36},{"epoch":26112412,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":508.78,"free":3566.37},{"epoch":26112413,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":508.9,"free":3566.25},{"epoch":26112414,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":508.92,"free":3566.22},{"epoch":26112415,"idl":99.59,"recv":0,"send":0,"writ":0.76,"used":507.49,"free":3567.69},{"epoch":26112416,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":505.52,"free":3569.67},{"epoch":26112417,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":505.49,"free":3569.69},{"epoch":26112418,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.46,"free":3569.72},{"epoch":26112419,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":505.45,"free":3569.73},{"epoch":26112420,"idl":99.31,"recv":0,"send":0,"writ":0.55,"used":506.35,"free":3568.85},{"epoch":26112421,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":506.42,"free":3568.81},{"epoch":26112422,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.39,"free":3568.83},{"epoch":26112423,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.38,"free":3568.83},{"epoch":26112424,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.35,"free":3568.86},{"epoch":26112425,"idl":99.52,"recv":0,"send":0,"writ":0.71,"used":506.49,"free":3568.73},{"epoch":26112426,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":506.51,"free":3568.71},{"epoch":26112427,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.48,"free":3568.74},{"epoch":26112428,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.46,"free":3568.74},{"epoch":26112429,"idl":99.8,"recv":0,"send":0,"writ":0.26,"used":506.68,"free":3568.5},{"epoch":26112430,"idl":99.7,"recv":0,"send":0,"writ":0.44,"used":507.04,"free":3568.17},{"epoch":26112431,"idl":99.88,"recv":0,"send":0,"writ":0.42,"used":506.67,"free":3568.53},{"epoch":26112432,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.64,"free":3568.56},{"epoch":26112433,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.62,"free":3568.57},{"epoch":26112434,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":506.6,"free":3568.61},{"epoch":26112435,"idl":99.64,"recv":0,"send":0,"writ":0.47,"used":507.36,"free":3567.86},{"epoch":26112436,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":507.01,"free":3568.21},{"epoch":26112437,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":506.99,"free":3568.23},{"epoch":26112438,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.97,"free":3568.24},{"epoch":26112439,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.94,"free":3568.27},{"epoch":26112440,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":506.71,"free":3568.51},{"epoch":26112441,"idl":99.74,"recv":0,"send":0,"writ":0.58,"used":507.34,"free":3567.88},{"epoch":26112442,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.66,"free":3568.55},{"epoch":26112443,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.63,"free":3568.59},{"epoch":26112444,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":506.13,"free":3569.08},{"epoch":26112445,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":506.37,"free":3568.85},{"epoch":26112446,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":507.06,"free":3568.16},{"epoch":26112447,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.79,"free":3568.42},{"epoch":26112448,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.77,"free":3568.44},{"epoch":26112449,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.75,"free":3568.45},{"epoch":26112450,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":506.51,"free":3568.72},{"epoch":26112451,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":507.01,"free":3568.21},{"epoch":26112452,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.72,"free":3568.5},{"epoch":26112453,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.7,"free":3568.52},{"epoch":26112454,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.67,"free":3568.54},{"epoch":26112455,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":505.7,"free":3569.52},{"epoch":26112456,"idl":99.78,"recv":0,"send":0,"writ":0.45,"used":506.9,"free":3568.31},{"epoch":26112457,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":506.79,"free":3568.42},{"epoch":26112458,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":506.77,"free":3568.43},{"epoch":26112459,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":506.5,"free":3568.68},{"epoch":26112460,"idl":98.41,"recv":0,"send":0,"writ":0.31,"used":506.04,"free":3569.16},{"epoch":26112461,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":506.49,"free":3568.7},{"epoch":26112462,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":506.47,"free":3568.72},{"epoch":26112463,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.44,"free":3568.75},{"epoch":26112464,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.43,"free":3568.77},{"epoch":26112465,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":506.43,"free":3568.79},{"epoch":26112466,"idl":99.75,"recv":0,"send":0,"writ":0.45,"used":506.85,"free":3568.37},{"epoch":26112467,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":506.63,"free":3568.58},{"epoch":26112468,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.62,"free":3568.59},{"epoch":26112469,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.72,"free":3568.48},{"epoch":26112470,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":507.04,"free":3568.18},{"epoch":26112471,"idl":99.75,"recv":0,"send":0,"writ":0.4,"used":507.33,"free":3567.89},{"epoch":26112472,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":506.75,"free":3568.46},{"epoch":26112473,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.73,"free":3568.48},{"epoch":26112474,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":506.71,"free":3568.49},{"epoch":26112475,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":506.73,"free":3568.5},{"epoch":26112476,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":506.69,"free":3568.52},{"epoch":26112477,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":506.42,"free":3568.79},{"epoch":26112478,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.92,"free":3569.29},{"epoch":26112479,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":505.91,"free":3569.3},{"epoch":26112480,"idl":99.67,"recv":0,"send":0,"writ":0.27,"used":506.87,"free":3568.35},{"epoch":26112481,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.89,"free":3568.32},{"epoch":26112482,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":507.38,"free":3567.83},{"epoch":26112483,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507,"free":3568.21},{"epoch":26112484,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.99,"free":3568.21},{"epoch":26112485,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":506.75,"free":3568.47},{"epoch":26112486,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.73,"free":3568.49},{"epoch":26112487,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":506.32,"free":3568.89},{"epoch":26112488,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.69,"free":3569.52},{"epoch":26112489,"idl":99.79,"recv":0,"send":0,"writ":0.26,"used":506.9,"free":3568.28},{"epoch":26112490,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":507.17,"free":3568.03},{"epoch":26112491,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.12,"free":3568.08},{"epoch":26112492,"idl":99.73,"recv":0,"send":0,"writ":0.46,"used":507.34,"free":3567.86},{"epoch":26112493,"idl":99.88,"recv":0,"send":0,"writ":0.23,"used":506.77,"free":3568.42},{"epoch":26112494,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":506.75,"free":3568.47},{"epoch":26112495,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":507,"free":3568.24},{"epoch":26112496,"idl":99.86,"recv":0,"send":0,"writ":0.12,"used":506.98,"free":3568.25},{"epoch":26112497,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":507.32,"free":3567.91},{"epoch":26112498,"idl":99.88,"recv":0,"send":0,"writ":0.23,"used":506.94,"free":3568.29},{"epoch":26112499,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.91,"free":3568.31},{"epoch":26112500,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":506.92,"free":3568.33},{"epoch":26112501,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.89,"free":3568.36},{"epoch":26112502,"idl":99.74,"recv":0,"send":0,"writ":0.45,"used":507.23,"free":3568.01},{"epoch":26112503,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":506.84,"free":3568.39},{"epoch":26112504,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":506.78,"free":3568.45},{"epoch":26112505,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":506.53,"free":3568.72},{"epoch":26112506,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.51,"free":3568.73},{"epoch":26112507,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":507.13,"free":3568.11},{"epoch":26112508,"idl":99.92,"recv":0,"send":0,"writ":0.28,"used":506.72,"free":3568.52},{"epoch":26112509,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.69,"free":3568.54},{"epoch":26112510,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":506.94,"free":3568.31},{"epoch":26112511,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.91,"free":3568.33},{"epoch":26112512,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":507.26,"free":3567.98},{"epoch":26112513,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":506.87,"free":3568.36},{"epoch":26112514,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.86,"free":3568.37},{"epoch":26112515,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":507.09,"free":3568.15},{"epoch":26112516,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.23,"free":3568.01},{"epoch":26112517,"idl":98.96,"recv":0,"send":0,"writ":0.4,"used":507.59,"free":3567.64},{"epoch":26112518,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":507.23,"free":3568},{"epoch":26112519,"idl":99.59,"recv":0,"send":0,"writ":0.3,"used":507.2,"free":3568.01},{"epoch":26112520,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":505.51,"free":3569.71},{"epoch":26112521,"idl":99.67,"recv":0,"send":0,"writ":0.16,"used":505.46,"free":3569.76},{"epoch":26112522,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":505.43,"free":3569.79},{"epoch":26112523,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":507.71,"free":3567.51},{"epoch":26112524,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":507.11,"free":3568.13},{"epoch":26112525,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":506.88,"free":3568.38},{"epoch":26112526,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":506.84,"free":3568.41},{"epoch":26112527,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":506.92,"free":3568.32},{"epoch":26112528,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":507.56,"free":3567.68},{"epoch":26112529,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.26,"free":3567.98},{"epoch":26112530,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":507.5,"free":3567.76},{"epoch":26112531,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.49,"free":3567.76},{"epoch":26112532,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.46,"free":3567.79},{"epoch":26112533,"idl":99.58,"recv":0,"send":0,"writ":0.55,"used":507.8,"free":3567.44},{"epoch":26112534,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.42,"free":3567.82},{"epoch":26112535,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":507.43,"free":3567.82},{"epoch":26112536,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.4,"free":3567.85},{"epoch":26112537,"idl":99.71,"recv":0.01,"send":0.87,"writ":0.21,"used":507.41,"free":3567.83},{"epoch":26112538,"idl":99.67,"recv":0,"send":0,"writ":0.46,"used":507.62,"free":3567.62},{"epoch":26112539,"idl":99.8,"recv":0,"send":0,"writ":0.24,"used":507.13,"free":3568.1},{"epoch":26112540,"idl":99.51,"recv":0,"send":0,"writ":0.29,"used":506.42,"free":3568.83},{"epoch":26112541,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":506.37,"free":3568.87},{"epoch":26112542,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":506.41,"free":3568.83},{"epoch":26112543,"idl":99.63,"recv":0,"send":0,"writ":0.58,"used":507.41,"free":3567.82},{"epoch":26112544,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":506.75,"free":3568.48},{"epoch":26112545,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":506.74,"free":3568.51},{"epoch":26112546,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":506.72,"free":3568.53},{"epoch":26112547,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":506.7,"free":3568.54},{"epoch":26112548,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":507.06,"free":3568.18},{"epoch":26112549,"idl":99.59,"recv":0,"send":0,"writ":0.27,"used":505.68,"free":3569.53},{"epoch":26112550,"idl":99.67,"recv":0,"send":0,"writ":0.33,"used":506.14,"free":3569.09},{"epoch":26112551,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":506.13,"free":3569.09},{"epoch":26112552,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":506.11,"free":3569.11},{"epoch":26112553,"idl":99.66,"recv":0,"send":0,"writ":0.39,"used":506.51,"free":3568.7},{"epoch":26112554,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":506.49,"free":3568.71},{"epoch":26112555,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":506.72,"free":3568.5},{"epoch":26112556,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":506.7,"free":3568.52},{"epoch":26112557,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":506.68,"free":3568.54},{"epoch":26112558,"idl":99.58,"recv":0,"send":0,"writ":0.33,"used":507.01,"free":3568.21},{"epoch":26112559,"idl":99.79,"recv":0,"send":0,"writ":0.42,"used":506.62,"free":3568.58},{"epoch":26112560,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":506.64,"free":3568.59},{"epoch":26112561,"idl":99.76,"recv":0,"send":0,"writ":0.13,"used":506.6,"free":3568.62},{"epoch":26112562,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":506.59,"free":3568.63},{"epoch":26112563,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":506.62,"free":3568.59},{"epoch":26112564,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":507.09,"free":3568.12},{"epoch":26112565,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":506.73,"free":3568.49},{"epoch":26112566,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.72,"free":3568.5},{"epoch":26112567,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.69,"free":3568.52},{"epoch":26112568,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":506.68,"free":3568.53},{"epoch":26112569,"idl":99.64,"recv":0,"send":0,"writ":0.61,"used":507.41,"free":3567.8},{"epoch":26112570,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":506.66,"free":3568.55},{"epoch":26112571,"idl":99.8,"recv":0,"send":0.01,"writ":0.18,"used":506.61,"free":3568.61},{"epoch":26112572,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":506.59,"free":3568.62},{"epoch":26112573,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.56,"free":3568.65},{"epoch":26112574,"idl":99.62,"recv":0,"send":0,"writ":0.5,"used":507.17,"free":3568.03},{"epoch":26112575,"idl":99.66,"recv":0,"send":0,"writ":0.41,"used":506.97,"free":3568.24},{"epoch":26112576,"idl":99.73,"recv":0,"send":0,"writ":0.12,"used":506.96,"free":3568.25},{"epoch":26112577,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":506.92,"free":3568.28},{"epoch":26112578,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":506.89,"free":3568.31},{"epoch":26112579,"idl":99.35,"recv":0,"send":0,"writ":0.68,"used":506.98,"free":3568.2},{"epoch":26112580,"idl":99.61,"recv":0,"send":0,"writ":0.36,"used":505.91,"free":3569.28},{"epoch":26112581,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":505.87,"free":3569.31},{"epoch":26112582,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":505.85,"free":3569.33},{"epoch":26112583,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.84,"free":3569.34},{"epoch":26112584,"idl":99.65,"recv":0,"send":0,"writ":0.42,"used":506.46,"free":3568.73},{"epoch":26112585,"idl":99.62,"recv":0,"send":0,"writ":0.43,"used":506.47,"free":3568.73},{"epoch":26112586,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":506.48,"free":3568.73},{"epoch":26112587,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":506.45,"free":3568.75},{"epoch":26112588,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.43,"free":3568.76},{"epoch":26112589,"idl":99.63,"recv":0,"send":0,"writ":0.5,"used":506.96,"free":3568.23},{"epoch":26112590,"idl":99.73,"recv":0,"send":0,"writ":0.36,"used":506.86,"free":3568.34},{"epoch":26112591,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":506.87,"free":3568.33},{"epoch":26112592,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":506.86,"free":3568.33},{"epoch":26112593,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.83,"free":3568.36},{"epoch":26112594,"idl":99.63,"recv":0,"send":0,"writ":0.37,"used":507.32,"free":3567.87},{"epoch":26112595,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":506.58,"free":3568.64},{"epoch":26112596,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":506.62,"free":3568.6},{"epoch":26112597,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":506.74,"free":3568.47},{"epoch":26112598,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.73,"free":3568.48},{"epoch":26112599,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.7,"free":3568.5},{"epoch":26112600,"idl":99.46,"recv":0,"send":0,"writ":0.68,"used":507.27,"free":3567.95},{"epoch":26112601,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":506.93,"free":3568.29},{"epoch":26112602,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.9,"free":3568.31},{"epoch":26112603,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.89,"free":3568.32},{"epoch":26112604,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.86,"free":3568.34},{"epoch":26112605,"idl":99.56,"recv":0,"send":0,"writ":0.69,"used":507.39,"free":3567.83},{"epoch":26112606,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":507.08,"free":3568.13},{"epoch":26112607,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":507.12,"free":3568.09},{"epoch":26112608,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.23,"free":3567.98},{"epoch":26112609,"idl":99.66,"recv":0,"send":0,"writ":0.28,"used":506.19,"free":3569},{"epoch":26112610,"idl":99.56,"recv":0,"send":0,"writ":0.71,"used":507.21,"free":3567.99},{"epoch":26112611,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":506.89,"free":3568.31},{"epoch":26112612,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.88,"free":3568.31},{"epoch":26112613,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.85,"free":3568.34},{"epoch":26112614,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":506.82,"free":3568.36},{"epoch":26112615,"idl":99.44,"recv":0,"send":0,"writ":0.69,"used":506.73,"free":3568.47},{"epoch":26112616,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":506.62,"free":3568.58},{"epoch":26112617,"idl":99.75,"recv":0,"send":0,"writ":0.22,"used":506.72,"free":3568.47},{"epoch":26112618,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.69,"free":3568.49},{"epoch":26112619,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":506.68,"free":3568.5},{"epoch":26112620,"idl":99.47,"recv":0,"send":0,"writ":0.69,"used":506.48,"free":3568.71},{"epoch":26112621,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":506.66,"free":3568.54},{"epoch":26112622,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.63,"free":3568.55},{"epoch":26112623,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":506.61,"free":3568.58},{"epoch":26112624,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.17,"free":3569.01},{"epoch":26112625,"idl":99.5,"recv":0,"send":0,"writ":0.55,"used":506.91,"free":3568.28},{"epoch":26112626,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":506.33,"free":3568.86},{"epoch":26112627,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":506.31,"free":3568.88},{"epoch":26112628,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":506.43,"free":3568.75},{"epoch":26112629,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":506.45,"free":3568.73},{"epoch":26112630,"idl":99.51,"recv":0,"send":0,"writ":0.46,"used":506.82,"free":3568.37},{"epoch":26112631,"idl":99.71,"recv":0,"send":0,"writ":0.38,"used":507.18,"free":3568.01},{"epoch":26112632,"idl":99.68,"recv":0,"send":0,"writ":0.18,"used":507.15,"free":3568.03},{"epoch":26112633,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":507.12,"free":3568.06},{"epoch":26112634,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.11,"free":3568.07},{"epoch":26112635,"idl":99.54,"recv":0,"send":0,"writ":0.48,"used":507.21,"free":3567.98},{"epoch":26112636,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":507.33,"free":3567.85},{"epoch":26112637,"idl":99.77,"recv":0,"send":0,"writ":0.13,"used":507.3,"free":3567.88},{"epoch":26112638,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":507.29,"free":3567.88},{"epoch":26112639,"idl":99.69,"recv":0,"send":0,"writ":0.27,"used":507.04,"free":3568.12},{"epoch":26112640,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":506.24,"free":3568.93},{"epoch":26112641,"idl":99.61,"recv":0,"send":0,"writ":0.56,"used":506.48,"free":3568.71},{"epoch":26112642,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":505.7,"free":3569.48},{"epoch":26112643,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":505.66,"free":3569.51},{"epoch":26112644,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.63,"free":3569.54},{"epoch":26112645,"idl":99.66,"recv":0,"send":0,"writ":0.31,"used":506.14,"free":3569.05},{"epoch":26112646,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":507.12,"free":3568.06},{"epoch":26112647,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.08,"free":3568.1},{"epoch":26112648,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":507.05,"free":3568.13},{"epoch":26112649,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.04,"free":3568.14},{"epoch":26112650,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":507.11,"free":3568.07},{"epoch":26112651,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":507.54,"free":3567.65},{"epoch":26112652,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":507.18,"free":3568},{"epoch":26112653,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":507.15,"free":3568.03},{"epoch":26112654,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.14,"free":3568.04},{"epoch":26112655,"idl":99.68,"recv":0,"send":0,"writ":0.33,"used":506.16,"free":3569.03},{"epoch":26112656,"idl":99.62,"recv":0,"send":0,"writ":0.52,"used":507.33,"free":3567.86},{"epoch":26112657,"idl":99.75,"recv":0,"send":0,"writ":0.2,"used":507.09,"free":3568.09},{"epoch":26112658,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.08,"free":3568.09},{"epoch":26112659,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.17,"used":507.12,"free":3568.05},{"epoch":26112660,"idl":99.13,"recv":0,"send":0,"writ":0.29,"used":507.46,"free":3567.73},{"epoch":26112661,"idl":99.55,"recv":0,"send":0,"writ":0.51,"used":507.65,"free":3567.53},{"epoch":26112662,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":507.1,"free":3568.07},{"epoch":26112663,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":507.07,"free":3568.09},{"epoch":26112664,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":507.04,"free":3568.12},{"epoch":26112665,"idl":99.63,"recv":0,"send":0,"writ":0.31,"used":507.05,"free":3568.13},{"epoch":26112666,"idl":99.63,"recv":0,"send":0,"writ":0.57,"used":507.38,"free":3567.79},{"epoch":26112667,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.06,"free":3568.11},{"epoch":26112668,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.2,"free":3567.96},{"epoch":26112669,"idl":99.52,"recv":0,"send":0,"writ":0.27,"used":507.19,"free":3567.95},{"epoch":26112670,"idl":99.63,"recv":0,"send":0,"writ":0.3,"used":507.66,"free":3567.5},{"epoch":26112671,"idl":99.68,"recv":0,"send":0,"writ":0.42,"used":508.32,"free":3566.83},{"epoch":26112672,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":507.14,"free":3568.01},{"epoch":26112673,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.13,"free":3568.01},{"epoch":26112674,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":507.11,"free":3568.05},{"epoch":26112675,"idl":99.63,"recv":0,"send":0,"writ":0.4,"used":507.1,"free":3568.08},{"epoch":26112676,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":507.08,"free":3568.09},{"epoch":26112677,"idl":99.43,"recv":0,"send":0,"writ":0.63,"used":507.42,"free":3567.74},{"epoch":26112678,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":507.04,"free":3568.12},{"epoch":26112679,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":507.1,"free":3568.06},{"epoch":26112680,"idl":99.6,"recv":0,"send":0,"writ":0.31,"used":505.76,"free":3569.41},{"epoch":26112681,"idl":99.7,"recv":0,"send":0,"writ":0.18,"used":505.7,"free":3569.47},{"epoch":26112682,"idl":99.62,"recv":0,"send":0,"writ":0.57,"used":507.72,"free":3567.45},{"epoch":26112683,"idl":99.69,"recv":0,"send":0,"writ":0.17,"used":507.39,"free":3567.77},{"epoch":26112684,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":506.99,"free":3568.17},{"epoch":26112685,"idl":99.67,"recv":0,"send":0,"writ":0.38,"used":506.88,"free":3568.29},{"epoch":26112686,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":506.86,"free":3568.31},{"epoch":26112687,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":507.38,"free":3567.78},{"epoch":26112688,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":507.07,"free":3568.09},{"epoch":26112689,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":507.04,"free":3568.12},{"epoch":26112690,"idl":99.68,"recv":0,"send":0,"writ":0.33,"used":507.32,"free":3567.85},{"epoch":26112691,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":507.46,"free":3567.71},{"epoch":26112692,"idl":99.49,"recv":0,"send":0,"writ":0.57,"used":507.83,"free":3567.34},{"epoch":26112693,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.41,"free":3567.75},{"epoch":26112694,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":507.38,"free":3567.77},{"epoch":26112695,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":507.4,"free":3567.77},{"epoch":26112696,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.37,"free":3567.8},{"epoch":26112697,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":507.71,"free":3567.45},{"epoch":26112698,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.34,"free":3567.82},{"epoch":26112699,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":507.03,"free":3568.1},{"epoch":26112700,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":505.36,"free":3569.79},{"epoch":26112701,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":505.31,"free":3569.83},{"epoch":26112702,"idl":99.77,"recv":0,"send":0,"writ":0.43,"used":506.08,"free":3569.05},{"epoch":26112703,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":506.42,"free":3568.71},{"epoch":26112704,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.4,"free":3568.75},{"epoch":26112705,"idl":99.64,"recv":0.01,"send":0.01,"writ":0.31,"used":505.2,"free":3569.97},{"epoch":26112706,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":505.17,"free":3570},{"epoch":26112707,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":505.89,"free":3569.27},{"epoch":26112708,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":506.11,"free":3569.05},{"epoch":26112709,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.08,"free":3569.07},{"epoch":26112710,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":506.81,"free":3568.35},{"epoch":26112711,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.79,"free":3568.37},{"epoch":26112712,"idl":99.73,"recv":0,"send":0,"writ":0.42,"used":507.15,"free":3568.01},{"epoch":26112713,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":506.75,"free":3568.4},{"epoch":26112714,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.82,"free":3568.33},{"epoch":26112715,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":506.92,"free":3568.25},{"epoch":26112716,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.9,"free":3568.27},{"epoch":26112717,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":507.25,"free":3567.9},{"epoch":26112718,"idl":99.87,"recv":0,"send":0,"writ":0.45,"used":507.11,"free":3568.04},{"epoch":26112719,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.09,"free":3568.06},{"epoch":26112720,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":507.09,"free":3568.08},{"epoch":26112721,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.07,"free":3568.09},{"epoch":26112722,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.05,"free":3568.1},{"epoch":26112723,"idl":99.72,"recv":0,"send":0,"writ":0.72,"used":507.34,"free":3567.82},{"epoch":26112724,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":506.78,"free":3568.37},{"epoch":26112725,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":506.77,"free":3568.39},{"epoch":26112726,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.87,"free":3568.29},{"epoch":26112727,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.91,"free":3568.25},{"epoch":26112728,"idl":99.66,"recv":0,"send":0,"writ":0.58,"used":507.25,"free":3567.89},{"epoch":26112729,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":507.11,"free":3568.01},{"epoch":26112730,"idl":99.68,"recv":0,"send":0,"writ":0.34,"used":506.38,"free":3568.75},{"epoch":26112731,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":506.35,"free":3568.79},{"epoch":26112732,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.33,"free":3568.8},{"epoch":26112733,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":506.84,"free":3568.28},{"epoch":26112734,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.52,"free":3568.63},{"epoch":26112735,"idl":99.6,"recv":0,"send":0,"writ":0.35,"used":506.14,"free":3569.03},{"epoch":26112736,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":506.01,"free":3569.16},{"epoch":26112737,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":506.32,"free":3568.84},{"epoch":26112738,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":507.45,"free":3567.71},{"epoch":26112739,"idl":99.47,"recv":0,"send":0,"writ":0.55,"used":507.2,"free":3567.94},{"epoch":26112740,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":506.44,"free":3568.71},{"epoch":26112741,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.41,"free":3568.74},{"epoch":26112742,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":506.38,"free":3568.77},{"epoch":26112743,"idl":99.7,"recv":0,"send":0,"writ":0.42,"used":506.96,"free":3568.18},{"epoch":26112744,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":506.66,"free":3568.5},{"epoch":26112745,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":505.89,"free":3569.3},{"epoch":26112746,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":505.84,"free":3569.35},{"epoch":26112747,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":505.83,"free":3569.36},{"epoch":26112748,"idl":99.74,"recv":0,"send":0,"writ":0.5,"used":506.35,"free":3568.83},{"epoch":26112749,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":506.28,"free":3568.89},{"epoch":26112750,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":507.14,"free":3568.05},{"epoch":26112751,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.19,"free":3568},{"epoch":26112752,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.16,"free":3568.03},{"epoch":26112753,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":507.45,"free":3567.73},{"epoch":26112754,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.86,"free":3568.31},{"epoch":26112755,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":506.88,"free":3568.31},{"epoch":26112756,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.85,"free":3568.33},{"epoch":26112757,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.83,"free":3568.34},{"epoch":26112758,"idl":99.73,"recv":0,"send":0,"writ":0.37,"used":507.57,"free":3567.6},{"epoch":26112759,"idl":99.79,"recv":0,"send":0,"writ":0.52,"used":507.01,"free":3568.13},{"epoch":26112760,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":507.25,"free":3567.9},{"epoch":26112761,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.27,"free":3567.88},{"epoch":26112762,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.4,"free":3567.74},{"epoch":26112763,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.38,"free":3567.75},{"epoch":26112764,"idl":99.76,"recv":0,"send":0,"writ":0.61,"used":507.79,"free":3567.34},{"epoch":26112765,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":506.88,"free":3568.27},{"epoch":26112766,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":506.85,"free":3568.3},{"epoch":26112767,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":506.82,"free":3568.32},{"epoch":26112768,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":506.78,"free":3568.35},{"epoch":26112769,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":507.41,"free":3567.73},{"epoch":26112770,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":507.02,"free":3568.13},{"epoch":26112771,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.99,"free":3568.15},{"epoch":26112772,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.11,"free":3568.03},{"epoch":26112773,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.14,"free":3568},{"epoch":26112774,"idl":95.12,"recv":0.32,"send":0.01,"writ":79.59,"used":521.81,"free":3554.28},{"epoch":26112775,"idl":99.57,"recv":0,"send":0,"writ":182.22,"used":509.65,"free":3565.32},{"epoch":26112776,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":509.65,"free":3565.32},{"epoch":26112777,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":509.62,"free":3565.34},{"epoch":26112778,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":509.61,"free":3565.35},{"epoch":26112779,"idl":99.77,"recv":0,"send":0,"writ":0.63,"used":509,"free":3565.98},{"epoch":26112780,"idl":99.53,"recv":0,"send":0,"writ":0.37,"used":506.29,"free":3568.74},{"epoch":26112781,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.18,"free":3568.85},{"epoch":26112782,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":506.3,"free":3568.73},{"epoch":26112783,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.32,"free":3568.7},{"epoch":26112784,"idl":99.73,"recv":0,"send":0,"writ":0.45,"used":506.99,"free":3568.03},{"epoch":26112785,"idl":99.78,"recv":0,"send":0,"writ":0.46,"used":507.26,"free":3567.78},{"epoch":26112786,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.24,"free":3567.8},{"epoch":26112787,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.21,"free":3567.82},{"epoch":26112788,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.2,"free":3567.83},{"epoch":26112789,"idl":99.57,"recv":0,"send":0,"writ":0.5,"used":507.54,"free":3567.48},{"epoch":26112790,"idl":99.71,"recv":0,"send":0,"writ":0.47,"used":506.95,"free":3568.1},{"epoch":26112791,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.92,"free":3568.13},{"epoch":26112792,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":506.94,"free":3568.1},{"epoch":26112793,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.06,"free":3567.98},{"epoch":26112794,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":507.41,"free":3567.63},{"epoch":26112795,"idl":99.84,"recv":0,"send":0,"writ":0.58,"used":507.05,"free":3568},{"epoch":26112796,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.03,"free":3568.02},{"epoch":26112797,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":507,"free":3568.04},{"epoch":26112798,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.99,"free":3568.05},{"epoch":26112799,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.96,"free":3568.07},{"epoch":26112800,"idl":99.62,"recv":0,"send":0,"writ":0.73,"used":507.92,"free":3567.12},{"epoch":26112801,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":507.19,"free":3567.86},{"epoch":26112802,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.16,"free":3567.88},{"epoch":26112803,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.14,"free":3567.89},{"epoch":26112804,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":507.08,"free":3567.94},{"epoch":26112805,"idl":99.61,"recv":0,"send":0,"writ":0.76,"used":507.96,"free":3567.09},{"epoch":26112806,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":507.28,"free":3567.76},{"epoch":26112807,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.25,"free":3567.79},{"epoch":26112808,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":507.24,"free":3567.8},{"epoch":26112809,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.2,"free":3567.82},{"epoch":26112810,"idl":99.53,"recv":0,"send":0,"writ":0.63,"used":507.93,"free":3567.12},{"epoch":26112811,"idl":99.88,"recv":0,"send":0,"writ":0.23,"used":507.43,"free":3567.61},{"epoch":26112812,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":507.42,"free":3567.62},{"epoch":26112813,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.39,"free":3567.64},{"epoch":26112814,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":507.38,"free":3567.65},{"epoch":26112815,"idl":99.51,"recv":0,"send":0,"writ":0.73,"used":507.6,"free":3567.44},{"epoch":26112816,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":507.05,"free":3568},{"epoch":26112817,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.02,"free":3568.01},{"epoch":26112818,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.99,"free":3568.04},{"epoch":26112819,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":507.22,"free":3567.81},{"epoch":26112820,"idl":99.62,"recv":0,"send":0,"writ":0.72,"used":508,"free":3567.04},{"epoch":26112821,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":507.45,"free":3567.59},{"epoch":26112822,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.42,"free":3567.62},{"epoch":26112823,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.39,"free":3567.64},{"epoch":26112824,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":507.38,"free":3567.66},{"epoch":26112825,"idl":99.56,"recv":0,"send":0,"writ":0.61,"used":506.75,"free":3568.31},{"epoch":26112826,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":507.3,"free":3567.76},{"epoch":26112827,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.28,"free":3567.78},{"epoch":26112828,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.26,"free":3567.79},{"epoch":26112829,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.24,"free":3567.81},{"epoch":26112830,"idl":99.61,"recv":0,"send":0,"writ":0.45,"used":507.36,"free":3567.7},{"epoch":26112831,"idl":99.87,"recv":0,"send":0,"writ":0.4,"used":507.46,"free":3567.59},{"epoch":26112832,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.43,"free":3567.62},{"epoch":26112833,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.42,"free":3567.63},{"epoch":26112834,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":507.39,"free":3567.65},{"epoch":26112835,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":506.92,"free":3568.14},{"epoch":26112836,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":507.69,"free":3567.36},{"epoch":26112837,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":507.18,"free":3567.87},{"epoch":26112838,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.28,"free":3567.77},{"epoch":26112839,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":507.26,"free":3567.78},{"epoch":26112840,"idl":99.56,"recv":0,"send":0,"writ":0.31,"used":507.5,"free":3567.56},{"epoch":26112841,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":507.93,"free":3567.12},{"epoch":26112842,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.46,"free":3567.59},{"epoch":26112843,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.45,"free":3567.59},{"epoch":26112844,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":507.42,"free":3567.62},{"epoch":26112845,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":507.42,"free":3567.63},{"epoch":26112846,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":507.86,"free":3567.19},{"epoch":26112847,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.63,"free":3567.41},{"epoch":26112848,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.6,"free":3567.44},{"epoch":26112849,"idl":99.57,"recv":0,"send":0,"writ":0.28,"used":507.62,"free":3567.4},{"epoch":26112850,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":507.91,"free":3567.13},{"epoch":26112851,"idl":99.75,"recv":0,"send":0,"writ":0.49,"used":508.06,"free":3566.97},{"epoch":26112852,"idl":99.78,"recv":0,"send":0,"writ":0.21,"used":507.51,"free":3567.51},{"epoch":26112853,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.51,"free":3567.52},{"epoch":26112854,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.27,"free":3567.75},{"epoch":26112855,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":506.27,"free":3568.76},{"epoch":26112856,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":506.77,"free":3568.25},{"epoch":26112857,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":506.94,"free":3568.08},{"epoch":26112858,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.94,"free":3568.08},{"epoch":26112859,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.91,"free":3568.1},{"epoch":26112860,"idl":99.66,"recv":0,"send":0,"writ":0.31,"used":506.91,"free":3568.12},{"epoch":26112861,"idl":99.73,"recv":0,"send":0,"writ":0.5,"used":507.25,"free":3567.78},{"epoch":26112862,"idl":99.88,"recv":0,"send":0,"writ":0.23,"used":507.03,"free":3567.99},{"epoch":26112863,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":507.04,"free":3567.98},{"epoch":26112864,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":506.68,"free":3568.33},{"epoch":26112865,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":506.77,"free":3568.26},{"epoch":26112866,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.76,"free":3568.27},{"epoch":26112867,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":507.97,"free":3567.04},{"epoch":26112868,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.21,"free":3567.8},{"epoch":26112869,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":507.18,"free":3567.82},{"epoch":26112870,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":506.96,"free":3568.07},{"epoch":26112871,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.92,"free":3568.1},{"epoch":26112872,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":507.49,"free":3567.53},{"epoch":26112873,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.88,"free":3568.13},{"epoch":26112874,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.88,"free":3568.13},{"epoch":26112875,"idl":99.78,"recv":0,"send":0,"writ":0.37,"used":506.71,"free":3568.32},{"epoch":26112876,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":506.8,"free":3568.22},{"epoch":26112877,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":507.49,"free":3567.53},{"epoch":26112878,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":507.25,"free":3567.77},{"epoch":26112879,"idl":99.2,"recv":0,"send":0,"writ":0.26,"used":507.22,"free":3567.77},{"epoch":26112880,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":507,"free":3568.01},{"epoch":26112881,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.96,"free":3568.05},{"epoch":26112882,"idl":98.96,"recv":0,"send":0,"writ":0.5,"used":507.32,"free":3567.68},{"epoch":26112883,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":506.92,"free":3568.08},{"epoch":26112884,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.91,"free":3568.08},{"epoch":26112885,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":507.14,"free":3567.86},{"epoch":26112886,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.14,"free":3567.86},{"epoch":26112887,"idl":99.72,"recv":0,"send":0,"writ":0.44,"used":507.51,"free":3567.48},{"epoch":26112888,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":507.27,"free":3567.71},{"epoch":26112889,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.24,"free":3567.74},{"epoch":26112890,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":507.26,"free":3567.72},{"epoch":26112891,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.21,"free":3567.77},{"epoch":26112892,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":507.53,"free":3567.45},{"epoch":26112893,"idl":99.88,"recv":0,"send":0,"writ":0.22,"used":507.17,"free":3567.8},{"epoch":26112894,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.14,"free":3567.83},{"epoch":26112895,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":507.4,"free":3567.59},{"epoch":26112896,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":507.38,"free":3567.61},{"epoch":26112897,"idl":99.68,"recv":0,"send":0,"writ":0.4,"used":507.68,"free":3567.31},{"epoch":26112898,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":507.09,"free":3567.88},{"epoch":26112899,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.27,"free":3567.71},{"epoch":26112900,"idl":99.43,"recv":0,"send":0,"writ":0.3,"used":506.54,"free":3568.45},{"epoch":26112901,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.5,"free":3568.49},{"epoch":26112902,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.47,"free":3568.52},{"epoch":26112903,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":507.6,"free":3567.39},{"epoch":26112904,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.93,"free":3568.06},{"epoch":26112905,"idl":99.75,"recv":0,"send":0,"writ":0.35,"used":507.19,"free":3567.82},{"epoch":26112906,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":507.16,"free":3567.84},{"epoch":26112907,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":507.15,"free":3567.85},{"epoch":26112908,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":507.64,"free":3567.36},{"epoch":26112909,"idl":99.7,"recv":0,"send":0,"writ":0.27,"used":506.62,"free":3568.36},{"epoch":26112910,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":507.64,"free":3567.35},{"epoch":26112911,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.75,"free":3567.24},{"epoch":26112912,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.74,"free":3567.25},{"epoch":26112913,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":507.76,"free":3567.22},{"epoch":26112914,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.21,"free":3567.78},{"epoch":26112915,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":506.72,"free":3568.29},{"epoch":26112916,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.7,"free":3568.31},{"epoch":26112917,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":506.43,"free":3568.59},{"epoch":26112918,"idl":99.68,"recv":0,"send":0,"writ":0.49,"used":506.98,"free":3568.04},{"epoch":26112919,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":506.87,"free":3568.14},{"epoch":26112920,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":507.41,"free":3567.61},{"epoch":26112921,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.34,"free":3567.68},{"epoch":26112922,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.5,"free":3567.52},{"epoch":26112923,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":507.73,"free":3567.29},{"epoch":26112924,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":506.93,"free":3568.08},{"epoch":26112925,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":506.74,"free":3568.29},{"epoch":26112926,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.73,"free":3568.3},{"epoch":26112927,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.7,"free":3568.32},{"epoch":26112928,"idl":99.79,"recv":0,"send":0,"writ":0.5,"used":507.26,"free":3567.75},{"epoch":26112929,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":507.4,"free":3567.61},{"epoch":26112930,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":507.41,"free":3567.62},{"epoch":26112931,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.39,"free":3567.64},{"epoch":26112932,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.37,"free":3567.65},{"epoch":26112933,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":507.71,"free":3567.31},{"epoch":26112934,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":507.33,"free":3567.68},{"epoch":26112935,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":507.5,"free":3567.52},{"epoch":26112936,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.53,"free":3567.49},{"epoch":26112937,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":507.51,"free":3567.5},{"epoch":26112938,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":507.49,"free":3567.52},{"epoch":26112939,"idl":99.57,"recv":0,"send":0,"writ":0.66,"used":508.16,"free":3566.83},{"epoch":26112940,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":507.7,"free":3567.3},{"epoch":26112941,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":507.67,"free":3567.32},{"epoch":26112942,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.66,"free":3567.33},{"epoch":26112943,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.63,"free":3567.36},{"epoch":26112944,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":507.91,"free":3567.09},{"epoch":26112945,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":507.61,"free":3567.41},{"epoch":26112946,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":507.63,"free":3567.38},{"epoch":26112947,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":507.76,"free":3567.25},{"epoch":26112948,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.75,"free":3567.26},{"epoch":26112949,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":508.07,"free":3566.93},{"epoch":26112950,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":507.01,"free":3568.01},{"epoch":26112951,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.97,"free":3568.05},{"epoch":26112952,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.96,"free":3568.05},{"epoch":26112953,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.93,"free":3568.08},{"epoch":26112954,"idl":99.76,"recv":0,"send":0,"writ":0.43,"used":507.6,"free":3567.4},{"epoch":26112955,"idl":99.67,"recv":0,"send":0,"writ":0.42,"used":506.53,"free":3568.5},{"epoch":26112956,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":506.41,"free":3568.61},{"epoch":26112957,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":506.38,"free":3568.63},{"epoch":26112958,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.37,"free":3568.64},{"epoch":26112959,"idl":99.74,"recv":0,"send":0,"writ":0.53,"used":507.06,"free":3567.94},{"epoch":26112960,"idl":99.66,"recv":0,"send":0,"writ":0.37,"used":507.52,"free":3567.5},{"epoch":26112961,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.51,"free":3567.51},{"epoch":26112962,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.48,"free":3567.53},{"epoch":26112963,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":507.47,"free":3567.54},{"epoch":26112964,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":507.86,"free":3567.14},{"epoch":26112965,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":507.7,"free":3567.32},{"epoch":26112966,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.67,"free":3567.35},{"epoch":26112967,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.66,"free":3567.36},{"epoch":26112968,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":507.63,"free":3567.38},{"epoch":26112969,"idl":99.64,"recv":0,"send":0,"writ":0.7,"used":508.31,"free":3566.68},{"epoch":26112970,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":507.61,"free":3567.39},{"epoch":26112971,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.75,"free":3567.25},{"epoch":26112972,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.74,"free":3567.25},{"epoch":26112973,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":507.73,"free":3567.26},{"epoch":26112974,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.7,"free":3567.29},{"epoch":26112975,"idl":99.43,"recv":0,"send":0,"writ":0.74,"used":508.05,"free":3566.95},{"epoch":26112976,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.67,"free":3567.32},{"epoch":26112977,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.65,"free":3567.33},{"epoch":26112978,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.63,"free":3567.36},{"epoch":26112979,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.61,"free":3567.37},{"epoch":26112980,"idl":99.53,"recv":0,"send":0,"writ":0.71,"used":507.74,"free":3567.26},{"epoch":26112981,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":507.35,"free":3567.64},{"epoch":26112982,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":507.38,"free":3567.61},{"epoch":26112983,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":507.5,"free":3567.49},{"epoch":26112984,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":507.33,"free":3567.65},{"epoch":26112985,"idl":99.67,"recv":0,"send":0,"writ":0.74,"used":507.63,"free":3567.37},{"epoch":26112986,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.21,"free":3567.79},{"epoch":26112987,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":507.18,"free":3567.81},{"epoch":26112988,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.17,"free":3567.82},{"epoch":26112989,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.13,"free":3567.84},{"epoch":26112990,"idl":99.6,"recv":0,"send":0,"writ":0.74,"used":508,"free":3567},{"epoch":26112991,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":507.62,"free":3567.38},{"epoch":26112992,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":507.61,"free":3567.4},{"epoch":26112993,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":507.58,"free":3567.43},{"epoch":26112994,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.71,"free":3567.29},{"epoch":26112995,"idl":99.53,"recv":0,"send":0,"writ":0.64,"used":507.82,"free":3567.2},{"epoch":26112996,"idl":99.86,"recv":0,"send":0,"writ":0.25,"used":507.98,"free":3567.03},{"epoch":26112997,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.95,"free":3567.06},{"epoch":26112998,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.94,"free":3567.06},{"epoch":26112999,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":507.92,"free":3567.06},{"epoch":26113000,"idl":98.46,"recv":0,"send":0,"writ":0.73,"used":508.25,"free":3566.74},{"epoch":26113001,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":507.64,"free":3567.35},{"epoch":26113002,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":507.62,"free":3567.36},{"epoch":26113003,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":507.59,"free":3567.39},{"epoch":26113004,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.4,"free":3567.6},{"epoch":26113005,"idl":99.65,"recv":0,"send":0,"writ":0.5,"used":508.14,"free":3566.89},{"epoch":26113006,"idl":99.91,"recv":0,"send":0,"writ":0.39,"used":507.64,"free":3567.39},{"epoch":26113007,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.53,"free":3567.49},{"epoch":26113008,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.73,"free":3568.29},{"epoch":26113009,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.72,"free":3568.3},{"epoch":26113010,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":507.2,"free":3567.84},{"epoch":26113011,"idl":99.74,"recv":0,"send":0,"writ":0.61,"used":507.65,"free":3567.38},{"epoch":26113012,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.17,"free":3567.86},{"epoch":26113013,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":507.14,"free":3567.88},{"epoch":26113014,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":507.13,"free":3567.89},{"epoch":26113015,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":507.12,"free":3567.91},{"epoch":26113016,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":507.47,"free":3567.56},{"epoch":26113017,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.1,"free":3567.93},{"epoch":26113018,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.07,"free":3567.95},{"epoch":26113019,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.24,"free":3567.78},{"epoch":26113020,"idl":99.55,"recv":0,"send":0,"writ":0.35,"used":507.27,"free":3567.76},{"epoch":26113021,"idl":99.71,"recv":0,"send":0,"writ":0.61,"used":507.41,"free":3567.62},{"epoch":26113022,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.98,"free":3568.04},{"epoch":26113023,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.95,"free":3568.07},{"epoch":26113024,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.93,"free":3568.08},{"epoch":26113025,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":506.21,"free":3568.82},{"epoch":26113026,"idl":99.77,"recv":0,"send":0,"writ":0.51,"used":507.51,"free":3567.52},{"epoch":26113027,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":507.13,"free":3567.89},{"epoch":26113028,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.12,"free":3567.9},{"epoch":26113029,"idl":99.75,"recv":0,"send":0,"writ":0.25,"used":507.34,"free":3567.66},{"epoch":26113030,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":507.48,"free":3567.53},{"epoch":26113031,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":508.07,"free":3566.93},{"epoch":26113032,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.47,"free":3567.52},{"epoch":26113033,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.46,"free":3567.53},{"epoch":26113034,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":507.43,"free":3567.56},{"epoch":26113035,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":507.2,"free":3567.8},{"epoch":26113036,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":507.68,"free":3567.32},{"epoch":26113037,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":507.15,"free":3567.84},{"epoch":26113038,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.11,"free":3567.87},{"epoch":26113039,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.08,"free":3567.9},{"epoch":26113040,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":507.34,"free":3567.66},{"epoch":26113041,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":507.7,"free":3567.29},{"epoch":26113042,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":507.49,"free":3567.5},{"epoch":26113043,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.46,"free":3567.52},{"epoch":26113044,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.17,"free":3567.81},{"epoch":26113045,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":506.96,"free":3568.03},{"epoch":26113046,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":507.31,"free":3567.68},{"epoch":26113047,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":507.15,"free":3567.83},{"epoch":26113048,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.14,"free":3567.84},{"epoch":26113049,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.11,"free":3567.86},{"epoch":26113050,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":507.36,"free":3567.63},{"epoch":26113051,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":507.33,"free":3567.65},{"epoch":26113052,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":508.02,"free":3566.97},{"epoch":26113053,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.4,"free":3567.58},{"epoch":26113054,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":507.46,"free":3567.51},{"epoch":26113055,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":507.46,"free":3567.53},{"epoch":26113056,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.42,"free":3567.56},{"epoch":26113057,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":507.41,"free":3567.58},{"epoch":26113058,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":506.9,"free":3568.1},{"epoch":26113059,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":507.6,"free":3567.37},{"epoch":26113060,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":506.88,"free":3568.1},{"epoch":26113061,"idl":99.88,"recv":0,"send":0.02,"writ":0.18,"used":506.83,"free":3568.15},{"epoch":26113062,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":507.5,"free":3567.48},{"epoch":26113063,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.47,"free":3567.5},{"epoch":26113064,"idl":99.9,"recv":0,"send":0.02,"writ":0.14,"used":507.44,"free":3567.55},{"epoch":26113065,"idl":99.75,"recv":0,"send":0,"writ":0.35,"used":506.21,"free":3568.79},{"epoch":26113066,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.16,"free":3568.84},{"epoch":26113067,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":506.77,"free":3568.23},{"epoch":26113068,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":506.61,"free":3568.38},{"epoch":26113069,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.58,"free":3568.4},{"epoch":26113070,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":506.1,"free":3568.89},{"epoch":26113071,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.08,"free":3568.91},{"epoch":26113072,"idl":99.74,"recv":0,"send":0,"writ":0.42,"used":507.01,"free":3567.97},{"epoch":26113073,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":507.7,"free":3567.28},{"epoch":26113074,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.68,"free":3567.3},{"epoch":26113075,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":507.45,"free":3567.55},{"epoch":26113076,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":507.42,"free":3567.58},{"epoch":26113077,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":508.02,"free":3566.97},{"epoch":26113078,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":507.38,"free":3567.61},{"epoch":26113079,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":507.3,"free":3567.68},{"epoch":26113080,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":507.45,"free":3567.57},{"epoch":26113081,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.35,"free":3567.66},{"epoch":26113082,"idl":99.67,"recv":0,"send":0,"writ":0.34,"used":507.68,"free":3567.32},{"epoch":26113083,"idl":99.86,"recv":0,"send":0,"writ":0.37,"used":507.8,"free":3567.2},{"epoch":26113084,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.81,"free":3567.19},{"epoch":26113085,"idl":99.52,"recv":0,"send":0,"writ":0.32,"used":507.47,"free":3567.54},{"epoch":26113086,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":507.44,"free":3567.56},{"epoch":26113087,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":507.77,"free":3567.23},{"epoch":26113088,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":507.65,"free":3567.35},{"epoch":26113089,"idl":99.7,"recv":0,"send":0,"writ":0.25,"used":507.63,"free":3567.35},{"epoch":26113090,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":507.41,"free":3567.58},{"epoch":26113091,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.36,"free":3567.63},{"epoch":26113092,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.35,"free":3567.63},{"epoch":26113093,"idl":99.61,"recv":0,"send":0,"writ":0.55,"used":508.32,"free":3566.65},{"epoch":26113094,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":507.55,"free":3567.42},{"epoch":26113095,"idl":99.63,"recv":0,"send":0,"writ":0.3,"used":506.33,"free":3568.66},{"epoch":26113096,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":506.3,"free":3568.68},{"epoch":26113097,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":506.96,"free":3568.02},{"epoch":26113098,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":507.95,"free":3567.01},{"epoch":26113099,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":507.67,"free":3567.29},{"epoch":26113100,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":506.71,"free":3568.27},{"epoch":26113101,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.67,"free":3568.31},{"epoch":26113102,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.66,"free":3568.31},{"epoch":26113103,"idl":99.58,"recv":0,"send":0,"writ":0.5,"used":507.49,"free":3567.47},{"epoch":26113104,"idl":99.78,"recv":0,"send":0,"writ":0.23,"used":507.47,"free":3567.49},{"epoch":26113105,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":507.35,"free":3567.63},{"epoch":26113106,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.31,"free":3567.66},{"epoch":26113107,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":507.33,"free":3567.64},{"epoch":26113108,"idl":99.68,"recv":0,"send":0,"writ":0.5,"used":507.98,"free":3566.98},{"epoch":26113109,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":507.94,"free":3567.03},{"epoch":26113110,"idl":99.64,"recv":0,"send":0,"writ":0.39,"used":507.7,"free":3567.28},{"epoch":26113111,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.67,"free":3567.3},{"epoch":26113112,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.64,"free":3567.32},{"epoch":26113113,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":507.97,"free":3566.99},{"epoch":26113114,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":507.6,"free":3567.36},{"epoch":26113115,"idl":99.71,"recv":0,"send":0,"writ":0.35,"used":507.71,"free":3567.27},{"epoch":26113116,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":507.58,"free":3567.39},{"epoch":26113117,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":507.55,"free":3567.41},{"epoch":26113118,"idl":99.67,"recv":0,"send":0,"writ":0.58,"used":507.94,"free":3567.02},{"epoch":26113119,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":507.89,"free":3567.05},{"epoch":26113120,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":507.48,"free":3567.48},{"epoch":26113121,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.43,"free":3567.52},{"epoch":26113122,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.42,"free":3567.52},{"epoch":26113123,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":507.74,"free":3567.2},{"epoch":26113124,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":507.63,"free":3567.32},{"epoch":26113125,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":507.87,"free":3567.1},{"epoch":26113126,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.85,"free":3567.12},{"epoch":26113127,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":507.82,"free":3567.14},{"epoch":26113128,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.82,"free":3567.14},{"epoch":26113129,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":507.72,"free":3567.23},{"epoch":26113130,"idl":99.7,"recv":0,"send":0,"writ":0.33,"used":507.3,"free":3567.67},{"epoch":26113131,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":507.41,"free":3567.55},{"epoch":26113132,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.45,"free":3567.51},{"epoch":26113133,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.42,"free":3567.54},{"epoch":26113134,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":508.32,"free":3566.63},{"epoch":26113135,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":507.9,"free":3567.06},{"epoch":26113136,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.89,"free":3567.08},{"epoch":26113137,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.86,"free":3567.1},{"epoch":26113138,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.84,"free":3567.11},{"epoch":26113139,"idl":94.6,"recv":0.33,"send":0.01,"writ":260.27,"used":520.69,"free":3555.27},{"epoch":26113140,"idl":99.31,"recv":0,"send":0.01,"writ":0.55,"used":510.2,"free":3565.2},{"epoch":26113141,"idl":99.7,"recv":0,"send":0,"writ":0.18,"used":510.34,"free":3565.06},{"epoch":26113142,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":510.31,"free":3565.08},{"epoch":26113143,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":510.28,"free":3565.1},{"epoch":26113144,"idl":99.65,"recv":0,"send":0,"writ":0.61,"used":509.2,"free":3566.2},{"epoch":26113145,"idl":99.63,"recv":0,"send":0,"writ":0.42,"used":507.83,"free":3567.6},{"epoch":26113146,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":507.76,"free":3567.67},{"epoch":26113147,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":507.56,"free":3567.86},{"epoch":26113148,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":507.55,"free":3567.87},{"epoch":26113149,"idl":99.42,"recv":0,"send":0,"writ":0.7,"used":508.48,"free":3566.91},{"epoch":26113150,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":508.16,"free":3567.25},{"epoch":26113151,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":508.17,"free":3567.24},{"epoch":26113152,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":508.13,"free":3567.27},{"epoch":26113153,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":508.13,"free":3567.27},{"epoch":26113154,"idl":99.54,"recv":0,"send":0,"writ":0.51,"used":508.45,"free":3566.95},{"epoch":26113155,"idl":99.51,"recv":0,"send":0,"writ":0.39,"used":507.16,"free":3568.25},{"epoch":26113156,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.1,"free":3568.31},{"epoch":26113157,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":506.85,"free":3568.56},{"epoch":26113158,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":506.81,"free":3568.59},{"epoch":26113159,"idl":99.57,"recv":0,"send":0,"writ":0.43,"used":507.3,"free":3568.09},{"epoch":26113160,"idl":99.71,"recv":0,"send":0,"writ":0.44,"used":508.02,"free":3567.4},{"epoch":26113161,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":508.01,"free":3567.4},{"epoch":26113162,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":508.06,"free":3567.35},{"epoch":26113163,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.55,"free":3567.85},{"epoch":26113164,"idl":99.77,"recv":0,"send":0,"writ":0.19,"used":507.03,"free":3568.37},{"epoch":26113165,"idl":99.49,"recv":0,"send":0,"writ":0.73,"used":506.6,"free":3568.81},{"epoch":26113166,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":505.89,"free":3569.52},{"epoch":26113167,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":505.86,"free":3569.55},{"epoch":26113168,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":505.85,"free":3569.55},{"epoch":26113169,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.82,"free":3569.58},{"epoch":26113170,"idl":99.46,"recv":0,"send":0,"writ":0.68,"used":507.72,"free":3567.7},{"epoch":26113171,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":507.28,"free":3568.13},{"epoch":26113172,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.28,"free":3568.13},{"epoch":26113173,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.28,"free":3568.13},{"epoch":26113174,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.41,"free":3567.99},{"epoch":26113175,"idl":99.59,"recv":0,"send":0,"writ":0.72,"used":507.73,"free":3567.7},{"epoch":26113176,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":507.39,"free":3568.03},{"epoch":26113177,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":507.37,"free":3568.05},{"epoch":26113178,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.34,"free":3568.08},{"epoch":26113179,"idl":99.61,"recv":0,"send":0,"writ":0.27,"used":507.09,"free":3568.3},{"epoch":26113180,"idl":99.53,"recv":0,"send":0,"writ":0.71,"used":507.04,"free":3568.38},{"epoch":26113181,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.82,"free":3568.59},{"epoch":26113182,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.8,"free":3568.61},{"epoch":26113183,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.78,"free":3568.62},{"epoch":26113184,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":506.77,"free":3568.62},{"epoch":26113185,"idl":99.53,"recv":0,"send":0,"writ":0.7,"used":507.71,"free":3567.7},{"epoch":26113186,"idl":99.77,"recv":0,"send":0,"writ":0.2,"used":507.66,"free":3567.75},{"epoch":26113187,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":507.65,"free":3567.75},{"epoch":26113188,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.64,"free":3567.76},{"epoch":26113189,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.61,"free":3567.79},{"epoch":26113190,"idl":99.56,"recv":0,"send":0,"writ":0.73,"used":507.8,"free":3567.61},{"epoch":26113191,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":507.59,"free":3567.82},{"epoch":26113192,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":507.58,"free":3567.82},{"epoch":26113193,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":507.55,"free":3567.85},{"epoch":26113194,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":507.54,"free":3567.85},{"epoch":26113195,"idl":99.56,"recv":0,"send":0,"writ":0.73,"used":507.12,"free":3568.29},{"epoch":26113196,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":507.53,"free":3567.88},{"epoch":26113197,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.49,"free":3567.91},{"epoch":26113198,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.55,"free":3567.85},{"epoch":26113199,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":507.64,"free":3567.75},{"epoch":26113200,"idl":99.29,"recv":0,"send":0,"writ":0.57,"used":507.33,"free":3568.08},{"epoch":26113201,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":507.38,"free":3568.03},{"epoch":26113202,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":507.36,"free":3568.04},{"epoch":26113203,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":507.33,"free":3568.06},{"epoch":26113204,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":507.32,"free":3568.07},{"epoch":26113205,"idl":99.62,"recv":0,"send":0,"writ":0.32,"used":507.55,"free":3567.86},{"epoch":26113206,"idl":99.61,"recv":0,"send":0,"writ":0.57,"used":507.88,"free":3567.52},{"epoch":26113207,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.51,"free":3567.89},{"epoch":26113208,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.49,"free":3567.91},{"epoch":26113209,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":507.86,"free":3567.51},{"epoch":26113210,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":507.68,"free":3567.71},{"epoch":26113211,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":507.53,"free":3567.85},{"epoch":26113212,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":507.13,"free":3568.25},{"epoch":26113213,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":507.1,"free":3568.27},{"epoch":26113214,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":507.09,"free":3568.28},{"epoch":26113215,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":506.85,"free":3568.54},{"epoch":26113216,"idl":99.62,"recv":0,"send":0,"writ":0.56,"used":508.04,"free":3567.34},{"epoch":26113217,"idl":99.78,"recv":0,"send":0,"writ":0.21,"used":507.53,"free":3567.85},{"epoch":26113218,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.5,"free":3567.87},{"epoch":26113219,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":507.56,"free":3567.81},{"epoch":26113220,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":507.42,"free":3567.98},{"epoch":26113221,"idl":99.66,"recv":0,"send":0,"writ":0.43,"used":507.9,"free":3567.51},{"epoch":26113222,"idl":99.77,"recv":0,"send":0.01,"writ":0.25,"used":507.59,"free":3567.8},{"epoch":26113223,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":507.54,"free":3567.85},{"epoch":26113224,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":507.43,"free":3567.96},{"epoch":26113225,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":507.77,"free":3567.63},{"epoch":26113226,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":507.97,"free":3567.43},{"epoch":26113227,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":507.55,"free":3567.85},{"epoch":26113228,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":507.66,"free":3567.73},{"epoch":26113229,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.65,"free":3567.74},{"epoch":26113230,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":507.65,"free":3567.76},{"epoch":26113231,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":508.33,"free":3567.07},{"epoch":26113232,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":507.59,"free":3567.81},{"epoch":26113233,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.57,"free":3567.82},{"epoch":26113234,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.54,"free":3567.85},{"epoch":26113235,"idl":99.69,"recv":0,"send":0,"writ":0.35,"used":507.06,"free":3568.34},{"epoch":26113236,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":507.54,"free":3567.87},{"epoch":26113237,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":507.74,"free":3567.68},{"epoch":26113238,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":507.88,"free":3567.53},{"epoch":26113239,"idl":99.61,"recv":0,"send":0,"writ":0.27,"used":507.89,"free":3567.49},{"epoch":26113240,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":507.89,"free":3567.51},{"epoch":26113241,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":508.26,"free":3567.14},{"epoch":26113242,"idl":99.26,"recv":0,"send":0,"writ":0.18,"used":508.09,"free":3567.3},{"epoch":26113243,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":508.06,"free":3567.33},{"epoch":26113244,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":508.04,"free":3567.34},{"epoch":26113245,"idl":99.59,"recv":0,"send":0,"writ":0.32,"used":507.57,"free":3567.83},{"epoch":26113246,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":507.92,"free":3567.48},{"epoch":26113247,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":507.78,"free":3567.61},{"epoch":26113248,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.74,"free":3567.65},{"epoch":26113249,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":507.79,"free":3567.6},{"epoch":26113250,"idl":99.71,"recv":0,"send":0,"writ":0.36,"used":508.15,"free":3567.25},{"epoch":26113251,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":508.13,"free":3567.27},{"epoch":26113252,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":507.81,"free":3567.59},{"epoch":26113253,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.35,"free":3568.04},{"epoch":26113254,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.32,"free":3568.06},{"epoch":26113255,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":507.58,"free":3567.83},{"epoch":26113256,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.55,"free":3567.85},{"epoch":26113257,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":508.11,"free":3567.28},{"epoch":26113258,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.76,"free":3567.63},{"epoch":26113259,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":507.75,"free":3567.64},{"epoch":26113260,"idl":98.66,"recv":0,"send":0,"writ":6.05,"used":506.96,"free":3568.54},{"epoch":26113261,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":506.98,"free":3568.53},{"epoch":26113262,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":507.74,"free":3567.76},{"epoch":26113263,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":507.51,"free":3567.99},{"epoch":26113264,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.48,"free":3568.02},{"epoch":26113265,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":507.73,"free":3567.79},{"epoch":26113266,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.71,"free":3567.82},{"epoch":26113267,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":508.49,"free":3567.03},{"epoch":26113268,"idl":99.87,"recv":0,"send":0,"writ":0.22,"used":507.91,"free":3567.6},{"epoch":26113269,"idl":99.67,"recv":0,"send":0,"writ":0.27,"used":507.96,"free":3567.53},{"epoch":26113270,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":507.9,"free":3567.61},{"epoch":26113271,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":507.87,"free":3567.63},{"epoch":26113272,"idl":99.77,"recv":0,"send":0,"writ":0.39,"used":508.32,"free":3567.18},{"epoch":26113273,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":508.01,"free":3567.48},{"epoch":26113274,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":508.01,"free":3567.51},{"epoch":26113275,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":507.55,"free":3567.99},{"epoch":26113276,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.5,"free":3568.04},{"epoch":26113277,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":507.83,"free":3567.7},{"epoch":26113278,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.46,"free":3568.07},{"epoch":26113279,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.43,"free":3568.11},{"epoch":26113280,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":507.21,"free":3568.35},{"epoch":26113281,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.17,"free":3568.39},{"epoch":26113282,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":507.53,"free":3568.03},{"epoch":26113283,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":507.62,"free":3567.93},{"epoch":26113284,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":507.61,"free":3567.94},{"epoch":26113285,"idl":99.63,"recv":0,"send":0,"writ":0.34,"used":507.33,"free":3568.23},{"epoch":26113286,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.3,"free":3568.25},{"epoch":26113287,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":507.63,"free":3567.91},{"epoch":26113288,"idl":99.84,"recv":0,"send":0,"writ":0.39,"used":507.27,"free":3568.27},{"epoch":26113289,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.24,"free":3568.3},{"epoch":26113290,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":507.97,"free":3567.59},{"epoch":26113291,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.96,"free":3567.59},{"epoch":26113292,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.94,"free":3567.61},{"epoch":26113293,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":508.28,"free":3567.27},{"epoch":26113294,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.9,"free":3567.64},{"epoch":26113295,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":508.14,"free":3567.42},{"epoch":26113296,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":508.19,"free":3567.36},{"epoch":26113297,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":508.3,"free":3567.25},{"epoch":26113298,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":508.81,"free":3566.73},{"epoch":26113299,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":508,"free":3567.53},{"epoch":26113300,"idl":99.66,"recv":0,"send":0,"writ":0.39,"used":507.76,"free":3567.79},{"epoch":26113301,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.73,"free":3567.82},{"epoch":26113302,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.7,"free":3567.84},{"epoch":26113303,"idl":99.74,"recv":0,"send":0,"writ":0.52,"used":508.33,"free":3567.2},{"epoch":26113304,"idl":99.85,"recv":0,"send":0,"writ":0.23,"used":507.9,"free":3567.62},{"epoch":26113305,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":508.16,"free":3567.38},{"epoch":26113306,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":508.12,"free":3567.41},{"epoch":26113307,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":508.11,"free":3567.43},{"epoch":26113308,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":508.48,"free":3567.05},{"epoch":26113309,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":508.01,"free":3567.52},{"epoch":26113310,"idl":99.67,"recv":0,"send":0,"writ":0.38,"used":508.25,"free":3567.3},{"epoch":26113311,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":508.22,"free":3567.32},{"epoch":26113312,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":508.21,"free":3567.33},{"epoch":26113313,"idl":99.71,"recv":0,"send":0,"writ":0.4,"used":508.44,"free":3567.09},{"epoch":26113314,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":507.68,"free":3567.85},{"epoch":26113315,"idl":99.71,"recv":0,"send":0,"writ":0.38,"used":508.14,"free":3567.4},{"epoch":26113316,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":508.15,"free":3567.39},{"epoch":26113317,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":508.12,"free":3567.41},{"epoch":26113318,"idl":99.78,"recv":0,"send":0,"writ":0.49,"used":508,"free":3567.53},{"epoch":26113319,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":507.47,"free":3568.05},{"epoch":26113320,"idl":99.53,"recv":0,"send":0,"writ":0.38,"used":507.77,"free":3567.77},{"epoch":26113321,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.75,"free":3567.79},{"epoch":26113322,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.74,"free":3567.8},{"epoch":26113323,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":508.07,"free":3567.46},{"epoch":26113324,"idl":99.83,"recv":0,"send":0,"writ":0.42,"used":507.85,"free":3567.67},{"epoch":26113325,"idl":99.66,"recv":0,"send":0,"writ":0.27,"used":507.2,"free":3568.34},{"epoch":26113326,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":507.17,"free":3568.36},{"epoch":26113327,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.15,"free":3568.38},{"epoch":26113328,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.12,"free":3568.4},{"epoch":26113329,"idl":99.62,"recv":0,"send":0,"writ":0.66,"used":507.92,"free":3567.58},{"epoch":26113330,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":507.38,"free":3568.13},{"epoch":26113331,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":507.52,"free":3567.99},{"epoch":26113332,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.49,"free":3568.02},{"epoch":26113333,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":507.46,"free":3568.04},{"epoch":26113334,"idl":99.62,"recv":0,"send":0,"writ":0.55,"used":507.8,"free":3567.69},{"epoch":26113335,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":506.7,"free":3568.8},{"epoch":26113336,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.68,"free":3568.82},{"epoch":26113337,"idl":99.73,"recv":0,"send":0,"writ":0.24,"used":506.89,"free":3568.61},{"epoch":26113338,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":506.89,"free":3568.61},{"epoch":26113339,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":507.05,"free":3568.44},{"epoch":26113340,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":507.36,"free":3568.14},{"epoch":26113341,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":507.36,"free":3568.14},{"epoch":26113342,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":507.5,"free":3568},{"epoch":26113343,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.48,"free":3568.02},{"epoch":26113344,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":507.79,"free":3567.7},{"epoch":26113345,"idl":99.13,"recv":0,"send":0,"writ":0.31,"used":506.5,"free":3569.01},{"epoch":26113346,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":506.44,"free":3569.06},{"epoch":26113347,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.43,"free":3569.07},{"epoch":26113348,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.4,"free":3569.09},{"epoch":26113349,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":506.89,"free":3568.59},{"epoch":26113350,"idl":99.7,"recv":0,"send":0,"writ":0.38,"used":506.87,"free":3568.63},{"epoch":26113351,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.84,"free":3568.66},{"epoch":26113352,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.86,"free":3568.63},{"epoch":26113353,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":506.99,"free":3568.5},{"epoch":26113354,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":507.46,"free":3568.03},{"epoch":26113355,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":507.46,"free":3568.04},{"epoch":26113356,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.43,"free":3568.07},{"epoch":26113357,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.42,"free":3568.08},{"epoch":26113358,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":507.4,"free":3568.09},{"epoch":26113359,"idl":99.45,"recv":0,"send":0,"writ":0.67,"used":508.55,"free":3566.91},{"epoch":26113360,"idl":99.62,"recv":0,"send":0,"writ":0.26,"used":506.64,"free":3568.83},{"epoch":26113361,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.61,"free":3568.87},{"epoch":26113362,"idl":98.42,"recv":0,"send":0,"writ":0.16,"used":506.58,"free":3568.89},{"epoch":26113363,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.72,"free":3568.75},{"epoch":26113364,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.77,"free":3568.71},{"epoch":26113365,"idl":99.42,"recv":0,"send":0,"writ":0.65,"used":507.48,"free":3568.02},{"epoch":26113366,"idl":98.86,"recv":0,"send":0,"writ":0.14,"used":507,"free":3568.5},{"epoch":26113367,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.97,"free":3568.53},{"epoch":26113368,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":506.96,"free":3568.53},{"epoch":26113369,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.92,"free":3568.56},{"epoch":26113370,"idl":99.49,"recv":0,"send":0,"writ":0.7,"used":508.09,"free":3567.41},{"epoch":26113371,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":507.89,"free":3567.61},{"epoch":26113372,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":507.87,"free":3567.62},{"epoch":26113373,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.84,"free":3567.64},{"epoch":26113374,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.85,"free":3567.63},{"epoch":26113375,"idl":99.45,"recv":0,"send":0,"writ":0.68,"used":507.98,"free":3567.52},{"epoch":26113376,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":507.51,"free":3567.99},{"epoch":26113377,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":507.49,"free":3568.01},{"epoch":26113378,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.47,"free":3568.02},{"epoch":26113379,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.45,"free":3568.04},{"epoch":26113380,"idl":99.31,"recv":0,"send":0,"writ":0.62,"used":507.67,"free":3567.83},{"epoch":26113381,"idl":99.75,"recv":0,"send":0,"writ":0.22,"used":507.42,"free":3568.08},{"epoch":26113382,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":507.39,"free":3568.1},{"epoch":26113383,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":507.38,"free":3568.1},{"epoch":26113384,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.35,"free":3568.13},{"epoch":26113385,"idl":99.44,"recv":0,"send":0,"writ":0.71,"used":508.49,"free":3567.01},{"epoch":26113386,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.92,"free":3567.57},{"epoch":26113387,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":508,"free":3567.49},{"epoch":26113388,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.97,"free":3567.52},{"epoch":26113389,"idl":99.6,"recv":0,"send":0,"writ":0.3,"used":507.72,"free":3567.75},{"epoch":26113390,"idl":99.59,"recv":0,"send":0,"writ":0.55,"used":508.54,"free":3566.95},{"epoch":26113391,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":507.69,"free":3567.8},{"epoch":26113392,"idl":99.7,"recv":0,"send":0,"writ":0.17,"used":507.66,"free":3567.82},{"epoch":26113393,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.63,"free":3567.84},{"epoch":26113394,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.63,"free":3567.88},{"epoch":26113395,"idl":99.61,"recv":0,"send":0,"writ":0.28,"used":507.79,"free":3567.74},{"epoch":26113396,"idl":99.57,"recv":0,"send":0,"writ":0.55,"used":507.73,"free":3567.8},{"epoch":26113397,"idl":99.77,"recv":0,"send":0,"writ":0.19,"used":507.34,"free":3568.19},{"epoch":26113398,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.48,"free":3568.04},{"epoch":26113399,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":507.48,"free":3568.04},{"epoch":26113400,"idl":99.63,"recv":0,"send":0,"writ":0.27,"used":507.97,"free":3567.56},{"epoch":26113401,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":508.54,"free":3567},{"epoch":26113402,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":508.19,"free":3567.34},{"epoch":26113403,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":508.16,"free":3567.37},{"epoch":26113404,"idl":99.7,"recv":0,"send":0,"writ":0.16,"used":508,"free":3567.52},{"epoch":26113405,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":507.88,"free":3567.66},{"epoch":26113406,"idl":99.59,"recv":0,"send":0,"writ":0.57,"used":508.59,"free":3566.94},{"epoch":26113407,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.84,"free":3567.68},{"epoch":26113408,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.84,"free":3567.68},{"epoch":26113409,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.99,"free":3567.53},{"epoch":26113410,"idl":99.52,"recv":0,"send":0,"writ":0.27,"used":508.22,"free":3567.32},{"epoch":26113411,"idl":99.53,"recv":0,"send":0,"writ":0.58,"used":508.64,"free":3566.88},{"epoch":26113412,"idl":99.77,"recv":0,"send":0,"writ":0.2,"used":508.19,"free":3567.34},{"epoch":26113413,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":508.18,"free":3567.34},{"epoch":26113414,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":508.15,"free":3567.36},{"epoch":26113415,"idl":99.57,"recv":0,"send":0,"writ":0.3,"used":507.92,"free":3567.61},{"epoch":26113416,"idl":99.68,"recv":0,"send":0,"writ":0.53,"used":508.39,"free":3567.14},{"epoch":26113417,"idl":99.79,"recv":0,"send":0,"writ":0.19,"used":508.12,"free":3567.4},{"epoch":26113418,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":508.08,"free":3567.43},{"epoch":26113419,"idl":99.58,"recv":0,"send":0,"writ":0.29,"used":508.07,"free":3567.42},{"epoch":26113420,"idl":99.69,"recv":0,"send":0,"writ":0.27,"used":508.05,"free":3567.46},{"epoch":26113421,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":508.43,"free":3567.07},{"epoch":26113422,"idl":99.77,"recv":0,"send":0,"writ":0.19,"used":507.96,"free":3567.54},{"epoch":26113423,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":507.94,"free":3567.55},{"epoch":26113424,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":507.91,"free":3567.58},{"epoch":26113425,"idl":99.58,"recv":0,"send":0,"writ":0.3,"used":507.93,"free":3567.58},{"epoch":26113426,"idl":99.67,"recv":0,"send":0,"writ":0.39,"used":508.66,"free":3566.84},{"epoch":26113427,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":508.12,"free":3567.37},{"epoch":26113428,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":508.09,"free":3567.39},{"epoch":26113429,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":508.08,"free":3567.41},{"epoch":26113430,"idl":99.54,"recv":0,"send":0,"writ":0.28,"used":507.2,"free":3568.3},{"epoch":26113431,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":507.68,"free":3567.82},{"epoch":26113432,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":508.04,"free":3567.46},{"epoch":26113433,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":508.18,"free":3567.31},{"epoch":26113434,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":508.18,"free":3567.3},{"epoch":26113435,"idl":99.66,"recv":0,"send":0,"writ":0.31,"used":508.18,"free":3567.32},{"epoch":26113436,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":508.16,"free":3567.33},{"epoch":26113437,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":508.04,"free":3567.45},{"epoch":26113438,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":507.63,"free":3567.86},{"epoch":26113439,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":507.6,"free":3567.88},{"epoch":26113440,"idl":99.24,"recv":0,"send":0,"writ":0.32,"used":507.14,"free":3568.36},{"epoch":26113441,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":507.09,"free":3568.41},{"epoch":26113442,"idl":99.59,"recv":0,"send":0,"writ":0.54,"used":508.33,"free":3567.16},{"epoch":26113443,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":508.04,"free":3567.45},{"epoch":26113444,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":508.02,"free":3567.46},{"epoch":26113445,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":507.23,"free":3568.27},{"epoch":26113446,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.24,"free":3568.26},{"epoch":26113447,"idl":99.61,"recv":0,"send":0,"writ":0.64,"used":508.11,"free":3567.38},{"epoch":26113448,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.94,"free":3567.55},{"epoch":26113449,"idl":99.59,"recv":0,"send":0,"writ":0.27,"used":508.4,"free":3567.06},{"epoch":26113450,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":507.7,"free":3567.79},{"epoch":26113451,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":507.66,"free":3567.84},{"epoch":26113452,"idl":99.54,"recv":0,"send":0,"writ":0.56,"used":508.83,"free":3566.66},{"epoch":26113453,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":508.35,"free":3567.13},{"epoch":26113454,"idl":99.64,"recv":0,"send":0,"writ":0.15,"used":508.35,"free":3567.15},{"epoch":26113455,"idl":99.52,"recv":0,"send":0,"writ":0.32,"used":506.4,"free":3569.12},{"epoch":26113456,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":506.37,"free":3569.15},{"epoch":26113457,"idl":99.56,"recv":0,"send":0,"writ":0.46,"used":507.64,"free":3567.87},{"epoch":26113458,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":508.23,"free":3567.27},{"epoch":26113459,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":508.2,"free":3567.3},{"epoch":26113460,"idl":99.59,"recv":0,"send":0,"writ":0.27,"used":508.72,"free":3566.8},{"epoch":26113461,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":508.67,"free":3566.84},{"epoch":26113462,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":508.99,"free":3566.52},{"epoch":26113463,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":508.14,"free":3567.36},{"epoch":26113464,"idl":99.76,"recv":0,"send":0,"writ":0.19,"used":508.08,"free":3567.42},{"epoch":26113465,"idl":99.65,"recv":0,"send":0,"writ":0.31,"used":507.63,"free":3567.88},{"epoch":26113466,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":507.6,"free":3567.91},{"epoch":26113467,"idl":99.67,"recv":0,"send":0,"writ":0.39,"used":507.99,"free":3567.51},{"epoch":26113468,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":508.35,"free":3567.14},{"epoch":26113469,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":508.46,"free":3567.02},{"epoch":26113470,"idl":99.57,"recv":0,"send":0,"writ":0.29,"used":508.45,"free":3567.05},{"epoch":26113471,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":508.44,"free":3567.05},{"epoch":26113472,"idl":99.58,"recv":0,"send":0,"writ":0.33,"used":508.72,"free":3566.77},{"epoch":26113473,"idl":99.73,"recv":0,"send":0,"writ":0.37,"used":507.05,"free":3568.44},{"epoch":26113474,"idl":99.69,"recv":0,"send":0,"writ":0.15,"used":505.65,"free":3569.83},{"epoch":26113475,"idl":99.65,"recv":0,"send":0,"writ":0.33,"used":505.65,"free":3569.85},{"epoch":26113476,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":505.62,"free":3569.88},{"epoch":26113477,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":505.6,"free":3569.89},{"epoch":26113478,"idl":99.52,"recv":0,"send":0,"writ":0.55,"used":505.93,"free":3569.56},{"epoch":26113479,"idl":99.57,"recv":0,"send":0,"writ":0.3,"used":505.97,"free":3569.49},{"epoch":26113480,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":505.74,"free":3569.74},{"epoch":26113481,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.71,"free":3569.77},{"epoch":26113482,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":505.69,"free":3569.78},{"epoch":26113483,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":506.22,"free":3569.25},{"epoch":26113484,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":505.66,"free":3569.82},{"epoch":26113485,"idl":99.61,"recv":0,"send":0,"writ":0.29,"used":504.93,"free":3570.57},{"epoch":26113486,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":504.9,"free":3570.59},{"epoch":26113487,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":504.89,"free":3570.61},{"epoch":26113488,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":505.76,"free":3569.75},{"epoch":26113489,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":505.84,"free":3569.66},{"epoch":26113490,"idl":99.62,"recv":0,"send":0,"writ":0.27,"used":505.84,"free":3569.68},{"epoch":26113491,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":505.98,"free":3569.53},{"epoch":26113492,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":505.98,"free":3569.53},{"epoch":26113493,"idl":99.62,"recv":0,"send":0,"writ":0.5,"used":506.26,"free":3569.25},{"epoch":26113494,"idl":99.75,"recv":0,"send":0,"writ":0.2,"used":505.69,"free":3569.81},{"epoch":26113495,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":505.93,"free":3569.59},{"epoch":26113496,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":505.92,"free":3569.6},{"epoch":26113497,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":505.89,"free":3569.63},{"epoch":26113498,"idl":99.66,"recv":0,"send":0,"writ":0.41,"used":506.23,"free":3569.28},{"epoch":26113499,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":505.85,"free":3569.66},{"epoch":26113500,"idl":99.28,"recv":0,"send":0,"writ":0.3,"used":505.62,"free":3569.9},{"epoch":26113501,"idl":99.53,"recv":0,"send":0,"writ":0.16,"used":505.58,"free":3569.93},{"epoch":26113502,"idl":99.56,"recv":0,"send":0,"writ":0.16,"used":505.73,"free":3569.78},{"epoch":26113503,"idl":94.69,"recv":0.39,"send":0.01,"writ":78.53,"used":518.58,"free":3557.41},{"epoch":26113504,"idl":99.67,"recv":0,"send":0,"writ":183.58,"used":508.27,"free":3567.08},{"epoch":26113505,"idl":99.61,"recv":0,"send":0,"writ":0.29,"used":505.89,"free":3569.48},{"epoch":26113506,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":505.82,"free":3569.54},{"epoch":26113507,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.95,"free":3569.41},{"epoch":26113508,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":506.47,"free":3568.89},{"epoch":26113509,"idl":99.65,"recv":0,"send":0,"writ":0.61,"used":505.95,"free":3569.42},{"epoch":26113510,"idl":99.62,"recv":0,"send":0,"writ":0.3,"used":505.93,"free":3569.44},{"epoch":26113511,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":505.9,"free":3569.47},{"epoch":26113512,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.89,"free":3569.48},{"epoch":26113513,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":505.86,"free":3569.5},{"epoch":26113514,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":506.21,"free":3569.21},{"epoch":26113515,"idl":99.63,"recv":0,"send":0,"writ":0.28,"used":505.85,"free":3569.59},{"epoch":26113516,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":505.84,"free":3569.6},{"epoch":26113517,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":505.88,"free":3569.56},{"epoch":26113518,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.97,"free":3569.46},{"epoch":26113519,"idl":99.59,"recv":0,"send":0,"writ":0.57,"used":506.47,"free":3568.96},{"epoch":26113520,"idl":99.57,"recv":0,"send":0,"writ":0.3,"used":505.97,"free":3569.47},{"epoch":26113521,"idl":99.78,"recv":0,"send":0,"writ":0.12,"used":505.94,"free":3569.51},{"epoch":26113522,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":505.92,"free":3569.52},{"epoch":26113523,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":505.89,"free":3569.54},{"epoch":26113524,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":506.17,"free":3569.26},{"epoch":26113525,"idl":99.49,"recv":0,"send":0,"writ":0.3,"used":504.91,"free":3570.54},{"epoch":26113526,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":504.86,"free":3570.59},{"epoch":26113527,"idl":99.68,"recv":0,"send":0,"writ":0.16,"used":504.84,"free":3570.59},{"epoch":26113528,"idl":99.62,"recv":0,"send":0,"writ":0.18,"used":504.87,"free":3570.56},{"epoch":26113529,"idl":99.67,"recv":0,"send":0,"writ":0.44,"used":505.98,"free":3569.45},{"epoch":26113530,"idl":99.55,"recv":0,"send":0,"writ":0.43,"used":506.02,"free":3569.43},{"epoch":26113531,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.94,"free":3569.5},{"epoch":26113532,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":505.92,"free":3569.52},{"epoch":26113533,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.9,"free":3569.54},{"epoch":26113534,"idl":99.67,"recv":0,"send":0,"writ":0.52,"used":506.47,"free":3568.96},{"epoch":26113535,"idl":99.6,"recv":0,"send":0,"writ":0.35,"used":505.88,"free":3569.56},{"epoch":26113536,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":505.84,"free":3569.6},{"epoch":26113537,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":505.83,"free":3569.61},{"epoch":26113538,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":505.8,"free":3569.63},{"epoch":26113539,"idl":99.27,"recv":0,"send":0,"writ":0.67,"used":506.51,"free":3568.9},{"epoch":26113540,"idl":99.44,"recv":0,"send":0,"writ":0.32,"used":506.2,"free":3569.22},{"epoch":26113541,"idl":99.64,"recv":0,"send":0,"writ":0.16,"used":506.2,"free":3569.22},{"epoch":26113542,"idl":99.65,"recv":0,"send":0,"writ":0.14,"used":506.17,"free":3569.25},{"epoch":26113543,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.15,"free":3569.26},{"epoch":26113544,"idl":98.76,"recv":0,"send":0,"writ":0.52,"used":506.44,"free":3568.98},{"epoch":26113545,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":506.37,"free":3569.08},{"epoch":26113546,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":505.87,"free":3569.57},{"epoch":26113547,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":505.84,"free":3569.59},{"epoch":26113548,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":505.83,"free":3569.6},{"epoch":26113549,"idl":99.55,"recv":0,"send":0,"writ":0.31,"used":506.17,"free":3569.26},{"epoch":26113550,"idl":99.71,"recv":0,"send":0,"writ":0.5,"used":506.08,"free":3569.36},{"epoch":26113551,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":506.22,"free":3569.22},{"epoch":26113552,"idl":99.7,"recv":0,"send":0,"writ":0.16,"used":506.18,"free":3569.26},{"epoch":26113553,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.16,"free":3569.27},{"epoch":26113554,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.13,"free":3569.3},{"epoch":26113555,"idl":99.55,"recv":0,"send":0,"writ":0.74,"used":506.58,"free":3568.86},{"epoch":26113556,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.84,"free":3569.59},{"epoch":26113557,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.82,"free":3569.61},{"epoch":26113558,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":505.79,"free":3569.63},{"epoch":26113559,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":505.94,"free":3569.49},{"epoch":26113560,"idl":99.4,"recv":0,"send":0,"writ":0.67,"used":506.48,"free":3568.96},{"epoch":26113561,"idl":99.71,"recv":0.01,"send":0.01,"writ":0.16,"used":505.97,"free":3569.47},{"epoch":26113562,"idl":99.83,"recv":0,"send":0.01,"writ":0.19,"used":505.91,"free":3569.52},{"epoch":26113563,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":505.88,"free":3569.54},{"epoch":26113564,"idl":99.79,"recv":0,"send":0.01,"writ":0.19,"used":505.84,"free":3569.58},{"epoch":26113565,"idl":99.66,"recv":0,"send":0,"writ":0.64,"used":506.56,"free":3568.87},{"epoch":26113566,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":506.35,"free":3569.08},{"epoch":26113567,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.47,"free":3568.95},{"epoch":26113568,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.46,"free":3568.96},{"epoch":26113569,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":505.7,"free":3569.7},{"epoch":26113570,"idl":99.55,"recv":0,"send":0,"writ":0.68,"used":506.31,"free":3569.11},{"epoch":26113571,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.16,"free":3569.25},{"epoch":26113572,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.13,"free":3569.27},{"epoch":26113573,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":506.11,"free":3569.29},{"epoch":26113574,"idl":99.64,"recv":0,"send":0,"writ":0.16,"used":506.09,"free":3569.32},{"epoch":26113575,"idl":99.41,"recv":0,"send":0,"writ":0.66,"used":506.96,"free":3568.47},{"epoch":26113576,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":506.07,"free":3569.36},{"epoch":26113577,"idl":99.76,"recv":0,"send":0,"writ":0.2,"used":506.09,"free":3569.33},{"epoch":26113578,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.22,"free":3569.2},{"epoch":26113579,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.18,"free":3569.23},{"epoch":26113580,"idl":99.32,"recv":0,"send":0,"writ":0.54,"used":506.44,"free":3568.98},{"epoch":26113581,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":505.19,"free":3570.24},{"epoch":26113582,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":505.17,"free":3570.25},{"epoch":26113583,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":505.14,"free":3570.28},{"epoch":26113584,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":505.09,"free":3570.32},{"epoch":26113585,"idl":99.46,"recv":0,"send":0,"writ":0.57,"used":505.23,"free":3570.2},{"epoch":26113586,"idl":99.65,"recv":0,"send":0,"writ":0.28,"used":506.34,"free":3569.08},{"epoch":26113587,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":506.31,"free":3569.11},{"epoch":26113588,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":506.29,"free":3569.13},{"epoch":26113589,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.44,"free":3568.97},{"epoch":26113590,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":506.22,"free":3569.21},{"epoch":26113591,"idl":99.72,"recv":0,"send":0,"writ":0.53,"used":507.19,"free":3568.24},{"epoch":26113592,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":506.42,"free":3569},{"epoch":26113593,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.4,"free":3569.02},{"epoch":26113594,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.37,"free":3569.04},{"epoch":26113595,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":505.66,"free":3569.77},{"epoch":26113596,"idl":96.34,"recv":0.08,"send":0.01,"writ":0.94,"used":511.79,"free":3565.09},{"epoch":26113597,"idl":99.67,"recv":0,"send":0,"writ":78.31,"used":509.04,"free":3566},{"epoch":26113598,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":509.04,"free":3565.99},{"epoch":26113599,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":509.01,"free":3565.98},{"epoch":26113600,"idl":99.59,"recv":0,"send":0,"writ":0.32,"used":508.3,"free":3566.71},{"epoch":26113601,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":508.99,"free":3566.01},{"epoch":26113602,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":506.43,"free":3568.63},{"epoch":26113603,"idl":99.7,"recv":0,"send":0,"writ":0.15,"used":506.44,"free":3568.61},{"epoch":26113604,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":506.41,"free":3568.66},{"epoch":26113605,"idl":99.7,"recv":0,"send":0,"writ":0.36,"used":506.67,"free":3568.42},{"epoch":26113606,"idl":99.69,"recv":0,"send":0,"writ":0.58,"used":506.84,"free":3568.24},{"epoch":26113607,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":506.38,"free":3568.7},{"epoch":26113608,"idl":99.37,"recv":0,"send":0,"writ":0.15,"used":506.35,"free":3568.72},{"epoch":26113609,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.34,"free":3568.73},{"epoch":26113610,"idl":99.63,"recv":0,"send":0,"writ":0.28,"used":505.63,"free":3569.46},{"epoch":26113611,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":506.27,"free":3568.81},{"epoch":26113612,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.37,"free":3568.72},{"epoch":26113613,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":506.48,"free":3568.6},{"epoch":26113614,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":506.45,"free":3568.62},{"epoch":26113615,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":506.7,"free":3568.39},{"epoch":26113616,"idl":99.64,"recv":0,"send":0,"writ":0.56,"used":507.03,"free":3568.06},{"epoch":26113617,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.67,"free":3568.42},{"epoch":26113618,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":506.64,"free":3568.45},{"epoch":26113619,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":506.61,"free":3568.47},{"epoch":26113620,"idl":99.61,"recv":0,"send":0,"writ":0.27,"used":506.62,"free":3568.48},{"epoch":26113621,"idl":99.64,"recv":0,"send":0,"writ":0.56,"used":507.08,"free":3568.02},{"epoch":26113622,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.09,"free":3569},{"epoch":26113623,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.21,"free":3568.87},{"epoch":26113624,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.23,"free":3568.84},{"epoch":26113625,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":505.02,"free":3570.08},{"epoch":26113626,"idl":99.77,"recv":0,"send":0,"writ":0.2,"used":504.99,"free":3570.11},{"epoch":26113627,"idl":99.58,"recv":0,"send":0,"writ":0.59,"used":506.72,"free":3568.37},{"epoch":26113628,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.41,"free":3568.68},{"epoch":26113629,"idl":99.6,"recv":0,"send":0,"writ":0.28,"used":506.42,"free":3568.65},{"epoch":26113630,"idl":99.64,"recv":0,"send":0,"writ":0.36,"used":506.62,"free":3568.45},{"epoch":26113631,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":506.6,"free":3568.47},{"epoch":26113632,"idl":99.64,"recv":0,"send":0,"writ":0.59,"used":506.55,"free":3568.52},{"epoch":26113633,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.07,"free":3568.99},{"epoch":26113634,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.21,"free":3568.85},{"epoch":26113635,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":506.24,"free":3568.83},{"epoch":26113636,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":506.21,"free":3568.86},{"epoch":26113637,"idl":99.65,"recv":0,"send":0,"writ":0.66,"used":506.94,"free":3568.13},{"epoch":26113638,"idl":99.77,"recv":0,"send":0.02,"writ":0.16,"used":506.66,"free":3568.4},{"epoch":26113639,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":506.61,"free":3568.45},{"epoch":26113640,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":506.66,"free":3568.42},{"epoch":26113641,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.59,"free":3568.48},{"epoch":26113642,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":506.34,"free":3568.73},{"epoch":26113643,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":505.58,"free":3569.48},{"epoch":26113644,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":505.67,"free":3569.38},{"epoch":26113645,"idl":98.45,"recv":0,"send":0,"writ":15.73,"used":506.94,"free":3568.86},{"epoch":26113646,"idl":99.75,"recv":0,"send":0,"writ":0.13,"used":505.47,"free":3569.89},{"epoch":26113647,"idl":99.61,"recv":0,"send":0,"writ":0.54,"used":506.61,"free":3568.74},{"epoch":26113648,"idl":99.75,"recv":0,"send":0,"writ":0.19,"used":506.66,"free":3568.7},{"epoch":26113649,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":506.63,"free":3568.72},{"epoch":26113650,"idl":99.59,"recv":0,"send":0,"writ":0.36,"used":506.4,"free":3568.97},{"epoch":26113651,"idl":99.74,"recv":0,"send":0,"writ":0.13,"used":505.63,"free":3569.74},{"epoch":26113652,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":506.01,"free":3569.35},{"epoch":26113653,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":505.83,"free":3569.53},{"epoch":26113654,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":505.84,"free":3569.51},{"epoch":26113655,"idl":99.52,"recv":0,"send":0,"writ":0.3,"used":504.57,"free":3570.8},{"epoch":26113656,"idl":99.68,"recv":0,"send":0,"writ":0.16,"used":504.49,"free":3570.88},{"epoch":26113657,"idl":99.49,"recv":0,"send":0,"writ":0.4,"used":504.88,"free":3570.48},{"epoch":26113658,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":504.7,"free":3570.66},{"epoch":26113659,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":505.89,"free":3569.46},{"epoch":26113660,"idl":99.53,"recv":0,"send":0,"writ":0.31,"used":506.14,"free":3569.23},{"epoch":26113661,"idl":99.65,"recv":0,"send":0,"writ":0.17,"used":506.12,"free":3569.25},{"epoch":26113662,"idl":99.51,"recv":0,"send":0,"writ":0.37,"used":506.46,"free":3568.91},{"epoch":26113663,"idl":99.68,"recv":0,"send":0,"writ":0.38,"used":506.08,"free":3569.28},{"epoch":26113664,"idl":99.7,"recv":0,"send":0,"writ":0.16,"used":506.06,"free":3569.29},{"epoch":26113665,"idl":99.61,"recv":0,"send":0,"writ":0.37,"used":505.85,"free":3569.52},{"epoch":26113666,"idl":99.77,"recv":0,"send":0,"writ":0.13,"used":505.99,"free":3569.38},{"epoch":26113667,"idl":99.69,"recv":0,"send":0,"writ":0.16,"used":505.96,"free":3569.4},{"epoch":26113668,"idl":99.49,"recv":0,"send":0,"writ":0.62,"used":505.8,"free":3569.55},{"epoch":26113669,"idl":99.7,"recv":0,"send":0,"writ":0.18,"used":504.93,"free":3570.42},{"epoch":26113670,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":505.89,"free":3569.47},{"epoch":26113671,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":505.9,"free":3569.47},{"epoch":26113672,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":505.87,"free":3569.49},{"epoch":26113673,"idl":99.64,"recv":0,"send":0,"writ":0.6,"used":506.17,"free":3569.18},{"epoch":26113674,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":505.58,"free":3569.77},{"epoch":26113675,"idl":99.65,"recv":0,"send":0,"writ":0.32,"used":506.06,"free":3569.3},{"epoch":26113676,"idl":99.71,"recv":0,"send":0,"writ":0.17,"used":506.1,"free":3569.26},{"epoch":26113677,"idl":99.71,"recv":0,"send":0,"writ":0.15,"used":506.2,"free":3569.15},{"epoch":26113678,"idl":99.6,"recv":0,"send":0,"writ":0.61,"used":506.37,"free":3568.97},{"epoch":26113679,"idl":96.3,"recv":0,"send":0,"writ":47.04,"used":513.3,"free":3559.53},{"epoch":26113680,"idl":99.39,"recv":0,"send":0,"writ":0.35,"used":508.03,"free":3567.08},{"epoch":26113681,"idl":99.71,"recv":0,"send":0,"writ":0.13,"used":508.01,"free":3567.1},{"epoch":26113682,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":507.98,"free":3567.13},{"epoch":26113683,"idl":99.59,"recv":0,"send":0,"writ":0.59,"used":508.61,"free":3566.49},{"epoch":26113684,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":507.11,"free":3568.03},{"epoch":26113685,"idl":99.63,"recv":0,"send":0,"writ":0.34,"used":505.37,"free":3569.83},{"epoch":26113686,"idl":99.71,"recv":0,"send":0,"writ":0.19,"used":505.48,"free":3569.72},{"epoch":26113687,"idl":99.71,"recv":0.01,"send":0.05,"writ":0.16,"used":505.47,"free":3569.73},{"epoch":26113688,"idl":99.6,"recv":0,"send":0.01,"writ":0.53,"used":505.62,"free":3569.57},{"epoch":26113689,"idl":99.48,"recv":0,"send":0,"writ":0.37,"used":506.16,"free":3569},{"epoch":26113690,"idl":99.59,"recv":0,"send":0,"writ":0.32,"used":506.19,"free":3568.98},{"epoch":26113691,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":506.15,"free":3569.02},{"epoch":26113692,"idl":99.61,"recv":0,"send":0,"writ":0.15,"used":506.13,"free":3569.04},{"epoch":26113693,"idl":99.32,"recv":0,"send":0,"writ":0.44,"used":506.84,"free":3568.32},{"epoch":26113694,"idl":99.65,"recv":0,"send":0,"writ":0.26,"used":506.09,"free":3569.09},{"epoch":26113695,"idl":99.5,"recv":0,"send":0,"writ":0.29,"used":504.67,"free":3570.53},{"epoch":26113696,"idl":99.62,"recv":0,"send":0,"writ":0.16,"used":504.59,"free":3570.61},{"epoch":26113697,"idl":99.63,"recv":0,"send":0,"writ":0.2,"used":504.57,"free":3570.62},{"epoch":26113698,"idl":99.54,"recv":0,"send":0,"writ":0.36,"used":505.37,"free":3569.82},{"epoch":26113699,"idl":99.78,"recv":0,"send":0,"writ":0.37,"used":506.18,"free":3569},{"epoch":26113700,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":505.95,"free":3569.24},{"epoch":26113701,"idl":99.38,"recv":0,"send":0,"writ":0.27,"used":506.28,"free":3568.92},{"epoch":26113702,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":506.15,"free":3569.05},{"epoch":26113703,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":506.12,"free":3569.08},{"epoch":26113704,"idl":99.47,"recv":0,"send":0,"writ":0.56,"used":505.83,"free":3569.36},{"epoch":26113705,"idl":99.53,"recv":0,"send":0,"writ":0.34,"used":506.1,"free":3569.11},{"epoch":26113706,"idl":99.63,"recv":0,"send":0,"writ":0.17,"used":506.09,"free":3569.12},{"epoch":26113707,"idl":99.68,"recv":0,"send":0,"writ":0.15,"used":506.06,"free":3569.14},{"epoch":26113708,"idl":99.62,"recv":0,"send":0,"writ":0.14,"used":506.05,"free":3569.15},{"epoch":26113709,"idl":99.6,"recv":0,"send":0,"writ":0.54,"used":506.7,"free":3568.49},{"epoch":26113710,"idl":99.59,"recv":0,"send":0,"writ":0.34,"used":506.46,"free":3568.75},{"epoch":26113711,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":506.43,"free":3568.77},{"epoch":26113712,"idl":99.69,"recv":0,"send":0,"writ":0.14,"used":506.41,"free":3568.79},{"epoch":26113713,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":506.39,"free":3568.8},{"epoch":26113714,"idl":99.58,"recv":0,"send":0,"writ":0.59,"used":506.71,"free":3568.48},{"epoch":26113715,"idl":99.66,"recv":0,"send":0,"writ":0.35,"used":506.13,"free":3569.07},{"epoch":26113716,"idl":99.77,"recv":0,"send":0,"writ":0.19,"used":506.09,"free":3569.11},{"epoch":26113717,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.06,"free":3569.14},{"epoch":26113718,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":506.05,"free":3569.15},{"epoch":26113719,"idl":99.33,"recv":0,"send":0,"writ":0.8,"used":506.56,"free":3568.61},{"epoch":26113720,"idl":99.59,"recv":0,"send":0,"writ":0.31,"used":506.45,"free":3568.73},{"epoch":26113721,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.42,"free":3568.77},{"epoch":26113722,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":506.41,"free":3568.77},{"epoch":26113723,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":506.38,"free":3568.8},{"epoch":26113724,"idl":99.6,"recv":0,"send":0,"writ":0.55,"used":506.93,"free":3568.26},{"epoch":26113725,"idl":99.59,"recv":0,"send":0,"writ":0.36,"used":506.37,"free":3568.83},{"epoch":26113726,"idl":98.41,"recv":0,"send":0,"writ":0.19,"used":506.36,"free":3568.84},{"epoch":26113727,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":506.33,"free":3568.87},{"epoch":26113728,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":506.32,"free":3568.88},{"epoch":26113729,"idl":99.43,"recv":0,"send":0,"writ":0.43,"used":506.59,"free":3568.6},{"epoch":26113730,"idl":99.57,"recv":0,"send":0,"writ":0.4,"used":504.87,"free":3570.34},{"epoch":26113731,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":504.88,"free":3570.32},{"epoch":26113732,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":504.94,"free":3570.25},{"epoch":26113733,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":504.92,"free":3570.27},{"epoch":26113734,"idl":99.55,"recv":0,"send":0,"writ":0.3,"used":505.29,"free":3569.89},{"epoch":26113735,"idl":99.52,"recv":0,"send":0,"writ":0.51,"used":505.18,"free":3570.02},{"epoch":26113736,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":505.12,"free":3570.07},{"epoch":26113737,"idl":99.69,"recv":0,"send":0,"writ":0.14,"used":505.11,"free":3570.08},{"epoch":26113738,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":505.08,"free":3570.11},{"epoch":26113739,"idl":99.55,"recv":0,"send":0,"writ":0.32,"used":505.49,"free":3569.69},{"epoch":26113740,"idl":99.4,"recv":0,"send":0,"writ":0.52,"used":506.3,"free":3568.9},{"epoch":26113741,"idl":99.7,"recv":0,"send":0,"writ":0.13,"used":506.29,"free":3568.91},{"epoch":26113742,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":506.26,"free":3568.93},{"epoch":26113743,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.34,"free":3568.84},{"epoch":26113744,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":506.4,"free":3568.78},{"epoch":26113745,"idl":99.41,"recv":0,"send":0,"writ":0.66,"used":506.35,"free":3568.84},{"epoch":26113746,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":505.4,"free":3569.79},{"epoch":26113747,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":505.39,"free":3569.8},{"epoch":26113748,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":505.35,"free":3569.83},{"epoch":26113749,"idl":99.54,"recv":0,"send":0,"writ":0.35,"used":506.31,"free":3568.84},{"epoch":26113750,"idl":99.44,"recv":0,"send":0,"writ":0.78,"used":506.96,"free":3568.21},{"epoch":26113751,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":506.31,"free":3568.86},{"epoch":26113752,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":506.28,"free":3568.88},{"epoch":26113753,"idl":99.72,"recv":0,"send":0,"writ":0.18,"used":506.27,"free":3568.89},{"epoch":26113754,"idl":99.76,"recv":0,"send":0,"writ":0.19,"used":506.24,"free":3568.91},{"epoch":26113755,"idl":99.46,"recv":0,"send":0,"writ":0.76,"used":506.08,"free":3569.09},{"epoch":26113756,"idl":99.72,"recv":0,"send":0,"writ":0.2,"used":506.1,"free":3569.07},{"epoch":26113757,"idl":99.73,"recv":0,"send":0,"writ":0.25,"used":506.42,"free":3568.74},{"epoch":26113758,"idl":99.75,"recv":0,"send":0,"writ":0.19,"used":506.41,"free":3568.75},{"epoch":26113759,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":506.39,"free":3568.78},{"epoch":26113760,"idl":99.38,"recv":0,"send":0,"writ":0.75,"used":506.67,"free":3568.52},{"epoch":26113761,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.11,"free":3569.07},{"epoch":26113762,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":506.09,"free":3569.09},{"epoch":26113763,"idl":99.73,"recv":0,"send":0,"writ":0.17,"used":506.06,"free":3569.12},{"epoch":26113764,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":506.03,"free":3569.15},{"epoch":26113765,"idl":99.43,"recv":0,"send":0,"writ":0.7,"used":506.64,"free":3568.55},{"epoch":26113766,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":506.41,"free":3568.77},{"epoch":26113767,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":506.43,"free":3568.75},{"epoch":26113768,"idl":99.65,"recv":0,"send":0,"writ":0.15,"used":506.4,"free":3568.78},{"epoch":26113769,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":506.39,"free":3568.79},{"epoch":26113770,"idl":99.45,"recv":0,"send":0,"writ":0.7,"used":507.02,"free":3568.17},{"epoch":26113771,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.86,"free":3568.32},{"epoch":26113772,"idl":99.7,"recv":0,"send":0,"writ":0.16,"used":506.83,"free":3568.35},{"epoch":26113773,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":506.81,"free":3568.36},{"epoch":26113774,"idl":99.68,"recv":0,"send":0,"writ":0.17,"used":506.79,"free":3568.38},{"epoch":26113775,"idl":99.5,"recv":0,"send":0,"writ":0.46,"used":506.69,"free":3568.5},{"epoch":26113776,"idl":99.71,"recv":0,"send":0,"writ":0.38,"used":506.27,"free":3568.91},{"epoch":26113777,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.3,"free":3568.87},{"epoch":26113778,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.42,"free":3568.75},{"epoch":26113779,"idl":99.61,"recv":0,"send":0,"writ":0.29,"used":506.39,"free":3568.75},{"epoch":26113780,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":506.64,"free":3568.52},{"epoch":26113781,"idl":99.64,"recv":0,"send":0,"writ":0.57,"used":507.03,"free":3568.13},{"epoch":26113782,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.6,"free":3568.55},{"epoch":26113783,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":506.56,"free":3568.58},{"epoch":26113784,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":506.55,"free":3568.59},{"epoch":26113785,"idl":99.71,"recv":0,"send":0,"writ":0.36,"used":506.3,"free":3568.86},{"epoch":26113786,"idl":99.19,"recv":0,"send":0,"writ":0.6,"used":506.97,"free":3568.19},{"epoch":26113787,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":506.75,"free":3568.4},{"epoch":26113788,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":506.82,"free":3568.34},{"epoch":26113789,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.89,"free":3568.27},{"epoch":26113790,"idl":99.32,"recv":0,"send":0,"writ":0.35,"used":506.65,"free":3568.52},{"epoch":26113791,"idl":99.62,"recv":0,"send":0,"writ":0.55,"used":506.99,"free":3568.18},{"epoch":26113792,"idl":99.72,"recv":0,"send":0,"writ":0.18,"used":506.6,"free":3568.57},{"epoch":26113793,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":506.59,"free":3568.57},{"epoch":26113794,"idl":99.72,"recv":0,"send":0,"writ":0.18,"used":506.56,"free":3568.6},{"epoch":26113795,"idl":99.56,"recv":0,"send":0,"writ":0.34,"used":506.4,"free":3568.78},{"epoch":26113796,"idl":99.55,"recv":0.01,"send":0.01,"writ":0.54,"used":505.94,"free":3569.23},{"epoch":26113797,"idl":99.73,"recv":0,"send":0,"writ":0.19,"used":505.64,"free":3569.53},{"epoch":26113798,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":505.61,"free":3569.55},{"epoch":26113799,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":505.59,"free":3569.57},{"epoch":26113800,"idl":99.39,"recv":0,"send":0,"writ":0.36,"used":505.12,"free":3570.06},{"epoch":26113801,"idl":99.52,"recv":0,"send":0,"writ":0.54,"used":506.18,"free":3568.99},{"epoch":26113802,"idl":99.59,"recv":0,"send":0,"writ":0.14,"used":506.04,"free":3569.13},{"epoch":26113803,"idl":99.69,"recv":0,"send":0,"writ":0.15,"used":506.01,"free":3569.15},{"epoch":26113804,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":506.01,"free":3569.15},{"epoch":26113805,"idl":99.61,"recv":0,"send":0,"writ":0.29,"used":504.81,"free":3570.37},{"epoch":26113806,"idl":99.58,"recv":0,"send":0,"writ":0.41,"used":505.42,"free":3569.75},{"epoch":26113807,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":505.65,"free":3569.52},{"epoch":26113808,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":505.65,"free":3569.52},{"epoch":26113809,"idl":99.41,"recv":0,"send":0,"writ":0.34,"used":505.38,"free":3569.76},{"epoch":26113810,"idl":99.66,"recv":0,"send":0,"writ":0.28,"used":506.11,"free":3569.05},{"epoch":26113811,"idl":99.64,"recv":0,"send":0,"writ":0.39,"used":506.43,"free":3568.73},{"epoch":26113812,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":505.83,"free":3569.31},{"epoch":26113813,"idl":99.61,"recv":0,"send":0,"writ":0.15,"used":505.79,"free":3569.34},{"epoch":26113814,"idl":99.65,"recv":0,"send":0,"writ":0.14,"used":505.78,"free":3569.36},{"epoch":26113815,"idl":99.61,"recv":0,"send":0,"writ":0.29,"used":505.53,"free":3569.62},{"epoch":26113816,"idl":99.68,"recv":0,"send":0,"writ":0.16,"used":505.5,"free":3569.64},{"epoch":26113817,"idl":99.49,"recv":0,"send":0,"writ":0.59,"used":506.74,"free":3568.41},{"epoch":26113818,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":506.14,"free":3569},{"epoch":26113819,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.1,"free":3569.03},{"epoch":26113820,"idl":99.66,"recv":0,"send":0,"writ":0.33,"used":505.15,"free":3570},{"epoch":26113821,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":505.1,"free":3570.05},{"epoch":26113822,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":506.12,"free":3569.03},{"epoch":26113823,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":505.55,"free":3569.59},{"epoch":26113824,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.54,"free":3569.59},{"epoch":26113825,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":505.52,"free":3569.63},{"epoch":26113826,"idl":99.81,"recv":0,"send":0,"writ":0.12,"used":505.52,"free":3569.63},{"epoch":26113827,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":506.16,"free":3568.98},{"epoch":26113828,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.98,"free":3569.16},{"epoch":26113829,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.14,"free":3568.99},{"epoch":26113830,"idl":99.66,"recv":0,"send":0,"writ":0.33,"used":506.26,"free":3568.89},{"epoch":26113831,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.14,"free":3569},{"epoch":26113832,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":506.48,"free":3568.66},{"epoch":26113833,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.1,"free":3569.04},{"epoch":26113834,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.08,"free":3569.05},{"epoch":26113835,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":506.08,"free":3569.07},{"epoch":26113836,"idl":99.81,"recv":0,"send":0.03,"writ":0.19,"used":506.04,"free":3569.1},{"epoch":26113837,"idl":99.7,"recv":0.02,"send":0.63,"writ":0.53,"used":506.5,"free":3568.64},{"epoch":26113838,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":506.25,"free":3568.88},{"epoch":26113839,"idl":99.57,"recv":0,"send":0,"writ":0.41,"used":506,"free":3569.12},{"epoch":26113840,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":506.02,"free":3569.11},{"epoch":26113841,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.13,"free":3569},{"epoch":26113842,"idl":99.61,"recv":0,"send":0,"writ":0.55,"used":506.72,"free":3568.41},{"epoch":26113843,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":505.6,"free":3569.53},{"epoch":26113844,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":505.59,"free":3569.57},{"epoch":26113845,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":505.82,"free":3569.36},{"epoch":26113846,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.8,"free":3569.37},{"epoch":26113847,"idl":99.7,"recv":0,"send":0,"writ":0.49,"used":506.25,"free":3568.92},{"epoch":26113848,"idl":99.87,"recv":0,"send":0,"writ":0.23,"used":505.27,"free":3569.89},{"epoch":26113849,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.25,"free":3569.91},{"epoch":26113850,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":506.23,"free":3568.95},{"epoch":26113851,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":506.21,"free":3568.96},{"epoch":26113852,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.33,"free":3568.83},{"epoch":26113853,"idl":99.51,"recv":0,"send":0,"writ":0.54,"used":506.72,"free":3568.45},{"epoch":26113854,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.35,"free":3568.81},{"epoch":26113855,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":505.85,"free":3569.32},{"epoch":26113856,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.83,"free":3569.34},{"epoch":26113857,"idl":99.78,"recv":0,"send":0,"writ":0.13,"used":505.81,"free":3569.36},{"epoch":26113858,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":506.53,"free":3568.62},{"epoch":26113859,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":506.25,"free":3568.9},{"epoch":26113860,"idl":99.37,"recv":0,"send":0,"writ":0.32,"used":506.03,"free":3569.14},{"epoch":26113861,"idl":99.75,"recv":0,"send":0,"writ":0.13,"used":505.99,"free":3569.18},{"epoch":26113862,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":505.98,"free":3569.19},{"epoch":26113863,"idl":99.66,"recv":0,"send":0,"writ":0.61,"used":506.43,"free":3568.72},{"epoch":26113864,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":506.1,"free":3569.05},{"epoch":26113865,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":506.33,"free":3568.84},{"epoch":26113866,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.32,"free":3568.85},{"epoch":26113867,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.29,"free":3568.87},{"epoch":26113868,"idl":94.78,"recv":0.27,"send":0.01,"writ":78.75,"used":519.65,"free":3555.76},{"epoch":26113869,"idl":99.39,"recv":0,"send":0,"writ":181.48,"used":508.11,"free":3566.87},{"epoch":26113870,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":508.33,"free":3566.68},{"epoch":26113871,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":508.3,"free":3566.7},{"epoch":26113872,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":508.29,"free":3566.71},{"epoch":26113873,"idl":99.69,"recv":0,"send":0,"writ":0.59,"used":508.1,"free":3566.9},{"epoch":26113874,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.08,"free":3568.93},{"epoch":26113875,"idl":99.6,"recv":0,"send":0,"writ":0.29,"used":505.43,"free":3569.61},{"epoch":26113876,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":505.51,"free":3569.52},{"epoch":26113877,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":505.49,"free":3569.54},{"epoch":26113878,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":505.79,"free":3569.24},{"epoch":26113879,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":504.96,"free":3570.08},{"epoch":26113880,"idl":99.68,"recv":0.02,"send":0.74,"writ":0.33,"used":505.19,"free":3569.86},{"epoch":26113881,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":505.18,"free":3569.87},{"epoch":26113882,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.15,"free":3569.89},{"epoch":26113883,"idl":99.62,"recv":0,"send":0,"writ":0.4,"used":505.6,"free":3569.43},{"epoch":26113884,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":506.09,"free":3568.94},{"epoch":26113885,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":506.11,"free":3568.94},{"epoch":26113886,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.07,"free":3568.97},{"epoch":26113887,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.22,"free":3568.82},{"epoch":26113888,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.21,"free":3568.82},{"epoch":26113889,"idl":99.62,"recv":0,"send":0,"writ":0.6,"used":507.19,"free":3567.84},{"epoch":26113890,"idl":99.59,"recv":0,"send":0,"writ":0.33,"used":505.96,"free":3569.09},{"epoch":26113891,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":505.92,"free":3569.13},{"epoch":26113892,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":505.91,"free":3569.13},{"epoch":26113893,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":505.88,"free":3569.16},{"epoch":26113894,"idl":99.66,"recv":0,"send":0,"writ":0.57,"used":506.76,"free":3568.28},{"epoch":26113895,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":506.11,"free":3568.94},{"epoch":26113896,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.1,"free":3568.95},{"epoch":26113897,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.06,"free":3568.98},{"epoch":26113898,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.2,"free":3568.84},{"epoch":26113899,"idl":99.54,"recv":0,"send":0,"writ":0.69,"used":506.09,"free":3568.93},{"epoch":26113900,"idl":99.66,"recv":0,"send":0,"writ":0.33,"used":506.21,"free":3568.84},{"epoch":26113901,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.19,"free":3568.85},{"epoch":26113902,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.19,"free":3568.85},{"epoch":26113903,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":506.15,"free":3568.88},{"epoch":26113904,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":505.93,"free":3569.12},{"epoch":26113905,"idl":99.74,"recv":0,"send":0,"writ":0.35,"used":506.11,"free":3568.96},{"epoch":26113906,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":506.1,"free":3568.96},{"epoch":26113907,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.07,"free":3568.99},{"epoch":26113908,"idl":95.68,"recv":0,"send":0,"writ":0.15,"used":506.14,"free":3568.92},{"epoch":26113909,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":506.71,"free":3568.34},{"epoch":26113910,"idl":99.69,"recv":0,"send":0,"writ":0.27,"used":506.76,"free":3568.3},{"epoch":26113911,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.72,"free":3568.34},{"epoch":26113912,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.7,"free":3568.35},{"epoch":26113913,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.67,"free":3568.38},{"epoch":26113914,"idl":99.67,"recv":0,"send":0,"writ":0.43,"used":507.27,"free":3567.78},{"epoch":26113915,"idl":99.58,"recv":0,"send":0,"writ":0.44,"used":506.65,"free":3568.4},{"epoch":26113916,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":506.64,"free":3568.41},{"epoch":26113917,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.61,"free":3568.44},{"epoch":26113918,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.61,"free":3568.44},{"epoch":26113919,"idl":99.71,"recv":0,"send":0,"writ":0.38,"used":506.85,"free":3568.19},{"epoch":26113920,"idl":99.59,"recv":0,"send":0,"writ":0.47,"used":504.62,"free":3570.44},{"epoch":26113921,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":504.75,"free":3570.31},{"epoch":26113922,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":504.77,"free":3570.28},{"epoch":26113923,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":504.74,"free":3570.31},{"epoch":26113924,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":504.72,"free":3570.32},{"epoch":26113925,"idl":99.61,"recv":0,"send":0,"writ":0.69,"used":505.57,"free":3569.49},{"epoch":26113926,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":505.18,"free":3569.87},{"epoch":26113927,"idl":98.15,"recv":0,"send":0,"writ":0.14,"used":505.16,"free":3569.89},{"epoch":26113928,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":505.13,"free":3569.91},{"epoch":26113929,"idl":99.58,"recv":0,"send":0,"writ":0.3,"used":505.82,"free":3569.2},{"epoch":26113930,"idl":99.59,"recv":0,"send":0,"writ":0.68,"used":507.05,"free":3567.99},{"epoch":26113931,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.74,"free":3568.3},{"epoch":26113932,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.71,"free":3568.33},{"epoch":26113933,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.68,"free":3568.35},{"epoch":26113934,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.66,"free":3568.36},{"epoch":26113935,"idl":99.61,"recv":0,"send":0,"writ":0.69,"used":507.48,"free":3567.58},{"epoch":26113936,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.9,"free":3568.16},{"epoch":26113937,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":506.63,"free":3568.43},{"epoch":26113938,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.61,"free":3568.44},{"epoch":26113939,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":506.58,"free":3568.47},{"epoch":26113940,"idl":99.62,"recv":0,"send":0,"writ":0.69,"used":505.86,"free":3569.2},{"epoch":26113941,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":505.51,"free":3569.55},{"epoch":26113942,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":505.48,"free":3569.57},{"epoch":26113943,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":505.47,"free":3569.59},{"epoch":26113944,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":505.39,"free":3569.66},{"epoch":26113945,"idl":99.57,"recv":0,"send":0,"writ":0.59,"used":506.95,"free":3568.11},{"epoch":26113946,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":505.78,"free":3569.28},{"epoch":26113947,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":505.39,"free":3569.66},{"epoch":26113948,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.49,"free":3569.55},{"epoch":26113949,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":505.47,"free":3569.57},{"epoch":26113950,"idl":99.58,"recv":0,"send":0,"writ":0.69,"used":506.13,"free":3568.93},{"epoch":26113951,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":505.45,"free":3569.61},{"epoch":26113952,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":505.42,"free":3569.63},{"epoch":26113953,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":505.4,"free":3569.65},{"epoch":26113954,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":505.38,"free":3569.67},{"epoch":26113955,"idl":99.53,"recv":0,"send":0,"writ":0.56,"used":505.46,"free":3569.59},{"epoch":26113956,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":504.37,"free":3570.68},{"epoch":26113957,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":504.35,"free":3570.69},{"epoch":26113958,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":504.44,"free":3570.61},{"epoch":26113959,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":505.7,"free":3569.32},{"epoch":26113960,"idl":99.51,"recv":0,"send":0,"writ":0.46,"used":506,"free":3569.03},{"epoch":26113961,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":505.96,"free":3569.08},{"epoch":26113962,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":505.93,"free":3569.1},{"epoch":26113963,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":505.91,"free":3569.12},{"epoch":26113964,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":505.89,"free":3569.13},{"epoch":26113965,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":505.9,"free":3569.14},{"epoch":26113966,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":506.62,"free":3568.41},{"epoch":26113967,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":506.09,"free":3568.94},{"epoch":26113968,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":506.08,"free":3568.95},{"epoch":26113969,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.05,"free":3568.97},{"epoch":26113970,"idl":99.68,"recv":0,"send":0,"writ":0.28,"used":505.93,"free":3569.11},{"epoch":26113971,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":506.49,"free":3568.54},{"epoch":26113972,"idl":98.51,"recv":0,"send":0,"writ":0.14,"used":506.19,"free":3568.84},{"epoch":26113973,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.17,"free":3568.85},{"epoch":26113974,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.16,"free":3568.86},{"epoch":26113975,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":504.7,"free":3570.33},{"epoch":26113976,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":505.81,"free":3569.22},{"epoch":26113977,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":506.1,"free":3568.92},{"epoch":26113978,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.08,"free":3568.95},{"epoch":26113979,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":506.06,"free":3568.95},{"epoch":26113980,"idl":99.51,"recv":0,"send":0,"writ":0.3,"used":505.34,"free":3569.7},{"epoch":26113981,"idl":99.68,"recv":0,"send":0,"writ":0.5,"used":506.21,"free":3568.83},{"epoch":26113982,"idl":99.67,"recv":0,"send":0,"writ":0.2,"used":506.48,"free":3568.55},{"epoch":26113983,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.45,"free":3568.57},{"epoch":26113984,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.42,"free":3568.6},{"epoch":26113985,"idl":99.57,"recv":0,"send":0,"writ":0.34,"used":505.05,"free":3569.98},{"epoch":26113986,"idl":99.68,"recv":0,"send":0,"writ":0.53,"used":505.81,"free":3569.22},{"epoch":26113987,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":505.64,"free":3569.38},{"epoch":26113988,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":505.61,"free":3569.41},{"epoch":26113989,"idl":99.6,"recv":0,"send":0,"writ":0.29,"used":505.6,"free":3569.4},{"epoch":26113990,"idl":99.61,"recv":0,"send":0,"writ":0.34,"used":506.07,"free":3568.95},{"epoch":26113991,"idl":99.62,"recv":0,"send":0,"writ":0.35,"used":506.58,"free":3568.43},{"epoch":26113992,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":505.99,"free":3569.02},{"epoch":26113993,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.98,"free":3569.03},{"epoch":26113994,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.95,"free":3569.08},{"epoch":26113995,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":506.18,"free":3568.87},{"epoch":26113996,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.17,"free":3568.87},{"epoch":26113997,"idl":99.63,"recv":0,"send":0,"writ":0.61,"used":505.24,"free":3569.8},{"epoch":26113998,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":504.65,"free":3570.39},{"epoch":26113999,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":504.63,"free":3570.41},{"epoch":26114000,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":506.08,"free":3568.97},{"epoch":26114001,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":506.08,"free":3568.97},{"epoch":26114002,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":506.14,"free":3568.9},{"epoch":26114003,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":505.72,"free":3569.31},{"epoch":26114004,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.46,"used":505.92,"free":3569.11},{"epoch":26114005,"idl":99.66,"recv":0,"send":0,"writ":0.36,"used":505.78,"free":3569.26},{"epoch":26114006,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":505.62,"free":3569.41},{"epoch":26114007,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":505.67,"free":3569.36},{"epoch":26114008,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":505.09,"free":3569.94},{"epoch":26114009,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":505.08,"free":3569.95},{"epoch":26114010,"idl":99.58,"recv":0,"send":0,"writ":0.34,"used":506.51,"free":3568.55},{"epoch":26114011,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.46,"free":3568.6},{"epoch":26114012,"idl":99.65,"recv":0,"send":0,"writ":0.59,"used":506.98,"free":3568.08},{"epoch":26114013,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.18,"free":3568.86},{"epoch":26114014,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.16,"free":3568.88},{"epoch":26114015,"idl":99.56,"recv":0,"send":0,"writ":0.32,"used":505.68,"free":3569.38},{"epoch":26114016,"idl":99.77,"recv":0.01,"send":0,"writ":0.18,"used":505.67,"free":3569.39},{"epoch":26114017,"idl":99.7,"recv":0,"send":0,"writ":0.42,"used":506.27,"free":3568.78},{"epoch":26114018,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":506.38,"free":3568.67},{"epoch":26114019,"idl":99.62,"recv":0,"send":0,"writ":0.32,"used":506.12,"free":3568.91},{"epoch":26114020,"idl":99.63,"recv":0,"send":0,"writ":0.32,"used":505.4,"free":3569.64},{"epoch":26114021,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":505.35,"free":3569.69},{"epoch":26114022,"idl":99.61,"recv":0,"send":0,"writ":0.58,"used":505.87,"free":3569.17},{"epoch":26114023,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.34,"free":3568.7},{"epoch":26114024,"idl":99.73,"recv":0.01,"send":0,"writ":0.14,"used":506.37,"free":3568.65},{"epoch":26114025,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":506.08,"free":3568.96},{"epoch":26114026,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.11,"free":3568.93},{"epoch":26114027,"idl":99.58,"recv":0,"send":0,"writ":0.57,"used":506.65,"free":3568.39},{"epoch":26114028,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":506.68,"free":3568.35},{"epoch":26114029,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.65,"free":3568.38},{"epoch":26114030,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":506.66,"free":3568.39},{"epoch":26114031,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.64,"free":3568.41},{"epoch":26114032,"idl":99.67,"recv":0,"send":0,"writ":0.17,"used":506.94,"free":3568.1},{"epoch":26114033,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":506.46,"free":3568.58},{"epoch":26114034,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.08,"free":3568.95},{"epoch":26114035,"idl":99.59,"recv":0,"send":0,"writ":0.31,"used":506.33,"free":3568.72},{"epoch":26114036,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.3,"free":3568.74},{"epoch":26114037,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.33,"free":3568.71},{"epoch":26114038,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":506.66,"free":3568.37},{"epoch":26114039,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.21,"free":3568.81},{"epoch":26114040,"idl":99.59,"recv":0,"send":0,"writ":0.34,"used":506.45,"free":3568.59},{"epoch":26114041,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":506.43,"free":3568.61},{"epoch":26114042,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.38,"free":3568.65},{"epoch":26114043,"idl":99.62,"recv":0,"send":0,"writ":0.57,"used":506.49,"free":3568.54},{"epoch":26114044,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.07,"free":3568.96},{"epoch":26114045,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":506.36,"free":3568.69},{"epoch":26114046,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":506.48,"free":3568.56},{"epoch":26114047,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":506.45,"free":3568.58},{"epoch":26114048,"idl":99.58,"recv":0,"send":0,"writ":0.54,"used":506.77,"free":3568.25},{"epoch":26114049,"idl":99.5,"recv":0,"send":0,"writ":0.32,"used":506.66,"free":3568.33},{"epoch":26114050,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":506.48,"free":3568.53},{"epoch":26114051,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":506.37,"free":3568.64},{"epoch":26114052,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.34,"free":3568.66},{"epoch":26114053,"idl":99.62,"recv":0,"send":0,"writ":0.58,"used":507.16,"free":3567.83},{"epoch":26114054,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":506.54,"free":3568.45},{"epoch":26114055,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":506.6,"free":3568.42},{"epoch":26114056,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":506.71,"free":3568.3},{"epoch":26114057,"idl":99.75,"recv":0,"send":0,"writ":0.23,"used":506.45,"free":3568.56},{"epoch":26114058,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":507.05,"free":3567.95},{"epoch":26114059,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":506.63,"free":3568.36},{"epoch":26114060,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":505.7,"free":3569.31},{"epoch":26114061,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":505.63,"free":3569.38},{"epoch":26114062,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":505.62,"free":3569.38},{"epoch":26114063,"idl":99.69,"recv":0,"send":0,"writ":0.45,"used":506.19,"free":3568.81},{"epoch":26114064,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":506.32,"free":3568.67},{"epoch":26114065,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":506.11,"free":3568.9},{"epoch":26114066,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.05,"free":3568.95},{"epoch":26114067,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.14,"free":3568.86},{"epoch":26114068,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.19,"free":3568.81},{"epoch":26114069,"idl":99.66,"recv":0,"send":0,"writ":0.57,"used":506.52,"free":3568.49},{"epoch":26114070,"idl":99.61,"recv":0.02,"send":0.48,"writ":0.35,"used":506.14,"free":3568.88},{"epoch":26114071,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":506.18,"free":3568.84},{"epoch":26114072,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.18,"free":3568.84},{"epoch":26114073,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.16,"free":3568.85},{"epoch":26114074,"idl":99.59,"recv":0,"send":0,"writ":0.56,"used":506.89,"free":3568.11},{"epoch":26114075,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":505.17,"free":3569.86},{"epoch":26114076,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":505.13,"free":3569.89},{"epoch":26114077,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.1,"free":3569.91},{"epoch":26114078,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":505.07,"free":3569.94},{"epoch":26114079,"idl":99.37,"recv":0,"send":0,"writ":0.68,"used":506.88,"free":3568.11},{"epoch":26114080,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":506.52,"free":3568.48},{"epoch":26114081,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":506.66,"free":3568.33},{"epoch":26114082,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.67,"free":3568.33},{"epoch":26114083,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.64,"free":3568.35},{"epoch":26114084,"idl":99.64,"recv":0,"send":0,"writ":0.54,"used":507.17,"free":3567.83},{"epoch":26114085,"idl":99.65,"recv":0,"send":0,"writ":0.34,"used":506.37,"free":3568.65},{"epoch":26114086,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.35,"free":3568.67},{"epoch":26114087,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":506.33,"free":3568.68},{"epoch":26114088,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.32,"free":3568.69},{"epoch":26114089,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":506.75,"free":3568.25},{"epoch":26114090,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":506.78,"free":3568.23},{"epoch":26114091,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":506.76,"free":3568.25},{"epoch":26114092,"idl":99.05,"recv":0,"send":0,"writ":0.16,"used":506.78,"free":3568.23},{"epoch":26114093,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.94,"free":3568.08},{"epoch":26114094,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":507.18,"free":3567.84},{"epoch":26114095,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":506.67,"free":3568.36},{"epoch":26114096,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":505.94,"free":3569.09},{"epoch":26114097,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":505.88,"free":3569.14},{"epoch":26114098,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":505.86,"free":3569.16},{"epoch":26114099,"idl":99.6,"recv":0,"send":0,"writ":0.49,"used":506.26,"free":3568.76},{"epoch":26114100,"idl":99.35,"recv":0,"send":0,"writ":0.42,"used":504.84,"free":3570.21},{"epoch":26114101,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":504.85,"free":3570.2},{"epoch":26114102,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":504.97,"free":3570.07},{"epoch":26114103,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":504.95,"free":3570.09},{"epoch":26114104,"idl":99.64,"recv":0.01,"send":0.17,"writ":0.77,"used":505.64,"free":3569.38},{"epoch":26114105,"idl":99.58,"recv":0.01,"send":0.06,"writ":0.45,"used":506.06,"free":3568.97},{"epoch":26114106,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.03,"free":3569},{"epoch":26114107,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.06,"free":3568.96},{"epoch":26114108,"idl":99.87,"recv":0,"send":0.01,"writ":0.18,"used":506.14,"free":3568.87},{"epoch":26114109,"idl":99.52,"recv":0.01,"send":0.02,"writ":0.35,"used":505.84,"free":3569.15},{"epoch":26114110,"idl":99.29,"recv":0,"send":0,"writ":0.73,"used":505.96,"free":3569.04},{"epoch":26114111,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":505.4,"free":3569.59},{"epoch":26114112,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":505.37,"free":3569.62},{"epoch":26114113,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":505.36,"free":3569.63},{"epoch":26114114,"idl":99.85,"recv":0,"send":0.01,"writ":0.18,"used":505.33,"free":3569.68},{"epoch":26114115,"idl":99.45,"recv":0,"send":0.02,"writ":0.75,"used":505.86,"free":3569.17},{"epoch":26114116,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.51,"free":3569.52},{"epoch":26114117,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":505.56,"free":3569.47},{"epoch":26114118,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.65,"free":3569.38},{"epoch":26114119,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":505.63,"free":3569.4},{"epoch":26114120,"idl":99.51,"recv":0,"send":0,"writ":0.71,"used":506.21,"free":3568.84},{"epoch":26114121,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":506.1,"free":3568.95},{"epoch":26114122,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.08,"free":3568.96},{"epoch":26114123,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.05,"free":3568.99},{"epoch":26114124,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.04,"free":3569},{"epoch":26114125,"idl":99.54,"recv":0,"send":0,"writ":0.76,"used":505.58,"free":3569.47},{"epoch":26114126,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":505.04,"free":3570.01},{"epoch":26114127,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":505.01,"free":3570.04},{"epoch":26114128,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":505.14,"free":3569.9},{"epoch":26114129,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":505.15,"free":3569.88},{"epoch":26114130,"idl":99.61,"recv":0,"send":0,"writ":0.57,"used":506.15,"free":3568.91},{"epoch":26114131,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":505.38,"free":3569.67},{"epoch":26114132,"idl":99.77,"recv":0,"send":0,"writ":0.17,"used":505.35,"free":3569.69},{"epoch":26114133,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":505.34,"free":3569.7},{"epoch":26114134,"idl":99.87,"recv":0,"send":0.01,"writ":0.18,"used":505.3,"free":3569.74},{"epoch":26114135,"idl":99.52,"recv":0.01,"send":0.19,"writ":0.79,"used":506.72,"free":3568.33},{"epoch":26114136,"idl":99.84,"recv":0,"send":0.01,"writ":0.24,"used":506.02,"free":3569.02},{"epoch":26114137,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.12,"free":3568.91},{"epoch":26114138,"idl":99.88,"recv":0.02,"send":0.53,"writ":0.26,"used":506.11,"free":3568.92},{"epoch":26114139,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":506,"free":3569.01},{"epoch":26114140,"idl":99.57,"recv":0,"send":0,"writ":0.59,"used":506.53,"free":3568.49},{"epoch":26114141,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":506.13,"free":3568.89},{"epoch":26114142,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.13,"free":3568.88},{"epoch":26114143,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":506.1,"free":3568.91},{"epoch":26114144,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":506.09,"free":3568.91},{"epoch":26114145,"idl":99.72,"recv":0,"send":0,"writ":0.35,"used":506.09,"free":3568.93},{"epoch":26114146,"idl":99.63,"recv":0,"send":0,"writ":0.59,"used":506.65,"free":3568.37},{"epoch":26114147,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":506.31,"free":3568.7},{"epoch":26114148,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":506.28,"free":3568.73},{"epoch":26114149,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":506.27,"free":3568.73},{"epoch":26114150,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":506.02,"free":3569},{"epoch":26114151,"idl":99.6,"recv":0,"send":0,"writ":0.62,"used":506.36,"free":3568.66},{"epoch":26114152,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506,"free":3569.01},{"epoch":26114153,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.14,"free":3568.86},{"epoch":26114154,"idl":99.77,"recv":0.01,"send":0.41,"writ":0.25,"used":506.09,"free":3568.91},{"epoch":26114155,"idl":99.71,"recv":0,"send":0,"writ":0.35,"used":506.32,"free":3568.7},{"epoch":26114156,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":506.29,"free":3568.72},{"epoch":26114157,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":505.78,"free":3569.22},{"epoch":26114158,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":505.75,"free":3569.25},{"epoch":26114159,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":505.74,"free":3569.25},{"epoch":26114160,"idl":99.49,"recv":0,"send":0,"writ":0.29,"used":505.92,"free":3569.09},{"epoch":26114161,"idl":99.64,"recv":0,"send":0,"writ":0.81,"used":506.66,"free":3568.34},{"epoch":26114162,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":505.87,"free":3569.13},{"epoch":26114163,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":505.87,"free":3569.13},{"epoch":26114164,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":505.84,"free":3569.15},{"epoch":26114165,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":506.33,"free":3568.68},{"epoch":26114166,"idl":99.7,"recv":0,"send":0,"writ":0.68,"used":506.7,"free":3568.3},{"epoch":26114167,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":505.81,"free":3569.19},{"epoch":26114168,"idl":99.8,"recv":0,"send":0.01,"writ":0.18,"used":505.75,"free":3569.25},{"epoch":26114169,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":506.21,"free":3568.76},{"epoch":26114170,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":506.28,"free":3568.71},{"epoch":26114171,"idl":99.65,"recv":0,"send":0,"writ":0.41,"used":506.81,"free":3568.17},{"epoch":26114172,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":506.11,"free":3568.87},{"epoch":26114173,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":506.11,"free":3568.87},{"epoch":26114174,"idl":99.62,"recv":0,"send":0,"writ":0.16,"used":506.08,"free":3568.89},{"epoch":26114175,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":506.55,"free":3568.43},{"epoch":26114176,"idl":99.55,"recv":0,"send":0,"writ":0.33,"used":506.84,"free":3568.14},{"epoch":26114177,"idl":99.7,"recv":0,"send":0,"writ":0.42,"used":505.78,"free":3569.2},{"epoch":26114178,"idl":99.67,"recv":0,"send":0,"writ":0.17,"used":505.77,"free":3569.21},{"epoch":26114179,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":505.74,"free":3569.23},{"epoch":26114180,"idl":99.7,"recv":0,"send":0,"writ":0.36,"used":505.75,"free":3569.24},{"epoch":26114181,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":505.78,"free":3569.2},{"epoch":26114182,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":506.25,"free":3568.72},{"epoch":26114183,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":505.86,"free":3569.11},{"epoch":26114184,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":505.85,"free":3569.12},{"epoch":26114185,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":506.14,"free":3568.84},{"epoch":26114186,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.06,"free":3568.92},{"epoch":26114187,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":506.58,"free":3568.39},{"epoch":26114188,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.26,"free":3568.71},{"epoch":26114189,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":506.24,"free":3568.71},{"epoch":26114190,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":506,"free":3568.98},{"epoch":26114191,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":505.97,"free":3569},{"epoch":26114192,"idl":99.63,"recv":0,"send":0,"writ":0.6,"used":506.8,"free":3568.16},{"epoch":26114193,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":506.61,"free":3568.36},{"epoch":26114194,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":506.58,"free":3568.38},{"epoch":26114195,"idl":99.59,"recv":0,"send":0,"writ":0.31,"used":506.33,"free":3568.64},{"epoch":26114196,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":506.31,"free":3568.65},{"epoch":26114197,"idl":99.63,"recv":0,"send":0,"writ":0.48,"used":505.95,"free":3569.02},{"epoch":26114198,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":505.04,"free":3569.91},{"epoch":26114199,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":506.27,"free":3568.66},{"epoch":26114200,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":506.33,"free":3568.63},{"epoch":26114201,"idl":99.87,"recv":0,"send":0.01,"writ":0.22,"used":506.21,"free":3568.74},{"epoch":26114202,"idl":99.62,"recv":0,"send":0,"writ":0.63,"used":506.69,"free":3568.25},{"epoch":26114203,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":506.06,"free":3568.85},{"epoch":26114204,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":506.05,"free":3568.87},{"epoch":26114205,"idl":99.62,"recv":0,"send":0,"writ":0.35,"used":506.05,"free":3568.9},{"epoch":26114206,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":506.04,"free":3568.91},{"epoch":26114207,"idl":99.49,"recv":0,"send":0,"writ":0.44,"used":506.48,"free":3568.46},{"epoch":26114208,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":506.49,"free":3568.45},{"epoch":26114209,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.46,"free":3568.47},{"epoch":26114210,"idl":99.56,"recv":0,"send":0,"writ":0.3,"used":505.53,"free":3569.42},{"epoch":26114211,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":505.46,"free":3569.48},{"epoch":26114212,"idl":99.61,"recv":0,"send":0,"writ":0.45,"used":505.83,"free":3569.11},{"epoch":26114213,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":505.42,"free":3569.52},{"epoch":26114214,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":505.47,"free":3569.46},{"epoch":26114215,"idl":99.6,"recv":0,"send":0,"writ":0.3,"used":506.8,"free":3568.15},{"epoch":26114216,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.81,"free":3568.14},{"epoch":26114217,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":506.78,"free":3568.16},{"epoch":26114218,"idl":99.62,"recv":0,"send":0,"writ":0.56,"used":506.9,"free":3568.03},{"epoch":26114219,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":506.49,"free":3568.43},{"epoch":26114220,"idl":99.5,"recv":0,"send":0,"writ":0.3,"used":505.53,"free":3569.41},{"epoch":26114221,"idl":99.68,"recv":0,"send":0,"writ":0.16,"used":505.5,"free":3569.44},{"epoch":26114222,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":505.48,"free":3569.46},{"epoch":26114223,"idl":99.61,"recv":0,"send":0,"writ":0.55,"used":505.81,"free":3569.12},{"epoch":26114224,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":505.44,"free":3569.49},{"epoch":26114225,"idl":99.63,"recv":0,"send":0,"writ":0.34,"used":505.92,"free":3569.03},{"epoch":26114226,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":505.96,"free":3568.98},{"epoch":26114227,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":506.09,"free":3568.84},{"epoch":26114228,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":506.78,"free":3568.15},{"epoch":26114229,"idl":99.55,"recv":0,"send":0,"writ":0.29,"used":506.8,"free":3568.1},{"epoch":26114230,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":506.56,"free":3568.36},{"epoch":26114231,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":506.53,"free":3568.39},{"epoch":26114232,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":506.5,"free":3568.41},{"epoch":26114233,"idl":94.48,"recv":0.36,"send":0.01,"writ":197.12,"used":520.71,"free":3554.48},{"epoch":26114234,"idl":99.71,"recv":0,"send":0,"writ":64.14,"used":508.98,"free":3565.69},{"epoch":26114235,"idl":99.61,"recv":0,"send":0,"writ":0.37,"used":509.02,"free":3565.67},{"epoch":26114236,"idl":99.74,"recv":0.05,"send":2.03,"writ":0.27,"used":509.14,"free":3565.56},{"epoch":26114237,"idl":99.74,"recv":0,"send":0.02,"writ":0.35,"used":509.11,"free":3565.56},{"epoch":26114238,"idl":99.6,"recv":0,"send":0.01,"writ":0.66,"used":507.97,"free":3566.71},{"epoch":26114239,"idl":99.78,"recv":0,"send":0,"writ":0.22,"used":505.15,"free":3569.54},{"epoch":26114240,"idl":99.63,"recv":0,"send":0,"writ":0.31,"used":506.6,"free":3568.12},{"epoch":26114241,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":506.6,"free":3568.11},{"epoch":26114242,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":506.6,"free":3568.11},{"epoch":26114243,"idl":99.53,"recv":0,"send":0,"writ":0.41,"used":506.12,"free":3568.58},{"epoch":26114244,"idl":99.7,"recv":0,"send":0,"writ":0.33,"used":505.82,"free":3568.88},{"epoch":26114245,"idl":99.68,"recv":0,"send":0.01,"writ":0.38,"used":506.02,"free":3568.7},{"epoch":26114246,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":505.72,"free":3569},{"epoch":26114247,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":505.71,"free":3569},{"epoch":26114248,"idl":99.65,"recv":0,"send":0,"writ":0.43,"used":506,"free":3568.71},{"epoch":26114249,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":505.42,"free":3569.28},{"epoch":26114250,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":505.9,"free":3568.82},{"epoch":26114251,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":505.9,"free":3568.82},{"epoch":26114252,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":505.88,"free":3568.83},{"epoch":26114253,"idl":99.68,"recv":0,"send":0,"writ":0.39,"used":506.17,"free":3568.54},{"epoch":26114254,"idl":99.76,"recv":0,"send":0,"writ":0.37,"used":504.35,"free":3570.35},{"epoch":26114255,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":505.11,"free":3569.61},{"epoch":26114256,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":505.26,"free":3569.46},{"epoch":26114257,"idl":99.76,"recv":0.01,"send":0.03,"writ":0.23,"used":505.19,"free":3569.52},{"epoch":26114258,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":505.15,"free":3569.56},{"epoch":26114259,"idl":99.39,"recv":0,"send":0,"writ":0.72,"used":506.6,"free":3568.08},{"epoch":26114260,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":505.85,"free":3568.84},{"epoch":26114261,"idl":99.73,"recv":0,"send":0.01,"writ":0.19,"used":505.89,"free":3568.8},{"epoch":26114262,"idl":99.69,"recv":0,"send":0.02,"writ":0.23,"used":505.98,"free":3568.71},{"epoch":26114263,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":505.94,"free":3568.74},{"epoch":26114264,"idl":99.56,"recv":0.01,"send":0.13,"writ":0.61,"used":505.84,"free":3568.85},{"epoch":26114265,"idl":99.6,"recv":0.01,"send":0.14,"writ":0.35,"used":504.72,"free":3569.99},{"epoch":26114266,"idl":99.73,"recv":0,"send":0,"writ":0.23,"used":504.64,"free":3570.06},{"epoch":26114267,"idl":99.72,"recv":0,"send":0,"writ":0.17,"used":504.61,"free":3570.09},{"epoch":26114268,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":504.63,"free":3570.05},{"epoch":26114269,"idl":99.58,"recv":0,"send":0,"writ":0.5,"used":505.87,"free":3568.81},{"epoch":26114270,"idl":98.88,"recv":0,"send":0,"writ":0.41,"used":506.21,"free":3568.49},{"epoch":26114271,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":506.18,"free":3568.51},{"epoch":26114272,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":506.17,"free":3568.52},{"epoch":26114273,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":506.14,"free":3568.54},{"epoch":26114274,"idl":99.63,"recv":0,"send":0,"writ":0.43,"used":505.86,"free":3568.82},{"epoch":26114275,"idl":99.66,"recv":0,"send":0,"writ":0.43,"used":505.13,"free":3569.56},{"epoch":26114276,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":505.13,"free":3569.57},{"epoch":26114277,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":505.1,"free":3569.59},{"epoch":26114278,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":505.08,"free":3569.6},{"epoch":26114279,"idl":99.67,"recv":0,"send":0,"writ":0.49,"used":505.71,"free":3568.97},{"epoch":26114280,"idl":99.48,"recv":0,"send":0,"writ":0.35,"used":505.28,"free":3569.42},{"epoch":26114281,"idl":99.78,"recv":0,"send":0,"writ":0.13,"used":505.23,"free":3569.46},{"epoch":26114282,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":505.22,"free":3569.47},{"epoch":26114283,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":505.19,"free":3569.5},{"epoch":26114284,"idl":99.62,"recv":0.01,"send":0.04,"writ":0.57,"used":505.53,"free":3569.15},{"epoch":26114285,"idl":99.58,"recv":0,"send":0,"writ":0.39,"used":505.59,"free":3569.1},{"epoch":26114286,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":505.59,"free":3569.11},{"epoch":26114287,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":505.59,"free":3569.1},{"epoch":26114288,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":505.72,"free":3568.97},{"epoch":26114289,"idl":99.48,"recv":0,"send":0,"writ":0.45,"used":505.86,"free":3568.8},{"epoch":26114290,"idl":99.67,"recv":0,"send":0,"writ":0.49,"used":506.19,"free":3568.49},{"epoch":26114291,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":506.18,"free":3568.49},{"epoch":26114292,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":506.15,"free":3568.52},{"epoch":26114293,"idl":99.69,"recv":0,"send":0,"writ":0.14,"used":506.09,"free":3568.57},{"epoch":26114294,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":505.87,"free":3568.79},{"epoch":26114295,"idl":99.55,"recv":0,"send":0,"writ":0.68,"used":506.91,"free":3567.77},{"epoch":26114296,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":506.1,"free":3568.58},{"epoch":26114297,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":506.08,"free":3568.59},{"epoch":26114298,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":506.05,"free":3568.61},{"epoch":26114299,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.08,"free":3568.58},{"epoch":26114300,"idl":99.51,"recv":0,"send":0,"writ":0.67,"used":506.66,"free":3568.01},{"epoch":26114301,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":506.25,"free":3568.43},{"epoch":26114302,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.22,"free":3568.45},{"epoch":26114303,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.21,"free":3568.46},{"epoch":26114304,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":506.18,"free":3568.48},{"epoch":26114305,"idl":99.53,"recv":0,"send":0,"writ":0.69,"used":506.53,"free":3568.14},{"epoch":26114306,"idl":99.78,"recv":0.01,"send":0.03,"writ":0.19,"used":505.89,"free":3568.78},{"epoch":26114307,"idl":99.82,"recv":0,"send":0,"writ":0.22,"used":505.83,"free":3568.83},{"epoch":26114308,"idl":99.75,"recv":0,"send":0,"writ":0.2,"used":505.87,"free":3568.78},{"epoch":26114309,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":505.98,"free":3568.67},{"epoch":26114310,"idl":99.51,"recv":0,"send":0,"writ":0.57,"used":506.78,"free":3567.89},{"epoch":26114311,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":506.21,"free":3568.46},{"epoch":26114312,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":506.19,"free":3568.47},{"epoch":26114313,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.17,"free":3568.49},{"epoch":26114314,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.15,"free":3568.5},{"epoch":26114315,"idl":99.36,"recv":0,"send":0.01,"writ":0.77,"used":506.88,"free":3567.79},{"epoch":26114316,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":506.36,"free":3568.3},{"epoch":26114317,"idl":99.79,"recv":0,"send":0,"writ":0.21,"used":506.33,"free":3568.33},{"epoch":26114318,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":506.31,"free":3568.35},{"epoch":26114319,"idl":99.55,"recv":0,"send":0,"writ":0.31,"used":506.42,"free":3568.22},{"epoch":26114320,"idl":99.53,"recv":0,"send":0,"writ":0.33,"used":506.41,"free":3568.24},{"epoch":26114321,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":506.55,"free":3568.1},{"epoch":26114322,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":506.19,"free":3568.45},{"epoch":26114323,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.16,"free":3568.48},{"epoch":26114324,"idl":99.76,"recv":0,"send":0,"writ":0.21,"used":506.15,"free":3568.48},{"epoch":26114325,"idl":99.66,"recv":0,"send":0,"writ":0.33,"used":506.38,"free":3568.27},{"epoch":26114326,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":506.72,"free":3567.92},{"epoch":26114327,"idl":99.72,"recv":0.02,"send":0.69,"writ":0.33,"used":506.35,"free":3568.29},{"epoch":26114328,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.33,"free":3568.31},{"epoch":26114329,"idl":99.8,"recv":0.01,"send":0.22,"writ":0.28,"used":506.39,"free":3568.27},{"epoch":26114330,"idl":99.62,"recv":0,"send":0,"writ":0.35,"used":506.29,"free":3568.38},{"epoch":26114331,"idl":99.61,"recv":0,"send":0,"writ":0.55,"used":506.49,"free":3568.18},{"epoch":26114332,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.19,"free":3568.48},{"epoch":26114333,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":506.17,"free":3568.49},{"epoch":26114334,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.14,"free":3568.51},{"epoch":26114335,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":506.4,"free":3568.27},{"epoch":26114336,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":507.07,"free":3567.6},{"epoch":26114337,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":506.35,"free":3568.32},{"epoch":26114338,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.33,"free":3568.33},{"epoch":26114339,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":506.31,"free":3568.35},{"epoch":26114340,"idl":99.5,"recv":0,"send":0,"writ":0.31,"used":506.07,"free":3568.6},{"epoch":26114341,"idl":99.65,"recv":0,"send":0,"writ":0.43,"used":505.93,"free":3568.74},{"epoch":26114342,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":505.08,"free":3569.59},{"epoch":26114343,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":505.23,"free":3569.43},{"epoch":26114344,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.22,"free":3569.44},{"epoch":26114345,"idl":99.67,"recv":0,"send":0,"writ":0.35,"used":505.45,"free":3569.22},{"epoch":26114346,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":506.12,"free":3568.55},{"epoch":26114347,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":506.4,"free":3568.27},{"epoch":26114348,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.4,"free":3568.27},{"epoch":26114349,"idl":99.5,"recv":0,"send":0,"writ":0.34,"used":506.4,"free":3568.24},{"epoch":26114350,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":506.44,"free":3568.21},{"epoch":26114351,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":506.77,"free":3567.87},{"epoch":26114352,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":506.57,"free":3568.07},{"epoch":26114353,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.55,"free":3568.09},{"epoch":26114354,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.55,"free":3568.09},{"epoch":26114355,"idl":99.57,"recv":0,"send":0,"writ":0.36,"used":505.77,"free":3568.89},{"epoch":26114356,"idl":99.64,"recv":0,"send":0,"writ":0.43,"used":506.16,"free":3568.49},{"epoch":26114357,"idl":99.79,"recv":0,"send":0.01,"writ":0.31,"used":506.18,"free":3568.46},{"epoch":26114358,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.13,"free":3568.51},{"epoch":26114359,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.11,"free":3568.52},{"epoch":26114360,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":506.34,"free":3568.31},{"epoch":26114361,"idl":99.75,"recv":0.01,"send":0.03,"writ":0.16,"used":506.38,"free":3568.27},{"epoch":26114362,"idl":99.56,"recv":0,"send":0,"writ":0.56,"used":507.12,"free":3567.53},{"epoch":26114363,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":506.56,"free":3568.08},{"epoch":26114364,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.2,"used":506.58,"free":3568.06},{"epoch":26114365,"idl":99.39,"recv":0.29,"send":1.34,"writ":1.57,"used":508.96,"free":3565.64},{"epoch":26114366,"idl":99.26,"recv":2.12,"send":66.96,"writ":0.88,"used":508.94,"free":3565.65},{"epoch":26114367,"idl":99.23,"recv":2,"send":64.15,"writ":1.4,"used":509.49,"free":3565.1},{"epoch":26114368,"idl":99.64,"recv":0.42,"send":11.93,"writ":0.52,"used":509.09,"free":3565.49},{"epoch":26114369,"idl":99.85,"recv":0.04,"send":0.08,"writ":0.26,"used":509.09,"free":3565.49},{"epoch":26114370,"idl":99.62,"recv":0.02,"send":0.03,"writ":0.34,"used":506.98,"free":3567.67},{"epoch":26114371,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":506.66,"free":3568.01},{"epoch":26114372,"idl":99.61,"recv":0.35,"send":0.91,"writ":0.71,"used":508.78,"free":3566.07},{"epoch":26114373,"idl":99.85,"recv":0,"send":0,"writ":0.73,"used":511.47,"free":3563.58},{"epoch":26114374,"idl":98.27,"recv":0.01,"send":0,"writ":1.14,"used":517.36,"free":3557.64},{"epoch":26114375,"idl":80.03,"recv":0.06,"send":1.91,"writ":5.85,"used":662.65,"free":3412.07},{"epoch":26114376,"idl":99.9,"recv":0,"send":0.03,"writ":0.23,"used":511.01,"free":3563.75},{"epoch":26114377,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":511.65,"free":3563.1},{"epoch":26114378,"idl":99.88,"recv":0,"send":0.01,"writ":0.27,"used":511.45,"free":3563.3},{"epoch":26114379,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":511.95,"free":3562.77},{"epoch":26114380,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":510.9,"free":3563.84},{"epoch":26114381,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":510.84,"free":3563.89},{"epoch":26114382,"idl":99.69,"recv":0.03,"send":0.95,"writ":0.54,"used":511.64,"free":3563.07},{"epoch":26114383,"idl":99.88,"recv":0,"send":0.01,"writ":0.23,"used":510.81,"free":3563.9},{"epoch":26114384,"idl":99.89,"recv":0.03,"send":1.03,"writ":0.15,"used":510.78,"free":3563.93},{"epoch":26114385,"idl":99.74,"recv":0.01,"send":0.2,"writ":0.41,"used":511.07,"free":3563.65},{"epoch":26114386,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":511.05,"free":3563.66},{"epoch":26114387,"idl":99.61,"recv":0,"send":0.01,"writ":0.55,"used":511.63,"free":3563.08},{"epoch":26114388,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":511.48,"free":3563.22},{"epoch":26114389,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":511.45,"free":3563.24},{"epoch":26114390,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":510.5,"free":3564.21},{"epoch":26114391,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":510.43,"free":3564.27},{"epoch":26114392,"idl":99.68,"recv":0.01,"send":0.03,"writ":0.43,"used":510.92,"free":3563.78},{"epoch":26114393,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":510.95,"free":3563.75},{"epoch":26114394,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":510.23,"free":3564.46},{"epoch":26114395,"idl":99.7,"recv":0,"send":0,"writ":0.46,"used":506.9,"free":3568.12},{"epoch":26114396,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":505.88,"free":3569.24},{"epoch":26114397,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":505.85,"free":3569.26},{"epoch":26114398,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":506.12,"free":3568.99},{"epoch":26114399,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":505.75,"free":3569.35},{"epoch":26114400,"idl":99.6,"recv":0,"send":0,"writ":0.3,"used":505.5,"free":3569.62},{"epoch":26114401,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":505.48,"free":3569.64},{"epoch":26114402,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.45,"free":3569.66},{"epoch":26114403,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":506.01,"free":3569.09},{"epoch":26114404,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":505.66,"free":3569.44},{"epoch":26114405,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":505.89,"free":3569.22},{"epoch":26114406,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":505.87,"free":3569.24},{"epoch":26114407,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":505.89,"free":3569.21},{"epoch":26114408,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":506.16,"free":3568.94},{"epoch":26114409,"idl":99.71,"recv":0.01,"send":0.02,"writ":0.34,"used":505.96,"free":3569.11},{"epoch":26114410,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":505.72,"free":3569.37},{"epoch":26114411,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":505.67,"free":3569.41},{"epoch":26114412,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":505.66,"free":3569.42},{"epoch":26114413,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":506.15,"free":3568.92},{"epoch":26114414,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":505.38,"free":3569.7},{"epoch":26114415,"idl":99.57,"recv":0,"send":0,"writ":0.33,"used":505.61,"free":3569.48},{"epoch":26114416,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.67,"free":3569.41},{"epoch":26114417,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":505.8,"free":3569.28},{"epoch":26114418,"idl":99.62,"recv":0,"send":0,"writ":0.55,"used":506.09,"free":3569},{"epoch":26114419,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.27,"free":3569.82},{"epoch":26114420,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":506.01,"free":3569.1},{"epoch":26114421,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.99,"free":3569.11},{"epoch":26114422,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":505.98,"free":3569.12},{"epoch":26114423,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":506.11,"free":3568.98},{"epoch":26114424,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":505.19,"free":3569.9},{"epoch":26114425,"idl":99.69,"recv":0,"send":0,"writ":0.39,"used":505.32,"free":3569.78},{"epoch":26114426,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.15,"free":3569.95},{"epoch":26114427,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":505.15,"free":3569.95},{"epoch":26114428,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":505.67,"free":3569.43},{"epoch":26114429,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":505.54,"free":3569.55},{"epoch":26114430,"idl":99.58,"recv":0,"send":0,"writ":0.38,"used":505.29,"free":3569.81},{"epoch":26114431,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":505.27,"free":3569.82},{"epoch":26114432,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.26,"free":3569.83},{"epoch":26114433,"idl":99.72,"recv":0,"send":0,"writ":0.37,"used":506.01,"free":3569.08},{"epoch":26114434,"idl":99.78,"recv":0,"send":0.01,"writ":0.38,"used":505.47,"free":3569.62},{"epoch":26114435,"idl":99.49,"recv":0,"send":0,"writ":0.32,"used":504.72,"free":3570.38},{"epoch":26114436,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":504.69,"free":3570.41},{"epoch":26114437,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":504.65,"free":3570.44},{"epoch":26114438,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":504.65,"free":3570.44},{"epoch":26114439,"idl":99.32,"recv":0,"send":0,"writ":0.71,"used":505.43,"free":3569.63},{"epoch":26114440,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":505.78,"free":3569.31},{"epoch":26114441,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":505.76,"free":3569.32},{"epoch":26114442,"idl":99.73,"recv":0,"send":0,"writ":0.17,"used":505.74,"free":3569.33},{"epoch":26114443,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":505.71,"free":3569.36},{"epoch":26114444,"idl":99.64,"recv":0,"send":0,"writ":0.56,"used":505.87,"free":3569.21},{"epoch":26114445,"idl":99.66,"recv":0,"send":0,"writ":0.33,"used":503.52,"free":3571.59},{"epoch":26114446,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":503.48,"free":3571.64},{"epoch":26114447,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":503.44,"free":3571.66},{"epoch":26114448,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":503.43,"free":3571.67},{"epoch":26114449,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":504.76,"free":3570.33},{"epoch":26114450,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":505.38,"free":3569.73},{"epoch":26114451,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":505.53,"free":3569.58},{"epoch":26114452,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":505.51,"free":3569.6},{"epoch":26114453,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.47,"free":3569.63},{"epoch":26114454,"idl":98.81,"recv":0,"send":0,"writ":0.54,"used":506.11,"free":3568.99},{"epoch":26114455,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":505.76,"free":3569.36},{"epoch":26114456,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":505.69,"free":3569.42},{"epoch":26114457,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":505.66,"free":3569.46},{"epoch":26114458,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":505.63,"free":3569.49},{"epoch":26114459,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":505.94,"free":3569.18},{"epoch":26114460,"idl":99.56,"recv":0,"send":0,"writ":0.32,"used":504.64,"free":3570.49},{"epoch":26114461,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":504.75,"free":3570.38},{"epoch":26114462,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":504.77,"free":3570.36},{"epoch":26114463,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":504.76,"free":3570.36},{"epoch":26114464,"idl":99.57,"recv":0,"send":0,"writ":0.59,"used":505.13,"free":3569.98},{"epoch":26114465,"idl":99.04,"recv":0,"send":0,"writ":0.71,"used":506.34,"free":3568.77},{"epoch":26114466,"idl":99.69,"recv":0,"send":0,"writ":0.14,"used":505.94,"free":3569.17},{"epoch":26114467,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":505.91,"free":3569.19},{"epoch":26114468,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":505.9,"free":3569.2},{"epoch":26114469,"idl":99.37,"recv":0,"send":0,"writ":0.63,"used":506.47,"free":3568.59},{"epoch":26114470,"idl":99.53,"recv":0,"send":0,"writ":0.41,"used":505.15,"free":3569.94},{"epoch":26114471,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":505.12,"free":3569.98},{"epoch":26114472,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":505.26,"free":3569.84},{"epoch":26114473,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":505.25,"free":3569.84},{"epoch":26114474,"idl":99.61,"recv":0,"send":0,"writ":0.39,"used":505.94,"free":3569.18},{"epoch":26114475,"idl":99.7,"recv":0,"send":0,"writ":0.49,"used":506.21,"free":3568.93},{"epoch":26114476,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.19,"free":3568.94},{"epoch":26114477,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":505.94,"free":3569.19},{"epoch":26114478,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":505.9,"free":3569.23},{"epoch":26114479,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":505.89,"free":3569.23},{"epoch":26114480,"idl":99.34,"recv":0,"send":0,"writ":0.73,"used":505.96,"free":3569.18},{"epoch":26114481,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":505.38,"free":3569.76},{"epoch":26114482,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.37,"free":3569.76},{"epoch":26114483,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":505.51,"free":3569.62},{"epoch":26114484,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.5,"free":3569.63},{"epoch":26114485,"idl":99.56,"recv":0,"send":0,"writ":0.75,"used":506.27,"free":3568.87},{"epoch":26114486,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":505.71,"free":3569.42},{"epoch":26114487,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":505.69,"free":3569.44},{"epoch":26114488,"idl":99.76,"recv":0,"send":0,"writ":0.2,"used":505.66,"free":3569.46},{"epoch":26114489,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":505.64,"free":3569.47},{"epoch":26114490,"idl":99.49,"recv":0,"send":0,"writ":0.74,"used":506.05,"free":3569.09},{"epoch":26114491,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":505.87,"free":3569.26},{"epoch":26114492,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":505.84,"free":3569.29},{"epoch":26114493,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":505.96,"free":3569.16},{"epoch":26114494,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.02,"free":3569.1},{"epoch":26114495,"idl":99.55,"recv":0,"send":0,"writ":0.73,"used":506.3,"free":3568.84},{"epoch":26114496,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":505.51,"free":3569.63},{"epoch":26114497,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":505.48,"free":3569.65},{"epoch":26114498,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":505.46,"free":3569.66},{"epoch":26114499,"idl":99.65,"recv":0,"send":0,"writ":0.29,"used":505.67,"free":3569.45},{"epoch":26114500,"idl":99.62,"recv":0,"send":0,"writ":0.74,"used":506.43,"free":3568.71},{"epoch":26114501,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.15,"free":3568.98},{"epoch":26114502,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":506.15,"free":3568.98},{"epoch":26114503,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.11,"free":3569.01},{"epoch":26114504,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.11,"free":3569.03},{"epoch":26114505,"idl":99.61,"recv":0,"send":0,"writ":0.66,"used":506.61,"free":3568.55},{"epoch":26114506,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":506.28,"free":3568.87},{"epoch":26114507,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.25,"free":3568.9},{"epoch":26114508,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.24,"free":3568.91},{"epoch":26114509,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.21,"free":3568.93},{"epoch":26114510,"idl":99.59,"recv":0,"send":0,"writ":0.71,"used":505.93,"free":3569.23},{"epoch":26114511,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.93,"free":3569.23},{"epoch":26114512,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":505.9,"free":3569.25},{"epoch":26114513,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":505.87,"free":3569.27},{"epoch":26114514,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.9,"free":3569.24},{"epoch":26114515,"idl":99.57,"recv":0,"send":0,"writ":0.56,"used":505.71,"free":3569.45},{"epoch":26114516,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":506.24,"free":3568.91},{"epoch":26114517,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.21,"free":3568.93},{"epoch":26114518,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.17,"free":3568.96},{"epoch":26114519,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.16,"free":3568.97},{"epoch":26114520,"idl":99.58,"recv":0,"send":0,"writ":0.31,"used":506.19,"free":3568.96},{"epoch":26114521,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":506.82,"free":3568.32},{"epoch":26114522,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.36,"free":3568.78},{"epoch":26114523,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":506.38,"free":3568.75},{"epoch":26114524,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":506.5,"free":3568.63},{"epoch":26114525,"idl":99.64,"recv":0,"send":0,"writ":0.33,"used":506.49,"free":3568.65},{"epoch":26114526,"idl":99.68,"recv":0,"send":0,"writ":0.53,"used":506.99,"free":3568.15},{"epoch":26114527,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.7,"free":3568.43},{"epoch":26114528,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.69,"free":3568.44},{"epoch":26114529,"idl":99.55,"recv":0,"send":0,"writ":0.3,"used":504.99,"free":3570.11},{"epoch":26114530,"idl":99.67,"recv":0,"send":0,"writ":0.31,"used":505.42,"free":3569.7},{"epoch":26114531,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":506.26,"free":3568.85},{"epoch":26114532,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.37,"free":3568.74},{"epoch":26114533,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.34,"free":3568.77},{"epoch":26114534,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":506.33,"free":3568.77},{"epoch":26114535,"idl":99.63,"recv":0,"send":0,"writ":0.34,"used":506.14,"free":3568.98},{"epoch":26114536,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":506.86,"free":3568.26},{"epoch":26114537,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":506.47,"free":3568.64},{"epoch":26114538,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.46,"free":3568.65},{"epoch":26114539,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.43,"free":3568.67},{"epoch":26114540,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":506.45,"free":3568.68},{"epoch":26114541,"idl":99.6,"recv":0,"send":0,"writ":0.4,"used":506.76,"free":3568.35},{"epoch":26114542,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":506.4,"free":3568.71},{"epoch":26114543,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.7,"free":3569.41},{"epoch":26114544,"idl":99.87,"recv":0.01,"send":0.03,"writ":0.15,"used":505.37,"free":3569.73},{"epoch":26114545,"idl":99.64,"recv":0.02,"send":0.05,"writ":0.4,"used":505.46,"free":3569.66},{"epoch":26114546,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":505.43,"free":3569.69},{"epoch":26114547,"idl":99.67,"recv":0.01,"send":1.03,"writ":0.63,"used":505.56,"free":3569.54},{"epoch":26114548,"idl":99.85,"recv":0.03,"send":2.1,"writ":0.41,"used":505.19,"free":3569.89},{"epoch":26114549,"idl":99.87,"recv":0.02,"send":1.87,"writ":0.24,"used":505.17,"free":3569.9},{"epoch":26114550,"idl":99.65,"recv":0,"send":0.01,"writ":0.38,"used":505.8,"free":3569.27},{"epoch":26114551,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":505.95,"free":3569.12},{"epoch":26114552,"idl":99.62,"recv":0.01,"send":0.02,"writ":0.53,"used":506.25,"free":3568.81},{"epoch":26114553,"idl":99.89,"recv":0,"send":0.01,"writ":0.22,"used":505.83,"free":3569.22},{"epoch":26114554,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":505.82,"free":3569.24},{"epoch":26114555,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":505.82,"free":3569.25},{"epoch":26114556,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":505.81,"free":3569.26},{"epoch":26114557,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":506.3,"free":3568.76},{"epoch":26114558,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":505.93,"free":3569.13},{"epoch":26114559,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":505.93,"free":3569.1},{"epoch":26114560,"idl":99.55,"recv":0,"send":0,"writ":0.38,"used":505.19,"free":3569.85},{"epoch":26114561,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":505.13,"free":3569.91},{"epoch":26114562,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":505.79,"free":3569.24},{"epoch":26114563,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":505.58,"free":3569.45},{"epoch":26114564,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":505.56,"free":3569.47},{"epoch":26114565,"idl":99.56,"recv":0,"send":0,"writ":0.32,"used":505.33,"free":3569.73},{"epoch":26114566,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":505.3,"free":3569.75},{"epoch":26114567,"idl":99.64,"recv":0,"send":0,"writ":0.39,"used":506,"free":3569.05},{"epoch":26114568,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":506.17,"free":3568.87},{"epoch":26114569,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.19,"free":3568.85},{"epoch":26114570,"idl":99.65,"recv":0,"send":0,"writ":0.32,"used":506.67,"free":3568.39},{"epoch":26114571,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.66,"free":3568.4},{"epoch":26114572,"idl":99.64,"recv":0,"send":0.01,"writ":0.54,"used":507.07,"free":3567.98},{"epoch":26114573,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":506.35,"free":3568.7},{"epoch":26114574,"idl":99.81,"recv":0,"send":0.01,"writ":0.18,"used":506.32,"free":3568.72},{"epoch":26114575,"idl":99.71,"recv":0,"send":0,"writ":0.36,"used":506.3,"free":3568.75},{"epoch":26114576,"idl":99.83,"recv":0,"send":0.01,"writ":0.14,"used":506.34,"free":3568.71},{"epoch":26114577,"idl":99.31,"recv":0.04,"send":0.13,"writ":0.52,"used":510.67,"free":3564.28},{"epoch":26114578,"idl":99.81,"recv":0.01,"send":0.86,"writ":0.43,"used":517.21,"free":3557.58},{"epoch":26114579,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":517.14,"free":3557.65},{"epoch":26114580,"idl":99.53,"recv":0,"send":0,"writ":0.32,"used":517.27,"free":3557.53},{"epoch":26114581,"idl":99.67,"recv":0.01,"send":0.01,"writ":0.16,"used":517.25,"free":3557.55},{"epoch":26114582,"idl":99.66,"recv":0.03,"send":0.56,"writ":0.48,"used":517.6,"free":3557.19},{"epoch":26114583,"idl":99.82,"recv":0.01,"send":0.6,"writ":0.4,"used":516.69,"free":3558.08},{"epoch":26114584,"idl":99.76,"recv":0.01,"send":0.95,"writ":0.23,"used":516.72,"free":3558.04},{"epoch":26114585,"idl":99.6,"recv":0.01,"send":0.89,"writ":0.4,"used":517.21,"free":3557.55},{"epoch":26114586,"idl":99.76,"recv":0.08,"send":5.69,"writ":0.32,"used":517.17,"free":3557.56},{"epoch":26114587,"idl":99.83,"recv":0,"send":0.62,"writ":0.29,"used":517.14,"free":3557.56},{"epoch":26114588,"idl":99.61,"recv":0,"send":0,"writ":0.57,"used":517.14,"free":3557.55},{"epoch":26114589,"idl":99.49,"recv":0,"send":0,"writ":0.34,"used":517.09,"free":3557.57},{"epoch":26114590,"idl":99.7,"recv":0,"send":0,"writ":0.34,"used":517.07,"free":3557.61},{"epoch":26114591,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":517.06,"free":3557.61},{"epoch":26114592,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":517.19,"free":3557.48},{"epoch":26114593,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":517.86,"free":3556.8},{"epoch":26114594,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":517.12,"free":3557.56},{"epoch":26114595,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":517.4,"free":3557.3},{"epoch":26114596,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":517.33,"free":3557.36},{"epoch":26114597,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":517.3,"free":3557.39},{"epoch":26114598,"idl":94.75,"recv":0.33,"send":0.01,"writ":260.1,"used":530.57,"free":3544.36},{"epoch":26114599,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":519.68,"free":3554.82},{"epoch":26114600,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":519.67,"free":3554.85},{"epoch":26114601,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":519.64,"free":3554.88},{"epoch":26114602,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":519.6,"free":3554.91},{"epoch":26114603,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":518.7,"free":3555.84},{"epoch":26114604,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":517.09,"free":3557.47},{"epoch":26114605,"idl":99.59,"recv":0,"send":0,"writ":0.38,"used":515.87,"free":3558.71},{"epoch":26114606,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.31,"free":3558.29},{"epoch":26114607,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.27,"free":3558.32},{"epoch":26114608,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":517.06,"free":3557.53},{"epoch":26114609,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":517.2,"free":3557.41},{"epoch":26114610,"idl":99.65,"recv":0,"send":0,"writ":0.31,"used":517.08,"free":3557.54},{"epoch":26114611,"idl":99.88,"recv":0,"send":0.01,"writ":0.16,"used":517.09,"free":3557.53},{"epoch":26114612,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":517.03,"free":3557.58},{"epoch":26114613,"idl":99.69,"recv":0,"send":0,"writ":0.52,"used":517.5,"free":3557.1},{"epoch":26114614,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":517.47,"free":3557.14},{"epoch":26114615,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":517.22,"free":3557.4},{"epoch":26114616,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":517.31,"free":3557.31},{"epoch":26114617,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":517.33,"free":3557.28},{"epoch":26114618,"idl":99.66,"recv":0,"send":0,"writ":0.45,"used":517.77,"free":3556.83},{"epoch":26114619,"idl":99.76,"recv":0,"send":0,"writ":0.49,"used":517.25,"free":3557.33},{"epoch":26114620,"idl":99.67,"recv":0,"send":0,"writ":0.33,"used":516.76,"free":3557.83},{"epoch":26114621,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.72,"free":3557.88},{"epoch":26114622,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.68,"free":3557.91},{"epoch":26114623,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.82,"free":3557.77},{"epoch":26114624,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":517.63,"free":3556.96},{"epoch":26114625,"idl":99.65,"recv":0,"send":0,"writ":0.34,"used":517.3,"free":3557.32},{"epoch":26114626,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":517.26,"free":3557.35},{"epoch":26114627,"idl":99.78,"recv":0.04,"send":3.24,"writ":0.27,"used":517.26,"free":3557.34},{"epoch":26114628,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":517.31,"free":3557.27},{"epoch":26114629,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":517.87,"free":3556.71},{"epoch":26114630,"idl":99.71,"recv":0.01,"send":0,"writ":0.35,"used":516.29,"free":3558.31},{"epoch":26114631,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":516.21,"free":3558.4},{"epoch":26114632,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.33,"free":3558.27},{"epoch":26114633,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.33,"free":3558.27},{"epoch":26114634,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":517.61,"free":3556.98},{"epoch":26114635,"idl":99.7,"recv":0,"send":0,"writ":0.36,"used":517.52,"free":3557.09},{"epoch":26114636,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":517.5,"free":3557.11},{"epoch":26114637,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.16,"used":517.46,"free":3557.15},{"epoch":26114638,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":517.42,"free":3557.18},{"epoch":26114639,"idl":99.73,"recv":0,"send":0,"writ":0.61,"used":517.89,"free":3556.7},{"epoch":26114640,"idl":99.58,"recv":0,"send":0,"writ":0.43,"used":517.55,"free":3557.05},{"epoch":26114641,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":517.52,"free":3557.08},{"epoch":26114642,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":517.49,"free":3557.11},{"epoch":26114643,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":517.45,"free":3557.14},{"epoch":26114644,"idl":99.76,"recv":0,"send":0,"writ":0.53,"used":517.96,"free":3556.63},{"epoch":26114645,"idl":99.74,"recv":0,"send":0,"writ":0.38,"used":517.49,"free":3557.12},{"epoch":26114646,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":517.57,"free":3557.03},{"epoch":26114647,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":517.52,"free":3557.07},{"epoch":26114648,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":517.49,"free":3557.1},{"epoch":26114649,"idl":99.63,"recv":0,"send":0,"writ":0.57,"used":517.94,"free":3556.62},{"epoch":26114650,"idl":99.74,"recv":0,"send":0,"writ":0.45,"used":517.46,"free":3557.13},{"epoch":26114651,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":517.41,"free":3557.17},{"epoch":26114652,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":517.55,"free":3557.03},{"epoch":26114653,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":517.53,"free":3557.04},{"epoch":26114654,"idl":99.65,"recv":0,"send":0,"writ":0.39,"used":517.85,"free":3556.72},{"epoch":26114655,"idl":99.69,"recv":0,"send":0,"writ":0.49,"used":517.73,"free":3556.86},{"epoch":26114656,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":517.69,"free":3556.89},{"epoch":26114657,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":517.17,"free":3557.4},{"epoch":26114658,"idl":99.85,"recv":0,"send":0.01,"writ":0.14,"used":517.24,"free":3557.33},{"epoch":26114659,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":517.7,"free":3556.87},{"epoch":26114660,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":517.3,"free":3557.28},{"epoch":26114661,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":517.26,"free":3557.32},{"epoch":26114662,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":517.23,"free":3557.35},{"epoch":26114663,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.2,"free":3557.37},{"epoch":26114664,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":517.19,"free":3557.38},{"epoch":26114665,"idl":99.44,"recv":0,"send":0,"writ":0.73,"used":518.02,"free":3556.56},{"epoch":26114666,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":517.32,"free":3557.26},{"epoch":26114667,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":517.28,"free":3557.3},{"epoch":26114668,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":517.25,"free":3557.32},{"epoch":26114669,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":517.22,"free":3557.35},{"epoch":26114670,"idl":99.53,"recv":0,"send":0,"writ":0.76,"used":518.13,"free":3556.45},{"epoch":26114671,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":517.7,"free":3556.88},{"epoch":26114672,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":517.82,"free":3556.76},{"epoch":26114673,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":517.78,"free":3556.79},{"epoch":26114674,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":517.76,"free":3556.81},{"epoch":26114675,"idl":99.61,"recv":0,"send":0,"writ":0.71,"used":517.97,"free":3556.62},{"epoch":26114676,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":517.48,"free":3557.13},{"epoch":26114677,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.45,"free":3557.15},{"epoch":26114678,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":517.5,"free":3557.09},{"epoch":26114679,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":518.03,"free":3556.54},{"epoch":26114680,"idl":99.6,"recv":0,"send":0,"writ":0.7,"used":518.14,"free":3556.44},{"epoch":26114681,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":517.74,"free":3556.84},{"epoch":26114682,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.18,"used":517.71,"free":3556.87},{"epoch":26114683,"idl":99.88,"recv":0,"send":0.01,"writ":0.2,"used":517.67,"free":3556.89},{"epoch":26114684,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":517.79,"free":3556.78},{"epoch":26114685,"idl":99.46,"recv":0,"send":0,"writ":0.78,"used":518.5,"free":3556.1},{"epoch":26114686,"idl":99.89,"recv":0,"send":0.01,"writ":0.17,"used":517.7,"free":3556.89},{"epoch":26114687,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":517.67,"free":3556.92},{"epoch":26114688,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":517.64,"free":3556.94},{"epoch":26114689,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":517.76,"free":3556.82},{"epoch":26114690,"idl":99.62,"recv":0,"send":0,"writ":0.61,"used":518.48,"free":3556.11},{"epoch":26114691,"idl":99.89,"recv":0,"send":0,"writ":0.35,"used":518,"free":3556.59},{"epoch":26114692,"idl":99.55,"recv":0,"send":0,"writ":0.18,"used":517.96,"free":3556.62},{"epoch":26114693,"idl":99.7,"recv":0,"send":0,"writ":0.17,"used":517.5,"free":3557.08},{"epoch":26114694,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":517.16,"free":3557.41},{"epoch":26114695,"idl":98.9,"recv":0,"send":0,"writ":0.6,"used":517.3,"free":3557.29},{"epoch":26114696,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":517.28,"free":3557.31},{"epoch":26114697,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.2,"used":517.27,"free":3557.31},{"epoch":26114698,"idl":99.86,"recv":0.01,"send":0.87,"writ":0.18,"used":517.24,"free":3557.33},{"epoch":26114699,"idl":99.87,"recv":0,"send":0,"writ":0.25,"used":517.23,"free":3557.34},{"epoch":26114700,"idl":98.65,"recv":0.01,"send":0.63,"writ":9.94,"used":516.71,"free":3557.93},{"epoch":26114701,"idl":99.69,"recv":0,"send":0,"writ":0.62,"used":517.61,"free":3557.05},{"epoch":26114702,"idl":99.89,"recv":0.01,"send":0.81,"writ":0.17,"used":517.32,"free":3557.34},{"epoch":26114703,"idl":99.87,"recv":0,"send":0.01,"writ":0.22,"used":517.31,"free":3557.34},{"epoch":26114704,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":517.27,"free":3557.38},{"epoch":26114705,"idl":99.71,"recv":0.06,"send":1.99,"writ":0.41,"used":517.09,"free":3557.6},{"epoch":26114706,"idl":99.72,"recv":0.01,"send":0.39,"writ":0.6,"used":517.42,"free":3557.26},{"epoch":26114707,"idl":99.86,"recv":0,"send":0.22,"writ":0.22,"used":517.01,"free":3557.67},{"epoch":26114708,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.99,"free":3557.68},{"epoch":26114709,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":517.12,"free":3557.53},{"epoch":26114710,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":517.11,"free":3557.55},{"epoch":26114711,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":517.62,"free":3557.05},{"epoch":26114712,"idl":99.87,"recv":0.01,"send":0.03,"writ":0.16,"used":517.27,"free":3557.39},{"epoch":26114713,"idl":99.92,"recv":0,"send":0,"writ":0.23,"used":517.3,"free":3557.35},{"epoch":26114714,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":517.37,"free":3557.29},{"epoch":26114715,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":517.11,"free":3557.57},{"epoch":26114716,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":517.43,"free":3557.24},{"epoch":26114717,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":517.04,"free":3557.63},{"epoch":26114718,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":517,"free":3557.66},{"epoch":26114719,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":517.05,"free":3557.61},{"epoch":26114720,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":517.39,"free":3557.29},{"epoch":26114721,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":517.96,"free":3556.71},{"epoch":26114722,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":517.07,"free":3557.6},{"epoch":26114723,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":517.03,"free":3557.63},{"epoch":26114724,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":517,"free":3557.66},{"epoch":26114725,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":516.9,"free":3557.77},{"epoch":26114726,"idl":99.76,"recv":0,"send":0,"writ":0.45,"used":517.5,"free":3557.17},{"epoch":26114727,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":516.87,"free":3557.8},{"epoch":26114728,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.83,"free":3557.83},{"epoch":26114729,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.8,"free":3557.85},{"epoch":26114730,"idl":99.62,"recv":0,"send":0,"writ":0.31,"used":517.28,"free":3557.39},{"epoch":26114731,"idl":99.68,"recv":0,"send":0,"writ":0.37,"used":517.69,"free":3556.98},{"epoch":26114732,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":517.49,"free":3557.17},{"epoch":26114733,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":517.62,"free":3557.04},{"epoch":26114734,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":517.58,"free":3557.07},{"epoch":26114735,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":517.33,"free":3557.34},{"epoch":26114736,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":517.29,"free":3557.37},{"epoch":26114737,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":517.62,"free":3557.04},{"epoch":26114738,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":517.23,"free":3557.43},{"epoch":26114739,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":517.54,"free":3557.1},{"epoch":26114740,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":517.13,"free":3557.53},{"epoch":26114741,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":517.08,"free":3557.57},{"epoch":26114742,"idl":99.69,"recv":0,"send":0,"writ":0.59,"used":517.61,"free":3557.03},{"epoch":26114743,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":517.24,"free":3557.39},{"epoch":26114744,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":517.21,"free":3557.42},{"epoch":26114745,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":517.26,"free":3557.39},{"epoch":26114746,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":517.31,"free":3557.34},{"epoch":26114747,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":517.86,"free":3556.78},{"epoch":26114748,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":517.55,"free":3557.09},{"epoch":26114749,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":517.52,"free":3557.11},{"epoch":26114750,"idl":99.63,"recv":0,"send":0,"writ":0.31,"used":517.51,"free":3557.13},{"epoch":26114751,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":517.48,"free":3557.16},{"epoch":26114752,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":517.58,"free":3557.06},{"epoch":26114753,"idl":97.59,"recv":0,"send":0,"writ":0.15,"used":516.53,"free":3558.11},{"epoch":26114754,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.59,"free":3558.04},{"epoch":26114755,"idl":99.69,"recv":0,"send":0,"writ":0.36,"used":517.29,"free":3557.36},{"epoch":26114756,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":517.29,"free":3557.35},{"epoch":26114757,"idl":99.67,"recv":0.01,"send":0.01,"writ":0.57,"used":517.73,"free":3556.91},{"epoch":26114758,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":517.22,"free":3557.41},{"epoch":26114759,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":517.19,"free":3557.44},{"epoch":26114760,"idl":99.56,"recv":0,"send":0,"writ":0.39,"used":517.53,"free":3557.12},{"epoch":26114761,"idl":99.69,"recv":0,"send":0,"writ":0.14,"used":517.6,"free":3557.04},{"epoch":26114762,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":517.88,"free":3556.76},{"epoch":26114763,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":517.29,"free":3557.34},{"epoch":26114764,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":517.26,"free":3557.37},{"epoch":26114765,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":517.01,"free":3557.64},{"epoch":26114766,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":516.97,"free":3557.67},{"epoch":26114767,"idl":99.62,"recv":0,"send":0,"writ":0.4,"used":517.5,"free":3557.14},{"epoch":26114768,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":517.59,"free":3557.04},{"epoch":26114769,"idl":99.39,"recv":0,"send":0,"writ":0.34,"used":517.83,"free":3556.77},{"epoch":26114770,"idl":99.63,"recv":0,"send":0,"writ":0.28,"used":517.79,"free":3556.83},{"epoch":26114771,"idl":99.73,"recv":0,"send":0,"writ":0.13,"used":517.76,"free":3556.86},{"epoch":26114772,"idl":99.53,"recv":0,"send":0,"writ":0.34,"used":518.08,"free":3556.53},{"epoch":26114773,"idl":99.61,"recv":0,"send":0,"writ":0.38,"used":517.94,"free":3556.66},{"epoch":26114774,"idl":99.65,"recv":0,"send":0,"writ":0.15,"used":518.07,"free":3556.54},{"epoch":26114775,"idl":99.53,"recv":0,"send":0,"writ":0.28,"used":517.6,"free":3557.02},{"epoch":26114776,"idl":99.67,"recv":0,"send":0,"writ":0.16,"used":517.56,"free":3557.05},{"epoch":26114777,"idl":99.73,"recv":0,"send":0,"writ":0.26,"used":517.78,"free":3556.83},{"epoch":26114778,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":518.09,"free":3556.51},{"epoch":26114779,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":517.71,"free":3556.89},{"epoch":26114780,"idl":99.68,"recv":0,"send":0,"writ":0.26,"used":517.46,"free":3557.16},{"epoch":26114781,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":517.58,"free":3557.03},{"epoch":26114782,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":517.58,"free":3557.03},{"epoch":26114783,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":518.4,"free":3556.2},{"epoch":26114784,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":517.76,"free":3556.84},{"epoch":26114785,"idl":99.3,"recv":0,"send":0,"writ":0.37,"used":516.63,"free":3557.99},{"epoch":26114786,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":516.24,"free":3558.37},{"epoch":26114787,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":516.23,"free":3558.38},{"epoch":26114788,"idl":99.59,"recv":0,"send":0,"writ":0.45,"used":517.06,"free":3557.54},{"epoch":26114789,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":516.81,"free":3557.78},{"epoch":26114790,"idl":99.59,"recv":0,"send":0,"writ":0.27,"used":516.56,"free":3558.05},{"epoch":26114791,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":516.52,"free":3558.09},{"epoch":26114792,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":516.48,"free":3558.12},{"epoch":26114793,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":517.23,"free":3557.37},{"epoch":26114794,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":517.8,"free":3556.79},{"epoch":26114795,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":517.81,"free":3556.79},{"epoch":26114796,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":517.78,"free":3556.82},{"epoch":26114797,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":517.75,"free":3556.85},{"epoch":26114798,"idl":99.64,"recv":0,"send":0,"writ":0.41,"used":517.98,"free":3556.61},{"epoch":26114799,"idl":99.52,"recv":0,"send":0,"writ":0.43,"used":517.75,"free":3556.83},{"epoch":26114800,"idl":99.66,"recv":0,"send":0,"writ":0.28,"used":516.99,"free":3557.6},{"epoch":26114801,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":517.07,"free":3557.52},{"epoch":26114802,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":517.09,"free":3557.49},{"epoch":26114803,"idl":99.65,"recv":0,"send":0,"writ":0.5,"used":517.32,"free":3557.25},{"epoch":26114804,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":516.54,"free":3558.05},{"epoch":26114805,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":517.26,"free":3557.35},{"epoch":26114806,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":517.24,"free":3557.37},{"epoch":26114807,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":517.21,"free":3557.39},{"epoch":26114808,"idl":99.63,"recv":0,"send":0,"writ":0.32,"used":517.68,"free":3556.94},{"epoch":26114809,"idl":99.71,"recv":0,"send":0,"writ":0.41,"used":517.12,"free":3557.49},{"epoch":26114810,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":518.08,"free":3556.55},{"epoch":26114811,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":518.06,"free":3556.57},{"epoch":26114812,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":518.03,"free":3556.59},{"epoch":26114813,"idl":98.58,"recv":0,"send":0,"writ":0.17,"used":518,"free":3556.62},{"epoch":26114814,"idl":99.64,"recv":0,"send":0,"writ":0.61,"used":517.87,"free":3556.74},{"epoch":26114815,"idl":99.68,"recv":0,"send":0,"writ":0.31,"used":517.63,"free":3557},{"epoch":26114816,"idl":99.4,"recv":0,"send":0,"writ":0.17,"used":517.61,"free":3557.02},{"epoch":26114817,"idl":99.75,"recv":0.01,"send":0.01,"writ":0.17,"used":517.56,"free":3557.06},{"epoch":26114818,"idl":99.78,"recv":0,"send":0,"writ":0.19,"used":517.52,"free":3557.1},{"epoch":26114819,"idl":99.62,"recv":0,"send":0,"writ":0.58,"used":517.79,"free":3556.83},{"epoch":26114820,"idl":99.41,"recv":0,"send":0,"writ":0.3,"used":515.91,"free":3558.72},{"epoch":26114821,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":515.89,"free":3558.74},{"epoch":26114822,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":515.86,"free":3558.76},{"epoch":26114823,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.83,"free":3558.79},{"epoch":26114824,"idl":99.63,"recv":0,"send":0,"writ":0.62,"used":516.38,"free":3558.23},{"epoch":26114825,"idl":99.63,"recv":0,"send":0,"writ":0.34,"used":517.48,"free":3557.15},{"epoch":26114826,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":517.53,"free":3557.1},{"epoch":26114827,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":517.62,"free":3557},{"epoch":26114828,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":517.59,"free":3557.03},{"epoch":26114829,"idl":99.45,"recv":0,"send":0,"writ":0.7,"used":518.15,"free":3556.45},{"epoch":26114830,"idl":99.69,"recv":0,"send":0,"writ":0.27,"used":517.79,"free":3556.83},{"epoch":26114831,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":517.75,"free":3556.87},{"epoch":26114832,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":517.71,"free":3556.9},{"epoch":26114833,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":517.77,"free":3556.83},{"epoch":26114834,"idl":99.67,"recv":0,"send":0,"writ":0.5,"used":518.2,"free":3556.4},{"epoch":26114835,"idl":99.66,"recv":0,"send":0,"writ":0.33,"used":518.08,"free":3556.54},{"epoch":26114836,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":518.05,"free":3556.57},{"epoch":26114837,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":518.01,"free":3556.6},{"epoch":26114838,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":517.98,"free":3556.63},{"epoch":26114839,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":518.6,"free":3556},{"epoch":26114840,"idl":99.59,"recv":0,"send":0,"writ":0.27,"used":517.54,"free":3557.08},{"epoch":26114841,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":517.1,"free":3557.51},{"epoch":26114842,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.58,"free":3558.03},{"epoch":26114843,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":516.55,"free":3558.05},{"epoch":26114844,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":516.52,"free":3558.08},{"epoch":26114845,"idl":99.43,"recv":0,"send":0,"writ":0.73,"used":517.12,"free":3557.49},{"epoch":26114846,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":516.72,"free":3557.89},{"epoch":26114847,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.77,"free":3557.84},{"epoch":26114848,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":516.84,"free":3557.75},{"epoch":26114849,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":516.81,"free":3557.79},{"epoch":26114850,"idl":99.37,"recv":0,"send":0,"writ":0.65,"used":517.39,"free":3557.23},{"epoch":26114851,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":517.01,"free":3557.59},{"epoch":26114852,"idl":99.75,"recv":0,"send":0,"writ":0.13,"used":516.98,"free":3557.62},{"epoch":26114853,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":516.95,"free":3557.65},{"epoch":26114854,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":517.06,"free":3557.54},{"epoch":26114855,"idl":99.58,"recv":0,"send":0,"writ":0.69,"used":517.49,"free":3557.13},{"epoch":26114856,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":517.1,"free":3557.51},{"epoch":26114857,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":517.06,"free":3557.54},{"epoch":26114858,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":517.02,"free":3557.57},{"epoch":26114859,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":517.01,"free":3557.57},{"epoch":26114860,"idl":99.53,"recv":0,"send":0,"writ":0.68,"used":517.81,"free":3556.79},{"epoch":26114861,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":517.3,"free":3557.29},{"epoch":26114862,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":517.37,"free":3557.22},{"epoch":26114863,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":517.33,"free":3557.25},{"epoch":26114864,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":517.3,"free":3557.29},{"epoch":26114865,"idl":99.46,"recv":0,"send":0,"writ":0.7,"used":517.76,"free":3556.85},{"epoch":26114866,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":517.25,"free":3557.35},{"epoch":26114867,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":517.23,"free":3557.37},{"epoch":26114868,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":517.37,"free":3557.22},{"epoch":26114869,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":517.34,"free":3557.25},{"epoch":26114870,"idl":99.47,"recv":0,"send":0,"writ":0.69,"used":516.78,"free":3557.83},{"epoch":26114871,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":517.05,"free":3557.55},{"epoch":26114872,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":517.01,"free":3557.59},{"epoch":26114873,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.97,"free":3557.62},{"epoch":26114874,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":517.03,"free":3557.56},{"epoch":26114875,"idl":99.52,"recv":0,"send":0,"writ":0.55,"used":517.97,"free":3556.63},{"epoch":26114876,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":517.33,"free":3557.27},{"epoch":26114877,"idl":99.74,"recv":0.01,"send":0.01,"writ":0.17,"used":517.29,"free":3557.3},{"epoch":26114878,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":517.25,"free":3557.33},{"epoch":26114879,"idl":99.74,"recv":0,"send":0,"writ":0.17,"used":517.22,"free":3557.36},{"epoch":26114880,"idl":99.24,"recv":0,"send":0,"writ":0.66,"used":516.96,"free":3557.64},{"epoch":26114881,"idl":99.69,"recv":0,"send":0,"writ":0.19,"used":517.31,"free":3557.29},{"epoch":26114882,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":517.34,"free":3557.25},{"epoch":26114883,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":517.31,"free":3557.28},{"epoch":26114884,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":517.28,"free":3557.3},{"epoch":26114885,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":517.27,"free":3557.33},{"epoch":26114886,"idl":99.65,"recv":0,"send":0,"writ":0.6,"used":517.71,"free":3556.88},{"epoch":26114887,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":517.2,"free":3557.39},{"epoch":26114888,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":517.31,"free":3557.28},{"epoch":26114889,"idl":99.68,"recv":0,"send":0,"writ":0.27,"used":517.32,"free":3557.24},{"epoch":26114890,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":517.55,"free":3557.03},{"epoch":26114891,"idl":99.66,"recv":0,"send":0,"writ":0.66,"used":517.87,"free":3556.7},{"epoch":26114892,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":517.48,"free":3557.09},{"epoch":26114893,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":517.44,"free":3557.12},{"epoch":26114894,"idl":99.69,"recv":0,"send":0,"writ":0.16,"used":517.46,"free":3557.1},{"epoch":26114895,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":517.58,"free":3557},{"epoch":26114896,"idl":99.66,"recv":0,"send":0,"writ":0.57,"used":517.88,"free":3556.69},{"epoch":26114897,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":517.26,"free":3557.31},{"epoch":26114898,"idl":99.71,"recv":0,"send":0,"writ":0.15,"used":517.21,"free":3557.35},{"epoch":26114899,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":517.18,"free":3557.38},{"epoch":26114900,"idl":99.69,"recv":0,"send":0,"writ":0.26,"used":517.2,"free":3557.39},{"epoch":26114901,"idl":99.62,"recv":0,"send":0,"writ":0.56,"used":517.88,"free":3556.7},{"epoch":26114902,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":517.57,"free":3557.01},{"epoch":26114903,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":517.54,"free":3557.04},{"epoch":26114904,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":517.51,"free":3557.06},{"epoch":26114905,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":517.2,"free":3557.39},{"epoch":26114906,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":517.78,"free":3556.81},{"epoch":26114907,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":517.22,"free":3557.37},{"epoch":26114908,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":517.34,"free":3557.24},{"epoch":26114909,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":517.31,"free":3557.27},{"epoch":26114910,"idl":99.63,"recv":0,"send":0,"writ":0.27,"used":517.54,"free":3557.05},{"epoch":26114911,"idl":99.67,"recv":0,"send":0,"writ":0.51,"used":517.98,"free":3556.61},{"epoch":26114912,"idl":99.77,"recv":0,"send":0,"writ":0.23,"used":517.23,"free":3557.35},{"epoch":26114913,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":517.2,"free":3557.37},{"epoch":26114914,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":517.25,"free":3557.32},{"epoch":26114915,"idl":99.61,"recv":0,"send":0,"writ":0.28,"used":517.58,"free":3557.01},{"epoch":26114916,"idl":99.57,"recv":0,"send":0,"writ":0.32,"used":517.92,"free":3556.66},{"epoch":26114917,"idl":99.7,"recv":0,"send":0,"writ":0.44,"used":517.76,"free":3556.82},{"epoch":26114918,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":517.73,"free":3556.85},{"epoch":26114919,"idl":99.76,"recv":0,"send":0,"writ":0.38,"used":517.45,"free":3557.09},{"epoch":26114920,"idl":99.67,"recv":0,"send":0,"writ":0.36,"used":517.22,"free":3557.33},{"epoch":26114921,"idl":99.69,"recv":0,"send":0,"writ":0.41,"used":517.73,"free":3556.82},{"epoch":26114922,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":517.79,"free":3556.76},{"epoch":26114923,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":517.75,"free":3556.79},{"epoch":26114924,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":517.72,"free":3556.81},{"epoch":26114925,"idl":99.63,"recv":0,"send":0,"writ":0.3,"used":516.75,"free":3557.8},{"epoch":26114926,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.68,"free":3557.87},{"epoch":26114927,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":517.34,"free":3557.2},{"epoch":26114928,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":516.81,"free":3557.73},{"epoch":26114929,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":516.77,"free":3557.76},{"epoch":26114930,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":517.74,"free":3556.81},{"epoch":26114931,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":517.73,"free":3556.82},{"epoch":26114932,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":517.16,"free":3557.39},{"epoch":26114933,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.19,"free":3558.35},{"epoch":26114934,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":516.25,"free":3558.29},{"epoch":26114935,"idl":99.74,"recv":0,"send":0,"writ":0.27,"used":516.83,"free":3557.73},{"epoch":26114936,"idl":99.37,"recv":0,"send":0,"writ":0.14,"used":516.8,"free":3557.75},{"epoch":26114937,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.59,"used":516.45,"free":3558.1},{"epoch":26114938,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.5,"free":3559.06},{"epoch":26114939,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":515.47,"free":3559.09},{"epoch":26114940,"idl":99.36,"recv":0.01,"send":0.02,"writ":0.34,"used":516.69,"free":3557.89},{"epoch":26114941,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.81,"free":3557.76},{"epoch":26114942,"idl":99.61,"recv":0,"send":0,"writ":0.61,"used":517.55,"free":3557.02},{"epoch":26114943,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":517.48,"free":3557.08},{"epoch":26114944,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":517.45,"free":3557.11},{"epoch":26114945,"idl":99.7,"recv":0,"send":0,"writ":0.35,"used":516.96,"free":3557.62},{"epoch":26114946,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":516.95,"free":3557.62},{"epoch":26114947,"idl":99.65,"recv":0,"send":0,"writ":0.42,"used":517.56,"free":3557.01},{"epoch":26114948,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":517.32,"free":3557.24},{"epoch":26114949,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":518.02,"free":3556.51},{"epoch":26114950,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":517.08,"free":3557.47},{"epoch":26114951,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.98,"free":3557.57},{"epoch":26114952,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":517.72,"free":3556.82},{"epoch":26114953,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":517.01,"free":3557.53},{"epoch":26114954,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":517.06,"free":3557.47},{"epoch":26114955,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":516.58,"free":3557.97},{"epoch":26114956,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":516.52,"free":3558.02},{"epoch":26114957,"idl":99.7,"recv":0,"send":0,"writ":0.4,"used":517.15,"free":3557.39},{"epoch":26114958,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":517.69,"free":3556.84},{"epoch":26114959,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":517.66,"free":3556.87},{"epoch":26114960,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":517.81,"free":3556.74},{"epoch":26114961,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":517.81,"free":3556.74},{"epoch":26114962,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.78,"free":3556.76},{"epoch":26114963,"idl":94.8,"recv":0.33,"send":0.01,"writ":260,"used":531.36,"free":3542.85},{"epoch":26114964,"idl":99.84,"recv":0,"send":0.02,"writ":0.23,"used":520.18,"free":3554.34},{"epoch":26114965,"idl":99.68,"recv":0,"send":0,"writ":0.31,"used":519.91,"free":3554.62},{"epoch":26114966,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":519.81,"free":3554.71},{"epoch":26114967,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":519.77,"free":3554.75},{"epoch":26114968,"idl":99.64,"recv":0,"send":0.01,"writ":0.61,"used":518.1,"free":3556.46},{"epoch":26114969,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":517.04,"free":3557.53},{"epoch":26114970,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":517.03,"free":3557.56},{"epoch":26114971,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":517.08,"free":3557.5},{"epoch":26114972,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":517.15,"free":3557.42},{"epoch":26114973,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":517.83,"free":3556.74},{"epoch":26114974,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":517.58,"free":3556.99},{"epoch":26114975,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":518.06,"free":3556.53},{"epoch":26114976,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":518.03,"free":3556.55},{"epoch":26114977,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":518,"free":3556.58},{"epoch":26114978,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":518.28,"free":3556.29},{"epoch":26114979,"idl":99.75,"recv":0,"send":0,"writ":0.42,"used":517.42,"free":3557.13},{"epoch":26114980,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":517.16,"free":3557.4},{"epoch":26114981,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":517.12,"free":3557.44},{"epoch":26114982,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":517.09,"free":3557.47},{"epoch":26114983,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":517.41,"free":3557.14},{"epoch":26114984,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":517.03,"free":3557.52},{"epoch":26114985,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":517.14,"free":3557.42},{"epoch":26114986,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":517.17,"free":3557.39},{"epoch":26114987,"idl":99.88,"recv":0,"send":0,"writ":0.12,"used":517.13,"free":3557.42},{"epoch":26114988,"idl":99.69,"recv":0,"send":0,"writ":0.58,"used":517.92,"free":3556.62},{"epoch":26114989,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":518.05,"free":3556.49},{"epoch":26114990,"idl":99.71,"recv":0,"send":0,"writ":0.28,"used":517.09,"free":3557.47},{"epoch":26114991,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":517.02,"free":3557.53},{"epoch":26114992,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.81,"free":3557.74},{"epoch":26114993,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":516.78,"free":3557.77},{"epoch":26114994,"idl":99.86,"recv":0,"send":0,"writ":0.37,"used":516.87,"free":3557.67},{"epoch":26114995,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":515.9,"free":3558.65},{"epoch":26114996,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":515.84,"free":3558.71},{"epoch":26114997,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.14,"used":515.8,"free":3558.75},{"epoch":26114998,"idl":99.67,"recv":0,"send":0,"writ":0.39,"used":516.22,"free":3558.32},{"epoch":26114999,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":516.65,"free":3557.89},{"epoch":26115000,"idl":99.67,"recv":0,"send":0,"writ":0.28,"used":517.13,"free":3557.43},{"epoch":26115001,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":517.1,"free":3557.45},{"epoch":26115002,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":517.07,"free":3557.48},{"epoch":26115003,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.04,"free":3557.51},{"epoch":26115004,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":516.33,"free":3558.21},{"epoch":26115005,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":516.59,"free":3557.97},{"epoch":26115006,"idl":99.8,"recv":0,"send":0,"writ":0.12,"used":516.66,"free":3557.89},{"epoch":26115007,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.63,"free":3557.92},{"epoch":26115008,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.6,"free":3557.95},{"epoch":26115009,"idl":99.66,"recv":0,"send":0,"writ":0.66,"used":517.63,"free":3556.89},{"epoch":26115010,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":517.3,"free":3557.24},{"epoch":26115011,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":517.26,"free":3557.28},{"epoch":26115012,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":517.36,"free":3557.17},{"epoch":26115013,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":517.38,"free":3557.14},{"epoch":26115014,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":517.83,"free":3556.69},{"epoch":26115015,"idl":99.71,"recv":0,"send":0,"writ":0.28,"used":517.12,"free":3557.42},{"epoch":26115016,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":517.08,"free":3557.46},{"epoch":26115017,"idl":99.73,"recv":0,"send":0,"writ":0.19,"used":516.8,"free":3557.73},{"epoch":26115018,"idl":99.66,"recv":0,"send":0,"writ":0.15,"used":516.76,"free":3557.77},{"epoch":26115019,"idl":99.5,"recv":0,"send":0,"writ":0.44,"used":517.36,"free":3557.17},{"epoch":26115020,"idl":99.56,"recv":0,"send":0,"writ":0.42,"used":517.15,"free":3557.38},{"epoch":26115021,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":517.12,"free":3557.42},{"epoch":26115022,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":517.08,"free":3557.45},{"epoch":26115023,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":517.05,"free":3557.47},{"epoch":26115024,"idl":99.66,"recv":0,"send":0,"writ":0.59,"used":517.56,"free":3556.96},{"epoch":26115025,"idl":99.59,"recv":0,"send":0,"writ":0.31,"used":516.35,"free":3558.19},{"epoch":26115026,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":516.1,"free":3558.43},{"epoch":26115027,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":516.18,"free":3558.35},{"epoch":26115028,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":516.15,"free":3558.38},{"epoch":26115029,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.33,"used":516.46,"free":3558.06},{"epoch":26115030,"idl":99.74,"recv":0,"send":0,"writ":0.5,"used":517.43,"free":3557.11},{"epoch":26115031,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":517.4,"free":3557.14},{"epoch":26115032,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":517.37,"free":3557.16},{"epoch":26115033,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":517.34,"free":3557.19},{"epoch":26115034,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":517.64,"free":3556.88},{"epoch":26115035,"idl":99.77,"recv":0,"send":0,"writ":0.5,"used":517.29,"free":3557.25},{"epoch":26115036,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":517.34,"free":3557.2},{"epoch":26115037,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":517.41,"free":3557.12},{"epoch":26115038,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":517.39,"free":3557.14},{"epoch":26115039,"idl":99.67,"recv":0,"send":0,"writ":0.31,"used":517.36,"free":3557.14},{"epoch":26115040,"idl":99.67,"recv":0,"send":0,"writ":0.71,"used":517.91,"free":3556.61},{"epoch":26115041,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":517.56,"free":3556.96},{"epoch":26115042,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":517.53,"free":3556.98},{"epoch":26115043,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":517.58,"free":3556.93},{"epoch":26115044,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":517.66,"free":3556.84},{"epoch":26115045,"idl":99.66,"recv":0,"send":0,"writ":0.66,"used":517.75,"free":3556.77},{"epoch":26115046,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.87,"free":3557.63},{"epoch":26115047,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":516.84,"free":3557.66},{"epoch":26115048,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.8,"free":3557.69},{"epoch":26115049,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.77,"free":3557.73},{"epoch":26115050,"idl":99.63,"recv":0,"send":0,"writ":0.67,"used":517.19,"free":3557.32},{"epoch":26115051,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":516.18,"free":3558.33},{"epoch":26115052,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.14,"free":3558.36},{"epoch":26115053,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":516.12,"free":3558.38},{"epoch":26115054,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.08,"free":3558.41},{"epoch":26115055,"idl":99.63,"recv":0,"send":0,"writ":0.59,"used":517.48,"free":3557.03},{"epoch":26115056,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":517.26,"free":3557.24},{"epoch":26115057,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.14,"used":517.38,"free":3557.12},{"epoch":26115058,"idl":98.47,"recv":0,"send":0,"writ":0.15,"used":517.38,"free":3557.12},{"epoch":26115059,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":517.34,"free":3557.16},{"epoch":26115060,"idl":99.37,"recv":0,"send":0,"writ":0.55,"used":518.09,"free":3556.43},{"epoch":26115061,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":517.54,"free":3556.97},{"epoch":26115062,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":517.51,"free":3557},{"epoch":26115063,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.36,"free":3557.14},{"epoch":26115064,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":517.38,"free":3557.11},{"epoch":26115065,"idl":99.59,"recv":0,"send":0,"writ":0.73,"used":518.37,"free":3556.14},{"epoch":26115066,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":517.58,"free":3556.93},{"epoch":26115067,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":517.54,"free":3556.96},{"epoch":26115068,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":517.52,"free":3556.99},{"epoch":26115069,"idl":99.57,"recv":0,"send":0,"writ":0.27,"used":517.51,"free":3556.98},{"epoch":26115070,"idl":99.68,"recv":0,"send":0,"writ":0.28,"used":517.39,"free":3557.12},{"epoch":26115071,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":517.83,"free":3556.68},{"epoch":26115072,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":517.37,"free":3557.13},{"epoch":26115073,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":517.34,"free":3557.16},{"epoch":26115074,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":517.31,"free":3557.2},{"epoch":26115075,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":516.58,"free":3557.95},{"epoch":26115076,"idl":99.71,"recv":0,"send":0,"writ":0.52,"used":517.88,"free":3556.64},{"epoch":26115077,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":517.66,"free":3556.86},{"epoch":26115078,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":517.63,"free":3556.88},{"epoch":26115079,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":517.6,"free":3556.91},{"epoch":26115080,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":517.59,"free":3556.93},{"epoch":26115081,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":517.92,"free":3556.6},{"epoch":26115082,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":517.53,"free":3556.99},{"epoch":26115083,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":517.55,"free":3556.96},{"epoch":26115084,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":517.64,"free":3556.86},{"epoch":26115085,"idl":98.8,"recv":0,"send":0,"writ":15.12,"used":518.54,"free":3556.51},{"epoch":26115086,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":517.63,"free":3556.96},{"epoch":26115087,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":517.39,"free":3557.2},{"epoch":26115088,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":517.36,"free":3557.22},{"epoch":26115089,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":517.33,"free":3557.24},{"epoch":26115090,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":517.89,"free":3556.7},{"epoch":26115091,"idl":99.75,"recv":0,"send":0,"writ":0.48,"used":518.32,"free":3556.27},{"epoch":26115092,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":517.93,"free":3556.66},{"epoch":26115093,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":517.89,"free":3556.69},{"epoch":26115094,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":517.86,"free":3556.71},{"epoch":26115095,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":517.61,"free":3556.99},{"epoch":26115096,"idl":99.68,"recv":0,"send":0,"writ":0.39,"used":518.06,"free":3556.53},{"epoch":26115097,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":517.96,"free":3556.62},{"epoch":26115098,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":517.93,"free":3556.65},{"epoch":26115099,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":517.49,"free":3557.07},{"epoch":26115100,"idl":99.73,"recv":0,"send":0,"writ":0.24,"used":517.15,"free":3557.42},{"epoch":26115101,"idl":93.45,"recv":0.35,"send":0.01,"writ":33.42,"used":531.67,"free":3536.25},{"epoch":26115102,"idl":99.83,"recv":0,"send":0,"writ":32.29,"used":520.63,"free":3553.13},{"epoch":26115103,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":520.6,"free":3553.16},{"epoch":26115104,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":520.7,"free":3553.06},{"epoch":26115105,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":520.98,"free":3552.79},{"epoch":26115106,"idl":99.69,"recv":0,"send":0,"writ":0.52,"used":520.17,"free":3553.65},{"epoch":26115107,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":518.01,"free":3555.91},{"epoch":26115108,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":517.96,"free":3555.96},{"epoch":26115109,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":517.93,"free":3555.98},{"epoch":26115110,"idl":99.66,"recv":0,"send":0.01,"writ":0.29,"used":517.05,"free":3556.88},{"epoch":26115111,"idl":99.7,"recv":0,"send":0,"writ":0.36,"used":517.53,"free":3556.4},{"epoch":26115112,"idl":99.83,"recv":0,"send":0,"writ":0.37,"used":518.01,"free":3555.92},{"epoch":26115113,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":517.98,"free":3555.94},{"epoch":26115114,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":517.95,"free":3555.98},{"epoch":26115115,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":518.18,"free":3555.77},{"epoch":26115116,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":518.31,"free":3555.64},{"epoch":26115117,"idl":99.73,"recv":0.01,"send":0.01,"writ":0.59,"used":517.98,"free":3555.96},{"epoch":26115118,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":517.29,"free":3556.66},{"epoch":26115119,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":517.25,"free":3556.69},{"epoch":26115120,"idl":99.53,"recv":0,"send":0,"writ":0.32,"used":517.24,"free":3556.71},{"epoch":26115121,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":517.2,"free":3556.74},{"epoch":26115122,"idl":99.55,"recv":0,"send":0,"writ":0.55,"used":517.58,"free":3556.36},{"epoch":26115123,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":517.33,"free":3556.61},{"epoch":26115124,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":517.29,"free":3556.64},{"epoch":26115125,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":517.28,"free":3556.66},{"epoch":26115126,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":517.25,"free":3556.7},{"epoch":26115127,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":518.13,"free":3555.81},{"epoch":26115128,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":517.92,"free":3556.02},{"epoch":26115129,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":518.24,"free":3555.69},{"epoch":26115130,"idl":99.65,"recv":0,"send":0,"writ":0.28,"used":517.36,"free":3556.59},{"epoch":26115131,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":517.3,"free":3556.64},{"epoch":26115132,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":518.71,"free":3555.23},{"epoch":26115133,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":518.47,"free":3555.47},{"epoch":26115134,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":518.44,"free":3555.49},{"epoch":26115135,"idl":99.53,"recv":0,"send":0,"writ":0.29,"used":517.25,"free":3556.7},{"epoch":26115136,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":517.27,"free":3556.67},{"epoch":26115137,"idl":99.53,"recv":0,"send":0,"writ":0.45,"used":518.46,"free":3555.48},{"epoch":26115138,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":518.31,"free":3555.63},{"epoch":26115139,"idl":99.73,"recv":0,"send":0,"writ":0.17,"used":518.27,"free":3555.66},{"epoch":26115140,"idl":99.54,"recv":0,"send":0,"writ":0.28,"used":517.55,"free":3556.4},{"epoch":26115141,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":517.5,"free":3556.45},{"epoch":26115142,"idl":99.59,"recv":0,"send":0,"writ":0.39,"used":518.07,"free":3555.87},{"epoch":26115143,"idl":99.84,"recv":0,"send":0.01,"writ":0.29,"used":517.72,"free":3556.22},{"epoch":26115144,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":517.56,"free":3556.37},{"epoch":26115145,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":517.29,"free":3556.66},{"epoch":26115146,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":517.04,"free":3556.91},{"epoch":26115147,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":517.43,"free":3556.5},{"epoch":26115148,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":517.22,"free":3556.72},{"epoch":26115149,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":517.24,"free":3556.69},{"epoch":26115150,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":517.61,"free":3556.34},{"epoch":26115151,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":517.57,"free":3556.38},{"epoch":26115152,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":518.19,"free":3555.76},{"epoch":26115153,"idl":99.9,"recv":0,"send":0,"writ":0.37,"used":517.51,"free":3556.43},{"epoch":26115154,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":517.47,"free":3556.46},{"epoch":26115155,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":516.73,"free":3557.22},{"epoch":26115156,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.84,"free":3557.11},{"epoch":26115157,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.84,"free":3557.1},{"epoch":26115158,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":517.62,"free":3556.32},{"epoch":26115159,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":517.78,"free":3556.15},{"epoch":26115160,"idl":99.82,"recv":0,"send":0,"writ":0.35,"used":517.75,"free":3556.19},{"epoch":26115161,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":517.72,"free":3556.22},{"epoch":26115162,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":517.69,"free":3556.25},{"epoch":26115163,"idl":99.74,"recv":0,"send":0,"writ":0.64,"used":517.04,"free":3556.89},{"epoch":26115164,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":516.58,"free":3557.35},{"epoch":26115165,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":517.35,"free":3556.59},{"epoch":26115166,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":517.27,"free":3556.67},{"epoch":26115167,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":517.24,"free":3556.7},{"epoch":26115168,"idl":99.72,"recv":0,"send":0,"writ":0.61,"used":518.1,"free":3555.83},{"epoch":26115169,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":517.44,"free":3556.48},{"epoch":26115170,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":517.36,"free":3556.58},{"epoch":26115171,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":517.32,"free":3556.62},{"epoch":26115172,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":517.29,"free":3556.64},{"epoch":26115173,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":517.49,"free":3556.44},{"epoch":26115174,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.98,"free":3556.94},{"epoch":26115175,"idl":99.68,"recv":0,"send":0,"writ":0.28,"used":517.46,"free":3556.49},{"epoch":26115176,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":517.44,"free":3556.5},{"epoch":26115177,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.17,"used":517.52,"free":3556.42},{"epoch":26115178,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":517.91,"free":3556.03},{"epoch":26115179,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":517.52,"free":3556.42},{"epoch":26115180,"idl":99.68,"recv":0,"send":0,"writ":0.27,"used":517.5,"free":3556.44},{"epoch":26115181,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":517.47,"free":3556.47},{"epoch":26115182,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.43,"free":3556.5},{"epoch":26115183,"idl":99.69,"recv":0,"send":0,"writ":0.6,"used":517.84,"free":3556.09},{"epoch":26115184,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.36,"free":3557.57},{"epoch":26115185,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":517.32,"free":3556.62},{"epoch":26115186,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":517.3,"free":3556.64},{"epoch":26115187,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":517.27,"free":3556.67},{"epoch":26115188,"idl":94.74,"recv":1.61,"send":0.02,"writ":66.05,"used":523.24,"free":3550.81},{"epoch":26115189,"idl":99.58,"recv":0,"send":0,"writ":195.41,"used":519.97,"free":3552.23},{"epoch":26115190,"idl":99.7,"recv":0,"send":0,"writ":0.37,"used":520.01,"free":3552.21},{"epoch":26115191,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":520.15,"free":3552.07},{"epoch":26115192,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":520.12,"free":3552.09},{"epoch":26115193,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":520.26,"free":3551.95},{"epoch":26115194,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":517.17,"free":3555.08},{"epoch":26115195,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":517.63,"free":3554.63},{"epoch":26115196,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":517.61,"free":3554.65},{"epoch":26115197,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":517.61,"free":3554.64},{"epoch":26115198,"idl":99.66,"recv":0,"send":0,"writ":0.4,"used":518.09,"free":3554.16},{"epoch":26115199,"idl":99.88,"recv":0,"send":0,"writ":0.4,"used":517.94,"free":3554.33},{"epoch":26115200,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":517.7,"free":3554.6},{"epoch":26115201,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":517.66,"free":3554.63},{"epoch":26115202,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":517.63,"free":3554.66},{"epoch":26115203,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":517.59,"free":3554.69},{"epoch":26115204,"idl":99.71,"recv":0,"send":0,"writ":0.64,"used":518.11,"free":3554.17},{"epoch":26115205,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":517.98,"free":3554.31},{"epoch":26115206,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":517.71,"free":3554.59},{"epoch":26115207,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":517.68,"free":3554.61},{"epoch":26115208,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":517.65,"free":3554.64},{"epoch":26115209,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":517.97,"free":3554.32},{"epoch":26115210,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":517.6,"free":3554.71},{"epoch":26115211,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":517.66,"free":3554.65},{"epoch":26115212,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":517.73,"free":3554.58},{"epoch":26115213,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":517.69,"free":3554.61},{"epoch":26115214,"idl":99.67,"recv":0,"send":0.02,"writ":0.59,"used":518.17,"free":3554.13},{"epoch":26115215,"idl":99.63,"recv":0,"send":0,"writ":0.36,"used":517.87,"free":3554.45},{"epoch":26115216,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":517.83,"free":3554.48},{"epoch":26115217,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":517.96,"free":3554.35},{"epoch":26115218,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":517.96,"free":3554.34},{"epoch":26115219,"idl":99.55,"recv":0,"send":0,"writ":0.7,"used":517.47,"free":3554.81},{"epoch":26115220,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":517.89,"free":3554.4},{"epoch":26115221,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":517.89,"free":3554.4},{"epoch":26115222,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":517.86,"free":3554.43},{"epoch":26115223,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":517.82,"free":3554.46},{"epoch":26115224,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":518.21,"free":3554.08},{"epoch":26115225,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":517.97,"free":3554.34},{"epoch":26115226,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":517.93,"free":3554.38},{"epoch":26115227,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":517.89,"free":3554.41},{"epoch":26115228,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":517.86,"free":3554.44},{"epoch":26115229,"idl":99.72,"recv":0,"send":0,"writ":0.47,"used":518.18,"free":3554.11},{"epoch":26115230,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":517.09,"free":3555.21},{"epoch":26115231,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":517.14,"free":3555.16},{"epoch":26115232,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":517.21,"free":3555.09},{"epoch":26115233,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":517.16,"free":3555.13},{"epoch":26115234,"idl":99.61,"recv":0,"send":0,"writ":0.54,"used":517.8,"free":3554.49},{"epoch":26115235,"idl":99.7,"recv":0,"send":0,"writ":0.27,"used":517.92,"free":3554.38},{"epoch":26115236,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":518.11,"free":3554.17},{"epoch":26115237,"idl":99.75,"recv":0.01,"send":0.01,"writ":0.14,"used":518.11,"free":3554.17},{"epoch":26115238,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":518.25,"free":3554.03},{"epoch":26115239,"idl":99.63,"recv":0,"send":0,"writ":0.16,"used":518.22,"free":3554.06},{"epoch":26115240,"idl":99.41,"recv":0,"send":0,"writ":0.66,"used":518.66,"free":3553.64},{"epoch":26115241,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":518.18,"free":3554.11},{"epoch":26115242,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":518.15,"free":3554.14},{"epoch":26115243,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":518.11,"free":3554.18},{"epoch":26115244,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":518.17,"free":3554.11},{"epoch":26115245,"idl":99.19,"recv":0,"send":0,"writ":0.66,"used":518.02,"free":3554.27},{"epoch":26115246,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":517.23,"free":3555.06},{"epoch":26115247,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":517.2,"free":3555.08},{"epoch":26115248,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":517.17,"free":3555.11},{"epoch":26115249,"idl":99.71,"recv":0.02,"send":0.81,"writ":0.38,"used":517.59,"free":3554.67},{"epoch":26115250,"idl":99.55,"recv":0,"send":0,"writ":0.68,"used":517.8,"free":3554.47},{"epoch":26115251,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":517.23,"free":3555.03},{"epoch":26115252,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":517.2,"free":3555.06},{"epoch":26115253,"idl":99.73,"recv":0,"send":0.01,"writ":0.14,"used":517.17,"free":3555.09},{"epoch":26115254,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":517.11,"free":3555.14},{"epoch":26115255,"idl":99.53,"recv":0,"send":0,"writ":0.68,"used":517.79,"free":3554.49},{"epoch":26115256,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":517.4,"free":3554.87},{"epoch":26115257,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":517.48,"free":3554.79},{"epoch":26115258,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":517.45,"free":3554.81},{"epoch":26115259,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":517.42,"free":3554.83},{"epoch":26115260,"idl":99.51,"recv":0,"send":0,"writ":0.67,"used":518.41,"free":3553.87},{"epoch":26115261,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":518.11,"free":3554.16},{"epoch":26115262,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.08,"free":3554.19},{"epoch":26115263,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":518.15,"free":3554.11},{"epoch":26115264,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":518.23,"free":3554.03},{"epoch":26115265,"idl":99.52,"recv":0,"send":0,"writ":0.54,"used":517.95,"free":3554.32},{"epoch":26115266,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":517.43,"free":3554.84},{"epoch":26115267,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":517.41,"free":3554.85},{"epoch":26115268,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":517.4,"free":3554.86},{"epoch":26115269,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":517.38,"free":3554.87},{"epoch":26115270,"idl":99.48,"recv":0,"send":0,"writ":0.63,"used":518.69,"free":3553.57},{"epoch":26115271,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":518.51,"free":3553.75},{"epoch":26115272,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":518.47,"free":3553.78},{"epoch":26115273,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":518.44,"free":3553.81},{"epoch":26115274,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":518.41,"free":3553.84},{"epoch":26115275,"idl":99.58,"recv":0,"send":0,"writ":0.54,"used":517.91,"free":3554.36},{"epoch":26115276,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":518.36,"free":3553.9},{"epoch":26115277,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":518.49,"free":3553.77},{"epoch":26115278,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":518.48,"free":3553.77},{"epoch":26115279,"idl":99.7,"recv":0,"send":0,"writ":0.39,"used":518.45,"free":3553.78},{"epoch":26115280,"idl":99.42,"recv":0,"send":0,"writ":0.54,"used":518.25,"free":3554.02},{"epoch":26115281,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":517.93,"free":3554.34},{"epoch":26115282,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":517.89,"free":3554.37},{"epoch":26115283,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":517.9,"free":3554.35},{"epoch":26115284,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":518.01,"free":3554.26},{"epoch":26115285,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":517.99,"free":3554.29},{"epoch":26115286,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":518.77,"free":3553.5},{"epoch":26115287,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":518.42,"free":3553.85},{"epoch":26115288,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":518.39,"free":3553.88},{"epoch":26115289,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":518.35,"free":3553.91},{"epoch":26115290,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":518.4,"free":3553.88},{"epoch":26115291,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":518.63,"free":3553.64},{"epoch":26115292,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":518.22,"free":3554.05},{"epoch":26115293,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":518.07,"free":3554.2},{"epoch":26115294,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":517.42,"free":3554.84},{"epoch":26115295,"idl":99.57,"recv":0,"send":0,"writ":0.31,"used":517.42,"free":3554.86},{"epoch":26115296,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":517.92,"free":3554.35},{"epoch":26115297,"idl":99.79,"recv":0.01,"send":0.01,"writ":0.14,"used":517.68,"free":3554.59},{"epoch":26115298,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":517.65,"free":3554.61},{"epoch":26115299,"idl":98.96,"recv":0,"send":0,"writ":0.14,"used":517.45,"free":3554.8},{"epoch":26115300,"idl":99.55,"recv":0,"send":0,"writ":0.31,"used":517.5,"free":3554.78},{"epoch":26115301,"idl":99.5,"recv":0,"send":0,"writ":0.56,"used":517.66,"free":3554.61},{"epoch":26115302,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":517.13,"free":3555.13},{"epoch":26115303,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":517.1,"free":3555.16},{"epoch":26115304,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":517.21,"free":3555.05},{"epoch":26115305,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":517.48,"free":3554.79},{"epoch":26115306,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":517.94,"free":3554.33},{"epoch":26115307,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":517.67,"free":3554.59},{"epoch":26115308,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":517.64,"free":3554.62},{"epoch":26115309,"idl":99.66,"recv":0,"send":0,"writ":0.27,"used":517.61,"free":3554.63},{"epoch":26115310,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":517.36,"free":3554.89},{"epoch":26115311,"idl":99.67,"recv":0,"send":0,"writ":0.48,"used":517.93,"free":3554.31},{"epoch":26115312,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":517.76,"free":3554.48},{"epoch":26115313,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":517.72,"free":3554.51},{"epoch":26115314,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":517.68,"free":3554.55},{"epoch":26115315,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":517.68,"free":3554.57},{"epoch":26115316,"idl":99.7,"recv":0,"send":0,"writ":0.44,"used":518.13,"free":3554.12},{"epoch":26115317,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":517.66,"free":3554.58},{"epoch":26115318,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":517.76,"free":3554.48},{"epoch":26115319,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":517.72,"free":3554.51},{"epoch":26115320,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":517.47,"free":3554.77},{"epoch":26115321,"idl":99.59,"recv":0,"send":0.01,"writ":0.43,"used":517.79,"free":3554.45},{"epoch":26115322,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":517.61,"free":3554.63},{"epoch":26115323,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":517.71,"free":3554.52},{"epoch":26115324,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":517.73,"free":3554.5},{"epoch":26115325,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":517.73,"free":3554.52},{"epoch":26115326,"idl":98.25,"recv":0.04,"send":0.01,"writ":64.27,"used":521.75,"free":3550.73},{"epoch":26115327,"idl":97.46,"recv":0,"send":0,"writ":78.32,"used":526.3,"free":3546.55},{"epoch":26115328,"idl":99.75,"recv":0,"send":0,"writ":0.19,"used":519.27,"free":3553.05},{"epoch":26115329,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":519.23,"free":3553.07},{"epoch":26115330,"idl":99.55,"recv":0,"send":0,"writ":0.29,"used":518.74,"free":3553.58},{"epoch":26115331,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":518.7,"free":3553.62},{"epoch":26115332,"idl":99.64,"recv":0,"send":0,"writ":0.59,"used":518.13,"free":3554.23},{"epoch":26115333,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":517.66,"free":3554.71},{"epoch":26115334,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":517.62,"free":3554.74},{"epoch":26115335,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":516.9,"free":3555.48},{"epoch":26115336,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":516.66,"free":3555.73},{"epoch":26115337,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":506.63,"free":3566.01},{"epoch":26115338,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.95,"free":3566.69},{"epoch":26115339,"idl":99.62,"recv":0,"send":0,"writ":0.31,"used":506.62,"free":3565.99},{"epoch":26115340,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":506.79,"free":3565.83},{"epoch":26115341,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":506.8,"free":3565.82},{"epoch":26115342,"idl":99.6,"recv":0,"send":0,"writ":0.55,"used":507.12,"free":3565.5},{"epoch":26115343,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.76,"free":3565.85},{"epoch":26115344,"idl":99.76,"recv":0.01,"send":0.33,"writ":0.17,"used":506.73,"free":3565.87},{"epoch":26115345,"idl":99.59,"recv":0,"send":0,"writ":0.34,"used":505.57,"free":3567.05},{"epoch":26115346,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":505.5,"free":3567.12},{"epoch":26115347,"idl":99.56,"recv":0,"send":0,"writ":0.54,"used":506.88,"free":3565.73},{"epoch":26115348,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.93,"free":3565.68},{"epoch":26115349,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.91,"free":3565.69},{"epoch":26115350,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":506.82,"free":3565.81},{"epoch":26115351,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":506.83,"free":3565.81},{"epoch":26115352,"idl":99.58,"recv":0,"send":0,"writ":0.39,"used":507.16,"free":3565.47},{"epoch":26115353,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":506.8,"free":3565.82},{"epoch":26115354,"idl":99.75,"recv":0.01,"send":0.87,"writ":0.2,"used":506.69,"free":3565.93},{"epoch":26115355,"idl":99.61,"recv":0.01,"send":0.78,"writ":0.36,"used":506.55,"free":3566.08},{"epoch":26115356,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":506.51,"free":3566.11},{"epoch":26115357,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":507.04,"free":3565.58},{"epoch":26115358,"idl":99.37,"recv":0,"send":0,"writ":0.14,"used":506.97,"free":3565.65},{"epoch":26115359,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":506.93,"free":3565.68},{"epoch":26115360,"idl":99.48,"recv":0,"send":0,"writ":0.29,"used":506.47,"free":3566.16},{"epoch":26115361,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":506.42,"free":3566.2},{"epoch":26115362,"idl":99.63,"recv":0,"send":0,"writ":0.57,"used":507.04,"free":3565.57},{"epoch":26115363,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":506.5,"free":3566.11},{"epoch":26115364,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.54,"free":3566.07},{"epoch":26115365,"idl":99.51,"recv":0,"send":0,"writ":0.33,"used":505.86,"free":3566.76},{"epoch":26115366,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":505.77,"free":3566.85},{"epoch":26115367,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":506.11,"free":3566.5},{"epoch":26115368,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":506.23,"free":3566.38},{"epoch":26115369,"idl":99.47,"recv":0,"send":0,"writ":0.3,"used":506.93,"free":3565.66},{"epoch":26115370,"idl":99.64,"recv":0,"send":0,"writ":0.28,"used":505.99,"free":3566.62},{"epoch":26115371,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":505.94,"free":3566.66},{"epoch":26115372,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":506.26,"free":3566.33},{"epoch":26115373,"idl":99.77,"recv":0,"send":0,"writ":0.38,"used":505.9,"free":3566.68},{"epoch":26115374,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":505.89,"free":3566.69},{"epoch":26115375,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":507.02,"free":3565.58},{"epoch":26115376,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.03,"free":3565.57},{"epoch":26115377,"idl":99.71,"recv":0,"send":0,"writ":0.2,"used":507.02,"free":3565.57},{"epoch":26115378,"idl":99.63,"recv":0.05,"send":2.55,"writ":0.65,"used":507.57,"free":3565},{"epoch":26115379,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":507.27,"free":3565.29},{"epoch":26115380,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":507.02,"free":3565.56},{"epoch":26115381,"idl":99.8,"recv":0,"send":0.01,"writ":0.16,"used":506.99,"free":3565.59},{"epoch":26115382,"idl":99.78,"recv":0,"send":0.02,"writ":0.18,"used":506.94,"free":3565.62},{"epoch":26115383,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":507.48,"free":3565.09},{"epoch":26115384,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.89,"free":3565.67},{"epoch":26115385,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":506.4,"free":3566.18},{"epoch":26115386,"idl":99.75,"recv":0,"send":0,"writ":0.2,"used":506.22,"free":3566.35},{"epoch":26115387,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.29,"free":3566.28},{"epoch":26115388,"idl":99.68,"recv":0,"send":0,"writ":0.49,"used":506.98,"free":3565.58},{"epoch":26115389,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":506.99,"free":3565.57},{"epoch":26115390,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":506.99,"free":3565.59},{"epoch":26115391,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.96,"free":3565.61},{"epoch":26115392,"idl":99.74,"recv":0,"send":0,"writ":0.2,"used":506.93,"free":3565.63},{"epoch":26115393,"idl":99.66,"recv":0,"send":0,"writ":0.57,"used":507.26,"free":3565.3},{"epoch":26115394,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.89,"free":3565.66},{"epoch":26115395,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":507.12,"free":3565.44},{"epoch":26115396,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.12,"free":3565.45},{"epoch":26115397,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.14,"free":3565.42},{"epoch":26115398,"idl":99.64,"recv":0.02,"send":0.87,"writ":0.58,"used":507.92,"free":3564.64},{"epoch":26115399,"idl":99.64,"recv":0,"send":0,"writ":0.37,"used":507.17,"free":3565.39},{"epoch":26115400,"idl":99.53,"recv":0,"send":0,"writ":0.3,"used":506.43,"free":3566.14},{"epoch":26115401,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.38,"free":3566.18},{"epoch":26115402,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":506.37,"free":3566.19},{"epoch":26115403,"idl":99.58,"recv":0,"send":0,"writ":0.39,"used":506.66,"free":3565.89},{"epoch":26115404,"idl":94.13,"recv":18.64,"send":0.11,"writ":97.69,"used":515.24,"free":3556.39},{"epoch":26115405,"idl":93.28,"recv":0,"send":0,"writ":315.15,"used":519.32,"free":3529.94},{"epoch":26115406,"idl":99.79,"recv":0,"send":0,"writ":0.21,"used":514.13,"free":3537.33},{"epoch":26115407,"idl":89.64,"recv":3.13,"send":0.15,"writ":58.29,"used":535.06,"free":3506.74},{"epoch":26115408,"idl":99.56,"recv":0,"send":0,"writ":7.79,"used":514.12,"free":3524.57},{"epoch":26115409,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":514.81,"free":3523.89},{"epoch":26115410,"idl":99.64,"recv":0,"send":0,"writ":0.35,"used":512.8,"free":3525.99},{"epoch":26115411,"idl":99.63,"recv":0,"send":0,"writ":0.17,"used":512.12,"free":3526.68},{"epoch":26115412,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":512.09,"free":3526.7},{"epoch":26115413,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":512.08,"free":3526.71},{"epoch":26115414,"idl":99.57,"recv":0,"send":0,"writ":0.59,"used":512.41,"free":3526.38},{"epoch":26115415,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":512.06,"free":3526.75},{"epoch":26115416,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":512.03,"free":3526.77},{"epoch":26115417,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":512.02,"free":3526.77},{"epoch":26115418,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":512.2,"free":3526.59},{"epoch":26115419,"idl":99.63,"recv":0,"send":0,"writ":0.62,"used":512.24,"free":3526.57},{"epoch":26115420,"idl":98.87,"recv":0,"send":0,"writ":0.39,"used":511.93,"free":3526.89},{"epoch":26115421,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":511.92,"free":3526.89},{"epoch":26115422,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":511.9,"free":3526.91},{"epoch":26115423,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":511.87,"free":3526.94},{"epoch":26115424,"idl":99.61,"recv":0,"send":0,"writ":0.59,"used":512.21,"free":3526.6},{"epoch":26115425,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":512.09,"free":3526.73},{"epoch":26115426,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":512.09,"free":3526.73},{"epoch":26115427,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":512.06,"free":3526.75},{"epoch":26115428,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":512.05,"free":3526.76},{"epoch":26115429,"idl":99.54,"recv":0,"send":0,"writ":0.56,"used":512.55,"free":3526.24},{"epoch":26115430,"idl":99.62,"recv":0,"send":0,"writ":0.43,"used":511.75,"free":3527.06},{"epoch":26115431,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":511.71,"free":3527.1},{"epoch":26115432,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":511.69,"free":3527.11},{"epoch":26115433,"idl":99.76,"recv":0,"send":0.02,"writ":0.18,"used":511.63,"free":3527.17},{"epoch":26115434,"idl":99.66,"recv":0.01,"send":0.39,"writ":0.52,"used":511.87,"free":3526.92},{"epoch":26115435,"idl":99.61,"recv":0,"send":0,"writ":0.38,"used":510.88,"free":3527.93},{"epoch":26115436,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":510.84,"free":3527.97},{"epoch":26115437,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":511.3,"free":3527.5},{"epoch":26115438,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":511.29,"free":3527.51},{"epoch":26115439,"idl":99.69,"recv":0,"send":0,"writ":0.43,"used":511.94,"free":3526.86},{"epoch":26115440,"idl":99.63,"recv":0.03,"send":1.35,"writ":0.45,"used":511.67,"free":3527.15},{"epoch":26115441,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":511.6,"free":3527.2},{"epoch":26115442,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":511.71,"free":3527.1},{"epoch":26115443,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":511.63,"free":3527.17},{"epoch":26115444,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":511.11,"free":3527.69},{"epoch":26115445,"idl":99.65,"recv":0,"send":0.01,"writ":0.43,"used":510.94,"free":3527.87},{"epoch":26115446,"idl":99.75,"recv":0,"send":0,"writ":0.21,"used":510.51,"free":3528.3},{"epoch":26115447,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":510.38,"free":3528.42},{"epoch":26115448,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":510.37,"free":3528.43},{"epoch":26115449,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":510.33,"free":3528.46},{"epoch":26115450,"idl":99.5,"recv":0,"send":0,"writ":0.66,"used":511.79,"free":3527.02},{"epoch":26115451,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":511.3,"free":3527.51},{"epoch":26115452,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":511.41,"free":3527.39},{"epoch":26115453,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":511.44,"free":3527.35},{"epoch":26115454,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":511.44,"free":3527.36},{"epoch":26115455,"idl":99.59,"recv":0,"send":0,"writ":0.69,"used":511.41,"free":3527.42},{"epoch":26115456,"idl":99.76,"recv":0,"send":0,"writ":0.13,"used":510.94,"free":3527.89},{"epoch":26115457,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":510.91,"free":3527.91},{"epoch":26115458,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":510.9,"free":3527.92},{"epoch":26115459,"idl":99.51,"recv":0,"send":0,"writ":0.27,"used":511.35,"free":3527.45},{"epoch":26115460,"idl":99.47,"recv":0,"send":0,"writ":0.72,"used":510.93,"free":3527.88},{"epoch":26115461,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":510.59,"free":3528.22},{"epoch":26115462,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":510.58,"free":3528.22},{"epoch":26115463,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":510.55,"free":3528.25},{"epoch":26115464,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":510.64,"free":3528.15},{"epoch":26115465,"idl":99.59,"recv":0,"send":0,"writ":0.73,"used":512.18,"free":3526.62},{"epoch":26115466,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":511.44,"free":3527.36},{"epoch":26115467,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":511.42,"free":3527.38},{"epoch":26115468,"idl":99.7,"recv":0.02,"send":0.01,"writ":0.16,"used":511.38,"free":3527.41},{"epoch":26115469,"idl":99.72,"recv":0.03,"send":0.02,"writ":0.14,"used":511.39,"free":3527.4},{"epoch":26115470,"idl":99.54,"recv":0.03,"send":0.02,"writ":0.7,"used":512.07,"free":3526.74},{"epoch":26115471,"idl":99.78,"recv":0.04,"send":0.02,"writ":0.16,"used":511.63,"free":3527.17},{"epoch":26115472,"idl":99.8,"recv":0.04,"send":0.02,"writ":0.14,"used":511.62,"free":3527.18},{"epoch":26115473,"idl":99.81,"recv":0.03,"send":0.02,"writ":0.18,"used":511.61,"free":3527.18},{"epoch":26115474,"idl":99.73,"recv":0.03,"send":0.02,"writ":0.16,"used":511.61,"free":3527.18},{"epoch":26115475,"idl":99.51,"recv":0.03,"send":0.02,"writ":0.56,"used":511.97,"free":3526.84},{"epoch":26115476,"idl":99.82,"recv":0.03,"send":0.02,"writ":0.31,"used":510.89,"free":3527.91},{"epoch":26115477,"idl":99.82,"recv":0.02,"send":0.02,"writ":0.19,"used":510.89,"free":3527.9},{"epoch":26115478,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":510.96,"free":3527.83},{"epoch":26115479,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":510.93,"free":3527.85},{"epoch":26115480,"idl":99.45,"recv":0,"send":0,"writ":0.45,"used":511.11,"free":3527.69},{"epoch":26115481,"idl":99.9,"recv":0,"send":0,"writ":0.37,"used":511.17,"free":3527.64},{"epoch":26115482,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":511.16,"free":3527.64},{"epoch":26115483,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":511.13,"free":3527.67},{"epoch":26115484,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":511.12,"free":3527.67},{"epoch":26115485,"idl":99.66,"recv":0,"send":0,"writ":0.45,"used":511.95,"free":3526.86},{"epoch":26115486,"idl":99.84,"recv":0.01,"send":0.09,"writ":0.39,"used":511.39,"free":3527.42},{"epoch":26115487,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":511.44,"free":3527.36},{"epoch":26115488,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":511.4,"free":3527.39},{"epoch":26115489,"idl":99.52,"recv":0,"send":0,"writ":0.31,"used":511.4,"free":3527.37},{"epoch":26115490,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":511.62,"free":3527.16},{"epoch":26115491,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":512.13,"free":3526.65},{"epoch":26115492,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":511.58,"free":3527.19},{"epoch":26115493,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":511.55,"free":3527.21},{"epoch":26115494,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":511.54,"free":3527.22},{"epoch":26115495,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":511.78,"free":3527.01},{"epoch":26115496,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":512.03,"free":3526.76},{"epoch":26115497,"idl":99.86,"recv":0.05,"send":2.18,"writ":0.22,"used":511.71,"free":3527.07},{"epoch":26115498,"idl":99.84,"recv":0.03,"send":1.4,"writ":0.24,"used":511.65,"free":3527.12},{"epoch":26115499,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":511.64,"free":3527.12},{"epoch":26115500,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":511.43,"free":3527.35},{"epoch":26115501,"idl":99.7,"recv":0.01,"send":0.15,"writ":0.59,"used":512.12,"free":3526.65},{"epoch":26115502,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":511.93,"free":3526.84},{"epoch":26115503,"idl":99.83,"recv":0.02,"send":0.6,"writ":0.16,"used":511.91,"free":3526.84},{"epoch":26115504,"idl":99.88,"recv":0,"send":0.05,"writ":0.23,"used":511.9,"free":3526.85},{"epoch":26115505,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":511.63,"free":3527.13},{"epoch":26115506,"idl":99.71,"recv":0.02,"send":0.33,"writ":0.6,"used":512.26,"free":3526.41},{"epoch":26115507,"idl":99.77,"recv":0.23,"send":3.02,"writ":0.45,"used":511.53,"free":3525.12},{"epoch":26115508,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":511.43,"free":3525.21},{"epoch":26115509,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":511.42,"free":3525.21},{"epoch":26115510,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":511.9,"free":3524.75},{"epoch":26115511,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":511.56,"free":3525.09},{"epoch":26115512,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":510.15,"free":3526.5},{"epoch":26115513,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":510.13,"free":3526.5},{"epoch":26115514,"idl":99.88,"recv":0,"send":0.01,"writ":0.16,"used":510.22,"free":3526.42},{"epoch":26115515,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":511.05,"free":3525.6},{"epoch":26115516,"idl":99.69,"recv":0,"send":0,"writ":0.65,"used":511.25,"free":3525.41},{"epoch":26115517,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":510.7,"free":3525.95},{"epoch":26115518,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":510.68,"free":3525.96},{"epoch":26115519,"idl":99.67,"recv":0,"send":0,"writ":0.27,"used":511.6,"free":3525.02},{"epoch":26115520,"idl":99.69,"recv":0,"send":0,"writ":0.27,"used":511.64,"free":3525},{"epoch":26115521,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":511.76,"free":3524.87},{"epoch":26115522,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":510.62,"free":3526.01},{"epoch":26115523,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":510.58,"free":3526.04},{"epoch":26115524,"idl":99.83,"recv":0,"send":0.01,"writ":0.2,"used":510.74,"free":3525.87},{"epoch":26115525,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":511.73,"free":3524.91},{"epoch":26115526,"idl":99.74,"recv":0,"send":0,"writ":0.38,"used":512.06,"free":3524.57},{"epoch":26115527,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":511.7,"free":3524.93},{"epoch":26115528,"idl":99.83,"recv":0.09,"send":3.92,"writ":0.19,"used":511.69,"free":3524.93},{"epoch":26115529,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":511.7,"free":3524.9},{"epoch":26115530,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":511.94,"free":3524.68},{"epoch":26115531,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":512.24,"free":3524.37},{"epoch":26115532,"idl":99.78,"recv":0,"send":0,"writ":0.39,"used":510.92,"free":3525.69},{"epoch":26115533,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":510.9,"free":3525.7},{"epoch":26115534,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":510.88,"free":3525.73},{"epoch":26115535,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":510.88,"free":3525.73},{"epoch":26115536,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.16,"used":510.85,"free":3525.76},{"epoch":26115537,"idl":83.04,"recv":0.04,"send":0.9,"writ":4.37,"used":751.18,"free":3285.37},{"epoch":26115538,"idl":99.73,"recv":0,"send":0,"writ":0.21,"used":851.78,"free":3184.75},{"epoch":26115539,"idl":99.87,"recv":0.02,"send":0.87,"writ":0.17,"used":555.23,"free":3481.28},{"epoch":26115540,"idl":99.57,"recv":0.08,"send":4.29,"writ":0.52,"used":555.98,"free":3480.54},{"epoch":26115541,"idl":99.79,"recv":0.03,"send":1.51,"writ":0.36,"used":555.92,"free":3480.57},{"epoch":26115542,"idl":99.72,"recv":0,"send":0.01,"writ":0.61,"used":556.59,"free":3479.89},{"epoch":26115543,"idl":99.87,"recv":0.02,"send":0.76,"writ":0.31,"used":556.14,"free":3480.33},{"epoch":26115544,"idl":99.83,"recv":0.02,"send":0.88,"writ":0.27,"used":556.09,"free":3480.36},{"epoch":26115545,"idl":99.77,"recv":0,"send":0.01,"writ":0.35,"used":556.41,"free":3480.06},{"epoch":26115546,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.15,"used":556.47,"free":3479.99},{"epoch":26115547,"idl":99.7,"recv":0,"send":0,"writ":0.44,"used":556.77,"free":3479.69},{"epoch":26115548,"idl":99.83,"recv":0,"send":0.01,"writ":0.29,"used":556.41,"free":3480.05},{"epoch":26115549,"idl":99.48,"recv":0,"send":0,"writ":0.4,"used":557.09,"free":3479.34},{"epoch":26115550,"idl":82.43,"recv":0.05,"send":0.91,"writ":4.11,"used":816.62,"free":3219.81},{"epoch":26115551,"idl":80.1,"recv":0.05,"send":0.99,"writ":4.12,"used":910.7,"free":3125.73},{"epoch":26115552,"idl":65.86,"recv":0.06,"send":1.8,"writ":7.78,"used":960.68,"free":3075.71},{"epoch":26115553,"idl":99.87,"recv":0,"send":0.01,"writ":0.48,"used":929.21,"free":3107.19},{"epoch":26115554,"idl":99.7,"recv":0.02,"send":0.87,"writ":0.27,"used":656.19,"free":3380.2},{"epoch":26115555,"idl":99.68,"recv":0,"send":0,"writ":0.35,"used":557.44,"free":3478.96},{"epoch":26115556,"idl":99.81,"recv":0.03,"send":0.88,"writ":0.3,"used":557.34,"free":3479.05},{"epoch":26115557,"idl":84.96,"recv":0.02,"send":0.02,"writ":1.38,"used":644.6,"free":3391.77},{"epoch":26115558,"idl":97.43,"recv":0.09,"send":3.74,"writ":3.38,"used":941.61,"free":3094.76},{"epoch":26115559,"idl":82.62,"recv":0.05,"send":0.91,"writ":3.97,"used":947.6,"free":3088.73},{"epoch":26115560,"idl":82.11,"recv":0.02,"send":0.02,"writ":1.9,"used":796.54,"free":3239.81},{"epoch":26115561,"idl":99.28,"recv":0.02,"send":0.89,"writ":2.53,"used":941.26,"free":3095.08},{"epoch":26115562,"idl":99.26,"recv":0,"send":0,"writ":0.63,"used":710.78,"free":3325.56},{"epoch":26115563,"idl":99.85,"recv":0,"send":0.01,"writ":0.22,"used":556.32,"free":3480.01},{"epoch":26115564,"idl":99.84,"recv":0,"send":0.01,"writ":0.24,"used":556.29,"free":3480.04},{"epoch":26115565,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":556.78,"free":3479.56},{"epoch":26115566,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":556.6,"free":3479.74},{"epoch":26115567,"idl":99.69,"recv":0,"send":0,"writ":0.62,"used":556.9,"free":3479.44},{"epoch":26115568,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":556.41,"free":3479.92},{"epoch":26115569,"idl":99.85,"recv":0,"send":0.01,"writ":0.16,"used":556.39,"free":3479.94},{"epoch":26115570,"idl":99.61,"recv":0.05,"send":1.27,"writ":0.38,"used":556.83,"free":3479.51},{"epoch":26115571,"idl":99.77,"recv":0.06,"send":0.3,"writ":0.3,"used":556.82,"free":3479.49},{"epoch":26115572,"idl":82.67,"recv":0.02,"send":0.02,"writ":1.97,"used":652.59,"free":3383.66},{"epoch":26115573,"idl":99.12,"recv":0.06,"send":0.9,"writ":2.77,"used":928.54,"free":3107.71},{"epoch":26115574,"idl":82.72,"recv":0.05,"send":1.37,"writ":3.73,"used":858.89,"free":3177.33},{"epoch":26115575,"idl":99.46,"recv":0,"send":0,"writ":0.57,"used":773.41,"free":3262.84},{"epoch":26115576,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":555.31,"free":3480.93},{"epoch":26115577,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":555.28,"free":3480.96},{"epoch":26115578,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":557.15,"free":3479.09},{"epoch":26115579,"idl":99.65,"recv":0,"send":0,"writ":0.27,"used":557.44,"free":3478.77},{"epoch":26115580,"idl":99.75,"recv":0,"send":0.01,"writ":0.32,"used":557.18,"free":3479.05},{"epoch":26115581,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":557.24,"free":3478.98},{"epoch":26115582,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":557.3,"free":3478.91},{"epoch":26115583,"idl":99.71,"recv":0.03,"send":0.87,"writ":0.57,"used":557.6,"free":3478.6},{"epoch":26115584,"idl":99.85,"recv":0.03,"send":1.13,"writ":0.29,"used":557.22,"free":3478.97},{"epoch":26115585,"idl":82.58,"recv":0.11,"send":1.64,"writ":4.23,"used":821.6,"free":3214.54},{"epoch":26115586,"idl":99.63,"recv":0.03,"send":0.92,"writ":0.23,"used":827.08,"free":3209.06},{"epoch":26115587,"idl":99.82,"recv":0.02,"send":0.77,"writ":0.21,"used":557.18,"free":3478.95},{"epoch":26115588,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":557.96,"free":3478.16},{"epoch":26115589,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":557.85,"free":3478.27},{"epoch":26115590,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":557.84,"free":3478.29},{"epoch":26115591,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":557.85,"free":3478.28},{"epoch":26115592,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":557.99,"free":3478.14},{"epoch":26115593,"idl":99.71,"recv":0.07,"send":0.15,"writ":0.69,"used":559.26,"free":3476.83},{"epoch":26115594,"idl":99.83,"recv":0.03,"send":1.1,"writ":0.27,"used":558.5,"free":3477.55},{"epoch":26115595,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":558.33,"free":3477.73},{"epoch":26115596,"idl":99.87,"recv":0,"send":0.02,"writ":0.18,"used":558.3,"free":3477.76},{"epoch":26115597,"idl":99.82,"recv":0.01,"send":0.13,"writ":0.16,"used":558.26,"free":3477.8},{"epoch":26115598,"idl":99.71,"recv":0.02,"send":0.56,"writ":0.49,"used":558.63,"free":3477.42},{"epoch":26115599,"idl":99.76,"recv":0.06,"send":1.84,"writ":0.45,"used":557.34,"free":3478.69},{"epoch":26115600,"idl":99.63,"recv":0.08,"send":0.12,"writ":0.37,"used":557.86,"free":3478.17},{"epoch":26115601,"idl":99.74,"recv":0.12,"send":4.49,"writ":0.46,"used":558.02,"free":3477.93},{"epoch":26115602,"idl":99.85,"recv":0,"send":0,"writ":0.22,"used":557.37,"free":3478.56},{"epoch":26115603,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":557.72,"free":3478.21},{"epoch":26115604,"idl":99.74,"recv":0.02,"send":0.83,"writ":0.54,"used":558.21,"free":3477.71},{"epoch":26115605,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":558.19,"free":3477.74},{"epoch":26115606,"idl":99.8,"recv":0.12,"send":2.67,"writ":0.22,"used":558.2,"free":3477.72},{"epoch":26115607,"idl":99.78,"recv":0.05,"send":1.14,"writ":0.23,"used":558.19,"free":3477.71},{"epoch":26115608,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":558.06,"free":3477.83},{"epoch":26115609,"idl":99.34,"recv":0.01,"send":0.03,"writ":0.88,"used":558.78,"free":3477.09},{"epoch":26115610,"idl":99.74,"recv":0.01,"send":0.01,"writ":0.34,"used":558.21,"free":3477.67},{"epoch":26115611,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":558.22,"free":3477.66},{"epoch":26115612,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":558.19,"free":3477.69},{"epoch":26115613,"idl":99.82,"recv":0.04,"send":1.59,"writ":0.27,"used":558.2,"free":3477.67},{"epoch":26115614,"idl":99.58,"recv":0,"send":0,"writ":0.66,"used":558.8,"free":3477.08},{"epoch":26115615,"idl":99.66,"recv":0,"send":0,"writ":0.33,"used":557.71,"free":3478.19},{"epoch":26115616,"idl":99.76,"recv":0.01,"send":0.15,"writ":0.14,"used":557.67,"free":3478.22},{"epoch":26115617,"idl":99.69,"recv":0,"send":0,"writ":0.26,"used":557.61,"free":3478.27},{"epoch":26115618,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":557.74,"free":3478.14},{"epoch":26115619,"idl":99.63,"recv":0,"send":0,"writ":0.6,"used":558.43,"free":3477.44},{"epoch":26115620,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":557.97,"free":3477.93},{"epoch":26115621,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.94,"free":3477.95},{"epoch":26115622,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":557.93,"free":3477.96},{"epoch":26115623,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":557.88,"free":3478},{"epoch":26115624,"idl":99.55,"recv":0,"send":0,"writ":0.57,"used":558.52,"free":3477.36},{"epoch":26115625,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":558.35,"free":3477.55},{"epoch":26115626,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":558.33,"free":3477.56},{"epoch":26115627,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":558.31,"free":3477.58},{"epoch":26115628,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":558.46,"free":3477.42},{"epoch":26115629,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":558.93,"free":3476.95},{"epoch":26115630,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":557.22,"free":3478.67},{"epoch":26115631,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.17,"free":3478.72},{"epoch":26115632,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":557.15,"free":3478.73},{"epoch":26115633,"idl":99.85,"recv":0.01,"send":0,"writ":0.16,"used":557.1,"free":3478.78},{"epoch":26115634,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":558.15,"free":3477.72},{"epoch":26115635,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":558.7,"free":3477.19},{"epoch":26115636,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":558.68,"free":3477.21},{"epoch":26115637,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":557.98,"free":3477.91},{"epoch":26115638,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":557.65,"free":3478.23},{"epoch":26115639,"idl":99.6,"recv":0.01,"send":0,"writ":0.58,"used":558.85,"free":3477},{"epoch":26115640,"idl":99.65,"recv":0,"send":0,"writ":0.45,"used":557.34,"free":3478.52},{"epoch":26115641,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":557.41,"free":3478.45},{"epoch":26115642,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":557.46,"free":3478.4},{"epoch":26115643,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":557.45,"free":3478.4},{"epoch":26115644,"idl":99.75,"recv":0,"send":0,"writ":0.43,"used":557.89,"free":3477.98},{"epoch":26115645,"idl":99.73,"recv":0,"send":0,"writ":0.46,"used":557.94,"free":3477.94},{"epoch":26115646,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":557.89,"free":3477.99},{"epoch":26115647,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.89,"free":3477.99},{"epoch":26115648,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.16,"used":557.93,"free":3477.94},{"epoch":26115649,"idl":99.76,"recv":0,"send":0,"writ":0.43,"used":558.38,"free":3477.49},{"epoch":26115650,"idl":99.81,"recv":0,"send":0,"writ":0.44,"used":558.21,"free":3477.68},{"epoch":26115651,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":558.17,"free":3477.71},{"epoch":26115652,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":558.16,"free":3477.72},{"epoch":26115653,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":558.13,"free":3477.74},{"epoch":26115654,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":558.11,"free":3477.76},{"epoch":26115655,"idl":99.64,"recv":0,"send":0,"writ":0.71,"used":559.4,"free":3476.49},{"epoch":26115656,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":558.08,"free":3477.8},{"epoch":26115657,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":558.07,"free":3477.8},{"epoch":26115658,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":558.04,"free":3477.83},{"epoch":26115659,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":558.17,"free":3477.7},{"epoch":26115660,"idl":99.44,"recv":0,"send":0,"writ":0.68,"used":558.43,"free":3477.45},{"epoch":26115661,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.72,"free":3478.16},{"epoch":26115662,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":557.68,"free":3478.2},{"epoch":26115663,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":557.63,"free":3478.23},{"epoch":26115664,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.62,"free":3478.24},{"epoch":26115665,"idl":99.66,"recv":0,"send":0,"writ":0.72,"used":559.32,"free":3476.56},{"epoch":26115666,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":559.08,"free":3476.81},{"epoch":26115667,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":559.06,"free":3476.84},{"epoch":26115668,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":559.1,"free":3476.79},{"epoch":26115669,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":558.75,"free":3477.11},{"epoch":26115670,"idl":99.62,"recv":0,"send":0,"writ":0.68,"used":559.44,"free":3476.45},{"epoch":26115671,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":559.15,"free":3476.73},{"epoch":26115672,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":559.12,"free":3476.75},{"epoch":26115673,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":559.11,"free":3476.76},{"epoch":26115674,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":558.76,"free":3477.11},{"epoch":26115675,"idl":99.56,"recv":0,"send":0,"writ":0.65,"used":558.95,"free":3476.94},{"epoch":26115676,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":558.32,"free":3477.56},{"epoch":26115677,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":558.09,"free":3477.78},{"epoch":26115678,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":558.22,"free":3477.65},{"epoch":26115679,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":558.18,"free":3477.68},{"epoch":26115680,"idl":99.54,"recv":0,"send":0,"writ":0.59,"used":558.43,"free":3477.44},{"epoch":26115681,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":558.88,"free":3477},{"epoch":26115682,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":558.84,"free":3477.03},{"epoch":26115683,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":558.81,"free":3477.05},{"epoch":26115684,"idl":99.88,"recv":0.02,"send":1.63,"writ":0.3,"used":558.81,"free":3477.05},{"epoch":26115685,"idl":99.67,"recv":0,"send":0,"writ":0.79,"used":559.27,"free":3476.59},{"epoch":26115686,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":558.99,"free":3476.87},{"epoch":26115687,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":558.87,"free":3476.99},{"epoch":26115688,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":558.9,"free":3476.95},{"epoch":26115689,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":558.87,"free":3476.97},{"epoch":26115690,"idl":97.93,"recv":0.04,"send":0.01,"writ":64.62,"used":565.46,"free":3469.9},{"epoch":26115691,"idl":97.93,"recv":0,"send":0,"writ":78.59,"used":566.36,"free":3471.09},{"epoch":26115692,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":560.66,"free":3475.24},{"epoch":26115693,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":560.64,"free":3475.25},{"epoch":26115694,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":560.58,"free":3475.31},{"epoch":26115695,"idl":99.8,"recv":0.14,"send":2.51,"writ":0.64,"used":560.95,"free":3474.92},{"epoch":26115696,"idl":99.73,"recv":0.02,"send":0.84,"writ":0.67,"used":559.3,"free":3476.57},{"epoch":26115697,"idl":99.9,"recv":0,"send":0.01,"writ":0.17,"used":558.67,"free":3477.21},{"epoch":26115698,"idl":99.84,"recv":0.01,"send":0,"writ":0.16,"used":558.73,"free":3477.14},{"epoch":26115699,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":558.46,"free":3477.39},{"epoch":26115700,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":558.44,"free":3477.42},{"epoch":26115701,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":559.14,"free":3476.74},{"epoch":26115702,"idl":99.88,"recv":0.03,"send":0.84,"writ":0.18,"used":559.11,"free":3476.75},{"epoch":26115703,"idl":97.85,"recv":0.01,"send":0,"writ":0.3,"used":561.71,"free":3474.15},{"epoch":26115704,"idl":84.44,"recv":0.05,"send":1.7,"writ":3.89,"used":966.34,"free":3069.49},{"epoch":26115705,"idl":99.58,"recv":0,"send":0,"writ":0.32,"used":679,"free":3356.85},{"epoch":26115706,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":556.62,"free":3479.23},{"epoch":26115707,"idl":99.87,"recv":0.02,"send":0.83,"writ":0.2,"used":556.42,"free":3479.42},{"epoch":26115708,"idl":99.88,"recv":0,"send":0.01,"writ":0.18,"used":556.37,"free":3479.46},{"epoch":26115709,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":556.34,"free":3479.49},{"epoch":26115710,"idl":99.77,"recv":0.03,"send":1.54,"writ":0.39,"used":556.66,"free":3479.18},{"epoch":26115711,"idl":99.71,"recv":0.09,"send":3.49,"writ":0.8,"used":557.31,"free":3478.51},{"epoch":26115712,"idl":99.89,"recv":0.03,"send":1.34,"writ":0.32,"used":557.09,"free":3478.71},{"epoch":26115713,"idl":99.9,"recv":0.02,"send":0.38,"writ":0.2,"used":557.12,"free":3478.68},{"epoch":26115714,"idl":99.91,"recv":0.03,"send":1.33,"writ":0.21,"used":557.12,"free":3478.67},{"epoch":26115715,"idl":99.69,"recv":0.04,"send":1.6,"writ":0.41,"used":556.37,"free":3479.43},{"epoch":26115716,"idl":99.73,"recv":0.02,"send":0.81,"writ":0.63,"used":557.48,"free":3478.31},{"epoch":26115717,"idl":99.89,"recv":0.02,"send":0.83,"writ":0.21,"used":557.62,"free":3478.16},{"epoch":26115718,"idl":99.88,"recv":0.01,"send":0.04,"writ":0.25,"used":556.6,"free":3479.17},{"epoch":26115719,"idl":83.69,"recv":0.04,"send":0.86,"writ":3.95,"used":757.41,"free":3278.34},{"epoch":26115720,"idl":99.46,"recv":0.01,"send":0,"writ":0.48,"used":721.05,"free":3314.72},{"epoch":26115721,"idl":82.9,"recv":0.02,"send":0.86,"writ":4.2,"used":901.9,"free":3133.85},{"epoch":26115722,"idl":83.31,"recv":0.03,"send":0.86,"writ":3.84,"used":929.88,"free":3105.87},{"epoch":26115723,"idl":87.6,"recv":0.01,"send":0,"writ":1.08,"used":936.86,"free":3098.87},{"epoch":26115724,"idl":95.06,"recv":0.05,"send":1.68,"writ":3.47,"used":947.81,"free":3087.92},{"epoch":26115725,"idl":82.9,"recv":0.03,"send":0.86,"writ":3.86,"used":932.91,"free":3102.81},{"epoch":26115726,"idl":83.6,"recv":0.03,"send":0.86,"writ":4.64,"used":929.75,"free":3105.96},{"epoch":26115727,"idl":99.76,"recv":0.02,"send":0.82,"writ":0.16,"used":793.95,"free":3241.76},{"epoch":26115728,"idl":99.89,"recv":0,"send":0.01,"writ":0.21,"used":555.3,"free":3480.39},{"epoch":26115729,"idl":83.57,"recv":0.04,"send":0.85,"writ":4.15,"used":816.71,"free":3218.94},{"epoch":26115730,"idl":99.62,"recv":0.02,"send":0.8,"writ":0.43,"used":803.94,"free":3231.73},{"epoch":26115731,"idl":99.75,"recv":0,"send":0.04,"writ":0.33,"used":556.47,"free":3479.2},{"epoch":26115732,"idl":99.89,"recv":0.01,"send":0,"writ":0.44,"used":556.77,"free":3478.89},{"epoch":26115733,"idl":99.83,"recv":0,"send":0.01,"writ":0.2,"used":556.73,"free":3478.93},{"epoch":26115734,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":556.7,"free":3478.96},{"epoch":26115735,"idl":99.79,"recv":0,"send":0.01,"writ":0.36,"used":556.45,"free":3479.22},{"epoch":26115736,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":556.44,"free":3479.23},{"epoch":26115737,"idl":99.71,"recv":0,"send":0,"writ":0.65,"used":557.73,"free":3477.93},{"epoch":26115738,"idl":83.17,"recv":0.01,"send":0.03,"writ":3.56,"used":665.21,"free":3370.45},{"epoch":26115739,"idl":83.24,"recv":0.03,"send":0.86,"writ":4.1,"used":939.6,"free":3096.05},{"epoch":26115740,"idl":99.57,"recv":0.03,"send":1.19,"writ":0.47,"used":720.61,"free":3315.06},{"epoch":26115741,"idl":99.87,"recv":0.03,"send":0.86,"writ":0.32,"used":557.64,"free":3478},{"epoch":26115742,"idl":99.73,"recv":0,"send":0.01,"writ":0.58,"used":558.7,"free":3476.94},{"epoch":26115743,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":558.77,"free":3476.86},{"epoch":26115744,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":558.73,"free":3476.89},{"epoch":26115745,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":558.11,"free":3477.53},{"epoch":26115746,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":557.98,"free":3477.66},{"epoch":26115747,"idl":99.75,"recv":0,"send":0.01,"writ":0.59,"used":558.3,"free":3477.34},{"epoch":26115748,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":557.9,"free":3477.73},{"epoch":26115749,"idl":99.87,"recv":0,"send":0.01,"writ":0.21,"used":557.88,"free":3477.75},{"epoch":26115750,"idl":99.75,"recv":0.02,"send":0.83,"writ":0.4,"used":558.38,"free":3477.26},{"epoch":26115751,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":558.37,"free":3477.27},{"epoch":26115752,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":558.94,"free":3476.69},{"epoch":26115753,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":558.97,"free":3476.65},{"epoch":26115754,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":558.96,"free":3476.66},{"epoch":26115755,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":558.96,"free":3476.68},{"epoch":26115756,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":558.07,"free":3477.57},{"epoch":26115757,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":558.45,"free":3477.19},{"epoch":26115758,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":557.9,"free":3477.73},{"epoch":26115759,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":558.4,"free":3477.2},{"epoch":26115760,"idl":99.77,"recv":0,"send":0,"writ":0.38,"used":558.67,"free":3476.95},{"epoch":26115761,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":558.6,"free":3477.02},{"epoch":26115762,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":558.88,"free":3476.73},{"epoch":26115763,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":558.26,"free":3477.34},{"epoch":26115764,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":558.24,"free":3477.36},{"epoch":26115765,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":557.99,"free":3477.63},{"epoch":26115766,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":557.95,"free":3477.66},{"epoch":26115767,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":558.23,"free":3477.38},{"epoch":26115768,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":557.65,"free":3477.95},{"epoch":26115769,"idl":99.89,"recv":0.01,"send":0.03,"writ":0.18,"used":557.68,"free":3477.92},{"epoch":26115770,"idl":99.69,"recv":0.13,"send":4.99,"writ":0.6,"used":558.71,"free":3476.88},{"epoch":26115771,"idl":99.83,"recv":0.05,"send":1.69,"writ":0.2,"used":558.69,"free":3476.87},{"epoch":26115772,"idl":99.71,"recv":0.01,"send":0.37,"writ":0.42,"used":559.01,"free":3476.53},{"epoch":26115773,"idl":99.86,"recv":0,"send":0,"writ":0.38,"used":558.25,"free":3477.29},{"epoch":26115774,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":558.11,"free":3477.42},{"epoch":26115775,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":557.85,"free":3477.7},{"epoch":26115776,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.83,"free":3477.72},{"epoch":26115777,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.8,"free":3477.73},{"epoch":26115778,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":559.12,"free":3476.41},{"epoch":26115779,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":558.94,"free":3476.6},{"epoch":26115780,"idl":99.55,"recv":0.05,"send":2.18,"writ":0.36,"used":557.98,"free":3477.58},{"epoch":26115781,"idl":99.87,"recv":0,"send":0,"writ":0.22,"used":557.92,"free":3477.63},{"epoch":26115782,"idl":99.88,"recv":0,"send":0.01,"writ":0.16,"used":557.87,"free":3477.68},{"epoch":26115783,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":559,"free":3476.55},{"epoch":26115784,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":559.04,"free":3476.5},{"epoch":26115785,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":559.04,"free":3476.52},{"epoch":26115786,"idl":99.84,"recv":0.06,"send":0.24,"writ":0.3,"used":559.28,"free":3476.26},{"epoch":26115787,"idl":99.69,"recv":0.6,"send":13.28,"writ":0.3,"used":559.88,"free":3475.61},{"epoch":26115788,"idl":99.49,"recv":1.06,"send":30,"writ":0.61,"used":561.4,"free":3474.08},{"epoch":26115789,"idl":99.03,"recv":2.59,"send":87.95,"writ":0.34,"used":561.66,"free":3473.81},{"epoch":26115790,"idl":99.79,"recv":0,"send":0,"writ":0.38,"used":561.79,"free":3473.69},{"epoch":26115791,"idl":99.89,"recv":0.03,"send":0.04,"writ":0.25,"used":561.51,"free":3473.97},{"epoch":26115792,"idl":99.88,"recv":0.02,"send":0.03,"writ":0.22,"used":560.85,"free":3474.62},{"epoch":26115793,"idl":99.36,"recv":21.96,"send":21.19,"writ":21.34,"used":561.81,"free":3456.72},{"epoch":26115794,"idl":99.88,"recv":0.47,"send":0.52,"writ":0.77,"used":561.19,"free":3452.93},{"epoch":26115795,"idl":99.78,"recv":0.07,"send":0.45,"writ":0.59,"used":561.81,"free":3458.29},{"epoch":26115796,"idl":99.9,"recv":0.11,"send":0.2,"writ":0.45,"used":561.87,"free":3464.72},{"epoch":26115797,"idl":99.86,"recv":0.03,"send":0.05,"writ":0.35,"used":561.9,"free":3464.68},{"epoch":26115798,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.66,"used":562.38,"free":3464.21},{"epoch":26115799,"idl":99.87,"recv":0.02,"send":0.83,"writ":0.24,"used":561.96,"free":3464.62},{"epoch":26115800,"idl":99.79,"recv":0.01,"send":0.03,"writ":0.36,"used":561.93,"free":3464.66},{"epoch":26115801,"idl":83.63,"recv":0.03,"send":0.06,"writ":3.67,"used":788.18,"free":3238.42},{"epoch":26115802,"idl":99.77,"recv":0,"send":0,"writ":0.36,"used":795.02,"free":3231.6},{"epoch":26115803,"idl":99.8,"recv":0.03,"send":0.98,"writ":0.76,"used":557.97,"free":3468.64},{"epoch":26115804,"idl":99.89,"recv":0,"send":0.01,"writ":0.21,"used":558.97,"free":3467.61},{"epoch":26115805,"idl":99.79,"recv":0.28,"send":13.57,"writ":0.46,"used":558.79,"free":3467.8},{"epoch":26115806,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":558.66,"free":3467.93},{"epoch":26115807,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":558.51,"free":3468.08},{"epoch":26115808,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":558.9,"free":3467.67},{"epoch":26115809,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":558.94,"free":3467.63},{"epoch":26115810,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":559.43,"free":3467.16},{"epoch":26115811,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":559.41,"free":3467.17},{"epoch":26115812,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":510.27,"free":3516.71},{"epoch":26115813,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":507.51,"free":3519.53},{"epoch":26115814,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":507.66,"free":3519.37},{"epoch":26115815,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":506.59,"free":3520.46},{"epoch":26115816,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.69,"free":3520.36},{"epoch":26115817,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.66,"free":3520.4},{"epoch":26115818,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":506.66,"free":3520.4},{"epoch":26115819,"idl":99.62,"recv":0.01,"send":0,"writ":0.73,"used":507.71,"free":3519.33},{"epoch":26115820,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":507.55,"free":3519.5},{"epoch":26115821,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":507.52,"free":3519.52},{"epoch":26115822,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.51,"free":3519.53},{"epoch":26115823,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":507.49,"free":3519.55},{"epoch":26115824,"idl":99.81,"recv":0,"send":0,"writ":0.53,"used":507.98,"free":3519.09},{"epoch":26115825,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":507.16,"free":3519.93},{"epoch":26115826,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":507.12,"free":3519.96},{"epoch":26115827,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":507.11,"free":3519.97},{"epoch":26115828,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.08,"free":3519.99},{"epoch":26115829,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":507.11,"free":3519.96},{"epoch":26115830,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":505.59,"free":3521.5},{"epoch":26115831,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":505.55,"free":3521.53},{"epoch":26115832,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":505.53,"free":3521.55},{"epoch":26115833,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.65,"free":3521.43},{"epoch":26115834,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":506.76,"free":3520.31},{"epoch":26115835,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":507.62,"free":3519.47},{"epoch":26115836,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.61,"free":3519.47},{"epoch":26115837,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":507.58,"free":3519.5},{"epoch":26115838,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":507.56,"free":3519.52},{"epoch":26115839,"idl":99.75,"recv":0,"send":0,"writ":0.46,"used":507.64,"free":3519.43},{"epoch":26115840,"idl":99.58,"recv":0,"send":0,"writ":0.39,"used":506.64,"free":3520.44},{"epoch":26115841,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.53,"free":3520.55},{"epoch":26115842,"idl":99.89,"recv":0,"send":0.01,"writ":0.15,"used":506.54,"free":3520.54},{"epoch":26115843,"idl":99.81,"recv":0,"send":0.01,"writ":0.23,"used":506.64,"free":3520.43},{"epoch":26115844,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":507.24,"free":3519.82},{"epoch":26115845,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":507.83,"free":3519.25},{"epoch":26115846,"idl":99.81,"recv":0.01,"send":0,"writ":0.16,"used":507.81,"free":3519.26},{"epoch":26115847,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":507.77,"free":3519.3},{"epoch":26115848,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.75,"free":3519.32},{"epoch":26115849,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":507.83,"free":3519.21},{"epoch":26115850,"idl":99.76,"recv":0,"send":0,"writ":0.51,"used":507.54,"free":3519.51},{"epoch":26115851,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.65,"free":3519.4},{"epoch":26115852,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.63,"free":3519.41},{"epoch":26115853,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":507.6,"free":3519.44},{"epoch":26115854,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.57,"free":3519.48},{"epoch":26115855,"idl":99.53,"recv":0,"send":0,"writ":0.74,"used":507.58,"free":3519.49},{"epoch":26115856,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":507.05,"free":3520.02},{"epoch":26115857,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":507.02,"free":3520.04},{"epoch":26115858,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":507.06,"free":3520},{"epoch":26115859,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.16,"free":3519.89},{"epoch":26115860,"idl":99.62,"recv":0,"send":0,"writ":0.75,"used":508.02,"free":3519.06},{"epoch":26115861,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.88,"free":3519.21},{"epoch":26115862,"idl":99.78,"recv":0.02,"send":0.02,"writ":0.18,"used":507.83,"free":3519.26},{"epoch":26115863,"idl":99.83,"recv":0.03,"send":0.02,"writ":0.14,"used":507.8,"free":3519.28},{"epoch":26115864,"idl":99.9,"recv":0.03,"send":0.02,"writ":0.16,"used":507.8,"free":3519.28},{"epoch":26115865,"idl":99.62,"recv":0.01,"send":0.01,"writ":0.78,"used":508.17,"free":3518.93},{"epoch":26115866,"idl":99.78,"recv":0.02,"send":0.01,"writ":0.18,"used":507.62,"free":3519.47},{"epoch":26115867,"idl":99.8,"recv":0.03,"send":0.01,"writ":0.15,"used":507.33,"free":3519.76},{"epoch":26115868,"idl":99.78,"recv":0.02,"send":0.01,"writ":0.15,"used":507.35,"free":3519.74},{"epoch":26115869,"idl":99.85,"recv":0.03,"send":0.02,"writ":0.18,"used":507.32,"free":3519.75},{"epoch":26115870,"idl":99.61,"recv":0.02,"send":0.02,"writ":0.76,"used":507.81,"free":3519.29},{"epoch":26115871,"idl":99.87,"recv":0.02,"send":0.01,"writ":0.14,"used":507.58,"free":3519.51},{"epoch":26115872,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.15,"used":507.59,"free":3519.49},{"epoch":26115873,"idl":99.8,"recv":0.02,"send":0.01,"writ":0.15,"used":507.55,"free":3519.53},{"epoch":26115874,"idl":99.74,"recv":0.02,"send":0.02,"writ":0.17,"used":507.55,"free":3519.52},{"epoch":26115875,"idl":99.53,"recv":0,"send":0,"writ":0.71,"used":508.4,"free":3518.69},{"epoch":26115876,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":507.84,"free":3519.24},{"epoch":26115877,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.82,"free":3519.26},{"epoch":26115878,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":507.8,"free":3519.27},{"epoch":26115879,"idl":99.67,"recv":0,"send":0,"writ":0.27,"used":507.8,"free":3519.25},{"epoch":26115880,"idl":99.49,"recv":0,"send":0,"writ":0.71,"used":508.36,"free":3518.71},{"epoch":26115881,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.74,"free":3519.32},{"epoch":26115882,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":507.87,"free":3519.2},{"epoch":26115883,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":507.88,"free":3519.17},{"epoch":26115884,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.86,"free":3519.2},{"epoch":26115885,"idl":99.55,"recv":0,"send":0,"writ":0.78,"used":508.28,"free":3518.79},{"epoch":26115886,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":508.08,"free":3518.98},{"epoch":26115887,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":508.08,"free":3518.98},{"epoch":26115888,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":508.05,"free":3519},{"epoch":26115889,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":508.04,"free":3519.01},{"epoch":26115890,"idl":99.49,"recv":0,"send":0,"writ":0.56,"used":507.91,"free":3519.15},{"epoch":26115891,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":507.77,"free":3519.3},{"epoch":26115892,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":507.74,"free":3519.32},{"epoch":26115893,"idl":99.78,"recv":0.03,"send":2.42,"writ":0.33,"used":507.79,"free":3519.25},{"epoch":26115894,"idl":99.8,"recv":0,"send":0.02,"writ":0.3,"used":507.79,"free":3519.24},{"epoch":26115895,"idl":99.73,"recv":0,"send":0,"writ":0.39,"used":507.5,"free":3519.54},{"epoch":26115896,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":505.83,"free":3521.2},{"epoch":26115897,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":505.02,"free":3522.01},{"epoch":26115898,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.01,"free":3522.02},{"epoch":26115899,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":504.98,"free":3522.04},{"epoch":26115900,"idl":99.48,"recv":0,"send":0,"writ":0.36,"used":506.68,"free":3520.36},{"epoch":26115901,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":507.28,"free":3519.75},{"epoch":26115902,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.08,"free":3519.95},{"epoch":26115903,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.05,"free":3519.97},{"epoch":26115904,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":507.03,"free":3519.99},{"epoch":26115905,"idl":99.65,"recv":0,"send":0,"writ":0.33,"used":507.26,"free":3519.77},{"epoch":26115906,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":507.42,"free":3519.62},{"epoch":26115907,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.96,"free":3520.07},{"epoch":26115908,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.95,"free":3520.08},{"epoch":26115909,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":507.16,"free":3519.84},{"epoch":26115910,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":506.35,"free":3520.67},{"epoch":26115911,"idl":99.69,"recv":0,"send":0,"writ":0.49,"used":507.21,"free":3519.8},{"epoch":26115912,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":506.54,"free":3520.47},{"epoch":26115913,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.51,"free":3520.5},{"epoch":26115914,"idl":99.83,"recv":0,"send":0.01,"writ":0.15,"used":506.5,"free":3520.51},{"epoch":26115915,"idl":99.74,"recv":0.01,"send":0.04,"writ":0.38,"used":507.22,"free":3519.81},{"epoch":26115916,"idl":99.64,"recv":0.01,"send":0.05,"writ":0.42,"used":507.57,"free":3519.46},{"epoch":26115917,"idl":99.8,"recv":0,"send":0,"writ":0.42,"used":506.97,"free":3520.05},{"epoch":26115918,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.95,"free":3520.06},{"epoch":26115919,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.93,"free":3520.07},{"epoch":26115920,"idl":99.71,"recv":0.01,"send":0.21,"writ":0.41,"used":507.45,"free":3519.57},{"epoch":26115921,"idl":99.62,"recv":0,"send":0,"writ":0.51,"used":507.73,"free":3519.29},{"epoch":26115922,"idl":99.78,"recv":0.01,"send":0.38,"writ":0.23,"used":507.23,"free":3519.79},{"epoch":26115923,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":507.21,"free":3519.8},{"epoch":26115924,"idl":99.82,"recv":0,"send":0.02,"writ":0.2,"used":507.17,"free":3519.83},{"epoch":26115925,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":507,"free":3520.02},{"epoch":26115926,"idl":99.66,"recv":0,"send":0,"writ":0.43,"used":507.28,"free":3519.73},{"epoch":26115927,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":507.08,"free":3519.93},{"epoch":26115928,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.04,"free":3519.96},{"epoch":26115929,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":507.03,"free":3519.97},{"epoch":26115930,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":506.29,"free":3520.73},{"epoch":26115931,"idl":99.7,"recv":0,"send":0,"writ":0.33,"used":507.03,"free":3519.98},{"epoch":26115932,"idl":99.84,"recv":0,"send":0,"writ":0.38,"used":506.95,"free":3520.05},{"epoch":26115933,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.92,"free":3520.08},{"epoch":26115934,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.95,"free":3520.05},{"epoch":26115935,"idl":99.72,"recv":0,"send":0.01,"writ":0.32,"used":507.07,"free":3519.94},{"epoch":26115936,"idl":99.8,"recv":0,"send":0.02,"writ":0.17,"used":507.02,"free":3519.99},{"epoch":26115937,"idl":99.65,"recv":0,"send":0,"writ":0.61,"used":507.75,"free":3519.25},{"epoch":26115938,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":507.44,"free":3519.56},{"epoch":26115939,"idl":99.7,"recv":0,"send":0,"writ":0.35,"used":507.42,"free":3519.55},{"epoch":26115940,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":507.18,"free":3519.81},{"epoch":26115941,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.15,"free":3519.83},{"epoch":26115942,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":507.64,"free":3519.33},{"epoch":26115943,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":507.28,"free":3519.69},{"epoch":26115944,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":507.28,"free":3519.69},{"epoch":26115945,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":507.51,"free":3519.48},{"epoch":26115946,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":507.48,"free":3519.5},{"epoch":26115947,"idl":99.69,"recv":0,"send":0,"writ":0.59,"used":507.96,"free":3519.02},{"epoch":26115948,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":507.67,"free":3519.3},{"epoch":26115949,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":507.64,"free":3519.32},{"epoch":26115950,"idl":99.71,"recv":0,"send":0,"writ":0.35,"used":507.04,"free":3519.94},{"epoch":26115951,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.05,"free":3519.93},{"epoch":26115952,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":507.66,"free":3519.31},{"epoch":26115953,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.25,"free":3519.72},{"epoch":26115954,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":507.21,"free":3519.75},{"epoch":26115955,"idl":99.69,"recv":0,"send":0,"writ":0.33,"used":507.21,"free":3519.77},{"epoch":26115956,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.19,"free":3519.78},{"epoch":26115957,"idl":99.66,"recv":0.03,"send":1.66,"writ":0.67,"used":507.67,"free":3519.29},{"epoch":26115958,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.51,"free":3519.44},{"epoch":26115959,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.48,"free":3519.47},{"epoch":26115960,"idl":99.53,"recv":0,"send":0,"writ":0.32,"used":506.27,"free":3520.7},{"epoch":26115961,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":506.21,"free":3520.74},{"epoch":26115962,"idl":99.08,"recv":0.01,"send":0.83,"writ":0.42,"used":506.94,"free":3520.01},{"epoch":26115963,"idl":99.78,"recv":0,"send":0.01,"writ":0.33,"used":507.2,"free":3519.74},{"epoch":26115964,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.17,"free":3519.77},{"epoch":26115965,"idl":99.59,"recv":0.05,"send":2.52,"writ":0.38,"used":506.75,"free":3520.21},{"epoch":26115966,"idl":99.81,"recv":0,"send":0.02,"writ":0.3,"used":506.69,"free":3520.25},{"epoch":26115967,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":507.4,"free":3519.54},{"epoch":26115968,"idl":99.81,"recv":0,"send":0.01,"writ":0.34,"used":507.13,"free":3519.8},{"epoch":26115969,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":507.15,"free":3519.76},{"epoch":26115970,"idl":99.62,"recv":0,"send":0,"writ":0.32,"used":507.73,"free":3519.19},{"epoch":26115971,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.71,"free":3519.2},{"epoch":26115972,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.71,"free":3519.21},{"epoch":26115973,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":508.02,"free":3518.89},{"epoch":26115974,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":507.63,"free":3519.29},{"epoch":26115975,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":507.39,"free":3519.55},{"epoch":26115976,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.36,"free":3519.58},{"epoch":26115977,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.12,"free":3519.81},{"epoch":26115978,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":507.64,"free":3519.29},{"epoch":26115979,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.27,"free":3519.65},{"epoch":26115980,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":507.5,"free":3519.44},{"epoch":26115981,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":507.5,"free":3519.43},{"epoch":26115982,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.19,"used":507.44,"free":3519.49},{"epoch":26115983,"idl":99.62,"recv":0,"send":0,"writ":0.57,"used":508.09,"free":3518.83},{"epoch":26115984,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.37,"free":3519.55},{"epoch":26115985,"idl":99.71,"recv":0,"send":0,"writ":0.38,"used":507.38,"free":3519.56},{"epoch":26115986,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":507.43,"free":3519.5},{"epoch":26115987,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.27,"free":3519.66},{"epoch":26115988,"idl":99.63,"recv":0,"send":0,"writ":0.59,"used":507.44,"free":3519.49},{"epoch":26115989,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":506.97,"free":3519.95},{"epoch":26115990,"idl":99.69,"recv":0,"send":0,"writ":0.38,"used":507.45,"free":3519.51},{"epoch":26115991,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":507.41,"free":3519.54},{"epoch":26115992,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.4,"free":3519.54},{"epoch":26115993,"idl":99.66,"recv":0,"send":0,"writ":0.57,"used":507.26,"free":3519.68},{"epoch":26115994,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":506.62,"free":3520.31},{"epoch":26115995,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":506.98,"free":3519.97},{"epoch":26115996,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.04,"free":3519.91},{"epoch":26115997,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507,"free":3519.94},{"epoch":26115998,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":507.7,"free":3519.24},{"epoch":26115999,"idl":99.62,"recv":0,"send":0,"writ":0.27,"used":507.23,"free":3519.68},{"epoch":26116000,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":507.19,"free":3519.74},{"epoch":26116001,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.18,"free":3519.74},{"epoch":26116002,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":507.15,"free":3519.77},{"epoch":26116003,"idl":99.61,"recv":0,"send":0,"writ":0.55,"used":507.82,"free":3519.09},{"epoch":26116004,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.84,"free":3519.07},{"epoch":26116005,"idl":99.73,"recv":0,"send":0,"writ":0.38,"used":507.2,"free":3519.72},{"epoch":26116006,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":507.23,"free":3519.69},{"epoch":26116007,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.25,"free":3519.67},{"epoch":26116008,"idl":99.65,"recv":0,"send":0,"writ":0.43,"used":507.65,"free":3519.26},{"epoch":26116009,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":507.67,"free":3519.23},{"epoch":26116010,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":507.44,"free":3519.49},{"epoch":26116011,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":507.39,"free":3519.53},{"epoch":26116012,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.38,"free":3519.54},{"epoch":26116013,"idl":99.64,"recv":0,"send":0,"writ":0.4,"used":507.74,"free":3519.17},{"epoch":26116014,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":507.61,"free":3519.29},{"epoch":26116015,"idl":99.69,"recv":0,"send":0,"writ":0.38,"used":507.76,"free":3519.16},{"epoch":26116016,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":507.72,"free":3519.2},{"epoch":26116017,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":507.69,"free":3519.22},{"epoch":26116018,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":507.66,"free":3519.25},{"epoch":26116019,"idl":99.65,"recv":0,"send":0,"writ":0.58,"used":508.18,"free":3518.73},{"epoch":26116020,"idl":99.57,"recv":0,"send":0,"writ":0.32,"used":507.85,"free":3519.07},{"epoch":26116021,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":507.85,"free":3519.07},{"epoch":26116022,"idl":99.62,"recv":0,"send":0,"writ":0.14,"used":507.82,"free":3519.09},{"epoch":26116023,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.95,"free":3518.96},{"epoch":26116024,"idl":99.63,"recv":0.01,"send":0,"writ":0.56,"used":508.29,"free":3518.61},{"epoch":26116025,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":507.92,"free":3519},{"epoch":26116026,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":507.91,"free":3519.01},{"epoch":26116027,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.88,"free":3519.04},{"epoch":26116028,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.87,"free":3519.04},{"epoch":26116029,"idl":99.48,"recv":0,"send":0,"writ":0.71,"used":508.37,"free":3518.51},{"epoch":26116030,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":506.39,"free":3520.5},{"epoch":26116031,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.5,"free":3520.4},{"epoch":26116032,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.49,"free":3520.4},{"epoch":26116033,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.45,"free":3520.43},{"epoch":26116034,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":507.22,"free":3519.68},{"epoch":26116035,"idl":99.82,"recv":0,"send":0,"writ":0.38,"used":508.12,"free":3518.8},{"epoch":26116036,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":508.12,"free":3518.79},{"epoch":26116037,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":508.11,"free":3518.8},{"epoch":26116038,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":508.08,"free":3518.82},{"epoch":26116039,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":508.29,"free":3518.61},{"epoch":26116040,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":507.98,"free":3518.94},{"epoch":26116041,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":508,"free":3518.92},{"epoch":26116042,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":507.94,"free":3518.97},{"epoch":26116043,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":507.93,"free":3518.97},{"epoch":26116044,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":508.04,"free":3518.86},{"epoch":26116045,"idl":99.81,"recv":0,"send":0,"writ":0.35,"used":507.15,"free":3519.77},{"epoch":26116046,"idl":99.86,"recv":0.01,"send":0,"writ":0.16,"used":507.1,"free":3519.82},{"epoch":26116047,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":507,"free":3519.92},{"epoch":26116048,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.98,"free":3519.93},{"epoch":26116049,"idl":99.77,"recv":0,"send":0,"writ":0.4,"used":507.73,"free":3519.17},{"epoch":26116050,"idl":99.72,"recv":0,"send":0,"writ":0.43,"used":506.49,"free":3520.43},{"epoch":26116051,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.43,"free":3520.48},{"epoch":26116052,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.4,"free":3520.5},{"epoch":26116053,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.39,"free":3520.51},{"epoch":26116054,"idl":96.85,"recv":0.32,"send":0.01,"writ":64.86,"used":511.44,"free":3515.65},{"epoch":26116055,"idl":97.86,"recv":0,"send":0,"writ":195.66,"used":515.47,"free":3511.8},{"epoch":26116056,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":509.25,"free":3517.56},{"epoch":26116057,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":509.23,"free":3517.57},{"epoch":26116058,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":509.27,"free":3517.53},{"epoch":26116059,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":509.76,"free":3517},{"epoch":26116060,"idl":99.88,"recv":0,"send":0,"writ":0.55,"used":507.37,"free":3519.44},{"epoch":26116061,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.15,"free":3519.66},{"epoch":26116062,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.14,"free":3519.67},{"epoch":26116063,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.11,"free":3519.7},{"epoch":26116064,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":507.1,"free":3519.73},{"epoch":26116065,"idl":99.7,"recv":0,"send":0,"writ":0.73,"used":507.63,"free":3519.22},{"epoch":26116066,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.32,"free":3519.52},{"epoch":26116067,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":507.29,"free":3519.55},{"epoch":26116068,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":507.38,"free":3519.45},{"epoch":26116069,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":507.43,"free":3519.39},{"epoch":26116070,"idl":99.68,"recv":0,"send":0,"writ":0.77,"used":507.77,"free":3519.08},{"epoch":26116071,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":507.16,"free":3519.68},{"epoch":26116072,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":507.1,"free":3519.73},{"epoch":26116073,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":507.07,"free":3519.77},{"epoch":26116074,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.06,"free":3519.78},{"epoch":26116075,"idl":99.71,"recv":0,"send":0,"writ":0.67,"used":507.55,"free":3519.32},{"epoch":26116076,"idl":99.9,"recv":0.01,"send":0,"writ":0.2,"used":507.38,"free":3519.48},{"epoch":26116077,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.41,"free":3519.44},{"epoch":26116078,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":507.39,"free":3519.46},{"epoch":26116079,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.37,"free":3519.47},{"epoch":26116080,"idl":99.56,"recv":0.01,"send":0.01,"writ":0.68,"used":507.57,"free":3519.29},{"epoch":26116081,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":507.04,"free":3519.82},{"epoch":26116082,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.07,"free":3519.78},{"epoch":26116083,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":507.19,"free":3519.66},{"epoch":26116084,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":507.16,"free":3519.69},{"epoch":26116085,"idl":99.71,"recv":0,"send":0,"writ":0.68,"used":507.96,"free":3518.9},{"epoch":26116086,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":507.15,"free":3519.71},{"epoch":26116087,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.13,"free":3519.72},{"epoch":26116088,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":507.1,"free":3519.75},{"epoch":26116089,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":507.36,"free":3519.47},{"epoch":26116090,"idl":99.64,"recv":0,"send":0,"writ":0.73,"used":507.26,"free":3519.6},{"epoch":26116091,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.57,"free":3519.29},{"epoch":26116092,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.54,"free":3519.31},{"epoch":26116093,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":507.52,"free":3519.33},{"epoch":26116094,"idl":99.49,"recv":0,"send":0,"writ":0.54,"used":507.85,"free":3518.99},{"epoch":26116095,"idl":99.55,"recv":0,"send":0,"writ":0.69,"used":506.64,"free":3520.23},{"epoch":26116096,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":507.17,"free":3519.69},{"epoch":26116097,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":507.14,"free":3519.71},{"epoch":26116098,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.11,"free":3519.74},{"epoch":26116099,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":507.1,"free":3519.75},{"epoch":26116100,"idl":99.7,"recv":0,"send":0,"writ":0.48,"used":506.98,"free":3519.9},{"epoch":26116101,"idl":99.92,"recv":0,"send":0,"writ":0.39,"used":506.82,"free":3520.05},{"epoch":26116102,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.8,"free":3520.08},{"epoch":26116103,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.77,"free":3520.1},{"epoch":26116104,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.91,"free":3519.95},{"epoch":26116105,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":507.42,"free":3519.45},{"epoch":26116106,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":508.05,"free":3518.83},{"epoch":26116107,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":507.11,"free":3519.76},{"epoch":26116108,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.09,"free":3519.78},{"epoch":26116109,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.07,"free":3519.79},{"epoch":26116110,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":507.31,"free":3519.57},{"epoch":26116111,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":507.65,"free":3519.22},{"epoch":26116112,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":507.27,"free":3519.6},{"epoch":26116113,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":507.28,"free":3519.58},{"epoch":26116114,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.44,"free":3519.42},{"epoch":26116115,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":507.7,"free":3519.18},{"epoch":26116116,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":507.16,"free":3519.71},{"epoch":26116117,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.4,"free":3520.46},{"epoch":26116118,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":506.36,"free":3520.5},{"epoch":26116119,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":507.29,"free":3519.55},{"epoch":26116120,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":506.35,"free":3520.5},{"epoch":26116121,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":506.79,"free":3520.06},{"epoch":26116122,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.7,"free":3520.15},{"epoch":26116123,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.69,"free":3520.15},{"epoch":26116124,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.66,"free":3520.18},{"epoch":26116125,"idl":99.77,"recv":0.01,"send":0,"writ":0.32,"used":506.16,"free":3520.7},{"epoch":26116126,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":507.06,"free":3519.79},{"epoch":26116127,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":507.08,"free":3519.77},{"epoch":26116128,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":507.06,"free":3519.78},{"epoch":26116129,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.04,"free":3519.79},{"epoch":26116130,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":506.57,"free":3520.29},{"epoch":26116131,"idl":99.79,"recv":0,"send":0,"writ":0.43,"used":507.11,"free":3519.74},{"epoch":26116132,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":507.19,"free":3519.66},{"epoch":26116133,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.15,"free":3519.69},{"epoch":26116134,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":507.12,"free":3519.72},{"epoch":26116135,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":506.63,"free":3520.22},{"epoch":26116136,"idl":99.76,"recv":0,"send":0,"writ":0.4,"used":507.09,"free":3519.76},{"epoch":26116137,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":507.29,"free":3519.55},{"epoch":26116138,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":507.27,"free":3519.57},{"epoch":26116139,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":507.61,"free":3519.23},{"epoch":26116140,"idl":99.2,"recv":0.01,"send":0,"writ":6.27,"used":507,"free":3520.11},{"epoch":26116141,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":507.32,"free":3519.8},{"epoch":26116142,"idl":99.84,"recv":0,"send":0,"writ":0.43,"used":508.28,"free":3518.83},{"epoch":26116143,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.89,"free":3519.22},{"epoch":26116144,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.87,"free":3519.24},{"epoch":26116145,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":507.62,"free":3519.51},{"epoch":26116146,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.72,"free":3519.42},{"epoch":26116147,"idl":99.67,"recv":0,"send":0,"writ":0.61,"used":508.09,"free":3519.05},{"epoch":26116148,"idl":99.47,"recv":0,"send":0,"writ":0.16,"used":507.71,"free":3519.42},{"epoch":26116149,"idl":99.01,"recv":0,"send":0,"writ":0.29,"used":507.69,"free":3519.41},{"epoch":26116150,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":507.68,"free":3519.44},{"epoch":26116151,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.66,"free":3519.45},{"epoch":26116152,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":507.99,"free":3519.12},{"epoch":26116153,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.62,"free":3519.48},{"epoch":26116154,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":507.59,"free":3519.51},{"epoch":26116155,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":507.92,"free":3519.2},{"epoch":26116156,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":507.98,"free":3519.13},{"epoch":26116157,"idl":99.78,"recv":0,"send":0,"writ":0.6,"used":507.84,"free":3519.27},{"epoch":26116158,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":507.44,"free":3519.66},{"epoch":26116159,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.42,"free":3519.69},{"epoch":26116160,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":507.66,"free":3519.46},{"epoch":26116161,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.64,"free":3519.48},{"epoch":26116162,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":508.5,"free":3518.61},{"epoch":26116163,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":507.84,"free":3519.27},{"epoch":26116164,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.81,"free":3519.3},{"epoch":26116165,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":507.97,"free":3519.15},{"epoch":26116166,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":508,"free":3519.12},{"epoch":26116167,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":507.66,"free":3519.45},{"epoch":26116168,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.93,"free":3520.17},{"epoch":26116169,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.91,"free":3520.19},{"epoch":26116170,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":508.19,"free":3518.93},{"epoch":26116171,"idl":99.84,"recv":0,"send":0,"writ":0.12,"used":508.1,"free":3519.02},{"epoch":26116172,"idl":99.73,"recv":0,"send":0,"writ":0.51,"used":508.36,"free":3518.75},{"epoch":26116173,"idl":99.91,"recv":0,"send":0,"writ":0.22,"used":507.87,"free":3519.24},{"epoch":26116174,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":507.99,"free":3519.11},{"epoch":26116175,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":507.79,"free":3519.33},{"epoch":26116176,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":507.73,"free":3519.39},{"epoch":26116177,"idl":99.8,"recv":0.01,"send":0,"writ":0.59,"used":508.08,"free":3519.04},{"epoch":26116178,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":507.9,"free":3519.2},{"epoch":26116179,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":507.16,"free":3519.94},{"epoch":26116180,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":507.59,"free":3519.52},{"epoch":26116181,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":507.7,"free":3519.41},{"epoch":26116182,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.75,"free":3519.36},{"epoch":26116183,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":508.62,"free":3518.48},{"epoch":26116184,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.94,"free":3519.16},{"epoch":26116185,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":507.95,"free":3519.17},{"epoch":26116186,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.91,"free":3519.2},{"epoch":26116187,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.89,"free":3519.22},{"epoch":26116188,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":508.22,"free":3518.88},{"epoch":26116189,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":507.84,"free":3519.26},{"epoch":26116190,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":507.85,"free":3519.27},{"epoch":26116191,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.97,"free":3519.15},{"epoch":26116192,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.98,"free":3519.13},{"epoch":26116193,"idl":99.76,"recv":0,"send":0,"writ":0.64,"used":508.3,"free":3518.8},{"epoch":26116194,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":507.92,"free":3519.18},{"epoch":26116195,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":507.92,"free":3519.2},{"epoch":26116196,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":507.89,"free":3519.22},{"epoch":26116197,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":507.87,"free":3519.23},{"epoch":26116198,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":508.35,"free":3518.75},{"epoch":26116199,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":508.08,"free":3519.02},{"epoch":26116200,"idl":99.79,"recv":0,"send":0,"writ":0.37,"used":506.5,"free":3520.61},{"epoch":26116201,"idl":99.85,"recv":0.01,"send":0,"writ":0.16,"used":506.23,"free":3520.88},{"epoch":26116202,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":506.21,"free":3520.9},{"epoch":26116203,"idl":99.73,"recv":0.01,"send":0,"writ":0.52,"used":507.08,"free":3520.02},{"epoch":26116204,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":506.86,"free":3520.23},{"epoch":26116205,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":506.86,"free":3520.25},{"epoch":26116206,"idl":99.83,"recv":0.01,"send":0,"writ":0.13,"used":506.91,"free":3520.2},{"epoch":26116207,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.98,"free":3520.13},{"epoch":26116208,"idl":99.78,"recv":0,"send":0,"writ":0.63,"used":507.36,"free":3519.73},{"epoch":26116209,"idl":99.05,"recv":0,"send":0,"writ":0.27,"used":507.18,"free":3519.89},{"epoch":26116210,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":507.15,"free":3519.94},{"epoch":26116211,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.11,"free":3519.97},{"epoch":26116212,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.09,"free":3519.99},{"epoch":26116213,"idl":99.67,"recv":0.01,"send":0,"writ":0.56,"used":507.53,"free":3519.54},{"epoch":26116214,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.19,"free":3519.88},{"epoch":26116215,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":506.33,"free":3520.76},{"epoch":26116216,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.18,"free":3520.9},{"epoch":26116217,"idl":99.85,"recv":0,"send":0,"writ":0.23,"used":505.92,"free":3521.16},{"epoch":26116218,"idl":99.74,"recv":0,"send":0,"writ":0.36,"used":506.32,"free":3520.76},{"epoch":26116219,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":506.58,"free":3520.49},{"epoch":26116220,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":507.44,"free":3519.65},{"epoch":26116221,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.47,"free":3519.62},{"epoch":26116222,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.42,"free":3519.66},{"epoch":26116223,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.4,"free":3519.67},{"epoch":26116224,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":506.71,"free":3520.36},{"epoch":26116225,"idl":99.54,"recv":0,"send":0,"writ":0.29,"used":506.12,"free":3520.96},{"epoch":26116226,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.07,"free":3521.01},{"epoch":26116227,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.15,"used":505.94,"free":3521.13},{"epoch":26116228,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":505.96,"free":3521.11},{"epoch":26116229,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":507.04,"free":3520.02},{"epoch":26116230,"idl":99.69,"recv":0.01,"send":0.01,"writ":0.29,"used":506.91,"free":3520.18},{"epoch":26116231,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":507.02,"free":3520.06},{"epoch":26116232,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.01,"free":3520.07},{"epoch":26116233,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.98,"free":3520.09},{"epoch":26116234,"idl":99.74,"recv":0,"send":0,"writ":0.52,"used":507.51,"free":3519.55},{"epoch":26116235,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":507.44,"free":3519.64},{"epoch":26116236,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.42,"free":3519.67},{"epoch":26116237,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":507.4,"free":3519.69},{"epoch":26116238,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.34,"free":3519.74},{"epoch":26116239,"idl":99.64,"recv":0,"send":0,"writ":0.68,"used":508.05,"free":3519.01},{"epoch":26116240,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":507.04,"free":3520.04},{"epoch":26116241,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":506.98,"free":3520.1},{"epoch":26116242,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.93,"free":3520.14},{"epoch":26116243,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":506.92,"free":3520.15},{"epoch":26116244,"idl":99.65,"recv":0,"send":0,"writ":0.43,"used":507.75,"free":3519.34},{"epoch":26116245,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":507.64,"free":3519.48},{"epoch":26116246,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.62,"free":3519.5},{"epoch":26116247,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.61,"free":3519.5},{"epoch":26116248,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.59,"free":3519.51},{"epoch":26116249,"idl":99.81,"recv":0,"send":0,"writ":0.52,"used":508.06,"free":3519.04},{"epoch":26116250,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":507.26,"free":3519.85},{"epoch":26116251,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":507.19,"free":3519.92},{"epoch":26116252,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.17,"free":3519.93},{"epoch":26116253,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.15,"free":3519.95},{"epoch":26116254,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":507.54,"free":3519.55},{"epoch":26116255,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":507.37,"free":3519.74},{"epoch":26116256,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":507.36,"free":3519.75},{"epoch":26116257,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.34,"free":3519.77},{"epoch":26116258,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":507.44,"free":3519.66},{"epoch":26116259,"idl":99.72,"recv":0,"send":0,"writ":0.39,"used":507.82,"free":3519.27},{"epoch":26116260,"idl":99.65,"recv":0,"send":0,"writ":0.39,"used":507.45,"free":3519.66},{"epoch":26116261,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.42,"free":3519.69},{"epoch":26116262,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":507.39,"free":3519.71},{"epoch":26116263,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.38,"free":3519.72},{"epoch":26116264,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.34,"free":3519.75},{"epoch":26116265,"idl":99.7,"recv":0,"send":0,"writ":0.68,"used":507.75,"free":3519.36},{"epoch":26116266,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.09,"free":3520.03},{"epoch":26116267,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.22,"free":3519.88},{"epoch":26116268,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.23,"free":3519.87},{"epoch":26116269,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":507.45,"free":3519.62},{"epoch":26116270,"idl":99.59,"recv":0,"send":0,"writ":0.66,"used":507.98,"free":3519.11},{"epoch":26116271,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.65,"free":3519.43},{"epoch":26116272,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.63,"free":3519.45},{"epoch":26116273,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.61,"free":3519.46},{"epoch":26116274,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.59,"free":3519.49},{"epoch":26116275,"idl":99.66,"recv":0,"send":0,"writ":0.7,"used":507.59,"free":3519.52},{"epoch":26116276,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":507.08,"free":3520.02},{"epoch":26116277,"idl":99.9,"recv":0.01,"send":0.02,"writ":0.25,"used":507.46,"free":3519.63},{"epoch":26116278,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":507.44,"free":3519.65},{"epoch":26116279,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":507.43,"free":3519.66},{"epoch":26116280,"idl":99.59,"recv":0,"send":0,"writ":0.7,"used":508.03,"free":3519.07},{"epoch":26116281,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.65,"free":3519.44},{"epoch":26116282,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":507.64,"free":3519.45},{"epoch":26116283,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.61,"free":3519.47},{"epoch":26116284,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.6,"free":3519.48},{"epoch":26116285,"idl":99.58,"recv":0,"send":0,"writ":0.64,"used":508.16,"free":3518.94},{"epoch":26116286,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":507.56,"free":3519.54},{"epoch":26116287,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":507.31,"free":3519.78},{"epoch":26116288,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.44,"free":3519.64},{"epoch":26116289,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.49,"free":3519.59},{"epoch":26116290,"idl":99.61,"recv":0,"send":0,"writ":0.71,"used":507.87,"free":3519.23},{"epoch":26116291,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.47,"free":3519.63},{"epoch":26116292,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.46,"free":3519.63},{"epoch":26116293,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":507.43,"free":3519.66},{"epoch":26116294,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":507.41,"free":3519.66},{"epoch":26116295,"idl":99.53,"recv":0,"send":0,"writ":0.56,"used":506.97,"free":3520.13},{"epoch":26116296,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":507.15,"free":3519.94},{"epoch":26116297,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.12,"free":3519.96},{"epoch":26116298,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.11,"free":3519.97},{"epoch":26116299,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":506.83,"free":3520.23},{"epoch":26116300,"idl":99.63,"recv":0,"send":0,"writ":0.52,"used":507.46,"free":3519.62},{"epoch":26116301,"idl":99.9,"recv":0,"send":0,"writ":0.26,"used":506.99,"free":3520.08},{"epoch":26116302,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":506.98,"free":3520.08},{"epoch":26116303,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":506.95,"free":3520.11},{"epoch":26116304,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.94,"free":3520.12},{"epoch":26116305,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":507.17,"free":3519.9},{"epoch":26116306,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":508.25,"free":3518.82},{"epoch":26116307,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.62,"free":3519.43},{"epoch":26116308,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":507.61,"free":3519.44},{"epoch":26116309,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":507.58,"free":3519.46},{"epoch":26116310,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":507.58,"free":3519.48},{"epoch":26116311,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":508.14,"free":3518.92},{"epoch":26116312,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.95,"free":3519.12},{"epoch":26116313,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.96,"free":3519.1},{"epoch":26116314,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":507.93,"free":3519.13},{"epoch":26116315,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":507.68,"free":3519.39},{"epoch":26116316,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":508.01,"free":3519.05},{"epoch":26116317,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.62,"free":3519.43},{"epoch":26116318,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":507.6,"free":3519.45},{"epoch":26116319,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.58,"free":3519.46},{"epoch":26116320,"idl":99.56,"recv":0,"send":0,"writ":0.26,"used":506.37,"free":3520.69},{"epoch":26116321,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":507.47,"free":3519.59},{"epoch":26116322,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.78,"free":3519.27},{"epoch":26116323,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.94,"free":3519.11},{"epoch":26116324,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.93,"free":3519.12},{"epoch":26116325,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":508.25,"free":3518.81},{"epoch":26116326,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":508.6,"free":3518.46},{"epoch":26116327,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.87,"free":3519.18},{"epoch":26116328,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":507.86,"free":3519.19},{"epoch":26116329,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":507.61,"free":3519.41},{"epoch":26116330,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":507.59,"free":3519.44},{"epoch":26116331,"idl":99.78,"recv":0,"send":0,"writ":0.46,"used":507.98,"free":3519.05},{"epoch":26116332,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":507.8,"free":3519.23},{"epoch":26116333,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.78,"free":3519.25},{"epoch":26116334,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.89,"free":3519.15},{"epoch":26116335,"idl":99.63,"recv":0,"send":0,"writ":0.27,"used":506.76,"free":3520.3},{"epoch":26116336,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":507.23,"free":3519.83},{"epoch":26116337,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":507.41,"free":3519.63},{"epoch":26116338,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.39,"free":3519.65},{"epoch":26116339,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.36,"free":3519.68},{"epoch":26116340,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":507.62,"free":3519.44},{"epoch":26116341,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":507.94,"free":3519.11},{"epoch":26116342,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":508.42,"free":3518.63},{"epoch":26116343,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":508.04,"free":3519},{"epoch":26116344,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":508.02,"free":3519.02},{"epoch":26116345,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":508.2,"free":3518.86},{"epoch":26116346,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":508.17,"free":3518.89},{"epoch":26116347,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":508.39,"free":3518.66},{"epoch":26116348,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":508.1,"free":3518.94},{"epoch":26116349,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":508.07,"free":3518.97},{"epoch":26116350,"idl":99.7,"recv":0,"send":0,"writ":0.26,"used":507.6,"free":3519.46},{"epoch":26116351,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":507.56,"free":3519.5},{"epoch":26116352,"idl":99.64,"recv":0,"send":0,"writ":0.54,"used":508.1,"free":3518.95},{"epoch":26116353,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.81,"free":3519.24},{"epoch":26116354,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.4,"free":3519.64},{"epoch":26116355,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":506.23,"free":3520.83},{"epoch":26116356,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.18,"free":3520.87},{"epoch":26116357,"idl":99.77,"recv":0,"send":0,"writ":0.53,"used":506.51,"free":3520.53},{"epoch":26116358,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.13,"free":3520.91},{"epoch":26116359,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":507.35,"free":3519.67},{"epoch":26116360,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":506.38,"free":3520.65},{"epoch":26116361,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.35,"free":3520.68},{"epoch":26116362,"idl":99.75,"recv":0,"send":0,"writ":0.51,"used":507.08,"free":3519.95},{"epoch":26116363,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":506.79,"free":3520.23},{"epoch":26116364,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":506.77,"free":3520.26},{"epoch":26116365,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":506.72,"free":3520.33},{"epoch":26116366,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":506.73,"free":3520.32},{"epoch":26116367,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":507.06,"free":3519.98},{"epoch":26116368,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":506.68,"free":3520.36},{"epoch":26116369,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.65,"free":3520.39},{"epoch":26116370,"idl":99.73,"recv":0,"send":0,"writ":0.26,"used":507.38,"free":3519.68},{"epoch":26116371,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.37,"free":3519.69},{"epoch":26116372,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":507.64,"free":3519.41},{"epoch":26116373,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.09,"free":3519.96},{"epoch":26116374,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":507.08,"free":3519.97},{"epoch":26116375,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":507.31,"free":3519.76},{"epoch":26116376,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.31,"free":3519.75},{"epoch":26116377,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":507.81,"free":3519.25},{"epoch":26116378,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":507.43,"free":3519.62},{"epoch":26116379,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.42,"free":3519.63},{"epoch":26116380,"idl":99.64,"recv":0,"send":0,"writ":0.27,"used":507.41,"free":3519.66},{"epoch":26116381,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.4,"free":3519.66},{"epoch":26116382,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.37,"free":3519.69},{"epoch":26116383,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":507.89,"free":3519.16},{"epoch":26116384,"idl":99.33,"recv":0,"send":0,"writ":0.14,"used":507.33,"free":3519.72},{"epoch":26116385,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":506.86,"free":3520.21},{"epoch":26116386,"idl":99.93,"recv":0,"send":0,"writ":0.12,"used":506.82,"free":3520.24},{"epoch":26116387,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.83,"free":3520.23},{"epoch":26116388,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":507.52,"free":3519.53},{"epoch":26116389,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":507.43,"free":3519.6},{"epoch":26116390,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":507.19,"free":3519.86},{"epoch":26116391,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.17,"free":3519.87},{"epoch":26116392,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":507.14,"free":3519.89},{"epoch":26116393,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":507.69,"free":3519.34},{"epoch":26116394,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.35,"free":3519.69},{"epoch":26116395,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":507.62,"free":3519.45},{"epoch":26116396,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":507.59,"free":3519.47},{"epoch":26116397,"idl":99.87,"recv":0,"send":0,"writ":0.24,"used":507.58,"free":3519.48},{"epoch":26116398,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":508.12,"free":3518.93},{"epoch":26116399,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.28,"free":3519.76},{"epoch":26116400,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":507.09,"free":3519.97},{"epoch":26116401,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.2,"free":3519.85},{"epoch":26116402,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.17,"free":3519.88},{"epoch":26116403,"idl":99.63,"recv":0,"send":0,"writ":0.48,"used":507.63,"free":3519.41},{"epoch":26116404,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":507.13,"free":3519.9},{"epoch":26116405,"idl":99.67,"recv":0,"send":0,"writ":0.31,"used":506.18,"free":3520.88},{"epoch":26116406,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.13,"free":3520.92},{"epoch":26116407,"idl":99.75,"recv":0,"send":0,"writ":0.19,"used":506.82,"free":3520.23},{"epoch":26116408,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":507.25,"free":3519.79},{"epoch":26116409,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":507.05,"free":3519.99},{"epoch":26116410,"idl":99.57,"recv":0,"send":0,"writ":0.3,"used":507.28,"free":3519.77},{"epoch":26116411,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.38,"free":3519.66},{"epoch":26116412,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":507.43,"free":3519.61},{"epoch":26116413,"idl":99.74,"recv":0,"send":0,"writ":0.38,"used":507.76,"free":3519.27},{"epoch":26116414,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":507.37,"free":3519.65},{"epoch":26116415,"idl":99.67,"recv":0,"send":0,"writ":0.33,"used":507.62,"free":3519.43},{"epoch":26116416,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":507.59,"free":3519.45},{"epoch":26116417,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":507.58,"free":3519.46},{"epoch":26116418,"idl":96.26,"recv":0.35,"send":0.01,"writ":64.9,"used":514.13,"free":3512.94},{"epoch":26116419,"idl":98.27,"recv":0,"send":0,"writ":195.72,"used":516.14,"free":3510.9},{"epoch":26116420,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":509.92,"free":3516.81},{"epoch":26116421,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":509.89,"free":3516.84},{"epoch":26116422,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":509.88,"free":3516.84},{"epoch":26116423,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":509.86,"free":3516.87},{"epoch":26116424,"idl":99.64,"recv":0,"send":0,"writ":0.59,"used":508.21,"free":3518.57},{"epoch":26116425,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":507.43,"free":3519.37},{"epoch":26116426,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":507.17,"free":3519.63},{"epoch":26116427,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.13,"free":3519.66},{"epoch":26116428,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.13,"free":3519.67},{"epoch":26116429,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":507.44,"free":3519.36},{"epoch":26116430,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":507.61,"free":3519.22},{"epoch":26116431,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.63,"free":3519.19},{"epoch":26116432,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.76,"free":3519.06},{"epoch":26116433,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.73,"free":3519.08},{"epoch":26116434,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":508.07,"free":3518.74},{"epoch":26116435,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":507.73,"free":3519.09},{"epoch":26116436,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.69,"free":3519.13},{"epoch":26116437,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.68,"free":3519.13},{"epoch":26116438,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":507.65,"free":3519.16},{"epoch":26116439,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":508.29,"free":3518.52},{"epoch":26116440,"idl":99.54,"recv":0,"send":0,"writ":0.28,"used":507.64,"free":3519.2},{"epoch":26116441,"idl":99.77,"recv":0,"send":0,"writ":0.17,"used":507.63,"free":3519.21},{"epoch":26116442,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.6,"free":3519.23},{"epoch":26116443,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":507.59,"free":3519.24},{"epoch":26116444,"idl":98.99,"recv":0,"send":0,"writ":0.58,"used":508.11,"free":3518.71},{"epoch":26116445,"idl":99.62,"recv":0.01,"send":0.01,"writ":0.29,"used":507.1,"free":3519.74},{"epoch":26116446,"idl":99.75,"recv":0,"send":0,"writ":0.21,"used":506.89,"free":3519.94},{"epoch":26116447,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.86,"free":3519.96},{"epoch":26116448,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.84,"free":3519.99},{"epoch":26116449,"idl":99.47,"recv":0,"send":0,"writ":0.52,"used":507.71,"free":3519.11},{"epoch":26116450,"idl":99.61,"recv":0,"send":0,"writ":0.39,"used":506.99,"free":3519.84},{"epoch":26116451,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.97,"free":3519.86},{"epoch":26116452,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":506.94,"free":3519.89},{"epoch":26116453,"idl":99.71,"recv":0,"send":0,"writ":0.15,"used":506.92,"free":3519.89},{"epoch":26116454,"idl":99.57,"recv":0,"send":0,"writ":0.54,"used":507.31,"free":3519.52},{"epoch":26116455,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":507.16,"free":3519.69},{"epoch":26116456,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":507.12,"free":3519.72},{"epoch":26116457,"idl":99.71,"recv":0,"send":0,"writ":0.21,"used":506.87,"free":3519.97},{"epoch":26116458,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":506.84,"free":3520},{"epoch":26116459,"idl":99.63,"recv":0,"send":0,"writ":0.43,"used":507.38,"free":3519.44},{"epoch":26116460,"idl":99.67,"recv":0,"send":0,"writ":0.41,"used":507.46,"free":3519.39},{"epoch":26116461,"idl":99.65,"recv":0,"send":0,"writ":0.16,"used":507.47,"free":3519.37},{"epoch":26116462,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.45,"free":3519.39},{"epoch":26116463,"idl":99.69,"recv":0,"send":0,"writ":0.16,"used":507.42,"free":3519.41},{"epoch":26116464,"idl":99.6,"recv":0,"send":0,"writ":0.15,"used":507.39,"free":3519.44},{"epoch":26116465,"idl":99.42,"recv":0,"send":0,"writ":0.69,"used":506.98,"free":3519.87},{"epoch":26116466,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":506.63,"free":3520.21},{"epoch":26116467,"idl":99.7,"recv":0,"send":0,"writ":0.18,"used":506.41,"free":3520.43},{"epoch":26116468,"idl":99.68,"recv":0,"send":0,"writ":0.14,"used":506.35,"free":3520.48},{"epoch":26116469,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":506.34,"free":3520.49},{"epoch":26116470,"idl":99.28,"recv":0,"send":0,"writ":0.66,"used":507.92,"free":3518.92},{"epoch":26116471,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":507.62,"free":3519.22},{"epoch":26116472,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":507.7,"free":3519.13},{"epoch":26116473,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.69,"free":3519.14},{"epoch":26116474,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":507.66,"free":3519.16},{"epoch":26116475,"idl":99.51,"recv":0,"send":0,"writ":0.73,"used":507.42,"free":3519.42},{"epoch":26116476,"idl":99.78,"recv":0,"send":0,"writ":0.12,"used":506.91,"free":3519.93},{"epoch":26116477,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.88,"free":3519.95},{"epoch":26116478,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.87,"free":3519.96},{"epoch":26116479,"idl":99.71,"recv":0,"send":0,"writ":0.28,"used":507.82,"free":3518.99},{"epoch":26116480,"idl":99.54,"recv":0,"send":0,"writ":0.73,"used":508.33,"free":3518.49},{"epoch":26116481,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":507.55,"free":3519.26},{"epoch":26116482,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.54,"free":3519.27},{"epoch":26116483,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":507.66,"free":3519.15},{"epoch":26116484,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":507.72,"free":3519.1},{"epoch":26116485,"idl":99.5,"recv":0,"send":0,"writ":0.6,"used":507.62,"free":3519.22},{"epoch":26116486,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":507.7,"free":3519.13},{"epoch":26116487,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":507.67,"free":3519.16},{"epoch":26116488,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":507.66,"free":3519.17},{"epoch":26116489,"idl":99.7,"recv":0,"send":0,"writ":0.16,"used":507.63,"free":3519.2},{"epoch":26116490,"idl":99.54,"recv":0,"send":0,"writ":0.73,"used":508.05,"free":3518.79},{"epoch":26116491,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":507.86,"free":3518.98},{"epoch":26116492,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":507.83,"free":3519},{"epoch":26116493,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":507.81,"free":3519.01},{"epoch":26116494,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":507.94,"free":3518.88},{"epoch":26116495,"idl":99.54,"recv":0,"send":0,"writ":0.73,"used":508.33,"free":3518.51},{"epoch":26116496,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":507.95,"free":3518.89},{"epoch":26116497,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":507.94,"free":3518.89},{"epoch":26116498,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":507.91,"free":3518.92},{"epoch":26116499,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.88,"free":3518.94},{"epoch":26116500,"idl":99.47,"recv":0,"send":0,"writ":0.48,"used":508.55,"free":3518.29},{"epoch":26116501,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":507.37,"free":3519.47},{"epoch":26116502,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.36,"free":3519.47},{"epoch":26116503,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":507.33,"free":3519.5},{"epoch":26116504,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":507.31,"free":3519.51},{"epoch":26116505,"idl":99.1,"recv":0,"send":0,"writ":0.29,"used":507.45,"free":3519.38},{"epoch":26116506,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":508.32,"free":3518.52},{"epoch":26116507,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":507.94,"free":3518.89},{"epoch":26116508,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.92,"free":3518.91},{"epoch":26116509,"idl":99.62,"recv":0,"send":0,"writ":0.27,"used":507.22,"free":3519.58},{"epoch":26116510,"idl":99.63,"recv":0,"send":0,"writ":0.29,"used":506.93,"free":3519.89},{"epoch":26116511,"idl":99.63,"recv":0,"send":0,"writ":0.57,"used":507.46,"free":3519.35},{"epoch":26116512,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.11,"free":3519.7},{"epoch":26116513,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.1,"free":3519.7},{"epoch":26116514,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":507.07,"free":3519.73},{"epoch":26116515,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":507.08,"free":3519.73},{"epoch":26116516,"idl":99.62,"recv":0,"send":0,"writ":0.57,"used":507.42,"free":3519.39},{"epoch":26116517,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":507.23,"free":3519.58},{"epoch":26116518,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.2,"free":3519.61},{"epoch":26116519,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":507.18,"free":3519.62},{"epoch":26116520,"idl":99.72,"recv":0,"send":0,"writ":0.36,"used":506.93,"free":3519.88},{"epoch":26116521,"idl":99.69,"recv":0,"send":0,"writ":0.59,"used":507.61,"free":3519.21},{"epoch":26116522,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.88,"free":3519.94},{"epoch":26116523,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.85,"free":3519.96},{"epoch":26116524,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.84,"free":3519.97},{"epoch":26116525,"idl":98.24,"recv":0,"send":0,"writ":15.35,"used":507.74,"free":3519.6},{"epoch":26116526,"idl":99.67,"recv":0,"send":0,"writ":0.53,"used":506.99,"free":3519.88},{"epoch":26116527,"idl":99.78,"recv":0,"send":0,"writ":0.25,"used":506.93,"free":3519.94},{"epoch":26116528,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":507.02,"free":3519.85},{"epoch":26116529,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":506.99,"free":3519.87},{"epoch":26116530,"idl":99.61,"recv":0,"send":0,"writ":0.35,"used":507.46,"free":3519.42},{"epoch":26116531,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":507.74,"free":3519.14},{"epoch":26116532,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":507.2,"free":3519.68},{"epoch":26116533,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":507.18,"free":3519.69},{"epoch":26116534,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":507.17,"free":3519.7},{"epoch":26116535,"idl":99.65,"recv":0.01,"send":0.02,"writ":0.36,"used":507.45,"free":3519.43},{"epoch":26116536,"idl":99.69,"recv":0,"send":0,"writ":0.61,"used":507.64,"free":3519.24},{"epoch":26116537,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.19,"free":3519.69},{"epoch":26116538,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":507.16,"free":3519.71},{"epoch":26116539,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":507.15,"free":3519.7},{"epoch":26116540,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":507.14,"free":3519.72},{"epoch":26116541,"idl":99.74,"recv":0,"send":0,"writ":0.17,"used":507.31,"free":3519.55},{"epoch":26116542,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":506.47,"free":3520.39},{"epoch":26116543,"idl":93.25,"recv":1.98,"send":0.01,"writ":48.46,"used":521.35,"free":3498.06},{"epoch":26116544,"idl":99.79,"recv":0,"send":0,"writ":32.45,"used":509.12,"free":3513.84},{"epoch":26116545,"idl":99.73,"recv":0,"send":0,"writ":0.45,"used":509.35,"free":3513.62},{"epoch":26116546,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":509.34,"free":3513.63},{"epoch":26116547,"idl":99.65,"recv":0,"send":0,"writ":0.59,"used":509.47,"free":3513.5},{"epoch":26116548,"idl":99.8,"recv":0,"send":0,"writ":0.22,"used":508.59,"free":3514.39},{"epoch":26116549,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":506.62,"free":3516.48},{"epoch":26116550,"idl":99.66,"recv":0,"send":0,"writ":0.36,"used":506.62,"free":3516.5},{"epoch":26116551,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.59,"free":3516.52},{"epoch":26116552,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":506.92,"free":3516.19},{"epoch":26116553,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.65,"free":3516.46},{"epoch":26116554,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":506.7,"free":3516.41},{"epoch":26116555,"idl":99.69,"recv":0,"send":0,"writ":0.35,"used":506.7,"free":3516.43},{"epoch":26116556,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":506.69,"free":3516.44},{"epoch":26116557,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":507.37,"free":3515.75},{"epoch":26116558,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":506.65,"free":3516.47},{"epoch":26116559,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":506.62,"free":3516.49},{"epoch":26116560,"idl":99.65,"recv":0,"send":0,"writ":0.27,"used":506.39,"free":3516.74},{"epoch":26116561,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":506.37,"free":3516.76},{"epoch":26116562,"idl":99.55,"recv":0,"send":0,"writ":0.56,"used":506.93,"free":3516.19},{"epoch":26116563,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.82,"free":3516.3},{"epoch":26116564,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":506.79,"free":3516.32},{"epoch":26116565,"idl":99.63,"recv":0,"send":0,"writ":0.31,"used":505.98,"free":3517.15},{"epoch":26116566,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":505.98,"free":3517.15},{"epoch":26116567,"idl":99.58,"recv":0,"send":0,"writ":0.55,"used":505.72,"free":3517.41},{"epoch":26116568,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":504.71,"free":3518.41},{"epoch":26116569,"idl":99.52,"recv":0,"send":0,"writ":0.28,"used":506.34,"free":3516.76},{"epoch":26116570,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":506.41,"free":3516.7},{"epoch":26116571,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.38,"free":3516.75},{"epoch":26116572,"idl":99.04,"recv":0,"send":0,"writ":0.4,"used":506.87,"free":3516.25},{"epoch":26116573,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":506.83,"free":3516.29},{"epoch":26116574,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":506.8,"free":3516.31},{"epoch":26116575,"idl":99.57,"recv":0,"send":0,"writ":0.27,"used":506.81,"free":3516.32},{"epoch":26116576,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":506.82,"free":3516.3},{"epoch":26116577,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":507.22,"free":3515.9},{"epoch":26116578,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.93,"free":3516.19},{"epoch":26116579,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":506.91,"free":3516.2},{"epoch":26116580,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":506.66,"free":3516.47},{"epoch":26116581,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.64,"free":3516.49},{"epoch":26116582,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.62,"free":3516.5},{"epoch":26116583,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":507.2,"free":3515.92},{"epoch":26116584,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.82,"free":3516.29},{"epoch":26116585,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":506.84,"free":3516.29},{"epoch":26116586,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":506.8,"free":3516.32},{"epoch":26116587,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":506.8,"free":3516.32},{"epoch":26116588,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":507.15,"free":3515.97},{"epoch":26116589,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.94,"free":3516.17},{"epoch":26116590,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":506.69,"free":3516.43},{"epoch":26116591,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.68,"free":3516.44},{"epoch":26116592,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":506.65,"free":3516.47},{"epoch":26116593,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":507,"free":3516.11},{"epoch":26116594,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.61,"free":3516.5},{"epoch":26116595,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":507.11,"free":3516.02},{"epoch":26116596,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.08,"free":3516.04},{"epoch":26116597,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":507.06,"free":3516.06},{"epoch":26116598,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":507.54,"free":3515.57},{"epoch":26116599,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":506.77,"free":3516.34},{"epoch":26116600,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":506.92,"free":3516.21},{"epoch":26116601,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":506.92,"free":3516.2},{"epoch":26116602,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":506.9,"free":3516.22},{"epoch":26116603,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":507.24,"free":3515.88},{"epoch":26116604,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.85,"free":3516.28},{"epoch":26116605,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":507.17,"free":3515.98},{"epoch":26116606,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.07,"free":3516.07},{"epoch":26116607,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":507.04,"free":3516.11},{"epoch":26116608,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":507.27,"free":3515.86},{"epoch":26116609,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.76,"free":3516.37},{"epoch":26116610,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":506.69,"free":3516.45},{"epoch":26116611,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":506.67,"free":3516.47},{"epoch":26116612,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.63,"free":3516.5},{"epoch":26116613,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":506.84,"free":3516.29},{"epoch":26116614,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.1,"free":3517.03},{"epoch":26116615,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":506.6,"free":3516.55},{"epoch":26116616,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":506.58,"free":3516.57},{"epoch":26116617,"idl":99.86,"recv":0.01,"send":0.39,"writ":0.16,"used":506.56,"free":3516.58},{"epoch":26116618,"idl":99.73,"recv":0,"send":0,"writ":0.44,"used":507.11,"free":3516.03},{"epoch":26116619,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":506.87,"free":3516.26},{"epoch":26116620,"idl":99.59,"recv":0,"send":0,"writ":0.33,"used":506.94,"free":3516.21},{"epoch":26116621,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.92,"free":3516.23},{"epoch":26116622,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.9,"free":3516.25},{"epoch":26116623,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.88,"free":3516.26},{"epoch":26116624,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":507.44,"free":3515.69},{"epoch":26116625,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":507.1,"free":3516.04},{"epoch":26116626,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.1,"free":3516.05},{"epoch":26116627,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.06,"free":3516.07},{"epoch":26116628,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.05,"free":3516.08},{"epoch":26116629,"idl":99.69,"recv":0,"send":0,"writ":0.68,"used":507.14,"free":3515.99},{"epoch":26116630,"idl":99.81,"recv":0,"send":0,"writ":0.35,"used":507.02,"free":3516.12},{"epoch":26116631,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":507.18,"free":3515.96},{"epoch":26116632,"idl":99.32,"recv":0,"send":0,"writ":0.16,"used":507.15,"free":3515.98},{"epoch":26116633,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.14,"free":3515.98},{"epoch":26116634,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":506.89,"free":3516.23},{"epoch":26116635,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":505.91,"free":3517.23},{"epoch":26116636,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":505.86,"free":3517.27},{"epoch":26116637,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":505.85,"free":3517.28},{"epoch":26116638,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.82,"free":3517.3},{"epoch":26116639,"idl":99.74,"recv":0,"send":0,"writ":0.51,"used":506.96,"free":3516.17},{"epoch":26116640,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":506.79,"free":3516.36},{"epoch":26116641,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.91,"free":3516.23},{"epoch":26116642,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.92,"free":3516.22},{"epoch":26116643,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.9,"free":3516.23},{"epoch":26116644,"idl":99.75,"recv":0,"send":0,"writ":0.4,"used":507.42,"free":3515.7},{"epoch":26116645,"idl":99.79,"recv":0,"send":0,"writ":0.42,"used":506.4,"free":3516.74},{"epoch":26116646,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.35,"free":3516.78},{"epoch":26116647,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":506.16,"free":3516.97},{"epoch":26116648,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.07,"free":3517.06},{"epoch":26116649,"idl":99.76,"recv":0,"send":0,"writ":0.48,"used":506.83,"free":3516.3},{"epoch":26116650,"idl":99.66,"recv":0,"send":0,"writ":0.38,"used":506.56,"free":3516.59},{"epoch":26116651,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":506.53,"free":3516.62},{"epoch":26116652,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.56,"free":3516.59},{"epoch":26116653,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.68,"free":3516.47},{"epoch":26116654,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":507.49,"free":3515.65},{"epoch":26116655,"idl":99.77,"recv":0,"send":0,"writ":0.43,"used":507.14,"free":3516.02},{"epoch":26116656,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.13,"free":3516.03},{"epoch":26116657,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":507.1,"free":3516.05},{"epoch":26116658,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.09,"free":3516.06},{"epoch":26116659,"idl":99.59,"recv":0,"send":0,"writ":0.51,"used":507.43,"free":3515.7},{"epoch":26116660,"idl":99.79,"recv":0,"send":0,"writ":0.47,"used":507.31,"free":3515.83},{"epoch":26116661,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.45,"free":3516.69},{"epoch":26116662,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.29,"free":3516.84},{"epoch":26116663,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":506.26,"free":3516.87},{"epoch":26116664,"idl":99.71,"recv":0,"send":0,"writ":0.39,"used":506.75,"free":3516.37},{"epoch":26116665,"idl":99.8,"recv":0,"send":0,"writ":0.48,"used":506.66,"free":3516.48},{"epoch":26116666,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":506.66,"free":3516.47},{"epoch":26116667,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.62,"free":3516.5},{"epoch":26116668,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.62,"free":3516.5},{"epoch":26116669,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.58,"free":3516.54},{"epoch":26116670,"idl":99.56,"recv":0,"send":0,"writ":0.78,"used":506.73,"free":3516.41},{"epoch":26116671,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.32,"free":3516.81},{"epoch":26116672,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":506.31,"free":3516.81},{"epoch":26116673,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":506.28,"free":3516.84},{"epoch":26116674,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":506.27,"free":3516.84},{"epoch":26116675,"idl":99.64,"recv":0,"send":0,"writ":0.7,"used":506.25,"free":3516.88},{"epoch":26116676,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.05,"free":3517.07},{"epoch":26116677,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":506.15,"free":3516.96},{"epoch":26116678,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.15,"free":3516.96},{"epoch":26116679,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.12,"free":3516.99},{"epoch":26116680,"idl":99.56,"recv":0,"send":0,"writ":0.63,"used":506.25,"free":3516.87},{"epoch":26116681,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":505.61,"free":3517.51},{"epoch":26116682,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":505.59,"free":3517.53},{"epoch":26116683,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":505.56,"free":3517.55},{"epoch":26116684,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":505.54,"free":3517.57},{"epoch":26116685,"idl":99.58,"recv":0,"send":0,"writ":0.77,"used":506.63,"free":3516.49},{"epoch":26116686,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.24,"free":3516.87},{"epoch":26116687,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.28,"free":3516.83},{"epoch":26116688,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.42,"free":3516.69},{"epoch":26116689,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":506.42,"free":3516.66},{"epoch":26116690,"idl":99.6,"recv":0,"send":0,"writ":0.67,"used":507.21,"free":3515.89},{"epoch":26116691,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.63,"free":3516.46},{"epoch":26116692,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":506.6,"free":3516.5},{"epoch":26116693,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.57,"free":3516.52},{"epoch":26116694,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.54,"free":3516.54},{"epoch":26116695,"idl":99.44,"recv":0,"send":0,"writ":0.54,"used":506.29,"free":3516.81},{"epoch":26116696,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":506.26,"free":3516.83},{"epoch":26116697,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.51,"free":3516.58},{"epoch":26116698,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":506.66,"free":3516.43},{"epoch":26116699,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.64,"free":3516.44},{"epoch":26116700,"idl":99.56,"recv":0,"send":0,"writ":0.44,"used":506.75,"free":3516.35},{"epoch":26116701,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":505.65,"free":3517.45},{"epoch":26116702,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":505.62,"free":3517.47},{"epoch":26116703,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.58,"free":3517.5},{"epoch":26116704,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":505.56,"free":3517.52},{"epoch":26116705,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":505.57,"free":3517.54},{"epoch":26116706,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":507.33,"free":3515.77},{"epoch":26116707,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.4,"free":3516.69},{"epoch":26116708,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.29,"free":3516.8},{"epoch":26116709,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.41,"free":3516.67},{"epoch":26116710,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":506.89,"free":3516.21},{"epoch":26116711,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":507.24,"free":3515.86},{"epoch":26116712,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.6,"free":3516.49},{"epoch":26116713,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.58,"free":3516.51},{"epoch":26116714,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.56,"free":3516.52},{"epoch":26116715,"idl":99.7,"recv":0,"send":0,"writ":0.34,"used":506.81,"free":3516.29},{"epoch":26116716,"idl":99.73,"recv":0.01,"send":0.01,"writ":0.61,"used":507.14,"free":3515.96},{"epoch":26116717,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":506.91,"free":3516.18},{"epoch":26116718,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":506.87,"free":3516.21},{"epoch":26116719,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":506.63,"free":3516.42},{"epoch":26116720,"idl":99.79,"recv":0.01,"send":0.14,"writ":0.38,"used":506.6,"free":3516.47},{"epoch":26116721,"idl":99.74,"recv":0,"send":0,"writ":0.48,"used":507.15,"free":3515.92},{"epoch":26116722,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":506.88,"free":3516.19},{"epoch":26116723,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":506.87,"free":3516.19},{"epoch":26116724,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.84,"free":3516.22},{"epoch":26116725,"idl":99.63,"recv":0,"send":0,"writ":0.34,"used":506.84,"free":3516.24},{"epoch":26116726,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":507.09,"free":3515.98},{"epoch":26116727,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.54,"free":3516.52},{"epoch":26116728,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.53,"free":3516.53},{"epoch":26116729,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.5,"free":3516.55},{"epoch":26116730,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":506.5,"free":3516.56},{"epoch":26116731,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":507.08,"free":3515.98},{"epoch":26116732,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.58,"free":3516.47},{"epoch":26116733,"idl":99.86,"recv":0.04,"send":1.3,"writ":0.31,"used":506.52,"free":3516.51},{"epoch":26116734,"idl":99.88,"recv":0.02,"send":0.64,"writ":0.26,"used":506.49,"free":3516.53},{"epoch":26116735,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":506.79,"free":3516.25},{"epoch":26116736,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":507.13,"free":3515.91},{"epoch":26116737,"idl":99.84,"recv":0.01,"send":0.4,"writ":0.51,"used":506.76,"free":3516.27},{"epoch":26116738,"idl":99.86,"recv":0.01,"send":0.76,"writ":0.18,"used":506.84,"free":3516.17},{"epoch":26116739,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.82,"free":3516.19},{"epoch":26116740,"idl":99.61,"recv":0.02,"send":0.76,"writ":0.41,"used":506.83,"free":3516.19},{"epoch":26116741,"idl":99.67,"recv":0,"send":0.02,"writ":0.34,"used":507.15,"free":3515.86},{"epoch":26116742,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":506.73,"free":3516.28},{"epoch":26116743,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.72,"free":3516.29},{"epoch":26116744,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.69,"free":3516.31},{"epoch":26116745,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":507.17,"free":3515.85},{"epoch":26116746,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.16,"free":3515.85},{"epoch":26116747,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":507.22,"free":3515.78},{"epoch":26116748,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.81,"free":3516.19},{"epoch":26116749,"idl":99.68,"recv":0,"send":0,"writ":0.39,"used":506.78,"free":3516.2},{"epoch":26116750,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":507.03,"free":3515.97},{"epoch":26116751,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":507,"free":3515.99},{"epoch":26116752,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":507.84,"free":3515.14},{"epoch":26116753,"idl":98.46,"recv":0,"send":0,"writ":0.15,"used":507.21,"free":3515.77},{"epoch":26116754,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":507.18,"free":3515.8},{"epoch":26116755,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":506.7,"free":3516.3},{"epoch":26116756,"idl":99.83,"recv":0,"send":0.01,"writ":0.18,"used":506.84,"free":3516.16},{"epoch":26116757,"idl":99.73,"recv":0,"send":0,"writ":0.48,"used":507.52,"free":3515.47},{"epoch":26116758,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":507.06,"free":3515.93},{"epoch":26116759,"idl":99.88,"recv":0,"send":0.01,"writ":0.17,"used":507.03,"free":3515.95},{"epoch":26116760,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":506.04,"free":3516.96},{"epoch":26116761,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.02,"free":3516.97},{"epoch":26116762,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":506.52,"free":3516.48},{"epoch":26116763,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":506.71,"free":3516.29},{"epoch":26116764,"idl":99.84,"recv":0.01,"send":0.23,"writ":0.21,"used":506.71,"free":3516.29},{"epoch":26116765,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":506.96,"free":3516.04},{"epoch":26116766,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":506.94,"free":3516.07},{"epoch":26116767,"idl":99.74,"recv":0,"send":0,"writ":0.52,"used":507.04,"free":3515.96},{"epoch":26116768,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":506.59,"free":3516.4},{"epoch":26116769,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.58,"free":3516.41},{"epoch":26116770,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":506.83,"free":3516.18},{"epoch":26116771,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.81,"free":3516.2},{"epoch":26116772,"idl":99.73,"recv":0,"send":0,"writ":0.46,"used":507.42,"free":3515.58},{"epoch":26116773,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":506.76,"free":3516.24},{"epoch":26116774,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":506.74,"free":3516.25},{"epoch":26116775,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":506.27,"free":3516.73},{"epoch":26116776,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.22,"free":3516.78},{"epoch":26116777,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.19,"free":3516.8},{"epoch":26116778,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":507.38,"free":3515.61},{"epoch":26116779,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":507.3,"free":3515.67},{"epoch":26116780,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":506.82,"free":3516.16},{"epoch":26116781,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":506.77,"free":3516.21},{"epoch":26116782,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.76,"free":3516.21},{"epoch":26116783,"idl":94.87,"recv":0.36,"send":0.01,"writ":261.29,"used":520.45,"free":3502.2},{"epoch":26116784,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":509.67,"free":3513.04},{"epoch":26116785,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":509.43,"free":3513.3},{"epoch":26116786,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":509.57,"free":3513.16},{"epoch":26116787,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":509.56,"free":3513.17},{"epoch":26116788,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":508.46,"free":3514.3},{"epoch":26116789,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":507.36,"free":3515.41},{"epoch":26116790,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":505.91,"free":3516.88},{"epoch":26116791,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":505.87,"free":3516.92},{"epoch":26116792,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":505.84,"free":3516.94},{"epoch":26116793,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":507.13,"free":3515.65},{"epoch":26116794,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.28,"free":3515.49},{"epoch":26116795,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":507.05,"free":3515.74},{"epoch":26116796,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":507.02,"free":3515.77},{"epoch":26116797,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.2,"free":3515.59},{"epoch":26116798,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":507.65,"free":3515.13},{"epoch":26116799,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":507.4,"free":3515.37},{"epoch":26116800,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":507.41,"free":3515.38},{"epoch":26116801,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":507.37,"free":3515.41},{"epoch":26116802,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.36,"free":3515.42},{"epoch":26116803,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":507.62,"free":3515.15},{"epoch":26116804,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.59,"free":3516.21},{"epoch":26116805,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":506.82,"free":3516},{"epoch":26116806,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.8,"free":3516.02},{"epoch":26116807,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.79,"free":3516.03},{"epoch":26116808,"idl":99.77,"recv":0,"send":0,"writ":0.39,"used":507.3,"free":3515.51},{"epoch":26116809,"idl":99.62,"recv":0,"send":0,"writ":0.43,"used":507.23,"free":3515.56},{"epoch":26116810,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":507.43,"free":3515.38},{"epoch":26116811,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.39,"free":3515.41},{"epoch":26116812,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.38,"free":3515.42},{"epoch":26116813,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":507.7,"free":3515.09},{"epoch":26116814,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.34,"free":3515.45},{"epoch":26116815,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":507.57,"free":3515.23},{"epoch":26116816,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.86,"free":3515.94},{"epoch":26116817,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":506.31,"free":3516.49},{"epoch":26116818,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.44,"free":3516.35},{"epoch":26116819,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":506.87,"free":3515.92},{"epoch":26116820,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":506.42,"free":3516.38},{"epoch":26116821,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.39,"free":3516.4},{"epoch":26116822,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.39,"free":3516.4},{"epoch":26116823,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.35,"free":3516.43},{"epoch":26116824,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":506.7,"free":3516.08},{"epoch":26116825,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":506.58,"free":3516.22},{"epoch":26116826,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.58,"free":3516.22},{"epoch":26116827,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":506.24,"free":3516.55},{"epoch":26116828,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.05,"free":3516.74},{"epoch":26116829,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":506.87,"free":3515.91},{"epoch":26116830,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":506.45,"free":3516.34},{"epoch":26116831,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.42,"free":3516.37},{"epoch":26116832,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.38,"free":3516.4},{"epoch":26116833,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.38,"free":3516.4},{"epoch":26116834,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":506.86,"free":3515.92},{"epoch":26116835,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":506.6,"free":3516.19},{"epoch":26116836,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.57,"free":3516.22},{"epoch":26116837,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.54,"free":3516.24},{"epoch":26116838,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.52,"free":3516.26},{"epoch":26116839,"idl":99.58,"recv":0,"send":0,"writ":0.73,"used":507.43,"free":3515.33},{"epoch":26116840,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":506.66,"free":3516.1},{"epoch":26116841,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.64,"free":3516.12},{"epoch":26116842,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":506.61,"free":3516.14},{"epoch":26116843,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.6,"free":3516.15},{"epoch":26116844,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":507.21,"free":3515.54},{"epoch":26116845,"idl":99.73,"recv":0,"send":0,"writ":0.39,"used":506.35,"free":3516.42},{"epoch":26116846,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":506.32,"free":3516.44},{"epoch":26116847,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":506.28,"free":3516.48},{"epoch":26116848,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.26,"free":3516.49},{"epoch":26116849,"idl":99.75,"recv":0,"send":0,"writ":0.38,"used":506.67,"free":3516.07},{"epoch":26116850,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":506.01,"free":3516.75},{"epoch":26116851,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":505.89,"free":3516.88},{"epoch":26116852,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":505.86,"free":3516.89},{"epoch":26116853,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":505.83,"free":3516.92},{"epoch":26116854,"idl":99.78,"recv":0,"send":0,"writ":0.45,"used":506.26,"free":3516.49},{"epoch":26116855,"idl":99.69,"recv":0,"send":0,"writ":0.45,"used":506.56,"free":3516.2},{"epoch":26116856,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.53,"free":3516.23},{"epoch":26116857,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.51,"free":3516.24},{"epoch":26116858,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":506.48,"free":3516.27},{"epoch":26116859,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.61,"free":3516.14},{"epoch":26116860,"idl":99.52,"recv":0,"send":0,"writ":0.73,"used":506.9,"free":3515.87},{"epoch":26116861,"idl":99.87,"recv":0.03,"send":0.83,"writ":0.21,"used":506.13,"free":3516.63},{"epoch":26116862,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":506.11,"free":3516.65},{"epoch":26116863,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":506.08,"free":3516.69},{"epoch":26116864,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":506.06,"free":3516.69},{"epoch":26116865,"idl":99.58,"recv":0,"send":0,"writ":0.7,"used":506.98,"free":3515.79},{"epoch":26116866,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":506.78,"free":3515.99},{"epoch":26116867,"idl":99.86,"recv":0.02,"send":0.63,"writ":0.16,"used":506.78,"free":3515.98},{"epoch":26116868,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":506.77,"free":3515.98},{"epoch":26116869,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":506.99,"free":3515.74},{"epoch":26116870,"idl":99.62,"recv":0,"send":0,"writ":0.65,"used":507.01,"free":3515.74},{"epoch":26116871,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":506.77,"free":3515.97},{"epoch":26116872,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.9,"free":3515.84},{"epoch":26116873,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.87,"free":3515.86},{"epoch":26116874,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.84,"free":3515.89},{"epoch":26116875,"idl":99.65,"recv":0,"send":0,"writ":0.72,"used":507.11,"free":3515.64},{"epoch":26116876,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.81,"free":3515.93},{"epoch":26116877,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":506.79,"free":3515.94},{"epoch":26116878,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.77,"free":3515.96},{"epoch":26116879,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.75,"free":3515.97},{"epoch":26116880,"idl":99.63,"recv":0,"send":0,"writ":0.68,"used":506.69,"free":3516.05},{"epoch":26116881,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":506.48,"free":3516.26},{"epoch":26116882,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.61,"free":3516.12},{"epoch":26116883,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.63,"free":3516.11},{"epoch":26116884,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":506.61,"free":3516.12},{"epoch":26116885,"idl":99.64,"recv":0,"send":0,"writ":0.74,"used":506.64,"free":3516.1},{"epoch":26116886,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.83,"free":3515.9},{"epoch":26116887,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.67,"free":3516.06},{"epoch":26116888,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.55,"free":3516.18},{"epoch":26116889,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.53,"free":3516.2},{"epoch":26116890,"idl":99.53,"recv":0,"send":0,"writ":0.5,"used":506.91,"free":3515.83},{"epoch":26116891,"idl":99.89,"recv":0,"send":0.01,"writ":0.43,"used":506.51,"free":3516.23},{"epoch":26116892,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.6,"free":3516.15},{"epoch":26116893,"idl":99.82,"recv":0.01,"send":0.05,"writ":0.28,"used":506.56,"free":3516.19},{"epoch":26116894,"idl":99.88,"recv":0.04,"send":1.33,"writ":0.21,"used":506.52,"free":3516.23},{"epoch":26116895,"idl":99.5,"recv":0.03,"send":1.7,"writ":0.7,"used":507.43,"free":3515.32},{"epoch":26116896,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":506.82,"free":3515.92},{"epoch":26116897,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":506.79,"free":3515.95},{"epoch":26116898,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.78,"free":3515.95},{"epoch":26116899,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":506.74,"free":3515.97},{"epoch":26116900,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":507.01,"free":3515.72},{"epoch":26116901,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":507.66,"free":3515.06},{"epoch":26116902,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.95,"free":3515.77},{"epoch":26116903,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":506.98,"free":3515.73},{"epoch":26116904,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":507.09,"free":3515.64},{"epoch":26116905,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":506.62,"free":3516.13},{"epoch":26116906,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":507.29,"free":3515.45},{"epoch":26116907,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":507.05,"free":3515.68},{"epoch":26116908,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.02,"free":3515.71},{"epoch":26116909,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.01,"free":3515.72},{"epoch":26116910,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":507.25,"free":3515.49},{"epoch":26116911,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":506.72,"free":3516.02},{"epoch":26116912,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":505.97,"free":3516.76},{"epoch":26116913,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":505.95,"free":3516.78},{"epoch":26116914,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":505.94,"free":3516.78},{"epoch":26116915,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":506.85,"free":3515.9},{"epoch":26116916,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":507.33,"free":3515.41},{"epoch":26116917,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":507.06,"free":3515.68},{"epoch":26116918,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.05,"free":3515.68},{"epoch":26116919,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.02,"free":3515.72},{"epoch":26116920,"idl":99.63,"recv":0,"send":0,"writ":0.33,"used":507.28,"free":3515.49},{"epoch":26116921,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":507.42,"free":3515.34},{"epoch":26116922,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.73,"free":3516.02},{"epoch":26116923,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.72,"free":3516.04},{"epoch":26116924,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.69,"free":3516.06},{"epoch":26116925,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":506.02,"free":3516.74},{"epoch":26116926,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":506.88,"free":3515.88},{"epoch":26116927,"idl":99.84,"recv":0.02,"send":0.83,"writ":0.15,"used":507.08,"free":3515.67},{"epoch":26116928,"idl":99.57,"recv":0,"send":0,"writ":0.21,"used":507.01,"free":3515.73},{"epoch":26116929,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":507.01,"free":3515.71},{"epoch":26116930,"idl":99.68,"recv":0,"send":0,"writ":0.34,"used":506.56,"free":3516.17},{"epoch":26116931,"idl":99.7,"recv":0,"send":0,"writ":0.38,"used":506.83,"free":3515.9},{"epoch":26116932,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":506.93,"free":3515.79},{"epoch":26116933,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.92,"free":3515.8},{"epoch":26116934,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":507.06,"free":3515.65},{"epoch":26116935,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":506.62,"free":3516.11},{"epoch":26116936,"idl":99.7,"recv":0,"send":0,"writ":0.36,"used":506.96,"free":3515.76},{"epoch":26116937,"idl":99.9,"recv":0,"send":0,"writ":0.39,"used":506.81,"free":3515.91},{"epoch":26116938,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.78,"free":3515.94},{"epoch":26116939,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":506.76,"free":3515.95},{"epoch":26116940,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":507.24,"free":3515.49},{"epoch":26116941,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":507.24,"free":3515.49},{"epoch":26116942,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":507.48,"free":3515.24},{"epoch":26116943,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.7,"free":3516.01},{"epoch":26116944,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.67,"free":3516.04},{"epoch":26116945,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":506.72,"free":3516},{"epoch":26116946,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":506.87,"free":3515.86},{"epoch":26116947,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":507.58,"free":3515.13},{"epoch":26116948,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.07,"free":3515.64},{"epoch":26116949,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.05,"free":3515.66},{"epoch":26116950,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":507.05,"free":3515.67},{"epoch":26116951,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.02,"free":3515.7},{"epoch":26116952,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":507.38,"free":3515.34},{"epoch":26116953,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.98,"free":3515.73},{"epoch":26116954,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.97,"free":3515.74},{"epoch":26116955,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":507.22,"free":3515.51},{"epoch":26116956,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.21,"free":3515.51},{"epoch":26116957,"idl":99.78,"recv":0,"send":0,"writ":0.49,"used":507.58,"free":3515.14},{"epoch":26116958,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":507.1,"free":3515.62},{"epoch":26116959,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":507.08,"free":3515.62},{"epoch":26116960,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":507.08,"free":3515.63},{"epoch":26116961,"idl":99.91,"recv":0,"send":0.01,"writ":0.17,"used":507.03,"free":3515.68},{"epoch":26116962,"idl":99.72,"recv":0,"send":0,"writ":0.5,"used":507.8,"free":3514.9},{"epoch":26116963,"idl":99.88,"recv":0,"send":0,"writ":0.22,"used":507.47,"free":3515.23},{"epoch":26116964,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":507.25,"free":3515.44},{"epoch":26116965,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":506.8,"free":3515.91},{"epoch":26116966,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":506.73,"free":3515.97},{"epoch":26116967,"idl":99.63,"recv":0,"send":0,"writ":0.44,"used":507.37,"free":3515.33},{"epoch":26116968,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":507.33,"free":3515.37},{"epoch":26116969,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.31,"free":3515.38},{"epoch":26116970,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":506.83,"free":3515.87},{"epoch":26116971,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.18,"used":506.52,"free":3516.18},{"epoch":26116972,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.23,"free":3516.47},{"epoch":26116973,"idl":99.61,"recv":0.03,"send":0.02,"writ":0.71,"used":506.86,"free":3515.83},{"epoch":26116974,"idl":96.59,"recv":3.11,"send":0.07,"writ":18.26,"used":513.93,"free":3507.88},{"epoch":26116975,"idl":97.37,"recv":0.46,"send":0.07,"writ":5.09,"used":514.28,"free":3505.84},{"epoch":26116976,"idl":99.8,"recv":0.01,"send":0.01,"writ":4.57,"used":509.78,"free":3508.56},{"epoch":26116977,"idl":82.93,"recv":0.06,"send":1.7,"writ":6.63,"used":809.94,"free":3208.21},{"epoch":26116978,"idl":99.45,"recv":0.06,"send":2.5,"writ":0.73,"used":651.3,"free":3366.76},{"epoch":26116979,"idl":99.71,"recv":0,"send":0,"writ":0.19,"used":555.17,"free":3462.88},{"epoch":26116980,"idl":99.49,"recv":0.04,"send":1.67,"writ":0.36,"used":556.34,"free":3461.71},{"epoch":26116981,"idl":99.67,"recv":0,"send":0,"writ":0.18,"used":556.46,"free":3461.59},{"epoch":26116982,"idl":99.69,"recv":0,"send":0,"writ":0.14,"used":556.45,"free":3461.59},{"epoch":26116983,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":557.51,"free":3460.53},{"epoch":26116984,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":556.9,"free":3461.13},{"epoch":26116985,"idl":99.63,"recv":0,"send":0,"writ":0.3,"used":555.68,"free":3462.36},{"epoch":26116986,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":555.65,"free":3462.4},{"epoch":26116987,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":555.62,"free":3462.42},{"epoch":26116988,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":556.6,"free":3461.44},{"epoch":26116989,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":557.04,"free":3460.96},{"epoch":26116990,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":557.06,"free":3460.96},{"epoch":26116991,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":557.03,"free":3460.99},{"epoch":26116992,"idl":99.7,"recv":0,"send":0,"writ":0.16,"used":557.19,"free":3460.82},{"epoch":26116993,"idl":99.54,"recv":0,"send":0,"writ":0.55,"used":557.57,"free":3460.44},{"epoch":26116994,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":557.09,"free":3460.94},{"epoch":26116995,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":556.19,"free":3461.88},{"epoch":26116996,"idl":99.76,"recv":0,"send":0,"writ":0.21,"used":556.17,"free":3461.9},{"epoch":26116997,"idl":99.79,"recv":0,"send":0.01,"writ":0.19,"used":556.61,"free":3461.46},{"epoch":26116998,"idl":99.66,"recv":0,"send":0,"writ":0.48,"used":556.95,"free":3461.12},{"epoch":26116999,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":556.56,"free":3461.5},{"epoch":26117000,"idl":99.62,"recv":0,"send":0,"writ":0.3,"used":556.69,"free":3461.39},{"epoch":26117001,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":556.73,"free":3461.34},{"epoch":26117002,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":556.7,"free":3461.36},{"epoch":26117003,"idl":99.61,"recv":0,"send":0,"writ":0.41,"used":557.27,"free":3460.8},{"epoch":26117004,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":556.9,"free":3461.15},{"epoch":26117005,"idl":99.62,"recv":0,"send":0,"writ":0.31,"used":555.54,"free":3462.53},{"epoch":26117006,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":555.41,"free":3462.66},{"epoch":26117007,"idl":99.75,"recv":0,"send":0,"writ":0.19,"used":555.85,"free":3462.21},{"epoch":26117008,"idl":99.59,"recv":0,"send":0,"writ":0.5,"used":556.82,"free":3461.23},{"epoch":26117009,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":557.32,"free":3460.73},{"epoch":26117010,"idl":99.6,"recv":0,"send":0,"writ":0.3,"used":557.31,"free":3460.76},{"epoch":26117011,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":557.3,"free":3460.77},{"epoch":26117012,"idl":99.73,"recv":0.01,"send":0.01,"writ":0.18,"used":557.36,"free":3460.7},{"epoch":26117013,"idl":99.61,"recv":0,"send":0,"writ":0.45,"used":556.75,"free":3461.3},{"epoch":26117014,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":556.59,"free":3461.46},{"epoch":26117015,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":556.6,"free":3461.47},{"epoch":26117016,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":556.58,"free":3461.48},{"epoch":26117017,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":556.56,"free":3461.5},{"epoch":26117018,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":556.55,"free":3461.51},{"epoch":26117019,"idl":99.37,"recv":0,"send":0,"writ":0.73,"used":557.89,"free":3460.13},{"epoch":26117020,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":557.44,"free":3460.59},{"epoch":26117021,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":557.42,"free":3460.61},{"epoch":26117022,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":557.4,"free":3460.63},{"epoch":26117023,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":557.38,"free":3460.65},{"epoch":26117024,"idl":99.58,"recv":0,"send":0,"writ":0.59,"used":557.9,"free":3460.13},{"epoch":26117025,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":557.35,"free":3460.71},{"epoch":26117026,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":557.33,"free":3460.72},{"epoch":26117027,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":557.32,"free":3460.73},{"epoch":26117028,"idl":99.69,"recv":0,"send":0,"writ":0.14,"used":557.29,"free":3460.75},{"epoch":26117029,"idl":99.51,"recv":0,"send":0,"writ":0.56,"used":557.81,"free":3460.23},{"epoch":26117030,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":557.66,"free":3460.4},{"epoch":26117031,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":557.12,"free":3460.93},{"epoch":26117032,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":556.68,"free":3461.37},{"epoch":26117033,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":556.65,"free":3461.4},{"epoch":26117034,"idl":99.61,"recv":0,"send":0,"writ":0.55,"used":556.82,"free":3461.22},{"epoch":26117035,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":556.62,"free":3461.43},{"epoch":26117036,"idl":99.69,"recv":0,"send":0,"writ":0.16,"used":556.59,"free":3461.46},{"epoch":26117037,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":556.59,"free":3461.46},{"epoch":26117038,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":556.55,"free":3461.49},{"epoch":26117039,"idl":99.69,"recv":0,"send":0,"writ":0.42,"used":557.24,"free":3460.8},{"epoch":26117040,"idl":99.53,"recv":0,"send":0,"writ":0.43,"used":556.3,"free":3461.76},{"epoch":26117041,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":556.47,"free":3461.58},{"epoch":26117042,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":556.44,"free":3461.61},{"epoch":26117043,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":556.56,"free":3461.48},{"epoch":26117044,"idl":99.69,"recv":0,"send":0,"writ":0.77,"used":557.19,"free":3460.85},{"epoch":26117045,"idl":99.67,"recv":0,"send":0,"writ":0.35,"used":556.94,"free":3461.11},{"epoch":26117046,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.87,"free":3461.18},{"epoch":26117047,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":556.84,"free":3461.21},{"epoch":26117048,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":556.82,"free":3461.22},{"epoch":26117049,"idl":99.07,"recv":0,"send":0,"writ":0.64,"used":558.33,"free":3459.69},{"epoch":26117050,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":556.68,"free":3461.34},{"epoch":26117051,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":556.65,"free":3461.38},{"epoch":26117052,"idl":99.78,"recv":0,"send":0,"writ":0.19,"used":556.66,"free":3461.36},{"epoch":26117053,"idl":99.68,"recv":0,"send":0,"writ":0.18,"used":556.63,"free":3461.39},{"epoch":26117054,"idl":99.57,"recv":0,"send":0,"writ":0.32,"used":557.41,"free":3460.61},{"epoch":26117055,"idl":99.59,"recv":0,"send":0,"writ":0.54,"used":556.39,"free":3461.64},{"epoch":26117056,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":556.36,"free":3461.67},{"epoch":26117057,"idl":99.64,"recv":0.04,"send":1.49,"writ":0.32,"used":557.04,"free":3460.98},{"epoch":26117058,"idl":99.72,"recv":0,"send":0.03,"writ":0.19,"used":557.11,"free":3460.89},{"epoch":26117059,"idl":99.73,"recv":0.02,"send":0.84,"writ":0.28,"used":557.15,"free":3460.84},{"epoch":26117060,"idl":99.51,"recv":0,"send":0,"writ":0.76,"used":558.35,"free":3459.66},{"epoch":26117061,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":557.88,"free":3460.12},{"epoch":26117062,"idl":99.78,"recv":0,"send":0.01,"writ":0.15,"used":557.85,"free":3460.15},{"epoch":26117063,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":557.81,"free":3460.18},{"epoch":26117064,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":557.8,"free":3460.19},{"epoch":26117065,"idl":99.48,"recv":0,"send":0,"writ":0.76,"used":558.39,"free":3459.61},{"epoch":26117066,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":558.02,"free":3459.98},{"epoch":26117067,"idl":99.77,"recv":0,"send":0,"writ":0.19,"used":557.89,"free":3460.1},{"epoch":26117068,"idl":99.73,"recv":0,"send":0,"writ":0.17,"used":557.62,"free":3460.37},{"epoch":26117069,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":556.87,"free":3461.11},{"epoch":26117070,"idl":99.48,"recv":0,"send":0,"writ":0.72,"used":557.81,"free":3460.19},{"epoch":26117071,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":557.62,"free":3460.38},{"epoch":26117072,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":557.6,"free":3460.39},{"epoch":26117073,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":557.58,"free":3460.41},{"epoch":26117074,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":557.55,"free":3460.43},{"epoch":26117075,"idl":99.4,"recv":0,"send":0.01,"writ":0.71,"used":557.2,"free":3460.8},{"epoch":26117076,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":556.05,"free":3461.95},{"epoch":26117077,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":556.02,"free":3461.98},{"epoch":26117078,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":556.01,"free":3461.98},{"epoch":26117079,"idl":99.5,"recv":0,"send":0,"writ":0.29,"used":557.55,"free":3460.41},{"epoch":26117080,"idl":99.57,"recv":0,"send":0,"writ":0.73,"used":558.39,"free":3459.59},{"epoch":26117081,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.87,"free":3460.11},{"epoch":26117082,"idl":99.68,"recv":0,"send":0,"writ":0.14,"used":557.86,"free":3460.11},{"epoch":26117083,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":557.83,"free":3460.14},{"epoch":26117084,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":557.81,"free":3460.16},{"epoch":26117085,"idl":99.43,"recv":0,"send":0,"writ":0.74,"used":558.22,"free":3459.76},{"epoch":26117086,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":558.27,"free":3459.71},{"epoch":26117087,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":558.26,"free":3459.71},{"epoch":26117088,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":557.72,"free":3460.25},{"epoch":26117089,"idl":99.77,"recv":0,"send":0,"writ":0.17,"used":557.48,"free":3460.49},{"epoch":26117090,"idl":99.56,"recv":0,"send":0,"writ":0.61,"used":557.96,"free":3460.03},{"epoch":26117091,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":557.38,"free":3460.6},{"epoch":26117092,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":557.38,"free":3460.6},{"epoch":26117093,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":557.34,"free":3460.63},{"epoch":26117094,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":557.32,"free":3460.65},{"epoch":26117095,"idl":99.55,"recv":0,"send":0,"writ":0.57,"used":558.14,"free":3459.85},{"epoch":26117096,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":557.3,"free":3460.68},{"epoch":26117097,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":557.28,"free":3460.69},{"epoch":26117098,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":557.26,"free":3460.71},{"epoch":26117099,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":557.25,"free":3460.74},{"epoch":26117100,"idl":99.48,"recv":0,"send":0,"writ":0.3,"used":557.98,"free":3460.03},{"epoch":26117101,"idl":99.55,"recv":0,"send":0,"writ":0.56,"used":557.52,"free":3460.47},{"epoch":26117102,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":556.9,"free":3461.1},{"epoch":26117103,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":556.87,"free":3461.12},{"epoch":26117104,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":556.85,"free":3461.14},{"epoch":26117105,"idl":99.6,"recv":0,"send":0,"writ":0.3,"used":558.54,"free":3459.46},{"epoch":26117106,"idl":99.58,"recv":0,"send":0,"writ":0.56,"used":558.9,"free":3459.09},{"epoch":26117107,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":558.54,"free":3459.45},{"epoch":26117108,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":558.15,"free":3459.85},{"epoch":26117109,"idl":99.54,"recv":0,"send":0,"writ":0.35,"used":557.53,"free":3460.45},{"epoch":26117110,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":557.5,"free":3460.5},{"epoch":26117111,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":557.82,"free":3460.17},{"epoch":26117112,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":557.6,"free":3460.38},{"epoch":26117113,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.61,"free":3460.38},{"epoch":26117114,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":557.6,"free":3460.39},{"epoch":26117115,"idl":99.57,"recv":0,"send":0,"writ":0.31,"used":558.14,"free":3459.87},{"epoch":26117116,"idl":99.62,"recv":0,"send":0,"writ":0.56,"used":558.43,"free":3459.58},{"epoch":26117117,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":557.82,"free":3460.18},{"epoch":26117118,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":557.79,"free":3460.21},{"epoch":26117119,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":557.75,"free":3460.24},{"epoch":26117120,"idl":92.82,"recv":35.93,"send":0.06,"writ":218.27,"used":567.32,"free":3438.14},{"epoch":26117121,"idl":99.51,"recv":0,"send":0,"writ":78.42,"used":561.26,"free":3421.43},{"epoch":26117122,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":560.94,"free":3421.74},{"epoch":26117123,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":560.93,"free":3421.75},{"epoch":26117124,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":560.88,"free":3421.8},{"epoch":26117125,"idl":99.69,"recv":0,"send":0,"writ":0.41,"used":558.91,"free":3423.83},{"epoch":26117126,"idl":99.68,"recv":0,"send":0,"writ":0.44,"used":557.85,"free":3424.93},{"epoch":26117127,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":557.58,"free":3425.2},{"epoch":26117128,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":557.16,"free":3425.61},{"epoch":26117129,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":556.4,"free":3426.37},{"epoch":26117130,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":556.17,"free":3426.64},{"epoch":26117131,"idl":99.61,"recv":0,"send":0,"writ":0.33,"used":556.52,"free":3426.28},{"epoch":26117132,"idl":99.74,"recv":0,"send":0,"writ":0.41,"used":556.86,"free":3425.94},{"epoch":26117133,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":556.84,"free":3425.96},{"epoch":26117134,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":556.82,"free":3425.97},{"epoch":26117135,"idl":99.62,"recv":0,"send":0,"writ":0.36,"used":556.82,"free":3425.99},{"epoch":26117136,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":557.17,"free":3425.64},{"epoch":26117137,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":557.31,"free":3425.49},{"epoch":26117138,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":557.43,"free":3425.37},{"epoch":26117139,"idl":99.59,"recv":0,"send":0,"writ":0.31,"used":557.17,"free":3425.6},{"epoch":26117140,"idl":99.65,"recv":0,"send":0,"writ":0.36,"used":557.65,"free":3425.13},{"epoch":26117141,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":557.63,"free":3425.14},{"epoch":26117142,"idl":99.61,"recv":0,"send":0,"writ":0.54,"used":558.54,"free":3424.23},{"epoch":26117143,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":557.84,"free":3424.93},{"epoch":26117144,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":557.84,"free":3424.94},{"epoch":26117145,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":556.62,"free":3426.18},{"epoch":26117146,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":556.59,"free":3426.21},{"epoch":26117147,"idl":96.54,"recv":0.02,"send":0.01,"writ":87.07,"used":566.76,"free":3418.08},{"epoch":26117148,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":559.8,"free":3423.05},{"epoch":26117149,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":558.89,"free":3423.95},{"epoch":26117150,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":559.37,"free":3423.49},{"epoch":26117151,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":559.34,"free":3423.51},{"epoch":26117152,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":558.38,"free":3424.49},{"epoch":26117153,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":556.92,"free":3425.98},{"epoch":26117154,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":556.9,"free":3426},{"epoch":26117155,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":556.69,"free":3426.22},{"epoch":26117156,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":556.6,"free":3426.31},{"epoch":26117157,"idl":99.71,"recv":0,"send":0,"writ":0.6,"used":557.43,"free":3425.48},{"epoch":26117158,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.54,"free":3425.38},{"epoch":26117159,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":557.51,"free":3425.41},{"epoch":26117160,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":557.51,"free":3425.42},{"epoch":26117161,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":557.49,"free":3425.44},{"epoch":26117162,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":558.19,"free":3424.74},{"epoch":26117163,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":557.7,"free":3425.22},{"epoch":26117164,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":557.66,"free":3425.25},{"epoch":26117165,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":557.95,"free":3424.98},{"epoch":26117166,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":558.08,"free":3424.85},{"epoch":26117167,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":558.42,"free":3424.5},{"epoch":26117168,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":558.04,"free":3424.88},{"epoch":26117169,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":557.23,"free":3425.67},{"epoch":26117170,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":557.27,"free":3425.65},{"epoch":26117171,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":557.24,"free":3425.67},{"epoch":26117172,"idl":99.62,"recv":0,"send":0,"writ":0.5,"used":557.58,"free":3425.32},{"epoch":26117173,"idl":99.84,"recv":0,"send":0,"writ":0.22,"used":557.21,"free":3425.7},{"epoch":26117174,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":557.2,"free":3425.72},{"epoch":26117175,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":557.43,"free":3425.5},{"epoch":26117176,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":557.41,"free":3425.51},{"epoch":26117177,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":557.77,"free":3425.15},{"epoch":26117178,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":558.31,"free":3424.6},{"epoch":26117179,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":557.53,"free":3425.38},{"epoch":26117180,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":557.78,"free":3425.15},{"epoch":26117181,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":557.76,"free":3425.17},{"epoch":26117182,"idl":99.85,"recv":0.01,"send":0.84,"writ":0.3,"used":557.77,"free":3425.15},{"epoch":26117183,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":558.27,"free":3424.64},{"epoch":26117184,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.74,"free":3425.17},{"epoch":26117185,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":557.74,"free":3425.18},{"epoch":26117186,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":557.72,"free":3425.2},{"epoch":26117187,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":557.62,"free":3425.3},{"epoch":26117188,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":558.11,"free":3424.79},{"epoch":26117189,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.37,"free":3425.53},{"epoch":26117190,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":557.17,"free":3425.76},{"epoch":26117191,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":557.15,"free":3425.77},{"epoch":26117192,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.28,"free":3425.64},{"epoch":26117193,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":557.32,"free":3425.59},{"epoch":26117194,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.79,"free":3426.12},{"epoch":26117195,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":557.03,"free":3425.9},{"epoch":26117196,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":557.01,"free":3425.91},{"epoch":26117197,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":556.99,"free":3425.93},{"epoch":26117198,"idl":99.74,"recv":0,"send":0,"writ":0.51,"used":558.01,"free":3424.9},{"epoch":26117199,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":557.92,"free":3424.97},{"epoch":26117200,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":556.75,"free":3426.15},{"epoch":26117201,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.67,"free":3426.22},{"epoch":26117202,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":556.66,"free":3426.23},{"epoch":26117203,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":557.21,"free":3425.68},{"epoch":26117204,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":557.52,"free":3425.37},{"epoch":26117205,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":557.08,"free":3425.84},{"epoch":26117206,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.05,"free":3425.87},{"epoch":26117207,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.02,"free":3425.9},{"epoch":26117208,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":557.66,"free":3425.25},{"epoch":26117209,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":557.76,"free":3425.14},{"epoch":26117210,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":557.25,"free":3425.68},{"epoch":26117211,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.21,"free":3425.71},{"epoch":26117212,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":557.19,"free":3425.72},{"epoch":26117213,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":557.95,"free":3424.96},{"epoch":26117214,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":557.39,"free":3425.52},{"epoch":26117215,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":557.52,"free":3425.41},{"epoch":26117216,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.55,"free":3425.38},{"epoch":26117217,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":557.52,"free":3425.39},{"epoch":26117218,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":557.51,"free":3425.41},{"epoch":26117219,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":558.12,"free":3424.79},{"epoch":26117220,"idl":99.63,"recv":0,"send":0,"writ":0.31,"used":557.73,"free":3425.19},{"epoch":26117221,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":557.72,"free":3425.2},{"epoch":26117222,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":557.69,"free":3425.22},{"epoch":26117223,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.68,"free":3425.23},{"epoch":26117224,"idl":99.66,"recv":0,"send":0,"writ":0.58,"used":558.25,"free":3424.66},{"epoch":26117225,"idl":99.74,"recv":0,"send":0,"writ":0.38,"used":557.89,"free":3425.03},{"epoch":26117226,"idl":99.84,"recv":0.02,"send":0.04,"writ":0.22,"used":557.97,"free":3424.95},{"epoch":26117227,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":557.99,"free":3424.91},{"epoch":26117228,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":557.97,"free":3424.94},{"epoch":26117229,"idl":99.49,"recv":0,"send":0,"writ":0.7,"used":558.67,"free":3424.21},{"epoch":26117230,"idl":99.73,"recv":0,"send":0,"writ":0.35,"used":556.71,"free":3426.18},{"epoch":26117231,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":556.69,"free":3426.2},{"epoch":26117232,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.66,"free":3426.23},{"epoch":26117233,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":556.65,"free":3426.23},{"epoch":26117234,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":557.97,"free":3424.9},{"epoch":26117235,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":557.84,"free":3425.06},{"epoch":26117236,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.77,"free":3425.12},{"epoch":26117237,"idl":99.82,"recv":0,"send":0,"writ":0.22,"used":557.74,"free":3425.15},{"epoch":26117238,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":557.73,"free":3425.15},{"epoch":26117239,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":558.15,"free":3424.73},{"epoch":26117240,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":557.7,"free":3425.2},{"epoch":26117241,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":557.67,"free":3425.21},{"epoch":26117242,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":557.65,"free":3425.24},{"epoch":26117243,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":557.63,"free":3425.25},{"epoch":26117244,"idl":99.77,"recv":0,"send":0,"writ":0.52,"used":558.08,"free":3424.79},{"epoch":26117245,"idl":99.79,"recv":0,"send":0,"writ":0.38,"used":558.29,"free":3424.61},{"epoch":26117246,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":558.28,"free":3424.62},{"epoch":26117247,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":558.2,"free":3424.69},{"epoch":26117248,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":557.99,"free":3424.9},{"epoch":26117249,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":558.52,"free":3424.36},{"epoch":26117250,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":557.7,"free":3425.2},{"epoch":26117251,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":557.46,"free":3425.43},{"epoch":26117252,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":557.44,"free":3425.45},{"epoch":26117253,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":557.42,"free":3425.46},{"epoch":26117254,"idl":99.74,"recv":0,"send":0,"writ":0.42,"used":557.99,"free":3424.89},{"epoch":26117255,"idl":99.76,"recv":0,"send":0,"writ":0.45,"used":557.88,"free":3425},{"epoch":26117256,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.88,"free":3425},{"epoch":26117257,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":557.85,"free":3425.02},{"epoch":26117258,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":558.02,"free":3424.85},{"epoch":26117259,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":557.99,"free":3424.86},{"epoch":26117260,"idl":99.56,"recv":0,"send":0,"writ":0.76,"used":558.14,"free":3424.72},{"epoch":26117261,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":557.73,"free":3425.14},{"epoch":26117262,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":557.72,"free":3425.14},{"epoch":26117263,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":557.69,"free":3425.17},{"epoch":26117264,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.68,"free":3425.17},{"epoch":26117265,"idl":99.65,"recv":0,"send":0,"writ":0.77,"used":558.46,"free":3424.4},{"epoch":26117266,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":558.15,"free":3424.71},{"epoch":26117267,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":558.12,"free":3424.74},{"epoch":26117268,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":558.11,"free":3424.74},{"epoch":26117269,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":558.08,"free":3424.76},{"epoch":26117270,"idl":99.65,"recv":0,"send":0,"writ":0.71,"used":558.66,"free":3424.2},{"epoch":26117271,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":557.51,"free":3425.34},{"epoch":26117272,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":557.5,"free":3425.35},{"epoch":26117273,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":557.48,"free":3425.37},{"epoch":26117274,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":557.46,"free":3425.38},{"epoch":26117275,"idl":99.59,"recv":0,"send":0,"writ":0.69,"used":557.92,"free":3424.94},{"epoch":26117276,"idl":99.89,"recv":0,"send":0,"writ":0.23,"used":557.44,"free":3425.41},{"epoch":26117277,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":556.96,"free":3425.9},{"epoch":26117278,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.91,"free":3425.94},{"epoch":26117279,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":556.88,"free":3425.97},{"epoch":26117280,"idl":99.17,"recv":0,"send":0,"writ":0.88,"used":523.03,"free":3460.12},{"epoch":26117281,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":506.92,"free":3476.38},{"epoch":26117282,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.91,"free":3476.38},{"epoch":26117283,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.88,"free":3476.4},{"epoch":26117284,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.87,"free":3476.41},{"epoch":26117285,"idl":99.62,"recv":0,"send":0,"writ":0.75,"used":507.22,"free":3476.08},{"epoch":26117286,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.85,"free":3476.44},{"epoch":26117287,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":506.83,"free":3476.46},{"epoch":26117288,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":506.81,"free":3476.47},{"epoch":26117289,"idl":99.65,"recv":0,"send":0,"writ":0.32,"used":506.78,"free":3476.48},{"epoch":26117290,"idl":98.76,"recv":0,"send":0,"writ":0.8,"used":507.39,"free":3475.9},{"epoch":26117291,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":507.01,"free":3476.27},{"epoch":26117292,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":507.12,"free":3476.15},{"epoch":26117293,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.18,"free":3476.09},{"epoch":26117294,"idl":99.71,"recv":0,"send":0,"writ":0.2,"used":507.18,"free":3476.12},{"epoch":26117295,"idl":99.35,"recv":0,"send":0,"writ":0.59,"used":506.74,"free":3476.58},{"epoch":26117296,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":506.91,"free":3476.4},{"epoch":26117297,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":507.12,"free":3476.18},{"epoch":26117298,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":507.12,"free":3476.18},{"epoch":26117299,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":507.09,"free":3476.2},{"epoch":26117300,"idl":99.69,"recv":0,"send":0,"writ":0.35,"used":506.6,"free":3476.71},{"epoch":26117301,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":506.64,"free":3476.67},{"epoch":26117302,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.06,"free":3477.25},{"epoch":26117303,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.04,"free":3477.26},{"epoch":26117304,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.13,"free":3477.16},{"epoch":26117305,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":507.24,"free":3476.07},{"epoch":26117306,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":507.5,"free":3475.81},{"epoch":26117307,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":507.02,"free":3476.29},{"epoch":26117308,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.62,"free":3476.68},{"epoch":26117309,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.59,"free":3476.7},{"epoch":26117310,"idl":99.66,"recv":0,"send":0,"writ":0.43,"used":507.07,"free":3476.24},{"epoch":26117311,"idl":99.72,"recv":0,"send":0,"writ":0.6,"used":507.24,"free":3476.06},{"epoch":26117312,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.78,"free":3476.51},{"epoch":26117313,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.77,"free":3476.52},{"epoch":26117314,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":506.85,"free":3476.43},{"epoch":26117315,"idl":99.6,"recv":0,"send":0,"writ":0.31,"used":505.52,"free":3477.79},{"epoch":26117316,"idl":99.66,"recv":0,"send":0,"writ":0.52,"used":506.73,"free":3476.58},{"epoch":26117317,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":507.14,"free":3476.16},{"epoch":26117318,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":507.11,"free":3476.18},{"epoch":26117319,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":507.09,"free":3476.18},{"epoch":26117320,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":507.09,"free":3476.2},{"epoch":26117321,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":507.91,"free":3475.37},{"epoch":26117322,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.29,"free":3475.98},{"epoch":26117323,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.27,"free":3476},{"epoch":26117324,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.25,"free":3476.01},{"epoch":26117325,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":507.05,"free":3476.24},{"epoch":26117326,"idl":99.74,"recv":0,"send":0,"writ":0.42,"used":507.71,"free":3475.57},{"epoch":26117327,"idl":99.83,"recv":0,"send":0,"writ":0.35,"used":507.14,"free":3476.13},{"epoch":26117328,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.13,"free":3476.14},{"epoch":26117329,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.09,"free":3476.17},{"epoch":26117330,"idl":99.75,"recv":0,"send":0,"writ":0.37,"used":506.85,"free":3476.43},{"epoch":26117331,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":507.18,"free":3476.1},{"epoch":26117332,"idl":99.88,"recv":0,"send":0,"writ":0.4,"used":507.04,"free":3476.23},{"epoch":26117333,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.02,"free":3476.25},{"epoch":26117334,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507,"free":3476.26},{"epoch":26117335,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":507.24,"free":3476.04},{"epoch":26117336,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":507.7,"free":3475.57},{"epoch":26117337,"idl":99.93,"recv":0,"send":0,"writ":0.38,"used":507.14,"free":3476.12},{"epoch":26117338,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":507.13,"free":3476.13},{"epoch":26117339,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.1,"free":3476.16},{"epoch":26117340,"idl":99.63,"recv":0,"send":0,"writ":0.33,"used":507.35,"free":3475.92},{"epoch":26117341,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.33,"free":3475.94},{"epoch":26117342,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":507.46,"free":3475.8},{"epoch":26117343,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.04,"free":3476.22},{"epoch":26117344,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":507.03,"free":3476.23},{"epoch":26117345,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":507.08,"free":3476.2},{"epoch":26117346,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.01,"free":3476.26},{"epoch":26117347,"idl":99.74,"recv":0,"send":0,"writ":0.63,"used":507.61,"free":3475.65},{"epoch":26117348,"idl":99.85,"recv":0,"send":0.02,"writ":0.17,"used":507.25,"free":3476},{"epoch":26117349,"idl":99.6,"recv":0,"send":0,"writ":0.33,"used":507.34,"free":3475.89},{"epoch":26117350,"idl":99.66,"recv":0,"send":0,"writ":0.33,"used":507.35,"free":3475.89},{"epoch":26117351,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.32,"free":3475.92},{"epoch":26117352,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":507.66,"free":3475.57},{"epoch":26117353,"idl":99.87,"recv":0.01,"send":0.25,"writ":0.17,"used":507.27,"free":3475.96},{"epoch":26117354,"idl":99.84,"recv":0.08,"send":16.26,"writ":0.31,"used":507.36,"free":3475.86},{"epoch":26117355,"idl":99.66,"recv":0.02,"send":3.85,"writ":0.76,"used":506.56,"free":3476.64},{"epoch":26117356,"idl":99.81,"recv":0.08,"send":17.1,"writ":0.25,"used":506.73,"free":3476.46},{"epoch":26117357,"idl":99.66,"recv":0.04,"send":17.51,"writ":0.63,"used":506.93,"free":3476.26},{"epoch":26117358,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.72,"free":3476.47},{"epoch":26117359,"idl":99.86,"recv":0,"send":0.12,"writ":0.19,"used":506.84,"free":3476.35},{"epoch":26117360,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":507.34,"free":3475.87},{"epoch":26117361,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.33,"free":3475.88},{"epoch":26117362,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":507.58,"free":3475.63},{"epoch":26117363,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.04,"free":3476.16},{"epoch":26117364,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":507.01,"free":3476.19},{"epoch":26117365,"idl":99.77,"recv":0,"send":0,"writ":0.35,"used":507.02,"free":3476.19},{"epoch":26117366,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":506.99,"free":3476.22},{"epoch":26117367,"idl":99.69,"recv":0,"send":0,"writ":0.44,"used":507.76,"free":3475.45},{"epoch":26117368,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":507.69,"free":3475.51},{"epoch":26117369,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.68,"free":3475.52},{"epoch":26117370,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":507.39,"free":3475.83},{"epoch":26117371,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.35,"free":3475.87},{"epoch":26117372,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":507.37,"free":3475.84},{"epoch":26117373,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":507.65,"free":3475.55},{"epoch":26117374,"idl":99.8,"recv":0.01,"send":0.94,"writ":0.31,"used":507.25,"free":3475.95},{"epoch":26117375,"idl":99.72,"recv":0,"send":0.38,"writ":0.4,"used":507.56,"free":3475.65},{"epoch":26117376,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.54,"free":3475.66},{"epoch":26117377,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":507.53,"free":3475.67},{"epoch":26117378,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":507.85,"free":3475.35},{"epoch":26117379,"idl":99.52,"recv":0,"send":0,"writ":0.3,"used":507.27,"free":3475.91},{"epoch":26117380,"idl":99.69,"recv":0.01,"send":0.12,"writ":0.32,"used":507.46,"free":3475.73},{"epoch":26117381,"idl":99.88,"recv":0,"send":0,"writ":0.24,"used":507.58,"free":3475.6},{"epoch":26117382,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":507.56,"free":3475.61},{"epoch":26117383,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":506.6,"free":3476.57},{"epoch":26117384,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":505.54,"free":3477.64},{"epoch":26117385,"idl":99.58,"recv":0,"send":0,"writ":0.38,"used":506.98,"free":3476.22},{"epoch":26117386,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.99,"free":3476.21},{"epoch":26117387,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":506.98,"free":3476.21},{"epoch":26117388,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":507.39,"free":3475.79},{"epoch":26117389,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.45,"free":3476.73},{"epoch":26117390,"idl":99.67,"recv":0,"send":0,"writ":0.37,"used":505.96,"free":3477.23},{"epoch":26117391,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":505.94,"free":3477.26},{"epoch":26117392,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.08,"free":3477.11},{"epoch":26117393,"idl":99.66,"recv":0,"send":0,"writ":0.43,"used":506.89,"free":3476.29},{"epoch":26117394,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":507.52,"free":3475.66},{"epoch":26117395,"idl":99.74,"recv":0,"send":0,"writ":0.35,"used":507.51,"free":3475.69},{"epoch":26117396,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":507.5,"free":3475.7},{"epoch":26117397,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.47,"free":3475.72},{"epoch":26117398,"idl":99.69,"recv":0,"send":0,"writ":0.42,"used":507.58,"free":3475.61},{"epoch":26117399,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":506.69,"free":3476.49},{"epoch":26117400,"idl":99.65,"recv":0,"send":0,"writ":0.31,"used":506.93,"free":3476.28},{"epoch":26117401,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.93,"free":3476.28},{"epoch":26117402,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":507.1,"free":3476.1},{"epoch":26117403,"idl":99.58,"recv":0,"send":0,"writ":0.6,"used":507.52,"free":3475.68},{"epoch":26117404,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":507.56,"free":3475.64},{"epoch":26117405,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":507.56,"free":3475.65},{"epoch":26117406,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":507.54,"free":3475.67},{"epoch":26117407,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.51,"free":3475.69},{"epoch":26117408,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.5,"free":3475.7},{"epoch":26117409,"idl":99.41,"recv":0,"send":0,"writ":0.72,"used":507.23,"free":3475.95},{"epoch":26117410,"idl":99.81,"recv":0,"send":0,"writ":0.35,"used":507.69,"free":3475.5},{"epoch":26117411,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":507.68,"free":3475.51},{"epoch":26117412,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.71,"free":3475.48},{"epoch":26117413,"idl":99.68,"recv":0,"send":0,"writ":0.2,"used":507.83,"free":3475.36},{"epoch":26117414,"idl":99.66,"recv":0,"send":0,"writ":0.58,"used":508.12,"free":3475.05},{"epoch":26117415,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":507.57,"free":3475.63},{"epoch":26117416,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.55,"free":3475.64},{"epoch":26117417,"idl":99.47,"recv":0,"send":0,"writ":0.21,"used":507.52,"free":3475.66},{"epoch":26117418,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.51,"free":3475.67},{"epoch":26117419,"idl":99.74,"recv":0,"send":0,"writ":0.64,"used":507.83,"free":3475.34},{"epoch":26117420,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":507.73,"free":3475.46},{"epoch":26117421,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.71,"free":3475.48},{"epoch":26117422,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.68,"free":3475.5},{"epoch":26117423,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.66,"free":3475.51},{"epoch":26117424,"idl":99.72,"recv":0,"send":0,"writ":0.61,"used":508.15,"free":3475.02},{"epoch":26117425,"idl":99.73,"recv":0,"send":0,"writ":0.38,"used":507.36,"free":3475.83},{"epoch":26117426,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.3,"free":3475.88},{"epoch":26117427,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":507.23,"free":3475.95},{"epoch":26117428,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.77,"free":3476.4},{"epoch":26117429,"idl":99.77,"recv":0,"send":0,"writ":0.61,"used":507.82,"free":3475.35},{"epoch":26117430,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":507.97,"free":3475.21},{"epoch":26117431,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.96,"free":3475.22},{"epoch":26117432,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.1,"free":3476.07},{"epoch":26117433,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.94,"free":3476.23},{"epoch":26117434,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":507.31,"free":3475.86},{"epoch":26117435,"idl":99.78,"recv":0,"send":0,"writ":0.39,"used":506.56,"free":3476.62},{"epoch":26117436,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.57,"free":3476.61},{"epoch":26117437,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.55,"free":3476.62},{"epoch":26117438,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.52,"free":3476.65},{"epoch":26117439,"idl":99.65,"recv":0,"send":0,"writ":0.65,"used":507.36,"free":3475.78},{"epoch":26117440,"idl":99.79,"recv":0,"send":0,"writ":0.39,"used":506.75,"free":3476.4},{"epoch":26117441,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.73,"free":3476.42},{"epoch":26117442,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.71,"free":3476.43},{"epoch":26117443,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.69,"free":3476.45},{"epoch":26117444,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":507.04,"free":3476.09},{"epoch":26117445,"idl":99.83,"recv":0,"send":0,"writ":0.5,"used":506.28,"free":3476.87},{"epoch":26117446,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.34,"free":3476.81},{"epoch":26117447,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.31,"free":3476.83},{"epoch":26117448,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.3,"free":3476.84},{"epoch":26117449,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.27,"free":3476.86},{"epoch":26117450,"idl":99.48,"recv":0,"send":0,"writ":0.71,"used":507.77,"free":3475.38},{"epoch":26117451,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":507.23,"free":3475.91},{"epoch":26117452,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.23,"free":3475.93},{"epoch":26117453,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.2,"free":3475.96},{"epoch":26117454,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.17,"free":3475.97},{"epoch":26117455,"idl":99.65,"recv":0,"send":0,"writ":0.74,"used":507.3,"free":3475.86},{"epoch":26117456,"idl":99.88,"recv":0,"send":0.02,"writ":0.19,"used":507.01,"free":3476.15},{"epoch":26117457,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.03,"free":3476.13},{"epoch":26117458,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":507.01,"free":3476.14},{"epoch":26117459,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.99,"free":3476.16},{"epoch":26117460,"idl":99.48,"recv":0,"send":0,"writ":0.74,"used":507.6,"free":3475.56},{"epoch":26117461,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":507.17,"free":3475.99},{"epoch":26117462,"idl":99.89,"recv":0.01,"send":0.11,"writ":0.19,"used":506.95,"free":3476.21},{"epoch":26117463,"idl":99.88,"recv":0,"send":0.21,"writ":0.29,"used":507.04,"free":3476.11},{"epoch":26117464,"idl":99.88,"recv":0,"send":0.64,"writ":0.3,"used":506.94,"free":3476.2},{"epoch":26117465,"idl":99.57,"recv":0,"send":0,"writ":0.73,"used":507.43,"free":3475.73},{"epoch":26117466,"idl":99.84,"recv":0.04,"send":1.78,"writ":0.25,"used":506.95,"free":3476.19},{"epoch":26117467,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":506.9,"free":3476.24},{"epoch":26117468,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.88,"free":3476.27},{"epoch":26117469,"idl":99.55,"recv":0,"send":0,"writ":0.29,"used":507.12,"free":3476},{"epoch":26117470,"idl":99.51,"recv":0,"send":0,"writ":0.73,"used":507.37,"free":3475.76},{"epoch":26117471,"idl":98.51,"recv":0,"send":0,"writ":0.15,"used":507.02,"free":3476.12},{"epoch":26117472,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":506.99,"free":3476.14},{"epoch":26117473,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.96,"free":3476.17},{"epoch":26117474,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.94,"free":3476.19},{"epoch":26117475,"idl":99.65,"recv":0,"send":0,"writ":0.75,"used":507.54,"free":3475.62},{"epoch":26117476,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.17,"free":3475.98},{"epoch":26117477,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":507.15,"free":3476},{"epoch":26117478,"idl":98.92,"recv":0,"send":0,"writ":0.14,"used":507.12,"free":3476.03},{"epoch":26117479,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.16,"free":3475.98},{"epoch":26117480,"idl":99.69,"recv":0,"send":0,"writ":0.74,"used":507.43,"free":3475.73},{"epoch":26117481,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.06,"free":3476.09},{"epoch":26117482,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.03,"free":3476.12},{"epoch":26117483,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.02,"free":3476.13},{"epoch":26117484,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.99,"free":3476.15},{"epoch":26117485,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":506.62,"free":3476.53},{"epoch":26117486,"idl":99.91,"recv":0,"send":0,"writ":0.34,"used":506.47,"free":3476.68},{"epoch":26117487,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.43,"free":3476.72},{"epoch":26117488,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":506.19,"free":3476.96},{"epoch":26117489,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":506.16,"free":3476.98},{"epoch":26117490,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":507.13,"free":3476.02},{"epoch":26117491,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":507.81,"free":3475.33},{"epoch":26117492,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.29,"free":3475.85},{"epoch":26117493,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.27,"free":3475.87},{"epoch":26117494,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":507.25,"free":3475.89},{"epoch":26117495,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":506.28,"free":3476.87},{"epoch":26117496,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":506.6,"free":3476.55},{"epoch":26117497,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.22,"free":3476.93},{"epoch":26117498,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.21,"free":3476.93},{"epoch":26117499,"idl":99.67,"recv":0.04,"send":2.01,"writ":0.4,"used":506.84,"free":3476.26},{"epoch":26117500,"idl":99.69,"recv":0.01,"send":0.64,"writ":0.43,"used":506.77,"free":3476.34},{"epoch":26117501,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":507.01,"free":3476.1},{"epoch":26117502,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.63,"free":3476.47},{"epoch":26117503,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":506.61,"free":3476.49},{"epoch":26117504,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":506.59,"free":3476.52},{"epoch":26117505,"idl":99.71,"recv":0,"send":0,"writ":0.35,"used":505.81,"free":3477.31},{"epoch":26117506,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":506.89,"free":3476.23},{"epoch":26117507,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.48,"free":3476.64},{"epoch":26117508,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.46,"free":3476.65},{"epoch":26117509,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":506.43,"free":3476.67},{"epoch":26117510,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":506.69,"free":3476.43},{"epoch":26117511,"idl":95.04,"recv":0.33,"send":0.01,"writ":79.32,"used":519.5,"free":3464.36},{"epoch":26117512,"idl":99.8,"recv":0,"send":0,"writ":181.87,"used":508.99,"free":3473.98},{"epoch":26117513,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":508.98,"free":3473.99},{"epoch":26117514,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":508.95,"free":3474.02},{"epoch":26117515,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":508.94,"free":3474.04},{"epoch":26117516,"idl":99.72,"recv":0,"send":0,"writ":0.65,"used":508.85,"free":3474.13},{"epoch":26117517,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":506.68,"free":3476.34},{"epoch":26117518,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.67,"free":3476.34},{"epoch":26117519,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.64,"free":3476.36},{"epoch":26117520,"idl":99.55,"recv":0,"send":0,"writ":0.39,"used":506.89,"free":3476.13},{"epoch":26117521,"idl":99.66,"recv":0,"send":0,"writ":0.58,"used":507.1,"free":3475.92},{"epoch":26117522,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":506.35,"free":3476.67},{"epoch":26117523,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":506.33,"free":3476.68},{"epoch":26117524,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.31,"free":3476.7},{"epoch":26117525,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":507.05,"free":3475.99},{"epoch":26117526,"idl":99.68,"recv":0,"send":0.01,"writ":0.33,"used":507.82,"free":3475.22},{"epoch":26117527,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":506.42,"free":3476.61},{"epoch":26117528,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.39,"free":3476.63},{"epoch":26117529,"idl":99.36,"recv":0,"send":0,"writ":0.3,"used":506.88,"free":3476.12},{"epoch":26117530,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":506.85,"free":3476.17},{"epoch":26117531,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.82,"free":3476.2},{"epoch":26117532,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":507.15,"free":3475.86},{"epoch":26117533,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.78,"free":3476.23},{"epoch":26117534,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.74,"free":3476.26},{"epoch":26117535,"idl":99.69,"recv":0,"send":0,"writ":0.36,"used":506.9,"free":3476.12},{"epoch":26117536,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":506.91,"free":3476.1},{"epoch":26117537,"idl":99.67,"recv":0,"send":0,"writ":0.63,"used":507.31,"free":3475.7},{"epoch":26117538,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.87,"free":3476.13},{"epoch":26117539,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":506.84,"free":3476.16},{"epoch":26117540,"idl":99.65,"recv":0,"send":0,"writ":0.32,"used":505.95,"free":3477.07},{"epoch":26117541,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":505.85,"free":3477.17},{"epoch":26117542,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":506.88,"free":3476.14},{"epoch":26117543,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.79,"free":3476.22},{"epoch":26117544,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.77,"free":3476.23},{"epoch":26117545,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":505.82,"free":3477.2},{"epoch":26117546,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.87,"free":3477.15},{"epoch":26117547,"idl":99.64,"recv":0,"send":0,"writ":0.56,"used":507.31,"free":3475.7},{"epoch":26117548,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.67,"free":3476.34},{"epoch":26117549,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.65,"free":3476.35},{"epoch":26117550,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":506.4,"free":3476.62},{"epoch":26117551,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":506.37,"free":3476.64},{"epoch":26117552,"idl":99.65,"recv":0,"send":0,"writ":0.59,"used":506.83,"free":3476.18},{"epoch":26117553,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":506.56,"free":3476.46},{"epoch":26117554,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.53,"free":3476.48},{"epoch":26117555,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":506.78,"free":3476.26},{"epoch":26117556,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":506.89,"free":3476.14},{"epoch":26117557,"idl":99.64,"recv":0,"send":0,"writ":0.57,"used":507.35,"free":3475.67},{"epoch":26117558,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":507.13,"free":3475.89},{"epoch":26117559,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":506.87,"free":3476.13},{"epoch":26117560,"idl":99.73,"recv":0,"send":0,"writ":0.36,"used":507.12,"free":3475.89},{"epoch":26117561,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":507.09,"free":3475.92},{"epoch":26117562,"idl":99.54,"recv":0,"send":0,"writ":0.59,"used":507.82,"free":3475.19},{"epoch":26117563,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":507.29,"free":3475.7},{"epoch":26117564,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.29,"free":3475.7},{"epoch":26117565,"idl":99.72,"recv":0,"send":0,"writ":0.39,"used":507.03,"free":3475.98},{"epoch":26117566,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.02,"free":3475.98},{"epoch":26117567,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":507.26,"free":3475.75},{"epoch":26117568,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":507.28,"free":3475.74},{"epoch":26117569,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.89,"free":3476.12},{"epoch":26117570,"idl":99.71,"recv":0,"send":0,"writ":0.36,"used":506.9,"free":3476.12},{"epoch":26117571,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":506.87,"free":3476.15},{"epoch":26117572,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.85,"free":3476.17},{"epoch":26117573,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":507.39,"free":3475.62},{"epoch":26117574,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":507.04,"free":3475.96},{"epoch":26117575,"idl":99.7,"recv":0,"send":0,"writ":0.38,"used":506.79,"free":3476.23},{"epoch":26117576,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.77,"free":3476.25},{"epoch":26117577,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.88,"free":3476.13},{"epoch":26117578,"idl":99.64,"recv":0,"send":0,"writ":0.59,"used":507.46,"free":3475.55},{"epoch":26117579,"idl":99.72,"recv":0,"send":0,"writ":0.19,"used":506.89,"free":3476.12},{"epoch":26117580,"idl":98.63,"recv":0,"send":0,"writ":9.07,"used":507,"free":3476.8},{"epoch":26117581,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":506.83,"free":3477.01},{"epoch":26117582,"idl":99.8,"recv":0,"send":0.01,"writ":0.16,"used":506.79,"free":3477.05},{"epoch":26117583,"idl":99.62,"recv":0,"send":0,"writ":0.57,"used":507.75,"free":3476.08},{"epoch":26117584,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.07,"free":3476.76},{"epoch":26117585,"idl":99.56,"recv":0,"send":0,"writ":0.37,"used":506.69,"free":3477.17},{"epoch":26117586,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":505.7,"free":3478.16},{"epoch":26117587,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.38,"free":3478.48},{"epoch":26117588,"idl":99.66,"recv":0,"send":0,"writ":0.41,"used":506.19,"free":3477.66},{"epoch":26117589,"idl":99.72,"recv":0,"send":0,"writ":0.43,"used":505.82,"free":3478.02},{"epoch":26117590,"idl":99.71,"recv":0,"send":0,"writ":0.36,"used":506.54,"free":3477.32},{"epoch":26117591,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":506.51,"free":3477.34},{"epoch":26117592,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":506.5,"free":3477.35},{"epoch":26117593,"idl":99.7,"recv":0,"send":0.02,"writ":0.59,"used":506.84,"free":3477.01},{"epoch":26117594,"idl":99.8,"recv":0,"send":0,"writ":0.23,"used":506.34,"free":3477.49},{"epoch":26117595,"idl":99.68,"recv":0,"send":0,"writ":0.37,"used":506.58,"free":3477.27},{"epoch":26117596,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.55,"free":3477.3},{"epoch":26117597,"idl":99.79,"recv":0,"send":0,"writ":0.24,"used":506.05,"free":3477.79},{"epoch":26117598,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":506.27,"free":3477.56},{"epoch":26117599,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":505.73,"free":3478.1},{"epoch":26117600,"idl":99.73,"recv":0,"send":0,"writ":0.36,"used":506.33,"free":3477.52},{"epoch":26117601,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":506.39,"free":3477.46},{"epoch":26117602,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.35,"free":3477.49},{"epoch":26117603,"idl":99.65,"recv":0,"send":0,"writ":0.62,"used":506.9,"free":3476.95},{"epoch":26117604,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":505.33,"free":3478.51},{"epoch":26117605,"idl":99.71,"recv":0,"send":0,"writ":0.37,"used":505.33,"free":3478.53},{"epoch":26117606,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":505.31,"free":3478.55},{"epoch":26117607,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":505.28,"free":3478.57},{"epoch":26117608,"idl":99.74,"recv":0,"send":0,"writ":0.2,"used":505.81,"free":3478.04},{"epoch":26117609,"idl":99.66,"recv":0,"send":0,"writ":0.57,"used":506.18,"free":3477.66},{"epoch":26117610,"idl":99.67,"recv":0,"send":0,"writ":0.35,"used":506.66,"free":3477.19},{"epoch":26117611,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":506.64,"free":3477.21},{"epoch":26117612,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":506.63,"free":3477.21},{"epoch":26117613,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.6,"free":3477.24},{"epoch":26117614,"idl":99.59,"recv":0,"send":0,"writ":0.58,"used":506.94,"free":3476.9},{"epoch":26117615,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":506.34,"free":3477.51},{"epoch":26117616,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.33,"free":3477.52},{"epoch":26117617,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.29,"free":3477.55},{"epoch":26117618,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.28,"free":3477.56},{"epoch":26117619,"idl":99.45,"recv":0,"send":0,"writ":0.79,"used":506.88,"free":3476.94},{"epoch":26117620,"idl":99.63,"recv":0,"send":0,"writ":0.33,"used":506.34,"free":3477.49},{"epoch":26117621,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":506.42,"free":3477.41},{"epoch":26117622,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":506.4,"free":3477.43},{"epoch":26117623,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.38,"free":3477.44},{"epoch":26117624,"idl":99.62,"recv":0,"send":0,"writ":0.61,"used":506.81,"free":3477.02},{"epoch":26117625,"idl":99.58,"recv":0,"send":0,"writ":0.32,"used":506.82,"free":3477.03},{"epoch":26117626,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.82,"free":3477.03},{"epoch":26117627,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":506.79,"free":3477.05},{"epoch":26117628,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":506.76,"free":3477.07},{"epoch":26117629,"idl":99.68,"recv":0,"send":0,"writ":0.51,"used":506.24,"free":3477.59},{"epoch":26117630,"idl":99.67,"recv":0,"send":0,"writ":0.36,"used":506.27,"free":3477.58},{"epoch":26117631,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.42,"free":3477.42},{"epoch":26117632,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.4,"free":3477.44},{"epoch":26117633,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":506.38,"free":3477.45},{"epoch":26117634,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":506.58,"free":3477.25},{"epoch":26117635,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":506.85,"free":3477},{"epoch":26117636,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":506.82,"free":3477.02},{"epoch":26117637,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.82,"free":3477.02},{"epoch":26117638,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.79,"free":3477.05},{"epoch":26117639,"idl":99.69,"recv":0,"send":0,"writ":0.58,"used":507.3,"free":3476.55},{"epoch":26117640,"idl":99.65,"recv":0,"send":0,"writ":0.41,"used":506.54,"free":3477.33},{"epoch":26117641,"idl":99.74,"recv":0,"send":0,"writ":0.17,"used":506.52,"free":3477.35},{"epoch":26117642,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":506.49,"free":3477.37},{"epoch":26117643,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":506.59,"free":3477.27},{"epoch":26117644,"idl":99.6,"recv":0,"send":0,"writ":0.45,"used":506.98,"free":3476.87},{"epoch":26117645,"idl":99.61,"recv":0,"send":0,"writ":0.47,"used":506.9,"free":3476.97},{"epoch":26117646,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":506.89,"free":3476.98},{"epoch":26117647,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":506.88,"free":3476.98},{"epoch":26117648,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":506.86,"free":3477},{"epoch":26117649,"idl":99.6,"recv":0,"send":0,"writ":0.56,"used":507.17,"free":3476.66},{"epoch":26117650,"idl":99.72,"recv":0,"send":0,"writ":0.39,"used":506.59,"free":3477.26},{"epoch":26117651,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":506.57,"free":3477.28},{"epoch":26117652,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":506.56,"free":3477.28},{"epoch":26117653,"idl":98.9,"recv":0,"send":0,"writ":0.18,"used":506.56,"free":3477.28},{"epoch":26117654,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":506.54,"free":3477.3},{"epoch":26117655,"idl":99.47,"recv":0,"send":0,"writ":0.72,"used":506.59,"free":3477.26},{"epoch":26117656,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":505.8,"free":3478.05},{"epoch":26117657,"idl":99.75,"recv":0,"send":0,"writ":0.25,"used":505.77,"free":3478.07},{"epoch":26117658,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":505.76,"free":3478.08},{"epoch":26117659,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":505.75,"free":3478.08},{"epoch":26117660,"idl":99.6,"recv":0,"send":0,"writ":0.66,"used":507.17,"free":3476.68},{"epoch":26117661,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":506.84,"free":3477.01},{"epoch":26117662,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.9,"free":3476.94},{"epoch":26117663,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":506.87,"free":3476.97},{"epoch":26117664,"idl":92.8,"recv":0.99,"send":0.02,"writ":65.73,"used":516.31,"free":3467.1},{"epoch":26117665,"idl":99.01,"recv":0,"send":0,"writ":196.59,"used":508.32,"free":3474.43},{"epoch":26117666,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":507.76,"free":3474.99},{"epoch":26117667,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.9,"free":3474.84},{"epoch":26117668,"idl":99.77,"recv":0,"send":0,"writ":0.21,"used":507.9,"free":3474.84},{"epoch":26117669,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":507.63,"free":3475.1},{"epoch":26117670,"idl":99.49,"recv":0,"send":0,"writ":0.68,"used":506.82,"free":3475.96},{"epoch":26117671,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":505.94,"free":3476.84},{"epoch":26117672,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":505.93,"free":3476.85},{"epoch":26117673,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.92,"free":3476.85},{"epoch":26117674,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":505.89,"free":3476.88},{"epoch":26117675,"idl":99.53,"recv":0,"send":0,"writ":0.74,"used":506.44,"free":3476.4},{"epoch":26117676,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":505.89,"free":3476.95},{"epoch":26117677,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":505.88,"free":3476.96},{"epoch":26117678,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":505.87,"free":3476.96},{"epoch":26117679,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":506.59,"free":3476.22},{"epoch":26117680,"idl":99.48,"recv":0,"send":0,"writ":0.7,"used":507.17,"free":3475.67},{"epoch":26117681,"idl":99.76,"recv":0,"send":0,"writ":0.23,"used":505.83,"free":3477.01},{"epoch":26117682,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":505.81,"free":3477.02},{"epoch":26117683,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":505.95,"free":3476.88},{"epoch":26117684,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":505.99,"free":3476.84},{"epoch":26117685,"idl":99.55,"recv":0,"send":0,"writ":0.66,"used":507.07,"free":3475.78},{"epoch":26117686,"idl":99.76,"recv":0,"send":0,"writ":0.19,"used":506.71,"free":3476.13},{"epoch":26117687,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":506.69,"free":3476.15},{"epoch":26117688,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":506.67,"free":3476.16},{"epoch":26117689,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":506.67,"free":3476.16},{"epoch":26117690,"idl":99.57,"recv":0,"send":0,"writ":0.46,"used":507.27,"free":3475.58},{"epoch":26117691,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":506.9,"free":3475.95},{"epoch":26117692,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":506.89,"free":3475.95},{"epoch":26117693,"idl":99.82,"recv":0,"send":0.02,"writ":0.16,"used":506.84,"free":3476},{"epoch":26117694,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":506.82,"free":3476.01},{"epoch":26117695,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":507.17,"free":3475.67},{"epoch":26117696,"idl":99.67,"recv":0.01,"send":0.02,"writ":0.59,"used":507.62,"free":3475.22},{"epoch":26117697,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.93,"free":3475.91},{"epoch":26117698,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.92,"free":3475.91},{"epoch":26117699,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.9,"free":3475.93},{"epoch":26117700,"idl":99.52,"recv":0,"send":0,"writ":0.29,"used":506.9,"free":3475.96},{"epoch":26117701,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":507.08,"free":3475.77},{"epoch":26117702,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.61,"free":3476.23},{"epoch":26117703,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.6,"free":3476.24},{"epoch":26117704,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.57,"free":3476.26},{"epoch":26117705,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":506.59,"free":3476.26},{"epoch":26117706,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":507.27,"free":3475.58},{"epoch":26117707,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.03,"free":3475.81},{"epoch":26117708,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.11,"free":3475.73},{"epoch":26117709,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":507.2,"free":3475.61},{"epoch":26117710,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":506.72,"free":3476.11},{"epoch":26117711,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":507.33,"free":3475.5},{"epoch":26117712,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.18,"free":3475.65},{"epoch":26117713,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.16,"free":3475.66},{"epoch":26117714,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.16,"free":3475.66},{"epoch":26117715,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":507.14,"free":3475.69},{"epoch":26117716,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":507.67,"free":3475.17},{"epoch":26117717,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":506.88,"free":3475.95},{"epoch":26117718,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":506.85,"free":3475.97},{"epoch":26117719,"idl":99.77,"recv":0,"send":0.02,"writ":0.18,"used":506.83,"free":3475.99},{"epoch":26117720,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":506.57,"free":3476.26},{"epoch":26117721,"idl":99.61,"recv":0,"send":0,"writ":0.56,"used":506.95,"free":3475.88},{"epoch":26117722,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":506.92,"free":3475.9},{"epoch":26117723,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":506.98,"free":3475.84},{"epoch":26117724,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.97,"free":3475.84},{"epoch":26117725,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":506.73,"free":3476.1},{"epoch":26117726,"idl":99.75,"recv":0,"send":0,"writ":0.5,"used":507.12,"free":3475.71},{"epoch":26117727,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":506.94,"free":3475.88},{"epoch":26117728,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":506.7,"free":3476.12},{"epoch":26117729,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":506.57,"free":3476.25},{"epoch":26117730,"idl":99.73,"recv":0,"send":0,"writ":0.26,"used":507.14,"free":3475.72},{"epoch":26117731,"idl":99.78,"recv":0,"send":0,"writ":0.39,"used":507.88,"free":3474.97},{"epoch":26117732,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":507.13,"free":3475.71},{"epoch":26117733,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":507.11,"free":3475.73},{"epoch":26117734,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":507.09,"free":3475.75},{"epoch":26117735,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":507.11,"free":3475.74},{"epoch":26117736,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":507.08,"free":3475.77},{"epoch":26117737,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":507.37,"free":3475.46},{"epoch":26117738,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.81,"free":3476.02},{"epoch":26117739,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":506.82,"free":3475.99},{"epoch":26117740,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":507.05,"free":3475.77},{"epoch":26117741,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.47,"free":3476.35},{"epoch":26117742,"idl":99.53,"recv":0,"send":0,"writ":0.55,"used":506.29,"free":3476.53},{"epoch":26117743,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":505.69,"free":3477.12},{"epoch":26117744,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":505.66,"free":3477.16},{"epoch":26117745,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":506.14,"free":3476.69},{"epoch":26117746,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.16,"free":3476.68},{"epoch":26117747,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":506.49,"free":3476.34},{"epoch":26117748,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.11,"free":3476.71},{"epoch":26117749,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.11,"free":3476.71},{"epoch":26117750,"idl":99.78,"recv":0,"send":0,"writ":0.26,"used":506.34,"free":3476.5},{"epoch":26117751,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":506.34,"free":3476.49},{"epoch":26117752,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":506.88,"free":3475.95},{"epoch":26117753,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.06,"free":3476.77},{"epoch":26117754,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.06,"free":3476.77},{"epoch":26117755,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":506.34,"free":3476.5},{"epoch":26117756,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.47,"free":3476.37},{"epoch":26117757,"idl":99.74,"recv":0,"send":0,"writ":0.49,"used":506.73,"free":3476.1},{"epoch":26117758,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":506.19,"free":3476.64},{"epoch":26117759,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.18,"free":3476.64},{"epoch":26117760,"idl":99.65,"recv":0,"send":0,"writ":0.27,"used":506.42,"free":3476.42},{"epoch":26117761,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":506.41,"free":3476.43},{"epoch":26117762,"idl":99.61,"recv":0,"send":0,"writ":0.41,"used":506.77,"free":3476.07},{"epoch":26117763,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":506.38,"free":3476.45},{"epoch":26117764,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":505.16,"free":3477.71},{"epoch":26117765,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":503.63,"free":3479.34},{"epoch":26117766,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":503.6,"free":3479.36},{"epoch":26117767,"idl":99.75,"recv":0,"send":0,"writ":0.42,"used":503.9,"free":3479.06},{"epoch":26117768,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":503.31,"free":3479.64},{"epoch":26117769,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":503.3,"free":3479.63},{"epoch":26117770,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":499.42,"free":3483.67},{"epoch":26117771,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":499.44,"free":3483.66},{"epoch":26117772,"idl":99.62,"recv":0,"send":0,"writ":0.15,"used":499.45,"free":3483.64},{"epoch":26117773,"idl":99.51,"recv":0,"send":0,"writ":0.63,"used":501.12,"free":3481.97},{"epoch":26117774,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":500.4,"free":3482.68},{"epoch":26117775,"idl":99.44,"recv":0,"send":0,"writ":0.28,"used":499.93,"free":3483.18},{"epoch":26117776,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":499.91,"free":3483.2},{"epoch":26117777,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":499.89,"free":3483.22},{"epoch":26117778,"idl":99.62,"recv":0,"send":0,"writ":0.55,"used":500.82,"free":3482.28},{"epoch":26117779,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":500.58,"free":3482.52},{"epoch":26117780,"idl":97.85,"recv":0,"send":0,"writ":0.3,"used":500.63,"free":3482.49},{"epoch":26117781,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":500.56,"free":3482.55},{"epoch":26117782,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":500.55,"free":3482.56},{"epoch":26117783,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":500.9,"free":3482.2},{"epoch":26117784,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":500.51,"free":3482.58},{"epoch":26117785,"idl":99.68,"recv":0,"send":0,"writ":0.31,"used":499.19,"free":3483.92},{"epoch":26117786,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":499.22,"free":3483.89},{"epoch":26117787,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":499.19,"free":3483.91},{"epoch":26117788,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":500.1,"free":3483},{"epoch":26117789,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":500.14,"free":3482.95},{"epoch":26117790,"idl":99.79,"recv":0,"send":0,"writ":0.26,"used":500.64,"free":3482.47},{"epoch":26117791,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":500.64,"free":3482.46},{"epoch":26117792,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":500.62,"free":3482.49},{"epoch":26117793,"idl":99.66,"recv":0,"send":0,"writ":0.5,"used":501.09,"free":3482.01},{"epoch":26117794,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":500.58,"free":3482.51},{"epoch":26117795,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":500.34,"free":3482.77},{"epoch":26117796,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":500.33,"free":3482.78},{"epoch":26117797,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":500.31,"free":3482.81},{"epoch":26117798,"idl":99.78,"recv":0,"send":0,"writ":0.49,"used":500.72,"free":3482.39},{"epoch":26117799,"idl":99.64,"recv":0,"send":0,"writ":0.33,"used":500.54,"free":3482.56},{"epoch":26117800,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":500.54,"free":3482.58},{"epoch":26117801,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":500.55,"free":3482.56},{"epoch":26117802,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":500.69,"free":3482.42},{"epoch":26117803,"idl":99.66,"recv":0,"send":0,"writ":0.42,"used":501.02,"free":3482.08},{"epoch":26117804,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":500.66,"free":3482.46},{"epoch":26117805,"idl":99.7,"recv":0,"send":0,"writ":0.28,"used":500.67,"free":3482.47},{"epoch":26117806,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":500.65,"free":3482.49},{"epoch":26117807,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":500.64,"free":3482.49},{"epoch":26117808,"idl":99.75,"recv":0,"send":0,"writ":0.5,"used":500.98,"free":3482.15},{"epoch":26117809,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":500.6,"free":3482.52},{"epoch":26117810,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":501.11,"free":3482.02},{"epoch":26117811,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":501.11,"free":3482.03},{"epoch":26117812,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":501.08,"free":3482.05},{"epoch":26117813,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":501.07,"free":3482.06},{"epoch":26117814,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":501.09,"free":3482.04},{"epoch":26117815,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":500.36,"free":3482.78},{"epoch":26117816,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":500.31,"free":3482.82},{"epoch":26117817,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":500.3,"free":3482.83},{"epoch":26117818,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":500.3,"free":3482.83},{"epoch":26117819,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":500.43,"free":3482.69},{"epoch":26117820,"idl":99.52,"recv":0,"send":0,"writ":0.31,"used":500.79,"free":3482.34},{"epoch":26117821,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":500.87,"free":3482.26},{"epoch":26117822,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":500.93,"free":3482.2},{"epoch":26117823,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":500.92,"free":3482.21},{"epoch":26117824,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":501.44,"free":3481.68},{"epoch":26117825,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":499.72,"free":3483.42},{"epoch":26117826,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":499.66,"free":3483.47},{"epoch":26117827,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":499.65,"free":3483.48},{"epoch":26117828,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":499.62,"free":3483.5},{"epoch":26117829,"idl":99.49,"recv":0,"send":0,"writ":0.72,"used":501.07,"free":3482.02},{"epoch":26117830,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":500.59,"free":3482.52},{"epoch":26117831,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":500.57,"free":3482.54},{"epoch":26117832,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":500.56,"free":3482.54},{"epoch":26117833,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":500.53,"free":3482.57},{"epoch":26117834,"idl":99.75,"recv":0,"send":0,"writ":0.47,"used":501.07,"free":3482.02},{"epoch":26117835,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":500.27,"free":3482.84},{"epoch":26117836,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":500.38,"free":3482.72},{"epoch":26117837,"idl":99.89,"recv":0,"send":0,"writ":0.22,"used":500.2,"free":3482.9},{"epoch":26117838,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":500.19,"free":3482.91},{"epoch":26117839,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":500.73,"free":3482.37},{"epoch":26117840,"idl":99.77,"recv":0,"send":0,"writ":0.43,"used":500.91,"free":3482.2},{"epoch":26117841,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":500.9,"free":3482.2},{"epoch":26117842,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":500.88,"free":3482.22},{"epoch":26117843,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":500.86,"free":3482.23},{"epoch":26117844,"idl":99.77,"recv":0,"send":0,"writ":0.43,"used":501.27,"free":3481.82},{"epoch":26117845,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":500.86,"free":3482.25},{"epoch":26117846,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":500.83,"free":3482.28},{"epoch":26117847,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":500.8,"free":3482.3},{"epoch":26117848,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":500.8,"free":3482.29},{"epoch":26117849,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":501,"free":3482.09},{"epoch":26117850,"idl":99.69,"recv":0,"send":0,"writ":0.4,"used":499.79,"free":3483.32},{"epoch":26117851,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":499.79,"free":3483.31},{"epoch":26117852,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":499.89,"free":3483.21},{"epoch":26117853,"idl":99.88,"recv":0,"send":0.01,"writ":0.17,"used":499.92,"free":3483.18},{"epoch":26117854,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":499.9,"free":3483.19},{"epoch":26117855,"idl":99.63,"recv":0,"send":0,"writ":0.7,"used":500.16,"free":3482.94},{"epoch":26117856,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":499.63,"free":3483.46},{"epoch":26117857,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":499.61,"free":3483.48},{"epoch":26117858,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":499.59,"free":3483.5},{"epoch":26117859,"idl":99.7,"recv":0,"send":0,"writ":0.4,"used":501.1,"free":3481.97},{"epoch":26117860,"idl":99.38,"recv":0,"send":0.01,"writ":0.75,"used":500.27,"free":3482.8},{"epoch":26117861,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":499.78,"free":3483.29},{"epoch":26117862,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":499.78,"free":3483.29},{"epoch":26117863,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":499.86,"free":3483.21},{"epoch":26117864,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":499.93,"free":3483.13},{"epoch":26117865,"idl":99.49,"recv":0,"send":0,"writ":0.77,"used":501.19,"free":3481.88},{"epoch":26117866,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":500.66,"free":3482.41},{"epoch":26117867,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":500.63,"free":3482.43},{"epoch":26117868,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":500.63,"free":3482.43},{"epoch":26117869,"idl":99.85,"recv":0,"send":0.01,"writ":0.19,"used":500.6,"free":3482.46},{"epoch":26117870,"idl":99.61,"recv":0,"send":0,"writ":0.74,"used":501.52,"free":3481.55},{"epoch":26117871,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":501.08,"free":3482.02},{"epoch":26117872,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":501.05,"free":3482.05},{"epoch":26117873,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":501.04,"free":3482.06},{"epoch":26117874,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":501.02,"free":3482.08},{"epoch":26117875,"idl":95.88,"recv":0.04,"send":0.01,"writ":78.51,"used":511.93,"free":3472.65},{"epoch":26117876,"idl":99.84,"recv":0,"send":0,"writ":64.66,"used":503.38,"free":3479.81},{"epoch":26117877,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":503.37,"free":3479.82},{"epoch":26117878,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":503.34,"free":3479.84},{"epoch":26117879,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":503.33,"free":3479.85},{"epoch":26117880,"idl":99.54,"recv":0,"send":0,"writ":0.66,"used":503.39,"free":3479.81},{"epoch":26117881,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":501.16,"free":3482.08},{"epoch":26117882,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":501.13,"free":3482.11},{"epoch":26117883,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":501.24,"free":3482},{"epoch":26117884,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":501.28,"free":3481.95},{"epoch":26117885,"idl":99.57,"recv":0,"send":0.01,"writ":0.47,"used":500.51,"free":3482.74},{"epoch":26117886,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":501.25,"free":3482.01},{"epoch":26117887,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":501.23,"free":3482.03},{"epoch":26117888,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":501.21,"free":3482.04},{"epoch":26117889,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":501.23,"free":3482},{"epoch":26117890,"idl":99.58,"recv":0,"send":0,"writ":0.59,"used":501.53,"free":3481.72},{"epoch":26117891,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":500.91,"free":3482.34},{"epoch":26117892,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":500.9,"free":3482.34},{"epoch":26117893,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":500.32,"free":3482.92},{"epoch":26117894,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":499.97,"free":3483.27},{"epoch":26117895,"idl":98.12,"recv":0,"send":0,"writ":0.28,"used":500.53,"free":3482.72},{"epoch":26117896,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":499.31,"free":3483.93},{"epoch":26117897,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":498.54,"free":3484.7},{"epoch":26117898,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":498.52,"free":3484.71},{"epoch":26117899,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":498.5,"free":3484.73},{"epoch":26117900,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":498.99,"free":3484.27},{"epoch":26117901,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":500.64,"free":3482.61},{"epoch":26117902,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":500.45,"free":3482.79},{"epoch":26117903,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":500.44,"free":3482.8},{"epoch":26117904,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":500.43,"free":3482.8},{"epoch":26117905,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":499.7,"free":3483.55},{"epoch":26117906,"idl":99.64,"recv":0,"send":0,"writ":0.57,"used":500.3,"free":3482.94},{"epoch":26117907,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":500.16,"free":3483.08},{"epoch":26117908,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":499.78,"free":3483.46},{"epoch":26117909,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":499.63,"free":3483.61},{"epoch":26117910,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":500.24,"free":3483},{"epoch":26117911,"idl":99.57,"recv":0,"send":0,"writ":0.49,"used":500.77,"free":3482.47},{"epoch":26117912,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":500.53,"free":3482.71},{"epoch":26117913,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":500.5,"free":3482.73},{"epoch":26117914,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":500.49,"free":3482.74},{"epoch":26117915,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":500.51,"free":3482.74},{"epoch":26117916,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":501.14,"free":3482.1},{"epoch":26117917,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":500.22,"free":3483.02},{"epoch":26117918,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":500.21,"free":3483.02},{"epoch":26117919,"idl":99.6,"recv":0,"send":0,"writ":0.29,"used":500.46,"free":3482.75},{"epoch":26117920,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":500.26,"free":3482.97},{"epoch":26117921,"idl":99.69,"recv":0,"send":0,"writ":0.52,"used":500.89,"free":3482.34},{"epoch":26117922,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":500.41,"free":3482.81},{"epoch":26117923,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":500.4,"free":3482.82},{"epoch":26117924,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":500.37,"free":3482.84},{"epoch":26117925,"idl":99.66,"recv":0,"send":0,"writ":0.27,"used":499.43,"free":3483.79},{"epoch":26117926,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":500.03,"free":3483.19},{"epoch":26117927,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":500.32,"free":3482.9},{"epoch":26117928,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":500.31,"free":3482.9},{"epoch":26117929,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":500.3,"free":3482.92},{"epoch":26117930,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":500.54,"free":3482.69},{"epoch":26117931,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":500.54,"free":3482.69},{"epoch":26117932,"idl":99.74,"recv":0,"send":0,"writ":0.6,"used":500.01,"free":3483.2},{"epoch":26117933,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":499.51,"free":3483.7},{"epoch":26117934,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":499.5,"free":3483.7},{"epoch":26117935,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":499.74,"free":3483.49},{"epoch":26117936,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":499.73,"free":3483.49},{"epoch":26117937,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":500.94,"free":3482.28},{"epoch":26117938,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":500.69,"free":3482.53},{"epoch":26117939,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":500.67,"free":3482.54},{"epoch":26117940,"idl":99.55,"recv":0,"send":0,"writ":0.28,"used":499.45,"free":3483.77},{"epoch":26117941,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":499.42,"free":3483.8},{"epoch":26117942,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":499.77,"free":3483.45},{"epoch":26117943,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":499.47,"free":3483.74},{"epoch":26117944,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":499.57,"free":3483.64},{"epoch":26117945,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":500.55,"free":3482.67},{"epoch":26117946,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":500.54,"free":3482.68},{"epoch":26117947,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":500.88,"free":3482.33},{"epoch":26117948,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":500.49,"free":3482.72},{"epoch":26117949,"idl":99.59,"recv":0,"send":0,"writ":0.29,"used":499.77,"free":3483.41},{"epoch":26117950,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":500.7,"free":3482.5},{"epoch":26117951,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":500.7,"free":3482.5},{"epoch":26117952,"idl":99.64,"recv":0,"send":0,"writ":0.59,"used":501.22,"free":3481.97},{"epoch":26117953,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":500.42,"free":3482.77},{"epoch":26117954,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":500.41,"free":3482.77},{"epoch":26117955,"idl":96.71,"recv":0,"send":0,"writ":0.27,"used":500.74,"free":3482.46},{"epoch":26117956,"idl":98.58,"recv":0,"send":0,"writ":0.14,"used":500.64,"free":3482.56},{"epoch":26117957,"idl":99.76,"recv":0,"send":0,"writ":0.62,"used":501.12,"free":3482.07},{"epoch":26117958,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":500.52,"free":3482.67},{"epoch":26117959,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":500.5,"free":3482.68},{"epoch":26117960,"idl":99.7,"recv":0,"send":0,"writ":0.27,"used":500.5,"free":3482.7},{"epoch":26117961,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":500.48,"free":3482.71},{"epoch":26117962,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":500.84,"free":3482.35},{"epoch":26117963,"idl":99.81,"recv":0,"send":0,"writ":0.48,"used":500.7,"free":3482.48},{"epoch":26117964,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":500.67,"free":3482.51},{"epoch":26117965,"idl":98.53,"recv":0,"send":0,"writ":15.58,"used":501.49,"free":3482.42},{"epoch":26117966,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":499.94,"free":3483.51},{"epoch":26117967,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":500.3,"free":3483.14},{"epoch":26117968,"idl":99.85,"recv":0,"send":0,"writ":0.45,"used":500.32,"free":3483.12},{"epoch":26117969,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":500.14,"free":3483.3},{"epoch":26117970,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":499.43,"free":3484.02},{"epoch":26117971,"idl":99.9,"recv":0,"send":0,"writ":0.12,"used":499.4,"free":3484.05},{"epoch":26117972,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":499.38,"free":3484.07},{"epoch":26117973,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":501.06,"free":3482.38},{"epoch":26117974,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":500.78,"free":3482.66},{"epoch":26117975,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":500.82,"free":3482.63},{"epoch":26117976,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":500.77,"free":3482.68},{"epoch":26117977,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":500.75,"free":3482.7},{"epoch":26117978,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":501.08,"free":3482.36},{"epoch":26117979,"idl":87.16,"recv":0,"send":0,"writ":180.55,"used":524.78,"free":3453.78},{"epoch":26117980,"idl":93.89,"recv":0,"send":0,"writ":52.4,"used":515.02,"free":3488.61},{"epoch":26117981,"idl":99.85,"recv":0,"send":0,"writ":0.26,"used":503.16,"free":3513.36},{"epoch":26117982,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":503.15,"free":3513.36},{"epoch":26117983,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":503.33,"free":3513.19},{"epoch":26117984,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":502.88,"free":3513.64},{"epoch":26117985,"idl":99.72,"recv":0,"send":0,"writ":0.4,"used":500.67,"free":3515.93},{"epoch":26117986,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":500.19,"free":3516.41},{"epoch":26117987,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":500.19,"free":3516.41},{"epoch":26117988,"idl":99.66,"recv":0,"send":0,"writ":0.49,"used":500.87,"free":3515.72},{"epoch":26117989,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":500.15,"free":3516.44},{"epoch":26117990,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":499.94,"free":3516.67},{"epoch":26117991,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":500.08,"free":3516.52},{"epoch":26117992,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":500.07,"free":3516.53},{"epoch":26117993,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":500.76,"free":3515.83},{"epoch":26117994,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":500.77,"free":3515.82},{"epoch":26117995,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":500.05,"free":3516.55},{"epoch":26117996,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":500.02,"free":3516.57},{"epoch":26117997,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":500,"free":3516.59},{"epoch":26117998,"idl":99.74,"recv":0,"send":0,"writ":0.52,"used":500.43,"free":3516.16},{"epoch":26117999,"idl":99.76,"recv":0,"send":0,"writ":0.24,"used":500.47,"free":3516.12},{"epoch":26118000,"idl":99.62,"recv":0,"send":0,"writ":0.32,"used":500.23,"free":3516.37},{"epoch":26118001,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":500.22,"free":3516.38},{"epoch":26118002,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":500.21,"free":3516.38},{"epoch":26118003,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":500.57,"free":3516.02},{"epoch":26118004,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":500.42,"free":3516.16},{"epoch":26118005,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":499.94,"free":3516.66},{"epoch":26118006,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":499.91,"free":3516.68},{"epoch":26118007,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":499.91,"free":3516.68},{"epoch":26118008,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":500.04,"free":3516.55},{"epoch":26118009,"idl":99.28,"recv":0,"send":0,"writ":0.68,"used":500.97,"free":3515.62},{"epoch":26118010,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":500.8,"free":3515.8},{"epoch":26118011,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":500.58,"free":3516.04},{"epoch":26118012,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":500.56,"free":3516.05},{"epoch":26118013,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":500.56,"free":3516.05},{"epoch":26118014,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":501.44,"free":3515.17},{"epoch":26118015,"idl":99.65,"recv":0,"send":0,"writ":0.29,"used":500.55,"free":3516.07},{"epoch":26118016,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":500.51,"free":3516.11},{"epoch":26118017,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":500.27,"free":3516.35},{"epoch":26118018,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":500.22,"free":3516.39},{"epoch":26118019,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":500.67,"free":3515.94},{"epoch":26118020,"idl":99.66,"recv":0,"send":0,"writ":0.28,"used":500.44,"free":3516.18},{"epoch":26118021,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":500.44,"free":3516.18},{"epoch":26118022,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":500.58,"free":3516.03},{"epoch":26118023,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":500.57,"free":3516.04},{"epoch":26118024,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":501.02,"free":3515.59},{"epoch":26118025,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":500.82,"free":3515.8},{"epoch":26118026,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":500.8,"free":3515.82},{"epoch":26118027,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":500.78,"free":3515.84},{"epoch":26118028,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":500.62,"free":3515.99},{"epoch":26118029,"idl":99.68,"recv":0,"send":0,"writ":0.51,"used":500.98,"free":3515.63},{"epoch":26118030,"idl":99.69,"recv":0,"send":0,"writ":0.38,"used":500.52,"free":3516.11},{"epoch":26118031,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":500.51,"free":3516.11},{"epoch":26118032,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":500.48,"free":3516.14},{"epoch":26118033,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":500.47,"free":3516.14},{"epoch":26118034,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":500.87,"free":3515.74},{"epoch":26118035,"idl":99.61,"recv":0,"send":0,"writ":0.28,"used":500.21,"free":3516.41},{"epoch":26118036,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":500.2,"free":3516.42},{"epoch":26118037,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":500.28,"free":3516.34},{"epoch":26118038,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":500.35,"free":3516.27},{"epoch":26118039,"idl":99.48,"recv":0,"send":0,"writ":0.61,"used":501.48,"free":3515.11},{"epoch":26118040,"idl":99.58,"recv":0,"send":0,"writ":0.41,"used":500.12,"free":3516.49},{"epoch":26118041,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":500.08,"free":3516.52},{"epoch":26118042,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":500.06,"free":3516.54},{"epoch":26118043,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":500.04,"free":3516.55},{"epoch":26118044,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":500.04,"free":3516.55},{"epoch":26118045,"idl":99.25,"recv":0,"send":0,"writ":0.77,"used":500.86,"free":3515.74},{"epoch":26118046,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":500.51,"free":3516.09},{"epoch":26118047,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":500.51,"free":3516.09},{"epoch":26118048,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":499.75,"free":3516.85},{"epoch":26118049,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":499.73,"free":3516.86},{"epoch":26118050,"idl":99.53,"recv":0,"send":0,"writ":0.69,"used":500.34,"free":3516.27},{"epoch":26118051,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":499.97,"free":3516.64},{"epoch":26118052,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":499.95,"free":3516.65},{"epoch":26118053,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":500.03,"free":3516.57},{"epoch":26118054,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":500.11,"free":3516.49},{"epoch":26118055,"idl":99.66,"recv":0,"send":0,"writ":0.7,"used":500.47,"free":3516.14},{"epoch":26118056,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":499.84,"free":3516.77},{"epoch":26118057,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":499.82,"free":3516.78},{"epoch":26118058,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":499.8,"free":3516.8},{"epoch":26118059,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":499.8,"free":3516.8},{"epoch":26118060,"idl":99.48,"recv":0,"send":0,"writ":0.67,"used":500.2,"free":3516.4},{"epoch":26118061,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":499.52,"free":3517.07},{"epoch":26118062,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":499.52,"free":3517.07},{"epoch":26118063,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":499.49,"free":3517.1},{"epoch":26118064,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":499.48,"free":3517.11},{"epoch":26118065,"idl":99.54,"recv":0,"send":0,"writ":0.71,"used":500.32,"free":3516.28},{"epoch":26118066,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":499.95,"free":3516.64},{"epoch":26118067,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":499.94,"free":3516.64},{"epoch":26118068,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":499.95,"free":3516.63},{"epoch":26118069,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":500.33,"free":3516.23},{"epoch":26118070,"idl":99.41,"recv":0,"send":0,"writ":0.64,"used":500.68,"free":3515.89},{"epoch":26118071,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":500.3,"free":3516.27},{"epoch":26118072,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":500.28,"free":3516.28},{"epoch":26118073,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":500.26,"free":3516.3},{"epoch":26118074,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":500.24,"free":3516.33},{"epoch":26118075,"idl":99.48,"recv":0,"send":0,"writ":0.57,"used":500.58,"free":3516.01},{"epoch":26118076,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":499.5,"free":3517.08},{"epoch":26118077,"idl":99.83,"recv":0,"send":0,"writ":0.23,"used":499.47,"free":3517.11},{"epoch":26118078,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":499.46,"free":3517.11},{"epoch":26118079,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":499.44,"free":3517.12},{"epoch":26118080,"idl":99.58,"recv":0,"send":0,"writ":0.54,"used":500.84,"free":3515.74},{"epoch":26118081,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":499.92,"free":3516.65},{"epoch":26118082,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":499.89,"free":3516.68},{"epoch":26118083,"idl":99.7,"recv":0,"send":0,"writ":0.17,"used":500.02,"free":3516.54},{"epoch":26118084,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":500.01,"free":3516.55},{"epoch":26118085,"idl":99.59,"recv":0,"send":0,"writ":0.31,"used":498.09,"free":3518.49},{"epoch":26118086,"idl":99.61,"recv":0,"send":0,"writ":0.61,"used":499.95,"free":3516.62},{"epoch":26118087,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":499.71,"free":3516.86},{"epoch":26118088,"idl":99.73,"recv":0,"send":0,"writ":0.19,"used":499.55,"free":3517.01},{"epoch":26118089,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":499.44,"free":3517.12},{"epoch":26118090,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":499.43,"free":3517.14},{"epoch":26118091,"idl":99.59,"recv":0,"send":0,"writ":0.55,"used":500.23,"free":3516.34},{"epoch":26118092,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":499.9,"free":3516.67},{"epoch":26118093,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":499.88,"free":3516.68},{"epoch":26118094,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":499.99,"free":3516.56},{"epoch":26118095,"idl":99.6,"recv":0,"send":0,"writ":0.33,"used":500.29,"free":3516.29},{"epoch":26118096,"idl":99.57,"recv":0,"send":0,"writ":0.55,"used":500.68,"free":3515.89},{"epoch":26118097,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":500.02,"free":3516.55},{"epoch":26118098,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":500,"free":3516.56},{"epoch":26118099,"idl":99.48,"recv":0,"send":0,"writ":0.29,"used":499.98,"free":3516.56},{"epoch":26118100,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":500.22,"free":3516.33},{"epoch":26118101,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":500.77,"free":3515.78},{"epoch":26118102,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":500.23,"free":3516.32},{"epoch":26118103,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":500.21,"free":3516.33},{"epoch":26118104,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":500.21,"free":3516.33},{"epoch":26118105,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":500.2,"free":3516.35},{"epoch":26118106,"idl":99.68,"recv":0,"send":0,"writ":0.5,"used":500.55,"free":3516},{"epoch":26118107,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":500.19,"free":3516.36},{"epoch":26118108,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":500.17,"free":3516.39},{"epoch":26118109,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":500.15,"free":3516.41},{"epoch":26118110,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":500.3,"free":3516.28},{"epoch":26118111,"idl":99.56,"recv":0,"send":0,"writ":0.55,"used":500.71,"free":3515.86},{"epoch":26118112,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":500.34,"free":3516.22},{"epoch":26118113,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":500.32,"free":3516.24},{"epoch":26118114,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":500.3,"free":3516.26},{"epoch":26118115,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":500.32,"free":3516.27},{"epoch":26118116,"idl":99.68,"recv":0,"send":0,"writ":0.4,"used":501.02,"free":3515.56},{"epoch":26118117,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":500.53,"free":3516.05},{"epoch":26118118,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":500.52,"free":3516.05},{"epoch":26118119,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":500.51,"free":3516.06},{"epoch":26118120,"idl":99.53,"recv":0,"send":0,"writ":0.3,"used":500.55,"free":3516.04},{"epoch":26118121,"idl":99.62,"recv":0,"send":0,"writ":0.33,"used":500.86,"free":3515.72},{"epoch":26118122,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":500.48,"free":3516.1},{"epoch":26118123,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":500.46,"free":3516.11},{"epoch":26118124,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":500.46,"free":3516.11},{"epoch":26118125,"idl":99.68,"recv":0,"send":0,"writ":0.31,"used":500.22,"free":3516.37},{"epoch":26118126,"idl":99.66,"recv":0,"send":0,"writ":0.35,"used":500.56,"free":3516.02},{"epoch":26118127,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":500.19,"free":3516.39},{"epoch":26118128,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":500.28,"free":3516.29},{"epoch":26118129,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":500.57,"free":3515.98},{"epoch":26118130,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":500.35,"free":3516.21},{"epoch":26118131,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":500.32,"free":3516.24},{"epoch":26118132,"idl":99.65,"recv":0,"send":0,"writ":0.59,"used":500.87,"free":3515.69},{"epoch":26118133,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":500.53,"free":3516.03},{"epoch":26118134,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":500.51,"free":3516.04},{"epoch":26118135,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":500.29,"free":3516.28},{"epoch":26118136,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":500.25,"free":3516.31},{"epoch":26118137,"idl":99.65,"recv":0,"send":0,"writ":0.6,"used":500.89,"free":3515.66},{"epoch":26118138,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":500.23,"free":3516.31},{"epoch":26118139,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":500.2,"free":3516.34},{"epoch":26118140,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":500.22,"free":3516.34},{"epoch":26118141,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":500.21,"free":3516.34},{"epoch":26118142,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":500.45,"free":3516.09},{"epoch":26118143,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":499.91,"free":3516.62},{"epoch":26118144,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":499.91,"free":3516.62},{"epoch":26118145,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":500.02,"free":3516.53},{"epoch":26118146,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":500.08,"free":3516.46},{"epoch":26118147,"idl":99.57,"recv":0,"send":0,"writ":0.6,"used":500.33,"free":3516.21},{"epoch":26118148,"idl":99.75,"recv":0,"send":0,"writ":0.23,"used":499.61,"free":3516.92},{"epoch":26118149,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":499.48,"free":3517.05},{"epoch":26118150,"idl":99.61,"recv":0,"send":0,"writ":0.28,"used":500.69,"free":3515.86},{"epoch":26118151,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":500.69,"free":3515.85},{"epoch":26118152,"idl":99.63,"recv":0,"send":0,"writ":0.57,"used":500.95,"free":3515.59},{"epoch":26118153,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":500.42,"free":3516.12},{"epoch":26118154,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":500.4,"free":3516.13},{"epoch":26118155,"idl":99.63,"recv":0,"send":0,"writ":0.34,"used":499.43,"free":3517.11},{"epoch":26118156,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":499.51,"free":3517.03},{"epoch":26118157,"idl":99.63,"recv":0,"send":0,"writ":0.58,"used":500.53,"free":3516.01},{"epoch":26118158,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":500.54,"free":3515.99},{"epoch":26118159,"idl":99.66,"recv":0,"send":0,"writ":0.36,"used":500.56,"free":3515.95},{"epoch":26118160,"idl":99.67,"recv":0,"send":0,"writ":0.34,"used":500.55,"free":3515.98},{"epoch":26118161,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":500.52,"free":3516},{"epoch":26118162,"idl":99.62,"recv":0,"send":0,"writ":0.32,"used":500.94,"free":3515.58},{"epoch":26118163,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":499.76,"free":3516.75},{"epoch":26118164,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":499.72,"free":3516.81},{"epoch":26118165,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":499.57,"free":3517},{"epoch":26118166,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":499.48,"free":3517.09},{"epoch":26118167,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":499.46,"free":3517.11},{"epoch":26118168,"idl":99.57,"recv":0,"send":0,"writ":0.59,"used":500.63,"free":3515.93},{"epoch":26118169,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":500.4,"free":3516.15},{"epoch":26118170,"idl":99.54,"recv":0,"send":0,"writ":0.33,"used":500.65,"free":3515.91},{"epoch":26118171,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":500.64,"free":3515.93},{"epoch":26118172,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":500.62,"free":3515.94},{"epoch":26118173,"idl":99.61,"recv":0,"send":0,"writ":0.59,"used":501.09,"free":3515.47},{"epoch":26118174,"idl":99.66,"recv":0,"send":0,"writ":0.14,"used":500.78,"free":3515.77},{"epoch":26118175,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":499.83,"free":3516.73},{"epoch":26118176,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":499.78,"free":3516.78},{"epoch":26118177,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":499.76,"free":3516.8},{"epoch":26118178,"idl":99.59,"recv":0.03,"send":0.83,"writ":0.66,"used":500.75,"free":3515.8},{"epoch":26118179,"idl":99.78,"recv":0,"send":0.01,"writ":0.18,"used":500.64,"free":3515.89},{"epoch":26118180,"idl":99.45,"recv":0,"send":0,"writ":0.3,"used":500.41,"free":3516.15},{"epoch":26118181,"idl":99.64,"recv":0,"send":0,"writ":0.16,"used":500.4,"free":3516.15},{"epoch":26118182,"idl":99.66,"recv":0,"send":0,"writ":0.17,"used":500.38,"free":3516.19},{"epoch":26118183,"idl":99.54,"recv":0,"send":0,"writ":0.59,"used":500.8,"free":3515.76},{"epoch":26118184,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":500.11,"free":3516.45},{"epoch":26118185,"idl":99.62,"recv":0,"send":0,"writ":0.33,"used":501.22,"free":3515.36},{"epoch":26118186,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":501.3,"free":3515.27},{"epoch":26118187,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":501.29,"free":3515.27},{"epoch":26118188,"idl":99.64,"recv":0,"send":0,"writ":0.5,"used":501.55,"free":3515.01},{"epoch":26118189,"idl":99.49,"recv":0,"send":0,"writ":0.46,"used":501.25,"free":3515.29},{"epoch":26118190,"idl":99.6,"recv":0,"send":0,"writ":0.3,"used":501.26,"free":3515.3},{"epoch":26118191,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":501.23,"free":3515.32},{"epoch":26118192,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":501.22,"free":3515.33},{"epoch":26118193,"idl":99.64,"recv":0,"send":0,"writ":0.4,"used":501.57,"free":3514.97},{"epoch":26118194,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":500.94,"free":3515.6},{"epoch":26118195,"idl":99.59,"recv":0,"send":0,"writ":0.32,"used":501.42,"free":3515.14},{"epoch":26118196,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":501.41,"free":3515.14},{"epoch":26118197,"idl":99.78,"recv":0,"send":0,"writ":0.19,"used":501.4,"free":3515.14},{"epoch":26118198,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":501.71,"free":3514.83},{"epoch":26118199,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":501.12,"free":3515.42},{"epoch":26118200,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":501.14,"free":3515.42},{"epoch":26118201,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":501.22,"free":3515.34},{"epoch":26118202,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":501,"free":3515.55},{"epoch":26118203,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":500.54,"free":3516},{"epoch":26118204,"idl":99.52,"recv":0,"send":0,"writ":0.56,"used":500.68,"free":3515.86},{"epoch":26118205,"idl":99.56,"recv":0,"send":0,"writ":0.3,"used":499.33,"free":3517.23},{"epoch":26118206,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":499.29,"free":3517.27},{"epoch":26118207,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":499.26,"free":3517.29},{"epoch":26118208,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":499.25,"free":3517.29},{"epoch":26118209,"idl":99.6,"recv":0,"send":0,"writ":0.54,"used":500.85,"free":3515.69},{"epoch":26118210,"idl":99.63,"recv":0,"send":0,"writ":0.28,"used":500.71,"free":3515.85},{"epoch":26118211,"idl":99.68,"recv":0,"send":0,"writ":0.17,"used":500.7,"free":3515.85},{"epoch":26118212,"idl":99.67,"recv":0,"send":0,"writ":0.14,"used":500.67,"free":3515.88},{"epoch":26118213,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":500.66,"free":3515.88},{"epoch":26118214,"idl":99.6,"recv":0,"send":0,"writ":0.54,"used":500.34,"free":3516.19},{"epoch":26118215,"idl":99.6,"recv":0,"send":0,"writ":0.32,"used":500.37,"free":3516.17},{"epoch":26118216,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":500.36,"free":3516.18},{"epoch":26118217,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":500.47,"free":3516.07},{"epoch":26118218,"idl":99.75,"recv":0.02,"send":0.83,"writ":0.14,"used":500.52,"free":3516.01},{"epoch":26118219,"idl":99.26,"recv":0.02,"send":0.84,"writ":0.77,"used":500.78,"free":3515.72},{"epoch":26118220,"idl":99.64,"recv":0.01,"send":0.2,"writ":0.31,"used":500.43,"free":3516.08},{"epoch":26118221,"idl":99.75,"recv":0,"send":0.05,"writ":0.22,"used":500.4,"free":3516.1},{"epoch":26118222,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":500.38,"free":3516.11},{"epoch":26118223,"idl":99.69,"recv":0,"send":0,"writ":0.15,"used":500.35,"free":3516.13},{"epoch":26118224,"idl":99.56,"recv":0,"send":0,"writ":0.4,"used":500.81,"free":3515.67},{"epoch":26118225,"idl":99.49,"recv":0,"send":0,"writ":0.46,"used":499.63,"free":3516.87},{"epoch":26118226,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":499.69,"free":3516.81},{"epoch":26118227,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":499.76,"free":3516.73},{"epoch":26118228,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":499.74,"free":3516.75},{"epoch":26118229,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":500.75,"free":3515.73},{"epoch":26118230,"idl":99.58,"recv":0,"send":0,"writ":0.3,"used":500.73,"free":3515.77},{"epoch":26118231,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":500.69,"free":3515.8},{"epoch":26118232,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":500.69,"free":3515.8},{"epoch":26118233,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":500.66,"free":3515.83},{"epoch":26118234,"idl":99.49,"recv":0,"send":0,"writ":0.55,"used":500.96,"free":3515.52},{"epoch":26118235,"idl":99.6,"recv":0,"send":0,"writ":0.35,"used":500.47,"free":3516.02},{"epoch":26118236,"idl":99.67,"recv":0,"send":0,"writ":0.18,"used":500.39,"free":3516.1},{"epoch":26118237,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":500.38,"free":3516.11},{"epoch":26118238,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":500.37,"free":3516.11},{"epoch":26118239,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":500.35,"free":3516.14},{"epoch":26118240,"idl":90.98,"recv":0.3,"send":0.01,"writ":261.08,"used":517.96,"free":3488.38},{"epoch":26118241,"idl":99.6,"recv":0,"send":0,"writ":0.25,"used":503.09,"free":3513.12},{"epoch":26118242,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":503.09,"free":3513.12},{"epoch":26118243,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":503.05,"free":3513.15},{"epoch":26118244,"idl":99.77,"recv":0.02,"send":0.83,"writ":0.19,"used":503.13,"free":3513.06},{"epoch":26118245,"idl":99.44,"recv":0,"send":0.02,"writ":0.73,"used":501.64,"free":3514.62},{"epoch":26118246,"idl":99.73,"recv":0.05,"send":2,"writ":0.29,"used":500.45,"free":3515.82},{"epoch":26118247,"idl":99.78,"recv":0,"send":0.01,"writ":0.18,"used":500.4,"free":3515.87},{"epoch":26118248,"idl":99.75,"recv":0,"send":0.01,"writ":0.19,"used":500.44,"free":3515.82},{"epoch":26118249,"idl":99.6,"recv":0,"send":0,"writ":0.3,"used":501.01,"free":3515.23},{"epoch":26118250,"idl":99.54,"recv":0,"send":0,"writ":0.75,"used":501.35,"free":3514.9},{"epoch":26118251,"idl":99.73,"recv":0,"send":0,"writ":0.13,"used":500.76,"free":3515.48},{"epoch":26118252,"idl":99.66,"recv":0,"send":0,"writ":0.16,"used":500.74,"free":3515.5},{"epoch":26118253,"idl":99.44,"recv":0,"send":0,"writ":0.14,"used":500.72,"free":3515.52},{"epoch":26118254,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":500.72,"free":3515.53},{"epoch":26118255,"idl":99.48,"recv":0.01,"send":0.49,"writ":0.78,"used":501.16,"free":3515.1},{"epoch":26118256,"idl":99.78,"recv":0,"send":0.02,"writ":0.23,"used":500.75,"free":3515.5},{"epoch":26118257,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":500.76,"free":3515.49},{"epoch":26118258,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":500.75,"free":3515.5},{"epoch":26118259,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.15,"used":500.72,"free":3515.52},{"epoch":26118260,"idl":99.44,"recv":0,"send":0,"writ":0.77,"used":501.26,"free":3515},{"epoch":26118261,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":500.88,"free":3515.37},{"epoch":26118262,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":500.87,"free":3515.38},{"epoch":26118263,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":500.85,"free":3515.39},{"epoch":26118264,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":500.83,"free":3515.41},{"epoch":26118265,"idl":96.8,"recv":0,"send":0,"writ":0.55,"used":501.1,"free":3515.15},{"epoch":26118266,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":500.79,"free":3515.46},{"epoch":26118267,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":500.78,"free":3515.46},{"epoch":26118268,"idl":99.81,"recv":0.01,"send":0.2,"writ":0.25,"used":500.54,"free":3515.7},{"epoch":26118269,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":500.37,"free":3515.87},{"epoch":26118270,"idl":99.43,"recv":0,"send":0,"writ":0.56,"used":500.43,"free":3515.83},{"epoch":26118271,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":501.03,"free":3515.22},{"epoch":26118272,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":501.01,"free":3515.24},{"epoch":26118273,"idl":99.82,"recv":0,"send":0.01,"writ":0.2,"used":500.96,"free":3515.28},{"epoch":26118274,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":500.95,"free":3515.29},{"epoch":26118275,"idl":99.58,"recv":0,"send":0.01,"writ":0.32,"used":499.99,"free":3516.26},{"epoch":26118276,"idl":99.48,"recv":0,"send":0,"writ":0.57,"used":500.96,"free":3515.28},{"epoch":26118277,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":500.65,"free":3515.59},{"epoch":26118278,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":500.65,"free":3515.59},{"epoch":26118279,"idl":99.64,"recv":0,"send":0,"writ":0.36,"used":500.62,"free":3515.59},{"epoch":26118280,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":500.87,"free":3515.36},{"epoch":26118281,"idl":99.64,"recv":0,"send":0,"writ":0.54,"used":501,"free":3515.22},{"epoch":26118282,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":500.62,"free":3515.6},{"epoch":26118283,"idl":99.67,"recv":0,"send":0,"writ":0.14,"used":500.71,"free":3515.5},{"epoch":26118284,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":500.76,"free":3515.44},{"epoch":26118285,"idl":99.51,"recv":0.02,"send":0.2,"writ":0.37,"used":499.78,"free":3516.44},{"epoch":26118286,"idl":99.7,"recv":0.01,"send":0.18,"writ":0.66,"used":501.16,"free":3515.04},{"epoch":26118287,"idl":99.76,"recv":0,"send":0.01,"writ":0.14,"used":500.75,"free":3515.45},{"epoch":26118288,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":500.73,"free":3515.47},{"epoch":26118289,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":500.72,"free":3515.47},{"epoch":26118290,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":500.96,"free":3515.25},{"epoch":26118291,"idl":99.59,"recv":0.04,"send":0.18,"writ":0.63,"used":501.53,"free":3514.66},{"epoch":26118292,"idl":99.47,"recv":0.28,"send":1.24,"writ":1.04,"used":502.44,"free":3513.64},{"epoch":26118293,"idl":98.99,"recv":2.21,"send":74.06,"writ":0.77,"used":502.5,"free":3513.57},{"epoch":26118294,"idl":99.18,"recv":1.25,"send":38.13,"writ":0.94,"used":502.47,"free":3513.59},{"epoch":26118295,"idl":98.95,"recv":1.16,"send":39.47,"writ":0.56,"used":503.25,"free":3512.83},{"epoch":26118296,"idl":99.68,"recv":0.04,"send":0.06,"writ":0.67,"used":504.29,"free":3511.78},{"epoch":26118297,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":504.46,"free":3511.61},{"epoch":26118298,"idl":99.84,"recv":0.02,"send":0.04,"writ":0.2,"used":504.39,"free":3511.67},{"epoch":26118299,"idl":99.77,"recv":0.03,"send":0.03,"writ":0.21,"used":504.33,"free":3511.73},{"epoch":26118300,"idl":99.47,"recv":0,"send":0.01,"writ":0.32,"used":504.21,"free":3511.86},{"epoch":26118301,"idl":99.55,"recv":0.03,"send":0.11,"writ":0.69,"used":503.95,"free":3512.13},{"epoch":26118302,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":502.65,"free":3513.44},{"epoch":26118303,"idl":99.72,"recv":0.07,"send":0.13,"writ":0.33,"used":502.72,"free":3513.34},{"epoch":26118304,"idl":99.76,"recv":0.04,"send":0.05,"writ":0.33,"used":502.74,"free":3513.3},{"epoch":26118305,"idl":99.41,"recv":12.18,"send":11.62,"writ":11.72,"used":503.89,"free":3508.21},{"epoch":26118306,"idl":99.66,"recv":0.24,"send":0.82,"writ":1.08,"used":504.3,"free":3500.06},{"epoch":26118307,"idl":79.09,"recv":0.04,"send":1.37,"writ":3.76,"used":658.2,"free":3345.96},{"epoch":26118308,"idl":99.81,"recv":0.06,"send":2.51,"writ":0.85,"used":968.74,"free":3034.95},{"epoch":26118309,"idl":99.38,"recv":0.03,"send":1.17,"writ":0.49,"used":755.03,"free":3248.62},{"epoch":26118310,"idl":99.62,"recv":0,"send":0.03,"writ":0.43,"used":552.6,"free":3451.06},{"epoch":26118311,"idl":99.55,"recv":0,"send":0.01,"writ":0.44,"used":552.94,"free":3450.72},{"epoch":26118312,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":552.8,"free":3450.85},{"epoch":26118313,"idl":99.62,"recv":0,"send":0,"writ":0.14,"used":552.84,"free":3450.81},{"epoch":26118314,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":552.7,"free":3450.94},{"epoch":26118315,"idl":99.65,"recv":0,"send":0,"writ":0.32,"used":552.94,"free":3450.72},{"epoch":26118316,"idl":99.58,"recv":0,"send":0,"writ":0.36,"used":553.31,"free":3450.34},{"epoch":26118317,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":553.17,"free":3450.48},{"epoch":26118318,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":553.15,"free":3450.5},{"epoch":26118319,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":553.13,"free":3450.51},{"epoch":26118320,"idl":99.58,"recv":0,"send":0,"writ":0.31,"used":553.39,"free":3450.27},{"epoch":26118321,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":553.37,"free":3450.28},{"epoch":26118322,"idl":99.45,"recv":0,"send":0,"writ":0.57,"used":553.29,"free":3450.37},{"epoch":26118323,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":552.61,"free":3451.04},{"epoch":26118324,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":552.58,"free":3451.07},{"epoch":26118325,"idl":99.63,"recv":0,"send":0,"writ":0.32,"used":552.9,"free":3450.76},{"epoch":26118326,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.82,"free":3450.84},{"epoch":26118327,"idl":99.59,"recv":0,"send":0,"writ":0.55,"used":553.15,"free":3450.5},{"epoch":26118328,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":552.79,"free":3450.86},{"epoch":26118329,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":552.7,"free":3450.94},{"epoch":26118330,"idl":99.63,"recv":0,"send":0,"writ":0.3,"used":552.7,"free":3450.96},{"epoch":26118331,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":552.69,"free":3450.98},{"epoch":26118332,"idl":99.67,"recv":0,"send":0,"writ":0.53,"used":553.39,"free":3450.28},{"epoch":26118333,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":553.15,"free":3450.52},{"epoch":26118334,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":553.14,"free":3450.53},{"epoch":26118335,"idl":99.62,"recv":0,"send":0,"writ":0.32,"used":553.39,"free":3450.29},{"epoch":26118336,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":553.1,"free":3450.57},{"epoch":26118337,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":553.35,"free":3450.32},{"epoch":26118338,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":552.84,"free":3450.82},{"epoch":26118339,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":552.82,"free":3450.83},{"epoch":26118340,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":552.83,"free":3450.83},{"epoch":26118341,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":552.8,"free":3450.86},{"epoch":26118342,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":553.32,"free":3450.33},{"epoch":26118343,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":553.31,"free":3450.34},{"epoch":26118344,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":553.43,"free":3450.23},{"epoch":26118345,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":553.68,"free":3450},{"epoch":26118346,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":553.66,"free":3450.01},{"epoch":26118347,"idl":99.62,"recv":0,"send":0,"writ":0.57,"used":553.92,"free":3449.75},{"epoch":26118348,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":553.39,"free":3450.28},{"epoch":26118349,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":553.37,"free":3450.29},{"epoch":26118350,"idl":99.59,"recv":0,"send":0,"writ":0.3,"used":552.65,"free":3451.03},{"epoch":26118351,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":552.62,"free":3451.06},{"epoch":26118352,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":552.98,"free":3450.68},{"epoch":26118353,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":552.82,"free":3450.84},{"epoch":26118354,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":552.79,"free":3450.87},{"epoch":26118355,"idl":99.6,"recv":0,"send":0,"writ":0.34,"used":553.29,"free":3450.39},{"epoch":26118356,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":553.29,"free":3450.38},{"epoch":26118357,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":553.07,"free":3450.6},{"epoch":26118358,"idl":99.84,"recv":0,"send":0,"writ":0.39,"used":551.89,"free":3451.77},{"epoch":26118359,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":551.96,"free":3451.7},{"epoch":26118360,"idl":99.59,"recv":0,"send":0,"writ":0.3,"used":552,"free":3451.68},{"epoch":26118361,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":551.94,"free":3451.73},{"epoch":26118362,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":551.94,"free":3451.73},{"epoch":26118363,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":552.89,"free":3450.77},{"epoch":26118364,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":552.63,"free":3451.03},{"epoch":26118365,"idl":99.54,"recv":0,"send":0,"writ":0.32,"used":551.92,"free":3451.76},{"epoch":26118366,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":551.88,"free":3451.8},{"epoch":26118367,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":551.85,"free":3451.82},{"epoch":26118368,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":553.24,"free":3450.43},{"epoch":26118369,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":553.07,"free":3450.57},{"epoch":26118370,"idl":99.48,"recv":0,"send":0,"writ":0.3,"used":552.59,"free":3451.07},{"epoch":26118371,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":552.35,"free":3451.31},{"epoch":26118372,"idl":99.84,"recv":0,"send":0.01,"writ":0.17,"used":552.04,"free":3451.61},{"epoch":26118373,"idl":99.64,"recv":0,"send":0,"writ":0.54,"used":553.01,"free":3450.63},{"epoch":26118374,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":552.43,"free":3451.21},{"epoch":26118375,"idl":99.56,"recv":0,"send":0.01,"writ":0.34,"used":552.44,"free":3451.22},{"epoch":26118376,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.41,"free":3451.25},{"epoch":26118377,"idl":99.75,"recv":0,"send":0,"writ":0.2,"used":552.41,"free":3451.26},{"epoch":26118378,"idl":99.62,"recv":0,"send":0,"writ":0.54,"used":552.74,"free":3450.93},{"epoch":26118379,"idl":98.05,"recv":0,"send":0,"writ":0.2,"used":552.12,"free":3451.54},{"epoch":26118380,"idl":99.63,"recv":0,"send":0,"writ":0.34,"used":552.6,"free":3451.07},{"epoch":26118381,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":552.58,"free":3451.08},{"epoch":26118382,"idl":99.78,"recv":0.01,"send":0.09,"writ":0.17,"used":552.6,"free":3451.06},{"epoch":26118383,"idl":99.51,"recv":0,"send":0,"writ":0.64,"used":552.78,"free":3450.87},{"epoch":26118384,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":551.88,"free":3451.75},{"epoch":26118385,"idl":99.62,"recv":0.03,"send":0.96,"writ":0.39,"used":552.13,"free":3451.51},{"epoch":26118386,"idl":98.26,"recv":0,"send":0,"writ":0.17,"used":552.13,"free":3451.51},{"epoch":26118387,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":552.1,"free":3451.53},{"epoch":26118388,"idl":99.63,"recv":0,"send":0,"writ":0.5,"used":552.77,"free":3450.86},{"epoch":26118389,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":553.05,"free":3450.57},{"epoch":26118390,"idl":99.62,"recv":0,"send":0,"writ":0.38,"used":552.43,"free":3451.21},{"epoch":26118391,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":552.26,"free":3451.37},{"epoch":26118392,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":552.03,"free":3451.6},{"epoch":26118393,"idl":99.69,"recv":0,"send":0,"writ":0.43,"used":552.64,"free":3450.98},{"epoch":26118394,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":552.26,"free":3451.36},{"epoch":26118395,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":552.74,"free":3450.9},{"epoch":26118396,"idl":99.79,"recv":0,"send":0,"writ":0.13,"used":552.73,"free":3450.9},{"epoch":26118397,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":552.88,"free":3450.75},{"epoch":26118398,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":552.88,"free":3450.74},{"epoch":26118399,"idl":99.42,"recv":0,"send":0,"writ":0.68,"used":553.49,"free":3450.1},{"epoch":26118400,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":552.87,"free":3450.75},{"epoch":26118401,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":552.85,"free":3450.76},{"epoch":26118402,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":552.84,"free":3450.77},{"epoch":26118403,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":552.81,"free":3450.79},{"epoch":26118404,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":553.41,"free":3450.2},{"epoch":26118405,"idl":99.69,"recv":0,"send":0,"writ":0.33,"used":553.53,"free":3450.1},{"epoch":26118406,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":553.53,"free":3450.1},{"epoch":26118407,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":553.53,"free":3450.1},{"epoch":26118408,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":553.31,"free":3450.31},{"epoch":26118409,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":552.66,"free":3450.96},{"epoch":26118410,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":552.74,"free":3450.89},{"epoch":26118411,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":552.73,"free":3450.9},{"epoch":26118412,"idl":99.87,"recv":0,"send":0.01,"writ":0.2,"used":552.85,"free":3450.77},{"epoch":26118413,"idl":99.79,"recv":0,"send":0.01,"writ":0.19,"used":552.89,"free":3450.73},{"epoch":26118414,"idl":99.69,"recv":0,"send":0.01,"writ":0.57,"used":553.58,"free":3450.03},{"epoch":26118415,"idl":99.75,"recv":0.04,"send":1.69,"writ":0.51,"used":552.8,"free":3450.82},{"epoch":26118416,"idl":99.76,"recv":0.02,"send":0.71,"writ":0.22,"used":552.87,"free":3450.75},{"epoch":26118417,"idl":99.85,"recv":0,"send":0.01,"writ":0.26,"used":552.78,"free":3450.82},{"epoch":26118418,"idl":99.85,"recv":0.03,"send":0.98,"writ":0.27,"used":552.75,"free":3450.83},{"epoch":26118419,"idl":99.64,"recv":0,"send":0.02,"writ":0.55,"used":553.3,"free":3450.29},{"epoch":26118420,"idl":99.57,"recv":0,"send":0,"writ":0.4,"used":553.07,"free":3450.53},{"epoch":26118421,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":553.13,"free":3450.47},{"epoch":26118422,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":553.1,"free":3450.5},{"epoch":26118423,"idl":99.81,"recv":0,"send":0.01,"writ":0.2,"used":553.08,"free":3450.51},{"epoch":26118424,"idl":99.48,"recv":0.07,"send":2.8,"writ":0.68,"used":553.65,"free":3449.93},{"epoch":26118425,"idl":99.66,"recv":0,"send":0.02,"writ":0.39,"used":552.11,"free":3451.47},{"epoch":26118426,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":552.07,"free":3451.51},{"epoch":26118427,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":552.03,"free":3451.55},{"epoch":26118428,"idl":99.83,"recv":0,"send":0.01,"writ":0.18,"used":551.77,"free":3451.8},{"epoch":26118429,"idl":99.46,"recv":0,"send":0,"writ":0.72,"used":552.65,"free":3450.9},{"epoch":26118430,"idl":99.7,"recv":0.02,"send":0.71,"writ":0.36,"used":552.47,"free":3451.08},{"epoch":26118431,"idl":99.74,"recv":0.04,"send":1.06,"writ":0.26,"used":552.58,"free":3450.96},{"epoch":26118432,"idl":99.69,"recv":0.02,"send":0.04,"writ":0.36,"used":555.71,"free":3447.69},{"epoch":26118433,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":556.27,"free":3447.11},{"epoch":26118434,"idl":99.61,"recv":0.01,"send":0,"writ":0.48,"used":556.97,"free":3446.4},{"epoch":26118435,"idl":99.62,"recv":0,"send":0,"writ":0.44,"used":557.26,"free":3446.13},{"epoch":26118436,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":557.19,"free":3446.19},{"epoch":26118437,"idl":79.97,"recv":0.02,"send":0.15,"writ":7.46,"used":921.46,"free":3081.86},{"epoch":26118438,"idl":99.49,"recv":0,"send":0.02,"writ":0.18,"used":903.12,"free":3100.24},{"epoch":26118439,"idl":80.6,"recv":0.02,"send":0.03,"writ":4.16,"used":840.71,"free":3162.62},{"epoch":26118440,"idl":80.7,"recv":0.03,"send":0.73,"writ":4.7,"used":970.15,"free":3033.18},{"epoch":26118441,"idl":99.63,"recv":0,"send":0,"writ":0.17,"used":666.82,"free":3336.54},{"epoch":26118442,"idl":80.33,"recv":0.02,"send":0.23,"writ":3.74,"used":683.19,"free":3320.14},{"epoch":26118443,"idl":99.42,"recv":0.03,"send":1.21,"writ":0.7,"used":961.26,"free":3042.09},{"epoch":26118444,"idl":99.67,"recv":0,"send":0,"writ":0.2,"used":556.4,"free":3446.94},{"epoch":26118445,"idl":99.33,"recv":0.02,"send":0.66,"writ":0.79,"used":558.23,"free":3445.13},{"epoch":26118446,"idl":99.75,"recv":0,"send":0.04,"writ":0.2,"used":557.79,"free":3445.55},{"epoch":26118447,"idl":99.72,"recv":0,"send":0,"writ":0.2,"used":557.96,"free":3445.38},{"epoch":26118448,"idl":99.68,"recv":0,"send":0,"writ":0.18,"used":558.01,"free":3445.33},{"epoch":26118449,"idl":99.7,"recv":0.05,"send":1.91,"writ":0.19,"used":558.16,"free":3445.17},{"epoch":26118450,"idl":99.35,"recv":0.04,"send":1.45,"writ":0.77,"used":559.18,"free":3444.17},{"epoch":26118451,"idl":99.75,"recv":0.02,"send":0.72,"writ":0.25,"used":558.46,"free":3444.88},{"epoch":26118452,"idl":99.68,"recv":0.03,"send":2.69,"writ":0.3,"used":558.41,"free":3444.9},{"epoch":26118453,"idl":99.77,"recv":0.02,"send":0.73,"writ":0.23,"used":558.37,"free":3444.94},{"epoch":26118454,"idl":81.1,"recv":0.03,"send":0.73,"writ":4.13,"used":773.16,"free":3230.1},{"epoch":26118455,"idl":99.43,"recv":0.01,"send":0,"writ":0.79,"used":951.69,"free":3051.64},{"epoch":26118456,"idl":79.67,"recv":0.03,"send":0.74,"writ":4.16,"used":979.51,"free":3023.79},{"epoch":26118457,"idl":98.43,"recv":0.01,"send":0,"writ":0.19,"used":785.87,"free":3217.45},{"epoch":26118458,"idl":77.32,"recv":0.08,"send":3.1,"writ":4.11,"used":989.91,"free":3013.34},{"epoch":26118459,"idl":99.29,"recv":0,"send":0,"writ":0.37,"used":647.94,"free":3355.31},{"epoch":26118460,"idl":99.45,"recv":0,"send":0.01,"writ":0.69,"used":559.89,"free":3443.38},{"epoch":26118461,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":559.54,"free":3443.73},{"epoch":26118462,"idl":99.76,"recv":0,"send":0.01,"writ":0.17,"used":559.51,"free":3443.76},{"epoch":26118463,"idl":97.46,"recv":0.01,"send":0,"writ":0.33,"used":563.22,"free":3440.04},{"epoch":26118464,"idl":81.39,"recv":0.03,"send":0.86,"writ":4.06,"used":984.54,"free":3018.7},{"epoch":26118465,"idl":79.87,"recv":0.03,"send":0.88,"writ":4.71,"used":970.63,"free":3032.63},{"epoch":26118466,"idl":99.61,"recv":0,"send":0.02,"writ":0.25,"used":727.1,"free":3276.16},{"epoch":26118467,"idl":99.68,"recv":0.01,"send":0.03,"writ":0.24,"used":555.14,"free":3448.11},{"epoch":26118468,"idl":99.76,"recv":0,"send":0,"writ":0.21,"used":555.16,"free":3448.09},{"epoch":26118469,"idl":99.83,"recv":0,"send":0,"writ":0.23,"used":555.26,"free":3448.01},{"epoch":26118470,"idl":97.95,"recv":0.01,"send":0,"writ":0.68,"used":558.55,"free":3444.74},{"epoch":26118471,"idl":81.19,"recv":0.06,"send":2.53,"writ":4.23,"used":981.4,"free":3021.85},{"epoch":26118472,"idl":80.89,"recv":0.05,"send":1.7,"writ":4.07,"used":973.39,"free":3029.83},{"epoch":26118473,"idl":80.6,"recv":0.05,"send":1.74,"writ":4.23,"used":939.72,"free":3063.48},{"epoch":26118474,"idl":99.5,"recv":0,"send":0,"writ":0.21,"used":632.11,"free":3371.11},{"epoch":26118475,"idl":99.46,"recv":0,"send":0,"writ":0.6,"used":557.75,"free":3445.49},{"epoch":26118476,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":558.71,"free":3444.53},{"epoch":26118477,"idl":99.81,"recv":0,"send":0.01,"writ":0.23,"used":558.67,"free":3444.56},{"epoch":26118478,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":558.83,"free":3444.4},{"epoch":26118479,"idl":99.76,"recv":0,"send":0,"writ":0.21,"used":558.79,"free":3444.43},{"epoch":26118480,"idl":99.24,"recv":0.01,"send":0.04,"writ":0.5,"used":558.51,"free":3444.73},{"epoch":26118481,"idl":99.8,"recv":0,"send":0.02,"writ":0.51,"used":558.92,"free":3444.31},{"epoch":26118482,"idl":99.7,"recv":0,"send":0,"writ":0.16,"used":558.88,"free":3444.34},{"epoch":26118483,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":559.03,"free":3444.19},{"epoch":26118484,"idl":99.74,"recv":0.02,"send":0.83,"writ":0.2,"used":559.03,"free":3444.18},{"epoch":26118485,"idl":99.69,"recv":0,"send":0.04,"writ":0.45,"used":559.23,"free":3443.99},{"epoch":26118486,"idl":99.58,"recv":0.01,"send":0.04,"writ":0.96,"used":559.85,"free":3443.36},{"epoch":26118487,"idl":99.7,"recv":0.01,"send":0.09,"writ":0.19,"used":559.25,"free":3443.96},{"epoch":26118488,"idl":99.69,"recv":0.01,"send":0.3,"writ":0.23,"used":559.26,"free":3443.94},{"epoch":26118489,"idl":99.39,"recv":0.02,"send":0.99,"writ":0.36,"used":559.04,"free":3444.12},{"epoch":26118490,"idl":99.7,"recv":0,"send":0,"writ":0.37,"used":558.56,"free":3444.62},{"epoch":26118491,"idl":99.57,"recv":0,"send":0,"writ":0.7,"used":558.93,"free":3444.25},{"epoch":26118492,"idl":99.65,"recv":0.01,"send":0.02,"writ":0.17,"used":558.48,"free":3444.69},{"epoch":26118493,"idl":99.5,"recv":0,"send":0.01,"writ":0.18,"used":558.41,"free":3444.75},{"epoch":26118494,"idl":99.65,"recv":0,"send":0,"writ":0.15,"used":558.37,"free":3444.79},{"epoch":26118495,"idl":91.78,"recv":0.03,"send":0.68,"writ":0.78,"used":587.37,"free":3415.8},{"epoch":26118496,"idl":86.28,"recv":0.04,"send":1.7,"writ":4.16,"used":999.7,"free":3003.43},{"epoch":26118497,"idl":99.47,"recv":0,"send":0,"writ":0.27,"used":773.59,"free":3229.57},{"epoch":26118498,"idl":99.75,"recv":0.04,"send":1.73,"writ":0.2,"used":539.48,"free":3463.66},{"epoch":26118499,"idl":99.87,"recv":0,"send":0.02,"writ":0.2,"used":511.8,"free":3491.35},{"epoch":26118500,"idl":99.68,"recv":0.05,"send":2,"writ":0.42,"used":512.37,"free":3490.78},{"epoch":26118501,"idl":99.57,"recv":0.04,"send":2,"writ":0.6,"used":512.65,"free":3490.49},{"epoch":26118502,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":512.33,"free":3490.8},{"epoch":26118503,"idl":99.7,"recv":0,"send":0.01,"writ":0.18,"used":512.38,"free":3490.74},{"epoch":26118504,"idl":99.71,"recv":0.13,"send":5.93,"writ":0.25,"used":512.4,"free":3490.71},{"epoch":26118505,"idl":99.67,"recv":0,"send":0.02,"writ":0.38,"used":512.67,"free":3490.43},{"epoch":26118506,"idl":99.7,"recv":0.02,"send":0.93,"writ":0.54,"used":513.36,"free":3489.74},{"epoch":26118507,"idl":99.44,"recv":0.18,"send":1.01,"writ":0.32,"used":513.67,"free":3489.38},{"epoch":26118508,"idl":99.52,"recv":0.08,"send":0.35,"writ":0.19,"used":514.38,"free":3488.64},{"epoch":26118509,"idl":99.65,"recv":0.12,"send":0.21,"writ":0.29,"used":514.59,"free":3488.42},{"epoch":26118510,"idl":99.49,"recv":0.02,"send":0.02,"writ":0.43,"used":514.78,"free":3488.26},{"epoch":26118511,"idl":99.61,"recv":0.02,"send":0.02,"writ":0.49,"used":515.33,"free":3487.7},{"epoch":26118512,"idl":99.53,"recv":0.05,"send":0.11,"writ":0.4,"used":514.77,"free":3488.26},{"epoch":26118513,"idl":80.93,"recv":0.09,"send":1.76,"writ":4.22,"used":801.07,"free":3201.85},{"epoch":26118514,"idl":99.5,"recv":0.06,"send":0.72,"writ":0.44,"used":980.67,"free":3022.2},{"epoch":26118515,"idl":99,"recv":0.05,"send":0.97,"writ":0.42,"used":584.98,"free":3417.89},{"epoch":26118516,"idl":79.19,"recv":0.08,"send":3.11,"writ":4.66,"used":964.28,"free":3038.53},{"epoch":26118517,"idl":99.2,"recv":0,"send":0,"writ":0.3,"used":868.38,"free":3134.43},{"epoch":26118518,"idl":99.73,"recv":0.01,"send":0.08,"writ":0.18,"used":558.45,"free":3444.37},{"epoch":26118519,"idl":99.61,"recv":0,"send":0.01,"writ":0.32,"used":559.59,"free":3443.2},{"epoch":26118520,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":559.62,"free":3443.19},{"epoch":26118521,"idl":99.63,"recv":0,"send":0,"writ":0.43,"used":560.08,"free":3442.72},{"epoch":26118522,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":559.99,"free":3442.8},{"epoch":26118523,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":559.98,"free":3442.82},{"epoch":26118524,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":559.97,"free":3442.85},{"epoch":26118525,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":559.97,"free":3442.87},{"epoch":26118526,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":559.95,"free":3442.89},{"epoch":26118527,"idl":99.51,"recv":0,"send":0,"writ":0.57,"used":560.44,"free":3442.39},{"epoch":26118528,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.19,"used":559.87,"free":3442.96},{"epoch":26118529,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":559.83,"free":3443},{"epoch":26118530,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":560.48,"free":3442.37},{"epoch":26118531,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":560.49,"free":3442.35},{"epoch":26118532,"idl":99.69,"recv":0,"send":0.02,"writ":0.56,"used":560.99,"free":3441.84},{"epoch":26118533,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":560.22,"free":3442.62},{"epoch":26118534,"idl":99.83,"recv":0.01,"send":0.25,"writ":0.2,"used":559.71,"free":3443.11},{"epoch":26118535,"idl":99.68,"recv":0.01,"send":0.44,"writ":0.35,"used":559.98,"free":3442.87},{"epoch":26118536,"idl":99.79,"recv":0,"send":0.01,"writ":0.21,"used":559.94,"free":3442.89},{"epoch":26118537,"idl":99.59,"recv":0,"send":0,"writ":0.57,"used":560.28,"free":3442.54},{"epoch":26118538,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":559.89,"free":3442.93},{"epoch":26118539,"idl":99.8,"recv":0,"send":0,"writ":0.21,"used":559.86,"free":3442.95},{"epoch":26118540,"idl":99.47,"recv":0,"send":0,"writ":0.35,"used":560.1,"free":3442.72},{"epoch":26118541,"idl":99.62,"recv":0,"send":0.01,"writ":0.18,"used":560.11,"free":3442.71},{"epoch":26118542,"idl":99.58,"recv":0,"send":0.01,"writ":0.56,"used":560.59,"free":3442.23},{"epoch":26118543,"idl":99.76,"recv":0.01,"send":0.34,"writ":0.25,"used":560.22,"free":3442.59},{"epoch":26118544,"idl":99.82,"recv":0,"send":0.01,"writ":0.21,"used":560.13,"free":3442.67},{"epoch":26118545,"idl":99.5,"recv":0.01,"send":0.08,"writ":0.4,"used":560.21,"free":3442.61},{"epoch":26118546,"idl":99.7,"recv":0,"send":0.01,"writ":0.21,"used":560.19,"free":3442.62},{"epoch":26118547,"idl":99.55,"recv":0,"send":0,"writ":0.39,"used":560.94,"free":3441.86},{"epoch":26118548,"idl":99.72,"recv":0,"send":0.01,"writ":0.31,"used":560.87,"free":3441.93},{"epoch":26118549,"idl":99.49,"recv":0,"send":0,"writ":0.3,"used":560.12,"free":3442.66},{"epoch":26118550,"idl":99.52,"recv":0,"send":0,"writ":0.35,"used":558.68,"free":3444.11},{"epoch":26118551,"idl":99.75,"recv":0.01,"send":0.02,"writ":0.15,"used":558.35,"free":3444.44},{"epoch":26118552,"idl":99.69,"recv":0,"send":0,"writ":0.42,"used":559.03,"free":3443.75},{"epoch":26118553,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":559.46,"free":3443.31},{"epoch":26118554,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":559.43,"free":3443.33},{"epoch":26118555,"idl":99.59,"recv":0,"send":0,"writ":0.31,"used":559.67,"free":3443.11},{"epoch":26118556,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":559.66,"free":3443.12},{"epoch":26118557,"idl":99.49,"recv":0,"send":0,"writ":0.43,"used":560.08,"free":3442.7},{"epoch":26118558,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":560.11,"free":3442.67},{"epoch":26118559,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":560.08,"free":3442.69},{"epoch":26118560,"idl":99.48,"recv":0,"send":0,"writ":0.34,"used":560.34,"free":3442.45},{"epoch":26118561,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":560.31,"free":3442.47},{"epoch":26118562,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":560.77,"free":3442},{"epoch":26118563,"idl":99.84,"recv":0,"send":0,"writ":0.43,"used":560.45,"free":3442.32},{"epoch":26118564,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":560.42,"free":3442.35},{"epoch":26118565,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":560.91,"free":3441.88},{"epoch":26118566,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":560.89,"free":3441.89},{"epoch":26118567,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":560.87,"free":3441.91},{"epoch":26118568,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":561.33,"free":3441.44},{"epoch":26118569,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":559.83,"free":3442.93},{"epoch":26118570,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":558.68,"free":3444.1},{"epoch":26118571,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":558.58,"free":3444.2},{"epoch":26118572,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":558.58,"free":3444.2},{"epoch":26118573,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":560.04,"free":3442.73},{"epoch":26118574,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":560.41,"free":3442.35},{"epoch":26118575,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":560.17,"free":3442.6},{"epoch":26118576,"idl":99.87,"recv":0,"send":0.01,"writ":0.16,"used":560.14,"free":3442.63},{"epoch":26118577,"idl":99.87,"recv":0,"send":0.01,"writ":0.18,"used":560.09,"free":3442.68},{"epoch":26118578,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":560.24,"free":3442.52},{"epoch":26118579,"idl":99.63,"recv":0,"send":0,"writ":0.29,"used":560.29,"free":3442.45},{"epoch":26118580,"idl":99.7,"recv":0,"send":0,"writ":0.35,"used":559.35,"free":3443.4},{"epoch":26118581,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":559.48,"free":3443.27},{"epoch":26118582,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":559.63,"free":3443.12},{"epoch":26118583,"idl":99.74,"recv":0,"send":0,"writ":0.41,"used":560.93,"free":3441.81},{"epoch":26118584,"idl":99.83,"recv":0,"send":0.01,"writ":0.35,"used":560.63,"free":3442.11},{"epoch":26118585,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":560.87,"free":3441.89},{"epoch":26118586,"idl":99.85,"recv":0.02,"send":0.81,"writ":0.2,"used":560.86,"free":3441.89},{"epoch":26118587,"idl":99.83,"recv":0,"send":0.01,"writ":0.21,"used":560.66,"free":3442.09},{"epoch":26118588,"idl":99.63,"recv":0,"send":0.01,"writ":0.48,"used":560.26,"free":3442.48},{"epoch":26118589,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":560.05,"free":3442.69},{"epoch":26118590,"idl":99.65,"recv":0,"send":0,"writ":0.31,"used":560.31,"free":3442.44},{"epoch":26118591,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":560.44,"free":3442.3},{"epoch":26118592,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":560.42,"free":3442.32},{"epoch":26118593,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":560.75,"free":3441.99},{"epoch":26118594,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":560.39,"free":3442.36},{"epoch":26118595,"idl":99.71,"recv":0,"send":0.01,"writ":0.35,"used":559.9,"free":3442.87},{"epoch":26118596,"idl":99.88,"recv":0,"send":0.14,"writ":0.2,"used":559.93,"free":3442.84},{"epoch":26118597,"idl":99.85,"recv":0.01,"send":0.16,"writ":0.15,"used":559.9,"free":3442.86},{"epoch":26118598,"idl":99.67,"recv":0.18,"send":8.02,"writ":0.65,"used":560.18,"free":3442.55},{"epoch":26118599,"idl":99.84,"recv":0.03,"send":1.42,"writ":0.35,"used":559.93,"free":3442.75},{"epoch":26118600,"idl":99.6,"recv":0,"send":0,"writ":0.32,"used":560.86,"free":3441.84},{"epoch":26118601,"idl":99.87,"recv":0.04,"send":1.53,"writ":0.24,"used":560.82,"free":3441.86},{"epoch":26118602,"idl":99.78,"recv":0.03,"send":1.04,"writ":0.21,"used":560.72,"free":3441.94},{"epoch":26118603,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":560.69,"free":3441.96},{"epoch":26118604,"idl":94.55,"recv":0.28,"send":0.01,"writ":260.86,"used":576.58,"free":3426.26},{"epoch":26118605,"idl":99.76,"recv":0,"send":0.02,"writ":0.32,"used":563.63,"free":3438.9},{"epoch":26118606,"idl":99.84,"recv":0,"send":0.01,"writ":0.18,"used":563.3,"free":3439.23},{"epoch":26118607,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":562.64,"free":3439.89},{"epoch":26118608,"idl":99.8,"recv":0,"send":0.07,"writ":0.15,"used":562.59,"free":3439.93},{"epoch":26118609,"idl":99.52,"recv":0,"send":0,"writ":0.81,"used":561.52,"free":3441},{"epoch":26118610,"idl":99.61,"recv":0,"send":0,"writ":0.31,"used":559.42,"free":3443.12},{"epoch":26118611,"idl":99.83,"recv":0,"send":0.01,"writ":0.13,"used":559.4,"free":3443.14},{"epoch":26118612,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":559.51,"free":3443.03},{"epoch":26118613,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":559.5,"free":3443.03},{"epoch":26118614,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":560.76,"free":3441.78},{"epoch":26118615,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":559.77,"free":3442.79},{"epoch":26118616,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":559.7,"free":3442.86},{"epoch":26118617,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":559.69,"free":3442.87},{"epoch":26118618,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":559.66,"free":3442.89},{"epoch":26118619,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":560.78,"free":3441.77},{"epoch":26118620,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":561.12,"free":3441.45},{"epoch":26118621,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":561.11,"free":3441.45},{"epoch":26118622,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":561.08,"free":3441.48},{"epoch":26118623,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":561.23,"free":3441.32},{"epoch":26118624,"idl":99.7,"recv":0,"send":0,"writ":0.42,"used":561.69,"free":3440.86},{"epoch":26118625,"idl":99.77,"recv":0,"send":0,"writ":0.44,"used":561.45,"free":3441.12},{"epoch":26118626,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":560.47,"free":3442.1},{"epoch":26118627,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":560.44,"free":3442.13},{"epoch":26118628,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":560.25,"free":3442.31},{"epoch":26118629,"idl":99.65,"recv":0,"send":0,"writ":0.58,"used":561,"free":3441.55},{"epoch":26118630,"idl":99.72,"recv":0,"send":0,"writ":0.39,"used":560.15,"free":3442.41},{"epoch":26118631,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":560.12,"free":3442.43},{"epoch":26118632,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":560.11,"free":3442.44},{"epoch":26118633,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":560.08,"free":3442.46},{"epoch":26118634,"idl":99.69,"recv":0,"send":0,"writ":0.42,"used":560.76,"free":3441.79},{"epoch":26118635,"idl":99.61,"recv":0,"send":0,"writ":0.44,"used":560.78,"free":3441.79},{"epoch":26118636,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":560.77,"free":3441.8},{"epoch":26118637,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":560.74,"free":3441.82},{"epoch":26118638,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":560.72,"free":3441.83},{"epoch":26118639,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":561.49,"free":3441.04},{"epoch":26118640,"idl":99.52,"recv":0,"send":0,"writ":0.68,"used":561.78,"free":3440.77},{"epoch":26118641,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":561.42,"free":3441.14},{"epoch":26118642,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":561.4,"free":3441.15},{"epoch":26118643,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":561.38,"free":3441.17},{"epoch":26118644,"idl":99.82,"recv":0.03,"send":0.71,"writ":0.21,"used":561.41,"free":3441.13},{"epoch":26118645,"idl":99.48,"recv":0.02,"send":0.81,"writ":0.73,"used":561.35,"free":3441.2},{"epoch":26118646,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":560.21,"free":3442.33},{"epoch":26118647,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":559.94,"free":3442.6},{"epoch":26118648,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":559.91,"free":3442.63},{"epoch":26118649,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":559.88,"free":3442.66},{"epoch":26118650,"idl":99.56,"recv":0,"send":0,"writ":0.69,"used":561.36,"free":3441.19},{"epoch":26118651,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":560.96,"free":3441.58},{"epoch":26118652,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":561,"free":3441.54},{"epoch":26118653,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":560.98,"free":3441.55},{"epoch":26118654,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":560.96,"free":3441.57},{"epoch":26118655,"idl":99.37,"recv":0,"send":0,"writ":0.72,"used":561.14,"free":3441.41},{"epoch":26118656,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":560.94,"free":3441.61},{"epoch":26118657,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":560.92,"free":3441.62},{"epoch":26118658,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":560.89,"free":3441.64},{"epoch":26118659,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":560.86,"free":3441.67},{"epoch":26118660,"idl":99.36,"recv":0.03,"send":0,"writ":0.71,"used":561.03,"free":3441.52},{"epoch":26118661,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":561.17,"free":3441.38},{"epoch":26118662,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":561.14,"free":3441.4},{"epoch":26118663,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":561.08,"free":3441.46},{"epoch":26118664,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":560.36,"free":3442.17},{"epoch":26118665,"idl":99.45,"recv":0,"send":0,"writ":0.73,"used":560.82,"free":3441.72},{"epoch":26118666,"idl":99.79,"recv":0,"send":0,"writ":0.13,"used":560.19,"free":3442.36},{"epoch":26118667,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":559.52,"free":3443.02},{"epoch":26118668,"idl":99.77,"recv":0.02,"send":0.11,"writ":0.16,"used":559.48,"free":3443.06},{"epoch":26118669,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":559.95,"free":3442.57},{"epoch":26118670,"idl":99.52,"recv":0,"send":0,"writ":0.72,"used":560.96,"free":3441.57},{"epoch":26118671,"idl":99.78,"recv":0,"send":0.01,"writ":0.2,"used":540.34,"free":3462.21},{"epoch":26118672,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":512.39,"free":3490.18},{"epoch":26118673,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":512.36,"free":3490.2},{"epoch":26118674,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":512.49,"free":3490.07},{"epoch":26118675,"idl":99.47,"recv":0,"send":0,"writ":0.61,"used":512.62,"free":3489.96},{"epoch":26118676,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":511.52,"free":3491.05},{"epoch":26118677,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":511.51,"free":3491.08},{"epoch":26118678,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":511.28,"free":3491.3},{"epoch":26118679,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":511.22,"free":3491.36},{"epoch":26118680,"idl":99.59,"recv":0,"send":0,"writ":0.55,"used":512.53,"free":3490.06},{"epoch":26118681,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":512.19,"free":3490.4},{"epoch":26118682,"idl":99.34,"recv":0,"send":0,"writ":0.16,"used":512.16,"free":3490.42},{"epoch":26118683,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":512.13,"free":3490.45},{"epoch":26118684,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":512.11,"free":3490.46},{"epoch":26118685,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":512.27,"free":3490.32},{"epoch":26118686,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":511.75,"free":3490.83},{"epoch":26118687,"idl":99.76,"recv":0,"send":0.01,"writ":0.18,"used":511.3,"free":3491.28},{"epoch":26118688,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":511.3,"free":3491.27},{"epoch":26118689,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":511.74,"free":3490.83},{"epoch":26118690,"idl":99.56,"recv":0.12,"send":5.39,"writ":0.48,"used":511.42,"free":3491.15},{"epoch":26118691,"idl":99.67,"recv":0,"send":0.02,"writ":0.6,"used":512.26,"free":3490.29},{"epoch":26118692,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":511.75,"free":3490.82},{"epoch":26118693,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":511.74,"free":3490.83},{"epoch":26118694,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":511.71,"free":3490.85},{"epoch":26118695,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":511.95,"free":3490.63},{"epoch":26118696,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":512.12,"free":3490.46},{"epoch":26118697,"idl":99.83,"recv":0.01,"send":0.34,"writ":0.17,"used":511.42,"free":3491.15},{"epoch":26118698,"idl":99.82,"recv":0,"send":0.01,"writ":0.18,"used":511.35,"free":3491.22},{"epoch":26118699,"idl":99.65,"recv":0,"send":0,"writ":0.29,"used":511.84,"free":3490.7},{"epoch":26118700,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":511.76,"free":3490.8},{"epoch":26118701,"idl":99.68,"recv":0,"send":0,"writ":0.45,"used":512.1,"free":3490.45},{"epoch":26118702,"idl":99.84,"recv":0,"send":0,"writ":0.25,"used":511.71,"free":3490.84},{"epoch":26118703,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":511.68,"free":3490.86},{"epoch":26118704,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":511.66,"free":3490.89},{"epoch":26118705,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":510.69,"free":3491.88},{"epoch":26118706,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":511.17,"free":3491.39},{"epoch":26118707,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":511.37,"free":3491.2},{"epoch":26118708,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":511.34,"free":3491.22},{"epoch":26118709,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":511.41,"free":3491.15},{"epoch":26118710,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":511.99,"free":3490.57},{"epoch":26118711,"idl":99.67,"recv":0.06,"send":2.14,"writ":0.54,"used":512.31,"free":3490.26},{"epoch":26118712,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":511.7,"free":3490.83},{"epoch":26118713,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":511.75,"free":3490.78},{"epoch":26118714,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":511.73,"free":3490.79},{"epoch":26118715,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":510.85,"free":3491.69},{"epoch":26118716,"idl":99.68,"recv":0,"send":0,"writ":0.38,"used":511.48,"free":3491.06},{"epoch":26118717,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":511.68,"free":3490.86},{"epoch":26118718,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":511.65,"free":3490.88},{"epoch":26118719,"idl":99.8,"recv":0.01,"send":0.23,"writ":0.17,"used":511.72,"free":3490.81},{"epoch":26118720,"idl":99.65,"recv":0,"send":0,"writ":0.34,"used":512.19,"free":3490.35},{"epoch":26118721,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":512.19,"free":3490.35},{"epoch":26118722,"idl":99.64,"recv":0,"send":0,"writ":0.55,"used":511.86,"free":3490.67},{"epoch":26118723,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":511.41,"free":3491.12},{"epoch":26118724,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":511.39,"free":3491.13},{"epoch":26118725,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":511.86,"free":3490.68},{"epoch":26118726,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":511.85,"free":3490.69},{"epoch":26118727,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":512.18,"free":3490.35},{"epoch":26118728,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":511.8,"free":3490.72},{"epoch":26118729,"idl":99.67,"recv":0,"send":0,"writ":0.31,"used":512.13,"free":3490.37},{"epoch":26118730,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":512.45,"free":3490.08},{"epoch":26118731,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":512.44,"free":3490.08},{"epoch":26118732,"idl":99.64,"recv":0,"send":0,"writ":0.54,"used":512.76,"free":3489.75},{"epoch":26118733,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":512.38,"free":3490.13},{"epoch":26118734,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":512.36,"free":3490.14},{"epoch":26118735,"idl":99.66,"recv":0,"send":0,"writ":0.31,"used":512.36,"free":3490.16},{"epoch":26118736,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":512.35,"free":3490.17},{"epoch":26118737,"idl":99.61,"recv":0,"send":0,"writ":0.59,"used":512.16,"free":3490.36},{"epoch":26118738,"idl":99.78,"recv":0.05,"send":1.99,"writ":0.25,"used":511.34,"free":3491.16},{"epoch":26118739,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":511.38,"free":3491.1},{"epoch":26118740,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":512.44,"free":3490.06},{"epoch":26118741,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":512.43,"free":3490.07},{"epoch":26118742,"idl":98.18,"recv":0,"send":0,"writ":0.56,"used":512.69,"free":3489.81},{"epoch":26118743,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":512.12,"free":3490.37},{"epoch":26118744,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":512.09,"free":3490.4},{"epoch":26118745,"idl":99.73,"recv":0.03,"send":1.19,"writ":0.52,"used":509.58,"free":3493.17},{"epoch":26118746,"idl":99.82,"recv":0.01,"send":0.86,"writ":0.18,"used":507.66,"free":3495.25},{"epoch":26118747,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":507.92,"free":3494.98},{"epoch":26118748,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":507.41,"free":3495.49},{"epoch":26118749,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":507.38,"free":3495.51},{"epoch":26118750,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":506.91,"free":3496},{"epoch":26118751,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":506.87,"free":3496.03},{"epoch":26118752,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":507.68,"free":3495.23},{"epoch":26118753,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.32,"free":3495.57},{"epoch":26118754,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":507.29,"free":3495.6},{"epoch":26118755,"idl":99.62,"recv":0,"send":0,"writ":0.31,"used":506.91,"free":3496},{"epoch":26118756,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":506.78,"free":3496.12},{"epoch":26118757,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":507.28,"free":3495.62},{"epoch":26118758,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":507.41,"free":3495.48},{"epoch":26118759,"idl":99.52,"recv":0,"send":0,"writ":0.29,"used":507.61,"free":3495.26},{"epoch":26118760,"idl":99.68,"recv":0,"send":0,"writ":0.33,"used":507.87,"free":3495.02},{"epoch":26118761,"idl":99.8,"recv":0.03,"send":1.17,"writ":0.2,"used":507.84,"free":3495.04},{"epoch":26118762,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":507.79,"free":3495.07},{"epoch":26118763,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":508.11,"free":3494.75},{"epoch":26118764,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.77,"free":3495.1},{"epoch":26118765,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":506.26,"free":3496.67},{"epoch":26118766,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.18,"free":3496.74},{"epoch":26118767,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.16,"free":3496.76},{"epoch":26118768,"idl":99.63,"recv":0,"send":0,"writ":0.53,"used":507.12,"free":3495.8},{"epoch":26118769,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.86,"free":3496.05},{"epoch":26118770,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":507.61,"free":3495.32},{"epoch":26118771,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.58,"free":3495.34},{"epoch":26118772,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.56,"free":3495.36},{"epoch":26118773,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":507.86,"free":3495.06},{"epoch":26118774,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":507.02,"free":3495.9},{"epoch":26118775,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":507.52,"free":3495.41},{"epoch":26118776,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":507.67,"free":3495.26},{"epoch":26118777,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":507.65,"free":3495.27},{"epoch":26118778,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":507.74,"free":3495.18},{"epoch":26118779,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.12,"free":3495.8},{"epoch":26118780,"idl":99.6,"recv":0,"send":0,"writ":0.3,"used":507.61,"free":3495.32},{"epoch":26118781,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.59,"free":3495.33},{"epoch":26118782,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":507.58,"free":3495.34},{"epoch":26118783,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":507.91,"free":3495.01},{"epoch":26118784,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":507.54,"free":3495.38},{"epoch":26118785,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":507.77,"free":3495.16},{"epoch":26118786,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.75,"free":3495.18},{"epoch":26118787,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.87,"free":3495.06},{"epoch":26118788,"idl":99.7,"recv":0,"send":0,"writ":0.48,"used":508.1,"free":3494.82},{"epoch":26118789,"idl":99.55,"recv":0,"send":0,"writ":0.34,"used":507.93,"free":3494.97},{"epoch":26118790,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":507.97,"free":3494.94},{"epoch":26118791,"idl":99.42,"recv":0,"send":0,"writ":0.44,"used":508.2,"free":3494.71},{"epoch":26118792,"idl":99.81,"recv":0,"send":0,"writ":0.46,"used":508.07,"free":3494.83},{"epoch":26118793,"idl":99.62,"recv":0,"send":0,"writ":0.46,"used":508.59,"free":3494.31},{"epoch":26118794,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":508.03,"free":3494.88},{"epoch":26118795,"idl":99.62,"recv":0,"send":0,"writ":0.37,"used":507.09,"free":3495.83},{"epoch":26118796,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":507.03,"free":3495.89},{"epoch":26118797,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":506.78,"free":3496.13},{"epoch":26118798,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.75,"free":3496.17},{"epoch":26118799,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":507.47,"free":3495.46},{"epoch":26118800,"idl":99.66,"recv":0,"send":0,"writ":0.36,"used":507.89,"free":3495.06},{"epoch":26118801,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":507.89,"free":3495.05},{"epoch":26118802,"idl":98.59,"recv":0,"send":0,"writ":0.18,"used":507.87,"free":3495.09},{"epoch":26118803,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":507.84,"free":3495.11},{"epoch":26118804,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":508.65,"free":3494.3},{"epoch":26118805,"idl":99.78,"recv":0,"send":0,"writ":0.39,"used":507.82,"free":3495.14},{"epoch":26118806,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.8,"free":3495.16},{"epoch":26118807,"idl":99.83,"recv":0.02,"send":1.25,"writ":0.29,"used":507.36,"free":3495.58},{"epoch":26118808,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":507.03,"free":3495.91},{"epoch":26118809,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":507.36,"free":3495.56},{"epoch":26118810,"idl":98.63,"recv":0,"send":0,"writ":0.34,"used":507.14,"free":3495.8},{"epoch":26118811,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":507.15,"free":3495.79},{"epoch":26118812,"idl":99.86,"recv":0,"send":0.02,"writ":0.2,"used":507.13,"free":3495.81},{"epoch":26118813,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":507.08,"free":3495.85},{"epoch":26118814,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":507.58,"free":3495.34},{"epoch":26118815,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":507.05,"free":3495.9},{"epoch":26118816,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507,"free":3495.94},{"epoch":26118817,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.99,"free":3495.95},{"epoch":26118818,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":506.77,"free":3496.16},{"epoch":26118819,"idl":99.53,"recv":0,"send":0,"writ":0.71,"used":506.68,"free":3496.23},{"epoch":26118820,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":506.73,"free":3496.19},{"epoch":26118821,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.66,"free":3496.26},{"epoch":26118822,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":506.64,"free":3496.28},{"epoch":26118823,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.62,"free":3496.29},{"epoch":26118824,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":506.95,"free":3495.95},{"epoch":26118825,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":506.61,"free":3496.32},{"epoch":26118826,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.58,"free":3496.34},{"epoch":26118827,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.56,"free":3496.35},{"epoch":26118828,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":506.54,"free":3496.37},{"epoch":26118829,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":506.96,"free":3495.95},{"epoch":26118830,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":506.19,"free":3496.73},{"epoch":26118831,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.2,"free":3496.72},{"epoch":26118832,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.18,"free":3496.74},{"epoch":26118833,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":506.16,"free":3496.75},{"epoch":26118834,"idl":99.77,"recv":0,"send":0,"writ":0.45,"used":506.61,"free":3496.29},{"epoch":26118835,"idl":99.81,"recv":0,"send":0,"writ":0.45,"used":506.63,"free":3496.29},{"epoch":26118836,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.6,"free":3496.32},{"epoch":26118837,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.57,"free":3496.34},{"epoch":26118838,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.54,"free":3496.37},{"epoch":26118839,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.52,"free":3496.38},{"epoch":26118840,"idl":99.46,"recv":0,"send":0,"writ":0.67,"used":506.94,"free":3495.98},{"epoch":26118841,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":506.69,"free":3496.23},{"epoch":26118842,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.67,"free":3496.24},{"epoch":26118843,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.65,"free":3496.26},{"epoch":26118844,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":506.62,"free":3496.28},{"epoch":26118845,"idl":99.63,"recv":0,"send":0,"writ":0.7,"used":506.98,"free":3495.94},{"epoch":26118846,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":506.6,"free":3496.31},{"epoch":26118847,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":506.59,"free":3496.32},{"epoch":26118848,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.56,"free":3496.34},{"epoch":26118849,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":506.29,"free":3496.58},{"epoch":26118850,"idl":99.61,"recv":0,"send":0,"writ":0.71,"used":506.69,"free":3496.2},{"epoch":26118851,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":506.27,"free":3496.62},{"epoch":26118852,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":506.38,"free":3496.51},{"epoch":26118853,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":506.41,"free":3496.48},{"epoch":26118854,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.38,"free":3496.5},{"epoch":26118855,"idl":99.56,"recv":0,"send":0,"writ":0.72,"used":507.25,"free":3495.66},{"epoch":26118856,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":506.86,"free":3496.05},{"epoch":26118857,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":506.83,"free":3496.08},{"epoch":26118858,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.8,"free":3496.1},{"epoch":26118859,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.79,"free":3496.11},{"epoch":26118860,"idl":99.69,"recv":0,"send":0,"writ":0.75,"used":507.14,"free":3495.77},{"epoch":26118861,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.76,"free":3496.14},{"epoch":26118862,"idl":98,"recv":0,"send":0,"writ":0.13,"used":506.74,"free":3496.16},{"epoch":26118863,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":506.86,"free":3496.04},{"epoch":26118864,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":506.88,"free":3496.01},{"epoch":26118865,"idl":99.64,"recv":0,"send":0,"writ":0.77,"used":507.11,"free":3495.79},{"epoch":26118866,"idl":99.9,"recv":0,"send":0,"writ":0.12,"used":506.86,"free":3496.04},{"epoch":26118867,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.84,"free":3496.06},{"epoch":26118868,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":506.81,"free":3496.08},{"epoch":26118869,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":506.33,"free":3496.56},{"epoch":26118870,"idl":98.83,"recv":0,"send":0,"writ":0.51,"used":505.92,"free":3496.99},{"epoch":26118871,"idl":99.88,"recv":0,"send":0,"writ":0.39,"used":506.52,"free":3496.38},{"epoch":26118872,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":506.51,"free":3496.39},{"epoch":26118873,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":506.49,"free":3496.41},{"epoch":26118874,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.64,"free":3496.25},{"epoch":26118875,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":506.88,"free":3496.03},{"epoch":26118876,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":507.44,"free":3495.46},{"epoch":26118877,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.1,"free":3495.8},{"epoch":26118878,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.07,"free":3495.83},{"epoch":26118879,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":507.06,"free":3495.81},{"epoch":26118880,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":506.8,"free":3496.08},{"epoch":26118881,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":507.14,"free":3495.73},{"epoch":26118882,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.75,"free":3496.12},{"epoch":26118883,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.75,"free":3496.12},{"epoch":26118884,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.72,"free":3496.16},{"epoch":26118885,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":507.15,"free":3495.76},{"epoch":26118886,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":507.3,"free":3495.6},{"epoch":26118887,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.86,"free":3496.03},{"epoch":26118888,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.85,"free":3496.04},{"epoch":26118889,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.82,"free":3496.07},{"epoch":26118890,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":507.06,"free":3495.83},{"epoch":26118891,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":507.57,"free":3495.32},{"epoch":26118892,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.01,"free":3495.88},{"epoch":26118893,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.98,"free":3495.91},{"epoch":26118894,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.96,"free":3495.92},{"epoch":26118895,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":506.68,"free":3496.22},{"epoch":26118896,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":507.12,"free":3495.77},{"epoch":26118897,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":506.87,"free":3496.01},{"epoch":26118898,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.86,"free":3496.01},{"epoch":26118899,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":506.83,"free":3496.04},{"epoch":26118900,"idl":99.5,"recv":0,"send":0,"writ":0.33,"used":507.1,"free":3495.79},{"epoch":26118901,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":507.41,"free":3495.47},{"epoch":26118902,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":507.05,"free":3495.83},{"epoch":26118903,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.02,"free":3495.86},{"epoch":26118904,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.01,"free":3495.86},{"epoch":26118905,"idl":99.7,"recv":0,"send":0,"writ":0.35,"used":506.13,"free":3496.76},{"epoch":26118906,"idl":99.65,"recv":0.01,"send":0.03,"writ":0.6,"used":506.92,"free":3495.96},{"epoch":26118907,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.62,"free":3496.26},{"epoch":26118908,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":506.6,"free":3496.28},{"epoch":26118909,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":507.29,"free":3495.56},{"epoch":26118910,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":507.3,"free":3495.56},{"epoch":26118911,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":507.61,"free":3495.25},{"epoch":26118912,"idl":99.91,"recv":0,"send":0,"writ":0.38,"used":506.76,"free":3496.1},{"epoch":26118913,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.73,"free":3496.12},{"epoch":26118914,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.72,"free":3496.13},{"epoch":26118915,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":506.15,"free":3496.72},{"epoch":26118916,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.13,"free":3496.73},{"epoch":26118917,"idl":99.72,"recv":0,"send":0,"writ":0.61,"used":506.96,"free":3495.9},{"epoch":26118918,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.58,"free":3496.27},{"epoch":26118919,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":506.57,"free":3496.28},{"epoch":26118920,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":506.56,"free":3496.31},{"epoch":26118921,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":506.54,"free":3496.33},{"epoch":26118922,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":507.3,"free":3495.55},{"epoch":26118923,"idl":99.51,"recv":0,"send":0,"writ":0.18,"used":506.98,"free":3495.87},{"epoch":26118924,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":506.96,"free":3495.89},{"epoch":26118925,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":506.9,"free":3495.97},{"epoch":26118926,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":506.87,"free":3496},{"epoch":26118927,"idl":99.71,"recv":0,"send":0,"writ":0.53,"used":507.72,"free":3495.14},{"epoch":26118928,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.08,"free":3495.78},{"epoch":26118929,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":506.85,"free":3496},{"epoch":26118930,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":506.81,"free":3496.05},{"epoch":26118931,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":506.8,"free":3496.07},{"epoch":26118932,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":507.12,"free":3495.74},{"epoch":26118933,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":506.75,"free":3496.1},{"epoch":26118934,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":506.73,"free":3496.13},{"epoch":26118935,"idl":99.74,"recv":0,"send":0,"writ":0.42,"used":506.01,"free":3496.87},{"epoch":26118936,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":505.98,"free":3496.9},{"epoch":26118937,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":507.15,"free":3495.72},{"epoch":26118938,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.34,"free":3495.53},{"epoch":26118939,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":507.12,"free":3495.72},{"epoch":26118940,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":506.44,"free":3496.41},{"epoch":26118941,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.3,"free":3496.56},{"epoch":26118942,"idl":99.77,"recv":0,"send":0,"writ":0.49,"used":506.74,"free":3496.11},{"epoch":26118943,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":506.5,"free":3496.34},{"epoch":26118944,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.48,"free":3496.38},{"epoch":26118945,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":506.49,"free":3496.39},{"epoch":26118946,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":506.46,"free":3496.41},{"epoch":26118947,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":507.27,"free":3495.6},{"epoch":26118948,"idl":99.92,"recv":0,"send":0,"writ":0.32,"used":507.35,"free":3495.52},{"epoch":26118949,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":507.34,"free":3495.54},{"epoch":26118950,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":507.57,"free":3495.33},{"epoch":26118951,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":507.56,"free":3495.33},{"epoch":26118952,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":507.88,"free":3495.01},{"epoch":26118953,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":507.27,"free":3495.61},{"epoch":26118954,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.24,"free":3495.64},{"epoch":26118955,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":507.48,"free":3495.42},{"epoch":26118956,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":507.47,"free":3495.42},{"epoch":26118957,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":507.8,"free":3495.09},{"epoch":26118958,"idl":99.87,"recv":0,"send":0,"writ":0.41,"used":507.29,"free":3495.59},{"epoch":26118959,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":507.33,"free":3495.54},{"epoch":26118960,"idl":99.68,"recv":0,"send":0,"writ":0.34,"used":507.09,"free":3495.8},{"epoch":26118961,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.07,"free":3495.82},{"epoch":26118962,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.03,"free":3495.85},{"epoch":26118963,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":507.27,"free":3495.61},{"epoch":26118964,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.49,"free":3496.38},{"epoch":26118965,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":506.97,"free":3495.91},{"epoch":26118966,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.97,"free":3495.91},{"epoch":26118967,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.93,"free":3495.94},{"epoch":26118968,"idl":94.84,"recv":0.32,"send":0.09,"writ":260.29,"used":519.92,"free":3484.04},{"epoch":26118969,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":510.15,"free":3492.59},{"epoch":26118970,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":509.68,"free":3493.08},{"epoch":26118971,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":509.65,"free":3493.11},{"epoch":26118972,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":509.62,"free":3493.13},{"epoch":26118973,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":508.23,"free":3494.54},{"epoch":26118974,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":506.7,"free":3496.08},{"epoch":26118975,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":506.88,"free":3495.91},{"epoch":26118976,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":506.85,"free":3495.94},{"epoch":26118977,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":507.08,"free":3495.71},{"epoch":26118978,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":507.17,"free":3495.61},{"epoch":26118979,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":506.55,"free":3496.23},{"epoch":26118980,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":506.32,"free":3496.49},{"epoch":26118981,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":506.29,"free":3496.52},{"epoch":26118982,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.26,"free":3496.54},{"epoch":26118983,"idl":99.79,"recv":0,"send":0,"writ":0.49,"used":506.82,"free":3495.98},{"epoch":26118984,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":506.47,"free":3496.33},{"epoch":26118985,"idl":99.75,"recv":0,"send":0,"writ":0.35,"used":506.54,"free":3496.28},{"epoch":26118986,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":506.45,"free":3496.36},{"epoch":26118987,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.58,"free":3496.23},{"epoch":26118988,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":506.98,"free":3495.82},{"epoch":26118989,"idl":99.91,"recv":0,"send":0,"writ":0.37,"used":506.62,"free":3496.18},{"epoch":26118990,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":506.81,"free":3496},{"epoch":26118991,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":506.8,"free":3496.01},{"epoch":26118992,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.78,"free":3496.03},{"epoch":26118993,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":507.08,"free":3495.72},{"epoch":26118994,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.49,"free":3496.3},{"epoch":26118995,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":506.51,"free":3496.31},{"epoch":26118996,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.47,"free":3496.34},{"epoch":26118997,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":506.45,"free":3496.35},{"epoch":26118998,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.43,"free":3496.37},{"epoch":26118999,"idl":99.69,"recv":0,"send":0,"writ":0.72,"used":507.42,"free":3495.35},{"epoch":26119000,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":506.83,"free":3495.96},{"epoch":26119001,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":506.81,"free":3495.97},{"epoch":26119002,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":506.79,"free":3495.99},{"epoch":26119003,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.77,"free":3496.01},{"epoch":26119004,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":507.11,"free":3495.66},{"epoch":26119005,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":506.74,"free":3496.04},{"epoch":26119006,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.73,"free":3496.05},{"epoch":26119007,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.7,"free":3496.07},{"epoch":26119008,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":506.69,"free":3496.08},{"epoch":26119009,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":506.86,"free":3495.9},{"epoch":26119010,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":506.44,"free":3496.35},{"epoch":26119011,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":506.61,"free":3496.17},{"epoch":26119012,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.59,"free":3496.19},{"epoch":26119013,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.57,"free":3496.2},{"epoch":26119014,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":506.89,"free":3495.88},{"epoch":26119015,"idl":99.84,"recv":0,"send":0,"writ":0.37,"used":506.79,"free":3495.99},{"epoch":26119016,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.76,"free":3496.02},{"epoch":26119017,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.73,"free":3496.04},{"epoch":26119018,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.72,"free":3496.05},{"epoch":26119019,"idl":99.79,"recv":0,"send":0,"writ":0.63,"used":506.79,"free":3495.97},{"epoch":26119020,"idl":99.47,"recv":0,"send":0,"writ":7.39,"used":506.85,"free":3496.26},{"epoch":26119021,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.97,"free":3496.16},{"epoch":26119022,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.01,"free":3496.11},{"epoch":26119023,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":506.98,"free":3496.13},{"epoch":26119024,"idl":99.74,"recv":0,"send":0,"writ":0.58,"used":507.32,"free":3495.79},{"epoch":26119025,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":507.28,"free":3495.86},{"epoch":26119026,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.2,"free":3495.94},{"epoch":26119027,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":507.17,"free":3495.97},{"epoch":26119028,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.14,"free":3495.99},{"epoch":26119029,"idl":99.73,"recv":0,"send":0,"writ":0.7,"used":506.91,"free":3496.2},{"epoch":26119030,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":506.9,"free":3496.23},{"epoch":26119031,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.88,"free":3496.24},{"epoch":26119032,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":506.99,"free":3496.13},{"epoch":26119033,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":507.03,"free":3496.09},{"epoch":26119034,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":507.57,"free":3495.54},{"epoch":26119035,"idl":99.79,"recv":0,"send":0,"writ":0.42,"used":507.23,"free":3495.89},{"epoch":26119036,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":507.21,"free":3495.9},{"epoch":26119037,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":506.96,"free":3496.15},{"epoch":26119038,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":506.93,"free":3496.18},{"epoch":26119039,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":506.9,"free":3496.2},{"epoch":26119040,"idl":99.67,"recv":0,"send":0,"writ":0.76,"used":506.79,"free":3496.33},{"epoch":26119041,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":506.39,"free":3496.73},{"epoch":26119042,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.37,"free":3496.74},{"epoch":26119043,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.45,"free":3496.66},{"epoch":26119044,"idl":99.65,"recv":0,"send":0,"writ":0.14,"used":506.51,"free":3496.6},{"epoch":26119045,"idl":99.7,"recv":0,"send":0,"writ":0.76,"used":507.34,"free":3495.78},{"epoch":26119046,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.98,"free":3496.14},{"epoch":26119047,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.96,"free":3496.15},{"epoch":26119048,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":506.94,"free":3496.17},{"epoch":26119049,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":506.73,"free":3496.37},{"epoch":26119050,"idl":99.61,"recv":0,"send":0,"writ":0.76,"used":507.47,"free":3495.65},{"epoch":26119051,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.9,"free":3496.21},{"epoch":26119052,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.87,"free":3496.23},{"epoch":26119053,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":506.86,"free":3496.24},{"epoch":26119054,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":506.84,"free":3496.26},{"epoch":26119055,"idl":99.67,"recv":0,"send":0,"writ":0.72,"used":507.36,"free":3495.76},{"epoch":26119056,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":506.99,"free":3496.12},{"epoch":26119057,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":506.97,"free":3496.13},{"epoch":26119058,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.95,"free":3496.15},{"epoch":26119059,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":506.94,"free":3496.14},{"epoch":26119060,"idl":99.7,"recv":0,"send":0,"writ":0.73,"used":507.11,"free":3495.98},{"epoch":26119061,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.91,"free":3496.18},{"epoch":26119062,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":506.88,"free":3496.21},{"epoch":26119063,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.86,"free":3496.22},{"epoch":26119064,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.84,"free":3496.24},{"epoch":26119065,"idl":99.68,"recv":0,"send":0,"writ":0.74,"used":507.61,"free":3495.49},{"epoch":26119066,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":507.25,"free":3495.84},{"epoch":26119067,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.24,"free":3495.85},{"epoch":26119068,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":507.21,"free":3495.87},{"epoch":26119069,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":507.2,"free":3495.88},{"epoch":26119070,"idl":99.69,"recv":0,"send":0,"writ":0.68,"used":507.49,"free":3495.6},{"epoch":26119071,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":506.44,"free":3496.65},{"epoch":26119072,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.41,"free":3496.68},{"epoch":26119073,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":506.4,"free":3496.68},{"epoch":26119074,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.38,"free":3496.7},{"epoch":26119075,"idl":99.62,"recv":0,"send":0,"writ":0.54,"used":506.8,"free":3496.3},{"epoch":26119076,"idl":99.93,"recv":0,"send":0,"writ":0.34,"used":507.34,"free":3495.75},{"epoch":26119077,"idl":99.37,"recv":0,"send":0,"writ":0.16,"used":507.5,"free":3495.59},{"epoch":26119078,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":507.48,"free":3495.6},{"epoch":26119079,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.46,"free":3495.62},{"epoch":26119080,"idl":99.5,"recv":0,"send":0,"writ":0.53,"used":507.8,"free":3495.29},{"epoch":26119081,"idl":99.83,"recv":0,"send":0,"writ":0.41,"used":507.18,"free":3495.91},{"epoch":26119082,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.17,"free":3495.91},{"epoch":26119083,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":507.15,"free":3495.93},{"epoch":26119084,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":507.13,"free":3495.94},{"epoch":26119085,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":507.37,"free":3495.72},{"epoch":26119086,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":507.72,"free":3495.37},{"epoch":26119087,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.34,"free":3495.75},{"epoch":26119088,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.32,"free":3495.76},{"epoch":26119089,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":507.24,"free":3495.84},{"epoch":26119090,"idl":99.82,"recv":0,"send":0,"writ":0.26,"used":507.53,"free":3495.58},{"epoch":26119091,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":507.98,"free":3495.12},{"epoch":26119092,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":507.23,"free":3495.87},{"epoch":26119093,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.21,"free":3495.89},{"epoch":26119094,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.19,"free":3495.91},{"epoch":26119095,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":506.47,"free":3496.64},{"epoch":26119096,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":507.32,"free":3495.79},{"epoch":26119097,"idl":99.88,"recv":0,"send":0,"writ":0.24,"used":507.16,"free":3495.94},{"epoch":26119098,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.12,"free":3495.98},{"epoch":26119099,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.11,"free":3495.98},{"epoch":26119100,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":507.49,"free":3495.62},{"epoch":26119101,"idl":99.77,"recv":0,"send":0,"writ":0.53,"used":507.74,"free":3495.36},{"epoch":26119102,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.24,"free":3495.86},{"epoch":26119103,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":507.23,"free":3495.87},{"epoch":26119104,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.2,"free":3495.89},{"epoch":26119105,"idl":98.27,"recv":0,"send":0,"writ":0.34,"used":506.73,"free":3496.38},{"epoch":26119106,"idl":99.77,"recv":0,"send":0,"writ":0.44,"used":507.29,"free":3495.81},{"epoch":26119107,"idl":99.91,"recv":0,"send":0,"writ":0.35,"used":507.15,"free":3495.94},{"epoch":26119108,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":507.14,"free":3495.95},{"epoch":26119109,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":506.76,"free":3496.32},{"epoch":26119110,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":507.11,"free":3495.99},{"epoch":26119111,"idl":99.73,"recv":0,"send":0,"writ":0.53,"used":507.61,"free":3495.49},{"epoch":26119112,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.02,"free":3496.07},{"epoch":26119113,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":506.99,"free":3496.1},{"epoch":26119114,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.98,"free":3496.1},{"epoch":26119115,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":507.45,"free":3495.65},{"epoch":26119116,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":507.79,"free":3495.31},{"epoch":26119117,"idl":99.92,"recv":0,"send":0,"writ":0.37,"used":507.17,"free":3495.92},{"epoch":26119118,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":507.15,"free":3495.94},{"epoch":26119119,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":507.37,"free":3495.69},{"epoch":26119120,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":506.89,"free":3496.19},{"epoch":26119121,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":507.22,"free":3495.85},{"epoch":26119122,"idl":99.92,"recv":0,"send":0,"writ":0.38,"used":506.94,"free":3496.13},{"epoch":26119123,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.01,"free":3496.05},{"epoch":26119124,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.24,"free":3496.82},{"epoch":26119125,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":506.98,"free":3496.1},{"epoch":26119126,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":506.96,"free":3496.12},{"epoch":26119127,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":507.64,"free":3495.43},{"epoch":26119128,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":506.92,"free":3496.15},{"epoch":26119129,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":506.9,"free":3496.17},{"epoch":26119130,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":506.66,"free":3496.42},{"epoch":26119131,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":506.63,"free":3496.45},{"epoch":26119132,"idl":99.79,"recv":0,"send":0,"writ":0.6,"used":507.14,"free":3495.94},{"epoch":26119133,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":506.93,"free":3496.14},{"epoch":26119134,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.99,"free":3496.08},{"epoch":26119135,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":507.24,"free":3495.84},{"epoch":26119136,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":507.22,"free":3495.86},{"epoch":26119137,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":507.18,"free":3495.89},{"epoch":26119138,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":506.44,"free":3496.63},{"epoch":26119139,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.4,"free":3496.66},{"epoch":26119140,"idl":99.72,"recv":0,"send":0,"writ":0.35,"used":506.94,"free":3496.14},{"epoch":26119141,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":506.87,"free":3496.21},{"epoch":26119142,"idl":99.73,"recv":0,"send":0,"writ":0.45,"used":507.33,"free":3495.74},{"epoch":26119143,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":507.17,"free":3495.89},{"epoch":26119144,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":507.23,"free":3495.83},{"epoch":26119145,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":506.99,"free":3496.08},{"epoch":26119146,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.95,"free":3496.12},{"epoch":26119147,"idl":99.77,"recv":0,"send":0,"writ":0.49,"used":507.19,"free":3495.87},{"epoch":26119148,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":506.66,"free":3496.39},{"epoch":26119149,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":506.88,"free":3496.15},{"epoch":26119150,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":506.88,"free":3496.16},{"epoch":26119151,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":506.86,"free":3496.18},{"epoch":26119152,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":507.38,"free":3495.66},{"epoch":26119153,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":506.95,"free":3496.08},{"epoch":26119154,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.98,"free":3496.08},{"epoch":26119155,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":506.98,"free":3496.1},{"epoch":26119156,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":506.96,"free":3496.12},{"epoch":26119157,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":506.69,"free":3496.38},{"epoch":26119158,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":507.03,"free":3496.04},{"epoch":26119159,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.64,"free":3496.42},{"epoch":26119160,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":506.87,"free":3496.21},{"epoch":26119161,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":506.87,"free":3496.21},{"epoch":26119162,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.84,"free":3496.23},{"epoch":26119163,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":507.18,"free":3495.89},{"epoch":26119164,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.96,"free":3496.1},{"epoch":26119165,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":507.03,"free":3496.05},{"epoch":26119166,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.02,"free":3496.06},{"epoch":26119167,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.99,"free":3496.09},{"epoch":26119168,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":506.91,"free":3496.16},{"epoch":26119169,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":506.29,"free":3496.77},{"epoch":26119170,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":507.18,"free":3495.9},{"epoch":26119171,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.17,"free":3495.9},{"epoch":26119172,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.14,"free":3495.93},{"epoch":26119173,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":507.45,"free":3495.62},{"epoch":26119174,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.85,"free":3496.21},{"epoch":26119175,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":507.23,"free":3495.86},{"epoch":26119176,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.26,"free":3495.83},{"epoch":26119177,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":507.22,"free":3495.86},{"epoch":26119178,"idl":99.71,"recv":0,"send":0,"writ":0.39,"used":507.55,"free":3495.53},{"epoch":26119179,"idl":99.63,"recv":0,"send":0,"writ":0.41,"used":507.18,"free":3495.88},{"epoch":26119180,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":506.93,"free":3496.14},{"epoch":26119181,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":506.91,"free":3496.16},{"epoch":26119182,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.89,"free":3496.18},{"epoch":26119183,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":506.74,"free":3496.32},{"epoch":26119184,"idl":99.78,"recv":0,"send":0,"writ":0.19,"used":505.86,"free":3497.2},{"epoch":26119185,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":506.2,"free":3496.87},{"epoch":26119186,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.26,"free":3496.8},{"epoch":26119187,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":506.23,"free":3496.83},{"epoch":26119188,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":507.11,"free":3495.94},{"epoch":26119189,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.92,"free":3496.13},{"epoch":26119190,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":507.19,"free":3495.87},{"epoch":26119191,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.16,"free":3495.9},{"epoch":26119192,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.14,"free":3495.91},{"epoch":26119193,"idl":99.72,"recv":0,"send":0,"writ":0.46,"used":507.58,"free":3495.46},{"epoch":26119194,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":507.33,"free":3495.71},{"epoch":26119195,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":507.1,"free":3495.96},{"epoch":26119196,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":507.07,"free":3495.99},{"epoch":26119197,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":507.24,"free":3495.82},{"epoch":26119198,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":507.56,"free":3495.48},{"epoch":26119199,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":507.19,"free":3495.85},{"epoch":26119200,"idl":99.6,"recv":0,"send":0,"writ":0.32,"used":507.43,"free":3495.63},{"epoch":26119201,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.24,"free":3495.82},{"epoch":26119202,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":507.15,"free":3495.9},{"epoch":26119203,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":507.14,"free":3495.91},{"epoch":26119204,"idl":99.64,"recv":0,"send":0,"writ":0.59,"used":507.45,"free":3495.59},{"epoch":26119205,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":507.09,"free":3495.96},{"epoch":26119206,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":507.08,"free":3495.97},{"epoch":26119207,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.05,"free":3495.99},{"epoch":26119208,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.17,"free":3495.89},{"epoch":26119209,"idl":99.65,"recv":0,"send":0,"writ":0.74,"used":508.08,"free":3494.95},{"epoch":26119210,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":506.97,"free":3496.09},{"epoch":26119211,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":506.93,"free":3496.11},{"epoch":26119212,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":506.92,"free":3496.13},{"epoch":26119213,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":506.89,"free":3496.15},{"epoch":26119214,"idl":99.62,"recv":0,"send":0,"writ":0.64,"used":506.81,"free":3496.26},{"epoch":26119215,"idl":99.68,"recv":0,"send":0,"writ":0.26,"used":507.34,"free":3495.75},{"epoch":26119216,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":507.36,"free":3495.73},{"epoch":26119217,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":507.33,"free":3495.76},{"epoch":26119218,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.3,"free":3495.78},{"epoch":26119219,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":507.75,"free":3495.32},{"epoch":26119220,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":506.98,"free":3496.11},{"epoch":26119221,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":506.96,"free":3496.13},{"epoch":26119222,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":506.93,"free":3496.15},{"epoch":26119223,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.92,"free":3496.16},{"epoch":26119224,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":507.46,"free":3495.61},{"epoch":26119225,"idl":99.68,"recv":0,"send":0,"writ":0.28,"used":506.66,"free":3496.43},{"epoch":26119226,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.62,"free":3496.46},{"epoch":26119227,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.61,"free":3496.47},{"epoch":26119228,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":506.58,"free":3496.5},{"epoch":26119229,"idl":99.68,"recv":0,"send":0,"writ":0.51,"used":507.14,"free":3495.93},{"epoch":26119230,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":507.6,"free":3495.48},{"epoch":26119231,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.7,"free":3495.38},{"epoch":26119232,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.69,"free":3495.39},{"epoch":26119233,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":507.66,"free":3495.41},{"epoch":26119234,"idl":99.7,"recv":0,"send":0,"writ":0.38,"used":507.98,"free":3495.09},{"epoch":26119235,"idl":99.66,"recv":0,"send":0,"writ":0.51,"used":506.46,"free":3496.64},{"epoch":26119236,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.4,"free":3496.7},{"epoch":26119237,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.37,"free":3496.72},{"epoch":26119238,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.36,"free":3496.73},{"epoch":26119239,"idl":99.38,"recv":0,"send":0,"writ":0.57,"used":507.64,"free":3495.43},{"epoch":26119240,"idl":99.71,"recv":0,"send":0,"writ":0.44,"used":507.07,"free":3496.01},{"epoch":26119241,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":507.04,"free":3496.04},{"epoch":26119242,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.17,"free":3495.9},{"epoch":26119243,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":507.22,"free":3495.85},{"epoch":26119244,"idl":99.77,"recv":0,"send":0,"writ":0.17,"used":507.2,"free":3495.88},{"epoch":26119245,"idl":99.57,"recv":0,"send":0,"writ":0.71,"used":507.82,"free":3495.28},{"epoch":26119246,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":507.42,"free":3495.68},{"epoch":26119247,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":507.41,"free":3495.68},{"epoch":26119248,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":507.39,"free":3495.7},{"epoch":26119249,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":507.37,"free":3495.72},{"epoch":26119250,"idl":99.62,"recv":0,"send":0,"writ":0.75,"used":507.68,"free":3495.41},{"epoch":26119251,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":507.08,"free":3496.01},{"epoch":26119252,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.07,"free":3496.02},{"epoch":26119253,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.17,"free":3495.91},{"epoch":26119254,"idl":99.85,"recv":0,"send":0.01,"writ":0.15,"used":507.2,"free":3495.88},{"epoch":26119255,"idl":99.67,"recv":0,"send":0,"writ":0.67,"used":507.81,"free":3495.28},{"epoch":26119256,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.64,"free":3495.45},{"epoch":26119257,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.62,"free":3495.47},{"epoch":26119258,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":507.59,"free":3495.5},{"epoch":26119259,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":507.58,"free":3495.5},{"epoch":26119260,"idl":99.3,"recv":0,"send":0,"writ":0.73,"used":507.66,"free":3495.44},{"epoch":26119261,"idl":99.79,"recv":0,"send":0,"writ":0.13,"used":507.44,"free":3495.65},{"epoch":26119262,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":507.46,"free":3495.63},{"epoch":26119263,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.43,"free":3495.65},{"epoch":26119264,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":507.43,"free":3495.65},{"epoch":26119265,"idl":99.58,"recv":0,"send":0,"writ":0.67,"used":508.1,"free":3494.99},{"epoch":26119266,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":507.39,"free":3495.7},{"epoch":26119267,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.38,"free":3495.71},{"epoch":26119268,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":507.35,"free":3495.73},{"epoch":26119269,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":507.59,"free":3495.47},{"epoch":26119270,"idl":99.54,"recv":0,"send":0,"writ":0.53,"used":508.06,"free":3495.01},{"epoch":26119271,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":507.32,"free":3495.75},{"epoch":26119272,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":507.34,"free":3495.72},{"epoch":26119273,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.46,"free":3495.6},{"epoch":26119274,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.43,"free":3495.63},{"epoch":26119275,"idl":99.56,"recv":0,"send":0,"writ":0.47,"used":507.82,"free":3495.24},{"epoch":26119276,"idl":99.84,"recv":0,"send":0,"writ":0.37,"used":507.9,"free":3495.16},{"epoch":26119277,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":507.87,"free":3495.19},{"epoch":26119278,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":507.86,"free":3495.2},{"epoch":26119279,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.37,"free":3495.68},{"epoch":26119280,"idl":99.63,"recv":0,"send":0,"writ":0.45,"used":507.23,"free":3495.84},{"epoch":26119281,"idl":99.82,"recv":0,"send":0,"writ":0.41,"used":507.07,"free":3496},{"epoch":26119282,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":507.06,"free":3496},{"epoch":26119283,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":507.11,"free":3495.95},{"epoch":26119284,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.19,"free":3495.86},{"epoch":26119285,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":506.71,"free":3496.35},{"epoch":26119286,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":507.49,"free":3495.58},{"epoch":26119287,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":507.16,"free":3495.9},{"epoch":26119288,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.15,"free":3495.9},{"epoch":26119289,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":506.84,"free":3496.21},{"epoch":26119290,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":506.88,"free":3496.18},{"epoch":26119291,"idl":99.69,"recv":0,"send":0,"writ":0.63,"used":507.49,"free":3495.59},{"epoch":26119292,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.83,"free":3496.25},{"epoch":26119293,"idl":97.51,"recv":0,"send":0,"writ":0.14,"used":506.82,"free":3496.26},{"epoch":26119294,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":506.79,"free":3496.28},{"epoch":26119295,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":506.94,"free":3496.15},{"epoch":26119296,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":507.31,"free":3495.78},{"epoch":26119297,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.94,"free":3496.14},{"epoch":26119298,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.91,"free":3496.16},{"epoch":26119299,"idl":99.72,"recv":0,"send":0,"writ":0.39,"used":507.12,"free":3495.94},{"epoch":26119300,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":506.64,"free":3496.43},{"epoch":26119301,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":507.22,"free":3495.84},{"epoch":26119302,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.08,"free":3495.97},{"epoch":26119303,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":507.04,"free":3496},{"epoch":26119304,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.03,"free":3496.01},{"epoch":26119305,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":507.02,"free":3496.04},{"epoch":26119306,"idl":99.7,"recv":0,"send":0,"writ":0.79,"used":507.3,"free":3495.75},{"epoch":26119307,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.92,"free":3496.13},{"epoch":26119308,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.9,"free":3496.15},{"epoch":26119309,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.88,"free":3496.16},{"epoch":26119310,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":507.36,"free":3495.69},{"epoch":26119311,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":507.81,"free":3495.24},{"epoch":26119312,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.09,"free":3495.96},{"epoch":26119313,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.07,"free":3495.97},{"epoch":26119314,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.04,"free":3496},{"epoch":26119315,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":507.15,"free":3495.91},{"epoch":26119316,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":507.38,"free":3495.67},{"epoch":26119317,"idl":99.83,"recv":0,"send":0,"writ":0.38,"used":507.28,"free":3495.77},{"epoch":26119318,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.44,"free":3495.6},{"epoch":26119319,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.42,"free":3495.62},{"epoch":26119320,"idl":99.65,"recv":0.03,"send":0,"writ":0.29,"used":506.43,"free":3496.63},{"epoch":26119321,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":506.78,"free":3496.27},{"epoch":26119322,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":507.2,"free":3495.85},{"epoch":26119323,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.17,"free":3495.87},{"epoch":26119324,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":507.16,"free":3495.88},{"epoch":26119325,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":506.21,"free":3496.84},{"epoch":26119326,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.15,"free":3496.89},{"epoch":26119327,"idl":99.71,"recv":0,"send":0,"writ":0.6,"used":507.61,"free":3495.43},{"epoch":26119328,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.1,"free":3495.94},{"epoch":26119329,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":507.31,"free":3495.71},{"epoch":26119330,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":507.33,"free":3495.72},{"epoch":26119331,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.3,"free":3495.75},{"epoch":26119332,"idl":96.48,"recv":0.02,"send":0.01,"writ":78.84,"used":521.57,"free":3483.09},{"epoch":26119333,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":509.98,"free":3492.99},{"epoch":26119334,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":509.95,"free":3493.01},{"epoch":26119335,"idl":99.68,"recv":0,"send":0,"writ":0.28,"used":509.48,"free":3493.51},{"epoch":26119336,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":509.44,"free":3493.54},{"epoch":26119337,"idl":99.68,"recv":0,"send":0,"writ":0.69,"used":508.63,"free":3494.36},{"epoch":26119338,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507,"free":3496.01},{"epoch":26119339,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.16,"free":3495.84},{"epoch":26119340,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":506.91,"free":3496.11},{"epoch":26119341,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":506.9,"free":3496.12},{"epoch":26119342,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":507.47,"free":3495.54},{"epoch":26119343,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":507.33,"free":3495.68},{"epoch":26119344,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":507.31,"free":3495.69},{"epoch":26119345,"idl":99.58,"recv":0,"send":0,"writ":0.3,"used":507.31,"free":3495.72},{"epoch":26119346,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":507.3,"free":3495.73},{"epoch":26119347,"idl":94.43,"recv":0,"send":0,"writ":0.57,"used":508.89,"free":3494.14},{"epoch":26119348,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":507.26,"free":3495.77},{"epoch":26119349,"idl":99.74,"recv":0,"send":0,"writ":0.22,"used":506.99,"free":3496.03},{"epoch":26119350,"idl":99.63,"recv":0,"send":0,"writ":0.29,"used":506.76,"free":3496.28},{"epoch":26119351,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":506.65,"free":3496.38},{"epoch":26119352,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":506.86,"free":3496.17},{"epoch":26119353,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":505.87,"free":3497.15},{"epoch":26119354,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":505.84,"free":3497.18},{"epoch":26119355,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":507.02,"free":3496.01},{"epoch":26119356,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.05,"free":3495.98},{"epoch":26119357,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":507.42,"free":3495.61},{"epoch":26119358,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":507.25,"free":3495.77},{"epoch":26119359,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":507.45,"free":3495.54},{"epoch":26119360,"idl":99.7,"recv":0,"send":0,"writ":0.28,"used":507.85,"free":3495.16},{"epoch":26119361,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.87,"free":3495.13},{"epoch":26119362,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.86,"free":3495.14},{"epoch":26119363,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":507.71,"free":3495.29},{"epoch":26119364,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.32,"free":3495.69},{"epoch":26119365,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":507.33,"free":3495.7},{"epoch":26119366,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.3,"free":3495.73},{"epoch":26119367,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.29,"free":3495.73},{"epoch":26119368,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":507.11,"free":3495.91},{"epoch":26119369,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.49,"free":3496.53},{"epoch":26119370,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":506.99,"free":3496.04},{"epoch":26119371,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":507.1,"free":3495.93},{"epoch":26119372,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":507.14,"free":3495.89},{"epoch":26119373,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":507.87,"free":3495.15},{"epoch":26119374,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":507.59,"free":3495.43},{"epoch":26119375,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":507.34,"free":3495.7},{"epoch":26119376,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":507.32,"free":3495.71},{"epoch":26119377,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":507.29,"free":3495.73},{"epoch":26119378,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":507.31,"free":3495.71},{"epoch":26119379,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":506.76,"free":3496.26},{"epoch":26119380,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":506.99,"free":3496.05},{"epoch":26119381,"idl":99.89,"recv":0,"send":0,"writ":0.12,"used":507.11,"free":3495.92},{"epoch":26119382,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":507.17,"free":3495.86},{"epoch":26119383,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":507.92,"free":3495.1},{"epoch":26119384,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.62,"free":3495.39},{"epoch":26119385,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":507.62,"free":3495.41},{"epoch":26119386,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.59,"free":3495.44},{"epoch":26119387,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.57,"free":3495.46},{"epoch":26119388,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":507.89,"free":3495.13},{"epoch":26119389,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":507.26,"free":3495.73},{"epoch":26119390,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":507.26,"free":3495.75},{"epoch":26119391,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.36,"free":3495.65},{"epoch":26119392,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.39,"free":3495.62},{"epoch":26119393,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":507.86,"free":3495.14},{"epoch":26119394,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":507.83,"free":3495.19},{"epoch":26119395,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":507.6,"free":3495.45},{"epoch":26119396,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.56,"free":3495.49},{"epoch":26119397,"idl":99.91,"recv":0,"send":0,"writ":0.22,"used":507.53,"free":3495.51},{"epoch":26119398,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":508.21,"free":3494.82},{"epoch":26119399,"idl":91.8,"recv":5.9,"send":0.01,"writ":75.84,"used":521.75,"free":3475.47},{"epoch":26119400,"idl":89.88,"recv":0.04,"send":0.01,"writ":211.62,"used":524.75,"free":3463.61},{"epoch":26119401,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":509.57,"free":3490.94},{"epoch":26119402,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":509.56,"free":3490.95},{"epoch":26119403,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":509.53,"free":3490.97},{"epoch":26119404,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":510.1,"free":3490.4},{"epoch":26119405,"idl":98.32,"recv":0,"send":0,"writ":15.7,"used":510.77,"free":3490.59},{"epoch":26119406,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.83,"free":3494.06},{"epoch":26119407,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":506.81,"free":3494.09},{"epoch":26119408,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":506.79,"free":3494.11},{"epoch":26119409,"idl":99.75,"recv":0,"send":0,"writ":0.61,"used":507.49,"free":3493.41},{"epoch":26119410,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":507.26,"free":3493.65},{"epoch":26119411,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.02,"free":3493.89},{"epoch":26119412,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.97,"free":3493.94},{"epoch":26119413,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":506.97,"free":3493.94},{"epoch":26119414,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":507.48,"free":3493.42},{"epoch":26119415,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":507.18,"free":3493.74},{"epoch":26119416,"idl":99.91,"recv":0,"send":0.01,"writ":0.16,"used":507.23,"free":3493.69},{"epoch":26119417,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.33,"free":3493.58},{"epoch":26119418,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.31,"free":3493.6},{"epoch":26119419,"idl":99.71,"recv":0,"send":0,"writ":0.69,"used":507.69,"free":3493.2},{"epoch":26119420,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":507.54,"free":3493.38},{"epoch":26119421,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.52,"free":3493.38},{"epoch":26119422,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.49,"free":3493.41},{"epoch":26119423,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":507.48,"free":3493.42},{"epoch":26119424,"idl":99.77,"recv":0,"send":0,"writ":0.5,"used":507.7,"free":3493.21},{"epoch":26119425,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":506.99,"free":3493.95},{"epoch":26119426,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.13,"free":3493.8},{"epoch":26119427,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.13,"free":3493.8},{"epoch":26119428,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.1,"free":3493.83},{"epoch":26119429,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":507.43,"free":3493.49},{"epoch":26119430,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":507.57,"free":3493.37},{"epoch":26119431,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.53,"free":3493.4},{"epoch":26119432,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":507.51,"free":3493.42},{"epoch":26119433,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.13,"free":3493.8},{"epoch":26119434,"idl":99.77,"recv":0,"send":0,"writ":0.45,"used":507.14,"free":3493.78},{"epoch":26119435,"idl":99.84,"recv":0,"send":0,"writ":0.41,"used":506.07,"free":3494.87},{"epoch":26119436,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.15,"free":3494.78},{"epoch":26119437,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":506.12,"free":3494.81},{"epoch":26119438,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.11,"free":3494.82},{"epoch":26119439,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":506.57,"free":3494.35},{"epoch":26119440,"idl":99.73,"recv":0,"send":0,"writ":0.42,"used":506.09,"free":3494.85},{"epoch":26119441,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":506.06,"free":3494.88},{"epoch":26119442,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.03,"free":3494.9},{"epoch":26119443,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.02,"free":3494.91},{"epoch":26119444,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":505.98,"free":3494.94},{"epoch":26119445,"idl":99.65,"recv":0,"send":0,"writ":0.7,"used":506.84,"free":3494.09},{"epoch":26119446,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.59,"free":3494.35},{"epoch":26119447,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":506.62,"free":3494.31},{"epoch":26119448,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.6,"free":3494.32},{"epoch":26119449,"idl":99.68,"recv":0,"send":0,"writ":0.36,"used":506.81,"free":3494.1},{"epoch":26119450,"idl":99.62,"recv":0,"send":0,"writ":0.67,"used":506.8,"free":3494.13},{"epoch":26119451,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.3,"free":3494.62},{"epoch":26119452,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.29,"free":3494.63},{"epoch":26119453,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":506.26,"free":3494.66},{"epoch":26119454,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.25,"free":3494.67},{"epoch":26119455,"idl":99.6,"recv":0,"send":0,"writ":0.7,"used":507.45,"free":3493.47},{"epoch":26119456,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":506.7,"free":3494.21},{"epoch":26119457,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":506.57,"free":3494.34},{"epoch":26119458,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":506.59,"free":3494.31},{"epoch":26119459,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.58,"free":3494.32},{"epoch":26119460,"idl":99.64,"recv":0,"send":0,"writ":0.72,"used":507.31,"free":3493.6},{"epoch":26119461,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.8,"free":3494.11},{"epoch":26119462,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.77,"free":3494.14},{"epoch":26119463,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":506.77,"free":3494.14},{"epoch":26119464,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.73,"free":3494.17},{"epoch":26119465,"idl":99.62,"recv":0.03,"send":0.98,"writ":0.77,"used":507.26,"free":3493.66},{"epoch":26119466,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":506.81,"free":3494.09},{"epoch":26119467,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":506.78,"free":3494.12},{"epoch":26119468,"idl":99.58,"recv":0,"send":0,"writ":0.18,"used":506.75,"free":3494.14},{"epoch":26119469,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":506.64,"free":3494.25},{"epoch":26119470,"idl":99.62,"recv":0,"send":0,"writ":0.59,"used":506.84,"free":3494.07},{"epoch":26119471,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":507.21,"free":3493.69},{"epoch":26119472,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.29,"free":3493.61},{"epoch":26119473,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.33,"free":3493.56},{"epoch":26119474,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.32,"free":3493.57},{"epoch":26119475,"idl":99.62,"recv":0,"send":0,"writ":0.45,"used":508.07,"free":3492.84},{"epoch":26119476,"idl":99.01,"recv":0,"send":0,"writ":0.39,"used":507.53,"free":3493.37},{"epoch":26119477,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.51,"free":3493.38},{"epoch":26119478,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.51,"free":3493.39},{"epoch":26119479,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":507.47,"free":3493.39},{"epoch":26119480,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":507.69,"free":3493.2},{"epoch":26119481,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":507.81,"free":3493.07},{"epoch":26119482,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.54,"free":3493.34},{"epoch":26119483,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.57,"free":3493.3},{"epoch":26119484,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.56,"free":3493.31},{"epoch":26119485,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":507.07,"free":3493.82},{"epoch":26119486,"idl":99.71,"recv":0,"send":0,"writ":0.65,"used":507.61,"free":3493.27},{"epoch":26119487,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.26,"free":3493.62},{"epoch":26119488,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":507.24,"free":3493.63},{"epoch":26119489,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":507.22,"free":3493.65},{"epoch":26119490,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":506.53,"free":3494.35},{"epoch":26119491,"idl":99.79,"recv":0,"send":0,"writ":0.63,"used":507.9,"free":3492.98},{"epoch":26119492,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":507.41,"free":3493.46},{"epoch":26119493,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.53,"free":3493.33},{"epoch":26119494,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.56,"free":3493.3},{"epoch":26119495,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":507.33,"free":3493.54},{"epoch":26119496,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":507.16,"free":3493.71},{"epoch":26119497,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":506.3,"free":3494.56},{"epoch":26119498,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":506.27,"free":3494.58},{"epoch":26119499,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":506.26,"free":3494.59},{"epoch":26119500,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":507.21,"free":3493.65},{"epoch":26119501,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":507.69,"free":3493.17},{"epoch":26119502,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":507.44,"free":3493.43},{"epoch":26119503,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.41,"free":3493.46},{"epoch":26119504,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":507.5,"free":3493.37},{"epoch":26119505,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":507.34,"free":3493.54},{"epoch":26119506,"idl":99.79,"recv":0,"send":0,"writ":0.44,"used":507.76,"free":3493.12},{"epoch":26119507,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":507.53,"free":3493.34},{"epoch":26119508,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":507.52,"free":3493.34},{"epoch":26119509,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":507.73,"free":3493.11},{"epoch":26119510,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":507.99,"free":3492.87},{"epoch":26119511,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":508.4,"free":3492.46},{"epoch":26119512,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.44,"free":3493.41},{"epoch":26119513,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.41,"free":3493.44},{"epoch":26119514,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.43,"free":3493.41},{"epoch":26119515,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":506.6,"free":3494.26},{"epoch":26119516,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":506.93,"free":3493.92},{"epoch":26119517,"idl":99.88,"recv":0,"send":0,"writ":0.45,"used":507.52,"free":3493.33},{"epoch":26119518,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.49,"free":3493.35},{"epoch":26119519,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.48,"free":3493.36},{"epoch":26119520,"idl":99.81,"recv":0.01,"send":0.84,"writ":0.3,"used":507.76,"free":3493.09},{"epoch":26119521,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":508.16,"free":3492.68},{"epoch":26119522,"idl":99.88,"recv":0,"send":0,"writ":0.41,"used":507.55,"free":3493.29},{"epoch":26119523,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":507.52,"free":3493.31},{"epoch":26119524,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":507.49,"free":3493.34},{"epoch":26119525,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":507.49,"free":3493.35},{"epoch":26119526,"idl":99.92,"recv":0,"send":0.03,"writ":0.17,"used":507.45,"free":3493.39},{"epoch":26119527,"idl":99.77,"recv":0.01,"send":0.21,"writ":0.59,"used":507.98,"free":3492.86},{"epoch":26119528,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":507.81,"free":3493.02},{"epoch":26119529,"idl":98.56,"recv":0,"send":0,"writ":0.19,"used":507.78,"free":3493.04},{"epoch":26119530,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":508.1,"free":3492.75},{"epoch":26119531,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.99,"free":3492.85},{"epoch":26119532,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":508.34,"free":3492.49},{"epoch":26119533,"idl":99.91,"recv":0,"send":0.01,"writ":0.15,"used":507.69,"free":3493.14},{"epoch":26119534,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":507.66,"free":3493.17},{"epoch":26119535,"idl":99.68,"recv":0,"send":0,"writ":0.31,"used":507.66,"free":3493.18},{"epoch":26119536,"idl":99.65,"recv":0,"send":0,"writ":0.18,"used":507.76,"free":3493.08},{"epoch":26119537,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":508.27,"free":3492.57},{"epoch":26119538,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":508.01,"free":3492.84},{"epoch":26119539,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":507.98,"free":3492.84},{"epoch":26119540,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":507.99,"free":3492.85},{"epoch":26119541,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":507.96,"free":3492.87},{"epoch":26119542,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":508.3,"free":3492.53},{"epoch":26119543,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":507.91,"free":3492.91},{"epoch":26119544,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.88,"free":3492.93},{"epoch":26119545,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":507.65,"free":3493.19},{"epoch":26119546,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":507.62,"free":3493.21},{"epoch":26119547,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":508.59,"free":3492.24},{"epoch":26119548,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":508.01,"free":3492.81},{"epoch":26119549,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.99,"free":3492.82},{"epoch":26119550,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":507.74,"free":3493.09},{"epoch":26119551,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.72,"free":3493.11},{"epoch":26119552,"idl":99.77,"recv":0,"send":0,"writ":0.42,"used":508.11,"free":3492.71},{"epoch":26119553,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":507.92,"free":3492.9},{"epoch":26119554,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.9,"free":3492.91},{"epoch":26119555,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":507.68,"free":3493.16},{"epoch":26119556,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.64,"free":3493.19},{"epoch":26119557,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.62,"free":3493.21},{"epoch":26119558,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":508.04,"free":3492.78},{"epoch":26119559,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.76,"free":3493.06},{"epoch":26119560,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":507.04,"free":3493.79},{"epoch":26119561,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507,"free":3493.83},{"epoch":26119562,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.99,"free":3493.84},{"epoch":26119563,"idl":99.68,"recv":0,"send":0,"writ":0.6,"used":508.04,"free":3492.78},{"epoch":26119564,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.68,"free":3493.13},{"epoch":26119565,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":506.53,"free":3494.3},{"epoch":26119566,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":506.44,"free":3494.39},{"epoch":26119567,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":506.4,"free":3494.42},{"epoch":26119568,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":508.1,"free":3492.72},{"epoch":26119569,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":507.9,"free":3492.88},{"epoch":26119570,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":508.03,"free":3492.76},{"epoch":26119571,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":508,"free":3492.79},{"epoch":26119572,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.96,"free":3492.82},{"epoch":26119573,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":508.45,"free":3492.33},{"epoch":26119574,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":508.16,"free":3492.62},{"epoch":26119575,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":507.91,"free":3492.88},{"epoch":26119576,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":507.89,"free":3492.9},{"epoch":26119577,"idl":99.9,"recv":0.01,"send":0.04,"writ":0.2,"used":508.14,"free":3492.65},{"epoch":26119578,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":508.6,"free":3492.17},{"epoch":26119579,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":508.21,"free":3492.56},{"epoch":26119580,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":508.45,"free":3492.33},{"epoch":26119581,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":508.43,"free":3492.34},{"epoch":26119582,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":508.41,"free":3492.37},{"epoch":26119583,"idl":99.77,"recv":0,"send":0,"writ":0.5,"used":508.63,"free":3492.13},{"epoch":26119584,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":508.12,"free":3492.64},{"epoch":26119585,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":507.73,"free":3493.05},{"epoch":26119586,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":507.79,"free":3492.99},{"epoch":26119587,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.78,"free":3492.99},{"epoch":26119588,"idl":99.78,"recv":0,"send":0,"writ":0.6,"used":508.21,"free":3492.56},{"epoch":26119589,"idl":99.84,"recv":0,"send":0.01,"writ":0.23,"used":507.05,"free":3493.71},{"epoch":26119590,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":506.95,"free":3493.83},{"epoch":26119591,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":506.92,"free":3493.85},{"epoch":26119592,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":506.9,"free":3493.87},{"epoch":26119593,"idl":99.77,"recv":0,"send":0,"writ":0.43,"used":507.24,"free":3493.53},{"epoch":26119594,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":506.96,"free":3493.8},{"epoch":26119595,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":507.53,"free":3493.24},{"epoch":26119596,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":507.51,"free":3493.26},{"epoch":26119597,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":507.5,"free":3493.27},{"epoch":26119598,"idl":99.77,"recv":0,"send":0,"writ":0.43,"used":507.8,"free":3492.96},{"epoch":26119599,"idl":99.58,"recv":0,"send":0,"writ":0.5,"used":507,"free":3493.74},{"epoch":26119600,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":506.24,"free":3494.52},{"epoch":26119601,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":506.19,"free":3494.57},{"epoch":26119602,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.17,"free":3494.57},{"epoch":26119603,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":506.14,"free":3494.6},{"epoch":26119604,"idl":99.74,"recv":0,"send":0,"writ":0.58,"used":507.41,"free":3493.35},{"epoch":26119605,"idl":99.71,"recv":0,"send":0,"writ":0.36,"used":507.26,"free":3493.52},{"epoch":26119606,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.29,"free":3493.48},{"epoch":26119607,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":507.27,"free":3493.5},{"epoch":26119608,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":507.25,"free":3493.51},{"epoch":26119609,"idl":99.71,"recv":0,"send":0.03,"writ":0.56,"used":508.05,"free":3492.7},{"epoch":26119610,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":507.45,"free":3493.32},{"epoch":26119611,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.41,"free":3493.36},{"epoch":26119612,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.41,"free":3493.36},{"epoch":26119613,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.37,"free":3493.39},{"epoch":26119614,"idl":99.76,"recv":0,"send":0,"writ":0.48,"used":507.58,"free":3493.18},{"epoch":26119615,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":506.97,"free":3493.81},{"epoch":26119616,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.03,"free":3493.74},{"epoch":26119617,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.01,"free":3493.76},{"epoch":26119618,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.98,"free":3493.78},{"epoch":26119619,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":507.61,"free":3493.15},{"epoch":26119620,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":507.21,"free":3493.57},{"epoch":26119621,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":507.18,"free":3493.61},{"epoch":26119622,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":507.17,"free":3493.62},{"epoch":26119623,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":507.14,"free":3493.64},{"epoch":26119624,"idl":99.74,"recv":0,"send":0,"writ":0.49,"used":507.68,"free":3493.1},{"epoch":26119625,"idl":99.83,"recv":0,"send":0,"writ":0.38,"used":507.46,"free":3493.33},{"epoch":26119626,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.52,"free":3493.27},{"epoch":26119627,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.5,"free":3493.28},{"epoch":26119628,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.5,"free":3493.28},{"epoch":26119629,"idl":99.51,"recv":0,"send":0,"writ":0.82,"used":508.2,"free":3492.55},{"epoch":26119630,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":507.69,"free":3493.08},{"epoch":26119631,"idl":99.9,"recv":0,"send":0,"writ":0.12,"used":507.66,"free":3493.1},{"epoch":26119632,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.63,"free":3493.13},{"epoch":26119633,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.61,"free":3493.14},{"epoch":26119634,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":507.99,"free":3492.79},{"epoch":26119635,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":507.71,"free":3493.08},{"epoch":26119636,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.75,"free":3493.03},{"epoch":26119637,"idl":99.9,"recv":0,"send":0,"writ":0.26,"used":507.5,"free":3493.28},{"epoch":26119638,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":507.47,"free":3493.31},{"epoch":26119639,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":507.82,"free":3492.96},{"epoch":26119640,"idl":99.67,"recv":0,"send":0,"writ":0.42,"used":506.58,"free":3494.21},{"epoch":26119641,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.43,"free":3494.36},{"epoch":26119642,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.42,"free":3494.36},{"epoch":26119643,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.39,"free":3494.39},{"epoch":26119644,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.38,"free":3494.39},{"epoch":26119645,"idl":99.58,"recv":0,"send":0,"writ":0.69,"used":506.99,"free":3493.8},{"epoch":26119646,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.62,"free":3494.16},{"epoch":26119647,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.18,"used":506.79,"free":3493.99},{"epoch":26119648,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.69,"free":3494.08},{"epoch":26119649,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":506.79,"free":3493.98},{"epoch":26119650,"idl":99.57,"recv":0,"send":0,"writ":0.71,"used":507.92,"free":3492.86},{"epoch":26119651,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.37,"free":3493.41},{"epoch":26119652,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.37,"free":3493.41},{"epoch":26119653,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.47,"free":3493.3},{"epoch":26119654,"idl":99.9,"recv":0,"send":0.01,"writ":0.17,"used":507.5,"free":3493.27},{"epoch":26119655,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":508.32,"free":3492.46},{"epoch":26119656,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":507.96,"free":3492.82},{"epoch":26119657,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.93,"free":3492.84},{"epoch":26119658,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.89,"free":3492.87},{"epoch":26119659,"idl":99.78,"recv":0,"send":0.01,"writ":0.31,"used":507.88,"free":3492.86},{"epoch":26119660,"idl":99.71,"recv":0,"send":0,"writ":0.72,"used":507.99,"free":3492.77},{"epoch":26119661,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.72,"free":3493.03},{"epoch":26119662,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":507.77,"free":3492.98},{"epoch":26119663,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.74,"free":3493.01},{"epoch":26119664,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.71,"free":3493.03},{"epoch":26119665,"idl":99.61,"recv":0,"send":0,"writ":0.6,"used":508.1,"free":3492.65},{"epoch":26119666,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":507.7,"free":3493.04},{"epoch":26119667,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":507.67,"free":3493.07},{"epoch":26119668,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.66,"free":3493.07},{"epoch":26119669,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.63,"free":3493.11},{"epoch":26119670,"idl":99.66,"recv":0,"send":0,"writ":0.71,"used":508.24,"free":3492.5},{"epoch":26119671,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.86,"free":3492.88},{"epoch":26119672,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":507.85,"free":3492.89},{"epoch":26119673,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.92,"free":3492.81},{"epoch":26119674,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.98,"free":3492.75},{"epoch":26119675,"idl":99.62,"recv":0,"send":0,"writ":0.75,"used":508.1,"free":3492.64},{"epoch":26119676,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.72,"free":3493.03},{"epoch":26119677,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":507.7,"free":3493.04},{"epoch":26119678,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.67,"free":3493.06},{"epoch":26119679,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.66,"free":3493.07},{"epoch":26119680,"idl":99.51,"recv":0,"send":0,"writ":0.46,"used":508.04,"free":3492.71},{"epoch":26119681,"idl":99.89,"recv":0,"send":0,"writ":0.39,"used":507.39,"free":3493.35},{"epoch":26119682,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.37,"free":3493.37},{"epoch":26119683,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.35,"free":3493.38},{"epoch":26119684,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.4,"free":3493.34},{"epoch":26119685,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":507.74,"free":3493},{"epoch":26119686,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":508.3,"free":3492.44},{"epoch":26119687,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.71,"free":3493.03},{"epoch":26119688,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.69,"free":3493.04},{"epoch":26119689,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":508.13,"free":3492.59},{"epoch":26119690,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":507.21,"free":3493.54},{"epoch":26119691,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":507.49,"free":3493.25},{"epoch":26119692,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":507.12,"free":3493.62},{"epoch":26119693,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":507.1,"free":3493.63},{"epoch":26119694,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":507.08,"free":3493.65},{"epoch":26119695,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":508.22,"free":3492.52},{"epoch":26119696,"idl":94.7,"recv":0.5,"send":0.02,"writ":262.11,"used":520.75,"free":3479.9},{"epoch":26119697,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":509.17,"free":3491.95},{"epoch":26119698,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":509.14,"free":3491.97},{"epoch":26119699,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":509.12,"free":3491.99},{"epoch":26119700,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":509.84,"free":3491.28},{"epoch":26119701,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":509.18,"free":3491.95},{"epoch":26119702,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.9,"free":3493.25},{"epoch":26119703,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.87,"free":3493.27},{"epoch":26119704,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.97,"free":3493.17},{"epoch":26119705,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":508.03,"free":3493.12},{"epoch":26119706,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":508.48,"free":3492.68},{"epoch":26119707,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":508,"free":3493.17},{"epoch":26119708,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.98,"free":3493.19},{"epoch":26119709,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.91,"free":3493.24},{"epoch":26119710,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":507.48,"free":3493.7},{"epoch":26119711,"idl":99.74,"recv":0,"send":0,"writ":0.51,"used":507.89,"free":3493.28},{"epoch":26119712,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":507.91,"free":3493.25},{"epoch":26119713,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.9,"free":3493.26},{"epoch":26119714,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":507.86,"free":3493.29},{"epoch":26119715,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":508.14,"free":3493.03},{"epoch":26119716,"idl":99.75,"recv":0,"send":0,"writ":0.4,"used":508.66,"free":3492.51},{"epoch":26119717,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":508.27,"free":3492.89},{"epoch":26119718,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":508.27,"free":3492.89},{"epoch":26119719,"idl":99.68,"recv":0,"send":0,"writ":0.34,"used":507.52,"free":3493.62},{"epoch":26119720,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":507.02,"free":3494.13},{"epoch":26119721,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.24,"free":3493.91},{"epoch":26119722,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":508.3,"free":3492.84},{"epoch":26119723,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.92,"free":3493.21},{"epoch":26119724,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.9,"free":3493.25},{"epoch":26119725,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":508.25,"free":3492.92},{"epoch":26119726,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":508.3,"free":3492.86},{"epoch":26119727,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":508.63,"free":3492.53},{"epoch":26119728,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":508.27,"free":3492.89},{"epoch":26119729,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":508.23,"free":3492.92},{"epoch":26119730,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":508.23,"free":3492.94},{"epoch":26119731,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":508.21,"free":3492.95},{"epoch":26119732,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":508.53,"free":3492.63},{"epoch":26119733,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":508.16,"free":3493},{"epoch":26119734,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":508.14,"free":3493.02},{"epoch":26119735,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":507.9,"free":3493.26},{"epoch":26119736,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":508.06,"free":3493.11},{"epoch":26119737,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":508.9,"free":3492.26},{"epoch":26119738,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":508.26,"free":3492.89},{"epoch":26119739,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":508.24,"free":3492.91},{"epoch":26119740,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":506.79,"free":3494.37},{"epoch":26119741,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.55,"free":3494.61},{"epoch":26119742,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":506.8,"free":3494.36},{"epoch":26119743,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":506.94,"free":3494.21},{"epoch":26119744,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.92,"free":3494.23},{"epoch":26119745,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":507.17,"free":3494},{"epoch":26119746,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.15,"free":3494.02},{"epoch":26119747,"idl":99.75,"recv":0,"send":0,"writ":0.5,"used":507.66,"free":3493.5},{"epoch":26119748,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":507.28,"free":3493.88},{"epoch":26119749,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":507.52,"free":3493.61},{"epoch":26119750,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":505.81,"free":3495.34},{"epoch":26119751,"idl":99.78,"recv":0.03,"send":0.85,"writ":0.16,"used":505.76,"free":3495.39},{"epoch":26119752,"idl":99.67,"recv":0.03,"send":1.16,"writ":0.46,"used":506.48,"free":3494.66},{"epoch":26119753,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":506.89,"free":3494.25},{"epoch":26119754,"idl":99.81,"recv":0.01,"send":0.1,"writ":0.16,"used":506.92,"free":3494.21},{"epoch":26119755,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":506.97,"free":3494.18},{"epoch":26119756,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.94,"free":3494.2},{"epoch":26119757,"idl":99.66,"recv":0,"send":0,"writ":0.59,"used":507.5,"free":3493.64},{"epoch":26119758,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":506.15,"free":3494.98},{"epoch":26119759,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":506.14,"free":3494.98},{"epoch":26119760,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":506.85,"free":3494.29},{"epoch":26119761,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.99,"free":3494.15},{"epoch":26119762,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.01,"free":3494.12},{"epoch":26119763,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":507.94,"free":3493.19},{"epoch":26119764,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.47,"free":3493.66},{"epoch":26119765,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":507.71,"free":3493.43},{"epoch":26119766,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.69,"free":3493.45},{"epoch":26119767,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.67,"free":3493.46},{"epoch":26119768,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":508.01,"free":3493.12},{"epoch":26119769,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":507.59,"free":3493.53},{"epoch":26119770,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":507.61,"free":3493.53},{"epoch":26119771,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.6,"free":3493.54},{"epoch":26119772,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.75,"free":3493.38},{"epoch":26119773,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":507.9,"free":3493.23},{"epoch":26119774,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":507.44,"free":3493.68},{"epoch":26119775,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":507.45,"free":3493.69},{"epoch":26119776,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":507.42,"free":3493.71},{"epoch":26119777,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.39,"free":3493.75},{"epoch":26119778,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":508.12,"free":3493.01},{"epoch":26119779,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":507.82,"free":3493.3},{"epoch":26119780,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":507.74,"free":3493.4},{"epoch":26119781,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":507.79,"free":3493.35},{"epoch":26119782,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.77,"free":3493.37},{"epoch":26119783,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":508.14,"free":3493},{"epoch":26119784,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":507.49,"free":3493.67},{"epoch":26119785,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":507.73,"free":3493.45},{"epoch":26119786,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.7,"free":3493.48},{"epoch":26119787,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.68,"free":3493.5},{"epoch":26119788,"idl":99.64,"recv":0,"send":0,"writ":0.4,"used":507.95,"free":3493.22},{"epoch":26119789,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":507.39,"free":3493.78},{"epoch":26119790,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":507.64,"free":3493.54},{"epoch":26119791,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":507.72,"free":3493.46},{"epoch":26119792,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":507.79,"free":3493.38},{"epoch":26119793,"idl":99.67,"recv":0,"send":0,"writ":0.43,"used":508.05,"free":3493.12},{"epoch":26119794,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":507.5,"free":3493.66},{"epoch":26119795,"idl":99.64,"recv":0,"send":0,"writ":0.36,"used":507.79,"free":3493.39},{"epoch":26119796,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":507.73,"free":3493.45},{"epoch":26119797,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.72,"free":3493.45},{"epoch":26119798,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":508.06,"free":3493.11},{"epoch":26119799,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.33,"used":507.72,"free":3493.44},{"epoch":26119800,"idl":99.54,"recv":0,"send":0,"writ":0.31,"used":506.57,"free":3494.6},{"epoch":26119801,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":506.51,"free":3494.66},{"epoch":26119802,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.49,"free":3494.68},{"epoch":26119803,"idl":99.8,"recv":0,"send":0.02,"writ":0.17,"used":506.46,"free":3494.7},{"epoch":26119804,"idl":99.54,"recv":0,"send":0,"writ":0.6,"used":507.85,"free":3493.3},{"epoch":26119805,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":507.64,"free":3493.53},{"epoch":26119806,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.63,"free":3493.54},{"epoch":26119807,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":507.6,"free":3493.56},{"epoch":26119808,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.77,"free":3493.38},{"epoch":26119809,"idl":99.58,"recv":0,"send":0,"writ":0.71,"used":508.33,"free":3492.81},{"epoch":26119810,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":507.99,"free":3493.16},{"epoch":26119811,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.96,"free":3493.19},{"epoch":26119812,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":507.93,"free":3493.21},{"epoch":26119813,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.92,"free":3493.22},{"epoch":26119814,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":507.69,"free":3493.44},{"epoch":26119815,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":506.92,"free":3494.23},{"epoch":26119816,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.89,"free":3494.26},{"epoch":26119817,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":507.11,"free":3494.03},{"epoch":26119818,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":507.09,"free":3494.05},{"epoch":26119819,"idl":99.67,"recv":0,"send":0,"writ":0.48,"used":506.97,"free":3494.16},{"epoch":26119820,"idl":99.75,"recv":0,"send":0,"writ":0.37,"used":507.01,"free":3494.14},{"epoch":26119821,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":507,"free":3494.14},{"epoch":26119822,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.98,"free":3494.16},{"epoch":26119823,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":506.96,"free":3494.18},{"epoch":26119824,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":507.8,"free":3493.33},{"epoch":26119825,"idl":99.66,"recv":0.05,"send":1.94,"writ":0.54,"used":507.43,"free":3493.72},{"epoch":26119826,"idl":99.8,"recv":0.03,"send":1.19,"writ":0.24,"used":507.46,"free":3493.65},{"epoch":26119827,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.47,"free":3493.64},{"epoch":26119828,"idl":99.79,"recv":0,"send":0.01,"writ":0.16,"used":507.44,"free":3493.68},{"epoch":26119829,"idl":99.66,"recv":0,"send":0.01,"writ":0.55,"used":507.82,"free":3493.29},{"epoch":26119830,"idl":99.62,"recv":0,"send":0,"writ":0.35,"used":507.65,"free":3493.48},{"epoch":26119831,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":507.63,"free":3493.5},{"epoch":26119832,"idl":98.4,"recv":0,"send":0,"writ":0.17,"used":507.6,"free":3493.53},{"epoch":26119833,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.59,"free":3493.53},{"epoch":26119834,"idl":99.69,"recv":0,"send":0,"writ":0.51,"used":507.97,"free":3493.15},{"epoch":26119835,"idl":99.75,"recv":0,"send":0,"writ":0.38,"used":507.54,"free":3493.59},{"epoch":26119836,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.48,"free":3493.65},{"epoch":26119837,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.46,"free":3493.67},{"epoch":26119838,"idl":99.83,"recv":0,"send":0.01,"writ":0.15,"used":507.43,"free":3493.7},{"epoch":26119839,"idl":99.58,"recv":0,"send":0,"writ":0.59,"used":508.55,"free":3492.55},{"epoch":26119840,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":507.89,"free":3493.22},{"epoch":26119841,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.88,"free":3493.23},{"epoch":26119842,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.84,"free":3493.26},{"epoch":26119843,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.83,"free":3493.27},{"epoch":26119844,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":507.8,"free":3493.29},{"epoch":26119845,"idl":99.48,"recv":0,"send":0,"writ":0.7,"used":508.05,"free":3493.06},{"epoch":26119846,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.76,"free":3493.35},{"epoch":26119847,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":507.74,"free":3493.37},{"epoch":26119848,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.72,"free":3493.38},{"epoch":26119849,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.69,"free":3493.4},{"epoch":26119850,"idl":99.49,"recv":0,"send":0,"writ":0.68,"used":508.51,"free":3492.6},{"epoch":26119851,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":508.16,"free":3492.94},{"epoch":26119852,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":508.15,"free":3492.95},{"epoch":26119853,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":508.11,"free":3492.98},{"epoch":26119854,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":508.09,"free":3493},{"epoch":26119855,"idl":99.62,"recv":0,"send":0,"writ":0.69,"used":508.15,"free":3492.97},{"epoch":26119856,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.88,"free":3493.23},{"epoch":26119857,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":508,"free":3493.11},{"epoch":26119858,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.97,"free":3493.13},{"epoch":26119859,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.96,"free":3493.14},{"epoch":26119860,"idl":99.46,"recv":0,"send":0,"writ":0.64,"used":508.74,"free":3492.37},{"epoch":26119861,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":508.19,"free":3492.92},{"epoch":26119862,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":508.16,"free":3492.94},{"epoch":26119863,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":508.12,"free":3492.97},{"epoch":26119864,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":508.11,"free":3492.98},{"epoch":26119865,"idl":99.59,"recv":0,"send":0,"writ":0.66,"used":508.41,"free":3492.72},{"epoch":26119866,"idl":99.78,"recv":0,"send":0,"writ":0.21,"used":507.85,"free":3493.28},{"epoch":26119867,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":507.9,"free":3493.22},{"epoch":26119868,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.99,"free":3493.12},{"epoch":26119869,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":508.21,"free":3492.88},{"epoch":26119870,"idl":99.59,"recv":0,"send":0,"writ":0.63,"used":508.62,"free":3492.48},{"epoch":26119871,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":507.94,"free":3493.16},{"epoch":26119872,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.93,"free":3493.17},{"epoch":26119873,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.9,"free":3493.2},{"epoch":26119874,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.86,"free":3493.24},{"epoch":26119875,"idl":99.49,"recv":0,"send":0,"writ":0.59,"used":508.24,"free":3492.88},{"epoch":26119876,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":508.07,"free":3493.05},{"epoch":26119877,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":508.05,"free":3493.06},{"epoch":26119878,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":508.04,"free":3493.07},{"epoch":26119879,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":508.2,"free":3492.91},{"epoch":26119880,"idl":99.48,"recv":0,"send":0,"writ":0.54,"used":508.19,"free":3492.93},{"epoch":26119881,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":508.16,"free":3492.96},{"epoch":26119882,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":508.14,"free":3492.97},{"epoch":26119883,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":508.12,"free":3492.99},{"epoch":26119884,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":508.1,"free":3493},{"epoch":26119885,"idl":99.7,"recv":0,"send":0,"writ":0.33,"used":508.34,"free":3492.78},{"epoch":26119886,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":507.83,"free":3493.28},{"epoch":26119887,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.32,"free":3493.79},{"epoch":26119888,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":507.31,"free":3493.8},{"epoch":26119889,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.3,"free":3493.8},{"epoch":26119890,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":507.67,"free":3493.45},{"epoch":26119891,"idl":99.65,"recv":0,"send":0,"writ":0.53,"used":508.49,"free":3492.63},{"epoch":26119892,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":508.17,"free":3492.94},{"epoch":26119893,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":508.15,"free":3492.96},{"epoch":26119894,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":508.13,"free":3492.97},{"epoch":26119895,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":508.38,"free":3492.74},{"epoch":26119896,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":508.71,"free":3492.4},{"epoch":26119897,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.38,"free":3493.73},{"epoch":26119898,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.09,"free":3494.02},{"epoch":26119899,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":507.3,"free":3493.78},{"epoch":26119900,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":507.31,"free":3493.79},{"epoch":26119901,"idl":99.64,"recv":0,"send":0,"writ":0.51,"used":507.76,"free":3493.33},{"epoch":26119902,"idl":99.79,"recv":0,"send":0,"writ":0.21,"used":507.37,"free":3493.71},{"epoch":26119903,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":507.43,"free":3493.65},{"epoch":26119904,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":507.41,"free":3493.68},{"epoch":26119905,"idl":99.61,"recv":0,"send":0,"writ":0.33,"used":506.44,"free":3494.67},{"epoch":26119906,"idl":99.66,"recv":0,"send":0,"writ":0.44,"used":507.02,"free":3494.1},{"epoch":26119907,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":507.12,"free":3493.98},{"epoch":26119908,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":507.1,"free":3494},{"epoch":26119909,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":507.08,"free":3494.02},{"epoch":26119910,"idl":99.63,"recv":0,"send":0,"writ":0.32,"used":506.12,"free":3495},{"epoch":26119911,"idl":99.67,"recv":0,"send":0,"writ":0.42,"used":506.87,"free":3494.24},{"epoch":26119912,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":507.28,"free":3493.83},{"epoch":26119913,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.27,"free":3493.83},{"epoch":26119914,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":507.43,"free":3493.67},{"epoch":26119915,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":507.44,"free":3493.67},{"epoch":26119916,"idl":99.68,"recv":0,"send":0,"writ":0.39,"used":508.05,"free":3493.06},{"epoch":26119917,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":507.15,"free":3493.95},{"epoch":26119918,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.13,"free":3493.97},{"epoch":26119919,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.11,"free":3493.98},{"epoch":26119920,"idl":99.55,"recv":0,"send":0,"writ":0.29,"used":507.11,"free":3494.01},{"epoch":26119921,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":507.16,"free":3493.95},{"epoch":26119922,"idl":99.73,"recv":0,"send":0,"writ":0.53,"used":507.91,"free":3493.2},{"epoch":26119923,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.54,"free":3493.55},{"epoch":26119924,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.51,"free":3493.58},{"epoch":26119925,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":507.58,"free":3493.53},{"epoch":26119926,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.71,"free":3493.4},{"epoch":26119927,"idl":99.73,"recv":0,"send":0,"writ":0.82,"used":507.43,"free":3493.67},{"epoch":26119928,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":506.93,"free":3494.17},{"epoch":26119929,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":507.13,"free":3493.94},{"epoch":26119930,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":507.13,"free":3493.96},{"epoch":26119931,"idl":99.84,"recv":0,"send":0.01,"writ":0.15,"used":507.12,"free":3493.97},{"epoch":26119932,"idl":99.68,"recv":0,"send":0,"writ":0.69,"used":507.85,"free":3493.23},{"epoch":26119933,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.57,"free":3493.51},{"epoch":26119934,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":507.55,"free":3493.55},{"epoch":26119935,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":507.31,"free":3493.81},{"epoch":26119936,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.35,"free":3493.77},{"epoch":26119937,"idl":99.62,"recv":0,"send":0,"writ":0.51,"used":508.11,"free":3493},{"epoch":26119938,"idl":99.76,"recv":0,"send":0,"writ":0.23,"used":507.44,"free":3493.66},{"epoch":26119939,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":507.41,"free":3493.69},{"epoch":26119940,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":507.41,"free":3493.71},{"epoch":26119941,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":507.39,"free":3493.72},{"epoch":26119942,"idl":99.65,"recv":0,"send":0,"writ":0.52,"used":507.73,"free":3493.38},{"epoch":26119943,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":507.35,"free":3493.75},{"epoch":26119944,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.33,"free":3493.77},{"epoch":26119945,"idl":99.61,"recv":0,"send":0,"writ":0.32,"used":507.09,"free":3494.03},{"epoch":26119946,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.06,"free":3494.05},{"epoch":26119947,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":507.41,"free":3493.7},{"epoch":26119948,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":507.03,"free":3494.08},{"epoch":26119949,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":507.2,"free":3493.91},{"epoch":26119950,"idl":99.63,"recv":0,"send":0,"writ":0.38,"used":506.23,"free":3494.89},{"epoch":26119951,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":506.17,"free":3494.94},{"epoch":26119952,"idl":99.74,"recv":0,"send":0,"writ":0.4,"used":506.74,"free":3494.37},{"epoch":26119953,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":506.88,"free":3494.23},{"epoch":26119954,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.86,"free":3494.25},{"epoch":26119955,"idl":99.62,"recv":0,"send":0,"writ":0.35,"used":506.38,"free":3494.74},{"epoch":26119956,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.33,"free":3494.79},{"epoch":26119957,"idl":99.71,"recv":0,"send":0,"writ":0.49,"used":506.89,"free":3494.22},{"epoch":26119958,"idl":99.85,"recv":0,"send":0,"writ":0.22,"used":507.76,"free":3493.34},{"epoch":26119959,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":507.63,"free":3493.45},{"epoch":26119960,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":506.73,"free":3494.37},{"epoch":26119961,"idl":99.76,"recv":0.01,"send":0.12,"writ":0.18,"used":506.68,"free":3494.41},{"epoch":26119962,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":506.67,"free":3494.42},{"epoch":26119963,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":508.18,"free":3492.91},{"epoch":26119964,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.6,"free":3493.48},{"epoch":26119965,"idl":99.67,"recv":0,"send":0,"writ":0.31,"used":507.85,"free":3493.25},{"epoch":26119966,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.83,"free":3493.27},{"epoch":26119967,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":507.81,"free":3493.28},{"epoch":26119968,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":508.13,"free":3492.95},{"epoch":26119969,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.77,"free":3493.31},{"epoch":26119970,"idl":99.73,"recv":0,"send":0,"writ":0.37,"used":507.52,"free":3493.57},{"epoch":26119971,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":507.61,"free":3493.48},{"epoch":26119972,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.65,"free":3493.43},{"epoch":26119973,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":508.13,"free":3492.95},{"epoch":26119974,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.86,"free":3493.21},{"epoch":26119975,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":507.85,"free":3493.24},{"epoch":26119976,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.84,"free":3493.25},{"epoch":26119977,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.82,"free":3493.27},{"epoch":26119978,"idl":99.71,"recv":0,"send":0,"writ":0.53,"used":508.16,"free":3492.92},{"epoch":26119979,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.78,"free":3493.3},{"epoch":26119980,"idl":99.46,"recv":0,"send":0,"writ":0.3,"used":507.04,"free":3494.05},{"epoch":26119981,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":507.01,"free":3494.08},{"epoch":26119982,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.14,"free":3493.94},{"epoch":26119983,"idl":99.71,"recv":0,"send":0,"writ":0.52,"used":508.2,"free":3492.87},{"epoch":26119984,"idl":99.68,"recv":0,"send":0,"writ":0.2,"used":507.91,"free":3493.15},{"epoch":26119985,"idl":99.6,"recv":0,"send":0,"writ":0.3,"used":507.43,"free":3493.66},{"epoch":26119986,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":507.4,"free":3493.68},{"epoch":26119987,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":507.37,"free":3493.71},{"epoch":26119988,"idl":99.72,"recv":0,"send":0,"writ":0.45,"used":507.86,"free":3493.21},{"epoch":26119989,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":508.06,"free":3492.99},{"epoch":26119990,"idl":99.67,"recv":0,"send":0,"writ":0.27,"used":508.1,"free":3492.97},{"epoch":26119991,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":508.05,"free":3493.01},{"epoch":26119992,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":508.04,"free":3493.02},{"epoch":26119993,"idl":99.71,"recv":0,"send":0,"writ":0.5,"used":508.3,"free":3492.76},{"epoch":26119994,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":507.85,"free":3493.22},{"epoch":26119995,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":507.7,"free":3493.39},{"epoch":26119996,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.66,"free":3493.42},{"epoch":26119997,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":507.65,"free":3493.43},{"epoch":26119998,"idl":99.71,"recv":0,"send":0,"writ":0.4,"used":507.94,"free":3493.14},{"epoch":26119999,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":507.35,"free":3493.72},{"epoch":26120000,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":507.82,"free":3493.27},{"epoch":26120001,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.81,"free":3493.28},{"epoch":26120002,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.79,"free":3493.3},{"epoch":26120003,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":507.77,"free":3493.31},{"epoch":26120004,"idl":99.69,"recv":0,"send":0,"writ":0.62,"used":508.52,"free":3492.55},{"epoch":26120005,"idl":99.67,"recv":0,"send":0,"writ":0.36,"used":506.98,"free":3494.11},{"epoch":26120006,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":506.93,"free":3494.15},{"epoch":26120007,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.92,"free":3494.17},{"epoch":26120008,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.89,"free":3494.19},{"epoch":26120009,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":507.8,"free":3493.28},{"epoch":26120010,"idl":99.63,"recv":0,"send":0,"writ":0.31,"used":507.62,"free":3493.46},{"epoch":26120011,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.59,"free":3493.5},{"epoch":26120012,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.56,"free":3493.52},{"epoch":26120013,"idl":97.49,"recv":0,"send":0,"writ":0.15,"used":507.53,"free":3493.54},{"epoch":26120014,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":508.05,"free":3493.01},{"epoch":26120015,"idl":99.66,"recv":0,"send":0,"writ":0.38,"used":507.84,"free":3493.24},{"epoch":26120016,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":507.92,"free":3493.16},{"epoch":26120017,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.9,"free":3493.17},{"epoch":26120018,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.88,"free":3493.18},{"epoch":26120019,"idl":99.44,"recv":0,"send":0,"writ":0.7,"used":508.35,"free":3492.7},{"epoch":26120020,"idl":99.44,"recv":0,"send":0,"writ":0.29,"used":507.16,"free":3493.89},{"epoch":26120021,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":507.09,"free":3493.96},{"epoch":26120022,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.08,"free":3493.97},{"epoch":26120023,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.05,"free":3493.99},{"epoch":26120024,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":507.72,"free":3493.32},{"epoch":26120025,"idl":99.59,"recv":0,"send":0,"writ":0.45,"used":507.77,"free":3493.29},{"epoch":26120026,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":507.74,"free":3493.32},{"epoch":26120027,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.92,"free":3493.14},{"epoch":26120028,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":507.88,"free":3493.17},{"epoch":26120029,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":508.23,"free":3492.81},{"epoch":26120030,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":508.34,"free":3492.72},{"epoch":26120031,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":508.34,"free":3492.72},{"epoch":26120032,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":508.31,"free":3492.74},{"epoch":26120033,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":508.29,"free":3492.76},{"epoch":26120034,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":508.59,"free":3492.45},{"epoch":26120035,"idl":99.65,"recv":0,"send":0,"writ":0.51,"used":508.01,"free":3493.05},{"epoch":26120036,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":507.98,"free":3493.07},{"epoch":26120037,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":508.07,"free":3492.98},{"epoch":26120038,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":508.13,"free":3492.91},{"epoch":26120039,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":508.47,"free":3492.58},{"epoch":26120040,"idl":99.59,"recv":0,"send":0,"writ":0.44,"used":507.92,"free":3493.15},{"epoch":26120041,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":507.84,"free":3493.23},{"epoch":26120042,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.82,"free":3493.25},{"epoch":26120043,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.8,"free":3493.26},{"epoch":26120044,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":507.78,"free":3493.28},{"epoch":26120045,"idl":99.57,"recv":0,"send":0,"writ":0.7,"used":508.95,"free":3492.13},{"epoch":26120046,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":508.25,"free":3492.82},{"epoch":26120047,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":508.23,"free":3492.83},{"epoch":26120048,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":508.21,"free":3492.85},{"epoch":26120049,"idl":99.56,"recv":0,"send":0,"writ":0.29,"used":508.37,"free":3492.67},{"epoch":26120050,"idl":99.5,"recv":0,"send":0,"writ":0.75,"used":508.38,"free":3492.67},{"epoch":26120051,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.85,"free":3493.2},{"epoch":26120052,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":507.46,"free":3493.58},{"epoch":26120053,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":507.07,"free":3493.97},{"epoch":26120054,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.05,"free":3494},{"epoch":26120055,"idl":99.66,"recv":0,"send":0,"writ":0.71,"used":507.76,"free":3493.31},{"epoch":26120056,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.29,"free":3493.77},{"epoch":26120057,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":507.26,"free":3493.8},{"epoch":26120058,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.25,"free":3493.8},{"epoch":26120059,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.22,"free":3493.83},{"epoch":26120060,"idl":96.32,"recv":0.02,"send":0.01,"writ":14.69,"used":518.83,"free":3484.31},{"epoch":26120061,"idl":99.74,"recv":0,"send":0,"writ":64.54,"used":509.92,"free":3491.1},{"epoch":26120062,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":509.89,"free":3491.11},{"epoch":26120063,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":509.88,"free":3491.13},{"epoch":26120064,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":509.87,"free":3491.13},{"epoch":26120065,"idl":99.59,"recv":0,"send":0,"writ":0.57,"used":509.39,"free":3491.63},{"epoch":26120066,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":506.49,"free":3494.55},{"epoch":26120067,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506.64,"free":3494.4},{"epoch":26120068,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":506.63,"free":3494.4},{"epoch":26120069,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":506.6,"free":3494.43},{"epoch":26120070,"idl":99.51,"recv":0,"send":0,"writ":0.48,"used":507.73,"free":3493.32},{"epoch":26120071,"idl":99.88,"recv":0,"send":0,"writ":0.39,"used":506.34,"free":3494.72},{"epoch":26120072,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.32,"free":3494.74},{"epoch":26120073,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":506.28,"free":3494.77},{"epoch":26120074,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":506.27,"free":3494.79},{"epoch":26120075,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":507.22,"free":3493.85},{"epoch":26120076,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":507.36,"free":3493.71},{"epoch":26120077,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.06,"free":3494},{"epoch":26120078,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.13,"free":3493.92},{"epoch":26120079,"idl":99.65,"recv":0,"send":0,"writ":0.27,"used":506.91,"free":3494.12},{"epoch":26120080,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":507.1,"free":3493.95},{"epoch":26120081,"idl":99.59,"recv":0,"send":0,"writ":0.55,"used":507.63,"free":3493.41},{"epoch":26120082,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.29,"free":3493.75},{"epoch":26120083,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":507.27,"free":3493.76},{"epoch":26120084,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.05,"free":3494.01},{"epoch":26120085,"idl":99.68,"recv":0,"send":0,"writ":0.31,"used":506.54,"free":3494.55},{"epoch":26120086,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":507.9,"free":3493.18},{"epoch":26120087,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.47,"free":3493.61},{"epoch":26120088,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.44,"free":3493.63},{"epoch":26120089,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.6,"free":3493.47},{"epoch":26120090,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":507.85,"free":3493.23},{"epoch":26120091,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":507.94,"free":3493.15},{"epoch":26120092,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":507.32,"free":3493.75},{"epoch":26120093,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.31,"free":3493.76},{"epoch":26120094,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":507.28,"free":3493.79},{"epoch":26120095,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":507.76,"free":3493.32},{"epoch":26120096,"idl":99.75,"recv":0,"send":0,"writ":0.45,"used":507.39,"free":3493.69},{"epoch":26120097,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":505.75,"free":3495.32},{"epoch":26120098,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":505.74,"free":3495.33},{"epoch":26120099,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":505.82,"free":3495.25},{"epoch":26120100,"idl":99.67,"recv":0,"send":0,"writ":0.28,"used":507.1,"free":3494},{"epoch":26120101,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.46,"used":507.67,"free":3493.43},{"epoch":26120102,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":507.74,"free":3493.35},{"epoch":26120103,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.7,"free":3493.38},{"epoch":26120104,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":507.68,"free":3493.4},{"epoch":26120105,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":507.31,"free":3493.78},{"epoch":26120106,"idl":99.71,"recv":0,"send":0,"writ":0.43,"used":508.07,"free":3493.02},{"epoch":26120107,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":507.59,"free":3493.5},{"epoch":26120108,"idl":99.91,"recv":0,"send":0.01,"writ":0.18,"used":507.55,"free":3493.53},{"epoch":26120109,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":507.77,"free":3493.29},{"epoch":26120110,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":506.8,"free":3494.27},{"epoch":26120111,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":507.12,"free":3493.95},{"epoch":26120112,"idl":99.82,"recv":0,"send":0,"writ":0.4,"used":507.49,"free":3493.57},{"epoch":26120113,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.45,"free":3493.61},{"epoch":26120114,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.43,"free":3493.62},{"epoch":26120115,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":507.68,"free":3493.39},{"epoch":26120116,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":508.17,"free":3492.9},{"epoch":26120117,"idl":99.74,"recv":0,"send":0,"writ":0.48,"used":507.09,"free":3493.97},{"epoch":26120118,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":507.06,"free":3494},{"epoch":26120119,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.05,"free":3494.01},{"epoch":26120120,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":508.1,"free":3492.97},{"epoch":26120121,"idl":99.88,"recv":0,"send":0,"writ":0.22,"used":508.01,"free":3493.05},{"epoch":26120122,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":508.12,"free":3492.94},{"epoch":26120123,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":507.72,"free":3493.33},{"epoch":26120124,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.69,"free":3493.36},{"epoch":26120125,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":507.47,"free":3493.6},{"epoch":26120126,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":507.43,"free":3493.64},{"epoch":26120127,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":507.96,"free":3493.1},{"epoch":26120128,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.61,"free":3493.45},{"epoch":26120129,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.58,"free":3493.47},{"epoch":26120130,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":507.59,"free":3493.48},{"epoch":26120131,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.56,"free":3493.51},{"epoch":26120132,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":508.21,"free":3492.85},{"epoch":26120133,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":508.02,"free":3493.04},{"epoch":26120134,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":508,"free":3493.05},{"epoch":26120135,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":506.54,"free":3494.53},{"epoch":26120136,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.51,"free":3494.56},{"epoch":26120137,"idl":99.71,"recv":0,"send":0,"writ":0.39,"used":507.44,"free":3493.62},{"epoch":26120138,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":507.7,"free":3493.36},{"epoch":26120139,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":508.04,"free":3493},{"epoch":26120140,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":507.38,"free":3493.67},{"epoch":26120141,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.34,"free":3493.7},{"epoch":26120142,"idl":99.76,"recv":0,"send":0,"writ":0.49,"used":507.76,"free":3493.28},{"epoch":26120143,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":507.54,"free":3493.49},{"epoch":26120144,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.53,"free":3493.5},{"epoch":26120145,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":507.77,"free":3493.28},{"epoch":26120146,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.76,"free":3493.29},{"epoch":26120147,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":508.08,"free":3492.95},{"epoch":26120148,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":507.72,"free":3493.32},{"epoch":26120149,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.69,"free":3493.34},{"epoch":26120150,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":507.22,"free":3493.83},{"epoch":26120151,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.31,"free":3493.73},{"epoch":26120152,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":507.35,"free":3493.68},{"epoch":26120153,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":508.23,"free":3492.8},{"epoch":26120154,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.56,"free":3493.47},{"epoch":26120155,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":507.31,"free":3493.74},{"epoch":26120156,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.3,"free":3493.75},{"epoch":26120157,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.26,"free":3493.78},{"epoch":26120158,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":508,"free":3493.03},{"epoch":26120159,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.71,"free":3493.32},{"epoch":26120160,"idl":99.63,"recv":0,"send":0,"writ":0.28,"used":507.96,"free":3493.08},{"epoch":26120161,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":507.94,"free":3493.1},{"epoch":26120162,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.91,"free":3493.12},{"epoch":26120163,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":508.42,"free":3492.61},{"epoch":26120164,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":508.05,"free":3492.97},{"epoch":26120165,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":508.36,"free":3492.68},{"epoch":26120166,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":508.28,"free":3492.76},{"epoch":26120167,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":508.25,"free":3492.78},{"epoch":26120168,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":508.43,"free":3492.6},{"epoch":26120169,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":507.96,"free":3493.04},{"epoch":26120170,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":507.97,"free":3493.04},{"epoch":26120171,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.93,"free":3493.08},{"epoch":26120172,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.92,"free":3493.09},{"epoch":26120173,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":508.55,"free":3492.45},{"epoch":26120174,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":508.07,"free":3492.95},{"epoch":26120175,"idl":99.53,"recv":0,"send":0,"writ":0.3,"used":507.35,"free":3493.69},{"epoch":26120176,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":507.3,"free":3493.73},{"epoch":26120177,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":507.28,"free":3493.75},{"epoch":26120178,"idl":99.77,"recv":0,"send":0,"writ":0.43,"used":507.85,"free":3493.18},{"epoch":26120179,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":507.98,"free":3493.04},{"epoch":26120180,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":507.03,"free":3494},{"epoch":26120181,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.98,"free":3494.05},{"epoch":26120182,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":506.97,"free":3494.05},{"epoch":26120183,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":507.51,"free":3493.51},{"epoch":26120184,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.65,"free":3493.37},{"epoch":26120185,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":507.53,"free":3493.5},{"epoch":26120186,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.56,"free":3493.47},{"epoch":26120187,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.54,"free":3493.49},{"epoch":26120188,"idl":99.77,"recv":0,"send":0,"writ":0.4,"used":507.86,"free":3493.16},{"epoch":26120189,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":507.25,"free":3493.76},{"epoch":26120190,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":507.8,"free":3493.23},{"epoch":26120191,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.74,"free":3493.29},{"epoch":26120192,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.71,"free":3493.32},{"epoch":26120193,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":507.7,"free":3493.32},{"epoch":26120194,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":508.59,"free":3492.43},{"epoch":26120195,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":508.16,"free":3492.87},{"epoch":26120196,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":508.24,"free":3492.78},{"epoch":26120197,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":508.12,"free":3492.9},{"epoch":26120198,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":508.04,"free":3492.98},{"epoch":26120199,"idl":99.55,"recv":0,"send":0,"writ":0.66,"used":508.67,"free":3492.32},{"epoch":26120200,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":508.25,"free":3492.76},{"epoch":26120201,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":508.23,"free":3492.78},{"epoch":26120202,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":508.21,"free":3492.79},{"epoch":26120203,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":508.19,"free":3492.81},{"epoch":26120204,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":508.71,"free":3492.28},{"epoch":26120205,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":507.7,"free":3493.3},{"epoch":26120206,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.64,"free":3493.36},{"epoch":26120207,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.35,"free":3493.65},{"epoch":26120208,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.83,"free":3494.16},{"epoch":26120209,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":507.47,"free":3493.52},{"epoch":26120210,"idl":99.74,"recv":0,"send":0.02,"writ":0.32,"used":507.53,"free":3493.48},{"epoch":26120211,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.49,"free":3493.52},{"epoch":26120212,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.47,"free":3493.52},{"epoch":26120213,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.45,"free":3493.55},{"epoch":26120214,"idl":99.77,"recv":0,"send":0.01,"writ":0.41,"used":507.71,"free":3493.28},{"epoch":26120215,"idl":99.73,"recv":0,"send":0,"writ":0.46,"used":507.56,"free":3493.45},{"epoch":26120216,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":507.53,"free":3493.47},{"epoch":26120217,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":507.51,"free":3493.48},{"epoch":26120218,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":507.49,"free":3493.51},{"epoch":26120219,"idl":99.33,"recv":0,"send":0,"writ":0.41,"used":507.99,"free":3492.99},{"epoch":26120220,"idl":99.6,"recv":0,"send":0,"writ":0.48,"used":506.74,"free":3494.26},{"epoch":26120221,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.72,"free":3494.29},{"epoch":26120222,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":506.7,"free":3494.3},{"epoch":26120223,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.68,"free":3494.32},{"epoch":26120224,"idl":99.74,"recv":0,"send":0,"writ":0.39,"used":507.05,"free":3493.94},{"epoch":26120225,"idl":99.75,"recv":0,"send":0,"writ":0.47,"used":506.37,"free":3494.65},{"epoch":26120226,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":506.33,"free":3494.68},{"epoch":26120227,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.31,"free":3494.7},{"epoch":26120228,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":506.29,"free":3494.72},{"epoch":26120229,"idl":99.57,"recv":0,"send":0,"writ":0.65,"used":507.67,"free":3493.32},{"epoch":26120230,"idl":99.73,"recv":0,"send":0,"writ":0.38,"used":507.51,"free":3493.5},{"epoch":26120231,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":507.48,"free":3493.52},{"epoch":26120232,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":507.46,"free":3493.54},{"epoch":26120233,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.44,"free":3493.55},{"epoch":26120234,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.41,"free":3493.58},{"epoch":26120235,"idl":99.53,"recv":0,"send":0,"writ":0.69,"used":507.9,"free":3493.1},{"epoch":26120236,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.21,"free":3493.78},{"epoch":26120237,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":507.56,"free":3493.43},{"epoch":26120238,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.54,"free":3493.45},{"epoch":26120239,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.53,"free":3493.45},{"epoch":26120240,"idl":99.59,"recv":0,"send":0,"writ":0.72,"used":508.14,"free":3492.87},{"epoch":26120241,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":507.76,"free":3493.24},{"epoch":26120242,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.72,"free":3493.27},{"epoch":26120243,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.72,"free":3493.27},{"epoch":26120244,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.68,"free":3493.3},{"epoch":26120245,"idl":99.5,"recv":0,"send":0,"writ":0.71,"used":507.62,"free":3493.38},{"epoch":26120246,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":507.42,"free":3493.58},{"epoch":26120247,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.41,"free":3493.58},{"epoch":26120248,"idl":99.8,"recv":0.08,"send":5.88,"writ":0.36,"used":507.46,"free":3493.51},{"epoch":26120249,"idl":99.81,"recv":0.08,"send":9.42,"writ":0.75,"used":507.4,"free":3493.48},{"epoch":26120250,"idl":99.6,"recv":0,"send":0,"writ":0.9,"used":507.74,"free":3493.12},{"epoch":26120251,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.27,"free":3493.59},{"epoch":26120252,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":507.44,"free":3493.42},{"epoch":26120253,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.4,"free":3493.45},{"epoch":26120254,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":507.39,"free":3493.45},{"epoch":26120255,"idl":99.62,"recv":0,"send":0,"writ":0.7,"used":507.49,"free":3493.37},{"epoch":26120256,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.12,"free":3493.75},{"epoch":26120257,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.1,"free":3493.76},{"epoch":26120258,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.08,"free":3493.78},{"epoch":26120259,"idl":99.61,"recv":0,"send":0,"writ":0.29,"used":507.8,"free":3493.03},{"epoch":26120260,"idl":99.58,"recv":0,"send":0,"writ":0.56,"used":508.14,"free":3492.7},{"epoch":26120261,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":507.77,"free":3493.07},{"epoch":26120262,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":507.75,"free":3493.09},{"epoch":26120263,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":507.83,"free":3493},{"epoch":26120264,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":507.9,"free":3492.94},{"epoch":26120265,"idl":99.62,"recv":0,"send":0,"writ":0.59,"used":507.83,"free":3493.03},{"epoch":26120266,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":507.62,"free":3493.24},{"epoch":26120267,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.61,"free":3493.24},{"epoch":26120268,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.58,"free":3493.27},{"epoch":26120269,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.57,"free":3493.27},{"epoch":26120270,"idl":99.6,"recv":0,"send":0,"writ":0.48,"used":507.92,"free":3492.94},{"epoch":26120271,"idl":99.87,"recv":0,"send":0,"writ":0.38,"used":507.54,"free":3493.31},{"epoch":26120272,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.51,"free":3493.33},{"epoch":26120273,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":507.49,"free":3493.35},{"epoch":26120274,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.6,"free":3493.24},{"epoch":26120275,"idl":99.7,"recv":0,"send":0,"writ":0.34,"used":507.89,"free":3492.96},{"epoch":26120276,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":508.3,"free":3492.55},{"epoch":26120277,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.61,"free":3493.24},{"epoch":26120278,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":507.6,"free":3493.24},{"epoch":26120279,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":507.58,"free":3493.26},{"epoch":26120280,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":506.63,"free":3494.22},{"epoch":26120281,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":507.8,"free":3493.05},{"epoch":26120282,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":507.77,"free":3493.07},{"epoch":26120283,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.75,"free":3493.09},{"epoch":26120284,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":507.74,"free":3493.09},{"epoch":26120285,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":507.65,"free":3493.19},{"epoch":26120286,"idl":99.69,"recv":0,"send":0,"writ":0.53,"used":507.99,"free":3492.85},{"epoch":26120287,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.6,"free":3493.24},{"epoch":26120288,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":507.59,"free":3493.24},{"epoch":26120289,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":507.56,"free":3493.25},{"epoch":26120290,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":508.06,"free":3492.76},{"epoch":26120291,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":508.3,"free":3492.52},{"epoch":26120292,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.77,"free":3493.05},{"epoch":26120293,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":507.75,"free":3493.06},{"epoch":26120294,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.73,"free":3493.09},{"epoch":26120295,"idl":99.68,"recv":0,"send":0,"writ":0.34,"used":507.5,"free":3493.35},{"epoch":26120296,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":508.17,"free":3492.67},{"epoch":26120297,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":507.92,"free":3492.91},{"epoch":26120298,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":507.9,"free":3492.93},{"epoch":26120299,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.88,"free":3492.95},{"epoch":26120300,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":508.12,"free":3492.73},{"epoch":26120301,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":508.45,"free":3492.39},{"epoch":26120302,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":507.85,"free":3492.99},{"epoch":26120303,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.81,"free":3493.02},{"epoch":26120304,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.81,"free":3493.02},{"epoch":26120305,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":507.6,"free":3493.25},{"epoch":26120306,"idl":99.67,"recv":0,"send":0,"writ":0.34,"used":507.87,"free":3492.97},{"epoch":26120307,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":507.51,"free":3493.32},{"epoch":26120308,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.62,"free":3493.22},{"epoch":26120309,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.66,"free":3493.17},{"epoch":26120310,"idl":99.53,"recv":0,"send":0,"writ":0.35,"used":507.07,"free":3493.77},{"epoch":26120311,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":506.9,"free":3493.94},{"epoch":26120312,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":507.65,"free":3493.19},{"epoch":26120313,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.35,"free":3493.48},{"epoch":26120314,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.32,"free":3493.5},{"epoch":26120315,"idl":99.68,"recv":0,"send":0,"writ":0.37,"used":507.57,"free":3493.27},{"epoch":26120316,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.55,"free":3493.29},{"epoch":26120317,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":508.52,"free":3492.31},{"epoch":26120318,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.99,"free":3492.83},{"epoch":26120319,"idl":99.62,"recv":0,"send":0,"writ":0.32,"used":508.08,"free":3492.71},{"epoch":26120320,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":508.15,"free":3492.66},{"epoch":26120321,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":508.12,"free":3492.69},{"epoch":26120322,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":508.47,"free":3492.33},{"epoch":26120323,"idl":98.84,"recv":0,"send":0,"writ":0.16,"used":507.83,"free":3492.97},{"epoch":26120324,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.81,"free":3492.98},{"epoch":26120325,"idl":99.66,"recv":0,"send":0,"writ":0.37,"used":508.06,"free":3492.76},{"epoch":26120326,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":508.04,"free":3492.77},{"epoch":26120327,"idl":99.62,"recv":0,"send":0,"writ":0.57,"used":508.37,"free":3492.43},{"epoch":26120328,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":507.99,"free":3492.81},{"epoch":26120329,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":507.98,"free":3492.82},{"epoch":26120330,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":508.32,"free":3492.5},{"epoch":26120331,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":508.38,"free":3492.43},{"epoch":26120332,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":508.71,"free":3492.1},{"epoch":26120333,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":508.33,"free":3492.47},{"epoch":26120334,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":508.32,"free":3492.48},{"epoch":26120335,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":508.08,"free":3492.73},{"epoch":26120336,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":508.05,"free":3492.75},{"epoch":26120337,"idl":99.68,"recv":0,"send":0,"writ":0.43,"used":508.68,"free":3492.12},{"epoch":26120338,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":508.01,"free":3492.79},{"epoch":26120339,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":507.99,"free":3492.81},{"epoch":26120340,"idl":99.42,"recv":0,"send":0,"writ":0.3,"used":508.09,"free":3492.72},{"epoch":26120341,"idl":99.67,"recv":0,"send":0,"writ":0.16,"used":507.97,"free":3492.84},{"epoch":26120342,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":508.21,"free":3492.59},{"epoch":26120343,"idl":99.64,"recv":0,"send":0,"writ":0.53,"used":508.47,"free":3492.32},{"epoch":26120344,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":508.1,"free":3492.69},{"epoch":26120345,"idl":99.59,"recv":0,"send":0,"writ":0.32,"used":507.14,"free":3493.67},{"epoch":26120346,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.08,"free":3493.72},{"epoch":26120347,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":507.06,"free":3493.74},{"epoch":26120348,"idl":99.63,"recv":0,"send":0,"writ":0.53,"used":508.22,"free":3492.58},{"epoch":26120349,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":508,"free":3492.78},{"epoch":26120350,"idl":99.49,"recv":0,"send":0,"writ":0.31,"used":508,"free":3492.79},{"epoch":26120351,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":507.97,"free":3492.81},{"epoch":26120352,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":508.09,"free":3492.68},{"epoch":26120353,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":508.67,"free":3492.1},{"epoch":26120354,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":508.35,"free":3492.41},{"epoch":26120355,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":508.34,"free":3492.44},{"epoch":26120356,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":508.33,"free":3492.45},{"epoch":26120357,"idl":99.37,"recv":0,"send":0,"writ":0.19,"used":508.3,"free":3492.47},{"epoch":26120358,"idl":99.62,"recv":0,"send":0,"writ":0.55,"used":508.49,"free":3492.28},{"epoch":26120359,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.78,"free":3492.99},{"epoch":26120360,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":507.77,"free":3493.01},{"epoch":26120361,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":507.74,"free":3493.03},{"epoch":26120362,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.74,"free":3493.05},{"epoch":26120363,"idl":99.54,"recv":0,"send":0,"writ":0.58,"used":508.06,"free":3492.73},{"epoch":26120364,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.58,"free":3493.19},{"epoch":26120365,"idl":99.69,"recv":0,"send":0,"writ":0.33,"used":507.39,"free":3493.41},{"epoch":26120366,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":507.36,"free":3493.43},{"epoch":26120367,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.34,"free":3493.45},{"epoch":26120368,"idl":99.65,"recv":0,"send":0,"writ":0.48,"used":507.74,"free":3493.04},{"epoch":26120369,"idl":99.75,"recv":0,"send":0,"writ":0.2,"used":507.55,"free":3493.23},{"epoch":26120370,"idl":99.56,"recv":0,"send":0,"writ":0.34,"used":507.38,"free":3493.41},{"epoch":26120371,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.26,"free":3493.53},{"epoch":26120372,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.25,"free":3493.54},{"epoch":26120373,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":507.58,"free":3493.2},{"epoch":26120374,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":507.25,"free":3493.53},{"epoch":26120375,"idl":99.51,"recv":0,"send":0,"writ":0.36,"used":506.75,"free":3494.04},{"epoch":26120376,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":506.67,"free":3494.12},{"epoch":26120377,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":506.63,"free":3494.15},{"epoch":26120378,"idl":99.28,"recv":0,"send":0,"writ":0.4,"used":507.11,"free":3493.67},{"epoch":26120379,"idl":99.58,"recv":0,"send":0.01,"writ":0.41,"used":507.55,"free":3493.2},{"epoch":26120380,"idl":99.5,"recv":0,"send":0,"writ":0.32,"used":507.56,"free":3493.21},{"epoch":26120381,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":507.53,"free":3493.24},{"epoch":26120382,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":507.52,"free":3493.25},{"epoch":26120383,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":507.48,"free":3493.28},{"epoch":26120384,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":508.29,"free":3492.46},{"epoch":26120385,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":507.66,"free":3493.12},{"epoch":26120386,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.63,"free":3493.14},{"epoch":26120387,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":507.62,"free":3493.15},{"epoch":26120388,"idl":99.68,"recv":0,"send":0,"writ":0.14,"used":507.59,"free":3493.17},{"epoch":26120389,"idl":99.58,"recv":0,"send":0,"writ":0.54,"used":507.92,"free":3492.84},{"epoch":26120390,"idl":99.61,"recv":0,"send":0,"writ":0.32,"used":507.57,"free":3493.2},{"epoch":26120391,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.56,"free":3493.21},{"epoch":26120392,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":507.52,"free":3493.25},{"epoch":26120393,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.5,"free":3493.26},{"epoch":26120394,"idl":99.61,"recv":0,"send":0,"writ":0.56,"used":507.84,"free":3492.91},{"epoch":26120395,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":507.57,"free":3493.2},{"epoch":26120396,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":507.65,"free":3493.12},{"epoch":26120397,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.61,"free":3493.15},{"epoch":26120398,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.6,"free":3493.16},{"epoch":26120399,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":508.43,"free":3492.32},{"epoch":26120400,"idl":99.52,"recv":0,"send":0,"writ":0.34,"used":507.58,"free":3493.19},{"epoch":26120401,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":507.55,"free":3493.21},{"epoch":26120402,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":507.53,"free":3493.23},{"epoch":26120403,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":507.51,"free":3493.25},{"epoch":26120404,"idl":99.55,"recv":0,"send":0,"writ":0.54,"used":507.73,"free":3493.02},{"epoch":26120405,"idl":99.63,"recv":0,"send":0,"writ":0.32,"used":507.25,"free":3493.52},{"epoch":26120406,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":507.32,"free":3493.44},{"epoch":26120407,"idl":97.81,"recv":0,"send":0,"writ":0.14,"used":507.39,"free":3493.37},{"epoch":26120408,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.36,"free":3493.4},{"epoch":26120409,"idl":99.53,"recv":0,"send":0,"writ":0.64,"used":507.95,"free":3492.78},{"epoch":26120410,"idl":99.61,"recv":0,"send":0,"writ":0.38,"used":507.84,"free":3492.9},{"epoch":26120411,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.83,"free":3492.91},{"epoch":26120412,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":507.79,"free":3492.94},{"epoch":26120413,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":507.79,"free":3492.94},{"epoch":26120414,"idl":99.66,"recv":0,"send":0,"writ":0.41,"used":508.1,"free":3492.62},{"epoch":26120415,"idl":99.59,"recv":0,"send":0,"writ":0.46,"used":508.24,"free":3492.49},{"epoch":26120416,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":508.13,"free":3492.61},{"epoch":26120417,"idl":99.64,"recv":0,"send":0,"writ":0.18,"used":507.74,"free":3493.01},{"epoch":26120418,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.71,"free":3493.04},{"epoch":26120419,"idl":99.6,"recv":0,"send":0,"writ":0.49,"used":508.37,"free":3492.36},{"epoch":26120420,"idl":99.69,"recv":0,"send":0,"writ":0.36,"used":507.87,"free":3492.88},{"epoch":26120421,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.86,"free":3492.89},{"epoch":26120422,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":507.83,"free":3492.92},{"epoch":26120423,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.82,"free":3492.92},{"epoch":26120424,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.79,"free":3492.95},{"epoch":26120425,"idl":94.08,"recv":0.5,"send":0.01,"writ":262.19,"used":519.84,"free":3480.47},{"epoch":26120426,"idl":99.79,"recv":0,"send":0,"writ":0.19,"used":510.18,"free":3490.44},{"epoch":26120427,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":510.14,"free":3490.47},{"epoch":26120428,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":510.12,"free":3490.49},{"epoch":26120429,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":510.1,"free":3490.5},{"epoch":26120430,"idl":99.43,"recv":0,"send":0,"writ":0.77,"used":508.43,"free":3492.22},{"epoch":26120431,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.56,"free":3493.1},{"epoch":26120432,"idl":95.3,"recv":0,"send":0,"writ":0.13,"used":507.59,"free":3493.06},{"epoch":26120433,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":507.58,"free":3493.07},{"epoch":26120434,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.56,"free":3493.09},{"epoch":26120435,"idl":99.52,"recv":0,"send":0,"writ":0.76,"used":508.13,"free":3492.55},{"epoch":26120436,"idl":99.84,"recv":0,"send":0.01,"writ":0.14,"used":508.02,"free":3492.67},{"epoch":26120437,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":507.99,"free":3492.71},{"epoch":26120438,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.98,"free":3492.71},{"epoch":26120439,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":507.95,"free":3492.74},{"epoch":26120440,"idl":99.58,"recv":0,"send":0,"writ":0.7,"used":508.35,"free":3492.35},{"epoch":26120441,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.69,"free":3493.01},{"epoch":26120442,"idl":99.36,"recv":0,"send":0,"writ":0.14,"used":507.86,"free":3492.83},{"epoch":26120443,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":507.83,"free":3492.86},{"epoch":26120444,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":507.81,"free":3492.89},{"epoch":26120445,"idl":99.45,"recv":0,"send":0,"writ":0.76,"used":507.79,"free":3492.93},{"epoch":26120446,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":508.04,"free":3492.68},{"epoch":26120447,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":508.02,"free":3492.69},{"epoch":26120448,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":508,"free":3492.71},{"epoch":26120449,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.98,"free":3492.72},{"epoch":26120450,"idl":97.88,"recv":0,"send":0,"writ":0.63,"used":507.71,"free":3493.01},{"epoch":26120451,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":507.72,"free":3493},{"epoch":26120452,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.69,"free":3493.02},{"epoch":26120453,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.81,"free":3492.9},{"epoch":26120454,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":507.83,"free":3492.88},{"epoch":26120455,"idl":99.62,"recv":0,"send":0,"writ":0.59,"used":508.11,"free":3492.61},{"epoch":26120456,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":507.57,"free":3493.15},{"epoch":26120457,"idl":98.82,"recv":0,"send":0,"writ":0.16,"used":507.56,"free":3493.15},{"epoch":26120458,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.53,"free":3493.18},{"epoch":26120459,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":507.74,"free":3492.96},{"epoch":26120460,"idl":99.06,"recv":0,"send":0,"writ":9.48,"used":508.73,"free":3492.76},{"epoch":26120461,"idl":99.64,"recv":0,"send":0,"writ":0.38,"used":506.88,"free":3494.64},{"epoch":26120462,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":506.88,"free":3494.64},{"epoch":26120463,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.84,"free":3494.67},{"epoch":26120464,"idl":96.23,"recv":0,"send":0,"writ":0.15,"used":506.93,"free":3494.59},{"epoch":26120465,"idl":99.58,"recv":0,"send":0,"writ":0.32,"used":507.99,"free":3493.56},{"epoch":26120466,"idl":99.54,"recv":0,"send":0,"writ":0.6,"used":508.34,"free":3493.2},{"epoch":26120467,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.96,"free":3493.58},{"epoch":26120468,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":507.95,"free":3493.58},{"epoch":26120469,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":507.92,"free":3493.59},{"epoch":26120470,"idl":99.64,"recv":0,"send":0,"writ":0.36,"used":507.93,"free":3493.59},{"epoch":26120471,"idl":99.18,"recv":0,"send":0,"writ":0.6,"used":508.28,"free":3493.24},{"epoch":26120472,"idl":98.37,"recv":0,"send":0,"writ":0.16,"used":507.89,"free":3493.63},{"epoch":26120473,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.85,"free":3493.66},{"epoch":26120474,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":507.85,"free":3493.66},{"epoch":26120475,"idl":99.71,"recv":0,"send":0,"writ":0.37,"used":508.08,"free":3493.45},{"epoch":26120476,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":508.26,"free":3493.26},{"epoch":26120477,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":508.02,"free":3493.5},{"epoch":26120478,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":508.01,"free":3493.5},{"epoch":26120479,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.97,"free":3493.54},{"epoch":26120480,"idl":99.73,"recv":0,"send":0,"writ":0.36,"used":507.99,"free":3493.54},{"epoch":26120481,"idl":99.74,"recv":0,"send":0,"writ":0.41,"used":508.45,"free":3493.08},{"epoch":26120482,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":508.19,"free":3493.33},{"epoch":26120483,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":508.16,"free":3493.35},{"epoch":26120484,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":508.14,"free":3493.37},{"epoch":26120485,"idl":99.66,"recv":0,"send":0,"writ":0.33,"used":507.24,"free":3494.29},{"epoch":26120486,"idl":99.29,"recv":0,"send":0,"writ":0.42,"used":508.09,"free":3493.43},{"epoch":26120487,"idl":99.92,"recv":0,"send":0,"writ":0.26,"used":507.86,"free":3493.66},{"epoch":26120488,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.89,"free":3493.62},{"epoch":26120489,"idl":97.97,"recv":0,"send":0,"writ":0.14,"used":508.01,"free":3493.5},{"epoch":26120490,"idl":99.66,"recv":0,"send":0,"writ":0.38,"used":508.2,"free":3493.33},{"epoch":26120491,"idl":99.7,"recv":0,"send":0,"writ":0.46,"used":508.39,"free":3493.14},{"epoch":26120492,"idl":99.86,"recv":0,"send":0,"writ":0.26,"used":508.21,"free":3493.31},{"epoch":26120493,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":508.2,"free":3493.32},{"epoch":26120494,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":508.17,"free":3493.34},{"epoch":26120495,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":508.18,"free":3493.35},{"epoch":26120496,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":508.51,"free":3493.02},{"epoch":26120497,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":508.14,"free":3493.38},{"epoch":26120498,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":508.11,"free":3493.4},{"epoch":26120499,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":507.63,"free":3493.86},{"epoch":26120500,"idl":98.58,"recv":0,"send":0,"writ":0.31,"used":508.16,"free":3493.34},{"epoch":26120501,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":508.61,"free":3492.89},{"epoch":26120502,"idl":99.92,"recv":0,"send":0,"writ":0.38,"used":508.24,"free":3493.26},{"epoch":26120503,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":508.22,"free":3493.27},{"epoch":26120504,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":508.19,"free":3493.31},{"epoch":26120505,"idl":97.58,"recv":0,"send":0,"writ":0.32,"used":508.45,"free":3493.08},{"epoch":26120506,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":508.29,"free":3493.23},{"epoch":26120507,"idl":98.35,"recv":0,"send":0,"writ":0.55,"used":508.64,"free":3492.87},{"epoch":26120508,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":508.12,"free":3493.39},{"epoch":26120509,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":508.09,"free":3493.42},{"epoch":26120510,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":507.86,"free":3493.66},{"epoch":26120511,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":507.92,"free":3493.6},{"epoch":26120512,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":508.68,"free":3492.84},{"epoch":26120513,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":508.47,"free":3493.05},{"epoch":26120514,"idl":99.51,"recv":0,"send":0,"writ":0.16,"used":508.44,"free":3493.07},{"epoch":26120515,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":506.47,"free":3495.06},{"epoch":26120516,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":506.23,"free":3495.3},{"epoch":26120517,"idl":99.75,"recv":0,"send":0,"writ":0.4,"used":507.34,"free":3494.18},{"epoch":26120518,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":507.65,"free":3493.87},{"epoch":26120519,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.63,"free":3493.88},{"epoch":26120520,"idl":99.65,"recv":0,"send":0,"writ":0.35,"used":507.69,"free":3493.84},{"epoch":26120521,"idl":99.18,"recv":0,"send":0,"writ":0.16,"used":507.6,"free":3493.91},{"epoch":26120522,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":507.94,"free":3493.58},{"epoch":26120523,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.69,"free":3493.82},{"epoch":26120524,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":507.73,"free":3493.78},{"epoch":26120525,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":507.73,"free":3493.79},{"epoch":26120526,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.71,"free":3493.81},{"epoch":26120527,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":508.28,"free":3493.23},{"epoch":26120528,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":507.66,"free":3493.85},{"epoch":26120529,"idl":99.54,"recv":0,"send":0,"writ":0.29,"used":507.65,"free":3493.83},{"epoch":26120530,"idl":99.65,"recv":0,"send":0,"writ":0.26,"used":507.64,"free":3493.87},{"epoch":26120531,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":507.61,"free":3493.88},{"epoch":26120532,"idl":99.55,"recv":0,"send":0,"writ":0.53,"used":507.92,"free":3493.59},{"epoch":26120533,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.33,"free":3494.18},{"epoch":26120534,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.31,"free":3494.19},{"epoch":26120535,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":506.52,"free":3495},{"epoch":26120536,"idl":99.15,"recv":0,"send":0,"writ":0.14,"used":506.5,"free":3495.02},{"epoch":26120537,"idl":99.67,"recv":0,"send":0,"writ":0.51,"used":506.81,"free":3494.7},{"epoch":26120538,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":507.45,"free":3494.07},{"epoch":26120539,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.42,"free":3494.09},{"epoch":26120540,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":507.91,"free":3493.61},{"epoch":26120541,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.89,"free":3493.63},{"epoch":26120542,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":508.2,"free":3493.31},{"epoch":26120543,"idl":99.83,"recv":0,"send":0,"writ":0.42,"used":507.21,"free":3494.3},{"epoch":26120544,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.85,"free":3494.65},{"epoch":26120545,"idl":99.62,"recv":0,"send":0,"writ":0.28,"used":505.88,"free":3495.64},{"epoch":26120546,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506,"free":3495.51},{"epoch":26120547,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":506,"free":3495.51},{"epoch":26120548,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":507.2,"free":3494.3},{"epoch":26120549,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.93,"free":3494.57},{"epoch":26120550,"idl":99.57,"recv":0,"send":0,"writ":0.29,"used":507.06,"free":3494.46},{"epoch":26120551,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.4,"free":3494.11},{"epoch":26120552,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.38,"free":3494.13},{"epoch":26120553,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":507.91,"free":3493.59},{"epoch":26120554,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.58,"free":3493.92},{"epoch":26120555,"idl":99.63,"recv":0,"send":0,"writ":0.3,"used":507.57,"free":3493.95},{"epoch":26120556,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.67,"free":3493.85},{"epoch":26120557,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.75,"free":3493.76},{"epoch":26120558,"idl":99.33,"recv":0,"send":0,"writ":0.56,"used":507.92,"free":3493.59},{"epoch":26120559,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":508.19,"free":3493.29},{"epoch":26120560,"idl":99.81,"recv":0,"send":0.01,"writ":0.31,"used":507.7,"free":3493.79},{"epoch":26120561,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.65,"free":3493.84},{"epoch":26120562,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.64,"free":3493.84},{"epoch":26120563,"idl":99.77,"recv":0,"send":0,"writ":0.51,"used":507.72,"free":3493.76},{"epoch":26120564,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":507.09,"free":3494.38},{"epoch":26120565,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":507.83,"free":3493.66},{"epoch":26120566,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.95,"free":3493.54},{"epoch":26120567,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.99,"free":3493.5},{"epoch":26120568,"idl":98.04,"recv":0,"send":0,"writ":0.48,"used":508.56,"free":3492.92},{"epoch":26120569,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":507.95,"free":3493.53},{"epoch":26120570,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":507.69,"free":3493.8},{"epoch":26120571,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":507.66,"free":3493.82},{"epoch":26120572,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":507.65,"free":3493.84},{"epoch":26120573,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":507.98,"free":3493.5},{"epoch":26120574,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":507.6,"free":3493.88},{"epoch":26120575,"idl":98.17,"recv":0,"send":0,"writ":0.27,"used":507.84,"free":3493.65},{"epoch":26120576,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":507.82,"free":3493.67},{"epoch":26120577,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.92,"free":3493.56},{"epoch":26120578,"idl":99.68,"recv":0,"send":0,"writ":0.44,"used":508.34,"free":3493.14},{"epoch":26120579,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":507.94,"free":3493.53},{"epoch":26120580,"idl":99.65,"recv":0,"send":0,"writ":0.26,"used":508.21,"free":3493.27},{"epoch":26120581,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":508.18,"free":3493.3},{"epoch":26120582,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":508.17,"free":3493.31},{"epoch":26120583,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":508.14,"free":3493.33},{"epoch":26120584,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":507.28,"free":3494.19},{"epoch":26120585,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":506.22,"free":3495.27},{"epoch":26120586,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":506.14,"free":3495.34},{"epoch":26120587,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":506.1,"free":3495.37},{"epoch":26120588,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":506.08,"free":3495.39},{"epoch":26120589,"idl":99.46,"recv":0,"send":0,"writ":0.71,"used":508.6,"free":3492.86},{"epoch":26120590,"idl":99.74,"recv":0,"send":0,"writ":0.26,"used":506.8,"free":3494.68},{"epoch":26120591,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":506.71,"free":3494.77},{"epoch":26120592,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":506.68,"free":3494.79},{"epoch":26120593,"idl":99.18,"recv":0,"send":0,"writ":0.17,"used":506.66,"free":3494.81},{"epoch":26120594,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":507.77,"free":3493.71},{"epoch":26120595,"idl":99.7,"recv":0,"send":0,"writ":0.28,"used":506.91,"free":3494.58},{"epoch":26120596,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":506.86,"free":3494.63},{"epoch":26120597,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":507.32,"free":3494.17},{"epoch":26120598,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":507.31,"free":3494.17},{"epoch":26120599,"idl":99.67,"recv":0,"send":0,"writ":0.5,"used":508.1,"free":3493.37},{"epoch":26120600,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":508.14,"free":3493.35},{"epoch":26120601,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":508.2,"free":3493.29},{"epoch":26120602,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":508.18,"free":3493.3},{"epoch":26120603,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":508.16,"free":3493.32},{"epoch":26120604,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":508.38,"free":3493.1},{"epoch":26120605,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":507.41,"free":3494.08},{"epoch":26120606,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":507.38,"free":3494.11},{"epoch":26120607,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":507.35,"free":3494.15},{"epoch":26120608,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":507.33,"free":3494.17},{"epoch":26120609,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":507.88,"free":3493.62},{"epoch":26120610,"idl":99.69,"recv":0,"send":0,"writ":0.44,"used":507.79,"free":3493.72},{"epoch":26120611,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":507.71,"free":3493.8},{"epoch":26120612,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.69,"free":3493.81},{"epoch":26120613,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":507.65,"free":3493.85},{"epoch":26120614,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":508.11,"free":3493.39},{"epoch":26120615,"idl":99.62,"recv":0,"send":0,"writ":0.4,"used":507.14,"free":3494.37},{"epoch":26120616,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.1,"free":3494.41},{"epoch":26120617,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":507.08,"free":3494.43},{"epoch":26120618,"idl":97.66,"recv":0,"send":0,"writ":0.14,"used":507.07,"free":3494.43},{"epoch":26120619,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":507.55,"free":3493.93},{"epoch":26120620,"idl":99.4,"recv":0,"send":0,"writ":0.66,"used":507.85,"free":3493.65},{"epoch":26120621,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":507.46,"free":3494.04},{"epoch":26120622,"idl":99.67,"recv":0,"send":0,"writ":0.14,"used":507.43,"free":3494.06},{"epoch":26120623,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":507.42,"free":3494.07},{"epoch":26120624,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":507.39,"free":3494.09},{"epoch":26120625,"idl":99.45,"recv":0,"send":0,"writ":0.66,"used":508,"free":3493.49},{"epoch":26120626,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.62,"free":3493.88},{"epoch":26120627,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.6,"free":3493.88},{"epoch":26120628,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":507.58,"free":3493.9},{"epoch":26120629,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.56,"free":3493.91},{"epoch":26120630,"idl":99.64,"recv":0,"send":0,"writ":0.73,"used":508.8,"free":3492.69},{"epoch":26120631,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":508.16,"free":3493.32},{"epoch":26120632,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":508.21,"free":3493.27},{"epoch":26120633,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":508.18,"free":3493.3},{"epoch":26120634,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":508.16,"free":3493.31},{"epoch":26120635,"idl":99.58,"recv":0,"send":0,"writ":0.74,"used":508.89,"free":3492.59},{"epoch":26120636,"idl":99.75,"recv":0,"send":0,"writ":0.13,"used":508.38,"free":3493.1},{"epoch":26120637,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":508.36,"free":3493.11},{"epoch":26120638,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":508.34,"free":3493.13},{"epoch":26120639,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":508.32,"free":3493.14},{"epoch":26120640,"idl":99.29,"recv":0,"send":0,"writ":0.67,"used":507.9,"free":3493.58},{"epoch":26120641,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":508.06,"free":3493.42},{"epoch":26120642,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":508.04,"free":3493.44},{"epoch":26120643,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":508.21,"free":3493.27},{"epoch":26120644,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":508.19,"free":3493.28},{"epoch":26120645,"idl":99.57,"recv":0,"send":0,"writ":0.53,"used":508,"free":3493.49},{"epoch":26120646,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":508.16,"free":3493.32},{"epoch":26120647,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":508.13,"free":3493.34},{"epoch":26120648,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":508.11,"free":3493.36},{"epoch":26120649,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":508.34,"free":3493.1},{"epoch":26120650,"idl":99.48,"recv":0,"send":0,"writ":0.55,"used":508.18,"free":3493.29},{"epoch":26120651,"idl":99.83,"recv":0,"send":0,"writ":0.35,"used":508.3,"free":3493.15},{"epoch":26120652,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":508.29,"free":3493.15},{"epoch":26120653,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":508.39,"free":3493.05},{"epoch":26120654,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":508.45,"free":3493.01},{"epoch":26120655,"idl":99.44,"recv":0,"send":0,"writ":0.53,"used":508.28,"free":3493.19},{"epoch":26120656,"idl":99.85,"recv":0,"send":0,"writ":0.47,"used":508.42,"free":3493.05},{"epoch":26120657,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":508.38,"free":3493.07},{"epoch":26120658,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":508.36,"free":3493.09},{"epoch":26120659,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":508.34,"free":3493.11},{"epoch":26120660,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":508.11,"free":3493.36},{"epoch":26120661,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":508.43,"free":3493.03},{"epoch":26120662,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":508.05,"free":3493.4},{"epoch":26120663,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":508.04,"free":3493.41},{"epoch":26120664,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":508.01,"free":3493.44},{"epoch":26120665,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":507.92,"free":3493.56},{"epoch":26120666,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":508.74,"free":3492.72},{"epoch":26120667,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":508.41,"free":3493.04},{"epoch":26120668,"idl":97.26,"recv":0,"send":0,"writ":0.16,"used":508.38,"free":3493.06},{"epoch":26120669,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":508.37,"free":3493.07},{"epoch":26120670,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":507.01,"free":3494.45},{"epoch":26120671,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":507.35,"free":3494.11},{"epoch":26120672,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":507.09,"free":3494.36},{"epoch":26120673,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":507.07,"free":3494.38},{"epoch":26120674,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.04,"free":3494.4},{"epoch":26120675,"idl":99.63,"recv":0,"send":0,"writ":0.28,"used":506.8,"free":3494.65},{"epoch":26120676,"idl":99.45,"recv":0,"send":0,"writ":0.53,"used":507.82,"free":3493.62},{"epoch":26120677,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":507.43,"free":3494.02},{"epoch":26120678,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.41,"free":3494.03},{"epoch":26120679,"idl":99.59,"recv":0,"send":0,"writ":0.31,"used":507.17,"free":3494.24},{"epoch":26120680,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":507.92,"free":3493.5},{"epoch":26120681,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":508.33,"free":3493.09},{"epoch":26120682,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":507.83,"free":3493.59},{"epoch":26120683,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.81,"free":3493.61},{"epoch":26120684,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":507.77,"free":3493.66},{"epoch":26120685,"idl":99.71,"recv":0,"send":0,"writ":0.28,"used":507.8,"free":3493.67},{"epoch":26120686,"idl":99.7,"recv":0,"send":0,"writ":0.42,"used":508.06,"free":3493.4},{"epoch":26120687,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":507.68,"free":3493.77},{"epoch":26120688,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":507.66,"free":3493.79},{"epoch":26120689,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":507.66,"free":3493.79},{"epoch":26120690,"idl":99.72,"recv":0,"send":0,"writ":0.26,"used":507.89,"free":3493.58},{"epoch":26120691,"idl":99.73,"recv":0,"send":0,"writ":0.51,"used":508.29,"free":3493.17},{"epoch":26120692,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":508.08,"free":3493.37},{"epoch":26120693,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":508.05,"free":3493.39},{"epoch":26120694,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":508.03,"free":3493.41},{"epoch":26120695,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":507.55,"free":3493.91},{"epoch":26120696,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":508.28,"free":3493.17},{"epoch":26120697,"idl":99.87,"recv":0,"send":0,"writ":0.4,"used":507.75,"free":3493.7},{"epoch":26120698,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":507.91,"free":3493.53},{"epoch":26120699,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":507.9,"free":3493.54},{"epoch":26120700,"idl":99.58,"recv":0,"send":0,"writ":0.31,"used":507.89,"free":3493.57},{"epoch":26120701,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":507.87,"free":3493.59},{"epoch":26120702,"idl":99.66,"recv":0,"send":0,"writ":0.63,"used":508.26,"free":3493.18},{"epoch":26120703,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":507.82,"free":3493.62},{"epoch":26120704,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":507.8,"free":3493.64},{"epoch":26120705,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":507.81,"free":3493.64},{"epoch":26120706,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":507.78,"free":3493.67},{"epoch":26120707,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":508.46,"free":3492.98},{"epoch":26120708,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":508.23,"free":3493.21},{"epoch":26120709,"idl":99.62,"recv":0,"send":0,"writ":0.28,"used":507.89,"free":3493.53},{"epoch":26120710,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":507.21,"free":3494.22},{"epoch":26120711,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":507.19,"free":3494.24},{"epoch":26120712,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":508.04,"free":3493.38},{"epoch":26120713,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":507.89,"free":3493.53},{"epoch":26120714,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":507.86,"free":3493.57},{"epoch":26120715,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":507.19,"free":3494.26},{"epoch":26120716,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":507.11,"free":3494.33},{"epoch":26120717,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":508.43,"free":3493.01},{"epoch":26120718,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":508.06,"free":3493.38},{"epoch":26120719,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":508.04,"free":3493.39},{"epoch":26120720,"idl":99.66,"recv":0,"send":0,"writ":0.28,"used":506.84,"free":3494.6},{"epoch":26120721,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":506.79,"free":3494.65},{"epoch":26120722,"idl":99.77,"recv":0,"send":0,"writ":0.51,"used":507.79,"free":3493.65},{"epoch":26120723,"idl":99.87,"recv":0,"send":0,"writ":0.23,"used":508.41,"free":3493.02},{"epoch":26120724,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":508.39,"free":3493.04},{"epoch":26120725,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":507.91,"free":3493.53},{"epoch":26120726,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.88,"free":3493.56},{"epoch":26120727,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":508.31,"free":3493.13},{"epoch":26120728,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":508.11,"free":3493.33},{"epoch":26120729,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":508.07,"free":3493.36},{"epoch":26120730,"idl":99.64,"recv":0,"send":0,"writ":0.35,"used":507.98,"free":3493.47},{"epoch":26120731,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":507.8,"free":3493.64},{"epoch":26120732,"idl":99.66,"recv":0,"send":0,"writ":0.4,"used":508.13,"free":3493.31},{"epoch":26120733,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":507.77,"free":3493.67},{"epoch":26120734,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.84,"free":3493.59},{"epoch":26120735,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":506.96,"free":3494.48},{"epoch":26120736,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":506.92,"free":3494.52},{"epoch":26120737,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":507.31,"free":3494.13},{"epoch":26120738,"idl":99.89,"recv":0,"send":0,"writ":0.39,"used":508.1,"free":3493.33},{"epoch":26120739,"idl":99.69,"recv":0,"send":0,"writ":0.38,"used":507.6,"free":3493.8},{"epoch":26120740,"idl":99.6,"recv":0,"send":0,"writ":0.27,"used":507.35,"free":3494.07},{"epoch":26120741,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.32,"free":3494.1},{"epoch":26120742,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":507.3,"free":3494.11},{"epoch":26120743,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":508.4,"free":3493.01},{"epoch":26120744,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":508,"free":3493.42},{"epoch":26120745,"idl":99.67,"recv":0,"send":0,"writ":0.27,"used":508,"free":3493.44},{"epoch":26120746,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":507.67,"free":3493.76},{"epoch":26120747,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.65,"free":3493.78},{"epoch":26120748,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":508.33,"free":3493.09},{"epoch":26120749,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":508.1,"free":3493.32},{"epoch":26120750,"idl":99.65,"recv":0,"send":0,"writ":0.26,"used":506.92,"free":3494.51},{"epoch":26120751,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.85,"free":3494.58},{"epoch":26120752,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":506.84,"free":3494.59},{"epoch":26120753,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":507.65,"free":3493.77},{"epoch":26120754,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":507.53,"free":3493.88},{"epoch":26120755,"idl":99.68,"recv":0,"send":0,"writ":0.26,"used":508,"free":3493.43},{"epoch":26120756,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":508.01,"free":3493.42},{"epoch":26120757,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.97,"free":3493.45},{"epoch":26120758,"idl":99.72,"recv":0,"send":0,"writ":0.5,"used":508.79,"free":3492.63},{"epoch":26120759,"idl":99.89,"recv":0,"send":0,"writ":0.23,"used":508.13,"free":3493.29},{"epoch":26120760,"idl":99.61,"recv":0,"send":0,"writ":0.31,"used":508.14,"free":3493.3},{"epoch":26120761,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":508.12,"free":3493.31},{"epoch":26120762,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":508.1,"free":3493.33},{"epoch":26120763,"idl":99.77,"recv":0,"send":0,"writ":0.5,"used":508.63,"free":3492.78},{"epoch":26120764,"idl":99.85,"recv":0,"send":0,"writ":0.25,"used":508.3,"free":3493.11},{"epoch":26120765,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":508.3,"free":3493.13},{"epoch":26120766,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":508.28,"free":3493.14},{"epoch":26120767,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":508.25,"free":3493.17},{"epoch":26120768,"idl":99.74,"recv":0,"send":0,"writ":0.46,"used":508.57,"free":3492.84},{"epoch":26120769,"idl":99.7,"recv":0,"send":0,"writ":0.46,"used":508.19,"free":3493.19},{"epoch":26120770,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":508.37,"free":3493.03},{"epoch":26120771,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":508.35,"free":3493.04},{"epoch":26120772,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":508.33,"free":3493.06},{"epoch":26120773,"idl":99.65,"recv":0,"send":0,"writ":0.59,"used":508.67,"free":3492.72},{"epoch":26120774,"idl":99.68,"recv":0,"send":0,"writ":0.18,"used":508.29,"free":3493.11},{"epoch":26120775,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":506.84,"free":3494.57},{"epoch":26120776,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":506.79,"free":3494.62},{"epoch":26120777,"idl":99.79,"recv":0,"send":0,"writ":0.24,"used":507.26,"free":3494.14},{"epoch":26120778,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":507.24,"free":3494.16},{"epoch":26120779,"idl":99.65,"recv":0,"send":0,"writ":0.59,"used":508.33,"free":3493.08},{"epoch":26120780,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":508.43,"free":3493},{"epoch":26120781,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":508.46,"free":3492.97},{"epoch":26120782,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":508.61,"free":3492.82},{"epoch":26120783,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":508.59,"free":3492.83},{"epoch":26120784,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":508.72,"free":3492.69},{"epoch":26120785,"idl":99.56,"recv":0,"send":0,"writ":0.32,"used":506.42,"free":3495.01},{"epoch":26120786,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.35,"free":3495.08},{"epoch":26120787,"idl":99.79,"recv":0,"send":0.01,"writ":0.14,"used":506.32,"free":3495.11},{"epoch":26120788,"idl":99.65,"recv":0,"send":0,"writ":0.18,"used":506.26,"free":3495.16},{"epoch":26120789,"idl":96.4,"recv":0.02,"send":0.01,"writ":78.34,"used":519.12,"free":3484.03},{"epoch":26120790,"idl":99.67,"recv":0,"send":0,"writ":0.43,"used":510.57,"free":3490.82},{"epoch":26120791,"idl":99.69,"recv":0,"send":0,"writ":0.14,"used":510.22,"free":3491.16},{"epoch":26120792,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":510.19,"free":3491.18},{"epoch":26120793,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":510.18,"free":3491.2},{"epoch":26120794,"idl":99.68,"recv":0,"send":0,"writ":0.44,"used":509.62,"free":3491.77},{"epoch":26120795,"idl":99.82,"recv":0,"send":0,"writ":0.45,"used":508.71,"free":3492.71},{"epoch":26120796,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":508.69,"free":3492.72},{"epoch":26120797,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":508.72,"free":3492.69},{"epoch":26120798,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":508.84,"free":3492.57},{"epoch":26120799,"idl":99.5,"recv":0,"send":0,"writ":0.58,"used":509.34,"free":3492.06},{"epoch":26120800,"idl":99.72,"recv":0,"send":0,"writ":0.37,"used":508.35,"free":3493.1},{"epoch":26120801,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":508.32,"free":3493.13},{"epoch":26120802,"idl":99.05,"recv":0,"send":0,"writ":0.15,"used":508.3,"free":3493.14},{"epoch":26120803,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":508.28,"free":3493.16},{"epoch":26120804,"idl":99.72,"recv":0,"send":0,"writ":0.4,"used":508.69,"free":3492.75},{"epoch":26120805,"idl":99.67,"recv":0,"send":0,"writ":0.38,"used":507.54,"free":3493.91},{"epoch":26120806,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":507.51,"free":3493.95},{"epoch":26120807,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":507.5,"free":3493.95},{"epoch":26120808,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.47,"free":3493.98},{"epoch":26120809,"idl":99.63,"recv":0,"send":0,"writ":0.49,"used":507.93,"free":3493.51},{"epoch":26120810,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":507.86,"free":3493.59},{"epoch":26120811,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":507.87,"free":3493.58},{"epoch":26120812,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":507.84,"free":3493.61},{"epoch":26120813,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.82,"free":3493.62},{"epoch":26120814,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":507.8,"free":3493.64},{"epoch":26120815,"idl":99.49,"recv":0,"send":0,"writ":0.66,"used":508.87,"free":3492.58},{"epoch":26120816,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":508.52,"free":3492.93},{"epoch":26120817,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":508.5,"free":3492.95},{"epoch":26120818,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":508.48,"free":3492.96},{"epoch":26120819,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":508.46,"free":3492.98},{"epoch":26120820,"idl":99.44,"recv":0,"send":0,"writ":0.65,"used":509.22,"free":3492.24},{"epoch":26120821,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":508.46,"free":3493},{"epoch":26120822,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":508.61,"free":3492.84},{"epoch":26120823,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":508.58,"free":3492.86},{"epoch":26120824,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":508.57,"free":3492.87},{"epoch":26120825,"idl":99.62,"recv":0,"send":0,"writ":0.7,"used":508.74,"free":3492.71},{"epoch":26120826,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":507.81,"free":3493.64},{"epoch":26120827,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":507.78,"free":3493.67},{"epoch":26120828,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":507.77,"free":3493.67},{"epoch":26120829,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":507.99,"free":3493.43},{"epoch":26120830,"idl":99.59,"recv":0,"send":0,"writ":0.68,"used":508.26,"free":3493.18},{"epoch":26120831,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":507.72,"free":3493.71},{"epoch":26120832,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":507.7,"free":3493.73},{"epoch":26120833,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":507.7,"free":3493.72},{"epoch":26120834,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":507.84,"free":3493.58},{"epoch":26120835,"idl":99.44,"recv":0,"send":0,"writ":0.73,"used":507.82,"free":3493.6},{"epoch":26120836,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":507.56,"free":3493.87},{"epoch":26120837,"idl":99.85,"recv":0,"send":0,"writ":0.25,"used":507.54,"free":3493.88},{"epoch":26120838,"idl":92.72,"recv":4.64,"send":0.01,"writ":148.34,"used":522.9,"free":3537.31},{"epoch":26120839,"idl":99.86,"recv":0,"send":0,"writ":0.25,"used":510.08,"free":3572.29},{"epoch":26120840,"idl":99.5,"recv":0,"send":0,"writ":0.76,"used":510.94,"free":3570.95},{"epoch":26120841,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":510.09,"free":3571.34},{"epoch":26120842,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":509.98,"free":3571.37},{"epoch":26120843,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":508.4,"free":3572.92},{"epoch":26120844,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":507.35,"free":3573.93},{"epoch":26120845,"idl":97.83,"recv":0.01,"send":0.01,"writ":15.9,"used":510.46,"free":3570.97},{"epoch":26120846,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":508.21,"free":3572.62},{"epoch":26120847,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":508.12,"free":3572.63},{"epoch":26120848,"idl":99.7,"recv":0,"send":0,"writ":0.18,"used":508,"free":3572.66},{"epoch":26120849,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":507.9,"free":3572.68},{"epoch":26120850,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":508.07,"free":3572.46},{"epoch":26120851,"idl":99.5,"recv":0,"send":0,"writ":0.58,"used":508.33,"free":3572.13},{"epoch":26120852,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":507.97,"free":3572.41},{"epoch":26120853,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":507.96,"free":3572.33},{"epoch":26120854,"idl":99.68,"recv":0,"send":0,"writ":0.18,"used":507.87,"free":3572.34},{"epoch":26120855,"idl":99.66,"recv":0,"send":0,"writ":0.33,"used":508.27,"free":3571.88},{"epoch":26120856,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":508.29,"free":3571.78},{"epoch":26120857,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":507.83,"free":3572.16},{"epoch":26120858,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":507.74,"free":3572.16},{"epoch":26120859,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":508.3,"free":3571.2},{"epoch":26120860,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":508.23,"free":3571.2},{"epoch":26120861,"idl":99.64,"recv":0,"send":0,"writ":0.54,"used":508.86,"free":3570.49},{"epoch":26120862,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":508.54,"free":3570.73},{"epoch":26120863,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":508.43,"free":3570.76},{"epoch":26120864,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":508.46,"free":3570.65},{"epoch":26120865,"idl":99.61,"recv":0,"send":0,"writ":0.34,"used":507.36,"free":3571.57},{"epoch":26120866,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":508.67,"free":3570.17},{"epoch":26120867,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":508.37,"free":3570.39},{"epoch":26120868,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":508.26,"free":3570.41},{"epoch":26120869,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":508.17,"free":3570.42},{"epoch":26120870,"idl":97.4,"recv":0,"send":0,"writ":0.3,"used":508.57,"free":3569.95},{"epoch":26120871,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":508.68,"free":3569.76},{"epoch":26120872,"idl":99.79,"recv":0,"send":0,"writ":0.22,"used":507.63,"free":3570.72},{"epoch":26120873,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.53,"free":3570.74},{"epoch":26120874,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":507.43,"free":3570.76},{"epoch":26120875,"idl":99.63,"recv":0,"send":0,"writ":0.3,"used":507.29,"free":3570.83},{"epoch":26120876,"idl":99.61,"recv":0,"send":0,"writ":0.46,"used":507.99,"free":3570.05},{"epoch":26120877,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":508.09,"free":3569.86},{"epoch":26120878,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":507.98,"free":3569.89},{"epoch":26120879,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.89,"free":3569.9},{"epoch":26120880,"idl":99.55,"recv":0,"send":0,"writ":0.27,"used":506.38,"free":3571.35},{"epoch":26120881,"idl":99.64,"recv":0,"send":0,"writ":0.41,"used":506.83,"free":3570.82},{"epoch":26120882,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":507.11,"free":3570.45},{"epoch":26120883,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.01,"free":3570.47},{"epoch":26120884,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":506.92,"free":3570.48},{"epoch":26120885,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":508.04,"free":3569.17},{"epoch":26120886,"idl":99.63,"recv":0,"send":0,"writ":0.31,"used":508.42,"free":3568.7},{"epoch":26120887,"idl":99.73,"recv":0,"send":0,"writ":0.39,"used":508.41,"free":3568.63},{"epoch":26120888,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":508.31,"free":3568.65},{"epoch":26120889,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":507.96,"free":3568.89},{"epoch":26120890,"idl":99.62,"recv":0,"send":0,"writ":0.27,"used":508.12,"free":3568.67},{"epoch":26120891,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":508.03,"free":3568.68},{"epoch":26120892,"idl":99.46,"recv":0,"send":0,"writ":0.57,"used":508.74,"free":3567.89},{"epoch":26120893,"idl":99.69,"recv":0,"send":0,"writ":0.14,"used":508.32,"free":3568.22},{"epoch":26120894,"idl":99.66,"recv":0,"send":0,"writ":0.16,"used":508.21,"free":3568.25},{"epoch":26120895,"idl":99.47,"recv":0,"send":0,"writ":0.32,"used":508.15,"free":3568.25},{"epoch":26120896,"idl":99.51,"recv":0,"send":0,"writ":0.13,"used":508.22,"free":3568.09},{"epoch":26120897,"idl":99.57,"recv":0,"send":0,"writ":0.6,"used":508.94,"free":3567.29},{"epoch":26120898,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":508.52,"free":3567.63},{"epoch":26120899,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":508.42,"free":3567.65},{"epoch":26120900,"idl":99.5,"recv":0,"send":0,"writ":0.27,"used":508.61,"free":3567.42},{"epoch":26120901,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":508.52,"free":3567.44},{"epoch":26120902,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":508.78,"free":3567.1},{"epoch":26120903,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":508.36,"free":3567.45},{"epoch":26120904,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":508.25,"free":3567.48},{"epoch":26120905,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":506.77,"free":3568.91},{"epoch":26120906,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":506.63,"free":3568.99},{"epoch":26120907,"idl":99.57,"recv":0,"send":0,"writ":0.55,"used":507.59,"free":3567.96},{"epoch":26120908,"idl":99.7,"recv":0,"send":0,"writ":0.15,"used":508.37,"free":3567.11},{"epoch":26120909,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":508.28,"free":3567.13},{"epoch":26120910,"idl":99.51,"recv":0,"send":0,"writ":0.36,"used":508.34,"free":3567.02},{"epoch":26120911,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":507.88,"free":3567.41},{"epoch":26120912,"idl":99.62,"recv":0,"send":0,"writ":0.55,"used":508.4,"free":3566.83},{"epoch":26120913,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":508.71,"free":3566.46},{"epoch":26120914,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":508.65,"free":3566.46},{"epoch":26120915,"idl":99.57,"recv":0,"send":0,"writ":0.32,"used":508.32,"free":3566.74},{"epoch":26120916,"idl":99.71,"recv":0,"send":0,"writ":0.15,"used":508.23,"free":3566.76},{"epoch":26120917,"idl":99.61,"recv":0,"send":0,"writ":0.32,"used":508.69,"free":3566.23},{"epoch":26120918,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":508.07,"free":3566.77},{"epoch":26120919,"idl":99.6,"recv":0,"send":0,"writ":0.28,"used":508.49,"free":3566.26},{"epoch":26120920,"idl":99.62,"recv":0,"send":0,"writ":0.28,"used":508.82,"free":3565.88},{"epoch":26120921,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":508.74,"free":3565.89},{"epoch":26120922,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":508.66,"free":3565.91},{"epoch":26120923,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":508.5,"free":3566.01},{"epoch":26120924,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":508.01,"free":3566.43},{"epoch":26120925,"idl":99.63,"recv":0,"send":0,"writ":0.28,"used":508.44,"free":3565.96},{"epoch":26120926,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":508.55,"free":3565.78},{"epoch":26120927,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":508.52,"free":3565.74},{"epoch":26120928,"idl":99.53,"recv":0,"send":0,"writ":0.59,"used":508.76,"free":3565.4},{"epoch":26120929,"idl":99.68,"recv":0,"send":0,"writ":0.14,"used":508.32,"free":3565.76},{"epoch":26120930,"idl":99.62,"recv":0,"send":0,"writ":0.27,"used":508.26,"free":3565.77},{"epoch":26120931,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":508.16,"free":3565.8},{"epoch":26120932,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":508.19,"free":3565.7},{"epoch":26120933,"idl":99.6,"recv":0,"send":0,"writ":0.61,"used":509.15,"free":3564.66},{"epoch":26120934,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":508.56,"free":3565.17},{"epoch":26120935,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":508.51,"free":3565.18},{"epoch":26120936,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":508.45,"free":3565.2},{"epoch":26120937,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":508.39,"free":3565.22},{"epoch":26120938,"idl":99.61,"recv":0,"send":0,"writ":0.57,"used":508.8,"free":3564.75},{"epoch":26120939,"idl":99.78,"recv":0.01,"send":0.04,"writ":0.18,"used":508.55,"free":3564.95},{"epoch":26120940,"idl":99.54,"recv":0,"send":0,"writ":0.27,"used":508.84,"free":3564.66},{"epoch":26120941,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":508.76,"free":3564.72},{"epoch":26120942,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":508.71,"free":3564.7},{"epoch":26120943,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":508.69,"free":3564.63},{"epoch":26120944,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":507.74,"free":3565.5},{"epoch":26120945,"idl":99.59,"recv":0,"send":0,"writ":0.29,"used":507.94,"free":3565.26},{"epoch":26120946,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.86,"free":3565.28},{"epoch":26120947,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":507.82,"free":3565.31},{"epoch":26120948,"idl":99.61,"recv":0,"send":0,"writ":0.51,"used":508.4,"free":3564.72},{"epoch":26120949,"idl":99.66,"recv":0,"send":0,"writ":0.36,"used":508.92,"free":3564.13},{"epoch":26120950,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":508.64,"free":3564.37},{"epoch":26120951,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":508.57,"free":3564.4},{"epoch":26120952,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":508.51,"free":3564.43},{"epoch":26120953,"idl":99.67,"recv":0,"send":0,"writ":0.41,"used":509.08,"free":3563.81},{"epoch":26120954,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":508.87,"free":3563.97},{"epoch":26120955,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":508.59,"free":3564.23},{"epoch":26120956,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":508.55,"free":3564.25},{"epoch":26120957,"idl":99.76,"recv":0,"send":0,"writ":0.21,"used":508.75,"free":3564.02},{"epoch":26120958,"idl":99.7,"recv":0,"send":0,"writ":0.4,"used":509.12,"free":3563.62},{"epoch":26120959,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":508.89,"free":3563.8},{"epoch":26120960,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":508.95,"free":3563.72},{"epoch":26120961,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":508.97,"free":3563.65},{"epoch":26120962,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":508.95,"free":3563.65},{"epoch":26120963,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":509.49,"free":3563.09},{"epoch":26120964,"idl":99.75,"recv":0,"send":0,"writ":0.46,"used":507.85,"free":3564.68},{"epoch":26120965,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":507.81,"free":3564.7},{"epoch":26120966,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.79,"free":3564.65},{"epoch":26120967,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.89,"free":3564.48},{"epoch":26120968,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":507.83,"free":3564.51},{"epoch":26120969,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":508.55,"free":3563.75},{"epoch":26120970,"idl":99.57,"recv":0,"send":0,"writ":0.31,"used":508.37,"free":3563.9},{"epoch":26120971,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":507.9,"free":3564.31},{"epoch":26120972,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":507.95,"free":3564.2},{"epoch":26120973,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":508.06,"free":3564.05},{"epoch":26120974,"idl":99.56,"recv":0,"send":0,"writ":0.54,"used":508.83,"free":3563.24},{"epoch":26120975,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":508.84,"free":3563.2},{"epoch":26120976,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":508.79,"free":3563.22},{"epoch":26120977,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":508.85,"free":3563.1},{"epoch":26120978,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":508.43,"free":3563.46},{"epoch":26120979,"idl":99.41,"recv":0,"send":0,"writ":0.76,"used":508.67,"free":3563},{"epoch":26120980,"idl":99.57,"recv":0,"send":0,"writ":0.27,"used":508.43,"free":3563.19},{"epoch":26120981,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":508.29,"free":3563.28},{"epoch":26120982,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":508.21,"free":3563.29},{"epoch":26120983,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":508.22,"free":3563.24},{"epoch":26120984,"idl":99.62,"recv":0,"send":0,"writ":0.41,"used":508.7,"free":3562.71},{"epoch":26120985,"idl":99.66,"recv":0,"send":0,"writ":0.42,"used":508.48,"free":3562.9},{"epoch":26120986,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":508.43,"free":3562.92},{"epoch":26120987,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":508.43,"free":3562.85},{"epoch":26120988,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":508.28,"free":3562.98},{"epoch":26120989,"idl":99.62,"recv":0,"send":0,"writ":0.49,"used":509.04,"free":3562.17},{"epoch":26120990,"idl":99.66,"recv":0,"send":0,"writ":0.33,"used":508.4,"free":3562.77},{"epoch":26120991,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":508.36,"free":3562.78},{"epoch":26120992,"idl":97.9,"recv":0,"send":0,"writ":0.14,"used":508.27,"free":3562.81},{"epoch":26120993,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":508.21,"free":3562.81},{"epoch":26120994,"idl":99.63,"recv":0,"send":0,"writ":0.4,"used":508.45,"free":3562.52},{"epoch":26120995,"idl":99.75,"recv":0,"send":0,"writ":0.42,"used":508.5,"free":3562.45},{"epoch":26120996,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":508.47,"free":3562.44},{"epoch":26120997,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":508.45,"free":3562.44},{"epoch":26120998,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":508.36,"free":3562.47},{"epoch":26120999,"idl":99.67,"recv":0,"send":0,"writ":0.41,"used":508.71,"free":3562.08},{"epoch":26121000,"idl":99.56,"recv":0,"send":0,"writ":0.43,"used":506.84,"free":3563.95},{"epoch":26121001,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.76,"free":3564},{"epoch":26121002,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":506.72,"free":3564.01},{"epoch":26121003,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":506.88,"free":3563.8},{"epoch":26121004,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":507.06,"free":3563.56},{"epoch":26121005,"idl":99.38,"recv":0,"send":0,"writ":0.73,"used":508.07,"free":3562.53},{"epoch":26121006,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":507.64,"free":3562.92},{"epoch":26121007,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":507.59,"free":3562.93},{"epoch":26121008,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":507.52,"free":3562.95},{"epoch":26121009,"idl":99.61,"recv":0,"send":0,"writ":0.31,"used":508.21,"free":3562.18},{"epoch":26121010,"idl":99.55,"recv":0,"send":0,"writ":0.71,"used":508.78,"free":3561.6},{"epoch":26121011,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":508.35,"free":3562},{"epoch":26121012,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":508.32,"free":3562.02},{"epoch":26121013,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":508.26,"free":3562.03},{"epoch":26121014,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":508.21,"free":3562.05},{"epoch":26121015,"idl":99.54,"recv":0,"send":0,"writ":0.7,"used":508.95,"free":3561.32},{"epoch":26121016,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":508.64,"free":3561.6},{"epoch":26121017,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":508.13,"free":3562.09},{"epoch":26121018,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":508.19,"free":3561.98},{"epoch":26121019,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":508.17,"free":3561.95},{"epoch":26121020,"idl":99.54,"recv":0,"send":0,"writ":0.68,"used":509.22,"free":3560.88},{"epoch":26121021,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":508.82,"free":3561.24},{"epoch":26121022,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":508.73,"free":3561.29},{"epoch":26121023,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":508.47,"free":3561.52},{"epoch":26121024,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":508.4,"free":3561.54},{"epoch":26121025,"idl":99.55,"recv":0,"send":0,"writ":0.61,"used":509.13,"free":3560.79},{"epoch":26121026,"idl":99.82,"recv":0,"send":0,"writ":0.22,"used":508.32,"free":3561.57},{"epoch":26121027,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":508.29,"free":3561.58},{"epoch":26121028,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":508.25,"free":3561.6},{"epoch":26121029,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":508.17,"free":3561.61},{"epoch":26121030,"idl":99.53,"recv":0,"send":0,"writ":0.56,"used":509.1,"free":3560.67},{"epoch":26121031,"idl":99.75,"recv":0.07,"send":0.05,"writ":0.34,"used":508.49,"free":3561.24},{"epoch":26121032,"idl":99.75,"recv":0.09,"send":0.06,"writ":0.16,"used":508.43,"free":3561.26},{"epoch":26121033,"idl":99.7,"recv":0.09,"send":0.06,"writ":0.17,"used":508.29,"free":3561.29},{"epoch":26121034,"idl":99.83,"recv":0.02,"send":0.01,"writ":0.17,"used":508.23,"free":3561.26},{"epoch":26121035,"idl":99.62,"recv":0,"send":0,"writ":0.64,"used":508.85,"free":3560.63},{"epoch":26121036,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":508.65,"free":3560.83},{"epoch":26121037,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":508.64,"free":3560.83},{"epoch":26121038,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":508.6,"free":3560.85},{"epoch":26121039,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":508.8,"free":3560.6},{"epoch":26121040,"idl":99.61,"recv":0,"send":0,"writ":0.71,"used":509.3,"free":3560.11},{"epoch":26121041,"idl":99.86,"recv":0,"send":0,"writ":0.12,"used":509.2,"free":3560.2},{"epoch":26121042,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":509.15,"free":3560.22},{"epoch":26121043,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":509.1,"free":3560.23},{"epoch":26121044,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":509.17,"free":3560.1},{"epoch":26121045,"idl":97.56,"recv":0,"send":0,"writ":0.32,"used":508.51,"free":3560.74},{"epoch":26121046,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":508.05,"free":3561.16},{"epoch":26121047,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":507.44,"free":3561.77},{"epoch":26121048,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.38,"free":3561.8},{"epoch":26121049,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":507.36,"free":3561.8},{"epoch":26121050,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":507.83,"free":3561.33},{"epoch":26121051,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":508.7,"free":3560.41},{"epoch":26121052,"idl":98.64,"recv":0,"send":0,"writ":0.13,"used":508.63,"free":3560.46},{"epoch":26121053,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":508.6,"free":3560.47},{"epoch":26121054,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":508.57,"free":3560.47},{"epoch":26121055,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":508.76,"free":3560.26},{"epoch":26121056,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":508.49,"free":3560.49},{"epoch":26121057,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":507.67,"free":3561.27},{"epoch":26121058,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.62,"free":3561.29},{"epoch":26121059,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.56,"free":3561.3},{"epoch":26121060,"idl":99.54,"recv":0,"send":0,"writ":0.33,"used":507.06,"free":3561.81},{"epoch":26121061,"idl":99.59,"recv":0,"send":0,"writ":0.61,"used":508.4,"free":3560.45},{"epoch":26121062,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":508.8,"free":3560.01},{"epoch":26121063,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":508.95,"free":3559.83},{"epoch":26121064,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":509,"free":3559.73},{"epoch":26121065,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":508.74,"free":3560},{"epoch":26121066,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":509.08,"free":3559.66},{"epoch":26121067,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":508.67,"free":3560.04},{"epoch":26121068,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":508.65,"free":3560.04},{"epoch":26121069,"idl":99.67,"recv":0,"send":0,"writ":0.41,"used":508.94,"free":3559.57},{"epoch":26121070,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":508.67,"free":3559.83},{"epoch":26121071,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":509.19,"free":3559.29},{"epoch":26121072,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":508.59,"free":3559.86},{"epoch":26121073,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":508.66,"free":3559.78},{"epoch":26121074,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":508.72,"free":3559.72},{"epoch":26121075,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":508.46,"free":3559.97},{"epoch":26121076,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":508.82,"free":3559.6},{"epoch":26121077,"idl":99.84,"recv":0,"send":0,"writ":0.42,"used":508.87,"free":3559.52},{"epoch":26121078,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":508.84,"free":3559.54},{"epoch":26121079,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":508.97,"free":3559.36},{"epoch":26121080,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":508.52,"free":3559.8},{"epoch":26121081,"idl":99.68,"recv":0,"send":0,"writ":0.39,"used":508.87,"free":3559.43},{"epoch":26121082,"idl":99.91,"recv":0,"send":0,"writ":0.27,"used":508.93,"free":3559.36},{"epoch":26121083,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":508.91,"free":3559.37},{"epoch":26121084,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":508.87,"free":3559.39},{"epoch":26121085,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":508.51,"free":3559.76},{"epoch":26121086,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":508.54,"free":3559.72},{"epoch":26121087,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":509.75,"free":3558.49},{"epoch":26121088,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":508.95,"free":3559.27},{"epoch":26121089,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":508.9,"free":3559.29},{"epoch":26121090,"idl":99.6,"recv":0,"send":0,"writ":0.32,"used":508.44,"free":3559.75},{"epoch":26121091,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":507.86,"free":3560.31},{"epoch":26121092,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":508.79,"free":3559.36},{"epoch":26121093,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":508.28,"free":3559.86},{"epoch":26121094,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":508.26,"free":3559.88},{"epoch":26121095,"idl":99.6,"recv":0,"send":0,"writ":0.31,"used":507.97,"free":3560.14},{"epoch":26121096,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":508.05,"free":3560.04},{"epoch":26121097,"idl":99.63,"recv":0,"send":0,"writ":0.5,"used":509.13,"free":3558.93},{"epoch":26121098,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":509.01,"free":3559.01},{"epoch":26121099,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":508.96,"free":3559.02},{"epoch":26121100,"idl":99.63,"recv":0,"send":0,"writ":0.3,"used":508.7,"free":3559.27},{"epoch":26121101,"idl":99.85,"recv":0,"send":0.02,"writ":0.18,"used":508.61,"free":3559.33},{"epoch":26121102,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":509.02,"free":3558.9},{"epoch":26121103,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":508.79,"free":3559.12},{"epoch":26121104,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":508.75,"free":3559.15},{"epoch":26121105,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":508.81,"free":3559.1},{"epoch":26121106,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":508.83,"free":3559.07},{"epoch":26121107,"idl":99.71,"recv":0,"send":0,"writ":0.41,"used":509.32,"free":3558.57},{"epoch":26121108,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":509.14,"free":3558.73},{"epoch":26121109,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":509.1,"free":3558.77},{"epoch":26121110,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":509.09,"free":3558.77},{"epoch":26121111,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":509.04,"free":3558.8},{"epoch":26121112,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":509.39,"free":3558.42},{"epoch":26121113,"idl":99.88,"recv":0,"send":0,"writ":0.39,"used":509.21,"free":3558.55},{"epoch":26121114,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":509.16,"free":3558.58},{"epoch":26121115,"idl":99.69,"recv":0,"send":0,"writ":0.36,"used":508.88,"free":3558.85},{"epoch":26121116,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":508.83,"free":3558.88},{"epoch":26121117,"idl":99.65,"recv":0,"send":0,"writ":0.34,"used":509.14,"free":3558.54},{"epoch":26121118,"idl":99.9,"recv":0,"send":0,"writ":0.4,"used":508.87,"free":3558.79},{"epoch":26121119,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":508.9,"free":3558.75},{"epoch":26121120,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":508.45,"free":3559.16},{"epoch":26121121,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":508.31,"free":3559.28},{"epoch":26121122,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":508.29,"free":3559.29},{"epoch":26121123,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":508.84,"free":3558.73},{"epoch":26121124,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":508.49,"free":3559.07},{"epoch":26121125,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":508.94,"free":3558.62},{"epoch":26121126,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":508.92,"free":3558.61},{"epoch":26121127,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":508.88,"free":3558.63},{"epoch":26121128,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":509.02,"free":3558.47},{"epoch":26121129,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":509.04,"free":3558.43},{"epoch":26121130,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":509.22,"free":3558.24},{"epoch":26121131,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":509.18,"free":3558.26},{"epoch":26121132,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":509.15,"free":3558.27},{"epoch":26121133,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":509.86,"free":3557.53},{"epoch":26121134,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":508.74,"free":3558.62},{"epoch":26121135,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":508.03,"free":3559.31},{"epoch":26121136,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":508,"free":3559.32},{"epoch":26121137,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":507.95,"free":3559.35},{"epoch":26121138,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":508.56,"free":3558.73},{"epoch":26121139,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":508.38,"free":3558.89},{"epoch":26121140,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":508.69,"free":3558.58},{"epoch":26121141,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":508.76,"free":3558.49},{"epoch":26121142,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":508.71,"free":3558.52},{"epoch":26121143,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":509.05,"free":3558.16},{"epoch":26121144,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":508.66,"free":3558.55},{"epoch":26121145,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":508.41,"free":3558.81},{"epoch":26121146,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":508.37,"free":3558.83},{"epoch":26121147,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":508.34,"free":3558.83},{"epoch":26121148,"idl":99.6,"recv":0,"send":0,"writ":0.57,"used":508.67,"free":3558.47},{"epoch":26121149,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":508.25,"free":3558.87},{"epoch":26121150,"idl":99.56,"recv":0.01,"send":0,"writ":0.3,"used":508.68,"free":3558.19},{"epoch":26121151,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":508.56,"free":3558.3},{"epoch":26121152,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":508.58,"free":3558.27},{"epoch":26121153,"idl":97.67,"recv":0.35,"send":0.01,"writ":0.63,"used":510.87,"free":3554.3},{"epoch":26121154,"idl":95.96,"recv":0,"send":0,"writ":260.23,"used":521.28,"free":3546.32},{"epoch":26121155,"idl":99.49,"recv":0,"send":0,"writ":0.3,"used":509.87,"free":3555.49},{"epoch":26121156,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":509.72,"free":3555.6},{"epoch":26121157,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":509.9,"free":3555.4},{"epoch":26121158,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":509.9,"free":3555.39},{"epoch":26121159,"idl":99.54,"recv":0,"send":0,"writ":0.77,"used":509.46,"free":3555.83},{"epoch":26121160,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":508.78,"free":3556.53},{"epoch":26121161,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":508.8,"free":3556.47},{"epoch":26121162,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":508.79,"free":3556.47},{"epoch":26121163,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":508.75,"free":3556.5},{"epoch":26121164,"idl":99.64,"recv":0,"send":0,"writ":0.58,"used":508.71,"free":3556.55},{"epoch":26121165,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":508.11,"free":3557.03},{"epoch":26121166,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":507.94,"free":3557.18},{"epoch":26121167,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":507.8,"free":3557.3},{"epoch":26121168,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":507.76,"free":3557.34},{"epoch":26121169,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":508.47,"free":3556.61},{"epoch":26121170,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":508.45,"free":3556.62},{"epoch":26121171,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":508.52,"free":3556.52},{"epoch":26121172,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":508.59,"free":3556.44},{"epoch":26121173,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":508.58,"free":3556.44},{"epoch":26121174,"idl":99.68,"recv":0,"send":0,"writ":0.46,"used":509.06,"free":3555.94},{"epoch":26121175,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":508.52,"free":3556.48},{"epoch":26121176,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":508.49,"free":3556.5},{"epoch":26121177,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":508.46,"free":3556.52},{"epoch":26121178,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":508.43,"free":3556.54},{"epoch":26121179,"idl":99.71,"recv":0,"send":0,"writ":0.52,"used":508.84,"free":3556.11},{"epoch":26121180,"idl":99.5,"recv":0,"send":0,"writ":0.35,"used":507.9,"free":3557.05},{"epoch":26121181,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.84,"free":3557.07},{"epoch":26121182,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":507.8,"free":3557.09},{"epoch":26121183,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":507.77,"free":3557.1},{"epoch":26121184,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":508.63,"free":3556.22},{"epoch":26121185,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":508.88,"free":3555.97},{"epoch":26121186,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":508.85,"free":3555.97},{"epoch":26121187,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":508.82,"free":3555.98},{"epoch":26121188,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":508.77,"free":3556.01},{"epoch":26121189,"idl":99.48,"recv":0,"send":0,"writ":0.48,"used":508.82,"free":3555.91},{"epoch":26121190,"idl":99.61,"recv":0,"send":0,"writ":0.64,"used":507.71,"free":3556.91},{"epoch":26121191,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":507.56,"free":3557.03},{"epoch":26121192,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":507.51,"free":3557.06},{"epoch":26121193,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":507.48,"free":3557.07},{"epoch":26121194,"idl":99.76,"recv":0,"send":0,"writ":0.2,"used":507.55,"free":3556.99},{"epoch":26121195,"idl":99.48,"recv":0,"send":0,"writ":0.78,"used":508.98,"free":3555.56},{"epoch":26121196,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":508.8,"free":3555.72},{"epoch":26121197,"idl":99.76,"recv":0,"send":0,"writ":0.25,"used":508.76,"free":3555.74},{"epoch":26121198,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":508.71,"free":3555.78},{"epoch":26121199,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":508.68,"free":3555.8},{"epoch":26121200,"idl":99.65,"recv":0,"send":0,"writ":0.71,"used":509.24,"free":3555.22},{"epoch":26121201,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":508.87,"free":3555.58},{"epoch":26121202,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":508.84,"free":3555.61},{"epoch":26121203,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":508.82,"free":3555.61},{"epoch":26121204,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":508.81,"free":3555.59},{"epoch":26121205,"idl":99.63,"recv":0,"send":0,"writ":0.78,"used":509.3,"free":3555.11},{"epoch":26121206,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":508.92,"free":3555.48},{"epoch":26121207,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":508.9,"free":3555.49},{"epoch":26121208,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":508.87,"free":3555.51},{"epoch":26121209,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":508.84,"free":3555.52},{"epoch":26121210,"idl":99.58,"recv":0,"send":0,"writ":0.7,"used":509.78,"free":3554.59},{"epoch":26121211,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":508.8,"free":3555.55},{"epoch":26121212,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":508.77,"free":3555.58},{"epoch":26121213,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":508.76,"free":3555.58},{"epoch":26121214,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":508.72,"free":3555.61},{"epoch":26121215,"idl":99.61,"recv":0,"send":0,"writ":0.67,"used":509.4,"free":3554.95},{"epoch":26121216,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":508.7,"free":3555.63},{"epoch":26121217,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":508.79,"free":3555.52},{"epoch":26121218,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":508.81,"free":3555.48},{"epoch":26121219,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":508.82,"free":3555.45},{"epoch":26121220,"idl":99.56,"recv":0,"send":0,"writ":0.71,"used":509.35,"free":3554.93},{"epoch":26121221,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":508.76,"free":3555.52},{"epoch":26121222,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":508.73,"free":3555.54},{"epoch":26121223,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":508.7,"free":3555.55},{"epoch":26121224,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":508.67,"free":3555.58},{"epoch":26121225,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":508.43,"free":3555.84},{"epoch":26121226,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":509.46,"free":3554.79},{"epoch":26121227,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":509.24,"free":3554.98},{"epoch":26121228,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":509.22,"free":3555},{"epoch":26121229,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":509.18,"free":3555.01},{"epoch":26121230,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":508.69,"free":3555.51},{"epoch":26121231,"idl":99.76,"recv":0,"send":0,"writ":0.61,"used":509,"free":3555.18},{"epoch":26121232,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":508.6,"free":3555.55},{"epoch":26121233,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":508.58,"free":3555.57},{"epoch":26121234,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":508.56,"free":3555.58},{"epoch":26121235,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":509.26,"free":3554.89},{"epoch":26121236,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":509.22,"free":3554.93},{"epoch":26121237,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":508.75,"free":3555.39},{"epoch":26121238,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":508.76,"free":3555.34},{"epoch":26121239,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":508.83,"free":3555.23},{"epoch":26121240,"idl":99.6,"recv":0,"send":0,"writ":0.36,"used":508.81,"free":3555.26},{"epoch":26121241,"idl":99.76,"recv":0,"send":0,"writ":0.6,"used":509.54,"free":3554.52},{"epoch":26121242,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":509,"free":3555.05},{"epoch":26121243,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":508.97,"free":3555.06},{"epoch":26121244,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":508.93,"free":3555.09},{"epoch":26121245,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":508.95,"free":3555.09},{"epoch":26121246,"idl":99.73,"recv":0,"send":0,"writ":0.6,"used":509.46,"free":3554.57},{"epoch":26121247,"idl":99.87,"recv":0,"send":0,"writ":0.22,"used":509.13,"free":3554.89},{"epoch":26121248,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":509.21,"free":3554.79},{"epoch":26121249,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":508.76,"free":3555.18},{"epoch":26121250,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":509.25,"free":3554.71},{"epoch":26121251,"idl":99.71,"recv":0,"send":0,"writ":0.46,"used":509.5,"free":3554.44},{"epoch":26121252,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":508.93,"free":3555.01},{"epoch":26121253,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":508.92,"free":3555.01},{"epoch":26121254,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":508.89,"free":3555.07},{"epoch":26121255,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":507.94,"free":3556.04},{"epoch":26121256,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":508.32,"free":3555.65},{"epoch":26121257,"idl":99.84,"recv":0,"send":0,"writ":0.23,"used":508.1,"free":3555.84},{"epoch":26121258,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":508.05,"free":3555.88},{"epoch":26121259,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":508.04,"free":3555.88},{"epoch":26121260,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":509.15,"free":3554.77},{"epoch":26121261,"idl":99.74,"recv":0,"send":0,"writ":0.42,"used":509.42,"free":3554.49},{"epoch":26121262,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":508.4,"free":3555.5},{"epoch":26121263,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":508.39,"free":3555.51},{"epoch":26121264,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":508.36,"free":3555.54},{"epoch":26121265,"idl":99.58,"recv":0,"send":0,"writ":0.3,"used":507.88,"free":3556.03},{"epoch":26121266,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":507.84,"free":3556.06},{"epoch":26121267,"idl":99.57,"recv":0,"send":0,"writ":0.56,"used":509.72,"free":3554.17},{"epoch":26121268,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":509.27,"free":3554.61},{"epoch":26121269,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":509.24,"free":3554.63},{"epoch":26121270,"idl":99.56,"recv":0,"send":0,"writ":0.31,"used":509.06,"free":3554.83},{"epoch":26121271,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":509.07,"free":3554.81},{"epoch":26121272,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":509.69,"free":3554.19},{"epoch":26121273,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":509.36,"free":3554.5},{"epoch":26121274,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":509.34,"free":3554.52},{"epoch":26121275,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":508.15,"free":3555.72},{"epoch":26121276,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":508.09,"free":3555.78},{"epoch":26121277,"idl":99.59,"recv":0,"send":0,"writ":0.58,"used":509.4,"free":3554.46},{"epoch":26121278,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":509.27,"free":3554.58},{"epoch":26121279,"idl":99.62,"recv":0,"send":0,"writ":0.3,"used":509.25,"free":3554.58},{"epoch":26121280,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":509.23,"free":3554.62},{"epoch":26121281,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":509.21,"free":3554.63},{"epoch":26121282,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":509.46,"free":3554.37},{"epoch":26121283,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":508.36,"free":3555.47},{"epoch":26121284,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":508.12,"free":3555.76},{"epoch":26121285,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":509.29,"free":3554.59},{"epoch":26121286,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":509.3,"free":3554.58},{"epoch":26121287,"idl":99.5,"recv":0,"send":0,"writ":0.59,"used":509.83,"free":3554.03},{"epoch":26121288,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":509.23,"free":3554.61},{"epoch":26121289,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":508.88,"free":3554.96},{"epoch":26121290,"idl":99.62,"recv":0,"send":0,"writ":0.34,"used":508.72,"free":3555.14},{"epoch":26121291,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":508.68,"free":3555.17},{"epoch":26121292,"idl":99.68,"recv":0,"send":0,"writ":0.44,"used":509.02,"free":3554.82},{"epoch":26121293,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":508.73,"free":3555.1},{"epoch":26121294,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":508.8,"free":3555.03},{"epoch":26121295,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":516.55,"free":3547.29},{"epoch":26121296,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":516.66,"free":3547.17},{"epoch":26121297,"idl":99.73,"recv":0,"send":0,"writ":0.47,"used":516.99,"free":3546.84},{"epoch":26121298,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":516.61,"free":3547.21},{"epoch":26121299,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":516.59,"free":3547.23},{"epoch":26121300,"idl":99.34,"recv":0,"send":0,"writ":0.32,"used":516.12,"free":3547.71},{"epoch":26121301,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":516.08,"free":3547.75},{"epoch":26121302,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":516.51,"free":3547.32},{"epoch":26121303,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":516.77,"free":3547.05},{"epoch":26121304,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":516.76,"free":3547.05},{"epoch":26121305,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":516.52,"free":3547.29},{"epoch":26121306,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":516.62,"free":3547.17},{"epoch":26121307,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":516.62,"free":3547.17},{"epoch":26121308,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":517.37,"free":3546.41},{"epoch":26121309,"idl":99.49,"recv":0,"send":0,"writ":0.29,"used":515.86,"free":3547.88},{"epoch":26121310,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":516.3,"free":3547.45},{"epoch":26121311,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.3,"free":3547.45},{"epoch":26121312,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":516.27,"free":3547.48},{"epoch":26121313,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":517.16,"free":3546.58},{"epoch":26121314,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":516.72,"free":3547.02},{"epoch":26121315,"idl":99.63,"recv":0,"send":0,"writ":0.28,"used":516.72,"free":3547.03},{"epoch":26121316,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":516.69,"free":3547.05},{"epoch":26121317,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":516.85,"free":3546.88},{"epoch":26121318,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":517.03,"free":3546.69},{"epoch":26121319,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":516.54,"free":3547.16},{"epoch":26121320,"idl":99.66,"recv":0,"send":0,"writ":0.28,"used":516.8,"free":3546.92},{"epoch":26121321,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.77,"free":3546.95},{"epoch":26121322,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":516.73,"free":3546.98},{"epoch":26121323,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":517.31,"free":3546.38},{"epoch":26121324,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":517.16,"free":3546.52},{"epoch":26121325,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":516.44,"free":3547.26},{"epoch":26121326,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.4,"free":3547.29},{"epoch":26121327,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":516.57,"free":3547.11},{"epoch":26121328,"idl":99.72,"recv":0,"send":0,"writ":0.52,"used":517.04,"free":3546.64},{"epoch":26121329,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":516.78,"free":3546.9},{"epoch":26121330,"idl":99.62,"recv":0,"send":0,"writ":0.33,"used":516.18,"free":3547.39},{"epoch":26121331,"idl":99.78,"recv":0,"send":0,"writ":0.21,"used":516.81,"free":3546.74},{"epoch":26121332,"idl":99.61,"recv":0,"send":0,"writ":0.17,"used":516.85,"free":3546.69},{"epoch":26121333,"idl":99.58,"recv":0,"send":0,"writ":0.43,"used":517.63,"free":3545.9},{"epoch":26121334,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":517.03,"free":3546.49},{"epoch":26121335,"idl":99.61,"recv":0,"send":0,"writ":0.33,"used":516.55,"free":3546.99},{"epoch":26121336,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.52,"free":3547.02},{"epoch":26121337,"idl":99.84,"recv":0,"send":0,"writ":0.22,"used":516.57,"free":3546.96},{"epoch":26121338,"idl":99.72,"recv":0,"send":0,"writ":0.44,"used":517.11,"free":3546.42},{"epoch":26121339,"idl":99.64,"recv":0,"send":0,"writ":0.44,"used":516.64,"free":3546.86},{"epoch":26121340,"idl":99.61,"recv":0,"send":0,"writ":0.32,"used":516.89,"free":3546.62},{"epoch":26121341,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":516.82,"free":3546.68},{"epoch":26121342,"idl":99.76,"recv":0,"send":0.01,"writ":0.2,"used":516.78,"free":3546.69},{"epoch":26121343,"idl":99.59,"recv":0,"send":0,"writ":0.43,"used":517.1,"free":3546.37},{"epoch":26121344,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":516.96,"free":3546.51},{"epoch":26121345,"idl":99.6,"recv":0,"send":0,"writ":0.34,"used":516.49,"free":3547},{"epoch":26121346,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":516.45,"free":3547.03},{"epoch":26121347,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":516.51,"free":3546.96},{"epoch":26121348,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.58,"free":3546.88},{"epoch":26121349,"idl":99.64,"recv":0,"send":0,"writ":0.57,"used":517.57,"free":3545.88},{"epoch":26121350,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":517.05,"free":3546.42},{"epoch":26121351,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":517.01,"free":3546.45},{"epoch":26121352,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":516.99,"free":3546.46},{"epoch":26121353,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":516.97,"free":3546.48},{"epoch":26121354,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":517.68,"free":3545.76},{"epoch":26121355,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":515.75,"free":3547.71},{"epoch":26121356,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.69,"free":3547.76},{"epoch":26121357,"idl":99.81,"recv":0,"send":0.02,"writ":0.23,"used":515.77,"free":3547.67},{"epoch":26121358,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.8,"free":3547.63},{"epoch":26121359,"idl":99.73,"recv":0,"send":0,"writ":0.5,"used":516.69,"free":3546.74},{"epoch":26121360,"idl":99.48,"recv":0,"send":0,"writ":0.34,"used":516.53,"free":3546.91},{"epoch":26121361,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":516.51,"free":3546.94},{"epoch":26121362,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":516.48,"free":3546.96},{"epoch":26121363,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":516.46,"free":3546.97},{"epoch":26121364,"idl":99.58,"recv":0,"send":0,"writ":0.42,"used":517.18,"free":3546.25},{"epoch":26121365,"idl":99.67,"recv":0,"send":0,"writ":0.42,"used":516.21,"free":3547.23},{"epoch":26121366,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":516.16,"free":3547.27},{"epoch":26121367,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.14,"free":3547.28},{"epoch":26121368,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.1,"free":3547.31},{"epoch":26121369,"idl":99.4,"recv":0,"send":0,"writ":0.93,"used":517.49,"free":3544.93},{"epoch":26121370,"idl":99.65,"recv":0,"send":0,"writ":0.34,"used":517.11,"free":3543.87},{"epoch":26121371,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.03,"free":3543.94},{"epoch":26121372,"idl":99.69,"recv":0,"send":0,"writ":0.16,"used":516.99,"free":3543.97},{"epoch":26121373,"idl":99.67,"recv":0,"send":0,"writ":0.14,"used":516.96,"free":3543.98},{"epoch":26121374,"idl":99.64,"recv":0,"send":0,"writ":0.52,"used":517.1,"free":3543.83},{"epoch":26121375,"idl":99.52,"recv":0,"send":0,"writ":0.49,"used":516.08,"free":3544.77},{"epoch":26121376,"idl":99.68,"recv":0,"send":0,"writ":0.16,"used":516.06,"free":3544.79},{"epoch":26121377,"idl":99.7,"recv":0,"send":0,"writ":0.19,"used":516.03,"free":3544.81},{"epoch":26121378,"idl":99.71,"recv":0,"send":0,"writ":0.15,"used":516.01,"free":3544.82},{"epoch":26121379,"idl":99.3,"recv":0,"send":0,"writ":0.3,"used":516.49,"free":3544.34},{"epoch":26121380,"idl":99.58,"recv":0,"send":0,"writ":0.48,"used":515.88,"free":3544.95},{"epoch":26121381,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.89,"free":3544.94},{"epoch":26121382,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.88,"free":3544.94},{"epoch":26121383,"idl":99.6,"recv":0,"send":0,"writ":0.15,"used":515.85,"free":3544.97},{"epoch":26121384,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.82,"free":3544.99},{"epoch":26121385,"idl":99.53,"recv":0,"send":0,"writ":0.73,"used":516.88,"free":3543.94},{"epoch":26121386,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":516.54,"free":3544.28},{"epoch":26121387,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.52,"free":3544.29},{"epoch":26121388,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":516.5,"free":3544.31},{"epoch":26121389,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":516.48,"free":3544.32},{"epoch":26121390,"idl":99.4,"recv":0,"send":0,"writ":0.79,"used":517.14,"free":3543.68},{"epoch":26121391,"idl":99.84,"recv":0,"send":0,"writ":0.23,"used":516.95,"free":3543.86},{"epoch":26121392,"idl":99.73,"recv":0,"send":0,"writ":0.17,"used":517.06,"free":3543.74},{"epoch":26121393,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.09,"free":3543.71},{"epoch":26121394,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":517.07,"free":3543.72},{"epoch":26121395,"idl":99.57,"recv":0,"send":0,"writ":0.73,"used":517.06,"free":3543.74},{"epoch":26121396,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.8,"free":3544},{"epoch":26121397,"idl":96.83,"recv":0.02,"send":0.01,"writ":14.39,"used":521.79,"free":3540.19},{"epoch":26121398,"idl":99.85,"recv":0,"send":0,"writ":64.25,"used":519.65,"free":3539.76},{"epoch":26121399,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":519.95,"free":3539.43},{"epoch":26121400,"idl":99.52,"recv":0,"send":0,"writ":0.71,"used":519.62,"free":3539.79},{"epoch":26121401,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":519.43,"free":3539.97},{"epoch":26121402,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":519.28,"free":3540.11},{"epoch":26121403,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":517.47,"free":3541.97},{"epoch":26121404,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":517.45,"free":3541.98},{"epoch":26121405,"idl":99.47,"recv":0,"send":0,"writ":0.74,"used":518.07,"free":3541.38},{"epoch":26121406,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":517.42,"free":3542.02},{"epoch":26121407,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":517.39,"free":3542.04},{"epoch":26121408,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":517.38,"free":3542.06},{"epoch":26121409,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":517.5,"free":3541.93},{"epoch":26121410,"idl":99.58,"recv":0,"send":0,"writ":0.72,"used":517.77,"free":3541.71},{"epoch":26121411,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.78,"free":3542.71},{"epoch":26121412,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.75,"free":3542.73},{"epoch":26121413,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":516.74,"free":3542.74},{"epoch":26121414,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.7,"free":3542.76},{"epoch":26121415,"idl":99.51,"recv":0,"send":0,"writ":0.51,"used":517.63,"free":3541.85},{"epoch":26121416,"idl":95.35,"recv":0,"send":0,"writ":0.39,"used":517.17,"free":3542.3},{"epoch":26121417,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":517.15,"free":3542.31},{"epoch":26121418,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":517.12,"free":3542.33},{"epoch":26121419,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":517.11,"free":3542.34},{"epoch":26121420,"idl":99.37,"recv":0,"send":0,"writ":0.28,"used":516.74,"free":3542.73},{"epoch":26121421,"idl":99.42,"recv":0,"send":0,"writ":0.57,"used":517.79,"free":3541.68},{"epoch":26121422,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":517.5,"free":3541.96},{"epoch":26121423,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":517.49,"free":3541.97},{"epoch":26121424,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":517.45,"free":3542},{"epoch":26121425,"idl":99.59,"recv":0,"send":0,"writ":0.31,"used":516.58,"free":3542.87},{"epoch":26121426,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":516.79,"free":3542.66},{"epoch":26121427,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":516.42,"free":3543.02},{"epoch":26121428,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":516.38,"free":3543.04},{"epoch":26121429,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":516.85,"free":3542.55},{"epoch":26121430,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":515.43,"free":3543.98},{"epoch":26121431,"idl":99.65,"recv":0,"send":0,"writ":0.6,"used":516.59,"free":3542.82},{"epoch":26121432,"idl":99.68,"recv":0,"send":0,"writ":0.18,"used":516.14,"free":3543.26},{"epoch":26121433,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":516.23,"free":3543.14},{"epoch":26121434,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":516.19,"free":3543.18},{"epoch":26121435,"idl":99.69,"recv":0,"send":0,"writ":0.35,"used":517.42,"free":3541.97},{"epoch":26121436,"idl":99.6,"recv":0,"send":0,"writ":0.61,"used":517.88,"free":3541.5},{"epoch":26121437,"idl":99.69,"recv":0,"send":0,"writ":0.22,"used":517.63,"free":3541.74},{"epoch":26121438,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":517.6,"free":3541.76},{"epoch":26121439,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":517.6,"free":3541.76},{"epoch":26121440,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":517.34,"free":3542.03},{"epoch":26121441,"idl":99.6,"recv":0,"send":0,"writ":0.58,"used":517.69,"free":3541.68},{"epoch":26121442,"idl":99.63,"recv":0,"send":0,"writ":0.15,"used":517.3,"free":3542.07},{"epoch":26121443,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":517.29,"free":3542.07},{"epoch":26121444,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.83,"free":3542.53},{"epoch":26121445,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":516.95,"free":3542.43},{"epoch":26121446,"idl":99.63,"recv":0,"send":0,"writ":0.62,"used":517.29,"free":3542.08},{"epoch":26121447,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.91,"free":3542.46},{"epoch":26121448,"idl":99.69,"recv":0,"send":0,"writ":0.14,"used":516.89,"free":3542.47},{"epoch":26121449,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":516.87,"free":3542.49},{"epoch":26121450,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":516.88,"free":3542.5},{"epoch":26121451,"idl":99.58,"recv":0,"send":0,"writ":0.48,"used":517.27,"free":3542.08},{"epoch":26121452,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":516.57,"free":3542.78},{"epoch":26121453,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.54,"free":3542.8},{"epoch":26121454,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":516.53,"free":3542.81},{"epoch":26121455,"idl":99.57,"recv":0,"send":0,"writ":0.3,"used":516.28,"free":3543.07},{"epoch":26121456,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.36,"free":3542.97},{"epoch":26121457,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":516.5,"free":3542.82},{"epoch":26121458,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":516.13,"free":3543.18},{"epoch":26121459,"idl":99.49,"recv":0,"send":0,"writ":0.28,"used":516.85,"free":3542.44},{"epoch":26121460,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":517.11,"free":3542.19},{"epoch":26121461,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":517.06,"free":3542.24},{"epoch":26121462,"idl":99.59,"recv":0,"send":0,"writ":0.56,"used":517.14,"free":3542.15},{"epoch":26121463,"idl":99.69,"recv":0,"send":0,"writ":0.14,"used":516.77,"free":3542.52},{"epoch":26121464,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":516.74,"free":3542.55},{"epoch":26121465,"idl":99.47,"recv":0,"send":0,"writ":0.29,"used":515.08,"free":3544.22},{"epoch":26121466,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":514.99,"free":3544.3},{"epoch":26121467,"idl":99.58,"recv":0,"send":0,"writ":0.56,"used":516.24,"free":3543.05},{"epoch":26121468,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.86,"free":3543.43},{"epoch":26121469,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":515.83,"free":3543.45},{"epoch":26121470,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":516.31,"free":3542.98},{"epoch":26121471,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.29,"free":3543},{"epoch":26121472,"idl":99.61,"recv":0,"send":0,"writ":0.55,"used":517.11,"free":3542.17},{"epoch":26121473,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.99,"free":3542.29},{"epoch":26121474,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":516.97,"free":3542.3},{"epoch":26121475,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":516.96,"free":3542.33},{"epoch":26121476,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":517.07,"free":3542.21},{"epoch":26121477,"idl":99.62,"recv":0,"send":0,"writ":0.55,"used":517.48,"free":3541.79},{"epoch":26121478,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":517.11,"free":3542.16},{"epoch":26121479,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":517.09,"free":3542.18},{"epoch":26121480,"idl":99.61,"recv":0,"send":0,"writ":0.29,"used":516.85,"free":3542.44},{"epoch":26121481,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":516.83,"free":3542.45},{"epoch":26121482,"idl":99.65,"recv":0,"send":0,"writ":0.52,"used":517.28,"free":3542},{"epoch":26121483,"idl":99.75,"recv":0,"send":0,"writ":0.2,"used":516.54,"free":3542.73},{"epoch":26121484,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":516.52,"free":3542.75},{"epoch":26121485,"idl":99.65,"recv":0,"send":0,"writ":0.32,"used":516.53,"free":3542.75},{"epoch":26121486,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":516.5,"free":3542.78},{"epoch":26121487,"idl":99.64,"recv":0,"send":0,"writ":0.55,"used":516.97,"free":3542.3},{"epoch":26121488,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":517.12,"free":3542.15},{"epoch":26121489,"idl":99.5,"recv":0,"send":0.01,"writ":0.32,"used":517.34,"free":3541.9},{"epoch":26121490,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":517.07,"free":3542.19},{"epoch":26121491,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":517.03,"free":3542.23},{"epoch":26121492,"idl":99.57,"recv":0,"send":0,"writ":0.57,"used":517.45,"free":3541.8},{"epoch":26121493,"idl":99.63,"recv":0,"send":0,"writ":0.14,"used":517.23,"free":3542.02},{"epoch":26121494,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":517.21,"free":3542.03},{"epoch":26121495,"idl":99.43,"recv":0,"send":0,"writ":0.33,"used":516.12,"free":3543.13},{"epoch":26121496,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":516.13,"free":3543.12},{"epoch":26121497,"idl":99.65,"recv":0,"send":0,"writ":0.45,"used":516.96,"free":3542.28},{"epoch":26121498,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":516.07,"free":3543.16},{"epoch":26121499,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":516.04,"free":3543.18},{"epoch":26121500,"idl":99.61,"recv":0,"send":0,"writ":0.29,"used":517.24,"free":3542},{"epoch":26121501,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":517.25,"free":3541.98},{"epoch":26121502,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":517.23,"free":3542},{"epoch":26121503,"idl":99.6,"recv":0,"send":0,"writ":0.55,"used":516.85,"free":3542.37},{"epoch":26121504,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.46,"free":3542.75},{"epoch":26121505,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":516.93,"free":3542.3},{"epoch":26121506,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":516.94,"free":3542.31},{"epoch":26121507,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":516.97,"free":3542.27},{"epoch":26121508,"idl":99.63,"recv":0,"send":0,"writ":0.59,"used":517.43,"free":3541.8},{"epoch":26121509,"idl":99.78,"recv":0,"send":0,"writ":0.19,"used":517.02,"free":3542.19},{"epoch":26121510,"idl":99.53,"recv":0,"send":0,"writ":0.34,"used":516.29,"free":3542.94},{"epoch":26121511,"idl":99.76,"recv":0,"send":0,"writ":0.21,"used":516.07,"free":3543.16},{"epoch":26121512,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":515.99,"free":3543.23},{"epoch":26121513,"idl":99.64,"recv":0,"send":0.01,"writ":0.63,"used":517.47,"free":3541.75},{"epoch":26121514,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":516.91,"free":3542.31},{"epoch":26121515,"idl":99.59,"recv":0,"send":0,"writ":0.33,"used":515.94,"free":3543.29},{"epoch":26121516,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.02,"free":3543.2},{"epoch":26121517,"idl":99.74,"recv":0.01,"send":0.61,"writ":0.21,"used":515.98,"free":3543.16},{"epoch":26121518,"idl":96.5,"recv":0.02,"send":0.01,"writ":79.07,"used":528.22,"free":3532.67},{"epoch":26121519,"idl":99.41,"recv":0,"send":0,"writ":0.46,"used":519.79,"free":3539.12},{"epoch":26121520,"idl":99.59,"recv":0,"send":0,"writ":0.32,"used":518.85,"free":3540.09},{"epoch":26121521,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":518.78,"free":3540.15},{"epoch":26121522,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":518.77,"free":3540.15},{"epoch":26121523,"idl":99.65,"recv":0,"send":0,"writ":0.62,"used":518.26,"free":3540.67},{"epoch":26121524,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":516.76,"free":3542.19},{"epoch":26121525,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":517.71,"free":3541.25},{"epoch":26121526,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":517.73,"free":3541.24},{"epoch":26121527,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":517.7,"free":3541.26},{"epoch":26121528,"idl":99.57,"recv":0,"send":0,"writ":0.56,"used":517.93,"free":3541.02},{"epoch":26121529,"idl":96.85,"recv":0,"send":0,"writ":0.17,"used":517.41,"free":3541.53},{"epoch":26121530,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":517.42,"free":3541.54},{"epoch":26121531,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":517.39,"free":3541.57},{"epoch":26121532,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":517.38,"free":3541.58},{"epoch":26121533,"idl":99.56,"recv":0,"send":0,"writ":0.45,"used":517.7,"free":3541.25},{"epoch":26121534,"idl":99.7,"recv":0,"send":0,"writ":0.34,"used":517.34,"free":3541.61},{"epoch":26121535,"idl":99.68,"recv":0,"send":0,"writ":0.38,"used":517.48,"free":3541.48},{"epoch":26121536,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":517.52,"free":3541.44},{"epoch":26121537,"idl":99.77,"recv":0,"send":0,"writ":0.21,"used":517.5,"free":3541.45},{"epoch":26121538,"idl":99.69,"recv":0,"send":0,"writ":0.43,"used":517.96,"free":3540.99},{"epoch":26121539,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":517.19,"free":3541.76},{"epoch":26121540,"idl":99.54,"recv":0,"send":0,"writ":0.32,"used":517.45,"free":3541.51},{"epoch":26121541,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":517.41,"free":3541.55},{"epoch":26121542,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":517.41,"free":3541.55},{"epoch":26121543,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":517.38,"free":3541.57},{"epoch":26121544,"idl":99.55,"recv":0,"send":0,"writ":0.63,"used":517.72,"free":3541.22},{"epoch":26121545,"idl":99.67,"recv":0,"send":0,"writ":0.33,"used":517.48,"free":3541.47},{"epoch":26121546,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":517.51,"free":3541.44},{"epoch":26121547,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":517.49,"free":3541.45},{"epoch":26121548,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":517.45,"free":3541.48},{"epoch":26121549,"idl":99.45,"recv":0,"send":0,"writ":0.72,"used":517.75,"free":3541.16},{"epoch":26121550,"idl":99.59,"recv":0,"send":0,"writ":0.37,"used":516.46,"free":3542.47},{"epoch":26121551,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":516.41,"free":3542.51},{"epoch":26121552,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":516.38,"free":3542.54},{"epoch":26121553,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":516.36,"free":3542.55},{"epoch":26121554,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":517.44,"free":3541.48},{"epoch":26121555,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":517.52,"free":3541.42},{"epoch":26121556,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":517.49,"free":3541.44},{"epoch":26121557,"idl":99.81,"recv":0,"send":0,"writ":0.22,"used":517.48,"free":3541.45},{"epoch":26121558,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":517.45,"free":3541.47},{"epoch":26121559,"idl":99.63,"recv":0,"send":0,"writ":0.57,"used":518.27,"free":3540.64},{"epoch":26121560,"idl":99.58,"recv":0,"send":0,"writ":0.32,"used":516.51,"free":3542.43},{"epoch":26121561,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":516.43,"free":3542.5},{"epoch":26121562,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":516.4,"free":3542.52},{"epoch":26121563,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":516.39,"free":3542.53},{"epoch":26121564,"idl":99.61,"recv":0,"send":0,"writ":0.63,"used":516.74,"free":3542.17},{"epoch":26121565,"idl":99.49,"recv":0,"send":0,"writ":0.39,"used":516.37,"free":3542.56},{"epoch":26121566,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":516.43,"free":3542.5},{"epoch":26121567,"idl":99.77,"recv":0,"send":0,"writ":0.21,"used":516.5,"free":3542.42},{"epoch":26121568,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":516.48,"free":3542.44},{"epoch":26121569,"idl":99.67,"recv":0,"send":0,"writ":0.62,"used":517.19,"free":3541.72},{"epoch":26121570,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":517.45,"free":3541.48},{"epoch":26121571,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.21,"used":517.2,"free":3541.73},{"epoch":26121572,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":517.09,"free":3541.84},{"epoch":26121573,"idl":99.71,"recv":0,"send":0,"writ":0.17,"used":517.12,"free":3541.81},{"epoch":26121574,"idl":99.65,"recv":0,"send":0,"writ":0.43,"used":517.71,"free":3541.22},{"epoch":26121575,"idl":99.65,"recv":0,"send":0,"writ":0.48,"used":517.49,"free":3541.46},{"epoch":26121576,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":517.46,"free":3541.49},{"epoch":26121577,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":517.44,"free":3541.5},{"epoch":26121578,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":517.42,"free":3541.52},{"epoch":26121579,"idl":99.51,"recv":0,"send":0,"writ":0.47,"used":518.08,"free":3540.83},{"epoch":26121580,"idl":99.65,"recv":0,"send":0,"writ":0.6,"used":517.64,"free":3541.29},{"epoch":26121581,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":517.62,"free":3541.3},{"epoch":26121582,"idl":99.74,"recv":0,"send":0,"writ":0.17,"used":517.6,"free":3541.32},{"epoch":26121583,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":517.58,"free":3541.33},{"epoch":26121584,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":517.56,"free":3541.35},{"epoch":26121585,"idl":99.47,"recv":0,"send":0,"writ":0.73,"used":517.01,"free":3541.92},{"epoch":26121586,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":516.49,"free":3542.44},{"epoch":26121587,"idl":99.76,"recv":0,"send":0,"writ":0.19,"used":516.48,"free":3542.44},{"epoch":26121588,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":516.45,"free":3542.47},{"epoch":26121589,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":516.43,"free":3542.48},{"epoch":26121590,"idl":99.42,"recv":0,"send":0,"writ":0.77,"used":517.58,"free":3541.34},{"epoch":26121591,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":517.39,"free":3541.54},{"epoch":26121592,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":517.37,"free":3541.55},{"epoch":26121593,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":517.35,"free":3541.57},{"epoch":26121594,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":517.33,"free":3541.58},{"epoch":26121595,"idl":99.59,"recv":0,"send":0,"writ":0.75,"used":517.46,"free":3541.47},{"epoch":26121596,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":516.82,"free":3542.1},{"epoch":26121597,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":513.9,"free":3545.02},{"epoch":26121598,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":513.77,"free":3545.14},{"epoch":26121599,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":513.77,"free":3545.14},{"epoch":26121600,"idl":99.26,"recv":0,"send":0,"writ":0.73,"used":514.46,"free":3544.46},{"epoch":26121601,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":513.99,"free":3544.93},{"epoch":26121602,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":513.96,"free":3544.96},{"epoch":26121603,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":513.95,"free":3544.96},{"epoch":26121604,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":513.92,"free":3544.98},{"epoch":26121605,"idl":99.61,"recv":0,"send":0,"writ":0.76,"used":514.92,"free":3543.99},{"epoch":26121606,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":514.39,"free":3544.52},{"epoch":26121607,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":514.38,"free":3544.53},{"epoch":26121608,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":514.35,"free":3544.55},{"epoch":26121609,"idl":99.6,"recv":0,"send":0,"writ":0.3,"used":514.58,"free":3544.3},{"epoch":26121610,"idl":99.53,"recv":0,"send":0,"writ":0.74,"used":515.08,"free":3543.82},{"epoch":26121611,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":515.03,"free":3543.87},{"epoch":26121612,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.24,"used":515,"free":3543.89},{"epoch":26121613,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":514.95,"free":3543.93},{"epoch":26121614,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":514.93,"free":3543.96},{"epoch":26121615,"idl":99.45,"recv":0,"send":0,"writ":0.62,"used":514.63,"free":3544.28},{"epoch":26121616,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":514.16,"free":3544.75},{"epoch":26121617,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":514.14,"free":3544.76},{"epoch":26121618,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":514.12,"free":3544.78},{"epoch":26121619,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":514.22,"free":3544.67},{"epoch":26121620,"idl":99.54,"recv":0,"send":0,"writ":0.52,"used":514.66,"free":3544.26},{"epoch":26121621,"idl":99.83,"recv":0,"send":0,"writ":0.43,"used":514.51,"free":3544.39},{"epoch":26121622,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":514.49,"free":3544.41},{"epoch":26121623,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":514.46,"free":3544.43},{"epoch":26121624,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":514.45,"free":3544.44},{"epoch":26121625,"idl":99.61,"recv":0,"send":0,"writ":0.48,"used":515.04,"free":3543.87},{"epoch":26121626,"idl":99.86,"recv":0,"send":0,"writ":0.42,"used":514.92,"free":3543.99},{"epoch":26121627,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":514.89,"free":3544.01},{"epoch":26121628,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":514.86,"free":3544.03},{"epoch":26121629,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":514.84,"free":3544.04},{"epoch":26121630,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":514.71,"free":3544.19},{"epoch":26121631,"idl":99.69,"recv":0,"send":0,"writ":0.65,"used":514.74,"free":3544.16},{"epoch":26121632,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":514.24,"free":3544.65},{"epoch":26121633,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":514.22,"free":3544.68},{"epoch":26121634,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":514.2,"free":3544.7},{"epoch":26121635,"idl":99.4,"recv":0,"send":0,"writ":0.37,"used":514.92,"free":3544},{"epoch":26121636,"idl":99.55,"recv":0,"send":0,"writ":0.59,"used":515.11,"free":3543.8},{"epoch":26121637,"idl":99.75,"recv":0,"send":0,"writ":0.2,"used":514.64,"free":3544.26},{"epoch":26121638,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":514.63,"free":3544.28},{"epoch":26121639,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":514.85,"free":3544.04},{"epoch":26121640,"idl":99.73,"recv":0,"send":0.01,"writ":0.39,"used":514.61,"free":3544.29},{"epoch":26121641,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":515.36,"free":3543.54},{"epoch":26121642,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":514.72,"free":3544.17},{"epoch":26121643,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":514.7,"free":3544.19},{"epoch":26121644,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":514.68,"free":3544.22},{"epoch":26121645,"idl":99.66,"recv":0,"send":0,"writ":0.35,"used":514.68,"free":3544.24},{"epoch":26121646,"idl":99.75,"recv":0,"send":0,"writ":0.42,"used":515.09,"free":3543.83},{"epoch":26121647,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":514.88,"free":3544.03},{"epoch":26121648,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":514.86,"free":3544.04},{"epoch":26121649,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":514.84,"free":3544.06},{"epoch":26121650,"idl":96.72,"recv":0,"send":0,"writ":0.3,"used":514.85,"free":3544.07},{"epoch":26121651,"idl":99.47,"recv":0,"send":0,"writ":0.46,"used":515.19,"free":3543.72},{"epoch":26121652,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":514.89,"free":3544.01},{"epoch":26121653,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":514.97,"free":3543.93},{"epoch":26121654,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":514.95,"free":3543.95},{"epoch":26121655,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":514.7,"free":3544.21},{"epoch":26121656,"idl":99.67,"recv":0,"send":0,"writ":0.42,"used":515.08,"free":3543.83},{"epoch":26121657,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":514.91,"free":3544},{"epoch":26121658,"idl":98.76,"recv":0,"send":0,"writ":0.18,"used":514.89,"free":3544.01},{"epoch":26121659,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":514.87,"free":3544.03},{"epoch":26121660,"idl":99.46,"recv":0,"send":0,"writ":0.31,"used":513.7,"free":3545.21},{"epoch":26121661,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":513.62,"free":3545.29},{"epoch":26121662,"idl":99.56,"recv":0,"send":0,"writ":0.57,"used":515.1,"free":3543.8},{"epoch":26121663,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":514.32,"free":3544.58},{"epoch":26121664,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":514.4,"free":3544.49},{"epoch":26121665,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":514.96,"free":3543.95},{"epoch":26121666,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":514.96,"free":3543.95},{"epoch":26121667,"idl":99.67,"recv":0,"send":0,"writ":0.6,"used":515.63,"free":3543.27},{"epoch":26121668,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":514.92,"free":3543.98},{"epoch":26121669,"idl":99.62,"recv":0,"send":0,"writ":0.31,"used":514.89,"free":3543.98},{"epoch":26121670,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":514.9,"free":3543.99},{"epoch":26121671,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":514.87,"free":3544.02},{"epoch":26121672,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":515.59,"free":3543.29},{"epoch":26121673,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":515.07,"free":3543.81},{"epoch":26121674,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":515.04,"free":3543.86},{"epoch":26121675,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":514.57,"free":3544.35},{"epoch":26121676,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":514.7,"free":3544.21},{"epoch":26121677,"idl":99.75,"recv":0,"send":0,"writ":0.61,"used":514.88,"free":3544.03},{"epoch":26121678,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":514.19,"free":3544.72},{"epoch":26121679,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":514.17,"free":3544.73},{"epoch":26121680,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":513.92,"free":3544.99},{"epoch":26121681,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":513.9,"free":3545.01},{"epoch":26121682,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":514.59,"free":3544.31},{"epoch":26121683,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":514.6,"free":3544.3},{"epoch":26121684,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":514.58,"free":3544.32},{"epoch":26121685,"idl":99.67,"recv":0,"send":0.01,"writ":0.38,"used":514.81,"free":3544.11},{"epoch":26121686,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":514.8,"free":3544.12},{"epoch":26121687,"idl":99.7,"recv":0,"send":0,"writ":0.48,"used":515.4,"free":3543.5},{"epoch":26121688,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":515.21,"free":3543.69},{"epoch":26121689,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":515.18,"free":3543.71},{"epoch":26121690,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":515.25,"free":3543.66},{"epoch":26121691,"idl":99.74,"recv":0,"send":0,"writ":0.2,"used":515,"free":3543.91},{"epoch":26121692,"idl":99.67,"recv":0,"send":0,"writ":0.45,"used":515.45,"free":3543.45},{"epoch":26121693,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":515.09,"free":3543.8},{"epoch":26121694,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.08,"free":3543.81},{"epoch":26121695,"idl":99.6,"recv":0,"send":0,"writ":0.38,"used":514.13,"free":3544.78},{"epoch":26121696,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":514.08,"free":3544.82},{"epoch":26121697,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":514.15,"free":3544.75},{"epoch":26121698,"idl":99.69,"recv":0.01,"send":0.01,"writ":0.58,"used":515.22,"free":3543.67},{"epoch":26121699,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":515.1,"free":3543.77},{"epoch":26121700,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":514.86,"free":3544.03},{"epoch":26121701,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":514.83,"free":3544.05},{"epoch":26121702,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":514.81,"free":3544.07},{"epoch":26121703,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":515.61,"free":3543.26},{"epoch":26121704,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":515.17,"free":3543.71},{"epoch":26121705,"idl":99.67,"recv":0,"send":0,"writ":0.38,"used":515.45,"free":3543.45},{"epoch":26121706,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":515.43,"free":3543.47},{"epoch":26121707,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":515.42,"free":3543.47},{"epoch":26121708,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":515.86,"free":3543.02},{"epoch":26121709,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":515.12,"free":3543.76},{"epoch":26121710,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":515.12,"free":3543.77},{"epoch":26121711,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":515.1,"free":3543.8},{"epoch":26121712,"idl":99.45,"recv":0,"send":0,"writ":0.17,"used":515.08,"free":3543.81},{"epoch":26121713,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":515.27,"free":3543.61},{"epoch":26121714,"idl":99.86,"recv":0,"send":0,"writ":0.22,"used":514.79,"free":3544.09},{"epoch":26121715,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":514.8,"free":3544.1},{"epoch":26121716,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":514.9,"free":3544},{"epoch":26121717,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":514.94,"free":3543.95},{"epoch":26121718,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":515.38,"free":3543.5},{"epoch":26121719,"idl":99.22,"recv":0,"send":0,"writ":0.18,"used":515.15,"free":3543.73},{"epoch":26121720,"idl":99.58,"recv":0,"send":0,"writ":0.33,"used":515.65,"free":3543.25},{"epoch":26121721,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":515.62,"free":3543.27},{"epoch":26121722,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.61,"free":3543.29},{"epoch":26121723,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":515.72,"free":3543.17},{"epoch":26121724,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":515.07,"free":3543.81},{"epoch":26121725,"idl":99.63,"recv":0,"send":0,"writ":0.35,"used":514.63,"free":3544.27},{"epoch":26121726,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.55,"free":3544.35},{"epoch":26121727,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":514.62,"free":3544.27},{"epoch":26121728,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":515.18,"free":3543.7},{"epoch":26121729,"idl":99.62,"recv":0,"send":0,"writ":0.44,"used":515.39,"free":3543.46},{"epoch":26121730,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":515.4,"free":3543.48},{"epoch":26121731,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.37,"free":3543.5},{"epoch":26121732,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.33,"free":3543.53},{"epoch":26121733,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":515.75,"free":3543.11},{"epoch":26121734,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":515.3,"free":3543.55},{"epoch":26121735,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":515.3,"free":3543.58},{"epoch":26121736,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":515.28,"free":3543.59},{"epoch":26121737,"idl":99.8,"recv":0,"send":0,"writ":0.21,"used":515.33,"free":3543.53},{"epoch":26121738,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":515.77,"free":3543.09},{"epoch":26121739,"idl":99.84,"recv":0,"send":0,"writ":0.37,"used":515.4,"free":3543.45},{"epoch":26121740,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":515.4,"free":3543.47},{"epoch":26121741,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.38,"free":3543.48},{"epoch":26121742,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.36,"free":3543.5},{"epoch":26121743,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":515.32,"free":3543.53},{"epoch":26121744,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":515.66,"free":3543.19},{"epoch":26121745,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":515.08,"free":3543.81},{"epoch":26121746,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.05,"free":3543.84},{"epoch":26121747,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.03,"free":3543.86},{"epoch":26121748,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.01,"free":3543.87},{"epoch":26121749,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":515.98,"free":3542.9},{"epoch":26121750,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":515.43,"free":3543.46},{"epoch":26121751,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":515.24,"free":3543.64},{"epoch":26121752,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":515.12,"free":3543.76},{"epoch":26121753,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":515.1,"free":3543.78},{"epoch":26121754,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":515.43,"free":3543.44},{"epoch":26121755,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":515.56,"free":3543.32},{"epoch":26121756,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.55,"free":3543.33},{"epoch":26121757,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.53,"free":3543.35},{"epoch":26121758,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":515.5,"free":3543.37},{"epoch":26121759,"idl":99.59,"recv":0,"send":0,"writ":0.67,"used":515.55,"free":3543.29},{"epoch":26121760,"idl":99.7,"recv":0.02,"send":0.07,"writ":0.38,"used":515.14,"free":3543.69},{"epoch":26121761,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":514.98,"free":3543.75},{"epoch":26121762,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":514.96,"free":3543.76},{"epoch":26121763,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":514.93,"free":3543.79},{"epoch":26121764,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":515.72,"free":3543.02},{"epoch":26121765,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":515.43,"free":3543.32},{"epoch":26121766,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":515.4,"free":3543.35},{"epoch":26121767,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.47,"free":3543.28},{"epoch":26121768,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.55,"free":3543.19},{"epoch":26121769,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":515.88,"free":3542.86},{"epoch":26121770,"idl":99.73,"recv":0,"send":0,"writ":0.37,"used":515.49,"free":3543.25},{"epoch":26121771,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.47,"free":3543.26},{"epoch":26121772,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.44,"free":3543.29},{"epoch":26121773,"idl":99.88,"recv":0,"send":0.01,"writ":0.14,"used":515.41,"free":3543.31},{"epoch":26121774,"idl":99.75,"recv":0,"send":0,"writ":0.42,"used":514.91,"free":3543.8},{"epoch":26121775,"idl":99.79,"recv":0,"send":0,"writ":0.43,"used":514.65,"free":3544.09},{"epoch":26121776,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":514.63,"free":3544.11},{"epoch":26121777,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":514.78,"free":3543.94},{"epoch":26121778,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":514.76,"free":3543.96},{"epoch":26121779,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":515.43,"free":3543.29},{"epoch":26121780,"idl":98.44,"recv":0,"send":0,"writ":0.57,"used":513.53,"free":3545.2},{"epoch":26121781,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":513.4,"free":3545.32},{"epoch":26121782,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":513.22,"free":3545.5},{"epoch":26121783,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":513.2,"free":3545.51},{"epoch":26121784,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":513.18,"free":3545.53},{"epoch":26121785,"idl":99.53,"recv":0,"send":0,"writ":0.71,"used":515.03,"free":3543.7},{"epoch":26121786,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":514.65,"free":3544.07},{"epoch":26121787,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":514.63,"free":3544.09},{"epoch":26121788,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.61,"free":3544.1},{"epoch":26121789,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":514.79,"free":3543.9},{"epoch":26121790,"idl":99.59,"recv":0,"send":0,"writ":0.7,"used":515.4,"free":3543.3},{"epoch":26121791,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":514.99,"free":3543.71},{"epoch":26121792,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":514.97,"free":3543.73},{"epoch":26121793,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":514.94,"free":3543.75},{"epoch":26121794,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.93,"free":3543.78},{"epoch":26121795,"idl":99.56,"recv":0,"send":0,"writ":0.77,"used":515.36,"free":3543.36},{"epoch":26121796,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":514.64,"free":3544.07},{"epoch":26121797,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":514.62,"free":3544.09},{"epoch":26121798,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":514.6,"free":3544.11},{"epoch":26121799,"idl":99.77,"recv":0,"send":0,"writ":0.13,"used":514.68,"free":3544.02},{"epoch":26121800,"idl":99.5,"recv":0,"send":0,"writ":0.67,"used":515.36,"free":3543.36},{"epoch":26121801,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":515,"free":3543.71},{"epoch":26121802,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.98,"free":3543.73},{"epoch":26121803,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":514.96,"free":3543.75},{"epoch":26121804,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":514.93,"free":3543.77},{"epoch":26121805,"idl":99.48,"recv":0,"send":0,"writ":0.61,"used":515.28,"free":3543.44},{"epoch":26121806,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":514.9,"free":3543.81},{"epoch":26121807,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":514.87,"free":3543.84},{"epoch":26121808,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.86,"free":3543.85},{"epoch":26121809,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":514.83,"free":3543.87},{"epoch":26121810,"idl":99.55,"recv":0,"send":0,"writ":0.54,"used":515.05,"free":3543.66},{"epoch":26121811,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":514.49,"free":3544.22},{"epoch":26121812,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":514.24,"free":3544.47},{"epoch":26121813,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":514.22,"free":3544.48},{"epoch":26121814,"idl":99.48,"recv":0,"send":0,"writ":0.25,"used":515.23,"free":3543.47},{"epoch":26121815,"idl":99.5,"recv":0,"send":0,"writ":0.6,"used":515.3,"free":3543.41},{"epoch":26121816,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":514.9,"free":3543.8},{"epoch":26121817,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":514.89,"free":3543.81},{"epoch":26121818,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":514.87,"free":3543.83},{"epoch":26121819,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":514.85,"free":3543.82},{"epoch":26121820,"idl":99.54,"recv":0,"send":0,"writ":0.66,"used":514.84,"free":3543.85},{"epoch":26121821,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":514.83,"free":3543.86},{"epoch":26121822,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515,"free":3543.67},{"epoch":26121823,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515,"free":3543.67},{"epoch":26121824,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":514.97,"free":3543.73},{"epoch":26121825,"idl":99.6,"recv":0,"send":0,"writ":0.49,"used":515.57,"free":3543.14},{"epoch":26121826,"idl":99.79,"recv":0,"send":0,"writ":0.38,"used":514.95,"free":3543.76},{"epoch":26121827,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":514.93,"free":3543.78},{"epoch":26121828,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":514.91,"free":3543.8},{"epoch":26121829,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":515.08,"free":3543.62},{"epoch":26121830,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":515.12,"free":3543.59},{"epoch":26121831,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":514.75,"free":3543.96},{"epoch":26121832,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":514.18,"free":3544.52},{"epoch":26121833,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":514.26,"free":3544.44},{"epoch":26121834,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":514.24,"free":3544.46},{"epoch":26121835,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":514.97,"free":3543.74},{"epoch":26121836,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":515.31,"free":3543.41},{"epoch":26121837,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":514.93,"free":3543.78},{"epoch":26121838,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":514.91,"free":3543.79},{"epoch":26121839,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":514.88,"free":3543.82},{"epoch":26121840,"idl":99.49,"recv":0,"send":0,"writ":0.3,"used":513.91,"free":3544.81},{"epoch":26121841,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":515.2,"free":3543.51},{"epoch":26121842,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.33,"free":3543.38},{"epoch":26121843,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.49,"free":3543.21},{"epoch":26121844,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.47,"free":3543.23},{"epoch":26121845,"idl":99.61,"recv":0,"send":0,"writ":0.32,"used":515.23,"free":3543.48},{"epoch":26121846,"idl":99.64,"recv":0,"send":0,"writ":0.57,"used":515.44,"free":3543.27},{"epoch":26121847,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":514.94,"free":3543.76},{"epoch":26121848,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":514.91,"free":3543.79},{"epoch":26121849,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":515.19,"free":3543.48},{"epoch":26121850,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":514.9,"free":3543.79},{"epoch":26121851,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":515.61,"free":3543.08},{"epoch":26121852,"idl":99.87,"recv":0.03,"send":0.7,"writ":0.24,"used":515.01,"free":3543.37},{"epoch":26121853,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.96,"free":3543.32},{"epoch":26121854,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":514.94,"free":3543.34},{"epoch":26121855,"idl":99.51,"recv":0,"send":0,"writ":0.35,"used":513.29,"free":3545},{"epoch":26121856,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":514.01,"free":3544.28},{"epoch":26121857,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":514.83,"free":3543.44},{"epoch":26121858,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":514.81,"free":3543.47},{"epoch":26121859,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":514.78,"free":3543.49},{"epoch":26121860,"idl":99.46,"recv":0,"send":0,"writ":0.32,"used":514.55,"free":3543.74},{"epoch":26121861,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":514.52,"free":3543.77},{"epoch":26121862,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":515.34,"free":3542.94},{"epoch":26121863,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":514.97,"free":3543.31},{"epoch":26121864,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":514.95,"free":3543.32},{"epoch":26121865,"idl":99.66,"recv":0,"send":0,"writ":0.33,"used":514.47,"free":3543.82},{"epoch":26121866,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":514.52,"free":3543.78},{"epoch":26121867,"idl":99.71,"recv":0,"send":0,"writ":0.64,"used":515.41,"free":3542.89},{"epoch":26121868,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":515.04,"free":3543.25},{"epoch":26121869,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.02,"free":3543.27},{"epoch":26121870,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":514.76,"free":3543.54},{"epoch":26121871,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":514.62,"free":3543.68},{"epoch":26121872,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":515.43,"free":3542.87},{"epoch":26121873,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.18,"free":3543.11},{"epoch":26121874,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":515.15,"free":3543.13},{"epoch":26121875,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":515.28,"free":3543.03},{"epoch":26121876,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.31,"free":3542.99},{"epoch":26121877,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":515.64,"free":3542.66},{"epoch":26121878,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":515.26,"free":3543.03},{"epoch":26121879,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":515.46,"free":3542.81},{"epoch":26121880,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":515.23,"free":3543.06},{"epoch":26121881,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.19,"free":3543.09},{"epoch":26121882,"idl":94.92,"recv":0.33,"send":0.01,"writ":79.15,"used":527.63,"free":3530.9},{"epoch":26121883,"idl":99.73,"recv":0,"send":0,"writ":181.38,"used":516.91,"free":3540.99},{"epoch":26121884,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.89,"free":3541.02},{"epoch":26121885,"idl":99.51,"recv":0,"send":0,"writ":0.32,"used":517.17,"free":3540.75},{"epoch":26121886,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":517.08,"free":3540.83},{"epoch":26121887,"idl":99.65,"recv":0,"send":0,"writ":0.61,"used":516.87,"free":3541.05},{"epoch":26121888,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.35,"free":3542.59},{"epoch":26121889,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.44,"free":3542.49},{"epoch":26121890,"idl":99.56,"recv":0,"send":0,"writ":0.36,"used":515.74,"free":3542.2},{"epoch":26121891,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.72,"free":3542.22},{"epoch":26121892,"idl":99.65,"recv":0,"send":0,"writ":0.42,"used":516,"free":3541.95},{"epoch":26121893,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":515.17,"free":3542.79},{"epoch":26121894,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.15,"free":3542.81},{"epoch":26121895,"idl":99.63,"recv":0,"send":0,"writ":0.32,"used":515.63,"free":3542.35},{"epoch":26121896,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.61,"free":3542.36},{"epoch":26121897,"idl":99.57,"recv":0,"send":0,"writ":0.43,"used":516.01,"free":3541.96},{"epoch":26121898,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":515.49,"free":3542.48},{"epoch":26121899,"idl":99.76,"recv":0,"send":0,"writ":0.2,"used":515.46,"free":3542.5},{"epoch":26121900,"idl":97.71,"recv":0,"send":0,"writ":13.07,"used":514.61,"free":3540.89},{"epoch":26121901,"idl":99.72,"recv":0,"send":0,"writ":0.18,"used":514.54,"free":3540.91},{"epoch":26121902,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":514.5,"free":3540.94},{"epoch":26121903,"idl":99.46,"recv":0,"send":0,"writ":0.59,"used":516.14,"free":3539.29},{"epoch":26121904,"idl":99.7,"recv":0,"send":0,"writ":0.2,"used":515.44,"free":3539.98},{"epoch":26121905,"idl":99.47,"recv":0,"send":0,"writ":0.38,"used":515.44,"free":3540.02},{"epoch":26121906,"idl":99.73,"recv":0,"send":0,"writ":0.17,"used":515.58,"free":3539.89},{"epoch":26121907,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":515.58,"free":3539.88},{"epoch":26121908,"idl":99.69,"recv":0,"send":0,"writ":0.61,"used":516.03,"free":3539.42},{"epoch":26121909,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":515.54,"free":3539.89},{"epoch":26121910,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":515.54,"free":3539.91},{"epoch":26121911,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":515.5,"free":3539.94},{"epoch":26121912,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":515.48,"free":3539.96},{"epoch":26121913,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":515.81,"free":3539.63},{"epoch":26121914,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.43,"free":3540.02},{"epoch":26121915,"idl":99.51,"recv":0,"send":0,"writ":0.35,"used":514.89,"free":3540.58},{"epoch":26121916,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":514.88,"free":3540.58},{"epoch":26121917,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":514.85,"free":3540.61},{"epoch":26121918,"idl":99.74,"recv":0,"send":0,"writ":0.58,"used":515.33,"free":3540.12},{"epoch":26121919,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":514.32,"free":3541.13},{"epoch":26121920,"idl":99.68,"recv":0,"send":0,"writ":0.33,"used":514.29,"free":3541.18},{"epoch":26121921,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":514.27,"free":3541.19},{"epoch":26121922,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":514.26,"free":3541.2},{"epoch":26121923,"idl":99.74,"recv":0,"send":0,"writ":0.58,"used":514.69,"free":3540.76},{"epoch":26121924,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":514.56,"free":3540.89},{"epoch":26121925,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":514.88,"free":3540.59},{"epoch":26121926,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":514.86,"free":3540.6},{"epoch":26121927,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":514.85,"free":3540.61},{"epoch":26121928,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":515.18,"free":3540.28},{"epoch":26121929,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":514.81,"free":3540.64},{"epoch":26121930,"idl":99.49,"recv":0,"send":0,"writ":0.34,"used":514.56,"free":3540.91},{"epoch":26121931,"idl":99.8,"recv":0,"send":0,"writ":0.24,"used":514.43,"free":3541.03},{"epoch":26121932,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":514.26,"free":3541.21},{"epoch":26121933,"idl":99.58,"recv":0,"send":0,"writ":0.49,"used":514.89,"free":3540.57},{"epoch":26121934,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":514.22,"free":3541.24},{"epoch":26121935,"idl":99.7,"recv":0,"send":0,"writ":0.34,"used":514.72,"free":3540.76},{"epoch":26121936,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":514.81,"free":3540.66},{"epoch":26121937,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":514.87,"free":3540.6},{"epoch":26121938,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":514.84,"free":3540.63},{"epoch":26121939,"idl":99.48,"recv":0,"send":0,"writ":0.7,"used":515.29,"free":3540.14},{"epoch":26121940,"idl":99.6,"recv":0,"send":0,"writ":0.33,"used":515.16,"free":3540.3},{"epoch":26121941,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.05,"free":3540.4},{"epoch":26121942,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":515.02,"free":3540.43},{"epoch":26121943,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":515,"free":3540.44},{"epoch":26121944,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":515.13,"free":3540.3},{"epoch":26121945,"idl":99.65,"recv":0,"send":0,"writ":0.34,"used":514.97,"free":3540.47},{"epoch":26121946,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":514.95,"free":3540.49},{"epoch":26121947,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":514.93,"free":3540.51},{"epoch":26121948,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.09,"free":3540.34},{"epoch":26121949,"idl":99.7,"recv":0,"send":0,"writ":0.64,"used":515.24,"free":3540.19},{"epoch":26121950,"idl":99.67,"recv":0,"send":0,"writ":0.34,"used":514.82,"free":3540.63},{"epoch":26121951,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":514.8,"free":3540.64},{"epoch":26121952,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":514.77,"free":3540.67},{"epoch":26121953,"idl":98.14,"recv":0,"send":0,"writ":0.18,"used":514.76,"free":3540.68},{"epoch":26121954,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":515.22,"free":3540.21},{"epoch":26121955,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":514.97,"free":3540.48},{"epoch":26121956,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":514.96,"free":3540.49},{"epoch":26121957,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":514.94,"free":3540.51},{"epoch":26121958,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":515.01,"free":3540.43},{"epoch":26121959,"idl":99.68,"recv":0,"send":0,"writ":0.43,"used":515.35,"free":3540.09},{"epoch":26121960,"idl":99.53,"recv":0,"send":0,"writ":0.46,"used":514.46,"free":3540.85},{"epoch":26121961,"idl":98.55,"recv":0,"send":0,"writ":0.16,"used":514.43,"free":3540.87},{"epoch":26121962,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":514.41,"free":3540.89},{"epoch":26121963,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":514.38,"free":3540.92},{"epoch":26121964,"idl":99.68,"recv":0,"send":0,"writ":0.45,"used":515.19,"free":3540.1},{"epoch":26121965,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":514.85,"free":3540.46},{"epoch":26121966,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":514.83,"free":3540.48},{"epoch":26121967,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":514.81,"free":3540.49},{"epoch":26121968,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":514.8,"free":3540.49},{"epoch":26121969,"idl":99.42,"recv":0,"send":0,"writ":0.45,"used":515.43,"free":3539.84},{"epoch":26121970,"idl":99.63,"recv":0,"send":0,"writ":0.47,"used":515.2,"free":3540.08},{"epoch":26121971,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.18,"free":3540.11},{"epoch":26121972,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.16,"free":3540.12},{"epoch":26121973,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":515.14,"free":3540.14},{"epoch":26121974,"idl":99.67,"recv":0,"send":0,"writ":0.15,"used":515.12,"free":3540.16},{"epoch":26121975,"idl":99.41,"recv":0,"send":0,"writ":0.68,"used":515.31,"free":3539.99},{"epoch":26121976,"idl":99.68,"recv":0,"send":0,"writ":0.16,"used":514.85,"free":3540.45},{"epoch":26121977,"idl":99.65,"recv":0,"send":0,"writ":0.23,"used":514.83,"free":3540.46},{"epoch":26121978,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":514.81,"free":3540.48},{"epoch":26121979,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":514.79,"free":3540.49},{"epoch":26121980,"idl":99.43,"recv":0,"send":0,"writ":0.66,"used":514.93,"free":3540.37},{"epoch":26121981,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":514.53,"free":3540.77},{"epoch":26121982,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":514.68,"free":3540.62},{"epoch":26121983,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":514.68,"free":3540.61},{"epoch":26121984,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":514.65,"free":3540.63},{"epoch":26121985,"idl":98.88,"recv":0,"send":0,"writ":0.72,"used":514.91,"free":3540.39},{"epoch":26121986,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":514.64,"free":3540.66},{"epoch":26121987,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":514.62,"free":3540.68},{"epoch":26121988,"idl":99.61,"recv":0,"send":0,"writ":0.15,"used":514.59,"free":3540.7},{"epoch":26121989,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":514.58,"free":3540.71},{"epoch":26121990,"idl":99.46,"recv":0,"send":0,"writ":0.63,"used":515.79,"free":3539.53},{"epoch":26121991,"idl":99.74,"recv":0,"send":0,"writ":0.24,"used":515.18,"free":3540.14},{"epoch":26121992,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":515.08,"free":3540.23},{"epoch":26121993,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":515.2,"free":3540.1},{"epoch":26121994,"idl":99.69,"recv":0,"send":0,"writ":0.15,"used":515.18,"free":3540.12},{"epoch":26121995,"idl":99.43,"recv":0,"send":0,"writ":0.66,"used":515.12,"free":3540.2},{"epoch":26121996,"idl":99.7,"recv":0,"send":0,"writ":0.18,"used":514.17,"free":3541.14},{"epoch":26121997,"idl":99.74,"recv":0,"send":0,"writ":0.17,"used":514.16,"free":3541.15},{"epoch":26121998,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":514.13,"free":3541.17},{"epoch":26121999,"idl":99.36,"recv":0,"send":0,"writ":0.27,"used":515.32,"free":3539.96},{"epoch":26122000,"idl":99.41,"recv":0,"send":0,"writ":0.62,"used":515.59,"free":3539.71},{"epoch":26122001,"idl":99.74,"recv":0,"send":0,"writ":0.22,"used":515.05,"free":3540.24},{"epoch":26122002,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":515.04,"free":3540.25},{"epoch":26122003,"idl":99.7,"recv":0,"send":0,"writ":0.15,"used":515.13,"free":3540.15},{"epoch":26122004,"idl":99.66,"recv":0,"send":0,"writ":0.16,"used":515.18,"free":3540.1},{"epoch":26122005,"idl":99.47,"recv":0,"send":0,"writ":0.67,"used":514.48,"free":3540.82},{"epoch":26122006,"idl":99.68,"recv":0.01,"send":0.02,"writ":0.17,"used":512.94,"free":3542.36},{"epoch":26122007,"idl":99.61,"recv":0,"send":0.01,"writ":0.18,"used":512.88,"free":3542.41},{"epoch":26122008,"idl":99.66,"recv":0,"send":0.02,"writ":0.16,"used":512.84,"free":3542.44},{"epoch":26122009,"idl":99.67,"recv":0,"send":0,"writ":0.2,"used":512.81,"free":3542.47},{"epoch":26122010,"idl":99.41,"recv":0,"send":0.02,"writ":0.51,"used":513.78,"free":3541.51},{"epoch":26122011,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":514.91,"free":3540.38},{"epoch":26122012,"idl":99.75,"recv":0,"send":0.01,"writ":0.14,"used":514.88,"free":3540.41},{"epoch":26122013,"idl":99.78,"recv":0,"send":0.01,"writ":0.21,"used":514.82,"free":3540.47},{"epoch":26122014,"idl":99.73,"recv":0,"send":0.01,"writ":0.2,"used":514.8,"free":3540.47},{"epoch":26122015,"idl":99.61,"recv":0,"send":0.01,"writ":0.3,"used":514.39,"free":3540.91},{"epoch":26122016,"idl":99.53,"recv":0,"send":0.02,"writ":0.59,"used":515.01,"free":3540.28},{"epoch":26122017,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":514.63,"free":3540.65},{"epoch":26122018,"idl":99.8,"recv":0,"send":0.02,"writ":0.16,"used":514.61,"free":3540.67},{"epoch":26122019,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":514.56,"free":3540.72},{"epoch":26122020,"idl":99.52,"recv":0,"send":0.02,"writ":0.28,"used":514.57,"free":3540.73},{"epoch":26122021,"idl":99.6,"recv":0,"send":0,"writ":0.59,"used":515.69,"free":3539.6},{"epoch":26122022,"idl":98.07,"recv":0,"send":0.02,"writ":0.16,"used":515.4,"free":3539.89},{"epoch":26122023,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":515.34,"free":3539.94},{"epoch":26122024,"idl":99.69,"recv":0,"send":0.02,"writ":0.15,"used":515.33,"free":3539.95},{"epoch":26122025,"idl":99.53,"recv":0,"send":0,"writ":0.33,"used":515.3,"free":3540},{"epoch":26122026,"idl":99.59,"recv":0,"send":0.02,"writ":0.56,"used":515.64,"free":3539.65},{"epoch":26122027,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":515.42,"free":3539.87},{"epoch":26122028,"idl":99.76,"recv":0,"send":0.02,"writ":0.14,"used":515.4,"free":3539.88},{"epoch":26122029,"idl":99.45,"recv":0,"send":0,"writ":0.36,"used":515.34,"free":3539.91},{"epoch":26122030,"idl":99.58,"recv":0,"send":0.02,"writ":0.32,"used":515.34,"free":3539.93},{"epoch":26122031,"idl":99.53,"recv":0,"send":0.01,"writ":0.64,"used":515.66,"free":3539.6},{"epoch":26122032,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":515.27,"free":3539.99},{"epoch":26122033,"idl":99.74,"recv":0,"send":0.02,"writ":0.2,"used":515.4,"free":3539.85},{"epoch":26122034,"idl":99.71,"recv":0,"send":0,"writ":0.23,"used":515.39,"free":3539.9},{"epoch":26122035,"idl":99.59,"recv":0,"send":0.02,"writ":0.35,"used":515.36,"free":3539.95},{"epoch":26122036,"idl":99.62,"recv":0,"send":0,"writ":0.59,"used":515.95,"free":3539.35},{"epoch":26122037,"idl":99.76,"recv":0,"send":0.02,"writ":0.24,"used":515.28,"free":3540.01},{"epoch":26122038,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":515.25,"free":3540.04},{"epoch":26122039,"idl":99.58,"recv":0,"send":0.02,"writ":0.21,"used":515.4,"free":3539.89},{"epoch":26122040,"idl":99.57,"recv":0,"send":0,"writ":0.32,"used":515.4,"free":3539.9},{"epoch":26122041,"idl":99.51,"recv":0,"send":0.02,"writ":0.49,"used":515.7,"free":3539.6},{"epoch":26122042,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":515.31,"free":3539.98},{"epoch":26122043,"idl":99.6,"recv":0,"send":0.02,"writ":0.21,"used":515.27,"free":3540.02},{"epoch":26122044,"idl":99.73,"recv":0,"send":0,"writ":0.22,"used":515.38,"free":3539.9},{"epoch":26122045,"idl":99.4,"recv":0,"send":0.02,"writ":0.36,"used":515.16,"free":3540.13},{"epoch":26122046,"idl":99.55,"recv":0,"send":0,"writ":0.34,"used":515.46,"free":3539.84},{"epoch":26122047,"idl":99.71,"recv":0,"send":0.02,"writ":0.43,"used":514.58,"free":3540.71},{"epoch":26122048,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":514.56,"free":3540.73},{"epoch":26122049,"idl":99.67,"recv":0,"send":0.02,"writ":0.18,"used":514.62,"free":3540.66},{"epoch":26122050,"idl":99.38,"recv":0,"send":0,"writ":0.28,"used":514.91,"free":3540.39},{"epoch":26122051,"idl":99.62,"recv":0,"send":0.02,"writ":0.4,"used":515.17,"free":3540.12},{"epoch":26122052,"idl":99.74,"recv":0,"send":0,"writ":0.39,"used":515.34,"free":3539.95},{"epoch":26122053,"idl":99.78,"recv":0,"send":0.02,"writ":0.2,"used":515.3,"free":3539.99},{"epoch":26122054,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":515.26,"free":3540.02},{"epoch":26122055,"idl":99.52,"recv":0,"send":0.02,"writ":0.36,"used":515.61,"free":3539.68},{"epoch":26122056,"idl":99.72,"recv":0,"send":0,"writ":0.13,"used":515.64,"free":3539.65},{"epoch":26122057,"idl":99.53,"recv":0,"send":0.02,"writ":0.66,"used":515.73,"free":3539.56},{"epoch":26122058,"idl":99.74,"recv":0,"send":0,"writ":0.19,"used":515.32,"free":3539.96},{"epoch":26122059,"idl":99.5,"recv":0,"send":0.02,"writ":0.32,"used":515.5,"free":3539.75},{"epoch":26122060,"idl":99.52,"recv":0,"send":0,"writ":0.29,"used":514.57,"free":3540.71},{"epoch":26122061,"idl":99.78,"recv":0,"send":0.02,"writ":0.18,"used":514.66,"free":3540.61},{"epoch":26122062,"idl":99.56,"recv":0,"send":0,"writ":0.59,"used":515.66,"free":3539.61},{"epoch":26122063,"idl":99.75,"recv":0,"send":0.02,"writ":0.18,"used":515.57,"free":3539.69},{"epoch":26122064,"idl":99.76,"recv":0,"send":0,"writ":0.13,"used":515.53,"free":3539.73},{"epoch":26122065,"idl":99.67,"recv":0,"send":0.02,"writ":0.31,"used":514.29,"free":3540.98},{"epoch":26122066,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":514.36,"free":3540.91},{"epoch":26122067,"idl":99.66,"recv":0,"send":0.02,"writ":0.56,"used":515.14,"free":3540.12},{"epoch":26122068,"idl":99.76,"recv":0,"send":0,"writ":0.23,"used":514.34,"free":3540.92},{"epoch":26122069,"idl":99.7,"recv":0,"send":0.02,"writ":0.21,"used":514.15,"free":3541.1},{"epoch":26122070,"idl":99.58,"recv":0,"send":0,"writ":0.34,"used":513.79,"free":3541.48},{"epoch":26122071,"idl":99.75,"recv":0,"send":0.02,"writ":0.2,"used":513.85,"free":3541.41},{"epoch":26122072,"idl":99.55,"recv":0,"send":0,"writ":0.59,"used":514.58,"free":3540.68},{"epoch":26122073,"idl":99.8,"recv":0,"send":0.02,"writ":0.19,"used":514.83,"free":3540.42},{"epoch":26122074,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":514.79,"free":3540.46},{"epoch":26122075,"idl":99.59,"recv":0,"send":0.02,"writ":0.31,"used":514.54,"free":3540.73},{"epoch":26122076,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":514.48,"free":3540.78},{"epoch":26122077,"idl":99.63,"recv":0,"send":0.02,"writ":0.56,"used":515.02,"free":3540.23},{"epoch":26122078,"idl":99.74,"recv":0,"send":0,"writ":0.2,"used":514.87,"free":3540.38},{"epoch":26122079,"idl":99.77,"recv":0,"send":0.02,"writ":0.17,"used":514.82,"free":3540.42},{"epoch":26122080,"idl":99.31,"recv":0,"send":0,"writ":0.31,"used":513.91,"free":3541.35},{"epoch":26122081,"idl":99.63,"recv":0,"send":0,"writ":0.16,"used":513.81,"free":3541.45},{"epoch":26122082,"idl":99.5,"recv":0,"send":0,"writ":0.41,"used":514.1,"free":3541.16},{"epoch":26122083,"idl":99.69,"recv":0,"send":0,"writ":0.35,"used":513.5,"free":3541.73},{"epoch":26122084,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":513.58,"free":3541.64},{"epoch":26122085,"idl":99.6,"recv":0,"send":0,"writ":0.29,"used":514.14,"free":3541.1},{"epoch":26122086,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":514.13,"free":3541.1},{"epoch":26122087,"idl":99.73,"recv":0,"send":0,"writ":0.17,"used":514.36,"free":3540.87},{"epoch":26122088,"idl":99.59,"recv":0,"send":0,"writ":0.57,"used":515.42,"free":3539.8},{"epoch":26122089,"idl":99.46,"recv":0,"send":0,"writ":0.29,"used":515.04,"free":3540.14},{"epoch":26122090,"idl":99.65,"recv":0,"send":0,"writ":0.34,"used":514.82,"free":3540.38},{"epoch":26122091,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":514.27,"free":3540.93},{"epoch":26122092,"idl":99.68,"recv":0,"send":0,"writ":0.16,"used":514.25,"free":3540.95},{"epoch":26122093,"idl":99.42,"recv":0,"send":0,"writ":0.55,"used":514.71,"free":3540.48},{"epoch":26122094,"idl":99.68,"recv":0,"send":0,"writ":0.17,"used":514.21,"free":3540.98},{"epoch":26122095,"idl":99.57,"recv":0,"send":0,"writ":0.29,"used":515.05,"free":3540.15},{"epoch":26122096,"idl":99.57,"recv":0,"send":0,"writ":0.16,"used":515.11,"free":3540.09},{"epoch":26122097,"idl":99.62,"recv":0,"send":0,"writ":0.18,"used":514.84,"free":3540.35},{"epoch":26122098,"idl":99.61,"recv":0,"send":0,"writ":0.62,"used":515.01,"free":3540.19},{"epoch":26122099,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":514.55,"free":3540.65},{"epoch":26122100,"idl":99.57,"recv":0,"send":0,"writ":0.28,"used":514.33,"free":3540.9},{"epoch":26122101,"idl":99.68,"recv":0,"send":0,"writ":0.14,"used":514.29,"free":3540.93},{"epoch":26122102,"idl":99.71,"recv":0,"send":0,"writ":0.17,"used":514.27,"free":3540.95},{"epoch":26122103,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":514.77,"free":3540.44},{"epoch":26122104,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":514.47,"free":3540.73},{"epoch":26122105,"idl":99.59,"recv":0,"send":0,"writ":0.28,"used":514.72,"free":3540.5},{"epoch":26122106,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":514.71,"free":3540.52},{"epoch":26122107,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":514.81,"free":3540.41},{"epoch":26122108,"idl":99.64,"recv":0,"send":0,"writ":0.5,"used":515.45,"free":3539.76},{"epoch":26122109,"idl":99.73,"recv":0,"send":0,"writ":0.19,"used":515.32,"free":3539.88},{"epoch":26122110,"idl":99.44,"recv":0,"send":0,"writ":0.3,"used":514.22,"free":3541},{"epoch":26122111,"idl":99.65,"recv":0,"send":0,"writ":0.2,"used":513.99,"free":3541.23},{"epoch":26122112,"idl":99.68,"recv":0,"send":0,"writ":0.14,"used":513.8,"free":3541.41},{"epoch":26122113,"idl":99.61,"recv":0,"send":0,"writ":0.56,"used":514.55,"free":3540.66},{"epoch":26122114,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":514.99,"free":3540.21},{"epoch":26122115,"idl":99.61,"recv":0,"send":0,"writ":0.29,"used":514.04,"free":3541.17},{"epoch":26122116,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":513.99,"free":3541.23},{"epoch":26122117,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":513.97,"free":3541.24},{"epoch":26122118,"idl":99.65,"recv":0,"send":0,"writ":0.5,"used":514.44,"free":3540.76},{"epoch":26122119,"idl":99.56,"recv":0,"send":0,"writ":0.31,"used":515.01,"free":3540.18},{"epoch":26122120,"idl":99.45,"recv":0,"send":0,"writ":0.3,"used":514,"free":3541.2},{"epoch":26122121,"idl":99.68,"recv":0,"send":0,"writ":0.16,"used":514.03,"free":3541.16},{"epoch":26122122,"idl":99.63,"recv":0,"send":0,"writ":0.14,"used":514,"free":3541.19},{"epoch":26122123,"idl":99.53,"recv":0,"send":0,"writ":0.57,"used":514.48,"free":3540.71},{"epoch":26122124,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":514.94,"free":3540.25},{"epoch":26122125,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":514.72,"free":3540.5},{"epoch":26122126,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":514.68,"free":3540.53},{"epoch":26122127,"idl":99.68,"recv":0,"send":0,"writ":0.14,"used":514.83,"free":3540.38},{"epoch":26122128,"idl":99.66,"recv":0,"send":0,"writ":0.15,"used":514.83,"free":3540.38},{"epoch":26122129,"idl":99.49,"recv":0,"send":0,"writ":0.59,"used":515.64,"free":3539.56},{"epoch":26122130,"idl":99.57,"recv":0,"send":0,"writ":0.27,"used":513.61,"free":3541.61},{"epoch":26122131,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":513.55,"free":3541.66},{"epoch":26122132,"idl":99.65,"recv":0,"send":0,"writ":0.15,"used":513.54,"free":3541.67},{"epoch":26122133,"idl":99.69,"recv":0,"send":0,"writ":0.16,"used":513.5,"free":3541.71},{"epoch":26122134,"idl":99.54,"recv":0,"send":0,"writ":0.58,"used":514.64,"free":3540.58},{"epoch":26122135,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":515.2,"free":3540.03},{"epoch":26122136,"idl":99.66,"recv":0,"send":0,"writ":0.19,"used":515.19,"free":3540.04},{"epoch":26122137,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":515.17,"free":3540.05},{"epoch":26122138,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.27,"free":3539.95},{"epoch":26122139,"idl":99.61,"recv":0,"send":0,"writ":0.57,"used":515.52,"free":3539.69},{"epoch":26122140,"idl":99.34,"recv":0,"send":0,"writ":0.28,"used":514.1,"free":3541.13},{"epoch":26122141,"idl":99.57,"recv":0,"send":0,"writ":0.17,"used":514.06,"free":3541.16},{"epoch":26122142,"idl":99.56,"recv":0,"send":0,"writ":0.14,"used":514.04,"free":3541.18},{"epoch":26122143,"idl":99.08,"recv":0,"send":0,"writ":0.14,"used":514.02,"free":3541.19},{"epoch":26122144,"idl":99.54,"recv":0,"send":0,"writ":0.63,"used":514.8,"free":3540.41},{"epoch":26122145,"idl":99.63,"recv":0,"send":0,"writ":0.34,"used":513.79,"free":3541.44},{"epoch":26122146,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":513.73,"free":3541.5},{"epoch":26122147,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":513.71,"free":3541.51},{"epoch":26122148,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":513.68,"free":3541.53},{"epoch":26122149,"idl":99.35,"recv":0,"send":0,"writ":0.57,"used":515.82,"free":3539.37},{"epoch":26122150,"idl":99.56,"recv":0,"send":0,"writ":0.45,"used":514.41,"free":3540.8},{"epoch":26122151,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":514.34,"free":3540.86},{"epoch":26122152,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":514.32,"free":3540.88},{"epoch":26122153,"idl":99.68,"recv":0,"send":0,"writ":0.14,"used":514.3,"free":3540.89},{"epoch":26122154,"idl":99.59,"recv":0,"send":0,"writ":0.41,"used":514.89,"free":3540.34},{"epoch":26122155,"idl":99.62,"recv":0,"send":0,"writ":0.44,"used":515.28,"free":3539.98},{"epoch":26122156,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.25,"free":3540},{"epoch":26122157,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":515.23,"free":3540.02},{"epoch":26122158,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.23,"free":3540.02},{"epoch":26122159,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":515.21,"free":3540.05},{"epoch":26122160,"idl":99.35,"recv":0,"send":0,"writ":0.66,"used":514.63,"free":3540.65},{"epoch":26122161,"idl":99.65,"recv":0,"send":0,"writ":0.16,"used":514.35,"free":3540.92},{"epoch":26122162,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":514.38,"free":3540.89},{"epoch":26122163,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":514.35,"free":3540.91},{"epoch":26122164,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":514.34,"free":3540.92},{"epoch":26122165,"idl":99.25,"recv":0,"send":0,"writ":0.65,"used":514.51,"free":3540.77},{"epoch":26122166,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":514.07,"free":3541.2},{"epoch":26122167,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":514.05,"free":3541.22},{"epoch":26122168,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":514.03,"free":3541.23},{"epoch":26122169,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":514,"free":3541.26},{"epoch":26122170,"idl":99.41,"recv":0,"send":0,"writ":0.76,"used":515.24,"free":3540.03},{"epoch":26122171,"idl":99.77,"recv":0,"send":0,"writ":0.21,"used":514.89,"free":3540.37},{"epoch":26122172,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":514.7,"free":3540.55},{"epoch":26122173,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":514.77,"free":3540.49},{"epoch":26122174,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":514.85,"free":3540.4},{"epoch":26122175,"idl":99.57,"recv":0,"send":0,"writ":0.69,"used":515.85,"free":3539.42},{"epoch":26122176,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.06,"free":3540.21},{"epoch":26122177,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":515.04,"free":3540.21},{"epoch":26122178,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.01,"free":3540.24},{"epoch":26122179,"idl":99.54,"recv":0,"send":0,"writ":0.36,"used":514.88,"free":3539.97},{"epoch":26122180,"idl":99.48,"recv":0,"send":0,"writ":0.64,"used":515.75,"free":3539.1},{"epoch":26122181,"idl":99.69,"recv":0,"send":0,"writ":0.18,"used":515.3,"free":3539.55},{"epoch":26122182,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":515.28,"free":3539.56},{"epoch":26122183,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":515.26,"free":3539.58},{"epoch":26122184,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.42,"free":3539.42},{"epoch":26122185,"idl":99.54,"recv":0,"send":0,"writ":0.54,"used":515.91,"free":3538.94},{"epoch":26122186,"idl":99.83,"recv":0,"send":0,"writ":0.54,"used":514.68,"free":3540.15},{"epoch":26122187,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":514.63,"free":3540.2},{"epoch":26122188,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":514.62,"free":3540.21},{"epoch":26122189,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":514.6,"free":3540.23},{"epoch":26122190,"idl":99.49,"recv":0,"send":0,"writ":0.54,"used":515.23,"free":3539.61},{"epoch":26122191,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":515.31,"free":3539.53},{"epoch":26122192,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.3,"free":3539.53},{"epoch":26122193,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.26,"free":3539.56},{"epoch":26122194,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.24,"free":3539.58},{"epoch":26122195,"idl":99.23,"recv":0,"send":0,"writ":0.54,"used":515.7,"free":3539.13},{"epoch":26122196,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":515.4,"free":3539.43},{"epoch":26122197,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.38,"free":3539.44},{"epoch":26122198,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.36,"free":3539.46},{"epoch":26122199,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.34,"free":3539.47},{"epoch":26122200,"idl":99.33,"recv":0,"send":0,"writ":0.27,"used":514.39,"free":3540.44},{"epoch":26122201,"idl":99.61,"recv":0,"send":0,"writ":0.6,"used":516.11,"free":3538.7},{"epoch":26122202,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.53,"free":3539.28},{"epoch":26122203,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.51,"free":3539.3},{"epoch":26122204,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":515.49,"free":3539.32},{"epoch":26122205,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":515.24,"free":3539.58},{"epoch":26122206,"idl":99.66,"recv":0,"send":0,"writ":0.61,"used":515.73,"free":3539.09},{"epoch":26122207,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":515.38,"free":3539.44},{"epoch":26122208,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":515.35,"free":3539.46},{"epoch":26122209,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":515.58,"free":3539.2},{"epoch":26122210,"idl":99.7,"recv":0,"send":0,"writ":0.33,"used":515.59,"free":3539.22},{"epoch":26122211,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":515.92,"free":3538.88},{"epoch":26122212,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.54,"free":3539.26},{"epoch":26122213,"idl":99.64,"recv":0,"send":0,"writ":0.19,"used":515.53,"free":3539.26},{"epoch":26122214,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":515.5,"free":3539.28},{"epoch":26122215,"idl":99.55,"recv":0,"send":0,"writ":0.29,"used":514.3,"free":3540.5},{"epoch":26122216,"idl":99.51,"recv":0,"send":0,"writ":0.59,"used":515.32,"free":3539.48},{"epoch":26122217,"idl":99.68,"recv":0,"send":0,"writ":0.22,"used":514.48,"free":3540.31},{"epoch":26122218,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":514.58,"free":3540.2},{"epoch":26122219,"idl":99.73,"recv":0,"send":0,"writ":0.17,"used":514.63,"free":3540.15},{"epoch":26122220,"idl":99.56,"recv":0,"send":0,"writ":0.3,"used":514,"free":3540.8},{"epoch":26122221,"idl":99.59,"recv":0,"send":0,"writ":0.42,"used":514.53,"free":3540.26},{"epoch":26122222,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":514.59,"free":3540.2},{"epoch":26122223,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":514.57,"free":3540.21},{"epoch":26122224,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":514.54,"free":3540.24},{"epoch":26122225,"idl":99.54,"recv":0,"send":0,"writ":0.29,"used":514.79,"free":3540.01},{"epoch":26122226,"idl":99.49,"recv":0,"send":0,"writ":0.63,"used":515.43,"free":3539.37},{"epoch":26122227,"idl":99.67,"recv":0,"send":0,"writ":0.17,"used":514.51,"free":3540.28},{"epoch":26122228,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":514.48,"free":3540.3},{"epoch":26122229,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":514.47,"free":3540.31},{"epoch":26122230,"idl":99.58,"recv":0,"send":0,"writ":0.27,"used":514.44,"free":3540.36},{"epoch":26122231,"idl":99.7,"recv":0,"send":0,"writ":0.45,"used":514.91,"free":3539.89},{"epoch":26122232,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":514.88,"free":3539.9},{"epoch":26122233,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":514.86,"free":3539.92},{"epoch":26122234,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":514.84,"free":3539.94},{"epoch":26122235,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":514.85,"free":3539.95},{"epoch":26122236,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":514.82,"free":3539.97},{"epoch":26122237,"idl":99.64,"recv":0,"send":0,"writ":0.55,"used":515.16,"free":3539.63},{"epoch":26122238,"idl":99.69,"recv":0,"send":0,"writ":0.14,"used":514.78,"free":3540},{"epoch":26122239,"idl":99.55,"recv":0,"send":0,"writ":0.29,"used":514.26,"free":3540.49},{"epoch":26122240,"idl":99.7,"recv":0,"send":0,"writ":0.26,"used":514.98,"free":3539.79},{"epoch":26122241,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.09,"free":3539.68},{"epoch":26122242,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":514.38,"free":3540.38},{"epoch":26122243,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":513.88,"free":3540.88},{"epoch":26122244,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":513.87,"free":3540.88},{"epoch":26122245,"idl":99.65,"recv":0,"send":0,"writ":0.29,"used":514.1,"free":3540.67},{"epoch":26122246,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":514.1,"free":3540.67},{"epoch":26122247,"idl":96.34,"recv":0.02,"send":0.01,"writ":86.51,"used":525.44,"free":3530.64},{"epoch":26122248,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":516.06,"free":3538.58},{"epoch":26122249,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":516.04,"free":3538.59},{"epoch":26122250,"idl":99.67,"recv":0,"send":0,"writ":0.28,"used":516.52,"free":3538.13},{"epoch":26122251,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":516.49,"free":3538.15},{"epoch":26122252,"idl":99.71,"recv":0,"send":0,"writ":0.61,"used":515.68,"free":3539},{"epoch":26122253,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":514.5,"free":3540.2},{"epoch":26122254,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":514.47,"free":3540.22},{"epoch":26122255,"idl":99.67,"recv":0,"send":0,"writ":0.33,"used":513.58,"free":3541.14},{"epoch":26122256,"idl":99.47,"recv":0,"send":0,"writ":0.22,"used":513.47,"free":3541.24},{"epoch":26122257,"idl":99.68,"recv":0,"send":0,"writ":0.48,"used":514.49,"free":3540.22},{"epoch":26122258,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":514.8,"free":3539.92},{"epoch":26122259,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":514.83,"free":3539.89},{"epoch":26122260,"idl":99.41,"recv":0,"send":0,"writ":0.3,"used":514.36,"free":3540.37},{"epoch":26122261,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":514.31,"free":3540.42},{"epoch":26122262,"idl":99.69,"recv":0,"send":0,"writ":0.45,"used":514.94,"free":3539.79},{"epoch":26122263,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":515.01,"free":3539.71},{"epoch":26122264,"idl":98.93,"recv":0,"send":0,"writ":0.18,"used":514.99,"free":3539.72},{"epoch":26122265,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":514.99,"free":3539.74},{"epoch":26122266,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":514.96,"free":3539.77},{"epoch":26122267,"idl":99.65,"recv":0,"send":0,"writ":0.5,"used":515.31,"free":3539.41},{"epoch":26122268,"idl":99.8,"recv":0,"send":0,"writ":0.24,"used":514.98,"free":3539.73},{"epoch":26122269,"idl":99.71,"recv":0,"send":0,"writ":0.26,"used":515.06,"free":3539.62},{"epoch":26122270,"idl":99.7,"recv":0,"send":0,"writ":0.27,"used":514.58,"free":3540.12},{"epoch":26122271,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":514.55,"free":3540.15},{"epoch":26122272,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":514.92,"free":3539.78},{"epoch":26122273,"idl":99.85,"recv":0,"send":0,"writ":0.43,"used":514.98,"free":3539.7},{"epoch":26122274,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.96,"free":3539.71},{"epoch":26122275,"idl":99.68,"recv":0.01,"send":0.02,"writ":0.38,"used":514.74,"free":3539.94},{"epoch":26122276,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":514.75,"free":3539.94},{"epoch":26122277,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":514.97,"free":3539.7},{"epoch":26122278,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":515.64,"free":3539.03},{"epoch":26122279,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.94,"free":3539.73},{"epoch":26122280,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":513.95,"free":3540.73},{"epoch":26122281,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":513.92,"free":3540.76},{"epoch":26122282,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":513.92,"free":3540.75},{"epoch":26122283,"idl":99.64,"recv":0,"send":0,"writ":0.6,"used":514.45,"free":3540.21},{"epoch":26122284,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":513.82,"free":3540.84},{"epoch":26122285,"idl":98.22,"recv":0,"send":0,"writ":15.23,"used":516.45,"free":3538.67},{"epoch":26122286,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":514.53,"free":3540.13},{"epoch":26122287,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":514.5,"free":3540.16},{"epoch":26122288,"idl":99.72,"recv":0,"send":0,"writ":0.45,"used":515.24,"free":3539.41},{"epoch":26122289,"idl":99.85,"recv":0,"send":0,"writ":0.24,"used":515.2,"free":3539.45},{"epoch":26122290,"idl":99.59,"recv":0,"send":0,"writ":0.27,"used":514.28,"free":3540.39},{"epoch":26122291,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":514.15,"free":3540.52},{"epoch":26122292,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":513.92,"free":3540.73},{"epoch":26122293,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":514.79,"free":3539.87},{"epoch":26122294,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.03,"free":3539.63},{"epoch":26122295,"idl":99.56,"recv":0,"send":0,"writ":0.28,"used":514.11,"free":3540.56},{"epoch":26122296,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":514.06,"free":3540.61},{"epoch":26122297,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":514.04,"free":3540.62},{"epoch":26122298,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":515.07,"free":3539.58},{"epoch":26122299,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":514.98,"free":3539.65},{"epoch":26122300,"idl":99.62,"recv":0,"send":0,"writ":0.33,"used":515.23,"free":3539.42},{"epoch":26122301,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":515.21,"free":3539.44},{"epoch":26122302,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":515.18,"free":3539.46},{"epoch":26122303,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":515.61,"free":3539.02},{"epoch":26122304,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":515.13,"free":3539.5},{"epoch":26122305,"idl":96.91,"recv":0.56,"send":0,"writ":9.13,"used":519.29,"free":3534.28},{"epoch":26122306,"idl":99.78,"recv":0,"send":0,"writ":34.98,"used":517.78,"free":3534.43},{"epoch":26122307,"idl":99.65,"recv":0,"send":0,"writ":0.23,"used":517.31,"free":3534.93},{"epoch":26122308,"idl":99.64,"recv":0,"send":0,"writ":0.36,"used":517.71,"free":3534.53},{"epoch":26122309,"idl":99.75,"recv":0,"send":0,"writ":0.4,"used":517.94,"free":3534.28},{"epoch":26122310,"idl":99.6,"recv":0,"send":0,"writ":0.31,"used":517.69,"free":3534.56},{"epoch":26122311,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":515.24,"free":3537.04},{"epoch":26122312,"idl":99.71,"recv":0,"send":0,"writ":0.22,"used":515.46,"free":3536.81},{"epoch":26122313,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":515.8,"free":3536.47},{"epoch":26122314,"idl":99.82,"recv":0,"send":0,"writ":0.42,"used":515.17,"free":3537.1},{"epoch":26122315,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":515.5,"free":3536.78},{"epoch":26122316,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.39,"free":3536.88},{"epoch":26122317,"idl":99.78,"recv":0,"send":0,"writ":0.19,"used":515.37,"free":3536.92},{"epoch":26122318,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.36,"free":3536.93},{"epoch":26122319,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":515.49,"free":3536.79},{"epoch":26122320,"idl":99.48,"recv":0,"send":0,"writ":0.29,"used":514.55,"free":3537.75},{"epoch":26122321,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":514.52,"free":3537.78},{"epoch":26122322,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":514.49,"free":3537.8},{"epoch":26122323,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.47,"free":3537.82},{"epoch":26122324,"idl":98,"recv":0,"send":0,"writ":0.57,"used":515.3,"free":3536.98},{"epoch":26122325,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":514.94,"free":3537.36},{"epoch":26122326,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":514.9,"free":3537.39},{"epoch":26122327,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":514.88,"free":3537.41},{"epoch":26122328,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":514.86,"free":3537.42},{"epoch":26122329,"idl":99.59,"recv":0,"send":0,"writ":0.7,"used":515.3,"free":3536.96},{"epoch":26122330,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":514.71,"free":3537.57},{"epoch":26122331,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":514.76,"free":3537.52},{"epoch":26122332,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":514.74,"free":3537.53},{"epoch":26122333,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":514.71,"free":3537.57},{"epoch":26122334,"idl":99.58,"recv":0,"send":0,"writ":0.52,"used":515.43,"free":3536.85},{"epoch":26122335,"idl":99.64,"recv":0,"send":0,"writ":0.36,"used":515.18,"free":3537.12},{"epoch":26122336,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":515.18,"free":3537.11},{"epoch":26122337,"idl":99.8,"recv":0,"send":0,"writ":0.21,"used":514.91,"free":3537.39},{"epoch":26122338,"idl":99.68,"recv":0.01,"send":0.02,"writ":0.15,"used":514.89,"free":3537.39},{"epoch":26122339,"idl":99.74,"recv":0,"send":0,"writ":0.61,"used":515.55,"free":3536.73},{"epoch":26122340,"idl":99.67,"recv":0,"send":0.01,"writ":0.32,"used":515.13,"free":3537.17},{"epoch":26122341,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":515.06,"free":3537.24},{"epoch":26122342,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":514.84,"free":3537.45},{"epoch":26122343,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":514.94,"free":3537.35},{"epoch":26122344,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.14,"free":3537.14},{"epoch":26122345,"idl":99.58,"recv":0,"send":0,"writ":0.66,"used":515.83,"free":3536.47},{"epoch":26122346,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.46,"free":3536.84},{"epoch":26122347,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.44,"free":3536.86},{"epoch":26122348,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.42,"free":3536.87},{"epoch":26122349,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.39,"free":3536.89},{"epoch":26122350,"idl":99.58,"recv":0,"send":0,"writ":0.78,"used":515.61,"free":3536.69},{"epoch":26122351,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.33,"free":3536.96},{"epoch":26122352,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":515.11,"free":3537.18},{"epoch":26122353,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.09,"free":3537.19},{"epoch":26122354,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":515.07,"free":3537.21},{"epoch":26122355,"idl":99.51,"recv":0,"send":0,"writ":0.7,"used":516,"free":3536.3},{"epoch":26122356,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.75,"free":3536.54},{"epoch":26122357,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.73,"free":3536.56},{"epoch":26122358,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.71,"free":3536.58},{"epoch":26122359,"idl":99.59,"recv":0,"send":0,"writ":0.29,"used":515.44,"free":3536.82},{"epoch":26122360,"idl":99.62,"recv":0,"send":0,"writ":0.69,"used":515.96,"free":3536.32},{"epoch":26122361,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.66,"free":3536.61},{"epoch":26122362,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.64,"free":3536.63},{"epoch":26122363,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":515.62,"free":3536.65},{"epoch":26122364,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":515.58,"free":3536.67},{"epoch":26122365,"idl":99.64,"recv":0,"send":0,"writ":0.55,"used":515.88,"free":3536.4},{"epoch":26122366,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":515.5,"free":3536.77},{"epoch":26122367,"idl":99.73,"recv":0,"send":0,"writ":0.17,"used":514.56,"free":3537.71},{"epoch":26122368,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":514.47,"free":3537.8},{"epoch":26122369,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":514.47,"free":3537.8},{"epoch":26122370,"idl":99.62,"recv":0,"send":0,"writ":0.57,"used":514.97,"free":3537.31},{"epoch":26122371,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":514.44,"free":3537.83},{"epoch":26122372,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":514.42,"free":3537.85},{"epoch":26122373,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.4,"free":3537.86},{"epoch":26122374,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":514.37,"free":3537.89},{"epoch":26122375,"idl":99.61,"recv":0,"send":0,"writ":0.6,"used":515.15,"free":3537.12},{"epoch":26122376,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":514.71,"free":3537.56},{"epoch":26122377,"idl":99.33,"recv":0,"send":0,"writ":0.16,"used":514.77,"free":3537.5},{"epoch":26122378,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.74,"free":3537.52},{"epoch":26122379,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":514.73,"free":3537.53},{"epoch":26122380,"idl":99.44,"recv":0,"send":0,"writ":0.29,"used":514.96,"free":3537.31},{"epoch":26122381,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":514.34,"free":3537.93},{"epoch":26122382,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":513.94,"free":3538.32},{"epoch":26122383,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":513.92,"free":3538.34},{"epoch":26122384,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":513.9,"free":3538.35},{"epoch":26122385,"idl":94.2,"recv":0,"send":0,"writ":0.29,"used":514.13,"free":3538.14},{"epoch":26122386,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":514.72,"free":3537.55},{"epoch":26122387,"idl":99.77,"recv":0,"send":0,"writ":0.17,"used":514.45,"free":3537.81},{"epoch":26122388,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":514.51,"free":3537.75},{"epoch":26122389,"idl":99.58,"recv":0,"send":0,"writ":0.3,"used":514.52,"free":3537.72},{"epoch":26122390,"idl":99.74,"recv":0,"send":0,"writ":0.37,"used":514.97,"free":3537.28},{"epoch":26122391,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":515.32,"free":3536.93},{"epoch":26122392,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":514.92,"free":3537.32},{"epoch":26122393,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":514.92,"free":3537.32},{"epoch":26122394,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":514.88,"free":3537.36},{"epoch":26122395,"idl":99.64,"recv":0,"send":0,"writ":0.33,"used":513.93,"free":3538.33},{"epoch":26122396,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":514.89,"free":3537.38},{"epoch":26122397,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":514.62,"free":3537.64},{"epoch":26122398,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":514.58,"free":3537.67},{"epoch":26122399,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.69,"free":3537.56},{"epoch":26122400,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":514.76,"free":3537.51},{"epoch":26122401,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":515.5,"free":3536.76},{"epoch":26122402,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":515.2,"free":3537.06},{"epoch":26122403,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.18,"free":3537.08},{"epoch":26122404,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":515.16,"free":3537.09},{"epoch":26122405,"idl":99.62,"recv":0,"send":0,"writ":0.31,"used":514.21,"free":3538.06},{"epoch":26122406,"idl":99.67,"recv":0,"send":0,"writ":0.41,"used":514.73,"free":3537.54},{"epoch":26122407,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":514.87,"free":3537.39},{"epoch":26122408,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":514.86,"free":3537.4},{"epoch":26122409,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":514.83,"free":3537.42},{"epoch":26122410,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":514.71,"free":3537.56},{"epoch":26122411,"idl":99.7,"recv":0,"send":0,"writ":0.44,"used":515.07,"free":3537.19},{"epoch":26122412,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":514.48,"free":3537.78},{"epoch":26122413,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":514.46,"free":3537.8},{"epoch":26122414,"idl":99.78,"recv":0,"send":0,"writ":0.13,"used":514.43,"free":3537.84},{"epoch":26122415,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":514.69,"free":3537.6},{"epoch":26122416,"idl":99.7,"recv":0,"send":0,"writ":0.42,"used":514.99,"free":3537.29},{"epoch":26122417,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":514.4,"free":3537.88},{"epoch":26122418,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":514.38,"free":3537.9},{"epoch":26122419,"idl":99.62,"recv":0,"send":0,"writ":0.3,"used":515.08,"free":3537.17},{"epoch":26122420,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":514.37,"free":3537.91},{"epoch":26122421,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":514.38,"free":3537.89},{"epoch":26122422,"idl":99.61,"recv":0,"send":0,"writ":0.59,"used":515.68,"free":3536.58},{"epoch":26122423,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":514.98,"free":3537.28},{"epoch":26122424,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":514.94,"free":3537.31},{"epoch":26122425,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":514.95,"free":3537.32},{"epoch":26122426,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.92,"free":3537.35},{"epoch":26122427,"idl":99.71,"recv":0,"send":0,"writ":0.61,"used":515.6,"free":3536.66},{"epoch":26122428,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.11,"free":3537.15},{"epoch":26122429,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":515.09,"free":3537.16},{"epoch":26122430,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":515.09,"free":3537.18},{"epoch":26122431,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":515.07,"free":3537.19},{"epoch":26122432,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":515.54,"free":3536.72},{"epoch":26122433,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.25,"free":3537},{"epoch":26122434,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":515.23,"free":3537.02},{"epoch":26122435,"idl":99.63,"recv":0,"send":0,"writ":0.34,"used":515.53,"free":3536.73},{"epoch":26122436,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.45,"free":3536.81},{"epoch":26122437,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":515.45,"free":3536.81},{"epoch":26122438,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":514.67,"free":3537.58},{"epoch":26122439,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":514.65,"free":3537.59},{"epoch":26122440,"idl":99.6,"recv":0,"send":0,"writ":0.31,"used":514.18,"free":3538.08},{"epoch":26122441,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":514.14,"free":3538.11},{"epoch":26122442,"idl":99.66,"recv":0,"send":0,"writ":0.4,"used":514.59,"free":3537.66},{"epoch":26122443,"idl":99.79,"recv":0.01,"send":0.06,"writ":0.31,"used":514.36,"free":3537.88},{"epoch":26122444,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":514.38,"free":3537.87},{"epoch":26122445,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":515.1,"free":3537.16},{"epoch":26122446,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.1,"free":3537.16},{"epoch":26122447,"idl":99.7,"recv":0,"send":0,"writ":0.5,"used":515.46,"free":3536.79},{"epoch":26122448,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":514.99,"free":3537.25},{"epoch":26122449,"idl":99.64,"recv":0,"send":0,"writ":0.28,"used":515.2,"free":3537.02},{"epoch":26122450,"idl":99.63,"recv":0,"send":0,"writ":0.28,"used":515.21,"free":3537.04},{"epoch":26122451,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":515.18,"free":3537.07},{"epoch":26122452,"idl":99.63,"recv":0,"send":0,"writ":0.42,"used":515.79,"free":3536.45},{"epoch":26122453,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":515.14,"free":3537.1},{"epoch":26122454,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":515.12,"free":3537.12},{"epoch":26122455,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":515.12,"free":3537.13},{"epoch":26122456,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.1,"free":3537.15},{"epoch":26122457,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":515.08,"free":3537.16},{"epoch":26122458,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":515.45,"free":3536.79},{"epoch":26122459,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":515.22,"free":3537.02},{"epoch":26122460,"idl":99.54,"recv":0,"send":0,"writ":0.28,"used":515.47,"free":3536.79},{"epoch":26122461,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":515.43,"free":3536.82},{"epoch":26122462,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":515.41,"free":3536.84},{"epoch":26122463,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":515.74,"free":3536.5},{"epoch":26122464,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.36,"free":3536.87},{"epoch":26122465,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":515.36,"free":3536.89},{"epoch":26122466,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.33,"free":3536.91},{"epoch":26122467,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":515.31,"free":3536.93},{"epoch":26122468,"idl":99.62,"recv":0,"send":0,"writ":0.55,"used":515.58,"free":3536.66},{"epoch":26122469,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":515.2,"free":3537.03},{"epoch":26122470,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":515.22,"free":3537.04},{"epoch":26122471,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.2,"free":3537.05},{"epoch":26122472,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":515.18,"free":3537.07},{"epoch":26122473,"idl":99.64,"recv":0,"send":0,"writ":0.59,"used":515.35,"free":3536.89},{"epoch":26122474,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":514.89,"free":3537.34},{"epoch":26122475,"idl":99.63,"recv":0,"send":0,"writ":0.3,"used":514.64,"free":3537.61},{"epoch":26122476,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":514.61,"free":3537.64},{"epoch":26122477,"idl":99.71,"recv":0,"send":0,"writ":0.17,"used":514.59,"free":3537.65},{"epoch":26122478,"idl":99.58,"recv":0,"send":0,"writ":0.45,"used":515.62,"free":3536.62},{"epoch":26122479,"idl":99.54,"recv":0,"send":0,"writ":0.48,"used":515.62,"free":3536.6},{"epoch":26122480,"idl":99.62,"recv":0,"send":0,"writ":0.32,"used":515.24,"free":3536.99},{"epoch":26122481,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":515.2,"free":3537.02},{"epoch":26122482,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.17,"free":3537.05},{"epoch":26122483,"idl":99.63,"recv":0,"send":0,"writ":0.6,"used":515.49,"free":3536.73},{"epoch":26122484,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":514.64,"free":3537.57},{"epoch":26122485,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":514.64,"free":3537.58},{"epoch":26122486,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":514.62,"free":3537.61},{"epoch":26122487,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":514.6,"free":3537.62},{"epoch":26122488,"idl":99.63,"recv":0,"send":0,"writ":0.52,"used":515,"free":3537.21},{"epoch":26122489,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":514.8,"free":3537.41},{"epoch":26122490,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":515.04,"free":3537.18},{"epoch":26122491,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.2,"free":3537.02},{"epoch":26122492,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.19,"free":3537.02},{"epoch":26122493,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":515.56,"free":3536.64},{"epoch":26122494,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":515.64,"free":3536.56},{"epoch":26122495,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":515.39,"free":3536.83},{"epoch":26122496,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":515.38,"free":3536.84},{"epoch":26122497,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":515.34,"free":3536.86},{"epoch":26122498,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":515.33,"free":3536.88},{"epoch":26122499,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":515.6,"free":3536.6},{"epoch":26122500,"idl":99.47,"recv":0,"send":0,"writ":0.28,"used":514.58,"free":3537.64},{"epoch":26122501,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":514.55,"free":3537.67},{"epoch":26122502,"idl":99.71,"recv":0,"send":0,"writ":0.15,"used":514.7,"free":3537.51},{"epoch":26122503,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":514.69,"free":3537.51},{"epoch":26122504,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":515.67,"free":3536.53},{"epoch":26122505,"idl":99.53,"recv":0,"send":0,"writ":0.33,"used":514.46,"free":3537.76},{"epoch":26122506,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":514.41,"free":3537.8},{"epoch":26122507,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":514.4,"free":3537.81},{"epoch":26122508,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":514.37,"free":3537.83},{"epoch":26122509,"idl":99.42,"recv":0,"send":0,"writ":0.83,"used":515.63,"free":3536.54},{"epoch":26122510,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":515.64,"free":3536.56},{"epoch":26122511,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.57,"free":3536.62},{"epoch":26122512,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":515.66,"free":3536.53},{"epoch":26122513,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.72,"free":3536.46},{"epoch":26122514,"idl":99.65,"recv":0.02,"send":0.85,"writ":0.46,"used":515.74,"free":3536.38},{"epoch":26122515,"idl":99.58,"recv":0.01,"send":0.61,"writ":0.58,"used":515.63,"free":3535.91},{"epoch":26122516,"idl":99.77,"recv":0.01,"send":1.51,"writ":0.54,"used":514.75,"free":3536.19},{"epoch":26122517,"idl":99.74,"recv":0.01,"send":1.06,"writ":0.34,"used":513.62,"free":3537.09},{"epoch":26122518,"idl":99.8,"recv":0,"send":0.15,"writ":0.25,"used":513.44,"free":3537.04},{"epoch":26122519,"idl":99.64,"recv":0.01,"send":0.56,"writ":0.76,"used":514.23,"free":3536.14},{"epoch":26122520,"idl":99.7,"recv":0,"send":0.01,"writ":0.36,"used":514.85,"free":3535.51},{"epoch":26122521,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":514.85,"free":3535.5},{"epoch":26122522,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":514.82,"free":3535.53},{"epoch":26122523,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":514.8,"free":3535.56},{"epoch":26122524,"idl":99.63,"recv":0,"send":0,"writ":0.5,"used":515.3,"free":3535.07},{"epoch":26122525,"idl":99.76,"recv":0,"send":0,"writ":0.38,"used":514.53,"free":3535.86},{"epoch":26122526,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":514.52,"free":3535.87},{"epoch":26122527,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":514.49,"free":3535.89},{"epoch":26122528,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":514.47,"free":3535.91},{"epoch":26122529,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":514.7,"free":3535.67},{"epoch":26122530,"idl":99.59,"recv":0,"send":0,"writ":0.35,"used":514.87,"free":3535.52},{"epoch":26122531,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":514.84,"free":3535.54},{"epoch":26122532,"idl":99.68,"recv":0,"send":0,"writ":0.16,"used":514.35,"free":3536.03},{"epoch":26122533,"idl":99.77,"recv":0,"send":0,"writ":0.17,"used":514.34,"free":3536.04},{"epoch":26122534,"idl":99.63,"recv":0,"send":0,"writ":0.38,"used":514.67,"free":3535.7},{"epoch":26122535,"idl":99.64,"recv":0,"send":0,"writ":0.54,"used":514.56,"free":3535.83},{"epoch":26122536,"idl":99.66,"recv":0,"send":0,"writ":0.18,"used":514.55,"free":3535.84},{"epoch":26122537,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":514.53,"free":3535.86},{"epoch":26122538,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":514.5,"free":3535.88},{"epoch":26122539,"idl":99.52,"recv":0,"send":0,"writ":0.29,"used":514.73,"free":3535.63},{"epoch":26122540,"idl":99.51,"recv":0,"send":0,"writ":0.66,"used":515.08,"free":3535.29},{"epoch":26122541,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":514.56,"free":3535.8},{"epoch":26122542,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":514.62,"free":3535.73},{"epoch":26122543,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":514.59,"free":3535.76},{"epoch":26122544,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":514.59,"free":3535.78},{"epoch":26122545,"idl":99.44,"recv":0,"send":0,"writ":0.68,"used":515.35,"free":3535.04},{"epoch":26122546,"idl":99.67,"recv":0,"send":0,"writ":0.16,"used":515.06,"free":3535.32},{"epoch":26122547,"idl":99.68,"recv":0,"send":0,"writ":0.17,"used":515.04,"free":3535.34},{"epoch":26122548,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":515.02,"free":3535.35},{"epoch":26122549,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":515,"free":3535.37},{"epoch":26122550,"idl":99.56,"recv":0,"send":0,"writ":0.7,"used":515.12,"free":3535.27},{"epoch":26122551,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":514.73,"free":3535.65},{"epoch":26122552,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":514.72,"free":3535.66},{"epoch":26122553,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":514.78,"free":3535.6},{"epoch":26122554,"idl":99.66,"recv":0,"send":0,"writ":0.14,"used":514.87,"free":3535.52},{"epoch":26122555,"idl":99.4,"recv":0,"send":0,"writ":0.64,"used":515.24,"free":3535.17},{"epoch":26122556,"idl":99.71,"recv":0,"send":0,"writ":0.21,"used":515.1,"free":3535.3},{"epoch":26122557,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":515.06,"free":3535.33},{"epoch":26122558,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.05,"free":3535.35},{"epoch":26122559,"idl":99.67,"recv":0,"send":0,"writ":0.15,"used":515.02,"free":3535.37},{"epoch":26122560,"idl":99.38,"recv":0,"send":0,"writ":0.55,"used":515.06,"free":3535.35},{"epoch":26122561,"idl":99.68,"recv":0,"send":0,"writ":0.28,"used":513.77,"free":3536.63},{"epoch":26122562,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":513.74,"free":3536.65},{"epoch":26122563,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":513.73,"free":3536.66},{"epoch":26122564,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":513.79,"free":3536.59},{"epoch":26122565,"idl":99.49,"recv":0,"send":0,"writ":0.66,"used":514.04,"free":3536.37},{"epoch":26122566,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":514.85,"free":3535.55},{"epoch":26122567,"idl":99.7,"recv":0,"send":0,"writ":0.16,"used":514.83,"free":3535.57},{"epoch":26122568,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":514.81,"free":3535.58},{"epoch":26122569,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":515.01,"free":3535.36},{"epoch":26122570,"idl":99.58,"recv":0,"send":0,"writ":0.45,"used":515.14,"free":3535.24},{"epoch":26122571,"idl":99.67,"recv":0,"send":0,"writ":0.44,"used":514.99,"free":3535.39},{"epoch":26122572,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":514.96,"free":3535.41},{"epoch":26122573,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":514.95,"free":3535.42},{"epoch":26122574,"idl":99.64,"recv":0,"send":0,"writ":0.17,"used":514.92,"free":3535.44},{"epoch":26122575,"idl":99.57,"recv":0,"send":0,"writ":0.45,"used":515.41,"free":3534.97},{"epoch":26122576,"idl":99.76,"recv":0,"send":0,"writ":0.45,"used":515.1,"free":3535.28},{"epoch":26122577,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":515.08,"free":3535.3},{"epoch":26122578,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":515.05,"free":3535.32},{"epoch":26122579,"idl":99.67,"recv":0,"send":0,"writ":0.18,"used":515.04,"free":3535.33},{"epoch":26122580,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":514.55,"free":3535.83},{"epoch":26122581,"idl":99.49,"recv":0,"send":0,"writ":0.57,"used":515.3,"free":3535.07},{"epoch":26122582,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":514.99,"free":3535.38},{"epoch":26122583,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":514.95,"free":3535.41},{"epoch":26122584,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":514.94,"free":3535.42},{"epoch":26122585,"idl":99.62,"recv":0,"send":0,"writ":0.32,"used":514.76,"free":3535.62},{"epoch":26122586,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":515.37,"free":3535},{"epoch":26122587,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":515.07,"free":3535.3},{"epoch":26122588,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":515.04,"free":3535.32},{"epoch":26122589,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":515.03,"free":3535.33},{"epoch":26122590,"idl":99.64,"recv":0,"send":0,"writ":0.33,"used":514.99,"free":3535.39},{"epoch":26122591,"idl":99.58,"recv":0,"send":0,"writ":0.55,"used":515.32,"free":3535.05},{"epoch":26122592,"idl":99.71,"recv":0,"send":0,"writ":0.19,"used":514.94,"free":3535.43},{"epoch":26122593,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":514.97,"free":3535.39},{"epoch":26122594,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.07,"free":3535.28},{"epoch":26122595,"idl":99.55,"recv":0,"send":0,"writ":0.32,"used":514.7,"free":3535.68},{"epoch":26122596,"idl":99.62,"recv":0,"send":0,"writ":0.54,"used":515.03,"free":3535.34},{"epoch":26122597,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":514.55,"free":3535.82},{"epoch":26122598,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":514.54,"free":3535.82},{"epoch":26122599,"idl":99.38,"recv":0,"send":0,"writ":0.32,"used":514.99,"free":3535.35},{"epoch":26122600,"idl":99.63,"recv":0,"send":0,"writ":0.29,"used":515.24,"free":3535.11},{"epoch":26122601,"idl":99.6,"recv":0,"send":0,"writ":0.41,"used":515.57,"free":3534.77},{"epoch":26122602,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":515.2,"free":3535.14},{"epoch":26122603,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":515.18,"free":3535.15},{"epoch":26122604,"idl":99.66,"recv":0,"send":0,"writ":0.15,"used":515.17,"free":3535.18},{"epoch":26122605,"idl":99.52,"recv":0,"send":0,"writ":0.35,"used":515.41,"free":3534.96},{"epoch":26122606,"idl":99.58,"recv":0,"send":0,"writ":0.57,"used":515.8,"free":3534.57},{"epoch":26122607,"idl":99.52,"recv":0,"send":0,"writ":0.19,"used":515.1,"free":3535.26},{"epoch":26122608,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":515.08,"free":3535.27},{"epoch":26122609,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":515.06,"free":3535.29},{"epoch":26122610,"idl":99.51,"recv":0,"send":0,"writ":0.29,"used":515.08,"free":3535.29},{"epoch":26122611,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":515.04,"free":3535.32},{"epoch":26122612,"idl":94.27,"recv":0.36,"send":0.01,"writ":261.55,"used":529.32,"free":3521.48},{"epoch":26122613,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.55,"free":3534.7},{"epoch":26122614,"idl":99.71,"recv":0,"send":0,"writ":0.17,"used":515.61,"free":3534.64},{"epoch":26122615,"idl":99.55,"recv":0,"send":0,"writ":0.29,"used":517.41,"free":3532.86},{"epoch":26122616,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":517.42,"free":3532.85},{"epoch":26122617,"idl":99.44,"recv":0,"send":0,"writ":0.61,"used":516.17,"free":3534.14},{"epoch":26122618,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":515.47,"free":3534.84},{"epoch":26122619,"idl":97.34,"recv":0,"send":0,"writ":0.14,"used":515.45,"free":3534.86},{"epoch":26122620,"idl":99.43,"recv":0,"send":0,"writ":0.29,"used":515.45,"free":3534.87},{"epoch":26122621,"idl":99.63,"recv":0,"send":0,"writ":0.16,"used":515.43,"free":3534.89},{"epoch":26122622,"idl":99.56,"recv":0,"send":0,"writ":0.55,"used":515.14,"free":3535.18},{"epoch":26122623,"idl":99.73,"recv":0,"send":0,"writ":0.17,"used":514.41,"free":3535.9},{"epoch":26122624,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":514.39,"free":3535.92},{"epoch":26122625,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":515.36,"free":3534.97},{"epoch":26122626,"idl":99.73,"recv":0,"send":0,"writ":0.17,"used":515.35,"free":3534.97},{"epoch":26122627,"idl":99.53,"recv":0,"send":0,"writ":0.4,"used":515.64,"free":3534.69},{"epoch":26122628,"idl":99.63,"recv":0,"send":0,"writ":0.32,"used":515.01,"free":3535.32},{"epoch":26122629,"idl":99.36,"recv":0,"send":0,"writ":0.42,"used":515.31,"free":3535},{"epoch":26122630,"idl":99.65,"recv":0,"send":0,"writ":0.38,"used":514.76,"free":3535.57},{"epoch":26122631,"idl":99.68,"recv":0,"send":0,"writ":0.18,"used":514.72,"free":3535.6},{"epoch":26122632,"idl":99.64,"recv":0,"send":0,"writ":0.49,"used":515.3,"free":3535.01},{"epoch":26122633,"idl":99.76,"recv":0,"send":0,"writ":0.24,"used":515.17,"free":3535.14},{"epoch":26122634,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":515.15,"free":3535.15},{"epoch":26122635,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":515.42,"free":3534.91},{"epoch":26122636,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":515.38,"free":3534.94},{"epoch":26122637,"idl":99.58,"recv":0,"send":0,"writ":0.51,"used":515.7,"free":3534.61},{"epoch":26122638,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":515.46,"free":3534.86},{"epoch":26122639,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":515.5,"free":3534.83},{"epoch":26122640,"idl":99.64,"recv":0,"send":0,"writ":0.27,"used":515.28,"free":3535.07},{"epoch":26122641,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":515.24,"free":3535.1},{"epoch":26122642,"idl":99.63,"recv":0,"send":0,"writ":0.57,"used":515.87,"free":3534.46},{"epoch":26122643,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.7,"free":3534.63},{"epoch":26122644,"idl":99.69,"recv":0,"send":0,"writ":0.15,"used":515.68,"free":3534.64},{"epoch":26122645,"idl":99.54,"recv":0,"send":0,"writ":0.3,"used":514.48,"free":3535.86},{"epoch":26122646,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":514.43,"free":3535.91},{"epoch":26122647,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":514.41,"free":3535.93},{"epoch":26122648,"idl":99.51,"recv":0,"send":0,"writ":0.62,"used":515.21,"free":3535.12},{"epoch":26122649,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":514.85,"free":3535.47},{"epoch":26122650,"idl":99.57,"recv":0,"send":0,"writ":0.31,"used":515.21,"free":3535.12},{"epoch":26122651,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":515.29,"free":3535.04},{"epoch":26122652,"idl":99.65,"recv":0,"send":0,"writ":0.17,"used":515.04,"free":3535.29},{"epoch":26122653,"idl":99.58,"recv":0,"send":0,"writ":0.59,"used":515.84,"free":3534.49},{"epoch":26122654,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":515.48,"free":3534.84},{"epoch":26122655,"idl":99.5,"recv":0,"send":0,"writ":0.31,"used":515.23,"free":3535.12},{"epoch":26122656,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":515.2,"free":3535.14},{"epoch":26122657,"idl":99.71,"recv":0,"send":0,"writ":0.15,"used":515.18,"free":3535.16},{"epoch":26122658,"idl":99.61,"recv":0,"send":0,"writ":0.55,"used":515.91,"free":3534.42},{"epoch":26122659,"idl":99.39,"recv":0,"send":0,"writ":0.29,"used":515.46,"free":3534.85},{"epoch":26122660,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":515.15,"free":3535.18},{"epoch":26122661,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":515.24,"free":3535.08},{"epoch":26122662,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":515.29,"free":3535.03},{"epoch":26122663,"idl":99.55,"recv":0,"send":0,"writ":0.56,"used":515.82,"free":3534.49},{"epoch":26122664,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":515,"free":3535.32},{"epoch":26122665,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":515.74,"free":3534.6},{"epoch":26122666,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":515.48,"free":3534.85},{"epoch":26122667,"idl":99.64,"recv":0.06,"send":6.29,"writ":0.32,"used":514.72,"free":3535.56},{"epoch":26122668,"idl":99.57,"recv":0.03,"send":4.9,"writ":0.91,"used":514.8,"free":3535.12},{"epoch":26122669,"idl":99.74,"recv":0.01,"send":1.89,"writ":0.51,"used":514.28,"free":3535.45},{"epoch":26122670,"idl":99.56,"recv":0,"send":0,"writ":0.29,"used":514.82,"free":3534.89},{"epoch":26122671,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":514.75,"free":3534.95},{"epoch":26122672,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":514.81,"free":3534.9},{"epoch":26122673,"idl":99.65,"recv":0,"send":0,"writ":0.59,"used":514.92,"free":3534.78},{"epoch":26122674,"idl":99.77,"recv":0,"send":0,"writ":0.19,"used":514.12,"free":3535.57},{"epoch":26122675,"idl":99.58,"recv":0,"send":0,"writ":0.34,"used":514.6,"free":3535.11},{"epoch":26122676,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":514.6,"free":3535.11},{"epoch":26122677,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":514.57,"free":3535.13},{"epoch":26122678,"idl":99.63,"recv":0,"send":0,"writ":0.43,"used":514.6,"free":3535.09},{"epoch":26122679,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":513.3,"free":3536.39},{"epoch":26122680,"idl":96.79,"recv":0,"send":0,"writ":0.32,"used":514.28,"free":3535.43},{"epoch":26122681,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":514.26,"free":3535.44},{"epoch":26122682,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":514.25,"free":3535.45},{"epoch":26122683,"idl":99.56,"recv":0,"send":0,"writ":0.43,"used":514.89,"free":3534.8},{"epoch":26122684,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":514.05,"free":3535.64},{"epoch":26122685,"idl":99.65,"recv":0,"send":0,"writ":0.28,"used":514.4,"free":3535.31},{"epoch":26122686,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":514.39,"free":3535.32},{"epoch":26122687,"idl":99.66,"recv":0,"send":0,"writ":0.16,"used":514.36,"free":3535.34},{"epoch":26122688,"idl":99.68,"recv":0,"send":0,"writ":0.14,"used":514.31,"free":3535.38},{"epoch":26122689,"idl":99.46,"recv":0,"send":0,"writ":0.7,"used":515.12,"free":3534.55},{"epoch":26122690,"idl":99.53,"recv":0,"send":0,"writ":0.32,"used":515.02,"free":3534.66},{"epoch":26122691,"idl":99.66,"recv":0,"send":0,"writ":0.15,"used":515,"free":3534.69},{"epoch":26122692,"idl":99.62,"recv":0,"send":0,"writ":0.15,"used":514.99,"free":3534.69},{"epoch":26122693,"idl":99.56,"recv":0.02,"send":0.04,"writ":0.45,"used":515.45,"free":3534.19},{"epoch":26122694,"idl":99.38,"recv":0.01,"send":0.05,"writ":0.7,"used":520.29,"free":3529.1},{"epoch":26122695,"idl":99.49,"recv":0,"send":0,"writ":0.36,"used":516.87,"free":3532.37},{"epoch":26122696,"idl":99.76,"recv":0,"send":0,"writ":0.13,"used":515.2,"free":3534.07},{"epoch":26122697,"idl":99.71,"recv":0,"send":0,"writ":0.21,"used":515.2,"free":3534.07},{"epoch":26122698,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":515.16,"free":3534.1},{"epoch":26122699,"idl":99.61,"recv":0,"send":0,"writ":0.59,"used":515.93,"free":3533.33},{"epoch":26122700,"idl":99.5,"recv":0,"send":0,"writ":0.32,"used":514.52,"free":3534.76},{"epoch":26122701,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":514.39,"free":3534.88},{"epoch":26122702,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":514.54,"free":3534.73},{"epoch":26122703,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":514.53,"free":3534.74},{"epoch":26122704,"idl":99.7,"recv":0,"send":0,"writ":0.49,"used":514.99,"free":3534.27},{"epoch":26122705,"idl":99.53,"recv":0,"send":0,"writ":0.41,"used":514.51,"free":3534.76},{"epoch":26122706,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":514.49,"free":3534.78},{"epoch":26122707,"idl":99.66,"recv":0,"send":0,"writ":0.16,"used":514.47,"free":3534.8},{"epoch":26122708,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":514.45,"free":3534.81},{"epoch":26122709,"idl":99.61,"recv":0,"send":0,"writ":0.55,"used":515.21,"free":3534.05},{"epoch":26122710,"idl":99.48,"recv":0,"send":0,"writ":0.29,"used":515.17,"free":3534.1},{"epoch":26122711,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":515.15,"free":3534.12},{"epoch":26122712,"idl":99.7,"recv":0,"send":0,"writ":0.18,"used":514.68,"free":3534.59},{"epoch":26122713,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":514.61,"free":3534.65},{"epoch":26122714,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":515.34,"free":3533.92},{"epoch":26122715,"idl":99.61,"recv":0,"send":0,"writ":0.29,"used":514.79,"free":3534.49},{"epoch":26122716,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":514.77,"free":3534.51},{"epoch":26122717,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":514.74,"free":3534.54},{"epoch":26122718,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":514.72,"free":3534.55},{"epoch":26122719,"idl":99.36,"recv":0,"send":0,"writ":0.55,"used":515.73,"free":3533.51},{"epoch":26122720,"idl":99.69,"recv":0,"send":0,"writ":0.41,"used":515.44,"free":3533.82},{"epoch":26122721,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.41,"free":3533.84},{"epoch":26122722,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.39,"free":3533.86},{"epoch":26122723,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":515.37,"free":3533.88},{"epoch":26122724,"idl":99.61,"recv":0,"send":0,"writ":0.42,"used":515.99,"free":3533.25},{"epoch":26122725,"idl":99.64,"recv":0,"send":0,"writ":0.43,"used":515.43,"free":3533.82},{"epoch":26122726,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":515.52,"free":3533.73},{"epoch":26122727,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":515.5,"free":3533.75},{"epoch":26122728,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":515.47,"free":3533.77},{"epoch":26122729,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.46,"free":3533.78},{"epoch":26122730,"idl":99.46,"recv":0,"send":0,"writ":0.7,"used":515.63,"free":3533.63},{"epoch":26122731,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":515.2,"free":3534.06},{"epoch":26122732,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.17,"free":3534.09},{"epoch":26122733,"idl":99.76,"recv":0.03,"send":0.08,"writ":0.21,"used":515.17,"free":3534.08},{"epoch":26122734,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.18,"free":3534.06},{"epoch":26122735,"idl":99.47,"recv":0,"send":0,"writ":0.73,"used":515.31,"free":3533.94},{"epoch":26122736,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":514.92,"free":3534.34},{"epoch":26122737,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":514.89,"free":3534.35},{"epoch":26122738,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":514.88,"free":3534.37},{"epoch":26122739,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":514.86,"free":3534.38},{"epoch":26122740,"idl":99.36,"recv":0,"send":0,"writ":0.73,"used":515.71,"free":3533.55},{"epoch":26122741,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.18,"free":3534.07},{"epoch":26122742,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":515.29,"free":3533.96},{"epoch":26122743,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.27,"free":3533.98},{"epoch":26122744,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.25,"free":3534},{"epoch":26122745,"idl":99.6,"recv":0,"send":0,"writ":0.71,"used":515.84,"free":3533.42},{"epoch":26122746,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.47,"free":3533.78},{"epoch":26122747,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":515.44,"free":3533.81},{"epoch":26122748,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.43,"free":3533.82},{"epoch":26122749,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":515.63,"free":3533.59},{"epoch":26122750,"idl":99.54,"recv":0,"send":0,"writ":0.66,"used":515.66,"free":3533.57},{"epoch":26122751,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":515.13,"free":3534.11},{"epoch":26122752,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":515.27,"free":3533.95},{"epoch":26122753,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.26,"free":3533.96},{"epoch":26122754,"idl":99.68,"recv":0,"send":0,"writ":0.15,"used":515.24,"free":3533.99},{"epoch":26122755,"idl":99.52,"recv":0,"send":0,"writ":0.56,"used":515.76,"free":3533.5},{"epoch":26122756,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":515.23,"free":3534.03},{"epoch":26122757,"idl":99.79,"recv":0,"send":0,"writ":0.21,"used":515.46,"free":3533.79},{"epoch":26122758,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.43,"free":3533.81},{"epoch":26122759,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":515.41,"free":3533.83},{"epoch":26122760,"idl":99.46,"recv":0,"send":0,"writ":0.7,"used":515.53,"free":3533.73},{"epoch":26122761,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.17,"free":3534.11},{"epoch":26122762,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":515.13,"free":3534.14},{"epoch":26122763,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.2,"free":3534.06},{"epoch":26122764,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.28,"free":3533.98},{"epoch":26122765,"idl":99.55,"recv":0,"send":0,"writ":0.46,"used":515.23,"free":3534.05},{"epoch":26122766,"idl":99.76,"recv":0,"send":0,"writ":0.38,"used":515.51,"free":3533.77},{"epoch":26122767,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.47,"free":3533.79},{"epoch":26122768,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.47,"free":3533.8},{"epoch":26122769,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":515.43,"free":3533.83},{"epoch":26122770,"idl":99.54,"recv":0,"send":0,"writ":0.3,"used":515.44,"free":3533.83},{"epoch":26122771,"idl":99.6,"recv":0,"send":0,"writ":0.57,"used":515.97,"free":3533.3},{"epoch":26122772,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":515.43,"free":3533.84},{"epoch":26122773,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":515.37,"free":3533.89},{"epoch":26122774,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":515.43,"free":3533.83},{"epoch":26122775,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":514.83,"free":3534.44},{"epoch":26122776,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":515.78,"free":3533.5},{"epoch":26122777,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.5,"free":3533.77},{"epoch":26122778,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":515.48,"free":3533.78},{"epoch":26122779,"idl":99.62,"recv":0,"send":0,"writ":0.3,"used":515.46,"free":3533.77},{"epoch":26122780,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":515.47,"free":3533.79},{"epoch":26122781,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":515.6,"free":3533.65},{"epoch":26122782,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":514.69,"free":3534.56},{"epoch":26122783,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":514.67,"free":3534.57},{"epoch":26122784,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":514.64,"free":3534.6},{"epoch":26122785,"idl":99.59,"recv":0,"send":0,"writ":0.31,"used":514.89,"free":3534.36},{"epoch":26122786,"idl":99.68,"recv":0,"send":0,"writ":0.52,"used":515.79,"free":3533.46},{"epoch":26122787,"idl":99.73,"recv":0,"send":0,"writ":0.19,"used":515.53,"free":3533.71},{"epoch":26122788,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.5,"free":3533.74},{"epoch":26122789,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":515.49,"free":3533.74},{"epoch":26122790,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":515.01,"free":3534.24},{"epoch":26122791,"idl":99.61,"recv":0,"send":0,"writ":0.5,"used":515.43,"free":3533.82},{"epoch":26122792,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":515.21,"free":3534.04},{"epoch":26122793,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.19,"free":3534.05},{"epoch":26122794,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.17,"free":3534.06},{"epoch":26122795,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":515.65,"free":3533.6},{"epoch":26122796,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":515.99,"free":3533.25},{"epoch":26122797,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":515.62,"free":3533.62},{"epoch":26122798,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.6,"free":3533.64},{"epoch":26122799,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":515.7,"free":3533.54},{"epoch":26122800,"idl":99.56,"recv":0,"send":0,"writ":0.31,"used":515.76,"free":3533.49},{"epoch":26122801,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":516.39,"free":3532.86},{"epoch":26122802,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":515.7,"free":3533.54},{"epoch":26122803,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":515.68,"free":3533.56},{"epoch":26122804,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":515.68,"free":3533.56},{"epoch":26122805,"idl":99.68,"recv":0,"send":0,"writ":0.31,"used":515.21,"free":3534.03},{"epoch":26122806,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.15,"free":3534.1},{"epoch":26122807,"idl":99.69,"recv":0,"send":0,"writ":0.6,"used":514.76,"free":3534.48},{"epoch":26122808,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":514.37,"free":3534.87},{"epoch":26122809,"idl":99.57,"recv":0,"send":0,"writ":0.28,"used":515.62,"free":3533.59},{"epoch":26122810,"idl":99.68,"recv":0,"send":0,"writ":0.35,"used":515.75,"free":3533.47},{"epoch":26122811,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":515.73,"free":3533.49},{"epoch":26122812,"idl":99.67,"recv":0,"send":0,"writ":0.81,"used":514.86,"free":3534.36},{"epoch":26122813,"idl":99.53,"recv":0,"send":0,"writ":0.16,"used":514.46,"free":3534.76},{"epoch":26122814,"idl":99.68,"recv":0,"send":0,"writ":0.14,"used":514.3,"free":3534.93},{"epoch":26122815,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":514.88,"free":3534.37},{"epoch":26122816,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":514.91,"free":3534.34},{"epoch":26122817,"idl":99.62,"recv":0,"send":0,"writ":0.74,"used":514.83,"free":3534.41},{"epoch":26122818,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.37,"free":3534.86},{"epoch":26122819,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":514.35,"free":3534.88},{"epoch":26122820,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":514.91,"free":3534.33},{"epoch":26122821,"idl":99.68,"recv":0,"send":0,"writ":0.18,"used":515.01,"free":3534.23},{"epoch":26122822,"idl":99.6,"recv":0,"send":0,"writ":0.55,"used":515.65,"free":3533.59},{"epoch":26122823,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":514.97,"free":3534.26},{"epoch":26122824,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":514.95,"free":3534.27},{"epoch":26122825,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":513.98,"free":3535.26},{"epoch":26122826,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":513.95,"free":3535.29},{"epoch":26122827,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":514.53,"free":3534.7},{"epoch":26122828,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":514.4,"free":3534.83},{"epoch":26122829,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":514.39,"free":3534.83},{"epoch":26122830,"idl":99.58,"recv":0,"send":0,"writ":0.3,"used":515.12,"free":3534.12},{"epoch":26122831,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.12,"free":3534.12},{"epoch":26122832,"idl":99.65,"recv":0,"send":0,"writ":0.45,"used":515.21,"free":3534.02},{"epoch":26122833,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":514.77,"free":3534.46},{"epoch":26122834,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":514.73,"free":3534.49},{"epoch":26122835,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":514.51,"free":3534.73},{"epoch":26122836,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":514.47,"free":3534.76},{"epoch":26122837,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":515.28,"free":3533.94},{"epoch":26122838,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":514.92,"free":3534.3},{"epoch":26122839,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":514.96,"free":3534.26},{"epoch":26122840,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":513.96,"free":3535.28},{"epoch":26122841,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":513.92,"free":3535.3},{"epoch":26122842,"idl":99.69,"recv":0,"send":0,"writ":0.43,"used":514.38,"free":3534.85},{"epoch":26122843,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":514.85,"free":3534.37},{"epoch":26122844,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.01,"free":3534.21},{"epoch":26122845,"idl":99.65,"recv":0,"send":0,"writ":0.28,"used":514.05,"free":3535.18},{"epoch":26122846,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":514.02,"free":3535.21},{"epoch":26122847,"idl":99.66,"recv":0,"send":0,"writ":0.46,"used":514.49,"free":3534.74},{"epoch":26122848,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":514.97,"free":3534.27},{"epoch":26122849,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":514.95,"free":3534.29},{"epoch":26122850,"idl":99.6,"recv":0,"send":0,"writ":0.29,"used":515.19,"free":3534.06},{"epoch":26122851,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":515.17,"free":3534.08},{"epoch":26122852,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.15,"free":3534.09},{"epoch":26122853,"idl":99.61,"recv":0,"send":0,"writ":0.55,"used":515.81,"free":3533.43},{"epoch":26122854,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.11,"free":3534.12},{"epoch":26122855,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":514.87,"free":3534.38},{"epoch":26122856,"idl":99.74,"recv":0,"send":0,"writ":0.13,"used":515.02,"free":3534.22},{"epoch":26122857,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":515.01,"free":3534.23},{"epoch":26122858,"idl":99.57,"recv":0,"send":0,"writ":0.57,"used":515.83,"free":3533.4},{"epoch":26122859,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.45,"free":3533.78},{"epoch":26122860,"idl":99.51,"recv":0,"send":0,"writ":0.31,"used":515.21,"free":3534.04},{"epoch":26122861,"idl":99.7,"recv":0,"send":0,"writ":0.15,"used":515.19,"free":3534.06},{"epoch":26122862,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":515.16,"free":3534.08},{"epoch":26122863,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":515.5,"free":3533.73},{"epoch":26122864,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.11,"free":3534.11},{"epoch":26122865,"idl":99.74,"recv":0,"send":0,"writ":0.38,"used":515.12,"free":3534.12},{"epoch":26122866,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":515.18,"free":3534.06},{"epoch":26122867,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":515.26,"free":3533.97},{"epoch":26122868,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":515.57,"free":3533.65},{"epoch":26122869,"idl":99.53,"recv":0,"send":0,"writ":0.29,"used":515.46,"free":3533.73},{"epoch":26122870,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":515.21,"free":3534},{"epoch":26122871,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.18,"free":3534.03},{"epoch":26122872,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":515.16,"free":3534.04},{"epoch":26122873,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":515.48,"free":3533.71},{"epoch":26122874,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.12,"free":3534.1},{"epoch":26122875,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":515.13,"free":3534.12},{"epoch":26122876,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":515.11,"free":3534.14},{"epoch":26122877,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":515.09,"free":3534.15},{"epoch":26122878,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":515.59,"free":3533.65},{"epoch":26122879,"idl":99.91,"recv":0,"send":0,"writ":0.31,"used":515.24,"free":3534},{"epoch":26122880,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":515.24,"free":3534},{"epoch":26122881,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.21,"free":3534.03},{"epoch":26122882,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":515.2,"free":3534.04},{"epoch":26122883,"idl":99.64,"recv":0,"send":0,"writ":0.55,"used":515.53,"free":3533.7},{"epoch":26122884,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.14,"free":3534.09},{"epoch":26122885,"idl":99.65,"recv":0.01,"send":0.01,"writ":0.32,"used":515.11,"free":3534.14},{"epoch":26122886,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.19,"free":3534.05},{"epoch":26122887,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.23,"free":3534.01},{"epoch":26122888,"idl":99.69,"recv":0,"send":0,"writ":0.45,"used":515.56,"free":3533.67},{"epoch":26122889,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":515.18,"free":3534.04},{"epoch":26122890,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":515.66,"free":3533.58},{"epoch":26122891,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.66,"free":3533.58},{"epoch":26122892,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":515.45,"free":3533.79},{"epoch":26122893,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.37,"free":3533.86},{"epoch":26122894,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":515.43,"free":3533.81},{"epoch":26122895,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":515.11,"free":3534.14},{"epoch":26122896,"idl":96.5,"recv":0.9,"send":0.02,"writ":1.68,"used":520.29,"free":3530.16},{"epoch":26122897,"idl":99.74,"recv":0,"send":0,"writ":78.12,"used":518.05,"free":3529.99},{"epoch":26122898,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":518.04,"free":3530},{"epoch":26122899,"idl":99.53,"recv":0,"send":0,"writ":0.69,"used":518.18,"free":3529.83},{"epoch":26122900,"idl":99.73,"recv":0,"send":0,"writ":0.35,"used":517.77,"free":3530.25},{"epoch":26122901,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":517.28,"free":3530.74},{"epoch":26122902,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.58,"free":3532.49},{"epoch":26122903,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.55,"free":3532.52},{"epoch":26122904,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":515.89,"free":3532.19},{"epoch":26122905,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":515.3,"free":3532.81},{"epoch":26122906,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.28,"free":3532.81},{"epoch":26122907,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":515.37,"free":3532.72},{"epoch":26122908,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.43,"free":3532.66},{"epoch":26122909,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":516.14,"free":3531.94},{"epoch":26122910,"idl":99.7,"recv":0,"send":0,"writ":0.33,"used":515.41,"free":3532.68},{"epoch":26122911,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":515.39,"free":3532.7},{"epoch":26122912,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.37,"free":3532.72},{"epoch":26122913,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.34,"free":3532.75},{"epoch":26122914,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":515.83,"free":3532.26},{"epoch":26122915,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":515.57,"free":3532.54},{"epoch":26122916,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.55,"free":3532.56},{"epoch":26122917,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":515.54,"free":3532.56},{"epoch":26122918,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":515.42,"free":3532.69},{"epoch":26122919,"idl":99.74,"recv":0,"send":0,"writ":0.44,"used":515.46,"free":3532.66},{"epoch":26122920,"idl":99.61,"recv":0,"send":0,"writ":0.46,"used":515.12,"free":3533.01},{"epoch":26122921,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.19,"free":3532.94},{"epoch":26122922,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":515.15,"free":3532.97},{"epoch":26122923,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.15,"free":3532.97},{"epoch":26122924,"idl":99.68,"recv":0,"send":0,"writ":0.49,"used":515.57,"free":3532.54},{"epoch":26122925,"idl":99.66,"recv":0,"send":0,"writ":0.36,"used":514.65,"free":3533.48},{"epoch":26122926,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.6,"free":3533.53},{"epoch":26122927,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":514.57,"free":3533.55},{"epoch":26122928,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":514.56,"free":3533.56},{"epoch":26122929,"idl":98.62,"recv":0,"send":0,"writ":0.5,"used":515.61,"free":3532.48},{"epoch":26122930,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":514.56,"free":3533.55},{"epoch":26122931,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":514.51,"free":3533.59},{"epoch":26122932,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":514.68,"free":3533.42},{"epoch":26122933,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":514.65,"free":3533.45},{"epoch":26122934,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":514.64,"free":3533.46},{"epoch":26122935,"idl":99.49,"recv":0,"send":0,"writ":0.78,"used":515.99,"free":3532.13},{"epoch":26122936,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":515.6,"free":3532.51},{"epoch":26122937,"idl":99.81,"recv":0,"send":0,"writ":0.22,"used":515.81,"free":3532.3},{"epoch":26122938,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":515.8,"free":3532.31},{"epoch":26122939,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":515.77,"free":3532.33},{"epoch":26122940,"idl":99.63,"recv":0,"send":0,"writ":0.72,"used":515.89,"free":3532.23},{"epoch":26122941,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.51,"free":3532.61},{"epoch":26122942,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.49,"free":3532.62},{"epoch":26122943,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":515.63,"free":3532.47},{"epoch":26122944,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.63,"free":3532.48},{"epoch":26122945,"idl":99.57,"recv":0,"send":0,"writ":0.77,"used":515.98,"free":3532.14},{"epoch":26122946,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":515.6,"free":3532.51},{"epoch":26122947,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":515.6,"free":3532.51},{"epoch":26122948,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":515.56,"free":3532.54},{"epoch":26122949,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":515.56,"free":3532.54},{"epoch":26122950,"idl":99.67,"recv":0,"send":0,"writ":0.74,"used":516.3,"free":3531.82},{"epoch":26122951,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":515.54,"free":3532.57},{"epoch":26122952,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":515.33,"free":3532.78},{"epoch":26122953,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":515.25,"free":3532.85},{"epoch":26122954,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":515.22,"free":3532.88},{"epoch":26122955,"idl":99.54,"recv":0,"send":0,"writ":0.75,"used":515.3,"free":3532.82},{"epoch":26122956,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":515.14,"free":3532.97},{"epoch":26122957,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":515.12,"free":3532.99},{"epoch":26122958,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":515.1,"free":3533},{"epoch":26122959,"idl":99.62,"recv":0,"send":0,"writ":0.31,"used":515.79,"free":3532.29},{"epoch":26122960,"idl":99.55,"recv":0,"send":0,"writ":0.61,"used":515.79,"free":3532.3},{"epoch":26122961,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":515.77,"free":3532.31},{"epoch":26122962,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":515.75,"free":3532.33},{"epoch":26122963,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.73,"free":3532.34},{"epoch":26122964,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.71,"free":3532.38},{"epoch":26122965,"idl":99.64,"recv":0,"send":0,"writ":0.75,"used":516.01,"free":3532.1},{"epoch":26122966,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":514.89,"free":3533.22},{"epoch":26122967,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":514.88,"free":3533.23},{"epoch":26122968,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":514.85,"free":3533.25},{"epoch":26122969,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":514.82,"free":3533.27},{"epoch":26122970,"idl":99.47,"recv":0,"send":0,"writ":0.6,"used":514.9,"free":3533.21},{"epoch":26122971,"idl":99.74,"recv":0,"send":0,"writ":0.44,"used":514.79,"free":3533.31},{"epoch":26122972,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":514.76,"free":3533.34},{"epoch":26122973,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":514.74,"free":3533.35},{"epoch":26122974,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":514.71,"free":3533.38},{"epoch":26122975,"idl":99.63,"recv":0,"send":0,"writ":0.36,"used":514.86,"free":3533.25},{"epoch":26122976,"idl":96.48,"recv":0.02,"send":0.01,"writ":79.27,"used":524.57,"free":3525.62},{"epoch":26122977,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":517.58,"free":3530.62},{"epoch":26122978,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.54,"free":3530.65},{"epoch":26122979,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":517.54,"free":3530.65},{"epoch":26122980,"idl":99.61,"recv":0,"send":0,"writ":0.29,"used":517.3,"free":3530.91},{"epoch":26122981,"idl":99.64,"recv":0,"send":0,"writ":0.65,"used":515.94,"free":3532.28},{"epoch":26122982,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":514.96,"free":3533.28},{"epoch":26122983,"idl":99.81,"recv":0,"send":0.01,"writ":0.15,"used":515,"free":3533.23},{"epoch":26122984,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":514.98,"free":3533.25},{"epoch":26122985,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":513.05,"free":3535.19},{"epoch":26122986,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":514.69,"free":3533.56},{"epoch":26122987,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":514.94,"free":3533.32},{"epoch":26122988,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":514.92,"free":3533.34},{"epoch":26122989,"idl":99.3,"recv":0,"send":0,"writ":0.34,"used":515.14,"free":3533.09},{"epoch":26122990,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":514.9,"free":3533.34},{"epoch":26122991,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":515.38,"free":3532.86},{"epoch":26122992,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":515.02,"free":3533.22},{"epoch":26122993,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515,"free":3533.22},{"epoch":26122994,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":514.98,"free":3533.25},{"epoch":26122995,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":515.25,"free":3533.01},{"epoch":26122996,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":515.1,"free":3533.16},{"epoch":26122997,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":513.74,"free":3534.52},{"epoch":26122998,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":513.7,"free":3534.55},{"epoch":26122999,"idl":99.82,"recv":0.02,"send":0.07,"writ":0.19,"used":513.65,"free":3534.59},{"epoch":26123000,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":514.11,"free":3534.15},{"epoch":26123001,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":514.87,"free":3533.39},{"epoch":26123002,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":515.01,"free":3533.25},{"epoch":26123003,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":514.99,"free":3533.26},{"epoch":26123004,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":514.97,"free":3533.28},{"epoch":26123005,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":515.23,"free":3533.04},{"epoch":26123006,"idl":99.74,"recv":0,"send":0,"writ":0.4,"used":515.56,"free":3532.71},{"epoch":26123007,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":515.19,"free":3533.07},{"epoch":26123008,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.16,"free":3533.09},{"epoch":26123009,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.15,"free":3533.11},{"epoch":26123010,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":515.16,"free":3533.11},{"epoch":26123011,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.13,"free":3533.13},{"epoch":26123012,"idl":99.66,"recv":0,"send":0,"writ":0.58,"used":515.6,"free":3532.66},{"epoch":26123013,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":514.84,"free":3533.41},{"epoch":26123014,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.01,"free":3533.24},{"epoch":26123015,"idl":99.77,"recv":0,"send":0,"writ":0.35,"used":514.52,"free":3533.74},{"epoch":26123016,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":514.51,"free":3533.75},{"epoch":26123017,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":515.25,"free":3533.01},{"epoch":26123018,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":514.96,"free":3533.29},{"epoch":26123019,"idl":99.57,"recv":0,"send":0,"writ":0.29,"used":515.18,"free":3533.04},{"epoch":26123020,"idl":99.67,"recv":0,"send":0,"writ":0.35,"used":513.95,"free":3534.29},{"epoch":26123021,"idl":99.24,"recv":0,"send":0,"writ":0.13,"used":513.91,"free":3534.33},{"epoch":26123022,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":515.44,"free":3532.79},{"epoch":26123023,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.34,"free":3532.88},{"epoch":26123024,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":515.32,"free":3532.91},{"epoch":26123025,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":514.47,"free":3533.79},{"epoch":26123026,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":514.51,"free":3533.75},{"epoch":26123027,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":515.15,"free":3533.1},{"epoch":26123028,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":514.95,"free":3533.29},{"epoch":26123029,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.93,"free":3533.31},{"epoch":26123030,"idl":99.63,"recv":0,"send":0,"writ":0.29,"used":513.74,"free":3534.51},{"epoch":26123031,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":513.68,"free":3534.58},{"epoch":26123032,"idl":99.55,"recv":0,"send":0,"writ":0.53,"used":514.65,"free":3533.6},{"epoch":26123033,"idl":99.65,"recv":0,"send":0,"writ":0.2,"used":514.62,"free":3533.63},{"epoch":26123034,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.6,"free":3533.64},{"epoch":26123035,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":515.32,"free":3532.93},{"epoch":26123036,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.32,"free":3532.93},{"epoch":26123037,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":515.85,"free":3532.39},{"epoch":26123038,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":515.5,"free":3532.74},{"epoch":26123039,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.48,"free":3532.76},{"epoch":26123040,"idl":99.44,"recv":0,"send":0,"writ":0.35,"used":515.48,"free":3532.77},{"epoch":26123041,"idl":98.94,"recv":0,"send":0,"writ":0.15,"used":515.46,"free":3532.79},{"epoch":26123042,"idl":99.62,"recv":0,"send":0,"writ":0.52,"used":515.58,"free":3532.67},{"epoch":26123043,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":514.68,"free":3533.57},{"epoch":26123044,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":514.67,"free":3533.57},{"epoch":26123045,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":514.43,"free":3533.83},{"epoch":26123046,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":514.4,"free":3533.85},{"epoch":26123047,"idl":99.69,"recv":0,"send":0,"writ":0.42,"used":514.69,"free":3533.57},{"epoch":26123048,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":514.12,"free":3534.13},{"epoch":26123049,"idl":99.57,"recv":0,"send":0,"writ":0.29,"used":515.02,"free":3533.21},{"epoch":26123050,"idl":99.67,"recv":0,"send":0,"writ":0.31,"used":515.49,"free":3532.75},{"epoch":26123051,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.47,"free":3532.77},{"epoch":26123052,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.45,"free":3532.78},{"epoch":26123053,"idl":99.53,"recv":0,"send":0,"writ":0.57,"used":516.1,"free":3532.13},{"epoch":26123054,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":515.4,"free":3532.82},{"epoch":26123055,"idl":99.5,"recv":0,"send":0,"writ":0.35,"used":514.7,"free":3533.54},{"epoch":26123056,"idl":99.69,"recv":0,"send":0,"writ":0.14,"used":514.64,"free":3533.6},{"epoch":26123057,"idl":99.8,"recv":0,"send":0.01,"writ":0.21,"used":514.75,"free":3533.48},{"epoch":26123058,"idl":99.5,"recv":0,"send":0,"writ":0.55,"used":515.82,"free":3532.41},{"epoch":26123059,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.47,"free":3532.75},{"epoch":26123060,"idl":99.63,"recv":0,"send":0,"writ":0.3,"used":515.48,"free":3532.76},{"epoch":26123061,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.46,"free":3532.78},{"epoch":26123062,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.42,"free":3532.81},{"epoch":26123063,"idl":99.6,"recv":0,"send":0,"writ":0.54,"used":515.77,"free":3532.45},{"epoch":26123064,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":515.38,"free":3532.84},{"epoch":26123065,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":515.38,"free":3532.86},{"epoch":26123066,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.36,"free":3532.88},{"epoch":26123067,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.33,"free":3532.89},{"epoch":26123068,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":515.7,"free":3532.53},{"epoch":26123069,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":515.24,"free":3532.98},{"epoch":26123070,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":514.76,"free":3533.48},{"epoch":26123071,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":514.73,"free":3533.51},{"epoch":26123072,"idl":99.75,"recv":0,"send":0,"writ":0.19,"used":514.71,"free":3533.52},{"epoch":26123073,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":515.73,"free":3532.5},{"epoch":26123074,"idl":99.75,"recv":0.01,"send":0.01,"writ":0.15,"used":515.39,"free":3532.83},{"epoch":26123075,"idl":99.32,"recv":0.1,"send":0.06,"writ":0.33,"used":515.2,"free":3533.04},{"epoch":26123076,"idl":99.48,"recv":0.11,"send":0.07,"writ":0.15,"used":515.18,"free":3533.05},{"epoch":26123077,"idl":99.67,"recv":0.06,"send":0.04,"writ":0.2,"used":515.16,"free":3533.07},{"epoch":26123078,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":515.81,"free":3532.41},{"epoch":26123079,"idl":99.53,"recv":0,"send":0,"writ":0.45,"used":515.33,"free":3532.86},{"epoch":26123080,"idl":99.6,"recv":0,"send":0,"writ":0.31,"used":515.68,"free":3532.54},{"epoch":26123081,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":515.75,"free":3532.46},{"epoch":26123082,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.72,"free":3532.49},{"epoch":26123083,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":516.05,"free":3532.15},{"epoch":26123084,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":515.45,"free":3532.77},{"epoch":26123085,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":515.72,"free":3532.52},{"epoch":26123086,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.67,"free":3532.57},{"epoch":26123087,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.64,"free":3532.58},{"epoch":26123088,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":515.99,"free":3532.24},{"epoch":26123089,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":515.59,"free":3532.63},{"epoch":26123090,"idl":99.65,"recv":0,"send":0,"writ":0.31,"used":515.61,"free":3532.63},{"epoch":26123091,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.58,"free":3532.66},{"epoch":26123092,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.73,"free":3532.51},{"epoch":26123093,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":515.72,"free":3532.52},{"epoch":26123094,"idl":99.59,"recv":0,"send":0,"writ":0.55,"used":516.29,"free":3531.94},{"epoch":26123095,"idl":99.66,"recv":0,"send":0,"writ":0.31,"used":514.76,"free":3533.49},{"epoch":26123096,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":514.7,"free":3533.55},{"epoch":26123097,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.68,"free":3533.57},{"epoch":26123098,"idl":99.8,"recv":0,"send":0.02,"writ":0.2,"used":514.63,"free":3533.61},{"epoch":26123099,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":515.88,"free":3532.35},{"epoch":26123100,"idl":99.43,"recv":0,"send":0,"writ":0.3,"used":515.92,"free":3532.32},{"epoch":26123101,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.97,"free":3532.27},{"epoch":26123102,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.94,"free":3532.3},{"epoch":26123103,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":515.91,"free":3532.33},{"epoch":26123104,"idl":99.62,"recv":0,"send":0,"writ":0.54,"used":516.11,"free":3532.12},{"epoch":26123105,"idl":99.57,"recv":0,"send":0,"writ":0.33,"used":515.4,"free":3532.85},{"epoch":26123106,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.36,"free":3532.88},{"epoch":26123107,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":515.35,"free":3532.89},{"epoch":26123108,"idl":99.77,"recv":0,"send":0,"writ":0.13,"used":515.32,"free":3532.91},{"epoch":26123109,"idl":99.56,"recv":0,"send":0,"writ":0.67,"used":515.9,"free":3532.3},{"epoch":26123110,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":515.98,"free":3532.23},{"epoch":26123111,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.98,"free":3532.23},{"epoch":26123112,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.96,"free":3532.25},{"epoch":26123113,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":515.94,"free":3532.26},{"epoch":26123114,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":516.26,"free":3531.94},{"epoch":26123115,"idl":99.72,"recv":0,"send":0,"writ":0.46,"used":515.68,"free":3532.53},{"epoch":26123116,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.23,"free":3532.98},{"epoch":26123117,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":514.66,"free":3533.55},{"epoch":26123118,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":514.62,"free":3533.58},{"epoch":26123119,"idl":99.63,"recv":0,"send":0,"writ":0.5,"used":515.09,"free":3533.11},{"epoch":26123120,"idl":99.69,"recv":0,"send":0,"writ":0.4,"used":515.09,"free":3533.12},{"epoch":26123121,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":515.08,"free":3533.12},{"epoch":26123122,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":515.18,"free":3533.02},{"epoch":26123123,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":515.23,"free":3532.96},{"epoch":26123124,"idl":99.62,"recv":0,"send":0,"writ":0.43,"used":515.65,"free":3532.54},{"epoch":26123125,"idl":99.66,"recv":0,"send":0,"writ":0.45,"used":513.33,"free":3534.88},{"epoch":26123126,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":513.22,"free":3534.98},{"epoch":26123127,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":513.2,"free":3535},{"epoch":26123128,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":513.18,"free":3535.02},{"epoch":26123129,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":513.15,"free":3535.04},{"epoch":26123130,"idl":99.43,"recv":0,"send":0,"writ":0.73,"used":515.34,"free":3532.87},{"epoch":26123131,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.1,"free":3533.11},{"epoch":26123132,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":514.94,"free":3533.26},{"epoch":26123133,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":514.92,"free":3533.27},{"epoch":26123134,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":514.98,"free":3533.21},{"epoch":26123135,"idl":99.49,"recv":0,"send":0,"writ":0.76,"used":515.06,"free":3533.15},{"epoch":26123136,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":514.71,"free":3533.49},{"epoch":26123137,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":514.69,"free":3533.51},{"epoch":26123138,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":514.67,"free":3533.54},{"epoch":26123139,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":515.14,"free":3533.04},{"epoch":26123140,"idl":99.43,"recv":0,"send":0,"writ":0.7,"used":515.5,"free":3532.71},{"epoch":26123141,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":515.11,"free":3533.09},{"epoch":26123142,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":515.09,"free":3533.1},{"epoch":26123143,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":515.07,"free":3533.12},{"epoch":26123144,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.05,"free":3533.15},{"epoch":26123145,"idl":99.53,"recv":0,"send":0,"writ":0.77,"used":515.45,"free":3532.78},{"epoch":26123146,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":514.97,"free":3533.24},{"epoch":26123147,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":514.95,"free":3533.26},{"epoch":26123148,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":514.92,"free":3533.28},{"epoch":26123149,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":514.91,"free":3533.29},{"epoch":26123150,"idl":99.52,"recv":0,"send":0,"writ":0.72,"used":515.67,"free":3532.55},{"epoch":26123151,"idl":99.77,"recv":0,"send":0,"writ":0.17,"used":515.13,"free":3533.09},{"epoch":26123152,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":515.11,"free":3533.11},{"epoch":26123153,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":515.07,"free":3533.13},{"epoch":26123154,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":515.05,"free":3533.15},{"epoch":26123155,"idl":99.49,"recv":0,"send":0,"writ":0.78,"used":515.02,"free":3533.2},{"epoch":26123156,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":515.23,"free":3532.98},{"epoch":26123157,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":515.2,"free":3533.01},{"epoch":26123158,"idl":99.74,"recv":0,"send":0.01,"writ":0.14,"used":515.18,"free":3533.02},{"epoch":26123159,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":515.13,"free":3533.07},{"epoch":26123160,"idl":99.39,"recv":0,"send":0,"writ":0.48,"used":514.63,"free":3533.59},{"epoch":26123161,"idl":99.73,"recv":0,"send":0,"writ":0.39,"used":514.86,"free":3533.35},{"epoch":26123162,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":514.84,"free":3533.37},{"epoch":26123163,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":514.82,"free":3533.38},{"epoch":26123164,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":514.81,"free":3533.38},{"epoch":26123165,"idl":99.41,"recv":0,"send":0,"writ":0.49,"used":515.39,"free":3532.82},{"epoch":26123166,"idl":99.62,"recv":0.01,"send":0.59,"writ":0.43,"used":515.2,"free":3533.01},{"epoch":26123167,"idl":99.7,"recv":0.02,"send":3.11,"writ":0.28,"used":515.13,"free":3533.06},{"epoch":26123168,"idl":99.71,"recv":0.01,"send":0.86,"writ":0.3,"used":515.13,"free":3533.04},{"epoch":26123169,"idl":99.64,"recv":0.02,"send":2.14,"writ":0.57,"used":515.15,"free":3532.99},{"epoch":26123170,"idl":99.57,"recv":0.01,"send":0.68,"writ":0.49,"used":514.38,"free":3533.76},{"epoch":26123171,"idl":99.63,"recv":0.03,"send":3.32,"writ":0.78,"used":515.37,"free":3532.76},{"epoch":26123172,"idl":99.09,"recv":0.01,"send":0.18,"writ":0.23,"used":515.06,"free":3533.04},{"epoch":26123173,"idl":99.66,"recv":0.01,"send":0.02,"writ":0.2,"used":514.99,"free":3533.11},{"epoch":26123174,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":515.06,"free":3533.06},{"epoch":26123175,"idl":99.6,"recv":0,"send":0,"writ":0.38,"used":515.15,"free":3533},{"epoch":26123176,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":515.71,"free":3532.43},{"epoch":26123177,"idl":99.7,"recv":0,"send":0,"writ":0.18,"used":515.34,"free":3532.8},{"epoch":26123178,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":515.32,"free":3532.81},{"epoch":26123179,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.31,"free":3532.81},{"epoch":26123180,"idl":99.69,"recv":0,"send":0,"writ":0.37,"used":515.07,"free":3533.07},{"epoch":26123181,"idl":99.45,"recv":0,"send":0,"writ":0.45,"used":515.14,"free":3533},{"epoch":26123182,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":514.53,"free":3533.61},{"epoch":26123183,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":514.51,"free":3533.62},{"epoch":26123184,"idl":99.66,"recv":0,"send":0,"writ":0.15,"used":514.48,"free":3533.64},{"epoch":26123185,"idl":99.57,"recv":0,"send":0,"writ":0.32,"used":513.87,"free":3534.28},{"epoch":26123186,"idl":99.63,"recv":0,"send":0,"writ":0.6,"used":514.81,"free":3533.34},{"epoch":26123187,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":515.37,"free":3532.77},{"epoch":26123188,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":515.35,"free":3532.78},{"epoch":26123189,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":515.31,"free":3532.81},{"epoch":26123190,"idl":99.57,"recv":0,"send":0,"writ":0.33,"used":515.57,"free":3532.57},{"epoch":26123191,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":515.86,"free":3532.28},{"epoch":26123192,"idl":99.61,"recv":0,"send":0,"writ":0.15,"used":515.03,"free":3533.11},{"epoch":26123193,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":514.77,"free":3533.36},{"epoch":26123194,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":514.76,"free":3533.37},{"epoch":26123195,"idl":99.62,"recv":0,"send":0,"writ":0.37,"used":515.54,"free":3532.61},{"epoch":26123196,"idl":99.69,"recv":0,"send":0,"writ":0.35,"used":515.91,"free":3532.23},{"epoch":26123197,"idl":99.69,"recv":0,"send":0,"writ":0.42,"used":515.6,"free":3532.53},{"epoch":26123198,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":515.61,"free":3532.52},{"epoch":26123199,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":515.34,"free":3532.76},{"epoch":26123200,"idl":99.55,"recv":0,"send":0,"writ":0.34,"used":515.34,"free":3532.78},{"epoch":26123201,"idl":99.65,"recv":0,"send":0.01,"writ":0.32,"used":515.67,"free":3532.44},{"epoch":26123202,"idl":99.68,"recv":0,"send":0.01,"writ":0.42,"used":515.3,"free":3532.82},{"epoch":26123203,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":515.28,"free":3532.83},{"epoch":26123204,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":515.26,"free":3532.85},{"epoch":26123205,"idl":99.6,"recv":0,"send":0,"writ":0.35,"used":515.5,"free":3532.62},{"epoch":26123206,"idl":99.64,"recv":0,"send":0,"writ":0.17,"used":515.48,"free":3532.63},{"epoch":26123207,"idl":99.41,"recv":0,"send":0,"writ":0.61,"used":516.1,"free":3532.01},{"epoch":26123208,"idl":99.7,"recv":0,"send":0,"writ":0.16,"used":515.44,"free":3532.66},{"epoch":26123209,"idl":99.68,"recv":0,"send":0,"writ":0.15,"used":515.6,"free":3532.5},{"epoch":26123210,"idl":99.66,"recv":0,"send":0,"writ":0.31,"used":515.36,"free":3532.76},{"epoch":26123211,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":515.34,"free":3532.78},{"epoch":26123212,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":516.05,"free":3532.06},{"epoch":26123213,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":515.54,"free":3532.56},{"epoch":26123214,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":515.52,"free":3532.58},{"epoch":26123215,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":515.77,"free":3532.35},{"epoch":26123216,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":515.75,"free":3532.37},{"epoch":26123217,"idl":99.52,"recv":0,"send":0,"writ":0.42,"used":515.83,"free":3532.28},{"epoch":26123218,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":515.2,"free":3532.9},{"epoch":26123219,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.26,"free":3532.84},{"epoch":26123220,"idl":99.41,"recv":0,"send":0,"writ":0.31,"used":515.62,"free":3532.5},{"epoch":26123221,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":515.6,"free":3532.52},{"epoch":26123222,"idl":99.55,"recv":0,"send":0,"writ":0.55,"used":515.81,"free":3532.3},{"epoch":26123223,"idl":99.55,"recv":0,"send":0,"writ":0.15,"used":515.31,"free":3532.8},{"epoch":26123224,"idl":99.71,"recv":0,"send":0,"writ":0.17,"used":515.28,"free":3532.83},{"epoch":26123225,"idl":99.58,"recv":0,"send":0,"writ":0.32,"used":515.51,"free":3532.6},{"epoch":26123226,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":515.5,"free":3532.61},{"epoch":26123227,"idl":99.64,"recv":0,"send":0,"writ":0.59,"used":515.9,"free":3532.21},{"epoch":26123228,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":515.7,"free":3532.4},{"epoch":26123229,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":515.45,"free":3532.63},{"epoch":26123230,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":515.8,"free":3532.3},{"epoch":26123231,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":515.85,"free":3532.24},{"epoch":26123232,"idl":99.6,"recv":0,"send":0,"writ":0.57,"used":516.5,"free":3531.58},{"epoch":26123233,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":515.8,"free":3532.28},{"epoch":26123234,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.78,"free":3532.31},{"epoch":26123235,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":515.55,"free":3532.56},{"epoch":26123236,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.51,"free":3532.59},{"epoch":26123237,"idl":99.75,"recv":0,"send":0,"writ":0.19,"used":515.49,"free":3532.61},{"epoch":26123238,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":515.58,"free":3532.51},{"epoch":26123239,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.21,"free":3532.88},{"epoch":26123240,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":515.21,"free":3532.89},{"epoch":26123241,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":515.23,"free":3532.87},{"epoch":26123242,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.35,"free":3532.75},{"epoch":26123243,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":515.69,"free":3532.4},{"epoch":26123244,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.31,"free":3532.78},{"epoch":26123245,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":515.08,"free":3533.02},{"epoch":26123246,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":515.04,"free":3533.06},{"epoch":26123247,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.03,"free":3533.07},{"epoch":26123248,"idl":99.64,"recv":0,"send":0,"writ":0.57,"used":515.96,"free":3532.13},{"epoch":26123249,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":515.72,"free":3532.36},{"epoch":26123250,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":515.47,"free":3532.63},{"epoch":26123251,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":515.45,"free":3532.65},{"epoch":26123252,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":515.31,"free":3532.79},{"epoch":26123253,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":515.47,"free":3532.62},{"epoch":26123254,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":514.62,"free":3533.47},{"epoch":26123255,"idl":99.62,"recv":0,"send":0,"writ":0.36,"used":516.09,"free":3532.03},{"epoch":26123256,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":516.08,"free":3532.03},{"epoch":26123257,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":516.08,"free":3532.04},{"epoch":26123258,"idl":99.7,"recv":0,"send":0,"writ":0.46,"used":515.4,"free":3532.7},{"epoch":26123259,"idl":99.67,"recv":0,"send":0,"writ":0.48,"used":515.72,"free":3532.36},{"epoch":26123260,"idl":99.68,"recv":0,"send":0,"writ":0.35,"used":515.52,"free":3532.58},{"epoch":26123261,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":515.5,"free":3532.6},{"epoch":26123262,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.47,"free":3532.61},{"epoch":26123263,"idl":99.71,"recv":0,"send":0,"writ":0.45,"used":515.72,"free":3532.36},{"epoch":26123264,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":515.19,"free":3532.89},{"epoch":26123265,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":515.6,"free":3532.5},{"epoch":26123266,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.6,"free":3532.49},{"epoch":26123267,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.76,"free":3533.33},{"epoch":26123268,"idl":99.64,"recv":0,"send":0,"writ":0.59,"used":515.14,"free":3532.94},{"epoch":26123269,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.28,"free":3532.79},{"epoch":26123270,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":515.05,"free":3533.04},{"epoch":26123271,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.02,"free":3533.07},{"epoch":26123272,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.01,"free":3533.08},{"epoch":26123273,"idl":99.72,"recv":0,"send":0,"writ":0.44,"used":515.21,"free":3532.87},{"epoch":26123274,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":513.97,"free":3534.1},{"epoch":26123275,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":514.95,"free":3533.15},{"epoch":26123276,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":514.95,"free":3533.14},{"epoch":26123277,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.03,"free":3533.05},{"epoch":26123278,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.1,"free":3532.98},{"epoch":26123279,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":515.57,"free":3532.51},{"epoch":26123280,"idl":99.48,"recv":0,"send":0,"writ":0.3,"used":514.42,"free":3533.68},{"epoch":26123281,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":514.31,"free":3533.78},{"epoch":26123282,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":514.29,"free":3533.79},{"epoch":26123283,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.27,"free":3533.81},{"epoch":26123284,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":515.01,"free":3533.07},{"epoch":26123285,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":514.51,"free":3533.59},{"epoch":26123286,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":514.49,"free":3533.6},{"epoch":26123287,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":514.46,"free":3533.63},{"epoch":26123288,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":514.45,"free":3533.63},{"epoch":26123289,"idl":99.44,"recv":0,"send":0,"writ":0.71,"used":515.57,"free":3532.48},{"epoch":26123290,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":515.13,"free":3532.94},{"epoch":26123291,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.1,"free":3532.97},{"epoch":26123292,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.06,"free":3533},{"epoch":26123293,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":515.04,"free":3533.01},{"epoch":26123294,"idl":99.6,"recv":0,"send":0,"writ":0.54,"used":515.27,"free":3532.82},{"epoch":26123295,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":514.54,"free":3533.57},{"epoch":26123296,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":514.52,"free":3533.59},{"epoch":26123297,"idl":99.74,"recv":0,"send":0,"writ":0.21,"used":514.49,"free":3533.61},{"epoch":26123298,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":514.47,"free":3533.63},{"epoch":26123299,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":515.35,"free":3532.74},{"epoch":26123300,"idl":99.74,"recv":0,"send":0,"writ":0.36,"used":515.02,"free":3533.08},{"epoch":26123301,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.12,"free":3532.98},{"epoch":26123302,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.09,"free":3533.01},{"epoch":26123303,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.08,"free":3533.01},{"epoch":26123304,"idl":99.64,"recv":0,"send":0,"writ":0.58,"used":515.41,"free":3532.68},{"epoch":26123305,"idl":99.69,"recv":0,"send":0,"writ":0.33,"used":515.29,"free":3532.81},{"epoch":26123306,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.27,"free":3532.83},{"epoch":26123307,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.25,"free":3532.85},{"epoch":26123308,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":515.23,"free":3532.86},{"epoch":26123309,"idl":99.69,"recv":0,"send":0,"writ":0.61,"used":515.56,"free":3532.52},{"epoch":26123310,"idl":99.6,"recv":0,"send":0,"writ":0.31,"used":514.24,"free":3533.86},{"epoch":26123311,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":514.19,"free":3533.9},{"epoch":26123312,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":514.09,"free":3534},{"epoch":26123313,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":513.86,"free":3534.23},{"epoch":26123314,"idl":99.65,"recv":0,"send":0,"writ":0.36,"used":514.32,"free":3533.76},{"epoch":26123315,"idl":99.71,"recv":0,"send":0,"writ":0.53,"used":515.07,"free":3533.03},{"epoch":26123316,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.05,"free":3533.04},{"epoch":26123317,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.03,"free":3533.06},{"epoch":26123318,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.01,"free":3533.07},{"epoch":26123319,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":515.22,"free":3532.83},{"epoch":26123320,"idl":99.44,"recv":0,"send":0,"writ":0.71,"used":515.71,"free":3532.37},{"epoch":26123321,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.21,"free":3532.86},{"epoch":26123322,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.19,"free":3532.88},{"epoch":26123323,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.19,"free":3532.88},{"epoch":26123324,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.16,"free":3532.92},{"epoch":26123325,"idl":99.48,"recv":0,"send":0,"writ":0.73,"used":514.74,"free":3533.35},{"epoch":26123326,"idl":99.72,"recv":0,"send":0,"writ":0.19,"used":514.1,"free":3533.99},{"epoch":26123327,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":514.07,"free":3534.01},{"epoch":26123328,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":514.05,"free":3534.03},{"epoch":26123329,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":514.03,"free":3534.05},{"epoch":26123330,"idl":99.66,"recv":0,"send":0,"writ":0.76,"used":515.77,"free":3532.31},{"epoch":26123331,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.48,"free":3532.6},{"epoch":26123332,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":515.46,"free":3532.61},{"epoch":26123333,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.44,"free":3532.63},{"epoch":26123334,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":515.42,"free":3532.64},{"epoch":26123335,"idl":99.59,"recv":0,"send":0,"writ":0.67,"used":515.63,"free":3532.45},{"epoch":26123336,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":515.15,"free":3532.92},{"epoch":26123337,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.26,"free":3532.81},{"epoch":26123338,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":515.33,"free":3532.73},{"epoch":26123339,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":515.33,"free":3532.73},{"epoch":26123340,"idl":93.36,"recv":0.41,"send":0.01,"writ":90.2,"used":530.07,"free":3518.74},{"epoch":26123341,"idl":99.68,"recv":0,"send":0,"writ":182.73,"used":517.63,"free":3530.37},{"epoch":26123342,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":517.61,"free":3530.38},{"epoch":26123343,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.77,"free":3530.22},{"epoch":26123344,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":517.79,"free":3530.19},{"epoch":26123345,"idl":99.45,"recv":0,"send":0,"writ":0.6,"used":517.12,"free":3530.9},{"epoch":26123346,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":515.62,"free":3532.43},{"epoch":26123347,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.59,"free":3532.46},{"epoch":26123348,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.56,"free":3532.48},{"epoch":26123349,"idl":99.57,"recv":0,"send":0,"writ":0.31,"used":514.58,"free":3533.43},{"epoch":26123350,"idl":99.57,"recv":0,"send":0,"writ":0.57,"used":514.24,"free":3533.79},{"epoch":26123351,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":514.77,"free":3533.29},{"epoch":26123352,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":514.75,"free":3533.31},{"epoch":26123353,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":514.83,"free":3533.23},{"epoch":26123354,"idl":99.41,"recv":0,"send":0,"writ":0.15,"used":514.9,"free":3533.16},{"epoch":26123355,"idl":99.57,"recv":0,"send":0,"writ":0.48,"used":516.15,"free":3531.92},{"epoch":26123356,"idl":99.9,"recv":0,"send":0,"writ":0.4,"used":515.37,"free":3532.7},{"epoch":26123357,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":515.34,"free":3532.72},{"epoch":26123358,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.33,"free":3532.73},{"epoch":26123359,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.3,"free":3532.75},{"epoch":26123360,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":515.32,"free":3532.76},{"epoch":26123361,"idl":99.59,"recv":0,"send":0,"writ":0.6,"used":515.89,"free":3532.18},{"epoch":26123362,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.5,"free":3532.57},{"epoch":26123363,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.48,"free":3532.59},{"epoch":26123364,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.63,"free":3532.43},{"epoch":26123365,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":515.89,"free":3532.19},{"epoch":26123366,"idl":99.74,"recv":0,"send":0.02,"writ":0.59,"used":516.04,"free":3532.03},{"epoch":26123367,"idl":99.9,"recv":0,"send":0.01,"writ":0.17,"used":515.57,"free":3532.5},{"epoch":26123368,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.55,"free":3532.51},{"epoch":26123369,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":515.52,"free":3532.53},{"epoch":26123370,"idl":99.68,"recv":0,"send":0,"writ":0.34,"used":515.53,"free":3532.54},{"epoch":26123371,"idl":99.64,"recv":0,"send":0,"writ":0.58,"used":515.86,"free":3532.21},{"epoch":26123372,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":515.3,"free":3532.76},{"epoch":26123373,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":514.98,"free":3533.08},{"epoch":26123374,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.07,"free":3532.98},{"epoch":26123375,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":515.88,"free":3532.19},{"epoch":26123376,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":516.11,"free":3531.95},{"epoch":26123377,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":515.59,"free":3532.47},{"epoch":26123378,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.58,"free":3532.48},{"epoch":26123379,"idl":99.61,"recv":0,"send":0,"writ":0.39,"used":515.32,"free":3532.71},{"epoch":26123380,"idl":99.7,"recv":0,"send":0,"writ":0.37,"used":515.84,"free":3532.21},{"epoch":26123381,"idl":99.68,"recv":0,"send":0,"writ":0.43,"used":516.22,"free":3531.82},{"epoch":26123382,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":514.51,"free":3533.53},{"epoch":26123383,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":514.49,"free":3533.54},{"epoch":26123384,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":514.47,"free":3533.57},{"epoch":26123385,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":515.29,"free":3532.77},{"epoch":26123386,"idl":99.67,"recv":0,"send":0,"writ":0.33,"used":515.84,"free":3532.22},{"epoch":26123387,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":515.85,"free":3532.2},{"epoch":26123388,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.83,"free":3532.22},{"epoch":26123389,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":515.81,"free":3532.23},{"epoch":26123390,"idl":99.6,"recv":0,"send":0,"writ":0.3,"used":515.82,"free":3532.24},{"epoch":26123391,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.8,"free":3532.27},{"epoch":26123392,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":515.92,"free":3532.13},{"epoch":26123393,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.51,"free":3532.54},{"epoch":26123394,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.49,"free":3532.56},{"epoch":26123395,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":515.74,"free":3532.33},{"epoch":26123396,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.71,"free":3532.36},{"epoch":26123397,"idl":99.62,"recv":0,"send":0,"writ":0.61,"used":515.95,"free":3532.1},{"epoch":26123398,"idl":99.82,"recv":0.03,"send":0.02,"writ":0.17,"used":515.54,"free":3532.5},{"epoch":26123399,"idl":99.83,"recv":0.02,"send":0.01,"writ":0.16,"used":515.53,"free":3532.51},{"epoch":26123400,"idl":99.6,"recv":0.03,"send":0.02,"writ":0.38,"used":515.79,"free":3532.26},{"epoch":26123401,"idl":99.71,"recv":0.04,"send":0.03,"writ":0.14,"used":515.79,"free":3532.25},{"epoch":26123402,"idl":99.67,"recv":0.03,"send":0.02,"writ":0.56,"used":516.07,"free":3531.97},{"epoch":26123403,"idl":99.73,"recv":0.05,"send":0.04,"writ":0.17,"used":515.52,"free":3532.52},{"epoch":26123404,"idl":99.49,"recv":0.05,"send":0.03,"writ":0.17,"used":515.53,"free":3532.5},{"epoch":26123405,"idl":99.54,"recv":0.02,"send":0.01,"writ":0.27,"used":515.07,"free":3532.98},{"epoch":26123406,"idl":99.69,"recv":0.03,"send":0.02,"writ":0.17,"used":515.04,"free":3533},{"epoch":26123407,"idl":99.57,"recv":0.02,"send":0.02,"writ":0.52,"used":515.9,"free":3532.14},{"epoch":26123408,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":515.72,"free":3532.31},{"epoch":26123409,"idl":99.59,"recv":0,"send":0,"writ":0.28,"used":515.71,"free":3532.31},{"epoch":26123410,"idl":99.68,"recv":0,"send":0,"writ":0.26,"used":515.68,"free":3532.36},{"epoch":26123411,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":515.77,"free":3532.27},{"epoch":26123412,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":515.94,"free":3532.1},{"epoch":26123413,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.06,"free":3532.97},{"epoch":26123414,"idl":99.29,"recv":0,"send":0.01,"writ":0.17,"used":515.03,"free":3532.99},{"epoch":26123415,"idl":99.61,"recv":0,"send":0,"writ":0.31,"used":515.53,"free":3532.5},{"epoch":26123416,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":514.74,"free":3533.29},{"epoch":26123417,"idl":99.5,"recv":0,"send":0,"writ":0.5,"used":515.23,"free":3532.79},{"epoch":26123418,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":515.19,"free":3532.83},{"epoch":26123419,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":515.15,"free":3532.86},{"epoch":26123420,"idl":99.71,"recv":0,"send":0,"writ":0.25,"used":515.18,"free":3532.85},{"epoch":26123421,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.34,"free":3532.68},{"epoch":26123422,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":515.97,"free":3532.05},{"epoch":26123423,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":514.83,"free":3533.18},{"epoch":26123424,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":514.82,"free":3533.2},{"epoch":26123425,"idl":99.45,"recv":0,"send":0,"writ":0.26,"used":515.06,"free":3532.97},{"epoch":26123426,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":515.05,"free":3532.98},{"epoch":26123427,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":515.02,"free":3533.01},{"epoch":26123428,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":515.36,"free":3532.66},{"epoch":26123429,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":514.98,"free":3533.06},{"epoch":26123430,"idl":99.75,"recv":0,"send":0,"writ":0.26,"used":514.75,"free":3533.3},{"epoch":26123431,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":514.71,"free":3533.33},{"epoch":26123432,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":514.62,"free":3533.42},{"epoch":26123433,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":515.32,"free":3532.72},{"epoch":26123434,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.1,"free":3532.93},{"epoch":26123435,"idl":99.69,"recv":0,"send":0,"writ":0.26,"used":515.09,"free":3532.96},{"epoch":26123436,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.08,"free":3532.96},{"epoch":26123437,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":515.06,"free":3532.98},{"epoch":26123438,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":515.59,"free":3532.44},{"epoch":26123439,"idl":99.56,"recv":0,"send":0,"writ":0.29,"used":515.28,"free":3532.73},{"epoch":26123440,"idl":99.75,"recv":0,"send":0,"writ":0.25,"used":515.04,"free":3533},{"epoch":26123441,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.01,"free":3533.02},{"epoch":26123442,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":514.99,"free":3533.04},{"epoch":26123443,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":515.48,"free":3532.54},{"epoch":26123444,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.2,"free":3532.82},{"epoch":26123445,"idl":99.7,"recv":0,"send":0,"writ":0.25,"used":514.48,"free":3533.56},{"epoch":26123446,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":514.62,"free":3533.41},{"epoch":26123447,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.61,"free":3533.42},{"epoch":26123448,"idl":99.65,"recv":0,"send":0,"writ":0.53,"used":515.12,"free":3532.9},{"epoch":26123449,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":514.56,"free":3533.46},{"epoch":26123450,"idl":99.75,"recv":0,"send":0,"writ":0.25,"used":515.29,"free":3532.74},{"epoch":26123451,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":515.27,"free":3532.76},{"epoch":26123452,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.25,"free":3532.78},{"epoch":26123453,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":515.58,"free":3532.44},{"epoch":26123454,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.21,"free":3532.8},{"epoch":26123455,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":515.03,"free":3533},{"epoch":26123456,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":514.95,"free":3533.08},{"epoch":26123457,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.04,"free":3532.99},{"epoch":26123458,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":515.52,"free":3532.5},{"epoch":26123459,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.32,"free":3532.7},{"epoch":26123460,"idl":99.52,"recv":0,"send":0,"writ":0.27,"used":515.33,"free":3532.7},{"epoch":26123461,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.3,"free":3532.73},{"epoch":26123462,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.28,"free":3532.74},{"epoch":26123463,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":515.59,"free":3532.43},{"epoch":26123464,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":515,"free":3533.02},{"epoch":26123465,"idl":99.65,"recv":0,"send":0,"writ":0.26,"used":514.28,"free":3533.74},{"epoch":26123466,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":514.23,"free":3533.79},{"epoch":26123467,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":514.21,"free":3533.8},{"epoch":26123468,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":514.19,"free":3533.82},{"epoch":26123469,"idl":99.25,"recv":0,"send":0,"writ":0.68,"used":514.36,"free":3533.63},{"epoch":26123470,"idl":99.69,"recv":0,"send":0,"writ":0.25,"used":514.59,"free":3533.42},{"epoch":26123471,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":514.57,"free":3533.43},{"epoch":26123472,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":514.55,"free":3533.45},{"epoch":26123473,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":514.52,"free":3533.47},{"epoch":26123474,"idl":99.45,"recv":0,"send":0,"writ":0.57,"used":515.65,"free":3532.34},{"epoch":26123475,"idl":99.48,"recv":0,"send":0,"writ":0.25,"used":514.28,"free":3533.73},{"epoch":26123476,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.24,"free":3533.76},{"epoch":26123477,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":514.21,"free":3533.79},{"epoch":26123478,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":514.2,"free":3533.79},{"epoch":26123479,"idl":99.63,"recv":0,"send":0,"writ":0.58,"used":514.36,"free":3533.63},{"epoch":26123480,"idl":99.69,"recv":0,"send":0,"writ":0.25,"used":515.28,"free":3532.73},{"epoch":26123481,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.32,"free":3532.68},{"epoch":26123482,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.3,"free":3532.7},{"epoch":26123483,"idl":99.7,"recv":0,"send":0,"writ":0.15,"used":515.28,"free":3532.71},{"epoch":26123484,"idl":99.54,"recv":0,"send":0,"writ":0.57,"used":515.61,"free":3532.38},{"epoch":26123485,"idl":99.59,"recv":0,"send":0,"writ":0.27,"used":514.54,"free":3533.47},{"epoch":26123486,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":514.49,"free":3533.51},{"epoch":26123487,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.49,"free":3533.51},{"epoch":26123488,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":514.45,"free":3533.54},{"epoch":26123489,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":515.61,"free":3532.38},{"epoch":26123490,"idl":99.52,"recv":0,"send":0,"writ":0.41,"used":515.42,"free":3532.59},{"epoch":26123491,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":515.51,"free":3532.49},{"epoch":26123492,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":515.49,"free":3532.51},{"epoch":26123493,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.3,"free":3532.7},{"epoch":26123494,"idl":99.69,"recv":0,"send":0,"writ":0.52,"used":515.54,"free":3532.45},{"epoch":26123495,"idl":99.63,"recv":0,"send":0,"writ":0.34,"used":513.83,"free":3534.18},{"epoch":26123496,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":513.78,"free":3534.22},{"epoch":26123497,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":513.77,"free":3534.23},{"epoch":26123498,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":513.74,"free":3534.25},{"epoch":26123499,"idl":99.48,"recv":0,"send":0,"writ":0.56,"used":515.34,"free":3532.63},{"epoch":26123500,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":515.7,"free":3532.28},{"epoch":26123501,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":515.67,"free":3532.31},{"epoch":26123502,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":515.76,"free":3532.22},{"epoch":26123503,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":515.84,"free":3532.13},{"epoch":26123504,"idl":99.65,"recv":0,"send":0,"writ":0.43,"used":516.16,"free":3531.81},{"epoch":26123505,"idl":99.65,"recv":0,"send":0,"writ":0.45,"used":515.57,"free":3532.41},{"epoch":26123506,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.55,"free":3532.42},{"epoch":26123507,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":515.53,"free":3532.44},{"epoch":26123508,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":515.51,"free":3532.46},{"epoch":26123509,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":515.49,"free":3532.49},{"epoch":26123510,"idl":99.51,"recv":0,"send":0,"writ":0.69,"used":515.62,"free":3532.38},{"epoch":26123511,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.23,"free":3532.77},{"epoch":26123512,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.21,"free":3532.78},{"epoch":26123513,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":515.19,"free":3532.8},{"epoch":26123514,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":515.24,"free":3532.74},{"epoch":26123515,"idl":99.56,"recv":0,"send":0,"writ":0.7,"used":516.23,"free":3531.77},{"epoch":26123516,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":515.59,"free":3532.42},{"epoch":26123517,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.57,"free":3532.44},{"epoch":26123518,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.55,"free":3532.46},{"epoch":26123519,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":515.53,"free":3532.47},{"epoch":26123520,"idl":99.28,"recv":0,"send":0,"writ":0.69,"used":515.63,"free":3532.39},{"epoch":26123521,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":515.51,"free":3532.5},{"epoch":26123522,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":515.47,"free":3532.54},{"epoch":26123523,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":515.45,"free":3532.55},{"epoch":26123524,"idl":99.76,"recv":0,"send":0,"writ":0.19,"used":515.43,"free":3532.57},{"epoch":26123525,"idl":99.55,"recv":0,"send":0,"writ":0.53,"used":516.13,"free":3531.89},{"epoch":26123526,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":515.84,"free":3532.18},{"epoch":26123527,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.81,"free":3532.2},{"epoch":26123528,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.79,"free":3532.21},{"epoch":26123529,"idl":99.63,"recv":0,"send":0,"writ":0.29,"used":515.54,"free":3532.44},{"epoch":26123530,"idl":99.5,"recv":0,"send":0.01,"writ":0.69,"used":516.01,"free":3531.99},{"epoch":26123531,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":515.48,"free":3532.52},{"epoch":26123532,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":515.45,"free":3532.54},{"epoch":26123533,"idl":99.68,"recv":0,"send":0,"writ":0.17,"used":515.43,"free":3532.55},{"epoch":26123534,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":515.41,"free":3532.57},{"epoch":26123535,"idl":99.38,"recv":0,"send":0,"writ":0.56,"used":515.45,"free":3532.54},{"epoch":26123536,"idl":99.59,"recv":0,"send":0,"writ":0.31,"used":515.58,"free":3532.41},{"epoch":26123537,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":515.56,"free":3532.43},{"epoch":26123538,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":515.53,"free":3532.45},{"epoch":26123539,"idl":99.68,"recv":0,"send":0,"writ":0.15,"used":515.52,"free":3532.46},{"epoch":26123540,"idl":99.48,"recv":0,"send":0,"writ":0.44,"used":516.28,"free":3531.72},{"epoch":26123541,"idl":99.85,"recv":0,"send":0,"writ":0.43,"used":515.75,"free":3532.24},{"epoch":26123542,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.72,"free":3532.27},{"epoch":26123543,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":515.71,"free":3532.27},{"epoch":26123544,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":515.68,"free":3532.3},{"epoch":26123545,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":515.67,"free":3532.32},{"epoch":26123546,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":516.09,"free":3531.9},{"epoch":26123547,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.83,"free":3532.15},{"epoch":26123548,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.8,"free":3532.18},{"epoch":26123549,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":515.79,"free":3532.18},{"epoch":26123550,"idl":99.57,"recv":0,"send":0,"writ":0.27,"used":516.03,"free":3531.96},{"epoch":26123551,"idl":99.44,"recv":0,"send":0,"writ":0.56,"used":515.47,"free":3532.51},{"epoch":26123552,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":515.14,"free":3532.84},{"epoch":26123553,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.49,"free":3532.49},{"epoch":26123554,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.47,"free":3532.51},{"epoch":26123555,"idl":99.66,"recv":0,"send":0,"writ":0.27,"used":515.47,"free":3532.52},{"epoch":26123556,"idl":99.58,"recv":0,"send":0,"writ":0.61,"used":516.31,"free":3531.67},{"epoch":26123557,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":515.67,"free":3532.3},{"epoch":26123558,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.65,"free":3532.32},{"epoch":26123559,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":515.78,"free":3532.17},{"epoch":26123560,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":515.85,"free":3532.11},{"epoch":26123561,"idl":99.71,"recv":0,"send":0,"writ":0.53,"used":516.15,"free":3531.82},{"epoch":26123562,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":515.77,"free":3532.18},{"epoch":26123563,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.76,"free":3532.2},{"epoch":26123564,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.72,"free":3532.23},{"epoch":26123565,"idl":99.59,"recv":0,"send":0,"writ":0.29,"used":514.55,"free":3533.42},{"epoch":26123566,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":514.62,"free":3533.34},{"epoch":26123567,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.21,"free":3533.74},{"epoch":26123568,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":514.18,"free":3533.77},{"epoch":26123569,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":514.16,"free":3533.78},{"epoch":26123570,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":514.51,"free":3533.45},{"epoch":26123571,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":515.12,"free":3532.84},{"epoch":26123572,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.03,"free":3532.92},{"epoch":26123573,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.01,"free":3532.93},{"epoch":26123574,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":514.98,"free":3532.96},{"epoch":26123575,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":514.74,"free":3533.22},{"epoch":26123576,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":515.19,"free":3532.77},{"epoch":26123577,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.18,"free":3532.78},{"epoch":26123578,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.15,"free":3532.8},{"epoch":26123579,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.13,"free":3532.81},{"epoch":26123580,"idl":99.56,"recv":0,"send":0,"writ":0.25,"used":515.09,"free":3532.87},{"epoch":26123581,"idl":99.62,"recv":0,"send":0,"writ":0.36,"used":515.59,"free":3532.37},{"epoch":26123582,"idl":99.71,"recv":0,"send":0,"writ":0.4,"used":515.32,"free":3532.66},{"epoch":26123583,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":515.3,"free":3532.67},{"epoch":26123584,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":515.28,"free":3532.68},{"epoch":26123585,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":515.04,"free":3532.95},{"epoch":26123586,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.02,"free":3532.96},{"epoch":26123587,"idl":99.59,"recv":0,"send":0,"writ":0.55,"used":515.56,"free":3532.41},{"epoch":26123588,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.21,"free":3532.75},{"epoch":26123589,"idl":99.51,"recv":0,"send":0,"writ":0.31,"used":515.45,"free":3532.49},{"epoch":26123590,"idl":99.62,"recv":0,"send":0,"writ":0.28,"used":515.19,"free":3532.77},{"epoch":26123591,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.17,"free":3532.78},{"epoch":26123592,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":515.66,"free":3532.28},{"epoch":26123593,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":515.32,"free":3532.63},{"epoch":26123594,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":515.28,"free":3532.65},{"epoch":26123595,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":514.82,"free":3533.13},{"epoch":26123596,"idl":97.27,"recv":0,"send":0,"writ":0.14,"used":514.78,"free":3533.18},{"epoch":26123597,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":515.76,"free":3532.19},{"epoch":26123598,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.23,"free":3532.72},{"epoch":26123599,"idl":95.52,"recv":0.22,"send":0.01,"writ":142.21,"used":525.39,"free":3523.38},{"epoch":26123600,"idl":99.7,"recv":0,"send":0,"writ":0.38,"used":516.66,"free":3530.59},{"epoch":26123601,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.6,"free":3530.64},{"epoch":26123602,"idl":99.7,"recv":0,"send":0,"writ":0.49,"used":517.45,"free":3529.79},{"epoch":26123603,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":517.56,"free":3529.68},{"epoch":26123604,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516,"free":3531.27},{"epoch":26123605,"idl":99.47,"recv":0,"send":0,"writ":0.27,"used":514.42,"free":3532.89},{"epoch":26123606,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":514.37,"free":3532.94},{"epoch":26123607,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":515.11,"free":3532.2},{"epoch":26123608,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":515.07,"free":3532.23},{"epoch":26123609,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":515.19,"free":3532.11},{"epoch":26123610,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":514.99,"free":3532.35},{"epoch":26123611,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":514.96,"free":3532.37},{"epoch":26123612,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":515.4,"free":3531.93},{"epoch":26123613,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":514.91,"free":3532.42},{"epoch":26123614,"idl":99.77,"recv":0,"send":0.02,"writ":0.17,"used":514.86,"free":3532.46},{"epoch":26123615,"idl":99.66,"recv":0,"send":0,"writ":0.28,"used":515.1,"free":3532.24},{"epoch":26123616,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":515.08,"free":3532.25},{"epoch":26123617,"idl":99.63,"recv":0,"send":0,"writ":0.4,"used":515.69,"free":3531.64},{"epoch":26123618,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":515.21,"free":3532.11},{"epoch":26123619,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":515.67,"free":3531.63},{"epoch":26123620,"idl":99.66,"recv":0,"send":0,"writ":0.27,"used":515.42,"free":3531.89},{"epoch":26123621,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.39,"free":3531.92},{"epoch":26123622,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":515.72,"free":3531.59},{"epoch":26123623,"idl":99.85,"recv":0,"send":0,"writ":0.39,"used":515.35,"free":3531.95},{"epoch":26123624,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.32,"free":3531.97},{"epoch":26123625,"idl":99.65,"recv":0,"send":0,"writ":0.31,"used":515.16,"free":3532.15},{"epoch":26123626,"idl":99.79,"recv":0,"send":0,"writ":0.39,"used":514.83,"free":3532.47},{"epoch":26123627,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":515.35,"free":3531.96},{"epoch":26123628,"idl":99.68,"recv":0,"send":0,"writ":0.38,"used":515.49,"free":3531.81},{"epoch":26123629,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.46,"free":3531.83},{"epoch":26123630,"idl":99.55,"recv":0,"send":0,"writ":0.26,"used":514.99,"free":3532.32},{"epoch":26123631,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":514.95,"free":3532.35},{"epoch":26123632,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":514.93,"free":3532.37},{"epoch":26123633,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":516.33,"free":3530.97},{"epoch":26123634,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":515.63,"free":3531.68},{"epoch":26123635,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":515.65,"free":3531.68},{"epoch":26123636,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":515.61,"free":3531.72},{"epoch":26123637,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.59,"free":3531.74},{"epoch":26123638,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":516,"free":3531.31},{"epoch":26123639,"idl":99.72,"recv":0,"send":0,"writ":0.17,"used":515.7,"free":3531.61},{"epoch":26123640,"idl":99.46,"recv":0,"send":0,"writ":0.28,"used":514.51,"free":3532.82},{"epoch":26123641,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":514.47,"free":3532.86},{"epoch":26123642,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":514.45,"free":3532.87},{"epoch":26123643,"idl":99.56,"recv":0,"send":0,"writ":0.55,"used":515.44,"free":3531.88},{"epoch":26123644,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.39,"free":3531.92},{"epoch":26123645,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":515.4,"free":3531.93},{"epoch":26123646,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.38,"free":3531.95},{"epoch":26123647,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.36,"free":3531.96},{"epoch":26123648,"idl":99.51,"recv":0,"send":0,"writ":0.5,"used":515.8,"free":3531.52},{"epoch":26123649,"idl":99.49,"recv":0,"send":0,"writ":0.34,"used":515.56,"free":3531.73},{"epoch":26123650,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":514.79,"free":3532.52},{"epoch":26123651,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":514.73,"free":3532.58},{"epoch":26123652,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":514.71,"free":3532.59},{"epoch":26123653,"idl":99.54,"recv":0,"send":0,"writ":0.54,"used":515.52,"free":3531.77},{"epoch":26123654,"idl":99.63,"recv":0,"send":0,"writ":0.14,"used":515.39,"free":3531.91},{"epoch":26123655,"idl":99.48,"recv":0,"send":0,"writ":0.3,"used":514.95,"free":3532.37},{"epoch":26123656,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":514.88,"free":3532.44},{"epoch":26123657,"idl":99.59,"recv":0,"send":0,"writ":0.2,"used":514.86,"free":3532.46},{"epoch":26123658,"idl":99.45,"recv":0,"send":0,"writ":0.41,"used":515.27,"free":3532.04},{"epoch":26123659,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":515.31,"free":3532},{"epoch":26123660,"idl":99.38,"recv":0,"send":0,"writ":0.28,"used":514.6,"free":3532.73},{"epoch":26123661,"idl":99.62,"recv":0,"send":0,"writ":0.17,"used":514.69,"free":3532.63},{"epoch":26123662,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":514.72,"free":3532.6},{"epoch":26123663,"idl":99.3,"recv":0,"send":0,"writ":0.56,"used":515.2,"free":3532.11},{"epoch":26123664,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":515.65,"free":3531.65},{"epoch":26123665,"idl":99.59,"recv":0,"send":0,"writ":0.31,"used":514.46,"free":3532.86},{"epoch":26123666,"idl":99.61,"recv":0,"send":0,"writ":0.16,"used":514.4,"free":3532.92},{"epoch":26123667,"idl":99.49,"recv":0,"send":0,"writ":0.14,"used":514.37,"free":3532.94},{"epoch":26123668,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":514.36,"free":3532.95},{"epoch":26123669,"idl":99.59,"recv":0,"send":0,"writ":0.55,"used":516.26,"free":3531.05},{"epoch":26123670,"idl":99.58,"recv":0,"send":0,"writ":0.29,"used":515.58,"free":3531.74},{"epoch":26123671,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":515.55,"free":3531.77},{"epoch":26123672,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":515.61,"free":3531.7},{"epoch":26123673,"idl":99.77,"recv":0,"send":0,"writ":0.17,"used":515.45,"free":3531.86},{"epoch":26123674,"idl":99.63,"recv":0,"send":0,"writ":0.58,"used":516.38,"free":3530.92},{"epoch":26123675,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":515.68,"free":3531.64},{"epoch":26123676,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":515.66,"free":3531.66},{"epoch":26123677,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.64,"free":3531.67},{"epoch":26123678,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":515.62,"free":3531.69},{"epoch":26123679,"idl":99.38,"recv":0,"send":0,"writ":0.7,"used":515.68,"free":3531.59},{"epoch":26123680,"idl":99.61,"recv":0,"send":0,"writ":0.31,"used":515.57,"free":3531.72},{"epoch":26123681,"idl":99.66,"recv":0,"send":0,"writ":0.15,"used":515.55,"free":3531.74},{"epoch":26123682,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":515.53,"free":3531.76},{"epoch":26123683,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":515.59,"free":3531.69},{"epoch":26123684,"idl":99.66,"recv":0,"send":0,"writ":0.57,"used":516.17,"free":3531.1},{"epoch":26123685,"idl":99.65,"recv":0,"send":0,"writ":0.37,"used":515.95,"free":3531.34},{"epoch":26123686,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":515.89,"free":3531.4},{"epoch":26123687,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":515.86,"free":3531.42},{"epoch":26123688,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":515.84,"free":3531.43},{"epoch":26123689,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":516.07,"free":3531.21},{"epoch":26123690,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":515.82,"free":3531.47},{"epoch":26123691,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.81,"free":3531.48},{"epoch":26123692,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":515.79,"free":3531.5},{"epoch":26123693,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.76,"free":3531.51},{"epoch":26123694,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":516.25,"free":3531.02},{"epoch":26123695,"idl":99.65,"recv":0,"send":0,"writ":0.33,"used":515.69,"free":3531.6},{"epoch":26123696,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":515.67,"free":3531.62},{"epoch":26123697,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":515.63,"free":3531.65},{"epoch":26123698,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":515.61,"free":3531.66},{"epoch":26123699,"idl":99.65,"recv":0,"send":0,"writ":0.39,"used":515.97,"free":3531.29},{"epoch":26123700,"idl":99.58,"recv":0.01,"send":0.01,"writ":0.52,"used":516.14,"free":3531.14},{"epoch":26123701,"idl":99.77,"recv":0,"send":0,"writ":0.17,"used":516.19,"free":3531.09},{"epoch":26123702,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.17,"free":3531.11},{"epoch":26123703,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":516.15,"free":3531.13},{"epoch":26123704,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":516.13,"free":3531.14},{"epoch":26123705,"idl":96.15,"recv":0.02,"send":0.01,"writ":78.85,"used":525.8,"free":3523.71},{"epoch":26123706,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":518.09,"free":3529.44},{"epoch":26123707,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":518.16,"free":3529.37},{"epoch":26123708,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":518.13,"free":3529.39},{"epoch":26123709,"idl":99.56,"recv":0,"send":0,"writ":0.29,"used":518.37,"free":3529.13},{"epoch":26123710,"idl":99.51,"recv":0,"send":0,"writ":0.73,"used":516.83,"free":3530.72},{"epoch":26123711,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":515.93,"free":3531.62},{"epoch":26123712,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":515.92,"free":3531.63},{"epoch":26123713,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.88,"free":3531.66},{"epoch":26123714,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":515.86,"free":3531.68},{"epoch":26123715,"idl":99.46,"recv":0,"send":0,"writ":0.72,"used":515.85,"free":3531.72},{"epoch":26123716,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":515.85,"free":3531.73},{"epoch":26123717,"idl":99.72,"recv":0,"send":0,"writ":0.19,"used":515.02,"free":3532.56},{"epoch":26123718,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.01,"free":3532.57},{"epoch":26123719,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":514.99,"free":3532.59},{"epoch":26123720,"idl":99.44,"recv":0,"send":0,"writ":0.8,"used":515.59,"free":3532.01},{"epoch":26123721,"idl":99.75,"recv":0,"send":0,"writ":0.13,"used":515.22,"free":3532.39},{"epoch":26123722,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":515.2,"free":3532.4},{"epoch":26123723,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.18,"free":3532.42},{"epoch":26123724,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":515.16,"free":3532.43},{"epoch":26123725,"idl":98.23,"recv":0,"send":0,"writ":16.04,"used":517.36,"free":3530.68},{"epoch":26123726,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":515.11,"free":3532.47},{"epoch":26123727,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":515.1,"free":3532.48},{"epoch":26123728,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":515.08,"free":3532.49},{"epoch":26123729,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":515.16,"free":3532.4},{"epoch":26123730,"idl":99.5,"recv":0,"send":0,"writ":0.56,"used":515.71,"free":3531.87},{"epoch":26123731,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":515.22,"free":3532.36},{"epoch":26123732,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":515.18,"free":3532.39},{"epoch":26123733,"idl":92.82,"recv":0,"send":0,"writ":31.47,"used":530.97,"free":3507.59},{"epoch":26123734,"idl":99.77,"recv":0,"send":0,"writ":34.36,"used":517.98,"free":3527.99},{"epoch":26123735,"idl":99.39,"recv":0,"send":0,"writ":0.46,"used":517.24,"free":3528.77},{"epoch":26123736,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":517.9,"free":3528.11},{"epoch":26123737,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":517.88,"free":3528.12},{"epoch":26123738,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":517.65,"free":3528.36},{"epoch":26123739,"idl":99.42,"recv":0,"send":0,"writ":0.31,"used":514.66,"free":3531.38},{"epoch":26123740,"idl":99.5,"recv":0,"send":0,"writ":0.47,"used":515.59,"free":3530.47},{"epoch":26123741,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":515.3,"free":3530.76},{"epoch":26123742,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":515.29,"free":3530.76},{"epoch":26123743,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":515.27,"free":3530.78},{"epoch":26123744,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":515.24,"free":3530.84},{"epoch":26123745,"idl":99.58,"recv":0,"send":0,"writ":0.36,"used":514.29,"free":3531.8},{"epoch":26123746,"idl":99.58,"recv":0,"send":0,"writ":0.59,"used":515.68,"free":3530.41},{"epoch":26123747,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":515.2,"free":3530.89},{"epoch":26123748,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":515.18,"free":3530.9},{"epoch":26123749,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":515.16,"free":3530.92},{"epoch":26123750,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":515.4,"free":3530.69},{"epoch":26123751,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":515.11,"free":3530.99},{"epoch":26123752,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":514.57,"free":3531.51},{"epoch":26123753,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":514.55,"free":3531.53},{"epoch":26123754,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":514.53,"free":3531.54},{"epoch":26123755,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":515.01,"free":3531.08},{"epoch":26123756,"idl":99.61,"recv":0,"send":0,"writ":0.58,"used":515.52,"free":3530.56},{"epoch":26123757,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":515.21,"free":3530.87},{"epoch":26123758,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":515.19,"free":3530.89},{"epoch":26123759,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.17,"free":3530.9},{"epoch":26123760,"idl":99.57,"recv":0,"send":0,"writ":0.29,"used":515.42,"free":3530.67},{"epoch":26123761,"idl":99.61,"recv":0,"send":0,"writ":0.54,"used":516.16,"free":3529.92},{"epoch":26123762,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.49,"free":3530.6},{"epoch":26123763,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":515.53,"free":3530.54},{"epoch":26123764,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":515.51,"free":3530.56},{"epoch":26123765,"idl":99.6,"recv":0,"send":0,"writ":0.33,"used":515.28,"free":3530.81},{"epoch":26123766,"idl":99.53,"recv":0,"send":0,"writ":0.42,"used":515.4,"free":3530.69},{"epoch":26123767,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":514.74,"free":3531.36},{"epoch":26123768,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":514.71,"free":3531.38},{"epoch":26123769,"idl":99.53,"recv":0,"send":0,"writ":0.29,"used":515.22,"free":3530.85},{"epoch":26123770,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":515.23,"free":3530.86},{"epoch":26123771,"idl":99.65,"recv":0,"send":0,"writ":0.51,"used":515.69,"free":3530.39},{"epoch":26123772,"idl":99.75,"recv":0.02,"send":0.85,"writ":0.27,"used":515.69,"free":3530.38},{"epoch":26123773,"idl":99.68,"recv":0,"send":0.01,"writ":0.19,"used":515.78,"free":3530.29},{"epoch":26123774,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":515.75,"free":3530.31},{"epoch":26123775,"idl":99.6,"recv":0,"send":0,"writ":0.31,"used":514.79,"free":3531.29},{"epoch":26123776,"idl":99.59,"recv":0,"send":0,"writ":0.48,"used":515.23,"free":3530.84},{"epoch":26123777,"idl":99.76,"recv":0,"send":0,"writ":0.24,"used":515.43,"free":3530.63},{"epoch":26123778,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":515.42,"free":3530.64},{"epoch":26123779,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":515.39,"free":3530.67},{"epoch":26123780,"idl":99.6,"recv":0,"send":0,"writ":0.29,"used":514.47,"free":3531.61},{"epoch":26123781,"idl":99.63,"recv":0,"send":0,"writ":0.32,"used":515.26,"free":3530.81},{"epoch":26123782,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":515.04,"free":3531.03},{"epoch":26123783,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":515.02,"free":3531.04},{"epoch":26123784,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515,"free":3531.06},{"epoch":26123785,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":514.76,"free":3531.31},{"epoch":26123786,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":514.74,"free":3531.33},{"epoch":26123787,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":515.5,"free":3530.57},{"epoch":26123788,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.2,"free":3530.87},{"epoch":26123789,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":515.17,"free":3530.89},{"epoch":26123790,"idl":99.68,"recv":0,"send":0,"writ":0.37,"used":514.95,"free":3531.13},{"epoch":26123791,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.92,"free":3531.15},{"epoch":26123792,"idl":99.52,"recv":0,"send":0,"writ":0.58,"used":515.69,"free":3530.38},{"epoch":26123793,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.13,"free":3530.94},{"epoch":26123794,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.28,"free":3530.78},{"epoch":26123795,"idl":99.65,"recv":0,"send":0,"writ":0.29,"used":515.77,"free":3530.31},{"epoch":26123796,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":515.76,"free":3530.31},{"epoch":26123797,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":515.92,"free":3530.15},{"epoch":26123798,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":515.47,"free":3530.59},{"epoch":26123799,"idl":99.57,"recv":0,"send":0,"writ":0.3,"used":515.2,"free":3530.84},{"epoch":26123800,"idl":99.62,"recv":0,"send":0,"writ":0.33,"used":515.2,"free":3530.86},{"epoch":26123801,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":515.18,"free":3530.87},{"epoch":26123802,"idl":99.55,"recv":0,"send":0,"writ":0.54,"used":515.87,"free":3530.17},{"epoch":26123803,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":515.14,"free":3530.9},{"epoch":26123804,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":515.11,"free":3530.92},{"epoch":26123805,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":514.75,"free":3531.3},{"epoch":26123806,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":514.78,"free":3531.27},{"epoch":26123807,"idl":99.57,"recv":0,"send":0,"writ":0.58,"used":514.97,"free":3531.07},{"epoch":26123808,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":514.25,"free":3531.79},{"epoch":26123809,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":514.24,"free":3531.8},{"epoch":26123810,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":514.52,"free":3531.53},{"epoch":26123811,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":514.46,"free":3531.6},{"epoch":26123812,"idl":99.68,"recv":0,"send":0,"writ":0.61,"used":515.02,"free":3531.05},{"epoch":26123813,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":515.64,"free":3530.41},{"epoch":26123814,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.63,"free":3530.43},{"epoch":26123815,"idl":99.65,"recv":0,"send":0,"writ":0.31,"used":514.44,"free":3531.63},{"epoch":26123816,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":514.47,"free":3531.59},{"epoch":26123817,"idl":99.67,"recv":0,"send":0,"writ":0.43,"used":515.11,"free":3530.95},{"epoch":26123818,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":515.74,"free":3530.32},{"epoch":26123819,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.72,"free":3530.33},{"epoch":26123820,"idl":99.35,"recv":0,"send":0,"writ":0.29,"used":514.53,"free":3531.54},{"epoch":26123821,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":514.47,"free":3531.59},{"epoch":26123822,"idl":99.73,"recv":0,"send":0.01,"writ":0.16,"used":514.71,"free":3531.35},{"epoch":26123823,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":515.24,"free":3530.81},{"epoch":26123824,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":514.88,"free":3531.16},{"epoch":26123825,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":515.84,"free":3530.22},{"epoch":26123826,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.94,"free":3530.12},{"epoch":26123827,"idl":98.56,"recv":0,"send":0,"writ":0.15,"used":516,"free":3530.05},{"epoch":26123828,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":516.14,"free":3529.91},{"epoch":26123829,"idl":99.57,"recv":0,"send":0,"writ":0.29,"used":515.96,"free":3530.07},{"epoch":26123830,"idl":99.66,"recv":0,"send":0,"writ":0.36,"used":515.24,"free":3530.81},{"epoch":26123831,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.2,"free":3530.84},{"epoch":26123832,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.18,"free":3530.86},{"epoch":26123833,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":515.93,"free":3530.1},{"epoch":26123834,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.63,"free":3530.41},{"epoch":26123835,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":515.64,"free":3530.43},{"epoch":26123836,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":515.62,"free":3530.44},{"epoch":26123837,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":515.84,"free":3530.21},{"epoch":26123838,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":516.15,"free":3529.9},{"epoch":26123839,"idl":97.29,"recv":0,"send":0,"writ":0.14,"used":515.78,"free":3530.27},{"epoch":26123840,"idl":99.7,"recv":0,"send":0,"writ":0.27,"used":515.78,"free":3530.29},{"epoch":26123841,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.76,"free":3530.3},{"epoch":26123842,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.74,"free":3530.32},{"epoch":26123843,"idl":99.62,"recv":0,"send":0,"writ":0.57,"used":516.43,"free":3529.62},{"epoch":26123844,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.95,"free":3530.1},{"epoch":26123845,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":514.98,"free":3531.08},{"epoch":26123846,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":514.94,"free":3531.12},{"epoch":26123847,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":514.92,"free":3531.13},{"epoch":26123848,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":515.57,"free":3530.48},{"epoch":26123849,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":515.86,"free":3530.18},{"epoch":26123850,"idl":99.57,"recv":0,"send":0,"writ":0.3,"used":514.69,"free":3531.37},{"epoch":26123851,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":514.78,"free":3531.27},{"epoch":26123852,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":514.78,"free":3531.27},{"epoch":26123853,"idl":99.7,"recv":0,"send":0,"writ":0.44,"used":515.58,"free":3530.46},{"epoch":26123854,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":516.21,"free":3529.83},{"epoch":26123855,"idl":99.6,"recv":0,"send":0,"writ":0.34,"used":515.74,"free":3530.31},{"epoch":26123856,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":515.69,"free":3530.36},{"epoch":26123857,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":515.69,"free":3530.36},{"epoch":26123858,"idl":99.67,"recv":0,"send":0,"writ":0.4,"used":516.03,"free":3530.01},{"epoch":26123859,"idl":99.6,"recv":0,"send":0,"writ":0.42,"used":515.64,"free":3530.38},{"epoch":26123860,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":515.87,"free":3530.16},{"epoch":26123861,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.85,"free":3530.18},{"epoch":26123862,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.94,"free":3530.08},{"epoch":26123863,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":516,"free":3530.02},{"epoch":26123864,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":516.41,"free":3529.6},{"epoch":26123865,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":516.23,"free":3529.8},{"epoch":26123866,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.2,"free":3529.82},{"epoch":26123867,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.8,"free":3530.22},{"epoch":26123868,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":515.18,"free":3530.84},{"epoch":26123869,"idl":99.62,"recv":0,"send":0,"writ":0.57,"used":515.51,"free":3530.5},{"epoch":26123870,"idl":99.6,"recv":0,"send":0,"writ":0.27,"used":514.91,"free":3531.11},{"epoch":26123871,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":514.89,"free":3531.13},{"epoch":26123872,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":514.87,"free":3531.15},{"epoch":26123873,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":514.92,"free":3531.09},{"epoch":26123874,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":515.36,"free":3530.65},{"epoch":26123875,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":514.15,"free":3531.88},{"epoch":26123876,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":514.01,"free":3532.02},{"epoch":26123877,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":513.98,"free":3532.04},{"epoch":26123878,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":513.96,"free":3532.06},{"epoch":26123879,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":515.4,"free":3530.61},{"epoch":26123880,"idl":99.53,"recv":0,"send":0,"writ":0.3,"used":515.21,"free":3530.82},{"epoch":26123881,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.15,"free":3530.87},{"epoch":26123882,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.13,"free":3530.89},{"epoch":26123883,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.11,"free":3530.9},{"epoch":26123884,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":515.45,"free":3530.55},{"epoch":26123885,"idl":99.56,"recv":0,"send":0,"writ":0.3,"used":514.24,"free":3531.78},{"epoch":26123886,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":514.26,"free":3531.75},{"epoch":26123887,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.24,"free":3531.76},{"epoch":26123888,"idl":97.61,"recv":0,"send":0,"writ":0.16,"used":514.21,"free":3531.79},{"epoch":26123889,"idl":99.62,"recv":0,"send":0,"writ":0.54,"used":515.76,"free":3530.21},{"epoch":26123890,"idl":99.7,"recv":0,"send":0,"writ":0.45,"used":515.19,"free":3530.81},{"epoch":26123891,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":515.16,"free":3530.82},{"epoch":26123892,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":515.13,"free":3530.85},{"epoch":26123893,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":515.12,"free":3530.86},{"epoch":26123894,"idl":99.74,"recv":0,"send":0,"writ":0.5,"used":515.44,"free":3530.53},{"epoch":26123895,"idl":99.7,"recv":0,"send":0,"writ":0.37,"used":515.33,"free":3530.65},{"epoch":26123896,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.31,"free":3530.67},{"epoch":26123897,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":515.16,"free":3530.82},{"epoch":26123898,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.17,"free":3530.81},{"epoch":26123899,"idl":99.68,"recv":0,"send":0,"writ":0.42,"used":515.65,"free":3530.32},{"epoch":26123900,"idl":99.64,"recv":0,"send":0,"writ":0.46,"used":515.39,"free":3530.6},{"epoch":26123901,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":515.37,"free":3530.61},{"epoch":26123902,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.35,"free":3530.62},{"epoch":26123903,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":515.33,"free":3530.64},{"epoch":26123904,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":515.31,"free":3530.65},{"epoch":26123905,"idl":99.53,"recv":0,"send":0,"writ":0.7,"used":515.68,"free":3530.31},{"epoch":26123906,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.42,"free":3530.56},{"epoch":26123907,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.46,"free":3530.52},{"epoch":26123908,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.44,"free":3530.53},{"epoch":26123909,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":515.42,"free":3530.55},{"epoch":26123910,"idl":99.41,"recv":0,"send":0,"writ":0.7,"used":515.77,"free":3530.22},{"epoch":26123911,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":515.39,"free":3530.61},{"epoch":26123912,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.37,"free":3530.63},{"epoch":26123913,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":514.89,"free":3531.1},{"epoch":26123914,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":514.83,"free":3531.15},{"epoch":26123915,"idl":99.5,"recv":0,"send":0,"writ":0.73,"used":516.09,"free":3529.91},{"epoch":26123916,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":515.41,"free":3530.59},{"epoch":26123917,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":515.5,"free":3530.5},{"epoch":26123918,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.49,"free":3530.5},{"epoch":26123919,"idl":99.59,"recv":0,"send":0,"writ":0.34,"used":515.45,"free":3530.52},{"epoch":26123920,"idl":99.43,"recv":0,"send":0,"writ":0.69,"used":515.67,"free":3530.31},{"epoch":26123921,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":515.18,"free":3530.8},{"epoch":26123922,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.17,"free":3530.8},{"epoch":26123923,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.15,"free":3530.82},{"epoch":26123924,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":515.13,"free":3530.85},{"epoch":26123925,"idl":99.54,"recv":0,"send":0,"writ":0.73,"used":515.53,"free":3530.46},{"epoch":26123926,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":514.87,"free":3531.13},{"epoch":26123927,"idl":99.74,"recv":0,"send":0,"writ":0.17,"used":514.85,"free":3531.14},{"epoch":26123928,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":514.83,"free":3531.16},{"epoch":26123929,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":514.81,"free":3531.17},{"epoch":26123930,"idl":99.63,"recv":0,"send":0,"writ":0.75,"used":515.39,"free":3530.59},{"epoch":26123931,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":515.48,"free":3530.51},{"epoch":26123932,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.44,"free":3530.54},{"epoch":26123933,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.42,"free":3530.56},{"epoch":26123934,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.4,"free":3530.57},{"epoch":26123935,"idl":99.57,"recv":0,"send":0,"writ":0.57,"used":515.72,"free":3530.26},{"epoch":26123936,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.34,"used":514.41,"free":3531.57},{"epoch":26123937,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.42,"free":3531.55},{"epoch":26123938,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.39,"free":3531.59},{"epoch":26123939,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":514.37,"free":3531.6},{"epoch":26123940,"idl":99.38,"recv":0,"send":0,"writ":0.57,"used":514.58,"free":3531.41},{"epoch":26123941,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":515.58,"free":3530.4},{"epoch":26123942,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":515.56,"free":3530.42},{"epoch":26123943,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.54,"free":3530.44},{"epoch":26123944,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":515.69,"free":3530.28},{"epoch":26123945,"idl":99.51,"recv":0,"send":0,"writ":0.55,"used":514.92,"free":3531.07},{"epoch":26123946,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":515.44,"free":3530.54},{"epoch":26123947,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":515.42,"free":3530.56},{"epoch":26123948,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.4,"free":3530.57},{"epoch":26123949,"idl":99.65,"recv":0,"send":0,"writ":0.39,"used":515.64,"free":3530.31},{"epoch":26123950,"idl":99.66,"recv":0,"send":0,"writ":0.28,"used":514.44,"free":3531.52},{"epoch":26123951,"idl":99.75,"recv":0,"send":0,"writ":0.61,"used":515.83,"free":3530.13},{"epoch":26123952,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.58,"free":3530.38},{"epoch":26123953,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.56,"free":3530.39},{"epoch":26123954,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.54,"free":3530.41},{"epoch":26123955,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":514.9,"free":3531.07},{"epoch":26123956,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":515.72,"free":3530.24},{"epoch":26123957,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":514.96,"free":3531},{"epoch":26123958,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":514.93,"free":3531.02},{"epoch":26123959,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":514.91,"free":3531.04},{"epoch":26123960,"idl":99.73,"recv":0.01,"send":0.01,"writ":0.32,"used":515.65,"free":3530.32},{"epoch":26123961,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":516.01,"free":3529.95},{"epoch":26123962,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":515.62,"free":3530.33},{"epoch":26123963,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.61,"free":3530.34},{"epoch":26123964,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":515.58,"free":3530.36},{"epoch":26123965,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":514.62,"free":3531.34},{"epoch":26123966,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":515.33,"free":3530.62},{"epoch":26123967,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.3,"free":3530.65},{"epoch":26123968,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":515.27,"free":3530.67},{"epoch":26123969,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.42,"free":3530.52},{"epoch":26123970,"idl":99.59,"recv":0,"send":0,"writ":0.3,"used":515.69,"free":3530.27},{"epoch":26123971,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":516.41,"free":3529.55},{"epoch":26123972,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":515.64,"free":3530.31},{"epoch":26123973,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":515.4,"free":3530.55},{"epoch":26123974,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.35,"free":3530.59},{"epoch":26123975,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":514.87,"free":3531.09},{"epoch":26123976,"idl":99.68,"recv":0,"send":0,"writ":0.52,"used":515.49,"free":3530.47},{"epoch":26123977,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":515.56,"free":3530.39},{"epoch":26123978,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.53,"free":3530.41},{"epoch":26123979,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":515.04,"free":3530.88},{"epoch":26123980,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":515.86,"free":3530.07},{"epoch":26123981,"idl":99.69,"recv":0,"send":0,"writ":0.36,"used":516.31,"free":3529.63},{"epoch":26123982,"idl":99.86,"recv":0,"send":0,"writ":0.39,"used":515.92,"free":3530.01},{"epoch":26123983,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":515.9,"free":3530.02},{"epoch":26123984,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.88,"free":3530.04},{"epoch":26123985,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":515.17,"free":3530.76},{"epoch":26123986,"idl":99.65,"recv":0,"send":0,"writ":0.4,"used":515.5,"free":3530.43},{"epoch":26123987,"idl":99.75,"recv":0,"send":0,"writ":0.37,"used":515.84,"free":3530.09},{"epoch":26123988,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":515.82,"free":3530.1},{"epoch":26123989,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":515.8,"free":3530.12},{"epoch":26123990,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":515.55,"free":3530.38},{"epoch":26123991,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":515.69,"free":3530.24},{"epoch":26123992,"idl":99.62,"recv":0,"send":0,"writ":0.56,"used":516.66,"free":3529.26},{"epoch":26123993,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.91,"free":3530.01},{"epoch":26123994,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":515.88,"free":3530.03},{"epoch":26123995,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":515.64,"free":3530.29},{"epoch":26123996,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":515.61,"free":3530.32},{"epoch":26123997,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":516.15,"free":3529.77},{"epoch":26123998,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":515.81,"free":3530.1},{"epoch":26123999,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":515.78,"free":3530.13},{"epoch":26124000,"idl":99.62,"recv":0,"send":0,"writ":0.3,"used":515.15,"free":3530.78},{"epoch":26124001,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.21,"free":3530.71},{"epoch":26124002,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":515.79,"free":3530.13},{"epoch":26124003,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":515.66,"free":3530.26},{"epoch":26124004,"idl":99.67,"recv":0,"send":0,"writ":0.2,"used":515.63,"free":3530.29},{"epoch":26124005,"idl":99.66,"recv":0,"send":0,"writ":0.37,"used":514.91,"free":3531.02},{"epoch":26124006,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":514.87,"free":3531.05},{"epoch":26124007,"idl":99.64,"recv":0,"send":0,"writ":0.62,"used":515.46,"free":3530.46},{"epoch":26124008,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":515.56,"free":3530.35},{"epoch":26124009,"idl":99.47,"recv":0,"send":0,"writ":0.3,"used":515.34,"free":3530.55},{"epoch":26124010,"idl":99.6,"recv":0,"send":0,"writ":0.31,"used":514.85,"free":3531.05},{"epoch":26124011,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":514.78,"free":3531.12},{"epoch":26124012,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":515.78,"free":3530.12},{"epoch":26124013,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.91,"free":3529.98},{"epoch":26124014,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":515.89,"free":3530.03},{"epoch":26124015,"idl":99.62,"recv":0,"send":0,"writ":0.32,"used":515.27,"free":3530.68},{"epoch":26124016,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":514.89,"free":3531.05},{"epoch":26124017,"idl":99.85,"recv":0,"send":0,"writ":0.22,"used":515.1,"free":3530.83},{"epoch":26124018,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":515.7,"free":3530.23},{"epoch":26124019,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.32,"free":3530.61},{"epoch":26124020,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":515.06,"free":3530.88},{"epoch":26124021,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":515.04,"free":3530.9},{"epoch":26124022,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.1,"free":3530.83},{"epoch":26124023,"idl":99.71,"recv":0,"send":0,"writ":0.63,"used":515.29,"free":3530.63},{"epoch":26124024,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":514.91,"free":3531.01},{"epoch":26124025,"idl":99.68,"recv":0,"send":0,"writ":0.31,"used":515.16,"free":3530.78},{"epoch":26124026,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":515.14,"free":3530.79},{"epoch":26124027,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":515.12,"free":3530.82},{"epoch":26124028,"idl":99.6,"recv":0,"send":0,"writ":0.57,"used":515.25,"free":3530.68},{"epoch":26124029,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":514.83,"free":3531.09},{"epoch":26124030,"idl":99.54,"recv":0,"send":0,"writ":0.31,"used":515.08,"free":3530.86},{"epoch":26124031,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":515.05,"free":3530.88},{"epoch":26124032,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":515.04,"free":3530.89},{"epoch":26124033,"idl":99.62,"recv":0,"send":0,"writ":0.64,"used":515.45,"free":3530.47},{"epoch":26124034,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":515.1,"free":3530.81},{"epoch":26124035,"idl":99.58,"recv":0.01,"send":0.02,"writ":0.36,"used":514.13,"free":3531.8},{"epoch":26124036,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":514.03,"free":3531.89},{"epoch":26124037,"idl":99.79,"recv":0,"send":0,"writ":0.22,"used":514.15,"free":3531.77},{"epoch":26124038,"idl":99.7,"recv":0,"send":0,"writ":0.42,"used":514.76,"free":3531.16},{"epoch":26124039,"idl":99.56,"recv":0,"send":0,"writ":0.46,"used":515.14,"free":3530.75},{"epoch":26124040,"idl":99.44,"recv":0,"send":0,"writ":0.32,"used":514.88,"free":3531.02},{"epoch":26124041,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":514.86,"free":3531.05},{"epoch":26124042,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":514.82,"free":3531.08},{"epoch":26124043,"idl":99.54,"recv":0,"send":0,"writ":0.46,"used":515.39,"free":3530.51},{"epoch":26124044,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":515.28,"free":3530.62},{"epoch":26124045,"idl":99.66,"recv":0,"send":0,"writ":0.41,"used":515.06,"free":3530.85},{"epoch":26124046,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":515.01,"free":3530.9},{"epoch":26124047,"idl":99.69,"recv":0,"send":0,"writ":0.19,"used":514.99,"free":3530.93},{"epoch":26124048,"idl":99.47,"recv":0,"send":0,"writ":0.48,"used":515.53,"free":3530.38},{"epoch":26124049,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":515.41,"free":3530.49},{"epoch":26124050,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":515.66,"free":3530.27},{"epoch":26124051,"idl":99.72,"recv":0,"send":0,"writ":0.17,"used":515.64,"free":3530.28},{"epoch":26124052,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.61,"free":3530.3},{"epoch":26124053,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":516.18,"free":3529.73},{"epoch":26124054,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":515.32,"free":3530.59},{"epoch":26124055,"idl":99.57,"recv":0,"send":0,"writ":0.3,"used":514.61,"free":3531.32},{"epoch":26124056,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":514.57,"free":3531.36},{"epoch":26124057,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":514.54,"free":3531.37},{"epoch":26124058,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":514.52,"free":3531.39},{"epoch":26124059,"idl":99.64,"recv":0,"send":0,"writ":0.55,"used":514.72,"free":3531.19},{"epoch":26124060,"idl":99.67,"recv":0,"send":0,"writ":0.31,"used":515.42,"free":3530.51},{"epoch":26124061,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.41,"free":3530.51},{"epoch":26124062,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.39,"free":3530.52},{"epoch":26124063,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.37,"free":3530.54},{"epoch":26124064,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":515.94,"free":3529.97},{"epoch":26124065,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":514.14,"free":3531.78},{"epoch":26124066,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":514.1,"free":3531.82},{"epoch":26124067,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":514.07,"free":3531.85},{"epoch":26124068,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":514.04,"free":3531.86},{"epoch":26124069,"idl":94.27,"recv":0.39,"send":0.01,"writ":261.37,"used":528.37,"free":3517.99},{"epoch":26124070,"idl":99.59,"recv":0,"send":0,"writ":0.41,"used":517.05,"free":3528.82},{"epoch":26124071,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":517.04,"free":3528.83},{"epoch":26124072,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":517.01,"free":3528.86},{"epoch":26124073,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.99,"free":3528.88},{"epoch":26124074,"idl":99.58,"recv":0,"send":0,"writ":0.61,"used":516.43,"free":3529.46},{"epoch":26124075,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":515.31,"free":3530.63},{"epoch":26124076,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.45,"free":3530.47},{"epoch":26124077,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":515.67,"free":3530.25},{"epoch":26124078,"idl":99.3,"recv":0,"send":0,"writ":0.71,"used":515.87,"free":3530.05},{"epoch":26124079,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":515.9,"free":3530.03},{"epoch":26124080,"idl":99.68,"recv":0,"send":0,"writ":0.31,"used":515.17,"free":3530.8},{"epoch":26124081,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.13,"free":3530.84},{"epoch":26124082,"idl":97.43,"recv":0,"send":0,"writ":0.14,"used":515.1,"free":3530.86},{"epoch":26124083,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":515.08,"free":3530.88},{"epoch":26124084,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":515.63,"free":3530.34},{"epoch":26124085,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":515.32,"free":3530.67},{"epoch":26124086,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.4,"free":3530.59},{"epoch":26124087,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":515.49,"free":3530.49},{"epoch":26124088,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.49,"free":3530.49},{"epoch":26124089,"idl":99.74,"recv":0,"send":0,"writ":0.49,"used":515.8,"free":3530.17},{"epoch":26124090,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":515.23,"free":3530.77},{"epoch":26124091,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.19,"free":3530.8},{"epoch":26124092,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":515.18,"free":3530.8},{"epoch":26124093,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":514.96,"free":3531.02},{"epoch":26124094,"idl":99.68,"recv":0,"send":0,"writ":0.4,"used":515.64,"free":3530.33},{"epoch":26124095,"idl":99.77,"recv":0,"send":0,"writ":0.45,"used":515.64,"free":3530.35},{"epoch":26124096,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.62,"free":3530.37},{"epoch":26124097,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":515.58,"free":3530.4},{"epoch":26124098,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.58,"free":3530.4},{"epoch":26124099,"idl":99.54,"recv":0,"send":0,"writ":0.31,"used":515.7,"free":3530.25},{"epoch":26124100,"idl":99.48,"recv":0,"send":0,"writ":0.7,"used":516.19,"free":3529.77},{"epoch":26124101,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":515.7,"free":3530.27},{"epoch":26124102,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.68,"free":3530.28},{"epoch":26124103,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.65,"free":3530.3},{"epoch":26124104,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.64,"free":3530.33},{"epoch":26124105,"idl":99.52,"recv":0,"send":0,"writ":0.71,"used":515.99,"free":3530},{"epoch":26124106,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.6,"free":3530.38},{"epoch":26124107,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":515.59,"free":3530.39},{"epoch":26124108,"idl":99.7,"recv":0,"send":0,"writ":0.15,"used":515.56,"free":3530.41},{"epoch":26124109,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":515.56,"free":3530.41},{"epoch":26124110,"idl":99.37,"recv":0,"send":0,"writ":0.66,"used":515.86,"free":3530.13},{"epoch":26124111,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":515.72,"free":3530.26},{"epoch":26124112,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.69,"free":3530.29},{"epoch":26124113,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.69,"free":3530.29},{"epoch":26124114,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":515.66,"free":3530.3},{"epoch":26124115,"idl":99.46,"recv":0.01,"send":0.03,"writ":0.71,"used":515.94,"free":3530.05},{"epoch":26124116,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":515.31,"free":3530.67},{"epoch":26124117,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.39,"free":3530.58},{"epoch":26124118,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.45,"free":3530.52},{"epoch":26124119,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.43,"free":3530.54},{"epoch":26124120,"idl":99.24,"recv":0,"send":0,"writ":0.71,"used":515.76,"free":3530.22},{"epoch":26124121,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.4,"free":3530.58},{"epoch":26124122,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.38,"free":3530.59},{"epoch":26124123,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.36,"free":3530.61},{"epoch":26124124,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.34,"free":3530.63},{"epoch":26124125,"idl":99.47,"recv":0,"send":0,"writ":0.56,"used":516.18,"free":3529.81},{"epoch":26124126,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":515.81,"free":3530.16},{"epoch":26124127,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.8,"free":3530.18},{"epoch":26124128,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":515.86,"free":3530.11},{"epoch":26124129,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":515.95,"free":3530},{"epoch":26124130,"idl":99.54,"recv":0,"send":0,"writ":0.74,"used":516.31,"free":3529.66},{"epoch":26124131,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.93,"free":3530.03},{"epoch":26124132,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":515.9,"free":3530.06},{"epoch":26124133,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":515.87,"free":3530.08},{"epoch":26124134,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":515.84,"free":3530.12},{"epoch":26124135,"idl":99.57,"recv":0,"send":0,"writ":0.52,"used":516.56,"free":3529.43},{"epoch":26124136,"idl":99.78,"recv":0,"send":0,"writ":0.39,"used":515.82,"free":3530.16},{"epoch":26124137,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":515.57,"free":3530.41},{"epoch":26124138,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.54,"free":3530.43},{"epoch":26124139,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.64,"free":3530.32},{"epoch":26124140,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":515.22,"free":3530.76},{"epoch":26124141,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":516.1,"free":3529.87},{"epoch":26124142,"idl":99.74,"recv":0.01,"send":0.01,"writ":0.42,"used":515.67,"free":3530.3},{"epoch":26124143,"idl":98.24,"recv":1.98,"send":0.1,"writ":4.98,"used":529.01,"free":3513.89},{"epoch":26124144,"idl":93.12,"recv":0.32,"send":0.14,"writ":80.43,"used":541.81,"free":3491.51},{"epoch":26124145,"idl":97,"recv":4.99,"send":0.07,"writ":139.45,"used":532.34,"free":3483.31},{"epoch":26124146,"idl":99.69,"recv":0,"send":0,"writ":0.7,"used":533.47,"free":3483.57},{"epoch":26124147,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":533.67,"free":3483.36},{"epoch":26124148,"idl":99.76,"recv":0,"send":0,"writ":0.19,"used":533.64,"free":3483.39},{"epoch":26124149,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":533.61,"free":3483.41},{"epoch":26124150,"idl":99.66,"recv":0,"send":0,"writ":0.37,"used":531.44,"free":3485.64},{"epoch":26124151,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":531.19,"free":3485.91},{"epoch":26124152,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":530.81,"free":3486.29},{"epoch":26124153,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":530.6,"free":3486.5},{"epoch":26124154,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":530.49,"free":3486.6},{"epoch":26124155,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":531.03,"free":3486.07},{"epoch":26124156,"idl":99.66,"recv":0,"send":0,"writ":0.57,"used":531.43,"free":3485.67},{"epoch":26124157,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":531.15,"free":3485.95},{"epoch":26124158,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":531.28,"free":3485.81},{"epoch":26124159,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":531.27,"free":3485.8},{"epoch":26124160,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":531.27,"free":3485.81},{"epoch":26124161,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":531.75,"free":3485.33},{"epoch":26124162,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":531.19,"free":3485.9},{"epoch":26124163,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":531.16,"free":3485.92},{"epoch":26124164,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":531.13,"free":3485.96},{"epoch":26124165,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":531.04,"free":3486.07},{"epoch":26124166,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":531.49,"free":3485.62},{"epoch":26124167,"idl":99.69,"recv":0,"send":0,"writ":0.19,"used":530.81,"free":3486.3},{"epoch":26124168,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":530.48,"free":3486.63},{"epoch":26124169,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":530.45,"free":3486.65},{"epoch":26124170,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":530.2,"free":3486.91},{"epoch":26124171,"idl":99.6,"recv":0,"send":0,"writ":0.55,"used":530.51,"free":3486.6},{"epoch":26124172,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":530.29,"free":3486.82},{"epoch":26124173,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":530.28,"free":3486.83},{"epoch":26124174,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":530.24,"free":3486.86},{"epoch":26124175,"idl":99.73,"recv":0,"send":0,"writ":0.37,"used":530.48,"free":3486.63},{"epoch":26124176,"idl":99.7,"recv":0,"send":0,"writ":0.34,"used":531.19,"free":3485.91},{"epoch":26124177,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":530.43,"free":3486.68},{"epoch":26124178,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":530.39,"free":3486.71},{"epoch":26124179,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":530.44,"free":3486.65},{"epoch":26124180,"idl":99.48,"recv":0,"send":0,"writ":0.31,"used":530.29,"free":3486.82},{"epoch":26124181,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":530.22,"free":3486.89},{"epoch":26124182,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":530.66,"free":3486.44},{"epoch":26124183,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":530.13,"free":3486.96},{"epoch":26124184,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":530.29,"free":3486.81},{"epoch":26124185,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":530.32,"free":3486.79},{"epoch":26124186,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":530.27,"free":3486.84},{"epoch":26124187,"idl":99.62,"recv":0,"send":0,"writ":0.58,"used":530.93,"free":3486.17},{"epoch":26124188,"idl":99.68,"recv":0,"send":0,"writ":0.14,"used":530.69,"free":3486.41},{"epoch":26124189,"idl":99.43,"recv":0,"send":0,"writ":0.28,"used":530.46,"free":3486.61},{"epoch":26124190,"idl":99.5,"recv":0,"send":0,"writ":0.3,"used":530.54,"free":3486.55},{"epoch":26124191,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":530.56,"free":3486.53},{"epoch":26124192,"idl":99.65,"recv":0,"send":0.01,"writ":0.53,"used":530.73,"free":3486.35},{"epoch":26124193,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":530.27,"free":3486.81},{"epoch":26124194,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":530.24,"free":3486.84},{"epoch":26124195,"idl":99.57,"recv":0,"send":0,"writ":0.32,"used":530.24,"free":3486.85},{"epoch":26124196,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":530.2,"free":3486.89},{"epoch":26124197,"idl":99.64,"recv":0,"send":0,"writ":0.58,"used":530.94,"free":3486.15},{"epoch":26124198,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":530.32,"free":3486.75},{"epoch":26124199,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":530.29,"free":3486.79},{"epoch":26124200,"idl":99.58,"recv":0,"send":0,"writ":0.28,"used":530.76,"free":3486.33},{"epoch":26124201,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":530.74,"free":3486.35},{"epoch":26124202,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":531.05,"free":3486.03},{"epoch":26124203,"idl":99.78,"recv":0.01,"send":0,"writ":0.14,"used":530.75,"free":3486.33},{"epoch":26124204,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":530.82,"free":3486.26},{"epoch":26124205,"idl":99.69,"recv":0,"send":0.01,"writ":0.29,"used":530.57,"free":3486.53},{"epoch":26124206,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":530.52,"free":3486.57},{"epoch":26124207,"idl":99.59,"recv":0,"send":0,"writ":0.43,"used":530.91,"free":3486.17},{"epoch":26124208,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":530.69,"free":3486.39},{"epoch":26124209,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":530.82,"free":3486.25},{"epoch":26124210,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":530.57,"free":3486.52},{"epoch":26124211,"idl":99.71,"recv":0,"send":0,"writ":0.13,"used":530.54,"free":3486.55},{"epoch":26124212,"idl":99.6,"recv":0.01,"send":0.01,"writ":0.44,"used":530.81,"free":3486.27},{"epoch":26124213,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":530.4,"free":3486.68},{"epoch":26124214,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":530.3,"free":3486.77},{"epoch":26124215,"idl":99.58,"recv":0,"send":0,"writ":0.3,"used":530.28,"free":3486.82},{"epoch":26124216,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":530.25,"free":3486.84},{"epoch":26124217,"idl":99.6,"recv":0,"send":0,"writ":0.3,"used":530.56,"free":3486.52},{"epoch":26124218,"idl":99.71,"recv":0,"send":0,"writ":0.4,"used":530.32,"free":3486.76},{"epoch":26124219,"idl":99.54,"recv":0,"send":0,"writ":0.29,"used":530.84,"free":3486.21},{"epoch":26124220,"idl":99.6,"recv":0,"send":0,"writ":0.29,"used":530.83,"free":3486.24},{"epoch":26124221,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":530.8,"free":3486.26},{"epoch":26124222,"idl":99.67,"recv":0,"send":0,"writ":0.14,"used":530.77,"free":3486.29},{"epoch":26124223,"idl":99.58,"recv":0,"send":0,"writ":0.57,"used":531.38,"free":3485.67},{"epoch":26124224,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":530.95,"free":3486.1},{"epoch":26124225,"idl":99.55,"recv":0,"send":0,"writ":0.32,"used":530.81,"free":3486.26},{"epoch":26124226,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":530.89,"free":3486.18},{"epoch":26124227,"idl":99.69,"recv":0,"send":0,"writ":0.18,"used":530.85,"free":3486.21},{"epoch":26124228,"idl":99.54,"recv":0,"send":0,"writ":0.56,"used":531.17,"free":3485.88},{"epoch":26124229,"idl":99.69,"recv":0,"send":0,"writ":0.17,"used":530.77,"free":3486.27},{"epoch":26124230,"idl":99.59,"recv":0,"send":0,"writ":0.3,"used":531,"free":3486.06},{"epoch":26124231,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":530.97,"free":3486.09},{"epoch":26124232,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":531.09,"free":3485.96},{"epoch":26124233,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":531.27,"free":3485.79},{"epoch":26124234,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":530.81,"free":3486.25},{"epoch":26124235,"idl":99.66,"recv":0,"send":0.02,"writ":0.33,"used":530.94,"free":3486.13},{"epoch":26124236,"idl":99.76,"recv":0,"send":0.01,"writ":0.18,"used":530.95,"free":3486.1},{"epoch":26124237,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":531.04,"free":3486.01},{"epoch":26124238,"idl":99.62,"recv":0,"send":0,"writ":0.4,"used":531.51,"free":3485.54},{"epoch":26124239,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":530.55,"free":3486.49},{"epoch":26124240,"idl":99.47,"recv":0,"send":0,"writ":0.31,"used":529.83,"free":3487.23},{"epoch":26124241,"idl":99.73,"recv":0,"send":0,"writ":0.19,"used":529.77,"free":3487.29},{"epoch":26124242,"idl":99.72,"recv":0,"send":0,"writ":0.2,"used":529.73,"free":3487.32},{"epoch":26124243,"idl":99.66,"recv":0,"send":0,"writ":0.6,"used":530.44,"free":3486.61},{"epoch":26124244,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":530.8,"free":3486.24},{"epoch":26124245,"idl":99.62,"recv":0,"send":0,"writ":0.32,"used":531.02,"free":3486.04},{"epoch":26124246,"idl":99.69,"recv":0,"send":0,"writ":0.17,"used":530.99,"free":3486.06},{"epoch":26124247,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":530.96,"free":3486.09},{"epoch":26124248,"idl":99.64,"recv":0,"send":0,"writ":0.59,"used":531.13,"free":3485.91},{"epoch":26124249,"idl":99.62,"recv":0,"send":0,"writ":0.3,"used":531.03,"free":3485.99},{"epoch":26124250,"idl":99.54,"recv":0,"send":0,"writ":0.31,"used":531.02,"free":3486.01},{"epoch":26124251,"idl":99.77,"recv":0,"send":0,"writ":0.2,"used":530.98,"free":3486.05},{"epoch":26124252,"idl":99.72,"recv":0.01,"send":0.01,"writ":0.17,"used":530.94,"free":3486.09},{"epoch":26124253,"idl":99.53,"recv":0,"send":0,"writ":0.86,"used":531.26,"free":3485.77},{"epoch":26124254,"idl":99.61,"recv":0,"send":0,"writ":0.16,"used":530.54,"free":3486.5},{"epoch":26124255,"idl":99.48,"recv":0,"send":0,"writ":0.37,"used":531.01,"free":3486.06},{"epoch":26124256,"idl":99.66,"recv":0,"send":0,"writ":0.19,"used":530.98,"free":3486.08},{"epoch":26124257,"idl":99.62,"recv":0,"send":0,"writ":0.22,"used":530.94,"free":3486.13},{"epoch":26124258,"idl":99.64,"recv":0,"send":0,"writ":0.18,"used":530.96,"free":3486.1},{"epoch":26124259,"idl":99.56,"recv":0,"send":0,"writ":0.71,"used":530.81,"free":3486.25},{"epoch":26124260,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":530.3,"free":3486.78},{"epoch":26124261,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":530.25,"free":3486.82},{"epoch":26124262,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":530.21,"free":3486.85},{"epoch":26124263,"idl":99.71,"recv":0.01,"send":0.01,"writ":0.16,"used":530.3,"free":3486.77},{"epoch":26124264,"idl":98.89,"recv":0,"send":0,"writ":0.55,"used":531.27,"free":3485.79},{"epoch":26124265,"idl":99.6,"recv":0.01,"send":0.01,"writ":0.33,"used":531.27,"free":3485.8},{"epoch":26124266,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":531.23,"free":3485.84},{"epoch":26124267,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":531.19,"free":3485.87},{"epoch":26124268,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":531.3,"free":3485.76},{"epoch":26124269,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":531.66,"free":3485.4},{"epoch":26124270,"idl":99.58,"recv":0,"send":0,"writ":0.3,"used":530.34,"free":3486.74},{"epoch":26124271,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":530.25,"free":3486.82},{"epoch":26124272,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":530.22,"free":3486.85},{"epoch":26124273,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":527.74,"free":3489.49},{"epoch":26124274,"idl":99.59,"recv":0,"send":0,"writ":0.56,"used":516.96,"free":3500.58},{"epoch":26124275,"idl":99.58,"recv":0,"send":0,"writ":0.33,"used":516.26,"free":3501.31},{"epoch":26124276,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":516.26,"free":3501.31},{"epoch":26124277,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.22,"free":3501.35},{"epoch":26124278,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":516.2,"free":3501.36},{"epoch":26124279,"idl":99.5,"recv":0,"send":0,"writ":0.6,"used":516.65,"free":3500.89},{"epoch":26124280,"idl":99.69,"recv":0,"send":0,"writ":0.38,"used":515.94,"free":3501.62},{"epoch":26124281,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":515.92,"free":3501.63},{"epoch":26124282,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":516.03,"free":3501.51},{"epoch":26124283,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":516.04,"free":3501.5},{"epoch":26124284,"idl":99.67,"recv":0,"send":0,"writ":0.58,"used":516.38,"free":3501.16},{"epoch":26124285,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":516.03,"free":3501.53},{"epoch":26124286,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":516,"free":3501.55},{"epoch":26124287,"idl":99.78,"recv":0,"send":0,"writ":0.19,"used":515.97,"free":3501.58},{"epoch":26124288,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":515.95,"free":3501.59},{"epoch":26124289,"idl":99.62,"recv":0,"send":0,"writ":0.55,"used":516.21,"free":3501.33},{"epoch":26124290,"idl":99.62,"recv":0,"send":0,"writ":0.33,"used":516.17,"free":3501.38},{"epoch":26124291,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":516.15,"free":3501.4},{"epoch":26124292,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":516.24,"free":3501.3},{"epoch":26124293,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":516.3,"free":3501.24},{"epoch":26124294,"idl":99.6,"recv":0,"send":0,"writ":0.46,"used":516.91,"free":3500.63},{"epoch":26124295,"idl":99.66,"recv":0,"send":0,"writ":0.44,"used":516.28,"free":3501.27},{"epoch":26124296,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.26,"free":3501.29},{"epoch":26124297,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":516.23,"free":3501.31},{"epoch":26124298,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":516.22,"free":3501.32},{"epoch":26124299,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":516.2,"free":3501.33},{"epoch":26124300,"idl":99.08,"recv":0,"send":0,"writ":0.71,"used":516.63,"free":3500.92},{"epoch":26124301,"idl":99.55,"recv":0,"send":0,"writ":0.14,"used":516.17,"free":3501.37},{"epoch":26124302,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":516.15,"free":3501.39},{"epoch":26124303,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":516.23,"free":3501.3},{"epoch":26124304,"idl":99.71,"recv":0,"send":0,"writ":0.15,"used":516.27,"free":3501.25},{"epoch":26124305,"idl":99.37,"recv":0,"send":0,"writ":0.74,"used":516.12,"free":3501.42},{"epoch":26124306,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":516,"free":3501.53},{"epoch":26124307,"idl":99.74,"recv":0.03,"send":1.04,"writ":0.21,"used":515.99,"free":3501.54},{"epoch":26124308,"idl":99.59,"recv":0.04,"send":2.81,"writ":0.61,"used":516.12,"free":3501.38},{"epoch":26124309,"idl":99.55,"recv":0,"send":0,"writ":0.27,"used":515.19,"free":3502.28},{"epoch":26124310,"idl":99.48,"recv":0,"send":0,"writ":0.72,"used":516.49,"free":3501},{"epoch":26124311,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":516.44,"free":3501.05},{"epoch":26124312,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":516.52,"free":3500.96},{"epoch":26124313,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":516.49,"free":3500.99},{"epoch":26124314,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":516.48,"free":3501},{"epoch":26124315,"idl":99.56,"recv":0,"send":0,"writ":0.65,"used":516.9,"free":3500.61},{"epoch":26124316,"idl":99.75,"recv":0,"send":0,"writ":0.2,"used":516.2,"free":3501.31},{"epoch":26124317,"idl":99.78,"recv":0,"send":0,"writ":0.21,"used":516.18,"free":3501.32},{"epoch":26124318,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":516.17,"free":3501.33},{"epoch":26124319,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":516.14,"free":3501.36},{"epoch":26124320,"idl":99.57,"recv":0,"send":0,"writ":0.66,"used":516.24,"free":3501.27},{"epoch":26124321,"idl":99.76,"recv":0,"send":0,"writ":0.2,"used":515.14,"free":3502.37},{"epoch":26124322,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.21,"free":3502.29},{"epoch":26124323,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":515.28,"free":3502.21},{"epoch":26124324,"idl":99.32,"recv":0,"send":0,"writ":0.14,"used":515.25,"free":3502.24},{"epoch":26124325,"idl":99.44,"recv":0,"send":0,"writ":0.66,"used":515.49,"free":3502.02},{"epoch":26124326,"idl":99.79,"recv":0,"send":0,"writ":0.22,"used":514.98,"free":3502.52},{"epoch":26124327,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":514.96,"free":3502.54},{"epoch":26124328,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":514.93,"free":3502.56},{"epoch":26124329,"idl":99.67,"recv":0,"send":0,"writ":0.16,"used":514.91,"free":3502.59},{"epoch":26124330,"idl":99.42,"recv":0,"send":0,"writ":0.59,"used":515.77,"free":3501.74},{"epoch":26124331,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":515.38,"free":3502.13},{"epoch":26124332,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":515.36,"free":3502.14},{"epoch":26124333,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":515.22,"free":3502.28},{"epoch":26124334,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":515.01,"free":3502.48},{"epoch":26124335,"idl":99.51,"recv":0,"send":0,"writ":0.48,"used":515.77,"free":3501.74},{"epoch":26124336,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":515.48,"free":3502.02},{"epoch":26124337,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":515.47,"free":3502.03},{"epoch":26124338,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":515.44,"free":3502.05},{"epoch":26124339,"idl":99.45,"recv":0,"send":0,"writ":0.31,"used":514.96,"free":3502.51},{"epoch":26124340,"idl":99.47,"recv":0,"send":0,"writ":0.34,"used":515.4,"free":3502.09},{"epoch":26124341,"idl":99.61,"recv":0,"send":0,"writ":0.55,"used":515.75,"free":3501.73},{"epoch":26124342,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":515.37,"free":3502.1},{"epoch":26124343,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":515.35,"free":3502.12},{"epoch":26124344,"idl":99.66,"recv":0,"send":0,"writ":0.14,"used":515.49,"free":3501.98},{"epoch":26124345,"idl":99.54,"recv":0,"send":0,"writ":0.34,"used":515.51,"free":3501.97},{"epoch":26124346,"idl":99.56,"recv":0,"send":0,"writ":0.55,"used":515.85,"free":3501.63},{"epoch":26124347,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":515.46,"free":3502.01},{"epoch":26124348,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":515.44,"free":3502.03},{"epoch":26124349,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":515.42,"free":3502.04},{"epoch":26124350,"idl":99.62,"recv":0,"send":0,"writ":0.29,"used":515.42,"free":3502.05},{"epoch":26124351,"idl":99.62,"recv":0,"send":0,"writ":0.56,"used":515.93,"free":3501.54},{"epoch":26124352,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":515.62,"free":3501.84},{"epoch":26124353,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":515.61,"free":3501.86},{"epoch":26124354,"idl":99.78,"recv":0,"send":0,"writ":0.21,"used":515.58,"free":3501.87},{"epoch":26124355,"idl":99.64,"recv":0,"send":0,"writ":0.39,"used":515.46,"free":3502.02},{"epoch":26124356,"idl":99.64,"recv":0,"send":0,"writ":0.57,"used":516.15,"free":3501.32},{"epoch":26124357,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":515.73,"free":3501.73},{"epoch":26124358,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":515.7,"free":3501.76},{"epoch":26124359,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":515.68,"free":3501.77},{"epoch":26124360,"idl":99.49,"recv":0,"send":0,"writ":0.31,"used":514.71,"free":3502.76},{"epoch":26124361,"idl":99.58,"recv":0,"send":0,"writ":0.58,"used":515.12,"free":3502.35},{"epoch":26124362,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":514.88,"free":3502.58},{"epoch":26124363,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":514.86,"free":3502.59},{"epoch":26124364,"idl":99.7,"recv":0,"send":0,"writ":0.19,"used":514.83,"free":3502.62},{"epoch":26124365,"idl":99.6,"recv":0,"send":0,"writ":0.32,"used":514.95,"free":3502.52},{"epoch":26124366,"idl":99.66,"recv":0,"send":0,"writ":0.48,"used":515.44,"free":3502.02},{"epoch":26124367,"idl":99.81,"recv":0,"send":0,"writ":0.23,"used":515.24,"free":3502.22},{"epoch":26124368,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":515.2,"free":3502.25},{"epoch":26124369,"idl":99.51,"recv":0,"send":0,"writ":0.32,"used":515.73,"free":3501.7},{"epoch":26124370,"idl":99.55,"recv":0,"send":0,"writ":0.37,"used":515.73,"free":3501.72},{"epoch":26124371,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":516.02,"free":3501.43},{"epoch":26124372,"idl":98.54,"recv":0,"send":0,"writ":0.19,"used":515.63,"free":3501.81},{"epoch":26124373,"idl":99.71,"recv":0,"send":0,"writ":0.15,"used":515.63,"free":3501.81},{"epoch":26124374,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":515.61,"free":3501.84},{"epoch":26124375,"idl":99.65,"recv":0,"send":0,"writ":0.34,"used":515.37,"free":3502.09},{"epoch":26124376,"idl":99.74,"recv":0,"send":0,"writ":0.36,"used":515.9,"free":3501.57},{"epoch":26124377,"idl":99.81,"recv":0,"send":0,"writ":0.43,"used":515.57,"free":3501.89},{"epoch":26124378,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.68,"free":3501.77},{"epoch":26124379,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.75,"free":3501.7},{"epoch":26124380,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":515.28,"free":3502.18},{"epoch":26124381,"idl":99.52,"recv":0.03,"send":0.08,"writ":0.24,"used":520.69,"free":3496.63},{"epoch":26124382,"idl":99.64,"recv":0.01,"send":0.01,"writ":0.57,"used":526.54,"free":3490.7},{"epoch":26124383,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":526.53,"free":3490.7},{"epoch":26124384,"idl":99.81,"recv":0,"send":0.02,"writ":0.18,"used":526.47,"free":3490.75},{"epoch":26124385,"idl":99.09,"recv":0,"send":0,"writ":0.33,"used":526.23,"free":3491.01},{"epoch":26124386,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":526.19,"free":3491.04},{"epoch":26124387,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":526.84,"free":3490.4},{"epoch":26124388,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":526.57,"free":3490.66},{"epoch":26124389,"idl":99.69,"recv":0,"send":0,"writ":0.18,"used":526.53,"free":3490.69},{"epoch":26124390,"idl":99.56,"recv":0,"send":0,"writ":0.37,"used":524.82,"free":3492.42},{"epoch":26124391,"idl":99.71,"recv":0,"send":0,"writ":0.13,"used":524.76,"free":3492.47},{"epoch":26124392,"idl":99.66,"recv":0,"send":0,"writ":0.58,"used":526.28,"free":3490.95},{"epoch":26124393,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":526.28,"free":3490.94},{"epoch":26124394,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":526.29,"free":3490.93},{"epoch":26124395,"idl":99.61,"recv":0,"send":0,"writ":0.29,"used":527.05,"free":3490.19},{"epoch":26124396,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":527.02,"free":3490.21},{"epoch":26124397,"idl":99.68,"recv":0,"send":0,"writ":0.6,"used":527.49,"free":3489.74},{"epoch":26124398,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":526.71,"free":3490.51},{"epoch":26124399,"idl":99.62,"recv":0,"send":0,"writ":0.28,"used":526.96,"free":3490.24},{"epoch":26124400,"idl":99.57,"recv":0,"send":0,"writ":0.32,"used":526.93,"free":3490.29},{"epoch":26124401,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":527.05,"free":3490.16},{"epoch":26124402,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":527.31,"free":3489.9},{"epoch":26124403,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":526.77,"free":3490.43},{"epoch":26124404,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":526.72,"free":3490.47},{"epoch":26124405,"idl":99.61,"recv":0,"send":0,"writ":0.33,"used":526.71,"free":3490.5},{"epoch":26124406,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":526.69,"free":3490.52},{"epoch":26124407,"idl":99.65,"recv":0,"send":0,"writ":0.41,"used":527.08,"free":3490.12},{"epoch":26124408,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":526.81,"free":3490.39},{"epoch":26124409,"idl":99.71,"recv":0,"send":0.02,"writ":0.17,"used":526.75,"free":3490.44},{"epoch":26124410,"idl":99.68,"recv":0,"send":0,"writ":0.34,"used":526.74,"free":3490.48},{"epoch":26124411,"idl":99.89,"recv":0,"send":0,"writ":0.12,"used":526.7,"free":3490.51},{"epoch":26124412,"idl":99.72,"recv":0,"send":0,"writ":0.42,"used":527.03,"free":3490.18},{"epoch":26124413,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":526.73,"free":3490.47},{"epoch":26124414,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":526.82,"free":3490.38},{"epoch":26124415,"idl":99.68,"recv":0,"send":0,"writ":0.36,"used":526.81,"free":3490.41},{"epoch":26124416,"idl":99.8,"recv":0,"send":0,"writ":0.12,"used":526.78,"free":3490.44},{"epoch":26124417,"idl":99.68,"recv":0,"send":0,"writ":0.17,"used":527.02,"free":3490.19},{"epoch":26124418,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":527.06,"free":3490.14},{"epoch":26124419,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":526.68,"free":3490.52},{"epoch":26124420,"idl":99.52,"recv":0,"send":0,"writ":0.32,"used":526.82,"free":3490.39},{"epoch":26124421,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":526.82,"free":3490.39},{"epoch":26124422,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":526.78,"free":3490.42},{"epoch":26124423,"idl":99.62,"recv":0,"send":0,"writ":0.54,"used":527.3,"free":3489.9},{"epoch":26124424,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":526.96,"free":3490.24},{"epoch":26124425,"idl":99.63,"recv":0,"send":0,"writ":0.34,"used":526.22,"free":3490.99},{"epoch":26124426,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":526.27,"free":3490.93},{"epoch":26124427,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":526.32,"free":3490.88},{"epoch":26124428,"idl":99.62,"recv":0,"send":0,"writ":0.54,"used":526.64,"free":3490.57},{"epoch":26124429,"idl":99.68,"recv":0,"send":0,"writ":0.27,"used":526.75,"free":3490.43},{"epoch":26124430,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":526.75,"free":3490.44},{"epoch":26124431,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":526.7,"free":3490.49},{"epoch":26124432,"idl":99.75,"recv":0.01,"send":0.01,"writ":0.16,"used":526.73,"free":3490.45},{"epoch":26124433,"idl":96.08,"recv":0.04,"send":0.01,"writ":142.81,"used":540.05,"free":3478.66},{"epoch":26124434,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":528.82,"free":3488.26},{"epoch":26124435,"idl":99.61,"recv":0,"send":0,"writ":0.36,"used":528.98,"free":3488.12},{"epoch":26124436,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":528.96,"free":3488.14},{"epoch":26124437,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":528.92,"free":3488.16},{"epoch":26124438,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":528.01,"free":3489.09},{"epoch":26124439,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":526.44,"free":3490.67},{"epoch":26124440,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":525.24,"free":3491.89},{"epoch":26124441,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.16,"used":525.36,"free":3491.77},{"epoch":26124442,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":525.55,"free":3491.57},{"epoch":26124443,"idl":99.73,"recv":0,"send":0,"writ":0.44,"used":526.72,"free":3490.41},{"epoch":26124444,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":526.97,"free":3490.16},{"epoch":26124445,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":526.72,"free":3490.43},{"epoch":26124446,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":526.69,"free":3490.46},{"epoch":26124447,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":526.66,"free":3490.48},{"epoch":26124448,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":527.16,"free":3489.98},{"epoch":26124449,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":526.77,"free":3490.37},{"epoch":26124450,"idl":99.71,"recv":0,"send":0,"writ":0.38,"used":526.53,"free":3490.62},{"epoch":26124451,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":526.5,"free":3490.65},{"epoch":26124452,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":526.46,"free":3490.68},{"epoch":26124453,"idl":99.8,"recv":0,"send":0.01,"writ":0.21,"used":526.31,"free":3490.82},{"epoch":26124454,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":526.98,"free":3490.19},{"epoch":26124455,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":526.8,"free":3490.38},{"epoch":26124456,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.24,"used":526.73,"free":3490.44},{"epoch":26124457,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":526.69,"free":3490.48},{"epoch":26124458,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":526.66,"free":3490.51},{"epoch":26124459,"idl":99.62,"recv":0,"send":0,"writ":0.69,"used":527.58,"free":3489.56},{"epoch":26124460,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":527.29,"free":3489.87},{"epoch":26124461,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":527.26,"free":3489.9},{"epoch":26124462,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":527.24,"free":3489.91},{"epoch":26124463,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":527.2,"free":3489.94},{"epoch":26124464,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":527.93,"free":3489.23},{"epoch":26124465,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":526.92,"free":3490.26},{"epoch":26124466,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":526.97,"free":3490.2},{"epoch":26124467,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":527.04,"free":3490.13},{"epoch":26124468,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":527.01,"free":3490.16},{"epoch":26124469,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":527.48,"free":3489.68},{"epoch":26124470,"idl":99.69,"recv":0,"send":0,"writ":0.35,"used":527.2,"free":3489.97},{"epoch":26124471,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":527.16,"free":3490.01},{"epoch":26124472,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":527.13,"free":3490.04},{"epoch":26124473,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":527.28,"free":3489.88},{"epoch":26124474,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":527.82,"free":3489.34},{"epoch":26124475,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":527.5,"free":3489.68},{"epoch":26124476,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":526.98,"free":3490.19},{"epoch":26124477,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":526.44,"free":3490.73},{"epoch":26124478,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":526.4,"free":3490.76},{"epoch":26124479,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":526.69,"free":3490.46},{"epoch":26124480,"idl":99.37,"recv":0,"send":0,"writ":0.34,"used":525.13,"free":3492.04},{"epoch":26124481,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":525.03,"free":3492.14},{"epoch":26124482,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":525,"free":3492.17},{"epoch":26124483,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":525.04,"free":3492.13},{"epoch":26124484,"idl":99.59,"recv":0,"send":0,"writ":0.6,"used":525.98,"free":3491.18},{"epoch":26124485,"idl":99.72,"recv":0,"send":0,"writ":0.35,"used":525.7,"free":3491.48},{"epoch":26124486,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":525.73,"free":3491.44},{"epoch":26124487,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":525.79,"free":3491.38},{"epoch":26124488,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":525.76,"free":3491.41},{"epoch":26124489,"idl":99.61,"recv":0,"send":0,"writ":0.55,"used":526.91,"free":3490.23},{"epoch":26124490,"idl":99.7,"recv":0,"send":0,"writ":0.45,"used":526.45,"free":3490.7},{"epoch":26124491,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":526.42,"free":3490.73},{"epoch":26124492,"idl":99.77,"recv":0.01,"send":0.01,"writ":0.14,"used":526.45,"free":3490.69},{"epoch":26124493,"idl":99.67,"recv":0,"send":0,"writ":0.15,"used":526.52,"free":3490.62},{"epoch":26124494,"idl":99.63,"recv":0,"send":0,"writ":0.15,"used":526.49,"free":3490.65},{"epoch":26124495,"idl":99.21,"recv":0,"send":0,"writ":0.74,"used":525.61,"free":3491.55},{"epoch":26124496,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":525.22,"free":3491.93},{"epoch":26124497,"idl":99.78,"recv":0,"send":0,"writ":0.19,"used":525.19,"free":3491.96},{"epoch":26124498,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":525.15,"free":3491.99},{"epoch":26124499,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":525.21,"free":3491.92},{"epoch":26124500,"idl":99.49,"recv":0,"send":0,"writ":0.75,"used":526.72,"free":3490.44},{"epoch":26124501,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.15,"used":526.53,"free":3490.62},{"epoch":26124502,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":526.48,"free":3490.67},{"epoch":26124503,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":526.45,"free":3490.7},{"epoch":26124504,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":526.42,"free":3490.71},{"epoch":26124505,"idl":99.54,"recv":0,"send":0,"writ":0.72,"used":526.56,"free":3490.59},{"epoch":26124506,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":526.54,"free":3490.61},{"epoch":26124507,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":526.53,"free":3490.62},{"epoch":26124508,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":526.5,"free":3490.64},{"epoch":26124509,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":526.47,"free":3490.67},{"epoch":26124510,"idl":99.53,"recv":0,"send":0,"writ":0.76,"used":526.96,"free":3490.2},{"epoch":26124511,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":526.92,"free":3490.23},{"epoch":26124512,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":526.89,"free":3490.25},{"epoch":26124513,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":526.8,"free":3490.34},{"epoch":26124514,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":526.52,"free":3490.62},{"epoch":26124515,"idl":99.34,"recv":0,"send":0,"writ":0.75,"used":526.59,"free":3490.56},{"epoch":26124516,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":526.47,"free":3490.68},{"epoch":26124517,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":526.43,"free":3490.71},{"epoch":26124518,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":526.4,"free":3490.74},{"epoch":26124519,"idl":99.67,"recv":0,"send":0,"writ":0.27,"used":526.53,"free":3490.58},{"epoch":26124520,"idl":99.58,"recv":0,"send":0,"writ":0.66,"used":526.93,"free":3490.2},{"epoch":26124521,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":526.55,"free":3490.58},{"epoch":26124522,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":526.51,"free":3490.62},{"epoch":26124523,"idl":99.45,"recv":0,"send":0,"writ":0.54,"used":526.72,"free":3490.39},{"epoch":26124524,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":526.93,"free":3490.2},{"epoch":26124525,"idl":99.51,"recv":0.01,"send":0.01,"writ":0.62,"used":527.16,"free":3489.99},{"epoch":26124526,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":526.77,"free":3490.37},{"epoch":26124527,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":526.74,"free":3490.4},{"epoch":26124528,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":526.7,"free":3490.45},{"epoch":26124529,"idl":99.8,"recv":0,"send":0.01,"writ":0.15,"used":526.73,"free":3490.44},{"epoch":26124530,"idl":99.5,"recv":0,"send":0,"writ":0.54,"used":527.57,"free":3489.61},{"epoch":26124531,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":526.54,"free":3490.64},{"epoch":26124532,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":526.5,"free":3490.68},{"epoch":26124533,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":526.46,"free":3490.71},{"epoch":26124534,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":526.43,"free":3490.74},{"epoch":26124535,"idl":99.72,"recv":0,"send":0,"writ":0.36,"used":526.79,"free":3490.39},{"epoch":26124536,"idl":99.64,"recv":0,"send":0.01,"writ":0.56,"used":527.39,"free":3489.79},{"epoch":26124537,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":527.01,"free":3490.17},{"epoch":26124538,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":526.97,"free":3490.2},{"epoch":26124539,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":526.93,"free":3490.24},{"epoch":26124540,"idl":99.44,"recv":0,"send":0,"writ":0.31,"used":526.79,"free":3490.4},{"epoch":26124541,"idl":99.66,"recv":0,"send":0,"writ":0.58,"used":527.19,"free":3489.99},{"epoch":26124542,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":526.8,"free":3490.37},{"epoch":26124543,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":526.77,"free":3490.41},{"epoch":26124544,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":526.73,"free":3490.43},{"epoch":26124545,"idl":99.63,"recv":0,"send":0,"writ":0.31,"used":526.79,"free":3490.4},{"epoch":26124546,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":527.3,"free":3489.88},{"epoch":26124547,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":527.08,"free":3490.1},{"epoch":26124548,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":527.04,"free":3490.13},{"epoch":26124549,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":527,"free":3490.15},{"epoch":26124550,"idl":99.6,"recv":0,"send":0,"writ":0.31,"used":526.27,"free":3490.9},{"epoch":26124551,"idl":99.6,"recv":0,"send":0,"writ":0.55,"used":527.21,"free":3489.95},{"epoch":26124552,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.17,"used":527.06,"free":3490.1},{"epoch":26124553,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":527.03,"free":3490.12},{"epoch":26124554,"idl":99.43,"recv":0,"send":0,"writ":0.18,"used":527,"free":3490.15},{"epoch":26124555,"idl":99.7,"recv":0,"send":0,"writ":0.37,"used":526.74,"free":3490.42},{"epoch":26124556,"idl":99.54,"recv":0,"send":0,"writ":0.56,"used":527.14,"free":3490.01},{"epoch":26124557,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":526.99,"free":3490.17},{"epoch":26124558,"idl":99.71,"recv":0,"send":0,"writ":0.17,"used":527.05,"free":3490.1},{"epoch":26124559,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":527.01,"free":3490.13},{"epoch":26124560,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":526.99,"free":3490.17},{"epoch":26124561,"idl":99.67,"recv":0.01,"send":0.01,"writ":0.57,"used":527.1,"free":3490.06},{"epoch":26124562,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":526.42,"free":3490.73},{"epoch":26124563,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":526.55,"free":3490.6},{"epoch":26124564,"idl":99.77,"recv":0,"send":0,"writ":0.17,"used":526.53,"free":3490.61},{"epoch":26124565,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":526.04,"free":3491.12},{"epoch":26124566,"idl":99.66,"recv":0,"send":0,"writ":0.59,"used":526.58,"free":3490.57},{"epoch":26124567,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":525.7,"free":3491.45},{"epoch":26124568,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":525.73,"free":3491.42},{"epoch":26124569,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":525.81,"free":3491.33},{"epoch":26124570,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":527.02,"free":3490.14},{"epoch":26124571,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":527.32,"free":3489.83},{"epoch":26124572,"idl":99.46,"recv":0,"send":0,"writ":0.39,"used":525.74,"free":3491.41},{"epoch":26124573,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":526,"free":3491.15},{"epoch":26124574,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":526.42,"free":3490.72},{"epoch":26124575,"idl":99.66,"recv":0,"send":0,"writ":0.33,"used":525.94,"free":3491.23},{"epoch":26124576,"idl":99.68,"recv":0,"send":0,"writ":0.31,"used":526.45,"free":3490.71},{"epoch":26124577,"idl":99.79,"recv":0,"send":0,"writ":0.38,"used":527.02,"free":3490.13},{"epoch":26124578,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":527,"free":3490.15},{"epoch":26124579,"idl":99.66,"recv":0,"send":0,"writ":0.28,"used":526.48,"free":3490.65},{"epoch":26124580,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":526.95,"free":3490.19},{"epoch":26124581,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":526.91,"free":3490.22},{"epoch":26124582,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":527.96,"free":3489.17},{"epoch":26124583,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":527.31,"free":3489.82},{"epoch":26124584,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":527.28,"free":3489.86},{"epoch":26124585,"idl":99.7,"recv":0,"send":0,"writ":0.33,"used":526.08,"free":3491.08},{"epoch":26124586,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":526.01,"free":3491.14},{"epoch":26124587,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":527.3,"free":3489.87},{"epoch":26124588,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":527.18,"free":3489.99},{"epoch":26124589,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":527.3,"free":3489.86},{"epoch":26124590,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":526.61,"free":3490.57},{"epoch":26124591,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":526.54,"free":3490.63},{"epoch":26124592,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":527.21,"free":3489.96},{"epoch":26124593,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":526.97,"free":3490.2},{"epoch":26124594,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":526.93,"free":3490.23},{"epoch":26124595,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":527.25,"free":3489.93},{"epoch":26124596,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":527.32,"free":3489.85},{"epoch":26124597,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":527.23,"free":3489.94},{"epoch":26124598,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":526.51,"free":3490.65},{"epoch":26124599,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":526.47,"free":3490.68},{"epoch":26124600,"idl":99.64,"recv":0,"send":0,"writ":0.35,"used":527.18,"free":3489.99},{"epoch":26124601,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":527.2,"free":3489.97},{"epoch":26124602,"idl":99.7,"recv":0,"send":0,"writ":0.42,"used":527.52,"free":3489.64},{"epoch":26124603,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":526.3,"free":3490.86},{"epoch":26124604,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":526.27,"free":3490.88},{"epoch":26124605,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":527.23,"free":3489.94},{"epoch":26124606,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":527.21,"free":3489.96},{"epoch":26124607,"idl":99.54,"recv":0,"send":0,"writ":0.57,"used":527.44,"free":3489.72},{"epoch":26124608,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":526.74,"free":3490.42},{"epoch":26124609,"idl":99.64,"recv":0,"send":0.01,"writ":0.33,"used":527.02,"free":3490.11},{"epoch":26124610,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":526.5,"free":3490.65},{"epoch":26124611,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":526.46,"free":3490.69},{"epoch":26124612,"idl":99.73,"recv":0.01,"send":0.01,"writ":0.41,"used":526.91,"free":3490.23},{"epoch":26124613,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":527.13,"free":3490},{"epoch":26124614,"idl":99,"recv":0,"send":0,"writ":0.14,"used":527.26,"free":3489.87},{"epoch":26124615,"idl":99.68,"recv":0,"send":0,"writ":0.34,"used":527.29,"free":3489.85},{"epoch":26124616,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":527.25,"free":3489.9},{"epoch":26124617,"idl":99.72,"recv":0,"send":0,"writ":0.39,"used":527.57,"free":3489.57},{"epoch":26124618,"idl":99.83,"recv":0,"send":0,"writ":0.42,"used":527.19,"free":3489.95},{"epoch":26124619,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":527.16,"free":3489.97},{"epoch":26124620,"idl":99.74,"recv":0,"send":0,"writ":0.35,"used":526.99,"free":3490.16},{"epoch":26124621,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.16,"used":527.03,"free":3490.11},{"epoch":26124622,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":527.01,"free":3490.13},{"epoch":26124623,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":527.58,"free":3489.56},{"epoch":26124624,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":526.94,"free":3490.19},{"epoch":26124625,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":526.22,"free":3490.92},{"epoch":26124626,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":526.16,"free":3490.98},{"epoch":26124627,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":526.23,"free":3490.91},{"epoch":26124628,"idl":99.72,"recv":0,"send":0,"writ":0.63,"used":527,"free":3490.13},{"epoch":26124629,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":526.55,"free":3490.57},{"epoch":26124630,"idl":99.65,"recv":0,"send":0,"writ":0.34,"used":525.79,"free":3491.35},{"epoch":26124631,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":525.74,"free":3491.4},{"epoch":26124632,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":525.71,"free":3491.43},{"epoch":26124633,"idl":99.66,"recv":0,"send":0,"writ":0.57,"used":526.28,"free":3490.85},{"epoch":26124634,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":526,"free":3491.12},{"epoch":26124635,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":526.07,"free":3491.07},{"epoch":26124636,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":526.03,"free":3491.1},{"epoch":26124637,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":526,"free":3491.13},{"epoch":26124638,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":526.92,"free":3490.2},{"epoch":26124639,"idl":99.75,"recv":0,"send":0,"writ":0.35,"used":526.66,"free":3490.44},{"epoch":26124640,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":526.91,"free":3490.21},{"epoch":26124641,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":527.04,"free":3490.07},{"epoch":26124642,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":527.03,"free":3490.08},{"epoch":26124643,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":527.42,"free":3489.68},{"epoch":26124644,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":526.72,"free":3490.38},{"epoch":26124645,"idl":99.71,"recv":0,"send":0,"writ":0.38,"used":526.47,"free":3490.64},{"epoch":26124646,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":526.43,"free":3490.68},{"epoch":26124647,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.18,"used":526.49,"free":3490.62},{"epoch":26124648,"idl":99.65,"recv":0,"send":0,"writ":0.5,"used":526.92,"free":3490.18},{"epoch":26124649,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":526.74,"free":3490.35},{"epoch":26124650,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":525.53,"free":3491.59},{"epoch":26124651,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":525.47,"free":3491.64},{"epoch":26124652,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":525.44,"free":3491.67},{"epoch":26124653,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":525.87,"free":3491.23},{"epoch":26124654,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":526.27,"free":3490.82},{"epoch":26124655,"idl":99.68,"recv":0.01,"send":0.01,"writ":0.33,"used":526.73,"free":3490.38},{"epoch":26124656,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":526.64,"free":3490.47},{"epoch":26124657,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":526.72,"free":3490.39},{"epoch":26124658,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":526.51,"free":3490.59},{"epoch":26124659,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":527.14,"free":3489.95},{"epoch":26124660,"idl":99.41,"recv":0,"send":0.01,"writ":0.33,"used":526.46,"free":3490.65},{"epoch":26124661,"idl":99.71,"recv":0,"send":0.01,"writ":0.18,"used":526.39,"free":3490.71},{"epoch":26124662,"idl":99.71,"recv":0,"send":0,"writ":0.17,"used":526.52,"free":3490.58},{"epoch":26124663,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":526.51,"free":3490.59},{"epoch":26124664,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":526.43,"free":3490.66},{"epoch":26124665,"idl":99.66,"recv":0,"send":0,"writ":0.35,"used":525.73,"free":3491.37},{"epoch":26124666,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":525.7,"free":3491.41},{"epoch":26124667,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":525.65,"free":3491.46},{"epoch":26124668,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":525.72,"free":3491.39},{"epoch":26124669,"idl":99.49,"recv":0,"send":0,"writ":0.68,"used":527.19,"free":3489.9},{"epoch":26124670,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":527.03,"free":3490.08},{"epoch":26124671,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":526.99,"free":3490.11},{"epoch":26124672,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.14,"used":526.96,"free":3490.14},{"epoch":26124673,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":526.9,"free":3490.19},{"epoch":26124674,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":527.15,"free":3489.97},{"epoch":26124675,"idl":99.69,"recv":0,"send":0,"writ":0.36,"used":526.81,"free":3490.34},{"epoch":26124676,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":526.78,"free":3490.37},{"epoch":26124677,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":526.75,"free":3490.4},{"epoch":26124678,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":526.71,"free":3490.43},{"epoch":26124679,"idl":99.75,"recv":0,"send":0,"writ":0.48,"used":527.45,"free":3489.68},{"epoch":26124680,"idl":99.67,"recv":0,"send":0,"writ":0.4,"used":526.42,"free":3490.72},{"epoch":26124681,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.18,"used":526.47,"free":3490.67},{"epoch":26124682,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":526.52,"free":3490.62},{"epoch":26124683,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":526.5,"free":3490.64},{"epoch":26124684,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":526.82,"free":3490.31},{"epoch":26124685,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":526.94,"free":3490.21},{"epoch":26124686,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":526.91,"free":3490.24},{"epoch":26124687,"idl":99.88,"recv":0,"send":0.02,"writ":0.18,"used":526.97,"free":3490.17},{"epoch":26124688,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":527.01,"free":3490.13},{"epoch":26124689,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":527.33,"free":3489.8},{"epoch":26124690,"idl":99.68,"recv":0,"send":0,"writ":0.34,"used":526.78,"free":3490.36},{"epoch":26124691,"idl":99.85,"recv":0,"send":0.01,"writ":0.19,"used":526.67,"free":3490.47},{"epoch":26124692,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":526.7,"free":3490.44},{"epoch":26124693,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":526.7,"free":3490.43},{"epoch":26124694,"idl":99.74,"recv":0,"send":0,"writ":0.43,"used":526.91,"free":3490.22},{"epoch":26124695,"idl":99.71,"recv":0,"send":0,"writ":0.46,"used":527.21,"free":3489.93},{"epoch":26124696,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":527.19,"free":3489.95},{"epoch":26124697,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":527.16,"free":3489.97},{"epoch":26124698,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":527.13,"free":3490},{"epoch":26124699,"idl":99.67,"recv":0,"send":0,"writ":0.27,"used":526.93,"free":3490.18},{"epoch":26124700,"idl":99.45,"recv":0,"send":0,"writ":0.74,"used":527.78,"free":3489.35},{"epoch":26124701,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":526.99,"free":3490.14},{"epoch":26124702,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":526.96,"free":3490.16},{"epoch":26124703,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":526.92,"free":3490.19},{"epoch":26124704,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":526.89,"free":3490.23},{"epoch":26124705,"idl":99.66,"recv":0,"send":0,"writ":0.81,"used":527.38,"free":3489.77},{"epoch":26124706,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":526.69,"free":3490.45},{"epoch":26124707,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":526.76,"free":3490.37},{"epoch":26124708,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":526.73,"free":3490.4},{"epoch":26124709,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":526.69,"free":3490.43},{"epoch":26124710,"idl":99.6,"recv":0,"send":0,"writ":0.74,"used":527.32,"free":3489.81},{"epoch":26124711,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":527.13,"free":3489.99},{"epoch":26124712,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":527.1,"free":3490.02},{"epoch":26124713,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":527.16,"free":3489.95},{"epoch":26124714,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":527.26,"free":3489.85},{"epoch":26124715,"idl":99.67,"recv":0,"send":0,"writ":0.68,"used":527.61,"free":3489.52},{"epoch":26124716,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":527.21,"free":3489.91},{"epoch":26124717,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":527.18,"free":3489.94},{"epoch":26124718,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.17,"used":527.13,"free":3489.99},{"epoch":26124719,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":527.19,"free":3489.92},{"epoch":26124720,"idl":99.42,"recv":0,"send":0,"writ":0.57,"used":527.6,"free":3489.53},{"epoch":26124721,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":527.22,"free":3489.9},{"epoch":26124722,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":527.19,"free":3489.93},{"epoch":26124723,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":527.16,"free":3489.96},{"epoch":26124724,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":527.12,"free":3489.99},{"epoch":26124725,"idl":99.59,"recv":0,"send":0,"writ":0.76,"used":527.05,"free":3490.07},{"epoch":26124726,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":527.24,"free":3489.88},{"epoch":26124727,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":527.24,"free":3489.88},{"epoch":26124728,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":527.2,"free":3489.91},{"epoch":26124729,"idl":99.62,"recv":0,"send":0,"writ":0.27,"used":527.44,"free":3489.65},{"epoch":26124730,"idl":99.54,"recv":0,"send":0,"writ":0.61,"used":527.04,"free":3490.06},{"epoch":26124731,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":526.87,"free":3490.22},{"epoch":26124732,"idl":99.81,"recv":0,"send":0.01,"writ":0.16,"used":526.91,"free":3490.18},{"epoch":26124733,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":526.99,"free":3490.1},{"epoch":26124734,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":526.96,"free":3490.13},{"epoch":26124735,"idl":99.65,"recv":0,"send":0,"writ":0.33,"used":526.96,"free":3490.14},{"epoch":26124736,"idl":98.77,"recv":0,"send":0,"writ":0.55,"used":527.5,"free":3489.59},{"epoch":26124737,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":527.13,"free":3489.96},{"epoch":26124738,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":527.1,"free":3489.99},{"epoch":26124739,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":527.17,"free":3489.91},{"epoch":26124740,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":526.29,"free":3490.81},{"epoch":26124741,"idl":99.62,"recv":0.01,"send":0.01,"writ":0.58,"used":526.79,"free":3490.31},{"epoch":26124742,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":526.43,"free":3490.66},{"epoch":26124743,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":526.4,"free":3490.69},{"epoch":26124744,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":526.37,"free":3490.72},{"epoch":26124745,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":527.08,"free":3490.02},{"epoch":26124746,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":527.87,"free":3489.22},{"epoch":26124747,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":527.21,"free":3489.88},{"epoch":26124748,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":527.17,"free":3489.91},{"epoch":26124749,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":527.14,"free":3489.94},{"epoch":26124750,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":527.37,"free":3489.73},{"epoch":26124751,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":527.56,"free":3489.54},{"epoch":26124752,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":527.15,"free":3489.95},{"epoch":26124753,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":527.11,"free":3489.98},{"epoch":26124754,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":526.7,"free":3490.39},{"epoch":26124755,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":526.68,"free":3490.42},{"epoch":26124756,"idl":99.62,"recv":0,"send":0,"writ":0.55,"used":527.14,"free":3489.95},{"epoch":26124757,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":526.86,"free":3490.22},{"epoch":26124758,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":526.83,"free":3490.25},{"epoch":26124759,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":526.91,"free":3490.15},{"epoch":26124760,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":527.24,"free":3489.84},{"epoch":26124761,"idl":99.66,"recv":0,"send":0,"writ":0.5,"used":527.67,"free":3489.4},{"epoch":26124762,"idl":99.76,"recv":0,"send":0,"writ":0.19,"used":527.44,"free":3489.63},{"epoch":26124763,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":527.4,"free":3489.66},{"epoch":26124764,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":527.37,"free":3489.69},{"epoch":26124765,"idl":99.55,"recv":0,"send":0,"writ":0.34,"used":527.11,"free":3489.97},{"epoch":26124766,"idl":99.59,"recv":0,"send":0,"writ":0.54,"used":527.58,"free":3489.49},{"epoch":26124767,"idl":99.73,"recv":0,"send":0,"writ":0.19,"used":526.49,"free":3490.57},{"epoch":26124768,"idl":99.71,"recv":0,"send":0,"writ":0.15,"used":526.46,"free":3490.6},{"epoch":26124769,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":526.42,"free":3490.63},{"epoch":26124770,"idl":99.49,"recv":0,"send":0,"writ":0.3,"used":526.21,"free":3490.86},{"epoch":26124771,"idl":99.62,"recv":0,"send":0,"writ":0.3,"used":526.55,"free":3490.52},{"epoch":26124772,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":527.33,"free":3489.73},{"epoch":26124773,"idl":99.68,"recv":0,"send":0,"writ":0.14,"used":527.46,"free":3489.6},{"epoch":26124774,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":527.45,"free":3489.6},{"epoch":26124775,"idl":99.59,"recv":0,"send":0,"writ":0.38,"used":526.25,"free":3490.81},{"epoch":26124776,"idl":99.7,"recv":0,"send":0,"writ":0.16,"used":526.18,"free":3490.88},{"epoch":26124777,"idl":99.59,"recv":0,"send":0,"writ":0.55,"used":527.16,"free":3489.9},{"epoch":26124778,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":526.85,"free":3490.2},{"epoch":26124779,"idl":99.78,"recv":0,"send":0,"writ":0.19,"used":527.05,"free":3490},{"epoch":26124780,"idl":98.67,"recv":0,"send":0,"writ":10.38,"used":526.75,"free":3490.56},{"epoch":26124781,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":526.62,"free":3490.73},{"epoch":26124782,"idl":99.59,"recv":0,"send":0,"writ":0.58,"used":526.93,"free":3490.4},{"epoch":26124783,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":526.55,"free":3490.78},{"epoch":26124784,"idl":99.76,"recv":0,"send":0,"writ":0.13,"used":526.51,"free":3490.81},{"epoch":26124785,"idl":99.55,"recv":0,"send":0,"writ":0.32,"used":526.75,"free":3490.62},{"epoch":26124786,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":526.72,"free":3490.66},{"epoch":26124787,"idl":99.61,"recv":0,"send":0,"writ":0.55,"used":527.52,"free":3489.85},{"epoch":26124788,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":526.84,"free":3490.53},{"epoch":26124789,"idl":99.59,"recv":0,"send":0,"writ":0.27,"used":526.82,"free":3490.53},{"epoch":26124790,"idl":99.67,"recv":0,"send":0,"writ":0.31,"used":526.56,"free":3490.81},{"epoch":26124791,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":526.53,"free":3490.84},{"epoch":26124792,"idl":99.65,"recv":0.01,"send":0.01,"writ":0.53,"used":526.85,"free":3490.51},{"epoch":26124793,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":526.54,"free":3490.81},{"epoch":26124794,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":526.61,"free":3490.74},{"epoch":26124795,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":526.85,"free":3490.52},{"epoch":26124796,"idl":99.78,"recv":0,"send":0.01,"writ":0.19,"used":526.82,"free":3490.56},{"epoch":26124797,"idl":94.94,"recv":0.3,"send":0.01,"writ":78.85,"used":540.87,"free":3475.99},{"epoch":26124798,"idl":99.61,"recv":0,"send":0,"writ":181.64,"used":529.1,"free":3488.04},{"epoch":26124799,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":529.17,"free":3487.96},{"epoch":26124800,"idl":99.6,"recv":0,"send":0,"writ":0.31,"used":529.24,"free":3487.91},{"epoch":26124801,"idl":99.71,"recv":0.01,"send":0.01,"writ":0.17,"used":529.19,"free":3487.96},{"epoch":26124802,"idl":99.65,"recv":0,"send":0,"writ":0.58,"used":528.65,"free":3488.51},{"epoch":26124803,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":526.71,"free":3490.48},{"epoch":26124804,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":526.67,"free":3490.51},{"epoch":26124805,"idl":99.6,"recv":0,"send":0,"writ":0.33,"used":525.85,"free":3491.35},{"epoch":26124806,"idl":99.75,"recv":0,"send":0,"writ":0.13,"used":525.83,"free":3491.37},{"epoch":26124807,"idl":99.63,"recv":0,"send":0,"writ":0.4,"used":526.48,"free":3490.71},{"epoch":26124808,"idl":99.41,"recv":0,"send":0,"writ":0.29,"used":526.49,"free":3490.7},{"epoch":26124809,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":526.47,"free":3490.72},{"epoch":26124810,"idl":99.56,"recv":0,"send":0,"writ":0.31,"used":525.75,"free":3491.46},{"epoch":26124811,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":525.68,"free":3491.52},{"epoch":26124812,"idl":99.62,"recv":0,"send":0,"writ":0.3,"used":526.17,"free":3491.02},{"epoch":26124813,"idl":99.74,"recv":0,"send":0,"writ":0.4,"used":526.98,"free":3490.22},{"epoch":26124814,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":526.74,"free":3490.44},{"epoch":26124815,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":526.97,"free":3490.23},{"epoch":26124816,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":526.94,"free":3490.25},{"epoch":26124817,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":527.25,"free":3489.94},{"epoch":26124818,"idl":99.74,"recv":0,"send":0,"writ":0.36,"used":526.71,"free":3490.49},{"epoch":26124819,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":527.03,"free":3490.17},{"epoch":26124820,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":526.78,"free":3490.43},{"epoch":26124821,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":526.74,"free":3490.47},{"epoch":26124822,"idl":99.66,"recv":0,"send":0,"writ":0.14,"used":526.7,"free":3490.5},{"epoch":26124823,"idl":99.64,"recv":0,"send":0,"writ":0.52,"used":527.57,"free":3489.63},{"epoch":26124824,"idl":99.71,"recv":0,"send":0,"writ":0.15,"used":526.88,"free":3490.33},{"epoch":26124825,"idl":99.53,"recv":0,"send":0,"writ":0.32,"used":527.07,"free":3490.17},{"epoch":26124826,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":527.06,"free":3490.17},{"epoch":26124827,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":527.03,"free":3490.2},{"epoch":26124828,"idl":99.52,"recv":0,"send":0,"writ":0.57,"used":527.27,"free":3489.96},{"epoch":26124829,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":526.72,"free":3490.5},{"epoch":26124830,"idl":99.63,"recv":0,"send":0,"writ":0.32,"used":527.2,"free":3490.04},{"epoch":26124831,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":527.17,"free":3490.06},{"epoch":26124832,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":527.29,"free":3489.94},{"epoch":26124833,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":526.49,"free":3490.73},{"epoch":26124834,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":525.53,"free":3491.69},{"epoch":26124835,"idl":99.58,"recv":0,"send":0,"writ":0.32,"used":526.49,"free":3490.74},{"epoch":26124836,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":526.48,"free":3490.75},{"epoch":26124837,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":526.45,"free":3490.77},{"epoch":26124838,"idl":99.66,"recv":0,"send":0,"writ":0.47,"used":526.28,"free":3490.94},{"epoch":26124839,"idl":99.75,"recv":0,"send":0,"writ":0.2,"used":525.55,"free":3491.67},{"epoch":26124840,"idl":99.51,"recv":0,"send":0,"writ":0.34,"used":527.06,"free":3490.17},{"epoch":26124841,"idl":99.62,"recv":0,"send":0,"writ":0.17,"used":527.01,"free":3490.21},{"epoch":26124842,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":526.98,"free":3490.24},{"epoch":26124843,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":527.5,"free":3489.72},{"epoch":26124844,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":526.92,"free":3490.29},{"epoch":26124845,"idl":99.61,"recv":0,"send":0,"writ":0.29,"used":526.92,"free":3490.31},{"epoch":26124846,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":526.99,"free":3490.24},{"epoch":26124847,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":527.04,"free":3490.18},{"epoch":26124848,"idl":99.59,"recv":0,"send":0,"writ":0.54,"used":527.36,"free":3489.86},{"epoch":26124849,"idl":99.61,"recv":0,"send":0,"writ":0.27,"used":526.98,"free":3490.22},{"epoch":26124850,"idl":99.51,"recv":0,"send":0,"writ":0.26,"used":526.01,"free":3491.2},{"epoch":26124851,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":525.94,"free":3491.26},{"epoch":26124852,"idl":99.71,"recv":0,"send":0.01,"writ":0.14,"used":525.91,"free":3491.29},{"epoch":26124853,"idl":99.41,"recv":0,"send":0,"writ":0.4,"used":526.53,"free":3490.66},{"epoch":26124854,"idl":99.57,"recv":0,"send":0,"writ":0.28,"used":527.01,"free":3490.18},{"epoch":26124855,"idl":99.61,"recv":0,"send":0,"writ":0.28,"used":527.24,"free":3489.97},{"epoch":26124856,"idl":99.54,"recv":0,"send":0,"writ":0.15,"used":527.2,"free":3490},{"epoch":26124857,"idl":99.45,"recv":0,"send":0,"writ":0.23,"used":527.17,"free":3490.03},{"epoch":26124858,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":527.14,"free":3490.05},{"epoch":26124859,"idl":99.54,"recv":0,"send":0,"writ":0.56,"used":527.39,"free":3489.79},{"epoch":26124860,"idl":99.63,"recv":0,"send":0,"writ":0.25,"used":527.28,"free":3489.93},{"epoch":26124861,"idl":99.71,"recv":0.01,"send":0.01,"writ":0.16,"used":527.26,"free":3489.94},{"epoch":26124862,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":527.22,"free":3489.98},{"epoch":26124863,"idl":99.66,"recv":0,"send":0,"writ":0.15,"used":527.19,"free":3490},{"epoch":26124864,"idl":99.58,"recv":0,"send":0,"writ":0.55,"used":527.51,"free":3489.68},{"epoch":26124865,"idl":99.35,"recv":0,"send":0,"writ":0.27,"used":525.93,"free":3491.27},{"epoch":26124866,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":525.98,"free":3491.22},{"epoch":26124867,"idl":99.7,"recv":0,"send":0,"writ":0.16,"used":526.04,"free":3491.15},{"epoch":26124868,"idl":99.69,"recv":0,"send":0,"writ":0.15,"used":526.01,"free":3491.18},{"epoch":26124869,"idl":99.41,"recv":0,"send":0,"writ":0.53,"used":526.8,"free":3490.39},{"epoch":26124870,"idl":99.46,"recv":0,"send":0,"writ":0.27,"used":526.95,"free":3490.25},{"epoch":26124871,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":526.9,"free":3490.29},{"epoch":26124872,"idl":99.64,"recv":0,"send":0,"writ":0.15,"used":526.88,"free":3490.31},{"epoch":26124873,"idl":99.68,"recv":0,"send":0,"writ":0.17,"used":526.9,"free":3490.28},{"epoch":26124874,"idl":99.54,"recv":0,"send":0,"writ":0.55,"used":527.21,"free":3489.97},{"epoch":26124875,"idl":99.61,"recv":0,"send":0,"writ":0.27,"used":527.26,"free":3489.94},{"epoch":26124876,"idl":99.74,"recv":0,"send":0,"writ":0.13,"used":527.24,"free":3489.96},{"epoch":26124877,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":527.21,"free":3489.98},{"epoch":26124878,"idl":99.67,"recv":0,"send":0,"writ":0.14,"used":527.17,"free":3490.02},{"epoch":26124879,"idl":99.4,"recv":0,"send":0,"writ":0.66,"used":527.33,"free":3489.83},{"epoch":26124880,"idl":99.52,"recv":0,"send":0,"writ":0.32,"used":526.09,"free":3491.09},{"epoch":26124881,"idl":99.72,"recv":0,"send":0,"writ":0.13,"used":526.05,"free":3491.13},{"epoch":26124882,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":526.02,"free":3491.15},{"epoch":26124883,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":525.99,"free":3491.18},{"epoch":26124884,"idl":99.57,"recv":0,"send":0,"writ":0.42,"used":526.66,"free":3490.52},{"epoch":26124885,"idl":99.7,"recv":0,"send":0,"writ":0.38,"used":527.41,"free":3489.78},{"epoch":26124886,"idl":99.63,"recv":0,"send":0,"writ":0.16,"used":527.4,"free":3489.79},{"epoch":26124887,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":527.55,"free":3489.64},{"epoch":26124888,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":527.52,"free":3489.67},{"epoch":26124889,"idl":99.56,"recv":0,"send":0,"writ":0.49,"used":527.84,"free":3489.34},{"epoch":26124890,"idl":99.55,"recv":0,"send":0,"writ":0.3,"used":527.48,"free":3489.71},{"epoch":26124891,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":527.45,"free":3489.75},{"epoch":26124892,"idl":99.69,"recv":0,"send":0,"writ":0.14,"used":527.41,"free":3489.78},{"epoch":26124893,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":527.37,"free":3489.81},{"epoch":26124894,"idl":99.62,"recv":0,"send":0,"writ":0.4,"used":527.86,"free":3489.32},{"epoch":26124895,"idl":99.65,"recv":0,"send":0,"writ":0.39,"used":527.28,"free":3489.92},{"epoch":26124896,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":527.23,"free":3489.96},{"epoch":26124897,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":527.2,"free":3489.99},{"epoch":26124898,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":527.17,"free":3490.01},{"epoch":26124899,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":527.14,"free":3490.04},{"epoch":26124900,"idl":99.17,"recv":0,"send":0,"writ":0.7,"used":526.31,"free":3490.89},{"epoch":26124901,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":525.81,"free":3491.39},{"epoch":26124902,"idl":99.65,"recv":0,"send":0,"writ":0.16,"used":525.77,"free":3491.42},{"epoch":26124903,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":525.74,"free":3491.45},{"epoch":26124904,"idl":99.74,"recv":0,"send":0.01,"writ":0.16,"used":525.7,"free":3491.47},{"epoch":26124905,"idl":99.49,"recv":0,"send":0,"writ":0.73,"used":527.67,"free":3489.52},{"epoch":26124906,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":527.45,"free":3489.74},{"epoch":26124907,"idl":99.69,"recv":0,"send":0,"writ":0.18,"used":527.52,"free":3489.67},{"epoch":26124908,"idl":99.7,"recv":0,"send":0,"writ":0.18,"used":527.47,"free":3489.72},{"epoch":26124909,"idl":99.57,"recv":0,"send":0,"writ":0.29,"used":527.45,"free":3489.71},{"epoch":26124910,"idl":99.39,"recv":0,"send":0,"writ":0.63,"used":527.67,"free":3489.51},{"epoch":26124911,"idl":99.69,"recv":0,"send":0,"writ":0.16,"used":527.14,"free":3490.04},{"epoch":26124912,"idl":99.63,"recv":0.01,"send":0.01,"writ":0.14,"used":527.2,"free":3489.96},{"epoch":26124913,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":527.25,"free":3489.91},{"epoch":26124914,"idl":99.73,"recv":0,"send":0,"writ":0.13,"used":527.23,"free":3489.93},{"epoch":26124915,"idl":99.38,"recv":0,"send":0,"writ":0.71,"used":527.66,"free":3489.51},{"epoch":26124916,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":527.18,"free":3489.99},{"epoch":26124917,"idl":99.78,"recv":0,"send":0,"writ":0.22,"used":526.91,"free":3490.26},{"epoch":26124918,"idl":99.69,"recv":0,"send":0,"writ":0.21,"used":526.88,"free":3490.3},{"epoch":26124919,"idl":99.73,"recv":0,"send":0,"writ":0.19,"used":526.99,"free":3490.18},{"epoch":26124920,"idl":99.33,"recv":0,"send":0,"writ":0.7,"used":527.76,"free":3489.44},{"epoch":26124921,"idl":99.68,"recv":0.01,"send":0.01,"writ":0.2,"used":526.77,"free":3490.42},{"epoch":26124922,"idl":99.73,"recv":0,"send":0,"writ":0.2,"used":526.73,"free":3490.46},{"epoch":26124923,"idl":99.71,"recv":0,"send":0,"writ":0.2,"used":526.7,"free":3490.49},{"epoch":26124924,"idl":99.68,"recv":0,"send":0.02,"writ":0.25,"used":526.65,"free":3490.53},{"epoch":26124925,"idl":99.44,"recv":0,"send":0,"writ":0.54,"used":527.49,"free":3489.71},{"epoch":26124926,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":527.29,"free":3489.9},{"epoch":26124927,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":527.25,"free":3489.93},{"epoch":26124928,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":527.22,"free":3489.97},{"epoch":26124929,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":527.19,"free":3489.99},{"epoch":26124930,"idl":99.44,"recv":0,"send":0,"writ":0.56,"used":528,"free":3489.2},{"epoch":26124931,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":527.4,"free":3489.8},{"epoch":26124932,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":527.53,"free":3489.66},{"epoch":26124933,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":527.48,"free":3489.71},{"epoch":26124934,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":526.99,"free":3490.19},{"epoch":26124935,"idl":99.64,"recv":0,"send":0,"writ":0.57,"used":527.83,"free":3489.37},{"epoch":26124936,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":527.69,"free":3489.51},{"epoch":26124937,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":527.64,"free":3489.55},{"epoch":26124938,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":527.03,"free":3490.15},{"epoch":26124939,"idl":99.55,"recv":0,"send":0,"writ":0.28,"used":526.77,"free":3490.39},{"epoch":26124940,"idl":99.58,"recv":0,"send":0,"writ":0.29,"used":526.51,"free":3490.67},{"epoch":26124941,"idl":99.57,"recv":0,"send":0,"writ":0.6,"used":526.3,"free":3490.88},{"epoch":26124942,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":525.46,"free":3491.71},{"epoch":26124943,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":525.42,"free":3491.74},{"epoch":26124944,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":525.39,"free":3491.77},{"epoch":26124945,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":526.75,"free":3490.42},{"epoch":26124946,"idl":99.61,"recv":0,"send":0,"writ":0.56,"used":527.22,"free":3489.95},{"epoch":26124947,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":526.72,"free":3490.44},{"epoch":26124948,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":526.69,"free":3490.46},{"epoch":26124949,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":526.66,"free":3490.49},{"epoch":26124950,"idl":99.65,"recv":0,"send":0,"writ":0.29,"used":526.44,"free":3490.73},{"epoch":26124951,"idl":99.62,"recv":0,"send":0,"writ":0.59,"used":526.93,"free":3490.23},{"epoch":26124952,"idl":99.68,"recv":0,"send":0,"writ":0.15,"used":526.77,"free":3490.4},{"epoch":26124953,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":526.74,"free":3490.42},{"epoch":26124954,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":526.7,"free":3490.45},{"epoch":26124955,"idl":99.67,"recv":0,"send":0,"writ":0.33,"used":525.97,"free":3491.2},{"epoch":26124956,"idl":99.65,"recv":0,"send":0,"writ":0.53,"used":526.45,"free":3490.71},{"epoch":26124957,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":526.4,"free":3490.76},{"epoch":26124958,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":526.52,"free":3490.64},{"epoch":26124959,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":526.49,"free":3490.67},{"epoch":26124960,"idl":99.36,"recv":0,"send":0,"writ":0.26,"used":526.48,"free":3490.69},{"epoch":26124961,"idl":99.61,"recv":0,"send":0,"writ":0.52,"used":526.99,"free":3490.18},{"epoch":26124962,"idl":99.72,"recv":0,"send":0,"writ":0.23,"used":526.89,"free":3490.28},{"epoch":26124963,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":526.85,"free":3490.31},{"epoch":26124964,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":527,"free":3490.16},{"epoch":26124965,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":526.78,"free":3490.39},{"epoch":26124966,"idl":99.68,"recv":0,"send":0,"writ":0.43,"used":527.45,"free":3489.71},{"epoch":26124967,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":526.7,"free":3490.46},{"epoch":26124968,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":526.67,"free":3490.49},{"epoch":26124969,"idl":99.5,"recv":0,"send":0,"writ":0.28,"used":526.66,"free":3490.5},{"epoch":26124970,"idl":99.65,"recv":0,"send":0,"writ":0.27,"used":526.53,"free":3490.64},{"epoch":26124971,"idl":99.66,"recv":0.01,"send":0.02,"writ":0.38,"used":527.07,"free":3490.1},{"epoch":26124972,"idl":99.82,"recv":0,"send":0.01,"writ":0.39,"used":526.89,"free":3490.27},{"epoch":26124973,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":526.96,"free":3490.19},{"epoch":26124974,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":527,"free":3490.17},{"epoch":26124975,"idl":99.56,"recv":0,"send":0,"writ":0.28,"used":524.81,"free":3492.38},{"epoch":26124976,"idl":99.66,"recv":0,"send":0,"writ":0.15,"used":524.73,"free":3492.45},{"epoch":26124977,"idl":99.59,"recv":0,"send":0,"writ":0.58,"used":526.79,"free":3490.38},{"epoch":26124978,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":526.64,"free":3490.53},{"epoch":26124979,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":526.69,"free":3490.48},{"epoch":26124980,"idl":99.61,"recv":0,"send":0,"writ":0.32,"used":526.79,"free":3490.39},{"epoch":26124981,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.14,"used":526.75,"free":3490.43},{"epoch":26124982,"idl":99.6,"recv":0,"send":0,"writ":0.62,"used":527.28,"free":3489.89},{"epoch":26124983,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":526.93,"free":3490.24},{"epoch":26124984,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":526.9,"free":3490.27},{"epoch":26124985,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":526.18,"free":3491},{"epoch":26124986,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":526.23,"free":3490.95},{"epoch":26124987,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":526.63,"free":3490.54},{"epoch":26124988,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":526.24,"free":3490.93},{"epoch":26124989,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":526.21,"free":3490.95},{"epoch":26124990,"idl":99.43,"recv":0,"send":0,"writ":0.27,"used":526.19,"free":3490.99},{"epoch":26124991,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":526.16,"free":3491.02},{"epoch":26124992,"idl":99.62,"recv":0,"send":0,"writ":0.45,"used":526.95,"free":3490.22},{"epoch":26124993,"idl":99.8,"recv":0,"send":0,"writ":0.24,"used":527.01,"free":3490.16},{"epoch":26124994,"idl":99.79,"recv":0,"send":0,"writ":0.19,"used":526.74,"free":3490.42},{"epoch":26124995,"idl":99.55,"recv":0,"send":0,"writ":0.29,"used":526.72,"free":3490.45},{"epoch":26124996,"idl":99.6,"recv":0,"send":0,"writ":0.14,"used":526.69,"free":3490.48},{"epoch":26124997,"idl":99.69,"recv":0,"send":0,"writ":0.52,"used":527.11,"free":3490.06},{"epoch":26124998,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":526.86,"free":3490.3},{"epoch":26124999,"idl":99.7,"recv":0,"send":0,"writ":0.28,"used":526.91,"free":3490.23},{"epoch":26125000,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":527.01,"free":3490.15},{"epoch":26125001,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":526.98,"free":3490.18},{"epoch":26125002,"idl":99.63,"recv":0,"send":0,"writ":0.41,"used":527.26,"free":3489.89},{"epoch":26125003,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":525.68,"free":3491.47},{"epoch":26125004,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":525.64,"free":3491.51},{"epoch":26125005,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":527.09,"free":3490.09},{"epoch":26125006,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":527.26,"free":3489.92},{"epoch":26125007,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":527.6,"free":3489.57},{"epoch":26125008,"idl":99.76,"recv":0,"send":0,"writ":0.4,"used":526.96,"free":3490.2},{"epoch":26125009,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":526.92,"free":3490.24},{"epoch":26125010,"idl":99.63,"recv":0,"send":0,"writ":0.28,"used":527.17,"free":3490.01},{"epoch":26125011,"idl":99.77,"recv":0,"send":0,"writ":0.13,"used":527.14,"free":3490.04},{"epoch":26125012,"idl":99.68,"recv":0,"send":0,"writ":0.33,"used":527.53,"free":3489.64},{"epoch":26125013,"idl":99.82,"recv":0,"send":0,"writ":0.43,"used":526.02,"free":3491.14},{"epoch":26125014,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":525.99,"free":3491.17},{"epoch":26125015,"idl":99.63,"recv":0,"send":0,"writ":0.27,"used":525.02,"free":3492.16},{"epoch":26125016,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":524.97,"free":3492.21},{"epoch":26125017,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":524.93,"free":3492.24},{"epoch":26125018,"idl":99.61,"recv":0,"send":0,"writ":0.55,"used":527.52,"free":3489.65},{"epoch":26125019,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":527.26,"free":3489.9},{"epoch":26125020,"idl":99.28,"recv":0,"send":0,"writ":0.26,"used":527.05,"free":3490.13},{"epoch":26125021,"idl":99.54,"recv":0,"send":0,"writ":0.16,"used":526.97,"free":3490.21},{"epoch":26125022,"idl":99.71,"recv":0,"send":0,"writ":0.17,"used":526.94,"free":3490.23},{"epoch":26125023,"idl":99.62,"recv":0,"send":0,"writ":0.53,"used":526.57,"free":3490.59},{"epoch":26125024,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":525.87,"free":3491.29},{"epoch":26125025,"idl":99.58,"recv":0.03,"send":0.08,"writ":0.31,"used":526.44,"free":3490.74},{"epoch":26125026,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":526.38,"free":3490.79},{"epoch":26125027,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":526.47,"free":3490.7},{"epoch":26125028,"idl":99.61,"recv":0,"send":0,"writ":0.54,"used":526.86,"free":3490.3},{"epoch":26125029,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":527.19,"free":3489.95},{"epoch":26125030,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":527.43,"free":3489.73},{"epoch":26125031,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":527.4,"free":3489.75},{"epoch":26125032,"idl":99.78,"recv":0,"send":0.01,"writ":0.14,"used":527.37,"free":3489.78},{"epoch":26125033,"idl":99.71,"recv":0,"send":0,"writ":0.46,"used":527.56,"free":3489.57},{"epoch":26125034,"idl":99.74,"recv":0,"send":0,"writ":0.24,"used":527.19,"free":3489.93},{"epoch":26125035,"idl":99.62,"recv":0,"send":0,"writ":0.27,"used":527.21,"free":3489.93},{"epoch":26125036,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":527.18,"free":3489.95},{"epoch":26125037,"idl":99.69,"recv":0,"send":0,"writ":0.19,"used":527.15,"free":3489.98},{"epoch":26125038,"idl":99.69,"recv":0,"send":0,"writ":0.51,"used":527.76,"free":3489.36},{"epoch":26125039,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":527.08,"free":3490.05},{"epoch":26125040,"idl":99.68,"recv":0,"send":0,"writ":0.27,"used":527.17,"free":3489.97},{"epoch":26125041,"idl":99.79,"recv":0.01,"send":0.01,"writ":0.14,"used":527.24,"free":3489.89},{"epoch":26125042,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":527.21,"free":3489.92},{"epoch":26125043,"idl":99.66,"recv":0,"send":0,"writ":0.43,"used":527.68,"free":3489.45},{"epoch":26125044,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":527.4,"free":3489.72},{"epoch":26125045,"idl":99.66,"recv":0,"send":0,"writ":0.27,"used":527.15,"free":3489.99},{"epoch":26125046,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":527.11,"free":3490.02},{"epoch":26125047,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":527.18,"free":3489.95},{"epoch":26125048,"idl":99.58,"recv":0,"send":0,"writ":0.4,"used":527.55,"free":3489.57},{"epoch":26125049,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":526.95,"free":3490.18},{"epoch":26125050,"idl":99.36,"recv":0,"send":0.01,"writ":0.28,"used":525.94,"free":3491.2},{"epoch":26125051,"idl":99.5,"recv":0,"send":0,"writ":0.16,"used":525.88,"free":3491.25},{"epoch":26125052,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":525.93,"free":3491.2},{"epoch":26125053,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":526.03,"free":3491.09},{"epoch":26125054,"idl":99.63,"recv":0,"send":0,"writ":0.57,"used":527.55,"free":3489.56},{"epoch":26125055,"idl":99.52,"recv":0,"send":0,"writ":0.27,"used":527.24,"free":3489.9},{"epoch":26125056,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":527.16,"free":3489.97},{"epoch":26125057,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":527.13,"free":3490},{"epoch":26125058,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":527.09,"free":3490.03},{"epoch":26125059,"idl":99.39,"recv":0,"send":0,"writ":0.79,"used":527.57,"free":3489.53},{"epoch":26125060,"idl":99.47,"recv":0,"send":0,"writ":0.26,"used":527.48,"free":3489.63},{"epoch":26125061,"idl":99.74,"recv":0,"send":0,"writ":0.17,"used":527.47,"free":3489.65},{"epoch":26125062,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":527.43,"free":3489.68},{"epoch":26125063,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":527.39,"free":3489.71},{"epoch":26125064,"idl":99.56,"recv":0,"send":0,"writ":0.56,"used":527.9,"free":3489.22},{"epoch":26125065,"idl":99.62,"recv":0,"send":0,"writ":0.32,"used":526.16,"free":3490.97},{"epoch":26125066,"idl":99.77,"recv":0,"send":0,"writ":0.39,"used":525.98,"free":3491.17},{"epoch":26125067,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":526.01,"free":3491.14},{"epoch":26125068,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":525.97,"free":3491.17},{"epoch":26125069,"idl":99.7,"recv":0,"send":0,"writ":0.5,"used":527.01,"free":3490.13},{"epoch":26125070,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":527.15,"free":3490.01},{"epoch":26125071,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":527.11,"free":3490.06},{"epoch":26125072,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":527.23,"free":3489.94},{"epoch":26125073,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":527.22,"free":3489.94},{"epoch":26125074,"idl":99.54,"recv":0,"send":0,"writ":0.51,"used":527.66,"free":3489.5},{"epoch":26125075,"idl":99.61,"recv":0,"send":0,"writ":0.37,"used":527.17,"free":3490},{"epoch":26125076,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":527.13,"free":3490.03},{"epoch":26125077,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":527.11,"free":3490.05},{"epoch":26125078,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":527.15,"free":3490.01},{"epoch":26125079,"idl":99.58,"recv":0,"send":0,"writ":0.44,"used":528.03,"free":3489.15},{"epoch":26125080,"idl":99.51,"recv":0,"send":0,"writ":0.39,"used":527.47,"free":3489.72},{"epoch":26125081,"idl":99.68,"recv":0,"send":0,"writ":0.16,"used":527.44,"free":3489.74},{"epoch":26125082,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":527.41,"free":3489.77},{"epoch":26125083,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":527.37,"free":3489.81},{"epoch":26125084,"idl":99.67,"recv":0,"send":0,"writ":0.5,"used":527.97,"free":3489.2},{"epoch":26125085,"idl":99.6,"recv":0,"send":0,"writ":0.32,"used":527.26,"free":3489.93},{"epoch":26125086,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":527.26,"free":3489.93},{"epoch":26125087,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":527.21,"free":3489.97},{"epoch":26125088,"idl":99.7,"recv":0,"send":0,"writ":0.15,"used":527.18,"free":3490},{"epoch":26125089,"idl":99.54,"recv":0,"send":0.02,"writ":0.3,"used":527.62,"free":3489.53},{"epoch":26125090,"idl":99.3,"recv":0,"send":0,"writ":0.62,"used":526.56,"free":3490.61},{"epoch":26125091,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":526.27,"free":3490.9},{"epoch":26125092,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.15,"used":526.22,"free":3490.95},{"epoch":26125093,"idl":99.58,"recv":0,"send":0,"writ":0.16,"used":525.96,"free":3491.2},{"epoch":26125094,"idl":99.67,"recv":0,"send":0,"writ":0.13,"used":525.93,"free":3491.22},{"epoch":26125095,"idl":99.37,"recv":0,"send":0,"writ":0.71,"used":526.5,"free":3490.66},{"epoch":26125096,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":526.12,"free":3491.04},{"epoch":26125097,"idl":99.69,"recv":0,"send":0,"writ":0.22,"used":526.17,"free":3490.98},{"epoch":26125098,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":526.25,"free":3490.9},{"epoch":26125099,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":526.22,"free":3490.93},{"epoch":26125100,"idl":99.48,"recv":0,"send":0,"writ":0.7,"used":527.43,"free":3489.73},{"epoch":26125101,"idl":99.68,"recv":0.01,"send":0.01,"writ":0.18,"used":526.67,"free":3490.48},{"epoch":26125102,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":526.64,"free":3490.51},{"epoch":26125103,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":526.6,"free":3490.55},{"epoch":26125104,"idl":99.65,"recv":0,"send":0,"writ":0.21,"used":526.65,"free":3490.49},{"epoch":26125105,"idl":99.44,"recv":0,"send":0,"writ":0.72,"used":526.74,"free":3490.42},{"epoch":26125106,"idl":99.77,"recv":0,"send":0,"writ":0.17,"used":526.17,"free":3490.99},{"epoch":26125107,"idl":99.5,"recv":0,"send":0,"writ":0.15,"used":526.14,"free":3491.01},{"epoch":26125108,"idl":99.67,"recv":0,"send":0,"writ":0.15,"used":526.11,"free":3491.04},{"epoch":26125109,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":526.17,"free":3490.97},{"epoch":26125110,"idl":99.48,"recv":0,"send":0,"writ":0.64,"used":527.18,"free":3489.98},{"epoch":26125111,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":526.71,"free":3490.45},{"epoch":26125112,"idl":99.74,"recv":0,"send":0,"writ":0.17,"used":526.68,"free":3490.47},{"epoch":26125113,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":526.64,"free":3490.51},{"epoch":26125114,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":526.38,"free":3490.76},{"epoch":26125115,"idl":99.56,"recv":0,"send":0,"writ":0.68,"used":526.81,"free":3490.35},{"epoch":26125116,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":526.68,"free":3490.48},{"epoch":26125117,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":526.73,"free":3490.42},{"epoch":26125118,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":526.7,"free":3490.45},{"epoch":26125119,"idl":99.48,"recv":0,"send":0,"writ":0.32,"used":526.91,"free":3490.21},{"epoch":26125120,"idl":99.41,"recv":0,"send":0,"writ":0.7,"used":527.4,"free":3489.74},{"epoch":26125121,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":526.62,"free":3490.51},{"epoch":26125122,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":526.66,"free":3490.47},{"epoch":26125123,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":526.71,"free":3490.41},{"epoch":26125124,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":526.66,"free":3490.48},{"epoch":26125125,"idl":99.52,"recv":0,"send":0,"writ":0.53,"used":526.98,"free":3490.18},{"epoch":26125126,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":526.64,"free":3490.5},{"epoch":26125127,"idl":99.73,"recv":0,"send":0,"writ":0.17,"used":526.73,"free":3490.41},{"epoch":26125128,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":526.69,"free":3490.45},{"epoch":26125129,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":526.63,"free":3490.5},{"epoch":26125130,"idl":99.42,"recv":0,"send":0,"writ":0.53,"used":527.05,"free":3490.1},{"epoch":26125131,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":526.98,"free":3490.16},{"epoch":26125132,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":526.93,"free":3490.21},{"epoch":26125133,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":526.88,"free":3490.25},{"epoch":26125134,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":526.85,"free":3490.29},{"epoch":26125135,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":526.74,"free":3490.41},{"epoch":26125136,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":527.29,"free":3489.85},{"epoch":26125137,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":526.92,"free":3490.22},{"epoch":26125138,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":526.88,"free":3490.26},{"epoch":26125139,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":526.83,"free":3490.3},{"epoch":26125140,"idl":99.42,"recv":0,"send":0,"writ":0.27,"used":527.2,"free":3489.95},{"epoch":26125141,"idl":99.6,"recv":0,"send":0,"writ":0.57,"used":527.53,"free":3489.62},{"epoch":26125142,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":526.67,"free":3490.47},{"epoch":26125143,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":526.62,"free":3490.52},{"epoch":26125144,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":526.57,"free":3490.56},{"epoch":26125145,"idl":99.59,"recv":0,"send":0,"writ":0.27,"used":525.53,"free":3491.62},{"epoch":26125146,"idl":99.58,"recv":0,"send":0,"writ":0.55,"used":526.96,"free":3490.19},{"epoch":26125147,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":527.18,"free":3489.96},{"epoch":26125148,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":527.15,"free":3489.99},{"epoch":26125149,"idl":99.57,"recv":0,"send":0,"writ":0.27,"used":526.86,"free":3490.25},{"epoch":26125150,"idl":99.65,"recv":0,"send":0,"writ":0.26,"used":526.6,"free":3490.53},{"epoch":26125151,"idl":99.63,"recv":0,"send":0,"writ":0.59,"used":527.09,"free":3490.03},{"epoch":26125152,"idl":99.79,"recv":0,"send":0.01,"writ":0.16,"used":526.96,"free":3490.16},{"epoch":26125153,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":526.93,"free":3490.19},{"epoch":26125154,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":526.9,"free":3490.22},{"epoch":26125155,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":527.13,"free":3490},{"epoch":26125156,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":527.34,"free":3489.78},{"epoch":26125157,"idl":99.8,"recv":0,"send":0,"writ":0.21,"used":526.81,"free":3490.31},{"epoch":26125158,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":526.93,"free":3490.19},{"epoch":26125159,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":526.93,"free":3490.18},{"epoch":26125160,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":526.92,"free":3490.21},{"epoch":26125161,"idl":95.87,"recv":0.04,"send":0.02,"writ":78.36,"used":539.95,"free":3477.93},{"epoch":26125162,"idl":99.72,"recv":0,"send":0,"writ":64.41,"used":529.32,"free":3487.69},{"epoch":26125163,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":529.3,"free":3487.71},{"epoch":26125164,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":529.26,"free":3487.74},{"epoch":26125165,"idl":98.41,"recv":0,"send":0,"writ":15.58,"used":532.76,"free":3484.45},{"epoch":26125166,"idl":99.52,"recv":0,"send":0,"writ":0.31,"used":529.92,"free":3487.06},{"epoch":26125167,"idl":99.74,"recv":0,"send":0,"writ":0.43,"used":526.82,"free":3490.22},{"epoch":26125168,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":526.9,"free":3490.15},{"epoch":26125169,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":526.88,"free":3490.16},{"epoch":26125170,"idl":99.65,"recv":0,"send":0,"writ":0.27,"used":526.87,"free":3490.19},{"epoch":26125171,"idl":96.3,"recv":1.86,"send":0.01,"writ":14.7,"used":534.08,"free":3480.68},{"epoch":26125172,"idl":99.08,"recv":0,"send":0,"writ":32.82,"used":529.51,"free":3486.62},{"epoch":26125173,"idl":99.71,"recv":0,"send":0,"writ":0.15,"used":528.97,"free":3487.16},{"epoch":26125174,"idl":99.7,"recv":0,"send":0,"writ":0.19,"used":528.5,"free":3487.62},{"epoch":26125175,"idl":99.59,"recv":0,"send":0,"writ":0.28,"used":529.41,"free":3486.73},{"epoch":26125176,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":528.39,"free":3487.77},{"epoch":26125177,"idl":99.64,"recv":0,"send":0,"writ":0.58,"used":527.22,"free":3488.96},{"epoch":26125178,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":526.85,"free":3489.33},{"epoch":26125179,"idl":99.57,"recv":0,"send":0,"writ":0.3,"used":527.07,"free":3489.09},{"epoch":26125180,"idl":99.59,"recv":0,"send":0,"writ":0.29,"used":526.82,"free":3489.35},{"epoch":26125181,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":526.78,"free":3489.39},{"epoch":26125182,"idl":99.61,"recv":0,"send":0,"writ":0.56,"used":527.28,"free":3488.9},{"epoch":26125183,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":526.97,"free":3489.22},{"epoch":26125184,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":527.04,"free":3489.14},{"epoch":26125185,"idl":99.57,"recv":0,"send":0,"writ":0.34,"used":527.12,"free":3489.07},{"epoch":26125186,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":527.08,"free":3489.1},{"epoch":26125187,"idl":99.6,"recv":0,"send":0,"writ":0.45,"used":527.75,"free":3488.43},{"epoch":26125188,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":527.27,"free":3488.91},{"epoch":26125189,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":527.24,"free":3488.94},{"epoch":26125190,"idl":99.6,"recv":0,"send":0,"writ":0.3,"used":527.23,"free":3488.97},{"epoch":26125191,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":527.3,"free":3488.89},{"epoch":26125192,"idl":99.53,"recv":0,"send":0,"writ":0.4,"used":527.51,"free":3488.67},{"epoch":26125193,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":526.83,"free":3489.35},{"epoch":26125194,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":526.79,"free":3489.38},{"epoch":26125195,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":527.06,"free":3489.13},{"epoch":26125196,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":527,"free":3489.19},{"epoch":26125197,"idl":99.67,"recv":0,"send":0,"writ":0.49,"used":527.42,"free":3488.77},{"epoch":26125198,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":527.28,"free":3488.9},{"epoch":26125199,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":527.33,"free":3488.84},{"epoch":26125200,"idl":99.4,"recv":0,"send":0,"writ":0.29,"used":527.33,"free":3488.86},{"epoch":26125201,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":527.3,"free":3488.89},{"epoch":26125202,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":527.58,"free":3488.63},{"epoch":26125203,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":527,"free":3489.2},{"epoch":26125204,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":526.96,"free":3489.23},{"epoch":26125205,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":527.05,"free":3489.17},{"epoch":26125206,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":527.14,"free":3489.07},{"epoch":26125207,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":527.75,"free":3488.45},{"epoch":26125208,"idl":99.69,"recv":0,"send":0,"writ":0.4,"used":527.07,"free":3489.13},{"epoch":26125209,"idl":99.63,"recv":0,"send":0,"writ":0.27,"used":527.04,"free":3489.14},{"epoch":26125210,"idl":99.68,"recv":0,"send":0,"writ":0.27,"used":526.78,"free":3489.41},{"epoch":26125211,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":526.75,"free":3489.44},{"epoch":26125212,"idl":99.75,"recv":0,"send":0.01,"writ":0.15,"used":526.87,"free":3489.31},{"epoch":26125213,"idl":99.44,"recv":0,"send":0,"writ":0.61,"used":527.94,"free":3488.24},{"epoch":26125214,"idl":99.62,"recv":0,"send":0,"writ":0.14,"used":527.56,"free":3488.62},{"epoch":26125215,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":526.83,"free":3489.38},{"epoch":26125216,"idl":99.73,"recv":0,"send":0,"writ":0.13,"used":526.79,"free":3489.42},{"epoch":26125217,"idl":99.74,"recv":0,"send":0,"writ":0.21,"used":526.76,"free":3489.44},{"epoch":26125218,"idl":99.61,"recv":0,"send":0,"writ":0.57,"used":527.25,"free":3488.95},{"epoch":26125219,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":527.09,"free":3489.1},{"epoch":26125220,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":527.61,"free":3488.6},{"epoch":26125221,"idl":99.73,"recv":0.01,"send":0.01,"writ":0.14,"used":527.58,"free":3488.63},{"epoch":26125222,"idl":99.7,"recv":0,"send":0,"writ":0.15,"used":527.54,"free":3488.66},{"epoch":26125223,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":527.51,"free":3488.68},{"epoch":26125224,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":526.98,"free":3489.21},{"epoch":26125225,"idl":99.65,"recv":0,"send":0,"writ":0.32,"used":527.29,"free":3488.92},{"epoch":26125226,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":527.37,"free":3488.83},{"epoch":26125227,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":527.34,"free":3488.86},{"epoch":26125228,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":527.53,"free":3488.67},{"epoch":26125229,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":527.03,"free":3489.17},{"epoch":26125230,"idl":99.66,"recv":0,"send":0,"writ":0.39,"used":527.51,"free":3488.7},{"epoch":26125231,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":527.48,"free":3488.72},{"epoch":26125232,"idl":99.68,"recv":0,"send":0,"writ":0.14,"used":527.52,"free":3488.68},{"epoch":26125233,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":528.06,"free":3488.14},{"epoch":26125234,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":527.12,"free":3489.09},{"epoch":26125235,"idl":99.6,"recv":0,"send":0,"writ":0.29,"used":527.32,"free":3488.91},{"epoch":26125236,"idl":99.74,"recv":0,"send":0,"writ":0.17,"used":527.28,"free":3488.94},{"epoch":26125237,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":527.25,"free":3488.97},{"epoch":26125238,"idl":99.64,"recv":0,"send":0,"writ":0.42,"used":527.61,"free":3488.61},{"epoch":26125239,"idl":99.6,"recv":0,"send":0,"writ":0.4,"used":527.35,"free":3488.85},{"epoch":26125240,"idl":99.51,"recv":0,"send":0,"writ":0.3,"used":526.63,"free":3489.57},{"epoch":26125241,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":526.58,"free":3489.63},{"epoch":26125242,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":526.55,"free":3489.65},{"epoch":26125243,"idl":99.65,"recv":0,"send":0,"writ":0.31,"used":526.86,"free":3489.34},{"epoch":26125244,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":526.23,"free":3489.98},{"epoch":26125245,"idl":99.62,"recv":0,"send":0,"writ":0.28,"used":526.78,"free":3489.45},{"epoch":26125246,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":526.87,"free":3489.35},{"epoch":26125247,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":526.52,"free":3489.7},{"epoch":26125248,"idl":99.65,"recv":0,"send":0,"writ":0.31,"used":526.43,"free":3489.78},{"epoch":26125249,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":526.54,"free":3489.67},{"epoch":26125250,"idl":99.62,"recv":0,"send":0,"writ":0.27,"used":526.54,"free":3489.7},{"epoch":26125251,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":526.51,"free":3489.72},{"epoch":26125252,"idl":99.8,"recv":0.01,"send":0,"writ":0.15,"used":526.48,"free":3489.75},{"epoch":26125253,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":526.65,"free":3489.57},{"epoch":26125254,"idl":99.67,"recv":0,"send":0,"writ":0.6,"used":526.97,"free":3489.25},{"epoch":26125255,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":526.61,"free":3489.63},{"epoch":26125256,"idl":99.79,"recv":0,"send":0,"writ":0.13,"used":526.57,"free":3489.66},{"epoch":26125257,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":526.53,"free":3489.69},{"epoch":26125258,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":526.5,"free":3489.72},{"epoch":26125259,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":526.77,"free":3489.45},{"epoch":26125260,"idl":99.51,"recv":0,"send":0,"writ":0.28,"used":526.89,"free":3489.35},{"epoch":26125261,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":526.85,"free":3489.38},{"epoch":26125262,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":526.82,"free":3489.41},{"epoch":26125263,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":526.79,"free":3489.43},{"epoch":26125264,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":527.1,"free":3489.11},{"epoch":26125265,"idl":99.65,"recv":0,"send":0,"writ":0.28,"used":526.81,"free":3489.42},{"epoch":26125266,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.17,"used":526.85,"free":3489.38},{"epoch":26125267,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":526.76,"free":3489.46},{"epoch":26125268,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":526.72,"free":3489.49},{"epoch":26125269,"idl":99.33,"recv":0,"send":0,"writ":0.66,"used":527.63,"free":3488.55},{"epoch":26125270,"idl":99.69,"recv":0,"send":0,"writ":0.38,"used":526.88,"free":3489.33},{"epoch":26125271,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":526.83,"free":3489.37},{"epoch":26125272,"idl":99.8,"recv":0,"send":0.01,"writ":0.14,"used":526.8,"free":3489.4},{"epoch":26125273,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":526.76,"free":3489.43},{"epoch":26125274,"idl":99.64,"recv":0,"send":0,"writ":0.5,"used":527.08,"free":3489.1},{"epoch":26125275,"idl":99.58,"recv":0,"send":0,"writ":0.33,"used":525.82,"free":3490.38},{"epoch":26125276,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":525.86,"free":3490.34},{"epoch":26125277,"idl":99.76,"recv":0,"send":0,"writ":0.24,"used":526.1,"free":3490.1},{"epoch":26125278,"idl":99.68,"recv":0,"send":0,"writ":0.16,"used":526.07,"free":3490.12},{"epoch":26125279,"idl":99.61,"recv":0,"send":0,"writ":0.6,"used":526.52,"free":3489.66},{"epoch":26125280,"idl":98.23,"recv":0,"send":0,"writ":0.33,"used":526.3,"free":3489.9},{"epoch":26125281,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.13,"used":526.23,"free":3489.97},{"epoch":26125282,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":526.3,"free":3489.89},{"epoch":26125283,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":526.35,"free":3489.84},{"epoch":26125284,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":526.31,"free":3489.87},{"epoch":26125285,"idl":99.34,"recv":0,"send":0,"writ":0.7,"used":527.4,"free":3488.8},{"epoch":26125286,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":527.01,"free":3489.18},{"epoch":26125287,"idl":99.76,"recv":0,"send":0.01,"writ":0.16,"used":526.97,"free":3489.22},{"epoch":26125288,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":527.07,"free":3489.11},{"epoch":26125289,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":527.08,"free":3489.11},{"epoch":26125290,"idl":99.48,"recv":0,"send":0,"writ":0.68,"used":527.16,"free":3489.04},{"epoch":26125291,"idl":99.79,"recv":0,"send":0,"writ":0.19,"used":526.29,"free":3489.91},{"epoch":26125292,"idl":99.63,"recv":0,"send":0,"writ":0.15,"used":526.25,"free":3489.94},{"epoch":26125293,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":526.22,"free":3489.97},{"epoch":26125294,"idl":99.71,"recv":0,"send":0,"writ":0.17,"used":526.69,"free":3489.5},{"epoch":26125295,"idl":99.39,"recv":0,"send":0,"writ":0.75,"used":527.69,"free":3488.51},{"epoch":26125296,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":527.11,"free":3489.09},{"epoch":26125297,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":527.07,"free":3489.12},{"epoch":26125298,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":527.05,"free":3489.14},{"epoch":26125299,"idl":99.51,"recv":0,"send":0,"writ":0.27,"used":527.28,"free":3488.88},{"epoch":26125300,"idl":99.34,"recv":0,"send":0,"writ":0.62,"used":527.35,"free":3488.83},{"epoch":26125301,"idl":99.77,"recv":0,"send":0,"writ":0.21,"used":527.28,"free":3488.9},{"epoch":26125302,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":527.37,"free":3488.8},{"epoch":26125303,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":527.34,"free":3488.83},{"epoch":26125304,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":527.31,"free":3488.86},{"epoch":26125305,"idl":99.4,"recv":0,"send":0,"writ":0.59,"used":527.1,"free":3489.09},{"epoch":26125306,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":526.53,"free":3489.65},{"epoch":26125307,"idl":99.65,"recv":0,"send":0,"writ":0.14,"used":526.5,"free":3489.68},{"epoch":26125308,"idl":99.69,"recv":0,"send":0,"writ":0.15,"used":526.53,"free":3489.64},{"epoch":26125309,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":526.61,"free":3489.55},{"epoch":26125310,"idl":99.46,"recv":0,"send":0,"writ":0.68,"used":526.56,"free":3489.62},{"epoch":26125311,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":526.83,"free":3489.35},{"epoch":26125312,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":526.79,"free":3489.38},{"epoch":26125313,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":526.76,"free":3489.41},{"epoch":26125314,"idl":99.77,"recv":0,"send":0,"writ":0.17,"used":526.72,"free":3489.44},{"epoch":26125315,"idl":99.51,"recv":0,"send":0,"writ":0.62,"used":527.54,"free":3488.64},{"epoch":26125316,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":526.86,"free":3489.31},{"epoch":26125317,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":526.83,"free":3489.34},{"epoch":26125318,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":526.8,"free":3489.37},{"epoch":26125319,"idl":99.73,"recv":0,"send":0,"writ":0.21,"used":526.76,"free":3489.4},{"epoch":26125320,"idl":99.43,"recv":0,"send":0,"writ":0.33,"used":526.02,"free":3490.15},{"epoch":26125321,"idl":99.52,"recv":0,"send":0,"writ":0.57,"used":526.77,"free":3489.4},{"epoch":26125322,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":526.09,"free":3490.08},{"epoch":26125323,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":526.1,"free":3490.06},{"epoch":26125324,"idl":99.66,"recv":0,"send":0,"writ":0.19,"used":526.07,"free":3490.09},{"epoch":26125325,"idl":99.44,"recv":0,"send":0,"writ":0.34,"used":525.59,"free":3490.59},{"epoch":26125326,"idl":99.51,"recv":0,"send":0,"writ":0.61,"used":526.88,"free":3489.3},{"epoch":26125327,"idl":99.69,"recv":0,"send":0,"writ":0.18,"used":526.49,"free":3489.67},{"epoch":26125328,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":526.47,"free":3489.7},{"epoch":26125329,"idl":99.51,"recv":0,"send":0,"writ":0.31,"used":527.25,"free":3488.89},{"epoch":26125330,"idl":99.52,"recv":0,"send":0,"writ":0.33,"used":527.18,"free":3488.98},{"epoch":26125331,"idl":99.45,"recv":0,"send":0,"writ":0.56,"used":527.5,"free":3488.65},{"epoch":26125332,"idl":99.65,"recv":0.01,"send":0.01,"writ":0.15,"used":527.02,"free":3489.13},{"epoch":26125333,"idl":99.49,"recv":0,"send":0,"writ":0.14,"used":526.98,"free":3489.16},{"epoch":26125334,"idl":99.56,"recv":0.01,"send":0.12,"writ":0.15,"used":527.01,"free":3489.16},{"epoch":26125335,"idl":99.44,"recv":0.02,"send":0.71,"writ":0.55,"used":527.21,"free":3488.98},{"epoch":26125336,"idl":99.43,"recv":0,"send":0,"writ":0.55,"used":527.57,"free":3488.62},{"epoch":26125337,"idl":99.61,"recv":0,"send":0,"writ":0.25,"used":527.08,"free":3489.1},{"epoch":26125338,"idl":99.68,"recv":0,"send":0,"writ":0.18,"used":527.05,"free":3489.13},{"epoch":26125339,"idl":99.68,"recv":0,"send":0,"writ":0.19,"used":527.01,"free":3489.16},{"epoch":26125340,"idl":99.45,"recv":0,"send":0,"writ":0.34,"used":527.24,"free":3488.95},{"epoch":26125341,"idl":98.43,"recv":0.01,"send":0.01,"writ":0.58,"used":527.57,"free":3488.62},{"epoch":26125342,"idl":99.71,"recv":0,"send":0,"writ":0.18,"used":527.28,"free":3488.9},{"epoch":26125343,"idl":99.7,"recv":0,"send":0,"writ":0.18,"used":527.32,"free":3488.85},{"epoch":26125344,"idl":99.74,"recv":0,"send":0,"writ":0.2,"used":527.29,"free":3488.88},{"epoch":26125345,"idl":99.55,"recv":0,"send":0,"writ":0.34,"used":527.28,"free":3488.91},{"epoch":26125346,"idl":99.51,"recv":0,"send":0,"writ":0.59,"used":527.85,"free":3488.33},{"epoch":26125347,"idl":99.64,"recv":0,"send":0,"writ":0.14,"used":526.7,"free":3489.47},{"epoch":26125348,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":526.81,"free":3489.36},{"epoch":26125349,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":526.81,"free":3489.36},{"epoch":26125350,"idl":99.53,"recv":0,"send":0,"writ":0.33,"used":527.3,"free":3488.89},{"epoch":26125351,"idl":99.39,"recv":0,"send":0,"writ":0.43,"used":527.53,"free":3488.65},{"epoch":26125352,"idl":99.62,"recv":0,"send":0,"writ":0.32,"used":526.49,"free":3489.68},{"epoch":26125353,"idl":99.72,"recv":0,"send":0,"writ":0.18,"used":526.46,"free":3489.7},{"epoch":26125354,"idl":99.52,"recv":0,"send":0,"writ":0.22,"used":527.01,"free":3489.16},{"epoch":26125355,"idl":99.5,"recv":0,"send":0,"writ":0.3,"used":527.31,"free":3488.87},{"epoch":26125356,"idl":99.53,"recv":0,"send":0,"writ":0.53,"used":527.67,"free":3488.51},{"epoch":26125357,"idl":99.65,"recv":0,"send":0,"writ":0.15,"used":527.28,"free":3488.89},{"epoch":26125358,"idl":99.63,"recv":0,"send":0,"writ":0.15,"used":527.25,"free":3488.91},{"epoch":26125359,"idl":99.4,"recv":0,"send":0,"writ":0.34,"used":527.27,"free":3488.87},{"epoch":26125360,"idl":99.5,"recv":0,"send":0,"writ":0.31,"used":526.09,"free":3490.07},{"epoch":26125361,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":525.95,"free":3490.2},{"epoch":26125362,"idl":99.55,"recv":0,"send":0,"writ":0.61,"used":528.08,"free":3488.06},{"epoch":26125363,"idl":99.79,"recv":0,"send":0,"writ":0.21,"used":527.57,"free":3488.57},{"epoch":26125364,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":527.54,"free":3488.6},{"epoch":26125365,"idl":99.61,"recv":0,"send":0,"writ":0.36,"used":526.58,"free":3489.57},{"epoch":26125366,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":526.52,"free":3489.63},{"epoch":26125367,"idl":99.63,"recv":0,"send":0,"writ":0.61,"used":526.91,"free":3489.24},{"epoch":26125368,"idl":99.77,"recv":0,"send":0,"writ":0.17,"used":526.21,"free":3489.94},{"epoch":26125369,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":526.33,"free":3489.81},{"epoch":26125370,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":527.57,"free":3488.59},{"epoch":26125371,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":527.55,"free":3488.6},{"epoch":26125372,"idl":99.54,"recv":0,"send":0,"writ":0.58,"used":526.95,"free":3489.19},{"epoch":26125373,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":525.76,"free":3490.38},{"epoch":26125374,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":525.72,"free":3490.41},{"epoch":26125375,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":526.45,"free":3489.71},{"epoch":26125376,"idl":99.75,"recv":0,"send":0,"writ":0.2,"used":525.98,"free":3490.18},{"epoch":26125377,"idl":99.61,"recv":0,"send":0,"writ":0.6,"used":516.94,"free":3499.46},{"epoch":26125378,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":516.69,"free":3499.7},{"epoch":26125379,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.67,"free":3499.71},{"epoch":26125380,"idl":99.63,"recv":0,"send":0,"writ":0.29,"used":515.95,"free":3500.45},{"epoch":26125381,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.93,"free":3500.46},{"epoch":26125382,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":516.39,"free":3500.02},{"epoch":26125383,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":516.38,"free":3500.03},{"epoch":26125384,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":516.35,"free":3500.05},{"epoch":26125385,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":515.39,"free":3501.05},{"epoch":26125386,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.44,"free":3501},{"epoch":26125387,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":516.21,"free":3500.24},{"epoch":26125388,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.73,"free":3499.71},{"epoch":26125389,"idl":99.64,"recv":0,"send":0,"writ":0.4,"used":516.73,"free":3499.68},{"epoch":26125390,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":516.74,"free":3499.68},{"epoch":26125391,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.68,"free":3499.74},{"epoch":26125392,"idl":99.58,"recv":0,"send":0,"writ":0.41,"used":517.11,"free":3499.31},{"epoch":26125393,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":516.14,"free":3500.27},{"epoch":26125394,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":516.11,"free":3500.31},{"epoch":26125395,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":515.4,"free":3501.04},{"epoch":26125396,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.35,"free":3501.09},{"epoch":26125397,"idl":99.8,"recv":0,"send":0.01,"writ":0.22,"used":515.84,"free":3500.6},{"epoch":26125398,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":516.99,"free":3499.44},{"epoch":26125399,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":516.69,"free":3499.73},{"epoch":26125400,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":515.72,"free":3500.72},{"epoch":26125401,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":515.68,"free":3500.75},{"epoch":26125402,"idl":99.79,"recv":0,"send":0.01,"writ":0.18,"used":515.65,"free":3500.77},{"epoch":26125403,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":515.96,"free":3500.45},{"epoch":26125404,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":515.6,"free":3500.81},{"epoch":26125405,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":515.11,"free":3501.32},{"epoch":26125406,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.09,"free":3501.34},{"epoch":26125407,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.05,"free":3501.37},{"epoch":26125408,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":515.51,"free":3500.9},{"epoch":26125409,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.21,"free":3501.2},{"epoch":26125410,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":515.46,"free":3500.97},{"epoch":26125411,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.43,"free":3500.99},{"epoch":26125412,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.41,"free":3501},{"epoch":26125413,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":516.17,"free":3500.24},{"epoch":26125414,"idl":99.15,"recv":0,"send":0,"writ":0.18,"used":515.74,"free":3500.67},{"epoch":26125415,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":515.13,"free":3501.29},{"epoch":26125416,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.1,"free":3501.32},{"epoch":26125417,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":515.08,"free":3501.34},{"epoch":26125418,"idl":99.7,"recv":0,"send":0,"writ":0.5,"used":515.62,"free":3500.79},{"epoch":26125419,"idl":99.64,"recv":0,"send":0,"writ":0.4,"used":515.86,"free":3500.52},{"epoch":26125420,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":515.97,"free":3500.44},{"epoch":26125421,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.94,"free":3500.46},{"epoch":26125422,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.93,"free":3500.47},{"epoch":26125423,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":516.47,"free":3499.93},{"epoch":26125424,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.89,"free":3500.5},{"epoch":26125425,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":515.98,"free":3500.43},{"epoch":26125426,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":515.87,"free":3500.54},{"epoch":26125427,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.85,"free":3500.55},{"epoch":26125428,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":516.17,"free":3500.22},{"epoch":26125429,"idl":99.84,"recv":0,"send":0,"writ":0.39,"used":515.78,"free":3500.6},{"epoch":26125430,"idl":99.65,"recv":0,"send":0,"writ":0.29,"used":515.07,"free":3501.32},{"epoch":26125431,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":515.2,"free":3501.19},{"epoch":26125432,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.21,"free":3501.18},{"epoch":26125433,"idl":99.69,"recv":0,"send":0,"writ":0.4,"used":515.54,"free":3500.85},{"epoch":26125434,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":514.91,"free":3501.47},{"epoch":26125435,"idl":99.58,"recv":0.02,"send":0.06,"writ":0.37,"used":515.15,"free":3501.25},{"epoch":26125436,"idl":99.71,"recv":0.02,"send":0.28,"writ":0.3,"used":515.02,"free":3501.3},{"epoch":26125437,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":514.99,"free":3501.32},{"epoch":26125438,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.1,"free":3501.2},{"epoch":26125439,"idl":99.65,"recv":0,"send":0,"writ":0.58,"used":516.15,"free":3500.14},{"epoch":26125440,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":516.1,"free":3500.21},{"epoch":26125441,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":516.08,"free":3500.23},{"epoch":26125442,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.06,"free":3500.24},{"epoch":26125443,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":516.06,"free":3500.25},{"epoch":26125444,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":516.91,"free":3499.39},{"epoch":26125445,"idl":99.77,"recv":0,"send":0.01,"writ":0.34,"used":516.02,"free":3500.3},{"epoch":26125446,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.99,"free":3500.32},{"epoch":26125447,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.97,"free":3500.34},{"epoch":26125448,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.94,"free":3500.36},{"epoch":26125449,"idl":99.39,"recv":0,"send":0,"writ":0.71,"used":516.19,"free":3500.08},{"epoch":26125450,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":515.35,"free":3500.94},{"epoch":26125451,"idl":94.33,"recv":2.6,"send":0.03,"writ":262.39,"used":525.77,"free":3488.84},{"epoch":26125452,"idl":99.83,"recv":0,"send":0,"writ":0.24,"used":518.78,"free":3494.98},{"epoch":26125453,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":518.76,"free":3495},{"epoch":26125454,"idl":99.59,"recv":0,"send":0,"writ":0.55,"used":519,"free":3494.75},{"epoch":26125455,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":518.55,"free":3495.22},{"epoch":26125456,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":517.38,"free":3496.42},{"epoch":26125457,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":516.46,"free":3497.36},{"epoch":26125458,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":516.44,"free":3497.38},{"epoch":26125459,"idl":99.62,"recv":0,"send":0,"writ":0.39,"used":516.78,"free":3497.03},{"epoch":26125460,"idl":99.68,"recv":0,"send":0,"writ":0.42,"used":516.19,"free":3497.65},{"epoch":26125461,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.16,"free":3497.67},{"epoch":26125462,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.14,"free":3497.69},{"epoch":26125463,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":516.12,"free":3497.7},{"epoch":26125464,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":516.45,"free":3497.36},{"epoch":26125465,"idl":99.71,"recv":0,"send":0,"writ":0.35,"used":515.86,"free":3497.97},{"epoch":26125466,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.83,"free":3498},{"epoch":26125467,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":515.8,"free":3498.03},{"epoch":26125468,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.94,"free":3497.88},{"epoch":26125469,"idl":99.63,"recv":0,"send":0,"writ":0.34,"used":516.32,"free":3497.5},{"epoch":26125470,"idl":99.74,"recv":0,"send":0,"writ":0.52,"used":516.2,"free":3497.64},{"epoch":26125471,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":516.17,"free":3497.66},{"epoch":26125472,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":516.15,"free":3497.67},{"epoch":26125473,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.13,"free":3497.69},{"epoch":26125474,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":516.12,"free":3497.7},{"epoch":26125475,"idl":99.43,"recv":0,"send":0,"writ":0.72,"used":514.59,"free":3499.24},{"epoch":26125476,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":513.87,"free":3499.96},{"epoch":26125477,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":513.85,"free":3499.97},{"epoch":26125478,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":513.82,"free":3500},{"epoch":26125479,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":516.14,"free":3497.65},{"epoch":26125480,"idl":99.58,"recv":0,"send":0,"writ":0.73,"used":515.98,"free":3497.83},{"epoch":26125481,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":515.44,"free":3498.37},{"epoch":26125482,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.42,"free":3498.38},{"epoch":26125483,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.39,"free":3498.4},{"epoch":26125484,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":515.37,"free":3498.42},{"epoch":26125485,"idl":99.68,"recv":0,"send":0,"writ":0.76,"used":516.63,"free":3497.18},{"epoch":26125486,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.33,"free":3497.47},{"epoch":26125487,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":516.31,"free":3497.49},{"epoch":26125488,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.29,"free":3497.51},{"epoch":26125489,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.27,"free":3497.52},{"epoch":26125490,"idl":99.59,"recv":0,"send":0.01,"writ":0.59,"used":516.62,"free":3497.19},{"epoch":26125491,"idl":99.92,"recv":0.03,"send":1.32,"writ":0.35,"used":516.11,"free":3497.7},{"epoch":26125492,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.07,"free":3497.73},{"epoch":26125493,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.15,"free":3497.65},{"epoch":26125494,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.2,"free":3497.59},{"epoch":26125495,"idl":99.63,"recv":0,"send":0,"writ":0.64,"used":516.5,"free":3497.32},{"epoch":26125496,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":516.43,"free":3497.4},{"epoch":26125497,"idl":99.88,"recv":0,"send":0.01,"writ":0.2,"used":516.38,"free":3497.44},{"epoch":26125498,"idl":99.88,"recv":0.01,"send":0.04,"writ":0.18,"used":516.35,"free":3497.47},{"epoch":26125499,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.41,"free":3497.4},{"epoch":26125500,"idl":99.6,"recv":0,"send":0,"writ":0.55,"used":516.94,"free":3496.89},{"epoch":26125501,"idl":99.87,"recv":0,"send":0.01,"writ":0.34,"used":516.37,"free":3497.45},{"epoch":26125502,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.34,"free":3497.47},{"epoch":26125503,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.33,"free":3497.47},{"epoch":26125504,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.3,"free":3497.5},{"epoch":26125505,"idl":99.71,"recv":0,"send":0,"writ":0.46,"used":516.95,"free":3496.86},{"epoch":26125506,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.49,"used":516.6,"free":3497.21},{"epoch":26125507,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.67,"free":3497.13},{"epoch":26125508,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.63,"free":3497.16},{"epoch":26125509,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":516.36,"free":3497.42},{"epoch":26125510,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":515.64,"free":3498.15},{"epoch":26125511,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":516.71,"free":3497.07},{"epoch":26125512,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":516.31,"free":3497.47},{"epoch":26125513,"idl":99.9,"recv":0.03,"send":0.83,"writ":0.18,"used":516.31,"free":3497.46},{"epoch":26125514,"idl":99.86,"recv":0,"send":0.01,"writ":0.23,"used":516.34,"free":3497.42},{"epoch":26125515,"idl":99.72,"recv":0.02,"send":0.84,"writ":0.32,"used":516.57,"free":3497.2},{"epoch":26125516,"idl":99.7,"recv":0,"send":0.01,"writ":0.63,"used":516.86,"free":3496.91},{"epoch":26125517,"idl":99.88,"recv":0,"send":0,"writ":0.22,"used":516.57,"free":3497.19},{"epoch":26125518,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.67,"free":3497.09},{"epoch":26125519,"idl":99.9,"recv":0.01,"send":0.22,"writ":0.21,"used":516.54,"free":3497.2},{"epoch":26125520,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":516.2,"free":3497.58},{"epoch":26125521,"idl":99.72,"recv":0,"send":0,"writ":0.6,"used":516.7,"free":3497.08},{"epoch":26125522,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.4,"free":3497.37},{"epoch":26125523,"idl":98.96,"recv":0,"send":0,"writ":0.17,"used":516.38,"free":3497.39},{"epoch":26125524,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":516.34,"free":3497.43},{"epoch":26125525,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":516.57,"free":3497.2},{"epoch":26125526,"idl":95.89,"recv":0.04,"send":0.01,"writ":78.56,"used":526.77,"free":3488.88},{"epoch":26125527,"idl":99.8,"recv":0,"send":0,"writ":64.12,"used":519.31,"free":3494.67},{"epoch":26125528,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":519.29,"free":3494.69},{"epoch":26125529,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":519.26,"free":3494.71},{"epoch":26125530,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":518.08,"free":3495.91},{"epoch":26125531,"idl":99.69,"recv":0,"send":0,"writ":0.63,"used":517.63,"free":3496.37},{"epoch":26125532,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":515.58,"free":3498.43},{"epoch":26125533,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.19,"used":515.67,"free":3498.34},{"epoch":26125534,"idl":99.8,"recv":0.03,"send":0.03,"writ":0.21,"used":515.95,"free":3498.05},{"epoch":26125535,"idl":99.73,"recv":0.01,"send":0.01,"writ":0.32,"used":515.69,"free":3498.34},{"epoch":26125536,"idl":99.69,"recv":0.03,"send":0.03,"writ":0.64,"used":516.22,"free":3497.8},{"epoch":26125537,"idl":99.81,"recv":0.01,"send":0.01,"writ":0.22,"used":516.86,"free":3497.17},{"epoch":26125538,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":516.83,"free":3497.2},{"epoch":26125539,"idl":99.62,"recv":0,"send":0,"writ":0.31,"used":516.57,"free":3497.43},{"epoch":26125540,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":515.83,"free":3498.18},{"epoch":26125541,"idl":99.75,"recv":0,"send":0,"writ":0.4,"used":516.21,"free":3497.8},{"epoch":26125542,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":516.21,"free":3497.79},{"epoch":26125543,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.18,"free":3497.82},{"epoch":26125544,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.17,"free":3497.82},{"epoch":26125545,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":515.97,"free":3498.05},{"epoch":26125546,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.9,"free":3498.11},{"epoch":26125547,"idl":99.66,"recv":0,"send":0,"writ":0.6,"used":517.36,"free":3496.65},{"epoch":26125548,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.84,"free":3497.17},{"epoch":26125549,"idl":99.87,"recv":0.02,"send":0.45,"writ":0.17,"used":516.83,"free":3497.17},{"epoch":26125550,"idl":99.74,"recv":0,"send":0.02,"writ":0.41,"used":516.94,"free":3497.06},{"epoch":26125551,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.9,"free":3497.1},{"epoch":26125552,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":517.21,"free":3496.78},{"epoch":26125553,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.83,"free":3497.16},{"epoch":26125554,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.81,"free":3497.18},{"epoch":26125555,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":516.1,"free":3497.9},{"epoch":26125556,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.06,"free":3497.95},{"epoch":26125557,"idl":99.74,"recv":0,"send":0,"writ":0.6,"used":515.58,"free":3498.41},{"epoch":26125558,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":514.93,"free":3499.07},{"epoch":26125559,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":514.95,"free":3499.04},{"epoch":26125560,"idl":99.63,"recv":0,"send":0,"writ":0.39,"used":514.23,"free":3499.77},{"epoch":26125561,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":514.19,"free":3499.81},{"epoch":26125562,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":514.84,"free":3499.15},{"epoch":26125563,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":514.66,"free":3499.33},{"epoch":26125564,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":514.62,"free":3499.36},{"epoch":26125565,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":515.59,"free":3498.41},{"epoch":26125566,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.59,"free":3498.41},{"epoch":26125567,"idl":99.73,"recv":0,"send":0,"writ":0.46,"used":516.49,"free":3497.51},{"epoch":26125568,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":516.04,"free":3497.95},{"epoch":26125569,"idl":99.59,"recv":0,"send":0,"writ":0.32,"used":516.05,"free":3497.92},{"epoch":26125570,"idl":99.77,"recv":0,"send":0,"writ":0.37,"used":515.68,"free":3498.3},{"epoch":26125571,"idl":99.86,"recv":0,"send":0.01,"writ":0.22,"used":515.68,"free":3498.3},{"epoch":26125572,"idl":99.66,"recv":0,"send":0,"writ":0.45,"used":515.79,"free":3498.18},{"epoch":26125573,"idl":99.9,"recv":0,"send":0.01,"writ":0.33,"used":514.88,"free":3499.09},{"epoch":26125574,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":514.84,"free":3499.12},{"epoch":26125575,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":515.61,"free":3498.38},{"epoch":26125576,"idl":99.82,"recv":0.03,"send":1.04,"writ":0.28,"used":515.56,"free":3498.41},{"epoch":26125577,"idl":99.72,"recv":0,"send":0,"writ":0.47,"used":516,"free":3497.97},{"epoch":26125578,"idl":99.86,"recv":0.03,"send":1.34,"writ":0.5,"used":515.9,"free":3498.05},{"epoch":26125579,"idl":99.84,"recv":0,"send":0,"writ":0.25,"used":515.81,"free":3498.14},{"epoch":26125580,"idl":99.76,"recv":0,"send":0,"writ":0.38,"used":515.79,"free":3498.17},{"epoch":26125581,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":515.78,"free":3498.18},{"epoch":26125582,"idl":99.77,"recv":0,"send":0,"writ":0.51,"used":516.17,"free":3497.78},{"epoch":26125583,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":516.16,"free":3497.79},{"epoch":26125584,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":516.13,"free":3497.81},{"epoch":26125585,"idl":99.74,"recv":0,"send":0,"writ":0.37,"used":516.38,"free":3497.58},{"epoch":26125586,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":516.37,"free":3497.59},{"epoch":26125587,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":516.35,"free":3497.61},{"epoch":26125588,"idl":99.64,"recv":0,"send":0,"writ":0.61,"used":515.84,"free":3498.11},{"epoch":26125589,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":515.07,"free":3498.87},{"epoch":26125590,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":516.04,"free":3497.92},{"epoch":26125591,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":516.04,"free":3497.92},{"epoch":26125592,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":516.02,"free":3497.93},{"epoch":26125593,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":515.69,"free":3498.26},{"epoch":26125594,"idl":99.8,"recv":0,"send":0,"writ":0.21,"used":515.6,"free":3498.34},{"epoch":26125595,"idl":99.74,"recv":0.04,"send":2.21,"writ":0.36,"used":516.31,"free":3497.64},{"epoch":26125596,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":516.4,"free":3497.54},{"epoch":26125597,"idl":99.85,"recv":0,"send":0.02,"writ":0.16,"used":516.37,"free":3497.57},{"epoch":26125598,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":515.95,"free":3497.99},{"epoch":26125599,"idl":99.66,"recv":0,"send":0,"writ":0.27,"used":516.05,"free":3497.85},{"epoch":26125600,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":516.05,"free":3497.87},{"epoch":26125601,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.16,"used":516.04,"free":3497.88},{"epoch":26125602,"idl":99.88,"recv":0,"send":0.02,"writ":0.23,"used":516.12,"free":3497.79},{"epoch":26125603,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":516.43,"free":3497.47},{"epoch":26125604,"idl":99.91,"recv":0,"send":0.02,"writ":0.21,"used":516.06,"free":3497.86},{"epoch":26125605,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":516.53,"free":3497.41},{"epoch":26125606,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":516.5,"free":3497.43},{"epoch":26125607,"idl":99.77,"recv":0.02,"send":2.39,"writ":0.46,"used":516.53,"free":3497.39},{"epoch":26125608,"idl":99.71,"recv":0,"send":0.01,"writ":0.6,"used":517.04,"free":3496.86},{"epoch":26125609,"idl":99.81,"recv":0.02,"send":1.68,"writ":0.2,"used":516.28,"free":3497.62},{"epoch":26125610,"idl":99.64,"recv":0,"send":0,"writ":0.33,"used":514.92,"free":3498.99},{"epoch":26125611,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":514.79,"free":3499.11},{"epoch":26125612,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":514.76,"free":3499.14},{"epoch":26125613,"idl":99.68,"recv":0.02,"send":1.81,"writ":0.61,"used":515.51,"free":3498.37},{"epoch":26125614,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.07,"free":3497.8},{"epoch":26125615,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":516.09,"free":3497.8},{"epoch":26125616,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.06,"free":3497.83},{"epoch":26125617,"idl":99.88,"recv":0,"send":0.02,"writ":0.16,"used":516.03,"free":3497.85},{"epoch":26125618,"idl":99.6,"recv":0.02,"send":0.48,"writ":0.52,"used":516.38,"free":3497.49},{"epoch":26125619,"idl":99.87,"recv":0,"send":0.02,"writ":0.48,"used":516.38,"free":3497.4},{"epoch":26125620,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":515.17,"free":3498.64},{"epoch":26125621,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.12,"free":3498.68},{"epoch":26125622,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.1,"free":3498.71},{"epoch":26125623,"idl":99.74,"recv":0,"send":0,"writ":0.39,"used":515.65,"free":3498.16},{"epoch":26125624,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":515.74,"free":3498.07},{"epoch":26125625,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":514.78,"free":3499.04},{"epoch":26125626,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":514.74,"free":3499.08},{"epoch":26125627,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.72,"free":3499.09},{"epoch":26125628,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":514.7,"free":3499.11},{"epoch":26125629,"idl":99.31,"recv":0,"send":0,"writ":0.68,"used":517,"free":3496.78},{"epoch":26125630,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":516.4,"free":3497.4},{"epoch":26125631,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.37,"free":3497.43},{"epoch":26125632,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":516.34,"free":3497.45},{"epoch":26125633,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.39,"free":3497.4},{"epoch":26125634,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":517.01,"free":3496.77},{"epoch":26125635,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":516.49,"free":3497.32},{"epoch":26125636,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.47,"free":3497.33},{"epoch":26125637,"idl":99.81,"recv":0,"send":0,"writ":0.22,"used":516.46,"free":3497.34},{"epoch":26125638,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.43,"free":3497.36},{"epoch":26125639,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":516.87,"free":3496.92},{"epoch":26125640,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":516.18,"free":3497.62},{"epoch":26125641,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":516.14,"free":3497.66},{"epoch":26125642,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.13,"free":3497.67},{"epoch":26125643,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.1,"free":3497.69},{"epoch":26125644,"idl":99.02,"recv":0,"send":0,"writ":0.57,"used":516.44,"free":3497.34},{"epoch":26125645,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":516.36,"free":3497.45},{"epoch":26125646,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.5,"free":3497.3},{"epoch":26125647,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.48,"free":3497.32},{"epoch":26125648,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":516.45,"free":3497.34},{"epoch":26125649,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":516.82,"free":3496.97},{"epoch":26125650,"idl":99.74,"recv":0,"send":0,"writ":0.36,"used":515.7,"free":3498.1},{"epoch":26125651,"idl":99.77,"recv":0,"send":0,"writ":0.13,"used":515.67,"free":3498.13},{"epoch":26125652,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.65,"free":3498.15},{"epoch":26125653,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.63,"free":3498.16},{"epoch":26125654,"idl":99.66,"recv":0,"send":0,"writ":0.6,"used":516.07,"free":3497.72},{"epoch":26125655,"idl":99.05,"recv":0,"send":0,"writ":0.36,"used":516.58,"free":3497.22},{"epoch":26125656,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":516.57,"free":3497.23},{"epoch":26125657,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":516.71,"free":3497.08},{"epoch":26125658,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":516.72,"free":3497.07},{"epoch":26125659,"idl":99.49,"recv":0,"send":0,"writ":0.46,"used":516.83,"free":3496.93},{"epoch":26125660,"idl":99.72,"recv":0,"send":0,"writ":0.52,"used":516.69,"free":3497.09},{"epoch":26125661,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.67,"free":3497.1},{"epoch":26125662,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.65,"free":3497.12},{"epoch":26125663,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.63,"free":3497.13},{"epoch":26125664,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":516.62,"free":3497.18},{"epoch":26125665,"idl":99.51,"recv":0,"send":0,"writ":0.72,"used":515.4,"free":3498.42},{"epoch":26125666,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":514.64,"free":3499.18},{"epoch":26125667,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":514.61,"free":3499.2},{"epoch":26125668,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":514.6,"free":3499.21},{"epoch":26125669,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":514.69,"free":3499.11},{"epoch":26125670,"idl":99.47,"recv":0,"send":0,"writ":0.74,"used":516.2,"free":3497.63},{"epoch":26125671,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.99,"free":3497.84},{"epoch":26125672,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":515.97,"free":3497.85},{"epoch":26125673,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":515.95,"free":3497.87},{"epoch":26125674,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.95,"free":3497.87},{"epoch":26125675,"idl":99.56,"recv":0,"send":0,"writ":0.73,"used":516.24,"free":3497.6},{"epoch":26125676,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":515.68,"free":3498.15},{"epoch":26125677,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.65,"free":3498.18},{"epoch":26125678,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.63,"free":3498.2},{"epoch":26125679,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.61,"free":3498.21},{"epoch":26125680,"idl":99.56,"recv":0,"send":0,"writ":0.69,"used":516.67,"free":3497.17},{"epoch":26125681,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":515.53,"free":3498.3},{"epoch":26125682,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":515.51,"free":3498.32},{"epoch":26125683,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":515.48,"free":3498.34},{"epoch":26125684,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":515.46,"free":3498.36},{"epoch":26125685,"idl":99.63,"recv":0,"send":0,"writ":0.73,"used":516.31,"free":3497.53},{"epoch":26125686,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":516.42,"free":3497.41},{"epoch":26125687,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.39,"free":3497.44},{"epoch":26125688,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.38,"free":3497.44},{"epoch":26125689,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":516.83,"free":3496.97},{"epoch":26125690,"idl":99.68,"recv":0,"send":0,"writ":0.77,"used":516.83,"free":3496.98},{"epoch":26125691,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.89,"free":3496.91},{"epoch":26125692,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.99,"free":3496.81},{"epoch":26125693,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":516.95,"free":3496.84},{"epoch":26125694,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.94,"free":3496.85},{"epoch":26125695,"idl":99.54,"recv":0,"send":0,"writ":1.06,"used":516.43,"free":3497.37},{"epoch":26125696,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":516.92,"free":3496.88},{"epoch":26125697,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":516.65,"free":3497.14},{"epoch":26125698,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.63,"free":3497.17},{"epoch":26125699,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.61,"free":3497.18},{"epoch":26125700,"idl":99.56,"recv":0,"send":0,"writ":0.64,"used":517.16,"free":3496.64},{"epoch":26125701,"idl":99.9,"recv":0,"send":0,"writ":0.37,"used":516.09,"free":3497.71},{"epoch":26125702,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.16,"free":3497.63},{"epoch":26125703,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.22,"free":3497.56},{"epoch":26125704,"idl":98.48,"recv":0,"send":0,"writ":0.16,"used":516.19,"free":3497.59},{"epoch":26125705,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":516.93,"free":3496.88},{"epoch":26125706,"idl":99.64,"recv":0,"send":0,"writ":0.53,"used":516.56,"free":3497.24},{"epoch":26125707,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":515.66,"free":3498.13},{"epoch":26125708,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.63,"free":3498.16},{"epoch":26125709,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":515.62,"free":3498.16},{"epoch":26125710,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":515.1,"free":3498.71},{"epoch":26125711,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":515.91,"free":3497.89},{"epoch":26125712,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.39,"free":3498.4},{"epoch":26125713,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.49,"free":3498.3},{"epoch":26125714,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":515.33,"free":3498.45},{"epoch":26125715,"idl":99.72,"recv":0,"send":0,"writ":0.35,"used":516.19,"free":3497.61},{"epoch":26125716,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":516.59,"free":3497.21},{"epoch":26125717,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.92,"free":3497.87},{"epoch":26125718,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":515.9,"free":3497.89},{"epoch":26125719,"idl":99.67,"recv":0,"send":0,"writ":0.33,"used":515.4,"free":3498.36},{"epoch":26125720,"idl":99.81,"recv":0.03,"send":1.01,"writ":0.41,"used":515.91,"free":3497.86},{"epoch":26125721,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":515.98,"free":3497.79},{"epoch":26125722,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.14,"free":3498.63},{"epoch":26125723,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":515.11,"free":3498.65},{"epoch":26125724,"idl":99.86,"recv":0.04,"send":1.37,"writ":0.25,"used":515.18,"free":3498.59},{"epoch":26125725,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":515.9,"free":3497.89},{"epoch":26125726,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":516.15,"free":3497.64},{"epoch":26125727,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.37,"free":3498.41},{"epoch":26125728,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":515.35,"free":3498.43},{"epoch":26125729,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.33,"free":3498.44},{"epoch":26125730,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":514.69,"free":3499.1},{"epoch":26125731,"idl":99.64,"recv":0,"send":0,"writ":0.42,"used":515.08,"free":3498.71},{"epoch":26125732,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":516.46,"free":3497.32},{"epoch":26125733,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.44,"free":3497.34},{"epoch":26125734,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.41,"free":3497.36},{"epoch":26125735,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":516.41,"free":3497.38},{"epoch":26125736,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":516.39,"free":3497.39},{"epoch":26125737,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":516.5,"free":3497.27},{"epoch":26125738,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.1,"free":3497.67},{"epoch":26125739,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":516.08,"free":3497.69},{"epoch":26125740,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":516.09,"free":3497.7},{"epoch":26125741,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.06,"free":3497.72},{"epoch":26125742,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":516.21,"free":3497.57},{"epoch":26125743,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.21,"free":3498.56},{"epoch":26125744,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":515.21,"free":3498.56},{"epoch":26125745,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":515.7,"free":3498.09},{"epoch":26125746,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":515.68,"free":3498.1},{"epoch":26125747,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":516.09,"free":3497.69},{"epoch":26125748,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":515.4,"free":3498.38},{"epoch":26125749,"idl":99.61,"recv":0,"send":0,"writ":0.27,"used":516.11,"free":3497.64},{"epoch":26125750,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":515.39,"free":3498.38},{"epoch":26125751,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.35,"free":3498.41},{"epoch":26125752,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":516.16,"free":3497.6},{"epoch":26125753,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.29,"free":3497.46},{"epoch":26125754,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.36,"free":3497.39},{"epoch":26125755,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":516.45,"free":3497.31},{"epoch":26125756,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.44,"free":3497.32},{"epoch":26125757,"idl":99.75,"recv":0,"send":0,"writ":0.61,"used":516.77,"free":3496.98},{"epoch":26125758,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":516.39,"free":3497.36},{"epoch":26125759,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.37,"free":3497.38},{"epoch":26125760,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":516.43,"free":3497.33},{"epoch":26125761,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":516.35,"free":3497.41},{"epoch":26125762,"idl":99.71,"recv":0,"send":0,"writ":0.39,"used":516.63,"free":3497.12},{"epoch":26125763,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":516.06,"free":3497.69},{"epoch":26125764,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.03,"free":3497.72},{"epoch":26125765,"idl":99.7,"recv":0,"send":0,"writ":0.28,"used":514.99,"free":3498.78},{"epoch":26125766,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515,"free":3498.76},{"epoch":26125767,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":515.35,"free":3498.41},{"epoch":26125768,"idl":99.83,"recv":0,"send":0,"writ":0.46,"used":516.17,"free":3497.58},{"epoch":26125769,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.15,"free":3497.59},{"epoch":26125770,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":516.14,"free":3497.62},{"epoch":26125771,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":516.12,"free":3497.64},{"epoch":26125772,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":516.1,"free":3497.66},{"epoch":26125773,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":516.42,"free":3497.32},{"epoch":26125774,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":515.92,"free":3497.81},{"epoch":26125775,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":515.96,"free":3497.8},{"epoch":26125776,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":515.96,"free":3497.79},{"epoch":26125777,"idl":98.53,"recv":0,"send":0,"writ":0.14,"used":515.94,"free":3497.81},{"epoch":26125778,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":516.28,"free":3497.46},{"epoch":26125779,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":515.9,"free":3497.82},{"epoch":26125780,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":516.14,"free":3497.6},{"epoch":26125781,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.11,"free":3497.62},{"epoch":26125782,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":516.08,"free":3497.64},{"epoch":26125783,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":516.73,"free":3496.99},{"epoch":26125784,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":516.05,"free":3497.67},{"epoch":26125785,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":516.07,"free":3497.69},{"epoch":26125786,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":516.13,"free":3497.62},{"epoch":26125787,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":516.21,"free":3497.53},{"epoch":26125788,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":516.72,"free":3497.01},{"epoch":26125789,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":516.41,"free":3497.32},{"epoch":26125790,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":516.65,"free":3497.1},{"epoch":26125791,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.63,"free":3497.11},{"epoch":26125792,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":516.6,"free":3497.13},{"epoch":26125793,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":516.94,"free":3496.79},{"epoch":26125794,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.56,"free":3497.16},{"epoch":26125795,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":516.57,"free":3497.18},{"epoch":26125796,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":516.55,"free":3497.2},{"epoch":26125797,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.61,"free":3497.13},{"epoch":26125798,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":516.69,"free":3497.04},{"epoch":26125799,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":517.01,"free":3496.73},{"epoch":26125800,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":516.71,"free":3497.05},{"epoch":26125801,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":516.64,"free":3497.12},{"epoch":26125802,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.63,"free":3497.13},{"epoch":26125803,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.6,"free":3497.15},{"epoch":26125804,"idl":99.69,"recv":0,"send":0,"writ":0.58,"used":516.71,"free":3497.04},{"epoch":26125805,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":516.58,"free":3497.18},{"epoch":26125806,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.56,"free":3497.2},{"epoch":26125807,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.53,"free":3497.22},{"epoch":26125808,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.6,"free":3497.15},{"epoch":26125809,"idl":99.69,"recv":0,"send":0,"writ":0.66,"used":517,"free":3496.73},{"epoch":26125810,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":516.91,"free":3496.83},{"epoch":26125811,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.89,"free":3496.86},{"epoch":26125812,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.86,"free":3496.87},{"epoch":26125813,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":516.85,"free":3496.89},{"epoch":26125814,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":517.08,"free":3496.66},{"epoch":26125815,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":516.33,"free":3497.43},{"epoch":26125816,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.3,"free":3497.46},{"epoch":26125817,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":516.29,"free":3497.47},{"epoch":26125818,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.34,"free":3497.41},{"epoch":26125819,"idl":99.73,"recv":0,"send":0,"writ":0.51,"used":517.02,"free":3496.73},{"epoch":26125820,"idl":99.73,"recv":0,"send":0,"writ":0.35,"used":515.95,"free":3497.81},{"epoch":26125821,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":515.92,"free":3497.84},{"epoch":26125822,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.9,"free":3497.86},{"epoch":26125823,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.88,"free":3497.87},{"epoch":26125824,"idl":99.68,"recv":0,"send":0,"writ":0.4,"used":516.37,"free":3497.38},{"epoch":26125825,"idl":99.8,"recv":0,"send":0,"writ":0.46,"used":516.11,"free":3497.65},{"epoch":26125826,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":516.08,"free":3497.67},{"epoch":26125827,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.07,"free":3497.68},{"epoch":26125828,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.04,"free":3497.7},{"epoch":26125829,"idl":99.71,"recv":0.02,"send":0,"writ":0.54,"used":516.54,"free":3497.2},{"epoch":26125830,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":516.65,"free":3497.11},{"epoch":26125831,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":516.64,"free":3497.12},{"epoch":26125832,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.61,"free":3497.14},{"epoch":26125833,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.6,"free":3497.15},{"epoch":26125834,"idl":99.64,"recv":0,"send":0,"writ":0.45,"used":516.8,"free":3496.94},{"epoch":26125835,"idl":99.79,"recv":0,"send":0,"writ":0.43,"used":516.81,"free":3496.95},{"epoch":26125836,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":516.79,"free":3496.96},{"epoch":26125837,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.77,"free":3496.98},{"epoch":26125838,"idl":99.12,"recv":0,"send":0,"writ":0.15,"used":516.75,"free":3497},{"epoch":26125839,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":516.39,"free":3497.33},{"epoch":26125840,"idl":99.35,"recv":0,"send":0,"writ":0.7,"used":516.56,"free":3497.18},{"epoch":26125841,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.94,"free":3497.79},{"epoch":26125842,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.92,"free":3497.81},{"epoch":26125843,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":515.89,"free":3497.83},{"epoch":26125844,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.88,"free":3497.85},{"epoch":26125845,"idl":99.61,"recv":0,"send":0,"writ":0.7,"used":517.25,"free":3496.49},{"epoch":26125846,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":516.6,"free":3497.15},{"epoch":26125847,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.58,"free":3497.16},{"epoch":26125848,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.56,"free":3497.18},{"epoch":26125849,"idl":99.79,"recv":0.01,"send":0.83,"writ":0.28,"used":516.53,"free":3497.2},{"epoch":26125850,"idl":99.65,"recv":0,"send":0,"writ":0.74,"used":516.89,"free":3496.85},{"epoch":26125851,"idl":99.79,"recv":0,"send":0,"writ":0.13,"used":516.58,"free":3497.16},{"epoch":26125852,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":516.65,"free":3497.08},{"epoch":26125853,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.63,"free":3497.1},{"epoch":26125854,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":516.61,"free":3497.12},{"epoch":26125855,"idl":99.65,"recv":0,"send":0,"writ":0.73,"used":516.95,"free":3496.79},{"epoch":26125856,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":516.82,"free":3496.91},{"epoch":26125857,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.8,"free":3496.93},{"epoch":26125858,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.77,"free":3496.95},{"epoch":26125859,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":516.76,"free":3496.96},{"epoch":26125860,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":516.85,"free":3496.89},{"epoch":26125861,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":516.58,"free":3497.15},{"epoch":26125862,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":515.66,"free":3498.07},{"epoch":26125863,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.64,"free":3498.09},{"epoch":26125864,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.62,"free":3498.1},{"epoch":26125865,"idl":99.65,"recv":0,"send":0,"writ":0.74,"used":515.79,"free":3497.95},{"epoch":26125866,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.1,"free":3497.64},{"epoch":26125867,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.07,"free":3497.66},{"epoch":26125868,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.18,"free":3497.54},{"epoch":26125869,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":515.79,"free":3497.91},{"epoch":26125870,"idl":99.62,"recv":0,"send":0,"writ":0.72,"used":515.84,"free":3497.88},{"epoch":26125871,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.02,"free":3498.69},{"epoch":26125872,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":514.99,"free":3498.71},{"epoch":26125873,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":514.97,"free":3498.73},{"epoch":26125874,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":515.13,"free":3498.58},{"epoch":26125875,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":516.2,"free":3497.53},{"epoch":26125876,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":515.55,"free":3498.18},{"epoch":26125877,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":515.34,"free":3498.38},{"epoch":26125878,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.34,"free":3498.37},{"epoch":26125879,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.31,"free":3498.4},{"epoch":26125880,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":516.04,"free":3497.68},{"epoch":26125881,"idl":99.64,"recv":0,"send":0,"writ":0.59,"used":516.94,"free":3496.79},{"epoch":26125882,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":516.26,"free":3497.46},{"epoch":26125883,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":516.24,"free":3497.48},{"epoch":26125884,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":516.22,"free":3497.49},{"epoch":26125885,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":515.03,"free":3498.69},{"epoch":26125886,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":515.76,"free":3497.96},{"epoch":26125887,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":515.1,"free":3498.61},{"epoch":26125888,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.09,"free":3498.62},{"epoch":26125889,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.06,"free":3498.65},{"epoch":26125890,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":516.28,"free":3497.45},{"epoch":26125891,"idl":96.06,"recv":0.04,"send":0.01,"writ":78.93,"used":527.54,"free":3488.11},{"epoch":26125892,"idl":99.78,"recv":0,"send":0,"writ":64.08,"used":518.69,"free":3494.88},{"epoch":26125893,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":518.68,"free":3494.89},{"epoch":26125894,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":518.54,"free":3495.02},{"epoch":26125895,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":518.41,"free":3495.17},{"epoch":26125896,"idl":99.69,"recv":0,"send":0,"writ":0.63,"used":518.1,"free":3495.5},{"epoch":26125897,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.21,"free":3497.41},{"epoch":26125898,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.19,"free":3497.43},{"epoch":26125899,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":516.01,"free":3497.6},{"epoch":26125900,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":515.93,"free":3497.71},{"epoch":26125901,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":516.36,"free":3497.28},{"epoch":26125902,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":516.11,"free":3497.54},{"epoch":26125903,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":516.09,"free":3497.55},{"epoch":26125904,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.07,"free":3497.57},{"epoch":26125905,"idl":99.73,"recv":0,"send":0,"writ":0.39,"used":516.55,"free":3497.1},{"epoch":26125906,"idl":99.64,"recv":0,"send":0,"writ":0.39,"used":516.87,"free":3496.78},{"epoch":26125907,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":516.27,"free":3497.37},{"epoch":26125908,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":516.25,"free":3497.39},{"epoch":26125909,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":516.24,"free":3497.39},{"epoch":26125910,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":515.75,"free":3497.89},{"epoch":26125911,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":515.72,"free":3497.92},{"epoch":26125912,"idl":99.64,"recv":0,"send":0,"writ":0.57,"used":515.91,"free":3497.73},{"epoch":26125913,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":515.25,"free":3498.38},{"epoch":26125914,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":515.35,"free":3498.28},{"epoch":26125915,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":515.63,"free":3498.02},{"epoch":26125916,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.58,"free":3498.06},{"epoch":26125917,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":516.63,"free":3497.01},{"epoch":26125918,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":516.28,"free":3497.36},{"epoch":26125919,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":516.26,"free":3497.37},{"epoch":26125920,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":516.26,"free":3497.39},{"epoch":26125921,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":516.26,"free":3497.39},{"epoch":26125922,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":516.73,"free":3496.91},{"epoch":26125923,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":516.46,"free":3497.17},{"epoch":26125924,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.44,"free":3497.19},{"epoch":26125925,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":515.72,"free":3497.93},{"epoch":26125926,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.77,"free":3497.87},{"epoch":26125927,"idl":99.69,"recv":0,"send":0,"writ":0.59,"used":516.51,"free":3497.13},{"epoch":26125928,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":516.56,"free":3497.08},{"epoch":26125929,"idl":99.69,"recv":0,"send":0,"writ":0.27,"used":516.29,"free":3497.32},{"epoch":26125930,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":516.05,"free":3497.58},{"epoch":26125931,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":516.01,"free":3497.61},{"epoch":26125932,"idl":99.68,"recv":0,"send":0,"writ":0.6,"used":516.42,"free":3497.2},{"epoch":26125933,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.22,"free":3497.4},{"epoch":26125934,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":516.21,"free":3497.4},{"epoch":26125935,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":514.99,"free":3498.63},{"epoch":26125936,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":514.96,"free":3498.66},{"epoch":26125937,"idl":99.63,"recv":0,"send":0,"writ":0.61,"used":515.41,"free":3498.21},{"epoch":26125938,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":515.57,"free":3498.04},{"epoch":26125939,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.56,"free":3498.05},{"epoch":26125940,"idl":99.72,"recv":0,"send":0.01,"writ":0.3,"used":516.06,"free":3497.57},{"epoch":26125941,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.01,"free":3497.62},{"epoch":26125942,"idl":99.66,"recv":0,"send":0,"writ":0.39,"used":516.41,"free":3497.21},{"epoch":26125943,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":516.46,"free":3497.15},{"epoch":26125944,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":516.45,"free":3497.16},{"epoch":26125945,"idl":99.63,"recv":0,"send":0,"writ":0.31,"used":515.81,"free":3497.81},{"epoch":26125946,"idl":98.61,"recv":0,"send":0,"writ":0.18,"used":515.7,"free":3497.93},{"epoch":26125947,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":515.67,"free":3497.95},{"epoch":26125948,"idl":99.57,"recv":0,"send":0,"writ":0.58,"used":515.42,"free":3498.19},{"epoch":26125949,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":514.83,"free":3498.78},{"epoch":26125950,"idl":99.63,"recv":0,"send":0.02,"writ":0.32,"used":516.5,"free":3497.13},{"epoch":26125951,"idl":99.81,"recv":0,"send":0.01,"writ":0.18,"used":516.51,"free":3497.11},{"epoch":26125952,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.46,"free":3497.15},{"epoch":26125953,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":516.26,"free":3497.35},{"epoch":26125954,"idl":99.77,"recv":0,"send":0,"writ":0.23,"used":515.99,"free":3497.62},{"epoch":26125955,"idl":99.73,"recv":0,"send":0,"writ":0.37,"used":516.18,"free":3497.44},{"epoch":26125956,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":516.25,"free":3497.36},{"epoch":26125957,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":516.31,"free":3497.3},{"epoch":26125958,"idl":99.66,"recv":0,"send":0,"writ":0.61,"used":516.66,"free":3496.95},{"epoch":26125959,"idl":99.6,"recv":0,"send":0,"writ":0.27,"used":516.5,"free":3497.08},{"epoch":26125960,"idl":99.72,"recv":0,"send":0,"writ":0.37,"used":516.28,"free":3497.32},{"epoch":26125961,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":516.24,"free":3497.36},{"epoch":26125962,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.24,"free":3497.36},{"epoch":26125963,"idl":99.69,"recv":0,"send":0,"writ":0.63,"used":516.85,"free":3496.74},{"epoch":26125964,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":516.69,"free":3496.91},{"epoch":26125965,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":516.44,"free":3497.18},{"epoch":26125966,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":516.42,"free":3497.2},{"epoch":26125967,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":516.4,"free":3497.22},{"epoch":26125968,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":516.78,"free":3496.83},{"epoch":26125969,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":516.3,"free":3497.31},{"epoch":26125970,"idl":99.68,"recv":0,"send":0,"writ":0.36,"used":515.58,"free":3498.06},{"epoch":26125971,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":515.55,"free":3498.09},{"epoch":26125972,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":515.52,"free":3498.11},{"epoch":26125973,"idl":99.63,"recv":0,"send":0,"writ":0.61,"used":516.4,"free":3497.23},{"epoch":26125974,"idl":99.8,"recv":0,"send":0,"writ":0.21,"used":515.97,"free":3497.66},{"epoch":26125975,"idl":99.72,"recv":0,"send":0,"writ":0.37,"used":516.21,"free":3497.43},{"epoch":26125976,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":516.19,"free":3497.45},{"epoch":26125977,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":516.17,"free":3497.46},{"epoch":26125978,"idl":99.7,"recv":0,"send":0,"writ":0.36,"used":516.61,"free":3497.02},{"epoch":26125979,"idl":99.82,"recv":0,"send":0,"writ":0.4,"used":516.49,"free":3497.14},{"epoch":26125980,"idl":99.6,"recv":0,"send":0,"writ":0.37,"used":516.4,"free":3497.24},{"epoch":26125981,"idl":99.73,"recv":0,"send":0,"writ":0.2,"used":516.33,"free":3497.31},{"epoch":26125982,"idl":99.76,"recv":0,"send":0,"writ":0.2,"used":516.31,"free":3497.32},{"epoch":26125983,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":516.29,"free":3497.34},{"epoch":26125984,"idl":99.13,"recv":0,"send":0,"writ":1.35,"used":517.09,"free":3496.53},{"epoch":26125985,"idl":99.65,"recv":0,"send":0,"writ":0.38,"used":515.81,"free":3497.83},{"epoch":26125986,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":515.75,"free":3497.89},{"epoch":26125987,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":515.72,"free":3497.91},{"epoch":26125988,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":515.7,"free":3497.93},{"epoch":26125989,"idl":99.48,"recv":0,"send":0,"writ":0.69,"used":516.88,"free":3496.72},{"epoch":26125990,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":516.67,"free":3496.95},{"epoch":26125991,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":516.69,"free":3496.93},{"epoch":26125992,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":516.56,"free":3497.05},{"epoch":26125993,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":516.54,"free":3497.06},{"epoch":26125994,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":516.87,"free":3496.73},{"epoch":26125995,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":515.56,"free":3498.06},{"epoch":26125996,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.51,"free":3498.1},{"epoch":26125997,"idl":99.85,"recv":0,"send":0,"writ":0.22,"used":515.25,"free":3498.36},{"epoch":26125998,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.2,"free":3498.4},{"epoch":26125999,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":516.37,"free":3497.23},{"epoch":26126000,"idl":99.75,"recv":0,"send":0,"writ":0.37,"used":516.76,"free":3496.86},{"epoch":26126001,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":516.83,"free":3496.79},{"epoch":26126002,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":516.8,"free":3496.81},{"epoch":26126003,"idl":99.77,"recv":0,"send":0,"writ":0.2,"used":516.79,"free":3496.82},{"epoch":26126004,"idl":99.63,"recv":0,"send":0,"writ":0.44,"used":517.4,"free":3496.2},{"epoch":26126005,"idl":99.68,"recv":0,"send":0,"writ":0.46,"used":516.63,"free":3496.99},{"epoch":26126006,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":516.5,"free":3497.14},{"epoch":26126007,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":516.47,"free":3497.17},{"epoch":26126008,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":516.45,"free":3497.19},{"epoch":26126009,"idl":99.59,"recv":0,"send":0,"writ":0.47,"used":516.89,"free":3496.74},{"epoch":26126010,"idl":99.69,"recv":0,"send":0,"writ":0.47,"used":515.73,"free":3497.92},{"epoch":26126011,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":515.83,"free":3497.82},{"epoch":26126012,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.81,"free":3497.83},{"epoch":26126013,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":515.78,"free":3497.86},{"epoch":26126014,"idl":99.59,"recv":0,"send":0,"writ":0.36,"used":516.06,"free":3497.57},{"epoch":26126015,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":516.49,"free":3497.16},{"epoch":26126016,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":516.47,"free":3497.17},{"epoch":26126017,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":515.5,"free":3498.13},{"epoch":26126018,"idl":99.73,"recv":0,"send":0,"writ":0.18,"used":515.45,"free":3498.18},{"epoch":26126019,"idl":99.23,"recv":0,"send":0,"writ":0.29,"used":515.9,"free":3497.7},{"epoch":26126020,"idl":99.46,"recv":0,"send":0,"writ":0.71,"used":514.85,"free":3498.77},{"epoch":26126021,"idl":99.83,"recv":0.01,"send":0,"writ":0.18,"used":514.56,"free":3499.06},{"epoch":26126022,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":514.57,"free":3499.05},{"epoch":26126023,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":514.55,"free":3499.06},{"epoch":26126024,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":514.53,"free":3499.08},{"epoch":26126025,"idl":99.48,"recv":0,"send":0,"writ":0.82,"used":515.16,"free":3498.46},{"epoch":26126026,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":514.74,"free":3498.86},{"epoch":26126027,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":514.71,"free":3498.89},{"epoch":26126028,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":514.69,"free":3498.91},{"epoch":26126029,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":514.67,"free":3498.93},{"epoch":26126030,"idl":99.47,"recv":0,"send":0,"writ":0.75,"used":515.53,"free":3498.09},{"epoch":26126031,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.55,"free":3499.05},{"epoch":26126032,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":514.56,"free":3499.05},{"epoch":26126033,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":514.54,"free":3499.06},{"epoch":26126034,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":514.52,"free":3499.08},{"epoch":26126035,"idl":99.59,"recv":0,"send":0,"writ":0.75,"used":516.51,"free":3497.1},{"epoch":26126036,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.21,"free":3497.39},{"epoch":26126037,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.18,"free":3497.42},{"epoch":26126038,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.17,"free":3497.42},{"epoch":26126039,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":516.14,"free":3497.44},{"epoch":26126040,"idl":99.61,"recv":0,"send":0,"writ":0.69,"used":516.72,"free":3496.89},{"epoch":26126041,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":515.88,"free":3497.73},{"epoch":26126042,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":515.97,"free":3497.63},{"epoch":26126043,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.02,"free":3497.57},{"epoch":26126044,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516,"free":3497.59},{"epoch":26126045,"idl":99.47,"recv":0,"send":0,"writ":0.72,"used":516.05,"free":3497.56},{"epoch":26126046,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.23,"free":3497.38},{"epoch":26126047,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":516.21,"free":3497.39},{"epoch":26126048,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.18,"free":3497.42},{"epoch":26126049,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":516.16,"free":3497.41},{"epoch":26126050,"idl":99.66,"recv":0,"send":0,"writ":0.46,"used":516.52,"free":3497.07},{"epoch":26126051,"idl":99.85,"recv":0,"send":0,"writ":0.39,"used":515.89,"free":3497.7},{"epoch":26126052,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.87,"free":3497.71},{"epoch":26126053,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.03,"free":3497.55},{"epoch":26126054,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":516.27,"free":3497.35},{"epoch":26126055,"idl":99.56,"recv":0,"send":0,"writ":0.52,"used":515.47,"free":3498.17},{"epoch":26126056,"idl":99.91,"recv":0,"send":0,"writ":0.36,"used":516.27,"free":3497.37},{"epoch":26126057,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":516.25,"free":3497.39},{"epoch":26126058,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.24,"free":3497.39},{"epoch":26126059,"idl":99.81,"recv":0.01,"send":0.01,"writ":0.24,"used":516.24,"free":3497.4},{"epoch":26126060,"idl":99.74,"recv":0.02,"send":0.06,"writ":0.67,"used":520.22,"free":3493.31},{"epoch":26126061,"idl":99.67,"recv":0,"send":0.01,"writ":0.55,"used":521.51,"free":3492.02},{"epoch":26126062,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":521.06,"free":3492.46},{"epoch":26126063,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":521.03,"free":3492.49},{"epoch":26126064,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":521,"free":3492.51},{"epoch":26126065,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":521.53,"free":3492},{"epoch":26126066,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":521.06,"free":3492.46},{"epoch":26126067,"idl":99.15,"recv":0,"send":0,"writ":0.14,"used":520.19,"free":3493.32},{"epoch":26126068,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":520.16,"free":3493.35},{"epoch":26126069,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":520.13,"free":3493.38},{"epoch":26126070,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":520.31,"free":3493.22},{"epoch":26126071,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":520.9,"free":3492.62},{"epoch":26126072,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":520.75,"free":3492.77},{"epoch":26126073,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":520.72,"free":3492.79},{"epoch":26126074,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":520.61,"free":3492.9},{"epoch":26126075,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":521.63,"free":3491.9},{"epoch":26126076,"idl":99.74,"recv":0.01,"send":0.03,"writ":0.64,"used":523.57,"free":3489.9},{"epoch":26126077,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":524.11,"free":3489.34},{"epoch":26126078,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":524.08,"free":3489.37},{"epoch":26126079,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":524.28,"free":3489.14},{"epoch":26126080,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":524.28,"free":3489.16},{"epoch":26126081,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":524.61,"free":3488.82},{"epoch":26126082,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":524.22,"free":3489.2},{"epoch":26126083,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":524.26,"free":3489.16},{"epoch":26126084,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":524.35,"free":3489.08},{"epoch":26126085,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":524.34,"free":3489.11},{"epoch":26126086,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":524.66,"free":3488.79},{"epoch":26126087,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":524.28,"free":3489.16},{"epoch":26126088,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":524.25,"free":3489.19},{"epoch":26126089,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":524.22,"free":3489.21},{"epoch":26126090,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":524.21,"free":3489.24},{"epoch":26126091,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":524.64,"free":3488.81},{"epoch":26126092,"idl":99.87,"recv":0,"send":0,"writ":0.43,"used":523.86,"free":3489.59},{"epoch":26126093,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":523.82,"free":3489.62},{"epoch":26126094,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":523.79,"free":3489.65},{"epoch":26126095,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":524.28,"free":3489.17},{"epoch":26126096,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":524.24,"free":3489.21},{"epoch":26126097,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":524.57,"free":3488.88},{"epoch":26126098,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.32,"free":3489.12},{"epoch":26126099,"idl":99.9,"recv":0,"send":0.01,"writ":0.18,"used":524.35,"free":3489.09},{"epoch":26126100,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":524.15,"free":3489.31},{"epoch":26126101,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":524.04,"free":3489.41},{"epoch":26126102,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":524.96,"free":3488.48},{"epoch":26126103,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":524.47,"free":3488.97},{"epoch":26126104,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":524.55,"free":3488.88},{"epoch":26126105,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":524.38,"free":3489.07},{"epoch":26126106,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":524.35,"free":3489.1},{"epoch":26126107,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":524.54,"free":3488.9},{"epoch":26126108,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":523.79,"free":3489.65},{"epoch":26126109,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":524.48,"free":3488.93},{"epoch":26126110,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":524.72,"free":3488.7},{"epoch":26126111,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":524.71,"free":3488.72},{"epoch":26126112,"idl":99.72,"recv":0,"send":0.01,"writ":0.59,"used":525.02,"free":3488.4},{"epoch":26126113,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.33,"free":3489.08},{"epoch":26126114,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.3,"free":3489.12},{"epoch":26126115,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":523.81,"free":3489.63},{"epoch":26126116,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":523.77,"free":3489.67},{"epoch":26126117,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":524.38,"free":3489.05},{"epoch":26126118,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.2,"free":3489.22},{"epoch":26126119,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":524.27,"free":3489.15},{"epoch":26126120,"idl":99.83,"recv":0,"send":0,"writ":0.37,"used":524.59,"free":3488.85},{"epoch":26126121,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":524.57,"free":3488.86},{"epoch":26126122,"idl":99.77,"recv":0,"send":0,"writ":0.44,"used":524.9,"free":3488.53},{"epoch":26126123,"idl":99.92,"recv":0,"send":0,"writ":0.23,"used":524.51,"free":3488.91},{"epoch":26126124,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.49,"free":3488.93},{"epoch":26126125,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":523.52,"free":3489.92},{"epoch":26126126,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":523.47,"free":3489.96},{"epoch":26126127,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.51,"free":3489.92},{"epoch":26126128,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":525.09,"free":3488.34},{"epoch":26126129,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":524.3,"free":3489.12},{"epoch":26126130,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":524.78,"free":3488.66},{"epoch":26126131,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":524.75,"free":3488.68},{"epoch":26126132,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":524.73,"free":3488.7},{"epoch":26126133,"idl":99.75,"recv":0,"send":0,"writ":0.6,"used":525.37,"free":3488.04},{"epoch":26126134,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":524.58,"free":3488.83},{"epoch":26126135,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":523.65,"free":3489.78},{"epoch":26126136,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":523.59,"free":3489.84},{"epoch":26126137,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":523.55,"free":3489.87},{"epoch":26126138,"idl":99.66,"recv":0,"send":0,"writ":0.57,"used":524.71,"free":3488.71},{"epoch":26126139,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":524.5,"free":3488.89},{"epoch":26126140,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":523.77,"free":3489.63},{"epoch":26126141,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.72,"free":3489.68},{"epoch":26126142,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":523.69,"free":3489.71},{"epoch":26126143,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":524.43,"free":3488.96},{"epoch":26126144,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.31,"free":3489.07},{"epoch":26126145,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":524.55,"free":3488.86},{"epoch":26126146,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":524.53,"free":3488.88},{"epoch":26126147,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":524.49,"free":3488.91},{"epoch":26126148,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":524.87,"free":3488.52},{"epoch":26126149,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":524.66,"free":3488.72},{"epoch":26126150,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":524.1,"free":3489.3},{"epoch":26126151,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":524.12,"free":3489.27},{"epoch":26126152,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":524.09,"free":3489.3},{"epoch":26126153,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":524.51,"free":3488.87},{"epoch":26126154,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":524.77,"free":3488.61},{"epoch":26126155,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":525.01,"free":3488.39},{"epoch":26126156,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":524.97,"free":3488.43},{"epoch":26126157,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":524.95,"free":3488.45},{"epoch":26126158,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":525.1,"free":3488.29},{"epoch":26126159,"idl":99.74,"recv":0,"send":0,"writ":0.58,"used":525.41,"free":3487.97},{"epoch":26126160,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":524.09,"free":3489.31},{"epoch":26126161,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":524.05,"free":3489.35},{"epoch":26126162,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":524.01,"free":3489.38},{"epoch":26126163,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":523.99,"free":3489.4},{"epoch":26126164,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":525.24,"free":3488.14},{"epoch":26126165,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":524.53,"free":3488.87},{"epoch":26126166,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":524.6,"free":3488.8},{"epoch":26126167,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":524.56,"free":3488.83},{"epoch":26126168,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":524.54,"free":3488.84},{"epoch":26126169,"idl":99.59,"recv":0,"send":0,"writ":0.67,"used":525.3,"free":3488.06},{"epoch":26126170,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":524.75,"free":3488.63},{"epoch":26126171,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":523.87,"free":3489.5},{"epoch":26126172,"idl":99.85,"recv":0,"send":0.01,"writ":0.16,"used":523.7,"free":3489.67},{"epoch":26126173,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.85,"free":3489.52},{"epoch":26126174,"idl":99.73,"recv":0,"send":0,"writ":0.49,"used":524.18,"free":3489.2},{"epoch":26126175,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":524.06,"free":3489.33},{"epoch":26126176,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.03,"free":3489.36},{"epoch":26126177,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":524,"free":3489.39},{"epoch":26126178,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":523.98,"free":3489.4},{"epoch":26126179,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":524.39,"free":3488.99},{"epoch":26126180,"idl":99.81,"recv":0,"send":0,"writ":0.47,"used":522.83,"free":3490.56},{"epoch":26126181,"idl":99.93,"recv":0,"send":0.01,"writ":0.14,"used":522.86,"free":3490.53},{"epoch":26126182,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":522.81,"free":3490.57},{"epoch":26126183,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":522.77,"free":3490.6},{"epoch":26126184,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":523.26,"free":3490.12},{"epoch":26126185,"idl":99.8,"recv":0,"send":0,"writ":0.46,"used":523.97,"free":3489.42},{"epoch":26126186,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":524,"free":3489.38},{"epoch":26126187,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.09,"free":3489.29},{"epoch":26126188,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.06,"free":3489.31},{"epoch":26126189,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":524.37,"free":3489},{"epoch":26126190,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":523.55,"free":3489.84},{"epoch":26126191,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":523.51,"free":3489.88},{"epoch":26126192,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":523.48,"free":3489.9},{"epoch":26126193,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.46,"free":3489.91},{"epoch":26126194,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":523.35,"free":3490.02},{"epoch":26126195,"idl":99.54,"recv":0,"send":0,"writ":0.71,"used":524.02,"free":3489.36},{"epoch":26126196,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":523.32,"free":3490.06},{"epoch":26126197,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":523.3,"free":3490.08},{"epoch":26126198,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":523.27,"free":3490.1},{"epoch":26126199,"idl":99.61,"recv":0,"send":0,"writ":0.27,"used":523.97,"free":3489.38},{"epoch":26126200,"idl":99.16,"recv":0,"send":0,"writ":0.71,"used":524.56,"free":3488.81},{"epoch":26126201,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.21,"free":3489.16},{"epoch":26126202,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":524.19,"free":3489.18},{"epoch":26126203,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":524.37,"free":3488.99},{"epoch":26126204,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":524.34,"free":3489.01},{"epoch":26126205,"idl":99.69,"recv":0,"send":0,"writ":0.75,"used":524.36,"free":3489.01},{"epoch":26126206,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":524.06,"free":3489.31},{"epoch":26126207,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.04,"free":3489.33},{"epoch":26126208,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":524,"free":3489.36},{"epoch":26126209,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":523.97,"free":3489.4},{"epoch":26126210,"idl":99.7,"recv":0,"send":0,"writ":0.76,"used":524.37,"free":3489.01},{"epoch":26126211,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.36,"free":3489.02},{"epoch":26126212,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":524.34,"free":3489.04},{"epoch":26126213,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":524.3,"free":3489.07},{"epoch":26126214,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":524.27,"free":3489.1},{"epoch":26126215,"idl":99.7,"recv":0,"send":0,"writ":0.78,"used":524.66,"free":3488.72},{"epoch":26126216,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":523.5,"free":3489.88},{"epoch":26126217,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":523.47,"free":3489.9},{"epoch":26126218,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.6,"free":3489.77},{"epoch":26126219,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":523.85,"free":3489.52},{"epoch":26126220,"idl":98.94,"recv":0,"send":0,"writ":11.11,"used":524.16,"free":3489.18},{"epoch":26126221,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.43,"free":3488.93},{"epoch":26126222,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.4,"free":3488.96},{"epoch":26126223,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":524.37,"free":3488.98},{"epoch":26126224,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":524.34,"free":3489.01},{"epoch":26126225,"idl":99.65,"recv":0,"send":0,"writ":0.61,"used":523.71,"free":3489.69},{"epoch":26126226,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":524.16,"free":3489.26},{"epoch":26126227,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":524.22,"free":3489.2},{"epoch":26126228,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.18,"free":3489.22},{"epoch":26126229,"idl":99.75,"recv":0.01,"send":0,"writ":0.3,"used":524.62,"free":3488.78},{"epoch":26126230,"idl":99.58,"recv":0,"send":0,"writ":0.64,"used":523.64,"free":3489.78},{"epoch":26126231,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":524.08,"free":3489.33},{"epoch":26126232,"idl":99.88,"recv":0,"send":0.01,"writ":0.16,"used":524.2,"free":3489.21},{"epoch":26126233,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":524.2,"free":3489.21},{"epoch":26126234,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":524.17,"free":3489.23},{"epoch":26126235,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":523.69,"free":3489.73},{"epoch":26126236,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":524.46,"free":3488.95},{"epoch":26126237,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":524.11,"free":3489.3},{"epoch":26126238,"idl":99.91,"recv":0.01,"send":0,"writ":0.14,"used":524.15,"free":3489.26},{"epoch":26126239,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":524.21,"free":3489.19},{"epoch":26126240,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":524.45,"free":3488.98},{"epoch":26126241,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":525.01,"free":3488.42},{"epoch":26126242,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":524.4,"free":3489.01},{"epoch":26126243,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":524.37,"free":3489.04},{"epoch":26126244,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":524.34,"free":3489.07},{"epoch":26126245,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":524.1,"free":3489.33},{"epoch":26126246,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":524.92,"free":3488.5},{"epoch":26126247,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":524.71,"free":3488.7},{"epoch":26126248,"idl":96.38,"recv":0,"send":0,"writ":0.17,"used":524.68,"free":3488.73},{"epoch":26126249,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.65,"free":3488.75},{"epoch":26126250,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":524.65,"free":3488.77},{"epoch":26126251,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":524.97,"free":3488.44},{"epoch":26126252,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":524.59,"free":3488.82},{"epoch":26126253,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":524.55,"free":3488.85},{"epoch":26126254,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":524.58,"free":3488.82},{"epoch":26126255,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":523.53,"free":3489.89},{"epoch":26126256,"idl":94.97,"recv":0.31,"send":0.01,"writ":78.54,"used":537.06,"free":3476.68},{"epoch":26126257,"idl":99.73,"recv":0,"send":0,"writ":181.62,"used":526.82,"free":3486.53},{"epoch":26126258,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":526.8,"free":3486.55},{"epoch":26126259,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":527.28,"free":3486.05},{"epoch":26126260,"idl":99.74,"recv":0,"send":0,"writ":0.35,"used":525.62,"free":3487.73},{"epoch":26126261,"idl":99.76,"recv":0,"send":0,"writ":0.48,"used":525.92,"free":3487.43},{"epoch":26126262,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":524.42,"free":3488.98},{"epoch":26126263,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":524.48,"free":3488.91},{"epoch":26126264,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":524.45,"free":3488.93},{"epoch":26126265,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":523.75,"free":3489.66},{"epoch":26126266,"idl":99.77,"recv":0,"send":0,"writ":0.46,"used":524.13,"free":3489.28},{"epoch":26126267,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":524.64,"free":3488.76},{"epoch":26126268,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":524.62,"free":3488.78},{"epoch":26126269,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":524.59,"free":3488.8},{"epoch":26126270,"idl":99.83,"recv":0,"send":0,"writ":0.38,"used":525,"free":3488.4},{"epoch":26126271,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":524.98,"free":3488.42},{"epoch":26126272,"idl":99.58,"recv":0,"send":0,"writ":0.59,"used":524.81,"free":3488.59},{"epoch":26126273,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":523.95,"free":3489.44},{"epoch":26126274,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":523.92,"free":3489.47},{"epoch":26126275,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":524.14,"free":3489.26},{"epoch":26126276,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":524.12,"free":3489.28},{"epoch":26126277,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":525,"free":3488.4},{"epoch":26126278,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":524.99,"free":3488.4},{"epoch":26126279,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":524.82,"free":3488.57},{"epoch":26126280,"idl":99.73,"recv":0,"send":0,"writ":0.38,"used":524.22,"free":3489.18},{"epoch":26126281,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":524.17,"free":3489.22},{"epoch":26126282,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":524.8,"free":3488.59},{"epoch":26126283,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":524.11,"free":3489.27},{"epoch":26126284,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.09,"free":3489.29},{"epoch":26126285,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":524.65,"free":3488.74},{"epoch":26126286,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":524.72,"free":3488.67},{"epoch":26126287,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":525.04,"free":3488.35},{"epoch":26126288,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":524.66,"free":3488.73},{"epoch":26126289,"idl":99.57,"recv":0,"send":0,"writ":0.33,"used":524.39,"free":3488.97},{"epoch":26126290,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":523.64,"free":3489.74},{"epoch":26126291,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":523.6,"free":3489.79},{"epoch":26126292,"idl":99.58,"recv":0.01,"send":0.01,"writ":0.55,"used":524.33,"free":3489.06},{"epoch":26126293,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":524.46,"free":3488.93},{"epoch":26126294,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":524.42,"free":3488.96},{"epoch":26126295,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":523.44,"free":3489.95},{"epoch":26126296,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":523.4,"free":3489.99},{"epoch":26126297,"idl":99.74,"recv":0,"send":0,"writ":0.64,"used":524.42,"free":3488.97},{"epoch":26126298,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.58,"free":3488.8},{"epoch":26126299,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.55,"free":3488.83},{"epoch":26126300,"idl":99.76,"recv":0,"send":0,"writ":0.26,"used":524.74,"free":3488.66},{"epoch":26126301,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":524.7,"free":3488.7},{"epoch":26126302,"idl":99.73,"recv":0,"send":0,"writ":0.42,"used":525.04,"free":3488.35},{"epoch":26126303,"idl":99.91,"recv":0,"send":0,"writ":0.28,"used":524.65,"free":3488.74},{"epoch":26126304,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":524.6,"free":3488.78},{"epoch":26126305,"idl":99.74,"recv":0,"send":0,"writ":0.27,"used":523.87,"free":3489.53},{"epoch":26126306,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.83,"free":3489.57},{"epoch":26126307,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":523.98,"free":3489.41},{"epoch":26126308,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":524.3,"free":3489.09},{"epoch":26126309,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":523.91,"free":3489.48},{"epoch":26126310,"idl":99.74,"recv":0,"send":0,"writ":0.26,"used":524.88,"free":3488.52},{"epoch":26126311,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.87,"free":3488.53},{"epoch":26126312,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":524.83,"free":3488.57},{"epoch":26126313,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":524.69,"free":3488.71},{"epoch":26126314,"idl":99.89,"recv":0,"send":0,"writ":0.23,"used":524.29,"free":3489.1},{"epoch":26126315,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":523.01,"free":3490.39},{"epoch":26126316,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":522.97,"free":3490.43},{"epoch":26126317,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":522.93,"free":3490.46},{"epoch":26126318,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":524.43,"free":3488.96},{"epoch":26126319,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":524.64,"free":3488.73},{"epoch":26126320,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":524.92,"free":3488.46},{"epoch":26126321,"idl":99.81,"recv":0.05,"send":5.65,"writ":0.51,"used":524.93,"free":3488.44},{"epoch":26126322,"idl":99.89,"recv":0,"send":0.01,"writ":0.21,"used":524.91,"free":3488.43},{"epoch":26126323,"idl":99.74,"recv":0,"send":0,"writ":0.58,"used":524.36,"free":3488.99},{"epoch":26126324,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":522.87,"free":3490.47},{"epoch":26126325,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":524.99,"free":3488.36},{"epoch":26126326,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":524.25,"free":3489.09},{"epoch":26126327,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":523.96,"free":3489.38},{"epoch":26126328,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":524.46,"free":3488.88},{"epoch":26126329,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":524.4,"free":3488.93},{"epoch":26126330,"idl":99.78,"recv":0,"send":0,"writ":0.26,"used":524.39,"free":3488.96},{"epoch":26126331,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":524.37,"free":3488.98},{"epoch":26126332,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.34,"free":3489.01},{"epoch":26126333,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":524.58,"free":3488.77},{"epoch":26126334,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":524.21,"free":3489.13},{"epoch":26126335,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":524.23,"free":3489.13},{"epoch":26126336,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":524.19,"free":3489.16},{"epoch":26126337,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":524.17,"free":3489.18},{"epoch":26126338,"idl":99.75,"recv":0,"send":0,"writ":0.5,"used":524.54,"free":3488.8},{"epoch":26126339,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":524.36,"free":3489},{"epoch":26126340,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":524.11,"free":3489.28},{"epoch":26126341,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":524.07,"free":3489.32},{"epoch":26126342,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.22,"free":3489.16},{"epoch":26126343,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":524.76,"free":3488.62},{"epoch":26126344,"idl":99.86,"recv":0,"send":0,"writ":0.4,"used":523.44,"free":3489.93},{"epoch":26126345,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":522.71,"free":3490.68},{"epoch":26126346,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":522.67,"free":3490.72},{"epoch":26126347,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":522.64,"free":3490.75},{"epoch":26126348,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":522.61,"free":3490.78},{"epoch":26126349,"idl":99.54,"recv":0,"send":0,"writ":0.71,"used":524.7,"free":3488.68},{"epoch":26126350,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":523.98,"free":3489.41},{"epoch":26126351,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":523.98,"free":3489.41},{"epoch":26126352,"idl":99.91,"recv":0,"send":0.01,"writ":0.17,"used":523.96,"free":3489.43},{"epoch":26126353,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":523.92,"free":3489.46},{"epoch":26126354,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":524.75,"free":3488.65},{"epoch":26126355,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":523.46,"free":3489.96},{"epoch":26126356,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":523.37,"free":3490.05},{"epoch":26126357,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":523.35,"free":3490.06},{"epoch":26126358,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":523.5,"free":3489.91},{"epoch":26126359,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":524.32,"free":3489.08},{"epoch":26126360,"idl":99.73,"recv":0,"send":0,"writ":0.26,"used":524.66,"free":3488.76},{"epoch":26126361,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":524.64,"free":3488.77},{"epoch":26126362,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":524.61,"free":3488.8},{"epoch":26126363,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.57,"free":3488.84},{"epoch":26126364,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":524.61,"free":3488.79},{"epoch":26126365,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":524.23,"free":3489.19},{"epoch":26126366,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.21,"free":3489.2},{"epoch":26126367,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.18,"free":3489.23},{"epoch":26126368,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.15,"free":3489.26},{"epoch":26126369,"idl":98.89,"recv":0,"send":0,"writ":0.56,"used":524.48,"free":3488.92},{"epoch":26126370,"idl":99.77,"recv":0.01,"send":0.74,"writ":0.29,"used":524.16,"free":3489.26},{"epoch":26126371,"idl":99.87,"recv":0,"send":0.03,"writ":0.16,"used":524.17,"free":3489.24},{"epoch":26126372,"idl":99.86,"recv":0,"send":0.01,"writ":0.15,"used":524.13,"free":3489.28},{"epoch":26126373,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.09,"free":3489.31},{"epoch":26126374,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":524.72,"free":3488.68},{"epoch":26126375,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":523.18,"free":3490.24},{"epoch":26126376,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":523.26,"free":3490.16},{"epoch":26126377,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":523.22,"free":3490.18},{"epoch":26126378,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":523.34,"free":3490.06},{"epoch":26126379,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":523.81,"free":3489.57},{"epoch":26126380,"idl":99.61,"recv":0,"send":0,"writ":0.69,"used":524.99,"free":3488.41},{"epoch":26126381,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.61,"free":3488.78},{"epoch":26126382,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":524.58,"free":3488.81},{"epoch":26126383,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":524.58,"free":3488.81},{"epoch":26126384,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":524.72,"free":3488.66},{"epoch":26126385,"idl":99.63,"recv":0,"send":0,"writ":0.77,"used":524.83,"free":3488.56},{"epoch":26126386,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":524.41,"free":3488.97},{"epoch":26126387,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":524.38,"free":3488.99},{"epoch":26126388,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":524.35,"free":3489.02},{"epoch":26126389,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":524.32,"free":3489.05},{"epoch":26126390,"idl":99.72,"recv":0,"send":0,"writ":0.71,"used":524.68,"free":3488.71},{"epoch":26126391,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":524.45,"free":3488.93},{"epoch":26126392,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":524.44,"free":3488.94},{"epoch":26126393,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":524.41,"free":3488.97},{"epoch":26126394,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":524.38,"free":3488.99},{"epoch":26126395,"idl":99.72,"recv":0,"send":0,"writ":0.68,"used":524.18,"free":3489.21},{"epoch":26126396,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":523.37,"free":3490.02},{"epoch":26126397,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":523.33,"free":3490.05},{"epoch":26126398,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":523.32,"free":3490.06},{"epoch":26126399,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":523.46,"free":3489.91},{"epoch":26126400,"idl":99.62,"recv":0,"send":0,"writ":0.65,"used":524.96,"free":3488.43},{"epoch":26126401,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":523.67,"free":3489.71},{"epoch":26126402,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":523.64,"free":3489.74},{"epoch":26126403,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":523.61,"free":3489.77},{"epoch":26126404,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":523.59,"free":3489.78},{"epoch":26126405,"idl":99.61,"recv":0,"send":0,"writ":0.53,"used":524.06,"free":3489.32},{"epoch":26126406,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":524.19,"free":3489.19},{"epoch":26126407,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":524.19,"free":3489.19},{"epoch":26126408,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":524.16,"free":3489.21},{"epoch":26126409,"idl":99.64,"recv":0,"send":0,"writ":0.26,"used":524.61,"free":3488.74},{"epoch":26126410,"idl":99.7,"recv":0,"send":0,"writ":0.68,"used":525.18,"free":3488.19},{"epoch":26126411,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":524.58,"free":3488.78},{"epoch":26126412,"idl":99.77,"recv":0,"send":0.01,"writ":0.16,"used":524.55,"free":3488.8},{"epoch":26126413,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":524.56,"free":3488.79},{"epoch":26126414,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":524.68,"free":3488.69},{"epoch":26126415,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":524.19,"free":3489.19},{"epoch":26126416,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":525,"free":3488.38},{"epoch":26126417,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":524.38,"free":3488.99},{"epoch":26126418,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":524.34,"free":3489.03},{"epoch":26126419,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":524.32,"free":3489.05},{"epoch":26126420,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":524.36,"free":3489.02},{"epoch":26126421,"idl":99.7,"recv":0,"send":0.01,"writ":0.57,"used":524.77,"free":3488.61},{"epoch":26126422,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":524.41,"free":3488.97},{"epoch":26126423,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":524.38,"free":3488.98},{"epoch":26126424,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":524.36,"free":3489},{"epoch":26126425,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":523.65,"free":3489.73},{"epoch":26126426,"idl":99.72,"recv":0,"send":0,"writ":0.68,"used":523.73,"free":3489.65},{"epoch":26126427,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":523.31,"free":3490.07},{"epoch":26126428,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":523.38,"free":3489.99},{"epoch":26126429,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":523.47,"free":3489.9},{"epoch":26126430,"idl":99.71,"recv":0,"send":0,"writ":0.28,"used":523.69,"free":3489.69},{"epoch":26126431,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":524.66,"free":3488.72},{"epoch":26126432,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":524.62,"free":3488.75},{"epoch":26126433,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":524.58,"free":3488.79},{"epoch":26126434,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":524.48,"free":3488.88},{"epoch":26126435,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":524.31,"free":3489.07},{"epoch":26126436,"idl":99.65,"recv":0,"send":0,"writ":0.4,"used":524.92,"free":3488.45},{"epoch":26126437,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":524.43,"free":3488.94},{"epoch":26126438,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":524.35,"free":3489.01},{"epoch":26126439,"idl":99.59,"recv":0,"send":0,"writ":0.26,"used":524.61,"free":3488.73},{"epoch":26126440,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":524.84,"free":3488.52},{"epoch":26126441,"idl":99.65,"recv":0,"send":0,"writ":0.52,"used":525.16,"free":3488.19},{"epoch":26126442,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":524.79,"free":3488.56},{"epoch":26126443,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":524.92,"free":3488.42},{"epoch":26126444,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":524.91,"free":3488.43},{"epoch":26126445,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":524.91,"free":3488.45},{"epoch":26126446,"idl":99.71,"recv":0,"send":0,"writ":0.45,"used":525.19,"free":3488.16},{"epoch":26126447,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":524.6,"free":3488.75},{"epoch":26126448,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":524.56,"free":3488.77},{"epoch":26126449,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":524.53,"free":3488.8},{"epoch":26126450,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":524.09,"free":3489.26},{"epoch":26126451,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":524.2,"free":3489.15},{"epoch":26126452,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":525.23,"free":3488.12},{"epoch":26126453,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":524.86,"free":3488.48},{"epoch":26126454,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":524.82,"free":3488.52},{"epoch":26126455,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":524.33,"free":3489.03},{"epoch":26126456,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":524.28,"free":3489.07},{"epoch":26126457,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":525.03,"free":3488.32},{"epoch":26126458,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":524.65,"free":3488.69},{"epoch":26126459,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":524.62,"free":3488.71},{"epoch":26126460,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":524.86,"free":3488.49},{"epoch":26126461,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":524.82,"free":3488.52},{"epoch":26126462,"idl":99.67,"recv":0,"send":0,"writ":0.6,"used":525.15,"free":3488.19},{"epoch":26126463,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":524.77,"free":3488.57},{"epoch":26126464,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":524.83,"free":3488.5},{"epoch":26126465,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":524.47,"free":3488.88},{"epoch":26126466,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":524.4,"free":3488.95},{"epoch":26126467,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":525.04,"free":3488.3},{"epoch":26126468,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":524.83,"free":3488.51},{"epoch":26126469,"idl":99.61,"recv":0,"send":0,"writ":0.29,"used":524.82,"free":3488.49},{"epoch":26126470,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":525.04,"free":3488.28},{"epoch":26126471,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":525.01,"free":3488.31},{"epoch":26126472,"idl":99.69,"recv":0,"send":0.01,"writ":0.4,"used":525.29,"free":3488.02},{"epoch":26126473,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":523.9,"free":3489.4},{"epoch":26126474,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.18,"used":523.83,"free":3489.47},{"epoch":26126475,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":524.75,"free":3488.57},{"epoch":26126476,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":524.88,"free":3488.43},{"epoch":26126477,"idl":99.7,"recv":0,"send":0,"writ":0.61,"used":525.29,"free":3488.02},{"epoch":26126478,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":523.53,"free":3489.78},{"epoch":26126479,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":523.14,"free":3490.16},{"epoch":26126480,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":524.1,"free":3489.22},{"epoch":26126481,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":524.08,"free":3489.23},{"epoch":26126482,"idl":99.65,"recv":0,"send":0,"writ":0.6,"used":524.54,"free":3488.78},{"epoch":26126483,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":523.95,"free":3489.37},{"epoch":26126484,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":523.92,"free":3489.4},{"epoch":26126485,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":524.15,"free":3489.19},{"epoch":26126486,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":524.13,"free":3489.2},{"epoch":26126487,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":524.11,"free":3489.22},{"epoch":26126488,"idl":99.62,"recv":0,"send":0,"writ":0.58,"used":523.56,"free":3489.76},{"epoch":26126489,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":523.06,"free":3490.26},{"epoch":26126490,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":523.05,"free":3490.28},{"epoch":26126491,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":523.22,"free":3490.11},{"epoch":26126492,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":523.19,"free":3490.14},{"epoch":26126493,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":523.71,"free":3489.61},{"epoch":26126494,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":523.43,"free":3489.88},{"epoch":26126495,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":524.1,"free":3489.23},{"epoch":26126496,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":524.07,"free":3489.26},{"epoch":26126497,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":524.04,"free":3489.28},{"epoch":26126498,"idl":99.67,"recv":0,"send":0,"writ":0.58,"used":524.64,"free":3488.67},{"epoch":26126499,"idl":99.61,"recv":0,"send":0,"writ":0.36,"used":524.17,"free":3489.12},{"epoch":26126500,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":524.16,"free":3489.15},{"epoch":26126501,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":524.13,"free":3489.17},{"epoch":26126502,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":524.09,"free":3489.2},{"epoch":26126503,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":524.42,"free":3488.87},{"epoch":26126504,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":524.03,"free":3489.26},{"epoch":26126505,"idl":99.7,"recv":0,"send":0,"writ":0.28,"used":523.39,"free":3489.91},{"epoch":26126506,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":523.83,"free":3489.47},{"epoch":26126507,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":523.92,"free":3489.38},{"epoch":26126508,"idl":99.64,"recv":0,"send":0,"writ":0.41,"used":524.45,"free":3488.84},{"epoch":26126509,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":524.36,"free":3488.93},{"epoch":26126510,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":524.6,"free":3488.71},{"epoch":26126511,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":524.57,"free":3488.75},{"epoch":26126512,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":524.54,"free":3488.78},{"epoch":26126513,"idl":99.64,"recv":0,"send":0,"writ":0.57,"used":524.8,"free":3488.52},{"epoch":26126514,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":524.41,"free":3488.9},{"epoch":26126515,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":524.65,"free":3488.68},{"epoch":26126516,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":524.62,"free":3488.7},{"epoch":26126517,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":524.59,"free":3488.73},{"epoch":26126518,"idl":99.65,"recv":0,"send":0,"writ":0.41,"used":525.22,"free":3488.09},{"epoch":26126519,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":524.27,"free":3489.03},{"epoch":26126520,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":523.78,"free":3489.54},{"epoch":26126521,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":523.92,"free":3489.39},{"epoch":26126522,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":523.89,"free":3489.42},{"epoch":26126523,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":523.87,"free":3489.43},{"epoch":26126524,"idl":99.55,"recv":0,"send":0,"writ":0.55,"used":523.73,"free":3489.57},{"epoch":26126525,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":524.07,"free":3489.25},{"epoch":26126526,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":524.06,"free":3489.26},{"epoch":26126527,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":524.04,"free":3489.27},{"epoch":26126528,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":524,"free":3489.3},{"epoch":26126529,"idl":99.41,"recv":0.02,"send":0.07,"writ":0.68,"used":524.73,"free":3488.55},{"epoch":26126530,"idl":99.69,"recv":0.01,"send":0.01,"writ":0.33,"used":524.29,"free":3489.01},{"epoch":26126531,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":524.4,"free":3488.89},{"epoch":26126532,"idl":99.8,"recv":0,"send":0.01,"writ":0.14,"used":524.41,"free":3488.88},{"epoch":26126533,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":524.38,"free":3488.9},{"epoch":26126534,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":524.32,"free":3488.96},{"epoch":26126535,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":523.13,"free":3490.17},{"epoch":26126536,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":523.09,"free":3490.21},{"epoch":26126537,"idl":99.75,"recv":0,"send":0,"writ":0.22,"used":523.05,"free":3490.23},{"epoch":26126538,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":523.02,"free":3490.26},{"epoch":26126539,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":523.96,"free":3489.31},{"epoch":26126540,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":523.97,"free":3489.33},{"epoch":26126541,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":523.88,"free":3489.41},{"epoch":26126542,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":523.85,"free":3489.44},{"epoch":26126543,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":523.81,"free":3489.47},{"epoch":26126544,"idl":99.66,"recv":0,"send":0,"writ":0.42,"used":524.97,"free":3488.31},{"epoch":26126545,"idl":99.67,"recv":0,"send":0,"writ":0.47,"used":524.78,"free":3488.52},{"epoch":26126546,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":524.84,"free":3488.45},{"epoch":26126547,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":524.9,"free":3488.39},{"epoch":26126548,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":524.87,"free":3488.41},{"epoch":26126549,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":525.46,"free":3487.81},{"epoch":26126550,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":524.59,"free":3488.7},{"epoch":26126551,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":524.56,"free":3488.73},{"epoch":26126552,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":524.53,"free":3488.75},{"epoch":26126553,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":524.5,"free":3488.78},{"epoch":26126554,"idl":99.69,"recv":0,"send":0,"writ":0.42,"used":525.24,"free":3488.03},{"epoch":26126555,"idl":99.78,"recv":0,"send":0,"writ":0.44,"used":524.4,"free":3488.89},{"epoch":26126556,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":524.37,"free":3488.92},{"epoch":26126557,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":524.33,"free":3488.95},{"epoch":26126558,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":524.3,"free":3488.98},{"epoch":26126559,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":524.75,"free":3488.5},{"epoch":26126560,"idl":99.52,"recv":0,"send":0,"writ":0.66,"used":525.11,"free":3488.15},{"epoch":26126561,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":524.81,"free":3488.45},{"epoch":26126562,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":524.88,"free":3488.38},{"epoch":26126563,"idl":99.49,"recv":0,"send":0,"writ":0.16,"used":524.85,"free":3488.41},{"epoch":26126564,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":524.82,"free":3488.43},{"epoch":26126565,"idl":99.59,"recv":0,"send":0,"writ":0.73,"used":525.28,"free":3487.98},{"epoch":26126566,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":525.02,"free":3488.24},{"epoch":26126567,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":524.98,"free":3488.27},{"epoch":26126568,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":524.96,"free":3488.29},{"epoch":26126569,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":525.14,"free":3488.11},{"epoch":26126570,"idl":99.56,"recv":0,"send":0,"writ":0.67,"used":524.87,"free":3488.4},{"epoch":26126571,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":524.87,"free":3488.39},{"epoch":26126572,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":524.85,"free":3488.41},{"epoch":26126573,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":524.81,"free":3488.44},{"epoch":26126574,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":524.78,"free":3488.47},{"epoch":26126575,"idl":99.6,"recv":0,"send":0,"writ":0.68,"used":525.02,"free":3488.24},{"epoch":26126576,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":524.59,"free":3488.67},{"epoch":26126577,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":524.65,"free":3488.6},{"epoch":26126578,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":524.63,"free":3488.63},{"epoch":26126579,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":524.59,"free":3488.65},{"epoch":26126580,"idl":99.47,"recv":0,"send":0,"writ":0.63,"used":524.3,"free":3488.97},{"epoch":26126581,"idl":99.83,"recv":0,"send":0,"writ":0.23,"used":524.31,"free":3488.95},{"epoch":26126582,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":524.28,"free":3488.98},{"epoch":26126583,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":524.26,"free":3489},{"epoch":26126584,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":524.38,"free":3488.87},{"epoch":26126585,"idl":99.56,"recv":0,"send":0,"writ":0.57,"used":524.75,"free":3488.51},{"epoch":26126586,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":524.36,"free":3488.89},{"epoch":26126587,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":524.33,"free":3488.92},{"epoch":26126588,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":524.31,"free":3488.93},{"epoch":26126589,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":525.01,"free":3488.21},{"epoch":26126590,"idl":99.69,"recv":0,"send":0,"writ":0.45,"used":525.35,"free":3487.89},{"epoch":26126591,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":524.82,"free":3488.41},{"epoch":26126592,"idl":99.88,"recv":0,"send":0.01,"writ":0.18,"used":524.88,"free":3488.35},{"epoch":26126593,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.85,"free":3488.38},{"epoch":26126594,"idl":87.1,"recv":6.22,"send":0.02,"writ":149.67,"used":546.85,"free":3448.36},{"epoch":26126595,"idl":96.71,"recv":0,"send":0,"writ":45.21,"used":533.73,"free":3468.92},{"epoch":26126596,"idl":99.74,"recv":0,"send":0,"writ":0.6,"used":528,"free":3479.91},{"epoch":26126597,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":527.36,"free":3480.53},{"epoch":26126598,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":527.33,"free":3480.56},{"epoch":26126599,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":527.2,"free":3480.69},{"epoch":26126600,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":524.95,"free":3484.12},{"epoch":26126601,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":524.79,"free":3484.53},{"epoch":26126602,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":524.41,"free":3484.91},{"epoch":26126603,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":524.38,"free":3484.93},{"epoch":26126604,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":524.52,"free":3484.79},{"epoch":26126605,"idl":98.48,"recv":0,"send":0,"writ":15.64,"used":525.16,"free":3484.6},{"epoch":26126606,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":524.57,"free":3484.73},{"epoch":26126607,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.46,"free":3484.84},{"epoch":26126608,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.43,"free":3484.86},{"epoch":26126609,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":524.4,"free":3484.89},{"epoch":26126610,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":523.96,"free":3485.34},{"epoch":26126611,"idl":98.97,"recv":0,"send":0,"writ":0.55,"used":524.34,"free":3484.97},{"epoch":26126612,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":524.24,"free":3485.08},{"epoch":26126613,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":524.24,"free":3485.07},{"epoch":26126614,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":524.21,"free":3485.09},{"epoch":26126615,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":523.53,"free":3485.77},{"epoch":26126616,"idl":99.72,"recv":0,"send":0,"writ":0.4,"used":524.49,"free":3484.8},{"epoch":26126617,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":524.44,"free":3484.85},{"epoch":26126618,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.42,"free":3484.87},{"epoch":26126619,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":524.64,"free":3484.64},{"epoch":26126620,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":525.04,"free":3484.26},{"epoch":26126621,"idl":95.99,"recv":0.04,"send":0.01,"writ":78.08,"used":534.2,"free":3476.88},{"epoch":26126622,"idl":99.83,"recv":0,"send":0.01,"writ":64.45,"used":527.09,"free":3482.13},{"epoch":26126623,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":527.22,"free":3482},{"epoch":26126624,"idl":99.61,"recv":0,"send":0,"writ":0.2,"used":527.18,"free":3482.04},{"epoch":26126625,"idl":99.77,"recv":0,"send":0,"writ":0.37,"used":527.17,"free":3482.07},{"epoch":26126626,"idl":99.77,"recv":0,"send":0,"writ":0.36,"used":527.31,"free":3481.93},{"epoch":26126627,"idl":99.89,"recv":0,"send":0,"writ":0.43,"used":523.97,"free":3485.32},{"epoch":26126628,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":523.95,"free":3485.34},{"epoch":26126629,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":523.92,"free":3485.36},{"epoch":26126630,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":524.8,"free":3484.5},{"epoch":26126631,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.79,"free":3484.51},{"epoch":26126632,"idl":99.73,"recv":0,"send":0,"writ":0.61,"used":525.11,"free":3484.18},{"epoch":26126633,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":523.75,"free":3485.55},{"epoch":26126634,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":523.71,"free":3485.57},{"epoch":26126635,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":523.72,"free":3485.59},{"epoch":26126636,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.69,"free":3485.61},{"epoch":26126637,"idl":99.74,"recv":0,"send":0,"writ":0.58,"used":524.38,"free":3484.91},{"epoch":26126638,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":524.06,"free":3485.24},{"epoch":26126639,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":524.03,"free":3485.25},{"epoch":26126640,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":523.56,"free":3485.75},{"epoch":26126641,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":523.51,"free":3485.79},{"epoch":26126642,"idl":99.64,"recv":0,"send":0,"writ":0.58,"used":524.02,"free":3485.28},{"epoch":26126643,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":523.45,"free":3485.84},{"epoch":26126644,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":523.43,"free":3485.86},{"epoch":26126645,"idl":99.7,"recv":0,"send":0,"writ":0.34,"used":523.27,"free":3486.03},{"epoch":26126646,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.16,"used":523.32,"free":3485.97},{"epoch":26126647,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":524.04,"free":3485.25},{"epoch":26126648,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":523.74,"free":3485.55},{"epoch":26126649,"idl":99.68,"recv":0,"send":0,"writ":0.34,"used":523.97,"free":3485.29},{"epoch":26126650,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":522.73,"free":3486.55},{"epoch":26126651,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":522.68,"free":3486.59},{"epoch":26126652,"idl":99.75,"recv":0,"send":0.01,"writ":0.58,"used":523.33,"free":3485.94},{"epoch":26126653,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":523.06,"free":3486.21},{"epoch":26126654,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":523.02,"free":3486.24},{"epoch":26126655,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":523.73,"free":3485.55},{"epoch":26126656,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":523.73,"free":3485.54},{"epoch":26126657,"idl":99.76,"recv":0,"send":0,"writ":0.61,"used":524.31,"free":3484.96},{"epoch":26126658,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":523.92,"free":3485.34},{"epoch":26126659,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.9,"free":3485.36},{"epoch":26126660,"idl":99.83,"recv":0,"send":0.01,"writ":0.28,"used":523.81,"free":3485.47},{"epoch":26126661,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":523.8,"free":3485.47},{"epoch":26126662,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":524.18,"free":3485.09},{"epoch":26126663,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":523.98,"free":3485.28},{"epoch":26126664,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.95,"free":3485.31},{"epoch":26126665,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":524.19,"free":3485.09},{"epoch":26126666,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":524.16,"free":3485.12},{"epoch":26126667,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":524.91,"free":3484.36},{"epoch":26126668,"idl":99.89,"recv":0,"send":0,"writ":0.39,"used":523.79,"free":3485.47},{"epoch":26126669,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":523.76,"free":3485.5},{"epoch":26126670,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":524.24,"free":3485.03},{"epoch":26126671,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":524.22,"free":3485.05},{"epoch":26126672,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":524.2,"free":3485.07},{"epoch":26126673,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":524.66,"free":3484.6},{"epoch":26126674,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":524.26,"free":3485},{"epoch":26126675,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":523.76,"free":3485.52},{"epoch":26126676,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":523.82,"free":3485.45},{"epoch":26126677,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":523.79,"free":3485.48},{"epoch":26126678,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":524.12,"free":3485.14},{"epoch":26126679,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":523.52,"free":3485.72},{"epoch":26126680,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":523.72,"free":3485.54},{"epoch":26126681,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":523.69,"free":3485.57},{"epoch":26126682,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":523.73,"free":3485.52},{"epoch":26126683,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":524.33,"free":3484.91},{"epoch":26126684,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":524.02,"free":3485.21},{"epoch":26126685,"idl":99.24,"recv":0,"send":0,"writ":0.31,"used":524.26,"free":3484.99},{"epoch":26126686,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":524.23,"free":3485.01},{"epoch":26126687,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":524.2,"free":3485.04},{"epoch":26126688,"idl":99.66,"recv":0,"send":0,"writ":0.4,"used":524.53,"free":3484.71},{"epoch":26126689,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":524.15,"free":3485.09},{"epoch":26126690,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":523.59,"free":3485.66},{"epoch":26126691,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":523.54,"free":3485.71},{"epoch":26126692,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":523.51,"free":3485.74},{"epoch":26126693,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":524.19,"free":3485.05},{"epoch":26126694,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":523.45,"free":3485.78},{"epoch":26126695,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":524.17,"free":3485.08},{"epoch":26126696,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":524.16,"free":3485.09},{"epoch":26126697,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":524.31,"free":3484.94},{"epoch":26126698,"idl":99.73,"recv":0,"send":0,"writ":0.45,"used":524.66,"free":3484.58},{"epoch":26126699,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":524.5,"free":3484.74},{"epoch":26126700,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":523.28,"free":3485.98},{"epoch":26126701,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":523.22,"free":3486.03},{"epoch":26126702,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":523.19,"free":3486.06},{"epoch":26126703,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.19,"used":523.24,"free":3486},{"epoch":26126704,"idl":99.71,"recv":0,"send":0,"writ":0.61,"used":523.82,"free":3485.41},{"epoch":26126705,"idl":99.66,"recv":0,"send":0,"writ":0.31,"used":523.79,"free":3485.45},{"epoch":26126706,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.17,"used":523.72,"free":3485.52},{"epoch":26126707,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.16,"used":523.7,"free":3485.53},{"epoch":26126708,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":523.64,"free":3485.6},{"epoch":26126709,"idl":99.55,"recv":0,"send":0,"writ":0.7,"used":524.85,"free":3484.36},{"epoch":26126710,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":523.33,"free":3485.89},{"epoch":26126711,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.26,"free":3485.96},{"epoch":26126712,"idl":99.92,"recv":0,"send":0.01,"writ":0.16,"used":523.23,"free":3485.99},{"epoch":26126713,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":523.2,"free":3486.01},{"epoch":26126714,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":524.91,"free":3484.34},{"epoch":26126715,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":524.66,"free":3484.62},{"epoch":26126716,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.62,"free":3484.65},{"epoch":26126717,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":524.23,"free":3485.04},{"epoch":26126718,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":524.3,"free":3484.96},{"epoch":26126719,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":524.85,"free":3484.4},{"epoch":26126720,"idl":99.85,"recv":0,"send":0.01,"writ":0.29,"used":523.29,"free":3485.99},{"epoch":26126721,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":523.24,"free":3486.03},{"epoch":26126722,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":523.21,"free":3486.06},{"epoch":26126723,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.18,"free":3486.08},{"epoch":26126724,"idl":99.78,"recv":0,"send":0,"writ":0.52,"used":524.24,"free":3485.01},{"epoch":26126725,"idl":99.85,"recv":0,"send":0,"writ":0.39,"used":524.56,"free":3484.72},{"epoch":26126726,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":524.53,"free":3484.74},{"epoch":26126727,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":524.51,"free":3484.76},{"epoch":26126728,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":524.47,"free":3484.79},{"epoch":26126729,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":524.87,"free":3484.38},{"epoch":26126730,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":524.68,"free":3484.59},{"epoch":26126731,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":524.65,"free":3484.62},{"epoch":26126732,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":524.71,"free":3484.56},{"epoch":26126733,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":524.78,"free":3484.48},{"epoch":26126734,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":525.11,"free":3484.15},{"epoch":26126735,"idl":99.72,"recv":0,"send":0,"writ":0.46,"used":523.78,"free":3485.5},{"epoch":26126736,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":523.73,"free":3485.54},{"epoch":26126737,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":523.69,"free":3485.57},{"epoch":26126738,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":523.67,"free":3485.59},{"epoch":26126739,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":524.4,"free":3484.83},{"epoch":26126740,"idl":99.48,"recv":0,"send":0,"writ":0.67,"used":523.54,"free":3485.71},{"epoch":26126741,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":523.05,"free":3486.2},{"epoch":26126742,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.01,"free":3486.23},{"epoch":26126743,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":522.99,"free":3486.25},{"epoch":26126744,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":522.95,"free":3486.28},{"epoch":26126745,"idl":99.65,"recv":0,"send":0,"writ":0.69,"used":524.58,"free":3484.67},{"epoch":26126746,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":524.39,"free":3484.86},{"epoch":26126747,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":524.36,"free":3484.88},{"epoch":26126748,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.52,"free":3484.72},{"epoch":26126749,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":524.47,"free":3484.76},{"epoch":26126750,"idl":99.65,"recv":0.01,"send":0.02,"writ":0.67,"used":524.81,"free":3484.44},{"epoch":26126751,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":524.4,"free":3484.85},{"epoch":26126752,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":524.36,"free":3484.88},{"epoch":26126753,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.5,"free":3484.74},{"epoch":26126754,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":524.5,"free":3484.74},{"epoch":26126755,"idl":99.62,"recv":0.01,"send":0,"writ":0.74,"used":524.9,"free":3484.35},{"epoch":26126756,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":524.4,"free":3484.85},{"epoch":26126757,"idl":99.88,"recv":0.01,"send":0,"writ":0.15,"used":524.43,"free":3484.81},{"epoch":26126758,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":524.51,"free":3484.73},{"epoch":26126759,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":524.48,"free":3484.76},{"epoch":26126760,"idl":99.61,"recv":0,"send":0,"writ":0.71,"used":525.23,"free":3484.02},{"epoch":26126761,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":524.68,"free":3484.57},{"epoch":26126762,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.65,"free":3484.59},{"epoch":26126763,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":524.62,"free":3484.62},{"epoch":26126764,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.65,"free":3484.58},{"epoch":26126765,"idl":99.66,"recv":0,"send":0,"writ":0.72,"used":525.39,"free":3483.86},{"epoch":26126766,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":525.01,"free":3484.24},{"epoch":26126767,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":524.98,"free":3484.26},{"epoch":26126768,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.96,"free":3484.28},{"epoch":26126769,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":524.71,"free":3484.51},{"epoch":26126770,"idl":99.61,"recv":0,"send":0,"writ":0.54,"used":524.84,"free":3484.39},{"epoch":26126771,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":523.9,"free":3485.32},{"epoch":26126772,"idl":99.9,"recv":0,"send":0.01,"writ":0.14,"used":524.03,"free":3485.19},{"epoch":26126773,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":524.03,"free":3485.19},{"epoch":26126774,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":524,"free":3485.23},{"epoch":26126775,"idl":99.66,"recv":0,"send":0,"writ":0.75,"used":524.23,"free":3485.02},{"epoch":26126776,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":524.46,"free":3484.78},{"epoch":26126777,"idl":99.88,"recv":0,"send":0.01,"writ":0.2,"used":524.65,"free":3484.59},{"epoch":26126778,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":524.62,"free":3484.61},{"epoch":26126779,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.77,"free":3484.46},{"epoch":26126780,"idl":99.78,"recv":0,"send":0.01,"writ":0.27,"used":523.82,"free":3485.43},{"epoch":26126781,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":524.63,"free":3484.62},{"epoch":26126782,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.22,"free":3485.02},{"epoch":26126783,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":524.19,"free":3485.05},{"epoch":26126784,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":524.17,"free":3485.06},{"epoch":26126785,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":524.88,"free":3484.37},{"epoch":26126786,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":525.49,"free":3483.76},{"epoch":26126787,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":524.47,"free":3484.77},{"epoch":26126788,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.01,"free":3485.23},{"epoch":26126789,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":523.99,"free":3485.25},{"epoch":26126790,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":523.97,"free":3485.28},{"epoch":26126791,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":524.47,"free":3484.78},{"epoch":26126792,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":523.92,"free":3485.32},{"epoch":26126793,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":523.9,"free":3485.34},{"epoch":26126794,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.93,"free":3485.3},{"epoch":26126795,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":522.85,"free":3486.4},{"epoch":26126796,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":523.36,"free":3485.89},{"epoch":26126797,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":523.26,"free":3485.98},{"epoch":26126798,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":523.22,"free":3486.01},{"epoch":26126799,"idl":99.69,"recv":0,"send":0,"writ":0.35,"used":524.18,"free":3485.03},{"epoch":26126800,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":522.72,"free":3486.51},{"epoch":26126801,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":523.3,"free":3485.92},{"epoch":26126802,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":523.72,"free":3485.5},{"epoch":26126803,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":523.78,"free":3485.44},{"epoch":26126804,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":523.75,"free":3485.48},{"epoch":26126805,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":523.78,"free":3485.47},{"epoch":26126806,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":518.23,"free":3491.99},{"epoch":26126807,"idl":99.86,"recv":0.01,"send":0.14,"writ":0.2,"used":516.15,"free":3494.37},{"epoch":26126808,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.16,"free":3494.36},{"epoch":26126809,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":516.14,"free":3494.38},{"epoch":26126810,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":515.89,"free":3494.64},{"epoch":26126811,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":516.21,"free":3494.31},{"epoch":26126812,"idl":99.92,"recv":0,"send":0,"writ":0.32,"used":515.83,"free":3494.68},{"epoch":26126813,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":515.81,"free":3494.7},{"epoch":26126814,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.79,"free":3494.71},{"epoch":26126815,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":515.63,"free":3494.89},{"epoch":26126816,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":515.71,"free":3494.8},{"epoch":26126817,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":516.43,"free":3494.08},{"epoch":26126818,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.67,"free":3494.84},{"epoch":26126819,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":515.64,"free":3494.87},{"epoch":26126820,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":514.19,"free":3496.33},{"epoch":26126821,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":514.13,"free":3496.38},{"epoch":26126822,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":516.4,"free":3494.11},{"epoch":26126823,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.05,"free":3494.45},{"epoch":26126824,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":516.03,"free":3494.47},{"epoch":26126825,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":515.87,"free":3494.65},{"epoch":26126826,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":515.94,"free":3494.57},{"epoch":26126827,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":516.65,"free":3493.85},{"epoch":26126828,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.13,"free":3494.37},{"epoch":26126829,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":516.38,"free":3494.08},{"epoch":26126830,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":516.6,"free":3493.88},{"epoch":26126831,"idl":94.79,"recv":0.95,"send":0.02,"writ":182.25,"used":522.68,"free":3487.44},{"epoch":26126832,"idl":99.62,"recv":0,"send":0,"writ":78.51,"used":518.97,"free":3490.23},{"epoch":26126833,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":518.59,"free":3490.62},{"epoch":26126834,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":518.64,"free":3490.56},{"epoch":26126835,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":518.61,"free":3490.61},{"epoch":26126836,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":517.65,"free":3491.59},{"epoch":26126837,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":516.54,"free":3492.73},{"epoch":26126838,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.52,"free":3492.75},{"epoch":26126839,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":516.5,"free":3492.77},{"epoch":26126840,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":516.26,"free":3493.02},{"epoch":26126841,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.23,"free":3493.05},{"epoch":26126842,"idl":99.73,"recv":0,"send":0,"writ":0.42,"used":516.63,"free":3492.67},{"epoch":26126843,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":516.44,"free":3492.84},{"epoch":26126844,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.41,"free":3492.87},{"epoch":26126845,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":515.46,"free":3493.84},{"epoch":26126846,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.56,"free":3493.73},{"epoch":26126847,"idl":99.77,"recv":0,"send":0,"writ":0.48,"used":516.24,"free":3493.05},{"epoch":26126848,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":515.3,"free":3493.99},{"epoch":26126849,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":515.26,"free":3494.02},{"epoch":26126850,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":515.98,"free":3493.32},{"epoch":26126851,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.99,"free":3493.3},{"epoch":26126852,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.96,"free":3493.34},{"epoch":26126853,"idl":99.04,"recv":0,"send":0,"writ":0.55,"used":516.43,"free":3492.86},{"epoch":26126854,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.91,"free":3493.37},{"epoch":26126855,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":515.99,"free":3493.3},{"epoch":26126856,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":515.89,"free":3493.4},{"epoch":26126857,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.04,"free":3493.25},{"epoch":26126858,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":516.58,"free":3492.7},{"epoch":26126859,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":516.28,"free":3492.98},{"epoch":26126860,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":516.27,"free":3493},{"epoch":26126861,"idl":99.88,"recv":0.03,"send":1.1,"writ":0.32,"used":516.22,"free":3493.04},{"epoch":26126862,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.19,"free":3493.07},{"epoch":26126863,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":515.99,"free":3493.27},{"epoch":26126864,"idl":99.89,"recv":0.02,"send":0.74,"writ":0.16,"used":515.19,"free":3494.07},{"epoch":26126865,"idl":99.76,"recv":0,"send":0.01,"writ":0.51,"used":516.4,"free":3492.88},{"epoch":26126866,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.55,"free":3492.73},{"epoch":26126867,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":516.51,"free":3492.78},{"epoch":26126868,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":516.84,"free":3492.44},{"epoch":26126869,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":516.47,"free":3492.81},{"epoch":26126870,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":516.23,"free":3493.06},{"epoch":26126871,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.2,"free":3493.09},{"epoch":26126872,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.18,"free":3493.11},{"epoch":26126873,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":516.5,"free":3492.78},{"epoch":26126874,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.12,"free":3493.15},{"epoch":26126875,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":514.93,"free":3494.36},{"epoch":26126876,"idl":99.85,"recv":0.04,"send":1.97,"writ":0.21,"used":515.12,"free":3494.16},{"epoch":26126877,"idl":99.87,"recv":0.05,"send":1.96,"writ":0.21,"used":515.22,"free":3494.05},{"epoch":26126878,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":516.06,"free":3493.19},{"epoch":26126879,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":515.71,"free":3493.54},{"epoch":26126880,"idl":99.7,"recv":0,"send":0.01,"writ":0.34,"used":514.97,"free":3494.29},{"epoch":26126881,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":514.92,"free":3494.34},{"epoch":26126882,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":514.9,"free":3494.36},{"epoch":26126883,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":515.3,"free":3493.95},{"epoch":26126884,"idl":99.9,"recv":0,"send":0,"writ":0.41,"used":515.84,"free":3493.41},{"epoch":26126885,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":515.43,"free":3493.83},{"epoch":26126886,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":515.52,"free":3493.73},{"epoch":26126887,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":515.5,"free":3493.75},{"epoch":26126888,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.48,"free":3493.77},{"epoch":26126889,"idl":99.66,"recv":0,"send":0,"writ":0.69,"used":516.3,"free":3492.92},{"epoch":26126890,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":516.19,"free":3493.06},{"epoch":26126891,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.17,"free":3493.07},{"epoch":26126892,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.15,"free":3493.09},{"epoch":26126893,"idl":99.89,"recv":0.03,"send":0.84,"writ":0.17,"used":516.14,"free":3493.09},{"epoch":26126894,"idl":99.76,"recv":0,"send":0,"writ":0.61,"used":516.66,"free":3492.56},{"epoch":26126895,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":517.03,"free":3492.16},{"epoch":26126896,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":518.11,"free":3491.02},{"epoch":26126897,"idl":99.91,"recv":0,"send":0,"writ":0.24,"used":518.57,"free":3490.56},{"epoch":26126898,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":518.56,"free":3490.56},{"epoch":26126899,"idl":99.76,"recv":0,"send":0,"writ":0.63,"used":519.8,"free":3489.32},{"epoch":26126900,"idl":99.83,"recv":0,"send":0,"writ":0.37,"used":520.26,"free":3488.88},{"epoch":26126901,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":520.23,"free":3488.9},{"epoch":26126902,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":520.22,"free":3488.9},{"epoch":26126903,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":520.2,"free":3488.93},{"epoch":26126904,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":520.4,"free":3488.72},{"epoch":26126905,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":517.99,"free":3491.15},{"epoch":26126906,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":517.94,"free":3491.19},{"epoch":26126907,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":518.06,"free":3491.07},{"epoch":26126908,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":518.08,"free":3491.04},{"epoch":26126909,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":519.17,"free":3489.95},{"epoch":26126910,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":520.11,"free":3489.02},{"epoch":26126911,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":520.01,"free":3489.12},{"epoch":26126912,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":519.99,"free":3489.13},{"epoch":26126913,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":519.97,"free":3489.15},{"epoch":26126914,"idl":99.72,"recv":0,"send":0,"writ":0.42,"used":520.63,"free":3488.49},{"epoch":26126915,"idl":99.74,"recv":0,"send":0,"writ":0.5,"used":518.57,"free":3490.56},{"epoch":26126916,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.44,"free":3490.69},{"epoch":26126917,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.48,"free":3490.65},{"epoch":26126918,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":518.58,"free":3490.54},{"epoch":26126919,"idl":99.43,"recv":0,"send":0,"writ":0.54,"used":520.65,"free":3488.44},{"epoch":26126920,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":519.28,"free":3489.83},{"epoch":26126921,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":519.27,"free":3489.84},{"epoch":26126922,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":519.25,"free":3489.85},{"epoch":26126923,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":519.23,"free":3489.87},{"epoch":26126924,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":519.22,"free":3489.88},{"epoch":26126925,"idl":99.61,"recv":0,"send":0,"writ":0.75,"used":519.64,"free":3489.48},{"epoch":26126926,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":519.2,"free":3489.91},{"epoch":26126927,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":519.17,"free":3489.93},{"epoch":26126928,"idl":99.48,"recv":0,"send":0,"writ":0.14,"used":519.16,"free":3489.94},{"epoch":26126929,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":519.19,"free":3489.9},{"epoch":26126930,"idl":99.68,"recv":0,"send":0,"writ":0.72,"used":520.65,"free":3488.47},{"epoch":26126931,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":520.29,"free":3488.82},{"epoch":26126932,"idl":99.91,"recv":0,"send":0.01,"writ":0.23,"used":520.27,"free":3488.84},{"epoch":26126933,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":520.21,"free":3488.88},{"epoch":26126934,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":520.2,"free":3488.89},{"epoch":26126935,"idl":99.6,"recv":0,"send":0,"writ":0.7,"used":520.63,"free":3488.48},{"epoch":26126936,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":520.17,"free":3488.93},{"epoch":26126937,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":520.15,"free":3488.95},{"epoch":26126938,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":520.12,"free":3488.97},{"epoch":26126939,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":520.2,"free":3488.89},{"epoch":26126940,"idl":99.56,"recv":0,"send":0,"writ":0.57,"used":520.11,"free":3488.99},{"epoch":26126941,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":520.27,"free":3488.82},{"epoch":26126942,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":519.63,"free":3489.46},{"epoch":26126943,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":519.49,"free":3489.59},{"epoch":26126944,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":519.47,"free":3489.62},{"epoch":26126945,"idl":99.72,"recv":0,"send":0,"writ":0.65,"used":520.17,"free":3488.93},{"epoch":26126946,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":519.69,"free":3489.4},{"epoch":26126947,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":519.66,"free":3489.43},{"epoch":26126948,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":519.65,"free":3489.44},{"epoch":26126949,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":519.38,"free":3489.69},{"epoch":26126950,"idl":99.64,"recv":0,"send":0,"writ":0.74,"used":520.24,"free":3488.84},{"epoch":26126951,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":519.78,"free":3489.3},{"epoch":26126952,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":519.76,"free":3489.31},{"epoch":26126953,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":519.74,"free":3489.33},{"epoch":26126954,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":519.72,"free":3489.35},{"epoch":26126955,"idl":99.62,"recv":0,"send":0,"writ":0.46,"used":518.99,"free":3490.09},{"epoch":26126956,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":519.45,"free":3489.63},{"epoch":26126957,"idl":99.9,"recv":0,"send":0,"writ":0.23,"used":519.43,"free":3489.64},{"epoch":26126958,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":519.4,"free":3489.67},{"epoch":26126959,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":519.38,"free":3489.68},{"epoch":26126960,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":519.37,"free":3489.7},{"epoch":26126961,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":519.86,"free":3489.21},{"epoch":26126962,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":519.55,"free":3489.52},{"epoch":26126963,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":519.55,"free":3489.52},{"epoch":26126964,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":519.52,"free":3489.54},{"epoch":26126965,"idl":99.74,"recv":0,"send":0,"writ":0.38,"used":519.77,"free":3489.31},{"epoch":26126966,"idl":99.67,"recv":0,"send":0,"writ":0.62,"used":519.88,"free":3489.19},{"epoch":26126967,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":519.48,"free":3489.59},{"epoch":26126968,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":519.45,"free":3489.62},{"epoch":26126969,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":519.42,"free":3489.64},{"epoch":26126970,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":519.67,"free":3489.41},{"epoch":26126971,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":519.66,"free":3489.4},{"epoch":26126972,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":519.19,"free":3489.87},{"epoch":26126973,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":519.29,"free":3489.77},{"epoch":26126974,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":519.26,"free":3489.79},{"epoch":26126975,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":518.85,"free":3490.22},{"epoch":26126976,"idl":99.75,"recv":0,"send":0,"writ":0.48,"used":519.81,"free":3489.25},{"epoch":26126977,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":519.98,"free":3489.09},{"epoch":26126978,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":519.95,"free":3489.11},{"epoch":26126979,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":519.94,"free":3489.11},{"epoch":26126980,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":518.75,"free":3490.33},{"epoch":26126981,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":519.62,"free":3489.45},{"epoch":26126982,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":519.64,"free":3489.43},{"epoch":26126983,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":519.62,"free":3489.44},{"epoch":26126984,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":519.75,"free":3489.3},{"epoch":26126985,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":520.02,"free":3489.04},{"epoch":26126986,"idl":95.01,"recv":0.32,"send":0.01,"writ":78.5,"used":531.33,"free":3478.06},{"epoch":26126987,"idl":99.73,"recv":0,"send":0,"writ":181.55,"used":522.33,"free":3487.12},{"epoch":26126988,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":522.33,"free":3487.12},{"epoch":26126989,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":522.3,"free":3487.15},{"epoch":26126990,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":522.56,"free":3486.9},{"epoch":26126991,"idl":99.68,"recv":0,"send":0,"writ":0.49,"used":522.58,"free":3486.89},{"epoch":26126992,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":519.83,"free":3489.69},{"epoch":26126993,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":519.8,"free":3489.71},{"epoch":26126994,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":519.91,"free":3489.6},{"epoch":26126995,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":520.21,"free":3489.32},{"epoch":26126996,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":520.19,"free":3489.33},{"epoch":26126997,"idl":99.62,"recv":0,"send":0,"writ":0.61,"used":520.02,"free":3489.49},{"epoch":26126998,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":519.66,"free":3489.85},{"epoch":26126999,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":519.64,"free":3489.87},{"epoch":26127000,"idl":99.68,"recv":0,"send":0,"writ":0.33,"used":518.43,"free":3491.1},{"epoch":26127001,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":518.39,"free":3491.13},{"epoch":26127002,"idl":99.62,"recv":0,"send":0,"writ":0.58,"used":520.42,"free":3489.09},{"epoch":26127003,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":520.07,"free":3489.44},{"epoch":26127004,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":520.04,"free":3489.47},{"epoch":26127005,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":519.52,"free":3490.01},{"epoch":26127006,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":519.5,"free":3490.03},{"epoch":26127007,"idl":99.63,"recv":0,"send":0,"writ":0.6,"used":520.44,"free":3489.1},{"epoch":26127008,"idl":99.77,"recv":0,"send":0,"writ":0.19,"used":520.19,"free":3489.34},{"epoch":26127009,"idl":99.56,"recv":0,"send":0,"writ":0.3,"used":519.68,"free":3489.82},{"epoch":26127010,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":519.43,"free":3490.09},{"epoch":26127011,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":519.4,"free":3490.12},{"epoch":26127012,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":520.62,"free":3488.89},{"epoch":26127013,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":520.1,"free":3489.41},{"epoch":26127014,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":520.08,"free":3489.43},{"epoch":26127015,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":520.08,"free":3489.44},{"epoch":26127016,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":520.21,"free":3489.31},{"epoch":26127017,"idl":99.63,"recv":0,"send":0,"writ":0.64,"used":520.3,"free":3489.22},{"epoch":26127018,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":519.21,"free":3490.3},{"epoch":26127019,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":519.2,"free":3490.3},{"epoch":26127020,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":520.16,"free":3489.36},{"epoch":26127021,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":520.16,"free":3489.35},{"epoch":26127022,"idl":99.6,"recv":0,"send":0,"writ":0.56,"used":520.17,"free":3489.34},{"epoch":26127023,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":519.13,"free":3490.37},{"epoch":26127024,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":519.1,"free":3490.39},{"epoch":26127025,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":519.84,"free":3489.68},{"epoch":26127026,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":519.82,"free":3489.69},{"epoch":26127027,"idl":99.62,"recv":0,"send":0,"writ":0.44,"used":519.98,"free":3489.52},{"epoch":26127028,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":518.98,"free":3490.53},{"epoch":26127029,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":518.95,"free":3490.55},{"epoch":26127030,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":519.21,"free":3490.3},{"epoch":26127031,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":519.18,"free":3490.33},{"epoch":26127032,"idl":99.65,"recv":0,"send":0,"writ":0.41,"used":520.05,"free":3489.46},{"epoch":26127033,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":520.13,"free":3489.37},{"epoch":26127034,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":520.12,"free":3489.38},{"epoch":26127035,"idl":99.65,"recv":0,"send":0,"writ":0.36,"used":519.91,"free":3489.6},{"epoch":26127036,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":519.84,"free":3489.67},{"epoch":26127037,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":519.82,"free":3489.69},{"epoch":26127038,"idl":99.59,"recv":0,"send":0,"writ":0.63,"used":519.04,"free":3490.46},{"epoch":26127039,"idl":99.6,"recv":0,"send":0,"writ":0.33,"used":520.41,"free":3489.07},{"epoch":26127040,"idl":99.74,"recv":0,"send":0,"writ":0.37,"used":519.96,"free":3489.54},{"epoch":26127041,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":519.92,"free":3489.57},{"epoch":26127042,"idl":99.76,"recv":0,"send":0,"writ":0.2,"used":519.9,"free":3489.59},{"epoch":26127043,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":519.83,"free":3489.66},{"epoch":26127044,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":519.36,"free":3490.12},{"epoch":26127045,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":518.88,"free":3490.62},{"epoch":26127046,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":518.85,"free":3490.64},{"epoch":26127047,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":518.82,"free":3490.66},{"epoch":26127048,"idl":99.63,"recv":0,"send":0,"writ":0.48,"used":520.09,"free":3489.39},{"epoch":26127049,"idl":99.83,"recv":0,"send":0,"writ":0.26,"used":520.35,"free":3489.13},{"epoch":26127050,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":520.46,"free":3489.04},{"epoch":26127051,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":520.43,"free":3489.06},{"epoch":26127052,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":520.41,"free":3489.08},{"epoch":26127053,"idl":99.61,"recv":0,"send":0,"writ":0.59,"used":520.59,"free":3488.89},{"epoch":26127054,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":520.12,"free":3489.35},{"epoch":26127055,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":519.4,"free":3490.09},{"epoch":26127056,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":519.37,"free":3490.12},{"epoch":26127057,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":519.35,"free":3490.14},{"epoch":26127058,"idl":99.65,"recv":0,"send":0,"writ":0.47,"used":520.03,"free":3489.45},{"epoch":26127059,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":520.04,"free":3489.44},{"epoch":26127060,"idl":99.7,"recv":0,"send":0,"writ":0.33,"used":518.83,"free":3490.68},{"epoch":26127061,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":518.89,"free":3490.62},{"epoch":26127062,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":518.95,"free":3490.55},{"epoch":26127063,"idl":99.67,"recv":0,"send":0,"writ":0.43,"used":519.79,"free":3489.71},{"epoch":26127064,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":520.39,"free":3489.11},{"epoch":26127065,"idl":99.76,"recv":0,"send":0,"writ":0.4,"used":520.4,"free":3489.11},{"epoch":26127066,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":520.37,"free":3489.14},{"epoch":26127067,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":520.34,"free":3489.17},{"epoch":26127068,"idl":99.66,"recv":0,"send":0,"writ":0.42,"used":520.65,"free":3488.84},{"epoch":26127069,"idl":99.6,"recv":0,"send":0,"writ":0.54,"used":520.09,"free":3489.39},{"epoch":26127070,"idl":99.68,"recv":0.01,"send":0.04,"writ":0.37,"used":520.14,"free":3489.35},{"epoch":26127071,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":520.14,"free":3489.35},{"epoch":26127072,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":520.1,"free":3489.38},{"epoch":26127073,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":520.08,"free":3489.39},{"epoch":26127074,"idl":99.63,"recv":0,"send":0,"writ":0.6,"used":520.42,"free":3489.08},{"epoch":26127075,"idl":99.69,"recv":0,"send":0,"writ":0.33,"used":519.18,"free":3490.34},{"epoch":26127076,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":519.05,"free":3490.47},{"epoch":26127077,"idl":99.79,"recv":0,"send":0,"writ":0.21,"used":519.62,"free":3489.89},{"epoch":26127078,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":519.72,"free":3489.79},{"epoch":26127079,"idl":99.71,"recv":0.01,"send":0.01,"writ":0.59,"used":520.8,"free":3488.71},{"epoch":26127080,"idl":99.68,"recv":0,"send":0,"writ":0.31,"used":518.75,"free":3490.77},{"epoch":26127081,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":518.65,"free":3490.87},{"epoch":26127082,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":518.63,"free":3490.89},{"epoch":26127083,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":518.61,"free":3490.9},{"epoch":26127084,"idl":99.63,"recv":0,"send":0,"writ":0.61,"used":520.38,"free":3489.13},{"epoch":26127085,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":520.07,"free":3489.45},{"epoch":26127086,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":520.14,"free":3489.38},{"epoch":26127087,"idl":99.8,"recv":0.02,"send":0.64,"writ":0.25,"used":520.15,"free":3489.37},{"epoch":26127088,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":520.07,"free":3489.44},{"epoch":26127089,"idl":99.65,"recv":0,"send":0,"writ":0.51,"used":520.9,"free":3488.61},{"epoch":26127090,"idl":99.68,"recv":0.1,"send":3.57,"writ":0.51,"used":520.4,"free":3489.11},{"epoch":26127091,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":520.44,"free":3489.05},{"epoch":26127092,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":520.42,"free":3489.07},{"epoch":26127093,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":519.71,"free":3489.78},{"epoch":26127094,"idl":99.68,"recv":0,"send":0,"writ":0.52,"used":519.81,"free":3489.67},{"epoch":26127095,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":519.94,"free":3489.56},{"epoch":26127096,"idl":99.53,"recv":0,"send":0,"writ":0.17,"used":519.87,"free":3489.62},{"epoch":26127097,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":519.85,"free":3489.64},{"epoch":26127098,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":519.82,"free":3489.67},{"epoch":26127099,"idl":99.48,"recv":0,"send":0,"writ":0.54,"used":520.14,"free":3489.32},{"epoch":26127100,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":519.31,"free":3490.17},{"epoch":26127101,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":519.37,"free":3490.1},{"epoch":26127102,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":519.45,"free":3490.02},{"epoch":26127103,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":519.43,"free":3490.04},{"epoch":26127104,"idl":99.68,"recv":0,"send":0,"writ":0.4,"used":519.77,"free":3489.7},{"epoch":26127105,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":518.2,"free":3491.28},{"epoch":26127106,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":518.16,"free":3491.32},{"epoch":26127107,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":518.14,"free":3491.33},{"epoch":26127108,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":518.11,"free":3491.36},{"epoch":26127109,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":518.09,"free":3491.38},{"epoch":26127110,"idl":99.51,"recv":0,"send":0,"writ":0.68,"used":519.02,"free":3490.46},{"epoch":26127111,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":518.57,"free":3490.91},{"epoch":26127112,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":518.56,"free":3490.92},{"epoch":26127113,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":518.67,"free":3490.8},{"epoch":26127114,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":518.7,"free":3490.76},{"epoch":26127115,"idl":99.58,"recv":0,"send":0,"writ":0.71,"used":520.79,"free":3488.69},{"epoch":26127116,"idl":99.79,"recv":0,"send":0,"writ":0.19,"used":520.16,"free":3489.32},{"epoch":26127117,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":520.13,"free":3489.34},{"epoch":26127118,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":520.12,"free":3489.35},{"epoch":26127119,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":520.09,"free":3489.37},{"epoch":26127120,"idl":99.51,"recv":0,"send":0,"writ":0.76,"used":520.27,"free":3489.21},{"epoch":26127121,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":519.82,"free":3489.66},{"epoch":26127122,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":519.8,"free":3489.67},{"epoch":26127123,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":519.78,"free":3489.69},{"epoch":26127124,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":519.85,"free":3489.61},{"epoch":26127125,"idl":99.62,"recv":0,"send":0,"writ":0.79,"used":520.52,"free":3488.95},{"epoch":26127126,"idl":99.82,"recv":0,"send":0,"writ":0.12,"used":520.15,"free":3489.32},{"epoch":26127127,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":520.12,"free":3489.34},{"epoch":26127128,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":520.11,"free":3489.35},{"epoch":26127129,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":519.83,"free":3489.6},{"epoch":26127130,"idl":99.47,"recv":0,"send":0,"writ":0.64,"used":520.29,"free":3489.16},{"epoch":26127131,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":520.05,"free":3489.4},{"epoch":26127132,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":520.02,"free":3489.42},{"epoch":26127133,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":520,"free":3489.43},{"epoch":26127134,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":520.04,"free":3489.41},{"epoch":26127135,"idl":99.52,"recv":0,"send":0,"writ":0.72,"used":520.76,"free":3488.7},{"epoch":26127136,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":519.63,"free":3489.83},{"epoch":26127137,"idl":99.79,"recv":0,"send":0,"writ":0.19,"used":519.36,"free":3490.09},{"epoch":26127138,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":519.34,"free":3490.1},{"epoch":26127139,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":519.32,"free":3490.13},{"epoch":26127140,"idl":99.59,"recv":0,"send":0,"writ":0.48,"used":520.05,"free":3489.41},{"epoch":26127141,"idl":99.85,"recv":0,"send":0,"writ":0.64,"used":520.04,"free":3489.42},{"epoch":26127142,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":520.02,"free":3489.43},{"epoch":26127143,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":520,"free":3489.45},{"epoch":26127144,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":520.06,"free":3489.39},{"epoch":26127145,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":519.99,"free":3489.47},{"epoch":26127146,"idl":99.74,"recv":0,"send":0,"writ":0.72,"used":520.25,"free":3489.21},{"epoch":26127147,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":519.86,"free":3489.59},{"epoch":26127148,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":519.84,"free":3489.6},{"epoch":26127149,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":519.81,"free":3489.62},{"epoch":26127150,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":519.35,"free":3490.11},{"epoch":26127151,"idl":99.68,"recv":0,"send":0.02,"writ":0.63,"used":519.89,"free":3489.56},{"epoch":26127152,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":519.49,"free":3489.96},{"epoch":26127153,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":519.57,"free":3489.88},{"epoch":26127154,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":519.63,"free":3489.81},{"epoch":26127155,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":519.93,"free":3489.53},{"epoch":26127156,"idl":99.7,"recv":0,"send":0,"writ":0.64,"used":520.74,"free":3488.71},{"epoch":26127157,"idl":99.92,"recv":0,"send":0,"writ":0.12,"used":520.07,"free":3489.37},{"epoch":26127158,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":520.05,"free":3489.39},{"epoch":26127159,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":520.04,"free":3489.37},{"epoch":26127160,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":519.55,"free":3489.88},{"epoch":26127161,"idl":99.76,"recv":0,"send":0,"writ":0.62,"used":520.08,"free":3489.34},{"epoch":26127162,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":519.75,"free":3489.67},{"epoch":26127163,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":519.74,"free":3489.68},{"epoch":26127164,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":519.71,"free":3489.73},{"epoch":26127165,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":520.15,"free":3489.32},{"epoch":26127166,"idl":99.33,"recv":0,"send":0,"writ":0.58,"used":520.41,"free":3489.05},{"epoch":26127167,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":519.88,"free":3489.58},{"epoch":26127168,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":519.86,"free":3489.59},{"epoch":26127169,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":519.84,"free":3489.61},{"epoch":26127170,"idl":99.82,"recv":0,"send":0,"writ":0.35,"used":520.34,"free":3489.13},{"epoch":26127171,"idl":97.83,"recv":0,"send":0,"writ":0.58,"used":520.7,"free":3488.76},{"epoch":26127172,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":520.28,"free":3489.17},{"epoch":26127173,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":520.27,"free":3489.18},{"epoch":26127174,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":520.25,"free":3489.2},{"epoch":26127175,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":519.35,"free":3490.11},{"epoch":26127176,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":519.93,"free":3489.53},{"epoch":26127177,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":520.15,"free":3489.31},{"epoch":26127178,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":520.12,"free":3489.33},{"epoch":26127179,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":520.1,"free":3489.35},{"epoch":26127180,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":519.39,"free":3490.07},{"epoch":26127181,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":520.06,"free":3489.4},{"epoch":26127182,"idl":99.9,"recv":0,"send":0,"writ":0.41,"used":520.06,"free":3489.39},{"epoch":26127183,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":520.04,"free":3489.41},{"epoch":26127184,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":520.02,"free":3489.43},{"epoch":26127185,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":520.26,"free":3489.2},{"epoch":26127186,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":520.24,"free":3489.21},{"epoch":26127187,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":520.91,"free":3488.54},{"epoch":26127188,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":520.64,"free":3488.81},{"epoch":26127189,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":520.14,"free":3489.29},{"epoch":26127190,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":520.37,"free":3489.07},{"epoch":26127191,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":520.35,"free":3489.09},{"epoch":26127192,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":520.9,"free":3488.54},{"epoch":26127193,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":520.54,"free":3488.89},{"epoch":26127194,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":520.52,"free":3488.9},{"epoch":26127195,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":520.29,"free":3489.16},{"epoch":26127196,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":520.24,"free":3489.19},{"epoch":26127197,"idl":99.7,"recv":0,"send":0,"writ":0.64,"used":520.96,"free":3488.47},{"epoch":26127198,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":520.3,"free":3489.13},{"epoch":26127199,"idl":99.91,"recv":0,"send":0,"writ":0.26,"used":518.05,"free":3491.5},{"epoch":26127200,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":515.84,"free":3493.77},{"epoch":26127201,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":515.8,"free":3493.81},{"epoch":26127202,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":517.12,"free":3492.48},{"epoch":26127203,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.99,"free":3492.61},{"epoch":26127204,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":516.96,"free":3492.64},{"epoch":26127205,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":515.77,"free":3493.84},{"epoch":26127206,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.71,"free":3493.91},{"epoch":26127207,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":516.48,"free":3493.12},{"epoch":26127208,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":516.27,"free":3493.34},{"epoch":26127209,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":516.33,"free":3493.27},{"epoch":26127210,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":516.09,"free":3493.53},{"epoch":26127211,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":516.06,"free":3493.55},{"epoch":26127212,"idl":99.75,"recv":0,"send":0,"writ":0.43,"used":516.43,"free":3493.18},{"epoch":26127213,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":515.27,"free":3494.33},{"epoch":26127214,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":515.25,"free":3494.34},{"epoch":26127215,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":515.49,"free":3494.12},{"epoch":26127216,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":515.47,"free":3494.13},{"epoch":26127217,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":515.92,"free":3493.68},{"epoch":26127218,"idl":99.82,"recv":0,"send":0,"writ":0.45,"used":515.92,"free":3493.67},{"epoch":26127219,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":516.98,"free":3492.61},{"epoch":26127220,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":516.59,"free":3493.01},{"epoch":26127221,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.56,"free":3493.04},{"epoch":26127222,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":516.53,"free":3493.07},{"epoch":26127223,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":517.29,"free":3492.3},{"epoch":26127224,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":516.98,"free":3492.61},{"epoch":26127225,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":516.99,"free":3492.62},{"epoch":26127226,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":516.96,"free":3492.64},{"epoch":26127227,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.94,"free":3492.66},{"epoch":26127228,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":517.27,"free":3492.32},{"epoch":26127229,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":516.89,"free":3492.7},{"epoch":26127230,"idl":99.77,"recv":0,"send":0,"writ":0.35,"used":516.74,"free":3492.86},{"epoch":26127231,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.81,"free":3492.79},{"epoch":26127232,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":516.79,"free":3492.8},{"epoch":26127233,"idl":99.79,"recv":0,"send":0,"writ":0.45,"used":517.26,"free":3492.32},{"epoch":26127234,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":517,"free":3492.58},{"epoch":26127235,"idl":99.81,"recv":0,"send":0,"writ":0.37,"used":516.85,"free":3492.75},{"epoch":26127236,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":516.74,"free":3492.86},{"epoch":26127237,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":516.72,"free":3492.87},{"epoch":26127238,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":517.14,"free":3492.45},{"epoch":26127239,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":516.92,"free":3492.66},{"epoch":26127240,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":516.06,"free":3493.54},{"epoch":26127241,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.94,"free":3493.66},{"epoch":26127242,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.09,"free":3493.5},{"epoch":26127243,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":516.76,"free":3492.82},{"epoch":26127244,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":517.02,"free":3492.55},{"epoch":26127245,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":517.26,"free":3492.33},{"epoch":26127246,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":517.25,"free":3492.34},{"epoch":26127247,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":517.22,"free":3492.36},{"epoch":26127248,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":517.1,"free":3492.48},{"epoch":26127249,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":516.42,"free":3493.13},{"epoch":26127250,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":516.19,"free":3493.37},{"epoch":26127251,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.16,"free":3493.41},{"epoch":26127252,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.24,"free":3493.32},{"epoch":26127253,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":516.54,"free":3493.01},{"epoch":26127254,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":516.64,"free":3492.94},{"epoch":26127255,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":516.29,"free":3493.31},{"epoch":26127256,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.26,"free":3493.34},{"epoch":26127257,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":516.25,"free":3493.34},{"epoch":26127258,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.23,"free":3493.36},{"epoch":26127259,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":516.15,"free":3493.44},{"epoch":26127260,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":516.45,"free":3493.16},{"epoch":26127261,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":516.42,"free":3493.18},{"epoch":26127262,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.4,"free":3493.19},{"epoch":26127263,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.47,"free":3493.12},{"epoch":26127264,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":516.57,"free":3493.02},{"epoch":26127265,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":516.55,"free":3493.07},{"epoch":26127266,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":516.54,"free":3493.08},{"epoch":26127267,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.5,"free":3493.11},{"epoch":26127268,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":516.48,"free":3493.13},{"epoch":26127269,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":516.81,"free":3492.79},{"epoch":26127270,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":516.22,"free":3493.41},{"epoch":26127271,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":516.2,"free":3493.42},{"epoch":26127272,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":516.17,"free":3493.45},{"epoch":26127273,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.22,"free":3493.39},{"epoch":26127274,"idl":99.75,"recv":0,"send":0,"writ":0.61,"used":516.79,"free":3492.82},{"epoch":26127275,"idl":99.77,"recv":0,"send":0,"writ":0.35,"used":516.46,"free":3493.16},{"epoch":26127276,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.28,"free":3493.34},{"epoch":26127277,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.26,"free":3493.36},{"epoch":26127278,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.21,"free":3493.4},{"epoch":26127279,"idl":99.72,"recv":0,"send":0,"writ":0.73,"used":517.08,"free":3492.51},{"epoch":26127280,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":515.72,"free":3493.88},{"epoch":26127281,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":515.66,"free":3493.93},{"epoch":26127282,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.64,"free":3493.94},{"epoch":26127283,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":515.78,"free":3493.81},{"epoch":26127284,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":516.25,"free":3493.35},{"epoch":26127285,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":516.53,"free":3493.08},{"epoch":26127286,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.5,"free":3493.11},{"epoch":26127287,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.48,"free":3493.13},{"epoch":26127288,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.45,"free":3493.14},{"epoch":26127289,"idl":99.79,"recv":0,"send":0,"writ":0.43,"used":516.82,"free":3492.77},{"epoch":26127290,"idl":99.86,"recv":0,"send":0,"writ":0.45,"used":516.92,"free":3492.69},{"epoch":26127291,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":516.9,"free":3492.7},{"epoch":26127292,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":516.88,"free":3492.71},{"epoch":26127293,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":516.86,"free":3492.74},{"epoch":26127294,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.99,"free":3492.6},{"epoch":26127295,"idl":99.68,"recv":0,"send":0,"writ":0.7,"used":516.89,"free":3492.72},{"epoch":26127296,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.51,"free":3493.09},{"epoch":26127297,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":516.49,"free":3493.11},{"epoch":26127298,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.47,"free":3493.13},{"epoch":26127299,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.45,"free":3493.14},{"epoch":26127300,"idl":99.53,"recv":0,"send":0,"writ":0.74,"used":516.19,"free":3493.42},{"epoch":26127301,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":515.68,"free":3493.91},{"epoch":26127302,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":515.66,"free":3493.94},{"epoch":26127303,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":515.64,"free":3493.95},{"epoch":26127304,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.61,"free":3493.97},{"epoch":26127305,"idl":99.66,"recv":0,"send":0,"writ":0.7,"used":516.77,"free":3492.83},{"epoch":26127306,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":516.76,"free":3492.84},{"epoch":26127307,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":516.75,"free":3492.85},{"epoch":26127308,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.72,"free":3492.87},{"epoch":26127309,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":516.24,"free":3493.33},{"epoch":26127310,"idl":99.62,"recv":0,"send":0,"writ":0.79,"used":516.82,"free":3492.76},{"epoch":26127311,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.44,"free":3493.13},{"epoch":26127312,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.42,"free":3493.16},{"epoch":26127313,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.4,"free":3493.19},{"epoch":26127314,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":516.38,"free":3493.2},{"epoch":26127315,"idl":99.65,"recv":0,"send":0,"writ":0.77,"used":517.44,"free":3492.16},{"epoch":26127316,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":516.61,"free":3492.98},{"epoch":26127317,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":516.77,"free":3492.82},{"epoch":26127318,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":516.79,"free":3492.8},{"epoch":26127319,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":516.76,"free":3492.82},{"epoch":26127320,"idl":99.63,"recv":0,"send":0,"writ":0.76,"used":516.67,"free":3492.93},{"epoch":26127321,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":516.49,"free":3493.1},{"epoch":26127322,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.48,"free":3493.12},{"epoch":26127323,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.45,"free":3493.14},{"epoch":26127324,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":516.43,"free":3493.15},{"epoch":26127325,"idl":99.72,"recv":0,"send":0,"writ":0.73,"used":517.13,"free":3492.47},{"epoch":26127326,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.66,"free":3492.94},{"epoch":26127327,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.64,"free":3492.95},{"epoch":26127328,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":516.76,"free":3492.83},{"epoch":26127329,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.79,"free":3492.8},{"epoch":26127330,"idl":99.64,"recv":0,"send":0,"writ":0.59,"used":516.96,"free":3492.64},{"epoch":26127331,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":517.01,"free":3492.58},{"epoch":26127332,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":516.98,"free":3492.61},{"epoch":26127333,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":516.97,"free":3492.62},{"epoch":26127334,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.93,"free":3492.64},{"epoch":26127335,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":516.65,"free":3492.94},{"epoch":26127336,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":517.03,"free":3492.56},{"epoch":26127337,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.66,"free":3492.92},{"epoch":26127338,"idl":99.47,"recv":0,"send":0,"writ":0.14,"used":516.63,"free":3492.95},{"epoch":26127339,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":516.61,"free":3492.95},{"epoch":26127340,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":515.79,"free":3493.78},{"epoch":26127341,"idl":99.75,"recv":0,"send":0,"writ":0.63,"used":517.24,"free":3492.32},{"epoch":26127342,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":516.99,"free":3492.57},{"epoch":26127343,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.97,"free":3492.58},{"epoch":26127344,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":516.95,"free":3492.6},{"epoch":26127345,"idl":99.82,"recv":0,"send":0,"writ":0.38,"used":516.23,"free":3493.33},{"epoch":26127346,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":516.98,"free":3492.57},{"epoch":26127347,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":516.9,"free":3492.65},{"epoch":26127348,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.89,"free":3492.66},{"epoch":26127349,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":516.85,"free":3492.69},{"epoch":26127350,"idl":99.83,"recv":0,"send":0,"writ":0.37,"used":516.72,"free":3492.84},{"epoch":26127351,"idl":96.24,"recv":0.04,"send":0.01,"writ":78.91,"used":529.35,"free":3481.73},{"epoch":26127352,"idl":99.09,"recv":0,"send":0,"writ":64.05,"used":519,"free":3490.43},{"epoch":26127353,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":518.98,"free":3490.45},{"epoch":26127354,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":518.96,"free":3490.46},{"epoch":26127355,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":518.1,"free":3491.34},{"epoch":26127356,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":517.84,"free":3491.62},{"epoch":26127357,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.21,"free":3493.26},{"epoch":26127358,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.2,"free":3493.27},{"epoch":26127359,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.17,"free":3493.29},{"epoch":26127360,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":515.7,"free":3493.78},{"epoch":26127361,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":516.38,"free":3493.1},{"epoch":26127362,"idl":99.91,"recv":0,"send":0,"writ":0.31,"used":517.11,"free":3492.38},{"epoch":26127363,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":517.09,"free":3492.4},{"epoch":26127364,"idl":99.89,"recv":0,"send":0.01,"writ":0.16,"used":517.1,"free":3492.38},{"epoch":26127365,"idl":99.81,"recv":0,"send":0,"writ":0.35,"used":516.74,"free":3492.75},{"epoch":26127366,"idl":99.78,"recv":0,"send":0,"writ":0.52,"used":517.19,"free":3492.3},{"epoch":26127367,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":517.17,"free":3492.31},{"epoch":26127368,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":517.16,"free":3492.32},{"epoch":26127369,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":517.13,"free":3492.33},{"epoch":26127370,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":516.65,"free":3492.82},{"epoch":26127371,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":517.29,"free":3492.18},{"epoch":26127372,"idl":99.86,"recv":0,"send":0,"writ":0.39,"used":517.08,"free":3492.39},{"epoch":26127373,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":517.06,"free":3492.41},{"epoch":26127374,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":517.03,"free":3492.45},{"epoch":26127375,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":514.83,"free":3494.67},{"epoch":26127376,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":514.74,"free":3494.75},{"epoch":26127377,"idl":99.75,"recv":0,"send":0,"writ":0.6,"used":517.09,"free":3492.42},{"epoch":26127378,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.91,"free":3492.59},{"epoch":26127379,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.89,"free":3492.6},{"epoch":26127380,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":517.14,"free":3492.37},{"epoch":26127381,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":517.12,"free":3492.39},{"epoch":26127382,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":517.23,"free":3492.27},{"epoch":26127383,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.83,"free":3492.67},{"epoch":26127384,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.81,"free":3492.68},{"epoch":26127385,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":517.05,"free":3492.46},{"epoch":26127386,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":517.04,"free":3492.47},{"epoch":26127387,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":517.84,"free":3491.67},{"epoch":26127388,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":517.22,"free":3492.28},{"epoch":26127389,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":517.2,"free":3492.3},{"epoch":26127390,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":517.2,"free":3492.31},{"epoch":26127391,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":517.18,"free":3492.33},{"epoch":26127392,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":517.62,"free":3491.88},{"epoch":26127393,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":516.89,"free":3492.6},{"epoch":26127394,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.86,"free":3492.63},{"epoch":26127395,"idl":99.81,"recv":0,"send":0,"writ":0.37,"used":516.66,"free":3492.86},{"epoch":26127396,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.84,"free":3492.66},{"epoch":26127397,"idl":99.61,"recv":0,"send":0,"writ":0.59,"used":517.1,"free":3492.4},{"epoch":26127398,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.4,"free":3493.1},{"epoch":26127399,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":517.2,"free":3492.27},{"epoch":26127400,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":516.73,"free":3492.76},{"epoch":26127401,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":516.71,"free":3492.78},{"epoch":26127402,"idl":99.66,"recv":0,"send":0,"writ":0.61,"used":516.74,"free":3492.74},{"epoch":26127403,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":515.68,"free":3493.8},{"epoch":26127404,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":515.66,"free":3493.82},{"epoch":26127405,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":515.17,"free":3494.33},{"epoch":26127406,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":515.14,"free":3494.36},{"epoch":26127407,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":515.57,"free":3493.92},{"epoch":26127408,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":515.59,"free":3493.91},{"epoch":26127409,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.58,"free":3493.91},{"epoch":26127410,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":516.15,"free":3493.36},{"epoch":26127411,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.24,"free":3493.26},{"epoch":26127412,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":516.73,"free":3492.76},{"epoch":26127413,"idl":99.85,"recv":0,"send":0,"writ":0.39,"used":515.7,"free":3493.79},{"epoch":26127414,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":515.68,"free":3493.81},{"epoch":26127415,"idl":99.78,"recv":0,"send":0,"writ":0.37,"used":515.96,"free":3493.55},{"epoch":26127416,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":515.9,"free":3493.6},{"epoch":26127417,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":515.88,"free":3493.62},{"epoch":26127418,"idl":99.66,"recv":0,"send":0,"writ":0.61,"used":516.62,"free":3492.86},{"epoch":26127419,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.31,"free":3493.17},{"epoch":26127420,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":515.48,"free":3494.02},{"epoch":26127421,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":515.48,"free":3494.01},{"epoch":26127422,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":515.46,"free":3494.03},{"epoch":26127423,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":516.64,"free":3492.85},{"epoch":26127424,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":516.4,"free":3493.09},{"epoch":26127425,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":516.4,"free":3493.11},{"epoch":26127426,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":516.38,"free":3493.12},{"epoch":26127427,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.36,"free":3493.14},{"epoch":26127428,"idl":99.76,"recv":0,"send":0,"writ":0.6,"used":516.85,"free":3492.64},{"epoch":26127429,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":516.31,"free":3493.16},{"epoch":26127430,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":516.15,"free":3493.33},{"epoch":26127431,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":516.22,"free":3493.26},{"epoch":26127432,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.2,"free":3493.27},{"epoch":26127433,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.6,"used":516.87,"free":3492.6},{"epoch":26127434,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.59,"free":3492.89},{"epoch":26127435,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":515.38,"free":3494.11},{"epoch":26127436,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":515.34,"free":3494.15},{"epoch":26127437,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":515.56,"free":3493.93},{"epoch":26127438,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":516.39,"free":3493.09},{"epoch":26127439,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.68,"free":3492.8},{"epoch":26127440,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":515.48,"free":3494.01},{"epoch":26127441,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.44,"free":3494.06},{"epoch":26127442,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.42,"free":3494.07},{"epoch":26127443,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":515.93,"free":3493.55},{"epoch":26127444,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":516.36,"free":3493.12},{"epoch":26127445,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":515.43,"free":3494.06},{"epoch":26127446,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":515.35,"free":3494.14},{"epoch":26127447,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":515.33,"free":3494.15},{"epoch":26127448,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":515.68,"free":3493.8},{"epoch":26127449,"idl":99.87,"recv":0,"send":0,"writ":0.41,"used":516.59,"free":3492.89},{"epoch":26127450,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":516.71,"free":3492.78},{"epoch":26127451,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.69,"free":3492.8},{"epoch":26127452,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.66,"free":3492.82},{"epoch":26127453,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":516.65,"free":3492.83},{"epoch":26127454,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":517.4,"free":3492.07},{"epoch":26127455,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":516.27,"free":3493.22},{"epoch":26127456,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.12,"free":3493.37},{"epoch":26127457,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":516.1,"free":3493.38},{"epoch":26127458,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.08,"free":3493.4},{"epoch":26127459,"idl":99.68,"recv":0,"send":0,"writ":0.7,"used":517.1,"free":3492.36},{"epoch":26127460,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":516.55,"free":3492.92},{"epoch":26127461,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":516.53,"free":3492.94},{"epoch":26127462,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.72,"free":3492.74},{"epoch":26127463,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.71,"free":3492.75},{"epoch":26127464,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":517.15,"free":3492.3},{"epoch":26127465,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":516.69,"free":3492.78},{"epoch":26127466,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.65,"free":3492.81},{"epoch":26127467,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.64,"free":3492.83},{"epoch":26127468,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.61,"free":3492.84},{"epoch":26127469,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":516.94,"free":3492.51},{"epoch":26127470,"idl":99.79,"recv":0,"send":0,"writ":0.37,"used":516.59,"free":3492.88},{"epoch":26127471,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.57,"free":3492.89},{"epoch":26127472,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.55,"free":3492.91},{"epoch":26127473,"idl":99.4,"recv":0,"send":0,"writ":0.16,"used":516.62,"free":3492.83},{"epoch":26127474,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":516.79,"free":3492.67},{"epoch":26127475,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":516.93,"free":3492.57},{"epoch":26127476,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.94,"free":3492.55},{"epoch":26127477,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.91,"free":3492.58},{"epoch":26127478,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":516.89,"free":3492.59},{"epoch":26127479,"idl":99.77,"recv":0,"send":0,"writ":0.61,"used":517.49,"free":3491.99},{"epoch":26127480,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":516.22,"free":3493.27},{"epoch":26127481,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.1,"free":3493.38},{"epoch":26127482,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.08,"free":3493.4},{"epoch":26127483,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.06,"free":3493.41},{"epoch":26127484,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":516.12,"free":3493.35},{"epoch":26127485,"idl":99.61,"recv":0,"send":0,"writ":0.73,"used":516.81,"free":3492.68},{"epoch":26127486,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":516.45,"free":3493.04},{"epoch":26127487,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.43,"free":3493.06},{"epoch":26127488,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.4,"free":3493.07},{"epoch":26127489,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":516.87,"free":3492.59},{"epoch":26127490,"idl":99.65,"recv":0,"send":0,"writ":0.77,"used":516.99,"free":3492.48},{"epoch":26127491,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":516.62,"free":3492.86},{"epoch":26127492,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.59,"free":3492.89},{"epoch":26127493,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.57,"free":3492.91},{"epoch":26127494,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":516.55,"free":3492.92},{"epoch":26127495,"idl":99.64,"recv":0,"send":0,"writ":0.8,"used":517.36,"free":3492.12},{"epoch":26127496,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":517.21,"free":3492.27},{"epoch":26127497,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":516.93,"free":3492.54},{"epoch":26127498,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.92,"free":3492.55},{"epoch":26127499,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.89,"free":3492.58},{"epoch":26127500,"idl":99.64,"recv":0,"send":0,"writ":0.55,"used":516.26,"free":3493.22},{"epoch":26127501,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":516.62,"free":3492.86},{"epoch":26127502,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.6,"free":3492.87},{"epoch":26127503,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":516.58,"free":3492.89},{"epoch":26127504,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.56,"free":3492.91},{"epoch":26127505,"idl":99.65,"recv":0,"send":0,"writ":0.6,"used":516.83,"free":3492.66},{"epoch":26127506,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":516.81,"free":3492.68},{"epoch":26127507,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.96,"free":3492.52},{"epoch":26127508,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.93,"free":3492.55},{"epoch":26127509,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.91,"free":3492.56},{"epoch":26127510,"idl":99.65,"recv":0,"send":0,"writ":0.59,"used":517.27,"free":3492.21},{"epoch":26127511,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":516.88,"free":3492.6},{"epoch":26127512,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.86,"free":3492.61},{"epoch":26127513,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.84,"free":3492.63},{"epoch":26127514,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":516.82,"free":3492.64},{"epoch":26127515,"idl":99.57,"recv":0,"send":0,"writ":0.64,"used":517.46,"free":3492.04},{"epoch":26127516,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":516.79,"free":3492.72},{"epoch":26127517,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.83,"free":3492.68},{"epoch":26127518,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.94,"free":3492.56},{"epoch":26127519,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":516.91,"free":3492.57},{"epoch":26127520,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":516.91,"free":3492.58},{"epoch":26127521,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":517.23,"free":3492.26},{"epoch":26127522,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":516.86,"free":3492.62},{"epoch":26127523,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.84,"free":3492.64},{"epoch":26127524,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":516.83,"free":3492.66},{"epoch":26127525,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":517.32,"free":3492.2},{"epoch":26127526,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":517.47,"free":3492.05},{"epoch":26127527,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":517.04,"free":3492.47},{"epoch":26127528,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":517.02,"free":3492.48},{"epoch":26127529,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":517.05,"free":3492.44},{"epoch":26127530,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":517.18,"free":3492.34},{"epoch":26127531,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":517.25,"free":3492.26},{"epoch":26127532,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.15,"free":3493.36},{"epoch":26127533,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.14,"free":3493.36},{"epoch":26127534,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.11,"free":3493.38},{"epoch":26127535,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":516.85,"free":3492.66},{"epoch":26127536,"idl":99.68,"recv":0.01,"send":0.84,"writ":0.57,"used":517.51,"free":3491.99},{"epoch":26127537,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":517.15,"free":3492.34},{"epoch":26127538,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.14,"free":3492.36},{"epoch":26127539,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":517.11,"free":3492.38},{"epoch":26127540,"idl":99.66,"recv":0,"send":0,"writ":0.38,"used":516.14,"free":3493.36},{"epoch":26127541,"idl":99.64,"recv":0.01,"send":0.64,"writ":0.57,"used":516.64,"free":3492.85},{"epoch":26127542,"idl":99.8,"recv":0,"send":0,"writ":0.22,"used":516.64,"free":3492.84},{"epoch":26127543,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":516.64,"free":3492.84},{"epoch":26127544,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.61,"free":3492.86},{"epoch":26127545,"idl":99.72,"recv":0,"send":0,"writ":0.38,"used":516.15,"free":3493.34},{"epoch":26127546,"idl":99.71,"recv":0,"send":0,"writ":0.43,"used":516.73,"free":3492.75},{"epoch":26127547,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":517.07,"free":3492.41},{"epoch":26127548,"idl":99.79,"recv":0.01,"send":0,"writ":0.14,"used":517.03,"free":3492.44},{"epoch":26127549,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":517.07,"free":3492.38},{"epoch":26127550,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":516.21,"free":3493.25},{"epoch":26127551,"idl":99.7,"recv":0,"send":0,"writ":0.38,"used":516.65,"free":3492.81},{"epoch":26127552,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":517.35,"free":3492.1},{"epoch":26127553,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":517.33,"free":3492.12},{"epoch":26127554,"idl":99.81,"recv":0.01,"send":0.19,"writ":0.15,"used":517.3,"free":3492.17},{"epoch":26127555,"idl":99.7,"recv":0,"send":0,"writ":0.4,"used":516.92,"free":3492.56},{"epoch":26127556,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.89,"free":3492.6},{"epoch":26127557,"idl":99.68,"recv":0,"send":0,"writ":0.62,"used":517.57,"free":3491.91},{"epoch":26127558,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":516.35,"free":3493.12},{"epoch":26127559,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.33,"free":3493.14},{"epoch":26127560,"idl":99.73,"recv":0.01,"send":1.08,"writ":0.36,"used":516.59,"free":3492.9},{"epoch":26127561,"idl":99.83,"recv":0,"send":0.01,"writ":0.21,"used":516.6,"free":3492.88},{"epoch":26127562,"idl":99.68,"recv":0,"send":0,"writ":0.61,"used":516.76,"free":3492.71},{"epoch":26127563,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.31,"free":3493.15},{"epoch":26127564,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.29,"free":3493.17},{"epoch":26127565,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":515.33,"free":3494.15},{"epoch":26127566,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.29,"free":3494.18},{"epoch":26127567,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":515.92,"free":3493.55},{"epoch":26127568,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":515.75,"free":3493.72},{"epoch":26127569,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.82,"free":3493.64},{"epoch":26127570,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":515.42,"free":3494.06},{"epoch":26127571,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":515.4,"free":3494.07},{"epoch":26127572,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":516.17,"free":3493.31},{"epoch":26127573,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.1,"free":3493.37},{"epoch":26127574,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.08,"free":3493.38},{"epoch":26127575,"idl":99.68,"recv":0,"send":0,"writ":0.36,"used":515.88,"free":3493.61},{"epoch":26127576,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":515.57,"free":3493.91},{"epoch":26127577,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":515.68,"free":3493.79},{"epoch":26127578,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":515.04,"free":3494.43},{"epoch":26127579,"idl":99.25,"recv":0,"send":0,"writ":0.29,"used":516.48,"free":3492.97},{"epoch":26127580,"idl":98.96,"recv":0,"send":0,"writ":0.36,"used":516.74,"free":3492.72},{"epoch":26127581,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.72,"free":3492.74},{"epoch":26127582,"idl":99.69,"recv":0,"send":0,"writ":0.59,"used":516.86,"free":3492.59},{"epoch":26127583,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.13,"free":3494.3},{"epoch":26127584,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":515.12,"free":3494.33},{"epoch":26127585,"idl":99.72,"recv":0,"send":0,"writ":0.36,"used":516.07,"free":3493.4},{"epoch":26127586,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.08,"free":3493.38},{"epoch":26127587,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":516.48,"free":3492.98},{"epoch":26127588,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":516.78,"free":3492.68},{"epoch":26127589,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":516.76,"free":3492.69},{"epoch":26127590,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":516.76,"free":3492.71},{"epoch":26127591,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.74,"free":3492.72},{"epoch":26127592,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":517.05,"free":3492.41},{"epoch":26127593,"idl":99.81,"recv":0,"send":0,"writ":0.37,"used":516.53,"free":3492.93},{"epoch":26127594,"idl":98.75,"recv":0,"send":0,"writ":0.15,"used":516.65,"free":3492.81},{"epoch":26127595,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":515.69,"free":3493.78},{"epoch":26127596,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.64,"free":3493.83},{"epoch":26127597,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.62,"free":3493.84},{"epoch":26127598,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":516.4,"free":3493.06},{"epoch":26127599,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.07,"free":3493.38},{"epoch":26127600,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":515.59,"free":3493.88},{"epoch":26127601,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":515.56,"free":3493.9},{"epoch":26127602,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.54,"free":3493.92},{"epoch":26127603,"idl":99.7,"recv":0.01,"send":0,"writ":0.56,"used":517.23,"free":3492.23},{"epoch":26127604,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":516.81,"free":3492.65},{"epoch":26127605,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":516.57,"free":3492.9},{"epoch":26127606,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.54,"free":3492.93},{"epoch":26127607,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.53,"free":3492.94},{"epoch":26127608,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":517.34,"free":3492.12},{"epoch":26127609,"idl":99.65,"recv":0,"send":0.01,"writ":0.29,"used":516.58,"free":3492.86},{"epoch":26127610,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":516.63,"free":3492.82},{"epoch":26127611,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":516.62,"free":3492.84},{"epoch":26127612,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.58,"free":3492.87},{"epoch":26127613,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":517.18,"free":3492.26},{"epoch":26127614,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":516.78,"free":3492.65},{"epoch":26127615,"idl":99.74,"recv":0,"send":0,"writ":0.38,"used":515.58,"free":3493.87},{"epoch":26127616,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":515.53,"free":3493.91},{"epoch":26127617,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":515.51,"free":3493.93},{"epoch":26127618,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":516.13,"free":3493.31},{"epoch":26127619,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.71,"free":3492.73},{"epoch":26127620,"idl":99.7,"recv":0,"send":0,"writ":0.34,"used":516.55,"free":3492.9},{"epoch":26127621,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":516.64,"free":3492.8},{"epoch":26127622,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":516.61,"free":3492.83},{"epoch":26127623,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":516.96,"free":3492.48},{"epoch":26127624,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":516.57,"free":3492.86},{"epoch":26127625,"idl":99.74,"recv":0,"send":0,"writ":0.43,"used":516.09,"free":3493.36},{"epoch":26127626,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":516.05,"free":3493.39},{"epoch":26127627,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":516.03,"free":3493.41},{"epoch":26127628,"idl":99.68,"recv":0,"send":0,"writ":0.43,"used":516.42,"free":3493.02},{"epoch":26127629,"idl":99.84,"recv":0,"send":0,"writ":0.39,"used":516.73,"free":3492.7},{"epoch":26127630,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":516.97,"free":3492.47},{"epoch":26127631,"idl":99.81,"recv":0.01,"send":1.8,"writ":0.25,"used":517,"free":3492.43},{"epoch":26127632,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":516.98,"free":3492.45},{"epoch":26127633,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":516.95,"free":3492.47},{"epoch":26127634,"idl":99.67,"recv":0,"send":0,"writ":0.64,"used":517.38,"free":3492.04},{"epoch":26127635,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":516.44,"free":3492.99},{"epoch":26127636,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":516.36,"free":3493.07},{"epoch":26127637,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":516.33,"free":3493.09},{"epoch":26127638,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":516.31,"free":3493.11},{"epoch":26127639,"idl":99.58,"recv":0,"send":0,"writ":0.74,"used":517.55,"free":3491.85},{"epoch":26127640,"idl":99.73,"recv":0,"send":0,"writ":0.38,"used":516.79,"free":3492.62},{"epoch":26127641,"idl":99.77,"recv":0,"send":0,"writ":0.19,"used":516.77,"free":3492.64},{"epoch":26127642,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":516.74,"free":3492.66},{"epoch":26127643,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":516.72,"free":3492.67},{"epoch":26127644,"idl":99.68,"recv":0,"send":0,"writ":0.64,"used":516.78,"free":3492.63},{"epoch":26127645,"idl":99.7,"recv":0,"send":0,"writ":0.4,"used":516.77,"free":3492.66},{"epoch":26127646,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":516.85,"free":3492.58},{"epoch":26127647,"idl":99.78,"recv":0.01,"send":0.83,"writ":0.17,"used":516.81,"free":3492.61},{"epoch":26127648,"idl":99.85,"recv":0,"send":0.01,"writ":0.27,"used":516.7,"free":3492.71},{"epoch":26127649,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":516.94,"free":3492.46},{"epoch":26127650,"idl":99.72,"recv":0,"send":0,"writ":0.35,"used":516.78,"free":3492.64},{"epoch":26127651,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":516.87,"free":3492.55},{"epoch":26127652,"idl":99.76,"recv":0.02,"send":1.01,"writ":0.28,"used":516.76,"free":3492.64},{"epoch":26127653,"idl":99.84,"recv":0,"send":0.01,"writ":0.22,"used":516.76,"free":3492.64},{"epoch":26127654,"idl":99.69,"recv":0,"send":0,"writ":0.52,"used":517.25,"free":3492.14},{"epoch":26127655,"idl":99.74,"recv":0,"send":0,"writ":0.45,"used":517.1,"free":3492.31},{"epoch":26127656,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":517.07,"free":3492.34},{"epoch":26127657,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":517.05,"free":3492.35},{"epoch":26127658,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":517.03,"free":3492.37},{"epoch":26127659,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":517.14,"free":3492.25},{"epoch":26127660,"idl":99.07,"recv":0,"send":0,"writ":11.22,"used":516,"free":3493.42},{"epoch":26127661,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.02,"free":3493.47},{"epoch":26127662,"idl":99.83,"recv":0,"send":0.01,"writ":0.14,"used":515.99,"free":3493.5},{"epoch":26127663,"idl":99.86,"recv":0,"send":0,"writ":0.22,"used":515.94,"free":3493.53},{"epoch":26127664,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516,"free":3493.47},{"epoch":26127665,"idl":99.53,"recv":0,"send":0,"writ":0.83,"used":517.81,"free":3491.7},{"epoch":26127666,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":517.07,"free":3492.44},{"epoch":26127667,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":517.05,"free":3492.46},{"epoch":26127668,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":517.03,"free":3492.47},{"epoch":26127669,"idl":99.54,"recv":0.01,"send":0.21,"writ":0.34,"used":516.27,"free":3493.21},{"epoch":26127670,"idl":99.61,"recv":0,"send":0,"writ":0.77,"used":517.32,"free":3492.17},{"epoch":26127671,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.68,"free":3492.81},{"epoch":26127672,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.75,"free":3492.73},{"epoch":26127673,"idl":99.83,"recv":0,"send":0.01,"writ":0.15,"used":516.8,"free":3492.68},{"epoch":26127674,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.77,"free":3492.72},{"epoch":26127675,"idl":99.59,"recv":0,"send":0.01,"writ":0.73,"used":517.46,"free":3492.05},{"epoch":26127676,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":516.97,"free":3492.54},{"epoch":26127677,"idl":99.74,"recv":0,"send":0.02,"writ":0.21,"used":516.93,"free":3492.57},{"epoch":26127678,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.9,"free":3492.6},{"epoch":26127679,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":517.04,"free":3492.45},{"epoch":26127680,"idl":99.54,"recv":0,"send":0,"writ":0.73,"used":517.32,"free":3492.19},{"epoch":26127681,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":517.05,"free":3492.46},{"epoch":26127682,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":517.03,"free":3492.47},{"epoch":26127683,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":517,"free":3492.5},{"epoch":26127684,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.99,"free":3492.5},{"epoch":26127685,"idl":99.6,"recv":0,"send":0,"writ":0.76,"used":517.97,"free":3491.54},{"epoch":26127686,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":517.2,"free":3492.3},{"epoch":26127687,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":517.17,"free":3492.33},{"epoch":26127688,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":517.28,"free":3492.22},{"epoch":26127689,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":517.3,"free":3492.2},{"epoch":26127690,"idl":99.51,"recv":0,"send":0,"writ":0.62,"used":516.73,"free":3492.78},{"epoch":26127691,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.33,"used":517.22,"free":3492.28},{"epoch":26127692,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":517.17,"free":3492.33},{"epoch":26127693,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":517.15,"free":3492.35},{"epoch":26127694,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":517.28,"free":3492.21},{"epoch":26127695,"idl":99.65,"recv":0,"send":0,"writ":0.52,"used":517.66,"free":3491.86},{"epoch":26127696,"idl":99.78,"recv":0,"send":0,"writ":0.46,"used":516.83,"free":3492.68},{"epoch":26127697,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.8,"free":3492.7},{"epoch":26127698,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.78,"free":3492.72},{"epoch":26127699,"idl":99.79,"recv":0.01,"send":0.8,"writ":0.35,"used":517.02,"free":3492.45},{"epoch":26127700,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":517.33,"free":3492.15},{"epoch":26127701,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":517.67,"free":3491.81},{"epoch":26127702,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":517.29,"free":3492.18},{"epoch":26127703,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":517.27,"free":3492.2},{"epoch":26127704,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":517.25,"free":3492.22},{"epoch":26127705,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":517.25,"free":3492.24},{"epoch":26127706,"idl":99.77,"recv":0.01,"send":0.9,"writ":0.61,"used":517.45,"free":3492.03},{"epoch":26127707,"idl":99.87,"recv":0,"send":0.01,"writ":0.23,"used":516.99,"free":3492.48},{"epoch":26127708,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":516.98,"free":3492.49},{"epoch":26127709,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.63,"free":3492.84},{"epoch":26127710,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":516.21,"free":3493.27},{"epoch":26127711,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":516.54,"free":3492.93},{"epoch":26127712,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.17,"free":3493.3},{"epoch":26127713,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.24,"free":3493.23},{"epoch":26127714,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.31,"free":3493.15},{"epoch":26127715,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":516.56,"free":3492.92},{"epoch":26127716,"idl":95.1,"recv":0.31,"send":0.01,"writ":79.11,"used":529.43,"free":3480.09},{"epoch":26127717,"idl":99.76,"recv":0,"send":0,"writ":181.12,"used":518.77,"free":3490.48},{"epoch":26127718,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":518.75,"free":3490.49},{"epoch":26127719,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":518.73,"free":3490.51},{"epoch":26127720,"idl":99.71,"recv":0,"send":0,"writ":0.35,"used":518.73,"free":3490.52},{"epoch":26127721,"idl":99.76,"recv":0,"send":0,"writ":0.64,"used":518.31,"free":3490.95},{"epoch":26127722,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.52,"free":3492.77},{"epoch":26127723,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.51,"free":3492.78},{"epoch":26127724,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.53,"free":3492.75},{"epoch":26127725,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":516.7,"free":3492.6},{"epoch":26127726,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":517.31,"free":3492},{"epoch":26127727,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":516.4,"free":3492.95},{"epoch":26127728,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.37,"free":3492.97},{"epoch":26127729,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":516.58,"free":3492.73},{"epoch":26127730,"idl":99.8,"recv":0,"send":0,"writ":0.26,"used":516.82,"free":3492.51},{"epoch":26127731,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.93,"free":3492.4},{"epoch":26127732,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":516.66,"free":3492.66},{"epoch":26127733,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.28,"free":3493.04},{"epoch":26127734,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.25,"free":3493.06},{"epoch":26127735,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":516.5,"free":3492.83},{"epoch":26127736,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":516.63,"free":3492.69},{"epoch":26127737,"idl":99.68,"recv":0,"send":0,"writ":0.69,"used":516.79,"free":3492.53},{"epoch":26127738,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":516.38,"free":3492.93},{"epoch":26127739,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.35,"free":3492.96},{"epoch":26127740,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":515.64,"free":3493.69},{"epoch":26127741,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":515.61,"free":3493.72},{"epoch":26127742,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":516.96,"free":3492.36},{"epoch":26127743,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":516.79,"free":3492.52},{"epoch":26127744,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.77,"free":3492.54},{"epoch":26127745,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":515.33,"free":3494},{"epoch":26127746,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.28,"free":3494.04},{"epoch":26127747,"idl":99.76,"recv":0,"send":0,"writ":0.6,"used":516.12,"free":3493.2},{"epoch":26127748,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":515.98,"free":3493.34},{"epoch":26127749,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":516.14,"free":3493.17},{"epoch":26127750,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":515.43,"free":3493.9},{"epoch":26127751,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":515.39,"free":3493.93},{"epoch":26127752,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":516.34,"free":3492.98},{"epoch":26127753,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.57,"free":3492.74},{"epoch":26127754,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":516.56,"free":3492.75},{"epoch":26127755,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":516.47,"free":3492.85},{"epoch":26127756,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.29,"free":3493.04},{"epoch":26127757,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":516.72,"free":3492.6},{"epoch":26127758,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":516.25,"free":3493.07},{"epoch":26127759,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":516.69,"free":3492.6},{"epoch":26127760,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":516.86,"free":3492.45},{"epoch":26127761,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.88,"free":3492.44},{"epoch":26127762,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":517.1,"free":3492.22},{"epoch":26127763,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":516.1,"free":3493.21},{"epoch":26127764,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.08,"free":3493.22},{"epoch":26127765,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":514.89,"free":3494.43},{"epoch":26127766,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":514.83,"free":3494.49},{"epoch":26127767,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":514.81,"free":3494.5},{"epoch":26127768,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":516.35,"free":3492.96},{"epoch":26127769,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516,"free":3493.3},{"epoch":26127770,"idl":99.88,"recv":0,"send":0,"writ":0.25,"used":515.99,"free":3493.33},{"epoch":26127771,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.06,"free":3493.26},{"epoch":26127772,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":516.17,"free":3493.15},{"epoch":26127773,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":516.51,"free":3492.8},{"epoch":26127774,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.13,"free":3493.18},{"epoch":26127775,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":515.88,"free":3493.44},{"epoch":26127776,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":515.86,"free":3493.46},{"epoch":26127777,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.83,"free":3493.48},{"epoch":26127778,"idl":99.73,"recv":0,"send":0,"writ":0.6,"used":517.17,"free":3492.14},{"epoch":26127779,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.52,"free":3492.78},{"epoch":26127780,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":516.79,"free":3492.53},{"epoch":26127781,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.75,"free":3492.57},{"epoch":26127782,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.74,"free":3492.57},{"epoch":26127783,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":517.46,"free":3491.84},{"epoch":26127784,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":516.89,"free":3492.41},{"epoch":26127785,"idl":99.83,"recv":0,"send":0,"writ":0.25,"used":516.65,"free":3492.67},{"epoch":26127786,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.62,"free":3492.69},{"epoch":26127787,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":516.59,"free":3492.72},{"epoch":26127788,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":517.11,"free":3492.2},{"epoch":26127789,"idl":99.63,"recv":0,"send":0,"writ":0.31,"used":515.84,"free":3493.44},{"epoch":26127790,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":516.29,"free":3493.01},{"epoch":26127791,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.18,"used":516.35,"free":3492.95},{"epoch":26127792,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.18,"used":516.26,"free":3493.03},{"epoch":26127793,"idl":99.79,"recv":0,"send":0,"writ":0.61,"used":516.77,"free":3492.51},{"epoch":26127794,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":516.88,"free":3492.4},{"epoch":26127795,"idl":99.74,"recv":0,"send":0,"writ":0.27,"used":516.45,"free":3492.85},{"epoch":26127796,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":516.37,"free":3492.93},{"epoch":26127797,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":516.34,"free":3492.95},{"epoch":26127798,"idl":99.73,"recv":0,"send":0,"writ":0.42,"used":516.74,"free":3492.54},{"epoch":26127799,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":516.78,"free":3492.5},{"epoch":26127800,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":516.79,"free":3492.51},{"epoch":26127801,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.76,"free":3492.53},{"epoch":26127802,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.75,"free":3492.54},{"epoch":26127803,"idl":99.74,"recv":0,"send":0,"writ":0.42,"used":517.11,"free":3492.16},{"epoch":26127804,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":516.94,"free":3492.34},{"epoch":26127805,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":517.11,"free":3492.19},{"epoch":26127806,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":517.12,"free":3492.17},{"epoch":26127807,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":517.1,"free":3492.19},{"epoch":26127808,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":517.08,"free":3492.2},{"epoch":26127809,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":517.56,"free":3491.72},{"epoch":26127810,"idl":99.78,"recv":0,"send":0,"writ":0.26,"used":517.3,"free":3492},{"epoch":26127811,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":517.29,"free":3492},{"epoch":26127812,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.27,"free":3492.02},{"epoch":26127813,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":517.25,"free":3492.04},{"epoch":26127814,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":517.37,"free":3491.91},{"epoch":26127815,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":516.83,"free":3492.46},{"epoch":26127816,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":516.47,"free":3492.82},{"epoch":26127817,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.54,"free":3492.75},{"epoch":26127818,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.62,"free":3492.66},{"epoch":26127819,"idl":99.61,"recv":0,"send":0,"writ":0.69,"used":517.59,"free":3491.67},{"epoch":26127820,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":517.1,"free":3492.17},{"epoch":26127821,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":517.06,"free":3492.2},{"epoch":26127822,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":517.04,"free":3492.23},{"epoch":26127823,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":517.02,"free":3492.24},{"epoch":26127824,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":517.35,"free":3491.9},{"epoch":26127825,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":516.51,"free":3492.76},{"epoch":26127826,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.47,"free":3492.8},{"epoch":26127827,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.52,"free":3492.74},{"epoch":26127828,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.61,"free":3492.65},{"epoch":26127829,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":517.18,"free":3492.08},{"epoch":26127830,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":517.09,"free":3492.18},{"epoch":26127831,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":517.05,"free":3492.21},{"epoch":26127832,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":517.03,"free":3492.23},{"epoch":26127833,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":517.01,"free":3492.24},{"epoch":26127834,"idl":99.79,"recv":0,"send":0,"writ":0.46,"used":517.77,"free":3491.49},{"epoch":26127835,"idl":99.69,"recv":0,"send":0,"writ":0.44,"used":517.07,"free":3492.2},{"epoch":26127836,"idl":98.27,"recv":0,"send":0,"writ":0.18,"used":516.96,"free":3492.3},{"epoch":26127837,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.94,"free":3492.34},{"epoch":26127838,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":517.03,"free":3492.26},{"epoch":26127839,"idl":99.76,"recv":0,"send":0,"writ":0.46,"used":517.67,"free":3491.61},{"epoch":26127840,"idl":99.69,"recv":0,"send":0,"writ":0.39,"used":515.93,"free":3493.37},{"epoch":26127841,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.87,"free":3493.43},{"epoch":26127842,"idl":99.91,"recv":0,"send":0.01,"writ":0.17,"used":515.84,"free":3493.45},{"epoch":26127843,"idl":99.91,"recv":0,"send":0.01,"writ":0.16,"used":515.79,"free":3493.5},{"epoch":26127844,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":515.77,"free":3493.52},{"epoch":26127845,"idl":99.63,"recv":0,"send":0,"writ":0.68,"used":517.54,"free":3491.76},{"epoch":26127846,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":517.27,"free":3492.02},{"epoch":26127847,"idl":99.93,"recv":0,"send":0.01,"writ":0.16,"used":517.36,"free":3491.93},{"epoch":26127848,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":517.34,"free":3491.95},{"epoch":26127849,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":517.06,"free":3492.2},{"epoch":26127850,"idl":99.71,"recv":0,"send":0,"writ":0.72,"used":517.61,"free":3491.67},{"epoch":26127851,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":517.28,"free":3492},{"epoch":26127852,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":517.26,"free":3492.01},{"epoch":26127853,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.23,"free":3492.04},{"epoch":26127854,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":517.22,"free":3492.05},{"epoch":26127855,"idl":99.59,"recv":0,"send":0,"writ":0.69,"used":517.32,"free":3491.96},{"epoch":26127856,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.04,"free":3492.24},{"epoch":26127857,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":517.1,"free":3492.17},{"epoch":26127858,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":517.08,"free":3492.19},{"epoch":26127859,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":517.07,"free":3492.2},{"epoch":26127860,"idl":99.68,"recv":0,"send":0,"writ":0.68,"used":517.66,"free":3491.62},{"epoch":26127861,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":517.3,"free":3491.97},{"epoch":26127862,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":517.27,"free":3492},{"epoch":26127863,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":517.25,"free":3492.02},{"epoch":26127864,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":517.23,"free":3492.04},{"epoch":26127865,"idl":99.55,"recv":0,"send":0,"writ":0.73,"used":516.87,"free":3492.42},{"epoch":26127866,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":516.22,"free":3493.08},{"epoch":26127867,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.32,"free":3492.96},{"epoch":26127868,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":516.36,"free":3492.92},{"epoch":26127869,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":516.34,"free":3492.94},{"epoch":26127870,"idl":99.57,"recv":0,"send":0,"writ":0.8,"used":517.27,"free":3492.02},{"epoch":26127871,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":516.32,"free":3492.97},{"epoch":26127872,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.29,"free":3493},{"epoch":26127873,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.26,"free":3493.02},{"epoch":26127874,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.24,"free":3493.04},{"epoch":26127875,"idl":99.61,"recv":0,"send":0,"writ":0.5,"used":516.12,"free":3493.17},{"epoch":26127876,"idl":99.88,"recv":0,"send":0,"writ":0.39,"used":516.22,"free":3493.07},{"epoch":26127877,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":516.2,"free":3493.09},{"epoch":26127878,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":516.33,"free":3492.95},{"epoch":26127879,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":516.69,"free":3492.56},{"epoch":26127880,"idl":99.69,"recv":0,"send":0,"writ":0.59,"used":517.11,"free":3492.17},{"epoch":26127881,"idl":99.91,"recv":0,"send":0.03,"writ":0.3,"used":515.81,"free":3493.46},{"epoch":26127882,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":515.76,"free":3493.5},{"epoch":26127883,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":515.74,"free":3493.52},{"epoch":26127884,"idl":99.88,"recv":0.02,"send":0.01,"writ":0.16,"used":515.74,"free":3493.51},{"epoch":26127885,"idl":99.78,"recv":0.03,"send":0.02,"writ":0.3,"used":516.04,"free":3493.23},{"epoch":26127886,"idl":99.71,"recv":0.04,"send":0.03,"writ":0.57,"used":517.24,"free":3492.03},{"epoch":26127887,"idl":99.89,"recv":0.02,"send":0.01,"writ":0.2,"used":516.53,"free":3492.72},{"epoch":26127888,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":516.52,"free":3492.73},{"epoch":26127889,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":516.5,"free":3492.74},{"epoch":26127890,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":516.49,"free":3492.77},{"epoch":26127891,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":517.17,"free":3492.09},{"epoch":26127892,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.43,"free":3492.82},{"epoch":26127893,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.5,"free":3492.74},{"epoch":26127894,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":516.57,"free":3492.66},{"epoch":26127895,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":516.58,"free":3492.68},{"epoch":26127896,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":517.09,"free":3492.17},{"epoch":26127897,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":516.29,"free":3492.96},{"epoch":26127898,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.27,"free":3492.98},{"epoch":26127899,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":516.25,"free":3492.99},{"epoch":26127900,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":515.28,"free":3493.98},{"epoch":26127901,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":516.3,"free":3492.96},{"epoch":26127902,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.46,"free":3492.8},{"epoch":26127903,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":516.44,"free":3492.81},{"epoch":26127904,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.41,"free":3492.83},{"epoch":26127905,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":516.52,"free":3492.74},{"epoch":26127906,"idl":99.77,"recv":0,"send":0,"writ":0.61,"used":517.13,"free":3492.13},{"epoch":26127907,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.8,"free":3492.45},{"epoch":26127908,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":516.78,"free":3492.47},{"epoch":26127909,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":516.74,"free":3492.48},{"epoch":26127910,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":516.02,"free":3493.22},{"epoch":26127911,"idl":99.77,"recv":0,"send":0,"writ":0.42,"used":516.47,"free":3492.76},{"epoch":26127912,"idl":99.86,"recv":0,"send":0,"writ":0.38,"used":516.69,"free":3492.54},{"epoch":26127913,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":516.66,"free":3492.56},{"epoch":26127914,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":516.72,"free":3492.49},{"epoch":26127915,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":516.86,"free":3492.38},{"epoch":26127916,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":516.84,"free":3492.39},{"epoch":26127917,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":517.16,"free":3492.06},{"epoch":26127918,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":516.8,"free":3492.41},{"epoch":26127919,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":516.77,"free":3492.44},{"epoch":26127920,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":516.53,"free":3492.7},{"epoch":26127921,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":516.51,"free":3492.73},{"epoch":26127922,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":517.06,"free":3492.18},{"epoch":26127923,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":516.72,"free":3492.52},{"epoch":26127924,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":516.7,"free":3492.53},{"epoch":26127925,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":516.71,"free":3492.54},{"epoch":26127926,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.83,"free":3492.42},{"epoch":26127927,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":517.03,"free":3492.2},{"epoch":26127928,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.6,"free":3492.62},{"epoch":26127929,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.58,"free":3492.63},{"epoch":26127930,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":516.83,"free":3492.41},{"epoch":26127931,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.81,"free":3492.42},{"epoch":26127932,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":517.36,"free":3491.86},{"epoch":26127933,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":517.01,"free":3492.21},{"epoch":26127934,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.98,"free":3492.23},{"epoch":26127935,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":516.64,"free":3492.61},{"epoch":26127936,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.26,"free":3492.98},{"epoch":26127937,"idl":99.76,"recv":0,"send":0,"writ":0.51,"used":516.84,"free":3492.4},{"epoch":26127938,"idl":99.91,"recv":0,"send":0,"writ":0.28,"used":516.63,"free":3492.61},{"epoch":26127939,"idl":99.74,"recv":0,"send":0,"writ":0.45,"used":516.66,"free":3492.55},{"epoch":26127940,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":516.9,"free":3492.33},{"epoch":26127941,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.83,"free":3492.39},{"epoch":26127942,"idl":99.74,"recv":0,"send":0,"writ":0.43,"used":516.78,"free":3492.44},{"epoch":26127943,"idl":98.62,"recv":0,"send":0,"writ":0.29,"used":515.81,"free":3493.41},{"epoch":26127944,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":515.79,"free":3493.42},{"epoch":26127945,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":516.03,"free":3493.2},{"epoch":26127946,"idl":99.91,"recv":0,"send":0,"writ":0.35,"used":516.56,"free":3492.66},{"epoch":26127947,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":517.44,"free":3491.79},{"epoch":26127948,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":516.59,"free":3492.63},{"epoch":26127949,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.62,"free":3492.59},{"epoch":26127950,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":516.14,"free":3493.09},{"epoch":26127951,"idl":94.22,"recv":44.67,"send":0.09,"writ":107.15,"used":526.31,"free":3482.08},{"epoch":26127952,"idl":99.61,"recv":0,"send":0,"writ":78.53,"used":519.5,"free":3445.53},{"epoch":26127953,"idl":99.89,"recv":0,"send":0,"writ":0.41,"used":519.41,"free":3445.62},{"epoch":26127954,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":519.54,"free":3445.49},{"epoch":26127955,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":519.28,"free":3445.76},{"epoch":26127956,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":519.05,"free":3445.98},{"epoch":26127957,"idl":98.52,"recv":0,"send":0,"writ":0.43,"used":517.42,"free":3447.64},{"epoch":26127958,"idl":99.91,"recv":0,"send":0,"writ":0.4,"used":517.3,"free":3447.76},{"epoch":26127959,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":517.28,"free":3447.77},{"epoch":26127960,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":517.32,"free":3447.76},{"epoch":26127961,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":517.29,"free":3447.78},{"epoch":26127962,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":517.05,"free":3448.03},{"epoch":26127963,"idl":99.79,"recv":0,"send":0,"writ":0.6,"used":517.37,"free":3447.72},{"epoch":26127964,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":516.99,"free":3448.1},{"epoch":26127965,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":517.09,"free":3448.02},{"epoch":26127966,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":517.15,"free":3447.95},{"epoch":26127967,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":517.13,"free":3447.96},{"epoch":26127968,"idl":99.76,"recv":0,"send":0,"writ":0.61,"used":517.46,"free":3447.63},{"epoch":26127969,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":517.11,"free":3447.96},{"epoch":26127970,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":515.88,"free":3449.2},{"epoch":26127971,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":515.82,"free":3449.26},{"epoch":26127972,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":515.79,"free":3449.28},{"epoch":26127973,"idl":99.74,"recv":0,"send":0,"writ":0.6,"used":517.13,"free":3447.94},{"epoch":26127974,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":516.98,"free":3448.09},{"epoch":26127975,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":515.39,"free":3449.69},{"epoch":26127976,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":515.42,"free":3449.66},{"epoch":26127977,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":515.66,"free":3449.42},{"epoch":26127978,"idl":99.74,"recv":0,"send":0,"writ":0.43,"used":516.58,"free":3448.51},{"epoch":26127979,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":516.86,"free":3448.23},{"epoch":26127980,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":517.33,"free":3447.78},{"epoch":26127981,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":517.33,"free":3447.77},{"epoch":26127982,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":517.31,"free":3447.79},{"epoch":26127983,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":517.64,"free":3447.45},{"epoch":26127984,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":517.26,"free":3447.83},{"epoch":26127985,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":516.3,"free":3448.8},{"epoch":26127986,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.28,"free":3448.82},{"epoch":26127987,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.44,"free":3448.65},{"epoch":26127988,"idl":99.58,"recv":0,"send":0,"writ":0.41,"used":516.91,"free":3448.18},{"epoch":26127989,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":517.13,"free":3447.95},{"epoch":26127990,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":516.9,"free":3448.19},{"epoch":26127991,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.87,"free":3448.23},{"epoch":26127992,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.86,"free":3448.23},{"epoch":26127993,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":517.19,"free":3447.89},{"epoch":26127994,"idl":99.83,"recv":0,"send":0,"writ":0.41,"used":517.31,"free":3447.77},{"epoch":26127995,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":517.21,"free":3447.89},{"epoch":26127996,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.78,"free":3448.32},{"epoch":26127997,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.89,"free":3448.2},{"epoch":26127998,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":516.91,"free":3448.17},{"epoch":26127999,"idl":99.59,"recv":0,"send":0,"writ":0.72,"used":517.95,"free":3447.11},{"epoch":26128000,"idl":99.83,"recv":0,"send":0,"writ":0.25,"used":517.37,"free":3447.7},{"epoch":26128001,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":517.35,"free":3447.72},{"epoch":26128002,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":517.33,"free":3447.73},{"epoch":26128003,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":517.31,"free":3447.75},{"epoch":26128004,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":517.34,"free":3447.72},{"epoch":26128005,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":516.79,"free":3448.28},{"epoch":26128006,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":516.76,"free":3448.3},{"epoch":26128007,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.75,"free":3448.31},{"epoch":26128008,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":516.87,"free":3448.19},{"epoch":26128009,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":517.36,"free":3447.69},{"epoch":26128010,"idl":99.74,"recv":0,"send":0,"writ":0.27,"used":517.38,"free":3447.69},{"epoch":26128011,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":517.35,"free":3447.71},{"epoch":26128012,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":517.33,"free":3447.73},{"epoch":26128013,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":517.31,"free":3447.75},{"epoch":26128014,"idl":99.65,"recv":0,"send":0,"writ":0.42,"used":517.64,"free":3447.41},{"epoch":26128015,"idl":99.85,"recv":0,"send":0,"writ":0.46,"used":517.53,"free":3447.54},{"epoch":26128016,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":517.53,"free":3447.54},{"epoch":26128017,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":517.5,"free":3447.56},{"epoch":26128018,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":517.47,"free":3447.58},{"epoch":26128019,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":518.29,"free":3446.75},{"epoch":26128020,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":515.53,"free":3449.53},{"epoch":26128021,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.15,"free":3449.92},{"epoch":26128022,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":515.12,"free":3449.93},{"epoch":26128023,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":515.11,"free":3449.95},{"epoch":26128024,"idl":99.72,"recv":0,"send":0,"writ":0.5,"used":515.77,"free":3449.28},{"epoch":26128025,"idl":99.75,"recv":0,"send":0,"writ":0.35,"used":515.86,"free":3449.21},{"epoch":26128026,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":515.8,"free":3449.26},{"epoch":26128027,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.8,"free":3449.26},{"epoch":26128028,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":515.76,"free":3449.29},{"epoch":26128029,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":516.71,"free":3448.32},{"epoch":26128030,"idl":99.68,"recv":0,"send":0,"writ":0.68,"used":516.45,"free":3448.59},{"epoch":26128031,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.15,"free":3448.89},{"epoch":26128032,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.13,"free":3448.91},{"epoch":26128033,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.1,"free":3448.93},{"epoch":26128034,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":516.08,"free":3448.98},{"epoch":26128035,"idl":99.63,"recv":0,"send":0,"writ":0.72,"used":516.93,"free":3448.15},{"epoch":26128036,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.56,"free":3448.52},{"epoch":26128037,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":516.54,"free":3448.54},{"epoch":26128038,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.52,"free":3448.55},{"epoch":26128039,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.5,"free":3448.57},{"epoch":26128040,"idl":99.66,"recv":0,"send":0,"writ":0.69,"used":516.79,"free":3448.28},{"epoch":26128041,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.86,"free":3448.21},{"epoch":26128042,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.87,"free":3448.2},{"epoch":26128043,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":516.87,"free":3448.2},{"epoch":26128044,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.84,"free":3448.22},{"epoch":26128045,"idl":98.19,"recv":0,"send":0,"writ":16.05,"used":519.37,"free":3446.47},{"epoch":26128046,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.88,"free":3448.54},{"epoch":26128047,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.85,"free":3448.56},{"epoch":26128048,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.84,"free":3448.57},{"epoch":26128049,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":516.81,"free":3448.59},{"epoch":26128050,"idl":99.67,"recv":0,"send":0,"writ":0.63,"used":516.93,"free":3448.49},{"epoch":26128051,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.54,"free":3448.88},{"epoch":26128052,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.65,"free":3448.76},{"epoch":26128053,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.68,"free":3448.72},{"epoch":26128054,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.66,"free":3448.74},{"epoch":26128055,"idl":99.58,"recv":0,"send":0,"writ":0.67,"used":516.46,"free":3448.95},{"epoch":26128056,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":516.39,"free":3449.03},{"epoch":26128057,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":516.37,"free":3449.04},{"epoch":26128058,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":516.35,"free":3449.06},{"epoch":26128059,"idl":99.63,"recv":0,"send":0,"writ":0.31,"used":516.8,"free":3448.58},{"epoch":26128060,"idl":99.65,"recv":0,"send":0,"writ":0.61,"used":516.19,"free":3449.2},{"epoch":26128061,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":516.78,"free":3448.61},{"epoch":26128062,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":516.83,"free":3448.56},{"epoch":26128063,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":516.95,"free":3448.43},{"epoch":26128064,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.95,"free":3448.46},{"epoch":26128065,"idl":97.59,"recv":0,"send":0,"writ":0.57,"used":518.42,"free":3447},{"epoch":26128066,"idl":75.28,"recv":0,"send":0,"writ":307.91,"used":573,"free":3366.54},{"epoch":26128067,"idl":99.85,"recv":0,"send":0.02,"writ":33.4,"used":518.72,"free":3492.29},{"epoch":26128068,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":518.7,"free":3492.31},{"epoch":26128069,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":518.68,"free":3492.33},{"epoch":26128070,"idl":99.87,"recv":0,"send":0,"writ":0.36,"used":519.16,"free":3491.85},{"epoch":26128071,"idl":99.68,"recv":0,"send":0,"writ":0.65,"used":519.23,"free":3491.92},{"epoch":26128072,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":516.39,"free":3495.39},{"epoch":26128073,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":516.47,"free":3495.3},{"epoch":26128074,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":516.45,"free":3495.32},{"epoch":26128075,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":516.45,"free":3495.34},{"epoch":26128076,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":516.5,"free":3495.29},{"epoch":26128077,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.67,"free":3496.11},{"epoch":26128078,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.65,"free":3496.13},{"epoch":26128079,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.63,"free":3496.14},{"epoch":26128080,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":516.12,"free":3495.67},{"epoch":26128081,"idl":95.94,"recv":0.04,"send":0.01,"writ":142.05,"used":526.13,"free":3487.43},{"epoch":26128082,"idl":99.78,"recv":0,"send":0,"writ":0.44,"used":518.8,"free":3493},{"epoch":26128083,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":518.79,"free":3493},{"epoch":26128084,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":518.77,"free":3493.02},{"epoch":26128085,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":518.04,"free":3493.76},{"epoch":26128086,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":517.69,"free":3494.15},{"epoch":26128087,"idl":99.88,"recv":0,"send":0,"writ":0.22,"used":516.58,"free":3495.31},{"epoch":26128088,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":516.63,"free":3495.25},{"epoch":26128089,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":516.75,"free":3495.11},{"epoch":26128090,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":516.59,"free":3495.28},{"epoch":26128091,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":516.86,"free":3495.01},{"epoch":26128092,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":516.47,"free":3495.39},{"epoch":26128093,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.46,"free":3495.41},{"epoch":26128094,"idl":99.61,"recv":0,"send":0,"writ":0.15,"used":516.43,"free":3495.42},{"epoch":26128095,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":516.2,"free":3495.67},{"epoch":26128096,"idl":99.62,"recv":0,"send":0,"writ":0.62,"used":516.66,"free":3495.21},{"epoch":26128097,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":516.64,"free":3495.22},{"epoch":26128098,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.62,"free":3495.24},{"epoch":26128099,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":516.6,"free":3495.25},{"epoch":26128100,"idl":99.35,"recv":0,"send":0,"writ":0.54,"used":516.15,"free":3495.72},{"epoch":26128101,"idl":99.65,"recv":0,"send":0,"writ":0.43,"used":517.54,"free":3494.31},{"epoch":26128102,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":516.76,"free":3495.09},{"epoch":26128103,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":516.73,"free":3495.11},{"epoch":26128104,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.72,"free":3495.12},{"epoch":26128105,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":516.71,"free":3495.13},{"epoch":26128106,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.7,"free":3495.14},{"epoch":26128107,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":517.03,"free":3494.81},{"epoch":26128108,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.66,"free":3495.17},{"epoch":26128109,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":516.63,"free":3495.19},{"epoch":26128110,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":516.16,"free":3495.68},{"epoch":26128111,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.16,"free":3495.68},{"epoch":26128112,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":516.84,"free":3495},{"epoch":26128113,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":516.52,"free":3495.31},{"epoch":26128114,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":516.5,"free":3495.32},{"epoch":26128115,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":516.73,"free":3495.12},{"epoch":26128116,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":516.49,"free":3495.34},{"epoch":26128117,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":516.83,"free":3495},{"epoch":26128118,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":516.44,"free":3495.39},{"epoch":26128119,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":516.41,"free":3495.39},{"epoch":26128120,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":516.64,"free":3495.18},{"epoch":26128121,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":516.62,"free":3495.2},{"epoch":26128122,"idl":99.69,"recv":0,"send":0,"writ":0.43,"used":517.41,"free":3494.4},{"epoch":26128123,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":516.76,"free":3495.05},{"epoch":26128124,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.74,"free":3495.06},{"epoch":26128125,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":516.5,"free":3495.32},{"epoch":26128126,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.46,"free":3495.35},{"epoch":26128127,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":516.7,"free":3495.11},{"epoch":26128128,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.18,"free":3495.63},{"epoch":26128129,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":516.16,"free":3495.64},{"epoch":26128130,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":515.97,"free":3495.85},{"epoch":26128131,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.89,"free":3495.92},{"epoch":26128132,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":516.63,"free":3495.18},{"epoch":26128133,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":516.94,"free":3494.89},{"epoch":26128134,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":517.03,"free":3494.79},{"epoch":26128135,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":517.04,"free":3494.8},{"epoch":26128136,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":517.01,"free":3494.82},{"epoch":26128137,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":517.29,"free":3494.54},{"epoch":26128138,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.73,"free":3495.1},{"epoch":26128139,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.71,"free":3495.11},{"epoch":26128140,"idl":98.75,"recv":0,"send":0,"writ":0.28,"used":517.19,"free":3494.65},{"epoch":26128141,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":517.18,"free":3494.65},{"epoch":26128142,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":517.48,"free":3494.35},{"epoch":26128143,"idl":99.83,"recv":0,"send":0,"writ":0.44,"used":516.65,"free":3495.17},{"epoch":26128144,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.63,"free":3495.19},{"epoch":26128145,"idl":99.7,"recv":0,"send":0,"writ":0.28,"used":515.73,"free":3496.11},{"epoch":26128146,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.81,"free":3496.02},{"epoch":26128147,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":515.8,"free":3496.03},{"epoch":26128148,"idl":99.64,"recv":0,"send":0,"writ":0.61,"used":516.79,"free":3495.03},{"epoch":26128149,"idl":99.69,"recv":0,"send":0,"writ":0.27,"used":517.01,"free":3494.79},{"epoch":26128150,"idl":99.72,"recv":0,"send":0,"writ":0.37,"used":516.98,"free":3494.84},{"epoch":26128151,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.97,"free":3494.85},{"epoch":26128152,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":516.94,"free":3494.87},{"epoch":26128153,"idl":99.61,"recv":0,"send":0,"writ":0.57,"used":517.26,"free":3494.54},{"epoch":26128154,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":516.64,"free":3495.16},{"epoch":26128155,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":515.76,"free":3496.06},{"epoch":26128156,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":515.71,"free":3496.1},{"epoch":26128157,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":516.26,"free":3495.54},{"epoch":26128158,"idl":99.68,"recv":0,"send":0,"writ":0.42,"used":516.89,"free":3494.91},{"epoch":26128159,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":516.73,"free":3495.06},{"epoch":26128160,"idl":99.7,"recv":0,"send":0,"writ":0.36,"used":516.97,"free":3494.84},{"epoch":26128161,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.94,"free":3494.87},{"epoch":26128162,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":516.94,"free":3494.87},{"epoch":26128163,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":517.26,"free":3494.54},{"epoch":26128164,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":516.88,"free":3494.92},{"epoch":26128165,"idl":99.67,"recv":0,"send":0,"writ":0.27,"used":516.89,"free":3494.92},{"epoch":26128166,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.97,"free":3494.84},{"epoch":26128167,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":517.02,"free":3494.79},{"epoch":26128168,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":517.35,"free":3494.45},{"epoch":26128169,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":516.97,"free":3494.82},{"epoch":26128170,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":516.98,"free":3494.84},{"epoch":26128171,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":516.96,"free":3494.85},{"epoch":26128172,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.94,"free":3494.87},{"epoch":26128173,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":517.62,"free":3494.18},{"epoch":26128174,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":516.89,"free":3494.9},{"epoch":26128175,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":516.33,"free":3495.48},{"epoch":26128176,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":515.4,"free":3496.41},{"epoch":26128177,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.45,"free":3496.35},{"epoch":26128178,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":516.05,"free":3495.75},{"epoch":26128179,"idl":99.63,"recv":0,"send":0,"writ":0.5,"used":516.25,"free":3495.53},{"epoch":26128180,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":515.8,"free":3495.97},{"epoch":26128181,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.77,"free":3496},{"epoch":26128182,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.74,"free":3496.02},{"epoch":26128183,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.72,"free":3496.04},{"epoch":26128184,"idl":99.61,"recv":0,"send":0,"writ":0.61,"used":516.06,"free":3495.69},{"epoch":26128185,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":516.44,"free":3495.33},{"epoch":26128186,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":516.46,"free":3495.31},{"epoch":26128187,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":516.56,"free":3495.2},{"epoch":26128188,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":516.53,"free":3495.22},{"epoch":26128189,"idl":99.6,"recv":0,"send":0,"writ":0.55,"used":516,"free":3495.76},{"epoch":26128190,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":516.01,"free":3495.76},{"epoch":26128191,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.01,"free":3495.78},{"epoch":26128192,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.97,"free":3495.81},{"epoch":26128193,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":515.96,"free":3495.82},{"epoch":26128194,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":516.64,"free":3495.13},{"epoch":26128195,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":516.69,"free":3495.1},{"epoch":26128196,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.65,"free":3495.14},{"epoch":26128197,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":516.73,"free":3495.05},{"epoch":26128198,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.81,"free":3494.97},{"epoch":26128199,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":517.01,"free":3494.76},{"epoch":26128200,"idl":99.71,"recv":0,"send":0,"writ":0.28,"used":516.54,"free":3495.25},{"epoch":26128201,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":516.52,"free":3495.27},{"epoch":26128202,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":516.49,"free":3495.29},{"epoch":26128203,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.48,"free":3495.3},{"epoch":26128204,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":516.8,"free":3494.97},{"epoch":26128205,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":516.94,"free":3494.84},{"epoch":26128206,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.92,"free":3494.86},{"epoch":26128207,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.91,"free":3494.87},{"epoch":26128208,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":516.88,"free":3494.89},{"epoch":26128209,"idl":99.59,"recv":0,"send":0,"writ":0.52,"used":517.46,"free":3494.28},{"epoch":26128210,"idl":99.76,"recv":0,"send":0,"writ":0.42,"used":515.4,"free":3496.36},{"epoch":26128211,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.36,"free":3496.41},{"epoch":26128212,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":515.34,"free":3496.43},{"epoch":26128213,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.31,"free":3496.45},{"epoch":26128214,"idl":99.64,"recv":0,"send":0,"writ":0.31,"used":515.84,"free":3495.91},{"epoch":26128215,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":517,"free":3494.77},{"epoch":26128216,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.98,"free":3494.78},{"epoch":26128217,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":516.72,"free":3495.04},{"epoch":26128218,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":516.7,"free":3495.06},{"epoch":26128219,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.68,"free":3495.07},{"epoch":26128220,"idl":99.49,"recv":0,"send":0,"writ":0.73,"used":516.25,"free":3495.52},{"epoch":26128221,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.07,"free":3495.69},{"epoch":26128222,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.09,"free":3495.67},{"epoch":26128223,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":516.07,"free":3495.69},{"epoch":26128224,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":516.04,"free":3495.71},{"epoch":26128225,"idl":99.53,"recv":0,"send":0,"writ":0.73,"used":515.9,"free":3495.86},{"epoch":26128226,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.52,"free":3496.24},{"epoch":26128227,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.52,"free":3496.24},{"epoch":26128228,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":515.49,"free":3496.27},{"epoch":26128229,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":515.48,"free":3496.27},{"epoch":26128230,"idl":99.59,"recv":0,"send":0,"writ":0.68,"used":515.68,"free":3496.09},{"epoch":26128231,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":514.97,"free":3496.8},{"epoch":26128232,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.03,"free":3496.73},{"epoch":26128233,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":515.11,"free":3496.64},{"epoch":26128234,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.1,"free":3496.65},{"epoch":26128235,"idl":99.58,"recv":0,"send":0,"writ":0.61,"used":517.55,"free":3494.22},{"epoch":26128236,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":516.8,"free":3494.96},{"epoch":26128237,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":516.78,"free":3494.98},{"epoch":26128238,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":516.76,"free":3495},{"epoch":26128239,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":516.98,"free":3494.76},{"epoch":26128240,"idl":99.57,"recv":0,"send":0,"writ":0.56,"used":516.55,"free":3495.2},{"epoch":26128241,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":516.46,"free":3495.29},{"epoch":26128242,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.44,"free":3495.3},{"epoch":26128243,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":516.41,"free":3495.32},{"epoch":26128244,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.56,"free":3495.17},{"epoch":26128245,"idl":99.56,"recv":0.01,"send":0.84,"writ":0.57,"used":516.62,"free":3495.13},{"epoch":26128246,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":516.93,"free":3494.81},{"epoch":26128247,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":517.04,"free":3494.69},{"epoch":26128248,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":517.06,"free":3494.67},{"epoch":26128249,"idl":99.8,"recv":0.01,"send":0.84,"writ":0.2,"used":516.96,"free":3494.76},{"epoch":26128250,"idl":99.65,"recv":0,"send":0,"writ":0.49,"used":517.29,"free":3494.44},{"epoch":26128251,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":516.8,"free":3494.92},{"epoch":26128252,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":516.77,"free":3494.94},{"epoch":26128253,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.75,"free":3494.96},{"epoch":26128254,"idl":99.82,"recv":0.01,"send":0.71,"writ":0.18,"used":516.73,"free":3494.97},{"epoch":26128255,"idl":99.65,"recv":0,"send":0,"writ":0.52,"used":517.01,"free":3494.71},{"epoch":26128256,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":516.63,"free":3495.09},{"epoch":26128257,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.75,"free":3494.96},{"epoch":26128258,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":516.76,"free":3494.95},{"epoch":26128259,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.74,"free":3494.96},{"epoch":26128260,"idl":99.69,"recv":0.01,"send":0.44,"writ":0.33,"used":517.24,"free":3494.49},{"epoch":26128261,"idl":99.71,"recv":0.02,"send":1.36,"writ":0.73,"used":517.18,"free":3494.54},{"epoch":26128262,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.72,"free":3494.98},{"epoch":26128263,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.7,"free":3495},{"epoch":26128264,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.67,"free":3495.03},{"epoch":26128265,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":516.43,"free":3495.28},{"epoch":26128266,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":517.62,"free":3494.08},{"epoch":26128267,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":517.17,"free":3494.54},{"epoch":26128268,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":517.28,"free":3494.42},{"epoch":26128269,"idl":99.74,"recv":0,"send":0,"writ":0.39,"used":517.26,"free":3494.41},{"epoch":26128270,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":516.07,"free":3495.61},{"epoch":26128271,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":516.85,"free":3494.83},{"epoch":26128272,"idl":99.89,"recv":0,"send":0.01,"writ":0.28,"used":516.96,"free":3494.71},{"epoch":26128273,"idl":99.89,"recv":0.04,"send":1.46,"writ":0.17,"used":516.94,"free":3494.74},{"epoch":26128274,"idl":99.9,"recv":0,"send":0.01,"writ":0.24,"used":516.92,"free":3494.76},{"epoch":26128275,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":516.69,"free":3495.02},{"epoch":26128276,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":517.25,"free":3494.44},{"epoch":26128277,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":517.12,"free":3494.57},{"epoch":26128278,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":517.19,"free":3494.49},{"epoch":26128279,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":517.28,"free":3494.4},{"epoch":26128280,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":517.03,"free":3494.67},{"epoch":26128281,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":517.72,"free":3493.97},{"epoch":26128282,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.99,"free":3494.71},{"epoch":26128283,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.97,"free":3494.73},{"epoch":26128284,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.95,"free":3494.75},{"epoch":26128285,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":516.96,"free":3494.76},{"epoch":26128286,"idl":99.71,"recv":0,"send":0,"writ":0.6,"used":517.5,"free":3494.21},{"epoch":26128287,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":517.16,"free":3494.55},{"epoch":26128288,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":517.14,"free":3494.57},{"epoch":26128289,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":517.12,"free":3494.58},{"epoch":26128290,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":517.18,"free":3494.53},{"epoch":26128291,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":517.27,"free":3494.44},{"epoch":26128292,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":517.47,"free":3494.24},{"epoch":26128293,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.97,"free":3494.74},{"epoch":26128294,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":516.95,"free":3494.77},{"epoch":26128295,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":516.29,"free":3495.43},{"epoch":26128296,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":515.94,"free":3495.78},{"epoch":26128297,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":517.08,"free":3494.63},{"epoch":26128298,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.88,"free":3494.82},{"epoch":26128299,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":517.1,"free":3494.58},{"epoch":26128300,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":516.86,"free":3494.84},{"epoch":26128301,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.93,"free":3494.76},{"epoch":26128302,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":517.56,"free":3494.13},{"epoch":26128303,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":517.24,"free":3494.44},{"epoch":26128304,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":517.22,"free":3494.48},{"epoch":26128305,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":517.47,"free":3494.24},{"epoch":26128306,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":517.37,"free":3494.34},{"epoch":26128307,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":517.53,"free":3494.17},{"epoch":26128308,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":517.17,"free":3494.53},{"epoch":26128309,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":517.15,"free":3494.55},{"epoch":26128310,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":517.14,"free":3494.57},{"epoch":26128311,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":517.13,"free":3494.58},{"epoch":26128312,"idl":99.67,"recv":0,"send":0,"writ":0.49,"used":517.46,"free":3494.25},{"epoch":26128313,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":517.15,"free":3494.55},{"epoch":26128314,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":517.27,"free":3494.42},{"epoch":26128315,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":516.56,"free":3495.16},{"epoch":26128316,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.51,"free":3495.2},{"epoch":26128317,"idl":99.75,"recv":0.01,"send":0.04,"writ":0.64,"used":517.09,"free":3494.62},{"epoch":26128318,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.13,"free":3495.57},{"epoch":26128319,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.17,"free":3495.52},{"epoch":26128320,"idl":99.78,"recv":0,"send":0.01,"writ":0.29,"used":516.78,"free":3494.93},{"epoch":26128321,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.76,"free":3494.95},{"epoch":26128322,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":517.11,"free":3494.6},{"epoch":26128323,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.73,"free":3495.97},{"epoch":26128324,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.7,"free":3496},{"epoch":26128325,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":516.44,"free":3495.27},{"epoch":26128326,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.42,"free":3495.29},{"epoch":26128327,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":516.41,"free":3495.3},{"epoch":26128328,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":517.68,"free":3494.02},{"epoch":26128329,"idl":99.72,"recv":0,"send":0,"writ":0.46,"used":517.13,"free":3494.55},{"epoch":26128330,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":516.84,"free":3494.85},{"epoch":26128331,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.28,"free":3495.41},{"epoch":26128332,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.26,"free":3495.43},{"epoch":26128333,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":517.06,"free":3494.62},{"epoch":26128334,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.71,"free":3494.98},{"epoch":26128335,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":515.52,"free":3496.19},{"epoch":26128336,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.45,"free":3496.25},{"epoch":26128337,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":515.19,"free":3496.51},{"epoch":26128338,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":516.9,"free":3494.8},{"epoch":26128339,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.86,"free":3494.83},{"epoch":26128340,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":515.68,"free":3496.03},{"epoch":26128341,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.51,"free":3496.2},{"epoch":26128342,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":515.54,"free":3496.16},{"epoch":26128343,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":516.33,"free":3495.37},{"epoch":26128344,"idl":99.89,"recv":0.02,"send":0.84,"writ":0.16,"used":516.22,"free":3495.47},{"epoch":26128345,"idl":99.81,"recv":0.03,"send":1.47,"writ":0.43,"used":515.68,"free":3496.02},{"epoch":26128346,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":515.64,"free":3496.05},{"epoch":26128347,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":515.69,"free":3496},{"epoch":26128348,"idl":99.69,"recv":0,"send":0,"writ":0.63,"used":516.82,"free":3494.87},{"epoch":26128349,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":516.54,"free":3495.15},{"epoch":26128350,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":516.78,"free":3494.92},{"epoch":26128351,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.77,"free":3494.93},{"epoch":26128352,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":516.74,"free":3494.95},{"epoch":26128353,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":517.36,"free":3494.33},{"epoch":26128354,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":516.69,"free":3495},{"epoch":26128355,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":516.69,"free":3495.01},{"epoch":26128356,"idl":99.8,"recv":0,"send":0,"writ":0.22,"used":516.42,"free":3495.27},{"epoch":26128357,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.4,"free":3495.29},{"epoch":26128358,"idl":99.78,"recv":0,"send":0,"writ":0.46,"used":516.91,"free":3494.77},{"epoch":26128359,"idl":99.71,"recv":0,"send":0,"writ":0.46,"used":517.03,"free":3494.62},{"epoch":26128360,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":516.79,"free":3494.89},{"epoch":26128361,"idl":99.88,"recv":0.08,"send":3.11,"writ":0.42,"used":516.75,"free":3494.9},{"epoch":26128362,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":516.71,"free":3494.93},{"epoch":26128363,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":516.69,"free":3494.94},{"epoch":26128364,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":516.31,"free":3495.32},{"epoch":26128365,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":515.73,"free":3495.92},{"epoch":26128366,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":515.66,"free":3495.98},{"epoch":26128367,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":515.64,"free":3495.99},{"epoch":26128368,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":515.62,"free":3496.01},{"epoch":26128369,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":516.52,"free":3495.1},{"epoch":26128370,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":515.39,"free":3496.26},{"epoch":26128371,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":515.32,"free":3496.32},{"epoch":26128372,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":515.39,"free":3496.24},{"epoch":26128373,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":515.47,"free":3496.16},{"epoch":26128374,"idl":99.67,"recv":0.03,"send":2.32,"writ":0.86,"used":515.94,"free":3495.69},{"epoch":26128375,"idl":99.81,"recv":0.01,"send":0.99,"writ":0.54,"used":517.09,"free":3494.54},{"epoch":26128376,"idl":99.72,"recv":0.02,"send":1.71,"writ":0.33,"used":517.16,"free":3494.46},{"epoch":26128377,"idl":99.89,"recv":0,"send":0.01,"writ":0.25,"used":517.15,"free":3494.46},{"epoch":26128378,"idl":99.85,"recv":0.01,"send":1.8,"writ":0.38,"used":517.14,"free":3494.45},{"epoch":26128379,"idl":99.72,"recv":0,"send":0.01,"writ":0.63,"used":517.34,"free":3494.24},{"epoch":26128380,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":516.64,"free":3494.96},{"epoch":26128381,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.6,"free":3494.99},{"epoch":26128382,"idl":99.72,"recv":0.01,"send":0.64,"writ":0.2,"used":516.59,"free":3495},{"epoch":26128383,"idl":99.88,"recv":0,"send":0.03,"writ":0.26,"used":516.7,"free":3494.88},{"epoch":26128384,"idl":99.75,"recv":0,"send":0,"writ":0.45,"used":517.22,"free":3494.35},{"epoch":26128385,"idl":99.78,"recv":0,"send":0.06,"writ":0.49,"used":516.9,"free":3494.68},{"epoch":26128386,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":516.84,"free":3494.75},{"epoch":26128387,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.81,"free":3494.77},{"epoch":26128388,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":516.77,"free":3494.8},{"epoch":26128389,"idl":99.52,"recv":0,"send":0,"writ":0.55,"used":517.48,"free":3494.07},{"epoch":26128390,"idl":99.76,"recv":0,"send":0,"writ":0.45,"used":515.97,"free":3495.6},{"epoch":26128391,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":515.92,"free":3495.64},{"epoch":26128392,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.18,"used":515.88,"free":3495.68},{"epoch":26128393,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.85,"free":3495.7},{"epoch":26128394,"idl":99.72,"recv":0,"send":0,"writ":0.43,"used":516.51,"free":3495.04},{"epoch":26128395,"idl":99.75,"recv":0,"send":0,"writ":0.44,"used":516.81,"free":3494.75},{"epoch":26128396,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":516.78,"free":3494.78},{"epoch":26128397,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":516.6,"free":3494.96},{"epoch":26128398,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":516.68,"free":3494.87},{"epoch":26128399,"idl":99.42,"recv":0.25,"send":1.12,"writ":1.57,"used":517.83,"free":3493.29},{"epoch":26128400,"idl":98.66,"recv":2.34,"send":71.97,"writ":1.73,"used":520.29,"free":3489.99},{"epoch":26128401,"idl":99.3,"recv":1.08,"send":29.07,"writ":0.95,"used":519.9,"free":3490.27},{"epoch":26128402,"idl":99.32,"recv":1.92,"send":62.7,"writ":0.65,"used":519.91,"free":3490.23},{"epoch":26128403,"idl":99.87,"recv":0,"send":0.01,"writ":0.24,"used":519.86,"free":3490.27},{"epoch":26128404,"idl":99.78,"recv":2.03,"send":2.39,"writ":2.41,"used":519.57,"free":3489.4},{"epoch":26128405,"idl":99.57,"recv":0.02,"send":0.02,"writ":0.8,"used":520.63,"free":3487.97},{"epoch":26128406,"idl":99.86,"recv":0.04,"send":0.08,"writ":0.36,"used":520.28,"free":3488.32},{"epoch":26128407,"idl":99.88,"recv":0.02,"send":0.05,"writ":0.29,"used":520.32,"free":3488.28},{"epoch":26128408,"idl":99.89,"recv":0.03,"send":0.04,"writ":0.23,"used":520.28,"free":3488.33},{"epoch":26128409,"idl":99.87,"recv":0.03,"send":0.04,"writ":0.26,"used":520.36,"free":3488.25},{"epoch":26128410,"idl":99.61,"recv":0.03,"send":0.05,"writ":0.86,"used":520.87,"free":3487.75},{"epoch":26128411,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.27,"used":520.55,"free":3488.09},{"epoch":26128412,"idl":99.83,"recv":0.07,"send":0.12,"writ":0.37,"used":520.55,"free":3488.07},{"epoch":26128413,"idl":99.86,"recv":0.03,"send":0.04,"writ":0.29,"used":520.56,"free":3488.06},{"epoch":26128414,"idl":80.66,"recv":0.04,"send":0.3,"writ":6.99,"used":840.3,"free":3167.95},{"epoch":26128415,"idl":99.22,"recv":0.03,"send":0.1,"writ":0.96,"used":854.22,"free":3153.83},{"epoch":26128416,"idl":99.79,"recv":0.01,"send":0.03,"writ":0.24,"used":570.05,"free":3437.99},{"epoch":26128417,"idl":99.88,"recv":0.01,"send":0,"writ":0.23,"used":570.01,"free":3438.02},{"epoch":26128418,"idl":99.83,"recv":0.02,"send":0.35,"writ":0.26,"used":570.11,"free":3437.91},{"epoch":26128419,"idl":99.67,"recv":0.17,"send":0.11,"writ":0.38,"used":571.41,"free":3436.54},{"epoch":26128420,"idl":80.13,"recv":0.06,"send":1.53,"writ":5.18,"used":848.16,"free":3159.64},{"epoch":26128421,"idl":85.35,"recv":0.02,"send":0.05,"writ":1.18,"used":1006.16,"free":3001.61},{"epoch":26128422,"idl":94.65,"recv":0.06,"send":2.12,"writ":3.63,"used":1037.87,"free":2969.92},{"epoch":26128423,"idl":99.61,"recv":0.01,"send":0.04,"writ":0.33,"used":834.19,"free":3173.59},{"epoch":26128424,"idl":99.86,"recv":0,"send":0,"writ":0.25,"used":570.75,"free":3437.02},{"epoch":26128425,"idl":99.55,"recv":0.01,"send":0.01,"writ":0.83,"used":572.12,"free":3435.66},{"epoch":26128426,"idl":80.51,"recv":0.04,"send":0.86,"writ":4.42,"used":810.85,"free":3196.89},{"epoch":26128427,"idl":99.85,"recv":0.02,"send":0,"writ":0.33,"used":1016.85,"free":2990.92},{"epoch":26128428,"idl":99.64,"recv":0.01,"send":0,"writ":0.24,"used":630.81,"free":3376.96},{"epoch":26128429,"idl":81.23,"recv":0.03,"send":0.9,"writ":4.44,"used":937.03,"free":3070.7},{"epoch":26128430,"idl":99.37,"recv":0,"send":0,"writ":0.68,"used":895.54,"free":3112.24},{"epoch":26128431,"idl":99.86,"recv":0.03,"send":0.79,"writ":0.35,"used":572.21,"free":3435.56},{"epoch":26128432,"idl":99.16,"recv":0.01,"send":0.04,"writ":0.26,"used":572.43,"free":3435.33},{"epoch":26128433,"idl":80.53,"recv":0.02,"send":0.03,"writ":4.47,"used":1031.16,"free":2976.56},{"epoch":26128434,"idl":80.9,"recv":0.07,"send":1.64,"writ":4.44,"used":1031.18,"free":2976.53},{"epoch":26128435,"idl":99.59,"recv":0.02,"send":0.9,"writ":0.65,"used":1040.95,"free":2966.8},{"epoch":26128436,"idl":99.65,"recv":0,"send":0,"writ":0.39,"used":619.34,"free":3388.4},{"epoch":26128437,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":572.4,"free":3435.34},{"epoch":26128438,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":572.49,"free":3435.24},{"epoch":26128439,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":572.54,"free":3435.18},{"epoch":26128440,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":571.13,"free":3436.62},{"epoch":26128441,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":574.23,"free":3433.51},{"epoch":26128442,"idl":99.86,"recv":0,"send":0.03,"writ":0.14,"used":573.73,"free":3434.01},{"epoch":26128443,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":573.68,"free":3434.05},{"epoch":26128444,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":573.66,"free":3434.07},{"epoch":26128445,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":573.9,"free":3433.84},{"epoch":26128446,"idl":94.89,"recv":0.46,"send":0.02,"writ":261.02,"used":584.41,"free":3423.65},{"epoch":26128447,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":576.57,"free":3430.91},{"epoch":26128448,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":576.55,"free":3430.92},{"epoch":26128449,"idl":99.55,"recv":0,"send":0,"writ":0.34,"used":576.63,"free":3430.82},{"epoch":26128450,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":576.94,"free":3430.51},{"epoch":26128451,"idl":99.7,"recv":0,"send":0,"writ":0.63,"used":575.89,"free":3431.58},{"epoch":26128452,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":574.28,"free":3433.2},{"epoch":26128453,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":573.51,"free":3433.98},{"epoch":26128454,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":573.49,"free":3434.02},{"epoch":26128455,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":573.26,"free":3434.28},{"epoch":26128456,"idl":99.66,"recv":0,"send":0,"writ":0.52,"used":573.68,"free":3433.84},{"epoch":26128457,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":573.93,"free":3433.6},{"epoch":26128458,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":573.91,"free":3433.61},{"epoch":26128459,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":573.89,"free":3433.62},{"epoch":26128460,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":573.49,"free":3434.04},{"epoch":26128461,"idl":99.69,"recv":0,"send":0,"writ":0.46,"used":574.19,"free":3433.33},{"epoch":26128462,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":574.27,"free":3433.25},{"epoch":26128463,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":574.24,"free":3433.27},{"epoch":26128464,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":574.22,"free":3433.28},{"epoch":26128465,"idl":99.6,"recv":0,"send":0,"writ":0.31,"used":573.01,"free":3434.51},{"epoch":26128466,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":573.6,"free":3433.92},{"epoch":26128467,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":574.16,"free":3433.35},{"epoch":26128468,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":574.15,"free":3433.36},{"epoch":26128469,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":574.13,"free":3433.38},{"epoch":26128470,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":573.87,"free":3433.65},{"epoch":26128471,"idl":99.69,"recv":0,"send":0,"writ":0.37,"used":574.5,"free":3433.02},{"epoch":26128472,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":574.3,"free":3433.22},{"epoch":26128473,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":574.26,"free":3433.25},{"epoch":26128474,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":574.24,"free":3433.27},{"epoch":26128475,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":574.24,"free":3433.28},{"epoch":26128476,"idl":99.79,"recv":0,"send":0,"writ":0.19,"used":573.78,"free":3433.74},{"epoch":26128477,"idl":99.62,"recv":0,"send":0,"writ":0.57,"used":574.49,"free":3433.03},{"epoch":26128478,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":573.92,"free":3433.59},{"epoch":26128479,"idl":99.6,"recv":0,"send":0,"writ":0.27,"used":574.39,"free":3433.1},{"epoch":26128480,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":573.76,"free":3433.75},{"epoch":26128481,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":573.81,"free":3433.69},{"epoch":26128482,"idl":99.54,"recv":0,"send":0,"writ":0.59,"used":573.48,"free":3434.02},{"epoch":26128483,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":572.8,"free":3434.69},{"epoch":26128484,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":572.77,"free":3434.71},{"epoch":26128485,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":574.18,"free":3433.32},{"epoch":26128486,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":573.74,"free":3433.76},{"epoch":26128487,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":574.35,"free":3433.14},{"epoch":26128488,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":573.88,"free":3433.61},{"epoch":26128489,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":573.19,"free":3434.29},{"epoch":26128490,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":572.09,"free":3435.41},{"epoch":26128491,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":571.95,"free":3435.56},{"epoch":26128492,"idl":99.61,"recv":0,"send":0,"writ":0.59,"used":572.36,"free":3435.15},{"epoch":26128493,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":572.09,"free":3435.41},{"epoch":26128494,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":572.07,"free":3435.44},{"epoch":26128495,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":573.73,"free":3433.79},{"epoch":26128496,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":573.76,"free":3433.75},{"epoch":26128497,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":574.17,"free":3433.34},{"epoch":26128498,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":572.74,"free":3434.77},{"epoch":26128499,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":572.73,"free":3434.78},{"epoch":26128500,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":573.93,"free":3433.6},{"epoch":26128501,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":573.94,"free":3433.58},{"epoch":26128502,"idl":99.49,"recv":0.02,"send":0.83,"writ":0.46,"used":574.47,"free":3433.05},{"epoch":26128503,"idl":99.83,"recv":0,"send":0.01,"writ":0.36,"used":573.45,"free":3434.05},{"epoch":26128504,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":573.56,"free":3433.94},{"epoch":26128505,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":573.56,"free":3433.93},{"epoch":26128506,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":573.54,"free":3433.95},{"epoch":26128507,"idl":99.67,"recv":0,"send":0,"writ":0.39,"used":573.44,"free":3434.04},{"epoch":26128508,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":572.01,"free":3435.47},{"epoch":26128509,"idl":99.58,"recv":0,"send":0,"writ":0.28,"used":573.45,"free":3433.99},{"epoch":26128510,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":573.72,"free":3433.74},{"epoch":26128511,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":573.68,"free":3433.78},{"epoch":26128512,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":573.66,"free":3433.79},{"epoch":26128513,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":573.79,"free":3433.65},{"epoch":26128514,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":573.31,"free":3434.14},{"epoch":26128515,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":572.82,"free":3434.62},{"epoch":26128516,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":572.79,"free":3434.65},{"epoch":26128517,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":573.01,"free":3434.42},{"epoch":26128518,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":574.23,"free":3433.2},{"epoch":26128519,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":574.21,"free":3433.22},{"epoch":26128520,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":573.28,"free":3434.16},{"epoch":26128521,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":573.21,"free":3434.22},{"epoch":26128522,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":573.19,"free":3434.24},{"epoch":26128523,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":574.04,"free":3433.39},{"epoch":26128524,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":574.12,"free":3433.3},{"epoch":26128525,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":574.75,"free":3432.69},{"epoch":26128526,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":573.83,"free":3433.6},{"epoch":26128527,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":573.78,"free":3433.65},{"epoch":26128528,"idl":99.73,"recv":0,"send":0,"writ":0.47,"used":574.12,"free":3433.31},{"epoch":26128529,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":573.74,"free":3433.68},{"epoch":26128530,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":573.75,"free":3433.7},{"epoch":26128531,"idl":99.7,"recv":0,"send":0,"writ":0.15,"used":573.73,"free":3433.71},{"epoch":26128532,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":573.71,"free":3433.72},{"epoch":26128533,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":573.6,"free":3433.83},{"epoch":26128534,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.44,"free":3434.99},{"epoch":26128535,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":573.4,"free":3434.04},{"epoch":26128536,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":573.83,"free":3433.61},{"epoch":26128537,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":574,"free":3433.44},{"epoch":26128538,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":574.34,"free":3433.09},{"epoch":26128539,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":574.51,"free":3432.9},{"epoch":26128540,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":574.52,"free":3432.9},{"epoch":26128541,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":574.5,"free":3432.92},{"epoch":26128542,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":574.48,"free":3432.94},{"epoch":26128543,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":574.82,"free":3432.59},{"epoch":26128544,"idl":99.83,"recv":0,"send":0,"writ":0.41,"used":574.44,"free":3432.97},{"epoch":26128545,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":573.36,"free":3434.07},{"epoch":26128546,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":572.93,"free":3434.49},{"epoch":26128547,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.93,"free":3434.49},{"epoch":26128548,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":573.08,"free":3434.34},{"epoch":26128549,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":574.24,"free":3433.18},{"epoch":26128550,"idl":98.84,"recv":0,"send":0,"writ":0.33,"used":574.04,"free":3433.4},{"epoch":26128551,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":574.01,"free":3433.43},{"epoch":26128552,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":573.99,"free":3433.44},{"epoch":26128553,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":573.97,"free":3433.46},{"epoch":26128554,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":574.52,"free":3432.91},{"epoch":26128555,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":574.44,"free":3433},{"epoch":26128556,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":574.44,"free":3433},{"epoch":26128557,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":574.42,"free":3433.01},{"epoch":26128558,"idl":99.91,"recv":0,"send":0.02,"writ":0.17,"used":574.45,"free":3432.97},{"epoch":26128559,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":575.06,"free":3432.37},{"epoch":26128560,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":574.81,"free":3432.62},{"epoch":26128561,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":574.74,"free":3432.69},{"epoch":26128562,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":574.72,"free":3432.7},{"epoch":26128563,"idl":99.43,"recv":0,"send":0,"writ":0.14,"used":574.7,"free":3432.72},{"epoch":26128564,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":575.05,"free":3432.37},{"epoch":26128565,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":574.74,"free":3432.69},{"epoch":26128566,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":573.93,"free":3433.5},{"epoch":26128567,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":573.9,"free":3433.52},{"epoch":26128568,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":573.89,"free":3433.53},{"epoch":26128569,"idl":99.6,"recv":0,"send":0,"writ":0.69,"used":574.19,"free":3433.21},{"epoch":26128570,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":572.02,"free":3435.4},{"epoch":26128571,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":572.09,"free":3435.32},{"epoch":26128572,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":572.07,"free":3435.34},{"epoch":26128573,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":572.05,"free":3435.35},{"epoch":26128574,"idl":99.71,"recv":0,"send":0,"writ":0.45,"used":573.08,"free":3434.32},{"epoch":26128575,"idl":99.78,"recv":0,"send":0,"writ":0.48,"used":573.26,"free":3434.15},{"epoch":26128576,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":573.41,"free":3434},{"epoch":26128577,"idl":99.9,"recv":0,"send":0,"writ":0.23,"used":573.7,"free":3433.71},{"epoch":26128578,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":573.68,"free":3433.72},{"epoch":26128579,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":573.82,"free":3433.57},{"epoch":26128580,"idl":99.66,"recv":0,"send":0,"writ":0.68,"used":575.03,"free":3432.39},{"epoch":26128581,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":574.8,"free":3432.61},{"epoch":26128582,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":574.79,"free":3432.62},{"epoch":26128583,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":574.76,"free":3432.64},{"epoch":26128584,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":574.74,"free":3432.66},{"epoch":26128585,"idl":99.64,"recv":0,"send":0,"writ":1.03,"used":574.57,"free":3432.86},{"epoch":26128586,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":573.41,"free":3434.02},{"epoch":26128587,"idl":99.85,"recv":0.02,"send":0.83,"writ":0.22,"used":573.24,"free":3434.18},{"epoch":26128588,"idl":99.84,"recv":0.01,"send":0.11,"writ":0.19,"used":573.22,"free":3434.19},{"epoch":26128589,"idl":99.87,"recv":0.03,"send":1.25,"writ":0.29,"used":573.2,"free":3434.2},{"epoch":26128590,"idl":99.58,"recv":0.01,"send":0.01,"writ":0.99,"used":574.38,"free":3433.03},{"epoch":26128591,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":574.26,"free":3433.15},{"epoch":26128592,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":574.23,"free":3433.17},{"epoch":26128593,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":574.22,"free":3433.18},{"epoch":26128594,"idl":99.84,"recv":0.08,"send":2.22,"writ":0.27,"used":574.19,"free":3433.19},{"epoch":26128595,"idl":99.64,"recv":0,"send":0,"writ":0.76,"used":574.73,"free":3432.67},{"epoch":26128596,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":574.01,"free":3433.39},{"epoch":26128597,"idl":99.83,"recv":0.02,"send":0.46,"writ":0.2,"used":573.89,"free":3433.49},{"epoch":26128598,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":573.84,"free":3433.53},{"epoch":26128599,"idl":99.62,"recv":0.01,"send":0.45,"writ":0.3,"used":574.61,"free":3432.74},{"epoch":26128600,"idl":99.62,"recv":0,"send":0.01,"writ":0.75,"used":574.35,"free":3433.01},{"epoch":26128601,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":574.14,"free":3433.22},{"epoch":26128602,"idl":99.91,"recv":0.01,"send":0.03,"writ":0.16,"used":574.1,"free":3433.26},{"epoch":26128603,"idl":99.78,"recv":0.09,"send":3.92,"writ":0.26,"used":574.21,"free":3433.13},{"epoch":26128604,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":574.16,"free":3433.16},{"epoch":26128605,"idl":99.63,"recv":0,"send":0,"writ":0.63,"used":575.5,"free":3431.85},{"epoch":26128606,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":574.63,"free":3432.71},{"epoch":26128607,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":574.12,"free":3433.21},{"epoch":26128608,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":574.1,"free":3433.24},{"epoch":26128609,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":574.07,"free":3433.25},{"epoch":26128610,"idl":98.36,"recv":0.01,"send":0.05,"writ":0.65,"used":574.81,"free":3432.54},{"epoch":26128611,"idl":99.84,"recv":0,"send":0.01,"writ":0.29,"used":574.42,"free":3432.92},{"epoch":26128612,"idl":99.83,"recv":0,"send":0,"writ":0.25,"used":574.37,"free":3432.96},{"epoch":26128613,"idl":99.84,"recv":0,"send":0.03,"writ":0.16,"used":574.39,"free":3432.93},{"epoch":26128614,"idl":99.85,"recv":0.01,"send":0.27,"writ":0.21,"used":574.4,"free":3432.92},{"epoch":26128615,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":573.89,"free":3433.45},{"epoch":26128616,"idl":99.7,"recv":0,"send":0,"writ":0.62,"used":574.82,"free":3432.51},{"epoch":26128617,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":574.44,"free":3432.89},{"epoch":26128618,"idl":99.9,"recv":0,"send":0.01,"writ":0.2,"used":574.39,"free":3432.93},{"epoch":26128619,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":574.36,"free":3432.95},{"epoch":26128620,"idl":99.7,"recv":0.01,"send":0.45,"writ":0.36,"used":575.1,"free":3432.24},{"epoch":26128621,"idl":99.65,"recv":0,"send":0.03,"writ":0.68,"used":574.99,"free":3432.34},{"epoch":26128622,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":574.47,"free":3432.86},{"epoch":26128623,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":574.45,"free":3432.87},{"epoch":26128624,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":574.43,"free":3432.89},{"epoch":26128625,"idl":99.68,"recv":0.05,"send":1.97,"writ":0.34,"used":575.17,"free":3432.16},{"epoch":26128626,"idl":99.68,"recv":0,"send":0.1,"writ":0.68,"used":575.5,"free":3431.81},{"epoch":26128627,"idl":99.78,"recv":0,"send":0.1,"writ":0.15,"used":574.38,"free":3432.92},{"epoch":26128628,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":574.32,"free":3432.98},{"epoch":26128629,"idl":99.63,"recv":0,"send":0,"writ":0.28,"used":574.31,"free":3432.97},{"epoch":26128630,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":574.42,"free":3432.89},{"epoch":26128631,"idl":99.74,"recv":0.01,"send":0,"writ":0.55,"used":574.81,"free":3432.5},{"epoch":26128632,"idl":99.79,"recv":0.01,"send":0.05,"writ":0.23,"used":574.68,"free":3432.62},{"epoch":26128633,"idl":99.8,"recv":0,"send":0,"writ":0.22,"used":574.61,"free":3432.68},{"epoch":26128634,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":574.59,"free":3432.73},{"epoch":26128635,"idl":99.66,"recv":0,"send":0.02,"writ":0.37,"used":573.86,"free":3433.48},{"epoch":26128636,"idl":99.65,"recv":0,"send":0.01,"writ":0.59,"used":574.88,"free":3432.45},{"epoch":26128637,"idl":99.83,"recv":0,"send":0.03,"writ":0.29,"used":574.37,"free":3432.95},{"epoch":26128638,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":574.35,"free":3432.98},{"epoch":26128639,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":574.33,"free":3432.99},{"epoch":26128640,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":573.93,"free":3433.4},{"epoch":26128641,"idl":99.62,"recv":0,"send":0,"writ":0.41,"used":574.34,"free":3432.99},{"epoch":26128642,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":574.29,"free":3433.04},{"epoch":26128643,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":574.34,"free":3432.98},{"epoch":26128644,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":574.43,"free":3432.88},{"epoch":26128645,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":574.67,"free":3432.66},{"epoch":26128646,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":574.97,"free":3432.36},{"epoch":26128647,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":573.73,"free":3433.59},{"epoch":26128648,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":573.63,"free":3433.68},{"epoch":26128649,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":573.6,"free":3433.71},{"epoch":26128650,"idl":99.67,"recv":0,"send":0,"writ":0.36,"used":573.6,"free":3433.72},{"epoch":26128651,"idl":99.7,"recv":0,"send":0,"writ":0.46,"used":574,"free":3433.32},{"epoch":26128652,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":574.06,"free":3433.25},{"epoch":26128653,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":574.04,"free":3433.28},{"epoch":26128654,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":574.01,"free":3433.3},{"epoch":26128655,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":574.4,"free":3432.93},{"epoch":26128656,"idl":99.8,"recv":0,"send":0.02,"writ":0.21,"used":574.02,"free":3433.3},{"epoch":26128657,"idl":99.64,"recv":0,"send":0,"writ":0.62,"used":574.23,"free":3433.08},{"epoch":26128658,"idl":99.79,"recv":0,"send":0.01,"writ":0.18,"used":573.84,"free":3433.46},{"epoch":26128659,"idl":99.74,"recv":0,"send":0.02,"writ":0.3,"used":574.54,"free":3432.74},{"epoch":26128660,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":574.28,"free":3433.02},{"epoch":26128661,"idl":99.79,"recv":0.01,"send":0.05,"writ":0.19,"used":574.29,"free":3433},{"epoch":26128662,"idl":99.64,"recv":0.01,"send":0.29,"writ":0.66,"used":575.21,"free":3432.07},{"epoch":26128663,"idl":99.8,"recv":0,"send":0.07,"writ":0.18,"used":574.77,"free":3432.51},{"epoch":26128664,"idl":99.77,"recv":0,"send":0.01,"writ":0.16,"used":574.71,"free":3432.56},{"epoch":26128665,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":574.61,"free":3432.67},{"epoch":26128666,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":574.63,"free":3432.65},{"epoch":26128667,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":574.69,"free":3432.59},{"epoch":26128668,"idl":99.82,"recv":0.02,"send":0.5,"writ":0.29,"used":574.09,"free":3433.18},{"epoch":26128669,"idl":99.81,"recv":0,"send":0.16,"writ":0.17,"used":574.04,"free":3433.22},{"epoch":26128670,"idl":99.74,"recv":0,"send":0.01,"writ":0.34,"used":574.01,"free":3433.26},{"epoch":26128671,"idl":99.8,"recv":0,"send":0.01,"writ":0.16,"used":574,"free":3433.27},{"epoch":26128672,"idl":99.61,"recv":0,"send":0.04,"writ":0.62,"used":574.43,"free":3432.82},{"epoch":26128673,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":574.06,"free":3433.18},{"epoch":26128674,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":574.04,"free":3433.21},{"epoch":26128675,"idl":99.69,"recv":0,"send":0,"writ":0.33,"used":574.53,"free":3432.73},{"epoch":26128676,"idl":99.78,"recv":0,"send":0.03,"writ":0.23,"used":574.46,"free":3432.79},{"epoch":26128677,"idl":99.64,"recv":0,"send":0,"writ":0.47,"used":575.23,"free":3432.02},{"epoch":26128678,"idl":99.78,"recv":0,"send":0,"writ":0.26,"used":574.61,"free":3432.63},{"epoch":26128679,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":574.59,"free":3432.65},{"epoch":26128680,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":574.58,"free":3432.68},{"epoch":26128681,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":574.56,"free":3432.7},{"epoch":26128682,"idl":99.58,"recv":0,"send":0,"writ":0.51,"used":575.1,"free":3432.15},{"epoch":26128683,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":574.75,"free":3432.49},{"epoch":26128684,"idl":98.52,"recv":0,"send":0,"writ":0.14,"used":574.73,"free":3432.51},{"epoch":26128685,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":574.96,"free":3432.29},{"epoch":26128686,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":574.96,"free":3432.29},{"epoch":26128687,"idl":99.65,"recv":0,"send":0,"writ":0.41,"used":574.96,"free":3432.28},{"epoch":26128688,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":573.52,"free":3433.72},{"epoch":26128689,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":574.09,"free":3433.12},{"epoch":26128690,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":574.34,"free":3432.9},{"epoch":26128691,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":574.32,"free":3432.91},{"epoch":26128692,"idl":99.57,"recv":0.02,"send":0.42,"writ":0.48,"used":574.62,"free":3432.6},{"epoch":26128693,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":574.23,"free":3432.99},{"epoch":26128694,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":574.19,"free":3433.02},{"epoch":26128695,"idl":99.59,"recv":0,"send":0,"writ":0.32,"used":574.62,"free":3432.61},{"epoch":26128696,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":574.59,"free":3432.64},{"epoch":26128697,"idl":99.76,"recv":0,"send":0,"writ":0.19,"used":574.57,"free":3432.65},{"epoch":26128698,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":573.97,"free":3433.24},{"epoch":26128699,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":573.56,"free":3433.66},{"epoch":26128700,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":574.74,"free":3432.49},{"epoch":26128701,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":574.76,"free":3432.46},{"epoch":26128702,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":574.74,"free":3432.48},{"epoch":26128703,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":575.27,"free":3431.95},{"epoch":26128704,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":574.94,"free":3432.27},{"epoch":26128705,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":574.47,"free":3432.76},{"epoch":26128706,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":574.52,"free":3432.71},{"epoch":26128707,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":574.6,"free":3432.62},{"epoch":26128708,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":574.08,"free":3433.13},{"epoch":26128709,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":573.58,"free":3433.63},{"epoch":26128710,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":573.34,"free":3433.89},{"epoch":26128711,"idl":99.79,"recv":0,"send":0,"writ":0.12,"used":573.31,"free":3433.91},{"epoch":26128712,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":573.29,"free":3433.93},{"epoch":26128713,"idl":99.66,"recv":0,"send":0,"writ":0.58,"used":574.38,"free":3432.83},{"epoch":26128714,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":574.23,"free":3432.98},{"epoch":26128715,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":574.47,"free":3432.75},{"epoch":26128716,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":574.27,"free":3432.95},{"epoch":26128717,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":574.2,"free":3433.02},{"epoch":26128718,"idl":99.66,"recv":0,"send":0,"writ":0.58,"used":574.66,"free":3432.55},{"epoch":26128719,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":574.87,"free":3432.32},{"epoch":26128720,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":573.63,"free":3433.57},{"epoch":26128721,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":573.59,"free":3433.61},{"epoch":26128722,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":573.56,"free":3433.63},{"epoch":26128723,"idl":99.69,"recv":0,"send":0,"writ":0.41,"used":574.06,"free":3433.13},{"epoch":26128724,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":573.77,"free":3433.42},{"epoch":26128725,"idl":99.68,"recv":0,"send":0,"writ":0.4,"used":574.98,"free":3432.24},{"epoch":26128726,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":574.98,"free":3432.23},{"epoch":26128727,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":574.95,"free":3432.26},{"epoch":26128728,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":574.49,"free":3432.72},{"epoch":26128729,"idl":99.64,"recv":0,"send":0,"writ":0.57,"used":574.62,"free":3432.58},{"epoch":26128730,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":573.4,"free":3433.81},{"epoch":26128731,"idl":99.78,"recv":0,"send":0,"writ":0.22,"used":555.32,"free":3452.01},{"epoch":26128732,"idl":99.8,"recv":0,"send":0,"writ":0.21,"used":516.96,"free":3490.71},{"epoch":26128733,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.95,"free":3490.72},{"epoch":26128734,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":517.46,"free":3490.21},{"epoch":26128735,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":518.13,"free":3489.55},{"epoch":26128736,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":518.14,"free":3489.55},{"epoch":26128737,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":518.13,"free":3489.57},{"epoch":26128738,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":518.1,"free":3489.59},{"epoch":26128739,"idl":99.69,"recv":0,"send":0,"writ":0.61,"used":518,"free":3489.68},{"epoch":26128740,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":518.25,"free":3489.46},{"epoch":26128741,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":518.24,"free":3489.47},{"epoch":26128742,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":518.22,"free":3489.49},{"epoch":26128743,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":518.2,"free":3489.51},{"epoch":26128744,"idl":99.69,"recv":0,"send":0,"writ":0.63,"used":517.95,"free":3489.75},{"epoch":26128745,"idl":99.77,"recv":0,"send":0,"writ":0.37,"used":517.67,"free":3490.04},{"epoch":26128746,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":517.65,"free":3490.06},{"epoch":26128747,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":517.63,"free":3490.08},{"epoch":26128748,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":517.61,"free":3490.09},{"epoch":26128749,"idl":99.53,"recv":0,"send":0,"writ":0.64,"used":518.42,"free":3489.25},{"epoch":26128750,"idl":99.67,"recv":0,"send":0,"writ":0.36,"used":518.17,"free":3489.52},{"epoch":26128751,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":518.28,"free":3489.41},{"epoch":26128752,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":518.26,"free":3489.43},{"epoch":26128753,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":518.24,"free":3489.45},{"epoch":26128754,"idl":99.63,"recv":0,"send":0,"writ":0.51,"used":518.4,"free":3489.27},{"epoch":26128755,"idl":99.74,"recv":0,"send":0,"writ":0.41,"used":517.95,"free":3489.74},{"epoch":26128756,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":517.96,"free":3489.72},{"epoch":26128757,"idl":99.76,"recv":0,"send":0,"writ":0.21,"used":517.94,"free":3489.75},{"epoch":26128758,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":517.91,"free":3489.76},{"epoch":26128759,"idl":99.65,"recv":0,"send":0,"writ":0.34,"used":518.26,"free":3489.41},{"epoch":26128760,"idl":99.72,"recv":0,"send":0,"writ":0.53,"used":517.17,"free":3490.52},{"epoch":26128761,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":517.13,"free":3490.55},{"epoch":26128762,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":517.19,"free":3490.49},{"epoch":26128763,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":517.27,"free":3490.4},{"epoch":26128764,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":517.26,"free":3490.41},{"epoch":26128765,"idl":99.5,"recv":0,"send":0,"writ":0.73,"used":518.4,"free":3489.29},{"epoch":26128766,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":517.98,"free":3489.7},{"epoch":26128767,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":517.95,"free":3489.72},{"epoch":26128768,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":517.94,"free":3489.74},{"epoch":26128769,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":517.91,"free":3489.75},{"epoch":26128770,"idl":99.46,"recv":0,"send":0,"writ":0.73,"used":518.21,"free":3489.47},{"epoch":26128771,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":517.65,"free":3490.03},{"epoch":26128772,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":517.62,"free":3490.05},{"epoch":26128773,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":517.61,"free":3490.06},{"epoch":26128774,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":517.66,"free":3490.01},{"epoch":26128775,"idl":99.58,"recv":0,"send":0,"writ":0.74,"used":518.02,"free":3489.67},{"epoch":26128776,"idl":99.79,"recv":0,"send":0,"writ":0.19,"used":517.57,"free":3490.13},{"epoch":26128777,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":517.49,"free":3490.2},{"epoch":26128778,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":517.46,"free":3490.22},{"epoch":26128779,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":518.17,"free":3489.49},{"epoch":26128780,"idl":99.54,"recv":0,"send":0,"writ":0.76,"used":519.02,"free":3488.65},{"epoch":26128781,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":518.65,"free":3489.03},{"epoch":26128782,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":518.62,"free":3489.05},{"epoch":26128783,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":518.6,"free":3489.06},{"epoch":26128784,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":518.59,"free":3489.09},{"epoch":26128785,"idl":99.62,"recv":0,"send":0,"writ":0.59,"used":518.62,"free":3489.08},{"epoch":26128786,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":518.22,"free":3489.47},{"epoch":26128787,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":518.24,"free":3489.45},{"epoch":26128788,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":518.22,"free":3489.47},{"epoch":26128789,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":518.19,"free":3489.49},{"epoch":26128790,"idl":99.62,"recv":0,"send":0,"writ":0.78,"used":518.86,"free":3488.84},{"epoch":26128791,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":518.66,"free":3489.03},{"epoch":26128792,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":518.64,"free":3489.04},{"epoch":26128793,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":518.62,"free":3489.06},{"epoch":26128794,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":518.61,"free":3489.07},{"epoch":26128795,"idl":99.62,"recv":0,"send":0,"writ":0.64,"used":518.55,"free":3489.15},{"epoch":26128796,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":517.61,"free":3490.09},{"epoch":26128797,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":517.66,"free":3490.03},{"epoch":26128798,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":517.75,"free":3489.93},{"epoch":26128799,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":517.73,"free":3489.95},{"epoch":26128800,"idl":99.49,"recv":0,"send":0,"writ":0.55,"used":517.59,"free":3490.11},{"epoch":26128801,"idl":99.81,"recv":0,"send":0,"writ":0.37,"used":517.71,"free":3489.98},{"epoch":26128802,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":517.7,"free":3489.98},{"epoch":26128803,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":517.68,"free":3490.01},{"epoch":26128804,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":517.65,"free":3490.03},{"epoch":26128805,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":517.71,"free":3489.99},{"epoch":26128806,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":518.17,"free":3489.53},{"epoch":26128807,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":517.61,"free":3490.08},{"epoch":26128808,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":517.59,"free":3490.09},{"epoch":26128809,"idl":99.74,"recv":0,"send":0,"writ":0.27,"used":517.63,"free":3490.03},{"epoch":26128810,"idl":99.76,"recv":0,"send":0,"writ":0.37,"used":517.76,"free":3489.91},{"epoch":26128811,"idl":94.64,"recv":0.31,"send":0.01,"writ":260.4,"used":530.02,"free":3478.25},{"epoch":26128812,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":520.55,"free":3486.95},{"epoch":26128813,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":520.53,"free":3486.96},{"epoch":26128814,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":520.51,"free":3486.99},{"epoch":26128815,"idl":99.72,"recv":0,"send":0,"writ":0.37,"used":519.32,"free":3488.2},{"epoch":26128816,"idl":99.71,"recv":0,"send":0,"writ":0.63,"used":518.43,"free":3489.12},{"epoch":26128817,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":517.07,"free":3490.49},{"epoch":26128818,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":517.04,"free":3490.51},{"epoch":26128819,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":517.11,"free":3490.44},{"epoch":26128820,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":517.46,"free":3490.11},{"epoch":26128821,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":518.07,"free":3489.5},{"epoch":26128822,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":517.92,"free":3489.64},{"epoch":26128823,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":517.91,"free":3489.65},{"epoch":26128824,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":517.88,"free":3489.68},{"epoch":26128825,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":517.9,"free":3489.67},{"epoch":26128826,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":518.13,"free":3489.44},{"epoch":26128827,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":517.61,"free":3489.95},{"epoch":26128828,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":517.59,"free":3489.97},{"epoch":26128829,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":517.57,"free":3489.98},{"epoch":26128830,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":517.81,"free":3489.76},{"epoch":26128831,"idl":99.73,"recv":0,"send":0.01,"writ":0.52,"used":518.58,"free":3488.98},{"epoch":26128832,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":518.18,"free":3489.39},{"epoch":26128833,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":518.16,"free":3489.41},{"epoch":26128834,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":518.14,"free":3489.43},{"epoch":26128835,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":516.69,"free":3490.9},{"epoch":26128836,"idl":99.73,"recv":0,"send":0,"writ":0.36,"used":517,"free":3490.58},{"epoch":26128837,"idl":99.87,"recv":0,"send":0,"writ":0.44,"used":517.12,"free":3490.46},{"epoch":26128838,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":517.1,"free":3490.47},{"epoch":26128839,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":518.05,"free":3489.5},{"epoch":26128840,"idl":99.77,"recv":0,"send":0,"writ":0.37,"used":516.94,"free":3490.63},{"epoch":26128841,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":517.17,"free":3490.39},{"epoch":26128842,"idl":99.86,"recv":0,"send":0,"writ":0.43,"used":517.53,"free":3490.03},{"epoch":26128843,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":517.59,"free":3489.96},{"epoch":26128844,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":517.67,"free":3489.91},{"epoch":26128845,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":517.91,"free":3489.69},{"epoch":26128846,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":517.89,"free":3489.7},{"epoch":26128847,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":517.79,"free":3489.79},{"epoch":26128848,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":517.35,"free":3490.24},{"epoch":26128849,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":517.33,"free":3490.25},{"epoch":26128850,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":518.05,"free":3489.54},{"epoch":26128851,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":518.04,"free":3489.55},{"epoch":26128852,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":517.52,"free":3490.07},{"epoch":26128853,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":516.77,"free":3490.81},{"epoch":26128854,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":516.83,"free":3490.75},{"epoch":26128855,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":516.94,"free":3490.66},{"epoch":26128856,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":516.92,"free":3490.68},{"epoch":26128857,"idl":99.76,"recv":0,"send":0,"writ":0.52,"used":518.34,"free":3489.24},{"epoch":26128858,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":518.35,"free":3489.23},{"epoch":26128859,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":518.34,"free":3489.26},{"epoch":26128860,"idl":99.74,"recv":0,"send":0,"writ":0.37,"used":518.1,"free":3489.51},{"epoch":26128861,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":518.07,"free":3489.55},{"epoch":26128862,"idl":99.71,"recv":0,"send":0,"writ":0.61,"used":518.52,"free":3489.08},{"epoch":26128863,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":518.03,"free":3489.58},{"epoch":26128864,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":518,"free":3489.6},{"epoch":26128865,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":518.29,"free":3489.33},{"epoch":26128866,"idl":98.57,"recv":0,"send":0,"writ":0.15,"used":518.42,"free":3489.2},{"epoch":26128867,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":518.62,"free":3488.99},{"epoch":26128868,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":517.64,"free":3489.97},{"epoch":26128869,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":518.09,"free":3489.49},{"epoch":26128870,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":518.1,"free":3489.49},{"epoch":26128871,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":518.07,"free":3489.52},{"epoch":26128872,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":518.04,"free":3489.54},{"epoch":26128873,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":518.62,"free":3488.96},{"epoch":26128874,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.24,"free":3489.33},{"epoch":26128875,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":518.24,"free":3489.35},{"epoch":26128876,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":518.34,"free":3489.25},{"epoch":26128877,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":518.14,"free":3489.44},{"epoch":26128878,"idl":99.76,"recv":0,"send":0,"writ":0.64,"used":518.66,"free":3488.91},{"epoch":26128879,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":518.32,"free":3489.24},{"epoch":26128880,"idl":99.73,"recv":0,"send":0.01,"writ":0.38,"used":517.6,"free":3489.98},{"epoch":26128881,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":517.26,"free":3490.31},{"epoch":26128882,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":517.23,"free":3490.34},{"epoch":26128883,"idl":99.75,"recv":0,"send":0,"writ":0.62,"used":518.32,"free":3489.25},{"epoch":26128884,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":518.15,"free":3489.41},{"epoch":26128885,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":517.18,"free":3490.39},{"epoch":26128886,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":517.13,"free":3490.44},{"epoch":26128887,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":517.11,"free":3490.46},{"epoch":26128888,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":517.93,"free":3489.64},{"epoch":26128889,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":517.8,"free":3489.76},{"epoch":26128890,"idl":99.78,"recv":0,"send":0,"writ":0.37,"used":518.04,"free":3489.54},{"epoch":26128891,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":518.02,"free":3489.55},{"epoch":26128892,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":518,"free":3489.57},{"epoch":26128893,"idl":99.68,"recv":0,"send":0,"writ":0.5,"used":518.27,"free":3489.3},{"epoch":26128894,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":517.9,"free":3489.66},{"epoch":26128895,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":518.39,"free":3489.19},{"epoch":26128896,"idl":99.9,"recv":0,"send":0.01,"writ":0.18,"used":518.2,"free":3489.37},{"epoch":26128897,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":518.08,"free":3489.49},{"epoch":26128898,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":518.66,"free":3488.91},{"epoch":26128899,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":518.04,"free":3489.5},{"epoch":26128900,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":518.27,"free":3489.28},{"epoch":26128901,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":518.24,"free":3489.31},{"epoch":26128902,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":518.23,"free":3489.32},{"epoch":26128903,"idl":99.78,"recv":0,"send":0.01,"writ":0.45,"used":518.68,"free":3488.87},{"epoch":26128904,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":518.33,"free":3489.21},{"epoch":26128905,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":518.33,"free":3489.23},{"epoch":26128906,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":518.29,"free":3489.26},{"epoch":26128907,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":518.27,"free":3489.28},{"epoch":26128908,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":518.25,"free":3489.3},{"epoch":26128909,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":518.35,"free":3489.19},{"epoch":26128910,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":517.38,"free":3490.18},{"epoch":26128911,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":517.41,"free":3490.14},{"epoch":26128912,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":517.38,"free":3490.17},{"epoch":26128913,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":517.35,"free":3490.2},{"epoch":26128914,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":518.65,"free":3488.89},{"epoch":26128915,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":518.31,"free":3489.24},{"epoch":26128916,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":518.29,"free":3489.26},{"epoch":26128917,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":518.27,"free":3489.28},{"epoch":26128918,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":518.25,"free":3489.29},{"epoch":26128919,"idl":99.75,"recv":0,"send":0,"writ":0.6,"used":518.59,"free":3488.95},{"epoch":26128920,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":518,"free":3489.56},{"epoch":26128921,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":518.05,"free":3489.5},{"epoch":26128922,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":518.14,"free":3489.41},{"epoch":26128923,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":518.11,"free":3489.43},{"epoch":26128924,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":518.6,"free":3488.94},{"epoch":26128925,"idl":99.75,"recv":0,"send":0,"writ":0.37,"used":517.85,"free":3489.71},{"epoch":26128926,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":517.82,"free":3489.74},{"epoch":26128927,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":517.79,"free":3489.76},{"epoch":26128928,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":517.77,"free":3489.77},{"epoch":26128929,"idl":99.56,"recv":0,"send":0,"writ":0.71,"used":519.07,"free":3488.45},{"epoch":26128930,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":518.47,"free":3489.06},{"epoch":26128931,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":518.54,"free":3488.99},{"epoch":26128932,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.61,"free":3488.91},{"epoch":26128933,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.6,"free":3488.93},{"epoch":26128934,"idl":99.76,"recv":0,"send":0,"writ":0.51,"used":519.05,"free":3488.49},{"epoch":26128935,"idl":99.81,"recv":0,"send":0,"writ":0.45,"used":518.59,"free":3488.96},{"epoch":26128936,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":518.55,"free":3489},{"epoch":26128937,"idl":99.89,"recv":0,"send":0,"writ":0.22,"used":518.55,"free":3489},{"epoch":26128938,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":518.52,"free":3489.03},{"epoch":26128939,"idl":99.73,"recv":0,"send":0,"writ":0.51,"used":518.82,"free":3488.73},{"epoch":26128940,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":518.58,"free":3488.99},{"epoch":26128941,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.47,"free":3489.09},{"epoch":26128942,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":518.45,"free":3489.11},{"epoch":26128943,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":518.58,"free":3488.98},{"epoch":26128944,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":518.97,"free":3488.58},{"epoch":26128945,"idl":99.84,"recv":0,"send":0,"writ":0.37,"used":518.35,"free":3489.21},{"epoch":26128946,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":518.33,"free":3489.24},{"epoch":26128947,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":518.3,"free":3489.26},{"epoch":26128948,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":518.28,"free":3489.27},{"epoch":26128949,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":518.26,"free":3489.29},{"epoch":26128950,"idl":99.5,"recv":0,"send":0,"writ":0.79,"used":517.9,"free":3489.67},{"epoch":26128951,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.27,"free":3491.29},{"epoch":26128952,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.25,"free":3491.31},{"epoch":26128953,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":516.23,"free":3491.32},{"epoch":26128954,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":516.31,"free":3491.24},{"epoch":26128955,"idl":99.69,"recv":0,"send":0,"writ":0.77,"used":518.48,"free":3489.09},{"epoch":26128956,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":517.58,"free":3489.99},{"epoch":26128957,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":517.38,"free":3490.18},{"epoch":26128958,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":517.35,"free":3490.21},{"epoch":26128959,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":517.82,"free":3489.71},{"epoch":26128960,"idl":99.72,"recv":0,"send":0,"writ":0.78,"used":518.27,"free":3489.28},{"epoch":26128961,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":517.81,"free":3489.74},{"epoch":26128962,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":517.78,"free":3489.76},{"epoch":26128963,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":517.77,"free":3489.77},{"epoch":26128964,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":517.74,"free":3489.79},{"epoch":26128965,"idl":99.68,"recv":0,"send":0,"writ":0.78,"used":517.9,"free":3489.65},{"epoch":26128966,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":517.05,"free":3490.5},{"epoch":26128967,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":517.16,"free":3490.38},{"epoch":26128968,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":517.15,"free":3490.39},{"epoch":26128969,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":517.11,"free":3490.42},{"epoch":26128970,"idl":99.65,"recv":0,"send":0,"writ":0.73,"used":517.57,"free":3489.98},{"epoch":26128971,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":518.09,"free":3489.46},{"epoch":26128972,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":518.06,"free":3489.48},{"epoch":26128973,"idl":99.11,"recv":0,"send":0,"writ":0.14,"used":518.05,"free":3489.49},{"epoch":26128974,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":518.02,"free":3489.52},{"epoch":26128975,"idl":99.71,"recv":0,"send":0,"writ":0.79,"used":517.53,"free":3490.02},{"epoch":26128976,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":517.75,"free":3489.8},{"epoch":26128977,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":517.78,"free":3489.76},{"epoch":26128978,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":517.9,"free":3489.64},{"epoch":26128979,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":517.88,"free":3489.66},{"epoch":26128980,"idl":99.54,"recv":0,"send":0,"writ":0.71,"used":517.6,"free":3489.95},{"epoch":26128981,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":517.85,"free":3489.69},{"epoch":26128982,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":517.83,"free":3489.71},{"epoch":26128983,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":517.81,"free":3489.72},{"epoch":26128984,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":517.79,"free":3489.74},{"epoch":26128985,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":516.84,"free":3490.7},{"epoch":26128986,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":518.07,"free":3489.47},{"epoch":26128987,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":517.75,"free":3489.78},{"epoch":26128988,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":517.73,"free":3489.8},{"epoch":26128989,"idl":99.68,"recv":0,"send":0,"writ":0.28,"used":517.96,"free":3489.55},{"epoch":26128990,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":518.34,"free":3489.19},{"epoch":26128991,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":518.35,"free":3489.17},{"epoch":26128992,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.85,"free":3489.66},{"epoch":26128993,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":517.82,"free":3489.69},{"epoch":26128994,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":517.81,"free":3489.74},{"epoch":26128995,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":518.29,"free":3489.28},{"epoch":26128996,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":518.49,"free":3489.08},{"epoch":26128997,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":517.77,"free":3489.8},{"epoch":26128998,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":517.73,"free":3489.83},{"epoch":26128999,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.72,"free":3489.84},{"epoch":26129000,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":517.81,"free":3489.77},{"epoch":26129001,"idl":99.75,"recv":0,"send":0,"writ":0.6,"used":518.35,"free":3489.23},{"epoch":26129002,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":518.12,"free":3489.48},{"epoch":26129003,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":518.09,"free":3489.5},{"epoch":26129004,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":518.07,"free":3489.52},{"epoch":26129005,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":517.82,"free":3489.78},{"epoch":26129006,"idl":99.79,"recv":0,"send":0,"writ":0.48,"used":518.25,"free":3489.35},{"epoch":26129007,"idl":99.89,"recv":0,"send":0,"writ":0.26,"used":518.03,"free":3489.56},{"epoch":26129008,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":518,"free":3489.58},{"epoch":26129009,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.98,"free":3489.6},{"epoch":26129010,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":517.1,"free":3490.49},{"epoch":26129011,"idl":99.72,"recv":0,"send":0,"writ":0.43,"used":517.83,"free":3489.77},{"epoch":26129012,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":517.84,"free":3489.75},{"epoch":26129013,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":517.86,"free":3489.72},{"epoch":26129014,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":517.84,"free":3489.74},{"epoch":26129015,"idl":99.77,"recv":0,"send":0,"writ":0.36,"used":517.85,"free":3489.75},{"epoch":26129016,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":517.53,"free":3490.06},{"epoch":26129017,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":518.19,"free":3489.39},{"epoch":26129018,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":517.55,"free":3490.03},{"epoch":26129019,"idl":99.74,"recv":0,"send":0,"writ":0.27,"used":518.23,"free":3489.33},{"epoch":26129020,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":517.79,"free":3489.78},{"epoch":26129021,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":517.75,"free":3489.82},{"epoch":26129022,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":518.46,"free":3489.11},{"epoch":26129023,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":518.2,"free":3489.37},{"epoch":26129024,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":518.28,"free":3489.3},{"epoch":26129025,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":517.65,"free":3489.94},{"epoch":26129026,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":517.62,"free":3489.97},{"epoch":26129027,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":517.95,"free":3489.64},{"epoch":26129028,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":517.58,"free":3490},{"epoch":26129029,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":517.56,"free":3490.02},{"epoch":26129030,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":518.29,"free":3489.31},{"epoch":26129031,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":518.27,"free":3489.32},{"epoch":26129032,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":518.02,"free":3489.56},{"epoch":26129033,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":517.25,"free":3490.33},{"epoch":26129034,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":517.24,"free":3490.34},{"epoch":26129035,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":517.96,"free":3489.64},{"epoch":26129036,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":518.04,"free":3489.55},{"epoch":26129037,"idl":99.75,"recv":0,"send":0,"writ":0.52,"used":518.61,"free":3488.98},{"epoch":26129038,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":518.37,"free":3489.21},{"epoch":26129039,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":518.35,"free":3489.23},{"epoch":26129040,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":518.66,"free":3488.94},{"epoch":26129041,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":518.58,"free":3489.02},{"epoch":26129042,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":518.85,"free":3488.74},{"epoch":26129043,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":518.29,"free":3489.29},{"epoch":26129044,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":518.27,"free":3489.31},{"epoch":26129045,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":518.51,"free":3489.08},{"epoch":26129046,"idl":99.89,"recv":0.01,"send":0.02,"writ":0.16,"used":518.58,"free":3489.01},{"epoch":26129047,"idl":99.63,"recv":0,"send":0,"writ":0.41,"used":519.08,"free":3488.5},{"epoch":26129048,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":518.31,"free":3489.26},{"epoch":26129049,"idl":99.64,"recv":0,"send":0,"writ":0.27,"used":518.28,"free":3489.27},{"epoch":26129050,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":517.34,"free":3490.24},{"epoch":26129051,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":517.28,"free":3490.29},{"epoch":26129052,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":517.26,"free":3490.31},{"epoch":26129053,"idl":99.66,"recv":0,"send":0,"writ":0.57,"used":517.83,"free":3489.73},{"epoch":26129054,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":517.49,"free":3490.06},{"epoch":26129055,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":517.65,"free":3489.92},{"epoch":26129056,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":517.62,"free":3489.95},{"epoch":26129057,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":517.61,"free":3489.95},{"epoch":26129058,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":518.3,"free":3489.26},{"epoch":26129059,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":518.05,"free":3489.5},{"epoch":26129060,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":518.05,"free":3489.52},{"epoch":26129061,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":518.04,"free":3489.53},{"epoch":26129062,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":518,"free":3489.56},{"epoch":26129063,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":518.7,"free":3488.86},{"epoch":26129064,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":518.46,"free":3489.09},{"epoch":26129065,"idl":99.74,"recv":0,"send":0,"writ":0.37,"used":518.63,"free":3488.94},{"epoch":26129066,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":518.62,"free":3488.95},{"epoch":26129067,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":518.6,"free":3488.97},{"epoch":26129068,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":518.94,"free":3488.62},{"epoch":26129069,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":518.55,"free":3489},{"epoch":26129070,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":517.36,"free":3490.2},{"epoch":26129071,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":517.3,"free":3490.26},{"epoch":26129072,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":517.27,"free":3490.28},{"epoch":26129073,"idl":99.75,"recv":0,"send":0,"writ":0.62,"used":518.12,"free":3489.43},{"epoch":26129074,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":518.46,"free":3489.09},{"epoch":26129075,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":518.46,"free":3489.1},{"epoch":26129076,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":518.23,"free":3489.33},{"epoch":26129077,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":518.11,"free":3489.44},{"epoch":26129078,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":519.05,"free":3488.5},{"epoch":26129079,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":518.82,"free":3488.71},{"epoch":26129080,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":517.84,"free":3489.71},{"epoch":26129081,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":517.68,"free":3489.86},{"epoch":26129082,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":517.53,"free":3490},{"epoch":26129083,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":518.17,"free":3489.36},{"epoch":26129084,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":517.5,"free":3490.02},{"epoch":26129085,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":517.97,"free":3489.56},{"epoch":26129086,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":517.96,"free":3489.57},{"epoch":26129087,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":517.93,"free":3489.59},{"epoch":26129088,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":518,"free":3489.52},{"epoch":26129089,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":518.33,"free":3489.19},{"epoch":26129090,"idl":99.67,"recv":0,"send":0,"writ":0.31,"used":517.59,"free":3489.94},{"epoch":26129091,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":517.56,"free":3489.97},{"epoch":26129092,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.54,"free":3489.98},{"epoch":26129093,"idl":99.9,"recv":0,"send":0.01,"writ":0.16,"used":517.51,"free":3490.01},{"epoch":26129094,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":518.56,"free":3488.95},{"epoch":26129095,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":517.61,"free":3489.92},{"epoch":26129096,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":517.47,"free":3490.07},{"epoch":26129097,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":517.46,"free":3490.09},{"epoch":26129098,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":517.43,"free":3490.11},{"epoch":26129099,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":517.62,"free":3489.92},{"epoch":26129100,"idl":99.16,"recv":0,"send":0,"writ":10.69,"used":517.83,"free":3489.92},{"epoch":26129101,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":517.87,"free":3489.91},{"epoch":26129102,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":517.84,"free":3489.94},{"epoch":26129103,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":517.83,"free":3489.95},{"epoch":26129104,"idl":99.76,"recv":0,"send":0,"writ":0.42,"used":518.58,"free":3489.19},{"epoch":26129105,"idl":99.77,"recv":0,"send":0,"writ":0.45,"used":517.3,"free":3490.5},{"epoch":26129106,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.55,"free":3491.25},{"epoch":26129107,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.53,"free":3491.26},{"epoch":26129108,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":516.51,"free":3491.29},{"epoch":26129109,"idl":99.61,"recv":0,"send":0,"writ":0.65,"used":518.3,"free":3489.49},{"epoch":26129110,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":517.96,"free":3489.84},{"epoch":26129111,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":518.08,"free":3489.71},{"epoch":26129112,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.14,"free":3489.65},{"epoch":26129113,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.11,"free":3489.68},{"epoch":26129114,"idl":99.74,"recv":0,"send":0,"writ":0.61,"used":518.85,"free":3488.93},{"epoch":26129115,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":517.13,"free":3490.67},{"epoch":26129116,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.09,"free":3490.71},{"epoch":26129117,"idl":99.91,"recv":0,"send":0,"writ":0.23,"used":517.06,"free":3490.73},{"epoch":26129118,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":517.03,"free":3490.75},{"epoch":26129119,"idl":99.74,"recv":0,"send":0,"writ":0.43,"used":517.77,"free":3490},{"epoch":26129120,"idl":99.76,"recv":0,"send":0,"writ":0.48,"used":518.02,"free":3489.78},{"epoch":26129121,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":517.99,"free":3489.81},{"epoch":26129122,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":518.04,"free":3489.75},{"epoch":26129123,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":518.13,"free":3489.65},{"epoch":26129124,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":518.11,"free":3489.68},{"epoch":26129125,"idl":99.61,"recv":0,"send":0,"writ":0.75,"used":518.47,"free":3489.32},{"epoch":26129126,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.08,"free":3489.71},{"epoch":26129127,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":518.08,"free":3489.71},{"epoch":26129128,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":518.04,"free":3489.74},{"epoch":26129129,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":518.03,"free":3489.75},{"epoch":26129130,"idl":99.63,"recv":0,"send":0,"writ":0.77,"used":517.95,"free":3489.85},{"epoch":26129131,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":517.76,"free":3490.03},{"epoch":26129132,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.73,"free":3490.05},{"epoch":26129133,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":517.77,"free":3490.02},{"epoch":26129134,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":517.88,"free":3489.9},{"epoch":26129135,"idl":99.66,"recv":0,"send":0,"writ":0.71,"used":518.35,"free":3489.44},{"epoch":26129136,"idl":99.85,"recv":0,"send":0,"writ":0.25,"used":517.83,"free":3489.95},{"epoch":26129137,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":517.58,"free":3490.21},{"epoch":26129138,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":517.57,"free":3490.21},{"epoch":26129139,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":518.29,"free":3489.47},{"epoch":26129140,"idl":99.59,"recv":0,"send":0,"writ":0.79,"used":518.37,"free":3489.4},{"epoch":26129141,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":517.78,"free":3489.99},{"epoch":26129142,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.75,"free":3490.01},{"epoch":26129143,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":517.73,"free":3490.03},{"epoch":26129144,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":517.71,"free":3490.04},{"epoch":26129145,"idl":99.66,"recv":0,"send":0,"writ":0.78,"used":518.41,"free":3489.36},{"epoch":26129146,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":518.12,"free":3489.65},{"epoch":26129147,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":518.1,"free":3489.66},{"epoch":26129148,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":518.08,"free":3489.67},{"epoch":26129149,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":518.06,"free":3489.69},{"epoch":26129150,"idl":99.51,"recv":0,"send":0,"writ":0.61,"used":517.66,"free":3490.1},{"epoch":26129151,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":516.81,"free":3490.95},{"epoch":26129152,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.79,"free":3490.97},{"epoch":26129153,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.77,"free":3490.98},{"epoch":26129154,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.74,"free":3491.01},{"epoch":26129155,"idl":99.65,"recv":0,"send":0,"writ":0.5,"used":518.56,"free":3489.21},{"epoch":26129156,"idl":99.93,"recv":0,"send":0,"writ":0.38,"used":518.22,"free":3489.54},{"epoch":26129157,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":518.32,"free":3489.43},{"epoch":26129158,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":518.34,"free":3489.41},{"epoch":26129159,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":518.33,"free":3489.42},{"epoch":26129160,"idl":99.58,"recv":0,"send":0,"writ":0.59,"used":518.68,"free":3489.08},{"epoch":26129161,"idl":99.87,"recv":0,"send":0,"writ":0.39,"used":518.54,"free":3489.21},{"epoch":26129162,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":518.51,"free":3489.23},{"epoch":26129163,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":518.49,"free":3489.25},{"epoch":26129164,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":518.47,"free":3489.26},{"epoch":26129165,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":517.76,"free":3489.99},{"epoch":26129166,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":518.28,"free":3489.47},{"epoch":26129167,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":517.94,"free":3489.8},{"epoch":26129168,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":517.98,"free":3489.76},{"epoch":26129169,"idl":99.52,"recv":0,"send":0,"writ":0.29,"used":517.61,"free":3490.12},{"epoch":26129170,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":518.33,"free":3489.42},{"epoch":26129171,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":518.85,"free":3488.9},{"epoch":26129172,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":518.05,"free":3489.7},{"epoch":26129173,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":518.02,"free":3489.71},{"epoch":26129174,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":518,"free":3489.75},{"epoch":26129175,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":516.55,"free":3491.22},{"epoch":26129176,"idl":94.96,"recv":0.27,"send":0.01,"writ":78.88,"used":531.32,"free":3476.06},{"epoch":26129177,"idl":99.58,"recv":0,"send":0,"writ":181.42,"used":520.4,"free":3487.29},{"epoch":26129178,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":520.38,"free":3487.3},{"epoch":26129179,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":520.36,"free":3487.32},{"epoch":26129180,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":520.12,"free":3487.58},{"epoch":26129181,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":519.86,"free":3487.85},{"epoch":26129182,"idl":99.86,"recv":0,"send":0,"writ":0.23,"used":518.35,"free":3489.37},{"epoch":26129183,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":518.33,"free":3489.39},{"epoch":26129184,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":518.31,"free":3489.4},{"epoch":26129185,"idl":99.67,"recv":0,"send":0,"writ":0.28,"used":517.59,"free":3490.14},{"epoch":26129186,"idl":99.73,"recv":0,"send":0,"writ":0.53,"used":518.25,"free":3489.48},{"epoch":26129187,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":518.51,"free":3489.21},{"epoch":26129188,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":518.49,"free":3489.24},{"epoch":26129189,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":518.48,"free":3489.24},{"epoch":26129190,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":517.04,"free":3490.7},{"epoch":26129191,"idl":99.59,"recv":0,"send":0,"writ":0.46,"used":517.6,"free":3490.15},{"epoch":26129192,"idl":99.74,"recv":0,"send":0,"writ":0.23,"used":518.57,"free":3489.18},{"epoch":26129193,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":518.59,"free":3489.16},{"epoch":26129194,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.57,"free":3489.17},{"epoch":26129195,"idl":99.78,"recv":0,"send":0,"writ":0.25,"used":517.62,"free":3490.14},{"epoch":26129196,"idl":99.57,"recv":0,"send":0,"writ":0.18,"used":517.79,"free":3489.96},{"epoch":26129197,"idl":99.76,"recv":0,"send":0,"writ":0.62,"used":518.39,"free":3489.36},{"epoch":26129198,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":518.02,"free":3489.73},{"epoch":26129199,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":518.47,"free":3489.24},{"epoch":26129200,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":517.75,"free":3489.99},{"epoch":26129201,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":517.73,"free":3490.01},{"epoch":26129202,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":518.23,"free":3489.5},{"epoch":26129203,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":517.76,"free":3489.96},{"epoch":26129204,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":517.85,"free":3489.89},{"epoch":26129205,"idl":99.69,"recv":0,"send":0,"writ":0.27,"used":518.1,"free":3489.66},{"epoch":26129206,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":518.08,"free":3489.67},{"epoch":26129207,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":518.59,"free":3489.16},{"epoch":26129208,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":518.29,"free":3489.45},{"epoch":26129209,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":518.27,"free":3489.47},{"epoch":26129210,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":517.55,"free":3490.21},{"epoch":26129211,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":517.51,"free":3490.24},{"epoch":26129212,"idl":99.72,"recv":0,"send":0,"writ":0.52,"used":518.09,"free":3489.65},{"epoch":26129213,"idl":99.81,"recv":0,"send":0,"writ":0.24,"used":517.96,"free":3489.78},{"epoch":26129214,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":517.94,"free":3489.79},{"epoch":26129215,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":517.46,"free":3490.29},{"epoch":26129216,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":517.57,"free":3490.17},{"epoch":26129217,"idl":99.66,"recv":0,"send":0,"writ":0.53,"used":518.3,"free":3489.44},{"epoch":26129218,"idl":99.75,"recv":0,"send":0,"writ":0.24,"used":518.29,"free":3489.44},{"epoch":26129219,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":518.29,"free":3489.44},{"epoch":26129220,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":518.55,"free":3489.19},{"epoch":26129221,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":518.51,"free":3489.23},{"epoch":26129222,"idl":99.63,"recv":0,"send":0,"writ":0.44,"used":518.84,"free":3488.9},{"epoch":26129223,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":518.47,"free":3489.26},{"epoch":26129224,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":518.44,"free":3489.29},{"epoch":26129225,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":518.45,"free":3489.29},{"epoch":26129226,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":518.42,"free":3489.32},{"epoch":26129227,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":519.08,"free":3488.65},{"epoch":26129228,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":518.6,"free":3489.13},{"epoch":26129229,"idl":99.65,"recv":0,"send":0,"writ":0.34,"used":518.82,"free":3488.88},{"epoch":26129230,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":518.83,"free":3488.89},{"epoch":26129231,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":518.8,"free":3488.91},{"epoch":26129232,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":518.78,"free":3488.93},{"epoch":26129233,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":519.24,"free":3488.47},{"epoch":26129234,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":518.74,"free":3488.96},{"epoch":26129235,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":518.75,"free":3488.97},{"epoch":26129236,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":518.72,"free":3488.99},{"epoch":26129237,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":518.46,"free":3489.25},{"epoch":26129238,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":518.78,"free":3488.92},{"epoch":26129239,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":518.5,"free":3489.2},{"epoch":26129240,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":519.09,"free":3488.63},{"epoch":26129241,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":519.05,"free":3488.66},{"epoch":26129242,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":518.81,"free":3488.9},{"epoch":26129243,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":519.14,"free":3488.56},{"epoch":26129244,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":518.76,"free":3488.94},{"epoch":26129245,"idl":99.67,"recv":0,"send":0,"writ":0.27,"used":518.76,"free":3488.96},{"epoch":26129246,"idl":99.74,"recv":0,"send":0,"writ":0.18,"used":518.75,"free":3488.97},{"epoch":26129247,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":518.72,"free":3488.99},{"epoch":26129248,"idl":99.6,"recv":0,"send":0,"writ":0.46,"used":518.95,"free":3488.75},{"epoch":26129249,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":518.44,"free":3489.26},{"epoch":26129250,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":518.73,"free":3488.99},{"epoch":26129251,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":518.8,"free":3488.91},{"epoch":26129252,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":518.82,"free":3488.89},{"epoch":26129253,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":519.23,"free":3488.47},{"epoch":26129254,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":519.03,"free":3488.67},{"epoch":26129255,"idl":99.71,"recv":0,"send":0.01,"writ":0.3,"used":519.02,"free":3488.7},{"epoch":26129256,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":518.86,"free":3488.85},{"epoch":26129257,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":518.72,"free":3488.99},{"epoch":26129258,"idl":99.59,"recv":0,"send":0,"writ":0.45,"used":519.38,"free":3488.32},{"epoch":26129259,"idl":99.62,"recv":0,"send":0,"writ":0.46,"used":518.44,"free":3489.24},{"epoch":26129260,"idl":99.71,"recv":0,"send":0,"writ":0.28,"used":517.28,"free":3490.41},{"epoch":26129261,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":516.91,"free":3490.79},{"epoch":26129262,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.85,"free":3490.84},{"epoch":26129263,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":516.83,"free":3490.85},{"epoch":26129264,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":518.59,"free":3489.11},{"epoch":26129265,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":517.79,"free":3489.92},{"epoch":26129266,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":517.76,"free":3489.95},{"epoch":26129267,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":517.74,"free":3489.96},{"epoch":26129268,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":517.72,"free":3489.98},{"epoch":26129269,"idl":99.64,"recv":0,"send":0,"writ":0.55,"used":518.45,"free":3489.24},{"epoch":26129270,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":518.2,"free":3489.51},{"epoch":26129271,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":518.19,"free":3489.52},{"epoch":26129272,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":518.2,"free":3489.5},{"epoch":26129273,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":518.32,"free":3489.37},{"epoch":26129274,"idl":99.58,"recv":0,"send":0,"writ":0.57,"used":518.47,"free":3489.22},{"epoch":26129275,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":518.31,"free":3489.4},{"epoch":26129276,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":518.28,"free":3489.42},{"epoch":26129277,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":518.27,"free":3489.44},{"epoch":26129278,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":518.24,"free":3489.45},{"epoch":26129279,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":519.12,"free":3488.57},{"epoch":26129280,"idl":99.67,"recv":0,"send":0,"writ":0.27,"used":518.23,"free":3489.48},{"epoch":26129281,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":518.21,"free":3489.5},{"epoch":26129282,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":518.19,"free":3489.52},{"epoch":26129283,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":518.16,"free":3489.54},{"epoch":26129284,"idl":99.65,"recv":0,"send":0,"writ":0.43,"used":518.92,"free":3488.78},{"epoch":26129285,"idl":94.39,"recv":101.02,"send":0.14,"writ":97.65,"used":526.56,"free":3442.31},{"epoch":26129286,"idl":99.72,"recv":0,"send":0,"writ":77.79,"used":520.01,"free":3388.04},{"epoch":26129287,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":520.06,"free":3387.97},{"epoch":26129288,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":520.15,"free":3387.88},{"epoch":26129289,"idl":97.28,"recv":0,"send":0,"writ":0.71,"used":520.81,"free":3387.2},{"epoch":26129290,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":519.8,"free":3388.26},{"epoch":26129291,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":518.44,"free":3389.65},{"epoch":26129292,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":518.44,"free":3389.65},{"epoch":26129293,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":518.43,"free":3389.65},{"epoch":26129294,"idl":99.64,"recv":0,"send":0,"writ":0.43,"used":518.83,"free":3389.24},{"epoch":26129295,"idl":99.67,"recv":0,"send":0,"writ":0.45,"used":518.66,"free":3389.47},{"epoch":26129296,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":518.63,"free":3389.53},{"epoch":26129297,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":518.68,"free":3389.47},{"epoch":26129298,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":518.77,"free":3389.38},{"epoch":26129299,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":518.76,"free":3389.39},{"epoch":26129300,"idl":99.4,"recv":0,"send":0,"writ":0.66,"used":517.7,"free":3390.46},{"epoch":26129301,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":517.26,"free":3390.9},{"epoch":26129302,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":517.23,"free":3390.92},{"epoch":26129303,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":517.2,"free":3390.95},{"epoch":26129304,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":517.2,"free":3390.95},{"epoch":26129305,"idl":99.64,"recv":0,"send":0,"writ":0.7,"used":518.42,"free":3389.74},{"epoch":26129306,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":518.17,"free":3389.99},{"epoch":26129307,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":518.15,"free":3390},{"epoch":26129308,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":518.13,"free":3390.02},{"epoch":26129309,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":518.11,"free":3390.03},{"epoch":26129310,"idl":99.53,"recv":0,"send":0,"writ":0.68,"used":518.63,"free":3389.53},{"epoch":26129311,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":518.53,"free":3389.63},{"epoch":26129312,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":518.49,"free":3389.66},{"epoch":26129313,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":518.47,"free":3389.68},{"epoch":26129314,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":518.46,"free":3389.68},{"epoch":26129315,"idl":99.53,"recv":0,"send":0,"writ":0.75,"used":518.81,"free":3389.35},{"epoch":26129316,"idl":99.76,"recv":0,"send":0,"writ":0.18,"used":518.33,"free":3389.82},{"epoch":26129317,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":518.18,"free":3389.97},{"epoch":26129318,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":518.16,"free":3389.99},{"epoch":26129319,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":518.39,"free":3389.73},{"epoch":26129320,"idl":99.61,"recv":0,"send":0,"writ":0.72,"used":519.26,"free":3388.88},{"epoch":26129321,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":518.61,"free":3389.53},{"epoch":26129322,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":518.73,"free":3389.41},{"epoch":26129323,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":518.75,"free":3389.38},{"epoch":26129324,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":518.73,"free":3389.39},{"epoch":26129325,"idl":99.54,"recv":0,"send":0,"writ":0.55,"used":518.84,"free":3389.3},{"epoch":26129326,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":518.71,"free":3389.43},{"epoch":26129327,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":518.68,"free":3389.45},{"epoch":26129328,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":518.68,"free":3389.45},{"epoch":26129329,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":518.65,"free":3389.48},{"epoch":26129330,"idl":99.53,"recv":0,"send":0,"writ":0.48,"used":518.3,"free":3389.84},{"epoch":26129331,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":518.62,"free":3389.52},{"epoch":26129332,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":518.61,"free":3389.53},{"epoch":26129333,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":518.66,"free":3389.47},{"epoch":26129334,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":518.74,"free":3389.38},{"epoch":26129335,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":518.75,"free":3389.39},{"epoch":26129336,"idl":99.63,"recv":0,"send":0,"writ":0.59,"used":518.63,"free":3389.51},{"epoch":26129337,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":518.22,"free":3389.91},{"epoch":26129338,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":518.19,"free":3389.94},{"epoch":26129339,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":518.17,"free":3389.95},{"epoch":26129340,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":518.65,"free":3389.49},{"epoch":26129341,"idl":99.56,"recv":0,"send":0,"writ":0.54,"used":517.86,"free":3390.27},{"epoch":26129342,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":517.38,"free":3390.75},{"epoch":26129343,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":517.36,"free":3390.77},{"epoch":26129344,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":517.39,"free":3390.73},{"epoch":26129345,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":518.25,"free":3389.89},{"epoch":26129346,"idl":99.69,"recv":0,"send":0,"writ":0.61,"used":518.98,"free":3389.15},{"epoch":26129347,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":518.72,"free":3389.4},{"epoch":26129348,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":518.7,"free":3389.42},{"epoch":26129349,"idl":99.65,"recv":0,"send":0,"writ":0.32,"used":518.92,"free":3389.18},{"epoch":26129350,"idl":99.43,"recv":0,"send":0,"writ":0.28,"used":518.69,"free":3389.43},{"epoch":26129351,"idl":99.67,"recv":0,"send":0,"writ":0.51,"used":519.31,"free":3388.8},{"epoch":26129352,"idl":99.81,"recv":0,"send":0,"writ":0.23,"used":518.64,"free":3389.47},{"epoch":26129353,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":518.61,"free":3389.49},{"epoch":26129354,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":518.6,"free":3389.5},{"epoch":26129355,"idl":99.63,"recv":0,"send":0,"writ":0.28,"used":517.63,"free":3390.48},{"epoch":26129356,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":518.46,"free":3389.65},{"epoch":26129357,"idl":99.82,"recv":0,"send":0,"writ":0.23,"used":518.93,"free":3389.17},{"epoch":26129358,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":519,"free":3389.1},{"epoch":26129359,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":518.98,"free":3389.11},{"epoch":26129360,"idl":99.69,"recv":0,"send":0,"writ":0.27,"used":519.23,"free":3388.88},{"epoch":26129361,"idl":99.71,"recv":0,"send":0,"writ":0.41,"used":519.45,"free":3388.65},{"epoch":26129362,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":518.7,"free":3389.41},{"epoch":26129363,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":518.68,"free":3389.42},{"epoch":26129364,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":518.66,"free":3389.44},{"epoch":26129365,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":518.24,"free":3389.87},{"epoch":26129366,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":518.57,"free":3389.54},{"epoch":26129367,"idl":99.89,"recv":0,"send":0,"writ":0.37,"used":518.87,"free":3389.24},{"epoch":26129368,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.85,"free":3389.25},{"epoch":26129369,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":518.96,"free":3389.13},{"epoch":26129370,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":519.02,"free":3389.1},{"epoch":26129371,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":519.34,"free":3388.77},{"epoch":26129372,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":518.73,"free":3389.38},{"epoch":26129373,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":518.7,"free":3389.4},{"epoch":26129374,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":518.68,"free":3389.41},{"epoch":26129375,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":518.92,"free":3389.2},{"epoch":26129376,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":518.9,"free":3389.2},{"epoch":26129377,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":519.46,"free":3388.64},{"epoch":26129378,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":519.09,"free":3389},{"epoch":26129379,"idl":99.85,"recv":0,"send":0,"writ":0.41,"used":519.22,"free":3388.85},{"epoch":26129380,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":518.69,"free":3389.39},{"epoch":26129381,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":518.65,"free":3389.43},{"epoch":26129382,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":519.32,"free":3388.76},{"epoch":26129383,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":519.14,"free":3388.93},{"epoch":26129384,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":519.21,"free":3388.86},{"epoch":26129385,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":518,"free":3390.09},{"epoch":26129386,"idl":99.91,"recv":0,"send":0,"writ":0.36,"used":517.59,"free":3390.49},{"epoch":26129387,"idl":99.73,"recv":0,"send":0,"writ":0.49,"used":518.91,"free":3389.16},{"epoch":26129388,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":519.15,"free":3388.93},{"epoch":26129389,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":519.12,"free":3388.96},{"epoch":26129390,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":517.68,"free":3390.42},{"epoch":26129391,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":517.63,"free":3390.49},{"epoch":26129392,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":518.17,"free":3389.96},{"epoch":26129393,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":518.16,"free":3389.97},{"epoch":26129394,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":518.25,"free":3389.87},{"epoch":26129395,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":518.25,"free":3389.89},{"epoch":26129396,"idl":96.06,"recv":0,"send":0,"writ":0.14,"used":518.23,"free":3389.9},{"epoch":26129397,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":518.95,"free":3389.17},{"epoch":26129398,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":519.17,"free":3388.95},{"epoch":26129399,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":519.15,"free":3388.97},{"epoch":26129400,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":517.55,"free":3390.58},{"epoch":26129401,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":517.41,"free":3390.72},{"epoch":26129402,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":518.02,"free":3390.11},{"epoch":26129403,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":518.59,"free":3389.53},{"epoch":26129404,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":518.56,"free":3389.55},{"epoch":26129405,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":518.23,"free":3389.9},{"epoch":26129406,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":518.24,"free":3389.89},{"epoch":26129407,"idl":99.7,"recv":0,"send":0,"writ":0.39,"used":518.77,"free":3389.36},{"epoch":26129408,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":518.94,"free":3389.18},{"epoch":26129409,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":519.15,"free":3388.95},{"epoch":26129410,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":518.68,"free":3389.44},{"epoch":26129411,"idl":96.41,"recv":0,"send":0,"writ":0.16,"used":518.64,"free":3389.48},{"epoch":26129412,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":518.62,"free":3389.49},{"epoch":26129413,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":518.74,"free":3389.37},{"epoch":26129414,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":518.33,"free":3389.77},{"epoch":26129415,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":519.14,"free":3388.98},{"epoch":26129416,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":518.59,"free":3389.52},{"epoch":26129417,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":518.47,"free":3389.63},{"epoch":26129418,"idl":99.71,"recv":0,"send":0,"writ":0.63,"used":518.15,"free":3389.95},{"epoch":26129419,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":517.69,"free":3390.41},{"epoch":26129420,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":518.41,"free":3389.7},{"epoch":26129421,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":518.41,"free":3389.7},{"epoch":26129422,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":518.38,"free":3389.72},{"epoch":26129423,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":518.04,"free":3390.06},{"epoch":26129424,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.36,"free":3390.74},{"epoch":26129425,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":518.57,"free":3389.54},{"epoch":26129426,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.57,"free":3389.54},{"epoch":26129427,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":518.73,"free":3389.37},{"epoch":26129428,"idl":99.64,"recv":0,"send":0,"writ":0.56,"used":519.09,"free":3389.01},{"epoch":26129429,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":518.71,"free":3389.38},{"epoch":26129430,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":517.35,"free":3390.75},{"epoch":26129431,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":517.21,"free":3390.89},{"epoch":26129432,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":517.2,"free":3390.9},{"epoch":26129433,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":518.01,"free":3390.09},{"epoch":26129434,"idl":99.92,"recv":0,"send":0.01,"writ":0.17,"used":518.37,"free":3389.72},{"epoch":26129435,"idl":99.79,"recv":0,"send":0.01,"writ":0.29,"used":517.4,"free":3390.7},{"epoch":26129436,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":517.52,"free":3390.58},{"epoch":26129437,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":517.5,"free":3390.6},{"epoch":26129438,"idl":99.76,"recv":0,"send":0.01,"writ":0.44,"used":518.22,"free":3389.88},{"epoch":26129439,"idl":99.76,"recv":0,"send":0,"writ":0.46,"used":518.67,"free":3389.4},{"epoch":26129440,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":517.72,"free":3390.37},{"epoch":26129441,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":517.66,"free":3390.42},{"epoch":26129442,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":517.63,"free":3390.45},{"epoch":26129443,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":517.98,"free":3390.09},{"epoch":26129444,"idl":99.89,"recv":0,"send":0,"writ":0.4,"used":518.33,"free":3389.76},{"epoch":26129445,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":518.62,"free":3389.49},{"epoch":26129446,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":518.74,"free":3389.36},{"epoch":26129447,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":518.72,"free":3389.38},{"epoch":26129448,"idl":99.7,"recv":0,"send":0,"writ":0.36,"used":519.05,"free":3389.04},{"epoch":26129449,"idl":99.86,"recv":0,"send":0,"writ":0.38,"used":518.67,"free":3389.42},{"epoch":26129450,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":518.67,"free":3389.43},{"epoch":26129451,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":518.65,"free":3389.45},{"epoch":26129452,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":518.64,"free":3389.46},{"epoch":26129453,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":518.61,"free":3389.48},{"epoch":26129454,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":518.98,"free":3389.11},{"epoch":26129455,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":517.63,"free":3390.48},{"epoch":26129456,"idl":99.6,"recv":0,"send":0,"writ":0.13,"used":517.59,"free":3390.51},{"epoch":26129457,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":517.65,"free":3390.45},{"epoch":26129458,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":517.74,"free":3390.36},{"epoch":26129459,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":518.75,"free":3389.34},{"epoch":26129460,"idl":99.62,"recv":0,"send":0,"writ":0.27,"used":517.55,"free":3390.56},{"epoch":26129461,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":517.45,"free":3390.65},{"epoch":26129462,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":517.43,"free":3390.67},{"epoch":26129463,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":517.41,"free":3390.68},{"epoch":26129464,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":518.19,"free":3389.9},{"epoch":26129465,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":517.66,"free":3390.45},{"epoch":26129466,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":517.61,"free":3390.49},{"epoch":26129467,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":517.58,"free":3390.51},{"epoch":26129468,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":517.64,"free":3390.45},{"epoch":26129469,"idl":99.68,"recv":0,"send":0,"writ":0.73,"used":519.12,"free":3388.95},{"epoch":26129470,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":518.71,"free":3389.38},{"epoch":26129471,"idl":98.31,"recv":0,"send":0,"writ":0.15,"used":518.69,"free":3389.39},{"epoch":26129472,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":518.67,"free":3389.41},{"epoch":26129473,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":518.65,"free":3389.42},{"epoch":26129474,"idl":99.72,"recv":0,"send":0,"writ":0.6,"used":518.9,"free":3389.17},{"epoch":26129475,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":518.38,"free":3389.7},{"epoch":26129476,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":518.36,"free":3389.71},{"epoch":26129477,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":518.35,"free":3389.73},{"epoch":26129478,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":518.32,"free":3389.75},{"epoch":26129479,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":518.83,"free":3389.24},{"epoch":26129480,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":518.62,"free":3389.46},{"epoch":26129481,"idl":84.14,"recv":0,"send":0,"writ":330.87,"used":552.17,"free":3337.88},{"epoch":26129482,"idl":96.66,"recv":0,"send":0,"writ":49.45,"used":529.33,"free":3460.62},{"epoch":26129483,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":521.2,"free":3491.83},{"epoch":26129484,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":521.18,"free":3491.84},{"epoch":26129485,"idl":98.38,"recv":0,"send":0,"writ":16.03,"used":524.01,"free":3489.81},{"epoch":26129486,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":521.25,"free":3492.13},{"epoch":26129487,"idl":99.93,"recv":0,"send":0,"writ":0.23,"used":519.28,"free":3494.13},{"epoch":26129488,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":518.76,"free":3494.66},{"epoch":26129489,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":518.74,"free":3494.66},{"epoch":26129490,"idl":99.62,"recv":0,"send":0,"writ":0.65,"used":518.36,"free":3495.07},{"epoch":26129491,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":518.04,"free":3495.38},{"epoch":26129492,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":517.96,"free":3495.46},{"epoch":26129493,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":517.89,"free":3495.52},{"epoch":26129494,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":517.87,"free":3495.54},{"epoch":26129495,"idl":99.67,"recv":0,"send":0,"writ":0.68,"used":518.36,"free":3495.06},{"epoch":26129496,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":517.93,"free":3495.51},{"epoch":26129497,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":518.08,"free":3495.36},{"epoch":26129498,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":518.06,"free":3495.37},{"epoch":26129499,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":518.54,"free":3494.86},{"epoch":26129500,"idl":99.61,"recv":0,"send":0,"writ":0.7,"used":519.26,"free":3494.15},{"epoch":26129501,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":518.76,"free":3494.66},{"epoch":26129502,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":518.74,"free":3494.67},{"epoch":26129503,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":518.72,"free":3494.69},{"epoch":26129504,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":518.8,"free":3494.62},{"epoch":26129505,"idl":99.62,"recv":0,"send":0,"writ":0.7,"used":518.88,"free":3494.56},{"epoch":26129506,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":518.4,"free":3495.04},{"epoch":26129507,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":518.39,"free":3495.05},{"epoch":26129508,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":518.36,"free":3495.07},{"epoch":26129509,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":518.34,"free":3495.08},{"epoch":26129510,"idl":99.72,"recv":0,"send":0,"writ":0.77,"used":518.7,"free":3494.74},{"epoch":26129511,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":517.83,"free":3495.6},{"epoch":26129512,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":517.8,"free":3495.63},{"epoch":26129513,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":517.79,"free":3495.64},{"epoch":26129514,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":517.76,"free":3495.66},{"epoch":26129515,"idl":99.67,"recv":0,"send":0,"writ":0.7,"used":518.81,"free":3494.63},{"epoch":26129516,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":519.41,"free":3494.02},{"epoch":26129517,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":519.4,"free":3494.03},{"epoch":26129518,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":519.37,"free":3494.05},{"epoch":26129519,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":519.35,"free":3494.07},{"epoch":26129520,"idl":99.6,"recv":0,"send":0,"writ":0.52,"used":518.82,"free":3494.62},{"epoch":26129521,"idl":99.91,"recv":0,"send":0,"writ":0.32,"used":519.09,"free":3494.34},{"epoch":26129522,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":519.06,"free":3494.36},{"epoch":26129523,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":519.05,"free":3494.38},{"epoch":26129524,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":519.02,"free":3494.39},{"epoch":26129525,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":519.03,"free":3494.41},{"epoch":26129526,"idl":99.72,"recv":0,"send":0,"writ":0.52,"used":519.39,"free":3494.04},{"epoch":26129527,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":519.15,"free":3494.28},{"epoch":26129528,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":519.12,"free":3494.3},{"epoch":26129529,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":518.89,"free":3494.5},{"epoch":26129530,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":518.13,"free":3495.29},{"epoch":26129531,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":519.18,"free":3494.23},{"epoch":26129532,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":518.82,"free":3494.59},{"epoch":26129533,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":518.8,"free":3494.61},{"epoch":26129534,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":518.78,"free":3494.65},{"epoch":26129535,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":519.04,"free":3494.42},{"epoch":26129536,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":519.92,"free":3493.53},{"epoch":26129537,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":519.28,"free":3494.17},{"epoch":26129538,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":519.4,"free":3494.04},{"epoch":26129539,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":519.37,"free":3494.09},{"epoch":26129540,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":519.38,"free":3494.09},{"epoch":26129541,"idl":94.75,"recv":0.27,"send":0.01,"writ":259.41,"used":532.38,"free":3481.37},{"epoch":26129542,"idl":99.92,"recv":0,"send":0,"writ":0.49,"used":521.73,"free":3491.98},{"epoch":26129543,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":521.71,"free":3492},{"epoch":26129544,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":521.69,"free":3492.01},{"epoch":26129545,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":520.98,"free":3492.73},{"epoch":26129546,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":520.53,"free":3493.2},{"epoch":26129547,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":519.28,"free":3494.46},{"epoch":26129548,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":519.26,"free":3494.48},{"epoch":26129549,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":519.22,"free":3494.51},{"epoch":26129550,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":519.43,"free":3494.32},{"epoch":26129551,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":519.78,"free":3493.96},{"epoch":26129552,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":519.39,"free":3494.35},{"epoch":26129553,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":519.37,"free":3494.37},{"epoch":26129554,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":519.35,"free":3494.39},{"epoch":26129555,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":519.36,"free":3494.4},{"epoch":26129556,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":519.61,"free":3494.13},{"epoch":26129557,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":519.06,"free":3494.68},{"epoch":26129558,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":519.04,"free":3494.7},{"epoch":26129559,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":519.49,"free":3494.22},{"epoch":26129560,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":518.34,"free":3495.4},{"epoch":26129561,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":518.87,"free":3494.86},{"epoch":26129562,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":519.15,"free":3494.57},{"epoch":26129563,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":519.13,"free":3494.59},{"epoch":26129564,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":519.11,"free":3494.6},{"epoch":26129565,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":519.36,"free":3494.37},{"epoch":26129566,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":519.35,"free":3494.38},{"epoch":26129567,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":519.96,"free":3493.77},{"epoch":26129568,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":519.3,"free":3494.42},{"epoch":26129569,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":518.52,"free":3495.19},{"epoch":26129570,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":518.14,"free":3495.59},{"epoch":26129571,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":518.1,"free":3495.62},{"epoch":26129572,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":518.78,"free":3494.94},{"epoch":26129573,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":518.15,"free":3495.57},{"epoch":26129574,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":518.13,"free":3495.59},{"epoch":26129575,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":518.36,"free":3495.37},{"epoch":26129576,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":518.36,"free":3495.37},{"epoch":26129577,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":518.93,"free":3494.79},{"epoch":26129578,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":518.57,"free":3495.15},{"epoch":26129579,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":518.55,"free":3495.17},{"epoch":26129580,"idl":99.71,"recv":0,"send":0,"writ":0.26,"used":517.13,"free":3496.61},{"epoch":26129581,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":517.05,"free":3496.68},{"epoch":26129582,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":517.91,"free":3495.82},{"epoch":26129583,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":518.33,"free":3495.39},{"epoch":26129584,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":518.4,"free":3495.31},{"epoch":26129585,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":518.64,"free":3495.09},{"epoch":26129586,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":518.62,"free":3495.1},{"epoch":26129587,"idl":99.79,"recv":0,"send":0,"writ":0.42,"used":519.06,"free":3494.66},{"epoch":26129588,"idl":99.92,"recv":0,"send":0,"writ":0.34,"used":518.81,"free":3494.9},{"epoch":26129589,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":518.31,"free":3495.38},{"epoch":26129590,"idl":99.84,"recv":0,"send":0,"writ":0.35,"used":518.78,"free":3494.93},{"epoch":26129591,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":518.77,"free":3494.93},{"epoch":26129592,"idl":99.78,"recv":0,"send":0,"writ":0.44,"used":519.18,"free":3494.52},{"epoch":26129593,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":517.81,"free":3495.88},{"epoch":26129594,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":517.7,"free":3495.99},{"epoch":26129595,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":519.1,"free":3494.6},{"epoch":26129596,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":519.11,"free":3494.59},{"epoch":26129597,"idl":99.73,"recv":0,"send":0,"writ":0.44,"used":519.4,"free":3494.3},{"epoch":26129598,"idl":99.94,"recv":0,"send":0,"writ":0.28,"used":518.57,"free":3495.12},{"epoch":26129599,"idl":99.89,"recv":0.01,"send":0,"writ":0.14,"used":518.55,"free":3495.14},{"epoch":26129600,"idl":99.78,"recv":0.01,"send":0,"writ":0.27,"used":518.82,"free":3494.89},{"epoch":26129601,"idl":99.83,"recv":0.01,"send":0,"writ":0.16,"used":518.81,"free":3494.89},{"epoch":26129602,"idl":99.65,"recv":0.01,"send":0,"writ":0.16,"used":518.83,"free":3494.87},{"epoch":26129603,"idl":99.66,"recv":0.01,"send":0,"writ":0.54,"used":517.89,"free":3495.8},{"epoch":26129604,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":517.33,"free":3496.36},{"epoch":26129605,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":518.84,"free":3494.86},{"epoch":26129606,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":518.8,"free":3494.9},{"epoch":26129607,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":518.78,"free":3494.92},{"epoch":26129608,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":519.11,"free":3494.58},{"epoch":26129609,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":518.74,"free":3494.95},{"epoch":26129610,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":518.08,"free":3495.63},{"epoch":26129611,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":518.17,"free":3495.53},{"epoch":26129612,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":518.14,"free":3495.56},{"epoch":26129613,"idl":99.77,"recv":0,"send":0,"writ":0.47,"used":518.62,"free":3495.08},{"epoch":26129614,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":518.34,"free":3495.35},{"epoch":26129615,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":519.07,"free":3494.63},{"epoch":26129616,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":518.94,"free":3494.76},{"epoch":26129617,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":518.55,"free":3495.15},{"epoch":26129618,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":518.88,"free":3494.81},{"epoch":26129619,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":518.99,"free":3494.68},{"epoch":26129620,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":518.99,"free":3494.69},{"epoch":26129621,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":518.98,"free":3494.7},{"epoch":26129622,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":519.04,"free":3494.64},{"epoch":26129623,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":519.57,"free":3494.1},{"epoch":26129624,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":519.35,"free":3494.32},{"epoch":26129625,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":518.87,"free":3494.81},{"epoch":26129626,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":518.83,"free":3494.84},{"epoch":26129627,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":518.82,"free":3494.85},{"epoch":26129628,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":519.4,"free":3494.27},{"epoch":26129629,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":518.28,"free":3495.39},{"epoch":26129630,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":518.53,"free":3495.15},{"epoch":26129631,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":518.32,"free":3495.35},{"epoch":26129632,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":518.24,"free":3495.43},{"epoch":26129633,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":518.81,"free":3494.86},{"epoch":26129634,"idl":99.92,"recv":0,"send":0,"writ":0.38,"used":519.02,"free":3494.64},{"epoch":26129635,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":519.13,"free":3494.55},{"epoch":26129636,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":519.11,"free":3494.57},{"epoch":26129637,"idl":99.17,"recv":0,"send":0,"writ":0.14,"used":519.08,"free":3494.59},{"epoch":26129638,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":519.06,"free":3494.61},{"epoch":26129639,"idl":99.76,"recv":0,"send":0,"writ":0.6,"used":519.61,"free":3494.05},{"epoch":26129640,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":519.36,"free":3494.32},{"epoch":26129641,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":519.26,"free":3494.41},{"epoch":26129642,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":519.24,"free":3494.43},{"epoch":26129643,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":519.22,"free":3494.44},{"epoch":26129644,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":518.89,"free":3494.77},{"epoch":26129645,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":518.47,"free":3495.21},{"epoch":26129646,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":518.59,"free":3495.09},{"epoch":26129647,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.62,"free":3495.05},{"epoch":26129648,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":518.6,"free":3495.07},{"epoch":26129649,"idl":99.68,"recv":0,"send":0,"writ":0.68,"used":519.63,"free":3494.02},{"epoch":26129650,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":519.3,"free":3494.36},{"epoch":26129651,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":519.28,"free":3494.37},{"epoch":26129652,"idl":98.6,"recv":0,"send":0,"writ":0.15,"used":519.26,"free":3494.39},{"epoch":26129653,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":519.24,"free":3494.4},{"epoch":26129654,"idl":99.8,"recv":0,"send":0,"writ":0.49,"used":519.43,"free":3494.21},{"epoch":26129655,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":518.49,"free":3495.17},{"epoch":26129656,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":518.46,"free":3495.2},{"epoch":26129657,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":518.54,"free":3495.11},{"epoch":26129658,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":518.64,"free":3495.01},{"epoch":26129659,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":519.16,"free":3494.48},{"epoch":26129660,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":519.11,"free":3494.54},{"epoch":26129661,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":519.1,"free":3494.55},{"epoch":26129662,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":519.07,"free":3494.58},{"epoch":26129663,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":519.06,"free":3494.59},{"epoch":26129664,"idl":99.76,"recv":0,"send":0,"writ":0.44,"used":519.08,"free":3494.56},{"epoch":26129665,"idl":99.71,"recv":0,"send":0,"writ":0.41,"used":518.54,"free":3495.13},{"epoch":26129666,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":518.52,"free":3495.15},{"epoch":26129667,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":518.51,"free":3495.16},{"epoch":26129668,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.48,"free":3495.18},{"epoch":26129669,"idl":99.78,"recv":0,"send":0,"writ":0.49,"used":519.01,"free":3494.65},{"epoch":26129670,"idl":99.76,"recv":0,"send":0,"writ":0.38,"used":519.4,"free":3494.27},{"epoch":26129671,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":519.36,"free":3494.3},{"epoch":26129672,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":519.35,"free":3494.32},{"epoch":26129673,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":519.32,"free":3494.34},{"epoch":26129674,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":519.83,"free":3493.83},{"epoch":26129675,"idl":99.82,"recv":0,"send":0,"writ":0.51,"used":519.55,"free":3494.12},{"epoch":26129676,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":519.55,"free":3494.12},{"epoch":26129677,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":519.25,"free":3494.41},{"epoch":26129678,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":519.22,"free":3494.44},{"epoch":26129679,"idl":99.72,"recv":0,"send":0,"writ":0.35,"used":519.01,"free":3494.63},{"epoch":26129680,"idl":99.61,"recv":0,"send":0,"writ":0.65,"used":519.32,"free":3494.33},{"epoch":26129681,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":518.87,"free":3494.77},{"epoch":26129682,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":518.85,"free":3494.79},{"epoch":26129683,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":518.83,"free":3494.81},{"epoch":26129684,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":518.81,"free":3494.82},{"epoch":26129685,"idl":99.7,"recv":0,"send":0,"writ":0.73,"used":519.72,"free":3493.93},{"epoch":26129686,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":519.28,"free":3494.36},{"epoch":26129687,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":519.26,"free":3494.38},{"epoch":26129688,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":519.24,"free":3494.4},{"epoch":26129689,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":519.21,"free":3494.43},{"epoch":26129690,"idl":99.72,"recv":0,"send":0,"writ":0.7,"used":519.63,"free":3494.02},{"epoch":26129691,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":519.31,"free":3494.34},{"epoch":26129692,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":519.36,"free":3494.28},{"epoch":26129693,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":519.33,"free":3494.3},{"epoch":26129694,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":519.32,"free":3494.31},{"epoch":26129695,"idl":99.63,"recv":0,"send":0,"writ":0.65,"used":519.41,"free":3494.24},{"epoch":26129696,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":518.8,"free":3494.85},{"epoch":26129697,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":518.78,"free":3494.86},{"epoch":26129698,"idl":99.87,"recv":0.02,"send":0.84,"writ":0.28,"used":518.73,"free":3494.9},{"epoch":26129699,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":518.84,"free":3494.78},{"epoch":26129700,"idl":99.6,"recv":0,"send":0,"writ":0.71,"used":519.21,"free":3494.43},{"epoch":26129701,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":519.31,"free":3494.33},{"epoch":26129702,"idl":99.88,"recv":0.03,"send":1.21,"writ":0.21,"used":519.27,"free":3494.35},{"epoch":26129703,"idl":98.81,"recv":0,"send":0.01,"writ":0.2,"used":519.32,"free":3494.3},{"epoch":26129704,"idl":99.89,"recv":0.01,"send":0.02,"writ":0.16,"used":519.23,"free":3494.38},{"epoch":26129705,"idl":99.66,"recv":0.02,"send":0.54,"writ":0.6,"used":519.26,"free":3494.36},{"epoch":26129706,"idl":99.88,"recv":0.01,"send":0.24,"writ":0.37,"used":519.22,"free":3494.39},{"epoch":26129707,"idl":99.87,"recv":0,"send":0.01,"writ":0.15,"used":519.18,"free":3494.43},{"epoch":26129708,"idl":99.87,"recv":0.06,"send":2.01,"writ":0.24,"used":519.27,"free":3494.32},{"epoch":26129709,"idl":99.69,"recv":0.01,"send":0.04,"writ":0.31,"used":519.05,"free":3494.51},{"epoch":26129710,"idl":99.62,"recv":0,"send":0.01,"writ":0.49,"used":517.95,"free":3495.62},{"epoch":26129711,"idl":99.88,"recv":0,"send":0,"writ":0.44,"used":519.44,"free":3494.14},{"epoch":26129712,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.16,"used":519.47,"free":3494.1},{"epoch":26129713,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":519.54,"free":3494.02},{"epoch":26129714,"idl":99.91,"recv":0,"send":0.04,"writ":0.2,"used":519.47,"free":3494.11},{"epoch":26129715,"idl":99.76,"recv":0.04,"send":1.91,"writ":0.38,"used":517.8,"free":3495.78},{"epoch":26129716,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":518.47,"free":3495.11},{"epoch":26129717,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":518.17,"free":3495.4},{"epoch":26129718,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":518.16,"free":3495.41},{"epoch":26129719,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":518.18,"free":3495.38},{"epoch":26129720,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":519.31,"free":3494.28},{"epoch":26129721,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":520.16,"free":3493.42},{"epoch":26129722,"idl":99.9,"recv":0,"send":0.01,"writ":0.18,"used":519.5,"free":3494.07},{"epoch":26129723,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":519.49,"free":3494.08},{"epoch":26129724,"idl":99.87,"recv":0.06,"send":2.01,"writ":0.19,"used":519.04,"free":3494.51},{"epoch":26129725,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":516.43,"free":3497.13},{"epoch":26129726,"idl":99.74,"recv":0,"send":0.01,"writ":0.5,"used":517.26,"free":3496.3},{"epoch":26129727,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":516.56,"free":3496.99},{"epoch":26129728,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":516.55,"free":3497.01},{"epoch":26129729,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.52,"free":3497.03},{"epoch":26129730,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":516.04,"free":3497.53},{"epoch":26129731,"idl":99.67,"recv":0,"send":0,"writ":0.38,"used":516.41,"free":3497.15},{"epoch":26129732,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":515.73,"free":3497.83},{"epoch":26129733,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":515.71,"free":3497.84},{"epoch":26129734,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.68,"free":3497.86},{"epoch":26129735,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":516.22,"free":3497.35},{"epoch":26129736,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":516.7,"free":3496.88},{"epoch":26129737,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":516.33,"free":3497.24},{"epoch":26129738,"idl":99.88,"recv":0.05,"send":2.37,"writ":0.18,"used":516.27,"free":3497.3},{"epoch":26129739,"idl":99.63,"recv":0.02,"send":0.61,"writ":0.53,"used":516.5,"free":3497.03},{"epoch":26129740,"idl":99.72,"recv":0,"send":0.04,"writ":0.34,"used":516.29,"free":3497.25},{"epoch":26129741,"idl":99.68,"recv":0,"send":0,"writ":0.4,"used":516.6,"free":3496.94},{"epoch":26129742,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":516.43,"free":3497.11},{"epoch":26129743,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.4,"free":3497.13},{"epoch":26129744,"idl":99.83,"recv":0.03,"send":0.85,"writ":0.16,"used":516.46,"free":3497.06},{"epoch":26129745,"idl":99.76,"recv":0.01,"send":0.17,"writ":0.36,"used":515.51,"free":3498.03},{"epoch":26129746,"idl":99.92,"recv":0,"send":0.01,"writ":0.17,"used":515.5,"free":3498.03},{"epoch":26129747,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":516.31,"free":3497.22},{"epoch":26129748,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":515.7,"free":3497.82},{"epoch":26129749,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":515.67,"free":3497.85},{"epoch":26129750,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":515.68,"free":3497.86},{"epoch":26129751,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.57,"free":3497.97},{"epoch":26129752,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":516.49,"free":3497.04},{"epoch":26129753,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.29,"free":3497.23},{"epoch":26129754,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.27,"free":3497.25},{"epoch":26129755,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":516.28,"free":3497.26},{"epoch":26129756,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.26,"free":3497.27},{"epoch":26129757,"idl":99.72,"recv":0,"send":0,"writ":0.53,"used":516.99,"free":3496.54},{"epoch":26129758,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":516.71,"free":3496.82},{"epoch":26129759,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":516.69,"free":3496.83},{"epoch":26129760,"idl":99.77,"recv":0.04,"send":1.5,"writ":0.35,"used":516.42,"free":3497.11},{"epoch":26129761,"idl":99.84,"recv":0.02,"send":0.69,"writ":0.26,"used":515.72,"free":3497.8},{"epoch":26129762,"idl":99.68,"recv":0.02,"send":0.63,"writ":0.64,"used":516.67,"free":3496.84},{"epoch":26129763,"idl":99.84,"recv":0.02,"send":0.66,"writ":0.22,"used":516.14,"free":3497.35},{"epoch":26129764,"idl":99.8,"recv":0.01,"send":0.48,"writ":0.21,"used":516.19,"free":3497.29},{"epoch":26129765,"idl":99.72,"recv":0,"send":0.01,"writ":0.33,"used":515.28,"free":3498.22},{"epoch":26129766,"idl":99.83,"recv":0.02,"send":0.69,"writ":0.19,"used":515.24,"free":3498.25},{"epoch":26129767,"idl":99.7,"recv":0.02,"send":0.72,"writ":0.61,"used":515,"free":3498.48},{"epoch":26129768,"idl":99.82,"recv":0,"send":0.07,"writ":0.21,"used":513.94,"free":3499.53},{"epoch":26129769,"idl":99.64,"recv":0.02,"send":0.8,"writ":0.4,"used":516.18,"free":3497.26},{"epoch":26129770,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":515.42,"free":3498.03},{"epoch":26129771,"idl":99.83,"recv":0,"send":0.07,"writ":0.15,"used":515.43,"free":3498.02},{"epoch":26129772,"idl":99.63,"recv":0,"send":0,"writ":0.5,"used":516.08,"free":3497.37},{"epoch":26129773,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":515.98,"free":3497.46},{"epoch":26129774,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":515.96,"free":3497.51},{"epoch":26129775,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":516,"free":3497.49},{"epoch":26129776,"idl":99.8,"recv":0.04,"send":1.85,"writ":0.21,"used":516.24,"free":3497.24},{"epoch":26129777,"idl":99.61,"recv":0,"send":0.02,"writ":0.48,"used":516.43,"free":3497.04},{"epoch":26129778,"idl":99.83,"recv":0,"send":0.13,"writ":0.31,"used":516.45,"free":3497.01},{"epoch":26129779,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.48,"free":3496.98},{"epoch":26129780,"idl":99.67,"recv":0,"send":0.13,"writ":0.29,"used":515.99,"free":3497.5},{"epoch":26129781,"idl":99.83,"recv":0,"send":0.02,"writ":0.15,"used":515.89,"free":3497.61},{"epoch":26129782,"idl":99.64,"recv":0,"send":0,"writ":0.41,"used":516.58,"free":3496.91},{"epoch":26129783,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":516.34,"free":3497.15},{"epoch":26129784,"idl":99.82,"recv":0.01,"send":0.2,"writ":0.2,"used":516.43,"free":3497.05},{"epoch":26129785,"idl":99.74,"recv":0,"send":0.12,"writ":0.35,"used":516.39,"free":3497.1},{"epoch":26129786,"idl":99.8,"recv":0.01,"send":0.38,"writ":0.2,"used":516.39,"free":3497.09},{"epoch":26129787,"idl":99.81,"recv":0,"send":0.03,"writ":0.15,"used":516.41,"free":3497.07},{"epoch":26129788,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":516.96,"free":3496.52},{"epoch":26129789,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.6,"free":3496.87},{"epoch":26129790,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":516.64,"free":3496.85},{"epoch":26129791,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.74,"free":3496.74},{"epoch":26129792,"idl":99.43,"recv":0,"send":0,"writ":0.16,"used":517.03,"free":3496.45},{"epoch":26129793,"idl":99.7,"recv":0,"send":0,"writ":1.2,"used":515.64,"free":3497.83},{"epoch":26129794,"idl":99.8,"recv":0.04,"send":1.5,"writ":0.2,"used":515.17,"free":3498.29},{"epoch":26129795,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":516.37,"free":3497.11},{"epoch":26129796,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.32,"free":3497.15},{"epoch":26129797,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.08,"free":3497.39},{"epoch":26129798,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":516.39,"free":3497.09},{"epoch":26129799,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":516.64,"free":3496.82},{"epoch":26129800,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":516.46,"free":3497.01},{"epoch":26129801,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.44,"free":3497.03},{"epoch":26129802,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.4,"free":3497.06},{"epoch":26129803,"idl":99.67,"recv":0,"send":0,"writ":0.53,"used":516.85,"free":3496.61},{"epoch":26129804,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":516.54,"free":3496.91},{"epoch":26129805,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":516.74,"free":3496.73},{"epoch":26129806,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.72,"free":3496.75},{"epoch":26129807,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.69,"free":3496.77},{"epoch":26129808,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":517.04,"free":3496.42},{"epoch":26129809,"idl":99.84,"recv":0,"send":0.01,"writ":0.16,"used":516.66,"free":3496.8},{"epoch":26129810,"idl":99.69,"recv":0,"send":0,"writ":0.33,"used":515.75,"free":3497.72},{"epoch":26129811,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":515.62,"free":3497.85},{"epoch":26129812,"idl":99.84,"recv":0,"send":0.01,"writ":0.15,"used":515.6,"free":3497.86},{"epoch":26129813,"idl":99.69,"recv":0,"send":0.01,"writ":0.41,"used":516.5,"free":3496.96},{"epoch":26129814,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":516.7,"free":3496.75},{"epoch":26129815,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":515.27,"free":3498.2},{"epoch":26129816,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.21,"free":3498.26},{"epoch":26129817,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.19,"free":3498.28},{"epoch":26129818,"idl":99.63,"recv":0.02,"send":0.83,"writ":0.49,"used":516.04,"free":3497.41},{"epoch":26129819,"idl":99.83,"recv":0,"send":0,"writ":0.24,"used":516.65,"free":3496.79},{"epoch":26129820,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":516.95,"free":3496.51},{"epoch":26129821,"idl":99.82,"recv":0,"send":0.01,"writ":0.15,"used":516.93,"free":3496.53},{"epoch":26129822,"idl":99.77,"recv":0.04,"send":1.44,"writ":0.29,"used":516.82,"free":3496.63},{"epoch":26129823,"idl":99.65,"recv":0,"send":0,"writ":0.33,"used":517.21,"free":3496.23},{"epoch":26129824,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":516.68,"free":3496.75},{"epoch":26129825,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":516.68,"free":3496.77},{"epoch":26129826,"idl":99.78,"recv":0,"send":0.01,"writ":0.15,"used":516.65,"free":3496.8},{"epoch":26129827,"idl":99.8,"recv":0.01,"send":0,"writ":0.19,"used":516.59,"free":3496.85},{"epoch":26129828,"idl":99.8,"recv":0.02,"send":0.01,"writ":0.2,"used":516.62,"free":3496.82},{"epoch":26129829,"idl":90.22,"recv":9.21,"send":0.26,"writ":64.96,"used":548.06,"free":3454.56},{"epoch":26129830,"idl":90.18,"recv":19.34,"send":0.11,"writ":445.03,"used":536.84,"free":3433.43},{"epoch":26129831,"idl":80.58,"recv":0.05,"send":1.68,"writ":4.78,"used":877.06,"free":3092.45},{"epoch":26129832,"idl":84.28,"recv":0.01,"send":0.03,"writ":1.5,"used":983.04,"free":2986.39},{"epoch":26129833,"idl":96.17,"recv":0.03,"send":0.85,"writ":3.27,"used":1025.76,"free":2943.71},{"epoch":26129834,"idl":99.5,"recv":0,"send":0,"writ":0.61,"used":640.68,"free":3328.77},{"epoch":26129835,"idl":99.71,"recv":0,"send":0,"writ":0.47,"used":569.63,"free":3400.07},{"epoch":26129836,"idl":99.82,"recv":0,"send":0.03,"writ":0.23,"used":568.56,"free":3401.24},{"epoch":26129837,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":568.64,"free":3401.16},{"epoch":26129838,"idl":99.56,"recv":0.16,"send":0.8,"writ":0.2,"used":569.38,"free":3400.39},{"epoch":26129839,"idl":99.19,"recv":0.9,"send":25.06,"writ":0.68,"used":571.48,"free":3398.25},{"epoch":26129840,"idl":99.27,"recv":0.87,"send":23.46,"writ":0.75,"used":571.87,"free":3397.88},{"epoch":26129841,"idl":99.15,"recv":1.75,"send":60.17,"writ":0.5,"used":571.55,"free":3398.18},{"epoch":26129842,"idl":99.79,"recv":0.04,"send":1.53,"writ":0.26,"used":571.56,"free":3398.15},{"epoch":26129843,"idl":99.81,"recv":0,"send":0.05,"writ":0.21,"used":571.47,"free":3398.23},{"epoch":26129844,"idl":99.69,"recv":0,"send":0,"writ":0.58,"used":572.13,"free":3397.56},{"epoch":26129845,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":571.77,"free":3397.95},{"epoch":26129846,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":571.84,"free":3397.88},{"epoch":26129847,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":571.81,"free":3397.9},{"epoch":26129848,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":571.78,"free":3397.93},{"epoch":26129849,"idl":99.69,"recv":0,"send":0,"writ":0.58,"used":572.4,"free":3397.3},{"epoch":26129850,"idl":99.6,"recv":0,"send":0,"writ":0.32,"used":571.54,"free":3398.17},{"epoch":26129851,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":571.51,"free":3398.2},{"epoch":26129852,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":571.49,"free":3398.22},{"epoch":26129853,"idl":99.78,"recv":0,"send":0.07,"writ":0.15,"used":571.46,"free":3398.24},{"epoch":26129854,"idl":99.59,"recv":0.13,"send":0.13,"writ":0.64,"used":571.95,"free":3397.75},{"epoch":26129855,"idl":98.52,"recv":0.05,"send":0.2,"writ":0.52,"used":572.14,"free":3397.53},{"epoch":26129856,"idl":99.79,"recv":0.05,"send":2,"writ":0.28,"used":571.93,"free":3397.73},{"epoch":26129857,"idl":99.83,"recv":0.01,"send":0.03,"writ":0.28,"used":571.96,"free":3397.69},{"epoch":26129858,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":572.01,"free":3397.63},{"epoch":26129859,"idl":99.43,"recv":0,"send":0,"writ":0.77,"used":573,"free":3396.59},{"epoch":26129860,"idl":99.75,"recv":0.02,"send":0.05,"writ":0.37,"used":572.44,"free":3397.17},{"epoch":26129861,"idl":99.78,"recv":0,"send":0,"writ":0.21,"used":572.53,"free":3397.08},{"epoch":26129862,"idl":99.78,"recv":0.02,"send":0.03,"writ":0.21,"used":572.48,"free":3397.12},{"epoch":26129863,"idl":99.8,"recv":0,"send":0.02,"writ":0.18,"used":572.41,"free":3397.19},{"epoch":26129864,"idl":99.66,"recv":0.03,"send":0.03,"writ":0.4,"used":572.8,"free":3396.79},{"epoch":26129865,"idl":99.53,"recv":0.04,"send":0.06,"writ":0.89,"used":571.42,"free":3398.19},{"epoch":26129866,"idl":99.74,"recv":0.01,"send":0.02,"writ":0.23,"used":571.08,"free":3398.53},{"epoch":26129867,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.18,"used":571.03,"free":3398.58},{"epoch":26129868,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.21,"used":571.01,"free":3398.59},{"epoch":26129869,"idl":99.63,"recv":0,"send":0,"writ":0.35,"used":571.47,"free":3398.12},{"epoch":26129870,"idl":99.69,"recv":0,"send":0.01,"writ":0.54,"used":571.82,"free":3397.79},{"epoch":26129871,"idl":99.78,"recv":0.02,"send":0.03,"writ":0.22,"used":571.77,"free":3397.84},{"epoch":26129872,"idl":80.51,"recv":0.08,"send":0.56,"writ":8.09,"used":894.87,"free":3074.65},{"epoch":26129873,"idl":99.53,"recv":0,"send":0.08,"writ":0.24,"used":926.9,"free":3042.59},{"epoch":26129874,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":570.95,"free":3398.54},{"epoch":26129875,"idl":99.32,"recv":0,"send":0,"writ":0.7,"used":571.62,"free":3397.89},{"epoch":26129876,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":570.94,"free":3398.57},{"epoch":26129877,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":570.9,"free":3398.6},{"epoch":26129878,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":570.88,"free":3398.61},{"epoch":26129879,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":570.86,"free":3398.63},{"epoch":26129880,"idl":99.51,"recv":0,"send":0,"writ":0.8,"used":571.86,"free":3397.64},{"epoch":26129881,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":571.21,"free":3398.29},{"epoch":26129882,"idl":99.81,"recv":0.02,"send":0.52,"writ":0.16,"used":571.2,"free":3398.3},{"epoch":26129883,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":571.1,"free":3398.39},{"epoch":26129884,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":571.1,"free":3398.39},{"epoch":26129885,"idl":99.62,"recv":0,"send":0,"writ":0.77,"used":573.25,"free":3396.26},{"epoch":26129886,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":572.93,"free":3396.57},{"epoch":26129887,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":572.95,"free":3396.54},{"epoch":26129888,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":572.94,"free":3396.55},{"epoch":26129889,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":573.16,"free":3396.33},{"epoch":26129890,"idl":99.53,"recv":0,"send":0,"writ":0.74,"used":573.02,"free":3396.48},{"epoch":26129891,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":571.67,"free":3397.83},{"epoch":26129892,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":571.64,"free":3397.86},{"epoch":26129893,"idl":99.79,"recv":0.04,"send":1.64,"writ":0.23,"used":571.67,"free":3397.82},{"epoch":26129894,"idl":99.82,"recv":0,"send":0.01,"writ":0.14,"used":571.72,"free":3397.75},{"epoch":26129895,"idl":99.55,"recv":0,"send":0,"writ":0.68,"used":572.84,"free":3396.64},{"epoch":26129896,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":572.67,"free":3396.81},{"epoch":26129897,"idl":99.8,"recv":0.03,"send":0.84,"writ":0.29,"used":572.8,"free":3396.67},{"epoch":26129898,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":572.79,"free":3396.66},{"epoch":26129899,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":572.77,"free":3396.68},{"epoch":26129900,"idl":99.59,"recv":0,"send":0,"writ":0.48,"used":573.27,"free":3396.2},{"epoch":26129901,"idl":99.82,"recv":0,"send":0,"writ":0.42,"used":572.19,"free":3397.28},{"epoch":26129902,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":571.4,"free":3398.06},{"epoch":26129903,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":571.41,"free":3398.05},{"epoch":26129904,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":571.38,"free":3398.07},{"epoch":26129905,"idl":99.02,"recv":0.04,"send":0.01,"writ":0.68,"used":572.69,"free":3396.77},{"epoch":26129906,"idl":96.34,"recv":0,"send":0,"writ":142,"used":584.82,"free":3386.79},{"epoch":26129907,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":574.9,"free":3394.84},{"epoch":26129908,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":573.92,"free":3395.82},{"epoch":26129909,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":573.89,"free":3395.84},{"epoch":26129910,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":574.13,"free":3395.61},{"epoch":26129911,"idl":99.64,"recv":0,"send":0,"writ":0.59,"used":572.62,"free":3397.16},{"epoch":26129912,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":571.74,"free":3398.05},{"epoch":26129913,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.71,"free":3398.07},{"epoch":26129914,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.7,"free":3398.08},{"epoch":26129915,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":572.19,"free":3397.6},{"epoch":26129916,"idl":99.65,"recv":0,"send":0,"writ":0.61,"used":572.17,"free":3397.62},{"epoch":26129917,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":571.68,"free":3398.1},{"epoch":26129918,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":571.67,"free":3398.11},{"epoch":26129919,"idl":99.63,"recv":0,"send":0,"writ":0.29,"used":572.15,"free":3397.6},{"epoch":26129920,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":571.91,"free":3397.86},{"epoch":26129921,"idl":99.74,"recv":0,"send":0,"writ":0.49,"used":572.49,"free":3397.28},{"epoch":26129922,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":572.52,"free":3397.25},{"epoch":26129923,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.55,"free":3397.22},{"epoch":26129924,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.53,"free":3397.24},{"epoch":26129925,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":572.55,"free":3397.24},{"epoch":26129926,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":572.56,"free":3397.23},{"epoch":26129927,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":571.55,"free":3398.23},{"epoch":26129928,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":571.53,"free":3398.25},{"epoch":26129929,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":571.52,"free":3398.26},{"epoch":26129930,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":572.26,"free":3397.53},{"epoch":26129931,"idl":99.75,"recv":0,"send":0,"writ":0.49,"used":572.52,"free":3397.27},{"epoch":26129932,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":571.98,"free":3397.8},{"epoch":26129933,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":571.96,"free":3397.82},{"epoch":26129934,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":571.92,"free":3397.85},{"epoch":26129935,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":572.16,"free":3397.64},{"epoch":26129936,"idl":99.69,"recv":0,"send":0.02,"writ":0.55,"used":572.87,"free":3396.92},{"epoch":26129937,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":572.26,"free":3397.52},{"epoch":26129938,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.22,"free":3397.55},{"epoch":26129939,"idl":97.54,"recv":0,"send":0,"writ":0.14,"used":572.2,"free":3397.58},{"epoch":26129940,"idl":99.66,"recv":0,"send":0,"writ":0.31,"used":571.05,"free":3398.74},{"epoch":26129941,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":570.99,"free":3398.8},{"epoch":26129942,"idl":99.61,"recv":0,"send":0,"writ":0.58,"used":571.8,"free":3397.99},{"epoch":26129943,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":571.42,"free":3398.36},{"epoch":26129944,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":571.42,"free":3398.36},{"epoch":26129945,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":571.07,"free":3398.72},{"epoch":26129946,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":570.79,"free":3399},{"epoch":26129947,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":572.23,"free":3397.56},{"epoch":26129948,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.07,"free":3397.71},{"epoch":26129949,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":572.05,"free":3397.71},{"epoch":26129950,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":572.53,"free":3397.24},{"epoch":26129951,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":572.54,"free":3397.23},{"epoch":26129952,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":572.7,"free":3397.07},{"epoch":26129953,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":572.25,"free":3397.51},{"epoch":26129954,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.25,"free":3397.52},{"epoch":26129955,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":572.27,"free":3397.52},{"epoch":26129956,"idl":99.92,"recv":0,"send":0,"writ":0.12,"used":572.24,"free":3397.54},{"epoch":26129957,"idl":99.75,"recv":0,"send":0,"writ":0.46,"used":572.83,"free":3396.95},{"epoch":26129958,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":572.47,"free":3397.31},{"epoch":26129959,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":572.46,"free":3397.31},{"epoch":26129960,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":572.72,"free":3397.06},{"epoch":26129961,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.7,"free":3397.08},{"epoch":26129962,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":573.04,"free":3396.74},{"epoch":26129963,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":572.68,"free":3397.09},{"epoch":26129964,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":571.94,"free":3397.83},{"epoch":26129965,"idl":99.87,"recv":0,"send":0,"writ":0.35,"used":571.94,"free":3397.85},{"epoch":26129966,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":571.92,"free":3397.86},{"epoch":26129967,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":572.68,"free":3397.1},{"epoch":26129968,"idl":99.91,"recv":0.03,"send":1.03,"writ":0.37,"used":572.14,"free":3397.62},{"epoch":26129969,"idl":99.91,"recv":0,"send":0.02,"writ":0.14,"used":572.24,"free":3397.51},{"epoch":26129970,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":572.32,"free":3397.45},{"epoch":26129971,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":572.29,"free":3397.48},{"epoch":26129972,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":572.27,"free":3397.49},{"epoch":26129973,"idl":99.73,"recv":0,"send":0,"writ":0.6,"used":573.42,"free":3396.33},{"epoch":26129974,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":572.74,"free":3397},{"epoch":26129975,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":572.74,"free":3397.02},{"epoch":26129976,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":572.72,"free":3397.03},{"epoch":26129977,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":572.47,"free":3397.28},{"epoch":26129978,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":573.23,"free":3396.51},{"epoch":26129979,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":572.91,"free":3396.81},{"epoch":26129980,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":571.99,"free":3397.75},{"epoch":26129981,"idl":99.91,"recv":0,"send":0.01,"writ":0.17,"used":571.92,"free":3397.81},{"epoch":26129982,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.91,"free":3397.82},{"epoch":26129983,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":572.34,"free":3397.39},{"epoch":26129984,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":571.63,"free":3398.09},{"epoch":26129985,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":571.17,"free":3398.57},{"epoch":26129986,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":571.14,"free":3398.59},{"epoch":26129987,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":571.18,"free":3398.55},{"epoch":26129988,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":572.32,"free":3397.41},{"epoch":26129989,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.52,"free":3397.2},{"epoch":26129990,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":572.76,"free":3396.97},{"epoch":26129991,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.75,"free":3396.98},{"epoch":26129992,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.74,"free":3396.98},{"epoch":26129993,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":572.85,"free":3396.87},{"epoch":26129994,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":572,"free":3397.72},{"epoch":26129995,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":572.72,"free":3397.02},{"epoch":26129996,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":572.72,"free":3397.02},{"epoch":26129997,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":572.71,"free":3397.02},{"epoch":26129998,"idl":99.79,"recv":0,"send":0,"writ":0.39,"used":572.97,"free":3396.76},{"epoch":26129999,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":572.43,"free":3397.29},{"epoch":26130000,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":572.93,"free":3396.8},{"epoch":26130001,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":572.93,"free":3396.8},{"epoch":26130002,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.9,"free":3396.82},{"epoch":26130003,"idl":99.75,"recv":0,"send":0.01,"writ":0.52,"used":573.51,"free":3396.21},{"epoch":26130004,"idl":99.85,"recv":0.06,"send":2.91,"writ":0.27,"used":572.49,"free":3397.22},{"epoch":26130005,"idl":99.83,"recv":0,"send":0.01,"writ":0.38,"used":572.26,"free":3397.46},{"epoch":26130006,"idl":99.8,"recv":0.03,"send":0.12,"writ":0.23,"used":571.85,"free":3397.87},{"epoch":26130007,"idl":99.89,"recv":0.04,"send":0.05,"writ":0.33,"used":570.57,"free":3399.12},{"epoch":26130008,"idl":81.61,"recv":0.04,"send":0.89,"writ":4.21,"used":796.96,"free":3172.7},{"epoch":26130009,"idl":99.2,"recv":0.05,"send":1.06,"writ":1.09,"used":858.09,"free":3111.47},{"epoch":26130010,"idl":81.33,"recv":0.07,"send":1.04,"writ":4.57,"used":749.19,"free":3220.26},{"epoch":26130011,"idl":99.88,"recv":0.05,"send":1.25,"writ":0.5,"used":1023.14,"free":2946.26},{"epoch":26130012,"idl":80.27,"recv":0.05,"send":1.02,"writ":4.3,"used":863.14,"free":3106.24},{"epoch":26130013,"idl":99.86,"recv":0.03,"send":1.03,"writ":0.53,"used":1034.96,"free":2934.42},{"epoch":26130014,"idl":99.43,"recv":0,"send":0,"writ":0.66,"used":596.36,"free":3373.04},{"epoch":26130015,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":577.02,"free":3392.39},{"epoch":26130016,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":577.08,"free":3392.33},{"epoch":26130017,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":577.17,"free":3392.23},{"epoch":26130018,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":577.15,"free":3392.25},{"epoch":26130019,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":578.87,"free":3390.53},{"epoch":26130020,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":578.87,"free":3390.55},{"epoch":26130021,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":578.86,"free":3390.55},{"epoch":26130022,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":578.91,"free":3390.5},{"epoch":26130023,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":578.98,"free":3390.42},{"epoch":26130024,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":579.81,"free":3389.59},{"epoch":26130025,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":579.2,"free":3390.23},{"epoch":26130026,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":579.2,"free":3390.25},{"epoch":26130027,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":579.17,"free":3390.28},{"epoch":26130028,"idl":99.88,"recv":0.04,"send":1.68,"writ":0.18,"used":579.15,"free":3390.29},{"epoch":26130029,"idl":99.75,"recv":0,"send":0.01,"writ":0.93,"used":579.58,"free":3389.85},{"epoch":26130030,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":579.16,"free":3390.28},{"epoch":26130031,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":578.49,"free":3390.95},{"epoch":26130032,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":578.46,"free":3390.97},{"epoch":26130033,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":578.44,"free":3390.99},{"epoch":26130034,"idl":99.77,"recv":0,"send":0,"writ":0.48,"used":578.91,"free":3390.52},{"epoch":26130035,"idl":99.83,"recv":0.02,"send":2.15,"writ":0.66,"used":578.92,"free":3390.52},{"epoch":26130036,"idl":99.86,"recv":0.05,"send":3.4,"writ":0.3,"used":579.08,"free":3390.33},{"epoch":26130037,"idl":99.83,"recv":0.04,"send":1.48,"writ":0.46,"used":578.94,"free":3390.45},{"epoch":26130038,"idl":99.88,"recv":0,"send":0,"writ":0.25,"used":570.11,"free":3400.56},{"epoch":26130039,"idl":99.57,"recv":0,"send":0,"writ":0.57,"used":570.2,"free":3400.43},{"epoch":26130040,"idl":99.81,"recv":0,"send":0,"writ":0.46,"used":570.06,"free":3400.59},{"epoch":26130041,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":570.03,"free":3400.62},{"epoch":26130042,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.01,"free":3400.63},{"epoch":26130043,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":569.99,"free":3400.64},{"epoch":26130044,"idl":99.75,"recv":0,"send":0,"writ":0.37,"used":570.38,"free":3400.27},{"epoch":26130045,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":569.03,"free":3401.64},{"epoch":26130046,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":568.98,"free":3401.69},{"epoch":26130047,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":568.74,"free":3401.92},{"epoch":26130048,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":568.2,"free":3402.46},{"epoch":26130049,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":568.12,"free":3402.53},{"epoch":26130050,"idl":99.49,"recv":0,"send":0,"writ":0.75,"used":569.05,"free":3401.61},{"epoch":26130051,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":568.35,"free":3402.31},{"epoch":26130052,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":568.33,"free":3402.33},{"epoch":26130053,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":568.32,"free":3402.33},{"epoch":26130054,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":568.29,"free":3402.36},{"epoch":26130055,"idl":99.67,"recv":0,"send":0,"writ":0.78,"used":568.93,"free":3401.73},{"epoch":26130056,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":568.76,"free":3401.9},{"epoch":26130057,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":568.74,"free":3401.92},{"epoch":26130058,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":568.72,"free":3401.93},{"epoch":26130059,"idl":99.92,"recv":0,"send":0,"writ":0.22,"used":568.7,"free":3401.95},{"epoch":26130060,"idl":99.68,"recv":0,"send":0,"writ":0.77,"used":569.91,"free":3400.76},{"epoch":26130061,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":569.84,"free":3400.81},{"epoch":26130062,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":569.83,"free":3400.82},{"epoch":26130063,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":569.8,"free":3400.85},{"epoch":26130064,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":569.78,"free":3400.86},{"epoch":26130065,"idl":99.62,"recv":0,"send":0,"writ":0.79,"used":569.99,"free":3400.67},{"epoch":26130066,"idl":99.15,"recv":0,"send":0,"writ":0.19,"used":569.49,"free":3401.16},{"epoch":26130067,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":568.75,"free":3401.9},{"epoch":26130068,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":568.74,"free":3401.9},{"epoch":26130069,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":568.94,"free":3401.68},{"epoch":26130070,"idl":99.7,"recv":0,"send":0,"writ":0.73,"used":568.89,"free":3401.75},{"epoch":26130071,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":569.05,"free":3401.58},{"epoch":26130072,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":569.09,"free":3401.54},{"epoch":26130073,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":569.08,"free":3401.55},{"epoch":26130074,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":569.04,"free":3401.58},{"epoch":26130075,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":569.12,"free":3401.52},{"epoch":26130076,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":569.26,"free":3401.36},{"epoch":26130077,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":569.25,"free":3401.38},{"epoch":26130078,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":569.22,"free":3401.39},{"epoch":26130079,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":569.2,"free":3401.41},{"epoch":26130080,"idl":99.6,"recv":0,"send":0,"writ":0.54,"used":568.93,"free":3401.7},{"epoch":26130081,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":569.18,"free":3401.45},{"epoch":26130082,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":569.2,"free":3401.43},{"epoch":26130083,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":569.33,"free":3401.29},{"epoch":26130084,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":569.31,"free":3401.3},{"epoch":26130085,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":568.53,"free":3402.1},{"epoch":26130086,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":569.4,"free":3401.23},{"epoch":26130087,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":569.01,"free":3401.61},{"epoch":26130088,"idl":99.89,"recv":0,"send":0.01,"writ":0.19,"used":568.99,"free":3401.63},{"epoch":26130089,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":568.94,"free":3401.67},{"epoch":26130090,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":568.46,"free":3402.17},{"epoch":26130091,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":569.42,"free":3401.21},{"epoch":26130092,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":569.35,"free":3401.27},{"epoch":26130093,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":569.33,"free":3401.28},{"epoch":26130094,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":569.31,"free":3401.3},{"epoch":26130095,"idl":99.78,"recv":0,"send":0.01,"writ":0.35,"used":569.78,"free":3400.85},{"epoch":26130096,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":569.92,"free":3400.71},{"epoch":26130097,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":569.47,"free":3401.15},{"epoch":26130098,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":569.44,"free":3401.17},{"epoch":26130099,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.31,"used":570.03,"free":3400.56},{"epoch":26130100,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":569.03,"free":3401.56},{"epoch":26130101,"idl":99.76,"recv":0,"send":0,"writ":0.52,"used":569.91,"free":3400.68},{"epoch":26130102,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":569.92,"free":3400.66},{"epoch":26130103,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.16,"used":570.01,"free":3400.57},{"epoch":26130104,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":569.33,"free":3401.25},{"epoch":26130105,"idl":99.75,"recv":0,"send":0,"writ":0.35,"used":569.25,"free":3401.35},{"epoch":26130106,"idl":99.74,"recv":0,"send":0,"writ":0.64,"used":569.74,"free":3400.85},{"epoch":26130107,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":569.27,"free":3401.32},{"epoch":26130108,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":569.27,"free":3401.31},{"epoch":26130109,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":569.22,"free":3401.36},{"epoch":26130110,"idl":99.84,"recv":0,"send":0,"writ":0.37,"used":569.44,"free":3401.15},{"epoch":26130111,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":569.83,"free":3400.75},{"epoch":26130112,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":569.54,"free":3401.04},{"epoch":26130113,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":569.5,"free":3401.08},{"epoch":26130114,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":569.46,"free":3401.11},{"epoch":26130115,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":568.48,"free":3402.12},{"epoch":26130116,"idl":99.76,"recv":0,"send":0,"writ":0.49,"used":568.73,"free":3401.86},{"epoch":26130117,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":568.33,"free":3402.26},{"epoch":26130118,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":568.3,"free":3402.28},{"epoch":26130119,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":568.25,"free":3402.32},{"epoch":26130120,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":569,"free":3401.6},{"epoch":26130121,"idl":99.68,"recv":0,"send":0,"writ":0.35,"used":569.6,"free":3400.99},{"epoch":26130122,"idl":99.88,"recv":0,"send":0,"writ":0.37,"used":569.68,"free":3400.9},{"epoch":26130123,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":569.7,"free":3400.88},{"epoch":26130124,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":569.27,"free":3401.31},{"epoch":26130125,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":568.29,"free":3402.3},{"epoch":26130126,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":568.22,"free":3402.37},{"epoch":26130127,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":569.88,"free":3400.71},{"epoch":26130128,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":569.44,"free":3401.13},{"epoch":26130129,"idl":99.79,"recv":0.01,"send":0,"writ":0.3,"used":569.55,"free":3401.01},{"epoch":26130130,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":570,"free":3400.57},{"epoch":26130131,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":569.97,"free":3400.6},{"epoch":26130132,"idl":99.69,"recv":0,"send":0,"writ":0.58,"used":570.24,"free":3400.32},{"epoch":26130133,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":569.65,"free":3400.9},{"epoch":26130134,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":569.77,"free":3400.8},{"epoch":26130135,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":570.05,"free":3400.54},{"epoch":26130136,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":570.02,"free":3400.57},{"epoch":26130137,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":570.07,"free":3400.5},{"epoch":26130138,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":569.22,"free":3401.35},{"epoch":26130139,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":569.19,"free":3401.38},{"epoch":26130140,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":569.44,"free":3401.15},{"epoch":26130141,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":569.42,"free":3401.16},{"epoch":26130142,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":569.75,"free":3400.83},{"epoch":26130143,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":569.5,"free":3401.07},{"epoch":26130144,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":568.91,"free":3401.66},{"epoch":26130145,"idl":99.77,"recv":0,"send":0,"writ":0.38,"used":569.53,"free":3401.05},{"epoch":26130146,"idl":99.84,"recv":0.05,"send":1.97,"writ":0.14,"used":569.37,"free":3401.2},{"epoch":26130147,"idl":99.73,"recv":0,"send":0.05,"writ":0.57,"used":569.44,"free":3401.13},{"epoch":26130148,"idl":99.89,"recv":0,"send":0,"writ":0.25,"used":569.18,"free":3401.38},{"epoch":26130149,"idl":99.85,"recv":0.12,"send":4.59,"writ":0.24,"used":569.19,"free":3401.34},{"epoch":26130150,"idl":99.77,"recv":0,"send":0.03,"writ":0.37,"used":569.01,"free":3401.51},{"epoch":26130151,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":568.93,"free":3401.59},{"epoch":26130152,"idl":99.71,"recv":0,"send":0,"writ":0.41,"used":569.52,"free":3401},{"epoch":26130153,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":568.4,"free":3402.12},{"epoch":26130154,"idl":99.91,"recv":0,"send":0.01,"writ":0.16,"used":568.38,"free":3402.13},{"epoch":26130155,"idl":99.72,"recv":0.03,"send":0.11,"writ":0.35,"used":568.85,"free":3401.68},{"epoch":26130156,"idl":99.75,"recv":0.08,"send":0.19,"writ":0.48,"used":568.89,"free":3401.63},{"epoch":26130157,"idl":99.73,"recv":0.01,"send":0.01,"writ":0.45,"used":569.32,"free":3401.2},{"epoch":26130158,"idl":99.89,"recv":0,"send":0,"writ":0.4,"used":569.23,"free":3401.29},{"epoch":26130159,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":569.23,"free":3401.26},{"epoch":26130160,"idl":99.74,"recv":0.01,"send":0.01,"writ":0.41,"used":569.19,"free":3401.32},{"epoch":26130161,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.15,"used":569.12,"free":3401.39},{"epoch":26130162,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":569.09,"free":3401.41},{"epoch":26130163,"idl":86.99,"recv":0.05,"send":0.06,"writ":1.58,"used":646.87,"free":3323.62},{"epoch":26130164,"idl":92.76,"recv":0.03,"send":0.93,"writ":3.72,"used":1037.75,"free":2932.79},{"epoch":26130165,"idl":99.63,"recv":0.02,"send":0.05,"writ":0.35,"used":716.78,"free":3253.78},{"epoch":26130166,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":564.56,"free":3406},{"epoch":26130167,"idl":99.88,"recv":0.01,"send":0,"writ":0.23,"used":564.84,"free":3405.71},{"epoch":26130168,"idl":81.12,"recv":0.03,"send":0.84,"writ":4.82,"used":878.02,"free":3092.51},{"epoch":26130169,"idl":99.78,"recv":0,"send":0.06,"writ":0.25,"used":786.8,"free":3183.73},{"epoch":26130170,"idl":92.25,"recv":0.01,"send":0,"writ":0.83,"used":600.25,"free":3370.3},{"epoch":26130171,"idl":88.25,"recv":0.03,"send":0.91,"writ":4.05,"used":1049.74,"free":2920.79},{"epoch":26130172,"idl":99.5,"recv":0.02,"send":0.91,"writ":0.19,"used":619.74,"free":3350.8},{"epoch":26130173,"idl":99.7,"recv":0,"send":0.01,"writ":0.49,"used":567.24,"free":3403.29},{"epoch":26130174,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":567.08,"free":3403.45},{"epoch":26130175,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":566.59,"free":3403.95},{"epoch":26130176,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":566.55,"free":3403.99},{"epoch":26130177,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":566.53,"free":3404},{"epoch":26130178,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":567.5,"free":3403.03},{"epoch":26130179,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":567.46,"free":3403.06},{"epoch":26130180,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":566.99,"free":3403.56},{"epoch":26130181,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":566.97,"free":3403.57},{"epoch":26130182,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":566.94,"free":3403.6},{"epoch":26130183,"idl":99.72,"recv":0,"send":0,"writ":0.4,"used":567.75,"free":3402.78},{"epoch":26130184,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":568.1,"free":3402.43},{"epoch":26130185,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":567.16,"free":3403.38},{"epoch":26130186,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":567.1,"free":3403.44},{"epoch":26130187,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":567.07,"free":3403.46},{"epoch":26130188,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":567.4,"free":3403.13},{"epoch":26130189,"idl":99.64,"recv":0,"send":0,"writ":0.56,"used":567.26,"free":3403.24},{"epoch":26130190,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":566.55,"free":3403.97},{"epoch":26130191,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":566.5,"free":3404.01},{"epoch":26130192,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":566.48,"free":3404.03},{"epoch":26130193,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":566.46,"free":3404.04},{"epoch":26130194,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":567.75,"free":3402.76},{"epoch":26130195,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":567.02,"free":3403.52},{"epoch":26130196,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":566.86,"free":3403.7},{"epoch":26130197,"idl":99.82,"recv":0,"send":0.01,"writ":0.23,"used":566.82,"free":3403.73},{"epoch":26130198,"idl":99.88,"recv":0.02,"send":0.76,"writ":0.14,"used":566.8,"free":3403.74},{"epoch":26130199,"idl":99.58,"recv":0.04,"send":1.69,"writ":0.63,"used":567.61,"free":3402.91},{"epoch":26130200,"idl":99.82,"recv":0,"send":0.03,"writ":0.35,"used":567,"free":3403.54},{"epoch":26130201,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":566.95,"free":3403.58},{"epoch":26130202,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":566.93,"free":3403.6},{"epoch":26130203,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":566.91,"free":3403.61},{"epoch":26130204,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":568.49,"free":3402.03},{"epoch":26130205,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":567.85,"free":3402.68},{"epoch":26130206,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":567.01,"free":3403.52},{"epoch":26130207,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":566.82,"free":3403.7},{"epoch":26130208,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":566.79,"free":3403.73},{"epoch":26130209,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":567.44,"free":3403.07},{"epoch":26130210,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":566.29,"free":3404.24},{"epoch":26130211,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":566.27,"free":3404.26},{"epoch":26130212,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":566.23,"free":3404.29},{"epoch":26130213,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":566.22,"free":3404.3},{"epoch":26130214,"idl":99.77,"recv":0,"send":0,"writ":0.49,"used":566.96,"free":3403.55},{"epoch":26130215,"idl":99.8,"recv":0,"send":0,"writ":0.42,"used":567.78,"free":3402.75},{"epoch":26130216,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":555.76,"free":3414.86},{"epoch":26130217,"idl":99.88,"recv":0.01,"send":0.04,"writ":0.18,"used":515.46,"free":3455.5},{"epoch":26130218,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":515.59,"free":3455.37},{"epoch":26130219,"idl":99.52,"recv":0,"send":0,"writ":0.68,"used":515.91,"free":3455.02},{"epoch":26130220,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":514.63,"free":3456.33},{"epoch":26130221,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":514.58,"free":3456.37},{"epoch":26130222,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":514.74,"free":3456.21},{"epoch":26130223,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":514.72,"free":3456.22},{"epoch":26130224,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":514.7,"free":3456.24},{"epoch":26130225,"idl":99.64,"recv":0,"send":0,"writ":0.68,"used":515.99,"free":3454.97},{"epoch":26130226,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.42,"free":3455.54},{"epoch":26130227,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.41,"free":3455.54},{"epoch":26130228,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.38,"free":3455.56},{"epoch":26130229,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.36,"free":3455.58},{"epoch":26130230,"idl":99.63,"recv":0,"send":0,"writ":0.76,"used":516,"free":3454.95},{"epoch":26130231,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":515.59,"free":3455.35},{"epoch":26130232,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.56,"free":3455.38},{"epoch":26130233,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":515.55,"free":3455.38},{"epoch":26130234,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":515.53,"free":3455.4},{"epoch":26130235,"idl":99.65,"recv":0,"send":0,"writ":0.72,"used":516.52,"free":3454.43},{"epoch":26130236,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.18,"free":3454.77},{"epoch":26130237,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":516.17,"free":3454.77},{"epoch":26130238,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":516.16,"free":3454.78},{"epoch":26130239,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.13,"free":3454.8},{"epoch":26130240,"idl":99.63,"recv":0,"send":0,"writ":0.73,"used":516.42,"free":3454.53},{"epoch":26130241,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":515.87,"free":3455.07},{"epoch":26130242,"idl":98.48,"recv":0,"send":0,"writ":0.18,"used":515.85,"free":3455.09},{"epoch":26130243,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.83,"free":3455.11},{"epoch":26130244,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":515.81,"free":3455.12},{"epoch":26130245,"idl":99.64,"recv":0,"send":0,"writ":0.79,"used":516.14,"free":3454.81},{"epoch":26130246,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":516.04,"free":3454.9},{"epoch":26130247,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":516.09,"free":3454.85},{"epoch":26130248,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.19,"free":3454.75},{"epoch":26130249,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":515.93,"free":3454.98},{"epoch":26130250,"idl":99.59,"recv":0,"send":0,"writ":0.7,"used":515.46,"free":3455.47},{"epoch":26130251,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":515.39,"free":3455.53},{"epoch":26130252,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":515.37,"free":3455.55},{"epoch":26130253,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":515.34,"free":3455.57},{"epoch":26130254,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.33,"free":3455.58},{"epoch":26130255,"idl":99.64,"recv":0,"send":0,"writ":0.72,"used":516,"free":3454.93},{"epoch":26130256,"idl":99,"recv":0,"send":0,"writ":0.2,"used":516.05,"free":3454.88},{"epoch":26130257,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":515.8,"free":3455.12},{"epoch":26130258,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":515.84,"free":3455.07},{"epoch":26130259,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":515.92,"free":3454.99},{"epoch":26130260,"idl":99.71,"recv":0,"send":0,"writ":0.68,"used":516.32,"free":3454.62},{"epoch":26130261,"idl":99.9,"recv":0,"send":0,"writ":0.25,"used":516.16,"free":3454.78},{"epoch":26130262,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.13,"free":3454.8},{"epoch":26130263,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.13,"free":3454.8},{"epoch":26130264,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.1,"free":3454.82},{"epoch":26130265,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":515.87,"free":3455.07},{"epoch":26130266,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":515.97,"free":3454.97},{"epoch":26130267,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.57,"free":3455.36},{"epoch":26130268,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.54,"free":3455.38},{"epoch":26130269,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.54,"free":3455.38},{"epoch":26130270,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":515.05,"free":3455.89},{"epoch":26130271,"idl":94.98,"recv":0.28,"send":0.01,"writ":260.19,"used":528.36,"free":3442.22},{"epoch":26130272,"idl":99.9,"recv":0,"send":0,"writ":0.23,"used":518.51,"free":3451.63},{"epoch":26130273,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":518.48,"free":3451.65},{"epoch":26130274,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":518.48,"free":3451.65},{"epoch":26130275,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":518.37,"free":3451.77},{"epoch":26130276,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":517.48,"free":3452.69},{"epoch":26130277,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":515.76,"free":3454.42},{"epoch":26130278,"idl":99.49,"recv":0,"send":0,"writ":0.31,"used":516.07,"free":3454.1},{"epoch":26130279,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":515.71,"free":3454.42},{"epoch":26130280,"idl":99.81,"recv":0,"send":0,"writ":0.37,"used":514.96,"free":3455.19},{"epoch":26130281,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":515.72,"free":3454.45},{"epoch":26130282,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":515.89,"free":3454.28},{"epoch":26130283,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":515.86,"free":3454.31},{"epoch":26130284,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.87,"free":3454.35},{"epoch":26130285,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":515.17,"free":3455.07},{"epoch":26130286,"idl":99.71,"recv":0,"send":0,"writ":0.62,"used":515.89,"free":3454.34},{"epoch":26130287,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":516.19,"free":3454.05},{"epoch":26130288,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":516.24,"free":3454},{"epoch":26130289,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":516.22,"free":3454.02},{"epoch":26130290,"idl":99.73,"recv":0,"send":0,"writ":0.35,"used":516.21,"free":3454.04},{"epoch":26130291,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":516.61,"free":3453.64},{"epoch":26130292,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":516.41,"free":3453.83},{"epoch":26130293,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":516.39,"free":3453.84},{"epoch":26130294,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.37,"free":3453.87},{"epoch":26130295,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":516.38,"free":3453.87},{"epoch":26130296,"idl":99.65,"recv":0,"send":0,"writ":0.38,"used":516.79,"free":3453.45},{"epoch":26130297,"idl":99.88,"recv":0,"send":0,"writ":0.4,"used":514.86,"free":3455.38},{"epoch":26130298,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":514.84,"free":3455.4},{"epoch":26130299,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":514.94,"free":3455.29},{"epoch":26130300,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":516.46,"free":3453.79},{"epoch":26130301,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.46,"free":3453.78},{"epoch":26130302,"idl":99.26,"recv":0,"send":0,"writ":0.59,"used":517.09,"free":3453.15},{"epoch":26130303,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":516.43,"free":3453.8},{"epoch":26130304,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.4,"free":3453.82},{"epoch":26130305,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":515.2,"free":3455.05},{"epoch":26130306,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.16,"free":3455.08},{"epoch":26130307,"idl":98.94,"recv":0,"send":0,"writ":0.53,"used":516.44,"free":3453.8},{"epoch":26130308,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":516.35,"free":3453.89},{"epoch":26130309,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":516.33,"free":3453.88},{"epoch":26130310,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":515.59,"free":3454.63},{"epoch":26130311,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":515.68,"free":3454.53},{"epoch":26130312,"idl":99.73,"recv":0,"send":0,"writ":0.53,"used":516.38,"free":3453.83},{"epoch":26130313,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.19,"free":3454.01},{"epoch":26130314,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":516.17,"free":3454.05},{"epoch":26130315,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":515.98,"free":3454.26},{"epoch":26130316,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":515.91,"free":3454.33},{"epoch":26130317,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":516.01,"free":3454.22},{"epoch":26130318,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.63,"free":3454.6},{"epoch":26130319,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":515.61,"free":3454.61},{"epoch":26130320,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":515.61,"free":3454.63},{"epoch":26130321,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.59,"free":3454.64},{"epoch":26130322,"idl":99.7,"recv":0,"send":0,"writ":0.39,"used":516.14,"free":3454.09},{"epoch":26130323,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":516.04,"free":3454.18},{"epoch":26130324,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":516.2,"free":3454.02},{"epoch":26130325,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":516.45,"free":3453.79},{"epoch":26130326,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.44,"free":3453.79},{"epoch":26130327,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":516.92,"free":3453.31},{"epoch":26130328,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":516.41,"free":3453.81},{"epoch":26130329,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.38,"free":3453.84},{"epoch":26130330,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":516.64,"free":3453.6},{"epoch":26130331,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":516.61,"free":3453.62},{"epoch":26130332,"idl":99.67,"recv":0,"send":0,"writ":0.41,"used":516.9,"free":3453.33},{"epoch":26130333,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":516.07,"free":3454.15},{"epoch":26130334,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.06,"free":3454.16},{"epoch":26130335,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":516.3,"free":3453.93},{"epoch":26130336,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.41,"free":3453.82},{"epoch":26130337,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":516.08,"free":3454.15},{"epoch":26130338,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":516.52,"free":3453.7},{"epoch":26130339,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":516.65,"free":3453.55},{"epoch":26130340,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":515.94,"free":3454.27},{"epoch":26130341,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.9,"free":3454.31},{"epoch":26130342,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.88,"free":3454.32},{"epoch":26130343,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":516.66,"free":3453.54},{"epoch":26130344,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.33,"free":3453.87},{"epoch":26130345,"idl":99.74,"recv":0,"send":0.01,"writ":0.33,"used":514.65,"free":3455.56},{"epoch":26130346,"idl":99.84,"recv":0,"send":0.01,"writ":0.14,"used":514.32,"free":3455.89},{"epoch":26130347,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":514.4,"free":3455.8},{"epoch":26130348,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":515.79,"free":3454.41},{"epoch":26130349,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.71,"free":3454.49},{"epoch":26130350,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":515.95,"free":3454.26},{"epoch":26130351,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.94,"free":3454.27},{"epoch":26130352,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.92,"free":3454.29},{"epoch":26130353,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":516.3,"free":3453.9},{"epoch":26130354,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.38,"free":3454.81},{"epoch":26130355,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":515.64,"free":3454.57},{"epoch":26130356,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.6,"free":3454.61},{"epoch":26130357,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.58,"free":3454.63},{"epoch":26130358,"idl":99.7,"recv":0,"send":0,"writ":0.49,"used":516.1,"free":3454.09},{"epoch":26130359,"idl":99.81,"recv":0,"send":0,"writ":0.25,"used":515.62,"free":3454.56},{"epoch":26130360,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":514.3,"free":3455.91},{"epoch":26130361,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":514.23,"free":3455.97},{"epoch":26130362,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":514.21,"free":3455.99},{"epoch":26130363,"idl":99.67,"recv":0,"send":0,"writ":0.44,"used":514.98,"free":3455.21},{"epoch":26130364,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":515.64,"free":3454.54},{"epoch":26130365,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":515.4,"free":3454.8},{"epoch":26130366,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.37,"free":3454.82},{"epoch":26130367,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.36,"free":3454.83},{"epoch":26130368,"idl":99.67,"recv":0,"send":0,"writ":0.39,"used":515.71,"free":3454.48},{"epoch":26130369,"idl":99.76,"recv":0,"send":0,"writ":0.43,"used":515.79,"free":3454.37},{"epoch":26130370,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":515.79,"free":3454.39},{"epoch":26130371,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.9,"free":3454.28},{"epoch":26130372,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":515.95,"free":3454.22},{"epoch":26130373,"idl":99.62,"recv":0,"send":0,"writ":0.42,"used":516.27,"free":3453.9},{"epoch":26130374,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":515.89,"free":3454.26},{"epoch":26130375,"idl":99.69,"recv":0,"send":0,"writ":0.36,"used":514.68,"free":3455.49},{"epoch":26130376,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":514.66,"free":3455.51},{"epoch":26130377,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":514.63,"free":3455.53},{"epoch":26130378,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":514.62,"free":3455.54},{"epoch":26130379,"idl":99.67,"recv":0,"send":0,"writ":0.53,"used":515.6,"free":3454.56},{"epoch":26130380,"idl":99.68,"recv":0,"send":0,"writ":0.33,"used":515.34,"free":3454.83},{"epoch":26130381,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":515.3,"free":3454.87},{"epoch":26130382,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.29,"free":3454.88},{"epoch":26130383,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.39,"free":3454.77},{"epoch":26130384,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":516.44,"free":3453.72},{"epoch":26130385,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":515.93,"free":3454.24},{"epoch":26130386,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.91,"free":3454.26},{"epoch":26130387,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":515.88,"free":3454.28},{"epoch":26130388,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.88,"free":3454.28},{"epoch":26130389,"idl":99.63,"recv":0,"send":0,"writ":0.52,"used":516.21,"free":3453.94},{"epoch":26130390,"idl":99.71,"recv":0,"send":0,"writ":0.41,"used":515.19,"free":3454.99},{"epoch":26130391,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.09,"free":3455.08},{"epoch":26130392,"idl":99.79,"recv":0,"send":0,"writ":0.13,"used":515.08,"free":3455.09},{"epoch":26130393,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.05,"free":3455.11},{"epoch":26130394,"idl":99.68,"recv":0,"send":0.02,"writ":0.43,"used":515.5,"free":3454.66},{"epoch":26130395,"idl":99.7,"recv":0,"send":0,"writ":0.48,"used":515.9,"free":3454.27},{"epoch":26130396,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":515.9,"free":3454.26},{"epoch":26130397,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":515.7,"free":3454.46},{"epoch":26130398,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":515.62,"free":3454.54},{"epoch":26130399,"idl":99.5,"recv":0,"send":0,"writ":0.65,"used":516.19,"free":3453.94},{"epoch":26130400,"idl":99.72,"recv":0,"send":0,"writ":0.37,"used":516.07,"free":3454.07},{"epoch":26130401,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":516.06,"free":3454.08},{"epoch":26130402,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":516.04,"free":3454.1},{"epoch":26130403,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":516.02,"free":3454.11},{"epoch":26130404,"idl":99.62,"recv":0,"send":0.02,"writ":0.56,"used":516.42,"free":3453.71},{"epoch":26130405,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":515.91,"free":3454.23},{"epoch":26130406,"idl":99.74,"recv":0,"send":0,"writ":0.13,"used":515.89,"free":3454.25},{"epoch":26130407,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":515.87,"free":3454.27},{"epoch":26130408,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.85,"free":3454.28},{"epoch":26130409,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":516.18,"free":3453.96},{"epoch":26130410,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":515.84,"free":3454.32},{"epoch":26130411,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.82,"free":3454.34},{"epoch":26130412,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.8,"free":3454.36},{"epoch":26130413,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.78,"free":3454.38},{"epoch":26130414,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":515.76,"free":3454.39},{"epoch":26130415,"idl":99.57,"recv":0,"send":0,"writ":0.71,"used":516.71,"free":3453.45},{"epoch":26130416,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":516.12,"free":3454.04},{"epoch":26130417,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.15,"free":3454},{"epoch":26130418,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":516.13,"free":3454.02},{"epoch":26130419,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.11,"free":3454.04},{"epoch":26130420,"idl":99.38,"recv":0,"send":0,"writ":0.76,"used":515.98,"free":3454.18},{"epoch":26130421,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":515.6,"free":3454.56},{"epoch":26130422,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.58,"free":3454.58},{"epoch":26130423,"idl":98.06,"recv":0,"send":0,"writ":0.14,"used":515.55,"free":3454.6},{"epoch":26130424,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.52,"free":3454.62},{"epoch":26130425,"idl":99.61,"recv":0,"send":0,"writ":0.73,"used":516.37,"free":3453.79},{"epoch":26130426,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":515.95,"free":3454.21},{"epoch":26130427,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":515.82,"free":3454.33},{"epoch":26130428,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.93,"free":3454.22},{"epoch":26130429,"idl":99.65,"recv":0,"send":0,"writ":0.31,"used":516.16,"free":3453.97},{"epoch":26130430,"idl":99.51,"recv":0.01,"send":0.61,"writ":0.79,"used":515.67,"free":3454.46},{"epoch":26130431,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":515.93,"free":3454.2},{"epoch":26130432,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.91,"free":3454.23},{"epoch":26130433,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":515.87,"free":3454.26},{"epoch":26130434,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.86,"free":3454.27},{"epoch":26130435,"idl":99.63,"recv":0,"send":0,"writ":0.68,"used":516.2,"free":3453.94},{"epoch":26130436,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":515.84,"free":3454.3},{"epoch":26130437,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":515.81,"free":3454.32},{"epoch":26130438,"idl":98.64,"recv":0,"send":0.01,"writ":0.17,"used":515.78,"free":3454.35},{"epoch":26130439,"idl":99.83,"recv":0,"send":0.02,"writ":0.17,"used":515.87,"free":3454.25},{"epoch":26130440,"idl":97.52,"recv":0,"send":0.01,"writ":0.73,"used":516.6,"free":3453.54},{"epoch":26130441,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.1,"free":3454.03},{"epoch":26130442,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":516.08,"free":3454.05},{"epoch":26130443,"idl":99.67,"recv":0,"send":0,"writ":0.16,"used":516.06,"free":3454.06},{"epoch":26130444,"idl":99.46,"recv":0,"send":0,"writ":0.15,"used":516.04,"free":3454.08},{"epoch":26130445,"idl":99.66,"recv":0,"send":0,"writ":0.49,"used":516.82,"free":3453.32},{"epoch":26130446,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":516.27,"free":3453.86},{"epoch":26130447,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.25,"free":3453.88},{"epoch":26130448,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.34,"free":3453.79},{"epoch":26130449,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.39,"free":3453.72},{"epoch":26130450,"idl":99.59,"recv":0,"send":0,"writ":0.35,"used":516.4,"free":3453.74},{"epoch":26130451,"idl":99.71,"recv":0,"send":0,"writ":0.52,"used":516.72,"free":3453.41},{"epoch":26130452,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":516.35,"free":3453.77},{"epoch":26130453,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":516.33,"free":3453.8},{"epoch":26130454,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":516.29,"free":3453.82},{"epoch":26130455,"idl":99.71,"recv":0,"send":0,"writ":0.35,"used":515.08,"free":3455.05},{"epoch":26130456,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":516.64,"free":3453.49},{"epoch":26130457,"idl":98.53,"recv":0,"send":0,"writ":0.2,"used":516.16,"free":3453.97},{"epoch":26130458,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":516.06,"free":3454.07},{"epoch":26130459,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":516.42,"free":3453.68},{"epoch":26130460,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":515.98,"free":3454.14},{"epoch":26130461,"idl":98.79,"recv":0,"send":0.02,"writ":0.61,"used":516.99,"free":3453.12},{"epoch":26130462,"idl":99.82,"recv":0,"send":0.01,"writ":0.18,"used":516.56,"free":3453.54},{"epoch":26130463,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":516.56,"free":3453.54},{"epoch":26130464,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":516.52,"free":3453.57},{"epoch":26130465,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":515.34,"free":3454.77},{"epoch":26130466,"idl":99.65,"recv":0,"send":0,"writ":0.48,"used":516,"free":3454.11},{"epoch":26130467,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":516,"free":3454.11},{"epoch":26130468,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.97,"free":3454.13},{"epoch":26130469,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":516.09,"free":3454},{"epoch":26130470,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":515.66,"free":3454.45},{"epoch":26130471,"idl":99.07,"recv":0,"send":0,"writ":0.53,"used":516.35,"free":3453.75},{"epoch":26130472,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.34,"free":3453.76},{"epoch":26130473,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.32,"free":3453.78},{"epoch":26130474,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":516.3,"free":3453.79},{"epoch":26130475,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":516.3,"free":3453.81},{"epoch":26130476,"idl":99.7,"recv":0,"send":0,"writ":0.44,"used":516.95,"free":3453.18},{"epoch":26130477,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":516.26,"free":3453.86},{"epoch":26130478,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":516.24,"free":3453.87},{"epoch":26130479,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.23,"free":3453.88},{"epoch":26130480,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":515.06,"free":3455.06},{"epoch":26130481,"idl":99.73,"recv":0,"send":0,"writ":0.49,"used":515.7,"free":3454.42},{"epoch":26130482,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":516.38,"free":3453.74},{"epoch":26130483,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.36,"free":3453.78},{"epoch":26130484,"idl":98.77,"recv":0,"send":0,"writ":0.15,"used":516.34,"free":3453.79},{"epoch":26130485,"idl":98.13,"recv":0,"send":0,"writ":0.36,"used":516.1,"free":3454.05},{"epoch":26130486,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":516.47,"free":3453.67},{"epoch":26130487,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":516.3,"free":3453.83},{"epoch":26130488,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.28,"free":3453.85},{"epoch":26130489,"idl":98.87,"recv":0,"send":0,"writ":0.33,"used":516.06,"free":3454.04},{"epoch":26130490,"idl":99.4,"recv":0,"send":0,"writ":0.3,"used":516.49,"free":3453.63},{"epoch":26130491,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.46,"free":3453.65},{"epoch":26130492,"idl":98.9,"recv":0,"send":0,"writ":0.54,"used":517.1,"free":3453.01},{"epoch":26130493,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.4,"free":3453.71},{"epoch":26130494,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":516.38,"free":3453.74},{"epoch":26130495,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":515.26,"free":3454.88},{"epoch":26130496,"idl":99.37,"recv":0,"send":0,"writ":0.14,"used":514.9,"free":3455.23},{"epoch":26130497,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":516.01,"free":3454.12},{"epoch":26130498,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":515.84,"free":3454.28},{"epoch":26130499,"idl":99.28,"recv":0,"send":0,"writ":0.13,"used":515.81,"free":3454.31},{"epoch":26130500,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":514.87,"free":3455.27},{"epoch":26130501,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":514.81,"free":3455.33},{"epoch":26130502,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":515.54,"free":3454.6},{"epoch":26130503,"idl":99.67,"recv":0,"send":0,"writ":0.14,"used":515.26,"free":3454.87},{"epoch":26130504,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":515.36,"free":3454.76},{"epoch":26130505,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":515.91,"free":3454.23},{"epoch":26130506,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.9,"free":3454.24},{"epoch":26130507,"idl":99.76,"recv":0,"send":0,"writ":0.53,"used":516.24,"free":3453.89},{"epoch":26130508,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.86,"free":3454.26},{"epoch":26130509,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.84,"free":3454.28},{"epoch":26130510,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":515.85,"free":3454.29},{"epoch":26130511,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":515.82,"free":3454.32},{"epoch":26130512,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":516.25,"free":3453.88},{"epoch":26130513,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":515.77,"free":3454.36},{"epoch":26130514,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":515.75,"free":3454.38},{"epoch":26130515,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":515.76,"free":3454.39},{"epoch":26130516,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.87,"free":3454.27},{"epoch":26130517,"idl":99.4,"recv":0,"send":0,"writ":0.57,"used":516.1,"free":3454.04},{"epoch":26130518,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":515.63,"free":3454.5},{"epoch":26130519,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":515.85,"free":3454.27},{"epoch":26130520,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":515.86,"free":3454.28},{"epoch":26130521,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.82,"free":3454.31},{"epoch":26130522,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":516.24,"free":3453.89},{"epoch":26130523,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.02,"free":3454.1},{"epoch":26130524,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":516.02,"free":3454.1},{"epoch":26130525,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":514.31,"free":3455.82},{"epoch":26130526,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":514.27,"free":3455.86},{"epoch":26130527,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":514.89,"free":3455.23},{"epoch":26130528,"idl":98.13,"recv":0,"send":0,"writ":0.14,"used":515.89,"free":3454.23},{"epoch":26130529,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.87,"free":3454.25},{"epoch":26130530,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":516.11,"free":3454.02},{"epoch":26130531,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.09,"free":3454.04},{"epoch":26130532,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.08,"free":3454.05},{"epoch":26130533,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":516,"free":3454.11},{"epoch":26130534,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":515.53,"free":3454.58},{"epoch":26130535,"idl":98.58,"recv":0,"send":0,"writ":0.34,"used":514.91,"free":3455.21},{"epoch":26130536,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":514.78,"free":3455.34},{"epoch":26130537,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":514.76,"free":3455.36},{"epoch":26130538,"idl":99.55,"recv":0,"send":0,"writ":0.53,"used":516.02,"free":3454.09},{"epoch":26130539,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":516.13,"free":3453.98},{"epoch":26130540,"idl":98.6,"recv":0,"send":0,"writ":10.86,"used":515.15,"free":3455.33},{"epoch":26130541,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.07,"free":3455.43},{"epoch":26130542,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.04,"free":3455.45},{"epoch":26130543,"idl":99.74,"recv":0,"send":0,"writ":0.53,"used":515.08,"free":3455.41},{"epoch":26130544,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":514.51,"free":3455.99},{"epoch":26130545,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":515.74,"free":3454.8},{"epoch":26130546,"idl":99.52,"recv":0,"send":0,"writ":0.14,"used":515.73,"free":3454.81},{"epoch":26130547,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":515.71,"free":3454.82},{"epoch":26130548,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":515.89,"free":3454.63},{"epoch":26130549,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":516.15,"free":3454.36},{"epoch":26130550,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":515.91,"free":3454.61},{"epoch":26130551,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.02,"free":3454.5},{"epoch":26130552,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.05,"free":3454.46},{"epoch":26130553,"idl":98.6,"recv":0,"send":0,"writ":0.54,"used":516.7,"free":3453.8},{"epoch":26130554,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516,"free":3454.5},{"epoch":26130555,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":516.03,"free":3454.49},{"epoch":26130556,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516,"free":3454.52},{"epoch":26130557,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":515.98,"free":3454.53},{"epoch":26130558,"idl":99.77,"recv":0,"send":0,"writ":0.39,"used":516.29,"free":3454.22},{"epoch":26130559,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":515.2,"free":3455.3},{"epoch":26130560,"idl":96.19,"recv":0,"send":0,"writ":0.32,"used":515.69,"free":3454.83},{"epoch":26130561,"idl":99.86,"recv":0,"send":0.02,"writ":0.2,"used":515.73,"free":3454.78},{"epoch":26130562,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":515.8,"free":3454.7},{"epoch":26130563,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":516.2,"free":3454.3},{"epoch":26130564,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":515.76,"free":3454.73},{"epoch":26130565,"idl":99.36,"recv":0,"send":0,"writ":0.35,"used":516.01,"free":3454.5},{"epoch":26130566,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":515.99,"free":3454.52},{"epoch":26130567,"idl":98.47,"recv":0,"send":0,"writ":0.17,"used":515.96,"free":3454.54},{"epoch":26130568,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.94,"free":3454.56},{"epoch":26130569,"idl":99.74,"recv":0,"send":0,"writ":0.53,"used":515.36,"free":3455.14},{"epoch":26130570,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":515.03,"free":3455.48},{"epoch":26130571,"idl":99.92,"recv":0,"send":0,"writ":0.12,"used":514.92,"free":3455.59},{"epoch":26130572,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":514.92,"free":3455.58},{"epoch":26130573,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":515.09,"free":3455.41},{"epoch":26130574,"idl":99.7,"recv":0,"send":0.01,"writ":0.52,"used":515.23,"free":3455.26},{"epoch":26130575,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":515.04,"free":3455.47},{"epoch":26130576,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":515.03,"free":3455.48},{"epoch":26130577,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":514.86,"free":3455.65},{"epoch":26130578,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":514.74,"free":3455.76},{"epoch":26130579,"idl":99.64,"recv":0,"send":0,"writ":0.68,"used":516.38,"free":3454.11},{"epoch":26130580,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":516.19,"free":3454.31},{"epoch":26130581,"idl":98.89,"recv":0,"send":0,"writ":0.2,"used":516.17,"free":3454.32},{"epoch":26130582,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.15,"free":3454.34},{"epoch":26130583,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.2,"free":3454.29},{"epoch":26130584,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":516.52,"free":3453.98},{"epoch":26130585,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":516.3,"free":3454.22},{"epoch":26130586,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.28,"free":3454.23},{"epoch":26130587,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":516.27,"free":3454.25},{"epoch":26130588,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.24,"free":3454.27},{"epoch":26130589,"idl":99.74,"recv":0,"send":0,"writ":0.53,"used":516.58,"free":3453.93},{"epoch":26130590,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":516.47,"free":3454.05},{"epoch":26130591,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":516.47,"free":3454.05},{"epoch":26130592,"idl":98.07,"recv":0,"send":0,"writ":0.18,"used":516.43,"free":3454.08},{"epoch":26130593,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.43,"free":3454.08},{"epoch":26130594,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":517.02,"free":3453.48},{"epoch":26130595,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":516.32,"free":3454.2},{"epoch":26130596,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.26,"free":3454.26},{"epoch":26130597,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":516.31,"free":3454.2},{"epoch":26130598,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":516.28,"free":3454.22},{"epoch":26130599,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":516.68,"free":3453.82},{"epoch":26130600,"idl":99.75,"recv":0,"send":0,"writ":0.61,"used":516.02,"free":3454.5},{"epoch":26130601,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":516,"free":3454.51},{"epoch":26130602,"idl":99.43,"recv":0,"send":0,"writ":0.14,"used":515.99,"free":3454.52},{"epoch":26130603,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.96,"free":3454.54},{"epoch":26130604,"idl":98.29,"recv":0,"send":0,"writ":0.14,"used":515.95,"free":3454.55},{"epoch":26130605,"idl":99.52,"recv":0,"send":0,"writ":0.64,"used":515.41,"free":3455.1},{"epoch":26130606,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":514.94,"free":3455.57},{"epoch":26130607,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":514.92,"free":3455.59},{"epoch":26130608,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":514.9,"free":3455.6},{"epoch":26130609,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":515.95,"free":3454.53},{"epoch":26130610,"idl":99.67,"recv":0,"send":0,"writ":0.65,"used":515.33,"free":3455.16},{"epoch":26130611,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":514.55,"free":3455.94},{"epoch":26130612,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":514.52,"free":3455.96},{"epoch":26130613,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":514.51,"free":3455.97},{"epoch":26130614,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":514.26,"free":3456.24},{"epoch":26130615,"idl":99.7,"recv":0,"send":0,"writ":0.69,"used":516.23,"free":3454.28},{"epoch":26130616,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":515.94,"free":3454.56},{"epoch":26130617,"idl":99.8,"recv":0,"send":0,"writ":0.25,"used":515.93,"free":3454.57},{"epoch":26130618,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.9,"free":3454.59},{"epoch":26130619,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.89,"free":3454.61},{"epoch":26130620,"idl":99.68,"recv":0,"send":0,"writ":0.64,"used":515.68,"free":3454.83},{"epoch":26130621,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":515.55,"free":3454.95},{"epoch":26130622,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":515.53,"free":3454.97},{"epoch":26130623,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":515.52,"free":3454.97},{"epoch":26130624,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":515.5,"free":3455},{"epoch":26130625,"idl":99.59,"recv":0,"send":0,"writ":0.69,"used":516.58,"free":3453.93},{"epoch":26130626,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.22,"free":3454.29},{"epoch":26130627,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.19,"free":3454.31},{"epoch":26130628,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.17,"free":3454.33},{"epoch":26130629,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.15,"free":3454.34},{"epoch":26130630,"idl":99.46,"recv":0,"send":0,"writ":0.57,"used":515.92,"free":3454.6},{"epoch":26130631,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":516.38,"free":3454.14},{"epoch":26130632,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.43,"free":3454.09},{"epoch":26130633,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.53,"free":3453.98},{"epoch":26130634,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.5,"free":3454},{"epoch":26130635,"idl":97.57,"recv":0.31,"send":0.01,"writ":64.75,"used":518.84,"free":3451.02},{"epoch":26130636,"idl":96.83,"recv":0,"send":0,"writ":195.83,"used":528.01,"free":3444.2},{"epoch":26130637,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":518.39,"free":3452},{"epoch":26130638,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":518.27,"free":3452.12},{"epoch":26130639,"idl":99.24,"recv":0,"send":0,"writ":0.3,"used":518,"free":3452.35},{"epoch":26130640,"idl":99.66,"recv":0,"send":0,"writ":0.48,"used":519.08,"free":3451.29},{"epoch":26130641,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":516.77,"free":3453.63},{"epoch":26130642,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.55,"free":3453.85},{"epoch":26130643,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.52,"free":3453.87},{"epoch":26130644,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.62,"free":3453.77},{"epoch":26130645,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":515.47,"free":3454.94},{"epoch":26130646,"idl":99.7,"recv":0,"send":0,"writ":0.51,"used":516.17,"free":3454.27},{"epoch":26130647,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":515.43,"free":3455.01},{"epoch":26130648,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.42,"free":3455.02},{"epoch":26130649,"idl":99.59,"recv":0,"send":0,"writ":0.14,"used":515.39,"free":3455.04},{"epoch":26130650,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":515.64,"free":3454.8},{"epoch":26130651,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":516.23,"free":3454.22},{"epoch":26130652,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":515.6,"free":3454.85},{"epoch":26130653,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.58,"free":3454.87},{"epoch":26130654,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.56,"free":3454.88},{"epoch":26130655,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":515.57,"free":3454.89},{"epoch":26130656,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":516.24,"free":3454.22},{"epoch":26130657,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.95,"free":3454.5},{"epoch":26130658,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":515.94,"free":3454.51},{"epoch":26130659,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":515.9,"free":3454.54},{"epoch":26130660,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":514.94,"free":3455.52},{"epoch":26130661,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":515.52,"free":3454.94},{"epoch":26130662,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":515.6,"free":3454.85},{"epoch":26130663,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":515.6,"free":3454.85},{"epoch":26130664,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":515.57,"free":3454.87},{"epoch":26130665,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":515.58,"free":3454.88},{"epoch":26130666,"idl":99.79,"recv":0,"send":0,"writ":0.49,"used":515.71,"free":3454.74},{"epoch":26130667,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":515.16,"free":3455.29},{"epoch":26130668,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":515.2,"free":3455.25},{"epoch":26130669,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":515.21,"free":3455.22},{"epoch":26130670,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":514.73,"free":3455.71},{"epoch":26130671,"idl":99.76,"recv":0,"send":0,"writ":0.47,"used":515.56,"free":3454.87},{"epoch":26130672,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":515.63,"free":3454.8},{"epoch":26130673,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.61,"free":3454.82},{"epoch":26130674,"idl":99.88,"recv":0,"send":0.01,"writ":0.18,"used":515.56,"free":3454.89},{"epoch":26130675,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":515.32,"free":3455.15},{"epoch":26130676,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":515.88,"free":3454.59},{"epoch":26130677,"idl":99.86,"recv":0,"send":0,"writ":0.45,"used":515.71,"free":3454.75},{"epoch":26130678,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":515.69,"free":3454.77},{"epoch":26130679,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":515.65,"free":3454.8},{"epoch":26130680,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":515.67,"free":3454.81},{"epoch":26130681,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":515.64,"free":3454.84},{"epoch":26130682,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":516.19,"free":3454.28},{"epoch":26130683,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":515.84,"free":3454.62},{"epoch":26130684,"idl":99.75,"recv":0,"send":0,"writ":0.2,"used":515.81,"free":3454.65},{"epoch":26130685,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":516.06,"free":3454.41},{"epoch":26130686,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":516.03,"free":3454.44},{"epoch":26130687,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":516.05,"free":3454.41},{"epoch":26130688,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":515.72,"free":3454.74},{"epoch":26130689,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":515.7,"free":3454.76},{"epoch":26130690,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":515.46,"free":3455.02},{"epoch":26130691,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":515.43,"free":3455.04},{"epoch":26130692,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":515.45,"free":3455.02},{"epoch":26130693,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":514.89,"free":3455.57},{"epoch":26130694,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":514.86,"free":3455.59},{"epoch":26130695,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":515.85,"free":3454.63},{"epoch":26130696,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.85,"free":3454.62},{"epoch":26130697,"idl":99.61,"recv":0,"send":0,"writ":0.51,"used":516.53,"free":3453.93},{"epoch":26130698,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":515.81,"free":3454.65},{"epoch":26130699,"idl":99.62,"recv":0,"send":0,"writ":0.3,"used":515.94,"free":3454.5},{"epoch":26130700,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":515.98,"free":3454.48},{"epoch":26130701,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":515.95,"free":3454.5},{"epoch":26130702,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":516.65,"free":3453.8},{"epoch":26130703,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":515.91,"free":3454.53},{"epoch":26130704,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":515.88,"free":3454.56},{"epoch":26130705,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":514.96,"free":3455.49},{"epoch":26130706,"idl":98.91,"recv":0,"send":0,"writ":0.18,"used":514.83,"free":3455.62},{"epoch":26130707,"idl":99.71,"recv":0,"send":0,"writ":0.42,"used":515.6,"free":3454.84},{"epoch":26130708,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":515.96,"free":3454.48},{"epoch":26130709,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.93,"free":3454.5},{"epoch":26130710,"idl":99.69,"recv":0,"send":0,"writ":0.27,"used":515.23,"free":3455.22},{"epoch":26130711,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.17,"free":3455.27},{"epoch":26130712,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":515.26,"free":3455.17},{"epoch":26130713,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":515.97,"free":3454.46},{"epoch":26130714,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":515.61,"free":3454.82},{"epoch":26130715,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":516.1,"free":3454.35},{"epoch":26130716,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.08,"free":3454.36},{"epoch":26130717,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.07,"free":3454.37},{"epoch":26130718,"idl":99.67,"recv":0,"send":0,"writ":0.53,"used":516.2,"free":3454.24},{"epoch":26130719,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":515.78,"free":3454.65},{"epoch":26130720,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":514.88,"free":3455.57},{"epoch":26130721,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":514.98,"free":3455.46},{"epoch":26130722,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":514.95,"free":3455.49},{"epoch":26130723,"idl":99.07,"recv":0,"send":0,"writ":0.53,"used":515.89,"free":3454.54},{"epoch":26130724,"idl":99.9,"recv":0,"send":0.01,"writ":0.16,"used":515.61,"free":3454.82},{"epoch":26130725,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":515.35,"free":3455.09},{"epoch":26130726,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.32,"free":3455.12},{"epoch":26130727,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":515.3,"free":3455.14},{"epoch":26130728,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":516.43,"free":3454},{"epoch":26130729,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":516.44,"free":3453.97},{"epoch":26130730,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":516.19,"free":3454.24},{"epoch":26130731,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":516.16,"free":3454.26},{"epoch":26130732,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.14,"free":3454.28},{"epoch":26130733,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":516.78,"free":3453.64},{"epoch":26130734,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":516.1,"free":3454.32},{"epoch":26130735,"idl":99.7,"recv":0,"send":0,"writ":0.27,"used":515.43,"free":3455.02},{"epoch":26130736,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.35,"free":3455.1},{"epoch":26130737,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":515.33,"free":3455.11},{"epoch":26130738,"idl":98.33,"recv":0,"send":0,"writ":0.55,"used":515.91,"free":3454.52},{"epoch":26130739,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":515.53,"free":3454.9},{"epoch":26130740,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":515.13,"free":3455.32},{"epoch":26130741,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.2,"free":3455.24},{"epoch":26130742,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":515.19,"free":3455.25},{"epoch":26130743,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":515.58,"free":3454.85},{"epoch":26130744,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":515.63,"free":3454.8},{"epoch":26130745,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":516.1,"free":3454.34},{"epoch":26130746,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.1,"free":3454.34},{"epoch":26130747,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.08,"free":3454.36},{"epoch":26130748,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.06,"free":3454.37},{"epoch":26130749,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":514.94,"free":3455.48},{"epoch":26130750,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":514.31,"free":3456.13},{"epoch":26130751,"idl":99.86,"recv":0,"send":0,"writ":0.12,"used":514.3,"free":3456.14},{"epoch":26130752,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":514.4,"free":3456.03},{"epoch":26130753,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":514.44,"free":3455.99},{"epoch":26130754,"idl":99.46,"recv":0,"send":0,"writ":0.56,"used":516.16,"free":3454.26},{"epoch":26130755,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":514.69,"free":3455.75},{"epoch":26130756,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":514.66,"free":3455.78},{"epoch":26130757,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":514.52,"free":3455.92},{"epoch":26130758,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":514.36,"free":3456.07},{"epoch":26130759,"idl":99.57,"recv":0,"send":0,"writ":0.75,"used":517,"free":3453.4},{"epoch":26130760,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":515.4,"free":3455.02},{"epoch":26130761,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.29,"free":3455.13},{"epoch":26130762,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.26,"free":3455.14},{"epoch":26130763,"idl":98.77,"recv":0,"send":0,"writ":0.16,"used":515.32,"free":3455.08},{"epoch":26130764,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":516.65,"free":3453.76},{"epoch":26130765,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":515.25,"free":3455.18},{"epoch":26130766,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.18,"free":3455.25},{"epoch":26130767,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.18,"free":3455.25},{"epoch":26130768,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.15,"free":3455.27},{"epoch":26130769,"idl":99.75,"recv":0,"send":0,"writ":0.52,"used":515.84,"free":3454.6},{"epoch":26130770,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":515.65,"free":3454.83},{"epoch":26130771,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":515.62,"free":3454.85},{"epoch":26130772,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":515.6,"free":3454.87},{"epoch":26130773,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.58,"free":3454.88},{"epoch":26130774,"idl":99.68,"recv":0,"send":0,"writ":0.51,"used":516.04,"free":3454.43},{"epoch":26130775,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":515.57,"free":3454.91},{"epoch":26130776,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.56,"free":3454.91},{"epoch":26130777,"idl":99.08,"recv":0,"send":0,"writ":0.15,"used":515.65,"free":3454.82},{"epoch":26130778,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.71,"free":3454.76},{"epoch":26130779,"idl":99.73,"recv":0,"send":0,"writ":0.39,"used":516.26,"free":3454.2},{"epoch":26130780,"idl":99.75,"recv":0,"send":0,"writ":0.38,"used":515.7,"free":3454.78},{"epoch":26130781,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.67,"free":3454.81},{"epoch":26130782,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.65,"free":3454.82},{"epoch":26130783,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.64,"free":3454.83},{"epoch":26130784,"idl":99.72,"recv":0,"send":0,"writ":0.4,"used":516.03,"free":3454.43},{"epoch":26130785,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":516.36,"free":3454.12},{"epoch":26130786,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":516.34,"free":3454.13},{"epoch":26130787,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":516.33,"free":3454.14},{"epoch":26130788,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.3,"free":3454.16},{"epoch":26130789,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":516.1,"free":3454.34},{"epoch":26130790,"idl":99.22,"recv":0,"send":0,"writ":0.68,"used":515.87,"free":3454.59},{"epoch":26130791,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.15,"free":3455.31},{"epoch":26130792,"idl":99.74,"recv":0,"send":0,"writ":0.14,"used":514.7,"free":3455.75},{"epoch":26130793,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":514.67,"free":3455.77},{"epoch":26130794,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":514.65,"free":3455.79},{"epoch":26130795,"idl":99.6,"recv":0,"send":0,"writ":0.64,"used":515.98,"free":3454.48},{"epoch":26130796,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.62,"free":3454.84},{"epoch":26130797,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":515.59,"free":3454.86},{"epoch":26130798,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.58,"free":3454.87},{"epoch":26130799,"idl":98.41,"recv":0,"send":0,"writ":0.15,"used":515.55,"free":3454.89},{"epoch":26130800,"idl":99.52,"recv":0,"send":0,"writ":0.6,"used":515.71,"free":3454.74},{"epoch":26130801,"idl":99.82,"recv":0,"send":0,"writ":0.22,"used":515.78,"free":3454.67},{"epoch":26130802,"idl":98.91,"recv":0,"send":0,"writ":0.14,"used":515.9,"free":3454.55},{"epoch":26130803,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.93,"free":3454.52},{"epoch":26130804,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.91,"free":3454.53},{"epoch":26130805,"idl":99.68,"recv":0,"send":0,"writ":0.68,"used":516.04,"free":3454.42},{"epoch":26130806,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":515.64,"free":3454.8},{"epoch":26130807,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.62,"free":3454.82},{"epoch":26130808,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.6,"free":3454.84},{"epoch":26130809,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.58,"free":3454.87},{"epoch":26130810,"idl":99.58,"recv":0,"send":0,"writ":0.61,"used":515.92,"free":3454.55},{"epoch":26130811,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":515.55,"free":3454.91},{"epoch":26130812,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.52,"free":3454.94},{"epoch":26130813,"idl":99.56,"recv":0,"send":0,"writ":0.14,"used":515.64,"free":3454.81},{"epoch":26130814,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.66,"free":3454.79},{"epoch":26130815,"idl":99.6,"recv":0,"send":0,"writ":0.54,"used":515.92,"free":3454.54},{"epoch":26130816,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":515.15,"free":3455.31},{"epoch":26130817,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":515.02,"free":3455.44},{"epoch":26130818,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":514.86,"free":3455.59},{"epoch":26130819,"idl":99.76,"recv":0,"send":0,"writ":0.4,"used":515.32,"free":3455.13},{"epoch":26130820,"idl":98.42,"recv":0,"send":0,"writ":0.52,"used":516.16,"free":3454.3},{"epoch":26130821,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":515.54,"free":3454.91},{"epoch":26130822,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":515.53,"free":3454.92},{"epoch":26130823,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":515.5,"free":3454.95},{"epoch":26130824,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.62,"free":3454.82},{"epoch":26130825,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":514.95,"free":3455.51},{"epoch":26130826,"idl":99.75,"recv":0,"send":0,"writ":0.73,"used":515.84,"free":3454.61},{"epoch":26130827,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":515.38,"free":3455.07},{"epoch":26130828,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":515.36,"free":3455.09},{"epoch":26130829,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":515.34,"free":3455.1},{"epoch":26130830,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":515.83,"free":3454.63},{"epoch":26130831,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":516.18,"free":3454.29},{"epoch":26130832,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":515.8,"free":3454.67},{"epoch":26130833,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":515.78,"free":3454.69},{"epoch":26130834,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.75,"free":3454.71},{"epoch":26130835,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":515.84,"free":3454.63},{"epoch":26130836,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":515.7,"free":3454.77},{"epoch":26130837,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.17,"free":3455.3},{"epoch":26130838,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":515.14,"free":3455.32},{"epoch":26130839,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":515.13,"free":3455.33},{"epoch":26130840,"idl":99.63,"recv":0,"send":0,"writ":0.29,"used":515.36,"free":3455.11},{"epoch":26130841,"idl":99.64,"recv":0,"send":0,"writ":0.54,"used":516.22,"free":3454.25},{"epoch":26130842,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.57,"free":3454.89},{"epoch":26130843,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.56,"free":3454.9},{"epoch":26130844,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":515.54,"free":3454.92},{"epoch":26130845,"idl":99.67,"recv":0,"send":0.01,"writ":0.3,"used":516.04,"free":3454.43},{"epoch":26130846,"idl":99.65,"recv":0,"send":0,"writ":0.47,"used":516.33,"free":3454.14},{"epoch":26130847,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":515.68,"free":3454.78},{"epoch":26130848,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":515.65,"free":3454.8},{"epoch":26130849,"idl":99.24,"recv":0,"send":0,"writ":0.29,"used":515.88,"free":3454.56},{"epoch":26130850,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":514.93,"free":3455.52},{"epoch":26130851,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":515.63,"free":3454.82},{"epoch":26130852,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.18,"used":515.89,"free":3454.56},{"epoch":26130853,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":515.9,"free":3454.53},{"epoch":26130854,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":515.89,"free":3454.55},{"epoch":26130855,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":515.16,"free":3455.29},{"epoch":26130856,"idl":91.18,"recv":0,"send":0,"writ":0.5,"used":515.85,"free":3454.61},{"epoch":26130857,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":515.85,"free":3454.6},{"epoch":26130858,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":515.83,"free":3454.61},{"epoch":26130859,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.8,"free":3454.64},{"epoch":26130860,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":516.06,"free":3454.4},{"epoch":26130861,"idl":99.67,"recv":0,"send":0,"writ":0.31,"used":516.37,"free":3454.09},{"epoch":26130862,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":515.78,"free":3454.69},{"epoch":26130863,"idl":99.73,"recv":0,"send":0.01,"writ":0.16,"used":515.86,"free":3454.6},{"epoch":26130864,"idl":99.71,"recv":0,"send":0,"writ":0.2,"used":515.9,"free":3454.56},{"epoch":26130865,"idl":99.61,"recv":0,"send":0,"writ":0.3,"used":514.92,"free":3455.55},{"epoch":26130866,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":514.89,"free":3455.57},{"epoch":26130867,"idl":99.58,"recv":0,"send":0,"writ":0.59,"used":516.5,"free":3453.95},{"epoch":26130868,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":516.08,"free":3454.38},{"epoch":26130869,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":516.05,"free":3454.4},{"epoch":26130870,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":515.17,"free":3455.3},{"epoch":26130871,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":515.06,"free":3455.4},{"epoch":26130872,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":516.06,"free":3454.4},{"epoch":26130873,"idl":99.8,"recv":0.03,"send":0.02,"writ":0.2,"used":515.81,"free":3454.64},{"epoch":26130874,"idl":99.77,"recv":0.05,"send":0.03,"writ":0.18,"used":515.81,"free":3454.64},{"epoch":26130875,"idl":99.62,"recv":0.05,"send":0.03,"writ":0.3,"used":515.63,"free":3454.84},{"epoch":26130876,"idl":99.78,"recv":0.06,"send":0.04,"writ":0.14,"used":515.6,"free":3454.86},{"epoch":26130877,"idl":99.61,"recv":0.06,"send":0.04,"writ":0.63,"used":516.1,"free":3454.35},{"epoch":26130878,"idl":99.83,"recv":0.05,"send":0.03,"writ":0.21,"used":516.09,"free":3454.36},{"epoch":26130879,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":516.4,"free":3454.02},{"epoch":26130880,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":515.68,"free":3454.76},{"epoch":26130881,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.65,"free":3454.79},{"epoch":26130882,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":516.06,"free":3454.37},{"epoch":26130883,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":515.84,"free":3454.57},{"epoch":26130884,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":515.82,"free":3454.6},{"epoch":26130885,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":516.31,"free":3454.12},{"epoch":26130886,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":516.29,"free":3454.13},{"epoch":26130887,"idl":99.66,"recv":0,"send":0,"writ":0.4,"used":516.3,"free":3454.12},{"epoch":26130888,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":515.49,"free":3454.93},{"epoch":26130889,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":515.52,"free":3454.89},{"epoch":26130890,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":516.39,"free":3454.04},{"epoch":26130891,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":516.38,"free":3454.05},{"epoch":26130892,"idl":99.59,"recv":0,"send":0,"writ":0.55,"used":516.53,"free":3453.9},{"epoch":26130893,"idl":99.16,"recv":0,"send":0,"writ":0.14,"used":515.6,"free":3454.82},{"epoch":26130894,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":515.57,"free":3454.84},{"epoch":26130895,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":516.06,"free":3454.37},{"epoch":26130896,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.05,"free":3454.38},{"epoch":26130897,"idl":99.65,"recv":0,"send":0,"writ":0.33,"used":516.41,"free":3454.02},{"epoch":26130898,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":516.26,"free":3454.16},{"epoch":26130899,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":516.23,"free":3454.18},{"epoch":26130900,"idl":99.67,"recv":0,"send":0,"writ":0.27,"used":515.75,"free":3454.68},{"epoch":26130901,"idl":99.81,"recv":0,"send":0.01,"writ":0.17,"used":515.83,"free":3454.6},{"epoch":26130902,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.88,"free":3454.54},{"epoch":26130903,"idl":99.53,"recv":0,"send":0,"writ":0.54,"used":516.37,"free":3454.05},{"epoch":26130904,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":515.84,"free":3454.57},{"epoch":26130905,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":516.33,"free":3454.1},{"epoch":26130906,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":516.3,"free":3454.12},{"epoch":26130907,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":516.28,"free":3454.14},{"epoch":26130908,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":516.04,"free":3454.37},{"epoch":26130909,"idl":99.6,"recv":0,"send":0,"writ":0.31,"used":516.22,"free":3454.18},{"epoch":26130910,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":515.53,"free":3454.88},{"epoch":26130911,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.48,"free":3454.93},{"epoch":26130912,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.58,"free":3454.82},{"epoch":26130913,"idl":99.57,"recv":0,"send":0,"writ":0.55,"used":516.39,"free":3454.01},{"epoch":26130914,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.34,"free":3454.05},{"epoch":26130915,"idl":99.71,"recv":0,"send":0,"writ":0.28,"used":516.35,"free":3454.06},{"epoch":26130916,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.33,"free":3454.08},{"epoch":26130917,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":516.3,"free":3454.1},{"epoch":26130918,"idl":99.63,"recv":0,"send":0,"writ":0.41,"used":516.45,"free":3453.94},{"epoch":26130919,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":515.77,"free":3454.62},{"epoch":26130920,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":516.5,"free":3453.9},{"epoch":26130921,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":516.48,"free":3453.91},{"epoch":26130922,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.47,"free":3453.93},{"epoch":26130923,"idl":96.13,"recv":0.35,"send":0.01,"writ":78.82,"used":522.23,"free":3449.36},{"epoch":26130924,"idl":99.82,"recv":0,"send":0,"writ":0.45,"used":518.93,"free":3450.5},{"epoch":26130925,"idl":98.47,"recv":0,"send":0,"writ":15.7,"used":521.44,"free":3448.89},{"epoch":26130926,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":518.26,"free":3451.55},{"epoch":26130927,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":518.23,"free":3451.58},{"epoch":26130928,"idl":99.61,"recv":0,"send":0,"writ":0.46,"used":518.57,"free":3451.24},{"epoch":26130929,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":516.54,"free":3453.33},{"epoch":26130930,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":516.55,"free":3453.34},{"epoch":26130931,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":516.53,"free":3453.36},{"epoch":26130932,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":516.63,"free":3453.25},{"epoch":26130933,"idl":99.65,"recv":0,"send":0,"writ":0.34,"used":517.27,"free":3452.61},{"epoch":26130934,"idl":99.83,"recv":0,"send":0,"writ":0.38,"used":515.67,"free":3454.22},{"epoch":26130935,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":516.4,"free":3453.51},{"epoch":26130936,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":516.39,"free":3453.51},{"epoch":26130937,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":516.36,"free":3453.54},{"epoch":26130938,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":516.34,"free":3453.55},{"epoch":26130939,"idl":99.52,"recv":0,"send":0,"writ":0.77,"used":516.99,"free":3452.88},{"epoch":26130940,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":516.56,"free":3453.32},{"epoch":26130941,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":516.54,"free":3453.34},{"epoch":26130942,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":515.69,"free":3454.19},{"epoch":26130943,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.51,"free":3454.36},{"epoch":26130944,"idl":96.03,"recv":0,"send":0,"writ":45.06,"used":523.27,"free":3444.08},{"epoch":26130945,"idl":99.71,"recv":0,"send":0,"writ":0.42,"used":517.25,"free":3452.33},{"epoch":26130946,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":517.23,"free":3452.34},{"epoch":26130947,"idl":99.79,"recv":0,"send":0,"writ":0.13,"used":517.2,"free":3452.37},{"epoch":26130948,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":517.18,"free":3452.38},{"epoch":26130949,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":516.59,"free":3452.98},{"epoch":26130950,"idl":99.6,"recv":0,"send":0,"writ":0.34,"used":515.79,"free":3453.82},{"epoch":26130951,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.69,"free":3453.92},{"epoch":26130952,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.68,"free":3453.93},{"epoch":26130953,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.65,"free":3453.95},{"epoch":26130954,"idl":99.68,"recv":0,"send":0,"writ":0.52,"used":516.12,"free":3453.47},{"epoch":26130955,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":514.47,"free":3455.16},{"epoch":26130956,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":514.39,"free":3455.23},{"epoch":26130957,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":514.5,"free":3455.13},{"epoch":26130958,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":514.53,"free":3455.09},{"epoch":26130959,"idl":99.64,"recv":0,"send":0,"writ":0.39,"used":515.38,"free":3454.23},{"epoch":26130960,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":515.74,"free":3453.89},{"epoch":26130961,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":515.72,"free":3453.91},{"epoch":26130962,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":515.7,"free":3453.93},{"epoch":26130963,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":515.68,"free":3453.95},{"epoch":26130964,"idl":99.63,"recv":0,"send":0,"writ":0.49,"used":515.96,"free":3453.66},{"epoch":26130965,"idl":99.67,"recv":0,"send":0,"writ":0.33,"used":515.16,"free":3454.48},{"epoch":26130966,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.14,"free":3454.5},{"epoch":26130967,"idl":99.38,"recv":0,"send":0,"writ":0.14,"used":515.22,"free":3454.41},{"epoch":26130968,"idl":96.79,"recv":0,"send":0,"writ":0.15,"used":515.29,"free":3454.33},{"epoch":26130969,"idl":99.58,"recv":0,"send":0,"writ":0.45,"used":515.62,"free":3453.98},{"epoch":26130970,"idl":99.69,"recv":0,"send":0,"writ":0.49,"used":515,"free":3454.61},{"epoch":26130971,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":515.01,"free":3454.6},{"epoch":26130972,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":514.98,"free":3454.62},{"epoch":26130973,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":514.95,"free":3454.65},{"epoch":26130974,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":515.3,"free":3454.3},{"epoch":26130975,"idl":99.71,"recv":0,"send":0,"writ":0.48,"used":516.15,"free":3453.46},{"epoch":26130976,"idl":99.62,"recv":0,"send":0,"writ":0.16,"used":516.09,"free":3453.52},{"epoch":26130977,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":515.96,"free":3453.65},{"epoch":26130978,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":516.05,"free":3453.55},{"epoch":26130979,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":516.03,"free":3453.57},{"epoch":26130980,"idl":99.53,"recv":0,"send":0,"writ":0.66,"used":515.31,"free":3454.31},{"epoch":26130981,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":514.78,"free":3454.83},{"epoch":26130982,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":514.76,"free":3454.85},{"epoch":26130983,"idl":98.42,"recv":0,"send":0,"writ":0.16,"used":514.74,"free":3454.86},{"epoch":26130984,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":514.72,"free":3454.88},{"epoch":26130985,"idl":99.54,"recv":0,"send":0,"writ":0.71,"used":515.58,"free":3454.03},{"epoch":26130986,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":515.19,"free":3454.42},{"epoch":26130987,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.18,"free":3454.43},{"epoch":26130988,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":515.15,"free":3454.45},{"epoch":26130989,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.21,"free":3454.39},{"epoch":26130990,"idl":99.55,"recv":0,"send":0,"writ":0.73,"used":516.27,"free":3453.34},{"epoch":26130991,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":516.04,"free":3453.57},{"epoch":26130992,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.02,"free":3453.59},{"epoch":26130993,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516,"free":3453.6},{"epoch":26130994,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":515.98,"free":3453.62},{"epoch":26130995,"idl":99.54,"recv":0,"send":0,"writ":0.55,"used":516.63,"free":3452.98},{"epoch":26130996,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":515.95,"free":3453.66},{"epoch":26130997,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":515.93,"free":3453.68},{"epoch":26130998,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":515.9,"free":3453.7},{"epoch":26130999,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":516.12,"free":3453.45},{"epoch":26131000,"idl":96.15,"recv":0.02,"send":0.01,"writ":14.41,"used":526.89,"free":3444.59},{"epoch":26131001,"idl":99.78,"recv":0,"send":0,"writ":64.43,"used":518.7,"free":3450.88},{"epoch":26131002,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":518.69,"free":3450.88},{"epoch":26131003,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":518.68,"free":3450.88},{"epoch":26131004,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":518.66,"free":3450.92},{"epoch":26131005,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":518.36,"free":3451.24},{"epoch":26131006,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":516.59,"free":3453.06},{"epoch":26131007,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":516.33,"free":3453.31},{"epoch":26131008,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.38,"free":3453.27},{"epoch":26131009,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.36,"free":3453.28},{"epoch":26131010,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":516.37,"free":3453.29},{"epoch":26131011,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":516.45,"free":3453.21},{"epoch":26131012,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":516.08,"free":3453.59},{"epoch":26131013,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":516.06,"free":3453.6},{"epoch":26131014,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.04,"free":3453.62},{"epoch":26131015,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":515.08,"free":3454.6},{"epoch":26131016,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":516.57,"free":3453.1},{"epoch":26131017,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516,"free":3453.66},{"epoch":26131018,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":515.98,"free":3453.68},{"epoch":26131019,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.02,"free":3453.63},{"epoch":26131020,"idl":99.64,"recv":0,"send":0,"writ":0.28,"used":515.47,"free":3454.2},{"epoch":26131021,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":516.58,"free":3453.08},{"epoch":26131022,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.36,"free":3453.3},{"epoch":26131023,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.33,"free":3453.32},{"epoch":26131024,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":516.32,"free":3453.34},{"epoch":26131025,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":516.08,"free":3453.59},{"epoch":26131026,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":516.52,"free":3453.14},{"epoch":26131027,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.27,"free":3453.39},{"epoch":26131028,"idl":98.6,"recv":0,"send":0,"writ":0.15,"used":516.25,"free":3453.4},{"epoch":26131029,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":516.21,"free":3453.41},{"epoch":26131030,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":516.21,"free":3453.43},{"epoch":26131031,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":516.62,"free":3453.01},{"epoch":26131032,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.37,"free":3453.27},{"epoch":26131033,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":516.35,"free":3453.28},{"epoch":26131034,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.33,"free":3453.3},{"epoch":26131035,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":515.37,"free":3454.28},{"epoch":26131036,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":516,"free":3453.65},{"epoch":26131037,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":516.06,"free":3453.58},{"epoch":26131038,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":516.03,"free":3453.61},{"epoch":26131039,"idl":99.89,"recv":0,"send":0.01,"writ":0.21,"used":516,"free":3453.63},{"epoch":26131040,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":515.51,"free":3454.14},{"epoch":26131041,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":516.31,"free":3453.34},{"epoch":26131042,"idl":99.42,"recv":0,"send":0,"writ":0.35,"used":516.09,"free":3453.55},{"epoch":26131043,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.14,"free":3453.49},{"epoch":26131044,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":516.12,"free":3453.51},{"epoch":26131045,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":516.61,"free":3453.04},{"epoch":26131046,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":516.6,"free":3453.04},{"epoch":26131047,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":516.29,"free":3453.35},{"epoch":26131048,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":515.83,"free":3453.8},{"epoch":26131049,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":515.8,"free":3453.83},{"epoch":26131050,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":516.29,"free":3453.36},{"epoch":26131051,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":516.27,"free":3453.37},{"epoch":26131052,"idl":99.73,"recv":0,"send":0,"writ":0.61,"used":516.39,"free":3453.24},{"epoch":26131053,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":515.98,"free":3453.65},{"epoch":26131054,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":516.03,"free":3453.59},{"epoch":26131055,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":516.64,"free":3453.02},{"epoch":26131056,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":516.6,"free":3453.05},{"epoch":26131057,"idl":99.73,"recv":0,"send":0,"writ":0.63,"used":516.58,"free":3453.07},{"epoch":26131058,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":515.81,"free":3453.83},{"epoch":26131059,"idl":99.7,"recv":0,"send":0,"writ":0.28,"used":516.27,"free":3453.35},{"epoch":26131060,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":516.27,"free":3453.36},{"epoch":26131061,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.25,"free":3453.38},{"epoch":26131062,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":516.86,"free":3452.76},{"epoch":26131063,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":516.21,"free":3453.41},{"epoch":26131064,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.2,"free":3453.42},{"epoch":26131065,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":516.51,"free":3453.12},{"epoch":26131066,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.62,"free":3453.01},{"epoch":26131067,"idl":99.72,"recv":0,"send":0,"writ":0.42,"used":517,"free":3452.63},{"epoch":26131068,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":516.58,"free":3453.04},{"epoch":26131069,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.56,"free":3453.06},{"epoch":26131070,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":516.32,"free":3453.31},{"epoch":26131071,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.29,"free":3453.34},{"epoch":26131072,"idl":99.75,"recv":0,"send":0,"writ":0.49,"used":516.7,"free":3452.93},{"epoch":26131073,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":516.5,"free":3453.13},{"epoch":26131074,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":516.48,"free":3453.14},{"epoch":26131075,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":516.47,"free":3453.16},{"epoch":26131076,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.51,"free":3453.12},{"epoch":26131077,"idl":99.77,"recv":0,"send":0,"writ":0.52,"used":516.93,"free":3452.7},{"epoch":26131078,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":516.34,"free":3453.29},{"epoch":26131079,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.31,"free":3453.31},{"epoch":26131080,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":515.84,"free":3453.8},{"epoch":26131081,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":515.8,"free":3453.83},{"epoch":26131082,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":516.23,"free":3453.4},{"epoch":26131083,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":516.5,"free":3453.12},{"epoch":26131084,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":516.47,"free":3453.14},{"epoch":26131085,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":516.47,"free":3453.16},{"epoch":26131086,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.46,"free":3453.17},{"epoch":26131087,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.43,"free":3453.2},{"epoch":26131088,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":516.57,"free":3453.05},{"epoch":26131089,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":516.8,"free":3452.8},{"epoch":26131090,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":515.64,"free":3453.98},{"epoch":26131091,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":515.57,"free":3454.04},{"epoch":26131092,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.62,"free":3453.99},{"epoch":26131093,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":516.32,"free":3453.29},{"epoch":26131094,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":516,"free":3453.6},{"epoch":26131095,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":514.82,"free":3454.8},{"epoch":26131096,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":514.76,"free":3454.85},{"epoch":26131097,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":514.74,"free":3454.87},{"epoch":26131098,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":515.66,"free":3453.95},{"epoch":26131099,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":515.69,"free":3453.91},{"epoch":26131100,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":515.63,"free":3453.99},{"epoch":26131101,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":515.6,"free":3454.01},{"epoch":26131102,"idl":99.09,"recv":0,"send":0,"writ":0.16,"used":515.58,"free":3454.03},{"epoch":26131103,"idl":99.66,"recv":0,"send":0,"writ":0.47,"used":516.21,"free":3453.39},{"epoch":26131104,"idl":99.9,"recv":0,"send":0,"writ":0.26,"used":516.03,"free":3453.57},{"epoch":26131105,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":516.04,"free":3453.59},{"epoch":26131106,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":516.01,"free":3453.61},{"epoch":26131107,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516,"free":3453.63},{"epoch":26131108,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":516.5,"free":3453.12},{"epoch":26131109,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":515.7,"free":3453.92},{"epoch":26131110,"idl":99.82,"recv":0,"send":0.02,"writ":0.35,"used":515.74,"free":3453.88},{"epoch":26131111,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":515.82,"free":3453.81},{"epoch":26131112,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":515.8,"free":3453.82},{"epoch":26131113,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":516.13,"free":3453.49},{"epoch":26131114,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":515.77,"free":3453.86},{"epoch":26131115,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":515.76,"free":3453.88},{"epoch":26131116,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":515.76,"free":3453.89},{"epoch":26131117,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":515.73,"free":3453.91},{"epoch":26131118,"idl":99.78,"recv":0.01,"send":0.81,"writ":0.35,"used":516.11,"free":3453.53},{"epoch":26131119,"idl":99.68,"recv":0,"send":0,"writ":0.53,"used":515.83,"free":3453.78},{"epoch":26131120,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":516.1,"free":3453.53},{"epoch":26131121,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":516.04,"free":3453.58},{"epoch":26131122,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.02,"free":3453.59},{"epoch":26131123,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":516.35,"free":3453.26},{"epoch":26131124,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":515.99,"free":3453.66},{"epoch":26131125,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":515.03,"free":3454.64},{"epoch":26131126,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":515.02,"free":3454.66},{"epoch":26131127,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":515.14,"free":3454.53},{"epoch":26131128,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":515.13,"free":3454.53},{"epoch":26131129,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":515.9,"free":3453.76},{"epoch":26131130,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":515.84,"free":3453.83},{"epoch":26131131,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":515.82,"free":3453.85},{"epoch":26131132,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":515.81,"free":3453.86},{"epoch":26131133,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.78,"free":3453.88},{"epoch":26131134,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":516.14,"free":3453.52},{"epoch":26131135,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":516,"free":3453.67},{"epoch":26131136,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":516,"free":3453.67},{"epoch":26131137,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":515.97,"free":3453.69},{"epoch":26131138,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":515.95,"free":3453.71},{"epoch":26131139,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":516.66,"free":3453},{"epoch":26131140,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":516.12,"free":3453.55},{"epoch":26131141,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":516.09,"free":3453.58},{"epoch":26131142,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.09,"free":3453.58},{"epoch":26131143,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":516.05,"free":3453.61},{"epoch":26131144,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":516.39,"free":3453.26},{"epoch":26131145,"idl":99.81,"recv":0,"send":0,"writ":0.41,"used":516.28,"free":3453.4},{"epoch":26131146,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":516.27,"free":3453.4},{"epoch":26131147,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.24,"free":3453.43},{"epoch":26131148,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":516.23,"free":3453.44},{"epoch":26131149,"idl":99.61,"recv":0,"send":0,"writ":0.8,"used":516.29,"free":3453.35},{"epoch":26131150,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":514.83,"free":3454.82},{"epoch":26131151,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":514.83,"free":3454.82},{"epoch":26131152,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":514.87,"free":3454.77},{"epoch":26131153,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":514.85,"free":3454.79},{"epoch":26131154,"idl":99.77,"recv":0,"send":0,"writ":0.4,"used":515.53,"free":3454.13},{"epoch":26131155,"idl":99.77,"recv":0,"send":0,"writ":0.47,"used":515.46,"free":3454.21},{"epoch":26131156,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.3,"free":3454.37},{"epoch":26131157,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":515.51,"free":3454.15},{"epoch":26131158,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":515.49,"free":3454.16},{"epoch":26131159,"idl":99.71,"recv":0,"send":0,"writ":0.38,"used":516.22,"free":3453.44},{"epoch":26131160,"idl":99.81,"recv":0,"send":0,"writ":0.49,"used":515,"free":3454.67},{"epoch":26131161,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":514.98,"free":3454.69},{"epoch":26131162,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.95,"free":3454.71},{"epoch":26131163,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.07,"free":3454.59},{"epoch":26131164,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":515.1,"free":3454.55},{"epoch":26131165,"idl":99.58,"recv":0,"send":0,"writ":0.68,"used":515.99,"free":3453.68},{"epoch":26131166,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":515.57,"free":3454.1},{"epoch":26131167,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.54,"free":3454.12},{"epoch":26131168,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":515.52,"free":3454.13},{"epoch":26131169,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":515.5,"free":3454.15},{"epoch":26131170,"idl":99.48,"recv":0,"send":0,"writ":0.66,"used":514.41,"free":3455.26},{"epoch":26131171,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":513.76,"free":3455.91},{"epoch":26131172,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":513.74,"free":3455.92},{"epoch":26131173,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":513.73,"free":3455.93},{"epoch":26131174,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":513.77,"free":3455.89},{"epoch":26131175,"idl":99.68,"recv":0,"send":0,"writ":0.67,"used":515.15,"free":3454.53},{"epoch":26131176,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":514.86,"free":3454.81},{"epoch":26131177,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":514.9,"free":3454.77},{"epoch":26131178,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.06,"free":3454.59},{"epoch":26131179,"idl":99.68,"recv":0,"send":0,"writ":0.39,"used":516.26,"free":3453.37},{"epoch":26131180,"idl":99.66,"recv":0,"send":0,"writ":0.68,"used":516.07,"free":3453.58},{"epoch":26131181,"idl":99.9,"recv":0,"send":0,"writ":0.12,"used":516,"free":3453.64},{"epoch":26131182,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.98,"free":3453.66},{"epoch":26131183,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.96,"free":3453.67},{"epoch":26131184,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.94,"free":3453.69},{"epoch":26131185,"idl":99.58,"recv":0,"send":0,"writ":0.66,"used":516.93,"free":3452.71},{"epoch":26131186,"idl":99.87,"recv":0,"send":0,"writ":0.23,"used":516.17,"free":3453.47},{"epoch":26131187,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.28,"free":3453.36},{"epoch":26131188,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.31,"free":3453.32},{"epoch":26131189,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":516.3,"free":3453.33},{"epoch":26131190,"idl":99.54,"recv":0,"send":0,"writ":0.54,"used":517.01,"free":3452.63},{"epoch":26131191,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":516.28,"free":3453.36},{"epoch":26131192,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.26,"free":3453.38},{"epoch":26131193,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.23,"free":3453.4},{"epoch":26131194,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":516.2,"free":3453.43},{"epoch":26131195,"idl":99.61,"recv":0,"send":0,"writ":0.46,"used":516.55,"free":3453.09},{"epoch":26131196,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":516.17,"free":3453.47},{"epoch":26131197,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":516.16,"free":3453.47},{"epoch":26131198,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.34,"free":3453.29},{"epoch":26131199,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.33,"free":3453.3},{"epoch":26131200,"idl":99.6,"recv":0,"send":0,"writ":0.48,"used":515.75,"free":3453.89},{"epoch":26131201,"idl":99.87,"recv":0,"send":0,"writ":0.41,"used":516.34,"free":3453.29},{"epoch":26131202,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":516.28,"free":3453.35},{"epoch":26131203,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":516.28,"free":3453.35},{"epoch":26131204,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.25,"free":3453.37},{"epoch":26131205,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":516.27,"free":3453.37},{"epoch":26131206,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":516.8,"free":3452.83},{"epoch":26131207,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.46,"free":3453.16},{"epoch":26131208,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.44,"free":3453.18},{"epoch":26131209,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":516.22,"free":3453.37},{"epoch":26131210,"idl":98.38,"recv":0,"send":0,"writ":0.28,"used":516.34,"free":3453.27},{"epoch":26131211,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":517.12,"free":3452.48},{"epoch":26131212,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.54,"free":3453.07},{"epoch":26131213,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":516.51,"free":3453.09},{"epoch":26131214,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.5,"free":3453.1},{"epoch":26131215,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":515.78,"free":3453.83},{"epoch":26131216,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":516.06,"free":3453.55},{"epoch":26131217,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":515.47,"free":3454.13},{"epoch":26131218,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":515.45,"free":3454.15},{"epoch":26131219,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":515.43,"free":3454.16},{"epoch":26131220,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":516.16,"free":3453.45},{"epoch":26131221,"idl":99.79,"recv":0,"send":0,"writ":0.39,"used":516.66,"free":3452.95},{"epoch":26131222,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":516.57,"free":3453.03},{"epoch":26131223,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":516.54,"free":3453.05},{"epoch":26131224,"idl":98.19,"recv":0,"send":0,"writ":0.14,"used":516.53,"free":3453.07},{"epoch":26131225,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":516.29,"free":3453.32},{"epoch":26131226,"idl":99.73,"recv":0,"send":0,"writ":0.5,"used":516.67,"free":3452.94},{"epoch":26131227,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":516.49,"free":3453.12},{"epoch":26131228,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.47,"free":3453.13},{"epoch":26131229,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.45,"free":3453.15},{"epoch":26131230,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":515.73,"free":3453.88},{"epoch":26131231,"idl":99.76,"recv":0,"send":0,"writ":0.38,"used":516.08,"free":3453.52},{"epoch":26131232,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":515.9,"free":3453.7},{"epoch":26131233,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.97,"free":3453.63},{"epoch":26131234,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.06,"free":3453.53},{"epoch":26131235,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":516.8,"free":3452.81},{"epoch":26131236,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":517.11,"free":3452.5},{"epoch":26131237,"idl":99.86,"recv":0,"send":0,"writ":0.38,"used":515.67,"free":3453.93},{"epoch":26131238,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":516.25,"free":3453.35},{"epoch":26131239,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":516.48,"free":3453.09},{"epoch":26131240,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":515.75,"free":3453.84},{"epoch":26131241,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":515.71,"free":3453.87},{"epoch":26131242,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":516.67,"free":3452.91},{"epoch":26131243,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.91,"free":3453.66},{"epoch":26131244,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":515.46,"free":3454.11},{"epoch":26131245,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":514.95,"free":3454.64},{"epoch":26131246,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":514.97,"free":3454.61},{"epoch":26131247,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":516.32,"free":3453.26},{"epoch":26131248,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.78,"free":3453.79},{"epoch":26131249,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":515.76,"free":3453.81},{"epoch":26131250,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":514.57,"free":3455.02},{"epoch":26131251,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":514.51,"free":3455.07},{"epoch":26131252,"idl":99.76,"recv":0,"send":0,"writ":0.53,"used":515.61,"free":3453.96},{"epoch":26131253,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":515.7,"free":3453.87},{"epoch":26131254,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.69,"free":3453.88},{"epoch":26131255,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":515.2,"free":3454.38},{"epoch":26131256,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":515.18,"free":3454.4},{"epoch":26131257,"idl":99.71,"recv":0,"send":0,"writ":0.49,"used":515.67,"free":3453.91},{"epoch":26131258,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":515.7,"free":3453.87},{"epoch":26131259,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":515.82,"free":3453.75},{"epoch":26131260,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":515.59,"free":3454},{"epoch":26131261,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.56,"free":3454.02},{"epoch":26131262,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":516.06,"free":3453.51},{"epoch":26131263,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.01,"free":3453.56},{"epoch":26131264,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":515.98,"free":3453.58},{"epoch":26131265,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":514.78,"free":3454.8},{"epoch":26131266,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":514.73,"free":3454.85},{"epoch":26131267,"idl":99.73,"recv":0,"send":0,"writ":0.49,"used":515.64,"free":3453.96},{"epoch":26131268,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":515.93,"free":3453.66},{"epoch":26131269,"idl":99.84,"recv":0,"send":0,"writ":0.35,"used":515.91,"free":3453.65},{"epoch":26131270,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":515.37,"free":3454.21},{"epoch":26131271,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":515.33,"free":3454.24},{"epoch":26131272,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.3,"free":3454.27},{"epoch":26131273,"idl":99.73,"recv":0,"send":0,"writ":0.53,"used":515.66,"free":3453.9},{"epoch":26131274,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":515.02,"free":3454.54},{"epoch":26131275,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":514.79,"free":3454.79},{"epoch":26131276,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":514.75,"free":3454.81},{"epoch":26131277,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":514.98,"free":3454.58},{"epoch":26131278,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":516.12,"free":3453.44},{"epoch":26131279,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":515.68,"free":3453.87},{"epoch":26131280,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":514.48,"free":3455.1},{"epoch":26131281,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.44,"free":3455.13},{"epoch":26131282,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":514.48,"free":3455.09},{"epoch":26131283,"idl":99.71,"recv":0,"send":0,"writ":0.53,"used":515.74,"free":3453.82},{"epoch":26131284,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":515.79,"free":3453.77},{"epoch":26131285,"idl":99.43,"recv":0,"send":0,"writ":0.34,"used":516.03,"free":3453.54},{"epoch":26131286,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":516.01,"free":3453.55},{"epoch":26131287,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":516,"free":3453.56},{"epoch":26131288,"idl":99.71,"recv":0,"send":0,"writ":0.48,"used":516.43,"free":3453.12},{"epoch":26131289,"idl":99.9,"recv":0,"send":0,"writ":0.26,"used":516.19,"free":3453.35},{"epoch":26131290,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":515.22,"free":3454.33},{"epoch":26131291,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":515.18,"free":3454.37},{"epoch":26131292,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.15,"free":3454.39},{"epoch":26131293,"idl":99.77,"recv":0,"send":0,"writ":0.52,"used":515.85,"free":3453.69},{"epoch":26131294,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":515.92,"free":3453.61},{"epoch":26131295,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":515.55,"free":3454.01},{"epoch":26131296,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.51,"free":3454.03},{"epoch":26131297,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":515.46,"free":3454.09},{"epoch":26131298,"idl":99.74,"recv":0,"send":0,"writ":0.4,"used":515.89,"free":3453.65},{"epoch":26131299,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":515.99,"free":3453.53},{"epoch":26131300,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":515.99,"free":3453.55},{"epoch":26131301,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":515.92,"free":3453.61},{"epoch":26131302,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":515.88,"free":3453.64},{"epoch":26131303,"idl":99.71,"recv":0,"send":0,"writ":0.4,"used":516.47,"free":3453.05},{"epoch":26131304,"idl":99.91,"recv":0,"send":0,"writ":0.28,"used":515.28,"free":3454.23},{"epoch":26131305,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":514.81,"free":3454.73},{"epoch":26131306,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":514.77,"free":3454.76},{"epoch":26131307,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":514.75,"free":3454.78},{"epoch":26131308,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":514.73,"free":3454.79},{"epoch":26131309,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":516.26,"free":3453.26},{"epoch":26131310,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":514.75,"free":3454.8},{"epoch":26131311,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":514.7,"free":3454.86},{"epoch":26131312,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":514.69,"free":3454.86},{"epoch":26131313,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":514.67,"free":3454.88},{"epoch":26131314,"idl":99.71,"recv":0,"send":0,"writ":0.53,"used":516.37,"free":3453.16},{"epoch":26131315,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":515.99,"free":3453.56},{"epoch":26131316,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.03,"free":3453.52},{"epoch":26131317,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.01,"free":3453.53},{"epoch":26131318,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.99,"free":3453.55},{"epoch":26131319,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":516.52,"free":3453.01},{"epoch":26131320,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":516.22,"free":3453.33},{"epoch":26131321,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.2,"free":3453.35},{"epoch":26131322,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":516.17,"free":3453.37},{"epoch":26131323,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.16,"free":3453.38},{"epoch":26131324,"idl":99.76,"recv":0,"send":0,"writ":0.53,"used":516.48,"free":3453.05},{"epoch":26131325,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":515.17,"free":3454.38},{"epoch":26131326,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":515.13,"free":3454.41},{"epoch":26131327,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.11,"free":3454.43},{"epoch":26131328,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.21,"free":3454.32},{"epoch":26131329,"idl":99.65,"recv":0,"send":0,"writ":0.65,"used":516.91,"free":3452.6},{"epoch":26131330,"idl":99.76,"recv":0,"send":0,"writ":0.42,"used":516.55,"free":3452.97},{"epoch":26131331,"idl":99.92,"recv":0,"send":0,"writ":0.12,"used":516.46,"free":3453.05},{"epoch":26131332,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.44,"free":3453.08},{"epoch":26131333,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":516.42,"free":3453.09},{"epoch":26131334,"idl":99.68,"recv":0,"send":0,"writ":0.39,"used":516.6,"free":3452.91},{"epoch":26131335,"idl":99.69,"recv":0,"send":0,"writ":0.41,"used":514.71,"free":3454.81},{"epoch":26131336,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":514.64,"free":3454.87},{"epoch":26131337,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":514.87,"free":3454.64},{"epoch":26131338,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":514.85,"free":3454.66},{"epoch":26131339,"idl":99.7,"recv":0,"send":0,"writ":0.45,"used":515.45,"free":3454.05},{"epoch":26131340,"idl":99.85,"recv":0,"send":0,"writ":0.41,"used":516.53,"free":3452.99},{"epoch":26131341,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.51,"free":3453},{"epoch":26131342,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.49,"free":3453.02},{"epoch":26131343,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.46,"free":3453.04},{"epoch":26131344,"idl":99.7,"recv":0,"send":0,"writ":0.45,"used":516.71,"free":3452.79},{"epoch":26131345,"idl":98.26,"recv":0,"send":0,"writ":0.41,"used":515.71,"free":3453.81},{"epoch":26131346,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":515.69,"free":3453.82},{"epoch":26131347,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":515.66,"free":3453.84},{"epoch":26131348,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":515.65,"free":3453.86},{"epoch":26131349,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.62,"free":3453.88},{"epoch":26131350,"idl":99.54,"recv":0,"send":0,"writ":0.66,"used":516.49,"free":3453.02},{"epoch":26131351,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":515.97,"free":3453.54},{"epoch":26131352,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.02,"free":3453.48},{"epoch":26131353,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516,"free":3453.51},{"epoch":26131354,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":515.98,"free":3453.52},{"epoch":26131355,"idl":99.67,"recv":0,"send":0,"writ":0.67,"used":517,"free":3452.51},{"epoch":26131356,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.69,"free":3452.82},{"epoch":26131357,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.61,"free":3452.89},{"epoch":26131358,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":516.14,"free":3453.36},{"epoch":26131359,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":515.9,"free":3453.58},{"epoch":26131360,"idl":99.61,"recv":0,"send":0,"writ":0.68,"used":516.33,"free":3453.17},{"epoch":26131361,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.12,"free":3453.37},{"epoch":26131362,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.16,"free":3453.33},{"epoch":26131363,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":516.27,"free":3453.21},{"epoch":26131364,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":516.25,"free":3453.25},{"epoch":26131365,"idl":94.56,"recv":0.38,"send":0.01,"writ":197.79,"used":527.47,"free":3441.88},{"epoch":26131366,"idl":99.85,"recv":0,"send":0,"writ":64.2,"used":518.66,"free":3450.61},{"epoch":26131367,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":518.63,"free":3450.64},{"epoch":26131368,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":518.76,"free":3450.51},{"epoch":26131369,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":518.81,"free":3450.45},{"epoch":26131370,"idl":99.67,"recv":0,"send":0,"writ":0.66,"used":518.36,"free":3450.93},{"epoch":26131371,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":516.6,"free":3452.73},{"epoch":26131372,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":516.6,"free":3452.73},{"epoch":26131373,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.56,"free":3452.76},{"epoch":26131374,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":516.55,"free":3452.77},{"epoch":26131375,"idl":99.69,"recv":0,"send":0.01,"writ":0.68,"used":517.18,"free":3452.15},{"epoch":26131376,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.28,"free":3453.05},{"epoch":26131377,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":516.37,"free":3452.95},{"epoch":26131378,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.35,"free":3452.98},{"epoch":26131379,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":516.32,"free":3453},{"epoch":26131380,"idl":99.55,"recv":0,"send":0,"writ":0.54,"used":515.78,"free":3453.55},{"epoch":26131381,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":515.33,"free":3453.99},{"epoch":26131382,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.29,"free":3454.03},{"epoch":26131383,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":515.26,"free":3454.05},{"epoch":26131384,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":515.25,"free":3454.06},{"epoch":26131385,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":516.7,"free":3452.63},{"epoch":26131386,"idl":99.62,"recv":0,"send":0,"writ":0.57,"used":516.51,"free":3452.82},{"epoch":26131387,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":516.13,"free":3453.19},{"epoch":26131388,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.12,"free":3453.21},{"epoch":26131389,"idl":99.63,"recv":0,"send":0,"writ":0.29,"used":516.58,"free":3452.74},{"epoch":26131390,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":515.86,"free":3453.47},{"epoch":26131391,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":516,"free":3453.33},{"epoch":26131392,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.31,"free":3454.01},{"epoch":26131393,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":515.29,"free":3454.02},{"epoch":26131394,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":515.27,"free":3454.06},{"epoch":26131395,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":515.58,"free":3453.78},{"epoch":26131396,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":515.67,"free":3453.68},{"epoch":26131397,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":515.24,"free":3454.1},{"epoch":26131398,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.23,"free":3454.11},{"epoch":26131399,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":515.33,"free":3454.01},{"epoch":26131400,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":514.92,"free":3454.43},{"epoch":26131401,"idl":99.63,"recv":0,"send":0,"writ":0.46,"used":515.91,"free":3453.43},{"epoch":26131402,"idl":99.8,"recv":0,"send":0,"writ":0.23,"used":515.84,"free":3453.5},{"epoch":26131403,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.82,"free":3453.52},{"epoch":26131404,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.8,"free":3453.54},{"epoch":26131405,"idl":99.83,"recv":0,"send":0.02,"writ":0.33,"used":516.02,"free":3453.34},{"epoch":26131406,"idl":98.64,"recv":0,"send":0,"writ":0.55,"used":516.29,"free":3453.05},{"epoch":26131407,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":515.78,"free":3453.57},{"epoch":26131408,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":515.87,"free":3453.46},{"epoch":26131409,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":515.85,"free":3453.48},{"epoch":26131410,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":516.35,"free":3452.99},{"epoch":26131411,"idl":99.77,"recv":0,"send":0,"writ":0.4,"used":516.62,"free":3452.72},{"epoch":26131412,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":516.06,"free":3453.27},{"epoch":26131413,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":516.03,"free":3453.3},{"epoch":26131414,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":516.02,"free":3453.31},{"epoch":26131415,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":515.3,"free":3454.05},{"epoch":26131416,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":515.63,"free":3453.71},{"epoch":26131417,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":515.46,"free":3453.88},{"epoch":26131418,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":514.98,"free":3454.36},{"epoch":26131419,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":515.92,"free":3453.39},{"epoch":26131420,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":515.85,"free":3453.48},{"epoch":26131421,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":515.86,"free":3453.47},{"epoch":26131422,"idl":99.64,"recv":0,"send":0.01,"writ":0.52,"used":515.76,"free":3453.57},{"epoch":26131423,"idl":99.79,"recv":0,"send":0,"writ":0.21,"used":515.26,"free":3454.05},{"epoch":26131424,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.23,"free":3454.09},{"epoch":26131425,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":515,"free":3454.34},{"epoch":26131426,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":514.96,"free":3454.38},{"epoch":26131427,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":515.4,"free":3453.94},{"epoch":26131428,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.11,"free":3454.22},{"epoch":26131429,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":515.09,"free":3454.23},{"epoch":26131430,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":514.85,"free":3454.49},{"epoch":26131431,"idl":99.76,"recv":0,"send":0,"writ":0.13,"used":514.82,"free":3454.52},{"epoch":26131432,"idl":99.69,"recv":0,"send":0,"writ":0.48,"used":516.21,"free":3453.12},{"epoch":26131433,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":516.01,"free":3453.32},{"epoch":26131434,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.99,"free":3453.33},{"epoch":26131435,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":514.84,"free":3454.5},{"epoch":26131436,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":514.74,"free":3454.59},{"epoch":26131437,"idl":99.59,"recv":0,"send":0,"writ":0.38,"used":515.43,"free":3453.9},{"epoch":26131438,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":515.44,"free":3453.89},{"epoch":26131439,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.53,"free":3453.8},{"epoch":26131440,"idl":99.62,"recv":0,"send":0,"writ":0.31,"used":514.93,"free":3454.41},{"epoch":26131441,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":514.89,"free":3454.45},{"epoch":26131442,"idl":99.63,"recv":0,"send":0,"writ":0.52,"used":515.34,"free":3454},{"epoch":26131443,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":515.33,"free":3454},{"epoch":26131444,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":515.32,"free":3454.01},{"epoch":26131445,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":516.28,"free":3453.06},{"epoch":26131446,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.28,"free":3453.05},{"epoch":26131447,"idl":99.61,"recv":0,"send":0,"writ":0.53,"used":516.56,"free":3452.77},{"epoch":26131448,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":516,"free":3453.33},{"epoch":26131449,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":515.97,"free":3453.34},{"epoch":26131450,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":516.03,"free":3453.29},{"epoch":26131451,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":516.12,"free":3453.19},{"epoch":26131452,"idl":99.63,"recv":0,"send":0,"writ":0.32,"used":516.84,"free":3452.47},{"epoch":26131453,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":515.34,"free":3453.96},{"epoch":26131454,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":515.32,"free":3453.98},{"epoch":26131455,"idl":99.67,"recv":0,"send":0,"writ":0.36,"used":514.6,"free":3454.71},{"epoch":26131456,"idl":99.66,"recv":0,"send":0,"writ":0.14,"used":514.56,"free":3454.75},{"epoch":26131457,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":514.79,"free":3454.52},{"epoch":26131458,"idl":99.6,"recv":0,"send":0,"writ":0.56,"used":516.79,"free":3452.52},{"epoch":26131459,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":516.22,"free":3453.08},{"epoch":26131460,"idl":99.62,"recv":0,"send":0,"writ":0.33,"used":515.77,"free":3453.55},{"epoch":26131461,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":515.71,"free":3453.6},{"epoch":26131462,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":515.81,"free":3453.5},{"epoch":26131463,"idl":99.66,"recv":0,"send":0,"writ":0.52,"used":516.92,"free":3452.39},{"epoch":26131464,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":516.33,"free":3452.97},{"epoch":26131465,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":516.09,"free":3453.23},{"epoch":26131466,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.06,"free":3453.25},{"epoch":26131467,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.04,"free":3453.27},{"epoch":26131468,"idl":99.68,"recv":0,"send":0,"writ":0.51,"used":516.6,"free":3452.7},{"epoch":26131469,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":515.99,"free":3453.31},{"epoch":26131470,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":516.23,"free":3453.09},{"epoch":26131471,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":516.21,"free":3453.1},{"epoch":26131472,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.2,"free":3453.11},{"epoch":26131473,"idl":99.68,"recv":0,"send":0,"writ":0.81,"used":516.59,"free":3452.71},{"epoch":26131474,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.1,"free":3453.2},{"epoch":26131475,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":516.34,"free":3452.98},{"epoch":26131476,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.31,"free":3453.01},{"epoch":26131477,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.28,"free":3453.04},{"epoch":26131478,"idl":99.69,"recv":0,"send":0,"writ":0.51,"used":516.32,"free":3452.99},{"epoch":26131479,"idl":99.71,"recv":0,"send":0,"writ":0.49,"used":516.22,"free":3453.06},{"epoch":26131480,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":516.48,"free":3452.82},{"epoch":26131481,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.46,"free":3452.84},{"epoch":26131482,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":516.43,"free":3452.86},{"epoch":26131483,"idl":99.69,"recv":0,"send":0,"writ":0.43,"used":516.89,"free":3452.39},{"epoch":26131484,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":516.58,"free":3452.7},{"epoch":26131485,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":515.38,"free":3453.92},{"epoch":26131486,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":515.33,"free":3453.96},{"epoch":26131487,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.31,"free":3453.98},{"epoch":26131488,"idl":99.69,"recv":0,"send":0,"writ":0.33,"used":515.68,"free":3453.6},{"epoch":26131489,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":516.26,"free":3453.02},{"epoch":26131490,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":515.05,"free":3454.25},{"epoch":26131491,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":515.01,"free":3454.29},{"epoch":26131492,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":514.99,"free":3454.32},{"epoch":26131493,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":514.96,"free":3454.36},{"epoch":26131494,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":516.32,"free":3453},{"epoch":26131495,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":516.55,"free":3452.79},{"epoch":26131496,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":516.58,"free":3452.75},{"epoch":26131497,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":516.57,"free":3452.76},{"epoch":26131498,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":516.54,"free":3452.78},{"epoch":26131499,"idl":99.65,"recv":0,"send":0,"writ":0.53,"used":516.82,"free":3452.5},{"epoch":26131500,"idl":99.7,"recv":0,"send":0,"writ":0.33,"used":516.31,"free":3453.02},{"epoch":26131501,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":516.26,"free":3453.06},{"epoch":26131502,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":516.24,"free":3453.09},{"epoch":26131503,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":516.22,"free":3453.1},{"epoch":26131504,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":516.56,"free":3452.76},{"epoch":26131505,"idl":99.65,"recv":0,"send":0,"writ":0.32,"used":515.24,"free":3454.09},{"epoch":26131506,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":515.26,"free":3454.06},{"epoch":26131507,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.36,"free":3453.97},{"epoch":26131508,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":515.34,"free":3453.98},{"epoch":26131509,"idl":99.55,"recv":0,"send":0,"writ":0.59,"used":516.24,"free":3453.05},{"epoch":26131510,"idl":99.68,"recv":0,"send":0,"writ":0.36,"used":516.29,"free":3453.02},{"epoch":26131511,"idl":99.83,"recv":0,"send":0.01,"writ":0.16,"used":516.28,"free":3453.03},{"epoch":26131512,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":516.23,"free":3453.07},{"epoch":26131513,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.21,"free":3453.08},{"epoch":26131514,"idl":99.67,"recv":0,"send":0,"writ":0.39,"used":517.06,"free":3452.26},{"epoch":26131515,"idl":99.69,"recv":0,"send":0,"writ":0.43,"used":516.45,"free":3452.9},{"epoch":26131516,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.42,"free":3452.92},{"epoch":26131517,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":516.49,"free":3452.84},{"epoch":26131518,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":516.6,"free":3452.73},{"epoch":26131519,"idl":99.64,"recv":0,"send":0,"writ":0.39,"used":517.17,"free":3452.15},{"epoch":26131520,"idl":99.77,"recv":0,"send":0,"writ":0.42,"used":516.58,"free":3452.76},{"epoch":26131521,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":516.57,"free":3452.77},{"epoch":26131522,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.54,"free":3452.79},{"epoch":26131523,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.43,"free":3452.9},{"epoch":26131524,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":516.25,"free":3453.07},{"epoch":26131525,"idl":99.54,"recv":0,"send":0,"writ":0.64,"used":516.66,"free":3452.68},{"epoch":26131526,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.24,"free":3453.1},{"epoch":26131527,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.22,"free":3453.11},{"epoch":26131528,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.2,"free":3453.13},{"epoch":26131529,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.24,"free":3453.08},{"epoch":26131530,"idl":99.5,"recv":0,"send":0,"writ":0.7,"used":516.44,"free":3452.9},{"epoch":26131531,"idl":99.78,"recv":0,"send":0,"writ":0.13,"used":516.11,"free":3453.23},{"epoch":26131532,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":516.08,"free":3453.25},{"epoch":26131533,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":516.07,"free":3453.26},{"epoch":26131534,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":516.04,"free":3453.29},{"epoch":26131535,"idl":99.61,"recv":0,"send":0,"writ":0.67,"used":517.02,"free":3452.33},{"epoch":26131536,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":516.52,"free":3452.82},{"epoch":26131537,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":516.5,"free":3452.84},{"epoch":26131538,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":516.23,"free":3453.1},{"epoch":26131539,"idl":99.6,"recv":0,"send":0,"writ":0.27,"used":516.7,"free":3452.61},{"epoch":26131540,"idl":99.59,"recv":0,"send":0,"writ":0.75,"used":517.06,"free":3452.26},{"epoch":26131541,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":516.73,"free":3452.58},{"epoch":26131542,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":516.4,"free":3452.91},{"epoch":26131543,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":515.84,"free":3453.47},{"epoch":26131544,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":515.82,"free":3453.48},{"epoch":26131545,"idl":99.54,"recv":0,"send":0,"writ":0.63,"used":515.53,"free":3453.78},{"epoch":26131546,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":514.32,"free":3454.99},{"epoch":26131547,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":514.3,"free":3455.01},{"epoch":26131548,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":514.28,"free":3455.02},{"epoch":26131549,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":514.26,"free":3455.04},{"epoch":26131550,"idl":99.55,"recv":0,"send":0,"writ":0.73,"used":515.7,"free":3453.62},{"epoch":26131551,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.73,"free":3453.59},{"epoch":26131552,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":515.7,"free":3453.61},{"epoch":26131553,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":515.69,"free":3453.63},{"epoch":26131554,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":515.75,"free":3453.56},{"epoch":26131555,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":516.4,"free":3452.93},{"epoch":26131556,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":515.09,"free":3454.24},{"epoch":26131557,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":515.07,"free":3454.25},{"epoch":26131558,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":515.05,"free":3454.27},{"epoch":26131559,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":515.02,"free":3454.29},{"epoch":26131560,"idl":99.51,"recv":0.02,"send":0.04,"writ":0.7,"used":519.5,"free":3449.72},{"epoch":26131561,"idl":99.6,"recv":0.01,"send":0.06,"writ":0.66,"used":522.28,"free":3446.88},{"epoch":26131562,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":522.32,"free":3446.82},{"epoch":26131563,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":522.33,"free":3446.8},{"epoch":26131564,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":522.3,"free":3446.83},{"epoch":26131565,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":523.76,"free":3445.39},{"epoch":26131566,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":524.57,"free":3444.57},{"epoch":26131567,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":524.21,"free":3444.93},{"epoch":26131568,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":524.17,"free":3444.96},{"epoch":26131569,"idl":99.58,"recv":0,"send":0.01,"writ":0.36,"used":524.29,"free":3444.82},{"epoch":26131570,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":524.08,"free":3445.05},{"epoch":26131571,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":523.4,"free":3445.72},{"epoch":26131572,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":522.79,"free":3446.33},{"epoch":26131573,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":522.76,"free":3446.35},{"epoch":26131574,"idl":99.77,"recv":0,"send":0,"writ":0.19,"used":522.74,"free":3446.41},{"epoch":26131575,"idl":99.72,"recv":0,"send":0,"writ":0.38,"used":523.69,"free":3445.49},{"epoch":26131576,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":523.74,"free":3445.43},{"epoch":26131577,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":523.56,"free":3445.61},{"epoch":26131578,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":523.6,"free":3445.57},{"epoch":26131579,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":523.56,"free":3445.6},{"epoch":26131580,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":522.84,"free":3446.34},{"epoch":26131581,"idl":99.64,"recv":0,"send":0,"writ":0.46,"used":524.2,"free":3444.97},{"epoch":26131582,"idl":99.76,"recv":0,"send":0,"writ":0.21,"used":524.24,"free":3444.93},{"epoch":26131583,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":524.21,"free":3444.96},{"epoch":26131584,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":524.31,"free":3444.85},{"epoch":26131585,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":524.35,"free":3444.82},{"epoch":26131586,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":524.68,"free":3444.5},{"epoch":26131587,"idl":97.47,"recv":0,"send":0,"writ":0.16,"used":524.3,"free":3444.87},{"epoch":26131588,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":521.48,"free":3447.73},{"epoch":26131589,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":516.5,"free":3452.8},{"epoch":26131590,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":516.25,"free":3453.07},{"epoch":26131591,"idl":99.73,"recv":0,"send":0,"writ":0.46,"used":516.6,"free":3452.72},{"epoch":26131592,"idl":99.94,"recv":0,"send":0,"writ":0.26,"used":516.29,"free":3453.04},{"epoch":26131593,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":516.39,"free":3452.96},{"epoch":26131594,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.35,"free":3453.03},{"epoch":26131595,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":516.59,"free":3452.8},{"epoch":26131596,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":516.8,"free":3452.6},{"epoch":26131597,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.56,"free":3453.83},{"epoch":26131598,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":516.01,"free":3453.37},{"epoch":26131599,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.32,"used":516.29,"free":3453.07},{"epoch":26131600,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":515.19,"free":3454.18},{"epoch":26131601,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.15,"free":3454.22},{"epoch":26131602,"idl":99.76,"recv":0,"send":0,"writ":0.52,"used":516.67,"free":3452.69},{"epoch":26131603,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":516.34,"free":3453.02},{"epoch":26131604,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.32,"free":3453.03},{"epoch":26131605,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":515.6,"free":3453.77},{"epoch":26131606,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":515.57,"free":3453.8},{"epoch":26131607,"idl":99.73,"recv":0,"send":0,"writ":0.53,"used":516.5,"free":3452.87},{"epoch":26131608,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":516.02,"free":3453.34},{"epoch":26131609,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":516,"free":3453.35},{"epoch":26131610,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":516.25,"free":3453.12},{"epoch":26131611,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":516.23,"free":3453.14},{"epoch":26131612,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":516.77,"free":3452.59},{"epoch":26131613,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":516.63,"free":3452.72},{"epoch":26131614,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":516.6,"free":3452.74},{"epoch":26131615,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":515.66,"free":3453.7},{"epoch":26131616,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":515.59,"free":3453.77},{"epoch":26131617,"idl":99.75,"recv":0,"send":0,"writ":0.52,"used":516.09,"free":3453.27},{"epoch":26131618,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":515.8,"free":3453.55},{"epoch":26131619,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":515.79,"free":3453.55},{"epoch":26131620,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":516.51,"free":3452.85},{"epoch":26131621,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":516.51,"free":3452.85},{"epoch":26131622,"idl":99.75,"recv":0,"send":0,"writ":0.38,"used":516.83,"free":3452.52},{"epoch":26131623,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":516.22,"free":3453.13},{"epoch":26131624,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.19,"free":3453.16},{"epoch":26131625,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":516.09,"free":3453.28},{"epoch":26131626,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":516.12,"free":3453.25},{"epoch":26131627,"idl":99.79,"recv":0,"send":0,"writ":0.52,"used":516.91,"free":3452.45},{"epoch":26131628,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.57,"free":3452.78},{"epoch":26131629,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":516.32,"free":3453},{"epoch":26131630,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":516.3,"free":3453.04},{"epoch":26131631,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":516.27,"free":3453.07},{"epoch":26131632,"idl":99.75,"recv":0,"send":0,"writ":0.47,"used":516.77,"free":3452.56},{"epoch":26131633,"idl":99.35,"recv":0,"send":0,"writ":0.19,"used":516.48,"free":3452.85},{"epoch":26131634,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.46,"free":3452.89},{"epoch":26131635,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":515.5,"free":3453.88},{"epoch":26131636,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":515.54,"free":3453.84},{"epoch":26131637,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":515.63,"free":3453.74},{"epoch":26131638,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":516.88,"free":3452.49},{"epoch":26131639,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":516.57,"free":3452.79},{"epoch":26131640,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":516.58,"free":3452.8},{"epoch":26131641,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":516.56,"free":3452.81},{"epoch":26131642,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":516.54,"free":3452.83},{"epoch":26131643,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":516.17,"free":3453.19},{"epoch":26131644,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":515.74,"free":3453.62},{"epoch":26131645,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":514.78,"free":3454.59},{"epoch":26131646,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":514.72,"free":3454.65},{"epoch":26131647,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":514.84,"free":3454.53},{"epoch":26131648,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":516.57,"free":3452.79},{"epoch":26131649,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516.59,"free":3452.77},{"epoch":26131650,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":516.59,"free":3452.79},{"epoch":26131651,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":516.57,"free":3452.8},{"epoch":26131652,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":516.54,"free":3452.82},{"epoch":26131653,"idl":99.79,"recv":0,"send":0,"writ":0.52,"used":516.57,"free":3452.79},{"epoch":26131654,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":516,"free":3453.36},{"epoch":26131655,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":516.49,"free":3452.89},{"epoch":26131656,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":516.47,"free":3452.9},{"epoch":26131657,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":516.6,"free":3452.76},{"epoch":26131658,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":517.38,"free":3451.98},{"epoch":26131659,"idl":99.75,"recv":0,"send":0,"writ":0.38,"used":516.59,"free":3452.74},{"epoch":26131660,"idl":99.73,"recv":0.02,"send":0.04,"writ":0.41,"used":517.48,"free":3451.82},{"epoch":26131661,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":519.44,"free":3449.78},{"epoch":26131662,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":519.48,"free":3449.73},{"epoch":26131663,"idl":99.77,"recv":0,"send":0,"writ":0.51,"used":520.65,"free":3448.56},{"epoch":26131664,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":521.88,"free":3447.33},{"epoch":26131665,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":522.11,"free":3447.12},{"epoch":26131666,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":522.1,"free":3447.14},{"epoch":26131667,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":522.07,"free":3447.17},{"epoch":26131668,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":522.38,"free":3446.86},{"epoch":26131669,"idl":99.93,"recv":0,"send":0,"writ":0.35,"used":521.83,"free":3447.4},{"epoch":26131670,"idl":99.76,"recv":0.01,"send":0.06,"writ":0.32,"used":521.69,"free":3447.55},{"epoch":26131671,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":523.08,"free":3446.1},{"epoch":26131672,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":523.06,"free":3446.12},{"epoch":26131673,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.21,"free":3445.97},{"epoch":26131674,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":524.89,"free":3444.28},{"epoch":26131675,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":524.66,"free":3444.53},{"epoch":26131676,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.63,"free":3444.55},{"epoch":26131677,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":524.61,"free":3444.58},{"epoch":26131678,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":524.57,"free":3444.61},{"epoch":26131679,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":524.9,"free":3444.27},{"epoch":26131680,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":523.64,"free":3445.55},{"epoch":26131681,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":523.69,"free":3445.5},{"epoch":26131682,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.67,"free":3445.52},{"epoch":26131683,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":523.64,"free":3445.54},{"epoch":26131684,"idl":99.75,"recv":0,"send":0,"writ":0.52,"used":524.52,"free":3444.66},{"epoch":26131685,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":524.34,"free":3444.84},{"epoch":26131686,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":524.31,"free":3444.86},{"epoch":26131687,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":524.28,"free":3444.89},{"epoch":26131688,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.37,"free":3444.79},{"epoch":26131689,"idl":99.52,"recv":0,"send":0.01,"writ":0.63,"used":525.56,"free":3443.57},{"epoch":26131690,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":525.12,"free":3444.02},{"epoch":26131691,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":525.09,"free":3444.05},{"epoch":26131692,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":524.69,"free":3444.45},{"epoch":26131693,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.03,"free":3445.1},{"epoch":26131694,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":524.54,"free":3444.61},{"epoch":26131695,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":523.18,"free":3445.98},{"epoch":26131696,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":523.21,"free":3445.95},{"epoch":26131697,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":522.94,"free":3446.22},{"epoch":26131698,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":522.9,"free":3446.25},{"epoch":26131699,"idl":99.8,"recv":0,"send":0,"writ":0.52,"used":523.3,"free":3445.84},{"epoch":26131700,"idl":99.78,"recv":0,"send":0,"writ":0.37,"used":523.89,"free":3445.27},{"epoch":26131701,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":523.82,"free":3445.34},{"epoch":26131702,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":523.79,"free":3445.36},{"epoch":26131703,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":523.89,"free":3445.26},{"epoch":26131704,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":524.24,"free":3444.91},{"epoch":26131705,"idl":99.76,"recv":0,"send":0,"writ":0.52,"used":522.71,"free":3446.45},{"epoch":26131706,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":522.66,"free":3446.5},{"epoch":26131707,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":522.63,"free":3446.53},{"epoch":26131708,"idl":99.35,"recv":0,"send":0,"writ":0.16,"used":522.6,"free":3446.55},{"epoch":26131709,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":522.58,"free":3446.57},{"epoch":26131710,"idl":99.63,"recv":0,"send":0,"writ":0.71,"used":523.82,"free":3445.34},{"epoch":26131711,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":523.69,"free":3445.47},{"epoch":26131712,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.67,"free":3445.48},{"epoch":26131713,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":523.65,"free":3445.5},{"epoch":26131714,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.62,"free":3445.52},{"epoch":26131715,"idl":99.63,"recv":0,"send":0,"writ":0.73,"used":522.69,"free":3446.47},{"epoch":26131716,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":522.1,"free":3447.05},{"epoch":26131717,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":522.08,"free":3447.07},{"epoch":26131718,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":521.66,"free":3447.48},{"epoch":26131719,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":524.13,"free":3444.99},{"epoch":26131720,"idl":99.72,"recv":0,"send":0.01,"writ":0.67,"used":524.82,"free":3444.32},{"epoch":26131721,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":523.88,"free":3445.25},{"epoch":26131722,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":523.85,"free":3445.28},{"epoch":26131723,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":523.83,"free":3445.29},{"epoch":26131724,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":523.8,"free":3445.32},{"epoch":26131725,"idl":99.69,"recv":0,"send":0,"writ":0.72,"used":524.35,"free":3444.78},{"epoch":26131726,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":523.82,"free":3445.31},{"epoch":26131727,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":523.92,"free":3445.21},{"epoch":26131728,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.88,"free":3445.24},{"epoch":26131729,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":523.86,"free":3445.26},{"epoch":26131730,"idl":96.56,"recv":0.02,"send":0.01,"writ":14.93,"used":534.95,"free":3436.04},{"epoch":26131731,"idl":99.9,"recv":0,"send":0,"writ":64.39,"used":526.8,"free":3442.23},{"epoch":26131732,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":526.77,"free":3442.25},{"epoch":26131733,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":526.74,"free":3442.28},{"epoch":26131734,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":526.71,"free":3442.3},{"epoch":26131735,"idl":99.63,"recv":0,"send":0,"writ":0.57,"used":526.47,"free":3442.57},{"epoch":26131736,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":524.26,"free":3444.8},{"epoch":26131737,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":524.23,"free":3444.82},{"epoch":26131738,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.33,"free":3444.72},{"epoch":26131739,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.36,"free":3444.7},{"epoch":26131740,"idl":99.64,"recv":0,"send":0,"writ":0.63,"used":523.75,"free":3445.33},{"epoch":26131741,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":523.33,"free":3445.74},{"epoch":26131742,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":523.31,"free":3445.76},{"epoch":26131743,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":523.28,"free":3445.78},{"epoch":26131744,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":523.25,"free":3445.81},{"epoch":26131745,"idl":99.67,"recv":0,"send":0,"writ":0.48,"used":523.41,"free":3445.67},{"epoch":26131746,"idl":99.92,"recv":0,"send":0,"writ":0.36,"used":524.1,"free":3444.97},{"epoch":26131747,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":524.15,"free":3444.92},{"epoch":26131748,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":524.12,"free":3444.95},{"epoch":26131749,"idl":99.77,"recv":0,"send":0.01,"writ":0.33,"used":524.07,"free":3444.97},{"epoch":26131750,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":524.31,"free":3444.75},{"epoch":26131751,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":525.04,"free":3444.01},{"epoch":26131752,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":524.26,"free":3444.79},{"epoch":26131753,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":524.29,"free":3444.75},{"epoch":26131754,"idl":99.49,"recv":0,"send":0,"writ":0.13,"used":524.38,"free":3444.67},{"epoch":26131755,"idl":97.9,"recv":0,"send":0,"writ":0.37,"used":523.72,"free":3445.35},{"epoch":26131756,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":524.03,"free":3445.04},{"epoch":26131757,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":523.32,"free":3445.74},{"epoch":26131758,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":523.31,"free":3445.75},{"epoch":26131759,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":523.27,"free":3445.78},{"epoch":26131760,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":523.5,"free":3445.57},{"epoch":26131761,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":524.35,"free":3444.72},{"epoch":26131762,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":524.38,"free":3444.68},{"epoch":26131763,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":524.36,"free":3444.7},{"epoch":26131764,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":524.32,"free":3444.73},{"epoch":26131765,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":523.83,"free":3445.24},{"epoch":26131766,"idl":99.8,"recv":0,"send":0,"writ":0.47,"used":524.29,"free":3444.79},{"epoch":26131767,"idl":99.92,"recv":0,"send":0,"writ":0.23,"used":524.02,"free":3445.05},{"epoch":26131768,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":523.99,"free":3445.07},{"epoch":26131769,"idl":98.65,"recv":0,"send":0,"writ":0.14,"used":524.08,"free":3444.98},{"epoch":26131770,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":524.15,"free":3444.92},{"epoch":26131771,"idl":99.77,"recv":0,"send":0,"writ":0.49,"used":524.48,"free":3444.59},{"epoch":26131772,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":524.07,"free":3444.99},{"epoch":26131773,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":524.04,"free":3445.01},{"epoch":26131774,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":524.01,"free":3445.04},{"epoch":26131775,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":524.24,"free":3444.82},{"epoch":26131776,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":524.67,"free":3444.39},{"epoch":26131777,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":524.63,"free":3444.43},{"epoch":26131778,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":524.18,"free":3444.88},{"epoch":26131779,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":524.56,"free":3444.48},{"epoch":26131780,"idl":99.86,"recv":0,"send":0.01,"writ":0.3,"used":524.56,"free":3444.49},{"epoch":26131781,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":525.01,"free":3444.03},{"epoch":26131782,"idl":99.9,"recv":0,"send":0,"writ":0.39,"used":524.49,"free":3444.55},{"epoch":26131783,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":524.47,"free":3444.57},{"epoch":26131784,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":524.56,"free":3444.49},{"epoch":26131785,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":524.62,"free":3444.44},{"epoch":26131786,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":524.58,"free":3444.48},{"epoch":26131787,"idl":99.81,"recv":0,"send":0,"writ":0.53,"used":524.91,"free":3444.15},{"epoch":26131788,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":524.53,"free":3444.52},{"epoch":26131789,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":524.5,"free":3444.55},{"epoch":26131790,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":523.28,"free":3445.78},{"epoch":26131791,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":523.29,"free":3445.78},{"epoch":26131792,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":523.74,"free":3445.32},{"epoch":26131793,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.36,"free":3445.7},{"epoch":26131794,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":523.33,"free":3445.72},{"epoch":26131795,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":523.66,"free":3445.41},{"epoch":26131796,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":523.53,"free":3445.53},{"epoch":26131797,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":523.53,"free":3445.53},{"epoch":26131798,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.99,"free":3446.06},{"epoch":26131799,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":523.03,"free":3446.02},{"epoch":26131800,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":522.94,"free":3446.12},{"epoch":26131801,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":522.9,"free":3446.16},{"epoch":26131802,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":524.2,"free":3444.86},{"epoch":26131803,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":524.07,"free":3444.98},{"epoch":26131804,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":524.04,"free":3445.01},{"epoch":26131805,"idl":99.78,"recv":0,"send":0,"writ":0.35,"used":524.51,"free":3444.55},{"epoch":26131806,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":524.49,"free":3444.57},{"epoch":26131807,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":525.01,"free":3444.05},{"epoch":26131808,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":524.63,"free":3444.43},{"epoch":26131809,"idl":99.74,"recv":0,"send":0.01,"writ":0.3,"used":524.83,"free":3444.2},{"epoch":26131810,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":523.61,"free":3445.43},{"epoch":26131811,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":523.56,"free":3445.48},{"epoch":26131812,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":524.06,"free":3444.98},{"epoch":26131813,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":524.49,"free":3444.55},{"epoch":26131814,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":524.51,"free":3444.51},{"epoch":26131815,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":524.64,"free":3444.41},{"epoch":26131816,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.6,"free":3444.44},{"epoch":26131817,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":524.57,"free":3444.46},{"epoch":26131818,"idl":99.75,"recv":0,"send":0,"writ":0.53,"used":524.9,"free":3444.13},{"epoch":26131819,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":524.52,"free":3444.51},{"epoch":26131820,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":522.82,"free":3446.23},{"epoch":26131821,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":522.76,"free":3446.28},{"epoch":26131822,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":522.8,"free":3446.24},{"epoch":26131823,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":524.81,"free":3444.22},{"epoch":26131824,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":524.31,"free":3444.72},{"epoch":26131825,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":524.07,"free":3444.98},{"epoch":26131826,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":524.02,"free":3445.02},{"epoch":26131827,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":524,"free":3445.04},{"epoch":26131828,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":525.1,"free":3443.93},{"epoch":26131829,"idl":99.29,"recv":0,"send":0,"writ":0.14,"used":524.8,"free":3444.23},{"epoch":26131830,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":524.86,"free":3444.18},{"epoch":26131831,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":524.83,"free":3444.21},{"epoch":26131832,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":524.8,"free":3444.23},{"epoch":26131833,"idl":99.76,"recv":0.02,"send":1.49,"writ":0.82,"used":525.25,"free":3443.76},{"epoch":26131834,"idl":99.9,"recv":0.01,"send":1.03,"writ":0.38,"used":524.75,"free":3444.26},{"epoch":26131835,"idl":99.75,"recv":0.01,"send":0.58,"writ":0.53,"used":523.81,"free":3445.2},{"epoch":26131836,"idl":99.91,"recv":0.01,"send":1.94,"writ":0.3,"used":523.79,"free":3445.22},{"epoch":26131837,"idl":99.93,"recv":0.01,"send":0.67,"writ":0.32,"used":523.73,"free":3445.26},{"epoch":26131838,"idl":99.71,"recv":0,"send":0,"writ":0.68,"used":524.09,"free":3444.9},{"epoch":26131839,"idl":99.7,"recv":0.01,"send":0,"writ":0.32,"used":524.72,"free":3444.24},{"epoch":26131840,"idl":99.79,"recv":0.01,"send":0.01,"writ":0.31,"used":524.72,"free":3444.25},{"epoch":26131841,"idl":99.89,"recv":0.01,"send":0,"writ":0.15,"used":524.74,"free":3444.23},{"epoch":26131842,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.78,"free":3444.18},{"epoch":26131843,"idl":99.79,"recv":0,"send":0,"writ":0.52,"used":524.65,"free":3444.31},{"epoch":26131844,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":523.24,"free":3445.72},{"epoch":26131845,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":522.75,"free":3446.23},{"epoch":26131846,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":522.71,"free":3446.25},{"epoch":26131847,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":522.7,"free":3446.26},{"epoch":26131848,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":523.36,"free":3445.6},{"epoch":26131849,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":524.02,"free":3444.93},{"epoch":26131850,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":523.54,"free":3445.43},{"epoch":26131851,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":523.49,"free":3445.47},{"epoch":26131852,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":523.45,"free":3445.52},{"epoch":26131853,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":523.42,"free":3445.54},{"epoch":26131854,"idl":99.75,"recv":0,"send":0,"writ":0.52,"used":523.46,"free":3445.5},{"epoch":26131855,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":523.36,"free":3445.61},{"epoch":26131856,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":523.32,"free":3445.65},{"epoch":26131857,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":523.28,"free":3445.68},{"epoch":26131858,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":523.27,"free":3445.69},{"epoch":26131859,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":524.17,"free":3444.79},{"epoch":26131860,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":523.25,"free":3445.73},{"epoch":26131861,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":523.24,"free":3445.73},{"epoch":26131862,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":523.35,"free":3445.62},{"epoch":26131863,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":523.33,"free":3445.64},{"epoch":26131864,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":524.13,"free":3444.83},{"epoch":26131865,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":523.54,"free":3445.43},{"epoch":26131866,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":523.5,"free":3445.47},{"epoch":26131867,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":523.46,"free":3445.51},{"epoch":26131868,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":523.43,"free":3445.53},{"epoch":26131869,"idl":99.61,"recv":0,"send":0.01,"writ":0.52,"used":524.03,"free":3444.91},{"epoch":26131870,"idl":99.81,"recv":0,"send":0,"writ":0.41,"used":524.06,"free":3444.89},{"epoch":26131871,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.05,"free":3444.91},{"epoch":26131872,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":524.02,"free":3444.93},{"epoch":26131873,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.98,"free":3444.96},{"epoch":26131874,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":524.42,"free":3444.52},{"epoch":26131875,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":522.25,"free":3446.7},{"epoch":26131876,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":522.25,"free":3446.7},{"epoch":26131877,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":522.6,"free":3446.35},{"epoch":26131878,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.57,"free":3446.37},{"epoch":26131879,"idl":99.73,"recv":0,"send":0,"writ":0.39,"used":523.8,"free":3445.13},{"epoch":26131880,"idl":99.81,"recv":0,"send":0,"writ":0.46,"used":524.26,"free":3444.69},{"epoch":26131881,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":524.21,"free":3444.73},{"epoch":26131882,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":524.19,"free":3444.75},{"epoch":26131883,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":524.2,"free":3444.73},{"epoch":26131884,"idl":99.77,"recv":0,"send":0,"writ":0.38,"used":524.73,"free":3444.21},{"epoch":26131885,"idl":99.83,"recv":0,"send":0,"writ":0.49,"used":524.05,"free":3444.91},{"epoch":26131886,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":524.01,"free":3444.94},{"epoch":26131887,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":523.98,"free":3444.97},{"epoch":26131888,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":523.94,"free":3445},{"epoch":26131889,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":523.92,"free":3445.03},{"epoch":26131890,"idl":99.51,"recv":0,"send":0,"writ":0.73,"used":523.36,"free":3445.6},{"epoch":26131891,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":523.09,"free":3445.87},{"epoch":26131892,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":523.05,"free":3445.9},{"epoch":26131893,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.02,"free":3445.93},{"epoch":26131894,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":522.99,"free":3445.95},{"epoch":26131895,"idl":99.54,"recv":0,"send":0,"writ":0.75,"used":523.35,"free":3445.61},{"epoch":26131896,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":522.94,"free":3446.01},{"epoch":26131897,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.92,"free":3446.03},{"epoch":26131898,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":523.35,"free":3445.59},{"epoch":26131899,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":524.26,"free":3444.66},{"epoch":26131900,"idl":99.69,"recv":0,"send":0.01,"writ":0.69,"used":524.62,"free":3444.32},{"epoch":26131901,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.24,"free":3444.69},{"epoch":26131902,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.22,"free":3444.71},{"epoch":26131903,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":524.19,"free":3444.73},{"epoch":26131904,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":524.16,"free":3444.75},{"epoch":26131905,"idl":99.72,"recv":0,"send":0,"writ":0.67,"used":523.74,"free":3445.19},{"epoch":26131906,"idl":99.47,"recv":0,"send":0,"writ":0.71,"used":524.85,"free":3444.06},{"epoch":26131907,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":524.61,"free":3444.29},{"epoch":26131908,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.59,"free":3444.32},{"epoch":26131909,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.55,"free":3444.35},{"epoch":26131910,"idl":99.73,"recv":0,"send":0,"writ":0.73,"used":524.45,"free":3444.46},{"epoch":26131911,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.78,"free":3445.14},{"epoch":26131912,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":523.75,"free":3445.17},{"epoch":26131913,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":523.72,"free":3445.2},{"epoch":26131914,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":523.8,"free":3445.11},{"epoch":26131915,"idl":99.69,"recv":0,"send":0,"writ":0.7,"used":525.12,"free":3443.81},{"epoch":26131916,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":524.08,"free":3444.84},{"epoch":26131917,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":524.06,"free":3444.88},{"epoch":26131918,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":524.02,"free":3444.91},{"epoch":26131919,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":523.99,"free":3444.94},{"epoch":26131920,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":524.62,"free":3444.33},{"epoch":26131921,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":522.59,"free":3446.35},{"epoch":26131922,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":522.62,"free":3446.32},{"epoch":26131923,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":522.6,"free":3446.34},{"epoch":26131924,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.57,"free":3446.36},{"epoch":26131925,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":523.77,"free":3445.18},{"epoch":26131926,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":525.13,"free":3443.81},{"epoch":26131927,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":524.71,"free":3444.22},{"epoch":26131928,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.74,"free":3444.19},{"epoch":26131929,"idl":99.74,"recv":0,"send":0.01,"writ":0.29,"used":524.62,"free":3444.28},{"epoch":26131930,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":524.36,"free":3444.56},{"epoch":26131931,"idl":99.79,"recv":0,"send":0,"writ":0.52,"used":524.85,"free":3444.06},{"epoch":26131932,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.52,"free":3444.38},{"epoch":26131933,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":524.49,"free":3444.41},{"epoch":26131934,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":524.46,"free":3444.43},{"epoch":26131935,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":524.24,"free":3444.67},{"epoch":26131936,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":523.99,"free":3444.91},{"epoch":26131937,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":523.35,"free":3445.55},{"epoch":26131938,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":523.32,"free":3445.58},{"epoch":26131939,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":523.29,"free":3445.6},{"epoch":26131940,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":523.28,"free":3445.63},{"epoch":26131941,"idl":99.74,"recv":0,"send":0,"writ":0.53,"used":524.34,"free":3444.57},{"epoch":26131942,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":524.45,"free":3444.46},{"epoch":26131943,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":524.45,"free":3444.45},{"epoch":26131944,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":524.58,"free":3444.32},{"epoch":26131945,"idl":99.81,"recv":0,"send":0,"writ":0.35,"used":524.56,"free":3444.35},{"epoch":26131946,"idl":99.71,"recv":0,"send":0,"writ":0.52,"used":525.02,"free":3443.89},{"epoch":26131947,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":524.5,"free":3444.4},{"epoch":26131948,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":524.47,"free":3444.43},{"epoch":26131949,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":524.44,"free":3444.45},{"epoch":26131950,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":524.44,"free":3444.48},{"epoch":26131951,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":524.88,"free":3444.03},{"epoch":26131952,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":524.56,"free":3444.34},{"epoch":26131953,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":524.54,"free":3444.36},{"epoch":26131954,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":524.51,"free":3444.38},{"epoch":26131955,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":524.74,"free":3444.17},{"epoch":26131956,"idl":99.72,"recv":0,"send":0,"writ":0.39,"used":525.01,"free":3443.9},{"epoch":26131957,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":523.94,"free":3444.96},{"epoch":26131958,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":523.97,"free":3444.92},{"epoch":26131959,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":524.81,"free":3444.06},{"epoch":26131960,"idl":99.81,"recv":0,"send":0.01,"writ":0.31,"used":524.57,"free":3444.32},{"epoch":26131961,"idl":99.75,"recv":0,"send":0,"writ":0.35,"used":524.82,"free":3444.07},{"epoch":26131962,"idl":99.9,"recv":0,"send":0,"writ":0.35,"used":523.76,"free":3445.12},{"epoch":26131963,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":523.74,"free":3445.14},{"epoch":26131964,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":523.72,"free":3445.17},{"epoch":26131965,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":523.71,"free":3445.19},{"epoch":26131966,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":523.86,"free":3445.04},{"epoch":26131967,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":524.86,"free":3444.03},{"epoch":26131968,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":524.54,"free":3444.35},{"epoch":26131969,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":524.51,"free":3444.37},{"epoch":26131970,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":524.75,"free":3444.15},{"epoch":26131971,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.72,"free":3444.18},{"epoch":26131972,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":525.05,"free":3443.85},{"epoch":26131973,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.73,"free":3444.16},{"epoch":26131974,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":524.82,"free":3444.06},{"epoch":26131975,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":523.87,"free":3445.04},{"epoch":26131976,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":523.8,"free":3445.1},{"epoch":26131977,"idl":99.71,"recv":0,"send":0,"writ":0.52,"used":524.76,"free":3444.14},{"epoch":26131978,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":524.24,"free":3444.66},{"epoch":26131979,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":524.21,"free":3444.68},{"epoch":26131980,"idl":98.95,"recv":0,"send":0,"writ":12.3,"used":523.81,"free":3445.85},{"epoch":26131981,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":523.84,"free":3445.91},{"epoch":26131982,"idl":99.71,"recv":0,"send":0,"writ":0.44,"used":524.23,"free":3445.5},{"epoch":26131983,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":523.39,"free":3446.33},{"epoch":26131984,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":523.36,"free":3446.35},{"epoch":26131985,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":524.32,"free":3445.44},{"epoch":26131986,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":524.31,"free":3445.46},{"epoch":26131987,"idl":99.65,"recv":0,"send":0.01,"writ":0.56,"used":524.7,"free":3445.06},{"epoch":26131988,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":524.62,"free":3445.13},{"epoch":26131989,"idl":99.65,"recv":0,"send":0.01,"writ":0.3,"used":524.87,"free":3444.88},{"epoch":26131990,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":523.89,"free":3445.87},{"epoch":26131991,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":523.65,"free":3446.11},{"epoch":26131992,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":523.27,"free":3446.49},{"epoch":26131993,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":524.03,"free":3445.72},{"epoch":26131994,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":524,"free":3445.77},{"epoch":26131995,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":522.61,"free":3447.19},{"epoch":26131996,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":522.69,"free":3447.11},{"epoch":26131997,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":522.65,"free":3447.14},{"epoch":26131998,"idl":99.55,"recv":0.01,"send":0.01,"writ":0.58,"used":524.57,"free":3445.21},{"epoch":26131999,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":524.04,"free":3445.74},{"epoch":26132000,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":522.94,"free":3446.86},{"epoch":26132001,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":522.89,"free":3446.9},{"epoch":26132002,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":522.86,"free":3446.92},{"epoch":26132003,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":524.09,"free":3445.69},{"epoch":26132004,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":523.79,"free":3445.99},{"epoch":26132005,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":523.56,"free":3446.23},{"epoch":26132006,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":523.51,"free":3446.28},{"epoch":26132007,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":523.57,"free":3446.22},{"epoch":26132008,"idl":99.66,"recv":0,"send":0,"writ":0.42,"used":524.25,"free":3445.53},{"epoch":26132009,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":523.89,"free":3445.89},{"epoch":26132010,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":523.16,"free":3446.63},{"epoch":26132011,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":523.12,"free":3446.67},{"epoch":26132012,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":523.09,"free":3446.7},{"epoch":26132013,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":523.68,"free":3446.1},{"epoch":26132014,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":523.52,"free":3446.26},{"epoch":26132015,"idl":99.65,"recv":0,"send":0,"writ":0.32,"used":523.16,"free":3446.64},{"epoch":26132016,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":523.17,"free":3446.62},{"epoch":26132017,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":523.14,"free":3446.64},{"epoch":26132018,"idl":99.67,"recv":0,"send":0,"writ":0.61,"used":523.76,"free":3446.02},{"epoch":26132019,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":531.8,"free":3437.96},{"epoch":26132020,"idl":99.71,"recv":0,"send":0.01,"writ":0.37,"used":531.92,"free":3437.85},{"epoch":26132021,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":531.9,"free":3437.88},{"epoch":26132022,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":531.94,"free":3437.83},{"epoch":26132023,"idl":99.66,"recv":0,"send":0,"writ":0.52,"used":532.35,"free":3437.42},{"epoch":26132024,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":531.74,"free":3438.01},{"epoch":26132025,"idl":99.72,"recv":0,"send":0,"writ":0.38,"used":531.49,"free":3438.28},{"epoch":26132026,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":531.46,"free":3438.3},{"epoch":26132027,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":531.43,"free":3438.33},{"epoch":26132028,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":531.78,"free":3437.97},{"epoch":26132029,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":531.91,"free":3437.84},{"epoch":26132030,"idl":99.69,"recv":0,"send":0,"writ":0.38,"used":530.84,"free":3438.93},{"epoch":26132031,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":530.78,"free":3438.98},{"epoch":26132032,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":530.75,"free":3439.01},{"epoch":26132033,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":530.72,"free":3439.03},{"epoch":26132034,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":532.45,"free":3437.3},{"epoch":26132035,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":532.5,"free":3437.27},{"epoch":26132036,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.38,"free":3437.39},{"epoch":26132037,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":532.42,"free":3437.35},{"epoch":26132038,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.51,"free":3437.25},{"epoch":26132039,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":532.79,"free":3436.97},{"epoch":26132040,"idl":99.67,"recv":0,"send":0,"writ":0.38,"used":531.51,"free":3438.26},{"epoch":26132041,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":531.46,"free":3438.3},{"epoch":26132042,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":531.44,"free":3438.32},{"epoch":26132043,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":531.41,"free":3438.35},{"epoch":26132044,"idl":99.63,"recv":0,"send":0,"writ":0.47,"used":531.98,"free":3437.77},{"epoch":26132045,"idl":99.7,"recv":0,"send":0,"writ":0.38,"used":532.39,"free":3437.37},{"epoch":26132046,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":532.52,"free":3437.25},{"epoch":26132047,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":532.49,"free":3437.27},{"epoch":26132048,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.46,"free":3437.3},{"epoch":26132049,"idl":99.48,"recv":0,"send":0.01,"writ":0.61,"used":532.67,"free":3437.08},{"epoch":26132050,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":532.41,"free":3437.37},{"epoch":26132051,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.39,"free":3437.39},{"epoch":26132052,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.36,"free":3437.41},{"epoch":26132053,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":532.39,"free":3437.38},{"epoch":26132054,"idl":99.63,"recv":0,"send":0,"writ":0.41,"used":532.84,"free":3436.92},{"epoch":26132055,"idl":99.68,"recv":0,"send":0,"writ":0.4,"used":532.01,"free":3437.78},{"epoch":26132056,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":531.97,"free":3437.82},{"epoch":26132057,"idl":99.8,"recv":0,"send":0,"writ":0.23,"used":531.95,"free":3437.84},{"epoch":26132058,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":531.91,"free":3437.87},{"epoch":26132059,"idl":99.66,"recv":0,"send":0,"writ":0.5,"used":532.24,"free":3437.55},{"epoch":26132060,"idl":99.67,"recv":0,"send":0,"writ":0.33,"used":531.39,"free":3438.41},{"epoch":26132061,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":531.43,"free":3438.37},{"epoch":26132062,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":531.54,"free":3438.25},{"epoch":26132063,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":531.51,"free":3438.28},{"epoch":26132064,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":531.86,"free":3437.92},{"epoch":26132065,"idl":99.6,"recv":0,"send":0,"writ":0.49,"used":531.82,"free":3437.98},{"epoch":26132066,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":531.69,"free":3438.1},{"epoch":26132067,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":531.66,"free":3438.13},{"epoch":26132068,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":531.64,"free":3438.14},{"epoch":26132069,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":531.78,"free":3438},{"epoch":26132070,"idl":99.5,"recv":0,"send":0,"writ":0.64,"used":532.46,"free":3437.33},{"epoch":26132071,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":531.99,"free":3437.8},{"epoch":26132072,"idl":97.66,"recv":0,"send":0,"writ":0.16,"used":531.96,"free":3437.82},{"epoch":26132073,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":531.93,"free":3437.85},{"epoch":26132074,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":531.89,"free":3437.88},{"epoch":26132075,"idl":99.58,"recv":0,"send":0,"writ":0.68,"used":532.72,"free":3437.07},{"epoch":26132076,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":532.41,"free":3437.38},{"epoch":26132077,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.51,"free":3437.28},{"epoch":26132078,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":532.31,"free":3437.47},{"epoch":26132079,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":532.46,"free":3437.3},{"epoch":26132080,"idl":99.6,"recv":0,"send":0.01,"writ":0.7,"used":532.97,"free":3436.81},{"epoch":26132081,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":532.66,"free":3437.11},{"epoch":26132082,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":532.64,"free":3437.12},{"epoch":26132083,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.62,"free":3437.14},{"epoch":26132084,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.76,"free":3437},{"epoch":26132085,"idl":99.5,"recv":0,"send":0,"writ":0.68,"used":532.28,"free":3437.49},{"epoch":26132086,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":531.74,"free":3438.04},{"epoch":26132087,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":531.71,"free":3438.05},{"epoch":26132088,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":531.69,"free":3438.08},{"epoch":26132089,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":531.66,"free":3438.1},{"epoch":26132090,"idl":99.61,"recv":0,"send":0,"writ":0.68,"used":532.75,"free":3437.03},{"epoch":26132091,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":532.42,"free":3437.35},{"epoch":26132092,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.52,"free":3437.25},{"epoch":26132093,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.48,"free":3437.29},{"epoch":26132094,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.44,"free":3437.32},{"epoch":26132095,"idl":94.87,"recv":0.35,"send":0.01,"writ":78.64,"used":541.19,"free":3428.83},{"epoch":26132096,"idl":99.55,"recv":0,"send":0,"writ":182.25,"used":535.03,"free":3434.65},{"epoch":26132097,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":535.19,"free":3434.5},{"epoch":26132098,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":535.15,"free":3434.52},{"epoch":26132099,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":535.12,"free":3434.56},{"epoch":26132100,"idl":99.66,"recv":0,"send":0,"writ":0.27,"used":535.03,"free":3434.66},{"epoch":26132101,"idl":99.71,"recv":0,"send":0,"writ":0.61,"used":533.28,"free":3436.44},{"epoch":26132102,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":532.9,"free":3436.82},{"epoch":26132103,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":532.86,"free":3436.84},{"epoch":26132104,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":532.86,"free":3436.85},{"epoch":26132105,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":531.63,"free":3438.09},{"epoch":26132106,"idl":99.59,"recv":0,"send":0,"writ":0.58,"used":532.51,"free":3437.22},{"epoch":26132107,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":532.25,"free":3437.48},{"epoch":26132108,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":532.23,"free":3437.51},{"epoch":26132109,"idl":99.7,"recv":0,"send":0.01,"writ":0.28,"used":532.42,"free":3437.29},{"epoch":26132110,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":532.65,"free":3437.08},{"epoch":26132111,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":532.99,"free":3436.73},{"epoch":26132112,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":532.78,"free":3436.93},{"epoch":26132113,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":532.76,"free":3436.96},{"epoch":26132114,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":532.71,"free":3437},{"epoch":26132115,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":531.98,"free":3437.74},{"epoch":26132116,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":532.23,"free":3437.49},{"epoch":26132117,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":531.17,"free":3438.54},{"epoch":26132118,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":531.14,"free":3438.57},{"epoch":26132119,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":531.23,"free":3438.48},{"epoch":26132120,"idl":98.1,"recv":0,"send":0,"writ":0.27,"used":532.99,"free":3436.74},{"epoch":26132121,"idl":99.63,"recv":0,"send":0,"writ":0.48,"used":533.22,"free":3436.5},{"epoch":26132122,"idl":99.71,"recv":0,"send":0,"writ":0.21,"used":532.71,"free":3437},{"epoch":26132123,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":532.68,"free":3437.03},{"epoch":26132124,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.65,"free":3437.06},{"epoch":26132125,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":531.93,"free":3437.8},{"epoch":26132126,"idl":99.63,"recv":0,"send":0,"writ":0.53,"used":532.57,"free":3437.15},{"epoch":26132127,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":533.02,"free":3436.7},{"epoch":26132128,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.18,"used":532.97,"free":3436.75},{"epoch":26132129,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":532.93,"free":3436.78},{"epoch":26132130,"idl":99.71,"recv":0,"send":0,"writ":0.26,"used":532.92,"free":3436.81},{"epoch":26132131,"idl":99.68,"recv":0,"send":0,"writ":0.4,"used":533.25,"free":3436.47},{"epoch":26132132,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":532.87,"free":3436.85},{"epoch":26132133,"idl":98.62,"recv":0,"send":0,"writ":0.14,"used":532.9,"free":3436.81},{"epoch":26132134,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":533,"free":3436.71},{"epoch":26132135,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":532.04,"free":3437.68},{"epoch":26132136,"idl":99.69,"recv":0,"send":0,"writ":0.53,"used":532.44,"free":3437.28},{"epoch":26132137,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":532.68,"free":3437.04},{"epoch":26132138,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":532.33,"free":3437.38},{"epoch":26132139,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":532.85,"free":3436.83},{"epoch":26132140,"idl":99.77,"recv":0,"send":0.01,"writ":0.3,"used":532.63,"free":3437.07},{"epoch":26132141,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":532.7,"free":3436.99},{"epoch":26132142,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":533.54,"free":3436.15},{"epoch":26132143,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":531.98,"free":3437.7},{"epoch":26132144,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":531.96,"free":3437.72},{"epoch":26132145,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":532.19,"free":3437.5},{"epoch":26132146,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":532.17,"free":3437.53},{"epoch":26132147,"idl":99.74,"recv":0,"send":0,"writ":0.52,"used":532.62,"free":3437.07},{"epoch":26132148,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.12,"free":3437.6},{"epoch":26132149,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":532.18,"free":3437.53},{"epoch":26132150,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":532.26,"free":3437.47},{"epoch":26132151,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":532.23,"free":3437.5},{"epoch":26132152,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":532.71,"free":3437.01},{"epoch":26132153,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.43,"free":3437.29},{"epoch":26132154,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":532.39,"free":3437.32},{"epoch":26132155,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":531.66,"free":3438.07},{"epoch":26132156,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":531.62,"free":3438.1},{"epoch":26132157,"idl":99.73,"recv":0,"send":0,"writ":0.53,"used":532.25,"free":3437.47},{"epoch":26132158,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.03,"free":3437.69},{"epoch":26132159,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532,"free":3437.71},{"epoch":26132160,"idl":99.72,"recv":0,"send":0,"writ":0.26,"used":531.02,"free":3438.71},{"epoch":26132161,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":530.99,"free":3438.74},{"epoch":26132162,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":532.24,"free":3437.48},{"epoch":26132163,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":532.15,"free":3437.57},{"epoch":26132164,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.13,"free":3437.58},{"epoch":26132165,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":531.57,"free":3438.16},{"epoch":26132166,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":531.53,"free":3438.19},{"epoch":26132167,"idl":99.77,"recv":0,"send":0,"writ":0.43,"used":532.53,"free":3437.19},{"epoch":26132168,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":532.46,"free":3437.26},{"epoch":26132169,"idl":99.83,"recv":0,"send":0.01,"writ":0.27,"used":532.43,"free":3437.26},{"epoch":26132170,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":531.51,"free":3438.2},{"epoch":26132171,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":531.39,"free":3438.31},{"epoch":26132172,"idl":99.74,"recv":0,"send":0,"writ":0.39,"used":531.93,"free":3437.77},{"epoch":26132173,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":532.26,"free":3437.44},{"epoch":26132174,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":532.24,"free":3437.47},{"epoch":26132175,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":532.47,"free":3437.27},{"epoch":26132176,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.45,"free":3437.3},{"epoch":26132177,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":532.42,"free":3437.32},{"epoch":26132178,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":532.53,"free":3437.21},{"epoch":26132179,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":532.12,"free":3437.61},{"epoch":26132180,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":531.48,"free":3438.27},{"epoch":26132181,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":531.54,"free":3438.21},{"epoch":26132182,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.51,"free":3438.23},{"epoch":26132183,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":532.78,"free":3436.96},{"epoch":26132184,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.43,"free":3437.3},{"epoch":26132185,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":532.43,"free":3437.31},{"epoch":26132186,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.4,"free":3437.34},{"epoch":26132187,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.37,"free":3437.37},{"epoch":26132188,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":532.59,"free":3437.14},{"epoch":26132189,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.25,"free":3437.47},{"epoch":26132190,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":531.28,"free":3438.46},{"epoch":26132191,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.23,"free":3438.51},{"epoch":26132192,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":531.2,"free":3438.54},{"epoch":26132193,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":532.27,"free":3437.46},{"epoch":26132194,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.38,"free":3437.35},{"epoch":26132195,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":532.14,"free":3437.61},{"epoch":26132196,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":532.17,"free":3437.57},{"epoch":26132197,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.26,"free":3437.48},{"epoch":26132198,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":532.66,"free":3437.08},{"epoch":26132199,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":532.72,"free":3436.99},{"epoch":26132200,"idl":99.78,"recv":0,"send":0.01,"writ":0.29,"used":531.24,"free":3438.49},{"epoch":26132201,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.18,"free":3438.54},{"epoch":26132202,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":531.14,"free":3438.58},{"epoch":26132203,"idl":99.74,"recv":0,"send":0,"writ":0.45,"used":531.99,"free":3437.73},{"epoch":26132204,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":532.5,"free":3437.23},{"epoch":26132205,"idl":99.74,"recv":0,"send":0,"writ":0.27,"used":531.34,"free":3438.43},{"epoch":26132206,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.24,"free":3438.51},{"epoch":26132207,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":531.22,"free":3438.54},{"epoch":26132208,"idl":99.74,"recv":0,"send":0,"writ":0.39,"used":531.64,"free":3438.12},{"epoch":26132209,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":532.14,"free":3437.61},{"epoch":26132210,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":531.43,"free":3438.33},{"epoch":26132211,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.44,"free":3438.32},{"epoch":26132212,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":531.56,"free":3438.2},{"epoch":26132213,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":531.97,"free":3437.78},{"epoch":26132214,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":532.49,"free":3437.26},{"epoch":26132215,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":532.24,"free":3437.52},{"epoch":26132216,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.2,"free":3437.56},{"epoch":26132217,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.17,"free":3437.58},{"epoch":26132218,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.15,"free":3437.6},{"epoch":26132219,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":532.55,"free":3437.2},{"epoch":26132220,"idl":99.71,"recv":0,"send":0,"writ":0.25,"used":531.58,"free":3438.19},{"epoch":26132221,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.53,"free":3438.23},{"epoch":26132222,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.47,"free":3438.29},{"epoch":26132223,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":531.43,"free":3438.32},{"epoch":26132224,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":532.71,"free":3437.04},{"epoch":26132225,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":532.55,"free":3437.21},{"epoch":26132226,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.51,"free":3437.25},{"epoch":26132227,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":532.47,"free":3437.28},{"epoch":26132228,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":532.44,"free":3437.31},{"epoch":26132229,"idl":99.57,"recv":0,"send":0.01,"writ":0.63,"used":532.94,"free":3436.79},{"epoch":26132230,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":532.67,"free":3437.07},{"epoch":26132231,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.71,"free":3437.03},{"epoch":26132232,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":532.75,"free":3436.98},{"epoch":26132233,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":532.72,"free":3437.01},{"epoch":26132234,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":533.04,"free":3436.69},{"epoch":26132235,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":532.43,"free":3437.31},{"epoch":26132236,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":532.39,"free":3437.36},{"epoch":26132237,"idl":99.9,"recv":0,"send":0,"writ":0.23,"used":532.44,"free":3437.32},{"epoch":26132238,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":532.5,"free":3437.25},{"epoch":26132239,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":532.92,"free":3436.83},{"epoch":26132240,"idl":99.79,"recv":0,"send":0,"writ":0.42,"used":532.7,"free":3437.06},{"epoch":26132241,"idl":99.7,"recv":0,"send":0,"writ":0.16,"used":532.65,"free":3437.12},{"epoch":26132242,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.62,"free":3437.15},{"epoch":26132243,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.72,"free":3437.05},{"epoch":26132244,"idl":99.75,"recv":0,"send":0,"writ":0.48,"used":532.82,"free":3436.94},{"epoch":26132245,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":532.25,"free":3437.53},{"epoch":26132246,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":532.22,"free":3437.56},{"epoch":26132247,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.2,"free":3437.58},{"epoch":26132248,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.17,"free":3437.6},{"epoch":26132249,"idl":99.73,"recv":0,"send":0,"writ":0.37,"used":532.7,"free":3437.07},{"epoch":26132250,"idl":99.82,"recv":0,"send":0,"writ":0.46,"used":531.66,"free":3438.12},{"epoch":26132251,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":531.79,"free":3437.98},{"epoch":26132252,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.76,"free":3438.01},{"epoch":26132253,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":531.74,"free":3438.03},{"epoch":26132254,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":531.7,"free":3438.07},{"epoch":26132255,"idl":99.66,"recv":0,"send":0,"writ":0.66,"used":532.13,"free":3437.64},{"epoch":26132256,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":531.65,"free":3438.12},{"epoch":26132257,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":531.63,"free":3438.14},{"epoch":26132258,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":532.1,"free":3437.66},{"epoch":26132259,"idl":99.69,"recv":0,"send":0,"writ":0.37,"used":532.28,"free":3437.45},{"epoch":26132260,"idl":99.6,"recv":0,"send":0.01,"writ":0.67,"used":533.08,"free":3436.68},{"epoch":26132261,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.73,"free":3437.03},{"epoch":26132262,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.7,"free":3437.05},{"epoch":26132263,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.67,"free":3437.07},{"epoch":26132264,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.64,"free":3437.11},{"epoch":26132265,"idl":99.66,"recv":0,"send":0,"writ":0.68,"used":532.75,"free":3437.02},{"epoch":26132266,"idl":99.91,"recv":0,"send":0,"writ":0.38,"used":532.54,"free":3437.23},{"epoch":26132267,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":532.52,"free":3437.25},{"epoch":26132268,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.48,"free":3437.28},{"epoch":26132269,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.46,"free":3437.3},{"epoch":26132270,"idl":99.65,"recv":0,"send":0,"writ":0.68,"used":533.55,"free":3436.22},{"epoch":26132271,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":532.91,"free":3436.87},{"epoch":26132272,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":532.88,"free":3436.9},{"epoch":26132273,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":532.92,"free":3436.86},{"epoch":26132274,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":533.02,"free":3436.76},{"epoch":26132275,"idl":99.64,"recv":0,"send":0,"writ":0.68,"used":533.66,"free":3436.13},{"epoch":26132276,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":532.98,"free":3436.81},{"epoch":26132277,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":532.95,"free":3436.83},{"epoch":26132278,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":532.93,"free":3436.85},{"epoch":26132279,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.89,"free":3436.88},{"epoch":26132280,"idl":99.6,"recv":0,"send":0,"writ":0.7,"used":533.01,"free":3436.78},{"epoch":26132281,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":532.18,"free":3437.61},{"epoch":26132282,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.28,"free":3437.51},{"epoch":26132283,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.25,"free":3437.53},{"epoch":26132284,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.22,"free":3437.55},{"epoch":26132285,"idl":99.66,"recv":0,"send":0,"writ":0.44,"used":533.24,"free":3436.55},{"epoch":26132286,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":531.95,"free":3437.84},{"epoch":26132287,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.91,"free":3437.87},{"epoch":26132288,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.88,"free":3437.9},{"epoch":26132289,"idl":99.69,"recv":0,"send":0.01,"writ":0.27,"used":532.93,"free":3436.82},{"epoch":26132290,"idl":99.82,"recv":0,"send":0,"writ":0.25,"used":533.01,"free":3436.76},{"epoch":26132291,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":533.34,"free":3436.43},{"epoch":26132292,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.96,"free":3436.81},{"epoch":26132293,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.93,"free":3436.83},{"epoch":26132294,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.16,"free":3437.6},{"epoch":26132295,"idl":99.82,"recv":0,"send":0,"writ":0.26,"used":532.17,"free":3437.6},{"epoch":26132296,"idl":99.73,"recv":0,"send":0,"writ":0.6,"used":531.77,"free":3438},{"epoch":26132297,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":531.43,"free":3438.34},{"epoch":26132298,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":531.53,"free":3438.23},{"epoch":26132299,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":531.5,"free":3438.25},{"epoch":26132300,"idl":99.83,"recv":0,"send":0,"writ":0.26,"used":532.22,"free":3437.56},{"epoch":26132301,"idl":98.96,"recv":0,"send":0,"writ":0.54,"used":532.56,"free":3437.21},{"epoch":26132302,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.18,"free":3437.59},{"epoch":26132303,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.16,"free":3437.61},{"epoch":26132304,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.12,"free":3437.64},{"epoch":26132305,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":531.69,"free":3438.09},{"epoch":26132306,"idl":99.71,"recv":0,"send":0,"writ":0.48,"used":532,"free":3437.77},{"epoch":26132307,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":531.51,"free":3438.26},{"epoch":26132308,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.48,"free":3438.28},{"epoch":26132309,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":531.45,"free":3438.31},{"epoch":26132310,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":531.71,"free":3438.06},{"epoch":26132311,"idl":99.73,"recv":0,"send":0,"writ":0.47,"used":532.55,"free":3437.23},{"epoch":26132312,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":532.11,"free":3437.66},{"epoch":26132313,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.22,"free":3437.54},{"epoch":26132314,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.28,"free":3437.48},{"epoch":26132315,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":532.27,"free":3437.51},{"epoch":26132316,"idl":99.7,"recv":0,"send":0,"writ":0.44,"used":532.64,"free":3437.12},{"epoch":26132317,"idl":99.91,"recv":0,"send":0,"writ":0.28,"used":531.71,"free":3438.05},{"epoch":26132318,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":531.82,"free":3437.94},{"epoch":26132319,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":532.13,"free":3437.61},{"epoch":26132320,"idl":99.77,"recv":0,"send":0.01,"writ":0.26,"used":531.23,"free":3438.52},{"epoch":26132321,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":531.77,"free":3437.97},{"epoch":26132322,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":531.5,"free":3438.23},{"epoch":26132323,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":531.47,"free":3438.26},{"epoch":26132324,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":531.45,"free":3438.28},{"epoch":26132325,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":532.16,"free":3437.58},{"epoch":26132326,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.15,"free":3437.59},{"epoch":26132327,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":531.62,"free":3438.11},{"epoch":26132328,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":531.18,"free":3438.57},{"epoch":26132329,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":531.27,"free":3438.48},{"epoch":26132330,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":531.01,"free":3438.75},{"epoch":26132331,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":530.97,"free":3438.78},{"epoch":26132332,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":531.98,"free":3437.78},{"epoch":26132333,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.89,"free":3437.86},{"epoch":26132334,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":531.86,"free":3437.88},{"epoch":26132335,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":531.68,"free":3438.08},{"epoch":26132336,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":531.77,"free":3437.98},{"epoch":26132337,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":532.44,"free":3437.3},{"epoch":26132338,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.2,"free":3437.54},{"epoch":26132339,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.18,"free":3437.56},{"epoch":26132340,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":532.18,"free":3437.57},{"epoch":26132341,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.14,"free":3437.61},{"epoch":26132342,"idl":99.7,"recv":0,"send":0,"writ":0.49,"used":533.07,"free":3436.68},{"epoch":26132343,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":532.63,"free":3437.11},{"epoch":26132344,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.72,"free":3437.01},{"epoch":26132345,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":532.54,"free":3437.21},{"epoch":26132346,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":532.44,"free":3437.31},{"epoch":26132347,"idl":96.38,"recv":0.13,"send":0,"writ":12.18,"used":539.18,"free":3428.71},{"epoch":26132348,"idl":99.83,"recv":0,"send":0,"writ":35.24,"used":534.92,"free":3433.89},{"epoch":26132349,"idl":99.75,"recv":0.01,"send":0.01,"writ":0.38,"used":533.48,"free":3435.35},{"epoch":26132350,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":534.61,"free":3434.23},{"epoch":26132351,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":534.63,"free":3434.22},{"epoch":26132352,"idl":99.76,"recv":0,"send":0,"writ":0.42,"used":534.98,"free":3433.86},{"epoch":26132353,"idl":99.91,"recv":0,"send":0,"writ":0.32,"used":532.32,"free":3436.58},{"epoch":26132354,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.3,"free":3436.61},{"epoch":26132355,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":532.79,"free":3436.15},{"epoch":26132356,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.76,"free":3436.17},{"epoch":26132357,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":532.84,"free":3436.08},{"epoch":26132358,"idl":99.88,"recv":0,"send":0,"writ":0.45,"used":532.22,"free":3436.71},{"epoch":26132359,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.17,"free":3436.75},{"epoch":26132360,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":531.58,"free":3437.35},{"epoch":26132361,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.62,"free":3437.31},{"epoch":26132362,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":531.59,"free":3437.34},{"epoch":26132363,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":532.33,"free":3436.59},{"epoch":26132364,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.02,"free":3436.89},{"epoch":26132365,"idl":98.16,"recv":0,"send":0,"writ":15.69,"used":535.69,"free":3433.67},{"epoch":26132366,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.96,"free":3436.94},{"epoch":26132367,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":531.94,"free":3436.96},{"epoch":26132368,"idl":99.63,"recv":0,"send":0,"writ":0.53,"used":532.02,"free":3436.88},{"epoch":26132369,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.58,"free":3437.32},{"epoch":26132370,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":532.05,"free":3436.86},{"epoch":26132371,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":532.04,"free":3436.87},{"epoch":26132372,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":532,"free":3436.9},{"epoch":26132373,"idl":99.73,"recv":0,"send":0,"writ":0.53,"used":532.66,"free":3436.24},{"epoch":26132374,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":532.43,"free":3436.46},{"epoch":26132375,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":532.48,"free":3436.43},{"epoch":26132376,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.59,"free":3436.32},{"epoch":26132377,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":532.56,"free":3436.35},{"epoch":26132378,"idl":99.75,"recv":0,"send":0,"writ":0.53,"used":532.64,"free":3436.26},{"epoch":26132379,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":532.51,"free":3436.38},{"epoch":26132380,"idl":99.81,"recv":0,"send":0.01,"writ":0.3,"used":531.29,"free":3437.61},{"epoch":26132381,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":531.24,"free":3437.66},{"epoch":26132382,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":531.21,"free":3437.69},{"epoch":26132383,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":532.44,"free":3436.46},{"epoch":26132384,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":532.81,"free":3436.07},{"epoch":26132385,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":532.8,"free":3436.1},{"epoch":26132386,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":532.77,"free":3436.13},{"epoch":26132387,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":532.74,"free":3436.16},{"epoch":26132388,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":533.06,"free":3435.83},{"epoch":26132389,"idl":99.92,"recv":0,"send":0,"writ":0.27,"used":531.94,"free":3436.95},{"epoch":26132390,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":532.73,"free":3436.18},{"epoch":26132391,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.82,"free":3436.09},{"epoch":26132392,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.79,"free":3436.1},{"epoch":26132393,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":532.77,"free":3436.13},{"epoch":26132394,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":533.09,"free":3435.8},{"epoch":26132395,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":532.76,"free":3436.14},{"epoch":26132396,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":532.69,"free":3436.21},{"epoch":26132397,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":532.68,"free":3436.22},{"epoch":26132398,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.78,"free":3436.11},{"epoch":26132399,"idl":99.72,"recv":0,"send":0,"writ":0.6,"used":533.15,"free":3435.74},{"epoch":26132400,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":532.79,"free":3436.11},{"epoch":26132401,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":532.75,"free":3436.15},{"epoch":26132402,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":532.73,"free":3436.17},{"epoch":26132403,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.69,"free":3436.2},{"epoch":26132404,"idl":99.75,"recv":0,"send":0,"writ":0.52,"used":532.86,"free":3436.03},{"epoch":26132405,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":531.98,"free":3436.92},{"epoch":26132406,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.08,"free":3436.82},{"epoch":26132407,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.05,"free":3436.84},{"epoch":26132408,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.03,"free":3436.86},{"epoch":26132409,"idl":99.64,"recv":0,"send":0.01,"writ":0.7,"used":532.91,"free":3435.95},{"epoch":26132410,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":532.7,"free":3436.17},{"epoch":26132411,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.67,"free":3436.2},{"epoch":26132412,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.66,"free":3436.21},{"epoch":26132413,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":532.83,"free":3436.03},{"epoch":26132414,"idl":99.66,"recv":0,"send":0,"writ":0.51,"used":533.15,"free":3435.7},{"epoch":26132415,"idl":99.71,"recv":0,"send":0,"writ":0.36,"used":532.8,"free":3436.08},{"epoch":26132416,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":532.76,"free":3436.11},{"epoch":26132417,"idl":99.89,"recv":0,"send":0,"writ":0.22,"used":532.73,"free":3436.13},{"epoch":26132418,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.71,"free":3436.15},{"epoch":26132419,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":533.12,"free":3435.74},{"epoch":26132420,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":532.21,"free":3436.67},{"epoch":26132421,"idl":99.23,"recv":0,"send":0,"writ":0.13,"used":532.34,"free":3436.53},{"epoch":26132422,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.3,"free":3436.56},{"epoch":26132423,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":532.26,"free":3436.6},{"epoch":26132424,"idl":99.73,"recv":0,"send":0,"writ":0.39,"used":532.95,"free":3435.91},{"epoch":26132425,"idl":99.76,"recv":0,"send":0,"writ":0.48,"used":532.71,"free":3436.16},{"epoch":26132426,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":532.68,"free":3436.18},{"epoch":26132427,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":532.71,"free":3436.15},{"epoch":26132428,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":532.81,"free":3436.05},{"epoch":26132429,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":532.78,"free":3436.07},{"epoch":26132430,"idl":99.66,"recv":0,"send":0,"writ":0.8,"used":532.2,"free":3436.67},{"epoch":26132431,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":531.52,"free":3437.34},{"epoch":26132432,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":531.49,"free":3437.37},{"epoch":26132433,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.46,"free":3437.39},{"epoch":26132434,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":531.44,"free":3437.41},{"epoch":26132435,"idl":99.57,"recv":0,"send":0,"writ":0.73,"used":532.75,"free":3436.11},{"epoch":26132436,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.57,"free":3436.29},{"epoch":26132437,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.53,"free":3436.32},{"epoch":26132438,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":532.62,"free":3436.23},{"epoch":26132439,"idl":99.7,"recv":0,"send":0,"writ":0.27,"used":532,"free":3436.83},{"epoch":26132440,"idl":99.61,"recv":0,"send":0.01,"writ":0.71,"used":532.64,"free":3436.21},{"epoch":26132441,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":532.42,"free":3436.42},{"epoch":26132442,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.4,"free":3436.44},{"epoch":26132443,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.52,"free":3436.31},{"epoch":26132444,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.52,"free":3436.33},{"epoch":26132445,"idl":99.68,"recv":0,"send":0,"writ":0.66,"used":533.19,"free":3435.68},{"epoch":26132446,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.98,"free":3435.88},{"epoch":26132447,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.95,"free":3435.9},{"epoch":26132448,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":532.92,"free":3435.93},{"epoch":26132449,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.02,"free":3436.83},{"epoch":26132450,"idl":99.67,"recv":0,"send":0,"writ":0.66,"used":531.67,"free":3437.19},{"epoch":26132451,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":532.06,"free":3436.8},{"epoch":26132452,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.03,"free":3436.83},{"epoch":26132453,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":532,"free":3436.86},{"epoch":26132454,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.96,"free":3436.89},{"epoch":26132455,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":531.9,"free":3436.96},{"epoch":26132456,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":531.42,"free":3437.44},{"epoch":26132457,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":531.42,"free":3437.44},{"epoch":26132458,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.56,"free":3437.3},{"epoch":26132459,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":531.53,"free":3437.32},{"epoch":26132460,"idl":95.35,"recv":0.26,"send":0.01,"writ":64.89,"used":541.88,"free":3427.21},{"epoch":26132461,"idl":99.15,"recv":0,"send":0,"writ":194.85,"used":537.33,"free":3431.71},{"epoch":26132462,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":534.71,"free":3434.33},{"epoch":26132463,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":534.69,"free":3434.35},{"epoch":26132464,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":534.66,"free":3434.37},{"epoch":26132465,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":534.88,"free":3434.16},{"epoch":26132466,"idl":99.61,"recv":0,"send":0,"writ":0.58,"used":531.9,"free":3437.17},{"epoch":26132467,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":531.55,"free":3437.52},{"epoch":26132468,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.6,"free":3437.46},{"epoch":26132469,"idl":99.67,"recv":0,"send":0.01,"writ":0.34,"used":532.3,"free":3436.73},{"epoch":26132470,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":531.35,"free":3437.7},{"epoch":26132471,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":532.02,"free":3437.04},{"epoch":26132472,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":531.74,"free":3437.32},{"epoch":26132473,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":531.71,"free":3437.35},{"epoch":26132474,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.74,"free":3437.32},{"epoch":26132475,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":531.16,"free":3437.92},{"epoch":26132476,"idl":99.77,"recv":0,"send":0,"writ":0.63,"used":532.24,"free":3436.83},{"epoch":26132477,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":532.05,"free":3437.02},{"epoch":26132478,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":532.02,"free":3437.04},{"epoch":26132479,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":532,"free":3437.06},{"epoch":26132480,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":531.99,"free":3437.08},{"epoch":26132481,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":532.48,"free":3436.59},{"epoch":26132482,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":532.24,"free":3436.82},{"epoch":26132483,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":532.34,"free":3436.72},{"epoch":26132484,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.32,"free":3436.74},{"epoch":26132485,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":532.31,"free":3436.77},{"epoch":26132486,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":533.03,"free":3436.04},{"epoch":26132487,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":532.26,"free":3436.81},{"epoch":26132488,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.23,"free":3436.83},{"epoch":26132489,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.2,"free":3436.86},{"epoch":26132490,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":532.29,"free":3436.79},{"epoch":26132491,"idl":99.77,"recv":0,"send":0,"writ":0.51,"used":532.87,"free":3436.2},{"epoch":26132492,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":532.31,"free":3436.76},{"epoch":26132493,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.28,"free":3436.78},{"epoch":26132494,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.26,"free":3436.8},{"epoch":26132495,"idl":99.53,"recv":0,"send":0,"writ":0.3,"used":532.25,"free":3436.83},{"epoch":26132496,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":532.6,"free":3436.47},{"epoch":26132497,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":532.44,"free":3436.63},{"epoch":26132498,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":532.31,"free":3436.75},{"epoch":26132499,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":531.6,"free":3437.43},{"epoch":26132500,"idl":99.81,"recv":0,"send":0.01,"writ":0.28,"used":531.08,"free":3437.97},{"epoch":26132501,"idl":99.71,"recv":0,"send":0,"writ":0.41,"used":531.45,"free":3437.6},{"epoch":26132502,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":531.5,"free":3437.55},{"epoch":26132503,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":531.48,"free":3437.56},{"epoch":26132504,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.45,"free":3437.59},{"epoch":26132505,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":530.87,"free":3438.18},{"epoch":26132506,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":530.89,"free":3438.16},{"epoch":26132507,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":532.15,"free":3436.89},{"epoch":26132508,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":531.81,"free":3437.23},{"epoch":26132509,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":531.79,"free":3437.25},{"epoch":26132510,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":532.49,"free":3436.56},{"epoch":26132511,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.47,"free":3436.57},{"epoch":26132512,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":532.99,"free":3436.05},{"epoch":26132513,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.49,"free":3436.55},{"epoch":26132514,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.59,"free":3436.45},{"epoch":26132515,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":531.63,"free":3437.42},{"epoch":26132516,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":531.56,"free":3437.48},{"epoch":26132517,"idl":99.71,"recv":0,"send":0,"writ":0.52,"used":532.19,"free":3436.87},{"epoch":26132518,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":532.01,"free":3437.05},{"epoch":26132519,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":531.96,"free":3437.09},{"epoch":26132520,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":532.49,"free":3436.58},{"epoch":26132521,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.61,"free":3436.46},{"epoch":26132522,"idl":99.67,"recv":0,"send":0,"writ":0.52,"used":532.49,"free":3436.57},{"epoch":26132523,"idl":99.81,"recv":0.01,"send":0.06,"writ":0.18,"used":531.81,"free":3437.24},{"epoch":26132524,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":531.82,"free":3437.22},{"epoch":26132525,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":531.58,"free":3437.48},{"epoch":26132526,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.54,"free":3437.51},{"epoch":26132527,"idl":99.73,"recv":0,"send":0,"writ":0.5,"used":532.29,"free":3436.76},{"epoch":26132528,"idl":99.81,"recv":0,"send":0,"writ":0.22,"used":532.46,"free":3436.58},{"epoch":26132529,"idl":99.64,"recv":0,"send":0.01,"writ":0.3,"used":532.66,"free":3436.36},{"epoch":26132530,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":531.51,"free":3437.52},{"epoch":26132531,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":531.58,"free":3437.45},{"epoch":26132532,"idl":99.71,"recv":0,"send":0,"writ":0.51,"used":532.64,"free":3436.39},{"epoch":26132533,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":533,"free":3436.03},{"epoch":26132534,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.96,"free":3436.06},{"epoch":26132535,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":531.51,"free":3437.53},{"epoch":26132536,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":531.44,"free":3437.59},{"epoch":26132537,"idl":99.61,"recv":0,"send":0,"writ":0.36,"used":532.31,"free":3436.72},{"epoch":26132538,"idl":99.84,"recv":0,"send":0,"writ":0.35,"used":532.06,"free":3436.96},{"epoch":26132539,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.04,"free":3436.98},{"epoch":26132540,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":532.28,"free":3436.75},{"epoch":26132541,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":532.24,"free":3436.79},{"epoch":26132542,"idl":98.29,"recv":0,"send":0,"writ":0.3,"used":532.59,"free":3436.43},{"epoch":26132543,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":532.42,"free":3436.6},{"epoch":26132544,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":532.4,"free":3436.62},{"epoch":26132545,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":532.06,"free":3436.97},{"epoch":26132546,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":532.05,"free":3436.98},{"epoch":26132547,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":532.02,"free":3437.01},{"epoch":26132548,"idl":99.57,"recv":0,"send":0,"writ":0.54,"used":532.97,"free":3436.05},{"epoch":26132549,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.2,"free":3436.82},{"epoch":26132550,"idl":99.68,"recv":0,"send":0,"writ":0.28,"used":532.67,"free":3436.36},{"epoch":26132551,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":532.66,"free":3436.37},{"epoch":26132552,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":532.71,"free":3436.32},{"epoch":26132553,"idl":99.64,"recv":0,"send":0,"writ":0.55,"used":533.34,"free":3435.68},{"epoch":26132554,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.79,"free":3436.23},{"epoch":26132555,"idl":98.31,"recv":0,"send":0,"writ":0.36,"used":532.77,"free":3436.26},{"epoch":26132556,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":532.75,"free":3436.28},{"epoch":26132557,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":532.72,"free":3436.3},{"epoch":26132558,"idl":99.65,"recv":0,"send":0,"writ":0.59,"used":532.81,"free":3436.2},{"epoch":26132559,"idl":99.57,"recv":0,"send":0,"writ":0.34,"used":532.9,"free":3436.09},{"epoch":26132560,"idl":99.63,"recv":0,"send":0.01,"writ":0.35,"used":533.09,"free":3435.92},{"epoch":26132561,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":533.05,"free":3435.95},{"epoch":26132562,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":533.03,"free":3435.97},{"epoch":26132563,"idl":99.67,"recv":0,"send":0,"writ":0.46,"used":533.22,"free":3435.78},{"epoch":26132564,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":532.73,"free":3436.31},{"epoch":26132565,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":532.72,"free":3436.36},{"epoch":26132566,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":532.71,"free":3436.37},{"epoch":26132567,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.73,"free":3436.34},{"epoch":26132568,"idl":99.7,"recv":0,"send":0,"writ":0.45,"used":533.54,"free":3435.52},{"epoch":26132569,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":532.8,"free":3436.26},{"epoch":26132570,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":532.32,"free":3436.75},{"epoch":26132571,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":532.27,"free":3436.79},{"epoch":26132572,"idl":99.83,"recv":0,"send":0.01,"writ":0.15,"used":532.24,"free":3436.82},{"epoch":26132573,"idl":99.7,"recv":0,"send":0,"writ":0.49,"used":532.61,"free":3436.45},{"epoch":26132574,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":532.41,"free":3436.64},{"epoch":26132575,"idl":99.67,"recv":0,"send":0,"writ":0.36,"used":532.54,"free":3436.53},{"epoch":26132576,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.57,"free":3436.49},{"epoch":26132577,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":532.54,"free":3436.52},{"epoch":26132578,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":532.88,"free":3436.18},{"epoch":26132579,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":532.72,"free":3436.33},{"epoch":26132580,"idl":99.65,"recv":0,"send":0,"writ":0.29,"used":532.72,"free":3436.35},{"epoch":26132581,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":532.7,"free":3436.37},{"epoch":26132582,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.71,"free":3436.35},{"epoch":26132583,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":532.82,"free":3436.24},{"epoch":26132584,"idl":99.62,"recv":0,"send":0.01,"writ":0.53,"used":533.34,"free":3435.71},{"epoch":26132585,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":533,"free":3436.08},{"epoch":26132586,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.97,"free":3436.1},{"epoch":26132587,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":532.95,"free":3436.12},{"epoch":26132588,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":532.91,"free":3436.15},{"epoch":26132589,"idl":99.56,"recv":0,"send":0.01,"writ":0.78,"used":533.33,"free":3435.71},{"epoch":26132590,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":532.34,"free":3436.71},{"epoch":26132591,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":532.29,"free":3436.76},{"epoch":26132592,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":532.26,"free":3436.78},{"epoch":26132593,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.23,"free":3436.81},{"epoch":26132594,"idl":99.64,"recv":0,"send":0,"writ":0.46,"used":532.35,"free":3436.7},{"epoch":26132595,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":531.95,"free":3437.13},{"epoch":26132596,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":531.92,"free":3437.15},{"epoch":26132597,"idl":99.8,"recv":0,"send":0,"writ":0.21,"used":532.02,"free":3437.04},{"epoch":26132598,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.05,"free":3437.01},{"epoch":26132599,"idl":99.69,"recv":0,"send":0,"writ":0.48,"used":532.65,"free":3436.41},{"epoch":26132600,"idl":99.69,"recv":0,"send":0,"writ":0.39,"used":532.52,"free":3436.55},{"epoch":26132601,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":531.7,"free":3437.37},{"epoch":26132602,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":531.47,"free":3437.59},{"epoch":26132603,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":531.44,"free":3437.62},{"epoch":26132604,"idl":99.68,"recv":0,"send":0,"writ":0.39,"used":532.16,"free":3436.89},{"epoch":26132605,"idl":99.66,"recv":0,"send":0,"writ":0.47,"used":532.15,"free":3436.91},{"epoch":26132606,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":532.06,"free":3437},{"epoch":26132607,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.03,"free":3437.02},{"epoch":26132608,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":531.99,"free":3437.05},{"epoch":26132609,"idl":99.68,"recv":0,"send":0,"writ":0.48,"used":532.37,"free":3436.67},{"epoch":26132610,"idl":99.7,"recv":0,"send":0,"writ":0.34,"used":531.97,"free":3437.09},{"epoch":26132611,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":531.92,"free":3437.13},{"epoch":26132612,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.05,"free":3436.99},{"epoch":26132613,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":532.05,"free":3436.99},{"epoch":26132614,"idl":96.63,"recv":0.02,"send":0.01,"writ":78.41,"used":537.9,"free":3432.39},{"epoch":26132615,"idl":99.02,"recv":0,"send":0,"writ":0.59,"used":534.61,"free":3434.17},{"epoch":26132616,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":534.73,"free":3434.04},{"epoch":26132617,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":534.74,"free":3434.04},{"epoch":26132618,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":534.7,"free":3434.07},{"epoch":26132619,"idl":99.68,"recv":0,"send":0,"writ":0.44,"used":533.03,"free":3435.73},{"epoch":26132620,"idl":99.5,"recv":0,"send":0.01,"writ":0.66,"used":531.85,"free":3436.95},{"epoch":26132621,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":531.28,"free":3437.51},{"epoch":26132622,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":531.26,"free":3437.53},{"epoch":26132623,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":531.24,"free":3437.54},{"epoch":26132624,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":531.39,"free":3437.39},{"epoch":26132625,"idl":99.58,"recv":0,"send":0,"writ":0.71,"used":532.72,"free":3436.09},{"epoch":26132626,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":532.34,"free":3436.48},{"epoch":26132627,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":532.32,"free":3436.49},{"epoch":26132628,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":532.29,"free":3436.52},{"epoch":26132629,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":532.26,"free":3436.54},{"epoch":26132630,"idl":99.59,"recv":0,"send":0,"writ":0.67,"used":532.61,"free":3436.21},{"epoch":26132631,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.28,"free":3436.53},{"epoch":26132632,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":532.39,"free":3436.43},{"epoch":26132633,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.36,"free":3436.45},{"epoch":26132634,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":532.32,"free":3436.49},{"epoch":26132635,"idl":99.56,"recv":0,"send":0,"writ":0.71,"used":532.21,"free":3436.61},{"epoch":26132636,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":532.28,"free":3436.54},{"epoch":26132637,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.27,"free":3436.55},{"epoch":26132638,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":532.23,"free":3436.58},{"epoch":26132639,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.25,"free":3436.55},{"epoch":26132640,"idl":99.52,"recv":0,"send":0,"writ":0.63,"used":532.32,"free":3436.5},{"epoch":26132641,"idl":99.8,"recv":0,"send":0,"writ":0.21,"used":532.6,"free":3436.22},{"epoch":26132642,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.57,"free":3436.24},{"epoch":26132643,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":532.54,"free":3436.27},{"epoch":26132644,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.51,"free":3436.29},{"epoch":26132645,"idl":99.57,"recv":0,"send":0,"writ":0.61,"used":532.66,"free":3436.17},{"epoch":26132646,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":532.48,"free":3436.34},{"epoch":26132647,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":532.56,"free":3436.25},{"epoch":26132648,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":532.61,"free":3436.2},{"epoch":26132649,"idl":99.75,"recv":0,"send":0.01,"writ":0.29,"used":532.58,"free":3436.21},{"epoch":26132650,"idl":99.56,"recv":0,"send":0,"writ":0.68,"used":532.72,"free":3436.09},{"epoch":26132651,"idl":99.84,"recv":0,"send":0,"writ":0.12,"used":532.55,"free":3436.26},{"epoch":26132652,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":532.51,"free":3436.29},{"epoch":26132653,"idl":99.81,"recv":0,"send":0.01,"writ":0.16,"used":532.52,"free":3436.27},{"epoch":26132654,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":532.62,"free":3436.2},{"epoch":26132655,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":532.62,"free":3436.22},{"epoch":26132656,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":532.68,"free":3436.15},{"epoch":26132657,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":532.31,"free":3436.52},{"epoch":26132658,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":532.29,"free":3436.54},{"epoch":26132659,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":532.25,"free":3436.57},{"epoch":26132660,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":532.49,"free":3436.35},{"epoch":26132661,"idl":99.64,"recv":0,"send":0,"writ":0.54,"used":533.23,"free":3435.61},{"epoch":26132662,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":532.87,"free":3435.97},{"epoch":26132663,"idl":98.55,"recv":0,"send":0,"writ":0.15,"used":532.85,"free":3435.99},{"epoch":26132664,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.82,"free":3436.01},{"epoch":26132665,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":532.08,"free":3436.76},{"epoch":26132666,"idl":99.71,"recv":0,"send":0,"writ":0.52,"used":531.84,"free":3437.01},{"epoch":26132667,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":531.28,"free":3437.55},{"epoch":26132668,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":531.25,"free":3437.58},{"epoch":26132669,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":531.33,"free":3437.49},{"epoch":26132670,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":532.62,"free":3436.23},{"epoch":26132671,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":532.63,"free":3436.2},{"epoch":26132672,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.08,"free":3436.75},{"epoch":26132673,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":532.05,"free":3436.78},{"epoch":26132674,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":532.02,"free":3436.8},{"epoch":26132675,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":531.83,"free":3437},{"epoch":26132676,"idl":98.42,"recv":0,"send":0,"writ":0.47,"used":532.81,"free":3436.02},{"epoch":26132677,"idl":99.76,"recv":0,"send":0,"writ":0.21,"used":532.56,"free":3436.27},{"epoch":26132678,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":532.53,"free":3436.29},{"epoch":26132679,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":532.58,"free":3436.22},{"epoch":26132680,"idl":99.69,"recv":0,"send":0.01,"writ":0.3,"used":531.84,"free":3436.97},{"epoch":26132681,"idl":99.61,"recv":0,"send":0,"writ":0.54,"used":532.54,"free":3436.27},{"epoch":26132682,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":532.5,"free":3436.3},{"epoch":26132683,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":532.47,"free":3436.33},{"epoch":26132684,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":532.45,"free":3436.34},{"epoch":26132685,"idl":99.7,"recv":0,"send":0,"writ":0.35,"used":532.15,"free":3436.66},{"epoch":26132686,"idl":99.68,"recv":0,"send":0,"writ":0.53,"used":532.45,"free":3436.36},{"epoch":26132687,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":532.07,"free":3436.73},{"epoch":26132688,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":532.04,"free":3436.76},{"epoch":26132689,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":531.99,"free":3436.8},{"epoch":26132690,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":532.23,"free":3436.58},{"epoch":26132691,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":532.58,"free":3436.23},{"epoch":26132692,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":532.12,"free":3436.69},{"epoch":26132693,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.09,"free":3436.71},{"epoch":26132694,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":532.05,"free":3436.74},{"epoch":26132695,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":531.8,"free":3437.01},{"epoch":26132696,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":531.74,"free":3437.07},{"epoch":26132697,"idl":99.59,"recv":0,"send":0,"writ":0.54,"used":532.42,"free":3436.38},{"epoch":26132698,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":531.8,"free":3437},{"epoch":26132699,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":531.84,"free":3436.96},{"epoch":26132700,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":530.86,"free":3437.95},{"epoch":26132701,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":530.81,"free":3438},{"epoch":26132702,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":532.36,"free":3436.44},{"epoch":26132703,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":531.99,"free":3436.81},{"epoch":26132704,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.95,"free":3436.84},{"epoch":26132705,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":531.59,"free":3437.23},{"epoch":26132706,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":531.65,"free":3437.16},{"epoch":26132707,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":532.8,"free":3436},{"epoch":26132708,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.82,"free":3435.98},{"epoch":26132709,"idl":99.82,"recv":0,"send":0.01,"writ":0.29,"used":532.81,"free":3435.97},{"epoch":26132710,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":532.79,"free":3436.01},{"epoch":26132711,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.76,"free":3436.03},{"epoch":26132712,"idl":99.75,"recv":0,"send":0,"writ":0.51,"used":532.98,"free":3435.81},{"epoch":26132713,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.57,"free":3436.21},{"epoch":26132714,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.62,"free":3436.16},{"epoch":26132715,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":532.85,"free":3435.95},{"epoch":26132716,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.83,"free":3435.98},{"epoch":26132717,"idl":99.69,"recv":0,"send":0,"writ":0.43,"used":533.26,"free":3435.55},{"epoch":26132718,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":533.03,"free":3435.78},{"epoch":26132719,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.99,"free":3435.81},{"epoch":26132720,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":532.49,"free":3436.32},{"epoch":26132721,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.57,"free":3436.24},{"epoch":26132722,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":533.39,"free":3435.41},{"epoch":26132723,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":532.84,"free":3435.96},{"epoch":26132724,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.8,"free":3435.99},{"epoch":26132725,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":533.04,"free":3435.77},{"epoch":26132726,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":533.02,"free":3435.79},{"epoch":26132727,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":533.43,"free":3435.38},{"epoch":26132728,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":532.46,"free":3436.35},{"epoch":26132729,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.55,"free":3436.26},{"epoch":26132730,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":531.89,"free":3436.93},{"epoch":26132731,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":531.85,"free":3436.97},{"epoch":26132732,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.82,"free":3437},{"epoch":26132733,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":532.15,"free":3436.66},{"epoch":26132734,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":531.76,"free":3437.05},{"epoch":26132735,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":532.48,"free":3436.34},{"epoch":26132736,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.47,"free":3436.35},{"epoch":26132737,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.57,"free":3436.24},{"epoch":26132738,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":533.28,"free":3435.53},{"epoch":26132739,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":532.82,"free":3435.98},{"epoch":26132740,"idl":99.83,"recv":0,"send":0.01,"writ":0.29,"used":532.62,"free":3436.2},{"epoch":26132741,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.51,"free":3436.3},{"epoch":26132742,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":532.49,"free":3436.33},{"epoch":26132743,"idl":99.75,"recv":0,"send":0,"writ":0.53,"used":533.18,"free":3435.62},{"epoch":26132744,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.97,"free":3435.83},{"epoch":26132745,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":532.15,"free":3436.67},{"epoch":26132746,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.09,"free":3436.72},{"epoch":26132747,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.05,"free":3436.76},{"epoch":26132748,"idl":99.67,"recv":0,"send":0,"writ":0.53,"used":533.32,"free":3435.48},{"epoch":26132749,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.97,"free":3435.82},{"epoch":26132750,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":532.96,"free":3435.86},{"epoch":26132751,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.95,"free":3435.86},{"epoch":26132752,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":533.09,"free":3435.72},{"epoch":26132753,"idl":99.75,"recv":0,"send":0,"writ":0.51,"used":533.5,"free":3435.3},{"epoch":26132754,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":533.03,"free":3435.78},{"epoch":26132755,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":532.79,"free":3436.05},{"epoch":26132756,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":532.11,"free":3436.72},{"epoch":26132757,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.75,"free":3437.08},{"epoch":26132758,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":532.19,"free":3436.63},{"epoch":26132759,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":532.19,"free":3436.63},{"epoch":26132760,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":532.64,"free":3436.2},{"epoch":26132761,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.6,"free":3436.23},{"epoch":26132762,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.57,"free":3436.26},{"epoch":26132763,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":532.82,"free":3436},{"epoch":26132764,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":532.26,"free":3436.56},{"epoch":26132765,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":531.04,"free":3437.79},{"epoch":26132766,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":531,"free":3437.83},{"epoch":26132767,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":531.14,"free":3437.68},{"epoch":26132768,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":531.9,"free":3436.92},{"epoch":26132769,"idl":99.77,"recv":0,"send":0.01,"writ":0.55,"used":532.08,"free":3436.71},{"epoch":26132770,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":532.3,"free":3436.51},{"epoch":26132771,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":532.27,"free":3436.53},{"epoch":26132772,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.24,"free":3436.55},{"epoch":26132773,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.22,"free":3436.57},{"epoch":26132774,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":532.82,"free":3435.99},{"epoch":26132775,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":532.22,"free":3436.61},{"epoch":26132776,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.09,"free":3436.73},{"epoch":26132777,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":532.06,"free":3436.75},{"epoch":26132778,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.03,"free":3436.79},{"epoch":26132779,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":532.36,"free":3436.45},{"epoch":26132780,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":532,"free":3436.83},{"epoch":26132781,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":531.96,"free":3436.85},{"epoch":26132782,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":532.05,"free":3436.76},{"epoch":26132783,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":532.1,"free":3436.71},{"epoch":26132784,"idl":98.58,"recv":0,"send":0,"writ":0.54,"used":532.41,"free":3436.39},{"epoch":26132785,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":532.3,"free":3436.52},{"epoch":26132786,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.28,"free":3436.54},{"epoch":26132787,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.25,"free":3436.56},{"epoch":26132788,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.23,"free":3436.58},{"epoch":26132789,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":532.72,"free":3436.08},{"epoch":26132790,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":532.48,"free":3436.33},{"epoch":26132791,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":532.6,"free":3436.21},{"epoch":26132792,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.57,"free":3436.24},{"epoch":26132793,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.54,"free":3436.26},{"epoch":26132794,"idl":99.7,"recv":0,"send":0,"writ":0.48,"used":532.77,"free":3436.03},{"epoch":26132795,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":532.5,"free":3436.32},{"epoch":26132796,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.48,"free":3436.34},{"epoch":26132797,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.44,"free":3436.36},{"epoch":26132798,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":532.42,"free":3436.38},{"epoch":26132799,"idl":99.53,"recv":0,"send":0,"writ":0.66,"used":532.92,"free":3435.85},{"epoch":26132800,"idl":99.81,"recv":0,"send":0.01,"writ":0.29,"used":532.56,"free":3436.24},{"epoch":26132801,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.52,"free":3436.28},{"epoch":26132802,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.48,"free":3436.31},{"epoch":26132803,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.44,"free":3436.34},{"epoch":26132804,"idl":99.74,"recv":0,"send":0,"writ":0.46,"used":532.83,"free":3435.98},{"epoch":26132805,"idl":99.74,"recv":0.03,"send":2.69,"writ":0.45,"used":532.32,"free":3436.51},{"epoch":26132806,"idl":99.89,"recv":0,"send":0.29,"writ":0.31,"used":532.32,"free":3436.49},{"epoch":26132807,"idl":99.8,"recv":0.03,"send":4.21,"writ":0.51,"used":532.27,"free":3436.52},{"epoch":26132808,"idl":99.92,"recv":0,"send":0,"writ":0.24,"used":532.2,"free":3436.57},{"epoch":26132809,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":532.67,"free":3436.09},{"epoch":26132810,"idl":99.81,"recv":0,"send":0,"writ":0.64,"used":531.86,"free":3436.91},{"epoch":26132811,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.78,"free":3437.01},{"epoch":26132812,"idl":99.88,"recv":0.01,"send":0.75,"writ":0.14,"used":531.74,"free":3437.04},{"epoch":26132813,"idl":99.9,"recv":0,"send":0,"writ":0.25,"used":531.79,"free":3436.98},{"epoch":26132814,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.75,"free":3437.01},{"epoch":26132815,"idl":99.55,"recv":0,"send":0,"writ":0.68,"used":532.72,"free":3436.07},{"epoch":26132816,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.44,"free":3436.34},{"epoch":26132817,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.41,"free":3436.37},{"epoch":26132818,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.37,"free":3436.4},{"epoch":26132819,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":532.46,"free":3436.31},{"epoch":26132820,"idl":99.4,"recv":0,"send":0,"writ":0.67,"used":531.9,"free":3436.89},{"epoch":26132821,"idl":99.88,"recv":0.01,"send":1,"writ":0.29,"used":531.47,"free":3437.3},{"epoch":26132822,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.53,"free":3437.23},{"epoch":26132823,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":531.49,"free":3437.27},{"epoch":26132824,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":531.45,"free":3437.3},{"epoch":26132825,"idl":93.6,"recv":17,"send":0.03,"writ":212.92,"used":547.15,"free":3418.39},{"epoch":26132826,"idl":99.81,"recv":0,"send":0,"writ":64.02,"used":534.91,"free":3433.87},{"epoch":26132827,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":534.88,"free":3433.9},{"epoch":26132828,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":534.86,"free":3433.92},{"epoch":26132829,"idl":99.76,"recv":0.01,"send":0.04,"writ":0.31,"used":534.89,"free":3433.86},{"epoch":26132830,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":534.64,"free":3434.14},{"epoch":26132831,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":532.77,"free":3436.02},{"epoch":26132832,"idl":99.92,"recv":0.01,"send":0.03,"writ":0.16,"used":532.72,"free":3436.06},{"epoch":26132833,"idl":99.88,"recv":0.01,"send":0.62,"writ":0.16,"used":532.72,"free":3436.06},{"epoch":26132834,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":532.75,"free":3436.05},{"epoch":26132835,"idl":99.64,"recv":0,"send":0,"writ":0.69,"used":532.23,"free":3436.6},{"epoch":26132836,"idl":99.89,"recv":0.01,"send":0.37,"writ":0.23,"used":532.47,"free":3436.35},{"epoch":26132837,"idl":99.88,"recv":0.01,"send":0.26,"writ":0.23,"used":532.07,"free":3436.75},{"epoch":26132838,"idl":99.88,"recv":0,"send":0.06,"writ":0.17,"used":531.98,"free":3436.83},{"epoch":26132839,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.08,"free":3436.73},{"epoch":26132840,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":532.82,"free":3436},{"epoch":26132841,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":532.28,"free":3436.54},{"epoch":26132842,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.26,"free":3436.56},{"epoch":26132843,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":532.22,"free":3436.59},{"epoch":26132844,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.19,"free":3436.61},{"epoch":26132845,"idl":99.61,"recv":0,"send":0,"writ":0.59,"used":533.1,"free":3435.72},{"epoch":26132846,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":532.74,"free":3436.07},{"epoch":26132847,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.81,"free":3436},{"epoch":26132848,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.78,"free":3436.03},{"epoch":26132849,"idl":99.9,"recv":0,"send":0.01,"writ":0.15,"used":532.73,"free":3436.07},{"epoch":26132850,"idl":99.7,"recv":0,"send":0,"writ":0.33,"used":532.04,"free":3436.78},{"epoch":26132851,"idl":99.83,"recv":0,"send":0,"writ":0.54,"used":533.04,"free":3435.78},{"epoch":26132852,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.67,"free":3436.15},{"epoch":26132853,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.82,"free":3435.99},{"epoch":26132854,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.78,"free":3436.02},{"epoch":26132855,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":532.04,"free":3436.78},{"epoch":26132856,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":532.96,"free":3435.86},{"epoch":26132857,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.71,"free":3436.11},{"epoch":26132858,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":532.64,"free":3436.17},{"epoch":26132859,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":532.65,"free":3436.13},{"epoch":26132860,"idl":99.89,"recv":0,"send":0.01,"writ":0.3,"used":532.27,"free":3436.54},{"epoch":26132861,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":533.08,"free":3435.72},{"epoch":26132862,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":532.77,"free":3436.03},{"epoch":26132863,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.75,"free":3436.05},{"epoch":26132864,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.16,"used":532.74,"free":3436.05},{"epoch":26132865,"idl":99.82,"recv":0,"send":0,"writ":0.37,"used":532.8,"free":3436},{"epoch":26132866,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":533.3,"free":3435.5},{"epoch":26132867,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":533,"free":3435.79},{"epoch":26132868,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.96,"free":3435.83},{"epoch":26132869,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.93,"free":3435.85},{"epoch":26132870,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":532.68,"free":3436.12},{"epoch":26132871,"idl":99.76,"recv":0,"send":0,"writ":0.52,"used":533.51,"free":3435.28},{"epoch":26132872,"idl":99.89,"recv":0,"send":0,"writ":0.23,"used":533,"free":3435.79},{"epoch":26132873,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":533.05,"free":3435.73},{"epoch":26132874,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":533.02,"free":3435.76},{"epoch":26132875,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":532.05,"free":3436.75},{"epoch":26132876,"idl":99.75,"recv":0,"send":0,"writ":0.4,"used":532.8,"free":3435.99},{"epoch":26132877,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":532.96,"free":3435.83},{"epoch":26132878,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":532.93,"free":3435.86},{"epoch":26132879,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.91,"free":3435.87},{"epoch":26132880,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":532.21,"free":3436.59},{"epoch":26132881,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":532.54,"free":3436.25},{"epoch":26132882,"idl":99.92,"recv":0,"send":0,"writ":0.27,"used":532.78,"free":3436.01},{"epoch":26132883,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.74,"free":3436.04},{"epoch":26132884,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.71,"free":3436.06},{"epoch":26132885,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":531.75,"free":3437.04},{"epoch":26132886,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":532.23,"free":3436.55},{"epoch":26132887,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":532.89,"free":3435.89},{"epoch":26132888,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":532.98,"free":3435.79},{"epoch":26132889,"idl":99.72,"recv":0,"send":0.01,"writ":0.29,"used":532.55,"free":3436.21},{"epoch":26132890,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":531.81,"free":3436.96},{"epoch":26132891,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.75,"free":3437.02},{"epoch":26132892,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":533.81,"free":3434.95},{"epoch":26132893,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":533.16,"free":3435.59},{"epoch":26132894,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":533.14,"free":3435.65},{"epoch":26132895,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":532.91,"free":3435.92},{"epoch":26132896,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":533.05,"free":3435.77},{"epoch":26132897,"idl":99.74,"recv":0,"send":0,"writ":0.58,"used":533.42,"free":3435.39},{"epoch":26132898,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.98,"free":3435.82},{"epoch":26132899,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.96,"free":3435.84},{"epoch":26132900,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":532.96,"free":3435.86},{"epoch":26132901,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.93,"free":3435.89},{"epoch":26132902,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":533.06,"free":3435.75},{"epoch":26132903,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.63,"free":3436.17},{"epoch":26132904,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":532.72,"free":3436.08},{"epoch":26132905,"idl":97.81,"recv":0,"send":0,"writ":0.37,"used":533.02,"free":3435.8},{"epoch":26132906,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":533,"free":3435.81},{"epoch":26132907,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":532.7,"free":3436.11},{"epoch":26132908,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":531.97,"free":3436.84},{"epoch":26132909,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":531.93,"free":3436.87},{"epoch":26132910,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":532.38,"free":3436.44},{"epoch":26132911,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.9,"free":3436.91},{"epoch":26132912,"idl":99.73,"recv":0,"send":0,"writ":0.51,"used":532.42,"free":3436.39},{"epoch":26132913,"idl":99.88,"recv":0,"send":0,"writ":0.23,"used":531.54,"free":3437.27},{"epoch":26132914,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":531.5,"free":3437.3},{"epoch":26132915,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":532.27,"free":3436.55},{"epoch":26132916,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.21,"free":3436.6},{"epoch":26132917,"idl":99.73,"recv":0,"send":0,"writ":0.81,"used":532.53,"free":3436.28},{"epoch":26132918,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":532.1,"free":3436.71},{"epoch":26132919,"idl":99.68,"recv":0,"send":0,"writ":0.33,"used":532.16,"free":3436.64},{"epoch":26132920,"idl":99.77,"recv":0,"send":0.01,"writ":0.3,"used":531.11,"free":3437.7},{"epoch":26132921,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":531.04,"free":3437.77},{"epoch":26132922,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":531.5,"free":3437.3},{"epoch":26132923,"idl":99.91,"recv":0,"send":0,"writ":0.44,"used":532.22,"free":3436.59},{"epoch":26132924,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":532.18,"free":3436.62},{"epoch":26132925,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":532.17,"free":3436.65},{"epoch":26132926,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.15,"free":3436.67},{"epoch":26132927,"idl":99.68,"recv":0,"send":0,"writ":0.39,"used":532.56,"free":3436.25},{"epoch":26132928,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":532.06,"free":3436.75},{"epoch":26132929,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":532.03,"free":3436.77},{"epoch":26132930,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":532.28,"free":3436.54},{"epoch":26132931,"idl":99.88,"recv":0.01,"send":0.12,"writ":0.17,"used":532.22,"free":3436.59},{"epoch":26132932,"idl":99.9,"recv":0.01,"send":0.4,"writ":0.2,"used":532.27,"free":3436.53},{"epoch":26132933,"idl":99.75,"recv":0,"send":0,"writ":0.52,"used":532.64,"free":3436.16},{"epoch":26132934,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":531.96,"free":3436.84},{"epoch":26132935,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":531.22,"free":3437.59},{"epoch":26132936,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":531.18,"free":3437.62},{"epoch":26132937,"idl":99.87,"recv":0,"send":0.02,"writ":0.15,"used":531.21,"free":3437.59},{"epoch":26132938,"idl":99.7,"recv":0.01,"send":0.07,"writ":0.61,"used":532.23,"free":3436.56},{"epoch":26132939,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":531.92,"free":3436.86},{"epoch":26132940,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":532.53,"free":3436.27},{"epoch":26132941,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.51,"free":3436.29},{"epoch":26132942,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":532.48,"free":3436.31},{"epoch":26132943,"idl":99.75,"recv":0,"send":0.01,"writ":0.55,"used":532.78,"free":3436},{"epoch":26132944,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.4,"free":3436.38},{"epoch":26132945,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":531.67,"free":3437.12},{"epoch":26132946,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":531.68,"free":3437.11},{"epoch":26132947,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":531.78,"free":3437},{"epoch":26132948,"idl":99.76,"recv":0.01,"send":0.44,"writ":0.45,"used":532.56,"free":3436.23},{"epoch":26132949,"idl":99.71,"recv":0.01,"send":0.02,"writ":0.39,"used":532.51,"free":3436.24},{"epoch":26132950,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":532.53,"free":3436.24},{"epoch":26132951,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":532.44,"free":3436.32},{"epoch":26132952,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.41,"free":3436.35},{"epoch":26132953,"idl":99.67,"recv":0,"send":0,"writ":0.52,"used":532.74,"free":3436.02},{"epoch":26132954,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.36,"free":3436.41},{"epoch":26132955,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":531.69,"free":3437.1},{"epoch":26132956,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":531.76,"free":3437.02},{"epoch":26132957,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":531.98,"free":3436.8},{"epoch":26132958,"idl":99.75,"recv":0,"send":0,"writ":0.4,"used":532.59,"free":3436.19},{"epoch":26132959,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":532.42,"free":3436.35},{"epoch":26132960,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":531.69,"free":3437.1},{"epoch":26132961,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":531.66,"free":3437.14},{"epoch":26132962,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":531.63,"free":3437.16},{"epoch":26132963,"idl":99.7,"recv":0,"send":0,"writ":0.4,"used":532.05,"free":3436.73},{"epoch":26132964,"idl":99.89,"recv":0,"send":0.01,"writ":0.28,"used":532.26,"free":3436.51},{"epoch":26132965,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":532.23,"free":3436.57},{"epoch":26132966,"idl":98.02,"recv":0,"send":0,"writ":0.15,"used":532.2,"free":3436.59},{"epoch":26132967,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":532.17,"free":3436.62},{"epoch":26132968,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":532.52,"free":3436.26},{"epoch":26132969,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":532.42,"free":3436.36},{"epoch":26132970,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":532.53,"free":3436.26},{"epoch":26132971,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.51,"free":3436.29},{"epoch":26132972,"idl":99.91,"recv":0,"send":0.01,"writ":0.17,"used":532.46,"free":3436.32},{"epoch":26132973,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.44,"free":3436.35},{"epoch":26132974,"idl":99.64,"recv":0,"send":0,"writ":0.52,"used":531.84,"free":3436.94},{"epoch":26132975,"idl":99.74,"recv":0,"send":0.02,"writ":0.29,"used":531.5,"free":3437.29},{"epoch":26132976,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":531.54,"free":3437.25},{"epoch":26132977,"idl":99.9,"recv":0.01,"send":0.12,"writ":0.17,"used":531.47,"free":3437.31},{"epoch":26132978,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":531.51,"free":3437.27},{"epoch":26132979,"idl":99.46,"recv":0,"send":0,"writ":0.72,"used":532.99,"free":3435.76},{"epoch":26132980,"idl":98.04,"recv":0,"send":0.01,"writ":0.38,"used":531.22,"free":3437.54},{"epoch":26132981,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":531.28,"free":3437.48},{"epoch":26132982,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":531.26,"free":3437.5},{"epoch":26132983,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":531.22,"free":3437.53},{"epoch":26132984,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":531.7,"free":3437.05},{"epoch":26132985,"idl":99.82,"recv":0,"send":0,"writ":0.37,"used":532.17,"free":3436.6},{"epoch":26132986,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.15,"free":3436.62},{"epoch":26132987,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":532.12,"free":3436.64},{"epoch":26132988,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.15,"free":3436.61},{"epoch":26132989,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":532.88,"free":3435.87},{"epoch":26132990,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":532.49,"free":3436.27},{"epoch":26132991,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":532.45,"free":3436.31},{"epoch":26132992,"idl":99.9,"recv":0.01,"send":0.17,"writ":0.18,"used":532.42,"free":3436.34},{"epoch":26132993,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":532.34,"free":3436.4},{"epoch":26132994,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":532.95,"free":3435.81},{"epoch":26132995,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":531.76,"free":3437.02},{"epoch":26132996,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":531.7,"free":3437.06},{"epoch":26132997,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":531.67,"free":3437.09},{"epoch":26132998,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.64,"free":3437.12},{"epoch":26132999,"idl":99.67,"recv":0.02,"send":0.84,"writ":0.52,"used":532.66,"free":3436.09},{"epoch":26133000,"idl":99.69,"recv":0,"send":0,"writ":0.35,"used":532.9,"free":3435.86},{"epoch":26133001,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":532.87,"free":3435.9},{"epoch":26133002,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.86,"free":3435.89},{"epoch":26133003,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":532.98,"free":3435.77},{"epoch":26133004,"idl":99.67,"recv":0,"send":0,"writ":0.36,"used":533.3,"free":3435.45},{"epoch":26133005,"idl":99.78,"recv":0,"send":0,"writ":0.52,"used":532.72,"free":3436.04},{"epoch":26133006,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":532.65,"free":3436.1},{"epoch":26133007,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.62,"free":3436.13},{"epoch":26133008,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.59,"free":3436.15},{"epoch":26133009,"idl":99.61,"recv":0,"send":0.01,"writ":0.5,"used":533.2,"free":3435.52},{"epoch":26133010,"idl":99.8,"recv":0,"send":0,"writ":0.48,"used":532.29,"free":3436.45},{"epoch":26133011,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":532.22,"free":3436.52},{"epoch":26133012,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":532.19,"free":3436.55},{"epoch":26133013,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.15,"free":3436.57},{"epoch":26133014,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.13,"free":3436.6},{"epoch":26133015,"idl":99.59,"recv":0,"send":0,"writ":0.7,"used":532.24,"free":3436.51},{"epoch":26133016,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":531.85,"free":3436.89},{"epoch":26133017,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":531.88,"free":3436.85},{"epoch":26133018,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":531.98,"free":3436.75},{"epoch":26133019,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":531.95,"free":3436.77},{"epoch":26133020,"idl":99.65,"recv":0,"send":0,"writ":0.77,"used":533.19,"free":3435.55},{"epoch":26133021,"idl":99.92,"recv":0,"send":0.01,"writ":0.18,"used":532.88,"free":3435.84},{"epoch":26133022,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":532.85,"free":3435.88},{"epoch":26133023,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.81,"free":3435.9},{"epoch":26133024,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":532.96,"free":3435.76},{"epoch":26133025,"idl":99.63,"recv":0,"send":0,"writ":0.72,"used":532.87,"free":3435.86},{"epoch":26133026,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.67,"free":3436.05},{"epoch":26133027,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.63,"free":3436.09},{"epoch":26133028,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.61,"free":3436.11},{"epoch":26133029,"idl":99.92,"recv":0,"send":0.01,"writ":0.16,"used":532.57,"free":3436.14},{"epoch":26133030,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":533.02,"free":3435.71},{"epoch":26133031,"idl":99.88,"recv":0,"send":0,"writ":0.25,"used":532.46,"free":3436.27},{"epoch":26133032,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.43,"free":3436.29},{"epoch":26133033,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.41,"free":3436.31},{"epoch":26133034,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.38,"free":3436.33},{"epoch":26133035,"idl":99.72,"recv":0,"send":0,"writ":0.73,"used":532.6,"free":3436.13},{"epoch":26133036,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":532.83,"free":3435.89},{"epoch":26133037,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.81,"free":3435.91},{"epoch":26133038,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":532.8,"free":3435.91},{"epoch":26133039,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":532.74,"free":3435.95},{"epoch":26133040,"idl":99.63,"recv":0,"send":0.01,"writ":0.77,"used":532.72,"free":3435.99},{"epoch":26133041,"idl":96.82,"recv":0,"send":0,"writ":0.14,"used":532.92,"free":3435.78},{"epoch":26133042,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.89,"free":3435.8},{"epoch":26133043,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.86,"free":3435.83},{"epoch":26133044,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.83,"free":3435.9},{"epoch":26133045,"idl":99.6,"recv":0,"send":0,"writ":0.48,"used":532.6,"free":3436.16},{"epoch":26133046,"idl":99.88,"recv":0,"send":0,"writ":0.44,"used":532.95,"free":3435.8},{"epoch":26133047,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.95,"free":3435.8},{"epoch":26133048,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.93,"free":3435.82},{"epoch":26133049,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.89,"free":3435.85},{"epoch":26133050,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":532.64,"free":3436.11},{"epoch":26133051,"idl":99.75,"recv":0,"send":0,"writ":0.52,"used":533.17,"free":3435.58},{"epoch":26133052,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.81,"free":3435.93},{"epoch":26133053,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":532.85,"free":3435.89},{"epoch":26133054,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.95,"free":3435.79},{"epoch":26133055,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":532.7,"free":3436.05},{"epoch":26133056,"idl":99.69,"recv":0,"send":0,"writ":0.53,"used":532.8,"free":3435.95},{"epoch":26133057,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.39,"free":3436.35},{"epoch":26133058,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.36,"free":3436.37},{"epoch":26133059,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.33,"free":3436.4},{"epoch":26133060,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":533.05,"free":3435.7},{"epoch":26133061,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":533.72,"free":3435.03},{"epoch":26133062,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":533.2,"free":3435.54},{"epoch":26133063,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":533.17,"free":3435.57},{"epoch":26133064,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":533.14,"free":3435.6},{"epoch":26133065,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":532.19,"free":3436.57},{"epoch":26133066,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":532.58,"free":3436.17},{"epoch":26133067,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.33,"free":3436.41},{"epoch":26133068,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":532.33,"free":3436.41},{"epoch":26133069,"idl":99.71,"recv":0,"send":0.01,"writ":0.32,"used":531.51,"free":3437.21},{"epoch":26133070,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":530.96,"free":3437.77},{"epoch":26133071,"idl":99.76,"recv":0,"send":0,"writ":0.4,"used":531.57,"free":3437.15},{"epoch":26133072,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":531.83,"free":3436.89},{"epoch":26133073,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":531.81,"free":3436.91},{"epoch":26133074,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":531.82,"free":3436.9},{"epoch":26133075,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":532.53,"free":3436.22},{"epoch":26133076,"idl":99.72,"recv":0,"send":0,"writ":0.39,"used":532.7,"free":3436.04},{"epoch":26133077,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":532.15,"free":3436.59},{"epoch":26133078,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.11,"free":3436.62},{"epoch":26133079,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":532.08,"free":3436.65},{"epoch":26133080,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":532.06,"free":3436.69},{"epoch":26133081,"idl":99.68,"recv":0,"send":0,"writ":0.4,"used":532.5,"free":3436.24},{"epoch":26133082,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":532.69,"free":3436.05},{"epoch":26133083,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.66,"free":3436.07},{"epoch":26133084,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":532.63,"free":3436.1},{"epoch":26133085,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":531.91,"free":3436.84},{"epoch":26133086,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":531.85,"free":3436.9},{"epoch":26133087,"idl":98.3,"recv":0,"send":0,"writ":0.53,"used":532.81,"free":3435.92},{"epoch":26133088,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.03,"free":3436.7},{"epoch":26133089,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.17,"free":3436.55},{"epoch":26133090,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":532.7,"free":3436.04},{"epoch":26133091,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.68,"free":3436.06},{"epoch":26133092,"idl":99.64,"recv":0,"send":0,"writ":0.54,"used":532.92,"free":3435.82},{"epoch":26133093,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.37,"free":3436.36},{"epoch":26133094,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.35,"free":3436.38},{"epoch":26133095,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":532.33,"free":3436.41},{"epoch":26133096,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":532.3,"free":3436.43},{"epoch":26133097,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":532.8,"free":3435.93},{"epoch":26133098,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":532.43,"free":3436.3},{"epoch":26133099,"idl":99.59,"recv":0,"send":0,"writ":0.3,"used":532.64,"free":3436.08},{"epoch":26133100,"idl":99.78,"recv":0,"send":0.01,"writ":0.37,"used":532.4,"free":3436.34},{"epoch":26133101,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.36,"free":3436.37},{"epoch":26133102,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":532.83,"free":3435.89},{"epoch":26133103,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":532.54,"free":3436.18},{"epoch":26133104,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":532.62,"free":3436.1},{"epoch":26133105,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":532.7,"free":3436.04},{"epoch":26133106,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":532.67,"free":3436.07},{"epoch":26133107,"idl":99.63,"recv":0,"send":0,"writ":0.5,"used":532.95,"free":3435.77},{"epoch":26133108,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":531.86,"free":3436.86},{"epoch":26133109,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":531.83,"free":3436.89},{"epoch":26133110,"idl":99.72,"recv":0,"send":0,"writ":0.36,"used":530.61,"free":3438.13},{"epoch":26133111,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":530.62,"free":3438.11},{"epoch":26133112,"idl":99.7,"recv":0,"send":0,"writ":0.39,"used":531.37,"free":3437.35},{"epoch":26133113,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":531.68,"free":3437.04},{"epoch":26133114,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":531.65,"free":3437.06},{"epoch":26133115,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":530.73,"free":3438},{"epoch":26133116,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":530.64,"free":3438.09},{"epoch":26133117,"idl":99.68,"recv":0,"send":0,"writ":0.38,"used":531.39,"free":3437.34},{"epoch":26133118,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":532.08,"free":3436.64},{"epoch":26133119,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":532.18,"free":3436.54},{"epoch":26133120,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":532.41,"free":3436.33},{"epoch":26133121,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.39,"free":3436.34},{"epoch":26133122,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":532.74,"free":3435.98},{"epoch":26133123,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.57,"free":3436.15},{"epoch":26133124,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.54,"free":3436.17},{"epoch":26133125,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":532.06,"free":3436.67},{"epoch":26133126,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.13,"free":3436.59},{"epoch":26133127,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.17,"free":3436.55},{"epoch":26133128,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":533.4,"free":3435.31},{"epoch":26133129,"idl":99.6,"recv":0,"send":0.01,"writ":0.28,"used":532.87,"free":3435.83},{"epoch":26133130,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":532.36,"free":3436.35},{"epoch":26133131,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":532.32,"free":3436.39},{"epoch":26133132,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":532.28,"free":3436.42},{"epoch":26133133,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":532.85,"free":3435.85},{"epoch":26133134,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.65,"free":3436.07},{"epoch":26133135,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":532.66,"free":3436.09},{"epoch":26133136,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":532.63,"free":3436.12},{"epoch":26133137,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":532.35,"free":3436.39},{"epoch":26133138,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":532.86,"free":3435.88},{"epoch":26133139,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":532.54,"free":3436.2},{"epoch":26133140,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":532.29,"free":3436.47},{"epoch":26133141,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":532.32,"free":3436.44},{"epoch":26133142,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":532.45,"free":3436.31},{"epoch":26133143,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":533.28,"free":3435.47},{"epoch":26133144,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":532.63,"free":3436.11},{"epoch":26133145,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":531.89,"free":3436.87},{"epoch":26133146,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":531.86,"free":3436.9},{"epoch":26133147,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":531.82,"free":3436.93},{"epoch":26133148,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":532.47,"free":3436.27},{"epoch":26133149,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":532.37,"free":3436.37},{"epoch":26133150,"idl":99.67,"recv":0,"send":0,"writ":0.31,"used":532.93,"free":3435.82},{"epoch":26133151,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":532.89,"free":3435.87},{"epoch":26133152,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":532.86,"free":3435.89},{"epoch":26133153,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":533.18,"free":3435.57},{"epoch":26133154,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":532.79,"free":3435.95},{"epoch":26133155,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":531.59,"free":3437.16},{"epoch":26133156,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":531.63,"free":3437.12},{"epoch":26133157,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":531.68,"free":3437.07},{"epoch":26133158,"idl":99.69,"recv":0,"send":0,"writ":0.48,"used":532.34,"free":3436.4},{"epoch":26133159,"idl":99.58,"recv":0,"send":0,"writ":0.36,"used":532.37,"free":3436.34},{"epoch":26133160,"idl":99.71,"recv":0,"send":0.01,"writ":0.33,"used":532.34,"free":3436.39},{"epoch":26133161,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.3,"free":3436.43},{"epoch":26133162,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":532.28,"free":3436.45},{"epoch":26133163,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":532.99,"free":3435.73},{"epoch":26133164,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":532.4,"free":3436.32},{"epoch":26133165,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":533.13,"free":3435.61},{"epoch":26133166,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":533.1,"free":3435.63},{"epoch":26133167,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":533.07,"free":3435.66},{"epoch":26133168,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":533.04,"free":3435.69},{"epoch":26133169,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":533.14,"free":3435.58},{"epoch":26133170,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":533.01,"free":3435.73},{"epoch":26133171,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":533.16,"free":3435.57},{"epoch":26133172,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":533.13,"free":3435.6},{"epoch":26133173,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":533.09,"free":3435.63},{"epoch":26133174,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":533.18,"free":3435.54},{"epoch":26133175,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":533.05,"free":3435.69},{"epoch":26133176,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":533.03,"free":3435.71},{"epoch":26133177,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.99,"free":3435.74},{"epoch":26133178,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":533.09,"free":3435.63},{"epoch":26133179,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":533.67,"free":3435.05},{"epoch":26133180,"idl":99.69,"recv":0,"send":0,"writ":0.36,"used":532.86,"free":3435.88},{"epoch":26133181,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":532.83,"free":3435.9},{"epoch":26133182,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":532.81,"free":3435.92},{"epoch":26133183,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":532.77,"free":3435.95},{"epoch":26133184,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":533.23,"free":3435.49},{"epoch":26133185,"idl":99.76,"recv":0,"send":0,"writ":0.38,"used":532.85,"free":3435.89},{"epoch":26133186,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":532.88,"free":3435.85},{"epoch":26133187,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":532.85,"free":3435.88},{"epoch":26133188,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.82,"free":3435.9},{"epoch":26133189,"idl":93.96,"recv":16.95,"send":0.04,"writ":94.78,"used":545.65,"free":3419.41},{"epoch":26133190,"idl":99.35,"recv":0,"send":0,"writ":181.52,"used":534.07,"free":3434.5},{"epoch":26133191,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":533.95,"free":3434.61},{"epoch":26133192,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":533.91,"free":3434.64},{"epoch":26133193,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":533.88,"free":3434.68},{"epoch":26133194,"idl":99.64,"recv":0,"send":0,"writ":0.59,"used":533.82,"free":3434.73},{"epoch":26133195,"idl":99.74,"recv":0,"send":0,"writ":0.36,"used":532.98,"free":3435.62},{"epoch":26133196,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":533.11,"free":3435.49},{"epoch":26133197,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":533.31,"free":3435.28},{"epoch":26133198,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":533.29,"free":3435.3},{"epoch":26133199,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":533.77,"free":3434.82},{"epoch":26133200,"idl":99.79,"recv":0,"send":0,"writ":0.44,"used":533.25,"free":3435.36},{"epoch":26133201,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":533.23,"free":3435.38},{"epoch":26133202,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":533.2,"free":3435.41},{"epoch":26133203,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":533.25,"free":3435.35},{"epoch":26133204,"idl":99.68,"recv":0,"send":0,"writ":0.42,"used":533.69,"free":3434.91},{"epoch":26133205,"idl":99.75,"recv":0,"send":0,"writ":0.43,"used":532.82,"free":3435.79},{"epoch":26133206,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":532.8,"free":3435.81},{"epoch":26133207,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.76,"free":3435.84},{"epoch":26133208,"idl":99.23,"recv":0,"send":0,"writ":0.15,"used":532.74,"free":3435.86},{"epoch":26133209,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":532.7,"free":3435.89},{"epoch":26133210,"idl":99.5,"recv":0,"send":0,"writ":0.68,"used":532,"free":3436.61},{"epoch":26133211,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":531.56,"free":3437.05},{"epoch":26133212,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":531.6,"free":3437.01},{"epoch":26133213,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":531.57,"free":3437.03},{"epoch":26133214,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":531.53,"free":3437.06},{"epoch":26133215,"idl":99.52,"recv":0,"send":0,"writ":0.7,"used":533.04,"free":3435.57},{"epoch":26133216,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":532.74,"free":3435.87},{"epoch":26133217,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.71,"free":3435.9},{"epoch":26133218,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":532.71,"free":3435.89},{"epoch":26133219,"idl":99.63,"recv":0,"send":0,"writ":0.3,"used":532.44,"free":3436.13},{"epoch":26133220,"idl":99.54,"recv":0,"send":0.01,"writ":0.68,"used":531.96,"free":3436.63},{"epoch":26133221,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":531.31,"free":3437.28},{"epoch":26133222,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":531.28,"free":3437.3},{"epoch":26133223,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":531.25,"free":3437.33},{"epoch":26133224,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":531.22,"free":3437.35},{"epoch":26133225,"idl":99.63,"recv":0,"send":0,"writ":0.61,"used":532.52,"free":3436.07},{"epoch":26133226,"idl":99.81,"recv":0,"send":0,"writ":0.26,"used":531.98,"free":3436.61},{"epoch":26133227,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":532.12,"free":3436.47},{"epoch":26133228,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.09,"free":3436.49},{"epoch":26133229,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":532.06,"free":3436.51},{"epoch":26133230,"idl":99.58,"recv":0.01,"send":0.01,"writ":0.75,"used":531.89,"free":3436.7},{"epoch":26133231,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":531.75,"free":3436.84},{"epoch":26133232,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":531.73,"free":3436.86},{"epoch":26133233,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":531.8,"free":3436.78},{"epoch":26133234,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":531.85,"free":3436.72},{"epoch":26133235,"idl":99.55,"recv":0,"send":0,"writ":0.61,"used":531.89,"free":3436.7},{"epoch":26133236,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":531.81,"free":3436.78},{"epoch":26133237,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":531.77,"free":3436.81},{"epoch":26133238,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":531.75,"free":3436.83},{"epoch":26133239,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":531.71,"free":3436.86},{"epoch":26133240,"idl":99.6,"recv":0,"send":0,"writ":0.64,"used":532.72,"free":3435.86},{"epoch":26133241,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":532.35,"free":3436.23},{"epoch":26133242,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":532.31,"free":3436.26},{"epoch":26133243,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":532.29,"free":3436.29},{"epoch":26133244,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":532.26,"free":3436.3},{"epoch":26133245,"idl":99.61,"recv":0,"send":0,"writ":0.47,"used":531.89,"free":3436.7},{"epoch":26133246,"idl":99.8,"recv":0,"send":0,"writ":0.42,"used":531,"free":3437.58},{"epoch":26133247,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":530.96,"free":3437.62},{"epoch":26133248,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":531.04,"free":3437.54},{"epoch":26133249,"idl":99.66,"recv":0,"send":0.01,"writ":0.32,"used":532.53,"free":3436.02},{"epoch":26133250,"idl":99.63,"recv":0,"send":0,"writ":0.45,"used":532.9,"free":3435.67},{"epoch":26133251,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":532.28,"free":3436.29},{"epoch":26133252,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":532.26,"free":3436.31},{"epoch":26133253,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":532.22,"free":3436.34},{"epoch":26133254,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":532.19,"free":3436.38},{"epoch":26133255,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":532.54,"free":3436.05},{"epoch":26133256,"idl":99.71,"recv":0,"send":0.01,"writ":0.58,"used":532.71,"free":3435.87},{"epoch":26133257,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.3,"free":3436.28},{"epoch":26133258,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.27,"free":3436.31},{"epoch":26133259,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.24,"free":3436.33},{"epoch":26133260,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":531.51,"free":3437.08},{"epoch":26133261,"idl":99.69,"recv":0,"send":0,"writ":0.52,"used":531.89,"free":3436.72},{"epoch":26133262,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":531.48,"free":3437.12},{"epoch":26133263,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":531.61,"free":3437},{"epoch":26133264,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.58,"free":3437.02},{"epoch":26133265,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":532.11,"free":3436.5},{"epoch":26133266,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":531.89,"free":3436.72},{"epoch":26133267,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.26,"free":3437.35},{"epoch":26133268,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":531.23,"free":3437.38},{"epoch":26133269,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.21,"free":3437.39},{"epoch":26133270,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":532.68,"free":3435.94},{"epoch":26133271,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":532.82,"free":3435.79},{"epoch":26133272,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.06,"free":3436.55},{"epoch":26133273,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.05,"free":3436.56},{"epoch":26133274,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.01,"free":3436.58},{"epoch":26133275,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":532.49,"free":3436.13},{"epoch":26133276,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":532.96,"free":3435.65},{"epoch":26133277,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.44,"free":3436.17},{"epoch":26133278,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":532.48,"free":3436.13},{"epoch":26133279,"idl":99.77,"recv":0,"send":0,"writ":0.35,"used":532.57,"free":3436.01},{"epoch":26133280,"idl":99.8,"recv":0,"send":0.01,"writ":0.3,"used":532.58,"free":3436.01},{"epoch":26133281,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":532.8,"free":3435.79},{"epoch":26133282,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":531.8,"free":3436.79},{"epoch":26133283,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.77,"free":3436.81},{"epoch":26133284,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":531.75,"free":3436.84},{"epoch":26133285,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":532.23,"free":3436.38},{"epoch":26133286,"idl":99.75,"recv":0,"send":0,"writ":0.45,"used":532.68,"free":3435.93},{"epoch":26133287,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":532.85,"free":3435.75},{"epoch":26133288,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.82,"free":3435.78},{"epoch":26133289,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.79,"free":3435.81},{"epoch":26133290,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":532.55,"free":3436.06},{"epoch":26133291,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.5,"free":3436.11},{"epoch":26133292,"idl":99.61,"recv":0,"send":0,"writ":0.57,"used":531.94,"free":3436.66},{"epoch":26133293,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.26,"free":3437.34},{"epoch":26133294,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":531.33,"free":3437.27},{"epoch":26133295,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":532.26,"free":3436.35},{"epoch":26133296,"idl":99.85,"recv":0.01,"send":0.31,"writ":0.18,"used":532.3,"free":3436.31},{"epoch":26133297,"idl":99.7,"recv":0.01,"send":1.36,"writ":0.85,"used":533.17,"free":3435.42},{"epoch":26133298,"idl":99.87,"recv":0.01,"send":0.68,"writ":0.23,"used":532.71,"free":3435.86},{"epoch":26133299,"idl":99.88,"recv":0,"send":0.02,"writ":0.16,"used":532.73,"free":3435.84},{"epoch":26133300,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":533.03,"free":3435.55},{"epoch":26133301,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":533.01,"free":3435.57},{"epoch":26133302,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":533.16,"free":3435.42},{"epoch":26133303,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.68,"free":3435.89},{"epoch":26133304,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.71,"free":3435.86},{"epoch":26133305,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":531.88,"free":3436.7},{"epoch":26133306,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.82,"free":3436.77},{"epoch":26133307,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":532.46,"free":3436.12},{"epoch":26133308,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.26,"free":3436.32},{"epoch":26133309,"idl":99.82,"recv":0,"send":0.01,"writ":0.3,"used":532.7,"free":3435.85},{"epoch":26133310,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":532.7,"free":3435.87},{"epoch":26133311,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":532.66,"free":3435.89},{"epoch":26133312,"idl":99.77,"recv":0,"send":0,"writ":0.45,"used":533.37,"free":3435.18},{"epoch":26133313,"idl":99.94,"recv":0,"send":0,"writ":0.29,"used":532.55,"free":3436},{"epoch":26133314,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.52,"free":3436.02},{"epoch":26133315,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":532.52,"free":3436.04},{"epoch":26133316,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":532.48,"free":3436.08},{"epoch":26133317,"idl":99.77,"recv":0,"send":0,"writ":0.64,"used":533.04,"free":3435.51},{"epoch":26133318,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.67,"free":3435.88},{"epoch":26133319,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.65,"free":3435.9},{"epoch":26133320,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":533,"free":3435.56},{"epoch":26133321,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":533.04,"free":3435.52},{"epoch":26133322,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":533.3,"free":3435.26},{"epoch":26133323,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.74,"free":3435.81},{"epoch":26133324,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.7,"free":3435.84},{"epoch":26133325,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":532.7,"free":3435.86},{"epoch":26133326,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.67,"free":3435.89},{"epoch":26133327,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":533.04,"free":3435.51},{"epoch":26133328,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":532.56,"free":3435.98},{"epoch":26133329,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":532.51,"free":3436.03},{"epoch":26133330,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":532.51,"free":3436.04},{"epoch":26133331,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":532.48,"free":3436.07},{"epoch":26133332,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":532.45,"free":3436.1},{"epoch":26133333,"idl":99.76,"recv":0,"send":0,"writ":0.53,"used":533.02,"free":3435.53},{"epoch":26133334,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.39,"free":3436.15},{"epoch":26133335,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.3,"used":532.26,"free":3436.3},{"epoch":26133336,"idl":99.89,"recv":0,"send":0.01,"writ":0.19,"used":532.17,"free":3436.39},{"epoch":26133337,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":532.19,"free":3436.36},{"epoch":26133338,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":532.83,"free":3435.71},{"epoch":26133339,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":532.64,"free":3435.88},{"epoch":26133340,"idl":99.76,"recv":0,"send":0.01,"writ":0.32,"used":532.31,"free":3436.23},{"epoch":26133341,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.21,"free":3436.32},{"epoch":26133342,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.18,"free":3436.35},{"epoch":26133343,"idl":99.27,"recv":0,"send":0,"writ":0.54,"used":533.07,"free":3435.47},{"epoch":26133344,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":532.92,"free":3435.62},{"epoch":26133345,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":532.83,"free":3435.72},{"epoch":26133346,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.8,"free":3435.75},{"epoch":26133347,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.77,"free":3435.77},{"epoch":26133348,"idl":99.74,"recv":0,"send":0,"writ":0.58,"used":533.24,"free":3435.3},{"epoch":26133349,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.96,"free":3435.58},{"epoch":26133350,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":531.99,"free":3436.56},{"epoch":26133351,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.94,"free":3436.61},{"epoch":26133352,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":531.96,"free":3436.58},{"epoch":26133353,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":533,"free":3435.55},{"epoch":26133354,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":532.53,"free":3436.01},{"epoch":26133355,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":533.01,"free":3435.54},{"epoch":26133356,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.99,"free":3435.56},{"epoch":26133357,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.96,"free":3435.59},{"epoch":26133358,"idl":99.75,"recv":0,"send":0,"writ":0.44,"used":533.27,"free":3435.27},{"epoch":26133359,"idl":99.93,"recv":0,"send":0,"writ":0.27,"used":532.4,"free":3436.13},{"epoch":26133360,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":532.5,"free":3436.06},{"epoch":26133361,"idl":99.88,"recv":0,"send":0.01,"writ":0.14,"used":532.55,"free":3436.01},{"epoch":26133362,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.5,"free":3436.06},{"epoch":26133363,"idl":99.78,"recv":0,"send":0,"writ":0.39,"used":532.85,"free":3435.71},{"epoch":26133364,"idl":99.91,"recv":0,"send":0,"writ":0.28,"used":532.68,"free":3435.87},{"epoch":26133365,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":532.92,"free":3435.65},{"epoch":26133366,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.94,"free":3435.63},{"epoch":26133367,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":533.05,"free":3435.51},{"epoch":26133368,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":533.39,"free":3435.16},{"epoch":26133369,"idl":99.73,"recv":0,"send":0.01,"writ":0.47,"used":533.25,"free":3435.28},{"epoch":26133370,"idl":99.83,"recv":0,"send":0,"writ":0.35,"used":533.22,"free":3435.33},{"epoch":26133371,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":533.2,"free":3435.35},{"epoch":26133372,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":533.16,"free":3435.38},{"epoch":26133373,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":533.13,"free":3435.4},{"epoch":26133374,"idl":99.73,"recv":0,"send":0,"writ":0.64,"used":533.15,"free":3435.38},{"epoch":26133375,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":531.33,"free":3437.22},{"epoch":26133376,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":531.28,"free":3437.27},{"epoch":26133377,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":531.5,"free":3437.04},{"epoch":26133378,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":531.47,"free":3437.06},{"epoch":26133379,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":532.14,"free":3436.4},{"epoch":26133380,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":532.17,"free":3436.39},{"epoch":26133381,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.18,"free":3436.39},{"epoch":26133382,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.3,"free":3436.26},{"epoch":26133383,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.28,"free":3436.28},{"epoch":26133384,"idl":99.76,"recv":0,"send":0,"writ":0.6,"used":532.92,"free":3435.64},{"epoch":26133385,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":531.53,"free":3437.04},{"epoch":26133386,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":531.46,"free":3437.1},{"epoch":26133387,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":531.44,"free":3437.12},{"epoch":26133388,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.41,"free":3437.14},{"epoch":26133389,"idl":98.77,"recv":0,"send":0,"writ":0.49,"used":531.99,"free":3436.56},{"epoch":26133390,"idl":99.83,"recv":0,"send":0,"writ":0.4,"used":532.05,"free":3436.51},{"epoch":26133391,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":532.03,"free":3436.54},{"epoch":26133392,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.99,"free":3436.57},{"epoch":26133393,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.97,"free":3436.58},{"epoch":26133394,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":532.34,"free":3436.2},{"epoch":26133395,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":532.01,"free":3436.55},{"epoch":26133396,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":531.91,"free":3436.65},{"epoch":26133397,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.95,"free":3436.61},{"epoch":26133398,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.06,"free":3436.49},{"epoch":26133399,"idl":99.6,"recv":0,"send":0,"writ":0.57,"used":532.56,"free":3435.97},{"epoch":26133400,"idl":99.81,"recv":0,"send":0.01,"writ":0.46,"used":532.26,"free":3436.28},{"epoch":26133401,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":532.24,"free":3436.3},{"epoch":26133402,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.21,"free":3436.33},{"epoch":26133403,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.18,"free":3436.36},{"epoch":26133404,"idl":98.94,"recv":0,"send":0,"writ":0.32,"used":532.52,"free":3436.01},{"epoch":26133405,"idl":99.83,"recv":0,"send":0,"writ":0.52,"used":532.57,"free":3435.98},{"epoch":26133406,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.55,"free":3436},{"epoch":26133407,"idl":99.9,"recv":0.01,"send":0,"writ":0.15,"used":532.49,"free":3436.05},{"epoch":26133408,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.44,"free":3436.1},{"epoch":26133409,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.41,"free":3436.12},{"epoch":26133410,"idl":99.69,"recv":0,"send":0,"writ":0.72,"used":530.68,"free":3437.86},{"epoch":26133411,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":529.85,"free":3438.69},{"epoch":26133412,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":529.92,"free":3438.61},{"epoch":26133413,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":530.03,"free":3438.5},{"epoch":26133414,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":530,"free":3438.53},{"epoch":26133415,"idl":99.64,"recv":0,"send":0,"writ":0.75,"used":532.45,"free":3436.1},{"epoch":26133416,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.42,"free":3436.12},{"epoch":26133417,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":532.39,"free":3436.14},{"epoch":26133418,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.54,"free":3435.99},{"epoch":26133419,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":532.52,"free":3436.01},{"epoch":26133420,"idl":98.83,"recv":0,"send":0,"writ":11.24,"used":532.56,"free":3436.01},{"epoch":26133421,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.59,"free":3436.03},{"epoch":26133422,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.56,"free":3436.05},{"epoch":26133423,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.34,"free":3436.27},{"epoch":26133424,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.25,"free":3436.36},{"epoch":26133425,"idl":99.65,"recv":0,"send":0,"writ":0.72,"used":532.03,"free":3436.64},{"epoch":26133426,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":531.93,"free":3436.75},{"epoch":26133427,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.89,"free":3436.78},{"epoch":26133428,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":531.86,"free":3436.81},{"epoch":26133429,"idl":99.81,"recv":0,"send":0.01,"writ":0.31,"used":532.8,"free":3435.84},{"epoch":26133430,"idl":99.63,"recv":0,"send":0,"writ":0.73,"used":533.17,"free":3435.48},{"epoch":26133431,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.77,"free":3435.88},{"epoch":26133432,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.75,"free":3435.9},{"epoch":26133433,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.78,"free":3435.87},{"epoch":26133434,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.87,"free":3435.79},{"epoch":26133435,"idl":99.69,"recv":0,"send":0,"writ":0.76,"used":532.99,"free":3435.69},{"epoch":26133436,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":532.59,"free":3436.09},{"epoch":26133437,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.56,"free":3436.11},{"epoch":26133438,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.52,"free":3436.15},{"epoch":26133439,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.48,"free":3436.17},{"epoch":26133440,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":533.13,"free":3435.55},{"epoch":26133441,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.34,"used":532.61,"free":3436.06},{"epoch":26133442,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":532.53,"free":3436.13},{"epoch":26133443,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.5,"free":3436.16},{"epoch":26133444,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.47,"free":3436.18},{"epoch":26133445,"idl":99.69,"recv":0,"send":0,"writ":0.58,"used":533.1,"free":3435.57},{"epoch":26133446,"idl":99.91,"recv":0,"send":0,"writ":0.34,"used":532.42,"free":3436.25},{"epoch":26133447,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.38,"free":3436.29},{"epoch":26133448,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.36,"free":3436.3},{"epoch":26133449,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.33,"free":3436.32},{"epoch":26133450,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":532.59,"free":3436.08},{"epoch":26133451,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":533.11,"free":3435.56},{"epoch":26133452,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.76,"free":3435.91},{"epoch":26133453,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.79,"free":3435.87},{"epoch":26133454,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.89,"free":3435.77},{"epoch":26133455,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":532.64,"free":3436.03},{"epoch":26133456,"idl":99.76,"recv":0,"send":0,"writ":0.53,"used":533.64,"free":3435.03},{"epoch":26133457,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":533.06,"free":3435.61},{"epoch":26133458,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":533.03,"free":3435.63},{"epoch":26133459,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":532.59,"free":3436.05},{"epoch":26133460,"idl":99.89,"recv":0,"send":0.01,"writ":0.35,"used":532.74,"free":3435.91},{"epoch":26133461,"idl":99.77,"recv":0,"send":0,"writ":0.52,"used":533.26,"free":3435.39},{"epoch":26133462,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.87,"free":3435.76},{"epoch":26133463,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.85,"free":3435.79},{"epoch":26133464,"idl":95.8,"recv":0,"send":0,"writ":0.14,"used":532.81,"free":3435.82},{"epoch":26133465,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":533.05,"free":3435.6},{"epoch":26133466,"idl":99.74,"recv":0,"send":0,"writ":0.41,"used":533.24,"free":3435.41},{"epoch":26133467,"idl":99.9,"recv":0,"send":0,"writ":0.26,"used":532.74,"free":3435.9},{"epoch":26133468,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":532.76,"free":3435.87},{"epoch":26133469,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":532.87,"free":3435.76},{"epoch":26133470,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":532.38,"free":3436.26},{"epoch":26133471,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":532.79,"free":3435.85},{"epoch":26133472,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.55,"free":3436.09},{"epoch":26133473,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.52,"free":3436.1},{"epoch":26133474,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.49,"free":3436.14},{"epoch":26133475,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":532.96,"free":3435.68},{"epoch":26133476,"idl":93.72,"recv":2.99,"send":0.02,"writ":262.57,"used":540.78,"free":3425.33},{"epoch":26133477,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":534.79,"free":3430.54},{"epoch":26133478,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":534.77,"free":3430.55},{"epoch":26133479,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":534.74,"free":3430.57},{"epoch":26133480,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":535.45,"free":3429.88},{"epoch":26133481,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":533.6,"free":3431.77},{"epoch":26133482,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":532.19,"free":3433.2},{"epoch":26133483,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":531.95,"free":3433.44},{"epoch":26133484,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":531.92,"free":3433.46},{"epoch":26133485,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":532.44,"free":3432.97},{"epoch":26133486,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":532.38,"free":3433.02},{"epoch":26133487,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":533.31,"free":3432.09},{"epoch":26133488,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":533.06,"free":3432.33},{"epoch":26133489,"idl":99.72,"recv":0,"send":0.01,"writ":0.3,"used":532.8,"free":3432.57},{"epoch":26133490,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":532.96,"free":3432.43},{"epoch":26133491,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":532.93,"free":3432.46},{"epoch":26133492,"idl":99.76,"recv":0.01,"send":0.02,"writ":0.57,"used":533.26,"free":3432.12},{"epoch":26133493,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":532.89,"free":3432.49},{"epoch":26133494,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":532.86,"free":3432.53},{"epoch":26133495,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":533.09,"free":3432.31},{"epoch":26133496,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":533.07,"free":3432.33},{"epoch":26133497,"idl":99.65,"recv":0,"send":0,"writ":0.71,"used":533.22,"free":3432.17},{"epoch":26133498,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":532.87,"free":3432.52},{"epoch":26133499,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":532.91,"free":3432.48},{"epoch":26133500,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":532.9,"free":3432.5},{"epoch":26133501,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":532.88,"free":3432.52},{"epoch":26133502,"idl":99.75,"recv":0,"send":0,"writ":0.42,"used":533.24,"free":3432.15},{"epoch":26133503,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":532.08,"free":3433.31},{"epoch":26133504,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":532.05,"free":3433.34},{"epoch":26133505,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":533.01,"free":3432.4},{"epoch":26133506,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":533.14,"free":3432.26},{"epoch":26133507,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":533.6,"free":3431.79},{"epoch":26133508,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":532.91,"free":3432.48},{"epoch":26133509,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":532.88,"free":3432.51},{"epoch":26133510,"idl":96.98,"recv":0,"send":0,"writ":0.32,"used":533.11,"free":3432.29},{"epoch":26133511,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":533.09,"free":3432.31},{"epoch":26133512,"idl":99.78,"recv":0,"send":0,"writ":0.45,"used":533.42,"free":3431.98},{"epoch":26133513,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":533.08,"free":3432.31},{"epoch":26133514,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":533.2,"free":3432.19},{"epoch":26133515,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":532.95,"free":3432.46},{"epoch":26133516,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":532.92,"free":3432.49},{"epoch":26133517,"idl":99.78,"recv":0,"send":0,"writ":0.45,"used":533.24,"free":3432.15},{"epoch":26133518,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":532.85,"free":3432.54},{"epoch":26133519,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":532.67,"free":3432.69},{"epoch":26133520,"idl":99.81,"recv":0,"send":0.01,"writ":0.28,"used":532.58,"free":3432.81},{"epoch":26133521,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":532.59,"free":3432.79},{"epoch":26133522,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":532.7,"free":3432.68},{"epoch":26133523,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":533.51,"free":3431.87},{"epoch":26133524,"idl":97.91,"recv":0,"send":0,"writ":0.14,"used":533.13,"free":3432.26},{"epoch":26133525,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":532.92,"free":3432.49},{"epoch":26133526,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.84,"free":3432.56},{"epoch":26133527,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.82,"free":3432.58},{"epoch":26133528,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":533.31,"free":3432.08},{"epoch":26133529,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.45,"free":3432.94},{"epoch":26133530,"idl":99.83,"recv":0,"send":0,"writ":0.25,"used":531.72,"free":3433.68},{"epoch":26133531,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":531.67,"free":3433.73},{"epoch":26133532,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.64,"free":3433.75},{"epoch":26133533,"idl":99.74,"recv":0,"send":0,"writ":0.53,"used":532.59,"free":3432.8},{"epoch":26133534,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":532.56,"free":3432.82},{"epoch":26133535,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":532.08,"free":3433.31},{"epoch":26133536,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.08,"free":3433.31},{"epoch":26133537,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":532.19,"free":3433.19},{"epoch":26133538,"idl":99.76,"recv":0,"send":0,"writ":0.49,"used":532.52,"free":3432.86},{"epoch":26133539,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":532.13,"free":3433.25},{"epoch":26133540,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":531.88,"free":3433.51},{"epoch":26133541,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":531.85,"free":3433.53},{"epoch":26133542,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":531.82,"free":3433.56},{"epoch":26133543,"idl":99.74,"recv":0,"send":0,"writ":0.49,"used":532.02,"free":3433.35},{"epoch":26133544,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":531.62,"free":3433.75},{"epoch":26133545,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":532.66,"free":3432.73},{"epoch":26133546,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.64,"free":3432.75},{"epoch":26133547,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":532.62,"free":3432.76},{"epoch":26133548,"idl":99.77,"recv":0,"send":0,"writ":0.53,"used":533.19,"free":3432.18},{"epoch":26133549,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.3,"used":532.31,"free":3433.05},{"epoch":26133550,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":532.29,"free":3433.08},{"epoch":26133551,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.31,"free":3433.06},{"epoch":26133552,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.42,"free":3432.95},{"epoch":26133553,"idl":96.91,"recv":0.04,"send":0.01,"writ":64.3,"used":541.17,"free":3426.21},{"epoch":26133554,"idl":99.03,"recv":0,"send":0,"writ":78.02,"used":536.24,"free":3429.43},{"epoch":26133555,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":534.05,"free":3431.64},{"epoch":26133556,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":534.01,"free":3431.68},{"epoch":26133557,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":534.23,"free":3431.46},{"epoch":26133558,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":534.2,"free":3431.48},{"epoch":26133559,"idl":99.69,"recv":0,"send":0,"writ":0.59,"used":532.9,"free":3432.81},{"epoch":26133560,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":532.73,"free":3433},{"epoch":26133561,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":532.74,"free":3432.99},{"epoch":26133562,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":532.86,"free":3432.87},{"epoch":26133563,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.82,"free":3432.9},{"epoch":26133564,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":533.15,"free":3432.57},{"epoch":26133565,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":532.55,"free":3433.18},{"epoch":26133566,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":532.51,"free":3433.21},{"epoch":26133567,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.48,"free":3433.24},{"epoch":26133568,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.45,"free":3433.26},{"epoch":26133569,"idl":99.77,"recv":0,"send":0,"writ":0.53,"used":533.14,"free":3432.57},{"epoch":26133570,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":532.17,"free":3433.56},{"epoch":26133571,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.09,"free":3433.64},{"epoch":26133572,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":532.06,"free":3433.67},{"epoch":26133573,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.03,"free":3433.69},{"epoch":26133574,"idl":99.71,"recv":0,"send":0,"writ":0.48,"used":532.63,"free":3433.08},{"epoch":26133575,"idl":99.74,"recv":0,"send":0,"writ":0.38,"used":532.47,"free":3433.25},{"epoch":26133576,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.45,"free":3433.27},{"epoch":26133577,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.49,"free":3433.23},{"epoch":26133578,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":532.58,"free":3433.13},{"epoch":26133579,"idl":99.62,"recv":0,"send":0,"writ":0.65,"used":532.99,"free":3432.7},{"epoch":26133580,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":532.54,"free":3433.16},{"epoch":26133581,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":532.51,"free":3433.2},{"epoch":26133582,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.48,"free":3433.22},{"epoch":26133583,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.45,"free":3433.24},{"epoch":26133584,"idl":99.79,"recv":0,"send":0,"writ":0.48,"used":532.89,"free":3432.81},{"epoch":26133585,"idl":98.56,"recv":0,"send":0,"writ":0.34,"used":532.56,"free":3433.15},{"epoch":26133586,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.57,"free":3433.14},{"epoch":26133587,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.53,"free":3433.17},{"epoch":26133588,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.5,"free":3433.19},{"epoch":26133589,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":533.13,"free":3432.56},{"epoch":26133590,"idl":99.84,"recv":0,"send":0,"writ":0.37,"used":532.71,"free":3433},{"epoch":26133591,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.69,"free":3433.02},{"epoch":26133592,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.71,"free":3432.99},{"epoch":26133593,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.8,"free":3432.89},{"epoch":26133594,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":533.12,"free":3432.57},{"epoch":26133595,"idl":99.81,"recv":0,"send":0,"writ":0.47,"used":532.77,"free":3432.93},{"epoch":26133596,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.74,"free":3432.96},{"epoch":26133597,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.71,"free":3432.98},{"epoch":26133598,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.68,"free":3433.01},{"epoch":26133599,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":533.04,"free":3432.65},{"epoch":26133600,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":532.82,"free":3432.87},{"epoch":26133601,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":532.8,"free":3432.89},{"epoch":26133602,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.76,"free":3432.92},{"epoch":26133603,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.73,"free":3432.95},{"epoch":26133604,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.69,"free":3432.98},{"epoch":26133605,"idl":99.65,"recv":0,"send":0,"writ":0.68,"used":532.76,"free":3432.94},{"epoch":26133606,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.4,"free":3433.29},{"epoch":26133607,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":532.58,"free":3433.1},{"epoch":26133608,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.55,"free":3433.14},{"epoch":26133609,"idl":99.72,"recv":0,"send":0.01,"writ":0.28,"used":532.82,"free":3432.86},{"epoch":26133610,"idl":99.64,"recv":0,"send":0,"writ":0.69,"used":533.58,"free":3432.11},{"epoch":26133611,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":532.71,"free":3432.98},{"epoch":26133612,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":532.68,"free":3433},{"epoch":26133613,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.76,"free":3432.93},{"epoch":26133614,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.81,"free":3432.88},{"epoch":26133615,"idl":99.62,"recv":0,"send":0,"writ":0.67,"used":532.7,"free":3433.01},{"epoch":26133616,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.52,"free":3433.18},{"epoch":26133617,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":532.25,"free":3433.44},{"epoch":26133618,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.22,"free":3433.47},{"epoch":26133619,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":532.19,"free":3433.5},{"epoch":26133620,"idl":99.59,"recv":0,"send":0,"writ":0.53,"used":532.33,"free":3433.38},{"epoch":26133621,"idl":99.91,"recv":0,"send":0,"writ":0.25,"used":531.11,"free":3434.6},{"epoch":26133622,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":531.08,"free":3434.62},{"epoch":26133623,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.05,"free":3434.64},{"epoch":26133624,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.03,"free":3434.66},{"epoch":26133625,"idl":99.64,"recv":0,"send":0,"writ":0.61,"used":532.78,"free":3432.93},{"epoch":26133626,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":532.71,"free":3432.99},{"epoch":26133627,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":532.67,"free":3433.02},{"epoch":26133628,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.69,"free":3433},{"epoch":26133629,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.81,"free":3432.88},{"epoch":26133630,"idl":99.64,"recv":0,"send":0,"writ":0.56,"used":533.13,"free":3432.57},{"epoch":26133631,"idl":97.39,"recv":0,"send":0,"writ":0.27,"used":532.74,"free":3432.96},{"epoch":26133632,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.7,"free":3432.99},{"epoch":26133633,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.68,"free":3433.01},{"epoch":26133634,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.65,"free":3433.03},{"epoch":26133635,"idl":99.65,"recv":0,"send":0,"writ":0.48,"used":533.6,"free":3432.11},{"epoch":26133636,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":533.04,"free":3432.66},{"epoch":26133637,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":533.01,"free":3432.68},{"epoch":26133638,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":532.98,"free":3432.71},{"epoch":26133639,"idl":99.62,"recv":0,"send":0,"writ":0.38,"used":532.69,"free":3432.99},{"epoch":26133640,"idl":99.73,"recv":0,"send":0.01,"writ":0.32,"used":532.43,"free":3433.26},{"epoch":26133641,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":533.18,"free":3432.5},{"epoch":26133642,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.98,"free":3432.71},{"epoch":26133643,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":533.02,"free":3432.65},{"epoch":26133644,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":532.99,"free":3432.68},{"epoch":26133645,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":532.51,"free":3433.18},{"epoch":26133646,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":533.47,"free":3432.22},{"epoch":26133647,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":533.18,"free":3432.51},{"epoch":26133648,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":533.15,"free":3432.53},{"epoch":26133649,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":533.16,"free":3432.52},{"epoch":26133650,"idl":99.72,"recv":0,"send":0,"writ":0.25,"used":533.11,"free":3432.58},{"epoch":26133651,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":533.39,"free":3432.3},{"epoch":26133652,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.99,"free":3432.69},{"epoch":26133653,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.96,"free":3432.72},{"epoch":26133654,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":532.93,"free":3432.75},{"epoch":26133655,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":531.97,"free":3433.72},{"epoch":26133656,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":533.04,"free":3432.65},{"epoch":26133657,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.92,"free":3432.76},{"epoch":26133658,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":533.05,"free":3432.63},{"epoch":26133659,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":533.02,"free":3432.65},{"epoch":26133660,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":533.01,"free":3432.68},{"epoch":26133661,"idl":99.62,"recv":0,"send":0,"writ":0.59,"used":533.34,"free":3432.35},{"epoch":26133662,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":532.95,"free":3432.72},{"epoch":26133663,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":532.92,"free":3432.75},{"epoch":26133664,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":532.89,"free":3432.78},{"epoch":26133665,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":533.01,"free":3432.68},{"epoch":26133666,"idl":99.66,"recv":0,"send":0,"writ":0.52,"used":533.42,"free":3432.27},{"epoch":26133667,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":533.02,"free":3432.66},{"epoch":26133668,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":532.98,"free":3432.69},{"epoch":26133669,"idl":99.68,"recv":0,"send":0.01,"writ":0.32,"used":532.96,"free":3432.69},{"epoch":26133670,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":532.95,"free":3432.72},{"epoch":26133671,"idl":99.67,"recv":0,"send":0,"writ":0.43,"used":533.36,"free":3432.3},{"epoch":26133672,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":533.29,"free":3432.37},{"epoch":26133673,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":533.26,"free":3432.39},{"epoch":26133674,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":533.23,"free":3432.43},{"epoch":26133675,"idl":99.7,"recv":0,"send":0,"writ":0.27,"used":532.02,"free":3433.67},{"epoch":26133676,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":532.55,"free":3433.13},{"epoch":26133677,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":532.69,"free":3432.98},{"epoch":26133678,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.65,"free":3433.02},{"epoch":26133679,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.68,"free":3432.98},{"epoch":26133680,"idl":99.7,"recv":0,"send":0,"writ":0.27,"used":532.33,"free":3433.36},{"epoch":26133681,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":532.29,"free":3433.39},{"epoch":26133682,"idl":99.68,"recv":0,"send":0,"writ":0.53,"used":533.24,"free":3432.44},{"epoch":26133683,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":532.33,"free":3433.34},{"epoch":26133684,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":531.96,"free":3433.71},{"epoch":26133685,"idl":99.63,"recv":0,"send":0,"writ":0.3,"used":531.27,"free":3434.42},{"epoch":26133686,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":531.18,"free":3434.5},{"epoch":26133687,"idl":99.68,"recv":0,"send":0,"writ":0.53,"used":532.41,"free":3433.27},{"epoch":26133688,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.3,"free":3433.37},{"epoch":26133689,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.28,"free":3433.39},{"epoch":26133690,"idl":99.64,"recv":0,"send":0,"writ":0.29,"used":531.31,"free":3434.37},{"epoch":26133691,"idl":98.43,"recv":0,"send":0,"writ":0.16,"used":531.25,"free":3434.43},{"epoch":26133692,"idl":99.55,"recv":0,"send":0,"writ":0.54,"used":532.21,"free":3433.46},{"epoch":26133693,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":531.69,"free":3433.98},{"epoch":26133694,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":531.66,"free":3434.01},{"epoch":26133695,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":531.69,"free":3433.99},{"epoch":26133696,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":531.8,"free":3433.88},{"epoch":26133697,"idl":99.59,"recv":0,"send":0,"writ":0.54,"used":532.49,"free":3433.19},{"epoch":26133698,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":532.48,"free":3433.19},{"epoch":26133699,"idl":99.72,"recv":0,"send":0,"writ":0.4,"used":532.34,"free":3433.3},{"epoch":26133700,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":532.46,"free":3433.21},{"epoch":26133701,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.41,"free":3433.25},{"epoch":26133702,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":532.67,"free":3433},{"epoch":26133703,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":532.28,"free":3433.38},{"epoch":26133704,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":532.26,"free":3433.42},{"epoch":26133705,"idl":98.6,"recv":0,"send":0,"writ":0.36,"used":532.5,"free":3433.2},{"epoch":26133706,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":532.34,"free":3433.35},{"epoch":26133707,"idl":99.67,"recv":0,"send":0,"writ":0.5,"used":532.55,"free":3433.14},{"epoch":26133708,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":532.17,"free":3433.52},{"epoch":26133709,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.13,"free":3433.55},{"epoch":26133710,"idl":99.7,"recv":0,"send":0,"writ":0.28,"used":532.02,"free":3433.67},{"epoch":26133711,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":532.08,"free":3433.61},{"epoch":26133712,"idl":99.71,"recv":0,"send":0,"writ":0.41,"used":532.71,"free":3432.98},{"epoch":26133713,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":532.5,"free":3433.18},{"epoch":26133714,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.47,"free":3433.21},{"epoch":26133715,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":532.53,"free":3433.16},{"epoch":26133716,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":532.44,"free":3433.25},{"epoch":26133717,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":532.42,"free":3433.26},{"epoch":26133718,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":532.92,"free":3432.76},{"epoch":26133719,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.53,"free":3433.14},{"epoch":26133720,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":531.34,"free":3434.35},{"epoch":26133721,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":531.27,"free":3434.42},{"epoch":26133722,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":531.24,"free":3434.45},{"epoch":26133723,"idl":99.69,"recv":0,"send":0,"writ":0.53,"used":532.76,"free":3432.92},{"epoch":26133724,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.4,"free":3433.28},{"epoch":26133725,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":532.04,"free":3433.65},{"epoch":26133726,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.05,"free":3433.64},{"epoch":26133727,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":532.03,"free":3433.65},{"epoch":26133728,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":532.77,"free":3432.91},{"epoch":26133729,"idl":99.68,"recv":0,"send":0.01,"writ":0.29,"used":532.93,"free":3432.72},{"epoch":26133730,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":532.44,"free":3433.23},{"epoch":26133731,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":532.4,"free":3433.27},{"epoch":26133732,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":532.48,"free":3433.18},{"epoch":26133733,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":532.9,"free":3432.76},{"epoch":26133734,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":532,"free":3433.69},{"epoch":26133735,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":532,"free":3433.71},{"epoch":26133736,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":531.97,"free":3433.73},{"epoch":26133737,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":531.94,"free":3433.76},{"epoch":26133738,"idl":99.69,"recv":0,"send":0,"writ":0.52,"used":532.34,"free":3433.34},{"epoch":26133739,"idl":99.72,"recv":0,"send":0,"writ":0.15,"used":531.67,"free":3434.02},{"epoch":26133740,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":531.57,"free":3434.13},{"epoch":26133741,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":531.54,"free":3434.16},{"epoch":26133742,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":531.5,"free":3434.19},{"epoch":26133743,"idl":99.62,"recv":0,"send":0,"writ":0.51,"used":532.12,"free":3433.57},{"epoch":26133744,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":532.42,"free":3433.26},{"epoch":26133745,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":531.69,"free":3434.01},{"epoch":26133746,"idl":99.79,"recv":0,"send":0,"writ":0.13,"used":531.64,"free":3434.05},{"epoch":26133747,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":531.74,"free":3433.95},{"epoch":26133748,"idl":99.67,"recv":0,"send":0,"writ":0.39,"used":532.2,"free":3433.49},{"epoch":26133749,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":532.24,"free":3433.44},{"epoch":26133750,"idl":99.68,"recv":0,"send":0,"writ":0.28,"used":531.28,"free":3434.41},{"epoch":26133751,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":531.22,"free":3434.48},{"epoch":26133752,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":531.19,"free":3434.5},{"epoch":26133753,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":531.15,"free":3434.53},{"epoch":26133754,"idl":99.61,"recv":0,"send":0,"writ":0.52,"used":532.47,"free":3433.21},{"epoch":26133755,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":532.52,"free":3433.18},{"epoch":26133756,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":532.51,"free":3433.19},{"epoch":26133757,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":532.48,"free":3433.21},{"epoch":26133758,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":532.45,"free":3433.24},{"epoch":26133759,"idl":99.55,"recv":0,"send":0,"writ":0.71,"used":533.02,"free":3432.64},{"epoch":26133760,"idl":99.73,"recv":0,"send":0.01,"writ":0.3,"used":532.16,"free":3433.52},{"epoch":26133761,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.13,"free":3433.54},{"epoch":26133762,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.17,"free":3433.5},{"epoch":26133763,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":532.29,"free":3433.38},{"epoch":26133764,"idl":99.69,"recv":0,"send":0,"writ":0.53,"used":533.16,"free":3432.5},{"epoch":26133765,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":532.98,"free":3432.7},{"epoch":26133766,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":532.95,"free":3432.72},{"epoch":26133767,"idl":99.48,"recv":0,"send":0,"writ":0.15,"used":532.92,"free":3432.75},{"epoch":26133768,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":532.89,"free":3432.77},{"epoch":26133769,"idl":99.66,"recv":0,"send":0,"writ":0.59,"used":533.44,"free":3432.22},{"epoch":26133770,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":532.81,"free":3432.87},{"epoch":26133771,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":532.77,"free":3432.91},{"epoch":26133772,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":532.73,"free":3432.93},{"epoch":26133773,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":532.71,"free":3432.96},{"epoch":26133774,"idl":99.69,"recv":0,"send":0,"writ":0.48,"used":533.04,"free":3432.62},{"epoch":26133775,"idl":99.76,"recv":0,"send":0,"writ":0.38,"used":532.67,"free":3433.01},{"epoch":26133776,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":532.64,"free":3433.03},{"epoch":26133777,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":532.67,"free":3433},{"epoch":26133778,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.78,"free":3432.88},{"epoch":26133779,"idl":99.68,"recv":0,"send":0,"writ":0.53,"used":533.02,"free":3432.64},{"epoch":26133780,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":532.98,"free":3432.69},{"epoch":26133781,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":532.95,"free":3432.72},{"epoch":26133782,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":532.91,"free":3432.76},{"epoch":26133783,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":532.88,"free":3432.79},{"epoch":26133784,"idl":99.59,"recv":0,"send":0,"writ":0.41,"used":533.26,"free":3432.39},{"epoch":26133785,"idl":99.72,"recv":0,"send":0,"writ":0.49,"used":532.86,"free":3432.81},{"epoch":26133786,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":532.75,"free":3432.92},{"epoch":26133787,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":532.72,"free":3432.95},{"epoch":26133788,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":532.68,"free":3432.98},{"epoch":26133789,"idl":99.47,"recv":0,"send":0.01,"writ":0.57,"used":532.82,"free":3432.81},{"epoch":26133790,"idl":99.69,"recv":0,"send":0,"writ":0.46,"used":532.16,"free":3433.49},{"epoch":26133791,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":532.21,"free":3433.43},{"epoch":26133792,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":532.26,"free":3433.38},{"epoch":26133793,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":532.23,"free":3433.4},{"epoch":26133794,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":532.18,"free":3433.45},{"epoch":26133795,"idl":99.54,"recv":0,"send":0,"writ":0.71,"used":533.19,"free":3432.46},{"epoch":26133796,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":532.39,"free":3433.25},{"epoch":26133797,"idl":99.76,"recv":0,"send":0,"writ":0.19,"used":532.37,"free":3433.27},{"epoch":26133798,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":532.45,"free":3433.19},{"epoch":26133799,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":532.49,"free":3433.14},{"epoch":26133800,"idl":99.59,"recv":0,"send":0,"writ":0.68,"used":533.47,"free":3432.18},{"epoch":26133801,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":533.18,"free":3432.46},{"epoch":26133802,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":533.14,"free":3432.5},{"epoch":26133803,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":533.1,"free":3432.53},{"epoch":26133804,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":533.13,"free":3432.5},{"epoch":26133805,"idl":98.17,"recv":0,"send":0,"writ":16,"used":535.99,"free":3430.41},{"epoch":26133806,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":533.02,"free":3432.93},{"epoch":26133807,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":532.98,"free":3432.97},{"epoch":26133808,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.93,"free":3433.02},{"epoch":26133809,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.95,"free":3432.99},{"epoch":26133810,"idl":99.59,"recv":0,"send":0,"writ":0.64,"used":533.8,"free":3432.16},{"epoch":26133811,"idl":98.4,"recv":0,"send":0,"writ":0.17,"used":533.3,"free":3432.66},{"epoch":26133812,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":533.25,"free":3432.7},{"epoch":26133813,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":533.19,"free":3432.76},{"epoch":26133814,"idl":91.87,"recv":0,"send":0,"writ":121.25,"used":552.26,"free":3408.01},{"epoch":26133815,"idl":99.61,"recv":0,"send":0,"writ":0.73,"used":538.64,"free":3428.86},{"epoch":26133816,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":538.42,"free":3429.08},{"epoch":26133817,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":538.38,"free":3429.11},{"epoch":26133818,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":537.84,"free":3429.68},{"epoch":26133819,"idl":99.63,"recv":0,"send":0,"writ":0.36,"used":534.75,"free":3432.92},{"epoch":26133820,"idl":99.61,"recv":0.01,"send":0.01,"writ":0.55,"used":532.88,"free":3434.89},{"epoch":26133821,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":533.29,"free":3434.47},{"epoch":26133822,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":533.25,"free":3434.51},{"epoch":26133823,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":533.2,"free":3434.55},{"epoch":26133824,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":533.35,"free":3434.41},{"epoch":26133825,"idl":99.65,"recv":0,"send":0,"writ":0.52,"used":533.88,"free":3433.89},{"epoch":26133826,"idl":99.86,"recv":0,"send":0,"writ":0.38,"used":533.27,"free":3434.49},{"epoch":26133827,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":533.23,"free":3434.53},{"epoch":26133828,"idl":95.63,"recv":0,"send":0,"writ":0.15,"used":533.2,"free":3434.56},{"epoch":26133829,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":533.35,"free":3434.4},{"epoch":26133830,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":532.14,"free":3435.63},{"epoch":26133831,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":533.09,"free":3434.67},{"epoch":26133832,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.75,"free":3435.01},{"epoch":26133833,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.71,"free":3435.05},{"epoch":26133834,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.78,"free":3434.97},{"epoch":26133835,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":532.89,"free":3434.9},{"epoch":26133836,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":533.06,"free":3434.74},{"epoch":26133837,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":532.24,"free":3435.55},{"epoch":26133838,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.23,"free":3435.56},{"epoch":26133839,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.34,"free":3435.45},{"epoch":26133840,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":531.59,"free":3436.21},{"epoch":26133841,"idl":99.78,"recv":0,"send":0,"writ":0.6,"used":532.35,"free":3435.44},{"epoch":26133842,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":531.99,"free":3435.8},{"epoch":26133843,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":531.95,"free":3435.84},{"epoch":26133844,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.04,"free":3435.75},{"epoch":26133845,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":532.84,"free":3434.96},{"epoch":26133846,"idl":99.76,"recv":0,"send":0,"writ":0.48,"used":533.14,"free":3434.66},{"epoch":26133847,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":532.51,"free":3435.28},{"epoch":26133848,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.47,"free":3435.32},{"epoch":26133849,"idl":99.79,"recv":0,"send":0.01,"writ":0.29,"used":532.54,"free":3435.23},{"epoch":26133850,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":532.59,"free":3435.19},{"epoch":26133851,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":532.89,"free":3434.89},{"epoch":26133852,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":532.49,"free":3435.28},{"epoch":26133853,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":532.45,"free":3435.32},{"epoch":26133854,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":532.52,"free":3435.26},{"epoch":26133855,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":532.58,"free":3435.22},{"epoch":26133856,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":532.95,"free":3434.85},{"epoch":26133857,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":532.75,"free":3435.04},{"epoch":26133858,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.72,"free":3435.07},{"epoch":26133859,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":532.69,"free":3435.1},{"epoch":26133860,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":531.82,"free":3435.98},{"epoch":26133861,"idl":99.74,"recv":0,"send":0,"writ":0.36,"used":532.21,"free":3435.59},{"epoch":26133862,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":531.83,"free":3435.96},{"epoch":26133863,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":531.8,"free":3435.99},{"epoch":26133864,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":531.76,"free":3436.02},{"epoch":26133865,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":531.28,"free":3436.52},{"epoch":26133866,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":531.24,"free":3436.56},{"epoch":26133867,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":532.24,"free":3435.55},{"epoch":26133868,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.03,"free":3435.76},{"epoch":26133869,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.08,"free":3435.71},{"epoch":26133870,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":531.84,"free":3435.97},{"epoch":26133871,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.8,"free":3436},{"epoch":26133872,"idl":99.34,"recv":0,"send":0,"writ":0.61,"used":532.67,"free":3435.13},{"epoch":26133873,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.23,"free":3435.56},{"epoch":26133874,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":532.19,"free":3435.59},{"epoch":26133875,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":532.72,"free":3435.08},{"epoch":26133876,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.83,"free":3434.97},{"epoch":26133877,"idl":99.75,"recv":0,"send":0,"writ":0.61,"used":533.28,"free":3434.51},{"epoch":26133878,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":533.02,"free":3434.77},{"epoch":26133879,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":532.39,"free":3435.4},{"epoch":26133880,"idl":99.82,"recv":0,"send":0.01,"writ":0.27,"used":531.96,"free":3435.84},{"epoch":26133881,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.01,"free":3435.79},{"epoch":26133882,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":532.85,"free":3434.94},{"epoch":26133883,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.79,"free":3435},{"epoch":26133884,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":532.76,"free":3435.02},{"epoch":26133885,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":532.75,"free":3435.06},{"epoch":26133886,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.72,"free":3435.09},{"epoch":26133887,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":533.13,"free":3434.67},{"epoch":26133888,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.95,"free":3434.85},{"epoch":26133889,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":533.08,"free":3434.71},{"epoch":26133890,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":533.07,"free":3434.73},{"epoch":26133891,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":533.03,"free":3434.77},{"epoch":26133892,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":533.31,"free":3434.49},{"epoch":26133893,"idl":99.94,"recv":0,"send":0,"writ":0.29,"used":532.74,"free":3435.05},{"epoch":26133894,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.7,"free":3435.09},{"epoch":26133895,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":532.94,"free":3434.86},{"epoch":26133896,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":533.02,"free":3434.79},{"epoch":26133897,"idl":99.78,"recv":0,"send":0.01,"writ":0.33,"used":533.37,"free":3434.43},{"epoch":26133898,"idl":99.89,"recv":0,"send":0,"writ":0.39,"used":532.52,"free":3435.27},{"epoch":26133899,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.49,"free":3435.3},{"epoch":26133900,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":532.56,"free":3435.25},{"epoch":26133901,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":532.46,"free":3435.34},{"epoch":26133902,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.47,"free":3435.32},{"epoch":26133903,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":533.16,"free":3434.63},{"epoch":26133904,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.8,"free":3434.98},{"epoch":26133905,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":533.04,"free":3434.76},{"epoch":26133906,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":533.02,"free":3434.78},{"epoch":26133907,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.98,"free":3434.81},{"epoch":26133908,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":533.29,"free":3434.49},{"epoch":26133909,"idl":99.79,"recv":0,"send":0.01,"writ":0.34,"used":533.14,"free":3434.62},{"epoch":26133910,"idl":99.77,"recv":0,"send":0,"writ":0.38,"used":531.83,"free":3435.95},{"epoch":26133911,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":531.82,"free":3435.96},{"epoch":26133912,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":531.79,"free":3435.98},{"epoch":26133913,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":532.52,"free":3435.25},{"epoch":26133914,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":532.46,"free":3435.3},{"epoch":26133915,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":532.22,"free":3435.56},{"epoch":26133916,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":532.18,"free":3435.59},{"epoch":26133917,"idl":99.89,"recv":0,"send":0,"writ":0.22,"used":532.22,"free":3435.55},{"epoch":26133918,"idl":95.04,"recv":0.3,"send":0.01,"writ":78.34,"used":546.13,"free":3422.45},{"epoch":26133919,"idl":99.64,"recv":0,"send":0,"writ":181.46,"used":535.53,"free":3431.84},{"epoch":26133920,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":535.53,"free":3431.85},{"epoch":26133921,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":535.49,"free":3431.88},{"epoch":26133922,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":535.47,"free":3431.91},{"epoch":26133923,"idl":99.78,"recv":0,"send":0,"writ":0.45,"used":534.89,"free":3432.5},{"epoch":26133924,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":533,"free":3434.42},{"epoch":26133925,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":532.84,"free":3434.59},{"epoch":26133926,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.95,"free":3434.48},{"epoch":26133927,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":532.91,"free":3434.51},{"epoch":26133928,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":533.23,"free":3434.19},{"epoch":26133929,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.86,"free":3434.56},{"epoch":26133930,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":533.1,"free":3434.33},{"epoch":26133931,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":533.07,"free":3434.36},{"epoch":26133932,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":533.04,"free":3434.39},{"epoch":26133933,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":533.83,"free":3433.59},{"epoch":26133934,"idl":99.94,"recv":0,"send":0,"writ":0.37,"used":533.17,"free":3434.25},{"epoch":26133935,"idl":99.84,"recv":0,"send":0.01,"writ":0.27,"used":532.94,"free":3434.5},{"epoch":26133936,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":532.88,"free":3434.55},{"epoch":26133937,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":532.85,"free":3434.58},{"epoch":26133938,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.82,"free":3434.6},{"epoch":26133939,"idl":99.6,"recv":0,"send":0,"writ":0.69,"used":533.6,"free":3433.81},{"epoch":26133940,"idl":99.81,"recv":0,"send":0.01,"writ":0.28,"used":532.6,"free":3434.83},{"epoch":26133941,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":532.7,"free":3434.72},{"epoch":26133942,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.67,"free":3434.75},{"epoch":26133943,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.64,"free":3434.78},{"epoch":26133944,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":533.32,"free":3434.09},{"epoch":26133945,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":533.1,"free":3434.33},{"epoch":26133946,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":533.07,"free":3434.35},{"epoch":26133947,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":533.04,"free":3434.38},{"epoch":26133948,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":533.1,"free":3434.31},{"epoch":26133949,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":533.38,"free":3434.03},{"epoch":26133950,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":532.43,"free":3435},{"epoch":26133951,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.38,"free":3435.04},{"epoch":26133952,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":532.35,"free":3435.07},{"epoch":26133953,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.32,"free":3435.09},{"epoch":26133954,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":533.04,"free":3434.39},{"epoch":26133955,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":533.33,"free":3434.11},{"epoch":26133956,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":533.43,"free":3434.02},{"epoch":26133957,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":533.4,"free":3434.04},{"epoch":26133958,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":533.37,"free":3434.06},{"epoch":26133959,"idl":99.75,"recv":0,"send":0,"writ":0.52,"used":534.02,"free":3433.41},{"epoch":26133960,"idl":99.77,"recv":0,"send":0,"writ":0.35,"used":533.58,"free":3433.87},{"epoch":26133961,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":533.54,"free":3433.9},{"epoch":26133962,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":533.55,"free":3433.89},{"epoch":26133963,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":533.67,"free":3433.76},{"epoch":26133964,"idl":99.73,"recv":0,"send":0,"writ":0.42,"used":534.13,"free":3433.3},{"epoch":26133965,"idl":99.74,"recv":0,"send":0,"writ":0.45,"used":532.42,"free":3435.02},{"epoch":26133966,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":532.37,"free":3435.07},{"epoch":26133967,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.35,"free":3435.09},{"epoch":26133968,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.31,"free":3435.12},{"epoch":26133969,"idl":99.47,"recv":0,"send":0.01,"writ":0.46,"used":532.98,"free":3434.43},{"epoch":26133970,"idl":99.69,"recv":0,"send":0,"writ":0.47,"used":532.39,"free":3435.04},{"epoch":26133971,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.42,"free":3435},{"epoch":26133972,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":532.4,"free":3435.02},{"epoch":26133973,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":532.36,"free":3435.05},{"epoch":26133974,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.34,"free":3435.1},{"epoch":26133975,"idl":99.56,"recv":0,"send":0,"writ":0.71,"used":532.8,"free":3434.66},{"epoch":26133976,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.31,"free":3435.15},{"epoch":26133977,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":532.28,"free":3435.18},{"epoch":26133978,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.46,"free":3434.99},{"epoch":26133979,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.44,"free":3435},{"epoch":26133980,"idl":99.63,"recv":0,"send":0,"writ":0.7,"used":533.02,"free":3434.45},{"epoch":26133981,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":532.4,"free":3435.06},{"epoch":26133982,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":532.37,"free":3435.09},{"epoch":26133983,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.35,"free":3435.1},{"epoch":26133984,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":532.32,"free":3435.13},{"epoch":26133985,"idl":99.62,"recv":0,"send":0,"writ":0.7,"used":533.63,"free":3433.83},{"epoch":26133986,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":533.46,"free":3434.01},{"epoch":26133987,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":533.42,"free":3434.04},{"epoch":26133988,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":533.4,"free":3434.06},{"epoch":26133989,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":533.36,"free":3434.09},{"epoch":26133990,"idl":99.6,"recv":0.01,"send":0.11,"writ":0.64,"used":532.88,"free":3434.59},{"epoch":26133991,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":532.61,"free":3434.85},{"epoch":26133992,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.58,"free":3434.87},{"epoch":26133993,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.54,"free":3434.9},{"epoch":26133994,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.55,"free":3434.89},{"epoch":26133995,"idl":99.63,"recv":0,"send":0,"writ":0.59,"used":533.24,"free":3434.22},{"epoch":26133996,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":532.66,"free":3434.8},{"epoch":26133997,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.62,"free":3434.82},{"epoch":26133998,"idl":99.86,"recv":0,"send":0.01,"writ":0.17,"used":532.59,"free":3434.85},{"epoch":26133999,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":531.77,"free":3435.65},{"epoch":26134000,"idl":99.56,"recv":0,"send":0,"writ":0.54,"used":531.99,"free":3435.45},{"epoch":26134001,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":532.68,"free":3434.75},{"epoch":26134002,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":532.66,"free":3434.77},{"epoch":26134003,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.62,"free":3434.8},{"epoch":26134004,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.57,"free":3434.86},{"epoch":26134005,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":532.29,"free":3435.16},{"epoch":26134006,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":532.28,"free":3435.17},{"epoch":26134007,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":532.25,"free":3435.19},{"epoch":26134008,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.27,"free":3435.16},{"epoch":26134009,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.41,"free":3435.02},{"epoch":26134010,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":532.65,"free":3434.8},{"epoch":26134011,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":533.22,"free":3434.22},{"epoch":26134012,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.84,"free":3434.6},{"epoch":26134013,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":532.81,"free":3434.63},{"epoch":26134014,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.79,"free":3434.64},{"epoch":26134015,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":532.53,"free":3434.92},{"epoch":26134016,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":533.21,"free":3434.23},{"epoch":26134017,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.66,"free":3434.78},{"epoch":26134018,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.63,"free":3434.81},{"epoch":26134019,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":532.6,"free":3434.83},{"epoch":26134020,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":531.39,"free":3436.06},{"epoch":26134021,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":532.37,"free":3435.07},{"epoch":26134022,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.04,"free":3435.4},{"epoch":26134023,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.01,"free":3435.43},{"epoch":26134024,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.04,"free":3435.39},{"epoch":26134025,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":531.92,"free":3435.53},{"epoch":26134026,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":532.68,"free":3434.76},{"epoch":26134027,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":532.59,"free":3434.85},{"epoch":26134028,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":532.56,"free":3434.87},{"epoch":26134029,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.34,"used":532.32,"free":3435.09},{"epoch":26134030,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":532.29,"free":3435.13},{"epoch":26134031,"idl":99.69,"recv":0,"send":0,"writ":0.4,"used":532.54,"free":3434.88},{"epoch":26134032,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":531.94,"free":3435.48},{"epoch":26134033,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.9,"free":3435.51},{"epoch":26134034,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":531.88,"free":3435.54},{"epoch":26134035,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":531.39,"free":3436.06},{"epoch":26134036,"idl":99.69,"recv":0,"send":0,"writ":0.47,"used":526.27,"free":3441.33},{"epoch":26134037,"idl":99.91,"recv":0,"send":0,"writ":0.33,"used":524.92,"free":3442.71},{"epoch":26134038,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.95,"free":3442.68},{"epoch":26134039,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":525.07,"free":3442.55},{"epoch":26134040,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":525.11,"free":3442.53},{"epoch":26134041,"idl":99.7,"recv":0,"send":0,"writ":0.5,"used":525.37,"free":3442.27},{"epoch":26134042,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":524.78,"free":3442.86},{"epoch":26134043,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":524.76,"free":3442.87},{"epoch":26134044,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":524.74,"free":3442.89},{"epoch":26134045,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":524.98,"free":3442.68},{"epoch":26134046,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.97,"free":3442.69},{"epoch":26134047,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":525.39,"free":3442.26},{"epoch":26134048,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.68,"free":3442.97},{"epoch":26134049,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":524.66,"free":3442.99},{"epoch":26134050,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":524.06,"free":3443.6},{"epoch":26134051,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":524.09,"free":3443.57},{"epoch":26134052,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":524.99,"free":3442.66},{"epoch":26134053,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":524.54,"free":3443.11},{"epoch":26134054,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":524.52,"free":3443.12},{"epoch":26134055,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":524.76,"free":3442.9},{"epoch":26134056,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":524.75,"free":3442.91},{"epoch":26134057,"idl":99.71,"recv":0,"send":0,"writ":0.6,"used":524.93,"free":3442.72},{"epoch":26134058,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":524.46,"free":3443.18},{"epoch":26134059,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":524.84,"free":3442.78},{"epoch":26134060,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":525.16,"free":3442.47},{"epoch":26134061,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":525.15,"free":3442.49},{"epoch":26134062,"idl":99.72,"recv":0,"send":0,"writ":0.42,"used":525.25,"free":3442.37},{"epoch":26134063,"idl":99.91,"recv":0.02,"send":0.55,"writ":0.51,"used":524.69,"free":3442.93},{"epoch":26134064,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":524.65,"free":3442.96},{"epoch":26134065,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":524.9,"free":3442.72},{"epoch":26134066,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":524.87,"free":3442.75},{"epoch":26134067,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":525.22,"free":3442.4},{"epoch":26134068,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":524.81,"free":3442.8},{"epoch":26134069,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":524.8,"free":3442.82},{"epoch":26134070,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":524.83,"free":3442.81},{"epoch":26134071,"idl":98.7,"recv":0,"send":0,"writ":0.15,"used":524.79,"free":3442.85},{"epoch":26134072,"idl":99.8,"recv":0,"send":0,"writ":0.62,"used":525.1,"free":3442.53},{"epoch":26134073,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":524.74,"free":3442.89},{"epoch":26134074,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":524.71,"free":3442.91},{"epoch":26134075,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":523.75,"free":3443.89},{"epoch":26134076,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":523.71,"free":3443.93},{"epoch":26134077,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":524.59,"free":3443.04},{"epoch":26134078,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":524.9,"free":3442.73},{"epoch":26134079,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":525.01,"free":3442.62},{"epoch":26134080,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":524.82,"free":3442.82},{"epoch":26134081,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":524.79,"free":3442.85},{"epoch":26134082,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":524.77,"free":3442.86},{"epoch":26134083,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":525.8,"free":3441.83},{"epoch":26134084,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":525.23,"free":3442.4},{"epoch":26134085,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":524.74,"free":3442.9},{"epoch":26134086,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":524.71,"free":3442.93},{"epoch":26134087,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":524.69,"free":3442.95},{"epoch":26134088,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":525.27,"free":3442.36},{"epoch":26134089,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":524.65,"free":3442.95},{"epoch":26134090,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":524.96,"free":3442.67},{"epoch":26134091,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":525.06,"free":3442.56},{"epoch":26134092,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":525.04,"free":3442.58},{"epoch":26134093,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":525.53,"free":3442.08},{"epoch":26134094,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":525.25,"free":3442.35},{"epoch":26134095,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":525.49,"free":3442.13},{"epoch":26134096,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":525.47,"free":3442.15},{"epoch":26134097,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":525.21,"free":3442.4},{"epoch":26134098,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":525.23,"free":3442.38},{"epoch":26134099,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":524.67,"free":3442.93},{"epoch":26134100,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":523.95,"free":3443.67},{"epoch":26134101,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":523.91,"free":3443.71},{"epoch":26134102,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":523.99,"free":3443.62},{"epoch":26134103,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":524.86,"free":3442.74},{"epoch":26134104,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":525.01,"free":3442.59},{"epoch":26134105,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":525.04,"free":3442.58},{"epoch":26134106,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":525,"free":3442.62},{"epoch":26134107,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":524.97,"free":3442.64},{"epoch":26134108,"idl":99.75,"recv":0,"send":0,"writ":0.46,"used":525.59,"free":3442.02},{"epoch":26134109,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":524.93,"free":3442.67},{"epoch":26134110,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":524.46,"free":3443.16},{"epoch":26134111,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":524.42,"free":3443.19},{"epoch":26134112,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":524.4,"free":3443.21},{"epoch":26134113,"idl":99.7,"recv":0,"send":0,"writ":0.45,"used":524.86,"free":3442.74},{"epoch":26134114,"idl":99.41,"recv":0,"send":0,"writ":0.29,"used":525.28,"free":3442.32},{"epoch":26134115,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":525.27,"free":3442.34},{"epoch":26134116,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":525.26,"free":3442.34},{"epoch":26134117,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":525.23,"free":3442.38},{"epoch":26134118,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":525.22,"free":3442.38},{"epoch":26134119,"idl":99.68,"recv":0,"send":0,"writ":0.75,"used":525.72,"free":3441.86},{"epoch":26134120,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":525.44,"free":3442.14},{"epoch":26134121,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":525.42,"free":3442.16},{"epoch":26134122,"idl":99.86,"recv":0,"send":0.01,"writ":0.15,"used":525.4,"free":3442.18},{"epoch":26134123,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":525.36,"free":3442.21},{"epoch":26134124,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":525.5,"free":3442.08},{"epoch":26134125,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":525.27,"free":3442.31},{"epoch":26134126,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":525.26,"free":3442.33},{"epoch":26134127,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":525.23,"free":3442.35},{"epoch":26134128,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":525.22,"free":3442.36},{"epoch":26134129,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":525.55,"free":3442.02},{"epoch":26134130,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":525.2,"free":3442.39},{"epoch":26134131,"idl":99.48,"recv":0,"send":0,"writ":0.17,"used":525.18,"free":3442.41},{"epoch":26134132,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":525.16,"free":3442.42},{"epoch":26134133,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":525.15,"free":3442.43},{"epoch":26134134,"idl":99.74,"recv":0,"send":0,"writ":0.42,"used":525.66,"free":3441.91},{"epoch":26134135,"idl":99.75,"recv":0,"send":0,"writ":0.42,"used":525.13,"free":3442.46},{"epoch":26134136,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":525.1,"free":3442.48},{"epoch":26134137,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":525.2,"free":3442.38},{"epoch":26134138,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":525.24,"free":3442.34},{"epoch":26134139,"idl":99.73,"recv":0,"send":0,"writ":0.5,"used":525.57,"free":3442.01},{"epoch":26134140,"idl":99.66,"recv":0,"send":0,"writ":0.35,"used":524.55,"free":3443.04},{"epoch":26134141,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":524.46,"free":3443.13},{"epoch":26134142,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":524.45,"free":3443.13},{"epoch":26134143,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":524.42,"free":3443.16},{"epoch":26134144,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":524.74,"free":3442.83},{"epoch":26134145,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":524.4,"free":3443.18},{"epoch":26134146,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.37,"free":3443.21},{"epoch":26134147,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":524.4,"free":3443.17},{"epoch":26134148,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":524.55,"free":3443.02},{"epoch":26134149,"idl":99.72,"recv":0,"send":0,"writ":0.68,"used":524.88,"free":3442.66},{"epoch":26134150,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":524.78,"free":3442.79},{"epoch":26134151,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":524.76,"free":3442.8},{"epoch":26134152,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":524.73,"free":3442.82},{"epoch":26134153,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":524.72,"free":3442.84},{"epoch":26134154,"idl":99.74,"recv":0,"send":0,"writ":0.37,"used":525.05,"free":3442.5},{"epoch":26134155,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":524.94,"free":3442.63},{"epoch":26134156,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":524.91,"free":3442.65},{"epoch":26134157,"idl":99.89,"recv":0,"send":0,"writ":0.22,"used":524.65,"free":3442.91},{"epoch":26134158,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":524.63,"free":3442.92},{"epoch":26134159,"idl":99.36,"recv":0.02,"send":0.04,"writ":0.82,"used":527.52,"free":3439.91},{"epoch":26134160,"idl":99.66,"recv":0,"send":0,"writ":0.96,"used":535,"free":3432.32},{"epoch":26134161,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":534.69,"free":3432.62},{"epoch":26134162,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":534.66,"free":3432.65},{"epoch":26134163,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":534.61,"free":3432.69},{"epoch":26134164,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":534.57,"free":3432.74},{"epoch":26134165,"idl":99.63,"recv":0,"send":0,"writ":0.7,"used":534.51,"free":3432.83},{"epoch":26134166,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":534.38,"free":3432.95},{"epoch":26134167,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":534.45,"free":3432.88},{"epoch":26134168,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":534.42,"free":3432.91},{"epoch":26134169,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":534.39,"free":3432.93},{"epoch":26134170,"idl":99.65,"recv":0,"send":0,"writ":0.7,"used":534.79,"free":3432.55},{"epoch":26134171,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":534.35,"free":3432.98},{"epoch":26134172,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":534.32,"free":3433},{"epoch":26134173,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":534.29,"free":3433.03},{"epoch":26134174,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":534.37,"free":3432.94},{"epoch":26134175,"idl":99.62,"recv":0,"send":0,"writ":0.73,"used":534.29,"free":3433.04},{"epoch":26134176,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":533.43,"free":3433.9},{"epoch":26134177,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":533.39,"free":3433.93},{"epoch":26134178,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":533.37,"free":3433.95},{"epoch":26134179,"idl":90.61,"recv":6.29,"send":0.31,"writ":68.61,"used":565.66,"free":3395.71},{"epoch":26134180,"idl":86.64,"recv":28.8,"send":0.19,"writ":436.03,"used":561.34,"free":3340.54},{"epoch":26134181,"idl":99.76,"recv":0,"send":0,"writ":37.26,"used":538.38,"free":3304.44},{"epoch":26134182,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":538.5,"free":3304.33},{"epoch":26134183,"idl":99.83,"recv":0,"send":0.01,"writ":0.21,"used":538.47,"free":3304.36},{"epoch":26134184,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":538.41,"free":3304.44},{"epoch":26134185,"idl":99.65,"recv":0,"send":0,"writ":0.76,"used":537.02,"free":3305.78},{"epoch":26134186,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":533.86,"free":3308.96},{"epoch":26134187,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":533.82,"free":3308.99},{"epoch":26134188,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":533.9,"free":3308.91},{"epoch":26134189,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":533.95,"free":3308.86},{"epoch":26134190,"idl":99.5,"recv":0,"send":0,"writ":0.61,"used":534.81,"free":3307.96},{"epoch":26134191,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":534.68,"free":3308.08},{"epoch":26134192,"idl":98.67,"recv":0,"send":0,"writ":0.16,"used":534.66,"free":3308.11},{"epoch":26134193,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":534.62,"free":3308.14},{"epoch":26134194,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":534.59,"free":3308.17},{"epoch":26134195,"idl":99.6,"recv":0,"send":0,"writ":0.53,"used":535.14,"free":3307.61},{"epoch":26134196,"idl":99.84,"recv":0,"send":0.01,"writ":0.36,"used":535.26,"free":3307.48},{"epoch":26134197,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":535.22,"free":3307.53},{"epoch":26134198,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":535.18,"free":3307.56},{"epoch":26134199,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":535.15,"free":3307.58},{"epoch":26134200,"idl":99.67,"recv":0,"send":0,"writ":0.33,"used":534.67,"free":3308.08},{"epoch":26134201,"idl":99.64,"recv":0,"send":0,"writ":0.55,"used":535.43,"free":3307.31},{"epoch":26134202,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":535.27,"free":3307.47},{"epoch":26134203,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":535.23,"free":3307.5},{"epoch":26134204,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":535.2,"free":3307.52},{"epoch":26134205,"idl":99.76,"recv":0.06,"send":2.29,"writ":0.4,"used":535.02,"free":3307.7},{"epoch":26134206,"idl":99.68,"recv":0.04,"send":1.39,"writ":0.75,"used":535.33,"free":3307.36},{"epoch":26134207,"idl":99.79,"recv":0.04,"send":1.59,"writ":0.22,"used":534.96,"free":3307.71},{"epoch":26134208,"idl":99.84,"recv":0,"send":0.01,"writ":0.21,"used":534.94,"free":3307.72},{"epoch":26134209,"idl":99.72,"recv":0.01,"send":0.02,"writ":0.32,"used":535.01,"free":3307.64},{"epoch":26134210,"idl":99.69,"recv":0.04,"send":1.51,"writ":0.34,"used":534.99,"free":3307.67},{"epoch":26134211,"idl":99.68,"recv":0,"send":0,"writ":0.53,"used":535.04,"free":3307.61},{"epoch":26134212,"idl":99.78,"recv":0,"send":0.01,"writ":0.21,"used":534.41,"free":3308.23},{"epoch":26134213,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":534.38,"free":3308.27},{"epoch":26134214,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":534.48,"free":3308.16},{"epoch":26134215,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":535.01,"free":3307.65},{"epoch":26134216,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":535.09,"free":3307.58},{"epoch":26134217,"idl":99.78,"recv":0,"send":0,"writ":0.22,"used":533.99,"free":3308.68},{"epoch":26134218,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":533.95,"free":3308.71},{"epoch":26134219,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":533.92,"free":3308.74},{"epoch":26134220,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":534.87,"free":3307.8},{"epoch":26134221,"idl":99.63,"recv":0,"send":0,"writ":0.53,"used":535.32,"free":3307.35},{"epoch":26134222,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":535.01,"free":3307.65},{"epoch":26134223,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":534.98,"free":3307.68},{"epoch":26134224,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":534.95,"free":3307.7},{"epoch":26134225,"idl":99.58,"recv":0,"send":0,"writ":0.37,"used":534.95,"free":3307.72},{"epoch":26134226,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":535.21,"free":3307.45},{"epoch":26134227,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":534.63,"free":3308.02},{"epoch":26134228,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":534.67,"free":3307.99},{"epoch":26134229,"idl":99.55,"recv":0.18,"send":0.85,"writ":1,"used":535.61,"free":3307},{"epoch":26134230,"idl":99.03,"recv":0.9,"send":24.49,"writ":1.18,"used":536.39,"free":3306.22},{"epoch":26134231,"idl":99.29,"recv":0.88,"send":22.98,"writ":1.2,"used":537.11,"free":3305.5},{"epoch":26134232,"idl":99.33,"recv":1.72,"send":59.58,"writ":0.81,"used":538.11,"free":3304.5},{"epoch":26134233,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":538.11,"free":3304.49},{"epoch":26134234,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":538.08,"free":3304.51},{"epoch":26134235,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":536.88,"free":3305.73},{"epoch":26134236,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":536.81,"free":3305.8},{"epoch":26134237,"idl":99.65,"recv":0,"send":0,"writ":0.61,"used":537.76,"free":3304.84},{"epoch":26134238,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":537.49,"free":3305.11},{"epoch":26134239,"idl":99.65,"recv":0,"send":0,"writ":0.36,"used":537.96,"free":3304.62},{"epoch":26134240,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":537.88,"free":3304.71},{"epoch":26134241,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":537.85,"free":3304.74},{"epoch":26134242,"idl":99.69,"recv":0,"send":0.01,"writ":0.58,"used":538.58,"free":3304},{"epoch":26134243,"idl":99.8,"recv":0,"send":0.01,"writ":0.15,"used":538.28,"free":3304.3},{"epoch":26134244,"idl":99.75,"recv":0.07,"send":2.99,"writ":0.22,"used":538.25,"free":3304.34},{"epoch":26134245,"idl":99.71,"recv":0,"send":0,"writ":0.38,"used":537.81,"free":3304.79},{"epoch":26134246,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":537.89,"free":3304.7},{"epoch":26134247,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":538.38,"free":3304.21},{"epoch":26134248,"idl":99.79,"recv":0.04,"send":1.97,"writ":0.27,"used":538.02,"free":3304.56},{"epoch":26134249,"idl":99.79,"recv":0.03,"send":0.1,"writ":0.21,"used":538.19,"free":3304.35},{"epoch":26134250,"idl":99.71,"recv":0.01,"send":0.32,"writ":0.36,"used":538.26,"free":3304.28},{"epoch":26134251,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":538.29,"free":3304.25},{"epoch":26134252,"idl":99.66,"recv":0,"send":0,"writ":0.49,"used":539.22,"free":3303.31},{"epoch":26134253,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":538.61,"free":3303.91},{"epoch":26134254,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":538.58,"free":3303.95},{"epoch":26134255,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":538.33,"free":3304.21},{"epoch":26134256,"idl":81.22,"recv":0.02,"send":0.04,"writ":6.44,"used":858.71,"free":2983.73},{"epoch":26134257,"idl":99.53,"recv":0.1,"send":3.92,"writ":0.69,"used":824.12,"free":3018.29},{"epoch":26134258,"idl":99.83,"recv":0.05,"send":1.96,"writ":0.22,"used":585.09,"free":3257.3},{"epoch":26134259,"idl":99.81,"recv":0.05,"send":1.96,"writ":0.2,"used":585.16,"free":3257.22},{"epoch":26134260,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":584.88,"free":3257.52},{"epoch":26134261,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":584.85,"free":3257.54},{"epoch":26134262,"idl":99.68,"recv":0,"send":0.01,"writ":0.42,"used":585.28,"free":3257.1},{"epoch":26134263,"idl":99.78,"recv":0.02,"send":0.02,"writ":0.35,"used":585.62,"free":3256.75},{"epoch":26134264,"idl":99.74,"recv":0.01,"send":0.02,"writ":0.2,"used":585.55,"free":3256.82},{"epoch":26134265,"idl":67.78,"recv":0.13,"send":3.95,"writ":5.23,"used":989.63,"free":2852.69},{"epoch":26134266,"idl":72.26,"recv":0.06,"send":2.03,"writ":8.29,"used":1065.53,"free":2776.76},{"epoch":26134267,"idl":99.61,"recv":0.02,"send":0.66,"writ":0.69,"used":1030.67,"free":2811.66},{"epoch":26134268,"idl":99.54,"recv":0,"send":0,"writ":0.17,"used":591.42,"free":3250.91},{"epoch":26134269,"idl":99.63,"recv":0.01,"send":0.01,"writ":0.32,"used":584.85,"free":3257.45},{"epoch":26134270,"idl":99.64,"recv":0.07,"send":1.31,"writ":0.55,"used":584.83,"free":3257.48},{"epoch":26134271,"idl":99.72,"recv":0.03,"send":1.4,"writ":0.24,"used":584.84,"free":3257.43},{"epoch":26134272,"idl":99.83,"recv":0.02,"send":0.82,"writ":0.23,"used":584.82,"free":3257.43},{"epoch":26134273,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":584.59,"free":3257.57},{"epoch":26134274,"idl":99.82,"recv":0,"send":0.03,"writ":0.19,"used":584.37,"free":3257.79},{"epoch":26134275,"idl":99.71,"recv":0.02,"send":0.83,"writ":0.45,"used":583.63,"free":3258.54},{"epoch":26134276,"idl":99.76,"recv":0,"send":0.01,"writ":0.14,"used":583.6,"free":3258.56},{"epoch":26134277,"idl":99.79,"recv":0.03,"send":1.48,"writ":0.37,"used":584.15,"free":3258},{"epoch":26134278,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":585.68,"free":3256.46},{"epoch":26134279,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":585.54,"free":3256.59},{"epoch":26134280,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":585.53,"free":3256.63},{"epoch":26134281,"idl":99.69,"recv":0,"send":0,"writ":0.15,"used":585.5,"free":3256.65},{"epoch":26134282,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":585.47,"free":3256.68},{"epoch":26134283,"idl":96.38,"recv":0.02,"send":0.01,"writ":78.45,"used":597.75,"free":3246.19},{"epoch":26134284,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":588.65,"free":3253.3},{"epoch":26134285,"idl":99.65,"recv":0,"send":0,"writ":0.3,"used":588.9,"free":3253.07},{"epoch":26134286,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":588.88,"free":3253.09},{"epoch":26134287,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":588.87,"free":3253.09},{"epoch":26134288,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":588.13,"free":3253.84},{"epoch":26134289,"idl":99.8,"recv":0,"send":0.01,"writ":0.16,"used":586.55,"free":3255.44},{"epoch":26134290,"idl":99.69,"recv":0,"send":0,"writ":0.33,"used":586.76,"free":3255.25},{"epoch":26134291,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":586.72,"free":3255.29},{"epoch":26134292,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":586.68,"free":3255.32},{"epoch":26134293,"idl":99.66,"recv":0,"send":0,"writ":0.4,"used":587.3,"free":3254.7},{"epoch":26134294,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":587.06,"free":3254.93},{"epoch":26134295,"idl":99.63,"recv":0,"send":0,"writ":0.3,"used":586.9,"free":3255.08},{"epoch":26134296,"idl":98.16,"recv":0,"send":0,"writ":0.16,"used":586.77,"free":3255.2},{"epoch":26134297,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":586.74,"free":3255.23},{"epoch":26134298,"idl":99.63,"recv":0,"send":0.01,"writ":0.58,"used":587.28,"free":3254.69},{"epoch":26134299,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":586.53,"free":3255.43},{"epoch":26134300,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":586.13,"free":3255.84},{"epoch":26134301,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":586.1,"free":3255.87},{"epoch":26134302,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":585.32,"free":3256.65},{"epoch":26134303,"idl":99.65,"recv":0,"send":0,"writ":0.59,"used":585.45,"free":3256.51},{"epoch":26134304,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":585.27,"free":3256.72},{"epoch":26134305,"idl":99.65,"recv":0,"send":0,"writ":0.4,"used":585.98,"free":3256.02},{"epoch":26134306,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":585.99,"free":3256.01},{"epoch":26134307,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.21,"used":586.05,"free":3255.94},{"epoch":26134308,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.18,"used":586.05,"free":3255.94},{"epoch":26134309,"idl":99.63,"recv":0,"send":0,"writ":0.59,"used":586.87,"free":3255.11},{"epoch":26134310,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.36,"used":586,"free":3256},{"epoch":26134311,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":585.95,"free":3256.04},{"epoch":26134312,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":586.09,"free":3255.9},{"epoch":26134313,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":586.08,"free":3255.9},{"epoch":26134314,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":586.87,"free":3255.11},{"epoch":26134315,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":586.06,"free":3255.94},{"epoch":26134316,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":586.03,"free":3255.97},{"epoch":26134317,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":585.99,"free":3256},{"epoch":26134318,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":585.96,"free":3256.02},{"epoch":26134319,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":586.91,"free":3255.07},{"epoch":26134320,"idl":99.64,"recv":0,"send":0,"writ":0.32,"used":585.73,"free":3256.27},{"epoch":26134321,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":584.89,"free":3257.1},{"epoch":26134322,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":585.08,"free":3256.9},{"epoch":26134323,"idl":99.77,"recv":0,"send":0,"writ":0.17,"used":585.05,"free":3256.93},{"epoch":26134324,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":585.83,"free":3256.14},{"epoch":26134325,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":585.27,"free":3256.73},{"epoch":26134326,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":585.22,"free":3256.77},{"epoch":26134327,"idl":99.77,"recv":0.05,"send":1.3,"writ":0.2,"used":585.34,"free":3256.66},{"epoch":26134328,"idl":99.81,"recv":0,"send":0.02,"writ":0.18,"used":585.31,"free":3256.68},{"epoch":26134329,"idl":99.46,"recv":0,"send":0.01,"writ":0.71,"used":587.19,"free":3254.78},{"epoch":26134330,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":586.07,"free":3255.92},{"epoch":26134331,"idl":99.77,"recv":0,"send":0.01,"writ":0.23,"used":586,"free":3255.97},{"epoch":26134332,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":586.08,"free":3255.89},{"epoch":26134333,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":586.05,"free":3255.92},{"epoch":26134334,"idl":99.58,"recv":0.04,"send":1.24,"writ":0.42,"used":586.78,"free":3255.21},{"epoch":26134335,"idl":99.6,"recv":0.01,"send":0.02,"writ":0.56,"used":586.51,"free":3255.49},{"epoch":26134336,"idl":99.79,"recv":0,"send":0.01,"writ":0.2,"used":586.42,"free":3255.57},{"epoch":26134337,"idl":99.76,"recv":0,"send":0,"writ":0.2,"used":586.45,"free":3255.54},{"epoch":26134338,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":586.56,"free":3255.42},{"epoch":26134339,"idl":99.61,"recv":0,"send":0,"writ":0.41,"used":586.59,"free":3255.39},{"epoch":26134340,"idl":99.77,"recv":0,"send":0,"writ":0.46,"used":584.58,"free":3257.42},{"epoch":26134341,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":584.52,"free":3257.47},{"epoch":26134342,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":584.49,"free":3257.5},{"epoch":26134343,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":584.46,"free":3257.53},{"epoch":26134344,"idl":99.63,"recv":0,"send":0,"writ":0.46,"used":584.9,"free":3257.08},{"epoch":26134345,"idl":99.63,"recv":0.11,"send":4.38,"writ":0.52,"used":585.93,"free":3256.04},{"epoch":26134346,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":585.9,"free":3256.05},{"epoch":26134347,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":586.04,"free":3255.91},{"epoch":26134348,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":586,"free":3255.94},{"epoch":26134349,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":585.97,"free":3255.97},{"epoch":26134350,"idl":99.42,"recv":0,"send":0,"writ":0.74,"used":586.63,"free":3255.33},{"epoch":26134351,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":585.92,"free":3256.03},{"epoch":26134352,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":585.89,"free":3256.06},{"epoch":26134353,"idl":99.82,"recv":0.03,"send":0.84,"writ":0.2,"used":585.85,"free":3256.09},{"epoch":26134354,"idl":99.8,"recv":0.07,"send":2.8,"writ":0.21,"used":585.98,"free":3255.94},{"epoch":26134355,"idl":99.57,"recv":0,"send":0,"writ":0.74,"used":587.35,"free":3254.59},{"epoch":26134356,"idl":99.72,"recv":0,"send":0,"writ":0.21,"used":586.91,"free":3255.03},{"epoch":26134357,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":586.88,"free":3255.06},{"epoch":26134358,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":586.3,"free":3255.62},{"epoch":26134359,"idl":99.59,"recv":0,"send":0,"writ":0.46,"used":586.04,"free":3255.86},{"epoch":26134360,"idl":99.58,"recv":0,"send":0,"writ":0.93,"used":586.6,"free":3255.32},{"epoch":26134361,"idl":99.82,"recv":0.05,"send":1.96,"writ":0.16,"used":586.48,"free":3255.44},{"epoch":26134362,"idl":99.82,"recv":0.01,"send":0.03,"writ":0.19,"used":586.42,"free":3255.49},{"epoch":26134363,"idl":99.81,"recv":0,"send":0,"writ":0.22,"used":586.46,"free":3255.44},{"epoch":26134364,"idl":99.8,"recv":0.05,"send":1.55,"writ":0.26,"used":586.43,"free":3255.46},{"epoch":26134365,"idl":99.62,"recv":0,"send":0.01,"writ":0.84,"used":587.21,"free":3254.7},{"epoch":26134366,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":586.87,"free":3255.03},{"epoch":26134367,"idl":99.86,"recv":0.01,"send":0.3,"writ":0.23,"used":586.85,"free":3255.04},{"epoch":26134368,"idl":99.87,"recv":0,"send":0.02,"writ":0.15,"used":586.81,"free":3255.07},{"epoch":26134369,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":586.82,"free":3255.06},{"epoch":26134370,"idl":99.62,"recv":0.01,"send":0.19,"writ":0.7,"used":586.8,"free":3255.1},{"epoch":26134371,"idl":99.91,"recv":0.02,"send":0.65,"writ":0.24,"used":586.97,"free":3254.92},{"epoch":26134372,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":586.93,"free":3254.96},{"epoch":26134373,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":586.9,"free":3254.98},{"epoch":26134374,"idl":99.47,"recv":0,"send":0.02,"writ":0.15,"used":586.86,"free":3255.01},{"epoch":26134375,"idl":99.63,"recv":0,"send":0,"writ":0.77,"used":586.73,"free":3255.16},{"epoch":26134376,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":586.84,"free":3255.05},{"epoch":26134377,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":586.96,"free":3254.93},{"epoch":26134378,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":586.01,"free":3255.87},{"epoch":26134379,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":585.91,"free":3255.97},{"epoch":26134380,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":586.53,"free":3255.37},{"epoch":26134381,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":586.36,"free":3255.53},{"epoch":26134382,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":586.33,"free":3255.56},{"epoch":26134383,"idl":99.89,"recv":0.08,"send":2.92,"writ":0.24,"used":586.49,"free":3255.38},{"epoch":26134384,"idl":99.88,"recv":0,"send":0.01,"writ":0.18,"used":586.59,"free":3255.28},{"epoch":26134385,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":587.15,"free":3254.73},{"epoch":26134386,"idl":99.87,"recv":0,"send":0,"writ":0.35,"used":586.54,"free":3255.34},{"epoch":26134387,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.13,"used":586.64,"free":3255.24},{"epoch":26134388,"idl":99.89,"recv":0,"send":0.01,"writ":0.18,"used":586.62,"free":3255.25},{"epoch":26134389,"idl":99.64,"recv":0,"send":0.01,"writ":0.29,"used":586.59,"free":3255.26},{"epoch":26134390,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":585.61,"free":3256.26},{"epoch":26134391,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":587.42,"free":3254.44},{"epoch":26134392,"idl":99.89,"recv":0,"send":0.03,"writ":0.18,"used":586.9,"free":3254.95},{"epoch":26134393,"idl":99.9,"recv":0,"send":0.02,"writ":0.18,"used":586.9,"free":3254.95},{"epoch":26134394,"idl":99.91,"recv":0,"send":0.03,"writ":0.23,"used":586.83,"free":3255.01},{"epoch":26134395,"idl":99.78,"recv":0.06,"send":2.07,"writ":0.54,"used":585.71,"free":3256.13},{"epoch":26134396,"idl":99.75,"recv":0.02,"send":0.52,"writ":0.64,"used":586.64,"free":3255.19},{"epoch":26134397,"idl":99.84,"recv":0.04,"send":1.25,"writ":0.25,"used":586.34,"free":3255.47},{"epoch":26134398,"idl":99.92,"recv":0,"send":0.01,"writ":0.17,"used":585.9,"free":3255.9},{"epoch":26134399,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":585.27,"free":3256.53},{"epoch":26134400,"idl":99.81,"recv":0,"send":0.01,"writ":0.32,"used":586.6,"free":3255.22},{"epoch":26134401,"idl":99.69,"recv":0,"send":0.01,"writ":0.55,"used":587.15,"free":3254.67},{"epoch":26134402,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":586.86,"free":3254.95},{"epoch":26134403,"idl":99.89,"recv":0.04,"send":1.18,"writ":0.16,"used":586.95,"free":3254.85},{"epoch":26134404,"idl":99.9,"recv":0.02,"send":0.62,"writ":0.24,"used":587.07,"free":3254.71},{"epoch":26134405,"idl":99.76,"recv":0.05,"send":1.99,"writ":0.41,"used":585.87,"free":3255.92},{"epoch":26134406,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":586.69,"free":3255.09},{"epoch":26134407,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":586.72,"free":3255.05},{"epoch":26134408,"idl":99.73,"recv":0.2,"send":3.63,"writ":0.32,"used":586.19,"free":3255.56},{"epoch":26134409,"idl":99.85,"recv":0.02,"send":0.85,"writ":0.24,"used":585.65,"free":3256.08},{"epoch":26134410,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":586.39,"free":3255.35},{"epoch":26134411,"idl":99.73,"recv":0,"send":0,"writ":0.61,"used":587.35,"free":3254.39},{"epoch":26134412,"idl":99.9,"recv":0.01,"send":0.48,"writ":0.25,"used":587.17,"free":3254.56},{"epoch":26134413,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":587.17,"free":3254.56},{"epoch":26134414,"idl":99.81,"recv":0.07,"send":2.75,"writ":0.18,"used":587.14,"free":3254.58},{"epoch":26134415,"idl":99.86,"recv":0.02,"send":0.89,"writ":0.52,"used":587.36,"free":3254.36},{"epoch":26134416,"idl":99.78,"recv":0.02,"send":0.53,"writ":0.62,"used":588.02,"free":3253.7},{"epoch":26134417,"idl":99.84,"recv":0,"send":0.01,"writ":0.18,"used":587.52,"free":3254.19},{"epoch":26134418,"idl":99.91,"recv":0,"send":0.01,"writ":0.16,"used":587.66,"free":3254.04},{"epoch":26134419,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":587.01,"free":3254.67},{"epoch":26134420,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":586.62,"free":3255.08},{"epoch":26134421,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":586.95,"free":3254.74},{"epoch":26134422,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":586.8,"free":3254.89},{"epoch":26134423,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":586.77,"free":3254.92},{"epoch":26134424,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":586.88,"free":3254.8},{"epoch":26134425,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":585.97,"free":3255.73},{"epoch":26134426,"idl":99.74,"recv":0,"send":0,"writ":0.42,"used":586.29,"free":3255.4},{"epoch":26134427,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":586.37,"free":3255.32},{"epoch":26134428,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":586.34,"free":3255.34},{"epoch":26134429,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":586.31,"free":3255.37},{"epoch":26134430,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":586.8,"free":3254.89},{"epoch":26134431,"idl":99.86,"recv":0.04,"send":1.86,"writ":0.25,"used":586.24,"free":3255.44},{"epoch":26134432,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":586.62,"free":3255.05},{"epoch":26134433,"idl":99.88,"recv":0.01,"send":0.39,"writ":0.14,"used":585.92,"free":3255.75},{"epoch":26134434,"idl":99.83,"recv":0.01,"send":0.45,"writ":0.21,"used":585.79,"free":3255.86},{"epoch":26134435,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":586.64,"free":3255.03},{"epoch":26134436,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":586.61,"free":3255.05},{"epoch":26134437,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":587.25,"free":3254.41},{"epoch":26134438,"idl":99.9,"recv":0.02,"send":0.4,"writ":0.26,"used":586.57,"free":3255.08},{"epoch":26134439,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":586.21,"free":3255.43},{"epoch":26134440,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":586.14,"free":3255.52},{"epoch":26134441,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":586.08,"free":3255.57},{"epoch":26134442,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":586.39,"free":3255.26},{"epoch":26134443,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":586.02,"free":3255.63},{"epoch":26134444,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":585.99,"free":3255.65},{"epoch":26134445,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":585.85,"free":3255.81},{"epoch":26134446,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":585.89,"free":3255.76},{"epoch":26134447,"idl":99.67,"recv":0.1,"send":0.27,"writ":0.51,"used":586.2,"free":3255.45},{"epoch":26134448,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":585.88,"free":3255.76},{"epoch":26134449,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.33,"used":586.33,"free":3255.29},{"epoch":26134450,"idl":99.83,"recv":0.06,"send":0.88,"writ":0.41,"used":586.07,"free":3255.57},{"epoch":26134451,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":585.38,"free":3256.25},{"epoch":26134452,"idl":99.72,"recv":0.04,"send":0.07,"writ":0.62,"used":585.63,"free":3256},{"epoch":26134453,"idl":99.88,"recv":0.04,"send":0.05,"writ":0.37,"used":585.6,"free":3256.03},{"epoch":26134454,"idl":99.89,"recv":0.08,"send":0.11,"writ":0.31,"used":585.56,"free":3256.07},{"epoch":26134455,"idl":99.81,"recv":0.04,"send":0.04,"writ":0.48,"used":586.26,"free":3255.38},{"epoch":26134456,"idl":99.83,"recv":0.85,"send":0.89,"writ":1.14,"used":586.04,"free":3255.14},{"epoch":26134457,"idl":81.29,"recv":0.85,"send":1.74,"writ":5.42,"used":866.35,"free":2973.91},{"epoch":26134458,"idl":99.85,"recv":0.04,"send":1.67,"writ":0.73,"used":1066.02,"free":2774.19},{"epoch":26134459,"idl":99.62,"recv":0,"send":0.01,"writ":0.19,"used":616.54,"free":3223.66},{"epoch":26134460,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":584.66,"free":3255.56},{"epoch":26134461,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":584.63,"free":3255.58},{"epoch":26134462,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":584.95,"free":3255.26},{"epoch":26134463,"idl":99.89,"recv":0,"send":0,"writ":0.43,"used":583.34,"free":3256.87},{"epoch":26134464,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":583.33,"free":3256.87},{"epoch":26134465,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":586.16,"free":3254.06},{"epoch":26134466,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":586.2,"free":3254.01},{"epoch":26134467,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":586.49,"free":3253.72},{"epoch":26134468,"idl":99.9,"recv":0,"send":0,"writ":0.42,"used":584.91,"free":3255.3},{"epoch":26134469,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":584.88,"free":3255.34},{"epoch":26134470,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":585.36,"free":3254.88},{"epoch":26134471,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":585.34,"free":3254.89},{"epoch":26134472,"idl":99.93,"recv":0,"send":0.01,"writ":0.16,"used":585.39,"free":3254.83},{"epoch":26134473,"idl":99.77,"recv":0,"send":0.01,"writ":0.62,"used":586.62,"free":3253.6},{"epoch":26134474,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":586.39,"free":3253.83},{"epoch":26134475,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":586.22,"free":3254.02},{"epoch":26134476,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":585.36,"free":3254.87},{"epoch":26134477,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":585.33,"free":3254.89},{"epoch":26134478,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":585.92,"free":3254.3},{"epoch":26134479,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":585.45,"free":3254.75},{"epoch":26134480,"idl":99.77,"recv":0.02,"send":0.08,"writ":0.31,"used":584.71,"free":3255.5},{"epoch":26134481,"idl":99.87,"recv":0.02,"send":0.03,"writ":0.16,"used":584.69,"free":3255.5},{"epoch":26134482,"idl":99.94,"recv":0,"send":0.01,"writ":0.16,"used":584.62,"free":3255.57},{"epoch":26134483,"idl":99.74,"recv":0,"send":0,"writ":0.58,"used":585.63,"free":3254.55},{"epoch":26134484,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.18,"used":585.85,"free":3254.33},{"epoch":26134485,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":586.06,"free":3254.14},{"epoch":26134486,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":586.03,"free":3254.16},{"epoch":26134487,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.21,"used":586.14,"free":3254.05},{"epoch":26134488,"idl":99.75,"recv":0.01,"send":0.01,"writ":0.57,"used":586.55,"free":3253.63},{"epoch":26134489,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":586.27,"free":3253.89},{"epoch":26134490,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":586.13,"free":3254.04},{"epoch":26134491,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.16,"used":586.08,"free":3254.09},{"epoch":26134492,"idl":81.74,"recv":0.02,"send":0.04,"writ":3.64,"used":804.11,"free":3036.04},{"epoch":26134493,"idl":80.7,"recv":0.01,"send":0.03,"writ":4.33,"used":1041.32,"free":2798.87},{"epoch":26134494,"idl":80.92,"recv":0.08,"send":2.3,"writ":4.78,"used":789.24,"free":3050.91},{"epoch":26134495,"idl":99.23,"recv":0.06,"send":2.3,"writ":0.51,"used":538.69,"free":3301.46},{"epoch":26134496,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.16,"used":538.78,"free":3301.36},{"epoch":26134497,"idl":80.69,"recv":0.07,"send":2.37,"writ":4.51,"used":990.78,"free":2849.29},{"epoch":26134498,"idl":99.57,"recv":0.01,"send":0.01,"writ":0.41,"used":683.35,"free":3156.74},{"epoch":26134499,"idl":81.06,"recv":0.06,"send":0.56,"writ":4.28,"used":989.93,"free":2850.18},{"epoch":26134500,"idl":99.57,"recv":0.02,"send":0.03,"writ":0.34,"used":1020.4,"free":2819.78},{"epoch":26134501,"idl":81.34,"recv":0.03,"send":0.55,"writ":4.59,"used":927.51,"free":2912.62},{"epoch":26134502,"idl":99.47,"recv":0.01,"send":0.01,"writ":0.2,"used":706.78,"free":3133.36},{"epoch":26134503,"idl":99.88,"recv":0,"send":0,"writ":0.22,"used":587.01,"free":3253.12},{"epoch":26134504,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":588.03,"free":3252.1},{"epoch":26134505,"idl":99.77,"recv":0.05,"send":1.83,"writ":0.52,"used":586.79,"free":3253.35},{"epoch":26134506,"idl":99.9,"recv":0.01,"send":0.23,"writ":0.27,"used":586.83,"free":3253.3},{"epoch":26134507,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.2,"used":586.8,"free":3253.32},{"epoch":26134508,"idl":99.86,"recv":0.09,"send":0.01,"writ":0.34,"used":586.8,"free":3253.32},{"epoch":26134509,"idl":81.03,"recv":0.05,"send":0.91,"writ":4.7,"used":784.82,"free":3055.24},{"epoch":26134510,"idl":99.54,"recv":0,"send":0,"writ":0.6,"used":955.99,"free":2884.13},{"epoch":26134511,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":583.84,"free":3256.27},{"epoch":26134512,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":583.81,"free":3256.3},{"epoch":26134513,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":583.87,"free":3256.24},{"epoch":26134514,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":585.5,"free":3254.6},{"epoch":26134515,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":585.38,"free":3254.74},{"epoch":26134516,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":585.36,"free":3254.76},{"epoch":26134517,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":585.56,"free":3254.55},{"epoch":26134518,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":585.54,"free":3254.57},{"epoch":26134519,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":586.16,"free":3253.94},{"epoch":26134520,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":585.51,"free":3254.62},{"epoch":26134521,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":585.49,"free":3254.63},{"epoch":26134522,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":585.63,"free":3254.48},{"epoch":26134523,"idl":99.87,"recv":0,"send":0.01,"writ":0.18,"used":585.58,"free":3254.53},{"epoch":26134524,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":586,"free":3254.1},{"epoch":26134525,"idl":99.82,"recv":0,"send":0,"writ":0.35,"used":586.02,"free":3254.1},{"epoch":26134526,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":585.81,"free":3254.31},{"epoch":26134527,"idl":99.85,"recv":0,"send":0,"writ":0.23,"used":565.28,"free":3274.94},{"epoch":26134528,"idl":99.92,"recv":0,"send":0,"writ":0.23,"used":531.96,"free":3308.65},{"epoch":26134529,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":532.28,"free":3308.32},{"epoch":26134530,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":531.94,"free":3308.68},{"epoch":26134531,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":531.91,"free":3308.71},{"epoch":26134532,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":531.91,"free":3308.74},{"epoch":26134533,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":531.88,"free":3308.77},{"epoch":26134534,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":532.4,"free":3308.25},{"epoch":26134535,"idl":99.83,"recv":0,"send":0,"writ":0.43,"used":531.15,"free":3309.52},{"epoch":26134536,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.12,"free":3309.54},{"epoch":26134537,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.1,"free":3309.56},{"epoch":26134538,"idl":98.14,"recv":0,"send":0,"writ":0.14,"used":531.1,"free":3309.55},{"epoch":26134539,"idl":99.67,"recv":0,"send":0,"writ":0.68,"used":531.96,"free":3308.67},{"epoch":26134540,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":531.73,"free":3308.9},{"epoch":26134541,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.71,"free":3308.92},{"epoch":26134542,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":531.69,"free":3308.94},{"epoch":26134543,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.67,"free":3308.96},{"epoch":26134544,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.66,"free":3309},{"epoch":26134545,"idl":99.6,"recv":0,"send":0,"writ":0.68,"used":530.87,"free":3309.81},{"epoch":26134546,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":530.41,"free":3310.26},{"epoch":26134547,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":530.4,"free":3310.27},{"epoch":26134548,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":530.37,"free":3310.29},{"epoch":26134549,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":530.35,"free":3310.31},{"epoch":26134550,"idl":99.62,"recv":0,"send":0,"writ":0.68,"used":531.41,"free":3309.26},{"epoch":26134551,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.25,"free":3309.42},{"epoch":26134552,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":531.27,"free":3309.4},{"epoch":26134553,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.25,"free":3309.42},{"epoch":26134554,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":531.23,"free":3309.43},{"epoch":26134555,"idl":99.68,"recv":0,"send":0,"writ":0.68,"used":532.29,"free":3308.39},{"epoch":26134556,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":531.95,"free":3308.72},{"epoch":26134557,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":531.92,"free":3308.75},{"epoch":26134558,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.91,"free":3308.75},{"epoch":26134559,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":531.88,"free":3308.78},{"epoch":26134560,"idl":99.59,"recv":0,"send":0,"writ":0.73,"used":531.94,"free":3308.74},{"epoch":26134561,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.38,"free":3309.29},{"epoch":26134562,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.37,"free":3309.3},{"epoch":26134563,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":531.51,"free":3309.15},{"epoch":26134564,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":531.5,"free":3309.16},{"epoch":26134565,"idl":99.72,"recv":0,"send":0,"writ":0.76,"used":532.66,"free":3308.01},{"epoch":26134566,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.2,"free":3308.46},{"epoch":26134567,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":532.19,"free":3308.48},{"epoch":26134568,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.16,"free":3308.49},{"epoch":26134569,"idl":99.81,"recv":0,"send":0,"writ":0.35,"used":532.38,"free":3308.25},{"epoch":26134570,"idl":99.66,"recv":0,"send":0,"writ":0.75,"used":532.37,"free":3308.28},{"epoch":26134571,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":532.36,"free":3308.29},{"epoch":26134572,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":532.33,"free":3308.31},{"epoch":26134573,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.36,"free":3308.28},{"epoch":26134574,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":532.29,"free":3308.34},{"epoch":26134575,"idl":99.68,"recv":0,"send":0,"writ":0.77,"used":532.58,"free":3308.07},{"epoch":26134576,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":532.21,"free":3308.43},{"epoch":26134577,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":531.95,"free":3308.69},{"epoch":26134578,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":531.93,"free":3308.71},{"epoch":26134579,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.9,"free":3308.73},{"epoch":26134580,"idl":99.6,"recv":0,"send":0,"writ":0.56,"used":532.34,"free":3308.31},{"epoch":26134581,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":531.88,"free":3308.76},{"epoch":26134582,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":531.87,"free":3308.77},{"epoch":26134583,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.84,"free":3308.8},{"epoch":26134584,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":531.82,"free":3308.81},{"epoch":26134585,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":531.69,"free":3308.96},{"epoch":26134586,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":532.39,"free":3308.25},{"epoch":26134587,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":531.96,"free":3308.68},{"epoch":26134588,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.93,"free":3308.7},{"epoch":26134589,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":531.91,"free":3308.72},{"epoch":26134590,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":531.19,"free":3309.45},{"epoch":26134591,"idl":99.64,"recv":0,"send":0,"writ":0.54,"used":531.51,"free":3309.13},{"epoch":26134592,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":531.12,"free":3309.51},{"epoch":26134593,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.1,"free":3309.53},{"epoch":26134594,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":531.08,"free":3309.54},{"epoch":26134595,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":531.42,"free":3309.22},{"epoch":26134596,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":531.45,"free":3309.19},{"epoch":26134597,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":530.96,"free":3309.67},{"epoch":26134598,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":530.94,"free":3309.69},{"epoch":26134599,"idl":99.07,"recv":0,"send":0,"writ":0.29,"used":532.37,"free":3308.23},{"epoch":26134600,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":531.92,"free":3308.7},{"epoch":26134601,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":532.85,"free":3307.76},{"epoch":26134602,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.35,"free":3308.26},{"epoch":26134603,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.34,"free":3308.27},{"epoch":26134604,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.31,"free":3308.31},{"epoch":26134605,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":532.28,"free":3308.36},{"epoch":26134606,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":531.71,"free":3308.92},{"epoch":26134607,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":531.48,"free":3309.15},{"epoch":26134608,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.45,"free":3309.17},{"epoch":26134609,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":531.44,"free":3309.18},{"epoch":26134610,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":531.52,"free":3309.11},{"epoch":26134611,"idl":99.72,"recv":0,"send":0,"writ":0.42,"used":531.76,"free":3308.87},{"epoch":26134612,"idl":99.92,"recv":0,"send":0,"writ":0.32,"used":531.39,"free":3309.23},{"epoch":26134613,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":531.37,"free":3309.25},{"epoch":26134614,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":531.35,"free":3309.26},{"epoch":26134615,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":531.12,"free":3309.51},{"epoch":26134616,"idl":99.18,"recv":0,"send":0,"writ":0.53,"used":531.59,"free":3309.03},{"epoch":26134617,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":531.56,"free":3309.06},{"epoch":26134618,"idl":99.92,"recv":0,"send":0.01,"writ":0.2,"used":531.68,"free":3308.93},{"epoch":26134619,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":531.68,"free":3308.94},{"epoch":26134620,"idl":99.67,"recv":0,"send":0,"writ":0.37,"used":530.96,"free":3309.67},{"epoch":26134621,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":531.65,"free":3308.98},{"epoch":26134622,"idl":99.89,"recv":0,"send":0,"writ":0.43,"used":531.39,"free":3309.23},{"epoch":26134623,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":531.37,"free":3309.24},{"epoch":26134624,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":531.35,"free":3309.26},{"epoch":26134625,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":531.37,"free":3309.27},{"epoch":26134626,"idl":99.92,"recv":0,"send":0.01,"writ":0.23,"used":531.33,"free":3309.3},{"epoch":26134627,"idl":99.78,"recv":0,"send":0.01,"writ":0.57,"used":532.19,"free":3308.43},{"epoch":26134628,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":531.72,"free":3308.89},{"epoch":26134629,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":531.7,"free":3308.89},{"epoch":26134630,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":531.45,"free":3309.15},{"epoch":26134631,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":531.42,"free":3309.18},{"epoch":26134632,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":531.92,"free":3308.67},{"epoch":26134633,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":531.62,"free":3308.97},{"epoch":26134634,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":531.6,"free":3308.99},{"epoch":26134635,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":530.64,"free":3309.97},{"epoch":26134636,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":530.6,"free":3310.01},{"epoch":26134637,"idl":99.73,"recv":0,"send":0,"writ":0.62,"used":531.7,"free":3308.9},{"epoch":26134638,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":531.65,"free":3308.94},{"epoch":26134639,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":531.7,"free":3308.88},{"epoch":26134640,"idl":99.75,"recv":0,"send":0,"writ":0.35,"used":531.99,"free":3308.62},{"epoch":26134641,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":531.92,"free":3308.68},{"epoch":26134642,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":532.12,"free":3308.47},{"epoch":26134643,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":531.64,"free":3308.96},{"epoch":26134644,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.62,"free":3308.97},{"epoch":26134645,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":530.67,"free":3309.94},{"epoch":26134646,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":530.62,"free":3309.98},{"epoch":26134647,"idl":95.13,"recv":0.3,"send":0.01,"writ":79.22,"used":541.26,"free":3299.57},{"epoch":26134648,"idl":99.74,"recv":0,"send":0,"writ":181.04,"used":534.1,"free":3305.82},{"epoch":26134649,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":534.07,"free":3305.84},{"epoch":26134650,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":533.17,"free":3306.76},{"epoch":26134651,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":533.25,"free":3306.67},{"epoch":26134652,"idl":99.78,"recv":0,"send":0,"writ":0.62,"used":533.27,"free":3306.65},{"epoch":26134653,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.77,"free":3308.17},{"epoch":26134654,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":531.76,"free":3308.19},{"epoch":26134655,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":531.77,"free":3308.19},{"epoch":26134656,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":531.74,"free":3308.22},{"epoch":26134657,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":532.1,"free":3307.85},{"epoch":26134658,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":531.7,"free":3308.27},{"epoch":26134659,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":531.42,"free":3308.52},{"epoch":26134660,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":531.22,"free":3308.74},{"epoch":26134661,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.22,"free":3308.74},{"epoch":26134662,"idl":99.76,"recv":0,"send":0,"writ":0.37,"used":531.7,"free":3308.25},{"epoch":26134663,"idl":99.89,"recv":0,"send":0,"writ":0.39,"used":531.79,"free":3308.16},{"epoch":26134664,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":531.78,"free":3308.19},{"epoch":26134665,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":532,"free":3307.99},{"epoch":26134666,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.94,"free":3308.05},{"epoch":26134667,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":531.97,"free":3308.04},{"epoch":26134668,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":532.33,"free":3307.69},{"epoch":26134669,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":531.7,"free":3308.31},{"epoch":26134670,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":531.67,"free":3308.35},{"epoch":26134671,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":531.79,"free":3308.23},{"epoch":26134672,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":531.73,"free":3308.28},{"epoch":26134673,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":532.07,"free":3307.94},{"epoch":26134674,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":531.68,"free":3308.32},{"epoch":26134675,"idl":99.83,"recv":0,"send":0,"writ":0.37,"used":531.48,"free":3308.54},{"epoch":26134676,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":531.42,"free":3308.6},{"epoch":26134677,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":531.41,"free":3308.6},{"epoch":26134678,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":531.91,"free":3308.1},{"epoch":26134679,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":531.72,"free":3308.28},{"epoch":26134680,"idl":99.69,"recv":0,"send":0,"writ":0.36,"used":530.85,"free":3309.18},{"epoch":26134681,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":530.8,"free":3309.22},{"epoch":26134682,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":530.77,"free":3309.24},{"epoch":26134683,"idl":99.76,"recv":0,"send":0,"writ":0.51,"used":531.96,"free":3308.05},{"epoch":26134684,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":531.72,"free":3308.29},{"epoch":26134685,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":531.01,"free":3309.02},{"epoch":26134686,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":530.96,"free":3309.06},{"epoch":26134687,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":530.95,"free":3309.07},{"epoch":26134688,"idl":99.77,"recv":0,"send":0,"writ":0.4,"used":531.61,"free":3308.41},{"epoch":26134689,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":531.65,"free":3308.34},{"epoch":26134690,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":531.88,"free":3308.14},{"epoch":26134691,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":531.99,"free":3308.03},{"epoch":26134692,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":532.06,"free":3307.95},{"epoch":26134693,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":532.39,"free":3307.61},{"epoch":26134694,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.02,"free":3307.98},{"epoch":26134695,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":532.02,"free":3308},{"epoch":26134696,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532,"free":3308.01},{"epoch":26134697,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":531.74,"free":3308.27},{"epoch":26134698,"idl":99.78,"recv":0,"send":0,"writ":0.45,"used":532.07,"free":3307.94},{"epoch":26134699,"idl":99.93,"recv":0,"send":0,"writ":0.32,"used":531.69,"free":3308.31},{"epoch":26134700,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":531.93,"free":3308.09},{"epoch":26134701,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.9,"free":3308.11},{"epoch":26134702,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.89,"free":3308.11},{"epoch":26134703,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.01,"free":3307.99},{"epoch":26134704,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":532.54,"free":3307.46},{"epoch":26134705,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":532.04,"free":3307.98},{"epoch":26134706,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.02,"free":3307.99},{"epoch":26134707,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":531.99,"free":3308.01},{"epoch":26134708,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":531.99,"free":3308.01},{"epoch":26134709,"idl":99.74,"recv":0,"send":0,"writ":0.58,"used":532.31,"free":3307.69},{"epoch":26134710,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":530.76,"free":3309.25},{"epoch":26134711,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":530.72,"free":3309.29},{"epoch":26134712,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":530.7,"free":3309.31},{"epoch":26134713,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":530.67,"free":3309.34},{"epoch":26134714,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":531.81,"free":3308.19},{"epoch":26134715,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":530.79,"free":3309.22},{"epoch":26134716,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.08,"free":3308.93},{"epoch":26134717,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":531.05,"free":3308.95},{"epoch":26134718,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":531.04,"free":3308.96},{"epoch":26134719,"idl":99.61,"recv":0,"send":0,"writ":0.7,"used":532.8,"free":3307.18},{"epoch":26134720,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":531.97,"free":3308.02},{"epoch":26134721,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":531.95,"free":3308.05},{"epoch":26134722,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":531.93,"free":3308.06},{"epoch":26134723,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":531.9,"free":3308.08},{"epoch":26134724,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":532.31,"free":3307.67},{"epoch":26134725,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":531.98,"free":3308.02},{"epoch":26134726,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":532.05,"free":3307.94},{"epoch":26134727,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":532.03,"free":3307.96},{"epoch":26134728,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":532.01,"free":3307.98},{"epoch":26134729,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":532.27,"free":3307.72},{"epoch":26134730,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":532.24,"free":3307.77},{"epoch":26134731,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.22,"free":3307.78},{"epoch":26134732,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.2,"free":3307.8},{"epoch":26134733,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.18,"free":3307.81},{"epoch":26134734,"idl":99.74,"recv":0,"send":0,"writ":0.5,"used":532.44,"free":3307.55},{"epoch":26134735,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":531.42,"free":3308.58},{"epoch":26134736,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":531.42,"free":3308.57},{"epoch":26134737,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":531.55,"free":3308.43},{"epoch":26134738,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.52,"free":3308.46},{"epoch":26134739,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":531.93,"free":3308.04},{"epoch":26134740,"idl":99.66,"recv":0,"send":0,"writ":0.43,"used":531.53,"free":3308.47},{"epoch":26134741,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":531.49,"free":3308.5},{"epoch":26134742,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.47,"free":3308.52},{"epoch":26134743,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.46,"free":3308.53},{"epoch":26134744,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":531.43,"free":3308.55},{"epoch":26134745,"idl":99.59,"recv":0,"send":0,"writ":0.72,"used":531.91,"free":3308.09},{"epoch":26134746,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":531.41,"free":3308.58},{"epoch":26134747,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":531.39,"free":3308.6},{"epoch":26134748,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":531.42,"free":3308.56},{"epoch":26134749,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":532.06,"free":3307.89},{"epoch":26134750,"idl":99.73,"recv":0,"send":0,"writ":0.73,"used":532.86,"free":3307.11},{"epoch":26134751,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":532.49,"free":3307.48},{"epoch":26134752,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.47,"free":3307.49},{"epoch":26134753,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.45,"free":3307.51},{"epoch":26134754,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.24,"free":3307.72},{"epoch":26134755,"idl":99.62,"recv":0,"send":0,"writ":0.74,"used":532.39,"free":3307.6},{"epoch":26134756,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.17,"free":3307.81},{"epoch":26134757,"idl":99.85,"recv":0,"send":0,"writ":0.22,"used":532.15,"free":3307.83},{"epoch":26134758,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":532.13,"free":3307.84},{"epoch":26134759,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":532.12,"free":3307.86},{"epoch":26134760,"idl":99.57,"recv":0,"send":0,"writ":0.76,"used":531.79,"free":3308.19},{"epoch":26134761,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":531.47,"free":3308.51},{"epoch":26134762,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":531.52,"free":3308.46},{"epoch":26134763,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":531.5,"free":3308.47},{"epoch":26134764,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":531.48,"free":3308.49},{"epoch":26134765,"idl":99.65,"recv":0,"send":0,"writ":0.84,"used":532.08,"free":3307.9},{"epoch":26134766,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":531.46,"free":3308.54},{"epoch":26134767,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":531.44,"free":3308.55},{"epoch":26134768,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":531.42,"free":3308.57},{"epoch":26134769,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":531.4,"free":3308.58},{"epoch":26134770,"idl":99.59,"recv":0,"send":0,"writ":0.61,"used":531.99,"free":3308.01},{"epoch":26134771,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":531.37,"free":3308.63},{"epoch":26134772,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":531.43,"free":3308.57},{"epoch":26134773,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":531.55,"free":3308.44},{"epoch":26134774,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":531.54,"free":3308.45},{"epoch":26134775,"idl":99.61,"recv":0,"send":0,"writ":0.61,"used":531.92,"free":3308.09},{"epoch":26134776,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":531.76,"free":3308.24},{"epoch":26134777,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":531.74,"free":3308.26},{"epoch":26134778,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":531.71,"free":3308.27},{"epoch":26134779,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":531.47,"free":3308.5},{"epoch":26134780,"idl":98.93,"recv":0,"send":0,"writ":0.64,"used":531.88,"free":3308.1},{"epoch":26134781,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":531.67,"free":3308.3},{"epoch":26134782,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":531.66,"free":3308.31},{"epoch":26134783,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":531.63,"free":3308.34},{"epoch":26134784,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":531.71,"free":3308.28},{"epoch":26134785,"idl":99.73,"recv":0,"send":0,"writ":0.38,"used":530.59,"free":3309.42},{"epoch":26134786,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":532.2,"free":3307.81},{"epoch":26134787,"idl":99.77,"recv":0,"send":0,"writ":0.15,"used":531.52,"free":3308.49},{"epoch":26134788,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":531.5,"free":3308.51},{"epoch":26134789,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":531.48,"free":3308.52},{"epoch":26134790,"idl":99.72,"recv":0,"send":0,"writ":0.36,"used":531.75,"free":3308.26},{"epoch":26134791,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":532.06,"free":3307.95},{"epoch":26134792,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":531.68,"free":3308.32},{"epoch":26134793,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":531.67,"free":3308.34},{"epoch":26134794,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":531.65,"free":3308.35},{"epoch":26134795,"idl":99.67,"recv":0,"send":0,"writ":0.34,"used":531.68,"free":3308.33},{"epoch":26134796,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":531.85,"free":3308.16},{"epoch":26134797,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":531.47,"free":3308.54},{"epoch":26134798,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":531.54,"free":3308.46},{"epoch":26134799,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":531.51,"free":3308.49},{"epoch":26134800,"idl":99.71,"recv":0,"send":0,"writ":0.36,"used":531.76,"free":3308.25},{"epoch":26134801,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":532.09,"free":3307.92},{"epoch":26134802,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":531.72,"free":3308.29},{"epoch":26134803,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":531.7,"free":3308.3},{"epoch":26134804,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":531.68,"free":3308.32},{"epoch":26134805,"idl":99.69,"recv":0,"send":0,"writ":0.38,"used":531.44,"free":3308.57},{"epoch":26134806,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":531.87,"free":3308.14},{"epoch":26134807,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":531.66,"free":3308.35},{"epoch":26134808,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":531.79,"free":3308.21},{"epoch":26134809,"idl":99.64,"recv":0,"send":0,"writ":0.3,"used":531.77,"free":3308.21},{"epoch":26134810,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":531.28,"free":3308.71},{"epoch":26134811,"idl":99.66,"recv":0,"send":0,"writ":0.45,"used":531.87,"free":3308.12},{"epoch":26134812,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":531.98,"free":3308.01},{"epoch":26134813,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":531.94,"free":3308.04},{"epoch":26134814,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":531.92,"free":3308.06},{"epoch":26134815,"idl":99.7,"recv":0,"send":0,"writ":0.36,"used":530.96,"free":3309.04},{"epoch":26134816,"idl":99.66,"recv":0,"send":0,"writ":0.4,"used":531.33,"free":3308.67},{"epoch":26134817,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":531.64,"free":3308.35},{"epoch":26134818,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":531.61,"free":3308.37},{"epoch":26134819,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":531.7,"free":3308.28},{"epoch":26134820,"idl":99.7,"recv":0,"send":0,"writ":0.34,"used":530.84,"free":3309.16},{"epoch":26134821,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":531.21,"free":3308.78},{"epoch":26134822,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":531.99,"free":3307.99},{"epoch":26134823,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":531.97,"free":3308.01},{"epoch":26134824,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":531.94,"free":3308.03},{"epoch":26134825,"idl":99.73,"recv":0,"send":0,"writ":0.37,"used":531.94,"free":3308.04},{"epoch":26134826,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":531.92,"free":3308.06},{"epoch":26134827,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":532.39,"free":3307.59},{"epoch":26134828,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":531.62,"free":3308.35},{"epoch":26134829,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":531.61,"free":3308.36},{"epoch":26134830,"idl":99.81,"recv":0,"send":0.02,"writ":0.36,"used":531.98,"free":3308},{"epoch":26134831,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":531.99,"free":3307.99},{"epoch":26134832,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":532.33,"free":3307.65},{"epoch":26134833,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.16,"used":531.71,"free":3308.27},{"epoch":26134834,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":531.74,"free":3308.23},{"epoch":26134835,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":531.98,"free":3308},{"epoch":26134836,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":531.97,"free":3308.01},{"epoch":26134837,"idl":99.68,"recv":0,"send":0,"writ":0.5,"used":532.18,"free":3307.8},{"epoch":26134838,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":531.68,"free":3308.29},{"epoch":26134839,"idl":99.65,"recv":0,"send":0,"writ":0.29,"used":531.9,"free":3308.05},{"epoch":26134840,"idl":99.71,"recv":0,"send":0,"writ":0.43,"used":531.73,"free":3308.23},{"epoch":26134841,"idl":95.04,"recv":0,"send":0,"writ":0.14,"used":531.63,"free":3308.32},{"epoch":26134842,"idl":99.62,"recv":0,"send":0,"writ":0.56,"used":532.11,"free":3307.84},{"epoch":26134843,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":531.82,"free":3308.12},{"epoch":26134844,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":531.92,"free":3308.03},{"epoch":26134845,"idl":99.67,"recv":0,"send":0,"writ":0.35,"used":531.54,"free":3308.43},{"epoch":26134846,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":531.51,"free":3308.46},{"epoch":26134847,"idl":99.6,"recv":0,"send":0,"writ":0.5,"used":532.42,"free":3307.55},{"epoch":26134848,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":531.97,"free":3308},{"epoch":26134849,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":531.95,"free":3308.01},{"epoch":26134850,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":531.96,"free":3308.01},{"epoch":26134851,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":531.93,"free":3308.04},{"epoch":26134852,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":532.38,"free":3307.59},{"epoch":26134853,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":531.64,"free":3308.32},{"epoch":26134854,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":531.63,"free":3308.34},{"epoch":26134855,"idl":99.75,"recv":0,"send":0,"writ":0.43,"used":532.16,"free":3307.83},{"epoch":26134856,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":532.12,"free":3307.88},{"epoch":26134857,"idl":98.19,"recv":0,"send":0,"writ":0.37,"used":532.55,"free":3307.44},{"epoch":26134858,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":532.01,"free":3307.97},{"epoch":26134859,"idl":99.83,"recv":0,"send":0,"writ":0.23,"used":531.98,"free":3308},{"epoch":26134860,"idl":99.15,"recv":0,"send":0,"writ":10.73,"used":531.43,"free":3308.55},{"epoch":26134861,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":531.44,"free":3308.59},{"epoch":26134862,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":531.79,"free":3308.24},{"epoch":26134863,"idl":99.81,"recv":0,"send":0,"writ":0.41,"used":531.89,"free":3308.13},{"epoch":26134864,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":531.87,"free":3308.14},{"epoch":26134865,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":532.12,"free":3307.94},{"epoch":26134866,"idl":99.77,"recv":0,"send":0,"writ":0.18,"used":532.1,"free":3307.97},{"epoch":26134867,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":532.08,"free":3307.98},{"epoch":26134868,"idl":99.63,"recv":0,"send":0,"writ":0.57,"used":532.25,"free":3307.81},{"epoch":26134869,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":531.99,"free":3308.05},{"epoch":26134870,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":530.76,"free":3309.29},{"epoch":26134871,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":530.73,"free":3309.32},{"epoch":26134872,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":530.71,"free":3309.33},{"epoch":26134873,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":532.42,"free":3307.63},{"epoch":26134874,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":532.15,"free":3307.89},{"epoch":26134875,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":531.91,"free":3308.15},{"epoch":26134876,"idl":99.82,"recv":0,"send":0.01,"writ":0.18,"used":531.86,"free":3308.19},{"epoch":26134877,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":531.83,"free":3308.21},{"epoch":26134878,"idl":99.66,"recv":0,"send":0,"writ":0.6,"used":532.45,"free":3307.59},{"epoch":26134879,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":532.15,"free":3307.89},{"epoch":26134880,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":532.24,"free":3307.81},{"epoch":26134881,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":532.21,"free":3307.84},{"epoch":26134882,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":532.19,"free":3307.85},{"epoch":26134883,"idl":99.63,"recv":0,"send":0,"writ":0.4,"used":532.53,"free":3307.51},{"epoch":26134884,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":532.15,"free":3307.87},{"epoch":26134885,"idl":99.69,"recv":0,"send":0,"writ":0.33,"used":532.14,"free":3307.9},{"epoch":26134886,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":532.13,"free":3307.91},{"epoch":26134887,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":532.1,"free":3307.93},{"epoch":26134888,"idl":99.69,"recv":0,"send":0,"writ":0.61,"used":532.43,"free":3307.6},{"epoch":26134889,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":532.06,"free":3307.96},{"epoch":26134890,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":532.08,"free":3307.95},{"epoch":26134891,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":532.22,"free":3307.82},{"epoch":26134892,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":532.19,"free":3307.84},{"epoch":26134893,"idl":99.62,"recv":0,"send":0,"writ":0.58,"used":532.48,"free":3307.55},{"epoch":26134894,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":531.9,"free":3308.12},{"epoch":26134895,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":531.47,"free":3308.57},{"epoch":26134896,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":531.39,"free":3308.64},{"epoch":26134897,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":531.37,"free":3308.66},{"epoch":26134898,"idl":99.71,"recv":0,"send":0,"writ":0.15,"used":531.66,"free":3308.36},{"epoch":26134899,"idl":99.63,"recv":0,"send":0.01,"writ":0.75,"used":532.63,"free":3307.39},{"epoch":26134900,"idl":99.65,"recv":0,"send":0,"writ":0.33,"used":530.55,"free":3309.48},{"epoch":26134901,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":530.47,"free":3309.55},{"epoch":26134902,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":530.45,"free":3309.57},{"epoch":26134903,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":530.42,"free":3309.59},{"epoch":26134904,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":532.03,"free":3307.98},{"epoch":26134905,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":531.65,"free":3308.38},{"epoch":26134906,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":531.63,"free":3308.39},{"epoch":26134907,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":531.59,"free":3308.42},{"epoch":26134908,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":531.58,"free":3308.43},{"epoch":26134909,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":532.39,"free":3307.61},{"epoch":26134910,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":532.06,"free":3307.96},{"epoch":26134911,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":532.03,"free":3308},{"epoch":26134912,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":532.11,"free":3307.9},{"epoch":26134913,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":532.17,"free":3307.84},{"epoch":26134914,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":532.68,"free":3307.33},{"epoch":26134915,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":531.55,"free":3308.49},{"epoch":26134916,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":531.39,"free":3308.64},{"epoch":26134917,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":531.37,"free":3308.66},{"epoch":26134918,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":531.35,"free":3308.67},{"epoch":26134919,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":531.93,"free":3308.09},{"epoch":26134920,"idl":99.73,"recv":0,"send":0,"writ":0.42,"used":531.58,"free":3308.45},{"epoch":26134921,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":531.56,"free":3308.47},{"epoch":26134922,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":531.53,"free":3308.49},{"epoch":26134923,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":531.57,"free":3308.45},{"epoch":26134924,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":531.97,"free":3308.05},{"epoch":26134925,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":530.51,"free":3309.53},{"epoch":26134926,"idl":99.89,"recv":0,"send":0.01,"writ":0.2,"used":530.45,"free":3309.58},{"epoch":26134927,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":530.42,"free":3309.61},{"epoch":26134928,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":530.39,"free":3309.63},{"epoch":26134929,"idl":99.6,"recv":0,"send":0,"writ":0.6,"used":532.27,"free":3307.72},{"epoch":26134930,"idl":99.83,"recv":0,"send":0,"writ":0.4,"used":531.58,"free":3308.44},{"epoch":26134931,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":531.55,"free":3308.46},{"epoch":26134932,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":531.59,"free":3308.42},{"epoch":26134933,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":531.7,"free":3308.3},{"epoch":26134934,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.69,"free":3308.31},{"epoch":26134935,"idl":99.5,"recv":0,"send":0,"writ":0.64,"used":532.02,"free":3308},{"epoch":26134936,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":531.67,"free":3308.34},{"epoch":26134937,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":531.65,"free":3308.36},{"epoch":26134938,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":531.63,"free":3308.37},{"epoch":26134939,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":531.61,"free":3308.39},{"epoch":26134940,"idl":99.67,"recv":0,"send":0,"writ":0.64,"used":531.98,"free":3308.05},{"epoch":26134941,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.59,"free":3308.43},{"epoch":26134942,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":531.57,"free":3308.44},{"epoch":26134943,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.55,"free":3308.46},{"epoch":26134944,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.58,"free":3308.43},{"epoch":26134945,"idl":99.62,"recv":0,"send":0,"writ":0.72,"used":531.66,"free":3308.36},{"epoch":26134946,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":530.97,"free":3309.05},{"epoch":26134947,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":530.94,"free":3309.07},{"epoch":26134948,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":530.92,"free":3309.08},{"epoch":26134949,"idl":99.89,"recv":0.01,"send":0.03,"writ":0.16,"used":530.84,"free":3309.16},{"epoch":26134950,"idl":99.57,"recv":0,"send":0,"writ":0.69,"used":532.12,"free":3307.9},{"epoch":26134951,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":531.79,"free":3308.23},{"epoch":26134952,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.87,"free":3308.14},{"epoch":26134953,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":531.92,"free":3308.08},{"epoch":26134954,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":531.91,"free":3308.09},{"epoch":26134955,"idl":99.73,"recv":0,"send":0,"writ":0.67,"used":532.4,"free":3307.62},{"epoch":26134956,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.13,"free":3307.88},{"epoch":26134957,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.1,"free":3307.9},{"epoch":26134958,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.09,"free":3307.91},{"epoch":26134959,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":531.12,"free":3308.86},{"epoch":26134960,"idl":99.63,"recv":0,"send":0,"writ":0.64,"used":532.02,"free":3307.97},{"epoch":26134961,"idl":99.91,"recv":0,"send":0,"writ":0.22,"used":531.56,"free":3308.43},{"epoch":26134962,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.53,"free":3308.46},{"epoch":26134963,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":531.68,"free":3308.3},{"epoch":26134964,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.67,"free":3308.31},{"epoch":26134965,"idl":99.68,"recv":0,"send":0,"writ":0.68,"used":532.53,"free":3307.46},{"epoch":26134966,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.89,"free":3308.09},{"epoch":26134967,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":531.87,"free":3308.11},{"epoch":26134968,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.84,"free":3308.15},{"epoch":26134969,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":531.82,"free":3308.17},{"epoch":26134970,"idl":99.7,"recv":0,"send":0,"writ":0.68,"used":532.24,"free":3307.77},{"epoch":26134971,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.05,"free":3307.96},{"epoch":26134972,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.03,"free":3307.97},{"epoch":26134973,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":532.11,"free":3307.89},{"epoch":26134974,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.18,"free":3307.82},{"epoch":26134975,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":531.71,"free":3308.3},{"epoch":26134976,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":532.25,"free":3307.75},{"epoch":26134977,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":531.89,"free":3308.11},{"epoch":26134978,"idl":98.16,"recv":0,"send":0,"writ":0.14,"used":531.86,"free":3308.14},{"epoch":26134979,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":531.85,"free":3308.14},{"epoch":26134980,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":532.1,"free":3307.91},{"epoch":26134981,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":532.2,"free":3307.81},{"epoch":26134982,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.81,"free":3308.19},{"epoch":26134983,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":531.79,"free":3308.2},{"epoch":26134984,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.77,"free":3308.22},{"epoch":26134985,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":532.06,"free":3307.95},{"epoch":26134986,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":532.91,"free":3307.1},{"epoch":26134987,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":532.16,"free":3307.85},{"epoch":26134988,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.13,"free":3307.88},{"epoch":26134989,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":532.11,"free":3307.89},{"epoch":26134990,"idl":99.8,"recv":0,"send":0,"writ":0.26,"used":531.87,"free":3308.15},{"epoch":26134991,"idl":99.73,"recv":0,"send":0,"writ":0.6,"used":532.35,"free":3307.66},{"epoch":26134992,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":531.81,"free":3308.2},{"epoch":26134993,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":531.86,"free":3308.14},{"epoch":26134994,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":531.91,"free":3308.12},{"epoch":26134995,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":530.94,"free":3309.11},{"epoch":26134996,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":531.68,"free":3308.36},{"epoch":26134997,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":531.85,"free":3308.19},{"epoch":26134998,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":531.85,"free":3308.19},{"epoch":26134999,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":531.82,"free":3308.21},{"epoch":26135000,"idl":99.67,"recv":0,"send":0,"writ":0.25,"used":531.38,"free":3308.67},{"epoch":26135001,"idl":99.74,"recv":0,"send":0,"writ":0.52,"used":531.68,"free":3308.36},{"epoch":26135002,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":531.29,"free":3308.74},{"epoch":26135003,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":531.38,"free":3308.66},{"epoch":26135004,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":531.44,"free":3308.59},{"epoch":26135005,"idl":99.76,"recv":0,"send":0,"writ":0.26,"used":532.16,"free":3307.89},{"epoch":26135006,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":532.82,"free":3307.22},{"epoch":26135007,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":531.9,"free":3308.14},{"epoch":26135008,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":531.88,"free":3308.16},{"epoch":26135009,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":531.85,"free":3308.17},{"epoch":26135010,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":532.1,"free":3307.95},{"epoch":26135011,"idl":96.82,"recv":0.31,"send":0.01,"writ":64.56,"used":537.51,"free":3302.96},{"epoch":26135012,"idl":97.86,"recv":0,"send":0,"writ":195.34,"used":540.74,"free":3299.67},{"epoch":26135013,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":534.82,"free":3305.22},{"epoch":26135014,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":534.79,"free":3305.24},{"epoch":26135015,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":533.97,"free":3306.09},{"epoch":26135016,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":533.98,"free":3306.07},{"epoch":26135017,"idl":99.74,"recv":0,"send":0,"writ":0.6,"used":532.53,"free":3307.56},{"epoch":26135018,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.02,"free":3308.07},{"epoch":26135019,"idl":94.28,"recv":34.66,"send":0.06,"writ":112.48,"used":541.24,"free":3276.5},{"epoch":26135020,"idl":99.83,"recv":0,"send":0,"writ":0.4,"used":534.52,"free":3271.38},{"epoch":26135021,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":534.31,"free":3271.59},{"epoch":26135022,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":534.69,"free":3271.23},{"epoch":26135023,"idl":99.2,"recv":0,"send":0,"writ":0.14,"used":534.27,"free":3271.65},{"epoch":26135024,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":532.67,"free":3273.28},{"epoch":26135025,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":532.32,"free":3273.66},{"epoch":26135026,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.41,"free":3273.56},{"epoch":26135027,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":532.63,"free":3273.35},{"epoch":26135028,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.2,"free":3273.78},{"epoch":26135029,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.15,"free":3273.82},{"epoch":26135030,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":531.43,"free":3274.56},{"epoch":26135031,"idl":99.88,"recv":0,"send":0.01,"writ":0.19,"used":531.48,"free":3274.51},{"epoch":26135032,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":532.35,"free":3273.64},{"epoch":26135033,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":531.97,"free":3274.02},{"epoch":26135034,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.94,"free":3274.04},{"epoch":26135035,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":531,"free":3275},{"epoch":26135036,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":530.94,"free":3275.06},{"epoch":26135037,"idl":99.72,"recv":0,"send":0,"writ":0.52,"used":531.99,"free":3274},{"epoch":26135038,"idl":99.26,"recv":0,"send":0,"writ":0.2,"used":532.37,"free":3273.61},{"epoch":26135039,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.35,"free":3273.63},{"epoch":26135040,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":532.17,"free":3273.83},{"epoch":26135041,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.19,"free":3273.81},{"epoch":26135042,"idl":99.75,"recv":0,"send":0,"writ":0.42,"used":532.65,"free":3273.34},{"epoch":26135043,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":532.47,"free":3273.52},{"epoch":26135044,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.46,"free":3273.53},{"epoch":26135045,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":532.69,"free":3273.31},{"epoch":26135046,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.68,"free":3273.32},{"epoch":26135047,"idl":99.72,"recv":0,"send":0,"writ":0.52,"used":532.9,"free":3273.09},{"epoch":26135048,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":532.15,"free":3273.84},{"epoch":26135049,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":531.88,"free":3274.09},{"epoch":26135050,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":531.15,"free":3274.83},{"epoch":26135051,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":531.12,"free":3274.86},{"epoch":26135052,"idl":99.77,"recv":0,"send":0,"writ":0.38,"used":531.58,"free":3274.39},{"epoch":26135053,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":532.49,"free":3273.47},{"epoch":26135054,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":532.47,"free":3273.49},{"epoch":26135055,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":531.5,"free":3274.47},{"epoch":26135056,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":531.47,"free":3274.51},{"epoch":26135057,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":531.21,"free":3274.76},{"epoch":26135058,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":532.53,"free":3273.43},{"epoch":26135059,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":531.89,"free":3274.07},{"epoch":26135060,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":532.13,"free":3273.85},{"epoch":26135061,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.11,"free":3273.86},{"epoch":26135062,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.09,"free":3273.88},{"epoch":26135063,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":533.01,"free":3272.95},{"epoch":26135064,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":532.73,"free":3273.23},{"epoch":26135065,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":532.3,"free":3273.68},{"epoch":26135066,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":531.48,"free":3274.49},{"epoch":26135067,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":531.46,"free":3274.51},{"epoch":26135068,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":531.93,"free":3274.03},{"epoch":26135069,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.67,"free":3274.29},{"epoch":26135070,"idl":99.71,"recv":0,"send":0,"writ":0.26,"used":530.48,"free":3275.49},{"epoch":26135071,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":530.42,"free":3275.55},{"epoch":26135072,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":530.4,"free":3275.57},{"epoch":26135073,"idl":99.74,"recv":0,"send":0,"writ":0.58,"used":531.54,"free":3274.42},{"epoch":26135074,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":531.84,"free":3274.12},{"epoch":26135075,"idl":99.76,"recv":0,"send":0,"writ":0.26,"used":531.59,"free":3274.38},{"epoch":26135076,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.71,"free":3274.26},{"epoch":26135077,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.73,"free":3274.24},{"epoch":26135078,"idl":99.72,"recv":0,"send":0,"writ":0.61,"used":532.17,"free":3273.79},{"epoch":26135079,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":531.95,"free":3273.99},{"epoch":26135080,"idl":99.81,"recv":0,"send":0,"writ":0.35,"used":531.95,"free":3274.01},{"epoch":26135081,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":531.93,"free":3274.03},{"epoch":26135082,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":531.91,"free":3274.04},{"epoch":26135083,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":532.42,"free":3273.53},{"epoch":26135084,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.87,"free":3274.07},{"epoch":26135085,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":531.86,"free":3274.1},{"epoch":26135086,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":531.84,"free":3274.11},{"epoch":26135087,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":531.81,"free":3274.14},{"epoch":26135088,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":532.26,"free":3273.68},{"epoch":26135089,"idl":99.93,"recv":0,"send":0,"writ":0.46,"used":531.96,"free":3273.98},{"epoch":26135090,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":530.77,"free":3275.19},{"epoch":26135091,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":530.72,"free":3275.24},{"epoch":26135092,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":530.7,"free":3275.25},{"epoch":26135093,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":531.07,"free":3274.88},{"epoch":26135094,"idl":99.91,"recv":0,"send":0,"writ":0.38,"used":531.89,"free":3274.05},{"epoch":26135095,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":530.92,"free":3275.04},{"epoch":26135096,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":530.89,"free":3275.07},{"epoch":26135097,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":530.86,"free":3275.09},{"epoch":26135098,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":530.84,"free":3275.11},{"epoch":26135099,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":531.47,"free":3274.47},{"epoch":26135100,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":532.24,"free":3273.72},{"epoch":26135101,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.22,"free":3273.74},{"epoch":26135102,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.18,"free":3273.77},{"epoch":26135103,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.17,"free":3273.77},{"epoch":26135104,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":532.67,"free":3273.26},{"epoch":26135105,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":532.15,"free":3273.81},{"epoch":26135106,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.12,"free":3273.83},{"epoch":26135107,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.11,"free":3273.83},{"epoch":26135108,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.08,"free":3273.86},{"epoch":26135109,"idl":99.61,"recv":0,"send":0,"writ":0.71,"used":532.33,"free":3273.59},{"epoch":26135110,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":532.07,"free":3273.86},{"epoch":26135111,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.16,"free":3273.77},{"epoch":26135112,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.24,"free":3273.69},{"epoch":26135113,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.23,"free":3273.69},{"epoch":26135114,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":532.55,"free":3273.41},{"epoch":26135115,"idl":99.83,"recv":0,"send":0,"writ":0.4,"used":531.98,"free":3274.01},{"epoch":26135116,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.94,"free":3274.04},{"epoch":26135117,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":531.93,"free":3274.05},{"epoch":26135118,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":531.9,"free":3274.07},{"epoch":26135119,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":532.32,"free":3273.65},{"epoch":26135120,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":532.13,"free":3273.86},{"epoch":26135121,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":532.11,"free":3273.87},{"epoch":26135122,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.09,"free":3273.89},{"epoch":26135123,"idl":99.89,"recv":0.01,"send":0.02,"writ":0.16,"used":532.18,"free":3273.8},{"epoch":26135124,"idl":99.78,"recv":0,"send":0,"writ":0.46,"used":532.56,"free":3273.41},{"epoch":26135125,"idl":99.81,"recv":0,"send":0,"writ":0.41,"used":531.25,"free":3274.74},{"epoch":26135126,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":531.21,"free":3274.78},{"epoch":26135127,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":531.19,"free":3274.79},{"epoch":26135128,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":531.17,"free":3274.81},{"epoch":26135129,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":531.33,"free":3274.64},{"epoch":26135130,"idl":99.69,"recv":0,"send":0,"writ":0.67,"used":532.47,"free":3273.52},{"epoch":26135131,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":532.12,"free":3273.87},{"epoch":26135132,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":532.09,"free":3273.89},{"epoch":26135133,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":532.07,"free":3273.91},{"epoch":26135134,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.16,"free":3273.82},{"epoch":26135135,"idl":99.6,"recv":0,"send":0,"writ":0.68,"used":532.1,"free":3273.89},{"epoch":26135136,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.73,"free":3274.26},{"epoch":26135137,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":531.7,"free":3274.27},{"epoch":26135138,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.68,"free":3274.3},{"epoch":26135139,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":531.65,"free":3274.32},{"epoch":26135140,"idl":99.55,"recv":0,"send":0,"writ":0.7,"used":532.31,"free":3273.68},{"epoch":26135141,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.61,"free":3274.37},{"epoch":26135142,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":531.59,"free":3274.38},{"epoch":26135143,"idl":98.94,"recv":0,"send":0,"writ":0.14,"used":531.57,"free":3274.4},{"epoch":26135144,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":531.65,"free":3274.33},{"epoch":26135145,"idl":99.67,"recv":0,"send":0,"writ":0.71,"used":532.44,"free":3273.56},{"epoch":26135146,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":531.94,"free":3274.05},{"epoch":26135147,"idl":99.91,"recv":0,"send":0,"writ":0.25,"used":531.7,"free":3274.28},{"epoch":26135148,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":531.68,"free":3274.3},{"epoch":26135149,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.67,"free":3274.31},{"epoch":26135150,"idl":99.67,"recv":0,"send":0,"writ":0.61,"used":532.96,"free":3273.03},{"epoch":26135151,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":532.14,"free":3273.85},{"epoch":26135152,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.11,"free":3273.88},{"epoch":26135153,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":532.1,"free":3273.88},{"epoch":26135154,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.07,"free":3273.91},{"epoch":26135155,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":532.67,"free":3273.32},{"epoch":26135156,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":532.34,"free":3273.65},{"epoch":26135157,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":532.47,"free":3273.52},{"epoch":26135158,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.45,"free":3273.54},{"epoch":26135159,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.43,"free":3273.55},{"epoch":26135160,"idl":98.25,"recv":0,"send":0,"writ":0.73,"used":532.33,"free":3273.66},{"epoch":26135161,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":531.41,"free":3274.58},{"epoch":26135162,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":531.39,"free":3274.6},{"epoch":26135163,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.37,"free":3274.61},{"epoch":26135164,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.35,"free":3274.63},{"epoch":26135165,"idl":99.66,"recv":0,"send":0,"writ":0.71,"used":532.59,"free":3273.4},{"epoch":26135166,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":531.82,"free":3274.17},{"epoch":26135167,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":531.84,"free":3274.15},{"epoch":26135168,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":531.97,"free":3274.01},{"epoch":26135169,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":532.21,"free":3273.74},{"epoch":26135170,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":532.44,"free":3273.54},{"epoch":26135171,"idl":99.76,"recv":0,"send":0,"writ":0.6,"used":533.3,"free":3272.67},{"epoch":26135172,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":532.64,"free":3273.32},{"epoch":26135173,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":532.63,"free":3273.34},{"epoch":26135174,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":532.61,"free":3273.36},{"epoch":26135175,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":532.16,"free":3273.83},{"epoch":26135176,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":532.45,"free":3273.54},{"epoch":26135177,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":532.32,"free":3273.67},{"epoch":26135178,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.3,"free":3273.69},{"epoch":26135179,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.34,"free":3273.64},{"epoch":26135180,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":532.5,"free":3273.49},{"epoch":26135181,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":532.36,"free":3273.63},{"epoch":26135182,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":531.71,"free":3274.27},{"epoch":26135183,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":531.68,"free":3274.3},{"epoch":26135184,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":531.67,"free":3274.3},{"epoch":26135185,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":531.9,"free":3274.09},{"epoch":26135186,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":532.54,"free":3273.44},{"epoch":26135187,"idl":99.89,"recv":0,"send":0,"writ":0.12,"used":532.35,"free":3273.63},{"epoch":26135188,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.33,"free":3273.65},{"epoch":26135189,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.31,"free":3273.66},{"epoch":26135190,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":532.65,"free":3273.34},{"epoch":26135191,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":533.22,"free":3272.77},{"epoch":26135192,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":532.45,"free":3273.54},{"epoch":26135193,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.43,"free":3273.55},{"epoch":26135194,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.39,"free":3273.58},{"epoch":26135195,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":532.87,"free":3273.12},{"epoch":26135196,"idl":99.77,"recv":0,"send":0,"writ":0.42,"used":533.21,"free":3272.78},{"epoch":26135197,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":532.32,"free":3273.66},{"epoch":26135198,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.31,"free":3273.66},{"epoch":26135199,"idl":99.68,"recv":0,"send":0,"writ":0.31,"used":532.58,"free":3273.36},{"epoch":26135200,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":531.65,"free":3274.32},{"epoch":26135201,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":531.97,"free":3273.99},{"epoch":26135202,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":532.68,"free":3273.28},{"epoch":26135203,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.65,"free":3273.3},{"epoch":26135204,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.64,"free":3273.31},{"epoch":26135205,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":532.43,"free":3273.54},{"epoch":26135206,"idl":99.78,"recv":0,"send":0,"writ":0.44,"used":532.74,"free":3273.22},{"epoch":26135207,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":532.59,"free":3273.37},{"epoch":26135208,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.58,"free":3273.38},{"epoch":26135209,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":532.55,"free":3273.4},{"epoch":26135210,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":531.64,"free":3274.33},{"epoch":26135211,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":531.73,"free":3274.23},{"epoch":26135212,"idl":99.65,"recv":0,"send":0,"writ":0.61,"used":532.23,"free":3273.72},{"epoch":26135213,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.44,"free":3274.5},{"epoch":26135214,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.42,"free":3274.52},{"epoch":26135215,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":532.85,"free":3273.11},{"epoch":26135216,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":532.87,"free":3273.09},{"epoch":26135217,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":533.14,"free":3272.81},{"epoch":26135218,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.58,"free":3273.37},{"epoch":26135219,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":532.57,"free":3273.37},{"epoch":26135220,"idl":88.66,"recv":0,"send":0,"writ":163.74,"used":553.7,"free":3252.63},{"epoch":26135221,"idl":99.89,"recv":0,"send":0,"writ":33.54,"used":533.71,"free":3303.03},{"epoch":26135222,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":534.39,"free":3302.37},{"epoch":26135223,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":534.35,"free":3302.41},{"epoch":26135224,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":534.33,"free":3302.43},{"epoch":26135225,"idl":99.75,"recv":0,"send":0.01,"writ":0.34,"used":534.33,"free":3302.44},{"epoch":26135226,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":531.99,"free":3304.83},{"epoch":26135227,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":531.74,"free":3305.08},{"epoch":26135228,"idl":99.93,"recv":0,"send":0.01,"writ":0.15,"used":531.04,"free":3305.77},{"epoch":26135229,"idl":99.72,"recv":0,"send":0.01,"writ":0.29,"used":532.22,"free":3304.57},{"epoch":26135230,"idl":99.81,"recv":0,"send":0,"writ":0.26,"used":531.81,"free":3305.01},{"epoch":26135231,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":531.91,"free":3304.92},{"epoch":26135232,"idl":99.77,"recv":0,"send":0,"writ":0.48,"used":532.78,"free":3304.04},{"epoch":26135233,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":532.34,"free":3304.46},{"epoch":26135234,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.33,"free":3304.49},{"epoch":26135235,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":532.09,"free":3304.75},{"epoch":26135236,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.07,"free":3304.77},{"epoch":26135237,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":532.34,"free":3304.49},{"epoch":26135238,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":532.02,"free":3304.8},{"epoch":26135239,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":532.01,"free":3304.81},{"epoch":26135240,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":530.82,"free":3306.01},{"epoch":26135241,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":530.75,"free":3306.08},{"epoch":26135242,"idl":99.76,"recv":0,"send":0,"writ":0.44,"used":531.11,"free":3305.71},{"epoch":26135243,"idl":99.88,"recv":0,"send":0.02,"writ":0.34,"used":531.1,"free":3305.72},{"epoch":26135244,"idl":99.93,"recv":0.01,"send":0.37,"writ":0.22,"used":531.05,"free":3305.77},{"epoch":26135245,"idl":98.72,"recv":0,"send":0,"writ":15.64,"used":533.4,"free":3303.92},{"epoch":26135246,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":531.76,"free":3305.09},{"epoch":26135247,"idl":99.77,"recv":0,"send":0,"writ":0.39,"used":532.13,"free":3304.72},{"epoch":26135248,"idl":99.94,"recv":0,"send":0,"writ":0.38,"used":532.34,"free":3304.5},{"epoch":26135249,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":532.4,"free":3304.44},{"epoch":26135250,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":532.16,"free":3304.69},{"epoch":26135251,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":532.13,"free":3304.72},{"epoch":26135252,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":532.11,"free":3304.74},{"epoch":26135253,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":532.74,"free":3304.11},{"epoch":26135254,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":532.06,"free":3304.78},{"epoch":26135255,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":532.06,"free":3304.8},{"epoch":26135256,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":532.02,"free":3304.83},{"epoch":26135257,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.05,"free":3304.82},{"epoch":26135258,"idl":99.77,"recv":0,"send":0,"writ":0.53,"used":532.52,"free":3304.34},{"epoch":26135259,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":532.39,"free":3304.45},{"epoch":26135260,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":531.1,"free":3305.75},{"epoch":26135261,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":530.89,"free":3305.96},{"epoch":26135262,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":530.86,"free":3305.98},{"epoch":26135263,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":531.88,"free":3304.95},{"epoch":26135264,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.04,"free":3304.79},{"epoch":26135265,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":532.28,"free":3304.57},{"epoch":26135266,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.25,"free":3304.59},{"epoch":26135267,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.27,"free":3304.57},{"epoch":26135268,"idl":99.76,"recv":0,"send":0,"writ":0.52,"used":532.07,"free":3304.76},{"epoch":26135269,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":531.15,"free":3305.68},{"epoch":26135270,"idl":99.83,"recv":0,"send":0,"writ":0.38,"used":531.87,"free":3304.97},{"epoch":26135271,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":531.87,"free":3304.97},{"epoch":26135272,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.85,"free":3304.99},{"epoch":26135273,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":532.69,"free":3304.15},{"epoch":26135274,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.3,"free":3304.53},{"epoch":26135275,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":532.07,"free":3304.78},{"epoch":26135276,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.03,"free":3304.81},{"epoch":26135277,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.02,"free":3304.82},{"epoch":26135278,"idl":99.74,"recv":0,"send":0,"writ":0.41,"used":532.39,"free":3304.45},{"epoch":26135279,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":532.25,"free":3304.57},{"epoch":26135280,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":532.17,"free":3304.68},{"epoch":26135281,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.13,"free":3304.71},{"epoch":26135282,"idl":98.98,"recv":0,"send":0,"writ":0.15,"used":532.12,"free":3304.72},{"epoch":26135283,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":532.46,"free":3304.38},{"epoch":26135284,"idl":99.88,"recv":0,"send":0,"writ":0.4,"used":532.32,"free":3304.51},{"epoch":26135285,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":532.33,"free":3304.51},{"epoch":26135286,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.3,"free":3304.54},{"epoch":26135287,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.28,"free":3304.56},{"epoch":26135288,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":532.61,"free":3304.23},{"epoch":26135289,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":531.98,"free":3304.82},{"epoch":26135290,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":531.27,"free":3305.55},{"epoch":26135291,"idl":99.82,"recv":0,"send":0.02,"writ":0.18,"used":531.35,"free":3305.46},{"epoch":26135292,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":531.35,"free":3305.47},{"epoch":26135293,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":531.33,"free":3305.48},{"epoch":26135294,"idl":99.6,"recv":0,"send":0,"writ":0.54,"used":532.27,"free":3304.53},{"epoch":26135295,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":532.51,"free":3304.31},{"epoch":26135296,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":532.52,"free":3304.3},{"epoch":26135297,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":532.5,"free":3304.32},{"epoch":26135298,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":532.48,"free":3304.33},{"epoch":26135299,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":532.67,"free":3304.13},{"epoch":26135300,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":532.01,"free":3304.81},{"epoch":26135301,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.13,"free":3304.68},{"epoch":26135302,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":532.1,"free":3304.7},{"epoch":26135303,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":532.07,"free":3304.73},{"epoch":26135304,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":532.58,"free":3304.22},{"epoch":26135305,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":532.3,"free":3304.51},{"epoch":26135306,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":532.29,"free":3304.52},{"epoch":26135307,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.26,"free":3304.55},{"epoch":26135308,"idl":99.85,"recv":0,"send":0.01,"writ":0.16,"used":532.24,"free":3304.56},{"epoch":26135309,"idl":99.77,"recv":0,"send":0,"writ":0.48,"used":532.69,"free":3304.11},{"epoch":26135310,"idl":99.73,"recv":0,"send":0.01,"writ":0.42,"used":532.12,"free":3304.69},{"epoch":26135311,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":532.14,"free":3304.67},{"epoch":26135312,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.12,"free":3304.69},{"epoch":26135313,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":532.1,"free":3304.7},{"epoch":26135314,"idl":99.63,"recv":0,"send":0,"writ":0.5,"used":532.84,"free":3303.96},{"epoch":26135315,"idl":99.74,"recv":0,"send":0,"writ":0.38,"used":531.6,"free":3305.21},{"epoch":26135316,"idl":99.84,"recv":0,"send":0,"writ":0.12,"used":531.57,"free":3305.24},{"epoch":26135317,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":531.55,"free":3305.25},{"epoch":26135318,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":531.54,"free":3305.26},{"epoch":26135319,"idl":99.48,"recv":0,"send":0,"writ":0.56,"used":532.71,"free":3304.07},{"epoch":26135320,"idl":99.74,"recv":0,"send":0,"writ":0.45,"used":532.01,"free":3304.79},{"epoch":26135321,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":531.73,"free":3305.05},{"epoch":26135322,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":531.78,"free":3305},{"epoch":26135323,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":531.88,"free":3304.9},{"epoch":26135324,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":532.22,"free":3304.55},{"epoch":26135325,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":532.59,"free":3304.2},{"epoch":26135326,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":532.59,"free":3304.2},{"epoch":26135327,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.56,"free":3304.22},{"epoch":26135328,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":532.55,"free":3304.23},{"epoch":26135329,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":532.87,"free":3303.9},{"epoch":26135330,"idl":99.7,"recv":0,"send":0,"writ":0.49,"used":531.34,"free":3305.44},{"epoch":26135331,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":531.27,"free":3305.51},{"epoch":26135332,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":531.26,"free":3305.52},{"epoch":26135333,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":531.24,"free":3305.53},{"epoch":26135334,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":531.22,"free":3305.55},{"epoch":26135335,"idl":99.59,"recv":0,"send":0,"writ":0.71,"used":532.89,"free":3303.9},{"epoch":26135336,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":532.61,"free":3304.18},{"epoch":26135337,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":532.59,"free":3304.19},{"epoch":26135338,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":532.57,"free":3304.21},{"epoch":26135339,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":532.55,"free":3304.22},{"epoch":26135340,"idl":99.56,"recv":0,"send":0,"writ":0.69,"used":532.88,"free":3303.91},{"epoch":26135341,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":532.52,"free":3304.26},{"epoch":26135342,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":532.49,"free":3304.29},{"epoch":26135343,"idl":98.4,"recv":0,"send":0,"writ":0.15,"used":532.49,"free":3304.29},{"epoch":26135344,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.45,"free":3304.31},{"epoch":26135345,"idl":99.56,"recv":0,"send":0,"writ":0.62,"used":532.74,"free":3304.04},{"epoch":26135346,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":532.28,"free":3304.5},{"epoch":26135347,"idl":99.72,"recv":0.04,"send":0.03,"writ":0.18,"used":532.3,"free":3304.46},{"epoch":26135348,"idl":99.8,"recv":0.08,"send":0.04,"writ":0.16,"used":532.26,"free":3304.5},{"epoch":26135349,"idl":99.62,"recv":0.06,"send":0.04,"writ":0.29,"used":532.54,"free":3304.19},{"epoch":26135350,"idl":99.58,"recv":0.06,"send":0.04,"writ":0.62,"used":533.29,"free":3303.46},{"epoch":26135351,"idl":99.7,"recv":0.07,"send":0.04,"writ":0.33,"used":532.75,"free":3303.99},{"epoch":26135352,"idl":99.69,"recv":0.06,"send":0.04,"writ":0.16,"used":532.76,"free":3303.97},{"epoch":26135353,"idl":99.79,"recv":0.02,"send":0.02,"writ":0.14,"used":532.71,"free":3304.02},{"epoch":26135354,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.16,"used":532.77,"free":3303.95},{"epoch":26135355,"idl":99.53,"recv":0,"send":0,"writ":0.7,"used":533.03,"free":3303.71},{"epoch":26135356,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":532.5,"free":3304.25},{"epoch":26135357,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":532.48,"free":3304.26},{"epoch":26135358,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":532.45,"free":3304.28},{"epoch":26135359,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.43,"free":3304.29},{"epoch":26135360,"idl":99.52,"recv":0,"send":0,"writ":0.6,"used":532.04,"free":3304.7},{"epoch":26135361,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":532.71,"free":3304.03},{"epoch":26135362,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.83,"free":3303.92},{"epoch":26135363,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":532.81,"free":3303.94},{"epoch":26135364,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":532.79,"free":3303.95},{"epoch":26135365,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":532.56,"free":3304.2},{"epoch":26135366,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":532.38,"free":3304.38},{"epoch":26135367,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":531.76,"free":3304.99},{"epoch":26135368,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":531.72,"free":3305.02},{"epoch":26135369,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":531.7,"free":3305.06},{"epoch":26135370,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":532.92,"free":3303.86},{"epoch":26135371,"idl":99.68,"recv":0,"send":0,"writ":0.52,"used":533.1,"free":3303.67},{"epoch":26135372,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":532.83,"free":3303.94},{"epoch":26135373,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":532.81,"free":3303.96},{"epoch":26135374,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.78,"free":3303.98},{"epoch":26135375,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":532.13,"free":3304.65},{"epoch":26135376,"idl":94.91,"recv":0.28,"send":0.01,"writ":259.57,"used":547.26,"free":3290.98},{"epoch":26135377,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":534.44,"free":3302.27},{"epoch":26135378,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":534.42,"free":3302.28},{"epoch":26135379,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":534.4,"free":3302.27},{"epoch":26135380,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":534.39,"free":3302.3},{"epoch":26135381,"idl":99.65,"recv":0,"send":0,"writ":0.63,"used":533.03,"free":3303.7},{"epoch":26135382,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":531.87,"free":3304.87},{"epoch":26135383,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":531.85,"free":3304.89},{"epoch":26135384,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":531.83,"free":3304.92},{"epoch":26135385,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":532.32,"free":3304.45},{"epoch":26135386,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":532.39,"free":3304.38},{"epoch":26135387,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":531.05,"free":3305.72},{"epoch":26135388,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":531.02,"free":3305.75},{"epoch":26135389,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":531.01,"free":3305.76},{"epoch":26135390,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":531.97,"free":3304.81},{"epoch":26135391,"idl":99.6,"recv":0,"send":0,"writ":0.56,"used":532.1,"free":3304.67},{"epoch":26135392,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":531.26,"free":3305.51},{"epoch":26135393,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":531.38,"free":3305.39},{"epoch":26135394,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":531.36,"free":3305.41},{"epoch":26135395,"idl":99.65,"recv":0,"send":0,"writ":0.29,"used":530.46,"free":3306.32},{"epoch":26135396,"idl":99.65,"recv":0,"send":0,"writ":0.41,"used":531.14,"free":3305.64},{"epoch":26135397,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":531.79,"free":3304.98},{"epoch":26135398,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":531.77,"free":3304.99},{"epoch":26135399,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":531.75,"free":3305.01},{"epoch":26135400,"idl":99.68,"recv":0,"send":0,"writ":0.34,"used":531.52,"free":3305.26},{"epoch":26135401,"idl":99.61,"recv":0,"send":0,"writ":0.46,"used":531.89,"free":3304.88},{"epoch":26135402,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":531.72,"free":3305.06},{"epoch":26135403,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":531.76,"free":3305.01},{"epoch":26135404,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":531.85,"free":3304.91},{"epoch":26135405,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":532.11,"free":3304.7},{"epoch":26135406,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":532.09,"free":3304.72},{"epoch":26135407,"idl":99.62,"recv":0,"send":0,"writ":0.55,"used":532.77,"free":3304.04},{"epoch":26135408,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":532.05,"free":3304.75},{"epoch":26135409,"idl":99.66,"recv":0,"send":0,"writ":0.34,"used":532.27,"free":3304.5},{"epoch":26135410,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":531.07,"free":3305.73},{"epoch":26135411,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":531.03,"free":3305.76},{"epoch":26135412,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":532.32,"free":3304.47},{"epoch":26135413,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":532.21,"free":3304.57},{"epoch":26135414,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":532.19,"free":3304.59},{"epoch":26135415,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":531.78,"free":3305.02},{"epoch":26135416,"idl":99.77,"recv":0,"send":0,"writ":0.17,"used":531.9,"free":3304.9},{"epoch":26135417,"idl":99.62,"recv":0,"send":0,"writ":0.6,"used":532.45,"free":3304.33},{"epoch":26135418,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":532.34,"free":3304.44},{"epoch":26135419,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":532.33,"free":3304.44},{"epoch":26135420,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":532.09,"free":3304.71},{"epoch":26135421,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":532.07,"free":3304.72},{"epoch":26135422,"idl":99.65,"recv":0,"send":0,"writ":0.53,"used":532.39,"free":3304.4},{"epoch":26135423,"idl":99.81,"recv":0,"send":0.01,"writ":0.16,"used":532.01,"free":3304.77},{"epoch":26135424,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":531.97,"free":3304.81},{"epoch":26135425,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":531.74,"free":3305.05},{"epoch":26135426,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":531.81,"free":3304.98},{"epoch":26135427,"idl":99.66,"recv":0,"send":0,"writ":0.49,"used":532.76,"free":3304.02},{"epoch":26135428,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":532.36,"free":3304.43},{"epoch":26135429,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":532.33,"free":3304.45},{"epoch":26135430,"idl":99.7,"recv":0,"send":0,"writ":0.28,"used":530.88,"free":3305.92},{"epoch":26135431,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":530.84,"free":3305.95},{"epoch":26135432,"idl":99.65,"recv":0,"send":0,"writ":0.39,"used":531.6,"free":3305.19},{"epoch":26135433,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":531.78,"free":3305},{"epoch":26135434,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":531.75,"free":3305.02},{"epoch":26135435,"idl":99.6,"recv":0,"send":0,"writ":0.31,"used":531.05,"free":3305.74},{"epoch":26135436,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":530.99,"free":3305.79},{"epoch":26135437,"idl":99.63,"recv":0,"send":0,"writ":0.36,"used":531.46,"free":3305.32},{"epoch":26135438,"idl":99.82,"recv":0,"send":0,"writ":0.35,"used":532.29,"free":3304.49},{"epoch":26135439,"idl":99.58,"recv":0,"send":0,"writ":0.31,"used":532.36,"free":3304.4},{"epoch":26135440,"idl":99.63,"recv":0,"send":0,"writ":0.3,"used":531.64,"free":3305.13},{"epoch":26135441,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":531.61,"free":3305.17},{"epoch":26135442,"idl":99.72,"recv":0,"send":0,"writ":0.39,"used":531.98,"free":3304.79},{"epoch":26135443,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":532.05,"free":3304.71},{"epoch":26135444,"idl":99.81,"recv":0,"send":0.03,"writ":0.17,"used":532,"free":3304.78},{"epoch":26135445,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":531.98,"free":3304.82},{"epoch":26135446,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":531.97,"free":3304.83},{"epoch":26135447,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":532.04,"free":3304.76},{"epoch":26135448,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":532.71,"free":3304.09},{"epoch":26135449,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":532.34,"free":3304.45},{"epoch":26135450,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":532.35,"free":3304.45},{"epoch":26135451,"idl":99.79,"recv":0,"send":0,"writ":0.13,"used":532.31,"free":3304.48},{"epoch":26135452,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.3,"free":3304.49},{"epoch":26135453,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":532.81,"free":3303.98},{"epoch":26135454,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":532.26,"free":3304.52},{"epoch":26135455,"idl":99.7,"recv":0,"send":0,"writ":0.33,"used":532.26,"free":3304.54},{"epoch":26135456,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":532.24,"free":3304.56},{"epoch":26135457,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":532.22,"free":3304.58},{"epoch":26135458,"idl":99.68,"recv":0,"send":0,"writ":0.4,"used":532.69,"free":3304.1},{"epoch":26135459,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":532.52,"free":3304.27},{"epoch":26135460,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":532.6,"free":3304.21},{"epoch":26135461,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":532.58,"free":3304.21},{"epoch":26135462,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":532.56,"free":3304.24},{"epoch":26135463,"idl":99.66,"recv":0,"send":0,"writ":0.41,"used":532.8,"free":3303.99},{"epoch":26135464,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":532.27,"free":3304.52},{"epoch":26135465,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":531.57,"free":3305.24},{"epoch":26135466,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":531.51,"free":3305.29},{"epoch":26135467,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":531.5,"free":3305.29},{"epoch":26135468,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":532.23,"free":3304.56},{"epoch":26135469,"idl":99.68,"recv":0,"send":0,"writ":0.35,"used":532.44,"free":3304.33},{"epoch":26135470,"idl":99.71,"recv":0,"send":0,"writ":0.28,"used":531.54,"free":3305.24},{"epoch":26135471,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":531.62,"free":3305.16},{"epoch":26135472,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":531.59,"free":3305.18},{"epoch":26135473,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":532.51,"free":3304.26},{"epoch":26135474,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.53,"free":3304.23},{"epoch":26135475,"idl":99.69,"recv":0,"send":0,"writ":0.36,"used":532.3,"free":3304.48},{"epoch":26135476,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":532.27,"free":3304.51},{"epoch":26135477,"idl":99.86,"recv":0,"send":0,"writ":0.22,"used":532,"free":3304.77},{"epoch":26135478,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":532.46,"free":3304.31},{"epoch":26135479,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":532.45,"free":3304.32},{"epoch":26135480,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":532.45,"free":3304.33},{"epoch":26135481,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.43,"free":3304.35},{"epoch":26135482,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":532.58,"free":3304.19},{"epoch":26135483,"idl":99.9,"recv":0,"send":0.01,"writ":0.16,"used":532.56,"free":3304.21},{"epoch":26135484,"idl":99.74,"recv":0,"send":0,"writ":0.53,"used":533.11,"free":3303.66},{"epoch":26135485,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":532.55,"free":3304.23},{"epoch":26135486,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":532.53,"free":3304.25},{"epoch":26135487,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.51,"free":3304.26},{"epoch":26135488,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.49,"free":3304.29},{"epoch":26135489,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":533.05,"free":3303.72},{"epoch":26135490,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":532.71,"free":3304.07},{"epoch":26135491,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":532.69,"free":3304.09},{"epoch":26135492,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.77,"free":3304},{"epoch":26135493,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.86,"free":3303.91},{"epoch":26135494,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":533.37,"free":3303.39},{"epoch":26135495,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":532.59,"free":3304.19},{"epoch":26135496,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.58,"free":3304.2},{"epoch":26135497,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.55,"free":3304.22},{"epoch":26135498,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.55,"free":3304.22},{"epoch":26135499,"idl":99.61,"recv":0,"send":0,"writ":0.76,"used":533.03,"free":3303.71},{"epoch":26135500,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":532.04,"free":3304.72},{"epoch":26135501,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":531.99,"free":3304.76},{"epoch":26135502,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.97,"free":3304.78},{"epoch":26135503,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":531.95,"free":3304.79},{"epoch":26135504,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":532.6,"free":3304.15},{"epoch":26135505,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":532.61,"free":3304.16},{"epoch":26135506,"idl":99.3,"recv":0.01,"send":0.01,"writ":0.14,"used":532.59,"free":3304.19},{"epoch":26135507,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":532.47,"free":3304.29},{"epoch":26135508,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":532.45,"free":3304.31},{"epoch":26135509,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":532.81,"free":3303.95},{"epoch":26135510,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":532.6,"free":3304.17},{"epoch":26135511,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.58,"free":3304.18},{"epoch":26135512,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":532.56,"free":3304.21},{"epoch":26135513,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.53,"free":3304.23},{"epoch":26135514,"idl":99.75,"recv":0,"send":0,"writ":0.53,"used":533.27,"free":3303.48},{"epoch":26135515,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":532.77,"free":3304.01},{"epoch":26135516,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":532.75,"free":3304.02},{"epoch":26135517,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":532.72,"free":3304.04},{"epoch":26135518,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.71,"free":3304.05},{"epoch":26135519,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":533.03,"free":3303.73},{"epoch":26135520,"idl":99.84,"recv":0,"send":0,"writ":0.52,"used":532.69,"free":3304.08},{"epoch":26135521,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":532.75,"free":3304.01},{"epoch":26135522,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.82,"free":3303.94},{"epoch":26135523,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.8,"free":3303.95},{"epoch":26135524,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":533.13,"free":3303.62},{"epoch":26135525,"idl":99.81,"recv":0,"send":0,"writ":0.52,"used":532.53,"free":3304.23},{"epoch":26135526,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.5,"free":3304.26},{"epoch":26135527,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.49,"free":3304.27},{"epoch":26135528,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.46,"free":3304.29},{"epoch":26135529,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":532.45,"free":3304.28},{"epoch":26135530,"idl":99.68,"recv":0,"send":0,"writ":0.67,"used":532.48,"free":3304.27},{"epoch":26135531,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.18,"free":3304.56},{"epoch":26135532,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.2,"free":3304.53},{"epoch":26135533,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.32,"free":3304.41},{"epoch":26135534,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":532.3,"free":3304.44},{"epoch":26135535,"idl":99.7,"recv":0,"send":0,"writ":0.71,"used":532.38,"free":3304.38},{"epoch":26135536,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":531.53,"free":3305.22},{"epoch":26135537,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":531.74,"free":3305},{"epoch":26135538,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":531.73,"free":3305.01},{"epoch":26135539,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":531.71,"free":3305.03},{"epoch":26135540,"idl":99.53,"recv":0,"send":0,"writ":0.75,"used":532,"free":3304.75},{"epoch":26135541,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":532.18,"free":3304.57},{"epoch":26135542,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":532.15,"free":3304.6},{"epoch":26135543,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":532.21,"free":3304.53},{"epoch":26135544,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":532.31,"free":3304.43},{"epoch":26135545,"idl":99.67,"recv":0,"send":0,"writ":0.72,"used":532.32,"free":3304.44},{"epoch":26135546,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":532.03,"free":3304.72},{"epoch":26135547,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":532.01,"free":3304.74},{"epoch":26135548,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":531.99,"free":3304.75},{"epoch":26135549,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":531.97,"free":3304.77},{"epoch":26135550,"idl":99.62,"recv":0,"send":0,"writ":0.71,"used":531.78,"free":3304.97},{"epoch":26135551,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":531.71,"free":3305.04},{"epoch":26135552,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":531.69,"free":3305.06},{"epoch":26135553,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":531.67,"free":3305.07},{"epoch":26135554,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":531.65,"free":3305.09},{"epoch":26135555,"idl":99.59,"recv":0,"send":0,"writ":0.58,"used":532.88,"free":3303.88},{"epoch":26135556,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":532.31,"free":3304.45},{"epoch":26135557,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":532.29,"free":3304.46},{"epoch":26135558,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.26,"free":3304.48},{"epoch":26135559,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":531.74,"free":3304.98},{"epoch":26135560,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":531.74,"free":3305},{"epoch":26135561,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":532.05,"free":3304.66},{"epoch":26135562,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":531.69,"free":3305.02},{"epoch":26135563,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":531.66,"free":3305.05},{"epoch":26135564,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":531.65,"free":3305.07},{"epoch":26135565,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":531.66,"free":3305.08},{"epoch":26135566,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":532.3,"free":3304.43},{"epoch":26135567,"idl":99.44,"recv":0,"send":0,"writ":0.16,"used":532.07,"free":3304.66},{"epoch":26135568,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":532.05,"free":3304.68},{"epoch":26135569,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":532.03,"free":3304.69},{"epoch":26135570,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":531.3,"free":3305.43},{"epoch":26135571,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":532.45,"free":3304.28},{"epoch":26135572,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":532.24,"free":3304.48},{"epoch":26135573,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":532.22,"free":3304.51},{"epoch":26135574,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":532.2,"free":3304.52},{"epoch":26135575,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":532.45,"free":3304.29},{"epoch":26135576,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":532.45,"free":3304.29},{"epoch":26135577,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":531.91,"free":3304.82},{"epoch":26135578,"idl":99.9,"recv":0,"send":0.01,"writ":0.18,"used":531.98,"free":3304.75},{"epoch":26135579,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":532.03,"free":3304.69},{"epoch":26135580,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":532.11,"free":3304.63},{"epoch":26135581,"idl":99.69,"recv":0,"send":0,"writ":0.48,"used":532.8,"free":3303.94},{"epoch":26135582,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":532.23,"free":3304.5},{"epoch":26135583,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.22,"free":3304.51},{"epoch":26135584,"idl":99.49,"recv":0,"send":0,"writ":0.17,"used":532.18,"free":3304.54},{"epoch":26135585,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":531.25,"free":3305.48},{"epoch":26135586,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":531.69,"free":3305.04},{"epoch":26135587,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":531.66,"free":3305.07},{"epoch":26135588,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":531.72,"free":3305},{"epoch":26135589,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":532.33,"free":3304.37},{"epoch":26135590,"idl":99.82,"recv":0,"send":0,"writ":0.26,"used":531.35,"free":3305.37},{"epoch":26135591,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":531.96,"free":3304.75},{"epoch":26135592,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":532.25,"free":3304.45},{"epoch":26135593,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.25,"free":3304.47},{"epoch":26135594,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":532.21,"free":3304.52},{"epoch":26135595,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":531.99,"free":3304.77},{"epoch":26135596,"idl":99.74,"recv":0,"send":0,"writ":0.43,"used":532.38,"free":3304.37},{"epoch":26135597,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":532.43,"free":3304.32},{"epoch":26135598,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.4,"free":3304.34},{"epoch":26135599,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.38,"free":3304.36},{"epoch":26135600,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":532.24,"free":3304.51},{"epoch":26135601,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.31,"free":3304.44},{"epoch":26135602,"idl":99.69,"recv":0,"send":0,"writ":0.52,"used":532.39,"free":3304.35},{"epoch":26135603,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":532.02,"free":3304.72},{"epoch":26135604,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532,"free":3304.74},{"epoch":26135605,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":532.48,"free":3304.27},{"epoch":26135606,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.47,"free":3304.28},{"epoch":26135607,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":532.91,"free":3303.84},{"epoch":26135608,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":532.19,"free":3304.55},{"epoch":26135609,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.16,"free":3304.57},{"epoch":26135610,"idl":99.83,"recv":0,"send":0,"writ":0.38,"used":531.67,"free":3305.08},{"epoch":26135611,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":531.73,"free":3305.01},{"epoch":26135612,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":532.89,"free":3303.85},{"epoch":26135613,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.77,"free":3303.97},{"epoch":26135614,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.75,"free":3303.98},{"epoch":26135615,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":531.54,"free":3305.21},{"epoch":26135616,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.5,"free":3305.25},{"epoch":26135617,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":531.92,"free":3304.82},{"epoch":26135618,"idl":99.89,"recv":0,"send":0,"writ":0.23,"used":531.69,"free":3305.05},{"epoch":26135619,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":532.37,"free":3304.33},{"epoch":26135620,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":532.17,"free":3304.56},{"epoch":26135621,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":531.64,"free":3305.08},{"epoch":26135622,"idl":99.76,"recv":0,"send":0,"writ":0.48,"used":532.16,"free":3304.55},{"epoch":26135623,"idl":99.94,"recv":0,"send":0,"writ":0.36,"used":532.29,"free":3304.42},{"epoch":26135624,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.26,"free":3304.45},{"epoch":26135625,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":531.8,"free":3304.93},{"epoch":26135626,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":531.75,"free":3304.97},{"epoch":26135627,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":532.42,"free":3304.29},{"epoch":26135628,"idl":99.91,"recv":0,"send":0,"writ":0.34,"used":532.2,"free":3304.51},{"epoch":26135629,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":532.19,"free":3304.52},{"epoch":26135630,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":532.18,"free":3304.54},{"epoch":26135631,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.17,"free":3304.55},{"epoch":26135632,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":532.14,"free":3304.58},{"epoch":26135633,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":532.7,"free":3304.01},{"epoch":26135634,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.44,"free":3304.27},{"epoch":26135635,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":532.53,"free":3304.19},{"epoch":26135636,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":532.52,"free":3304.2},{"epoch":26135637,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.5,"free":3304.22},{"epoch":26135638,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":532.83,"free":3303.88},{"epoch":26135639,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.46,"free":3304.25},{"epoch":26135640,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":531.74,"free":3304.99},{"epoch":26135641,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":531.69,"free":3305.03},{"epoch":26135642,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":531.68,"free":3305.04},{"epoch":26135643,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":532.77,"free":3303.94},{"epoch":26135644,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.62,"free":3304.09},{"epoch":26135645,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":532.37,"free":3304.35},{"epoch":26135646,"idl":99.89,"recv":0,"send":0.03,"writ":0.17,"used":532.45,"free":3304.26},{"epoch":26135647,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":532.51,"free":3304.2},{"epoch":26135648,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":532.81,"free":3303.89},{"epoch":26135649,"idl":99.76,"recv":0.04,"send":1.58,"writ":0.38,"used":531.98,"free":3304.7},{"epoch":26135650,"idl":99.81,"recv":0,"send":0.03,"writ":0.48,"used":532.26,"free":3304.41},{"epoch":26135651,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.23,"free":3304.44},{"epoch":26135652,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":532.21,"free":3304.45},{"epoch":26135653,"idl":99.74,"recv":0,"send":0,"writ":0.52,"used":532.66,"free":3304},{"epoch":26135654,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":532.41,"free":3304.24},{"epoch":26135655,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":531.92,"free":3304.75},{"epoch":26135656,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":531.89,"free":3304.78},{"epoch":26135657,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":531.87,"free":3304.79},{"epoch":26135658,"idl":99.76,"recv":0,"send":0,"writ":0.43,"used":532.44,"free":3304.22},{"epoch":26135659,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":532.46,"free":3304.2},{"epoch":26135660,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":532.85,"free":3303.82},{"epoch":26135661,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.76,"free":3303.9},{"epoch":26135662,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":532.73,"free":3303.93},{"epoch":26135663,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":533.08,"free":3303.58},{"epoch":26135664,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":532.7,"free":3303.96},{"epoch":26135665,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":531.28,"free":3305.39},{"epoch":26135666,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.2,"free":3305.47},{"epoch":26135667,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.2,"free":3305.47},{"epoch":26135668,"idl":99.75,"recv":0,"send":0,"writ":0.4,"used":531.82,"free":3304.85},{"epoch":26135669,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":531.89,"free":3304.77},{"epoch":26135670,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":532.65,"free":3304.03},{"epoch":26135671,"idl":99.91,"recv":0.01,"send":0.05,"writ":0.17,"used":532.78,"free":3303.89},{"epoch":26135672,"idl":99.86,"recv":0.06,"send":2.11,"writ":0.39,"used":532.73,"free":3303.92},{"epoch":26135673,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.68,"free":3303.96},{"epoch":26135674,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":533.02,"free":3303.62},{"epoch":26135675,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":532.67,"free":3303.99},{"epoch":26135676,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.64,"free":3304.01},{"epoch":26135677,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":532.62,"free":3304.02},{"epoch":26135678,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":532.6,"free":3304.04},{"epoch":26135679,"idl":99.68,"recv":0,"send":0,"writ":0.7,"used":533.29,"free":3303.33},{"epoch":26135680,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":532.04,"free":3304.61},{"epoch":26135681,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":531.75,"free":3304.9},{"epoch":26135682,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.73,"free":3304.91},{"epoch":26135683,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.7,"free":3304.94},{"epoch":26135684,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":532.11,"free":3304.52},{"epoch":26135685,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":532.18,"free":3304.47},{"epoch":26135686,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.16,"free":3304.48},{"epoch":26135687,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":532.14,"free":3304.51},{"epoch":26135688,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.12,"free":3304.52},{"epoch":26135689,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":532.72,"free":3303.91},{"epoch":26135690,"idl":99.82,"recv":0.02,"send":1.05,"writ":0.34,"used":531.8,"free":3304.84},{"epoch":26135691,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.75,"free":3304.88},{"epoch":26135692,"idl":99.68,"recv":0.26,"send":1.23,"writ":1.5,"used":532.44,"free":3304.12},{"epoch":26135693,"idl":99.48,"recv":1.82,"send":60.53,"writ":0.84,"used":532.71,"free":3303.84},{"epoch":26135694,"idl":99.42,"recv":1.29,"send":39.86,"writ":1.22,"used":533.46,"free":3303.08},{"epoch":26135695,"idl":99.32,"recv":1.89,"send":61.46,"writ":1.23,"used":534.22,"free":3302.31},{"epoch":26135696,"idl":99.28,"recv":32.18,"send":30.93,"writ":0.64,"used":534.15,"free":3299.76},{"epoch":26135697,"idl":98.11,"recv":113.84,"send":78.64,"writ":115.2,"used":533.94,"free":3196.64},{"epoch":26135698,"idl":99.58,"recv":1.79,"send":61.71,"writ":22.34,"used":533.76,"free":3162.47},{"epoch":26135699,"idl":99.73,"recv":0.12,"send":0.21,"writ":0.76,"used":534.28,"free":3161.7},{"epoch":26135700,"idl":99.73,"recv":0.03,"send":0.07,"writ":0.4,"used":534.17,"free":3161.82},{"epoch":26135701,"idl":80.05,"recv":0.02,"send":0.03,"writ":6.98,"used":741.82,"free":2953.76},{"epoch":26135702,"idl":99.9,"recv":0.06,"send":2.29,"writ":0.32,"used":534.65,"free":3160.84},{"epoch":26135703,"idl":99.79,"recv":0.32,"send":15.05,"writ":0.29,"used":534.88,"free":3160.57},{"epoch":26135704,"idl":99.77,"recv":0,"send":0,"writ":0.63,"used":536.18,"free":3159.26},{"epoch":26135705,"idl":99.79,"recv":0.01,"send":0.26,"writ":0.39,"used":536.69,"free":3158.77},{"epoch":26135706,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":536.74,"free":3158.72},{"epoch":26135707,"idl":99.85,"recv":0.01,"send":0.26,"writ":0.23,"used":536.7,"free":3158.76},{"epoch":26135708,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":536.71,"free":3158.74},{"epoch":26135709,"idl":99.6,"recv":0,"send":0,"writ":0.55,"used":537.5,"free":3157.9},{"epoch":26135710,"idl":99.76,"recv":0,"send":0,"writ":0.45,"used":536.21,"free":3159.22},{"epoch":26135711,"idl":99.88,"recv":0.02,"send":0.7,"writ":0.28,"used":536.16,"free":3159.26},{"epoch":26135712,"idl":99.89,"recv":0,"send":0.01,"writ":0.18,"used":536.1,"free":3159.32},{"epoch":26135713,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":536.07,"free":3159.34},{"epoch":26135714,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":536.45,"free":3158.97},{"epoch":26135715,"idl":99.85,"recv":0,"send":0,"writ":0.49,"used":536.9,"free":3158.54},{"epoch":26135716,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":536.97,"free":3158.47},{"epoch":26135717,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":537.18,"free":3158.25},{"epoch":26135718,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":537.17,"free":3158.25},{"epoch":26135719,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":537.15,"free":3158.28},{"epoch":26135720,"idl":99.61,"recv":0,"send":0,"writ":0.68,"used":537.3,"free":3158.14},{"epoch":26135721,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":536.88,"free":3158.55},{"epoch":26135722,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":536.88,"free":3158.55},{"epoch":26135723,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":536.86,"free":3158.57},{"epoch":26135724,"idl":99.88,"recv":0.02,"send":0.75,"writ":0.19,"used":536.82,"free":3158.6},{"epoch":26135725,"idl":99.71,"recv":0,"send":0.02,"writ":0.75,"used":537.38,"free":3158.05},{"epoch":26135726,"idl":99.88,"recv":0,"send":0.01,"writ":0.16,"used":536.96,"free":3158.48},{"epoch":26135727,"idl":99.91,"recv":0.01,"send":0.67,"writ":0.25,"used":536.88,"free":3158.54},{"epoch":26135728,"idl":99.88,"recv":0.01,"send":0.46,"writ":0.2,"used":536.84,"free":3158.57},{"epoch":26135729,"idl":99.88,"recv":0.02,"send":1.06,"writ":0.16,"used":536.95,"free":3158.46},{"epoch":26135730,"idl":99.65,"recv":0.02,"send":0.51,"writ":0.73,"used":537.36,"free":3158.04},{"epoch":26135731,"idl":99.89,"recv":0.02,"send":0.44,"writ":0.3,"used":536.88,"free":3158.53},{"epoch":26135732,"idl":81.58,"recv":0.05,"send":0.07,"writ":4.01,"used":673.58,"free":3021.78},{"epoch":26135733,"idl":99.74,"recv":0.01,"send":0.4,"writ":0.67,"used":900.35,"free":2795.03},{"epoch":26135734,"idl":99.91,"recv":0,"send":0.07,"writ":0.28,"used":580.68,"free":3114.69},{"epoch":26135735,"idl":99.55,"recv":0.05,"send":0.16,"writ":0.8,"used":581.84,"free":3113.53},{"epoch":26135736,"idl":99.82,"recv":0.04,"send":0.34,"writ":0.36,"used":582.02,"free":3113.32},{"epoch":26135737,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.15,"used":582,"free":3113.33},{"epoch":26135738,"idl":83.47,"recv":0.17,"send":1.89,"writ":1.55,"used":670.49,"free":3024.71},{"epoch":26135739,"idl":81.06,"recv":0.04,"send":0.87,"writ":4.37,"used":802.81,"free":2892.37},{"epoch":26135740,"idl":87.8,"recv":0.3,"send":0.01,"writ":79.6,"used":828.06,"free":2867.17},{"epoch":26135741,"idl":68.28,"recv":0.04,"send":0.9,"writ":189.42,"used":1073.51,"free":2621.17},{"epoch":26135742,"idl":99.85,"recv":0.05,"send":2.1,"writ":0.34,"used":1057.02,"free":2637.74},{"epoch":26135743,"idl":99.71,"recv":0.02,"send":0.58,"writ":0.23,"used":671.78,"free":3022.96},{"epoch":26135744,"idl":81,"recv":0.08,"send":1.93,"writ":4.63,"used":949.4,"free":2745.28},{"epoch":26135745,"idl":99.42,"recv":0,"send":0.01,"writ":0.63,"used":793.84,"free":2900.9},{"epoch":26135746,"idl":99.87,"recv":0.01,"send":0.15,"writ":0.38,"used":586.76,"free":3108.03},{"epoch":26135747,"idl":99.88,"recv":0.03,"send":1.29,"writ":0.22,"used":586.72,"free":3108.07},{"epoch":26135748,"idl":99.91,"recv":0.04,"send":1.9,"writ":0.27,"used":586.79,"free":3107.98},{"epoch":26135749,"idl":99.9,"recv":0,"send":0.01,"writ":0.23,"used":586.68,"free":3108.08},{"epoch":26135750,"idl":99.69,"recv":0,"send":0,"writ":0.73,"used":586.99,"free":3107.79},{"epoch":26135751,"idl":99.91,"recv":0,"send":0.01,"writ":0.18,"used":586.41,"free":3108.39},{"epoch":26135752,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":586.39,"free":3108.4},{"epoch":26135753,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":586.36,"free":3108.42},{"epoch":26135754,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":586.5,"free":3108.28},{"epoch":26135755,"idl":99.72,"recv":0,"send":0,"writ":0.45,"used":587.38,"free":3107.42},{"epoch":26135756,"idl":99.9,"recv":0,"send":0,"writ":0.42,"used":587.02,"free":3107.77},{"epoch":26135757,"idl":99.9,"recv":0.01,"send":0.14,"writ":0.18,"used":586.94,"free":3107.85},{"epoch":26135758,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":586.91,"free":3107.88},{"epoch":26135759,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":586.88,"free":3107.9},{"epoch":26135760,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":587.36,"free":3107.43},{"epoch":26135761,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":587.86,"free":3106.93},{"epoch":26135762,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":586.45,"free":3108.33},{"epoch":26135763,"idl":99.87,"recv":0.02,"send":0.85,"writ":0.23,"used":586.41,"free":3108.36},{"epoch":26135764,"idl":99.86,"recv":0,"send":0.03,"writ":0.24,"used":586.43,"free":3108.34},{"epoch":26135765,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":585.46,"free":3109.32},{"epoch":26135766,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":586.75,"free":3108.03},{"epoch":26135767,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":586.88,"free":3107.9},{"epoch":26135768,"idl":99.86,"recv":0,"send":0.01,"writ":0.18,"used":586.96,"free":3107.81},{"epoch":26135769,"idl":99.65,"recv":0,"send":0.01,"writ":0.32,"used":587.02,"free":3107.73},{"epoch":26135770,"idl":99.68,"recv":0,"send":0.01,"writ":0.34,"used":587.26,"free":3107.5},{"epoch":26135771,"idl":99.73,"recv":0,"send":0.01,"writ":0.63,"used":587.39,"free":3107.37},{"epoch":26135772,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":586.94,"free":3107.82},{"epoch":26135773,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":586.91,"free":3107.84},{"epoch":26135774,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":586.9,"free":3107.87},{"epoch":26135775,"idl":99.75,"recv":0,"send":0.02,"writ":0.38,"used":586.5,"free":3108.28},{"epoch":26135776,"idl":99.73,"recv":0.01,"send":0.18,"writ":0.47,"used":587.22,"free":3107.55},{"epoch":26135777,"idl":99.78,"recv":0,"send":0,"writ":0.35,"used":586.91,"free":3107.86},{"epoch":26135778,"idl":99.89,"recv":0.03,"send":1.17,"writ":0.19,"used":586.9,"free":3107.87},{"epoch":26135779,"idl":99.89,"recv":0,"send":0.01,"writ":0.22,"used":586.22,"free":3108.54},{"epoch":26135780,"idl":99.81,"recv":0.35,"send":21.44,"writ":0.31,"used":586.67,"free":3108.11},{"epoch":26135781,"idl":99.74,"recv":0.16,"send":7.54,"writ":0.57,"used":587.27,"free":3107.51},{"epoch":26135782,"idl":99.93,"recv":0.01,"send":0.52,"writ":0.3,"used":586.73,"free":3108.04},{"epoch":26135783,"idl":99.88,"recv":0.04,"send":1.81,"writ":0.2,"used":586.69,"free":3108.07},{"epoch":26135784,"idl":99.88,"recv":0.01,"send":0.22,"writ":0.21,"used":586.65,"free":3108.13},{"epoch":26135785,"idl":99.81,"recv":0,"send":0.02,"writ":0.42,"used":586.38,"free":3108.43},{"epoch":26135786,"idl":99.7,"recv":0.12,"send":5.69,"writ":0.6,"used":586.85,"free":3107.95},{"epoch":26135787,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":586.99,"free":3107.8},{"epoch":26135788,"idl":99.89,"recv":0,"send":0.01,"writ":0.2,"used":586.96,"free":3107.83},{"epoch":26135789,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":586.93,"free":3107.85},{"epoch":26135790,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":587.42,"free":3107.38},{"epoch":26135791,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":587.41,"free":3107.39},{"epoch":26135792,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":587.74,"free":3107.05},{"epoch":26135793,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":587.36,"free":3107.42},{"epoch":26135794,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":587.35,"free":3107.43},{"epoch":26135795,"idl":99.78,"recv":0.04,"send":1.41,"writ":0.32,"used":587.36,"free":3107.44},{"epoch":26135796,"idl":99.93,"recv":0,"send":0.01,"writ":0.22,"used":587.35,"free":3107.44},{"epoch":26135797,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":587.84,"free":3106.94},{"epoch":26135798,"idl":99.89,"recv":0,"send":0.02,"writ":0.19,"used":586.63,"free":3108.14},{"epoch":26135799,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":586.8,"free":3107.95},{"epoch":26135800,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":586.73,"free":3108.04},{"epoch":26135801,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":586.47,"free":3108.3},{"epoch":26135802,"idl":99.67,"recv":0,"send":0,"writ":0.73,"used":586.38,"free":3108.38},{"epoch":26135803,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":585.94,"free":3108.82},{"epoch":26135804,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":585.91,"free":3108.84},{"epoch":26135805,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":586.45,"free":3108.31},{"epoch":26135806,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":586.39,"free":3108.38},{"epoch":26135807,"idl":99.63,"recv":0,"send":0,"writ":0.69,"used":587.5,"free":3107.26},{"epoch":26135808,"idl":98.65,"recv":0,"send":0,"writ":0.14,"used":587.09,"free":3107.67},{"epoch":26135809,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":587.07,"free":3107.68},{"epoch":26135810,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":586.21,"free":3108.56},{"epoch":26135811,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":586.25,"free":3108.51},{"epoch":26135812,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":587.04,"free":3107.72},{"epoch":26135813,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":587.2,"free":3107.56},{"epoch":26135814,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":587.18,"free":3107.57},{"epoch":26135815,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":586.7,"free":3108.07},{"epoch":26135816,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":586.61,"free":3108.15},{"epoch":26135817,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":586.83,"free":3107.93},{"epoch":26135818,"idl":99.91,"recv":0.08,"send":4.19,"writ":0.33,"used":586.66,"free":3108.09},{"epoch":26135819,"idl":99.9,"recv":0,"send":0.08,"writ":0.27,"used":586.64,"free":3108.08},{"epoch":26135820,"idl":99.73,"recv":0.04,"send":1.33,"writ":0.39,"used":585.58,"free":3109.14},{"epoch":26135821,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":585.57,"free":3109.15},{"epoch":26135822,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":586.32,"free":3108.39},{"epoch":26135823,"idl":99.88,"recv":0,"send":0,"writ":0.24,"used":587.16,"free":3107.55},{"epoch":26135824,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":587.16,"free":3107.54},{"epoch":26135825,"idl":99.84,"recv":0.02,"send":1.25,"writ":0.44,"used":586.89,"free":3107.83},{"epoch":26135826,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":586.84,"free":3107.87},{"epoch":26135827,"idl":99.8,"recv":0,"send":0,"writ":0.45,"used":587.1,"free":3107.6},{"epoch":26135828,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":586.3,"free":3108.4},{"epoch":26135829,"idl":99.74,"recv":0.01,"send":0.02,"writ":0.32,"used":587.28,"free":3107.4},{"epoch":26135830,"idl":99.84,"recv":0,"send":0.02,"writ":0.36,"used":587.38,"free":3107.3},{"epoch":26135831,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":587.35,"free":3107.33},{"epoch":26135832,"idl":99.87,"recv":0.01,"send":0.23,"writ":0.2,"used":587.4,"free":3107.28},{"epoch":26135833,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":587.98,"free":3106.69},{"epoch":26135834,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":587.6,"free":3107.06},{"epoch":26135835,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":587.48,"free":3107.2},{"epoch":26135836,"idl":99.88,"recv":0,"send":0.02,"writ":0.17,"used":586.83,"free":3107.84},{"epoch":26135837,"idl":99.9,"recv":0.02,"send":0.83,"writ":0.29,"used":586.83,"free":3107.84},{"epoch":26135838,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":587.1,"free":3107.56},{"epoch":26135839,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":586.02,"free":3108.63},{"epoch":26135840,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":586.5,"free":3108.17},{"epoch":26135841,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":586.55,"free":3108.12},{"epoch":26135842,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":586.66,"free":3108},{"epoch":26135843,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":586.8,"free":3107.86},{"epoch":26135844,"idl":99.82,"recv":0,"send":0.01,"writ":0.16,"used":586.36,"free":3108.29},{"epoch":26135845,"idl":99.81,"recv":0,"send":0.02,"writ":0.35,"used":586.34,"free":3108.34},{"epoch":26135846,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":586.31,"free":3108.36},{"epoch":26135847,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":586.28,"free":3108.38},{"epoch":26135848,"idl":99.69,"recv":0,"send":0,"writ":0.62,"used":587.16,"free":3107.5},{"epoch":26135849,"idl":99.83,"recv":0,"send":0.01,"writ":0.2,"used":586.83,"free":3107.82},{"epoch":26135850,"idl":99.78,"recv":0,"send":0.01,"writ":0.32,"used":586.16,"free":3108.5},{"epoch":26135851,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":586.1,"free":3108.56},{"epoch":26135852,"idl":99.44,"recv":0,"send":0,"writ":0.42,"used":587.51,"free":3107.13},{"epoch":26135853,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":587.45,"free":3107.19},{"epoch":26135854,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":586.79,"free":3107.85},{"epoch":26135855,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":586.42,"free":3108.23},{"epoch":26135856,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":586.28,"free":3108.38},{"epoch":26135857,"idl":99.82,"recv":0,"send":0.01,"writ":0.16,"used":586.27,"free":3108.38},{"epoch":26135858,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":586.85,"free":3107.79},{"epoch":26135859,"idl":99.73,"recv":0,"send":0,"writ":0.48,"used":586.63,"free":3108},{"epoch":26135860,"idl":99.78,"recv":0,"send":0,"writ":0.35,"used":586.15,"free":3108.49},{"epoch":26135861,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":586.34,"free":3108.3},{"epoch":26135862,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":586.33,"free":3108.31},{"epoch":26135863,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":586.72,"free":3107.91},{"epoch":26135864,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":586.53,"free":3108.1},{"epoch":26135865,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":586.76,"free":3107.87},{"epoch":26135866,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":586.75,"free":3107.88},{"epoch":26135867,"idl":99.87,"recv":0,"send":0.01,"writ":0.16,"used":586.73,"free":3107.9},{"epoch":26135868,"idl":99.77,"recv":0,"send":0.01,"writ":0.35,"used":587.51,"free":3107.11},{"epoch":26135869,"idl":99.85,"recv":0,"send":0,"writ":0.41,"used":586.84,"free":3107.77},{"epoch":26135870,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":587.09,"free":3107.54},{"epoch":26135871,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":587.07,"free":3107.56},{"epoch":26135872,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":587.05,"free":3107.57},{"epoch":26135873,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":587.03,"free":3107.59},{"epoch":26135874,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":587.68,"free":3106.94},{"epoch":26135875,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":586.65,"free":3107.98},{"epoch":26135876,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":586.24,"free":3108.38},{"epoch":26135877,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":586.21,"free":3108.41},{"epoch":26135878,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":586.3,"free":3108.32},{"epoch":26135879,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":586.53,"free":3108.07},{"epoch":26135880,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":584.93,"free":3109.7},{"epoch":26135881,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":584.86,"free":3109.76},{"epoch":26135882,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.14,"used":584.86,"free":3109.75},{"epoch":26135883,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":584.88,"free":3109.73},{"epoch":26135884,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":586.49,"free":3108.12},{"epoch":26135885,"idl":99.74,"recv":0.03,"send":2.52,"writ":0.36,"used":586.6,"free":3108.02},{"epoch":26135886,"idl":99.85,"recv":0,"send":0.25,"writ":0.21,"used":586.53,"free":3108.07},{"epoch":26135887,"idl":98.27,"recv":0,"send":0,"writ":0.16,"used":586.49,"free":3108.1},{"epoch":26135888,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":586.46,"free":3108.13},{"epoch":26135889,"idl":99.61,"recv":0,"send":0,"writ":0.8,"used":587.74,"free":3106.82},{"epoch":26135890,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":586.74,"free":3107.83},{"epoch":26135891,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":586.88,"free":3107.68},{"epoch":26135892,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":586.86,"free":3107.7},{"epoch":26135893,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":586.83,"free":3107.73},{"epoch":26135894,"idl":99.7,"recv":0,"send":0,"writ":0.61,"used":587.41,"free":3107.17},{"epoch":26135895,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":586.49,"free":3108.1},{"epoch":26135896,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":585.82,"free":3108.77},{"epoch":26135897,"idl":99.85,"recv":0,"send":0,"writ":0.24,"used":585.79,"free":3108.79},{"epoch":26135898,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":585.78,"free":3108.8},{"epoch":26135899,"idl":99.71,"recv":0,"send":0,"writ":0.6,"used":586.28,"free":3108.31},{"epoch":26135900,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":585.54,"free":3109.07},{"epoch":26135901,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":585.49,"free":3109.11},{"epoch":26135902,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":585.52,"free":3109.08},{"epoch":26135903,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":585.64,"free":3108.96},{"epoch":26135904,"idl":99.67,"recv":0,"send":0,"writ":0.35,"used":586.21,"free":3108.39},{"epoch":26135905,"idl":99.76,"recv":0,"send":0,"writ":0.62,"used":587.1,"free":3107.52},{"epoch":26135906,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":587.09,"free":3107.53},{"epoch":26135907,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":587.07,"free":3107.54},{"epoch":26135908,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":587.05,"free":3107.56},{"epoch":26135909,"idl":99.69,"recv":0,"send":0,"writ":0.35,"used":587.29,"free":3107.31},{"epoch":26135910,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":587.33,"free":3107.29},{"epoch":26135911,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":587.24,"free":3107.38},{"epoch":26135912,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":587.23,"free":3107.38},{"epoch":26135913,"idl":99.86,"recv":0,"send":0.01,"writ":0.15,"used":587.25,"free":3107.36},{"epoch":26135914,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":587.36,"free":3107.25},{"epoch":26135915,"idl":99.57,"recv":0,"send":0,"writ":0.74,"used":587.6,"free":3107.03},{"epoch":26135916,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":586.61,"free":3108.01},{"epoch":26135917,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":586.56,"free":3108.05},{"epoch":26135918,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":586.54,"free":3108.07},{"epoch":26135919,"idl":99.68,"recv":0,"send":0,"writ":0.35,"used":586.76,"free":3107.83},{"epoch":26135920,"idl":99.6,"recv":0,"send":0,"writ":0.76,"used":587.35,"free":3107.25},{"epoch":26135921,"idl":99.76,"recv":0,"send":0,"writ":0.2,"used":586.56,"free":3108.04},{"epoch":26135922,"idl":99.84,"recv":0.05,"send":2.06,"writ":0.18,"used":586.58,"free":3108},{"epoch":26135923,"idl":99.83,"recv":0,"send":0.05,"writ":0.24,"used":586.79,"free":3107.77},{"epoch":26135924,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":586.76,"free":3107.82},{"epoch":26135925,"idl":99.66,"recv":0,"send":0,"writ":0.75,"used":587.69,"free":3106.91},{"epoch":26135926,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":587.47,"free":3107.13},{"epoch":26135927,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":587.46,"free":3107.14},{"epoch":26135928,"idl":98.94,"recv":0,"send":0,"writ":0.16,"used":587.43,"free":3107.16},{"epoch":26135929,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":587.42,"free":3107.16},{"epoch":26135930,"idl":99.67,"recv":0,"send":0,"writ":0.77,"used":587.64,"free":3106.96},{"epoch":26135931,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":587.59,"free":3107.01},{"epoch":26135932,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":587.56,"free":3107.04},{"epoch":26135933,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":587.55,"free":3107.04},{"epoch":26135934,"idl":99.87,"recv":0.01,"send":0.03,"writ":0.22,"used":587.48,"free":3107.11},{"epoch":26135935,"idl":99.63,"recv":0,"send":0,"writ":0.8,"used":588.35,"free":3106.25},{"epoch":26135936,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":587.43,"free":3107.15},{"epoch":26135937,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":586.93,"free":3107.66},{"epoch":26135938,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":586.99,"free":3107.59},{"epoch":26135939,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":587.07,"free":3107.51},{"epoch":26135940,"idl":99.49,"recv":0,"send":0,"writ":0.63,"used":586.57,"free":3108.02},{"epoch":26135941,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":586.77,"free":3107.81},{"epoch":26135942,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":586.74,"free":3107.84},{"epoch":26135943,"idl":99.8,"recv":0.03,"send":1.28,"writ":0.23,"used":586.75,"free":3107.81},{"epoch":26135944,"idl":99.85,"recv":0.01,"send":0.22,"writ":0.2,"used":586.78,"free":3107.77},{"epoch":26135945,"idl":99.66,"recv":0,"send":0,"writ":0.61,"used":587.64,"free":3106.93},{"epoch":26135946,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":587.26,"free":3107.31},{"epoch":26135947,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":587.25,"free":3107.32},{"epoch":26135948,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":587.22,"free":3107.34},{"epoch":26135949,"idl":99.76,"recv":0,"send":0,"writ":0.46,"used":587.71,"free":3106.82},{"epoch":26135950,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":588.63,"free":3105.92},{"epoch":26135951,"idl":99.78,"recv":0,"send":0,"writ":0.37,"used":587.92,"free":3106.63},{"epoch":26135952,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":587.89,"free":3106.65},{"epoch":26135953,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":587.88,"free":3106.66},{"epoch":26135954,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":587.95,"free":3106.58},{"epoch":26135955,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":588.52,"free":3106.03},{"epoch":26135956,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":587.98,"free":3106.56},{"epoch":26135957,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":586.53,"free":3108.01},{"epoch":26135958,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":586.5,"free":3108.04},{"epoch":26135959,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":586.5,"free":3108.04},{"epoch":26135960,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":586.97,"free":3107.57},{"epoch":26135961,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":587.1,"free":3107.44},{"epoch":26135962,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":586.69,"free":3107.85},{"epoch":26135963,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":586.67,"free":3107.86},{"epoch":26135964,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":586.65,"free":3107.88},{"epoch":26135965,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":587.62,"free":3106.92},{"epoch":26135966,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":588,"free":3106.54},{"epoch":26135967,"idl":99.82,"recv":0,"send":0.02,"writ":0.15,"used":587.77,"free":3106.77},{"epoch":26135968,"idl":99.85,"recv":0,"send":0.01,"writ":0.18,"used":587.73,"free":3106.8},{"epoch":26135969,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":587.7,"free":3106.83},{"epoch":26135970,"idl":99.81,"recv":0,"send":0,"writ":0.37,"used":588.19,"free":3106.35},{"epoch":26135971,"idl":99.68,"recv":0,"send":0,"writ":0.52,"used":588.69,"free":3105.85},{"epoch":26135972,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":587.91,"free":3106.62},{"epoch":26135973,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":587.88,"free":3106.65},{"epoch":26135974,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":587.87,"free":3106.65},{"epoch":26135975,"idl":99.75,"recv":0,"send":0,"writ":0.37,"used":588.11,"free":3106.44},{"epoch":26135976,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":588.55,"free":3105.99},{"epoch":26135977,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":587.58,"free":3106.95},{"epoch":26135978,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":587.25,"free":3107.28},{"epoch":26135979,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":587.72,"free":3106.79},{"epoch":26135980,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":587.49,"free":3107.03},{"epoch":26135981,"idl":99.68,"recv":0,"send":0,"writ":0.65,"used":587.89,"free":3106.63},{"epoch":26135982,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":587.68,"free":3106.84},{"epoch":26135983,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":587.67,"free":3106.84},{"epoch":26135984,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":587.64,"free":3106.88},{"epoch":26135985,"idl":99.77,"recv":0,"send":0.01,"writ":0.35,"used":587.67,"free":3106.87},{"epoch":26135986,"idl":99.69,"recv":0,"send":0,"writ":0.64,"used":588.14,"free":3106.4},{"epoch":26135987,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":587.76,"free":3106.78},{"epoch":26135988,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":587.73,"free":3106.8},{"epoch":26135989,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":587.7,"free":3106.83},{"epoch":26135990,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":587.96,"free":3106.58},{"epoch":26135991,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":587.92,"free":3106.61},{"epoch":26135992,"idl":99.68,"recv":0,"send":0,"writ":0.61,"used":588.64,"free":3105.89},{"epoch":26135993,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":587.95,"free":3106.58},{"epoch":26135994,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":587.13,"free":3107.39},{"epoch":26135995,"idl":99.79,"recv":0,"send":0,"writ":0.37,"used":587.37,"free":3107.17},{"epoch":26135996,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":587.48,"free":3107.05},{"epoch":26135997,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":587.62,"free":3106.91},{"epoch":26135998,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":586.51,"free":3108.02},{"epoch":26135999,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":586.49,"free":3108.03},{"epoch":26136000,"idl":99.65,"recv":0,"send":0,"writ":0.34,"used":586.55,"free":3107.99},{"epoch":26136001,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":586.48,"free":3108.06},{"epoch":26136002,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":587.2,"free":3107.33},{"epoch":26136003,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":586.92,"free":3107.6},{"epoch":26136004,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":586.89,"free":3107.63},{"epoch":26136005,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":586.16,"free":3108.37},{"epoch":26136006,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":586.17,"free":3108.36},{"epoch":26136007,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":587.58,"free":3106.94},{"epoch":26136008,"idl":98.92,"recv":0,"send":0,"writ":0.14,"used":587.29,"free":3107.23},{"epoch":26136009,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":587.25,"free":3107.24},{"epoch":26136010,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":587.5,"free":3107.02},{"epoch":26136011,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":587.48,"free":3107.03},{"epoch":26136012,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":587.46,"free":3107.04},{"epoch":26136013,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":586.7,"free":3107.8},{"epoch":26136014,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":586.68,"free":3107.81},{"epoch":26136015,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":587.17,"free":3107.34},{"epoch":26136016,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":587.15,"free":3107.35},{"epoch":26136017,"idl":99.67,"recv":0,"send":0,"writ":0.61,"used":587.46,"free":3107.04},{"epoch":26136018,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":587.01,"free":3107.49},{"epoch":26136019,"idl":99.8,"recv":0,"send":0,"writ":0.21,"used":574.61,"free":3119.96},{"epoch":26136020,"idl":99.76,"recv":0,"send":0,"writ":0.42,"used":532.85,"free":3162.08},{"epoch":26136021,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":532.81,"free":3162.12},{"epoch":26136022,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":533.06,"free":3161.86},{"epoch":26136023,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":532.52,"free":3162.4},{"epoch":26136024,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.49,"free":3162.43},{"epoch":26136025,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":532.76,"free":3162.19},{"epoch":26136026,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":532.73,"free":3162.22},{"epoch":26136027,"idl":99.73,"recv":0,"send":0,"writ":0.42,"used":533.08,"free":3161.88},{"epoch":26136028,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":531.4,"free":3163.56},{"epoch":26136029,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":531.37,"free":3163.58},{"epoch":26136030,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":532.35,"free":3162.63},{"epoch":26136031,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.34,"free":3162.63},{"epoch":26136032,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":532.32,"free":3162.64},{"epoch":26136033,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":533.12,"free":3161.83},{"epoch":26136034,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":532.77,"free":3162.18},{"epoch":26136035,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":533.03,"free":3161.94},{"epoch":26136036,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":533.01,"free":3161.96},{"epoch":26136037,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":532.99,"free":3161.98},{"epoch":26136038,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":533.09,"free":3161.87},{"epoch":26136039,"idl":99.72,"recv":0,"send":0,"writ":0.36,"used":532.99,"free":3161.95},{"epoch":26136040,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":533.04,"free":3161.93},{"epoch":26136041,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.93,"free":3162.04},{"epoch":26136042,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":532.85,"free":3162.12},{"epoch":26136043,"idl":99.8,"recv":0,"send":0,"writ":0.62,"used":533.17,"free":3161.78},{"epoch":26136044,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":532.8,"free":3162.16},{"epoch":26136045,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":532.14,"free":3162.85},{"epoch":26136046,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":532.05,"free":3162.93},{"epoch":26136047,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.04,"free":3162.93},{"epoch":26136048,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":532.97,"free":3162},{"epoch":26136049,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.98,"free":3161.99},{"epoch":26136050,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":532.5,"free":3162.48},{"epoch":26136051,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.46,"free":3162.52},{"epoch":26136052,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.53,"free":3162.44},{"epoch":26136053,"idl":99.77,"recv":0,"send":0,"writ":0.53,"used":533.31,"free":3161.66},{"epoch":26136054,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":533.08,"free":3161.89},{"epoch":26136055,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":532.59,"free":3162.39},{"epoch":26136056,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":532.56,"free":3162.42},{"epoch":26136057,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.53,"free":3162.44},{"epoch":26136058,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":533,"free":3161.97},{"epoch":26136059,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":532.98,"free":3161.98},{"epoch":26136060,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":532.51,"free":3162.47},{"epoch":26136061,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":532.47,"free":3162.5},{"epoch":26136062,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":532.45,"free":3162.52},{"epoch":26136063,"idl":99.81,"recv":0,"send":0,"writ":0.43,"used":532.88,"free":3162.09},{"epoch":26136064,"idl":99.93,"recv":0,"send":0,"writ":0.32,"used":532.84,"free":3162.12},{"epoch":26136065,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":531.87,"free":3163.1},{"epoch":26136066,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":531.84,"free":3163.13},{"epoch":26136067,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":531.82,"free":3163.15},{"epoch":26136068,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":532.24,"free":3162.73},{"epoch":26136069,"idl":99.73,"recv":0,"send":0,"writ":0.45,"used":532.99,"free":3161.95},{"epoch":26136070,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":533.23,"free":3161.73},{"epoch":26136071,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":533.22,"free":3161.73},{"epoch":26136072,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":533.19,"free":3161.76},{"epoch":26136073,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":533.17,"free":3161.77},{"epoch":26136074,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":532.93,"free":3162.01},{"epoch":26136075,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":533.07,"free":3161.88},{"epoch":26136076,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":533.06,"free":3161.89},{"epoch":26136077,"idl":99.92,"recv":0,"send":0,"writ":0.24,"used":532.8,"free":3162.15},{"epoch":26136078,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":532.77,"free":3162.17},{"epoch":26136079,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":533.3,"free":3161.64},{"epoch":26136080,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":533.23,"free":3161.71},{"epoch":26136081,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":533.22,"free":3161.73},{"epoch":26136082,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":533.2,"free":3161.74},{"epoch":26136083,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":533.18,"free":3161.76},{"epoch":26136084,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":532.38,"free":3162.55},{"epoch":26136085,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":531.75,"free":3163.2},{"epoch":26136086,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.87,"free":3163.08},{"epoch":26136087,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.85,"free":3163.09},{"epoch":26136088,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":531.83,"free":3163.11},{"epoch":26136089,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":533.02,"free":3161.91},{"epoch":26136090,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":533.52,"free":3161.42},{"epoch":26136091,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":533.52,"free":3161.42},{"epoch":26136092,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":533.49,"free":3161.45},{"epoch":26136093,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":533.49,"free":3161.45},{"epoch":26136094,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":533.79,"free":3161.14},{"epoch":26136095,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":533.46,"free":3161.49},{"epoch":26136096,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":533.44,"free":3161.5},{"epoch":26136097,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":533.44,"free":3161.5},{"epoch":26136098,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":533.58,"free":3161.36},{"epoch":26136099,"idl":99.57,"recv":0,"send":0,"writ":0.57,"used":533.44,"free":3161.47},{"epoch":26136100,"idl":99.84,"recv":0,"send":0,"writ":0.49,"used":533.28,"free":3161.64},{"epoch":26136101,"idl":99.91,"recv":0,"send":0,"writ":0.22,"used":532.91,"free":3162.01},{"epoch":26136102,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":532.76,"free":3162.16},{"epoch":26136103,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.74,"free":3162.17},{"epoch":26136104,"idl":95.1,"recv":0.32,"send":0.01,"writ":79.61,"used":533.14,"free":3167.89},{"epoch":26136105,"idl":99.68,"recv":0.01,"send":0.01,"writ":181.27,"used":519.96,"free":3182.18},{"epoch":26136106,"idl":99.95,"recv":0,"send":0,"writ":0.33,"used":523.83,"free":3178.09},{"epoch":26136107,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":523.8,"free":3178.11},{"epoch":26136108,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":523.79,"free":3178.12},{"epoch":26136109,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":524.01,"free":3177.93},{"epoch":26136110,"idl":99.89,"recv":0,"send":0,"writ":0.52,"used":522.82,"free":3179.21},{"epoch":26136111,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":522.82,"free":3179.21},{"epoch":26136112,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":522.81,"free":3179.21},{"epoch":26136113,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.8,"free":3179.22},{"epoch":26136114,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":522.77,"free":3179.24},{"epoch":26136115,"idl":99.72,"recv":0,"send":0,"writ":0.73,"used":522.88,"free":3179.15},{"epoch":26136116,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":522.29,"free":3179.73},{"epoch":26136117,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":522.26,"free":3179.76},{"epoch":26136118,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":522.23,"free":3179.79},{"epoch":26136119,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.22,"free":3179.8},{"epoch":26136120,"idl":99.64,"recv":0,"send":0,"writ":0.8,"used":523.2,"free":3178.83},{"epoch":26136121,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":523.16,"free":3178.86},{"epoch":26136122,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":523.14,"free":3178.87},{"epoch":26136123,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":523.14,"free":3178.87},{"epoch":26136124,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":523.13,"free":3178.87},{"epoch":26136125,"idl":99.74,"recv":0,"send":0,"writ":0.72,"used":523.11,"free":3178.92},{"epoch":26136126,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":522.63,"free":3179.39},{"epoch":26136127,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":522.62,"free":3179.39},{"epoch":26136128,"idl":99.68,"recv":0,"send":0,"writ":0.16,"used":522.62,"free":3179.39},{"epoch":26136129,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":523.09,"free":3178.9},{"epoch":26136130,"idl":99.7,"recv":0,"send":0,"writ":0.73,"used":523.44,"free":3178.56},{"epoch":26136131,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":522.85,"free":3179.16},{"epoch":26136132,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":522.84,"free":3179.16},{"epoch":26136133,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.84,"free":3179.16},{"epoch":26136134,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":522.8,"free":3179.19},{"epoch":26136135,"idl":99.73,"recv":0,"send":0,"writ":0.63,"used":523.92,"free":3178.09},{"epoch":26136136,"idl":99.94,"recv":0,"send":0,"writ":0.27,"used":523.06,"free":3178.94},{"epoch":26136137,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":523.29,"free":3178.71},{"epoch":26136138,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":523.27,"free":3178.73},{"epoch":26136139,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":523.26,"free":3178.73},{"epoch":26136140,"idl":99.73,"recv":0,"send":0,"writ":0.74,"used":523.33,"free":3178.67},{"epoch":26136141,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":523,"free":3179},{"epoch":26136142,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":522.99,"free":3179},{"epoch":26136143,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":522.99,"free":3179},{"epoch":26136144,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":523.01,"free":3178.98},{"epoch":26136145,"idl":99.75,"recv":0,"send":0,"writ":0.5,"used":523.5,"free":3178.51},{"epoch":26136146,"idl":99.93,"recv":0,"send":0,"writ":0.38,"used":522.91,"free":3179.09},{"epoch":26136147,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":522.9,"free":3179.09},{"epoch":26136148,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":522.83,"free":3179.17},{"epoch":26136149,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":522.37,"free":3179.62},{"epoch":26136150,"idl":99.69,"recv":0,"send":0,"writ":0.51,"used":522.25,"free":3179.76},{"epoch":26136151,"idl":99.95,"recv":0,"send":0,"writ":0.38,"used":521.9,"free":3180.11},{"epoch":26136152,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":521.87,"free":3180.13},{"epoch":26136153,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":521.86,"free":3180.14},{"epoch":26136154,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":521.85,"free":3180.14},{"epoch":26136155,"idl":99.8,"recv":0.01,"send":0.27,"writ":0.35,"used":521.59,"free":3180.42},{"epoch":26136156,"idl":99.81,"recv":0,"send":0.07,"writ":0.62,"used":522.39,"free":3179.6},{"epoch":26136157,"idl":99.94,"recv":0.01,"send":0.46,"writ":0.2,"used":522.1,"free":3179.89},{"epoch":26136158,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":522.08,"free":3179.9},{"epoch":26136159,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":522.56,"free":3179.39},{"epoch":26136160,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":522.4,"free":3179.57},{"epoch":26136161,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":522.78,"free":3179.19},{"epoch":26136162,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":522.05,"free":3179.91},{"epoch":26136163,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":522.02,"free":3179.94},{"epoch":26136164,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.01,"free":3179.94},{"epoch":26136165,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":521.55,"free":3180.41},{"epoch":26136166,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":522.53,"free":3179.43},{"epoch":26136167,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":522.48,"free":3179.48},{"epoch":26136168,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.47,"free":3179.48},{"epoch":26136169,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":522.47,"free":3179.49},{"epoch":26136170,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":522.46,"free":3179.51},{"epoch":26136171,"idl":99.81,"recv":0,"send":0,"writ":0.6,"used":522.68,"free":3179.29},{"epoch":26136172,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":522.14,"free":3179.82},{"epoch":26136173,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":522.14,"free":3179.82},{"epoch":26136174,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":522.13,"free":3179.82},{"epoch":26136175,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":522.37,"free":3179.6},{"epoch":26136176,"idl":99.79,"recv":0,"send":0,"writ":0.45,"used":522.63,"free":3179.34},{"epoch":26136177,"idl":99.95,"recv":0,"send":0,"writ":0.31,"used":522.11,"free":3179.85},{"epoch":26136178,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":522.08,"free":3179.88},{"epoch":26136179,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":522.07,"free":3179.88},{"epoch":26136180,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":522.58,"free":3179.39},{"epoch":26136181,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":523.28,"free":3178.68},{"epoch":26136182,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":522.54,"free":3179.42},{"epoch":26136183,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":522.53,"free":3179.42},{"epoch":26136184,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":522.52,"free":3179.42},{"epoch":26136185,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":522.51,"free":3179.45},{"epoch":26136186,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":522.73,"free":3179.23},{"epoch":26136187,"idl":99.87,"recv":0,"send":0,"writ":0.57,"used":522.86,"free":3179.1},{"epoch":26136188,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":522.5,"free":3179.45},{"epoch":26136189,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":522.72,"free":3179.21},{"epoch":26136190,"idl":99.83,"recv":0,"send":0.01,"writ":0.34,"used":521.29,"free":3180.66},{"epoch":26136191,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":521.22,"free":3180.72},{"epoch":26136192,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":522.61,"free":3179.33},{"epoch":26136193,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":522.51,"free":3179.42},{"epoch":26136194,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":522.63,"free":3179.3},{"epoch":26136195,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":522.65,"free":3179.29},{"epoch":26136196,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.61,"free":3179.33},{"epoch":26136197,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":523.16,"free":3178.77},{"epoch":26136198,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":522.84,"free":3179.09},{"epoch":26136199,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":522.81,"free":3179.12},{"epoch":26136200,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":522.89,"free":3179.06},{"epoch":26136201,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":522.82,"free":3179.12},{"epoch":26136202,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":522.98,"free":3178.95},{"epoch":26136203,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":522.54,"free":3179.39},{"epoch":26136204,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":522.53,"free":3179.39},{"epoch":26136205,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":522.56,"free":3179.41},{"epoch":26136206,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":522.53,"free":3179.45},{"epoch":26136207,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":523.16,"free":3178.81},{"epoch":26136208,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":522.76,"free":3179.21},{"epoch":26136209,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":522.75,"free":3179.21},{"epoch":26136210,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":521.81,"free":3180.17},{"epoch":26136211,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":521.75,"free":3180.23},{"epoch":26136212,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":522.4,"free":3179.56},{"epoch":26136213,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":522.72,"free":3179.24},{"epoch":26136214,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":522.71,"free":3179.25},{"epoch":26136215,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":521.49,"free":3180.48},{"epoch":26136216,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":521.47,"free":3180.5},{"epoch":26136217,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":522.16,"free":3179.81},{"epoch":26136218,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":522.63,"free":3179.34},{"epoch":26136219,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":522.84,"free":3179.1},{"epoch":26136220,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":521.89,"free":3180.07},{"epoch":26136221,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":521.87,"free":3180.08},{"epoch":26136222,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":522.56,"free":3179.39},{"epoch":26136223,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":522.08,"free":3179.87},{"epoch":26136224,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":522.07,"free":3179.88},{"epoch":26136225,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":522.56,"free":3179.42},{"epoch":26136226,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":522.55,"free":3179.43},{"epoch":26136227,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":522.55,"free":3179.43},{"epoch":26136228,"idl":99.62,"recv":0,"send":0,"writ":0.56,"used":521.79,"free":3180.17},{"epoch":26136229,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":521.27,"free":3180.69},{"epoch":26136230,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":521.29,"free":3180.69},{"epoch":26136231,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":521.29,"free":3180.69},{"epoch":26136232,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":521.27,"free":3180.7},{"epoch":26136233,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":523.26,"free":3178.7},{"epoch":26136234,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":522.97,"free":3179},{"epoch":26136235,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.33,"used":522.12,"free":3179.86},{"epoch":26136236,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":522.05,"free":3179.92},{"epoch":26136237,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":522.02,"free":3179.95},{"epoch":26136238,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":523.15,"free":3178.81},{"epoch":26136239,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":522.99,"free":3178.96},{"epoch":26136240,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":522.05,"free":3179.92},{"epoch":26136241,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":521.99,"free":3179.98},{"epoch":26136242,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":521.99,"free":3179.98},{"epoch":26136243,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":522.74,"free":3179.22},{"epoch":26136244,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":522.22,"free":3179.74},{"epoch":26136245,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":522.69,"free":3179.28},{"epoch":26136246,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":522.7,"free":3179.27},{"epoch":26136247,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":522.69,"free":3179.27},{"epoch":26136248,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":522.93,"free":3179.03},{"epoch":26136249,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":522.96,"free":3178.98},{"epoch":26136250,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":523.12,"free":3178.83},{"epoch":26136251,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":523.12,"free":3178.83},{"epoch":26136252,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.11,"free":3178.83},{"epoch":26136253,"idl":99.8,"recv":0,"send":0,"writ":0.5,"used":523.32,"free":3178.61},{"epoch":26136254,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":522.83,"free":3179.13},{"epoch":26136255,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":522.84,"free":3179.13},{"epoch":26136256,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":522.83,"free":3179.14},{"epoch":26136257,"idl":99.91,"recv":0,"send":0,"writ":0.23,"used":522.56,"free":3179.41},{"epoch":26136258,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":523.04,"free":3178.92},{"epoch":26136259,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":523.03,"free":3178.92},{"epoch":26136260,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":522.79,"free":3179.19},{"epoch":26136261,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":522.78,"free":3179.2},{"epoch":26136262,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":522.77,"free":3179.2},{"epoch":26136263,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":523.27,"free":3178.69},{"epoch":26136264,"idl":99.95,"recv":0,"send":0,"writ":0.24,"used":522.98,"free":3178.98},{"epoch":26136265,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":522.76,"free":3179.23},{"epoch":26136266,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":522.75,"free":3179.24},{"epoch":26136267,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":522.72,"free":3179.26},{"epoch":26136268,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":522.71,"free":3179.27},{"epoch":26136269,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":522.83,"free":3179.15},{"epoch":26136270,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":521.99,"free":3180},{"epoch":26136271,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":522.11,"free":3179.88},{"epoch":26136272,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.13,"free":3179.86},{"epoch":26136273,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":522.13,"free":3179.86},{"epoch":26136274,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":523.14,"free":3178.84},{"epoch":26136275,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":522.17,"free":3179.83},{"epoch":26136276,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":522.1,"free":3179.89},{"epoch":26136277,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":522.09,"free":3179.89},{"epoch":26136278,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":522.06,"free":3179.92},{"epoch":26136279,"idl":99.66,"recv":0,"send":0,"writ":0.72,"used":523.78,"free":3178.18},{"epoch":26136280,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":522.11,"free":3179.87},{"epoch":26136281,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":521.9,"free":3180.07},{"epoch":26136282,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":521.8,"free":3180.17},{"epoch":26136283,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":521.79,"free":3180.17},{"epoch":26136284,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":522.87,"free":3179.09},{"epoch":26136285,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":523,"free":3178.97},{"epoch":26136286,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":522.99,"free":3178.97},{"epoch":26136287,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.99,"free":3178.98},{"epoch":26136288,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":522.95,"free":3179},{"epoch":26136289,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":523.4,"free":3178.55},{"epoch":26136290,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":523.05,"free":3178.92},{"epoch":26136291,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":522.98,"free":3178.99},{"epoch":26136292,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.12,"free":3178.85},{"epoch":26136293,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":523.1,"free":3178.85},{"epoch":26136294,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":523.43,"free":3178.52},{"epoch":26136295,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":523.09,"free":3178.88},{"epoch":26136296,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":523.08,"free":3178.88},{"epoch":26136297,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.07,"free":3178.89},{"epoch":26136298,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":523.04,"free":3178.91},{"epoch":26136299,"idl":99.8,"recv":0,"send":0,"writ":0.48,"used":523.68,"free":3178.27},{"epoch":26136300,"idl":99.13,"recv":0,"send":0,"writ":6.02,"used":521.67,"free":3181.14},{"epoch":26136301,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":521.21,"free":3181.62},{"epoch":26136302,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":520.84,"free":3181.99},{"epoch":26136303,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":520.83,"free":3182},{"epoch":26136304,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":521.24,"free":3181.57},{"epoch":26136305,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":522.54,"free":3180.32},{"epoch":26136306,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":522.54,"free":3180.33},{"epoch":26136307,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":522.51,"free":3180.36},{"epoch":26136308,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.5,"free":3180.36},{"epoch":26136309,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":522.91,"free":3179.94},{"epoch":26136310,"idl":99.86,"recv":0,"send":0,"writ":0.49,"used":522.07,"free":3180.8},{"epoch":26136311,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":521.99,"free":3180.87},{"epoch":26136312,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":522.06,"free":3180.8},{"epoch":26136313,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":522.15,"free":3180.7},{"epoch":26136314,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":521.91,"free":3180.94},{"epoch":26136315,"idl":99.68,"recv":0,"send":0,"writ":0.78,"used":523.14,"free":3179.73},{"epoch":26136316,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":522.88,"free":3179.99},{"epoch":26136317,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":522.85,"free":3180.01},{"epoch":26136318,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":522.84,"free":3180.02},{"epoch":26136319,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":522.8,"free":3180.05},{"epoch":26136320,"idl":99.71,"recv":0,"send":0,"writ":0.72,"used":522.23,"free":3180.64},{"epoch":26136321,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":521.83,"free":3181.04},{"epoch":26136322,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":521.82,"free":3181.04},{"epoch":26136323,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":521.79,"free":3181.07},{"epoch":26136324,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":521.78,"free":3181.07},{"epoch":26136325,"idl":99.76,"recv":0,"send":0,"writ":0.74,"used":523.06,"free":3179.81},{"epoch":26136326,"idl":99.97,"recv":0,"send":0,"writ":0.15,"used":522.75,"free":3180.11},{"epoch":26136327,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":522.75,"free":3180.11},{"epoch":26136328,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":522.73,"free":3180.13},{"epoch":26136329,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":522.71,"free":3180.14},{"epoch":26136330,"idl":99.71,"recv":0,"send":0,"writ":0.71,"used":523.03,"free":3179.84},{"epoch":26136331,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":522.66,"free":3180.21},{"epoch":26136332,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":522.63,"free":3180.23},{"epoch":26136333,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":522.62,"free":3180.23},{"epoch":26136334,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":522.62,"free":3180.23},{"epoch":26136335,"idl":99.73,"recv":0,"send":0,"writ":0.74,"used":523.16,"free":3179.7},{"epoch":26136336,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":523.08,"free":3179.77},{"epoch":26136337,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":523.08,"free":3179.77},{"epoch":26136338,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":523.07,"free":3179.78},{"epoch":26136339,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":522.79,"free":3180.04},{"epoch":26136340,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":523.47,"free":3179.38},{"epoch":26136341,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":522.41,"free":3180.44},{"epoch":26136342,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":522.29,"free":3180.56},{"epoch":26136343,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.26,"free":3180.58},{"epoch":26136344,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":522.25,"free":3180.6},{"epoch":26136345,"idl":99.72,"recv":0,"send":0,"writ":0.48,"used":522.73,"free":3180.14},{"epoch":26136346,"idl":99.92,"recv":0,"send":0,"writ":0.38,"used":522.51,"free":3180.36},{"epoch":26136347,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":522.48,"free":3180.38},{"epoch":26136348,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":522.47,"free":3180.38},{"epoch":26136349,"idl":99.19,"recv":0,"send":0.01,"writ":0.17,"used":522.52,"free":3180.33},{"epoch":26136350,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":523.23,"free":3179.63},{"epoch":26136351,"idl":99.91,"recv":0,"send":0,"writ":0.38,"used":523.09,"free":3179.77},{"epoch":26136352,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":523.09,"free":3179.77},{"epoch":26136353,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":523.08,"free":3179.77},{"epoch":26136354,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":523.05,"free":3179.8},{"epoch":26136355,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":522.12,"free":3180.75},{"epoch":26136356,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":523.07,"free":3179.79},{"epoch":26136357,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":522.8,"free":3180.05},{"epoch":26136358,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":522.78,"free":3180.07},{"epoch":26136359,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":522.77,"free":3180.07},{"epoch":26136360,"idl":99.83,"recv":0,"send":0,"writ":0.38,"used":522.3,"free":3180.55},{"epoch":26136361,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":522.98,"free":3179.87},{"epoch":26136362,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":522.5,"free":3180.35},{"epoch":26136363,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":522.49,"free":3180.35},{"epoch":26136364,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":522.49,"free":3180.35},{"epoch":26136365,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":522.74,"free":3180.12},{"epoch":26136366,"idl":99.76,"recv":0,"send":0,"writ":0.49,"used":521.94,"free":3180.92},{"epoch":26136367,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":520.49,"free":3182.35},{"epoch":26136368,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":520.49,"free":3182.35},{"epoch":26136369,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":522.65,"free":3180.16},{"epoch":26136370,"idl":99.86,"recv":0,"send":0,"writ":0.26,"used":522.93,"free":3179.9},{"epoch":26136371,"idl":99.75,"recv":0,"send":0,"writ":0.51,"used":522.77,"free":3180.06},{"epoch":26136372,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":521.97,"free":3180.86},{"epoch":26136373,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":522.12,"free":3180.7},{"epoch":26136374,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":522.09,"free":3180.74},{"epoch":26136375,"idl":99.76,"recv":0,"send":0,"writ":0.26,"used":523.08,"free":3179.77},{"epoch":26136376,"idl":99.77,"recv":0,"send":0,"writ":0.5,"used":523,"free":3179.84},{"epoch":26136377,"idl":99.91,"recv":0,"send":0,"writ":0.28,"used":522.09,"free":3180.75},{"epoch":26136378,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":522.09,"free":3180.75},{"epoch":26136379,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":522.06,"free":3180.77},{"epoch":26136380,"idl":99.85,"recv":0,"send":0,"writ":0.25,"used":522.32,"free":3180.52},{"epoch":26136381,"idl":99.79,"recv":0,"send":0,"writ":0.46,"used":523,"free":3179.84},{"epoch":26136382,"idl":99.92,"recv":0,"send":0,"writ":0.22,"used":523.05,"free":3179.79},{"epoch":26136383,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":523.02,"free":3179.82},{"epoch":26136384,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":523.01,"free":3179.82},{"epoch":26136385,"idl":99.71,"recv":0,"send":0,"writ":0.28,"used":522.12,"free":3180.72},{"epoch":26136386,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":522.03,"free":3180.81},{"epoch":26136387,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":522.84,"free":3179.99},{"epoch":26136388,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":522.49,"free":3180.34},{"epoch":26136389,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":522.49,"free":3180.34},{"epoch":26136390,"idl":99.82,"recv":0,"send":0,"writ":0.25,"used":521.54,"free":3181.3},{"epoch":26136391,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":521.48,"free":3181.36},{"epoch":26136392,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":523.3,"free":3179.53},{"epoch":26136393,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":522.95,"free":3179.88},{"epoch":26136394,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":522.92,"free":3179.91},{"epoch":26136395,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":523.18,"free":3179.67},{"epoch":26136396,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":523.17,"free":3179.67},{"epoch":26136397,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":522.63,"free":3180.2},{"epoch":26136398,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":522.12,"free":3180.71},{"epoch":26136399,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":522.59,"free":3180.21},{"epoch":26136400,"idl":99.81,"recv":0,"send":0,"writ":0.25,"used":523.1,"free":3179.72},{"epoch":26136401,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":522.97,"free":3179.85},{"epoch":26136402,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":523.3,"free":3179.51},{"epoch":26136403,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":522.82,"free":3179.99},{"epoch":26136404,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":522.81,"free":3179.99},{"epoch":26136405,"idl":99.84,"recv":0,"send":0,"writ":0.26,"used":522.32,"free":3180.5},{"epoch":26136406,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":522.31,"free":3180.51},{"epoch":26136407,"idl":99.67,"recv":0,"send":0,"writ":0.5,"used":522.78,"free":3180.03},{"epoch":26136408,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":522.53,"free":3180.28},{"epoch":26136409,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":522.51,"free":3180.3},{"epoch":26136410,"idl":99.85,"recv":0,"send":0,"writ":0.25,"used":523.25,"free":3179.57},{"epoch":26136411,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":523.26,"free":3179.56},{"epoch":26136412,"idl":99.75,"recv":0,"send":0,"writ":0.5,"used":523.58,"free":3179.23},{"epoch":26136413,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":523.22,"free":3179.59},{"epoch":26136414,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":523.22,"free":3179.59},{"epoch":26136415,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":521.62,"free":3181.2},{"epoch":26136416,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":521.48,"free":3181.34},{"epoch":26136417,"idl":99.62,"recv":0,"send":0,"writ":0.4,"used":522.11,"free":3180.7},{"epoch":26136418,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":521.47,"free":3181.34},{"epoch":26136419,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":521.46,"free":3181.35},{"epoch":26136420,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":522.1,"free":3180.72},{"epoch":26136421,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":522.12,"free":3180.7},{"epoch":26136422,"idl":99.71,"recv":0,"send":0,"writ":0.42,"used":522.79,"free":3180.02},{"epoch":26136423,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":523.31,"free":3179.49},{"epoch":26136424,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":523.3,"free":3179.5},{"epoch":26136425,"idl":99.68,"recv":0,"send":0,"writ":0.26,"used":523.32,"free":3179.5},{"epoch":26136426,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":523.29,"free":3179.53},{"epoch":26136427,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":523.28,"free":3179.53},{"epoch":26136428,"idl":99.59,"recv":0,"send":0,"writ":0.57,"used":523.4,"free":3179.41},{"epoch":26136429,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":523.23,"free":3179.55},{"epoch":26136430,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":523.25,"free":3179.54},{"epoch":26136431,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":523.23,"free":3179.56},{"epoch":26136432,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":523.2,"free":3179.58},{"epoch":26136433,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":522.83,"free":3179.95},{"epoch":26136434,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":522.45,"free":3180.33},{"epoch":26136435,"idl":99.77,"recv":0,"send":0,"writ":0.26,"used":522.68,"free":3180.12},{"epoch":26136436,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":522.68,"free":3180.12},{"epoch":26136437,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":522.92,"free":3179.88},{"epoch":26136438,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":523.27,"free":3179.53},{"epoch":26136439,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":522.93,"free":3179.87},{"epoch":26136440,"idl":99.6,"recv":0,"send":0,"writ":0.27,"used":521.16,"free":3181.65},{"epoch":26136441,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":521.11,"free":3181.69},{"epoch":26136442,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":521.08,"free":3181.72},{"epoch":26136443,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":523.29,"free":3179.5},{"epoch":26136444,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":523.52,"free":3179.26},{"epoch":26136445,"idl":99.68,"recv":0,"send":0,"writ":0.28,"used":523.52,"free":3179.28},{"epoch":26136446,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":523.51,"free":3179.29},{"epoch":26136447,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":523.5,"free":3179.29},{"epoch":26136448,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":523.74,"free":3179.05},{"epoch":26136449,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":523.22,"free":3179.57},{"epoch":26136450,"idl":99.71,"recv":0,"send":0,"writ":0.25,"used":523.48,"free":3179.32},{"epoch":26136451,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":523.48,"free":3179.32},{"epoch":26136452,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":523.45,"free":3179.34},{"epoch":26136453,"idl":99.72,"recv":0,"send":0,"writ":0.5,"used":523.78,"free":3179.01},{"epoch":26136454,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":523.43,"free":3179.35},{"epoch":26136455,"idl":99.75,"recv":0,"send":0,"writ":0.26,"used":523.21,"free":3179.59},{"epoch":26136456,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":523.17,"free":3179.63},{"epoch":26136457,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":522.3,"free":3180.5},{"epoch":26136458,"idl":99.65,"recv":0,"send":0,"writ":0.4,"used":522.73,"free":3180.06},{"epoch":26136459,"idl":99.78,"recv":0,"send":0,"writ":0.45,"used":522.66,"free":3180.1},{"epoch":26136460,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":523.01,"free":3179.77},{"epoch":26136461,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":522.97,"free":3179.81},{"epoch":26136462,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":522.83,"free":3179.94},{"epoch":26136463,"idl":99.73,"recv":0,"send":0,"writ":0.38,"used":523.55,"free":3179.22},{"epoch":26136464,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":522.79,"free":3179.97},{"epoch":26136465,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":522.32,"free":3180.46},{"epoch":26136466,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":522.31,"free":3180.46},{"epoch":26136467,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":522.28,"free":3180.49},{"epoch":26136468,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":522.27,"free":3180.5},{"epoch":26136469,"idl":94.49,"recv":0.31,"send":0.01,"writ":259.59,"used":536.25,"free":3167.52},{"epoch":26136470,"idl":99.82,"recv":0,"send":0,"writ":0.26,"used":525.25,"free":3177.22},{"epoch":26136471,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":525.26,"free":3177.21},{"epoch":26136472,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":525.25,"free":3177.21},{"epoch":26136473,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":525.24,"free":3177.22},{"epoch":26136474,"idl":99.58,"recv":0,"send":0,"writ":0.62,"used":523.62,"free":3178.89},{"epoch":26136475,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":522.02,"free":3180.53},{"epoch":26136476,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":521.97,"free":3180.57},{"epoch":26136477,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":521.97,"free":3180.57},{"epoch":26136478,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":521.96,"free":3180.57},{"epoch":26136479,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":523.09,"free":3179.46},{"epoch":26136480,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":522.64,"free":3179.94},{"epoch":26136481,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":522.63,"free":3179.95},{"epoch":26136482,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":522.62,"free":3179.96},{"epoch":26136483,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":522.59,"free":3179.98},{"epoch":26136484,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":523.09,"free":3179.48},{"epoch":26136485,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":522.64,"free":3179.94},{"epoch":26136486,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":522.56,"free":3180.02},{"epoch":26136487,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":522.56,"free":3180.02},{"epoch":26136488,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":522.55,"free":3180.02},{"epoch":26136489,"idl":99.61,"recv":0,"send":0,"writ":0.66,"used":523.4,"free":3179.14},{"epoch":26136490,"idl":99.65,"recv":0,"send":0,"writ":0.32,"used":522.07,"free":3180.49},{"epoch":26136491,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":522.03,"free":3180.53},{"epoch":26136492,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":522,"free":3180.55},{"epoch":26136493,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":521.99,"free":3180.55},{"epoch":26136494,"idl":99.64,"recv":0,"send":0,"writ":0.56,"used":522.54,"free":3180.04},{"epoch":26136495,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":522.74,"free":3179.87},{"epoch":26136496,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":522.72,"free":3179.89},{"epoch":26136497,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":522.71,"free":3179.89},{"epoch":26136498,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":522.86,"free":3179.74},{"epoch":26136499,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":523.21,"free":3179.39},{"epoch":26136500,"idl":99.83,"recv":0,"send":0,"writ":0.48,"used":523.12,"free":3179.5},{"epoch":26136501,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":523.11,"free":3179.5},{"epoch":26136502,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":523.08,"free":3179.52},{"epoch":26136503,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":523.08,"free":3179.52},{"epoch":26136504,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":523.43,"free":3179.17},{"epoch":26136505,"idl":99.8,"recv":0,"send":0,"writ":0.52,"used":523.33,"free":3179.28},{"epoch":26136506,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":523.3,"free":3179.31},{"epoch":26136507,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":523.3,"free":3179.31},{"epoch":26136508,"idl":99.85,"recv":0.01,"send":0,"writ":0.16,"used":523.29,"free":3179.31},{"epoch":26136509,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":523.26,"free":3179.34},{"epoch":26136510,"idl":99.62,"recv":0,"send":0,"writ":0.7,"used":522.49,"free":3180.13},{"epoch":26136511,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":521.79,"free":3180.82},{"epoch":26136512,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":521.76,"free":3180.85},{"epoch":26136513,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":521.76,"free":3180.85},{"epoch":26136514,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":521.75,"free":3180.85},{"epoch":26136515,"idl":99.63,"recv":0,"send":0,"writ":0.69,"used":523.32,"free":3179.29},{"epoch":26136516,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":523.21,"free":3179.4},{"epoch":26136517,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":523.2,"free":3179.4},{"epoch":26136518,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":523.2,"free":3179.4},{"epoch":26136519,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":522.96,"free":3179.61},{"epoch":26136520,"idl":99.65,"recv":0,"send":0,"writ":0.7,"used":523.21,"free":3179.38},{"epoch":26136521,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":522.92,"free":3179.67},{"epoch":26136522,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":522.62,"free":3179.97},{"epoch":26136523,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.16,"used":522.53,"free":3180.05},{"epoch":26136524,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":522.49,"free":3180.09},{"epoch":26136525,"idl":99.6,"recv":0,"send":0,"writ":0.69,"used":522.67,"free":3179.92},{"epoch":26136526,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":522.74,"free":3179.85},{"epoch":26136527,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":522.72,"free":3179.86},{"epoch":26136528,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":522.7,"free":3179.88},{"epoch":26136529,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":522.7,"free":3179.88},{"epoch":26136530,"idl":99.2,"recv":0,"send":0,"writ":0.8,"used":523.92,"free":3178.67},{"epoch":26136531,"idl":98.59,"recv":0,"send":0,"writ":0.18,"used":523.17,"free":3179.41},{"epoch":26136532,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":523.21,"free":3179.37},{"epoch":26136533,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":523.34,"free":3179.23},{"epoch":26136534,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":523.34,"free":3179.23},{"epoch":26136535,"idl":99.62,"recv":0,"send":0,"writ":0.55,"used":523.78,"free":3178.81},{"epoch":26136536,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":523.32,"free":3179.26},{"epoch":26136537,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":523.32,"free":3179.26},{"epoch":26136538,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":523.31,"free":3179.26},{"epoch":26136539,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":523.29,"free":3179.28},{"epoch":26136540,"idl":99.37,"recv":0,"send":0,"writ":0.67,"used":523.66,"free":3178.93},{"epoch":26136541,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":523.3,"free":3179.29},{"epoch":26136542,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":523.29,"free":3179.29},{"epoch":26136543,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":523.26,"free":3179.32},{"epoch":26136544,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":523.25,"free":3179.32},{"epoch":26136545,"idl":99.63,"recv":0,"send":0,"writ":0.51,"used":523.16,"free":3179.43},{"epoch":26136546,"idl":99.84,"recv":0,"send":0.02,"writ":0.41,"used":523.22,"free":3179.35},{"epoch":26136547,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":523.18,"free":3179.39},{"epoch":26136548,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":523.18,"free":3179.39},{"epoch":26136549,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":523.18,"free":3179.36},{"epoch":26136550,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":522.46,"free":3180.09},{"epoch":26136551,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":523.66,"free":3178.89},{"epoch":26136552,"idl":99.01,"recv":0,"send":0,"writ":0.16,"used":523.39,"free":3179.16},{"epoch":26136553,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":523.53,"free":3179.01},{"epoch":26136554,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":523.54,"free":3179.01},{"epoch":26136555,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":523.12,"free":3179.45},{"epoch":26136556,"idl":99.61,"recv":0,"send":0,"writ":0.59,"used":523.38,"free":3179.19},{"epoch":26136557,"idl":99.82,"recv":0,"send":0,"writ":0.22,"used":523.04,"free":3179.52},{"epoch":26136558,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":523.02,"free":3179.54},{"epoch":26136559,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":523.02,"free":3179.54},{"epoch":26136560,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":523.51,"free":3179.06},{"epoch":26136561,"idl":99.68,"recv":0,"send":0.02,"writ":0.55,"used":523.1,"free":3179.47},{"epoch":26136562,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":522,"free":3180.57},{"epoch":26136563,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":521.97,"free":3180.59},{"epoch":26136564,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":521.97,"free":3180.59},{"epoch":26136565,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":523.19,"free":3179.38},{"epoch":26136566,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":523.54,"free":3179.03},{"epoch":26136567,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":523.18,"free":3179.39},{"epoch":26136568,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":523.17,"free":3179.39},{"epoch":26136569,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":523.2,"free":3179.36},{"epoch":26136570,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.34,"used":523.27,"free":3179.3},{"epoch":26136571,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":523.59,"free":3178.97},{"epoch":26136572,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":523.22,"free":3179.34},{"epoch":26136573,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":523.2,"free":3179.36},{"epoch":26136574,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":523.2,"free":3179.36},{"epoch":26136575,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":523.45,"free":3179.11},{"epoch":26136576,"idl":99.72,"recv":0,"send":0,"writ":0.42,"used":523.94,"free":3178.62},{"epoch":26136577,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":523.42,"free":3179.14},{"epoch":26136578,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":523.41,"free":3179.14},{"epoch":26136579,"idl":99.68,"recv":0,"send":0,"writ":0.39,"used":523.64,"free":3178.89},{"epoch":26136580,"idl":99.8,"recv":0,"send":0,"writ":0.26,"used":523.4,"free":3179.14},{"epoch":26136581,"idl":99.7,"recv":0,"send":0,"writ":0.34,"used":523.55,"free":3179},{"epoch":26136582,"idl":99.82,"recv":0.02,"send":1.12,"writ":0.41,"used":522.7,"free":3179.84},{"epoch":26136583,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":522.81,"free":3179.73},{"epoch":26136584,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":522.79,"free":3179.75},{"epoch":26136585,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":523.77,"free":3178.77},{"epoch":26136586,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":524.03,"free":3178.51},{"epoch":26136587,"idl":99.87,"recv":0,"send":0,"writ":0.4,"used":523.26,"free":3179.28},{"epoch":26136588,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":523.25,"free":3179.29},{"epoch":26136589,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":523.24,"free":3179.29},{"epoch":26136590,"idl":99.83,"recv":0,"send":0,"writ":0.26,"used":523.48,"free":3179.07},{"epoch":26136591,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":523.48,"free":3179.07},{"epoch":26136592,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":523.61,"free":3178.93},{"epoch":26136593,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":523.2,"free":3179.34},{"epoch":26136594,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.18,"free":3179.35},{"epoch":26136595,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":522.23,"free":3180.31},{"epoch":26136596,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":522.2,"free":3180.34},{"epoch":26136597,"idl":99.82,"recv":0,"send":0,"writ":0.6,"used":523.19,"free":3179.35},{"epoch":26136598,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":522.91,"free":3179.63},{"epoch":26136599,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":522.9,"free":3179.63},{"epoch":26136600,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":522.74,"free":3179.8},{"epoch":26136601,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":522.66,"free":3179.88},{"epoch":26136602,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":523.66,"free":3178.88},{"epoch":26136603,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":523.8,"free":3178.73},{"epoch":26136604,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.79,"free":3178.74},{"epoch":26136605,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":522.83,"free":3179.71},{"epoch":26136606,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":522.8,"free":3179.75},{"epoch":26136607,"idl":99.77,"recv":0,"send":0,"writ":0.49,"used":523.62,"free":3178.91},{"epoch":26136608,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":523.74,"free":3178.79},{"epoch":26136609,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":523.73,"free":3178.78},{"epoch":26136610,"idl":99.82,"recv":0,"send":0,"writ":0.26,"used":522.77,"free":3179.76},{"epoch":26136611,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.73,"free":3179.79},{"epoch":26136612,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":523.13,"free":3179.39},{"epoch":26136613,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":523.21,"free":3179.3},{"epoch":26136614,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":523.18,"free":3179.33},{"epoch":26136615,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":523.2,"free":3179.33},{"epoch":26136616,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.19,"free":3179.35},{"epoch":26136617,"idl":99.79,"recv":0,"send":0,"writ":0.44,"used":523.39,"free":3179.15},{"epoch":26136618,"idl":99.95,"recv":0,"send":0,"writ":0.3,"used":522.91,"free":3179.63},{"epoch":26136619,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":522.89,"free":3179.64},{"epoch":26136620,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":521.44,"free":3181.11},{"epoch":26136621,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":521.45,"free":3181.1},{"epoch":26136622,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":521.59,"free":3180.95},{"epoch":26136623,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":522.87,"free":3179.66},{"epoch":26136624,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":522.54,"free":3179.99},{"epoch":26136625,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":523.03,"free":3179.52},{"epoch":26136626,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":523.01,"free":3179.53},{"epoch":26136627,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":523.01,"free":3179.53},{"epoch":26136628,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":522.63,"free":3179.9},{"epoch":26136629,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":522.23,"free":3180.3},{"epoch":26136630,"idl":99.81,"recv":0,"send":0,"writ":0.25,"used":523.21,"free":3179.33},{"epoch":26136631,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.23,"free":3179.32},{"epoch":26136632,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":523.22,"free":3179.32},{"epoch":26136633,"idl":99.74,"recv":0,"send":0,"writ":0.58,"used":523.34,"free":3179.19},{"epoch":26136634,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":522.93,"free":3179.59},{"epoch":26136635,"idl":99.82,"recv":0,"send":0,"writ":0.25,"used":522,"free":3180.55},{"epoch":26136636,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":521.95,"free":3180.58},{"epoch":26136637,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":521.92,"free":3180.61},{"epoch":26136638,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":523.12,"free":3179.41},{"epoch":26136639,"idl":95.08,"recv":40.93,"send":0.08,"writ":103.63,"used":529.65,"free":3172.96},{"epoch":26136640,"idl":99.65,"recv":0,"send":0,"writ":78.29,"used":525.55,"free":3136.62},{"epoch":26136641,"idl":99.9,"recv":0,"send":0,"writ":0.23,"used":525.47,"free":3136.69},{"epoch":26136642,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":525.29,"free":3136.87},{"epoch":26136643,"idl":99.8,"recv":0,"send":0,"writ":0.44,"used":525.74,"free":3136.41},{"epoch":26136644,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":525.41,"free":3136.75},{"epoch":26136645,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":523.15,"free":3139.06},{"epoch":26136646,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":523.14,"free":3139.06},{"epoch":26136647,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":523.13,"free":3139.07},{"epoch":26136648,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":523.57,"free":3138.63},{"epoch":26136649,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":523.34,"free":3138.85},{"epoch":26136650,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":523.36,"free":3138.86},{"epoch":26136651,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":523.36,"free":3138.86},{"epoch":26136652,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":523.34,"free":3138.88},{"epoch":26136653,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":523.67,"free":3138.54},{"epoch":26136654,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.31,"free":3138.9},{"epoch":26136655,"idl":99.78,"recv":0,"send":0,"writ":0.25,"used":523.09,"free":3139.14},{"epoch":26136656,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.06,"free":3139.16},{"epoch":26136657,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":523.05,"free":3139.17},{"epoch":26136658,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":523.73,"free":3138.48},{"epoch":26136659,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":523.23,"free":3138.98},{"epoch":26136660,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":522.51,"free":3139.71},{"epoch":26136661,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":522.47,"free":3139.75},{"epoch":26136662,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":522.47,"free":3139.75},{"epoch":26136663,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":522.46,"free":3139.76},{"epoch":26136664,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":523.48,"free":3138.73},{"epoch":26136665,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":523.52,"free":3138.71},{"epoch":26136666,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":523.42,"free":3138.8},{"epoch":26136667,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.39,"free":3138.83},{"epoch":26136668,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":523.38,"free":3138.83},{"epoch":26136669,"idl":99.65,"recv":0,"send":0,"writ":0.69,"used":523.56,"free":3138.64},{"epoch":26136670,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":523.38,"free":3138.84},{"epoch":26136671,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":523.35,"free":3138.86},{"epoch":26136672,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":523.35,"free":3138.86},{"epoch":26136673,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.35,"free":3138.86},{"epoch":26136674,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":523.69,"free":3138.55},{"epoch":26136675,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":523.1,"free":3139.15},{"epoch":26136676,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.08,"free":3139.17},{"epoch":26136677,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":523.32,"free":3138.93},{"epoch":26136678,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":523.31,"free":3138.93},{"epoch":26136679,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":523.69,"free":3138.57},{"epoch":26136680,"idl":99.83,"recv":0,"send":0,"writ":0.26,"used":523.06,"free":3139.22},{"epoch":26136681,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":523.09,"free":3139.18},{"epoch":26136682,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.23,"free":3139.04},{"epoch":26136683,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":523.2,"free":3139.06},{"epoch":26136684,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":523.71,"free":3138.55},{"epoch":26136685,"idl":98.6,"recv":0,"send":0,"writ":15.48,"used":525.29,"free":3137.4},{"epoch":26136686,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":522.5,"free":3139.81},{"epoch":26136687,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":522.47,"free":3139.83},{"epoch":26136688,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":522.47,"free":3139.83},{"epoch":26136689,"idl":99.77,"recv":0,"send":0,"writ":0.44,"used":523.01,"free":3139.28},{"epoch":26136690,"idl":99.9,"recv":0,"send":0,"writ":0.39,"used":523.22,"free":3139.1},{"epoch":26136691,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":523.19,"free":3139.13},{"epoch":26136692,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":523.18,"free":3139.13},{"epoch":26136693,"idl":99.25,"recv":0,"send":0,"writ":0.16,"used":523.95,"free":3138.34},{"epoch":26136694,"idl":89.04,"recv":0,"send":0,"writ":193.94,"used":547.86,"free":3132.51},{"epoch":26136695,"idl":99.86,"recv":0,"send":0,"writ":0.43,"used":525.58,"free":3177.4},{"epoch":26136696,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":525.57,"free":3177.41},{"epoch":26136697,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":525.56,"free":3177.41},{"epoch":26136698,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":525.56,"free":3177.41},{"epoch":26136699,"idl":99.66,"recv":0,"send":0,"writ":0.75,"used":525.11,"free":3177.86},{"epoch":26136700,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":523.35,"free":3179.64},{"epoch":26136701,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":523.27,"free":3179.73},{"epoch":26136702,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":523.06,"free":3179.95},{"epoch":26136703,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.05,"free":3179.95},{"epoch":26136704,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":523.05,"free":3179.96},{"epoch":26136705,"idl":99.68,"recv":0,"send":0,"writ":0.66,"used":524.03,"free":3179},{"epoch":26136706,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":523.6,"free":3179.43},{"epoch":26136707,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":523.74,"free":3179.29},{"epoch":26136708,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":523.74,"free":3179.29},{"epoch":26136709,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":523.73,"free":3179.29},{"epoch":26136710,"idl":99.69,"recv":0,"send":0,"writ":0.75,"used":523.68,"free":3179.35},{"epoch":26136711,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":523.22,"free":3179.81},{"epoch":26136712,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":523.22,"free":3179.81},{"epoch":26136713,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":523.2,"free":3179.82},{"epoch":26136714,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":523.18,"free":3179.84},{"epoch":26136715,"idl":99.68,"recv":0,"send":0,"writ":0.72,"used":523.44,"free":3179.59},{"epoch":26136716,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":523.67,"free":3179.36},{"epoch":26136717,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":523.64,"free":3179.38},{"epoch":26136718,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":523.64,"free":3179.38},{"epoch":26136719,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":523.63,"free":3179.38},{"epoch":26136720,"idl":99.64,"recv":0,"send":0,"writ":0.73,"used":523.84,"free":3179.19},{"epoch":26136721,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":523.37,"free":3179.66},{"epoch":26136722,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":523.37,"free":3179.66},{"epoch":26136723,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":523.36,"free":3179.66},{"epoch":26136724,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.33,"free":3179.68},{"epoch":26136725,"idl":99.68,"recv":0,"send":0,"writ":0.76,"used":523.26,"free":3179.77},{"epoch":26136726,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":523.58,"free":3179.44},{"epoch":26136727,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":523.6,"free":3179.42},{"epoch":26136728,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.73,"free":3179.29},{"epoch":26136729,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":523.96,"free":3179.04},{"epoch":26136730,"idl":99.36,"recv":0,"send":0,"writ":0.67,"used":524.2,"free":3178.81},{"epoch":26136731,"idl":99.9,"recv":0,"send":0,"writ":0.35,"used":523.69,"free":3179.31},{"epoch":26136732,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":523.68,"free":3179.31},{"epoch":26136733,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":523.65,"free":3179.34},{"epoch":26136734,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":523.64,"free":3179.34},{"epoch":26136735,"idl":99.71,"recv":0,"send":0,"writ":0.45,"used":524.23,"free":3178.77},{"epoch":26136736,"idl":99.93,"recv":0,"send":0,"writ":0.43,"used":523.65,"free":3179.35},{"epoch":26136737,"idl":99.92,"recv":0,"send":0,"writ":0.22,"used":523.62,"free":3179.37},{"epoch":26136738,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":523.61,"free":3179.37},{"epoch":26136739,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":523.61,"free":3179.37},{"epoch":26136740,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":523.84,"free":3179.15},{"epoch":26136741,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":523.51,"free":3179.48},{"epoch":26136742,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":523.09,"free":3179.89},{"epoch":26136743,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":523.08,"free":3179.9},{"epoch":26136744,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":523.05,"free":3179.93},{"epoch":26136745,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":522.83,"free":3180.17},{"epoch":26136746,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":523.87,"free":3179.12},{"epoch":26136747,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":523.56,"free":3179.43},{"epoch":26136748,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.7,"free":3179.28},{"epoch":26136749,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":523.7,"free":3179.28},{"epoch":26136750,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":523.94,"free":3179.05},{"epoch":26136751,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":524.1,"free":3178.88},{"epoch":26136752,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":523.67,"free":3179.31},{"epoch":26136753,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":523.66,"free":3179.31},{"epoch":26136754,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":523.63,"free":3179.34},{"epoch":26136755,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":522.73,"free":3180.26},{"epoch":26136756,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":523.67,"free":3179.32},{"epoch":26136757,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":523.12,"free":3179.86},{"epoch":26136758,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":523.11,"free":3179.86},{"epoch":26136759,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":524.07,"free":3178.88},{"epoch":26136760,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":523.1,"free":3179.87},{"epoch":26136761,"idl":99.78,"recv":0,"send":0,"writ":0.64,"used":523.37,"free":3179.62},{"epoch":26136762,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":523.09,"free":3179.89},{"epoch":26136763,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.06,"free":3179.92},{"epoch":26136764,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":523.05,"free":3179.92},{"epoch":26136765,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":523.07,"free":3179.91},{"epoch":26136766,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":523.37,"free":3179.61},{"epoch":26136767,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":522.46,"free":3180.51},{"epoch":26136768,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":522.47,"free":3180.5},{"epoch":26136769,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":522.45,"free":3180.52},{"epoch":26136770,"idl":99.89,"recv":0,"send":0,"writ":0.26,"used":522.7,"free":3180.28},{"epoch":26136771,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":523.14,"free":3179.84},{"epoch":26136772,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":523.15,"free":3179.82},{"epoch":26136773,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":523.15,"free":3179.82},{"epoch":26136774,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":523.14,"free":3179.83},{"epoch":26136775,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":523.38,"free":3179.61},{"epoch":26136776,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":523.72,"free":3179.26},{"epoch":26136777,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":523.37,"free":3179.61},{"epoch":26136778,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":523.36,"free":3179.62},{"epoch":26136779,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":523.33,"free":3179.64},{"epoch":26136780,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":522.14,"free":3180.85},{"epoch":26136781,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":522.11,"free":3180.87},{"epoch":26136782,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":523.28,"free":3179.7},{"epoch":26136783,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":522.81,"free":3180.16},{"epoch":26136784,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":522.81,"free":3180.16},{"epoch":26136785,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":523.07,"free":3179.92},{"epoch":26136786,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":523.06,"free":3179.92},{"epoch":26136787,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":523.58,"free":3179.4},{"epoch":26136788,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":523.45,"free":3179.52},{"epoch":26136789,"idl":99.71,"recv":0,"send":0,"writ":0.35,"used":523.7,"free":3179.24},{"epoch":26136790,"idl":99.86,"recv":0,"send":0,"writ":0.38,"used":523.46,"free":3179.49},{"epoch":26136791,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":523.41,"free":3179.54},{"epoch":26136792,"idl":99.76,"recv":0,"send":0,"writ":0.6,"used":523.76,"free":3179.19},{"epoch":26136793,"idl":99.24,"recv":0,"send":0,"writ":0.2,"used":523.4,"free":3179.54},{"epoch":26136794,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":523.39,"free":3179.54},{"epoch":26136795,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":522.67,"free":3180.28},{"epoch":26136796,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":522.64,"free":3180.31},{"epoch":26136797,"idl":99.79,"recv":0,"send":0,"writ":0.46,"used":523.36,"free":3179.59},{"epoch":26136798,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":523.34,"free":3179.6},{"epoch":26136799,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":523.34,"free":3179.6},{"epoch":26136800,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":523.59,"free":3179.37},{"epoch":26136801,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":523.57,"free":3179.39},{"epoch":26136802,"idl":99.78,"recv":0,"send":0,"writ":0.46,"used":524.09,"free":3178.86},{"epoch":26136803,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":523.53,"free":3179.4},{"epoch":26136804,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.52,"free":3179.42},{"epoch":26136805,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":523.05,"free":3179.9},{"epoch":26136806,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":523.03,"free":3179.92},{"epoch":26136807,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":523.35,"free":3179.59},{"epoch":26136808,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":523.02,"free":3179.92},{"epoch":26136809,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":523.18,"free":3179.75},{"epoch":26136810,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":522.45,"free":3180.5},{"epoch":26136811,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":522.42,"free":3180.52},{"epoch":26136812,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":522.86,"free":3180.08},{"epoch":26136813,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":522.9,"free":3180.04},{"epoch":26136814,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.87,"free":3180.06},{"epoch":26136815,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":523.86,"free":3179.09},{"epoch":26136816,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":523.86,"free":3179.08},{"epoch":26136817,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":524.18,"free":3178.76},{"epoch":26136818,"idl":99.91,"recv":0,"send":0,"writ":0.39,"used":523.33,"free":3179.6},{"epoch":26136819,"idl":99.78,"recv":0,"send":0,"writ":0.35,"used":523.58,"free":3179.33},{"epoch":26136820,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":522.87,"free":3180.05},{"epoch":26136821,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":522.79,"free":3180.13},{"epoch":26136822,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":522.57,"free":3180.35},{"epoch":26136823,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":522.9,"free":3180.01},{"epoch":26136824,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":522.31,"free":3180.59},{"epoch":26136825,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":523.54,"free":3179.38},{"epoch":26136826,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":523.53,"free":3179.39},{"epoch":26136827,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.52,"free":3179.39},{"epoch":26136828,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":523.87,"free":3179.04},{"epoch":26136829,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":523.48,"free":3179.43},{"epoch":26136830,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":522.4,"free":3180.52},{"epoch":26136831,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":522.37,"free":3180.55},{"epoch":26136832,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":522.41,"free":3180.5},{"epoch":26136833,"idl":94.91,"recv":0.37,"send":0.01,"writ":258.71,"used":537.51,"free":3165.34},{"epoch":26136834,"idl":97.48,"recv":0,"send":0,"writ":0.39,"used":526.15,"free":3177.58},{"epoch":26136835,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":525.21,"free":3178.53},{"epoch":26136836,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":525.15,"free":3178.59},{"epoch":26136837,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":525.14,"free":3178.59},{"epoch":26136838,"idl":99.8,"recv":0,"send":0,"writ":0.46,"used":524.58,"free":3179.17},{"epoch":26136839,"idl":99.93,"recv":0,"send":0,"writ":0.36,"used":522.47,"free":3181.3},{"epoch":26136840,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":522.71,"free":3181.08},{"epoch":26136841,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":522.7,"free":3181.08},{"epoch":26136842,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":522.7,"free":3181.08},{"epoch":26136843,"idl":99.71,"recv":0,"send":0,"writ":0.61,"used":523.36,"free":3180.42},{"epoch":26136844,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":523.58,"free":3180.21},{"epoch":26136845,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":524.09,"free":3179.72},{"epoch":26136846,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":524.09,"free":3179.72},{"epoch":26136847,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":524.06,"free":3179.74},{"epoch":26136848,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":524.25,"free":3179.55},{"epoch":26136849,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":523.75,"free":3180.02},{"epoch":26136850,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":523.78,"free":3180.01},{"epoch":26136851,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":523.77,"free":3180.01},{"epoch":26136852,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":523.77,"free":3180.01},{"epoch":26136853,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":524.03,"free":3179.74},{"epoch":26136854,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":523.24,"free":3180.54},{"epoch":26136855,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":523.98,"free":3179.8},{"epoch":26136856,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":523.98,"free":3179.8},{"epoch":26136857,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":523.95,"free":3179.83},{"epoch":26136858,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":523.95,"free":3179.83},{"epoch":26136859,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":524.08,"free":3179.69},{"epoch":26136860,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":523.02,"free":3180.77},{"epoch":26136861,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":522.94,"free":3180.84},{"epoch":26136862,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":522.94,"free":3180.84},{"epoch":26136863,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":522.93,"free":3180.84},{"epoch":26136864,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":524.24,"free":3179.53},{"epoch":26136865,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":522.9,"free":3180.89},{"epoch":26136866,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":522.84,"free":3180.94},{"epoch":26136867,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":522.81,"free":3180.96},{"epoch":26136868,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":522.81,"free":3180.96},{"epoch":26136869,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":523.31,"free":3180.46},{"epoch":26136870,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":523.27,"free":3180.51},{"epoch":26136871,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":523.28,"free":3180.5},{"epoch":26136872,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.27,"free":3180.5},{"epoch":26136873,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":523.26,"free":3180.51},{"epoch":26136874,"idl":99.75,"recv":0.01,"send":0.25,"writ":0.57,"used":523.28,"free":3180.49},{"epoch":26136875,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":524.02,"free":3179.76},{"epoch":26136876,"idl":99.9,"recv":0,"send":0.01,"writ":0.16,"used":524.01,"free":3179.77},{"epoch":26136877,"idl":99.87,"recv":0.03,"send":1.49,"writ":0.18,"used":523.99,"free":3179.78},{"epoch":26136878,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":523.98,"free":3179.78},{"epoch":26136879,"idl":99.62,"recv":0,"send":0,"writ":0.69,"used":524.21,"free":3179.53},{"epoch":26136880,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":523.97,"free":3179.79},{"epoch":26136881,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":523.91,"free":3179.84},{"epoch":26136882,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.46,"free":3180.29},{"epoch":26136883,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":523.44,"free":3180.3},{"epoch":26136884,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":524.14,"free":3179.6},{"epoch":26136885,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":522.73,"free":3181.02},{"epoch":26136886,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":522.8,"free":3180.95},{"epoch":26136887,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":522.86,"free":3180.89},{"epoch":26136888,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":522.86,"free":3180.89},{"epoch":26136889,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":523.34,"free":3180.4},{"epoch":26136890,"idl":99.74,"recv":0,"send":0,"writ":0.36,"used":523.34,"free":3180.41},{"epoch":26136891,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":523.32,"free":3180.43},{"epoch":26136892,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":523.3,"free":3180.44},{"epoch":26136893,"idl":99.88,"recv":0.02,"send":2.03,"writ":0.3,"used":523.23,"free":3180.5},{"epoch":26136894,"idl":99.56,"recv":0.12,"send":27.86,"writ":0.77,"used":524.14,"free":3179.58},{"epoch":26136895,"idl":99.41,"recv":0.27,"send":66.93,"writ":0.42,"used":525,"free":3178.72},{"epoch":26136896,"idl":99.86,"recv":0,"send":0.01,"writ":0.19,"used":524.25,"free":3179.47},{"epoch":26136897,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":524.24,"free":3179.47},{"epoch":26136898,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":524.22,"free":3179.49},{"epoch":26136899,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":524.2,"free":3179.5},{"epoch":26136900,"idl":99.4,"recv":0,"send":0,"writ":0.67,"used":523.41,"free":3180.31},{"epoch":26136901,"idl":99.9,"recv":0.01,"send":0.1,"writ":0.2,"used":522.68,"free":3181.04},{"epoch":26136902,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":522.66,"free":3181.06},{"epoch":26136903,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":522.63,"free":3181.08},{"epoch":26136904,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":522.63,"free":3181.08},{"epoch":26136905,"idl":99.68,"recv":0,"send":0,"writ":0.74,"used":524.59,"free":3179.14},{"epoch":26136906,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":524.03,"free":3179.69},{"epoch":26136907,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":524.03,"free":3179.69},{"epoch":26136908,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":523.99,"free":3179.72},{"epoch":26136909,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":523.97,"free":3179.71},{"epoch":26136910,"idl":99.68,"recv":0,"send":0,"writ":0.68,"used":524.39,"free":3179.32},{"epoch":26136911,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":524.2,"free":3179.51},{"epoch":26136912,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":524.2,"free":3179.51},{"epoch":26136913,"idl":99.88,"recv":0.01,"send":0.28,"writ":0.15,"used":524.19,"free":3179.52},{"epoch":26136914,"idl":99.83,"recv":0.01,"send":0.76,"writ":0.2,"used":524.18,"free":3179.54},{"epoch":26136915,"idl":99.67,"recv":0,"send":0,"writ":0.66,"used":524.55,"free":3179.19},{"epoch":26136916,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":524.17,"free":3179.57},{"epoch":26136917,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":524.16,"free":3179.57},{"epoch":26136918,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":524.15,"free":3179.57},{"epoch":26136919,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":524.14,"free":3179.58},{"epoch":26136920,"idl":99.73,"recv":0,"send":0,"writ":0.68,"used":523.98,"free":3179.77},{"epoch":26136921,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":523.39,"free":3180.34},{"epoch":26136922,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":523.39,"free":3180.34},{"epoch":26136923,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":523.37,"free":3180.36},{"epoch":26136924,"idl":99.86,"recv":0.02,"send":2.13,"writ":0.2,"used":523.39,"free":3180.33},{"epoch":26136925,"idl":99.67,"recv":0.02,"send":2.76,"writ":0.93,"used":524.02,"free":3179.7},{"epoch":26136926,"idl":99.91,"recv":0,"send":0,"writ":0.24,"used":522.87,"free":3180.84},{"epoch":26136927,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":522.87,"free":3180.84},{"epoch":26136928,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":522.86,"free":3180.84},{"epoch":26136929,"idl":99.89,"recv":0.01,"send":0.1,"writ":0.18,"used":522.84,"free":3180.85},{"epoch":26136930,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":523.57,"free":3180.13},{"epoch":26136931,"idl":99.9,"recv":0,"send":0,"writ":0.37,"used":523.42,"free":3180.28},{"epoch":26136932,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":523.41,"free":3180.28},{"epoch":26136933,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":523.41,"free":3180.28},{"epoch":26136934,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":523.37,"free":3180.31},{"epoch":26136935,"idl":99.61,"recv":0,"send":0,"writ":0.58,"used":523.17,"free":3180.54},{"epoch":26136936,"idl":99.91,"recv":0,"send":0,"writ":0.32,"used":523.63,"free":3180.07},{"epoch":26136937,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":523.63,"free":3180.07},{"epoch":26136938,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.62,"free":3180.07},{"epoch":26136939,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":523.35,"free":3180.32},{"epoch":26136940,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":522.64,"free":3181.04},{"epoch":26136941,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":524.21,"free":3179.46},{"epoch":26136942,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":523.07,"free":3180.61},{"epoch":26136943,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":523.06,"free":3180.61},{"epoch":26136944,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":523.06,"free":3180.62},{"epoch":26136945,"idl":99.83,"recv":0.01,"send":0.1,"writ":0.33,"used":523.18,"free":3180.52},{"epoch":26136946,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":524,"free":3179.69},{"epoch":26136947,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":523.41,"free":3180.28},{"epoch":26136948,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.4,"free":3180.29},{"epoch":26136949,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.4,"free":3180.29},{"epoch":26136950,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":523.42,"free":3180.28},{"epoch":26136951,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":523.87,"free":3179.83},{"epoch":26136952,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":523.62,"free":3180.07},{"epoch":26136953,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":523.61,"free":3180.07},{"epoch":26136954,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":523.61,"free":3180.08},{"epoch":26136955,"idl":99.47,"recv":0,"send":0,"writ":0.29,"used":523.35,"free":3180.35},{"epoch":26136956,"idl":99.51,"recv":0.1,"send":28.32,"writ":0.58,"used":523.54,"free":3180.15},{"epoch":26136957,"idl":99.74,"recv":0.1,"send":20.5,"writ":0.2,"used":523.15,"free":3180.53},{"epoch":26136958,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":522.88,"free":3180.8},{"epoch":26136959,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":522.87,"free":3180.8},{"epoch":26136960,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":523.33,"free":3180.34},{"epoch":26136961,"idl":99.77,"recv":0,"send":0,"writ":0.51,"used":523.79,"free":3179.89},{"epoch":26136962,"idl":99.89,"recv":0,"send":0,"writ":0.22,"used":523.58,"free":3180.09},{"epoch":26136963,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.58,"free":3180.09},{"epoch":26136964,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":523.54,"free":3180.12},{"epoch":26136965,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":523.56,"free":3180.12},{"epoch":26136966,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":524.33,"free":3179.35},{"epoch":26136967,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":523.8,"free":3179.88},{"epoch":26136968,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":523.76,"free":3179.91},{"epoch":26136969,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":523.8,"free":3179.85},{"epoch":26136970,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":523.97,"free":3179.69},{"epoch":26136971,"idl":91.46,"recv":0,"send":0,"writ":0.35,"used":524.37,"free":3179.29},{"epoch":26136972,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":523.7,"free":3179.96},{"epoch":26136973,"idl":99.88,"recv":0.06,"send":2.23,"writ":0.22,"used":523.69,"free":3179.95},{"epoch":26136974,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.66,"free":3179.97},{"epoch":26136975,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":522.47,"free":3181.18},{"epoch":26136976,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":522.82,"free":3180.83},{"epoch":26136977,"idl":99.85,"recv":0,"send":0,"writ":0.43,"used":523.39,"free":3180.25},{"epoch":26136978,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":523.39,"free":3180.25},{"epoch":26136979,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":523.37,"free":3180.27},{"epoch":26136980,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":523.9,"free":3179.75},{"epoch":26136981,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":523.86,"free":3179.79},{"epoch":26136982,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":523.53,"free":3180.11},{"epoch":26136983,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":523.08,"free":3180.56},{"epoch":26136984,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":523.07,"free":3180.56},{"epoch":26136985,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":523.56,"free":3180.08},{"epoch":26136986,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":523.56,"free":3180.09},{"epoch":26136987,"idl":99.6,"recv":0.01,"send":0.03,"writ":0.57,"used":524.56,"free":3179.07},{"epoch":26136988,"idl":99.83,"recv":0.01,"send":0.04,"writ":0.22,"used":528.91,"free":3174.56},{"epoch":26136989,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":529.84,"free":3173.6},{"epoch":26136990,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":530.92,"free":3172.54},{"epoch":26136991,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":530.93,"free":3172.52},{"epoch":26136992,"idl":99.7,"recv":0,"send":0,"writ":0.4,"used":532.11,"free":3171.34},{"epoch":26136993,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":532.12,"free":3171.32},{"epoch":26136994,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":532.1,"free":3171.34},{"epoch":26136995,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":531.62,"free":3171.84},{"epoch":26136996,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":531.6,"free":3171.85},{"epoch":26136997,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":531.92,"free":3171.52},{"epoch":26136998,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":531.55,"free":3171.9},{"epoch":26136999,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":531.53,"free":3171.89},{"epoch":26137000,"idl":99.75,"recv":0.02,"send":0.07,"writ":0.3,"used":531.78,"free":3171.65},{"epoch":26137001,"idl":99.78,"recv":0.09,"send":2.16,"writ":0.36,"used":531.8,"free":3171.59},{"epoch":26137002,"idl":99.71,"recv":0,"send":0.01,"writ":0.44,"used":531.79,"free":3171.58},{"epoch":26137003,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":531.75,"free":3171.62},{"epoch":26137004,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":531.72,"free":3171.66},{"epoch":26137005,"idl":99.76,"recv":0,"send":0,"writ":0.37,"used":532.22,"free":3171.17},{"epoch":26137006,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.23,"used":532.35,"free":3171.05},{"epoch":26137007,"idl":99.71,"recv":0.03,"send":0,"writ":0.63,"used":532.64,"free":3170.76},{"epoch":26137008,"idl":99.76,"recv":0.07,"send":0.01,"writ":0.34,"used":532.73,"free":3170.62},{"epoch":26137009,"idl":80.49,"recv":0.05,"send":1.31,"writ":4.69,"used":1030.97,"free":2671.98},{"epoch":26137010,"idl":81.27,"recv":0.02,"send":0.03,"writ":4.27,"used":877.92,"free":2825},{"epoch":26137011,"idl":99.78,"recv":0.03,"send":1.28,"writ":0.73,"used":1028.58,"free":2674.37},{"epoch":26137012,"idl":99.46,"recv":0.01,"send":0.27,"writ":0.43,"used":620.28,"free":3082.67},{"epoch":26137013,"idl":99.83,"recv":0,"send":0.01,"writ":0.44,"used":583.85,"free":3119.09},{"epoch":26137014,"idl":81.26,"recv":0.05,"send":1.32,"writ":4.49,"used":956.42,"free":2746.47},{"epoch":26137015,"idl":81.47,"recv":0.07,"send":1.32,"writ":4.79,"used":1042.21,"free":2660.67},{"epoch":26137016,"idl":80.1,"recv":0.11,"send":3.61,"writ":4.64,"used":1047.7,"free":2655.16},{"epoch":26137017,"idl":99.53,"recv":0.01,"send":0,"writ":0.19,"used":593.15,"free":3109.73},{"epoch":26137018,"idl":99.65,"recv":0.01,"send":0,"writ":0.7,"used":586.22,"free":3116.65},{"epoch":26137019,"idl":81.32,"recv":0.06,"send":1.31,"writ":4.41,"used":889,"free":2813.83},{"epoch":26137020,"idl":99.69,"recv":0,"send":0,"writ":0.36,"used":1051.15,"free":2651.73},{"epoch":26137021,"idl":99.64,"recv":0,"send":0,"writ":0.17,"used":645.86,"free":3057.01},{"epoch":26137022,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":583.48,"free":3119.39},{"epoch":26137023,"idl":99.69,"recv":0,"send":0,"writ":0.59,"used":584.63,"free":3118.23},{"epoch":26137024,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":584.4,"free":3118.46},{"epoch":26137025,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":583.7,"free":3119.18},{"epoch":26137026,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":583.64,"free":3119.23},{"epoch":26137027,"idl":99.78,"recv":0.02,"send":0.01,"writ":0.23,"used":583.64,"free":3119.22},{"epoch":26137028,"idl":99.64,"recv":0,"send":0,"writ":0.59,"used":585.44,"free":3117.41},{"epoch":26137029,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":585.22,"free":3117.62},{"epoch":26137030,"idl":99.78,"recv":0,"send":0.01,"writ":0.3,"used":585.45,"free":3117.4},{"epoch":26137031,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.18,"used":585.43,"free":3117.42},{"epoch":26137032,"idl":99.76,"recv":0,"send":0,"writ":0.17,"used":585.37,"free":3117.47},{"epoch":26137033,"idl":81.29,"recv":0.03,"send":0.06,"writ":4.42,"used":736.49,"free":2966.31},{"epoch":26137034,"idl":99.69,"recv":0,"send":0.01,"writ":0.53,"used":939.34,"free":2763.48},{"epoch":26137035,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":583.73,"free":3119.11},{"epoch":26137036,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":583.7,"free":3119.13},{"epoch":26137037,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":583.92,"free":3118.91},{"epoch":26137038,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":584.14,"free":3118.69},{"epoch":26137039,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":583.14,"free":3119.69},{"epoch":26137040,"idl":99.73,"recv":0,"send":0,"writ":0.37,"used":583.87,"free":3118.97},{"epoch":26137041,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":583.85,"free":3118.98},{"epoch":26137042,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":583.84,"free":3118.99},{"epoch":26137043,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":584.21,"free":3118.62},{"epoch":26137044,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":584.23,"free":3118.59},{"epoch":26137045,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":584.23,"free":3118.6},{"epoch":26137046,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":584.22,"free":3118.62},{"epoch":26137047,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":584.19,"free":3118.64},{"epoch":26137048,"idl":99.71,"recv":0,"send":0,"writ":0.4,"used":584.57,"free":3118.26},{"epoch":26137049,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.33,"used":584.37,"free":3118.45},{"epoch":26137050,"idl":99.67,"recv":0.02,"send":1.2,"writ":0.36,"used":584.14,"free":3118.69},{"epoch":26137051,"idl":99.84,"recv":0,"send":0.07,"writ":0.18,"used":583.94,"free":3118.89},{"epoch":26137052,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":583.63,"free":3119.19},{"epoch":26137053,"idl":99.83,"recv":0,"send":0.23,"writ":0.26,"used":583.69,"free":3119.13},{"epoch":26137054,"idl":99.65,"recv":0.01,"send":0.4,"writ":0.61,"used":584.53,"free":3118.27},{"epoch":26137055,"idl":99.68,"recv":0.01,"send":1.39,"writ":0.31,"used":583.99,"free":3118.83},{"epoch":26137056,"idl":99.82,"recv":0.01,"send":0.82,"writ":0.29,"used":583.79,"free":3119.01},{"epoch":26137057,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":583.95,"free":3118.85},{"epoch":26137058,"idl":99.81,"recv":0.05,"send":1.86,"writ":0.21,"used":583.95,"free":3118.84},{"epoch":26137059,"idl":99.63,"recv":0,"send":0.01,"writ":0.73,"used":584.74,"free":3118.01},{"epoch":26137060,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":584.41,"free":3118.36},{"epoch":26137061,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":584.4,"free":3118.37},{"epoch":26137062,"idl":99.8,"recv":0,"send":0,"writ":0.21,"used":584.13,"free":3118.64},{"epoch":26137063,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":584.1,"free":3118.66},{"epoch":26137064,"idl":99.66,"recv":0,"send":0,"writ":0.71,"used":584.79,"free":3117.96},{"epoch":26137065,"idl":99.71,"recv":0.04,"send":1.44,"writ":0.39,"used":584.57,"free":3118.19},{"epoch":26137066,"idl":99.78,"recv":0,"send":0.02,"writ":0.18,"used":584.67,"free":3118.09},{"epoch":26137067,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":584.66,"free":3118.09},{"epoch":26137068,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":584.61,"free":3118.14},{"epoch":26137069,"idl":99.64,"recv":0,"send":0,"writ":0.57,"used":584.2,"free":3118.55},{"epoch":26137070,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":584.09,"free":3118.68},{"epoch":26137071,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.2,"used":584.12,"free":3118.64},{"epoch":26137072,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":584.14,"free":3118.62},{"epoch":26137073,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":584.1,"free":3118.65},{"epoch":26137074,"idl":99.68,"recv":0.01,"send":0.14,"writ":0.55,"used":584.64,"free":3118.11},{"epoch":26137075,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":584.4,"free":3118.37},{"epoch":26137076,"idl":99.78,"recv":0.02,"send":2.15,"writ":0.2,"used":583.9,"free":3118.85},{"epoch":26137077,"idl":99.8,"recv":0.01,"send":1.27,"writ":0.21,"used":583.86,"free":3118.88},{"epoch":26137078,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":583.9,"free":3118.82},{"epoch":26137079,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":584.31,"free":3118.4},{"epoch":26137080,"idl":99.73,"recv":0,"send":0,"writ":0.42,"used":584.13,"free":3118.6},{"epoch":26137081,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":584.11,"free":3118.62},{"epoch":26137082,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":584.09,"free":3118.64},{"epoch":26137083,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":584.07,"free":3118.65},{"epoch":26137084,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":584.73,"free":3117.99},{"epoch":26137085,"idl":99.77,"recv":0,"send":0,"writ":0.43,"used":583.8,"free":3118.93},{"epoch":26137086,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":583.77,"free":3118.96},{"epoch":26137087,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":583.48,"free":3119.24},{"epoch":26137088,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":582.91,"free":3119.8},{"epoch":26137089,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":583.63,"free":3119.06},{"epoch":26137090,"idl":99.45,"recv":0,"send":0,"writ":0.69,"used":581.85,"free":3120.85},{"epoch":26137091,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":581.52,"free":3121.18},{"epoch":26137092,"idl":99.82,"recv":0.05,"send":1.75,"writ":0.28,"used":581.66,"free":3121.04},{"epoch":26137093,"idl":99.84,"recv":0,"send":0.12,"writ":0.21,"used":581.58,"free":3121.1},{"epoch":26137094,"idl":99.84,"recv":0,"send":0.01,"writ":0.18,"used":581.54,"free":3121.13},{"epoch":26137095,"idl":99.43,"recv":0.08,"send":3.07,"writ":0.71,"used":583.9,"free":3118.78},{"epoch":26137096,"idl":99.83,"recv":0,"send":0.01,"writ":0.22,"used":583.68,"free":3119},{"epoch":26137097,"idl":99.8,"recv":0,"send":0,"writ":0.22,"used":583.63,"free":3119.04},{"epoch":26137098,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":583.62,"free":3119.05},{"epoch":26137099,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":583.58,"free":3119.08},{"epoch":26137100,"idl":99.55,"recv":0,"send":0,"writ":0.72,"used":584.7,"free":3117.98},{"epoch":26137101,"idl":99.72,"recv":0.11,"send":3.95,"writ":0.41,"used":584.36,"free":3118.29},{"epoch":26137102,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":584.3,"free":3118.31},{"epoch":26137103,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":584.27,"free":3118.34},{"epoch":26137104,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":584.25,"free":3118.36},{"epoch":26137105,"idl":99.62,"recv":0,"send":0,"writ":0.68,"used":584.87,"free":3117.77},{"epoch":26137106,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":584.13,"free":3118.5},{"epoch":26137107,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":583.48,"free":3119.15},{"epoch":26137108,"idl":99.76,"recv":0.11,"send":3.15,"writ":0.35,"used":583.55,"free":3119.05},{"epoch":26137109,"idl":99.8,"recv":0,"send":0.01,"writ":0.25,"used":583.4,"free":3119.17},{"epoch":26137110,"idl":99.57,"recv":0.05,"send":2.21,"writ":0.77,"used":583.61,"free":3118.96},{"epoch":26137111,"idl":99.79,"recv":0,"send":0.04,"writ":0.21,"used":583.01,"free":3119.54},{"epoch":26137112,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":583,"free":3119.56},{"epoch":26137113,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":582.96,"free":3119.59},{"epoch":26137114,"idl":99.8,"recv":0.07,"send":3.05,"writ":0.2,"used":582.94,"free":3119.6},{"epoch":26137115,"idl":99.58,"recv":0,"send":0,"writ":0.75,"used":583.9,"free":3118.65},{"epoch":26137116,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":583.4,"free":3119.15},{"epoch":26137117,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":583.38,"free":3119.16},{"epoch":26137118,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":583.34,"free":3119.19},{"epoch":26137119,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":583.71,"free":3118.8},{"epoch":26137120,"idl":99.57,"recv":0,"send":0,"writ":0.65,"used":584.03,"free":3118.49},{"epoch":26137121,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":584,"free":3118.52},{"epoch":26137122,"idl":99.75,"recv":0,"send":0,"writ":0.18,"used":583.75,"free":3118.76},{"epoch":26137123,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":583.71,"free":3118.79},{"epoch":26137124,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":583.7,"free":3118.8},{"epoch":26137125,"idl":99.59,"recv":0,"send":0,"writ":0.57,"used":584.04,"free":3118.48},{"epoch":26137126,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":583.44,"free":3119.08},{"epoch":26137127,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":583.2,"free":3119.31},{"epoch":26137128,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":583.14,"free":3119.37},{"epoch":26137129,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":583.12,"free":3119.39},{"epoch":26137130,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":583.47,"free":3119.05},{"epoch":26137131,"idl":99.66,"recv":0,"send":0,"writ":0.58,"used":583.88,"free":3118.63},{"epoch":26137132,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":583.49,"free":3119.02},{"epoch":26137133,"idl":99.78,"recv":0,"send":0.01,"writ":0.16,"used":583.48,"free":3119.02},{"epoch":26137134,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":583.42,"free":3119.08},{"epoch":26137135,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":583.74,"free":3118.78},{"epoch":26137136,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":584.01,"free":3118.51},{"epoch":26137137,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":583.63,"free":3118.88},{"epoch":26137138,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":583.61,"free":3118.89},{"epoch":26137139,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":583.68,"free":3118.82},{"epoch":26137140,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":583.05,"free":3119.46},{"epoch":26137141,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":584.45,"free":3118.06},{"epoch":26137142,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.17,"used":583.95,"free":3118.56},{"epoch":26137143,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":583.95,"free":3118.55},{"epoch":26137144,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":583.73,"free":3118.77},{"epoch":26137145,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":583.69,"free":3118.83},{"epoch":26137146,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":583.82,"free":3118.69},{"epoch":26137147,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":583.46,"free":3119.05},{"epoch":26137148,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":583.42,"free":3119.08},{"epoch":26137149,"idl":99.7,"recv":0,"send":0,"writ":0.27,"used":583.65,"free":3118.83},{"epoch":26137150,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":583.9,"free":3118.6},{"epoch":26137151,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":584.07,"free":3118.42},{"epoch":26137152,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":583.6,"free":3118.89},{"epoch":26137153,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":583.67,"free":3118.82},{"epoch":26137154,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":583.56,"free":3118.95},{"epoch":26137155,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":583.5,"free":3119.04},{"epoch":26137156,"idl":99.45,"recv":0,"send":0,"writ":0.49,"used":584.03,"free":3118.51},{"epoch":26137157,"idl":99.92,"recv":0.04,"send":1.53,"writ":0.25,"used":583.94,"free":3118.59},{"epoch":26137158,"idl":99.91,"recv":0,"send":0.03,"writ":0.28,"used":583.36,"free":3119.16},{"epoch":26137159,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":583.32,"free":3119.19},{"epoch":26137160,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":582.77,"free":3119.76},{"epoch":26137161,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":583.77,"free":3118.75},{"epoch":26137162,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":583.7,"free":3118.81},{"epoch":26137163,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":583.68,"free":3118.84},{"epoch":26137164,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":583.64,"free":3118.87},{"epoch":26137165,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":582.54,"free":3119.99},{"epoch":26137166,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":582.32,"free":3120.2},{"epoch":26137167,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":582.86,"free":3119.65},{"epoch":26137168,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":582.83,"free":3119.68},{"epoch":26137169,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":582.99,"free":3119.51},{"epoch":26137170,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":582.04,"free":3120.47},{"epoch":26137171,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":581.98,"free":3120.54},{"epoch":26137172,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":583.2,"free":3119.31},{"epoch":26137173,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":582.93,"free":3119.58},{"epoch":26137174,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":582.92,"free":3119.59},{"epoch":26137175,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":583.38,"free":3119.13},{"epoch":26137176,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":583.39,"free":3119.13},{"epoch":26137177,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":583.48,"free":3119.02},{"epoch":26137178,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":583.1,"free":3119.4},{"epoch":26137179,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":583.55,"free":3118.93},{"epoch":26137180,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":582.69,"free":3119.81},{"epoch":26137181,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":582.76,"free":3119.72},{"epoch":26137182,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":584.47,"free":3118.02},{"epoch":26137183,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":583.95,"free":3118.52},{"epoch":26137184,"idl":99.88,"recv":0,"send":0.01,"writ":0.2,"used":583.93,"free":3118.56},{"epoch":26137185,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":584.16,"free":3118.35},{"epoch":26137186,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":583.36,"free":3119.15},{"epoch":26137187,"idl":99.75,"recv":0,"send":0,"writ":0.51,"used":583.49,"free":3119.02},{"epoch":26137188,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":583.1,"free":3119.4},{"epoch":26137189,"idl":99.9,"recv":0.03,"send":1.8,"writ":0.24,"used":583.1,"free":3119.39},{"epoch":26137190,"idl":99.78,"recv":0,"send":0.02,"writ":0.46,"used":582.87,"free":3119.63},{"epoch":26137191,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":582.83,"free":3119.67},{"epoch":26137192,"idl":99.66,"recv":0.03,"send":1.1,"writ":0.6,"used":584.03,"free":3118.47},{"epoch":26137193,"idl":99.92,"recv":0,"send":0,"writ":0.26,"used":584.22,"free":3118.26},{"epoch":26137194,"idl":89.66,"recv":0.02,"send":0.01,"writ":2.92,"used":644.39,"free":3058.07},{"epoch":26137195,"idl":90.64,"recv":0.07,"send":2.35,"writ":5.29,"used":1076.88,"free":2625.57},{"epoch":26137196,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":876.08,"free":2826.38},{"epoch":26137197,"idl":94.48,"recv":0.46,"send":0.01,"writ":79.18,"used":598.34,"free":3104.1},{"epoch":26137198,"idl":99.65,"recv":0,"send":0,"writ":182.19,"used":588.25,"free":3113.4},{"epoch":26137199,"idl":99.91,"recv":0,"send":0.01,"writ":0.15,"used":588.21,"free":3113.43},{"epoch":26137200,"idl":99.67,"recv":0,"send":0,"writ":0.37,"used":587.01,"free":3114.64},{"epoch":26137201,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":586.97,"free":3114.68},{"epoch":26137202,"idl":99.74,"recv":0,"send":0,"writ":0.66,"used":587.42,"free":3114.23},{"epoch":26137203,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":585.91,"free":3115.78},{"epoch":26137204,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":585.89,"free":3115.79},{"epoch":26137205,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":586.37,"free":3115.33},{"epoch":26137206,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":586.35,"free":3115.35},{"epoch":26137207,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":586.77,"free":3114.92},{"epoch":26137208,"idl":99.94,"recv":0,"send":0,"writ":0.38,"used":586.06,"free":3115.64},{"epoch":26137209,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":586.27,"free":3115.39},{"epoch":26137210,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":585.57,"free":3116.13},{"epoch":26137211,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":585.55,"free":3116.14},{"epoch":26137212,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":585.68,"free":3116},{"epoch":26137213,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":586.6,"free":3115.08},{"epoch":26137214,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":585.66,"free":3116.03},{"epoch":26137215,"idl":99.78,"recv":0.02,"send":0.27,"writ":0.45,"used":583.93,"free":3117.78},{"epoch":26137216,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":583.83,"free":3117.88},{"epoch":26137217,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":584.06,"free":3117.64},{"epoch":26137218,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":586.3,"free":3115.39},{"epoch":26137219,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":586.27,"free":3115.42},{"epoch":26137220,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":586.42,"free":3115.29},{"epoch":26137221,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":586.4,"free":3115.3},{"epoch":26137222,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":586.37,"free":3115.32},{"epoch":26137223,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":587.46,"free":3114.24},{"epoch":26137224,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":586.83,"free":3114.86},{"epoch":26137225,"idl":99.72,"recv":0,"send":0,"writ":0.36,"used":584.96,"free":3116.74},{"epoch":26137226,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":584.84,"free":3116.86},{"epoch":26137227,"idl":99.89,"recv":0,"send":0.01,"writ":0.15,"used":584.83,"free":3116.86},{"epoch":26137228,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":586.41,"free":3115.28},{"epoch":26137229,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":586.73,"free":3114.96},{"epoch":26137230,"idl":99.81,"recv":0,"send":0,"writ":0.35,"used":586.17,"free":3115.53},{"epoch":26137231,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":585.77,"free":3115.93},{"epoch":26137232,"idl":99.92,"recv":0,"send":0.01,"writ":0.2,"used":585.67,"free":3116.03},{"epoch":26137233,"idl":99.77,"recv":0,"send":0.01,"writ":0.64,"used":586.05,"free":3115.64},{"epoch":26137234,"idl":99.91,"recv":0,"send":0,"writ":0.23,"used":585.83,"free":3115.85},{"epoch":26137235,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":585.57,"free":3116.12},{"epoch":26137236,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":585.57,"free":3116.13},{"epoch":26137237,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":585.53,"free":3116.16},{"epoch":26137238,"idl":99.79,"recv":0,"send":0,"writ":0.51,"used":585.86,"free":3115.83},{"epoch":26137239,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":586.16,"free":3115.5},{"epoch":26137240,"idl":99.84,"recv":0,"send":0,"writ":0.37,"used":586.4,"free":3115.28},{"epoch":26137241,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":586.39,"free":3115.29},{"epoch":26137242,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":585.94,"free":3115.73},{"epoch":26137243,"idl":99.75,"recv":0,"send":0,"writ":0.72,"used":586.45,"free":3115.22},{"epoch":26137244,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":585.57,"free":3116.09},{"epoch":26137245,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":586.29,"free":3115.39},{"epoch":26137246,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":586.27,"free":3115.41},{"epoch":26137247,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":586.29,"free":3115.38},{"epoch":26137248,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":586.42,"free":3115.25},{"epoch":26137249,"idl":99.76,"recv":0,"send":0,"writ":0.67,"used":586.79,"free":3114.87},{"epoch":26137250,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":584.45,"free":3117.23},{"epoch":26137251,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":584.39,"free":3117.3},{"epoch":26137252,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":584.36,"free":3117.33},{"epoch":26137253,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":584.33,"free":3117.36},{"epoch":26137254,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":585.9,"free":3115.78},{"epoch":26137255,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":586.02,"free":3115.68},{"epoch":26137256,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":586.04,"free":3115.65},{"epoch":26137257,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":586.15,"free":3115.53},{"epoch":26137258,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":586.14,"free":3115.54},{"epoch":26137259,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":587.02,"free":3114.66},{"epoch":26137260,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":585.48,"free":3116.21},{"epoch":26137261,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":585.34,"free":3116.34},{"epoch":26137262,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":585.31,"free":3116.37},{"epoch":26137263,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":585.3,"free":3116.38},{"epoch":26137264,"idl":98.13,"recv":0,"send":0,"writ":0.56,"used":586.3,"free":3115.37},{"epoch":26137265,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":586.89,"free":3114.79},{"epoch":26137266,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":586.88,"free":3114.8},{"epoch":26137267,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":586.85,"free":3114.82},{"epoch":26137268,"idl":99.81,"recv":0.02,"send":0.07,"writ":0.21,"used":586.53,"free":3115.15},{"epoch":26137269,"idl":99.53,"recv":0,"send":0,"writ":0.66,"used":586.1,"free":3115.55},{"epoch":26137270,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":584.7,"free":3116.97},{"epoch":26137271,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":584.63,"free":3117.04},{"epoch":26137272,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":584.62,"free":3117.04},{"epoch":26137273,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":584.59,"free":3117.07},{"epoch":26137274,"idl":99.73,"recv":0,"send":0,"writ":0.5,"used":585.64,"free":3116.05},{"epoch":26137275,"idl":99.82,"recv":0,"send":0,"writ":0.35,"used":586.05,"free":3115.68},{"epoch":26137276,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":586.04,"free":3115.68},{"epoch":26137277,"idl":99.49,"recv":0,"send":0,"writ":0.18,"used":586.25,"free":3115.46},{"epoch":26137278,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":586.24,"free":3115.47},{"epoch":26137279,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":587.07,"free":3114.64},{"epoch":26137280,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":586.85,"free":3114.87},{"epoch":26137281,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":586.9,"free":3114.81},{"epoch":26137282,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":586.87,"free":3114.84},{"epoch":26137283,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":586.85,"free":3114.86},{"epoch":26137284,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":587.19,"free":3114.52},{"epoch":26137285,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":586.82,"free":3114.91},{"epoch":26137286,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":586.79,"free":3114.93},{"epoch":26137287,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":586.43,"free":3115.28},{"epoch":26137288,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":586,"free":3115.71},{"epoch":26137289,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":586.48,"free":3115.22},{"epoch":26137290,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":586.17,"free":3115.56},{"epoch":26137291,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":586.14,"free":3115.58},{"epoch":26137292,"idl":99.78,"recv":0.09,"send":0.31,"writ":0.16,"used":586.16,"free":3115.27},{"epoch":26137293,"idl":99.55,"recv":0.22,"send":0.82,"writ":0.25,"used":586.2,"free":3111.67},{"epoch":26137294,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":586.34,"free":3109.7},{"epoch":26137295,"idl":99.49,"recv":0,"send":0,"writ":0.71,"used":585.89,"free":3110.18},{"epoch":26137296,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":585.08,"free":3110.98},{"epoch":26137297,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":585.05,"free":3111.01},{"epoch":26137298,"idl":99.85,"recv":0.01,"send":0.15,"writ":0.21,"used":585.03,"free":3111.03},{"epoch":26137299,"idl":99.77,"recv":0,"send":0,"writ":0.4,"used":586.7,"free":3109.32},{"epoch":26137300,"idl":99.61,"recv":0,"send":0,"writ":0.77,"used":587.13,"free":3108.91},{"epoch":26137301,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":586.72,"free":3109.32},{"epoch":26137302,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":586.53,"free":3109.51},{"epoch":26137303,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":586.6,"free":3109.43},{"epoch":26137304,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":586.58,"free":3109.45},{"epoch":26137305,"idl":99.63,"recv":0,"send":0,"writ":0.71,"used":587.41,"free":3108.64},{"epoch":26137306,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":587.05,"free":3108.99},{"epoch":26137307,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":586.36,"free":3109.68},{"epoch":26137308,"idl":99.85,"recv":0.05,"send":0.12,"writ":0.42,"used":586.29,"free":3109.74},{"epoch":26137309,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":586.23,"free":3109.79},{"epoch":26137310,"idl":99.69,"recv":0,"send":0,"writ":0.73,"used":586.48,"free":3109.57},{"epoch":26137311,"idl":99.74,"recv":0.1,"send":0.38,"writ":0.67,"used":586.71,"free":3109.32},{"epoch":26137312,"idl":99.46,"recv":0.76,"send":19.36,"writ":0.73,"used":587.64,"free":3108.34},{"epoch":26137313,"idl":99.18,"recv":2.14,"send":69.2,"writ":0.93,"used":587.7,"free":3108.28},{"epoch":26137314,"idl":99.39,"recv":1.24,"send":23.43,"writ":1.56,"used":587.71,"free":3108.11},{"epoch":26137315,"idl":99.1,"recv":1.67,"send":56.11,"writ":1.2,"used":590.33,"free":3105.26},{"epoch":26137316,"idl":99.85,"recv":0.01,"send":0.03,"writ":0.23,"used":589.78,"free":3105.82},{"epoch":26137317,"idl":99.9,"recv":0.02,"send":0.02,"writ":0.22,"used":589.71,"free":3105.91},{"epoch":26137318,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.18,"used":589.75,"free":3105.87},{"epoch":26137319,"idl":99.88,"recv":0.02,"send":0.03,"writ":0.27,"used":589.79,"free":3105.83},{"epoch":26137320,"idl":89.52,"recv":0.05,"send":0.18,"writ":1.24,"used":622.93,"free":3072.71},{"epoch":26137321,"idl":90.89,"recv":0.01,"send":0.07,"writ":0.91,"used":584.14,"free":3111.49},{"epoch":26137322,"idl":99.9,"recv":0.04,"send":0.03,"writ":0.18,"used":540.97,"free":3154.67},{"epoch":26137323,"idl":91.89,"recv":0.03,"send":0.01,"writ":0.75,"used":577.13,"free":3118.49},{"epoch":26137324,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":541.63,"free":3154},{"epoch":26137325,"idl":78.81,"recv":0.07,"send":1.05,"writ":5.12,"used":1056.99,"free":2638.6},{"epoch":26137326,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":826.92,"free":2868.7},{"epoch":26137327,"idl":80.97,"recv":0.04,"send":0.03,"writ":4.42,"used":886.25,"free":2809.32},{"epoch":26137328,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":1049.93,"free":2645.68},{"epoch":26137329,"idl":98.96,"recv":0,"send":0,"writ":0.35,"used":600,"free":3095.58},{"epoch":26137330,"idl":99.67,"recv":0,"send":0,"writ":0.61,"used":589,"free":3106.6},{"epoch":26137331,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":589.13,"free":3106.46},{"epoch":26137332,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":589.1,"free":3106.5},{"epoch":26137333,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":589.09,"free":3106.5},{"epoch":26137334,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":589.07,"free":3106.56},{"epoch":26137335,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":589.33,"free":3106.33},{"epoch":26137336,"idl":99.75,"recv":0,"send":0,"writ":0.6,"used":590.01,"free":3105.65},{"epoch":26137337,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":589.53,"free":3106.13},{"epoch":26137338,"idl":99.45,"recv":0,"send":0,"writ":0.17,"used":589.51,"free":3106.15},{"epoch":26137339,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":589.47,"free":3106.18},{"epoch":26137340,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":589.72,"free":3105.95},{"epoch":26137341,"idl":99.74,"recv":0,"send":0,"writ":0.61,"used":590.34,"free":3105.32},{"epoch":26137342,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":590.11,"free":3105.54},{"epoch":26137343,"idl":99.83,"recv":0.05,"send":0.05,"writ":0.22,"used":590.02,"free":3105.63},{"epoch":26137344,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":589.89,"free":3105.76},{"epoch":26137345,"idl":99.81,"recv":0.02,"send":0.05,"writ":0.43,"used":588.83,"free":3106.84},{"epoch":26137346,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":589.48,"free":3106.2},{"epoch":26137347,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":589.29,"free":3106.39},{"epoch":26137348,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":589.25,"free":3106.42},{"epoch":26137349,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":589.24,"free":3106.42},{"epoch":26137350,"idl":99.86,"recv":0.03,"send":0,"writ":0.4,"used":589.53,"free":3106.14},{"epoch":26137351,"idl":99.75,"recv":0.06,"send":0,"writ":0.55,"used":589.72,"free":3105.93},{"epoch":26137352,"idl":99.88,"recv":0,"send":0,"writ":0.26,"used":589.21,"free":3106.44},{"epoch":26137353,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":589.19,"free":3106.45},{"epoch":26137354,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":589.36,"free":3106.28},{"epoch":26137355,"idl":95.89,"recv":0.03,"send":0.01,"writ":0.69,"used":574.71,"free":3120.96},{"epoch":26137356,"idl":81.47,"recv":0.08,"send":0.31,"writ":4.85,"used":989.59,"free":2706.03},{"epoch":26137357,"idl":85.77,"recv":0.04,"send":0.01,"writ":1.01,"used":827.93,"free":2867.69},{"epoch":26137358,"idl":77.21,"recv":0.09,"send":0.57,"writ":7.85,"used":1044.32,"free":2651.26},{"epoch":26137359,"idl":99.54,"recv":0,"send":0,"writ":0.38,"used":825.43,"free":2870.16},{"epoch":26137360,"idl":89.79,"recv":0.07,"send":0.01,"writ":1,"used":600.5,"free":3095.12},{"epoch":26137361,"idl":84.81,"recv":0.05,"send":0.29,"writ":4.71,"used":1077.49,"free":2618.07},{"epoch":26137362,"idl":80.22,"recv":0.02,"send":0.3,"writ":4.54,"used":1026.22,"free":2669.33},{"epoch":26137363,"idl":99.69,"recv":0.04,"send":0.26,"writ":0.29,"used":925.37,"free":2770.22},{"epoch":26137364,"idl":99.89,"recv":0.1,"send":0,"writ":0.44,"used":586.55,"free":3109.03},{"epoch":26137365,"idl":99.77,"recv":0.01,"send":0.01,"writ":0.4,"used":587.32,"free":3108.28},{"epoch":26137366,"idl":81.05,"recv":0.08,"send":0.29,"writ":5.07,"used":992.89,"free":2702.66},{"epoch":26137367,"idl":84.28,"recv":0.04,"send":0.01,"writ":1.02,"used":844.76,"free":2850.79},{"epoch":26137368,"idl":95.68,"recv":0.02,"send":0.29,"writ":3.67,"used":1007.14,"free":2688.43},{"epoch":26137369,"idl":99.85,"recv":0.04,"send":0.01,"writ":0.29,"used":585.48,"free":3110.08},{"epoch":26137370,"idl":62.37,"recv":0.07,"send":0.82,"writ":5.59,"used":1039.29,"free":2656.21},{"epoch":26137371,"idl":97.53,"recv":0.04,"send":1.06,"writ":3.81,"used":1042.22,"free":2653.33},{"epoch":26137372,"idl":99.45,"recv":0.07,"send":2.08,"writ":0.51,"used":595.8,"free":3099.72},{"epoch":26137373,"idl":99.87,"recv":0.01,"send":0.27,"writ":0.26,"used":588.24,"free":3107.24},{"epoch":26137374,"idl":99.91,"recv":0,"send":0,"writ":0.22,"used":588.38,"free":3107.1},{"epoch":26137375,"idl":99.71,"recv":0,"send":0,"writ":0.35,"used":589.1,"free":3106.4},{"epoch":26137376,"idl":99.91,"recv":0.01,"send":0.26,"writ":0.16,"used":589.1,"free":3106.38},{"epoch":26137377,"idl":99.76,"recv":0,"send":0.01,"writ":0.6,"used":590.48,"free":3105},{"epoch":26137378,"idl":81.54,"recv":0.01,"send":0.03,"writ":4.16,"used":766.03,"free":2929.41},{"epoch":26137379,"idl":99.59,"recv":0.17,"send":7.61,"writ":0.75,"used":856.51,"free":2838.94},{"epoch":26137380,"idl":99.77,"recv":0,"send":0.01,"writ":0.43,"used":588.06,"free":3107.37},{"epoch":26137381,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":588.04,"free":3107.38},{"epoch":26137382,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":588.54,"free":3106.87},{"epoch":26137383,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":588.42,"free":3106.99},{"epoch":26137384,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":588.4,"free":3107.01},{"epoch":26137385,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":588.89,"free":3106.54},{"epoch":26137386,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":588.24,"free":3107.19},{"epoch":26137387,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":588.46,"free":3106.96},{"epoch":26137388,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":588.09,"free":3107.33},{"epoch":26137389,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":588.04,"free":3107.34},{"epoch":26137390,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":588.3,"free":3107.1},{"epoch":26137391,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":588.28,"free":3107.12},{"epoch":26137392,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":588.61,"free":3106.79},{"epoch":26137393,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":588.31,"free":3107.08},{"epoch":26137394,"idl":99.91,"recv":0.01,"send":0.2,"writ":0.16,"used":588.38,"free":3107.01},{"epoch":26137395,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":587.84,"free":3107.56},{"epoch":26137396,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":587.91,"free":3107.49},{"epoch":26137397,"idl":99.74,"recv":0,"send":0,"writ":0.61,"used":588.23,"free":3107.16},{"epoch":26137398,"idl":99.78,"recv":0.06,"send":0.2,"writ":0.18,"used":587.44,"free":3107.94},{"epoch":26137399,"idl":99.75,"recv":0.08,"send":0.18,"writ":0.16,"used":586.33,"free":3109.05},{"epoch":26137400,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":587.56,"free":3107.83},{"epoch":26137401,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":587.56,"free":3107.83},{"epoch":26137402,"idl":99.73,"recv":0,"send":0,"writ":0.42,"used":587.94,"free":3107.44},{"epoch":26137403,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":587.75,"free":3107.63},{"epoch":26137404,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":587.72,"free":3107.67},{"epoch":26137405,"idl":99.65,"recv":0.17,"send":0.39,"writ":0.43,"used":587.95,"free":3107.46},{"epoch":26137406,"idl":99.88,"recv":0.05,"send":0.05,"writ":0.25,"used":587.98,"free":3107.42},{"epoch":26137407,"idl":99.72,"recv":0.05,"send":0.08,"writ":0.88,"used":588.38,"free":3107.03},{"epoch":26137408,"idl":92.42,"recv":0.02,"send":0.04,"writ":0.61,"used":620.37,"free":3075.05},{"epoch":26137409,"idl":88.82,"recv":0.01,"send":0.03,"writ":4.04,"used":1022.46,"free":2672.98},{"epoch":26137410,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":583,"free":3112.48},{"epoch":26137411,"idl":99.91,"recv":0.01,"send":0.14,"writ":0.2,"used":583.06,"free":3112.43},{"epoch":26137412,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":583.46,"free":3112.02},{"epoch":26137413,"idl":99.88,"recv":0,"send":0,"writ":0.39,"used":584.05,"free":3111.43},{"epoch":26137414,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":584.03,"free":3111.46},{"epoch":26137415,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":584.27,"free":3111.24},{"epoch":26137416,"idl":99.92,"recv":0,"send":0.03,"writ":0.21,"used":584.25,"free":3111.26},{"epoch":26137417,"idl":99.91,"recv":0.02,"send":0.52,"writ":0.24,"used":584.28,"free":3111.21},{"epoch":26137418,"idl":99.78,"recv":0.44,"send":0,"writ":0.57,"used":584.76,"free":3110.72},{"epoch":26137419,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":584.07,"free":3111.39},{"epoch":26137420,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":584.32,"free":3111.16},{"epoch":26137421,"idl":99.91,"recv":0.02,"send":0.54,"writ":0.25,"used":584.29,"free":3111.17},{"epoch":26137422,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":584.1,"free":3111.36},{"epoch":26137423,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":584.87,"free":3110.58},{"epoch":26137424,"idl":99.88,"recv":0,"send":0.01,"writ":0.18,"used":584.72,"free":3110.73},{"epoch":26137425,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":584.47,"free":3110.99},{"epoch":26137426,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":584.04,"free":3111.42},{"epoch":26137427,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":583.43,"free":3112.02},{"epoch":26137428,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":584.63,"free":3110.82},{"epoch":26137429,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":584.56,"free":3110.88},{"epoch":26137430,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":584.55,"free":3110.91},{"epoch":26137431,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":584.52,"free":3110.93},{"epoch":26137432,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":584.51,"free":3110.95},{"epoch":26137433,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":585.32,"free":3110.13},{"epoch":26137434,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":584.71,"free":3110.74},{"epoch":26137435,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":584.94,"free":3110.52},{"epoch":26137436,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":584.94,"free":3110.52},{"epoch":26137437,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":584.9,"free":3110.55},{"epoch":26137438,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":585.63,"free":3109.82},{"epoch":26137439,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":585.33,"free":3110.11},{"epoch":26137440,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":585.09,"free":3110.37},{"epoch":26137441,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":585.07,"free":3110.39},{"epoch":26137442,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":585.04,"free":3110.41},{"epoch":26137443,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":585.62,"free":3109.83},{"epoch":26137444,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":584.76,"free":3110.68},{"epoch":26137445,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":584.53,"free":3110.92},{"epoch":26137446,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":584.48,"free":3110.98},{"epoch":26137447,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":584.47,"free":3110.98},{"epoch":26137448,"idl":99.79,"recv":0,"send":0,"writ":0.45,"used":584.83,"free":3110.61},{"epoch":26137449,"idl":99.81,"recv":0,"send":0,"writ":0.45,"used":584.78,"free":3110.63},{"epoch":26137450,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":585.11,"free":3110.32},{"epoch":26137451,"idl":99.92,"recv":0,"send":0.02,"writ":0.21,"used":585.02,"free":3110.41},{"epoch":26137452,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":584.98,"free":3110.44},{"epoch":26137453,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":584.98,"free":3110.45},{"epoch":26137454,"idl":99.71,"recv":0,"send":0,"writ":0.6,"used":585.61,"free":3109.83},{"epoch":26137455,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":584.27,"free":3111.18},{"epoch":26137456,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":584.32,"free":3111.13},{"epoch":26137457,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":584.3,"free":3111.14},{"epoch":26137458,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":584.27,"free":3111.17},{"epoch":26137459,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":584.97,"free":3110.46},{"epoch":26137460,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":584.94,"free":3110.51},{"epoch":26137461,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":584.92,"free":3110.52},{"epoch":26137462,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":584.76,"free":3110.68},{"epoch":26137463,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":584.05,"free":3111.39},{"epoch":26137464,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":583.99,"free":3111.44},{"epoch":26137465,"idl":99.79,"recv":0,"send":0,"writ":0.45,"used":566.06,"free":3129.52},{"epoch":26137466,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":532.69,"free":3163.19},{"epoch":26137467,"idl":99.92,"recv":0.01,"send":0,"writ":0.14,"used":532.65,"free":3163.22},{"epoch":26137468,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":532.81,"free":3163.06},{"epoch":26137469,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":532.66,"free":3163.2},{"epoch":26137470,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":532.01,"free":3163.87},{"epoch":26137471,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":531.98,"free":3163.89},{"epoch":26137472,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":531.94,"free":3163.93},{"epoch":26137473,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.93,"free":3163.94},{"epoch":26137474,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":532.97,"free":3162.89},{"epoch":26137475,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":533.01,"free":3162.87},{"epoch":26137476,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":533,"free":3162.88},{"epoch":26137477,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.96,"free":3162.91},{"epoch":26137478,"idl":99.89,"recv":0,"send":0.02,"writ":0.17,"used":532.91,"free":3162.95},{"epoch":26137479,"idl":99.61,"recv":0,"send":0,"writ":0.69,"used":533.27,"free":3162.57},{"epoch":26137480,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":533.04,"free":3162.81},{"epoch":26137481,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":533.02,"free":3162.83},{"epoch":26137482,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":532.99,"free":3162.86},{"epoch":26137483,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":532.94,"free":3162.9},{"epoch":26137484,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":533.27,"free":3162.57},{"epoch":26137485,"idl":99.81,"recv":0,"send":0,"writ":0.49,"used":531.92,"free":3163.93},{"epoch":26137486,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":532.08,"free":3163.77},{"epoch":26137487,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":532.06,"free":3163.79},{"epoch":26137488,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":532.02,"free":3163.83},{"epoch":26137489,"idl":99.74,"recv":0,"send":0,"writ":0.44,"used":532.47,"free":3163.37},{"epoch":26137490,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":533.24,"free":3162.61},{"epoch":26137491,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":533.16,"free":3162.69},{"epoch":26137492,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":533.19,"free":3162.66},{"epoch":26137493,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":533.3,"free":3162.55},{"epoch":26137494,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":533.26,"free":3162.58},{"epoch":26137495,"idl":99.48,"recv":0,"send":0,"writ":0.7,"used":531.72,"free":3164.14},{"epoch":26137496,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":531,"free":3164.86},{"epoch":26137497,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":530.96,"free":3164.89},{"epoch":26137498,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":530.93,"free":3164.91},{"epoch":26137499,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":531.07,"free":3164.77},{"epoch":26137500,"idl":99.57,"recv":0,"send":0,"writ":0.75,"used":533.46,"free":3162.4},{"epoch":26137501,"idl":99.86,"recv":0.02,"send":1.13,"writ":0.23,"used":533.25,"free":3162.6},{"epoch":26137502,"idl":99.9,"recv":0.02,"send":1.15,"writ":0.32,"used":533.19,"free":3162.65},{"epoch":26137503,"idl":99.92,"recv":0,"send":0.08,"writ":0.21,"used":533.37,"free":3162.45},{"epoch":26137504,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":533.36,"free":3162.45},{"epoch":26137505,"idl":99.74,"recv":0,"send":0,"writ":0.74,"used":533.49,"free":3162.34},{"epoch":26137506,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":533,"free":3162.82},{"epoch":26137507,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":532.96,"free":3162.86},{"epoch":26137508,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":532.92,"free":3162.9},{"epoch":26137509,"idl":99.7,"recv":0,"send":0,"writ":0.28,"used":532.87,"free":3162.92},{"epoch":26137510,"idl":99.68,"recv":0,"send":0,"writ":0.77,"used":533.64,"free":3162.16},{"epoch":26137511,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":533.25,"free":3162.55},{"epoch":26137512,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":533.21,"free":3162.59},{"epoch":26137513,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":533.19,"free":3162.6},{"epoch":26137514,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":533.16,"free":3162.63},{"epoch":26137515,"idl":99.66,"recv":0,"send":0,"writ":0.6,"used":534.1,"free":3161.7},{"epoch":26137516,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":533.37,"free":3162.43},{"epoch":26137517,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":533.35,"free":3162.45},{"epoch":26137518,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":533.44,"free":3162.35},{"epoch":26137519,"idl":99.75,"recv":0,"send":0,"writ":0.14,"used":533.48,"free":3162.31},{"epoch":26137520,"idl":99.63,"recv":0,"send":0,"writ":0.75,"used":532.92,"free":3162.88},{"epoch":26137521,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":533.19,"free":3162.6},{"epoch":26137522,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":533.16,"free":3162.63},{"epoch":26137523,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":533.14,"free":3162.65},{"epoch":26137524,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":533.12,"free":3162.66},{"epoch":26137525,"idl":99.62,"recv":0,"send":0,"writ":0.59,"used":533.5,"free":3162.29},{"epoch":26137526,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":533.35,"free":3162.45},{"epoch":26137527,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":533.32,"free":3162.47},{"epoch":26137528,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":533.5,"free":3162.29},{"epoch":26137529,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":533.46,"free":3162.32},{"epoch":26137530,"idl":99.67,"recv":0,"send":0,"writ":0.78,"used":533.78,"free":3162.02},{"epoch":26137531,"idl":99.88,"recv":0,"send":0.03,"writ":0.19,"used":532.93,"free":3162.86},{"epoch":26137532,"idl":99.88,"recv":0.03,"send":1.32,"writ":0.32,"used":532.89,"free":3162.88},{"epoch":26137533,"idl":99.85,"recv":0,"send":0.01,"writ":0.18,"used":532.84,"free":3162.9},{"epoch":26137534,"idl":99.81,"recv":0.01,"send":0.23,"writ":0.22,"used":532.92,"free":3162.82},{"epoch":26137535,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":533.4,"free":3162.36},{"epoch":26137536,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":534.83,"free":3160.93},{"epoch":26137537,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":534.11,"free":3161.64},{"epoch":26137538,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":533.78,"free":3161.97},{"epoch":26137539,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":533.34,"free":3162.39},{"epoch":26137540,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":533.33,"free":3162.41},{"epoch":26137541,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":533.87,"free":3161.87},{"epoch":26137542,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":533.18,"free":3162.55},{"epoch":26137543,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":532.96,"free":3162.77},{"epoch":26137544,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":532.94,"free":3162.78},{"epoch":26137545,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":533.17,"free":3162.57},{"epoch":26137546,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":533.67,"free":3162.07},{"epoch":26137547,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":533.37,"free":3162.35},{"epoch":26137548,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":533.37,"free":3162.35},{"epoch":26137549,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":533.33,"free":3162.38},{"epoch":26137550,"idl":99.67,"recv":0,"send":0,"writ":0.32,"used":532.39,"free":3163.35},{"epoch":26137551,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":532.97,"free":3162.76},{"epoch":26137552,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":532.83,"free":3162.89},{"epoch":26137553,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":532.97,"free":3162.75},{"epoch":26137554,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":532.94,"free":3162.78},{"epoch":26137555,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":532.23,"free":3163.5},{"epoch":26137556,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":532.94,"free":3162.79},{"epoch":26137557,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":533.16,"free":3162.57},{"epoch":26137558,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":533.12,"free":3162.6},{"epoch":26137559,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":533.12,"free":3162.6},{"epoch":26137560,"idl":98.6,"recv":0,"send":0,"writ":0.32,"used":532.19,"free":3163.53},{"epoch":26137561,"idl":94.59,"recv":0.29,"send":0.01,"writ":78.51,"used":543.45,"free":3152.45},{"epoch":26137562,"idl":99.63,"recv":0,"send":0,"writ":181.33,"used":535.72,"free":3160.03},{"epoch":26137563,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":535.69,"free":3160.05},{"epoch":26137564,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":535.68,"free":3160.06},{"epoch":26137565,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":534.72,"free":3161.04},{"epoch":26137566,"idl":99.69,"recv":0,"send":0,"writ":0.46,"used":535.27,"free":3160.48},{"epoch":26137567,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":533.78,"free":3162},{"epoch":26137568,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":533.9,"free":3161.9},{"epoch":26137569,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":533.39,"free":3162.39},{"epoch":26137570,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":532.67,"free":3163.12},{"epoch":26137571,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.6,"free":3163.18},{"epoch":26137572,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":533.68,"free":3162.12},{"epoch":26137573,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":533.31,"free":3162.49},{"epoch":26137574,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":533.3,"free":3162.49},{"epoch":26137575,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":533.29,"free":3162.52},{"epoch":26137576,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":533.28,"free":3162.53},{"epoch":26137577,"idl":99.7,"recv":0,"send":0,"writ":0.62,"used":533.61,"free":3162.2},{"epoch":26137578,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":533.24,"free":3162.55},{"epoch":26137579,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":533.3,"free":3162.5},{"epoch":26137580,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":533.66,"free":3162.15},{"epoch":26137581,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":533.63,"free":3162.18},{"epoch":26137582,"idl":99.67,"recv":0,"send":0,"writ":0.58,"used":533.97,"free":3161.84},{"epoch":26137583,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":533.59,"free":3162.2},{"epoch":26137584,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":533.58,"free":3162.22},{"epoch":26137585,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":533.33,"free":3162.48},{"epoch":26137586,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":533.31,"free":3162.49},{"epoch":26137587,"idl":99.68,"recv":0,"send":0,"writ":0.51,"used":533.98,"free":3161.83},{"epoch":26137588,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":533.25,"free":3162.54},{"epoch":26137589,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":533.24,"free":3162.56},{"epoch":26137590,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":533.74,"free":3162.07},{"epoch":26137591,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":533.9,"free":3161.91},{"epoch":26137592,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":534.3,"free":3161.5},{"epoch":26137593,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":533.86,"free":3161.94},{"epoch":26137594,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":533.82,"free":3161.97},{"epoch":26137595,"idl":99.74,"recv":0,"send":0,"writ":0.36,"used":533.83,"free":3161.98},{"epoch":26137596,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":533.81,"free":3162},{"epoch":26137597,"idl":99.7,"recv":0,"send":0,"writ":0.35,"used":534.12,"free":3161.68},{"epoch":26137598,"idl":99.85,"recv":0,"send":0,"writ":0.37,"used":533.76,"free":3162.03},{"epoch":26137599,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":533.75,"free":3162.02},{"epoch":26137600,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":533.84,"free":3161.94},{"epoch":26137601,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":533.74,"free":3162.05},{"epoch":26137602,"idl":99.82,"recv":0,"send":0.01,"writ":0.19,"used":533.86,"free":3161.92},{"epoch":26137603,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":533.95,"free":3161.83},{"epoch":26137604,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":533.57,"free":3162.2},{"epoch":26137605,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":533.8,"free":3161.99},{"epoch":26137606,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":533.79,"free":3161.99},{"epoch":26137607,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":533.76,"free":3162.02},{"epoch":26137608,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":534.08,"free":3161.69},{"epoch":26137609,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":533.72,"free":3162.05},{"epoch":26137610,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":533.73,"free":3162.06},{"epoch":26137611,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":533.86,"free":3161.92},{"epoch":26137612,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":533.86,"free":3161.92},{"epoch":26137613,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":534.46,"free":3161.33},{"epoch":26137614,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":533.82,"free":3161.97},{"epoch":26137615,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":533.56,"free":3162.24},{"epoch":26137616,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":533.55,"free":3162.25},{"epoch":26137617,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":533.52,"free":3162.28},{"epoch":26137618,"idl":99.72,"recv":0,"send":0,"writ":0.5,"used":533.96,"free":3161.83},{"epoch":26137619,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":533.72,"free":3162.06},{"epoch":26137620,"idl":99.66,"recv":0,"send":0,"writ":0.33,"used":532.99,"free":3162.81},{"epoch":26137621,"idl":98.81,"recv":0,"send":0,"writ":0.14,"used":532.97,"free":3162.83},{"epoch":26137622,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":533.15,"free":3162.64},{"epoch":26137623,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":533.6,"free":3162.19},{"epoch":26137624,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":533.6,"free":3162.18},{"epoch":26137625,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":533.86,"free":3161.94},{"epoch":26137626,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":533.83,"free":3161.97},{"epoch":26137627,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":533.81,"free":3161.99},{"epoch":26137628,"idl":99.72,"recv":0,"send":0,"writ":0.64,"used":534.14,"free":3161.65},{"epoch":26137629,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":534.01,"free":3161.75},{"epoch":26137630,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":533.78,"free":3162},{"epoch":26137631,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":533.74,"free":3162.04},{"epoch":26137632,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":533.76,"free":3162.01},{"epoch":26137633,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":534.59,"free":3161.18},{"epoch":26137634,"idl":99.82,"recv":0,"send":0,"writ":0.45,"used":533.88,"free":3161.88},{"epoch":26137635,"idl":99.7,"recv":0,"send":0,"writ":0.34,"used":532.9,"free":3162.88},{"epoch":26137636,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":532.88,"free":3162.9},{"epoch":26137637,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":532.85,"free":3162.93},{"epoch":26137638,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":532.84,"free":3162.93},{"epoch":26137639,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":534.37,"free":3161.39},{"epoch":26137640,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":534.09,"free":3161.69},{"epoch":26137641,"idl":98.93,"recv":0,"send":0,"writ":0.16,"used":534.01,"free":3161.76},{"epoch":26137642,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":534,"free":3161.77},{"epoch":26137643,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":533.97,"free":3161.79},{"epoch":26137644,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":534.24,"free":3161.52},{"epoch":26137645,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":533.18,"free":3162.59},{"epoch":26137646,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":533.12,"free":3162.65},{"epoch":26137647,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":533.12,"free":3162.65},{"epoch":26137648,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":533.08,"free":3162.68},{"epoch":26137649,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":533.75,"free":3162.01},{"epoch":26137650,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":534.04,"free":3161.73},{"epoch":26137651,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":534.04,"free":3161.74},{"epoch":26137652,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":534.01,"free":3161.76},{"epoch":26137653,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":533.98,"free":3161.78},{"epoch":26137654,"idl":99.65,"recv":0,"send":0,"writ":0.49,"used":534.31,"free":3161.44},{"epoch":26137655,"idl":99.79,"recv":0,"send":0,"writ":0.38,"used":533.97,"free":3161.8},{"epoch":26137656,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":534.14,"free":3161.64},{"epoch":26137657,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":534.1,"free":3161.67},{"epoch":26137658,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":534.09,"free":3161.68},{"epoch":26137659,"idl":99.58,"recv":0,"send":0,"writ":0.68,"used":534.56,"free":3161.21},{"epoch":26137660,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":534.29,"free":3161.5},{"epoch":26137661,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":534.27,"free":3161.51},{"epoch":26137662,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":534,"free":3161.78},{"epoch":26137663,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":533.73,"free":3162.04},{"epoch":26137664,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":534.42,"free":3161.36},{"epoch":26137665,"idl":99.74,"recv":0,"send":0,"writ":0.39,"used":533.47,"free":3162.33},{"epoch":26137666,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":533.64,"free":3162.15},{"epoch":26137667,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":533.62,"free":3162.18},{"epoch":26137668,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":533.6,"free":3162.2},{"epoch":26137669,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":533.66,"free":3162.14},{"epoch":26137670,"idl":99.66,"recv":0,"send":0,"writ":0.69,"used":534.17,"free":3161.64},{"epoch":26137671,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":533.8,"free":3162.02},{"epoch":26137672,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":533.77,"free":3162.04},{"epoch":26137673,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":533.75,"free":3162.05},{"epoch":26137674,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":533.72,"free":3162.08},{"epoch":26137675,"idl":99.64,"recv":0,"send":0,"writ":0.78,"used":534.25,"free":3161.56},{"epoch":26137676,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":533.95,"free":3161.86},{"epoch":26137677,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":534.13,"free":3161.68},{"epoch":26137678,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":534.1,"free":3161.71},{"epoch":26137679,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":534.08,"free":3161.71},{"epoch":26137680,"idl":99.52,"recv":0,"send":0,"writ":0.75,"used":534.42,"free":3161.4},{"epoch":26137681,"idl":98.46,"recv":0,"send":0,"writ":0.16,"used":534.07,"free":3161.74},{"epoch":26137682,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":534.04,"free":3161.77},{"epoch":26137683,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":534.01,"free":3161.79},{"epoch":26137684,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":534,"free":3161.8},{"epoch":26137685,"idl":99.64,"recv":0,"send":0,"writ":0.82,"used":533.68,"free":3162.14},{"epoch":26137686,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":533,"free":3162.82},{"epoch":26137687,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":532.96,"free":3162.85},{"epoch":26137688,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":533.08,"free":3162.73},{"epoch":26137689,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":534.3,"free":3161.48},{"epoch":26137690,"idl":99.64,"recv":0,"send":0,"writ":0.76,"used":533.74,"free":3162.06},{"epoch":26137691,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":533.09,"free":3162.7},{"epoch":26137692,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":533.09,"free":3162.7},{"epoch":26137693,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":533.05,"free":3162.73},{"epoch":26137694,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":532.87,"free":3162.91},{"epoch":26137695,"idl":99.7,"recv":0,"send":0,"writ":0.64,"used":534.04,"free":3161.76},{"epoch":26137696,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":533.51,"free":3162.29},{"epoch":26137697,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":533.73,"free":3162.06},{"epoch":26137698,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":533.7,"free":3162.08},{"epoch":26137699,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":533.69,"free":3162.11},{"epoch":26137700,"idl":99.64,"recv":0,"send":0,"writ":0.72,"used":534.02,"free":3161.82},{"epoch":26137701,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":533.65,"free":3162.18},{"epoch":26137702,"idl":98.95,"recv":0,"send":0,"writ":0.14,"used":533.61,"free":3162.21},{"epoch":26137703,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":533.61,"free":3162.21},{"epoch":26137704,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":533.58,"free":3162.23},{"epoch":26137705,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":532.64,"free":3163.2},{"epoch":26137706,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":533.09,"free":3162.74},{"epoch":26137707,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":533.06,"free":3162.77},{"epoch":26137708,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":533.05,"free":3162.77},{"epoch":26137709,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":533.02,"free":3162.8},{"epoch":26137710,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":533.02,"free":3162.82},{"epoch":26137711,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":534.42,"free":3161.41},{"epoch":26137712,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":533.84,"free":3161.99},{"epoch":26137713,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":533.88,"free":3161.94},{"epoch":26137714,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":533.85,"free":3161.97},{"epoch":26137715,"idl":99.44,"recv":0,"send":0,"writ":0.54,"used":534.12,"free":3161.71},{"epoch":26137716,"idl":99.81,"recv":0,"send":0,"writ":0.58,"used":534.26,"free":3161.57},{"epoch":26137717,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":533.8,"free":3162.03},{"epoch":26137718,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":533.79,"free":3162.04},{"epoch":26137719,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":533.77,"free":3162.02},{"epoch":26137720,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":532.55,"free":3163.26},{"epoch":26137721,"idl":99.77,"recv":0,"send":0,"writ":0.61,"used":533.47,"free":3162.35},{"epoch":26137722,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":533.35,"free":3162.47},{"epoch":26137723,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":533.14,"free":3162.68},{"epoch":26137724,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":533.11,"free":3162.74},{"epoch":26137725,"idl":99.82,"recv":0,"send":0,"writ":0.4,"used":532.65,"free":3163.21},{"epoch":26137726,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":533.41,"free":3162.44},{"epoch":26137727,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":533.54,"free":3162.3},{"epoch":26137728,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":533.53,"free":3162.31},{"epoch":26137729,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":533.49,"free":3162.34},{"epoch":26137730,"idl":99.81,"recv":0,"send":0,"writ":0.35,"used":533.74,"free":3162.11},{"epoch":26137731,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":534.07,"free":3161.78},{"epoch":26137732,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":533.71,"free":3162.13},{"epoch":26137733,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":533.87,"free":3161.97},{"epoch":26137734,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":533.86,"free":3161.97},{"epoch":26137735,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":533.85,"free":3162},{"epoch":26137736,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":534.28,"free":3161.57},{"epoch":26137737,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":533.81,"free":3162.03},{"epoch":26137738,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":533.81,"free":3162.03},{"epoch":26137739,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":533.77,"free":3162.06},{"epoch":26137740,"idl":99.38,"recv":0,"send":0,"writ":9.48,"used":533.01,"free":3163.33},{"epoch":26137741,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":533.1,"free":3163.32},{"epoch":26137742,"idl":99.77,"recv":0,"send":0,"writ":0.53,"used":533.91,"free":3162.5},{"epoch":26137743,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":533.55,"free":3162.85},{"epoch":26137744,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":533.53,"free":3162.86},{"epoch":26137745,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":532.5,"free":3163.91},{"epoch":26137746,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":532.45,"free":3163.96},{"epoch":26137747,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":533.48,"free":3162.92},{"epoch":26137748,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":533.15,"free":3163.25},{"epoch":26137749,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":533.4,"free":3162.97},{"epoch":26137750,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":533.38,"free":3163.01},{"epoch":26137751,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":533.37,"free":3163.02},{"epoch":26137752,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":533.93,"free":3162.45},{"epoch":26137753,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":533.32,"free":3163.06},{"epoch":26137754,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":533.3,"free":3163.09},{"epoch":26137755,"idl":99.78,"recv":0,"send":0,"writ":0.37,"used":532.87,"free":3163.54},{"epoch":26137756,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":532.96,"free":3163.45},{"epoch":26137757,"idl":99.8,"recv":0,"send":0,"writ":0.61,"used":533.89,"free":3162.52},{"epoch":26137758,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":533.89,"free":3162.51},{"epoch":26137759,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":533.88,"free":3162.51},{"epoch":26137760,"idl":99.81,"recv":0.01,"send":0.05,"writ":0.32,"used":533.87,"free":3162.54},{"epoch":26137761,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":533.89,"free":3162.51},{"epoch":26137762,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":534.23,"free":3162.16},{"epoch":26137763,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":533.85,"free":3162.54},{"epoch":26137764,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":533.84,"free":3162.54},{"epoch":26137765,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":533.12,"free":3163.28},{"epoch":26137766,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":533.09,"free":3163.31},{"epoch":26137767,"idl":99.81,"recv":0,"send":0,"writ":0.53,"used":533.97,"free":3162.42},{"epoch":26137768,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":533.54,"free":3162.85},{"epoch":26137769,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":533.51,"free":3162.88},{"epoch":26137770,"idl":99.85,"recv":0.02,"send":2.57,"writ":0.39,"used":534.13,"free":3162.27},{"epoch":26137771,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":534.16,"free":3162.23},{"epoch":26137772,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":534.4,"free":3161.99},{"epoch":26137773,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":533.62,"free":3162.75},{"epoch":26137774,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":533.6,"free":3162.77},{"epoch":26137775,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":533.37,"free":3163.02},{"epoch":26137776,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":533.33,"free":3163.05},{"epoch":26137777,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":533.54,"free":3162.84},{"epoch":26137778,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":532.8,"free":3163.58},{"epoch":26137779,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":534.23,"free":3162.14},{"epoch":26137780,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":534,"free":3162.38},{"epoch":26137781,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":534.17,"free":3162.21},{"epoch":26137782,"idl":99.74,"recv":0,"send":0,"writ":0.43,"used":534.44,"free":3161.92},{"epoch":26137783,"idl":99.95,"recv":0.01,"send":0.03,"writ":0.37,"used":533.58,"free":3162.78},{"epoch":26137784,"idl":99.94,"recv":0.01,"send":1.37,"writ":0.18,"used":533.63,"free":3162.73},{"epoch":26137785,"idl":99.83,"recv":0.03,"send":1.95,"writ":0.43,"used":533.37,"free":3162.99},{"epoch":26137786,"idl":99.9,"recv":0.01,"send":0.68,"writ":0.26,"used":533.34,"free":3163.01},{"epoch":26137787,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":533.23,"free":3163.1},{"epoch":26137788,"idl":99.72,"recv":0,"send":0.01,"writ":0.58,"used":533.85,"free":3162.48},{"epoch":26137789,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":533.35,"free":3162.98},{"epoch":26137790,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":533.1,"free":3163.25},{"epoch":26137791,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":533.06,"free":3163.27},{"epoch":26137792,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":533.05,"free":3163.29},{"epoch":26137793,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":533.55,"free":3162.78},{"epoch":26137794,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":533.25,"free":3163.08},{"epoch":26137795,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":533.11,"free":3163.23},{"epoch":26137796,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":532.96,"free":3163.38},{"epoch":26137797,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":533.09,"free":3163.25},{"epoch":26137798,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":533.28,"free":3163.04},{"epoch":26137799,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":532.86,"free":3163.47},{"epoch":26137800,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":533.55,"free":3162.78},{"epoch":26137801,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":533.57,"free":3162.76},{"epoch":26137802,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":533.54,"free":3162.79},{"epoch":26137803,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":534.51,"free":3161.81},{"epoch":26137804,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":533.99,"free":3162.33},{"epoch":26137805,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":534.24,"free":3162.1},{"epoch":26137806,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":534.22,"free":3162.12},{"epoch":26137807,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":534.2,"free":3162.13},{"epoch":26137808,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":534.62,"free":3161.7},{"epoch":26137809,"idl":99.56,"recv":0,"send":0,"writ":0.32,"used":533.85,"free":3162.45},{"epoch":26137810,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":534.35,"free":3161.96},{"epoch":26137811,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":534.32,"free":3161.99},{"epoch":26137812,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":534.31,"free":3161.99},{"epoch":26137813,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":534.63,"free":3161.67},{"epoch":26137814,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":534.28,"free":3162.04},{"epoch":26137815,"idl":99.86,"recv":0,"send":0,"writ":0.26,"used":534.28,"free":3162.06},{"epoch":26137816,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":534.26,"free":3162.07},{"epoch":26137817,"idl":99.92,"recv":0,"send":0,"writ":0.25,"used":534.24,"free":3162.09},{"epoch":26137818,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":534.57,"free":3161.76},{"epoch":26137819,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":534.19,"free":3162.13},{"epoch":26137820,"idl":99.87,"recv":0,"send":0,"writ":0.26,"used":534.56,"free":3161.77},{"epoch":26137821,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":534.6,"free":3161.73},{"epoch":26137822,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":534.59,"free":3161.74},{"epoch":26137823,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":535.09,"free":3161.24},{"epoch":26137824,"idl":99.9,"recv":0,"send":0,"writ":0.39,"used":534.55,"free":3161.77},{"epoch":26137825,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":533.13,"free":3163.2},{"epoch":26137826,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":533.04,"free":3163.29},{"epoch":26137827,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":533.02,"free":3163.3},{"epoch":26137828,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":533.02,"free":3163.3},{"epoch":26137829,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":533.77,"free":3162.55},{"epoch":26137830,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":533.73,"free":3162.6},{"epoch":26137831,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":533.73,"free":3162.59},{"epoch":26137832,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":533.71,"free":3162.61},{"epoch":26137833,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":533.69,"free":3162.63},{"epoch":26137834,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":534.27,"free":3162.05},{"epoch":26137835,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":534.14,"free":3162.19},{"epoch":26137836,"idl":99.93,"recv":0.01,"send":0.02,"writ":0.18,"used":533.99,"free":3162.33},{"epoch":26137837,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":533.97,"free":3162.35},{"epoch":26137838,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":534.06,"free":3162.26},{"epoch":26137839,"idl":99.73,"recv":0,"send":0,"writ":0.67,"used":535.08,"free":3161.21},{"epoch":26137840,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":534.62,"free":3161.69},{"epoch":26137841,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":534.59,"free":3161.71},{"epoch":26137842,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":534.5,"free":3161.8},{"epoch":26137843,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":534.33,"free":3161.96},{"epoch":26137844,"idl":99.8,"recv":0,"send":0,"writ":0.49,"used":534.88,"free":3161.42},{"epoch":26137845,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":534.33,"free":3162},{"epoch":26137846,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":534.32,"free":3162.01},{"epoch":26137847,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":534.29,"free":3162.03},{"epoch":26137848,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":534.28,"free":3162.04},{"epoch":26137849,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":532.75,"free":3163.56},{"epoch":26137850,"idl":99.89,"recv":0,"send":0,"writ":0.4,"used":530.12,"free":3166.2},{"epoch":26137851,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":530.09,"free":3166.24},{"epoch":26137852,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":530.06,"free":3166.25},{"epoch":26137853,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":530.06,"free":3166.25},{"epoch":26137854,"idl":99.82,"recv":0,"send":0,"writ":0.6,"used":530.83,"free":3165.48},{"epoch":26137855,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":530.55,"free":3165.77},{"epoch":26137856,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":530.52,"free":3165.79},{"epoch":26137857,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":530.52,"free":3165.79},{"epoch":26137858,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":530.51,"free":3165.79},{"epoch":26137859,"idl":99.8,"recv":0,"send":0,"writ":0.42,"used":531.31,"free":3164.99},{"epoch":26137860,"idl":99.86,"recv":0,"send":0,"writ":0.46,"used":530.35,"free":3165.96},{"epoch":26137861,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":530.42,"free":3165.88},{"epoch":26137862,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":530.42,"free":3165.88},{"epoch":26137863,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":530.4,"free":3165.89},{"epoch":26137864,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":530.38,"free":3165.91},{"epoch":26137865,"idl":99.74,"recv":0,"send":0,"writ":0.75,"used":531.97,"free":3164.34},{"epoch":26137866,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":531.62,"free":3164.68},{"epoch":26137867,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":531.59,"free":3164.71},{"epoch":26137868,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":531.58,"free":3164.71},{"epoch":26137869,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":531.39,"free":3164.88},{"epoch":26137870,"idl":99.67,"recv":0,"send":0,"writ":0.64,"used":531.24,"free":3165.05},{"epoch":26137871,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":530.8,"free":3165.48},{"epoch":26137872,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":530.8,"free":3165.48},{"epoch":26137873,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":530.78,"free":3165.49},{"epoch":26137874,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":530.76,"free":3165.52},{"epoch":26137875,"idl":99.68,"recv":0,"send":0,"writ":0.7,"used":531.68,"free":3164.62},{"epoch":26137876,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":531.48,"free":3164.82},{"epoch":26137877,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":531.24,"free":3165.05},{"epoch":26137878,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.23,"free":3165.06},{"epoch":26137879,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.2,"free":3165.08},{"epoch":26137880,"idl":99.61,"recv":0,"send":0,"writ":0.71,"used":531.79,"free":3164.51},{"epoch":26137881,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":531.39,"free":3164.91},{"epoch":26137882,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":531.38,"free":3164.91},{"epoch":26137883,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":531.36,"free":3164.92},{"epoch":26137884,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":531.34,"free":3164.94},{"epoch":26137885,"idl":99.73,"recv":0,"send":0,"writ":0.66,"used":531.09,"free":3165.2},{"epoch":26137886,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":531.1,"free":3165.18},{"epoch":26137887,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.07,"free":3165.21},{"epoch":26137888,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":531.06,"free":3165.21},{"epoch":26137889,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":531.05,"free":3165.23},{"epoch":26137890,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":531.76,"free":3164.54},{"epoch":26137891,"idl":99.92,"recv":0,"send":0,"writ":0.28,"used":531.52,"free":3164.77},{"epoch":26137892,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":531.5,"free":3164.79},{"epoch":26137893,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":531.49,"free":3164.79},{"epoch":26137894,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.47,"free":3164.8},{"epoch":26137895,"idl":99.66,"recv":0,"send":0,"writ":0.63,"used":531.75,"free":3164.54},{"epoch":26137896,"idl":99.94,"recv":0,"send":0,"writ":0.28,"used":531.47,"free":3164.82},{"epoch":26137897,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.47,"free":3164.82},{"epoch":26137898,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.44,"free":3164.84},{"epoch":26137899,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":530.99,"free":3165.28},{"epoch":26137900,"idl":99.67,"recv":0,"send":0,"writ":0.67,"used":531.03,"free":3165.25},{"epoch":26137901,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":531.61,"free":3164.67},{"epoch":26137902,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":531.45,"free":3164.83},{"epoch":26137903,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":531.1,"free":3165.18},{"epoch":26137904,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":531.08,"free":3165.19},{"epoch":26137905,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":531.9,"free":3164.38},{"epoch":26137906,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":531.57,"free":3164.71},{"epoch":26137907,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":531.53,"free":3164.74},{"epoch":26137908,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":531.53,"free":3164.75},{"epoch":26137909,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":531.52,"free":3164.75},{"epoch":26137910,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":530.58,"free":3165.7},{"epoch":26137911,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":532.05,"free":3164.23},{"epoch":26137912,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.74,"free":3164.53},{"epoch":26137913,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.73,"free":3164.53},{"epoch":26137914,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":531.7,"free":3164.56},{"epoch":26137915,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":531.96,"free":3164.32},{"epoch":26137916,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":532.38,"free":3163.89},{"epoch":26137917,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":531.93,"free":3164.34},{"epoch":26137918,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.92,"free":3164.35},{"epoch":26137919,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.91,"free":3164.35},{"epoch":26137920,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":531.81,"free":3164.47},{"epoch":26137921,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":532.2,"free":3164.07},{"epoch":26137922,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.83,"free":3164.44},{"epoch":26137923,"idl":99.38,"recv":0,"send":0,"writ":0.14,"used":531.83,"free":3164.44},{"epoch":26137924,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":531.82,"free":3164.44},{"epoch":26137925,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":531.81,"free":3164.47},{"epoch":26137926,"idl":95.1,"recv":0.4,"send":0.01,"writ":197.18,"used":545.63,"free":3150.68},{"epoch":26137927,"idl":99.86,"recv":0,"send":0,"writ":63.98,"used":534.04,"free":3161.88},{"epoch":26137928,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":534.02,"free":3161.9},{"epoch":26137929,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":534.13,"free":3161.77},{"epoch":26137930,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":534.22,"free":3161.69},{"epoch":26137931,"idl":99.78,"recv":0,"send":0,"writ":0.63,"used":533.94,"free":3161.98},{"epoch":26137932,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":532.04,"free":3163.9},{"epoch":26137933,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":532.01,"free":3163.92},{"epoch":26137934,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532,"free":3163.95},{"epoch":26137935,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":532.03,"free":3163.94},{"epoch":26137936,"idl":99.77,"recv":0,"send":0,"writ":0.39,"used":532.42,"free":3163.55},{"epoch":26137937,"idl":99.94,"recv":0,"send":0,"writ":0.34,"used":531.99,"free":3163.98},{"epoch":26137938,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":531.98,"free":3164},{"epoch":26137939,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":531.97,"free":3164},{"epoch":26137940,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":530.58,"free":3165.41},{"epoch":26137941,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":530.96,"free":3165.04},{"epoch":26137942,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":531.71,"free":3164.3},{"epoch":26137943,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":531.7,"free":3164.3},{"epoch":26137944,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":531.69,"free":3164.32},{"epoch":26137945,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":530.97,"free":3165.05},{"epoch":26137946,"idl":99.81,"recv":0,"send":0,"writ":0.44,"used":531.32,"free":3164.7},{"epoch":26137947,"idl":99.95,"recv":0,"send":0,"writ":0.28,"used":531.18,"free":3164.83},{"epoch":26137948,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.16,"free":3164.85},{"epoch":26137949,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":531.14,"free":3164.86},{"epoch":26137950,"idl":99.77,"recv":0,"send":0,"writ":0.26,"used":531.15,"free":3164.87},{"epoch":26137951,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":531.21,"free":3164.8},{"epoch":26137952,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":532.22,"free":3163.79},{"epoch":26137953,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":527.73,"free":3168.46},{"epoch":26137954,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":526.08,"free":3170.18},{"epoch":26137955,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":526.33,"free":3169.96},{"epoch":26137956,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":526.31,"free":3169.97},{"epoch":26137957,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":526.98,"free":3169.3},{"epoch":26137958,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":526.53,"free":3169.74},{"epoch":26137959,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":526.51,"free":3169.74},{"epoch":26137960,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":526.52,"free":3169.75},{"epoch":26137961,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":526.51,"free":3169.75},{"epoch":26137962,"idl":99.77,"recv":0,"send":0,"writ":0.62,"used":526.84,"free":3169.41},{"epoch":26137963,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":526.23,"free":3170.02},{"epoch":26137964,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":526.23,"free":3170.05},{"epoch":26137965,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":526.25,"free":3170.05},{"epoch":26137966,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":526.23,"free":3170.07},{"epoch":26137967,"idl":99.75,"recv":0,"send":0,"writ":0.45,"used":526.7,"free":3169.59},{"epoch":26137968,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":526.45,"free":3169.84},{"epoch":26137969,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":526.45,"free":3169.84},{"epoch":26137970,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":526.47,"free":3169.83},{"epoch":26137971,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":526.44,"free":3169.86},{"epoch":26137972,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":526.88,"free":3169.41},{"epoch":26137973,"idl":99.92,"recv":0,"send":0,"writ":0.24,"used":524.07,"free":3172.29},{"epoch":26137974,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":523.19,"free":3173.2},{"epoch":26137975,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":522.94,"free":3173.47},{"epoch":26137976,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":523.09,"free":3173.31},{"epoch":26137977,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":523.52,"free":3172.88},{"epoch":26137978,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":523.33,"free":3173.08},{"epoch":26137979,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.32,"free":3173.1},{"epoch":26137980,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":523.36,"free":3173.08},{"epoch":26137981,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":523.33,"free":3173.1},{"epoch":26137982,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":523.68,"free":3172.75},{"epoch":26137983,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":523.3,"free":3173.13},{"epoch":26137984,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":523.29,"free":3173.13},{"epoch":26137985,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":523.07,"free":3173.37},{"epoch":26137986,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":523.04,"free":3173.4},{"epoch":26137987,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":523.41,"free":3173.02},{"epoch":26137988,"idl":99.91,"recv":0,"send":0,"writ":0.39,"used":523.49,"free":3172.93},{"epoch":26137989,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":523.71,"free":3172.68},{"epoch":26137990,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":523.73,"free":3172.68},{"epoch":26137991,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":523.73,"free":3172.68},{"epoch":26137992,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":523.71,"free":3172.69},{"epoch":26137993,"idl":99.76,"recv":0,"send":0,"writ":0.6,"used":524.39,"free":3172.01},{"epoch":26137994,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":523.68,"free":3172.71},{"epoch":26137995,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":523.7,"free":3172.71},{"epoch":26137996,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":523.67,"free":3172.74},{"epoch":26137997,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":523.7,"free":3172.7},{"epoch":26137998,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":524.37,"free":3172.03},{"epoch":26137999,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":524.08,"free":3172.31},{"epoch":26138000,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":524.08,"free":3172.34},{"epoch":26138001,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":524.07,"free":3172.34},{"epoch":26138002,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":524.07,"free":3172.34},{"epoch":26138003,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":524.41,"free":3171.99},{"epoch":26138004,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":524.06,"free":3172.34},{"epoch":26138005,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":522.84,"free":3173.57},{"epoch":26138006,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":522.81,"free":3173.6},{"epoch":26138007,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":522.81,"free":3173.6},{"epoch":26138008,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":523.96,"free":3172.44},{"epoch":26138009,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":524.25,"free":3172.15},{"epoch":26138010,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":524.02,"free":3172.4},{"epoch":26138011,"idl":99.91,"recv":0,"send":0.01,"writ":0.19,"used":523.98,"free":3172.43},{"epoch":26138012,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":523.97,"free":3172.43},{"epoch":26138013,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":524.61,"free":3171.8},{"epoch":26138014,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":523.69,"free":3172.71},{"epoch":26138015,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":523.95,"free":3172.46},{"epoch":26138016,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":523.94,"free":3172.47},{"epoch":26138017,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":523.91,"free":3172.5},{"epoch":26138018,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":524.45,"free":3171.95},{"epoch":26138019,"idl":99.78,"recv":0,"send":0,"writ":0.51,"used":523.68,"free":3172.7},{"epoch":26138020,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":524.03,"free":3172.37},{"epoch":26138021,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":524.07,"free":3172.32},{"epoch":26138022,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":523.96,"free":3172.43},{"epoch":26138023,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":523.91,"free":3172.47},{"epoch":26138024,"idl":99.89,"recv":0,"send":0,"writ":0.42,"used":523.54,"free":3172.84},{"epoch":26138025,"idl":99.81,"recv":0.01,"send":0.01,"writ":0.36,"used":522.99,"free":3173.4},{"epoch":26138026,"idl":99.89,"recv":0,"send":0,"writ":0.39,"used":522.42,"free":3173.96},{"epoch":26138027,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":521.92,"free":3174.46},{"epoch":26138028,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":522.3,"free":3174.06},{"epoch":26138029,"idl":99.91,"recv":0,"send":0,"writ":0.38,"used":523.25,"free":3173.11},{"epoch":26138030,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":522.4,"free":3173.98},{"epoch":26138031,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":522.35,"free":3174.02},{"epoch":26138032,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":522.35,"free":3174.02},{"epoch":26138033,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":522.32,"free":3174.04},{"epoch":26138034,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":523.83,"free":3172.53},{"epoch":26138035,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":523.55,"free":3172.83},{"epoch":26138036,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":523.55,"free":3172.82},{"epoch":26138037,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":523.52,"free":3172.84},{"epoch":26138038,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":523.51,"free":3172.86},{"epoch":26138039,"idl":99.81,"recv":0,"send":0,"writ":0.58,"used":523.62,"free":3172.74},{"epoch":26138040,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":522.53,"free":3173.85},{"epoch":26138041,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":522.5,"free":3173.87},{"epoch":26138042,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.49,"free":3173.87},{"epoch":26138043,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":522.49,"free":3173.87},{"epoch":26138044,"idl":96.94,"recv":0,"send":0,"writ":0.5,"used":523.26,"free":3173.1},{"epoch":26138045,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":522.25,"free":3174.13},{"epoch":26138046,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":522.22,"free":3174.15},{"epoch":26138047,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":522.22,"free":3174.15},{"epoch":26138048,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":522.21,"free":3174.15},{"epoch":26138049,"idl":99.58,"recv":0,"send":0,"writ":0.69,"used":523.54,"free":3172.8},{"epoch":26138050,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":523.21,"free":3173.14},{"epoch":26138051,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":523.18,"free":3173.17},{"epoch":26138052,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":523.33,"free":3173.02},{"epoch":26138053,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":523.33,"free":3173.02},{"epoch":26138054,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":523.41,"free":3172.94},{"epoch":26138055,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":521.71,"free":3174.66},{"epoch":26138056,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":521.59,"free":3174.77},{"epoch":26138057,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":522.05,"free":3174.31},{"epoch":26138058,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":522.06,"free":3174.29},{"epoch":26138059,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":522.61,"free":3173.74},{"epoch":26138060,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":522.31,"free":3174.06},{"epoch":26138061,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":522.29,"free":3174.08},{"epoch":26138062,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":522.28,"free":3174.08},{"epoch":26138063,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":522.26,"free":3174.09},{"epoch":26138064,"idl":99.4,"recv":0,"send":0,"writ":0.16,"used":522.24,"free":3174.11},{"epoch":26138065,"idl":99.71,"recv":0,"send":0,"writ":0.66,"used":523.33,"free":3173.04},{"epoch":26138066,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":522.96,"free":3173.4},{"epoch":26138067,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":522.96,"free":3173.4},{"epoch":26138068,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":522.95,"free":3173.4},{"epoch":26138069,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":522.93,"free":3173.43},{"epoch":26138070,"idl":99.65,"recv":0,"send":0,"writ":0.69,"used":523.4,"free":3172.97},{"epoch":26138071,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":522.93,"free":3173.43},{"epoch":26138072,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":522.91,"free":3173.45},{"epoch":26138073,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":523.02,"free":3173.34},{"epoch":26138074,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":523.08,"free":3173.28},{"epoch":26138075,"idl":99.67,"recv":0,"send":0,"writ":0.69,"used":523.79,"free":3172.58},{"epoch":26138076,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":523.31,"free":3173.07},{"epoch":26138077,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":523.3,"free":3173.08},{"epoch":26138078,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":523.29,"free":3173.08},{"epoch":26138079,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":523.78,"free":3172.57},{"epoch":26138080,"idl":99.69,"recv":0,"send":0,"writ":0.68,"used":523.92,"free":3172.44},{"epoch":26138081,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":523.53,"free":3172.84},{"epoch":26138082,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":523.51,"free":3172.85},{"epoch":26138083,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":523.51,"free":3172.85},{"epoch":26138084,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":523.5,"free":3172.85},{"epoch":26138085,"idl":99.69,"recv":0,"send":0,"writ":0.64,"used":523.7,"free":3172.67},{"epoch":26138086,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":522.99,"free":3173.37},{"epoch":26138087,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":522.97,"free":3173.39},{"epoch":26138088,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":522.95,"free":3173.4},{"epoch":26138089,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":522.95,"free":3173.4},{"epoch":26138090,"idl":99.59,"recv":0,"send":0,"writ":0.63,"used":522.91,"free":3173.46},{"epoch":26138091,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":522.69,"free":3173.67},{"epoch":26138092,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":522.68,"free":3173.68},{"epoch":26138093,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":522.67,"free":3173.68},{"epoch":26138094,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":522.67,"free":3173.68},{"epoch":26138095,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":522.95,"free":3173.41},{"epoch":26138096,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":523.48,"free":3172.89},{"epoch":26138097,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":523.57,"free":3172.79},{"epoch":26138098,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":523.57,"free":3172.79},{"epoch":26138099,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":523.55,"free":3172.8},{"epoch":26138100,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":522.37,"free":3173.99},{"epoch":26138101,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":523.51,"free":3172.85},{"epoch":26138102,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":523.05,"free":3173.32},{"epoch":26138103,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":523.02,"free":3173.34},{"epoch":26138104,"idl":98.6,"recv":0,"send":0,"writ":0.14,"used":523.01,"free":3173.36},{"epoch":26138105,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":523.03,"free":3173.35},{"epoch":26138106,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":522.96,"free":3173.42},{"epoch":26138107,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":522.49,"free":3173.88},{"epoch":26138108,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":522.49,"free":3173.88},{"epoch":26138109,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":523.69,"free":3172.65},{"epoch":26138110,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":523.96,"free":3172.41},{"epoch":26138111,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":524.1,"free":3172.27},{"epoch":26138112,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":523.69,"free":3172.66},{"epoch":26138113,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":523.69,"free":3172.66},{"epoch":26138114,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":523.67,"free":3172.68},{"epoch":26138115,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":523.42,"free":3172.94},{"epoch":26138116,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":524.07,"free":3172.29},{"epoch":26138117,"idl":94.69,"recv":0.49,"send":0.01,"writ":13.77,"used":533.37,"free":3154.88},{"epoch":26138118,"idl":95.05,"recv":0,"send":0,"writ":128.95,"used":532.71,"free":3154.02},{"epoch":26138119,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":526.27,"free":3167.44},{"epoch":26138120,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":526.5,"free":3167.22},{"epoch":26138121,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":526.62,"free":3167.09},{"epoch":26138122,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":525.97,"free":3167.74},{"epoch":26138123,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":524.01,"free":3169.73},{"epoch":26138124,"idl":98.99,"recv":0,"send":0,"writ":0.16,"used":523.72,"free":3170.02},{"epoch":26138125,"idl":98.38,"recv":0,"send":0,"writ":15.48,"used":526.45,"free":3167.9},{"epoch":26138126,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":524.42,"free":3169.27},{"epoch":26138127,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":524.32,"free":3169.36},{"epoch":26138128,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":524.3,"free":3169.4},{"epoch":26138129,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":524.29,"free":3169.4},{"epoch":26138130,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":524.31,"free":3169.39},{"epoch":26138131,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":524.57,"free":3169.13},{"epoch":26138132,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":524.02,"free":3169.68},{"epoch":26138133,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":524.02,"free":3169.68},{"epoch":26138134,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":524,"free":3169.69},{"epoch":26138135,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":524,"free":3169.7},{"epoch":26138136,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":524.54,"free":3169.17},{"epoch":26138137,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":523.98,"free":3169.72},{"epoch":26138138,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":523.96,"free":3169.74},{"epoch":26138139,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":524.2,"free":3169.47},{"epoch":26138140,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":524.18,"free":3169.51},{"epoch":26138141,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":524.17,"free":3169.52},{"epoch":26138142,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":524.26,"free":3169.42},{"epoch":26138143,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":523.66,"free":3170.02},{"epoch":26138144,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":523.75,"free":3169.96},{"epoch":26138145,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":524.66,"free":3169.04},{"epoch":26138146,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":525.16,"free":3168.51},{"epoch":26138147,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":526.66,"free":3167.01},{"epoch":26138148,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":526.36,"free":3167.31},{"epoch":26138149,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":526.35,"free":3167.31},{"epoch":26138150,"idl":99.7,"recv":0,"send":0,"writ":0.33,"used":525.64,"free":3168.04},{"epoch":26138151,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":525.59,"free":3168.08},{"epoch":26138152,"idl":99.69,"recv":0,"send":0,"writ":0.61,"used":526.7,"free":3166.97},{"epoch":26138153,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":526.56,"free":3167.1},{"epoch":26138154,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":526.53,"free":3167.13},{"epoch":26138155,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":525.6,"free":3168.08},{"epoch":26138156,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":525.54,"free":3168.13},{"epoch":26138157,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":526.57,"free":3167.1},{"epoch":26138158,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":526.51,"free":3167.16},{"epoch":26138159,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":526.48,"free":3167.18},{"epoch":26138160,"idl":99.75,"recv":0,"send":0,"writ":0.26,"used":526.25,"free":3167.43},{"epoch":26138161,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":526.36,"free":3167.32},{"epoch":26138162,"idl":99.69,"recv":0,"send":0,"writ":0.41,"used":526.97,"free":3166.7},{"epoch":26138163,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":526.87,"free":3166.79},{"epoch":26138164,"idl":98.08,"recv":0,"send":0,"writ":0.14,"used":526.87,"free":3166.79},{"epoch":26138165,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":526.62,"free":3167.05},{"epoch":26138166,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":526.6,"free":3167.07},{"epoch":26138167,"idl":99.71,"recv":0,"send":0,"writ":0.52,"used":527.05,"free":3166.61},{"epoch":26138168,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":526.82,"free":3166.84},{"epoch":26138169,"idl":99.62,"recv":0,"send":0,"writ":0.3,"used":525.83,"free":3167.8},{"epoch":26138170,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":525.83,"free":3167.82},{"epoch":26138171,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":525.44,"free":3168.2},{"epoch":26138172,"idl":99.59,"recv":0,"send":0,"writ":0.39,"used":525.76,"free":3167.87},{"epoch":26138173,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":525.28,"free":3168.35},{"epoch":26138174,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":525.27,"free":3168.38},{"epoch":26138175,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":525.04,"free":3168.62},{"epoch":26138176,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":525.01,"free":3168.65},{"epoch":26138177,"idl":99.72,"recv":0,"send":0,"writ":0.35,"used":525.58,"free":3168.08},{"epoch":26138178,"idl":99.86,"recv":0,"send":0,"writ":0.38,"used":525.92,"free":3167.73},{"epoch":26138179,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":525.89,"free":3167.75},{"epoch":26138180,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":525.66,"free":3168.01},{"epoch":26138181,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":525.63,"free":3168.03},{"epoch":26138182,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":525.61,"free":3168.04},{"epoch":26138183,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":525.72,"free":3167.93},{"epoch":26138184,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":525.32,"free":3168.32},{"epoch":26138185,"idl":99.33,"recv":0,"send":0,"writ":0.28,"used":525.05,"free":3168.61},{"epoch":26138186,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":524.85,"free":3168.81},{"epoch":26138187,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":524.81,"free":3168.84},{"epoch":26138188,"idl":99.69,"recv":0,"send":0,"writ":0.58,"used":524.92,"free":3168.73},{"epoch":26138189,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":524.52,"free":3169.12},{"epoch":26138190,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":525.25,"free":3168.41},{"epoch":26138191,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":525.26,"free":3168.4},{"epoch":26138192,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":525.24,"free":3168.41},{"epoch":26138193,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":525.99,"free":3167.66},{"epoch":26138194,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":525.36,"free":3168.29},{"epoch":26138195,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":526.13,"free":3167.53},{"epoch":26138196,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":526.14,"free":3167.52},{"epoch":26138197,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":526.13,"free":3167.52},{"epoch":26138198,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":526.57,"free":3167.08},{"epoch":26138199,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":526.32,"free":3167.3},{"epoch":26138200,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":525.85,"free":3167.79},{"epoch":26138201,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":525.82,"free":3167.82},{"epoch":26138202,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":525.8,"free":3167.83},{"epoch":26138203,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":526.09,"free":3167.54},{"epoch":26138204,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":526.02,"free":3167.62},{"epoch":26138205,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":526.01,"free":3167.65},{"epoch":26138206,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":526,"free":3167.65},{"epoch":26138207,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":525.98,"free":3167.67},{"epoch":26138208,"idl":99.67,"recv":0,"send":0,"writ":0.49,"used":526.4,"free":3167.24},{"epoch":26138209,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":526.2,"free":3167.44},{"epoch":26138210,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":525.39,"free":3168.27},{"epoch":26138211,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":525.42,"free":3168.23},{"epoch":26138212,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":525.41,"free":3168.23},{"epoch":26138213,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":525.91,"free":3167.73},{"epoch":26138214,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":526.11,"free":3167.53},{"epoch":26138215,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":526.38,"free":3167.28},{"epoch":26138216,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":526.37,"free":3167.28},{"epoch":26138217,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":526.35,"free":3167.3},{"epoch":26138218,"idl":99.72,"recv":0,"send":0,"writ":0.37,"used":526.85,"free":3166.79},{"epoch":26138219,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":526.32,"free":3167.31},{"epoch":26138220,"idl":99.66,"recv":0,"send":0,"writ":0.29,"used":525.6,"free":3168.05},{"epoch":26138221,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":525.56,"free":3168.08},{"epoch":26138222,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":525.56,"free":3168.08},{"epoch":26138223,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":525.54,"free":3168.1},{"epoch":26138224,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":526.49,"free":3167.14},{"epoch":26138225,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":524.61,"free":3169.04},{"epoch":26138226,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":524.54,"free":3169.1},{"epoch":26138227,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":524.51,"free":3169.13},{"epoch":26138228,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":524.51,"free":3169.13},{"epoch":26138229,"idl":99.55,"recv":0,"send":0,"writ":0.68,"used":526.37,"free":3167.24},{"epoch":26138230,"idl":99.69,"recv":0,"send":0,"writ":0.35,"used":525.44,"free":3168.19},{"epoch":26138231,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":525.41,"free":3168.21},{"epoch":26138232,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":525.41,"free":3168.21},{"epoch":26138233,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":525.38,"free":3168.23},{"epoch":26138234,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":526.75,"free":3166.87},{"epoch":26138235,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":526.86,"free":3166.79},{"epoch":26138236,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":526.84,"free":3166.8},{"epoch":26138237,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":526.34,"free":3167.29},{"epoch":26138238,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":526.33,"free":3167.3},{"epoch":26138239,"idl":99.69,"recv":0,"send":0,"writ":0.58,"used":526.78,"free":3166.85},{"epoch":26138240,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":526.56,"free":3167.09},{"epoch":26138241,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":526.55,"free":3167.09},{"epoch":26138242,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":526.53,"free":3167.11},{"epoch":26138243,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":526.51,"free":3167.12},{"epoch":26138244,"idl":99.71,"recv":0,"send":0,"writ":0.64,"used":526.85,"free":3166.77},{"epoch":26138245,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":526.51,"free":3167.14},{"epoch":26138246,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":526.49,"free":3167.15},{"epoch":26138247,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":526.48,"free":3167.15},{"epoch":26138248,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":526.48,"free":3167.15},{"epoch":26138249,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":526.89,"free":3166.74},{"epoch":26138250,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":526.64,"free":3166.99},{"epoch":26138251,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":526.64,"free":3167},{"epoch":26138252,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":526.61,"free":3167.02},{"epoch":26138253,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":526.6,"free":3167.03},{"epoch":26138254,"idl":99.72,"recv":0,"send":0,"writ":0.43,"used":527.35,"free":3166.27},{"epoch":26138255,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":526.58,"free":3167.06},{"epoch":26138256,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":526.57,"free":3167.07},{"epoch":26138257,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":526.54,"free":3167.09},{"epoch":26138258,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":526.54,"free":3167.09},{"epoch":26138259,"idl":99.75,"recv":0,"send":0,"writ":0.26,"used":526.29,"free":3167.31},{"epoch":26138260,"idl":99.58,"recv":0,"send":0,"writ":0.68,"used":525.91,"free":3167.71},{"epoch":26138261,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":525.53,"free":3168.09},{"epoch":26138262,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":525.51,"free":3168.11},{"epoch":26138263,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":525.49,"free":3168.12},{"epoch":26138264,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":525.49,"free":3168.14},{"epoch":26138265,"idl":99.7,"recv":0,"send":0,"writ":0.68,"used":526.98,"free":3166.66},{"epoch":26138266,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":526.82,"free":3166.82},{"epoch":26138267,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":526.88,"free":3166.75},{"epoch":26138268,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":526.86,"free":3166.77},{"epoch":26138269,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":526.84,"free":3166.78},{"epoch":26138270,"idl":99.66,"recv":0,"send":0,"writ":0.7,"used":526.94,"free":3166.7},{"epoch":26138271,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":526.59,"free":3167.05},{"epoch":26138272,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":526.57,"free":3167.06},{"epoch":26138273,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":526.57,"free":3167.06},{"epoch":26138274,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":526.54,"free":3167.08},{"epoch":26138275,"idl":99.71,"recv":0,"send":0,"writ":0.74,"used":527.34,"free":3166.3},{"epoch":26138276,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":526.77,"free":3166.86},{"epoch":26138277,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":526.76,"free":3166.88},{"epoch":26138278,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":526.75,"free":3166.88},{"epoch":26138279,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":526.73,"free":3166.89},{"epoch":26138280,"idl":99.69,"recv":0.03,"send":1.14,"writ":0.77,"used":526.93,"free":3166.7},{"epoch":26138281,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":526.31,"free":3167.31},{"epoch":26138282,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":526.38,"free":3167.24},{"epoch":26138283,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":526.37,"free":3167.24},{"epoch":26138284,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":526.35,"free":3167.26},{"epoch":26138285,"idl":99.73,"recv":0,"send":0,"writ":0.71,"used":527.03,"free":3166.59},{"epoch":26138286,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":526.84,"free":3166.78},{"epoch":26138287,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":526.83,"free":3166.78},{"epoch":26138288,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":526.8,"free":3166.81},{"epoch":26138289,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":526.79,"free":3166.79},{"epoch":26138290,"idl":94.92,"recv":0.33,"send":0.01,"writ":78.44,"used":536.85,"free":3157.11},{"epoch":26138291,"idl":99.83,"recv":0,"send":0,"writ":181.86,"used":529.07,"free":3164.79},{"epoch":26138292,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":529.06,"free":3164.8},{"epoch":26138293,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":529.05,"free":3164.8},{"epoch":26138294,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":529.05,"free":3164.8},{"epoch":26138295,"idl":99.64,"recv":0,"send":0,"writ":0.6,"used":528.4,"free":3165.48},{"epoch":26138296,"idl":99.94,"recv":0,"send":0,"writ":0.34,"used":526.62,"free":3167.29},{"epoch":26138297,"idl":99.92,"recv":0,"send":0.01,"writ":0.22,"used":526.93,"free":3166.98},{"epoch":26138298,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":526.99,"free":3166.92},{"epoch":26138299,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":526.98,"free":3166.92},{"epoch":26138300,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":526.74,"free":3167.18},{"epoch":26138301,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":526.36,"free":3167.56},{"epoch":26138302,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":525.97,"free":3167.94},{"epoch":26138303,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":525.96,"free":3167.95},{"epoch":26138304,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":525.93,"free":3167.97},{"epoch":26138305,"idl":99.61,"recv":0,"send":0,"writ":0.31,"used":526.68,"free":3167.24},{"epoch":26138306,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":527.04,"free":3166.87},{"epoch":26138307,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":526.66,"free":3167.25},{"epoch":26138308,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":526.65,"free":3167.26},{"epoch":26138309,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":526.64,"free":3167.26},{"epoch":26138310,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":525.45,"free":3168.47},{"epoch":26138311,"idl":99.77,"recv":0,"send":0,"writ":0.61,"used":527.16,"free":3166.76},{"epoch":26138312,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":526.6,"free":3167.31},{"epoch":26138313,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":526.58,"free":3167.32},{"epoch":26138314,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":526.68,"free":3167.22},{"epoch":26138315,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":526.07,"free":3167.85},{"epoch":26138316,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":527.06,"free":3166.87},{"epoch":26138317,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":527,"free":3166.93},{"epoch":26138318,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":526.99,"free":3166.94},{"epoch":26138319,"idl":99.75,"recv":0,"send":0,"writ":0.35,"used":526.25,"free":3167.65},{"epoch":26138320,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":525.5,"free":3168.41},{"epoch":26138321,"idl":99.77,"recv":0,"send":0,"writ":0.62,"used":526.59,"free":3167.32},{"epoch":26138322,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":525.81,"free":3168.1},{"epoch":26138323,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":525.46,"free":3168.45},{"epoch":26138324,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":525.45,"free":3168.47},{"epoch":26138325,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":525.93,"free":3168.01},{"epoch":26138326,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":526.28,"free":3167.65},{"epoch":26138327,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":525.92,"free":3168.02},{"epoch":26138328,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":525.9,"free":3168.03},{"epoch":26138329,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":525.88,"free":3168.05},{"epoch":26138330,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":526.14,"free":3167.8},{"epoch":26138331,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":526.83,"free":3167.1},{"epoch":26138332,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":526.04,"free":3167.89},{"epoch":26138333,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":526.03,"free":3167.89},{"epoch":26138334,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":526,"free":3167.92},{"epoch":26138335,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":525.05,"free":3168.89},{"epoch":26138336,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":525.5,"free":3168.43},{"epoch":26138337,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":526.25,"free":3167.68},{"epoch":26138338,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":526.23,"free":3167.7},{"epoch":26138339,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":526.21,"free":3167.71},{"epoch":26138340,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":526.08,"free":3167.87},{"epoch":26138341,"idl":99.77,"recv":0,"send":0,"writ":0.4,"used":526.36,"free":3167.59},{"epoch":26138342,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":526.44,"free":3167.51},{"epoch":26138343,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":526.44,"free":3167.51},{"epoch":26138344,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":526.42,"free":3167.52},{"epoch":26138345,"idl":98.47,"recv":0,"send":0,"writ":0.32,"used":525.22,"free":3168.73},{"epoch":26138346,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":525.18,"free":3168.77},{"epoch":26138347,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":526.31,"free":3167.64},{"epoch":26138348,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":525.63,"free":3168.31},{"epoch":26138349,"idl":99.75,"recv":0,"send":0,"writ":0.37,"used":526.1,"free":3167.81},{"epoch":26138350,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":526.15,"free":3167.78},{"epoch":26138351,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":526.28,"free":3167.64},{"epoch":26138352,"idl":99.75,"recv":0,"send":0.02,"writ":0.63,"used":526.78,"free":3167.14},{"epoch":26138353,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":526.21,"free":3167.71},{"epoch":26138354,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":526.21,"free":3167.72},{"epoch":26138355,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":526.45,"free":3167.5},{"epoch":26138356,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":526.44,"free":3167.51},{"epoch":26138357,"idl":99.78,"recv":0,"send":0,"writ":0.64,"used":526.63,"free":3167.31},{"epoch":26138358,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":526.15,"free":3167.79},{"epoch":26138359,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":526.14,"free":3167.79},{"epoch":26138360,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":526.14,"free":3167.8},{"epoch":26138361,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":526.12,"free":3167.82},{"epoch":26138362,"idl":99.76,"recv":0,"send":0,"writ":0.43,"used":526.47,"free":3167.46},{"epoch":26138363,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":526.13,"free":3167.8},{"epoch":26138364,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":526.27,"free":3167.66},{"epoch":26138365,"idl":97.95,"recv":0,"send":0.04,"writ":0.29,"used":526.5,"free":3167.44},{"epoch":26138366,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":526.46,"free":3167.48},{"epoch":26138367,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":527.02,"free":3166.92},{"epoch":26138368,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":526.18,"free":3167.75},{"epoch":26138369,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":526.16,"free":3167.77},{"epoch":26138370,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":526.16,"free":3167.78},{"epoch":26138371,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":526.16,"free":3167.79},{"epoch":26138372,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":526.64,"free":3167.29},{"epoch":26138373,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":526.11,"free":3167.82},{"epoch":26138374,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":526.11,"free":3167.82},{"epoch":26138375,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":525.39,"free":3168.56},{"epoch":26138376,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":525.48,"free":3168.46},{"epoch":26138377,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":525.88,"free":3168.05},{"epoch":26138378,"idl":99.9,"recv":0,"send":0,"writ":0.39,"used":525.74,"free":3168.18},{"epoch":26138379,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":526.44,"free":3167.46},{"epoch":26138380,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":526.26,"free":3167.66},{"epoch":26138381,"idl":99.93,"recv":0,"send":0,"writ":0.12,"used":526.2,"free":3167.71},{"epoch":26138382,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":526.54,"free":3167.37},{"epoch":26138383,"idl":99.91,"recv":0,"send":0,"writ":0.41,"used":525.94,"free":3167.97},{"epoch":26138384,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":525.71,"free":3168.21},{"epoch":26138385,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":525.67,"free":3168.27},{"epoch":26138386,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":525.65,"free":3168.29},{"epoch":26138387,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":525.64,"free":3168.29},{"epoch":26138388,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":526.41,"free":3167.52},{"epoch":26138389,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":526.09,"free":3167.82},{"epoch":26138390,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":526.12,"free":3167.82},{"epoch":26138391,"idl":99.92,"recv":0.01,"send":0.94,"writ":0.2,"used":526.13,"free":3167.8},{"epoch":26138392,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":526.1,"free":3167.82},{"epoch":26138393,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":526.58,"free":3167.34},{"epoch":26138394,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":525.82,"free":3168.09},{"epoch":26138395,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":526.33,"free":3167.6},{"epoch":26138396,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":526.48,"free":3167.44},{"epoch":26138397,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":526.46,"free":3167.45},{"epoch":26138398,"idl":99.76,"recv":0.01,"send":0.93,"writ":0.55,"used":526.9,"free":3167.01},{"epoch":26138399,"idl":99.89,"recv":0,"send":0.01,"writ":0.21,"used":526.55,"free":3167.35},{"epoch":26138400,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":526.31,"free":3167.6},{"epoch":26138401,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":526.31,"free":3167.6},{"epoch":26138402,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":526.5,"free":3167.41},{"epoch":26138403,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":526.56,"free":3167.34},{"epoch":26138404,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":525.99,"free":3167.91},{"epoch":26138405,"idl":95.23,"recv":0.44,"send":0.08,"writ":65.07,"used":535.36,"free":3157.95},{"epoch":26138406,"idl":93.68,"recv":5.83,"send":0.25,"writ":223.83,"used":547.47,"free":3144.22},{"epoch":26138407,"idl":99.9,"recv":0,"send":0,"writ":0.84,"used":532.45,"free":3159.02},{"epoch":26138408,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":533.13,"free":3158.34},{"epoch":26138409,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":533.38,"free":3158.07},{"epoch":26138410,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":533.62,"free":3157.84},{"epoch":26138411,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":531.34,"free":3160.15},{"epoch":26138412,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":531.16,"free":3160.33},{"epoch":26138413,"idl":99.75,"recv":0,"send":0,"writ":0.49,"used":531.44,"free":3160.05},{"epoch":26138414,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":530.88,"free":3160.61},{"epoch":26138415,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":530.42,"free":3161.09},{"epoch":26138416,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":530.4,"free":3161.1},{"epoch":26138417,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":530.38,"free":3161.11},{"epoch":26138418,"idl":99.73,"recv":0,"send":0,"writ":0.35,"used":531.12,"free":3160.38},{"epoch":26138419,"idl":99.92,"recv":0,"send":0,"writ":0.37,"used":530.8,"free":3160.7},{"epoch":26138420,"idl":99.84,"recv":0,"send":0,"writ":0.35,"used":530.14,"free":3161.37},{"epoch":26138421,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":530.04,"free":3161.46},{"epoch":26138422,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":530.02,"free":3161.48},{"epoch":26138423,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":530,"free":3161.5},{"epoch":26138424,"idl":99.74,"recv":0,"send":0.01,"writ":0.58,"used":531.07,"free":3160.42},{"epoch":26138425,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":530.25,"free":3161.26},{"epoch":26138426,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":530.21,"free":3161.3},{"epoch":26138427,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":530.19,"free":3161.31},{"epoch":26138428,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":530.17,"free":3161.33},{"epoch":26138429,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":531.02,"free":3160.47},{"epoch":26138430,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":531.37,"free":3160.14},{"epoch":26138431,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.43,"free":3160.07},{"epoch":26138432,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.55,"free":3159.96},{"epoch":26138433,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":531.52,"free":3159.98},{"epoch":26138434,"idl":99.79,"recv":0,"send":0,"writ":0.48,"used":531.73,"free":3159.77},{"epoch":26138435,"idl":99.79,"recv":0.06,"send":2.26,"writ":0.43,"used":531.31,"free":3160.19},{"epoch":26138436,"idl":99.85,"recv":0,"send":0.21,"writ":0.3,"used":531.25,"free":3160.23},{"epoch":26138437,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.22,"free":3160.27},{"epoch":26138438,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":531.21,"free":3160.27},{"epoch":26138439,"idl":99.66,"recv":0,"send":0,"writ":0.73,"used":531.63,"free":3159.83},{"epoch":26138440,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":531.44,"free":3160.03},{"epoch":26138441,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":531.43,"free":3160.04},{"epoch":26138442,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":531.41,"free":3160.06},{"epoch":26138443,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":530.97,"free":3160.48},{"epoch":26138444,"idl":99.75,"recv":0,"send":0,"writ":0.4,"used":531.31,"free":3160.14},{"epoch":26138445,"idl":99.82,"recv":0,"send":0,"writ":0.43,"used":531.37,"free":3160.1},{"epoch":26138446,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":531.35,"free":3160.11},{"epoch":26138447,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":531.38,"free":3160.08},{"epoch":26138448,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.51,"free":3159.94},{"epoch":26138449,"idl":99.73,"recv":0.01,"send":0.01,"writ":0.58,"used":531.87,"free":3159.58},{"epoch":26138450,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":530.7,"free":3160.75},{"epoch":26138451,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":530.64,"free":3160.8},{"epoch":26138452,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":530.64,"free":3160.8},{"epoch":26138453,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":530.63,"free":3160.8},{"epoch":26138454,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":530.97,"free":3160.47},{"epoch":26138455,"idl":99.78,"recv":0,"send":0,"writ":0.6,"used":531.42,"free":3160.03},{"epoch":26138456,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":531.35,"free":3160.1},{"epoch":26138457,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.33,"free":3160.11},{"epoch":26138458,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":531.41,"free":3160.03},{"epoch":26138459,"idl":99.92,"recv":0.03,"send":1.2,"writ":0.22,"used":531.48,"free":3159.94},{"epoch":26138460,"idl":99.56,"recv":0,"send":0.03,"writ":0.73,"used":531.86,"free":3159.58},{"epoch":26138461,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":531.43,"free":3160},{"epoch":26138462,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":531.41,"free":3160.02},{"epoch":26138463,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":531.38,"free":3160.05},{"epoch":26138464,"idl":99.93,"recv":0.02,"send":0.52,"writ":0.16,"used":531.34,"free":3160.08},{"epoch":26138465,"idl":99.7,"recv":0.02,"send":0.52,"writ":0.78,"used":531.68,"free":3159.74},{"epoch":26138466,"idl":99.9,"recv":0,"send":0,"writ":0.23,"used":531.32,"free":3160.1},{"epoch":26138467,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":531.3,"free":3160.11},{"epoch":26138468,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":531.27,"free":3160.13},{"epoch":26138469,"idl":99.73,"recv":0.12,"send":4.33,"writ":0.44,"used":531.62,"free":3159.73},{"epoch":26138470,"idl":99.66,"recv":0.02,"send":0.86,"writ":0.59,"used":531.91,"free":3159.44},{"epoch":26138471,"idl":99.9,"recv":0.06,"send":2.36,"writ":0.36,"used":531.27,"free":3160.06},{"epoch":26138472,"idl":99.92,"recv":0,"send":0.01,"writ":0.18,"used":530.57,"free":3160.76},{"epoch":26138473,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":530.55,"free":3160.77},{"epoch":26138474,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":530.53,"free":3160.79},{"epoch":26138475,"idl":99.66,"recv":0,"send":0,"writ":0.65,"used":529.92,"free":3161.42},{"epoch":26138476,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":530.02,"free":3161.31},{"epoch":26138477,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":530,"free":3161.33},{"epoch":26138478,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":530.1,"free":3161.23},{"epoch":26138479,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":530.16,"free":3161.16},{"epoch":26138480,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":530.94,"free":3160.39},{"epoch":26138481,"idl":99.94,"recv":0,"send":0,"writ":0.28,"used":530.63,"free":3160.7},{"epoch":26138482,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":530.62,"free":3160.71},{"epoch":26138483,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":530.59,"free":3160.73},{"epoch":26138484,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":530.58,"free":3160.74},{"epoch":26138485,"idl":99.69,"recv":0.02,"send":0.06,"writ":0.33,"used":531.75,"free":3159.54},{"epoch":26138486,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":534.04,"free":3157.22},{"epoch":26138487,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":533.59,"free":3157.66},{"epoch":26138488,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":533.56,"free":3157.69},{"epoch":26138489,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":533.55,"free":3157.7},{"epoch":26138490,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":532.59,"free":3158.67},{"epoch":26138491,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":532.93,"free":3158.33},{"epoch":26138492,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":532.52,"free":3158.73},{"epoch":26138493,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":532.63,"free":3158.63},{"epoch":26138494,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":532.69,"free":3158.55},{"epoch":26138495,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":532.69,"free":3158.58},{"epoch":26138496,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":533.81,"free":3157.45},{"epoch":26138497,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":533.62,"free":3157.64},{"epoch":26138498,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":533.59,"free":3157.66},{"epoch":26138499,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":533.59,"free":3157.63},{"epoch":26138500,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":533.81,"free":3157.44},{"epoch":26138501,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":534.13,"free":3157.11},{"epoch":26138502,"idl":99.76,"recv":0.02,"send":0.1,"writ":0.18,"used":534.83,"free":3156.35},{"epoch":26138503,"idl":99.88,"recv":0.03,"send":0.03,"writ":0.24,"used":535.21,"free":3155.95},{"epoch":26138504,"idl":99.39,"recv":0.02,"send":0.07,"writ":0.32,"used":535.86,"free":3155.25},{"epoch":26138505,"idl":99.81,"recv":0,"send":0,"writ":0.72,"used":538.36,"free":3152.77},{"epoch":26138506,"idl":99.75,"recv":0,"send":0,"writ":0.63,"used":539.36,"free":3151.76},{"epoch":26138507,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":539.12,"free":3151.99},{"epoch":26138508,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":539.09,"free":3152.02},{"epoch":26138509,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":539.06,"free":3152.05},{"epoch":26138510,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":539.05,"free":3152.07},{"epoch":26138511,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":539.4,"free":3151.72},{"epoch":26138512,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":539.18,"free":3151.94},{"epoch":26138513,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":539.15,"free":3151.96},{"epoch":26138514,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":539.11,"free":3152},{"epoch":26138515,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":539.1,"free":3152.02},{"epoch":26138516,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":539.42,"free":3151.7},{"epoch":26138517,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":539.03,"free":3152.09},{"epoch":26138518,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":539.12,"free":3151.99},{"epoch":26138519,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":539.18,"free":3151.93},{"epoch":26138520,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":539.22,"free":3151.9},{"epoch":26138521,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":539.52,"free":3151.6},{"epoch":26138522,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":539.34,"free":3151.78},{"epoch":26138523,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":539.31,"free":3151.8},{"epoch":26138524,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":539.28,"free":3151.82},{"epoch":26138525,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":539.44,"free":3151.68},{"epoch":26138526,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":539.42,"free":3151.7},{"epoch":26138527,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":539.92,"free":3151.2},{"epoch":26138528,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":539.34,"free":3151.77},{"epoch":26138529,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":539.31,"free":3151.78},{"epoch":26138530,"idl":98.85,"recv":0.01,"send":0.04,"writ":10.62,"used":540.74,"free":3148.25},{"epoch":26138531,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":541.64,"free":3146.53},{"epoch":26138532,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":543.02,"free":3145.16},{"epoch":26138533,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":542.82,"free":3145.35},{"epoch":26138534,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":542.81,"free":3145.36},{"epoch":26138535,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":543.68,"free":3144.5},{"epoch":26138536,"idl":99.45,"recv":0.01,"send":0.03,"writ":0.92,"used":543.63,"free":3144.54},{"epoch":26138537,"idl":99.75,"recv":0,"send":0,"writ":0.62,"used":543.84,"free":3144.31},{"epoch":26138538,"idl":99.46,"recv":0,"send":0.03,"writ":0.39,"used":543.32,"free":3144.82},{"epoch":26138539,"idl":99.48,"recv":0,"send":0.03,"writ":0.41,"used":543.37,"free":3144.75},{"epoch":26138540,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":543.79,"free":3144.32},{"epoch":26138541,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":543.76,"free":3144.35},{"epoch":26138542,"idl":99.72,"recv":0.02,"send":0.02,"writ":0.59,"used":543.99,"free":3144.11},{"epoch":26138543,"idl":99.89,"recv":0.03,"send":0,"writ":0.21,"used":543.61,"free":3144.49},{"epoch":26138544,"idl":99.9,"recv":0.05,"send":0.06,"writ":0.31,"used":543.48,"free":3144.61},{"epoch":26138545,"idl":99.8,"recv":0.02,"send":0.03,"writ":0.42,"used":543.73,"free":3144.36},{"epoch":26138546,"idl":99.37,"recv":0,"send":0,"writ":0.18,"used":543.7,"free":3144.36},{"epoch":26138547,"idl":99.74,"recv":0.02,"send":0.05,"writ":0.6,"used":544.45,"free":3143.61},{"epoch":26138548,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":543.69,"free":3144.36},{"epoch":26138549,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":543.65,"free":3144.39},{"epoch":26138550,"idl":99.77,"recv":0.04,"send":0.01,"writ":0.43,"used":543.97,"free":3144.1},{"epoch":26138551,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":543.94,"free":3144.13},{"epoch":26138552,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":544.36,"free":3143.72},{"epoch":26138553,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.16,"used":543.74,"free":3144.34},{"epoch":26138554,"idl":99.86,"recv":0.03,"send":0.03,"writ":0.31,"used":543.77,"free":3144.29},{"epoch":26138555,"idl":99.82,"recv":0,"send":0,"writ":0.38,"used":542.74,"free":3145.31},{"epoch":26138556,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":542.81,"free":3145.23},{"epoch":26138557,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":543.25,"free":3144.79},{"epoch":26138558,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":543.97,"free":3144.07},{"epoch":26138559,"idl":99.72,"recv":0.01,"send":0.01,"writ":0.35,"used":543.94,"free":3144.07},{"epoch":26138560,"idl":95.42,"recv":0.01,"send":0.01,"writ":0.79,"used":558.02,"free":3129.95},{"epoch":26138561,"idl":81.21,"recv":0.02,"send":0.03,"writ":4.05,"used":696.65,"free":2991.24},{"epoch":26138562,"idl":99.7,"recv":0.07,"send":2.1,"writ":1.32,"used":1061.34,"free":2626.42},{"epoch":26138563,"idl":83.76,"recv":0.04,"send":0.03,"writ":1.41,"used":806.91,"free":2880.79},{"epoch":26138564,"idl":97.03,"recv":0.03,"send":0.67,"writ":3.77,"used":1073.64,"free":2614.09},{"epoch":26138565,"idl":99.59,"recv":0,"send":0.02,"writ":0.33,"used":666.7,"free":3021.05},{"epoch":26138566,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":594.94,"free":3092.81},{"epoch":26138567,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":594.91,"free":3092.84},{"epoch":26138568,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":595.68,"free":3092.06},{"epoch":26138569,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":595.32,"free":3092.42},{"epoch":26138570,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":594.36,"free":3093.4},{"epoch":26138571,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":594.3,"free":3093.46},{"epoch":26138572,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":594.39,"free":3093.37},{"epoch":26138573,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":595.43,"free":3092.31},{"epoch":26138574,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":594.91,"free":3092.83},{"epoch":26138575,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":595.88,"free":3091.88},{"epoch":26138576,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":595.84,"free":3091.92},{"epoch":26138577,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":595.81,"free":3091.95},{"epoch":26138578,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":596.58,"free":3091.17},{"epoch":26138579,"idl":99.85,"recv":1.05,"send":0.09,"writ":1.18,"used":596.57,"free":3091.01},{"epoch":26138580,"idl":99.75,"recv":0.01,"send":0.01,"writ":0.35,"used":597.12,"free":3089.65},{"epoch":26138581,"idl":99.91,"recv":0.02,"send":0.62,"writ":0.18,"used":596.9,"free":3089.87},{"epoch":26138582,"idl":79.34,"recv":0.08,"send":1.79,"writ":4.48,"used":913.47,"free":2773.22},{"epoch":26138583,"idl":99.52,"recv":0.06,"send":2.49,"writ":0.85,"used":1026.28,"free":2660.42},{"epoch":26138584,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":597.23,"free":3089.46},{"epoch":26138585,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":597.46,"free":3089.25},{"epoch":26138586,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":597.62,"free":3089.08},{"epoch":26138587,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":597.66,"free":3089.04},{"epoch":26138588,"idl":99.72,"recv":0,"send":0,"writ":0.5,"used":598.19,"free":3088.5},{"epoch":26138589,"idl":99.73,"recv":0,"send":0,"writ":0.37,"used":598.48,"free":3088.19},{"epoch":26138590,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":597.01,"free":3089.68},{"epoch":26138591,"idl":99.87,"recv":0,"send":0.01,"writ":0.17,"used":596.97,"free":3089.71},{"epoch":26138592,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":597.08,"free":3089.6},{"epoch":26138593,"idl":99.71,"recv":0.02,"send":0.52,"writ":0.67,"used":597.83,"free":3088.84},{"epoch":26138594,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":597.91,"free":3088.76},{"epoch":26138595,"idl":99.68,"recv":0,"send":0,"writ":0.33,"used":597.7,"free":3088.99},{"epoch":26138596,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":597.81,"free":3088.88},{"epoch":26138597,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":597.78,"free":3088.91},{"epoch":26138598,"idl":99.73,"recv":0,"send":0,"writ":0.44,"used":598.18,"free":3088.5},{"epoch":26138599,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":598.94,"free":3087.73},{"epoch":26138600,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":598.64,"free":3088.05},{"epoch":26138601,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":598.16,"free":3088.53},{"epoch":26138602,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":598.22,"free":3088.47},{"epoch":26138603,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":598.27,"free":3088.41},{"epoch":26138604,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":598.16,"free":3088.52},{"epoch":26138605,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":599.2,"free":3087.5},{"epoch":26138606,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":599.18,"free":3087.51},{"epoch":26138607,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":599.15,"free":3087.54},{"epoch":26138608,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":599.18,"free":3087.5},{"epoch":26138609,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":599.61,"free":3087.07},{"epoch":26138610,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":599.27,"free":3087.43},{"epoch":26138611,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":599.22,"free":3087.47},{"epoch":26138612,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":599.19,"free":3087.5},{"epoch":26138613,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":599.15,"free":3087.53},{"epoch":26138614,"idl":99.68,"recv":0,"send":0,"writ":0.53,"used":599.66,"free":3087.02},{"epoch":26138615,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":598.01,"free":3088.68},{"epoch":26138616,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":598.14,"free":3088.55},{"epoch":26138617,"idl":99.88,"recv":0.05,"send":1.96,"writ":0.2,"used":597.98,"free":3088.71},{"epoch":26138618,"idl":99.85,"recv":0.01,"send":0.35,"writ":0.24,"used":597.26,"free":3089.41},{"epoch":26138619,"idl":99.47,"recv":0,"send":0,"writ":0.74,"used":599.08,"free":3087.57},{"epoch":26138620,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":598.74,"free":3087.92},{"epoch":26138621,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":598.46,"free":3088.19},{"epoch":26138622,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":597.69,"free":3088.96},{"epoch":26138623,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":597.49,"free":3089.16},{"epoch":26138624,"idl":99.71,"recv":0,"send":0,"writ":0.4,"used":598.15,"free":3088.5},{"epoch":26138625,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":598.3,"free":3088.36},{"epoch":26138626,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":598.26,"free":3088.39},{"epoch":26138627,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":598.22,"free":3088.43},{"epoch":26138628,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":598.19,"free":3088.47},{"epoch":26138629,"idl":99.65,"recv":0,"send":0,"writ":0.41,"used":598.57,"free":3088.09},{"epoch":26138630,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":597.77,"free":3088.91},{"epoch":26138631,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":597.81,"free":3088.86},{"epoch":26138632,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":597.78,"free":3088.89},{"epoch":26138633,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":597.74,"free":3088.93},{"epoch":26138634,"idl":99.67,"recv":0,"send":0,"writ":0.4,"used":598.32,"free":3088.34},{"epoch":26138635,"idl":99.52,"recv":0.07,"send":0.27,"writ":0.52,"used":570.78,"free":3115.89},{"epoch":26138636,"idl":99.51,"recv":0.35,"send":4.17,"writ":0.88,"used":551.72,"free":3134.92},{"epoch":26138637,"idl":99.3,"recv":2.16,"send":71.55,"writ":0.36,"used":552.03,"free":3134.61},{"epoch":26138638,"idl":99.43,"recv":1.02,"send":28.65,"writ":0.38,"used":551.96,"free":3134.67},{"epoch":26138639,"idl":99.08,"recv":1.95,"send":63.24,"writ":0.5,"used":552.74,"free":3133.88},{"epoch":26138640,"idl":99.63,"recv":0.14,"send":2.74,"writ":0.63,"used":552.91,"free":3133.73},{"epoch":26138641,"idl":99.79,"recv":0.06,"send":0.1,"writ":0.28,"used":553.13,"free":3133.52},{"epoch":26138642,"idl":99.8,"recv":0.05,"send":0.1,"writ":0.33,"used":553.15,"free":3133.5},{"epoch":26138643,"idl":99.85,"recv":0.02,"send":0.05,"writ":0.23,"used":553.15,"free":3133.49},{"epoch":26138644,"idl":99.77,"recv":0.87,"send":6.43,"writ":0.88,"used":553.13,"free":3134.11},{"epoch":26138645,"idl":80.4,"recv":1.84,"send":2.83,"writ":8.04,"used":709.45,"free":2981},{"epoch":26138646,"idl":99.78,"recv":0.07,"send":2.38,"writ":1.82,"used":1067.16,"free":2623.02},{"epoch":26138647,"idl":99.44,"recv":0.03,"send":0.06,"writ":0.14,"used":632.88,"free":3057.28},{"epoch":26138648,"idl":99.81,"recv":0.05,"send":2.09,"writ":0.29,"used":593.14,"free":3097.01},{"epoch":26138649,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":594.26,"free":3095.85},{"epoch":26138650,"idl":99.49,"recv":0,"send":0,"writ":0.71,"used":594.86,"free":3095.27},{"epoch":26138651,"idl":99.83,"recv":0.01,"send":0.11,"writ":0.19,"used":594.62,"free":3095.51},{"epoch":26138652,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":594.56,"free":3095.56},{"epoch":26138653,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":594.52,"free":3095.6},{"epoch":26138654,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":594.53,"free":3095.58},{"epoch":26138655,"idl":95.77,"recv":0.04,"send":0.01,"writ":142.23,"used":607.64,"free":3083.87},{"epoch":26138656,"idl":99.78,"recv":0.03,"send":1.03,"writ":0.27,"used":597.32,"free":3092.82},{"epoch":26138657,"idl":99.79,"recv":0,"send":0,"writ":0.2,"used":597.62,"free":3092.52},{"epoch":26138658,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":597.59,"free":3092.55},{"epoch":26138659,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":597.56,"free":3092.57},{"epoch":26138660,"idl":99.58,"recv":0,"send":0,"writ":0.74,"used":596.72,"free":3093.45},{"epoch":26138661,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":595.36,"free":3094.83},{"epoch":26138662,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":595.32,"free":3094.86},{"epoch":26138663,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":595.08,"free":3095.09},{"epoch":26138664,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":594.46,"free":3095.72},{"epoch":26138665,"idl":99.61,"recv":0,"send":0,"writ":0.68,"used":595.45,"free":3094.75},{"epoch":26138666,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":595.4,"free":3094.8},{"epoch":26138667,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":595.36,"free":3094.83},{"epoch":26138668,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":595.33,"free":3094.86},{"epoch":26138669,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":595.3,"free":3094.88},{"epoch":26138670,"idl":99.55,"recv":0,"send":0,"writ":0.61,"used":595.65,"free":3094.56},{"epoch":26138671,"idl":99.83,"recv":0,"send":0,"writ":0.25,"used":595.97,"free":3094.23},{"epoch":26138672,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":595.93,"free":3094.26},{"epoch":26138673,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":595.9,"free":3094.29},{"epoch":26138674,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":595.86,"free":3094.32},{"epoch":26138675,"idl":99.6,"recv":0,"send":0,"writ":0.58,"used":596.74,"free":3093.46},{"epoch":26138676,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":596.1,"free":3094.09},{"epoch":26138677,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":596.22,"free":3093.97},{"epoch":26138678,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":596.19,"free":3094},{"epoch":26138679,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":596.39,"free":3093.77},{"epoch":26138680,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":595.42,"free":3094.75},{"epoch":26138681,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":595.78,"free":3094.39},{"epoch":26138682,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":595.33,"free":3094.84},{"epoch":26138683,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":595.21,"free":3094.95},{"epoch":26138684,"idl":99.8,"recv":0,"send":0.03,"writ":0.21,"used":595.18,"free":3094.98},{"epoch":26138685,"idl":99.7,"recv":0,"send":0,"writ":0.33,"used":594.67,"free":3095.5},{"epoch":26138686,"idl":99.7,"recv":0.05,"send":1.97,"writ":0.79,"used":595.48,"free":3094.69},{"epoch":26138687,"idl":99.81,"recv":0,"send":0.04,"writ":0.25,"used":595.12,"free":3095.04},{"epoch":26138688,"idl":99.79,"recv":0,"send":0.01,"writ":0.14,"used":595.08,"free":3095.08},{"epoch":26138689,"idl":99.8,"recv":0,"send":0.01,"writ":0.18,"used":595.03,"free":3095.12},{"epoch":26138690,"idl":99.74,"recv":0.01,"send":0.47,"writ":0.34,"used":595.68,"free":3094.49},{"epoch":26138691,"idl":99.68,"recv":0,"send":0,"writ":0.7,"used":596.39,"free":3093.77},{"epoch":26138692,"idl":99.83,"recv":0.03,"send":0.86,"writ":0.25,"used":596.14,"free":3094},{"epoch":26138693,"idl":99.82,"recv":0.01,"send":0.08,"writ":0.23,"used":596.12,"free":3094.02},{"epoch":26138694,"idl":99.8,"recv":0,"send":0.01,"writ":0.21,"used":596.03,"free":3094.1},{"epoch":26138695,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":595.07,"free":3095.08},{"epoch":26138696,"idl":99.7,"recv":0,"send":0.02,"writ":0.61,"used":596.29,"free":3093.85},{"epoch":26138697,"idl":99.86,"recv":0,"send":0.01,"writ":0.19,"used":596.13,"free":3094.01},{"epoch":26138698,"idl":99.83,"recv":0,"send":0.01,"writ":0.16,"used":596.08,"free":3094.05},{"epoch":26138699,"idl":99.83,"recv":0,"send":0.04,"writ":0.16,"used":595.72,"free":3094.41},{"epoch":26138700,"idl":99.65,"recv":0,"send":0,"writ":0.33,"used":594.73,"free":3095.41},{"epoch":26138701,"idl":99.7,"recv":0,"send":0.01,"writ":0.63,"used":595.6,"free":3094.54},{"epoch":26138702,"idl":99.85,"recv":0,"send":0.04,"writ":0.25,"used":595.82,"free":3094.31},{"epoch":26138703,"idl":99.85,"recv":0,"send":0.02,"writ":0.2,"used":595.78,"free":3094.34},{"epoch":26138704,"idl":99.76,"recv":0,"send":0.03,"writ":0.22,"used":595.84,"free":3094.28},{"epoch":26138705,"idl":99.77,"recv":0.01,"send":0.13,"writ":0.37,"used":595.89,"free":3094.24},{"epoch":26138706,"idl":99.65,"recv":0.02,"send":0.68,"writ":0.62,"used":595.64,"free":3094.49},{"epoch":26138707,"idl":99.82,"recv":0,"send":0.01,"writ":0.23,"used":594.91,"free":3095.21},{"epoch":26138708,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":594.88,"free":3095.24},{"epoch":26138709,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":596.04,"free":3094.05},{"epoch":26138710,"idl":99.74,"recv":0,"send":0.01,"writ":0.33,"used":596.05,"free":3094.06},{"epoch":26138711,"idl":99.68,"recv":0,"send":0.07,"writ":0.55,"used":596.85,"free":3093.26},{"epoch":26138712,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":596.12,"free":3093.98},{"epoch":26138713,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":596.09,"free":3094.01},{"epoch":26138714,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":596.06,"free":3094.03},{"epoch":26138715,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":596.77,"free":3093.34},{"epoch":26138716,"idl":99.69,"recv":0,"send":0,"writ":0.4,"used":597.08,"free":3093.02},{"epoch":26138717,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":596.47,"free":3093.63},{"epoch":26138718,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":596.18,"free":3093.91},{"epoch":26138719,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":595.6,"free":3094.49},{"epoch":26138720,"idl":99.73,"recv":0,"send":0,"writ":0.36,"used":594.37,"free":3095.73},{"epoch":26138721,"idl":99.7,"recv":0,"send":0,"writ":0.49,"used":594.79,"free":3095.31},{"epoch":26138722,"idl":99.84,"recv":0,"send":0,"writ":0.22,"used":595.27,"free":3094.83},{"epoch":26138723,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":595.23,"free":3094.86},{"epoch":26138724,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":595.31,"free":3094.78},{"epoch":26138725,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":595.13,"free":3094.97},{"epoch":26138726,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":595.09,"free":3095.01},{"epoch":26138727,"idl":99.69,"recv":0.06,"send":2.11,"writ":0.67,"used":596.64,"free":3093.45},{"epoch":26138728,"idl":99.8,"recv":0.03,"send":1.26,"writ":0.22,"used":596.33,"free":3093.74},{"epoch":26138729,"idl":80.85,"recv":0.01,"send":0.03,"writ":4.68,"used":1010.47,"free":2679.57},{"epoch":26138730,"idl":80.52,"recv":0.01,"send":0.03,"writ":4.48,"used":1052.33,"free":2637.73},{"epoch":26138731,"idl":99.64,"recv":0,"send":0.01,"writ":0.37,"used":867.95,"free":2822.15},{"epoch":26138732,"idl":99.62,"recv":0,"send":0,"writ":0.56,"used":596.63,"free":3093.46},{"epoch":26138733,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":596.34,"free":3093.74},{"epoch":26138734,"idl":96.55,"recv":0.04,"send":0.01,"writ":64.2,"used":601.44,"free":3089.84},{"epoch":26138735,"idl":99.64,"recv":0,"send":0.01,"writ":77.62,"used":599.36,"free":3090.45},{"epoch":26138736,"idl":99.78,"recv":0,"send":0.01,"writ":0.19,"used":599.47,"free":3090.33},{"epoch":26138737,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":599.95,"free":3089.85},{"epoch":26138738,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":599.65,"free":3090.14},{"epoch":26138739,"idl":99.67,"recv":0,"send":0,"writ":0.34,"used":599.33,"free":3090.45},{"epoch":26138740,"idl":99.69,"recv":0,"send":0,"writ":0.33,"used":596.76,"free":3093.09},{"epoch":26138741,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":596.71,"free":3093.13},{"epoch":26138742,"idl":99.7,"recv":0,"send":0,"writ":0.49,"used":597.61,"free":3092.23},{"epoch":26138743,"idl":99.82,"recv":0,"send":0,"writ":0.24,"used":597.66,"free":3092.17},{"epoch":26138744,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":597.58,"free":3092.26},{"epoch":26138745,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":597.78,"free":3092.09},{"epoch":26138746,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":597.74,"free":3092.12},{"epoch":26138747,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":598.17,"free":3091.69},{"epoch":26138748,"idl":99.81,"recv":0,"send":0.02,"writ":0.31,"used":597.3,"free":3092.56},{"epoch":26138749,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":597.07,"free":3092.77},{"epoch":26138750,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":597.07,"free":3092.79},{"epoch":26138751,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":597.02,"free":3092.85},{"epoch":26138752,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":597.59,"free":3092.27},{"epoch":26138753,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":596.7,"free":3093.15},{"epoch":26138754,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":596.77,"free":3093.08},{"epoch":26138755,"idl":99.73,"recv":0,"send":0,"writ":0.36,"used":598.29,"free":3091.57},{"epoch":26138756,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.15,"used":598.28,"free":3091.58},{"epoch":26138757,"idl":99.65,"recv":0.03,"send":0.76,"writ":0.36,"used":598.45,"free":3091.4},{"epoch":26138758,"idl":99.8,"recv":0.02,"send":0.82,"writ":0.47,"used":597.25,"free":3092.58},{"epoch":26138759,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":597.28,"free":3092.55},{"epoch":26138760,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":597.03,"free":3092.81},{"epoch":26138761,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":596.98,"free":3092.86},{"epoch":26138762,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":596.95,"free":3092.88},{"epoch":26138763,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":598.67,"free":3091.16},{"epoch":26138764,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":598.55,"free":3091.28},{"epoch":26138765,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":596.69,"free":3093.16},{"epoch":26138766,"idl":99.79,"recv":0.03,"send":0.06,"writ":0.29,"used":596.06,"free":3093.77},{"epoch":26138767,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.17,"used":595.95,"free":3093.88},{"epoch":26138768,"idl":99.65,"recv":0.01,"send":0.01,"writ":0.55,"used":597.57,"free":3092.25},{"epoch":26138769,"idl":99.62,"recv":0,"send":0,"writ":0.37,"used":597.24,"free":3092.55},{"epoch":26138770,"idl":99.66,"recv":0,"send":0,"writ":0.35,"used":596.05,"free":3093.76},{"epoch":26138771,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":595.98,"free":3093.83},{"epoch":26138772,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.22,"used":595.97,"free":3093.84},{"epoch":26138773,"idl":99.67,"recv":0,"send":0,"writ":0.61,"used":597.2,"free":3092.6},{"epoch":26138774,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":597,"free":3092.81},{"epoch":26138775,"idl":99.8,"recv":0.01,"send":0,"writ":0.45,"used":596.98,"free":3092.85},{"epoch":26138776,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":596.94,"free":3092.89},{"epoch":26138777,"idl":80.72,"recv":0.04,"send":0.86,"writ":4.49,"used":845.72,"free":2844.06},{"epoch":26138778,"idl":99.45,"recv":0,"send":0,"writ":0.93,"used":945.85,"free":2743.96},{"epoch":26138779,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":594.47,"free":3095.35},{"epoch":26138780,"idl":99.7,"recv":0.01,"send":0,"writ":0.41,"used":594.98,"free":3094.87},{"epoch":26138781,"idl":80.44,"recv":0.04,"send":0.86,"writ":4.6,"used":976.39,"free":2713.41},{"epoch":26138782,"idl":99.68,"recv":0,"send":0,"writ":0.16,"used":874.28,"free":2815.56},{"epoch":26138783,"idl":99.61,"recv":0.01,"send":0,"writ":0.59,"used":594.78,"free":3095.06},{"epoch":26138784,"idl":99.8,"recv":0.01,"send":0,"writ":0.28,"used":595.05,"free":3094.78},{"epoch":26138785,"idl":85.52,"recv":0.02,"send":0.01,"writ":1.31,"used":688.68,"free":3001.13},{"epoch":26138786,"idl":94.53,"recv":0.04,"send":0.85,"writ":3.89,"used":1104.26,"free":2585.57},{"epoch":26138787,"idl":80.88,"recv":0.03,"send":0.85,"writ":4.36,"used":1081.22,"free":2608.58},{"epoch":26138788,"idl":99.47,"recv":0.01,"send":0,"writ":0.95,"used":941.47,"free":2748.35},{"epoch":26138789,"idl":96.09,"recv":0,"send":0,"writ":0.43,"used":604.58,"free":3085.23},{"epoch":26138790,"idl":81.83,"recv":0.09,"send":3.31,"writ":4.6,"used":1106.58,"free":2583.2},{"epoch":26138791,"idl":91.65,"recv":0,"send":0,"writ":0.5,"used":914.84,"free":2774.97},{"epoch":26138792,"idl":87.76,"recv":0.03,"send":0.86,"writ":4.25,"used":1100.67,"free":2589.11},{"epoch":26138793,"idl":99.41,"recv":0.01,"send":0,"writ":0.43,"used":832.32,"free":2857.48},{"epoch":26138794,"idl":81.17,"recv":0.03,"send":0.85,"writ":4.79,"used":961.02,"free":2728.73},{"epoch":26138795,"idl":99.49,"recv":0.02,"send":0.82,"writ":0.46,"used":886.35,"free":2803.45},{"epoch":26138796,"idl":81.05,"recv":0.04,"send":0.86,"writ":4.34,"used":829.69,"free":2860.07},{"epoch":26138797,"idl":99.65,"recv":0,"send":0.01,"writ":0.47,"used":1020.77,"free":2669.02},{"epoch":26138798,"idl":67.97,"recv":0.03,"send":0.86,"writ":5.52,"used":1054.01,"free":2635.71},{"epoch":26138799,"idl":91.65,"recv":0.03,"send":0.85,"writ":4.35,"used":1113.25,"free":2576.46},{"epoch":26138800,"idl":80.94,"recv":0.03,"send":0.85,"writ":4.76,"used":1078.01,"free":2611.7},{"epoch":26138801,"idl":80.26,"recv":0.03,"send":0.85,"writ":4.64,"used":1077.69,"free":2612.01},{"epoch":26138802,"idl":80.39,"recv":0.03,"send":0.85,"writ":4.24,"used":1069.24,"free":2620.45},{"epoch":26138803,"idl":99.77,"recv":0,"send":0.01,"writ":0.55,"used":1091.85,"free":2597.87},{"epoch":26138804,"idl":99.48,"recv":0,"send":0,"writ":0.54,"used":608.46,"free":3081.25},{"epoch":26138805,"idl":80.17,"recv":0.02,"send":0.05,"writ":4.73,"used":1047.62,"free":2642.07},{"epoch":26138806,"idl":80.82,"recv":0.03,"send":0.84,"writ":4.59,"used":1074.18,"free":2615.51},{"epoch":26138807,"idl":90.03,"recv":0.04,"send":1.69,"writ":0.69,"used":1042.59,"free":2647.12},{"epoch":26138808,"idl":70.71,"recv":0.02,"send":0.1,"writ":8.34,"used":1094.37,"free":2595.26},{"epoch":26138809,"idl":99.68,"recv":0,"send":0.01,"writ":0.91,"used":1072.07,"free":2617.62},{"epoch":26138810,"idl":80.53,"recv":0.02,"send":0.07,"writ":4.51,"used":827.87,"free":2861.81},{"epoch":26138811,"idl":99.82,"recv":0.03,"send":0.82,"writ":0.48,"used":1104.86,"free":2584.84},{"epoch":26138812,"idl":97.59,"recv":0.01,"send":0,"writ":0.3,"used":601.38,"free":3088.31},{"epoch":26138813,"idl":75.24,"recv":0.01,"send":0.04,"writ":4.88,"used":1058.23,"free":2631.42},{"epoch":26138814,"idl":87.28,"recv":0.01,"send":0.05,"writ":4.61,"used":1122.85,"free":2566.79},{"epoch":26138815,"idl":80.68,"recv":0.02,"send":0.04,"writ":4.39,"used":999.05,"free":2690.61},{"epoch":26138816,"idl":99.58,"recv":0.05,"send":2.45,"writ":0.75,"used":1000.79,"free":2688.89},{"epoch":26138817,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":597.19,"free":3092.49},{"epoch":26138818,"idl":97.52,"recv":0,"send":0,"writ":0.41,"used":601.21,"free":3088.46},{"epoch":26138819,"idl":82.48,"recv":0.03,"send":0.85,"writ":4.66,"used":1097.91,"free":2591.71},{"epoch":26138820,"idl":79.87,"recv":0.03,"send":0.85,"writ":4.85,"used":952.06,"free":2737.58},{"epoch":26138821,"idl":99.74,"recv":0.02,"send":0.82,"writ":0.29,"used":948.73,"free":2740.94},{"epoch":26138822,"idl":99.85,"recv":0.06,"send":2.02,"writ":0.31,"used":597.36,"free":3092.29},{"epoch":26138823,"idl":99.83,"recv":0.02,"send":0.08,"writ":0.21,"used":597.31,"free":3092.31},{"epoch":26138824,"idl":99.77,"recv":0,"send":0.01,"writ":0.5,"used":598.01,"free":3091.61},{"epoch":26138825,"idl":99.81,"recv":0,"send":0.01,"writ":0.48,"used":598.3,"free":3091.33},{"epoch":26138826,"idl":99.89,"recv":0.05,"send":0,"writ":0.25,"used":598.39,"free":3091.24},{"epoch":26138827,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":598.32,"free":3091.31},{"epoch":26138828,"idl":99.57,"recv":0.05,"send":0,"writ":0.2,"used":598.28,"free":3091.34},{"epoch":26138829,"idl":97.64,"recv":0,"send":0.01,"writ":0.81,"used":596.78,"free":3092.81},{"epoch":26138830,"idl":99.82,"recv":0,"send":0.02,"writ":0.39,"used":549.01,"free":3140.6},{"epoch":26138831,"idl":88.97,"recv":0.02,"send":0.01,"writ":0.71,"used":621.37,"free":3068.21},{"epoch":26138832,"idl":91.96,"recv":0.04,"send":0.86,"writ":4.01,"used":1082.53,"free":2607.06},{"epoch":26138833,"idl":99.7,"recv":0.04,"send":1.74,"writ":0.43,"used":627.97,"free":3061.62},{"epoch":26138834,"idl":99.71,"recv":0.01,"send":0.43,"writ":0.46,"used":596.89,"free":3092.68},{"epoch":26138835,"idl":99.81,"recv":0.01,"send":0.39,"writ":0.62,"used":597.39,"free":3092.18},{"epoch":26138836,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":597.38,"free":3092.19},{"epoch":26138837,"idl":99.89,"recv":0,"send":0.01,"writ":0.22,"used":597.1,"free":3092.47},{"epoch":26138838,"idl":99.91,"recv":0,"send":0.01,"writ":0.16,"used":597.04,"free":3092.52},{"epoch":26138839,"idl":99.62,"recv":0.14,"send":0.88,"writ":0.91,"used":598.12,"free":3091.4},{"epoch":26138840,"idl":99.67,"recv":0,"send":0,"writ":0.8,"used":600.04,"free":3089.46},{"epoch":26138841,"idl":99.89,"recv":0.05,"send":0.05,"writ":0.22,"used":599.78,"free":3089.73},{"epoch":26138842,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.21,"used":600.01,"free":3089.48},{"epoch":26138843,"idl":99.9,"recv":0.02,"send":0.17,"writ":0.29,"used":599.91,"free":3089.58},{"epoch":26138844,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.2,"used":599.81,"free":3089.67},{"epoch":26138845,"idl":80.99,"recv":0.03,"send":0.38,"writ":5.2,"used":896.68,"free":2792.83},{"epoch":26138846,"idl":99.7,"recv":0,"send":0.01,"writ":0.19,"used":838.81,"free":2850.73},{"epoch":26138847,"idl":99.89,"recv":0.03,"send":0.87,"writ":0.22,"used":595.56,"free":3093.97},{"epoch":26138848,"idl":98.63,"recv":0.02,"send":0.39,"writ":0.32,"used":595.68,"free":3093.83},{"epoch":26138849,"idl":99.84,"recv":0.06,"send":0.04,"writ":0.31,"used":598.38,"free":3091.08},{"epoch":26138850,"idl":99.64,"recv":0.05,"send":0,"writ":0.81,"used":601.39,"free":3088.08},{"epoch":26138851,"idl":99.83,"recv":0.17,"send":0.41,"writ":0.21,"used":600.89,"free":3088.59},{"epoch":26138852,"idl":81.96,"recv":0.15,"send":2.08,"writ":1.98,"used":722.09,"free":2967.35},{"epoch":26138853,"idl":99.03,"recv":0.08,"send":1.18,"writ":3.14,"used":1083.37,"free":2606.09},{"epoch":26138854,"idl":86.52,"recv":0.05,"send":0.01,"writ":1.05,"used":873.38,"free":2816.04},{"epoch":26138855,"idl":92.85,"recv":0.01,"send":0.04,"writ":4.29,"used":1052.87,"free":2636.58},{"epoch":26138856,"idl":99.88,"recv":0,"send":0.01,"writ":0.21,"used":597.21,"free":3092.25},{"epoch":26138857,"idl":99.89,"recv":0.09,"send":0,"writ":0.27,"used":597.2,"free":3092.25},{"epoch":26138858,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":597.18,"free":3092.27},{"epoch":26138859,"idl":99.73,"recv":0.14,"send":0.01,"writ":0.48,"used":599.13,"free":3090.3},{"epoch":26138860,"idl":99.68,"recv":0.06,"send":0.13,"writ":1.02,"used":599.53,"free":3089.92},{"epoch":26138861,"idl":80.89,"recv":0.11,"send":1.76,"writ":4.44,"used":782.81,"free":2906.58},{"epoch":26138862,"idl":99.6,"recv":0.01,"send":0.12,"writ":0.55,"used":996.03,"free":2693.38},{"epoch":26138863,"idl":99.83,"recv":0,"send":0.01,"writ":0.23,"used":600.29,"free":3089.12},{"epoch":26138864,"idl":80.71,"recv":0.08,"send":1.05,"writ":4.52,"used":831,"free":2858.36},{"epoch":26138865,"idl":99.54,"recv":0,"send":0.01,"writ":0.83,"used":864.2,"free":2825.2},{"epoch":26138866,"idl":99.87,"recv":0.01,"send":0.17,"writ":0.41,"used":603.05,"free":3086.34},{"epoch":26138867,"idl":99.86,"recv":0.04,"send":1.6,"writ":0.29,"used":603.06,"free":3086.32},{"epoch":26138868,"idl":99.8,"recv":0.21,"send":9.16,"writ":0.34,"used":603.11,"free":3086.22},{"epoch":26138869,"idl":99.87,"recv":0,"send":0.01,"writ":0.27,"used":603.19,"free":3086.12},{"epoch":26138870,"idl":99.63,"recv":0.05,"send":1.71,"writ":0.7,"used":604.2,"free":3085.12},{"epoch":26138871,"idl":99.9,"recv":0.02,"send":0.77,"writ":0.46,"used":603.49,"free":3085.8},{"epoch":26138872,"idl":99.87,"recv":0.03,"send":0.08,"writ":0.18,"used":603.44,"free":3085.84},{"epoch":26138873,"idl":99.9,"recv":0.01,"send":0.02,"writ":0.15,"used":603.45,"free":3085.82},{"epoch":26138874,"idl":99.89,"recv":0.02,"send":0.59,"writ":0.19,"used":603.48,"free":3085.78},{"epoch":26138875,"idl":99.81,"recv":0.01,"send":0.01,"writ":0.33,"used":604.15,"free":3085.13},{"epoch":26138876,"idl":99.67,"recv":0.01,"send":0.02,"writ":0.58,"used":603.73,"free":3085.54},{"epoch":26138877,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.14,"used":603.43,"free":3085.84},{"epoch":26138878,"idl":99.75,"recv":0.16,"send":0.68,"writ":0.24,"used":603.29,"free":3085.83},{"epoch":26138879,"idl":88.74,"recv":0.01,"send":0.01,"writ":0.69,"used":669.9,"free":3019.13},{"epoch":26138880,"idl":89.12,"recv":0.04,"send":1.22,"writ":4.35,"used":1100.16,"free":2588.88},{"epoch":26138881,"idl":99.58,"recv":0,"send":0,"writ":0.6,"used":893.77,"free":2795.29},{"epoch":26138882,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":598.82,"free":3090.23},{"epoch":26138883,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":598.79,"free":3090.26},{"epoch":26138884,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":598.75,"free":3090.3},{"epoch":26138885,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":599.44,"free":3089.62},{"epoch":26138886,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":600.4,"free":3088.65},{"epoch":26138887,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":600.29,"free":3088.76},{"epoch":26138888,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":600.27,"free":3088.78},{"epoch":26138889,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":600.47,"free":3088.55},{"epoch":26138890,"idl":99.79,"recv":0.04,"send":1.36,"writ":0.44,"used":599.06,"free":3089.98},{"epoch":26138891,"idl":99.79,"recv":0.05,"send":2.06,"writ":0.84,"used":600.42,"free":3088.6},{"epoch":26138892,"idl":99.9,"recv":0,"send":0,"writ":0.23,"used":600.55,"free":3088.46},{"epoch":26138893,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":600.52,"free":3088.49},{"epoch":26138894,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.22,"used":600.48,"free":3088.52},{"epoch":26138895,"idl":99.84,"recv":0,"send":0,"writ":0.41,"used":600.92,"free":3088.12},{"epoch":26138896,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":601.3,"free":3087.74},{"epoch":26138897,"idl":99.86,"recv":0,"send":0,"writ":0.24,"used":601.05,"free":3087.98},{"epoch":26138898,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":600.72,"free":3088.3},{"epoch":26138899,"idl":99.86,"recv":0.1,"send":2.06,"writ":0.33,"used":600.85,"free":3088.17},{"epoch":26138900,"idl":99.77,"recv":0,"send":0.02,"writ":0.46,"used":563.41,"free":3125.61},{"epoch":26138901,"idl":99.71,"recv":0.02,"send":0.08,"writ":0.46,"used":553.97,"free":3135.05},{"epoch":26138902,"idl":99.9,"recv":0.09,"send":1.65,"writ":0.48,"used":554.37,"free":3134.63},{"epoch":26138903,"idl":98.47,"recv":0.07,"send":0.56,"writ":0.39,"used":559.02,"free":3129.95},{"epoch":26138904,"idl":80.07,"recv":0.07,"send":0.28,"writ":4.63,"used":1084.59,"free":2604.33},{"epoch":26138905,"idl":81.3,"recv":0.04,"send":0.83,"writ":4.87,"used":1084.89,"free":2604.03},{"epoch":26138906,"idl":99.6,"recv":0,"send":0,"writ":0.58,"used":835.67,"free":2853.28},{"epoch":26138907,"idl":99.87,"recv":0,"send":0.02,"writ":0.23,"used":600.19,"free":3088.75},{"epoch":26138908,"idl":99.88,"recv":0.01,"send":0.17,"writ":0.27,"used":600.22,"free":3088.73},{"epoch":26138909,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":589.24,"free":3099.76},{"epoch":26138910,"idl":99.82,"recv":0,"send":0,"writ":0.41,"used":545.19,"free":3144.26},{"epoch":26138911,"idl":99.75,"recv":0,"send":0,"writ":0.6,"used":545.62,"free":3143.83},{"epoch":26138912,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":545.86,"free":3143.58},{"epoch":26138913,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":545.85,"free":3143.6},{"epoch":26138914,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":545.94,"free":3143.5},{"epoch":26138915,"idl":99.78,"recv":0,"send":0,"writ":0.37,"used":545.3,"free":3144.18},{"epoch":26138916,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":545.25,"free":3144.23},{"epoch":26138917,"idl":99.76,"recv":0,"send":0,"writ":0.63,"used":546.54,"free":3142.93},{"epoch":26138918,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":546.19,"free":3143.27},{"epoch":26138919,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":545.73,"free":3143.72},{"epoch":26138920,"idl":99.84,"recv":0,"send":0,"writ":0.35,"used":544.01,"free":3145.45},{"epoch":26138921,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":543.92,"free":3145.53},{"epoch":26138922,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":545.25,"free":3144.2},{"epoch":26138923,"idl":99.92,"recv":0,"send":0,"writ":0.22,"used":544.99,"free":3144.45},{"epoch":26138924,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":544.96,"free":3144.51},{"epoch":26138925,"idl":99.79,"recv":0,"send":0,"writ":0.38,"used":545.02,"free":3144.48},{"epoch":26138926,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":544.99,"free":3144.5},{"epoch":26138927,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":545.39,"free":3144.1},{"epoch":26138928,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":544.71,"free":3144.77},{"epoch":26138929,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":544.68,"free":3144.8},{"epoch":26138930,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":543.46,"free":3146.03},{"epoch":26138931,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":543.41,"free":3146.08},{"epoch":26138932,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":544.54,"free":3144.94},{"epoch":26138933,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":545.16,"free":3144.32},{"epoch":26138934,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":545.24,"free":3144.23},{"epoch":26138935,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":544.76,"free":3144.73},{"epoch":26138936,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":544.73,"free":3144.77},{"epoch":26138937,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":545.39,"free":3144.1},{"epoch":26138938,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":545.4,"free":3144.08},{"epoch":26138939,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":545.38,"free":3144.1},{"epoch":26138940,"idl":99.78,"recv":0.01,"send":0.25,"writ":0.36,"used":544.23,"free":3145.26},{"epoch":26138941,"idl":99.91,"recv":0.01,"send":1.04,"writ":0.25,"used":544.19,"free":3145.29},{"epoch":26138942,"idl":99.78,"recv":0.01,"send":0.88,"writ":0.52,"used":544.71,"free":3144.76},{"epoch":26138943,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":544.38,"free":3145.08},{"epoch":26138944,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":544.36,"free":3145.1},{"epoch":26138945,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":544.85,"free":3144.63},{"epoch":26138946,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":544.83,"free":3144.64},{"epoch":26138947,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":545.49,"free":3143.98},{"epoch":26138948,"idl":99.92,"recv":0,"send":0,"writ":0.28,"used":544.01,"free":3145.45},{"epoch":26138949,"idl":99.21,"recv":0,"send":0,"writ":0.34,"used":544.98,"free":3144.46},{"epoch":26138950,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":544.96,"free":3144.49},{"epoch":26138951,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":544.94,"free":3144.51},{"epoch":26138952,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":544.92,"free":3144.53},{"epoch":26138953,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":545.69,"free":3143.76},{"epoch":26138954,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":545.11,"free":3144.34},{"epoch":26138955,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":545.11,"free":3144.36},{"epoch":26138956,"idl":99.91,"recv":0.01,"send":0.02,"writ":0.19,"used":545.14,"free":3144.33},{"epoch":26138957,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":545.12,"free":3144.34},{"epoch":26138958,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":545.57,"free":3143.89},{"epoch":26138959,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":545.16,"free":3144.3},{"epoch":26138960,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":544.53,"free":3144.94},{"epoch":26138961,"idl":99.91,"recv":0,"send":0.01,"writ":0.16,"used":544.46,"free":3145},{"epoch":26138962,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":544.43,"free":3145.04},{"epoch":26138963,"idl":99.8,"recv":0,"send":0.01,"writ":0.57,"used":545.34,"free":3144.11},{"epoch":26138964,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":545.34,"free":3144.11},{"epoch":26138965,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":545.09,"free":3144.38},{"epoch":26138966,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":545.19,"free":3144.28},{"epoch":26138967,"idl":99.92,"recv":0,"send":0.02,"writ":0.2,"used":545.2,"free":3144.26},{"epoch":26138968,"idl":99.8,"recv":0,"send":0,"writ":0.51,"used":545.52,"free":3143.94},{"epoch":26138969,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":545.14,"free":3144.31},{"epoch":26138970,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":545.37,"free":3144.09},{"epoch":26138971,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":545.33,"free":3144.13},{"epoch":26138972,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":545.39,"free":3144.06},{"epoch":26138973,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":545.82,"free":3143.63},{"epoch":26138974,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":545.44,"free":3144},{"epoch":26138975,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":545.67,"free":3143.79},{"epoch":26138976,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":545.65,"free":3143.81},{"epoch":26138977,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":545.63,"free":3143.83},{"epoch":26138978,"idl":99.81,"recv":0.01,"send":0.01,"writ":0.58,"used":545.84,"free":3143.61},{"epoch":26138979,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":545.87,"free":3143.56},{"epoch":26138980,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":545.39,"free":3144.05},{"epoch":26138981,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":545.35,"free":3144.09},{"epoch":26138982,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":545.33,"free":3144.11},{"epoch":26138983,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":545.9,"free":3143.53},{"epoch":26138984,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":545.6,"free":3143.82},{"epoch":26138985,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":545.71,"free":3143.72},{"epoch":26138986,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":545.68,"free":3143.75},{"epoch":26138987,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":545.65,"free":3143.78},{"epoch":26138988,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":545.63,"free":3143.8},{"epoch":26138989,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":545.84,"free":3143.58},{"epoch":26138990,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":544.93,"free":3144.51},{"epoch":26138991,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":544.83,"free":3144.6},{"epoch":26138992,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":544.81,"free":3144.62},{"epoch":26138993,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":544.89,"free":3144.53},{"epoch":26138994,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":545.7,"free":3143.72},{"epoch":26138995,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":544.72,"free":3144.72},{"epoch":26138996,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":544.71,"free":3144.72},{"epoch":26138997,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":531.38,"free":3158.52},{"epoch":26138998,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.43,"used":532.84,"free":3157},{"epoch":26138999,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":535.13,"free":3154.68},{"epoch":26139000,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":534.84,"free":3154.99},{"epoch":26139001,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":534.91,"free":3154.91},{"epoch":26139002,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":534.97,"free":3154.86},{"epoch":26139003,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":534.97,"free":3154.87},{"epoch":26139004,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":535.58,"free":3154.25},{"epoch":26139005,"idl":99.9,"recv":0,"send":0,"writ":0.37,"used":535.68,"free":3154.16},{"epoch":26139006,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":535.66,"free":3154.18},{"epoch":26139007,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":535.65,"free":3154.19},{"epoch":26139008,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":535.64,"free":3154.19},{"epoch":26139009,"idl":99.67,"recv":0,"send":0,"writ":0.73,"used":536.21,"free":3153.6},{"epoch":26139010,"idl":99.9,"recv":0,"send":0,"writ":0.35,"used":535.63,"free":3154.2},{"epoch":26139011,"idl":99.93,"recv":0,"send":0.02,"writ":0.18,"used":535.59,"free":3154.23},{"epoch":26139012,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":535.57,"free":3154.25},{"epoch":26139013,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":535.54,"free":3154.27},{"epoch":26139014,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":535.89,"free":3153.93},{"epoch":26139015,"idl":99.77,"recv":0,"send":0,"writ":0.52,"used":535.79,"free":3154.05},{"epoch":26139016,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.94,"free":3153.9},{"epoch":26139017,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":536.18,"free":3153.65},{"epoch":26139018,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":536.16,"free":3153.67},{"epoch":26139019,"idl":96.67,"recv":0.27,"send":0.01,"writ":64.45,"used":541.62,"free":3148.56},{"epoch":26139020,"idl":97.91,"recv":0,"send":0,"writ":195.46,"used":543.43,"free":3146.78},{"epoch":26139021,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":536.64,"free":3153.18},{"epoch":26139022,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":536.61,"free":3153.2},{"epoch":26139023,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":536.58,"free":3153.23},{"epoch":26139024,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":536.58,"free":3153.23},{"epoch":26139025,"idl":99.59,"recv":0,"send":0,"writ":0.8,"used":535.55,"free":3154.3},{"epoch":26139026,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":534.89,"free":3154.96},{"epoch":26139027,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":534.89,"free":3154.96},{"epoch":26139028,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":534.86,"free":3154.99},{"epoch":26139029,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":534.85,"free":3154.99},{"epoch":26139030,"idl":99.68,"recv":0,"send":0,"writ":0.79,"used":535.48,"free":3154.38},{"epoch":26139031,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":535.33,"free":3154.53},{"epoch":26139032,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":535.47,"free":3154.38},{"epoch":26139033,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":535.48,"free":3154.36},{"epoch":26139034,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":535.47,"free":3154.38},{"epoch":26139035,"idl":99.71,"recv":0,"send":0,"writ":0.73,"used":536.21,"free":3153.65},{"epoch":26139036,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":535.96,"free":3153.89},{"epoch":26139037,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":535.94,"free":3153.91},{"epoch":26139038,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":535.92,"free":3153.92},{"epoch":26139039,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":535.65,"free":3154.17},{"epoch":26139040,"idl":99.73,"recv":0,"send":0,"writ":0.71,"used":536.16,"free":3153.68},{"epoch":26139041,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.87,"free":3153.96},{"epoch":26139042,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":535.87,"free":3153.96},{"epoch":26139043,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":535.65,"free":3154.17},{"epoch":26139044,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":535.34,"free":3154.49},{"epoch":26139045,"idl":99.69,"recv":0,"send":0,"writ":0.67,"used":536.42,"free":3153.43},{"epoch":26139046,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":535.84,"free":3154.01},{"epoch":26139047,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.81,"free":3154.03},{"epoch":26139048,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":535.8,"free":3154.04},{"epoch":26139049,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":535.93,"free":3153.9},{"epoch":26139050,"idl":99.7,"recv":0,"send":0,"writ":0.73,"used":536.45,"free":3153.4},{"epoch":26139051,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":535.97,"free":3153.88},{"epoch":26139052,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":535.96,"free":3153.88},{"epoch":26139053,"idl":99.94,"recv":0,"send":0,"writ":0.22,"used":535.93,"free":3153.91},{"epoch":26139054,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":535.92,"free":3153.91},{"epoch":26139055,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":536.53,"free":3153.32},{"epoch":26139056,"idl":99.89,"recv":0,"send":0,"writ":0.37,"used":535.93,"free":3153.92},{"epoch":26139057,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":535.9,"free":3153.95},{"epoch":26139058,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.89,"free":3153.95},{"epoch":26139059,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":535.86,"free":3153.98},{"epoch":26139060,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":536.12,"free":3153.73},{"epoch":26139061,"idl":99.76,"recv":0,"send":0.01,"writ":0.59,"used":535.36,"free":3154.48},{"epoch":26139062,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":534.83,"free":3155.01},{"epoch":26139063,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":534.81,"free":3155.02},{"epoch":26139064,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":534.89,"free":3154.95},{"epoch":26139065,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":536.23,"free":3153.62},{"epoch":26139066,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":536.59,"free":3153.25},{"epoch":26139067,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":536.23,"free":3153.61},{"epoch":26139068,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":536.2,"free":3153.64},{"epoch":26139069,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":535.86,"free":3153.96},{"epoch":26139070,"idl":99.82,"recv":0,"send":0,"writ":0.37,"used":535.25,"free":3154.58},{"epoch":26139071,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":535.54,"free":3154.28},{"epoch":26139072,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":535.16,"free":3154.66},{"epoch":26139073,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":535.14,"free":3154.68},{"epoch":26139074,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":535.11,"free":3154.7},{"epoch":26139075,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":535.12,"free":3154.71},{"epoch":26139076,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":535.46,"free":3154.36},{"epoch":26139077,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":535.32,"free":3154.5},{"epoch":26139078,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":535.33,"free":3154.49},{"epoch":26139079,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":535.31,"free":3154.5},{"epoch":26139080,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":535.48,"free":3154.35},{"epoch":26139081,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":536.18,"free":3153.65},{"epoch":26139082,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":535.49,"free":3154.34},{"epoch":26139083,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":535.46,"free":3154.36},{"epoch":26139084,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":535.45,"free":3154.37},{"epoch":26139085,"idl":99.86,"recv":0,"send":0,"writ":0.37,"used":535.46,"free":3154.37},{"epoch":26139086,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":535.77,"free":3154.05},{"epoch":26139087,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":534.69,"free":3155.13},{"epoch":26139088,"idl":98.78,"recv":0,"send":0,"writ":0.17,"used":534.68,"free":3155.14},{"epoch":26139089,"idl":99.5,"recv":0,"send":0,"writ":0.18,"used":534.68,"free":3155.14},{"epoch":26139090,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":534.91,"free":3154.92},{"epoch":26139091,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":535.29,"free":3154.54},{"epoch":26139092,"idl":99.94,"recv":0,"send":0,"writ":0.36,"used":535.39,"free":3154.43},{"epoch":26139093,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":535.36,"free":3154.45},{"epoch":26139094,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.35,"free":3154.46},{"epoch":26139095,"idl":99.82,"recv":0,"send":0,"writ":0.35,"used":535.11,"free":3154.72},{"epoch":26139096,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":535.44,"free":3154.39},{"epoch":26139097,"idl":99.9,"recv":0,"send":0,"writ":0.44,"used":535.08,"free":3154.74},{"epoch":26139098,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":535.19,"free":3154.63},{"epoch":26139099,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":535.5,"free":3154.29},{"epoch":26139100,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":535.5,"free":3154.31},{"epoch":26139101,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":535.46,"free":3154.34},{"epoch":26139102,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":535.82,"free":3153.99},{"epoch":26139103,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":535.34,"free":3154.47},{"epoch":26139104,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":535.17,"free":3154.64},{"epoch":26139105,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":535.23,"free":3154.6},{"epoch":26139106,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":535.16,"free":3154.66},{"epoch":26139107,"idl":99.77,"recv":0,"send":0,"writ":0.61,"used":536.02,"free":3153.8},{"epoch":26139108,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":535.39,"free":3154.42},{"epoch":26139109,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":535.36,"free":3154.45},{"epoch":26139110,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":534.9,"free":3154.93},{"epoch":26139111,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":534.88,"free":3154.95},{"epoch":26139112,"idl":99.77,"recv":0,"send":0,"writ":0.52,"used":535.33,"free":3154.49},{"epoch":26139113,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":535.08,"free":3154.73},{"epoch":26139114,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":535.08,"free":3154.73},{"epoch":26139115,"idl":99.83,"recv":0,"send":0,"writ":0.35,"used":534.83,"free":3154.99},{"epoch":26139116,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":534.82,"free":3155.01},{"epoch":26139117,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":535.44,"free":3154.38},{"epoch":26139118,"idl":99.92,"recv":0,"send":0,"writ":0.23,"used":535.23,"free":3154.59},{"epoch":26139119,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":535.2,"free":3154.61},{"epoch":26139120,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":535.22,"free":3154.6},{"epoch":26139121,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":535.19,"free":3154.63},{"epoch":26139122,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":535.54,"free":3154.28},{"epoch":26139123,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":535.18,"free":3154.64},{"epoch":26139124,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":535.16,"free":3154.65},{"epoch":26139125,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":535.64,"free":3154.18},{"epoch":26139126,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":535.65,"free":3154.18},{"epoch":26139127,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":536.04,"free":3153.78},{"epoch":26139128,"idl":99.94,"recv":0,"send":0,"writ":0.3,"used":535.85,"free":3153.96},{"epoch":26139129,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":535.6,"free":3154.19},{"epoch":26139130,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":535.59,"free":3154.22},{"epoch":26139131,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":535.55,"free":3154.25},{"epoch":26139132,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":536.06,"free":3153.74},{"epoch":26139133,"idl":99.92,"recv":0,"send":0,"writ":0.39,"used":535.46,"free":3154.34},{"epoch":26139134,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":535.45,"free":3154.34},{"epoch":26139135,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":535.71,"free":3154.1},{"epoch":26139136,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":535.67,"free":3154.13},{"epoch":26139137,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":535.67,"free":3154.13},{"epoch":26139138,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":535.5,"free":3154.29},{"epoch":26139139,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":534.63,"free":3155.16},{"epoch":26139140,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":535.11,"free":3154.69},{"epoch":26139141,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":535.12,"free":3154.68},{"epoch":26139142,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":535.11,"free":3154.69},{"epoch":26139143,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":536.07,"free":3153.72},{"epoch":26139144,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":535.81,"free":3153.98},{"epoch":26139145,"idl":99.83,"recv":0,"send":0,"writ":0.38,"used":534.6,"free":3155.2},{"epoch":26139146,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":534.56,"free":3155.24},{"epoch":26139147,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":534.57,"free":3155.22},{"epoch":26139148,"idl":99.8,"recv":0,"send":0,"writ":0.61,"used":535.19,"free":3154.6},{"epoch":26139149,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":534.94,"free":3154.84},{"epoch":26139150,"idl":99.76,"recv":0,"send":0,"writ":0.38,"used":534.05,"free":3155.75},{"epoch":26139151,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":533.94,"free":3155.85},{"epoch":26139152,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":533.92,"free":3155.87},{"epoch":26139153,"idl":99.79,"recv":0,"send":0,"writ":0.5,"used":534.51,"free":3155.27},{"epoch":26139154,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":534.64,"free":3155.14},{"epoch":26139155,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":533.46,"free":3156.34},{"epoch":26139156,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":533.39,"free":3156.41},{"epoch":26139157,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":533.39,"free":3156.41},{"epoch":26139158,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":534.08,"free":3155.7},{"epoch":26139159,"idl":99.88,"recv":0,"send":0,"writ":0.46,"used":535.55,"free":3154.21},{"epoch":26139160,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":535.82,"free":3153.98},{"epoch":26139161,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":535.8,"free":3154},{"epoch":26139162,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.78,"free":3154.01},{"epoch":26139163,"idl":99.72,"recv":0,"send":0,"writ":0.43,"used":536.18,"free":3153.6},{"epoch":26139164,"idl":99.94,"recv":0,"send":0,"writ":0.31,"used":535.69,"free":3154.12},{"epoch":26139165,"idl":99.87,"recv":0,"send":0,"writ":0.36,"used":535.71,"free":3154.13},{"epoch":26139166,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":535.7,"free":3154.13},{"epoch":26139167,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":535.67,"free":3154.16},{"epoch":26139168,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":536.01,"free":3153.81},{"epoch":26139169,"idl":99.9,"recv":0,"send":0,"writ":0.39,"used":536.26,"free":3153.56},{"epoch":26139170,"idl":99.87,"recv":0,"send":0,"writ":0.35,"used":536.14,"free":3153.7},{"epoch":26139171,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":536.13,"free":3153.7},{"epoch":26139172,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":536.13,"free":3153.7},{"epoch":26139173,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":536.11,"free":3153.71},{"epoch":26139174,"idl":99.74,"recv":0,"send":0,"writ":0.6,"used":536.34,"free":3153.46},{"epoch":26139175,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":535.61,"free":3154.21},{"epoch":26139176,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":535.58,"free":3154.24},{"epoch":26139177,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":535.56,"free":3154.25},{"epoch":26139178,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":535.53,"free":3154.28},{"epoch":26139179,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":536.11,"free":3153.69},{"epoch":26139180,"idl":99.34,"recv":0,"send":0,"writ":11.39,"used":535.48,"free":3155.06},{"epoch":26139181,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":535.48,"free":3155.13},{"epoch":26139182,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":535.47,"free":3155.15},{"epoch":26139183,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":535.44,"free":3155.17},{"epoch":26139184,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":536.28,"free":3154.33},{"epoch":26139185,"idl":99.73,"recv":0.01,"send":0.03,"writ":0.39,"used":536.13,"free":3154.5},{"epoch":26139186,"idl":99.91,"recv":0,"send":0,"writ":0.22,"used":536.08,"free":3154.54},{"epoch":26139187,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":536.05,"free":3154.57},{"epoch":26139188,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":536.04,"free":3154.57},{"epoch":26139189,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":536.58,"free":3154.03},{"epoch":26139190,"idl":99.75,"recv":0,"send":0,"writ":0.43,"used":536.45,"free":3154.18},{"epoch":26139191,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":536.46,"free":3154.16},{"epoch":26139192,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":536.46,"free":3154.17},{"epoch":26139193,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":536.42,"free":3154.2},{"epoch":26139194,"idl":99.74,"recv":0,"send":0,"writ":0.41,"used":536.78,"free":3153.84},{"epoch":26139195,"idl":99.77,"recv":0,"send":0,"writ":0.47,"used":536.2,"free":3154.43},{"epoch":26139196,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":536.16,"free":3154.47},{"epoch":26139197,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":536.15,"free":3154.47},{"epoch":26139198,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":536.14,"free":3154.48},{"epoch":26139199,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":536.54,"free":3154.08},{"epoch":26139200,"idl":99.83,"recv":0,"send":0,"writ":0.45,"used":536.15,"free":3154.49},{"epoch":26139201,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":536.1,"free":3154.53},{"epoch":26139202,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":536.09,"free":3154.54},{"epoch":26139203,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":536.08,"free":3154.54},{"epoch":26139204,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":536.05,"free":3154.57},{"epoch":26139205,"idl":99.6,"recv":0,"send":0,"writ":0.8,"used":536.9,"free":3153.73},{"epoch":26139206,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":536.39,"free":3154.24},{"epoch":26139207,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":536.46,"free":3154.16},{"epoch":26139208,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":536.45,"free":3154.16},{"epoch":26139209,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":536.42,"free":3154.19},{"epoch":26139210,"idl":99.62,"recv":0,"send":0,"writ":0.71,"used":536.78,"free":3153.85},{"epoch":26139211,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":536.43,"free":3154.2},{"epoch":26139212,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":536.42,"free":3154.2},{"epoch":26139213,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":536.39,"free":3154.23},{"epoch":26139214,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":536.38,"free":3154.23},{"epoch":26139215,"idl":99.6,"recv":0,"send":0,"writ":0.73,"used":536.74,"free":3153.89},{"epoch":26139216,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":536.37,"free":3154.26},{"epoch":26139217,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":536.36,"free":3154.26},{"epoch":26139218,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":536.33,"free":3154.29},{"epoch":26139219,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":536.32,"free":3154.3},{"epoch":26139220,"idl":99.64,"recv":0,"send":0,"writ":0.8,"used":536.18,"free":3154.44},{"epoch":26139221,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":535.55,"free":3155.07},{"epoch":26139222,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":535.54,"free":3155.08},{"epoch":26139223,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":535.57,"free":3155.04},{"epoch":26139224,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":535.43,"free":3155.17},{"epoch":26139225,"idl":99.65,"recv":0,"send":0,"writ":0.69,"used":536.16,"free":3154.47},{"epoch":26139226,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":535.68,"free":3154.94},{"epoch":26139227,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":535.65,"free":3154.97},{"epoch":26139228,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":535.64,"free":3154.97},{"epoch":26139229,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":535.64,"free":3154.97},{"epoch":26139230,"idl":99.67,"recv":0,"send":0,"writ":0.82,"used":536.16,"free":3154.46},{"epoch":26139231,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":535.62,"free":3155},{"epoch":26139232,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":535.62,"free":3155},{"epoch":26139233,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":535.58,"free":3155.03},{"epoch":26139234,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":535.57,"free":3155.04},{"epoch":26139235,"idl":99.66,"recv":0,"send":0,"writ":0.75,"used":536.11,"free":3154.52},{"epoch":26139236,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":535.56,"free":3155.06},{"epoch":26139237,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":535.55,"free":3155.07},{"epoch":26139238,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":535.54,"free":3155.07},{"epoch":26139239,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":535.62,"free":3154.99},{"epoch":26139240,"idl":99.77,"recv":0,"send":0,"writ":0.38,"used":535.94,"free":3154.68},{"epoch":26139241,"idl":99.7,"recv":0,"send":0,"writ":0.61,"used":536.33,"free":3154.28},{"epoch":26139242,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":535.67,"free":3154.94},{"epoch":26139243,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":535.66,"free":3154.95},{"epoch":26139244,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":535.63,"free":3154.97},{"epoch":26139245,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":536.12,"free":3154.5},{"epoch":26139246,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":536.39,"free":3154.22},{"epoch":26139247,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":535.82,"free":3154.79},{"epoch":26139248,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":535.81,"free":3154.79},{"epoch":26139249,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":535.56,"free":3155.02},{"epoch":26139250,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":534.58,"free":3156.01},{"epoch":26139251,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":535.68,"free":3154.91},{"epoch":26139252,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":535.75,"free":3154.83},{"epoch":26139253,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":535.73,"free":3154.84},{"epoch":26139254,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":535.9,"free":3154.67},{"epoch":26139255,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":535.9,"free":3154.68},{"epoch":26139256,"idl":99.68,"recv":0,"send":0,"writ":0.49,"used":536.24,"free":3154.34},{"epoch":26139257,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":535.89,"free":3154.69},{"epoch":26139258,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":535.86,"free":3154.72},{"epoch":26139259,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":535.85,"free":3154.72},{"epoch":26139260,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":535.87,"free":3154.72},{"epoch":26139261,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":536.12,"free":3154.47},{"epoch":26139262,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":535.58,"free":3155},{"epoch":26139263,"idl":99.84,"recv":0.02,"send":0,"writ":0.15,"used":535.5,"free":3155.07},{"epoch":26139264,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":535.48,"free":3155.09},{"epoch":26139265,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":535.01,"free":3155.57},{"epoch":26139266,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":535.74,"free":3154.84},{"epoch":26139267,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":535.89,"free":3154.69},{"epoch":26139268,"idl":99.84,"recv":0,"send":0.01,"writ":0.18,"used":535.86,"free":3154.71},{"epoch":26139269,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":535.85,"free":3154.72},{"epoch":26139270,"idl":99.74,"recv":0,"send":0,"writ":0.27,"used":534.87,"free":3155.71},{"epoch":26139271,"idl":99.54,"recv":0,"send":0,"writ":0.42,"used":535.3,"free":3155.28},{"epoch":26139272,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":535.58,"free":3155},{"epoch":26139273,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":535.54,"free":3155.03},{"epoch":26139274,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":535.54,"free":3155.03},{"epoch":26139275,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":535.78,"free":3154.8},{"epoch":26139276,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":535.76,"free":3154.81},{"epoch":26139277,"idl":99.73,"recv":0,"send":0,"writ":0.62,"used":536.1,"free":3154.46},{"epoch":26139278,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":535.74,"free":3154.82},{"epoch":26139279,"idl":99.73,"recv":0,"send":0,"writ":0.39,"used":535.74,"free":3154.79},{"epoch":26139280,"idl":99.74,"recv":0,"send":0,"writ":0.27,"used":535.98,"free":3154.57},{"epoch":26139281,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":536.16,"free":3154.39},{"epoch":26139282,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":535.91,"free":3154.64},{"epoch":26139283,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":535.14,"free":3155.4},{"epoch":26139284,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":535.63,"free":3154.91},{"epoch":26139285,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":535.65,"free":3154.91},{"epoch":26139286,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":535.61,"free":3154.94},{"epoch":26139287,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":536.26,"free":3154.29},{"epoch":26139288,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":536.07,"free":3154.47},{"epoch":26139289,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":536.06,"free":3154.48},{"epoch":26139290,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":536.05,"free":3154.5},{"epoch":26139291,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":536.04,"free":3154.51},{"epoch":26139292,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":536.23,"free":3154.31},{"epoch":26139293,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":535.75,"free":3154.78},{"epoch":26139294,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":535.74,"free":3154.79},{"epoch":26139295,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":536,"free":3154.55},{"epoch":26139296,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":536.13,"free":3154.42},{"epoch":26139297,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":536.51,"free":3154.03},{"epoch":26139298,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":536.15,"free":3154.39},{"epoch":26139299,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":536.12,"free":3154.41},{"epoch":26139300,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":536.13,"free":3154.42},{"epoch":26139301,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":536.11,"free":3154.44},{"epoch":26139302,"idl":99.71,"recv":0,"send":0,"writ":0.52,"used":536.81,"free":3153.73},{"epoch":26139303,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":535.82,"free":3154.72},{"epoch":26139304,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":535.81,"free":3154.73},{"epoch":26139305,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":536.07,"free":3154.47},{"epoch":26139306,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":536.06,"free":3154.48},{"epoch":26139307,"idl":99.71,"recv":0,"send":0,"writ":0.39,"used":536.71,"free":3153.84},{"epoch":26139308,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":536.02,"free":3154.51},{"epoch":26139309,"idl":99.73,"recv":0,"send":0,"writ":0.36,"used":536.03,"free":3154.48},{"epoch":26139310,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":535.77,"free":3154.76},{"epoch":26139311,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":535.76,"free":3154.77},{"epoch":26139312,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":535.75,"free":3154.77},{"epoch":26139313,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":536.48,"free":3154.03},{"epoch":26139314,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":535.9,"free":3154.61},{"epoch":26139315,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":536.15,"free":3154.37},{"epoch":26139316,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":536.13,"free":3154.39},{"epoch":26139317,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":536.09,"free":3154.42},{"epoch":26139318,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":536.44,"free":3154.07},{"epoch":26139319,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":536.07,"free":3154.43},{"epoch":26139320,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":536.07,"free":3154.45},{"epoch":26139321,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":536.06,"free":3154.46},{"epoch":26139322,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":536.03,"free":3154.48},{"epoch":26139323,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":536.37,"free":3154.14},{"epoch":26139324,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":536.02,"free":3154.49},{"epoch":26139325,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":536.25,"free":3154.27},{"epoch":26139326,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":536.24,"free":3154.27},{"epoch":26139327,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":536.24,"free":3154.27},{"epoch":26139328,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":536.65,"free":3153.86},{"epoch":26139329,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":536.39,"free":3154.12},{"epoch":26139330,"idl":99.69,"recv":0,"send":0,"writ":0.26,"used":535.75,"free":3154.77},{"epoch":26139331,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":535.66,"free":3154.86},{"epoch":26139332,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":535.63,"free":3154.89},{"epoch":26139333,"idl":99.7,"recv":0,"send":0,"writ":0.5,"used":536.07,"free":3154.44},{"epoch":26139334,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":535.83,"free":3154.67},{"epoch":26139335,"idl":99.69,"recv":0,"send":0,"writ":0.27,"used":536.09,"free":3154.43},{"epoch":26139336,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":536.07,"free":3154.45},{"epoch":26139337,"idl":99.74,"recv":0,"send":0,"writ":0.16,"used":536.06,"free":3154.46},{"epoch":26139338,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":536.45,"free":3154.06},{"epoch":26139339,"idl":99.63,"recv":0,"send":0,"writ":0.32,"used":536,"free":3154.48},{"epoch":26139340,"idl":99.75,"recv":0,"send":0,"writ":0.25,"used":536.26,"free":3154.24},{"epoch":26139341,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":536.25,"free":3154.24},{"epoch":26139342,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":536.22,"free":3154.27},{"epoch":26139343,"idl":99.66,"recv":0,"send":0,"writ":0.44,"used":536.71,"free":3153.77},{"epoch":26139344,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":535.94,"free":3154.55},{"epoch":26139345,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":536.13,"free":3154.38},{"epoch":26139346,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":536.11,"free":3154.4},{"epoch":26139347,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":536.1,"free":3154.4},{"epoch":26139348,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":536.09,"free":3154.4},{"epoch":26139349,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":536.62,"free":3153.87},{"epoch":26139350,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":536.32,"free":3154.19},{"epoch":26139351,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":536.32,"free":3154.19},{"epoch":26139352,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":536.29,"free":3154.21},{"epoch":26139353,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":536.28,"free":3154.22},{"epoch":26139354,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":536.6,"free":3153.89},{"epoch":26139355,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":536.26,"free":3154.25},{"epoch":26139356,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":536.23,"free":3154.27},{"epoch":26139357,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":536.22,"free":3154.28},{"epoch":26139358,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":536.21,"free":3154.28},{"epoch":26139359,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":536.72,"free":3153.77},{"epoch":26139360,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":535.24,"free":3155.27},{"epoch":26139361,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":535.36,"free":3155.14},{"epoch":26139362,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":535.36,"free":3155.13},{"epoch":26139363,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":535.35,"free":3155.14},{"epoch":26139364,"idl":99.72,"recv":0,"send":0,"writ":0.61,"used":535.99,"free":3154.5},{"epoch":26139365,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":536.58,"free":3153.93},{"epoch":26139366,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":536.56,"free":3153.94},{"epoch":26139367,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":536.28,"free":3154.22},{"epoch":26139368,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":535.51,"free":3154.99},{"epoch":26139369,"idl":99.61,"recv":0,"send":0,"writ":0.8,"used":535.57,"free":3154.92},{"epoch":26139370,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":534.52,"free":3155.99},{"epoch":26139371,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":534.5,"free":3156},{"epoch":26139372,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":534.48,"free":3156.02},{"epoch":26139373,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":534.46,"free":3156.04},{"epoch":26139374,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":535.26,"free":3155.23},{"epoch":26139375,"idl":99.8,"recv":0.01,"send":0.03,"writ":0.31,"used":535.18,"free":3155.33},{"epoch":26139376,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":534.99,"free":3155.51},{"epoch":26139377,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":534.96,"free":3155.54},{"epoch":26139378,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":534.95,"free":3155.54},{"epoch":26139379,"idl":99.81,"recv":0,"send":0,"writ":0.43,"used":535.45,"free":3155.04},{"epoch":26139380,"idl":99.86,"recv":0,"send":0,"writ":0.42,"used":535.38,"free":3155.13},{"epoch":26139381,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":535.39,"free":3155.11},{"epoch":26139382,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":535.37,"free":3155.12},{"epoch":26139383,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":535.36,"free":3155.15},{"epoch":26139384,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":535.35,"free":3155.16},{"epoch":26139385,"idl":94.58,"recv":0.29,"send":0.01,"writ":259.44,"used":550.59,"free":3139.97},{"epoch":26139386,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":537.96,"free":3152.53},{"epoch":26139387,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":537.95,"free":3152.53},{"epoch":26139388,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":537.95,"free":3152.53},{"epoch":26139389,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":537.91,"free":3152.56},{"epoch":26139390,"idl":99.71,"recv":0,"send":0,"writ":0.71,"used":536.24,"free":3154.29},{"epoch":26139391,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":535.03,"free":3155.51},{"epoch":26139392,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":534.81,"free":3155.72},{"epoch":26139393,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":534.74,"free":3155.79},{"epoch":26139394,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":534.74,"free":3155.79},{"epoch":26139395,"idl":99.74,"recv":0,"send":0,"writ":0.68,"used":535.71,"free":3154.86},{"epoch":26139396,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":535.46,"free":3155.13},{"epoch":26139397,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":535.43,"free":3155.16},{"epoch":26139398,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":535.42,"free":3155.16},{"epoch":26139399,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":535.89,"free":3154.66},{"epoch":26139400,"idl":99.71,"recv":0,"send":0,"writ":0.75,"used":535.99,"free":3154.58},{"epoch":26139401,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":535.36,"free":3155.21},{"epoch":26139402,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":535.35,"free":3155.21},{"epoch":26139403,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":535.38,"free":3155.18},{"epoch":26139404,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.56,"free":3155},{"epoch":26139405,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":535.82,"free":3154.76},{"epoch":26139406,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":535.3,"free":3155.27},{"epoch":26139407,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":535.29,"free":3155.27},{"epoch":26139408,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":535.27,"free":3155.29},{"epoch":26139409,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":535.25,"free":3155.3},{"epoch":26139410,"idl":99.66,"recv":0,"send":0,"writ":0.52,"used":536.02,"free":3154.56},{"epoch":26139411,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":535.24,"free":3155.34},{"epoch":26139412,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":535.23,"free":3155.34},{"epoch":26139413,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":535.2,"free":3155.36},{"epoch":26139414,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":535.19,"free":3155.37},{"epoch":26139415,"idl":99.68,"recv":0,"send":0,"writ":0.43,"used":536.39,"free":3154.18},{"epoch":26139416,"idl":99.91,"recv":0,"send":0,"writ":0.44,"used":535.84,"free":3154.74},{"epoch":26139417,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":535.85,"free":3154.72},{"epoch":26139418,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":535.82,"free":3154.75},{"epoch":26139419,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.81,"free":3154.75},{"epoch":26139420,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":535.11,"free":3155.47},{"epoch":26139421,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":535.92,"free":3154.66},{"epoch":26139422,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":535.3,"free":3155.27},{"epoch":26139423,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":535.29,"free":3155.27},{"epoch":26139424,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":535.26,"free":3155.3},{"epoch":26139425,"idl":99.83,"recv":0,"send":0,"writ":0.26,"used":535.28,"free":3155.3},{"epoch":26139426,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":535.62,"free":3154.96},{"epoch":26139427,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":534.99,"free":3155.59},{"epoch":26139428,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":534.98,"free":3155.62},{"epoch":26139429,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":535.68,"free":3154.9},{"epoch":26139430,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":535.94,"free":3154.65},{"epoch":26139431,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":536.37,"free":3154.21},{"epoch":26139432,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":535.91,"free":3154.67},{"epoch":26139433,"idl":97.96,"recv":0,"send":0,"writ":0.16,"used":536.08,"free":3154.5},{"epoch":26139434,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":536.09,"free":3154.5},{"epoch":26139435,"idl":99.86,"recv":0,"send":0,"writ":0.26,"used":536.08,"free":3154.53},{"epoch":26139436,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":536.51,"free":3154.09},{"epoch":26139437,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":536.31,"free":3154.29},{"epoch":26139438,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":536.28,"free":3154.31},{"epoch":26139439,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":536.27,"free":3154.32},{"epoch":26139440,"idl":99.86,"recv":0,"send":0,"writ":0.25,"used":536.02,"free":3154.59},{"epoch":26139441,"idl":99.77,"recv":0,"send":0,"writ":0.43,"used":536.31,"free":3154.29},{"epoch":26139442,"idl":99.94,"recv":0,"send":0,"writ":0.31,"used":535.76,"free":3154.84},{"epoch":26139443,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":535.73,"free":3154.87},{"epoch":26139444,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":535.72,"free":3154.88},{"epoch":26139445,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":534.51,"free":3156.1},{"epoch":26139446,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":534.87,"free":3155.73},{"epoch":26139447,"idl":99.96,"recv":0,"send":0,"writ":0.27,"used":535.45,"free":3155.15},{"epoch":26139448,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":535.43,"free":3155.17},{"epoch":26139449,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":535.44,"free":3155.15},{"epoch":26139450,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":536.1,"free":3154.51},{"epoch":26139451,"idl":99.75,"recv":0,"send":0,"writ":0.43,"used":536.44,"free":3154.17},{"epoch":26139452,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":536.06,"free":3154.54},{"epoch":26139453,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":536.05,"free":3154.54},{"epoch":26139454,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":536.02,"free":3154.57},{"epoch":26139455,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":536.03,"free":3154.57},{"epoch":26139456,"idl":99.96,"recv":0,"send":0,"writ":0.13,"used":536.03,"free":3154.57},{"epoch":26139457,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":536.38,"free":3154.21},{"epoch":26139458,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":535.99,"free":3154.59},{"epoch":26139459,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":535.98,"free":3154.58},{"epoch":26139460,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":535.99,"free":3154.59},{"epoch":26139461,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":535.96,"free":3154.62},{"epoch":26139462,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":536.68,"free":3153.9},{"epoch":26139463,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":535.83,"free":3154.75},{"epoch":26139464,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.42,"free":3155.14},{"epoch":26139465,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":536.17,"free":3154.41},{"epoch":26139466,"idl":99.92,"recv":0,"send":0,"writ":0.25,"used":535.98,"free":3154.61},{"epoch":26139467,"idl":99.81,"recv":0,"send":0,"writ":0.63,"used":536.44,"free":3154.13},{"epoch":26139468,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":535.94,"free":3154.63},{"epoch":26139469,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":536.07,"free":3154.5},{"epoch":26139470,"idl":99.83,"recv":0,"send":0,"writ":0.26,"used":535.87,"free":3154.71},{"epoch":26139471,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":535.81,"free":3154.79},{"epoch":26139472,"idl":99.81,"recv":0,"send":0,"writ":0.44,"used":536.43,"free":3154.2},{"epoch":26139473,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":536.04,"free":3154.59},{"epoch":26139474,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":536.01,"free":3154.61},{"epoch":26139475,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":536.03,"free":3154.61},{"epoch":26139476,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":536.02,"free":3154.61},{"epoch":26139477,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":536.31,"free":3154.31},{"epoch":26139478,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.25,"free":3155.38},{"epoch":26139479,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":535.24,"free":3155.38},{"epoch":26139480,"idl":99.79,"recv":0,"send":0,"writ":0.26,"used":534.76,"free":3155.88},{"epoch":26139481,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":534.73,"free":3155.9},{"epoch":26139482,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":535.13,"free":3155.5},{"epoch":26139483,"idl":99.92,"recv":0,"send":0,"writ":0.39,"used":536.43,"free":3154.2},{"epoch":26139484,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":536.41,"free":3154.21},{"epoch":26139485,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":536.17,"free":3154.47},{"epoch":26139486,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":536.3,"free":3154.33},{"epoch":26139487,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":536.66,"free":3153.97},{"epoch":26139488,"idl":99.93,"recv":0,"send":0,"writ":0.38,"used":536.29,"free":3154.33},{"epoch":26139489,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":536.54,"free":3154.06},{"epoch":26139490,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":536.53,"free":3154.08},{"epoch":26139491,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":536.52,"free":3154.09},{"epoch":26139492,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":536.5,"free":3154.11},{"epoch":26139493,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":536.62,"free":3153.98},{"epoch":26139494,"idl":98.59,"recv":0,"send":0,"writ":0.15,"used":536.23,"free":3154.37},{"epoch":26139495,"idl":99.84,"recv":0,"send":0,"writ":0.25,"used":536.47,"free":3154.15},{"epoch":26139496,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":536.46,"free":3154.15},{"epoch":26139497,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":536.43,"free":3154.17},{"epoch":26139498,"idl":99.81,"recv":0,"send":0,"writ":0.58,"used":536.83,"free":3153.77},{"epoch":26139499,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":536.17,"free":3154.43},{"epoch":26139500,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":535.44,"free":3155.17},{"epoch":26139501,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":535.54,"free":3155.07},{"epoch":26139502,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":535.56,"free":3155.04},{"epoch":26139503,"idl":99.79,"recv":0,"send":0,"writ":0.5,"used":536.54,"free":3154.06},{"epoch":26139504,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":536.51,"free":3154.09},{"epoch":26139505,"idl":99.6,"recv":0,"send":0,"writ":0.29,"used":535.35,"free":3155.26},{"epoch":26139506,"idl":95.45,"recv":22.51,"send":0.03,"writ":163.22,"used":544.96,"free":3131.42},{"epoch":26139507,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":537.92,"free":3130.28},{"epoch":26139508,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":538.63,"free":3129.56},{"epoch":26139509,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":538.88,"free":3129.3},{"epoch":26139510,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":538.18,"free":3130.02},{"epoch":26139511,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":536.98,"free":3131.25},{"epoch":26139512,"idl":98.49,"recv":0,"send":0,"writ":0.15,"used":536.46,"free":3131.79},{"epoch":26139513,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":536.81,"free":3131.44},{"epoch":26139514,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":536.42,"free":3131.82},{"epoch":26139515,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":535.97,"free":3132.29},{"epoch":26139516,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":535.94,"free":3132.32},{"epoch":26139517,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":535.91,"free":3132.34},{"epoch":26139518,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":536.19,"free":3132.06},{"epoch":26139519,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":535.4,"free":3132.85},{"epoch":26139520,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":535.64,"free":3132.62},{"epoch":26139521,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":535.64,"free":3132.62},{"epoch":26139522,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.61,"free":3132.64},{"epoch":26139523,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":535.87,"free":3132.37},{"epoch":26139524,"idl":99.9,"recv":0,"send":0,"writ":0.43,"used":535.72,"free":3132.52},{"epoch":26139525,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":534.81,"free":3133.45},{"epoch":26139526,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":534.78,"free":3133.48},{"epoch":26139527,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":534.78,"free":3133.48},{"epoch":26139528,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":534.77,"free":3133.48},{"epoch":26139529,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":535.61,"free":3132.63},{"epoch":26139530,"idl":99.85,"recv":0,"send":0,"writ":0.26,"used":535.48,"free":3132.78},{"epoch":26139531,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":535.46,"free":3132.8},{"epoch":26139532,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":535.45,"free":3132.8},{"epoch":26139533,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":535.42,"free":3132.83},{"epoch":26139534,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":536.09,"free":3132.16},{"epoch":26139535,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":534.71,"free":3133.55},{"epoch":26139536,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":534.65,"free":3133.6},{"epoch":26139537,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":534.65,"free":3133.6},{"epoch":26139538,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":534.65,"free":3133.6},{"epoch":26139539,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":535.63,"free":3132.61},{"epoch":26139540,"idl":99.78,"recv":0,"send":0,"writ":0.26,"used":534.41,"free":3133.85},{"epoch":26139541,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":534.53,"free":3133.72},{"epoch":26139542,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":534.53,"free":3133.72},{"epoch":26139543,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":534.52,"free":3133.72},{"epoch":26139544,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":535.48,"free":3132.76},{"epoch":26139545,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":535.8,"free":3132.46},{"epoch":26139546,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":535.73,"free":3132.52},{"epoch":26139547,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":535.72,"free":3132.54},{"epoch":26139548,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":535.69,"free":3132.55},{"epoch":26139549,"idl":99.66,"recv":0,"send":0,"writ":0.67,"used":536.13,"free":3132.09},{"epoch":26139550,"idl":99.86,"recv":0,"send":0,"writ":0.37,"used":535.7,"free":3132.53},{"epoch":26139551,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":535.67,"free":3132.55},{"epoch":26139552,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":535.67,"free":3132.55},{"epoch":26139553,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":535.65,"free":3132.57},{"epoch":26139554,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":536.16,"free":3132.08},{"epoch":26139555,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":535.88,"free":3132.37},{"epoch":26139556,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":535.89,"free":3132.36},{"epoch":26139557,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":535.62,"free":3132.62},{"epoch":26139558,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":535.61,"free":3132.63},{"epoch":26139559,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":535.78,"free":3132.45},{"epoch":26139560,"idl":99.71,"recv":0,"send":0,"writ":0.66,"used":536.55,"free":3131.7},{"epoch":26139561,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":536.05,"free":3132.2},{"epoch":26139562,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":536.04,"free":3132.2},{"epoch":26139563,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":536.01,"free":3132.23},{"epoch":26139564,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":536,"free":3132.23},{"epoch":26139565,"idl":98.42,"recv":0,"send":0,"writ":15.83,"used":539.07,"free":3129.79},{"epoch":26139566,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":535.75,"free":3132.54},{"epoch":26139567,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":535.74,"free":3132.54},{"epoch":26139568,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":535.71,"free":3132.57},{"epoch":26139569,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":535.7,"free":3132.57},{"epoch":26139570,"idl":99.73,"recv":0,"send":0,"writ":0.65,"used":536.3,"free":3131.99},{"epoch":26139571,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.93,"free":3132.36},{"epoch":26139572,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":535.93,"free":3132.36},{"epoch":26139573,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.9,"free":3132.4},{"epoch":26139574,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":535.89,"free":3132.4},{"epoch":26139575,"idl":99.72,"recv":0,"send":0,"writ":0.72,"used":536.15,"free":3132.16},{"epoch":26139576,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":535.81,"free":3132.49},{"epoch":26139577,"idl":99.92,"recv":0.01,"send":0.02,"writ":0.13,"used":535.79,"free":3132.51},{"epoch":26139578,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":535.65,"free":3132.64},{"epoch":26139579,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":536.1,"free":3132.17},{"epoch":26139580,"idl":99.73,"recv":0,"send":0,"writ":0.7,"used":536.28,"free":3132.01},{"epoch":26139581,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.81,"free":3132.48},{"epoch":26139582,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":535.78,"free":3132.5},{"epoch":26139583,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":535.73,"free":3132.54},{"epoch":26139584,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":535.5,"free":3132.77},{"epoch":26139585,"idl":99.64,"recv":0,"send":0,"writ":0.53,"used":536.63,"free":3131.66},{"epoch":26139586,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":535.99,"free":3132.29},{"epoch":26139587,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":535.97,"free":3132.31},{"epoch":26139588,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":535.95,"free":3132.32},{"epoch":26139589,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":535.94,"free":3132.33},{"epoch":26139590,"idl":95.08,"recv":0,"send":0,"writ":9.21,"used":545.91,"free":3119.54},{"epoch":26139591,"idl":97.2,"recv":0,"send":0,"writ":113.49,"used":544.62,"free":3139.34},{"epoch":26139592,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":538.6,"free":3151.32},{"epoch":26139593,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":538.59,"free":3151.32},{"epoch":26139594,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":538.59,"free":3151.32},{"epoch":26139595,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":538.8,"free":3151.13},{"epoch":26139596,"idl":99.92,"recv":0,"send":0,"writ":0.32,"used":536.36,"free":3153.6},{"epoch":26139597,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":536.07,"free":3153.89},{"epoch":26139598,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":536.06,"free":3153.89},{"epoch":26139599,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":536.03,"free":3153.92},{"epoch":26139600,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":535.34,"free":3154.63},{"epoch":26139601,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":536.82,"free":3153.15},{"epoch":26139602,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":536.5,"free":3153.46},{"epoch":26139603,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":536.49,"free":3153.46},{"epoch":26139604,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":536.47,"free":3153.48},{"epoch":26139605,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":536,"free":3153.97},{"epoch":26139606,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":536.14,"free":3153.83},{"epoch":26139607,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":535.72,"free":3154.24},{"epoch":26139608,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":535.7,"free":3154.26},{"epoch":26139609,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":536.18,"free":3153.79},{"epoch":26139610,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":536.2,"free":3153.78},{"epoch":26139611,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":536.69,"free":3153.28},{"epoch":26139612,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":535.92,"free":3154.05},{"epoch":26139613,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":536.04,"free":3153.92},{"epoch":26139614,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":536.07,"free":3153.91},{"epoch":26139615,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":536.3,"free":3153.7},{"epoch":26139616,"idl":99.76,"recv":0,"send":0,"writ":0.6,"used":536.15,"free":3153.84},{"epoch":26139617,"idl":99.91,"recv":0,"send":0,"writ":0.22,"used":535.06,"free":3154.93},{"epoch":26139618,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":535.03,"free":3154.96},{"epoch":26139619,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.02,"free":3154.96},{"epoch":26139620,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":535.51,"free":3154.49},{"epoch":26139621,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":535.98,"free":3154.01},{"epoch":26139622,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":535.98,"free":3154.01},{"epoch":26139623,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":535.95,"free":3154.05},{"epoch":26139624,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":535.95,"free":3154.05},{"epoch":26139625,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":536.21,"free":3153.8},{"epoch":26139626,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":536.39,"free":3153.62},{"epoch":26139627,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":535.67,"free":3154.33},{"epoch":26139628,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":535.67,"free":3154.33},{"epoch":26139629,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":535.64,"free":3154.36},{"epoch":26139630,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":535.81,"free":3154.21},{"epoch":26139631,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":536.23,"free":3153.78},{"epoch":26139632,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":536.29,"free":3153.71},{"epoch":26139633,"idl":98.12,"recv":0,"send":0,"writ":0.15,"used":536.28,"free":3153.71},{"epoch":26139634,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":536.25,"free":3153.74},{"epoch":26139635,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":535.79,"free":3154.22},{"epoch":26139636,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":535.77,"free":3154.24},{"epoch":26139637,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":536.57,"free":3153.43},{"epoch":26139638,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":536.22,"free":3153.78},{"epoch":26139639,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":536.2,"free":3153.77},{"epoch":26139640,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":536.5,"free":3153.49},{"epoch":26139641,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":536.4,"free":3153.58},{"epoch":26139642,"idl":99.79,"recv":0,"send":0,"writ":0.62,"used":536.56,"free":3153.42},{"epoch":26139643,"idl":99.89,"recv":0,"send":0,"writ":0.23,"used":536.11,"free":3153.86},{"epoch":26139644,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":535.86,"free":3154.11},{"epoch":26139645,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":535.32,"free":3154.67},{"epoch":26139646,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":535.24,"free":3154.74},{"epoch":26139647,"idl":99.78,"recv":0,"send":0,"writ":0.62,"used":536.54,"free":3153.44},{"epoch":26139648,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":536.43,"free":3153.55},{"epoch":26139649,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":536.42,"free":3153.55},{"epoch":26139650,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":536.66,"free":3153.32},{"epoch":26139651,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":536.64,"free":3153.34},{"epoch":26139652,"idl":99.8,"recv":0,"send":0,"writ":0.51,"used":536.58,"free":3153.4},{"epoch":26139653,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":535.38,"free":3154.59},{"epoch":26139654,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":535.36,"free":3154.6},{"epoch":26139655,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":536.21,"free":3153.77},{"epoch":26139656,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":536.29,"free":3153.69},{"epoch":26139657,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":536.29,"free":3153.69},{"epoch":26139658,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":535.03,"free":3154.94},{"epoch":26139659,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":535,"free":3154.96},{"epoch":26139660,"idl":99.86,"recv":0,"send":0,"writ":0.25,"used":536.23,"free":3153.76},{"epoch":26139661,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":536.24,"free":3153.74},{"epoch":26139662,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":536.59,"free":3153.39},{"epoch":26139663,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":536.21,"free":3153.77},{"epoch":26139664,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":536.2,"free":3153.77},{"epoch":26139665,"idl":99.84,"recv":0,"send":0,"writ":0.26,"used":536.21,"free":3153.77},{"epoch":26139666,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":536.18,"free":3153.8},{"epoch":26139667,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":536.45,"free":3153.53},{"epoch":26139668,"idl":99.93,"recv":0,"send":0,"writ":0.4,"used":535.43,"free":3154.54},{"epoch":26139669,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":535.74,"free":3154.21},{"epoch":26139670,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":535.41,"free":3154.55},{"epoch":26139671,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":535.54,"free":3154.41},{"epoch":26139672,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":535.55,"free":3154.4},{"epoch":26139673,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":536.21,"free":3153.74},{"epoch":26139674,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":535.52,"free":3154.43},{"epoch":26139675,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":534.8,"free":3155.16},{"epoch":26139676,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":534.76,"free":3155.2},{"epoch":26139677,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":535,"free":3154.96},{"epoch":26139678,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":536.26,"free":3153.68},{"epoch":26139679,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":535.95,"free":3153.99},{"epoch":26139680,"idl":99.82,"recv":0,"send":0,"writ":0.26,"used":536.05,"free":3153.91},{"epoch":26139681,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":535.95,"free":3154.01},{"epoch":26139682,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":535.92,"free":3154.03},{"epoch":26139683,"idl":99.43,"recv":0,"send":0,"writ":0.63,"used":536.27,"free":3153.68},{"epoch":26139684,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":535.64,"free":3154.3},{"epoch":26139685,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":535.42,"free":3154.54},{"epoch":26139686,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":535.4,"free":3154.55},{"epoch":26139687,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":535.41,"free":3154.55},{"epoch":26139688,"idl":99.75,"recv":0,"send":0,"writ":0.64,"used":536.1,"free":3153.84},{"epoch":26139689,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":536.04,"free":3153.92},{"epoch":26139690,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":534.85,"free":3155.13},{"epoch":26139691,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":534.79,"free":3155.18},{"epoch":26139692,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":534.79,"free":3155.19},{"epoch":26139693,"idl":99.78,"recv":0,"send":0,"writ":0.44,"used":535.52,"free":3154.44},{"epoch":26139694,"idl":99.92,"recv":0,"send":0,"writ":0.32,"used":535.73,"free":3154.23},{"epoch":26139695,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":535.72,"free":3154.26},{"epoch":26139696,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":535.71,"free":3154.26},{"epoch":26139697,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":535.69,"free":3154.28},{"epoch":26139698,"idl":99.77,"recv":0,"send":0,"writ":0.51,"used":536.04,"free":3153.93},{"epoch":26139699,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":535.66,"free":3154.28},{"epoch":26139700,"idl":99.82,"recv":0,"send":0,"writ":0.26,"used":535.65,"free":3154.31},{"epoch":26139701,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.64,"free":3154.31},{"epoch":26139702,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":535.62,"free":3154.32},{"epoch":26139703,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":536.48,"free":3153.46},{"epoch":26139704,"idl":99.93,"recv":0,"send":0,"writ":0.39,"used":536.03,"free":3153.91},{"epoch":26139705,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":536.05,"free":3153.91},{"epoch":26139706,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":536.02,"free":3153.93},{"epoch":26139707,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":536.01,"free":3153.94},{"epoch":26139708,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":536.01,"free":3153.94},{"epoch":26139709,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":536.4,"free":3153.54},{"epoch":26139710,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":535.74,"free":3154.21},{"epoch":26139711,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":535.73,"free":3154.21},{"epoch":26139712,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":535.73,"free":3154.21},{"epoch":26139713,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":535.7,"free":3154.24},{"epoch":26139714,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":535.98,"free":3153.95},{"epoch":26139715,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":536.17,"free":3153.78},{"epoch":26139716,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":536.16,"free":3153.79},{"epoch":26139717,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":536.12,"free":3153.82},{"epoch":26139718,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":536.12,"free":3153.82},{"epoch":26139719,"idl":99.79,"recv":0,"send":0,"writ":0.62,"used":535.96,"free":3153.97},{"epoch":26139720,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":535.14,"free":3154.8},{"epoch":26139721,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":535.04,"free":3154.9},{"epoch":26139722,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":535.01,"free":3154.92},{"epoch":26139723,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":535.01,"free":3154.92},{"epoch":26139724,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":535.65,"free":3154.28},{"epoch":26139725,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":535.49,"free":3154.45},{"epoch":26139726,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":535.48,"free":3154.46},{"epoch":26139727,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":535.45,"free":3154.48},{"epoch":26139728,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":535.44,"free":3154.49},{"epoch":26139729,"idl":99.6,"recv":0,"send":0,"writ":0.68,"used":535.6,"free":3154.31},{"epoch":26139730,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":534.69,"free":3155.23},{"epoch":26139731,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":534.67,"free":3155.25},{"epoch":26139732,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":534.67,"free":3155.25},{"epoch":26139733,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":534.64,"free":3155.27},{"epoch":26139734,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":535.21,"free":3154.7},{"epoch":26139735,"idl":98.47,"recv":0,"send":0,"writ":0.41,"used":536.12,"free":3153.81},{"epoch":26139736,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":536.09,"free":3153.83},{"epoch":26139737,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":535.95,"free":3153.97},{"epoch":26139738,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":536.01,"free":3153.9},{"epoch":26139739,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":536.35,"free":3153.55},{"epoch":26139740,"idl":99.88,"recv":0,"send":0,"writ":0.5,"used":536.25,"free":3153.68},{"epoch":26139741,"idl":99.83,"recv":0,"send":0,"writ":0.12,"used":536.23,"free":3153.69},{"epoch":26139742,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":536.21,"free":3153.71},{"epoch":26139743,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":536.18,"free":3153.73},{"epoch":26139744,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":536.16,"free":3153.74},{"epoch":26139745,"idl":99.7,"recv":0,"send":0,"writ":0.68,"used":536.89,"free":3153.03},{"epoch":26139746,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":536.15,"free":3153.77},{"epoch":26139747,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":536.14,"free":3153.77},{"epoch":26139748,"idl":99.83,"recv":0,"send":0.01,"writ":0.18,"used":536.09,"free":3153.82},{"epoch":26139749,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":536.11,"free":3153.79},{"epoch":26139750,"idl":94.71,"recv":0.3,"send":0.01,"writ":259.44,"used":549.88,"free":3140.17},{"epoch":26139751,"idl":99.83,"recv":0,"send":0,"writ":0.24,"used":537.47,"free":3152.46},{"epoch":26139752,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":537.45,"free":3152.48},{"epoch":26139753,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":537.44,"free":3152.48},{"epoch":26139754,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":537.41,"free":3152.51},{"epoch":26139755,"idl":99.69,"recv":0,"send":0,"writ":0.74,"used":537.2,"free":3152.76},{"epoch":26139756,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":536.02,"free":3153.96},{"epoch":26139757,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":535.99,"free":3153.98},{"epoch":26139758,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":535.99,"free":3153.98},{"epoch":26139759,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":535.72,"free":3154.23},{"epoch":26139760,"idl":99.61,"recv":0,"send":0,"writ":0.54,"used":536.47,"free":3153.5},{"epoch":26139761,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":536.21,"free":3153.75},{"epoch":26139762,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":536.18,"free":3153.78},{"epoch":26139763,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":536.15,"free":3153.81},{"epoch":26139764,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":535.68,"free":3154.28},{"epoch":26139765,"idl":99.68,"recv":0,"send":0,"writ":0.67,"used":536.17,"free":3153.8},{"epoch":26139766,"idl":99.84,"recv":0,"send":0,"writ":0.22,"used":534.58,"free":3155.38},{"epoch":26139767,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":534.58,"free":3155.38},{"epoch":26139768,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":534.57,"free":3155.38},{"epoch":26139769,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":534.55,"free":3155.4},{"epoch":26139770,"idl":99.65,"recv":0,"send":0,"writ":0.71,"used":536.69,"free":3153.27},{"epoch":26139771,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":536.26,"free":3153.69},{"epoch":26139772,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":536.23,"free":3153.72},{"epoch":26139773,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":536.22,"free":3153.72},{"epoch":26139774,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":536.22,"free":3153.72},{"epoch":26139775,"idl":99.56,"recv":0,"send":0.01,"writ":0.48,"used":535.95,"free":3154.01},{"epoch":26139776,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":535.92,"free":3154.03},{"epoch":26139777,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":535.92,"free":3154.03},{"epoch":26139778,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":535.89,"free":3154.06},{"epoch":26139779,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":535.94,"free":3154.01},{"epoch":26139780,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":536.57,"free":3153.39},{"epoch":26139781,"idl":99.66,"recv":0,"send":0,"writ":0.59,"used":536.46,"free":3153.5},{"epoch":26139782,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":536.04,"free":3153.91},{"epoch":26139783,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":536.04,"free":3153.91},{"epoch":26139784,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":536.01,"free":3153.93},{"epoch":26139785,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":536.02,"free":3153.94},{"epoch":26139786,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":535.52,"free":3154.44},{"epoch":26139787,"idl":99.85,"recv":0,"send":0.01,"writ":0.17,"used":534.77,"free":3155.19},{"epoch":26139788,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":534.75,"free":3155.2},{"epoch":26139789,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":536.44,"free":3153.49},{"epoch":26139790,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":536.2,"free":3153.74},{"epoch":26139791,"idl":99.71,"recv":0,"send":0,"writ":0.4,"used":536.68,"free":3153.26},{"epoch":26139792,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":536.4,"free":3153.53},{"epoch":26139793,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":536.4,"free":3153.53},{"epoch":26139794,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":536.38,"free":3153.55},{"epoch":26139795,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":535.9,"free":3154.04},{"epoch":26139796,"idl":97.99,"recv":0,"send":0,"writ":0.58,"used":536.57,"free":3153.37},{"epoch":26139797,"idl":99.79,"recv":0.01,"send":0.75,"writ":0.26,"used":536.36,"free":3153.57},{"epoch":26139798,"idl":99.82,"recv":0,"send":0.27,"writ":0.14,"used":536.17,"free":3153.75},{"epoch":26139799,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":536.14,"free":3153.78},{"epoch":26139800,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":535.89,"free":3154.04},{"epoch":26139801,"idl":99.65,"recv":0,"send":0,"writ":0.6,"used":536.13,"free":3153.79},{"epoch":26139802,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":535.66,"free":3154.26},{"epoch":26139803,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":535.81,"free":3154.13},{"epoch":26139804,"idl":99.85,"recv":0.01,"send":0.91,"writ":0.21,"used":535.68,"free":3154.24},{"epoch":26139805,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":536.9,"free":3153.04},{"epoch":26139806,"idl":99.71,"recv":0,"send":0,"writ":0.53,"used":537.19,"free":3152.75},{"epoch":26139807,"idl":99.84,"recv":0,"send":0,"writ":0.25,"used":536.63,"free":3153.3},{"epoch":26139808,"idl":99.83,"recv":0.02,"send":0.34,"writ":0.24,"used":536.65,"free":3153.27},{"epoch":26139809,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":536.65,"free":3153.27},{"epoch":26139810,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":536.72,"free":3153.22},{"epoch":26139811,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":537,"free":3152.93},{"epoch":26139812,"idl":98.96,"recv":0,"send":0,"writ":0.4,"used":536.14,"free":3153.79},{"epoch":26139813,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":536.13,"free":3153.79},{"epoch":26139814,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":536.1,"free":3153.82},{"epoch":26139815,"idl":99.71,"recv":0,"send":0,"writ":0.28,"used":536.59,"free":3153.35},{"epoch":26139816,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":536.63,"free":3153.31},{"epoch":26139817,"idl":99.7,"recv":0,"send":0,"writ":0.61,"used":536.72,"free":3153.21},{"epoch":26139818,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":535.79,"free":3154.13},{"epoch":26139819,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":536.81,"free":3153.09},{"epoch":26139820,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":534.63,"free":3155.29},{"epoch":26139821,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":534.55,"free":3155.37},{"epoch":26139822,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":535.71,"free":3154.2},{"epoch":26139823,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":535.26,"free":3154.64},{"epoch":26139824,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":535.73,"free":3154.18},{"epoch":26139825,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":535.97,"free":3153.97},{"epoch":26139826,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":535.96,"free":3153.97},{"epoch":26139827,"idl":99.66,"recv":0,"send":0,"writ":0.55,"used":536.07,"free":3153.86},{"epoch":26139828,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":535.18,"free":3154.74},{"epoch":26139829,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":535.16,"free":3154.76},{"epoch":26139830,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":534.68,"free":3155.25},{"epoch":26139831,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":534.8,"free":3155.14},{"epoch":26139832,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":535.58,"free":3154.35},{"epoch":26139833,"idl":99.79,"recv":0,"send":0,"writ":0.23,"used":535.55,"free":3154.38},{"epoch":26139834,"idl":99.83,"recv":0.05,"send":1.27,"writ":0.14,"used":535.52,"free":3154.4},{"epoch":26139835,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":536.04,"free":3153.88},{"epoch":26139836,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":536.05,"free":3153.88},{"epoch":26139837,"idl":99.7,"recv":0,"send":0,"writ":0.4,"used":536.37,"free":3153.55},{"epoch":26139838,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":536.01,"free":3153.91},{"epoch":26139839,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":536,"free":3153.91},{"epoch":26139840,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":536.23,"free":3153.69},{"epoch":26139841,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":536.23,"free":3153.69},{"epoch":26139842,"idl":99.71,"recv":0.02,"send":1.53,"writ":0.55,"used":536.63,"free":3153.28},{"epoch":26139843,"idl":99.84,"recv":0,"send":0.26,"writ":0.25,"used":536.18,"free":3153.73},{"epoch":26139844,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":536.15,"free":3153.75},{"epoch":26139845,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":536.14,"free":3153.78},{"epoch":26139846,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":536.13,"free":3153.79},{"epoch":26139847,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":536.44,"free":3153.47},{"epoch":26139848,"idl":99.83,"recv":0,"send":0,"writ":0.43,"used":534.86,"free":3155.05},{"epoch":26139849,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":535.83,"free":3154.05},{"epoch":26139850,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":535.05,"free":3154.85},{"epoch":26139851,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":535.02,"free":3154.88},{"epoch":26139852,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":535.01,"free":3154.88},{"epoch":26139853,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":536.76,"free":3153.12},{"epoch":26139854,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":536.2,"free":3153.68},{"epoch":26139855,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":536.2,"free":3153.7},{"epoch":26139856,"idl":99.14,"recv":0,"send":0,"writ":0.16,"used":536.19,"free":3153.71},{"epoch":26139857,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":535.93,"free":3153.96},{"epoch":26139858,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":536.46,"free":3153.42},{"epoch":26139859,"idl":99.82,"recv":0,"send":0.02,"writ":0.16,"used":535.88,"free":3154},{"epoch":26139860,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":536.18,"free":3153.72},{"epoch":26139861,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":536.09,"free":3153.8},{"epoch":26139862,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":536.23,"free":3153.67},{"epoch":26139863,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":536.71,"free":3153.19},{"epoch":26139864,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":536.27,"free":3153.63},{"epoch":26139865,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":536.02,"free":3153.89},{"epoch":26139866,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":536,"free":3153.91},{"epoch":26139867,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":536,"free":3153.91},{"epoch":26139868,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":536.09,"free":3153.81},{"epoch":26139869,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":535.22,"free":3154.68},{"epoch":26139870,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":535.47,"free":3154.43},{"epoch":26139871,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":535.45,"free":3154.46},{"epoch":26139872,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":535.44,"free":3154.46},{"epoch":26139873,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":535.78,"free":3154.11},{"epoch":26139874,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":535.42,"free":3154.48},{"epoch":26139875,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":536.14,"free":3153.77},{"epoch":26139876,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":536.15,"free":3153.75},{"epoch":26139877,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":536.12,"free":3153.78},{"epoch":26139878,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":536.5,"free":3153.4},{"epoch":26139879,"idl":99.78,"recv":0,"send":0,"writ":0.45,"used":536.35,"free":3153.52},{"epoch":26139880,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":535.96,"free":3153.93},{"epoch":26139881,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":536.02,"free":3153.86},{"epoch":26139882,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":536.02,"free":3153.86},{"epoch":26139883,"idl":99.75,"recv":0.02,"send":0.06,"writ":0.25,"used":539.25,"free":3150.54},{"epoch":26139884,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":544.53,"free":3145.17},{"epoch":26139885,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":543.94,"free":3145.78},{"epoch":26139886,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":543.9,"free":3145.81},{"epoch":26139887,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":543.86,"free":3145.85},{"epoch":26139888,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":543.84,"free":3145.86},{"epoch":26139889,"idl":99.61,"recv":0,"send":0,"writ":0.6,"used":545.21,"free":3144.49},{"epoch":26139890,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":544.33,"free":3145.39},{"epoch":26139891,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":544.37,"free":3145.35},{"epoch":26139892,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":544.45,"free":3145.26},{"epoch":26139893,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":544.42,"free":3145.28},{"epoch":26139894,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":544.59,"free":3145.11},{"epoch":26139895,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":544.39,"free":3145.33},{"epoch":26139896,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":544.36,"free":3145.37},{"epoch":26139897,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":544.33,"free":3145.4},{"epoch":26139898,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":544.3,"free":3145.42},{"epoch":26139899,"idl":99.73,"recv":0,"send":0,"writ":0.45,"used":545.06,"free":3144.65},{"epoch":26139900,"idl":99.73,"recv":0,"send":0,"writ":0.45,"used":544.46,"free":3145.27},{"epoch":26139901,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":544.43,"free":3145.3},{"epoch":26139902,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":544.4,"free":3145.32},{"epoch":26139903,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":544.38,"free":3145.34},{"epoch":26139904,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":545.11,"free":3144.61},{"epoch":26139905,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":544.36,"free":3145.38},{"epoch":26139906,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":544.33,"free":3145.4},{"epoch":26139907,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":544.31,"free":3145.42},{"epoch":26139908,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":544.28,"free":3145.44},{"epoch":26139909,"idl":99.59,"recv":0,"send":0,"writ":0.59,"used":544.94,"free":3144.76},{"epoch":26139910,"idl":99.76,"recv":0,"send":0,"writ":0.45,"used":544.42,"free":3145.29},{"epoch":26139911,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":544.39,"free":3145.32},{"epoch":26139912,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":544.36,"free":3145.34},{"epoch":26139913,"idl":99.83,"recv":0.05,"send":1.88,"writ":0.27,"used":544.4,"free":3145.29},{"epoch":26139914,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":544.42,"free":3145.29},{"epoch":26139915,"idl":99.57,"recv":0.09,"send":3.51,"writ":0.77,"used":543.71,"free":3146.01},{"epoch":26139916,"idl":99.87,"recv":0,"send":0.17,"writ":0.23,"used":543.06,"free":3146.64},{"epoch":26139917,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":542.78,"free":3146.92},{"epoch":26139918,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":542.84,"free":3146.85},{"epoch":26139919,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":542.94,"free":3146.75},{"epoch":26139920,"idl":99.63,"recv":0,"send":0,"writ":0.75,"used":544.81,"free":3144.89},{"epoch":26139921,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":544.63,"free":3145.07},{"epoch":26139922,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":544.61,"free":3145.09},{"epoch":26139923,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":544.59,"free":3145.1},{"epoch":26139924,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":544.57,"free":3145.12},{"epoch":26139925,"idl":99.73,"recv":0,"send":0,"writ":0.75,"used":544.76,"free":3144.94},{"epoch":26139926,"idl":99.93,"recv":0,"send":0,"writ":0.12,"used":544.3,"free":3145.41},{"epoch":26139927,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":544.32,"free":3145.37},{"epoch":26139928,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":544.42,"free":3145.27},{"epoch":26139929,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":544.39,"free":3145.29},{"epoch":26139930,"idl":99.76,"recv":0,"send":0,"writ":0.68,"used":544.99,"free":3144.71},{"epoch":26139931,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":544.37,"free":3145.33},{"epoch":26139932,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":544.35,"free":3145.35},{"epoch":26139933,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":544.33,"free":3145.36},{"epoch":26139934,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":544.31,"free":3145.38},{"epoch":26139935,"idl":99.7,"recv":0,"send":0,"writ":0.7,"used":544.16,"free":3145.55},{"epoch":26139936,"idl":99.51,"recv":0,"send":0,"writ":0.15,"used":544.27,"free":3145.43},{"epoch":26139937,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":544.27,"free":3145.43},{"epoch":26139938,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":544.33,"free":3145.36},{"epoch":26139939,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":544.66,"free":3145},{"epoch":26139940,"idl":99.65,"recv":0,"send":0,"writ":0.7,"used":545,"free":3144.68},{"epoch":26139941,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":544.62,"free":3145.06},{"epoch":26139942,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":544.59,"free":3145.08},{"epoch":26139943,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.16,"used":544.56,"free":3145.11},{"epoch":26139944,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":544.28,"free":3145.38},{"epoch":26139945,"idl":99.7,"recv":0,"send":0,"writ":0.85,"used":545.47,"free":3144.21},{"epoch":26139946,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":544.84,"free":3144.84},{"epoch":26139947,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":544.91,"free":3144.77},{"epoch":26139948,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":544.88,"free":3144.79},{"epoch":26139949,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":544.86,"free":3144.8},{"epoch":26139950,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":544.64,"free":3145.04},{"epoch":26139951,"idl":99.76,"recv":0,"send":0,"writ":0.63,"used":544.31,"free":3145.4},{"epoch":26139952,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":543.8,"free":3145.91},{"epoch":26139953,"idl":99.91,"recv":0,"send":0.01,"writ":0.16,"used":543.79,"free":3145.92},{"epoch":26139954,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":543.92,"free":3145.78},{"epoch":26139955,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":543.93,"free":3145.79},{"epoch":26139956,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":544.83,"free":3144.89},{"epoch":26139957,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":544.6,"free":3145.11},{"epoch":26139958,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":544.58,"free":3145.13},{"epoch":26139959,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":544.56,"free":3145.14},{"epoch":26139960,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":545.03,"free":3144.69},{"epoch":26139961,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":545.05,"free":3144.66},{"epoch":26139962,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":544.5,"free":3145.2},{"epoch":26139963,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":544.55,"free":3145.15},{"epoch":26139964,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":544.64,"free":3145.06},{"epoch":26139965,"idl":99.86,"recv":0,"send":0,"writ":0.37,"used":544.64,"free":3145.07},{"epoch":26139966,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":545.12,"free":3144.58},{"epoch":26139967,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":544.84,"free":3144.86},{"epoch":26139968,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":544.18,"free":3145.52},{"epoch":26139969,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":543.79,"free":3145.88},{"epoch":26139970,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":543.79,"free":3145.9},{"epoch":26139971,"idl":99.78,"recv":0,"send":0,"writ":0.44,"used":544.23,"free":3145.45},{"epoch":26139972,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":543.97,"free":3145.7},{"epoch":26139973,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":544.1,"free":3145.58},{"epoch":26139974,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":544.12,"free":3145.55},{"epoch":26139975,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":544.12,"free":3145.57},{"epoch":26139976,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":544.46,"free":3145.22},{"epoch":26139977,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":543.83,"free":3145.85},{"epoch":26139978,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":543.8,"free":3145.87},{"epoch":26139979,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":543.78,"free":3145.89},{"epoch":26139980,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":543.78,"free":3145.9},{"epoch":26139981,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":544.51,"free":3145.16},{"epoch":26139982,"idl":99.93,"recv":0,"send":0,"writ":0.32,"used":544.23,"free":3145.44},{"epoch":26139983,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":544.29,"free":3145.37},{"epoch":26139984,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":544.39,"free":3145.27},{"epoch":26139985,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":542.94,"free":3146.74},{"epoch":26139986,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":542.88,"free":3146.79},{"epoch":26139987,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":543.04,"free":3146.63},{"epoch":26139988,"idl":99.95,"recv":0.01,"send":0.14,"writ":0.17,"used":542.36,"free":3147.3},{"epoch":26139989,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":542.39,"free":3147.27},{"epoch":26139990,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":543.44,"free":3146.23},{"epoch":26139991,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":543.34,"free":3146.33},{"epoch":26139992,"idl":99.8,"recv":0.01,"send":0,"writ":0.61,"used":544.08,"free":3145.58},{"epoch":26139993,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":543.55,"free":3146.11},{"epoch":26139994,"idl":99.94,"recv":0.01,"send":0,"writ":0.16,"used":543.54,"free":3146.12},{"epoch":26139995,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":544.05,"free":3145.62},{"epoch":26139996,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":544.12,"free":3145.54},{"epoch":26139997,"idl":96.27,"recv":0,"send":0,"writ":0.63,"used":544.62,"free":3145.03},{"epoch":26139998,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":544.07,"free":3145.58},{"epoch":26139999,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":544.52,"free":3145.1},{"epoch":26140000,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":544.07,"free":3145.58},{"epoch":26140001,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":544.03,"free":3145.62},{"epoch":26140002,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":544.37,"free":3145.27},{"epoch":26140003,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.18,"used":543.98,"free":3145.65},{"epoch":26140004,"idl":99.92,"recv":0,"send":0,"writ":0.23,"used":543.48,"free":3146.15},{"epoch":26140005,"idl":99.87,"recv":0,"send":0,"writ":0.36,"used":543.86,"free":3145.78},{"epoch":26140006,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":543.87,"free":3145.77},{"epoch":26140007,"idl":99.82,"recv":0,"send":0,"writ":0.63,"used":544.3,"free":3145.35},{"epoch":26140008,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":544.55,"free":3145.09},{"epoch":26140009,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":544.53,"free":3145.11},{"epoch":26140010,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":544.28,"free":3145.37},{"epoch":26140011,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":544.34,"free":3145.31},{"epoch":26140012,"idl":99.79,"recv":0,"send":0,"writ":0.63,"used":544.65,"free":3145},{"epoch":26140013,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":544.27,"free":3145.37},{"epoch":26140014,"idl":99.91,"recv":0.04,"send":1.41,"writ":0.34,"used":544.26,"free":3145.38},{"epoch":26140015,"idl":99.88,"recv":0,"send":0.01,"writ":0.39,"used":544.51,"free":3145.13},{"epoch":26140016,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":544.61,"free":3145.05},{"epoch":26140017,"idl":99.79,"recv":0.01,"send":0.16,"writ":0.54,"used":544.78,"free":3144.87},{"epoch":26140018,"idl":99.93,"recv":0.01,"send":0.22,"writ":0.42,"used":543.49,"free":3146.15},{"epoch":26140019,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.38,"used":546.46,"free":3143.06},{"epoch":26140020,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":547.99,"free":3141.51},{"epoch":26140021,"idl":99.81,"recv":0.08,"send":0.32,"writ":0.38,"used":548.42,"free":3141.07},{"epoch":26140022,"idl":99.54,"recv":0.62,"send":13.81,"writ":0.51,"used":549.7,"free":3139.74},{"epoch":26140023,"idl":99.16,"recv":2.19,"send":71.58,"writ":1.41,"used":551.52,"free":3137.91},{"epoch":26140024,"idl":99.49,"recv":0.9,"send":23.59,"writ":0.94,"used":551.19,"free":3138.24},{"epoch":26140025,"idl":99.3,"recv":1.71,"send":57.3,"writ":0.68,"used":551.24,"free":3138.2},{"epoch":26140026,"idl":99.89,"recv":0.01,"send":0.03,"writ":0.25,"used":551.2,"free":3138.23},{"epoch":26140027,"idl":99.9,"recv":0.02,"send":0.03,"writ":0.23,"used":551.17,"free":3138.27},{"epoch":26140028,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":551.2,"free":3138.22},{"epoch":26140029,"idl":99.82,"recv":0.02,"send":0.03,"writ":0.41,"used":551.13,"free":3138.27},{"epoch":26140030,"idl":99.83,"recv":0.03,"send":0.05,"writ":0.54,"used":551.18,"free":3138.26},{"epoch":26140031,"idl":99.93,"recv":0,"send":0.01,"writ":0.21,"used":550.87,"free":3138.57},{"epoch":26140032,"idl":99.92,"recv":0.02,"send":0.02,"writ":0.24,"used":550.92,"free":3138.53},{"epoch":26140033,"idl":99.77,"recv":0.03,"send":0.04,"writ":0.7,"used":551.93,"free":3137.52},{"epoch":26140034,"idl":99.9,"recv":0.1,"send":0.22,"writ":0.45,"used":551.43,"free":3138.02},{"epoch":26140035,"idl":80.88,"recv":0.02,"send":0.06,"writ":4.58,"used":753.8,"free":2935.66},{"epoch":26140036,"idl":99.85,"recv":0.01,"send":0.2,"writ":0.51,"used":1064.21,"free":2625.08},{"epoch":26140037,"idl":99.78,"recv":0,"send":0.01,"writ":0.22,"used":560.63,"free":3128.65},{"epoch":26140038,"idl":99.76,"recv":0.06,"send":1.13,"writ":0.6,"used":551.75,"free":3137.52},{"epoch":26140039,"idl":99.9,"recv":0,"send":0.01,"writ":0.21,"used":551.47,"free":3137.78},{"epoch":26140040,"idl":99.82,"recv":0,"send":0,"writ":0.37,"used":551.77,"free":3137.5},{"epoch":26140041,"idl":99.92,"recv":0.03,"send":1.28,"writ":0.31,"used":551.65,"free":3137.62},{"epoch":26140042,"idl":99.9,"recv":0,"send":0.02,"writ":0.22,"used":551.62,"free":3137.64},{"epoch":26140043,"idl":99.78,"recv":0.02,"send":0.72,"writ":0.68,"used":551.6,"free":3137.64},{"epoch":26140044,"idl":99.9,"recv":0.01,"send":0.03,"writ":0.19,"used":549.89,"free":3139.35},{"epoch":26140045,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":550.7,"free":3138.56},{"epoch":26140046,"idl":99.9,"recv":0,"send":0.02,"writ":0.2,"used":550.75,"free":3138.51},{"epoch":26140047,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":550.69,"free":3138.56},{"epoch":26140048,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":551.03,"free":3138.22},{"epoch":26140049,"idl":99.92,"recv":0.01,"send":0,"writ":0.3,"used":550.64,"free":3138.61},{"epoch":26140050,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":551.1,"free":3138.16},{"epoch":26140051,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.22,"free":3138.04},{"epoch":26140052,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.2,"used":551.39,"free":3137.86},{"epoch":26140053,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.42,"free":3137.82},{"epoch":26140054,"idl":99.78,"recv":0.1,"send":0.01,"writ":0.7,"used":552.49,"free":3136.76},{"epoch":26140055,"idl":99.88,"recv":0.1,"send":0.01,"writ":0.43,"used":552.19,"free":3137.07},{"epoch":26140056,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":552.14,"free":3137.12},{"epoch":26140057,"idl":99.93,"recv":0.05,"send":0,"writ":0.23,"used":552.22,"free":3137.03},{"epoch":26140058,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.23,"free":3137.02},{"epoch":26140059,"idl":99.7,"recv":0,"send":0,"writ":0.72,"used":552.58,"free":3136.65},{"epoch":26140060,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":551.25,"free":3138},{"epoch":26140061,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.2,"free":3138.04},{"epoch":26140062,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":551.19,"free":3138.05},{"epoch":26140063,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.15,"used":551.27,"free":3137.96},{"epoch":26140064,"idl":99.77,"recv":0,"send":0,"writ":0.64,"used":552.46,"free":3136.8},{"epoch":26140065,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":551.46,"free":3137.82},{"epoch":26140066,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.25,"used":551.57,"free":3137.7},{"epoch":26140067,"idl":99.9,"recv":0.05,"send":0.01,"writ":0.29,"used":551.66,"free":3137.57},{"epoch":26140068,"idl":99.9,"recv":0.01,"send":0.05,"writ":0.21,"used":551.68,"free":3137.55},{"epoch":26140069,"idl":99.81,"recv":0,"send":0,"writ":0.62,"used":552.3,"free":3136.91},{"epoch":26140070,"idl":99.83,"recv":0.05,"send":0,"writ":0.35,"used":552.14,"free":3137.08},{"epoch":26140071,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":552.16,"free":3137.06},{"epoch":26140072,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.13,"free":3137.09},{"epoch":26140073,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.1,"free":3137.11},{"epoch":26140074,"idl":99.82,"recv":0,"send":0,"writ":0.4,"used":552.26,"free":3136.95},{"epoch":26140075,"idl":99.83,"recv":0.05,"send":0,"writ":0.57,"used":550.45,"free":3138.77},{"epoch":26140076,"idl":99.88,"recv":0.05,"send":0,"writ":0.2,"used":550.5,"free":3138.72},{"epoch":26140077,"idl":99.95,"recv":0.05,"send":0,"writ":0.23,"used":550.51,"free":3138.7},{"epoch":26140078,"idl":99.91,"recv":0.05,"send":0.01,"writ":0.22,"used":550.44,"free":3138.76},{"epoch":26140079,"idl":99.77,"recv":0.05,"send":0.01,"writ":0.39,"used":550.93,"free":3138.27},{"epoch":26140080,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":551.4,"free":3137.81},{"epoch":26140081,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.34,"free":3137.86},{"epoch":26140082,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.32,"free":3137.88},{"epoch":26140083,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.48,"free":3137.72},{"epoch":26140084,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":551.89,"free":3137.3},{"epoch":26140085,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":552.45,"free":3136.76},{"epoch":26140086,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.42,"free":3136.78},{"epoch":26140087,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.4,"free":3136.79},{"epoch":26140088,"idl":99.94,"recv":0.01,"send":0,"writ":0.14,"used":552.35,"free":3136.83},{"epoch":26140089,"idl":99.87,"recv":0.01,"send":0,"writ":0.32,"used":552.13,"free":3137.04},{"epoch":26140090,"idl":99.73,"recv":0,"send":0,"writ":0.7,"used":552.23,"free":3136.95},{"epoch":26140091,"idl":99.9,"recv":0.01,"send":0.02,"writ":0.14,"used":551.85,"free":3137.32},{"epoch":26140092,"idl":99.91,"recv":0,"send":0.01,"writ":0.16,"used":551.92,"free":3137.25},{"epoch":26140093,"idl":99.9,"recv":0,"send":0.01,"writ":0.14,"used":551.88,"free":3137.29},{"epoch":26140094,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.83,"free":3137.33},{"epoch":26140095,"idl":99.72,"recv":0.01,"send":0,"writ":0.72,"used":552.94,"free":3136.23},{"epoch":26140096,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.08,"free":3137.09},{"epoch":26140097,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.06,"free":3137.11},{"epoch":26140098,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":552.19,"free":3136.97},{"epoch":26140099,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.18,"free":3136.97},{"epoch":26140100,"idl":99.7,"recv":0,"send":0,"writ":0.68,"used":553.1,"free":3136.08},{"epoch":26140101,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.41,"free":3136.76},{"epoch":26140102,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":552.39,"free":3136.78},{"epoch":26140103,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.36,"free":3136.8},{"epoch":26140104,"idl":99.95,"recv":0.01,"send":0,"writ":0.15,"used":552.36,"free":3136.8},{"epoch":26140105,"idl":99.65,"recv":0.01,"send":0.02,"writ":0.66,"used":552.01,"free":3137.16},{"epoch":26140106,"idl":99.91,"recv":0.01,"send":0.02,"writ":0.2,"used":551.88,"free":3137.29},{"epoch":26140107,"idl":99.93,"recv":0,"send":0.01,"writ":0.16,"used":551.89,"free":3137.28},{"epoch":26140108,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":551.87,"free":3137.29},{"epoch":26140109,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":551.84,"free":3137.32},{"epoch":26140110,"idl":94.91,"recv":0.38,"send":0.01,"writ":78.59,"used":565.76,"free":3123.78},{"epoch":26140111,"idl":99.59,"recv":0,"send":0,"writ":181.71,"used":554.72,"free":3134.34},{"epoch":26140112,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.69,"free":3134.37},{"epoch":26140113,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.66,"free":3134.4},{"epoch":26140114,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.65,"free":3134.41},{"epoch":26140115,"idl":99.73,"recv":0,"send":0,"writ":0.46,"used":554.87,"free":3134.19},{"epoch":26140116,"idl":99.9,"recv":0,"send":0,"writ":0.44,"used":552.68,"free":3136.4},{"epoch":26140117,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.84,"free":3136.23},{"epoch":26140118,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.82,"free":3136.25},{"epoch":26140119,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":552.02,"free":3137.02},{"epoch":26140120,"idl":99.72,"recv":0,"send":0,"writ":0.46,"used":552.14,"free":3136.92},{"epoch":26140121,"idl":99.93,"recv":0,"send":0,"writ":0.36,"used":551.3,"free":3137.79},{"epoch":26140122,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":551.27,"free":3137.82},{"epoch":26140123,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.14,"used":551.23,"free":3137.85},{"epoch":26140124,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":551.5,"free":3137.58},{"epoch":26140125,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":551.62,"free":3137.48},{"epoch":26140126,"idl":99.77,"recv":0,"send":0,"writ":0.72,"used":552.55,"free":3136.54},{"epoch":26140127,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.81,"free":3137.28},{"epoch":26140128,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.77,"free":3137.32},{"epoch":26140129,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":551.74,"free":3137.34},{"epoch":26140130,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":551.49,"free":3137.6},{"epoch":26140131,"idl":99.79,"recv":0,"send":0,"writ":0.73,"used":551.61,"free":3137.48},{"epoch":26140132,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":550.84,"free":3138.24},{"epoch":26140133,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":550.86,"free":3138.22},{"epoch":26140134,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":550.83,"free":3138.25},{"epoch":26140135,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":551.07,"free":3138.03},{"epoch":26140136,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":552.14,"free":3136.95},{"epoch":26140137,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.18,"used":551.75,"free":3137.34},{"epoch":26140138,"idl":99.93,"recv":0,"send":0.01,"writ":0.2,"used":551.86,"free":3137.22},{"epoch":26140139,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":551.81,"free":3137.27},{"epoch":26140140,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":552.04,"free":3137.05},{"epoch":26140141,"idl":99.8,"recv":0,"send":0.01,"writ":0.57,"used":552.27,"free":3136.82},{"epoch":26140142,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":551.73,"free":3137.36},{"epoch":26140143,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.85,"free":3137.23},{"epoch":26140144,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":551.85,"free":3137.22},{"epoch":26140145,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":551.6,"free":3137.49},{"epoch":26140146,"idl":99.75,"recv":0,"send":0,"writ":0.51,"used":551.93,"free":3137.16},{"epoch":26140147,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":551.54,"free":3137.55},{"epoch":26140148,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":551.52,"free":3137.56},{"epoch":26140149,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":551.99,"free":3137.07},{"epoch":26140150,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":551,"free":3138.07},{"epoch":26140151,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":551.6,"free":3137.47},{"epoch":26140152,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":552.1,"free":3136.96},{"epoch":26140153,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.07,"free":3136.99},{"epoch":26140154,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.04,"free":3137.02},{"epoch":26140155,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":551.8,"free":3137.27},{"epoch":26140156,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.35,"used":552.12,"free":3136.95},{"epoch":26140157,"idl":99.92,"recv":0,"send":0,"writ":0.42,"used":551.96,"free":3137.11},{"epoch":26140158,"idl":99.94,"recv":0.02,"send":0.01,"writ":0.21,"used":552.01,"free":3137.03},{"epoch":26140159,"idl":99.94,"recv":0.05,"send":0,"writ":0.23,"used":552,"free":3137.04},{"epoch":26140160,"idl":99.84,"recv":0.06,"send":0.01,"writ":0.37,"used":551.81,"free":3137.26},{"epoch":26140161,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":551.98,"free":3137.08},{"epoch":26140162,"idl":99.78,"recv":0.04,"send":0,"writ":0.59,"used":552.33,"free":3136.73},{"epoch":26140163,"idl":99.91,"recv":0.01,"send":0.03,"writ":0.17,"used":552.03,"free":3137.03},{"epoch":26140164,"idl":99.94,"recv":0,"send":0.01,"writ":0.14,"used":551.9,"free":3137.16},{"epoch":26140165,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":552.08,"free":3137},{"epoch":26140166,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.04,"free":3137.03},{"epoch":26140167,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":552.62,"free":3136.46},{"epoch":26140168,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":551.99,"free":3137.08},{"epoch":26140169,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":551.96,"free":3137.1},{"epoch":26140170,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":551.71,"free":3137.37},{"epoch":26140171,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":551.68,"free":3137.4},{"epoch":26140172,"idl":99.78,"recv":0.01,"send":0.07,"writ":0.57,"used":552.44,"free":3136.63},{"epoch":26140173,"idl":99.9,"recv":0,"send":0.05,"writ":0.27,"used":552.5,"free":3136.57},{"epoch":26140174,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.46,"free":3136.61},{"epoch":26140175,"idl":99.85,"recv":0.01,"send":0.35,"writ":0.39,"used":552.1,"free":3136.98},{"epoch":26140176,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.06,"free":3137.01},{"epoch":26140177,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":552.39,"free":3136.68},{"epoch":26140178,"idl":98.46,"recv":0,"send":0,"writ":0.16,"used":551.99,"free":3137.07},{"epoch":26140179,"idl":99.84,"recv":0.03,"send":0,"writ":0.32,"used":552.22,"free":3136.82},{"epoch":26140180,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":552.36,"free":3136.7},{"epoch":26140181,"idl":99.94,"recv":0,"send":0,"writ":0.12,"used":552.31,"free":3136.74},{"epoch":26140182,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":552.54,"free":3136.51},{"epoch":26140183,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.14,"used":552.01,"free":3137.03},{"epoch":26140184,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":551.55,"free":3137.48},{"epoch":26140185,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":551.72,"free":3137.33},{"epoch":26140186,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.69,"free":3137.36},{"epoch":26140187,"idl":99.8,"recv":0,"send":0,"writ":0.61,"used":552.12,"free":3136.92},{"epoch":26140188,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.23,"free":3136.8},{"epoch":26140189,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.27,"free":3136.76},{"epoch":26140190,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":552.03,"free":3137.02},{"epoch":26140191,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":551.98,"free":3137.06},{"epoch":26140192,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":552.65,"free":3136.39},{"epoch":26140193,"idl":99.91,"recv":0,"send":0,"writ":0.39,"used":552.17,"free":3136.86},{"epoch":26140194,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.15,"free":3136.88},{"epoch":26140195,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":552.26,"free":3136.79},{"epoch":26140196,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.33,"free":3136.71},{"epoch":26140197,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.3,"free":3136.74},{"epoch":26140198,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":552.63,"free":3136.41},{"epoch":26140199,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.24,"free":3136.78},{"epoch":26140200,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":552.28,"free":3136.76},{"epoch":26140201,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.22,"free":3136.82},{"epoch":26140202,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.19,"free":3136.85},{"epoch":26140203,"idl":99.82,"recv":0,"send":0,"writ":0.58,"used":552.53,"free":3136.51},{"epoch":26140204,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.31,"free":3136.72},{"epoch":26140205,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":551.61,"free":3137.43},{"epoch":26140206,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.55,"free":3137.49},{"epoch":26140207,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.15,"used":551.51,"free":3137.53},{"epoch":26140208,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":552.18,"free":3136.85},{"epoch":26140209,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":552.54,"free":3136.47},{"epoch":26140210,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":552.31,"free":3136.72},{"epoch":26140211,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.27,"free":3136.75},{"epoch":26140212,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":552.25,"free":3136.77},{"epoch":26140213,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":552.58,"free":3136.45},{"epoch":26140214,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":552.18,"free":3136.86},{"epoch":26140215,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":552.43,"free":3136.63},{"epoch":26140216,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.49,"free":3136.57},{"epoch":26140217,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":552.56,"free":3136.49},{"epoch":26140218,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":553.31,"free":3135.74},{"epoch":26140219,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":552.51,"free":3136.54},{"epoch":26140220,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":552.5,"free":3136.56},{"epoch":26140221,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":552.47,"free":3136.58},{"epoch":26140222,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":552.44,"free":3136.61},{"epoch":26140223,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":552.85,"free":3136.2},{"epoch":26140224,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":551.96,"free":3137.08},{"epoch":26140225,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":552.55,"free":3136.51},{"epoch":26140226,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.53,"free":3136.52},{"epoch":26140227,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":552.5,"free":3136.55},{"epoch":26140228,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":552.47,"free":3136.58},{"epoch":26140229,"idl":99.8,"recv":0,"send":0.01,"writ":0.59,"used":552.77,"free":3136.27},{"epoch":26140230,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.3,"used":552.28,"free":3136.78},{"epoch":26140231,"idl":99.92,"recv":0,"send":0,"writ":0.23,"used":551.7,"free":3137.37},{"epoch":26140232,"idl":99.91,"recv":0,"send":0.02,"writ":0.2,"used":549.67,"free":3139.45},{"epoch":26140233,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":549.65,"free":3139.46},{"epoch":26140234,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":550.39,"free":3138.73},{"epoch":26140235,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":550.05,"free":3139.09},{"epoch":26140236,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":550.02,"free":3139.11},{"epoch":26140237,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":549.99,"free":3139.14},{"epoch":26140238,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":549.96,"free":3139.16},{"epoch":26140239,"idl":98.69,"recv":0,"send":0,"writ":0.71,"used":550.69,"free":3138.4},{"epoch":26140240,"idl":99.8,"recv":0.02,"send":0,"writ":0.33,"used":549.98,"free":3139.14},{"epoch":26140241,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":550.07,"free":3139.04},{"epoch":26140242,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":550.04,"free":3139.07},{"epoch":26140243,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.17,"used":550,"free":3139.1},{"epoch":26140244,"idl":99.78,"recv":0,"send":0,"writ":0.6,"used":550.3,"free":3138.79},{"epoch":26140245,"idl":99.83,"recv":0.04,"send":0.01,"writ":0.36,"used":549.94,"free":3139.18},{"epoch":26140246,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":550.02,"free":3139.09},{"epoch":26140247,"idl":99.93,"recv":0.02,"send":0.01,"writ":0.23,"used":549.97,"free":3139.14},{"epoch":26140248,"idl":99.92,"recv":0.06,"send":0.01,"writ":0.29,"used":549.96,"free":3139.14},{"epoch":26140249,"idl":99.81,"recv":0.04,"send":0,"writ":0.67,"used":550.46,"free":3138.63},{"epoch":26140250,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":549.91,"free":3139.2},{"epoch":26140251,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":550.08,"free":3139.04},{"epoch":26140252,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":550.05,"free":3139.06},{"epoch":26140253,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":550.01,"free":3139.09},{"epoch":26140254,"idl":99.79,"recv":0,"send":0,"writ":0.52,"used":550.42,"free":3138.68},{"epoch":26140255,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":550.24,"free":3138.88},{"epoch":26140256,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":550.21,"free":3138.91},{"epoch":26140257,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":550.18,"free":3138.92},{"epoch":26140258,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":550.16,"free":3138.95},{"epoch":26140259,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":550.16,"free":3138.94},{"epoch":26140260,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":550.29,"free":3138.82},{"epoch":26140261,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":550.29,"free":3138.83},{"epoch":26140262,"idl":99.91,"recv":0.02,"send":0,"writ":0.21,"used":550.21,"free":3138.9},{"epoch":26140263,"idl":99.89,"recv":0.02,"send":0,"writ":0.19,"used":550.2,"free":3138.9},{"epoch":26140264,"idl":99.75,"recv":0.06,"send":0.01,"writ":0.54,"used":550.54,"free":3138.56},{"epoch":26140265,"idl":99.88,"recv":0.02,"send":0,"writ":0.51,"used":550.25,"free":3138.86},{"epoch":26140266,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":550.29,"free":3138.82},{"epoch":26140267,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":550.27,"free":3138.84},{"epoch":26140268,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":550.24,"free":3138.86},{"epoch":26140269,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":549.31,"free":3139.76},{"epoch":26140270,"idl":99.71,"recv":0,"send":0,"writ":0.66,"used":550.17,"free":3138.93},{"epoch":26140271,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":549.43,"free":3139.66},{"epoch":26140272,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":549.48,"free":3139.61},{"epoch":26140273,"idl":99.92,"recv":0.02,"send":0,"writ":0.2,"used":549.51,"free":3139.57},{"epoch":26140274,"idl":99.88,"recv":0.1,"send":3.23,"writ":0.32,"used":549.46,"free":3139.62},{"epoch":26140275,"idl":99.73,"recv":0.02,"send":0.01,"writ":0.91,"used":549.03,"free":3140.05},{"epoch":26140276,"idl":99.92,"recv":0.02,"send":0,"writ":0.19,"used":548.47,"free":3140.62},{"epoch":26140277,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":548.72,"free":3140.35},{"epoch":26140278,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":548.69,"free":3140.38},{"epoch":26140279,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":548.67,"free":3140.39},{"epoch":26140280,"idl":99.68,"recv":0,"send":0,"writ":0.67,"used":549.8,"free":3139.29},{"epoch":26140281,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":549.38,"free":3139.7},{"epoch":26140282,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":549.36,"free":3139.72},{"epoch":26140283,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":549.45,"free":3139.62},{"epoch":26140284,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":549.53,"free":3139.54},{"epoch":26140285,"idl":99.69,"recv":0,"send":0,"writ":0.66,"used":549.96,"free":3139.13},{"epoch":26140286,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":549.48,"free":3139.6},{"epoch":26140287,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":549.45,"free":3139.63},{"epoch":26140288,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":549.44,"free":3139.64},{"epoch":26140289,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":549.41,"free":3139.66},{"epoch":26140290,"idl":99.6,"recv":0,"send":0,"writ":0.63,"used":549.63,"free":3139.45},{"epoch":26140291,"idl":99.9,"recv":0.02,"send":0,"writ":0.23,"used":549.48,"free":3139.6},{"epoch":26140292,"idl":99.93,"recv":0.02,"send":0,"writ":0.2,"used":549.44,"free":3139.63},{"epoch":26140293,"idl":99.84,"recv":0.02,"send":0,"writ":0.2,"used":549.45,"free":3139.62},{"epoch":26140294,"idl":99.88,"recv":0.04,"send":0.01,"writ":0.22,"used":549.46,"free":3139.6},{"epoch":26140295,"idl":99.74,"recv":0.02,"send":0,"writ":0.61,"used":550.2,"free":3138.88},{"epoch":26140296,"idl":99.9,"recv":0.01,"send":0,"writ":0.3,"used":549.25,"free":3139.82},{"epoch":26140297,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":549.23,"free":3139.85},{"epoch":26140298,"idl":99.85,"recv":0.01,"send":0,"writ":0.16,"used":549.19,"free":3139.9},{"epoch":26140299,"idl":99.8,"recv":0.01,"send":0,"writ":0.34,"used":549.38,"free":3139.67},{"epoch":26140300,"idl":99.21,"recv":0,"send":0,"writ":0.54,"used":549.88,"free":3139.19},{"epoch":26140301,"idl":99.91,"recv":0,"send":0,"writ":0.33,"used":548.53,"free":3140.53},{"epoch":26140302,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":548.5,"free":3140.55},{"epoch":26140303,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.15,"used":548.47,"free":3140.58},{"epoch":26140304,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":548.06,"free":3140.99},{"epoch":26140305,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":549.39,"free":3139.67},{"epoch":26140306,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":549.75,"free":3139.31},{"epoch":26140307,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":549.36,"free":3139.7},{"epoch":26140308,"idl":99.87,"recv":0.03,"send":0.04,"writ":0.2,"used":549.47,"free":3139.58},{"epoch":26140309,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":549.41,"free":3139.64},{"epoch":26140310,"idl":99.85,"recv":0.01,"send":0.03,"writ":0.32,"used":549.66,"free":3139.4},{"epoch":26140311,"idl":99.72,"recv":0.06,"send":0.98,"writ":0.93,"used":549.64,"free":3139.41},{"epoch":26140312,"idl":99.88,"recv":0.11,"send":0.01,"writ":0.36,"used":549.24,"free":3139.82},{"epoch":26140313,"idl":99.84,"recv":0.08,"send":0.01,"writ":0.22,"used":549.2,"free":3139.85},{"epoch":26140314,"idl":99.85,"recv":0.04,"send":0,"writ":0.25,"used":549.24,"free":3139.81},{"epoch":26140315,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":549.21,"free":3139.86},{"epoch":26140316,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":549.92,"free":3139.15},{"epoch":26140317,"idl":99.87,"recv":0.04,"send":0,"writ":0.21,"used":549.71,"free":3139.35},{"epoch":26140318,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":549.73,"free":3139.33},{"epoch":26140319,"idl":99.83,"recv":0,"send":0.01,"writ":0.19,"used":549.67,"free":3139.38},{"epoch":26140320,"idl":99.71,"recv":0.04,"send":0,"writ":0.39,"used":548.93,"free":3140.14},{"epoch":26140321,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":550.1,"free":3138.96},{"epoch":26140322,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":549.77,"free":3139.29},{"epoch":26140323,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":549.73,"free":3139.32},{"epoch":26140324,"idl":99.82,"recv":0.02,"send":0.02,"writ":0.18,"used":549.71,"free":3139.35},{"epoch":26140325,"idl":99.78,"recv":0,"send":0,"writ":0.37,"used":549.76,"free":3139.31},{"epoch":26140326,"idl":99.72,"recv":0.02,"send":0.02,"writ":0.6,"used":550.2,"free":3138.86},{"epoch":26140327,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":550.03,"free":3139.04},{"epoch":26140328,"idl":99.81,"recv":0.02,"send":0,"writ":0.2,"used":549.99,"free":3139.07},{"epoch":26140329,"idl":99.75,"recv":0.07,"send":0.01,"writ":0.49,"used":549.51,"free":3139.53},{"epoch":26140330,"idl":99.75,"recv":0.06,"send":0.01,"writ":0.43,"used":549.78,"free":3139.27},{"epoch":26140331,"idl":99.71,"recv":0.02,"send":0,"writ":0.48,"used":549.84,"free":3139.21},{"epoch":26140332,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.29,"used":549.17,"free":3139.88},{"epoch":26140333,"idl":99.85,"recv":0.02,"send":0.01,"writ":0.21,"used":549.24,"free":3139.8},{"epoch":26140334,"idl":99.84,"recv":0.05,"send":0.01,"writ":0.26,"used":549.16,"free":3139.9},{"epoch":26140335,"idl":99.74,"recv":0.04,"send":0.01,"writ":0.43,"used":549.49,"free":3139.58},{"epoch":26140336,"idl":99.69,"recv":0.02,"send":0.01,"writ":0.61,"used":549.91,"free":3139.16},{"epoch":26140337,"idl":99.83,"recv":0.04,"send":0,"writ":0.23,"used":550.04,"free":3139.03},{"epoch":26140338,"idl":99.84,"recv":0.02,"send":0,"writ":0.24,"used":549.92,"free":3139.15},{"epoch":26140339,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":549.89,"free":3139.19},{"epoch":26140340,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":549.8,"free":3139.31},{"epoch":26140341,"idl":99.71,"recv":0.02,"send":0,"writ":0.45,"used":550.27,"free":3138.83},{"epoch":26140342,"idl":99.82,"recv":0,"send":0,"writ":0.51,"used":549.23,"free":3139.86},{"epoch":26140343,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":548.96,"free":3140.13},{"epoch":26140344,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":548.94,"free":3140.15},{"epoch":26140345,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":549.9,"free":3139.21},{"epoch":26140346,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":549.9,"free":3139.2},{"epoch":26140347,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":550.49,"free":3138.61},{"epoch":26140348,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":550.04,"free":3139.05},{"epoch":26140349,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":550.01,"free":3139.08},{"epoch":26140350,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":549.28,"free":3139.82},{"epoch":26140351,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":549.24,"free":3139.86},{"epoch":26140352,"idl":99.71,"recv":0,"send":0,"writ":0.62,"used":550.11,"free":3138.98},{"epoch":26140353,"idl":99.84,"recv":0,"send":0,"writ":0.23,"used":549.59,"free":3139.53},{"epoch":26140354,"idl":99.85,"recv":0,"send":0,"writ":0.26,"used":545.19,"free":3144.28},{"epoch":26140355,"idl":99.74,"recv":0,"send":0,"writ":0.36,"used":545.23,"free":3144.26},{"epoch":26140356,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":545.21,"free":3144.28},{"epoch":26140357,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":545.4,"free":3144.09},{"epoch":26140358,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":544.92,"free":3144.56},{"epoch":26140359,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":544.9,"free":3144.57},{"epoch":26140360,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":545.14,"free":3144.35},{"epoch":26140361,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":545.09,"free":3144.39},{"epoch":26140362,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":545.08,"free":3144.4},{"epoch":26140363,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.14,"used":544.47,"free":3145},{"epoch":26140364,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":544.82,"free":3144.66},{"epoch":26140365,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":545.19,"free":3144.3},{"epoch":26140366,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":545.15,"free":3144.34},{"epoch":26140367,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":545.33,"free":3144.15},{"epoch":26140368,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":543.86,"free":3145.62},{"epoch":26140369,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":543.9,"free":3145.56},{"epoch":26140370,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":545.04,"free":3144.45},{"epoch":26140371,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":544.96,"free":3144.52},{"epoch":26140372,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":545.4,"free":3144.08},{"epoch":26140373,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":544.43,"free":3145.05},{"epoch":26140374,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":544.39,"free":3145.07},{"epoch":26140375,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":545.35,"free":3144.14},{"epoch":26140376,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":545.21,"free":3144.27},{"epoch":26140377,"idl":99.71,"recv":0,"send":0,"writ":0.37,"used":545.39,"free":3144.08},{"epoch":26140378,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":544.72,"free":3144.76},{"epoch":26140379,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":544.71,"free":3144.76},{"epoch":26140380,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":544.46,"free":3145.02},{"epoch":26140381,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":544.42,"free":3145.06},{"epoch":26140382,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":544.74,"free":3144.73},{"epoch":26140383,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":544.37,"free":3145.09},{"epoch":26140384,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":544.34,"free":3145.12},{"epoch":26140385,"idl":99.78,"recv":0.03,"send":0.08,"writ":0.32,"used":545.1,"free":3144.38},{"epoch":26140386,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":545.15,"free":3144.32},{"epoch":26140387,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":545.1,"free":3144.37},{"epoch":26140388,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":545.43,"free":3144.04},{"epoch":26140389,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":545.18,"free":3144.26},{"epoch":26140390,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":545.23,"free":3144.23},{"epoch":26140391,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":545.2,"free":3144.26},{"epoch":26140392,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":545.17,"free":3144.28},{"epoch":26140393,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":545.44,"free":3144.01},{"epoch":26140394,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":544.63,"free":3144.82},{"epoch":26140395,"idl":99.78,"recv":0,"send":0,"writ":0.35,"used":545.1,"free":3144.36},{"epoch":26140396,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":545.08,"free":3144.37},{"epoch":26140397,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":545.15,"free":3144.3},{"epoch":26140398,"idl":99.71,"recv":0,"send":0,"writ":0.5,"used":545.7,"free":3143.74},{"epoch":26140399,"idl":99.84,"recv":0,"send":0,"writ":0.22,"used":545.42,"free":3144.02},{"epoch":26140400,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":545.42,"free":3144.04},{"epoch":26140401,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":545.38,"free":3144.07},{"epoch":26140402,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":545.36,"free":3144.1},{"epoch":26140403,"idl":99.71,"recv":0,"send":0,"writ":0.4,"used":545.67,"free":3143.77},{"epoch":26140404,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":545.3,"free":3144.14},{"epoch":26140405,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":545.22,"free":3144.24},{"epoch":26140406,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":545.19,"free":3144.27},{"epoch":26140407,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":545.16,"free":3144.29},{"epoch":26140408,"idl":99.7,"recv":0,"send":0,"writ":0.5,"used":545.19,"free":3144.26},{"epoch":26140409,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":544.36,"free":3145.08},{"epoch":26140410,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":545.32,"free":3144.14},{"epoch":26140411,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":545.31,"free":3144.15},{"epoch":26140412,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":545.44,"free":3144.01},{"epoch":26140413,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":545.87,"free":3143.57},{"epoch":26140414,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":544.18,"free":3145.26},{"epoch":26140415,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":544.45,"free":3145.01},{"epoch":26140416,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":544.39,"free":3145.06},{"epoch":26140417,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":544.36,"free":3145.09},{"epoch":26140418,"idl":99.7,"recv":0,"send":0,"writ":0.34,"used":544.78,"free":3144.67},{"epoch":26140419,"idl":99.74,"recv":0,"send":0,"writ":0.5,"used":545.52,"free":3143.89},{"epoch":26140420,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":545.38,"free":3144.05},{"epoch":26140421,"idl":97.98,"recv":0,"send":0,"writ":0.15,"used":544.44,"free":3144.98},{"epoch":26140422,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":544.42,"free":3145},{"epoch":26140423,"idl":99.63,"recv":0.02,"send":0.05,"writ":0.51,"used":546.52,"free":3142.84},{"epoch":26140424,"idl":99.76,"recv":0,"send":0,"writ":0.42,"used":549.79,"free":3139.52},{"epoch":26140425,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":549.7,"free":3139.62},{"epoch":26140426,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":549.65,"free":3139.67},{"epoch":26140427,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":549.61,"free":3139.7},{"epoch":26140428,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":549.61,"free":3139.7},{"epoch":26140429,"idl":99.69,"recv":0,"send":0,"writ":0.6,"used":550.07,"free":3139.23},{"epoch":26140430,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":550.19,"free":3139.13},{"epoch":26140431,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":550.16,"free":3139.16},{"epoch":26140432,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":550.13,"free":3139.18},{"epoch":26140433,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":550.09,"free":3139.22},{"epoch":26140434,"idl":99.68,"recv":0.01,"send":0.06,"writ":0.66,"used":552.32,"free":3136.94},{"epoch":26140435,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":552.15,"free":3137.11},{"epoch":26140436,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.11,"free":3137.15},{"epoch":26140437,"idl":99.83,"recv":0,"send":0.03,"writ":0.16,"used":552.19,"free":3137.06},{"epoch":26140438,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":552.19,"free":3137.05},{"epoch":26140439,"idl":99.72,"recv":0,"send":0,"writ":0.44,"used":552.85,"free":3136.39},{"epoch":26140440,"idl":99.77,"recv":0,"send":0,"writ":0.48,"used":552.62,"free":3136.65},{"epoch":26140441,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.6,"free":3136.67},{"epoch":26140442,"idl":99.82,"recv":0,"send":0.03,"writ":0.16,"used":552.63,"free":3136.63},{"epoch":26140443,"idl":99.84,"recv":0.02,"send":0,"writ":0.19,"used":552.68,"free":3136.57},{"epoch":26140444,"idl":99.64,"recv":0.07,"send":0.01,"writ":0.7,"used":554.88,"free":3134.32},{"epoch":26140445,"idl":99.72,"recv":0.02,"send":0,"writ":0.43,"used":555.53,"free":3133.66},{"epoch":26140446,"idl":99.84,"recv":0.07,"send":0,"writ":0.32,"used":555.59,"free":3133.61},{"epoch":26140447,"idl":99.84,"recv":0.07,"send":0,"writ":0.3,"used":555.76,"free":3133.43},{"epoch":26140448,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":555.81,"free":3133.38},{"epoch":26140449,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":556.16,"free":3133.01},{"epoch":26140450,"idl":99.75,"recv":0,"send":0,"writ":0.45,"used":555.96,"free":3133.23},{"epoch":26140451,"idl":99.82,"recv":0.04,"send":1.4,"writ":0.26,"used":556,"free":3133.17},{"epoch":26140452,"idl":99.83,"recv":0,"send":0.01,"writ":0.17,"used":555.93,"free":3133.23},{"epoch":26140453,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.05,"free":3133.1},{"epoch":26140454,"idl":99.68,"recv":0,"send":0.02,"writ":0.31,"used":556.35,"free":3132.8},{"epoch":26140455,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":554.76,"free":3134.41},{"epoch":26140456,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":554.69,"free":3134.48},{"epoch":26140457,"idl":99.8,"recv":0.01,"send":0.05,"writ":0.2,"used":554.81,"free":3134.36},{"epoch":26140458,"idl":99.83,"recv":0.02,"send":0,"writ":0.16,"used":554.77,"free":3134.38},{"epoch":26140459,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":554.71,"free":3134.45},{"epoch":26140460,"idl":99.61,"recv":0.04,"send":0,"writ":0.84,"used":555.26,"free":3133.92},{"epoch":26140461,"idl":99.83,"recv":0.05,"send":0,"writ":0.3,"used":554.84,"free":3134.34},{"epoch":26140462,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":554.81,"free":3134.37},{"epoch":26140463,"idl":99.83,"recv":0.02,"send":0,"writ":0.2,"used":554.76,"free":3134.42},{"epoch":26140464,"idl":99.82,"recv":0.08,"send":0.01,"writ":0.31,"used":554.76,"free":3134.41},{"epoch":26140465,"idl":99.59,"recv":0,"send":0,"writ":0.75,"used":555.92,"free":3133.27},{"epoch":26140466,"idl":99.83,"recv":0.02,"send":0,"writ":0.19,"used":555.94,"free":3133.24},{"epoch":26140467,"idl":99.78,"recv":0.03,"send":0,"writ":0.26,"used":556.03,"free":3133.15},{"epoch":26140468,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":555.95,"free":3133.23},{"epoch":26140469,"idl":99.85,"recv":0.02,"send":0,"writ":0.16,"used":555.93,"free":3133.24},{"epoch":26140470,"idl":99.66,"recv":0,"send":0,"writ":0.78,"used":556.56,"free":3132.63},{"epoch":26140471,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":556.05,"free":3133.14},{"epoch":26140472,"idl":99.83,"recv":0.03,"send":0,"writ":0.26,"used":555.98,"free":3133.2},{"epoch":26140473,"idl":99.85,"recv":0.02,"send":0,"writ":0.2,"used":555.98,"free":3133.2},{"epoch":26140474,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":556.03,"free":3133.14},{"epoch":26140475,"idl":95,"recv":0.36,"send":0.01,"writ":78.88,"used":567.32,"free":3121.93},{"epoch":26140476,"idl":99.55,"recv":0.05,"send":0,"writ":182.32,"used":558.2,"free":3130.9},{"epoch":26140477,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":558.19,"free":3130.9},{"epoch":26140478,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":558.15,"free":3130.94},{"epoch":26140479,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":558.17,"free":3130.85},{"epoch":26140480,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":558.22,"free":3130.83},{"epoch":26140481,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":555.85,"free":3133.23},{"epoch":26140482,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":555.81,"free":3133.27},{"epoch":26140483,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.16,"used":555.77,"free":3133.3},{"epoch":26140484,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":555.89,"free":3133.18},{"epoch":26140485,"idl":99.71,"recv":0,"send":0,"writ":0.34,"used":556.17,"free":3132.92},{"epoch":26140486,"idl":99.86,"recv":0,"send":0,"writ":0.52,"used":556.43,"free":3132.69},{"epoch":26140487,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":556.06,"free":3133.06},{"epoch":26140488,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.02,"free":3133.09},{"epoch":26140489,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.98,"free":3133.13},{"epoch":26140490,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":555.81,"free":3133.32},{"epoch":26140491,"idl":99.73,"recv":0,"send":0,"writ":0.67,"used":556.58,"free":3132.53},{"epoch":26140492,"idl":99.84,"recv":0.02,"send":0.97,"writ":0.14,"used":556.07,"free":3133.03},{"epoch":26140493,"idl":99.92,"recv":0.01,"send":1.89,"writ":0.45,"used":556.02,"free":3133.04},{"epoch":26140494,"idl":99.9,"recv":0.03,"send":1.6,"writ":0.35,"used":556.01,"free":3133.04},{"epoch":26140495,"idl":99.88,"recv":0,"send":0,"writ":0.41,"used":555.57,"free":3133.49},{"epoch":26140496,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":556.36,"free":3132.71},{"epoch":26140497,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.21,"free":3132.86},{"epoch":26140498,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":556.16,"free":3132.89},{"epoch":26140499,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.29,"free":3132.76},{"epoch":26140500,"idl":99.72,"recv":0,"send":0,"writ":0.35,"used":556.4,"free":3132.67},{"epoch":26140501,"idl":99.76,"recv":0,"send":0,"writ":0.61,"used":556.46,"free":3132.61},{"epoch":26140502,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":555.98,"free":3133.08},{"epoch":26140503,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.95,"free":3133.11},{"epoch":26140504,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":555.98,"free":3133.07},{"epoch":26140505,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":554.89,"free":3134.18},{"epoch":26140506,"idl":99.72,"recv":0,"send":0,"writ":0.5,"used":555.78,"free":3133.29},{"epoch":26140507,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":555.99,"free":3133.07},{"epoch":26140508,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":555.95,"free":3133.11},{"epoch":26140509,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":556.39,"free":3132.66},{"epoch":26140510,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":556.32,"free":3132.74},{"epoch":26140511,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":556.67,"free":3132.39},{"epoch":26140512,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":556.27,"free":3132.78},{"epoch":26140513,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.24,"free":3132.81},{"epoch":26140514,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":556.19,"free":3132.86},{"epoch":26140515,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":556.02,"free":3133.05},{"epoch":26140516,"idl":99.8,"recv":0,"send":0,"writ":0.46,"used":556.61,"free":3132.45},{"epoch":26140517,"idl":99.94,"recv":0,"send":0,"writ":0.32,"used":556.28,"free":3132.77},{"epoch":26140518,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":556.25,"free":3132.8},{"epoch":26140519,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.2,"free":3132.84},{"epoch":26140520,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":556.43,"free":3132.63},{"epoch":26140521,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.54,"free":3132.52},{"epoch":26140522,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":556.89,"free":3132.17},{"epoch":26140523,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.5,"free":3132.55},{"epoch":26140524,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":556.46,"free":3132.58},{"epoch":26140525,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":556.2,"free":3132.86},{"epoch":26140526,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.25,"free":3132.81},{"epoch":26140527,"idl":99.72,"recv":0.03,"send":2.52,"writ":0.7,"used":556.87,"free":3132.18},{"epoch":26140528,"idl":99.85,"recv":0.02,"send":2.61,"writ":0.43,"used":556.55,"free":3132.49},{"epoch":26140529,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":556.46,"free":3132.57},{"epoch":26140530,"idl":99.38,"recv":0,"send":0,"writ":0.36,"used":555.47,"free":3133.58},{"epoch":26140531,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":555.4,"free":3133.64},{"epoch":26140532,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":556.2,"free":3132.83},{"epoch":26140533,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.15,"used":556.03,"free":3133},{"epoch":26140534,"idl":99.44,"recv":0.01,"send":0.05,"writ":0.18,"used":555.95,"free":3133.07},{"epoch":26140535,"idl":99.84,"recv":0.02,"send":0,"writ":0.34,"used":555.82,"free":3133.22},{"epoch":26140536,"idl":99.9,"recv":0.05,"send":0,"writ":0.26,"used":555.72,"free":3133.32},{"epoch":26140537,"idl":99.42,"recv":0.02,"send":0,"writ":0.6,"used":556.1,"free":3132.94},{"epoch":26140538,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":555.7,"free":3133.33},{"epoch":26140539,"idl":99.74,"recv":0.02,"send":0,"writ":0.32,"used":555.65,"free":3133.36},{"epoch":26140540,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":556.48,"free":3132.54},{"epoch":26140541,"idl":99.92,"recv":0.03,"send":0,"writ":0.29,"used":556.46,"free":3132.56},{"epoch":26140542,"idl":99.71,"recv":0.03,"send":0,"writ":0.66,"used":557.11,"free":3131.9},{"epoch":26140543,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.14,"used":556.74,"free":3132.27},{"epoch":26140544,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":556.38,"free":3132.63},{"epoch":26140545,"idl":99.79,"recv":0.02,"send":0,"writ":0.36,"used":555.47,"free":3133.55},{"epoch":26140546,"idl":99.94,"recv":0.02,"send":0,"writ":0.2,"used":555.47,"free":3133.56},{"epoch":26140547,"idl":99.75,"recv":0.02,"send":0,"writ":0.54,"used":556.05,"free":3132.97},{"epoch":26140548,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":555.69,"free":3133.32},{"epoch":26140549,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.66,"free":3133.35},{"epoch":26140550,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":556.62,"free":3132.41},{"epoch":26140551,"idl":99.91,"recv":0.03,"send":0,"writ":0.22,"used":556.71,"free":3132.32},{"epoch":26140552,"idl":98.22,"recv":0.01,"send":0.03,"writ":0.43,"used":557.03,"free":3131.98},{"epoch":26140553,"idl":99.93,"recv":0.01,"send":0,"writ":0.35,"used":556.62,"free":3132.38},{"epoch":26140554,"idl":99.91,"recv":0.02,"send":0.01,"writ":0.23,"used":556.72,"free":3132.28},{"epoch":26140555,"idl":99.86,"recv":0.03,"send":0,"writ":0.44,"used":556.68,"free":3132.34},{"epoch":26140556,"idl":99.92,"recv":0.01,"send":0,"writ":0.2,"used":556.71,"free":3132.31},{"epoch":26140557,"idl":99.9,"recv":0.02,"send":0,"writ":0.21,"used":556.76,"free":3132.26},{"epoch":26140558,"idl":99.75,"recv":0.02,"send":0,"writ":0.63,"used":556.32,"free":3132.7},{"epoch":26140559,"idl":99.19,"recv":0.01,"send":0,"writ":0.2,"used":555.96,"free":3133.05},{"epoch":26140560,"idl":99.79,"recv":0.04,"send":0,"writ":0.43,"used":556.72,"free":3132.31},{"epoch":26140561,"idl":99.9,"recv":0.07,"send":1.71,"writ":0.29,"used":556.68,"free":3132.34},{"epoch":26140562,"idl":99.93,"recv":0.02,"send":0,"writ":0.29,"used":556.73,"free":3132.29},{"epoch":26140563,"idl":99.43,"recv":0.02,"send":0,"writ":0.64,"used":556.24,"free":3132.77},{"epoch":26140564,"idl":99.88,"recv":0.01,"send":0,"writ":0.23,"used":555.63,"free":3133.38},{"epoch":26140565,"idl":99.79,"recv":0.05,"send":0.01,"writ":0.52,"used":555.72,"free":3133.3},{"epoch":26140566,"idl":99.9,"recv":0.04,"send":0,"writ":0.28,"used":555.66,"free":3133.35},{"epoch":26140567,"idl":99.88,"recv":0.05,"send":0.04,"writ":0.25,"used":555.72,"free":3133.29},{"epoch":26140568,"idl":99.78,"recv":0.01,"send":0,"writ":0.62,"used":555.83,"free":3133.17},{"epoch":26140569,"idl":99.31,"recv":0.01,"send":0,"writ":0.33,"used":556.66,"free":3132.32},{"epoch":26140570,"idl":99.82,"recv":0.06,"send":0.01,"writ":0.54,"used":556.45,"free":3132.55},{"epoch":26140571,"idl":99.91,"recv":0.01,"send":0,"writ":0.17,"used":556.44,"free":3132.56},{"epoch":26140572,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.14,"used":556.46,"free":3132.53},{"epoch":26140573,"idl":98.79,"recv":0,"send":0.03,"writ":0.57,"used":556.87,"free":3132.12},{"epoch":26140574,"idl":99.9,"recv":0,"send":0.01,"writ":0.14,"used":555.86,"free":3133.16},{"epoch":26140575,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":555.78,"free":3133.26},{"epoch":26140576,"idl":99.86,"recv":0.01,"send":0,"writ":0.22,"used":555.75,"free":3133.29},{"epoch":26140577,"idl":99.62,"recv":0.01,"send":0.02,"writ":0.21,"used":555.71,"free":3133.33},{"epoch":26140578,"idl":99.73,"recv":0.01,"send":0,"writ":0.59,"used":556.02,"free":3133.01},{"epoch":26140579,"idl":99.89,"recv":0,"send":0,"writ":0.23,"used":555.77,"free":3133.26},{"epoch":26140580,"idl":99.62,"recv":0,"send":0,"writ":0.36,"used":556.23,"free":3132.81},{"epoch":26140581,"idl":99.88,"recv":0,"send":0.01,"writ":0.14,"used":556.19,"free":3132.85},{"epoch":26140582,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.13,"free":3132.91},{"epoch":26140583,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":556.41,"free":3132.62},{"epoch":26140584,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.75,"free":3133.28},{"epoch":26140585,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":555.98,"free":3133.07},{"epoch":26140586,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.94,"free":3133.1},{"epoch":26140587,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":555.9,"free":3133.14},{"epoch":26140588,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":556.26,"free":3132.77},{"epoch":26140589,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":556.01,"free":3133.01},{"epoch":26140590,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":556.48,"free":3132.56},{"epoch":26140591,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":556.46,"free":3132.58},{"epoch":26140592,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.39,"free":3132.65},{"epoch":26140593,"idl":99.8,"recv":0,"send":0,"writ":0.49,"used":556.47,"free":3132.56},{"epoch":26140594,"idl":99.04,"recv":0,"send":0,"writ":0.2,"used":555.93,"free":3133.1},{"epoch":26140595,"idl":99.82,"recv":0,"send":0,"writ":0.37,"used":556.01,"free":3133.03},{"epoch":26140596,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":555.97,"free":3133.07},{"epoch":26140597,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":555.93,"free":3133.11},{"epoch":26140598,"idl":99.67,"recv":0,"send":0,"writ":0.17,"used":555.89,"free":3133.14},{"epoch":26140599,"idl":99.66,"recv":0,"send":0,"writ":0.71,"used":556.22,"free":3132.79},{"epoch":26140600,"idl":99.78,"recv":0,"send":0,"writ":0.37,"used":556.02,"free":3133},{"epoch":26140601,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":555.96,"free":3133.06},{"epoch":26140602,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":555.9,"free":3133.12},{"epoch":26140603,"idl":97.41,"recv":0.01,"send":0.01,"writ":0.18,"used":555.93,"free":3133.08},{"epoch":26140604,"idl":99.75,"recv":0,"send":0,"writ":0.64,"used":556.03,"free":3132.98},{"epoch":26140605,"idl":99.85,"recv":0,"send":0,"writ":0.37,"used":555.45,"free":3133.57},{"epoch":26140606,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":555.4,"free":3133.62},{"epoch":26140607,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":555.4,"free":3133.61},{"epoch":26140608,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.52,"free":3133.49},{"epoch":26140609,"idl":99.32,"recv":0,"send":0,"writ":0.54,"used":556.09,"free":3132.91},{"epoch":26140610,"idl":99.82,"recv":0,"send":0,"writ":0.37,"used":555.44,"free":3133.58},{"epoch":26140611,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.42,"free":3133.59},{"epoch":26140612,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.52,"free":3133.49},{"epoch":26140613,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":555.45,"free":3133.55},{"epoch":26140614,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":555.85,"free":3133.15},{"epoch":26140615,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":555.3,"free":3133.72},{"epoch":26140616,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.25,"free":3133.76},{"epoch":26140617,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.21,"free":3133.8},{"epoch":26140618,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":555.15,"free":3133.86},{"epoch":26140619,"idl":99.77,"recv":0,"send":0,"writ":0.45,"used":555.53,"free":3133.47},{"epoch":26140620,"idl":99.18,"recv":0,"send":0,"writ":11.04,"used":555.77,"free":3133.98},{"epoch":26140621,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.66,"free":3134.14},{"epoch":26140622,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.61,"free":3134.18},{"epoch":26140623,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.71,"free":3134.08},{"epoch":26140624,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":556.25,"free":3133.53},{"epoch":26140625,"idl":99.85,"recv":0,"send":0,"writ":0.55,"used":556.14,"free":3133.7},{"epoch":26140626,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":556.09,"free":3133.74},{"epoch":26140627,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.22,"free":3133.61},{"epoch":26140628,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.17,"free":3133.66},{"epoch":26140629,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":555.86,"free":3133.94},{"epoch":26140630,"idl":99.73,"recv":0,"send":0,"writ":0.77,"used":556.49,"free":3133.33},{"epoch":26140631,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":556.21,"free":3133.61},{"epoch":26140632,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":556.14,"free":3133.67},{"epoch":26140633,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":556.08,"free":3133.73},{"epoch":26140634,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":556.2,"free":3133.6},{"epoch":26140635,"idl":99.7,"recv":0,"send":0,"writ":0.8,"used":556.13,"free":3133.69},{"epoch":26140636,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":555.66,"free":3134.16},{"epoch":26140637,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":555.86,"free":3133.96},{"epoch":26140638,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":555.96,"free":3133.85},{"epoch":26140639,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":555.94,"free":3133.87},{"epoch":26140640,"idl":99.7,"recv":0,"send":0,"writ":0.73,"used":556.98,"free":3132.85},{"epoch":26140641,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.36,"free":3133.46},{"epoch":26140642,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":556.41,"free":3133.4},{"epoch":26140643,"idl":95.64,"recv":0.01,"send":0.01,"writ":0.19,"used":556.39,"free":3133.42},{"epoch":26140644,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":556.33,"free":3133.47},{"epoch":26140645,"idl":99.71,"recv":0,"send":0,"writ":0.76,"used":556.8,"free":3133.02},{"epoch":26140646,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.17,"free":3133.64},{"epoch":26140647,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":556.13,"free":3133.68},{"epoch":26140648,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":556.08,"free":3133.73},{"epoch":26140649,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.18,"free":3133.62},{"epoch":26140650,"idl":99.68,"recv":0,"send":0,"writ":0.74,"used":555.91,"free":3133.91},{"epoch":26140651,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":555.93,"free":3133.89},{"epoch":26140652,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":555.89,"free":3133.92},{"epoch":26140653,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.84,"free":3133.96},{"epoch":26140654,"idl":99.42,"recv":0,"send":0,"writ":0.16,"used":555.88,"free":3133.92},{"epoch":26140655,"idl":99.67,"recv":0,"send":0,"writ":0.72,"used":555.57,"free":3134.25},{"epoch":26140656,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.68,"free":3134.14},{"epoch":26140657,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.64,"free":3134.17},{"epoch":26140658,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.6,"free":3134.21},{"epoch":26140659,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":556.28,"free":3133.5},{"epoch":26140660,"idl":99.7,"recv":0,"send":0,"writ":0.79,"used":555.93,"free":3133.86},{"epoch":26140661,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":556.19,"free":3133.6},{"epoch":26140662,"idl":98.36,"recv":0,"send":0,"writ":0.15,"used":556.16,"free":3133.63},{"epoch":26140663,"idl":98.61,"recv":0.01,"send":0.01,"writ":0.16,"used":556.12,"free":3133.66},{"epoch":26140664,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":555.82,"free":3133.99},{"epoch":26140665,"idl":99.38,"recv":0,"send":0,"writ":0.5,"used":556.74,"free":3133.08},{"epoch":26140666,"idl":99.93,"recv":0,"send":0,"writ":0.37,"used":556.73,"free":3133.09},{"epoch":26140667,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":556.69,"free":3133.13},{"epoch":26140668,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.65,"free":3133.16},{"epoch":26140669,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.62,"free":3133.19},{"epoch":26140670,"idl":99.7,"recv":0,"send":0,"writ":0.5,"used":556.71,"free":3133.12},{"epoch":26140671,"idl":99.92,"recv":0,"send":0,"writ":0.38,"used":556.46,"free":3133.37},{"epoch":26140672,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":556.47,"free":3133.35},{"epoch":26140673,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.43,"free":3133.38},{"epoch":26140674,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.38,"free":3133.43},{"epoch":26140675,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":555.88,"free":3133.95},{"epoch":26140676,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":556.87,"free":3132.95},{"epoch":26140677,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.44,"free":3133.38},{"epoch":26140678,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":556.44,"free":3133.37},{"epoch":26140679,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.4,"free":3133.41},{"epoch":26140680,"idl":99.77,"recv":0,"send":0,"writ":0.36,"used":555.66,"free":3134.17},{"epoch":26140681,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":555.95,"free":3133.87},{"epoch":26140682,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.69,"free":3134.12},{"epoch":26140683,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.71,"free":3134.1},{"epoch":26140684,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":555.66,"free":3134.14},{"epoch":26140685,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":556.13,"free":3133.69},{"epoch":26140686,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":556.18,"free":3133.63},{"epoch":26140687,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":555.62,"free":3134.19},{"epoch":26140688,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":555.72,"free":3134.09},{"epoch":26140689,"idl":99.76,"recv":0,"send":0.01,"writ":0.33,"used":556.43,"free":3133.36},{"epoch":26140690,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":555.74,"free":3134.07},{"epoch":26140691,"idl":99.72,"recv":0,"send":0,"writ":0.5,"used":556.23,"free":3133.57},{"epoch":26140692,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":556.06,"free":3133.73},{"epoch":26140693,"idl":99.17,"recv":0,"send":0,"writ":0.14,"used":556.19,"free":3133.6},{"epoch":26140694,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":556.17,"free":3133.63},{"epoch":26140695,"idl":99.86,"recv":0,"send":0,"writ":0.26,"used":555.92,"free":3133.9},{"epoch":26140696,"idl":99.75,"recv":0,"send":0,"writ":0.5,"used":556.11,"free":3133.7},{"epoch":26140697,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":555.57,"free":3134.24},{"epoch":26140698,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.68,"free":3134.12},{"epoch":26140699,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":555.68,"free":3134.12},{"epoch":26140700,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":556.15,"free":3133.67},{"epoch":26140701,"idl":99.75,"recv":0,"send":0,"writ":0.44,"used":556.7,"free":3133.12},{"epoch":26140702,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":556.32,"free":3133.48},{"epoch":26140703,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":556.32,"free":3133.48},{"epoch":26140704,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":556.46,"free":3133.33},{"epoch":26140705,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":556.69,"free":3133.12},{"epoch":26140706,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":556.97,"free":3132.84},{"epoch":26140707,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":554.89,"free":3134.91},{"epoch":26140708,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.85,"free":3134.94},{"epoch":26140709,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.9,"free":3134.89},{"epoch":26140710,"idl":99.9,"recv":0,"send":0,"writ":0.26,"used":556.69,"free":3133.12},{"epoch":26140711,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":556.67,"free":3133.14},{"epoch":26140712,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":556.99,"free":3132.81},{"epoch":26140713,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.6,"free":3133.19},{"epoch":26140714,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":556.57,"free":3133.22},{"epoch":26140715,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":556.89,"free":3132.92},{"epoch":26140716,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.94,"free":3132.86},{"epoch":26140717,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":556.61,"free":3133.19},{"epoch":26140718,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.11,"free":3133.68},{"epoch":26140719,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":556.81,"free":3132.96},{"epoch":26140720,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":556.82,"free":3132.97},{"epoch":26140721,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":556.96,"free":3132.83},{"epoch":26140722,"idl":99.6,"recv":0,"send":0,"writ":0.59,"used":557.58,"free":3132.2},{"epoch":26140723,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.22,"used":556.86,"free":3132.92},{"epoch":26140724,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":556.69,"free":3133.09},{"epoch":26140725,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":556.64,"free":3133.17},{"epoch":26140726,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.7,"free":3133.1},{"epoch":26140727,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":556.62,"free":3133.18},{"epoch":26140728,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":554.99,"free":3134.8},{"epoch":26140729,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":554.85,"free":3134.94},{"epoch":26140730,"idl":99.85,"recv":0,"send":0,"writ":0.25,"used":555.87,"free":3133.93},{"epoch":26140731,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.95,"free":3133.85},{"epoch":26140732,"idl":99.69,"recv":0,"send":0,"writ":0.59,"used":556.14,"free":3133.65},{"epoch":26140733,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":555.61,"free":3134.18},{"epoch":26140734,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.56,"free":3134.23},{"epoch":26140735,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":556.17,"free":3133.63},{"epoch":26140736,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.18,"free":3133.62},{"epoch":26140737,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":556.4,"free":3133.4},{"epoch":26140738,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.84,"free":3133.95},{"epoch":26140739,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.8,"free":3133.98},{"epoch":26140740,"idl":99.77,"recv":0.01,"send":0.02,"writ":0.3,"used":554.77,"free":3135.03},{"epoch":26140741,"idl":99.93,"recv":0,"send":0.01,"writ":0.16,"used":554.68,"free":3135.12},{"epoch":26140742,"idl":99.73,"recv":0,"send":0,"writ":0.42,"used":555.42,"free":3134.37},{"epoch":26140743,"idl":99.92,"recv":0,"send":0,"writ":0.28,"used":555.15,"free":3134.63},{"epoch":26140744,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":555.22,"free":3134.57},{"epoch":26140745,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":554.72,"free":3135.08},{"epoch":26140746,"idl":99.81,"recv":0.01,"send":0,"writ":0.14,"used":554.67,"free":3135.12},{"epoch":26140747,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.63,"free":3135.16},{"epoch":26140748,"idl":99.76,"recv":0,"send":0,"writ":0.6,"used":556.03,"free":3133.76},{"epoch":26140749,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":555.93,"free":3133.83},{"epoch":26140750,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":554.74,"free":3135.04},{"epoch":26140751,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.64,"free":3135.13},{"epoch":26140752,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.6,"free":3135.17},{"epoch":26140753,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":556.34,"free":3133.42},{"epoch":26140754,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":556.19,"free":3133.6},{"epoch":26140755,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":556.16,"free":3133.65},{"epoch":26140756,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.12,"free":3133.69},{"epoch":26140757,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":556.08,"free":3133.73},{"epoch":26140758,"idl":99.77,"recv":0,"send":0.01,"writ":0.55,"used":556.52,"free":3133.28},{"epoch":26140759,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":556.15,"free":3133.64},{"epoch":26140760,"idl":99.36,"recv":0,"send":0,"writ":0.27,"used":556.13,"free":3133.69},{"epoch":26140761,"idl":99.26,"recv":0,"send":0,"writ":0.16,"used":556.07,"free":3133.74},{"epoch":26140762,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":556.11,"free":3133.69},{"epoch":26140763,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":556.52,"free":3133.28},{"epoch":26140764,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":556.13,"free":3133.66},{"epoch":26140765,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":555.87,"free":3133.94},{"epoch":26140766,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":555.83,"free":3133.98},{"epoch":26140767,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":555.79,"free":3134.01},{"epoch":26140768,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":556.42,"free":3133.38},{"epoch":26140769,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":556.19,"free":3133.61},{"epoch":26140770,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":556.64,"free":3133.17},{"epoch":26140771,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":556.6,"free":3133.21},{"epoch":26140772,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.59,"free":3133.21},{"epoch":26140773,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":557.1,"free":3132.7},{"epoch":26140774,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":556.17,"free":3133.63},{"epoch":26140775,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":556.39,"free":3133.42},{"epoch":26140776,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":556.35,"free":3133.46},{"epoch":26140777,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.31,"free":3133.49},{"epoch":26140778,"idl":98.7,"recv":0,"send":0,"writ":0.4,"used":556.69,"free":3133.11},{"epoch":26140779,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":556.44,"free":3133.35},{"epoch":26140780,"idl":99.76,"recv":0,"send":0,"writ":0.26,"used":555.24,"free":3134.57},{"epoch":26140781,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":555.11,"free":3134.69},{"epoch":26140782,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.07,"free":3134.73},{"epoch":26140783,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.15,"used":555.16,"free":3134.63},{"epoch":26140784,"idl":97.61,"recv":0,"send":0,"writ":0.58,"used":556.27,"free":3133.53},{"epoch":26140785,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":556.36,"free":3133.46},{"epoch":26140786,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.32,"free":3133.5},{"epoch":26140787,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":556.36,"free":3133.45},{"epoch":26140788,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.4,"free":3133.41},{"epoch":26140789,"idl":95.76,"recv":0,"send":0,"writ":0.57,"used":556.76,"free":3133.04},{"epoch":26140790,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":556.1,"free":3133.72},{"epoch":26140791,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":556.07,"free":3133.75},{"epoch":26140792,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.18,"free":3133.63},{"epoch":26140793,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.13,"free":3133.67},{"epoch":26140794,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":557,"free":3132.82},{"epoch":26140795,"idl":99.83,"recv":0,"send":0,"writ":0.38,"used":556.07,"free":3133.76},{"epoch":26140796,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":556.1,"free":3133.72},{"epoch":26140797,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":556.17,"free":3133.65},{"epoch":26140798,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":556.13,"free":3133.69},{"epoch":26140799,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":556.72,"free":3133.09},{"epoch":26140800,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":556.31,"free":3133.52},{"epoch":26140801,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.36,"free":3133.47},{"epoch":26140802,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":556.43,"free":3133.39},{"epoch":26140803,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.39,"free":3133.43},{"epoch":26140804,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":556.7,"free":3133.12},{"epoch":26140805,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":555.59,"free":3134.24},{"epoch":26140806,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":555.67,"free":3134.15},{"epoch":26140807,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":555.68,"free":3134.15},{"epoch":26140808,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":555.64,"free":3134.18},{"epoch":26140809,"idl":99.7,"recv":0,"send":0,"writ":0.69,"used":556.68,"free":3133.11},{"epoch":26140810,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":556.78,"free":3133.02},{"epoch":26140811,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":556.89,"free":3132.9},{"epoch":26140812,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":556.89,"free":3132.91},{"epoch":26140813,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":556.84,"free":3132.95},{"epoch":26140814,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":557.08,"free":3132.7},{"epoch":26140815,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":556.36,"free":3133.44},{"epoch":26140816,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.41,"free":3133.38},{"epoch":26140817,"idl":96.09,"recv":0,"send":0,"writ":0.16,"used":556.37,"free":3133.42},{"epoch":26140818,"idl":99,"recv":0,"send":0,"writ":0.15,"used":556.33,"free":3133.46},{"epoch":26140819,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":556.64,"free":3133.14},{"epoch":26140820,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":555.63,"free":3134.17},{"epoch":26140821,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.67,"free":3134.13},{"epoch":26140822,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":555.62,"free":3134.17},{"epoch":26140823,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":555.57,"free":3134.22},{"epoch":26140824,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":555.52,"free":3134.26},{"epoch":26140825,"idl":99.67,"recv":0,"send":0,"writ":0.66,"used":557.03,"free":3132.76},{"epoch":26140826,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.63,"free":3133.17},{"epoch":26140827,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":556.58,"free":3133.21},{"epoch":26140828,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.54,"free":3133.25},{"epoch":26140829,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.51,"free":3133.27},{"epoch":26140830,"idl":99.61,"recv":0.01,"send":0.02,"writ":0.71,"used":557.08,"free":3132.72},{"epoch":26140831,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":556.86,"free":3132.93},{"epoch":26140832,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":556.91,"free":3132.88},{"epoch":26140833,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":556.87,"free":3132.91},{"epoch":26140834,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":556.84,"free":3132.95},{"epoch":26140835,"idl":99.67,"recv":0,"send":0,"writ":0.75,"used":557.19,"free":3132.6},{"epoch":26140836,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.61,"free":3133.18},{"epoch":26140837,"idl":99.88,"recv":0,"send":0.01,"writ":0.2,"used":556.64,"free":3133.14},{"epoch":26140838,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":556.6,"free":3133.18},{"epoch":26140839,"idl":98.63,"recv":0,"send":0,"writ":0.41,"used":556.55,"free":3133.21},{"epoch":26140840,"idl":95.01,"recv":0.35,"send":0.01,"writ":78.72,"used":565.81,"free":3124.22},{"epoch":26140841,"idl":99.5,"recv":0,"send":0,"writ":181.9,"used":559.34,"free":3130.37},{"epoch":26140842,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":559.31,"free":3130.39},{"epoch":26140843,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.15,"used":559.26,"free":3130.44},{"epoch":26140844,"idl":99.49,"recv":0,"send":0,"writ":0.16,"used":559.07,"free":3130.64},{"epoch":26140845,"idl":99.66,"recv":0,"send":0,"writ":0.61,"used":559.18,"free":3130.56},{"epoch":26140846,"idl":98.47,"recv":0,"send":0,"writ":0.29,"used":556.91,"free":3132.86},{"epoch":26140847,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":556.87,"free":3132.9},{"epoch":26140848,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":556.83,"free":3132.93},{"epoch":26140849,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":556.88,"free":3132.88},{"epoch":26140850,"idl":99.68,"recv":0,"send":0,"writ":0.5,"used":556.87,"free":3132.91},{"epoch":26140851,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":556.91,"free":3132.89},{"epoch":26140852,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.87,"free":3132.92},{"epoch":26140853,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.84,"free":3132.95},{"epoch":26140854,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":556.88,"free":3132.9},{"epoch":26140855,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":556.96,"free":3132.85},{"epoch":26140856,"idl":99.68,"recv":0,"send":0,"writ":0.66,"used":557.05,"free":3132.75},{"epoch":26140857,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.64,"free":3133.16},{"epoch":26140858,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":556.59,"free":3133.2},{"epoch":26140859,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.64,"free":3133.15},{"epoch":26140860,"idl":98.88,"recv":0,"send":0,"writ":0.28,"used":556.96,"free":3132.84},{"epoch":26140861,"idl":99.74,"recv":0,"send":0,"writ":0.53,"used":557.08,"free":3132.71},{"epoch":26140862,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":556.63,"free":3133.16},{"epoch":26140863,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":556.6,"free":3133.19},{"epoch":26140864,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":556.56,"free":3133.22},{"epoch":26140865,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":556.73,"free":3133.07},{"epoch":26140866,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":557.21,"free":3132.59},{"epoch":26140867,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":556.88,"free":3132.91},{"epoch":26140868,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":556.83,"free":3132.96},{"epoch":26140869,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":556.65,"free":3133.11},{"epoch":26140870,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":556.94,"free":3132.83},{"epoch":26140871,"idl":99.66,"recv":0,"send":0,"writ":0.59,"used":557.11,"free":3132.65},{"epoch":26140872,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":556.62,"free":3133.14},{"epoch":26140873,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":556.57,"free":3133.19},{"epoch":26140874,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":556.7,"free":3133.05},{"epoch":26140875,"idl":99.73,"recv":0,"send":0,"writ":0.28,"used":556.68,"free":3133.09},{"epoch":26140876,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":557.23,"free":3132.54},{"epoch":26140877,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":556.34,"free":3133.42},{"epoch":26140878,"idl":99.73,"recv":0,"send":0,"writ":0.14,"used":556.4,"free":3133.36},{"epoch":26140879,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.43,"free":3133.32},{"epoch":26140880,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":556.66,"free":3133.12},{"epoch":26140881,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":557.12,"free":3132.65},{"epoch":26140882,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":555.84,"free":3133.92},{"epoch":26140883,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":555.46,"free":3134.3},{"epoch":26140884,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":555.44,"free":3134.31},{"epoch":26140885,"idl":98.85,"recv":0,"send":0,"writ":0.29,"used":555.17,"free":3134.6},{"epoch":26140886,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":555.69,"free":3134.07},{"epoch":26140887,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":556.1,"free":3133.67},{"epoch":26140888,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":556.21,"free":3133.55},{"epoch":26140889,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":556.15,"free":3133.6},{"epoch":26140890,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":556.12,"free":3133.65},{"epoch":26140891,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.07,"free":3133.7},{"epoch":26140892,"idl":99.27,"recv":0,"send":0,"writ":0.57,"used":555.18,"free":3134.58},{"epoch":26140893,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.68,"free":3135.08},{"epoch":26140894,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":554.64,"free":3135.11},{"epoch":26140895,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":555.6,"free":3134.16},{"epoch":26140896,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":555.57,"free":3134.19},{"epoch":26140897,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":556.4,"free":3133.36},{"epoch":26140898,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":556.16,"free":3133.6},{"epoch":26140899,"idl":99.73,"recv":0,"send":0,"writ":0.39,"used":555.38,"free":3134.35},{"epoch":26140900,"idl":99.72,"recv":0,"send":0,"writ":0.27,"used":556.07,"free":3133.68},{"epoch":26140901,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":556.12,"free":3133.63},{"epoch":26140902,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":556.56,"free":3133.18},{"epoch":26140903,"idl":98.66,"recv":0.01,"send":0.01,"writ":0.15,"used":556.17,"free":3133.57},{"epoch":26140904,"idl":98.88,"recv":0,"send":0,"writ":0.18,"used":556.02,"free":3133.71},{"epoch":26140905,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.28,"used":556.12,"free":3133.63},{"epoch":26140906,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":556.12,"free":3133.62},{"epoch":26140907,"idl":99.68,"recv":0,"send":0,"writ":0.52,"used":556.36,"free":3133.37},{"epoch":26140908,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":556.07,"free":3133.66},{"epoch":26140909,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":556.12,"free":3133.6},{"epoch":26140910,"idl":98.86,"recv":0,"send":0,"writ":0.26,"used":556.44,"free":3133.3},{"epoch":26140911,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.39,"free":3133.35},{"epoch":26140912,"idl":99.65,"recv":0,"send":0,"writ":0.5,"used":557.04,"free":3132.69},{"epoch":26140913,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":556.28,"free":3133.44},{"epoch":26140914,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":556.42,"free":3133.3},{"epoch":26140915,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":556.51,"free":3133.22},{"epoch":26140916,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":556.35,"free":3133.38},{"epoch":26140917,"idl":95.2,"recv":0.43,"send":0.01,"writ":78.64,"used":563.69,"free":3126.42},{"epoch":26140918,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":558.62,"free":3130.31},{"epoch":26140919,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":558.57,"free":3130.35},{"epoch":26140920,"idl":99.69,"recv":0,"send":0,"writ":0.27,"used":558.89,"free":3130.05},{"epoch":26140921,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":558.95,"free":3129.98},{"epoch":26140922,"idl":99.69,"recv":0,"send":0,"writ":0.35,"used":558.23,"free":3130.73},{"epoch":26140923,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":556.49,"free":3132.51},{"epoch":26140924,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":556.43,"free":3132.56},{"epoch":26140925,"idl":99.69,"recv":0,"send":0,"writ":0.28,"used":555.16,"free":3133.85},{"epoch":26140926,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":555.07,"free":3133.93},{"epoch":26140927,"idl":98.56,"recv":0,"send":0,"writ":0.32,"used":555.47,"free":3133.54},{"epoch":26140928,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":556.47,"free":3132.57},{"epoch":26140929,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":556.25,"free":3132.78},{"epoch":26140930,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":556.34,"free":3132.72},{"epoch":26140931,"idl":99.46,"recv":0,"send":0,"writ":0.2,"used":556.3,"free":3132.76},{"epoch":26140932,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":556.26,"free":3132.79},{"epoch":26140933,"idl":99.52,"recv":0,"send":0,"writ":0.56,"used":556.44,"free":3132.6},{"epoch":26140934,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":555.49,"free":3133.55},{"epoch":26140935,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":555.88,"free":3133.18},{"epoch":26140936,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":555.84,"free":3133.22},{"epoch":26140937,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":556.04,"free":3133.01},{"epoch":26140938,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":556.67,"free":3132.38},{"epoch":26140939,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":556.22,"free":3132.82},{"epoch":26140940,"idl":99.69,"recv":0,"send":0,"writ":0.27,"used":556.58,"free":3132.48},{"epoch":26140941,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":556.57,"free":3132.48},{"epoch":26140942,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":556.54,"free":3132.51},{"epoch":26140943,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":556.84,"free":3132.2},{"epoch":26140944,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":556.52,"free":3132.52},{"epoch":26140945,"idl":98.7,"recv":0,"send":0,"writ":0.29,"used":555.63,"free":3133.42},{"epoch":26140946,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":555.57,"free":3133.48},{"epoch":26140947,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":555.52,"free":3133.52},{"epoch":26140948,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":555.97,"free":3133.07},{"epoch":26140949,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":555.76,"free":3133.27},{"epoch":26140950,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":556.1,"free":3132.95},{"epoch":26140951,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":556.06,"free":3132.98},{"epoch":26140952,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":556.01,"free":3133.03},{"epoch":26140953,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":556.6,"free":3132.44},{"epoch":26140954,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":556.72,"free":3132.31},{"epoch":26140955,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":556.62,"free":3132.43},{"epoch":26140956,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":556.54,"free":3132.51},{"epoch":26140957,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":556.5,"free":3132.54},{"epoch":26140958,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":556.8,"free":3132.24},{"epoch":26140959,"idl":99.4,"recv":0,"send":0,"writ":0.3,"used":556.76,"free":3132.25},{"epoch":26140960,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":555.85,"free":3133.18},{"epoch":26140961,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":555.77,"free":3133.26},{"epoch":26140962,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":555.72,"free":3133.3},{"epoch":26140963,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.41,"used":556.21,"free":3132.81},{"epoch":26140964,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":556.12,"free":3132.91},{"epoch":26140965,"idl":98.16,"recv":0,"send":0,"writ":0.28,"used":556.74,"free":3132.31},{"epoch":26140966,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":556.72,"free":3132.33},{"epoch":26140967,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.69,"free":3132.36},{"epoch":26140968,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":557.18,"free":3131.86},{"epoch":26140969,"idl":99.81,"recv":0,"send":0,"writ":0.37,"used":556.56,"free":3132.48},{"epoch":26140970,"idl":99.18,"recv":0,"send":0,"writ":0.27,"used":556.78,"free":3132.28},{"epoch":26140971,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":556.73,"free":3132.32},{"epoch":26140972,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":556.77,"free":3132.28},{"epoch":26140973,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":556.83,"free":3132.21},{"epoch":26140974,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":556.92,"free":3132.12},{"epoch":26140975,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":556.76,"free":3132.3},{"epoch":26140976,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":556.71,"free":3132.34},{"epoch":26140977,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.79,"free":3132.26},{"epoch":26140978,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":556.81,"free":3132.23},{"epoch":26140979,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":556.94,"free":3132.1},{"epoch":26140980,"idl":99.7,"recv":0,"send":0,"writ":0.27,"used":555.52,"free":3133.53},{"epoch":26140981,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":555.48,"free":3133.57},{"epoch":26140982,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":555.61,"free":3133.44},{"epoch":26140983,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":555.56,"free":3133.48},{"epoch":26140984,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":556.65,"free":3132.39},{"epoch":26140985,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":555.27,"free":3133.78},{"epoch":26140986,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":555.22,"free":3133.83},{"epoch":26140987,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":555.53,"free":3133.52},{"epoch":26140988,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":555.57,"free":3133.47},{"epoch":26140989,"idl":99.55,"recv":0,"send":0,"writ":0.55,"used":557.27,"free":3131.75},{"epoch":26140990,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":556.72,"free":3132.31},{"epoch":26140991,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":556.73,"free":3132.29},{"epoch":26140992,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.82,"free":3132.2},{"epoch":26140993,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":556.76,"free":3132.25},{"epoch":26140994,"idl":99.66,"recv":0,"send":0,"writ":0.5,"used":557.16,"free":3131.86},{"epoch":26140995,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":556.55,"free":3132.48},{"epoch":26140996,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":556.49,"free":3132.53},{"epoch":26140997,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":556.56,"free":3132.46},{"epoch":26140998,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":556.51,"free":3132.5},{"epoch":26140999,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":556.8,"free":3132.21},{"epoch":26141000,"idl":99.72,"recv":0,"send":0,"writ":0.53,"used":556.96,"free":3132.06},{"epoch":26141001,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":557.08,"free":3131.94},{"epoch":26141002,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":557.05,"free":3131.97},{"epoch":26141003,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.01,"free":3132},{"epoch":26141004,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":556.98,"free":3132.03},{"epoch":26141005,"idl":98.26,"recv":0,"send":0,"writ":15.93,"used":558.03,"free":3131.48},{"epoch":26141006,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":556.35,"free":3132.7},{"epoch":26141007,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.34,"free":3132.7},{"epoch":26141008,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":556.3,"free":3132.74},{"epoch":26141009,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":556.26,"free":3132.77},{"epoch":26141010,"idl":99.63,"recv":0,"send":0,"writ":0.68,"used":557.25,"free":3131.8},{"epoch":26141011,"idl":99.79,"recv":0,"send":0,"writ":0.13,"used":557.06,"free":3131.99},{"epoch":26141012,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":557.08,"free":3131.97},{"epoch":26141013,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":557.04,"free":3132},{"epoch":26141014,"idl":93.98,"recv":0,"send":0,"writ":31.62,"used":567.96,"free":3115.37},{"epoch":26141015,"idl":99.52,"recv":0,"send":0,"writ":35.17,"used":559.56,"free":3129.32},{"epoch":26141016,"idl":98.6,"recv":0,"send":0,"writ":0.14,"used":559.82,"free":3129.13},{"epoch":26141017,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":559.77,"free":3129.18},{"epoch":26141018,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":559.72,"free":3129.22},{"epoch":26141019,"idl":99.65,"recv":0,"send":0,"writ":0.31,"used":559.4,"free":3129.55},{"epoch":26141020,"idl":99.63,"recv":0,"send":0,"writ":0.69,"used":557.5,"free":3131.59},{"epoch":26141021,"idl":99.8,"recv":0,"send":0,"writ":0.21,"used":557.37,"free":3131.71},{"epoch":26141022,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.34,"free":3131.74},{"epoch":26141023,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.15,"used":557.29,"free":3131.78},{"epoch":26141024,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":557.29,"free":3131.78},{"epoch":26141025,"idl":99.55,"recv":0,"send":0,"writ":0.54,"used":557.08,"free":3132},{"epoch":26141026,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":556.87,"free":3132.21},{"epoch":26141027,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":556.81,"free":3132.27},{"epoch":26141028,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":556.78,"free":3132.3},{"epoch":26141029,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":556.79,"free":3132.28},{"epoch":26141030,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":557.36,"free":3131.73},{"epoch":26141031,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":557.59,"free":3131.5},{"epoch":26141032,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":557.55,"free":3131.53},{"epoch":26141033,"idl":99.45,"recv":0,"send":0,"writ":0.16,"used":557.51,"free":3131.57},{"epoch":26141034,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":557.55,"free":3131.52},{"epoch":26141035,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":557.77,"free":3131.32},{"epoch":26141036,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":557.36,"free":3131.72},{"epoch":26141037,"idl":99.25,"recv":0,"send":0,"writ":0.15,"used":556.59,"free":3132.5},{"epoch":26141038,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":556.28,"free":3132.82},{"epoch":26141039,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.33,"free":3132.76},{"epoch":26141040,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":556.41,"free":3132.7},{"epoch":26141041,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":556.21,"free":3132.9},{"epoch":26141042,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":555.83,"free":3133.28},{"epoch":26141043,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":555.78,"free":3133.32},{"epoch":26141044,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":555.88,"free":3133.21},{"epoch":26141045,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":555.42,"free":3133.69},{"epoch":26141046,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":556.9,"free":3132.21},{"epoch":26141047,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":556.56,"free":3132.55},{"epoch":26141048,"idl":99.64,"recv":0,"send":0,"writ":0.14,"used":556.51,"free":3132.59},{"epoch":26141049,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":556.64,"free":3132.48},{"epoch":26141050,"idl":99.87,"recv":0,"send":0,"writ":0.26,"used":556.64,"free":3132.5},{"epoch":26141051,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":556.78,"free":3132.36},{"epoch":26141052,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.29,"free":3132.85},{"epoch":26141053,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.32,"free":3132.81},{"epoch":26141054,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":556.39,"free":3132.74},{"epoch":26141055,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":556.68,"free":3132.46},{"epoch":26141056,"idl":99.74,"recv":0,"send":0,"writ":0.53,"used":556.89,"free":3132.24},{"epoch":26141057,"idl":99.9,"recv":0,"send":0,"writ":0.26,"used":556.26,"free":3132.87},{"epoch":26141058,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":556.38,"free":3132.75},{"epoch":26141059,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":556.36,"free":3132.76},{"epoch":26141060,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":556.59,"free":3132.55},{"epoch":26141061,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":556.52,"free":3132.62},{"epoch":26141062,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":555.83,"free":3133.32},{"epoch":26141063,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":555.87,"free":3133.28},{"epoch":26141064,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":555.81,"free":3133.33},{"epoch":26141065,"idl":99.35,"recv":0,"send":0,"writ":0.29,"used":555.08,"free":3134.07},{"epoch":26141066,"idl":96.72,"recv":0,"send":0,"writ":0.44,"used":555.79,"free":3133.36},{"epoch":26141067,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":555.63,"free":3133.51},{"epoch":26141068,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":555.63,"free":3133.51},{"epoch":26141069,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.59,"free":3133.55},{"epoch":26141070,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":556.54,"free":3132.61},{"epoch":26141071,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":556.91,"free":3132.24},{"epoch":26141072,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":556.65,"free":3132.5},{"epoch":26141073,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":556.61,"free":3132.53},{"epoch":26141074,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":556.56,"free":3132.57},{"epoch":26141075,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":556.78,"free":3132.37},{"epoch":26141076,"idl":99.81,"recv":0,"send":0,"writ":0.46,"used":557.04,"free":3132.11},{"epoch":26141077,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":556.89,"free":3132.25},{"epoch":26141078,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.85,"free":3132.29},{"epoch":26141079,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":556.55,"free":3132.57},{"epoch":26141080,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":556.52,"free":3132.61},{"epoch":26141081,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":556.57,"free":3132.56},{"epoch":26141082,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":557.21,"free":3131.92},{"epoch":26141083,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.14,"used":556.82,"free":3132.3},{"epoch":26141084,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":556.62,"free":3132.49},{"epoch":26141085,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":556.03,"free":3133.1},{"epoch":26141086,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":556.14,"free":3132.98},{"epoch":26141087,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":556.79,"free":3132.33},{"epoch":26141088,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":556.05,"free":3133.07},{"epoch":26141089,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.99,"free":3133.12},{"epoch":26141090,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":556.83,"free":3132.3},{"epoch":26141091,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":556.84,"free":3132.29},{"epoch":26141092,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":557.15,"free":3131.97},{"epoch":26141093,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.76,"free":3132.36},{"epoch":26141094,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.76,"free":3132.35},{"epoch":26141095,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":556.64,"free":3132.5},{"epoch":26141096,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.59,"free":3132.54},{"epoch":26141097,"idl":99.79,"recv":0,"send":0,"writ":0.61,"used":557,"free":3132.13},{"epoch":26141098,"idl":99.93,"recv":0.01,"send":0,"writ":0.16,"used":556.73,"free":3132.39},{"epoch":26141099,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":556.83,"free":3132.28},{"epoch":26141100,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":556.91,"free":3132.23},{"epoch":26141101,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.81,"free":3132.32},{"epoch":26141102,"idl":99.75,"recv":0,"send":0,"writ":0.62,"used":557.1,"free":3132.02},{"epoch":26141103,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.86,"free":3132.26},{"epoch":26141104,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":556.85,"free":3132.26},{"epoch":26141105,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":556.83,"free":3132.3},{"epoch":26141106,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.78,"free":3132.35},{"epoch":26141107,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":557.1,"free":3132.02},{"epoch":26141108,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":556.87,"free":3132.24},{"epoch":26141109,"idl":99.84,"recv":0,"send":0,"writ":0.35,"used":556.82,"free":3132.26},{"epoch":26141110,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":556.78,"free":3132.31},{"epoch":26141111,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.75,"free":3132.35},{"epoch":26141112,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":557.14,"free":3131.95},{"epoch":26141113,"idl":99.94,"recv":0,"send":0,"writ":0.28,"used":556.85,"free":3132.23},{"epoch":26141114,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.81,"free":3132.26},{"epoch":26141115,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":556.8,"free":3132.3},{"epoch":26141116,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.75,"free":3132.35},{"epoch":26141117,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":556.79,"free":3132.29},{"epoch":26141118,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":556.83,"free":3132.25},{"epoch":26141119,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.05,"free":3133.02},{"epoch":26141120,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":555.79,"free":3133.31},{"epoch":26141121,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":555.75,"free":3133.34},{"epoch":26141122,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":555.86,"free":3133.23},{"epoch":26141123,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":556.4,"free":3132.68},{"epoch":26141124,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":556.01,"free":3133.07},{"epoch":26141125,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":556.95,"free":3132.14},{"epoch":26141126,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.04,"free":3132.05},{"epoch":26141127,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.07,"free":3132.01},{"epoch":26141128,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":557.37,"free":3131.71},{"epoch":26141129,"idl":99.9,"recv":0.02,"send":0.61,"writ":0.16,"used":556.97,"free":3132.09},{"epoch":26141130,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":557.09,"free":3131.99},{"epoch":26141131,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.08,"free":3132},{"epoch":26141132,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.04,"free":3132.04},{"epoch":26141133,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":557.04,"free":3132.02},{"epoch":26141134,"idl":99.91,"recv":0.01,"send":0.09,"writ":0.19,"used":556.56,"free":3132.5},{"epoch":26141135,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":556.91,"free":3132.17},{"epoch":26141136,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":556.76,"free":3132.31},{"epoch":26141137,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.72,"free":3132.35},{"epoch":26141138,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":557.25,"free":3131.82},{"epoch":26141139,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":557.06,"free":3132},{"epoch":26141140,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":556.32,"free":3132.76},{"epoch":26141141,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":556.24,"free":3132.83},{"epoch":26141142,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.2,"free":3132.87},{"epoch":26141143,"idl":99.74,"recv":0.01,"send":0.01,"writ":0.5,"used":557.03,"free":3132.03},{"epoch":26141144,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":556.41,"free":3132.65},{"epoch":26141145,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":556.73,"free":3132.34},{"epoch":26141146,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.7,"free":3132.37},{"epoch":26141147,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":556.83,"free":3132.23},{"epoch":26141148,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":557.35,"free":3131.7},{"epoch":26141149,"idl":99.93,"recv":0,"send":0,"writ":0.36,"used":556.99,"free":3132.07},{"epoch":26141150,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":557.22,"free":3131.85},{"epoch":26141151,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.22,"free":3131.84},{"epoch":26141152,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":557.3,"free":3131.76},{"epoch":26141153,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":557.25,"free":3131.81},{"epoch":26141154,"idl":99.72,"recv":0,"send":0,"writ":0.6,"used":557.33,"free":3131.72},{"epoch":26141155,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":556.93,"free":3132.14},{"epoch":26141156,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":557.1,"free":3131.98},{"epoch":26141157,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":557.06,"free":3132.02},{"epoch":26141158,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":557.01,"free":3132.06},{"epoch":26141159,"idl":99.76,"recv":0,"send":0,"writ":0.53,"used":557.34,"free":3131.73},{"epoch":26141160,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":557.19,"free":3131.9},{"epoch":26141161,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.33,"free":3131.75},{"epoch":26141162,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":557.3,"free":3131.78},{"epoch":26141163,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.27,"free":3131.81},{"epoch":26141164,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":557.58,"free":3131.49},{"epoch":26141165,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":556.97,"free":3132.12},{"epoch":26141166,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":557.04,"free":3132.04},{"epoch":26141167,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.08,"free":3132},{"epoch":26141168,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":557.03,"free":3132.05},{"epoch":26141169,"idl":99.52,"recv":0,"send":0,"writ":0.71,"used":557.47,"free":3131.58},{"epoch":26141170,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":556.73,"free":3132.33},{"epoch":26141171,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.77,"free":3132.29},{"epoch":26141172,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":556.81,"free":3132.25},{"epoch":26141173,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":556.77,"free":3132.28},{"epoch":26141174,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":557.24,"free":3131.83},{"epoch":26141175,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":557.2,"free":3131.9},{"epoch":26141176,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.25,"free":3131.84},{"epoch":26141177,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":557.31,"free":3131.78},{"epoch":26141178,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":557.27,"free":3131.82},{"epoch":26141179,"idl":99.77,"recv":0,"send":0,"writ":0.43,"used":557.7,"free":3131.38},{"epoch":26141180,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":557.24,"free":3131.85},{"epoch":26141181,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":557.3,"free":3131.81},{"epoch":26141182,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.29,"free":3131.82},{"epoch":26141183,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.26,"free":3131.85},{"epoch":26141184,"idl":99.77,"recv":0,"send":0,"writ":0.4,"used":557.56,"free":3131.54},{"epoch":26141185,"idl":99.81,"recv":0,"send":0.03,"writ":0.43,"used":557.26,"free":3131.85},{"epoch":26141186,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":557.31,"free":3131.81},{"epoch":26141187,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":557.27,"free":3131.84},{"epoch":26141188,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.23,"free":3131.87},{"epoch":26141189,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":557.07,"free":3132.03},{"epoch":26141190,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":555.79,"free":3133.32},{"epoch":26141191,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":555.86,"free":3133.25},{"epoch":26141192,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.82,"free":3133.29},{"epoch":26141193,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.14,"used":555.75,"free":3133.35},{"epoch":26141194,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.76,"free":3133.34},{"epoch":26141195,"idl":99.69,"recv":0,"send":0,"writ":0.66,"used":556.88,"free":3132.23},{"epoch":26141196,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.55,"free":3132.56},{"epoch":26141197,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":556.51,"free":3132.61},{"epoch":26141198,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":556.47,"free":3132.64},{"epoch":26141199,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":556.51,"free":3132.57},{"epoch":26141200,"idl":99.7,"recv":0,"send":0,"writ":0.66,"used":557.38,"free":3131.71},{"epoch":26141201,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.78,"free":3132.31},{"epoch":26141202,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":556.74,"free":3132.35},{"epoch":26141203,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.16,"used":556.69,"free":3132.39},{"epoch":26141204,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":556.68,"free":3132.39},{"epoch":26141205,"idl":94.67,"recv":0.28,"send":0.01,"writ":195.48,"used":568.32,"free":3121.5},{"epoch":26141206,"idl":99.78,"recv":0,"send":0,"writ":63.89,"used":558.91,"free":3130.31},{"epoch":26141207,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":558.87,"free":3130.34},{"epoch":26141208,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":558.83,"free":3130.38},{"epoch":26141209,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":558.88,"free":3130.33},{"epoch":26141210,"idl":99.67,"recv":0,"send":0,"writ":0.77,"used":558.09,"free":3131.15},{"epoch":26141211,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.48,"free":3132.79},{"epoch":26141212,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":556.43,"free":3132.84},{"epoch":26141213,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":556.46,"free":3132.8},{"epoch":26141214,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.52,"free":3132.74},{"epoch":26141215,"idl":99.68,"recv":0,"send":0,"writ":0.68,"used":557.1,"free":3132.17},{"epoch":26141216,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.7,"free":3132.57},{"epoch":26141217,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.65,"free":3132.62},{"epoch":26141218,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":556.72,"free":3132.55},{"epoch":26141219,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":556.79,"free":3132.49},{"epoch":26141220,"idl":99.59,"recv":0,"send":0,"writ":0.69,"used":556.23,"free":3133.06},{"epoch":26141221,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.71,"free":3132.58},{"epoch":26141222,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":556.67,"free":3132.62},{"epoch":26141223,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.79,"free":3132.49},{"epoch":26141224,"idl":99.91,"recv":0.01,"send":0.02,"writ":0.14,"used":556.76,"free":3132.52},{"epoch":26141225,"idl":99.72,"recv":0,"send":0,"writ":0.48,"used":557.12,"free":3132.16},{"epoch":26141226,"idl":99.93,"recv":0,"send":0,"writ":0.37,"used":556.48,"free":3132.8},{"epoch":26141227,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":556.43,"free":3132.85},{"epoch":26141228,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.47,"free":3132.81},{"epoch":26141229,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":556.52,"free":3132.73},{"epoch":26141230,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":556.26,"free":3133.01},{"epoch":26141231,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":557.16,"free":3132.11},{"epoch":26141232,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.67,"free":3132.59},{"epoch":26141233,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.75,"free":3132.51},{"epoch":26141234,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":556.75,"free":3132.5},{"epoch":26141235,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":556.25,"free":3133.02},{"epoch":26141236,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":556.92,"free":3132.35},{"epoch":26141237,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":556.45,"free":3132.81},{"epoch":26141238,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.53,"free":3132.72},{"epoch":26141239,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.49,"free":3132.76},{"epoch":26141240,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":556.22,"free":3133.05},{"epoch":26141241,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":556.7,"free":3132.56},{"epoch":26141242,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":556.43,"free":3132.83},{"epoch":26141243,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.53,"free":3132.73},{"epoch":26141244,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":556.48,"free":3132.77},{"epoch":26141245,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":556.72,"free":3132.55},{"epoch":26141246,"idl":99.77,"recv":0,"send":0,"writ":0.49,"used":557.01,"free":3132.26},{"epoch":26141247,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":556.7,"free":3132.56},{"epoch":26141248,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.79,"free":3132.47},{"epoch":26141249,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.75,"free":3132.5},{"epoch":26141250,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":555.99,"free":3133.28},{"epoch":26141251,"idl":99.78,"recv":0,"send":0,"writ":0.45,"used":556.53,"free":3132.73},{"epoch":26141252,"idl":99.91,"recv":0,"send":0,"writ":0.28,"used":555.75,"free":3133.52},{"epoch":26141253,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":555.8,"free":3133.46},{"epoch":26141254,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":555.76,"free":3133.5},{"epoch":26141255,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":556.94,"free":3132.33},{"epoch":26141256,"idl":99.77,"recv":0,"send":0,"writ":0.42,"used":557.28,"free":3131.99},{"epoch":26141257,"idl":99.92,"recv":0,"send":0,"writ":0.28,"used":557.01,"free":3132.25},{"epoch":26141258,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.02,"free":3132.23},{"epoch":26141259,"idl":99.88,"recv":0,"send":0,"writ":0.39,"used":556.48,"free":3132.75},{"epoch":26141260,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":556.46,"free":3132.79},{"epoch":26141261,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":556.77,"free":3132.47},{"epoch":26141262,"idl":99.89,"recv":0,"send":0,"writ":0.4,"used":556.98,"free":3132.26},{"epoch":26141263,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.14,"used":557,"free":3132.24},{"epoch":26141264,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.91,"free":3132.34},{"epoch":26141265,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":556.98,"free":3132.29},{"epoch":26141266,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":557.26,"free":3132.01},{"epoch":26141267,"idl":99.87,"recv":0,"send":0,"writ":0.44,"used":556.05,"free":3133.22},{"epoch":26141268,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":555.99,"free":3133.27},{"epoch":26141269,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":555.95,"free":3133.3},{"epoch":26141270,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":555.46,"free":3133.81},{"epoch":26141271,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.49,"free":3133.78},{"epoch":26141272,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":556.93,"free":3132.34},{"epoch":26141273,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.73,"free":3132.53},{"epoch":26141274,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":556.66,"free":3132.59},{"epoch":26141275,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":556,"free":3133.27},{"epoch":26141276,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":556.05,"free":3133.22},{"epoch":26141277,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":556.35,"free":3132.91},{"epoch":26141278,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":555.95,"free":3133.31},{"epoch":26141279,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.91,"free":3133.34},{"epoch":26141280,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":556.22,"free":3133.04},{"epoch":26141281,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":556.29,"free":3132.97},{"epoch":26141282,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":557.21,"free":3132.05},{"epoch":26141283,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.69,"free":3132.56},{"epoch":26141284,"idl":99.92,"recv":0.01,"send":0,"writ":0.16,"used":556.7,"free":3132.54},{"epoch":26141285,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":557.28,"free":3131.99},{"epoch":26141286,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":557.25,"free":3132.02},{"epoch":26141287,"idl":99.79,"recv":0,"send":0,"writ":0.48,"used":557.64,"free":3131.62},{"epoch":26141288,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":556.66,"free":3132.59},{"epoch":26141289,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":556.99,"free":3132.26},{"epoch":26141290,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":557.01,"free":3132.26},{"epoch":26141291,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":556.96,"free":3132.3},{"epoch":26141292,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":557.37,"free":3131.89},{"epoch":26141293,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":556.95,"free":3132.31},{"epoch":26141294,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.99,"free":3132.26},{"epoch":26141295,"idl":99.73,"recv":0,"send":0,"writ":0.36,"used":556.01,"free":3133.25},{"epoch":26141296,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":555.94,"free":3133.32},{"epoch":26141297,"idl":99.87,"recv":0,"send":0,"writ":0.24,"used":556.13,"free":3133.13},{"epoch":26141298,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":557.62,"free":3131.64},{"epoch":26141299,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":557.22,"free":3132.03},{"epoch":26141300,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":557,"free":3132.27},{"epoch":26141301,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.91,"free":3132.35},{"epoch":26141302,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.94,"free":3132.32},{"epoch":26141303,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":557.55,"free":3131.71},{"epoch":26141304,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.19,"free":3132.06},{"epoch":26141305,"idl":99.82,"recv":0,"send":0.01,"writ":0.3,"used":556.9,"free":3132.36},{"epoch":26141306,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.94,"free":3132.32},{"epoch":26141307,"idl":99.05,"recv":0,"send":0,"writ":0.14,"used":557,"free":3132.26},{"epoch":26141308,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":556.48,"free":3132.78},{"epoch":26141309,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.91,"free":3133.34},{"epoch":26141310,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":556.13,"free":3133.14},{"epoch":26141311,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":556.3,"free":3132.97},{"epoch":26141312,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":556.27,"free":3132.99},{"epoch":26141313,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":556.9,"free":3132.36},{"epoch":26141314,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":556.66,"free":3132.59},{"epoch":26141315,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":557.21,"free":3132.06},{"epoch":26141316,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":557.25,"free":3132.01},{"epoch":26141317,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.21,"free":3132.04},{"epoch":26141318,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":557.53,"free":3131.72},{"epoch":26141319,"idl":99.83,"recv":0,"send":0,"writ":0.55,"used":556.92,"free":3132.3},{"epoch":26141320,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":556.88,"free":3132.38},{"epoch":26141321,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.75,"free":3132.5},{"epoch":26141322,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.71,"free":3132.54},{"epoch":26141323,"idl":99.74,"recv":0.01,"send":0.01,"writ":0.49,"used":557.51,"free":3131.73},{"epoch":26141324,"idl":99.88,"recv":0,"send":0,"writ":0.25,"used":557.11,"free":3132.13},{"epoch":26141325,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":557.25,"free":3132.01},{"epoch":26141326,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":557.21,"free":3132.04},{"epoch":26141327,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":557.16,"free":3132.09},{"epoch":26141328,"idl":99.77,"recv":0,"send":0,"writ":0.47,"used":557.44,"free":3131.81},{"epoch":26141329,"idl":99.89,"recv":0,"send":0,"writ":0.22,"used":556.76,"free":3132.47},{"epoch":26141330,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":556.98,"free":3132.28},{"epoch":26141331,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.93,"free":3132.32},{"epoch":26141332,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.87,"free":3132.38},{"epoch":26141333,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":557.01,"free":3132.23},{"epoch":26141334,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":557.57,"free":3131.67},{"epoch":26141335,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":557.19,"free":3132.07},{"epoch":26141336,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.15,"free":3132.11},{"epoch":26141337,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":557.18,"free":3132.07},{"epoch":26141338,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.25,"free":3132.01},{"epoch":26141339,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":557.56,"free":3131.69},{"epoch":26141340,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":557.21,"free":3132.07},{"epoch":26141341,"idl":99.9,"recv":0,"send":0,"writ":0.12,"used":557.14,"free":3132.13},{"epoch":26141342,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":557.22,"free":3132.05},{"epoch":26141343,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.23,"free":3132.04},{"epoch":26141344,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":556.67,"free":3132.59},{"epoch":26141345,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":556.3,"free":3132.97},{"epoch":26141346,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.19,"free":3133.09},{"epoch":26141347,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.29,"free":3132.97},{"epoch":26141348,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.26,"free":3133.01},{"epoch":26141349,"idl":99.66,"recv":0,"send":0,"writ":0.73,"used":556.8,"free":3132.43},{"epoch":26141350,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":556.18,"free":3133.07},{"epoch":26141351,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":556.21,"free":3133.04},{"epoch":26141352,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.27,"free":3132.98},{"epoch":26141353,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":556.21,"free":3133.03},{"epoch":26141354,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":556.81,"free":3132.43},{"epoch":26141355,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":556.61,"free":3132.64},{"epoch":26141356,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.75,"free":3132.49},{"epoch":26141357,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":556.73,"free":3132.51},{"epoch":26141358,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":556.69,"free":3132.55},{"epoch":26141359,"idl":99.72,"recv":0,"send":0,"writ":0.48,"used":556.88,"free":3132.35},{"epoch":26141360,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":555.94,"free":3133.32},{"epoch":26141361,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":556.03,"free":3133.22},{"epoch":26141362,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.97,"free":3133.27},{"epoch":26141363,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":555.93,"free":3133.31},{"epoch":26141364,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":556.24,"free":3132.99},{"epoch":26141365,"idl":99.84,"recv":0,"send":0,"writ":0.45,"used":555.72,"free":3133.53},{"epoch":26141366,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.77,"free":3133.47},{"epoch":26141367,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":555.72,"free":3133.52},{"epoch":26141368,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.68,"free":3133.55},{"epoch":26141369,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":556.03,"free":3133.2},{"epoch":26141370,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":556.48,"free":3132.77},{"epoch":26141371,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.49,"free":3132.75},{"epoch":26141372,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":556.45,"free":3132.79},{"epoch":26141373,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.4,"free":3132.83},{"epoch":26141374,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":556.35,"free":3132.88},{"epoch":26141375,"idl":99.57,"recv":0,"send":0,"writ":0.64,"used":556.51,"free":3132.74},{"epoch":26141376,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.76,"free":3133.48},{"epoch":26141377,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.72,"free":3133.52},{"epoch":26141378,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":555.68,"free":3133.55},{"epoch":26141379,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":556.38,"free":3132.83},{"epoch":26141380,"idl":99.65,"recv":0,"send":0,"writ":0.72,"used":557.08,"free":3132.15},{"epoch":26141381,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":556.25,"free":3132.97},{"epoch":26141382,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":556.21,"free":3133.01},{"epoch":26141383,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.14,"used":556.16,"free":3133.06},{"epoch":26141384,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":556.19,"free":3133.04},{"epoch":26141385,"idl":99.67,"recv":0,"send":0,"writ":0.84,"used":557.24,"free":3132.01},{"epoch":26141386,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.48,"free":3132.77},{"epoch":26141387,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":556.43,"free":3132.81},{"epoch":26141388,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.39,"free":3132.85},{"epoch":26141389,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.47,"free":3132.76},{"epoch":26141390,"idl":99.66,"recv":0,"send":0,"writ":0.7,"used":557.38,"free":3131.87},{"epoch":26141391,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":556.93,"free":3132.31},{"epoch":26141392,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":556.89,"free":3132.35},{"epoch":26141393,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":556.94,"free":3132.29},{"epoch":26141394,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":556.98,"free":3132.25},{"epoch":26141395,"idl":99.62,"recv":0,"send":0,"writ":0.76,"used":556.26,"free":3132.98},{"epoch":26141396,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.17,"free":3133.06},{"epoch":26141397,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.12,"free":3133.11},{"epoch":26141398,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":556.22,"free":3133.01},{"epoch":26141399,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":556.22,"free":3133},{"epoch":26141400,"idl":99.55,"recv":0,"send":0,"writ":0.61,"used":556.86,"free":3132.38},{"epoch":26141401,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":557.13,"free":3132.1},{"epoch":26141402,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":557.14,"free":3132.09},{"epoch":26141403,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":557.24,"free":3131.99},{"epoch":26141404,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":557.19,"free":3132.03},{"epoch":26141405,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":556.92,"free":3132.31},{"epoch":26141406,"idl":99.69,"recv":0,"send":0,"writ":0.61,"used":556.99,"free":3132.23},{"epoch":26141407,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.68,"free":3132.55},{"epoch":26141408,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":556.75,"free":3132.47},{"epoch":26141409,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":556.69,"free":3132.51},{"epoch":26141410,"idl":99.82,"recv":0,"send":0,"writ":0.41,"used":556.9,"free":3132.31},{"epoch":26141411,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":556.04,"free":3133.17},{"epoch":26141412,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":555.73,"free":3133.47},{"epoch":26141413,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":555.72,"free":3133.48},{"epoch":26141414,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":555.68,"free":3133.53},{"epoch":26141415,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":556.62,"free":3132.61},{"epoch":26141416,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":557.23,"free":3132},{"epoch":26141417,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":556.98,"free":3132.24},{"epoch":26141418,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":556.94,"free":3132.28},{"epoch":26141419,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.89,"free":3132.32},{"epoch":26141420,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":556.9,"free":3132.33},{"epoch":26141421,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":557.35,"free":3131.88},{"epoch":26141422,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.15,"used":556.94,"free":3132.27},{"epoch":26141423,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":556.86,"free":3132.35},{"epoch":26141424,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":556.88,"free":3132.33},{"epoch":26141425,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":556.27,"free":3132.96},{"epoch":26141426,"idl":99.69,"recv":0,"send":0.01,"writ":0.56,"used":557.16,"free":3132.06},{"epoch":26141427,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":556.86,"free":3132.35},{"epoch":26141428,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":556.89,"free":3132.32},{"epoch":26141429,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":556.95,"free":3132.26},{"epoch":26141430,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":556.57,"free":3132.65},{"epoch":26141431,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":556.88,"free":3132.34},{"epoch":26141432,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":556.89,"free":3132.33},{"epoch":26141433,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.97,"free":3132.24},{"epoch":26141434,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":556.94,"free":3132.27},{"epoch":26141435,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":556.91,"free":3132.31},{"epoch":26141436,"idl":99.7,"recv":0,"send":0,"writ":0.51,"used":557.22,"free":3132},{"epoch":26141437,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":556.83,"free":3132.39},{"epoch":26141438,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":556.95,"free":3132.26},{"epoch":26141439,"idl":99.68,"recv":0,"send":0,"writ":0.33,"used":556.97,"free":3132.22},{"epoch":26141440,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":555.99,"free":3133.21},{"epoch":26141441,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":556.29,"free":3132.91},{"epoch":26141442,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":556.13,"free":3133.07},{"epoch":26141443,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.17,"used":556.22,"free":3132.98},{"epoch":26141444,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":556.19,"free":3133},{"epoch":26141445,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":556.67,"free":3132.54},{"epoch":26141446,"idl":99.79,"recv":0,"send":0,"writ":0.17,"used":556.63,"free":3132.58},{"epoch":26141447,"idl":99.65,"recv":0,"send":0,"writ":0.58,"used":557.5,"free":3131.7},{"epoch":26141448,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":556.98,"free":3132.22},{"epoch":26141449,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.92,"free":3132.27},{"epoch":26141450,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":556.91,"free":3132.3},{"epoch":26141451,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.93,"free":3132.27},{"epoch":26141452,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":557.62,"free":3131.57},{"epoch":26141453,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":556.92,"free":3132.27},{"epoch":26141454,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.88,"free":3132.32},{"epoch":26141455,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":556.62,"free":3132.6},{"epoch":26141456,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.71,"free":3132.51},{"epoch":26141457,"idl":99.65,"recv":0,"send":0,"writ":0.5,"used":557.51,"free":3131.69},{"epoch":26141458,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":557.14,"free":3132.07},{"epoch":26141459,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":557.1,"free":3132.1},{"epoch":26141460,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":556.91,"free":3132.31},{"epoch":26141461,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":556.99,"free":3132.22},{"epoch":26141462,"idl":99.7,"recv":0,"send":0,"writ":0.51,"used":557.21,"free":3132},{"epoch":26141463,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":556.4,"free":3132.81},{"epoch":26141464,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":556.36,"free":3132.84},{"epoch":26141465,"idl":99.74,"recv":0,"send":0,"writ":0.38,"used":555.94,"free":3133.28},{"epoch":26141466,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":555.97,"free":3133.24},{"epoch":26141467,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":556.51,"free":3132.7},{"epoch":26141468,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":556.86,"free":3132.35},{"epoch":26141469,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":556.6,"free":3132.58},{"epoch":26141470,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":557.02,"free":3132.18},{"epoch":26141471,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.96,"free":3132.23},{"epoch":26141472,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":557.34,"free":3131.85},{"epoch":26141473,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":557.12,"free":3132.06},{"epoch":26141474,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":557.11,"free":3132.07},{"epoch":26141475,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":556.29,"free":3132.91},{"epoch":26141476,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":556.22,"free":3132.97},{"epoch":26141477,"idl":99.65,"recv":0,"send":0,"writ":0.53,"used":556.59,"free":3132.59},{"epoch":26141478,"idl":99.83,"recv":0,"send":0,"writ":0.23,"used":557.09,"free":3132.08},{"epoch":26141479,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":557.15,"free":3132.03},{"epoch":26141480,"idl":99.67,"recv":0,"send":0,"writ":0.27,"used":556.25,"free":3132.94},{"epoch":26141481,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":556.18,"free":3133.01},{"epoch":26141482,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":556.14,"free":3133.04},{"epoch":26141483,"idl":99.62,"recv":0,"send":0,"writ":0.56,"used":557.12,"free":3132.05},{"epoch":26141484,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":556.92,"free":3132.25},{"epoch":26141485,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":557.2,"free":3131.99},{"epoch":26141486,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":557.17,"free":3132.02},{"epoch":26141487,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":557.12,"free":3132.06},{"epoch":26141488,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":557.43,"free":3131.74},{"epoch":26141489,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":557.16,"free":3132},{"epoch":26141490,"idl":99.71,"recv":0,"send":0,"writ":0.28,"used":557.42,"free":3131.76},{"epoch":26141491,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":557.37,"free":3131.81},{"epoch":26141492,"idl":99.73,"recv":0,"send":0,"writ":0.16,"used":557.33,"free":3131.85},{"epoch":26141493,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":557.64,"free":3131.53},{"epoch":26141494,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.69,"free":3132.48},{"epoch":26141495,"idl":99.73,"recv":0,"send":0,"writ":0.27,"used":556.91,"free":3132.28},{"epoch":26141496,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":556.86,"free":3132.32},{"epoch":26141497,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":556.81,"free":3132.37},{"epoch":26141498,"idl":99.69,"recv":0,"send":0,"writ":0.48,"used":557.21,"free":3131.97},{"epoch":26141499,"idl":99.61,"recv":0,"send":0,"writ":0.37,"used":556.42,"free":3132.72},{"epoch":26141500,"idl":99.66,"recv":0.01,"send":0.02,"writ":0.34,"used":555.17,"free":3134},{"epoch":26141501,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":555.16,"free":3134},{"epoch":26141502,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":555.23,"free":3133.92},{"epoch":26141503,"idl":99.62,"recv":0.01,"send":0.01,"writ":0.54,"used":555.88,"free":3133.27},{"epoch":26141504,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":556.58,"free":3132.56},{"epoch":26141505,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":556.88,"free":3132.28},{"epoch":26141506,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":556.97,"free":3132.19},{"epoch":26141507,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":556.93,"free":3132.22},{"epoch":26141508,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":557.2,"free":3131.95},{"epoch":26141509,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":556.6,"free":3132.54},{"epoch":26141510,"idl":99.76,"recv":0,"send":0,"writ":0.26,"used":556.39,"free":3132.77},{"epoch":26141511,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.47,"free":3132.69},{"epoch":26141512,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.43,"free":3132.72},{"epoch":26141513,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":556.76,"free":3132.39},{"epoch":26141514,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":556.58,"free":3132.56},{"epoch":26141515,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":555.22,"free":3133.96},{"epoch":26141516,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":555.21,"free":3133.96},{"epoch":26141517,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":555.18,"free":3133.99},{"epoch":26141518,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":555.14,"free":3134.03},{"epoch":26141519,"idl":99.61,"recv":0,"send":0,"writ":0.54,"used":556.57,"free":3132.59},{"epoch":26141520,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":556.48,"free":3132.7},{"epoch":26141521,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":556.42,"free":3132.75},{"epoch":26141522,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":556.38,"free":3132.79},{"epoch":26141523,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.14,"used":556.39,"free":3132.78},{"epoch":26141524,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":557.38,"free":3131.78},{"epoch":26141525,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":556.91,"free":3132.27},{"epoch":26141526,"idl":99.8,"recv":0.01,"send":0.82,"writ":0.24,"used":556.8,"free":3132.37},{"epoch":26141527,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":556.58,"free":3132.58},{"epoch":26141528,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.62,"free":3132.53},{"epoch":26141529,"idl":99.59,"recv":0,"send":0,"writ":0.64,"used":557.22,"free":3131.91},{"epoch":26141530,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":556.64,"free":3132.51},{"epoch":26141531,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":556.61,"free":3132.54},{"epoch":26141532,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":556.56,"free":3132.58},{"epoch":26141533,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":556.66,"free":3132.47},{"epoch":26141534,"idl":99.65,"recv":0,"send":0,"writ":0.52,"used":557.19,"free":3131.96},{"epoch":26141535,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":556.39,"free":3132.77},{"epoch":26141536,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":556.34,"free":3132.82},{"epoch":26141537,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":556.09,"free":3133.07},{"epoch":26141538,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":556.2,"free":3132.95},{"epoch":26141539,"idl":99.65,"recv":0,"send":0,"writ":0.49,"used":556.54,"free":3132.6},{"epoch":26141540,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":555.4,"free":3133.77},{"epoch":26141541,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":555.35,"free":3133.84},{"epoch":26141542,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":555.39,"free":3133.81},{"epoch":26141543,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":555.41,"free":3133.78},{"epoch":26141544,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":555.93,"free":3133.25},{"epoch":26141545,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":556.58,"free":3132.62},{"epoch":26141546,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":556.61,"free":3132.6},{"epoch":26141547,"idl":99.78,"recv":0,"send":0,"writ":0.18,"used":556.69,"free":3132.52},{"epoch":26141548,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":556.64,"free":3132.56},{"epoch":26141549,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":556.93,"free":3132.26},{"epoch":26141550,"idl":99.75,"recv":0,"send":0,"writ":0.49,"used":556.37,"free":3132.85},{"epoch":26141551,"idl":99.79,"recv":0,"send":0,"writ":0.16,"used":556.36,"free":3132.85},{"epoch":26141552,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.42,"free":3132.78},{"epoch":26141553,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.39,"free":3132.81},{"epoch":26141554,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":556.35,"free":3132.85},{"epoch":26141555,"idl":99.56,"recv":0,"send":0,"writ":0.68,"used":556.87,"free":3132.34},{"epoch":26141556,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":556.36,"free":3132.85},{"epoch":26141557,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":556.42,"free":3132.78},{"epoch":26141558,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":556.38,"free":3132.82},{"epoch":26141559,"idl":99.66,"recv":0,"send":0,"writ":0.32,"used":556.8,"free":3132.37},{"epoch":26141560,"idl":99.62,"recv":0,"send":0,"writ":0.72,"used":557.22,"free":3131.97},{"epoch":26141561,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.9,"free":3132.28},{"epoch":26141562,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":556.91,"free":3132.27},{"epoch":26141563,"idl":99.81,"recv":0.01,"send":0.01,"writ":0.16,"used":556.87,"free":3132.3},{"epoch":26141564,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":556.81,"free":3132.41},{"epoch":26141565,"idl":99.58,"recv":0,"send":0,"writ":0.68,"used":557.12,"free":3132.12},{"epoch":26141566,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":556.93,"free":3132.3},{"epoch":26141567,"idl":99.52,"recv":0,"send":0,"writ":0.16,"used":556.89,"free":3132.35},{"epoch":26141568,"idl":99.78,"recv":0,"send":0,"writ":0.15,"used":556.85,"free":3132.38},{"epoch":26141569,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.81,"free":3132.41},{"epoch":26141570,"idl":94.86,"recv":0.35,"send":0.01,"writ":78.91,"used":568.81,"free":3120.62},{"epoch":26141571,"idl":99.49,"recv":0,"send":0,"writ":180.74,"used":559.15,"free":3130.64},{"epoch":26141572,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":559.1,"free":3130.68},{"epoch":26141573,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":559.41,"free":3130.37},{"epoch":26141574,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":559.48,"free":3130.3},{"epoch":26141575,"idl":99.63,"recv":0,"send":0,"writ":0.87,"used":559.09,"free":3130.71},{"epoch":26141576,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.75,"free":3133.07},{"epoch":26141577,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":556.77,"free":3133.05},{"epoch":26141578,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":556.84,"free":3132.98},{"epoch":26141579,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":556.8,"free":3133.01},{"epoch":26141580,"idl":99.53,"recv":0,"send":0,"writ":0.51,"used":556.78,"free":3133.05},{"epoch":26141581,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":557.23,"free":3132.6},{"epoch":26141582,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":557.26,"free":3132.56},{"epoch":26141583,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":557.32,"free":3132.49},{"epoch":26141584,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":557.26,"free":3132.54},{"epoch":26141585,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":556.82,"free":3133},{"epoch":26141586,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":557.06,"free":3132.76},{"epoch":26141587,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":556.79,"free":3133.03},{"epoch":26141588,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":556.81,"free":3133},{"epoch":26141589,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":556.77,"free":3133.02},{"epoch":26141590,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":556.51,"free":3133.3},{"epoch":26141591,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":557.02,"free":3132.78},{"epoch":26141592,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":556.8,"free":3133},{"epoch":26141593,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.79,"free":3133},{"epoch":26141594,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.74,"free":3133.05},{"epoch":26141595,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":555.77,"free":3134.04},{"epoch":26141596,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":556.8,"free":3133},{"epoch":26141597,"idl":99.88,"recv":0,"send":0,"writ":0.22,"used":556.57,"free":3133.23},{"epoch":26141598,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.52,"free":3133.28},{"epoch":26141599,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":556.48,"free":3133.31},{"epoch":26141600,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":556.7,"free":3133.11},{"epoch":26141601,"idl":99.76,"recv":0,"send":0,"writ":0.42,"used":557.27,"free":3132.54},{"epoch":26141602,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":557.04,"free":3132.76},{"epoch":26141603,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.99,"free":3132.81},{"epoch":26141604,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.96,"free":3132.84},{"epoch":26141605,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":556.94,"free":3132.87},{"epoch":26141606,"idl":99.75,"recv":0,"send":0,"writ":0.42,"used":557.42,"free":3132.39},{"epoch":26141607,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":557.06,"free":3132.74},{"epoch":26141608,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.02,"free":3132.78},{"epoch":26141609,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":556.97,"free":3132.82},{"epoch":26141610,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":557.02,"free":3132.79},{"epoch":26141611,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":557.41,"free":3132.4},{"epoch":26141612,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":556.8,"free":3133},{"epoch":26141613,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.76,"free":3133.04},{"epoch":26141614,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":556.71,"free":3133.08},{"epoch":26141615,"idl":99.8,"recv":0.03,"send":2.2,"writ":0.52,"used":557.01,"free":3132.79},{"epoch":26141616,"idl":99.8,"recv":0,"send":0.02,"writ":0.4,"used":557.35,"free":3132.43},{"epoch":26141617,"idl":99.88,"recv":0,"send":0,"writ":0.43,"used":557.41,"free":3132.36},{"epoch":26141618,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":557.01,"free":3132.76},{"epoch":26141619,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":556.95,"free":3132.8},{"epoch":26141620,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":556.93,"free":3132.83},{"epoch":26141621,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.06,"free":3132.7},{"epoch":26141622,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":557.77,"free":3132},{"epoch":26141623,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.14,"used":557.24,"free":3132.53},{"epoch":26141624,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":557.18,"free":3132.58},{"epoch":26141625,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":557.02,"free":3132.76},{"epoch":26141626,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":557.06,"free":3132.71},{"epoch":26141627,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":557.52,"free":3132.24},{"epoch":26141628,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":557.22,"free":3132.55},{"epoch":26141629,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":557.17,"free":3132.59},{"epoch":26141630,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":555.19,"free":3134.59},{"epoch":26141631,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":555.06,"free":3134.71},{"epoch":26141632,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":556.84,"free":3132.92},{"epoch":26141633,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":557.18,"free":3132.58},{"epoch":26141634,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.23,"free":3132.53},{"epoch":26141635,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":557.06,"free":3132.71},{"epoch":26141636,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":557,"free":3132.77},{"epoch":26141637,"idl":99.77,"recv":0,"send":0,"writ":0.5,"used":557.84,"free":3131.93},{"epoch":26141638,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":557.16,"free":3132.6},{"epoch":26141639,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":557.25,"free":3132.5},{"epoch":26141640,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":556.25,"free":3133.52},{"epoch":26141641,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.01,"free":3133.76},{"epoch":26141642,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":556.94,"free":3132.82},{"epoch":26141643,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":557.19,"free":3132.57},{"epoch":26141644,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.29,"free":3132.47},{"epoch":26141645,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":557.26,"free":3132.51},{"epoch":26141646,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":557.22,"free":3132.55},{"epoch":26141647,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":557.68,"free":3132.08},{"epoch":26141648,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":557.21,"free":3132.55},{"epoch":26141649,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":557.51,"free":3132.22},{"epoch":26141650,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":557.01,"free":3132.74},{"epoch":26141651,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":556.95,"free":3132.79},{"epoch":26141652,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.9,"free":3132.84},{"epoch":26141653,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":556.57,"free":3133.16},{"epoch":26141654,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.05,"free":3133.68},{"epoch":26141655,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":556.51,"free":3133.24},{"epoch":26141656,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.48,"free":3133.27},{"epoch":26141657,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":556.44,"free":3133.3},{"epoch":26141658,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":556.89,"free":3132.85},{"epoch":26141659,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.54,"free":3133.19},{"epoch":26141660,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":556.52,"free":3133.23},{"epoch":26141661,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.47,"free":3133.28},{"epoch":26141662,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":556.44,"free":3133.3},{"epoch":26141663,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":557.08,"free":3132.66},{"epoch":26141664,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":556.77,"free":3132.96},{"epoch":26141665,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":556.76,"free":3132.99},{"epoch":26141666,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":556.71,"free":3133.03},{"epoch":26141667,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.66,"free":3133.08},{"epoch":26141668,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":556.66,"free":3133.08},{"epoch":26141669,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.02,"free":3133.72},{"epoch":26141670,"idl":99.85,"recv":0,"send":0,"writ":0.42,"used":556.75,"free":3133},{"epoch":26141671,"idl":99.89,"recv":0,"send":0,"writ":0.11,"used":556.69,"free":3133.05},{"epoch":26141672,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":556.66,"free":3133.08},{"epoch":26141673,"idl":99.75,"recv":0,"send":0,"writ":0.42,"used":557.17,"free":3132.57},{"epoch":26141674,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":556.53,"free":3133.2},{"epoch":26141675,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":556.28,"free":3133.47},{"epoch":26141676,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.23,"free":3133.51},{"epoch":26141677,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":556.21,"free":3133.53},{"epoch":26141678,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":556.76,"free":3132.98},{"epoch":26141679,"idl":99.75,"recv":0,"send":0,"writ":0.38,"used":556.95,"free":3132.76},{"epoch":26141680,"idl":99.81,"recv":0,"send":0,"writ":0.35,"used":556.8,"free":3132.95},{"epoch":26141681,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":556.75,"free":3132.99},{"epoch":26141682,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":556.72,"free":3133.02},{"epoch":26141683,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.52,"used":557,"free":3132.73},{"epoch":26141684,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":556.47,"free":3133.28},{"epoch":26141685,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":556.57,"free":3133.19},{"epoch":26141686,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":556.53,"free":3133.23},{"epoch":26141687,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":556.49,"free":3133.26},{"epoch":26141688,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":556.46,"free":3133.29},{"epoch":26141689,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":556.52,"free":3133.22},{"epoch":26141690,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":556.16,"free":3133.6},{"epoch":26141691,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.28,"free":3133.47},{"epoch":26141692,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.3,"free":3133.44},{"epoch":26141693,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.27,"free":3133.47},{"epoch":26141694,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":556.82,"free":3132.92},{"epoch":26141695,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":556.71,"free":3133.05},{"epoch":26141696,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":556.68,"free":3133.08},{"epoch":26141697,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":556.77,"free":3132.98},{"epoch":26141698,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":556.79,"free":3132.95},{"epoch":26141699,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":557.11,"free":3132.62},{"epoch":26141700,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":556.01,"free":3133.74},{"epoch":26141701,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.97,"free":3133.78},{"epoch":26141702,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.93,"free":3133.81},{"epoch":26141703,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.94,"free":3133.8},{"epoch":26141704,"idl":99.75,"recv":0,"send":0,"writ":0.52,"used":556.92,"free":3132.81},{"epoch":26141705,"idl":99.85,"recv":0,"send":0,"writ":0.42,"used":557.01,"free":3132.74},{"epoch":26141706,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":556.96,"free":3132.78},{"epoch":26141707,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.92,"free":3132.82},{"epoch":26141708,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":556.88,"free":3132.85},{"epoch":26141709,"idl":99.64,"recv":0,"send":0,"writ":0.73,"used":557.11,"free":3132.61},{"epoch":26141710,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":557.1,"free":3132.62},{"epoch":26141711,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":556.97,"free":3132.75},{"epoch":26141712,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.94,"free":3132.77},{"epoch":26141713,"idl":99.93,"recv":0,"send":0.01,"writ":0.15,"used":556.9,"free":3132.81},{"epoch":26141714,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":557.28,"free":3132.43},{"epoch":26141715,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":556.74,"free":3132.98},{"epoch":26141716,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.75,"free":3132.97},{"epoch":26141717,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":556.72,"free":3133},{"epoch":26141718,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.68,"free":3133.03},{"epoch":26141719,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":557.05,"free":3132.65},{"epoch":26141720,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":556.41,"free":3133.32},{"epoch":26141721,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":556.45,"free":3133.27},{"epoch":26141722,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":556.51,"free":3133.2},{"epoch":26141723,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.47,"free":3133.24},{"epoch":26141724,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.43,"free":3133.27},{"epoch":26141725,"idl":99.65,"recv":0,"send":0,"writ":0.73,"used":556.76,"free":3132.97},{"epoch":26141726,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":556.38,"free":3133.34},{"epoch":26141727,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.49,"free":3133.23},{"epoch":26141728,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.49,"free":3133.22},{"epoch":26141729,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":556.46,"free":3133.25},{"epoch":26141730,"idl":98.24,"recv":0,"send":0,"writ":0.75,"used":557.02,"free":3132.72},{"epoch":26141731,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":556.16,"free":3133.58},{"epoch":26141732,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":556.2,"free":3133.54},{"epoch":26141733,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.29,"free":3133.44},{"epoch":26141734,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":556.26,"free":3133.47},{"epoch":26141735,"idl":99.73,"recv":0,"send":0,"writ":0.7,"used":556.44,"free":3133.3},{"epoch":26141736,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.96,"free":3133.78},{"epoch":26141737,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":555.92,"free":3133.81},{"epoch":26141738,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":555.97,"free":3133.77},{"epoch":26141739,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":556.77,"free":3132.94},{"epoch":26141740,"idl":99.74,"recv":0,"send":0,"writ":0.71,"used":557.15,"free":3132.57},{"epoch":26141741,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":556.23,"free":3133.49},{"epoch":26141742,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":556.19,"free":3133.52},{"epoch":26141743,"idl":99.92,"recv":0.01,"send":0.03,"writ":0.17,"used":556.23,"free":3133.48},{"epoch":26141744,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":556.28,"free":3133.43},{"epoch":26141745,"idl":99.68,"recv":0,"send":0,"writ":0.77,"used":556.81,"free":3132.91},{"epoch":26141746,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":555.98,"free":3133.74},{"epoch":26141747,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":555.94,"free":3133.77},{"epoch":26141748,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.91,"free":3133.8},{"epoch":26141749,"idl":98.36,"recv":0,"send":0,"writ":0.15,"used":555.97,"free":3133.74},{"epoch":26141750,"idl":99.73,"recv":0,"send":0,"writ":0.73,"used":557.68,"free":3132.04},{"epoch":26141751,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.23,"free":3132.49},{"epoch":26141752,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":557.18,"free":3132.53},{"epoch":26141753,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":557.15,"free":3132.56},{"epoch":26141754,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.11,"free":3132.59},{"epoch":26141755,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":556.88,"free":3132.84},{"epoch":26141756,"idl":99.93,"recv":0,"send":0,"writ":0.34,"used":556.51,"free":3133.2},{"epoch":26141757,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.47,"free":3133.24},{"epoch":26141758,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.43,"free":3133.28},{"epoch":26141759,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":556.39,"free":3133.31},{"epoch":26141760,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":556.04,"free":3133.68},{"epoch":26141761,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":557.31,"free":3132.41},{"epoch":26141762,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":556.99,"free":3132.72},{"epoch":26141763,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":556.95,"free":3132.75},{"epoch":26141764,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":556.91,"free":3132.79},{"epoch":26141765,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":557.14,"free":3132.58},{"epoch":26141766,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":557.54,"free":3132.18},{"epoch":26141767,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":557.26,"free":3132.45},{"epoch":26141768,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":557.22,"free":3132.49},{"epoch":26141769,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":556.69,"free":3132.99},{"epoch":26141770,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":555.94,"free":3133.76},{"epoch":26141771,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":556.6,"free":3133.1},{"epoch":26141772,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.44,"free":3133.25},{"epoch":26141773,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.52,"free":3133.17},{"epoch":26141774,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":556.48,"free":3133.22},{"epoch":26141775,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":556.95,"free":3132.77},{"epoch":26141776,"idl":99.79,"recv":0,"send":0,"writ":0.49,"used":557.42,"free":3132.29},{"epoch":26141777,"idl":99.93,"recv":0,"send":0,"writ":0.25,"used":557.13,"free":3132.58},{"epoch":26141778,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":557.18,"free":3132.52},{"epoch":26141779,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.24,"free":3132.46},{"epoch":26141780,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":557.22,"free":3132.49},{"epoch":26141781,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":557.43,"free":3132.29},{"epoch":26141782,"idl":99.93,"recv":0,"send":0.01,"writ":0.21,"used":556.89,"free":3132.82},{"epoch":26141783,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":556.98,"free":3132.72},{"epoch":26141784,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":556.99,"free":3132.71},{"epoch":26141785,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":556.25,"free":3133.47},{"epoch":26141786,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":557.16,"free":3132.56},{"epoch":26141787,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":557.14,"free":3132.57},{"epoch":26141788,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":557.1,"free":3132.6},{"epoch":26141789,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":557.22,"free":3132.48},{"epoch":26141790,"idl":99.84,"recv":0,"send":0,"writ":0.37,"used":557,"free":3132.72},{"epoch":26141791,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":557.57,"free":3132.14},{"epoch":26141792,"idl":99.92,"recv":0,"send":0,"writ":0.36,"used":557.17,"free":3132.55},{"epoch":26141793,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":557.13,"free":3132.59},{"epoch":26141794,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.16,"free":3132.56},{"epoch":26141795,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":556.64,"free":3133.09},{"epoch":26141796,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":556.5,"free":3133.24},{"epoch":26141797,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":557.58,"free":3132.15},{"epoch":26141798,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.15,"free":3132.57},{"epoch":26141799,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":557.13,"free":3132.57},{"epoch":26141800,"idl":99.85,"recv":0,"send":0,"writ":0.4,"used":557.18,"free":3132.53},{"epoch":26141801,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":557.25,"free":3132.46},{"epoch":26141802,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":557.75,"free":3131.95},{"epoch":26141803,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.17,"used":557.41,"free":3132.29},{"epoch":26141804,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":557.05,"free":3132.65},{"epoch":26141805,"idl":99.77,"recv":0,"send":0,"writ":0.36,"used":556.16,"free":3133.56},{"epoch":26141806,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.24,"free":3133.47},{"epoch":26141807,"idl":99.74,"recv":0,"send":0,"writ":0.63,"used":556.87,"free":3132.83},{"epoch":26141808,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":556.68,"free":3133.01},{"epoch":26141809,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":556.65,"free":3133.04},{"epoch":26141810,"idl":99.89,"recv":0,"send":0,"writ":0.35,"used":556.4,"free":3133.32},{"epoch":26141811,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":556.36,"free":3133.36},{"epoch":26141812,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":556.82,"free":3132.89},{"epoch":26141813,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":556.5,"free":3133.21},{"epoch":26141814,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.46,"free":3133.24},{"epoch":26141815,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":555.72,"free":3133.99},{"epoch":26141816,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":555.68,"free":3134.04},{"epoch":26141817,"idl":99.8,"recv":0,"send":0,"writ":0.45,"used":556.3,"free":3133.41},{"epoch":26141818,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":556.49,"free":3133.21},{"epoch":26141819,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.48,"free":3133.21},{"epoch":26141820,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":555.74,"free":3133.97},{"epoch":26141821,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.7,"free":3134.01},{"epoch":26141822,"idl":99.77,"recv":0,"send":0,"writ":0.49,"used":556.26,"free":3133.44},{"epoch":26141823,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":556.61,"free":3133.11},{"epoch":26141824,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.72,"free":3133},{"epoch":26141825,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":556.51,"free":3133.23},{"epoch":26141826,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.46,"free":3133.27},{"epoch":26141827,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":556.8,"free":3132.93},{"epoch":26141828,"idl":99.93,"recv":0,"send":0,"writ":0.38,"used":556.63,"free":3133.09},{"epoch":26141829,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":555.69,"free":3134.01},{"epoch":26141830,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":555.58,"free":3134.13},{"epoch":26141831,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":555.5,"free":3134.21},{"epoch":26141832,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.46,"free":3134.24},{"epoch":26141833,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":556.75,"free":3132.95},{"epoch":26141834,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.91,"free":3133.8},{"epoch":26141835,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":556.18,"free":3133.55},{"epoch":26141836,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.24,"free":3133.49},{"epoch":26141837,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":556.68,"free":3133.04},{"epoch":26141838,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":557.07,"free":3132.65},{"epoch":26141839,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.63,"free":3133.09},{"epoch":26141840,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":556.85,"free":3132.88},{"epoch":26141841,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":556.94,"free":3132.79},{"epoch":26141842,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":556.98,"free":3132.75},{"epoch":26141843,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":557.02,"free":3132.7},{"epoch":26141844,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":556.41,"free":3133.3},{"epoch":26141845,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":556.63,"free":3133.09},{"epoch":26141846,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.6,"free":3133.12},{"epoch":26141847,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.69,"free":3133.02},{"epoch":26141848,"idl":99.76,"recv":0,"send":0,"writ":0.51,"used":556.77,"free":3132.95},{"epoch":26141849,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":555.94,"free":3133.77},{"epoch":26141850,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":556.66,"free":3133.07},{"epoch":26141851,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.63,"free":3133.09},{"epoch":26141852,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.59,"free":3133.13},{"epoch":26141853,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":557.06,"free":3132.65},{"epoch":26141854,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.73,"free":3132.97},{"epoch":26141855,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":556.49,"free":3133.24},{"epoch":26141856,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":556.45,"free":3133.27},{"epoch":26141857,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.41,"free":3133.31},{"epoch":26141858,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":556.83,"free":3132.88},{"epoch":26141859,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":556.73,"free":3132.96},{"epoch":26141860,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":556.5,"free":3133.2},{"epoch":26141861,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.46,"free":3133.24},{"epoch":26141862,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":556.43,"free":3133.27},{"epoch":26141863,"idl":99.72,"recv":0.01,"send":0.01,"writ":0.41,"used":556.69,"free":3133},{"epoch":26141864,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":555.84,"free":3133.86},{"epoch":26141865,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":556.75,"free":3132.96},{"epoch":26141866,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":556.72,"free":3133},{"epoch":26141867,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.68,"free":3133.03},{"epoch":26141868,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.64,"free":3133.06},{"epoch":26141869,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":556.67,"free":3133.03},{"epoch":26141870,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":556.18,"free":3133.53},{"epoch":26141871,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":556.25,"free":3133.46},{"epoch":26141872,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.22,"free":3133.49},{"epoch":26141873,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":556.18,"free":3133.53},{"epoch":26141874,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":557.02,"free":3132.68},{"epoch":26141875,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":556.37,"free":3133.35},{"epoch":26141876,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.42,"free":3133.31},{"epoch":26141877,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":556.46,"free":3133.26},{"epoch":26141878,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.43,"free":3133.29},{"epoch":26141879,"idl":99.81,"recv":0,"send":0,"writ":0.5,"used":557.01,"free":3132.7},{"epoch":26141880,"idl":99.84,"recv":0,"send":0,"writ":0.35,"used":556.87,"free":3132.86},{"epoch":26141881,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":556.83,"free":3132.89},{"epoch":26141882,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.95,"free":3132.77},{"epoch":26141883,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":556.95,"free":3132.77},{"epoch":26141884,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":556.99,"free":3132.72},{"epoch":26141885,"idl":99.85,"recv":0,"send":0,"writ":0.43,"used":556.7,"free":3133.03},{"epoch":26141886,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.62,"free":3133.11},{"epoch":26141887,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.58,"free":3133.14},{"epoch":26141888,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":556.64,"free":3133.08},{"epoch":26141889,"idl":99.69,"recv":0,"send":0,"writ":0.72,"used":557.37,"free":3132.32},{"epoch":26141890,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":556.94,"free":3132.77},{"epoch":26141891,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":556.89,"free":3132.81},{"epoch":26141892,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":556.85,"free":3132.84},{"epoch":26141893,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.82,"free":3132.87},{"epoch":26141894,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":557.28,"free":3132.41},{"epoch":26141895,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":556.04,"free":3133.66},{"epoch":26141896,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.97,"free":3133.73},{"epoch":26141897,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":556.18,"free":3133.51},{"epoch":26141898,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":556.14,"free":3133.55},{"epoch":26141899,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":556.49,"free":3133.2},{"epoch":26141900,"idl":99.86,"recv":0,"send":0,"writ":0.52,"used":556.72,"free":3132.99},{"epoch":26141901,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":556.73,"free":3132.98},{"epoch":26141902,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.69,"free":3133.01},{"epoch":26141903,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":556.67,"free":3133.03},{"epoch":26141904,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":556.62,"free":3133.07},{"epoch":26141905,"idl":99.71,"recv":0,"send":0,"writ":0.72,"used":557.39,"free":3132.32},{"epoch":26141906,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":556.66,"free":3133.04},{"epoch":26141907,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.74,"free":3132.97},{"epoch":26141908,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":556.7,"free":3133},{"epoch":26141909,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":556.66,"free":3133.03},{"epoch":26141910,"idl":99.73,"recv":0,"send":0,"writ":0.79,"used":557.58,"free":3132.13},{"epoch":26141911,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":556.86,"free":3132.85},{"epoch":26141912,"idl":99.47,"recv":0,"send":0,"writ":0.2,"used":556.89,"free":3132.81},{"epoch":26141913,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":556.97,"free":3132.72},{"epoch":26141914,"idl":99.93,"recv":0,"send":0.01,"writ":0.2,"used":556.94,"free":3132.75},{"epoch":26141915,"idl":99.71,"recv":0,"send":0.01,"writ":0.73,"used":557.37,"free":3132.33},{"epoch":26141916,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":556.88,"free":3132.83},{"epoch":26141917,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":556.84,"free":3132.86},{"epoch":26141918,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":556.88,"free":3132.81},{"epoch":26141919,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":557.19,"free":3132.48},{"epoch":26141920,"idl":99.72,"recv":0,"send":0,"writ":0.78,"used":557.53,"free":3132.16},{"epoch":26141921,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":557.13,"free":3132.55},{"epoch":26141922,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":557.09,"free":3132.58},{"epoch":26141923,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.16,"used":557.05,"free":3132.62},{"epoch":26141924,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":557.17,"free":3132.49},{"epoch":26141925,"idl":99.6,"recv":0,"send":0,"writ":0.7,"used":557.46,"free":3132.23},{"epoch":26141926,"idl":99.91,"recv":0,"send":0,"writ":0.22,"used":556.91,"free":3132.77},{"epoch":26141927,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":556.87,"free":3132.8},{"epoch":26141928,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.84,"free":3132.83},{"epoch":26141929,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":556.8,"free":3132.86},{"epoch":26141930,"idl":94.99,"recv":0.37,"send":0.01,"writ":78.31,"used":566.07,"free":3123.87},{"epoch":26141931,"idl":99.7,"recv":0,"send":0,"writ":181.26,"used":559.5,"free":3130.07},{"epoch":26141932,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":559.42,"free":3130.14},{"epoch":26141933,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":559.47,"free":3130.09},{"epoch":26141934,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":559.54,"free":3130.02},{"epoch":26141935,"idl":99.67,"recv":0,"send":0,"writ":0.48,"used":559.7,"free":3129.87},{"epoch":26141936,"idl":99.86,"recv":0,"send":0,"writ":0.47,"used":557.57,"free":3132.03},{"epoch":26141937,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.2,"used":557.58,"free":3132.01},{"epoch":26141938,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":557.59,"free":3132},{"epoch":26141939,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":557.55,"free":3132.04},{"epoch":26141940,"idl":99.66,"recv":0,"send":0,"writ":0.3,"used":556.83,"free":3132.79},{"epoch":26141941,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":557.45,"free":3132.18},{"epoch":26141942,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":557.06,"free":3132.57},{"epoch":26141943,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":557.13,"free":3132.49},{"epoch":26141944,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":557.08,"free":3132.54},{"epoch":26141945,"idl":99.86,"recv":0,"send":0.02,"writ":0.31,"used":557.31,"free":3132.33},{"epoch":26141946,"idl":99.79,"recv":0,"send":0.01,"writ":0.57,"used":557.62,"free":3132.02},{"epoch":26141947,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":557.3,"free":3132.33},{"epoch":26141948,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":557.38,"free":3132.25},{"epoch":26141949,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":557.34,"free":3132.27},{"epoch":26141950,"idl":99.82,"recv":0,"send":0.01,"writ":0.3,"used":557.05,"free":3132.56},{"epoch":26141951,"idl":99.75,"recv":0,"send":0,"writ":0.5,"used":557.48,"free":3132.14},{"epoch":26141952,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":557.21,"free":3132.39},{"epoch":26141953,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":557.36,"free":3132.24},{"epoch":26141954,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":557.36,"free":3132.24},{"epoch":26141955,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":557.35,"free":3132.26},{"epoch":26141956,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":557.28,"free":3132.33},{"epoch":26141957,"idl":99.86,"recv":0,"send":0,"writ":0.22,"used":556.54,"free":3133.07},{"epoch":26141958,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.5,"free":3133.1},{"epoch":26141959,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":556.42,"free":3133.18},{"epoch":26141960,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":556.65,"free":3132.97},{"epoch":26141961,"idl":99.69,"recv":0,"send":0,"writ":0.42,"used":556.97,"free":3132.64},{"epoch":26141962,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":556.58,"free":3133.03},{"epoch":26141963,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":556.54,"free":3133.07},{"epoch":26141964,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":556.5,"free":3133.1},{"epoch":26141965,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":556.61,"free":3133.01},{"epoch":26141966,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":556.95,"free":3132.66},{"epoch":26141967,"idl":99.86,"recv":0.02,"send":0.07,"writ":0.19,"used":556.31,"free":3133.3},{"epoch":26141968,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":556.26,"free":3133.34},{"epoch":26141969,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.3,"free":3133.3},{"epoch":26141970,"idl":99.75,"recv":0,"send":0,"writ":0.42,"used":555.76,"free":3133.85},{"epoch":26141971,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":555.98,"free":3133.62},{"epoch":26141972,"idl":99.85,"recv":0,"send":0,"writ":0.44,"used":556.8,"free":3132.79},{"epoch":26141973,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":556.77,"free":3132.83},{"epoch":26141974,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":556.73,"free":3132.86},{"epoch":26141975,"idl":99.77,"recv":0,"send":0,"writ":0.38,"used":556.56,"free":3133.05},{"epoch":26141976,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":556.63,"free":3132.98},{"epoch":26141977,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":556.96,"free":3132.64},{"epoch":26141978,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":556.55,"free":3133.04},{"epoch":26141979,"idl":99.65,"recv":0,"send":0,"writ":0.35,"used":556.53,"free":3133.04},{"epoch":26141980,"idl":99.77,"recv":0,"send":0,"writ":0.36,"used":556.51,"free":3133.08},{"epoch":26141981,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":556.54,"free":3133.05},{"epoch":26141982,"idl":99.64,"recv":0,"send":0,"writ":0.58,"used":556.91,"free":3132.67},{"epoch":26141983,"idl":99.77,"recv":0.01,"send":0.01,"writ":0.2,"used":556.09,"free":3133.49},{"epoch":26141984,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":556.04,"free":3133.53},{"epoch":26141985,"idl":99.75,"recv":0,"send":0,"writ":0.44,"used":556.3,"free":3133.29},{"epoch":26141986,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":556.23,"free":3133.35},{"epoch":26141987,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":557.24,"free":3132.34},{"epoch":26141988,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.85,"free":3132.72},{"epoch":26141989,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.81,"free":3132.76},{"epoch":26141990,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":556.8,"free":3132.79},{"epoch":26141991,"idl":99.78,"recv":0,"send":0,"writ":0.19,"used":556.76,"free":3132.82},{"epoch":26141992,"idl":99.68,"recv":0,"send":0,"writ":0.61,"used":556.9,"free":3132.68},{"epoch":26141993,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":556.14,"free":3133.43},{"epoch":26141994,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":556.11,"free":3133.46},{"epoch":26141995,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":556.58,"free":3133},{"epoch":26141996,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":556.55,"free":3133.03},{"epoch":26141997,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":556.87,"free":3132.71},{"epoch":26141998,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":556.49,"free":3133.09},{"epoch":26141999,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":556.63,"free":3132.94},{"epoch":26142000,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":557.1,"free":3132.49},{"epoch":26142001,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":557.07,"free":3132.51},{"epoch":26142002,"idl":99.69,"recv":0,"send":0,"writ":0.43,"used":557.19,"free":3132.39},{"epoch":26142003,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":555.78,"free":3133.8},{"epoch":26142004,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":555.74,"free":3133.84},{"epoch":26142005,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":557.08,"free":3132.51},{"epoch":26142006,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.1,"free":3132.48},{"epoch":26142007,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":557.07,"free":3132.51},{"epoch":26142008,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":557.14,"free":3132.44},{"epoch":26142009,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":556.77,"free":3132.78},{"epoch":26142010,"idl":99.76,"recv":0,"send":0,"writ":0.38,"used":555.83,"free":3133.74},{"epoch":26142011,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.17,"used":555.88,"free":3133.68},{"epoch":26142012,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":555.82,"free":3133.74},{"epoch":26142013,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":556.34,"free":3133.21},{"epoch":26142014,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":556,"free":3133.58},{"epoch":26142015,"idl":99.74,"recv":0,"send":0,"writ":0.39,"used":557.03,"free":3132.57},{"epoch":26142016,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":557.12,"free":3132.48},{"epoch":26142017,"idl":99.79,"recv":0,"send":0,"writ":0.24,"used":557.09,"free":3132.5},{"epoch":26142018,"idl":99.68,"recv":0,"send":0,"writ":0.63,"used":556.9,"free":3132.69},{"epoch":26142019,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":555.78,"free":3133.8},{"epoch":26142020,"idl":99.73,"recv":0,"send":0,"writ":0.39,"used":556,"free":3133.59},{"epoch":26142021,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":556.04,"free":3133.55},{"epoch":26142022,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":556.12,"free":3133.46},{"epoch":26142023,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":557.1,"free":3132.48},{"epoch":26142024,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":557.02,"free":3132.56},{"epoch":26142025,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":556.77,"free":3132.83},{"epoch":26142026,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":556.72,"free":3132.87},{"epoch":26142027,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":556.77,"free":3132.81},{"epoch":26142028,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":557.31,"free":3132.27},{"epoch":26142029,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":557.08,"free":3132.5},{"epoch":26142030,"idl":99.77,"recv":0,"send":0,"writ":0.36,"used":556.59,"free":3133.01},{"epoch":26142031,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":556.54,"free":3133.05},{"epoch":26142032,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":556.5,"free":3133.09},{"epoch":26142033,"idl":99.69,"recv":0,"send":0,"writ":0.59,"used":557.06,"free":3132.52},{"epoch":26142034,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":557.11,"free":3132.47},{"epoch":26142035,"idl":99.77,"recv":0,"send":0,"writ":0.36,"used":557.1,"free":3132.5},{"epoch":26142036,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":557.06,"free":3132.53},{"epoch":26142037,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.03,"free":3132.56},{"epoch":26142038,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":557.32,"free":3132.27},{"epoch":26142039,"idl":99.7,"recv":0,"send":0,"writ":0.37,"used":556.78,"free":3132.78},{"epoch":26142040,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":556.88,"free":3132.7},{"epoch":26142041,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":556.84,"free":3132.74},{"epoch":26142042,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":556.81,"free":3132.76},{"epoch":26142043,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.19,"used":556.77,"free":3132.79},{"epoch":26142044,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":557.32,"free":3132.24},{"epoch":26142045,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":556.88,"free":3132.7},{"epoch":26142046,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":556.84,"free":3132.73},{"epoch":26142047,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":556.81,"free":3132.76},{"epoch":26142048,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.77,"free":3132.79},{"epoch":26142049,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":557.59,"free":3131.97},{"epoch":26142050,"idl":99.73,"recv":0,"send":0,"writ":0.38,"used":556.34,"free":3133.24},{"epoch":26142051,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":556.38,"free":3133.19},{"epoch":26142052,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":556.35,"free":3133.22},{"epoch":26142053,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.31,"free":3133.25},{"epoch":26142054,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":556.93,"free":3132.63},{"epoch":26142055,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":556.51,"free":3133.06},{"epoch":26142056,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":556.47,"free":3133.1},{"epoch":26142057,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.56,"free":3133},{"epoch":26142058,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":556.58,"free":3132.97},{"epoch":26142059,"idl":99.67,"recv":0,"send":0,"writ":0.62,"used":557.13,"free":3132.43},{"epoch":26142060,"idl":99.34,"recv":0,"send":0,"writ":6.11,"used":557.34,"free":3132.77},{"epoch":26142061,"idl":99.82,"recv":0,"send":0,"writ":0.22,"used":557.31,"free":3132.8},{"epoch":26142062,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.27,"free":3132.84},{"epoch":26142063,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":557.32,"free":3132.78},{"epoch":26142064,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":557.63,"free":3132.47},{"epoch":26142065,"idl":99.74,"recv":0,"send":0,"writ":0.36,"used":557.14,"free":3133.03},{"epoch":26142066,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":557.1,"free":3133.08},{"epoch":26142067,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":557.07,"free":3133.1},{"epoch":26142068,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.03,"free":3133.13},{"epoch":26142069,"idl":99.59,"recv":0,"send":0,"writ":0.56,"used":557.52,"free":3132.64},{"epoch":26142070,"idl":99.78,"recv":0,"send":0,"writ":0.44,"used":556.97,"free":3133.22},{"epoch":26142071,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":556.93,"free":3133.27},{"epoch":26142072,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":556.89,"free":3133.3},{"epoch":26142073,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.86,"free":3133.33},{"epoch":26142074,"idl":99.67,"recv":0,"send":0,"writ":0.38,"used":557.46,"free":3132.74},{"epoch":26142075,"idl":99.74,"recv":0,"send":0,"writ":0.51,"used":556.89,"free":3133.35},{"epoch":26142076,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":556.95,"free":3133.28},{"epoch":26142077,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":556.93,"free":3133.3},{"epoch":26142078,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":556.89,"free":3133.33},{"epoch":26142079,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":556.85,"free":3133.36},{"epoch":26142080,"idl":99.62,"recv":0,"send":0,"writ":0.68,"used":557.94,"free":3132.29},{"epoch":26142081,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":557.38,"free":3132.85},{"epoch":26142082,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":557.44,"free":3132.78},{"epoch":26142083,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":557.41,"free":3132.81},{"epoch":26142084,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":557.37,"free":3132.85},{"epoch":26142085,"idl":99.57,"recv":0,"send":0,"writ":0.72,"used":557.71,"free":3132.52},{"epoch":26142086,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.32,"free":3132.9},{"epoch":26142087,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.36,"free":3132.86},{"epoch":26142088,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":557.44,"free":3132.78},{"epoch":26142089,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.41,"free":3132.8},{"epoch":26142090,"idl":99.63,"recv":0,"send":0,"writ":0.68,"used":558.11,"free":3132.12},{"epoch":26142091,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.36,"free":3132.87},{"epoch":26142092,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":557.33,"free":3132.9},{"epoch":26142093,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.29,"free":3132.92},{"epoch":26142094,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.35,"free":3132.86},{"epoch":26142095,"idl":99.55,"recv":0,"send":0,"writ":0.71,"used":557.65,"free":3132.58},{"epoch":26142096,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":557.39,"free":3132.83},{"epoch":26142097,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.37,"free":3132.86},{"epoch":26142098,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":557.32,"free":3132.9},{"epoch":26142099,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":557.04,"free":3133.15},{"epoch":26142100,"idl":99.63,"recv":0,"send":0,"writ":0.69,"used":557.9,"free":3132.3},{"epoch":26142101,"idl":99.83,"recv":0,"send":0,"writ":0.23,"used":557.41,"free":3132.79},{"epoch":26142102,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":557.38,"free":3132.82},{"epoch":26142103,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.16,"used":557.34,"free":3132.85},{"epoch":26142104,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":557.3,"free":3132.89},{"epoch":26142105,"idl":99.61,"recv":0,"send":0,"writ":0.62,"used":557.04,"free":3133.17},{"epoch":26142106,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":556.9,"free":3133.31},{"epoch":26142107,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":556.91,"free":3133.29},{"epoch":26142108,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":556.87,"free":3133.32},{"epoch":26142109,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":556.84,"free":3133.35},{"epoch":26142110,"idl":99.58,"recv":0,"send":0,"writ":0.57,"used":555.95,"free":3134.26},{"epoch":26142111,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":557.28,"free":3132.92},{"epoch":26142112,"idl":99.79,"recv":0,"send":0,"writ":0.21,"used":557.39,"free":3132.81},{"epoch":26142113,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":557.31,"free":3132.88},{"epoch":26142114,"idl":99.28,"recv":0,"send":0,"writ":0.18,"used":556.66,"free":3133.53},{"epoch":26142115,"idl":99.75,"recv":0,"send":0,"writ":0.35,"used":556.65,"free":3133.58},{"epoch":26142116,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":556.97,"free":3133.26},{"epoch":26142117,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":556.58,"free":3133.64},{"epoch":26142118,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":556.62,"free":3133.59},{"epoch":26142119,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":556.69,"free":3133.51},{"epoch":26142120,"idl":99.73,"recv":0,"send":0,"writ":0.36,"used":555.96,"free":3134.26},{"epoch":26142121,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":557.02,"free":3133.19},{"epoch":26142122,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":556.85,"free":3133.36},{"epoch":26142123,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":556.82,"free":3133.39},{"epoch":26142124,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":556.85,"free":3133.35},{"epoch":26142125,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":556.71,"free":3133.51},{"epoch":26142126,"idl":99.65,"recv":0,"send":0,"writ":0.59,"used":557.25,"free":3132.97},{"epoch":26142127,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":556.87,"free":3133.34},{"epoch":26142128,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":556.84,"free":3133.36},{"epoch":26142129,"idl":99.68,"recv":0,"send":0,"writ":0.32,"used":556.23,"free":3133.97},{"epoch":26142130,"idl":99.74,"recv":0,"send":0,"writ":0.26,"used":556.44,"free":3133.78},{"epoch":26142131,"idl":99.69,"recv":0,"send":0,"writ":0.53,"used":556.98,"free":3133.24},{"epoch":26142132,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":556.6,"free":3133.62},{"epoch":26142133,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":556.56,"free":3133.64},{"epoch":26142134,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":556.59,"free":3133.61},{"epoch":26142135,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":555.74,"free":3134.48},{"epoch":26142136,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":556.14,"free":3134.08},{"epoch":26142137,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":555.88,"free":3134.33},{"epoch":26142138,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":555.83,"free":3134.37},{"epoch":26142139,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":555.79,"free":3134.41},{"epoch":26142140,"idl":99.78,"recv":0,"send":0,"writ":0.24,"used":556.84,"free":3133.38},{"epoch":26142141,"idl":99.66,"recv":0,"send":0,"writ":0.41,"used":557.35,"free":3132.87},{"epoch":26142142,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":557.14,"free":3133.06},{"epoch":26142143,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":557.11,"free":3133.09},{"epoch":26142144,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":557.08,"free":3133.12},{"epoch":26142145,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":556.34,"free":3133.87},{"epoch":26142146,"idl":99.76,"recv":0,"send":0,"writ":0.44,"used":556.89,"free":3133.32},{"epoch":26142147,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":556.84,"free":3133.37},{"epoch":26142148,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.9,"free":3133.3},{"epoch":26142149,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.86,"free":3133.34},{"epoch":26142150,"idl":99.76,"recv":0,"send":0,"writ":0.25,"used":556.85,"free":3133.37},{"epoch":26142151,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.81,"free":3133.4},{"epoch":26142152,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":557.3,"free":3132.9},{"epoch":26142153,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.94,"free":3133.26},{"epoch":26142154,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":556.9,"free":3133.3},{"epoch":26142155,"idl":98.22,"recv":0,"send":0,"writ":0.25,"used":556.34,"free":3133.87},{"epoch":26142156,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.13,"free":3134.09},{"epoch":26142157,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":557,"free":3133.21},{"epoch":26142158,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.84,"free":3133.36},{"epoch":26142159,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":556.71,"free":3133.46},{"epoch":26142160,"idl":99.84,"recv":0,"send":0,"writ":0.25,"used":557.15,"free":3133.04},{"epoch":26142161,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.12,"free":3133.07},{"epoch":26142162,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":557.43,"free":3132.75},{"epoch":26142163,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.16,"used":557.05,"free":3133.13},{"epoch":26142164,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.13,"free":3133.05},{"epoch":26142165,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":556.28,"free":3133.92},{"epoch":26142166,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":556.16,"free":3134.03},{"epoch":26142167,"idl":99.76,"recv":0.01,"send":0,"writ":0.57,"used":557.27,"free":3132.91},{"epoch":26142168,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.8,"free":3133.39},{"epoch":26142169,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":556.84,"free":3133.33},{"epoch":26142170,"idl":99.84,"recv":0,"send":0,"writ":0.25,"used":556.23,"free":3133.97},{"epoch":26142171,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.95,"free":3134.24},{"epoch":26142172,"idl":99.82,"recv":0,"send":0,"writ":0.53,"used":556.53,"free":3133.66},{"epoch":26142173,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":556.58,"free":3133.62},{"epoch":26142174,"idl":99.09,"recv":0,"send":0,"writ":0.14,"used":556.53,"free":3133.67},{"epoch":26142175,"idl":99.84,"recv":0,"send":0,"writ":0.25,"used":557.08,"free":3133.13},{"epoch":26142176,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":557.16,"free":3133.05},{"epoch":26142177,"idl":99.75,"recv":0,"send":0,"writ":0.5,"used":557.47,"free":3132.73},{"epoch":26142178,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":557.08,"free":3133.12},{"epoch":26142179,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":557.04,"free":3133.15},{"epoch":26142180,"idl":99.68,"recv":0,"send":0,"writ":0.26,"used":556.8,"free":3133.42},{"epoch":26142181,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.93,"free":3133.28},{"epoch":26142182,"idl":99.75,"recv":0,"send":0,"writ":0.44,"used":557.07,"free":3133.13},{"epoch":26142183,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":556.12,"free":3134.08},{"epoch":26142184,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.08,"free":3134.12},{"epoch":26142185,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":556.3,"free":3133.91},{"epoch":26142186,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":556.34,"free":3133.87},{"epoch":26142187,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":557.01,"free":3133.19},{"epoch":26142188,"idl":99.94,"recv":0,"send":0,"writ":0.37,"used":556.9,"free":3133.31},{"epoch":26142189,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":556.86,"free":3133.33},{"epoch":26142190,"idl":99.84,"recv":0,"send":0,"writ":0.25,"used":557.09,"free":3133.12},{"epoch":26142191,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.06,"free":3133.14},{"epoch":26142192,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.07,"free":3133.13},{"epoch":26142193,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":557.32,"free":3132.87},{"epoch":26142194,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":556.9,"free":3133.31},{"epoch":26142195,"idl":99.82,"recv":0,"send":0,"writ":0.25,"used":556.88,"free":3133.34},{"epoch":26142196,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.86,"free":3133.36},{"epoch":26142197,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":557.07,"free":3133.15},{"epoch":26142198,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":557.38,"free":3132.83},{"epoch":26142199,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":557.13,"free":3133.07},{"epoch":26142200,"idl":99.86,"recv":0,"send":0,"writ":0.25,"used":557.17,"free":3133.05},{"epoch":26142201,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.12,"free":3133.1},{"epoch":26142202,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.09,"free":3133.12},{"epoch":26142203,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":557.7,"free":3132.51},{"epoch":26142204,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":557.01,"free":3133.19},{"epoch":26142205,"idl":99.77,"recv":0,"send":0,"writ":0.26,"used":556.21,"free":3134.01},{"epoch":26142206,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":556.17,"free":3134.05},{"epoch":26142207,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.13,"free":3134.08},{"epoch":26142208,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":556.98,"free":3133.23},{"epoch":26142209,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.06,"free":3133.15},{"epoch":26142210,"idl":99.74,"recv":0,"send":0,"writ":0.25,"used":556.81,"free":3133.41},{"epoch":26142211,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.85,"free":3133.37},{"epoch":26142212,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.9,"free":3133.31},{"epoch":26142213,"idl":99.77,"recv":0.01,"send":0.02,"writ":0.49,"used":557.32,"free":3132.88},{"epoch":26142214,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":557.15,"free":3133.05},{"epoch":26142215,"idl":99.88,"recv":0,"send":0,"writ":0.26,"used":557.12,"free":3133.09},{"epoch":26142216,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.1,"free":3133.12},{"epoch":26142217,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":557.06,"free":3133.15},{"epoch":26142218,"idl":99.73,"recv":0,"send":0,"writ":0.49,"used":557.46,"free":3132.75},{"epoch":26142219,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":557.02,"free":3133.16},{"epoch":26142220,"idl":99.83,"recv":0,"send":0,"writ":0.25,"used":557.2,"free":3133},{"epoch":26142221,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":557.15,"free":3133.05},{"epoch":26142222,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.11,"free":3133.08},{"epoch":26142223,"idl":99.75,"recv":0.01,"send":0.01,"writ":0.56,"used":557.76,"free":3132.42},{"epoch":26142224,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":557.03,"free":3133.15},{"epoch":26142225,"idl":99.82,"recv":0,"send":0,"writ":0.35,"used":557,"free":3133.2},{"epoch":26142226,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":556.92,"free":3133.27},{"epoch":26142227,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.89,"free":3133.32},{"epoch":26142228,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":557.29,"free":3132.91},{"epoch":26142229,"idl":99.88,"recv":0,"send":0,"writ":0.39,"used":557.3,"free":3132.89},{"epoch":26142230,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":557.05,"free":3133.16},{"epoch":26142231,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":557.12,"free":3133.08},{"epoch":26142232,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":557.15,"free":3133.05},{"epoch":26142233,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":557.47,"free":3132.73},{"epoch":26142234,"idl":99.9,"recv":0,"send":0,"writ":0.39,"used":557.33,"free":3132.86},{"epoch":26142235,"idl":99.09,"recv":0,"send":0,"writ":0.27,"used":557.32,"free":3132.89},{"epoch":26142236,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":557.28,"free":3132.92},{"epoch":26142237,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":557.32,"free":3132.87},{"epoch":26142238,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":557.39,"free":3132.8},{"epoch":26142239,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":557.51,"free":3132.68},{"epoch":26142240,"idl":99.74,"recv":0,"send":0,"writ":0.27,"used":556.2,"free":3134.01},{"epoch":26142241,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.08,"free":3134.12},{"epoch":26142242,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.04,"free":3134.15},{"epoch":26142243,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.08,"free":3134.12},{"epoch":26142244,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":557.4,"free":3132.78},{"epoch":26142245,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":556.9,"free":3133.31},{"epoch":26142246,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":556.85,"free":3133.35},{"epoch":26142247,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.81,"free":3133.38},{"epoch":26142248,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.77,"free":3133.42},{"epoch":26142249,"idl":99.71,"recv":0,"send":0,"writ":0.6,"used":557.53,"free":3132.65},{"epoch":26142250,"idl":99.84,"recv":0,"send":0,"writ":0.41,"used":556.72,"free":3133.47},{"epoch":26142251,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":556.88,"free":3133.31},{"epoch":26142252,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.84,"free":3133.35},{"epoch":26142253,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.8,"free":3133.38},{"epoch":26142254,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":557.49,"free":3132.7},{"epoch":26142255,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":557.26,"free":3132.95},{"epoch":26142256,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.29,"free":3132.91},{"epoch":26142257,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":557.37,"free":3132.84},{"epoch":26142258,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.33,"free":3132.87},{"epoch":26142259,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":558.07,"free":3132.12},{"epoch":26142260,"idl":99.89,"recv":0,"send":0,"writ":0.38,"used":557.29,"free":3132.92},{"epoch":26142261,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":557.25,"free":3132.96},{"epoch":26142262,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":557.27,"free":3132.94},{"epoch":26142263,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.41,"free":3132.79},{"epoch":26142264,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":557.74,"free":3132.45},{"epoch":26142265,"idl":99.86,"recv":0,"send":0,"writ":0.39,"used":557.13,"free":3133.08},{"epoch":26142266,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":557.08,"free":3133.12},{"epoch":26142267,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.05,"free":3133.15},{"epoch":26142268,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":556.59,"free":3133.6},{"epoch":26142269,"idl":94.53,"recv":6.12,"send":0.03,"writ":70.25,"used":563.69,"free":3125.3},{"epoch":26142270,"idl":99.67,"recv":0,"send":0,"writ":194.71,"used":559.21,"free":3124.86},{"epoch":26142271,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":559.17,"free":3124.9},{"epoch":26142272,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":559.2,"free":3124.86},{"epoch":26142273,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":559.27,"free":3124.79},{"epoch":26142274,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":558.68,"free":3125.38},{"epoch":26142275,"idl":98.24,"recv":0,"send":0,"writ":0.66,"used":556.27,"free":3127.85},{"epoch":26142276,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.57,"free":3128.54},{"epoch":26142277,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":555.54,"free":3128.57},{"epoch":26142278,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.5,"free":3128.6},{"epoch":26142279,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":556.86,"free":3127.25},{"epoch":26142280,"idl":99.68,"recv":0,"send":0,"writ":0.72,"used":557.65,"free":3126.5},{"epoch":26142281,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.86,"free":3127.28},{"epoch":26142282,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":556.82,"free":3127.31},{"epoch":26142283,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.14,"used":556.79,"free":3127.35},{"epoch":26142284,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":556.72,"free":3127.44},{"epoch":26142285,"idl":99.67,"recv":0,"send":0,"writ":0.71,"used":557.2,"free":3126.99},{"epoch":26142286,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":556.83,"free":3127.36},{"epoch":26142287,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":556.79,"free":3127.4},{"epoch":26142288,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":556.75,"free":3127.44},{"epoch":26142289,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.71,"free":3127.47},{"epoch":26142290,"idl":99.71,"recv":0,"send":0,"writ":0.66,"used":556.72,"free":3127.49},{"epoch":26142291,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":556.85,"free":3127.35},{"epoch":26142292,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":556.82,"free":3127.37},{"epoch":26142293,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.78,"free":3127.41},{"epoch":26142294,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.75,"free":3127.44},{"epoch":26142295,"idl":96.44,"recv":0.02,"send":0.01,"writ":77.92,"used":568.66,"free":3116.38},{"epoch":26142296,"idl":99.95,"recv":0,"send":0,"writ":0.39,"used":559.09,"free":3125.21},{"epoch":26142297,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":559.05,"free":3125.25},{"epoch":26142298,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":559.02,"free":3125.28},{"epoch":26142299,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":558.98,"free":3125.32},{"epoch":26142300,"idl":99.64,"recv":0,"send":0,"writ":0.79,"used":558.91,"free":3125.41},{"epoch":26142301,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":556.96,"free":3127.39},{"epoch":26142302,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":556.92,"free":3127.42},{"epoch":26142303,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.88,"free":3127.45},{"epoch":26142304,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.85,"free":3127.49},{"epoch":26142305,"idl":99.68,"recv":0,"send":0,"writ":0.52,"used":556.54,"free":3127.81},{"epoch":26142306,"idl":99.91,"recv":0,"send":0,"writ":0.34,"used":556.93,"free":3127.43},{"epoch":26142307,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.95,"free":3127.41},{"epoch":26142308,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":556.9,"free":3127.45},{"epoch":26142309,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":556.66,"free":3127.66},{"epoch":26142310,"idl":99.71,"recv":0,"send":0,"writ":0.51,"used":555.9,"free":3128.44},{"epoch":26142311,"idl":99.93,"recv":0,"send":0,"writ":0.36,"used":556.57,"free":3127.76},{"epoch":26142312,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.64,"free":3127.69},{"epoch":26142313,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.68,"free":3127.65},{"epoch":26142314,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.65,"free":3127.68},{"epoch":26142315,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":556.76,"free":3127.59},{"epoch":26142316,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":557.47,"free":3126.87},{"epoch":26142317,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":556.88,"free":3127.45},{"epoch":26142318,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.97,"free":3127.36},{"epoch":26142319,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":556.94,"free":3127.39},{"epoch":26142320,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":556.92,"free":3127.42},{"epoch":26142321,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":557.05,"free":3127.29},{"epoch":26142322,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.61,"free":3127.72},{"epoch":26142323,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":556.58,"free":3127.75},{"epoch":26142324,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":556.7,"free":3127.63},{"epoch":26142325,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":556.94,"free":3127.4},{"epoch":26142326,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":557.26,"free":3127.07},{"epoch":26142327,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.88,"free":3127.45},{"epoch":26142328,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":556.84,"free":3127.49},{"epoch":26142329,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.87,"free":3127.45},{"epoch":26142330,"idl":99.88,"recv":0,"send":0,"writ":0.37,"used":556.98,"free":3127.36},{"epoch":26142331,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":557.29,"free":3127.04},{"epoch":26142332,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":556.9,"free":3127.42},{"epoch":26142333,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":556.87,"free":3127.45},{"epoch":26142334,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":556.83,"free":3127.49},{"epoch":26142335,"idl":99.09,"recv":0,"send":0,"writ":0.34,"used":556.64,"free":3127.69},{"epoch":26142336,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":557.38,"free":3126.95},{"epoch":26142337,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":556.94,"free":3127.39},{"epoch":26142338,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":556.9,"free":3127.42},{"epoch":26142339,"idl":99.8,"recv":0,"send":0,"writ":0.42,"used":557.1,"free":3127.19},{"epoch":26142340,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":556.6,"free":3127.71},{"epoch":26142341,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":556.8,"free":3127.51},{"epoch":26142342,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":556.22,"free":3128.08},{"epoch":26142343,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.17,"used":556.18,"free":3128.12},{"epoch":26142344,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":556.14,"free":3128.15},{"epoch":26142345,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":556.47,"free":3127.85},{"epoch":26142346,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":556.71,"free":3127.6},{"epoch":26142347,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":556.37,"free":3127.93},{"epoch":26142348,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.43,"free":3127.87},{"epoch":26142349,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":556.4,"free":3127.9},{"epoch":26142350,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":556.39,"free":3127.93},{"epoch":26142351,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":556.76,"free":3127.55},{"epoch":26142352,"idl":99.91,"recv":0,"send":0,"writ":0.37,"used":557.05,"free":3127.25},{"epoch":26142353,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":557.1,"free":3127.2},{"epoch":26142354,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":557.17,"free":3127.13},{"epoch":26142355,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":557.16,"free":3127.16},{"epoch":26142356,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":557.12,"free":3127.21},{"epoch":26142357,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":557.43,"free":3126.89},{"epoch":26142358,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.05,"free":3127.27},{"epoch":26142359,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":557.11,"free":3127.2},{"epoch":26142360,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":556.01,"free":3128.32},{"epoch":26142361,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":555.94,"free":3128.38},{"epoch":26142362,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":556.6,"free":3127.72},{"epoch":26142363,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.87,"free":3128.45},{"epoch":26142364,"idl":99.9,"recv":0.02,"send":0.02,"writ":0.15,"used":555.84,"free":3128.47},{"epoch":26142365,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":557.42,"free":3126.91},{"epoch":26142366,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":557.46,"free":3126.87},{"epoch":26142367,"idl":99.78,"recv":0,"send":0,"writ":0.47,"used":557.97,"free":3126.36},{"epoch":26142368,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":557.38,"free":3126.94},{"epoch":26142369,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":556.87,"free":3127.43},{"epoch":26142370,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":556.85,"free":3127.47},{"epoch":26142371,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":556.88,"free":3127.43},{"epoch":26142372,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":557.3,"free":3127.01},{"epoch":26142373,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.67,"free":3127.63},{"epoch":26142374,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":556.63,"free":3127.66},{"epoch":26142375,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":557.1,"free":3127.21},{"epoch":26142376,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":557.07,"free":3127.23},{"epoch":26142377,"idl":99.77,"recv":0,"send":0,"writ":0.47,"used":557.47,"free":3126.83},{"epoch":26142378,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":557.19,"free":3127.11},{"epoch":26142379,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.15,"free":3127.14},{"epoch":26142380,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":557.14,"free":3127.17},{"epoch":26142381,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.1,"free":3127.21},{"epoch":26142382,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":557.42,"free":3126.88},{"epoch":26142383,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":557.09,"free":3127.2},{"epoch":26142384,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.19,"free":3127.1},{"epoch":26142385,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":557.19,"free":3127.12},{"epoch":26142386,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":557.15,"free":3127.16},{"epoch":26142387,"idl":99.75,"recv":0,"send":0,"writ":0.37,"used":557.46,"free":3126.84},{"epoch":26142388,"idl":99.91,"recv":0,"send":0,"writ":0.34,"used":557.07,"free":3127.23},{"epoch":26142389,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":557.04,"free":3127.25},{"epoch":26142390,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":557.21,"free":3127.1},{"epoch":26142391,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":557.17,"free":3127.14},{"epoch":26142392,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":557.14,"free":3127.17},{"epoch":26142393,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":557.61,"free":3126.69},{"epoch":26142394,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":557.06,"free":3127.23},{"epoch":26142395,"idl":97.56,"recv":0.01,"send":0.03,"writ":0.31,"used":556.9,"free":3127.41},{"epoch":26142396,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.89,"free":3127.41},{"epoch":26142397,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.86,"free":3127.44},{"epoch":26142398,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":557.53,"free":3126.76},{"epoch":26142399,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":556.87,"free":3127.39},{"epoch":26142400,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":557.69,"free":3126.6},{"epoch":26142401,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.66,"free":3126.62},{"epoch":26142402,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":557.63,"free":3126.64},{"epoch":26142403,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.59,"used":557.77,"free":3126.51},{"epoch":26142404,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":557.3,"free":3126.98},{"epoch":26142405,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":556.92,"free":3127.39},{"epoch":26142406,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.92,"free":3127.38},{"epoch":26142407,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":556.92,"free":3127.37},{"epoch":26142408,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":557.85,"free":3126.44},{"epoch":26142409,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":557.33,"free":3126.95},{"epoch":26142410,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":557.36,"free":3126.94},{"epoch":26142411,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":557.3,"free":3127},{"epoch":26142412,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":557.43,"free":3126.86},{"epoch":26142413,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":557.75,"free":3126.54},{"epoch":26142414,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":557.36,"free":3126.92},{"epoch":26142415,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":557.34,"free":3126.96},{"epoch":26142416,"idl":99.26,"recv":0,"send":0,"writ":0.18,"used":557.31,"free":3127.01},{"epoch":26142417,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":557.35,"free":3126.96},{"epoch":26142418,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":557.77,"free":3126.54},{"epoch":26142419,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":557.01,"free":3127.3},{"epoch":26142420,"idl":90.35,"recv":0,"send":0,"writ":61.35,"used":578.33,"free":3090.49},{"epoch":26142421,"idl":99.9,"recv":0,"send":0,"writ":31.91,"used":559.13,"free":3116.78},{"epoch":26142422,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":559.08,"free":3116.83},{"epoch":26142423,"idl":99.8,"recv":0,"send":0,"writ":0.52,"used":559.49,"free":3116.41},{"epoch":26142424,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.21,"used":559.19,"free":3116.71},{"epoch":26142425,"idl":99.86,"recv":0,"send":0,"writ":0.43,"used":558.07,"free":3117.99},{"epoch":26142426,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.49,"free":3119.78},{"epoch":26142427,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.46,"free":3119.8},{"epoch":26142428,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":556.89,"free":3119.36},{"epoch":26142429,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":556.55,"free":3119.69},{"epoch":26142430,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":556.76,"free":3119.5},{"epoch":26142431,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":556.52,"free":3119.74},{"epoch":26142432,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":556.49,"free":3119.77},{"epoch":26142433,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.45,"free":3119.8},{"epoch":26142434,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":556.98,"free":3119.27},{"epoch":26142435,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":556.76,"free":3119.51},{"epoch":26142436,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":556.83,"free":3119.43},{"epoch":26142437,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":556.56,"free":3119.7},{"epoch":26142438,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":556.52,"free":3119.73},{"epoch":26142439,"idl":99.75,"recv":0.01,"send":0.01,"writ":0.62,"used":556.91,"free":3119.34},{"epoch":26142440,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":556.57,"free":3119.69},{"epoch":26142441,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.52,"free":3119.73},{"epoch":26142442,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":556.48,"free":3119.77},{"epoch":26142443,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":556.45,"free":3119.8},{"epoch":26142444,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":557.12,"free":3119.12},{"epoch":26142445,"idl":98.58,"recv":0,"send":0,"writ":15.59,"used":557.71,"free":3118.86},{"epoch":26142446,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":555.68,"free":3120.44},{"epoch":26142447,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.64,"free":3120.47},{"epoch":26142448,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.61,"free":3120.49},{"epoch":26142449,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":556.42,"free":3119.68},{"epoch":26142450,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":556.79,"free":3119.33},{"epoch":26142451,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":556.9,"free":3119.21},{"epoch":26142452,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":556.7,"free":3119.41},{"epoch":26142453,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":556.62,"free":3119.49},{"epoch":26142454,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":557.05,"free":3119.05},{"epoch":26142455,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":556.09,"free":3120.03},{"epoch":26142456,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":556.11,"free":3120.01},{"epoch":26142457,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":556.17,"free":3119.94},{"epoch":26142458,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":556.15,"free":3119.96},{"epoch":26142459,"idl":99.6,"recv":0,"send":0,"writ":0.68,"used":557.51,"free":3118.57},{"epoch":26142460,"idl":99.77,"recv":0,"send":0,"writ":0.37,"used":557.12,"free":3118.97},{"epoch":26142461,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":557.04,"free":3119.05},{"epoch":26142462,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":557.06,"free":3119.02},{"epoch":26142463,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.17,"used":557.14,"free":3118.94},{"epoch":26142464,"idl":99.74,"recv":0,"send":0,"writ":0.43,"used":557.4,"free":3118.67},{"epoch":26142465,"idl":99.76,"recv":0,"send":0,"writ":0.47,"used":555.53,"free":3120.57},{"epoch":26142466,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":555.32,"free":3120.77},{"epoch":26142467,"idl":99.9,"recv":0,"send":0,"writ":0.23,"used":555.77,"free":3120.31},{"epoch":26142468,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":555.87,"free":3120.21},{"epoch":26142469,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":556.36,"free":3119.72},{"epoch":26142470,"idl":99.87,"recv":0,"send":0,"writ":0.36,"used":556.86,"free":3119.24},{"epoch":26142471,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":556.82,"free":3119.27},{"epoch":26142472,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.79,"free":3119.3},{"epoch":26142473,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.78,"free":3119.3},{"epoch":26142474,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.92,"free":3119.16},{"epoch":26142475,"idl":99.57,"recv":0,"send":0,"writ":0.7,"used":556.22,"free":3119.88},{"epoch":26142476,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":555.64,"free":3120.46},{"epoch":26142477,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":555.61,"free":3120.48},{"epoch":26142478,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":555.56,"free":3120.52},{"epoch":26142479,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":555.55,"free":3120.53},{"epoch":26142480,"idl":99.71,"recv":0,"send":0,"writ":0.73,"used":557.32,"free":3118.77},{"epoch":26142481,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":556.89,"free":3119.19},{"epoch":26142482,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":556.86,"free":3119.23},{"epoch":26142483,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":556.82,"free":3119.26},{"epoch":26142484,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":556.79,"free":3119.29},{"epoch":26142485,"idl":99.73,"recv":0,"send":0,"writ":0.77,"used":557.14,"free":3118.95},{"epoch":26142486,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":556.92,"free":3119.16},{"epoch":26142487,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":556.88,"free":3119.19},{"epoch":26142488,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":556.85,"free":3119.23},{"epoch":26142489,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":557.05,"free":3119},{"epoch":26142490,"idl":99.72,"recv":0,"send":0,"writ":0.75,"used":557.43,"free":3118.63},{"epoch":26142491,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":556.5,"free":3119.56},{"epoch":26142492,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":556.62,"free":3119.44},{"epoch":26142493,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":556.62,"free":3119.43},{"epoch":26142494,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":556.59,"free":3119.48},{"epoch":26142495,"idl":99.7,"recv":0,"send":0,"writ":0.73,"used":556.78,"free":3119.32},{"epoch":26142496,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":556.79,"free":3119.31},{"epoch":26142497,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":556.75,"free":3119.34},{"epoch":26142498,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":556.84,"free":3119.25},{"epoch":26142499,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":556.86,"free":3119.22},{"epoch":26142500,"idl":99.66,"recv":0,"send":0,"writ":0.61,"used":557.29,"free":3118.81},{"epoch":26142501,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":556.81,"free":3119.28},{"epoch":26142502,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":556.78,"free":3119.31},{"epoch":26142503,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":556.8,"free":3119.28},{"epoch":26142504,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.89,"free":3119.2},{"epoch":26142505,"idl":99.68,"recv":0,"send":0,"writ":0.7,"used":557.4,"free":3118.7},{"epoch":26142506,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":556.83,"free":3119.26},{"epoch":26142507,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":556.79,"free":3119.3},{"epoch":26142508,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":556.76,"free":3119.33},{"epoch":26142509,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.78,"free":3119.3},{"epoch":26142510,"idl":99.65,"recv":0,"send":0,"writ":0.64,"used":556.65,"free":3119.45},{"epoch":26142511,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":556.86,"free":3119.23},{"epoch":26142512,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":556.83,"free":3119.26},{"epoch":26142513,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":556.79,"free":3119.29},{"epoch":26142514,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":556.75,"free":3119.32},{"epoch":26142515,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":557.4,"free":3118.69},{"epoch":26142516,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":557.15,"free":3118.94},{"epoch":26142517,"idl":97.81,"recv":0,"send":0,"writ":0.16,"used":557.12,"free":3118.97},{"epoch":26142518,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":557.08,"free":3119},{"epoch":26142519,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":557.05,"free":3119.01},{"epoch":26142520,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":557.28,"free":3118.8},{"epoch":26142521,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":557.21,"free":3118.86},{"epoch":26142522,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":556.9,"free":3119.16},{"epoch":26142523,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.13,"used":556.87,"free":3119.2},{"epoch":26142524,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":556.82,"free":3119.24},{"epoch":26142525,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":556.84,"free":3119.24},{"epoch":26142526,"idl":99.75,"recv":0,"send":0,"writ":0.61,"used":557.44,"free":3118.63},{"epoch":26142527,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":557.07,"free":3119},{"epoch":26142528,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.13,"free":3118.93},{"epoch":26142529,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":557.09,"free":3118.96},{"epoch":26142530,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":557.07,"free":3119},{"epoch":26142531,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":557.54,"free":3118.53},{"epoch":26142532,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":557.26,"free":3118.81},{"epoch":26142533,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":557.3,"free":3118.76},{"epoch":26142534,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":557.37,"free":3118.68},{"epoch":26142535,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":557.12,"free":3118.95},{"epoch":26142536,"idl":99.75,"recv":0.01,"send":0.01,"writ":0.57,"used":557.53,"free":3118.54},{"epoch":26142537,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":557.26,"free":3118.81},{"epoch":26142538,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":557.3,"free":3118.76},{"epoch":26142539,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":557.38,"free":3118.68},{"epoch":26142540,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":556.24,"free":3119.84},{"epoch":26142541,"idl":99.63,"recv":0,"send":0,"writ":0.39,"used":556.86,"free":3119.21},{"epoch":26142542,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":557.04,"free":3119.02},{"epoch":26142543,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":557.01,"free":3119.05},{"epoch":26142544,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":557.04,"free":3119.01},{"epoch":26142545,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":557.14,"free":3118.93},{"epoch":26142546,"idl":99.71,"recv":0,"send":0,"writ":0.43,"used":557.44,"free":3118.62},{"epoch":26142547,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":556.82,"free":3119.24},{"epoch":26142548,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.78,"free":3119.27},{"epoch":26142549,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":557.22,"free":3118.8},{"epoch":26142550,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":557.05,"free":3118.99},{"epoch":26142551,"idl":99.72,"recv":0,"send":0,"writ":0.38,"used":557.51,"free":3118.52},{"epoch":26142552,"idl":99.84,"recv":0,"send":0,"writ":0.35,"used":557.58,"free":3118.45},{"epoch":26142553,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":557.54,"free":3118.48},{"epoch":26142554,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":557.5,"free":3118.54},{"epoch":26142555,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":564.97,"free":3111.08},{"epoch":26142556,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":565.15,"free":3110.9},{"epoch":26142557,"idl":99.69,"recv":0,"send":0,"writ":0.59,"used":565.61,"free":3110.44},{"epoch":26142558,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":564.96,"free":3111.08},{"epoch":26142559,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":564.92,"free":3111.12},{"epoch":26142560,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":564.91,"free":3111.15},{"epoch":26142561,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":564.87,"free":3111.18},{"epoch":26142562,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":565.5,"free":3110.55},{"epoch":26142563,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":565.22,"free":3110.82},{"epoch":26142564,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":565.18,"free":3110.86},{"epoch":26142565,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":565.41,"free":3110.64},{"epoch":26142566,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":565.37,"free":3110.68},{"epoch":26142567,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":565.76,"free":3110.28},{"epoch":26142568,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":565.48,"free":3110.56},{"epoch":26142569,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":565.44,"free":3110.59},{"epoch":26142570,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":565.19,"free":3110.87},{"epoch":26142571,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":565.15,"free":3110.9},{"epoch":26142572,"idl":99.71,"recv":0,"send":0,"writ":0.5,"used":565.6,"free":3110.44},{"epoch":26142573,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":565.46,"free":3110.58},{"epoch":26142574,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":565.12,"free":3110.91},{"epoch":26142575,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":564.71,"free":3111.34},{"epoch":26142576,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":564.67,"free":3111.38},{"epoch":26142577,"idl":99.38,"recv":0,"send":0,"writ":0.43,"used":564.97,"free":3111.07},{"epoch":26142578,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":564.64,"free":3111.4},{"epoch":26142579,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":564.49,"free":3111.52},{"epoch":26142580,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":563.25,"free":3112.78},{"epoch":26142581,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":563.2,"free":3112.82},{"epoch":26142582,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":563.98,"free":3112.04},{"epoch":26142583,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.2,"used":564.36,"free":3111.66},{"epoch":26142584,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":564.39,"free":3111.62},{"epoch":26142585,"idl":99.7,"recv":0,"send":0,"writ":0.38,"used":564.72,"free":3111.3},{"epoch":26142586,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":564.45,"free":3111.57},{"epoch":26142587,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":564.82,"free":3111.2},{"epoch":26142588,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":564.63,"free":3111.38},{"epoch":26142589,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":564.59,"free":3111.42},{"epoch":26142590,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":564.64,"free":3111.38},{"epoch":26142591,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":564.73,"free":3111.29},{"epoch":26142592,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":565.22,"free":3110.8},{"epoch":26142593,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":564.42,"free":3111.59},{"epoch":26142594,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":564.38,"free":3111.63},{"epoch":26142595,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":564.13,"free":3111.89},{"epoch":26142596,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":564.09,"free":3111.93},{"epoch":26142597,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":564.2,"free":3111.82},{"epoch":26142598,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":564.79,"free":3111.22},{"epoch":26142599,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":564.44,"free":3111.57},{"epoch":26142600,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":564.43,"free":3111.6},{"epoch":26142601,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":564.39,"free":3111.63},{"epoch":26142602,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":564.36,"free":3111.67},{"epoch":26142603,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":564.75,"free":3111.28},{"epoch":26142604,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":564.48,"free":3111.54},{"epoch":26142605,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":564.47,"free":3111.57},{"epoch":26142606,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":564.43,"free":3111.61},{"epoch":26142607,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":564.4,"free":3111.64},{"epoch":26142608,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":564.91,"free":3111.12},{"epoch":26142609,"idl":99.6,"recv":0.01,"send":0.07,"writ":0.32,"used":564.37,"free":3111.63},{"epoch":26142610,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":564.63,"free":3111.38},{"epoch":26142611,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":564.65,"free":3111.36},{"epoch":26142612,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":564.75,"free":3111.26},{"epoch":26142613,"idl":99.7,"recv":0,"send":0,"writ":0.51,"used":564.57,"free":3111.43},{"epoch":26142614,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":563.7,"free":3112.33},{"epoch":26142615,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":563.93,"free":3112.12},{"epoch":26142616,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":563.9,"free":3112.15},{"epoch":26142617,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.21,"used":563.88,"free":3112.16},{"epoch":26142618,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.51,"used":564.79,"free":3111.25},{"epoch":26142619,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":564.88,"free":3111.16},{"epoch":26142620,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":563.91,"free":3112.15},{"epoch":26142621,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":563.92,"free":3112.12},{"epoch":26142622,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":564,"free":3112.05},{"epoch":26142623,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":564.94,"free":3111.1},{"epoch":26142624,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":564.67,"free":3111.37},{"epoch":26142625,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":565.14,"free":3110.92},{"epoch":26142626,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":565.11,"free":3110.94},{"epoch":26142627,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":565.14,"free":3110.91},{"epoch":26142628,"idl":99.72,"recv":0,"send":0,"writ":0.52,"used":565.49,"free":3110.55},{"epoch":26142629,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":564.93,"free":3111.1},{"epoch":26142630,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":564.21,"free":3111.84},{"epoch":26142631,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":564.13,"free":3111.92},{"epoch":26142632,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":564.09,"free":3111.95},{"epoch":26142633,"idl":99.69,"recv":0,"send":0,"writ":0.43,"used":564.67,"free":3111.37},{"epoch":26142634,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":564.98,"free":3111.05},{"epoch":26142635,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":563.77,"free":3112.27},{"epoch":26142636,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":563.7,"free":3112.34},{"epoch":26142637,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":563.67,"free":3112.37},{"epoch":26142638,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":563.6,"free":3112.43},{"epoch":26142639,"idl":99.59,"recv":0,"send":0,"writ":0.69,"used":564.36,"free":3111.66},{"epoch":26142640,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":564.94,"free":3111.1},{"epoch":26142641,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":564.93,"free":3111.1},{"epoch":26142642,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":564.9,"free":3111.13},{"epoch":26142643,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.15,"used":564.86,"free":3111.17},{"epoch":26142644,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":565.06,"free":3110.97},{"epoch":26142645,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":564.43,"free":3111.61},{"epoch":26142646,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":564.22,"free":3111.81},{"epoch":26142647,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":564.19,"free":3111.85},{"epoch":26142648,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":564.15,"free":3111.88},{"epoch":26142649,"idl":99.68,"recv":0,"send":0,"writ":0.52,"used":564.76,"free":3111.26},{"epoch":26142650,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":564.1,"free":3111.93},{"epoch":26142651,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":564.25,"free":3111.78},{"epoch":26142652,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":564.21,"free":3111.81},{"epoch":26142653,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":564.18,"free":3111.84},{"epoch":26142654,"idl":99.72,"recv":0,"send":0,"writ":0.5,"used":564.72,"free":3111.29},{"epoch":26142655,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":564.87,"free":3111.17},{"epoch":26142656,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":564.83,"free":3111.2},{"epoch":26142657,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":564.93,"free":3111.1},{"epoch":26142658,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":564.95,"free":3111.08},{"epoch":26142659,"idl":94.95,"recv":0.26,"send":0.01,"writ":78.3,"used":578.02,"free":3097.82},{"epoch":26142660,"idl":99.52,"recv":0,"send":0,"writ":179.93,"used":566.2,"free":3109.92},{"epoch":26142661,"idl":99.8,"recv":0,"send":0,"writ":0.13,"used":566.13,"free":3109.98},{"epoch":26142662,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":566.1,"free":3110.01},{"epoch":26142663,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":566.06,"free":3110.04},{"epoch":26142664,"idl":99.67,"recv":0,"send":0,"writ":0.45,"used":566.36,"free":3109.75},{"epoch":26142665,"idl":99.71,"recv":0,"send":0,"writ":0.44,"used":564.01,"free":3112.14},{"epoch":26142666,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":563.96,"free":3112.19},{"epoch":26142667,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":563.93,"free":3112.22},{"epoch":26142668,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":563.9,"free":3112.25},{"epoch":26142669,"idl":99.61,"recv":0,"send":0,"writ":0.68,"used":565.54,"free":3110.58},{"epoch":26142670,"idl":99.68,"recv":0,"send":0,"writ":0.36,"used":564.87,"free":3111.26},{"epoch":26142671,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":564.97,"free":3111.16},{"epoch":26142672,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":564.93,"free":3111.19},{"epoch":26142673,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":564.89,"free":3111.22},{"epoch":26142674,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":565.26,"free":3110.87},{"epoch":26142675,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":565.09,"free":3111.06},{"epoch":26142676,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":565.17,"free":3110.98},{"epoch":26142677,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":565.2,"free":3110.95},{"epoch":26142678,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":565.16,"free":3110.98},{"epoch":26142679,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":565.12,"free":3111.01},{"epoch":26142680,"idl":99.68,"recv":0,"send":0,"writ":0.67,"used":566.09,"free":3110.06},{"epoch":26142681,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":565.37,"free":3110.78},{"epoch":26142682,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":565.46,"free":3110.68},{"epoch":26142683,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":565.41,"free":3110.73},{"epoch":26142684,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":565.37,"free":3110.77},{"epoch":26142685,"idl":99.65,"recv":0,"send":0,"writ":0.7,"used":565.23,"free":3110.93},{"epoch":26142686,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":564.83,"free":3111.33},{"epoch":26142687,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":564.8,"free":3111.36},{"epoch":26142688,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":564.95,"free":3111.21},{"epoch":26142689,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":564.95,"free":3111.2},{"epoch":26142690,"idl":99.65,"recv":0,"send":0,"writ":0.7,"used":565.59,"free":3110.57},{"epoch":26142691,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":565.15,"free":3111.01},{"epoch":26142692,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":565.12,"free":3111.04},{"epoch":26142693,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":565.08,"free":3111.08},{"epoch":26142694,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":565.19,"free":3110.96},{"epoch":26142695,"idl":99.56,"recv":0,"send":0,"writ":0.73,"used":564.99,"free":3111.18},{"epoch":26142696,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":564.69,"free":3111.47},{"epoch":26142697,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":564.66,"free":3111.5},{"epoch":26142698,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":564.61,"free":3111.54},{"epoch":26142699,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":564.83,"free":3111.3},{"epoch":26142700,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":565.82,"free":3110.33},{"epoch":26142701,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":565.2,"free":3110.94},{"epoch":26142702,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":565.17,"free":3110.97},{"epoch":26142703,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.14,"used":565.13,"free":3111.01},{"epoch":26142704,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":565.1,"free":3111.05},{"epoch":26142705,"idl":99.63,"recv":0,"send":0,"writ":0.66,"used":565.02,"free":3111.15},{"epoch":26142706,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":565.23,"free":3110.93},{"epoch":26142707,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":565.2,"free":3110.97},{"epoch":26142708,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":565.16,"free":3111},{"epoch":26142709,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.13,"free":3111.03},{"epoch":26142710,"idl":99.68,"recv":0,"send":0,"writ":0.5,"used":564.69,"free":3111.47},{"epoch":26142711,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":564.85,"free":3111.31},{"epoch":26142712,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":564.98,"free":3111.17},{"epoch":26142713,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":564.95,"free":3111.2},{"epoch":26142714,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":564.91,"free":3111.24},{"epoch":26142715,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":565.37,"free":3110.79},{"epoch":26142716,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":565.71,"free":3110.45},{"epoch":26142717,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.32,"free":3110.84},{"epoch":26142718,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":565.41,"free":3110.74},{"epoch":26142719,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":565.43,"free":3110.71},{"epoch":26142720,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":565.41,"free":3110.75},{"epoch":26142721,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":565.67,"free":3110.49},{"epoch":26142722,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":565.35,"free":3110.81},{"epoch":26142723,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":565.31,"free":3110.84},{"epoch":26142724,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":565.39,"free":3110.75},{"epoch":26142725,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":565.21,"free":3110.95},{"epoch":26142726,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":565.54,"free":3110.62},{"epoch":26142727,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":565.18,"free":3110.98},{"epoch":26142728,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":565.15,"free":3111},{"epoch":26142729,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":564.53,"free":3111.6},{"epoch":26142730,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":564.41,"free":3111.74},{"epoch":26142731,"idl":99.73,"recv":0,"send":0,"writ":0.51,"used":565.12,"free":3111.02},{"epoch":26142732,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":564.38,"free":3111.76},{"epoch":26142733,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":564.36,"free":3111.77},{"epoch":26142734,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":564.36,"free":3111.77},{"epoch":26142735,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":564.35,"free":3111.8},{"epoch":26142736,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":564.81,"free":3111.33},{"epoch":26142737,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":564.58,"free":3111.56},{"epoch":26142738,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":564.55,"free":3111.58},{"epoch":26142739,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":564.54,"free":3111.59},{"epoch":26142740,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":564.1,"free":3112.04},{"epoch":26142741,"idl":99.78,"recv":0,"send":0,"writ":0.49,"used":564.72,"free":3111.42},{"epoch":26142742,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":564.74,"free":3111.4},{"epoch":26142743,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":564.73,"free":3111.4},{"epoch":26142744,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":564.73,"free":3111.4},{"epoch":26142745,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":563.78,"free":3112.36},{"epoch":26142746,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":564.2,"free":3111.94},{"epoch":26142747,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":564.22,"free":3111.92},{"epoch":26142748,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":564.21,"free":3111.92},{"epoch":26142749,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":564.21,"free":3111.92},{"epoch":26142750,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":563.79,"free":3112.35},{"epoch":26142751,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":564.48,"free":3111.67},{"epoch":26142752,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":564.67,"free":3111.46},{"epoch":26142753,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":564.67,"free":3111.46},{"epoch":26142754,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":564.65,"free":3111.47},{"epoch":26142755,"idl":99.83,"recv":0,"send":0,"writ":0.38,"used":564.64,"free":3111.49},{"epoch":26142756,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":564.64,"free":3111.49},{"epoch":26142757,"idl":99.75,"recv":0,"send":0,"writ":0.61,"used":565.27,"free":3110.86},{"epoch":26142758,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":564.63,"free":3111.49},{"epoch":26142759,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":564.88,"free":3111.2},{"epoch":26142760,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":564.17,"free":3111.92},{"epoch":26142761,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":564.12,"free":3111.97},{"epoch":26142762,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":564.64,"free":3111.45},{"epoch":26142763,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":564.15,"free":3111.94},{"epoch":26142764,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":564.14,"free":3111.94},{"epoch":26142765,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":564.38,"free":3111.72},{"epoch":26142766,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":564.12,"free":3111.97},{"epoch":26142767,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":564.88,"free":3111.21},{"epoch":26142768,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":564.85,"free":3111.23},{"epoch":26142769,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":564.85,"free":3111.23},{"epoch":26142770,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":565.02,"free":3111.07},{"epoch":26142771,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":565.02,"free":3111.07},{"epoch":26142772,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":565.37,"free":3110.72},{"epoch":26142773,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":565.01,"free":3111.07},{"epoch":26142774,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":565,"free":3111.08},{"epoch":26142775,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":564.99,"free":3111.1},{"epoch":26142776,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":564.99,"free":3111.11},{"epoch":26142777,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":565.38,"free":3110.7},{"epoch":26142778,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":565.22,"free":3110.86},{"epoch":26142779,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":565.19,"free":3110.88},{"epoch":26142780,"idl":98.97,"recv":0,"send":0,"writ":0.29,"used":564.73,"free":3111.37},{"epoch":26142781,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":564.71,"free":3111.38},{"epoch":26142782,"idl":99.76,"recv":0,"send":0,"writ":0.44,"used":565.11,"free":3110.98},{"epoch":26142783,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":564.95,"free":3111.15},{"epoch":26142784,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":564.95,"free":3111.15},{"epoch":26142785,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":564.94,"free":3111.17},{"epoch":26142786,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":564.93,"free":3111.18},{"epoch":26142787,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":565.27,"free":3110.84},{"epoch":26142788,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":564.67,"free":3111.43},{"epoch":26142789,"idl":99.81,"recv":0,"send":0,"writ":0.41,"used":565.13,"free":3110.95},{"epoch":26142790,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":565.18,"free":3110.91},{"epoch":26142791,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":565.15,"free":3110.95},{"epoch":26142792,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.14,"free":3110.95},{"epoch":26142793,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":565.06,"free":3111.02},{"epoch":26142794,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":564.61,"free":3111.46},{"epoch":26142795,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":564.39,"free":3111.7},{"epoch":26142796,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":564.38,"free":3111.71},{"epoch":26142797,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":564.37,"free":3111.71},{"epoch":26142798,"idl":99.8,"recv":0,"send":0,"writ":0.63,"used":564.89,"free":3111.19},{"epoch":26142799,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":564.58,"free":3111.5},{"epoch":26142800,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":564.61,"free":3111.48},{"epoch":26142801,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":564.78,"free":3111.31},{"epoch":26142802,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":564.77,"free":3111.31},{"epoch":26142803,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":565.79,"free":3110.29},{"epoch":26142804,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":565.26,"free":3110.82},{"epoch":26142805,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":565.02,"free":3111.07},{"epoch":26142806,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":564.99,"free":3111.1},{"epoch":26142807,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":564.98,"free":3111.1},{"epoch":26142808,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":565.34,"free":3110.74},{"epoch":26142809,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":564.95,"free":3111.12},{"epoch":26142810,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":564.72,"free":3111.37},{"epoch":26142811,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":564.71,"free":3111.38},{"epoch":26142812,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":564.71,"free":3111.39},{"epoch":26142813,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":565.24,"free":3110.86},{"epoch":26142814,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":565.16,"free":3110.93},{"epoch":26142815,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":564.94,"free":3111.17},{"epoch":26142816,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":564.9,"free":3111.21},{"epoch":26142817,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":564.9,"free":3111.22},{"epoch":26142818,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":565.3,"free":3110.82},{"epoch":26142819,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":564.17,"free":3111.93},{"epoch":26142820,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":564.15,"free":3111.95},{"epoch":26142821,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":564.13,"free":3111.98},{"epoch":26142822,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":564.12,"free":3111.98},{"epoch":26142823,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":564.86,"free":3111.24},{"epoch":26142824,"idl":99.92,"recv":0,"send":0,"writ":0.39,"used":565.26,"free":3110.84},{"epoch":26142825,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":565.42,"free":3110.68},{"epoch":26142826,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":565.01,"free":3111.09},{"epoch":26142827,"idl":99.92,"recv":0,"send":0,"writ":0.12,"used":564.98,"free":3111.11},{"epoch":26142828,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":564.98,"free":3111.11},{"epoch":26142829,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":565.65,"free":3110.43},{"epoch":26142830,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":565.51,"free":3110.6},{"epoch":26142831,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":565.47,"free":3110.63},{"epoch":26142832,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":565.44,"free":3110.65},{"epoch":26142833,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":565.44,"free":3110.65},{"epoch":26142834,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":565.11,"free":3110.97},{"epoch":26142835,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":564.47,"free":3111.64},{"epoch":26142836,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":564.44,"free":3111.66},{"epoch":26142837,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":564.43,"free":3111.67},{"epoch":26142838,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":564.42,"free":3111.67},{"epoch":26142839,"idl":99.76,"recv":0,"send":0,"writ":0.62,"used":565.27,"free":3110.82},{"epoch":26142840,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":564.71,"free":3111.4},{"epoch":26142841,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":564.67,"free":3111.43},{"epoch":26142842,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":564.65,"free":3111.45},{"epoch":26142843,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":564.64,"free":3111.45},{"epoch":26142844,"idl":99.8,"recv":0,"send":0,"writ":0.46,"used":565.36,"free":3110.73},{"epoch":26142845,"idl":99.85,"recv":0,"send":0,"writ":0.46,"used":564.42,"free":3111.68},{"epoch":26142846,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":564.38,"free":3111.72},{"epoch":26142847,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":564.37,"free":3111.73},{"epoch":26142848,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":564.36,"free":3111.73},{"epoch":26142849,"idl":99.73,"recv":0,"send":0,"writ":0.66,"used":565.27,"free":3110.8},{"epoch":26142850,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":565.35,"free":3110.73},{"epoch":26142851,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":565.32,"free":3110.76},{"epoch":26142852,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":565.31,"free":3110.76},{"epoch":26142853,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.17,"used":565.39,"free":3110.68},{"epoch":26142854,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":565.7,"free":3110.37},{"epoch":26142855,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":565.38,"free":3110.71},{"epoch":26142856,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":565.36,"free":3110.74},{"epoch":26142857,"idl":99.9,"recv":0,"send":0,"writ":0.24,"used":554.77,"free":3121.59},{"epoch":26142858,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":537.91,"free":3138.87},{"epoch":26142859,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":538.24,"free":3138.53},{"epoch":26142860,"idl":99.82,"recv":0,"send":0,"writ":0.61,"used":537.77,"free":3139.01},{"epoch":26142861,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":537.4,"free":3139.37},{"epoch":26142862,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":537.38,"free":3139.41},{"epoch":26142863,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":537.38,"free":3139.43},{"epoch":26142864,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":537.4,"free":3139.4},{"epoch":26142865,"idl":99.74,"recv":0,"send":0,"writ":0.7,"used":538.76,"free":3138.05},{"epoch":26142866,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":538.3,"free":3138.51},{"epoch":26142867,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":538.28,"free":3138.54},{"epoch":26142868,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":538.27,"free":3138.54},{"epoch":26142869,"idl":99.53,"recv":0,"send":0,"writ":0.41,"used":538.73,"free":3138.09},{"epoch":26142870,"idl":99.66,"recv":0,"send":0,"writ":0.68,"used":538.91,"free":3137.92},{"epoch":26142871,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":538.5,"free":3138.34},{"epoch":26142872,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":538.49,"free":3138.34},{"epoch":26142873,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":538.49,"free":3138.34},{"epoch":26142874,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":538.49,"free":3138.35},{"epoch":26142875,"idl":99.66,"recv":0,"send":0,"writ":0.74,"used":537.54,"free":3139.32},{"epoch":26142876,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":536.74,"free":3140.11},{"epoch":26142877,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":536.74,"free":3140.11},{"epoch":26142878,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":536.74,"free":3140.11},{"epoch":26142879,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":538.4,"free":3138.44},{"epoch":26142880,"idl":99.77,"recv":0,"send":0,"writ":0.85,"used":538.95,"free":3137.9},{"epoch":26142881,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":538.43,"free":3138.41},{"epoch":26142882,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":538.42,"free":3138.41},{"epoch":26142883,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":538.16,"free":3138.68},{"epoch":26142884,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":537.65,"free":3139.18},{"epoch":26142885,"idl":99.71,"recv":0,"send":0,"writ":0.72,"used":537.97,"free":3138.88},{"epoch":26142886,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":537.38,"free":3139.46},{"epoch":26142887,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":537.37,"free":3139.46},{"epoch":26142888,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":537.37,"free":3139.46},{"epoch":26142889,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":537.47,"free":3139.36},{"epoch":26142890,"idl":99.63,"recv":0,"send":0,"writ":0.57,"used":537.36,"free":3139.48},{"epoch":26142891,"idl":99.95,"recv":0,"send":0,"writ":0.28,"used":537.29,"free":3139.55},{"epoch":26142892,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":537.28,"free":3139.55},{"epoch":26142893,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":537.28,"free":3139.55},{"epoch":26142894,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":537.24,"free":3139.58},{"epoch":26142895,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":537.26,"free":3139.58},{"epoch":26142896,"idl":99.77,"recv":0,"send":0,"writ":0.53,"used":538.09,"free":3138.74},{"epoch":26142897,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":537.74,"free":3139.09},{"epoch":26142898,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":537.72,"free":3139.11},{"epoch":26142899,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":537.7,"free":3139.12},{"epoch":26142900,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":537.32,"free":3139.51},{"epoch":26142901,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":538.06,"free":3138.77},{"epoch":26142902,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":537.68,"free":3139.15},{"epoch":26142903,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":537.67,"free":3139.15},{"epoch":26142904,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":537.67,"free":3139.15},{"epoch":26142905,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":537.92,"free":3138.91},{"epoch":26142906,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":538.47,"free":3138.36},{"epoch":26142907,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":538.14,"free":3138.69},{"epoch":26142908,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":538.13,"free":3138.69},{"epoch":26142909,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":537.89,"free":3138.92},{"epoch":26142910,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":537.89,"free":3138.94},{"epoch":26142911,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":538.37,"free":3138.45},{"epoch":26142912,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.16,"used":538.2,"free":3138.61},{"epoch":26142913,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":538.23,"free":3138.58},{"epoch":26142914,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":538.01,"free":3138.82},{"epoch":26142915,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":537.97,"free":3138.88},{"epoch":26142916,"idl":99.81,"recv":0,"send":0,"writ":0.61,"used":538.55,"free":3138.29},{"epoch":26142917,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":537.7,"free":3139.14},{"epoch":26142918,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":537.67,"free":3139.17},{"epoch":26142919,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":537.66,"free":3139.17},{"epoch":26142920,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":537.44,"free":3139.41},{"epoch":26142921,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":537.99,"free":3138.86},{"epoch":26142922,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":538.13,"free":3138.71},{"epoch":26142923,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":538.13,"free":3138.71},{"epoch":26142924,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":538.12,"free":3138.71},{"epoch":26142925,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":537.9,"free":3138.95},{"epoch":26142926,"idl":99.82,"recv":0,"send":0,"writ":0.44,"used":538.34,"free":3138.51},{"epoch":26142927,"idl":99.94,"recv":0,"send":0,"writ":0.23,"used":538.04,"free":3138.8},{"epoch":26142928,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":538.04,"free":3138.8},{"epoch":26142929,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":538.03,"free":3138.8},{"epoch":26142930,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":538.02,"free":3138.83},{"epoch":26142931,"idl":99.8,"recv":0,"send":0,"writ":0.45,"used":538.4,"free":3138.44},{"epoch":26142932,"idl":99.94,"recv":0,"send":0,"writ":0.23,"used":538.25,"free":3138.58},{"epoch":26142933,"idl":99.96,"recv":0,"send":0,"writ":0.2,"used":538.24,"free":3138.58},{"epoch":26142934,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":538.24,"free":3138.58},{"epoch":26142935,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":538,"free":3138.84},{"epoch":26142936,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":537.98,"free":3138.86},{"epoch":26142937,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":538.86,"free":3137.98},{"epoch":26142938,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":538.21,"free":3138.61},{"epoch":26142939,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":537.98,"free":3138.82},{"epoch":26142940,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":536.74,"free":3140.08},{"epoch":26142941,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":536.71,"free":3140.11},{"epoch":26142942,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":538.44,"free":3138.36},{"epoch":26142943,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":538.17,"free":3138.63},{"epoch":26142944,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":538.17,"free":3138.63},{"epoch":26142945,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":538.16,"free":3138.66},{"epoch":26142946,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":538.15,"free":3138.66},{"epoch":26142947,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":538.63,"free":3138.17},{"epoch":26142948,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":538.14,"free":3138.66},{"epoch":26142949,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":538.13,"free":3138.66},{"epoch":26142950,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":538.15,"free":3138.66},{"epoch":26142951,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":538.13,"free":3138.68},{"epoch":26142952,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":538.55,"free":3138.26},{"epoch":26142953,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":538.1,"free":3138.7},{"epoch":26142954,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":538.08,"free":3138.71},{"epoch":26142955,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":538.52,"free":3138.29},{"epoch":26142956,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":538.5,"free":3138.3},{"epoch":26142957,"idl":99.83,"recv":0,"send":0,"writ":0.52,"used":538.76,"free":3138.03},{"epoch":26142958,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":538.22,"free":3138.57},{"epoch":26142959,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":538.22,"free":3138.57},{"epoch":26142960,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":538.24,"free":3138.57},{"epoch":26142961,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":538.21,"free":3138.59},{"epoch":26142962,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":538.52,"free":3138.27},{"epoch":26142963,"idl":99.96,"recv":0,"send":0,"writ":0.29,"used":537.94,"free":3138.85},{"epoch":26142964,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":537.91,"free":3138.88},{"epoch":26142965,"idl":99.91,"recv":0,"send":0,"writ":0.36,"used":538.41,"free":3138.39},{"epoch":26142966,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":538.41,"free":3138.38},{"epoch":26142967,"idl":99.81,"recv":0,"send":0,"writ":0.42,"used":538.6,"free":3138.18},{"epoch":26142968,"idl":99.94,"recv":0,"send":0,"writ":0.35,"used":537.14,"free":3139.64},{"epoch":26142969,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":538.33,"free":3138.42},{"epoch":26142970,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":538.38,"free":3138.4},{"epoch":26142971,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":538.34,"free":3138.42},{"epoch":26142972,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":538.33,"free":3138.44},{"epoch":26142973,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":539.1,"free":3137.67},{"epoch":26142974,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":538.32,"free":3138.45},{"epoch":26142975,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":537.85,"free":3138.94},{"epoch":26142976,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":537.84,"free":3138.95},{"epoch":26142977,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":537.8,"free":3138.98},{"epoch":26142978,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":538.04,"free":3138.74},{"epoch":26142979,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":537.37,"free":3139.4},{"epoch":26142980,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":538.24,"free":3138.55},{"epoch":26142981,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":538.24,"free":3138.55},{"epoch":26142982,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":538.21,"free":3138.57},{"epoch":26142983,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":538.89,"free":3137.89},{"epoch":26142984,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":538.44,"free":3138.33},{"epoch":26142985,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":538.76,"free":3138.03},{"epoch":26142986,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":538.67,"free":3138.11},{"epoch":26142987,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":538.67,"free":3138.11},{"epoch":26142988,"idl":99.75,"recv":0,"send":0,"writ":0.5,"used":538.91,"free":3137.87},{"epoch":26142989,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":538.38,"free":3138.39},{"epoch":26142990,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":537.45,"free":3139.34},{"epoch":26142991,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":537.41,"free":3139.38},{"epoch":26142992,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":537.4,"free":3139.38},{"epoch":26142993,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":538.18,"free":3138.6},{"epoch":26142994,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":538.35,"free":3138.42},{"epoch":26142995,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":538.61,"free":3138.18},{"epoch":26142996,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":538.61,"free":3138.18},{"epoch":26142997,"idl":99.93,"recv":0.06,"send":3.94,"writ":0.57,"used":538.17,"free":3138.59},{"epoch":26142998,"idl":99.8,"recv":0,"send":0.04,"writ":0.5,"used":538.14,"free":3138.61},{"epoch":26142999,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":538.03,"free":3138.7},{"epoch":26143000,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":538,"free":3138.75},{"epoch":26143001,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":537.98,"free":3138.77},{"epoch":26143002,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":537.97,"free":3138.77},{"epoch":26143003,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":538.31,"free":3138.42},{"epoch":26143004,"idl":99.94,"recv":0,"send":0,"writ":0.36,"used":537.94,"free":3138.79},{"epoch":26143005,"idl":99.84,"recv":0,"send":0,"writ":0.39,"used":537.95,"free":3138.8},{"epoch":26143006,"idl":99.95,"recv":0,"send":0,"writ":0.24,"used":537.94,"free":3138.8},{"epoch":26143007,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":537.92,"free":3138.81},{"epoch":26143008,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":537.9,"free":3138.83},{"epoch":26143009,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":538.02,"free":3138.71},{"epoch":26143010,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":538.16,"free":3138.59},{"epoch":26143011,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":538.13,"free":3138.61},{"epoch":26143012,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":538.12,"free":3138.61},{"epoch":26143013,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":538.12,"free":3138.61},{"epoch":26143014,"idl":99.8,"recv":0,"send":0,"writ":0.73,"used":538.46,"free":3138.28},{"epoch":26143015,"idl":99.9,"recv":0,"send":0,"writ":0.35,"used":537.87,"free":3138.9},{"epoch":26143016,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":537.85,"free":3138.91},{"epoch":26143017,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":537.85,"free":3138.91},{"epoch":26143018,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":537.82,"free":3138.93},{"epoch":26143019,"idl":99.78,"recv":0,"send":0,"writ":0.68,"used":538.3,"free":3138.45},{"epoch":26143020,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":536.87,"free":3139.9},{"epoch":26143021,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":536.84,"free":3139.92},{"epoch":26143022,"idl":99.75,"recv":0,"send":0,"writ":0.16,"used":536.83,"free":3139.92},{"epoch":26143023,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":536.83,"free":3139.92},{"epoch":26143024,"idl":95.16,"recv":0.29,"send":0.01,"writ":78.37,"used":549.25,"free":3127.38},{"epoch":26143025,"idl":99.71,"recv":0,"send":0,"writ":180.06,"used":540.57,"free":3136.19},{"epoch":26143026,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":540.56,"free":3136.19},{"epoch":26143027,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":540.55,"free":3136.2},{"epoch":26143028,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":540.54,"free":3136.2},{"epoch":26143029,"idl":99.68,"recv":0,"send":0,"writ":0.79,"used":539.99,"free":3136.73},{"epoch":26143030,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":537.85,"free":3138.91},{"epoch":26143031,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":537.85,"free":3138.91},{"epoch":26143032,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":537.85,"free":3138.91},{"epoch":26143033,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":537.84,"free":3138.91},{"epoch":26143034,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":538.18,"free":3138.57},{"epoch":26143035,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":537.29,"free":3139.5},{"epoch":26143036,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":537.08,"free":3139.7},{"epoch":26143037,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":536.84,"free":3139.94},{"epoch":26143038,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":536.81,"free":3139.96},{"epoch":26143039,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":537.15,"free":3139.62},{"epoch":26143040,"idl":99.91,"recv":0,"send":0,"writ":0.43,"used":537.3,"free":3139.49},{"epoch":26143041,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":537.3,"free":3139.48},{"epoch":26143042,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":537.3,"free":3139.48},{"epoch":26143043,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":537.29,"free":3139.48},{"epoch":26143044,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":537.37,"free":3139.4},{"epoch":26143045,"idl":99.67,"recv":0.01,"send":0.04,"writ":1.32,"used":546.98,"free":3129.53},{"epoch":26143046,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":546.71,"free":3129.8},{"epoch":26143047,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":546.68,"free":3129.82},{"epoch":26143048,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":546.67,"free":3129.83},{"epoch":26143049,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":546.66,"free":3129.83},{"epoch":26143050,"idl":99.68,"recv":0,"send":0,"writ":0.77,"used":546.49,"free":3130.04},{"epoch":26143051,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":546.16,"free":3130.37},{"epoch":26143052,"idl":99.9,"recv":0.01,"send":0.04,"writ":0.29,"used":546.88,"free":3129.6},{"epoch":26143053,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":546.98,"free":3129.48},{"epoch":26143054,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":546.95,"free":3129.51},{"epoch":26143055,"idl":99.73,"recv":0,"send":0,"writ":0.76,"used":549.32,"free":3127.15},{"epoch":26143056,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":548.9,"free":3127.57},{"epoch":26143057,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":548.88,"free":3127.58},{"epoch":26143058,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":548.86,"free":3127.6},{"epoch":26143059,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":549.11,"free":3127.33},{"epoch":26143060,"idl":99.73,"recv":0,"send":0,"writ":0.73,"used":549.21,"free":3127.24},{"epoch":26143061,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":549,"free":3127.45},{"epoch":26143062,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":548.99,"free":3127.45},{"epoch":26143063,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":548.99,"free":3127.45},{"epoch":26143064,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":548.95,"free":3127.5},{"epoch":26143065,"idl":99.6,"recv":0,"send":0,"writ":0.78,"used":549.88,"free":3126.59},{"epoch":26143066,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":548.94,"free":3127.53},{"epoch":26143067,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":548.93,"free":3127.53},{"epoch":26143068,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":548.9,"free":3127.56},{"epoch":26143069,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":548.89,"free":3127.56},{"epoch":26143070,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":549.47,"free":3127},{"epoch":26143071,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":549.12,"free":3127.35},{"epoch":26143072,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":549.09,"free":3127.38},{"epoch":26143073,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":549.25,"free":3127.2},{"epoch":26143074,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":549.26,"free":3127.19},{"epoch":26143075,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":550.09,"free":3126.37},{"epoch":26143076,"idl":99.91,"recv":0,"send":0,"writ":0.31,"used":549.49,"free":3126.98},{"epoch":26143077,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":549.46,"free":3127},{"epoch":26143078,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":549.45,"free":3127.01},{"epoch":26143079,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":549.44,"free":3127.01},{"epoch":26143080,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":549.19,"free":3127.31},{"epoch":26143081,"idl":99.77,"recv":0,"send":0.01,"writ":0.6,"used":549.85,"free":3126.65},{"epoch":26143082,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":549.36,"free":3127.13},{"epoch":26143083,"idl":99.72,"recv":0,"send":0,"writ":0.14,"used":549.41,"free":3127.08},{"epoch":26143084,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":549.51,"free":3126.98},{"epoch":26143085,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":549.51,"free":3126.99},{"epoch":26143086,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":550.01,"free":3126.49},{"epoch":26143087,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":549.73,"free":3126.76},{"epoch":26143088,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":549.7,"free":3126.79},{"epoch":26143089,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":549.21,"free":3127.26},{"epoch":26143090,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":549.44,"free":3127.04},{"epoch":26143091,"idl":99.76,"recv":0,"send":0,"writ":0.53,"used":549.78,"free":3126.7},{"epoch":26143092,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":549.4,"free":3127.08},{"epoch":26143093,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":549.38,"free":3127.09},{"epoch":26143094,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":549.35,"free":3127.11},{"epoch":26143095,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":549.42,"free":3127.06},{"epoch":26143096,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":550,"free":3126.48},{"epoch":26143097,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":549.49,"free":3126.99},{"epoch":26143098,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":549.47,"free":3126.99},{"epoch":26143099,"idl":99.84,"recv":0,"send":0.01,"writ":0.16,"used":549.42,"free":3127.04},{"epoch":26143100,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":549.43,"free":3127.05},{"epoch":26143101,"idl":99.73,"recv":0,"send":0,"writ":0.62,"used":550.18,"free":3126.29},{"epoch":26143102,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":549.63,"free":3126.84},{"epoch":26143103,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":549.61,"free":3126.85},{"epoch":26143104,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":549.59,"free":3126.87},{"epoch":26143105,"idl":99.81,"recv":0,"send":0.02,"writ":0.35,"used":549.42,"free":3127.06},{"epoch":26143106,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":549.89,"free":3126.58},{"epoch":26143107,"idl":99.84,"recv":0.01,"send":0.07,"writ":0.15,"used":549.42,"free":3127.04},{"epoch":26143108,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":549.38,"free":3127.08},{"epoch":26143109,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":549.49,"free":3126.96},{"epoch":26143110,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":549.72,"free":3126.75},{"epoch":26143111,"idl":99.72,"recv":0,"send":0,"writ":0.38,"used":550.05,"free":3126.42},{"epoch":26143112,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":549.44,"free":3127.02},{"epoch":26143113,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":549.41,"free":3127.05},{"epoch":26143114,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":549.4,"free":3127.05},{"epoch":26143115,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":549.87,"free":3126.61},{"epoch":26143116,"idl":99.7,"recv":0,"send":0,"writ":0.34,"used":550.19,"free":3126.28},{"epoch":26143117,"idl":99.83,"recv":0,"send":0,"writ":0.4,"used":549.59,"free":3126.87},{"epoch":26143118,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":549.56,"free":3126.9},{"epoch":26143119,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":549.71,"free":3126.72},{"epoch":26143120,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":549.49,"free":3126.96},{"epoch":26143121,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":549.47,"free":3126.98},{"epoch":26143122,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":550.02,"free":3126.41},{"epoch":26143123,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":549.66,"free":3126.76},{"epoch":26143124,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":549.66,"free":3126.77},{"epoch":26143125,"idl":99.78,"recv":0,"send":0,"writ":0.39,"used":549.44,"free":3127.02},{"epoch":26143126,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":549.4,"free":3127.05},{"epoch":26143127,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":550.28,"free":3126.17},{"epoch":26143128,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":549.61,"free":3126.84},{"epoch":26143129,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":549.6,"free":3126.84},{"epoch":26143130,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":549.59,"free":3126.87},{"epoch":26143131,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":549.58,"free":3126.89},{"epoch":26143132,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":549.95,"free":3126.51},{"epoch":26143133,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":549.54,"free":3126.92},{"epoch":26143134,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":549.7,"free":3126.76},{"epoch":26143135,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":549.47,"free":3127},{"epoch":26143136,"idl":99.85,"recv":0,"send":0.01,"writ":0.19,"used":549.45,"free":3127.02},{"epoch":26143137,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":549.86,"free":3126.6},{"epoch":26143138,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":549.67,"free":3126.79},{"epoch":26143139,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":549.65,"free":3126.81},{"epoch":26143140,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":549.9,"free":3126.58},{"epoch":26143141,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":549.88,"free":3126.59},{"epoch":26143142,"idl":99.66,"recv":0,"send":0,"writ":0.5,"used":549.95,"free":3126.52},{"epoch":26143143,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":549.11,"free":3127.35},{"epoch":26143144,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":549.08,"free":3127.38},{"epoch":26143145,"idl":99.71,"recv":0,"send":0,"writ":0.4,"used":548.62,"free":3127.85},{"epoch":26143146,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":548.59,"free":3127.88},{"epoch":26143147,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":549.14,"free":3127.33},{"epoch":26143148,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":549.79,"free":3126.67},{"epoch":26143149,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":549.76,"free":3126.68},{"epoch":26143150,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":550.06,"free":3126.39},{"epoch":26143151,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":549.97,"free":3126.48},{"epoch":26143152,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":550.29,"free":3126.15},{"epoch":26143153,"idl":99.77,"recv":0,"send":0,"writ":0.45,"used":550.05,"free":3126.39},{"epoch":26143154,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":549.65,"free":3126.78},{"epoch":26143155,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":549.66,"free":3126.8},{"epoch":26143156,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":549.63,"free":3126.82},{"epoch":26143157,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":549.85,"free":3126.59},{"epoch":26143158,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":550.18,"free":3126.26},{"epoch":26143159,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":549.57,"free":3126.86},{"epoch":26143160,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":549.81,"free":3126.64},{"epoch":26143161,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":549.89,"free":3126.56},{"epoch":26143162,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":549.97,"free":3126.48},{"epoch":26143163,"idl":99.72,"recv":0,"send":0,"writ":0.53,"used":550.36,"free":3126.08},{"epoch":26143164,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":549.93,"free":3126.51},{"epoch":26143165,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":549.92,"free":3126.53},{"epoch":26143166,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":549.91,"free":3126.54},{"epoch":26143167,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":549.88,"free":3126.57},{"epoch":26143168,"idl":99.71,"recv":0,"send":0,"writ":0.51,"used":550.22,"free":3126.22},{"epoch":26143169,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":549.84,"free":3126.6},{"epoch":26143170,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":549.86,"free":3126.59},{"epoch":26143171,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":549.82,"free":3126.63},{"epoch":26143172,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":549.78,"free":3126.66},{"epoch":26143173,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":550.32,"free":3126.12},{"epoch":26143174,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":549.96,"free":3126.48},{"epoch":26143175,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":549.95,"free":3126.5},{"epoch":26143176,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":549.94,"free":3126.51},{"epoch":26143177,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":549.91,"free":3126.53},{"epoch":26143178,"idl":99.68,"recv":0,"send":0,"writ":0.44,"used":550.58,"free":3125.86},{"epoch":26143179,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":550.14,"free":3126.27},{"epoch":26143180,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":549.4,"free":3127.02},{"epoch":26143181,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":549.38,"free":3127.04},{"epoch":26143182,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":549.35,"free":3127.07},{"epoch":26143183,"idl":99.73,"recv":0,"send":0,"writ":0.42,"used":550,"free":3126.41},{"epoch":26143184,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":550.07,"free":3126.33},{"epoch":26143185,"idl":99.77,"recv":0.01,"send":0.03,"writ":0.35,"used":550.09,"free":3126.33},{"epoch":26143186,"idl":99.8,"recv":0.04,"send":0.14,"writ":0.44,"used":549.6,"free":3126.8},{"epoch":26143187,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.18,"used":550.21,"free":3126.18},{"epoch":26143188,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":551.64,"free":3124.71},{"epoch":26143189,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":552.79,"free":3123.56},{"epoch":26143190,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":551.45,"free":3124.91},{"epoch":26143191,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":551.11,"free":3125.26},{"epoch":26143192,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":551.09,"free":3125.27},{"epoch":26143193,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":551.05,"free":3125.3},{"epoch":26143194,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":551.8,"free":3124.55},{"epoch":26143195,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":551.76,"free":3124.6},{"epoch":26143196,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":551.84,"free":3124.53},{"epoch":26143197,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":551.93,"free":3124.42},{"epoch":26143198,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":551.92,"free":3124.44},{"epoch":26143199,"idl":99.71,"recv":0,"send":0,"writ":0.53,"used":552.57,"free":3123.78},{"epoch":26143200,"idl":99.7,"recv":0,"send":0,"writ":0.31,"used":551.92,"free":3124.45},{"epoch":26143201,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":551.88,"free":3124.48},{"epoch":26143202,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":551.86,"free":3124.5},{"epoch":26143203,"idl":99.82,"recv":0.03,"send":2.72,"writ":0.54,"used":551.83,"free":3124.51},{"epoch":26143204,"idl":99.73,"recv":0,"send":0.01,"writ":0.57,"used":552.16,"free":3124.17},{"epoch":26143205,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":552.06,"free":3124.29},{"epoch":26143206,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":552.03,"free":3124.31},{"epoch":26143207,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":552.03,"free":3124.31},{"epoch":26143208,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":552.18,"free":3124.17},{"epoch":26143209,"idl":99.65,"recv":0,"send":0,"writ":0.71,"used":552.98,"free":3123.35},{"epoch":26143210,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":552.18,"free":3124.18},{"epoch":26143211,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.16,"free":3124.19},{"epoch":26143212,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":552.13,"free":3124.21},{"epoch":26143213,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":552.11,"free":3124.23},{"epoch":26143214,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":552.55,"free":3123.79},{"epoch":26143215,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":552.1,"free":3124.25},{"epoch":26143216,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":552.07,"free":3124.28},{"epoch":26143217,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":552.06,"free":3124.28},{"epoch":26143218,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":552.03,"free":3124.31},{"epoch":26143219,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":552.37,"free":3123.97},{"epoch":26143220,"idl":99.76,"recv":0,"send":0,"writ":0.45,"used":552.4,"free":3123.95},{"epoch":26143221,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.43,"free":3123.92},{"epoch":26143222,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":552.4,"free":3123.94},{"epoch":26143223,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":552.39,"free":3123.95},{"epoch":26143224,"idl":99.68,"recv":0,"send":0,"writ":0.52,"used":552.71,"free":3123.62},{"epoch":26143225,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":551.15,"free":3125.21},{"epoch":26143226,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":551.11,"free":3125.24},{"epoch":26143227,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":551.08,"free":3125.26},{"epoch":26143228,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":551.05,"free":3125.29},{"epoch":26143229,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":551.04,"free":3125.29},{"epoch":26143230,"idl":99.59,"recv":0,"send":0,"writ":0.73,"used":551.73,"free":3124.62},{"epoch":26143231,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":551.2,"free":3125.14},{"epoch":26143232,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":551.18,"free":3125.16},{"epoch":26143233,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":551.17,"free":3125.17},{"epoch":26143234,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":551.13,"free":3125.2},{"epoch":26143235,"idl":99.62,"recv":0,"send":0,"writ":0.73,"used":552.91,"free":3123.43},{"epoch":26143236,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":552.34,"free":3124},{"epoch":26143237,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.33,"free":3124},{"epoch":26143238,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":552.29,"free":3124.03},{"epoch":26143239,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":552.28,"free":3124.02},{"epoch":26143240,"idl":99.63,"recv":0,"send":0,"writ":0.71,"used":552.79,"free":3123.53},{"epoch":26143241,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.26,"free":3124.05},{"epoch":26143242,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":552.23,"free":3124.08},{"epoch":26143243,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":552.38,"free":3123.93},{"epoch":26143244,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":552.37,"free":3123.93},{"epoch":26143245,"idl":99.66,"recv":0,"send":0,"writ":0.76,"used":552.85,"free":3123.47},{"epoch":26143246,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":552.14,"free":3124.18},{"epoch":26143247,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.08,"free":3124.24},{"epoch":26143248,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":552.06,"free":3124.25},{"epoch":26143249,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.04,"free":3124.27},{"epoch":26143250,"idl":99.68,"recv":0,"send":0,"writ":0.76,"used":552.49,"free":3123.83},{"epoch":26143251,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":552.26,"free":3124.05},{"epoch":26143252,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":552.23,"free":3124.08},{"epoch":26143253,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":552.4,"free":3123.91},{"epoch":26143254,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.38,"free":3123.93},{"epoch":26143255,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":553.43,"free":3122.89},{"epoch":26143256,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":552.36,"free":3123.96},{"epoch":26143257,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":552.34,"free":3123.97},{"epoch":26143258,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.32,"free":3123.99},{"epoch":26143259,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.29,"free":3124.02},{"epoch":26143260,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":553.1,"free":3123.22},{"epoch":26143261,"idl":99.94,"recv":0,"send":0,"writ":0.29,"used":552.27,"free":3124.05},{"epoch":26143262,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":552.26,"free":3124.05},{"epoch":26143263,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":552.24,"free":3124.06},{"epoch":26143264,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.22,"free":3124.09},{"epoch":26143265,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":551.93,"free":3124.41},{"epoch":26143266,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":553.14,"free":3123.2},{"epoch":26143267,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":552.64,"free":3123.69},{"epoch":26143268,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.63,"free":3123.7},{"epoch":26143269,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":552.38,"free":3123.92},{"epoch":26143270,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":551.64,"free":3124.68},{"epoch":26143271,"idl":99.81,"recv":0,"send":0,"writ":0.61,"used":552.7,"free":3123.61},{"epoch":26143272,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.57,"free":3123.74},{"epoch":26143273,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":552.54,"free":3123.77},{"epoch":26143274,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":552.53,"free":3123.77},{"epoch":26143275,"idl":99.86,"recv":0,"send":0,"writ":0.35,"used":552.29,"free":3124.03},{"epoch":26143276,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":552.65,"free":3123.66},{"epoch":26143277,"idl":99.92,"recv":0,"send":0,"writ":0.25,"used":552.42,"free":3123.89},{"epoch":26143278,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.4,"free":3123.9},{"epoch":26143279,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.38,"free":3123.92},{"epoch":26143280,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":552.86,"free":3123.45},{"epoch":26143281,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":553.43,"free":3122.88},{"epoch":26143282,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.59,"free":3123.71},{"epoch":26143283,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.56,"free":3123.74},{"epoch":26143284,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.55,"free":3123.75},{"epoch":26143285,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":552.78,"free":3123.53},{"epoch":26143286,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":553.3,"free":3123},{"epoch":26143287,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":552.5,"free":3123.81},{"epoch":26143288,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":552.65,"free":3123.64},{"epoch":26143289,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.62,"free":3123.68},{"epoch":26143290,"idl":99.91,"recv":0,"send":0,"writ":0.31,"used":552.64,"free":3123.68},{"epoch":26143291,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":553.17,"free":3123.14},{"epoch":26143292,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":552.83,"free":3123.47},{"epoch":26143293,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.8,"free":3123.49},{"epoch":26143294,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.77,"free":3123.52},{"epoch":26143295,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":552.54,"free":3123.77},{"epoch":26143296,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":552.88,"free":3123.43},{"epoch":26143297,"idl":99.95,"recv":0,"send":0,"writ":0.4,"used":552.74,"free":3123.55},{"epoch":26143298,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.74,"free":3123.56},{"epoch":26143299,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":552.65,"free":3123.62},{"epoch":26143300,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":552.63,"free":3123.66},{"epoch":26143301,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":553,"free":3123.28},{"epoch":26143302,"idl":99.93,"recv":0.01,"send":0.76,"writ":0.39,"used":552.83,"free":3123.46},{"epoch":26143303,"idl":99.95,"recv":0,"send":0.05,"writ":0.2,"used":552.7,"free":3123.58},{"epoch":26143304,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.88,"free":3123.42},{"epoch":26143305,"idl":99.91,"recv":0,"send":0,"writ":0.32,"used":552.88,"free":3123.44},{"epoch":26143306,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":552.61,"free":3123.7},{"epoch":26143307,"idl":99.79,"recv":0,"send":0,"writ":0.64,"used":552.71,"free":3123.59},{"epoch":26143308,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.3,"free":3124},{"epoch":26143309,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.29,"free":3124},{"epoch":26143310,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":552.52,"free":3123.79},{"epoch":26143311,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":552.51,"free":3123.79},{"epoch":26143312,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":552.99,"free":3123.31},{"epoch":26143313,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":552.21,"free":3124.09},{"epoch":26143314,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.35,"free":3123.94},{"epoch":26143315,"idl":99.91,"recv":0,"send":0,"writ":0.32,"used":552.85,"free":3123.45},{"epoch":26143316,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.85,"free":3123.46},{"epoch":26143317,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":552.85,"free":3123.45},{"epoch":26143318,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":551.81,"free":3124.49},{"epoch":26143319,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":551.8,"free":3124.49},{"epoch":26143320,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":552.75,"free":3123.55},{"epoch":26143321,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.76,"free":3123.54},{"epoch":26143322,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":553.08,"free":3123.21},{"epoch":26143323,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.72,"free":3123.57},{"epoch":26143324,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.68,"free":3123.6},{"epoch":26143325,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":553.21,"free":3123.09},{"epoch":26143326,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.1,"free":3123.2},{"epoch":26143327,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":553.34,"free":3122.95},{"epoch":26143328,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":552.81,"free":3123.48},{"epoch":26143329,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":552.78,"free":3123.48},{"epoch":26143330,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":553.01,"free":3123.26},{"epoch":26143331,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.99,"free":3123.28},{"epoch":26143332,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":553.71,"free":3122.56},{"epoch":26143333,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":552.71,"free":3123.56},{"epoch":26143334,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.7,"free":3123.56},{"epoch":26143335,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":552.45,"free":3123.83},{"epoch":26143336,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.43,"free":3123.84},{"epoch":26143337,"idl":99.81,"recv":0,"send":0,"writ":0.46,"used":553,"free":3123.27},{"epoch":26143338,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":552.86,"free":3123.41},{"epoch":26143339,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.85,"free":3123.41},{"epoch":26143340,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":553.09,"free":3123.19},{"epoch":26143341,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":553.08,"free":3123.19},{"epoch":26143342,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.05,"free":3123.22},{"epoch":26143343,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":553.18,"free":3123.08},{"epoch":26143344,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":552.22,"free":3124.04},{"epoch":26143345,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":552.03,"free":3124.25},{"epoch":26143346,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":552,"free":3124.27},{"epoch":26143347,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":551.99,"free":3124.28},{"epoch":26143348,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":552.31,"free":3123.95},{"epoch":26143349,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":551.98,"free":3124.28},{"epoch":26143350,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":552.37,"free":3123.9},{"epoch":26143351,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":552.37,"free":3123.9},{"epoch":26143352,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.34,"free":3123.93},{"epoch":26143353,"idl":99.83,"recv":0,"send":0,"writ":0.54,"used":552.68,"free":3123.58},{"epoch":26143354,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.3,"free":3123.97},{"epoch":26143355,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":552.08,"free":3124.21},{"epoch":26143356,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.04,"free":3124.25},{"epoch":26143357,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.03,"free":3124.25},{"epoch":26143358,"idl":99.82,"recv":0,"send":0,"writ":0.57,"used":552.48,"free":3123.8},{"epoch":26143359,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":552,"free":3124.25},{"epoch":26143360,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":552.46,"free":3123.81},{"epoch":26143361,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.48,"free":3123.78},{"epoch":26143362,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":552.61,"free":3123.64},{"epoch":26143363,"idl":99.83,"recv":0,"send":0,"writ":0.49,"used":552.84,"free":3123.41},{"epoch":26143364,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":552.33,"free":3123.93},{"epoch":26143365,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":551.4,"free":3124.89},{"epoch":26143366,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":550.9,"free":3125.38},{"epoch":26143367,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":550.8,"free":3125.47},{"epoch":26143368,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":551.47,"free":3124.8},{"epoch":26143369,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":552.24,"free":3124.03},{"epoch":26143370,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":551.53,"free":3124.75},{"epoch":26143371,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":551.48,"free":3124.8},{"epoch":26143372,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.47,"free":3124.81},{"epoch":26143373,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":552.03,"free":3124.24},{"epoch":26143374,"idl":99.94,"recv":0,"send":0,"writ":0.36,"used":552.58,"free":3123.69},{"epoch":26143375,"idl":99.88,"recv":0,"send":0.02,"writ":0.34,"used":552.33,"free":3123.95},{"epoch":26143376,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.28,"free":3124},{"epoch":26143377,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.27,"free":3124.01},{"epoch":26143378,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.23,"free":3124.04},{"epoch":26143379,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":552.9,"free":3123.36},{"epoch":26143380,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":551.4,"free":3124.89},{"epoch":26143381,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":551.36,"free":3124.92},{"epoch":26143382,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.35,"free":3124.93},{"epoch":26143383,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":551.32,"free":3124.95},{"epoch":26143384,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":552.83,"free":3123.43},{"epoch":26143385,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":552.29,"free":3124},{"epoch":26143386,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.25,"free":3124.03},{"epoch":26143387,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":552.24,"free":3124.03},{"epoch":26143388,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.21,"free":3124.06},{"epoch":26143389,"idl":95.01,"recv":0.27,"send":0.01,"writ":78.56,"used":565.51,"free":3111.21},{"epoch":26143390,"idl":99.8,"recv":0,"send":0,"writ":180.01,"used":555.08,"free":3121.05},{"epoch":26143391,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.06,"free":3121.07},{"epoch":26143392,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.05,"free":3121.08},{"epoch":26143393,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":555.02,"free":3121.11},{"epoch":26143394,"idl":99.81,"recv":0,"send":0,"writ":0.61,"used":554.54,"free":3121.62},{"epoch":26143395,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":552.54,"free":3123.66},{"epoch":26143396,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.53,"free":3123.67},{"epoch":26143397,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":552.5,"free":3123.7},{"epoch":26143398,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.49,"free":3123.7},{"epoch":26143399,"idl":99.83,"recv":0,"send":0,"writ":0.57,"used":552.81,"free":3123.38},{"epoch":26143400,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":552.71,"free":3123.49},{"epoch":26143401,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":552.68,"free":3123.52},{"epoch":26143402,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.67,"free":3123.52},{"epoch":26143403,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.64,"free":3123.55},{"epoch":26143404,"idl":99.83,"recv":0,"send":0,"writ":0.4,"used":553.31,"free":3122.87},{"epoch":26143405,"idl":99.9,"recv":0,"send":0,"writ":0.45,"used":552.44,"free":3123.77},{"epoch":26143406,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.53,"free":3123.67},{"epoch":26143407,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.52,"free":3123.67},{"epoch":26143408,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":552.49,"free":3123.7},{"epoch":26143409,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":552.82,"free":3123.36},{"epoch":26143410,"idl":99.81,"recv":0,"send":0,"writ":0.52,"used":551.85,"free":3124.35},{"epoch":26143411,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":551.71,"free":3124.49},{"epoch":26143412,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.7,"free":3124.5},{"epoch":26143413,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.67,"free":3124.53},{"epoch":26143414,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":552.03,"free":3124.16},{"epoch":26143415,"idl":99.86,"recv":0,"send":0,"writ":0.55,"used":552.15,"free":3124.05},{"epoch":26143416,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.13,"free":3124.07},{"epoch":26143417,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.31,"free":3123.89},{"epoch":26143418,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.31,"free":3123.88},{"epoch":26143419,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":552.77,"free":3123.4},{"epoch":26143420,"idl":99.72,"recv":0,"send":0,"writ":0.72,"used":553.35,"free":3122.83},{"epoch":26143421,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.53,"free":3123.65},{"epoch":26143422,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.49,"free":3123.68},{"epoch":26143423,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":552.49,"free":3123.68},{"epoch":26143424,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.45,"free":3123.71},{"epoch":26143425,"idl":99.71,"recv":0,"send":0,"writ":0.71,"used":553.04,"free":3123.15},{"epoch":26143426,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":552.24,"free":3123.94},{"epoch":26143427,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.24,"free":3123.94},{"epoch":26143428,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":552.3,"free":3123.87},{"epoch":26143429,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.27,"free":3123.9},{"epoch":26143430,"idl":99.77,"recv":0,"send":0,"writ":0.77,"used":552.97,"free":3123.22},{"epoch":26143431,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":552.49,"free":3123.71},{"epoch":26143432,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":552.46,"free":3123.74},{"epoch":26143433,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.43,"free":3123.76},{"epoch":26143434,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.4,"free":3123.79},{"epoch":26143435,"idl":99.72,"recv":0,"send":0,"writ":0.81,"used":553.14,"free":3123.06},{"epoch":26143436,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.81,"free":3123.39},{"epoch":26143437,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.77,"free":3123.42},{"epoch":26143438,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":552.77,"free":3123.42},{"epoch":26143439,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":552.73,"free":3123.45},{"epoch":26143440,"idl":99.74,"recv":0,"send":0,"writ":0.71,"used":553.1,"free":3123.1},{"epoch":26143441,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":552.72,"free":3123.48},{"epoch":26143442,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":552.71,"free":3123.48},{"epoch":26143443,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.68,"free":3123.51},{"epoch":26143444,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.67,"free":3123.52},{"epoch":26143445,"idl":99.72,"recv":0,"send":0,"writ":0.61,"used":553.17,"free":3123.03},{"epoch":26143446,"idl":97.9,"recv":0,"send":0,"writ":0.33,"used":552.4,"free":3123.79},{"epoch":26143447,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.37,"free":3123.82},{"epoch":26143448,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.54,"free":3123.64},{"epoch":26143449,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":553.02,"free":3123.14},{"epoch":26143450,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":552.78,"free":3123.39},{"epoch":26143451,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":552.01,"free":3124.16},{"epoch":26143452,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":551.51,"free":3124.66},{"epoch":26143453,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":551.48,"free":3124.69},{"epoch":26143454,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":551.47,"free":3124.69},{"epoch":26143455,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":552.67,"free":3123.51},{"epoch":26143456,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":553.23,"free":3122.94},{"epoch":26143457,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":552.89,"free":3123.27},{"epoch":26143458,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.88,"free":3123.28},{"epoch":26143459,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":552.89,"free":3123.26},{"epoch":26143460,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":552.9,"free":3123.28},{"epoch":26143461,"idl":99.81,"recv":0,"send":0,"writ":0.59,"used":553.33,"free":3122.84},{"epoch":26143462,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":553,"free":3123.17},{"epoch":26143463,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":552.98,"free":3123.18},{"epoch":26143464,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.95,"free":3123.21},{"epoch":26143465,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":552.96,"free":3123.21},{"epoch":26143466,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":552.8,"free":3123.37},{"epoch":26143467,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.18,"free":3123.99},{"epoch":26143468,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":552.15,"free":3124.02},{"epoch":26143469,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":552.14,"free":3124.02},{"epoch":26143470,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":552.64,"free":3123.53},{"epoch":26143471,"idl":99.81,"recv":0,"send":0,"writ":0.5,"used":553.13,"free":3123.04},{"epoch":26143472,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":552.77,"free":3123.4},{"epoch":26143473,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.73,"free":3123.43},{"epoch":26143474,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":552.72,"free":3123.44},{"epoch":26143475,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":552.71,"free":3123.46},{"epoch":26143476,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":553.45,"free":3122.72},{"epoch":26143477,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.92,"free":3123.25},{"epoch":26143478,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":552.89,"free":3123.27},{"epoch":26143479,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":553.11,"free":3123.03},{"epoch":26143480,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":552.88,"free":3123.27},{"epoch":26143481,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":553.4,"free":3122.75},{"epoch":26143482,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553,"free":3123.14},{"epoch":26143483,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":552.99,"free":3123.15},{"epoch":26143484,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.97,"free":3123.2},{"epoch":26143485,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":553.21,"free":3122.98},{"epoch":26143486,"idl":98.7,"recv":0,"send":0,"writ":0.2,"used":552.88,"free":3123.31},{"epoch":26143487,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":553.32,"free":3122.86},{"epoch":26143488,"idl":99.94,"recv":0,"send":0,"writ":0.23,"used":552.91,"free":3123.27},{"epoch":26143489,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.9,"free":3123.27},{"epoch":26143490,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":552.89,"free":3123.3},{"epoch":26143491,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.89,"free":3123.3},{"epoch":26143492,"idl":99.81,"recv":0,"send":0,"writ":0.59,"used":552.82,"free":3123.36},{"epoch":26143493,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":552.41,"free":3123.77},{"epoch":26143494,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.54,"free":3123.64},{"epoch":26143495,"idl":99.87,"recv":0,"send":0,"writ":0.38,"used":553.28,"free":3122.91},{"epoch":26143496,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":553.25,"free":3122.93},{"epoch":26143497,"idl":99.82,"recv":0,"send":0,"writ":0.58,"used":553.44,"free":3122.73},{"epoch":26143498,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.97,"free":3123.21},{"epoch":26143499,"idl":99.93,"recv":0,"send":0,"writ":0.23,"used":552.26,"free":3123.91},{"epoch":26143500,"idl":99.31,"recv":0,"send":0,"writ":9.4,"used":551.65,"free":3124.49},{"epoch":26143501,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":551.62,"free":3124.55},{"epoch":26143502,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":552.4,"free":3123.77},{"epoch":26143503,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.3,"free":3123.86},{"epoch":26143504,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":552.29,"free":3123.87},{"epoch":26143505,"idl":99.79,"recv":0,"send":0,"writ":0.43,"used":552.47,"free":3123.75},{"epoch":26143506,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":552.46,"free":3123.76},{"epoch":26143507,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":552.89,"free":3123.32},{"epoch":26143508,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":552.64,"free":3123.57},{"epoch":26143509,"idl":99.77,"recv":0,"send":0,"writ":0.38,"used":552.41,"free":3123.8},{"epoch":26143510,"idl":99.82,"recv":0,"send":0,"writ":0.4,"used":552.62,"free":3123.6},{"epoch":26143511,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":552.61,"free":3123.6},{"epoch":26143512,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":553.34,"free":3122.87},{"epoch":26143513,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":552.55,"free":3123.65},{"epoch":26143514,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":552.54,"free":3123.66},{"epoch":26143515,"idl":99.84,"recv":0,"send":0,"writ":0.37,"used":552.12,"free":3124.09},{"epoch":26143516,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":552.22,"free":3124},{"epoch":26143517,"idl":99.79,"recv":0,"send":0,"writ":0.46,"used":552.72,"free":3123.49},{"epoch":26143518,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":552.67,"free":3123.54},{"epoch":26143519,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.64,"free":3123.56},{"epoch":26143520,"idl":99.86,"recv":0,"send":0.01,"writ":0.38,"used":552.37,"free":3123.84},{"epoch":26143521,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.33,"free":3123.88},{"epoch":26143522,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.32,"free":3123.88},{"epoch":26143523,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":552.64,"free":3123.55},{"epoch":26143524,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":552.29,"free":3123.91},{"epoch":26143525,"idl":99.78,"recv":0,"send":0,"writ":0.35,"used":551.33,"free":3124.88},{"epoch":26143526,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":551.47,"free":3124.73},{"epoch":26143527,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":551.44,"free":3124.76},{"epoch":26143528,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":552.36,"free":3123.84},{"epoch":26143529,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.14,"free":3124.05},{"epoch":26143530,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":551.9,"free":3124.31},{"epoch":26143531,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.87,"free":3124.34},{"epoch":26143532,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":551.84,"free":3124.36},{"epoch":26143533,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":552.34,"free":3123.86},{"epoch":26143534,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":552.04,"free":3124.15},{"epoch":26143535,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":552.54,"free":3123.67},{"epoch":26143536,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.52,"free":3123.69},{"epoch":26143537,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.69,"free":3123.51},{"epoch":26143538,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":552.91,"free":3123.29},{"epoch":26143539,"idl":99.83,"recv":0,"send":0,"writ":0.46,"used":552.91,"free":3123.27},{"epoch":26143540,"idl":99.86,"recv":0,"send":0,"writ":0.37,"used":552.18,"free":3124.01},{"epoch":26143541,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":552.13,"free":3124.05},{"epoch":26143542,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":552.1,"free":3124.08},{"epoch":26143543,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":552.59,"free":3123.59},{"epoch":26143544,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.55,"free":3123.62},{"epoch":26143545,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":552.33,"free":3123.85},{"epoch":26143546,"idl":98.49,"recv":0,"send":0,"writ":0.2,"used":551.92,"free":3124.27},{"epoch":26143547,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":551.79,"free":3124.39},{"epoch":26143548,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":552.14,"free":3124.04},{"epoch":26143549,"idl":99.92,"recv":0,"send":0,"writ":0.38,"used":552.05,"free":3124.12},{"epoch":26143550,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":552.18,"free":3124.01},{"epoch":26143551,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":552.04,"free":3124.14},{"epoch":26143552,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":551.9,"free":3124.27},{"epoch":26143553,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":551.88,"free":3124.3},{"epoch":26143554,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":553.19,"free":3122.98},{"epoch":26143555,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":552.6,"free":3123.58},{"epoch":26143556,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.57,"free":3123.62},{"epoch":26143557,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":552.56,"free":3123.62},{"epoch":26143558,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":552.53,"free":3123.65},{"epoch":26143559,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":553.05,"free":3123.12},{"epoch":26143560,"idl":99.86,"recv":0,"send":0,"writ":0.39,"used":552.74,"free":3123.43},{"epoch":26143561,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":552.88,"free":3123.29},{"epoch":26143562,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":552.89,"free":3123.28},{"epoch":26143563,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":552.87,"free":3123.29},{"epoch":26143564,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":552.91,"free":3123.25},{"epoch":26143565,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":552.85,"free":3123.33},{"epoch":26143566,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.83,"free":3123.34},{"epoch":26143567,"idl":96.19,"recv":0,"send":0,"writ":0.16,"used":552.82,"free":3123.35},{"epoch":26143568,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.79,"free":3123.38},{"epoch":26143569,"idl":99.66,"recv":0,"send":0,"writ":0.73,"used":553.15,"free":3122.99},{"epoch":26143570,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":552.78,"free":3123.38},{"epoch":26143571,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.77,"free":3123.38},{"epoch":26143572,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.78,"free":3123.37},{"epoch":26143573,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":552.93,"free":3123.22},{"epoch":26143574,"idl":99.8,"recv":0,"send":0,"writ":0.5,"used":553.27,"free":3122.89},{"epoch":26143575,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":552.68,"free":3123.5},{"epoch":26143576,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":552.66,"free":3123.51},{"epoch":26143577,"idl":99.88,"recv":0,"send":0,"writ":0.22,"used":552.63,"free":3123.54},{"epoch":26143578,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.62,"free":3123.54},{"epoch":26143579,"idl":99.82,"recv":0,"send":0,"writ":0.48,"used":553.36,"free":3122.8},{"epoch":26143580,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":553.1,"free":3123.08},{"epoch":26143581,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.95,"free":3123.22},{"epoch":26143582,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.81,"free":3123.36},{"epoch":26143583,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.78,"free":3123.39},{"epoch":26143584,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":553.31,"free":3122.85},{"epoch":26143585,"idl":99.72,"recv":0,"send":0,"writ":0.5,"used":552.06,"free":3124.11},{"epoch":26143586,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.93,"free":3124.24},{"epoch":26143587,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.92,"free":3124.25},{"epoch":26143588,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":551.88,"free":3124.28},{"epoch":26143589,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.87,"free":3124.28},{"epoch":26143590,"idl":99.66,"recv":0,"send":0,"writ":0.7,"used":552.67,"free":3123.51},{"epoch":26143591,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":552.34,"free":3123.83},{"epoch":26143592,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.31,"free":3123.85},{"epoch":26143593,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":552.28,"free":3123.88},{"epoch":26143594,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":552.27,"free":3123.88},{"epoch":26143595,"idl":99.77,"recv":0,"send":0,"writ":0.65,"used":553.03,"free":3123.14},{"epoch":26143596,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.94,"free":3123.23},{"epoch":26143597,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.9,"free":3123.26},{"epoch":26143598,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":552.89,"free":3123.27},{"epoch":26143599,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":553.09,"free":3123.05},{"epoch":26143600,"idl":99.7,"recv":0,"send":0,"writ":0.66,"used":553.44,"free":3122.72},{"epoch":26143601,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.08,"free":3123.07},{"epoch":26143602,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.04,"free":3123.1},{"epoch":26143603,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.04,"free":3123.11},{"epoch":26143604,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.01,"free":3123.15},{"epoch":26143605,"idl":99.77,"recv":0,"send":0,"writ":0.63,"used":552.71,"free":3123.46},{"epoch":26143606,"idl":99.62,"recv":0,"send":0,"writ":0.24,"used":552.43,"free":3123.74},{"epoch":26143607,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.67,"free":3123.49},{"epoch":26143608,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":552.64,"free":3123.52},{"epoch":26143609,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.61,"free":3123.54},{"epoch":26143610,"idl":99.74,"recv":0,"send":0,"writ":0.62,"used":553.28,"free":3122.89},{"epoch":26143611,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":552.61,"free":3123.56},{"epoch":26143612,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.58,"free":3123.58},{"epoch":26143613,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.55,"free":3123.61},{"epoch":26143614,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.54,"free":3123.61},{"epoch":26143615,"idl":99.71,"recv":0,"send":0,"writ":0.52,"used":553.43,"free":3122.74},{"epoch":26143616,"idl":99.92,"recv":0,"send":0,"writ":0.32,"used":552.77,"free":3123.4},{"epoch":26143617,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":552.75,"free":3123.42},{"epoch":26143618,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":552.91,"free":3123.25},{"epoch":26143619,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.88,"free":3123.27},{"epoch":26143620,"idl":99.72,"recv":0,"send":0,"writ":0.5,"used":552.67,"free":3123.5},{"epoch":26143621,"idl":99.95,"recv":0,"send":0,"writ":0.3,"used":551.14,"free":3125.03},{"epoch":26143622,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":551.11,"free":3125.06},{"epoch":26143623,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":551.1,"free":3125.06},{"epoch":26143624,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":551.07,"free":3125.09},{"epoch":26143625,"idl":99.79,"recv":0,"send":0,"writ":0.26,"used":552.3,"free":3123.88},{"epoch":26143626,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":552.19,"free":3123.98},{"epoch":26143627,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":551.78,"free":3124.38},{"epoch":26143628,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":551.75,"free":3124.41},{"epoch":26143629,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":553.15,"free":3122.98},{"epoch":26143630,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":552,"free":3124.15},{"epoch":26143631,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":553.16,"free":3122.98},{"epoch":26143632,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":553.11,"free":3123.03},{"epoch":26143633,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":553.08,"free":3123.05},{"epoch":26143634,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.07,"free":3123.06},{"epoch":26143635,"idl":99.85,"recv":0,"send":0,"writ":0.26,"used":553.06,"free":3123.08},{"epoch":26143636,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":553.58,"free":3122.56},{"epoch":26143637,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":553.27,"free":3122.87},{"epoch":26143638,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":553.26,"free":3122.88},{"epoch":26143639,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":553.22,"free":3122.9},{"epoch":26143640,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":553.39,"free":3122.76},{"epoch":26143641,"idl":99.76,"recv":0,"send":0,"writ":0.52,"used":554.09,"free":3122.04},{"epoch":26143642,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":553.37,"free":3122.76},{"epoch":26143643,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.35,"free":3122.78},{"epoch":26143644,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":553.31,"free":3122.81},{"epoch":26143645,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":553.09,"free":3123.05},{"epoch":26143646,"idl":99.72,"recv":0,"send":0,"writ":0.53,"used":553.15,"free":3122.99},{"epoch":26143647,"idl":99.88,"recv":0,"send":0,"writ":0.23,"used":552.04,"free":3124.09},{"epoch":26143648,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":552.02,"free":3124.11},{"epoch":26143649,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":551.99,"free":3124.13},{"epoch":26143650,"idl":99.83,"recv":0,"send":0,"writ":0.26,"used":552.59,"free":3123.54},{"epoch":26143651,"idl":99.74,"recv":0,"send":0,"writ":0.41,"used":552.59,"free":3123.54},{"epoch":26143652,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":552.42,"free":3123.71},{"epoch":26143653,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":552.39,"free":3123.73},{"epoch":26143654,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":552.37,"free":3123.75},{"epoch":26143655,"idl":99.75,"recv":0,"send":0,"writ":0.25,"used":551.89,"free":3124.25},{"epoch":26143656,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":552.2,"free":3123.93},{"epoch":26143657,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":552.08,"free":3124.05},{"epoch":26143658,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.05,"free":3124.07},{"epoch":26143659,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":552.51,"free":3123.59},{"epoch":26143660,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":552.51,"free":3123.6},{"epoch":26143661,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.64,"free":3123.48},{"epoch":26143662,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":552.37,"free":3123.75},{"epoch":26143663,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":551.89,"free":3124.23},{"epoch":26143664,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":551.88,"free":3124.25},{"epoch":26143665,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":552.12,"free":3124.03},{"epoch":26143666,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":551.91,"free":3124.23},{"epoch":26143667,"idl":99.48,"recv":0,"send":0,"writ":0.54,"used":551.74,"free":3124.4},{"epoch":26143668,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":551.31,"free":3124.82},{"epoch":26143669,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":551.3,"free":3124.83},{"epoch":26143670,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":551.8,"free":3124.35},{"epoch":26143671,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":551.78,"free":3124.37},{"epoch":26143672,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":552.47,"free":3123.67},{"epoch":26143673,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":552.41,"free":3123.73},{"epoch":26143674,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":552.4,"free":3123.73},{"epoch":26143675,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":552.64,"free":3123.5},{"epoch":26143676,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.61,"free":3123.53},{"epoch":26143677,"idl":99.73,"recv":0,"send":0,"writ":0.48,"used":553.09,"free":3123.04},{"epoch":26143678,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":552.81,"free":3123.32},{"epoch":26143679,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":552.8,"free":3123.32},{"epoch":26143680,"idl":99.54,"recv":0,"send":0,"writ":0.27,"used":551.12,"free":3125.01},{"epoch":26143681,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":551.05,"free":3125.08},{"epoch":26143682,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":552,"free":3124.13},{"epoch":26143683,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":551.76,"free":3124.37},{"epoch":26143684,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":551.88,"free":3124.25},{"epoch":26143685,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":552.4,"free":3123.75},{"epoch":26143686,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":552.39,"free":3123.75},{"epoch":26143687,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":552.94,"free":3123.19},{"epoch":26143688,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":552.59,"free":3123.54},{"epoch":26143689,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":552.32,"free":3123.79},{"epoch":26143690,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":552.57,"free":3123.55},{"epoch":26143691,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.55,"free":3123.57},{"epoch":26143692,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":552.89,"free":3123.23},{"epoch":26143693,"idl":99.86,"recv":0,"send":0,"writ":0.38,"used":552.5,"free":3123.61},{"epoch":26143694,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":552.49,"free":3123.61},{"epoch":26143695,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":552.97,"free":3123.16},{"epoch":26143696,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":553.14,"free":3122.98},{"epoch":26143697,"idl":99.71,"recv":0,"send":0,"writ":0.38,"used":553.23,"free":3122.88},{"epoch":26143698,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":552.86,"free":3123.25},{"epoch":26143699,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.83,"free":3123.27},{"epoch":26143700,"idl":99.81,"recv":0,"send":0,"writ":0.26,"used":552.84,"free":3123.27},{"epoch":26143701,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":552.81,"free":3123.3},{"epoch":26143702,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.78,"free":3123.33},{"epoch":26143703,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":553.12,"free":3122.98},{"epoch":26143704,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.74,"free":3123.36},{"epoch":26143705,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":552.75,"free":3123.37},{"epoch":26143706,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":552.71,"free":3123.4},{"epoch":26143707,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":552.89,"free":3123.22},{"epoch":26143708,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":553.6,"free":3122.5},{"epoch":26143709,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.85,"free":3123.25},{"epoch":26143710,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":552.86,"free":3123.26},{"epoch":26143711,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.84,"free":3123.28},{"epoch":26143712,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":552.81,"free":3123.3},{"epoch":26143713,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":552.81,"free":3123.29},{"epoch":26143714,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":551.78,"free":3124.32},{"epoch":26143715,"idl":99.7,"recv":0,"send":0,"writ":0.33,"used":551.29,"free":3124.82},{"epoch":26143716,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":551.26,"free":3124.84},{"epoch":26143717,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":551.23,"free":3124.87},{"epoch":26143718,"idl":99.72,"recv":0,"send":0,"writ":0.49,"used":552.3,"free":3123.8},{"epoch":26143719,"idl":99.72,"recv":0,"send":0,"writ":0.35,"used":552.38,"free":3123.69},{"epoch":26143720,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":551.9,"free":3124.19},{"epoch":26143721,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":551.85,"free":3124.24},{"epoch":26143722,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":551.84,"free":3124.24},{"epoch":26143723,"idl":99.74,"recv":0,"send":0,"writ":0.42,"used":552.35,"free":3123.73},{"epoch":26143724,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":552.79,"free":3123.31},{"epoch":26143725,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":552.78,"free":3123.35},{"epoch":26143726,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":552.58,"free":3123.54},{"epoch":26143727,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":552.49,"free":3123.63},{"epoch":26143728,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":552.86,"free":3123.26},{"epoch":26143729,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":552.75,"free":3123.36},{"epoch":26143730,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":553.15,"free":3122.98},{"epoch":26143731,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":553.14,"free":3122.98},{"epoch":26143732,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":553.1,"free":3123.01},{"epoch":26143733,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":553.44,"free":3122.67},{"epoch":26143734,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":553.07,"free":3123.04},{"epoch":26143735,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":552.35,"free":3123.77},{"epoch":26143736,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":552.31,"free":3123.81},{"epoch":26143737,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":552.28,"free":3123.84},{"epoch":26143738,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.27,"free":3123.84},{"epoch":26143739,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":553.5,"free":3122.6},{"epoch":26143740,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":552.75,"free":3123.38},{"epoch":26143741,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":552.88,"free":3123.24},{"epoch":26143742,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":552.89,"free":3123.23},{"epoch":26143743,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":552.85,"free":3123.26},{"epoch":26143744,"idl":99.67,"recv":0,"send":0,"writ":0.62,"used":553.55,"free":3122.56},{"epoch":26143745,"idl":99.65,"recv":0,"send":0,"writ":0.33,"used":552.11,"free":3124.01},{"epoch":26143746,"idl":99.84,"recv":0,"send":0,"writ":0.12,"used":552.09,"free":3124.03},{"epoch":26143747,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":552.06,"free":3124.06},{"epoch":26143748,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":552.03,"free":3124.08},{"epoch":26143749,"idl":99.62,"recv":0,"send":0,"writ":0.71,"used":553.48,"free":3122.61},{"epoch":26143750,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":552.78,"free":3123.32},{"epoch":26143751,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":552.74,"free":3123.36},{"epoch":26143752,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":552.75,"free":3123.34},{"epoch":26143753,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":552.88,"free":3123.2},{"epoch":26143754,"idl":95.17,"recv":0.29,"send":0.01,"writ":77.82,"used":561.06,"free":3115.84},{"epoch":26143755,"idl":99.65,"recv":0,"send":0,"writ":180.32,"used":555.39,"free":3120.54},{"epoch":26143756,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":555.4,"free":3120.52},{"epoch":26143757,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":555.38,"free":3120.55},{"epoch":26143758,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.36,"free":3120.55},{"epoch":26143759,"idl":99.73,"recv":0,"send":0,"writ":0.42,"used":555.39,"free":3120.53},{"epoch":26143760,"idl":99.77,"recv":0,"send":0,"writ":0.43,"used":553.22,"free":3122.75},{"epoch":26143761,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":553.19,"free":3122.78},{"epoch":26143762,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":553.17,"free":3122.79},{"epoch":26143763,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.14,"free":3122.81},{"epoch":26143764,"idl":99.72,"recv":0,"send":0,"writ":0.44,"used":554,"free":3121.95},{"epoch":26143765,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":553.07,"free":3122.91},{"epoch":26143766,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":553.04,"free":3122.94},{"epoch":26143767,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.03,"free":3122.95},{"epoch":26143768,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":553,"free":3122.97},{"epoch":26143769,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.99,"free":3122.98},{"epoch":26143770,"idl":99.62,"recv":0,"send":0,"writ":0.65,"used":553.55,"free":3122.44},{"epoch":26143771,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.97,"free":3123.01},{"epoch":26143772,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.94,"free":3123.04},{"epoch":26143773,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":552.93,"free":3123.04},{"epoch":26143774,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.9,"free":3123.07},{"epoch":26143775,"idl":99.7,"recv":0,"send":0,"writ":0.72,"used":553.51,"free":3122.47},{"epoch":26143776,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":553.33,"free":3122.65},{"epoch":26143777,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":553.33,"free":3122.64},{"epoch":26143778,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":553.3,"free":3122.67},{"epoch":26143779,"idl":99.71,"recv":0,"send":0,"writ":0.41,"used":552.8,"free":3123.15},{"epoch":26143780,"idl":99.62,"recv":0,"send":0,"writ":0.74,"used":553.21,"free":3122.76},{"epoch":26143781,"idl":99.83,"recv":0.02,"send":0.79,"writ":0.23,"used":552.99,"free":3122.97},{"epoch":26143782,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":552.89,"free":3123.06},{"epoch":26143783,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":553.07,"free":3122.89},{"epoch":26143784,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":553.03,"free":3122.93},{"epoch":26143785,"idl":99.66,"recv":0,"send":0,"writ":0.68,"used":552.91,"free":3123.07},{"epoch":26143786,"idl":99.8,"recv":0,"send":0,"writ":0.22,"used":552.47,"free":3123.51},{"epoch":26143787,"idl":99.82,"recv":0,"send":0,"writ":0.38,"used":552.76,"free":3123.21},{"epoch":26143788,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":552.73,"free":3123.24},{"epoch":26143789,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":552.71,"free":3123.25},{"epoch":26143790,"idl":99.67,"recv":0,"send":0,"writ":0.7,"used":553.3,"free":3122.68},{"epoch":26143791,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":553.19,"free":3122.79},{"epoch":26143792,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":553.16,"free":3122.81},{"epoch":26143793,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":553.13,"free":3122.84},{"epoch":26143794,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":553.29,"free":3122.67},{"epoch":26143795,"idl":99.66,"recv":0,"send":0,"writ":0.73,"used":553.66,"free":3122.32},{"epoch":26143796,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":553.29,"free":3122.69},{"epoch":26143797,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.25,"free":3122.72},{"epoch":26143798,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":553.24,"free":3122.72},{"epoch":26143799,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":553.21,"free":3122.75},{"epoch":26143800,"idl":99.58,"recv":0,"send":0,"writ":0.62,"used":552.62,"free":3123.36},{"epoch":26143801,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":553.44,"free":3122.53},{"epoch":26143802,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":553.41,"free":3122.56},{"epoch":26143803,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":553.4,"free":3122.57},{"epoch":26143804,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":553.37,"free":3122.59},{"epoch":26143805,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":553.13,"free":3122.84},{"epoch":26143806,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":552.68,"free":3123.29},{"epoch":26143807,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":552.29,"free":3123.67},{"epoch":26143808,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":552.28,"free":3123.68},{"epoch":26143809,"idl":98.23,"recv":0,"send":0,"writ":0.32,"used":552.26,"free":3123.69},{"epoch":26143810,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":552.49,"free":3123.48},{"epoch":26143811,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":553.05,"free":3122.91},{"epoch":26143812,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":552.46,"free":3123.51},{"epoch":26143813,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.44,"free":3123.52},{"epoch":26143814,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":552.41,"free":3123.56},{"epoch":26143815,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":551.21,"free":3124.78},{"epoch":26143816,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":551.97,"free":3124.03},{"epoch":26143817,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":551.83,"free":3124.17},{"epoch":26143818,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":551.8,"free":3124.2},{"epoch":26143819,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":551.77,"free":3124.22},{"epoch":26143820,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":552.76,"free":3123.25},{"epoch":26143821,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":553.08,"free":3122.93},{"epoch":26143822,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":552.73,"free":3123.27},{"epoch":26143823,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.7,"free":3123.3},{"epoch":26143824,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.69,"free":3123.31},{"epoch":26143825,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":552.19,"free":3123.82},{"epoch":26143826,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":552.62,"free":3123.39},{"epoch":26143827,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.39,"free":3123.61},{"epoch":26143828,"idl":96.23,"recv":1.54,"send":0.01,"writ":79.66,"used":560.3,"free":3114.66},{"epoch":26143829,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.78,"free":3119.29},{"epoch":26143830,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":555.03,"free":3119.05},{"epoch":26143831,"idl":99.79,"recv":0,"send":0,"writ":0.5,"used":555.36,"free":3118.72},{"epoch":26143832,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":555.18,"free":3118.9},{"epoch":26143833,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":553.61,"free":3120.5},{"epoch":26143834,"idl":99.92,"recv":0,"send":0.01,"writ":0.18,"used":552.97,"free":3121.14},{"epoch":26143835,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":552.26,"free":3121.87},{"epoch":26143836,"idl":99.8,"recv":0,"send":0,"writ":0.44,"used":552.74,"free":3121.39},{"epoch":26143837,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":552.7,"free":3121.43},{"epoch":26143838,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":552.67,"free":3121.47},{"epoch":26143839,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":552.41,"free":3121.74},{"epoch":26143840,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":551.68,"free":3122.49},{"epoch":26143841,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":551.64,"free":3122.52},{"epoch":26143842,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":552.85,"free":3121.31},{"epoch":26143843,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.53,"free":3121.62},{"epoch":26143844,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.5,"free":3121.65},{"epoch":26143845,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":552.74,"free":3121.43},{"epoch":26143846,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":552.43,"free":3121.74},{"epoch":26143847,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":553.02,"free":3121.13},{"epoch":26143848,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.69,"free":3121.46},{"epoch":26143849,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":552.65,"free":3121.49},{"epoch":26143850,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":552.91,"free":3121.25},{"epoch":26143851,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.88,"free":3121.28},{"epoch":26143852,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":552.66,"free":3121.5},{"epoch":26143853,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":552.26,"free":3121.9},{"epoch":26143854,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":552.28,"free":3121.87},{"epoch":26143855,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":553,"free":3121.16},{"epoch":26143856,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":552.98,"free":3121.18},{"epoch":26143857,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":553.33,"free":3120.83},{"epoch":26143858,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.69,"free":3121.46},{"epoch":26143859,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.68,"free":3121.47},{"epoch":26143860,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":552.68,"free":3121.49},{"epoch":26143861,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.66,"free":3121.5},{"epoch":26143862,"idl":99.79,"recv":0,"send":0,"writ":0.6,"used":552.99,"free":3121.17},{"epoch":26143863,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.62,"free":3121.53},{"epoch":26143864,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.77,"free":3121.38},{"epoch":26143865,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":552.05,"free":3122.12},{"epoch":26143866,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":552.02,"free":3122.14},{"epoch":26143867,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":552.76,"free":3121.4},{"epoch":26143868,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":552.97,"free":3121.19},{"epoch":26143869,"idl":99.68,"recv":0,"send":0,"writ":0.31,"used":552.7,"free":3121.43},{"epoch":26143870,"idl":99.91,"recv":0,"send":0,"writ":0.35,"used":552.7,"free":3121.44},{"epoch":26143871,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":552.67,"free":3121.47},{"epoch":26143872,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":553.05,"free":3121.08},{"epoch":26143873,"idl":99.94,"recv":0,"send":0,"writ":0.29,"used":552.87,"free":3121.26},{"epoch":26143874,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":552.85,"free":3121.3},{"epoch":26143875,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":552.97,"free":3121.19},{"epoch":26143876,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.01,"free":3121.15},{"epoch":26143877,"idl":99.76,"recv":0,"send":0,"writ":0.45,"used":553.69,"free":3120.46},{"epoch":26143878,"idl":99.94,"recv":0,"send":0,"writ":0.32,"used":553.22,"free":3120.93},{"epoch":26143879,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.21,"free":3120.93},{"epoch":26143880,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":552,"free":3122.15},{"epoch":26143881,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.9,"free":3122.26},{"epoch":26143882,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.68,"free":3122.49},{"epoch":26143883,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":553.56,"free":3120.6},{"epoch":26143884,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.12,"free":3121.04},{"epoch":26143885,"idl":98.8,"recv":0,"send":0,"writ":15.4,"used":554.78,"free":3119.92},{"epoch":26143886,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":552.89,"free":3121.35},{"epoch":26143887,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.03,"free":3121.2},{"epoch":26143888,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":553.2,"free":3121.03},{"epoch":26143889,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.77,"free":3121.46},{"epoch":26143890,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":553.02,"free":3121.23},{"epoch":26143891,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":552.99,"free":3121.27},{"epoch":26143892,"idl":99.48,"recv":0,"send":0,"writ":0.2,"used":553.41,"free":3120.84},{"epoch":26143893,"idl":93.06,"recv":0,"send":0,"writ":72.62,"used":570.07,"free":3096.05},{"epoch":26143894,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":554.57,"free":3119.62},{"epoch":26143895,"idl":99.9,"recv":0,"send":0,"writ":0.39,"used":555.6,"free":3118.41},{"epoch":26143896,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":555.61,"free":3118.39},{"epoch":26143897,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":555.58,"free":3118.42},{"epoch":26143898,"idl":99.8,"recv":0,"send":0,"writ":0.7,"used":554.3,"free":3119.87},{"epoch":26143899,"idl":99.84,"recv":0,"send":0,"writ":0.35,"used":552.69,"free":3121.55},{"epoch":26143900,"idl":99.87,"recv":0,"send":0,"writ":0.36,"used":553.2,"free":3121.02},{"epoch":26143901,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.19,"free":3121.02},{"epoch":26143902,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":553.16,"free":3121.05},{"epoch":26143903,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":553.83,"free":3120.38},{"epoch":26143904,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.88,"free":3121.34},{"epoch":26143905,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":553.18,"free":3121.03},{"epoch":26143906,"idl":99.9,"recv":0,"send":0,"writ":0.25,"used":552.87,"free":3121.33},{"epoch":26143907,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.64,"free":3121.56},{"epoch":26143908,"idl":99.8,"recv":0,"send":0,"writ":0.64,"used":553.33,"free":3120.86},{"epoch":26143909,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":553.02,"free":3121.17},{"epoch":26143910,"idl":99.89,"recv":0,"send":0,"writ":0.35,"used":553.07,"free":3121.13},{"epoch":26143911,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.04,"free":3121.16},{"epoch":26143912,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":553.03,"free":3121.16},{"epoch":26143913,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":553.36,"free":3120.84},{"epoch":26143914,"idl":99.93,"recv":0,"send":0,"writ":0.38,"used":553.24,"free":3120.96},{"epoch":26143915,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":553.22,"free":3120.99},{"epoch":26143916,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.21,"free":3121},{"epoch":26143917,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.18,"free":3121.03},{"epoch":26143918,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":553.52,"free":3120.68},{"epoch":26143919,"idl":99.94,"recv":0,"send":0,"writ":0.38,"used":553.14,"free":3121.06},{"epoch":26143920,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":552.24,"free":3121.97},{"epoch":26143921,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":552.31,"free":3121.9},{"epoch":26143922,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.29,"free":3121.92},{"epoch":26143923,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.28,"free":3121.92},{"epoch":26143924,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":553.67,"free":3120.52},{"epoch":26143925,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":552.29,"free":3121.92},{"epoch":26143926,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.23,"free":3121.98},{"epoch":26143927,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":552.22,"free":3121.98},{"epoch":26143928,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.19,"free":3122.01},{"epoch":26143929,"idl":99.73,"recv":0,"send":0,"writ":0.72,"used":553.02,"free":3121.15},{"epoch":26143930,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":553.39,"free":3120.8},{"epoch":26143931,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.39,"free":3120.79},{"epoch":26143932,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.53,"free":3120.65},{"epoch":26143933,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.53,"free":3120.64},{"epoch":26143934,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":553.72,"free":3120.45},{"epoch":26143935,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":553.27,"free":3120.91},{"epoch":26143936,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":553.24,"free":3120.93},{"epoch":26143937,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":553.23,"free":3120.95},{"epoch":26143938,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.2,"free":3120.96},{"epoch":26143939,"idl":99.82,"recv":0,"send":0,"writ":0.49,"used":553.4,"free":3120.77},{"epoch":26143940,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":552.95,"free":3121.23},{"epoch":26143941,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.91,"free":3121.27},{"epoch":26143942,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.9,"free":3121.27},{"epoch":26143943,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.89,"free":3121.28},{"epoch":26143944,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":553.58,"free":3120.61},{"epoch":26143945,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":553.53,"free":3120.67},{"epoch":26143946,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":553.5,"free":3120.7},{"epoch":26143947,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.49,"free":3120.7},{"epoch":26143948,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.46,"free":3120.73},{"epoch":26143949,"idl":99.82,"recv":0,"send":0,"writ":0.4,"used":553.81,"free":3120.38},{"epoch":26143950,"idl":99.9,"recv":0,"send":0,"writ":0.46,"used":553.69,"free":3120.51},{"epoch":26143951,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.68,"free":3120.52},{"epoch":26143952,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":553.65,"free":3120.55},{"epoch":26143953,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":553.64,"free":3120.55},{"epoch":26143954,"idl":99.82,"recv":0,"send":0,"writ":0.41,"used":553.94,"free":3120.25},{"epoch":26143955,"idl":99.85,"recv":0,"send":0,"writ":0.42,"used":552.35,"free":3121.85},{"epoch":26143956,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":552.3,"free":3121.9},{"epoch":26143957,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.28,"free":3121.91},{"epoch":26143958,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":552.26,"free":3121.93},{"epoch":26143959,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":553.75,"free":3120.42},{"epoch":26143960,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":552.53,"free":3121.66},{"epoch":26143961,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":552.44,"free":3121.73},{"epoch":26143962,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.43,"free":3121.74},{"epoch":26143963,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":552.4,"free":3121.77},{"epoch":26143964,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.37,"free":3121.79},{"epoch":26143965,"idl":99.68,"recv":0,"send":0,"writ":0.69,"used":553.02,"free":3121.14},{"epoch":26143966,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":552.53,"free":3121.62},{"epoch":26143967,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.28,"free":3121.86},{"epoch":26143968,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.25,"free":3121.89},{"epoch":26143969,"idl":99.2,"recv":0,"send":0,"writ":0.15,"used":552.22,"free":3121.91},{"epoch":26143970,"idl":99.73,"recv":0,"send":0,"writ":0.68,"used":552.77,"free":3121.38},{"epoch":26143971,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.44,"free":3121.7},{"epoch":26143972,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":552.43,"free":3121.71},{"epoch":26143973,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.4,"free":3121.73},{"epoch":26143974,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.4,"free":3121.73},{"epoch":26143975,"idl":99.69,"recv":0,"send":0,"writ":0.71,"used":553.46,"free":3120.68},{"epoch":26143976,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.01,"free":3121.13},{"epoch":26143977,"idl":99.97,"recv":0,"send":0,"writ":0.14,"used":553.02,"free":3121.12},{"epoch":26143978,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.99,"free":3121.14},{"epoch":26143979,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":552.98,"free":3121.15},{"epoch":26143980,"idl":99.64,"recv":0,"send":0,"writ":0.76,"used":552.58,"free":3121.56},{"epoch":26143981,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.22,"free":3121.92},{"epoch":26143982,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.18,"free":3121.95},{"epoch":26143983,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.16,"free":3121.97},{"epoch":26143984,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.14,"free":3121.98},{"epoch":26143985,"idl":99.76,"recv":0,"send":0,"writ":0.76,"used":552.84,"free":3121.29},{"epoch":26143986,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":552.61,"free":3121.52},{"epoch":26143987,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.65,"free":3121.48},{"epoch":26143988,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.79,"free":3121.33},{"epoch":26143989,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":552.78,"free":3121.32},{"epoch":26143990,"idl":99.78,"recv":0,"send":0,"writ":0.72,"used":553.12,"free":3120.99},{"epoch":26143991,"idl":99.91,"recv":0,"send":0,"writ":0.22,"used":552.73,"free":3121.38},{"epoch":26143992,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.65,"free":3121.45},{"epoch":26143993,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":552.63,"free":3121.47},{"epoch":26143994,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.72,"free":3121.38},{"epoch":26143995,"idl":99.71,"recv":0,"send":0,"writ":0.71,"used":552.49,"free":3121.63},{"epoch":26143996,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":553.01,"free":3121.09},{"epoch":26143997,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":553.24,"free":3120.86},{"epoch":26143998,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":553.21,"free":3120.89},{"epoch":26143999,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.2,"free":3120.89},{"epoch":26144000,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":552.75,"free":3121.36},{"epoch":26144001,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":552.81,"free":3121.3},{"epoch":26144002,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":552.42,"free":3121.69},{"epoch":26144003,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.41,"free":3121.69},{"epoch":26144004,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.38,"free":3121.72},{"epoch":26144005,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":552.4,"free":3121.68},{"epoch":26144006,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":553.3,"free":3120.77},{"epoch":26144007,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.03,"free":3121.04},{"epoch":26144008,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":553.01,"free":3121.05},{"epoch":26144009,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":552.98,"free":3121.08},{"epoch":26144010,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":552.99,"free":3121.08},{"epoch":26144011,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":553.48,"free":3120.59},{"epoch":26144012,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.95,"free":3121.12},{"epoch":26144013,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":552.92,"free":3121.14},{"epoch":26144014,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":552.91,"free":3121.15},{"epoch":26144015,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":552.66,"free":3121.42},{"epoch":26144016,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":553.11,"free":3120.96},{"epoch":26144017,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.89,"free":3121.18},{"epoch":26144018,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.04,"free":3121.02},{"epoch":26144019,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":553,"free":3121.05},{"epoch":26144020,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":553.01,"free":3121.06},{"epoch":26144021,"idl":99.82,"recv":0,"send":0,"writ":0.62,"used":553.34,"free":3120.73},{"epoch":26144022,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.97,"free":3121.09},{"epoch":26144023,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.94,"free":3121.12},{"epoch":26144024,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.91,"free":3121.15},{"epoch":26144025,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":552.93,"free":3121.14},{"epoch":26144026,"idl":99.79,"recv":0,"send":0,"writ":0.46,"used":553.44,"free":3120.63},{"epoch":26144027,"idl":99.93,"recv":0,"send":0,"writ":0.33,"used":552.88,"free":3121.18},{"epoch":26144028,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.85,"free":3121.21},{"epoch":26144029,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.99,"free":3121.06},{"epoch":26144030,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":553.02,"free":3121.04},{"epoch":26144031,"idl":99.79,"recv":0,"send":0,"writ":0.51,"used":553.41,"free":3120.65},{"epoch":26144032,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":553.47,"free":3120.59},{"epoch":26144033,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.46,"free":3120.6},{"epoch":26144034,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.43,"free":3120.63},{"epoch":26144035,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":552.69,"free":3121.37},{"epoch":26144036,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":553.05,"free":3121.01},{"epoch":26144037,"idl":99.96,"recv":0,"send":0,"writ":0.31,"used":552.88,"free":3121.18},{"epoch":26144038,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.88,"free":3121.18},{"epoch":26144039,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.87,"free":3121.19},{"epoch":26144040,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":552.96,"free":3121.11},{"epoch":26144041,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.02,"free":3121.05},{"epoch":26144042,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":553.13,"free":3120.94},{"epoch":26144043,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.73,"free":3121.33},{"epoch":26144044,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.72,"free":3121.33},{"epoch":26144045,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":552.23,"free":3121.83},{"epoch":26144046,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.21,"free":3121.86},{"epoch":26144047,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":553.1,"free":3120.96},{"epoch":26144048,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":552.91,"free":3121.15},{"epoch":26144049,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":552.39,"free":3121.66},{"epoch":26144050,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":552.15,"free":3121.92},{"epoch":26144051,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":552.11,"free":3121.95},{"epoch":26144052,"idl":99.75,"recv":0,"send":0,"writ":0.63,"used":553.18,"free":3120.88},{"epoch":26144053,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":552.75,"free":3121.31},{"epoch":26144054,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":552.74,"free":3121.31},{"epoch":26144055,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.43,"used":552.66,"free":3121.4},{"epoch":26144056,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":552.61,"free":3121.45},{"epoch":26144057,"idl":99.81,"recv":0,"send":0,"writ":0.65,"used":553.19,"free":3120.86},{"epoch":26144058,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":552.97,"free":3121.07},{"epoch":26144059,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":553.01,"free":3121.03},{"epoch":26144060,"idl":99.91,"recv":0,"send":0,"writ":0.33,"used":552.77,"free":3121.29},{"epoch":26144061,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.74,"free":3121.31},{"epoch":26144062,"idl":99.83,"recv":0,"send":0,"writ":0.45,"used":553.4,"free":3120.65},{"epoch":26144063,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":553.44,"free":3120.6},{"epoch":26144064,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":553.41,"free":3120.63},{"epoch":26144065,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":552.93,"free":3121.12},{"epoch":26144066,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.89,"free":3121.16},{"epoch":26144067,"idl":99.81,"recv":0,"send":0,"writ":0.5,"used":553.31,"free":3120.73},{"epoch":26144068,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":553.1,"free":3120.94},{"epoch":26144069,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.09,"free":3120.94},{"epoch":26144070,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":553.23,"free":3120.82},{"epoch":26144071,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":553.26,"free":3120.79},{"epoch":26144072,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":553.78,"free":3120.27},{"epoch":26144073,"idl":99.94,"recv":0,"send":0,"writ":0.3,"used":553.22,"free":3120.82},{"epoch":26144074,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.19,"free":3120.85},{"epoch":26144075,"idl":99.84,"recv":0,"send":0,"writ":0.26,"used":551.99,"free":3122.06},{"epoch":26144076,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":551.94,"free":3122.11},{"epoch":26144077,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.92,"free":3122.13},{"epoch":26144078,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":553.34,"free":3120.7},{"epoch":26144079,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":553.39,"free":3120.63},{"epoch":26144080,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":551.98,"free":3122.05},{"epoch":26144081,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":551.88,"free":3122.15},{"epoch":26144082,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":552.02,"free":3122},{"epoch":26144083,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":553.27,"free":3120.75},{"epoch":26144084,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":553.22,"free":3120.83},{"epoch":26144085,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":553.21,"free":3120.86},{"epoch":26144086,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":553.1,"free":3120.96},{"epoch":26144087,"idl":99.93,"recv":0,"send":0.01,"writ":0.17,"used":552.92,"free":3121.14},{"epoch":26144088,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":551.79,"free":3122.27},{"epoch":26144089,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":550.91,"free":3123.16},{"epoch":26144090,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":553.08,"free":3121},{"epoch":26144091,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":553.11,"free":3120.97},{"epoch":26144092,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.12,"free":3120.96},{"epoch":26144093,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":553.98,"free":3120.09},{"epoch":26144094,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":553.22,"free":3120.85},{"epoch":26144095,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":553.7,"free":3120.38},{"epoch":26144096,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":553.69,"free":3120.39},{"epoch":26144097,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":553.66,"free":3120.42},{"epoch":26144098,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":553.91,"free":3120.16},{"epoch":26144099,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":553.38,"free":3120.69},{"epoch":26144100,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":552.42,"free":3121.66},{"epoch":26144101,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.37,"free":3121.71},{"epoch":26144102,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.37,"free":3121.71},{"epoch":26144103,"idl":99.77,"recv":0,"send":0,"writ":0.51,"used":552.97,"free":3121.1},{"epoch":26144104,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":553.71,"free":3120.36},{"epoch":26144105,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":553.26,"free":3120.85},{"epoch":26144106,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.23,"free":3120.87},{"epoch":26144107,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.2,"free":3120.89},{"epoch":26144108,"idl":99.82,"recv":0,"send":0,"writ":0.42,"used":553.49,"free":3120.6},{"epoch":26144109,"idl":99.87,"recv":0,"send":0,"writ":0.44,"used":553.17,"free":3120.9},{"epoch":26144110,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":553.42,"free":3120.66},{"epoch":26144111,"idl":98.86,"recv":0,"send":0,"writ":0.16,"used":553.39,"free":3120.69},{"epoch":26144112,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.38,"free":3120.69},{"epoch":26144113,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":554,"free":3120.07},{"epoch":26144114,"idl":99.93,"recv":0,"send":0,"writ":0.38,"used":553.56,"free":3120.5},{"epoch":26144115,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":551.93,"free":3122.15},{"epoch":26144116,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":551.51,"free":3122.56},{"epoch":26144117,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":551.75,"free":3122.32},{"epoch":26144118,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.72,"free":3122.35},{"epoch":26144119,"idl":95.03,"recv":0.27,"send":0.02,"writ":257.73,"used":563.08,"free":3111.83},{"epoch":26144120,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":554.21,"free":3120.06},{"epoch":26144121,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":540.38,"free":3134.21},{"epoch":26144122,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":539.97,"free":3134.63},{"epoch":26144123,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":539.96,"free":3134.63},{"epoch":26144124,"idl":99.81,"recv":0,"send":0,"writ":0.62,"used":538.73,"free":3135.91},{"epoch":26144125,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":537.55,"free":3137.12},{"epoch":26144126,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":537.54,"free":3137.16},{"epoch":26144127,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":537.53,"free":3137.16},{"epoch":26144128,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":537.53,"free":3137.16},{"epoch":26144129,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":537.36,"free":3137.33},{"epoch":26144130,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":537.04,"free":3137.66},{"epoch":26144131,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":537.04,"free":3137.66},{"epoch":26144132,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":537.04,"free":3137.66},{"epoch":26144133,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":537.01,"free":3137.68},{"epoch":26144134,"idl":99.77,"recv":0,"send":0,"writ":0.52,"used":538.11,"free":3136.57},{"epoch":26144135,"idl":99.92,"recv":0,"send":0,"writ":0.35,"used":537.51,"free":3137.19},{"epoch":26144136,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":537.5,"free":3137.2},{"epoch":26144137,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":537.5,"free":3137.2},{"epoch":26144138,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":537.48,"free":3137.21},{"epoch":26144139,"idl":99.75,"recv":0,"send":0,"writ":0.74,"used":537.97,"free":3136.71},{"epoch":26144140,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":537.71,"free":3136.98},{"epoch":26144141,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":537.71,"free":3136.98},{"epoch":26144142,"idl":99.95,"recv":0.02,"send":1.76,"writ":0.19,"used":537.79,"free":3136.9},{"epoch":26144143,"idl":99.91,"recv":0.01,"send":1.35,"writ":0.28,"used":537.73,"free":3136.93},{"epoch":26144144,"idl":99.8,"recv":0,"send":0.01,"writ":0.55,"used":538.15,"free":3136.51},{"epoch":26144145,"idl":99.91,"recv":0,"send":0,"writ":0.32,"used":537.74,"free":3136.94},{"epoch":26144146,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":537.61,"free":3137.06},{"epoch":26144147,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":537.44,"free":3137.23},{"epoch":26144148,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":537.53,"free":3137.13},{"epoch":26144149,"idl":99.82,"recv":0,"send":0,"writ":0.43,"used":538.07,"free":3136.59},{"epoch":26144150,"idl":99.91,"recv":0,"send":0,"writ":0.41,"used":538.13,"free":3136.55},{"epoch":26144151,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":538.11,"free":3136.57},{"epoch":26144152,"idl":99.97,"recv":0,"send":0,"writ":0.14,"used":538.09,"free":3136.59},{"epoch":26144153,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":538.08,"free":3136.59},{"epoch":26144154,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":538.77,"free":3135.9},{"epoch":26144155,"idl":99.86,"recv":0,"send":0,"writ":0.53,"used":538.34,"free":3136.35},{"epoch":26144156,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":538.34,"free":3136.35},{"epoch":26144157,"idl":99.89,"recv":0.04,"send":1.56,"writ":0.26,"used":538.29,"free":3136.39},{"epoch":26144158,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":538.25,"free":3136.41},{"epoch":26144159,"idl":99.94,"recv":0,"send":0.05,"writ":0.18,"used":538.22,"free":3136.44},{"epoch":26144160,"idl":99.69,"recv":0,"send":0,"writ":0.69,"used":538.28,"free":3136.39},{"epoch":26144161,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":537.92,"free":3136.75},{"epoch":26144162,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":538.06,"free":3136.61},{"epoch":26144163,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":538.1,"free":3136.56},{"epoch":26144164,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":538.09,"free":3136.56},{"epoch":26144165,"idl":99.73,"recv":0,"send":0,"writ":0.76,"used":538.68,"free":3135.99},{"epoch":26144166,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":538.32,"free":3136.35},{"epoch":26144167,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":538.31,"free":3136.35},{"epoch":26144168,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":538.31,"free":3136.35},{"epoch":26144169,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":538.06,"free":3136.57},{"epoch":26144170,"idl":99.65,"recv":0,"send":0,"writ":0.73,"used":538.04,"free":3136.61},{"epoch":26144171,"idl":98.73,"recv":0,"send":0,"writ":0.16,"used":537.33,"free":3137.32},{"epoch":26144172,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":537.32,"free":3137.32},{"epoch":26144173,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":537.29,"free":3137.35},{"epoch":26144174,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":537.29,"free":3137.35},{"epoch":26144175,"idl":99.67,"recv":0,"send":0,"writ":0.7,"used":538.61,"free":3136.04},{"epoch":26144176,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":538.28,"free":3136.36},{"epoch":26144177,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":538.04,"free":3136.6},{"epoch":26144178,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":538.02,"free":3136.62},{"epoch":26144179,"idl":99.82,"recv":0,"send":0,"writ":0.13,"used":537.99,"free":3136.64},{"epoch":26144180,"idl":99.61,"recv":0,"send":0,"writ":0.69,"used":538.72,"free":3135.93},{"epoch":26144181,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":538.25,"free":3136.39},{"epoch":26144182,"idl":99.97,"recv":0,"send":0,"writ":0.14,"used":538.25,"free":3136.39},{"epoch":26144183,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":538.24,"free":3136.39},{"epoch":26144184,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":538.23,"free":3136.41},{"epoch":26144185,"idl":99.75,"recv":0,"send":0,"writ":0.7,"used":538.58,"free":3136.07},{"epoch":26144186,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":538.22,"free":3136.43},{"epoch":26144187,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":538.22,"free":3136.43},{"epoch":26144188,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":538.21,"free":3136.43},{"epoch":26144189,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":538.21,"free":3136.43},{"epoch":26144190,"idl":99.64,"recv":0,"send":0,"writ":0.54,"used":537.87,"free":3136.78},{"epoch":26144191,"idl":99.92,"recv":0,"send":0,"writ":0.33,"used":538.22,"free":3136.43},{"epoch":26144192,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":538.2,"free":3136.44},{"epoch":26144193,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":538.18,"free":3136.46},{"epoch":26144194,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":538.18,"free":3136.46},{"epoch":26144195,"idl":99.7,"recv":0,"send":0,"writ":0.73,"used":538.58,"free":3136.07},{"epoch":26144196,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":538.4,"free":3136.24},{"epoch":26144197,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":538.4,"free":3136.24},{"epoch":26144198,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":538.39,"free":3136.24},{"epoch":26144199,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":538.15,"free":3136.46},{"epoch":26144200,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":538.48,"free":3136.14},{"epoch":26144201,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":538.69,"free":3135.93},{"epoch":26144202,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":538.3,"free":3136.32},{"epoch":26144203,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":538.29,"free":3136.32},{"epoch":26144204,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":538.29,"free":3136.32},{"epoch":26144205,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":538.55,"free":3136.08},{"epoch":26144206,"idl":99.63,"recv":0.01,"send":0.01,"writ":0.64,"used":540.03,"free":3134.55},{"epoch":26144207,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":547.51,"free":3126.81},{"epoch":26144208,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.18,"used":549.63,"free":3124.64},{"epoch":26144209,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":550.91,"free":3123.34},{"epoch":26144210,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":552.9,"free":3121.36},{"epoch":26144211,"idl":96.05,"recv":0,"send":0,"writ":0.55,"used":553.37,"free":3120.89},{"epoch":26144212,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":552.84,"free":3121.45},{"epoch":26144213,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":552.74,"free":3121.54},{"epoch":26144214,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":552.55,"free":3121.73},{"epoch":26144215,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.31,"used":552.81,"free":3121.5},{"epoch":26144216,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":553.26,"free":3121.05},{"epoch":26144217,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":552.88,"free":3121.42},{"epoch":26144218,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":552.86,"free":3121.44},{"epoch":26144219,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":552.83,"free":3121.47},{"epoch":26144220,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":553.06,"free":3121.24},{"epoch":26144221,"idl":99.71,"recv":0,"send":0,"writ":0.42,"used":553.55,"free":3120.75},{"epoch":26144222,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":552.78,"free":3121.52},{"epoch":26144223,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.76,"free":3121.53},{"epoch":26144224,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":552.74,"free":3121.55},{"epoch":26144225,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":552.89,"free":3121.42},{"epoch":26144226,"idl":99.73,"recv":0,"send":0,"writ":0.49,"used":552.97,"free":3121.33},{"epoch":26144227,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":551.9,"free":3122.41},{"epoch":26144228,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":551.88,"free":3122.42},{"epoch":26144229,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":552.59,"free":3121.69},{"epoch":26144230,"idl":99.79,"recv":0,"send":0,"writ":0.38,"used":552.6,"free":3121.69},{"epoch":26144231,"idl":99.7,"recv":0,"send":0,"writ":0.61,"used":553,"free":3121.28},{"epoch":26144232,"idl":99.49,"recv":0,"send":0,"writ":0.15,"used":552.8,"free":3121.48},{"epoch":26144233,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":552.78,"free":3121.49},{"epoch":26144234,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":552.75,"free":3121.53},{"epoch":26144235,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":553.01,"free":3121.3},{"epoch":26144236,"idl":99.7,"recv":0,"send":0,"writ":0.51,"used":553.62,"free":3120.68},{"epoch":26144237,"idl":99.83,"recv":0,"send":0,"writ":0.23,"used":552.16,"free":3122.13},{"epoch":26144238,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":552.14,"free":3122.15},{"epoch":26144239,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.12,"free":3122.16},{"epoch":26144240,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":551.88,"free":3122.42},{"epoch":26144241,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":551.85,"free":3122.45},{"epoch":26144242,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":552.81,"free":3121.49},{"epoch":26144243,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.31,"free":3121.98},{"epoch":26144244,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":552.27,"free":3122.02},{"epoch":26144245,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":552.28,"free":3122.03},{"epoch":26144246,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":552.32,"free":3121.98},{"epoch":26144247,"idl":99.67,"recv":0,"send":0,"writ":0.59,"used":552.95,"free":3121.34},{"epoch":26144248,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":552.63,"free":3121.66},{"epoch":26144249,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.16,"used":552.56,"free":3121.72},{"epoch":26144250,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":552.53,"free":3121.77},{"epoch":26144251,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":552.51,"free":3121.79},{"epoch":26144252,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":553.11,"free":3121.19},{"epoch":26144253,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.89,"free":3121.4},{"epoch":26144254,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.87,"free":3121.41},{"epoch":26144255,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":552.88,"free":3121.43},{"epoch":26144256,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":552.85,"free":3121.45},{"epoch":26144257,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":552.87,"free":3121.42},{"epoch":26144258,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":551.82,"free":3122.47},{"epoch":26144259,"idl":99.74,"recv":0,"send":0,"writ":0.42,"used":552.76,"free":3121.51},{"epoch":26144260,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":552.62,"free":3121.67},{"epoch":26144261,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":552.5,"free":3121.78},{"epoch":26144262,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":553.14,"free":3121.13},{"epoch":26144263,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.19,"free":3121.07},{"epoch":26144264,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":553.34,"free":3120.92},{"epoch":26144265,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":552.89,"free":3121.39},{"epoch":26144266,"idl":99.8,"recv":0,"send":0.01,"writ":0.18,"used":552.85,"free":3121.42},{"epoch":26144267,"idl":99.72,"recv":0,"send":0,"writ":0.51,"used":553.27,"free":3121},{"epoch":26144268,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":552.05,"free":3122.21},{"epoch":26144269,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":552.04,"free":3122.21},{"epoch":26144270,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":550.84,"free":3123.43},{"epoch":26144271,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":550.77,"free":3123.5},{"epoch":26144272,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":551.77,"free":3122.49},{"epoch":26144273,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":552.2,"free":3122.05},{"epoch":26144274,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":552.28,"free":3121.97},{"epoch":26144275,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":552.38,"free":3121.89},{"epoch":26144276,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":552.37,"free":3121.9},{"epoch":26144277,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":552.69,"free":3121.57},{"epoch":26144278,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":552.32,"free":3121.93},{"epoch":26144279,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":552.29,"free":3121.96},{"epoch":26144280,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":552.3,"free":3121.96},{"epoch":26144281,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":552.27,"free":3121.99},{"epoch":26144282,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":552.26,"free":3121.99},{"epoch":26144283,"idl":99.66,"recv":0,"send":0,"writ":0.63,"used":552.58,"free":3121.67},{"epoch":26144284,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":552.22,"free":3122.02},{"epoch":26144285,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":551.73,"free":3122.53},{"epoch":26144286,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":551.75,"free":3122.51},{"epoch":26144287,"idl":99.8,"recv":0.01,"send":0.17,"writ":0.19,"used":551.79,"free":3122.46},{"epoch":26144288,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":552.62,"free":3121.62},{"epoch":26144289,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":552.25,"free":3121.97},{"epoch":26144290,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":552.64,"free":3121.59},{"epoch":26144291,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":552.61,"free":3121.62},{"epoch":26144292,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":552.6,"free":3121.62},{"epoch":26144293,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":552.8,"free":3121.42},{"epoch":26144294,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":552.32,"free":3121.9},{"epoch":26144295,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":552.31,"free":3121.93},{"epoch":26144296,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.3,"free":3121.93},{"epoch":26144297,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":552.28,"free":3121.95},{"epoch":26144298,"idl":99.7,"recv":0,"send":0,"writ":0.5,"used":552.75,"free":3121.47},{"epoch":26144299,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":552.47,"free":3121.74},{"epoch":26144300,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":552.48,"free":3121.75},{"epoch":26144301,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":552.62,"free":3121.62},{"epoch":26144302,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.62,"free":3121.62},{"epoch":26144303,"idl":99.74,"recv":0,"send":0,"writ":0.53,"used":553.05,"free":3121.19},{"epoch":26144304,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":552.81,"free":3121.42},{"epoch":26144305,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":552.83,"free":3121.42},{"epoch":26144306,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":552.81,"free":3121.44},{"epoch":26144307,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":552.79,"free":3121.45},{"epoch":26144308,"idl":99.69,"recv":0,"send":0,"writ":0.41,"used":553.33,"free":3120.9},{"epoch":26144309,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":552.48,"free":3121.75},{"epoch":26144310,"idl":96.89,"recv":5.34,"send":0.06,"writ":13.4,"used":560.04,"free":3113.68},{"epoch":26144311,"idl":97.32,"recv":2.76,"send":0.09,"writ":11.86,"used":558.67,"free":3113.03},{"epoch":26144312,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":555.37,"free":3116.31},{"epoch":26144313,"idl":99.69,"recv":0,"send":0,"writ":0.37,"used":555.76,"free":3115.9},{"epoch":26144314,"idl":99.82,"recv":0,"send":0,"writ":0.35,"used":556.55,"free":3115.11},{"epoch":26144315,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":557.04,"free":3114.64},{"epoch":26144316,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":557.19,"free":3114.48},{"epoch":26144317,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.21,"free":3114.47},{"epoch":26144318,"idl":99.71,"recv":0,"send":0,"writ":0.41,"used":557.52,"free":3114.15},{"epoch":26144319,"idl":99.68,"recv":0,"send":0,"writ":0.44,"used":557.19,"free":3114.45},{"epoch":26144320,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":557.15,"free":3114.51},{"epoch":26144321,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":557.13,"free":3114.53},{"epoch":26144322,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":557.11,"free":3114.54},{"epoch":26144323,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":557.08,"free":3114.57},{"epoch":26144324,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":556.53,"free":3115.13},{"epoch":26144325,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":557.3,"free":3114.38},{"epoch":26144326,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":557.19,"free":3114.48},{"epoch":26144327,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":556.88,"free":3114.79},{"epoch":26144328,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":556.95,"free":3114.72},{"epoch":26144329,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":557.62,"free":3114.04},{"epoch":26144330,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":556.7,"free":3114.98},{"epoch":26144331,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":556.66,"free":3115.02},{"epoch":26144332,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.65,"free":3115.03},{"epoch":26144333,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":556.62,"free":3115.05},{"epoch":26144334,"idl":99.68,"recv":0,"send":0,"writ":0.43,"used":557.6,"free":3114.06},{"epoch":26144335,"idl":99.78,"recv":0,"send":0,"writ":0.46,"used":556.85,"free":3114.83},{"epoch":26144336,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":556.82,"free":3114.85},{"epoch":26144337,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":556.8,"free":3114.87},{"epoch":26144338,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":556.88,"free":3114.79},{"epoch":26144339,"idl":99.74,"recv":0,"send":0,"writ":0.5,"used":557.75,"free":3113.91},{"epoch":26144340,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":557.18,"free":3114.5},{"epoch":26144341,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":557.17,"free":3114.5},{"epoch":26144342,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.14,"free":3114.53},{"epoch":26144343,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":557.13,"free":3114.53},{"epoch":26144344,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":557.66,"free":3113.99},{"epoch":26144345,"idl":99.77,"recv":0,"send":0,"writ":0.46,"used":557.1,"free":3114.58},{"epoch":26144346,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.09,"free":3114.59},{"epoch":26144347,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":557.07,"free":3114.61},{"epoch":26144348,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.05,"free":3114.62},{"epoch":26144349,"idl":99.61,"recv":0,"send":0,"writ":0.48,"used":557.89,"free":3113.76},{"epoch":26144350,"idl":99.75,"recv":0,"send":0,"writ":0.53,"used":556.88,"free":3114.77},{"epoch":26144351,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":556.96,"free":3114.69},{"epoch":26144352,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":556.93,"free":3114.72},{"epoch":26144353,"idl":99.85,"recv":0,"send":0.01,"writ":0.14,"used":556.91,"free":3114.73},{"epoch":26144354,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":556.87,"free":3114.77},{"epoch":26144355,"idl":99.65,"recv":0,"send":0,"writ":0.69,"used":557.58,"free":3114.07},{"epoch":26144356,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":557.1,"free":3114.55},{"epoch":26144357,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":557.08,"free":3114.56},{"epoch":26144358,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":557.06,"free":3114.58},{"epoch":26144359,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.04,"free":3114.6},{"epoch":26144360,"idl":99.61,"recv":0,"send":0,"writ":0.69,"used":557.43,"free":3114.22},{"epoch":26144361,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":557.13,"free":3114.52},{"epoch":26144362,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.18,"free":3114.47},{"epoch":26144363,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":557.15,"free":3114.5},{"epoch":26144364,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":557.14,"free":3114.5},{"epoch":26144365,"idl":99.66,"recv":0,"send":0,"writ":0.73,"used":558.03,"free":3113.62},{"epoch":26144366,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":557.36,"free":3114.29},{"epoch":26144367,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":557.35,"free":3114.29},{"epoch":26144368,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.32,"free":3114.32},{"epoch":26144369,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":557.3,"free":3114.34},{"epoch":26144370,"idl":99.77,"recv":0,"send":0,"writ":0.64,"used":557.66,"free":3114},{"epoch":26144371,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":557.27,"free":3114.38},{"epoch":26144372,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":557.29,"free":3114.35},{"epoch":26144373,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.42,"free":3114.23},{"epoch":26144374,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":557.41,"free":3114.23},{"epoch":26144375,"idl":99.73,"recv":0,"send":0,"writ":0.74,"used":557.67,"free":3113.98},{"epoch":26144376,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":557.13,"free":3114.52},{"epoch":26144377,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":557.11,"free":3114.54},{"epoch":26144378,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":557.09,"free":3114.55},{"epoch":26144379,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":557.33,"free":3114.29},{"epoch":26144380,"idl":99.72,"recv":0,"send":0,"writ":0.71,"used":557.67,"free":3113.96},{"epoch":26144381,"idl":99.95,"recv":0.02,"send":0.67,"writ":0.17,"used":557.33,"free":3114.3},{"epoch":26144382,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":557.37,"free":3114.26},{"epoch":26144383,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":557.34,"free":3114.27},{"epoch":26144384,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.33,"free":3114.3},{"epoch":26144385,"idl":99.78,"recv":0,"send":0,"writ":0.51,"used":557.43,"free":3114.22},{"epoch":26144386,"idl":99.87,"recv":0,"send":0.01,"writ":0.39,"used":557.46,"free":3114.18},{"epoch":26144387,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":557.19,"free":3114.44},{"epoch":26144388,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":557.19,"free":3114.44},{"epoch":26144389,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":557.17,"free":3114.46},{"epoch":26144390,"idl":99.75,"recv":0,"send":0,"writ":0.46,"used":558.01,"free":3113.64},{"epoch":26144391,"idl":99.89,"recv":0,"send":0,"writ":0.39,"used":557.4,"free":3114.24},{"epoch":26144392,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":557.36,"free":3114.27},{"epoch":26144393,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.36,"free":3114.27},{"epoch":26144394,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":557.32,"free":3114.3},{"epoch":26144395,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":557.58,"free":3114.06},{"epoch":26144396,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":557.67,"free":3113.97},{"epoch":26144397,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":557.05,"free":3114.58},{"epoch":26144398,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.03,"free":3114.6},{"epoch":26144399,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":557.2,"free":3114.43},{"epoch":26144400,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":557.67,"free":3113.97},{"epoch":26144401,"idl":99.8,"recv":0,"send":0,"writ":0.64,"used":558.19,"free":3113.45},{"epoch":26144402,"idl":99.92,"recv":0.02,"send":0.52,"writ":0.2,"used":557.89,"free":3113.75},{"epoch":26144403,"idl":99.8,"recv":0.32,"send":16.56,"writ":0.53,"used":557.92,"free":3113.7},{"epoch":26144404,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":557.79,"free":3113.82},{"epoch":26144405,"idl":99.81,"recv":0.05,"send":0.82,"writ":0.61,"used":556.98,"free":3114.63},{"epoch":26144406,"idl":99.71,"recv":0.04,"send":1.14,"writ":0.91,"used":557.89,"free":3113.69},{"epoch":26144407,"idl":99.92,"recv":0,"send":0.01,"writ":0.2,"used":557.77,"free":3113.8},{"epoch":26144408,"idl":99.93,"recv":0.03,"send":0.73,"writ":0.21,"used":557.84,"free":3113.72},{"epoch":26144409,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":557.39,"free":3114.16},{"epoch":26144410,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":557.6,"free":3113.96},{"epoch":26144411,"idl":99.81,"recv":0,"send":0,"writ":0.53,"used":558.05,"free":3113.51},{"epoch":26144412,"idl":99.73,"recv":0,"send":0,"writ":0.23,"used":557.79,"free":3113.76},{"epoch":26144413,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":557.78,"free":3113.77},{"epoch":26144414,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.75,"free":3113.8},{"epoch":26144415,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":556.57,"free":3114.99},{"epoch":26144416,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":557.37,"free":3114.18},{"epoch":26144417,"idl":99.92,"recv":0,"send":0,"writ":0.34,"used":556.98,"free":3114.57},{"epoch":26144418,"idl":99.95,"recv":0.01,"send":0.02,"writ":0.14,"used":556.98,"free":3114.56},{"epoch":26144419,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":557.08,"free":3114.47},{"epoch":26144420,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":557.8,"free":3113.76},{"epoch":26144421,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":558.12,"free":3113.44},{"epoch":26144422,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":557.75,"free":3113.8},{"epoch":26144423,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":557.3,"free":3114.25},{"epoch":26144424,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":556.77,"free":3114.77},{"epoch":26144425,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":556.13,"free":3115.43},{"epoch":26144426,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":556.54,"free":3115.02},{"epoch":26144427,"idl":99.91,"recv":0,"send":0.01,"writ":0.27,"used":556.79,"free":3114.77},{"epoch":26144428,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":556.74,"free":3114.81},{"epoch":26144429,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":556.73,"free":3114.82},{"epoch":26144430,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":556.97,"free":3114.6},{"epoch":26144431,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":557.09,"free":3114.47},{"epoch":26144432,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":557.5,"free":3114.05},{"epoch":26144433,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":557.11,"free":3114.44},{"epoch":26144434,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":557.09,"free":3114.45},{"epoch":26144435,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":556.86,"free":3114.7},{"epoch":26144436,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":556.83,"free":3114.73},{"epoch":26144437,"idl":99.78,"recv":0,"send":0,"writ":0.6,"used":557.3,"free":3114.24},{"epoch":26144438,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":556.77,"free":3114.76},{"epoch":26144439,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":557,"free":3114.5},{"epoch":26144440,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":557.29,"free":3114.23},{"epoch":26144441,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":557.2,"free":3114.31},{"epoch":26144442,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":557.65,"free":3113.86},{"epoch":26144443,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":557.35,"free":3114.15},{"epoch":26144444,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.32,"free":3114.18},{"epoch":26144445,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":557.08,"free":3114.44},{"epoch":26144446,"idl":99.92,"recv":0,"send":0,"writ":0.23,"used":557.03,"free":3114.49},{"epoch":26144447,"idl":99.76,"recv":0,"send":0,"writ":0.63,"used":557.45,"free":3114.06},{"epoch":26144448,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":557.25,"free":3114.25},{"epoch":26144449,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":557.22,"free":3114.27},{"epoch":26144450,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":556.28,"free":3115.23},{"epoch":26144451,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.22,"free":3115.29},{"epoch":26144452,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":557.27,"free":3114.24},{"epoch":26144453,"idl":99.94,"recv":0.01,"send":0.1,"writ":0.16,"used":557.1,"free":3114.4},{"epoch":26144454,"idl":99.92,"recv":0,"send":0.01,"writ":0.21,"used":556.97,"free":3114.52},{"epoch":26144455,"idl":99.84,"recv":0,"send":0,"writ":0.43,"used":557.2,"free":3114.3},{"epoch":26144456,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":557.19,"free":3114.31},{"epoch":26144457,"idl":99.82,"recv":0,"send":0,"writ":0.77,"used":557.75,"free":3113.74},{"epoch":26144458,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.07,"free":3114.42},{"epoch":26144459,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":557.06,"free":3114.43},{"epoch":26144460,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":557.3,"free":3114.2},{"epoch":26144461,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.29,"free":3114.21},{"epoch":26144462,"idl":99.79,"recv":0,"send":0,"writ":0.48,"used":557.61,"free":3113.88},{"epoch":26144463,"idl":99.94,"recv":0,"send":0,"writ":0.35,"used":557.25,"free":3114.24},{"epoch":26144464,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":557.21,"free":3114.27},{"epoch":26144465,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":556.75,"free":3114.75},{"epoch":26144466,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.71,"free":3114.79},{"epoch":26144467,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":557.14,"free":3114.35},{"epoch":26144468,"idl":99.94,"recv":0,"send":0,"writ":0.28,"used":557.41,"free":3114.08},{"epoch":26144469,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":557.02,"free":3114.44},{"epoch":26144470,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":557.33,"free":3114.16},{"epoch":26144471,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":557.32,"free":3114.18},{"epoch":26144472,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":557.29,"free":3114.21},{"epoch":26144473,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":557.4,"free":3114.1},{"epoch":26144474,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.76,"free":3114.73},{"epoch":26144475,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":557.5,"free":3114.01},{"epoch":26144476,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.48,"free":3114.03},{"epoch":26144477,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":557.21,"free":3114.28},{"epoch":26144478,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":557.54,"free":3113.96},{"epoch":26144479,"idl":99.92,"recv":0.01,"send":0.04,"writ":0.17,"used":557.21,"free":3114.28},{"epoch":26144480,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":557.27,"free":3114.24},{"epoch":26144481,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.25,"free":3114.25},{"epoch":26144482,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":557.22,"free":3114.27},{"epoch":26144483,"idl":95.09,"recv":0.39,"send":1.18,"writ":258.65,"used":572.56,"free":3097.44},{"epoch":26144484,"idl":99.93,"recv":0,"send":0.02,"writ":0.25,"used":559.88,"free":3111.34},{"epoch":26144485,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":558.99,"free":3112.24},{"epoch":26144486,"idl":99.92,"recv":0.01,"send":0.95,"writ":0.16,"used":558.85,"free":3112.38},{"epoch":26144487,"idl":99.91,"recv":0.01,"send":1.33,"writ":0.35,"used":558.8,"free":3112.41},{"epoch":26144488,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":558.79,"free":3112.45},{"epoch":26144489,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":557.76,"free":3113.52},{"epoch":26144490,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":557.26,"free":3114.03},{"epoch":26144491,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":557.22,"free":3114.07},{"epoch":26144492,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":557.21,"free":3114.07},{"epoch":26144493,"idl":99.82,"recv":0,"send":0,"writ":0.43,"used":557.64,"free":3113.67},{"epoch":26144494,"idl":99.94,"recv":0,"send":0,"writ":0.3,"used":557.43,"free":3113.92},{"epoch":26144495,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":556.71,"free":3114.65},{"epoch":26144496,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":556.67,"free":3114.69},{"epoch":26144497,"idl":99.93,"recv":0,"send":0.01,"writ":0.19,"used":556.64,"free":3114.72},{"epoch":26144498,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":557.16,"free":3114.19},{"epoch":26144499,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":557.66,"free":3113.66},{"epoch":26144500,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":557.52,"free":3113.82},{"epoch":26144501,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":557.49,"free":3113.85},{"epoch":26144502,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":557.47,"free":3113.86},{"epoch":26144503,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":557.86,"free":3113.46},{"epoch":26144504,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":557.67,"free":3113.65},{"epoch":26144505,"idl":99.91,"recv":0,"send":0,"writ":0.34,"used":557.19,"free":3114.15},{"epoch":26144506,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.17,"used":557.12,"free":3114.21},{"epoch":26144507,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":556.63,"free":3114.7},{"epoch":26144508,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":557.11,"free":3114.22},{"epoch":26144509,"idl":99.95,"recv":0,"send":0,"writ":0.38,"used":557.12,"free":3114.2},{"epoch":26144510,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":557.54,"free":3113.8},{"epoch":26144511,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.51,"free":3113.82},{"epoch":26144512,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.49,"free":3113.83},{"epoch":26144513,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.46,"free":3113.86},{"epoch":26144514,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":557.82,"free":3113.5},{"epoch":26144515,"idl":99.88,"recv":0,"send":0.01,"writ":0.33,"used":557.69,"free":3113.65},{"epoch":26144516,"idl":99.92,"recv":0.01,"send":0.03,"writ":0.16,"used":557.69,"free":3113.64},{"epoch":26144517,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":557.74,"free":3113.59},{"epoch":26144518,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.14,"used":557.71,"free":3113.61},{"epoch":26144519,"idl":99.81,"recv":0,"send":0,"writ":0.63,"used":557.96,"free":3113.36},{"epoch":26144520,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":557.14,"free":3114.19},{"epoch":26144521,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":557.26,"free":3114.07},{"epoch":26144522,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":557.24,"free":3114.08},{"epoch":26144523,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":557.24,"free":3114.08},{"epoch":26144524,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":557.56,"free":3113.76},{"epoch":26144525,"idl":99.84,"recv":0,"send":0,"writ":0.37,"used":557.46,"free":3113.87},{"epoch":26144526,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":557.43,"free":3113.89},{"epoch":26144527,"idl":99.91,"recv":0.01,"send":0.13,"writ":0.21,"used":557.41,"free":3113.91},{"epoch":26144528,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":557.41,"free":3113.91},{"epoch":26144529,"idl":99.67,"recv":0,"send":0,"writ":0.64,"used":558.01,"free":3113.28},{"epoch":26144530,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":557.62,"free":3113.69},{"epoch":26144531,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":557.59,"free":3113.72},{"epoch":26144532,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.57,"free":3113.74},{"epoch":26144533,"idl":99.68,"recv":0,"send":0,"writ":0.15,"used":557.55,"free":3113.75},{"epoch":26144534,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":558.07,"free":3113.23},{"epoch":26144535,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":556.82,"free":3114.49},{"epoch":26144536,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":556.76,"free":3114.55},{"epoch":26144537,"idl":99.95,"recv":0,"send":0,"writ":0.22,"used":557.2,"free":3114.1},{"epoch":26144538,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.21,"free":3114.09},{"epoch":26144539,"idl":99.77,"recv":0,"send":0,"writ":0.51,"used":558.1,"free":3113.19},{"epoch":26144540,"idl":99.83,"recv":0,"send":0,"writ":0.35,"used":557.69,"free":3113.62},{"epoch":26144541,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":557.65,"free":3113.66},{"epoch":26144542,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.64,"free":3113.66},{"epoch":26144543,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":557.61,"free":3113.69},{"epoch":26144544,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":558,"free":3113.29},{"epoch":26144545,"idl":99.86,"recv":0,"send":0,"writ":0.45,"used":557.83,"free":3113.47},{"epoch":26144546,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":557.96,"free":3113.34},{"epoch":26144547,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":557.98,"free":3113.32},{"epoch":26144548,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":557.95,"free":3113.35},{"epoch":26144549,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":558.25,"free":3113.04},{"epoch":26144550,"idl":99.87,"recv":0,"send":0,"writ":0.45,"used":557.69,"free":3113.62},{"epoch":26144551,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":557.66,"free":3113.64},{"epoch":26144552,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":557.64,"free":3113.66},{"epoch":26144553,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":557.61,"free":3113.68},{"epoch":26144554,"idl":99.81,"recv":0,"send":0,"writ":0.37,"used":558.29,"free":3113},{"epoch":26144555,"idl":99.86,"recv":0,"send":0,"writ":0.5,"used":557.34,"free":3113.96},{"epoch":26144556,"idl":99.93,"recv":0,"send":0.01,"writ":0.18,"used":557.4,"free":3113.91},{"epoch":26144557,"idl":99.56,"recv":0,"send":0,"writ":0.45,"used":557.8,"free":3113.49},{"epoch":26144558,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":557.93,"free":3113.35},{"epoch":26144559,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":558.15,"free":3113.1},{"epoch":26144560,"idl":99.69,"recv":0,"send":0.01,"writ":0.74,"used":558.09,"free":3113.18},{"epoch":26144561,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":557.63,"free":3113.64},{"epoch":26144562,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.61,"free":3113.66},{"epoch":26144563,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":557.59,"free":3113.67},{"epoch":26144564,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":557.57,"free":3113.69},{"epoch":26144565,"idl":99.74,"recv":0,"send":0,"writ":0.7,"used":557.41,"free":3113.86},{"epoch":26144566,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":557,"free":3114.27},{"epoch":26144567,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":556.96,"free":3114.3},{"epoch":26144568,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.95,"free":3114.31},{"epoch":26144569,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.92,"free":3114.33},{"epoch":26144570,"idl":99.75,"recv":0,"send":0,"writ":0.71,"used":558.28,"free":3112.99},{"epoch":26144571,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":558.14,"free":3113.13},{"epoch":26144572,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":558.12,"free":3113.14},{"epoch":26144573,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":558.1,"free":3113.16},{"epoch":26144574,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":558.07,"free":3113.19},{"epoch":26144575,"idl":99.76,"recv":0,"send":0,"writ":0.62,"used":558.73,"free":3112.54},{"epoch":26144576,"idl":99.93,"recv":0,"send":0,"writ":0.27,"used":558.05,"free":3113.22},{"epoch":26144577,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":558.22,"free":3113.04},{"epoch":26144578,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":557.89,"free":3113.36},{"epoch":26144579,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":557.19,"free":3114.06},{"epoch":26144580,"idl":99.67,"recv":0,"send":0,"writ":0.72,"used":557.07,"free":3114.2},{"epoch":26144581,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":556.69,"free":3114.58},{"epoch":26144582,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":556.65,"free":3114.61},{"epoch":26144583,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":556.64,"free":3114.61},{"epoch":26144584,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":556.61,"free":3114.64},{"epoch":26144585,"idl":99.73,"recv":0,"send":0,"writ":0.78,"used":557.69,"free":3113.58},{"epoch":26144586,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":557.33,"free":3113.93},{"epoch":26144587,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":557.32,"free":3113.94},{"epoch":26144588,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":557.3,"free":3113.96},{"epoch":26144589,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":557.72,"free":3113.53},{"epoch":26144590,"idl":99.76,"recv":0,"send":0,"writ":0.77,"used":557.66,"free":3113.61},{"epoch":26144591,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":557.7,"free":3113.56},{"epoch":26144592,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":557.67,"free":3113.59},{"epoch":26144593,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":557.64,"free":3113.61},{"epoch":26144594,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":557.63,"free":3113.65},{"epoch":26144595,"idl":99.86,"recv":0,"send":0,"writ":0.35,"used":557.62,"free":3113.68},{"epoch":26144596,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":558.07,"free":3113.23},{"epoch":26144597,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":557.33,"free":3113.96},{"epoch":26144598,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":557.33,"free":3113.96},{"epoch":26144599,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":557.29,"free":3113.99},{"epoch":26144600,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":557.43,"free":3113.87},{"epoch":26144601,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":558.06,"free":3113.24},{"epoch":26144602,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":557.48,"free":3113.81},{"epoch":26144603,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":557.45,"free":3113.84},{"epoch":26144604,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.44,"free":3113.84},{"epoch":26144605,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":557.43,"free":3113.87},{"epoch":26144606,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":558.04,"free":3113.26},{"epoch":26144607,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.64,"free":3113.66},{"epoch":26144608,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":557.62,"free":3113.67},{"epoch":26144609,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":557.6,"free":3113.69},{"epoch":26144610,"idl":99.46,"recv":0,"send":0,"writ":0.47,"used":557.81,"free":3113.48},{"epoch":26144611,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":558.01,"free":3113.27},{"epoch":26144612,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":557.73,"free":3113.55},{"epoch":26144613,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":557.7,"free":3113.57},{"epoch":26144614,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":557.69,"free":3113.58},{"epoch":26144615,"idl":99.88,"recv":0,"send":0.01,"writ":0.36,"used":557.68,"free":3113.62},{"epoch":26144616,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.68,"used":558.01,"free":3113.28},{"epoch":26144617,"idl":99.57,"recv":0.39,"send":2.24,"writ":1.7,"used":557.48,"free":3113.65},{"epoch":26144618,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":557.27,"free":3113.69},{"epoch":26144619,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":557.98,"free":3112.95},{"epoch":26144620,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":558.23,"free":3112.72},{"epoch":26144621,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":558.51,"free":3112.43},{"epoch":26144622,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":558.13,"free":3112.81},{"epoch":26144623,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":558.1,"free":3112.84},{"epoch":26144624,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":558.09,"free":3112.85},{"epoch":26144625,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":557.88,"free":3113.07},{"epoch":26144626,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":558.36,"free":3112.59},{"epoch":26144627,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":558.12,"free":3112.82},{"epoch":26144628,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":558.01,"free":3112.93},{"epoch":26144629,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":558,"free":3112.93},{"epoch":26144630,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":557.04,"free":3113.91},{"epoch":26144631,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":557,"free":3113.95},{"epoch":26144632,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":558.03,"free":3112.91},{"epoch":26144633,"idl":99.84,"recv":0.05,"send":0.15,"writ":0.31,"used":557.99,"free":3112.94},{"epoch":26144634,"idl":99.92,"recv":0,"send":0,"writ":0.22,"used":558.05,"free":3112.87},{"epoch":26144635,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":553.65,"free":3117.52},{"epoch":26144636,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":553.56,"free":3117.61},{"epoch":26144637,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":553.89,"free":3117.28},{"epoch":26144638,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.52,"free":3117.64},{"epoch":26144639,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":553.69,"free":3117.47},{"epoch":26144640,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":553.97,"free":3117.25},{"epoch":26144641,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":553.94,"free":3117.28},{"epoch":26144642,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":554.11,"free":3117.11},{"epoch":26144643,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":553.65,"free":3117.56},{"epoch":26144644,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":553.65,"free":3117.56},{"epoch":26144645,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":553.88,"free":3117.35},{"epoch":26144646,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.87,"free":3117.35},{"epoch":26144647,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":554.62,"free":3116.59},{"epoch":26144648,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":554.07,"free":3117.14},{"epoch":26144649,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":554.05,"free":3117.14},{"epoch":26144650,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":554.06,"free":3117.14},{"epoch":26144651,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.21,"free":3116.99},{"epoch":26144652,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":554.47,"free":3116.72},{"epoch":26144653,"idl":99.46,"recv":0,"send":0,"writ":0.31,"used":553.92,"free":3117.27},{"epoch":26144654,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":553.91,"free":3117.28},{"epoch":26144655,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":554.15,"free":3117.05},{"epoch":26144656,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":554.14,"free":3117.06},{"epoch":26144657,"idl":99.81,"recv":0,"send":0,"writ":0.63,"used":554.47,"free":3116.73},{"epoch":26144658,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.1,"free":3117.1},{"epoch":26144659,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":554.07,"free":3117.12},{"epoch":26144660,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":554.09,"free":3117.12},{"epoch":26144661,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.06,"free":3117.14},{"epoch":26144662,"idl":99.77,"recv":0,"send":0,"writ":0.36,"used":554.3,"free":3116.89},{"epoch":26144663,"idl":99.92,"recv":0,"send":0,"writ":0.39,"used":553.33,"free":3117.85},{"epoch":26144664,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.45,"free":3117.73},{"epoch":26144665,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":554.45,"free":3116.75},{"epoch":26144666,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":554.41,"free":3116.79},{"epoch":26144667,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":554.38,"free":3116.81},{"epoch":26144668,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":553.78,"free":3117.4},{"epoch":26144669,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":553.36,"free":3117.82},{"epoch":26144670,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":554.08,"free":3117.11},{"epoch":26144671,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.08,"free":3117.12},{"epoch":26144672,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.06,"free":3117.13},{"epoch":26144673,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":554.53,"free":3116.66},{"epoch":26144674,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.79,"free":3117.4},{"epoch":26144675,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":553.01,"free":3118.19},{"epoch":26144676,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":552.97,"free":3118.23},{"epoch":26144677,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":552.94,"free":3118.25},{"epoch":26144678,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":553.86,"free":3117.33},{"epoch":26144679,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":554.13,"free":3117.04},{"epoch":26144680,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":553.66,"free":3117.52},{"epoch":26144681,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":553.62,"free":3117.56},{"epoch":26144682,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":553.6,"free":3117.57},{"epoch":26144683,"idl":99.8,"recv":0,"send":0,"writ":0.42,"used":553.71,"free":3117.46},{"epoch":26144684,"idl":99.94,"recv":0,"send":0,"writ":0.3,"used":553.07,"free":3118.1},{"epoch":26144685,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":553.31,"free":3117.87},{"epoch":26144686,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":553.31,"free":3117.87},{"epoch":26144687,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":553.22,"free":3117.95},{"epoch":26144688,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":553.3,"free":3117.86},{"epoch":26144689,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":552.65,"free":3118.52},{"epoch":26144690,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":553.39,"free":3117.79},{"epoch":26144691,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":553.37,"free":3117.81},{"epoch":26144692,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":553.36,"free":3117.81},{"epoch":26144693,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":554.16,"free":3117.01},{"epoch":26144694,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":553.55,"free":3117.61},{"epoch":26144695,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":554.29,"free":3116.89},{"epoch":26144696,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":554.27,"free":3116.9},{"epoch":26144697,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.34,"free":3116.83},{"epoch":26144698,"idl":99.76,"recv":0,"send":0,"writ":0.42,"used":555.03,"free":3116.14},{"epoch":26144699,"idl":99.94,"recv":0,"send":0,"writ":0.32,"used":554.15,"free":3117.01},{"epoch":26144700,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":553.45,"free":3117.73},{"epoch":26144701,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":553.4,"free":3117.78},{"epoch":26144702,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":553.39,"free":3117.78},{"epoch":26144703,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.36,"free":3117.81},{"epoch":26144704,"idl":99.79,"recv":0,"send":0,"writ":0.6,"used":553.24,"free":3117.92},{"epoch":26144705,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":554.05,"free":3117.13},{"epoch":26144706,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.07,"free":3117.1},{"epoch":26144707,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":554.04,"free":3117.13},{"epoch":26144708,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.03,"free":3117.14},{"epoch":26144709,"idl":99.65,"recv":0,"send":0,"writ":0.74,"used":554.77,"free":3116.37},{"epoch":26144710,"idl":99.83,"recv":0,"send":0.01,"writ":0.33,"used":554.26,"free":3116.9},{"epoch":26144711,"idl":99.91,"recv":0,"send":0.01,"writ":0.17,"used":554.15,"free":3117},{"epoch":26144712,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":554.13,"free":3117.02},{"epoch":26144713,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.11,"free":3117.03},{"epoch":26144714,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":554.74,"free":3116.4},{"epoch":26144715,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":554.36,"free":3116.81},{"epoch":26144716,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":554.34,"free":3116.84},{"epoch":26144717,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":554.31,"free":3116.86},{"epoch":26144718,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.3,"free":3116.86},{"epoch":26144719,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":554.62,"free":3116.54},{"epoch":26144720,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":553.48,"free":3117.69},{"epoch":26144721,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":553.48,"free":3117.69},{"epoch":26144722,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":553.45,"free":3117.72},{"epoch":26144723,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.44,"free":3117.72},{"epoch":26144724,"idl":99.77,"recv":0,"send":0,"writ":0.5,"used":554.06,"free":3117.09},{"epoch":26144725,"idl":99.86,"recv":0,"send":0,"writ":0.35,"used":554.63,"free":3116.55},{"epoch":26144726,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":554.62,"free":3116.56},{"epoch":26144727,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.58,"free":3116.59},{"epoch":26144728,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.57,"free":3116.59},{"epoch":26144729,"idl":99.75,"recv":0,"send":0,"writ":0.53,"used":555.19,"free":3115.97},{"epoch":26144730,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":554.41,"free":3116.76},{"epoch":26144731,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.46,"free":3116.71},{"epoch":26144732,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.42,"free":3116.74},{"epoch":26144733,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":554.26,"free":3116.89},{"epoch":26144734,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":554.02,"free":3117.13},{"epoch":26144735,"idl":99.88,"recv":0,"send":0,"writ":0.55,"used":553.16,"free":3118},{"epoch":26144736,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":553.13,"free":3118.03},{"epoch":26144737,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.11,"free":3118.05},{"epoch":26144738,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":553.09,"free":3118.06},{"epoch":26144739,"idl":99.65,"recv":0,"send":0,"writ":0.46,"used":554.14,"free":3116.98},{"epoch":26144740,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.6,"used":553.42,"free":3117.72},{"epoch":26144741,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":553.39,"free":3117.74},{"epoch":26144742,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":553.36,"free":3117.77},{"epoch":26144743,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.35,"free":3117.77},{"epoch":26144744,"idl":99.85,"recv":0,"send":0.02,"writ":0.17,"used":553.3,"free":3117.82},{"epoch":26144745,"idl":99.67,"recv":0,"send":0,"writ":0.69,"used":553.66,"free":3117.48},{"epoch":26144746,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":553.31,"free":3117.83},{"epoch":26144747,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":553.45,"free":3117.68},{"epoch":26144748,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.42,"free":3117.71},{"epoch":26144749,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":553.4,"free":3117.73},{"epoch":26144750,"idl":99.74,"recv":0,"send":0,"writ":0.76,"used":554.52,"free":3116.62},{"epoch":26144751,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":553.87,"free":3117.26},{"epoch":26144752,"idl":99.88,"recv":0,"send":0.01,"writ":0.14,"used":553.84,"free":3117.29},{"epoch":26144753,"idl":99.71,"recv":0,"send":0,"writ":0.19,"used":553.81,"free":3117.31},{"epoch":26144754,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":553.79,"free":3117.33},{"epoch":26144755,"idl":99.67,"recv":0,"send":0,"writ":0.66,"used":554.28,"free":3116.86},{"epoch":26144756,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":554.01,"free":3117.12},{"epoch":26144757,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.18,"free":3116.97},{"epoch":26144758,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.16,"free":3116.98},{"epoch":26144759,"idl":99.84,"recv":0,"send":0.01,"writ":0.16,"used":554.13,"free":3117.01},{"epoch":26144760,"idl":99.57,"recv":0,"send":0,"writ":0.77,"used":553.28,"free":3117.87},{"epoch":26144761,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":552.59,"free":3118.55},{"epoch":26144762,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":552.58,"free":3118.55},{"epoch":26144763,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":552.55,"free":3118.58},{"epoch":26144764,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":552.54,"free":3118.59},{"epoch":26144765,"idl":99.68,"recv":0,"send":0,"writ":0.73,"used":554.17,"free":3116.98},{"epoch":26144766,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":554.03,"free":3117.11},{"epoch":26144767,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.15,"free":3116.98},{"epoch":26144768,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":554.15,"free":3116.98},{"epoch":26144769,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":554.11,"free":3117},{"epoch":26144770,"idl":99.6,"recv":0,"send":0,"writ":0.8,"used":553.86,"free":3117.28},{"epoch":26144771,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":553.85,"free":3117.28},{"epoch":26144772,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.82,"free":3117.31},{"epoch":26144773,"idl":99.69,"recv":0,"send":0,"writ":0.15,"used":553.79,"free":3117.34},{"epoch":26144774,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":553.78,"free":3117.34},{"epoch":26144775,"idl":99.63,"recv":0,"send":0,"writ":0.55,"used":554.76,"free":3116.38},{"epoch":26144776,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":553.77,"free":3117.37},{"epoch":26144777,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":553.73,"free":3117.4},{"epoch":26144778,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.83,"free":3117.3},{"epoch":26144779,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":553.91,"free":3117.21},{"epoch":26144780,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":553.92,"free":3117.22},{"epoch":26144781,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":554.92,"free":3116.22},{"epoch":26144782,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":554.35,"free":3116.79},{"epoch":26144783,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":554.32,"free":3116.8},{"epoch":26144784,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":554.31,"free":3116.82},{"epoch":26144785,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":554.05,"free":3117.09},{"epoch":26144786,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":554.39,"free":3116.75},{"epoch":26144787,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":554.01,"free":3117.12},{"epoch":26144788,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":554,"free":3117.13},{"epoch":26144789,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.01,"free":3117.11},{"epoch":26144790,"idl":99.75,"recv":0.02,"send":0.65,"writ":0.5,"used":554.14,"free":3117},{"epoch":26144791,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":554.42,"free":3116.71},{"epoch":26144792,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":554.04,"free":3117.08},{"epoch":26144793,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.02,"free":3117.09},{"epoch":26144794,"idl":99.77,"recv":0.02,"send":0.04,"writ":0.39,"used":554.88,"free":3116.2},{"epoch":26144795,"idl":99.73,"recv":0,"send":0,"writ":0.38,"used":559.28,"free":3111.72},{"epoch":26144796,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":559.76,"free":3111.24},{"epoch":26144797,"idl":99.85,"recv":0,"send":0,"writ":0.23,"used":559.5,"free":3111.49},{"epoch":26144798,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":559.48,"free":3111.5},{"epoch":26144799,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":559.31,"free":3111.66},{"epoch":26144800,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":559.2,"free":3111.78},{"epoch":26144801,"idl":99.69,"recv":0,"send":0,"writ":0.48,"used":560,"free":3110.97},{"epoch":26144802,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":559.37,"free":3111.61},{"epoch":26144803,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":559.34,"free":3111.62},{"epoch":26144804,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":559.32,"free":3111.64},{"epoch":26144805,"idl":99.76,"recv":0,"send":0.02,"writ":0.33,"used":558.35,"free":3112.63},{"epoch":26144806,"idl":99.67,"recv":0,"send":0.01,"writ":0.42,"used":559.01,"free":3111.96},{"epoch":26144807,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":559.24,"free":3111.73},{"epoch":26144808,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":559.15,"free":3111.82},{"epoch":26144809,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":559.11,"free":3111.85},{"epoch":26144810,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":557.93,"free":3113.04},{"epoch":26144811,"idl":99.71,"recv":0,"send":0,"writ":0.28,"used":558.23,"free":3112.75},{"epoch":26144812,"idl":99.82,"recv":0,"send":0,"writ":0.41,"used":558.82,"free":3112.14},{"epoch":26144813,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":558.8,"free":3112.17},{"epoch":26144814,"idl":98.87,"recv":0,"send":0,"writ":0.15,"used":558.77,"free":3112.19},{"epoch":26144815,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":559.5,"free":3111.47},{"epoch":26144816,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":559.65,"free":3111.32},{"epoch":26144817,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":559.99,"free":3110.98},{"epoch":26144818,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":559.6,"free":3111.36},{"epoch":26144819,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":559.57,"free":3111.38},{"epoch":26144820,"idl":99.72,"recv":0,"send":0,"writ":0.31,"used":559.09,"free":3111.89},{"epoch":26144821,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":559.06,"free":3111.91},{"epoch":26144822,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":559.78,"free":3111.18},{"epoch":26144823,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":559.49,"free":3111.47},{"epoch":26144824,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":559.51,"free":3111.44},{"epoch":26144825,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":559.44,"free":3111.53},{"epoch":26144826,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":559.4,"free":3111.57},{"epoch":26144827,"idl":99.66,"recv":0,"send":0,"writ":0.59,"used":559.91,"free":3111.05},{"epoch":26144828,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":559.6,"free":3111.36},{"epoch":26144829,"idl":99.7,"recv":0,"send":0,"writ":0.39,"used":559.38,"free":3111.55},{"epoch":26144830,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":559.58,"free":3111.37},{"epoch":26144831,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":559.55,"free":3111.4},{"epoch":26144832,"idl":99.72,"recv":0,"send":0,"writ":0.43,"used":560.19,"free":3110.76},{"epoch":26144833,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":559.51,"free":3111.43},{"epoch":26144834,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":559.65,"free":3111.3},{"epoch":26144835,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":558.77,"free":3112.2},{"epoch":26144836,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":558.65,"free":3112.3},{"epoch":26144837,"idl":99.65,"recv":0,"send":0,"writ":0.52,"used":559.31,"free":3111.64},{"epoch":26144838,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":559.59,"free":3111.36},{"epoch":26144839,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":559.56,"free":3111.38},{"epoch":26144840,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":559.31,"free":3111.65},{"epoch":26144841,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":559.27,"free":3111.69},{"epoch":26144842,"idl":99.69,"recv":0,"send":0,"writ":0.41,"used":559.65,"free":3111.31},{"epoch":26144843,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":559.41,"free":3111.54},{"epoch":26144844,"idl":99.7,"recv":0,"send":0,"writ":0.16,"used":559.38,"free":3111.57},{"epoch":26144845,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":559.15,"free":3111.82},{"epoch":26144846,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":559.11,"free":3111.85},{"epoch":26144847,"idl":95,"recv":0.37,"send":0.01,"writ":77.82,"used":570.99,"free":3100.02},{"epoch":26144848,"idl":99.68,"recv":0,"send":0,"writ":182.14,"used":561.9,"free":3108.88},{"epoch":26144849,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":562.03,"free":3108.75},{"epoch":26144850,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":562.02,"free":3108.78},{"epoch":26144851,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":561.99,"free":3108.8},{"epoch":26144852,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":561.97,"free":3108.82},{"epoch":26144853,"idl":99.7,"recv":0,"send":0,"writ":0.61,"used":559.9,"free":3110.96},{"epoch":26144854,"idl":99.78,"recv":0,"send":0,"writ":0.17,"used":559.5,"free":3111.35},{"epoch":26144855,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":559.74,"free":3111.13},{"epoch":26144856,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":559.77,"free":3111.1},{"epoch":26144857,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":559.88,"free":3110.98},{"epoch":26144858,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":560.32,"free":3110.55},{"epoch":26144859,"idl":99.78,"recv":0,"send":0.01,"writ":0.3,"used":560.06,"free":3110.79},{"epoch":26144860,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":559.81,"free":3111.06},{"epoch":26144861,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":559.78,"free":3111.08},{"epoch":26144862,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":559.75,"free":3111.11},{"epoch":26144863,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":560.07,"free":3110.79},{"epoch":26144864,"idl":99.78,"recv":0.01,"send":0.05,"writ":0.2,"used":560.13,"free":3110.67},{"epoch":26144865,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":561.74,"free":3109.05},{"epoch":26144866,"idl":99.84,"recv":0,"send":0.01,"writ":0.16,"used":561.74,"free":3109.06},{"epoch":26144867,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":561.68,"free":3109.11},{"epoch":26144868,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":562.61,"free":3108.18},{"epoch":26144869,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":562.58,"free":3108.21},{"epoch":26144870,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":562.33,"free":3108.46},{"epoch":26144871,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":562.3,"free":3108.5},{"epoch":26144872,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":562.29,"free":3108.5},{"epoch":26144873,"idl":99.68,"recv":0,"send":0,"writ":0.5,"used":562.73,"free":3108.05},{"epoch":26144874,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":562.49,"free":3108.29},{"epoch":26144875,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":561.27,"free":3109.52},{"epoch":26144876,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":561.23,"free":3109.56},{"epoch":26144877,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":561.22,"free":3109.56},{"epoch":26144878,"idl":99.69,"recv":0,"send":0,"writ":0.59,"used":561.97,"free":3108.81},{"epoch":26144879,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":562.09,"free":3108.68},{"epoch":26144880,"idl":99.71,"recv":0,"send":0,"writ":0.32,"used":562.92,"free":3107.87},{"epoch":26144881,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":562.82,"free":3107.97},{"epoch":26144882,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":562.81,"free":3107.98},{"epoch":26144883,"idl":99.65,"recv":0,"send":0,"writ":0.49,"used":563.2,"free":3107.58},{"epoch":26144884,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":561.78,"free":3108.99},{"epoch":26144885,"idl":99.77,"recv":0,"send":0.01,"writ":0.33,"used":562.46,"free":3108.33},{"epoch":26144886,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":562,"free":3108.79},{"epoch":26144887,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":561.71,"free":3109.08},{"epoch":26144888,"idl":99.82,"recv":0,"send":0,"writ":0.22,"used":563.17,"free":3107.53},{"epoch":26144889,"idl":99.56,"recv":0,"send":0,"writ":0.7,"used":565.34,"free":3105.31},{"epoch":26144890,"idl":99.7,"recv":0,"send":0,"writ":0.38,"used":564.31,"free":3106.35},{"epoch":26144891,"idl":99.84,"recv":0,"send":0,"writ":0.22,"used":564.27,"free":3106.39},{"epoch":26144892,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":564.25,"free":3106.41},{"epoch":26144893,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":564.24,"free":3106.41},{"epoch":26144894,"idl":99.62,"recv":0.01,"send":0.04,"writ":0.55,"used":566.33,"free":3104.33},{"epoch":26144895,"idl":99.78,"recv":0,"send":0,"writ":0.37,"used":569.82,"free":3100.71},{"epoch":26144896,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":566.52,"free":3104.11},{"epoch":26144897,"idl":99.78,"recv":0.02,"send":0.03,"writ":0.64,"used":566.07,"free":3104.5},{"epoch":26144898,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":566.04,"free":3104.5},{"epoch":26144899,"idl":99.68,"recv":0.01,"send":0,"writ":0.79,"used":566.22,"free":3104.32},{"epoch":26144900,"idl":99.66,"recv":0.01,"send":0.01,"writ":0.4,"used":565.26,"free":3105.25},{"epoch":26144901,"idl":93.89,"recv":0.43,"send":0.14,"writ":68.2,"used":579.13,"free":3090.61},{"epoch":26144902,"idl":98.73,"recv":2.31,"send":0.13,"writ":195.69,"used":578.99,"free":3091.02},{"epoch":26144903,"idl":99.83,"recv":0,"send":0.03,"writ":0.18,"used":577.59,"free":3092.39},{"epoch":26144904,"idl":99.68,"recv":0.06,"send":0,"writ":0.66,"used":579.7,"free":3090.29},{"epoch":26144905,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":579.85,"free":3090.17},{"epoch":26144906,"idl":99.83,"recv":0.02,"send":0,"writ":0.25,"used":579.67,"free":3090.35},{"epoch":26144907,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":577.72,"free":3092.31},{"epoch":26144908,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":577.64,"free":3092.38},{"epoch":26144909,"idl":99.68,"recv":0.01,"send":0.01,"writ":0.64,"used":577.79,"free":3092.24},{"epoch":26144910,"idl":99.73,"recv":0,"send":0,"writ":0.38,"used":577.43,"free":3092.61},{"epoch":26144911,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":577.47,"free":3092.57},{"epoch":26144912,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":577.43,"free":3092.61},{"epoch":26144913,"idl":99.8,"recv":0.01,"send":0.03,"writ":0.2,"used":577.36,"free":3092.67},{"epoch":26144914,"idl":99.61,"recv":0,"send":0,"writ":0.63,"used":577.72,"free":3092.3},{"epoch":26144915,"idl":99.74,"recv":0,"send":0,"writ":0.45,"used":577.76,"free":3092.27},{"epoch":26144916,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":577.62,"free":3092.41},{"epoch":26144917,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":577.58,"free":3092.45},{"epoch":26144918,"idl":99.84,"recv":0.01,"send":0,"writ":0.22,"used":577.92,"free":3092.1},{"epoch":26144919,"idl":99.57,"recv":0.01,"send":0,"writ":0.61,"used":577.99,"free":3092.03},{"epoch":26144920,"idl":99.7,"recv":0,"send":0,"writ":0.48,"used":577.64,"free":3092.4},{"epoch":26144921,"idl":99.88,"recv":0.01,"send":0,"writ":0.16,"used":577.59,"free":3092.44},{"epoch":26144922,"idl":99.9,"recv":0.01,"send":0,"writ":0.21,"used":577.66,"free":3092.36},{"epoch":26144923,"idl":99.86,"recv":0.05,"send":3.1,"writ":0.32,"used":577.66,"free":3092.35},{"epoch":26144924,"idl":99.69,"recv":0.01,"send":0.61,"writ":0.74,"used":578.08,"free":3091.9},{"epoch":26144925,"idl":99.81,"recv":0.01,"send":0.16,"writ":0.57,"used":577.6,"free":3092.4},{"epoch":26144926,"idl":96.01,"recv":0.02,"send":0.07,"writ":2.23,"used":591.48,"free":3078.48},{"epoch":26144927,"idl":88.76,"recv":0.03,"send":0.02,"writ":0.78,"used":622.08,"free":3047.87},{"epoch":26144928,"idl":95.64,"recv":0.01,"send":0.01,"writ":0.5,"used":592.89,"free":3077.06},{"epoch":26144929,"idl":89.06,"recv":0.01,"send":0.01,"writ":0.8,"used":615.25,"free":3054.69},{"epoch":26144930,"idl":81.3,"recv":0.04,"send":0.93,"writ":3.13,"used":744.76,"free":2925.22},{"epoch":26144931,"idl":81.52,"recv":0.04,"send":0.04,"writ":2.11,"used":992.46,"free":2677.58},{"epoch":26144932,"idl":99.71,"recv":0,"send":0,"writ":0.17,"used":699.11,"free":2970.96},{"epoch":26144933,"idl":80.86,"recv":0.02,"send":0.05,"writ":3.48,"used":756.02,"free":2913.95},{"epoch":26144934,"idl":99.84,"recv":0.03,"send":0.05,"writ":0.21,"used":578.08,"free":3091.85},{"epoch":26144935,"idl":99.7,"recv":0,"send":0,"writ":0.84,"used":579.03,"free":3090.9},{"epoch":26144936,"idl":99.73,"recv":0,"send":0,"writ":0.17,"used":578.52,"free":3091.42},{"epoch":26144937,"idl":99.92,"recv":0.06,"send":0,"writ":0.26,"used":578.58,"free":3091.36},{"epoch":26144938,"idl":81.53,"recv":0.01,"send":0.03,"writ":4.28,"used":981.34,"free":2688.51},{"epoch":26144939,"idl":81.91,"recv":0.02,"send":0.54,"writ":4.43,"used":1042.86,"free":2626.96},{"epoch":26144940,"idl":98.94,"recv":0,"send":0,"writ":9.52,"used":709.24,"free":2960.7},{"epoch":26144941,"idl":98.35,"recv":0.7,"send":0.05,"writ":1.13,"used":598.67,"free":3070.08},{"epoch":26144942,"idl":79.44,"recv":0.05,"send":0.07,"writ":8.62,"used":890.84,"free":2776.01},{"epoch":26144943,"idl":99.72,"recv":0.01,"send":0.49,"writ":0.31,"used":890.25,"free":2776.59},{"epoch":26144944,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":622.03,"free":3044.81},{"epoch":26144945,"idl":99.69,"recv":0,"send":0,"writ":0.75,"used":623.91,"free":3042.94},{"epoch":26144946,"idl":78.06,"recv":0.06,"send":1.72,"writ":4.53,"used":897.47,"free":2769.31},{"epoch":26144947,"idl":99.75,"recv":0,"send":0,"writ":0.15,"used":985.89,"free":2680.89},{"epoch":26144948,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":623.62,"free":3043.17},{"epoch":26144949,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":625.34,"free":3041.38},{"epoch":26144950,"idl":99.71,"recv":0,"send":0,"writ":0.63,"used":625.76,"free":3040.98},{"epoch":26144951,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":625.05,"free":3041.68},{"epoch":26144952,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":625.07,"free":3041.67},{"epoch":26144953,"idl":99.91,"recv":0,"send":0.01,"writ":0.22,"used":625.13,"free":3041.6},{"epoch":26144954,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":625.09,"free":3041.63},{"epoch":26144955,"idl":99.7,"recv":0,"send":0,"writ":0.66,"used":625.68,"free":3041.06},{"epoch":26144956,"idl":99.91,"recv":0,"send":0,"writ":0.31,"used":625.29,"free":3041.45},{"epoch":26144957,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":625.36,"free":3041.38},{"epoch":26144958,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":625.4,"free":3041.35},{"epoch":26144959,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":625.37,"free":3041.38},{"epoch":26144960,"idl":99.65,"recv":0,"send":0,"writ":0.69,"used":626.22,"free":3040.54},{"epoch":26144961,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.29,"used":625.57,"free":3041.19},{"epoch":26144962,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":625.51,"free":3041.25},{"epoch":26144963,"idl":88.13,"recv":0.02,"send":0.01,"writ":0.68,"used":691.71,"free":2975.01},{"epoch":26144964,"idl":88.86,"recv":0.01,"send":0.52,"writ":3.84,"used":1069.41,"free":2597.31},{"epoch":26144965,"idl":99.55,"recv":0.02,"send":0,"writ":0.7,"used":651.64,"free":3015.11},{"epoch":26144966,"idl":99.88,"recv":0.01,"send":0.98,"writ":0.43,"used":623.66,"free":3043.08},{"epoch":26144967,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":623.66,"free":3043.08},{"epoch":26144968,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":623.62,"free":3043.11},{"epoch":26144969,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":623.59,"free":3043.14},{"epoch":26144970,"idl":99.74,"recv":0.02,"send":0.08,"writ":0.37,"used":623.14,"free":3043.61},{"epoch":26144971,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":624.14,"free":3042.61},{"epoch":26144972,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":623.82,"free":3042.93},{"epoch":26144973,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":623.78,"free":3042.96},{"epoch":26144974,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":623.8,"free":3042.93},{"epoch":26144975,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":624.18,"free":3042.58},{"epoch":26144976,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":624.5,"free":3042.25},{"epoch":26144977,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":624.12,"free":3042.63},{"epoch":26144978,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":624.08,"free":3042.66},{"epoch":26144979,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":624.53,"free":3042.19},{"epoch":26144980,"idl":77.28,"recv":0.04,"send":0.52,"writ":4.44,"used":1020.72,"free":2645.97},{"epoch":26144981,"idl":99.56,"recv":0,"send":0,"writ":0.56,"used":785.05,"free":2881.68},{"epoch":26144982,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":625.74,"free":3040.99},{"epoch":26144983,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":625.82,"free":3040.91},{"epoch":26144984,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":625.86,"free":3040.87},{"epoch":26144985,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":626.08,"free":3040.65},{"epoch":26144986,"idl":99.8,"recv":0,"send":0.01,"writ":0.53,"used":626.6,"free":3040.13},{"epoch":26144987,"idl":99.8,"recv":0,"send":0,"writ":0.25,"used":626.32,"free":3040.4},{"epoch":26144988,"idl":99.71,"recv":0.01,"send":0.04,"writ":0.15,"used":626.22,"free":3040.49},{"epoch":26144989,"idl":99.91,"recv":0,"send":0.03,"writ":0.15,"used":626.29,"free":3040.42},{"epoch":26144990,"idl":99.81,"recv":0.01,"send":0,"writ":0.32,"used":626.5,"free":3040.22},{"epoch":26144991,"idl":95.31,"recv":0.01,"send":0,"writ":0.73,"used":638.51,"free":3028.22},{"epoch":26144992,"idl":81.98,"recv":0.01,"send":0.06,"writ":4.14,"used":1088.88,"free":2577.79},{"epoch":26144993,"idl":90.64,"recv":0.01,"send":0,"writ":0.48,"used":735.38,"free":2931.32},{"epoch":26144994,"idl":86.53,"recv":0.01,"send":0.16,"writ":3.98,"used":1073.87,"free":2592.79},{"epoch":26144995,"idl":79.11,"recv":0.03,"send":0.17,"writ":4.25,"used":898.47,"free":2768.21},{"epoch":26144996,"idl":99.64,"recv":0.02,"send":0.01,"writ":0.9,"used":1022.89,"free":2643.85},{"epoch":26144997,"idl":71.34,"recv":0.02,"send":0.31,"writ":4.22,"used":779.24,"free":2887.53},{"epoch":26144998,"idl":82.22,"recv":0.01,"send":0.01,"writ":1.41,"used":1030.99,"free":2635.74},{"epoch":26144999,"idl":94.69,"recv":0.02,"send":0.9,"writ":3.72,"used":1023.91,"free":2642.86},{"epoch":26145000,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":622.89,"free":3043.89},{"epoch":26145001,"idl":77.12,"recv":0.03,"send":0.53,"writ":4.23,"used":840.1,"free":2826.63},{"epoch":26145002,"idl":99.71,"recv":0.02,"send":0,"writ":0.71,"used":947.61,"free":2719.15},{"epoch":26145003,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":623.98,"free":3042.78},{"epoch":26145004,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":620.66,"free":3046.21},{"epoch":26145005,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":621.04,"free":3045.86},{"epoch":26145006,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":621.01,"free":3045.88},{"epoch":26145007,"idl":99.77,"recv":0,"send":0,"writ":0.53,"used":621.33,"free":3045.56},{"epoch":26145008,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":620.94,"free":3045.95},{"epoch":26145009,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":620.88,"free":3046.01},{"epoch":26145010,"idl":99.83,"recv":0,"send":0,"writ":0.25,"used":620.64,"free":3046.28},{"epoch":26145011,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":620.77,"free":3046.14},{"epoch":26145012,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":621.58,"free":3045.33},{"epoch":26145013,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":621.24,"free":3045.66},{"epoch":26145014,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":621.22,"free":3045.68},{"epoch":26145015,"idl":99.86,"recv":0,"send":0,"writ":0.26,"used":621.45,"free":3045.47},{"epoch":26145016,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":621.42,"free":3045.49},{"epoch":26145017,"idl":99.77,"recv":0,"send":0,"writ":0.66,"used":621.74,"free":3045.16},{"epoch":26145018,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":621.51,"free":3045.39},{"epoch":26145019,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":620.93,"free":3045.96},{"epoch":26145020,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":620.75,"free":3046.16},{"epoch":26145021,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.16,"used":620.72,"free":3046.19},{"epoch":26145022,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":621.52,"free":3045.38},{"epoch":26145023,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":620.89,"free":3046},{"epoch":26145024,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":620.98,"free":3045.91},{"epoch":26145025,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":621.04,"free":3045.87},{"epoch":26145026,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":621,"free":3045.91},{"epoch":26145027,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":621.69,"free":3045.21},{"epoch":26145028,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":621.42,"free":3045.48},{"epoch":26145029,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":621.39,"free":3045.51},{"epoch":26145030,"idl":99.88,"recv":0,"send":0,"writ":0.26,"used":621.39,"free":3045.52},{"epoch":26145031,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":621.48,"free":3045.43},{"epoch":26145032,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":622.01,"free":3044.89},{"epoch":26145033,"idl":99.92,"recv":0,"send":0,"writ":0.34,"used":621.48,"free":3045.42},{"epoch":26145034,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":621.45,"free":3045.45},{"epoch":26145035,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":620.47,"free":3046.44},{"epoch":26145036,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":620.29,"free":3046.61},{"epoch":26145037,"idl":99.75,"recv":0,"send":0,"writ":0.38,"used":620.09,"free":3046.81},{"epoch":26145038,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":620.53,"free":3046.36},{"epoch":26145039,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":621.01,"free":3045.86},{"epoch":26145040,"idl":99.83,"recv":0,"send":0,"writ":0.26,"used":620.78,"free":3046.11},{"epoch":26145041,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":620.66,"free":3046.22},{"epoch":26145042,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":619.68,"free":3047.19},{"epoch":26145043,"idl":99.76,"recv":0,"send":0,"writ":0.6,"used":620.86,"free":3046.02},{"epoch":26145044,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":620.71,"free":3046.16},{"epoch":26145045,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":619.83,"free":3047.06},{"epoch":26145046,"idl":99.92,"recv":0,"send":0.01,"writ":0.18,"used":619.77,"free":3047.11},{"epoch":26145047,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":619.73,"free":3047.14},{"epoch":26145048,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":620.26,"free":3046.61},{"epoch":26145049,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":619.9,"free":3046.96},{"epoch":26145050,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":619.66,"free":3047.22},{"epoch":26145051,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":619.73,"free":3047.15},{"epoch":26145052,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":619.77,"free":3047.1},{"epoch":26145053,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":621.3,"free":3045.57},{"epoch":26145054,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":620.94,"free":3045.93},{"epoch":26145055,"idl":99.85,"recv":0,"send":0,"writ":0.25,"used":620.6,"free":3046.28},{"epoch":26145056,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":620.16,"free":3046.72},{"epoch":26145057,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":620.13,"free":3046.75},{"epoch":26145058,"idl":99.73,"recv":0,"send":0,"writ":0.61,"used":620.97,"free":3045.9},{"epoch":26145059,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":620.77,"free":3046.1},{"epoch":26145060,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":620.53,"free":3046.35},{"epoch":26145061,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":620.48,"free":3046.39},{"epoch":26145062,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":620.45,"free":3046.42},{"epoch":26145063,"idl":99.77,"recv":0,"send":0,"writ":0.42,"used":620.85,"free":3046.01},{"epoch":26145064,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":620.63,"free":3046.23},{"epoch":26145065,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":620.75,"free":3046.13},{"epoch":26145066,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":620.78,"free":3046.1},{"epoch":26145067,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":620.74,"free":3046.13},{"epoch":26145068,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":621.11,"free":3045.76},{"epoch":26145069,"idl":99.83,"recv":0,"send":0,"writ":0.45,"used":621.4,"free":3045.44},{"epoch":26145070,"idl":99.83,"recv":0,"send":0.01,"writ":0.28,"used":621.15,"free":3045.71},{"epoch":26145071,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":621.22,"free":3045.64},{"epoch":26145072,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":621.07,"free":3045.78},{"epoch":26145073,"idl":99.77,"recv":0,"send":0,"writ":0.42,"used":621.38,"free":3045.46},{"epoch":26145074,"idl":99.93,"recv":0,"send":0,"writ":0.27,"used":620.4,"free":3046.44},{"epoch":26145075,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":620.44,"free":3046.42},{"epoch":26145076,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":620.4,"free":3046.45},{"epoch":26145077,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":620.37,"free":3046.48},{"epoch":26145078,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":620.88,"free":3045.97},{"epoch":26145079,"idl":99.86,"recv":0,"send":0,"writ":0.39,"used":620.5,"free":3046.34},{"epoch":26145080,"idl":99.85,"recv":0,"send":0,"writ":0.25,"used":620.74,"free":3046.13},{"epoch":26145081,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.16,"used":620.7,"free":3046.17},{"epoch":26145082,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":620.67,"free":3046.2},{"epoch":26145083,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":620.64,"free":3046.22},{"epoch":26145084,"idl":99.75,"recv":0,"send":0,"writ":0.53,"used":620.57,"free":3046.29},{"epoch":26145085,"idl":99.76,"recv":0,"send":0,"writ":0.26,"used":621.05,"free":3045.83},{"epoch":26145086,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":620.99,"free":3045.88},{"epoch":26145087,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":620.96,"free":3045.91},{"epoch":26145088,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":620.92,"free":3045.95},{"epoch":26145089,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":621.49,"free":3045.37},{"epoch":26145090,"idl":99.82,"recv":0,"send":0,"writ":0.25,"used":621.37,"free":3045.51},{"epoch":26145091,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":621.46,"free":3045.41},{"epoch":26145092,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":621.49,"free":3045.38},{"epoch":26145093,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":620.48,"free":3046.39},{"epoch":26145094,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":620.92,"free":3045.94},{"epoch":26145095,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":619.49,"free":3047.39},{"epoch":26145096,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":619.42,"free":3047.45},{"epoch":26145097,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":619.39,"free":3047.48},{"epoch":26145098,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":619.47,"free":3047.39},{"epoch":26145099,"idl":99.68,"recv":0,"send":0,"writ":0.68,"used":621.18,"free":3045.66},{"epoch":26145100,"idl":99.87,"recv":0,"send":0.01,"writ":0.25,"used":620.47,"free":3046.38},{"epoch":26145101,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":620.42,"free":3046.43},{"epoch":26145102,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":620.39,"free":3046.46},{"epoch":26145103,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":620.36,"free":3046.49},{"epoch":26145104,"idl":99.72,"recv":0,"send":0,"writ":0.5,"used":621.06,"free":3045.78},{"epoch":26145105,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":620.78,"free":3046.07},{"epoch":26145106,"idl":99.9,"recv":0,"send":0.01,"writ":0.14,"used":620.74,"free":3046.11},{"epoch":26145107,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":620.54,"free":3046.31},{"epoch":26145108,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":620.42,"free":3046.42},{"epoch":26145109,"idl":99.79,"recv":0,"send":0,"writ":0.45,"used":620.83,"free":3046.01},{"epoch":26145110,"idl":99.87,"recv":0,"send":0,"writ":0.43,"used":621.37,"free":3045.48},{"epoch":26145111,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":621.5,"free":3045.35},{"epoch":26145112,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":620.89,"free":3045.95},{"epoch":26145113,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":620.48,"free":3046.36},{"epoch":26145114,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":620.44,"free":3046.39},{"epoch":26145115,"idl":99.73,"recv":0,"send":0,"writ":0.64,"used":620.18,"free":3046.67},{"epoch":26145116,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":619.6,"free":3047.25},{"epoch":26145117,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":619.71,"free":3047.13},{"epoch":26145118,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":619.77,"free":3047.07},{"epoch":26145119,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":619.74,"free":3047.1},{"epoch":26145120,"idl":99.48,"recv":0,"send":0,"writ":0.67,"used":620.44,"free":3046.41},{"epoch":26145121,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":619.7,"free":3047.14},{"epoch":26145122,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":619.66,"free":3047.18},{"epoch":26145123,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":619.63,"free":3047.21},{"epoch":26145124,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":619.78,"free":3047.05},{"epoch":26145125,"idl":99.66,"recv":0,"send":0,"writ":0.71,"used":621.85,"free":3045},{"epoch":26145126,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":621.44,"free":3045.4},{"epoch":26145127,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":621.41,"free":3045.44},{"epoch":26145128,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":621.37,"free":3045.47},{"epoch":26145129,"idl":99.67,"recv":0,"send":0,"writ":0.29,"used":621.37,"free":3045.46},{"epoch":26145130,"idl":99.71,"recv":0,"send":0,"writ":0.66,"used":622.2,"free":3044.65},{"epoch":26145131,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":621.74,"free":3045.12},{"epoch":26145132,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":621.29,"free":3045.57},{"epoch":26145133,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":620.69,"free":3046.16},{"epoch":26145134,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":620.66,"free":3046.2},{"epoch":26145135,"idl":99.61,"recv":0,"send":0,"writ":0.67,"used":620.85,"free":3046.03},{"epoch":26145136,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":620.68,"free":3046.19},{"epoch":26145137,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":620.52,"free":3046.35},{"epoch":26145138,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":620.49,"free":3046.38},{"epoch":26145139,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":620.45,"free":3046.41},{"epoch":26145140,"idl":99.7,"recv":0,"send":0,"writ":0.68,"used":621.03,"free":3045.85},{"epoch":26145141,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.16,"used":621.14,"free":3045.74},{"epoch":26145142,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":621.1,"free":3045.77},{"epoch":26145143,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":621.2,"free":3045.67},{"epoch":26145144,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":621.22,"free":3045.64},{"epoch":26145145,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":622.09,"free":3044.79},{"epoch":26145146,"idl":99.92,"recv":0,"send":0,"writ":0.32,"used":621.19,"free":3045.69},{"epoch":26145147,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":621.15,"free":3045.72},{"epoch":26145148,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":621.12,"free":3045.75},{"epoch":26145149,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":621.09,"free":3045.78},{"epoch":26145150,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":621.72,"free":3045.16},{"epoch":26145151,"idl":99.75,"recv":0,"send":0,"writ":0.62,"used":621.88,"free":3044.99},{"epoch":26145152,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":621.32,"free":3045.55},{"epoch":26145153,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":620.47,"free":3046.4},{"epoch":26145154,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":620.43,"free":3046.43},{"epoch":26145155,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":621.15,"free":3045.73},{"epoch":26145156,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":621.48,"free":3045.39},{"epoch":26145157,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":621.22,"free":3045.65},{"epoch":26145158,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":621.25,"free":3045.61},{"epoch":26145159,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":621.21,"free":3045.62},{"epoch":26145160,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":621.45,"free":3045.4},{"epoch":26145161,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":620.98,"free":3045.87},{"epoch":26145162,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":620.4,"free":3046.44},{"epoch":26145163,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":620.37,"free":3046.47},{"epoch":26145164,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":620.46,"free":3046.38},{"epoch":26145165,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":621.24,"free":3045.61},{"epoch":26145166,"idl":99.75,"recv":0,"send":0.01,"writ":0.56,"used":621.88,"free":3044.97},{"epoch":26145167,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":621.52,"free":3045.32},{"epoch":26145168,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":621.39,"free":3045.45},{"epoch":26145169,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":621.36,"free":3045.48},{"epoch":26145170,"idl":99.84,"recv":0,"send":0,"writ":0.26,"used":621.59,"free":3045.26},{"epoch":26145171,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":622.52,"free":3044.34},{"epoch":26145172,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":621.97,"free":3044.89},{"epoch":26145173,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":621.15,"free":3045.7},{"epoch":26145174,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":620.92,"free":3045.93},{"epoch":26145175,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":621,"free":3045.87},{"epoch":26145176,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":621.23,"free":3045.63},{"epoch":26145177,"idl":98.2,"recv":0,"send":0,"writ":0.31,"used":620.84,"free":3046.01},{"epoch":26145178,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":620.97,"free":3045.88},{"epoch":26145179,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":620.97,"free":3045.88},{"epoch":26145180,"idl":99.81,"recv":0,"send":0,"writ":0.25,"used":620.73,"free":3046.13},{"epoch":26145181,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":621.25,"free":3045.61},{"epoch":26145182,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":621.4,"free":3045.46},{"epoch":26145183,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":621.36,"free":3045.49},{"epoch":26145184,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":621.33,"free":3045.52},{"epoch":26145185,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":620.96,"free":3045.9},{"epoch":26145186,"idl":99.79,"recv":0,"send":0.01,"writ":0.47,"used":621.29,"free":3045.57},{"epoch":26145187,"idl":99.93,"recv":0,"send":0,"writ":0.36,"used":620.91,"free":3045.95},{"epoch":26145188,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":620.87,"free":3045.98},{"epoch":26145189,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":621.8,"free":3045.05},{"epoch":26145190,"idl":99.86,"recv":0,"send":0,"writ":0.26,"used":621.45,"free":3045.41},{"epoch":26145191,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":621.48,"free":3045.38},{"epoch":26145192,"idl":99.75,"recv":0,"send":0,"writ":0.53,"used":622.27,"free":3044.59},{"epoch":26145193,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":621.48,"free":3045.38},{"epoch":26145194,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":620.89,"free":3045.97},{"epoch":26145195,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":621.12,"free":3045.75},{"epoch":26145196,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":621.08,"free":3045.78},{"epoch":26145197,"idl":99.67,"recv":0,"send":0,"writ":0.6,"used":621.23,"free":3045.63},{"epoch":26145198,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":620.74,"free":3046.12},{"epoch":26145199,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":620.7,"free":3046.15},{"epoch":26145200,"idl":99.87,"recv":0,"send":0,"writ":0.26,"used":620.93,"free":3045.93},{"epoch":26145201,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.14,"used":620.9,"free":3045.97},{"epoch":26145202,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":621.29,"free":3045.57},{"epoch":26145203,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":620.85,"free":3046.01},{"epoch":26145204,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":620.99,"free":3045.88},{"epoch":26145205,"idl":99.86,"recv":0,"send":0,"writ":0.26,"used":620.5,"free":3046.39},{"epoch":26145206,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":620.46,"free":3046.43},{"epoch":26145207,"idl":99.75,"recv":0,"send":0,"writ":0.61,"used":620.77,"free":3046.1},{"epoch":26145208,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":620.38,"free":3046.49},{"epoch":26145209,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":620.35,"free":3046.51},{"epoch":26145210,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":620.7,"free":3046.18},{"epoch":26145211,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":620.73,"free":3046.15},{"epoch":26145212,"idl":96.33,"recv":0.07,"send":0.01,"writ":77.79,"used":631.36,"free":3037.07},{"epoch":26145213,"idl":99.84,"recv":0,"send":0,"writ":63.86,"used":623.96,"free":3042.97},{"epoch":26145214,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":622.97,"free":3043.96},{"epoch":26145215,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":622.96,"free":3043.98},{"epoch":26145216,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":622.92,"free":3044.02},{"epoch":26145217,"idl":99.71,"recv":0,"send":0,"writ":0.46,"used":622.89,"free":3044.05},{"epoch":26145218,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":620.82,"free":3046.15},{"epoch":26145219,"idl":99.81,"recv":0,"send":0,"writ":0.41,"used":620.64,"free":3046.31},{"epoch":26145220,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":620.85,"free":3046.11},{"epoch":26145221,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":620.81,"free":3046.14},{"epoch":26145222,"idl":99.76,"recv":0,"send":0,"writ":0.44,"used":621.24,"free":3045.71},{"epoch":26145223,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":620.5,"free":3046.44},{"epoch":26145224,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":620.47,"free":3046.47},{"epoch":26145225,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":620.9,"free":3046.06},{"epoch":26145226,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.17,"used":620.87,"free":3046.09},{"epoch":26145227,"idl":99.87,"recv":0,"send":0,"writ":0.43,"used":620.68,"free":3046.26},{"epoch":26145228,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":621.11,"free":3045.83},{"epoch":26145229,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":620.75,"free":3046.18},{"epoch":26145230,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":620.51,"free":3046.43},{"epoch":26145231,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":620.57,"free":3046.37},{"epoch":26145232,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":620.63,"free":3046.31},{"epoch":26145233,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":620.5,"free":3046.45},{"epoch":26145234,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":619.5,"free":3047.46},{"epoch":26145235,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":619.57,"free":3047.41},{"epoch":26145236,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":619.56,"free":3047.41},{"epoch":26145237,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":619.52,"free":3047.44},{"epoch":26145238,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":620.63,"free":3046.33},{"epoch":26145239,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":620.14,"free":3046.81},{"epoch":26145240,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":620.87,"free":3046.11},{"epoch":26145241,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":620.84,"free":3046.13},{"epoch":26145242,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":620.81,"free":3046.15},{"epoch":26145243,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":621.46,"free":3045.51},{"epoch":26145244,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":620.99,"free":3045.97},{"epoch":26145245,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":620.75,"free":3046.23},{"epoch":26145246,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.19,"used":620.79,"free":3046.18},{"epoch":26145247,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":620.77,"free":3046.2},{"epoch":26145248,"idl":99.76,"recv":0,"send":0,"writ":0.46,"used":621.17,"free":3045.79},{"epoch":26145249,"idl":99.83,"recv":0,"send":0,"writ":0.42,"used":621.54,"free":3045.39},{"epoch":26145250,"idl":99.86,"recv":0.01,"send":0.04,"writ":0.34,"used":621.58,"free":3045.37},{"epoch":26145251,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":621.5,"free":3045.44},{"epoch":26145252,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":621.48,"free":3045.46},{"epoch":26145253,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":621.71,"free":3045.23},{"epoch":26145254,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":621.11,"free":3045.84},{"epoch":26145255,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":620.87,"free":3046.09},{"epoch":26145256,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":620.81,"free":3046.15},{"epoch":26145257,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":620.78,"free":3046.18},{"epoch":26145258,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":621.04,"free":3045.91},{"epoch":26145259,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":620.48,"free":3046.47},{"epoch":26145260,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":620,"free":3046.97},{"epoch":26145261,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.14,"used":620.13,"free":3046.83},{"epoch":26145262,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":620.1,"free":3046.86},{"epoch":26145263,"idl":99.73,"recv":0,"send":0,"writ":0.37,"used":620.84,"free":3046.12},{"epoch":26145264,"idl":99.87,"recv":0,"send":0,"writ":0.39,"used":621.03,"free":3045.92},{"epoch":26145265,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":621.26,"free":3045.71},{"epoch":26145266,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":621.23,"free":3045.74},{"epoch":26145267,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":621.3,"free":3045.66},{"epoch":26145268,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":621.35,"free":3045.61},{"epoch":26145269,"idl":99.73,"recv":0,"send":0,"writ":0.61,"used":621.72,"free":3045.23},{"epoch":26145270,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":621.39,"free":3045.58},{"epoch":26145271,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":621.27,"free":3045.69},{"epoch":26145272,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":621.24,"free":3045.72},{"epoch":26145273,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":621.2,"free":3045.75},{"epoch":26145274,"idl":99.74,"recv":0,"send":0.01,"writ":0.57,"used":621.53,"free":3045.42},{"epoch":26145275,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":621.18,"free":3045.78},{"epoch":26145276,"idl":99.95,"recv":0,"send":0,"writ":0.12,"used":620.59,"free":3046.37},{"epoch":26145277,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":620.56,"free":3046.4},{"epoch":26145278,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":620.52,"free":3046.43},{"epoch":26145279,"idl":99.71,"recv":0,"send":0,"writ":0.7,"used":621.29,"free":3045.64},{"epoch":26145280,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":621.07,"free":3045.88},{"epoch":26145281,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":621.11,"free":3045.83},{"epoch":26145282,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":621.09,"free":3045.84},{"epoch":26145283,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":621.06,"free":3045.87},{"epoch":26145284,"idl":99.77,"recv":0,"send":0,"writ":0.53,"used":621.47,"free":3045.45},{"epoch":26145285,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":621.27,"free":3045.68},{"epoch":26145286,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.12,"used":621.23,"free":3045.71},{"epoch":26145287,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":621.32,"free":3045.62},{"epoch":26145288,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":621.35,"free":3045.58},{"epoch":26145289,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":622.04,"free":3044.88},{"epoch":26145290,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":621.3,"free":3045.64},{"epoch":26145291,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":621.26,"free":3045.68},{"epoch":26145292,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":621.23,"free":3045.71},{"epoch":26145293,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":621.2,"free":3045.73},{"epoch":26145294,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":621.74,"free":3045.18},{"epoch":26145295,"idl":99.75,"recv":0,"send":0,"writ":0.48,"used":622.08,"free":3044.86},{"epoch":26145296,"idl":99.85,"recv":0,"send":0.01,"writ":0.19,"used":621.14,"free":3045.8},{"epoch":26145297,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":621.01,"free":3045.92},{"epoch":26145298,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":620.98,"free":3045.95},{"epoch":26145299,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":620.94,"free":3045.98},{"epoch":26145300,"idl":99.59,"recv":0,"send":0,"writ":0.66,"used":621.23,"free":3045.71},{"epoch":26145301,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":620.85,"free":3046.09},{"epoch":26145302,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":620.82,"free":3046.12},{"epoch":26145303,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":620.78,"free":3046.15},{"epoch":26145304,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":620.75,"free":3046.18},{"epoch":26145305,"idl":99.57,"recv":0,"send":0,"writ":0.69,"used":621.37,"free":3045.57},{"epoch":26145306,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":621.04,"free":3045.9},{"epoch":26145307,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":621.09,"free":3045.84},{"epoch":26145308,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":621.04,"free":3045.89},{"epoch":26145309,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":621.48,"free":3045.42},{"epoch":26145310,"idl":99.59,"recv":0,"send":0,"writ":0.67,"used":622.08,"free":3044.84},{"epoch":26145311,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":621.43,"free":3045.48},{"epoch":26145312,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":621.51,"free":3045.4},{"epoch":26145313,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":621.56,"free":3045.35},{"epoch":26145314,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":621.53,"free":3045.37},{"epoch":26145315,"idl":99.57,"recv":0,"send":0,"writ":0.6,"used":622.41,"free":3044.51},{"epoch":26145316,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":621.06,"free":3045.85},{"epoch":26145317,"idl":99.87,"recv":0,"send":0,"writ":0.23,"used":620.71,"free":3046.2},{"epoch":26145318,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":620.68,"free":3046.22},{"epoch":26145319,"idl":98.72,"recv":0,"send":0,"writ":0.16,"used":620.78,"free":3046.12},{"epoch":26145320,"idl":99.56,"recv":0,"send":0,"writ":0.64,"used":621.12,"free":3045.79},{"epoch":26145321,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.2,"used":620.56,"free":3046.35},{"epoch":26145322,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":620.53,"free":3046.38},{"epoch":26145323,"idl":99.83,"recv":0,"send":0.01,"writ":0.15,"used":620.48,"free":3046.42},{"epoch":26145324,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":620.44,"free":3046.45},{"epoch":26145325,"idl":98.49,"recv":0,"send":0,"writ":15.3,"used":622.69,"free":3044.66},{"epoch":26145326,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":621.14,"free":3045.77},{"epoch":26145327,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":621.1,"free":3045.8},{"epoch":26145328,"idl":99.33,"recv":0,"send":0,"writ":0.15,"used":621.72,"free":3045.17},{"epoch":26145329,"idl":99.42,"recv":0,"send":0,"writ":1.14,"used":621.57,"free":3045.32},{"epoch":26145330,"idl":99.59,"recv":0,"send":0,"writ":0.57,"used":621.1,"free":3045.83},{"epoch":26145331,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":621.61,"free":3045.32},{"epoch":26145332,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":621.64,"free":3045.29},{"epoch":26145333,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":621.61,"free":3045.31},{"epoch":26145334,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":621.57,"free":3045.35},{"epoch":26145335,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":621.93,"free":3045.01},{"epoch":26145336,"idl":99.72,"recv":0,"send":0,"writ":0.53,"used":620.57,"free":3046.36},{"epoch":26145337,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":620.02,"free":3046.91},{"epoch":26145338,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":620.14,"free":3046.79},{"epoch":26145339,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":621.62,"free":3045.29},{"epoch":26145340,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":621.38,"free":3045.54},{"epoch":26145341,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":621.89,"free":3045.02},{"epoch":26145342,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":621.56,"free":3045.35},{"epoch":26145343,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":621.52,"free":3045.38},{"epoch":26145344,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":621.49,"free":3045.41},{"epoch":26145345,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":621.37,"free":3045.54},{"epoch":26145346,"idl":99.69,"recv":0.01,"send":0.01,"writ":0.57,"used":621.54,"free":3045.37},{"epoch":26145347,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":621.35,"free":3045.56},{"epoch":26145348,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":621.55,"free":3045.35},{"epoch":26145349,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":621.52,"free":3045.38},{"epoch":26145350,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":621.76,"free":3045.16},{"epoch":26145351,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":622.6,"free":3044.31},{"epoch":26145352,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":621.76,"free":3045.15},{"epoch":26145353,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":621.6,"free":3045.3},{"epoch":26145354,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":621.57,"free":3045.33},{"epoch":26145355,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":621.57,"free":3045.35},{"epoch":26145356,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":621.88,"free":3045.04},{"epoch":26145357,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":620.51,"free":3046.39},{"epoch":26145358,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":620.6,"free":3046.31},{"epoch":26145359,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":620.64,"free":3046.26},{"epoch":26145360,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":620.87,"free":3046.04},{"epoch":26145361,"idl":99.68,"recv":0,"send":0,"writ":0.39,"used":621.06,"free":3045.85},{"epoch":26145362,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":620.56,"free":3046.34},{"epoch":26145363,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":620.53,"free":3046.37},{"epoch":26145364,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":620.5,"free":3046.4},{"epoch":26145365,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":621.1,"free":3045.82},{"epoch":26145366,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":621.59,"free":3045.32},{"epoch":26145367,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":620.16,"free":3046.75},{"epoch":26145368,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":620.12,"free":3046.78},{"epoch":26145369,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":620.61,"free":3046.28},{"epoch":26145370,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":621.33,"free":3045.58},{"epoch":26145371,"idl":99.72,"recv":0,"send":0,"writ":0.42,"used":621.64,"free":3045.26},{"epoch":26145372,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":621.6,"free":3045.3},{"epoch":26145373,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":621.64,"free":3045.26},{"epoch":26145374,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":621.61,"free":3045.3},{"epoch":26145375,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":621.12,"free":3045.81},{"epoch":26145376,"idl":99.68,"recv":0,"send":0,"writ":0.5,"used":621.49,"free":3045.44},{"epoch":26145377,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":620.93,"free":3045.99},{"epoch":26145378,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":620.53,"free":3046.38},{"epoch":26145379,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":620.65,"free":3046.26},{"epoch":26145380,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":620.88,"free":3046.05},{"epoch":26145381,"idl":99.81,"recv":0.01,"send":0.01,"writ":0.15,"used":620.85,"free":3046.07},{"epoch":26145382,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":621.4,"free":3045.51},{"epoch":26145383,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":621.02,"free":3045.89},{"epoch":26145384,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":620.99,"free":3045.92},{"epoch":26145385,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":621.16,"free":3045.76},{"epoch":26145386,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":621.14,"free":3045.78},{"epoch":26145387,"idl":99.71,"recv":0,"send":0,"writ":0.6,"used":621.23,"free":3045.69},{"epoch":26145388,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":620.58,"free":3046.33},{"epoch":26145389,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":620.55,"free":3046.38},{"epoch":26145390,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":621.51,"free":3045.44},{"epoch":26145391,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":621.52,"free":3045.42},{"epoch":26145392,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":622,"free":3044.94},{"epoch":26145393,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":621.61,"free":3045.32},{"epoch":26145394,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":621.57,"free":3045.35},{"epoch":26145395,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":621.81,"free":3045.13},{"epoch":26145396,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":621.77,"free":3045.17},{"epoch":26145397,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":621.36,"free":3045.58},{"epoch":26145398,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":620.1,"free":3046.83},{"epoch":26145399,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":620.87,"free":3046.04},{"epoch":26145400,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":621.11,"free":3045.81},{"epoch":26145401,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":621.08,"free":3045.84},{"epoch":26145402,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":621.85,"free":3045.06},{"epoch":26145403,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":621.26,"free":3045.65},{"epoch":26145404,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":621.23,"free":3045.69},{"epoch":26145405,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":620.89,"free":3046.04},{"epoch":26145406,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.14,"used":620.87,"free":3046.06},{"epoch":26145407,"idl":99.69,"recv":0,"send":0,"writ":0.63,"used":621.42,"free":3045.51},{"epoch":26145408,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":621.3,"free":3045.63},{"epoch":26145409,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":621.26,"free":3045.66},{"epoch":26145410,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":621.25,"free":3045.69},{"epoch":26145411,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":621.35,"free":3045.58},{"epoch":26145412,"idl":99.69,"recv":0,"send":0,"writ":0.42,"used":621.74,"free":3045.19},{"epoch":26145413,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":621.11,"free":3045.81},{"epoch":26145414,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":621.07,"free":3045.84},{"epoch":26145415,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":621.85,"free":3045.09},{"epoch":26145416,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":621.78,"free":3045.15},{"epoch":26145417,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":622.09,"free":3044.83},{"epoch":26145418,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":621.17,"free":3045.75},{"epoch":26145419,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":621.13,"free":3045.78},{"epoch":26145420,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":620.88,"free":3046.05},{"epoch":26145421,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":620.84,"free":3046.09},{"epoch":26145422,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":620.8,"free":3046.12},{"epoch":26145423,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":620.95,"free":3045.96},{"epoch":26145424,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":620.27,"free":3046.64},{"epoch":26145425,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":621.37,"free":3045.56},{"epoch":26145426,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":621.37,"free":3045.56},{"epoch":26145427,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":621.33,"free":3045.59},{"epoch":26145428,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":621.64,"free":3045.28},{"epoch":26145429,"idl":99.68,"recv":0,"send":0,"writ":0.31,"used":621.49,"free":3045.4},{"epoch":26145430,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":621.51,"free":3045.39},{"epoch":26145431,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":621.63,"free":3045.27},{"epoch":26145432,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":621.6,"free":3045.3},{"epoch":26145433,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":621.91,"free":3044.98},{"epoch":26145434,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":621.51,"free":3045.37},{"epoch":26145435,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":621.75,"free":3045.16},{"epoch":26145436,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":621.75,"free":3045.16},{"epoch":26145437,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":621.87,"free":3045.03},{"epoch":26145438,"idl":99.72,"recv":0,"send":0,"writ":0.52,"used":622.2,"free":3044.7},{"epoch":26145439,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":621.06,"free":3045.83},{"epoch":26145440,"idl":99.32,"recv":0,"send":0,"writ":0.29,"used":620.33,"free":3046.58},{"epoch":26145441,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.16,"used":620.27,"free":3046.63},{"epoch":26145442,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":620.24,"free":3046.66},{"epoch":26145443,"idl":99.7,"recv":0,"send":0,"writ":0.5,"used":620.98,"free":3045.91},{"epoch":26145444,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":621.09,"free":3045.8},{"epoch":26145445,"idl":99.74,"recv":0,"send":0,"writ":0.35,"used":621.32,"free":3045.57},{"epoch":26145446,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":621.28,"free":3045.61},{"epoch":26145447,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":621.25,"free":3045.64},{"epoch":26145448,"idl":99.71,"recv":0,"send":0,"writ":0.49,"used":621.75,"free":3045.13},{"epoch":26145449,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":621.78,"free":3045.1},{"epoch":26145450,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":620.89,"free":3046.02},{"epoch":26145451,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":620.84,"free":3046.07},{"epoch":26145452,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":620.8,"free":3046.1},{"epoch":26145453,"idl":99.72,"recv":0,"send":0,"writ":0.4,"used":621.4,"free":3045.5},{"epoch":26145454,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":621.97,"free":3044.93},{"epoch":26145455,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":621.28,"free":3045.64},{"epoch":26145456,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":621.33,"free":3045.58},{"epoch":26145457,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":621.37,"free":3045.53},{"epoch":26145458,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":621.86,"free":3045.05},{"epoch":26145459,"idl":99.69,"recv":0,"send":0,"writ":0.46,"used":621.54,"free":3045.33},{"epoch":26145460,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":621.55,"free":3045.34},{"epoch":26145461,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":621.5,"free":3045.39},{"epoch":26145462,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":621.47,"free":3045.41},{"epoch":26145463,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":621.6,"free":3045.28},{"epoch":26145464,"idl":99.7,"recv":0,"send":0,"writ":0.63,"used":621.95,"free":3044.92},{"epoch":26145465,"idl":99.69,"recv":0,"send":0,"writ":0.31,"used":621.11,"free":3045.78},{"epoch":26145466,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.14,"used":621.06,"free":3045.83},{"epoch":26145467,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":621.03,"free":3045.86},{"epoch":26145468,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":620.99,"free":3045.89},{"epoch":26145469,"idl":99.42,"recv":0,"send":0,"writ":0.57,"used":622.06,"free":3044.81},{"epoch":26145470,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":621.87,"free":3045.02},{"epoch":26145471,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":621.83,"free":3045.06},{"epoch":26145472,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":621.79,"free":3045.09},{"epoch":26145473,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":621.76,"free":3045.12},{"epoch":26145474,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":622.58,"free":3044.3},{"epoch":26145475,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":621.97,"free":3044.94},{"epoch":26145476,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":622.06,"free":3044.84},{"epoch":26145477,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":622.09,"free":3044.81},{"epoch":26145478,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":622.06,"free":3044.84},{"epoch":26145479,"idl":99.79,"recv":0,"send":0,"writ":0.39,"used":621.92,"free":3044.97},{"epoch":26145480,"idl":99.87,"recv":0,"send":0,"writ":0.43,"used":621.28,"free":3045.63},{"epoch":26145481,"idl":99.47,"recv":0,"send":0,"writ":0.15,"used":621.25,"free":3045.66},{"epoch":26145482,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":621.24,"free":3045.66},{"epoch":26145483,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":621.36,"free":3045.53},{"epoch":26145484,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":621.55,"free":3045.34},{"epoch":26145485,"idl":99.87,"recv":0,"send":0,"writ":0.35,"used":621.55,"free":3045.36},{"epoch":26145486,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":621.52,"free":3045.38},{"epoch":26145487,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":621.49,"free":3045.41},{"epoch":26145488,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":621.45,"free":3045.44},{"epoch":26145489,"idl":99.72,"recv":0,"send":0,"writ":0.72,"used":622.05,"free":3044.82},{"epoch":26145490,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":622.09,"free":3044.8},{"epoch":26145491,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":622.06,"free":3044.82},{"epoch":26145492,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":622.03,"free":3044.84},{"epoch":26145493,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":622,"free":3044.87},{"epoch":26145494,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":622.41,"free":3044.49},{"epoch":26145495,"idl":99.85,"recv":0,"send":0,"writ":0.45,"used":621.98,"free":3044.94},{"epoch":26145496,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":622.04,"free":3044.88},{"epoch":26145497,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":622.07,"free":3044.84},{"epoch":26145498,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":622.05,"free":3044.86},{"epoch":26145499,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":622.19,"free":3044.71},{"epoch":26145500,"idl":99.82,"recv":0,"send":0,"writ":0.43,"used":621.27,"free":3045.65},{"epoch":26145501,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.16,"used":621.23,"free":3045.68},{"epoch":26145502,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":621.2,"free":3045.71},{"epoch":26145503,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":621.32,"free":3045.59},{"epoch":26145504,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":621.6,"free":3045.3},{"epoch":26145505,"idl":99.85,"recv":0,"send":0,"writ":0.53,"used":620.61,"free":3046.31},{"epoch":26145506,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":620.56,"free":3046.35},{"epoch":26145507,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":620.53,"free":3046.38},{"epoch":26145508,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":620.49,"free":3046.41},{"epoch":26145509,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":620.48,"free":3046.42},{"epoch":26145510,"idl":99.57,"recv":0,"send":0,"writ":0.71,"used":621.77,"free":3045.15},{"epoch":26145511,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":621.35,"free":3045.56},{"epoch":26145512,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":621.32,"free":3045.59},{"epoch":26145513,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":621.28,"free":3045.62},{"epoch":26145514,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":621.24,"free":3045.65},{"epoch":26145515,"idl":99.72,"recv":0,"send":0,"writ":0.68,"used":622,"free":3044.92},{"epoch":26145516,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":621.81,"free":3045.11},{"epoch":26145517,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":621.85,"free":3045.06},{"epoch":26145518,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":621.82,"free":3045.09},{"epoch":26145519,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":621.55,"free":3045.33},{"epoch":26145520,"idl":99.74,"recv":0,"send":0,"writ":0.71,"used":621.42,"free":3045.47},{"epoch":26145521,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":620.99,"free":3045.9},{"epoch":26145522,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":620.96,"free":3045.92},{"epoch":26145523,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":621.05,"free":3045.84},{"epoch":26145524,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":621.09,"free":3045.8},{"epoch":26145525,"idl":99.63,"recv":0,"send":0,"writ":0.81,"used":571.75,"free":3095.58},{"epoch":26145526,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":555.34,"free":3112.26},{"epoch":26145527,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":555.23,"free":3112.36},{"epoch":26145528,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.18,"used":555.12,"free":3112.46},{"epoch":26145529,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":555.19,"free":3112.4},{"epoch":26145530,"idl":99.73,"recv":0,"send":0,"writ":0.7,"used":555.97,"free":3111.64},{"epoch":26145531,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":555.4,"free":3112.2},{"epoch":26145532,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.38,"free":3112.22},{"epoch":26145533,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":555.35,"free":3112.25},{"epoch":26145534,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.34,"free":3112.25},{"epoch":26145535,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":555.9,"free":3111.71},{"epoch":26145536,"idl":99.94,"recv":0,"send":0,"writ":0.31,"used":555.33,"free":3112.28},{"epoch":26145537,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.31,"free":3112.3},{"epoch":26145538,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.29,"free":3112.31},{"epoch":26145539,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.26,"free":3112.33},{"epoch":26145540,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":554.75,"free":3112.87},{"epoch":26145541,"idl":98.66,"recv":0,"send":0,"writ":0.28,"used":554.45,"free":3113.16},{"epoch":26145542,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.43,"free":3113.17},{"epoch":26145543,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.4,"free":3113.2},{"epoch":26145544,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.38,"free":3113.22},{"epoch":26145545,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":555.58,"free":3112.03},{"epoch":26145546,"idl":99.79,"recv":0,"send":0,"writ":0.61,"used":555.49,"free":3112.12},{"epoch":26145547,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.82,"free":3112.78},{"epoch":26145548,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":554.79,"free":3112.8},{"epoch":26145549,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":555.25,"free":3112.33},{"epoch":26145550,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":555.26,"free":3112.33},{"epoch":26145551,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":555.77,"free":3111.81},{"epoch":26145552,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.4,"free":3112.18},{"epoch":26145553,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.38,"free":3112.2},{"epoch":26145554,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":555.36,"free":3112.21},{"epoch":26145555,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":555.62,"free":3111.97},{"epoch":26145556,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":555.15,"free":3112.44},{"epoch":26145557,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":554.6,"free":3112.98},{"epoch":26145558,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.57,"free":3113.01},{"epoch":26145559,"idl":99.92,"recv":0.02,"send":0.56,"writ":0.2,"used":554.57,"free":3113},{"epoch":26145560,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":554.58,"free":3113.01},{"epoch":26145561,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":554.9,"free":3112.69},{"epoch":26145562,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.54,"free":3113.04},{"epoch":26145563,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.51,"free":3113.07},{"epoch":26145564,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.5,"free":3113.07},{"epoch":26145565,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":555.67,"free":3111.92},{"epoch":26145566,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":556,"free":3111.58},{"epoch":26145567,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.4,"free":3112.18},{"epoch":26145568,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":555.4,"free":3112.18},{"epoch":26145569,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.37,"free":3112.2},{"epoch":26145570,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":555.62,"free":3111.97},{"epoch":26145571,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":555.84,"free":3111.75},{"epoch":26145572,"idl":99.94,"recv":0.01,"send":0.02,"writ":0.19,"used":555.37,"free":3112.21},{"epoch":26145573,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.4,"free":3112.17},{"epoch":26145574,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.39,"free":3112.18},{"epoch":26145575,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.33,"used":554.87,"free":3112.71},{"epoch":26145576,"idl":94.99,"recv":0.27,"send":0.01,"writ":78.11,"used":565.63,"free":3102.1},{"epoch":26145577,"idl":99.81,"recv":0,"send":0,"writ":179.66,"used":557.45,"free":3110.04},{"epoch":26145578,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":557.44,"free":3110.05},{"epoch":26145579,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":557.91,"free":3109.55},{"epoch":26145580,"idl":99.82,"recv":0,"send":0,"writ":0.37,"used":557.95,"free":3109.53},{"epoch":26145581,"idl":99.76,"recv":0,"send":0,"writ":0.48,"used":558.17,"free":3109.31},{"epoch":26145582,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":554.19,"free":3113.32},{"epoch":26145583,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.15,"free":3113.35},{"epoch":26145584,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":554.15,"free":3113.36},{"epoch":26145585,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":555.09,"free":3112.43},{"epoch":26145586,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":555.11,"free":3112.4},{"epoch":26145587,"idl":99.78,"recv":0,"send":0,"writ":0.62,"used":554.9,"free":3112.66},{"epoch":26145588,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":554.31,"free":3113.24},{"epoch":26145589,"idl":99.94,"recv":0.02,"send":0.05,"writ":0.2,"used":554.32,"free":3113.23},{"epoch":26145590,"idl":99.87,"recv":0.03,"send":0.07,"writ":0.34,"used":555.58,"free":3111.99},{"epoch":26145591,"idl":99.87,"recv":0.02,"send":0.06,"writ":0.34,"used":557.35,"free":3110.12},{"epoch":26145592,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":559.66,"free":3107.76},{"epoch":26145593,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":559.36,"free":3108.05},{"epoch":26145594,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":559.34,"free":3108.06},{"epoch":26145595,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":559.82,"free":3107.6},{"epoch":26145596,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.15,"used":559.78,"free":3107.64},{"epoch":26145597,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":559.97,"free":3107.44},{"epoch":26145598,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":559.61,"free":3107.8},{"epoch":26145599,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":559.58,"free":3107.83},{"epoch":26145600,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":559.59,"free":3107.84},{"epoch":26145601,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":559.62,"free":3107.8},{"epoch":26145602,"idl":99.81,"recv":0,"send":0,"writ":0.53,"used":560.41,"free":3107.01},{"epoch":26145603,"idl":99.95,"recv":0.01,"send":0.01,"writ":0.2,"used":559.94,"free":3107.48},{"epoch":26145604,"idl":99.83,"recv":0.01,"send":0.01,"writ":4.32,"used":559.65,"free":3108.04},{"epoch":26145605,"idl":99.8,"recv":0.14,"send":0.69,"writ":0.32,"used":559.73,"free":3108.79},{"epoch":26145606,"idl":99.67,"recv":0.32,"send":1.75,"writ":0.21,"used":559.72,"free":3108.76},{"epoch":26145607,"idl":99.81,"recv":0,"send":0,"writ":0.42,"used":560.22,"free":3108.25},{"epoch":26145608,"idl":99.92,"recv":0.01,"send":1.42,"writ":0.35,"used":559.89,"free":3108.57},{"epoch":26145609,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":559.69,"free":3108.73},{"epoch":26145610,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":559.94,"free":3108.49},{"epoch":26145611,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":559.91,"free":3108.52},{"epoch":26145612,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":560.25,"free":3108.18},{"epoch":26145613,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":559.87,"free":3108.55},{"epoch":26145614,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":559.86,"free":3108.6},{"epoch":26145615,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":559.63,"free":3108.87},{"epoch":26145616,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":559.61,"free":3108.89},{"epoch":26145617,"idl":99.82,"recv":0,"send":0,"writ":0.59,"used":560.37,"free":3108.12},{"epoch":26145618,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":559.81,"free":3108.67},{"epoch":26145619,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":559.79,"free":3108.69},{"epoch":26145620,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":559.98,"free":3108.51},{"epoch":26145621,"idl":99.86,"recv":0.13,"send":1.67,"writ":0.23,"used":560.6,"free":3107.85},{"epoch":26145622,"idl":99.31,"recv":0.16,"send":0.82,"writ":0.67,"used":561.5,"free":3106.93},{"epoch":26145623,"idl":98.47,"recv":0.52,"send":14.39,"writ":0.63,"used":562.67,"free":3105.75},{"epoch":26145624,"idl":99.79,"recv":0.59,"send":16.11,"writ":0.89,"used":562.67,"free":3105.76},{"epoch":26145625,"idl":99.72,"recv":0.59,"send":15.8,"writ":0.96,"used":562.69,"free":3105.75},{"epoch":26145626,"idl":99.58,"recv":1.76,"send":58.96,"writ":0.63,"used":562.72,"free":3105.72},{"epoch":26145627,"idl":99.88,"recv":0.19,"send":4.85,"writ":0.43,"used":562.64,"free":3105.81},{"epoch":26145628,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.62,"used":562.15,"free":3106.29},{"epoch":26145629,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":561.72,"free":3106.72},{"epoch":26145630,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":561.78,"free":3106.67},{"epoch":26145631,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":561.7,"free":3106.75},{"epoch":26145632,"idl":99.95,"recv":0.01,"send":0.02,"writ":0.21,"used":561.64,"free":3106.81},{"epoch":26145633,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":562.84,"free":3105.6},{"epoch":26145634,"idl":99.92,"recv":0.02,"send":0.02,"writ":0.19,"used":562.61,"free":3105.83},{"epoch":26145635,"idl":99.82,"recv":0.02,"send":0.02,"writ":0.38,"used":561.76,"free":3106.7},{"epoch":26145636,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":561.68,"free":3106.78},{"epoch":26145637,"idl":99.93,"recv":0.02,"send":0.04,"writ":0.19,"used":561.65,"free":3106.81},{"epoch":26145638,"idl":99.8,"recv":0.01,"send":0.21,"writ":0.57,"used":562.95,"free":3105.5},{"epoch":26145639,"idl":99.86,"recv":0.34,"send":0.4,"writ":0.83,"used":563.01,"free":3105.52},{"epoch":26145640,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.45,"used":562.94,"free":3105.68},{"epoch":26145641,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":562.9,"free":3105.71},{"epoch":26145642,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":562.89,"free":3105.72},{"epoch":26145643,"idl":99.81,"recv":0.02,"send":0.04,"writ":0.66,"used":563.4,"free":3105.22},{"epoch":26145644,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.22,"used":562.88,"free":3105.74},{"epoch":26145645,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.35,"used":563.05,"free":3105.59},{"epoch":26145646,"idl":99.9,"recv":0.02,"send":0.05,"writ":0.22,"used":560.94,"free":3107.7},{"epoch":26145647,"idl":99.9,"recv":0.01,"send":0.02,"writ":0.22,"used":561.37,"free":3107.27},{"epoch":26145648,"idl":99.79,"recv":0,"send":0.02,"writ":0.54,"used":562.37,"free":3106.26},{"epoch":26145649,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":562.13,"free":3106.5},{"epoch":26145650,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":562.14,"free":3106.5},{"epoch":26145651,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":562.11,"free":3106.55},{"epoch":26145652,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":562.09,"free":3106.57},{"epoch":26145653,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":562.7,"free":3105.95},{"epoch":26145654,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":562.8,"free":3105.85},{"epoch":26145655,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":562.64,"free":3106.03},{"epoch":26145656,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":562.7,"free":3105.95},{"epoch":26145657,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":562.69,"free":3105.96},{"epoch":26145658,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":563.36,"free":3105.29},{"epoch":26145659,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":562.65,"free":3106},{"epoch":26145660,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":561.37,"free":3107.29},{"epoch":26145661,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":560.9,"free":3107.75},{"epoch":26145662,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":560.87,"free":3107.78},{"epoch":26145663,"idl":99.82,"recv":0,"send":0,"writ":0.37,"used":561.23,"free":3107.42},{"epoch":26145664,"idl":99.95,"recv":0,"send":0,"writ":0.37,"used":561.82,"free":3106.82},{"epoch":26145665,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":562.06,"free":3106.61},{"epoch":26145666,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":562.22,"free":3106.44},{"epoch":26145667,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":562.2,"free":3106.46},{"epoch":26145668,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":562.53,"free":3106.13},{"epoch":26145669,"idl":99.88,"recv":0,"send":0,"writ":0.53,"used":561.91,"free":3106.73},{"epoch":26145670,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":561.9,"free":3106.75},{"epoch":26145671,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":561.89,"free":3106.75},{"epoch":26145672,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":561.86,"free":3106.78},{"epoch":26145673,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":561.85,"free":3106.79},{"epoch":26145674,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":562.17,"free":3106.47},{"epoch":26145675,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":560.95,"free":3107.7},{"epoch":26145676,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":560.82,"free":3107.83},{"epoch":26145677,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":561.16,"free":3107.49},{"epoch":26145678,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":561.21,"free":3107.43},{"epoch":26145679,"idl":99.78,"recv":0,"send":0,"writ":0.6,"used":561.92,"free":3106.71},{"epoch":26145680,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":561.67,"free":3106.98},{"epoch":26145681,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":561.67,"free":3106.98},{"epoch":26145682,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":561.64,"free":3107},{"epoch":26145683,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":561.62,"free":3107.01},{"epoch":26145684,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":561.96,"free":3106.67},{"epoch":26145685,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":562.32,"free":3106.32},{"epoch":26145686,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":562.32,"free":3106.32},{"epoch":26145687,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":562.29,"free":3106.35},{"epoch":26145688,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":562.39,"free":3106.25},{"epoch":26145689,"idl":99.81,"recv":0,"send":0,"writ":0.62,"used":562.81,"free":3105.81},{"epoch":26145690,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":562.48,"free":3106.17},{"epoch":26145691,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":562.44,"free":3106.2},{"epoch":26145692,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":562.43,"free":3106.2},{"epoch":26145693,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":562.4,"free":3106.23},{"epoch":26145694,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":562.66,"free":3105.96},{"epoch":26145695,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":562.39,"free":3106.26},{"epoch":26145696,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":562.35,"free":3106.29},{"epoch":26145697,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":562.34,"free":3106.29},{"epoch":26145698,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":562.31,"free":3106.32},{"epoch":26145699,"idl":99.75,"recv":0,"send":0,"writ":0.73,"used":562.61,"free":3106},{"epoch":26145700,"idl":99.9,"recv":0,"send":0,"writ":0.43,"used":562.2,"free":3106.42},{"epoch":26145701,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":562.22,"free":3106.4},{"epoch":26145702,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":562.19,"free":3106.43},{"epoch":26145703,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":562.16,"free":3106.44},{"epoch":26145704,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":562.14,"free":3106.47},{"epoch":26145705,"idl":99.75,"recv":0,"send":0,"writ":0.81,"used":562.5,"free":3106.12},{"epoch":26145706,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.15,"used":562.1,"free":3106.52},{"epoch":26145707,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":562.02,"free":3106.59},{"epoch":26145708,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":561.89,"free":3106.71},{"epoch":26145709,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":561.96,"free":3106.64},{"epoch":26145710,"idl":99.7,"recv":0,"send":0,"writ":0.66,"used":562.77,"free":3105.85},{"epoch":26145711,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":562.42,"free":3106.2},{"epoch":26145712,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":562.4,"free":3106.21},{"epoch":26145713,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":562.38,"free":3106.23},{"epoch":26145714,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":562.36,"free":3106.24},{"epoch":26145715,"idl":99.72,"recv":0,"send":0,"writ":0.69,"used":562.73,"free":3105.88},{"epoch":26145716,"idl":99.94,"recv":0,"send":0.01,"writ":0.15,"used":561.83,"free":3106.78},{"epoch":26145717,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":561.79,"free":3106.82},{"epoch":26145718,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":561.97,"free":3106.64},{"epoch":26145719,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":561.94,"free":3106.66},{"epoch":26145720,"idl":99.74,"recv":0,"send":0,"writ":0.7,"used":562.72,"free":3105.9},{"epoch":26145721,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":562.16,"free":3106.45},{"epoch":26145722,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":562.15,"free":3106.46},{"epoch":26145723,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":562.15,"free":3106.46},{"epoch":26145724,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":562.11,"free":3106.49},{"epoch":26145725,"idl":99.75,"recv":0,"send":0,"writ":0.75,"used":562.34,"free":3106.28},{"epoch":26145726,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":562.1,"free":3106.52},{"epoch":26145727,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":562.07,"free":3106.55},{"epoch":26145728,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":562,"free":3106.61},{"epoch":26145729,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":562.02,"free":3106.56},{"epoch":26145730,"idl":99.75,"recv":0,"send":0,"writ":0.71,"used":562.92,"free":3105.68},{"epoch":26145731,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":562.42,"free":3106.17},{"epoch":26145732,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":562.39,"free":3106.2},{"epoch":26145733,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":562.38,"free":3106.2},{"epoch":26145734,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":562.35,"free":3106.23},{"epoch":26145735,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":562.79,"free":3105.81},{"epoch":26145736,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":562.58,"free":3106.02},{"epoch":26145737,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":562.57,"free":3106.02},{"epoch":26145738,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":562.54,"free":3106.05},{"epoch":26145739,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":562.51,"free":3106.08},{"epoch":26145740,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":561.71,"free":3106.89},{"epoch":26145741,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":562.18,"free":3106.41},{"epoch":26145742,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":562.17,"free":3106.42},{"epoch":26145743,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":562.14,"free":3106.44},{"epoch":26145744,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":562.13,"free":3106.45},{"epoch":26145745,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":562.13,"free":3106.47},{"epoch":26145746,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":562.83,"free":3105.76},{"epoch":26145747,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":562.33,"free":3106.25},{"epoch":26145748,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":562.31,"free":3106.27},{"epoch":26145749,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":562.29,"free":3106.3},{"epoch":26145750,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":562.3,"free":3106.31},{"epoch":26145751,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":562.61,"free":3105.98},{"epoch":26145752,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":562.27,"free":3106.32},{"epoch":26145753,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":562.4,"free":3106.19},{"epoch":26145754,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":562.4,"free":3106.19},{"epoch":26145755,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":562.39,"free":3106.21},{"epoch":26145756,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":562.74,"free":3105.86},{"epoch":26145757,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":562.34,"free":3106.25},{"epoch":26145758,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":562.34,"free":3106.25},{"epoch":26145759,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":562.55,"free":3106.02},{"epoch":26145760,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":562.57,"free":3106.01},{"epoch":26145761,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":562.89,"free":3105.69},{"epoch":26145762,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":562.53,"free":3106.04},{"epoch":26145763,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":562.5,"free":3106.07},{"epoch":26145764,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":562.49,"free":3106.09},{"epoch":26145765,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":562.37,"free":3106.23},{"epoch":26145766,"idl":99.8,"recv":0,"send":0,"writ":0.5,"used":563.48,"free":3105.11},{"epoch":26145767,"idl":99.93,"recv":0,"send":0,"writ":0.23,"used":563.09,"free":3105.5},{"epoch":26145768,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":562.65,"free":3105.93},{"epoch":26145769,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":562.62,"free":3105.96},{"epoch":26145770,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":562.87,"free":3105.73},{"epoch":26145771,"idl":99.76,"recv":0,"send":0,"writ":0.51,"used":563.19,"free":3105.4},{"epoch":26145772,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":562.56,"free":3106.03},{"epoch":26145773,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":562.56,"free":3106.03},{"epoch":26145774,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":562.52,"free":3106.06},{"epoch":26145775,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":562.87,"free":3105.73},{"epoch":26145776,"idl":99.81,"recv":0,"send":0,"writ":0.43,"used":563.28,"free":3105.31},{"epoch":26145777,"idl":99.95,"recv":0,"send":0,"writ":0.32,"used":562.9,"free":3105.69},{"epoch":26145778,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":562.9,"free":3105.69},{"epoch":26145779,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":562.86,"free":3105.72},{"epoch":26145780,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":562.87,"free":3105.73},{"epoch":26145781,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":563.17,"free":3105.42},{"epoch":26145782,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":562.57,"free":3106.01},{"epoch":26145783,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":562.55,"free":3106.03},{"epoch":26145784,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":562.53,"free":3106.04},{"epoch":26145785,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.32,"used":562.82,"free":3105.77},{"epoch":26145786,"idl":99.92,"recv":0,"send":0,"writ":0.25,"used":562.89,"free":3105.69},{"epoch":26145787,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":563.4,"free":3105.17},{"epoch":26145788,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":562.59,"free":3105.98},{"epoch":26145789,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":561.91,"free":3106.63},{"epoch":26145790,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":562.04,"free":3106.52},{"epoch":26145791,"idl":99.93,"recv":0.01,"send":0.09,"writ":0.17,"used":562.08,"free":3106.47},{"epoch":26145792,"idl":99.79,"recv":0,"send":0,"writ":0.61,"used":563.16,"free":3105.38},{"epoch":26145793,"idl":99.93,"recv":0,"send":0.03,"writ":0.19,"used":562.57,"free":3105.97},{"epoch":26145794,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":562.55,"free":3105.99},{"epoch":26145795,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":562.78,"free":3105.78},{"epoch":26145796,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":562.76,"free":3105.79},{"epoch":26145797,"idl":99.78,"recv":0,"send":0,"writ":0.63,"used":563.09,"free":3105.45},{"epoch":26145798,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":562.72,"free":3105.83},{"epoch":26145799,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":562.86,"free":3105.68},{"epoch":26145800,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":562.88,"free":3105.67},{"epoch":26145801,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":562.87,"free":3105.68},{"epoch":26145802,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":563.34,"free":3105.2},{"epoch":26145803,"idl":99.93,"recv":0.03,"send":1.33,"writ":0.23,"used":563.02,"free":3105.51},{"epoch":26145804,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":563,"free":3105.53},{"epoch":26145805,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":562.99,"free":3105.55},{"epoch":26145806,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":562.97,"free":3105.57},{"epoch":26145807,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":563.22,"free":3105.31},{"epoch":26145808,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":562.88,"free":3105.65},{"epoch":26145809,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":562.84,"free":3105.68},{"epoch":26145810,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":563.11,"free":3105.43},{"epoch":26145811,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":563.07,"free":3105.46},{"epoch":26145812,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":563.77,"free":3104.76},{"epoch":26145813,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":563.28,"free":3105.25},{"epoch":26145814,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":563.25,"free":3105.28},{"epoch":26145815,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":562.68,"free":3105.87},{"epoch":26145816,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":562.24,"free":3106.3},{"epoch":26145817,"idl":99.76,"recv":0,"send":0,"writ":0.4,"used":562.63,"free":3105.9},{"epoch":26145818,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":562.46,"free":3106.06},{"epoch":26145819,"idl":99.67,"recv":0.01,"send":0.04,"writ":0.41,"used":562.63,"free":3105.87},{"epoch":26145820,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":561.36,"free":3107.15},{"epoch":26145821,"idl":99.91,"recv":0.01,"send":0.17,"writ":0.25,"used":561.43,"free":3107.08},{"epoch":26145822,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":561.42,"free":3107.08},{"epoch":26145823,"idl":99.76,"recv":0,"send":0,"writ":0.62,"used":561.76,"free":3106.74},{"epoch":26145824,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":561.35,"free":3107.14},{"epoch":26145825,"idl":99.83,"recv":0,"send":0,"writ":0.35,"used":561.85,"free":3106.66},{"epoch":26145826,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":561.83,"free":3106.68},{"epoch":26145827,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":561.85,"free":3106.65},{"epoch":26145828,"idl":99.7,"recv":0,"send":0,"writ":0.64,"used":562.43,"free":3106.08},{"epoch":26145829,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":561.52,"free":3106.99},{"epoch":26145830,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":562.24,"free":3106.29},{"epoch":26145831,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":562.37,"free":3106.15},{"epoch":26145832,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":562.39,"free":3106.13},{"epoch":26145833,"idl":99.77,"recv":0.01,"send":0.14,"writ":0.58,"used":563.06,"free":3105.45},{"epoch":26145834,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":562.48,"free":3106.02},{"epoch":26145835,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":562.5,"free":3106.02},{"epoch":26145836,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":562.57,"free":3105.94},{"epoch":26145837,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":562.65,"free":3105.86},{"epoch":26145838,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":562.96,"free":3105.54},{"epoch":26145839,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":562.6,"free":3105.9},{"epoch":26145840,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":562.35,"free":3106.17},{"epoch":26145841,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":562.34,"free":3106.17},{"epoch":26145842,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":562.31,"free":3106.2},{"epoch":26145843,"idl":99.77,"recv":0,"send":0,"writ":0.51,"used":562.75,"free":3105.75},{"epoch":26145844,"idl":99.93,"recv":0,"send":0,"writ":0.23,"used":562.51,"free":3105.99},{"epoch":26145845,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":562.52,"free":3105.99},{"epoch":26145846,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":562.49,"free":3106.02},{"epoch":26145847,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":562.49,"free":3106.02},{"epoch":26145848,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":562.93,"free":3105.57},{"epoch":26145849,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":562.61,"free":3105.87},{"epoch":26145850,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":562.85,"free":3105.65},{"epoch":26145851,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":562.82,"free":3105.67},{"epoch":26145852,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":562.81,"free":3105.67},{"epoch":26145853,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":563.11,"free":3105.37},{"epoch":26145854,"idl":99.93,"recv":0,"send":0,"writ":0.42,"used":562.52,"free":3105.96},{"epoch":26145855,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":560.82,"free":3107.69},{"epoch":26145856,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":560.78,"free":3107.72},{"epoch":26145857,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":561.24,"free":3107.26},{"epoch":26145858,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":561.24,"free":3107.26},{"epoch":26145859,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":562.9,"free":3105.59},{"epoch":26145860,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":562.39,"free":3106.12},{"epoch":26145861,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":562.35,"free":3106.15},{"epoch":26145862,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":562.33,"free":3106.16},{"epoch":26145863,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":562.31,"free":3106.18},{"epoch":26145864,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":562.82,"free":3105.67},{"epoch":26145865,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":562.85,"free":3105.66},{"epoch":26145866,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":562.75,"free":3105.75},{"epoch":26145867,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":562.75,"free":3105.75},{"epoch":26145868,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":562.72,"free":3105.78},{"epoch":26145869,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":562.71,"free":3105.78},{"epoch":26145870,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":561.27,"free":3107.24},{"epoch":26145871,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":561.3,"free":3107.2},{"epoch":26145872,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":561.37,"free":3107.13},{"epoch":26145873,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":561.36,"free":3107.13},{"epoch":26145874,"idl":99.72,"recv":0,"send":0,"writ":0.45,"used":562.49,"free":3106},{"epoch":26145875,"idl":99.76,"recv":0,"send":0,"writ":0.43,"used":561.63,"free":3106.87},{"epoch":26145876,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":561.56,"free":3106.94},{"epoch":26145877,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":561.55,"free":3106.95},{"epoch":26145878,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":561.51,"free":3106.98},{"epoch":26145879,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":563.16,"free":3105.31},{"epoch":26145880,"idl":99.82,"recv":0,"send":0,"writ":0.45,"used":562.48,"free":3106},{"epoch":26145881,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":562.48,"free":3106},{"epoch":26145882,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":562.44,"free":3106.03},{"epoch":26145883,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":562.46,"free":3106.01},{"epoch":26145884,"idl":99.7,"recv":0,"send":0,"writ":0.49,"used":563,"free":3105.47},{"epoch":26145885,"idl":99.83,"recv":0,"send":0,"writ":0.37,"used":562.85,"free":3105.63},{"epoch":26145886,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":562.83,"free":3105.65},{"epoch":26145887,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":562.81,"free":3105.66},{"epoch":26145888,"idl":94.9,"recv":0.4,"send":0.02,"writ":257.34,"used":570.34,"free":3097.63},{"epoch":26145889,"idl":99.7,"recv":0,"send":0,"writ":0.66,"used":565.57,"free":3102.36},{"epoch":26145890,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":565.41,"free":3102.54},{"epoch":26145891,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":565.39,"free":3102.56},{"epoch":26145892,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":565.36,"free":3102.59},{"epoch":26145893,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":563.44,"free":3104.55},{"epoch":26145894,"idl":99.72,"recv":0,"send":0,"writ":0.38,"used":563.27,"free":3104.73},{"epoch":26145895,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":562.94,"free":3105.08},{"epoch":26145896,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":562.9,"free":3105.11},{"epoch":26145897,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":562.9,"free":3105.11},{"epoch":26145898,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":562.87,"free":3105.13},{"epoch":26145899,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":563.05,"free":3104.95},{"epoch":26145900,"idl":99.59,"recv":0,"send":0,"writ":0.99,"used":563.39,"free":3104.65},{"epoch":26145901,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":562.79,"free":3105.25},{"epoch":26145902,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":562.75,"free":3105.28},{"epoch":26145903,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":562.74,"free":3105.28},{"epoch":26145904,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":562.71,"free":3105.31},{"epoch":26145905,"idl":99.68,"recv":0,"send":0,"writ":0.85,"used":563.3,"free":3104.73},{"epoch":26145906,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":562.92,"free":3105.11},{"epoch":26145907,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":562.9,"free":3105.13},{"epoch":26145908,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":562.89,"free":3105.14},{"epoch":26145909,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":563.14,"free":3104.86},{"epoch":26145910,"idl":99.66,"recv":0,"send":0,"writ":0.75,"used":563.18,"free":3104.83},{"epoch":26145911,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":562.77,"free":3105.23},{"epoch":26145912,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":562.76,"free":3105.24},{"epoch":26145913,"idl":99.79,"recv":0.06,"send":0.17,"writ":0.22,"used":562.73,"free":3105.27},{"epoch":26145914,"idl":99.74,"recv":0.07,"send":0.16,"writ":0.18,"used":562.68,"free":3105.31},{"epoch":26145915,"idl":99.6,"recv":0,"send":0,"writ":0.71,"used":563.16,"free":3104.87},{"epoch":26145916,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":560.15,"free":3107.93},{"epoch":26145917,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":560.6,"free":3107.47},{"epoch":26145918,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":560.7,"free":3107.36},{"epoch":26145919,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":560.75,"free":3107.31},{"epoch":26145920,"idl":99.59,"recv":0,"send":0,"writ":0.71,"used":560.29,"free":3107.79},{"epoch":26145921,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":559.75,"free":3108.32},{"epoch":26145922,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":559.74,"free":3108.33},{"epoch":26145923,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":559.71,"free":3108.36},{"epoch":26145924,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":559.69,"free":3108.37},{"epoch":26145925,"idl":99.68,"recv":0,"send":0,"writ":0.73,"used":560.77,"free":3107.3},{"epoch":26145926,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":560.4,"free":3107.68},{"epoch":26145927,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":560.39,"free":3107.68},{"epoch":26145928,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":560.36,"free":3107.71},{"epoch":26145929,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":560.45,"free":3107.61},{"epoch":26145930,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":560.54,"free":3107.54},{"epoch":26145931,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":560.87,"free":3107.21},{"epoch":26145932,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":560.51,"free":3107.55},{"epoch":26145933,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":560.48,"free":3107.59},{"epoch":26145934,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":560.47,"free":3107.59},{"epoch":26145935,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":560.22,"free":3107.86},{"epoch":26145936,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":561.03,"free":3107.04},{"epoch":26145937,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":560.66,"free":3107.41},{"epoch":26145938,"idl":99.83,"recv":0.01,"send":0.05,"writ":0.18,"used":560.69,"free":3107.35},{"epoch":26145939,"idl":99.78,"recv":0.01,"send":0,"writ":0.37,"used":560.62,"free":3107.4},{"epoch":26145940,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":560.62,"free":3107.41},{"epoch":26145941,"idl":96.65,"recv":0.03,"send":0.01,"writ":78.03,"used":571.73,"free":3096.91},{"epoch":26145942,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":563.01,"free":3105.15},{"epoch":26145943,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":563.01,"free":3105.14},{"epoch":26145944,"idl":99.85,"recv":0.01,"send":0,"writ":0.2,"used":563.11,"free":3105.07},{"epoch":26145945,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":562.86,"free":3105.33},{"epoch":26145946,"idl":99.72,"recv":0.04,"send":0.01,"writ":0.64,"used":561.72,"free":3106.51},{"epoch":26145947,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":560.53,"free":3107.72},{"epoch":26145948,"idl":99.81,"recv":0.01,"send":0.01,"writ":0.17,"used":560.6,"free":3107.64},{"epoch":26145949,"idl":99.85,"recv":0.04,"send":0,"writ":0.26,"used":560.61,"free":3107.63},{"epoch":26145950,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.37,"used":560.32,"free":3107.94},{"epoch":26145951,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.58,"used":560.89,"free":3107.36},{"epoch":26145952,"idl":99.84,"recv":0.01,"send":0,"writ":0.19,"used":560.8,"free":3107.44},{"epoch":26145953,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":560.83,"free":3107.41},{"epoch":26145954,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":560.8,"free":3107.44},{"epoch":26145955,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":560.57,"free":3107.68},{"epoch":26145956,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.63,"used":560.89,"free":3107.35},{"epoch":26145957,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.19,"used":560.63,"free":3107.62},{"epoch":26145958,"idl":99.86,"recv":0.01,"send":0,"writ":0.19,"used":560.53,"free":3107.71},{"epoch":26145959,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":560.52,"free":3107.72},{"epoch":26145960,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":560.62,"free":3107.64},{"epoch":26145961,"idl":99.73,"recv":0,"send":0,"writ":0.5,"used":560.94,"free":3107.31},{"epoch":26145962,"idl":99.81,"recv":0,"send":0,"writ":0.2,"used":560.65,"free":3107.59},{"epoch":26145963,"idl":99.85,"recv":0.01,"send":0,"writ":0.2,"used":560.59,"free":3107.65},{"epoch":26145964,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":560.56,"free":3107.68},{"epoch":26145965,"idl":99.77,"recv":0.01,"send":0,"writ":0.35,"used":560.8,"free":3107.45},{"epoch":26145966,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":561.28,"free":3106.97},{"epoch":26145967,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":560.49,"free":3107.75},{"epoch":26145968,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":560.64,"free":3107.6},{"epoch":26145969,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":560.88,"free":3107.33},{"epoch":26145970,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":559.21,"free":3109.03},{"epoch":26145971,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":557.19,"free":3111.05},{"epoch":26145972,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":558.01,"free":3110.22},{"epoch":26145973,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":557.64,"free":3110.59},{"epoch":26145974,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":557.63,"free":3110.59},{"epoch":26145975,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":557.62,"free":3110.61},{"epoch":26145976,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":557.61,"free":3110.62},{"epoch":26145977,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":557.92,"free":3110.3},{"epoch":26145978,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":557.57,"free":3110.65},{"epoch":26145979,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":557.54,"free":3110.68},{"epoch":26145980,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":557.73,"free":3110.51},{"epoch":26145981,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":557.74,"free":3110.49},{"epoch":26145982,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":558.07,"free":3110.15},{"epoch":26145983,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":557.7,"free":3110.53},{"epoch":26145984,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":557.66,"free":3110.55},{"epoch":26145985,"idl":99.82,"recv":0,"send":0,"writ":0.35,"used":557.43,"free":3110.8},{"epoch":26145986,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":557.39,"free":3110.83},{"epoch":26145987,"idl":99.7,"recv":0.04,"send":0,"writ":0.62,"used":558.16,"free":3110.06},{"epoch":26145988,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":557.83,"free":3110.39},{"epoch":26145989,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":557.96,"free":3110.25},{"epoch":26145990,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":557.24,"free":3110.99},{"epoch":26145991,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":557.21,"free":3111.02},{"epoch":26145992,"idl":99.72,"recv":0,"send":0,"writ":0.49,"used":557.85,"free":3110.37},{"epoch":26145993,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":557.9,"free":3110.31},{"epoch":26145994,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":557.87,"free":3110.34},{"epoch":26145995,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":557.88,"free":3110.34},{"epoch":26145996,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":557.85,"free":3110.37},{"epoch":26145997,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":558.19,"free":3110.02},{"epoch":26145998,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":557.81,"free":3110.4},{"epoch":26145999,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":558.03,"free":3110.16},{"epoch":26146000,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":557.97,"free":3110.24},{"epoch":26146001,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.95,"free":3110.26},{"epoch":26146002,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":558.46,"free":3109.74},{"epoch":26146003,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.65,"free":3110.55},{"epoch":26146004,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":557.64,"free":3110.55},{"epoch":26146005,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":557.87,"free":3110.33},{"epoch":26146006,"idl":99.85,"recv":0,"send":0.01,"writ":0.18,"used":557.86,"free":3110.34},{"epoch":26146007,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":558.16,"free":3110.04},{"epoch":26146008,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.34,"used":557.43,"free":3110.76},{"epoch":26146009,"idl":99.85,"recv":0,"send":0.01,"writ":0.16,"used":557.44,"free":3110.75},{"epoch":26146010,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":556.45,"free":3111.76},{"epoch":26146011,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":556.42,"free":3111.78},{"epoch":26146012,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":556.84,"free":3111.35},{"epoch":26146013,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":557.37,"free":3110.82},{"epoch":26146014,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":557.33,"free":3110.86},{"epoch":26146015,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":558.06,"free":3110.15},{"epoch":26146016,"idl":99.88,"recv":0,"send":0.02,"writ":0.16,"used":558.05,"free":3110.15},{"epoch":26146017,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":558.04,"free":3110.15},{"epoch":26146018,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":558.32,"free":3109.87},{"epoch":26146019,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":557.91,"free":3110.27},{"epoch":26146020,"idl":99.7,"recv":0,"send":0.01,"writ":0.34,"used":556.95,"free":3111.25},{"epoch":26146021,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":556.88,"free":3111.32},{"epoch":26146022,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.86,"free":3111.33},{"epoch":26146023,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":558.06,"free":3110.12},{"epoch":26146024,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":557.56,"free":3110.63},{"epoch":26146025,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":557.56,"free":3110.64},{"epoch":26146026,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":557.53,"free":3110.67},{"epoch":26146027,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":557.62,"free":3110.57},{"epoch":26146028,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":558.19,"free":3110},{"epoch":26146029,"idl":99.81,"recv":0,"send":0,"writ":0.41,"used":554.27,"free":3114.1},{"epoch":26146030,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":554.05,"free":3114.34},{"epoch":26146031,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":554.01,"free":3114.38},{"epoch":26146032,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":553.99,"free":3114.4},{"epoch":26146033,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":553.75,"free":3114.63},{"epoch":26146034,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":552.96,"free":3115.41},{"epoch":26146035,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":553.94,"free":3114.46},{"epoch":26146036,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.93,"free":3114.45},{"epoch":26146037,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":553.67,"free":3114.71},{"epoch":26146038,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":554.04,"free":3114.34},{"epoch":26146039,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":553.56,"free":3114.81},{"epoch":26146040,"idl":99.9,"recv":0,"send":0,"writ":0.37,"used":554.05,"free":3114.34},{"epoch":26146041,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":554.04,"free":3114.35},{"epoch":26146042,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.02,"free":3114.36},{"epoch":26146043,"idl":99.81,"recv":0,"send":0,"writ":0.43,"used":554.56,"free":3113.82},{"epoch":26146044,"idl":99.94,"recv":0,"send":0,"writ":0.29,"used":553.98,"free":3114.39},{"epoch":26146045,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":553.25,"free":3115.14},{"epoch":26146046,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.21,"free":3115.17},{"epoch":26146047,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.2,"free":3115.18},{"epoch":26146048,"idl":99.81,"recv":0,"send":0,"writ":0.49,"used":553.58,"free":3114.8},{"epoch":26146049,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":554.01,"free":3114.36},{"epoch":26146050,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":553.38,"free":3115.01},{"epoch":26146051,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.36,"free":3115.02},{"epoch":26146052,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.33,"free":3115.05},{"epoch":26146053,"idl":99.79,"recv":0,"send":0,"writ":0.37,"used":553.63,"free":3114.74},{"epoch":26146054,"idl":99.93,"recv":0,"send":0,"writ":0.38,"used":552.8,"free":3115.57},{"epoch":26146055,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":553.29,"free":3115.09},{"epoch":26146056,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":553.27,"free":3115.11},{"epoch":26146057,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":553.26,"free":3115.12},{"epoch":26146058,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":553.23,"free":3115.14},{"epoch":26146059,"idl":99.71,"recv":0,"send":0,"writ":0.81,"used":554.52,"free":3113.83},{"epoch":26146060,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":553,"free":3115.36},{"epoch":26146061,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.95,"free":3115.41},{"epoch":26146062,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":553.1,"free":3115.26},{"epoch":26146063,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":553.1,"free":3115.26},{"epoch":26146064,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":554.14,"free":3114.22},{"epoch":26146065,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":554.52,"free":3113.87},{"epoch":26146066,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":554.53,"free":3113.86},{"epoch":26146067,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":554.49,"free":3113.89},{"epoch":26146068,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":554.25,"free":3114.12},{"epoch":26146069,"idl":99.82,"recv":0,"send":0,"writ":0.57,"used":554.68,"free":3113.69},{"epoch":26146070,"idl":99.9,"recv":0,"send":0,"writ":0.37,"used":553.96,"free":3114.43},{"epoch":26146071,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":553.94,"free":3114.44},{"epoch":26146072,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":554.01,"free":3114.36},{"epoch":26146073,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":554.09,"free":3114.29},{"epoch":26146074,"idl":99.81,"recv":0,"send":0,"writ":0.45,"used":554.58,"free":3113.79},{"epoch":26146075,"idl":99.91,"recv":0,"send":0,"writ":0.47,"used":553.82,"free":3114.56},{"epoch":26146076,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":553.78,"free":3114.59},{"epoch":26146077,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":553.75,"free":3114.62},{"epoch":26146078,"idl":99.93,"recv":0.02,"send":0.56,"writ":0.23,"used":553.72,"free":3114.64},{"epoch":26146079,"idl":99.81,"recv":0,"send":0,"writ":0.41,"used":554.14,"free":3114.22},{"epoch":26146080,"idl":99.81,"recv":0,"send":0,"writ":0.5,"used":554.18,"free":3114.19},{"epoch":26146081,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":554.16,"free":3114.21},{"epoch":26146082,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":554.15,"free":3114.22},{"epoch":26146083,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":554.31,"free":3114.05},{"epoch":26146084,"idl":99.79,"recv":0,"send":0,"writ":0.45,"used":554.45,"free":3113.91},{"epoch":26146085,"idl":99.88,"recv":0,"send":0,"writ":0.46,"used":553.82,"free":3114.56},{"epoch":26146086,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":553.78,"free":3114.59},{"epoch":26146087,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.77,"free":3114.6},{"epoch":26146088,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.74,"free":3114.63},{"epoch":26146089,"idl":99.66,"recv":0,"send":0,"writ":0.51,"used":554.29,"free":3114.05},{"epoch":26146090,"idl":99.87,"recv":0,"send":0,"writ":0.6,"used":554.19,"free":3114.17},{"epoch":26146091,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.17,"free":3114.18},{"epoch":26146092,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":554.15,"free":3114.2},{"epoch":26146093,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":554.16,"free":3114.19},{"epoch":26146094,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":554.29,"free":3114.05},{"epoch":26146095,"idl":99.57,"recv":0,"send":0,"writ":0.77,"used":554.53,"free":3113.83},{"epoch":26146096,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.02,"free":3114.33},{"epoch":26146097,"idl":99.92,"recv":0,"send":0,"writ":0.25,"used":553.75,"free":3114.6},{"epoch":26146098,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.22,"used":553.79,"free":3114.55},{"epoch":26146099,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":553.79,"free":3114.55},{"epoch":26146100,"idl":99.73,"recv":0,"send":0,"writ":0.76,"used":554.52,"free":3113.83},{"epoch":26146101,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":554.27,"free":3114.08},{"epoch":26146102,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":554.26,"free":3114.1},{"epoch":26146103,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.24,"free":3114.12},{"epoch":26146104,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":554.22,"free":3114.13},{"epoch":26146105,"idl":99.73,"recv":0,"send":0,"writ":0.72,"used":554.66,"free":3113.72},{"epoch":26146106,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.21,"free":3114.16},{"epoch":26146107,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.2,"free":3114.17},{"epoch":26146108,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.17,"free":3114.2},{"epoch":26146109,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.17,"free":3114.19},{"epoch":26146110,"idl":99.69,"recv":0,"send":0,"writ":0.65,"used":554.24,"free":3114.13},{"epoch":26146111,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":554.07,"free":3114.3},{"epoch":26146112,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.05,"free":3114.32},{"epoch":26146113,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.02,"free":3114.34},{"epoch":26146114,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.01,"free":3114.35},{"epoch":26146115,"idl":99.72,"recv":0,"send":0,"writ":0.71,"used":554.71,"free":3113.66},{"epoch":26146116,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.48,"free":3113.89},{"epoch":26146117,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.46,"free":3113.9},{"epoch":26146118,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.44,"free":3113.92},{"epoch":26146119,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":554.41,"free":3113.92},{"epoch":26146120,"idl":99.74,"recv":0,"send":0,"writ":0.6,"used":554.52,"free":3113.82},{"epoch":26146121,"idl":99.95,"recv":0,"send":0,"writ":0.27,"used":554.23,"free":3114.11},{"epoch":26146122,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.31,"free":3114.02},{"epoch":26146123,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.28,"free":3114.05},{"epoch":26146124,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.27,"free":3114.07},{"epoch":26146125,"idl":99.73,"recv":0,"send":0,"writ":0.76,"used":554.86,"free":3113.5},{"epoch":26146126,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.5,"free":3113.86},{"epoch":26146127,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.47,"free":3113.89},{"epoch":26146128,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":554.24,"free":3114.11},{"epoch":26146129,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.18,"free":3114.16},{"epoch":26146130,"idl":99.72,"recv":0,"send":0,"writ":0.47,"used":555.02,"free":3113.35},{"epoch":26146131,"idl":99.9,"recv":0,"send":0,"writ":0.4,"used":554.81,"free":3113.55},{"epoch":26146132,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.39,"free":3113.96},{"epoch":26146133,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":554.56,"free":3113.79},{"epoch":26146134,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.53,"free":3113.82},{"epoch":26146135,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":554.77,"free":3113.6},{"epoch":26146136,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":555.17,"free":3113.19},{"epoch":26146137,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.48,"free":3113.88},{"epoch":26146138,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.46,"free":3113.89},{"epoch":26146139,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.2,"used":554.46,"free":3113.88},{"epoch":26146140,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":553.66,"free":3114.7},{"epoch":26146141,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":554.36,"free":3114},{"epoch":26146142,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.25,"free":3114.1},{"epoch":26146143,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.21,"free":3114.13},{"epoch":26146144,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.2,"free":3114.14},{"epoch":26146145,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":553.72,"free":3114.63},{"epoch":26146146,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":554.68,"free":3113.68},{"epoch":26146147,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.36,"free":3114},{"epoch":26146148,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":553.64,"free":3114.71},{"epoch":26146149,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":553.77,"free":3114.56},{"epoch":26146150,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":553.08,"free":3115.26},{"epoch":26146151,"idl":99.79,"recv":0,"send":0,"writ":0.52,"used":553.61,"free":3114.72},{"epoch":26146152,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":553.5,"free":3114.83},{"epoch":26146153,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":553.47,"free":3114.86},{"epoch":26146154,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.44,"free":3114.9},{"epoch":26146155,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":553.69,"free":3114.67},{"epoch":26146156,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":554.19,"free":3114.16},{"epoch":26146157,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":553.65,"free":3114.7},{"epoch":26146158,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":553.63,"free":3114.71},{"epoch":26146159,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.61,"free":3114.73},{"epoch":26146160,"idl":99.88,"recv":0,"send":0,"writ":0.39,"used":554.05,"free":3114.3},{"epoch":26146161,"idl":99.82,"recv":0,"send":0,"writ":0.58,"used":554.25,"free":3114.09},{"epoch":26146162,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":553.26,"free":3115.08},{"epoch":26146163,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.24,"free":3115.1},{"epoch":26146164,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.22,"free":3115.13},{"epoch":26146165,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":553.95,"free":3114.41},{"epoch":26146166,"idl":99.79,"recv":0,"send":0,"writ":0.43,"used":554.27,"free":3114.1},{"epoch":26146167,"idl":99.94,"recv":0,"send":0,"writ":0.35,"used":553.68,"free":3114.68},{"epoch":26146168,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":553.65,"free":3114.7},{"epoch":26146169,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":553.64,"free":3114.71},{"epoch":26146170,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":553.87,"free":3114.49},{"epoch":26146171,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.89,"free":3114.47},{"epoch":26146172,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":554.69,"free":3113.66},{"epoch":26146173,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":554.04,"free":3114.31},{"epoch":26146174,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.01,"free":3114.34},{"epoch":26146175,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":554.03,"free":3114.33},{"epoch":26146176,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.01,"free":3114.36},{"epoch":26146177,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":554.34,"free":3114.02},{"epoch":26146178,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.96,"free":3114.4},{"epoch":26146179,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":553.97,"free":3114.36},{"epoch":26146180,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":554.01,"free":3114.34},{"epoch":26146181,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.92,"free":3114.43},{"epoch":26146182,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":554.25,"free":3114.09},{"epoch":26146183,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":554.04,"free":3114.29},{"epoch":26146184,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.04,"free":3114.3},{"epoch":26146185,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":554.03,"free":3114.33},{"epoch":26146186,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.01,"free":3114.35},{"epoch":26146187,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":554.19,"free":3114.17},{"epoch":26146188,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":553.32,"free":3115.03},{"epoch":26146189,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":553.21,"free":3115.13},{"epoch":26146190,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":553.68,"free":3114.68},{"epoch":26146191,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.69,"free":3114.67},{"epoch":26146192,"idl":99.81,"recv":0,"send":0,"writ":0.5,"used":554.35,"free":3114.01},{"epoch":26146193,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":553.65,"free":3114.7},{"epoch":26146194,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":553.71,"free":3114.63},{"epoch":26146195,"idl":99.91,"recv":0,"send":0,"writ":0.31,"used":554.06,"free":3114.3},{"epoch":26146196,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.03,"free":3114.33},{"epoch":26146197,"idl":99.78,"recv":0,"send":0,"writ":0.52,"used":554.52,"free":3113.83},{"epoch":26146198,"idl":99.96,"recv":0,"send":0,"writ":0.21,"used":553.99,"free":3114.36},{"epoch":26146199,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.95,"free":3114.39},{"epoch":26146200,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":552.81,"free":3115.55},{"epoch":26146201,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":552.96,"free":3115.4},{"epoch":26146202,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":553.41,"free":3114.94},{"epoch":26146203,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":553.9,"free":3114.44},{"epoch":26146204,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.88,"free":3114.46},{"epoch":26146205,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":554.12,"free":3114.23},{"epoch":26146206,"idl":96.15,"recv":0,"send":0,"writ":0.15,"used":554.3,"free":3114.05},{"epoch":26146207,"idl":99.81,"recv":0,"send":0,"writ":0.58,"used":554.6,"free":3113.75},{"epoch":26146208,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.01,"free":3114.33},{"epoch":26146209,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":554.22,"free":3114.1},{"epoch":26146210,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":554.21,"free":3114.12},{"epoch":26146211,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.19,"free":3114.14},{"epoch":26146212,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":554.16,"free":3114.16},{"epoch":26146213,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":554.73,"free":3113.59},{"epoch":26146214,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":554.37,"free":3113.96},{"epoch":26146215,"idl":99.87,"recv":0,"send":0,"writ":0.39,"used":554.14,"free":3114.22},{"epoch":26146216,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":554.26,"free":3114.09},{"epoch":26146217,"idl":99.91,"recv":0,"send":0,"writ":0.22,"used":554.27,"free":3114.08},{"epoch":26146218,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":554.67,"free":3113.67},{"epoch":26146219,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":553.98,"free":3114.36},{"epoch":26146220,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":554.29,"free":3114.06},{"epoch":26146221,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.2,"free":3114.15},{"epoch":26146222,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":554.19,"free":3114.15},{"epoch":26146223,"idl":99.8,"recv":0,"send":0,"writ":0.48,"used":554.48,"free":3113.86},{"epoch":26146224,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":553.91,"free":3114.43},{"epoch":26146225,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":554.39,"free":3113.96},{"epoch":26146226,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.38,"free":3113.96},{"epoch":26146227,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.35,"free":3113.99},{"epoch":26146228,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":554.74,"free":3113.6},{"epoch":26146229,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":554.24,"free":3114.09},{"epoch":26146230,"idl":99.86,"recv":0,"send":0,"writ":0.39,"used":553.31,"free":3115.04},{"epoch":26146231,"idl":99.94,"recv":0,"send":0,"writ":0.23,"used":553.24,"free":3115.1},{"epoch":26146232,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":553.24,"free":3115.1},{"epoch":26146233,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":553.98,"free":3114.36},{"epoch":26146234,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":554.18,"free":3114.15},{"epoch":26146235,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":554.18,"free":3114.16},{"epoch":26146236,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.16,"free":3114.18},{"epoch":26146237,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.13,"free":3114.21},{"epoch":26146238,"idl":99.78,"recv":0,"send":0,"writ":0.52,"used":554.47,"free":3113.86},{"epoch":26146239,"idl":99.87,"recv":0,"send":0,"writ":0.36,"used":554.17,"free":3114.14},{"epoch":26146240,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":553.9,"free":3114.42},{"epoch":26146241,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.73,"free":3114.59},{"epoch":26146242,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.72,"free":3114.59},{"epoch":26146243,"idl":99.78,"recv":0,"send":0,"writ":0.39,"used":554.28,"free":3114.03},{"epoch":26146244,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":554.17,"free":3114.15},{"epoch":26146245,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":553.68,"free":3114.66},{"epoch":26146246,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.65,"free":3114.69},{"epoch":26146247,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.63,"free":3114.7},{"epoch":26146248,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":553.41,"free":3114.92},{"epoch":26146249,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":554.54,"free":3113.79},{"epoch":26146250,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":554.53,"free":3113.81},{"epoch":26146251,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.5,"free":3113.83},{"epoch":26146252,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.49,"free":3113.84},{"epoch":26146253,"idl":99.93,"recv":0,"send":0.02,"writ":0.17,"used":554.45,"free":3113.87},{"epoch":26146254,"idl":99.82,"recv":0,"send":0,"writ":0.56,"used":554.54,"free":3113.78},{"epoch":26146255,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":554.41,"free":3113.93},{"epoch":26146256,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.37,"free":3113.96},{"epoch":26146257,"idl":99.93,"recv":0,"send":0.01,"writ":0.16,"used":554.51,"free":3113.82},{"epoch":26146258,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.49,"free":3113.84},{"epoch":26146259,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":554.63,"free":3113.69},{"epoch":26146260,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":553.49,"free":3114.84},{"epoch":26146261,"idl":99.95,"recv":0,"send":0.01,"writ":0.14,"used":553.46,"free":3114.87},{"epoch":26146262,"idl":99.93,"recv":0,"send":0.01,"writ":0.16,"used":553.43,"free":3114.9},{"epoch":26146263,"idl":99.9,"recv":0,"send":0.01,"writ":0.17,"used":553.38,"free":3114.94},{"epoch":26146264,"idl":99.8,"recv":0,"send":0,"writ":0.45,"used":554.5,"free":3113.81},{"epoch":26146265,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":554.49,"free":3113.84},{"epoch":26146266,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.52,"free":3113.81},{"epoch":26146267,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.49,"free":3113.84},{"epoch":26146268,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.48,"free":3113.84},{"epoch":26146269,"idl":99.73,"recv":0,"send":0,"writ":0.64,"used":554.8,"free":3113.5},{"epoch":26146270,"idl":99.82,"recv":0,"send":0,"writ":0.44,"used":553.49,"free":3114.83},{"epoch":26146271,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":553.43,"free":3114.88},{"epoch":26146272,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":553.4,"free":3114.91},{"epoch":26146273,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":553.39,"free":3114.91},{"epoch":26146274,"idl":99.82,"recv":0,"send":0,"writ":0.49,"used":553.95,"free":3114.36},{"epoch":26146275,"idl":99.9,"recv":0,"send":0,"writ":0.37,"used":554.35,"free":3113.98},{"epoch":26146276,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.43,"free":3113.9},{"epoch":26146277,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":554.51,"free":3113.82},{"epoch":26146278,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.47,"free":3113.85},{"epoch":26146279,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":554.77,"free":3113.55},{"epoch":26146280,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":554.7,"free":3113.64},{"epoch":26146281,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":554.7,"free":3113.63},{"epoch":26146282,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":554.66,"free":3113.66},{"epoch":26146283,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.65,"free":3113.67},{"epoch":26146284,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":555.25,"free":3113.07},{"epoch":26146285,"idl":99.9,"recv":0,"send":0,"writ":0.53,"used":554.37,"free":3113.96},{"epoch":26146286,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.36,"free":3113.97},{"epoch":26146287,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.34,"free":3113.98},{"epoch":26146288,"idl":98.45,"recv":0,"send":0,"writ":0.14,"used":554.5,"free":3113.82},{"epoch":26146289,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":554.47,"free":3113.85},{"epoch":26146290,"idl":99.67,"recv":0,"send":0,"writ":0.71,"used":553.62,"free":3114.72},{"epoch":26146291,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.22,"free":3115.11},{"epoch":26146292,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.99,"free":3115.33},{"epoch":26146293,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.2,"free":3116.13},{"epoch":26146294,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.17,"free":3116.14},{"epoch":26146295,"idl":99.75,"recv":0,"send":0,"writ":0.79,"used":554.14,"free":3114.18},{"epoch":26146296,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.86,"free":3114.46},{"epoch":26146297,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":553.85,"free":3114.47},{"epoch":26146298,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.81,"free":3114.5},{"epoch":26146299,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":554.01,"free":3114.27},{"epoch":26146300,"idl":99.74,"recv":0,"send":0,"writ":0.73,"used":553.98,"free":3114.32},{"epoch":26146301,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.49,"free":3114.81},{"epoch":26146302,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":553.46,"free":3114.84},{"epoch":26146303,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.45,"free":3114.84},{"epoch":26146304,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":553.42,"free":3114.88},{"epoch":26146305,"idl":95.11,"recv":0.27,"send":0.01,"writ":194.64,"used":566.34,"free":3102.32},{"epoch":26146306,"idl":99.92,"recv":0,"send":0,"writ":63.5,"used":556.06,"free":3112.22},{"epoch":26146307,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":556.04,"free":3112.24},{"epoch":26146308,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":555.85,"free":3112.43},{"epoch":26146309,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.77,"free":3112.5},{"epoch":26146310,"idl":99.71,"recv":0,"send":0,"writ":0.68,"used":555.26,"free":3113.04},{"epoch":26146311,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":553.58,"free":3114.74},{"epoch":26146312,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.71,"free":3114.61},{"epoch":26146313,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":553.73,"free":3114.58},{"epoch":26146314,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":553.7,"free":3114.61},{"epoch":26146315,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":554.09,"free":3114.24},{"epoch":26146316,"idl":99.94,"recv":0,"send":0,"writ":0.29,"used":553.69,"free":3114.67},{"epoch":26146317,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.68,"free":3114.68},{"epoch":26146318,"idl":99.93,"recv":0,"send":0,"writ":0.12,"used":553.65,"free":3114.7},{"epoch":26146319,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.65,"free":3114.71},{"epoch":26146320,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":553.84,"free":3114.53},{"epoch":26146321,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":553.85,"free":3114.51},{"epoch":26146322,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":553.84,"free":3114.52},{"epoch":26146323,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.81,"free":3114.54},{"epoch":26146324,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.96,"free":3114.39},{"epoch":26146325,"idl":99.77,"recv":0,"send":0,"writ":0.48,"used":554.96,"free":3113.41},{"epoch":26146326,"idl":99.92,"recv":0,"send":0,"writ":0.41,"used":553.97,"free":3114.39},{"epoch":26146327,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":553.94,"free":3114.42},{"epoch":26146328,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.93,"free":3114.43},{"epoch":26146329,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":553.66,"free":3114.67},{"epoch":26146330,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":553.9,"free":3114.45},{"epoch":26146331,"idl":99.82,"recv":0,"send":0,"writ":0.58,"used":554.24,"free":3114.1},{"epoch":26146332,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":553.86,"free":3114.47},{"epoch":26146333,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":553.83,"free":3114.5},{"epoch":26146334,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":553.8,"free":3114.54},{"epoch":26146335,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":553.45,"free":3114.92},{"epoch":26146336,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":553.5,"free":3114.87},{"epoch":26146337,"idl":99.95,"recv":0,"send":0,"writ":0.24,"used":552.98,"free":3115.38},{"epoch":26146338,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":552.95,"free":3115.4},{"epoch":26146339,"idl":99.92,"recv":0,"send":0.01,"writ":0.17,"used":552.93,"free":3115.42},{"epoch":26146340,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":552.89,"free":3115.48},{"epoch":26146341,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":554.05,"free":3114.31},{"epoch":26146342,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.08,"free":3114.28},{"epoch":26146343,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":554.05,"free":3114.3},{"epoch":26146344,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.19,"free":3114.16},{"epoch":26146345,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":554.22,"free":3114.15},{"epoch":26146346,"idl":99.8,"recv":0,"send":0,"writ":0.44,"used":554.4,"free":3113.97},{"epoch":26146347,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":553.44,"free":3114.92},{"epoch":26146348,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.4,"free":3114.95},{"epoch":26146349,"idl":99.33,"recv":0,"send":0,"writ":0.15,"used":553.38,"free":3114.96},{"epoch":26146350,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":554.11,"free":3114.25},{"epoch":26146351,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":554.28,"free":3114.08},{"epoch":26146352,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.59,"free":3114.79},{"epoch":26146353,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.56,"free":3114.81},{"epoch":26146354,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":553.72,"free":3114.65},{"epoch":26146355,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":554.3,"free":3114.08},{"epoch":26146356,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":554.58,"free":3113.8},{"epoch":26146357,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.21,"free":3114.16},{"epoch":26146358,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.18,"free":3114.19},{"epoch":26146359,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":553.93,"free":3114.42},{"epoch":26146360,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":553.43,"free":3114.93},{"epoch":26146361,"idl":99.79,"recv":0,"send":0,"writ":0.52,"used":553.92,"free":3114.43},{"epoch":26146362,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":554.36,"free":3114},{"epoch":26146363,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.35,"free":3114},{"epoch":26146364,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.32,"free":3114.02},{"epoch":26146365,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":554.34,"free":3114.02},{"epoch":26146366,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.48,"free":3113.87},{"epoch":26146367,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":555.15,"free":3113.2},{"epoch":26146368,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":554.11,"free":3114.23},{"epoch":26146369,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.92,"free":3114.43},{"epoch":26146370,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":554.16,"free":3114.2},{"epoch":26146371,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.14,"free":3114.21},{"epoch":26146372,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":554.29,"free":3114.06},{"epoch":26146373,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.86,"free":3114.49},{"epoch":26146374,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.85,"free":3114.49},{"epoch":26146375,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":553.84,"free":3114.52},{"epoch":26146376,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.85,"free":3114.5},{"epoch":26146377,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":554.33,"free":3114.02},{"epoch":26146378,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.96,"free":3114.38},{"epoch":26146379,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":553.7,"free":3114.64},{"epoch":26146380,"idl":99.56,"recv":0,"send":0,"writ":10.96,"used":553.69,"free":3114.86},{"epoch":26146381,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":553.72,"free":3114.89},{"epoch":26146382,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":554.35,"free":3114.25},{"epoch":26146383,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.15,"free":3114.45},{"epoch":26146384,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.14,"free":3114.46},{"epoch":26146385,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":553.66,"free":3114.99},{"epoch":26146386,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.63,"free":3115.01},{"epoch":26146387,"idl":99.81,"recv":0,"send":0,"writ":0.52,"used":554.27,"free":3114.37},{"epoch":26146388,"idl":99.91,"recv":0,"send":0,"writ":0.22,"used":553.78,"free":3114.88},{"epoch":26146389,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":553.75,"free":3114.9},{"epoch":26146390,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":553.75,"free":3114.92},{"epoch":26146391,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.73,"free":3114.93},{"epoch":26146392,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":554.2,"free":3114.45},{"epoch":26146393,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.15,"free":3114.5},{"epoch":26146394,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":554.14,"free":3114.5},{"epoch":26146395,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":554.37,"free":3114.29},{"epoch":26146396,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.37,"free":3114.29},{"epoch":26146397,"idl":99.75,"recv":0,"send":0,"writ":0.46,"used":554.71,"free":3113.95},{"epoch":26146398,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":554.5,"free":3114.15},{"epoch":26146399,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":554.48,"free":3114.16},{"epoch":26146400,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":554.77,"free":3113.9},{"epoch":26146401,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":554.71,"free":3113.95},{"epoch":26146402,"idl":99.76,"recv":0,"send":0,"writ":0.38,"used":554.99,"free":3113.66},{"epoch":26146403,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":554.4,"free":3114.25},{"epoch":26146404,"idl":99.87,"recv":0,"send":0.01,"writ":0.17,"used":554.38,"free":3114.26},{"epoch":26146405,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":553.88,"free":3114.78},{"epoch":26146406,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.95,"free":3114.71},{"epoch":26146407,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":554,"free":3114.66},{"epoch":26146408,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":555.36,"free":3113.29},{"epoch":26146409,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.7,"free":3113.95},{"epoch":26146410,"idl":99.67,"recv":0,"send":0,"writ":0.3,"used":554.21,"free":3114.45},{"epoch":26146411,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.17,"free":3114.49},{"epoch":26146412,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":554.14,"free":3114.51},{"epoch":26146413,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":554.67,"free":3113.98},{"epoch":26146414,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":554.33,"free":3114.31},{"epoch":26146415,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":554.7,"free":3113.96},{"epoch":26146416,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":554.74,"free":3113.92},{"epoch":26146417,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.73,"free":3113.93},{"epoch":26146418,"idl":99.75,"recv":0,"send":0,"writ":0.52,"used":555.05,"free":3113.6},{"epoch":26146419,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":554.67,"free":3113.96},{"epoch":26146420,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":554.67,"free":3113.96},{"epoch":26146421,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":554.64,"free":3114},{"epoch":26146422,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.62,"free":3114.01},{"epoch":26146423,"idl":99.75,"recv":0,"send":0,"writ":0.53,"used":554.64,"free":3113.98},{"epoch":26146424,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.07,"free":3114.57},{"epoch":26146425,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":554.36,"free":3114.32},{"epoch":26146426,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":554.52,"free":3114.15},{"epoch":26146427,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":554.52,"free":3114.15},{"epoch":26146428,"idl":99.7,"recv":0,"send":0,"writ":0.51,"used":554.7,"free":3113.96},{"epoch":26146429,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":553.97,"free":3114.69},{"epoch":26146430,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":553.97,"free":3114.7},{"epoch":26146431,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":553.95,"free":3114.72},{"epoch":26146432,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":553.93,"free":3114.73},{"epoch":26146433,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":554.31,"free":3114.34},{"epoch":26146434,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.13,"free":3114.52},{"epoch":26146435,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":553.88,"free":3114.79},{"epoch":26146436,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.89,"free":3114.78},{"epoch":26146437,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":554.02,"free":3114.64},{"epoch":26146438,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":554.47,"free":3114.19},{"epoch":26146439,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":554.47,"free":3114.18},{"epoch":26146440,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":554.94,"free":3113.73},{"epoch":26146441,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":554.92,"free":3113.74},{"epoch":26146442,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":554.9,"free":3113.75},{"epoch":26146443,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":554.6,"free":3114.05},{"epoch":26146444,"idl":99.82,"recv":0,"send":0,"writ":0.38,"used":553.86,"free":3114.79},{"epoch":26146445,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":553.87,"free":3114.79},{"epoch":26146446,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.94,"free":3114.72},{"epoch":26146447,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.02,"free":3114.64},{"epoch":26146448,"idl":99.71,"recv":0,"send":0,"writ":0.15,"used":553.98,"free":3114.67},{"epoch":26146449,"idl":99.61,"recv":0,"send":0,"writ":0.77,"used":554.16,"free":3114.46},{"epoch":26146450,"idl":99.74,"recv":0,"send":0,"writ":0.26,"used":553.79,"free":3114.85},{"epoch":26146451,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":553.68,"free":3114.95},{"epoch":26146452,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":553.67,"free":3114.96},{"epoch":26146453,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":553.64,"free":3114.99},{"epoch":26146454,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":553.79,"free":3114.84},{"epoch":26146455,"idl":99.76,"recv":0,"send":0,"writ":0.26,"used":553.37,"free":3115.27},{"epoch":26146456,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":553.35,"free":3115.29},{"epoch":26146457,"idl":99.84,"recv":0,"send":0,"writ":0.23,"used":553.27,"free":3115.36},{"epoch":26146458,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":553.23,"free":3115.39},{"epoch":26146459,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":553.99,"free":3114.63},{"epoch":26146460,"idl":99.73,"recv":0,"send":0,"writ":0.25,"used":552.76,"free":3115.88},{"epoch":26146461,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":552.69,"free":3115.95},{"epoch":26146462,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.65,"free":3115.98},{"epoch":26146463,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":552.63,"free":3116},{"epoch":26146464,"idl":99.71,"recv":0,"send":0,"writ":0.45,"used":553.07,"free":3115.55},{"epoch":26146465,"idl":99.73,"recv":0,"send":0,"writ":0.36,"used":553.58,"free":3115.05},{"epoch":26146466,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":553.67,"free":3114.96},{"epoch":26146467,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":553.75,"free":3114.87},{"epoch":26146468,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":553.72,"free":3114.9},{"epoch":26146469,"idl":99.73,"recv":0,"send":0,"writ":0.51,"used":554.04,"free":3114.58},{"epoch":26146470,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":552.71,"free":3115.91},{"epoch":26146471,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":552.7,"free":3115.92},{"epoch":26146472,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.67,"free":3115.95},{"epoch":26146473,"idl":95.02,"recv":0.68,"send":0.01,"writ":64.76,"used":560.69,"free":3107.42},{"epoch":26146474,"idl":99.6,"recv":0,"send":0,"writ":193.19,"used":556.53,"free":3111.29},{"epoch":26146475,"idl":99.8,"recv":0,"send":0,"writ":0.5,"used":555.91,"free":3111.92},{"epoch":26146476,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":555.89,"free":3111.94},{"epoch":26146477,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":555.86,"free":3111.97},{"epoch":26146478,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":555.09,"free":3112.76},{"epoch":26146479,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":554.61,"free":3113.27},{"epoch":26146480,"idl":99.79,"recv":0,"send":0,"writ":0.49,"used":553.83,"free":3114.06},{"epoch":26146481,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":553.82,"free":3114.07},{"epoch":26146482,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":553.79,"free":3114.09},{"epoch":26146483,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":553.78,"free":3114.1},{"epoch":26146484,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":553.75,"free":3114.13},{"epoch":26146485,"idl":99.63,"recv":0,"send":0,"writ":0.76,"used":554.65,"free":3113.25},{"epoch":26146486,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":553.97,"free":3113.92},{"epoch":26146487,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":553.95,"free":3113.93},{"epoch":26146488,"idl":99.83,"recv":0,"send":0,"writ":0.23,"used":553.66,"free":3114.22},{"epoch":26146489,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":553.51,"free":3114.37},{"epoch":26146490,"idl":99.67,"recv":0,"send":0,"writ":0.68,"used":554.5,"free":3113.39},{"epoch":26146491,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":554.06,"free":3113.82},{"epoch":26146492,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":554.04,"free":3113.85},{"epoch":26146493,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":554.02,"free":3113.86},{"epoch":26146494,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":553.99,"free":3113.88},{"epoch":26146495,"idl":99.63,"recv":0,"send":0,"writ":0.71,"used":553.65,"free":3114.24},{"epoch":26146496,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":553.24,"free":3114.65},{"epoch":26146497,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":553.23,"free":3114.66},{"epoch":26146498,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":553.2,"free":3114.68},{"epoch":26146499,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":553.17,"free":3114.7},{"epoch":26146500,"idl":99.6,"recv":0,"send":0,"writ":0.64,"used":554.5,"free":3113.39},{"epoch":26146501,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":554.06,"free":3113.82},{"epoch":26146502,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":554.03,"free":3113.85},{"epoch":26146503,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":554.02,"free":3113.86},{"epoch":26146504,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":553.99,"free":3113.89},{"epoch":26146505,"idl":99.59,"recv":0,"send":0,"writ":0.62,"used":554.13,"free":3113.77},{"epoch":26146506,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":553.97,"free":3113.93},{"epoch":26146507,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":553.94,"free":3113.96},{"epoch":26146508,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.93,"free":3113.96},{"epoch":26146509,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":553.66,"free":3114.22},{"epoch":26146510,"idl":99.68,"recv":0,"send":0,"writ":0.52,"used":554.75,"free":3113.14},{"epoch":26146511,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":554.3,"free":3113.58},{"epoch":26146512,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.3,"free":3113.58},{"epoch":26146513,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.26,"free":3113.61},{"epoch":26146514,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.24,"free":3113.63},{"epoch":26146515,"idl":99.64,"recv":0,"send":0,"writ":0.43,"used":554.6,"free":3113.28},{"epoch":26146516,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":553.97,"free":3113.9},{"epoch":26146517,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":553.95,"free":3113.92},{"epoch":26146518,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":553.92,"free":3113.95},{"epoch":26146519,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":553.97,"free":3113.89},{"epoch":26146520,"idl":99.67,"recv":0,"send":0,"writ":0.51,"used":554.65,"free":3113.23},{"epoch":26146521,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":554.27,"free":3113.6},{"epoch":26146522,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.26,"free":3113.61},{"epoch":26146523,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.22,"free":3113.64},{"epoch":26146524,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":554.19,"free":3113.67},{"epoch":26146525,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":554.2,"free":3113.68},{"epoch":26146526,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":554.51,"free":3113.35},{"epoch":26146527,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":554.15,"free":3113.72},{"epoch":26146528,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":554.13,"free":3113.73},{"epoch":26146529,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":554.25,"free":3113.6},{"epoch":26146530,"idl":99.74,"recv":0,"send":0,"writ":0.27,"used":554.32,"free":3113.55},{"epoch":26146531,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":554.61,"free":3113.26},{"epoch":26146532,"idl":99.83,"recv":0,"send":0,"writ":0.12,"used":554.01,"free":3113.85},{"epoch":26146533,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":553.99,"free":3113.87},{"epoch":26146534,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":553.97,"free":3113.89},{"epoch":26146535,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":554.22,"free":3113.65},{"epoch":26146536,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":554.54,"free":3113.33},{"epoch":26146537,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":554.19,"free":3113.68},{"epoch":26146538,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":554.16,"free":3113.7},{"epoch":26146539,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":554.55,"free":3113.29},{"epoch":26146540,"idl":99.78,"recv":0,"send":0.01,"writ":0.28,"used":554.05,"free":3113.8},{"epoch":26146541,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":554.62,"free":3113.23},{"epoch":26146542,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":554.47,"free":3113.37},{"epoch":26146543,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.44,"free":3113.4},{"epoch":26146544,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.43,"free":3113.42},{"epoch":26146545,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":553.98,"free":3113.88},{"epoch":26146546,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":554.79,"free":3113.06},{"epoch":26146547,"idl":99.86,"recv":0,"send":0,"writ":0.23,"used":554.53,"free":3113.32},{"epoch":26146548,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":554.34,"free":3113.51},{"epoch":26146549,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":553.99,"free":3113.85},{"epoch":26146550,"idl":99.74,"recv":0,"send":0,"writ":0.26,"used":553.49,"free":3114.37},{"epoch":26146551,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":553.84,"free":3114.01},{"epoch":26146552,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":553.66,"free":3114.19},{"epoch":26146553,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":553.64,"free":3114.2},{"epoch":26146554,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":553.78,"free":3114.06},{"epoch":26146555,"idl":99.75,"recv":0,"send":0,"writ":0.26,"used":554.03,"free":3113.82},{"epoch":26146556,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":554.39,"free":3113.46},{"epoch":26146557,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":553.99,"free":3113.85},{"epoch":26146558,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.97,"free":3113.87},{"epoch":26146559,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":553.95,"free":3113.88},{"epoch":26146560,"idl":99.74,"recv":0,"send":0,"writ":0.25,"used":554.19,"free":3113.66},{"epoch":26146561,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":554.18,"free":3113.67},{"epoch":26146562,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":554.37,"free":3113.47},{"epoch":26146563,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":553.62,"free":3114.21},{"epoch":26146564,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":553.71,"free":3114.12},{"epoch":26146565,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":554.76,"free":3113.08},{"epoch":26146566,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":554.76,"free":3113.08},{"epoch":26146567,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":554.75,"free":3113.09},{"epoch":26146568,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":554.23,"free":3113.6},{"epoch":26146569,"idl":97.6,"recv":0,"send":0,"writ":0.32,"used":554.43,"free":3113.38},{"epoch":26146570,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":554.21,"free":3113.62},{"epoch":26146571,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":554.17,"free":3113.66},{"epoch":26146572,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":554.17,"free":3113.65},{"epoch":26146573,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":553.63,"free":3114.18},{"epoch":26146574,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":553.63,"free":3114.2},{"epoch":26146575,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":554.51,"free":3113.34},{"epoch":26146576,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.51,"free":3113.33},{"epoch":26146577,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":554.42,"free":3113.42},{"epoch":26146578,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":553.98,"free":3113.86},{"epoch":26146579,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":553.96,"free":3113.88},{"epoch":26146580,"idl":99.78,"recv":0,"send":0,"writ":0.26,"used":554.45,"free":3113.42},{"epoch":26146581,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":554.44,"free":3113.43},{"epoch":26146582,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":555.07,"free":3112.79},{"epoch":26146583,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":554.38,"free":3113.47},{"epoch":26146584,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":554.35,"free":3113.5},{"epoch":26146585,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":554.38,"free":3113.48},{"epoch":26146586,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":554.52,"free":3113.34},{"epoch":26146587,"idl":99.7,"recv":0,"send":0,"writ":0.4,"used":554.93,"free":3112.93},{"epoch":26146588,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":554.72,"free":3113.13},{"epoch":26146589,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":554.7,"free":3113.15},{"epoch":26146590,"idl":99.16,"recv":0,"send":0,"writ":0.32,"used":553.98,"free":3113.9},{"epoch":26146591,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":553.93,"free":3113.94},{"epoch":26146592,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":554.43,"free":3113.44},{"epoch":26146593,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.65,"free":3114.21},{"epoch":26146594,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.63,"free":3114.23},{"epoch":26146595,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":553.86,"free":3114.02},{"epoch":26146596,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":554.02,"free":3113.86},{"epoch":26146597,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":554.79,"free":3113.1},{"epoch":26146598,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":554.03,"free":3113.86},{"epoch":26146599,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":554.01,"free":3113.83},{"epoch":26146600,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":553.76,"free":3114.1},{"epoch":26146601,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.71,"free":3114.14},{"epoch":26146602,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":553.69,"free":3114.16},{"epoch":26146603,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":554.11,"free":3113.73},{"epoch":26146604,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":553.65,"free":3114.19},{"epoch":26146605,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":553.65,"free":3114.2},{"epoch":26146606,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.67,"free":3114.18},{"epoch":26146607,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.77,"free":3114.07},{"epoch":26146608,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":554.22,"free":3113.63},{"epoch":26146609,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":553.73,"free":3114.13},{"epoch":26146610,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":553.48,"free":3114.39},{"epoch":26146611,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.46,"free":3114.4},{"epoch":26146612,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.43,"free":3114.43},{"epoch":26146613,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":553.97,"free":3113.89},{"epoch":26146614,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.63,"free":3114.22},{"epoch":26146615,"idl":99.87,"recv":0,"send":0,"writ":0.25,"used":553.42,"free":3114.45},{"epoch":26146616,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.56,"free":3114.31},{"epoch":26146617,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.52,"free":3114.34},{"epoch":26146618,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":554.35,"free":3113.5},{"epoch":26146619,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":553.73,"free":3114.12},{"epoch":26146620,"idl":99.74,"recv":0,"send":0,"writ":0.25,"used":552.78,"free":3115.09},{"epoch":26146621,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":552.73,"free":3115.14},{"epoch":26146622,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":552.72,"free":3115.14},{"epoch":26146623,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":553.36,"free":3114.5},{"epoch":26146624,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.39,"free":3114.46},{"epoch":26146625,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":553.64,"free":3114.23},{"epoch":26146626,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.72,"free":3114.15},{"epoch":26146627,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":553.8,"free":3114.07},{"epoch":26146628,"idl":99.8,"recv":0,"send":0,"writ":0.45,"used":554.18,"free":3113.68},{"epoch":26146629,"idl":99.84,"recv":0,"send":0,"writ":0.5,"used":553.49,"free":3114.34},{"epoch":26146630,"idl":99.88,"recv":0,"send":0,"writ":0.25,"used":554.2,"free":3113.65},{"epoch":26146631,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.19,"free":3113.65},{"epoch":26146632,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.16,"free":3113.68},{"epoch":26146633,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":554.48,"free":3113.36},{"epoch":26146634,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":554.1,"free":3113.73},{"epoch":26146635,"idl":99.85,"recv":0,"send":0,"writ":0.26,"used":553.78,"free":3114.06},{"epoch":26146636,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.76,"free":3114.08},{"epoch":26146637,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":553.99,"free":3113.85},{"epoch":26146638,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":554.62,"free":3113.22},{"epoch":26146639,"idl":99.94,"recv":0,"send":0,"writ":0.39,"used":554.2,"free":3113.63},{"epoch":26146640,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":554.23,"free":3113.62},{"epoch":26146641,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.17,"free":3113.67},{"epoch":26146642,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.16,"free":3113.68},{"epoch":26146643,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.13,"free":3113.7},{"epoch":26146644,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":554.25,"free":3113.58},{"epoch":26146645,"idl":99.83,"recv":0,"send":0,"writ":0.26,"used":553.87,"free":3113.98},{"epoch":26146646,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.03,"free":3113.82},{"epoch":26146647,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554,"free":3113.84},{"epoch":26146648,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":553.97,"free":3113.86},{"epoch":26146649,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":554.53,"free":3113.29},{"epoch":26146650,"idl":98.42,"recv":0,"send":0,"writ":0.27,"used":553.72,"free":3114.12},{"epoch":26146651,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":553.68,"free":3114.16},{"epoch":26146652,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.66,"free":3114.17},{"epoch":26146653,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.65,"free":3114.17},{"epoch":26146654,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":554.74,"free":3113.08},{"epoch":26146655,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":553.87,"free":3113.97},{"epoch":26146656,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.91,"free":3113.92},{"epoch":26146657,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.99,"free":3113.83},{"epoch":26146658,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.97,"free":3113.86},{"epoch":26146659,"idl":99.71,"recv":0,"send":0,"writ":0.82,"used":554.71,"free":3113.09},{"epoch":26146660,"idl":99.89,"recv":0,"send":0,"writ":0.26,"used":554.19,"free":3113.63},{"epoch":26146661,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.18,"free":3113.63},{"epoch":26146662,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":554.15,"free":3113.66},{"epoch":26146663,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.14,"free":3113.66},{"epoch":26146664,"idl":99.78,"recv":0,"send":0,"writ":0.49,"used":554.47,"free":3113.32},{"epoch":26146665,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":553.16,"free":3114.66},{"epoch":26146666,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":553.12,"free":3114.69},{"epoch":26146667,"idl":99.9,"recv":0,"send":0,"writ":0.39,"used":553.02,"free":3114.79},{"epoch":26146668,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":552.94,"free":3114.87},{"epoch":26146669,"idl":96.21,"recv":0.07,"send":0.01,"writ":77.75,"used":565.72,"free":3103.88},{"epoch":26146670,"idl":99.86,"recv":0,"send":0,"writ":63.89,"used":556.84,"free":3111.07},{"epoch":26146671,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":556.82,"free":3111.09},{"epoch":26146672,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":556.81,"free":3111.1},{"epoch":26146673,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":556.78,"free":3111.12},{"epoch":26146674,"idl":99.8,"recv":0,"send":0,"writ":0.64,"used":556.88,"free":3111.02},{"epoch":26146675,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":554.36,"free":3113.6},{"epoch":26146676,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":554.35,"free":3113.62},{"epoch":26146677,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.32,"free":3113.66},{"epoch":26146678,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.3,"free":3113.68},{"epoch":26146679,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":554.63,"free":3113.35},{"epoch":26146680,"idl":99.87,"recv":0,"send":0,"writ":0.38,"used":554.04,"free":3113.95},{"epoch":26146681,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.21,"free":3113.79},{"epoch":26146682,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.19,"free":3113.8},{"epoch":26146683,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":554.17,"free":3113.82},{"epoch":26146684,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":554.43,"free":3113.54},{"epoch":26146685,"idl":99.84,"recv":0,"send":0,"writ":0.41,"used":553.92,"free":3114.08},{"epoch":26146686,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":553.87,"free":3114.13},{"epoch":26146687,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":553.85,"free":3114.14},{"epoch":26146688,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.83,"free":3114.16},{"epoch":26146689,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":553.79,"free":3114.17},{"epoch":26146690,"idl":99.7,"recv":0,"send":0,"writ":0.68,"used":554.21,"free":3113.77},{"epoch":26146691,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.86,"free":3114.12},{"epoch":26146692,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":553.94,"free":3114.03},{"epoch":26146693,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.92,"free":3114.05},{"epoch":26146694,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.88,"free":3114.1},{"epoch":26146695,"idl":99.69,"recv":0,"send":0,"writ":0.68,"used":554.45,"free":3113.56},{"epoch":26146696,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.87,"free":3114.14},{"epoch":26146697,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":553.84,"free":3114.17},{"epoch":26146698,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":553.83,"free":3114.17},{"epoch":26146699,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.81,"free":3114.19},{"epoch":26146700,"idl":99.76,"recv":0,"send":0,"writ":0.66,"used":554.64,"free":3113.37},{"epoch":26146701,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.27,"free":3113.74},{"epoch":26146702,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.42,"free":3113.59},{"epoch":26146703,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.42,"free":3113.58},{"epoch":26146704,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.41,"free":3113.59},{"epoch":26146705,"idl":99.73,"recv":0,"send":0,"writ":0.68,"used":554.63,"free":3113.38},{"epoch":26146706,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.39,"free":3113.62},{"epoch":26146707,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.35,"free":3113.65},{"epoch":26146708,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.35,"free":3113.65},{"epoch":26146709,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.32,"free":3113.69},{"epoch":26146710,"idl":99.72,"recv":0,"send":0,"writ":0.66,"used":554.92,"free":3113.1},{"epoch":26146711,"idl":99.03,"recv":0,"send":0,"writ":0.16,"used":554.54,"free":3113.48},{"epoch":26146712,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":554.53,"free":3113.49},{"epoch":26146713,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":554.6,"free":3113.41},{"epoch":26146714,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.65,"free":3113.36},{"epoch":26146715,"idl":99.76,"recv":0,"send":0,"writ":0.68,"used":554.9,"free":3113.13},{"epoch":26146716,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.39,"free":3113.63},{"epoch":26146717,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.38,"free":3113.63},{"epoch":26146718,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.35,"free":3113.66},{"epoch":26146719,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":554.33,"free":3113.66},{"epoch":26146720,"idl":99.8,"recv":0,"send":0,"writ":0.42,"used":554.91,"free":3113.09},{"epoch":26146721,"idl":99.86,"recv":0,"send":0,"writ":0.39,"used":554.32,"free":3113.69},{"epoch":26146722,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.28,"free":3113.72},{"epoch":26146723,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.27,"free":3113.72},{"epoch":26146724,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.24,"free":3113.75},{"epoch":26146725,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":554.16,"free":3113.85},{"epoch":26146726,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":554.72,"free":3113.28},{"epoch":26146727,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":554.38,"free":3113.62},{"epoch":26146728,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":554.2,"free":3113.8},{"epoch":26146729,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.84,"free":3114.15},{"epoch":26146730,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":553.85,"free":3114.16},{"epoch":26146731,"idl":99.74,"recv":0,"send":0,"writ":0.53,"used":554.89,"free":3113.12},{"epoch":26146732,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.53,"free":3113.47},{"epoch":26146733,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.52,"free":3113.47},{"epoch":26146734,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.51,"free":3113.48},{"epoch":26146735,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":554.51,"free":3113.5},{"epoch":26146736,"idl":99.79,"recv":0,"send":0,"writ":0.42,"used":555.02,"free":3112.99},{"epoch":26146737,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":554.68,"free":3113.32},{"epoch":26146738,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.65,"free":3113.34},{"epoch":26146739,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":554.64,"free":3113.35},{"epoch":26146740,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":554.2,"free":3113.81},{"epoch":26146741,"idl":99.8,"recv":0,"send":0,"writ":0.5,"used":553.99,"free":3114.01},{"epoch":26146742,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":553.6,"free":3114.39},{"epoch":26146743,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":553.6,"free":3114.4},{"epoch":26146744,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":553.56,"free":3114.43},{"epoch":26146745,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":554.06,"free":3113.95},{"epoch":26146746,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":554.66,"free":3113.34},{"epoch":26146747,"idl":99.93,"recv":0,"send":0,"writ":0.33,"used":553.55,"free":3114.44},{"epoch":26146748,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.69,"free":3114.3},{"epoch":26146749,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":553.67,"free":3114.29},{"epoch":26146750,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":553.91,"free":3114.07},{"epoch":26146751,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":554.28,"free":3113.69},{"epoch":26146752,"idl":99.91,"recv":0,"send":0,"writ":0.28,"used":553.87,"free":3114.09},{"epoch":26146753,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":553.84,"free":3114.12},{"epoch":26146754,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.83,"free":3114.13},{"epoch":26146755,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":553.83,"free":3114.15},{"epoch":26146756,"idl":99.8,"recv":0,"send":0,"writ":0.45,"used":554.17,"free":3113.82},{"epoch":26146757,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":553.54,"free":3114.44},{"epoch":26146758,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.52,"free":3114.46},{"epoch":26146759,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":553.65,"free":3114.33},{"epoch":26146760,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":553.93,"free":3114.06},{"epoch":26146761,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.91,"free":3114.08},{"epoch":26146762,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":554.26,"free":3113.75},{"epoch":26146763,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.87,"free":3114.14},{"epoch":26146764,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":553.84,"free":3114.17},{"epoch":26146765,"idl":98.79,"recv":0,"send":0,"writ":15.42,"used":555.01,"free":3113.48},{"epoch":26146766,"idl":90.94,"recv":0,"send":0,"writ":85.71,"used":567.03,"free":3092.4},{"epoch":26146767,"idl":99.79,"recv":0,"send":0,"writ":0.68,"used":556.87,"free":3110.97},{"epoch":26146768,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":556.41,"free":3111.42},{"epoch":26146769,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":556.43,"free":3111.4},{"epoch":26146770,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":556.58,"free":3111.26},{"epoch":26146771,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":555.61,"free":3112.25},{"epoch":26146772,"idl":99.8,"recv":0,"send":0,"writ":0.52,"used":553.84,"free":3114.06},{"epoch":26146773,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.1,"free":3114.79},{"epoch":26146774,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":553.09,"free":3114.8},{"epoch":26146775,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":554.03,"free":3113.88},{"epoch":26146776,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.98,"free":3113.94},{"epoch":26146777,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":553.98,"free":3113.96},{"epoch":26146778,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.54,"free":3114.4},{"epoch":26146779,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":553.49,"free":3114.42},{"epoch":26146780,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":553.02,"free":3114.91},{"epoch":26146781,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553,"free":3114.93},{"epoch":26146782,"idl":99.81,"recv":0,"send":0,"writ":0.49,"used":553.97,"free":3113.95},{"epoch":26146783,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":554.11,"free":3113.8},{"epoch":26146784,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.1,"free":3113.81},{"epoch":26146785,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":554.1,"free":3113.83},{"epoch":26146786,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.07,"free":3113.85},{"epoch":26146787,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":554.74,"free":3113.18},{"epoch":26146788,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":553.87,"free":3114.04},{"epoch":26146789,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.52,"free":3114.39},{"epoch":26146790,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":554.24,"free":3113.69},{"epoch":26146791,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.22,"free":3113.7},{"epoch":26146792,"idl":99.75,"recv":0,"send":0,"writ":0.43,"used":554.54,"free":3113.38},{"epoch":26146793,"idl":99.94,"recv":0,"send":0,"writ":0.3,"used":554.13,"free":3113.79},{"epoch":26146794,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.11,"free":3113.8},{"epoch":26146795,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":554.11,"free":3113.81},{"epoch":26146796,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":554.09,"free":3113.84},{"epoch":26146797,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":554.35,"free":3113.57},{"epoch":26146798,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.54,"free":3114.38},{"epoch":26146799,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.52,"free":3114.39},{"epoch":26146800,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":554.24,"free":3113.69},{"epoch":26146801,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.24,"free":3113.68},{"epoch":26146802,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.21,"free":3113.71},{"epoch":26146803,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":553.72,"free":3114.2},{"epoch":26146804,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":553.37,"free":3114.54},{"epoch":26146805,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":553.86,"free":3114.07},{"epoch":26146806,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":553.85,"free":3114.08},{"epoch":26146807,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":553.83,"free":3114.1},{"epoch":26146808,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.59,"used":553.94,"free":3113.98},{"epoch":26146809,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":554.23,"free":3113.67},{"epoch":26146810,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":553.99,"free":3113.93},{"epoch":26146811,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":553.98,"free":3113.93},{"epoch":26146812,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":554.15,"free":3113.75},{"epoch":26146813,"idl":99.75,"recv":0,"send":0.01,"writ":0.58,"used":554.33,"free":3113.57},{"epoch":26146814,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.61,"free":3114.29},{"epoch":26146815,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":554.34,"free":3113.58},{"epoch":26146816,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.32,"free":3113.59},{"epoch":26146817,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":554.07,"free":3113.84},{"epoch":26146818,"idl":99.77,"recv":0,"send":0,"writ":0.39,"used":553.75,"free":3114.15},{"epoch":26146819,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":552.54,"free":3115.35},{"epoch":26146820,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":553.25,"free":3114.66},{"epoch":26146821,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":553.26,"free":3114.64},{"epoch":26146822,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.39,"free":3114.52},{"epoch":26146823,"idl":99.8,"recv":0,"send":0,"writ":0.48,"used":554.08,"free":3113.82},{"epoch":26146824,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":554.12,"free":3113.78},{"epoch":26146825,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":554.37,"free":3113.54},{"epoch":26146826,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.35,"free":3113.56},{"epoch":26146827,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.34,"free":3113.57},{"epoch":26146828,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":554.72,"free":3113.18},{"epoch":26146829,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":554.54,"free":3113.35},{"epoch":26146830,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":554.54,"free":3113.37},{"epoch":26146831,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.53,"free":3113.38},{"epoch":26146832,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":554.49,"free":3113.41},{"epoch":26146833,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":554.96,"free":3112.94},{"epoch":26146834,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":554.24,"free":3113.65},{"epoch":26146835,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":554.41,"free":3113.5},{"epoch":26146836,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.37,"free":3113.53},{"epoch":26146837,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":554.37,"free":3113.54},{"epoch":26146838,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.33,"free":3113.56},{"epoch":26146839,"idl":99.72,"recv":0,"send":0,"writ":0.69,"used":554.22,"free":3113.65},{"epoch":26146840,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":554.3,"free":3113.59},{"epoch":26146841,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.28,"free":3113.6},{"epoch":26146842,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.26,"free":3113.62},{"epoch":26146843,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":554.24,"free":3113.64},{"epoch":26146844,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":554.58,"free":3113.3},{"epoch":26146845,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":554.24,"free":3113.66},{"epoch":26146846,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.39,"free":3113.5},{"epoch":26146847,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":554.36,"free":3113.53},{"epoch":26146848,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":554.27,"free":3113.61},{"epoch":26146849,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":554.93,"free":3112.94},{"epoch":26146850,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":554.55,"free":3113.34},{"epoch":26146851,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.54,"free":3113.34},{"epoch":26146852,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":554.51,"free":3113.37},{"epoch":26146853,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.5,"free":3113.38},{"epoch":26146854,"idl":99.8,"recv":0,"send":0,"writ":0.42,"used":554.9,"free":3112.97},{"epoch":26146855,"idl":99.86,"recv":0,"send":0,"writ":0.44,"used":554.48,"free":3113.41},{"epoch":26146856,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":554.45,"free":3113.43},{"epoch":26146857,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":554.54,"free":3113.34},{"epoch":26146858,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":554.61,"free":3113.27},{"epoch":26146859,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":554.84,"free":3113.03},{"epoch":26146860,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":553.91,"free":3113.97},{"epoch":26146861,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":553.81,"free":3114.07},{"epoch":26146862,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":553.79,"free":3114.09},{"epoch":26146863,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.76,"free":3114.11},{"epoch":26146864,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":554.3,"free":3113.57},{"epoch":26146865,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":553.51,"free":3114.37},{"epoch":26146866,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.47,"free":3114.4},{"epoch":26146867,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":553.6,"free":3114.27},{"epoch":26146868,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":553.6,"free":3114.27},{"epoch":26146869,"idl":99.71,"recv":0,"send":0,"writ":0.68,"used":555,"free":3112.84},{"epoch":26146870,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":553.61,"free":3114.24},{"epoch":26146871,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.58,"free":3114.28},{"epoch":26146872,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":553.55,"free":3114.3},{"epoch":26146873,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.53,"free":3114.32},{"epoch":26146874,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":553.89,"free":3113.97},{"epoch":26146875,"idl":99.86,"recv":0,"send":0,"writ":0.5,"used":554.72,"free":3113.17},{"epoch":26146876,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.72,"free":3113.17},{"epoch":26146877,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":554.69,"free":3113.19},{"epoch":26146878,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":554.72,"free":3113.16},{"epoch":26146879,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":555.18,"free":3112.7},{"epoch":26146880,"idl":99.88,"recv":0,"send":0,"writ":0.51,"used":554.37,"free":3113.53},{"epoch":26146881,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":554.32,"free":3113.56},{"epoch":26146882,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.32,"free":3113.57},{"epoch":26146883,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":554.3,"free":3113.58},{"epoch":26146884,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":554.28,"free":3113.6},{"epoch":26146885,"idl":99.67,"recv":0,"send":0,"writ":0.7,"used":555.08,"free":3112.81},{"epoch":26146886,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.75,"free":3113.14},{"epoch":26146887,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.72,"free":3113.16},{"epoch":26146888,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.71,"free":3113.17},{"epoch":26146889,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":554.7,"free":3113.17},{"epoch":26146890,"idl":99.6,"recv":0,"send":0,"writ":0.69,"used":554.59,"free":3113.29},{"epoch":26146891,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":553.36,"free":3114.53},{"epoch":26146892,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":553.39,"free":3114.49},{"epoch":26146893,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":553.36,"free":3114.52},{"epoch":26146894,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.35,"free":3114.52},{"epoch":26146895,"idl":99.71,"recv":0,"send":0,"writ":0.71,"used":554.17,"free":3113.72},{"epoch":26146896,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":553.81,"free":3114.07},{"epoch":26146897,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.79,"free":3114.09},{"epoch":26146898,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.76,"free":3114.11},{"epoch":26146899,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":553.79,"free":3114.05},{"epoch":26146900,"idl":99.68,"recv":0,"send":0,"writ":0.72,"used":553.82,"free":3114.04},{"epoch":26146901,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.71,"free":3114.14},{"epoch":26146902,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":553.77,"free":3114.08},{"epoch":26146903,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":553.86,"free":3113.99},{"epoch":26146904,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.83,"free":3114.01},{"epoch":26146905,"idl":99.68,"recv":0,"send":0,"writ":0.77,"used":554.58,"free":3113.28},{"epoch":26146906,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.06,"free":3113.79},{"epoch":26146907,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":554.05,"free":3113.8},{"epoch":26146908,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":553.97,"free":3113.88},{"epoch":26146909,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.76,"free":3114.08},{"epoch":26146910,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":554.69,"free":3113.16},{"epoch":26146911,"idl":99.94,"recv":0,"send":0,"writ":0.31,"used":553.99,"free":3113.87},{"epoch":26146912,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.98,"free":3113.87},{"epoch":26146913,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.95,"free":3113.9},{"epoch":26146914,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":553.94,"free":3113.9},{"epoch":26146915,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":554.29,"free":3113.57},{"epoch":26146916,"idl":99.89,"recv":0,"send":0,"writ":0.37,"used":553.84,"free":3114.01},{"epoch":26146917,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.86,"free":3113.99},{"epoch":26146918,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.83,"free":3114.02},{"epoch":26146919,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":553.82,"free":3114.02},{"epoch":26146920,"idl":99.7,"recv":0,"send":0,"writ":0.45,"used":554.4,"free":3113.46},{"epoch":26146921,"idl":99.9,"recv":0,"send":0,"writ":0.41,"used":554.3,"free":3113.56},{"epoch":26146922,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.27,"free":3113.58},{"epoch":26146923,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":554.26,"free":3113.59},{"epoch":26146924,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":554.24,"free":3113.61},{"epoch":26146925,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":553.76,"free":3114.1},{"epoch":26146926,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":554.29,"free":3113.57},{"epoch":26146927,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.95,"free":3113.9},{"epoch":26146928,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":553.94,"free":3113.9},{"epoch":26146929,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":554.04,"free":3113.77},{"epoch":26146930,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":554.11,"free":3113.72},{"epoch":26146931,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":554.56,"free":3113.27},{"epoch":26146932,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.06,"free":3113.76},{"epoch":26146933,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":554.03,"free":3113.79},{"epoch":26146934,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.02,"free":3113.79},{"epoch":26146935,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":553.79,"free":3114.05},{"epoch":26146936,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":554.24,"free":3113.59},{"epoch":26146937,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":553.76,"free":3114.06},{"epoch":26146938,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.73,"free":3114.09},{"epoch":26146939,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":553.72,"free":3114.1},{"epoch":26146940,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":553.95,"free":3113.88},{"epoch":26146941,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":554.29,"free":3113.53},{"epoch":26146942,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":553.91,"free":3113.91},{"epoch":26146943,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.05,"free":3113.76},{"epoch":26146944,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.06,"free":3113.75},{"epoch":26146945,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":554.08,"free":3113.75},{"epoch":26146946,"idl":99.75,"recv":0,"send":0,"writ":0.52,"used":554.9,"free":3112.93},{"epoch":26146947,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":554.28,"free":3113.54},{"epoch":26146948,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.27,"free":3113.54},{"epoch":26146949,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.24,"free":3113.57},{"epoch":26146950,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":553.07,"free":3114.75},{"epoch":26146951,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":553.58,"free":3114.24},{"epoch":26146952,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":553.97,"free":3113.85},{"epoch":26146953,"idl":99.33,"recv":0,"send":0,"writ":0.15,"used":553.96,"free":3113.86},{"epoch":26146954,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":553.93,"free":3113.9},{"epoch":26146955,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":554.19,"free":3113.66},{"epoch":26146956,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":554.23,"free":3113.61},{"epoch":26146957,"idl":99.77,"recv":0,"send":0,"writ":0.53,"used":554.66,"free":3113.17},{"epoch":26146958,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.31,"free":3113.53},{"epoch":26146959,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":553.58,"free":3114.23},{"epoch":26146960,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":553.55,"free":3114.28},{"epoch":26146961,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":553.52,"free":3114.31},{"epoch":26146962,"idl":99.72,"recv":0.01,"send":0.01,"writ":0.62,"used":554.62,"free":3113.19},{"epoch":26146963,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":554.42,"free":3113.39},{"epoch":26146964,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":554.39,"free":3113.42},{"epoch":26146965,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":554.28,"free":3113.55},{"epoch":26146966,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":554.31,"free":3113.51},{"epoch":26146967,"idl":99.73,"recv":0,"send":0.01,"writ":0.53,"used":554.46,"free":3113.35},{"epoch":26146968,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":553.98,"free":3113.83},{"epoch":26146969,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.76,"free":3114.04},{"epoch":26146970,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":554.25,"free":3113.57},{"epoch":26146971,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.23,"free":3113.59},{"epoch":26146972,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":554.95,"free":3112.86},{"epoch":26146973,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":554.19,"free":3113.62},{"epoch":26146974,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.17,"free":3113.64},{"epoch":26146975,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":554.16,"free":3113.66},{"epoch":26146976,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":554.25,"free":3113.57},{"epoch":26146977,"idl":99.72,"recv":0,"send":0,"writ":0.51,"used":554.69,"free":3113.12},{"epoch":26146978,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":554.3,"free":3113.5},{"epoch":26146979,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":554.29,"free":3113.51},{"epoch":26146980,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":554.31,"free":3113.5},{"epoch":26146981,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":554.27,"free":3113.54},{"epoch":26146982,"idl":99.73,"recv":0,"send":0,"writ":0.38,"used":554.62,"free":3113.2},{"epoch":26146983,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":554.25,"free":3113.57},{"epoch":26146984,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":554.23,"free":3113.59},{"epoch":26146985,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":554.24,"free":3113.59},{"epoch":26146986,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.21,"free":3113.62},{"epoch":26146987,"idl":99.7,"recv":0,"send":0,"writ":0.48,"used":554.55,"free":3113.28},{"epoch":26146988,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":554.17,"free":3113.67},{"epoch":26146989,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":553.95,"free":3113.86},{"epoch":26146990,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":554.02,"free":3113.81},{"epoch":26146991,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":554.09,"free":3113.73},{"epoch":26146992,"idl":99.66,"recv":0,"send":0,"writ":0.4,"used":554.45,"free":3113.37},{"epoch":26146993,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":554.29,"free":3113.52},{"epoch":26146994,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":554.27,"free":3113.53},{"epoch":26146995,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":554.6,"free":3113.22},{"epoch":26146996,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":554.51,"free":3113.3},{"epoch":26146997,"idl":99.81,"recv":0,"send":0,"writ":0.22,"used":554.72,"free":3113.1},{"epoch":26146998,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":554.75,"free":3113.06},{"epoch":26146999,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.19,"free":3113.61},{"epoch":26147000,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":554.45,"free":3113.37},{"epoch":26147001,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":554.43,"free":3113.38},{"epoch":26147002,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.41,"free":3113.4},{"epoch":26147003,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":553.8,"free":3114.01},{"epoch":26147004,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.26,"free":3114.54},{"epoch":26147005,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":554.29,"free":3113.53},{"epoch":26147006,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.3,"free":3113.52},{"epoch":26147007,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.29,"free":3113.52},{"epoch":26147008,"idl":99.72,"recv":0,"send":0,"writ":0.53,"used":554.46,"free":3113.35},{"epoch":26147009,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":554,"free":3113.8},{"epoch":26147010,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":554.03,"free":3113.81},{"epoch":26147011,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.99,"free":3113.84},{"epoch":26147012,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":553.99,"free":3113.85},{"epoch":26147013,"idl":99.59,"recv":0,"send":0,"writ":0.53,"used":554.6,"free":3113.23},{"epoch":26147014,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.43,"free":3113.39},{"epoch":26147015,"idl":99.81,"recv":0,"send":0,"writ":0.35,"used":554.42,"free":3113.41},{"epoch":26147016,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":554.41,"free":3113.42},{"epoch":26147017,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":554.53,"free":3113.3},{"epoch":26147018,"idl":99.73,"recv":0,"send":0,"writ":0.49,"used":555.01,"free":3112.82},{"epoch":26147019,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":554.54,"free":3113.27},{"epoch":26147020,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":554.53,"free":3113.29},{"epoch":26147021,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":554.51,"free":3113.3},{"epoch":26147022,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":554.49,"free":3113.32},{"epoch":26147023,"idl":99.71,"recv":0,"send":0,"writ":0.48,"used":555.23,"free":3112.57},{"epoch":26147024,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":554.69,"free":3113.12},{"epoch":26147025,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":554.22,"free":3113.6},{"epoch":26147026,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.17,"free":3113.64},{"epoch":26147027,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":554.16,"free":3113.65},{"epoch":26147028,"idl":99.7,"recv":0,"send":0,"writ":0.36,"used":554.51,"free":3113.3},{"epoch":26147029,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":554.55,"free":3113.25},{"epoch":26147030,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":554.79,"free":3113.02},{"epoch":26147031,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":554.78,"free":3113.03},{"epoch":26147032,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.75,"free":3113.06},{"epoch":26147033,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":554.74,"free":3113.06},{"epoch":26147034,"idl":95.24,"recv":0.24,"send":0.01,"writ":228.63,"used":567.85,"free":3099.91},{"epoch":26147035,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":557,"free":3110.74},{"epoch":26147036,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":557.18,"free":3110.56},{"epoch":26147037,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":555.32,"free":3112.43},{"epoch":26147038,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.43,"free":3113.32},{"epoch":26147039,"idl":99.69,"recv":0,"send":0,"writ":0.58,"used":552.89,"free":3114.9},{"epoch":26147040,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":551.66,"free":3116.15},{"epoch":26147041,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":551.01,"free":3116.79},{"epoch":26147042,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":551.01,"free":3116.81},{"epoch":26147043,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":550.98,"free":3116.84},{"epoch":26147044,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":551.9,"free":3115.91},{"epoch":26147045,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":550.98,"free":3116.85},{"epoch":26147046,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":550.95,"free":3116.88},{"epoch":26147047,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":550.94,"free":3116.88},{"epoch":26147048,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":550.91,"free":3116.91},{"epoch":26147049,"idl":99.69,"recv":0,"send":0,"writ":0.66,"used":551.49,"free":3116.3},{"epoch":26147050,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":551.37,"free":3116.44},{"epoch":26147051,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":551.32,"free":3116.49},{"epoch":26147052,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":551.29,"free":3116.52},{"epoch":26147053,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":551.28,"free":3116.52},{"epoch":26147054,"idl":99.73,"recv":0,"send":0,"writ":0.48,"used":551.59,"free":3116.21},{"epoch":26147055,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":551.27,"free":3116.54},{"epoch":26147056,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":551.24,"free":3116.57},{"epoch":26147057,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":551.22,"free":3116.58},{"epoch":26147058,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":551.22,"free":3116.58},{"epoch":26147059,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":551.33,"free":3116.46},{"epoch":26147060,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":550.23,"free":3117.58},{"epoch":26147061,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":550.18,"free":3117.63},{"epoch":26147062,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":550.16,"free":3117.64},{"epoch":26147063,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":550.31,"free":3117.49},{"epoch":26147064,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":550.89,"free":3116.9},{"epoch":26147065,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":551.04,"free":3116.76},{"epoch":26147066,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":551.01,"free":3116.79},{"epoch":26147067,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":550.99,"free":3116.8},{"epoch":26147068,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":550.97,"free":3116.82},{"epoch":26147069,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":551.66,"free":3116.12},{"epoch":26147070,"idl":99.82,"recv":0,"send":0,"writ":0.49,"used":551.19,"free":3116.61},{"epoch":26147071,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":551.17,"free":3116.61},{"epoch":26147072,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":551.15,"free":3116.64},{"epoch":26147073,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":551.26,"free":3116.52},{"epoch":26147074,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":551.29,"free":3116.49},{"epoch":26147075,"idl":99.65,"recv":0,"send":0,"writ":0.68,"used":551.65,"free":3116.13},{"epoch":26147076,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":551.26,"free":3116.52},{"epoch":26147077,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":551.24,"free":3116.54},{"epoch":26147078,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":551.22,"free":3116.55},{"epoch":26147079,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":550.97,"free":3116.79},{"epoch":26147080,"idl":99.61,"recv":0,"send":0,"writ":0.68,"used":551.78,"free":3115.99},{"epoch":26147081,"idl":99.21,"recv":0,"send":0,"writ":0.14,"used":551.43,"free":3116.34},{"epoch":26147082,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":551.41,"free":3116.35},{"epoch":26147083,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":551.4,"free":3116.35},{"epoch":26147084,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":551.37,"free":3116.38},{"epoch":26147085,"idl":99.68,"recv":0,"send":0,"writ":0.68,"used":551.48,"free":3116.28},{"epoch":26147086,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":551.1,"free":3116.66},{"epoch":26147087,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":551.28,"free":3116.48},{"epoch":26147088,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":551.24,"free":3116.52},{"epoch":26147089,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":551,"free":3116.75},{"epoch":26147090,"idl":99.67,"recv":0,"send":0,"writ":0.68,"used":551.84,"free":3115.93},{"epoch":26147091,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":551.47,"free":3116.29},{"epoch":26147092,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":551.44,"free":3116.32},{"epoch":26147093,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":551.43,"free":3116.32},{"epoch":26147094,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":551.41,"free":3116.34},{"epoch":26147095,"idl":99.66,"recv":0,"send":0,"writ":0.68,"used":551.76,"free":3116.01},{"epoch":26147096,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":551.41,"free":3116.38},{"epoch":26147097,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":551.38,"free":3116.41},{"epoch":26147098,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.17,"used":551.43,"free":3116.36},{"epoch":26147099,"idl":99.88,"recv":0,"send":0.01,"writ":0.18,"used":551.49,"free":3116.29},{"epoch":26147100,"idl":99.57,"recv":0,"send":0.02,"writ":0.7,"used":550.83,"free":3116.97},{"epoch":26147101,"idl":99.84,"recv":0,"send":0.01,"writ":0.16,"used":550.97,"free":3116.83},{"epoch":26147102,"idl":99.85,"recv":0,"send":0.01,"writ":0.14,"used":550.94,"free":3116.86},{"epoch":26147103,"idl":99.85,"recv":0,"send":0.01,"writ":0.17,"used":550.9,"free":3116.88},{"epoch":26147104,"idl":99.83,"recv":0,"send":0.01,"writ":0.16,"used":550.86,"free":3116.92},{"epoch":26147105,"idl":99.67,"recv":0,"send":0.01,"writ":0.55,"used":551.09,"free":3116.7},{"epoch":26147106,"idl":99.85,"recv":0,"send":0.02,"writ":0.29,"used":549.52,"free":3118.27},{"epoch":26147107,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":549.51,"free":3118.27},{"epoch":26147108,"idl":99.83,"recv":0,"send":0.01,"writ":0.14,"used":549.48,"free":3118.3},{"epoch":26147109,"idl":99.81,"recv":0,"send":0.01,"writ":0.34,"used":551.15,"free":3116.6},{"epoch":26147110,"idl":99.57,"recv":0,"send":0.02,"writ":0.58,"used":551.44,"free":3116.33},{"epoch":26147111,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":551.62,"free":3116.14},{"epoch":26147112,"idl":99.85,"recv":0,"send":0.01,"writ":0.17,"used":551.61,"free":3116.16},{"epoch":26147113,"idl":99.85,"recv":0,"send":0.01,"writ":0.14,"used":551.75,"free":3116.01},{"epoch":26147114,"idl":99.85,"recv":0,"send":0.01,"writ":0.18,"used":551.75,"free":3116},{"epoch":26147115,"idl":99.78,"recv":0,"send":0.01,"writ":0.34,"used":551.5,"free":3116.27},{"epoch":26147116,"idl":99.7,"recv":0,"send":0.02,"writ":0.55,"used":551.81,"free":3115.95},{"epoch":26147117,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":551.43,"free":3116.33},{"epoch":26147118,"idl":99.83,"recv":0,"send":0.01,"writ":0.16,"used":551.42,"free":3116.34},{"epoch":26147119,"idl":99.85,"recv":0,"send":0.01,"writ":0.17,"used":551.37,"free":3116.38},{"epoch":26147120,"idl":99.79,"recv":0,"send":0.01,"writ":0.3,"used":551.66,"free":3116.1},{"epoch":26147121,"idl":99.71,"recv":0,"send":0.01,"writ":0.56,"used":551.48,"free":3116.28},{"epoch":26147122,"idl":99.84,"recv":0,"send":0.01,"writ":0.19,"used":551,"free":3116.76},{"epoch":26147123,"idl":99.86,"recv":0,"send":0.01,"writ":0.16,"used":550.96,"free":3116.79},{"epoch":26147124,"idl":99.86,"recv":0,"send":0.01,"writ":0.16,"used":550.95,"free":3116.8},{"epoch":26147125,"idl":99.78,"recv":0,"send":0.01,"writ":0.3,"used":551.67,"free":3116.09},{"epoch":26147126,"idl":99.72,"recv":0,"send":0.01,"writ":0.58,"used":551.3,"free":3116.46},{"epoch":26147127,"idl":99.87,"recv":0,"send":0.01,"writ":0.15,"used":550.62,"free":3117.13},{"epoch":26147128,"idl":99.87,"recv":0,"send":0.01,"writ":0.16,"used":550.65,"free":3117.1},{"epoch":26147129,"idl":99.87,"recv":0,"send":0.01,"writ":0.16,"used":550.75,"free":3116.99},{"epoch":26147130,"idl":99.8,"recv":0,"send":0.01,"writ":0.29,"used":551.97,"free":3115.8},{"epoch":26147131,"idl":99.72,"recv":0,"send":0.01,"writ":0.56,"used":552.32,"free":3115.44},{"epoch":26147132,"idl":99.85,"recv":0,"send":0.02,"writ":0.19,"used":551.67,"free":3116.09},{"epoch":26147133,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":551.64,"free":3116.11},{"epoch":26147134,"idl":99.87,"recv":0,"send":0.02,"writ":0.2,"used":551.6,"free":3116.15},{"epoch":26147135,"idl":99.83,"recv":0,"send":0.01,"writ":0.32,"used":551.98,"free":3115.78},{"epoch":26147136,"idl":99.73,"recv":0,"send":0.02,"writ":0.61,"used":552.07,"free":3115.68},{"epoch":26147137,"idl":99.88,"recv":0,"send":0.01,"writ":0.18,"used":551.21,"free":3116.54},{"epoch":26147138,"idl":99.85,"recv":0,"send":0.01,"writ":0.2,"used":551.19,"free":3116.56},{"epoch":26147139,"idl":99.81,"recv":0,"send":0.01,"writ":0.41,"used":551.63,"free":3116.09},{"epoch":26147140,"idl":99.66,"recv":0.01,"send":0.04,"writ":0.32,"used":550.31,"free":3117.43},{"epoch":26147141,"idl":99.72,"recv":0,"send":0,"writ":0.44,"used":550.96,"free":3116.78},{"epoch":26147142,"idl":99.88,"recv":0,"send":0.01,"writ":0.3,"used":551.37,"free":3116.36},{"epoch":26147143,"idl":99.9,"recv":0,"send":0.01,"writ":0.18,"used":551.33,"free":3116.4},{"epoch":26147144,"idl":99.92,"recv":0,"send":0.02,"writ":0.18,"used":551.47,"free":3116.26},{"epoch":26147145,"idl":99.83,"recv":0,"send":0.01,"writ":0.48,"used":550.78,"free":3116.96},{"epoch":26147146,"idl":99.78,"recv":0,"send":0.02,"writ":0.47,"used":551.45,"free":3116.28},{"epoch":26147147,"idl":99.9,"recv":0,"send":0.01,"writ":0.3,"used":551.18,"free":3116.55},{"epoch":26147148,"idl":99.92,"recv":0,"send":0.02,"writ":0.15,"used":551.14,"free":3116.59},{"epoch":26147149,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":550.62,"free":3117.11},{"epoch":26147150,"idl":99.83,"recv":0,"send":0.01,"writ":0.31,"used":551.58,"free":3116.16},{"epoch":26147151,"idl":99.93,"recv":0,"send":0.01,"writ":0.16,"used":551.74,"free":3116},{"epoch":26147152,"idl":99.78,"recv":0,"send":0.02,"writ":0.55,"used":551.56,"free":3116.17},{"epoch":26147153,"idl":99.92,"recv":0,"send":0.01,"writ":0.16,"used":551.18,"free":3116.55},{"epoch":26147154,"idl":99.94,"recv":0,"send":0.02,"writ":0.14,"used":551.15,"free":3116.57},{"epoch":26147155,"idl":99.9,"recv":0,"send":0.01,"writ":0.32,"used":551.62,"free":3116.14},{"epoch":26147156,"idl":99.93,"recv":0,"send":0.02,"writ":0.16,"used":551.63,"free":3116.12},{"epoch":26147157,"idl":99.82,"recv":0,"send":0.01,"writ":0.56,"used":551.86,"free":3115.89},{"epoch":26147158,"idl":99.93,"recv":0,"send":0.02,"writ":0.15,"used":551.49,"free":3116.26},{"epoch":26147159,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":551.45,"free":3116.29},{"epoch":26147160,"idl":99.83,"recv":0,"send":0.02,"writ":0.31,"used":551.94,"free":3115.82},{"epoch":26147161,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":551.89,"free":3115.86},{"epoch":26147162,"idl":99.81,"recv":0.01,"send":0.06,"writ":0.56,"used":552.24,"free":3115.5},{"epoch":26147163,"idl":99.93,"recv":0.01,"send":0.11,"writ":0.24,"used":551.36,"free":3116.37},{"epoch":26147164,"idl":99.93,"recv":0,"send":0.01,"writ":0.21,"used":551.48,"free":3116.25},{"epoch":26147165,"idl":99.89,"recv":0,"send":0.02,"writ":0.34,"used":550.98,"free":3116.77},{"epoch":26147166,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":550.93,"free":3116.81},{"epoch":26147167,"idl":99.78,"recv":0,"send":0,"writ":0.62,"used":551.27,"free":3116.47},{"epoch":26147168,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":550.89,"free":3116.84},{"epoch":26147169,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":551.86,"free":3115.85},{"epoch":26147170,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":551.64,"free":3116.08},{"epoch":26147171,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":551.62,"free":3116.11},{"epoch":26147172,"idl":98.5,"recv":0,"send":0,"writ":0.56,"used":552.43,"free":3115.29},{"epoch":26147173,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.27,"free":3115.44},{"epoch":26147174,"idl":99.93,"recv":0.04,"send":1.42,"writ":0.44,"used":552.19,"free":3115.52},{"epoch":26147175,"idl":99.87,"recv":0,"send":0.02,"writ":0.38,"used":552.23,"free":3115.5},{"epoch":26147176,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":552.19,"free":3115.53},{"epoch":26147177,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":551.81,"free":3115.9},{"epoch":26147178,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":550.67,"free":3117.04},{"epoch":26147179,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":550.66,"free":3117.04},{"epoch":26147180,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":551.13,"free":3116.58},{"epoch":26147181,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":551.13,"free":3116.58},{"epoch":26147182,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":551.76,"free":3115.95},{"epoch":26147183,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":551.76,"free":3115.95},{"epoch":26147184,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":551.73,"free":3115.97},{"epoch":26147185,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":551.27,"free":3116.45},{"epoch":26147186,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.19,"free":3116.52},{"epoch":26147187,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":551.61,"free":3116.1},{"epoch":26147188,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.89,"free":3115.81},{"epoch":26147189,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.86,"free":3115.84},{"epoch":26147190,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":551.8,"free":3115.91},{"epoch":26147191,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":551.13,"free":3116.59},{"epoch":26147192,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":551.34,"free":3116.37},{"epoch":26147193,"idl":99.94,"recv":0,"send":0,"writ":0.28,"used":550.5,"free":3117.21},{"epoch":26147194,"idl":99.68,"recv":0,"send":0,"writ":0.14,"used":550.51,"free":3117.2},{"epoch":26147195,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":551.24,"free":3116.48},{"epoch":26147196,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":551.23,"free":3116.48},{"epoch":26147197,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":551.21,"free":3116.5},{"epoch":26147198,"idl":99.42,"recv":0,"send":0,"writ":1.39,"used":551.15,"free":3116.55},{"epoch":26147199,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":550.94,"free":3116.74},{"epoch":26147200,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":550.68,"free":3117.01},{"epoch":26147201,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":550.65,"free":3117.04},{"epoch":26147202,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":550.62,"free":3117.07},{"epoch":26147203,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":549.83,"free":3117.86},{"epoch":26147204,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":549.29,"free":3118.41},{"epoch":26147205,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":550.27,"free":3117.44},{"epoch":26147206,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":550.25,"free":3117.48},{"epoch":26147207,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":550.24,"free":3117.48},{"epoch":26147208,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":551.53,"free":3116.19},{"epoch":26147209,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":551.19,"free":3116.52},{"epoch":26147210,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":551.18,"free":3116.55},{"epoch":26147211,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":551.17,"free":3116.56},{"epoch":26147212,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.14,"free":3116.59},{"epoch":26147213,"idl":99.79,"recv":0,"send":0,"writ":0.5,"used":552,"free":3115.72},{"epoch":26147214,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":551.35,"free":3116.38},{"epoch":26147215,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":551.12,"free":3116.63},{"epoch":26147216,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.12,"free":3116.63},{"epoch":26147217,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":551.3,"free":3116.45},{"epoch":26147218,"idl":99.81,"recv":0,"send":0,"writ":0.47,"used":551.75,"free":3115.99},{"epoch":26147219,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":551.51,"free":3116.23},{"epoch":26147220,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":551.03,"free":3116.72},{"epoch":26147221,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":550.99,"free":3116.76},{"epoch":26147222,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":550.99,"free":3116.76},{"epoch":26147223,"idl":99.82,"recv":0,"send":0,"writ":0.5,"used":551.31,"free":3116.43},{"epoch":26147224,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":550.94,"free":3116.79},{"epoch":26147225,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":551.19,"free":3116.56},{"epoch":26147226,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.17,"free":3116.57},{"epoch":26147227,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":551.15,"free":3116.59},{"epoch":26147228,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":551.41,"free":3116.32},{"epoch":26147229,"idl":99.84,"recv":0,"send":0,"writ":0.41,"used":551.38,"free":3116.33},{"epoch":26147230,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":551.37,"free":3116.36},{"epoch":26147231,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.29,"free":3116.43},{"epoch":26147232,"idl":99.67,"recv":0,"send":0,"writ":0.14,"used":551.26,"free":3116.46},{"epoch":26147233,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":551.84,"free":3115.88},{"epoch":26147234,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":551.48,"free":3116.23},{"epoch":26147235,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":550.52,"free":3117.2},{"epoch":26147236,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":550.46,"free":3117.26},{"epoch":26147237,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":550.45,"free":3117.26},{"epoch":26147238,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":550.44,"free":3117.27},{"epoch":26147239,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":551.67,"free":3116.04},{"epoch":26147240,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":551.17,"free":3116.55},{"epoch":26147241,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.13,"free":3116.58},{"epoch":26147242,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":551.11,"free":3116.6},{"epoch":26147243,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.25,"free":3116.46},{"epoch":26147244,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":551.83,"free":3115.88},{"epoch":26147245,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":551.75,"free":3115.97},{"epoch":26147246,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":551.74,"free":3115.97},{"epoch":26147247,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.71,"free":3116},{"epoch":26147248,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":551.68,"free":3116.03},{"epoch":26147249,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":552.16,"free":3115.55},{"epoch":26147250,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":551.41,"free":3116.31},{"epoch":26147251,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":551.38,"free":3116.34},{"epoch":26147252,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":551.37,"free":3116.34},{"epoch":26147253,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":551.34,"free":3116.37},{"epoch":26147254,"idl":99.82,"recv":0,"send":0,"writ":0.53,"used":552.11,"free":3115.59},{"epoch":26147255,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":551.54,"free":3116.17},{"epoch":26147256,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.49,"free":3116.22},{"epoch":26147257,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.49,"free":3116.22},{"epoch":26147258,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":551.47,"free":3116.23},{"epoch":26147259,"idl":99.7,"recv":0,"send":0,"writ":0.67,"used":552.04,"free":3115.64},{"epoch":26147260,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":551.69,"free":3116.01},{"epoch":26147261,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":551.66,"free":3116.03},{"epoch":26147262,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":551.63,"free":3116.05},{"epoch":26147263,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":551.62,"free":3116.06},{"epoch":26147264,"idl":99.8,"recv":0,"send":0,"writ":0.48,"used":551.95,"free":3115.73},{"epoch":26147265,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":550.16,"free":3117.54},{"epoch":26147266,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":550.11,"free":3117.58},{"epoch":26147267,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":550.18,"free":3117.51},{"epoch":26147268,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":550.26,"free":3117.43},{"epoch":26147269,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":550.69,"free":3116.99},{"epoch":26147270,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":551.96,"free":3115.73},{"epoch":26147271,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.95,"free":3115.74},{"epoch":26147272,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":551.94,"free":3115.75},{"epoch":26147273,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.92,"free":3115.77},{"epoch":26147274,"idl":99.79,"recv":0,"send":0,"writ":0.39,"used":552.24,"free":3115.44},{"epoch":26147275,"idl":99.84,"recv":0,"send":0,"writ":0.49,"used":551.74,"free":3115.96},{"epoch":26147276,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":551.63,"free":3116.06},{"epoch":26147277,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.6,"free":3116.08},{"epoch":26147278,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":551.59,"free":3116.09},{"epoch":26147279,"idl":99.82,"recv":0,"send":0,"writ":0.37,"used":551.91,"free":3115.77},{"epoch":26147280,"idl":99.79,"recv":0,"send":0,"writ":0.48,"used":550.52,"free":3117.17},{"epoch":26147281,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":550.5,"free":3117.19},{"epoch":26147282,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":550.49,"free":3117.2},{"epoch":26147283,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":550.46,"free":3117.22},{"epoch":26147284,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":550.45,"free":3117.23},{"epoch":26147285,"idl":99.71,"recv":0,"send":0,"writ":0.7,"used":552.54,"free":3115.15},{"epoch":26147286,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.9,"free":3115.78},{"epoch":26147287,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":551.88,"free":3115.8},{"epoch":26147288,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.86,"free":3115.81},{"epoch":26147289,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":551.61,"free":3116.04},{"epoch":26147290,"idl":99.75,"recv":0,"send":0,"writ":0.71,"used":552.1,"free":3115.57},{"epoch":26147291,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":551.58,"free":3116.07},{"epoch":26147292,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":551.56,"free":3116.1},{"epoch":26147293,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":551.54,"free":3116.11},{"epoch":26147294,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":551.67,"free":3115.99},{"epoch":26147295,"idl":99.75,"recv":0,"send":0,"writ":0.73,"used":551.88,"free":3115.8},{"epoch":26147296,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":551.44,"free":3116.24},{"epoch":26147297,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":551.42,"free":3116.25},{"epoch":26147298,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":551.39,"free":3116.3},{"epoch":26147299,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":551.37,"free":3116.31},{"epoch":26147300,"idl":99.75,"recv":0,"send":0,"writ":0.75,"used":551.88,"free":3115.82},{"epoch":26147301,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":551.83,"free":3115.87},{"epoch":26147302,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.81,"free":3115.88},{"epoch":26147303,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":551.79,"free":3115.9},{"epoch":26147304,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.84,"free":3115.85},{"epoch":26147305,"idl":99.75,"recv":0,"send":0,"writ":0.73,"used":551.92,"free":3115.79},{"epoch":26147306,"idl":99.95,"recv":0.03,"send":0.95,"writ":0.34,"used":550.16,"free":3117.53},{"epoch":26147307,"idl":99.94,"recv":0.03,"send":1.16,"writ":0.31,"used":550.21,"free":3117.46},{"epoch":26147308,"idl":99.95,"recv":0.04,"send":1.53,"writ":0.2,"used":550.23,"free":3117.44},{"epoch":26147309,"idl":99.94,"recv":0,"send":0.04,"writ":0.26,"used":550.17,"free":3117.49},{"epoch":26147310,"idl":99.76,"recv":0,"send":0,"writ":0.7,"used":551.71,"free":3115.96},{"epoch":26147311,"idl":99.94,"recv":0.04,"send":1.77,"writ":0.16,"used":551.38,"free":3116.29},{"epoch":26147312,"idl":99.95,"recv":0.01,"send":0.37,"writ":0.45,"used":551.44,"free":3116.21},{"epoch":26147313,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":551.42,"free":3116.23},{"epoch":26147314,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.39,"free":3116.26},{"epoch":26147315,"idl":99.74,"recv":0,"send":0,"writ":0.72,"used":551.99,"free":3115.68},{"epoch":26147316,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":550.38,"free":3117.28},{"epoch":26147317,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":550.37,"free":3117.28},{"epoch":26147318,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":550.34,"free":3117.31},{"epoch":26147319,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":551.8,"free":3115.82},{"epoch":26147320,"idl":99.76,"recv":0,"send":0,"writ":0.46,"used":552.2,"free":3115.44},{"epoch":26147321,"idl":99.84,"recv":0,"send":0,"writ":0.41,"used":551.52,"free":3116.11},{"epoch":26147322,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.58,"free":3116.05},{"epoch":26147323,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":551.68,"free":3115.95},{"epoch":26147324,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":551.64,"free":3115.98},{"epoch":26147325,"idl":99.81,"recv":0,"send":0,"writ":0.37,"used":552.13,"free":3115.5},{"epoch":26147326,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":552.55,"free":3115.09},{"epoch":26147327,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":551.86,"free":3115.77},{"epoch":26147328,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.83,"free":3115.79},{"epoch":26147329,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":551.44,"free":3116.18},{"epoch":26147330,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":552.03,"free":3115.6},{"epoch":26147331,"idl":99.82,"recv":0,"send":0,"writ":0.56,"used":552.38,"free":3115.26},{"epoch":26147332,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":552.01,"free":3115.61},{"epoch":26147333,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":551.98,"free":3115.64},{"epoch":26147334,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.08,"free":3115.54},{"epoch":26147335,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":551.91,"free":3115.72},{"epoch":26147336,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":552.25,"free":3115.38},{"epoch":26147337,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":551.86,"free":3115.77},{"epoch":26147338,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":551.6,"free":3116.02},{"epoch":26147339,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":550.81,"free":3116.81},{"epoch":26147340,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":550.58,"free":3117.05},{"epoch":26147341,"idl":99.81,"recv":0,"send":0,"writ":0.67,"used":551.27,"free":3116.37},{"epoch":26147342,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":551.28,"free":3116.35},{"epoch":26147343,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.25,"free":3116.38},{"epoch":26147344,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":551.31,"free":3116.3},{"epoch":26147345,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":550.93,"free":3116.7},{"epoch":26147346,"idl":99.8,"recv":0,"send":0,"writ":0.46,"used":551,"free":3116.63},{"epoch":26147347,"idl":99.95,"recv":0,"send":0,"writ":0.32,"used":549.89,"free":3117.73},{"epoch":26147348,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":549.88,"free":3117.73},{"epoch":26147349,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":551.09,"free":3116.5},{"epoch":26147350,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":550.39,"free":3117.22},{"epoch":26147351,"idl":99.81,"recv":0,"send":0,"writ":0.46,"used":550.74,"free":3116.87},{"epoch":26147352,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":550.58,"free":3117.02},{"epoch":26147353,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":550.56,"free":3117.04},{"epoch":26147354,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":550.55,"free":3117.06},{"epoch":26147355,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":551.28,"free":3116.35},{"epoch":26147356,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":551.54,"free":3116.09},{"epoch":26147357,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":550.69,"free":3116.93},{"epoch":26147358,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":550.71,"free":3116.91},{"epoch":26147359,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":550.7,"free":3116.91},{"epoch":26147360,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":550,"free":3117.63},{"epoch":26147361,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":549.95,"free":3117.68},{"epoch":26147362,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":551.86,"free":3115.76},{"epoch":26147363,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":551.14,"free":3116.48},{"epoch":26147364,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.12,"free":3116.5},{"epoch":26147365,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":549.45,"free":3118.18},{"epoch":26147366,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":549.39,"free":3118.23},{"epoch":26147367,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":550.9,"free":3116.73},{"epoch":26147368,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":550.83,"free":3116.79},{"epoch":26147369,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":550.81,"free":3116.81},{"epoch":26147370,"idl":99.91,"recv":0,"send":0,"writ":0.32,"used":551.05,"free":3116.57},{"epoch":26147371,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.13,"free":3116.5},{"epoch":26147372,"idl":99.81,"recv":0,"send":0,"writ":0.59,"used":551.75,"free":3115.87},{"epoch":26147373,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":551.44,"free":3116.17},{"epoch":26147374,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":551.41,"free":3116.2},{"epoch":26147375,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":551.42,"free":3116.2},{"epoch":26147376,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.39,"free":3116.23},{"epoch":26147377,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":551.74,"free":3115.88},{"epoch":26147378,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":551.37,"free":3116.24},{"epoch":26147379,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":551.34,"free":3116.25},{"epoch":26147380,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":551.36,"free":3116.24},{"epoch":26147381,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":551.32,"free":3116.28},{"epoch":26147382,"idl":99.83,"recv":0,"send":0,"writ":0.54,"used":551.72,"free":3115.87},{"epoch":26147383,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":550.79,"free":3116.8},{"epoch":26147384,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":550.78,"free":3116.8},{"epoch":26147385,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":551.1,"free":3116.5},{"epoch":26147386,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":551.19,"free":3116.4},{"epoch":26147387,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":551.45,"free":3116.14},{"epoch":26147388,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":550.88,"free":3116.71},{"epoch":26147389,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":551.07,"free":3116.52},{"epoch":26147390,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":551.35,"free":3116.24},{"epoch":26147391,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":551.34,"free":3116.25},{"epoch":26147392,"idl":99.82,"recv":0,"send":0,"writ":0.58,"used":551.73,"free":3115.86},{"epoch":26147393,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.54,"free":3116.04},{"epoch":26147394,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":551.52,"free":3116.05},{"epoch":26147395,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":551.53,"free":3116.07},{"epoch":26147396,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":551.5,"free":3116.09},{"epoch":26147397,"idl":96.33,"recv":0.3,"send":0.01,"writ":64.2,"used":559.55,"free":3108.09},{"epoch":26147398,"idl":98.71,"recv":0,"send":0,"writ":193.8,"used":555.87,"free":3111.89},{"epoch":26147399,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":552.77,"free":3114.75},{"epoch":26147400,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":553.76,"free":3113.78},{"epoch":26147401,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.74,"free":3113.79},{"epoch":26147402,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":553.73,"free":3113.8},{"epoch":26147403,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":552,"free":3115.56},{"epoch":26147404,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.53,"free":3116.03},{"epoch":26147405,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":551.35,"free":3116.22},{"epoch":26147406,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":551.27,"free":3116.3},{"epoch":26147407,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":551.25,"free":3116.32},{"epoch":26147408,"idl":99.82,"recv":0,"send":0,"writ":0.53,"used":551.4,"free":3116.2},{"epoch":26147409,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":551.45,"free":3116.12},{"epoch":26147410,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":551.8,"free":3115.79},{"epoch":26147411,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":551.88,"free":3115.7},{"epoch":26147412,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.88,"free":3115.7},{"epoch":26147413,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":552.06,"free":3115.53},{"epoch":26147414,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":551.59,"free":3116},{"epoch":26147415,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":550.4,"free":3117.2},{"epoch":26147416,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":550.32,"free":3117.28},{"epoch":26147417,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":550.55,"free":3117.05},{"epoch":26147418,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.51,"used":551.49,"free":3116.11},{"epoch":26147419,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":551.1,"free":3116.5},{"epoch":26147420,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":551.59,"free":3116.03},{"epoch":26147421,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.58,"free":3116.04},{"epoch":26147422,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.57,"free":3116.04},{"epoch":26147423,"idl":99.82,"recv":0,"send":0,"writ":0.56,"used":552.06,"free":3115.55},{"epoch":26147424,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":551.78,"free":3115.83},{"epoch":26147425,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":551.78,"free":3115.84},{"epoch":26147426,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":551.76,"free":3115.86},{"epoch":26147427,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.73,"free":3115.88},{"epoch":26147428,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":552.07,"free":3115.54},{"epoch":26147429,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":551.78,"free":3115.83},{"epoch":26147430,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":551.88,"free":3115.74},{"epoch":26147431,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":551.85,"free":3115.77},{"epoch":26147432,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":551.85,"free":3115.77},{"epoch":26147433,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":552.15,"free":3115.46},{"epoch":26147434,"idl":99.94,"recv":0,"send":0,"writ":0.36,"used":551.56,"free":3116.04},{"epoch":26147435,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":551.57,"free":3116.05},{"epoch":26147436,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":551.55,"free":3116.07},{"epoch":26147437,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.54,"free":3116.07},{"epoch":26147438,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":551.51,"free":3116.11},{"epoch":26147439,"idl":99.68,"recv":0,"send":0,"writ":0.68,"used":552.22,"free":3115.37},{"epoch":26147440,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":550.53,"free":3117.08},{"epoch":26147441,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":550.49,"free":3117.11},{"epoch":26147442,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":550.47,"free":3117.13},{"epoch":26147443,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":550.57,"free":3117.02},{"epoch":26147444,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":551.7,"free":3115.92},{"epoch":26147445,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":551.85,"free":3115.79},{"epoch":26147446,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.84,"free":3115.8},{"epoch":26147447,"idl":99.93,"recv":0,"send":0.01,"writ":0.18,"used":551.82,"free":3115.81},{"epoch":26147448,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.79,"free":3115.84},{"epoch":26147449,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":551.6,"free":3116.03},{"epoch":26147450,"idl":99.87,"recv":0,"send":0,"writ":0.37,"used":551.28,"free":3116.36},{"epoch":26147451,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":551.27,"free":3116.37},{"epoch":26147452,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":551.25,"free":3116.38},{"epoch":26147453,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":551.23,"free":3116.4},{"epoch":26147454,"idl":99.8,"recv":0,"send":0,"writ":0.51,"used":551.83,"free":3115.79},{"epoch":26147455,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":552.01,"free":3115.63},{"epoch":26147456,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":552.1,"free":3115.53},{"epoch":26147457,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":552.1,"free":3115.53},{"epoch":26147458,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.09,"free":3115.54},{"epoch":26147459,"idl":99.78,"recv":0,"send":0,"writ":0.52,"used":552.49,"free":3115.13},{"epoch":26147460,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":552.06,"free":3115.57},{"epoch":26147461,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":552.05,"free":3115.58},{"epoch":26147462,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":552.03,"free":3115.6},{"epoch":26147463,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552,"free":3115.62},{"epoch":26147464,"idl":99.82,"recv":0,"send":0,"writ":0.49,"used":552.39,"free":3115.23},{"epoch":26147465,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":552.01,"free":3115.63},{"epoch":26147466,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":551.98,"free":3115.66},{"epoch":26147467,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.96,"free":3115.67},{"epoch":26147468,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":551.94,"free":3115.69},{"epoch":26147469,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.54,"used":552.43,"free":3115.17},{"epoch":26147470,"idl":99.88,"recv":0,"send":0,"writ":0.41,"used":552.02,"free":3115.6},{"epoch":26147471,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552,"free":3115.61},{"epoch":26147472,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.98,"free":3115.63},{"epoch":26147473,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":551.96,"free":3115.64},{"epoch":26147474,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":552.25,"free":3115.36},{"epoch":26147475,"idl":99.91,"recv":0,"send":0,"writ":0.51,"used":552.18,"free":3115.44},{"epoch":26147476,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.37,"free":3115.25},{"epoch":26147477,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":552.25,"free":3115.36},{"epoch":26147478,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":552.09,"free":3115.51},{"epoch":26147479,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.08,"free":3115.52},{"epoch":26147480,"idl":99.74,"recv":0,"send":0,"writ":0.68,"used":552.77,"free":3114.85},{"epoch":26147481,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.07,"free":3115.55},{"epoch":26147482,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":552.05,"free":3115.57},{"epoch":26147483,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":552.02,"free":3115.58},{"epoch":26147484,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.02,"free":3115.58},{"epoch":26147485,"idl":99.73,"recv":0.03,"send":0.16,"writ":1.2,"used":554.16,"free":3113.42},{"epoch":26147486,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":554.46,"free":3113.1},{"epoch":26147487,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.45,"free":3113.1},{"epoch":26147488,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":554.43,"free":3113.12},{"epoch":26147489,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":554.25,"free":3113.29},{"epoch":26147490,"idl":99.78,"recv":0,"send":0,"writ":0.7,"used":554.31,"free":3113.25},{"epoch":26147491,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.87,"free":3113.69},{"epoch":26147492,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":553.84,"free":3113.71},{"epoch":26147493,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.83,"free":3113.72},{"epoch":26147494,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":553.91,"free":3113.63},{"epoch":26147495,"idl":99.74,"recv":0,"send":0,"writ":0.7,"used":554.57,"free":3112.98},{"epoch":26147496,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.2,"free":3113.35},{"epoch":26147497,"idl":97.32,"recv":0,"send":0,"writ":0.17,"used":554.19,"free":3113.35},{"epoch":26147498,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.17,"free":3113.37},{"epoch":26147499,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":553.67,"free":3113.84},{"epoch":26147500,"idl":99.77,"recv":0,"send":0,"writ":0.61,"used":553.96,"free":3113.57},{"epoch":26147501,"idl":99.95,"recv":0,"send":0,"writ":0.22,"used":553.13,"free":3114.4},{"epoch":26147502,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":553.11,"free":3114.41},{"epoch":26147503,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":553.09,"free":3114.43},{"epoch":26147504,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.07,"free":3114.45},{"epoch":26147505,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":554.54,"free":3113.01},{"epoch":26147506,"idl":99.94,"recv":0,"send":0,"writ":0.31,"used":553.9,"free":3113.64},{"epoch":26147507,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":553.95,"free":3113.59},{"epoch":26147508,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.92,"free":3113.61},{"epoch":26147509,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":553.74,"free":3113.79},{"epoch":26147510,"idl":99.75,"recv":0,"send":0,"writ":0.71,"used":554.51,"free":3113.03},{"epoch":26147511,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":554.13,"free":3113.41},{"epoch":26147512,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":554.11,"free":3113.43},{"epoch":26147513,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.09,"free":3113.44},{"epoch":26147514,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":554.09,"free":3113.44},{"epoch":26147515,"idl":99.71,"recv":0,"send":0,"writ":0.45,"used":553.25,"free":3114.3},{"epoch":26147516,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":553.91,"free":3113.63},{"epoch":26147517,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":553.64,"free":3113.9},{"epoch":26147518,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":553.7,"free":3113.83},{"epoch":26147519,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.68,"free":3113.85},{"epoch":26147520,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":553.92,"free":3113.63},{"epoch":26147521,"idl":99.81,"recv":0,"send":0,"writ":0.52,"used":553.29,"free":3114.25},{"epoch":26147522,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.65,"free":3114.89},{"epoch":26147523,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.62,"free":3114.91},{"epoch":26147524,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":552.61,"free":3114.92},{"epoch":26147525,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":554.06,"free":3113.48},{"epoch":26147526,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":554.56,"free":3112.98},{"epoch":26147527,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":554.37,"free":3113.16},{"epoch":26147528,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.44,"free":3113.09},{"epoch":26147529,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":554.19,"free":3113.32},{"epoch":26147530,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":554.41,"free":3113.12},{"epoch":26147531,"idl":99.8,"recv":0,"send":0,"writ":0.5,"used":553.94,"free":3113.59},{"epoch":26147532,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":553.14,"free":3114.38},{"epoch":26147533,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.11,"free":3114.4},{"epoch":26147534,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":553.09,"free":3114.42},{"epoch":26147535,"idl":99.85,"recv":0,"send":0,"writ":0.37,"used":553.56,"free":3113.96},{"epoch":26147536,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":553.89,"free":3113.63},{"epoch":26147537,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":553.53,"free":3113.98},{"epoch":26147538,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":553.7,"free":3113.81},{"epoch":26147539,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":553.7,"free":3113.81},{"epoch":26147540,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":553.95,"free":3113.57},{"epoch":26147541,"idl":99.75,"recv":0,"send":0,"writ":0.48,"used":554.51,"free":3113.01},{"epoch":26147542,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":554.4,"free":3113.12},{"epoch":26147543,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":554.37,"free":3113.14},{"epoch":26147544,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":554.36,"free":3113.15},{"epoch":26147545,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":554.35,"free":3113.17},{"epoch":26147546,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":554.69,"free":3112.83},{"epoch":26147547,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":554.31,"free":3113.21},{"epoch":26147548,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":554.3,"free":3113.21},{"epoch":26147549,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":554.4,"free":3113.1},{"epoch":26147550,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":554.48,"free":3113.05},{"epoch":26147551,"idl":99.74,"recv":0,"send":0,"writ":0.45,"used":554.72,"free":3112.8},{"epoch":26147552,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":553.94,"free":3113.58},{"epoch":26147553,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":553.91,"free":3113.6},{"epoch":26147554,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":553.9,"free":3113.61},{"epoch":26147555,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":554.13,"free":3113.39},{"epoch":26147556,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":554.12,"free":3113.39},{"epoch":26147557,"idl":98.94,"recv":0,"send":0,"writ":0.55,"used":554.99,"free":3112.52},{"epoch":26147558,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":554.31,"free":3113.2},{"epoch":26147559,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":554.33,"free":3113.16},{"epoch":26147560,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":554.19,"free":3113.3},{"epoch":26147561,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":554.19,"free":3113.3},{"epoch":26147562,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":554.92,"free":3112.57},{"epoch":26147563,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":554.64,"free":3112.84},{"epoch":26147564,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":554.62,"free":3112.87},{"epoch":26147565,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":554.14,"free":3113.37},{"epoch":26147566,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":554.09,"free":3113.42},{"epoch":26147567,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":553.24,"free":3114.28},{"epoch":26147568,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":552.58,"free":3114.94},{"epoch":26147569,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":552.62,"free":3114.9},{"epoch":26147570,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":552.99,"free":3114.55},{"epoch":26147571,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":552.97,"free":3114.56},{"epoch":26147572,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":553.98,"free":3113.55},{"epoch":26147573,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":553.41,"free":3114.11},{"epoch":26147574,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":553.41,"free":3114.11},{"epoch":26147575,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":554.36,"free":3113.17},{"epoch":26147576,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":554.36,"free":3113.17},{"epoch":26147577,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":554.37,"free":3113.16},{"epoch":26147578,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":553.57,"free":3113.95},{"epoch":26147579,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":553.56,"free":3113.96},{"epoch":26147580,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":554.28,"free":3113.25},{"epoch":26147581,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":554.43,"free":3113.1},{"epoch":26147582,"idl":99.73,"recv":0,"send":0,"writ":0.53,"used":554.79,"free":3112.74},{"epoch":26147583,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":554.42,"free":3113.09},{"epoch":26147584,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":554.39,"free":3113.12},{"epoch":26147585,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":554.4,"free":3113.12},{"epoch":26147586,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":554.38,"free":3113.15},{"epoch":26147587,"idl":99.74,"recv":0,"send":0,"writ":0.46,"used":554.35,"free":3113.16},{"epoch":26147588,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":553.1,"free":3114.41},{"epoch":26147589,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":554.31,"free":3113.18},{"epoch":26147590,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":554.31,"free":3113.19},{"epoch":26147591,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":554.3,"free":3113.2},{"epoch":26147592,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":554.8,"free":3112.7},{"epoch":26147593,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":553.91,"free":3113.57},{"epoch":26147594,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":553.91,"free":3113.57},{"epoch":26147595,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":554.63,"free":3112.86},{"epoch":26147596,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":554.62,"free":3112.87},{"epoch":26147597,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":554.6,"free":3112.89},{"epoch":26147598,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":554.91,"free":3112.58},{"epoch":26147599,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":554.54,"free":3112.94},{"epoch":26147600,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":554.06,"free":3113.44},{"epoch":26147601,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":554.02,"free":3113.47},{"epoch":26147602,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.01,"free":3113.48},{"epoch":26147603,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":554.88,"free":3112.6},{"epoch":26147604,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":554.63,"free":3112.86},{"epoch":26147605,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":554.87,"free":3112.65},{"epoch":26147606,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":554.85,"free":3112.66},{"epoch":26147607,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":554.83,"free":3112.68},{"epoch":26147608,"idl":99.73,"recv":0,"send":0,"writ":0.53,"used":555.01,"free":3112.5},{"epoch":26147609,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":554.53,"free":3112.97},{"epoch":26147610,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":554.55,"free":3112.96},{"epoch":26147611,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":554.51,"free":3113},{"epoch":26147612,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":554.5,"free":3113},{"epoch":26147613,"idl":99.74,"recv":0,"send":0,"writ":0.52,"used":555.17,"free":3112.33},{"epoch":26147614,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":554.93,"free":3112.57},{"epoch":26147615,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":554.91,"free":3112.6},{"epoch":26147616,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":554.9,"free":3112.61},{"epoch":26147617,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":554.87,"free":3112.63},{"epoch":26147618,"idl":99.71,"recv":0,"send":0,"writ":0.48,"used":555.54,"free":3111.96},{"epoch":26147619,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":554.57,"free":3112.9},{"epoch":26147620,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":554.57,"free":3112.93},{"epoch":26147621,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":554.54,"free":3112.95},{"epoch":26147622,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":554.53,"free":3112.96},{"epoch":26147623,"idl":99.73,"recv":0,"send":0,"writ":0.5,"used":555.07,"free":3112.41},{"epoch":26147624,"idl":99.87,"recv":0,"send":0.01,"writ":0.2,"used":554.89,"free":3112.59},{"epoch":26147625,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":554.87,"free":3112.61},{"epoch":26147626,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":554.86,"free":3112.62},{"epoch":26147627,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":554.83,"free":3112.65},{"epoch":26147628,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":555.1,"free":3112.37},{"epoch":26147629,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":554.4,"free":3113.07},{"epoch":26147630,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":554.53,"free":3112.95},{"epoch":26147631,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.57,"free":3112.91},{"epoch":26147632,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":554.68,"free":3112.8},{"epoch":26147633,"idl":99.72,"recv":0,"send":0,"writ":0.39,"used":555.02,"free":3112.45},{"epoch":26147634,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":554.87,"free":3112.6},{"epoch":26147635,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":554.63,"free":3112.86},{"epoch":26147636,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":554.6,"free":3112.88},{"epoch":26147637,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":554.58,"free":3112.89},{"epoch":26147638,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":554.55,"free":3112.92},{"epoch":26147639,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":555.06,"free":3112.41},{"epoch":26147640,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":553.73,"free":3113.75},{"epoch":26147641,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":553.28,"free":3114.2},{"epoch":26147642,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":553.38,"free":3114.09},{"epoch":26147643,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":553.41,"free":3114.06},{"epoch":26147644,"idl":99.73,"recv":0,"send":0,"writ":0.53,"used":554.08,"free":3113.39},{"epoch":26147645,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":553.16,"free":3114.33},{"epoch":26147646,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":553.12,"free":3114.36},{"epoch":26147647,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":553.11,"free":3114.37},{"epoch":26147648,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":553.08,"free":3114.4},{"epoch":26147649,"idl":99.65,"recv":0,"send":0,"writ":0.66,"used":554.14,"free":3113.3},{"epoch":26147650,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":553.78,"free":3113.68},{"epoch":26147651,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.77,"free":3113.69},{"epoch":26147652,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.84,"free":3113.62},{"epoch":26147653,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":553.91,"free":3113.54},{"epoch":26147654,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":554.63,"free":3112.82},{"epoch":26147655,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":553.17,"free":3114.29},{"epoch":26147656,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":553.13,"free":3114.33},{"epoch":26147657,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":553.1,"free":3114.36},{"epoch":26147658,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":553.06,"free":3114.39},{"epoch":26147659,"idl":99.73,"recv":0,"send":0,"writ":0.48,"used":553.39,"free":3114.05},{"epoch":26147660,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":554.3,"free":3113.16},{"epoch":26147661,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":554.24,"free":3113.22},{"epoch":26147662,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.4,"free":3113.05},{"epoch":26147663,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":554.38,"free":3113.06},{"epoch":26147664,"idl":99.71,"recv":0,"send":0,"writ":0.48,"used":554.55,"free":3112.89},{"epoch":26147665,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":554.1,"free":3113.36},{"epoch":26147666,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":554.08,"free":3113.37},{"epoch":26147667,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":554.05,"free":3113.39},{"epoch":26147668,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":554.04,"free":3113.42},{"epoch":26147669,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":554.14,"free":3113.31},{"epoch":26147670,"idl":99.76,"recv":0,"send":0,"writ":0.47,"used":553.76,"free":3113.72},{"epoch":26147671,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":553.76,"free":3113.72},{"epoch":26147672,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":553.88,"free":3113.6},{"epoch":26147673,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":553.9,"free":3113.57},{"epoch":26147674,"idl":99.73,"recv":0,"send":0,"writ":0.38,"used":554.66,"free":3112.8},{"epoch":26147675,"idl":99.83,"recv":0,"send":0,"writ":0.48,"used":554.13,"free":3113.36},{"epoch":26147676,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":554.12,"free":3113.37},{"epoch":26147677,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":554.08,"free":3113.4},{"epoch":26147678,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":554.08,"free":3113.41},{"epoch":26147679,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":554.04,"free":3113.42},{"epoch":26147680,"idl":99.69,"recv":0,"send":0,"writ":0.67,"used":554.64,"free":3112.84},{"epoch":26147681,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":554.27,"free":3113.2},{"epoch":26147682,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.24,"free":3113.22},{"epoch":26147683,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":554.23,"free":3113.23},{"epoch":26147684,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":554.36,"free":3113.1},{"epoch":26147685,"idl":99.68,"recv":0,"send":0,"writ":0.68,"used":554.58,"free":3112.9},{"epoch":26147686,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":554.17,"free":3113.3},{"epoch":26147687,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.14,"free":3113.33},{"epoch":26147688,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":554.11,"free":3113.36},{"epoch":26147689,"idl":99.85,"recv":0,"send":0.01,"writ":0.17,"used":553.94,"free":3113.51},{"epoch":26147690,"idl":99.69,"recv":0,"send":0,"writ":0.72,"used":554.64,"free":3112.83},{"epoch":26147691,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":554.27,"free":3113.2},{"epoch":26147692,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":554.26,"free":3113.2},{"epoch":26147693,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.38,"free":3113.08},{"epoch":26147694,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":554.39,"free":3113.06},{"epoch":26147695,"idl":99.68,"recv":0,"send":0,"writ":0.71,"used":554.88,"free":3112.6},{"epoch":26147696,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.36,"free":3113.12},{"epoch":26147697,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":554.35,"free":3113.13},{"epoch":26147698,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":554.32,"free":3113.16},{"epoch":26147699,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":554.3,"free":3113.17},{"epoch":26147700,"idl":99.71,"recv":0,"send":0,"writ":0.74,"used":554.11,"free":3113.38},{"epoch":26147701,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":554.53,"free":3112.96},{"epoch":26147702,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":554.51,"free":3112.97},{"epoch":26147703,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.57,"free":3112.9},{"epoch":26147704,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.66,"free":3112.82},{"epoch":26147705,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":554.83,"free":3112.66},{"epoch":26147706,"idl":99.94,"recv":0,"send":0,"writ":0.27,"used":554.62,"free":3112.86},{"epoch":26147707,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.6,"free":3112.88},{"epoch":26147708,"idl":99.95,"recv":0.01,"send":0.01,"writ":0.14,"used":554.55,"free":3112.93},{"epoch":26147709,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":554.37,"free":3113.08},{"epoch":26147710,"idl":99.77,"recv":0,"send":0,"writ":0.64,"used":554.81,"free":3112.66},{"epoch":26147711,"idl":99.95,"recv":0,"send":0.01,"writ":0.21,"used":554.13,"free":3113.33},{"epoch":26147712,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":554.08,"free":3113.38},{"epoch":26147713,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.06,"free":3113.39},{"epoch":26147714,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.03,"free":3113.43},{"epoch":26147715,"idl":99.78,"recv":0,"send":0,"writ":0.37,"used":554.58,"free":3112.9},{"epoch":26147716,"idl":99.88,"recv":0,"send":0,"writ":0.52,"used":553.62,"free":3113.85},{"epoch":26147717,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":553.49,"free":3113.98},{"epoch":26147718,"idl":99.97,"recv":0,"send":0,"writ":0.14,"used":553.59,"free":3113.87},{"epoch":26147719,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":553.64,"free":3113.82},{"epoch":26147720,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":553.4,"free":3114.08},{"epoch":26147721,"idl":99.83,"recv":0,"send":0,"writ":0.53,"used":554.54,"free":3112.93},{"epoch":26147722,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":554.33,"free":3113.13},{"epoch":26147723,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.32,"free":3113.15},{"epoch":26147724,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.29,"free":3113.16},{"epoch":26147725,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":554.54,"free":3112.94},{"epoch":26147726,"idl":99.85,"recv":0,"send":0,"writ":0.52,"used":554.87,"free":3112.6},{"epoch":26147727,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.49,"free":3112.98},{"epoch":26147728,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.48,"free":3112.99},{"epoch":26147729,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.45,"free":3113.01},{"epoch":26147730,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":554.63,"free":3112.84},{"epoch":26147731,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":553.17,"free":3114.3},{"epoch":26147732,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.88,"free":3115.59},{"epoch":26147733,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":551.85,"free":3115.61},{"epoch":26147734,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.83,"free":3115.63},{"epoch":26147735,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":553.54,"free":3113.94},{"epoch":26147736,"idl":99.8,"recv":0,"send":0,"writ":0.47,"used":554.47,"free":3113},{"epoch":26147737,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":554,"free":3113.46},{"epoch":26147738,"idl":99.17,"recv":0,"send":0,"writ":0.14,"used":553.99,"free":3113.47},{"epoch":26147739,"idl":99.88,"recv":0,"send":0.01,"writ":0.31,"used":554.8,"free":3112.64},{"epoch":26147740,"idl":99.91,"recv":0,"send":0,"writ":0.31,"used":554.38,"free":3113.08},{"epoch":26147741,"idl":99.82,"recv":0,"send":0,"writ":0.53,"used":554.77,"free":3112.68},{"epoch":26147742,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.56,"free":3112.88},{"epoch":26147743,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.54,"free":3112.9},{"epoch":26147744,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.51,"free":3112.93},{"epoch":26147745,"idl":99.91,"recv":0,"send":0,"writ":0.32,"used":554.75,"free":3112.7},{"epoch":26147746,"idl":99.8,"recv":0,"send":0.01,"writ":0.41,"used":554.99,"free":3112.46},{"epoch":26147747,"idl":99.95,"recv":0,"send":0,"writ":0.27,"used":554.5,"free":3112.95},{"epoch":26147748,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.64,"free":3112.81},{"epoch":26147749,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.5,"free":3112.94},{"epoch":26147750,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":554.61,"free":3112.84},{"epoch":26147751,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":554.98,"free":3112.47},{"epoch":26147752,"idl":99.94,"recv":0,"send":0,"writ":0.29,"used":554.82,"free":3112.63},{"epoch":26147753,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.8,"free":3112.65},{"epoch":26147754,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.78,"free":3112.66},{"epoch":26147755,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":554.77,"free":3112.68},{"epoch":26147756,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.76,"free":3112.69},{"epoch":26147757,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":554.31,"free":3113.15},{"epoch":26147758,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":553.74,"free":3113.72},{"epoch":26147759,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.86,"free":3113.6},{"epoch":26147760,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":554.39,"free":3113.08},{"epoch":26147761,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.37,"free":3113.09},{"epoch":26147762,"idl":95.1,"recv":0.28,"send":0.01,"writ":258.03,"used":567.68,"free":3099.57},{"epoch":26147763,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":557.21,"free":3110.14},{"epoch":26147764,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":557.19,"free":3110.16},{"epoch":26147765,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":556.99,"free":3110.38},{"epoch":26147766,"idl":99.96,"recv":0,"send":0,"writ":0.13,"used":556.92,"free":3110.44},{"epoch":26147767,"idl":99.81,"recv":0,"send":0,"writ":0.59,"used":555.77,"free":3111.61},{"epoch":26147768,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":554.46,"free":3112.93},{"epoch":26147769,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":554.43,"free":3112.94},{"epoch":26147770,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":554.67,"free":3112.72},{"epoch":26147771,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":554.66,"free":3112.73},{"epoch":26147772,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":555.61,"free":3111.79},{"epoch":26147773,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.06,"free":3112.34},{"epoch":26147774,"idl":99.97,"recv":0,"send":0,"writ":0.15,"used":555.04,"free":3112.37},{"epoch":26147775,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":554.33,"free":3113.1},{"epoch":26147776,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.28,"free":3113.14},{"epoch":26147777,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":554.61,"free":3112.8},{"epoch":26147778,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.24,"free":3113.18},{"epoch":26147779,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.21,"free":3113.2},{"epoch":26147780,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":554.94,"free":3112.49},{"epoch":26147781,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.92,"free":3112.5},{"epoch":26147782,"idl":99.83,"recv":0,"send":0,"writ":0.54,"used":555.16,"free":3112.26},{"epoch":26147783,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.81,"free":3112.6},{"epoch":26147784,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.84,"free":3112.57},{"epoch":26147785,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":554.35,"free":3113.07},{"epoch":26147786,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":554.33,"free":3113.09},{"epoch":26147787,"idl":99.81,"recv":0,"send":0,"writ":0.53,"used":555.05,"free":3112.37},{"epoch":26147788,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.27,"free":3113.15},{"epoch":26147789,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.25,"free":3113.16},{"epoch":26147790,"idl":99.9,"recv":0,"send":0.02,"writ":0.32,"used":554.47,"free":3112.96},{"epoch":26147791,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.1,"free":3113.32},{"epoch":26147792,"idl":99.82,"recv":0,"send":0,"writ":0.38,"used":554.44,"free":3112.97},{"epoch":26147793,"idl":99.92,"recv":0,"send":0,"writ":0.36,"used":554.03,"free":3113.38},{"epoch":26147794,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.01,"free":3113.4},{"epoch":26147795,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":553.76,"free":3113.66},{"epoch":26147796,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":553.74,"free":3113.68},{"epoch":26147797,"idl":99.82,"recv":0,"send":0,"writ":0.42,"used":554.11,"free":3113.31},{"epoch":26147798,"idl":99.95,"recv":0,"send":0,"writ":0.27,"used":554.19,"free":3113.22},{"epoch":26147799,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":554.29,"free":3113.09},{"epoch":26147800,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":553.87,"free":3113.53},{"epoch":26147801,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.83,"free":3113.57},{"epoch":26147802,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":553.8,"free":3113.59},{"epoch":26147803,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":553.67,"free":3113.72},{"epoch":26147804,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":553.27,"free":3114.12},{"epoch":26147805,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":553.76,"free":3113.65},{"epoch":26147806,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.74,"free":3113.66},{"epoch":26147807,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.72,"free":3113.68},{"epoch":26147808,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":554.35,"free":3113.04},{"epoch":26147809,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.63,"free":3113.76},{"epoch":26147810,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":553.63,"free":3113.78},{"epoch":26147811,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.6,"free":3113.8},{"epoch":26147812,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.59,"free":3113.81},{"epoch":26147813,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":554.21,"free":3113.18},{"epoch":26147814,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.04,"free":3113.35},{"epoch":26147815,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":554.28,"free":3113.12},{"epoch":26147816,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.26,"free":3113.13},{"epoch":26147817,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.23,"free":3113.16},{"epoch":26147818,"idl":99.81,"recv":0,"send":0,"writ":0.49,"used":554.56,"free":3112.83},{"epoch":26147819,"idl":99.95,"recv":0,"send":0,"writ":0.25,"used":554.19,"free":3113.19},{"epoch":26147820,"idl":94.24,"recv":5.41,"send":0.02,"writ":79.79,"used":559.29,"free":3108.03},{"epoch":26147821,"idl":99.82,"recv":0,"send":0,"writ":193.54,"used":556.79,"free":3105.27},{"epoch":26147822,"idl":99.95,"recv":0,"send":0,"writ":0.24,"used":556.76,"free":3105.3},{"epoch":26147823,"idl":99.82,"recv":0,"send":0,"writ":0.61,"used":557.24,"free":3104.82},{"epoch":26147824,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":556.92,"free":3105.14},{"epoch":26147825,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":556.02,"free":3106.1},{"epoch":26147826,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":553.51,"free":3108.67},{"epoch":26147827,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.51,"free":3108.67},{"epoch":26147828,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":554.12,"free":3108.06},{"epoch":26147829,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":554.19,"free":3107.97},{"epoch":26147830,"idl":99.91,"recv":0,"send":0,"writ":0.36,"used":554.68,"free":3107.5},{"epoch":26147831,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.65,"free":3107.52},{"epoch":26147832,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.64,"free":3107.52},{"epoch":26147833,"idl":99.83,"recv":0,"send":0,"writ":0.44,"used":554.95,"free":3107.21},{"epoch":26147834,"idl":99.93,"recv":0,"send":0,"writ":0.27,"used":554.36,"free":3107.8},{"epoch":26147835,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":554.5,"free":3107.67},{"epoch":26147836,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.56,"free":3107.61},{"epoch":26147837,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":554.29,"free":3107.88},{"epoch":26147838,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":554.6,"free":3107.56},{"epoch":26147839,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":553.99,"free":3108.17},{"epoch":26147840,"idl":99.92,"recv":0,"send":0,"writ":0.32,"used":554.49,"free":3107.68},{"epoch":26147841,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.47,"free":3107.7},{"epoch":26147842,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.44,"free":3107.73},{"epoch":26147843,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.41,"free":3107.75},{"epoch":26147844,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":555.14,"free":3107.02},{"epoch":26147845,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":554.51,"free":3107.66},{"epoch":26147846,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.55,"free":3107.61},{"epoch":26147847,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.53,"free":3107.63},{"epoch":26147848,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.51,"free":3107.64},{"epoch":26147849,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":555.1,"free":3107.05},{"epoch":26147850,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":554.74,"free":3107.42},{"epoch":26147851,"idl":99.97,"recv":0,"send":0,"writ":0.16,"used":554.71,"free":3107.45},{"epoch":26147852,"idl":99.95,"recv":0,"send":0.01,"writ":0.16,"used":554.66,"free":3107.49},{"epoch":26147853,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.63,"free":3107.52},{"epoch":26147854,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":554.96,"free":3107.18},{"epoch":26147855,"idl":99.92,"recv":0,"send":0,"writ":0.34,"used":554.74,"free":3107.42},{"epoch":26147856,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":554.77,"free":3107.38},{"epoch":26147857,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.75,"free":3107.4},{"epoch":26147858,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.73,"free":3107.42},{"epoch":26147859,"idl":98.69,"recv":0,"send":0,"writ":0.71,"used":554.82,"free":3107.3},{"epoch":26147860,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":554.22,"free":3107.92},{"epoch":26147861,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.21,"free":3107.93},{"epoch":26147862,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.18,"free":3107.95},{"epoch":26147863,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.17,"free":3107.96},{"epoch":26147864,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":554.73,"free":3107.39},{"epoch":26147865,"idl":99.88,"recv":0,"send":0,"writ":0.37,"used":554.63,"free":3107.51},{"epoch":26147866,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":554.59,"free":3107.55},{"epoch":26147867,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.53,"free":3107.62},{"epoch":26147868,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.51,"free":3107.64},{"epoch":26147869,"idl":99.81,"recv":0,"send":0,"writ":0.68,"used":554.76,"free":3107.39},{"epoch":26147870,"idl":99.89,"recv":0,"send":0,"writ":0.38,"used":554.29,"free":3107.86},{"epoch":26147871,"idl":99.95,"recv":0,"send":0,"writ":0.12,"used":554.22,"free":3107.94},{"epoch":26147872,"idl":99.97,"recv":0,"send":0,"writ":0.14,"used":554.21,"free":3107.95},{"epoch":26147873,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.18,"free":3107.97},{"epoch":26147874,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":554.52,"free":3107.62},{"epoch":26147875,"idl":99.89,"recv":0,"send":0,"writ":0.52,"used":554.65,"free":3107.51},{"epoch":26147876,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.64,"free":3107.52},{"epoch":26147877,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.62,"free":3107.54},{"epoch":26147878,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.77,"free":3107.37},{"epoch":26147879,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":555.11,"free":3107.04},{"epoch":26147880,"idl":99.84,"recv":0,"send":0,"writ":0.61,"used":554.54,"free":3107.62},{"epoch":26147881,"idl":99.96,"recv":0,"send":0,"writ":0.19,"used":554.49,"free":3107.68},{"epoch":26147882,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.48,"free":3107.68},{"epoch":26147883,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.45,"free":3107.71},{"epoch":26147884,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.44,"free":3107.71},{"epoch":26147885,"idl":99.75,"recv":0,"send":0,"writ":0.68,"used":555.02,"free":3107.15},{"epoch":26147886,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.41,"free":3107.76},{"epoch":26147887,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.39,"free":3107.78},{"epoch":26147888,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.36,"free":3107.8},{"epoch":26147889,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":554.95,"free":3107.18},{"epoch":26147890,"idl":99.78,"recv":0,"send":0,"writ":0.65,"used":555.28,"free":3106.87},{"epoch":26147891,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.99,"free":3107.16},{"epoch":26147892,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.97,"free":3107.18},{"epoch":26147893,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.95,"free":3107.2},{"epoch":26147894,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.93,"free":3107.21},{"epoch":26147895,"idl":99.73,"recv":0,"send":0,"writ":0.68,"used":555.04,"free":3107.11},{"epoch":26147896,"idl":98.1,"recv":0,"send":0,"writ":0.15,"used":554.66,"free":3107.48},{"epoch":26147897,"idl":99.93,"recv":0,"send":0,"writ":0.23,"used":554.88,"free":3107.27},{"epoch":26147898,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.86,"free":3107.28},{"epoch":26147899,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.89,"free":3107.24},{"epoch":26147900,"idl":99.75,"recv":0,"send":0,"writ":0.63,"used":555.64,"free":3106.51},{"epoch":26147901,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":554.98,"free":3107.17},{"epoch":26147902,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.97,"free":3107.18},{"epoch":26147903,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.94,"free":3107.2},{"epoch":26147904,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.93,"free":3107.21},{"epoch":26147905,"idl":99.68,"recv":0,"send":0,"writ":0.64,"used":554.47,"free":3107.68},{"epoch":26147906,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":554.91,"free":3107.24},{"epoch":26147907,"idl":99.92,"recv":0,"send":0,"writ":0.12,"used":554.88,"free":3107.27},{"epoch":26147908,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.86,"free":3107.28},{"epoch":26147909,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.83,"free":3107.3},{"epoch":26147910,"idl":99.77,"recv":0,"send":0,"writ":0.72,"used":554.67,"free":3107.48},{"epoch":26147911,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.05,"free":3108.1},{"epoch":26147912,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":554.03,"free":3108.11},{"epoch":26147913,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.01,"free":3108.13},{"epoch":26147914,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.98,"free":3108.15},{"epoch":26147915,"idl":99.76,"recv":0,"send":0,"writ":0.53,"used":555.17,"free":3106.98},{"epoch":26147916,"idl":99.95,"recv":0,"send":0,"writ":0.31,"used":554.7,"free":3107.45},{"epoch":26147917,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.69,"free":3107.45},{"epoch":26147918,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.65,"free":3107.48},{"epoch":26147919,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":554.87,"free":3107.25},{"epoch":26147920,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":554.17,"free":3107.96},{"epoch":26147921,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":555.21,"free":3106.92},{"epoch":26147922,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":555.01,"free":3107.12},{"epoch":26147923,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.8,"free":3107.32},{"epoch":26147924,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":554.74,"free":3107.38},{"epoch":26147925,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":554.99,"free":3107.14},{"epoch":26147926,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":555.4,"free":3106.73},{"epoch":26147927,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.94,"free":3107.18},{"epoch":26147928,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.92,"free":3107.2},{"epoch":26147929,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":554.81,"free":3107.3},{"epoch":26147930,"idl":99.93,"recv":0,"send":0,"writ":0.26,"used":554.89,"free":3107.24},{"epoch":26147931,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":555.22,"free":3106.9},{"epoch":26147932,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.87,"free":3107.25},{"epoch":26147933,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.96,"free":3107.16},{"epoch":26147934,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.01,"free":3107.1},{"epoch":26147935,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":554.75,"free":3107.39},{"epoch":26147936,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":555.4,"free":3106.75},{"epoch":26147937,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":555.2,"free":3106.94},{"epoch":26147938,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.16,"free":3106.97},{"epoch":26147939,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.28,"free":3107.85},{"epoch":26147940,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":554.4,"free":3107.74},{"epoch":26147941,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":554.83,"free":3107.3},{"epoch":26147942,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":554.12,"free":3108.02},{"epoch":26147943,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":554.09,"free":3108.04},{"epoch":26147944,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.26,"free":3107.86},{"epoch":26147945,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":554.25,"free":3107.89},{"epoch":26147946,"idl":99.8,"recv":0,"send":0,"writ":0.5,"used":554.6,"free":3107.54},{"epoch":26147947,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":554.21,"free":3107.92},{"epoch":26147948,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.18,"free":3107.94},{"epoch":26147949,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":554.41,"free":3107.7},{"epoch":26147950,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":554.41,"free":3107.71},{"epoch":26147951,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":554.59,"free":3107.52},{"epoch":26147952,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":553.86,"free":3108.25},{"epoch":26147953,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.84,"free":3108.26},{"epoch":26147954,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.91,"free":3108.19},{"epoch":26147955,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":554,"free":3108.11},{"epoch":26147956,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":554.69,"free":3107.41},{"epoch":26147957,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.2,"free":3107.91},{"epoch":26147958,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.18,"free":3107.92},{"epoch":26147959,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.16,"free":3107.94},{"epoch":26147960,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":553.68,"free":3108.43},{"epoch":26147961,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":553.65,"free":3108.46},{"epoch":26147962,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":553.68,"free":3108.43},{"epoch":26147963,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.12,"free":3108.98},{"epoch":26147964,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.11,"free":3108.98},{"epoch":26147965,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":552.69,"free":3109.42},{"epoch":26147966,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":552.74,"free":3109.37},{"epoch":26147967,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":553.88,"free":3108.23},{"epoch":26147968,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.72,"free":3108.4},{"epoch":26147969,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":553.7,"free":3108.41},{"epoch":26147970,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":554.17,"free":3107.96},{"epoch":26147971,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.16,"free":3107.97},{"epoch":26147972,"idl":99.81,"recv":0,"send":0,"writ":0.59,"used":554.68,"free":3107.45},{"epoch":26147973,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.35,"free":3107.77},{"epoch":26147974,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.33,"free":3107.79},{"epoch":26147975,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":554.34,"free":3107.8},{"epoch":26147976,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.46,"free":3107.67},{"epoch":26147977,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":555.23,"free":3106.89},{"epoch":26147978,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.46,"free":3107.66},{"epoch":26147979,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":554.43,"free":3107.66},{"epoch":26147980,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":554.18,"free":3107.93},{"epoch":26147981,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":554.16,"free":3107.95},{"epoch":26147982,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":554.27,"free":3107.83},{"epoch":26147983,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":553.6,"free":3108.49},{"epoch":26147984,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.59,"free":3108.53},{"epoch":26147985,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":554.31,"free":3107.83},{"epoch":26147986,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.4,"free":3107.74},{"epoch":26147987,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":554.63,"free":3107.5},{"epoch":26147988,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":553.97,"free":3108.16},{"epoch":26147989,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":553.95,"free":3108.18},{"epoch":26147990,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":554.43,"free":3107.71},{"epoch":26147991,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.39,"free":3107.75},{"epoch":26147992,"idl":99.78,"recv":0,"send":0,"writ":0.6,"used":554.73,"free":3107.42},{"epoch":26147993,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.35,"free":3107.8},{"epoch":26147994,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.34,"free":3107.81},{"epoch":26147995,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":554.73,"free":3107.43},{"epoch":26147996,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.75,"free":3107.41},{"epoch":26147997,"idl":99.81,"recv":0,"send":0,"writ":0.41,"used":555.21,"free":3106.94},{"epoch":26147998,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":554.69,"free":3107.46},{"epoch":26147999,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":554.68,"free":3107.47},{"epoch":26148000,"idl":99.86,"recv":0,"send":0,"writ":0.26,"used":554.44,"free":3107.72},{"epoch":26148001,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.41,"free":3107.75},{"epoch":26148002,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.38,"free":3107.77},{"epoch":26148003,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":554.95,"free":3107.2},{"epoch":26148004,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.59,"free":3107.56},{"epoch":26148005,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":554.35,"free":3107.82},{"epoch":26148006,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.47,"free":3107.69},{"epoch":26148007,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.49,"free":3107.67},{"epoch":26148008,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":555.04,"free":3107.11},{"epoch":26148009,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":554,"free":3108.12},{"epoch":26148010,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":554.68,"free":3107.45},{"epoch":26148011,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.66,"free":3107.47},{"epoch":26148012,"idl":99.95,"recv":0,"send":0.02,"writ":0.14,"used":554.64,"free":3107.49},{"epoch":26148013,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":555.13,"free":3106.99},{"epoch":26148014,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.32,"free":3107.79},{"epoch":26148015,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":554.34,"free":3107.8},{"epoch":26148016,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.48,"free":3107.65},{"epoch":26148017,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":554.46,"free":3107.67},{"epoch":26148018,"idl":99.81,"recv":0,"send":0,"writ":0.5,"used":554.79,"free":3107.33},{"epoch":26148019,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":554.42,"free":3107.7},{"epoch":26148020,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":554.41,"free":3107.72},{"epoch":26148021,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.4,"free":3107.73},{"epoch":26148022,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":554.37,"free":3107.75},{"epoch":26148023,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":554.85,"free":3107.26},{"epoch":26148024,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.57,"free":3107.54},{"epoch":26148025,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":554.82,"free":3107.3},{"epoch":26148026,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.79,"free":3107.32},{"epoch":26148027,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.93,"free":3107.18},{"epoch":26148028,"idl":99.82,"recv":0,"send":0,"writ":0.59,"used":555.19,"free":3106.92},{"epoch":26148029,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":554.68,"free":3107.42},{"epoch":26148030,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":554.67,"free":3107.45},{"epoch":26148031,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.66,"free":3107.45},{"epoch":26148032,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.63,"free":3107.48},{"epoch":26148033,"idl":99.79,"recv":0,"send":0,"writ":0.43,"used":555.2,"free":3106.9},{"epoch":26148034,"idl":99.93,"recv":0,"send":0,"writ":0.32,"used":554.83,"free":3107.27},{"epoch":26148035,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":554.83,"free":3107.29},{"epoch":26148036,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":554.82,"free":3107.3},{"epoch":26148037,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.79,"free":3107.33},{"epoch":26148038,"idl":99.81,"recv":0,"send":0,"writ":0.41,"used":555.2,"free":3106.9},{"epoch":26148039,"idl":99.89,"recv":0,"send":0,"writ":0.52,"used":554.69,"free":3107.39},{"epoch":26148040,"idl":99.9,"recv":0,"send":0,"writ":0.35,"used":554.71,"free":3107.41},{"epoch":26148041,"idl":99.94,"recv":0,"send":0,"writ":0.12,"used":554.67,"free":3107.45},{"epoch":26148042,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.64,"free":3107.47},{"epoch":26148043,"idl":99.81,"recv":0,"send":0,"writ":0.44,"used":554.99,"free":3107.11},{"epoch":26148044,"idl":99.93,"recv":0,"send":0,"writ":0.35,"used":554.84,"free":3107.28},{"epoch":26148045,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":554.61,"free":3107.53},{"epoch":26148046,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.58,"free":3107.56},{"epoch":26148047,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.57,"free":3107.56},{"epoch":26148048,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.53,"free":3107.59},{"epoch":26148049,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":555.52,"free":3106.6},{"epoch":26148050,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":553.74,"free":3108.4},{"epoch":26148051,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.7,"free":3108.43},{"epoch":26148052,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.68,"free":3108.45},{"epoch":26148053,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.65,"free":3108.48},{"epoch":26148054,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":554.17,"free":3107.96},{"epoch":26148055,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":554.84,"free":3107.29},{"epoch":26148056,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":554.84,"free":3107.3},{"epoch":26148057,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":554.81,"free":3107.32},{"epoch":26148058,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":554.79,"free":3107.34},{"epoch":26148059,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":555.12,"free":3107},{"epoch":26148060,"idl":99.82,"recv":0,"send":0,"writ":0.26,"used":554.78,"free":3107.36},{"epoch":26148061,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.73,"free":3107.41},{"epoch":26148062,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.71,"free":3107.42},{"epoch":26148063,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":554.69,"free":3107.44},{"epoch":26148064,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":555.03,"free":3107.09},{"epoch":26148065,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":554.67,"free":3107.46},{"epoch":26148066,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.64,"free":3107.49},{"epoch":26148067,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":554.63,"free":3107.5},{"epoch":26148068,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.61,"free":3107.51},{"epoch":26148069,"idl":99.71,"recv":0,"send":0,"writ":0.79,"used":555.27,"free":3106.83},{"epoch":26148070,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":553.88,"free":3108.23},{"epoch":26148071,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.82,"free":3108.29},{"epoch":26148072,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.8,"free":3108.3},{"epoch":26148073,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.95,"free":3108.14},{"epoch":26148074,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":554.55,"free":3107.54},{"epoch":26148075,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":554.93,"free":3107.18},{"epoch":26148076,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.91,"free":3107.2},{"epoch":26148077,"idl":99.87,"recv":0,"send":0.01,"writ":0.2,"used":554.87,"free":3107.23},{"epoch":26148078,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":554.83,"free":3107.27},{"epoch":26148079,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":555.2,"free":3106.9},{"epoch":26148080,"idl":99.9,"recv":0,"send":0,"writ":0.41,"used":555.05,"free":3107.06},{"epoch":26148081,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.18,"free":3106.93},{"epoch":26148082,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":555.19,"free":3106.91},{"epoch":26148083,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.17,"free":3106.93},{"epoch":26148084,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":555.32,"free":3106.77},{"epoch":26148085,"idl":99.78,"recv":0,"send":0,"writ":0.67,"used":555.25,"free":3106.85},{"epoch":26148086,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.87,"free":3107.23},{"epoch":26148087,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":554.86,"free":3107.24},{"epoch":26148088,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.83,"free":3107.26},{"epoch":26148089,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":554.82,"free":3107.27},{"epoch":26148090,"idl":99.64,"recv":0,"send":0,"writ":0.7,"used":554.62,"free":3107.49},{"epoch":26148091,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":554.05,"free":3108.05},{"epoch":26148092,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":554.16,"free":3107.94},{"epoch":26148093,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":554.21,"free":3107.89},{"epoch":26148094,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":554.18,"free":3107.91},{"epoch":26148095,"idl":99.73,"recv":0,"send":0,"writ":0.68,"used":554.78,"free":3107.33},{"epoch":26148096,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":554.4,"free":3107.7},{"epoch":26148097,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":554.38,"free":3107.71},{"epoch":26148098,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.36,"free":3107.73},{"epoch":26148099,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":554.34,"free":3107.74},{"epoch":26148100,"idl":99.69,"recv":0,"send":0,"writ":0.69,"used":554.83,"free":3107.27},{"epoch":26148101,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.31,"free":3107.78},{"epoch":26148102,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":554.29,"free":3107.8},{"epoch":26148103,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":554.26,"free":3107.82},{"epoch":26148104,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":554.39,"free":3107.69},{"epoch":26148105,"idl":99.66,"recv":0,"send":0,"writ":0.61,"used":554.54,"free":3107.56},{"epoch":26148106,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":554.17,"free":3107.92},{"epoch":26148107,"idl":99.83,"recv":0,"send":0,"writ":0.38,"used":553.87,"free":3108.22},{"epoch":26148108,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.62,"free":3108.46},{"epoch":26148109,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":553.56,"free":3108.51},{"epoch":26148110,"idl":99.63,"recv":0,"send":0,"writ":0.66,"used":553.9,"free":3108.19},{"epoch":26148111,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":552.84,"free":3109.25},{"epoch":26148112,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":552.82,"free":3109.27},{"epoch":26148113,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.8,"free":3109.29},{"epoch":26148114,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":552.78,"free":3109.31},{"epoch":26148115,"idl":99.66,"recv":0,"send":0,"writ":0.64,"used":554.02,"free":3108.09},{"epoch":26148116,"idl":99.86,"recv":0,"send":0,"writ":0.22,"used":554.42,"free":3107.68},{"epoch":26148117,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.41,"free":3107.69},{"epoch":26148118,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":554.38,"free":3107.72},{"epoch":26148119,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":554.35,"free":3107.74},{"epoch":26148120,"idl":99.62,"recv":0,"send":0,"writ":0.57,"used":554.7,"free":3107.41},{"epoch":26148121,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":553.59,"free":3108.51},{"epoch":26148122,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":553.57,"free":3108.52},{"epoch":26148123,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":553.54,"free":3108.55},{"epoch":26148124,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":553.53,"free":3108.55},{"epoch":26148125,"idl":96.55,"recv":0.04,"send":0.01,"writ":64.34,"used":563.2,"free":3100.9},{"epoch":26148126,"idl":99.48,"recv":0,"send":0,"writ":77.21,"used":556.31,"free":3105.87},{"epoch":26148127,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":555.92,"free":3106.27},{"epoch":26148128,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":555.9,"free":3106.27},{"epoch":26148129,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.31,"used":556.24,"free":3105.91},{"epoch":26148130,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":556.99,"free":3105.18},{"epoch":26148131,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":554.94,"free":3107.28},{"epoch":26148132,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.52,"free":3107.7},{"epoch":26148133,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.15,"used":554.52,"free":3107.7},{"epoch":26148134,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":554.55,"free":3107.68},{"epoch":26148135,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":554.3,"free":3107.95},{"epoch":26148136,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":554.86,"free":3107.38},{"epoch":26148137,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":554.26,"free":3107.98},{"epoch":26148138,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":554.24,"free":3107.99},{"epoch":26148139,"idl":98.39,"recv":0,"send":0,"writ":0.15,"used":554.21,"free":3108.02},{"epoch":26148140,"idl":99.8,"recv":0.02,"send":0.66,"writ":0.3,"used":554.59,"free":3107.65},{"epoch":26148141,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":554.94,"free":3107.3},{"epoch":26148142,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":554.56,"free":3107.67},{"epoch":26148143,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":554.54,"free":3107.69},{"epoch":26148144,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":554.51,"free":3107.71},{"epoch":26148145,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":554.27,"free":3107.97},{"epoch":26148146,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":554.74,"free":3107.5},{"epoch":26148147,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.45,"free":3107.78},{"epoch":26148148,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":554.55,"free":3107.67},{"epoch":26148149,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":554.6,"free":3107.62},{"epoch":26148150,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":554.35,"free":3107.88},{"epoch":26148151,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":555.15,"free":3107.09},{"epoch":26148152,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":554.55,"free":3107.68},{"epoch":26148153,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":554.54,"free":3107.68},{"epoch":26148154,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":554.51,"free":3107.71},{"epoch":26148155,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":554.51,"free":3107.72},{"epoch":26148156,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":554.77,"free":3107.47},{"epoch":26148157,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":554.21,"free":3108.01},{"epoch":26148158,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":554.19,"free":3108.02},{"epoch":26148159,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":554.52,"free":3107.68},{"epoch":26148160,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":554.61,"free":3107.6},{"epoch":26148161,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":554.93,"free":3107.27},{"epoch":26148162,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":554.56,"free":3107.64},{"epoch":26148163,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":554.53,"free":3107.66},{"epoch":26148164,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.52,"free":3107.68},{"epoch":26148165,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":553.39,"free":3108.83},{"epoch":26148166,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":553.7,"free":3108.51},{"epoch":26148167,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":554.22,"free":3107.99},{"epoch":26148168,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":554.2,"free":3108.01},{"epoch":26148169,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":554.13,"free":3108.07},{"epoch":26148170,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":553.29,"free":3108.93},{"epoch":26148171,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":553.36,"free":3108.85},{"epoch":26148172,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":554,"free":3108.2},{"epoch":26148173,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.55,"free":3108.65},{"epoch":26148174,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":553.53,"free":3108.67},{"epoch":26148175,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":554.72,"free":3107.49},{"epoch":26148176,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.74,"free":3107.47},{"epoch":26148177,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":554.33,"free":3107.88},{"epoch":26148178,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":553.72,"free":3108.48},{"epoch":26148179,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":553.69,"free":3108.51},{"epoch":26148180,"idl":99.35,"recv":0,"send":0,"writ":0.53,"used":555,"free":3107.22},{"epoch":26148181,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":554.9,"free":3107.31},{"epoch":26148182,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":555.25,"free":3106.96},{"epoch":26148183,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":554.81,"free":3107.4},{"epoch":26148184,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.79,"free":3107.41},{"epoch":26148185,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":554.54,"free":3107.67},{"epoch":26148186,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":554.53,"free":3107.7},{"epoch":26148187,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":555.21,"free":3107.01},{"epoch":26148188,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":554.74,"free":3107.48},{"epoch":26148189,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":554.7,"free":3107.49},{"epoch":26148190,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":554.47,"free":3107.75},{"epoch":26148191,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.43,"free":3107.78},{"epoch":26148192,"idl":90.36,"recv":0,"send":0,"writ":117.24,"used":575.86,"free":3074.53},{"epoch":26148193,"idl":99.46,"recv":0,"send":0,"writ":33.24,"used":557.31,"free":3108.05},{"epoch":26148194,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":557.32,"free":3108.04},{"epoch":26148195,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":557.32,"free":3108.05},{"epoch":26148196,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":557.29,"free":3108.07},{"epoch":26148197,"idl":99.73,"recv":0.01,"send":0.02,"writ":0.62,"used":557.8,"free":3107.56},{"epoch":26148198,"idl":99.87,"recv":0,"send":0,"writ":0.23,"used":554.88,"free":3110.56},{"epoch":26148199,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":554.75,"free":3110.7},{"epoch":26148200,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":554.76,"free":3110.7},{"epoch":26148201,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.8,"free":3110.65},{"epoch":26148202,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":555.26,"free":3110.2},{"epoch":26148203,"idl":99.85,"recv":0,"send":0,"writ":0.37,"used":555.12,"free":3110.32},{"epoch":26148204,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":555.09,"free":3110.35},{"epoch":26148205,"idl":98.68,"recv":0,"send":0,"writ":15.48,"used":556.84,"free":3108.9},{"epoch":26148206,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":553.6,"free":3111.87},{"epoch":26148207,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":553.57,"free":3111.89},{"epoch":26148208,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":554.89,"free":3110.57},{"epoch":26148209,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":554.51,"free":3110.94},{"epoch":26148210,"idl":99.72,"recv":0,"send":0,"writ":0.28,"used":554.98,"free":3110.49},{"epoch":26148211,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":555.08,"free":3110.38},{"epoch":26148212,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":555.17,"free":3110.29},{"epoch":26148213,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":555.18,"free":3110.28},{"epoch":26148214,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":554.62,"free":3110.83},{"epoch":26148215,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":554.88,"free":3110.6},{"epoch":26148216,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":554.85,"free":3110.63},{"epoch":26148217,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":554.82,"free":3110.65},{"epoch":26148218,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":555.32,"free":3110.14},{"epoch":26148219,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":555.02,"free":3110.42},{"epoch":26148220,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":554.78,"free":3110.67},{"epoch":26148221,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":554.91,"free":3110.54},{"epoch":26148222,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":554.92,"free":3110.52},{"epoch":26148223,"idl":99.29,"recv":0,"send":0,"writ":0.55,"used":555.75,"free":3109.69},{"epoch":26148224,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":555.11,"free":3110.32},{"epoch":26148225,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":554.63,"free":3110.82},{"epoch":26148226,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":554.6,"free":3110.85},{"epoch":26148227,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":554.57,"free":3110.88},{"epoch":26148228,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":554.99,"free":3110.45},{"epoch":26148229,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":554.76,"free":3110.68},{"epoch":26148230,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":555,"free":3110.45},{"epoch":26148231,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":555.16,"free":3110.29},{"epoch":26148232,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":555.15,"free":3110.29},{"epoch":26148233,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":555.4,"free":3110.05},{"epoch":26148234,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":554.62,"free":3110.82},{"epoch":26148235,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":555.12,"free":3110.34},{"epoch":26148236,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":555.1,"free":3110.35},{"epoch":26148237,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":555.07,"free":3110.37},{"epoch":26148238,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":555.35,"free":3110.1},{"epoch":26148239,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.79,"free":3110.65},{"epoch":26148240,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":554.57,"free":3110.89},{"epoch":26148241,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":553.79,"free":3111.66},{"epoch":26148242,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":553.76,"free":3111.69},{"epoch":26148243,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":554.46,"free":3110.99},{"epoch":26148244,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":553.91,"free":3111.53},{"epoch":26148245,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":553.92,"free":3111.54},{"epoch":26148246,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.88,"free":3111.57},{"epoch":26148247,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":553.88,"free":3111.57},{"epoch":26148248,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":553.84,"free":3111.6},{"epoch":26148249,"idl":99.61,"recv":0,"send":0,"writ":0.69,"used":554.46,"free":3110.96},{"epoch":26148250,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":553.83,"free":3111.61},{"epoch":26148251,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":553.8,"free":3111.63},{"epoch":26148252,"idl":99.86,"recv":0,"send":0,"writ":0.12,"used":553.78,"free":3111.65},{"epoch":26148253,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":553.75,"free":3111.67},{"epoch":26148254,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":554.65,"free":3110.77},{"epoch":26148255,"idl":99.84,"recv":0,"send":0,"writ":0.26,"used":553.23,"free":3112.21},{"epoch":26148256,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.17,"free":3112.26},{"epoch":26148257,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":552.9,"free":3112.53},{"epoch":26148258,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.89,"free":3112.54},{"epoch":26148259,"idl":99.79,"recv":0,"send":0,"writ":0.52,"used":554.59,"free":3110.83},{"epoch":26148260,"idl":98.9,"recv":0,"send":0,"writ":0.26,"used":553.86,"free":3111.58},{"epoch":26148261,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":553.82,"free":3111.62},{"epoch":26148262,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.8,"free":3111.63},{"epoch":26148263,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.78,"free":3111.65},{"epoch":26148264,"idl":99.8,"recv":0,"send":0,"writ":0.48,"used":554.6,"free":3110.83},{"epoch":26148265,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":554.18,"free":3111.26},{"epoch":26148266,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.16,"free":3111.28},{"epoch":26148267,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.13,"free":3111.3},{"epoch":26148268,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.12,"free":3111.31},{"epoch":26148269,"idl":99.78,"recv":0,"send":0,"writ":0.46,"used":554.49,"free":3110.93},{"epoch":26148270,"idl":99.88,"recv":0,"send":0,"writ":0.44,"used":554.34,"free":3111.1},{"epoch":26148271,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.31,"free":3111.13},{"epoch":26148272,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.29,"free":3111.14},{"epoch":26148273,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.27,"free":3111.16},{"epoch":26148274,"idl":99.82,"recv":0,"send":0,"writ":0.49,"used":554.64,"free":3110.78},{"epoch":26148275,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":554.35,"free":3111.09},{"epoch":26148276,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.41,"free":3111.02},{"epoch":26148277,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.4,"free":3111.03},{"epoch":26148278,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.37,"free":3111.05},{"epoch":26148279,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":554.36,"free":3111.04},{"epoch":26148280,"idl":99.76,"recv":0,"send":0,"writ":0.67,"used":554.45,"free":3110.96},{"epoch":26148281,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.08,"free":3111.34},{"epoch":26148282,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.05,"free":3111.36},{"epoch":26148283,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.03,"free":3111.37},{"epoch":26148284,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554,"free":3111.43},{"epoch":26148285,"idl":99.72,"recv":0,"send":0,"writ":0.66,"used":554.15,"free":3111.3},{"epoch":26148286,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":553.88,"free":3111.56},{"epoch":26148287,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":553.93,"free":3111.51},{"epoch":26148288,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":553.9,"free":3111.53},{"epoch":26148289,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":553.89,"free":3111.54},{"epoch":26148290,"idl":99.7,"recv":0,"send":0,"writ":0.66,"used":554.53,"free":3110.91},{"epoch":26148291,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.18,"used":554.08,"free":3111.36},{"epoch":26148292,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":554.05,"free":3111.39},{"epoch":26148293,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.02,"free":3111.4},{"epoch":26148294,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554,"free":3111.42},{"epoch":26148295,"idl":99.73,"recv":0,"send":0,"writ":0.7,"used":554.99,"free":3110.44},{"epoch":26148296,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.42,"free":3111.02},{"epoch":26148297,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":554.4,"free":3111.03},{"epoch":26148298,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.38,"free":3111.05},{"epoch":26148299,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.36,"free":3111.06},{"epoch":26148300,"idl":99.68,"recv":0,"send":0,"writ":0.7,"used":554.24,"free":3111.2},{"epoch":26148301,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":554.34,"free":3111.09},{"epoch":26148302,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.32,"free":3111.11},{"epoch":26148303,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.29,"free":3111.13},{"epoch":26148304,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.28,"free":3111.14},{"epoch":26148305,"idl":99.74,"recv":0,"send":0,"writ":0.7,"used":554.75,"free":3110.68},{"epoch":26148306,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":554.26,"free":3111.17},{"epoch":26148307,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":554.32,"free":3111.11},{"epoch":26148308,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.4,"free":3111.02},{"epoch":26148309,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":554.61,"free":3110.79},{"epoch":26148310,"idl":99.78,"recv":0,"send":0,"writ":0.68,"used":555.37,"free":3110.04},{"epoch":26148311,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":554.59,"free":3110.82},{"epoch":26148312,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":554.56,"free":3110.84},{"epoch":26148313,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.55,"free":3110.85},{"epoch":26148314,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.52,"free":3110.89},{"epoch":26148315,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":555.09,"free":3110.35},{"epoch":26148316,"idl":99.93,"recv":0,"send":0,"writ":0.27,"used":554.5,"free":3110.94},{"epoch":26148317,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":554.48,"free":3110.96},{"epoch":26148318,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.61,"free":3110.83},{"epoch":26148319,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.63,"free":3110.8},{"epoch":26148320,"idl":99.75,"recv":0,"send":0,"writ":0.6,"used":554.99,"free":3110.45},{"epoch":26148321,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":554.61,"free":3110.84},{"epoch":26148322,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.59,"free":3110.85},{"epoch":26148323,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.56,"free":3110.87},{"epoch":26148324,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.55,"free":3110.88},{"epoch":26148325,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":554.55,"free":3110.9},{"epoch":26148326,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":554.87,"free":3110.57},{"epoch":26148327,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.49,"free":3110.94},{"epoch":26148328,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.48,"free":3110.95},{"epoch":26148329,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.58,"free":3110.85},{"epoch":26148330,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":554.88,"free":3110.57},{"epoch":26148331,"idl":99.82,"recv":0,"send":0,"writ":0.53,"used":555.3,"free":3110.13},{"epoch":26148332,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.59,"free":3110.84},{"epoch":26148333,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":554.58,"free":3110.85},{"epoch":26148334,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.55,"free":3110.87},{"epoch":26148335,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":554.09,"free":3111.35},{"epoch":26148336,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":554.85,"free":3110.59},{"epoch":26148337,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.77,"free":3110.66},{"epoch":26148338,"idl":99.92,"recv":0.01,"send":0.02,"writ":0.18,"used":554.72,"free":3110.7},{"epoch":26148339,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":554.82,"free":3110.59},{"epoch":26148340,"idl":99.85,"recv":0,"send":0,"writ":0.26,"used":554.92,"free":3110.5},{"epoch":26148341,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":555.2,"free":3110.22},{"epoch":26148342,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.82,"free":3110.59},{"epoch":26148343,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":554.79,"free":3110.61},{"epoch":26148344,"idl":99.65,"recv":0,"send":0,"writ":0.17,"used":554.79,"free":3110.63},{"epoch":26148345,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":554.54,"free":3110.9},{"epoch":26148346,"idl":99.81,"recv":0,"send":0,"writ":0.43,"used":555.31,"free":3110.12},{"epoch":26148347,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":554.73,"free":3110.7},{"epoch":26148348,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.71,"free":3110.72},{"epoch":26148349,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.8,"free":3110.62},{"epoch":26148350,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":554.43,"free":3111},{"epoch":26148351,"idl":99.79,"recv":0,"send":0,"writ":0.52,"used":555.04,"free":3110.4},{"epoch":26148352,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":554.86,"free":3110.57},{"epoch":26148353,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.85,"free":3110.57},{"epoch":26148354,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":554.82,"free":3110.6},{"epoch":26148355,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":554.59,"free":3110.84},{"epoch":26148356,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":555.06,"free":3110.38},{"epoch":26148357,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":554.78,"free":3110.64},{"epoch":26148358,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":554.76,"free":3110.66},{"epoch":26148359,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":554.73,"free":3110.68},{"epoch":26148360,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":554.77,"free":3110.66},{"epoch":26148361,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":554.89,"free":3110.54},{"epoch":26148362,"idl":99.82,"recv":0,"send":0,"writ":0.53,"used":555.22,"free":3110.2},{"epoch":26148363,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":554.85,"free":3110.57},{"epoch":26148364,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.82,"free":3110.6},{"epoch":26148365,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":555.32,"free":3110.12},{"epoch":26148366,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.29,"free":3110.14},{"epoch":26148367,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":555.4,"free":3110.02},{"epoch":26148368,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555,"free":3110.41},{"epoch":26148369,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":554.74,"free":3110.66},{"epoch":26148370,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":554.72,"free":3110.69},{"epoch":26148371,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":554.77,"free":3110.64},{"epoch":26148372,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":554.65,"free":3110.75},{"epoch":26148373,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.11,"free":3111.28},{"epoch":26148374,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.09,"free":3111.3},{"epoch":26148375,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":554.81,"free":3110.59},{"epoch":26148376,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.81,"free":3110.59},{"epoch":26148377,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":555.39,"free":3110},{"epoch":26148378,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":554.74,"free":3110.64},{"epoch":26148379,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.72,"free":3110.66},{"epoch":26148380,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":554.72,"free":3110.67},{"epoch":26148381,"idl":99.96,"recv":0,"send":0,"writ":0.13,"used":554.7,"free":3110.69},{"epoch":26148382,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":555.14,"free":3110.24},{"epoch":26148383,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.85,"free":3110.53},{"epoch":26148384,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.82,"free":3110.56},{"epoch":26148385,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":555.3,"free":3110.09},{"epoch":26148386,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.28,"free":3110.1},{"epoch":26148387,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":555.42,"free":3109.96},{"epoch":26148388,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.75,"free":3110.63},{"epoch":26148389,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.73,"free":3110.64},{"epoch":26148390,"idl":99.85,"recv":0,"send":0,"writ":0.26,"used":554.8,"free":3110.59},{"epoch":26148391,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.24,"free":3111.14},{"epoch":26148392,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":554.31,"free":3111.07},{"epoch":26148393,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":553.93,"free":3111.45},{"epoch":26148394,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.07,"free":3111.31},{"epoch":26148395,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":553.39,"free":3112},{"epoch":26148396,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.35,"free":3112.04},{"epoch":26148397,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":553.84,"free":3111.54},{"epoch":26148398,"idl":99.94,"recv":0,"send":0,"writ":0.4,"used":554.28,"free":3111.1},{"epoch":26148399,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":554.26,"free":3111.07},{"epoch":26148400,"idl":99.87,"recv":0,"send":0,"writ":0.26,"used":554.02,"free":3111.35},{"epoch":26148401,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":553.99,"free":3111.37},{"epoch":26148402,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.96,"free":3111.39},{"epoch":26148403,"idl":99.8,"recv":0,"send":0,"writ":0.52,"used":554.3,"free":3111.05},{"epoch":26148404,"idl":99.65,"recv":0,"send":0,"writ":0.15,"used":553.92,"free":3111.43},{"epoch":26148405,"idl":99.87,"recv":0,"send":0,"writ":0.26,"used":554.31,"free":3111.05},{"epoch":26148406,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.33,"free":3111.02},{"epoch":26148407,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.32,"free":3111.03},{"epoch":26148408,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":554.64,"free":3110.71},{"epoch":26148409,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.28,"free":3111.06},{"epoch":26148410,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":553.82,"free":3111.56},{"epoch":26148411,"idl":99.92,"recv":0,"send":0,"writ":0.12,"used":553.78,"free":3111.6},{"epoch":26148412,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.74,"free":3111.63},{"epoch":26148413,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":554.49,"free":3110.88},{"epoch":26148414,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.7,"free":3111.66},{"epoch":26148415,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":553.69,"free":3111.68},{"epoch":26148416,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.68,"free":3111.7},{"epoch":26148417,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.83,"free":3111.54},{"epoch":26148418,"idl":99.82,"recv":0,"send":0,"writ":0.48,"used":554.36,"free":3111},{"epoch":26148419,"idl":99.94,"recv":0,"send":0,"writ":0.23,"used":554.28,"free":3111.07},{"epoch":26148420,"idl":99.85,"recv":0,"send":0,"writ":0.26,"used":554.29,"free":3111.08},{"epoch":26148421,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.26,"free":3111.1},{"epoch":26148422,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.24,"free":3111.12},{"epoch":26148423,"idl":99.8,"recv":0,"send":0,"writ":0.48,"used":554.67,"free":3110.69},{"epoch":26148424,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":554.44,"free":3110.91},{"epoch":26148425,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":554.2,"free":3111.17},{"epoch":26148426,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":554.17,"free":3111.2},{"epoch":26148427,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.16,"free":3111.2},{"epoch":26148428,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":554.73,"free":3110.62},{"epoch":26148429,"idl":99.88,"recv":0,"send":0,"writ":0.44,"used":554.34,"free":3110.99},{"epoch":26148430,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":554.33,"free":3111.02},{"epoch":26148431,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.32,"free":3111.03},{"epoch":26148432,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.28,"free":3111.06},{"epoch":26148433,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":554.62,"free":3110.72},{"epoch":26148434,"idl":99.93,"recv":0,"send":0,"writ":0.39,"used":554.49,"free":3110.86},{"epoch":26148435,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":554.49,"free":3110.88},{"epoch":26148436,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.47,"free":3110.89},{"epoch":26148437,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":554.51,"free":3110.85},{"epoch":26148438,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.54,"free":3110.81},{"epoch":26148439,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":555.13,"free":3110.23},{"epoch":26148440,"idl":99.87,"recv":0,"send":0,"writ":0.26,"used":554.53,"free":3110.84},{"epoch":26148441,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.44,"free":3110.93},{"epoch":26148442,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.55,"free":3110.81},{"epoch":26148443,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":554.56,"free":3110.79},{"epoch":26148444,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":555,"free":3110.36},{"epoch":26148445,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":554.31,"free":3111.06},{"epoch":26148446,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.29,"free":3111.08},{"epoch":26148447,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.26,"free":3111.11},{"epoch":26148448,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.22,"free":3111.13},{"epoch":26148449,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":554.56,"free":3110.79},{"epoch":26148450,"idl":99.85,"recv":0,"send":0,"writ":0.26,"used":554.44,"free":3110.93},{"epoch":26148451,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.48,"free":3110.89},{"epoch":26148452,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.58,"free":3110.78},{"epoch":26148453,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.56,"free":3110.8},{"epoch":26148454,"idl":99.81,"recv":0,"send":0,"writ":0.48,"used":554.87,"free":3110.48},{"epoch":26148455,"idl":99.9,"recv":0,"send":0,"writ":0.37,"used":554.53,"free":3110.83},{"epoch":26148456,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":554.5,"free":3110.86},{"epoch":26148457,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.47,"free":3110.89},{"epoch":26148458,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":554.46,"free":3110.89},{"epoch":26148459,"idl":99.74,"recv":0,"send":0,"writ":0.79,"used":555.17,"free":3110.16},{"epoch":26148460,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":554.66,"free":3110.69},{"epoch":26148461,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.77,"free":3110.57},{"epoch":26148462,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.81,"free":3110.53},{"epoch":26148463,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":554.79,"free":3110.54},{"epoch":26148464,"idl":99.81,"recv":0,"send":0,"writ":0.42,"used":555.11,"free":3110.21},{"epoch":26148465,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":554.51,"free":3110.83},{"epoch":26148466,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.49,"free":3110.85},{"epoch":26148467,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":554.46,"free":3110.87},{"epoch":26148468,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.44,"free":3110.89},{"epoch":26148469,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":554.77,"free":3110.55},{"epoch":26148470,"idl":99.84,"recv":0,"send":0,"writ":0.51,"used":553.99,"free":3111.35},{"epoch":26148471,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.01,"free":3111.32},{"epoch":26148472,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.06,"free":3111.27},{"epoch":26148473,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.05,"free":3111.29},{"epoch":26148474,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.02,"free":3111.32},{"epoch":26148475,"idl":99.75,"recv":0,"send":0,"writ":0.68,"used":554.67,"free":3110.69},{"epoch":26148476,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.25,"free":3111.11},{"epoch":26148477,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.24,"free":3111.11},{"epoch":26148478,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.21,"free":3111.14},{"epoch":26148479,"idl":99.32,"recv":0,"send":0,"writ":0.16,"used":554.2,"free":3111.14},{"epoch":26148480,"idl":99.69,"recv":0,"send":0,"writ":0.68,"used":554.87,"free":3110.49},{"epoch":26148481,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.66,"free":3110.7},{"epoch":26148482,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.72,"free":3110.63},{"epoch":26148483,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.8,"free":3110.55},{"epoch":26148484,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.79,"free":3110.55},{"epoch":26148485,"idl":99.77,"recv":0,"send":0,"writ":0.68,"used":555.13,"free":3110.22},{"epoch":26148486,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.76,"free":3110.59},{"epoch":26148487,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.73,"free":3110.62},{"epoch":26148488,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.71,"free":3110.63},{"epoch":26148489,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":554.96,"free":3110.36},{"epoch":26148490,"idl":95.17,"recv":0.36,"send":0.01,"writ":78.51,"used":566.65,"free":3098.97},{"epoch":26148491,"idl":99.83,"recv":0,"send":0,"writ":180.47,"used":557.15,"free":3108.13},{"epoch":26148492,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.19,"free":3108.08},{"epoch":26148493,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":557.16,"free":3108.11},{"epoch":26148494,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":557.15,"free":3108.11},{"epoch":26148495,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":556.51,"free":3108.77},{"epoch":26148496,"idl":99.93,"recv":0,"send":0,"writ":0.35,"used":555.2,"free":3110.1},{"epoch":26148497,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":555.17,"free":3110.13},{"epoch":26148498,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.14,"free":3110.15},{"epoch":26148499,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.12,"free":3110.16},{"epoch":26148500,"idl":99.73,"recv":0,"send":0,"writ":0.67,"used":555.28,"free":3110.03},{"epoch":26148501,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":555.11,"free":3110.21},{"epoch":26148502,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":555.2,"free":3110.12},{"epoch":26148503,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":555.26,"free":3110.05},{"epoch":26148504,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.22,"free":3110.08},{"epoch":26148505,"idl":99.69,"recv":0,"send":0,"writ":0.71,"used":555.14,"free":3110.19},{"epoch":26148506,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.96,"free":3110.36},{"epoch":26148507,"idl":99.87,"recv":0,"send":0.01,"writ":0.15,"used":554.94,"free":3110.38},{"epoch":26148508,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.91,"free":3110.41},{"epoch":26148509,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.89,"free":3110.43},{"epoch":26148510,"idl":99.91,"recv":0,"send":0,"writ":0.26,"used":554.89,"free":3110.45},{"epoch":26148511,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":555.58,"free":3109.75},{"epoch":26148512,"idl":99.93,"recv":0.02,"send":0.16,"writ":0.14,"used":554.96,"free":3110.36},{"epoch":26148513,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.96,"free":3110.36},{"epoch":26148514,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.94,"free":3110.37},{"epoch":26148515,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":554.88,"free":3110.45},{"epoch":26148516,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":555.59,"free":3109.73},{"epoch":26148517,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.9,"free":3110.42},{"epoch":26148518,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.88,"free":3110.43},{"epoch":26148519,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":554.62,"free":3110.67},{"epoch":26148520,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":555.1,"free":3110.2},{"epoch":26148521,"idl":99.81,"recv":0,"send":0.01,"writ":0.57,"used":555.43,"free":3109.87},{"epoch":26148522,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.98,"free":3110.32},{"epoch":26148523,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.95,"free":3110.34},{"epoch":26148524,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.94,"free":3110.35},{"epoch":26148525,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":554.93,"free":3110.37},{"epoch":26148526,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":555.25,"free":3110.04},{"epoch":26148527,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.88,"free":3110.41},{"epoch":26148528,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.85,"free":3110.43},{"epoch":26148529,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.84,"free":3110.44},{"epoch":26148530,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":553.8,"free":3111.5},{"epoch":26148531,"idl":99.78,"recv":0,"send":0,"writ":0.47,"used":554.7,"free":3110.59},{"epoch":26148532,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":554.97,"free":3110.32},{"epoch":26148533,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.94,"free":3110.35},{"epoch":26148534,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.91,"free":3110.37},{"epoch":26148535,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":554.9,"free":3110.4},{"epoch":26148536,"idl":99.81,"recv":0,"send":0,"writ":0.43,"used":555.44,"free":3109.86},{"epoch":26148537,"idl":99.93,"recv":0,"send":0,"writ":0.27,"used":555.1,"free":3110.2},{"epoch":26148538,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.07,"free":3110.22},{"epoch":26148539,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":555,"free":3110.28},{"epoch":26148540,"idl":99.83,"recv":0,"send":0,"writ":0.35,"used":554.49,"free":3110.81},{"epoch":26148541,"idl":99.79,"recv":0,"send":0,"writ":0.62,"used":554.79,"free":3110.5},{"epoch":26148542,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":554.21,"free":3111.09},{"epoch":26148543,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.17,"free":3111.11},{"epoch":26148544,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.14,"free":3111.14},{"epoch":26148545,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":554.63,"free":3110.66},{"epoch":26148546,"idl":99.82,"recv":0,"send":0,"writ":0.43,"used":554.88,"free":3110.41},{"epoch":26148547,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":554.14,"free":3111.15},{"epoch":26148548,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.26,"free":3111.02},{"epoch":26148549,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":554.2,"free":3111.06},{"epoch":26148550,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":554.18,"free":3111.09},{"epoch":26148551,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.15,"free":3111.12},{"epoch":26148552,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":554.47,"free":3110.8},{"epoch":26148553,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.14,"free":3111.12},{"epoch":26148554,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":554.23,"free":3111.04},{"epoch":26148555,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":554.22,"free":3111.08},{"epoch":26148556,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":554.18,"free":3111.11},{"epoch":26148557,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":554.75,"free":3110.53},{"epoch":26148558,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.1,"free":3111.2},{"epoch":26148559,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.11,"free":3111.18},{"epoch":26148560,"idl":99.91,"recv":0,"send":0,"writ":0.27,"used":554.02,"free":3111.29},{"epoch":26148561,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.98,"free":3111.32},{"epoch":26148562,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":554.69,"free":3110.61},{"epoch":26148563,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.42,"free":3110.88},{"epoch":26148564,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.38,"free":3110.91},{"epoch":26148565,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":554.37,"free":3110.94},{"epoch":26148566,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.45,"free":3110.86},{"epoch":26148567,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":554.98,"free":3110.33},{"epoch":26148568,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":554.68,"free":3110.62},{"epoch":26148569,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":554.63,"free":3110.66},{"epoch":26148570,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":554.62,"free":3110.69},{"epoch":26148571,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.58,"free":3110.72},{"epoch":26148572,"idl":99.78,"recv":0,"send":0,"writ":0.49,"used":554.62,"free":3110.68},{"epoch":26148573,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":553.71,"free":3111.59},{"epoch":26148574,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.68,"free":3111.62},{"epoch":26148575,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":553.66,"free":3111.65},{"epoch":26148576,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.62,"free":3111.68},{"epoch":26148577,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":554.2,"free":3111.1},{"epoch":26148578,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.44,"free":3110.86},{"epoch":26148579,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":553.98,"free":3111.29},{"epoch":26148580,"idl":99.91,"recv":0.01,"send":0.03,"writ":0.28,"used":554.19,"free":3111.1},{"epoch":26148581,"idl":99.7,"recv":0.33,"send":1.27,"writ":1.71,"used":554.16,"free":3111.09},{"epoch":26148582,"idl":99.6,"recv":0.18,"send":0.39,"writ":1.36,"used":554.52,"free":3110.68},{"epoch":26148583,"idl":99.77,"recv":0.18,"send":1.02,"writ":1.05,"used":553.83,"free":3111.32},{"epoch":26148584,"idl":99.78,"recv":0.13,"send":0.81,"writ":0.68,"used":553.07,"free":3111.21},{"epoch":26148585,"idl":99.88,"recv":0,"send":0,"writ":0.42,"used":553.85,"free":3110.06},{"epoch":26148586,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":553.83,"free":3110.08},{"epoch":26148587,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.54,"used":553.75,"free":3110.35},{"epoch":26148588,"idl":99.77,"recv":0,"send":0.01,"writ":0.61,"used":554.19,"free":3109.99},{"epoch":26148589,"idl":99.9,"recv":0.08,"send":0.02,"writ":0.38,"used":553.99,"free":3110.17},{"epoch":26148590,"idl":99.86,"recv":0.03,"send":0.01,"writ":0.43,"used":553.78,"free":3110.4},{"epoch":26148591,"idl":99.9,"recv":0.03,"send":0.01,"writ":0.29,"used":553.82,"free":3110.35},{"epoch":26148592,"idl":99.9,"recv":0.03,"send":0.01,"writ":0.31,"used":553.77,"free":3110.34},{"epoch":26148593,"idl":99.78,"recv":0.1,"send":0.02,"writ":0.82,"used":554.4,"free":3109.71},{"epoch":26148594,"idl":99.9,"recv":0.11,"send":0.01,"writ":0.43,"used":554.03,"free":3110.09},{"epoch":26148595,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":554.79,"free":3109.35},{"epoch":26148596,"idl":99.92,"recv":0.12,"send":0.01,"writ":0.41,"used":554.86,"free":3109.28},{"epoch":26148597,"idl":99.88,"recv":0.01,"send":0,"writ":0.26,"used":554.82,"free":3109.33},{"epoch":26148598,"idl":99.8,"recv":0.03,"send":0,"writ":0.66,"used":554.87,"free":3109.29},{"epoch":26148599,"idl":99.93,"recv":0.03,"send":0,"writ":0.25,"used":554.4,"free":3109.76},{"epoch":26148600,"idl":99.86,"recv":0.03,"send":0.01,"writ":0.4,"used":553.68,"free":3110.47},{"epoch":26148601,"idl":99.88,"recv":0.09,"send":0.04,"writ":0.47,"used":553.67,"free":3110.48},{"epoch":26148602,"idl":99.9,"recv":0.05,"send":0.01,"writ":0.38,"used":553.67,"free":3110.49},{"epoch":26148603,"idl":99.79,"recv":0.07,"send":0.02,"writ":0.74,"used":554.46,"free":3109.72},{"epoch":26148604,"idl":99.78,"recv":0.18,"send":0.74,"writ":0.45,"used":554.71,"free":3109.43},{"epoch":26148605,"idl":99.52,"recv":1.47,"send":46.23,"writ":0.93,"used":556.96,"free":3107.17},{"epoch":26148606,"idl":99.54,"recv":1.56,"send":48.39,"writ":1.09,"used":556.99,"free":3107.14},{"epoch":26148607,"idl":99.57,"recv":1.57,"send":49.8,"writ":0.85,"used":556.96,"free":3107.16},{"epoch":26148608,"idl":99.55,"recv":0.78,"send":20.83,"writ":0.85,"used":557.38,"free":3106.74},{"epoch":26148609,"idl":99.62,"recv":5.8,"send":6.71,"writ":6.13,"used":557.27,"free":3104.79},{"epoch":26148610,"idl":80.77,"recv":0.04,"send":0.87,"writ":7.77,"used":799.09,"free":2860.26},{"epoch":26148611,"idl":99.92,"recv":0.07,"send":3.23,"writ":0.32,"used":560.22,"free":3098.99},{"epoch":26148612,"idl":99.94,"recv":0.02,"send":0.6,"writ":0.25,"used":560.22,"free":3098.97},{"epoch":26148613,"idl":99.8,"recv":0,"send":0.07,"writ":0.55,"used":560.94,"free":3098.24},{"epoch":26148614,"idl":99.95,"recv":0,"send":0,"writ":0.23,"used":561.67,"free":3097.52},{"epoch":26148615,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":562.16,"free":3097.06},{"epoch":26148616,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":562.15,"free":3097.07},{"epoch":26148617,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":562.12,"free":3097.09},{"epoch":26148618,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":562.64,"free":3096.57},{"epoch":26148619,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":562.81,"free":3096.39},{"epoch":26148620,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":562.58,"free":3096.63},{"epoch":26148621,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":562.55,"free":3096.66},{"epoch":26148622,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":562.54,"free":3096.67},{"epoch":26148623,"idl":99.22,"recv":0,"send":0,"writ":0.31,"used":562.86,"free":3096.34},{"epoch":26148624,"idl":99.93,"recv":0,"send":0,"writ":0.38,"used":562.61,"free":3096.59},{"epoch":26148625,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":562.43,"free":3096.78},{"epoch":26148626,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":562.39,"free":3096.81},{"epoch":26148627,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":562.37,"free":3096.84},{"epoch":26148628,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":562.35,"free":3096.85},{"epoch":26148629,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":563.13,"free":3096.06},{"epoch":26148630,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":562.58,"free":3096.63},{"epoch":26148631,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":562.55,"free":3096.65},{"epoch":26148632,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":562.53,"free":3096.67},{"epoch":26148633,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":562.5,"free":3096.7},{"epoch":26148634,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":562.78,"free":3096.42},{"epoch":26148635,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":562.69,"free":3096.54},{"epoch":26148636,"idl":99.89,"recv":0.07,"send":2.79,"writ":0.31,"used":562.63,"free":3096.58},{"epoch":26148637,"idl":99.95,"recv":0,"send":0.01,"writ":0.2,"used":562.6,"free":3096.6},{"epoch":26148638,"idl":99.95,"recv":0,"send":0.01,"writ":0.18,"used":562.65,"free":3096.55},{"epoch":26148639,"idl":99.71,"recv":0,"send":0,"writ":0.69,"used":563.38,"free":3095.79},{"epoch":26148640,"idl":99.81,"recv":0.02,"send":0.03,"writ":0.32,"used":559.68,"free":3099.55},{"epoch":26148641,"idl":99.93,"recv":0.01,"send":0,"writ":0.19,"used":559.54,"free":3099.7},{"epoch":26148642,"idl":80.93,"recv":0.05,"send":1.29,"writ":4.73,"used":1032.98,"free":2626.19},{"epoch":26148643,"idl":99.76,"recv":0.01,"send":0.56,"writ":0.23,"used":946.34,"free":2712.87},{"epoch":26148644,"idl":97.83,"recv":0,"send":0.01,"writ":0.58,"used":607.54,"free":3051.67},{"epoch":26148645,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":607.65,"free":3051.59},{"epoch":26148646,"idl":99.87,"recv":0,"send":0.02,"writ":0.2,"used":607.62,"free":3051.62},{"epoch":26148647,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.19,"used":607.56,"free":3051.67},{"epoch":26148648,"idl":85.25,"recv":0.03,"send":0.02,"writ":1,"used":704.25,"free":2954.94},{"epoch":26148649,"idl":92.1,"recv":0.05,"send":1.29,"writ":4.52,"used":1081.22,"free":2577.98},{"epoch":26148650,"idl":82.45,"recv":0.04,"send":1.48,"writ":4.65,"used":1104.07,"free":2555.12},{"epoch":26148651,"idl":99.7,"recv":0,"send":0,"writ":0.17,"used":637.1,"free":3022.12},{"epoch":26148652,"idl":99.81,"recv":0.01,"send":0.02,"writ":0.21,"used":606.07,"free":3053.14},{"epoch":26148653,"idl":80.88,"recv":0.05,"send":1.04,"writ":4.78,"used":1019.2,"free":2639.96},{"epoch":26148654,"idl":99.56,"recv":0,"send":0,"writ":0.65,"used":811.35,"free":2847.84},{"epoch":26148655,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":607.62,"free":3051.59},{"epoch":26148656,"idl":80.7,"recv":0.09,"send":2.66,"writ":4.78,"used":1075.97,"free":2583.18},{"epoch":26148657,"idl":99.72,"recv":0,"send":0,"writ":0.16,"used":890.62,"free":2768.55},{"epoch":26148658,"idl":99.86,"recv":0,"send":0.07,"writ":0.16,"used":605.54,"free":3053.63},{"epoch":26148659,"idl":80.7,"recv":0.06,"send":1.44,"writ":4.61,"used":805.97,"free":2853.14},{"epoch":26148660,"idl":99.7,"recv":0,"send":0,"writ":0.7,"used":1075.6,"free":2583.55},{"epoch":26148661,"idl":99.71,"recv":0,"send":0,"writ":0.16,"used":660.22,"free":2998.93},{"epoch":26148662,"idl":80.82,"recv":0.06,"send":1.58,"writ":4.11,"used":760.55,"free":2898.54},{"epoch":26148663,"idl":99.81,"recv":0.03,"send":1.43,"writ":0.77,"used":1069.23,"free":2589.89},{"epoch":26148664,"idl":99.53,"recv":0.03,"send":1,"writ":0.47,"used":699.47,"free":2959.64},{"epoch":26148665,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":606.37,"free":3052.75},{"epoch":26148666,"idl":99.84,"recv":0.05,"send":2.14,"writ":0.32,"used":606.34,"free":3052.76},{"epoch":26148667,"idl":81.04,"recv":0.07,"send":1.22,"writ":4.64,"used":902.24,"free":2756.81},{"epoch":26148668,"idl":99.7,"recv":0.02,"send":0.01,"writ":0.24,"used":893.14,"free":2765.93},{"epoch":26148669,"idl":80.98,"recv":0.04,"send":0.04,"writ":4.82,"used":956.28,"free":2702.72},{"epoch":26148670,"idl":80.45,"recv":0.11,"send":3.28,"writ":5.21,"used":1072.81,"free":2586.2},{"epoch":26148671,"idl":99.63,"recv":0,"send":0,"writ":0.24,"used":731.06,"free":2927.97},{"epoch":26148672,"idl":99.83,"recv":0.04,"send":1.31,"writ":0.26,"used":604.74,"free":3054.27},{"epoch":26148673,"idl":95.85,"recv":0.04,"send":0,"writ":0.46,"used":616.3,"free":3042.7},{"epoch":26148674,"idl":66.09,"recv":0.11,"send":2.71,"writ":8.66,"used":1101.31,"free":2557.6},{"epoch":26148675,"idl":99.44,"recv":0,"send":0.01,"writ":1.06,"used":1004.62,"free":2654.38},{"epoch":26148676,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":606.72,"free":3052.28},{"epoch":26148677,"idl":99.8,"recv":0.05,"send":1.82,"writ":0.39,"used":606.8,"free":3052.18},{"epoch":26148678,"idl":99.85,"recv":0.03,"send":1.15,"writ":0.28,"used":606.11,"free":3052.86},{"epoch":26148679,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":606.08,"free":3052.88},{"epoch":26148680,"idl":99.68,"recv":0,"send":0,"writ":0.77,"used":606.87,"free":3052.11},{"epoch":26148681,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":606.75,"free":3052.23},{"epoch":26148682,"idl":99.38,"recv":0.02,"send":0.09,"writ":0.5,"used":607,"free":3051.97},{"epoch":26148683,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":607.2,"free":3051.76},{"epoch":26148684,"idl":79.6,"recv":0.04,"send":1.05,"writ":4.74,"used":790.64,"free":2868.28},{"epoch":26148685,"idl":99.66,"recv":0,"send":0.04,"writ":1.06,"used":1099.4,"free":2559.56},{"epoch":26148686,"idl":99.58,"recv":0,"send":0,"writ":0.17,"used":616.7,"free":3042.25},{"epoch":26148687,"idl":99.82,"recv":0.02,"send":0,"writ":0.21,"used":608.15,"free":3050.8},{"epoch":26148688,"idl":80.14,"recv":0.06,"send":1.44,"writ":4.25,"used":795.19,"free":2863.72},{"epoch":26148689,"idl":99.82,"recv":0,"send":0.01,"writ":0.68,"used":1101.61,"free":2557.32},{"epoch":26148690,"idl":99.36,"recv":0,"send":0.05,"writ":0.69,"used":684.19,"free":2974.76},{"epoch":26148691,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":609.56,"free":3049.38},{"epoch":26148692,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":609.61,"free":3049.32},{"epoch":26148693,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":609.69,"free":3049.25},{"epoch":26148694,"idl":99.81,"recv":0.03,"send":1.09,"writ":0.23,"used":609.61,"free":3049.32},{"epoch":26148695,"idl":99.66,"recv":0,"send":0,"writ":0.68,"used":609.55,"free":3049.4},{"epoch":26148696,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":609.07,"free":3049.87},{"epoch":26148697,"idl":99.83,"recv":0.03,"send":1.12,"writ":0.2,"used":608.84,"free":3050.09},{"epoch":26148698,"idl":99.83,"recv":0.01,"send":0.31,"writ":0.29,"used":608.53,"free":3050.39},{"epoch":26148699,"idl":99.74,"recv":0,"send":0.01,"writ":0.36,"used":609.01,"free":3049.88},{"epoch":26148700,"idl":99.68,"recv":0,"send":0.01,"writ":0.55,"used":609.81,"free":3049.1},{"epoch":26148701,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":609.37,"free":3049.53},{"epoch":26148702,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":609.34,"free":3049.56},{"epoch":26148703,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":609.31,"free":3049.59},{"epoch":26148704,"idl":99.53,"recv":0.28,"send":1.39,"writ":0.26,"used":610.11,"free":3048.73},{"epoch":26148705,"idl":99.15,"recv":0.02,"send":0.07,"writ":0.43,"used":611.84,"free":3046.98},{"epoch":26148706,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.62,"used":612.46,"free":3046.34},{"epoch":26148707,"idl":99.83,"recv":0.03,"send":0.04,"writ":0.28,"used":611.12,"free":3047.69},{"epoch":26148708,"idl":99.83,"recv":0.03,"send":0.03,"writ":0.26,"used":611.04,"free":3047.76},{"epoch":26148709,"idl":99.78,"recv":0.04,"send":0.11,"writ":0.25,"used":611.15,"free":3047.67},{"epoch":26148710,"idl":99.6,"recv":0.17,"send":2.33,"writ":0.48,"used":609.41,"free":3049.44},{"epoch":26148711,"idl":80.98,"recv":0.23,"send":4.49,"writ":5.38,"used":1025.07,"free":2633.54},{"epoch":26148712,"idl":99.7,"recv":0,"send":0.01,"writ":0.2,"used":790.7,"free":2867.92},{"epoch":26148713,"idl":81,"recv":0.02,"send":0.03,"writ":4.47,"used":840.25,"free":2818.33},{"epoch":26148714,"idl":99.61,"recv":0.03,"send":1.35,"writ":0.52,"used":968.88,"free":2689.72},{"epoch":26148715,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":611.06,"free":3047.56},{"epoch":26148716,"idl":99.68,"recv":0.06,"send":1.46,"writ":0.54,"used":611.41,"free":3047.22},{"epoch":26148717,"idl":99.86,"recv":0.04,"send":0,"writ":0.37,"used":611.12,"free":3047.49},{"epoch":26148718,"idl":80.81,"recv":0.09,"send":3.03,"writ":4.67,"used":1037.77,"free":2620.76},{"epoch":26148719,"idl":80.31,"recv":0.05,"send":1.06,"writ":4.48,"used":1046.17,"free":2612.35},{"epoch":26148720,"idl":99.64,"recv":0,"send":0,"writ":0.58,"used":995.21,"free":2663.36},{"epoch":26148721,"idl":80.71,"recv":0.07,"send":1.3,"writ":4.72,"used":775.07,"free":2883.43},{"epoch":26148722,"idl":99.84,"recv":0,"send":0.03,"writ":0.63,"used":1085.68,"free":2572.85},{"epoch":26148723,"idl":99.67,"recv":0,"send":0.04,"writ":0.25,"used":633.95,"free":3024.57},{"epoch":26148724,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":609.79,"free":3048.73},{"epoch":26148725,"idl":99.77,"recv":0.02,"send":0.95,"writ":0.43,"used":611.24,"free":3047.29},{"epoch":26148726,"idl":99.67,"recv":0.02,"send":1.37,"writ":0.77,"used":611.81,"free":3046.71},{"epoch":26148727,"idl":99.83,"recv":0.04,"send":1.42,"writ":0.18,"used":611.16,"free":3047.34},{"epoch":26148728,"idl":99.83,"recv":0.04,"send":1.5,"writ":0.39,"used":610.4,"free":3048.08},{"epoch":26148729,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":611.05,"free":3047.39},{"epoch":26148730,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":610.98,"free":3047.49},{"epoch":26148731,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":611.07,"free":3047.39},{"epoch":26148732,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":611.77,"free":3046.68},{"epoch":26148733,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":611.39,"free":3047.06},{"epoch":26148734,"idl":99.79,"recv":0.01,"send":0.04,"writ":0.23,"used":611.32,"free":3047.13},{"epoch":26148735,"idl":99.73,"recv":0,"send":0.01,"writ":0.34,"used":611.47,"free":3047},{"epoch":26148736,"idl":99.83,"recv":0,"send":0.04,"writ":0.21,"used":611.4,"free":3047.06},{"epoch":26148737,"idl":99.69,"recv":0,"send":0,"writ":0.68,"used":611.7,"free":3046.75},{"epoch":26148738,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":611.32,"free":3047.13},{"epoch":26148739,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":611.14,"free":3047.3},{"epoch":26148740,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":610.76,"free":3047.7},{"epoch":26148741,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":610.73,"free":3047.73},{"epoch":26148742,"idl":99.69,"recv":0,"send":0,"writ":0.6,"used":610.56,"free":3047.89},{"epoch":26148743,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":609.94,"free":3048.51},{"epoch":26148744,"idl":99.83,"recv":0,"send":0.01,"writ":0.17,"used":609.9,"free":3048.54},{"epoch":26148745,"idl":99.79,"recv":0,"send":0,"writ":0.38,"used":609.87,"free":3048.59},{"epoch":26148746,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":609.97,"free":3048.49},{"epoch":26148747,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":611.17,"free":3047.29},{"epoch":26148748,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":611.19,"free":3047.26},{"epoch":26148749,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":611.15,"free":3047.3},{"epoch":26148750,"idl":99.79,"recv":0,"send":0.01,"writ":0.34,"used":610.9,"free":3047.58},{"epoch":26148751,"idl":99.84,"recv":0,"send":0.02,"writ":0.23,"used":610.94,"free":3047.53},{"epoch":26148752,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":611.77,"free":3046.7},{"epoch":26148753,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":611.19,"free":3047.28},{"epoch":26148754,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":611.15,"free":3047.31},{"epoch":26148755,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":611.39,"free":3047.08},{"epoch":26148756,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":611.36,"free":3047.11},{"epoch":26148757,"idl":99.7,"recv":0,"send":0.02,"writ":0.61,"used":611.13,"free":3047.34},{"epoch":26148758,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":610.96,"free":3047.49},{"epoch":26148759,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":610.93,"free":3047.5},{"epoch":26148760,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":611.16,"free":3047.28},{"epoch":26148761,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":611.14,"free":3047.3},{"epoch":26148762,"idl":99.69,"recv":0,"send":0,"writ":0.4,"used":611.46,"free":3046.98},{"epoch":26148763,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":611.07,"free":3047.36},{"epoch":26148764,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":611.04,"free":3047.39},{"epoch":26148765,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":611.64,"free":3046.81},{"epoch":26148766,"idl":99.08,"recv":0,"send":0,"writ":0.16,"used":611.68,"free":3046.76},{"epoch":26148767,"idl":99.85,"recv":0,"send":0.01,"writ":0.14,"used":611.65,"free":3046.79},{"epoch":26148768,"idl":99.66,"recv":0,"send":0,"writ":0.57,"used":611.74,"free":3046.7},{"epoch":26148769,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":611.35,"free":3047.08},{"epoch":26148770,"idl":99.79,"recv":0,"send":0,"writ":0.48,"used":611.02,"free":3047.43},{"epoch":26148771,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":610.82,"free":3047.63},{"epoch":26148772,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":610.93,"free":3047.51},{"epoch":26148773,"idl":99.68,"recv":0.01,"send":0.2,"writ":0.7,"used":611.88,"free":3046.55},{"epoch":26148774,"idl":99.85,"recv":0,"send":0.02,"writ":0.22,"used":611.66,"free":3046.76},{"epoch":26148775,"idl":99.78,"recv":0.01,"send":0.29,"writ":0.35,"used":611.5,"free":3046.93},{"epoch":26148776,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":610.67,"free":3047.76},{"epoch":26148777,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":610.65,"free":3047.78},{"epoch":26148778,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":611.13,"free":3047.29},{"epoch":26148779,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":610.82,"free":3047.6},{"epoch":26148780,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":610.82,"free":3047.63},{"epoch":26148781,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":610.79,"free":3047.66},{"epoch":26148782,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":610.91,"free":3047.53},{"epoch":26148783,"idl":99.7,"recv":0,"send":0.01,"writ":0.72,"used":611.49,"free":3046.94},{"epoch":26148784,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":611.35,"free":3047.07},{"epoch":26148785,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":611.59,"free":3046.85},{"epoch":26148786,"idl":99.83,"recv":0,"send":0.01,"writ":0.17,"used":611.56,"free":3046.88},{"epoch":26148787,"idl":99.83,"recv":0,"send":0.02,"writ":0.2,"used":611.55,"free":3046.88},{"epoch":26148788,"idl":99.72,"recv":0,"send":0.01,"writ":0.81,"used":612.31,"free":3046.12},{"epoch":26148789,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":611.63,"free":3046.78},{"epoch":26148790,"idl":99.78,"recv":0,"send":0.01,"writ":0.38,"used":611.85,"free":3046.57},{"epoch":26148791,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":611.81,"free":3046.61},{"epoch":26148792,"idl":99.85,"recv":0,"send":0.01,"writ":0.21,"used":611.85,"free":3046.56},{"epoch":26148793,"idl":99.71,"recv":0,"send":0,"writ":0.47,"used":612.44,"free":3045.96},{"epoch":26148794,"idl":99.81,"recv":0,"send":0.02,"writ":0.32,"used":611.35,"free":3047.07},{"epoch":26148795,"idl":99.8,"recv":0,"send":0.01,"writ":0.35,"used":610.88,"free":3047.56},{"epoch":26148796,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":610.84,"free":3047.59},{"epoch":26148797,"idl":99.83,"recv":0.01,"send":0.04,"writ":0.23,"used":611.05,"free":3047.37},{"epoch":26148798,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":611.14,"free":3047.28},{"epoch":26148799,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":611.29,"free":3047.13},{"epoch":26148800,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":611.35,"free":3047.08},{"epoch":26148801,"idl":99.85,"recv":0,"send":0.02,"writ":0.18,"used":611.31,"free":3047.11},{"epoch":26148802,"idl":99.84,"recv":0,"send":0.02,"writ":0.16,"used":611.4,"free":3047.02},{"epoch":26148803,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":611.39,"free":3047.03},{"epoch":26148804,"idl":99.64,"recv":0,"send":0,"writ":0.57,"used":611.72,"free":3046.7},{"epoch":26148805,"idl":99.77,"recv":0.01,"send":0.07,"writ":0.32,"used":610.13,"free":3048.3},{"epoch":26148806,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":610.04,"free":3048.39},{"epoch":26148807,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":610.31,"free":3048.12},{"epoch":26148808,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":610.4,"free":3048.02},{"epoch":26148809,"idl":99.72,"recv":0,"send":0.04,"writ":0.61,"used":611.29,"free":3047.12},{"epoch":26148810,"idl":99.78,"recv":0.01,"send":0.16,"writ":0.33,"used":611.35,"free":3047.08},{"epoch":26148811,"idl":99.87,"recv":0,"send":0.12,"writ":0.24,"used":611.37,"free":3047.05},{"epoch":26148812,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":611.28,"free":3047.14},{"epoch":26148813,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":611.06,"free":3047.36},{"epoch":26148814,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":611.75,"free":3046.66},{"epoch":26148815,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":611.16,"free":3047.27},{"epoch":26148816,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":611.12,"free":3047.31},{"epoch":26148817,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":611.08,"free":3047.34},{"epoch":26148818,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":611.07,"free":3047.35},{"epoch":26148819,"idl":99.77,"recv":0,"send":0,"writ":0.66,"used":611.82,"free":3046.57},{"epoch":26148820,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":610.87,"free":3047.53},{"epoch":26148821,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":610.92,"free":3047.48},{"epoch":26148822,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":610.89,"free":3047.5},{"epoch":26148823,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":610.87,"free":3047.52},{"epoch":26148824,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":611.53,"free":3046.85},{"epoch":26148825,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":611.32,"free":3047.08},{"epoch":26148826,"idl":99.5,"recv":0,"send":0,"writ":0.13,"used":611.29,"free":3047.11},{"epoch":26148827,"idl":99.74,"recv":0,"send":0.01,"writ":0.18,"used":611.25,"free":3047.14},{"epoch":26148828,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":611.4,"free":3046.99},{"epoch":26148829,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":611.88,"free":3046.5},{"epoch":26148830,"idl":99.87,"recv":0,"send":0,"writ":0.46,"used":612.11,"free":3046.29},{"epoch":26148831,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":612.08,"free":3046.32},{"epoch":26148832,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":612.05,"free":3046.34},{"epoch":26148833,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":611.69,"free":3046.7},{"epoch":26148834,"idl":99.81,"recv":0.01,"send":0,"writ":0.41,"used":611.85,"free":3046.53},{"epoch":26148835,"idl":99.9,"recv":0,"send":0,"writ":0.44,"used":611.52,"free":3046.88},{"epoch":26148836,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":611.59,"free":3046.8},{"epoch":26148837,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":611.64,"free":3046.75},{"epoch":26148838,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":611.61,"free":3046.78},{"epoch":26148839,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":611.56,"free":3046.82},{"epoch":26148840,"idl":99.72,"recv":0,"send":0,"writ":0.7,"used":612.2,"free":3046.19},{"epoch":26148841,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":611.51,"free":3046.88},{"epoch":26148842,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":611.48,"free":3046.9},{"epoch":26148843,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":611.66,"free":3046.72},{"epoch":26148844,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":611.63,"free":3046.74},{"epoch":26148845,"idl":99.63,"recv":0,"send":0,"writ":0.8,"used":611.99,"free":3046.39},{"epoch":26148846,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":611.83,"free":3046.56},{"epoch":26148847,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":611.79,"free":3046.59},{"epoch":26148848,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":611.77,"free":3046.61},{"epoch":26148849,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":611.37,"free":3046.97},{"epoch":26148850,"idl":99.73,"recv":0,"send":0,"writ":0.75,"used":611.83,"free":3046.53},{"epoch":26148851,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":611.63,"free":3046.73},{"epoch":26148852,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":611.6,"free":3046.76},{"epoch":26148853,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":611.28,"free":3047.07},{"epoch":26148854,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":610.55,"free":3047.8},{"epoch":26148855,"idl":96.66,"recv":0.02,"send":0.01,"writ":78,"used":617.99,"free":3041.84},{"epoch":26148856,"idl":99.92,"recv":0,"send":0,"writ":0.33,"used":612.99,"free":3045.28},{"epoch":26148857,"idl":99.91,"recv":0,"send":0,"writ":0.23,"used":612.72,"free":3045.54},{"epoch":26148858,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":612.68,"free":3045.57},{"epoch":26148859,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":612.65,"free":3045.61},{"epoch":26148860,"idl":99.73,"recv":0,"send":0,"writ":0.77,"used":612.49,"free":3045.79},{"epoch":26148861,"idl":99.93,"recv":0,"send":0,"writ":0.23,"used":610.88,"free":3047.43},{"epoch":26148862,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":610.85,"free":3047.45},{"epoch":26148863,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":610.82,"free":3047.47},{"epoch":26148864,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":610.79,"free":3047.5},{"epoch":26148865,"idl":99.73,"recv":0,"send":0,"writ":0.77,"used":611.35,"free":3046.96},{"epoch":26148866,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":610.5,"free":3047.82},{"epoch":26148867,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":610.48,"free":3047.84},{"epoch":26148868,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":610.6,"free":3047.72},{"epoch":26148869,"idl":99.83,"recv":0.18,"send":0.96,"writ":0.21,"used":610.58,"free":3047.73},{"epoch":26148870,"idl":99.59,"recv":0.21,"send":0.84,"writ":0.59,"used":610.64,"free":3047.69},{"epoch":26148871,"idl":99.94,"recv":0,"send":0,"writ":0.3,"used":610.63,"free":3047.69},{"epoch":26148872,"idl":99.92,"recv":0.06,"send":0.09,"writ":0.34,"used":610.1,"free":3048.23},{"epoch":26148873,"idl":99.92,"recv":0,"send":0,"writ":0.25,"used":607.42,"free":3050.95},{"epoch":26148874,"idl":99.75,"recv":0.41,"send":8.59,"writ":0.28,"used":608.19,"free":3050.14},{"epoch":26148875,"idl":80.63,"recv":0.29,"send":5.18,"writ":5.15,"used":835.53,"free":2822.59},{"epoch":26148876,"idl":99.59,"recv":0,"send":0,"writ":0.63,"used":1003.17,"free":2654.95},{"epoch":26148877,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":607.4,"free":3050.72},{"epoch":26148878,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":607.38,"free":3050.74},{"epoch":26148879,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":609.08,"free":3049.01},{"epoch":26148880,"idl":99.88,"recv":0,"send":0,"writ":0.37,"used":609.33,"free":3048.8},{"epoch":26148881,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":609.82,"free":3048.3},{"epoch":26148882,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":609.47,"free":3048.64},{"epoch":26148883,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":609.45,"free":3048.66},{"epoch":26148884,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":609.43,"free":3048.68},{"epoch":26148885,"idl":99.89,"recv":0,"send":0,"writ":0.35,"used":609.69,"free":3048.44},{"epoch":26148886,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":609.84,"free":3048.29},{"epoch":26148887,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":609.4,"free":3048.72},{"epoch":26148888,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":609.38,"free":3048.74},{"epoch":26148889,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":609.36,"free":3048.75},{"epoch":26148890,"idl":99.88,"recv":0,"send":0,"writ":0.37,"used":609.32,"free":3048.81},{"epoch":26148891,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":609.44,"free":3048.69},{"epoch":26148892,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":609.13,"free":3048.99},{"epoch":26148893,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":609.17,"free":3048.94},{"epoch":26148894,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":608.99,"free":3049.12},{"epoch":26148895,"idl":99.86,"recv":0,"send":0,"writ":0.35,"used":609.48,"free":3048.65},{"epoch":26148896,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":609.83,"free":3048.3},{"epoch":26148897,"idl":80.91,"recv":0.01,"send":0.03,"writ":4.51,"used":799.4,"free":2858.68},{"epoch":26148898,"idl":99.9,"recv":0,"send":0,"writ":0.46,"used":554.93,"free":3103.42},{"epoch":26148899,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":553.15,"free":3105.39},{"epoch":26148900,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":554.13,"free":3104.43},{"epoch":26148901,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":554.65,"free":3103.91},{"epoch":26148902,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.29,"free":3104.26},{"epoch":26148903,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.26,"free":3104.29},{"epoch":26148904,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.25,"free":3104.32},{"epoch":26148905,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":554.79,"free":3103.8},{"epoch":26148906,"idl":99.82,"recv":0,"send":0,"writ":0.37,"used":555.1,"free":3103.49},{"epoch":26148907,"idl":99.95,"recv":0,"send":0,"writ":0.37,"used":554.95,"free":3103.64},{"epoch":26148908,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":554.94,"free":3103.64},{"epoch":26148909,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":554.92,"free":3103.63},{"epoch":26148910,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":554.67,"free":3103.91},{"epoch":26148911,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":554.63,"free":3103.94},{"epoch":26148912,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":554.97,"free":3103.59},{"epoch":26148913,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.67,"free":3103.89},{"epoch":26148914,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.76,"free":3103.82},{"epoch":26148915,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":554.28,"free":3104.31},{"epoch":26148916,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.25,"free":3104.34},{"epoch":26148917,"idl":99.78,"recv":0,"send":0,"writ":0.6,"used":554.99,"free":3103.59},{"epoch":26148918,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.69,"free":3103.89},{"epoch":26148919,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.67,"free":3103.9},{"epoch":26148920,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":554.91,"free":3103.67},{"epoch":26148921,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.9,"free":3103.68},{"epoch":26148922,"idl":99.82,"recv":0,"send":0,"writ":0.57,"used":555.22,"free":3103.36},{"epoch":26148923,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.86,"free":3103.71},{"epoch":26148924,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.88,"free":3103.69},{"epoch":26148925,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":554.53,"free":3104.05},{"epoch":26148926,"idl":99.55,"recv":0,"send":0,"writ":0.17,"used":554.5,"free":3104.08},{"epoch":26148927,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":555.11,"free":3103.47},{"epoch":26148928,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":554.95,"free":3103.62},{"epoch":26148929,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":554.92,"free":3103.64},{"epoch":26148930,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":554.94,"free":3103.65},{"epoch":26148931,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":554.91,"free":3103.68},{"epoch":26148932,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":555.44,"free":3103.14},{"epoch":26148933,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.62,"free":3103.95},{"epoch":26148934,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.59,"free":3103.98},{"epoch":26148935,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":554.47,"free":3104.11},{"epoch":26148936,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":554.51,"free":3104.07},{"epoch":26148937,"idl":99.8,"recv":0,"send":0,"writ":0.44,"used":555.08,"free":3103.49},{"epoch":26148938,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":554.96,"free":3103.61},{"epoch":26148939,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":555.19,"free":3103.36},{"epoch":26148940,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":554.95,"free":3103.62},{"epoch":26148941,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.93,"free":3103.63},{"epoch":26148942,"idl":99.79,"recv":0,"send":0,"writ":0.38,"used":555.25,"free":3103.3},{"epoch":26148943,"idl":99.93,"recv":0,"send":0,"writ":0.38,"used":554.87,"free":3103.69},{"epoch":26148944,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.83,"free":3103.72},{"epoch":26148945,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":554.73,"free":3103.84},{"epoch":26148946,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.75,"free":3103.81},{"epoch":26148947,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":555.08,"free":3103.47},{"epoch":26148948,"idl":99.93,"recv":0,"send":0,"writ":0.4,"used":554.96,"free":3103.6},{"epoch":26148949,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":554.93,"free":3103.62},{"epoch":26148950,"idl":99.85,"recv":0,"send":0,"writ":0.4,"used":555.03,"free":3103.54},{"epoch":26148951,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.9,"free":3103.66},{"epoch":26148952,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":554.88,"free":3103.68},{"epoch":26148953,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":555.43,"free":3103.13},{"epoch":26148954,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":555.08,"free":3103.47},{"epoch":26148955,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":555.09,"free":3103.47},{"epoch":26148956,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":555.23,"free":3103.33},{"epoch":26148957,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.27,"free":3103.29},{"epoch":26148958,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":555.43,"free":3103.13},{"epoch":26148959,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.98,"free":3103.57},{"epoch":26148960,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":555.5,"free":3103.07},{"epoch":26148961,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.46,"free":3103.11},{"epoch":26148962,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":555.43,"free":3103.13},{"epoch":26148963,"idl":99.82,"recv":0,"send":0,"writ":0.57,"used":555.63,"free":3102.92},{"epoch":26148964,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":555.14,"free":3103.41},{"epoch":26148965,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":555.15,"free":3103.41},{"epoch":26148966,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":555.11,"free":3103.44},{"epoch":26148967,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":555.18,"free":3103.38},{"epoch":26148968,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":556.07,"free":3102.48},{"epoch":26148969,"idl":99.88,"recv":0,"send":0,"writ":0.46,"used":555.48,"free":3103.04},{"epoch":26148970,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":555.48,"free":3103.06},{"epoch":26148971,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.47,"free":3103.07},{"epoch":26148972,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.44,"free":3103.09},{"epoch":26148973,"idl":99.8,"recv":0,"send":0,"writ":0.46,"used":556,"free":3102.53},{"epoch":26148974,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":555.16,"free":3103.38},{"epoch":26148975,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":554.92,"free":3103.64},{"epoch":26148976,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.88,"free":3103.68},{"epoch":26148977,"idl":99.92,"recv":0,"send":0,"writ":0.22,"used":554.86,"free":3103.69},{"epoch":26148978,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":555.4,"free":3103.15},{"epoch":26148979,"idl":99.92,"recv":0,"send":0,"writ":0.4,"used":555.02,"free":3103.53},{"epoch":26148980,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":555.49,"free":3103.07},{"epoch":26148981,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.48,"free":3103.07},{"epoch":26148982,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":555.46,"free":3103.11},{"epoch":26148983,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":555.43,"free":3103.13},{"epoch":26148984,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":555.76,"free":3102.8},{"epoch":26148985,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":555.17,"free":3103.41},{"epoch":26148986,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":555.15,"free":3103.43},{"epoch":26148987,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.12,"free":3103.45},{"epoch":26148988,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.11,"free":3103.46},{"epoch":26148989,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":555.51,"free":3103.05},{"epoch":26148990,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":555.53,"free":3103.05},{"epoch":26148991,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.49,"free":3103.09},{"epoch":26148992,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.46,"free":3103.12},{"epoch":26148993,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.44,"free":3103.13},{"epoch":26148994,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":555.77,"free":3102.8},{"epoch":26148995,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":553.72,"free":3104.86},{"epoch":26148996,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.67,"free":3104.91},{"epoch":26148997,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.64,"free":3104.93},{"epoch":26148998,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.63,"free":3104.94},{"epoch":26148999,"idl":99.72,"recv":0,"send":0,"writ":0.69,"used":555.21,"free":3103.33},{"epoch":26149000,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":555.01,"free":3103.55},{"epoch":26149001,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.99,"free":3103.57},{"epoch":26149002,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.97,"free":3103.59},{"epoch":26149003,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":554.95,"free":3103.6},{"epoch":26149004,"idl":99.81,"recv":0,"send":0,"writ":0.43,"used":554.79,"free":3103.75},{"epoch":26149005,"idl":99.9,"recv":0,"send":0,"writ":0.46,"used":553.96,"free":3104.6},{"epoch":26149006,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.92,"free":3104.64},{"epoch":26149007,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.9,"free":3104.65},{"epoch":26149008,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.87,"free":3104.68},{"epoch":26149009,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":554.52,"free":3104.02},{"epoch":26149010,"idl":99.83,"recv":0,"send":0,"writ":0.46,"used":554.46,"free":3104.09},{"epoch":26149011,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.49,"free":3104.07},{"epoch":26149012,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.49,"free":3104.05},{"epoch":26149013,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.47,"free":3104.08},{"epoch":26149014,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":554.8,"free":3103.74},{"epoch":26149015,"idl":99.83,"recv":0,"send":0,"writ":0.52,"used":554.46,"free":3104.09},{"epoch":26149016,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.44,"free":3104.11},{"epoch":26149017,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.42,"free":3104.13},{"epoch":26149018,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.4,"free":3104.15},{"epoch":26149019,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.36,"free":3104.18},{"epoch":26149020,"idl":99.62,"recv":0,"send":0,"writ":0.7,"used":554.95,"free":3103.6},{"epoch":26149021,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":554.67,"free":3103.88},{"epoch":26149022,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.74,"free":3103.81},{"epoch":26149023,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.73,"free":3103.81},{"epoch":26149024,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.7,"free":3103.84},{"epoch":26149025,"idl":99.73,"recv":0,"send":0,"writ":0.7,"used":554.77,"free":3103.78},{"epoch":26149026,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.68,"free":3103.88},{"epoch":26149027,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.66,"free":3103.89},{"epoch":26149028,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.64,"free":3103.91},{"epoch":26149029,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":554.85,"free":3103.67},{"epoch":26149030,"idl":99.78,"recv":0,"send":0,"writ":0.65,"used":555.09,"free":3103.45},{"epoch":26149031,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":554.58,"free":3103.95},{"epoch":26149032,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.72,"free":3103.81},{"epoch":26149033,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.76,"free":3103.77},{"epoch":26149034,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.73,"free":3103.8},{"epoch":26149035,"idl":99.77,"recv":0,"send":0,"writ":0.77,"used":554.77,"free":3103.78},{"epoch":26149036,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.21,"free":3104.33},{"epoch":26149037,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":554.2,"free":3104.34},{"epoch":26149038,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.17,"free":3104.36},{"epoch":26149039,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.16,"free":3104.37},{"epoch":26149040,"idl":99.75,"recv":0,"send":0,"writ":0.73,"used":555.58,"free":3102.96},{"epoch":26149041,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.86,"free":3103.68},{"epoch":26149042,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.84,"free":3103.69},{"epoch":26149043,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":554.9,"free":3103.62},{"epoch":26149044,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.99,"free":3103.54},{"epoch":26149045,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":554.92,"free":3103.63},{"epoch":26149046,"idl":99.84,"recv":0,"send":0,"writ":0.56,"used":555.07,"free":3103.47},{"epoch":26149047,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.69,"free":3103.84},{"epoch":26149048,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.66,"free":3103.86},{"epoch":26149049,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.65,"free":3103.88},{"epoch":26149050,"idl":99.89,"recv":0,"send":0,"writ":0.37,"used":554.65,"free":3103.89},{"epoch":26149051,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":554.98,"free":3103.55},{"epoch":26149052,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.6,"free":3103.93},{"epoch":26149053,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.59,"free":3103.94},{"epoch":26149054,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.68,"free":3103.84},{"epoch":26149055,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":554.5,"free":3104.04},{"epoch":26149056,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":555.31,"free":3103.22},{"epoch":26149057,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.19,"free":3103.34},{"epoch":26149058,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.17,"free":3103.35},{"epoch":26149059,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":554.69,"free":3103.81},{"epoch":26149060,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":555.15,"free":3103.36},{"epoch":26149061,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":555.33,"free":3103.18},{"epoch":26149062,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.87,"free":3103.64},{"epoch":26149063,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":554.85,"free":3103.66},{"epoch":26149064,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.83,"free":3103.68},{"epoch":26149065,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":554.91,"free":3103.62},{"epoch":26149066,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":555.35,"free":3103.18},{"epoch":26149067,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.97,"free":3103.55},{"epoch":26149068,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.94,"free":3103.58},{"epoch":26149069,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.92,"free":3103.6},{"epoch":26149070,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":554.46,"free":3104.08},{"epoch":26149071,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":554.76,"free":3103.77},{"epoch":26149072,"idl":99.94,"recv":0,"send":0,"writ":0.27,"used":554.38,"free":3104.14},{"epoch":26149073,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.35,"free":3104.17},{"epoch":26149074,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":554.33,"free":3104.19},{"epoch":26149075,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":554.68,"free":3103.85},{"epoch":26149076,"idl":99.82,"recv":0,"send":0,"writ":0.4,"used":555.17,"free":3103.36},{"epoch":26149077,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":554.97,"free":3103.56},{"epoch":26149078,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.94,"free":3103.59},{"epoch":26149079,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.93,"free":3103.59},{"epoch":26149080,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":554.92,"free":3103.62},{"epoch":26149081,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":554.89,"free":3103.66},{"epoch":26149082,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":555.23,"free":3103.31},{"epoch":26149083,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":554.85,"free":3103.69},{"epoch":26149084,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.83,"free":3103.7},{"epoch":26149085,"idl":99.91,"recv":0,"send":0,"writ":0.32,"used":555.16,"free":3103.39},{"epoch":26149086,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.22,"free":3103.32},{"epoch":26149087,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":555.36,"free":3103.18},{"epoch":26149088,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.93,"free":3103.61},{"epoch":26149089,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":554.67,"free":3103.85},{"epoch":26149090,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":554.4,"free":3104.13},{"epoch":26149091,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.38,"free":3104.14},{"epoch":26149092,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":555.3,"free":3103.22},{"epoch":26149093,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.08,"free":3103.44},{"epoch":26149094,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.05,"free":3103.47},{"epoch":26149095,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":554.94,"free":3103.58},{"epoch":26149096,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.96,"free":3103.56},{"epoch":26149097,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":555.29,"free":3103.22},{"epoch":26149098,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.92,"free":3103.59},{"epoch":26149099,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.89,"free":3103.61},{"epoch":26149100,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":554.9,"free":3103.62},{"epoch":26149101,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.87,"free":3103.64},{"epoch":26149102,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":555.22,"free":3103.29},{"epoch":26149103,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.83,"free":3103.68},{"epoch":26149104,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.82,"free":3103.68},{"epoch":26149105,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":554.81,"free":3103.71},{"epoch":26149106,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.9,"free":3103.62},{"epoch":26149107,"idl":99.77,"recv":0,"send":0,"writ":0.39,"used":555.18,"free":3103.33},{"epoch":26149108,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":554.49,"free":3104.02},{"epoch":26149109,"idl":98.06,"recv":0,"send":0,"writ":0.14,"used":554.45,"free":3104.05},{"epoch":26149110,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":554.7,"free":3103.82},{"epoch":26149111,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.68,"free":3103.84},{"epoch":26149112,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":555.36,"free":3103.16},{"epoch":26149113,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":555.12,"free":3103.39},{"epoch":26149114,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":555.1,"free":3103.41},{"epoch":26149115,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":555.34,"free":3103.18},{"epoch":26149116,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.33,"free":3103.19},{"epoch":26149117,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.39,"free":3103.12},{"epoch":26149118,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":555.57,"free":3102.94},{"epoch":26149119,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":555.19,"free":3103.29},{"epoch":26149120,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":554.94,"free":3103.56},{"epoch":26149121,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.92,"free":3103.57},{"epoch":26149122,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.89,"free":3103.6},{"epoch":26149123,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":555.47,"free":3103.02},{"epoch":26149124,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.1,"free":3103.38},{"epoch":26149125,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":554.87,"free":3103.63},{"epoch":26149126,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.83,"free":3103.66},{"epoch":26149127,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.86,"free":3103.63},{"epoch":26149128,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":555.72,"free":3102.77},{"epoch":26149129,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":555.44,"free":3103.04},{"epoch":26149130,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":554.87,"free":3103.62},{"epoch":26149131,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.68,"free":3103.81},{"epoch":26149132,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.65,"free":3103.84},{"epoch":26149133,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":555.65,"free":3102.83},{"epoch":26149134,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":555.34,"free":3103.14},{"epoch":26149135,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":555.35,"free":3103.14},{"epoch":26149136,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.32,"free":3103.17},{"epoch":26149137,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.3,"free":3103.18},{"epoch":26149138,"idl":99.83,"recv":0,"send":0,"writ":0.55,"used":555.78,"free":3102.7},{"epoch":26149139,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.19,"free":3103.28},{"epoch":26149140,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":554.48,"free":3104.01},{"epoch":26149141,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.43,"free":3104.06},{"epoch":26149142,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.41,"free":3104.07},{"epoch":26149143,"idl":99.79,"recv":0,"send":0,"writ":0.43,"used":555.07,"free":3103.41},{"epoch":26149144,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":555.35,"free":3103.11},{"epoch":26149145,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":555.35,"free":3103.14},{"epoch":26149146,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.33,"free":3103.14},{"epoch":26149147,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.3,"free":3103.18},{"epoch":26149148,"idl":99.81,"recv":0,"send":0,"writ":0.42,"used":555.6,"free":3102.87},{"epoch":26149149,"idl":99.89,"recv":0,"send":0,"writ":0.43,"used":555.67,"free":3102.78},{"epoch":26149150,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":554.98,"free":3103.48},{"epoch":26149151,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.96,"free":3103.5},{"epoch":26149152,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.92,"free":3103.53},{"epoch":26149153,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":555.3,"free":3103.15},{"epoch":26149154,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.38,"free":3103.09},{"epoch":26149155,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":555.06,"free":3103.42},{"epoch":26149156,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.36,"free":3104.12},{"epoch":26149157,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":554.1,"free":3104.38},{"epoch":26149158,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.07,"free":3104.4},{"epoch":26149159,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":555.27,"free":3103.2},{"epoch":26149160,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":554.73,"free":3103.75},{"epoch":26149161,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":554.71,"free":3103.77},{"epoch":26149162,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.68,"free":3103.79},{"epoch":26149163,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.65,"free":3103.82},{"epoch":26149164,"idl":99.82,"recv":0,"send":0,"writ":0.57,"used":554.99,"free":3103.47},{"epoch":26149165,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":554.63,"free":3103.86},{"epoch":26149166,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.6,"free":3103.88},{"epoch":26149167,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.58,"free":3103.89},{"epoch":26149168,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":554.56,"free":3103.91},{"epoch":26149169,"idl":99.82,"recv":0,"send":0,"writ":0.58,"used":554.98,"free":3103.49},{"epoch":26149170,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":553.75,"free":3104.73},{"epoch":26149171,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.71,"free":3104.77},{"epoch":26149172,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":553.69,"free":3104.78},{"epoch":26149173,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.67,"free":3104.8},{"epoch":26149174,"idl":99.82,"recv":0,"send":0,"writ":0.56,"used":554.29,"free":3104.17},{"epoch":26149175,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":554.39,"free":3104.09},{"epoch":26149176,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":554.36,"free":3104.12},{"epoch":26149177,"idl":99.9,"recv":0,"send":0,"writ":0.12,"used":554.34,"free":3104.14},{"epoch":26149178,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.33,"free":3104.14},{"epoch":26149179,"idl":99.7,"recv":0,"send":0,"writ":0.68,"used":555.04,"free":3103.4},{"epoch":26149180,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":554.74,"free":3103.72},{"epoch":26149181,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":554.74,"free":3103.72},{"epoch":26149182,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.71,"free":3103.74},{"epoch":26149183,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.69,"free":3103.76},{"epoch":26149184,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":555.38,"free":3103.08},{"epoch":26149185,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":554.43,"free":3104.05},{"epoch":26149186,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":554.4,"free":3104.07},{"epoch":26149187,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.37,"free":3104.1},{"epoch":26149188,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.35,"free":3104.12},{"epoch":26149189,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":554.7,"free":3103.76},{"epoch":26149190,"idl":99.72,"recv":0,"send":0,"writ":0.53,"used":554.24,"free":3104.24},{"epoch":26149191,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554,"free":3104.47},{"epoch":26149192,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":553.98,"free":3104.49},{"epoch":26149193,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":553.96,"free":3104.5},{"epoch":26149194,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":554.32,"free":3104.14},{"epoch":26149195,"idl":99.85,"recv":0,"send":0,"writ":0.54,"used":554.9,"free":3103.58},{"epoch":26149196,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":554.9,"free":3103.59},{"epoch":26149197,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":554.89,"free":3103.6},{"epoch":26149198,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":554.86,"free":3103.63},{"epoch":26149199,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.83,"free":3103.65},{"epoch":26149200,"idl":99.67,"recv":0,"send":0,"writ":0.68,"used":554.99,"free":3103.5},{"epoch":26149201,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":554.65,"free":3103.84},{"epoch":26149202,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":554.74,"free":3103.75},{"epoch":26149203,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":554.71,"free":3103.77},{"epoch":26149204,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.68,"free":3103.8},{"epoch":26149205,"idl":99.69,"recv":0,"send":0,"writ":0.71,"used":555.7,"free":3102.79},{"epoch":26149206,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":554.89,"free":3103.61},{"epoch":26149207,"idl":99.85,"recv":0,"send":0.02,"writ":0.18,"used":554.85,"free":3103.66},{"epoch":26149208,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":554.82,"free":3103.68},{"epoch":26149209,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":554.54,"free":3103.93},{"epoch":26149210,"idl":99.68,"recv":0,"send":0,"writ":0.7,"used":555.31,"free":3103.18},{"epoch":26149211,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":554.96,"free":3103.53},{"epoch":26149212,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":554.94,"free":3103.54},{"epoch":26149213,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":554.91,"free":3103.57},{"epoch":26149214,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":554.89,"free":3103.59},{"epoch":26149215,"idl":99.63,"recv":0,"send":0,"writ":0.69,"used":554.8,"free":3103.7},{"epoch":26149216,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.62,"free":3103.87},{"epoch":26149217,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":554.84,"free":3103.64},{"epoch":26149218,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":554.82,"free":3103.66},{"epoch":26149219,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.81,"free":3103.67},{"epoch":26149220,"idl":95.03,"recv":0.35,"send":0.01,"writ":78.3,"used":565.18,"free":3093.55},{"epoch":26149221,"idl":99.75,"recv":0,"send":0,"writ":181.1,"used":557.23,"free":3101.01},{"epoch":26149222,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":557.21,"free":3101.02},{"epoch":26149223,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":557.2,"free":3101.03},{"epoch":26149224,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":557.17,"free":3101.05},{"epoch":26149225,"idl":99.67,"recv":0,"send":0,"writ":0.81,"used":557.36,"free":3100.89},{"epoch":26149226,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":555,"free":3103.28},{"epoch":26149227,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.98,"free":3103.29},{"epoch":26149228,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":554.96,"free":3103.31},{"epoch":26149229,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.95,"free":3103.31},{"epoch":26149230,"idl":99.63,"recv":0,"send":0,"writ":0.54,"used":555.52,"free":3102.77},{"epoch":26149231,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":554.89,"free":3103.42},{"epoch":26149232,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.85,"free":3103.44},{"epoch":26149233,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.83,"free":3103.46},{"epoch":26149234,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.81,"free":3103.48},{"epoch":26149235,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":554.82,"free":3103.49},{"epoch":26149236,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":555.57,"free":3102.73},{"epoch":26149237,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":555.25,"free":3103.04},{"epoch":26149238,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":555.22,"free":3103.07},{"epoch":26149239,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":554.48,"free":3103.78},{"epoch":26149240,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":554.81,"free":3103.47},{"epoch":26149241,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":555.22,"free":3103.05},{"epoch":26149242,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":554.84,"free":3103.42},{"epoch":26149243,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":554.82,"free":3103.45},{"epoch":26149244,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":554.79,"free":3103.46},{"epoch":26149245,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":555.27,"free":3103.01},{"epoch":26149246,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":555.07,"free":3103.2},{"epoch":26149247,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":554.02,"free":3104.25},{"epoch":26149248,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":554,"free":3104.27},{"epoch":26149249,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":553.97,"free":3104.29},{"epoch":26149250,"idl":99.36,"recv":0,"send":0,"writ":0.31,"used":554.69,"free":3103.59},{"epoch":26149251,"idl":97.77,"recv":0,"send":0,"writ":0.61,"used":554.89,"free":3103.39},{"epoch":26149252,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":554.87,"free":3103.4},{"epoch":26149253,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.83,"free":3103.43},{"epoch":26149254,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":554.81,"free":3103.45},{"epoch":26149255,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":555.05,"free":3103.22},{"epoch":26149256,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":555.47,"free":3102.8},{"epoch":26149257,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.26,"free":3103},{"epoch":26149258,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":555.24,"free":3103.02},{"epoch":26149259,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":554.98,"free":3103.28},{"epoch":26149260,"idl":99.56,"recv":0,"send":0,"writ":4.98,"used":555,"free":3103.45},{"epoch":26149261,"idl":99.73,"recv":0,"send":0,"writ":0.6,"used":555.43,"free":3103.02},{"epoch":26149262,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":555.53,"free":3102.91},{"epoch":26149263,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":555.62,"free":3102.82},{"epoch":26149264,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":555.59,"free":3102.85},{"epoch":26149265,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":555.36,"free":3103.11},{"epoch":26149266,"idl":99.72,"recv":0,"send":0,"writ":0.6,"used":555.52,"free":3102.94},{"epoch":26149267,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":554.57,"free":3103.89},{"epoch":26149268,"idl":97.01,"recv":0.02,"send":0.01,"writ":77.14,"used":557.88,"free":3101.82},{"epoch":26149269,"idl":99.1,"recv":3.03,"send":0.01,"writ":4.16,"used":558.44,"free":3096.68},{"epoch":26149270,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":557.94,"free":3097.16},{"epoch":26149271,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":558.5,"free":3096.59},{"epoch":26149272,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":556.66,"free":3098.44},{"epoch":26149273,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":556.64,"free":3098.45},{"epoch":26149274,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":554.99,"free":3100.15},{"epoch":26149275,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":555.2,"free":3099.96},{"epoch":26149276,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":555.24,"free":3099.92},{"epoch":26149277,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":555.9,"free":3099.25},{"epoch":26149278,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":555.56,"free":3099.59},{"epoch":26149279,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":555.54,"free":3099.6},{"epoch":26149280,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":554.57,"free":3100.59},{"epoch":26149281,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":554.51,"free":3100.65},{"epoch":26149282,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":555.67,"free":3099.48},{"epoch":26149283,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":555.44,"free":3099.71},{"epoch":26149284,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":555.43,"free":3099.71},{"epoch":26149285,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":555.2,"free":3099.96},{"epoch":26149286,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":555.31,"free":3099.85},{"epoch":26149287,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":555.86,"free":3099.32},{"epoch":26149288,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":555.55,"free":3099.62},{"epoch":26149289,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":555.52,"free":3099.64},{"epoch":26149290,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":555.51,"free":3099.67},{"epoch":26149291,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":555.49,"free":3099.69},{"epoch":26149292,"idl":99.73,"recv":0,"send":0,"writ":0.6,"used":556.16,"free":3099.01},{"epoch":26149293,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":555.43,"free":3099.73},{"epoch":26149294,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":555.43,"free":3099.73},{"epoch":26149295,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":555.66,"free":3099.52},{"epoch":26149296,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":555.81,"free":3099.37},{"epoch":26149297,"idl":99.73,"recv":0,"send":0,"writ":0.53,"used":555.99,"free":3099.18},{"epoch":26149298,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":554.82,"free":3100.35},{"epoch":26149299,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":555.27,"free":3099.87},{"epoch":26149300,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":555.28,"free":3099.88},{"epoch":26149301,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":555.25,"free":3099.91},{"epoch":26149302,"idl":99.71,"recv":0,"send":0,"writ":0.4,"used":555.66,"free":3099.5},{"epoch":26149303,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":555.69,"free":3099.46},{"epoch":26149304,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":555.68,"free":3099.47},{"epoch":26149305,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":555.43,"free":3099.73},{"epoch":26149306,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":555.41,"free":3099.75},{"epoch":26149307,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":555.91,"free":3099.25},{"epoch":26149308,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":555.56,"free":3099.59},{"epoch":26149309,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":555.53,"free":3099.62},{"epoch":26149310,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":555.37,"free":3099.81},{"epoch":26149311,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":554.78,"free":3100.39},{"epoch":26149312,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.77,"free":3100.39},{"epoch":26149313,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":554.89,"free":3100.27},{"epoch":26149314,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.24,"free":3100.93},{"epoch":26149315,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":554.72,"free":3100.47},{"epoch":26149316,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.7,"free":3100.48},{"epoch":26149317,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.67,"free":3100.5},{"epoch":26149318,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":555.37,"free":3099.81},{"epoch":26149319,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":555.1,"free":3100.07},{"epoch":26149320,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":554.85,"free":3100.33},{"epoch":26149321,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":554.82,"free":3100.36},{"epoch":26149322,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.79,"free":3100.38},{"epoch":26149323,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":555.12,"free":3100.05},{"epoch":26149324,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.75,"free":3100.41},{"epoch":26149325,"idl":99.75,"recv":0,"send":0,"writ":0.27,"used":554.12,"free":3101.06},{"epoch":26149326,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554,"free":3101.18},{"epoch":26149327,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":553.97,"free":3101.2},{"epoch":26149328,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":554.47,"free":3100.7},{"epoch":26149329,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":554.8,"free":3100.35},{"epoch":26149330,"idl":99.78,"recv":0,"send":0,"writ":0.26,"used":554.15,"free":3101.01},{"epoch":26149331,"idl":99.79,"recv":0,"send":0,"writ":0.14,"used":554.09,"free":3101.07},{"epoch":26149332,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":554.06,"free":3101.09},{"epoch":26149333,"idl":99.72,"recv":0,"send":0,"writ":0.45,"used":555.02,"free":3100.13},{"epoch":26149334,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":555,"free":3100.16},{"epoch":26149335,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":555.01,"free":3100.16},{"epoch":26149336,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":554.98,"free":3100.19},{"epoch":26149337,"idl":99.85,"recv":0,"send":0,"writ":0.23,"used":554.71,"free":3100.45},{"epoch":26149338,"idl":99.7,"recv":0,"send":0.01,"writ":0.49,"used":554.98,"free":3100.18},{"epoch":26149339,"idl":99.84,"recv":0,"send":0.01,"writ":0.22,"used":554.58,"free":3100.58},{"epoch":26149340,"idl":99.8,"recv":0,"send":0,"writ":0.26,"used":555.3,"free":3099.87},{"epoch":26149341,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":555.28,"free":3099.89},{"epoch":26149342,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":555.26,"free":3099.91},{"epoch":26149343,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":555.51,"free":3099.65},{"epoch":26149344,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":554.96,"free":3100.2},{"epoch":26149345,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":554.96,"free":3100.22},{"epoch":26149346,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":554.94,"free":3100.23},{"epoch":26149347,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":555.04,"free":3100.13},{"epoch":26149348,"idl":99.71,"recv":0,"send":0,"writ":0.39,"used":555.62,"free":3099.54},{"epoch":26149349,"idl":99.86,"recv":0,"send":0,"writ":0.38,"used":554.81,"free":3100.35},{"epoch":26149350,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":555.06,"free":3100.11},{"epoch":26149351,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":555.04,"free":3100.13},{"epoch":26149352,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":555.01,"free":3100.15},{"epoch":26149353,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":555,"free":3100.16},{"epoch":26149354,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":555.09,"free":3100.06},{"epoch":26149355,"idl":99.8,"recv":0,"send":0,"writ":0.25,"used":554.97,"free":3100.2},{"epoch":26149356,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":554.94,"free":3100.23},{"epoch":26149357,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.93,"free":3100.24},{"epoch":26149358,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.04,"free":3100.12},{"epoch":26149359,"idl":99.64,"recv":0,"send":0,"writ":0.68,"used":555.18,"free":3099.96},{"epoch":26149360,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":555.31,"free":3099.85},{"epoch":26149361,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":555.3,"free":3099.86},{"epoch":26149362,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":555.28,"free":3099.87},{"epoch":26149363,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.25,"free":3099.9},{"epoch":26149364,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":555.4,"free":3099.74},{"epoch":26149365,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":554.99,"free":3100.17},{"epoch":26149366,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":554.96,"free":3100.2},{"epoch":26149367,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":554.94,"free":3100.21},{"epoch":26149368,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":554.91,"free":3100.24},{"epoch":26149369,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":555.69,"free":3099.45},{"epoch":26149370,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":555,"free":3100.16},{"epoch":26149371,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.82,"free":3100.33},{"epoch":26149372,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":554.79,"free":3100.36},{"epoch":26149373,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.77,"free":3100.38},{"epoch":26149374,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":555.39,"free":3099.75},{"epoch":26149375,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":554.51,"free":3100.65},{"epoch":26149376,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.46,"free":3100.69},{"epoch":26149377,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.45,"free":3100.7},{"epoch":26149378,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.42,"free":3100.73},{"epoch":26149379,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":554.94,"free":3100.2},{"epoch":26149380,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":555.06,"free":3100.1},{"epoch":26149381,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":555.07,"free":3100.09},{"epoch":26149382,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.03,"free":3100.11},{"epoch":26149383,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.02,"free":3100.13},{"epoch":26149384,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":555.35,"free":3099.79},{"epoch":26149385,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":555.23,"free":3099.92},{"epoch":26149386,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.22,"free":3099.93},{"epoch":26149387,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.19,"free":3099.96},{"epoch":26149388,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.18,"free":3099.96},{"epoch":26149389,"idl":99.71,"recv":0,"send":0,"writ":0.46,"used":554.91,"free":3100.21},{"epoch":26149390,"idl":99.9,"recv":0,"send":0,"writ":0.47,"used":555.09,"free":3100.04},{"epoch":26149391,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.08,"free":3100.05},{"epoch":26149392,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.06,"free":3100.06},{"epoch":26149393,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":555.03,"free":3100.09},{"epoch":26149394,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":555.02,"free":3100.09},{"epoch":26149395,"idl":99.74,"recv":0,"send":0,"writ":0.68,"used":555.71,"free":3099.42},{"epoch":26149396,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":555,"free":3100.13},{"epoch":26149397,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":554.73,"free":3100.4},{"epoch":26149398,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":554.7,"free":3100.42},{"epoch":26149399,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.68,"free":3100.43},{"epoch":26149400,"idl":99.75,"recv":0,"send":0,"writ":0.64,"used":555.48,"free":3099.65},{"epoch":26149401,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.32,"free":3099.81},{"epoch":26149402,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.34,"free":3099.79},{"epoch":26149403,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.31,"free":3099.81},{"epoch":26149404,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.28,"free":3099.83},{"epoch":26149405,"idl":99.74,"recv":0,"send":0,"writ":0.63,"used":555.59,"free":3099.54},{"epoch":26149406,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.26,"free":3099.86},{"epoch":26149407,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.24,"free":3099.88},{"epoch":26149408,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.22,"free":3099.89},{"epoch":26149409,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.2,"free":3099.91},{"epoch":26149410,"idl":99.75,"recv":0,"send":0,"writ":0.65,"used":555.54,"free":3099.58},{"epoch":26149411,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.18,"free":3099.94},{"epoch":26149412,"idl":98.16,"recv":0,"send":0,"writ":0.15,"used":555.23,"free":3099.88},{"epoch":26149413,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.31,"free":3099.8},{"epoch":26149414,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.29,"free":3099.82},{"epoch":26149415,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":555.65,"free":3099.48},{"epoch":26149416,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":555.27,"free":3099.85},{"epoch":26149417,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.25,"free":3099.88},{"epoch":26149418,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.24,"free":3099.89},{"epoch":26149419,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":554.73,"free":3100.37},{"epoch":26149420,"idl":99.75,"recv":0,"send":0,"writ":0.53,"used":555.55,"free":3099.57},{"epoch":26149421,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":555.19,"free":3099.92},{"epoch":26149422,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.18,"free":3099.93},{"epoch":26149423,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.22,"free":3099.88},{"epoch":26149424,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.32,"free":3099.8},{"epoch":26149425,"idl":99.75,"recv":0,"send":0,"writ":0.43,"used":556.11,"free":3099.03},{"epoch":26149426,"idl":99.93,"recv":0,"send":0,"writ":0.41,"used":555.29,"free":3099.84},{"epoch":26149427,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.27,"free":3099.86},{"epoch":26149428,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":555.24,"free":3099.88},{"epoch":26149429,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":555.23,"free":3099.89},{"epoch":26149430,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":555.41,"free":3099.73},{"epoch":26149431,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":555.99,"free":3099.14},{"epoch":26149432,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.67,"free":3099.46},{"epoch":26149433,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":555.49,"free":3099.63},{"epoch":26149434,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.53,"free":3099.59},{"epoch":26149435,"idl":99.88,"recv":0,"send":0,"writ":0.25,"used":555.62,"free":3099.52},{"epoch":26149436,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":555.69,"free":3099.44},{"epoch":26149437,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.29,"free":3099.84},{"epoch":26149438,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.27,"free":3099.86},{"epoch":26149439,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":555.25,"free":3099.87},{"epoch":26149440,"idl":99.81,"recv":0,"send":0,"writ":0.25,"used":555.49,"free":3099.65},{"epoch":26149441,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":556.15,"free":3098.98},{"epoch":26149442,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.45,"free":3099.67},{"epoch":26149443,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":555.42,"free":3099.7},{"epoch":26149444,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.41,"free":3099.7},{"epoch":26149445,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":555.41,"free":3099.72},{"epoch":26149446,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":555.9,"free":3099.23},{"epoch":26149447,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":555.55,"free":3099.58},{"epoch":26149448,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":555.54,"free":3099.58},{"epoch":26149449,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":555.5,"free":3099.59},{"epoch":26149450,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":555.51,"free":3099.6},{"epoch":26149451,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":555.69,"free":3099.42},{"epoch":26149452,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.19,"free":3099.92},{"epoch":26149453,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.17,"free":3099.93},{"epoch":26149454,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":555.15,"free":3099.96},{"epoch":26149455,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":555.4,"free":3099.73},{"epoch":26149456,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":555.91,"free":3099.22},{"epoch":26149457,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":555.53,"free":3099.59},{"epoch":26149458,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.51,"free":3099.61},{"epoch":26149459,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.48,"free":3099.63},{"epoch":26149460,"idl":99.9,"recv":0,"send":0,"writ":0.24,"used":555.73,"free":3099.4},{"epoch":26149461,"idl":99.79,"recv":0,"send":0,"writ":0.42,"used":556.06,"free":3099.06},{"epoch":26149462,"idl":99.95,"recv":0,"send":0,"writ":0.28,"used":554.96,"free":3100.16},{"epoch":26149463,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.92,"free":3100.19},{"epoch":26149464,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.75,"free":3100.36},{"epoch":26149465,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":554.28,"free":3100.84},{"epoch":26149466,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":554.71,"free":3100.41},{"epoch":26149467,"idl":99.92,"recv":0,"send":0,"writ":0.38,"used":554.82,"free":3100.3},{"epoch":26149468,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":554.8,"free":3100.32},{"epoch":26149469,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.77,"free":3100.34},{"epoch":26149470,"idl":99.85,"recv":0,"send":0,"writ":0.25,"used":554.78,"free":3100.35},{"epoch":26149471,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":555.1,"free":3100.02},{"epoch":26149472,"idl":99.93,"recv":0,"send":0,"writ":0.41,"used":554.72,"free":3100.4},{"epoch":26149473,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.7,"free":3100.41},{"epoch":26149474,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.68,"free":3100.43},{"epoch":26149475,"idl":99.89,"recv":0,"send":0.01,"writ":0.27,"used":554.7,"free":3100.43},{"epoch":26149476,"idl":99.93,"recv":0,"send":0.02,"writ":0.19,"used":554.78,"free":3100.34},{"epoch":26149477,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":555.29,"free":3099.82},{"epoch":26149478,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.97,"free":3100.14},{"epoch":26149479,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":554.71,"free":3100.38},{"epoch":26149480,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":553.73,"free":3101.37},{"epoch":26149481,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.69,"free":3101.4},{"epoch":26149482,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":555.06,"free":3100.04},{"epoch":26149483,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.57,"free":3100.52},{"epoch":26149484,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.54,"free":3100.54},{"epoch":26149485,"idl":99.88,"recv":0,"send":0,"writ":0.26,"used":554.54,"free":3100.56},{"epoch":26149486,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.52,"free":3100.58},{"epoch":26149487,"idl":99.81,"recv":0,"send":0,"writ":0.41,"used":555.22,"free":3099.87},{"epoch":26149488,"idl":99.92,"recv":0,"send":0,"writ":0.28,"used":555.2,"free":3099.89},{"epoch":26149489,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.19,"free":3099.89},{"epoch":26149490,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":554.88,"free":3100.22},{"epoch":26149491,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":554.41,"free":3100.68},{"epoch":26149492,"idl":99.82,"recv":0,"send":0,"writ":0.57,"used":555.14,"free":3099.94},{"epoch":26149493,"idl":97.89,"recv":0,"send":0,"writ":0.16,"used":555.04,"free":3100.04},{"epoch":26149494,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":555.03,"free":3100.05},{"epoch":26149495,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":555.03,"free":3100.06},{"epoch":26149496,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":555.01,"free":3100.08},{"epoch":26149497,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":555.42,"free":3099.66},{"epoch":26149498,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":555.21,"free":3099.87},{"epoch":26149499,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":555.18,"free":3099.89},{"epoch":26149500,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":554.93,"free":3100.16},{"epoch":26149501,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":554.9,"free":3100.19},{"epoch":26149502,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":555.57,"free":3099.51},{"epoch":26149503,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":554.81,"free":3100.26},{"epoch":26149504,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":554.78,"free":3100.29},{"epoch":26149505,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":555.02,"free":3100.08},{"epoch":26149506,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":555.01,"free":3100.08},{"epoch":26149507,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.98,"free":3100.12},{"epoch":26149508,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":555.55,"free":3099.55},{"epoch":26149509,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":554.95,"free":3100.13},{"epoch":26149510,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":555.19,"free":3099.9},{"epoch":26149511,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.16,"free":3099.92},{"epoch":26149512,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":555.15,"free":3099.93},{"epoch":26149513,"idl":99.79,"recv":0,"send":0,"writ":0.61,"used":555.23,"free":3099.85},{"epoch":26149514,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.02,"free":3100.07},{"epoch":26149515,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":555.28,"free":3099.82},{"epoch":26149516,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.26,"free":3099.84},{"epoch":26149517,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":555.01,"free":3100.09},{"epoch":26149518,"idl":99.78,"recv":0,"send":0,"writ":0.6,"used":555.33,"free":3099.76},{"epoch":26149519,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":554.95,"free":3100.14},{"epoch":26149520,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":554.71,"free":3100.41},{"epoch":26149521,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":554.68,"free":3100.44},{"epoch":26149522,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":554.67,"free":3100.45},{"epoch":26149523,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":555.3,"free":3099.81},{"epoch":26149524,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.95,"free":3100.15},{"epoch":26149525,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":555.3,"free":3099.83},{"epoch":26149526,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.29,"free":3099.83},{"epoch":26149527,"idl":99.95,"recv":0,"send":0.02,"writ":0.16,"used":555.26,"free":3099.86},{"epoch":26149528,"idl":99.8,"recv":0,"send":0,"writ":0.64,"used":555.67,"free":3099.44},{"epoch":26149529,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.42,"free":3099.68},{"epoch":26149530,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":555.19,"free":3099.93},{"epoch":26149531,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.16,"free":3099.96},{"epoch":26149532,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.13,"free":3099.98},{"epoch":26149533,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":555.48,"free":3099.63},{"epoch":26149534,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.06,"free":3100.05},{"epoch":26149535,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":555.29,"free":3099.83},{"epoch":26149536,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.28,"free":3099.83},{"epoch":26149537,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.24,"free":3099.86},{"epoch":26149538,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":555.64,"free":3099.46},{"epoch":26149539,"idl":99.87,"recv":0,"send":0,"writ":0.45,"used":554.79,"free":3100.29},{"epoch":26149540,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":554.53,"free":3100.57},{"epoch":26149541,"idl":99.91,"recv":0.01,"send":0.43,"writ":0.23,"used":554.45,"free":3100.65},{"epoch":26149542,"idl":99.94,"recv":0,"send":0.07,"writ":0.18,"used":554.42,"free":3100.67},{"epoch":26149543,"idl":99.78,"recv":0,"send":0,"writ":0.39,"used":555.28,"free":3099.8},{"epoch":26149544,"idl":99.94,"recv":0,"send":0,"writ":0.28,"used":555.26,"free":3099.83},{"epoch":26149545,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":555.03,"free":3100.08},{"epoch":26149546,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.99,"free":3100.12},{"epoch":26149547,"idl":99.94,"recv":0,"send":0,"writ":0.27,"used":554.98,"free":3100.12},{"epoch":26149548,"idl":99.93,"recv":0,"send":0,"writ":0.26,"used":554.95,"free":3100.15},{"epoch":26149549,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":555.9,"free":3099.19},{"epoch":26149550,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":555.22,"free":3099.88},{"epoch":26149551,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.89,"free":3100.21},{"epoch":26149552,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.87,"free":3100.22},{"epoch":26149553,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":554.86,"free":3100.22},{"epoch":26149554,"idl":99.82,"recv":0,"send":0,"writ":0.56,"used":555.77,"free":3099.32},{"epoch":26149555,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":555.27,"free":3099.84},{"epoch":26149556,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.24,"free":3099.86},{"epoch":26149557,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":555.22,"free":3099.87},{"epoch":26149558,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":555.2,"free":3099.89},{"epoch":26149559,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":554.94,"free":3100.14},{"epoch":26149560,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":555.16,"free":3099.94},{"epoch":26149561,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":555.15,"free":3099.95},{"epoch":26149562,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":555.13,"free":3099.96},{"epoch":26149563,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.1,"free":3099.98},{"epoch":26149564,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":555.53,"free":3099.56},{"epoch":26149565,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":555.51,"free":3099.59},{"epoch":26149566,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.49,"free":3099.6},{"epoch":26149567,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":555.47,"free":3099.63},{"epoch":26149568,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.44,"free":3099.64},{"epoch":26149569,"idl":99.73,"recv":0,"send":0,"writ":0.6,"used":555.88,"free":3099.18},{"epoch":26149570,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":555.17,"free":3099.91},{"epoch":26149571,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.13,"free":3099.94},{"epoch":26149572,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.11,"free":3099.97},{"epoch":26149573,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.09,"free":3099.98},{"epoch":26149574,"idl":99.79,"recv":0,"send":0,"writ":0.52,"used":555.47,"free":3099.62},{"epoch":26149575,"idl":99.9,"recv":0,"send":0,"writ":0.35,"used":555.5,"free":3099.62},{"epoch":26149576,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.48,"free":3099.64},{"epoch":26149577,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":555.47,"free":3099.64},{"epoch":26149578,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":555.44,"free":3099.66},{"epoch":26149579,"idl":99.83,"recv":0,"send":0,"writ":0.5,"used":555.72,"free":3099.38},{"epoch":26149580,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":555.43,"free":3099.69},{"epoch":26149581,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.4,"free":3099.72},{"epoch":26149582,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":555.38,"free":3099.73},{"epoch":26149583,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.37,"free":3099.73},{"epoch":26149584,"idl":97.21,"recv":0.04,"send":0.01,"writ":63.79,"used":561.78,"free":3094.87},{"epoch":26149585,"idl":98.76,"recv":0,"send":0,"writ":77.59,"used":562.86,"free":3092.53},{"epoch":26149586,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":557.79,"free":3097.51},{"epoch":26149587,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":557.76,"free":3097.53},{"epoch":26149588,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":557.74,"free":3097.54},{"epoch":26149589,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":557.72,"free":3097.56},{"epoch":26149590,"idl":99.64,"recv":0,"send":0,"writ":0.77,"used":555.71,"free":3099.62},{"epoch":26149591,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.98,"free":3100.35},{"epoch":26149592,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.97,"free":3100.36},{"epoch":26149593,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":554.94,"free":3100.38},{"epoch":26149594,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":554.92,"free":3100.4},{"epoch":26149595,"idl":99.73,"recv":0,"send":0,"writ":0.72,"used":556.36,"free":3098.98},{"epoch":26149596,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.64,"free":3099.71},{"epoch":26149597,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":555.62,"free":3099.72},{"epoch":26149598,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":555.6,"free":3099.74},{"epoch":26149599,"idl":99.83,"recv":0,"send":0,"writ":0.26,"used":554.87,"free":3100.44},{"epoch":26149600,"idl":99.75,"recv":0,"send":0,"writ":0.67,"used":555.55,"free":3099.78},{"epoch":26149601,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":555.32,"free":3100.01},{"epoch":26149602,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":555.4,"free":3099.92},{"epoch":26149603,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.46,"free":3099.86},{"epoch":26149604,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":555.43,"free":3099.9},{"epoch":26149605,"idl":99.74,"recv":0,"send":0,"writ":0.69,"used":556.13,"free":3099.23},{"epoch":26149606,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.91,"free":3099.44},{"epoch":26149607,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.88,"free":3099.47},{"epoch":26149608,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":555.87,"free":3099.47},{"epoch":26149609,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":555.83,"free":3099.5},{"epoch":26149610,"idl":99.68,"recv":0,"send":0,"writ":0.73,"used":556.06,"free":3099.29},{"epoch":26149611,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":555.32,"free":3100.03},{"epoch":26149612,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.31,"free":3100.03},{"epoch":26149613,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.35,"free":3099.99},{"epoch":26149614,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.45,"free":3099.88},{"epoch":26149615,"idl":99.74,"recv":0,"send":0,"writ":0.53,"used":556.26,"free":3099.09},{"epoch":26149616,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":555.67,"free":3099.68},{"epoch":26149617,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.65,"free":3099.69},{"epoch":26149618,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.63,"free":3099.71},{"epoch":26149619,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.06,"free":3100.27},{"epoch":26149620,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":555.31,"free":3100.04},{"epoch":26149621,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":554.86,"free":3100.49},{"epoch":26149622,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":554.83,"free":3100.52},{"epoch":26149623,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.8,"free":3100.53},{"epoch":26149624,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.9,"free":3100.44},{"epoch":26149625,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":554.74,"free":3100.61},{"epoch":26149626,"idl":95.14,"recv":0,"send":0,"writ":31.46,"used":563.78,"free":3088.16},{"epoch":26149627,"idl":98.85,"recv":0,"send":0,"writ":44.23,"used":559.39,"free":3095.5},{"epoch":26149628,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":557.48,"free":3098.65},{"epoch":26149629,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":557.21,"free":3098.87},{"epoch":26149630,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":557.44,"free":3098.66},{"epoch":26149631,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":557.03,"free":3099.07},{"epoch":26149632,"idl":99.91,"recv":0,"send":0,"writ":0.25,"used":554.53,"free":3103.36},{"epoch":26149633,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.37,"free":3103.65},{"epoch":26149634,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":554.44,"free":3103.58},{"epoch":26149635,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":555.03,"free":3103.01},{"epoch":26149636,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":555.38,"free":3102.66},{"epoch":26149637,"idl":99.93,"recv":0,"send":0,"writ":0.23,"used":554.99,"free":3103.06},{"epoch":26149638,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.98,"free":3103.08},{"epoch":26149639,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.95,"free":3103.1},{"epoch":26149640,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":554.95,"free":3103.11},{"epoch":26149641,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":554.99,"free":3103.07},{"epoch":26149642,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.41,"free":3103.65},{"epoch":26149643,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.39,"free":3103.66},{"epoch":26149644,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.36,"free":3103.69},{"epoch":26149645,"idl":98.77,"recv":0,"send":0,"writ":15.42,"used":556.95,"free":3101.58},{"epoch":26149646,"idl":99.81,"recv":0,"send":0,"writ":0.61,"used":554.92,"free":3103.15},{"epoch":26149647,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.26,"free":3103.8},{"epoch":26149648,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":554.25,"free":3103.82},{"epoch":26149649,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.23,"free":3103.83},{"epoch":26149650,"idl":99.9,"recv":0,"send":0,"writ":0.26,"used":554.96,"free":3103.12},{"epoch":26149651,"idl":99.81,"recv":0,"send":0,"writ":0.43,"used":555.06,"free":3103.01},{"epoch":26149652,"idl":99.94,"recv":0,"send":0,"writ":0.3,"used":553.94,"free":3104.13},{"epoch":26149653,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.94,"free":3104.13},{"epoch":26149654,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.9,"free":3104.16},{"epoch":26149655,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":554.4,"free":3103.68},{"epoch":26149656,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":555.06,"free":3103.01},{"epoch":26149657,"idl":99.88,"recv":0,"send":0,"writ":0.39,"used":554.5,"free":3103.57},{"epoch":26149658,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":554.56,"free":3103.51},{"epoch":26149659,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":555.27,"free":3102.77},{"epoch":26149660,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":554.06,"free":3104},{"epoch":26149661,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.01,"free":3104.04},{"epoch":26149662,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":555.23,"free":3102.82},{"epoch":26149663,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":554.96,"free":3103.09},{"epoch":26149664,"idl":99.91,"recv":0.01,"send":0,"writ":0.16,"used":554.91,"free":3103.13},{"epoch":26149665,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":554.91,"free":3103.15},{"epoch":26149666,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":555.02,"free":3103.04},{"epoch":26149667,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":555.41,"free":3102.65},{"epoch":26149668,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.02,"free":3103.02},{"epoch":26149669,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":555.01,"free":3103.04},{"epoch":26149670,"idl":99.87,"recv":0,"send":0,"writ":0.36,"used":555.23,"free":3102.83},{"epoch":26149671,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":554.98,"free":3103.07},{"epoch":26149672,"idl":99.76,"recv":0,"send":0,"writ":0.53,"used":555.33,"free":3102.73},{"epoch":26149673,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.94,"free":3103.11},{"epoch":26149674,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.93,"free":3103.12},{"epoch":26149675,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":554.94,"free":3103.12},{"epoch":26149676,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.91,"free":3103.15},{"epoch":26149677,"idl":99.78,"recv":0.01,"send":0.09,"writ":0.62,"used":555.59,"free":3102.47},{"epoch":26149678,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.69,"free":3103.36},{"epoch":26149679,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.67,"free":3103.38},{"epoch":26149680,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":554.19,"free":3103.87},{"epoch":26149681,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":554.23,"free":3103.85},{"epoch":26149682,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":554.85,"free":3103.23},{"epoch":26149683,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.54,"free":3103.53},{"epoch":26149684,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.51,"free":3103.56},{"epoch":26149685,"idl":99.87,"recv":0,"send":0,"writ":0.36,"used":554.74,"free":3103.33},{"epoch":26149686,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.73,"free":3103.35},{"epoch":26149687,"idl":99.76,"recv":0,"send":0,"writ":0.39,"used":554.93,"free":3103.14},{"epoch":26149688,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":554.19,"free":3103.87},{"epoch":26149689,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":555.38,"free":3102.66},{"epoch":26149690,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":555.16,"free":3102.89},{"epoch":26149691,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.12,"free":3102.93},{"epoch":26149692,"idl":99.8,"recv":0,"send":0,"writ":0.47,"used":555.67,"free":3102.38},{"epoch":26149693,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":555.51,"free":3102.53},{"epoch":26149694,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":555.48,"free":3102.56},{"epoch":26149695,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":555.25,"free":3102.82},{"epoch":26149696,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.21,"free":3102.85},{"epoch":26149697,"idl":99.81,"recv":0,"send":0,"writ":0.46,"used":555.78,"free":3102.27},{"epoch":26149698,"idl":99.92,"recv":0,"send":0,"writ":0.28,"used":555.17,"free":3102.88},{"epoch":26149699,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.16,"free":3102.89},{"epoch":26149700,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":554.91,"free":3103.15},{"epoch":26149701,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.88,"free":3103.18},{"epoch":26149702,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":554.86,"free":3103.2},{"epoch":26149703,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":556.13,"free":3101.91},{"epoch":26149704,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.47,"free":3102.58},{"epoch":26149705,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":555.46,"free":3102.6},{"epoch":26149706,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":555.45,"free":3102.61},{"epoch":26149707,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":555.42,"free":3102.64},{"epoch":26149708,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":555.82,"free":3102.22},{"epoch":26149709,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":555.13,"free":3102.91},{"epoch":26149710,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":555.15,"free":3102.91},{"epoch":26149711,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.11,"free":3102.94},{"epoch":26149712,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":555.23,"free":3102.82},{"epoch":26149713,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":555.71,"free":3102.34},{"epoch":26149714,"idl":98.54,"recv":0,"send":0,"writ":0.16,"used":555.24,"free":3102.81},{"epoch":26149715,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":555.24,"free":3102.82},{"epoch":26149716,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":555.21,"free":3102.84},{"epoch":26149717,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":555.2,"free":3102.86},{"epoch":26149718,"idl":99.78,"recv":0,"send":0.01,"writ":0.58,"used":555.33,"free":3102.72},{"epoch":26149719,"idl":99.83,"recv":0,"send":0.01,"writ":0.31,"used":555.22,"free":3102.81},{"epoch":26149720,"idl":99.84,"recv":0,"send":0.02,"writ":0.29,"used":554.37,"free":3103.67},{"epoch":26149721,"idl":99.92,"recv":0,"send":0.01,"writ":0.17,"used":554.22,"free":3103.81},{"epoch":26149722,"idl":99.93,"recv":0,"send":0.01,"writ":0.18,"used":554.19,"free":3103.84},{"epoch":26149723,"idl":99.77,"recv":0,"send":0.01,"writ":0.61,"used":554.73,"free":3103.3},{"epoch":26149724,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":554.75,"free":3103.27},{"epoch":26149725,"idl":99.77,"recv":0,"send":0.01,"writ":0.3,"used":555.2,"free":3102.84},{"epoch":26149726,"idl":99.92,"recv":0,"send":0.01,"writ":0.18,"used":555.14,"free":3102.89},{"epoch":26149727,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":555.12,"free":3102.91},{"epoch":26149728,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":555.56,"free":3102.46},{"epoch":26149729,"idl":99.94,"recv":0,"send":0,"writ":0.32,"used":555.01,"free":3103.01},{"epoch":26149730,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":555.49,"free":3102.55},{"epoch":26149731,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":555,"free":3103.04},{"epoch":26149732,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":554.99,"free":3103.06},{"epoch":26149733,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":555.32,"free":3102.73},{"epoch":26149734,"idl":99.91,"recv":0,"send":0,"writ":0.38,"used":555.19,"free":3102.85},{"epoch":26149735,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":555.19,"free":3102.87},{"epoch":26149736,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.17,"free":3102.88},{"epoch":26149737,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.15,"free":3102.9},{"epoch":26149738,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":555.13,"free":3102.91},{"epoch":26149739,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":556.06,"free":3101.98},{"epoch":26149740,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":555.56,"free":3102.5},{"epoch":26149741,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":555.52,"free":3102.53},{"epoch":26149742,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":555.51,"free":3102.54},{"epoch":26149743,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.48,"free":3102.57},{"epoch":26149744,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":555.64,"free":3102.4},{"epoch":26149745,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":555.21,"free":3102.84},{"epoch":26149746,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":555.18,"free":3102.87},{"epoch":26149747,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":555.17,"free":3102.88},{"epoch":26149748,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":555.14,"free":3102.9},{"epoch":26149749,"idl":99.71,"recv":0,"send":0,"writ":0.66,"used":555.85,"free":3102.16},{"epoch":26149750,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":555.14,"free":3102.9},{"epoch":26149751,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":555.22,"free":3102.81},{"epoch":26149752,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.28,"free":3102.75},{"epoch":26149753,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":555.26,"free":3102.76},{"epoch":26149754,"idl":99.76,"recv":0,"send":0,"writ":0.53,"used":555.59,"free":3102.43},{"epoch":26149755,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":555.48,"free":3102.55},{"epoch":26149756,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":555.48,"free":3102.55},{"epoch":26149757,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":555.22,"free":3102.83},{"epoch":26149758,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":555.19,"free":3102.85},{"epoch":26149759,"idl":99.72,"recv":0,"send":0,"writ":0.45,"used":555.61,"free":3102.43},{"epoch":26149760,"idl":99.82,"recv":0,"send":0,"writ":0.4,"used":555.65,"free":3102.41},{"epoch":26149761,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":555.64,"free":3102.41},{"epoch":26149762,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":555.61,"free":3102.44},{"epoch":26149763,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":555.72,"free":3102.32},{"epoch":26149764,"idl":99.75,"recv":0,"send":0,"writ":0.4,"used":556.1,"free":3101.93},{"epoch":26149765,"idl":99.78,"recv":0,"send":0,"writ":0.46,"used":555.5,"free":3102.54},{"epoch":26149766,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.48,"free":3102.56},{"epoch":26149767,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":555.46,"free":3102.59},{"epoch":26149768,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.44,"free":3102.59},{"epoch":26149769,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":555.75,"free":3102.29},{"epoch":26149770,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":554.48,"free":3103.56},{"epoch":26149771,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.93,"free":3104.11},{"epoch":26149772,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":553.39,"free":3104.64},{"epoch":26149773,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.45,"free":3104.58},{"epoch":26149774,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.52,"free":3104.5},{"epoch":26149775,"idl":99.63,"recv":0,"send":0,"writ":0.72,"used":555.62,"free":3102.42},{"epoch":26149776,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":554.96,"free":3103.07},{"epoch":26149777,"idl":99.45,"recv":0,"send":0,"writ":0.2,"used":554.92,"free":3103.1},{"epoch":26149778,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":554.68,"free":3103.34},{"epoch":26149779,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":554.88,"free":3103.11},{"epoch":26149780,"idl":99.67,"recv":0,"send":0,"writ":0.7,"used":554.99,"free":3103.02},{"epoch":26149781,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":554.12,"free":3103.88},{"epoch":26149782,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":554.09,"free":3103.9},{"epoch":26149783,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":554.25,"free":3103.76},{"epoch":26149784,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.27,"free":3103.73},{"epoch":26149785,"idl":99.66,"recv":0,"send":0,"writ":0.69,"used":554.49,"free":3103.53},{"epoch":26149786,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":554.25,"free":3103.76},{"epoch":26149787,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.21,"free":3103.79},{"epoch":26149788,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":554.19,"free":3103.81},{"epoch":26149789,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.17,"free":3103.82},{"epoch":26149790,"idl":99.66,"recv":0,"send":0,"writ":0.81,"used":554.67,"free":3103.34},{"epoch":26149791,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":554.64,"free":3103.36},{"epoch":26149792,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.61,"free":3103.39},{"epoch":26149793,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":554.61,"free":3103.41},{"epoch":26149794,"idl":98.4,"recv":0,"send":0,"writ":0.14,"used":554.71,"free":3103.3},{"epoch":26149795,"idl":99.61,"recv":0,"send":0,"writ":0.56,"used":555.38,"free":3102.66},{"epoch":26149796,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":554.99,"free":3103.03},{"epoch":26149797,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":554.99,"free":3103.04},{"epoch":26149798,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.96,"free":3103.06},{"epoch":26149799,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":554.95,"free":3103.07},{"epoch":26149800,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":554.93,"free":3103.1},{"epoch":26149801,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":555.27,"free":3102.75},{"epoch":26149802,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":554.89,"free":3103.13},{"epoch":26149803,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.88,"free":3103.13},{"epoch":26149804,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.86,"free":3103.16},{"epoch":26149805,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":555.12,"free":3102.91},{"epoch":26149806,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":555.37,"free":3102.66},{"epoch":26149807,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":555.01,"free":3103.01},{"epoch":26149808,"idl":99.78,"recv":0,"send":0,"writ":0.14,"used":554.98,"free":3103.04},{"epoch":26149809,"idl":99.7,"recv":0,"send":0,"writ":0.29,"used":554.99,"free":3103},{"epoch":26149810,"idl":99.75,"recv":0.01,"send":0.02,"writ":0.34,"used":555.19,"free":3102.82},{"epoch":26149811,"idl":99.72,"recv":0,"send":0.01,"writ":0.61,"used":555.32,"free":3102.68},{"epoch":26149812,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":554.85,"free":3103.14},{"epoch":26149813,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.82,"free":3103.17},{"epoch":26149814,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.91,"free":3103.07},{"epoch":26149815,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":555.25,"free":3102.75},{"epoch":26149816,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":555.81,"free":3102.19},{"epoch":26149817,"idl":99.87,"recv":0,"send":0,"writ":0.23,"used":554.94,"free":3103.06},{"epoch":26149818,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":554.91,"free":3103.08},{"epoch":26149819,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":554.89,"free":3103.1},{"epoch":26149820,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":555.18,"free":3102.82},{"epoch":26149821,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":555.61,"free":3102.39},{"epoch":26149822,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":554.84,"free":3103.16},{"epoch":26149823,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":554.81,"free":3103.18},{"epoch":26149824,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":554.93,"free":3103.05},{"epoch":26149825,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":554.26,"free":3103.74},{"epoch":26149826,"idl":99.7,"recv":0,"send":0,"writ":0.49,"used":554.73,"free":3103.27},{"epoch":26149827,"idl":99.85,"recv":0,"send":0,"writ":0.23,"used":554.65,"free":3103.34},{"epoch":26149828,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":554.62,"free":3103.37},{"epoch":26149829,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.58,"free":3103.4},{"epoch":26149830,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":555.05,"free":3102.95},{"epoch":26149831,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":555.2,"free":3102.79},{"epoch":26149832,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":555.55,"free":3102.44},{"epoch":26149833,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":555.17,"free":3102.82},{"epoch":26149834,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":555.13,"free":3102.85},{"epoch":26149835,"idl":98.49,"recv":0,"send":0.02,"writ":0.28,"used":555.13,"free":3102.87},{"epoch":26149836,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":555.08,"free":3102.91},{"epoch":26149837,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":553.84,"free":3104.15},{"epoch":26149838,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":553.08,"free":3104.91},{"epoch":26149839,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":555.15,"free":3102.81},{"epoch":26149840,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":555.23,"free":3102.75},{"epoch":26149841,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":555.2,"free":3102.78},{"epoch":26149842,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":555.38,"free":3102.6},{"epoch":26149843,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":554.91,"free":3103.06},{"epoch":26149844,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":554.88,"free":3103.08},{"epoch":26149845,"idl":99.81,"recv":0,"send":0,"writ":0.35,"used":555.12,"free":3102.86},{"epoch":26149846,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":555.1,"free":3102.87},{"epoch":26149847,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":555.11,"free":3102.86},{"epoch":26149848,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":554.56,"free":3103.4},{"epoch":26149849,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.54,"free":3103.41},{"epoch":26149850,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":555.21,"free":3102.75},{"epoch":26149851,"idl":99.83,"recv":0.01,"send":0.29,"writ":0.37,"used":554.97,"free":3102.99},{"epoch":26149852,"idl":99.7,"recv":0.01,"send":1.33,"writ":0.52,"used":555.64,"free":3102.3},{"epoch":26149853,"idl":99.84,"recv":0,"send":0.08,"writ":0.36,"used":555.66,"free":3102.27},{"epoch":26149854,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":555.61,"free":3102.32},{"epoch":26149855,"idl":98.46,"recv":0,"send":0,"writ":0.32,"used":555.61,"free":3102.33},{"epoch":26149856,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":555.59,"free":3102.35},{"epoch":26149857,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":556.28,"free":3101.65},{"epoch":26149858,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.55,"free":3102.38},{"epoch":26149859,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":555.53,"free":3102.39},{"epoch":26149860,"idl":99.75,"recv":0,"send":0,"writ":0.28,"used":555.55,"free":3102.39},{"epoch":26149861,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.63,"free":3102.31},{"epoch":26149862,"idl":99.71,"recv":0,"send":0,"writ":0.41,"used":556.07,"free":3101.86},{"epoch":26149863,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":555.91,"free":3102.02},{"epoch":26149864,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":555.88,"free":3102.05},{"epoch":26149865,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":555.64,"free":3102.3},{"epoch":26149866,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.6,"free":3102.33},{"epoch":26149867,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":555.59,"free":3102.35},{"epoch":26149868,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":555.92,"free":3102},{"epoch":26149869,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":555.59,"free":3102.33},{"epoch":26149870,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":555.84,"free":3102.1},{"epoch":26149871,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":555.94,"free":3102},{"epoch":26149872,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":555.92,"free":3102.02},{"epoch":26149873,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":555.28,"free":3102.64},{"epoch":26149874,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":554.89,"free":3103.06},{"epoch":26149875,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":555.59,"free":3102.38},{"epoch":26149876,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":555.58,"free":3102.39},{"epoch":26149877,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":555.55,"free":3102.41},{"epoch":26149878,"idl":99.73,"recv":0,"send":0,"writ":0.61,"used":555.67,"free":3102.29},{"epoch":26149879,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":555.3,"free":3102.66},{"epoch":26149880,"idl":99.79,"recv":0,"send":0.01,"writ":0.3,"used":555.92,"free":3102.05},{"epoch":26149881,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":555.9,"free":3102.07},{"epoch":26149882,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":555.87,"free":3102.09},{"epoch":26149883,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":556.2,"free":3101.76},{"epoch":26149884,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":555.82,"free":3102.13},{"epoch":26149885,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":555.1,"free":3102.86},{"epoch":26149886,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":555.05,"free":3102.91},{"epoch":26149887,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":555.03,"free":3102.93},{"epoch":26149888,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":555.61,"free":3102.35},{"epoch":26149889,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":554.68,"free":3103.27},{"epoch":26149890,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":556.15,"free":3101.83},{"epoch":26149891,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":556.14,"free":3101.83},{"epoch":26149892,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":556.12,"free":3101.84},{"epoch":26149893,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":556.5,"free":3101.46},{"epoch":26149894,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":556.08,"free":3101.88},{"epoch":26149895,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":555.81,"free":3102.16},{"epoch":26149896,"idl":99.55,"recv":0,"send":0,"writ":0.14,"used":555.8,"free":3102.17},{"epoch":26149897,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":555.77,"free":3102.19},{"epoch":26149898,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":556.01,"free":3101.95},{"epoch":26149899,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":555.63,"free":3102.3},{"epoch":26149900,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":556.11,"free":3101.83},{"epoch":26149901,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":556.09,"free":3101.85},{"epoch":26149902,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":556.05,"free":3101.88},{"epoch":26149903,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":556.02,"free":3101.91},{"epoch":26149904,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":556.11,"free":3101.81},{"epoch":26149905,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":555.53,"free":3102.41},{"epoch":26149906,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.68,"free":3102.25},{"epoch":26149907,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":555.65,"free":3102.28},{"epoch":26149908,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":555.64,"free":3102.29},{"epoch":26149909,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":556.19,"free":3101.73},{"epoch":26149910,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":555.13,"free":3102.8},{"epoch":26149911,"idl":99.8,"recv":0,"send":0.01,"writ":0.2,"used":556.03,"free":3101.91},{"epoch":26149912,"idl":99.87,"recv":0.01,"send":0.24,"writ":0.2,"used":556.08,"free":3101.85},{"epoch":26149913,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":556.07,"free":3101.86},{"epoch":26149914,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":556.2,"free":3101.72},{"epoch":26149915,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":556.02,"free":3101.92},{"epoch":26149916,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":555.99,"free":3101.94},{"epoch":26149917,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":556.12,"free":3101.8},{"epoch":26149918,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.11,"free":3101.81},{"epoch":26149919,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":556.49,"free":3101.42},{"epoch":26149920,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":556.1,"free":3101.84},{"epoch":26149921,"idl":99.92,"recv":0.03,"send":0.81,"writ":0.29,"used":556.08,"free":3101.87},{"epoch":26149922,"idl":99.91,"recv":0,"send":0.01,"writ":0.18,"used":556.08,"free":3101.86},{"epoch":26149923,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":556.05,"free":3101.89},{"epoch":26149924,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":556.56,"free":3101.37},{"epoch":26149925,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":556,"free":3101.94},{"epoch":26149926,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.49,"free":3102.45},{"epoch":26149927,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.91,"free":3103.03},{"epoch":26149928,"idl":99.93,"recv":0,"send":0.01,"writ":0.18,"used":554.86,"free":3103.07},{"epoch":26149929,"idl":99.71,"recv":0,"send":0,"writ":0.64,"used":555.54,"free":3102.37},{"epoch":26149930,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":554.36,"free":3103.57},{"epoch":26149931,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.3,"free":3103.62},{"epoch":26149932,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.27,"free":3103.65},{"epoch":26149933,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.36,"free":3103.56},{"epoch":26149934,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":555.02,"free":3102.91},{"epoch":26149935,"idl":99.87,"recv":0,"send":0,"writ":0.35,"used":555.38,"free":3102.57},{"epoch":26149936,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":555.36,"free":3102.58},{"epoch":26149937,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":555.09,"free":3102.85},{"epoch":26149938,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":555.06,"free":3102.88},{"epoch":26149939,"idl":99.82,"recv":0,"send":0,"writ":0.43,"used":555.35,"free":3102.58},{"epoch":26149940,"idl":99.89,"recv":0,"send":0,"writ":0.48,"used":555.51,"free":3102.43},{"epoch":26149941,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":555.5,"free":3102.44},{"epoch":26149942,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":555.48,"free":3102.45},{"epoch":26149943,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.62,"free":3102.31},{"epoch":26149944,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.66,"free":3102.26},{"epoch":26149945,"idl":94.81,"recv":0.29,"send":0.01,"writ":257.89,"used":568.49,"free":3089.69},{"epoch":26149946,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.76,"free":3100.1},{"epoch":26149947,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":557.73,"free":3100.12},{"epoch":26149948,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":557.72,"free":3100.13},{"epoch":26149949,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":557.69,"free":3100.15},{"epoch":26149950,"idl":99.77,"recv":0,"send":0,"writ":0.76,"used":556.82,"free":3101.09},{"epoch":26149951,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.52,"free":3102.39},{"epoch":26149952,"idl":99.97,"recv":0,"send":0,"writ":0.16,"used":555.5,"free":3102.41},{"epoch":26149953,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.61,"free":3102.3},{"epoch":26149954,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.64,"free":3102.26},{"epoch":26149955,"idl":99.77,"recv":0,"send":0,"writ":0.69,"used":556.19,"free":3101.74},{"epoch":26149956,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.62,"free":3102.31},{"epoch":26149957,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.6,"free":3102.33},{"epoch":26149958,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.57,"free":3102.35},{"epoch":26149959,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":554.83,"free":3103.07},{"epoch":26149960,"idl":99.78,"recv":0,"send":0,"writ":0.64,"used":555.68,"free":3102.24},{"epoch":26149961,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":555.04,"free":3102.87},{"epoch":26149962,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.02,"free":3102.89},{"epoch":26149963,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":555,"free":3102.9},{"epoch":26149964,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.97,"free":3102.97},{"epoch":26149965,"idl":99.74,"recv":0,"send":0,"writ":0.64,"used":555.41,"free":3102.54},{"epoch":26149966,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":555.63,"free":3102.32},{"epoch":26149967,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.6,"free":3102.35},{"epoch":26149968,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.58,"free":3102.36},{"epoch":26149969,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.55,"free":3102.39},{"epoch":26149970,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":555.54,"free":3102.42},{"epoch":26149971,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":554.57,"free":3103.38},{"epoch":26149972,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":554.53,"free":3103.42},{"epoch":26149973,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.51,"free":3103.43},{"epoch":26149974,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.48,"free":3103.46},{"epoch":26149975,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":555.34,"free":3102.61},{"epoch":26149976,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":555.63,"free":3102.32},{"epoch":26149977,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.62,"free":3102.33},{"epoch":26149978,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.59,"free":3102.36},{"epoch":26149979,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":555.56,"free":3102.38},{"epoch":26149980,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":555.56,"free":3102.39},{"epoch":26149981,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":556.4,"free":3101.54},{"epoch":26149982,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.76,"free":3102.19},{"epoch":26149983,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.74,"free":3102.2},{"epoch":26149984,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.71,"free":3102.23},{"epoch":26149985,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":555.24,"free":3102.71},{"epoch":26149986,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":556.07,"free":3101.88},{"epoch":26149987,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":555.62,"free":3102.32},{"epoch":26149988,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.59,"free":3102.35},{"epoch":26149989,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":555.82,"free":3102.09},{"epoch":26149990,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":555.57,"free":3102.36},{"epoch":26149991,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":555.91,"free":3102.02},{"epoch":26149992,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":555.51,"free":3102.41},{"epoch":26149993,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":555.49,"free":3102.43},{"epoch":26149994,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.47,"free":3102.46},{"epoch":26149995,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":555.47,"free":3102.48},{"epoch":26149996,"idl":99.8,"recv":0,"send":0,"writ":0.49,"used":556.04,"free":3101.91},{"epoch":26149997,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":555.9,"free":3102.05},{"epoch":26149998,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":555.88,"free":3102.07},{"epoch":26149999,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":555.86,"free":3102.08},{"epoch":26150000,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":555.62,"free":3102.33},{"epoch":26150001,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":555.95,"free":3102},{"epoch":26150002,"idl":99.94,"recv":0,"send":0,"writ":0.31,"used":555.57,"free":3102.38},{"epoch":26150003,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.56,"free":3102.39},{"epoch":26150004,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.53,"free":3102.41},{"epoch":26150005,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":555.54,"free":3102.41},{"epoch":26150006,"idl":99.82,"recv":0,"send":0,"writ":0.42,"used":555.8,"free":3102.15},{"epoch":26150007,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":555.36,"free":3102.59},{"epoch":26150008,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.4,"free":3102.54},{"epoch":26150009,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":555.38,"free":3102.56},{"epoch":26150010,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":555.62,"free":3102.34},{"epoch":26150011,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":556.09,"free":3101.87},{"epoch":26150012,"idl":99.92,"recv":0,"send":0.01,"writ":0.36,"used":555.3,"free":3102.65},{"epoch":26150013,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":555.27,"free":3102.68},{"epoch":26150014,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.24,"free":3102.7},{"epoch":26150015,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":555.74,"free":3102.21},{"epoch":26150016,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":555.85,"free":3102.1},{"epoch":26150017,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":556.45,"free":3101.5},{"epoch":26150018,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":556.11,"free":3101.83},{"epoch":26150019,"idl":99.85,"recv":0,"send":0,"writ":0.43,"used":555.84,"free":3102.07},{"epoch":26150020,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":556.09,"free":3101.85},{"epoch":26150021,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":556.06,"free":3101.87},{"epoch":26150022,"idl":99.81,"recv":0,"send":0,"writ":0.6,"used":556.22,"free":3101.7},{"epoch":26150023,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":555.77,"free":3102.15},{"epoch":26150024,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.57,"free":3102.36},{"epoch":26150025,"idl":99.88,"recv":0,"send":0,"writ":0.48,"used":555.96,"free":3101.98},{"epoch":26150026,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.94,"free":3102.01},{"epoch":26150027,"idl":99.78,"recv":0,"send":0,"writ":0.52,"used":556.06,"free":3101.88},{"epoch":26150028,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":555.59,"free":3102.34},{"epoch":26150029,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.56,"free":3102.37},{"epoch":26150030,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":554.67,"free":3103.28},{"epoch":26150031,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":554.33,"free":3103.61},{"epoch":26150032,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":555.29,"free":3102.65},{"epoch":26150033,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.49,"free":3102.45},{"epoch":26150034,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.46,"free":3102.47},{"epoch":26150035,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":555.94,"free":3102},{"epoch":26150036,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.93,"free":3102.01},{"epoch":26150037,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":556.33,"free":3101.61},{"epoch":26150038,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.83,"free":3102.11},{"epoch":26150039,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.8,"free":3102.13},{"epoch":26150040,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":554.86,"free":3103.09},{"epoch":26150041,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.8,"free":3103.14},{"epoch":26150042,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":555.74,"free":3102.2},{"epoch":26150043,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":555.99,"free":3101.94},{"epoch":26150044,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":555.97,"free":3101.96},{"epoch":26150045,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":554.79,"free":3103.16},{"epoch":26150046,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.73,"free":3103.22},{"epoch":26150047,"idl":99.77,"recv":0,"send":0,"writ":0.36,"used":555.39,"free":3102.55},{"epoch":26150048,"idl":99.93,"recv":0,"send":0,"writ":0.38,"used":555.45,"free":3102.49},{"epoch":26150049,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":556.06,"free":3101.85},{"epoch":26150050,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":556.08,"free":3101.85},{"epoch":26150051,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":556.05,"free":3101.87},{"epoch":26150052,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":556.03,"free":3101.89},{"epoch":26150053,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":556.54,"free":3101.38},{"epoch":26150054,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.98,"free":3101.93},{"epoch":26150055,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":555.27,"free":3102.66},{"epoch":26150056,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.22,"free":3102.7},{"epoch":26150057,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":555.21,"free":3102.71},{"epoch":26150058,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":556.21,"free":3101.71},{"epoch":26150059,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.28,"free":3101.63},{"epoch":26150060,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":556.08,"free":3101.84},{"epoch":26150061,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":556.05,"free":3101.88},{"epoch":26150062,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":556.02,"free":3101.89},{"epoch":26150063,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":556.35,"free":3101.56},{"epoch":26150064,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.98,"free":3101.93},{"epoch":26150065,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":555.75,"free":3102.18},{"epoch":26150066,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.71,"free":3102.21},{"epoch":26150067,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.7,"free":3102.22},{"epoch":26150068,"idl":99.83,"recv":0,"send":0,"writ":0.5,"used":556.02,"free":3101.89},{"epoch":26150069,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":555.66,"free":3102.25},{"epoch":26150070,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":555.84,"free":3102.08},{"epoch":26150071,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":555.85,"free":3102.06},{"epoch":26150072,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.83,"free":3102.09},{"epoch":26150073,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":556.07,"free":3101.84},{"epoch":26150074,"idl":99.96,"recv":0,"send":0,"writ":0.3,"used":555.53,"free":3102.37},{"epoch":26150075,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":555.78,"free":3102.14},{"epoch":26150076,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.76,"free":3102.16},{"epoch":26150077,"idl":99.53,"recv":0,"send":0,"writ":0.16,"used":555.73,"free":3102.18},{"epoch":26150078,"idl":99.05,"recv":0,"send":0,"writ":0.4,"used":556.52,"free":3101.39},{"epoch":26150079,"idl":99.86,"recv":0,"send":0,"writ":0.43,"used":556.2,"free":3101.69},{"epoch":26150080,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":555.64,"free":3102.26},{"epoch":26150081,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.07,"free":3102.83},{"epoch":26150082,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":555.1,"free":3102.8},{"epoch":26150083,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":555.66,"free":3102.23},{"epoch":26150084,"idl":99.91,"recv":0,"send":0,"writ":0.4,"used":555.57,"free":3102.34},{"epoch":26150085,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":555.37,"free":3102.57},{"epoch":26150086,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.29,"free":3102.64},{"epoch":26150087,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.25,"free":3102.68},{"epoch":26150088,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.23,"free":3102.7},{"epoch":26150089,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":555.65,"free":3102.27},{"epoch":26150090,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":554.26,"free":3103.68},{"epoch":26150091,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.05,"free":3103.89},{"epoch":26150092,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.13,"free":3103.8},{"epoch":26150093,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":554.1,"free":3103.83},{"epoch":26150094,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":555.09,"free":3102.83},{"epoch":26150095,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":554.82,"free":3103.12},{"epoch":26150096,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.78,"free":3103.16},{"epoch":26150097,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.75,"free":3103.18},{"epoch":26150098,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":554.74,"free":3103.19},{"epoch":26150099,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":555.57,"free":3102.35},{"epoch":26150100,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":555.44,"free":3102.49},{"epoch":26150101,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.52,"free":3102.41},{"epoch":26150102,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.58,"free":3102.35},{"epoch":26150103,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.55,"free":3102.37},{"epoch":26150104,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":555.75,"free":3102.16},{"epoch":26150105,"idl":99.91,"recv":0,"send":0,"writ":0.34,"used":555.52,"free":3102.41},{"epoch":26150106,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.51,"free":3102.42},{"epoch":26150107,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.47,"free":3102.45},{"epoch":26150108,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.46,"free":3102.46},{"epoch":26150109,"idl":99.76,"recv":0,"send":0,"writ":0.69,"used":555.79,"free":3102.11},{"epoch":26150110,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":555.18,"free":3102.73},{"epoch":26150111,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":555.3,"free":3102.6},{"epoch":26150112,"idl":99.91,"recv":0,"send":0.01,"writ":0.2,"used":555.29,"free":3102.61},{"epoch":26150113,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":555.25,"free":3102.65},{"epoch":26150114,"idl":99.81,"recv":0,"send":0,"writ":0.53,"used":555.92,"free":3101.99},{"epoch":26150115,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":555.48,"free":3102.45},{"epoch":26150116,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.45,"free":3102.47},{"epoch":26150117,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":555.44,"free":3102.48},{"epoch":26150118,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.42,"free":3102.5},{"epoch":26150119,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":555.59,"free":3102.32},{"epoch":26150120,"idl":99.83,"recv":0,"send":0,"writ":0.64,"used":555.93,"free":3102.02},{"epoch":26150121,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.57,"free":3102.37},{"epoch":26150122,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.55,"free":3102.39},{"epoch":26150123,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.53,"free":3102.4},{"epoch":26150124,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.5,"free":3102.43},{"epoch":26150125,"idl":99.75,"recv":0,"send":0,"writ":0.68,"used":555.66,"free":3102.29},{"epoch":26150126,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.23,"free":3102.71},{"epoch":26150127,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":555.22,"free":3102.72},{"epoch":26150128,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.19,"free":3102.74},{"epoch":26150129,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.18,"free":3102.75},{"epoch":26150130,"idl":99.73,"recv":0,"send":0,"writ":0.68,"used":554.74,"free":3103.21},{"epoch":26150131,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.29,"free":3103.65},{"epoch":26150132,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.34,"free":3103.6},{"epoch":26150133,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":554.31,"free":3103.62},{"epoch":26150134,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.3,"free":3103.63},{"epoch":26150135,"idl":99.73,"recv":0,"send":0,"writ":0.69,"used":555.95,"free":3102},{"epoch":26150136,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":555.51,"free":3102.43},{"epoch":26150137,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.48,"free":3102.46},{"epoch":26150138,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.47,"free":3102.46},{"epoch":26150139,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":555.19,"free":3102.73},{"epoch":26150140,"idl":99.73,"recv":0,"send":0,"writ":0.73,"used":555.93,"free":3102},{"epoch":26150141,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.67,"free":3103.26},{"epoch":26150142,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.15,"used":554.82,"free":3103.1},{"epoch":26150143,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.78,"free":3103.13},{"epoch":26150144,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.75,"free":3103.16},{"epoch":26150145,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":555.1,"free":3102.83},{"epoch":26150146,"idl":99.94,"recv":0,"send":0,"writ":0.26,"used":555.22,"free":3102.7},{"epoch":26150147,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.19,"free":3102.73},{"epoch":26150148,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":555.18,"free":3102.73},{"epoch":26150149,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":555.29,"free":3102.62},{"epoch":26150150,"idl":99.69,"recv":0,"send":0,"writ":0.63,"used":554.84,"free":3103.08},{"epoch":26150151,"idl":99.9,"recv":0,"send":0,"writ":0.24,"used":554.87,"free":3103.06},{"epoch":26150152,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.79,"free":3103.12},{"epoch":26150153,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.78,"free":3103.13},{"epoch":26150154,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.75,"free":3103.16},{"epoch":26150155,"idl":99.75,"recv":0,"send":0,"writ":0.61,"used":555.88,"free":3102.04},{"epoch":26150156,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":555.71,"free":3102.2},{"epoch":26150157,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.7,"free":3102.21},{"epoch":26150158,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.67,"free":3102.24},{"epoch":26150159,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.65,"free":3102.25},{"epoch":26150160,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":555.52,"free":3102.4},{"epoch":26150161,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":556.17,"free":3101.74},{"epoch":26150162,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.8,"free":3102.12},{"epoch":26150163,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":555.77,"free":3102.14},{"epoch":26150164,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.76,"free":3102.15},{"epoch":26150165,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":555.5,"free":3102.41},{"epoch":26150166,"idl":99.82,"recv":0,"send":0,"writ":0.57,"used":556.37,"free":3101.55},{"epoch":26150167,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.7,"free":3102.21},{"epoch":26150168,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":555.68,"free":3102.23},{"epoch":26150169,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":555.42,"free":3102.46},{"epoch":26150170,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":555.96,"free":3101.94},{"epoch":26150171,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":556.26,"free":3101.63},{"epoch":26150172,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":555.77,"free":3102.11},{"epoch":26150173,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.76,"free":3102.13},{"epoch":26150174,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.73,"free":3102.17},{"epoch":26150175,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":555.73,"free":3102.18},{"epoch":26150176,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":556.06,"free":3101.85},{"epoch":26150177,"idl":99.93,"recv":0,"send":0,"writ":0.26,"used":555.69,"free":3102.22},{"epoch":26150178,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.67,"free":3102.23},{"epoch":26150179,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":555.64,"free":3102.25},{"epoch":26150180,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":555.97,"free":3101.94},{"epoch":26150181,"idl":99.77,"recv":0,"send":0,"writ":0.49,"used":556.35,"free":3101.56},{"epoch":26150182,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":555.61,"free":3102.31},{"epoch":26150183,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.52,"free":3102.4},{"epoch":26150184,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.51,"free":3102.4},{"epoch":26150185,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":555.75,"free":3102.18},{"epoch":26150186,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":556.02,"free":3101.91},{"epoch":26150187,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":555.21,"free":3102.71},{"epoch":26150188,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.19,"free":3102.73},{"epoch":26150189,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.17,"free":3102.74},{"epoch":26150190,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":555.89,"free":3102.04},{"epoch":26150191,"idl":99.75,"recv":0,"send":0,"writ":0.42,"used":556.35,"free":3101.57},{"epoch":26150192,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":556.04,"free":3101.88},{"epoch":26150193,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":556.02,"free":3101.9},{"epoch":26150194,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":556,"free":3101.91},{"epoch":26150195,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":554.81,"free":3103.12},{"epoch":26150196,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":554.76,"free":3103.17},{"epoch":26150197,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":556.38,"free":3101.54},{"epoch":26150198,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.7,"free":3102.22},{"epoch":26150199,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":555.7,"free":3102.19},{"epoch":26150200,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":555.92,"free":3101.99},{"epoch":26150201,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.89,"free":3102.02},{"epoch":26150202,"idl":99.81,"recv":0,"send":0,"writ":0.53,"used":556.62,"free":3101.27},{"epoch":26150203,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":556.06,"free":3101.83},{"epoch":26150204,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":556.04,"free":3101.85},{"epoch":26150205,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":555.09,"free":3102.81},{"epoch":26150206,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":555.03,"free":3102.87},{"epoch":26150207,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":556.2,"free":3101.7},{"epoch":26150208,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.97,"free":3101.93},{"epoch":26150209,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":555.95,"free":3101.94},{"epoch":26150210,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":556.19,"free":3101.71},{"epoch":26150211,"idl":99.92,"recv":0,"send":0,"writ":0.34,"used":555.98,"free":3101.93},{"epoch":26150212,"idl":99.76,"recv":0,"send":0,"writ":0.43,"used":556.5,"free":3101.4},{"epoch":26150213,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":556.24,"free":3101.65},{"epoch":26150214,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":556.3,"free":3101.59},{"epoch":26150215,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":556.06,"free":3101.85},{"epoch":26150216,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":556.04,"free":3101.86},{"epoch":26150217,"idl":99.8,"recv":0,"send":0,"writ":0.42,"used":556.36,"free":3101.54},{"epoch":26150218,"idl":99.94,"recv":0,"send":0,"writ":0.34,"used":555.98,"free":3101.92},{"epoch":26150219,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":555.96,"free":3101.93},{"epoch":26150220,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":555.95,"free":3101.95},{"epoch":26150221,"idl":99.89,"recv":0.02,"send":0.09,"writ":0.32,"used":555.93,"free":3101.97},{"epoch":26150222,"idl":99.76,"recv":0,"send":0,"writ":0.43,"used":556.27,"free":3101.61},{"epoch":26150223,"idl":99.9,"recv":0,"send":0.01,"writ":0.3,"used":555.94,"free":3101.93},{"epoch":26150224,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":556.03,"free":3101.84},{"epoch":26150225,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":556.03,"free":3101.86},{"epoch":26150226,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":556.02,"free":3101.87},{"epoch":26150227,"idl":99.79,"recv":0,"send":0,"writ":0.64,"used":556.34,"free":3101.54},{"epoch":26150228,"idl":99.93,"recv":0,"send":0,"writ":0.32,"used":555.97,"free":3101.9},{"epoch":26150229,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":555.94,"free":3101.91},{"epoch":26150230,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":555.94,"free":3101.92},{"epoch":26150231,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":555.92,"free":3101.94},{"epoch":26150232,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.89,"free":3101.96},{"epoch":26150233,"idl":99.78,"recv":0,"send":0,"writ":0.68,"used":556.46,"free":3101.39},{"epoch":26150234,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":556.13,"free":3101.73},{"epoch":26150235,"idl":99.89,"recv":0,"send":0,"writ":0.35,"used":555.51,"free":3102.38},{"epoch":26150236,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":555.29,"free":3102.59},{"epoch":26150237,"idl":99.94,"recv":0,"send":0,"writ":0.23,"used":555.26,"free":3102.62},{"epoch":26150238,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":555.6,"free":3102.27},{"epoch":26150239,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.21,"free":3102.66},{"epoch":26150240,"idl":99.87,"recv":0,"send":0,"writ":0.38,"used":554.98,"free":3102.9},{"epoch":26150241,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":554.94,"free":3102.94},{"epoch":26150242,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":554.91,"free":3102.96},{"epoch":26150243,"idl":99.82,"recv":0,"send":0,"writ":0.63,"used":555.77,"free":3102.11},{"epoch":26150244,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":555.11,"free":3102.76},{"epoch":26150245,"idl":99.87,"recv":0,"send":0,"writ":0.39,"used":555.53,"free":3102.35},{"epoch":26150246,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":555.52,"free":3102.36},{"epoch":26150247,"idl":99.93,"recv":0.02,"send":0.02,"writ":0.3,"used":555.47,"free":3102.39},{"epoch":26150248,"idl":99.81,"recv":0,"send":0,"writ":0.62,"used":555.83,"free":3102.02},{"epoch":26150249,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":555.36,"free":3102.48},{"epoch":26150250,"idl":99.87,"recv":0,"send":0,"writ":0.36,"used":555.62,"free":3102.24},{"epoch":26150251,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":555.61,"free":3102.24},{"epoch":26150252,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":555.67,"free":3102.18},{"epoch":26150253,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":555.99,"free":3101.86},{"epoch":26150254,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":555.48,"free":3102.36},{"epoch":26150255,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":555.48,"free":3102.38},{"epoch":26150256,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":555.46,"free":3102.39},{"epoch":26150257,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":555.43,"free":3102.42},{"epoch":26150258,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":555.77,"free":3102.07},{"epoch":26150259,"idl":99.9,"recv":0,"send":0.03,"writ":0.32,"used":555.12,"free":3102.69},{"epoch":26150260,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":555.12,"free":3102.71},{"epoch":26150261,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.1,"free":3102.73},{"epoch":26150262,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.13,"free":3102.69},{"epoch":26150263,"idl":99.8,"recv":0,"send":0,"writ":0.5,"used":555.98,"free":3101.84},{"epoch":26150264,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":555.49,"free":3102.32},{"epoch":26150265,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":555,"free":3102.83},{"epoch":26150266,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.99,"free":3102.86},{"epoch":26150267,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.96,"free":3102.89},{"epoch":26150268,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.94,"free":3102.89},{"epoch":26150269,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":555.78,"free":3102.06},{"epoch":26150270,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":554.94,"free":3102.91},{"epoch":26150271,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":554.52,"free":3103.32},{"epoch":26150272,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.38,"free":3103.45},{"epoch":26150273,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":554.36,"free":3103.47},{"epoch":26150274,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":555.97,"free":3101.85},{"epoch":26150275,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":555.75,"free":3102.09},{"epoch":26150276,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.72,"free":3102.12},{"epoch":26150277,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":555.7,"free":3102.13},{"epoch":26150278,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.68,"free":3102.15},{"epoch":26150279,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":556.01,"free":3101.81},{"epoch":26150280,"idl":99.71,"recv":0,"send":0,"writ":0.36,"used":555.67,"free":3102.17},{"epoch":26150281,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.64,"free":3102.19},{"epoch":26150282,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":555.62,"free":3102.21},{"epoch":26150283,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.59,"free":3102.24},{"epoch":26150284,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":555.92,"free":3101.9},{"epoch":26150285,"idl":99.83,"recv":0,"send":0,"writ":0.45,"used":555.74,"free":3102.09},{"epoch":26150286,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":555.73,"free":3102.1},{"epoch":26150287,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":555.71,"free":3102.12},{"epoch":26150288,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.68,"free":3102.14},{"epoch":26150289,"idl":99.75,"recv":0,"send":0,"writ":0.7,"used":555.92,"free":3101.88},{"epoch":26150290,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":555.18,"free":3102.64},{"epoch":26150291,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":555.14,"free":3102.67},{"epoch":26150292,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":555.13,"free":3102.68},{"epoch":26150293,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":555.1,"free":3102.71},{"epoch":26150294,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":555.91,"free":3101.89},{"epoch":26150295,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":554.84,"free":3102.98},{"epoch":26150296,"idl":99.91,"recv":0,"send":0,"writ":0.12,"used":554.76,"free":3103.06},{"epoch":26150297,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":554.73,"free":3103.08},{"epoch":26150298,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":554.71,"free":3103.1},{"epoch":26150299,"idl":99.75,"recv":0,"send":0,"writ":0.4,"used":555.3,"free":3102.5},{"epoch":26150300,"idl":99.83,"recv":0,"send":0,"writ":0.44,"used":555.45,"free":3102.37},{"epoch":26150301,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":555.41,"free":3102.4},{"epoch":26150302,"idl":99.85,"recv":0,"send":0,"writ":0.12,"used":555.39,"free":3102.42},{"epoch":26150303,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.37,"free":3102.44},{"epoch":26150304,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":555.34,"free":3102.47},{"epoch":26150305,"idl":99.7,"recv":0,"send":0,"writ":0.7,"used":556.33,"free":3101.49},{"epoch":26150306,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":555.99,"free":3101.83},{"epoch":26150307,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":555.96,"free":3101.85},{"epoch":26150308,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":555.94,"free":3101.87},{"epoch":26150309,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":555.92,"free":3101.88},{"epoch":26150310,"idl":96.1,"recv":0.04,"send":0.01,"writ":141.29,"used":568,"free":3091.7},{"epoch":26150311,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":557.35,"free":3100.38},{"epoch":26150312,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":557.32,"free":3100.41},{"epoch":26150313,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":557.3,"free":3100.42},{"epoch":26150314,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":557.28,"free":3100.44},{"epoch":26150315,"idl":99.66,"recv":0,"send":0,"writ":0.76,"used":557.08,"free":3100.67},{"epoch":26150316,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":555.83,"free":3101.94},{"epoch":26150317,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":555.8,"free":3101.96},{"epoch":26150318,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.78,"free":3101.98},{"epoch":26150319,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":555.83,"free":3101.89},{"epoch":26150320,"idl":99.72,"recv":0,"send":0,"writ":0.71,"used":556.29,"free":3101.45},{"epoch":26150321,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":555.92,"free":3101.82},{"epoch":26150322,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":555.89,"free":3101.84},{"epoch":26150323,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":555.88,"free":3101.85},{"epoch":26150324,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":555.86,"free":3101.87},{"epoch":26150325,"idl":99.67,"recv":0,"send":0,"writ":0.8,"used":556.17,"free":3101.56},{"epoch":26150326,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":555.83,"free":3101.9},{"epoch":26150327,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":555.8,"free":3101.93},{"epoch":26150328,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":555.78,"free":3101.94},{"epoch":26150329,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":555.76,"free":3101.96},{"epoch":26150330,"idl":99.69,"recv":0,"send":0,"writ":0.79,"used":556.07,"free":3101.67},{"epoch":26150331,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":555.51,"free":3102.23},{"epoch":26150332,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.43,"free":3102.3},{"epoch":26150333,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":555.42,"free":3102.31},{"epoch":26150334,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":555.39,"free":3102.33},{"epoch":26150335,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":556.23,"free":3101.51},{"epoch":26150336,"idl":99.86,"recv":0,"send":0,"writ":0.37,"used":555.86,"free":3101.87},{"epoch":26150337,"idl":99.82,"recv":0.02,"send":0.61,"writ":0.22,"used":555.81,"free":3101.91},{"epoch":26150338,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":555.78,"free":3101.94},{"epoch":26150339,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":555.86,"free":3101.85},{"epoch":26150340,"idl":99.62,"recv":0,"send":0,"writ":0.48,"used":556.3,"free":3101.44},{"epoch":26150341,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":555.68,"free":3102.05},{"epoch":26150342,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":555.66,"free":3102.06},{"epoch":26150343,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":555.64,"free":3102.08},{"epoch":26150344,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":555.63,"free":3102.11},{"epoch":26150345,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":555.39,"free":3102.37},{"epoch":26150346,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":555.73,"free":3102.03},{"epoch":26150347,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":555.34,"free":3102.41},{"epoch":26150348,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.33,"free":3102.42},{"epoch":26150349,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":555.81,"free":3101.91},{"epoch":26150350,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":556.08,"free":3101.65},{"epoch":26150351,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":556.3,"free":3101.43},{"epoch":26150352,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":555.93,"free":3101.8},{"epoch":26150353,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":555.9,"free":3101.82},{"epoch":26150354,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":555.89,"free":3101.84},{"epoch":26150355,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":555.89,"free":3101.86},{"epoch":26150356,"idl":99.71,"recv":0,"send":0,"writ":0.53,"used":556.23,"free":3101.52},{"epoch":26150357,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":555.85,"free":3101.89},{"epoch":26150358,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":555.83,"free":3101.91},{"epoch":26150359,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":555.81,"free":3101.93},{"epoch":26150360,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":555.82,"free":3101.96},{"epoch":26150361,"idl":99.72,"recv":0.01,"send":0,"writ":0.6,"used":556.34,"free":3101.43},{"epoch":26150362,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":555.68,"free":3102.08},{"epoch":26150363,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":555.67,"free":3102.09},{"epoch":26150364,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":555.64,"free":3102.12},{"epoch":26150365,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":555.89,"free":3101.88},{"epoch":26150366,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":556.26,"free":3101.51},{"epoch":26150367,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":556.08,"free":3101.69},{"epoch":26150368,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":556.05,"free":3101.71},{"epoch":26150369,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":556.03,"free":3101.73},{"epoch":26150370,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":555.78,"free":3101.98},{"epoch":26150371,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":556.26,"free":3101.5},{"epoch":26150372,"idl":99.86,"recv":0,"send":0,"writ":0.39,"used":556.16,"free":3101.6},{"epoch":26150373,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":556.15,"free":3101.6},{"epoch":26150374,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":556.12,"free":3101.63},{"epoch":26150375,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":555.89,"free":3101.88},{"epoch":26150376,"idl":99.71,"recv":0,"send":0,"writ":0.35,"used":556.21,"free":3101.55},{"epoch":26150377,"idl":99.86,"recv":0,"send":0,"writ":0.43,"used":555.84,"free":3101.92},{"epoch":26150378,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":555.81,"free":3101.94},{"epoch":26150379,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":555.8,"free":3101.93},{"epoch":26150380,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":556.28,"free":3101.47},{"epoch":26150381,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":556.26,"free":3101.48},{"epoch":26150382,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":556.52,"free":3101.21},{"epoch":26150383,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":555.91,"free":3101.82},{"epoch":26150384,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":555.9,"free":3101.86},{"epoch":26150385,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":556.14,"free":3101.64},{"epoch":26150386,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":556.13,"free":3101.65},{"epoch":26150387,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":556.03,"free":3101.74},{"epoch":26150388,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":555.34,"free":3102.43},{"epoch":26150389,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":555.31,"free":3102.45},{"epoch":26150390,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":555.08,"free":3102.7},{"epoch":26150391,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":554.88,"free":3102.89},{"epoch":26150392,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":555.26,"free":3102.51},{"epoch":26150393,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":555.14,"free":3102.62},{"epoch":26150394,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.19,"free":3102.57},{"epoch":26150395,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":555.68,"free":3102.1},{"epoch":26150396,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":555.67,"free":3102.11},{"epoch":26150397,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":555.91,"free":3101.86},{"epoch":26150398,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":555.38,"free":3102.39},{"epoch":26150399,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.35,"free":3102.41},{"epoch":26150400,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":555.37,"free":3102.41},{"epoch":26150401,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.33,"free":3102.44},{"epoch":26150402,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":555.57,"free":3102.2},{"epoch":26150403,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":555.04,"free":3102.73},{"epoch":26150404,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":555.15,"free":3102.61},{"epoch":26150405,"idl":99.82,"recv":0,"send":0,"writ":0.37,"used":555.47,"free":3102.31},{"epoch":26150406,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":555.42,"free":3102.36},{"epoch":26150407,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":555.79,"free":3101.98},{"epoch":26150408,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":555.63,"free":3102.14},{"epoch":26150409,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":555.35,"free":3102.39},{"epoch":26150410,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":555.1,"free":3102.66},{"epoch":26150411,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":555.07,"free":3102.68},{"epoch":26150412,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":555.4,"free":3102.35},{"epoch":26150413,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":555.68,"free":3102.06},{"epoch":26150414,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":555.4,"free":3102.34},{"epoch":26150415,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":555.67,"free":3102.08},{"epoch":26150416,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":555.66,"free":3102.09},{"epoch":26150417,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":555.64,"free":3102.11},{"epoch":26150418,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":555.36,"free":3102.39},{"epoch":26150419,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":554.86,"free":3102.88},{"epoch":26150420,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":554.85,"free":3102.91},{"epoch":26150421,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":554.83,"free":3102.93},{"epoch":26150422,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.83,"free":3102.93},{"epoch":26150423,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":555.35,"free":3102.4},{"epoch":26150424,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":555.02,"free":3102.72},{"epoch":26150425,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":555.39,"free":3102.37},{"epoch":26150426,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":555.42,"free":3102.33},{"epoch":26150427,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":555.39,"free":3102.36},{"epoch":26150428,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":555.74,"free":3102.01},{"epoch":26150429,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.35,"free":3102.39},{"epoch":26150430,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":555.6,"free":3102.16},{"epoch":26150431,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":555.57,"free":3102.18},{"epoch":26150432,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":555.56,"free":3102.19},{"epoch":26150433,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":555.89,"free":3101.86},{"epoch":26150434,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":555.52,"free":3102.22},{"epoch":26150435,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":555.83,"free":3101.93},{"epoch":26150436,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":555.94,"free":3101.82},{"epoch":26150437,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":555.9,"free":3101.85},{"epoch":26150438,"idl":99.7,"recv":0,"send":0,"writ":0.46,"used":556.15,"free":3101.59},{"epoch":26150439,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":555.35,"free":3102.37},{"epoch":26150440,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":555.85,"free":3101.89},{"epoch":26150441,"idl":98.29,"recv":0,"send":0,"writ":0.14,"used":555.83,"free":3101.9},{"epoch":26150442,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":555.81,"free":3101.92},{"epoch":26150443,"idl":99.71,"recv":0,"send":0,"writ":0.45,"used":556.11,"free":3101.62},{"epoch":26150444,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":555.52,"free":3102.2},{"epoch":26150445,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":555.05,"free":3102.69},{"epoch":26150446,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":555.01,"free":3102.72},{"epoch":26150447,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":555.12,"free":3102.61},{"epoch":26150448,"idl":99.63,"recv":0.02,"send":1.4,"writ":0.54,"used":555.5,"free":3102.22},{"epoch":26150449,"idl":99.8,"recv":0.02,"send":1.8,"writ":0.66,"used":555.07,"free":3102.64},{"epoch":26150450,"idl":99.76,"recv":0,"send":0.67,"writ":0.45,"used":555.27,"free":3102.43},{"epoch":26150451,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":555.24,"free":3102.46},{"epoch":26150452,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":555.35,"free":3102.35},{"epoch":26150453,"idl":99.8,"recv":0.01,"send":1.11,"writ":0.23,"used":555.37,"free":3102.31},{"epoch":26150454,"idl":99.69,"recv":0.01,"send":0.7,"writ":0.82,"used":555.39,"free":3102.28},{"epoch":26150455,"idl":99.77,"recv":0.01,"send":1.02,"writ":0.57,"used":555.12,"free":3102.55},{"epoch":26150456,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":555.02,"free":3102.66},{"epoch":26150457,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":555,"free":3102.67},{"epoch":26150458,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.97,"free":3102.7},{"epoch":26150459,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":555.36,"free":3102.3},{"epoch":26150460,"idl":99.71,"recv":0,"send":0,"writ":0.33,"used":554.23,"free":3103.44},{"epoch":26150461,"idl":99.37,"recv":0,"send":0,"writ":0.16,"used":554.34,"free":3103.33},{"epoch":26150462,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":554.35,"free":3103.32},{"epoch":26150463,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":554.33,"free":3103.34},{"epoch":26150464,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":555.75,"free":3101.91},{"epoch":26150465,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":555.05,"free":3102.63},{"epoch":26150466,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":555.01,"free":3102.66},{"epoch":26150467,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":554.99,"free":3102.67},{"epoch":26150468,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":554.97,"free":3102.69},{"epoch":26150469,"idl":99.63,"recv":0,"send":0,"writ":0.68,"used":555.55,"free":3102.08},{"epoch":26150470,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":555.44,"free":3102.22},{"epoch":26150471,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":555.57,"free":3102.09},{"epoch":26150472,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":555.6,"free":3102.07},{"epoch":26150473,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":555.58,"free":3102.09},{"epoch":26150474,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":555.68,"free":3101.98},{"epoch":26150475,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":555.32,"free":3102.36},{"epoch":26150476,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.29,"free":3102.39},{"epoch":26150477,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":555.27,"free":3102.4},{"epoch":26150478,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.25,"free":3102.42},{"epoch":26150479,"idl":99.79,"recv":0,"send":0,"writ":0.51,"used":555.57,"free":3102.09},{"epoch":26150480,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":555.22,"free":3102.45},{"epoch":26150481,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":555.19,"free":3102.48},{"epoch":26150482,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":555.31,"free":3102.36},{"epoch":26150483,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":555.34,"free":3102.32},{"epoch":26150484,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":555.96,"free":3101.7},{"epoch":26150485,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":555.32,"free":3102.35},{"epoch":26150486,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.29,"free":3102.38},{"epoch":26150487,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":555.26,"free":3102.4},{"epoch":26150488,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.24,"free":3102.42},{"epoch":26150489,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":555.22,"free":3102.44},{"epoch":26150490,"idl":99.67,"recv":0,"send":0,"writ":0.72,"used":555.2,"free":3102.47},{"epoch":26150491,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":554.7,"free":3102.96},{"epoch":26150492,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.69,"free":3102.97},{"epoch":26150493,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.82,"free":3102.84},{"epoch":26150494,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.87,"free":3102.79},{"epoch":26150495,"idl":99.71,"recv":0,"send":0,"writ":0.77,"used":555.31,"free":3102.36},{"epoch":26150496,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":554.83,"free":3102.83},{"epoch":26150497,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.81,"free":3102.85},{"epoch":26150498,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.79,"free":3102.86},{"epoch":26150499,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":555.27,"free":3102.36},{"epoch":26150500,"idl":99.72,"recv":0,"send":0,"writ":0.77,"used":555.66,"free":3101.98},{"epoch":26150501,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.23,"free":3102.4},{"epoch":26150502,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.21,"free":3102.42},{"epoch":26150503,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.19,"free":3102.43},{"epoch":26150504,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":555.28,"free":3102.34},{"epoch":26150505,"idl":99.72,"recv":0,"send":0,"writ":0.79,"used":556.19,"free":3101.45},{"epoch":26150506,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":555.34,"free":3102.3},{"epoch":26150507,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":555.32,"free":3102.31},{"epoch":26150508,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.3,"free":3102.33},{"epoch":26150509,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.28,"free":3102.34},{"epoch":26150510,"idl":99.69,"recv":0,"send":0,"writ":0.74,"used":555.6,"free":3102.04},{"epoch":26150511,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":555.33,"free":3102.3},{"epoch":26150512,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":555.19,"free":3102.44},{"epoch":26150513,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.95,"free":3102.7},{"epoch":26150514,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.94,"free":3102.7},{"epoch":26150515,"idl":99.72,"recv":0,"send":0,"writ":0.6,"used":555.9,"free":3101.76},{"epoch":26150516,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":555.6,"free":3102.06},{"epoch":26150517,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":555.57,"free":3102.08},{"epoch":26150518,"idl":99.91,"recv":0.01,"send":0.02,"writ":0.14,"used":555.53,"free":3102.11},{"epoch":26150519,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":555.43,"free":3102.2},{"epoch":26150520,"idl":99.73,"recv":0,"send":0,"writ":0.74,"used":556.02,"free":3101.64},{"epoch":26150521,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":555.6,"free":3102.05},{"epoch":26150522,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":555.57,"free":3102.08},{"epoch":26150523,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.55,"free":3102.09},{"epoch":26150524,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":555.53,"free":3102.11},{"epoch":26150525,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":556.38,"free":3101.28},{"epoch":26150526,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":554.77,"free":3102.88},{"epoch":26150527,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.75,"free":3102.9},{"epoch":26150528,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.73,"free":3102.91},{"epoch":26150529,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":555.44,"free":3102.18},{"epoch":26150530,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":555.46,"free":3102.18},{"epoch":26150531,"idl":99.78,"recv":0,"send":0,"writ":0.62,"used":555.79,"free":3101.85},{"epoch":26150532,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":555.57,"free":3102.06},{"epoch":26150533,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.57,"free":3102.05},{"epoch":26150534,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.55,"free":3102.07},{"epoch":26150535,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":555.56,"free":3102.08},{"epoch":26150536,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":556.05,"free":3101.58},{"epoch":26150537,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":555.74,"free":3101.89},{"epoch":26150538,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":555.72,"free":3101.9},{"epoch":26150539,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":555.7,"free":3101.92},{"epoch":26150540,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":555.46,"free":3102.17},{"epoch":26150541,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":556.06,"free":3101.58},{"epoch":26150542,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.23,"free":3102.4},{"epoch":26150543,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.83,"free":3102.79},{"epoch":26150544,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.81,"free":3102.81},{"epoch":26150545,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":554.81,"free":3102.82},{"epoch":26150546,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":555.2,"free":3102.43},{"epoch":26150547,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.52,"free":3103.1},{"epoch":26150548,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.49,"free":3103.13},{"epoch":26150549,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":554.48,"free":3103.14},{"epoch":26150550,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":554.79,"free":3102.84},{"epoch":26150551,"idl":99.79,"recv":0,"send":0,"writ":0.49,"used":555.13,"free":3102.49},{"epoch":26150552,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":555.03,"free":3102.6},{"epoch":26150553,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.07,"free":3102.55},{"epoch":26150554,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.05,"free":3102.57},{"epoch":26150555,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":555.06,"free":3102.58},{"epoch":26150556,"idl":99.82,"recv":0,"send":0,"writ":0.53,"used":555.38,"free":3102.24},{"epoch":26150557,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":555.01,"free":3102.61},{"epoch":26150558,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.01,"free":3102.61},{"epoch":26150559,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":554.98,"free":3102.62},{"epoch":26150560,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":554.51,"free":3103.12},{"epoch":26150561,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":554.93,"free":3102.7},{"epoch":26150562,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.93,"free":3102.69},{"epoch":26150563,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.92,"free":3102.7},{"epoch":26150564,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.07,"free":3102.56},{"epoch":26150565,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":555.35,"free":3102.3},{"epoch":26150566,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":555.58,"free":3102.07},{"epoch":26150567,"idl":99.93,"recv":0,"send":0,"writ":0.37,"used":554.82,"free":3102.82},{"epoch":26150568,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":554.8,"free":3102.84},{"epoch":26150569,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.78,"free":3102.86},{"epoch":26150570,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":554.78,"free":3102.87},{"epoch":26150571,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":554.62,"free":3103.03},{"epoch":26150572,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":555.62,"free":3102.04},{"epoch":26150573,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.95,"free":3102.71},{"epoch":26150574,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.94,"free":3102.71},{"epoch":26150575,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":554.85,"free":3102.82},{"epoch":26150576,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":554.85,"free":3102.82},{"epoch":26150577,"idl":99.82,"recv":0,"send":0.01,"writ":0.58,"used":555.47,"free":3102.19},{"epoch":26150578,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":554.78,"free":3102.88},{"epoch":26150579,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":554.76,"free":3102.89},{"epoch":26150580,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":554.04,"free":3103.63},{"epoch":26150581,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554,"free":3103.66},{"epoch":26150582,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":555.26,"free":3102.4},{"epoch":26150583,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":555.19,"free":3102.46},{"epoch":26150584,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.27,"free":3102.38},{"epoch":26150585,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":555.36,"free":3102.31},{"epoch":26150586,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":555.33,"free":3102.33},{"epoch":26150587,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":555.58,"free":3102.08},{"epoch":26150588,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":555.05,"free":3102.61},{"epoch":26150589,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":555.28,"free":3102.35},{"epoch":26150590,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":555.02,"free":3102.62},{"epoch":26150591,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":554.99,"free":3102.64},{"epoch":26150592,"idl":99.81,"recv":0,"send":0,"writ":0.58,"used":555.39,"free":3102.24},{"epoch":26150593,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":555.18,"free":3102.45},{"epoch":26150594,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":555.16,"free":3102.46},{"epoch":26150595,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":555.29,"free":3102.35},{"epoch":26150596,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":555.32,"free":3102.31},{"epoch":26150597,"idl":99.78,"recv":0,"send":0,"writ":0.48,"used":555.97,"free":3101.66},{"epoch":26150598,"idl":99.94,"recv":0,"send":0,"writ":0.31,"used":555.02,"free":3102.6},{"epoch":26150599,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":554.99,"free":3102.63},{"epoch":26150600,"idl":99.89,"recv":0,"send":0,"writ":0.35,"used":554.82,"free":3102.82},{"epoch":26150601,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.7,"free":3102.93},{"epoch":26150602,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":555.14,"free":3102.48},{"epoch":26150603,"idl":99.95,"recv":0,"send":0,"writ":0.39,"used":554.41,"free":3103.21},{"epoch":26150604,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":554.56,"free":3103.06},{"epoch":26150605,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":554.81,"free":3102.82},{"epoch":26150606,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.8,"free":3102.83},{"epoch":26150607,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":554.78,"free":3102.85},{"epoch":26150608,"idl":99.81,"recv":0,"send":0,"writ":0.59,"used":555.33,"free":3102.29},{"epoch":26150609,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.99,"free":3102.63},{"epoch":26150610,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":555.22,"free":3102.42},{"epoch":26150611,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.21,"free":3102.42},{"epoch":26150612,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.19,"free":3102.44},{"epoch":26150613,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":555.68,"free":3101.95},{"epoch":26150614,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":555.38,"free":3102.23},{"epoch":26150615,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":554.12,"free":3103.52},{"epoch":26150616,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":554.08,"free":3103.55},{"epoch":26150617,"idl":99.95,"recv":0,"send":0,"writ":0.12,"used":554.07,"free":3103.56},{"epoch":26150618,"idl":99.03,"recv":0,"send":0,"writ":0.5,"used":555.05,"free":3102.58},{"epoch":26150619,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":555.26,"free":3102.34},{"epoch":26150620,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":555.01,"free":3102.61},{"epoch":26150621,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":554.98,"free":3102.63},{"epoch":26150622,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":554.97,"free":3102.64},{"epoch":26150623,"idl":95.78,"recv":0,"send":0,"writ":0.39,"used":555.4,"free":3102.21},{"epoch":26150624,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":555.16,"free":3102.44},{"epoch":26150625,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":554.92,"free":3102.7},{"epoch":26150626,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":555.04,"free":3102.57},{"epoch":26150627,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":555.06,"free":3102.55},{"epoch":26150628,"idl":99.77,"recv":0,"send":0,"writ":0.5,"used":555.21,"free":3102.4},{"epoch":26150629,"idl":99.15,"recv":0,"send":0,"writ":0.2,"used":554.53,"free":3103.07},{"epoch":26150630,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":554.76,"free":3102.86},{"epoch":26150631,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":554.48,"free":3103.13},{"epoch":26150632,"idl":99.62,"recv":0,"send":0,"writ":0.14,"used":554.23,"free":3103.38},{"epoch":26150633,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":554.76,"free":3102.85},{"epoch":26150634,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.18,"free":3102.44},{"epoch":26150635,"idl":99.87,"recv":0,"send":0,"writ":0.38,"used":555.66,"free":3101.97},{"epoch":26150636,"idl":99.95,"recv":0,"send":0,"writ":0.12,"used":555.65,"free":3101.98},{"epoch":26150637,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":555.8,"free":3101.82},{"epoch":26150638,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":556.45,"free":3101.17},{"epoch":26150639,"idl":99.92,"recv":0,"send":0,"writ":0.39,"used":555.3,"free":3102.32},{"epoch":26150640,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":554.57,"free":3103.06},{"epoch":26150641,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":554.52,"free":3103.1},{"epoch":26150642,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":554.48,"free":3103.14},{"epoch":26150643,"idl":99.39,"recv":0,"send":0,"writ":0.15,"used":554.47,"free":3103.15},{"epoch":26150644,"idl":99.81,"recv":0,"send":0,"writ":0.58,"used":555.63,"free":3101.98},{"epoch":26150645,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":555.43,"free":3102.2},{"epoch":26150646,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.56,"free":3102.07},{"epoch":26150647,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":555.58,"free":3102.04},{"epoch":26150648,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":555.55,"free":3102.07},{"epoch":26150649,"idl":99.71,"recv":0,"send":0,"writ":0.73,"used":555.91,"free":3101.69},{"epoch":26150650,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":555.54,"free":3102.07},{"epoch":26150651,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":555.51,"free":3102.1},{"epoch":26150652,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.48,"free":3102.12},{"epoch":26150653,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":555.47,"free":3102.13},{"epoch":26150654,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":556.31,"free":3101.28},{"epoch":26150655,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":555.47,"free":3102.13},{"epoch":26150656,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":555.42,"free":3102.18},{"epoch":26150657,"idl":99.95,"recv":0,"send":0,"writ":0.22,"used":555.47,"free":3102.13},{"epoch":26150658,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":555.57,"free":3102.02},{"epoch":26150659,"idl":99.64,"recv":0.04,"send":0.15,"writ":0.93,"used":560.32,"free":3097.14},{"epoch":26150660,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":565.41,"free":3091.94},{"epoch":26150661,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":565.52,"free":3091.83},{"epoch":26150662,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":565.48,"free":3091.87},{"epoch":26150663,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":565.45,"free":3091.9},{"epoch":26150664,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":566,"free":3091.33},{"epoch":26150665,"idl":99.87,"recv":0,"send":0,"writ":0.45,"used":565.66,"free":3091.69},{"epoch":26150666,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.67,"free":3091.68},{"epoch":26150667,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":565.76,"free":3091.58},{"epoch":26150668,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":565.73,"free":3091.61},{"epoch":26150669,"idl":99.81,"recv":0,"send":0,"writ":0.49,"used":566.21,"free":3091.12},{"epoch":26150670,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":566.42,"free":3090.93},{"epoch":26150671,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":566.39,"free":3090.96},{"epoch":26150672,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.35,"free":3090.99},{"epoch":26150673,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.39,"free":3090.95},{"epoch":26150674,"idl":95.31,"recv":0.35,"send":0.01,"writ":77.98,"used":578.34,"free":3079.37},{"epoch":26150675,"idl":99.79,"recv":0,"send":0,"writ":180.31,"used":568.71,"free":3088.42},{"epoch":26150676,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":568.7,"free":3088.42},{"epoch":26150677,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":568.67,"free":3088.45},{"epoch":26150678,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":568.71,"free":3088.41},{"epoch":26150679,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":568.8,"free":3088.27},{"epoch":26150680,"idl":99.73,"recv":0,"send":0,"writ":0.7,"used":567.26,"free":3089.88},{"epoch":26150681,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":566.59,"free":3090.55},{"epoch":26150682,"idl":98.84,"recv":0,"send":0,"writ":0.14,"used":566.55,"free":3090.58},{"epoch":26150683,"idl":99.2,"recv":0,"send":0,"writ":0.15,"used":566.52,"free":3090.61},{"epoch":26150684,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":566.49,"free":3090.67},{"epoch":26150685,"idl":99.76,"recv":0,"send":0,"writ":0.73,"used":566.73,"free":3090.45},{"epoch":26150686,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.38,"free":3090.79},{"epoch":26150687,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.13,"used":566.35,"free":3090.83},{"epoch":26150688,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":566.31,"free":3090.86},{"epoch":26150689,"idl":99.59,"recv":0,"send":0,"writ":0.14,"used":566.28,"free":3090.89},{"epoch":26150690,"idl":99.78,"recv":0,"send":0,"writ":0.7,"used":566.63,"free":3090.55},{"epoch":26150691,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":566.15,"free":3091.03},{"epoch":26150692,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.86,"free":3091.32},{"epoch":26150693,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":565.83,"free":3091.34},{"epoch":26150694,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.8,"free":3091.37},{"epoch":26150695,"idl":99.74,"recv":0,"send":0,"writ":0.73,"used":566.22,"free":3090.96},{"epoch":26150696,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":565.37,"free":3091.81},{"epoch":26150697,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":565.16,"free":3092.01},{"epoch":26150698,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":565.13,"free":3092.04},{"epoch":26150699,"idl":99.42,"recv":0,"send":0,"writ":0.19,"used":565.1,"free":3092.07},{"epoch":26150700,"idl":99.25,"recv":0,"send":0,"writ":9.48,"used":565.64,"free":3091.93},{"epoch":26150701,"idl":99.67,"recv":0,"send":0,"writ":0.2,"used":565.44,"free":3092.16},{"epoch":26150702,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":565.4,"free":3092.2},{"epoch":26150703,"idl":99.96,"recv":0,"send":0,"writ":0.2,"used":565.49,"free":3092.11},{"epoch":26150704,"idl":99.69,"recv":0,"send":0,"writ":0.2,"used":565.55,"free":3092.04},{"epoch":26150705,"idl":99.72,"recv":0,"send":0,"writ":0.61,"used":566.01,"free":3091.64},{"epoch":26150706,"idl":98.33,"recv":0,"send":0,"writ":0.31,"used":565.51,"free":3092.15},{"epoch":26150707,"idl":99.48,"recv":0,"send":0,"writ":0.16,"used":565.48,"free":3092.18},{"epoch":26150708,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":565.44,"free":3092.21},{"epoch":26150709,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":565.68,"free":3091.96},{"epoch":26150710,"idl":99.73,"recv":0,"send":0,"writ":0.64,"used":566.19,"free":3091.46},{"epoch":26150711,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":565.81,"free":3091.84},{"epoch":26150712,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":565.78,"free":3091.86},{"epoch":26150713,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":565.74,"free":3091.89},{"epoch":26150714,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.71,"free":3091.92},{"epoch":26150715,"idl":99.73,"recv":0,"send":0,"writ":0.61,"used":565.84,"free":3091.8},{"epoch":26150716,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":565.72,"free":3091.92},{"epoch":26150717,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":565.81,"free":3091.82},{"epoch":26150718,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":565.77,"free":3091.86},{"epoch":26150719,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.16,"used":565.74,"free":3091.89},{"epoch":26150720,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":565.72,"free":3091.92},{"epoch":26150721,"idl":98.1,"recv":0,"send":0,"writ":0.51,"used":566.04,"free":3091.6},{"epoch":26150722,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":565.66,"free":3091.98},{"epoch":26150723,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":565.78,"free":3091.85},{"epoch":26150724,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":565.78,"free":3091.85},{"epoch":26150725,"idl":99.89,"recv":0,"send":0,"writ":0.41,"used":565.77,"free":3091.88},{"epoch":26150726,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":565.89,"free":3091.75},{"epoch":26150727,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.45,"free":3092.19},{"epoch":26150728,"idl":99.29,"recv":0,"send":0,"writ":0.14,"used":565.42,"free":3092.22},{"epoch":26150729,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":565.5,"free":3092.13},{"epoch":26150730,"idl":99.9,"recv":0,"send":0,"writ":0.35,"used":565.58,"free":3092.07},{"epoch":26150731,"idl":96.38,"recv":0,"send":0,"writ":0.52,"used":566,"free":3091.65},{"epoch":26150732,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.5,"free":3092.13},{"epoch":26150733,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":565.47,"free":3092.16},{"epoch":26150734,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":565.43,"free":3092.2},{"epoch":26150735,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":565.66,"free":3091.98},{"epoch":26150736,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":565.88,"free":3091.76},{"epoch":26150737,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":565.3,"free":3092.34},{"epoch":26150738,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":565.26,"free":3092.37},{"epoch":26150739,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":565.72,"free":3091.89},{"epoch":26150740,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":565.72,"free":3091.9},{"epoch":26150741,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":566.03,"free":3091.59},{"epoch":26150742,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.7,"free":3091.91},{"epoch":26150743,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":565.8,"free":3091.81},{"epoch":26150744,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":565.77,"free":3091.84},{"epoch":26150745,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":565.27,"free":3092.35},{"epoch":26150746,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.42,"used":565.58,"free":3092.04},{"epoch":26150747,"idl":99.93,"recv":0,"send":0.01,"writ":0.36,"used":564.78,"free":3092.82},{"epoch":26150748,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":564.75,"free":3092.86},{"epoch":26150749,"idl":98.68,"recv":0,"send":0,"writ":0.16,"used":564.71,"free":3092.89},{"epoch":26150750,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":565.19,"free":3092.43},{"epoch":26150751,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":565.49,"free":3092.12},{"epoch":26150752,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":566.38,"free":3091.23},{"epoch":26150753,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.01,"free":3091.6},{"epoch":26150754,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":565.97,"free":3091.63},{"epoch":26150755,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":565.96,"free":3091.67},{"epoch":26150756,"idl":99.02,"recv":0,"send":0,"writ":0.13,"used":565.93,"free":3091.7},{"epoch":26150757,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":566.13,"free":3091.49},{"epoch":26150758,"idl":99.93,"recv":0,"send":0.03,"writ":0.18,"used":565.8,"free":3091.82},{"epoch":26150759,"idl":97.67,"recv":0,"send":0,"writ":0.17,"used":565.75,"free":3091.87},{"epoch":26150760,"idl":99.58,"recv":0,"send":0,"writ":0.39,"used":565.98,"free":3091.65},{"epoch":26150761,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.96,"free":3091.67},{"epoch":26150762,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":566.12,"free":3091.5},{"epoch":26150763,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":565.65,"free":3091.97},{"epoch":26150764,"idl":97.42,"recv":0,"send":0,"writ":0.14,"used":565.8,"free":3091.82},{"epoch":26150765,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":565.79,"free":3091.84},{"epoch":26150766,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":565.76,"free":3091.87},{"epoch":26150767,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":566.09,"free":3091.54},{"epoch":26150768,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":565.69,"free":3091.92},{"epoch":26150769,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":565.9,"free":3091.7},{"epoch":26150770,"idl":97.91,"recv":0,"send":0,"writ":0.27,"used":565.72,"free":3091.89},{"epoch":26150771,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":565.8,"free":3091.81},{"epoch":26150772,"idl":99.75,"recv":0,"send":0,"writ":0.5,"used":566.54,"free":3091.06},{"epoch":26150773,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":565.98,"free":3091.62},{"epoch":26150774,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":565.95,"free":3091.65},{"epoch":26150775,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":566.18,"free":3091.43},{"epoch":26150776,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":566.15,"free":3091.45},{"epoch":26150777,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":566.49,"free":3091.12},{"epoch":26150778,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":566.02,"free":3091.57},{"epoch":26150779,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.17,"used":565.98,"free":3091.62},{"epoch":26150780,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":566.2,"free":3091.42},{"epoch":26150781,"idl":99.48,"recv":0,"send":0,"writ":0.17,"used":566.17,"free":3091.44},{"epoch":26150782,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":566.13,"free":3091.47},{"epoch":26150783,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":566.66,"free":3090.94},{"epoch":26150784,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":566.25,"free":3091.34},{"epoch":26150785,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":566,"free":3091.61},{"epoch":26150786,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":565.96,"free":3091.65},{"epoch":26150787,"idl":99.91,"recv":0.01,"send":0,"writ":0.14,"used":565.92,"free":3091.68},{"epoch":26150788,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":566.24,"free":3091.36},{"epoch":26150789,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.98,"free":3091.61},{"epoch":26150790,"idl":99.83,"recv":0,"send":0,"writ":0.26,"used":565.56,"free":3092.05},{"epoch":26150791,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":565.53,"free":3092.08},{"epoch":26150792,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":565.48,"free":3092.12},{"epoch":26150793,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":566.18,"free":3091.41},{"epoch":26150794,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":565.91,"free":3091.68},{"epoch":26150795,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":564.93,"free":3092.68},{"epoch":26150796,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":565.04,"free":3092.56},{"epoch":26150797,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":565.05,"free":3092.55},{"epoch":26150798,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":566.1,"free":3091.5},{"epoch":26150799,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":566.22,"free":3091.36},{"epoch":26150800,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":565.95,"free":3091.63},{"epoch":26150801,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":565.91,"free":3091.67},{"epoch":26150802,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":565.95,"free":3091.63},{"epoch":26150803,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":566.56,"free":3091.02},{"epoch":26150804,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":566,"free":3091.57},{"epoch":26150805,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":566.47,"free":3091.12},{"epoch":26150806,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.44,"free":3091.15},{"epoch":26150807,"idl":99.93,"recv":0,"send":0.01,"writ":0.16,"used":566.18,"free":3091.4},{"epoch":26150808,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":566.55,"free":3091.02},{"epoch":26150809,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":566.46,"free":3091.11},{"epoch":26150810,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":566.53,"free":3091.05},{"epoch":26150811,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":566.29,"free":3091.3},{"epoch":26150812,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.18,"used":565.95,"free":3091.63},{"epoch":26150813,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":566.23,"free":3091.35},{"epoch":26150814,"idl":99.92,"recv":0,"send":0,"writ":0.36,"used":565.68,"free":3091.89},{"epoch":26150815,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":565.6,"free":3091.99},{"epoch":26150816,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":565.52,"free":3092.07},{"epoch":26150817,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":565.48,"free":3092.1},{"epoch":26150818,"idl":99.79,"recv":0,"send":0,"writ":0.45,"used":565.85,"free":3091.73},{"epoch":26150819,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":566.14,"free":3091.43},{"epoch":26150820,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":566.21,"free":3091.38},{"epoch":26150821,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":566.27,"free":3091.33},{"epoch":26150822,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":566.24,"free":3091.36},{"epoch":26150823,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":566.21,"free":3091.38},{"epoch":26150824,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":566.53,"free":3091.06},{"epoch":26150825,"idl":96.53,"recv":2.95,"send":0.02,"writ":3.79,"used":570.02,"free":3088.61},{"epoch":26150826,"idl":99.88,"recv":0,"send":0,"writ":77.49,"used":568.6,"free":3085.71},{"epoch":26150827,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":568.63,"free":3085.68},{"epoch":26150828,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":568.74,"free":3085.56},{"epoch":26150829,"idl":99.72,"recv":0,"send":0,"writ":0.68,"used":569.07,"free":3085.21},{"epoch":26150830,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":568.46,"free":3085.84},{"epoch":26150831,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":566.28,"free":3088.09},{"epoch":26150832,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":566.25,"free":3088.12},{"epoch":26150833,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":566.22,"free":3088.14},{"epoch":26150834,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":566.74,"free":3087.63},{"epoch":26150835,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":566.37,"free":3088.03},{"epoch":26150836,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":566.35,"free":3088.05},{"epoch":26150837,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":566.32,"free":3088.08},{"epoch":26150838,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":566.28,"free":3088.11},{"epoch":26150839,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.49,"used":566.31,"free":3088.09},{"epoch":26150840,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":566.46,"free":3087.96},{"epoch":26150841,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":566.57,"free":3087.84},{"epoch":26150842,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":566.59,"free":3087.81},{"epoch":26150843,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":566.56,"free":3087.84},{"epoch":26150844,"idl":99.77,"recv":0,"send":0,"writ":0.49,"used":566.88,"free":3087.52},{"epoch":26150845,"idl":99.83,"recv":0,"send":0.01,"writ":0.36,"used":566.52,"free":3087.9},{"epoch":26150846,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":566.47,"free":3087.95},{"epoch":26150847,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":566.55,"free":3087.86},{"epoch":26150848,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":566.59,"free":3087.81},{"epoch":26150849,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":566.85,"free":3087.55},{"epoch":26150850,"idl":99.8,"recv":0,"send":0,"writ":0.44,"used":566.54,"free":3087.87},{"epoch":26150851,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.58,"free":3088.83},{"epoch":26150852,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.49,"free":3088.92},{"epoch":26150853,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":565.45,"free":3088.95},{"epoch":26150854,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":565.91,"free":3088.48},{"epoch":26150855,"idl":99.88,"recv":0,"send":0,"writ":0.49,"used":565.84,"free":3088.57},{"epoch":26150856,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":565.8,"free":3088.61},{"epoch":26150857,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":565.77,"free":3088.63},{"epoch":26150858,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":565.74,"free":3088.66},{"epoch":26150859,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":565.71,"free":3088.66},{"epoch":26150860,"idl":99.7,"recv":0,"send":0,"writ":0.7,"used":566.31,"free":3088.09},{"epoch":26150861,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":565.57,"free":3088.82},{"epoch":26150862,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":565.55,"free":3088.84},{"epoch":26150863,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":565.51,"free":3088.88},{"epoch":26150864,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":565.48,"free":3088.93},{"epoch":26150865,"idl":99.73,"recv":0,"send":0,"writ":0.71,"used":566.04,"free":3088.39},{"epoch":26150866,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":565.76,"free":3088.66},{"epoch":26150867,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.16,"used":565.84,"free":3088.57},{"epoch":26150868,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":565.8,"free":3088.61},{"epoch":26150869,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":565.77,"free":3088.64},{"epoch":26150870,"idl":99.65,"recv":0,"send":0,"writ":0.67,"used":566.02,"free":3088.4},{"epoch":26150871,"idl":99.81,"recv":0,"send":0,"writ":0.23,"used":565.63,"free":3088.79},{"epoch":26150872,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":565.44,"free":3088.98},{"epoch":26150873,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":565.54,"free":3088.87},{"epoch":26150874,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":565.6,"free":3088.81},{"epoch":26150875,"idl":99.65,"recv":0,"send":0,"writ":0.73,"used":565.97,"free":3088.45},{"epoch":26150876,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":565.8,"free":3088.62},{"epoch":26150877,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":565.77,"free":3088.64},{"epoch":26150878,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":565.74,"free":3088.67},{"epoch":26150879,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":565.71,"free":3088.7},{"epoch":26150880,"idl":99.61,"recv":0,"send":0,"writ":0.61,"used":565.67,"free":3088.76},{"epoch":26150881,"idl":99.85,"recv":0,"send":0,"writ":0.22,"used":565.61,"free":3088.81},{"epoch":26150882,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":565.55,"free":3088.86},{"epoch":26150883,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":565.5,"free":3088.91},{"epoch":26150884,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":565.47,"free":3088.94},{"epoch":26150885,"idl":99.55,"recv":0,"send":0,"writ":0.68,"used":566.24,"free":3088.19},{"epoch":26150886,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":565.36,"free":3089.06},{"epoch":26150887,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":565.32,"free":3089.09},{"epoch":26150888,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":565.29,"free":3089.12},{"epoch":26150889,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":565.75,"free":3088.64},{"epoch":26150890,"idl":99.65,"recv":0,"send":0.01,"writ":0.48,"used":565.96,"free":3088.44},{"epoch":26150891,"idl":99.83,"recv":0,"send":0,"writ":0.38,"used":565.82,"free":3088.58},{"epoch":26150892,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":565.85,"free":3088.55},{"epoch":26150893,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":565.82,"free":3088.58},{"epoch":26150894,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":565.78,"free":3088.61},{"epoch":26150895,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":566.02,"free":3088.39},{"epoch":26150896,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":566.17,"free":3088.24},{"epoch":26150897,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":565.94,"free":3088.46},{"epoch":26150898,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":566.07,"free":3088.32},{"epoch":26150899,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.16,"used":566.07,"free":3088.32},{"epoch":26150900,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":566.05,"free":3088.36},{"epoch":26150901,"idl":99.71,"recv":0,"send":0,"writ":0.53,"used":566.37,"free":3088.04},{"epoch":26150902,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":565.98,"free":3088.42},{"epoch":26150903,"idl":99.83,"recv":0,"send":0.01,"writ":0.17,"used":566.01,"free":3088.38},{"epoch":26150904,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":566.09,"free":3088.3},{"epoch":26150905,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":565.83,"free":3088.57},{"epoch":26150906,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":566.14,"free":3088.26},{"epoch":26150907,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":565.75,"free":3088.64},{"epoch":26150908,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":565.72,"free":3088.67},{"epoch":26150909,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":565.69,"free":3088.7},{"epoch":26150910,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":566.29,"free":3088.11},{"epoch":26150911,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":566.02,"free":3088.38},{"epoch":26150912,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":565.05,"free":3089.35},{"epoch":26150913,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":565.02,"free":3089.39},{"epoch":26150914,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":564.99,"free":3089.42},{"epoch":26150915,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":565.95,"free":3088.47},{"epoch":26150916,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":566.59,"free":3087.83},{"epoch":26150917,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":566.12,"free":3088.3},{"epoch":26150918,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":566.09,"free":3088.32},{"epoch":26150919,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":566.34,"free":3088.04},{"epoch":26150920,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":566.34,"free":3088.06},{"epoch":26150921,"idl":99.67,"recv":0,"send":0,"writ":0.4,"used":566.43,"free":3087.96},{"epoch":26150922,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":565.23,"free":3089.15},{"epoch":26150923,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":565.3,"free":3089.08},{"epoch":26150924,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":565.35,"free":3089.03},{"epoch":26150925,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":566.05,"free":3088.34},{"epoch":26150926,"idl":99.68,"recv":0,"send":0,"writ":0.43,"used":566.39,"free":3087.99},{"epoch":26150927,"idl":99.84,"recv":0,"send":0.01,"writ":0.27,"used":566,"free":3088.38},{"epoch":26150928,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":565.96,"free":3088.41},{"epoch":26150929,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":566,"free":3088.37},{"epoch":26150930,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":566.59,"free":3087.8},{"epoch":26150931,"idl":99.72,"recv":0,"send":0,"writ":0.33,"used":566.82,"free":3087.56},{"epoch":26150932,"idl":99.84,"recv":0,"send":0,"writ":0.39,"used":566.03,"free":3088.34},{"epoch":26150933,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":565.99,"free":3088.38},{"epoch":26150934,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":565.96,"free":3088.41},{"epoch":26150935,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":565.25,"free":3089.14},{"epoch":26150936,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":565.32,"free":3089.06},{"epoch":26150937,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":566.53,"free":3087.85},{"epoch":26150938,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":566.3,"free":3088.08},{"epoch":26150939,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":566.26,"free":3088.11},{"epoch":26150940,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":566.25,"free":3088.14},{"epoch":26150941,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":566.22,"free":3088.17},{"epoch":26150942,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":565.85,"free":3088.53},{"epoch":26150943,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":565.34,"free":3089.03},{"epoch":26150944,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":565.31,"free":3089.06},{"epoch":26150945,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":565.78,"free":3088.6},{"epoch":26150946,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":565.76,"free":3088.64},{"epoch":26150947,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":566.21,"free":3088.18},{"epoch":26150948,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":565.95,"free":3088.44},{"epoch":26150949,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":566.23,"free":3088.15},{"epoch":26150950,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":566.1,"free":3088.3},{"epoch":26150951,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":566.06,"free":3088.34},{"epoch":26150952,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":566.78,"free":3087.61},{"epoch":26150953,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":566.24,"free":3088.15},{"epoch":26150954,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":566.21,"free":3088.19},{"epoch":26150955,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":566.2,"free":3088.22},{"epoch":26150956,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":566.28,"free":3088.14},{"epoch":26150957,"idl":99.69,"recv":0,"send":0,"writ":0.48,"used":566.76,"free":3087.66},{"epoch":26150958,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":566.28,"free":3088.13},{"epoch":26150959,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.14,"used":566.25,"free":3088.16},{"epoch":26150960,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":566.23,"free":3088.19},{"epoch":26150961,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":566.2,"free":3088.22},{"epoch":26150962,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":566.27,"free":3088.15},{"epoch":26150963,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":566.69,"free":3087.72},{"epoch":26150964,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":566.31,"free":3088.09},{"epoch":26150965,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":566.3,"free":3088.12},{"epoch":26150966,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":566.27,"free":3088.14},{"epoch":26150967,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":566.24,"free":3088.17},{"epoch":26150968,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":565.94,"free":3088.46},{"epoch":26150969,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":565.55,"free":3088.85},{"epoch":26150970,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":566.58,"free":3087.83},{"epoch":26150971,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":566.55,"free":3087.85},{"epoch":26150972,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":566.52,"free":3087.89},{"epoch":26150973,"idl":99.71,"recv":0,"send":0,"writ":0.53,"used":566.5,"free":3087.9},{"epoch":26150974,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":565.96,"free":3088.44},{"epoch":26150975,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":566.29,"free":3088.12},{"epoch":26150976,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":566.34,"free":3088.07},{"epoch":26150977,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":566.31,"free":3088.09},{"epoch":26150978,"idl":99.7,"recv":0,"send":0,"writ":0.4,"used":566.77,"free":3087.63},{"epoch":26150979,"idl":99.78,"recv":0,"send":0,"writ":0.52,"used":566.24,"free":3088.13},{"epoch":26150980,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":566.24,"free":3088.15},{"epoch":26150981,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":566.2,"free":3088.19},{"epoch":26150982,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":566.28,"free":3088.11},{"epoch":26150983,"idl":99.7,"recv":0,"send":0,"writ":0.51,"used":566.81,"free":3087.57},{"epoch":26150984,"idl":99.84,"recv":0,"send":0,"writ":0.22,"used":566.29,"free":3088.09},{"epoch":26150985,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":566.04,"free":3088.35},{"epoch":26150986,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":565.99,"free":3088.39},{"epoch":26150987,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.39,"used":565.86,"free":3088.52},{"epoch":26150988,"idl":99.66,"recv":0,"send":0,"writ":0.53,"used":566.18,"free":3088.2},{"epoch":26150989,"idl":99.86,"recv":0,"send":0,"writ":0.23,"used":566.31,"free":3088.05},{"epoch":26150990,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":566.54,"free":3087.84},{"epoch":26150991,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":566.35,"free":3088.02},{"epoch":26150992,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":565.98,"free":3088.39},{"epoch":26150993,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":565.94,"free":3088.43},{"epoch":26150994,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":565.31,"free":3089.05},{"epoch":26150995,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":566.28,"free":3088.1},{"epoch":26150996,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":566.29,"free":3088.08},{"epoch":26150997,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":566.27,"free":3088.11},{"epoch":26150998,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":566.24,"free":3088.13},{"epoch":26150999,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":566.57,"free":3087.79},{"epoch":26151000,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":566.2,"free":3088.18},{"epoch":26151001,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":566.25,"free":3088.13},{"epoch":26151002,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":566.31,"free":3088.08},{"epoch":26151003,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":565.92,"free":3088.47},{"epoch":26151004,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":565.93,"free":3088.45},{"epoch":26151005,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":565.51,"free":3088.89},{"epoch":26151006,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":565.47,"free":3088.93},{"epoch":26151007,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":565.43,"free":3088.96},{"epoch":26151008,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":565.52,"free":3088.87},{"epoch":26151009,"idl":99.62,"recv":0,"send":0,"writ":0.74,"used":566.01,"free":3088.34},{"epoch":26151010,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":565.31,"free":3089.05},{"epoch":26151011,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":565.27,"free":3089.09},{"epoch":26151012,"idl":99.79,"recv":0,"send":0,"writ":0.18,"used":565.23,"free":3089.12},{"epoch":26151013,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":565.2,"free":3089.16},{"epoch":26151014,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":565.69,"free":3088.66},{"epoch":26151015,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":565.83,"free":3088.53},{"epoch":26151016,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":565.79,"free":3088.57},{"epoch":26151017,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":565.77,"free":3088.59},{"epoch":26151018,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":565.74,"free":3088.62},{"epoch":26151019,"idl":99.69,"recv":0.01,"send":0.01,"writ":0.54,"used":566.04,"free":3088.31},{"epoch":26151020,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":565.43,"free":3088.93},{"epoch":26151021,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":565.54,"free":3088.82},{"epoch":26151022,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":565.55,"free":3088.8},{"epoch":26151023,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":565.52,"free":3088.83},{"epoch":26151024,"idl":99.7,"recv":0,"send":0,"writ":0.47,"used":565.81,"free":3088.54},{"epoch":26151025,"idl":99.72,"recv":0,"send":0,"writ":0.42,"used":565.08,"free":3089.28},{"epoch":26151026,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":564.95,"free":3089.41},{"epoch":26151027,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":565.02,"free":3089.33},{"epoch":26151028,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":565.06,"free":3089.28},{"epoch":26151029,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":565.03,"free":3089.32},{"epoch":26151030,"idl":99.61,"recv":0,"send":0,"writ":0.7,"used":566.08,"free":3088.28},{"epoch":26151031,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":565.73,"free":3088.63},{"epoch":26151032,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":565.7,"free":3088.65},{"epoch":26151033,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":565.67,"free":3088.68},{"epoch":26151034,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":565.71,"free":3088.63},{"epoch":26151035,"idl":96.66,"recv":0.02,"send":0.01,"writ":89.21,"used":577.94,"free":3078.65},{"epoch":26151036,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":568.32,"free":3086.23},{"epoch":26151037,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":568.35,"free":3086.2},{"epoch":26151038,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":568.43,"free":3086.11},{"epoch":26151039,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":568.14,"free":3086.36},{"epoch":26151040,"idl":99.75,"recv":0,"send":0,"writ":0.73,"used":567.05,"free":3087.51},{"epoch":26151041,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":565.94,"free":3088.62},{"epoch":26151042,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":565.9,"free":3088.66},{"epoch":26151043,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":565.87,"free":3088.69},{"epoch":26151044,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":565.95,"free":3088.6},{"epoch":26151045,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":566.38,"free":3088.21},{"epoch":26151046,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":565.99,"free":3088.6},{"epoch":26151047,"idl":99.9,"recv":0,"send":0.01,"writ":0.16,"used":565.95,"free":3088.63},{"epoch":26151048,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":565.92,"free":3088.66},{"epoch":26151049,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.89,"free":3088.68},{"epoch":26151050,"idl":99.77,"recv":0,"send":0,"writ":0.61,"used":566.17,"free":3088.42},{"epoch":26151051,"idl":99.92,"recv":0,"send":0,"writ":0.22,"used":565.92,"free":3088.67},{"epoch":26151052,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":565.55,"free":3089.04},{"epoch":26151053,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":565.51,"free":3089.07},{"epoch":26151054,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":565.48,"free":3089.1},{"epoch":26151055,"idl":99.76,"recv":0,"send":0,"writ":0.66,"used":565.98,"free":3088.61},{"epoch":26151056,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":564.94,"free":3089.65},{"epoch":26151057,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":564.93,"free":3089.65},{"epoch":26151058,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":565.07,"free":3089.51},{"epoch":26151059,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":565.04,"free":3089.53},{"epoch":26151060,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":565.9,"free":3088.69},{"epoch":26151061,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":565.49,"free":3089.1},{"epoch":26151062,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":565.46,"free":3089.13},{"epoch":26151063,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.42,"free":3089.16},{"epoch":26151064,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":565.44,"free":3089.13},{"epoch":26151065,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":566.29,"free":3088.3},{"epoch":26151066,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":566.54,"free":3088.05},{"epoch":26151067,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":566,"free":3088.58},{"epoch":26151068,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":565.96,"free":3088.61},{"epoch":26151069,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":566.18,"free":3088.38},{"epoch":26151070,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":565.93,"free":3088.64},{"epoch":26151071,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":566.33,"free":3088.24},{"epoch":26151072,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":566.01,"free":3088.55},{"epoch":26151073,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":566.01,"free":3088.55},{"epoch":26151074,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":565.97,"free":3088.59},{"epoch":26151075,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":566.19,"free":3088.38},{"epoch":26151076,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":566.51,"free":3088.05},{"epoch":26151077,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":566.13,"free":3088.43},{"epoch":26151078,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":566.23,"free":3088.33},{"epoch":26151079,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.18,"used":566.24,"free":3088.31},{"epoch":26151080,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":566.24,"free":3088.33},{"epoch":26151081,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":566.25,"free":3088.32},{"epoch":26151082,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":565.65,"free":3088.91},{"epoch":26151083,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":565.68,"free":3088.87},{"epoch":26151084,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":565.78,"free":3088.78},{"epoch":26151085,"idl":98.82,"recv":0,"send":0,"writ":15.42,"used":567.7,"free":3087.1},{"epoch":26151086,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":566.38,"free":3087.96},{"epoch":26151087,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":565.97,"free":3088.38},{"epoch":26151088,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":565.94,"free":3088.4},{"epoch":26151089,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":565.91,"free":3088.43},{"epoch":26151090,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":566.21,"free":3088.15},{"epoch":26151091,"idl":99.79,"recv":0,"send":0,"writ":0.47,"used":566.9,"free":3087.47},{"epoch":26151092,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":566.27,"free":3088.12},{"epoch":26151093,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":566.23,"free":3088.15},{"epoch":26151094,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":566.2,"free":3088.17},{"epoch":26151095,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":565.94,"free":3088.45},{"epoch":26151096,"idl":99.78,"recv":0,"send":0,"writ":0.47,"used":566.43,"free":3087.96},{"epoch":26151097,"idl":99.91,"recv":0,"send":0,"writ":0.34,"used":566,"free":3088.38},{"epoch":26151098,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":566.06,"free":3088.32},{"epoch":26151099,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":566.27,"free":3088.11},{"epoch":26151100,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":566.02,"free":3088.37},{"epoch":26151101,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":565.99,"free":3088.4},{"epoch":26151102,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":566.65,"free":3087.73},{"epoch":26151103,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":566.17,"free":3088.21},{"epoch":26151104,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":566.24,"free":3088.13},{"epoch":26151105,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":565.65,"free":3088.74},{"epoch":26151106,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":565.54,"free":3088.85},{"epoch":26151107,"idl":99.8,"recv":0,"send":0.01,"writ":0.55,"used":565.28,"free":3089.1},{"epoch":26151108,"idl":97.1,"recv":0,"send":0,"writ":16.55,"used":569.78,"free":3084.76},{"epoch":26151109,"idl":99.91,"recv":0,"send":0,"writ":32.13,"used":568.38,"free":3088.63},{"epoch":26151110,"idl":99.84,"recv":0,"send":0,"writ":0.39,"used":567.9,"free":3089.12},{"epoch":26151111,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":567.93,"free":3089.1},{"epoch":26151112,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":568.86,"free":3088.15},{"epoch":26151113,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":568.15,"free":3088.87},{"epoch":26151114,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":566.03,"free":3091.03},{"epoch":26151115,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":566.27,"free":3090.81},{"epoch":26151116,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":566.24,"free":3090.84},{"epoch":26151117,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":566.26,"free":3090.82},{"epoch":26151118,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":565.8,"free":3091.27},{"epoch":26151119,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":565.85,"free":3091.23},{"epoch":26151120,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":566.08,"free":3091.02},{"epoch":26151121,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":566.05,"free":3091.05},{"epoch":26151122,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":566.47,"free":3090.62},{"epoch":26151123,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":566.23,"free":3090.86},{"epoch":26151124,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":566.2,"free":3090.89},{"epoch":26151125,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":566.56,"free":3090.54},{"epoch":26151126,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":566.59,"free":3090.51},{"epoch":26151127,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":567.21,"free":3089.89},{"epoch":26151128,"idl":99.08,"recv":0,"send":0,"writ":0.15,"used":566.28,"free":3090.81},{"epoch":26151129,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":566,"free":3091.06},{"epoch":26151130,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":566.23,"free":3090.85},{"epoch":26151131,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":566.2,"free":3090.88},{"epoch":26151132,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":566.68,"free":3090.39},{"epoch":26151133,"idl":99.94,"recv":0,"send":0,"writ":0.36,"used":566.32,"free":3090.74},{"epoch":26151134,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":566.29,"free":3090.77},{"epoch":26151135,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":566.76,"free":3090.32},{"epoch":26151136,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":566.74,"free":3090.34},{"epoch":26151137,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":566.81,"free":3090.27},{"epoch":26151138,"idl":99.92,"recv":0,"send":0,"writ":0.38,"used":566.25,"free":3090.82},{"epoch":26151139,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.14,"used":566.34,"free":3090.72},{"epoch":26151140,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":566.56,"free":3090.52},{"epoch":26151141,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.53,"free":3090.55},{"epoch":26151142,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":566.5,"free":3090.57},{"epoch":26151143,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":566.59,"free":3090.48},{"epoch":26151144,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":566.19,"free":3090.88},{"epoch":26151145,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":566.3,"free":3090.77},{"epoch":26151146,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":566.35,"free":3090.72},{"epoch":26151147,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":566.32,"free":3090.75},{"epoch":26151148,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":567.03,"free":3090.04},{"epoch":26151149,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":566.51,"free":3090.55},{"epoch":26151150,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":566.5,"free":3090.57},{"epoch":26151151,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":566.53,"free":3090.55},{"epoch":26151152,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":566.6,"free":3090.47},{"epoch":26151153,"idl":99.82,"recv":0,"send":0,"writ":0.57,"used":566.92,"free":3090.14},{"epoch":26151154,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.54,"free":3090.52},{"epoch":26151155,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":566.53,"free":3090.55},{"epoch":26151156,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.5,"free":3090.57},{"epoch":26151157,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":566.47,"free":3090.6},{"epoch":26151158,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":566.4,"free":3090.66},{"epoch":26151159,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":565.87,"free":3091.17},{"epoch":26151160,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":565.84,"free":3091.22},{"epoch":26151161,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":565.79,"free":3091.26},{"epoch":26151162,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":565.76,"free":3091.29},{"epoch":26151163,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":566.41,"free":3090.64},{"epoch":26151164,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":565.69,"free":3091.34},{"epoch":26151165,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":565.79,"free":3091.26},{"epoch":26151166,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.84,"free":3091.21},{"epoch":26151167,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.18,"used":565.8,"free":3091.24},{"epoch":26151168,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":566.11,"free":3090.93},{"epoch":26151169,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.74,"free":3091.3},{"epoch":26151170,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":565.73,"free":3091.33},{"epoch":26151171,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":565.74,"free":3091.31},{"epoch":26151172,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":565.59,"free":3091.46},{"epoch":26151173,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":565.94,"free":3091.1},{"epoch":26151174,"idl":99.91,"recv":0,"send":0,"writ":0.38,"used":566.26,"free":3090.78},{"epoch":26151175,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":565.76,"free":3091.29},{"epoch":26151176,"idl":99.92,"recv":0.02,"send":0.97,"writ":0.29,"used":565.78,"free":3091.27},{"epoch":26151177,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":565.75,"free":3091.29},{"epoch":26151178,"idl":99.75,"recv":0,"send":0.02,"writ":0.31,"used":566.08,"free":3090.95},{"epoch":26151179,"idl":99.94,"recv":0,"send":0,"writ":0.38,"used":566.49,"free":3090.54},{"epoch":26151180,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":566.57,"free":3090.48},{"epoch":26151181,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.54,"free":3090.51},{"epoch":26151182,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":566.5,"free":3090.53},{"epoch":26151183,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":566.47,"free":3090.57},{"epoch":26151184,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":566.35,"free":3090.68},{"epoch":26151185,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":566.46,"free":3090.58},{"epoch":26151186,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.57,"free":3090.47},{"epoch":26151187,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":566.53,"free":3090.5},{"epoch":26151188,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.5,"free":3090.53},{"epoch":26151189,"idl":99.71,"recv":0,"send":0,"writ":0.7,"used":566.78,"free":3090.23},{"epoch":26151190,"idl":99.87,"recv":0,"send":0,"writ":0.35,"used":566.45,"free":3090.56},{"epoch":26151191,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":566.48,"free":3090.54},{"epoch":26151192,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":566.58,"free":3090.43},{"epoch":26151193,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":566.54,"free":3090.46},{"epoch":26151194,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":566.86,"free":3090.14},{"epoch":26151195,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":566.25,"free":3090.76},{"epoch":26151196,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":566.21,"free":3090.8},{"epoch":26151197,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":566.18,"free":3090.83},{"epoch":26151198,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":566.26,"free":3090.74},{"epoch":26151199,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.48,"used":566.93,"free":3090.06},{"epoch":26151200,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":565.84,"free":3091.18},{"epoch":26151201,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":565.66,"free":3091.36},{"epoch":26151202,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":565.51,"free":3091.52},{"epoch":26151203,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":565.48,"free":3091.55},{"epoch":26151204,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":566.62,"free":3090.39},{"epoch":26151205,"idl":99.83,"recv":0,"send":0,"writ":0.41,"used":566.64,"free":3090.39},{"epoch":26151206,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":566.56,"free":3090.47},{"epoch":26151207,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":566.53,"free":3090.49},{"epoch":26151208,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":566.5,"free":3090.52},{"epoch":26151209,"idl":99.78,"recv":0,"send":0,"writ":0.48,"used":566.82,"free":3090.2},{"epoch":26151210,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":566.46,"free":3090.57},{"epoch":26151211,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":566.53,"free":3090.49},{"epoch":26151212,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":566.58,"free":3090.44},{"epoch":26151213,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.54,"free":3090.47},{"epoch":26151214,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":566.91,"free":3090.11},{"epoch":26151215,"idl":99.89,"recv":0,"send":0,"writ":0.41,"used":566.76,"free":3090.27},{"epoch":26151216,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.71,"free":3090.32},{"epoch":26151217,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":566.68,"free":3090.35},{"epoch":26151218,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.77,"free":3090.25},{"epoch":26151219,"idl":99.74,"recv":0.01,"send":0.02,"writ":0.52,"used":567.13,"free":3089.86},{"epoch":26151220,"idl":99.85,"recv":0,"send":0,"writ":0.52,"used":566.25,"free":3090.76},{"epoch":26151221,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":566.33,"free":3090.67},{"epoch":26151222,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":566.3,"free":3090.7},{"epoch":26151223,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":566.27,"free":3090.73},{"epoch":26151224,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.05,"free":3090.96},{"epoch":26151225,"idl":99.73,"recv":0,"send":0,"writ":0.69,"used":567.02,"free":3090.01},{"epoch":26151226,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":566.45,"free":3090.57},{"epoch":26151227,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.14,"used":566.47,"free":3090.55},{"epoch":26151228,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":566.57,"free":3090.44},{"epoch":26151229,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":566.54,"free":3090.47},{"epoch":26151230,"idl":99.75,"recv":0,"send":0,"writ":0.7,"used":566.89,"free":3090.14},{"epoch":26151231,"idl":99.9,"recv":0,"send":0,"writ":0.23,"used":566.45,"free":3090.58},{"epoch":26151232,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.2,"free":3090.81},{"epoch":26151233,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":566.17,"free":3090.84},{"epoch":26151234,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":566.24,"free":3090.76},{"epoch":26151235,"idl":99.75,"recv":0,"send":0,"writ":0.78,"used":566.15,"free":3090.87},{"epoch":26151236,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":565.28,"free":3091.74},{"epoch":26151237,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":565.24,"free":3091.77},{"epoch":26151238,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.21,"free":3091.79},{"epoch":26151239,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":565.23,"free":3091.77},{"epoch":26151240,"idl":99.72,"recv":0,"send":0,"writ":0.7,"used":567.38,"free":3089.64},{"epoch":26151241,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":566.58,"free":3090.43},{"epoch":26151242,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":566.56,"free":3090.46},{"epoch":26151243,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":566.53,"free":3090.48},{"epoch":26151244,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":566.5,"free":3090.51},{"epoch":26151245,"idl":99.77,"recv":0,"send":0,"writ":0.69,"used":566.92,"free":3090.11},{"epoch":26151246,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":566.2,"free":3090.81},{"epoch":26151247,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":566.24,"free":3090.77},{"epoch":26151248,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":566.32,"free":3090.68},{"epoch":26151249,"idl":99.82,"recv":0.01,"send":0.02,"writ":0.32,"used":566.72,"free":3090.26},{"epoch":26151250,"idl":99.74,"recv":0,"send":0,"writ":0.66,"used":566.97,"free":3090.05},{"epoch":26151251,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":566.4,"free":3090.61},{"epoch":26151252,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.51,"free":3090.49},{"epoch":26151253,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":566.51,"free":3090.49},{"epoch":26151254,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":566.48,"free":3090.52},{"epoch":26151255,"idl":99.75,"recv":0,"send":0,"writ":0.73,"used":567.23,"free":3089.79},{"epoch":26151256,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":566.68,"free":3090.33},{"epoch":26151257,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":566.64,"free":3090.36},{"epoch":26151258,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":566.74,"free":3090.26},{"epoch":26151259,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.14,"used":566.76,"free":3090.24},{"epoch":26151260,"idl":99.87,"recv":0,"send":0,"writ":0.26,"used":567.07,"free":3089.94},{"epoch":26151261,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":566.85,"free":3090.16},{"epoch":26151262,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":566.45,"free":3090.56},{"epoch":26151263,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":566.41,"free":3090.6},{"epoch":26151264,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":566.47,"free":3090.53},{"epoch":26151265,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":566.07,"free":3090.95},{"epoch":26151266,"idl":99.75,"recv":0,"send":0,"writ":0.53,"used":566.83,"free":3090.18},{"epoch":26151267,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":566.46,"free":3090.54},{"epoch":26151268,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.44,"free":3090.57},{"epoch":26151269,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":566.41,"free":3090.59},{"epoch":26151270,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":566.94,"free":3090.07},{"epoch":26151271,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":566.99,"free":3090.02},{"epoch":26151272,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":566.51,"free":3090.49},{"epoch":26151273,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":566.48,"free":3090.53},{"epoch":26151274,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":566.44,"free":3090.58},{"epoch":26151275,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":566.91,"free":3090.12},{"epoch":26151276,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":567.09,"free":3089.94},{"epoch":26151277,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":566.24,"free":3090.79},{"epoch":26151278,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":566.26,"free":3090.76},{"epoch":26151279,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":567.21,"free":3089.79},{"epoch":26151280,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":566.97,"free":3090.04},{"epoch":26151281,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":567.45,"free":3089.56},{"epoch":26151282,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":566.89,"free":3090.12},{"epoch":26151283,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":566.93,"free":3090.07},{"epoch":26151284,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":567.05,"free":3089.96},{"epoch":26151285,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":566.55,"free":3090.48},{"epoch":26151286,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":566.94,"free":3090.09},{"epoch":26151287,"idl":99.43,"recv":0,"send":0.01,"writ":0.18,"used":566.72,"free":3090.3},{"epoch":26151288,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":566.69,"free":3090.33},{"epoch":26151289,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":566.66,"free":3090.36},{"epoch":26151290,"idl":99.87,"recv":0,"send":0,"writ":0.35,"used":567,"free":3090.03},{"epoch":26151291,"idl":99.72,"recv":0,"send":0,"writ":0.43,"used":567.33,"free":3089.7},{"epoch":26151292,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":566.5,"free":3090.51},{"epoch":26151293,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":566.47,"free":3090.55},{"epoch":26151294,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":566.44,"free":3090.57},{"epoch":26151295,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":565.94,"free":3091.08},{"epoch":26151296,"idl":99.79,"recv":0,"send":0,"writ":0.46,"used":566.34,"free":3090.68},{"epoch":26151297,"idl":99.94,"recv":0,"send":0,"writ":0.22,"used":566.79,"free":3090.23},{"epoch":26151298,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":566.75,"free":3090.26},{"epoch":26151299,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":566.72,"free":3090.29},{"epoch":26151300,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":566.7,"free":3090.32},{"epoch":26151301,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.67,"free":3090.35},{"epoch":26151302,"idl":99.79,"recv":0,"send":0,"writ":0.61,"used":566.99,"free":3090.04},{"epoch":26151303,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":566.72,"free":3090.31},{"epoch":26151304,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":566.77,"free":3090.25},{"epoch":26151305,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":567.29,"free":3089.75},{"epoch":26151306,"idl":99.54,"recv":0,"send":0,"writ":0.3,"used":567.62,"free":3089.41},{"epoch":26151307,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":567.69,"free":3089.35},{"epoch":26151308,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.88,"free":3090.16},{"epoch":26151309,"idl":99.87,"recv":0,"send":0,"writ":0.35,"used":566.95,"free":3090.06},{"epoch":26151310,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":566.55,"free":3090.48},{"epoch":26151311,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":566.5,"free":3090.53},{"epoch":26151312,"idl":99.78,"recv":0,"send":0,"writ":0.52,"used":566.93,"free":3090.09},{"epoch":26151313,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":566.44,"free":3090.58},{"epoch":26151314,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":566.4,"free":3090.61},{"epoch":26151315,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":566.64,"free":3090.39},{"epoch":26151316,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":566.71,"free":3090.32},{"epoch":26151317,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":566.88,"free":3090.14},{"epoch":26151318,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":566.48,"free":3090.54},{"epoch":26151319,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.14,"used":566.44,"free":3090.58},{"epoch":26151320,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":566.67,"free":3090.36},{"epoch":26151321,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":566.64,"free":3090.38},{"epoch":26151322,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":566.96,"free":3090.06},{"epoch":26151323,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.51,"free":3090.5},{"epoch":26151324,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":566.48,"free":3090.53},{"epoch":26151325,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":565.99,"free":3091.04},{"epoch":26151326,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":565.94,"free":3091.08},{"epoch":26151327,"idl":99.8,"recv":0,"send":0,"writ":0.45,"used":566.13,"free":3090.89},{"epoch":26151328,"idl":99.94,"recv":0,"send":0,"writ":0.29,"used":565.38,"free":3091.63},{"epoch":26151329,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":565.52,"free":3091.49},{"epoch":26151330,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":566.52,"free":3090.51},{"epoch":26151331,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":566.5,"free":3090.52},{"epoch":26151332,"idl":99.77,"recv":0,"send":0,"writ":0.39,"used":567.07,"free":3089.95},{"epoch":26151333,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":564.71,"free":3092.31},{"epoch":26151334,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":564.66,"free":3092.34},{"epoch":26151335,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":565.99,"free":3091.04},{"epoch":26151336,"idl":99.92,"recv":0,"send":0.01,"writ":0.19,"used":566.02,"free":3091},{"epoch":26151337,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":565.98,"free":3091.04},{"epoch":26151338,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":567.33,"free":3089.68},{"epoch":26151339,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":566.65,"free":3090.34},{"epoch":26151340,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":565.92,"free":3091.08},{"epoch":26151341,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":565.98,"free":3091.02},{"epoch":26151342,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":566.02,"free":3090.97},{"epoch":26151343,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":567.19,"free":3089.8},{"epoch":26151344,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":566.69,"free":3090.32},{"epoch":26151345,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":566.68,"free":3090.35},{"epoch":26151346,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":566.64,"free":3090.39},{"epoch":26151347,"idl":99.93,"recv":0,"send":0.01,"writ":0.16,"used":566.67,"free":3090.35},{"epoch":26151348,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":567.17,"free":3089.85},{"epoch":26151349,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":566.48,"free":3090.54},{"epoch":26151350,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":566.95,"free":3090.08},{"epoch":26151351,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":566.88,"free":3090.15},{"epoch":26151352,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":566.4,"free":3090.62},{"epoch":26151353,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":566.33,"free":3090.68},{"epoch":26151354,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":565.21,"free":3091.8},{"epoch":26151355,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":566.02,"free":3091.01},{"epoch":26151356,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":566,"free":3091.03},{"epoch":26151357,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":565.96,"free":3091.06},{"epoch":26151358,"idl":99.78,"recv":0,"send":0,"writ":0.49,"used":566.41,"free":3090.61},{"epoch":26151359,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":566.39,"free":3090.63},{"epoch":26151360,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":566.38,"free":3090.65},{"epoch":26151361,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":566.44,"free":3090.58},{"epoch":26151362,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":566.5,"free":3090.52},{"epoch":26151363,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":566.89,"free":3090.13},{"epoch":26151364,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":566.69,"free":3090.32},{"epoch":26151365,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":566.94,"free":3090.08},{"epoch":26151366,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":566.88,"free":3090.14},{"epoch":26151367,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":566.85,"free":3090.16},{"epoch":26151368,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":567.56,"free":3089.45},{"epoch":26151369,"idl":99.87,"recv":0,"send":0,"writ":0.5,"used":566.46,"free":3090.52},{"epoch":26151370,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":566.23,"free":3090.78},{"epoch":26151371,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":566.18,"free":3090.81},{"epoch":26151372,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":566.15,"free":3090.85},{"epoch":26151373,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":566.11,"free":3090.88},{"epoch":26151374,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":566.87,"free":3090.11},{"epoch":26151375,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":566.87,"free":3090.12},{"epoch":26151376,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":566.74,"free":3090.26},{"epoch":26151377,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":566.71,"free":3090.28},{"epoch":26151378,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":566.68,"free":3090.31},{"epoch":26151379,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.54,"used":567.21,"free":3089.77},{"epoch":26151380,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":566.87,"free":3090.13},{"epoch":26151381,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":566.94,"free":3090.06},{"epoch":26151382,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":566.99,"free":3090},{"epoch":26151383,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":566.95,"free":3090.04},{"epoch":26151384,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":566.72,"free":3090.26},{"epoch":26151385,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":566.41,"free":3090.59},{"epoch":26151386,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":566.38,"free":3090.61},{"epoch":26151387,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":566.35,"free":3090.64},{"epoch":26151388,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":566.45,"free":3090.54},{"epoch":26151389,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":567.11,"free":3089.88},{"epoch":26151390,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":566.96,"free":3090.05},{"epoch":26151391,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":566.93,"free":3090.07},{"epoch":26151392,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":566.9,"free":3090.1},{"epoch":26151393,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":566.86,"free":3090.13},{"epoch":26151394,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":567.16,"free":3089.83},{"epoch":26151395,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":566.98,"free":3090.01},{"epoch":26151396,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":566.95,"free":3090.04},{"epoch":26151397,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":566.92,"free":3090.07},{"epoch":26151398,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":566.88,"free":3090.1},{"epoch":26151399,"idl":94.9,"recv":0.28,"send":0.01,"writ":77.84,"used":579.92,"free":3077.2},{"epoch":26151400,"idl":99.64,"recv":0,"send":0,"writ":180.22,"used":569.28,"free":3087.85},{"epoch":26151401,"idl":99.89,"recv":0,"send":0,"writ":0.23,"used":569.35,"free":3087.78},{"epoch":26151402,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":569.39,"free":3087.73},{"epoch":26151403,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":569.36,"free":3087.76},{"epoch":26151404,"idl":99.72,"recv":0,"send":0,"writ":0.42,"used":569.54,"free":3087.58},{"epoch":26151405,"idl":99.83,"recv":0,"send":0,"writ":0.43,"used":567.16,"free":3090.01},{"epoch":26151406,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":567.13,"free":3090.04},{"epoch":26151407,"idl":99.89,"recv":0,"send":0.01,"writ":0.14,"used":567.1,"free":3090.06},{"epoch":26151408,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":567.18,"free":3089.98},{"epoch":26151409,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":567.57,"free":3089.58},{"epoch":26151410,"idl":99.88,"recv":0,"send":0,"writ":0.54,"used":566.71,"free":3090.48},{"epoch":26151411,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":566.67,"free":3090.54},{"epoch":26151412,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":566.4,"free":3090.81},{"epoch":26151413,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":566.36,"free":3090.85},{"epoch":26151414,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":566.33,"free":3090.87},{"epoch":26151415,"idl":99.7,"recv":0,"send":0,"writ":0.68,"used":567.03,"free":3090.19},{"epoch":26151416,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":566.73,"free":3090.49},{"epoch":26151417,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":566.7,"free":3090.51},{"epoch":26151418,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":566.66,"free":3090.54},{"epoch":26151419,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":566.62,"free":3090.59},{"epoch":26151420,"idl":99.61,"recv":0,"send":0,"writ":0.7,"used":566.82,"free":3090.4},{"epoch":26151421,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":566.49,"free":3090.72},{"epoch":26151422,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":566.45,"free":3090.76},{"epoch":26151423,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":566.42,"free":3090.78},{"epoch":26151424,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":566.39,"free":3090.81},{"epoch":26151425,"idl":99.66,"recv":0,"send":0,"writ":0.6,"used":567.15,"free":3090.06},{"epoch":26151426,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":566.83,"free":3090.38},{"epoch":26151427,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":566.92,"free":3090.28},{"epoch":26151428,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":566.95,"free":3090.25},{"epoch":26151429,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":567.17,"free":3090.01},{"epoch":26151430,"idl":99.67,"recv":0,"send":0,"writ":0.66,"used":567.81,"free":3089.38},{"epoch":26151431,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":567.37,"free":3089.82},{"epoch":26151432,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":567.34,"free":3089.85},{"epoch":26151433,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":567.31,"free":3089.88},{"epoch":26151434,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":567.43,"free":3089.75},{"epoch":26151435,"idl":99.67,"recv":0,"send":0,"writ":0.7,"used":567.35,"free":3089.84},{"epoch":26151436,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":567.2,"free":3090},{"epoch":26151437,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.2,"used":567.15,"free":3090.04},{"epoch":26151438,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":567.09,"free":3090.09},{"epoch":26151439,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.14,"used":567.17,"free":3090.01},{"epoch":26151440,"idl":99.68,"recv":0,"send":0,"writ":0.46,"used":567.32,"free":3089.88},{"epoch":26151441,"idl":99.79,"recv":0,"send":0,"writ":0.38,"used":566.69,"free":3090.5},{"epoch":26151442,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":566.64,"free":3090.55},{"epoch":26151443,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":566.6,"free":3090.58},{"epoch":26151444,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":566.66,"free":3090.52},{"epoch":26151445,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":567.22,"free":3089.97},{"epoch":26151446,"idl":99.71,"recv":0,"send":0,"writ":0.53,"used":567.33,"free":3089.86},{"epoch":26151447,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":566.91,"free":3090.28},{"epoch":26151448,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":566.87,"free":3090.31},{"epoch":26151449,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":566.84,"free":3090.34},{"epoch":26151450,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":566.84,"free":3090.36},{"epoch":26151451,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":567.97,"free":3089.22},{"epoch":26151452,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":567.69,"free":3089.5},{"epoch":26151453,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":567.65,"free":3089.53},{"epoch":26151454,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":567.62,"free":3089.56},{"epoch":26151455,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":567.36,"free":3089.83},{"epoch":26151456,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":568,"free":3089.2},{"epoch":26151457,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":567.41,"free":3089.79},{"epoch":26151458,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":567.46,"free":3089.74},{"epoch":26151459,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":566.92,"free":3090.25},{"epoch":26151460,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":567.39,"free":3089.8},{"epoch":26151461,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":567.71,"free":3089.47},{"epoch":26151462,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":567.1,"free":3090.08},{"epoch":26151463,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":567.07,"free":3090.11},{"epoch":26151464,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":567.09,"free":3090.08},{"epoch":26151465,"idl":99.8,"recv":0,"send":0,"writ":0.42,"used":567.22,"free":3089.97},{"epoch":26151466,"idl":99.71,"recv":0,"send":0,"writ":0.52,"used":567.53,"free":3089.65},{"epoch":26151467,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.2,"used":566.73,"free":3090.46},{"epoch":26151468,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":566.37,"free":3090.81},{"epoch":26151469,"idl":97.94,"recv":0,"send":0,"writ":0.16,"used":566.34,"free":3090.84},{"epoch":26151470,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":566.37,"free":3090.82},{"epoch":26151471,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":566.86,"free":3090.33},{"epoch":26151472,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":566.44,"free":3090.74},{"epoch":26151473,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":566.2,"free":3090.98},{"epoch":26151474,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":566.12,"free":3091.05},{"epoch":26151475,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":566.83,"free":3090.36},{"epoch":26151476,"idl":99.74,"recv":0,"send":0,"writ":0.43,"used":567.09,"free":3090.1},{"epoch":26151477,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":566.36,"free":3090.82},{"epoch":26151478,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":566.49,"free":3090.69},{"epoch":26151479,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":566.46,"free":3090.72},{"epoch":26151480,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":566.69,"free":3090.5},{"epoch":26151481,"idl":99.73,"recv":0,"send":0,"writ":0.31,"used":567.01,"free":3090.17},{"epoch":26151482,"idl":99.82,"recv":0,"send":0,"writ":0.41,"used":566.87,"free":3090.31},{"epoch":26151483,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":566.84,"free":3090.34},{"epoch":26151484,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":566.86,"free":3090.31},{"epoch":26151485,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":566.74,"free":3090.44},{"epoch":26151486,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":566.7,"free":3090.48},{"epoch":26151487,"idl":99.67,"recv":0,"send":0,"writ":0.56,"used":567.03,"free":3090.15},{"epoch":26151488,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":566.63,"free":3090.55},{"epoch":26151489,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":566.85,"free":3090.3},{"epoch":26151490,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":567.09,"free":3090.08},{"epoch":26151491,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":567.16,"free":3090},{"epoch":26151492,"idl":99.69,"recv":0,"send":0,"writ":0.53,"used":567.23,"free":3089.93},{"epoch":26151493,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":566.68,"free":3090.47},{"epoch":26151494,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":566.65,"free":3090.5},{"epoch":26151495,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":566.9,"free":3090.27},{"epoch":26151496,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":566.86,"free":3090.3},{"epoch":26151497,"idl":99.71,"recv":0,"send":0,"writ":0.47,"used":567.54,"free":3089.62},{"epoch":26151498,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":566.9,"free":3090.25},{"epoch":26151499,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.14,"used":566.95,"free":3090.2},{"epoch":26151500,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":566.7,"free":3090.47},{"epoch":26151501,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":566.65,"free":3090.51},{"epoch":26151502,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":567.21,"free":3089.94},{"epoch":26151503,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":567.07,"free":3090.08},{"epoch":26151504,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":567.1,"free":3090.05},{"epoch":26151505,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":566.98,"free":3090.18},{"epoch":26151506,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":566.93,"free":3090.23},{"epoch":26151507,"idl":99.69,"recv":0,"send":0,"writ":0.42,"used":567.24,"free":3089.91},{"epoch":26151508,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":566.86,"free":3090.29},{"epoch":26151509,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":566.83,"free":3090.32},{"epoch":26151510,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":566.57,"free":3090.59},{"epoch":26151511,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":566.66,"free":3090.5},{"epoch":26151512,"idl":99.72,"recv":0,"send":0,"writ":0.43,"used":567.04,"free":3090.11},{"epoch":26151513,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":566.65,"free":3090.5},{"epoch":26151514,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":566.61,"free":3090.53},{"epoch":26151515,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":566.37,"free":3090.79},{"epoch":26151516,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":566.33,"free":3090.83},{"epoch":26151517,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":566.36,"free":3090.79},{"epoch":26151518,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":566.81,"free":3090.34},{"epoch":26151519,"idl":99.79,"recv":0,"send":0,"writ":0.38,"used":566.7,"free":3090.43},{"epoch":26151520,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":566.9,"free":3090.24},{"epoch":26151521,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":566.86,"free":3090.28},{"epoch":26151522,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":566.84,"free":3090.3},{"epoch":26151523,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":567.3,"free":3089.83},{"epoch":26151524,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":566.6,"free":3090.52},{"epoch":26151525,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":567.27,"free":3089.87},{"epoch":26151526,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":567.2,"free":3089.94},{"epoch":26151527,"idl":99.86,"recv":0,"send":0.01,"writ":0.14,"used":567.16,"free":3089.97},{"epoch":26151528,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":567.57,"free":3089.56},{"epoch":26151529,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":567.09,"free":3090.03},{"epoch":26151530,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":567.09,"free":3090.06},{"epoch":26151531,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":567.15,"free":3089.99},{"epoch":26151532,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":566.96,"free":3090.18},{"epoch":26151533,"idl":99.72,"recv":0,"send":0,"writ":0.4,"used":567.39,"free":3089.74},{"epoch":26151534,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":567.13,"free":3089.99},{"epoch":26151535,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":565.7,"free":3091.46},{"epoch":26151536,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":565.61,"free":3091.55},{"epoch":26151537,"idl":99.83,"recv":0,"send":0,"writ":0.12,"used":565.63,"free":3091.52},{"epoch":26151538,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":566.47,"free":3090.68},{"epoch":26151539,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":566.93,"free":3090.21},{"epoch":26151540,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":567.16,"free":3089.99},{"epoch":26151541,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":567.13,"free":3090.02},{"epoch":26151542,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":567.1,"free":3090.05},{"epoch":26151543,"idl":99.72,"recv":0,"send":0,"writ":0.4,"used":567.72,"free":3089.42},{"epoch":26151544,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":567.08,"free":3090.05},{"epoch":26151545,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":566.49,"free":3090.67},{"epoch":26151546,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":566.44,"free":3090.71},{"epoch":26151547,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":566.41,"free":3090.73},{"epoch":26151548,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":566.38,"free":3090.76},{"epoch":26151549,"idl":99.6,"recv":0,"send":0,"writ":0.68,"used":567.41,"free":3089.7},{"epoch":26151550,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":567.31,"free":3089.82},{"epoch":26151551,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":567.37,"free":3089.75},{"epoch":26151552,"idl":99.58,"recv":0,"send":0,"writ":0.15,"used":567.32,"free":3089.81},{"epoch":26151553,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":567.14,"free":3089.98},{"epoch":26151554,"idl":99.71,"recv":0,"send":0,"writ":0.53,"used":567.46,"free":3089.66},{"epoch":26151555,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":567.1,"free":3090.03},{"epoch":26151556,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":567.06,"free":3090.07},{"epoch":26151557,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":566.78,"free":3090.34},{"epoch":26151558,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":566.9,"free":3090.22},{"epoch":26151559,"idl":99.72,"recv":0.01,"send":0.01,"writ":0.55,"used":567.25,"free":3089.89},{"epoch":26151560,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":566.89,"free":3090.26},{"epoch":26151561,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":566.85,"free":3090.29},{"epoch":26151562,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":566.82,"free":3090.32},{"epoch":26151563,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":566.79,"free":3090.34},{"epoch":26151564,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":567.02,"free":3090.11},{"epoch":26151565,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":567.18,"free":3089.97},{"epoch":26151566,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":567.15,"free":3089.99},{"epoch":26151567,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":567.12,"free":3090.02},{"epoch":26151568,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":567.09,"free":3090.05},{"epoch":26151569,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":567.91,"free":3089.22},{"epoch":26151570,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":567.06,"free":3090.09},{"epoch":26151571,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":567.02,"free":3090.12},{"epoch":26151572,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":567.14,"free":3090},{"epoch":26151573,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":567.17,"free":3089.96},{"epoch":26151574,"idl":99.73,"recv":0,"send":0,"writ":0.44,"used":567.79,"free":3089.34},{"epoch":26151575,"idl":99.79,"recv":0,"send":0,"writ":0.45,"used":567.13,"free":3090.02},{"epoch":26151576,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":567.09,"free":3090.05},{"epoch":26151577,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":567.06,"free":3090.08},{"epoch":26151578,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":567.09,"free":3090.05},{"epoch":26151579,"idl":99.66,"recv":0,"send":0,"writ":0.71,"used":567.7,"free":3089.41},{"epoch":26151580,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":567.5,"free":3089.62},{"epoch":26151581,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":567.37,"free":3089.74},{"epoch":26151582,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":567.34,"free":3089.78},{"epoch":26151583,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":567.3,"free":3089.81},{"epoch":26151584,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":567.27,"free":3089.84},{"epoch":26151585,"idl":99.66,"recv":0,"send":0,"writ":0.68,"used":567.77,"free":3089.36},{"epoch":26151586,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":567.41,"free":3089.71},{"epoch":26151587,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.14,"used":567.36,"free":3089.75},{"epoch":26151588,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":567.33,"free":3089.78},{"epoch":26151589,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":567.29,"free":3089.81},{"epoch":26151590,"idl":95.75,"recv":0,"send":0,"writ":0.67,"used":567.42,"free":3089.72},{"epoch":26151591,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":567.16,"free":3089.98},{"epoch":26151592,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":566.7,"free":3090.43},{"epoch":26151593,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":566.65,"free":3090.48},{"epoch":26151594,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":566.62,"free":3090.51},{"epoch":26151595,"idl":99.74,"recv":0,"send":0,"writ":0.7,"used":567.45,"free":3089.7},{"epoch":26151596,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":567.06,"free":3090.07},{"epoch":26151597,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":567.03,"free":3090.1},{"epoch":26151598,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":567.13,"free":3090.02},{"epoch":26151599,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":567.16,"free":3089.98},{"epoch":26151600,"idl":99.75,"recv":0,"send":0,"writ":0.6,"used":567.75,"free":3089.41},{"epoch":26151601,"idl":99.94,"recv":0,"send":0,"writ":0.25,"used":567.37,"free":3089.79},{"epoch":26151602,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":567.34,"free":3089.81},{"epoch":26151603,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":567.31,"free":3089.84},{"epoch":26151604,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":567.27,"free":3089.88},{"epoch":26151605,"idl":99.77,"recv":0,"send":0,"writ":0.64,"used":567.87,"free":3089.29},{"epoch":26151606,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":566.91,"free":3090.24},{"epoch":26151607,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.87,"free":3090.28},{"epoch":26151608,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":566.84,"free":3090.31},{"epoch":26151609,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":567.53,"free":3089.59},{"epoch":26151610,"idl":99.78,"recv":0,"send":0,"writ":0.71,"used":568.06,"free":3089.07},{"epoch":26151611,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":567.34,"free":3089.78},{"epoch":26151612,"idl":99.6,"recv":0,"send":0,"writ":0.14,"used":567.38,"free":3089.74},{"epoch":26151613,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":567.35,"free":3089.77},{"epoch":26151614,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":567.31,"free":3089.82},{"epoch":26151615,"idl":99.73,"recv":0,"send":0,"writ":0.53,"used":567.33,"free":3089.82},{"epoch":26151616,"idl":99.91,"recv":0,"send":0,"writ":0.35,"used":566.28,"free":3090.87},{"epoch":26151617,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":566.61,"free":3090.54},{"epoch":26151618,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.7,"free":3091.44},{"epoch":26151619,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.16,"used":565.66,"free":3091.48},{"epoch":26151620,"idl":99.72,"recv":0,"send":0,"writ":0.53,"used":566,"free":3091.14},{"epoch":26151621,"idl":99.94,"recv":0,"send":0,"writ":0.38,"used":565.85,"free":3091.3},{"epoch":26151622,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.81,"free":3091.32},{"epoch":26151623,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.85,"free":3091.29},{"epoch":26151624,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":565.93,"free":3091.2},{"epoch":26151625,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":566.65,"free":3090.5},{"epoch":26151626,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":566.75,"free":3090.39},{"epoch":26151627,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.34,"free":3090.8},{"epoch":26151628,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":566.31,"free":3090.86},{"epoch":26151629,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":566.27,"free":3090.89},{"epoch":26151630,"idl":99.83,"recv":0,"send":0,"writ":0.35,"used":566.64,"free":3090.54},{"epoch":26151631,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":567.4,"free":3089.78},{"epoch":26151632,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":567.12,"free":3090.06},{"epoch":26151633,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":567.07,"free":3090.1},{"epoch":26151634,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":567.03,"free":3090.13},{"epoch":26151635,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":566.61,"free":3090.58},{"epoch":26151636,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":567.53,"free":3089.65},{"epoch":26151637,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":566.89,"free":3090.28},{"epoch":26151638,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.86,"free":3090.31},{"epoch":26151639,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":566.82,"free":3090.32},{"epoch":26151640,"idl":99.86,"recv":0,"send":0,"writ":0.37,"used":565.86,"free":3091.3},{"epoch":26151641,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":566.54,"free":3090.62},{"epoch":26151642,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":566.15,"free":3091.01},{"epoch":26151643,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":566.15,"free":3091},{"epoch":26151644,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":566.12,"free":3091.04},{"epoch":26151645,"idl":99.83,"recv":0.04,"send":0.09,"writ":0.47,"used":565.4,"free":3091.78},{"epoch":26151646,"idl":99.78,"recv":0.01,"send":0.05,"writ":0.6,"used":566.13,"free":3091.03},{"epoch":26151647,"idl":99.93,"recv":0,"send":0.01,"writ":0.22,"used":566.08,"free":3091.08},{"epoch":26151648,"idl":99.93,"recv":0.01,"send":0.08,"writ":0.17,"used":566.07,"free":3091.08},{"epoch":26151649,"idl":99.93,"recv":0,"send":0.01,"writ":0.19,"used":566.15,"free":3090.99},{"epoch":26151650,"idl":99.88,"recv":0,"send":0.01,"writ":0.32,"used":566.85,"free":3090.31},{"epoch":26151651,"idl":99.8,"recv":0,"send":0,"writ":0.48,"used":567.2,"free":3089.95},{"epoch":26151652,"idl":99.89,"recv":0,"send":0.02,"writ":0.39,"used":566.59,"free":3090.56},{"epoch":26151653,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":566.51,"free":3090.64},{"epoch":26151654,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":566.62,"free":3090.51},{"epoch":26151655,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":566.66,"free":3090.49},{"epoch":26151656,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":566.62,"free":3090.53},{"epoch":26151657,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":567.38,"free":3089.76},{"epoch":26151658,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":567.05,"free":3090.09},{"epoch":26151659,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":567.01,"free":3090.12},{"epoch":26151660,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":565.31,"free":3091.84},{"epoch":26151661,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":565.36,"free":3091.79},{"epoch":26151662,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":567.11,"free":3090.03},{"epoch":26151663,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":566.85,"free":3090.29},{"epoch":26151664,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":566.81,"free":3090.32},{"epoch":26151665,"idl":99.91,"recv":0,"send":0,"writ":0.34,"used":567.04,"free":3090.11},{"epoch":26151666,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":567.01,"free":3090.13},{"epoch":26151667,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":567.35,"free":3089.79},{"epoch":26151668,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":567.13,"free":3090},{"epoch":26151669,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":567.1,"free":3090.02},{"epoch":26151670,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":565.88,"free":3091.26},{"epoch":26151671,"idl":99.92,"recv":0,"send":0.01,"writ":0.15,"used":565.79,"free":3091.34},{"epoch":26151672,"idl":99.77,"recv":0,"send":0,"writ":0.69,"used":566.89,"free":3090.24},{"epoch":26151673,"idl":99.58,"recv":0,"send":0,"writ":0.23,"used":566.51,"free":3090.62},{"epoch":26151674,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":566.62,"free":3090.51},{"epoch":26151675,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":567.09,"free":3090.05},{"epoch":26151676,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":567.07,"free":3090.07},{"epoch":26151677,"idl":99.78,"recv":0,"send":0,"writ":0.67,"used":567.31,"free":3089.81},{"epoch":26151678,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":566.75,"free":3090.37},{"epoch":26151679,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.15,"used":566.71,"free":3090.41},{"epoch":26151680,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":567.1,"free":3090.03},{"epoch":26151681,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":567.09,"free":3090.04},{"epoch":26151682,"idl":99.8,"recv":0,"send":0,"writ":0.5,"used":567.21,"free":3089.92},{"epoch":26151683,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":566.53,"free":3090.59},{"epoch":26151684,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":566.5,"free":3090.62},{"epoch":26151685,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":566.73,"free":3090.4},{"epoch":26151686,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":566.81,"free":3090.33},{"epoch":26151687,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":567.26,"free":3089.87},{"epoch":26151688,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":567.07,"free":3090.05},{"epoch":26151689,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":567.04,"free":3090.08},{"epoch":26151690,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":566.8,"free":3090.33},{"epoch":26151691,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":566.75,"free":3090.38},{"epoch":26151692,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":567.44,"free":3089.69},{"epoch":26151693,"idl":99.93,"recv":0.02,"send":2.04,"writ":0.62,"used":567,"free":3090.1},{"epoch":26151694,"idl":99.93,"recv":0.02,"send":1,"writ":0.22,"used":567.01,"free":3090.08},{"epoch":26151695,"idl":99.83,"recv":0.01,"send":0.95,"writ":0.38,"used":567.05,"free":3090.05},{"epoch":26151696,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":567.05,"free":3090.03},{"epoch":26151697,"idl":99.92,"recv":0.03,"send":0.07,"writ":0.41,"used":567.16,"free":3089.9},{"epoch":26151698,"idl":99.78,"recv":0.11,"send":0.01,"writ":0.69,"used":567.56,"free":3089.48},{"epoch":26151699,"idl":99.83,"recv":0.05,"send":0,"writ":0.49,"used":567.16,"free":3089.8},{"epoch":26151700,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":567.22,"free":3089.76},{"epoch":26151701,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":567.26,"free":3089.71},{"epoch":26151702,"idl":99.9,"recv":0,"send":0.01,"writ":0.16,"used":567.23,"free":3089.74},{"epoch":26151703,"idl":99.8,"recv":0.01,"send":0.03,"writ":0.57,"used":567.31,"free":3089.64},{"epoch":26151704,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":566.67,"free":3090.27},{"epoch":26151705,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":566.89,"free":3090.07},{"epoch":26151706,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":567.02,"free":3089.94},{"epoch":26151707,"idl":99.92,"recv":0,"send":0.01,"writ":0.14,"used":566.98,"free":3089.97},{"epoch":26151708,"idl":99.74,"recv":0.01,"send":0.01,"writ":0.76,"used":567.87,"free":3089.06},{"epoch":26151709,"idl":89.67,"recv":29.39,"send":0.24,"writ":174.63,"used":594.9,"free":3055.53},{"epoch":26151710,"idl":99.84,"recv":0.02,"send":0,"writ":70.28,"used":574.14,"free":3049.87},{"epoch":26151711,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":574.38,"free":3049.65},{"epoch":26151712,"idl":98.36,"recv":0.02,"send":0.01,"writ":0.23,"used":579.4,"free":3044.63},{"epoch":26151713,"idl":80.09,"recv":0.05,"send":3.83,"writ":8.06,"used":847.95,"free":2775.91},{"epoch":26151714,"idl":99.91,"recv":0.03,"send":1.98,"writ":0.25,"used":575.87,"free":3048.01},{"epoch":26151715,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":573.78,"free":3050.13},{"epoch":26151716,"idl":99.94,"recv":0.02,"send":0,"writ":0.18,"used":573.79,"free":3050.11},{"epoch":26151717,"idl":99.94,"recv":0.02,"send":0,"writ":0.18,"used":573.72,"free":3050.18},{"epoch":26151718,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":574.12,"free":3049.78},{"epoch":26151719,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":573.57,"free":3050.32},{"epoch":26151720,"idl":99.17,"recv":0.02,"send":0,"writ":0.44,"used":572.77,"free":3051.18},{"epoch":26151721,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":570.56,"free":3053.39},{"epoch":26151722,"idl":79.57,"recv":0.04,"send":1.92,"writ":4.65,"used":930.17,"free":2693.74},{"epoch":26151723,"idl":99.57,"recv":0.01,"send":0.95,"writ":0.67,"used":821.03,"free":2802.89},{"epoch":26151724,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":619.93,"free":3003.98},{"epoch":26151725,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":619.92,"free":3004.02},{"epoch":26151726,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":619.89,"free":3004.05},{"epoch":26151727,"idl":79.71,"recv":0.03,"send":0.94,"writ":4.7,"used":865.04,"free":2758.84},{"epoch":26151728,"idl":99.59,"recv":0.03,"send":3.81,"writ":0.58,"used":852.14,"free":2771.76},{"epoch":26151729,"idl":99.79,"recv":0.06,"send":2.89,"writ":0.5,"used":613.93,"free":3009.89},{"epoch":26151730,"idl":99.88,"recv":0,"send":0.01,"writ":0.41,"used":574.56,"free":3049.27},{"epoch":26151731,"idl":99.94,"recv":0.01,"send":0.94,"writ":0.18,"used":574.57,"free":3049.26},{"epoch":26151732,"idl":99.93,"recv":0,"send":0.01,"writ":0.21,"used":574.5,"free":3049.31},{"epoch":26151733,"idl":99.76,"recv":0.03,"send":3.77,"writ":0.48,"used":574.8,"free":3049.01},{"epoch":26151734,"idl":99.8,"recv":0.07,"send":7.76,"writ":0.61,"used":574.18,"free":3049.6},{"epoch":26151735,"idl":99.83,"recv":0.05,"send":3.44,"writ":0.49,"used":574.17,"free":3049.59},{"epoch":26151736,"idl":99.92,"recv":0.02,"send":0.95,"writ":0.3,"used":574.3,"free":3049.43},{"epoch":26151737,"idl":99.91,"recv":0.02,"send":1.89,"writ":0.26,"used":574.32,"free":3049.39},{"epoch":26151738,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":574.27,"free":3049.43},{"epoch":26151739,"idl":83.48,"recv":0.02,"send":0.02,"writ":1.43,"used":692.77,"free":2930.88},{"epoch":26151740,"idl":75,"recv":0.13,"send":7.67,"writ":8.36,"used":1098.45,"free":2525.2},{"epoch":26151741,"idl":99.87,"recv":0.04,"send":3.58,"writ":0.55,"used":1088.53,"free":2535.14},{"epoch":26151742,"idl":99.77,"recv":0.01,"send":0.13,"writ":0.27,"used":690.14,"free":2933.51},{"epoch":26151743,"idl":99.9,"recv":0.01,"send":1.89,"writ":0.32,"used":619.33,"free":3004.31},{"epoch":26151744,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.62,"used":590.94,"free":3032.69},{"epoch":26151745,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":574.25,"free":3049.4},{"epoch":26151746,"idl":99.94,"recv":0.04,"send":1.87,"writ":0.15,"used":574.24,"free":3049.4},{"epoch":26151747,"idl":99.9,"recv":0.03,"send":2.78,"writ":0.3,"used":574.29,"free":3049.34},{"epoch":26151748,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":574.29,"free":3049.33},{"epoch":26151749,"idl":99.76,"recv":0.03,"send":0.11,"writ":0.74,"used":574.91,"free":3048.71},{"epoch":26151750,"idl":99.83,"recv":0.25,"send":0.05,"writ":0.62,"used":574.46,"free":3049.13},{"epoch":26151751,"idl":80.5,"recv":0.01,"send":0.03,"writ":1.78,"used":718.06,"free":2905.6},{"epoch":26151752,"idl":88.85,"recv":0.03,"send":1.82,"writ":3.66,"used":996.15,"free":2627.52},{"epoch":26151753,"idl":89.69,"recv":0.04,"send":1.96,"writ":4.36,"used":1115.06,"free":2508.57},{"epoch":26151754,"idl":99.56,"recv":0.06,"send":3.8,"writ":0.85,"used":668.48,"free":2955.14},{"epoch":26151755,"idl":99.84,"recv":0,"send":0.01,"writ":0.36,"used":621.73,"free":3001.89},{"epoch":26151756,"idl":99.91,"recv":0.02,"send":0.02,"writ":0.24,"used":621.77,"free":3001.85},{"epoch":26151757,"idl":79.63,"recv":0.08,"send":5.72,"writ":4.79,"used":1082.61,"free":2540.94},{"epoch":26151758,"idl":99.74,"recv":0.03,"send":3.46,"writ":0.28,"used":691.4,"free":2932.17},{"epoch":26151759,"idl":99.71,"recv":0.02,"send":2.31,"writ":0.8,"used":622.05,"free":3001.49},{"epoch":26151760,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":621.61,"free":3001.95},{"epoch":26151761,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":621.57,"free":3001.98},{"epoch":26151762,"idl":99.89,"recv":0.09,"send":4.89,"writ":0.24,"used":621.66,"free":3001.89},{"epoch":26151763,"idl":99.88,"recv":0.04,"send":5.14,"writ":0.4,"used":584.62,"free":3038.89},{"epoch":26151764,"idl":96.67,"recv":0.05,"send":4.66,"writ":14.55,"used":584.96,"free":3040.63},{"epoch":26151765,"idl":99.82,"recv":0,"send":0.01,"writ":64.15,"used":577.45,"free":3045.94},{"epoch":26151766,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":577.39,"free":3045.98},{"epoch":26151767,"idl":99.91,"recv":0.03,"send":2.7,"writ":0.3,"used":577.36,"free":3046},{"epoch":26151768,"idl":99.87,"recv":0.05,"send":5.51,"writ":0.55,"used":577.33,"free":3045.98},{"epoch":26151769,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":577.18,"free":3046.11},{"epoch":26151770,"idl":99.74,"recv":0,"send":0,"writ":0.7,"used":575.27,"free":3048.1},{"epoch":26151771,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":574.96,"free":3048.4},{"epoch":26151772,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":574.52,"free":3048.84},{"epoch":26151773,"idl":99.91,"recv":0.06,"send":4.12,"writ":0.22,"used":573.75,"free":3049.59},{"epoch":26151774,"idl":99.91,"recv":0.01,"send":0.41,"writ":0.26,"used":573.61,"free":3049.69},{"epoch":26151775,"idl":99.67,"recv":0.1,"send":9.55,"writ":0.98,"used":574.51,"free":3048.77},{"epoch":26151776,"idl":99.95,"recv":0,"send":0.01,"writ":0.25,"used":574.1,"free":3049.14},{"epoch":26151777,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":574.06,"free":3049.17},{"epoch":26151778,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":574.03,"free":3049.19},{"epoch":26151779,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":574,"free":3049.22},{"epoch":26151780,"idl":99.66,"recv":0,"send":0,"writ":0.75,"used":574.54,"free":3048.69},{"epoch":26151781,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":574.2,"free":3049.03},{"epoch":26151782,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":574.28,"free":3048.94},{"epoch":26151783,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":574.33,"free":3048.89},{"epoch":26151784,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":574.31,"free":3048.91},{"epoch":26151785,"idl":99.74,"recv":0,"send":0,"writ":0.7,"used":574.52,"free":3048.71},{"epoch":26151786,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":574.03,"free":3049.2},{"epoch":26151787,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":573.99,"free":3049.23},{"epoch":26151788,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":573.97,"free":3049.26},{"epoch":26151789,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":573.94,"free":3049.26},{"epoch":26151790,"idl":99.74,"recv":0,"send":0,"writ":0.71,"used":573.81,"free":3049.4},{"epoch":26151791,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.11,"free":3051.1},{"epoch":26151792,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":572.07,"free":3051.13},{"epoch":26151793,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.04,"free":3051.16},{"epoch":26151794,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.02,"free":3051.18},{"epoch":26151795,"idl":99.7,"recv":0.02,"send":0.94,"writ":0.75,"used":573.39,"free":3049.83},{"epoch":26151796,"idl":99.93,"recv":0.01,"send":0.21,"writ":0.25,"used":573.03,"free":3050.17},{"epoch":26151797,"idl":99.93,"recv":0.03,"send":1.1,"writ":0.28,"used":573.29,"free":3049.9},{"epoch":26151798,"idl":99.93,"recv":0.02,"send":0.16,"writ":0.24,"used":573.25,"free":3049.91},{"epoch":26151799,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.19,"used":573.23,"free":3049.93},{"epoch":26151800,"idl":99.73,"recv":0,"send":0.01,"writ":0.59,"used":574.32,"free":3048.85},{"epoch":26151801,"idl":99.94,"recv":0,"send":0.02,"writ":0.3,"used":574.22,"free":3048.95},{"epoch":26151802,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":574.18,"free":3048.98},{"epoch":26151803,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":574.14,"free":3049.01},{"epoch":26151804,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":574.19,"free":3048.97},{"epoch":26151805,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":574.06,"free":3049.1},{"epoch":26151806,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":574.11,"free":3049.05},{"epoch":26151807,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":573.74,"free":3049.42},{"epoch":26151808,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":573.71,"free":3049.44},{"epoch":26151809,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":573.68,"free":3049.47},{"epoch":26151810,"idl":99.82,"recv":0,"send":0,"writ":0.35,"used":572.71,"free":3050.45},{"epoch":26151811,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":574.3,"free":3048.86},{"epoch":26151812,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":574.02,"free":3049.13},{"epoch":26151813,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":573.99,"free":3049.17},{"epoch":26151814,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":573.95,"free":3049.2},{"epoch":26151815,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":574.18,"free":3048.99},{"epoch":26151816,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":574.51,"free":3048.65},{"epoch":26151817,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":574.13,"free":3049.03},{"epoch":26151818,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":574.26,"free":3048.89},{"epoch":26151819,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":574.27,"free":3048.86},{"epoch":26151820,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":574.74,"free":3048.4},{"epoch":26151821,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":575.07,"free":3048.07},{"epoch":26151822,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":574.19,"free":3048.94},{"epoch":26151823,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":574.17,"free":3048.96},{"epoch":26151824,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":574.13,"free":3049.01},{"epoch":26151825,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":574.25,"free":3048.91},{"epoch":26151826,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":574.05,"free":3049.1},{"epoch":26151827,"idl":99.93,"recv":0,"send":0.01,"writ":0.25,"used":572.78,"free":3050.37},{"epoch":26151828,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":572.74,"free":3050.41},{"epoch":26151829,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.7,"free":3050.44},{"epoch":26151830,"idl":99.89,"recv":0,"send":0,"writ":0.35,"used":573.9,"free":3049.26},{"epoch":26151831,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":574.31,"free":3048.84},{"epoch":26151832,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":574.28,"free":3048.87},{"epoch":26151833,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":574.27,"free":3048.88},{"epoch":26151834,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":574.24,"free":3048.9},{"epoch":26151835,"idl":99.91,"recv":0,"send":0,"writ":0.32,"used":573.74,"free":3049.42},{"epoch":26151836,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":574.27,"free":3048.89},{"epoch":26151837,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":574.42,"free":3048.73},{"epoch":26151838,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":574.39,"free":3048.76},{"epoch":26151839,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":574.43,"free":3048.72},{"epoch":26151840,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":573.57,"free":3049.59},{"epoch":26151841,"idl":99.82,"recv":0,"send":0,"writ":0.41,"used":573.97,"free":3049.18},{"epoch":26151842,"idl":99.94,"recv":0,"send":0,"writ":0.32,"used":574.23,"free":3048.92},{"epoch":26151843,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":574.21,"free":3048.94},{"epoch":26151844,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":574.18,"free":3048.96},{"epoch":26151845,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":574.17,"free":3048.99},{"epoch":26151846,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":574.14,"free":3049.01},{"epoch":26151847,"idl":99.81,"recv":0,"send":0,"writ":0.61,"used":574.32,"free":3048.82},{"epoch":26151848,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":574.02,"free":3049.12},{"epoch":26151849,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":574.48,"free":3048.63},{"epoch":26151850,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":573.74,"free":3049.39},{"epoch":26151851,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":573.7,"free":3049.43},{"epoch":26151852,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":574.79,"free":3048.33},{"epoch":26151853,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":574.62,"free":3048.5},{"epoch":26151854,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":574.65,"free":3048.46},{"epoch":26151855,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":574.29,"free":3048.84},{"epoch":26151856,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":574.25,"free":3048.88},{"epoch":26151857,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":574.61,"free":3048.51},{"epoch":26151858,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":574.19,"free":3048.93},{"epoch":26151859,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.16,"used":574.17,"free":3048.94},{"epoch":26151860,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":574.63,"free":3048.5},{"epoch":26151861,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":574.61,"free":3048.51},{"epoch":26151862,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":574.94,"free":3048.18},{"epoch":26151863,"idl":99.94,"recv":0,"send":0,"writ":0.3,"used":574.49,"free":3048.63},{"epoch":26151864,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":574.47,"free":3048.65},{"epoch":26151865,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":574.46,"free":3048.67},{"epoch":26151866,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":574.43,"free":3048.7},{"epoch":26151867,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":574.85,"free":3048.27},{"epoch":26151868,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":574.61,"free":3048.5},{"epoch":26151869,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":574.59,"free":3048.53},{"epoch":26151870,"idl":99.9,"recv":0,"send":0,"writ":0.35,"used":574.79,"free":3048.34},{"epoch":26151871,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":574.76,"free":3048.36},{"epoch":26151872,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":574.74,"free":3048.38},{"epoch":26151873,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":573.46,"free":3049.65},{"epoch":26151874,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":573.43,"free":3049.68},{"epoch":26151875,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":573.91,"free":3049.22},{"epoch":26151876,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":573.89,"free":3049.23},{"epoch":26151877,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":574.78,"free":3048.34},{"epoch":26151878,"idl":99.95,"recv":0,"send":0,"writ":0.36,"used":574.5,"free":3048.61},{"epoch":26151879,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":574.23,"free":3048.86},{"epoch":26151880,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":574.71,"free":3048.4},{"epoch":26151881,"idl":99.92,"recv":0,"send":0,"writ":0.12,"used":574.68,"free":3048.43},{"epoch":26151882,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":574.65,"free":3048.45},{"epoch":26151883,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":574.43,"free":3048.67},{"epoch":26151884,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":573.96,"free":3049.13},{"epoch":26151885,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":574.76,"free":3048.35},{"epoch":26151886,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":574.73,"free":3048.37},{"epoch":26151887,"idl":99.9,"recv":0,"send":0.01,"writ":0.18,"used":574.7,"free":3048.4},{"epoch":26151888,"idl":99.78,"recv":0.01,"send":0,"writ":0.54,"used":574.35,"free":3048.75},{"epoch":26151889,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":573.65,"free":3049.44},{"epoch":26151890,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":574.13,"free":3048.98},{"epoch":26151891,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":574.21,"free":3048.9},{"epoch":26151892,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.43,"free":3050.7},{"epoch":26151893,"idl":99.8,"recv":0,"send":0,"writ":0.51,"used":571.95,"free":3051.2},{"epoch":26151894,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":571.87,"free":3051.28},{"epoch":26151895,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":571.62,"free":3051.54},{"epoch":26151896,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":571.59,"free":3051.57},{"epoch":26151897,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":571.56,"free":3051.59},{"epoch":26151898,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.41,"used":571.99,"free":3051.16},{"epoch":26151899,"idl":99.92,"recv":0,"send":0,"writ":0.28,"used":571.67,"free":3051.48},{"epoch":26151900,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":571.46,"free":3051.71},{"epoch":26151901,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":571.38,"free":3051.77},{"epoch":26151902,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":571.35,"free":3051.8},{"epoch":26151903,"idl":99.79,"recv":0,"send":0,"writ":0.51,"used":571.45,"free":3051.7},{"epoch":26151904,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":570.79,"free":3052.35},{"epoch":26151905,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":570.85,"free":3052.32},{"epoch":26151906,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":570.95,"free":3052.21},{"epoch":26151907,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.92,"free":3052.24},{"epoch":26151908,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":571.48,"free":3051.67},{"epoch":26151909,"idl":99.86,"recv":0,"send":0,"writ":0.45,"used":572.05,"free":3051.08},{"epoch":26151910,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":571.59,"free":3051.56},{"epoch":26151911,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":571.53,"free":3051.61},{"epoch":26151912,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.62,"free":3051.52},{"epoch":26151913,"idl":99.78,"recv":0,"send":0,"writ":0.47,"used":572.04,"free":3051.09},{"epoch":26151914,"idl":99.94,"recv":0,"send":0,"writ":0.24,"used":572.12,"free":3051.02},{"epoch":26151915,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":571.87,"free":3051.3},{"epoch":26151916,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":571.84,"free":3051.34},{"epoch":26151917,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":571.81,"free":3051.36},{"epoch":26151918,"idl":99.78,"recv":0,"send":0,"writ":0.46,"used":572.14,"free":3051.03},{"epoch":26151919,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.29,"used":571.82,"free":3051.35},{"epoch":26151920,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":571.96,"free":3051.23},{"epoch":26151921,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.93,"free":3051.24},{"epoch":26151922,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.91,"free":3051.27},{"epoch":26151923,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":571.87,"free":3051.3},{"epoch":26151924,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":571.97,"free":3051.2},{"epoch":26151925,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":571.11,"free":3052.08},{"epoch":26151926,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.07,"free":3052.11},{"epoch":26151927,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.83,"free":3052.34},{"epoch":26151928,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.21,"free":3052.96},{"epoch":26151929,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":571.54,"free":3051.62},{"epoch":26151930,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":571.16,"free":3052.03},{"epoch":26151931,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.13,"free":3052.05},{"epoch":26151932,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":571.1,"free":3052.08},{"epoch":26151933,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.06,"free":3052.11},{"epoch":26151934,"idl":99.8,"recv":0,"send":0,"writ":0.46,"used":571.84,"free":3051.33},{"epoch":26151935,"idl":99.86,"recv":0,"send":0,"writ":0.46,"used":570.97,"free":3052.21},{"epoch":26151936,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.94,"free":3052.23},{"epoch":26151937,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.91,"free":3052.26},{"epoch":26151938,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.88,"free":3052.29},{"epoch":26151939,"idl":99.66,"recv":0,"send":0,"writ":0.65,"used":571.76,"free":3051.38},{"epoch":26151940,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":571.32,"free":3051.84},{"epoch":26151941,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":571.29,"free":3051.86},{"epoch":26151942,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":571.41,"free":3051.74},{"epoch":26151943,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":571.42,"free":3051.73},{"epoch":26151944,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":571.62,"free":3051.52},{"epoch":26151945,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":571.63,"free":3051.53},{"epoch":26151946,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":571.61,"free":3051.54},{"epoch":26151947,"idl":99.92,"recv":0,"send":0.01,"writ":0.14,"used":571.58,"free":3051.57},{"epoch":26151948,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.55,"free":3051.6},{"epoch":26151949,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":571.87,"free":3051.27},{"epoch":26151950,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":571.21,"free":3051.95},{"epoch":26151951,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":571.17,"free":3051.98},{"epoch":26151952,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":570.78,"free":3052.37},{"epoch":26151953,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.62,"free":3052.53},{"epoch":26151954,"idl":99.37,"recv":0,"send":0,"writ":0.3,"used":571.25,"free":3051.89},{"epoch":26151955,"idl":99.84,"recv":0,"send":0,"writ":0.6,"used":570.56,"free":3052.59},{"epoch":26151956,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":570.57,"free":3052.57},{"epoch":26151957,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.69,"free":3052.45},{"epoch":26151958,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":570.67,"free":3052.47},{"epoch":26151959,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":570.64,"free":3052.5},{"epoch":26151960,"idl":99.66,"recv":0,"send":0,"writ":0.73,"used":571.51,"free":3051.64},{"epoch":26151961,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.85,"free":3052.3},{"epoch":26151962,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":570.81,"free":3052.32},{"epoch":26151963,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":570.78,"free":3052.35},{"epoch":26151964,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":570.82,"free":3052.31},{"epoch":26151965,"idl":99.71,"recv":0,"send":0,"writ":0.71,"used":572.13,"free":3051.01},{"epoch":26151966,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":571.63,"free":3051.51},{"epoch":26151967,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":571.61,"free":3051.53},{"epoch":26151968,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":571.57,"free":3051.56},{"epoch":26151969,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":571.3,"free":3051.8},{"epoch":26151970,"idl":99.73,"recv":0,"send":0,"writ":0.74,"used":571.66,"free":3051.45},{"epoch":26151971,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":571.26,"free":3051.86},{"epoch":26151972,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":571.4,"free":3051.71},{"epoch":26151973,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":571.42,"free":3051.69},{"epoch":26151974,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":571.39,"free":3051.71},{"epoch":26151975,"idl":99.7,"recv":0,"send":0,"writ":0.72,"used":571.78,"free":3051.34},{"epoch":26151976,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":571.11,"free":3052.01},{"epoch":26151977,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":571.07,"free":3052.04},{"epoch":26151978,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":571.04,"free":3052.07},{"epoch":26151979,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.16,"used":571.08,"free":3052.03},{"epoch":26151980,"idl":99.72,"recv":0,"send":0,"writ":0.73,"used":572.02,"free":3051.1},{"epoch":26151981,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":571.63,"free":3051.48},{"epoch":26151982,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":571.6,"free":3051.51},{"epoch":26151983,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":571.57,"free":3051.54},{"epoch":26151984,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.54,"free":3051.56},{"epoch":26151985,"idl":99.67,"recv":0,"send":0,"writ":0.58,"used":571.89,"free":3051.23},{"epoch":26151986,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":571.58,"free":3051.54},{"epoch":26151987,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":571.67,"free":3051.44},{"epoch":26151988,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":571.65,"free":3051.46},{"epoch":26151989,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":571.62,"free":3051.49},{"epoch":26151990,"idl":99.61,"recv":0,"send":0,"writ":0.55,"used":571.96,"free":3051.15},{"epoch":26151991,"idl":99.87,"recv":0,"send":0,"writ":0.37,"used":571.57,"free":3051.54},{"epoch":26151992,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":571.55,"free":3051.57},{"epoch":26151993,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.52,"free":3051.59},{"epoch":26151994,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":571.59,"free":3051.51},{"epoch":26151995,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":571.42,"free":3051.7},{"epoch":26151996,"idl":99.71,"recv":0,"send":0,"writ":0.61,"used":572.17,"free":3050.94},{"epoch":26151997,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":571.84,"free":3051.27},{"epoch":26151998,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":571.81,"free":3051.29},{"epoch":26151999,"idl":99.78,"recv":0,"send":0,"writ":0.39,"used":571.09,"free":3052},{"epoch":26152000,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":571.52,"free":3051.58},{"epoch":26152001,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":572.4,"free":3050.69},{"epoch":26152002,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":571.9,"free":3051.18},{"epoch":26152003,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":571.87,"free":3051.21},{"epoch":26152004,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":571.84,"free":3051.25},{"epoch":26152005,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":570.88,"free":3052.23},{"epoch":26152006,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":571.43,"free":3051.67},{"epoch":26152007,"idl":99.84,"recv":0,"send":0.01,"writ":0.16,"used":571.28,"free":3051.83},{"epoch":26152008,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":571.28,"free":3051.82},{"epoch":26152009,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":571.4,"free":3051.7},{"epoch":26152010,"idl":99.81,"recv":0,"send":0,"writ":0.37,"used":571.63,"free":3051.48},{"epoch":26152011,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":571.7,"free":3051.41},{"epoch":26152012,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":571.07,"free":3052.03},{"epoch":26152013,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.04,"free":3052.06},{"epoch":26152014,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":571.01,"free":3052.08},{"epoch":26152015,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":571.05,"free":3052.06},{"epoch":26152016,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":571.78,"free":3051.33},{"epoch":26152017,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":571.87,"free":3051.24},{"epoch":26152018,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.84,"free":3051.26},{"epoch":26152019,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":571.81,"free":3051.29},{"epoch":26152020,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":571.56,"free":3051.57},{"epoch":26152021,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":572.3,"free":3050.83},{"epoch":26152022,"idl":99.48,"recv":0,"send":0,"writ":0.5,"used":572.22,"free":3050.9},{"epoch":26152023,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":572.05,"free":3051.07},{"epoch":26152024,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":572.15,"free":3050.96},{"epoch":26152025,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":571.9,"free":3051.23},{"epoch":26152026,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":572.52,"free":3050.61},{"epoch":26152027,"idl":99.83,"recv":0,"send":0,"writ":0.41,"used":571.83,"free":3051.29},{"epoch":26152028,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":571.8,"free":3051.31},{"epoch":26152029,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":571.53,"free":3051.56},{"epoch":26152030,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":572.05,"free":3051.06},{"epoch":26152031,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":572.16,"free":3050.95},{"epoch":26152032,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":572.27,"free":3050.83},{"epoch":26152033,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":571.86,"free":3051.24},{"epoch":26152034,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":571.82,"free":3051.27},{"epoch":26152035,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":572.07,"free":3051.04},{"epoch":26152036,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":572.04,"free":3051.07},{"epoch":26152037,"idl":99.5,"recv":0,"send":0,"writ":0.58,"used":572.33,"free":3050.77},{"epoch":26152038,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":572.05,"free":3051.04},{"epoch":26152039,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.16,"used":572.13,"free":3050.96},{"epoch":26152040,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":572.11,"free":3051},{"epoch":26152041,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.07,"free":3051.03},{"epoch":26152042,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":572.71,"free":3050.39},{"epoch":26152043,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":572.01,"free":3051.08},{"epoch":26152044,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":571.98,"free":3051.11},{"epoch":26152045,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":571.6,"free":3051.5},{"epoch":26152046,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":571.64,"free":3051.46},{"epoch":26152047,"idl":99.73,"recv":0,"send":0,"writ":0.51,"used":572.28,"free":3050.81},{"epoch":26152048,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":571.82,"free":3051.26},{"epoch":26152049,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":571.79,"free":3051.29},{"epoch":26152050,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":572.06,"free":3051.04},{"epoch":26152051,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":571.98,"free":3051.11},{"epoch":26152052,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":572.41,"free":3050.68},{"epoch":26152053,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":572.11,"free":3050.97},{"epoch":26152054,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":572.08,"free":3051},{"epoch":26152055,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":572.08,"free":3051.01},{"epoch":26152056,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":572.04,"free":3051.06},{"epoch":26152057,"idl":99.68,"recv":0,"send":0,"writ":0.41,"used":572.36,"free":3050.72},{"epoch":26152058,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":571.97,"free":3051.11},{"epoch":26152059,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":571.57,"free":3051.49},{"epoch":26152060,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":571.87,"free":3051.2},{"epoch":26152061,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":571.85,"free":3051.22},{"epoch":26152062,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":571.82,"free":3051.24},{"epoch":26152063,"idl":99.7,"recv":0,"send":0,"writ":0.61,"used":572.38,"free":3050.68},{"epoch":26152064,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":572,"free":3051.05},{"epoch":26152065,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":572,"free":3051.08},{"epoch":26152066,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":571.97,"free":3051.1},{"epoch":26152067,"idl":99.85,"recv":0,"send":0.01,"writ":0.17,"used":572.09,"free":3050.98},{"epoch":26152068,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":572.44,"free":3050.62},{"epoch":26152069,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":572.06,"free":3051},{"epoch":26152070,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":572.05,"free":3051.03},{"epoch":26152071,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":572.02,"free":3051.05},{"epoch":26152072,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":571.99,"free":3051.08},{"epoch":26152073,"idl":99.72,"recv":0.01,"send":0.01,"writ":0.58,"used":571.38,"free":3051.68},{"epoch":26152074,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":570.58,"free":3052.48},{"epoch":26152075,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":571.53,"free":3051.54},{"epoch":26152076,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":571.51,"free":3051.55},{"epoch":26152077,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":571.53,"free":3051.53},{"epoch":26152078,"idl":99.71,"recv":0,"send":0,"writ":0.61,"used":572.3,"free":3050.75},{"epoch":26152079,"idl":99.83,"recv":0.07,"send":6.74,"writ":0.37,"used":572.11,"free":3050.9},{"epoch":26152080,"idl":99.72,"recv":0.03,"send":2.63,"writ":0.61,"used":571.72,"free":3051.26},{"epoch":26152081,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":571.7,"free":3051.27},{"epoch":26152082,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":571.48,"free":3051.48},{"epoch":26152083,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":571.69,"free":3051.26},{"epoch":26152084,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":571.3,"free":3051.66},{"epoch":26152085,"idl":99.79,"recv":0.02,"send":2.01,"writ":0.43,"used":571.27,"free":3051.69},{"epoch":26152086,"idl":99.84,"recv":0,"send":0.06,"writ":0.23,"used":571.28,"free":3051.67},{"epoch":26152087,"idl":99.86,"recv":0,"send":0.07,"writ":0.16,"used":571.22,"free":3051.73},{"epoch":26152088,"idl":99.74,"recv":0,"send":0,"writ":0.6,"used":571.65,"free":3051.29},{"epoch":26152089,"idl":99.78,"recv":0,"send":0,"writ":0.35,"used":571.39,"free":3051.52},{"epoch":26152090,"idl":99.82,"recv":0,"send":0.06,"writ":0.34,"used":571.45,"free":3051.47},{"epoch":26152091,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.49,"free":3051.43},{"epoch":26152092,"idl":99.85,"recv":0.03,"send":1.15,"writ":0.26,"used":571.46,"free":3051.46},{"epoch":26152093,"idl":99.72,"recv":0.01,"send":0.35,"writ":0.83,"used":571.83,"free":3051.07},{"epoch":26152094,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":571.44,"free":3051.46},{"epoch":26152095,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":570.71,"free":3052.21},{"epoch":26152096,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":570.66,"free":3052.26},{"epoch":26152097,"idl":99.37,"recv":0,"send":0,"writ":0.19,"used":570.63,"free":3052.28},{"epoch":26152098,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":571.11,"free":3051.81},{"epoch":26152099,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.14,"used":571.25,"free":3051.66},{"epoch":26152100,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":571.47,"free":3051.45},{"epoch":26152101,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":571.45,"free":3051.47},{"epoch":26152102,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":571.42,"free":3051.5},{"epoch":26152103,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":571.39,"free":3051.52},{"epoch":26152104,"idl":99.71,"recv":0,"send":0.01,"writ":0.56,"used":571.7,"free":3051.21},{"epoch":26152105,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":571.24,"free":3051.68},{"epoch":26152106,"idl":99.86,"recv":0,"send":0.01,"writ":0.16,"used":571.24,"free":3051.68},{"epoch":26152107,"idl":99.86,"recv":0,"send":0.01,"writ":0.18,"used":571.19,"free":3051.72},{"epoch":26152108,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":571.15,"free":3051.76},{"epoch":26152109,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":570.46,"free":3052.44},{"epoch":26152110,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":571.07,"free":3051.85},{"epoch":26152111,"idl":99.85,"recv":0.05,"send":2.25,"writ":0.2,"used":571.21,"free":3051.71},{"epoch":26152112,"idl":99.81,"recv":0.02,"send":1.99,"writ":0.29,"used":571.26,"free":3051.65},{"epoch":26152113,"idl":99.81,"recv":0.03,"send":2.7,"writ":0.51,"used":571.41,"free":3051.47},{"epoch":26152114,"idl":99.69,"recv":0.01,"send":2.22,"writ":0.84,"used":571.83,"free":3051.02},{"epoch":26152115,"idl":99.82,"recv":0,"send":0.01,"writ":0.42,"used":571.59,"free":3051.28},{"epoch":26152116,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":571.56,"free":3051.31},{"epoch":26152117,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.52,"free":3051.34},{"epoch":26152118,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":571.67,"free":3051.19},{"epoch":26152119,"idl":99.62,"recv":0,"send":0,"writ":0.65,"used":571.87,"free":3050.96},{"epoch":26152120,"idl":99.82,"recv":0,"send":0,"writ":0.38,"used":571.4,"free":3051.44},{"epoch":26152121,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":571.37,"free":3051.47},{"epoch":26152122,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":571.34,"free":3051.5},{"epoch":26152123,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":571.32,"free":3051.51},{"epoch":26152124,"idl":99.73,"recv":0,"send":0,"writ":0.5,"used":571.64,"free":3051.23},{"epoch":26152125,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":571.05,"free":3051.85},{"epoch":26152126,"idl":99.85,"recv":0.01,"send":0.11,"writ":0.15,"used":571.15,"free":3051.74},{"epoch":26152127,"idl":99.83,"recv":0,"send":0.01,"writ":0.2,"used":571.13,"free":3051.76},{"epoch":26152128,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":571.09,"free":3051.79},{"epoch":26152129,"idl":95.14,"recv":0.27,"send":0.01,"writ":77.85,"used":581.65,"free":3041.56},{"epoch":26152130,"idl":99.73,"recv":0,"send":0,"writ":180.31,"used":573.83,"free":3048.87},{"epoch":26152131,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":573.79,"free":3048.9},{"epoch":26152132,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":573.67,"free":3049.02},{"epoch":26152133,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":573.68,"free":3049},{"epoch":26152134,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":573.97,"free":3048.71},{"epoch":26152135,"idl":99.83,"recv":0,"send":0,"writ":0.48,"used":571.49,"free":3051.24},{"epoch":26152136,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.46,"free":3051.27},{"epoch":26152137,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":571.43,"free":3051.29},{"epoch":26152138,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":571.4,"free":3051.32},{"epoch":26152139,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":571.62,"free":3051.1},{"epoch":26152140,"idl":98.94,"recv":0,"send":0,"writ":10.29,"used":571.82,"free":3051.19},{"epoch":26152141,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":571.39,"free":3051.67},{"epoch":26152142,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":571.36,"free":3051.69},{"epoch":26152143,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":571.34,"free":3051.71},{"epoch":26152144,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":571.31,"free":3051.74},{"epoch":26152145,"idl":99.69,"recv":0,"send":0,"writ":0.77,"used":571.95,"free":3051.12},{"epoch":26152146,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.52,"free":3051.55},{"epoch":26152147,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":571.49,"free":3051.57},{"epoch":26152148,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":571.58,"free":3051.48},{"epoch":26152149,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":571.63,"free":3051.41},{"epoch":26152150,"idl":99.76,"recv":0,"send":0,"writ":0.72,"used":572.18,"free":3050.89},{"epoch":26152151,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":571.85,"free":3051.23},{"epoch":26152152,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":571.81,"free":3051.25},{"epoch":26152153,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.79,"free":3051.27},{"epoch":26152154,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":571.76,"free":3051.3},{"epoch":26152155,"idl":99.69,"recv":0,"send":0,"writ":0.77,"used":571.52,"free":3051.55},{"epoch":26152156,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":571.62,"free":3051.45},{"epoch":26152157,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":571.64,"free":3051.43},{"epoch":26152158,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":571.61,"free":3051.46},{"epoch":26152159,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.16,"used":571.57,"free":3051.49},{"epoch":26152160,"idl":99.72,"recv":0,"send":0,"writ":0.71,"used":571.64,"free":3051.44},{"epoch":26152161,"idl":99.94,"recv":0,"send":0,"writ":0.24,"used":571.53,"free":3051.55},{"epoch":26152162,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":571.5,"free":3051.57},{"epoch":26152163,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":571.59,"free":3051.48},{"epoch":26152164,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":571.66,"free":3051.4},{"epoch":26152165,"idl":99.74,"recv":0,"send":0,"writ":0.8,"used":572.25,"free":3050.83},{"epoch":26152166,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":571.88,"free":3051.2},{"epoch":26152167,"idl":99.92,"recv":0,"send":0,"writ":0.25,"used":571.84,"free":3051.22},{"epoch":26152168,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":571.81,"free":3051.25},{"epoch":26152169,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":571.77,"free":3051.29},{"epoch":26152170,"idl":99.75,"recv":0,"send":0,"writ":0.65,"used":572.17,"free":3050.9},{"epoch":26152171,"idl":99.95,"recv":0,"send":0,"writ":0.3,"used":571.92,"free":3051.15},{"epoch":26152172,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":571.89,"free":3051.18},{"epoch":26152173,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":571.86,"free":3051.2},{"epoch":26152174,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":571.83,"free":3051.22},{"epoch":26152175,"idl":99.7,"recv":0,"send":0,"writ":0.63,"used":571.98,"free":3051.09},{"epoch":26152176,"idl":99.95,"recv":0,"send":0,"writ":0.3,"used":572.04,"free":3051.03},{"epoch":26152177,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":572.01,"free":3051.05},{"epoch":26152178,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.09,"free":3050.97},{"epoch":26152179,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":571.66,"free":3051.37},{"epoch":26152180,"idl":99.9,"recv":0,"send":0,"writ":0.37,"used":571.86,"free":3051.18},{"epoch":26152181,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":571.72,"free":3051.32},{"epoch":26152182,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.31,"free":3051.72},{"epoch":26152183,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":571.29,"free":3051.74},{"epoch":26152184,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":571.25,"free":3051.81},{"epoch":26152185,"idl":99.88,"recv":0,"send":0,"writ":0.39,"used":571.73,"free":3051.36},{"epoch":26152186,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":572.35,"free":3050.73},{"epoch":26152187,"idl":99.91,"recv":0,"send":0.01,"writ":0.18,"used":571.86,"free":3051.22},{"epoch":26152188,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":571.82,"free":3051.25},{"epoch":26152189,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":571.79,"free":3051.28},{"epoch":26152190,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":571.78,"free":3051.31},{"epoch":26152191,"idl":99.79,"recv":0,"send":0.01,"writ":0.54,"used":572.15,"free":3050.93},{"epoch":26152192,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":571.55,"free":3051.53},{"epoch":26152193,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":571.36,"free":3051.71},{"epoch":26152194,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":571.33,"free":3051.74},{"epoch":26152195,"idl":99.89,"recv":0,"send":0,"writ":0.38,"used":571.57,"free":3051.51},{"epoch":26152196,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":571.78,"free":3051.3},{"epoch":26152197,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":571.25,"free":3051.82},{"epoch":26152198,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":571.22,"free":3051.85},{"epoch":26152199,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":571.37,"free":3051.7},{"epoch":26152200,"idl":99.86,"recv":0,"send":0,"writ":0.38,"used":571.85,"free":3051.23},{"epoch":26152201,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":571.76,"free":3051.32},{"epoch":26152202,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":570.81,"free":3052.26},{"epoch":26152203,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.78,"free":3052.29},{"epoch":26152204,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":570.75,"free":3052.31},{"epoch":26152205,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":571.71,"free":3051.37},{"epoch":26152206,"idl":99.79,"recv":0,"send":0,"writ":0.49,"used":572.18,"free":3050.9},{"epoch":26152207,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":572.1,"free":3050.97},{"epoch":26152208,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.07,"free":3051},{"epoch":26152209,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":572.04,"free":3051},{"epoch":26152210,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":572.03,"free":3051.03},{"epoch":26152211,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":572.54,"free":3050.51},{"epoch":26152212,"idl":99.95,"recv":0,"send":0,"writ":0.38,"used":571.97,"free":3051.08},{"epoch":26152213,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572,"free":3051.05},{"epoch":26152214,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.13,"free":3050.91},{"epoch":26152215,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":571.17,"free":3051.88},{"epoch":26152216,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.11,"free":3051.94},{"epoch":26152217,"idl":99.8,"recv":0,"send":0,"writ":0.65,"used":572.32,"free":3050.73},{"epoch":26152218,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.03,"free":3051.01},{"epoch":26152219,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.15,"used":571.99,"free":3051.05},{"epoch":26152220,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":572.23,"free":3050.83},{"epoch":26152221,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.32,"free":3050.73},{"epoch":26152222,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":572.49,"free":3050.56},{"epoch":26152223,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.08,"free":3050.96},{"epoch":26152224,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":572.05,"free":3050.99},{"epoch":26152225,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":570.83,"free":3052.22},{"epoch":26152226,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":570.77,"free":3052.28},{"epoch":26152227,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":572.03,"free":3051.01},{"epoch":26152228,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.56,"free":3051.48},{"epoch":26152229,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.61,"free":3051.43},{"epoch":26152230,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":571.84,"free":3051.21},{"epoch":26152231,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.82,"free":3051.23},{"epoch":26152232,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":572.69,"free":3050.35},{"epoch":26152233,"idl":99.97,"recv":0,"send":0,"writ":0.16,"used":572.24,"free":3050.8},{"epoch":26152234,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":572.06,"free":3050.97},{"epoch":26152235,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":571.32,"free":3051.73},{"epoch":26152236,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":571.37,"free":3051.67},{"epoch":26152237,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":571.73,"free":3051.32},{"epoch":26152238,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.06,"free":3051.98},{"epoch":26152239,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":571.26,"free":3051.75},{"epoch":26152240,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":571.26,"free":3051.77},{"epoch":26152241,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":571.23,"free":3051.8},{"epoch":26152242,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":571.72,"free":3051.3},{"epoch":26152243,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":571.6,"free":3051.42},{"epoch":26152244,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":571.57,"free":3051.46},{"epoch":26152245,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":571.33,"free":3051.72},{"epoch":26152246,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.29,"free":3051.76},{"epoch":26152247,"idl":99.77,"recv":0,"send":0.01,"writ":0.49,"used":571.5,"free":3051.55},{"epoch":26152248,"idl":99.58,"recv":0,"send":0,"writ":0.18,"used":570.73,"free":3052.31},{"epoch":26152249,"idl":99.65,"recv":0,"send":0,"writ":0.16,"used":570.84,"free":3052.2},{"epoch":26152250,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":571.66,"free":3051.4},{"epoch":26152251,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.57,"free":3051.48},{"epoch":26152252,"idl":99.77,"recv":0,"send":0,"writ":0.42,"used":571.72,"free":3051.33},{"epoch":26152253,"idl":99.96,"recv":0,"send":0,"writ":0.36,"used":570.54,"free":3052.51},{"epoch":26152254,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.5,"free":3052.53},{"epoch":26152255,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":570.74,"free":3052.31},{"epoch":26152256,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.76,"free":3052.29},{"epoch":26152257,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":570.88,"free":3052.17},{"epoch":26152258,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":571.28,"free":3051.76},{"epoch":26152259,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.57,"free":3052.46},{"epoch":26152260,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":569.62,"free":3053.44},{"epoch":26152261,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.55,"free":3053.5},{"epoch":26152262,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":569.52,"free":3053.53},{"epoch":26152263,"idl":99.69,"recv":0,"send":0,"writ":0.58,"used":571.02,"free":3052.02},{"epoch":26152264,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":571.05,"free":3051.98},{"epoch":26152265,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":571.63,"free":3051.42},{"epoch":26152266,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.61,"free":3051.44},{"epoch":26152267,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":571.58,"free":3051.46},{"epoch":26152268,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":571.78,"free":3051.25},{"epoch":26152269,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":571.52,"free":3051.49},{"epoch":26152270,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":571.51,"free":3051.52},{"epoch":26152271,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":571.48,"free":3051.54},{"epoch":26152272,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":571.55,"free":3051.47},{"epoch":26152273,"idl":99.78,"recv":0,"send":0,"writ":0.48,"used":572.05,"free":3050.96},{"epoch":26152274,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":571.83,"free":3051.18},{"epoch":26152275,"idl":99.31,"recv":0,"send":0,"writ":0.3,"used":571.09,"free":3051.93},{"epoch":26152276,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.05,"free":3051.97},{"epoch":26152277,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":571.26,"free":3051.75},{"epoch":26152278,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":571.59,"free":3051.42},{"epoch":26152279,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.2,"used":571.26,"free":3051.75},{"epoch":26152280,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":571.61,"free":3051.41},{"epoch":26152281,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":571.58,"free":3051.43},{"epoch":26152282,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.55,"free":3051.46},{"epoch":26152283,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":571.92,"free":3051.08},{"epoch":26152284,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":571.74,"free":3051.26},{"epoch":26152285,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":571.25,"free":3051.77},{"epoch":26152286,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":571.23,"free":3051.78},{"epoch":26152287,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":571.36,"free":3051.65},{"epoch":26152288,"idl":99.79,"recv":0,"send":0,"writ":0.38,"used":571.7,"free":3051.31},{"epoch":26152289,"idl":99.94,"recv":0,"send":0,"writ":0.35,"used":571.8,"free":3051.22},{"epoch":26152290,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":571.79,"free":3051.25},{"epoch":26152291,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.76,"free":3051.27},{"epoch":26152292,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.73,"free":3051.3},{"epoch":26152293,"idl":99.68,"recv":0,"send":0,"writ":0.14,"used":571.7,"free":3051.33},{"epoch":26152294,"idl":99.3,"recv":0,"send":0,"writ":0.54,"used":572.37,"free":3050.64},{"epoch":26152295,"idl":99.21,"recv":0,"send":0,"writ":0.28,"used":571.65,"free":3051.39},{"epoch":26152296,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.58,"free":3051.45},{"epoch":26152297,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":571.55,"free":3051.48},{"epoch":26152298,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":571.51,"free":3051.51},{"epoch":26152299,"idl":99.69,"recv":0,"send":0,"writ":0.66,"used":571.83,"free":3051.17},{"epoch":26152300,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":571.72,"free":3051.29},{"epoch":26152301,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":571.69,"free":3051.32},{"epoch":26152302,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.77,"free":3051.24},{"epoch":26152303,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":571.83,"free":3051.18},{"epoch":26152304,"idl":99.74,"recv":0,"send":0,"writ":0.5,"used":572.02,"free":3050.97},{"epoch":26152305,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":571.55,"free":3051.46},{"epoch":26152306,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":571.51,"free":3051.5},{"epoch":26152307,"idl":99.91,"recv":0,"send":0.01,"writ":0.14,"used":571.47,"free":3051.53},{"epoch":26152308,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.44,"free":3051.56},{"epoch":26152309,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":571.45,"free":3051.54},{"epoch":26152310,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":571.07,"free":3051.93},{"epoch":26152311,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.05,"free":3051.95},{"epoch":26152312,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":571.28,"free":3051.72},{"epoch":26152313,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.49,"free":3051.51},{"epoch":26152314,"idl":99.79,"recv":0,"send":0,"writ":0.43,"used":571.64,"free":3051.35},{"epoch":26152315,"idl":99.91,"recv":0,"send":0,"writ":0.4,"used":571.68,"free":3051.32},{"epoch":26152316,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.74,"free":3051.26},{"epoch":26152317,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":571.85,"free":3051.15},{"epoch":26152318,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.82,"free":3051.18},{"epoch":26152319,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":572.51,"free":3050.48},{"epoch":26152320,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":571.54,"free":3051.47},{"epoch":26152321,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.5,"free":3051.5},{"epoch":26152322,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":571.47,"free":3051.53},{"epoch":26152323,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.48,"free":3051.51},{"epoch":26152324,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":571.59,"free":3051.4},{"epoch":26152325,"idl":99.76,"recv":0,"send":0,"writ":0.71,"used":571.92,"free":3051.08},{"epoch":26152326,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.54,"free":3051.45},{"epoch":26152327,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":571.51,"free":3051.48},{"epoch":26152328,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.47,"free":3051.51},{"epoch":26152329,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":571.7,"free":3051.26},{"epoch":26152330,"idl":99.74,"recv":0,"send":0,"writ":0.72,"used":572.36,"free":3050.62},{"epoch":26152331,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.08,"free":3050.9},{"epoch":26152332,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.05,"free":3050.93},{"epoch":26152333,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.02,"free":3050.96},{"epoch":26152334,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":571.99,"free":3050.98},{"epoch":26152335,"idl":99.75,"recv":0,"send":0,"writ":0.67,"used":572.1,"free":3050.89},{"epoch":26152336,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":571.71,"free":3051.27},{"epoch":26152337,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":571.71,"free":3051.27},{"epoch":26152338,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.84,"free":3051.14},{"epoch":26152339,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.15,"used":571.8,"free":3051.17},{"epoch":26152340,"idl":99.76,"recv":0,"send":0,"writ":0.71,"used":572.39,"free":3050.6},{"epoch":26152341,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":572,"free":3050.99},{"epoch":26152342,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":571.97,"free":3051.02},{"epoch":26152343,"idl":99.47,"recv":0,"send":0,"writ":0.16,"used":571.95,"free":3051.04},{"epoch":26152344,"idl":99.39,"recv":0,"send":0,"writ":0.14,"used":571.92,"free":3051.07},{"epoch":26152345,"idl":99.21,"recv":0,"send":0,"writ":0.67,"used":571.41,"free":3051.6},{"epoch":26152346,"idl":99.63,"recv":0,"send":0,"writ":0.16,"used":571.33,"free":3051.68},{"epoch":26152347,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":571.3,"free":3051.71},{"epoch":26152348,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":571.26,"free":3051.75},{"epoch":26152349,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":571.23,"free":3051.77},{"epoch":26152350,"idl":99.73,"recv":0,"send":0,"writ":0.64,"used":572.22,"free":3050.79},{"epoch":26152351,"idl":99.92,"recv":0,"send":0,"writ":0.23,"used":572,"free":3051.01},{"epoch":26152352,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.05,"free":3050.95},{"epoch":26152353,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":572.02,"free":3050.98},{"epoch":26152354,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.99,"free":3051.01},{"epoch":26152355,"idl":99.72,"recv":0,"send":0,"writ":0.7,"used":572.27,"free":3050.75},{"epoch":26152356,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.71,"free":3051.3},{"epoch":26152357,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":571.68,"free":3051.33},{"epoch":26152358,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":571.71,"free":3051.29},{"epoch":26152359,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":572.29,"free":3050.69},{"epoch":26152360,"idl":99.73,"recv":0,"send":0,"writ":0.7,"used":571.68,"free":3051.32},{"epoch":26152361,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":571.76,"free":3051.23},{"epoch":26152362,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.73,"free":3051.26},{"epoch":26152363,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.7,"free":3051.29},{"epoch":26152364,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":571.66,"free":3051.32},{"epoch":26152365,"idl":99.92,"recv":0,"send":0,"writ":0.34,"used":571.53,"free":3051.47},{"epoch":26152366,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":572.18,"free":3050.81},{"epoch":26152367,"idl":99.9,"recv":0,"send":0.01,"writ":0.14,"used":571.81,"free":3051.18},{"epoch":26152368,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":571.78,"free":3051.2},{"epoch":26152369,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.74,"free":3051.24},{"epoch":26152370,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":571.98,"free":3051.01},{"epoch":26152371,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":572.29,"free":3050.7},{"epoch":26152372,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":571.74,"free":3051.24},{"epoch":26152373,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":571.59,"free":3051.39},{"epoch":26152374,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.56,"free":3051.42},{"epoch":26152375,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":571.08,"free":3051.92},{"epoch":26152376,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":572.17,"free":3050.82},{"epoch":26152377,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.96,"free":3051.02},{"epoch":26152378,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":571.93,"free":3051.05},{"epoch":26152379,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":571.97,"free":3051},{"epoch":26152380,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":572.08,"free":3050.91},{"epoch":26152381,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":572.56,"free":3050.43},{"epoch":26152382,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":572.26,"free":3050.71},{"epoch":26152383,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":572.23,"free":3050.74},{"epoch":26152384,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.21,"free":3050.76},{"epoch":26152385,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":572.2,"free":3050.78},{"epoch":26152386,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":572.64,"free":3050.34},{"epoch":26152387,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.28,"free":3050.7},{"epoch":26152388,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.29,"free":3050.68},{"epoch":26152389,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":572.26,"free":3050.7},{"epoch":26152390,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":571.84,"free":3051.13},{"epoch":26152391,"idl":99.79,"recv":0,"send":0.01,"writ":0.41,"used":571.75,"free":3051.21},{"epoch":26152392,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":571.18,"free":3051.79},{"epoch":26152393,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":571.2,"free":3051.76},{"epoch":26152394,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":571.09,"free":3051.88},{"epoch":26152395,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":571.06,"free":3051.93},{"epoch":26152396,"idl":99.8,"recv":0,"send":0,"writ":0.5,"used":571.44,"free":3051.54},{"epoch":26152397,"idl":99.93,"recv":0,"send":0,"writ":0.23,"used":571.23,"free":3051.74},{"epoch":26152398,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.2,"free":3051.77},{"epoch":26152399,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.15,"used":571.17,"free":3051.8},{"epoch":26152400,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":570.97,"free":3052.01},{"epoch":26152401,"idl":99.79,"recv":0,"send":0,"writ":0.43,"used":571.48,"free":3051.5},{"epoch":26152402,"idl":99.95,"recv":0,"send":0,"writ":0.34,"used":571.52,"free":3051.45},{"epoch":26152403,"idl":99.64,"recv":0,"send":0,"writ":0.14,"used":571.5,"free":3051.47},{"epoch":26152404,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.46,"free":3051.5},{"epoch":26152405,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":571.46,"free":3051.52},{"epoch":26152406,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.43,"free":3051.56},{"epoch":26152407,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":571.86,"free":3051.13},{"epoch":26152408,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.24,"free":3051.75},{"epoch":26152409,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":571.29,"free":3051.69},{"epoch":26152410,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":571.29,"free":3051.71},{"epoch":26152411,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":571.26,"free":3051.74},{"epoch":26152412,"idl":99.79,"recv":0,"send":0,"writ":0.52,"used":571.77,"free":3051.23},{"epoch":26152413,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.44,"free":3051.55},{"epoch":26152414,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":571.42,"free":3051.57},{"epoch":26152415,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":570.94,"free":3052.06},{"epoch":26152416,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":571.01,"free":3051.99},{"epoch":26152417,"idl":99.83,"recv":0,"send":0,"writ":0.55,"used":571.76,"free":3051.23},{"epoch":26152418,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":571.54,"free":3051.45},{"epoch":26152419,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":571.47,"free":3051.49},{"epoch":26152420,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":570.78,"free":3052.2},{"epoch":26152421,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.74,"free":3052.23},{"epoch":26152422,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":571.51,"free":3051.46},{"epoch":26152423,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":571.42,"free":3051.54},{"epoch":26152424,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.49,"free":3051.46},{"epoch":26152425,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":571.33,"free":3051.65},{"epoch":26152426,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":571.29,"free":3051.68},{"epoch":26152427,"idl":99.78,"recv":0,"send":0.01,"writ":0.71,"used":571.52,"free":3051.45},{"epoch":26152428,"idl":99.92,"recv":0,"send":0,"writ":0.24,"used":570.97,"free":3051.99},{"epoch":26152429,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":570.93,"free":3052.02},{"epoch":26152430,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":571.41,"free":3051.56},{"epoch":26152431,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":571.51,"free":3051.45},{"epoch":26152432,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":571.87,"free":3051.09},{"epoch":26152433,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":571.75,"free":3051.21},{"epoch":26152434,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":571.72,"free":3051.23},{"epoch":26152435,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":571.47,"free":3051.5},{"epoch":26152436,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":571.43,"free":3051.53},{"epoch":26152437,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":572.07,"free":3050.88},{"epoch":26152438,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.5,"free":3051.45},{"epoch":26152439,"idl":99.66,"recv":0,"send":0,"writ":0.18,"used":571.53,"free":3051.41},{"epoch":26152440,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":571.77,"free":3051.19},{"epoch":26152441,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":571.74,"free":3051.22},{"epoch":26152442,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.71,"free":3051.24},{"epoch":26152443,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":571.86,"free":3051.09},{"epoch":26152444,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":571.41,"free":3051.53},{"epoch":26152445,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":571.16,"free":3051.8},{"epoch":26152446,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":571.24,"free":3051.72},{"epoch":26152447,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":571.27,"free":3051.68},{"epoch":26152448,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":571.59,"free":3051.36},{"epoch":26152449,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":571.46,"free":3051.46},{"epoch":26152450,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":571.45,"free":3051.49},{"epoch":26152451,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":571.42,"free":3051.52},{"epoch":26152452,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":571.39,"free":3051.54},{"epoch":26152453,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":572,"free":3050.93},{"epoch":26152454,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":571.76,"free":3051.16},{"epoch":26152455,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":571.76,"free":3051.18},{"epoch":26152456,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":571.73,"free":3051.21},{"epoch":26152457,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":571.7,"free":3051.23},{"epoch":26152458,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":572.02,"free":3050.9},{"epoch":26152459,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.14,"used":571.63,"free":3051.29},{"epoch":26152460,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":571.77,"free":3051.17},{"epoch":26152461,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":571.78,"free":3051.16},{"epoch":26152462,"idl":99.34,"recv":0,"send":0,"writ":0.18,"used":571.75,"free":3051.18},{"epoch":26152463,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":572.17,"free":3050.76},{"epoch":26152464,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":571.93,"free":3050.99},{"epoch":26152465,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":571.21,"free":3051.73},{"epoch":26152466,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":571.16,"free":3051.78},{"epoch":26152467,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":571.12,"free":3051.81},{"epoch":26152468,"idl":99.81,"recv":0,"send":0,"writ":0.42,"used":572.08,"free":3050.84},{"epoch":26152469,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":571.78,"free":3051.16},{"epoch":26152470,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.3,"used":571.22,"free":3051.74},{"epoch":26152471,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.16,"free":3051.79},{"epoch":26152472,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.28,"free":3051.67},{"epoch":26152473,"idl":99.77,"recv":0,"send":0,"writ":0.39,"used":571.93,"free":3051.02},{"epoch":26152474,"idl":99.92,"recv":0,"send":0,"writ":0.37,"used":571.75,"free":3051.2},{"epoch":26152475,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":571.99,"free":3050.97},{"epoch":26152476,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.96,"free":3051},{"epoch":26152477,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":571.93,"free":3051.02},{"epoch":26152478,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.89,"free":3051.05},{"epoch":26152479,"idl":99.73,"recv":0,"send":0,"writ":0.72,"used":572.13,"free":3050.79},{"epoch":26152480,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":572.04,"free":3050.9},{"epoch":26152481,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":572,"free":3050.93},{"epoch":26152482,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":571.97,"free":3050.95},{"epoch":26152483,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":571.95,"free":3050.98},{"epoch":26152484,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":572.27,"free":3050.65},{"epoch":26152485,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":571.91,"free":3051.02},{"epoch":26152486,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.88,"free":3051.05},{"epoch":26152487,"idl":99.91,"recv":0,"send":0.01,"writ":0.17,"used":571.95,"free":3050.97},{"epoch":26152488,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":572,"free":3050.92},{"epoch":26152489,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":572.31,"free":3050.6},{"epoch":26152490,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":572.19,"free":3050.74},{"epoch":26152491,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.17,"free":3050.76},{"epoch":26152492,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":571.95,"free":3050.98},{"epoch":26152493,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":571.62,"free":3051.3},{"epoch":26152494,"idl":96.78,"recv":0.02,"send":0.01,"writ":14.58,"used":581.01,"free":3043.85},{"epoch":26152495,"idl":99.82,"recv":0,"send":0,"writ":63.59,"used":574.55,"free":3048.33},{"epoch":26152496,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":574.52,"free":3048.36},{"epoch":26152497,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":574.35,"free":3048.53},{"epoch":26152498,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":574.4,"free":3048.47},{"epoch":26152499,"idl":99.82,"recv":0,"send":0,"writ":0.43,"used":573.69,"free":3049.19},{"epoch":26152500,"idl":99.71,"recv":0,"send":0,"writ":0.47,"used":571.95,"free":3050.98},{"epoch":26152501,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":571.92,"free":3051.01},{"epoch":26152502,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":571.89,"free":3051.03},{"epoch":26152503,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":571.85,"free":3051.06},{"epoch":26152504,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":572.05,"free":3050.86},{"epoch":26152505,"idl":99.86,"recv":0,"send":0,"writ":0.44,"used":571.88,"free":3051.07},{"epoch":26152506,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":571.98,"free":3050.97},{"epoch":26152507,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":571.95,"free":3050.99},{"epoch":26152508,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":571.92,"free":3051.02},{"epoch":26152509,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":572.8,"free":3050.11},{"epoch":26152510,"idl":99.85,"recv":0,"send":0,"writ":0.46,"used":572.13,"free":3050.81},{"epoch":26152511,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":572.1,"free":3050.85},{"epoch":26152512,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":572.07,"free":3050.87},{"epoch":26152513,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.21,"free":3050.72},{"epoch":26152514,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":572.23,"free":3050.7},{"epoch":26152515,"idl":99.7,"recv":0,"send":0,"writ":0.7,"used":572.64,"free":3050.3},{"epoch":26152516,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":571.94,"free":3051},{"epoch":26152517,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":571.67,"free":3051.26},{"epoch":26152518,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":571.64,"free":3051.29},{"epoch":26152519,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.16,"used":571.61,"free":3051.32},{"epoch":26152520,"idl":99.7,"recv":0,"send":0,"writ":0.68,"used":571.96,"free":3050.98},{"epoch":26152521,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":571.51,"free":3051.43},{"epoch":26152522,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":571.47,"free":3051.46},{"epoch":26152523,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.44,"free":3051.48},{"epoch":26152524,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.42,"free":3051.5},{"epoch":26152525,"idl":98.64,"recv":0,"send":0,"writ":15.75,"used":574.17,"free":3049.21},{"epoch":26152526,"idl":99.89,"recv":0,"send":0,"writ":0.22,"used":571.85,"free":3051.07},{"epoch":26152527,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":571.83,"free":3051.09},{"epoch":26152528,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":571.9,"free":3051},{"epoch":26152529,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":571.95,"free":3050.95},{"epoch":26152530,"idl":99.69,"recv":0,"send":0,"writ":0.66,"used":572.5,"free":3050.42},{"epoch":26152531,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":571.41,"free":3051.5},{"epoch":26152532,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":571.38,"free":3051.53},{"epoch":26152533,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":571.34,"free":3051.56},{"epoch":26152534,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":571.31,"free":3051.59},{"epoch":26152535,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":571.59,"free":3051.33},{"epoch":26152536,"idl":99.91,"recv":0,"send":0,"writ":0.28,"used":570.96,"free":3051.95},{"epoch":26152537,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":570.94,"free":3051.98},{"epoch":26152538,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":570.91,"free":3052},{"epoch":26152539,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":572.09,"free":3050.79},{"epoch":26152540,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":572.65,"free":3050.25},{"epoch":26152541,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":572.07,"free":3050.82},{"epoch":26152542,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":572.13,"free":3050.76},{"epoch":26152543,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":572.18,"free":3050.71},{"epoch":26152544,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":572.14,"free":3050.76},{"epoch":26152545,"idl":99.67,"recv":0,"send":0,"writ":0.73,"used":572.03,"free":3050.89},{"epoch":26152546,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":571.12,"free":3051.79},{"epoch":26152547,"idl":99.82,"recv":0,"send":0.01,"writ":0.25,"used":571.09,"free":3051.82},{"epoch":26152548,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":571.11,"free":3051.8},{"epoch":26152549,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":571.2,"free":3051.71},{"epoch":26152550,"idl":98.77,"recv":0,"send":0,"writ":1.43,"used":572.79,"free":3050.11},{"epoch":26152551,"idl":99.85,"recv":0,"send":0,"writ":0.39,"used":571.65,"free":3051.27},{"epoch":26152552,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":571.53,"free":3051.38},{"epoch":26152553,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":571.35,"free":3051.55},{"epoch":26152554,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":571.32,"free":3051.58},{"epoch":26152555,"idl":99.82,"recv":0,"send":0,"writ":0.35,"used":571.31,"free":3051.61},{"epoch":26152556,"idl":99.69,"recv":0,"send":0,"writ":0.58,"used":572.06,"free":3050.87},{"epoch":26152557,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":571.44,"free":3051.48},{"epoch":26152558,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":571.42,"free":3051.51},{"epoch":26152559,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":571.4,"free":3051.52},{"epoch":26152560,"idl":99.73,"recv":0,"send":0,"writ":0.35,"used":571.86,"free":3051.08},{"epoch":26152561,"idl":98.86,"recv":0,"send":0,"writ":0.54,"used":572.05,"free":3050.89},{"epoch":26152562,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":571.32,"free":3051.61},{"epoch":26152563,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":571.34,"free":3051.59},{"epoch":26152564,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":571.47,"free":3051.45},{"epoch":26152565,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":571.72,"free":3051.22},{"epoch":26152566,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":572.01,"free":3050.93},{"epoch":26152567,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":571.42,"free":3051.53},{"epoch":26152568,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":571.39,"free":3051.55},{"epoch":26152569,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":571.34,"free":3051.58},{"epoch":26152570,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":571.15,"free":3051.79},{"epoch":26152571,"idl":99.71,"recv":0,"send":0,"writ":0.41,"used":571.76,"free":3051.17},{"epoch":26152572,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":571.69,"free":3051.24},{"epoch":26152573,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":571.66,"free":3051.26},{"epoch":26152574,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":571.64,"free":3051.28},{"epoch":26152575,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":570.9,"free":3052.03},{"epoch":26152576,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":571.31,"free":3051.62},{"epoch":26152577,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":571.33,"free":3051.6},{"epoch":26152578,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":571.37,"free":3051.55},{"epoch":26152579,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.17,"used":571.46,"free":3051.46},{"epoch":26152580,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":571.45,"free":3051.48},{"epoch":26152581,"idl":99.7,"recv":0,"send":0,"writ":0.4,"used":571.86,"free":3051.07},{"epoch":26152582,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":571.87,"free":3051.05},{"epoch":26152583,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":571.84,"free":3051.08},{"epoch":26152584,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":571.82,"free":3051.1},{"epoch":26152585,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":571.62,"free":3051.32},{"epoch":26152586,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":572.07,"free":3050.86},{"epoch":26152587,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":572.19,"free":3050.74},{"epoch":26152588,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":572.14,"free":3050.78},{"epoch":26152589,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":572.12,"free":3050.8},{"epoch":26152590,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":571.87,"free":3051.07},{"epoch":26152591,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.83,"free":3051.1},{"epoch":26152592,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":572.49,"free":3050.44},{"epoch":26152593,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":571.92,"free":3051.01},{"epoch":26152594,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":571.93,"free":3050.99},{"epoch":26152595,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.32,"used":571.89,"free":3051.04},{"epoch":26152596,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":571.84,"free":3051.09},{"epoch":26152597,"idl":99.71,"recv":0,"send":0,"writ":0.61,"used":572.16,"free":3050.77},{"epoch":26152598,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":571.85,"free":3051.08},{"epoch":26152599,"idl":99.77,"recv":0,"send":0,"writ":0.39,"used":571.95,"free":3050.95},{"epoch":26152600,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":572.02,"free":3050.89},{"epoch":26152601,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":571.89,"free":3051.02},{"epoch":26152602,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":572.37,"free":3050.53},{"epoch":26152603,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":572.08,"free":3050.82},{"epoch":26152604,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":572.05,"free":3050.85},{"epoch":26152605,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":571.1,"free":3051.81},{"epoch":26152606,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":571.14,"free":3051.77},{"epoch":26152607,"idl":99.68,"recv":0,"send":0.01,"writ":0.54,"used":571.91,"free":3050.99},{"epoch":26152608,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":571.9,"free":3051},{"epoch":26152609,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":571.86,"free":3051.03},{"epoch":26152610,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":572.09,"free":3050.82},{"epoch":26152611,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":572.07,"free":3050.84},{"epoch":26152612,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":572.29,"free":3050.61},{"epoch":26152613,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":570.64,"free":3052.26},{"epoch":26152614,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":570.71,"free":3052.18},{"epoch":26152615,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":571.9,"free":3051.02},{"epoch":26152616,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":571.9,"free":3051.01},{"epoch":26152617,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":572.59,"free":3050.32},{"epoch":26152618,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":572.08,"free":3050.82},{"epoch":26152619,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":572.05,"free":3050.84},{"epoch":26152620,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":571.66,"free":3051.25},{"epoch":26152621,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":571.71,"free":3051.2},{"epoch":26152622,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":571.68,"free":3051.22},{"epoch":26152623,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":572.24,"free":3050.66},{"epoch":26152624,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":571.86,"free":3051.03},{"epoch":26152625,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":571.86,"free":3051.05},{"epoch":26152626,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":571.83,"free":3051.08},{"epoch":26152627,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.83,"free":3051.07},{"epoch":26152628,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":572.06,"free":3050.84},{"epoch":26152629,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":571.9,"free":3050.97},{"epoch":26152630,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":571.89,"free":3051},{"epoch":26152631,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":571.86,"free":3051.02},{"epoch":26152632,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":571.83,"free":3051.05},{"epoch":26152633,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.59,"used":572.22,"free":3050.66},{"epoch":26152634,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":571.87,"free":3051},{"epoch":26152635,"idl":99.74,"recv":0,"send":0,"writ":0.34,"used":571.62,"free":3051.27},{"epoch":26152636,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":571.58,"free":3051.3},{"epoch":26152637,"idl":99.86,"recv":0,"send":0,"writ":0.22,"used":571.8,"free":3051.08},{"epoch":26152638,"idl":99.7,"recv":0,"send":0,"writ":0.51,"used":572.34,"free":3050.53},{"epoch":26152639,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.23,"used":572.11,"free":3050.76},{"epoch":26152640,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":572.16,"free":3050.72},{"epoch":26152641,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":572.13,"free":3050.75},{"epoch":26152642,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.1,"free":3050.77},{"epoch":26152643,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":571.52,"free":3051.35},{"epoch":26152644,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":570.07,"free":3052.79},{"epoch":26152645,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":571.08,"free":3051.79},{"epoch":26152646,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":571.12,"free":3051.76},{"epoch":26152647,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":571.17,"free":3051.69},{"epoch":26152648,"idl":99.72,"recv":0,"send":0,"writ":0.44,"used":571.72,"free":3051.14},{"epoch":26152649,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":571.85,"free":3051.01},{"epoch":26152650,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":572.08,"free":3050.8},{"epoch":26152651,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":572.06,"free":3050.82},{"epoch":26152652,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.03,"free":3050.84},{"epoch":26152653,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":572.35,"free":3050.51},{"epoch":26152654,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.11,"free":3050.75},{"epoch":26152655,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":572.15,"free":3050.73},{"epoch":26152656,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.12,"free":3050.76},{"epoch":26152657,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":572.09,"free":3050.78},{"epoch":26152658,"idl":99.72,"recv":0,"send":0,"writ":0.4,"used":572.42,"free":3050.45},{"epoch":26152659,"idl":99.82,"recv":0,"send":0,"writ":0.42,"used":572.04,"free":3050.8},{"epoch":26152660,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":572.04,"free":3050.82},{"epoch":26152661,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":572.06,"free":3050.79},{"epoch":26152662,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":572.2,"free":3050.65},{"epoch":26152663,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":572.17,"free":3050.68},{"epoch":26152664,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":572.64,"free":3050.2},{"epoch":26152665,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":571.88,"free":3050.98},{"epoch":26152666,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":571.85,"free":3051.01},{"epoch":26152667,"idl":99.83,"recv":0,"send":0.01,"writ":0.14,"used":571.82,"free":3051.03},{"epoch":26152668,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":571.8,"free":3051.05},{"epoch":26152669,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":572.99,"free":3049.85},{"epoch":26152670,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":572.41,"free":3050.44},{"epoch":26152671,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":572.38,"free":3050.48},{"epoch":26152672,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":572.2,"free":3050.65},{"epoch":26152673,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":571.83,"free":3051.02},{"epoch":26152674,"idl":99.67,"recv":0,"send":0,"writ":0.57,"used":571.21,"free":3051.62},{"epoch":26152675,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":571.51,"free":3051.34},{"epoch":26152676,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":571.66,"free":3051.19},{"epoch":26152677,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":571.67,"free":3051.18},{"epoch":26152678,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":571.64,"free":3051.2},{"epoch":26152679,"idl":99.7,"recv":0,"send":0,"writ":0.66,"used":571.85,"free":3050.99},{"epoch":26152680,"idl":99.77,"recv":0.01,"send":0.06,"writ":0.32,"used":571.61,"free":3051.24},{"epoch":26152681,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":571.62,"free":3051.24},{"epoch":26152682,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.6,"free":3051.26},{"epoch":26152683,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":571.57,"free":3051.29},{"epoch":26152684,"idl":99.72,"recv":0,"send":0,"writ":0.52,"used":572.03,"free":3050.82},{"epoch":26152685,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":572.02,"free":3050.84},{"epoch":26152686,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":572.09,"free":3050.77},{"epoch":26152687,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":572.15,"free":3050.71},{"epoch":26152688,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":572.13,"free":3050.73},{"epoch":26152689,"idl":99.63,"recv":0,"send":0,"writ":0.56,"used":572.86,"free":3049.97},{"epoch":26152690,"idl":99.76,"recv":0,"send":0,"writ":0.42,"used":572.07,"free":3050.77},{"epoch":26152691,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":572.05,"free":3050.79},{"epoch":26152692,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":572.01,"free":3050.82},{"epoch":26152693,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.05,"free":3050.78},{"epoch":26152694,"idl":99.71,"recv":0,"send":0,"writ":0.41,"used":572.37,"free":3050.46},{"epoch":26152695,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":570.48,"free":3052.36},{"epoch":26152696,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.38,"free":3052.45},{"epoch":26152697,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":570.35,"free":3052.48},{"epoch":26152698,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":570.31,"free":3052.52},{"epoch":26152699,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.16,"used":570.28,"free":3052.55},{"epoch":26152700,"idl":99.64,"recv":0,"send":0,"writ":0.68,"used":571.62,"free":3051.22},{"epoch":26152701,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":570.95,"free":3051.89},{"epoch":26152702,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":570.92,"free":3051.92},{"epoch":26152703,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.89,"free":3051.94},{"epoch":26152704,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":570.86,"free":3051.97},{"epoch":26152705,"idl":99.74,"recv":0,"send":0,"writ":0.7,"used":572.17,"free":3050.67},{"epoch":26152706,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":571.81,"free":3051.05},{"epoch":26152707,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.82,"free":3051.05},{"epoch":26152708,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":571.93,"free":3050.94},{"epoch":26152709,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":571.9,"free":3050.97},{"epoch":26152710,"idl":99.73,"recv":0,"send":0,"writ":0.7,"used":571.65,"free":3051.23},{"epoch":26152711,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":570.87,"free":3052},{"epoch":26152712,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":570.84,"free":3052.03},{"epoch":26152713,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.8,"free":3052.06},{"epoch":26152714,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.82,"free":3052.04},{"epoch":26152715,"idl":99.74,"recv":0.01,"send":0.01,"writ":0.72,"used":571.96,"free":3050.92},{"epoch":26152716,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":571.32,"free":3051.54},{"epoch":26152717,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.28,"free":3051.58},{"epoch":26152718,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":571.34,"free":3051.51},{"epoch":26152719,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":571.63,"free":3051.21},{"epoch":26152720,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":572.23,"free":3050.62},{"epoch":26152721,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":571.84,"free":3051.01},{"epoch":26152722,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.81,"free":3051.04},{"epoch":26152723,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":571.77,"free":3051.06},{"epoch":26152724,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.79,"free":3051.04},{"epoch":26152725,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":572.59,"free":3050.26},{"epoch":26152726,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":571.64,"free":3051.2},{"epoch":26152727,"idl":99.93,"recv":0,"send":0.01,"writ":0.14,"used":571.6,"free":3051.25},{"epoch":26152728,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":571.55,"free":3051.28},{"epoch":26152729,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.5,"free":3051.33},{"epoch":26152730,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":571.86,"free":3050.98},{"epoch":26152731,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":572.44,"free":3050.39},{"epoch":26152732,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":571.95,"free":3050.89},{"epoch":26152733,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.54,"free":3051.29},{"epoch":26152734,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.49,"free":3051.33},{"epoch":26152735,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":571.85,"free":3050.99},{"epoch":26152736,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":572.22,"free":3050.62},{"epoch":26152737,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":571.81,"free":3051.02},{"epoch":26152738,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":571.77,"free":3051.06},{"epoch":26152739,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.73,"free":3051.09},{"epoch":26152740,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":571.88,"free":3050.97},{"epoch":26152741,"idl":99.78,"recv":0,"send":0,"writ":0.52,"used":572.26,"free":3050.58},{"epoch":26152742,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.86,"free":3050.97},{"epoch":26152743,"idl":99.58,"recv":0,"send":0,"writ":0.14,"used":571.82,"free":3051.01},{"epoch":26152744,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":571.77,"free":3051.05},{"epoch":26152745,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":572.05,"free":3050.8},{"epoch":26152746,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":572.49,"free":3050.34},{"epoch":26152747,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.09,"free":3050.74},{"epoch":26152748,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.05,"free":3050.78},{"epoch":26152749,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":572,"free":3050.8},{"epoch":26152750,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":571.62,"free":3051.2},{"epoch":26152751,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":572.2,"free":3050.61},{"epoch":26152752,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":572.09,"free":3050.72},{"epoch":26152753,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.04,"free":3050.76},{"epoch":26152754,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":572,"free":3050.8},{"epoch":26152755,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":572.34,"free":3050.48},{"epoch":26152756,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":572.79,"free":3050.02},{"epoch":26152757,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":571.83,"free":3050.97},{"epoch":26152758,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":571.78,"free":3051.02},{"epoch":26152759,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.14,"used":571.74,"free":3051.06},{"epoch":26152760,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":571.84,"free":3050.97},{"epoch":26152761,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":572.24,"free":3050.56},{"epoch":26152762,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":572.08,"free":3050.72},{"epoch":26152763,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.04,"free":3050.76},{"epoch":26152764,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.01,"free":3050.81},{"epoch":26152765,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":572.05,"free":3050.78},{"epoch":26152766,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":572.41,"free":3050.42},{"epoch":26152767,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":571.34,"free":3051.48},{"epoch":26152768,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":571.29,"free":3051.53},{"epoch":26152769,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.28,"free":3051.53},{"epoch":26152770,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":572.36,"free":3050.47},{"epoch":26152771,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":572.33,"free":3050.49},{"epoch":26152772,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":571.06,"free":3051.76},{"epoch":26152773,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.54,"free":3052.28},{"epoch":26152774,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.53,"free":3052.29},{"epoch":26152775,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":571.88,"free":3050.95},{"epoch":26152776,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.86,"free":3050.96},{"epoch":26152777,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":572.69,"free":3050.12},{"epoch":26152778,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.27,"free":3050.55},{"epoch":26152779,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":572.31,"free":3050.48},{"epoch":26152780,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":572.15,"free":3050.65},{"epoch":26152781,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.1,"free":3050.7},{"epoch":26152782,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":572.54,"free":3050.25},{"epoch":26152783,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":572.26,"free":3050.53},{"epoch":26152784,"idl":99.92,"recv":0.02,"send":0.1,"writ":0.19,"used":572.28,"free":3050.52},{"epoch":26152785,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":572.04,"free":3050.78},{"epoch":26152786,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":572,"free":3050.81},{"epoch":26152787,"idl":99.78,"recv":0,"send":0.01,"writ":0.57,"used":571.96,"free":3050.85},{"epoch":26152788,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.39,"free":3051.41},{"epoch":26152789,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":571.34,"free":3051.46},{"epoch":26152790,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":572.07,"free":3050.74},{"epoch":26152791,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":572.05,"free":3050.76},{"epoch":26152792,"idl":99.79,"recv":0,"send":0,"writ":0.6,"used":572.74,"free":3050.06},{"epoch":26152793,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.98,"free":3050.82},{"epoch":26152794,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.01,"free":3050.79},{"epoch":26152795,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":572.43,"free":3050.4},{"epoch":26152796,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":572.35,"free":3050.48},{"epoch":26152797,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":572.34,"free":3050.48},{"epoch":26152798,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":570.81,"free":3052.01},{"epoch":26152799,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.78,"free":3052.03},{"epoch":26152800,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":571.73,"free":3051.1},{"epoch":26152801,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":571.73,"free":3051.09},{"epoch":26152802,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":572.21,"free":3050.61},{"epoch":26152803,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.11,"free":3050.71},{"epoch":26152804,"idl":99.22,"recv":0,"send":0,"writ":0.14,"used":572.08,"free":3050.73},{"epoch":26152805,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":572.32,"free":3050.51},{"epoch":26152806,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.29,"free":3050.53},{"epoch":26152807,"idl":99.82,"recv":0,"send":0,"writ":0.38,"used":572.55,"free":3050.26},{"epoch":26152808,"idl":99.95,"recv":0,"send":0,"writ":0.36,"used":571.48,"free":3051.33},{"epoch":26152809,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":572.23,"free":3050.56},{"epoch":26152810,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":572.64,"free":3050.17},{"epoch":26152811,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.61,"free":3050.19},{"epoch":26152812,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.58,"free":3050.22},{"epoch":26152813,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":572.6,"free":3050.2},{"epoch":26152814,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.03,"free":3050.78},{"epoch":26152815,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":571.29,"free":3051.54},{"epoch":26152816,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.29,"free":3051.54},{"epoch":26152817,"idl":99.92,"recv":0,"send":0,"writ":0.22,"used":571.64,"free":3051.18},{"epoch":26152818,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":572.48,"free":3050.33},{"epoch":26152819,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.14,"used":572.33,"free":3050.48},{"epoch":26152820,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":572.31,"free":3050.51},{"epoch":26152821,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.28,"free":3050.54},{"epoch":26152822,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":572.25,"free":3050.57},{"epoch":26152823,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":572.77,"free":3050.04},{"epoch":26152824,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.62,"free":3050.19},{"epoch":26152825,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":572.61,"free":3050.22},{"epoch":26152826,"idl":99.67,"recv":0,"send":0,"writ":0.14,"used":572.58,"free":3050.25},{"epoch":26152827,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.56,"free":3050.26},{"epoch":26152828,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":572.32,"free":3050.5},{"epoch":26152829,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.02,"free":3051.79},{"epoch":26152830,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":571.98,"free":3050.85},{"epoch":26152831,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.08,"free":3050.74},{"epoch":26152832,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.12,"free":3050.7},{"epoch":26152833,"idl":99.77,"recv":0.01,"send":0,"writ":0.57,"used":572.71,"free":3050.11},{"epoch":26152834,"idl":99.9,"recv":0.01,"send":0,"writ":0.15,"used":572.55,"free":3050.26},{"epoch":26152835,"idl":99.85,"recv":0.01,"send":0,"writ":0.32,"used":572.31,"free":3050.51},{"epoch":26152836,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.33,"free":3050.49},{"epoch":26152837,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.19,"used":572.23,"free":3050.59},{"epoch":26152838,"idl":99.78,"recv":0,"send":0,"writ":0.63,"used":572.8,"free":3050},{"epoch":26152839,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":572.37,"free":3050.41},{"epoch":26152840,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":572.81,"free":3049.98},{"epoch":26152841,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.8,"free":3049.99},{"epoch":26152842,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.77,"free":3050.02},{"epoch":26152843,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":573,"free":3049.77},{"epoch":26152844,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.21,"free":3050.58},{"epoch":26152845,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":572.3,"free":3050.51},{"epoch":26152846,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.35,"free":3050.45},{"epoch":26152847,"idl":99.93,"recv":0,"send":0.01,"writ":0.13,"used":572.32,"free":3050.48},{"epoch":26152848,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":572.64,"free":3050.15},{"epoch":26152849,"idl":99.91,"recv":0,"send":0,"writ":0.38,"used":572.5,"free":3050.29},{"epoch":26152850,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":572.5,"free":3050.32},{"epoch":26152851,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.47,"free":3050.36},{"epoch":26152852,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":572.49,"free":3050.33},{"epoch":26152853,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":571.73,"free":3051.08},{"epoch":26152854,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":572.07,"free":3050.74},{"epoch":26152855,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":571.56,"free":3051.26},{"epoch":26152856,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.53,"free":3051.29},{"epoch":26152857,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":571.51,"free":3051.31},{"epoch":26152858,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.49,"free":3051.32},{"epoch":26152859,"idl":95.11,"recv":0.33,"send":0.01,"writ":258.36,"used":582.73,"free":3039.89},{"epoch":26152860,"idl":99.89,"recv":0,"send":0,"writ":0.38,"used":574.31,"free":3048.59},{"epoch":26152861,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":574.28,"free":3048.62},{"epoch":26152862,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":574.24,"free":3048.65},{"epoch":26152863,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":574.2,"free":3048.68},{"epoch":26152864,"idl":99.77,"recv":0,"send":0,"writ":0.52,"used":573.29,"free":3049.63},{"epoch":26152865,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":571.8,"free":3051.16},{"epoch":26152866,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":571.89,"free":3051.06},{"epoch":26152867,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":571.86,"free":3051.09},{"epoch":26152868,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.83,"free":3051.12},{"epoch":26152869,"idl":99.66,"recv":0,"send":0,"writ":0.67,"used":572.16,"free":3050.77},{"epoch":26152870,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":571.55,"free":3051.41},{"epoch":26152871,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.5,"free":3051.45},{"epoch":26152872,"idl":99.92,"recv":0,"send":0.01,"writ":0.14,"used":571.56,"free":3051.39},{"epoch":26152873,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.6,"free":3051.34},{"epoch":26152874,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":572.28,"free":3050.66},{"epoch":26152875,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":572.05,"free":3050.9},{"epoch":26152876,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":572.01,"free":3050.94},{"epoch":26152877,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":571.74,"free":3051.2},{"epoch":26152878,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":571.79,"free":3051.15},{"epoch":26152879,"idl":99.77,"recv":0.01,"send":0.01,"writ":0.55,"used":572.28,"free":3050.65},{"epoch":26152880,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":572.35,"free":3050.61},{"epoch":26152881,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.31,"free":3050.64},{"epoch":26152882,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.27,"free":3050.67},{"epoch":26152883,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.24,"free":3050.7},{"epoch":26152884,"idl":99.79,"recv":0,"send":0,"writ":0.52,"used":572.53,"free":3050.41},{"epoch":26152885,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":572.07,"free":3050.89},{"epoch":26152886,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.11,"free":3050.84},{"epoch":26152887,"idl":97.93,"recv":0,"send":0,"writ":0.16,"used":572.08,"free":3050.86},{"epoch":26152888,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.06,"free":3050.89},{"epoch":26152889,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":572.03,"free":3050.91},{"epoch":26152890,"idl":99.64,"recv":0,"send":0,"writ":0.74,"used":572.31,"free":3050.65},{"epoch":26152891,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":571.49,"free":3051.46},{"epoch":26152892,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":571.52,"free":3051.43},{"epoch":26152893,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":571.62,"free":3051.32},{"epoch":26152894,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.59,"free":3051.35},{"epoch":26152895,"idl":99.7,"recv":0,"send":0,"writ":0.68,"used":572.39,"free":3050.58},{"epoch":26152896,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.28,"free":3050.69},{"epoch":26152897,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.25,"free":3050.71},{"epoch":26152898,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.22,"free":3050.73},{"epoch":26152899,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":571.95,"free":3050.98},{"epoch":26152900,"idl":99.75,"recv":0,"send":0,"writ":0.7,"used":572.6,"free":3050.34},{"epoch":26152901,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.32,"free":3050.62},{"epoch":26152902,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.29,"free":3050.64},{"epoch":26152903,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.27,"free":3050.66},{"epoch":26152904,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.23,"free":3050.72},{"epoch":26152905,"idl":99.77,"recv":0,"send":0,"writ":0.72,"used":572.34,"free":3050.63},{"epoch":26152906,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":571.95,"free":3051.01},{"epoch":26152907,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.16,"used":572.05,"free":3050.9},{"epoch":26152908,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.09,"free":3050.86},{"epoch":26152909,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.06,"free":3050.89},{"epoch":26152910,"idl":99.75,"recv":0,"send":0,"writ":0.63,"used":572.33,"free":3050.64},{"epoch":26152911,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":572.02,"free":3050.94},{"epoch":26152912,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":571.93,"free":3051.03},{"epoch":26152913,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.46,"free":3051.49},{"epoch":26152914,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.56,"free":3051.39},{"epoch":26152915,"idl":99.75,"recv":0,"send":0,"writ":0.73,"used":572.08,"free":3050.88},{"epoch":26152916,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":571.83,"free":3051.13},{"epoch":26152917,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":571.8,"free":3051.16},{"epoch":26152918,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":571.77,"free":3051.18},{"epoch":26152919,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":571.74,"free":3051.21},{"epoch":26152920,"idl":99.74,"recv":0,"send":0,"writ":0.69,"used":571.74,"free":3051.23},{"epoch":26152921,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.79,"free":3051.17},{"epoch":26152922,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":571.86,"free":3051.1},{"epoch":26152923,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":571.82,"free":3051.13},{"epoch":26152924,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":571.79,"free":3051.16},{"epoch":26152925,"idl":99.72,"recv":0,"send":0,"writ":0.61,"used":572.48,"free":3050.49},{"epoch":26152926,"idl":99.93,"recv":0,"send":0,"writ":0.26,"used":572.49,"free":3050.47},{"epoch":26152927,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":572.47,"free":3050.49},{"epoch":26152928,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.14,"used":572.47,"free":3050.49},{"epoch":26152929,"idl":99.9,"recv":0,"send":0,"writ":0.4,"used":572.28,"free":3050.67},{"epoch":26152930,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":572.27,"free":3050.7},{"epoch":26152931,"idl":99.76,"recv":0,"send":0,"writ":0.52,"used":572.37,"free":3050.6},{"epoch":26152932,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.96,"free":3051},{"epoch":26152933,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.05,"free":3050.91},{"epoch":26152934,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.08,"free":3050.88},{"epoch":26152935,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":572.32,"free":3050.66},{"epoch":26152936,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":572.42,"free":3050.57},{"epoch":26152937,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":572,"free":3050.98},{"epoch":26152938,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":571.96,"free":3051.02},{"epoch":26152939,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.18,"used":572.03,"free":3050.94},{"epoch":26152940,"idl":99.86,"recv":0,"send":0,"writ":0.37,"used":572.67,"free":3050.3},{"epoch":26152941,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":572.72,"free":3050.25},{"epoch":26152942,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.28,"free":3050.69},{"epoch":26152943,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.25,"free":3050.71},{"epoch":26152944,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":572.22,"free":3050.74},{"epoch":26152945,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":572.21,"free":3050.77},{"epoch":26152946,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":572.77,"free":3050.2},{"epoch":26152947,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.37,"free":3050.59},{"epoch":26152948,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.34,"free":3050.62},{"epoch":26152949,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":572.31,"free":3050.65},{"epoch":26152950,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":572.3,"free":3050.68},{"epoch":26152951,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":572.72,"free":3050.26},{"epoch":26152952,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":572.49,"free":3050.48},{"epoch":26152953,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.46,"free":3050.5},{"epoch":26152954,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":572.53,"free":3050.43},{"epoch":26152955,"idl":99.9,"recv":0,"send":0,"writ":0.35,"used":572.37,"free":3050.61},{"epoch":26152956,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":572.74,"free":3050.23},{"epoch":26152957,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.54,"free":3050.42},{"epoch":26152958,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.51,"free":3050.45},{"epoch":26152959,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":572.02,"free":3050.92},{"epoch":26152960,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":572.47,"free":3050.49},{"epoch":26152961,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":572.78,"free":3050.17},{"epoch":26152962,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.36,"free":3050.59},{"epoch":26152963,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.33,"free":3050.62},{"epoch":26152964,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":572.3,"free":3050.64},{"epoch":26152965,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":571.57,"free":3051.39},{"epoch":26152966,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":572.34,"free":3050.62},{"epoch":26152967,"idl":99.92,"recv":0,"send":0.01,"writ":0.35,"used":572.72,"free":3050.23},{"epoch":26152968,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":572.7,"free":3050.25},{"epoch":26152969,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.84,"free":3050.1},{"epoch":26152970,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":572.6,"free":3050.36},{"epoch":26152971,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":572.56,"free":3050.4},{"epoch":26152972,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":573.06,"free":3049.89},{"epoch":26152973,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":572.25,"free":3050.7},{"epoch":26152974,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.22,"free":3050.72},{"epoch":26152975,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.29,"used":572.46,"free":3050.5},{"epoch":26152976,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":572.51,"free":3050.44},{"epoch":26152977,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":573.04,"free":3049.9},{"epoch":26152978,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":572.69,"free":3050.25},{"epoch":26152979,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":572.71,"free":3050.23},{"epoch":26152980,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":572.85,"free":3050.11},{"epoch":26152981,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.82,"free":3050.14},{"epoch":26152982,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":572.96,"free":3049.99},{"epoch":26152983,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.51,"free":3050.43},{"epoch":26152984,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.48,"free":3050.46},{"epoch":26152985,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":572.72,"free":3050.24},{"epoch":26152986,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":572.69,"free":3050.26},{"epoch":26152987,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":572.96,"free":3049.98},{"epoch":26152988,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.57,"free":3050.37},{"epoch":26152989,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":572.54,"free":3050.38},{"epoch":26152990,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":572.61,"free":3050.32},{"epoch":26152991,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.49,"free":3050.43},{"epoch":26152992,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":572.82,"free":3050.1},{"epoch":26152993,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":572.43,"free":3050.48},{"epoch":26152994,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.4,"free":3050.52},{"epoch":26152995,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":571.37,"free":3051.57},{"epoch":26152996,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.35,"free":3051.59},{"epoch":26152997,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":572.32,"free":3050.62},{"epoch":26152998,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":572.52,"free":3050.41},{"epoch":26152999,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.14,"used":572.5,"free":3050.43},{"epoch":26153000,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":572.72,"free":3050.22},{"epoch":26153001,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.69,"free":3050.25},{"epoch":26153002,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":573.1,"free":3049.83},{"epoch":26153003,"idl":99.93,"recv":0,"send":0,"writ":0.37,"used":572.57,"free":3050.36},{"epoch":26153004,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.54,"free":3050.39},{"epoch":26153005,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":572.78,"free":3050.16},{"epoch":26153006,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":572.75,"free":3050.19},{"epoch":26153007,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.72,"free":3050.22},{"epoch":26153008,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":573.19,"free":3049.74},{"epoch":26153009,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":572.26,"free":3050.67},{"epoch":26153010,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":572.33,"free":3050.61},{"epoch":26153011,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.3,"free":3050.64},{"epoch":26153012,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.26,"free":3050.68},{"epoch":26153013,"idl":99.78,"recv":0,"send":0,"writ":0.68,"used":572.4,"free":3050.53},{"epoch":26153014,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":571.93,"free":3050.99},{"epoch":26153015,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":571.98,"free":3050.96},{"epoch":26153016,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":572.08,"free":3050.85},{"epoch":26153017,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":572.05,"free":3050.88},{"epoch":26153018,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":572.38,"free":3050.55},{"epoch":26153019,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":571.99,"free":3050.92},{"epoch":26153020,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":572.22,"free":3050.71},{"epoch":26153021,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.19,"free":3050.74},{"epoch":26153022,"idl":99.91,"recv":0.01,"send":0.15,"writ":0.3,"used":572.26,"free":3050.66},{"epoch":26153023,"idl":99.8,"recv":0,"send":0,"writ":0.5,"used":572.86,"free":3050.05},{"epoch":26153024,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":572.15,"free":3050.76},{"epoch":26153025,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":571.34,"free":3051.58},{"epoch":26153026,"idl":96.77,"recv":0.02,"send":0.01,"writ":77.27,"used":577.09,"free":3046.7},{"epoch":26153027,"idl":99.92,"recv":0,"send":0.01,"writ":0.16,"used":574.75,"free":3047.75},{"epoch":26153028,"idl":99.78,"recv":0,"send":0,"writ":0.49,"used":575.34,"free":3047.16},{"epoch":26153029,"idl":99.91,"recv":0,"send":0,"writ":0.23,"used":574.86,"free":3047.63},{"epoch":26153030,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":574.86,"free":3047.64},{"epoch":26153031,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":572.79,"free":3049.78},{"epoch":26153032,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":572.39,"free":3050.2},{"epoch":26153033,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":572.52,"free":3050.07},{"epoch":26153034,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":572.34,"free":3050.25},{"epoch":26153035,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":572.42,"free":3050.2},{"epoch":26153036,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.52,"free":3050.1},{"epoch":26153037,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":572.49,"free":3050.13},{"epoch":26153038,"idl":99.82,"recv":0,"send":0,"writ":0.59,"used":572.78,"free":3049.83},{"epoch":26153039,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":572.19,"free":3050.41},{"epoch":26153040,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":571.49,"free":3051.12},{"epoch":26153041,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.41,"free":3051.2},{"epoch":26153042,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.38,"free":3051.23},{"epoch":26153043,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":572.09,"free":3050.51},{"epoch":26153044,"idl":99.92,"recv":0,"send":0,"writ":0.38,"used":572.25,"free":3050.35},{"epoch":26153045,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.31,"used":571.99,"free":3050.63},{"epoch":26153046,"idl":99.93,"recv":0,"send":0.01,"writ":0.19,"used":571.91,"free":3050.69},{"epoch":26153047,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":571.89,"free":3050.72},{"epoch":26153048,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.86,"free":3050.74},{"epoch":26153049,"idl":99.69,"recv":0,"send":0,"writ":0.68,"used":572.78,"free":3049.81},{"epoch":26153050,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":572.28,"free":3050.32},{"epoch":26153051,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":572.24,"free":3050.35},{"epoch":26153052,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":572.21,"free":3050.38},{"epoch":26153053,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":572.19,"free":3050.4},{"epoch":26153054,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":572.5,"free":3050.08},{"epoch":26153055,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":572.38,"free":3050.22},{"epoch":26153056,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.4,"free":3050.19},{"epoch":26153057,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":572.51,"free":3050.08},{"epoch":26153058,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":572.47,"free":3050.12},{"epoch":26153059,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.53,"used":572.66,"free":3049.92},{"epoch":26153060,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":572.65,"free":3049.95},{"epoch":26153061,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":572.63,"free":3049.97},{"epoch":26153062,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":572.64,"free":3049.95},{"epoch":26153063,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":572.75,"free":3049.83},{"epoch":26153064,"idl":99.8,"recv":0,"send":0,"writ":0.5,"used":572.95,"free":3049.63},{"epoch":26153065,"idl":99.85,"recv":0,"send":0,"writ":0.39,"used":572.46,"free":3050.14},{"epoch":26153066,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":572.43,"free":3050.16},{"epoch":26153067,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":572.4,"free":3050.18},{"epoch":26153068,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":572.37,"free":3050.21},{"epoch":26153069,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":572.7,"free":3049.88},{"epoch":26153070,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":572.43,"free":3050.16},{"epoch":26153071,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.49,"free":3050.1},{"epoch":26153072,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":572.46,"free":3050.13},{"epoch":26153073,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":572.43,"free":3050.15},{"epoch":26153074,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":573.05,"free":3049.53},{"epoch":26153075,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.3,"used":572.69,"free":3049.91},{"epoch":26153076,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":572.72,"free":3049.87},{"epoch":26153077,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.69,"free":3049.9},{"epoch":26153078,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":572.66,"free":3049.92},{"epoch":26153079,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":572.39,"free":3050.18},{"epoch":26153080,"idl":99.71,"recv":0,"send":0,"writ":0.66,"used":572.74,"free":3049.84},{"epoch":26153081,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.35,"free":3050.23},{"epoch":26153082,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":572.43,"free":3050.14},{"epoch":26153083,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":572.51,"free":3050.05},{"epoch":26153084,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.21,"used":572.45,"free":3050.13},{"epoch":26153085,"idl":99.73,"recv":0,"send":0,"writ":0.69,"used":572.99,"free":3049.61},{"epoch":26153086,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":572.61,"free":3049.99},{"epoch":26153087,"idl":99.89,"recv":0,"send":0.01,"writ":0.16,"used":572.73,"free":3049.86},{"epoch":26153088,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":572.73,"free":3049.85},{"epoch":26153089,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":572.69,"free":3049.89},{"epoch":26153090,"idl":99.66,"recv":0,"send":0,"writ":0.68,"used":572.8,"free":3049.79},{"epoch":26153091,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":572.4,"free":3050.19},{"epoch":26153092,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":572.37,"free":3050.21},{"epoch":26153093,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":572.15,"free":3050.44},{"epoch":26153094,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":572.26,"free":3050.32},{"epoch":26153095,"idl":99.69,"recv":0,"send":0,"writ":0.73,"used":573.72,"free":3048.87},{"epoch":26153096,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":572.96,"free":3049.63},{"epoch":26153097,"idl":99.85,"recv":0,"send":0.01,"writ":0.18,"used":572.91,"free":3049.68},{"epoch":26153098,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":572.84,"free":3049.74},{"epoch":26153099,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":572.91,"free":3049.67},{"epoch":26153100,"idl":99.54,"recv":0,"send":0,"writ":0.7,"used":572.84,"free":3049.75},{"epoch":26153101,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":572.46,"free":3050.12},{"epoch":26153102,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":572.43,"free":3050.15},{"epoch":26153103,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.4,"free":3050.17},{"epoch":26153104,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":572.37,"free":3050.2},{"epoch":26153105,"idl":99.68,"recv":0,"send":0,"writ":0.7,"used":573.09,"free":3049.5},{"epoch":26153106,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":572.4,"free":3050.18},{"epoch":26153107,"idl":99.7,"recv":0,"send":0,"writ":0.14,"used":572.49,"free":3050.09},{"epoch":26153108,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":572.46,"free":3050.12},{"epoch":26153109,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":572.65,"free":3049.89},{"epoch":26153110,"idl":99.61,"recv":0,"send":0,"writ":0.71,"used":573,"free":3049.56},{"epoch":26153111,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":572.61,"free":3049.94},{"epoch":26153112,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":572.58,"free":3049.97},{"epoch":26153113,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":572.61,"free":3049.93},{"epoch":26153114,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":572.71,"free":3049.85},{"epoch":26153115,"idl":99.66,"recv":0,"send":0,"writ":0.66,"used":573.09,"free":3049.49},{"epoch":26153116,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":572.92,"free":3049.66},{"epoch":26153117,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":572.89,"free":3049.68},{"epoch":26153118,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":572.86,"free":3049.7},{"epoch":26153119,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.17,"used":572.83,"free":3049.73},{"epoch":26153120,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":572.83,"free":3049.75},{"epoch":26153121,"idl":99.72,"recv":0,"send":0,"writ":0.71,"used":573.63,"free":3048.94},{"epoch":26153122,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":572.95,"free":3049.62},{"epoch":26153123,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":572.91,"free":3049.65},{"epoch":26153124,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":572.88,"free":3049.68},{"epoch":26153125,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.34,"used":572.63,"free":3049.95},{"epoch":26153126,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":572.93,"free":3049.64},{"epoch":26153127,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":572.36,"free":3050.2},{"epoch":26153128,"idl":99.81,"recv":0.02,"send":0.96,"writ":0.16,"used":572.47,"free":3050.09},{"epoch":26153129,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":572.42,"free":3050.13},{"epoch":26153130,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":572.65,"free":3049.91},{"epoch":26153131,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":573.13,"free":3049.43},{"epoch":26153132,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":572.83,"free":3049.73},{"epoch":26153133,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":572.93,"free":3049.63},{"epoch":26153134,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":572.96,"free":3049.58},{"epoch":26153135,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":572.95,"free":3049.61},{"epoch":26153136,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":573.38,"free":3049.18},{"epoch":26153137,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":573.13,"free":3049.42},{"epoch":26153138,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":573.1,"free":3049.45},{"epoch":26153139,"idl":99.8,"recv":0,"send":0,"writ":0.26,"used":572.81,"free":3049.71},{"epoch":26153140,"idl":99.8,"recv":0.01,"send":0.12,"writ":0.46,"used":572.95,"free":3049.59},{"epoch":26153141,"idl":99.71,"recv":0,"send":0,"writ":0.41,"used":573.38,"free":3049.15},{"epoch":26153142,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":572.85,"free":3049.67},{"epoch":26153143,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":572.82,"free":3049.7},{"epoch":26153144,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.79,"free":3049.73},{"epoch":26153145,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":572.88,"free":3049.65},{"epoch":26153146,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":573.28,"free":3049.24},{"epoch":26153147,"idl":99.86,"recv":0,"send":0.01,"writ":0.19,"used":572.9,"free":3049.62},{"epoch":26153148,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.16,"used":572.87,"free":3049.64},{"epoch":26153149,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":572.82,"free":3049.69},{"epoch":26153150,"idl":99.79,"recv":0,"send":0,"writ":0.43,"used":572.83,"free":3049.7},{"epoch":26153151,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":573.11,"free":3049.41},{"epoch":26153152,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":572.6,"free":3049.91},{"epoch":26153153,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":572.19,"free":3050.31},{"epoch":26153154,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":572.14,"free":3050.36},{"epoch":26153155,"idl":99.76,"recv":0,"send":0,"writ":0.38,"used":572.85,"free":3049.67},{"epoch":26153156,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":572.83,"free":3049.69},{"epoch":26153157,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":573.49,"free":3049.02},{"epoch":26153158,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":572.77,"free":3049.73},{"epoch":26153159,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.85,"free":3049.65},{"epoch":26153160,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":573.19,"free":3049.33},{"epoch":26153161,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":573.17,"free":3049.35},{"epoch":26153162,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":573.49,"free":3049.02},{"epoch":26153163,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":572.97,"free":3049.54},{"epoch":26153164,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":572.33,"free":3050.17},{"epoch":26153165,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":572.33,"free":3050.19},{"epoch":26153166,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":572.38,"free":3050.13},{"epoch":26153167,"idl":99.68,"recv":0,"send":0,"writ":0.52,"used":572.49,"free":3050.02},{"epoch":26153168,"idl":98.95,"recv":0,"send":0,"writ":0.21,"used":571.93,"free":3050.58},{"epoch":26153169,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":572.36,"free":3050.12},{"epoch":26153170,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":572.37,"free":3050.13},{"epoch":26153171,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.34,"free":3050.16},{"epoch":26153172,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":572.65,"free":3049.84},{"epoch":26153173,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":572.37,"free":3050.11},{"epoch":26153174,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":572.43,"free":3050.09},{"epoch":26153175,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":571.93,"free":3050.6},{"epoch":26153176,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":571.89,"free":3050.64},{"epoch":26153177,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":572.31,"free":3050.21},{"epoch":26153178,"idl":99.85,"recv":0,"send":0,"writ":0.23,"used":572.07,"free":3050.45},{"epoch":26153179,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.23,"used":572.06,"free":3050.45},{"epoch":26153180,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":572.12,"free":3050.41},{"epoch":26153181,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.09,"free":3050.43},{"epoch":26153182,"idl":99.73,"recv":0,"send":0,"writ":0.49,"used":572.48,"free":3050.04},{"epoch":26153183,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":572.32,"free":3050.19},{"epoch":26153184,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":572.42,"free":3050.08},{"epoch":26153185,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":572.42,"free":3050.11},{"epoch":26153186,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.38,"free":3050.14},{"epoch":26153187,"idl":99.72,"recv":0,"send":0,"writ":0.49,"used":572.63,"free":3049.88},{"epoch":26153188,"idl":99.86,"recv":0,"send":0,"writ":0.22,"used":571.81,"free":3050.7},{"epoch":26153189,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":571.78,"free":3050.73},{"epoch":26153190,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":571.87,"free":3050.65},{"epoch":26153191,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.92,"free":3050.6},{"epoch":26153192,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":571.89,"free":3050.63},{"epoch":26153193,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":572.44,"free":3050.07},{"epoch":26153194,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":572.08,"free":3050.43},{"epoch":26153195,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":572.55,"free":3049.97},{"epoch":26153196,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":572.36,"free":3050.16},{"epoch":26153197,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":572.35,"free":3050.17},{"epoch":26153198,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":571.8,"free":3050.71},{"epoch":26153199,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":572.6,"free":3049.89},{"epoch":26153200,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":572.62,"free":3049.89},{"epoch":26153201,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":572.58,"free":3049.92},{"epoch":26153202,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":572.56,"free":3049.94},{"epoch":26153203,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":571.37,"free":3051.12},{"epoch":26153204,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":570.03,"free":3052.46},{"epoch":26153205,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":571.89,"free":3050.62},{"epoch":26153206,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.95,"free":3050.56},{"epoch":26153207,"idl":99.85,"recv":0,"send":0.01,"writ":0.14,"used":571.91,"free":3050.58},{"epoch":26153208,"idl":99.71,"recv":0,"send":0,"writ":0.5,"used":572.46,"free":3050.04},{"epoch":26153209,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":572.34,"free":3050.15},{"epoch":26153210,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":572.85,"free":3049.66},{"epoch":26153211,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":572.78,"free":3049.72},{"epoch":26153212,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":572.9,"free":3049.6},{"epoch":26153213,"idl":99.64,"recv":0,"send":0,"writ":0.57,"used":573.47,"free":3049.03},{"epoch":26153214,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":572.38,"free":3050.1},{"epoch":26153215,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":572.86,"free":3049.64},{"epoch":26153216,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":572.84,"free":3049.66},{"epoch":26153217,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":572.81,"free":3049.69},{"epoch":26153218,"idl":99.72,"recv":0,"send":0,"writ":0.47,"used":573.08,"free":3049.41},{"epoch":26153219,"idl":99.86,"recv":0,"send":0,"writ":0.22,"used":572.31,"free":3050.18},{"epoch":26153220,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":572.68,"free":3049.82},{"epoch":26153221,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":572.66,"free":3049.84},{"epoch":26153222,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.63,"free":3049.86},{"epoch":26153223,"idl":97.49,"recv":0.02,"send":0.01,"writ":0.64,"used":577.73,"free":3046.29},{"epoch":26153224,"idl":98.95,"recv":0,"send":0,"writ":77.39,"used":576.28,"free":3046.41},{"epoch":26153225,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":575.08,"free":3047.64},{"epoch":26153226,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":575.05,"free":3047.68},{"epoch":26153227,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":575.02,"free":3047.7},{"epoch":26153228,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":574.99,"free":3047.73},{"epoch":26153229,"idl":99.68,"recv":0,"send":0,"writ":0.7,"used":572.77,"free":3049.95},{"epoch":26153230,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":572.53,"free":3050.21},{"epoch":26153231,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":572.64,"free":3050.1},{"epoch":26153232,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":572.66,"free":3050.07},{"epoch":26153233,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":572.64,"free":3050.09},{"epoch":26153234,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":573.14,"free":3049.61},{"epoch":26153235,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":572.6,"free":3050.17},{"epoch":26153236,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":572.57,"free":3050.2},{"epoch":26153237,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":572.3,"free":3050.47},{"epoch":26153238,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.31,"free":3050.45},{"epoch":26153239,"idl":99.67,"recv":0.01,"send":0.01,"writ":0.49,"used":572.91,"free":3049.84},{"epoch":26153240,"idl":99.81,"recv":0,"send":0,"writ":0.37,"used":572.14,"free":3050.63},{"epoch":26153241,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":572.1,"free":3050.66},{"epoch":26153242,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":572.08,"free":3050.69},{"epoch":26153243,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":572.05,"free":3050.71},{"epoch":26153244,"idl":99.7,"recv":0,"send":0,"writ":0.48,"used":572.93,"free":3049.82},{"epoch":26153245,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":572.62,"free":3050.15},{"epoch":26153246,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":572.66,"free":3050.11},{"epoch":26153247,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":572.63,"free":3050.13},{"epoch":26153248,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":572.6,"free":3050.16},{"epoch":26153249,"idl":99.73,"recv":0,"send":0,"writ":0.5,"used":573,"free":3049.75},{"epoch":26153250,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":572.81,"free":3049.96},{"epoch":26153251,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.15,"used":572.83,"free":3049.94},{"epoch":26153252,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":572.91,"free":3049.86},{"epoch":26153253,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":572.88,"free":3049.88},{"epoch":26153254,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":573.2,"free":3049.58},{"epoch":26153255,"idl":99.86,"recv":0,"send":0,"writ":0.48,"used":572.84,"free":3049.95},{"epoch":26153256,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":572.81,"free":3049.98},{"epoch":26153257,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":572.83,"free":3049.96},{"epoch":26153258,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.94,"free":3049.84},{"epoch":26153259,"idl":99.72,"recv":0,"send":0,"writ":0.44,"used":573.27,"free":3049.49},{"epoch":26153260,"idl":99.89,"recv":0,"send":0,"writ":0.51,"used":572.89,"free":3049.88},{"epoch":26153261,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.86,"free":3049.91},{"epoch":26153262,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.82,"free":3049.94},{"epoch":26153263,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.79,"free":3049.97},{"epoch":26153264,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":572.76,"free":3050},{"epoch":26153265,"idl":99.72,"recv":0,"send":0,"writ":0.71,"used":573.19,"free":3049.58},{"epoch":26153266,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.66,"free":3050.11},{"epoch":26153267,"idl":99.92,"recv":0,"send":0.01,"writ":0.16,"used":572.63,"free":3050.13},{"epoch":26153268,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.59,"free":3050.16},{"epoch":26153269,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":572.55,"free":3050.2},{"epoch":26153270,"idl":99.74,"recv":0,"send":0,"writ":0.74,"used":572.92,"free":3049.85},{"epoch":26153271,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":572.61,"free":3050.16},{"epoch":26153272,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":572.67,"free":3050.1},{"epoch":26153273,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":572.41,"free":3050.34},{"epoch":26153274,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":572.36,"free":3050.39},{"epoch":26153275,"idl":99.73,"recv":0,"send":0,"writ":0.72,"used":573.3,"free":3049.46},{"epoch":26153276,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":573.06,"free":3049.71},{"epoch":26153277,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":573.03,"free":3049.73},{"epoch":26153278,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":573,"free":3049.76},{"epoch":26153279,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":573.11,"free":3049.64},{"epoch":26153280,"idl":99.68,"recv":0,"send":0,"writ":0.72,"used":573.02,"free":3049.74},{"epoch":26153281,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.62,"free":3050.14},{"epoch":26153282,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.59,"free":3050.17},{"epoch":26153283,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.56,"free":3050.2},{"epoch":26153284,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":572.53,"free":3050.22},{"epoch":26153285,"idl":99.73,"recv":0,"send":0,"writ":0.75,"used":573.35,"free":3049.42},{"epoch":26153286,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":573.12,"free":3049.64},{"epoch":26153287,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":573.14,"free":3049.62},{"epoch":26153288,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":573.1,"free":3049.65},{"epoch":26153289,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":572.58,"free":3050.15},{"epoch":26153290,"idl":99.7,"recv":0,"send":0,"writ":0.72,"used":572.72,"free":3050.03},{"epoch":26153291,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.03,"free":3050.71},{"epoch":26153292,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":572.05,"free":3050.69},{"epoch":26153293,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.16,"free":3050.57},{"epoch":26153294,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.13,"free":3050.61},{"epoch":26153295,"idl":99.73,"recv":0.01,"send":0.01,"writ":0.77,"used":572.78,"free":3049.98},{"epoch":26153296,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":571.11,"free":3051.64},{"epoch":26153297,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":571.43,"free":3051.32},{"epoch":26153298,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.4,"free":3051.34},{"epoch":26153299,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.14,"used":571.37,"free":3051.37},{"epoch":26153300,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":572.85,"free":3049.91},{"epoch":26153301,"idl":99.94,"recv":0,"send":0,"writ":0.39,"used":572.56,"free":3050.2},{"epoch":26153302,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.52,"free":3050.23},{"epoch":26153303,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.59,"free":3050.15},{"epoch":26153304,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.65,"free":3050.08},{"epoch":26153305,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":573.17,"free":3049.59},{"epoch":26153306,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":573.26,"free":3049.49},{"epoch":26153307,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.84,"free":3049.91},{"epoch":26153308,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":572.81,"free":3049.93},{"epoch":26153309,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.78,"free":3049.96},{"epoch":26153310,"idl":99.42,"recv":0,"send":0,"writ":0.3,"used":573.05,"free":3049.71},{"epoch":26153311,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":573.52,"free":3049.23},{"epoch":26153312,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":573.15,"free":3049.6},{"epoch":26153313,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":573.12,"free":3049.63},{"epoch":26153314,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":573.09,"free":3049.65},{"epoch":26153315,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":572.85,"free":3049.91},{"epoch":26153316,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":573.34,"free":3049.42},{"epoch":26153317,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":573.02,"free":3049.73},{"epoch":26153318,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":572.97,"free":3049.77},{"epoch":26153319,"idl":99.85,"recv":0,"send":0,"writ":0.26,"used":572.41,"free":3050.31},{"epoch":26153320,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":572.16,"free":3050.58},{"epoch":26153321,"idl":99.81,"recv":0,"send":0,"writ":0.58,"used":573.1,"free":3049.63},{"epoch":26153322,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.58,"free":3050.15},{"epoch":26153323,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.55,"free":3050.18},{"epoch":26153324,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":572.51,"free":3050.22},{"epoch":26153325,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":572.58,"free":3050.18},{"epoch":26153326,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":573.01,"free":3049.74},{"epoch":26153327,"idl":99.93,"recv":0,"send":0.01,"writ":0.15,"used":572.63,"free":3050.12},{"epoch":26153328,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.59,"free":3050.15},{"epoch":26153329,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":572.55,"free":3050.18},{"epoch":26153330,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":572.53,"free":3050.22},{"epoch":26153331,"idl":99.77,"recv":0,"send":0,"writ":0.52,"used":572.81,"free":3049.94},{"epoch":26153332,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.41,"free":3050.34},{"epoch":26153333,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":572.16,"free":3050.58},{"epoch":26153334,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.09,"free":3050.64},{"epoch":26153335,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":572.33,"free":3050.42},{"epoch":26153336,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":572.71,"free":3050.04},{"epoch":26153337,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.53,"free":3050.22},{"epoch":26153338,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.5,"free":3050.24},{"epoch":26153339,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.52,"free":3050.21},{"epoch":26153340,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":572.66,"free":3050.09},{"epoch":26153341,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":572.97,"free":3049.78},{"epoch":26153342,"idl":99.89,"recv":0,"send":0,"writ":0.41,"used":571.86,"free":3050.89},{"epoch":26153343,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":571.83,"free":3050.91},{"epoch":26153344,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.8,"free":3050.94},{"epoch":26153345,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":572.51,"free":3050.24},{"epoch":26153346,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.54,"free":3050.21},{"epoch":26153347,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":572.61,"free":3050.14},{"epoch":26153348,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.16,"free":3050.58},{"epoch":26153349,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":572.63,"free":3050.09},{"epoch":26153350,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.37,"used":572.6,"free":3050.14},{"epoch":26153351,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.63,"free":3050.1},{"epoch":26153352,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":573.32,"free":3049.4},{"epoch":26153353,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.85,"free":3049.86},{"epoch":26153354,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":572.82,"free":3049.9},{"epoch":26153355,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":572.57,"free":3050.17},{"epoch":26153356,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.54,"free":3050.2},{"epoch":26153357,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":572.96,"free":3049.77},{"epoch":26153358,"idl":99.93,"recv":0,"send":0,"writ":0.23,"used":572.58,"free":3050.15},{"epoch":26153359,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.15,"used":572.64,"free":3050.09},{"epoch":26153360,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":572.62,"free":3050.12},{"epoch":26153361,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":572.59,"free":3050.14},{"epoch":26153362,"idl":99.79,"recv":0,"send":0,"writ":0.39,"used":572.92,"free":3049.81},{"epoch":26153363,"idl":99.94,"recv":0,"send":0,"writ":0.3,"used":572.54,"free":3050.19},{"epoch":26153364,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.51,"free":3050.21},{"epoch":26153365,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":572.26,"free":3050.47},{"epoch":26153366,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":572.34,"free":3050.39},{"epoch":26153367,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":572.69,"free":3050.03},{"epoch":26153368,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":572.11,"free":3050.61},{"epoch":26153369,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.08,"free":3050.64},{"epoch":26153370,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":572.55,"free":3050.19},{"epoch":26153371,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.53,"free":3050.2},{"epoch":26153372,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.5,"free":3050.23},{"epoch":26153373,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":572.87,"free":3049.85},{"epoch":26153374,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.63,"free":3050.09},{"epoch":26153375,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":572.63,"free":3050.11},{"epoch":26153376,"idl":99.95,"recv":0,"send":0,"writ":0.12,"used":572.6,"free":3050.13},{"epoch":26153377,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.57,"free":3050.16},{"epoch":26153378,"idl":99.81,"recv":0,"send":0,"writ":0.6,"used":573.1,"free":3049.63},{"epoch":26153379,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":572.75,"free":3049.95},{"epoch":26153380,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":572.74,"free":3049.98},{"epoch":26153381,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.8,"free":3049.91},{"epoch":26153382,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":572.86,"free":3049.85},{"epoch":26153383,"idl":99.81,"recv":0,"send":0,"writ":0.53,"used":572.97,"free":3049.73},{"epoch":26153384,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":572.55,"free":3050.15},{"epoch":26153385,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":572.79,"free":3049.92},{"epoch":26153386,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.76,"free":3049.95},{"epoch":26153387,"idl":99.91,"recv":0,"send":0.01,"writ":0.14,"used":572.73,"free":3049.98},{"epoch":26153388,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":572.93,"free":3049.77},{"epoch":26153389,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.6,"free":3050.09},{"epoch":26153390,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":572.84,"free":3049.88},{"epoch":26153391,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":572.82,"free":3049.89},{"epoch":26153392,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.75,"free":3049.95},{"epoch":26153393,"idl":99.8,"recv":0,"send":0,"writ":0.61,"used":572.85,"free":3049.84},{"epoch":26153394,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.47,"free":3050.23},{"epoch":26153395,"idl":99.86,"recv":0,"send":0,"writ":0.35,"used":572.51,"free":3050.2},{"epoch":26153396,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.65,"free":3050.05},{"epoch":26153397,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.62,"free":3050.09},{"epoch":26153398,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":573.52,"free":3049.18},{"epoch":26153399,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":573.05,"free":3049.64},{"epoch":26153400,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":573.05,"free":3049.66},{"epoch":26153401,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":573.01,"free":3049.7},{"epoch":26153402,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.97,"free":3049.73},{"epoch":26153403,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":573.68,"free":3049.01},{"epoch":26153404,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":573.1,"free":3049.59},{"epoch":26153405,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":572.85,"free":3049.86},{"epoch":26153406,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.81,"free":3049.89},{"epoch":26153407,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":572.78,"free":3049.92},{"epoch":26153408,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":572.75,"free":3049.94},{"epoch":26153409,"idl":99.68,"recv":0,"send":0,"writ":0.66,"used":573.39,"free":3049.27},{"epoch":26153410,"idl":99.36,"recv":0,"send":0,"writ":0.3,"used":572.86,"free":3049.82},{"epoch":26153411,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":572.87,"free":3049.81},{"epoch":26153412,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.17,"used":572.78,"free":3049.9},{"epoch":26153413,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":572.74,"free":3049.93},{"epoch":26153414,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":572.61,"free":3050.07},{"epoch":26153415,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":572.16,"free":3050.54},{"epoch":26153416,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":572.12,"free":3050.58},{"epoch":26153417,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":571.86,"free":3050.84},{"epoch":26153418,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":571.82,"free":3050.87},{"epoch":26153419,"idl":99.77,"recv":0.01,"send":0.01,"writ":0.55,"used":572.53,"free":3050.15},{"epoch":26153420,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":572.28,"free":3050.43},{"epoch":26153421,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":572.24,"free":3050.46},{"epoch":26153422,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":572.3,"free":3050.4},{"epoch":26153423,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":572.37,"free":3050.32},{"epoch":26153424,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":573.34,"free":3049.35},{"epoch":26153425,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":572.58,"free":3050.12},{"epoch":26153426,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.53,"free":3050.17},{"epoch":26153427,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.5,"free":3050.2},{"epoch":26153428,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.47,"free":3050.23},{"epoch":26153429,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":572.78,"free":3049.91},{"epoch":26153430,"idl":99.85,"recv":0,"send":0,"writ":0.37,"used":573.34,"free":3049.37},{"epoch":26153431,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":573.31,"free":3049.39},{"epoch":26153432,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":573.28,"free":3049.41},{"epoch":26153433,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":573.26,"free":3049.43},{"epoch":26153434,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":573.57,"free":3049.11},{"epoch":26153435,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":572.49,"free":3050.21},{"epoch":26153436,"idl":99.94,"recv":0,"send":0.02,"writ":0.16,"used":572.51,"free":3050.2},{"epoch":26153437,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":572.57,"free":3050.14},{"epoch":26153438,"idl":99.92,"recv":0,"send":0.01,"writ":0.16,"used":572.52,"free":3050.19},{"epoch":26153439,"idl":99.71,"recv":0,"send":0,"writ":0.66,"used":573.31,"free":3049.37},{"epoch":26153440,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":573.21,"free":3049.49},{"epoch":26153441,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":573.39,"free":3049.31},{"epoch":26153442,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":573.36,"free":3049.33},{"epoch":26153443,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":573.32,"free":3049.36},{"epoch":26153444,"idl":99.79,"recv":0,"send":0,"writ":0.39,"used":573.85,"free":3048.84},{"epoch":26153445,"idl":99.88,"recv":0,"send":0,"writ":0.49,"used":572.55,"free":3050.15},{"epoch":26153446,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.51,"free":3050.19},{"epoch":26153447,"idl":99.94,"recv":0,"send":0.01,"writ":0.14,"used":572.49,"free":3050.2},{"epoch":26153448,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.63,"free":3050.05},{"epoch":26153449,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.59,"free":3050.09},{"epoch":26153450,"idl":99.73,"recv":0,"send":0,"writ":0.69,"used":572.83,"free":3049.87},{"epoch":26153451,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":572.3,"free":3050.39},{"epoch":26153452,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.28,"free":3050.41},{"epoch":26153453,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":572.63,"free":3050.06},{"epoch":26153454,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":572.76,"free":3049.92},{"epoch":26153455,"idl":99.71,"recv":0,"send":0,"writ":0.74,"used":573.57,"free":3049.12},{"epoch":26153456,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":573.35,"free":3049.35},{"epoch":26153457,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":573.32,"free":3049.37},{"epoch":26153458,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":573.29,"free":3049.4},{"epoch":26153459,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":573.26,"free":3049.42},{"epoch":26153460,"idl":99.66,"recv":0,"send":0,"writ":0.71,"used":573.4,"free":3049.29},{"epoch":26153461,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.96,"free":3049.73},{"epoch":26153462,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":573.05,"free":3049.63},{"epoch":26153463,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":573.07,"free":3049.6},{"epoch":26153464,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":573.04,"free":3049.63},{"epoch":26153465,"idl":99.74,"recv":0,"send":0,"writ":0.72,"used":573.34,"free":3049.34},{"epoch":26153466,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.51,"free":3050.17},{"epoch":26153467,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.47,"free":3050.2},{"epoch":26153468,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":572.44,"free":3050.22},{"epoch":26153469,"idl":99.83,"recv":0,"send":0,"writ":0.26,"used":572.78,"free":3049.86},{"epoch":26153470,"idl":99.71,"recv":0,"send":0,"writ":0.69,"used":573.51,"free":3049.15},{"epoch":26153471,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":572.55,"free":3050.1},{"epoch":26153472,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.14,"used":572.51,"free":3050.14},{"epoch":26153473,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":572.47,"free":3050.17},{"epoch":26153474,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.58,"free":3050.07},{"epoch":26153475,"idl":99.67,"recv":0,"send":0,"writ":0.75,"used":572.75,"free":3049.92},{"epoch":26153476,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":572.53,"free":3050.14},{"epoch":26153477,"idl":99.91,"recv":0,"send":0,"writ":0.25,"used":572.5,"free":3050.17},{"epoch":26153478,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.46,"free":3050.19},{"epoch":26153479,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.15,"used":572.43,"free":3050.23},{"epoch":26153480,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":572.78,"free":3049.89},{"epoch":26153481,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":571.34,"free":3051.33},{"epoch":26153482,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":571.3,"free":3051.36},{"epoch":26153483,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":571.27,"free":3051.39},{"epoch":26153484,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":571.24,"free":3051.42},{"epoch":26153485,"idl":99.91,"recv":0,"send":0,"writ":0.32,"used":571.71,"free":3050.96},{"epoch":26153486,"idl":99.81,"recv":0,"send":0,"writ":0.53,"used":572.95,"free":3049.72},{"epoch":26153487,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.8,"free":3049.87},{"epoch":26153488,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.83,"free":3049.82},{"epoch":26153489,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.81,"free":3049.85},{"epoch":26153490,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":572.79,"free":3049.88},{"epoch":26153491,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":572.88,"free":3049.78},{"epoch":26153492,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":572.48,"free":3050.19},{"epoch":26153493,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.45,"free":3050.21},{"epoch":26153494,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.52,"free":3050.13},{"epoch":26153495,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":572.85,"free":3049.82},{"epoch":26153496,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":573.17,"free":3049.49},{"epoch":26153497,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":572.78,"free":3049.88},{"epoch":26153498,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.76,"free":3049.9},{"epoch":26153499,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":572.72,"free":3049.9},{"epoch":26153500,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":572.72,"free":3049.92},{"epoch":26153501,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":573.28,"free":3049.35},{"epoch":26153502,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":572.85,"free":3049.8},{"epoch":26153503,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.82,"free":3049.82},{"epoch":26153504,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.8,"free":3049.86},{"epoch":26153505,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":572.81,"free":3049.87},{"epoch":26153506,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":573.27,"free":3049.41},{"epoch":26153507,"idl":99.9,"recv":0,"send":0.01,"writ":0.28,"used":572.98,"free":3049.73},{"epoch":26153508,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":572.95,"free":3049.75},{"epoch":26153509,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.98,"free":3049.72},{"epoch":26153510,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":572.85,"free":3049.86},{"epoch":26153511,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":573.17,"free":3049.54},{"epoch":26153512,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":572.79,"free":3049.92},{"epoch":26153513,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":572.57,"free":3050.13},{"epoch":26153514,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":572.48,"free":3050.22},{"epoch":26153515,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":572.71,"free":3050},{"epoch":26153516,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":572.91,"free":3049.8},{"epoch":26153517,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.29,"free":3050.41},{"epoch":26153518,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":572.32,"free":3050.38},{"epoch":26153519,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":572.28,"free":3050.41},{"epoch":26153520,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":572.27,"free":3050.44},{"epoch":26153521,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":572.62,"free":3050.09},{"epoch":26153522,"idl":99.94,"recv":0,"send":0,"writ":0.38,"used":572.7,"free":3050.01},{"epoch":26153523,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.75,"free":3049.95},{"epoch":26153524,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.81,"free":3049.89},{"epoch":26153525,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":572.81,"free":3049.91},{"epoch":26153526,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":572.78,"free":3049.93},{"epoch":26153527,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":572.2,"free":3050.5},{"epoch":26153528,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":571.49,"free":3051.21},{"epoch":26153529,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":572.87,"free":3049.8},{"epoch":26153530,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":572.76,"free":3049.93},{"epoch":26153531,"idl":96.49,"recv":0,"send":0,"writ":0.14,"used":572.82,"free":3049.87},{"epoch":26153532,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":573.38,"free":3049.29},{"epoch":26153533,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":573,"free":3049.67},{"epoch":26153534,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.97,"free":3049.72},{"epoch":26153535,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":572.96,"free":3049.74},{"epoch":26153536,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":572.93,"free":3049.77},{"epoch":26153537,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":572.59,"free":3050.11},{"epoch":26153538,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":572.07,"free":3050.62},{"epoch":26153539,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.15,"used":572.08,"free":3050.61},{"epoch":26153540,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":573.02,"free":3049.68},{"epoch":26153541,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":573,"free":3049.69},{"epoch":26153542,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":573.42,"free":3049.27},{"epoch":26153543,"idl":99.91,"recv":0,"send":0,"writ":0.28,"used":573.18,"free":3049.5},{"epoch":26153544,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":573.22,"free":3049.46},{"epoch":26153545,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":573.1,"free":3049.6},{"epoch":26153546,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":573.05,"free":3049.64},{"epoch":26153547,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":573.72,"free":3048.97},{"epoch":26153548,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":572.98,"free":3049.7},{"epoch":26153549,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":572.95,"free":3049.73},{"epoch":26153550,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":572.95,"free":3049.75},{"epoch":26153551,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":572.96,"free":3049.73},{"epoch":26153552,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":573.78,"free":3048.91},{"epoch":26153553,"idl":99.92,"recv":0,"send":0,"writ":0.38,"used":573.04,"free":3049.64},{"epoch":26153554,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":573.02,"free":3049.66},{"epoch":26153555,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":572.52,"free":3050.17},{"epoch":26153556,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":572.48,"free":3050.21},{"epoch":26153557,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.45,"free":3050.24},{"epoch":26153558,"idl":99.37,"recv":0,"send":0,"writ":0.77,"used":573.57,"free":3049.1},{"epoch":26153559,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":573.31,"free":3049.34},{"epoch":26153560,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":573.04,"free":3049.63},{"epoch":26153561,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":573.01,"free":3049.66},{"epoch":26153562,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.98,"free":3049.68},{"epoch":26153563,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":572.41,"free":3050.25},{"epoch":26153564,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":571.69,"free":3051.03},{"epoch":26153565,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":572.66,"free":3050.08},{"epoch":26153566,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":572.78,"free":3049.96},{"epoch":26153567,"idl":99.89,"recv":0,"send":0.01,"writ":0.14,"used":572.79,"free":3049.95},{"epoch":26153568,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":572.83,"free":3049.9},{"epoch":26153569,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":572.23,"free":3050.5},{"epoch":26153570,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":572.21,"free":3050.53},{"epoch":26153571,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":572.19,"free":3050.55},{"epoch":26153572,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.16,"free":3050.57},{"epoch":26153573,"idl":99.76,"recv":0,"send":0,"writ":0.61,"used":573.24,"free":3049.48},{"epoch":26153574,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":573.26,"free":3049.46},{"epoch":26153575,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":573.25,"free":3049.49},{"epoch":26153576,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":573.22,"free":3049.52},{"epoch":26153577,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":573.19,"free":3049.54},{"epoch":26153578,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":573.52,"free":3049.21},{"epoch":26153579,"idl":99.94,"recv":0,"send":0,"writ":0.22,"used":573.13,"free":3049.59},{"epoch":26153580,"idl":99.5,"recv":0,"send":0,"writ":10.61,"used":572.74,"free":3051.03},{"epoch":26153581,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.68,"free":3051.14},{"epoch":26153582,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":572.65,"free":3051.16},{"epoch":26153583,"idl":99.82,"recv":0,"send":0,"writ":0.59,"used":573.11,"free":3050.7},{"epoch":26153584,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":573.08,"free":3050.72},{"epoch":26153585,"idl":99.84,"recv":0,"send":0,"writ":0.35,"used":572.35,"free":3051.48},{"epoch":26153586,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":572.29,"free":3051.53},{"epoch":26153587,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":572.43,"free":3051.39},{"epoch":26153588,"idl":98.24,"recv":0.36,"send":0.01,"writ":0.66,"used":573.72,"free":3049.55},{"epoch":26153589,"idl":96.59,"recv":0,"send":0,"writ":258.27,"used":587.54,"free":3036.7},{"epoch":26153590,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":575.45,"free":3048.07},{"epoch":26153591,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":575.46,"free":3048.06},{"epoch":26153592,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":575.58,"free":3047.93},{"epoch":26153593,"idl":99.77,"recv":0,"send":0,"writ":0.35,"used":575.9,"free":3047.6},{"epoch":26153594,"idl":99.92,"recv":0,"send":0,"writ":0.43,"used":573.63,"free":3049.91},{"epoch":26153595,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":573.34,"free":3050.23},{"epoch":26153596,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":573.31,"free":3050.25},{"epoch":26153597,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":573.28,"free":3050.28},{"epoch":26153598,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":573.26,"free":3050.3},{"epoch":26153599,"idl":99.77,"recv":0.01,"send":0.01,"writ":0.55,"used":573.63,"free":3049.92},{"epoch":26153600,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":572.42,"free":3051.15},{"epoch":26153601,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.38,"free":3051.19},{"epoch":26153602,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":572.35,"free":3051.21},{"epoch":26153603,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":572.32,"free":3051.23},{"epoch":26153604,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":572.97,"free":3050.58},{"epoch":26153605,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":573.26,"free":3050.31},{"epoch":26153606,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":573.37,"free":3050.19},{"epoch":26153607,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":573.39,"free":3050.17},{"epoch":26153608,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":573.36,"free":3050.19},{"epoch":26153609,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":573.69,"free":3049.87},{"epoch":26153610,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":573.13,"free":3050.44},{"epoch":26153611,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.23,"used":573.1,"free":3050.47},{"epoch":26153612,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":573.1,"free":3050.45},{"epoch":26153613,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":573.07,"free":3050.48},{"epoch":26153614,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":573.38,"free":3050.16},{"epoch":26153615,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":573.51,"free":3050.05},{"epoch":26153616,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":573.64,"free":3049.91},{"epoch":26153617,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":573.65,"free":3049.91},{"epoch":26153618,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":573.62,"free":3049.93},{"epoch":26153619,"idl":99.66,"recv":0,"send":0,"writ":0.69,"used":574.37,"free":3049.16},{"epoch":26153620,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":572.89,"free":3050.67},{"epoch":26153621,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":572.84,"free":3050.72},{"epoch":26153622,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":572.85,"free":3050.71},{"epoch":26153623,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":572.96,"free":3050.59},{"epoch":26153624,"idl":99.75,"recv":0,"send":0,"writ":0.49,"used":573.41,"free":3050.15},{"epoch":26153625,"idl":99.83,"recv":0,"send":0,"writ":0.35,"used":573.68,"free":3049.91},{"epoch":26153626,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":573.34,"free":3050.25},{"epoch":26153627,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.16,"used":572.87,"free":3050.73},{"epoch":26153628,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.84,"free":3050.76},{"epoch":26153629,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":573.2,"free":3050.39},{"epoch":26153630,"idl":99.86,"recv":0,"send":0,"writ":0.43,"used":572.99,"free":3050.62},{"epoch":26153631,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":572.95,"free":3050.65},{"epoch":26153632,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":572.92,"free":3050.68},{"epoch":26153633,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":572.57,"free":3051.03},{"epoch":26153634,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":572.38,"free":3051.21},{"epoch":26153635,"idl":99.72,"recv":0,"send":0,"writ":0.68,"used":573.82,"free":3049.79},{"epoch":26153636,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":573.07,"free":3050.53},{"epoch":26153637,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":573.09,"free":3050.51},{"epoch":26153638,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":573.21,"free":3050.39},{"epoch":26153639,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":573.18,"free":3050.41},{"epoch":26153640,"idl":99.66,"recv":0,"send":0,"writ":0.79,"used":573.27,"free":3050.32},{"epoch":26153641,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":572.88,"free":3050.71},{"epoch":26153642,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":572.84,"free":3050.74},{"epoch":26153643,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":572.81,"free":3050.77},{"epoch":26153644,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":572.82,"free":3050.75},{"epoch":26153645,"idl":99.63,"recv":0,"send":0,"writ":0.65,"used":573.32,"free":3050.27},{"epoch":26153646,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":572.93,"free":3050.66},{"epoch":26153647,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":572.89,"free":3050.69},{"epoch":26153648,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.86,"free":3050.72},{"epoch":26153649,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":573.07,"free":3050.48},{"epoch":26153650,"idl":99.7,"recv":0,"send":0,"writ":0.65,"used":573.18,"free":3050.4},{"epoch":26153651,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.79,"free":3050.78},{"epoch":26153652,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":572.9,"free":3050.66},{"epoch":26153653,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":572.91,"free":3050.65},{"epoch":26153654,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":572.86,"free":3050.7},{"epoch":26153655,"idl":99.65,"recv":0,"send":0,"writ":0.55,"used":573.7,"free":3049.86},{"epoch":26153656,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":573.42,"free":3050.14},{"epoch":26153657,"idl":99.81,"recv":0,"send":0,"writ":0.23,"used":573.33,"free":3050.22},{"epoch":26153658,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":573.41,"free":3050.14},{"epoch":26153659,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.16,"used":573.34,"free":3050.21},{"epoch":26153660,"idl":99.66,"recv":0,"send":0,"writ":0.62,"used":573.44,"free":3050.13},{"epoch":26153661,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":573.05,"free":3050.51},{"epoch":26153662,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":573.09,"free":3050.46},{"epoch":26153663,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":573.19,"free":3050.37},{"epoch":26153664,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":573.15,"free":3050.4},{"epoch":26153665,"idl":99.53,"recv":0,"send":0,"writ":0.53,"used":572.61,"free":3050.96},{"epoch":26153666,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":572.86,"free":3050.7},{"epoch":26153667,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":572.83,"free":3050.73},{"epoch":26153668,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":572.79,"free":3050.76},{"epoch":26153669,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":572.9,"free":3050.65},{"epoch":26153670,"idl":99.63,"recv":0,"send":0,"writ":0.7,"used":573.85,"free":3049.71},{"epoch":26153671,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":573.16,"free":3050.4},{"epoch":26153672,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":573.12,"free":3050.43},{"epoch":26153673,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":573.1,"free":3050.46},{"epoch":26153674,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":573.06,"free":3050.48},{"epoch":26153675,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":573.06,"free":3050.5},{"epoch":26153676,"idl":99.71,"recv":0,"send":0,"writ":0.62,"used":573.55,"free":3050.01},{"epoch":26153677,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":573.19,"free":3050.37},{"epoch":26153678,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":573.16,"free":3050.39},{"epoch":26153679,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":572.63,"free":3050.91},{"epoch":26153680,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":572.86,"free":3050.7},{"epoch":26153681,"idl":99.71,"recv":0,"send":0,"writ":0.61,"used":573.57,"free":3049.99},{"epoch":26153682,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":573.3,"free":3050.25},{"epoch":26153683,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":573.27,"free":3050.28},{"epoch":26153684,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":573.33,"free":3050.21},{"epoch":26153685,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":572.94,"free":3050.62},{"epoch":26153686,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":573.42,"free":3050.15},{"epoch":26153687,"idl":99.83,"recv":0,"send":0.01,"writ":0.18,"used":573.12,"free":3050.44},{"epoch":26153688,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":573.09,"free":3050.47},{"epoch":26153689,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":573.05,"free":3050.52},{"epoch":26153690,"idl":99.83,"recv":0,"send":0,"writ":0.25,"used":573.04,"free":3050.54},{"epoch":26153691,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":573.55,"free":3050.03},{"epoch":26153692,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":573.41,"free":3050.16},{"epoch":26153693,"idl":99.8,"recv":0,"send":0,"writ":0.21,"used":573.23,"free":3050.34},{"epoch":26153694,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":573.1,"free":3050.46},{"epoch":26153695,"idl":99.78,"recv":0,"send":0,"writ":0.26,"used":572.37,"free":3051.21},{"epoch":26153696,"idl":99.72,"recv":0,"send":0,"writ":0.51,"used":573.13,"free":3050.45},{"epoch":26153697,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":573.29,"free":3050.29},{"epoch":26153698,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":573.26,"free":3050.3},{"epoch":26153699,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":573.34,"free":3050.23},{"epoch":26153700,"idl":99.75,"recv":0,"send":0,"writ":0.26,"used":572.24,"free":3051.34},{"epoch":26153701,"idl":99.69,"recv":0,"send":0,"writ":0.39,"used":572.6,"free":3050.97},{"epoch":26153702,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":572.41,"free":3051.16},{"epoch":26153703,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":572.38,"free":3051.19},{"epoch":26153704,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":572.34,"free":3051.22},{"epoch":26153705,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":573.05,"free":3050.53},{"epoch":26153706,"idl":99.69,"recv":0,"send":0,"writ":0.42,"used":573.73,"free":3049.84},{"epoch":26153707,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":573.44,"free":3050.13},{"epoch":26153708,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":573.4,"free":3050.16},{"epoch":26153709,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":573.38,"free":3050.16},{"epoch":26153710,"idl":99.78,"recv":0,"send":0,"writ":0.25,"used":572.17,"free":3051.39},{"epoch":26153711,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":572.1,"free":3051.45},{"epoch":26153712,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":573.57,"free":3049.98},{"epoch":26153713,"idl":99.55,"recv":0,"send":0,"writ":0.16,"used":573.27,"free":3050.28},{"epoch":26153714,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":573.33,"free":3050.21},{"epoch":26153715,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":572.95,"free":3050.61},{"epoch":26153716,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.9,"free":3050.65},{"epoch":26153717,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":573.45,"free":3050.1},{"epoch":26153718,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":573.09,"free":3050.45},{"epoch":26153719,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.14,"used":573.06,"free":3050.48},{"epoch":26153720,"idl":99.75,"recv":0,"send":0,"writ":0.26,"used":572.34,"free":3051.22},{"epoch":26153721,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":572.28,"free":3051.27},{"epoch":26153722,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":573.29,"free":3050.25},{"epoch":26153723,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":573.15,"free":3050.4},{"epoch":26153724,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":573.11,"free":3050.43},{"epoch":26153725,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":573.11,"free":3050.45},{"epoch":26153726,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":573.08,"free":3050.48},{"epoch":26153727,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":573.54,"free":3050.01},{"epoch":26153728,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":573.25,"free":3050.29},{"epoch":26153729,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":573.34,"free":3050.2},{"epoch":26153730,"idl":99.81,"recv":0,"send":0,"writ":0.25,"used":573.64,"free":3049.92},{"epoch":26153731,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":573.62,"free":3049.94},{"epoch":26153732,"idl":99.72,"recv":0,"send":0,"writ":0.44,"used":573.91,"free":3049.64},{"epoch":26153733,"idl":99.85,"recv":0,"send":0.01,"writ":0.32,"used":572.8,"free":3050.75},{"epoch":26153734,"idl":96.67,"recv":0,"send":0,"writ":0.14,"used":572.76,"free":3050.78},{"epoch":26153735,"idl":99.8,"recv":0,"send":0,"writ":0.25,"used":573.33,"free":3050.23},{"epoch":26153736,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":573.4,"free":3050.15},{"epoch":26153737,"idl":99.67,"recv":0,"send":0,"writ":0.39,"used":573.96,"free":3049.59},{"epoch":26153738,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":573.59,"free":3049.96},{"epoch":26153739,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":573.57,"free":3049.95},{"epoch":26153740,"idl":99.81,"recv":0,"send":0,"writ":0.25,"used":573.56,"free":3049.97},{"epoch":26153741,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":573.53,"free":3050.01},{"epoch":26153742,"idl":99.69,"recv":0,"send":0,"writ":0.33,"used":573.95,"free":3049.58},{"epoch":26153743,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":573.4,"free":3050.12},{"epoch":26153744,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":573.38,"free":3050.15},{"epoch":26153745,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":571.91,"free":3051.63},{"epoch":26153746,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":571.86,"free":3051.68},{"epoch":26153747,"idl":99.82,"recv":0,"send":0.01,"writ":0.16,"used":571.82,"free":3051.71},{"epoch":26153748,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":573.73,"free":3049.81},{"epoch":26153749,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":573.53,"free":3050},{"epoch":26153750,"idl":99.79,"recv":0,"send":0,"writ":0.26,"used":573.94,"free":3049.61},{"epoch":26153751,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":573.91,"free":3049.63},{"epoch":26153752,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":573.88,"free":3049.65},{"epoch":26153753,"idl":99.71,"recv":0,"send":0,"writ":0.61,"used":573.73,"free":3049.8},{"epoch":26153754,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":573.08,"free":3050.45},{"epoch":26153755,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":573.31,"free":3050.23},{"epoch":26153756,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":573.3,"free":3050.25},{"epoch":26153757,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":573.31,"free":3050.23},{"epoch":26153758,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":573.95,"free":3049.59},{"epoch":26153759,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":573.64,"free":3049.89},{"epoch":26153760,"idl":99.71,"recv":0,"send":0,"writ":0.27,"used":572.46,"free":3051.09},{"epoch":26153761,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":572.37,"free":3051.17},{"epoch":26153762,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":572.34,"free":3051.2},{"epoch":26153763,"idl":99.71,"recv":0,"send":0,"writ":0.51,"used":572.94,"free":3050.59},{"epoch":26153764,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":572.8,"free":3050.73},{"epoch":26153765,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":573.65,"free":3049.89},{"epoch":26153766,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":573.64,"free":3049.9},{"epoch":26153767,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":573.6,"free":3049.95},{"epoch":26153768,"idl":99.68,"recv":0,"send":0,"writ":0.5,"used":573.51,"free":3050.04},{"epoch":26153769,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":573.75,"free":3049.78},{"epoch":26153770,"idl":99.78,"recv":0,"send":0,"writ":0.26,"used":573.54,"free":3050.01},{"epoch":26153771,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":573.55,"free":3049.99},{"epoch":26153772,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":573.67,"free":3049.87},{"epoch":26153773,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":574.28,"free":3049.26},{"epoch":26153774,"idl":98.2,"recv":0,"send":0,"writ":0.14,"used":573.61,"free":3049.92},{"epoch":26153775,"idl":99.83,"recv":0,"send":0,"writ":0.25,"used":573.85,"free":3049.7},{"epoch":26153776,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":573.82,"free":3049.72},{"epoch":26153777,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":573.79,"free":3049.75},{"epoch":26153778,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":574.07,"free":3049.47},{"epoch":26153779,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.38,"used":573.35,"free":3050.18},{"epoch":26153780,"idl":99.82,"recv":0,"send":0,"writ":0.25,"used":573.16,"free":3050.39},{"epoch":26153781,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":572.8,"free":3050.74},{"epoch":26153782,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":572.1,"free":3051.44},{"epoch":26153783,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":572.44,"free":3051.09},{"epoch":26153784,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":572.3,"free":3051.23},{"epoch":26153785,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":573.01,"free":3050.53},{"epoch":26153786,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":573.13,"free":3050.41},{"epoch":26153787,"idl":99.83,"recv":0,"send":0.01,"writ":0.18,"used":573.13,"free":3050.41},{"epoch":26153788,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":573.09,"free":3050.45},{"epoch":26153789,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":572.29,"free":3051.23},{"epoch":26153790,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":572.55,"free":3050.99},{"epoch":26153791,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":572.52,"free":3051.02},{"epoch":26153792,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":572.59,"free":3050.95},{"epoch":26153793,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":572.65,"free":3050.88},{"epoch":26153794,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":572.61,"free":3050.92},{"epoch":26153795,"idl":99.8,"recv":0,"send":0,"writ":0.26,"used":572.61,"free":3050.93},{"epoch":26153796,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":572.59,"free":3050.95},{"epoch":26153797,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":572.56,"free":3050.97},{"epoch":26153798,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":572.54,"free":3050.99},{"epoch":26153799,"idl":99.6,"recv":0,"send":0,"writ":0.69,"used":573.46,"free":3050.04},{"epoch":26153800,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":572.64,"free":3050.88},{"epoch":26153801,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":572.71,"free":3050.8},{"epoch":26153802,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.69,"free":3050.83},{"epoch":26153803,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":572.66,"free":3050.85},{"epoch":26153804,"idl":99.69,"recv":0,"send":0,"writ":0.53,"used":573.1,"free":3050.44},{"epoch":26153805,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":572.86,"free":3050.69},{"epoch":26153806,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":572.84,"free":3050.71},{"epoch":26153807,"idl":99.88,"recv":0,"send":0.01,"writ":0.16,"used":572.81,"free":3050.73},{"epoch":26153808,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.85,"free":3050.7},{"epoch":26153809,"idl":99.73,"recv":0,"send":0,"writ":0.61,"used":573.35,"free":3050.19},{"epoch":26153810,"idl":99.76,"recv":0,"send":0,"writ":0.24,"used":573.25,"free":3050.31},{"epoch":26153811,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":573.14,"free":3050.41},{"epoch":26153812,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":573.11,"free":3050.44},{"epoch":26153813,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":572.95,"free":3050.6},{"epoch":26153814,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":573.17,"free":3050.37},{"epoch":26153815,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":572.13,"free":3051.43},{"epoch":26153816,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.22,"free":3051.33},{"epoch":26153817,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.19,"free":3051.36},{"epoch":26153818,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.17,"free":3051.38},{"epoch":26153819,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.13,"free":3051.41},{"epoch":26153820,"idl":99.63,"recv":0,"send":0,"writ":0.65,"used":572.39,"free":3051.17},{"epoch":26153821,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.09,"free":3051.46},{"epoch":26153822,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":572.07,"free":3051.48},{"epoch":26153823,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.13,"free":3051.42},{"epoch":26153824,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":572.18,"free":3051.37},{"epoch":26153825,"idl":99.74,"recv":0,"send":0,"writ":0.67,"used":572.86,"free":3050.7},{"epoch":26153826,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.14,"free":3051.42},{"epoch":26153827,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":572.11,"free":3051.44},{"epoch":26153828,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.09,"free":3051.46},{"epoch":26153829,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":573.04,"free":3050.49},{"epoch":26153830,"idl":99.76,"recv":0,"send":0,"writ":0.64,"used":573.32,"free":3050.21},{"epoch":26153831,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":572.71,"free":3050.83},{"epoch":26153832,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":572.68,"free":3050.85},{"epoch":26153833,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":572.65,"free":3050.88},{"epoch":26153834,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":572.62,"free":3050.9},{"epoch":26153835,"idl":97.1,"recv":0,"send":0,"writ":0.68,"used":573.71,"free":3049.83},{"epoch":26153836,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":573.33,"free":3050.21},{"epoch":26153837,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":573.3,"free":3050.23},{"epoch":26153838,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":573.33,"free":3050.19},{"epoch":26153839,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.18,"used":573.43,"free":3050.09},{"epoch":26153840,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":573.93,"free":3049.61},{"epoch":26153841,"idl":99.91,"recv":0,"send":0,"writ":0.28,"used":573.38,"free":3050.15},{"epoch":26153842,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":573.35,"free":3050.18},{"epoch":26153843,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":573.32,"free":3050.21},{"epoch":26153844,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":573.29,"free":3050.23},{"epoch":26153845,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":573.5,"free":3050.04},{"epoch":26153846,"idl":99.94,"recv":0,"send":0,"writ":0.34,"used":573.44,"free":3050.1},{"epoch":26153847,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":573.41,"free":3050.12},{"epoch":26153848,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":573.39,"free":3050.14},{"epoch":26153849,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":573.35,"free":3050.17},{"epoch":26153850,"idl":99.76,"recv":0,"send":0,"writ":0.47,"used":573.77,"free":3049.77},{"epoch":26153851,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":573.31,"free":3050.21},{"epoch":26153852,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":573.28,"free":3050.24},{"epoch":26153853,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":573.35,"free":3050.16},{"epoch":26153854,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":573.44,"free":3050.09},{"epoch":26153855,"idl":99.88,"recv":0,"send":0,"writ":0.26,"used":573.43,"free":3050.12},{"epoch":26153856,"idl":99.77,"recv":0,"send":0,"writ":0.61,"used":573.91,"free":3049.62},{"epoch":26153857,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":573.37,"free":3050.17},{"epoch":26153858,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":573.33,"free":3050.19},{"epoch":26153859,"idl":99.85,"recv":0,"send":0,"writ":0.45,"used":573.59,"free":3049.91},{"epoch":26153860,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":573.9,"free":3049.62},{"epoch":26153861,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":573.19,"free":3050.33},{"epoch":26153862,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.19,"free":3051.33},{"epoch":26153863,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":572.16,"free":3051.35},{"epoch":26153864,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":572.12,"free":3051.38},{"epoch":26153865,"idl":99.85,"recv":0,"send":0,"writ":0.26,"used":573.07,"free":3050.45},{"epoch":26153866,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":573.6,"free":3049.92},{"epoch":26153867,"idl":99.9,"recv":0,"send":0.01,"writ":0.38,"used":573.28,"free":3050.24},{"epoch":26153868,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":573.2,"free":3050.31},{"epoch":26153869,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":573.17,"free":3050.34},{"epoch":26153870,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":573.39,"free":3050.13},{"epoch":26153871,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":573.73,"free":3049.79},{"epoch":26153872,"idl":99.94,"recv":0,"send":0,"writ":0.31,"used":573.33,"free":3050.18},{"epoch":26153873,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":573.18,"free":3050.36},{"epoch":26153874,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":573.07,"free":3050.47},{"epoch":26153875,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":573.69,"free":3049.86},{"epoch":26153876,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":574.28,"free":3049.27},{"epoch":26153877,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":573.39,"free":3050.16},{"epoch":26153878,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":573.36,"free":3050.18},{"epoch":26153879,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":573.33,"free":3050.21},{"epoch":26153880,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":573.57,"free":3050.01},{"epoch":26153881,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":573.92,"free":3049.65},{"epoch":26153882,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":573.69,"free":3049.88},{"epoch":26153883,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":573.65,"free":3049.91},{"epoch":26153884,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":573.62,"free":3049.94},{"epoch":26153885,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":573.61,"free":3049.96},{"epoch":26153886,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":573.57,"free":3049.99},{"epoch":26153887,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":573.66,"free":3049.91},{"epoch":26153888,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":573.35,"free":3050.21},{"epoch":26153889,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":573.66,"free":3049.88},{"epoch":26153890,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":573.41,"free":3050.14},{"epoch":26153891,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":573.38,"free":3050.17},{"epoch":26153892,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":574.09,"free":3049.45},{"epoch":26153893,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":573.79,"free":3049.74},{"epoch":26153894,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":573.76,"free":3049.79},{"epoch":26153895,"idl":98.51,"recv":0,"send":0,"writ":0.29,"used":573.58,"free":3049.99},{"epoch":26153896,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":573.67,"free":3049.9},{"epoch":26153897,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":574.16,"free":3049.4},{"epoch":26153898,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":573.85,"free":3049.71},{"epoch":26153899,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.14,"used":573.82,"free":3049.73},{"epoch":26153900,"idl":99.89,"recv":0,"send":0,"writ":0.25,"used":573.81,"free":3049.77},{"epoch":26153901,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":573.78,"free":3049.8},{"epoch":26153902,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":574.03,"free":3049.55},{"epoch":26153903,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":572.95,"free":3050.63},{"epoch":26153904,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.92,"free":3050.66},{"epoch":26153905,"idl":99.88,"recv":0,"send":0,"writ":0.26,"used":573.63,"free":3049.96},{"epoch":26153906,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":573.61,"free":3049.98},{"epoch":26153907,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":573.78,"free":3049.8},{"epoch":26153908,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":573.55,"free":3050.03},{"epoch":26153909,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":573.57,"free":3049.99},{"epoch":26153910,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":573.7,"free":3049.88},{"epoch":26153911,"idl":99.88,"recv":0.02,"send":0.99,"writ":0.34,"used":573.6,"free":3049.98},{"epoch":26153912,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":573.93,"free":3049.63},{"epoch":26153913,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":573.75,"free":3049.81},{"epoch":26153914,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":573.84,"free":3049.71},{"epoch":26153915,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":573.01,"free":3050.57},{"epoch":26153916,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":572.91,"free":3050.66},{"epoch":26153917,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":573.34,"free":3050.23},{"epoch":26153918,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":573.58,"free":3049.98},{"epoch":26153919,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":574.03,"free":3049.5},{"epoch":26153920,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":573.8,"free":3049.75},{"epoch":26153921,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":573.82,"free":3049.73},{"epoch":26153922,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":573.92,"free":3049.62},{"epoch":26153923,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":574.25,"free":3049.29},{"epoch":26153924,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":573.86,"free":3049.67},{"epoch":26153925,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":574.09,"free":3049.46},{"epoch":26153926,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":574.07,"free":3049.48},{"epoch":26153927,"idl":99.91,"recv":0,"send":0.01,"writ":0.17,"used":574.03,"free":3049.51},{"epoch":26153928,"idl":99.78,"recv":0,"send":0,"writ":0.63,"used":574.35,"free":3049.18},{"epoch":26153929,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":573.91,"free":3049.62},{"epoch":26153930,"idl":99.9,"recv":0,"send":0,"writ":0.25,"used":573.9,"free":3049.65},{"epoch":26153931,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":573.87,"free":3049.68},{"epoch":26153932,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":573.85,"free":3049.7},{"epoch":26153933,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":574.05,"free":3049.48},{"epoch":26153934,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":573.53,"free":3050},{"epoch":26153935,"idl":99.88,"recv":0,"send":0,"writ":0.26,"used":573.52,"free":3050.02},{"epoch":26153936,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":573.48,"free":3050.06},{"epoch":26153937,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":573.14,"free":3050.39},{"epoch":26153938,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":573.62,"free":3049.91},{"epoch":26153939,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":573.33,"free":3050.19},{"epoch":26153940,"idl":99.88,"recv":0,"send":0,"writ":0.25,"used":573.32,"free":3050.22},{"epoch":26153941,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":573.28,"free":3050.26},{"epoch":26153942,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":573.26,"free":3050.27},{"epoch":26153943,"idl":99.81,"recv":0,"send":0,"writ":0.58,"used":573.65,"free":3049.88},{"epoch":26153944,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":573.14,"free":3050.39},{"epoch":26153945,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":573.13,"free":3050.41},{"epoch":26153946,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":573.1,"free":3050.43},{"epoch":26153947,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":573.08,"free":3050.45},{"epoch":26153948,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":573.26,"free":3050.27},{"epoch":26153949,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":573.01,"free":3050.5},{"epoch":26153950,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":573.27,"free":3050.25},{"epoch":26153951,"idl":99.01,"recv":0,"send":0,"writ":0.13,"used":574.11,"free":3049.4},{"epoch":26153952,"idl":99.92,"recv":0,"send":0,"writ":0.36,"used":573.63,"free":3049.88},{"epoch":26153953,"idl":96.86,"recv":0.02,"send":0.01,"writ":14.12,"used":579.99,"free":3045.26},{"epoch":26153954,"idl":99.85,"recv":0,"send":0,"writ":63.88,"used":575.7,"free":3047.71},{"epoch":26153955,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":575.78,"free":3047.64},{"epoch":26153956,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":575.75,"free":3047.66},{"epoch":26153957,"idl":99.92,"recv":0,"send":0,"writ":0.23,"used":575.72,"free":3047.69},{"epoch":26153958,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":575.69,"free":3047.72},{"epoch":26153959,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.7,"used":573.51,"free":3049.93},{"epoch":26153960,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":571.77,"free":3051.68},{"epoch":26153961,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":571.84,"free":3051.6},{"epoch":26153962,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":571.9,"free":3051.54},{"epoch":26153963,"idl":99.81,"recv":0,"send":0,"writ":0.19,"used":571.87,"free":3051.57},{"epoch":26153964,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":573.48,"free":3049.97},{"epoch":26153965,"idl":98.67,"recv":0,"send":0,"writ":15.43,"used":575.04,"free":3048.62},{"epoch":26153966,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":572.76,"free":3050.42},{"epoch":26153967,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":572.73,"free":3050.45},{"epoch":26153968,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":572.71,"free":3050.48},{"epoch":26153969,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":573.44,"free":3049.75},{"epoch":26153970,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":573.35,"free":3049.85},{"epoch":26153971,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":573.32,"free":3049.88},{"epoch":26153972,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":573.28,"free":3049.92},{"epoch":26153973,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":573.25,"free":3049.94},{"epoch":26153974,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":573.68,"free":3049.51},{"epoch":26153975,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":573.71,"free":3049.5},{"epoch":26153976,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":573.73,"free":3049.48},{"epoch":26153977,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":573.83,"free":3049.36},{"epoch":26153978,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":573.8,"free":3049.39},{"epoch":26153979,"idl":99.67,"recv":0,"send":0,"writ":0.65,"used":573.89,"free":3049.28},{"epoch":26153980,"idl":99.84,"recv":0,"send":0,"writ":0.37,"used":573.52,"free":3049.67},{"epoch":26153981,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":573.5,"free":3049.7},{"epoch":26153982,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":573.46,"free":3049.72},{"epoch":26153983,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":573.44,"free":3049.75},{"epoch":26153984,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":573.88,"free":3049.33},{"epoch":26153985,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":573.61,"free":3049.63},{"epoch":26153986,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":573.57,"free":3049.66},{"epoch":26153987,"idl":99.93,"recv":0,"send":0.01,"writ":0.14,"used":573.54,"free":3049.68},{"epoch":26153988,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":573.51,"free":3049.71},{"epoch":26153989,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":573.8,"free":3049.42},{"epoch":26153990,"idl":99.84,"recv":0,"send":0,"writ":0.46,"used":573.56,"free":3049.68},{"epoch":26153991,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":573.5,"free":3049.73},{"epoch":26153992,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":573.59,"free":3049.64},{"epoch":26153993,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":573.45,"free":3049.77},{"epoch":26153994,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":573.28,"free":3049.93},{"epoch":26153995,"idl":99.7,"recv":0,"send":0,"writ":0.74,"used":573.87,"free":3049.36},{"epoch":26153996,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":573.49,"free":3049.74},{"epoch":26153997,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":573.46,"free":3049.76},{"epoch":26153998,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":573.43,"free":3049.78},{"epoch":26153999,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":573.5,"free":3049.72},{"epoch":26154000,"idl":99.65,"recv":0,"send":0,"writ":0.66,"used":573.95,"free":3049.28},{"epoch":26154001,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":573.56,"free":3049.67},{"epoch":26154002,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":573.53,"free":3049.69},{"epoch":26154003,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":573.5,"free":3049.71},{"epoch":26154004,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":573.47,"free":3049.74},{"epoch":26154005,"idl":99.74,"recv":0,"send":0,"writ":0.69,"used":573.57,"free":3049.66},{"epoch":26154006,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":573.19,"free":3050.03},{"epoch":26154007,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":573.28,"free":3049.94},{"epoch":26154008,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":573.32,"free":3049.9},{"epoch":26154009,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":573.27,"free":3049.91},{"epoch":26154010,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":574.01,"free":3049.2},{"epoch":26154011,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":573.72,"free":3049.48},{"epoch":26154012,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":573.69,"free":3049.51},{"epoch":26154013,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":573.67,"free":3049.53},{"epoch":26154014,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":573.78,"free":3049.43},{"epoch":26154015,"idl":99.71,"recv":0,"send":0,"writ":0.72,"used":574.1,"free":3049.13},{"epoch":26154016,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":573.57,"free":3049.65},{"epoch":26154017,"idl":99.91,"recv":0,"send":0,"writ":0.25,"used":573.54,"free":3049.68},{"epoch":26154018,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":573.51,"free":3049.71},{"epoch":26154019,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.15,"used":573.49,"free":3049.73},{"epoch":26154020,"idl":99.76,"recv":0,"send":0,"writ":0.71,"used":574.01,"free":3049.22},{"epoch":26154021,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.8,"free":3050.43},{"epoch":26154022,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":572.86,"free":3050.36},{"epoch":26154023,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":572.83,"free":3050.39},{"epoch":26154024,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":572.8,"free":3050.41},{"epoch":26154025,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":573.88,"free":3049.35},{"epoch":26154026,"idl":99.92,"recv":0,"send":0,"writ":0.27,"used":573.5,"free":3049.73},{"epoch":26154027,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":573.46,"free":3049.76},{"epoch":26154028,"idl":99.92,"recv":0,"send":0.01,"writ":0.17,"used":573.47,"free":3049.74},{"epoch":26154029,"idl":99.91,"recv":0,"send":0.01,"writ":0.18,"used":573.56,"free":3049.65},{"epoch":26154030,"idl":99.72,"recv":0,"send":0,"writ":0.62,"used":573.5,"free":3049.72},{"epoch":26154031,"idl":99.92,"recv":0,"send":0,"writ":0.32,"used":574.02,"free":3049.21},{"epoch":26154032,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":573.99,"free":3049.23},{"epoch":26154033,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":573.96,"free":3049.26},{"epoch":26154034,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":573.93,"free":3049.28},{"epoch":26154035,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":573.12,"free":3050.11},{"epoch":26154036,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":573.89,"free":3049.34},{"epoch":26154037,"idl":98.63,"recv":0,"send":0,"writ":0.14,"used":573.55,"free":3049.67},{"epoch":26154038,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":573.52,"free":3049.69},{"epoch":26154039,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":573.73,"free":3049.46},{"epoch":26154040,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":573.72,"free":3049.48},{"epoch":26154041,"idl":99.76,"recv":0,"send":0,"writ":0.63,"used":573.15,"free":3050.05},{"epoch":26154042,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":571.95,"free":3051.25},{"epoch":26154043,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.09,"free":3051.11},{"epoch":26154044,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":572.07,"free":3051.14},{"epoch":26154045,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":572.77,"free":3050.45},{"epoch":26154046,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":573.79,"free":3049.43},{"epoch":26154047,"idl":99.93,"recv":0,"send":0.01,"writ":0.18,"used":573.47,"free":3049.74},{"epoch":26154048,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":573.44,"free":3049.77},{"epoch":26154049,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":573.41,"free":3049.8},{"epoch":26154050,"idl":99.89,"recv":0,"send":0,"writ":0.26,"used":573.52,"free":3049.71},{"epoch":26154051,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":574.27,"free":3048.95},{"epoch":26154052,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":574.02,"free":3049.2},{"epoch":26154053,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":573.79,"free":3049.42},{"epoch":26154054,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":573.47,"free":3049.74},{"epoch":26154055,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":573.46,"free":3049.76},{"epoch":26154056,"idl":99.77,"recv":0,"send":0,"writ":0.4,"used":574,"free":3049.22},{"epoch":26154057,"idl":99.9,"recv":0.01,"send":0.02,"writ":0.34,"used":574,"free":3049.22},{"epoch":26154058,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":573.99,"free":3049.22},{"epoch":26154059,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":573.95,"free":3049.25},{"epoch":26154060,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":573.69,"free":3049.53},{"epoch":26154061,"idl":99.75,"recv":0,"send":0,"writ":0.39,"used":574.02,"free":3049.2},{"epoch":26154062,"idl":99.91,"recv":0,"send":0,"writ":0.35,"used":573.98,"free":3049.23},{"epoch":26154063,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":574.06,"free":3049.15},{"epoch":26154064,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":574.03,"free":3049.17},{"epoch":26154065,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":574.26,"free":3048.95},{"epoch":26154066,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":574.49,"free":3048.72},{"epoch":26154067,"idl":99.93,"recv":0,"send":0,"writ":0.42,"used":572.24,"free":3050.97},{"epoch":26154068,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":572.21,"free":3050.99},{"epoch":26154069,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":573.65,"free":3049.52},{"epoch":26154070,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":574.07,"free":3049.12},{"epoch":26154071,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":574.05,"free":3049.14},{"epoch":26154072,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":573.93,"free":3049.25},{"epoch":26154073,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":573.5,"free":3049.68},{"epoch":26154074,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":573.47,"free":3049.71},{"epoch":26154075,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":573.94,"free":3049.25},{"epoch":26154076,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":573.91,"free":3049.28},{"epoch":26154077,"idl":99.77,"recv":0,"send":0,"writ":0.63,"used":574.85,"free":3048.34},{"epoch":26154078,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":574.28,"free":3048.9},{"epoch":26154079,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.15,"used":574.26,"free":3048.92},{"epoch":26154080,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":574.06,"free":3049.14},{"epoch":26154081,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":573.97,"free":3049.22},{"epoch":26154082,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":574.57,"free":3048.61},{"epoch":26154083,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":574.15,"free":3049.03},{"epoch":26154084,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":574.21,"free":3048.97},{"epoch":26154085,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":574.06,"free":3049.13},{"epoch":26154086,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":574.02,"free":3049.17},{"epoch":26154087,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":574.25,"free":3048.94},{"epoch":26154088,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":573.71,"free":3049.47},{"epoch":26154089,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.61,"free":3051.56},{"epoch":26154090,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":570.95,"free":3052.24},{"epoch":26154091,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":571.02,"free":3052.17},{"epoch":26154092,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":571.44,"free":3051.75},{"epoch":26154093,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.05,"free":3052.12},{"epoch":26154094,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.02,"free":3052.15},{"epoch":26154095,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":571.26,"free":3051.93},{"epoch":26154096,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.22,"free":3051.96},{"epoch":26154097,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":571.49,"free":3051.69},{"epoch":26154098,"idl":99.6,"recv":0,"send":0,"writ":0.25,"used":571,"free":3052.18},{"epoch":26154099,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":571.06,"free":3052.09},{"epoch":26154100,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":571.06,"free":3052.11},{"epoch":26154101,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":571.03,"free":3052.14},{"epoch":26154102,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":571.36,"free":3051.8},{"epoch":26154103,"idl":99.94,"recv":0,"send":0,"writ":0.39,"used":571.21,"free":3051.94},{"epoch":26154104,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":571.18,"free":3051.97},{"epoch":26154105,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":571.18,"free":3051.99},{"epoch":26154106,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":571.34,"free":3051.83},{"epoch":26154107,"idl":99.92,"recv":0,"send":0.01,"writ":0.16,"used":571.3,"free":3051.86},{"epoch":26154108,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":571.41,"free":3051.74},{"epoch":26154109,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":570.99,"free":3052.17},{"epoch":26154110,"idl":99.86,"recv":0,"send":0.01,"writ":0.29,"used":571.2,"free":3051.97},{"epoch":26154111,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":571.17,"free":3052},{"epoch":26154112,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":571.31,"free":3051.85},{"epoch":26154113,"idl":99.72,"recv":0,"send":0,"writ":0.64,"used":571.24,"free":3051.91},{"epoch":26154114,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":570.56,"free":3052.59},{"epoch":26154115,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":571.27,"free":3051.89},{"epoch":26154116,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":571.26,"free":3051.91},{"epoch":26154117,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.24,"free":3051.92},{"epoch":26154118,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":571.56,"free":3051.6},{"epoch":26154119,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":571.21,"free":3051.94},{"epoch":26154120,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":570.15,"free":3053.02},{"epoch":26154121,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":570.09,"free":3053.07},{"epoch":26154122,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":570.06,"free":3053.09},{"epoch":26154123,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":571.08,"free":3052.07},{"epoch":26154124,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":570.97,"free":3052.17},{"epoch":26154125,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":571.21,"free":3051.95},{"epoch":26154126,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.18,"free":3051.98},{"epoch":26154127,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":571.29,"free":3051.86},{"epoch":26154128,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":571.95,"free":3051.19},{"epoch":26154129,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":571.04,"free":3052.07},{"epoch":26154130,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":570.3,"free":3052.82},{"epoch":26154131,"idl":99.92,"recv":0,"send":0,"writ":0.12,"used":570.24,"free":3052.87},{"epoch":26154132,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.2,"used":570.3,"free":3052.81},{"epoch":26154133,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":570.69,"free":3052.42},{"epoch":26154134,"idl":99.93,"recv":0,"send":0,"writ":0.39,"used":571.02,"free":3052.09},{"epoch":26154135,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":570.06,"free":3053.07},{"epoch":26154136,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":569.99,"free":3053.14},{"epoch":26154137,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":569.96,"free":3053.17},{"epoch":26154138,"idl":99.63,"recv":0,"send":0,"writ":0.32,"used":570.33,"free":3052.79},{"epoch":26154139,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.38,"used":571.22,"free":3051.9},{"epoch":26154140,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":571.54,"free":3051.6},{"epoch":26154141,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":571.51,"free":3051.62},{"epoch":26154142,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.48,"free":3051.65},{"epoch":26154143,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.45,"free":3051.68},{"epoch":26154144,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":571.56,"free":3051.55},{"epoch":26154145,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":571.17,"free":3051.96},{"epoch":26154146,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":571.27,"free":3051.86},{"epoch":26154147,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.28,"free":3051.84},{"epoch":26154148,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.26,"free":3051.87},{"epoch":26154149,"idl":99.81,"recv":0,"send":0,"writ":0.59,"used":571.22,"free":3051.9},{"epoch":26154150,"idl":99.89,"recv":0.01,"send":0.08,"writ":0.3,"used":571.24,"free":3051.89},{"epoch":26154151,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.29,"free":3051.84},{"epoch":26154152,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.25,"free":3051.87},{"epoch":26154153,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":571.22,"free":3051.89},{"epoch":26154154,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":571.48,"free":3051.63},{"epoch":26154155,"idl":99.91,"recv":0,"send":0,"writ":0.36,"used":570.71,"free":3052.43},{"epoch":26154156,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":570.69,"free":3052.43},{"epoch":26154157,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.83,"free":3052.29},{"epoch":26154158,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.81,"free":3052.31},{"epoch":26154159,"idl":99.65,"recv":0,"send":0,"writ":0.75,"used":571.96,"free":3051.15},{"epoch":26154160,"idl":99.88,"recv":0,"send":0.01,"writ":0.3,"used":571.24,"free":3051.89},{"epoch":26154161,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":571.2,"free":3051.92},{"epoch":26154162,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":571.18,"free":3051.94},{"epoch":26154163,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.25,"free":3051.86},{"epoch":26154164,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":571.66,"free":3051.45},{"epoch":26154165,"idl":99.83,"recv":0,"send":0,"writ":0.41,"used":571.3,"free":3051.83},{"epoch":26154166,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.26,"free":3051.87},{"epoch":26154167,"idl":99.88,"recv":0,"send":0.01,"writ":0.16,"used":571.23,"free":3051.89},{"epoch":26154168,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.19,"free":3051.92},{"epoch":26154169,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":571.55,"free":3051.56},{"epoch":26154170,"idl":99.82,"recv":0,"send":0,"writ":0.45,"used":571.49,"free":3051.63},{"epoch":26154171,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":571.55,"free":3051.57},{"epoch":26154172,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":571.52,"free":3051.6},{"epoch":26154173,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":571.4,"free":3051.71},{"epoch":26154174,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":571.57,"free":3051.54},{"epoch":26154175,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":571.45,"free":3051.67},{"epoch":26154176,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":571.42,"free":3051.7},{"epoch":26154177,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.4,"free":3051.71},{"epoch":26154178,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":571.55,"free":3051.56},{"epoch":26154179,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":571.52,"free":3051.58},{"epoch":26154180,"idl":99.52,"recv":0,"send":0,"writ":0.69,"used":572.05,"free":3051.07},{"epoch":26154181,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.48,"free":3051.63},{"epoch":26154182,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":571.45,"free":3051.65},{"epoch":26154183,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":571.42,"free":3051.68},{"epoch":26154184,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":571.39,"free":3051.71},{"epoch":26154185,"idl":99.68,"recv":0,"send":0,"writ":0.75,"used":572.16,"free":3050.95},{"epoch":26154186,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":571.75,"free":3051.36},{"epoch":26154187,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":571.76,"free":3051.35},{"epoch":26154188,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":571.73,"free":3051.37},{"epoch":26154189,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":571.48,"free":3051.58},{"epoch":26154190,"idl":99.69,"recv":0,"send":0,"writ":0.68,"used":571.43,"free":3051.65},{"epoch":26154191,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":570.2,"free":3052.88},{"epoch":26154192,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":570.19,"free":3052.88},{"epoch":26154193,"idl":99.87,"recv":0.01,"send":0.09,"writ":0.31,"used":570.43,"free":3052.63},{"epoch":26154194,"idl":79.81,"recv":0.04,"send":0.03,"writ":6.32,"used":758.79,"free":2864.16},{"epoch":26154195,"idl":78.92,"recv":0.01,"send":0.04,"writ":6.91,"used":1084.92,"free":2538.05},{"epoch":26154196,"idl":99.67,"recv":0,"send":0,"writ":0.17,"used":780.44,"free":2842.58},{"epoch":26154197,"idl":99.82,"recv":0,"send":0,"writ":0.22,"used":621.12,"free":3001.89},{"epoch":26154198,"idl":99.84,"recv":0.04,"send":1.15,"writ":0.36,"used":621.06,"free":3001.94},{"epoch":26154199,"idl":99.88,"recv":0.05,"send":1.78,"writ":0.14,"used":621.02,"free":3001.98},{"epoch":26154200,"idl":99.69,"recv":0,"send":0.01,"writ":0.84,"used":621.43,"free":3001.57},{"epoch":26154201,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":582.92,"free":3040.41},{"epoch":26154202,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":564.3,"free":3059.29},{"epoch":26154203,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":558.45,"free":3065.29},{"epoch":26154204,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":558.42,"free":3065.31},{"epoch":26154205,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":558.49,"free":3065.26},{"epoch":26154206,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":557.92,"free":3065.85},{"epoch":26154207,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":557.9,"free":3065.88},{"epoch":26154208,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":557.88,"free":3065.91},{"epoch":26154209,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":557.96,"free":3065.82},{"epoch":26154210,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":558.04,"free":3065.76},{"epoch":26154211,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":558.69,"free":3065.11},{"epoch":26154212,"idl":99.77,"recv":0,"send":0,"writ":0.16,"used":558,"free":3065.8},{"epoch":26154213,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.98,"free":3065.8},{"epoch":26154214,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.95,"free":3065.83},{"epoch":26154215,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":557.96,"free":3065.84},{"epoch":26154216,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":557.77,"free":3066.02},{"epoch":26154217,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.18,"free":3066.61},{"epoch":26154218,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.15,"free":3066.63},{"epoch":26154219,"idl":99.75,"recv":0,"send":0,"writ":0.35,"used":557.94,"free":3065.81},{"epoch":26154220,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":558.12,"free":3065.65},{"epoch":26154221,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":558.58,"free":3065.18},{"epoch":26154222,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":558.26,"free":3065.5},{"epoch":26154223,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":558.24,"free":3065.52},{"epoch":26154224,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":558.21,"free":3065.56},{"epoch":26154225,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":558.47,"free":3065.32},{"epoch":26154226,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":558.48,"free":3065.3},{"epoch":26154227,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":557.93,"free":3065.85},{"epoch":26154228,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":557.91,"free":3065.87},{"epoch":26154229,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.88,"free":3065.89},{"epoch":26154230,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":557.44,"free":3066.35},{"epoch":26154231,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":557.72,"free":3066.06},{"epoch":26154232,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":557.53,"free":3066.25},{"epoch":26154233,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":557.43,"free":3066.34},{"epoch":26154234,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":557.24,"free":3066.53},{"epoch":26154235,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":558.2,"free":3065.59},{"epoch":26154236,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":558.81,"free":3064.99},{"epoch":26154237,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":558.19,"free":3065.61},{"epoch":26154238,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":558.17,"free":3065.63},{"epoch":26154239,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":558.15,"free":3065.64},{"epoch":26154240,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":558.15,"free":3065.66},{"epoch":26154241,"idl":99.72,"recv":0,"send":0,"writ":0.52,"used":558.68,"free":3065.13},{"epoch":26154242,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":557.91,"free":3065.89},{"epoch":26154243,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":558.02,"free":3065.78},{"epoch":26154244,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":558,"free":3065.79},{"epoch":26154245,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":558.24,"free":3065.57},{"epoch":26154246,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":558.23,"free":3065.57},{"epoch":26154247,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":558.55,"free":3065.25},{"epoch":26154248,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":558.17,"free":3065.62},{"epoch":26154249,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":558.15,"free":3065.62},{"epoch":26154250,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":558.15,"free":3065.64},{"epoch":26154251,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":558.13,"free":3065.66},{"epoch":26154252,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":558.64,"free":3065.13},{"epoch":26154253,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":558.48,"free":3065.29},{"epoch":26154254,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":558.46,"free":3065.33},{"epoch":26154255,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":558.7,"free":3065.1},{"epoch":26154256,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":558.68,"free":3065.11},{"epoch":26154257,"idl":99.73,"recv":0,"send":0,"writ":0.6,"used":558.61,"free":3065.17},{"epoch":26154258,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":558.12,"free":3065.66},{"epoch":26154259,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":558.11,"free":3065.67},{"epoch":26154260,"idl":99.6,"recv":0,"send":0,"writ":0.29,"used":558,"free":3065.8},{"epoch":26154261,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":558.03,"free":3065.76},{"epoch":26154262,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":558.52,"free":3065.27},{"epoch":26154263,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":558.24,"free":3065.54},{"epoch":26154264,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":558.21,"free":3065.57},{"epoch":26154265,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":558.71,"free":3065.09},{"epoch":26154266,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":558.07,"free":3065.72},{"epoch":26154267,"idl":99.71,"recv":0,"send":0,"writ":0.44,"used":558.03,"free":3065.76},{"epoch":26154268,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":557.65,"free":3066.13},{"epoch":26154269,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":557.63,"free":3066.15},{"epoch":26154270,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":557.64,"free":3066.16},{"epoch":26154271,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":557.67,"free":3066.13},{"epoch":26154272,"idl":99.7,"recv":0,"send":0,"writ":0.5,"used":558.13,"free":3065.65},{"epoch":26154273,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":557.76,"free":3066.02},{"epoch":26154274,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":557.74,"free":3066.04},{"epoch":26154275,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":557.49,"free":3066.3},{"epoch":26154276,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":557.47,"free":3066.32},{"epoch":26154277,"idl":99.7,"recv":0.06,"send":2.39,"writ":0.53,"used":558.17,"free":3065.6},{"epoch":26154278,"idl":96.53,"recv":0,"send":0,"writ":0.3,"used":557.65,"free":3066.12},{"epoch":26154279,"idl":99.73,"recv":0,"send":0,"writ":0.38,"used":557.64,"free":3066.1},{"epoch":26154280,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":557.64,"free":3066.11},{"epoch":26154281,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.59,"free":3066.16},{"epoch":26154282,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":557.74,"free":3066},{"epoch":26154283,"idl":99.69,"recv":0,"send":0,"writ":0.58,"used":558.07,"free":3065.67},{"epoch":26154284,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":557.69,"free":3066.08},{"epoch":26154285,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":556.5,"free":3067.3},{"epoch":26154286,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":556.43,"free":3067.36},{"epoch":26154287,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":556.4,"free":3067.38},{"epoch":26154288,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":557.3,"free":3066.48},{"epoch":26154289,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.09,"free":3066.68},{"epoch":26154290,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":556.39,"free":3067.41},{"epoch":26154291,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.48,"free":3067.31},{"epoch":26154292,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":556.49,"free":3067.3},{"epoch":26154293,"idl":99.67,"recv":0,"send":0,"writ":0.61,"used":557.37,"free":3066.41},{"epoch":26154294,"idl":99.82,"recv":0.07,"send":2.35,"writ":0.31,"used":557.08,"free":3066.69},{"epoch":26154295,"idl":99.82,"recv":0,"send":0.01,"writ":0.37,"used":557.15,"free":3066.62},{"epoch":26154296,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":557.13,"free":3066.64},{"epoch":26154297,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":557.11,"free":3066.65},{"epoch":26154298,"idl":99.7,"recv":0,"send":0,"writ":0.45,"used":557.44,"free":3066.31},{"epoch":26154299,"idl":99.85,"recv":0,"send":0,"writ":0.23,"used":557.15,"free":3066.6},{"epoch":26154300,"idl":99.62,"recv":0.12,"send":0.53,"writ":0.65,"used":558.06,"free":3065.69},{"epoch":26154301,"idl":99.48,"recv":0.43,"send":7.19,"writ":0.76,"used":559.03,"free":3064.69},{"epoch":26154302,"idl":99.38,"recv":1.21,"send":36.57,"writ":0.86,"used":559.05,"free":3064.67},{"epoch":26154303,"idl":99.13,"recv":1.75,"send":56.96,"writ":1.39,"used":559.84,"free":3063.88},{"epoch":26154304,"idl":99.55,"recv":0.6,"send":15.67,"writ":0.61,"used":560.02,"free":3063.69},{"epoch":26154305,"idl":99.76,"recv":0.06,"send":0.11,"writ":0.62,"used":560,"free":3063.74},{"epoch":26154306,"idl":99.84,"recv":0.01,"send":0.04,"writ":0.17,"used":559.94,"free":3063.8},{"epoch":26154307,"idl":99.82,"recv":0.05,"send":0.05,"writ":0.27,"used":560.03,"free":3063.7},{"epoch":26154308,"idl":99.68,"recv":0.02,"send":0.07,"writ":0.53,"used":560.68,"free":3063.05},{"epoch":26154309,"idl":99.71,"recv":0.07,"send":0.1,"writ":0.63,"used":560.27,"free":3063.45},{"epoch":26154310,"idl":99.78,"recv":0.03,"send":0.06,"writ":0.46,"used":560.27,"free":3063.46},{"epoch":26154311,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":560.31,"free":3063.43},{"epoch":26154312,"idl":99.78,"recv":0.04,"send":0.28,"writ":0.24,"used":559.5,"free":3064.23},{"epoch":26154313,"idl":99.71,"recv":0.16,"send":0.16,"writ":0.63,"used":559.19,"free":3064.48},{"epoch":26154314,"idl":99.67,"recv":4.01,"send":3.88,"writ":1.82,"used":559.98,"free":3061.29},{"epoch":26154315,"idl":57.85,"recv":0.13,"send":4.41,"writ":11.77,"used":1018.82,"free":2600.41},{"epoch":26154316,"idl":99.67,"recv":0.09,"send":4.1,"writ":0.63,"used":972.17,"free":2647.04},{"epoch":26154317,"idl":99.85,"recv":0,"send":0.01,"writ":0.2,"used":577.58,"free":3041.63},{"epoch":26154318,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":565.14,"free":3054.07},{"epoch":26154319,"idl":93.74,"recv":0.34,"send":0.01,"writ":258.53,"used":583.54,"free":3036.81},{"epoch":26154320,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":567.93,"free":3051.6},{"epoch":26154321,"idl":99.84,"recv":0,"send":0.01,"writ":0.18,"used":567.89,"free":3051.64},{"epoch":26154322,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":567.86,"free":3051.66},{"epoch":26154323,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":567.95,"free":3051.57},{"epoch":26154324,"idl":99.69,"recv":0,"send":0,"writ":0.63,"used":566.64,"free":3052.9},{"epoch":26154325,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":565.58,"free":3053.98},{"epoch":26154326,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":565.55,"free":3054},{"epoch":26154327,"idl":99.84,"recv":0,"send":0.01,"writ":0.18,"used":565.51,"free":3054.04},{"epoch":26154328,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":565.49,"free":3054.06},{"epoch":26154329,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":566.01,"free":3053.53},{"epoch":26154330,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":565.96,"free":3053.61},{"epoch":26154331,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":565.94,"free":3053.62},{"epoch":26154332,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":566.03,"free":3053.52},{"epoch":26154333,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":566.07,"free":3053.48},{"epoch":26154334,"idl":99.72,"recv":0.01,"send":0.01,"writ":0.5,"used":566.28,"free":3053.28},{"epoch":26154335,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":565.74,"free":3053.84},{"epoch":26154336,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":565.72,"free":3053.85},{"epoch":26154337,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":565.7,"free":3053.87},{"epoch":26154338,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":565.67,"free":3053.89},{"epoch":26154339,"idl":99.67,"recv":0,"send":0,"writ":0.64,"used":566.02,"free":3053.52},{"epoch":26154340,"idl":99.75,"recv":0,"send":0,"writ":0.41,"used":564.68,"free":3054.88},{"epoch":26154341,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":564.61,"free":3054.94},{"epoch":26154342,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":564.6,"free":3054.95},{"epoch":26154343,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":564.57,"free":3054.97},{"epoch":26154344,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":565.22,"free":3054.36},{"epoch":26154345,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":565.53,"free":3054.06},{"epoch":26154346,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":565.53,"free":3054.07},{"epoch":26154347,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":565.5,"free":3054.09},{"epoch":26154348,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":565.47,"free":3054.11},{"epoch":26154349,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":565.82,"free":3053.76},{"epoch":26154350,"idl":99.81,"recv":0,"send":0,"writ":0.35,"used":566.07,"free":3053.53},{"epoch":26154351,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":566.11,"free":3053.48},{"epoch":26154352,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":566.08,"free":3053.5},{"epoch":26154353,"idl":99.78,"recv":0.15,"send":6.26,"writ":0.36,"used":565.99,"free":3053.58},{"epoch":26154354,"idl":99.7,"recv":0.02,"send":0.97,"writ":0.49,"used":566.55,"free":3052.99},{"epoch":26154355,"idl":99.82,"recv":0,"send":0,"writ":0.46,"used":565.8,"free":3053.75},{"epoch":26154356,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":565.76,"free":3053.78},{"epoch":26154357,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":565.75,"free":3053.79},{"epoch":26154358,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":565.72,"free":3053.81},{"epoch":26154359,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":565.71,"free":3053.82},{"epoch":26154360,"idl":99.65,"recv":0,"send":0,"writ":0.74,"used":566.72,"free":3052.83},{"epoch":26154361,"idl":99.67,"recv":0.32,"send":0.39,"writ":0.24,"used":566.33,"free":3053.2},{"epoch":26154362,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":566.34,"free":3053.18},{"epoch":26154363,"idl":99.85,"recv":0.12,"send":4.63,"writ":0.25,"used":566.36,"free":3053.13},{"epoch":26154364,"idl":99.92,"recv":0,"send":0.05,"writ":0.17,"used":566.22,"free":3053.25},{"epoch":26154365,"idl":99.72,"recv":0,"send":0,"writ":0.71,"used":566.33,"free":3053.16},{"epoch":26154366,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.94,"free":3053.54},{"epoch":26154367,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":565.92,"free":3053.57},{"epoch":26154368,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.14,"used":565.89,"free":3053.59},{"epoch":26154369,"idl":99.85,"recv":0,"send":0,"writ":0.43,"used":565.94,"free":3053.51},{"epoch":26154370,"idl":99.71,"recv":0,"send":0,"writ":0.69,"used":566.53,"free":3052.94},{"epoch":26154371,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":566.41,"free":3053.05},{"epoch":26154372,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":566.4,"free":3053.07},{"epoch":26154373,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":566.38,"free":3053.08},{"epoch":26154374,"idl":99.91,"recv":0,"send":0.01,"writ":0.14,"used":566.34,"free":3053.11},{"epoch":26154375,"idl":99.66,"recv":0,"send":0,"writ":0.79,"used":566.51,"free":3052.95},{"epoch":26154376,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":566.22,"free":3053.24},{"epoch":26154377,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":566.19,"free":3053.26},{"epoch":26154378,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566.17,"free":3053.28},{"epoch":26154379,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":566.15,"free":3053.3},{"epoch":26154380,"idl":99.75,"recv":0,"send":0,"writ":0.67,"used":566.52,"free":3052.94},{"epoch":26154381,"idl":99.87,"recv":0.08,"send":3.46,"writ":0.28,"used":566.17,"free":3053.28},{"epoch":26154382,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":563.83,"free":3055.63},{"epoch":26154383,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":562.91,"free":3056.56},{"epoch":26154384,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":562.99,"free":3056.48},{"epoch":26154385,"idl":99.7,"recv":0,"send":0,"writ":0.65,"used":563.1,"free":3056.42},{"epoch":26154386,"idl":99.95,"recv":0,"send":0,"writ":0.31,"used":563.09,"free":3056.43},{"epoch":26154387,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":563.07,"free":3056.44},{"epoch":26154388,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":563.04,"free":3056.47},{"epoch":26154389,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":563.02,"free":3056.48},{"epoch":26154390,"idl":99.68,"recv":0,"send":0,"writ":0.75,"used":563.19,"free":3056.32},{"epoch":26154391,"idl":99.93,"recv":0.02,"send":0.12,"writ":0.18,"used":562.98,"free":3056.53},{"epoch":26154392,"idl":99.91,"recv":0.09,"send":2.97,"writ":0.33,"used":563.01,"free":3056.46},{"epoch":26154393,"idl":99.95,"recv":0,"send":0.11,"writ":0.18,"used":563.01,"free":3056.46},{"epoch":26154394,"idl":99.95,"recv":0,"send":0.01,"writ":0.15,"used":563.06,"free":3056.4},{"epoch":26154395,"idl":99.76,"recv":0,"send":0,"writ":0.48,"used":563.66,"free":3055.81},{"epoch":26154396,"idl":99.94,"recv":0,"send":0.05,"writ":0.46,"used":563.03,"free":3056.45},{"epoch":26154397,"idl":99.94,"recv":0.01,"send":0.02,"writ":0.18,"used":563.01,"free":3056.46},{"epoch":26154398,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":563.06,"free":3056.41},{"epoch":26154399,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":563.03,"free":3056.41},{"epoch":26154400,"idl":99.88,"recv":0.01,"send":0.03,"writ":0.33,"used":563,"free":3056.46},{"epoch":26154401,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":563.72,"free":3055.73},{"epoch":26154402,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":562.92,"free":3056.52},{"epoch":26154403,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":562.91,"free":3056.54},{"epoch":26154404,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":562.96,"free":3056.48},{"epoch":26154405,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":563.08,"free":3056.38},{"epoch":26154406,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":563.73,"free":3055.73},{"epoch":26154407,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":563.03,"free":3056.42},{"epoch":26154408,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":563,"free":3056.44},{"epoch":26154409,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":562.98,"free":3056.46},{"epoch":26154410,"idl":99.83,"recv":0.08,"send":3.15,"writ":0.39,"used":562.71,"free":3056.73},{"epoch":26154411,"idl":99.78,"recv":0,"send":0.06,"writ":0.64,"used":563.05,"free":3056.37},{"epoch":26154412,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":562.42,"free":3056.98},{"epoch":26154413,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":562.31,"free":3057.1},{"epoch":26154414,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":561.88,"free":3057.52},{"epoch":26154415,"idl":99.88,"recv":0,"send":0,"writ":0.37,"used":561.88,"free":3057.54},{"epoch":26154416,"idl":99.78,"recv":0,"send":0,"writ":0.39,"used":562.47,"free":3056.94},{"epoch":26154417,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":562.55,"free":3056.86},{"epoch":26154418,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":562.52,"free":3056.88},{"epoch":26154419,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":562.51,"free":3056.89},{"epoch":26154420,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":562.02,"free":3057.39},{"epoch":26154421,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":562.5,"free":3056.91},{"epoch":26154422,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":562.45,"free":3056.95},{"epoch":26154423,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":562.42,"free":3056.98},{"epoch":26154424,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":562.4,"free":3057},{"epoch":26154425,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":562.56,"free":3056.85},{"epoch":26154426,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.46,"used":562.79,"free":3056.62},{"epoch":26154427,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":562.39,"free":3057.02},{"epoch":26154428,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":562.39,"free":3057.01},{"epoch":26154429,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":562.32,"free":3057.06},{"epoch":26154430,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":562.53,"free":3056.87},{"epoch":26154431,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":562.87,"free":3056.52},{"epoch":26154432,"idl":99.93,"recv":0,"send":0,"writ":0.39,"used":562.74,"free":3056.64},{"epoch":26154433,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":562.72,"free":3056.66},{"epoch":26154434,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":562.7,"free":3056.68},{"epoch":26154435,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":561.27,"free":3058.13},{"epoch":26154436,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":561.19,"free":3058.2},{"epoch":26154437,"idl":99.81,"recv":0,"send":0,"writ":0.62,"used":562.77,"free":3056.62},{"epoch":26154438,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":562.13,"free":3057.25},{"epoch":26154439,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":562.12,"free":3057.25},{"epoch":26154440,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":561.7,"free":3057.69},{"epoch":26154441,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":561.8,"free":3057.59},{"epoch":26154442,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":562.89,"free":3056.49},{"epoch":26154443,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":562.5,"free":3056.88},{"epoch":26154444,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":562.47,"free":3056.91},{"epoch":26154445,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":562.48,"free":3056.91},{"epoch":26154446,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":562.45,"free":3056.94},{"epoch":26154447,"idl":99.81,"recv":0,"send":0,"writ":0.59,"used":562.96,"free":3056.43},{"epoch":26154448,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":562.41,"free":3056.97},{"epoch":26154449,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":562.39,"free":3056.98},{"epoch":26154450,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":562.39,"free":3057},{"epoch":26154451,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":562.37,"free":3057.02},{"epoch":26154452,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":562.84,"free":3056.55},{"epoch":26154453,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":562.51,"free":3056.88},{"epoch":26154454,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":562.48,"free":3056.89},{"epoch":26154455,"idl":99.86,"recv":0,"send":0,"writ":0.37,"used":562.48,"free":3056.91},{"epoch":26154456,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":562.45,"free":3056.94},{"epoch":26154457,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":562.96,"free":3056.42},{"epoch":26154458,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":562.9,"free":3056.48},{"epoch":26154459,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":562.64,"free":3056.72},{"epoch":26154460,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":562.64,"free":3056.74},{"epoch":26154461,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":562.7,"free":3056.67},{"epoch":26154462,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":563.47,"free":3055.89},{"epoch":26154463,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":562.75,"free":3056.61},{"epoch":26154464,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":562.71,"free":3056.66},{"epoch":26154465,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":562.48,"free":3056.91},{"epoch":26154466,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":562.44,"free":3056.95},{"epoch":26154467,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.15,"used":562.66,"free":3056.72},{"epoch":26154468,"idl":99.84,"recv":0,"send":0,"writ":0.61,"used":562.58,"free":3056.8},{"epoch":26154469,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":562.21,"free":3057.17},{"epoch":26154470,"idl":99.82,"recv":0,"send":0,"writ":0.37,"used":562.75,"free":3056.65},{"epoch":26154471,"idl":99.92,"recv":0,"send":0,"writ":0.12,"used":562.69,"free":3056.71},{"epoch":26154472,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":562.67,"free":3056.73},{"epoch":26154473,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":563.04,"free":3056.36},{"epoch":26154474,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":562.38,"free":3057.01},{"epoch":26154475,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":562.38,"free":3057.03},{"epoch":26154476,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":562.35,"free":3057.05},{"epoch":26154477,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":562.51,"free":3056.9},{"epoch":26154478,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":562.86,"free":3056.53},{"epoch":26154479,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":562.49,"free":3056.9},{"epoch":26154480,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":562.73,"free":3056.69},{"epoch":26154481,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":562.72,"free":3056.7},{"epoch":26154482,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":562.69,"free":3056.72},{"epoch":26154483,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":563.04,"free":3056.37},{"epoch":26154484,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":562.65,"free":3056.76},{"epoch":26154485,"idl":99.83,"recv":0,"send":0,"writ":0.37,"used":562.42,"free":3057},{"epoch":26154486,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":562.38,"free":3057.04},{"epoch":26154487,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":562.44,"free":3056.97},{"epoch":26154488,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":562.88,"free":3056.53},{"epoch":26154489,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":562.98,"free":3056.4},{"epoch":26154490,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":562.75,"free":3056.65},{"epoch":26154491,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":562.73,"free":3056.67},{"epoch":26154492,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":562.71,"free":3056.68},{"epoch":26154493,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":563.13,"free":3056.26},{"epoch":26154494,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":562.91,"free":3056.49},{"epoch":26154495,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":562.43,"free":3056.99},{"epoch":26154496,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":562.39,"free":3057.03},{"epoch":26154497,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":562.62,"free":3056.79},{"epoch":26154498,"idl":99.8,"recv":0,"send":0,"writ":0.46,"used":563.44,"free":3055.97},{"epoch":26154499,"idl":99.94,"recv":0,"send":0,"writ":0.25,"used":563.01,"free":3056.39},{"epoch":26154500,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":563.25,"free":3056.17},{"epoch":26154501,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":563.24,"free":3056.18},{"epoch":26154502,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":563.21,"free":3056.21},{"epoch":26154503,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":563.19,"free":3056.22},{"epoch":26154504,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":563.04,"free":3056.36},{"epoch":26154505,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":562.91,"free":3056.51},{"epoch":26154506,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":562.9,"free":3056.52},{"epoch":26154507,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":562.87,"free":3056.54},{"epoch":26154508,"idl":99.63,"recv":0.27,"send":1.43,"writ":0.25,"used":563.91,"free":3055.44},{"epoch":26154509,"idl":99.78,"recv":0.02,"send":0.07,"writ":0.56,"used":565.96,"free":3053.38},{"epoch":26154510,"idl":99.88,"recv":0.02,"send":0.02,"writ":0.34,"used":565.69,"free":3053.67},{"epoch":26154511,"idl":99.95,"recv":0.01,"send":0.01,"writ":0.21,"used":565.88,"free":3053.48},{"epoch":26154512,"idl":99.87,"recv":0.04,"send":0.04,"writ":0.24,"used":565.87,"free":3053.48},{"epoch":26154513,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":565.82,"free":3053.52},{"epoch":26154514,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":566.07,"free":3053.26},{"epoch":26154515,"idl":99.8,"recv":0.05,"send":0.13,"writ":0.3,"used":565.73,"free":3053.62},{"epoch":26154516,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.16,"used":565.63,"free":3053.72},{"epoch":26154517,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":565.6,"free":3053.75},{"epoch":26154518,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":565.64,"free":3053.7},{"epoch":26154519,"idl":99.69,"recv":0,"send":0,"writ":0.7,"used":566.34,"free":3052.98},{"epoch":26154520,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":565.75,"free":3053.58},{"epoch":26154521,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.71,"free":3053.62},{"epoch":26154522,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":565.69,"free":3053.64},{"epoch":26154523,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":565.67,"free":3053.65},{"epoch":26154524,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":566.34,"free":3053},{"epoch":26154525,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":565.43,"free":3053.94},{"epoch":26154526,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.39,"free":3053.98},{"epoch":26154527,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":565.37,"free":3054},{"epoch":26154528,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":565.35,"free":3054.01},{"epoch":26154529,"idl":99.77,"recv":0.04,"send":1.17,"writ":0.54,"used":565.84,"free":3053.5},{"epoch":26154530,"idl":99.81,"recv":0,"send":0,"writ":0.45,"used":565.36,"free":3054},{"epoch":26154531,"idl":99.93,"recv":0.04,"send":1.6,"writ":0.31,"used":565.41,"free":3053.93},{"epoch":26154532,"idl":99.95,"recv":0.01,"send":0.59,"writ":0.19,"used":565.43,"free":3053.9},{"epoch":26154533,"idl":99.93,"recv":0,"send":0,"writ":0.23,"used":565.38,"free":3053.94},{"epoch":26154534,"idl":99.81,"recv":0,"send":0,"writ":0.51,"used":565.71,"free":3053.61},{"epoch":26154535,"idl":99.89,"recv":0,"send":0,"writ":0.46,"used":565.89,"free":3053.45},{"epoch":26154536,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":565.86,"free":3053.48},{"epoch":26154537,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":565.85,"free":3053.48},{"epoch":26154538,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":565.82,"free":3053.51},{"epoch":26154539,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":566.16,"free":3053.16},{"epoch":26154540,"idl":99.83,"recv":0,"send":0,"writ":0.5,"used":565.88,"free":3053.45},{"epoch":26154541,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":565.96,"free":3053.37},{"epoch":26154542,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":565.94,"free":3053.39},{"epoch":26154543,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":565.91,"free":3053.41},{"epoch":26154544,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":565.88,"free":3053.44},{"epoch":26154545,"idl":96.46,"recv":0.54,"send":0.01,"writ":78.64,"used":572.79,"free":3047.53},{"epoch":26154546,"idl":99.93,"recv":0,"send":0,"writ":0.6,"used":568.37,"free":3050.21},{"epoch":26154547,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":568.47,"free":3050.11},{"epoch":26154548,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":568.45,"free":3050.12},{"epoch":26154549,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":567.95,"free":3050.6},{"epoch":26154550,"idl":99.68,"recv":0,"send":0,"writ":0.77,"used":567.7,"free":3050.88},{"epoch":26154551,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":566.02,"free":3052.61},{"epoch":26154552,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":565.99,"free":3052.63},{"epoch":26154553,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":565.98,"free":3052.64},{"epoch":26154554,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.95,"free":3052.66},{"epoch":26154555,"idl":99.7,"recv":0,"send":0,"writ":0.71,"used":565.88,"free":3052.75},{"epoch":26154556,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":565.68,"free":3052.95},{"epoch":26154557,"idl":99.92,"recv":0,"send":0,"writ":0.22,"used":565.79,"free":3052.83},{"epoch":26154558,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.83,"free":3052.79},{"epoch":26154559,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":565.8,"free":3052.81},{"epoch":26154560,"idl":99.7,"recv":0,"send":0,"writ":0.97,"used":566.22,"free":3052.41},{"epoch":26154561,"idl":97.94,"recv":0,"send":0,"writ":0.13,"used":566.02,"free":3052.6},{"epoch":26154562,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.27,"free":3053.34},{"epoch":26154563,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":565.24,"free":3053.38},{"epoch":26154564,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":565.22,"free":3053.39},{"epoch":26154565,"idl":99.71,"recv":0,"send":0,"writ":0.66,"used":565.77,"free":3052.85},{"epoch":26154566,"idl":99.91,"recv":0,"send":0,"writ":0.35,"used":565.44,"free":3053.18},{"epoch":26154567,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":565.42,"free":3053.19},{"epoch":26154568,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.46,"free":3053.15},{"epoch":26154569,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":565.57,"free":3053.04},{"epoch":26154570,"idl":99.71,"recv":0,"send":0,"writ":0.74,"used":565.75,"free":3052.88},{"epoch":26154571,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":565.56,"free":3053.08},{"epoch":26154572,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":565.53,"free":3053.1},{"epoch":26154573,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":565.51,"free":3053.12},{"epoch":26154574,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.48,"free":3053.14},{"epoch":26154575,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":566.06,"free":3052.59},{"epoch":26154576,"idl":99.93,"recv":0,"send":0.01,"writ":0.32,"used":565.2,"free":3053.44},{"epoch":26154577,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":565.18,"free":3053.45},{"epoch":26154578,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":565.21,"free":3053.42},{"epoch":26154579,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":565.33,"free":3053.28},{"epoch":26154580,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":565.57,"free":3053.06},{"epoch":26154581,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":566.12,"free":3052.5},{"epoch":26154582,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":565.78,"free":3052.84},{"epoch":26154583,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":565.76,"free":3052.85},{"epoch":26154584,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":565.74,"free":3052.89},{"epoch":26154585,"idl":99.85,"recv":0.01,"send":0.12,"writ":0.35,"used":565.44,"free":3053.19},{"epoch":26154586,"idl":99.8,"recv":0,"send":0,"writ":0.61,"used":565.75,"free":3052.88},{"epoch":26154587,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":565.5,"free":3053.13},{"epoch":26154588,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":565.54,"free":3053.08},{"epoch":26154589,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":565.51,"free":3053.11},{"epoch":26154590,"idl":99.86,"recv":0,"send":0,"writ":0.48,"used":565.27,"free":3053.37},{"epoch":26154591,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":565.59,"free":3053.04},{"epoch":26154592,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":565.21,"free":3053.42},{"epoch":26154593,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":565.17,"free":3053.45},{"epoch":26154594,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":564.93,"free":3053.69},{"epoch":26154595,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":565.17,"free":3053.46},{"epoch":26154596,"idl":99.75,"recv":0,"send":0,"writ":0.68,"used":565.65,"free":3052.98},{"epoch":26154597,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":565.51,"free":3053.12},{"epoch":26154598,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":565.54,"free":3053.08},{"epoch":26154599,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":565.52,"free":3053.1},{"epoch":26154600,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":565.27,"free":3053.36},{"epoch":26154601,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":565.88,"free":3052.75},{"epoch":26154602,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":565.47,"free":3053.15},{"epoch":26154603,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":565.45,"free":3053.17},{"epoch":26154604,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.43,"free":3053.18},{"epoch":26154605,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":565.44,"free":3053.2},{"epoch":26154606,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":565.77,"free":3052.85},{"epoch":26154607,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":565.37,"free":3053.25},{"epoch":26154608,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":565.48,"free":3053.13},{"epoch":26154609,"idl":99.73,"recv":0,"send":0,"writ":0.39,"used":565.53,"free":3053.06},{"epoch":26154610,"idl":99.89,"recv":0,"send":0,"writ":0.4,"used":565.58,"free":3053.03},{"epoch":26154611,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":565.84,"free":3052.76},{"epoch":26154612,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":565.47,"free":3053.12},{"epoch":26154613,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":565.45,"free":3053.14},{"epoch":26154614,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":565.43,"free":3053.15},{"epoch":26154615,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":565.67,"free":3052.94},{"epoch":26154616,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.54,"used":566.05,"free":3052.55},{"epoch":26154617,"idl":99.91,"recv":0,"send":0,"writ":0.32,"used":565.5,"free":3053.1},{"epoch":26154618,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.47,"free":3053.11},{"epoch":26154619,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":565.45,"free":3053.13},{"epoch":26154620,"idl":99.75,"recv":0,"send":0,"writ":0.31,"used":565.46,"free":3053.14},{"epoch":26154621,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":565.43,"free":3053.17},{"epoch":26154622,"idl":99.77,"recv":0,"send":0,"writ":0.63,"used":566.33,"free":3052.26},{"epoch":26154623,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":565.64,"free":3052.95},{"epoch":26154624,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":565.66,"free":3052.92},{"epoch":26154625,"idl":99.83,"recv":0,"send":0,"writ":0.35,"used":565.81,"free":3052.79},{"epoch":26154626,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":565.78,"free":3052.82},{"epoch":26154627,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":565.05,"free":3053.55},{"epoch":26154628,"idl":97.33,"recv":0.04,"send":0.06,"writ":6.27,"used":568.23,"free":3051.59},{"epoch":26154629,"idl":99.86,"recv":0,"send":0,"writ":79.36,"used":568.08,"free":3049.27},{"epoch":26154630,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":567.97,"free":3049.41},{"epoch":26154631,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":568.01,"free":3049.37},{"epoch":26154632,"idl":99.79,"recv":0,"send":0,"writ":0.61,"used":568.33,"free":3049.04},{"epoch":26154633,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":567.71,"free":3049.65},{"epoch":26154634,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":565.75,"free":3051.66},{"epoch":26154635,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":565.75,"free":3051.68},{"epoch":26154636,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.73,"free":3051.69},{"epoch":26154637,"idl":99.74,"recv":0.01,"send":0.01,"writ":0.68,"used":566.14,"free":3051.27},{"epoch":26154638,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":565.78,"free":3051.62},{"epoch":26154639,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":565.53,"free":3051.84},{"epoch":26154640,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":564.07,"free":3053.33},{"epoch":26154641,"idl":99.54,"recv":0,"send":0,"writ":0.18,"used":564.02,"free":3053.37},{"epoch":26154642,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":565.04,"free":3052.35},{"epoch":26154643,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":565.69,"free":3051.69},{"epoch":26154644,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":565.66,"free":3051.72},{"epoch":26154645,"idl":99.87,"recv":0,"send":0,"writ":0.37,"used":565.42,"free":3051.97},{"epoch":26154646,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":565.45,"free":3051.94},{"epoch":26154647,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":566.24,"free":3051.15},{"epoch":26154648,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":566.02,"free":3051.36},{"epoch":26154649,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":566,"free":3051.38},{"epoch":26154650,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":564.84,"free":3052.55},{"epoch":26154651,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":564.75,"free":3052.64},{"epoch":26154652,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":565.11,"free":3052.28},{"epoch":26154653,"idl":99.91,"recv":0,"send":0,"writ":0.44,"used":565.46,"free":3051.92},{"epoch":26154654,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":565.67,"free":3051.71},{"epoch":26154655,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":565.91,"free":3051.48},{"epoch":26154656,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":565.89,"free":3051.5},{"epoch":26154657,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":566.3,"free":3051.08},{"epoch":26154658,"idl":99.94,"recv":0,"send":0,"writ":0.41,"used":566.08,"free":3051.31},{"epoch":26154659,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":566.06,"free":3051.32},{"epoch":26154660,"idl":99.77,"recv":0,"send":0,"writ":0.39,"used":558.61,"free":3059.2},{"epoch":26154661,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.88,"free":3059.96},{"epoch":26154662,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.86,"free":3059.98},{"epoch":26154663,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":558.19,"free":3059.65},{"epoch":26154664,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.82,"free":3060.02},{"epoch":26154665,"idl":99.89,"recv":0,"send":0,"writ":0.35,"used":557.81,"free":3060.05},{"epoch":26154666,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.79,"free":3060.07},{"epoch":26154667,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":557.88,"free":3059.98},{"epoch":26154668,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":558.6,"free":3059.25},{"epoch":26154669,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":557.66,"free":3060.16},{"epoch":26154670,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":557.16,"free":3060.68},{"epoch":26154671,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":557.13,"free":3060.71},{"epoch":26154672,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":557.11,"free":3060.73},{"epoch":26154673,"idl":99.79,"recv":0,"send":0,"writ":0.49,"used":557.96,"free":3059.87},{"epoch":26154674,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":558.05,"free":3059.79},{"epoch":26154675,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":557.82,"free":3060.04},{"epoch":26154676,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":557.79,"free":3060.07},{"epoch":26154677,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":557.53,"free":3060.32},{"epoch":26154678,"idl":99.76,"recv":0,"send":0,"writ":0.48,"used":558.19,"free":3059.66},{"epoch":26154679,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":558.16,"free":3059.68},{"epoch":26154680,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":558.15,"free":3059.71},{"epoch":26154681,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":558.15,"free":3059.73},{"epoch":26154682,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":558.12,"free":3059.76},{"epoch":26154683,"idl":96.48,"recv":0.02,"send":0.01,"writ":77.78,"used":567.94,"free":3051.69},{"epoch":26154684,"idl":99.94,"recv":0,"send":0,"writ":0.36,"used":560.3,"free":3057.55},{"epoch":26154685,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":560.38,"free":3057.49},{"epoch":26154686,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":560.36,"free":3057.51},{"epoch":26154687,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":560.34,"free":3057.52},{"epoch":26154688,"idl":99.76,"recv":0,"send":0,"writ":0.61,"used":560.12,"free":3057.74},{"epoch":26154689,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":557.89,"free":3060},{"epoch":26154690,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":557.89,"free":3060.02},{"epoch":26154691,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":557.87,"free":3060.03},{"epoch":26154692,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":557.85,"free":3060.05},{"epoch":26154693,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":558.18,"free":3059.71},{"epoch":26154694,"idl":99.92,"recv":0,"send":0,"writ":0.35,"used":558.3,"free":3059.63},{"epoch":26154695,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":557.7,"free":3060.25},{"epoch":26154696,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":557.72,"free":3060.22},{"epoch":26154697,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":557.7,"free":3060.24},{"epoch":26154698,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":557.68,"free":3060.25},{"epoch":26154699,"idl":99.64,"recv":0,"send":0,"writ":0.76,"used":558.47,"free":3059.44},{"epoch":26154700,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":558.15,"free":3059.77},{"epoch":26154701,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":558.13,"free":3059.79},{"epoch":26154702,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":558.11,"free":3059.81},{"epoch":26154703,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":558.09,"free":3059.82},{"epoch":26154704,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":558.54,"free":3059.37},{"epoch":26154705,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":557.1,"free":3060.82},{"epoch":26154706,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":557.16,"free":3060.76},{"epoch":26154707,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":557.21,"free":3060.7},{"epoch":26154708,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":556.29,"free":3061.62},{"epoch":26154709,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":557.06,"free":3060.85},{"epoch":26154710,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":557.17,"free":3060.76},{"epoch":26154711,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":557.15,"free":3060.77},{"epoch":26154712,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.12,"free":3060.8},{"epoch":26154713,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":557.1,"free":3060.81},{"epoch":26154714,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":557.44,"free":3060.47},{"epoch":26154715,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":557.34,"free":3060.59},{"epoch":26154716,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":557.31,"free":3060.61},{"epoch":26154717,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":557.35,"free":3060.56},{"epoch":26154718,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":557.46,"free":3060.45},{"epoch":26154719,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":557.79,"free":3060.12},{"epoch":26154720,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":557.43,"free":3060.49},{"epoch":26154721,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":557.42,"free":3060.5},{"epoch":26154722,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":557.39,"free":3060.53},{"epoch":26154723,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":557.38,"free":3060.53},{"epoch":26154724,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":557.75,"free":3060.15},{"epoch":26154725,"idl":99.92,"recv":0,"send":0,"writ":0.35,"used":557.37,"free":3060.55},{"epoch":26154726,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.34,"free":3060.58},{"epoch":26154727,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":557.32,"free":3060.59},{"epoch":26154728,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.3,"free":3060.6},{"epoch":26154729,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":557.84,"free":3060.04},{"epoch":26154730,"idl":99.78,"recv":0,"send":0,"writ":0.7,"used":557.78,"free":3060.12},{"epoch":26154731,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":557.47,"free":3060.43},{"epoch":26154732,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":557.45,"free":3060.44},{"epoch":26154733,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":557.43,"free":3060.46},{"epoch":26154734,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.41,"free":3060.49},{"epoch":26154735,"idl":99.68,"recv":0,"send":0,"writ":0.7,"used":558.05,"free":3059.87},{"epoch":26154736,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":557.6,"free":3060.32},{"epoch":26154737,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":557.35,"free":3060.57},{"epoch":26154738,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":557.31,"free":3060.6},{"epoch":26154739,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":557.3,"free":3060.61},{"epoch":26154740,"idl":99.69,"recv":0,"send":0,"writ":0.7,"used":557.79,"free":3060.13},{"epoch":26154741,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":557.45,"free":3060.47},{"epoch":26154742,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":557.43,"free":3060.48},{"epoch":26154743,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":557.41,"free":3060.5},{"epoch":26154744,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.39,"free":3060.51},{"epoch":26154745,"idl":99.73,"recv":0,"send":0,"writ":0.74,"used":557.83,"free":3060.09},{"epoch":26154746,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":557.62,"free":3060.3},{"epoch":26154747,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":557.59,"free":3060.32},{"epoch":26154748,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":557.57,"free":3060.34},{"epoch":26154749,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":557.54,"free":3060.36},{"epoch":26154750,"idl":99.7,"recv":0,"send":0,"writ":0.77,"used":557.76,"free":3060.16},{"epoch":26154751,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":557.44,"free":3060.47},{"epoch":26154752,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":557.39,"free":3060.52},{"epoch":26154753,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":557.34,"free":3060.56},{"epoch":26154754,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":557.32,"free":3060.58},{"epoch":26154755,"idl":99.69,"recv":0,"send":0.02,"writ":0.82,"used":557.97,"free":3059.94},{"epoch":26154756,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":557.68,"free":3060.22},{"epoch":26154757,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":557.63,"free":3060.27},{"epoch":26154758,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":557.6,"free":3060.3},{"epoch":26154759,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":557.35,"free":3060.53},{"epoch":26154760,"idl":99.66,"recv":0,"send":0,"writ":0.66,"used":557.49,"free":3060.4},{"epoch":26154761,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":557.32,"free":3060.56},{"epoch":26154762,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":557.3,"free":3060.58},{"epoch":26154763,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":557.29,"free":3060.59},{"epoch":26154764,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":557.35,"free":3060.53},{"epoch":26154765,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":557.72,"free":3060.18},{"epoch":26154766,"idl":99.69,"recv":0,"send":0,"writ":0.61,"used":558.05,"free":3059.85},{"epoch":26154767,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":557.41,"free":3060.48},{"epoch":26154768,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":557.4,"free":3060.49},{"epoch":26154769,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":557.37,"free":3060.51},{"epoch":26154770,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":557.35,"free":3060.54},{"epoch":26154771,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":557.98,"free":3059.92},{"epoch":26154772,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.19,"used":557.66,"free":3060.25},{"epoch":26154773,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":557.64,"free":3060.26},{"epoch":26154774,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":557.37,"free":3060.52},{"epoch":26154775,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":557.84,"free":3060.06},{"epoch":26154776,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":558.02,"free":3059.88},{"epoch":26154777,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.56,"free":3060.34},{"epoch":26154778,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":557.54,"free":3060.35},{"epoch":26154779,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":557.52,"free":3060.38},{"epoch":26154780,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":557.88,"free":3060.02},{"epoch":26154781,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":558.27,"free":3059.63},{"epoch":26154782,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.91,"free":3059.99},{"epoch":26154783,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":557.88,"free":3060.01},{"epoch":26154784,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":557.87,"free":3060.03},{"epoch":26154785,"idl":99.81,"recv":0,"send":0,"writ":0.38,"used":557.93,"free":3059.98},{"epoch":26154786,"idl":99.67,"recv":0,"send":0,"writ":0.54,"used":558.43,"free":3059.47},{"epoch":26154787,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":557.58,"free":3060.32},{"epoch":26154788,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.55,"free":3060.34},{"epoch":26154789,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":557.51,"free":3060.36},{"epoch":26154790,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":557.58,"free":3060.3},{"epoch":26154791,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":558.27,"free":3059.61},{"epoch":26154792,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":557.93,"free":3059.95},{"epoch":26154793,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":557.9,"free":3059.97},{"epoch":26154794,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":557.88,"free":3059.99},{"epoch":26154795,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":557.64,"free":3060.24},{"epoch":26154796,"idl":99.65,"recv":0,"send":0,"writ":0.39,"used":558,"free":3059.87},{"epoch":26154797,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":557.84,"free":3060.03},{"epoch":26154798,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.81,"free":3060.05},{"epoch":26154799,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":557.8,"free":3060.07},{"epoch":26154800,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":557.8,"free":3060.09},{"epoch":26154801,"idl":99.7,"recv":0,"send":0,"writ":0.39,"used":558.13,"free":3059.75},{"epoch":26154802,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":557.88,"free":3059.99},{"epoch":26154803,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":557.92,"free":3059.95},{"epoch":26154804,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.9,"free":3059.97},{"epoch":26154805,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":557.65,"free":3060.23},{"epoch":26154806,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":557.63,"free":3060.25},{"epoch":26154807,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":558.2,"free":3059.68},{"epoch":26154808,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":557.82,"free":3060.05},{"epoch":26154809,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.8,"free":3060.07},{"epoch":26154810,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":557.8,"free":3060.08},{"epoch":26154811,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.78,"free":3060.1},{"epoch":26154812,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":558.48,"free":3059.4},{"epoch":26154813,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":557.68,"free":3060.19},{"epoch":26154814,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.65,"free":3060.21},{"epoch":26154815,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":558.13,"free":3059.75},{"epoch":26154816,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":558.11,"free":3059.77},{"epoch":26154817,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":558.4,"free":3059.47},{"epoch":26154818,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":557.8,"free":3060.07},{"epoch":26154819,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":557.55,"free":3060.29},{"epoch":26154820,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":557.79,"free":3060.08},{"epoch":26154821,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":557.89,"free":3059.98},{"epoch":26154822,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":558.18,"free":3059.69},{"epoch":26154823,"idl":99.81,"recv":0,"send":0.02,"writ":0.2,"used":557.62,"free":3060.24},{"epoch":26154824,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":557.59,"free":3060.27},{"epoch":26154825,"idl":99.77,"recv":0,"send":0,"writ":0.31,"used":557.34,"free":3060.53},{"epoch":26154826,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":557.31,"free":3060.56},{"epoch":26154827,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":558,"free":3059.87},{"epoch":26154828,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":558.14,"free":3059.72},{"epoch":26154829,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":558.12,"free":3059.74},{"epoch":26154830,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":558.36,"free":3059.52},{"epoch":26154831,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":558.34,"free":3059.53},{"epoch":26154832,"idl":99.7,"recv":0,"send":0,"writ":0.5,"used":558.6,"free":3059.26},{"epoch":26154833,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":558.06,"free":3059.8},{"epoch":26154834,"idl":99.81,"recv":0,"send":0,"writ":0.18,"used":557.57,"free":3060.29},{"epoch":26154835,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":557.79,"free":3060.09},{"epoch":26154836,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.77,"free":3060.1},{"epoch":26154837,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":558.22,"free":3059.64},{"epoch":26154838,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":557.9,"free":3059.96},{"epoch":26154839,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":557.89,"free":3059.97},{"epoch":26154840,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":557.9,"free":3059.98},{"epoch":26154841,"idl":99.85,"recv":0.01,"send":0,"writ":0.14,"used":557.87,"free":3060},{"epoch":26154842,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":557.78,"free":3060.08},{"epoch":26154843,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":558.34,"free":3059.52},{"epoch":26154844,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":558.07,"free":3059.78},{"epoch":26154845,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":558.18,"free":3059.7},{"epoch":26154846,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":558.16,"free":3059.71},{"epoch":26154847,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":558.13,"free":3059.73},{"epoch":26154848,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":558.86,"free":3059},{"epoch":26154849,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":558.08,"free":3059.76},{"epoch":26154850,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":558.32,"free":3059.53},{"epoch":26154851,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":558.3,"free":3059.55},{"epoch":26154852,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":558.3,"free":3059.55},{"epoch":26154853,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":558.95,"free":3058.89},{"epoch":26154854,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":558.25,"free":3059.59},{"epoch":26154855,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":558.25,"free":3059.61},{"epoch":26154856,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":558.33,"free":3059.53},{"epoch":26154857,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":558.43,"free":3059.44},{"epoch":26154858,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":558.56,"free":3059.32},{"epoch":26154859,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":557.15,"free":3060.73},{"epoch":26154860,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":557.39,"free":3060.5},{"epoch":26154861,"idl":99.85,"recv":0,"send":0,"writ":0.12,"used":557.37,"free":3060.51},{"epoch":26154862,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":557.35,"free":3060.53},{"epoch":26154863,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":557.81,"free":3060.07},{"epoch":26154864,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":557.29,"free":3060.57},{"epoch":26154865,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":557.55,"free":3060.34},{"epoch":26154866,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":557.52,"free":3060.36},{"epoch":26154867,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":557.59,"free":3060.29},{"epoch":26154868,"idl":99.73,"recv":0,"send":0,"writ":0.33,"used":558.02,"free":3059.85},{"epoch":26154869,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":557.65,"free":3060.22},{"epoch":26154870,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":557.66,"free":3060.23},{"epoch":26154871,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":557.64,"free":3060.25},{"epoch":26154872,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.62,"free":3060.27},{"epoch":26154873,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.58,"free":3060.29},{"epoch":26154874,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":557.93,"free":3059.94},{"epoch":26154875,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":557.32,"free":3060.56},{"epoch":26154876,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":557.3,"free":3060.58},{"epoch":26154877,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":557.27,"free":3060.61},{"epoch":26154878,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.25,"free":3060.62},{"epoch":26154879,"idl":99.64,"recv":0,"send":0,"writ":0.7,"used":557.78,"free":3060.07},{"epoch":26154880,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":557.67,"free":3060.19},{"epoch":26154881,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":557.63,"free":3060.22},{"epoch":26154882,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":557.61,"free":3060.24},{"epoch":26154883,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":557.59,"free":3060.26},{"epoch":26154884,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":557.78,"free":3060.08},{"epoch":26154885,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":556.35,"free":3061.53},{"epoch":26154886,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":556.31,"free":3061.56},{"epoch":26154887,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":556.29,"free":3061.58},{"epoch":26154888,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":556.32,"free":3061.54},{"epoch":26154889,"idl":99.71,"recv":0,"send":0,"writ":0.53,"used":557.37,"free":3060.49},{"epoch":26154890,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":557.65,"free":3060.23},{"epoch":26154891,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":557.64,"free":3060.23},{"epoch":26154892,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":557.61,"free":3060.26},{"epoch":26154893,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.59,"free":3060.28},{"epoch":26154894,"idl":99.68,"recv":0,"send":0,"writ":0.47,"used":557.7,"free":3060.16},{"epoch":26154895,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":557.07,"free":3060.8},{"epoch":26154896,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":557.04,"free":3060.82},{"epoch":26154897,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":557.02,"free":3060.84},{"epoch":26154898,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557,"free":3060.86},{"epoch":26154899,"idl":99.72,"recv":0,"send":0,"writ":0.45,"used":557.71,"free":3060.14},{"epoch":26154900,"idl":99.73,"recv":0,"send":0,"writ":0.45,"used":556.47,"free":3061.39},{"epoch":26154901,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":556.41,"free":3061.46},{"epoch":26154902,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":556.39,"free":3061.47},{"epoch":26154903,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":556.36,"free":3061.49},{"epoch":26154904,"idl":99.73,"recv":0,"send":0,"writ":0.36,"used":556.74,"free":3061.11},{"epoch":26154905,"idl":99.77,"recv":0,"send":0,"writ":0.52,"used":557.57,"free":3060.3},{"epoch":26154906,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":557.56,"free":3060.3},{"epoch":26154907,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":557.54,"free":3060.32},{"epoch":26154908,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":557.52,"free":3060.34},{"epoch":26154909,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":557.74,"free":3060.09},{"epoch":26154910,"idl":99.63,"recv":0,"send":0,"writ":0.74,"used":557.89,"free":3059.95},{"epoch":26154911,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":557.64,"free":3060.19},{"epoch":26154912,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":557.62,"free":3060.21},{"epoch":26154913,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":557.6,"free":3060.23},{"epoch":26154914,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":557.59,"free":3060.27},{"epoch":26154915,"idl":99.62,"recv":0,"send":0,"writ":0.72,"used":557.87,"free":3060.01},{"epoch":26154916,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":557.56,"free":3060.31},{"epoch":26154917,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":557.3,"free":3060.58},{"epoch":26154918,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.16,"used":557.29,"free":3060.57},{"epoch":26154919,"idl":99.87,"recv":0,"send":0.01,"writ":0.17,"used":557.32,"free":3060.55},{"epoch":26154920,"idl":99.64,"recv":0,"send":0,"writ":0.72,"used":557.97,"free":3059.91},{"epoch":26154921,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":557.78,"free":3060.09},{"epoch":26154922,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":557.75,"free":3060.11},{"epoch":26154923,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.74,"free":3060.12},{"epoch":26154924,"idl":98.34,"recv":0,"send":0,"writ":0.15,"used":557.71,"free":3060.14},{"epoch":26154925,"idl":99.76,"recv":0,"send":0,"writ":0.71,"used":558.21,"free":3059.67},{"epoch":26154926,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.66,"free":3060.21},{"epoch":26154927,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":557.64,"free":3060.23},{"epoch":26154928,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":557.62,"free":3060.24},{"epoch":26154929,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.6,"free":3060.26},{"epoch":26154930,"idl":99.7,"recv":0,"send":0,"writ":0.7,"used":558.02,"free":3059.86},{"epoch":26154931,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":557.58,"free":3060.29},{"epoch":26154932,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":557.56,"free":3060.3},{"epoch":26154933,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":557.54,"free":3060.32},{"epoch":26154934,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":557.52,"free":3060.34},{"epoch":26154935,"idl":99.71,"recv":0,"send":0,"writ":0.69,"used":557.65,"free":3060.23},{"epoch":26154936,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":557.26,"free":3060.61},{"epoch":26154937,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.3,"free":3060.57},{"epoch":26154938,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":557.41,"free":3060.46},{"epoch":26154939,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":557.86,"free":3059.98},{"epoch":26154940,"idl":99.7,"recv":0,"send":0,"writ":0.75,"used":558.05,"free":3059.8},{"epoch":26154941,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":557.86,"free":3059.99},{"epoch":26154942,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":557.83,"free":3060.02},{"epoch":26154943,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":557.79,"free":3060.05},{"epoch":26154944,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":557.77,"free":3060.08},{"epoch":26154945,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":558.12,"free":3059.75},{"epoch":26154946,"idl":99.94,"recv":0,"send":0,"writ":0.29,"used":557.75,"free":3060.11},{"epoch":26154947,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":557.84,"free":3060.02},{"epoch":26154948,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":557.88,"free":3059.97},{"epoch":26154949,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.86,"free":3059.99},{"epoch":26154950,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":557.86,"free":3060.01},{"epoch":26154951,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":558.2,"free":3059.66},{"epoch":26154952,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":557.81,"free":3060.05},{"epoch":26154953,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":557.8,"free":3060.05},{"epoch":26154954,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":557.55,"free":3060.3},{"epoch":26154955,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":557.54,"free":3060.32},{"epoch":26154956,"idl":99.82,"recv":0,"send":0,"writ":0.62,"used":558.03,"free":3059.82},{"epoch":26154957,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":557.73,"free":3060.11},{"epoch":26154958,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.71,"free":3060.13},{"epoch":26154959,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":557.82,"free":3060.01},{"epoch":26154960,"idl":99.85,"recv":0,"send":0,"writ":0.37,"used":557.88,"free":3059.97},{"epoch":26154961,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":558.57,"free":3059.28},{"epoch":26154962,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":557.84,"free":3060.01},{"epoch":26154963,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":557.81,"free":3060.03},{"epoch":26154964,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":557.79,"free":3060.05},{"epoch":26154965,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":557.78,"free":3060.07},{"epoch":26154966,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":558.34,"free":3059.5},{"epoch":26154967,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":557.97,"free":3059.87},{"epoch":26154968,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":557.96,"free":3059.88},{"epoch":26154969,"idl":99.82,"recv":0,"send":0.02,"writ":0.33,"used":558.04,"free":3059.77},{"epoch":26154970,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":557.84,"free":3059.99},{"epoch":26154971,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":558.22,"free":3059.61},{"epoch":26154972,"idl":99.95,"recv":0,"send":0,"writ":0.28,"used":558.03,"free":3059.79},{"epoch":26154973,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":558.01,"free":3059.81},{"epoch":26154974,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":557.98,"free":3059.83},{"epoch":26154975,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":557.73,"free":3060.09},{"epoch":26154976,"idl":99.81,"recv":0,"send":0,"writ":0.48,"used":558.04,"free":3059.78},{"epoch":26154977,"idl":99.93,"recv":0,"send":0,"writ":0.25,"used":557.81,"free":3060.01},{"epoch":26154978,"idl":99.93,"recv":0.01,"send":0.03,"writ":0.16,"used":557.8,"free":3060.01},{"epoch":26154979,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":557.69,"free":3060.12},{"epoch":26154980,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":557.1,"free":3060.73},{"epoch":26154981,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":557.52,"free":3060.3},{"epoch":26154982,"idl":99.93,"recv":0,"send":0,"writ":0.38,"used":558.08,"free":3059.74},{"epoch":26154983,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":558.06,"free":3059.76},{"epoch":26154984,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":558.05,"free":3059.76},{"epoch":26154985,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":558.04,"free":3059.79},{"epoch":26154986,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":558.03,"free":3059.79},{"epoch":26154987,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":558.49,"free":3059.33},{"epoch":26154988,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":558.03,"free":3059.79},{"epoch":26154989,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":558.02,"free":3059.79},{"epoch":26154990,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":558.04,"free":3059.78},{"epoch":26154991,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":558.01,"free":3059.82},{"epoch":26154992,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":558.52,"free":3059.3},{"epoch":26154993,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":558.24,"free":3059.57},{"epoch":26154994,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":558.24,"free":3059.57},{"epoch":26154995,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":558.24,"free":3059.58},{"epoch":26154996,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":558.22,"free":3059.61},{"epoch":26154997,"idl":99.81,"recv":0,"send":0,"writ":0.59,"used":558.56,"free":3059.26},{"epoch":26154998,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":558.2,"free":3059.61},{"epoch":26154999,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":557.71,"free":3060.07},{"epoch":26155000,"idl":99.92,"recv":0,"send":0.01,"writ":0.34,"used":557.96,"free":3059.85},{"epoch":26155001,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":557.93,"free":3059.87},{"epoch":26155002,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":558.41,"free":3059.38},{"epoch":26155003,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":558.17,"free":3059.62},{"epoch":26155004,"idl":98.1,"recv":0,"send":0,"writ":0.17,"used":558.17,"free":3059.64},{"epoch":26155005,"idl":99.91,"recv":0,"send":0,"writ":0.37,"used":558.16,"free":3059.68},{"epoch":26155006,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":558.12,"free":3059.71},{"epoch":26155007,"idl":99.82,"recv":0,"send":0,"writ":0.52,"used":558.47,"free":3059.36},{"epoch":26155008,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":557.43,"free":3060.4},{"epoch":26155009,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.12,"free":3060.7},{"epoch":26155010,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":557.38,"free":3060.45},{"epoch":26155011,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":557.38,"free":3060.45},{"epoch":26155012,"idl":99.82,"recv":0,"send":0,"writ":0.41,"used":557.73,"free":3060.1},{"epoch":26155013,"idl":99.95,"recv":0,"send":0,"writ":0.28,"used":557.37,"free":3060.45},{"epoch":26155014,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":556.93,"free":3060.89},{"epoch":26155015,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":557.35,"free":3060.49},{"epoch":26155016,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.35,"free":3060.48},{"epoch":26155017,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":557.98,"free":3059.84},{"epoch":26155018,"idl":99.9,"recv":0,"send":0,"writ":0.39,"used":556.85,"free":3060.97},{"epoch":26155019,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":556.84,"free":3060.97},{"epoch":26155020,"idl":99.38,"recv":0,"send":0,"writ":10.88,"used":557,"free":3060.87},{"epoch":26155021,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":556.98,"free":3060.93},{"epoch":26155022,"idl":99.92,"recv":0,"send":0,"writ":0.12,"used":556.97,"free":3060.93},{"epoch":26155023,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":557.92,"free":3059.98},{"epoch":26155024,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":557.45,"free":3060.44},{"epoch":26155025,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":557.58,"free":3060.37},{"epoch":26155026,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":557.47,"free":3060.48},{"epoch":26155027,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.44,"free":3060.5},{"epoch":26155028,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":557.34,"free":3060.6},{"epoch":26155029,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":557.42,"free":3060.5},{"epoch":26155030,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":557.68,"free":3060.27},{"epoch":26155031,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":557.67,"free":3060.28},{"epoch":26155032,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":557.65,"free":3060.3},{"epoch":26155033,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":557.87,"free":3060.07},{"epoch":26155034,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":557.39,"free":3060.54},{"epoch":26155035,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":557.17,"free":3060.78},{"epoch":26155036,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.12,"free":3060.82},{"epoch":26155037,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":557.12,"free":3060.82},{"epoch":26155038,"idl":99.79,"recv":0,"send":0,"writ":0.45,"used":557.48,"free":3060.46},{"epoch":26155039,"idl":99.91,"recv":0,"send":0,"writ":0.27,"used":557.11,"free":3060.82},{"epoch":26155040,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":557.37,"free":3060.58},{"epoch":26155041,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":557.34,"free":3060.6},{"epoch":26155042,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":557.38,"free":3060.56},{"epoch":26155043,"idl":95.1,"recv":0.36,"send":0.01,"writ":77.76,"used":568.95,"free":3049.07},{"epoch":26155044,"idl":99.85,"recv":0,"send":0,"writ":180.98,"used":560.1,"free":3057.51},{"epoch":26155045,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":560.1,"free":3057.53},{"epoch":26155046,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":560.08,"free":3057.54},{"epoch":26155047,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":560.08,"free":3057.54},{"epoch":26155048,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":560.4,"free":3057.22},{"epoch":26155049,"idl":99.92,"recv":0,"send":0,"writ":0.43,"used":557.63,"free":3060.03},{"epoch":26155050,"idl":99.87,"recv":0,"send":0,"writ":0.38,"used":557.64,"free":3060.04},{"epoch":26155051,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":557.63,"free":3060.05},{"epoch":26155052,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":557.63,"free":3060.05},{"epoch":26155053,"idl":99.94,"recv":0,"send":0.01,"writ":0.17,"used":557.6,"free":3060.07},{"epoch":26155054,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":558.2,"free":3059.5},{"epoch":26155055,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":557.44,"free":3060.27},{"epoch":26155056,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":557.35,"free":3060.36},{"epoch":26155057,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":557.32,"free":3060.39},{"epoch":26155058,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.31,"free":3060.39},{"epoch":26155059,"idl":99.72,"recv":0,"send":0,"writ":0.73,"used":557.87,"free":3059.81},{"epoch":26155060,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":557.52,"free":3060.18},{"epoch":26155061,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":557.51,"free":3060.18},{"epoch":26155062,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.48,"free":3060.21},{"epoch":26155063,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":557.47,"free":3060.21},{"epoch":26155064,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":557.94,"free":3059.74},{"epoch":26155065,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":556.52,"free":3061.18},{"epoch":26155066,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":556.49,"free":3061.2},{"epoch":26155067,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":556.49,"free":3061.2},{"epoch":26155068,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":556.49,"free":3061.2},{"epoch":26155069,"idl":99.82,"recv":0,"send":0,"writ":0.44,"used":557.32,"free":3060.36},{"epoch":26155070,"idl":99.87,"recv":0,"send":0,"writ":0.51,"used":557.08,"free":3060.62},{"epoch":26155071,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":556.96,"free":3060.73},{"epoch":26155072,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":556.95,"free":3060.74},{"epoch":26155073,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":556.95,"free":3060.74},{"epoch":26155074,"idl":99.79,"recv":0,"send":0,"writ":0.49,"used":557.33,"free":3060.35},{"epoch":26155075,"idl":99.88,"recv":0,"send":0,"writ":0.46,"used":557.7,"free":3060},{"epoch":26155076,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":557.69,"free":3060},{"epoch":26155077,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":557.69,"free":3060},{"epoch":26155078,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":557.66,"free":3060.03},{"epoch":26155079,"idl":99.81,"recv":0,"send":0,"writ":0.51,"used":558.04,"free":3059.64},{"epoch":26155080,"idl":99.83,"recv":0,"send":0,"writ":0.48,"used":558.15,"free":3059.54},{"epoch":26155081,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":558.15,"free":3059.54},{"epoch":26155082,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":558.15,"free":3059.54},{"epoch":26155083,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":558.14,"free":3059.54},{"epoch":26155084,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":558.14,"free":3059.54},{"epoch":26155085,"idl":99.68,"recv":0,"send":0,"writ":0.71,"used":558.29,"free":3059.4},{"epoch":26155086,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":557.66,"free":3060.03},{"epoch":26155087,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":557.65,"free":3060.04},{"epoch":26155088,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":557.62,"free":3060.06},{"epoch":26155089,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":557.85,"free":3059.81},{"epoch":26155090,"idl":99.79,"recv":0,"send":0,"writ":0.69,"used":558.32,"free":3059.36},{"epoch":26155091,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":557.87,"free":3059.8},{"epoch":26155092,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":557.87,"free":3059.8},{"epoch":26155093,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":557.84,"free":3059.82},{"epoch":26155094,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":557.83,"free":3059.83},{"epoch":26155095,"idl":99.78,"recv":0,"send":0,"writ":0.7,"used":558.03,"free":3059.65},{"epoch":26155096,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":557.84,"free":3059.83},{"epoch":26155097,"idl":99.92,"recv":0,"send":0,"writ":0.22,"used":557.83,"free":3059.83},{"epoch":26155098,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":557.81,"free":3059.85},{"epoch":26155099,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":557.79,"free":3059.86},{"epoch":26155100,"idl":99.75,"recv":0,"send":0,"writ":0.7,"used":558.01,"free":3059.66},{"epoch":26155101,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":557.56,"free":3060.11},{"epoch":26155102,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.64,"free":3060.03},{"epoch":26155103,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":557.73,"free":3059.93},{"epoch":26155104,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":557.71,"free":3059.95},{"epoch":26155105,"idl":99.6,"recv":0,"send":0,"writ":0.63,"used":558.33,"free":3059.34},{"epoch":26155106,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":557.97,"free":3059.71},{"epoch":26155107,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":557.96,"free":3059.71},{"epoch":26155108,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":557.96,"free":3059.71},{"epoch":26155109,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":557.92,"free":3059.74},{"epoch":26155110,"idl":99.8,"recv":0,"send":0,"writ":0.63,"used":558.13,"free":3059.54},{"epoch":26155111,"idl":99.95,"recv":0,"send":0,"writ":0.23,"used":557.94,"free":3059.74},{"epoch":26155112,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":557.93,"free":3059.74},{"epoch":26155113,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":557.92,"free":3059.74},{"epoch":26155114,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":557.89,"free":3059.77},{"epoch":26155115,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":558.06,"free":3059.62},{"epoch":26155116,"idl":99.9,"recv":0,"send":0,"writ":0.41,"used":549.75,"free":3068.22},{"epoch":26155117,"idl":99.96,"recv":0,"send":0,"writ":0.2,"used":541.73,"free":3076.58},{"epoch":26155118,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":541.7,"free":3076.6},{"epoch":26155119,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":541.45,"free":3076.82},{"epoch":26155120,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":541.7,"free":3076.59},{"epoch":26155121,"idl":99.83,"recv":0,"send":0,"writ":0.54,"used":542.29,"free":3076},{"epoch":26155122,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":541.94,"free":3076.35},{"epoch":26155123,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":541.9,"free":3076.38},{"epoch":26155124,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":541.9,"free":3076.38},{"epoch":26155125,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":540.8,"free":3077.5},{"epoch":26155126,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":542.22,"free":3076.08},{"epoch":26155127,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":541.91,"free":3076.38},{"epoch":26155128,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":541.9,"free":3076.38},{"epoch":26155129,"idl":99.95,"recv":0,"send":0,"writ":0.23,"used":541.88,"free":3076.4},{"epoch":26155130,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":541.89,"free":3076.41},{"epoch":26155131,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":542.04,"free":3076.25},{"epoch":26155132,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":541.63,"free":3076.66},{"epoch":26155133,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":541.63,"free":3076.66},{"epoch":26155134,"idl":96.15,"recv":3.52,"send":0.02,"writ":4.3,"used":547.97,"free":3071.35},{"epoch":26155135,"idl":99.8,"recv":0,"send":0,"writ":77.2,"used":544.35,"free":3070.02},{"epoch":26155136,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":544.68,"free":3069.68},{"epoch":26155137,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":544.34,"free":3070.03},{"epoch":26155138,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":544.33,"free":3070.03},{"epoch":26155139,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":544.14,"free":3070.22},{"epoch":26155140,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":540.75,"free":3073.68},{"epoch":26155141,"idl":99.82,"recv":0,"send":0,"writ":0.51,"used":541.46,"free":3072.97},{"epoch":26155142,"idl":99.95,"recv":0,"send":0,"writ":0.23,"used":540.92,"free":3073.5},{"epoch":26155143,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":540.92,"free":3073.5},{"epoch":26155144,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":540.92,"free":3073.5},{"epoch":26155145,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":541.17,"free":3073.32},{"epoch":26155146,"idl":99.81,"recv":0,"send":0,"writ":0.43,"used":541.67,"free":3072.83},{"epoch":26155147,"idl":99.96,"recv":0,"send":0,"writ":0.3,"used":541.17,"free":3073.32},{"epoch":26155148,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":541.17,"free":3073.32},{"epoch":26155149,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":542.11,"free":3072.35},{"epoch":26155150,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":542.12,"free":3072.36},{"epoch":26155151,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":542.39,"free":3072.09},{"epoch":26155152,"idl":99.93,"recv":0,"send":0,"writ":0.35,"used":541.87,"free":3072.6},{"epoch":26155153,"idl":99.92,"recv":0,"send":0,"writ":0.22,"used":541.86,"free":3072.6},{"epoch":26155154,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":541.86,"free":3072.62},{"epoch":26155155,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":542.09,"free":3072.4},{"epoch":26155156,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":542.44,"free":3072.05},{"epoch":26155157,"idl":99.95,"recv":0,"send":0,"writ":0.26,"used":541.85,"free":3072.64},{"epoch":26155158,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":541.41,"free":3073.08},{"epoch":26155159,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":541.09,"free":3073.39},{"epoch":26155160,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":540.87,"free":3073.63},{"epoch":26155161,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":540.84,"free":3073.65},{"epoch":26155162,"idl":99.82,"recv":0,"send":0,"writ":0.58,"used":540.94,"free":3073.55},{"epoch":26155163,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":540.57,"free":3073.91},{"epoch":26155164,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":540.57,"free":3073.92},{"epoch":26155165,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":541.07,"free":3073.44},{"epoch":26155166,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":541.08,"free":3073.43},{"epoch":26155167,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":541.42,"free":3073.09},{"epoch":26155168,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":541.04,"free":3073.46},{"epoch":26155169,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":541.06,"free":3073.44},{"epoch":26155170,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":541.24,"free":3073.28},{"epoch":26155171,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":541.24,"free":3073.28},{"epoch":26155172,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":542.13,"free":3072.38},{"epoch":26155173,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":541.47,"free":3073.03},{"epoch":26155174,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":541.47,"free":3073.03},{"epoch":26155175,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":541.3,"free":3073.22},{"epoch":26155176,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":541.21,"free":3073.31},{"epoch":26155177,"idl":99.81,"recv":0,"send":0,"writ":0.53,"used":541.74,"free":3072.77},{"epoch":26155178,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":541.2,"free":3073.31},{"epoch":26155179,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":541.44,"free":3073.04},{"epoch":26155180,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":541.46,"free":3073.04},{"epoch":26155181,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":541.46,"free":3073.04},{"epoch":26155182,"idl":99.8,"recv":0,"send":0,"writ":0.62,"used":541.88,"free":3072.61},{"epoch":26155183,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":541.43,"free":3073.06},{"epoch":26155184,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":541.41,"free":3073.07},{"epoch":26155185,"idl":99.68,"recv":0,"send":0,"writ":0.29,"used":541.19,"free":3073.31},{"epoch":26155186,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":541.17,"free":3073.32},{"epoch":26155187,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":541.54,"free":3072.94},{"epoch":26155188,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":541.41,"free":3073.07},{"epoch":26155189,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":541.41,"free":3073.07},{"epoch":26155190,"idl":99.92,"recv":0,"send":0,"writ":0.35,"used":541.41,"free":3073.08},{"epoch":26155191,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":541.39,"free":3073.1},{"epoch":26155192,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":541.38,"free":3073.1},{"epoch":26155193,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":541.27,"free":3073.21},{"epoch":26155194,"idl":99.91,"recv":0,"send":0,"writ":0.22,"used":540.88,"free":3073.59},{"epoch":26155195,"idl":99.91,"recv":0,"send":0,"writ":0.31,"used":541.37,"free":3073.12},{"epoch":26155196,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":541.35,"free":3073.13},{"epoch":26155197,"idl":99.97,"recv":0,"send":0,"writ":0.16,"used":541.35,"free":3073.13},{"epoch":26155198,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":541.88,"free":3072.6},{"epoch":26155199,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":541.59,"free":3072.89},{"epoch":26155200,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":541.61,"free":3072.88},{"epoch":26155201,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":541.6,"free":3072.89},{"epoch":26155202,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":541.6,"free":3072.89},{"epoch":26155203,"idl":99.8,"recv":0,"send":0,"writ":0.5,"used":541.8,"free":3072.68},{"epoch":26155204,"idl":99.94,"recv":0,"send":0,"writ":0.22,"used":541.34,"free":3073.13},{"epoch":26155205,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":541.37,"free":3073.13},{"epoch":26155206,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":541.35,"free":3073.14},{"epoch":26155207,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":541.32,"free":3073.16},{"epoch":26155208,"idl":99.81,"recv":0,"send":0,"writ":0.42,"used":541.9,"free":3072.58},{"epoch":26155209,"idl":99.89,"recv":0,"send":0,"writ":0.46,"used":541.31,"free":3073.15},{"epoch":26155210,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":541.56,"free":3072.91},{"epoch":26155211,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":541.56,"free":3072.91},{"epoch":26155212,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":541.56,"free":3072.91},{"epoch":26155213,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":542.16,"free":3072.3},{"epoch":26155214,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":541.79,"free":3072.67},{"epoch":26155215,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":541.07,"free":3073.41},{"epoch":26155216,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":541.16,"free":3073.31},{"epoch":26155217,"idl":99.93,"recv":0,"send":0,"writ":0.26,"used":540.98,"free":3073.49},{"epoch":26155218,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":541.37,"free":3073.09},{"epoch":26155219,"idl":99.91,"recv":0,"send":0,"writ":0.36,"used":541.46,"free":3073},{"epoch":26155220,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":541.97,"free":3072.51},{"epoch":26155221,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":541.96,"free":3072.51},{"epoch":26155222,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":541.95,"free":3072.52},{"epoch":26155223,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":541.92,"free":3072.54},{"epoch":26155224,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":542.05,"free":3072.41},{"epoch":26155225,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":541.69,"free":3072.78},{"epoch":26155226,"idl":99.09,"recv":0,"send":0,"writ":0.18,"used":541.67,"free":3072.81},{"epoch":26155227,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":541.65,"free":3072.82},{"epoch":26155228,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":541.65,"free":3072.82},{"epoch":26155229,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":541.78,"free":3072.7},{"epoch":26155230,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":540.47,"free":3074.03},{"epoch":26155231,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":540.43,"free":3074.06},{"epoch":26155232,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":540.4,"free":3074.09},{"epoch":26155233,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":540.39,"free":3074.09},{"epoch":26155234,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":541.67,"free":3072.81},{"epoch":26155235,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":541.4,"free":3073.1},{"epoch":26155236,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":541.38,"free":3073.11},{"epoch":26155237,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":541.38,"free":3073.11},{"epoch":26155238,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":541.37,"free":3073.11},{"epoch":26155239,"idl":99.73,"recv":0,"send":0,"writ":0.63,"used":542.38,"free":3072.07},{"epoch":26155240,"idl":99.85,"recv":0,"send":0,"writ":0.37,"used":541.63,"free":3072.84},{"epoch":26155241,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":541.6,"free":3072.87},{"epoch":26155242,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":541.59,"free":3072.88},{"epoch":26155243,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":541.58,"free":3072.88},{"epoch":26155244,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":541.93,"free":3072.53},{"epoch":26155245,"idl":99.6,"recv":0,"send":0,"writ":0.29,"used":541.35,"free":3073.12},{"epoch":26155246,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":541.35,"free":3073.13},{"epoch":26155247,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":541.34,"free":3073.13},{"epoch":26155248,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":541.31,"free":3073.15},{"epoch":26155249,"idl":99.81,"recv":0,"send":0,"writ":0.49,"used":541.28,"free":3073.18},{"epoch":26155250,"idl":99.91,"recv":0,"send":0,"writ":0.33,"used":540.82,"free":3073.66},{"epoch":26155251,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":540.82,"free":3073.65},{"epoch":26155252,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":540.82,"free":3073.65},{"epoch":26155253,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":540.81,"free":3073.65},{"epoch":26155254,"idl":99.77,"recv":0,"send":0,"writ":0.66,"used":541.53,"free":3072.93},{"epoch":26155255,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":541.56,"free":3072.91},{"epoch":26155256,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":541.53,"free":3072.94},{"epoch":26155257,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":541.53,"free":3072.94},{"epoch":26155258,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":541.52,"free":3072.94},{"epoch":26155259,"idl":99.82,"recv":0,"send":0,"writ":0.43,"used":541.85,"free":3072.61},{"epoch":26155260,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":540.37,"free":3074.11},{"epoch":26155261,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":540.49,"free":3073.98},{"epoch":26155262,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":540.48,"free":3073.98},{"epoch":26155263,"idl":99.92,"recv":0,"send":0.01,"writ":0.18,"used":540.45,"free":3074.01},{"epoch":26155264,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":540.41,"free":3074.05},{"epoch":26155265,"idl":99.76,"recv":0,"send":0,"writ":0.68,"used":542.38,"free":3072.1},{"epoch":26155266,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":541.65,"free":3072.82},{"epoch":26155267,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":541.65,"free":3072.82},{"epoch":26155268,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":541.64,"free":3072.82},{"epoch":26155269,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":541.91,"free":3072.52},{"epoch":26155270,"idl":99.71,"recv":0,"send":0,"writ":0.7,"used":542.03,"free":3072.43},{"epoch":26155271,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":541.62,"free":3072.82},{"epoch":26155272,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":541.62,"free":3072.82},{"epoch":26155273,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":541.61,"free":3072.82},{"epoch":26155274,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":541.61,"free":3072.85},{"epoch":26155275,"idl":99.72,"recv":0,"send":0,"writ":0.7,"used":542.22,"free":3072.25},{"epoch":26155276,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":541.87,"free":3072.6},{"epoch":26155277,"idl":99.93,"recv":0,"send":0,"writ":0.25,"used":541.86,"free":3072.6},{"epoch":26155278,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":541.83,"free":3072.62},{"epoch":26155279,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":541.82,"free":3072.63},{"epoch":26155280,"idl":99.73,"recv":0,"send":0,"writ":0.62,"used":541.59,"free":3072.87},{"epoch":26155281,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":540.6,"free":3073.86},{"epoch":26155282,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":540.6,"free":3073.86},{"epoch":26155283,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":540.59,"free":3073.86},{"epoch":26155284,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":540.59,"free":3073.86},{"epoch":26155285,"idl":99.68,"recv":0,"send":0,"writ":0.57,"used":541.93,"free":3072.54},{"epoch":26155286,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":542.05,"free":3072.42},{"epoch":26155287,"idl":99.87,"recv":0,"send":0.01,"writ":0.16,"used":542.03,"free":3072.43},{"epoch":26155288,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":542.01,"free":3072.45},{"epoch":26155289,"idl":99.88,"recv":0,"send":0.01,"writ":0.16,"used":542.08,"free":3072.37},{"epoch":26155290,"idl":99.66,"recv":0,"send":0,"writ":0.77,"used":542.48,"free":3071.99},{"epoch":26155291,"idl":99.91,"recv":0,"send":0.01,"writ":0.2,"used":541.9,"free":3072.56},{"epoch":26155292,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":541.89,"free":3072.57},{"epoch":26155293,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":541.88,"free":3072.57},{"epoch":26155294,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":541.86,"free":3072.59},{"epoch":26155295,"idl":99.71,"recv":0,"send":0,"writ":0.49,"used":542.23,"free":3072.24},{"epoch":26155296,"idl":99.95,"recv":0,"send":0,"writ":0.37,"used":542.1,"free":3072.36},{"epoch":26155297,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":542.1,"free":3072.36},{"epoch":26155298,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":542.09,"free":3072.36},{"epoch":26155299,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":541.83,"free":3072.59},{"epoch":26155300,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":541.82,"free":3072.62},{"epoch":26155301,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":542.45,"free":3071.98},{"epoch":26155302,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":541.8,"free":3072.63},{"epoch":26155303,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":541.78,"free":3072.65},{"epoch":26155304,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":541.76,"free":3072.66},{"epoch":26155305,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":541.78,"free":3072.65},{"epoch":26155306,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":541.67,"free":3072.76},{"epoch":26155307,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":541.18,"free":3073.25},{"epoch":26155308,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":540.76,"free":3073.67},{"epoch":26155309,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":540.75,"free":3073.67},{"epoch":26155310,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":540.52,"free":3073.91},{"epoch":26155311,"idl":99.76,"recv":0,"send":0,"writ":0.5,"used":541.25,"free":3073.18},{"epoch":26155312,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":541.25,"free":3073.18},{"epoch":26155313,"idl":99.88,"recv":0,"send":0.01,"writ":0.16,"used":541.33,"free":3073.1},{"epoch":26155314,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":541.26,"free":3073.16},{"epoch":26155315,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":541.44,"free":3072.99},{"epoch":26155316,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":541.53,"free":3072.9},{"epoch":26155317,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":540.94,"free":3073.48},{"epoch":26155318,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":540.91,"free":3073.51},{"epoch":26155319,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":540.9,"free":3073.52},{"epoch":26155320,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":541.17,"free":3073.26},{"epoch":26155321,"idl":99.73,"recv":0,"send":0,"writ":0.47,"used":541.51,"free":3072.92},{"epoch":26155322,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":541.15,"free":3073.27},{"epoch":26155323,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":541.15,"free":3073.27},{"epoch":26155324,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":541.14,"free":3073.28},{"epoch":26155325,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":541.13,"free":3073.3},{"epoch":26155326,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":541.47,"free":3072.95},{"epoch":26155327,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":541.12,"free":3073.3},{"epoch":26155328,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":541.09,"free":3073.33},{"epoch":26155329,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":541.32,"free":3073.07},{"epoch":26155330,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":540.88,"free":3073.53},{"epoch":26155331,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":541.4,"free":3073},{"epoch":26155332,"idl":99.84,"recv":0,"send":0,"writ":0.38,"used":541.58,"free":3072.82},{"epoch":26155333,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":541.55,"free":3072.85},{"epoch":26155334,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":541.54,"free":3072.85},{"epoch":26155335,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":541.32,"free":3073.08},{"epoch":26155336,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":541.31,"free":3073.09},{"epoch":26155337,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":541.76,"free":3072.63},{"epoch":26155338,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":541.29,"free":3073.11},{"epoch":26155339,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":541.27,"free":3073.14},{"epoch":26155340,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":541.04,"free":3073.38},{"epoch":26155341,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":541.03,"free":3073.39},{"epoch":26155342,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":541.38,"free":3073.03},{"epoch":26155343,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":541.02,"free":3073.39},{"epoch":26155344,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":541.1,"free":3073.31},{"epoch":26155345,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":541.68,"free":3072.74},{"epoch":26155346,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":541.68,"free":3072.74},{"epoch":26155347,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":542.02,"free":3072.4},{"epoch":26155348,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":541.67,"free":3072.74},{"epoch":26155349,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":541.66,"free":3072.74},{"epoch":26155350,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":541.69,"free":3072.74},{"epoch":26155351,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":541.66,"free":3072.76},{"epoch":26155352,"idl":99.73,"recv":0,"send":0,"writ":0.6,"used":541.87,"free":3072.54},{"epoch":26155353,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":541.4,"free":3073.02},{"epoch":26155354,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":541.39,"free":3073.02},{"epoch":26155355,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":540.92,"free":3073.51},{"epoch":26155356,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":540.88,"free":3073.54},{"epoch":26155357,"idl":99.7,"recv":0,"send":0,"writ":0.39,"used":541.49,"free":3072.93},{"epoch":26155358,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":541.61,"free":3072.8},{"epoch":26155359,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":541.61,"free":3072.78},{"epoch":26155360,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":541.14,"free":3073.27},{"epoch":26155361,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":541.12,"free":3073.28},{"epoch":26155362,"idl":99.72,"recv":0,"send":0,"writ":0.5,"used":541.3,"free":3073.09},{"epoch":26155363,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":540.34,"free":3074.05},{"epoch":26155364,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":540.34,"free":3074.06},{"epoch":26155365,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":540.36,"free":3074.06},{"epoch":26155366,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":540.35,"free":3074.06},{"epoch":26155367,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":540.72,"free":3073.7},{"epoch":26155368,"idl":99.82,"recv":0,"send":0,"writ":0.41,"used":541.57,"free":3072.83},{"epoch":26155369,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":541.55,"free":3072.85},{"epoch":26155370,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":541.31,"free":3073.1},{"epoch":26155371,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":541.3,"free":3073.11},{"epoch":26155372,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":541.29,"free":3073.11},{"epoch":26155373,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":542.2,"free":3072.2},{"epoch":26155374,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":541.69,"free":3072.71},{"epoch":26155375,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":541.35,"free":3073.07},{"epoch":26155376,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":541.27,"free":3073.14},{"epoch":26155377,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":541.27,"free":3073.14},{"epoch":26155378,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":541.44,"free":3072.96},{"epoch":26155379,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":540.99,"free":3073.41},{"epoch":26155380,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":540.2,"free":3074.21},{"epoch":26155381,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":540.19,"free":3074.22},{"epoch":26155382,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":540.15,"free":3074.25},{"epoch":26155383,"idl":99.71,"recv":0,"send":0,"writ":0.4,"used":540.74,"free":3073.67},{"epoch":26155384,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":540.62,"free":3073.8},{"epoch":26155385,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":541.58,"free":3072.86},{"epoch":26155386,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":541.61,"free":3072.83},{"epoch":26155387,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":541.6,"free":3072.83},{"epoch":26155388,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":541.86,"free":3072.57},{"epoch":26155389,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":541.59,"free":3072.82},{"epoch":26155390,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":541.61,"free":3072.82},{"epoch":26155391,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":541.57,"free":3072.85},{"epoch":26155392,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":541.57,"free":3072.85},{"epoch":26155393,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":541.82,"free":3072.59},{"epoch":26155394,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":540.87,"free":3073.54},{"epoch":26155395,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":541.08,"free":3073.34},{"epoch":26155396,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":541.05,"free":3073.37},{"epoch":26155397,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":540.8,"free":3073.61},{"epoch":26155398,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":540.79,"free":3073.62},{"epoch":26155399,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":542.12,"free":3072.28},{"epoch":26155400,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":541.54,"free":3072.87},{"epoch":26155401,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":541.52,"free":3072.9},{"epoch":26155402,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":541.5,"free":3072.91},{"epoch":26155403,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":541.49,"free":3072.91},{"epoch":26155404,"idl":96.47,"recv":0.02,"send":0.01,"writ":77.76,"used":553.27,"free":3063.22},{"epoch":26155405,"idl":88.88,"recv":0,"send":0,"writ":103.94,"used":563.44,"free":3035.49},{"epoch":26155406,"idl":95.29,"recv":0,"send":0,"writ":52.87,"used":555.87,"free":3053},{"epoch":26155407,"idl":97.98,"recv":0,"send":0,"writ":0.19,"used":544.56,"free":3072.62},{"epoch":26155408,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":544.55,"free":3072.62},{"epoch":26155409,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":544.65,"free":3072.53},{"epoch":26155410,"idl":99.77,"recv":0,"send":0,"writ":0.36,"used":544.34,"free":3072.85},{"epoch":26155411,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":542.16,"free":3075.07},{"epoch":26155412,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":541.6,"free":3075.64},{"epoch":26155413,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":541.58,"free":3075.66},{"epoch":26155414,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":542,"free":3075.26},{"epoch":26155415,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":542.05,"free":3075.22},{"epoch":26155416,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":542.07,"free":3075.22},{"epoch":26155417,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":542.06,"free":3075.23},{"epoch":26155418,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":542.06,"free":3075.23},{"epoch":26155419,"idl":99.63,"recv":0,"send":0,"writ":0.62,"used":542.3,"free":3074.95},{"epoch":26155420,"idl":99.73,"recv":0,"send":0,"writ":0.35,"used":542.05,"free":3075.21},{"epoch":26155421,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":542.03,"free":3075.23},{"epoch":26155422,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":542.03,"free":3075.23},{"epoch":26155423,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":542.01,"free":3075.23},{"epoch":26155424,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":542.15,"free":3075.09},{"epoch":26155425,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":542.12,"free":3075.14},{"epoch":26155426,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":542.09,"free":3075.16},{"epoch":26155427,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":542.09,"free":3075.16},{"epoch":26155428,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":542.08,"free":3075.16},{"epoch":26155429,"idl":99.71,"recv":0,"send":0,"writ":0.47,"used":542.47,"free":3074.78},{"epoch":26155430,"idl":99.81,"recv":0,"send":0,"writ":0.51,"used":542.08,"free":3075.18},{"epoch":26155431,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":542.06,"free":3075.2},{"epoch":26155432,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":542.05,"free":3075.2},{"epoch":26155433,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":542.02,"free":3075.23},{"epoch":26155434,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":542.17,"free":3075.08},{"epoch":26155435,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":541.8,"free":3075.47},{"epoch":26155436,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":541.79,"free":3075.47},{"epoch":26155437,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":541.77,"free":3075.49},{"epoch":26155438,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":541.75,"free":3075.5},{"epoch":26155439,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":541.75,"free":3075.51},{"epoch":26155440,"idl":99.54,"recv":0,"send":0,"writ":0.69,"used":541.72,"free":3075.56},{"epoch":26155441,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":541.45,"free":3075.82},{"epoch":26155442,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":541.44,"free":3075.83},{"epoch":26155443,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":541.41,"free":3075.86},{"epoch":26155444,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":541.41,"free":3075.86},{"epoch":26155445,"idl":99.69,"recv":0,"send":0,"writ":0.71,"used":542.63,"free":3074.66},{"epoch":26155446,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":542.41,"free":3074.87},{"epoch":26155447,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":542.41,"free":3074.87},{"epoch":26155448,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":542.38,"free":3074.9},{"epoch":26155449,"idl":99.72,"recv":0,"send":0,"writ":0.29,"used":542.37,"free":3074.88},{"epoch":26155450,"idl":99.68,"recv":0,"send":0,"writ":0.66,"used":542.58,"free":3074.69},{"epoch":26155451,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":541.88,"free":3075.39},{"epoch":26155452,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":541.87,"free":3075.39},{"epoch":26155453,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":541.87,"free":3075.39},{"epoch":26155454,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":541.85,"free":3075.4},{"epoch":26155455,"idl":99.66,"recv":0,"send":0,"writ":0.72,"used":542.31,"free":3074.95},{"epoch":26155456,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":542.09,"free":3075.17},{"epoch":26155457,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":541.2,"free":3076.06},{"epoch":26155458,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":541.1,"free":3076.16},{"epoch":26155459,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":541.09,"free":3076.16},{"epoch":26155460,"idl":99.66,"recv":0,"send":0,"writ":0.69,"used":542.04,"free":3075.23},{"epoch":26155461,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":541.6,"free":3075.66},{"epoch":26155462,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":541.56,"free":3075.69},{"epoch":26155463,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":541.56,"free":3075.7},{"epoch":26155464,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":541.55,"free":3075.7},{"epoch":26155465,"idl":99.61,"recv":0,"send":0,"writ":0.7,"used":541.15,"free":3076.11},{"epoch":26155466,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":540.08,"free":3077.17},{"epoch":26155467,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":540.08,"free":3077.18},{"epoch":26155468,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":540.04,"free":3077.2},{"epoch":26155469,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":540.04,"free":3077.2},{"epoch":26155470,"idl":99.64,"recv":0,"send":0,"writ":0.61,"used":541.49,"free":3075.78},{"epoch":26155471,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":541.53,"free":3075.73},{"epoch":26155472,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":541.53,"free":3075.73},{"epoch":26155473,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":541.5,"free":3075.75},{"epoch":26155474,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":541.49,"free":3075.76},{"epoch":26155475,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":541.02,"free":3076.24},{"epoch":26155476,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":541.6,"free":3075.66},{"epoch":26155477,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":541.29,"free":3075.96},{"epoch":26155478,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":541.44,"free":3075.82},{"epoch":26155479,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":541.45,"free":3075.78},{"epoch":26155480,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":541.94,"free":3075.31},{"epoch":26155481,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":542.03,"free":3075.21},{"epoch":26155482,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":541.66,"free":3075.58},{"epoch":26155483,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":541.65,"free":3075.58},{"epoch":26155484,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":541.65,"free":3075.58},{"epoch":26155485,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":541.65,"free":3075.6},{"epoch":26155486,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":542.35,"free":3074.89},{"epoch":26155487,"idl":99.94,"recv":0.01,"send":0,"writ":0.17,"used":541.61,"free":3075.62},{"epoch":26155488,"idl":99.51,"recv":0,"send":0,"writ":0.27,"used":541.89,"free":3075.34},{"epoch":26155489,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":541.57,"free":3075.65},{"epoch":26155490,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":541.82,"free":3075.43},{"epoch":26155491,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":542.08,"free":3075.16},{"epoch":26155492,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":541.32,"free":3075.92},{"epoch":26155493,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":541.31,"free":3075.92},{"epoch":26155494,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":541.15,"free":3076.08},{"epoch":26155495,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":541.53,"free":3075.71},{"epoch":26155496,"idl":99.8,"recv":0,"send":0,"writ":0.52,"used":541.9,"free":3075.34},{"epoch":26155497,"idl":99.34,"recv":0,"send":0,"writ":0.25,"used":541.29,"free":3075.95},{"epoch":26155498,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":541.28,"free":3075.95},{"epoch":26155499,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":541.28,"free":3075.95},{"epoch":26155500,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":541.78,"free":3075.46},{"epoch":26155501,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":542.11,"free":3075.13},{"epoch":26155502,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":541.74,"free":3075.49},{"epoch":26155503,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":541.74,"free":3075.49},{"epoch":26155504,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":541.8,"free":3075.43},{"epoch":26155505,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":541.72,"free":3075.52},{"epoch":26155506,"idl":99.82,"recv":0,"send":0,"writ":0.41,"used":542.04,"free":3075.19},{"epoch":26155507,"idl":99.96,"recv":0,"send":0,"writ":0.29,"used":541.68,"free":3075.55},{"epoch":26155508,"idl":99.96,"recv":0,"send":0,"writ":0.21,"used":541.68,"free":3075.55},{"epoch":26155509,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":541.69,"free":3075.51},{"epoch":26155510,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":541.93,"free":3075.29},{"epoch":26155511,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":542.6,"free":3074.62},{"epoch":26155512,"idl":99.93,"recv":0,"send":0,"writ":0.38,"used":541.92,"free":3075.29},{"epoch":26155513,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":541.89,"free":3075.32},{"epoch":26155514,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":541.89,"free":3075.33},{"epoch":26155515,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":541.91,"free":3075.33},{"epoch":26155516,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":541.9,"free":3075.33},{"epoch":26155517,"idl":99.78,"recv":0,"send":0,"writ":0.64,"used":542.41,"free":3074.82},{"epoch":26155518,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":541.86,"free":3075.36},{"epoch":26155519,"idl":99.95,"recv":0,"send":0.01,"writ":0.25,"used":541.84,"free":3075.4},{"epoch":26155520,"idl":99.87,"recv":0,"send":0.01,"writ":0.35,"used":542.08,"free":3075.17},{"epoch":26155521,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":542.05,"free":3075.2},{"epoch":26155522,"idl":99.78,"recv":0,"send":0,"writ":0.63,"used":541.84,"free":3075.4},{"epoch":26155523,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":541.29,"free":3075.95},{"epoch":26155524,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":541.27,"free":3075.96},{"epoch":26155525,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":541.65,"free":3075.6},{"epoch":26155526,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":541.68,"free":3075.56},{"epoch":26155527,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":542.12,"free":3075.12},{"epoch":26155528,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":541.86,"free":3075.38},{"epoch":26155529,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":541.85,"free":3075.38},{"epoch":26155530,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":541.87,"free":3075.38},{"epoch":26155531,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":541.87,"free":3075.38},{"epoch":26155532,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":542.22,"free":3075.02},{"epoch":26155533,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":541.83,"free":3075.41},{"epoch":26155534,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":541.82,"free":3075.41},{"epoch":26155535,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":541.84,"free":3075.41},{"epoch":26155536,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":541.83,"free":3075.41},{"epoch":26155537,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":542.19,"free":3075.05},{"epoch":26155538,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":541.83,"free":3075.41},{"epoch":26155539,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":541.8,"free":3075.43},{"epoch":26155540,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":541.81,"free":3075.45},{"epoch":26155541,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":541.8,"free":3075.46},{"epoch":26155542,"idl":99.8,"recv":0,"send":0,"writ":0.42,"used":542.16,"free":3075.09},{"epoch":26155543,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":541.79,"free":3075.46},{"epoch":26155544,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":541.79,"free":3075.46},{"epoch":26155545,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":541.54,"free":3075.72},{"epoch":26155546,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":541.52,"free":3075.73},{"epoch":26155547,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":542.23,"free":3075.02},{"epoch":26155548,"idl":99.71,"recv":0,"send":0,"writ":0.38,"used":542,"free":3075.24},{"epoch":26155549,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":542,"free":3075.24},{"epoch":26155550,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":542.01,"free":3075.24},{"epoch":26155551,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":542.02,"free":3075.24},{"epoch":26155552,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":542.16,"free":3075.09},{"epoch":26155553,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":542.5,"free":3074.74},{"epoch":26155554,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":541.88,"free":3075.36},{"epoch":26155555,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":541.92,"free":3075.34},{"epoch":26155556,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":541.92,"free":3075.33},{"epoch":26155557,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":541.92,"free":3075.33},{"epoch":26155558,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":542.24,"free":3075},{"epoch":26155559,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":541.88,"free":3075.36},{"epoch":26155560,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":541.9,"free":3075.36},{"epoch":26155561,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":541.89,"free":3075.37},{"epoch":26155562,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":541.85,"free":3075.39},{"epoch":26155563,"idl":99.8,"recv":0,"send":0,"writ":0.63,"used":542.38,"free":3074.86},{"epoch":26155564,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":542.09,"free":3075.15},{"epoch":26155565,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":542.1,"free":3075.16},{"epoch":26155566,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":542.07,"free":3075.18},{"epoch":26155567,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":542.07,"free":3075.18},{"epoch":26155568,"idl":99.82,"recv":0,"send":0,"writ":0.58,"used":542.94,"free":3074.3},{"epoch":26155569,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":541.53,"free":3075.68},{"epoch":26155570,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":542.03,"free":3075.2},{"epoch":26155571,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":542.03,"free":3075.2},{"epoch":26155572,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":542.03,"free":3075.2},{"epoch":26155573,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":542.48,"free":3074.73},{"epoch":26155574,"idl":99.95,"recv":0,"send":0,"writ":0.3,"used":541.52,"free":3075.69},{"epoch":26155575,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":541.92,"free":3075.31},{"epoch":26155576,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":541.77,"free":3075.45},{"epoch":26155577,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":541.99,"free":3075.23},{"epoch":26155578,"idl":99.82,"recv":0,"send":0,"writ":0.5,"used":542.53,"free":3074.68},{"epoch":26155579,"idl":99.96,"recv":0,"send":0,"writ":0.19,"used":541.74,"free":3075.47},{"epoch":26155580,"idl":99.92,"recv":0,"send":0,"writ":0.28,"used":542,"free":3075.23},{"epoch":26155581,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":542,"free":3075.23},{"epoch":26155582,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":541.99,"free":3075.23},{"epoch":26155583,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":542.47,"free":3074.74},{"epoch":26155584,"idl":99.94,"recv":0,"send":0,"writ":0.37,"used":541.95,"free":3075.26},{"epoch":26155585,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":541.97,"free":3075.26},{"epoch":26155586,"idl":99.94,"recv":0.04,"send":0.97,"writ":0.32,"used":542.05,"free":3075.17},{"epoch":26155587,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":542.05,"free":3075.16},{"epoch":26155588,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":542.04,"free":3075.16},{"epoch":26155589,"idl":99.77,"recv":0,"send":0.01,"writ":0.59,"used":542.41,"free":3074.79},{"epoch":26155590,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":542.28,"free":3074.94},{"epoch":26155591,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":542.26,"free":3074.95},{"epoch":26155592,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":542.26,"free":3074.95},{"epoch":26155593,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":542.26,"free":3074.95},{"epoch":26155594,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":542.39,"free":3074.81},{"epoch":26155595,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":542.02,"free":3075.19},{"epoch":26155596,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":542.01,"free":3075.21},{"epoch":26155597,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":541.98,"free":3075.23},{"epoch":26155598,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":541.98,"free":3075.23},{"epoch":26155599,"idl":99.76,"recv":0,"send":0,"writ":0.72,"used":541.86,"free":3075.32},{"epoch":26155600,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":542.47,"free":3074.73},{"epoch":26155601,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":542.48,"free":3074.72},{"epoch":26155602,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":542.47,"free":3074.72},{"epoch":26155603,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":542.46,"free":3074.72},{"epoch":26155604,"idl":99.81,"recv":0,"send":0,"writ":0.59,"used":543.11,"free":3074.07},{"epoch":26155605,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":542.45,"free":3074.75},{"epoch":26155606,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":542.44,"free":3074.75},{"epoch":26155607,"idl":99.97,"recv":0,"send":0,"writ":0.16,"used":542.14,"free":3075.05},{"epoch":26155608,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":541.45,"free":3075.73},{"epoch":26155609,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":542.09,"free":3075.09},{"epoch":26155610,"idl":99.87,"recv":0,"send":0,"writ":0.37,"used":541.68,"free":3075.52},{"epoch":26155611,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":541.64,"free":3075.55},{"epoch":26155612,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":541.64,"free":3075.55},{"epoch":26155613,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":541.63,"free":3075.55},{"epoch":26155614,"idl":99.77,"recv":0,"send":0,"writ":0.63,"used":541.85,"free":3075.33},{"epoch":26155615,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":541.4,"free":3075.79},{"epoch":26155616,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":541.4,"free":3075.79},{"epoch":26155617,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":541.36,"free":3075.82},{"epoch":26155618,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":541.36,"free":3075.82},{"epoch":26155619,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":541.75,"free":3075.43},{"epoch":26155620,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":541.85,"free":3075.34},{"epoch":26155621,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":541.86,"free":3075.33},{"epoch":26155622,"idl":99.97,"recv":0,"send":0,"writ":0.14,"used":541.85,"free":3075.33},{"epoch":26155623,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":541.85,"free":3075.33},{"epoch":26155624,"idl":99.81,"recv":0,"send":0,"writ":0.4,"used":542.19,"free":3074.98},{"epoch":26155625,"idl":99.89,"recv":0,"send":0,"writ":0.46,"used":541.62,"free":3075.57},{"epoch":26155626,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":541.59,"free":3075.6},{"epoch":26155627,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":541.58,"free":3075.61},{"epoch":26155628,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":541.57,"free":3075.61},{"epoch":26155629,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":541.81,"free":3075.37},{"epoch":26155630,"idl":99.77,"recv":0,"send":0,"writ":0.7,"used":542.55,"free":3074.64},{"epoch":26155631,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":541.82,"free":3075.36},{"epoch":26155632,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":541.81,"free":3075.36},{"epoch":26155633,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":541.81,"free":3075.36},{"epoch":26155634,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":541.58,"free":3075.63},{"epoch":26155635,"idl":99.74,"recv":0,"send":0,"writ":0.68,"used":541.93,"free":3075.31},{"epoch":26155636,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":541.55,"free":3075.69},{"epoch":26155637,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":541.55,"free":3075.69},{"epoch":26155638,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":541.54,"free":3075.69},{"epoch":26155639,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":541.52,"free":3075.7},{"epoch":26155640,"idl":99.78,"recv":0,"send":0,"writ":0.68,"used":542.13,"free":3075.11},{"epoch":26155641,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":541.76,"free":3075.47},{"epoch":26155642,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":541.76,"free":3075.47},{"epoch":26155643,"idl":99.97,"recv":0,"send":0,"writ":0.14,"used":541.76,"free":3075.48},{"epoch":26155644,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":541.76,"free":3075.49},{"epoch":26155645,"idl":99.78,"recv":0,"send":0,"writ":0.68,"used":541.78,"free":3075.48},{"epoch":26155646,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":541.52,"free":3075.73},{"epoch":26155647,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":541.52,"free":3075.73},{"epoch":26155648,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":541.49,"free":3075.76},{"epoch":26155649,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":541.48,"free":3075.77},{"epoch":26155650,"idl":99.75,"recv":0,"send":0,"writ":0.71,"used":541.85,"free":3075.41},{"epoch":26155651,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":541.49,"free":3075.77},{"epoch":26155652,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":541.48,"free":3075.77},{"epoch":26155653,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":541.48,"free":3075.77},{"epoch":26155654,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":541.47,"free":3075.77},{"epoch":26155655,"idl":99.73,"recv":0,"send":0,"writ":0.69,"used":542.46,"free":3074.8},{"epoch":26155656,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":541.64,"free":3075.61},{"epoch":26155657,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":541.64,"free":3075.61},{"epoch":26155658,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":541.63,"free":3075.61},{"epoch":26155659,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":541.88,"free":3075.34},{"epoch":26155660,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":541.08,"free":3076.15},{"epoch":26155661,"idl":99.87,"recv":0,"send":0,"writ":0.54,"used":542.21,"free":3075.02},{"epoch":26155662,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":541.85,"free":3075.37},{"epoch":26155663,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":541.85,"free":3075.37},{"epoch":26155664,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":541.84,"free":3075.37},{"epoch":26155665,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":540.94,"free":3076.29},{"epoch":26155666,"idl":99.81,"recv":0,"send":0,"writ":0.58,"used":541.64,"free":3075.59},{"epoch":26155667,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":541.36,"free":3075.86},{"epoch":26155668,"idl":98.86,"recv":0,"send":0,"writ":0.14,"used":541.35,"free":3075.87},{"epoch":26155669,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":541.32,"free":3075.89},{"epoch":26155670,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":541.34,"free":3075.89},{"epoch":26155671,"idl":99.83,"recv":0,"send":0,"writ":0.57,"used":541.89,"free":3075.34},{"epoch":26155672,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":541.57,"free":3075.65},{"epoch":26155673,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":541.54,"free":3075.68},{"epoch":26155674,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":541.29,"free":3075.93},{"epoch":26155675,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":541.3,"free":3075.93},{"epoch":26155676,"idl":99.81,"recv":0.03,"send":0.95,"writ":0.61,"used":542.11,"free":3075.11},{"epoch":26155677,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":541.97,"free":3075.25},{"epoch":26155678,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":542.01,"free":3075.2},{"epoch":26155679,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":542.11,"free":3075.09},{"epoch":26155680,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":541.89,"free":3075.33},{"epoch":26155681,"idl":99.81,"recv":0.02,"send":0.94,"writ":0.55,"used":542.66,"free":3074.55},{"epoch":26155682,"idl":99.96,"recv":0,"send":0,"writ":0.24,"used":542.03,"free":3075.17},{"epoch":26155683,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":542.01,"free":3075.19},{"epoch":26155684,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":542.01,"free":3075.19},{"epoch":26155685,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":542.02,"free":3075.19},{"epoch":26155686,"idl":99.82,"recv":0,"send":0,"writ":0.49,"used":542.59,"free":3074.62},{"epoch":26155687,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":541.98,"free":3075.22},{"epoch":26155688,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":541.98,"free":3075.22},{"epoch":26155689,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":541.73,"free":3075.44},{"epoch":26155690,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":541.73,"free":3075.46},{"epoch":26155691,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":542.27,"free":3074.91},{"epoch":26155692,"idl":99.97,"recv":0,"send":0,"writ":0.29,"used":542.21,"free":3074.96},{"epoch":26155693,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":542.21,"free":3074.96},{"epoch":26155694,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":542.19,"free":3074.98},{"epoch":26155695,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":541.46,"free":3075.72},{"epoch":26155696,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":541.45,"free":3075.73},{"epoch":26155697,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":542.05,"free":3075.13},{"epoch":26155698,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":541.69,"free":3075.49},{"epoch":26155699,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":541.68,"free":3075.49},{"epoch":26155700,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":541.71,"free":3075.48},{"epoch":26155701,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":541.69,"free":3075.49},{"epoch":26155702,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":541.56,"free":3075.62},{"epoch":26155703,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":541.17,"free":3076},{"epoch":26155704,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":541.16,"free":3076.01},{"epoch":26155705,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":541.67,"free":3075.52},{"epoch":26155706,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":541.66,"free":3075.52},{"epoch":26155707,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":542.1,"free":3075.08},{"epoch":26155708,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":541.84,"free":3075.33},{"epoch":26155709,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":541.84,"free":3075.33},{"epoch":26155710,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":540.92,"free":3076.26},{"epoch":26155711,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":540.87,"free":3076.32},{"epoch":26155712,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":542.01,"free":3075.17},{"epoch":26155713,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":542.09,"free":3075.09},{"epoch":26155714,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":542.06,"free":3075.11},{"epoch":26155715,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":542.07,"free":3075.11},{"epoch":26155716,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":542.06,"free":3075.12},{"epoch":26155717,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":542.76,"free":3074.42},{"epoch":26155718,"idl":92.83,"recv":6.03,"send":0.14,"writ":202.55,"used":561.33,"free":3054.46},{"epoch":26155719,"idl":99.37,"recv":1.4,"send":0.03,"writ":82.95,"used":555.12,"free":3057.97},{"epoch":26155720,"idl":99.89,"recv":0,"send":0.02,"writ":0.32,"used":555.93,"free":3057.22},{"epoch":26155721,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":555.93,"free":3057.23},{"epoch":26155722,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":556.19,"free":3056.62},{"epoch":26155723,"idl":99.93,"recv":0,"send":0,"writ":0.39,"used":555.55,"free":3057.08},{"epoch":26155724,"idl":99.94,"recv":0.04,"send":1.93,"writ":0.29,"used":553.62,"free":3060.09},{"epoch":26155725,"idl":99.88,"recv":0.01,"send":0.24,"writ":0.32,"used":553.75,"free":3059.97},{"epoch":26155726,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.72,"free":3060},{"epoch":26155727,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":554.05,"free":3059.68},{"epoch":26155728,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":553.71,"free":3060.02},{"epoch":26155729,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.81,"free":3059.94},{"epoch":26155730,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":553.64,"free":3060.12},{"epoch":26155731,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.61,"free":3060.15},{"epoch":26155732,"idl":99.8,"recv":0,"send":0,"writ":0.42,"used":553.98,"free":3059.77},{"epoch":26155733,"idl":99.93,"recv":0,"send":0,"writ":0.32,"used":553.82,"free":3059.93},{"epoch":26155734,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":553.57,"free":3060.17},{"epoch":26155735,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":553.55,"free":3060.21},{"epoch":26155736,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":553.53,"free":3060.22},{"epoch":26155737,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":553.51,"free":3060.24},{"epoch":26155738,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":554.44,"free":3059.31},{"epoch":26155739,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.71,"free":3060.03},{"epoch":26155740,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":553.97,"free":3059.79},{"epoch":26155741,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":553.94,"free":3059.81},{"epoch":26155742,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":554.06,"free":3059.69},{"epoch":26155743,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":554.56,"free":3059.18},{"epoch":26155744,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.83,"free":3059.91},{"epoch":26155745,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":553.83,"free":3059.92},{"epoch":26155746,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":553.8,"free":3059.95},{"epoch":26155747,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.79,"free":3059.95},{"epoch":26155748,"idl":99.78,"recv":0,"send":0,"writ":0.6,"used":554.49,"free":3059.25},{"epoch":26155749,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":553.75,"free":3059.95},{"epoch":26155750,"idl":99.83,"recv":0.06,"send":2.4,"writ":0.59,"used":554.06,"free":3059.66},{"epoch":26155751,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":554.05,"free":3059.65},{"epoch":26155752,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":554.04,"free":3059.66},{"epoch":26155753,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":554.45,"free":3059.24},{"epoch":26155754,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":553.99,"free":3059.7},{"epoch":26155755,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":553.8,"free":3059.91},{"epoch":26155756,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.74,"free":3059.97},{"epoch":26155757,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":553.71,"free":3059.99},{"epoch":26155758,"idl":99.77,"recv":0,"send":0.01,"writ":0.43,"used":553.54,"free":3060.15},{"epoch":26155759,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":553.22,"free":3060.47},{"epoch":26155760,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":553.32,"free":3060.38},{"epoch":26155761,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":553.31,"free":3060.39},{"epoch":26155762,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":553.29,"free":3060.41},{"epoch":26155763,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":553.6,"free":3060.09},{"epoch":26155764,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":553.02,"free":3060.67},{"epoch":26155765,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":553.49,"free":3060.22},{"epoch":26155766,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.49,"free":3060.21},{"epoch":26155767,"idl":99.91,"recv":0.01,"send":0.1,"writ":0.23,"used":553.52,"free":3060.18},{"epoch":26155768,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":553.54,"free":3060.14},{"epoch":26155769,"idl":96.16,"recv":0.02,"send":0.01,"writ":77.95,"used":564.35,"free":3051.49},{"epoch":26155770,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":555.51,"free":3058.36},{"epoch":26155771,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":555.49,"free":3058.38},{"epoch":26155772,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":555.48,"free":3058.38},{"epoch":26155773,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":555.45,"free":3058.41},{"epoch":26155774,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":553.83,"free":3060.07},{"epoch":26155775,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":553.25,"free":3060.67},{"epoch":26155776,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":553.25,"free":3060.67},{"epoch":26155777,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":553.22,"free":3060.7},{"epoch":26155778,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":553.21,"free":3060.7},{"epoch":26155779,"idl":99.67,"recv":0,"send":0,"writ":0.68,"used":553.87,"free":3060.01},{"epoch":26155780,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":553.19,"free":3060.71},{"epoch":26155781,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.18,"free":3060.72},{"epoch":26155782,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":553.21,"free":3060.68},{"epoch":26155783,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.3,"free":3060.59},{"epoch":26155784,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":553.85,"free":3060.03},{"epoch":26155785,"idl":99.86,"recv":0,"send":0,"writ":0.42,"used":553.3,"free":3060.6},{"epoch":26155786,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":553.27,"free":3060.62},{"epoch":26155787,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":553.27,"free":3060.62},{"epoch":26155788,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":553.25,"free":3060.64},{"epoch":26155789,"idl":97.21,"recv":0,"send":0,"writ":0.53,"used":553.66,"free":3060.22},{"epoch":26155790,"idl":99.91,"recv":0,"send":0,"writ":0.28,"used":553.25,"free":3060.65},{"epoch":26155791,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.21,"free":3060.68},{"epoch":26155792,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.21,"free":3060.68},{"epoch":26155793,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.18,"free":3060.71},{"epoch":26155794,"idl":99.78,"recv":0,"send":0,"writ":0.45,"used":553.52,"free":3060.36},{"epoch":26155795,"idl":99.86,"recv":0,"send":0,"writ":0.41,"used":551.97,"free":3061.93},{"epoch":26155796,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":551.92,"free":3061.98},{"epoch":26155797,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.04,"free":3061.85},{"epoch":26155798,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":552.1,"free":3061.79},{"epoch":26155799,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.08,"free":3061.8},{"epoch":26155800,"idl":99.67,"recv":0,"send":0,"writ":0.71,"used":553.87,"free":3060.03},{"epoch":26155801,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":553.55,"free":3060.35},{"epoch":26155802,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.51,"free":3060.38},{"epoch":26155803,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.51,"free":3060.38},{"epoch":26155804,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.48,"free":3060.4},{"epoch":26155805,"idl":99.71,"recv":0,"send":0,"writ":0.69,"used":553.61,"free":3060.29},{"epoch":26155806,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.22,"free":3060.68},{"epoch":26155807,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.2,"free":3060.69},{"epoch":26155808,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":553.17,"free":3060.71},{"epoch":26155809,"idl":99.88,"recv":0,"send":0,"writ":0.4,"used":553.43,"free":3060.43},{"epoch":26155810,"idl":99.75,"recv":0,"send":0,"writ":0.69,"used":553.85,"free":3060.02},{"epoch":26155811,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":553.58,"free":3060.3},{"epoch":26155812,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.56,"free":3060.31},{"epoch":26155813,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.54,"free":3060.33},{"epoch":26155814,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":553.52,"free":3060.34},{"epoch":26155815,"idl":99.73,"recv":0,"send":0,"writ":0.77,"used":554.08,"free":3059.79},{"epoch":26155816,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":553.5,"free":3060.38},{"epoch":26155817,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":553.24,"free":3060.63},{"epoch":26155818,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.22,"free":3060.64},{"epoch":26155819,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":553.19,"free":3060.67},{"epoch":26155820,"idl":99.76,"recv":0,"send":0,"writ":0.72,"used":553.86,"free":3060.01},{"epoch":26155821,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":553.17,"free":3060.7},{"epoch":26155822,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":553.16,"free":3060.7},{"epoch":26155823,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.26,"free":3060.6},{"epoch":26155824,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":553.31,"free":3060.55},{"epoch":26155825,"idl":99.74,"recv":0,"send":0.01,"writ":0.75,"used":554.16,"free":3059.71},{"epoch":26155826,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":553.02,"free":3060.86},{"epoch":26155827,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":553,"free":3060.88},{"epoch":26155828,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.98,"free":3060.9},{"epoch":26155829,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.97,"free":3060.9},{"epoch":26155830,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":553.83,"free":3060.06},{"epoch":26155831,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":553.69,"free":3060.19},{"epoch":26155832,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":553.66,"free":3060.22},{"epoch":26155833,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":553.65,"free":3060.22},{"epoch":26155834,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":553.65,"free":3060.22},{"epoch":26155835,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":553.74,"free":3060.15},{"epoch":26155836,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":553.8,"free":3060.09},{"epoch":26155837,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":553.78,"free":3060.1},{"epoch":26155838,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":553.75,"free":3060.14},{"epoch":26155839,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":553.5,"free":3060.37},{"epoch":26155840,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":553.5,"free":3060.38},{"epoch":26155841,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":554.05,"free":3059.83},{"epoch":26155842,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":553.72,"free":3060.16},{"epoch":26155843,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":553.69,"free":3060.18},{"epoch":26155844,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":553.68,"free":3060.19},{"epoch":26155845,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":553.67,"free":3060.21},{"epoch":26155846,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":554.11,"free":3059.77},{"epoch":26155847,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":553.39,"free":3060.49},{"epoch":26155848,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":553.44,"free":3060.43},{"epoch":26155849,"idl":99.4,"recv":0,"send":0,"writ":0.14,"used":553.56,"free":3060.31},{"epoch":26155850,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":553.79,"free":3060.1},{"epoch":26155851,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":554.13,"free":3059.75},{"epoch":26155852,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":553.75,"free":3060.13},{"epoch":26155853,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":553.74,"free":3060.13},{"epoch":26155854,"idl":99.88,"recv":0,"send":0,"writ":0.19,"used":553.53,"free":3060.34},{"epoch":26155855,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":553.48,"free":3060.41},{"epoch":26155856,"idl":99.75,"recv":0,"send":0,"writ":0.49,"used":553.93,"free":3059.95},{"epoch":26155857,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":553.7,"free":3060.18},{"epoch":26155858,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":553.68,"free":3060.19},{"epoch":26155859,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.67,"free":3060.2},{"epoch":26155860,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":552.46,"free":3061.43},{"epoch":26155861,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":552.97,"free":3060.91},{"epoch":26155862,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":553.56,"free":3060.33},{"epoch":26155863,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.16,"used":553.5,"free":3060.39},{"epoch":26155864,"idl":98.97,"recv":0.01,"send":0.01,"writ":0.55,"used":553.43,"free":3060.45},{"epoch":26155865,"idl":99.77,"recv":0,"send":0.01,"writ":0.31,"used":553.18,"free":3060.71},{"epoch":26155866,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":553.77,"free":3060.12},{"epoch":26155867,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":553.77,"free":3060.11},{"epoch":26155868,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":553.75,"free":3060.13},{"epoch":26155869,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":561.1,"free":3052.75},{"epoch":26155870,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":561.59,"free":3052.28},{"epoch":26155871,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":561.94,"free":3051.93},{"epoch":26155872,"idl":99.86,"recv":0,"send":0,"writ":0.4,"used":561.57,"free":3052.29},{"epoch":26155873,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":561.54,"free":3052.32},{"epoch":26155874,"idl":99.8,"recv":0,"send":0,"writ":0.15,"used":561.54,"free":3052.32},{"epoch":26155875,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":562.01,"free":3051.86},{"epoch":26155876,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":562,"free":3051.86},{"epoch":26155877,"idl":99.69,"recv":0,"send":0,"writ":0.64,"used":562.3,"free":3051.56},{"epoch":26155878,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":562.04,"free":3051.82},{"epoch":26155879,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":562.15,"free":3051.7},{"epoch":26155880,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":561.93,"free":3051.94},{"epoch":26155881,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":561.89,"free":3051.98},{"epoch":26155882,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":562.35,"free":3051.51},{"epoch":26155883,"idl":99.8,"recv":0,"send":0,"writ":0.19,"used":561.82,"free":3052.03},{"epoch":26155884,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":561.81,"free":3052.04},{"epoch":26155885,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":561.33,"free":3052.54},{"epoch":26155886,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":561.3,"free":3052.56},{"epoch":26155887,"idl":99.73,"recv":0,"send":0,"writ":0.5,"used":561.65,"free":3052.21},{"epoch":26155888,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":561.26,"free":3052.59},{"epoch":26155889,"idl":99.69,"recv":0,"send":0,"writ":0.15,"used":561.26,"free":3052.59},{"epoch":26155890,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":561.57,"free":3052.31},{"epoch":26155891,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":561.68,"free":3052.19},{"epoch":26155892,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":562.13,"free":3051.74},{"epoch":26155893,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":561.89,"free":3051.98},{"epoch":26155894,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":561.88,"free":3051.98},{"epoch":26155895,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":561.89,"free":3051.98},{"epoch":26155896,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":561.86,"free":3052.01},{"epoch":26155897,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":562.18,"free":3051.68},{"epoch":26155898,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":561.82,"free":3052.04},{"epoch":26155899,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":561.78,"free":3052.05},{"epoch":26155900,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":561.8,"free":3052.05},{"epoch":26155901,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":561.76,"free":3052.09},{"epoch":26155902,"idl":99.72,"recv":0,"send":0,"writ":0.51,"used":562.16,"free":3051.69},{"epoch":26155903,"idl":99.84,"recv":0,"send":0,"writ":0.23,"used":562.05,"free":3051.79},{"epoch":26155904,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":561.99,"free":3051.85},{"epoch":26155905,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":560.94,"free":3052.91},{"epoch":26155906,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":560.9,"free":3052.95},{"epoch":26155907,"idl":99.7,"recv":0,"send":0,"writ":0.42,"used":561.27,"free":3052.58},{"epoch":26155908,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":561.12,"free":3052.72},{"epoch":26155909,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":561.1,"free":3052.73},{"epoch":26155910,"idl":96.37,"recv":0,"send":0,"writ":0.33,"used":561.11,"free":3052.75},{"epoch":26155911,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":561.08,"free":3052.78},{"epoch":26155912,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":561.08,"free":3052.78},{"epoch":26155913,"idl":99.69,"recv":0,"send":0.01,"writ":0.55,"used":560.17,"free":3053.68},{"epoch":26155914,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":559.56,"free":3054.28},{"epoch":26155915,"idl":99.8,"recv":0.01,"send":0.3,"writ":0.35,"used":560.61,"free":3053.25},{"epoch":26155916,"idl":99.85,"recv":0.01,"send":0.29,"writ":0.26,"used":560.66,"free":3053.2},{"epoch":26155917,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":560.61,"free":3053.24},{"epoch":26155918,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":561.48,"free":3052.37},{"epoch":26155919,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":561.06,"free":3052.78},{"epoch":26155920,"idl":99.75,"recv":0,"send":0,"writ":0.34,"used":560.36,"free":3053.49},{"epoch":26155921,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":560.28,"free":3053.57},{"epoch":26155922,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":560.05,"free":3053.79},{"epoch":26155923,"idl":99.67,"recv":0,"send":0,"writ":0.55,"used":561.07,"free":3052.77},{"epoch":26155924,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":560.99,"free":3052.84},{"epoch":26155925,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":561.25,"free":3052.6},{"epoch":26155926,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":561.24,"free":3052.6},{"epoch":26155927,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":561.21,"free":3052.63},{"epoch":26155928,"idl":99.7,"recv":0,"send":0,"writ":0.5,"used":561.56,"free":3052.28},{"epoch":26155929,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":561.63,"free":3052.18},{"epoch":26155930,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":561.41,"free":3052.41},{"epoch":26155931,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":561.39,"free":3052.45},{"epoch":26155932,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":561.37,"free":3052.47},{"epoch":26155933,"idl":99.7,"recv":0,"send":0,"writ":0.49,"used":561.63,"free":3052.2},{"epoch":26155934,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":561.08,"free":3052.77},{"epoch":26155935,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":561.34,"free":3052.53},{"epoch":26155936,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":561.31,"free":3052.56},{"epoch":26155937,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":561.54,"free":3052.32},{"epoch":26155938,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":561.78,"free":3052.08},{"epoch":26155939,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":561.02,"free":3052.84},{"epoch":26155940,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":561.25,"free":3052.63},{"epoch":26155941,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":561.24,"free":3052.63},{"epoch":26155942,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":561.33,"free":3052.53},{"epoch":26155943,"idl":99.74,"recv":0,"send":0,"writ":0.3,"used":562.03,"free":3051.83},{"epoch":26155944,"idl":99.79,"recv":0,"send":0,"writ":0.39,"used":560.38,"free":3053.48},{"epoch":26155945,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":560.64,"free":3053.24},{"epoch":26155946,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":560.63,"free":3053.24},{"epoch":26155947,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":560.6,"free":3053.27},{"epoch":26155948,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":560.6,"free":3053.27},{"epoch":26155949,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":561.11,"free":3052.75},{"epoch":26155950,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":560.82,"free":3053.06},{"epoch":26155951,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":560.81,"free":3053.07},{"epoch":26155952,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":560.78,"free":3053.09},{"epoch":26155953,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":560.77,"free":3053.09},{"epoch":26155954,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":561.59,"free":3052.27},{"epoch":26155955,"idl":99.77,"recv":0,"send":0.01,"writ":0.33,"used":561.5,"free":3052.37},{"epoch":26155956,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":561.65,"free":3052.22},{"epoch":26155957,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":561.61,"free":3052.25},{"epoch":26155958,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":561.59,"free":3052.27},{"epoch":26155959,"idl":99.63,"recv":0,"send":0,"writ":0.74,"used":561.83,"free":3052},{"epoch":26155960,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":561.59,"free":3052.27},{"epoch":26155961,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":561.56,"free":3052.29},{"epoch":26155962,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":561.54,"free":3052.3},{"epoch":26155963,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":561.54,"free":3052.3},{"epoch":26155964,"idl":99.73,"recv":0,"send":0,"writ":0.48,"used":561.86,"free":3051.99},{"epoch":26155965,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":561.29,"free":3052.58},{"epoch":26155966,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":561.26,"free":3052.61},{"epoch":26155967,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":561.24,"free":3052.63},{"epoch":26155968,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":561.24,"free":3052.63},{"epoch":26155969,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":561.64,"free":3052.22},{"epoch":26155970,"idl":99.79,"recv":0.01,"send":0.01,"writ":0.41,"used":561.56,"free":3052.31},{"epoch":26155971,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":561.55,"free":3052.32},{"epoch":26155972,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":561.51,"free":3052.35},{"epoch":26155973,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":561.5,"free":3052.35},{"epoch":26155974,"idl":99.7,"recv":0,"send":0,"writ":0.72,"used":561.89,"free":3051.96},{"epoch":26155975,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":561.01,"free":3052.86},{"epoch":26155976,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":560.97,"free":3052.9},{"epoch":26155977,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":561.07,"free":3052.78},{"epoch":26155978,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":561.12,"free":3052.73},{"epoch":26155979,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":561.1,"free":3052.75},{"epoch":26155980,"idl":99.62,"recv":0,"send":0,"writ":0.69,"used":561.95,"free":3051.92},{"epoch":26155981,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":561.58,"free":3052.29},{"epoch":26155982,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":561.57,"free":3052.29},{"epoch":26155983,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":561.54,"free":3052.32},{"epoch":26155984,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":561.52,"free":3052.33},{"epoch":26155985,"idl":99.66,"recv":0,"send":0,"writ":0.75,"used":562.07,"free":3051.79},{"epoch":26155986,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":561.74,"free":3052.12},{"epoch":26155987,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":561.72,"free":3052.13},{"epoch":26155988,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":561.71,"free":3052.14},{"epoch":26155989,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":561.69,"free":3052.14},{"epoch":26155990,"idl":99.68,"recv":0,"send":0,"writ":0.68,"used":561.87,"free":3051.97},{"epoch":26155991,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":561.62,"free":3052.22},{"epoch":26155992,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":561.6,"free":3052.24},{"epoch":26155993,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":561.59,"free":3052.24},{"epoch":26155994,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":561.56,"free":3052.28},{"epoch":26155995,"idl":99.69,"recv":0,"send":0,"writ":0.71,"used":562.26,"free":3051.61},{"epoch":26155996,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":561.55,"free":3052.32},{"epoch":26155997,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":561.53,"free":3052.33},{"epoch":26155998,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":561.51,"free":3052.35},{"epoch":26155999,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":561.48,"free":3052.37},{"epoch":26156000,"idl":99.7,"recv":0,"send":0,"writ":0.92,"used":562.1,"free":3051.76},{"epoch":26156001,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":561.47,"free":3052.38},{"epoch":26156002,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":561.44,"free":3052.41},{"epoch":26156003,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":561.47,"free":3052.38},{"epoch":26156004,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":561.6,"free":3052.24},{"epoch":26156005,"idl":99.65,"recv":0,"send":0,"writ":0.61,"used":561.88,"free":3051.98},{"epoch":26156006,"idl":99.86,"recv":0,"send":0,"writ":0.35,"used":561.84,"free":3052.01},{"epoch":26156007,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":561.81,"free":3052.04},{"epoch":26156008,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":561.81,"free":3052.04},{"epoch":26156009,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":561.78,"free":3052.07},{"epoch":26156010,"idl":99.64,"recv":0,"send":0,"writ":0.54,"used":562.32,"free":3051.54},{"epoch":26156011,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":561.53,"free":3052.32},{"epoch":26156012,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":561.5,"free":3052.35},{"epoch":26156013,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":561.49,"free":3052.35},{"epoch":26156014,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":561.46,"free":3052.38},{"epoch":26156015,"idl":99.67,"recv":0,"send":0,"writ":0.77,"used":561.66,"free":3052.19},{"epoch":26156016,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":561.7,"free":3052.16},{"epoch":26156017,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":561.69,"free":3052.16},{"epoch":26156018,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":561.83,"free":3052.01},{"epoch":26156019,"idl":99.7,"recv":0,"send":0,"writ":0.28,"used":561.87,"free":3051.95},{"epoch":26156020,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":562.1,"free":3051.74},{"epoch":26156021,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":562.44,"free":3051.4},{"epoch":26156022,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":562.07,"free":3051.76},{"epoch":26156023,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":562.05,"free":3051.78},{"epoch":26156024,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":562.03,"free":3051.79},{"epoch":26156025,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":561.56,"free":3052.28},{"epoch":26156026,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":562.21,"free":3051.62},{"epoch":26156027,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":561.74,"free":3052.08},{"epoch":26156028,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":561.73,"free":3052.09},{"epoch":26156029,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":561.72,"free":3052.09},{"epoch":26156030,"idl":99.83,"recv":0,"send":0,"writ":0.41,"used":561.71,"free":3052.12},{"epoch":26156031,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":561.91,"free":3051.94},{"epoch":26156032,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":561.53,"free":3052.31},{"epoch":26156033,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":561.61,"free":3052.22},{"epoch":26156034,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":561.53,"free":3052.3},{"epoch":26156035,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":562.07,"free":3051.78},{"epoch":26156036,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":562.28,"free":3051.57},{"epoch":26156037,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":561.8,"free":3052.04},{"epoch":26156038,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":561.79,"free":3052.05},{"epoch":26156039,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":561.76,"free":3052.07},{"epoch":26156040,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":561.78,"free":3052.07},{"epoch":26156041,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":561.62,"free":3052.22},{"epoch":26156042,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":560.76,"free":3053.09},{"epoch":26156043,"idl":99.88,"recv":0.02,"send":0.4,"writ":0.22,"used":560.76,"free":3053.08},{"epoch":26156044,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":560.69,"free":3053.14},{"epoch":26156045,"idl":99.87,"recv":0,"send":0,"writ":0.38,"used":561.54,"free":3052.3},{"epoch":26156046,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":562.44,"free":3051.39},{"epoch":26156047,"idl":99.93,"recv":0,"send":0,"writ":0.26,"used":561.8,"free":3052.02},{"epoch":26156048,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":561.78,"free":3052.04},{"epoch":26156049,"idl":99.85,"recv":0.01,"send":0.1,"writ":0.32,"used":561.97,"free":3051.82},{"epoch":26156050,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":561.91,"free":3051.9},{"epoch":26156051,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":562.45,"free":3051.35},{"epoch":26156052,"idl":99.94,"recv":0,"send":0,"writ":0.28,"used":562.09,"free":3051.72},{"epoch":26156053,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":562.05,"free":3051.75},{"epoch":26156054,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":562.05,"free":3051.76},{"epoch":26156055,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":561.09,"free":3052.75},{"epoch":26156056,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":561.4,"free":3052.42},{"epoch":26156057,"idl":99.86,"recv":0.06,"send":1.93,"writ":0.54,"used":561.82,"free":3051.84},{"epoch":26156058,"idl":99.93,"recv":0,"send":0.01,"writ":0.19,"used":561.96,"free":3051.53},{"epoch":26156059,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":561.89,"free":3051.57},{"epoch":26156060,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":563.85,"free":3049.64},{"epoch":26156061,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":563.98,"free":3049.51},{"epoch":26156062,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":564.06,"free":3049.42},{"epoch":26156063,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":563.26,"free":3050.22},{"epoch":26156064,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":563.25,"free":3050.22},{"epoch":26156065,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":563.98,"free":3049.51},{"epoch":26156066,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":563.97,"free":3049.52},{"epoch":26156067,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":563.47,"free":3050.01},{"epoch":26156068,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":562.45,"free":3051.02},{"epoch":26156069,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":562.45,"free":3051.02},{"epoch":26156070,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":563.41,"free":3050.08},{"epoch":26156071,"idl":99.87,"recv":0.02,"send":0.4,"writ":0.21,"used":563.44,"free":3050.04},{"epoch":26156072,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":564.31,"free":3049.16},{"epoch":26156073,"idl":99.91,"recv":0,"send":0.01,"writ":0.18,"used":563.93,"free":3049.54},{"epoch":26156074,"idl":99.91,"recv":0.01,"send":0.1,"writ":0.2,"used":563.91,"free":3049.55},{"epoch":26156075,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":563.49,"free":3049.98},{"epoch":26156076,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":563.5,"free":3049.98},{"epoch":26156077,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":563.87,"free":3049.6},{"epoch":26156078,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":563.22,"free":3050.25},{"epoch":26156079,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":563.92,"free":3049.52},{"epoch":26156080,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":563.69,"free":3049.77},{"epoch":26156081,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":563.68,"free":3049.78},{"epoch":26156082,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":564.06,"free":3049.39},{"epoch":26156083,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":563.88,"free":3049.56},{"epoch":26156084,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":563.86,"free":3049.58},{"epoch":26156085,"idl":99.86,"recv":0,"send":0,"writ":0.39,"used":563.86,"free":3049.59},{"epoch":26156086,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":563.85,"free":3049.6},{"epoch":26156087,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":564.19,"free":3049.26},{"epoch":26156088,"idl":99.95,"recv":0,"send":0,"writ":0.3,"used":563.82,"free":3049.63},{"epoch":26156089,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":564,"free":3049.44},{"epoch":26156090,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":564.26,"free":3049.2},{"epoch":26156091,"idl":99.77,"recv":0,"send":0,"writ":0.19,"used":564.24,"free":3049.21},{"epoch":26156092,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":564.49,"free":3048.96},{"epoch":26156093,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":563.46,"free":3049.98},{"epoch":26156094,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":563.44,"free":3050},{"epoch":26156095,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":563.22,"free":3050.24},{"epoch":26156096,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":563.19,"free":3050.26},{"epoch":26156097,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":563.18,"free":3050.27},{"epoch":26156098,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":563.96,"free":3049.48},{"epoch":26156099,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":563.63,"free":3049.81},{"epoch":26156100,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":563.62,"free":3049.84},{"epoch":26156101,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":563.62,"free":3049.83},{"epoch":26156102,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":563.76,"free":3049.68},{"epoch":26156103,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":564.29,"free":3049.15},{"epoch":26156104,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":563.97,"free":3049.47},{"epoch":26156105,"idl":99.84,"recv":0.01,"send":0.09,"writ":0.34,"used":564.22,"free":3049.23},{"epoch":26156106,"idl":99.9,"recv":0,"send":0.01,"writ":0.21,"used":564.12,"free":3049.33},{"epoch":26156107,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":564.09,"free":3049.35},{"epoch":26156108,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":564.44,"free":3049},{"epoch":26156109,"idl":99.81,"recv":0.01,"send":0.3,"writ":0.34,"used":564.37,"free":3049.03},{"epoch":26156110,"idl":99.88,"recv":0,"send":0,"writ":0.37,"used":564.21,"free":3049.22},{"epoch":26156111,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":564.18,"free":3049.24},{"epoch":26156112,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":564.16,"free":3049.25},{"epoch":26156113,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":564.34,"free":3049.07},{"epoch":26156114,"idl":99.9,"recv":0.01,"send":0.2,"writ":0.18,"used":563.89,"free":3049.55},{"epoch":26156115,"idl":99.79,"recv":0.02,"send":0.7,"writ":0.41,"used":564.18,"free":3049.26},{"epoch":26156116,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":564.21,"free":3049.22},{"epoch":26156117,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":564.18,"free":3049.25},{"epoch":26156118,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":564.81,"free":3048.62},{"epoch":26156119,"idl":99.94,"recv":0,"send":0,"writ":0.29,"used":564.38,"free":3049.04},{"epoch":26156120,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":564.16,"free":3049.28},{"epoch":26156121,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":564.12,"free":3049.32},{"epoch":26156122,"idl":99.52,"recv":0,"send":0,"writ":0.56,"used":564.32,"free":3049.11},{"epoch":26156123,"idl":99.79,"recv":0,"send":0,"writ":1,"used":564.63,"free":3048.8},{"epoch":26156124,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":564.07,"free":3049.35},{"epoch":26156125,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":564.3,"free":3049.13},{"epoch":26156126,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":564.3,"free":3049.13},{"epoch":26156127,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":564.47,"free":3048.96},{"epoch":26156128,"idl":99.77,"recv":0,"send":0,"writ":0.4,"used":564.8,"free":3048.64},{"epoch":26156129,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":564.44,"free":3048.99},{"epoch":26156130,"idl":99.83,"recv":0.01,"send":0.1,"writ":0.35,"used":564.55,"free":3048.9},{"epoch":26156131,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":564.33,"free":3049.12},{"epoch":26156132,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":564.32,"free":3049.12},{"epoch":26156133,"idl":98.25,"recv":0.02,"send":0.01,"writ":0.31,"used":568.83,"free":3044.91},{"epoch":26156134,"idl":97.78,"recv":0,"send":0,"writ":77.9,"used":564.44,"free":3050.7},{"epoch":26156135,"idl":99.9,"recv":0,"send":0,"writ":0.35,"used":554.99,"free":3058.86},{"epoch":26156136,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":555,"free":3058.86},{"epoch":26156137,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":554.99,"free":3058.86},{"epoch":26156138,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":554.99,"free":3058.86},{"epoch":26156139,"idl":99.72,"recv":0,"send":0,"writ":0.75,"used":553.69,"free":3060.17},{"epoch":26156140,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":552.81,"free":3061.09},{"epoch":26156141,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.79,"free":3061.11},{"epoch":26156142,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.78,"free":3061.12},{"epoch":26156143,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.75,"free":3061.14},{"epoch":26156144,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":553.11,"free":3060.79},{"epoch":26156145,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":552.77,"free":3061.16},{"epoch":26156146,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":552.76,"free":3061.16},{"epoch":26156147,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.76,"free":3061.16},{"epoch":26156148,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.85,"free":3061.06},{"epoch":26156149,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":553.3,"free":3060.61},{"epoch":26156150,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":553.2,"free":3060.73},{"epoch":26156151,"idl":97.69,"recv":0,"send":0,"writ":0.14,"used":553.2,"free":3060.72},{"epoch":26156152,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.19,"free":3060.72},{"epoch":26156153,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.19,"free":3060.72},{"epoch":26156154,"idl":99.75,"recv":0,"send":0,"writ":0.53,"used":553.41,"free":3060.5},{"epoch":26156155,"idl":99.9,"recv":0,"send":0,"writ":0.37,"used":552.45,"free":3061.48},{"epoch":26156156,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":552.43,"free":3061.49},{"epoch":26156157,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.42,"free":3061.49},{"epoch":26156158,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.42,"free":3061.49},{"epoch":26156159,"idl":99.81,"recv":0,"send":0,"writ":0.61,"used":553.11,"free":3060.79},{"epoch":26156160,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":552.19,"free":3061.74},{"epoch":26156161,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.16,"free":3061.77},{"epoch":26156162,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.15,"free":3061.77},{"epoch":26156163,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.13,"free":3061.79},{"epoch":26156164,"idl":99.81,"recv":0,"send":0,"writ":0.49,"used":552.78,"free":3061.13},{"epoch":26156165,"idl":99.91,"recv":0,"send":0,"writ":0.39,"used":553.11,"free":3060.82},{"epoch":26156166,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.08,"free":3060.85},{"epoch":26156167,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":553.07,"free":3060.85},{"epoch":26156168,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.05,"free":3060.87},{"epoch":26156169,"idl":99.67,"recv":0,"send":0,"writ":0.45,"used":553.17,"free":3060.73},{"epoch":26156170,"idl":99.87,"recv":0,"send":0,"writ":0.51,"used":553.12,"free":3060.79},{"epoch":26156171,"idl":99.97,"recv":0,"send":0,"writ":0.16,"used":553.05,"free":3060.86},{"epoch":26156172,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.05,"free":3060.86},{"epoch":26156173,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.04,"free":3060.86},{"epoch":26156174,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.04,"free":3060.86},{"epoch":26156175,"idl":99.73,"recv":0,"send":0,"writ":0.75,"used":553.35,"free":3060.56},{"epoch":26156176,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.96,"free":3060.95},{"epoch":26156177,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":553.2,"free":3060.71},{"epoch":26156178,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":553.2,"free":3060.7},{"epoch":26156179,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.2,"free":3060.7},{"epoch":26156180,"idl":99.72,"recv":0,"send":0,"writ":0.75,"used":553.58,"free":3060.33},{"epoch":26156181,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.17,"free":3060.73},{"epoch":26156182,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.17,"free":3060.73},{"epoch":26156183,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":553.16,"free":3060.73},{"epoch":26156184,"idl":99.96,"recv":0,"send":0,"writ":0.13,"used":553.16,"free":3060.73},{"epoch":26156185,"idl":99.74,"recv":0,"send":0,"writ":0.72,"used":553.12,"free":3060.79},{"epoch":26156186,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.65,"free":3061.25},{"epoch":26156187,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":552.64,"free":3061.25},{"epoch":26156188,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.64,"free":3061.25},{"epoch":26156189,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":552.63,"free":3061.25},{"epoch":26156190,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":553.3,"free":3060.61},{"epoch":26156191,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":552.37,"free":3061.53},{"epoch":26156192,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.36,"free":3061.54},{"epoch":26156193,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.33,"free":3061.56},{"epoch":26156194,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.33,"free":3061.56},{"epoch":26156195,"idl":99.74,"recv":0,"send":0,"writ":0.71,"used":553.58,"free":3060.32},{"epoch":26156196,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":553.08,"free":3060.82},{"epoch":26156197,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":553.07,"free":3060.83},{"epoch":26156198,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.04,"free":3060.86},{"epoch":26156199,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":553.02,"free":3060.85},{"epoch":26156200,"idl":99.74,"recv":0,"send":0,"writ":0.65,"used":553.14,"free":3060.74},{"epoch":26156201,"idl":99.96,"recv":0,"send":0,"writ":0.2,"used":552.78,"free":3061.1},{"epoch":26156202,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":552.86,"free":3061.02},{"epoch":26156203,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.94,"free":3060.95},{"epoch":26156204,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.94,"free":3060.97},{"epoch":26156205,"idl":99.76,"recv":0,"send":0,"writ":0.77,"used":553.8,"free":3060.13},{"epoch":26156206,"idl":99.97,"recv":0,"send":0,"writ":0.2,"used":553.06,"free":3060.86},{"epoch":26156207,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.19,"used":552.64,"free":3061.28},{"epoch":26156208,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.57,"free":3061.34},{"epoch":26156209,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.56,"free":3061.35},{"epoch":26156210,"idl":99.75,"recv":0,"send":0,"writ":0.5,"used":552.66,"free":3061.26},{"epoch":26156211,"idl":99.91,"recv":0,"send":0,"writ":0.43,"used":552.31,"free":3061.61},{"epoch":26156212,"idl":99.21,"recv":0,"send":0,"writ":0.18,"used":552.3,"free":3061.62},{"epoch":26156213,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.29,"free":3061.62},{"epoch":26156214,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":552.22,"free":3061.68},{"epoch":26156215,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":552.76,"free":3061.17},{"epoch":26156216,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":551.9,"free":3062.03},{"epoch":26156217,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":551.47,"free":3062.45},{"epoch":26156218,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.47,"free":3062.45},{"epoch":26156219,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":551.44,"free":3062.47},{"epoch":26156220,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":552.18,"free":3061.75},{"epoch":26156221,"idl":99.81,"recv":0,"send":0,"writ":0.59,"used":552.69,"free":3061.23},{"epoch":26156222,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":551.93,"free":3061.98},{"epoch":26156223,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":551.93,"free":3061.98},{"epoch":26156224,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":551.92,"free":3061.98},{"epoch":26156225,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":552.42,"free":3061.51},{"epoch":26156226,"idl":99.82,"recv":0,"send":0,"writ":0.41,"used":553.04,"free":3060.88},{"epoch":26156227,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":552.66,"free":3061.26},{"epoch":26156228,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.63,"free":3061.28},{"epoch":26156229,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":552.64,"free":3061.25},{"epoch":26156230,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":551.46,"free":3062.44},{"epoch":26156231,"idl":99.82,"recv":0,"send":0,"writ":0.5,"used":551.77,"free":3062.13},{"epoch":26156232,"idl":99.92,"recv":0,"send":0,"writ":0.22,"used":551.41,"free":3062.48},{"epoch":26156233,"idl":99.91,"recv":0.01,"send":0.16,"writ":0.18,"used":551.35,"free":3062.53},{"epoch":26156234,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":551.32,"free":3062.56},{"epoch":26156235,"idl":99.84,"recv":0,"send":0.02,"writ":0.32,"used":552.63,"free":3061.26},{"epoch":26156236,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":553.05,"free":3060.84},{"epoch":26156237,"idl":99.92,"recv":0,"send":0,"writ":0.32,"used":552.67,"free":3061.22},{"epoch":26156238,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":552.66,"free":3061.22},{"epoch":26156239,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":552.66,"free":3061.22},{"epoch":26156240,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":552.92,"free":3060.97},{"epoch":26156241,"idl":99.79,"recv":0,"send":0,"writ":0.52,"used":553.22,"free":3060.67},{"epoch":26156242,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":552.66,"free":3061.22},{"epoch":26156243,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":552.66,"free":3061.22},{"epoch":26156244,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":552.64,"free":3061.23},{"epoch":26156245,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":552.65,"free":3061.25},{"epoch":26156246,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":552.64,"free":3061.25},{"epoch":26156247,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":553.12,"free":3060.77},{"epoch":26156248,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.38,"free":3061.5},{"epoch":26156249,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.38,"free":3061.5},{"epoch":26156250,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":552.39,"free":3061.5},{"epoch":26156251,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.39,"free":3061.5},{"epoch":26156252,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":552.98,"free":3060.9},{"epoch":26156253,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":552.59,"free":3061.29},{"epoch":26156254,"idl":99.7,"recv":0,"send":0.09,"writ":0.15,"used":552.58,"free":3061.29},{"epoch":26156255,"idl":99.82,"recv":0.01,"send":0.51,"writ":0.39,"used":552.37,"free":3061.52},{"epoch":26156256,"idl":99.93,"recv":0,"send":0.11,"writ":0.21,"used":552.33,"free":3061.54},{"epoch":26156257,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":552.78,"free":3061.09},{"epoch":26156258,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":552.51,"free":3061.35},{"epoch":26156259,"idl":99.86,"recv":0,"send":0.09,"writ":0.29,"used":552.51,"free":3061.32},{"epoch":26156260,"idl":99.89,"recv":0,"send":0.01,"writ":0.34,"used":552.64,"free":3061.21},{"epoch":26156261,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":552.63,"free":3061.21},{"epoch":26156262,"idl":99.79,"recv":0,"send":0,"writ":0.43,"used":553.07,"free":3060.77},{"epoch":26156263,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":552.84,"free":3060.99},{"epoch":26156264,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":552.82,"free":3061.03},{"epoch":26156265,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":552.58,"free":3061.28},{"epoch":26156266,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":552.55,"free":3061.31},{"epoch":26156267,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":553.02,"free":3060.84},{"epoch":26156268,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.3,"used":552.85,"free":3061.01},{"epoch":26156269,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.87,"free":3060.98},{"epoch":26156270,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":552.89,"free":3060.97},{"epoch":26156271,"idl":99.95,"recv":0,"send":0.01,"writ":0.21,"used":552.86,"free":3060.99},{"epoch":26156272,"idl":99.47,"recv":0,"send":0,"writ":0.5,"used":553.19,"free":3060.65},{"epoch":26156273,"idl":99.95,"recv":0,"send":0,"writ":0.27,"used":552.82,"free":3061.01},{"epoch":26156274,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":552.73,"free":3061.09},{"epoch":26156275,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":552.32,"free":3061.52},{"epoch":26156276,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.3,"free":3061.53},{"epoch":26156277,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":552.89,"free":3060.94},{"epoch":26156278,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":551.53,"free":3062.3},{"epoch":26156279,"idl":99.89,"recv":0,"send":0.09,"writ":0.17,"used":551.54,"free":3062.28},{"epoch":26156280,"idl":99.87,"recv":0,"send":0.01,"writ":0.33,"used":552.93,"free":3060.91},{"epoch":26156281,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.89,"free":3060.95},{"epoch":26156282,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.89,"free":3060.95},{"epoch":26156283,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":553.36,"free":3060.47},{"epoch":26156284,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.85,"free":3060.97},{"epoch":26156285,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":551.92,"free":3061.92},{"epoch":26156286,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":551.87,"free":3061.96},{"epoch":26156287,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":551.86,"free":3061.97},{"epoch":26156288,"idl":99.8,"recv":0,"send":0,"writ":0.63,"used":552.72,"free":3061.1},{"epoch":26156289,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":553.03,"free":3060.77},{"epoch":26156290,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":552.09,"free":3061.72},{"epoch":26156291,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":552.05,"free":3061.76},{"epoch":26156292,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.05,"free":3061.76},{"epoch":26156293,"idl":99.79,"recv":0,"send":0.1,"writ":0.61,"used":552.36,"free":3061.44},{"epoch":26156294,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":551.97,"free":3061.82},{"epoch":26156295,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":551.99,"free":3061.82},{"epoch":26156296,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":551.98,"free":3061.83},{"epoch":26156297,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":552.13,"free":3061.67},{"epoch":26156298,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":553.1,"free":3060.7},{"epoch":26156299,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.11,"free":3060.68},{"epoch":26156300,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":553.11,"free":3060.71},{"epoch":26156301,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":553.1,"free":3060.71},{"epoch":26156302,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":553.09,"free":3060.71},{"epoch":26156303,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":552.94,"free":3060.86},{"epoch":26156304,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":552.06,"free":3061.73},{"epoch":26156305,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":552.09,"free":3061.72},{"epoch":26156306,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":552.08,"free":3061.73},{"epoch":26156307,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.07,"free":3061.73},{"epoch":26156308,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":552.39,"free":3061.4},{"epoch":26156309,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":552.03,"free":3061.76},{"epoch":26156310,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":553.02,"free":3060.79},{"epoch":26156311,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":553.03,"free":3060.78},{"epoch":26156312,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":553.02,"free":3060.78},{"epoch":26156313,"idl":99.78,"recv":0.01,"send":0.2,"writ":0.61,"used":553.62,"free":3060.18},{"epoch":26156314,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.62,"free":3061.18},{"epoch":26156315,"idl":99.48,"recv":0,"send":0,"writ":0.35,"used":552.62,"free":3061.19},{"epoch":26156316,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":552.6,"free":3061.21},{"epoch":26156317,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":552.59,"free":3061.21},{"epoch":26156318,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.59,"free":3061.21},{"epoch":26156319,"idl":99.68,"recv":0,"send":0,"writ":0.71,"used":553.36,"free":3060.41},{"epoch":26156320,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":553.09,"free":3060.7},{"epoch":26156321,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":553.08,"free":3060.7},{"epoch":26156322,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.08,"free":3060.7},{"epoch":26156323,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.07,"free":3060.71},{"epoch":26156324,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":552.81,"free":3060.97},{"epoch":26156325,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":552.8,"free":3061.01},{"epoch":26156326,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":552.78,"free":3061.02},{"epoch":26156327,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.77,"free":3061.03},{"epoch":26156328,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.76,"free":3061.03},{"epoch":26156329,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":553.39,"free":3060.4},{"epoch":26156330,"idl":99.86,"recv":0,"send":0,"writ":0.41,"used":553.09,"free":3060.72},{"epoch":26156331,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":552.99,"free":3060.82},{"epoch":26156332,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":552.98,"free":3060.82},{"epoch":26156333,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":552.98,"free":3060.82},{"epoch":26156334,"idl":99.74,"recv":0,"send":0,"writ":0.6,"used":553.29,"free":3060.5},{"epoch":26156335,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":553.2,"free":3060.61},{"epoch":26156336,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":553.2,"free":3060.6},{"epoch":26156337,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":553.2,"free":3060.6},{"epoch":26156338,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":553.19,"free":3060.61},{"epoch":26156339,"idl":99.81,"recv":0,"send":0,"writ":0.45,"used":553.72,"free":3060.06},{"epoch":26156340,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":552.21,"free":3061.59},{"epoch":26156341,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":552.18,"free":3061.62},{"epoch":26156342,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":552.18,"free":3061.62},{"epoch":26156343,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.35,"free":3061.44},{"epoch":26156344,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":553.13,"free":3060.65},{"epoch":26156345,"idl":99.89,"recv":0,"send":0,"writ":0.41,"used":553.34,"free":3060.46},{"epoch":26156346,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":553.32,"free":3060.48},{"epoch":26156347,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":553.31,"free":3060.48},{"epoch":26156348,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":553.31,"free":3060.48},{"epoch":26156349,"idl":99.69,"recv":0,"send":0,"writ":0.62,"used":554.03,"free":3059.73},{"epoch":26156350,"idl":99.9,"recv":0,"send":0,"writ":0.45,"used":553.07,"free":3060.7},{"epoch":26156351,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":553.06,"free":3060.71},{"epoch":26156352,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.05,"free":3060.72},{"epoch":26156353,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.02,"free":3060.74},{"epoch":26156354,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.02,"free":3060.74},{"epoch":26156355,"idl":99.72,"recv":0,"send":0,"writ":0.71,"used":553.55,"free":3060.22},{"epoch":26156356,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.03,"free":3060.74},{"epoch":26156357,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":552.37,"free":3061.39},{"epoch":26156358,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.27,"free":3061.48},{"epoch":26156359,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":552.24,"free":3061.51},{"epoch":26156360,"idl":99.75,"recv":0,"send":0,"writ":0.74,"used":552.77,"free":3061},{"epoch":26156361,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":552.26,"free":3061.51},{"epoch":26156362,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.25,"free":3061.51},{"epoch":26156363,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.25,"free":3061.51},{"epoch":26156364,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":552.24,"free":3061.51},{"epoch":26156365,"idl":99.76,"recv":0,"send":0,"writ":0.73,"used":552.33,"free":3061.43},{"epoch":26156366,"idl":99.91,"recv":0,"send":0.1,"writ":0.21,"used":551.94,"free":3061.81},{"epoch":26156367,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":551.93,"free":3061.82},{"epoch":26156368,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":551.9,"free":3061.85},{"epoch":26156369,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.07,"free":3061.68},{"epoch":26156370,"idl":99.76,"recv":0,"send":0,"writ":0.81,"used":552.97,"free":3060.79},{"epoch":26156371,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":552.34,"free":3061.41},{"epoch":26156372,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":552.31,"free":3061.44},{"epoch":26156373,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":552.3,"free":3061.45},{"epoch":26156374,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":552.29,"free":3061.45},{"epoch":26156375,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":552.58,"free":3061.18},{"epoch":26156376,"idl":99.95,"recv":0,"send":0,"writ":0.28,"used":551.82,"free":3061.94},{"epoch":26156377,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.81,"free":3061.94},{"epoch":26156378,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":551.81,"free":3061.94},{"epoch":26156379,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":552.76,"free":3060.96},{"epoch":26156380,"idl":99.76,"recv":0,"send":0,"writ":0.71,"used":553.14,"free":3060.59},{"epoch":26156381,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":552.52,"free":3061.21},{"epoch":26156382,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.51,"free":3061.21},{"epoch":26156383,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.51,"free":3061.21},{"epoch":26156384,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":552.51,"free":3061.21},{"epoch":26156385,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":552.94,"free":3060.8},{"epoch":26156386,"idl":99.92,"recv":0,"send":0,"writ":0.27,"used":551.01,"free":3062.72},{"epoch":26156387,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":551.01,"free":3062.72},{"epoch":26156388,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551,"free":3062.72},{"epoch":26156389,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":551,"free":3062.72},{"epoch":26156390,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":552.44,"free":3061.3},{"epoch":26156391,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":552.75,"free":3060.98},{"epoch":26156392,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":552.21,"free":3061.52},{"epoch":26156393,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.2,"free":3061.52},{"epoch":26156394,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":552.27,"free":3061.45},{"epoch":26156395,"idl":99.91,"recv":0,"send":0,"writ":0.34,"used":552.69,"free":3061.05},{"epoch":26156396,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":553.05,"free":3060.68},{"epoch":26156397,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":552.67,"free":3061.06},{"epoch":26156398,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":552.66,"free":3061.06},{"epoch":26156399,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":552.66,"free":3061.06},{"epoch":26156400,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":552.68,"free":3061.06},{"epoch":26156401,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":553.02,"free":3060.71},{"epoch":26156402,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":552.63,"free":3061.09},{"epoch":26156403,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":552.63,"free":3061.09},{"epoch":26156404,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":552.62,"free":3061.09},{"epoch":26156405,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":552.69,"free":3061.04},{"epoch":26156406,"idl":99.7,"recv":0,"send":0,"writ":0.51,"used":552.45,"free":3061.27},{"epoch":26156407,"idl":99.95,"recv":0,"send":0,"writ":0.22,"used":551.59,"free":3062.14},{"epoch":26156408,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":551.56,"free":3062.16},{"epoch":26156409,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":552.75,"free":3060.95},{"epoch":26156410,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":552.76,"free":3060.95},{"epoch":26156411,"idl":99.8,"recv":0,"send":0,"writ":0.52,"used":553.07,"free":3060.64},{"epoch":26156412,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":551.98,"free":3061.72},{"epoch":26156413,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":551.97,"free":3061.72},{"epoch":26156414,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":551.97,"free":3061.74},{"epoch":26156415,"idl":99.91,"recv":0,"send":0,"writ":0.32,"used":551.99,"free":3061.74},{"epoch":26156416,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":552.46,"free":3061.26},{"epoch":26156417,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":551.98,"free":3061.74},{"epoch":26156418,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":551.97,"free":3061.74},{"epoch":26156419,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":551.94,"free":3061.77},{"epoch":26156420,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":552.44,"free":3061.29},{"epoch":26156421,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":552.68,"free":3061.06},{"epoch":26156422,"idl":99.87,"recv":0,"send":0,"writ":0.38,"used":550.47,"free":3063.26},{"epoch":26156423,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":550.47,"free":3063.26},{"epoch":26156424,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":550.43,"free":3063.29},{"epoch":26156425,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":552.15,"free":3061.6},{"epoch":26156426,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":552.17,"free":3061.57},{"epoch":26156427,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":552.51,"free":3061.22},{"epoch":26156428,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":552.16,"free":3061.57},{"epoch":26156429,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":552.15,"free":3061.57},{"epoch":26156430,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":552.17,"free":3061.57},{"epoch":26156431,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":552.17,"free":3061.57},{"epoch":26156432,"idl":99.72,"recv":0,"send":0.01,"writ":0.6,"used":552.71,"free":3061.03},{"epoch":26156433,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.37,"free":3061.36},{"epoch":26156434,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":552.37,"free":3061.36},{"epoch":26156435,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":553.11,"free":3060.63},{"epoch":26156436,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":553.12,"free":3060.62},{"epoch":26156437,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":553.77,"free":3059.96},{"epoch":26156438,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":553.32,"free":3060.41},{"epoch":26156439,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":553.05,"free":3060.65},{"epoch":26156440,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":552.82,"free":3060.9},{"epoch":26156441,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":552.78,"free":3060.94},{"epoch":26156442,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":553.39,"free":3060.32},{"epoch":26156443,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":553.01,"free":3060.7},{"epoch":26156444,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":552.98,"free":3060.72},{"epoch":26156445,"idl":99.76,"recv":0,"send":0,"writ":0.38,"used":552.75,"free":3060.96},{"epoch":26156446,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.74,"free":3060.97},{"epoch":26156447,"idl":99.72,"recv":0,"send":0,"writ":0.43,"used":553.16,"free":3060.54},{"epoch":26156448,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":552.95,"free":3060.75},{"epoch":26156449,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":552.94,"free":3060.75},{"epoch":26156450,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":553.18,"free":3060.53},{"epoch":26156451,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":553.17,"free":3060.54},{"epoch":26156452,"idl":99.72,"recv":0,"send":0,"writ":0.45,"used":553.44,"free":3060.26},{"epoch":26156453,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":552.92,"free":3060.79},{"epoch":26156454,"idl":99.4,"recv":0,"send":0,"writ":0.19,"used":552.89,"free":3060.81},{"epoch":26156455,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":552.68,"free":3061.04},{"epoch":26156456,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":552.68,"free":3061.03},{"epoch":26156457,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":553.06,"free":3060.64},{"epoch":26156458,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":552.88,"free":3060.82},{"epoch":26156459,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":552.64,"free":3061.06},{"epoch":26156460,"idl":99.14,"recv":0,"send":0,"writ":11.05,"used":552.09,"free":3061.86},{"epoch":26156461,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":552.11,"free":3061.9},{"epoch":26156462,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":552.62,"free":3061.39},{"epoch":26156463,"idl":99.86,"recv":0,"send":0,"writ":0.38,"used":552.96,"free":3061.06},{"epoch":26156464,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":552.96,"free":3061.06},{"epoch":26156465,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":553.23,"free":3060.84},{"epoch":26156466,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.23,"free":3060.84},{"epoch":26156467,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.22,"free":3060.84},{"epoch":26156468,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":553.55,"free":3060.5},{"epoch":26156469,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":553.18,"free":3060.85},{"epoch":26156470,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":553.44,"free":3060.61},{"epoch":26156471,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.44,"free":3060.61},{"epoch":26156472,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":553.44,"free":3060.61},{"epoch":26156473,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":554.04,"free":3060},{"epoch":26156474,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":553.18,"free":3060.87},{"epoch":26156475,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":553.17,"free":3060.9},{"epoch":26156476,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":553.17,"free":3060.9},{"epoch":26156477,"idl":99.8,"recv":0,"send":0,"writ":0.2,"used":552.92,"free":3061.14},{"epoch":26156478,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":553,"free":3061.06},{"epoch":26156479,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":552.16,"free":3061.9},{"epoch":26156480,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":552.96,"free":3061.11},{"epoch":26156481,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":552.89,"free":3061.18},{"epoch":26156482,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.89,"free":3061.18},{"epoch":26156483,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":553.41,"free":3060.65},{"epoch":26156484,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.37,"free":3060.68},{"epoch":26156485,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":553.15,"free":3060.92},{"epoch":26156486,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":553.12,"free":3060.95},{"epoch":26156487,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.1,"free":3060.96},{"epoch":26156488,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":553.36,"free":3060.7},{"epoch":26156489,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.84,"free":3061.21},{"epoch":26156490,"idl":99.69,"recv":0,"send":0,"writ":0.32,"used":551.91,"free":3062.16},{"epoch":26156491,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":551.84,"free":3062.22},{"epoch":26156492,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":551.84,"free":3062.22},{"epoch":26156493,"idl":99.7,"recv":0,"send":0,"writ":0.51,"used":552.38,"free":3061.68},{"epoch":26156494,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":552.81,"free":3061.24},{"epoch":26156495,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":553.31,"free":3060.76},{"epoch":26156496,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.31,"free":3060.76},{"epoch":26156497,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":553.28,"free":3060.78},{"epoch":26156498,"idl":98.51,"recv":0.3,"send":0.01,"writ":0.6,"used":554.71,"free":3057.91},{"epoch":26156499,"idl":96.49,"recv":0,"send":0,"writ":229.09,"used":565.9,"free":3049.64},{"epoch":26156500,"idl":99.81,"recv":0,"send":0,"writ":0.42,"used":555.8,"free":3058.11},{"epoch":26156501,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":555.79,"free":3058.12},{"epoch":26156502,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":555.78,"free":3058.12},{"epoch":26156503,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":555.78,"free":3058.12},{"epoch":26156504,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":553.86,"free":3060.08},{"epoch":26156505,"idl":99.81,"recv":0,"send":0,"writ":0.37,"used":552.61,"free":3061.35},{"epoch":26156506,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":552.4,"free":3061.56},{"epoch":26156507,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.39,"free":3061.57},{"epoch":26156508,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":552.36,"free":3061.59},{"epoch":26156509,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":552.9,"free":3061.05},{"epoch":26156510,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":552.63,"free":3061.34},{"epoch":26156511,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.16,"used":552.61,"free":3061.35},{"epoch":26156512,"idl":99.81,"recv":0.04,"send":0.03,"writ":0.18,"used":552.58,"free":3061.38},{"epoch":26156513,"idl":99.82,"recv":0.03,"send":0.02,"writ":0.15,"used":552.59,"free":3061.37},{"epoch":26156514,"idl":99.63,"recv":0.02,"send":0.02,"writ":0.54,"used":552.87,"free":3061.08},{"epoch":26156515,"idl":99.77,"recv":0.01,"send":0.01,"writ":0.34,"used":552.62,"free":3061.35},{"epoch":26156516,"idl":99.83,"recv":0.02,"send":0.01,"writ":0.17,"used":552.6,"free":3061.37},{"epoch":26156517,"idl":99.83,"recv":0.03,"send":0.02,"writ":0.14,"used":552.58,"free":3061.38},{"epoch":26156518,"idl":99.86,"recv":0.02,"send":0.02,"writ":0.16,"used":552.57,"free":3061.39},{"epoch":26156519,"idl":99.69,"recv":0.02,"send":0.01,"writ":0.5,"used":552.91,"free":3061.04},{"epoch":26156520,"idl":99.74,"recv":0.01,"send":0.01,"writ":0.47,"used":551.57,"free":3062.4},{"epoch":26156521,"idl":99.82,"recv":0.03,"send":0.02,"writ":0.15,"used":551.64,"free":3062.32},{"epoch":26156522,"idl":99.82,"recv":0.03,"send":0.02,"writ":0.13,"used":551.63,"free":3062.33},{"epoch":26156523,"idl":99.86,"recv":0.02,"send":0.01,"writ":0.16,"used":551.59,"free":3062.36},{"epoch":26156524,"idl":99.7,"recv":0.03,"send":0.02,"writ":0.51,"used":552.09,"free":3061.86},{"epoch":26156525,"idl":99.79,"recv":0,"send":0,"writ":0.39,"used":552.78,"free":3061.19},{"epoch":26156526,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":552.76,"free":3061.2},{"epoch":26156527,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.74,"free":3061.22},{"epoch":26156528,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":552.73,"free":3061.22},{"epoch":26156529,"idl":99.58,"recv":0,"send":0,"writ":0.45,"used":552.91,"free":3061.02},{"epoch":26156530,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":553.27,"free":3060.68},{"epoch":26156531,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.92,"free":3061.03},{"epoch":26156532,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":552.89,"free":3061.05},{"epoch":26156533,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.88,"free":3061.05},{"epoch":26156534,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.88,"free":3061.05},{"epoch":26156535,"idl":99.64,"recv":0,"send":0,"writ":0.73,"used":552.82,"free":3061.14},{"epoch":26156536,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":552.4,"free":3061.56},{"epoch":26156537,"idl":99.84,"recv":0,"send":0,"writ":0.23,"used":552.64,"free":3061.32},{"epoch":26156538,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":552.64,"free":3061.31},{"epoch":26156539,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.64,"free":3061.31},{"epoch":26156540,"idl":99.68,"recv":0,"send":0,"writ":0.64,"used":552.75,"free":3061.21},{"epoch":26156541,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.37,"free":3061.59},{"epoch":26156542,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.37,"free":3061.59},{"epoch":26156543,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":552.35,"free":3061.6},{"epoch":26156544,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":552.33,"free":3061.62},{"epoch":26156545,"idl":99.55,"recv":0,"send":0,"writ":0.7,"used":552.81,"free":3061.16},{"epoch":26156546,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.83,"free":3061.14},{"epoch":26156547,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":552.83,"free":3061.14},{"epoch":26156548,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":552.83,"free":3061.14},{"epoch":26156549,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.8,"free":3061.17},{"epoch":26156550,"idl":99.66,"recv":0,"send":0,"writ":0.61,"used":553.04,"free":3060.94},{"epoch":26156551,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":552.56,"free":3061.42},{"epoch":26156552,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":552.55,"free":3061.42},{"epoch":26156553,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":552.55,"free":3061.42},{"epoch":26156554,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":552.53,"free":3061.44},{"epoch":26156555,"idl":99.65,"recv":0,"send":0,"writ":0.56,"used":553.51,"free":3060.48},{"epoch":26156556,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":552.53,"free":3061.45},{"epoch":26156557,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":552.49,"free":3061.48},{"epoch":26156558,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":552.58,"free":3061.39},{"epoch":26156559,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":552.67,"free":3061.27},{"epoch":26156560,"idl":99.66,"recv":0,"send":0,"writ":0.51,"used":553.23,"free":3060.73},{"epoch":26156561,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":552.9,"free":3061.06},{"epoch":26156562,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.88,"free":3061.07},{"epoch":26156563,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.85,"free":3061.09},{"epoch":26156564,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.84,"free":3061.1},{"epoch":26156565,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":552.63,"free":3061.33},{"epoch":26156566,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":552.73,"free":3061.23},{"epoch":26156567,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.35,"free":3061.61},{"epoch":26156568,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":552.33,"free":3061.62},{"epoch":26156569,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":552.33,"free":3061.62},{"epoch":26156570,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":552.6,"free":3061.37},{"epoch":26156571,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":553.19,"free":3060.77},{"epoch":26156572,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.83,"free":3061.13},{"epoch":26156573,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.82,"free":3061.13},{"epoch":26156574,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":552.79,"free":3061.16},{"epoch":26156575,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":552.33,"free":3061.63},{"epoch":26156576,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":552.67,"free":3061.29},{"epoch":26156577,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":552.29,"free":3061.67},{"epoch":26156578,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.27,"free":3061.68},{"epoch":26156579,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":552.26,"free":3061.68},{"epoch":26156580,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":551.09,"free":3062.87},{"epoch":26156581,"idl":99.71,"recv":0,"send":0,"writ":0.52,"used":552.42,"free":3061.53},{"epoch":26156582,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":552.26,"free":3061.68},{"epoch":26156583,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":552.26,"free":3061.68},{"epoch":26156584,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":552.25,"free":3061.69},{"epoch":26156585,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":552.72,"free":3061.23},{"epoch":26156586,"idl":99.74,"recv":0,"send":0,"writ":0.41,"used":553.08,"free":3060.87},{"epoch":26156587,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":552.49,"free":3061.46},{"epoch":26156588,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.47,"free":3061.47},{"epoch":26156589,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":552.9,"free":3061.02},{"epoch":26156590,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":552.92,"free":3061.02},{"epoch":26156591,"idl":99.79,"recv":0,"send":0,"writ":0.5,"used":553.33,"free":3060.61},{"epoch":26156592,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":553.15,"free":3060.78},{"epoch":26156593,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":553.15,"free":3060.78},{"epoch":26156594,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.15,"free":3060.8},{"epoch":26156595,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":553.16,"free":3060.8},{"epoch":26156596,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":553.51,"free":3060.45},{"epoch":26156597,"idl":99.94,"recv":0,"send":0,"writ":0.32,"used":553.13,"free":3060.82},{"epoch":26156598,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.12,"free":3060.83},{"epoch":26156599,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.11,"free":3060.83},{"epoch":26156600,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":552.65,"free":3061.31},{"epoch":26156601,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":553,"free":3060.95},{"epoch":26156602,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":552.85,"free":3061.11},{"epoch":26156603,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.84,"free":3061.11},{"epoch":26156604,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.84,"free":3061.11},{"epoch":26156605,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":553.34,"free":3060.62},{"epoch":26156606,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.34,"free":3060.61},{"epoch":26156607,"idl":99.76,"recv":0,"send":0,"writ":0.58,"used":553.19,"free":3060.76},{"epoch":26156608,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":552.81,"free":3061.14},{"epoch":26156609,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":552.81,"free":3061.14},{"epoch":26156610,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":553.07,"free":3060.89},{"epoch":26156611,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.05,"free":3060.91},{"epoch":26156612,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":553.65,"free":3060.3},{"epoch":26156613,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.03,"free":3060.92},{"epoch":26156614,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.02,"free":3060.92},{"epoch":26156615,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":553.04,"free":3060.92},{"epoch":26156616,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.03,"free":3060.92},{"epoch":26156617,"idl":99.21,"recv":0,"send":0,"writ":0.57,"used":553.33,"free":3060.62},{"epoch":26156618,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.75,"free":3061.2},{"epoch":26156619,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":553,"free":3060.92},{"epoch":26156620,"idl":99.88,"recv":0,"send":0,"writ":0.26,"used":553.02,"free":3060.92},{"epoch":26156621,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":553.01,"free":3060.95},{"epoch":26156622,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":553.42,"free":3060.55},{"epoch":26156623,"idl":99.94,"recv":0,"send":0,"writ":0.29,"used":553.16,"free":3060.8},{"epoch":26156624,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.15,"free":3060.8},{"epoch":26156625,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":553.16,"free":3060.8},{"epoch":26156626,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":553.16,"free":3060.8},{"epoch":26156627,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":553.5,"free":3060.46},{"epoch":26156628,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":553.15,"free":3060.8},{"epoch":26156629,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.14,"free":3060.81},{"epoch":26156630,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":553.38,"free":3060.59},{"epoch":26156631,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553.37,"free":3060.59},{"epoch":26156632,"idl":99.8,"recv":0,"send":0,"writ":0.5,"used":553.65,"free":3060.31},{"epoch":26156633,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":553.12,"free":3060.84},{"epoch":26156634,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.09,"free":3060.86},{"epoch":26156635,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":552.15,"free":3061.81},{"epoch":26156636,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":552.11,"free":3061.85},{"epoch":26156637,"idl":99.52,"recv":0,"send":0,"writ":0.56,"used":552.55,"free":3061.41},{"epoch":26156638,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.84,"free":3061.11},{"epoch":26156639,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":552.83,"free":3061.11},{"epoch":26156640,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":552.6,"free":3061.36},{"epoch":26156641,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.57,"free":3061.39},{"epoch":26156642,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.56,"free":3061.39},{"epoch":26156643,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":553.47,"free":3060.48},{"epoch":26156644,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":552.8,"free":3061.14},{"epoch":26156645,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":552.34,"free":3061.63},{"epoch":26156646,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.29,"free":3061.67},{"epoch":26156647,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.29,"free":3061.67},{"epoch":26156648,"idl":99.79,"recv":0,"send":0.01,"writ":0.6,"used":553.55,"free":3060.4},{"epoch":26156649,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":553.47,"free":3060.46},{"epoch":26156650,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":553.24,"free":3060.7},{"epoch":26156651,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":553.24,"free":3060.69},{"epoch":26156652,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":553.38,"free":3060.55},{"epoch":26156653,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":553.72,"free":3060.19},{"epoch":26156654,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":553.35,"free":3060.57},{"epoch":26156655,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":553.35,"free":3060.6},{"epoch":26156656,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":553.19,"free":3060.76},{"epoch":26156657,"idl":99.94,"recv":0,"send":0,"writ":0.24,"used":552.85,"free":3061.09},{"epoch":26156658,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":552.75,"free":3061.18},{"epoch":26156659,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":552.1,"free":3061.83},{"epoch":26156660,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":551.61,"free":3062.33},{"epoch":26156661,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":551.59,"free":3062.35},{"epoch":26156662,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.58,"free":3062.35},{"epoch":26156663,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":552.15,"free":3061.78},{"epoch":26156664,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":552.07,"free":3061.86},{"epoch":26156665,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":552.81,"free":3061.13},{"epoch":26156666,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":552.82,"free":3061.12},{"epoch":26156667,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":552.8,"free":3061.13},{"epoch":26156668,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":553.07,"free":3060.86},{"epoch":26156669,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.52,"free":3061.4},{"epoch":26156670,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":552.78,"free":3061.16},{"epoch":26156671,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":552.78,"free":3061.15},{"epoch":26156672,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":552.78,"free":3061.15},{"epoch":26156673,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":553.19,"free":3060.73},{"epoch":26156674,"idl":99.92,"recv":0,"send":0,"writ":0.36,"used":552.5,"free":3061.42},{"epoch":26156675,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":551.3,"free":3062.63},{"epoch":26156676,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":551.27,"free":3062.66},{"epoch":26156677,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":551.26,"free":3062.67},{"epoch":26156678,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":551.23,"free":3062.69},{"epoch":26156679,"idl":99.67,"recv":0,"send":0,"writ":0.73,"used":552.82,"free":3061.08},{"epoch":26156680,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":552.52,"free":3061.4},{"epoch":26156681,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":552.48,"free":3061.44},{"epoch":26156682,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":552.47,"free":3061.44},{"epoch":26156683,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.45,"free":3061.45},{"epoch":26156684,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":553,"free":3060.9},{"epoch":26156685,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":552.36,"free":3061.55},{"epoch":26156686,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.39,"free":3061.53},{"epoch":26156687,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.37,"free":3061.54},{"epoch":26156688,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.35,"free":3061.56},{"epoch":26156689,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":552.16,"free":3061.74},{"epoch":26156690,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":552.58,"free":3061.33},{"epoch":26156691,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":552.6,"free":3061.31},{"epoch":26156692,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.59,"free":3061.31},{"epoch":26156693,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.57,"free":3061.33},{"epoch":26156694,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":552.91,"free":3060.98},{"epoch":26156695,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":552.59,"free":3061.32},{"epoch":26156696,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":552.55,"free":3061.36},{"epoch":26156697,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.53,"free":3061.38},{"epoch":26156698,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.53,"free":3061.38},{"epoch":26156699,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":553.22,"free":3060.67},{"epoch":26156700,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":552.78,"free":3061.13},{"epoch":26156701,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.76,"free":3061.15},{"epoch":26156702,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.74,"free":3061.16},{"epoch":26156703,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.74,"free":3061.16},{"epoch":26156704,"idl":99.81,"recv":0,"send":0,"writ":0.51,"used":553.14,"free":3060.76},{"epoch":26156705,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":552.75,"free":3061.16},{"epoch":26156706,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.72,"free":3061.19},{"epoch":26156707,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.71,"free":3061.19},{"epoch":26156708,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.71,"free":3061.19},{"epoch":26156709,"idl":99.7,"recv":0,"send":0,"writ":0.71,"used":553.11,"free":3060.77},{"epoch":26156710,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":552.23,"free":3061.68},{"epoch":26156711,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":552.18,"free":3061.72},{"epoch":26156712,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.34,"free":3061.56},{"epoch":26156713,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.36,"free":3061.54},{"epoch":26156714,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":552.74,"free":3061.15},{"epoch":26156715,"idl":99.87,"recv":0,"send":0,"writ":0.54,"used":552.6,"free":3061.3},{"epoch":26156716,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.58,"free":3061.32},{"epoch":26156717,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":552.58,"free":3061.31},{"epoch":26156718,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.57,"free":3061.32},{"epoch":26156719,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":552.57,"free":3061.32},{"epoch":26156720,"idl":99.69,"recv":0,"send":0,"writ":0.66,"used":553.14,"free":3060.76},{"epoch":26156721,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.8,"free":3061.11},{"epoch":26156722,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.79,"free":3061.11},{"epoch":26156723,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":552.79,"free":3061.11},{"epoch":26156724,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":552.76,"free":3061.13},{"epoch":26156725,"idl":99.7,"recv":0,"send":0,"writ":0.66,"used":553.48,"free":3060.42},{"epoch":26156726,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":552.76,"free":3061.14},{"epoch":26156727,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.76,"free":3061.14},{"epoch":26156728,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":552.76,"free":3061.14},{"epoch":26156729,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":552.73,"free":3061.16},{"epoch":26156730,"idl":99.69,"recv":0,"send":0,"writ":0.71,"used":553.3,"free":3060.6},{"epoch":26156731,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.96,"free":3060.94},{"epoch":26156732,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":552.94,"free":3060.95},{"epoch":26156733,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":552.93,"free":3060.95},{"epoch":26156734,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":552.93,"free":3060.95},{"epoch":26156735,"idl":99.74,"recv":0,"send":0,"writ":0.6,"used":553.02,"free":3060.87},{"epoch":26156736,"idl":99.93,"recv":0,"send":0,"writ":0.32,"used":552.83,"free":3061.06},{"epoch":26156737,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.83,"free":3061.06},{"epoch":26156738,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.81,"free":3061.07},{"epoch":26156739,"idl":99.84,"recv":0,"send":0,"writ":0.42,"used":552.81,"free":3061.08},{"epoch":26156740,"idl":99.73,"recv":0,"send":0,"writ":0.69,"used":553.23,"free":3060.68},{"epoch":26156741,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":553.04,"free":3060.86},{"epoch":26156742,"idl":99.91,"recv":0,"send":0.01,"writ":0.18,"used":553.03,"free":3060.87},{"epoch":26156743,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":553,"free":3060.9},{"epoch":26156744,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":553,"free":3060.93},{"epoch":26156745,"idl":99.72,"recv":0,"send":0,"writ":0.69,"used":552.78,"free":3061.16},{"epoch":26156746,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.76,"free":3061.18},{"epoch":26156747,"idl":99.95,"recv":0,"send":0,"writ":0.37,"used":552.68,"free":3061.25},{"epoch":26156748,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":552.48,"free":3061.45},{"epoch":26156749,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.47,"free":3061.45},{"epoch":26156750,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":553.33,"free":3060.61},{"epoch":26156751,"idl":99.94,"recv":0,"send":0,"writ":0.28,"used":552.98,"free":3060.96},{"epoch":26156752,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.97,"free":3060.96},{"epoch":26156753,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.94,"free":3060.99},{"epoch":26156754,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":552.93,"free":3060.99},{"epoch":26156755,"idl":99.88,"recv":0,"send":0,"writ":0.37,"used":552.76,"free":3061.17},{"epoch":26156756,"idl":97.32,"recv":0,"send":0,"writ":0.53,"used":553.27,"free":3060.66},{"epoch":26156757,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.92,"free":3061.01},{"epoch":26156758,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":552.9,"free":3061.02},{"epoch":26156759,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.9,"free":3061.02},{"epoch":26156760,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":552.92,"free":3061.02},{"epoch":26156761,"idl":99.82,"recv":0,"send":0,"writ":0.56,"used":553.6,"free":3060.34},{"epoch":26156762,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.32,"free":3060.63},{"epoch":26156763,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":553.31,"free":3060.64},{"epoch":26156764,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.3,"free":3060.64},{"epoch":26156765,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":552.11,"free":3061.84},{"epoch":26156766,"idl":99.82,"recv":0,"send":0,"writ":0.5,"used":553.03,"free":3060.92},{"epoch":26156767,"idl":99.96,"recv":0,"send":0,"writ":0.2,"used":552.81,"free":3061.13},{"epoch":26156768,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.81,"free":3061.13},{"epoch":26156769,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":552.77,"free":3061.14},{"epoch":26156770,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":553.03,"free":3060.9},{"epoch":26156771,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":553.65,"free":3060.28},{"epoch":26156772,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":553.25,"free":3060.68},{"epoch":26156773,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":553.24,"free":3060.68},{"epoch":26156774,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":553.24,"free":3060.7},{"epoch":26156775,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":552.98,"free":3060.98},{"epoch":26156776,"idl":99.8,"recv":0,"send":0,"writ":0.45,"used":553.46,"free":3060.5},{"epoch":26156777,"idl":99.94,"recv":0,"send":0,"writ":0.33,"used":552.94,"free":3061.01},{"epoch":26156778,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.93,"free":3061.01},{"epoch":26156779,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":552.91,"free":3061.02},{"epoch":26156780,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":553.16,"free":3060.79},{"epoch":26156781,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":553.57,"free":3060.37},{"epoch":26156782,"idl":99.93,"recv":0,"send":0,"writ":0.4,"used":553.48,"free":3060.46},{"epoch":26156783,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":553.6,"free":3060.34},{"epoch":26156784,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":553.58,"free":3060.36},{"epoch":26156785,"idl":99.83,"recv":0,"send":0,"writ":0.35,"used":553.36,"free":3060.6},{"epoch":26156786,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":553.68,"free":3060.26},{"epoch":26156787,"idl":99.96,"recv":0,"send":0,"writ":0.42,"used":553.09,"free":3060.85},{"epoch":26156788,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.07,"free":3060.87},{"epoch":26156789,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.05,"free":3060.88},{"epoch":26156790,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":553.31,"free":3060.64},{"epoch":26156791,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":553.31,"free":3060.64},{"epoch":26156792,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":553.63,"free":3060.31},{"epoch":26156793,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":553.27,"free":3060.67},{"epoch":26156794,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":553.27,"free":3060.67},{"epoch":26156795,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":553.28,"free":3060.67},{"epoch":26156796,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":553.28,"free":3060.67},{"epoch":26156797,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":553.45,"free":3060.49},{"epoch":26156798,"idl":98.75,"recv":0,"send":0,"writ":0.16,"used":553.02,"free":3060.91},{"epoch":26156799,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":553.24,"free":3060.67},{"epoch":26156800,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":553.25,"free":3060.68},{"epoch":26156801,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":553.24,"free":3060.68},{"epoch":26156802,"idl":99.81,"recv":0,"send":0,"writ":0.41,"used":553.71,"free":3060.2},{"epoch":26156803,"idl":99.96,"recv":0,"send":0,"writ":0.3,"used":553.47,"free":3060.44},{"epoch":26156804,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":553.47,"free":3060.44},{"epoch":26156805,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":553.23,"free":3060.7},{"epoch":26156806,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":553.21,"free":3060.71},{"epoch":26156807,"idl":99.81,"recv":0,"send":0,"writ":0.52,"used":553.95,"free":3059.97},{"epoch":26156808,"idl":99.94,"recv":0,"send":0,"writ":0.22,"used":553.2,"free":3060.71},{"epoch":26156809,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":553.17,"free":3060.74},{"epoch":26156810,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":553.19,"free":3060.73},{"epoch":26156811,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":553.06,"free":3060.86},{"epoch":26156812,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":552.82,"free":3061.1},{"epoch":26156813,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.43,"free":3061.48},{"epoch":26156814,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.44,"free":3061.46},{"epoch":26156815,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":552.42,"free":3061.5},{"epoch":26156816,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":552.35,"free":3061.57},{"epoch":26156817,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":552.88,"free":3061.04},{"epoch":26156818,"idl":99.9,"recv":0,"send":0,"writ":0.41,"used":552.33,"free":3061.57},{"epoch":26156819,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":552.33,"free":3061.57},{"epoch":26156820,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":551.41,"free":3062.5},{"epoch":26156821,"idl":96.13,"recv":0.23,"send":0.01,"writ":78.23,"used":558.01,"free":3056.86},{"epoch":26156822,"idl":99.9,"recv":0,"send":0,"writ":62.82,"used":554.97,"free":3058.24},{"epoch":26156823,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":555.44,"free":3057.77},{"epoch":26156824,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":554.96,"free":3058.24},{"epoch":26156825,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":554.76,"free":3058.46},{"epoch":26156826,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":554.04,"free":3059.2},{"epoch":26156827,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":552.51,"free":3060.76},{"epoch":26156828,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":553.04,"free":3060.23},{"epoch":26156829,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":552.75,"free":3060.49},{"epoch":26156830,"idl":99.87,"recv":0,"send":0,"writ":0.35,"used":552.75,"free":3060.51},{"epoch":26156831,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":552.73,"free":3060.53},{"epoch":26156832,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":552.73,"free":3060.54},{"epoch":26156833,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":553.07,"free":3060.19},{"epoch":26156834,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":552.72,"free":3060.54},{"epoch":26156835,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":552.72,"free":3060.55},{"epoch":26156836,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.7,"free":3060.57},{"epoch":26156837,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":552.46,"free":3060.81},{"epoch":26156838,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":552.93,"free":3060.34},{"epoch":26156839,"idl":99.92,"recv":0,"send":0,"writ":0.33,"used":552.69,"free":3060.57},{"epoch":26156840,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":552.93,"free":3060.35},{"epoch":26156841,"idl":96.07,"recv":0,"send":0,"writ":12.8,"used":559.81,"free":3050.09},{"epoch":26156842,"idl":99.9,"recv":0,"send":0,"writ":34.21,"used":554.63,"free":3058.49},{"epoch":26156843,"idl":99.81,"recv":0,"send":0,"writ":0.61,"used":555.46,"free":3057.67},{"epoch":26156844,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":555.13,"free":3058},{"epoch":26156845,"idl":98.88,"recv":0,"send":0,"writ":15.45,"used":555.19,"free":3058.48},{"epoch":26156846,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.45,"free":3059.76},{"epoch":26156847,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":551.46,"free":3061.79},{"epoch":26156848,"idl":99.76,"recv":0.01,"send":0.03,"writ":0.65,"used":552.03,"free":3061.21},{"epoch":26156849,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":552.73,"free":3060.51},{"epoch":26156850,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":551.61,"free":3061.65},{"epoch":26156851,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":551.45,"free":3061.8},{"epoch":26156852,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":551.43,"free":3061.81},{"epoch":26156853,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":551.49,"free":3061.75},{"epoch":26156854,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":553.17,"free":3060.07},{"epoch":26156855,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":552.82,"free":3060.43},{"epoch":26156856,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":552.8,"free":3060.45},{"epoch":26156857,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.76,"free":3060.48},{"epoch":26156858,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.74,"free":3060.5},{"epoch":26156859,"idl":99.65,"recv":0,"send":0,"writ":0.68,"used":553.09,"free":3060.13},{"epoch":26156860,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":552.74,"free":3060.49},{"epoch":26156861,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":552.71,"free":3060.51},{"epoch":26156862,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.69,"free":3060.53},{"epoch":26156863,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":552.67,"free":3060.54},{"epoch":26156864,"idl":96.56,"recv":0.02,"send":0.01,"writ":77.71,"used":566.08,"free":3048.08},{"epoch":26156865,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":555.39,"free":3058.03},{"epoch":26156866,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":555.35,"free":3058.06},{"epoch":26156867,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":555.32,"free":3058.09},{"epoch":26156868,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":555.3,"free":3058.11},{"epoch":26156869,"idl":99.8,"recv":0,"send":0,"writ":0.62,"used":554.24,"free":3059.2},{"epoch":26156870,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":552.35,"free":3061.12},{"epoch":26156871,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":552.32,"free":3061.15},{"epoch":26156872,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":552.3,"free":3061.16},{"epoch":26156873,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":552.29,"free":3061.17},{"epoch":26156874,"idl":99.77,"recv":0,"send":0,"writ":0.63,"used":553.09,"free":3060.38},{"epoch":26156875,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":552.54,"free":3060.95},{"epoch":26156876,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":552.47,"free":3061.02},{"epoch":26156877,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":552.46,"free":3061.03},{"epoch":26156878,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":552.42,"free":3061.06},{"epoch":26156879,"idl":99.76,"recv":0,"send":0,"writ":0.4,"used":552.77,"free":3060.7},{"epoch":26156880,"idl":99.83,"recv":0,"send":0,"writ":0.4,"used":552.83,"free":3060.66},{"epoch":26156881,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.82,"free":3060.67},{"epoch":26156882,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.8,"free":3060.69},{"epoch":26156883,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.78,"free":3060.7},{"epoch":26156884,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":553.15,"free":3060.32},{"epoch":26156885,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":553,"free":3060.5},{"epoch":26156886,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":552.98,"free":3060.51},{"epoch":26156887,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.95,"free":3060.54},{"epoch":26156888,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":552.92,"free":3060.56},{"epoch":26156889,"idl":99.63,"recv":0,"send":0,"writ":0.64,"used":553.38,"free":3060.08},{"epoch":26156890,"idl":99.86,"recv":0,"send":0,"writ":0.41,"used":552.57,"free":3060.9},{"epoch":26156891,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.55,"free":3060.92},{"epoch":26156892,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.51,"free":3060.95},{"epoch":26156893,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.47,"free":3060.99},{"epoch":26156894,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":552.44,"free":3061.03},{"epoch":26156895,"idl":99.68,"recv":0,"send":0,"writ":0.66,"used":552.78,"free":3060.72},{"epoch":26156896,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":552.07,"free":3061.42},{"epoch":26156897,"idl":99.94,"recv":0,"send":0,"writ":0.24,"used":552.04,"free":3061.44},{"epoch":26156898,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":552.02,"free":3061.47},{"epoch":26156899,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":551.99,"free":3061.5},{"epoch":26156900,"idl":99.69,"recv":0,"send":0,"writ":0.72,"used":553.52,"free":3059.98},{"epoch":26156901,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":552.94,"free":3060.55},{"epoch":26156902,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.91,"free":3060.58},{"epoch":26156903,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.69,"free":3060.8},{"epoch":26156904,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":552.79,"free":3060.7},{"epoch":26156905,"idl":99.72,"recv":0,"send":0,"writ":0.74,"used":553.48,"free":3060.02},{"epoch":26156906,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.75,"free":3060.76},{"epoch":26156907,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.73,"free":3060.77},{"epoch":26156908,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":552.7,"free":3060.79},{"epoch":26156909,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":552.69,"free":3060.8},{"epoch":26156910,"idl":99.7,"recv":0,"send":0,"writ":0.73,"used":553.3,"free":3060.2},{"epoch":26156911,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.95,"free":3060.55},{"epoch":26156912,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":552.92,"free":3060.58},{"epoch":26156913,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":552.91,"free":3060.58},{"epoch":26156914,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":552.91,"free":3060.58},{"epoch":26156915,"idl":99.75,"recv":0,"send":0,"writ":0.68,"used":553.13,"free":3060.38},{"epoch":26156916,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":553.17,"free":3060.34},{"epoch":26156917,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.16,"free":3060.34},{"epoch":26156918,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":553.13,"free":3060.37},{"epoch":26156919,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":552.89,"free":3060.58},{"epoch":26156920,"idl":99.74,"recv":0,"send":0,"writ":0.69,"used":553.13,"free":3060.35},{"epoch":26156921,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.17,"free":3060.31},{"epoch":26156922,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":553.31,"free":3060.17},{"epoch":26156923,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":553.29,"free":3060.18},{"epoch":26156924,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.27,"free":3060.22},{"epoch":26156925,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":553.6,"free":3059.91},{"epoch":26156926,"idl":99.94,"recv":0,"send":0,"writ":0.35,"used":553.03,"free":3060.46},{"epoch":26156927,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":553.03,"free":3060.46},{"epoch":26156928,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":553.03,"free":3060.46},{"epoch":26156929,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.02,"free":3060.46},{"epoch":26156930,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":553.02,"free":3060.48},{"epoch":26156931,"idl":99.77,"recv":0,"send":0,"writ":0.64,"used":552.75,"free":3060.75},{"epoch":26156932,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":552.26,"free":3061.23},{"epoch":26156933,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":552.25,"free":3061.23},{"epoch":26156934,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":552.25,"free":3061.23},{"epoch":26156935,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":552.8,"free":3060.7},{"epoch":26156936,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":553.49,"free":3060.01},{"epoch":26156937,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":553.23,"free":3060.26},{"epoch":26156938,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":553.2,"free":3060.28},{"epoch":26156939,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":553.2,"free":3060.28},{"epoch":26156940,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":553.25,"free":3060.25},{"epoch":26156941,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":553.57,"free":3059.92},{"epoch":26156942,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":553.18,"free":3060.31},{"epoch":26156943,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":553.17,"free":3060.31},{"epoch":26156944,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.17,"free":3060.31},{"epoch":26156945,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":553.18,"free":3060.31},{"epoch":26156946,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":553.52,"free":3059.96},{"epoch":26156947,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":553.17,"free":3060.31},{"epoch":26156948,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":553.15,"free":3060.33},{"epoch":26156949,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":553.14,"free":3060.32},{"epoch":26156950,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":553.15,"free":3060.32},{"epoch":26156951,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":553.4,"free":3060.07},{"epoch":26156952,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":552.9,"free":3060.57},{"epoch":26156953,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":552.89,"free":3060.57},{"epoch":26156954,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":552.87,"free":3060.6},{"epoch":26156955,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":553.36,"free":3060.13},{"epoch":26156956,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":553.86,"free":3059.63},{"epoch":26156957,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":553.12,"free":3060.37},{"epoch":26156958,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":553.2,"free":3060.28},{"epoch":26156959,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":553.28,"free":3060.2},{"epoch":26156960,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":552.8,"free":3060.69},{"epoch":26156961,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":553.29,"free":3060.19},{"epoch":26156962,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":553.52,"free":3059.96},{"epoch":26156963,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":553.51,"free":3059.96},{"epoch":26156964,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":553.51,"free":3059.96},{"epoch":26156965,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":553.25,"free":3060.24},{"epoch":26156966,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":552.26,"free":3061.23},{"epoch":26156967,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":552.84,"free":3060.64},{"epoch":26156968,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":552.5,"free":3060.98},{"epoch":26156969,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":552.49,"free":3060.98},{"epoch":26156970,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":552.51,"free":3060.98},{"epoch":26156971,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":552.51,"free":3060.98},{"epoch":26156972,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":552.64,"free":3060.84},{"epoch":26156973,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":552.22,"free":3061.26},{"epoch":26156974,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":552.22,"free":3061.26},{"epoch":26156975,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":551.99,"free":3061.5},{"epoch":26156976,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":551.98,"free":3061.5},{"epoch":26156977,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":552.32,"free":3061.16},{"epoch":26156978,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":551.96,"free":3061.52},{"epoch":26156979,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":552.18,"free":3061.28},{"epoch":26156980,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":552.67,"free":3060.8},{"epoch":26156981,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":552.68,"free":3060.79},{"epoch":26156982,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":552.88,"free":3060.58},{"epoch":26156983,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":552.42,"free":3061.04},{"epoch":26156984,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":552.42,"free":3061.05},{"epoch":26156985,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":552.65,"free":3060.84},{"epoch":26156986,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":552.65,"free":3060.84},{"epoch":26156987,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":553.47,"free":3060.01},{"epoch":26156988,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":552.88,"free":3060.59},{"epoch":26156989,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.86,"free":3060.61},{"epoch":26156990,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":552.39,"free":3061.1},{"epoch":26156991,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.37,"free":3061.11},{"epoch":26156992,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":553.15,"free":3060.33},{"epoch":26156993,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":552.36,"free":3061.11},{"epoch":26156994,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":552.38,"free":3061.09},{"epoch":26156995,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":552.47,"free":3061.02},{"epoch":26156996,"idl":99.87,"recv":0,"send":0,"writ":0.12,"used":552.56,"free":3060.93},{"epoch":26156997,"idl":98.28,"recv":0,"send":0,"writ":0.57,"used":553.16,"free":3060.32},{"epoch":26156998,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":552.53,"free":3060.95},{"epoch":26156999,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":552.51,"free":3060.96},{"epoch":26157000,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":551.34,"free":3062.15},{"epoch":26157001,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":551.29,"free":3062.19},{"epoch":26157002,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":551.29,"free":3062.19},{"epoch":26157003,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":552.67,"free":3060.8},{"epoch":26157004,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.25,"free":3061.22},{"epoch":26157005,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":552.02,"free":3061.47},{"epoch":26157006,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":552,"free":3061.48},{"epoch":26157007,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":552,"free":3061.48},{"epoch":26157008,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":552.9,"free":3060.58},{"epoch":26157009,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":552.49,"free":3060.96},{"epoch":26157010,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":552.95,"free":3060.52},{"epoch":26157011,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":552.96,"free":3060.5},{"epoch":26157012,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.96,"free":3060.5},{"epoch":26157013,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":553.11,"free":3060.34},{"epoch":26157014,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.7,"free":3060.76},{"epoch":26157015,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":552.7,"free":3060.79},{"epoch":26157016,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.69,"free":3060.8},{"epoch":26157017,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":552.92,"free":3060.55},{"epoch":26157018,"idl":99.73,"recv":0,"send":0,"writ":0.52,"used":552.86,"free":3060.61},{"epoch":26157019,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":551.69,"free":3061.78},{"epoch":26157020,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":551.95,"free":3061.54},{"epoch":26157021,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":551.95,"free":3061.54},{"epoch":26157022,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":551.93,"free":3061.55},{"epoch":26157023,"idl":99.72,"recv":0,"send":0,"writ":0.39,"used":552.36,"free":3061.11},{"epoch":26157024,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":552.15,"free":3061.32},{"epoch":26157025,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":552.89,"free":3060.59},{"epoch":26157026,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":552.9,"free":3060.58},{"epoch":26157027,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.9,"free":3060.58},{"epoch":26157028,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":553.22,"free":3060.26},{"epoch":26157029,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":552.98,"free":3060.49},{"epoch":26157030,"idl":99.73,"recv":0,"send":0,"writ":0.29,"used":552.82,"free":3060.67},{"epoch":26157031,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":552.81,"free":3060.67},{"epoch":26157032,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.8,"free":3060.68},{"epoch":26157033,"idl":99.7,"recv":0,"send":0,"writ":0.3,"used":553.07,"free":3060.4},{"epoch":26157034,"idl":99.84,"recv":0.04,"send":0.03,"writ":0.42,"used":551.95,"free":3061.51},{"epoch":26157035,"idl":99.74,"recv":0.05,"send":0.03,"writ":0.29,"used":552.96,"free":3060.52},{"epoch":26157036,"idl":99.84,"recv":0.04,"send":0.03,"writ":0.18,"used":552.94,"free":3060.53},{"epoch":26157037,"idl":99.84,"recv":0.05,"send":0.03,"writ":0.18,"used":552.96,"free":3060.51},{"epoch":26157038,"idl":99.66,"recv":0.04,"send":0.03,"writ":0.43,"used":553.3,"free":3060.17},{"epoch":26157039,"idl":99.78,"recv":0.06,"send":0.05,"writ":0.45,"used":552.69,"free":3060.75},{"epoch":26157040,"idl":99.44,"recv":0.03,"send":0.02,"writ":0.28,"used":552.96,"free":3060.49},{"epoch":26157041,"idl":99.82,"recv":0.02,"send":0.02,"writ":0.18,"used":553.01,"free":3060.44},{"epoch":26157042,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.15,"used":552.91,"free":3060.53},{"epoch":26157043,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":552.86,"free":3060.58},{"epoch":26157044,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":553.56,"free":3059.87},{"epoch":26157045,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":552.34,"free":3061.11},{"epoch":26157046,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.3,"free":3061.15},{"epoch":26157047,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":552.3,"free":3061.16},{"epoch":26157048,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":552.28,"free":3061.18},{"epoch":26157049,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":552.71,"free":3060.75},{"epoch":26157050,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":553,"free":3060.47},{"epoch":26157051,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.01,"free":3060.46},{"epoch":26157052,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":553.01,"free":3060.46},{"epoch":26157053,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":553.01,"free":3060.46},{"epoch":26157054,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":553.35,"free":3060.11},{"epoch":26157055,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":552.91,"free":3060.56},{"epoch":26157056,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":552.74,"free":3060.73},{"epoch":26157057,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":552.73,"free":3060.73},{"epoch":26157058,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":552.73,"free":3060.73},{"epoch":26157059,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":553.07,"free":3060.39},{"epoch":26157060,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":552.49,"free":3060.98},{"epoch":26157061,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":552.48,"free":3060.98},{"epoch":26157062,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.46,"free":3061},{"epoch":26157063,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":552.44,"free":3061.01},{"epoch":26157064,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":553.06,"free":3060.39},{"epoch":26157065,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":553.17,"free":3060.3},{"epoch":26157066,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":553.16,"free":3060.3},{"epoch":26157067,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":553.15,"free":3060.3},{"epoch":26157068,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":553.15,"free":3060.3},{"epoch":26157069,"idl":99.65,"recv":0,"send":0,"writ":0.64,"used":553.47,"free":3059.96},{"epoch":26157070,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":552.4,"free":3061.04},{"epoch":26157071,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.38,"free":3061.07},{"epoch":26157072,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":552.37,"free":3061.07},{"epoch":26157073,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":552.37,"free":3061.07},{"epoch":26157074,"idl":99.69,"recv":0,"send":0,"writ":0.34,"used":553.04,"free":3060.39},{"epoch":26157075,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":552.13,"free":3061.3},{"epoch":26157076,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":552.12,"free":3061.31},{"epoch":26157077,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":552.34,"free":3061.08},{"epoch":26157078,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":552.35,"free":3061.07},{"epoch":26157079,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.5,"free":3060.91},{"epoch":26157080,"idl":99.61,"recv":0,"send":0,"writ":0.7,"used":552.85,"free":3060.59},{"epoch":26157081,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":552.28,"free":3061.16},{"epoch":26157082,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":552.27,"free":3061.16},{"epoch":26157083,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.26,"free":3061.16},{"epoch":26157084,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":552.23,"free":3061.19},{"epoch":26157085,"idl":99.61,"recv":0,"send":0,"writ":0.69,"used":552.69,"free":3060.74},{"epoch":26157086,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.49,"free":3060.94},{"epoch":26157087,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.48,"free":3060.94},{"epoch":26157088,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":552.48,"free":3060.94},{"epoch":26157089,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":552.47,"free":3060.94},{"epoch":26157090,"idl":99.62,"recv":0,"send":0,"writ":0.67,"used":552.76,"free":3060.67},{"epoch":26157091,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":552.46,"free":3060.97},{"epoch":26157092,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":552.45,"free":3060.97},{"epoch":26157093,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.45,"free":3060.97},{"epoch":26157094,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.44,"free":3060.97},{"epoch":26157095,"idl":99.68,"recv":0,"send":0,"writ":0.6,"used":553.2,"free":3060.24},{"epoch":26157096,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":552.95,"free":3060.48},{"epoch":26157097,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.94,"free":3060.49},{"epoch":26157098,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":552.91,"free":3060.51},{"epoch":26157099,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":553.16,"free":3060.24},{"epoch":26157100,"idl":99.66,"recv":0,"send":0,"writ":0.65,"used":553.35,"free":3060.07},{"epoch":26157101,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":552.67,"free":3060.73},{"epoch":26157102,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.67,"free":3060.73},{"epoch":26157103,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":552.65,"free":3060.75},{"epoch":26157104,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.63,"free":3060.77},{"epoch":26157105,"idl":99.65,"recv":0,"send":0,"writ":0.71,"used":553.11,"free":3060.3},{"epoch":26157106,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":551.17,"free":3062.24},{"epoch":26157107,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":551.16,"free":3062.24},{"epoch":26157108,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":551.16,"free":3062.24},{"epoch":26157109,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":551.12,"free":3062.27},{"epoch":26157110,"idl":99.68,"recv":0,"send":0,"writ":0.43,"used":553.55,"free":3059.87},{"epoch":26157111,"idl":99.83,"recv":0,"send":0,"writ":0.45,"used":553.35,"free":3060.06},{"epoch":26157112,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":553.34,"free":3060.06},{"epoch":26157113,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":553.34,"free":3060.06},{"epoch":26157114,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":553.33,"free":3060.06},{"epoch":26157115,"idl":99.66,"recv":0,"send":0,"writ":0.48,"used":553.26,"free":3060.14},{"epoch":26157116,"idl":99.83,"recv":0,"send":0,"writ":0.38,"used":551.62,"free":3061.78},{"epoch":26157117,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":551.6,"free":3061.8},{"epoch":26157118,"idl":98.78,"recv":0,"send":0,"writ":0.15,"used":551.47,"free":3061.92},{"epoch":26157119,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":551.33,"free":3062.06},{"epoch":26157120,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":552.12,"free":3061.28},{"epoch":26157121,"idl":99.71,"recv":0,"send":0,"writ":0.63,"used":552.82,"free":3060.58},{"epoch":26157122,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":552.51,"free":3060.89},{"epoch":26157123,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":552.5,"free":3060.89},{"epoch":26157124,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":552.5,"free":3060.9},{"epoch":26157125,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":552.27,"free":3061.16},{"epoch":26157126,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":552.59,"free":3060.83},{"epoch":26157127,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":552.24,"free":3061.18},{"epoch":26157128,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":552.23,"free":3061.18},{"epoch":26157129,"idl":99.74,"recv":0,"send":0,"writ":0.36,"used":552.7,"free":3060.69},{"epoch":26157130,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":552.7,"free":3060.7},{"epoch":26157131,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":553.45,"free":3059.95},{"epoch":26157132,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":552.69,"free":3060.7},{"epoch":26157133,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":552.68,"free":3060.7},{"epoch":26157134,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":552.68,"free":3060.72},{"epoch":26157135,"idl":99.69,"recv":0.03,"send":0.97,"writ":0.39,"used":550.78,"free":3062.63},{"epoch":26157136,"idl":99.72,"recv":0,"send":0,"writ":0.51,"used":551.71,"free":3061.69},{"epoch":26157137,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":552.57,"free":3060.83},{"epoch":26157138,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":552.55,"free":3060.84},{"epoch":26157139,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":552.55,"free":3060.84},{"epoch":26157140,"idl":99.78,"recv":0.01,"send":0.04,"writ":0.36,"used":553.06,"free":3060.33},{"epoch":26157141,"idl":99.69,"recv":0.03,"send":0.91,"writ":0.67,"used":558.47,"free":3054.72},{"epoch":26157142,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":559.23,"free":3053.96},{"epoch":26157143,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":559.21,"free":3053.98},{"epoch":26157144,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":559.35,"free":3053.83},{"epoch":26157145,"idl":99.88,"recv":0.01,"send":0.09,"writ":0.34,"used":559.39,"free":3053.81},{"epoch":26157146,"idl":99.8,"recv":0,"send":0.01,"writ":0.62,"used":559.64,"free":3053.57},{"epoch":26157147,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":559.28,"free":3053.93},{"epoch":26157148,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":559.28,"free":3053.93},{"epoch":26157149,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":559.25,"free":3053.95},{"epoch":26157150,"idl":99.86,"recv":0.04,"send":1.57,"writ":0.29,"used":559.55,"free":3053.66},{"epoch":26157151,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":559.89,"free":3053.32},{"epoch":26157152,"idl":99.75,"recv":0.05,"send":2.01,"writ":0.79,"used":562.9,"free":3050.2},{"epoch":26157153,"idl":99.93,"recv":0,"send":0.01,"writ":0.18,"used":562.51,"free":3050.58},{"epoch":26157154,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":562.47,"free":3050.61},{"epoch":26157155,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":562.01,"free":3051.09},{"epoch":26157156,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":561.99,"free":3051.1},{"epoch":26157157,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":563.36,"free":3049.73},{"epoch":26157158,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":563.21,"free":3049.87},{"epoch":26157159,"idl":99.82,"recv":0.02,"send":0.72,"writ":0.43,"used":563.39,"free":3049.66},{"epoch":26157160,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":563.16,"free":3049.9},{"epoch":26157161,"idl":99.45,"recv":0,"send":0,"writ":0.15,"used":563.15,"free":3049.91},{"epoch":26157162,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":563.85,"free":3049.21},{"epoch":26157163,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":563.38,"free":3049.66},{"epoch":26157164,"idl":99.96,"recv":0,"send":0.01,"writ":0.17,"used":563.36,"free":3049.69},{"epoch":26157165,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":563.13,"free":3049.93},{"epoch":26157166,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":563.12,"free":3049.94},{"epoch":26157167,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":563.01,"free":3050.04},{"epoch":26157168,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":562.11,"free":3050.94},{"epoch":26157169,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":562.09,"free":3050.96},{"epoch":26157170,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":563.09,"free":3049.98},{"epoch":26157171,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":563.25,"free":3049.81},{"epoch":26157172,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":563.73,"free":3049.32},{"epoch":26157173,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":563.48,"free":3049.57},{"epoch":26157174,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":563.47,"free":3049.57},{"epoch":26157175,"idl":99.86,"recv":0.02,"send":0.68,"writ":0.3,"used":563.33,"free":3049.73},{"epoch":26157176,"idl":99.94,"recv":0,"send":0.01,"writ":0.22,"used":563.23,"free":3049.82},{"epoch":26157177,"idl":99.79,"recv":0.01,"send":0.29,"writ":0.59,"used":563.6,"free":3049.44},{"epoch":26157178,"idl":99.92,"recv":0,"send":0.09,"writ":0.16,"used":563.37,"free":3049.66},{"epoch":26157179,"idl":99.91,"recv":0,"send":0.01,"writ":0.2,"used":563.33,"free":3049.7},{"epoch":26157180,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":562.63,"free":3050.41},{"epoch":26157181,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":562.58,"free":3050.46},{"epoch":26157182,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":563.57,"free":3049.46},{"epoch":26157183,"idl":99.93,"recv":0.01,"send":0.09,"writ":0.16,"used":563.46,"free":3049.57},{"epoch":26157184,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":563.39,"free":3049.63},{"epoch":26157185,"idl":99.89,"recv":0,"send":0.01,"writ":0.3,"used":563.38,"free":3049.66},{"epoch":26157186,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":563.37,"free":3049.66},{"epoch":26157187,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":563.37,"free":3049.66},{"epoch":26157188,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":562.73,"free":3050.3},{"epoch":26157189,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":563.09,"free":3049.91},{"epoch":26157190,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":563.36,"free":3049.66},{"epoch":26157191,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":563.35,"free":3049.66},{"epoch":26157192,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":563.35,"free":3049.66},{"epoch":26157193,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":563.93,"free":3049.07},{"epoch":26157194,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":563.58,"free":3049.42},{"epoch":26157195,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":563.83,"free":3049.18},{"epoch":26157196,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":563.81,"free":3049.2},{"epoch":26157197,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":563.56,"free":3049.44},{"epoch":26157198,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":563.25,"free":3049.75},{"epoch":26157199,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":562.75,"free":3050.25},{"epoch":26157200,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":563.22,"free":3049.79},{"epoch":26157201,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":563.22,"free":3049.8},{"epoch":26157202,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":563.22,"free":3049.8},{"epoch":26157203,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":563.88,"free":3049.14},{"epoch":26157204,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":563.68,"free":3049.33},{"epoch":26157205,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":563.45,"free":3049.58},{"epoch":26157206,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":563.43,"free":3049.6},{"epoch":26157207,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":563.4,"free":3049.62},{"epoch":26157208,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":563.87,"free":3049.15},{"epoch":26157209,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":563.62,"free":3049.39},{"epoch":26157210,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":563.15,"free":3049.88},{"epoch":26157211,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":563.11,"free":3049.92},{"epoch":26157212,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":563.1,"free":3049.93},{"epoch":26157213,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":563.7,"free":3049.31},{"epoch":26157214,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":563.58,"free":3049.43},{"epoch":26157215,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":563.6,"free":3049.43},{"epoch":26157216,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":563.56,"free":3049.46},{"epoch":26157217,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":563.56,"free":3049.46},{"epoch":26157218,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":563.89,"free":3049.13},{"epoch":26157219,"idl":99.87,"recv":0.01,"send":0.08,"writ":0.48,"used":563.33,"free":3049.65},{"epoch":26157220,"idl":99.85,"recv":0,"send":0.01,"writ":0.34,"used":563.65,"free":3049.36},{"epoch":26157221,"idl":99.79,"recv":0,"send":0.01,"writ":0.17,"used":563.62,"free":3049.38},{"epoch":26157222,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":563.59,"free":3049.4},{"epoch":26157223,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":563.57,"free":3049.42},{"epoch":26157224,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":564.15,"free":3048.84},{"epoch":26157225,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":563.8,"free":3049.2},{"epoch":26157226,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":563.8,"free":3049.2},{"epoch":26157227,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":563.79,"free":3049.2},{"epoch":26157228,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":563.79,"free":3049.2},{"epoch":26157229,"idl":94.94,"recv":0.37,"send":0.01,"writ":258.66,"used":575.68,"free":3037.34},{"epoch":26157230,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":566.27,"free":3046.54},{"epoch":26157231,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":566.27,"free":3046.53},{"epoch":26157232,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":566.27,"free":3046.53},{"epoch":26157233,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":566.26,"free":3046.53},{"epoch":26157234,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":565.39,"free":3047.42},{"epoch":26157235,"idl":99.87,"recv":0,"send":0,"writ":0.41,"used":563.49,"free":3049.35},{"epoch":26157236,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":563.34,"free":3049.49},{"epoch":26157237,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":563.34,"free":3049.49},{"epoch":26157238,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":563.33,"free":3049.49},{"epoch":26157239,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":563.9,"free":3048.93},{"epoch":26157240,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":564.08,"free":3048.76},{"epoch":26157241,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":564.08,"free":3048.75},{"epoch":26157242,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":564.07,"free":3048.76},{"epoch":26157243,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":564.04,"free":3048.79},{"epoch":26157244,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":564.28,"free":3048.54},{"epoch":26157245,"idl":99.91,"recv":0,"send":0,"writ":0.34,"used":563.55,"free":3049.28},{"epoch":26157246,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":563.53,"free":3049.31},{"epoch":26157247,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":563.58,"free":3049.25},{"epoch":26157248,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":563.7,"free":3049.12},{"epoch":26157249,"idl":99.72,"recv":0,"send":0,"writ":0.67,"used":564.3,"free":3048.51},{"epoch":26157250,"idl":99.9,"recv":0,"send":0,"writ":0.43,"used":563.96,"free":3048.86},{"epoch":26157251,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":563.96,"free":3048.86},{"epoch":26157252,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":563.95,"free":3048.86},{"epoch":26157253,"idl":99.96,"recv":0,"send":0,"writ":0.13,"used":563.94,"free":3048.87},{"epoch":26157254,"idl":99.81,"recv":0,"send":0,"writ":0.41,"used":564.28,"free":3048.54},{"epoch":26157255,"idl":99.9,"recv":0,"send":0,"writ":0.42,"used":563.93,"free":3048.91},{"epoch":26157256,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":563.93,"free":3048.91},{"epoch":26157257,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":563.92,"free":3048.91},{"epoch":26157258,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":563.92,"free":3048.91},{"epoch":26157259,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":564.16,"free":3048.67},{"epoch":26157260,"idl":99.87,"recv":0,"send":0,"writ":0.41,"used":563.94,"free":3048.91},{"epoch":26157261,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":563.89,"free":3048.95},{"epoch":26157262,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":563.89,"free":3048.95},{"epoch":26157263,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":563.88,"free":3048.96},{"epoch":26157264,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":563.85,"free":3048.98},{"epoch":26157265,"idl":99.75,"recv":0,"send":0,"writ":0.71,"used":563.34,"free":3049.51},{"epoch":26157266,"idl":99.95,"recv":0.01,"send":0.14,"writ":0.16,"used":562.88,"free":3049.97},{"epoch":26157267,"idl":99.93,"recv":0.03,"send":0.98,"writ":0.39,"used":562.88,"free":3049.95},{"epoch":26157268,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":562.86,"free":3049.97},{"epoch":26157269,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":562.83,"free":3049.98},{"epoch":26157270,"idl":99.73,"recv":0,"send":0.01,"writ":0.77,"used":564.5,"free":3048.33},{"epoch":26157271,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":564.04,"free":3048.79},{"epoch":26157272,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":564.04,"free":3048.79},{"epoch":26157273,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":563.68,"free":3049.14},{"epoch":26157274,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":563.02,"free":3049.79},{"epoch":26157275,"idl":99.71,"recv":0,"send":0,"writ":0.7,"used":563.5,"free":3049.33},{"epoch":26157276,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":563.03,"free":3049.8},{"epoch":26157277,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":563.02,"free":3049.8},{"epoch":26157278,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":563.02,"free":3049.8},{"epoch":26157279,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":563.18,"free":3049.61},{"epoch":26157280,"idl":99.73,"recv":0,"send":0,"writ":0.67,"used":563.09,"free":3049.72},{"epoch":26157281,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":562.2,"free":3050.61},{"epoch":26157282,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":562.2,"free":3050.61},{"epoch":26157283,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":562.17,"free":3050.63},{"epoch":26157284,"idl":99.9,"recv":0,"send":0.08,"writ":0.2,"used":562.05,"free":3050.74},{"epoch":26157285,"idl":99.76,"recv":0,"send":0.01,"writ":0.67,"used":563.66,"free":3049.15},{"epoch":26157286,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":563.27,"free":3049.53},{"epoch":26157287,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":563.25,"free":3049.55},{"epoch":26157288,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":563.38,"free":3049.41},{"epoch":26157289,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":563.4,"free":3049.39},{"epoch":26157290,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":562.6,"free":3050.21},{"epoch":26157291,"idl":99.94,"recv":0,"send":0,"writ":0.34,"used":563.14,"free":3049.67},{"epoch":26157292,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":563.13,"free":3049.67},{"epoch":26157293,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":563.1,"free":3049.7},{"epoch":26157294,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":563.09,"free":3049.7},{"epoch":26157295,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":563.62,"free":3049.19},{"epoch":26157296,"idl":99.94,"recv":0,"send":0,"writ":0.28,"used":563.35,"free":3049.45},{"epoch":26157297,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":563.35,"free":3049.45},{"epoch":26157298,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":563.34,"free":3049.45},{"epoch":26157299,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":563.34,"free":3049.47},{"epoch":26157300,"idl":99.76,"recv":0,"send":0,"writ":0.47,"used":563.52,"free":3049.31},{"epoch":26157301,"idl":99.95,"recv":0,"send":0,"writ":0.38,"used":563.32,"free":3049.52},{"epoch":26157302,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":563.32,"free":3049.52},{"epoch":26157303,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":563.31,"free":3049.52},{"epoch":26157304,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":563.31,"free":3049.52},{"epoch":26157305,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":563.06,"free":3049.78},{"epoch":26157306,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":563.61,"free":3049.23},{"epoch":26157307,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":563.27,"free":3049.56},{"epoch":26157308,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":563.25,"free":3049.58},{"epoch":26157309,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":563.24,"free":3049.56},{"epoch":26157310,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":563.27,"free":3049.56},{"epoch":26157311,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":563.61,"free":3049.21},{"epoch":26157312,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":563.32,"free":3049.5},{"epoch":26157313,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":563.44,"free":3049.37},{"epoch":26157314,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":563.43,"free":3049.39},{"epoch":26157315,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":563.2,"free":3049.63},{"epoch":26157316,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":564.02,"free":3048.81},{"epoch":26157317,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":563.41,"free":3049.42},{"epoch":26157318,"idl":99.38,"recv":2.68,"send":0.04,"writ":2.2,"used":564.08,"free":3048.74},{"epoch":26157319,"idl":95.6,"recv":2.33,"send":0.16,"writ":87.41,"used":574.71,"free":3038.94},{"epoch":26157320,"idl":99.47,"recv":0.39,"send":2.12,"writ":1.55,"used":576.99,"free":3034.9},{"epoch":26157321,"idl":99.61,"recv":0.26,"send":8.45,"writ":1.37,"used":577.66,"free":3034.05},{"epoch":26157322,"idl":99.46,"recv":0.8,"send":36.01,"writ":0.81,"used":577.32,"free":3033.73},{"epoch":26157323,"idl":99.36,"recv":1.16,"send":53.83,"writ":1.08,"used":577.32,"free":3032.76},{"epoch":26157324,"idl":99.66,"recv":0.45,"send":20.21,"writ":0.75,"used":575.89,"free":3033.32},{"epoch":26157325,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":575.49,"free":3033.54},{"epoch":26157326,"idl":99.79,"recv":0,"send":0,"writ":0.49,"used":575.84,"free":3033.21},{"epoch":26157327,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":575.46,"free":3033.59},{"epoch":26157328,"idl":99.72,"recv":0.19,"send":0.93,"writ":0.31,"used":576.22,"free":3032.79},{"epoch":26157329,"idl":99.67,"recv":0.67,"send":15.11,"writ":0.29,"used":576.77,"free":3032.23},{"epoch":26157330,"idl":99.35,"recv":1.97,"send":62.84,"writ":0.58,"used":577.62,"free":3031.42},{"epoch":26157331,"idl":99.71,"recv":0.34,"send":5.24,"writ":0.83,"used":578.3,"free":3030.76},{"epoch":26157332,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.39,"used":578.64,"free":3030.44},{"epoch":26157333,"idl":99.92,"recv":0.03,"send":0.07,"writ":0.39,"used":578.58,"free":3030.51},{"epoch":26157334,"idl":99.9,"recv":0.04,"send":0.06,"writ":0.31,"used":578.66,"free":3030.45},{"epoch":26157335,"idl":99.87,"recv":0.02,"send":0.03,"writ":0.43,"used":578.62,"free":3030.53},{"epoch":26157336,"idl":99.75,"recv":0.05,"send":0.1,"writ":0.69,"used":579.41,"free":3029.82},{"epoch":26157337,"idl":99.92,"recv":0.03,"send":0.05,"writ":0.45,"used":578.51,"free":3030.74},{"epoch":26157338,"idl":99.94,"recv":0.02,"send":0.04,"writ":0.27,"used":578.53,"free":3030.73},{"epoch":26157339,"idl":99.75,"recv":0.1,"send":0.18,"writ":0.66,"used":576.66,"free":3032.52},{"epoch":26157340,"idl":99.82,"recv":0.06,"send":0.08,"writ":0.47,"used":577.85,"free":3031.33},{"epoch":26157341,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.24,"used":578.1,"free":3031.09},{"epoch":26157342,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.6,"used":577.91,"free":3031.28},{"epoch":26157343,"idl":99.95,"recv":0.01,"send":0.02,"writ":0.2,"used":577.63,"free":3031.56},{"epoch":26157344,"idl":99.8,"recv":1.78,"send":1.81,"writ":1.49,"used":577.65,"free":3030.75},{"epoch":26157345,"idl":99.78,"recv":2.11,"send":2.08,"writ":3.1,"used":577.65,"free":3029.87},{"epoch":26157346,"idl":99.89,"recv":0.28,"send":0.27,"writ":0.92,"used":578.25,"free":3031.63},{"epoch":26157347,"idl":99.59,"recv":3.88,"send":3.78,"writ":2.18,"used":578.51,"free":3033.71},{"epoch":26157348,"idl":78.78,"recv":0.05,"send":0.09,"writ":8.37,"used":839.19,"free":2795.23},{"epoch":26157349,"idl":99.9,"recv":0.03,"send":0.09,"writ":1.7,"used":1100,"free":2539.51},{"epoch":26157350,"idl":79.08,"recv":0.04,"send":0.86,"writ":4.88,"used":1019.74,"free":2619.7},{"epoch":26157351,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":918.65,"free":2720.71},{"epoch":26157352,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":625.52,"free":3013.82},{"epoch":26157353,"idl":99.93,"recv":0,"send":0.13,"writ":0.16,"used":625.67,"free":3013.67},{"epoch":26157354,"idl":99.89,"recv":0.01,"send":0.48,"writ":0.25,"used":625.61,"free":3013.73},{"epoch":26157355,"idl":99.82,"recv":0,"send":0,"writ":0.46,"used":624.07,"free":3015.31},{"epoch":26157356,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":622.8,"free":3016.6},{"epoch":26157357,"idl":99.72,"recv":0.01,"send":0.19,"writ":0.66,"used":623.3,"free":3016.1},{"epoch":26157358,"idl":99.92,"recv":0,"send":0.01,"writ":0.2,"used":623.02,"free":3016.38},{"epoch":26157359,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":622.99,"free":3016.4},{"epoch":26157360,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":623.15,"free":3016.26},{"epoch":26157361,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":623.15,"free":3016.25},{"epoch":26157362,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":623.61,"free":3015.79},{"epoch":26157363,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":622.62,"free":3016.77},{"epoch":26157364,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":622.64,"free":3016.75},{"epoch":26157365,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":622.85,"free":3016.55},{"epoch":26157366,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":622.82,"free":3016.58},{"epoch":26157367,"idl":99.79,"recv":0,"send":0,"writ":0.6,"used":623.84,"free":3015.55},{"epoch":26157368,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":623.16,"free":3016.23},{"epoch":26157369,"idl":99.86,"recv":0,"send":0,"writ":0.35,"used":623.02,"free":3016.35},{"epoch":26157370,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":622.76,"free":3016.62},{"epoch":26157371,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":622.87,"free":3016.5},{"epoch":26157372,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":623.44,"free":3015.93},{"epoch":26157373,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":623.38,"free":3015.99},{"epoch":26157374,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":623.35,"free":3016.01},{"epoch":26157375,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":623.6,"free":3015.78},{"epoch":26157376,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":623.58,"free":3015.8},{"epoch":26157377,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":623.33,"free":3016.04},{"epoch":26157378,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":624.11,"free":3015.25},{"epoch":26157379,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.16,"used":623.76,"free":3015.61},{"epoch":26157380,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":623.74,"free":3015.64},{"epoch":26157381,"idl":99.92,"recv":0,"send":0,"writ":0.23,"used":623.84,"free":3015.54},{"epoch":26157382,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":623.89,"free":3015.47},{"epoch":26157383,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":624.22,"free":3015.15},{"epoch":26157384,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":623.84,"free":3015.52},{"epoch":26157385,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":623.81,"free":3015.57},{"epoch":26157386,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":623.32,"free":3016.05},{"epoch":26157387,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":623.32,"free":3016.05},{"epoch":26157388,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":623.66,"free":3015.71},{"epoch":26157389,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":623.28,"free":3016.09},{"epoch":26157390,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":621.84,"free":3017.54},{"epoch":26157391,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":621.81,"free":3017.56},{"epoch":26157392,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":621.94,"free":3017.43},{"epoch":26157393,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":623.42,"free":3015.94},{"epoch":26157394,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":623.13,"free":3016.23},{"epoch":26157395,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":622.9,"free":3016.48},{"epoch":26157396,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":622.86,"free":3016.51},{"epoch":26157397,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":622.83,"free":3016.54},{"epoch":26157398,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":623.64,"free":3015.72},{"epoch":26157399,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":624.01,"free":3015.33},{"epoch":26157400,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":623.79,"free":3015.57},{"epoch":26157401,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":623.74,"free":3015.61},{"epoch":26157402,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":623.74,"free":3015.61},{"epoch":26157403,"idl":99.79,"recv":0,"send":0,"writ":0.51,"used":624.21,"free":3015.14},{"epoch":26157404,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":623.15,"free":3016.2},{"epoch":26157405,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":623.39,"free":3015.97},{"epoch":26157406,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":623.37,"free":3015.98},{"epoch":26157407,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":623.34,"free":3016.01},{"epoch":26157408,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":624.16,"free":3015.19},{"epoch":26157409,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":623.56,"free":3015.78},{"epoch":26157410,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":623.34,"free":3016.02},{"epoch":26157411,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":623.29,"free":3016.07},{"epoch":26157412,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":623.26,"free":3016.09},{"epoch":26157413,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":623.71,"free":3015.63},{"epoch":26157414,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":623.71,"free":3015.63},{"epoch":26157415,"idl":99.86,"recv":0,"send":0,"writ":0.47,"used":623.95,"free":3015.41},{"epoch":26157416,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":623.88,"free":3015.47},{"epoch":26157417,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":623.86,"free":3015.49},{"epoch":26157418,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":624.17,"free":3015.18},{"epoch":26157419,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":623.58,"free":3015.78},{"epoch":26157420,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":623.83,"free":3015.55},{"epoch":26157421,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":623.81,"free":3015.57},{"epoch":26157422,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":623.63,"free":3015.74},{"epoch":26157423,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":623.03,"free":3016.34},{"epoch":26157424,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":623.6,"free":3015.76},{"epoch":26157425,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":622.45,"free":3016.93},{"epoch":26157426,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":622.5,"free":3016.87},{"epoch":26157427,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":622.37,"free":3017},{"epoch":26157428,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":621.66,"free":3017.7},{"epoch":26157429,"idl":99.64,"recv":0,"send":0,"writ":0.71,"used":623.2,"free":3016.14},{"epoch":26157430,"idl":99.83,"recv":0.03,"send":0.96,"writ":0.34,"used":622.68,"free":3016.67},{"epoch":26157431,"idl":99.92,"recv":0.01,"send":0.86,"writ":0.26,"used":622.66,"free":3016.67},{"epoch":26157432,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":622.55,"free":3016.77},{"epoch":26157433,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":622.52,"free":3016.8},{"epoch":26157434,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":623.3,"free":3016.02},{"epoch":26157435,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":623.24,"free":3016.1},{"epoch":26157436,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":623.23,"free":3016.1},{"epoch":26157437,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":623.37,"free":3015.95},{"epoch":26157438,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":623.35,"free":3015.97},{"epoch":26157439,"idl":99.75,"recv":0.01,"send":0.01,"writ":0.49,"used":623.82,"free":3015.49},{"epoch":26157440,"idl":99.87,"recv":0,"send":0,"writ":0.38,"used":623.57,"free":3015.76},{"epoch":26157441,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":623.12,"free":3016.22},{"epoch":26157442,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":622.54,"free":3016.79},{"epoch":26157443,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":622.51,"free":3016.81},{"epoch":26157444,"idl":99.74,"recv":0,"send":0,"writ":0.74,"used":623.23,"free":3016.08},{"epoch":26157445,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":622.5,"free":3016.84},{"epoch":26157446,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":622.48,"free":3016.85},{"epoch":26157447,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":622.64,"free":3016.69},{"epoch":26157448,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":622.61,"free":3016.71},{"epoch":26157449,"idl":99.73,"recv":0,"send":0,"writ":0.48,"used":623.07,"free":3016.25},{"epoch":26157450,"idl":99.9,"recv":0,"send":0,"writ":0.51,"used":623.33,"free":3016},{"epoch":26157451,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":623.31,"free":3016.02},{"epoch":26157452,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":623.28,"free":3016.05},{"epoch":26157453,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":623.26,"free":3016.07},{"epoch":26157454,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":623.59,"free":3015.73},{"epoch":26157455,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":622.27,"free":3017.06},{"epoch":26157456,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":622.23,"free":3017.1},{"epoch":26157457,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":622.21,"free":3017.11},{"epoch":26157458,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":622.38,"free":3016.95},{"epoch":26157459,"idl":99.74,"recv":0,"send":0,"writ":0.46,"used":624.53,"free":3014.77},{"epoch":26157460,"idl":99.92,"recv":0,"send":0,"writ":0.53,"used":623.86,"free":3015.46},{"epoch":26157461,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":622.9,"free":3016.41},{"epoch":26157462,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":622.82,"free":3016.49},{"epoch":26157463,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":622.8,"free":3016.5},{"epoch":26157464,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":622.77,"free":3016.55},{"epoch":26157465,"idl":99.7,"recv":0,"send":0,"writ":0.71,"used":623.18,"free":3016.15},{"epoch":26157466,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":622.75,"free":3016.58},{"epoch":26157467,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":622.72,"free":3016.6},{"epoch":26157468,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":622.8,"free":3016.52},{"epoch":26157469,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":622.87,"free":3016.44},{"epoch":26157470,"idl":99.69,"recv":0,"send":0,"writ":0.82,"used":623.63,"free":3015.7},{"epoch":26157471,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":623.34,"free":3015.98},{"epoch":26157472,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":623.3,"free":3016.01},{"epoch":26157473,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":623.28,"free":3016.03},{"epoch":26157474,"idl":99.91,"recv":0,"send":0.01,"writ":0.18,"used":623.24,"free":3016.06},{"epoch":26157475,"idl":99.69,"recv":0,"send":0,"writ":0.78,"used":623.75,"free":3015.57},{"epoch":26157476,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":623.21,"free":3016.11},{"epoch":26157477,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":623.27,"free":3016.04},{"epoch":26157478,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":623.36,"free":3015.95},{"epoch":26157479,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":623.32,"free":3015.98},{"epoch":26157480,"idl":99.7,"recv":0,"send":0,"writ":0.78,"used":624.03,"free":3015.29},{"epoch":26157481,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":622.7,"free":3016.62},{"epoch":26157482,"idl":99.9,"recv":0.01,"send":0.1,"writ":0.15,"used":622.27,"free":3017.04},{"epoch":26157483,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":622.28,"free":3017.03},{"epoch":26157484,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":622.37,"free":3016.94},{"epoch":26157485,"idl":99.73,"recv":0,"send":0,"writ":0.73,"used":623.56,"free":3015.76},{"epoch":26157486,"idl":99.89,"recv":0,"send":0,"writ":0.21,"used":623.09,"free":3016.23},{"epoch":26157487,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":623.05,"free":3016.26},{"epoch":26157488,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":623.03,"free":3016.27},{"epoch":26157489,"idl":99.83,"recv":0.01,"send":0.08,"writ":0.32,"used":622.8,"free":3016.48},{"epoch":26157490,"idl":99.68,"recv":0.01,"send":0.01,"writ":0.59,"used":622.98,"free":3016.31},{"epoch":26157491,"idl":99.93,"recv":0,"send":0,"writ":0.33,"used":622.98,"free":3016.31},{"epoch":26157492,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":622.95,"free":3016.33},{"epoch":26157493,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":622.71,"free":3016.56},{"epoch":26157494,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":622.75,"free":3016.52},{"epoch":26157495,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":624.24,"free":3015.04},{"epoch":26157496,"idl":99.93,"recv":0,"send":0,"writ":0.27,"used":623.31,"free":3015.97},{"epoch":26157497,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":623.29,"free":3015.99},{"epoch":26157498,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":623.27,"free":3016},{"epoch":26157499,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.16,"used":623.25,"free":3016.03},{"epoch":26157500,"idl":99.74,"recv":0,"send":0,"writ":0.54,"used":623.6,"free":3015.69},{"epoch":26157501,"idl":99.93,"recv":0,"send":0,"writ":0.36,"used":623.25,"free":3016.03},{"epoch":26157502,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":622.46,"free":3016.82},{"epoch":26157503,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":622.44,"free":3016.84},{"epoch":26157504,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":622.48,"free":3016.8},{"epoch":26157505,"idl":99.75,"recv":0,"send":0,"writ":0.51,"used":623.46,"free":3015.83},{"epoch":26157506,"idl":99.89,"recv":0,"send":0,"writ":0.39,"used":623.57,"free":3015.71},{"epoch":26157507,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":623.54,"free":3015.74},{"epoch":26157508,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":623.53,"free":3015.74},{"epoch":26157509,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":623.5,"free":3015.77},{"epoch":26157510,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":623.52,"free":3015.76},{"epoch":26157511,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":624.03,"free":3015.25},{"epoch":26157512,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":623.71,"free":3015.56},{"epoch":26157513,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":623.68,"free":3015.59},{"epoch":26157514,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":623.67,"free":3015.6},{"epoch":26157515,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":623.43,"free":3015.86},{"epoch":26157516,"idl":99.82,"recv":0,"send":0,"writ":0.57,"used":624.15,"free":3015.13},{"epoch":26157517,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":623.85,"free":3015.42},{"epoch":26157518,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":623.84,"free":3015.43},{"epoch":26157519,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":624.3,"free":3014.94},{"epoch":26157520,"idl":99.84,"recv":0,"send":0,"writ":0.38,"used":624.3,"free":3014.96},{"epoch":26157521,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":624.85,"free":3014.4},{"epoch":26157522,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":623.94,"free":3015.31},{"epoch":26157523,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":623.73,"free":3015.51},{"epoch":26157524,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":623.72,"free":3015.52},{"epoch":26157525,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":623.53,"free":3015.73},{"epoch":26157526,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":623.72,"free":3015.53},{"epoch":26157527,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":623.18,"free":3016.07},{"epoch":26157528,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":623.27,"free":3015.97},{"epoch":26157529,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":623.33,"free":3015.91},{"epoch":26157530,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":623.56,"free":3015.7},{"epoch":26157531,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":623.92,"free":3015.33},{"epoch":26157532,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":623.76,"free":3015.49},{"epoch":26157533,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":623.73,"free":3015.51},{"epoch":26157534,"idl":99.85,"recv":0,"send":0.02,"writ":0.17,"used":623.71,"free":3015.53},{"epoch":26157535,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":624.08,"free":3015.18},{"epoch":26157536,"idl":99.75,"recv":0,"send":0,"writ":0.42,"used":624.19,"free":3015.07},{"epoch":26157537,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":623.58,"free":3015.68},{"epoch":26157538,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":623.56,"free":3015.69},{"epoch":26157539,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":623.54,"free":3015.71},{"epoch":26157540,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":623.78,"free":3015.49},{"epoch":26157541,"idl":99.75,"recv":0,"send":0,"writ":0.33,"used":624.11,"free":3015.15},{"epoch":26157542,"idl":99.82,"recv":0,"send":0,"writ":0.4,"used":623.95,"free":3015.31},{"epoch":26157543,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":623.2,"free":3016.05},{"epoch":26157544,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":623.2,"free":3016.05},{"epoch":26157545,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":622.95,"free":3016.32},{"epoch":26157546,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":622.94,"free":3016.33},{"epoch":26157547,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":624.55,"free":3014.73},{"epoch":26157548,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":624.07,"free":3015.2},{"epoch":26157549,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":623.79,"free":3015.46},{"epoch":26157550,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":623.79,"free":3015.47},{"epoch":26157551,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":623.76,"free":3015.5},{"epoch":26157552,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":624.34,"free":3014.92},{"epoch":26157553,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":623.97,"free":3015.28},{"epoch":26157554,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":623.96,"free":3015.3},{"epoch":26157555,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":624.2,"free":3015.08},{"epoch":26157556,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":624.19,"free":3015.09},{"epoch":26157557,"idl":99.64,"recv":0,"send":0,"writ":0.54,"used":624.52,"free":3014.75},{"epoch":26157558,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":624.14,"free":3015.13},{"epoch":26157559,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.14,"used":624.28,"free":3014.99},{"epoch":26157560,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":624.54,"free":3014.74},{"epoch":26157561,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.16,"used":624.49,"free":3014.79},{"epoch":26157562,"idl":99.72,"recv":0,"send":0,"writ":0.6,"used":624.86,"free":3014.41},{"epoch":26157563,"idl":99.84,"recv":0.01,"send":0.1,"writ":0.15,"used":623.86,"free":3015.4},{"epoch":26157564,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":623.74,"free":3015.51},{"epoch":26157565,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.37,"used":623.46,"free":3015.81},{"epoch":26157566,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":623.41,"free":3015.85},{"epoch":26157567,"idl":99.68,"recv":0,"send":0,"writ":0.43,"used":623.83,"free":3015.43},{"epoch":26157568,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":623.62,"free":3015.63},{"epoch":26157569,"idl":99.76,"recv":0,"send":0,"writ":0.14,"used":597.25,"free":3042},{"epoch":26157570,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":576.47,"free":3062.8},{"epoch":26157571,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":576.43,"free":3062.83},{"epoch":26157572,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":576.9,"free":3062.36},{"epoch":26157573,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":576.14,"free":3063.11},{"epoch":26157574,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":576.12,"free":3063.13},{"epoch":26157575,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":576.12,"free":3063.14},{"epoch":26157576,"idl":99.81,"recv":0.01,"send":0.08,"writ":0.22,"used":575.39,"free":3063.9},{"epoch":26157577,"idl":99.85,"recv":0,"send":0,"writ":0.24,"used":568.45,"free":3071.23},{"epoch":26157578,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":569.51,"free":3070.17},{"epoch":26157579,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":569.17,"free":3070.49},{"epoch":26157580,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":568.46,"free":3071.22},{"epoch":26157581,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":568.39,"free":3071.29},{"epoch":26157582,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":567.83,"free":3071.85},{"epoch":26157583,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":568.69,"free":3070.99},{"epoch":26157584,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":568.32,"free":3071.34},{"epoch":26157585,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":568.18,"free":3071.51},{"epoch":26157586,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":568.25,"free":3071.43},{"epoch":26157587,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":568.23,"free":3071.45},{"epoch":26157588,"idl":99.71,"recv":0,"send":0,"writ":0.65,"used":568.55,"free":3071.11},{"epoch":26157589,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":568.16,"free":3071.5},{"epoch":26157590,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":568.42,"free":3071.25},{"epoch":26157591,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":568.39,"free":3071.28},{"epoch":26157592,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":568.38,"free":3071.28},{"epoch":26157593,"idl":96.52,"recv":0.02,"send":0.01,"writ":77.92,"used":576.98,"free":3064.77},{"epoch":26157594,"idl":99.84,"recv":0,"send":0,"writ":0.25,"used":569.64,"free":3070.22},{"epoch":26157595,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":570.57,"free":3069.33},{"epoch":26157596,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.36,"free":3069.54},{"epoch":26157597,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":570.33,"free":3069.56},{"epoch":26157598,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":569.79,"free":3070.11},{"epoch":26157599,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":568.38,"free":3071.54},{"epoch":26157600,"idl":99.79,"recv":0,"send":0,"writ":0.36,"used":568.39,"free":3071.54},{"epoch":26157601,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":568.35,"free":3071.57},{"epoch":26157602,"idl":99.08,"recv":0,"send":0,"writ":0.17,"used":568.34,"free":3071.58},{"epoch":26157603,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":568.75,"free":3071.18},{"epoch":26157604,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":568.22,"free":3071.71},{"epoch":26157605,"idl":99.8,"recv":0,"send":0,"writ":0.36,"used":568.24,"free":3071.71},{"epoch":26157606,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":568.21,"free":3071.74},{"epoch":26157607,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":568.19,"free":3071.76},{"epoch":26157608,"idl":99.7,"recv":0,"send":0,"writ":0.63,"used":568.97,"free":3070.96},{"epoch":26157609,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":568.15,"free":3071.77},{"epoch":26157610,"idl":99.83,"recv":0,"send":0,"writ":0.35,"used":567.91,"free":3072.03},{"epoch":26157611,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":567.88,"free":3072.05},{"epoch":26157612,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":567.86,"free":3072.07},{"epoch":26157613,"idl":99.69,"recv":0,"send":0,"writ":0.43,"used":568.24,"free":3071.69},{"epoch":26157614,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":568.25,"free":3071.7},{"epoch":26157615,"idl":99.77,"recv":0,"send":0,"writ":0.35,"used":568.49,"free":3071.48},{"epoch":26157616,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":568.46,"free":3071.51},{"epoch":26157617,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":568.44,"free":3071.52},{"epoch":26157618,"idl":99.69,"recv":0,"send":0,"writ":0.43,"used":568.8,"free":3071.16},{"epoch":26157619,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.31,"used":568.64,"free":3071.31},{"epoch":26157620,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":568.16,"free":3071.81},{"epoch":26157621,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":568.12,"free":3071.85},{"epoch":26157622,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":568.11,"free":3071.85},{"epoch":26157623,"idl":99.85,"recv":0.01,"send":0.1,"writ":0.27,"used":568.22,"free":3071.74},{"epoch":26157624,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":568.75,"free":3071.2},{"epoch":26157625,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":568.4,"free":3071.56},{"epoch":26157626,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":568.37,"free":3071.59},{"epoch":26157627,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":568.35,"free":3071.61},{"epoch":26157628,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":568.33,"free":3071.62},{"epoch":26157629,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":568.48,"free":3071.46},{"epoch":26157630,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":568.33,"free":3071.63},{"epoch":26157631,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":568.23,"free":3071.73},{"epoch":26157632,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":568.21,"free":3071.74},{"epoch":26157633,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":568.19,"free":3071.76},{"epoch":26157634,"idl":99.73,"recv":0,"send":0,"writ":0.62,"used":568.8,"free":3071.14},{"epoch":26157635,"idl":99.77,"recv":0,"send":0,"writ":0.4,"used":568.42,"free":3071.54},{"epoch":26157636,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.16,"used":568.36,"free":3071.59},{"epoch":26157637,"idl":99.87,"recv":0,"send":0,"writ":0.24,"used":568.35,"free":3071.6},{"epoch":26157638,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":568.49,"free":3071.45},{"epoch":26157639,"idl":99.56,"recv":0,"send":0,"writ":0.73,"used":569.01,"free":3070.91},{"epoch":26157640,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":568.94,"free":3070.99},{"epoch":26157641,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":568.95,"free":3070.98},{"epoch":26157642,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":568.92,"free":3071},{"epoch":26157643,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":568.89,"free":3071.03},{"epoch":26157644,"idl":98.23,"recv":0,"send":0,"writ":0.45,"used":569.16,"free":3070.76},{"epoch":26157645,"idl":99.76,"recv":0,"send":0,"writ":0.47,"used":566.93,"free":3073},{"epoch":26157646,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":566.9,"free":3073.04},{"epoch":26157647,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":566.86,"free":3073.07},{"epoch":26157648,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":566.94,"free":3072.99},{"epoch":26157649,"idl":99.71,"recv":0,"send":0,"writ":0.4,"used":567.5,"free":3072.42},{"epoch":26157650,"idl":99.81,"recv":0,"send":0,"writ":0.45,"used":568.47,"free":3071.46},{"epoch":26157651,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":568.44,"free":3071.49},{"epoch":26157652,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":568.43,"free":3071.5},{"epoch":26157653,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":568.39,"free":3071.53},{"epoch":26157654,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":568.38,"free":3071.53},{"epoch":26157655,"idl":99.65,"recv":0,"send":0,"writ":0.74,"used":569.07,"free":3070.86},{"epoch":26157656,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":568.35,"free":3071.57},{"epoch":26157657,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":568.33,"free":3071.59},{"epoch":26157658,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":568.35,"free":3071.57},{"epoch":26157659,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":568.48,"free":3071.44},{"epoch":26157660,"idl":99.63,"recv":0,"send":0,"writ":0.7,"used":567.45,"free":3072.48},{"epoch":26157661,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":566.96,"free":3072.97},{"epoch":26157662,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":566.92,"free":3073},{"epoch":26157663,"idl":96.12,"recv":0,"send":0,"writ":0.16,"used":566.9,"free":3073.02},{"epoch":26157664,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":566.88,"free":3073.04},{"epoch":26157665,"idl":99.67,"recv":0,"send":0,"writ":0.73,"used":569.28,"free":3070.65},{"epoch":26157666,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":568.58,"free":3071.35},{"epoch":26157667,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":568.64,"free":3071.28},{"epoch":26157668,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":568.72,"free":3071.2},{"epoch":26157669,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":567.98,"free":3071.92},{"epoch":26157670,"idl":99.68,"recv":0,"send":0,"writ":0.67,"used":568.87,"free":3071.04},{"epoch":26157671,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":568.41,"free":3071.5},{"epoch":26157672,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":568.38,"free":3071.52},{"epoch":26157673,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":568.37,"free":3071.53},{"epoch":26157674,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":568.34,"free":3071.57},{"epoch":26157675,"idl":99.66,"recv":0,"send":0,"writ":0.75,"used":568.45,"free":3071.48},{"epoch":26157676,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":567.57,"free":3072.35},{"epoch":26157677,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":567.64,"free":3072.27},{"epoch":26157678,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":567.72,"free":3072.19},{"epoch":26157679,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.15,"used":567.69,"free":3072.21},{"epoch":26157680,"idl":99.68,"recv":0,"send":0,"writ":0.74,"used":569.22,"free":3070.7},{"epoch":26157681,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.17,"used":568.63,"free":3071.29},{"epoch":26157682,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":568.57,"free":3071.34},{"epoch":26157683,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":568.7,"free":3071.21},{"epoch":26157684,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":568.68,"free":3071.23},{"epoch":26157685,"idl":99.68,"recv":0,"send":0,"writ":0.59,"used":569.02,"free":3070.91},{"epoch":26157686,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":568.91,"free":3071.01},{"epoch":26157687,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":568.87,"free":3071.04},{"epoch":26157688,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":568.86,"free":3071.05},{"epoch":26157689,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":568.83,"free":3071.07},{"epoch":26157690,"idl":99.66,"recv":0,"send":0,"writ":0.75,"used":569.1,"free":3070.82},{"epoch":26157691,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":568.57,"free":3071.35},{"epoch":26157692,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":568.55,"free":3071.36},{"epoch":26157693,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":568.52,"free":3071.38},{"epoch":26157694,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":568.61,"free":3071.3},{"epoch":26157695,"idl":99.66,"recv":0,"send":0,"writ":0.48,"used":569.07,"free":3070.85},{"epoch":26157696,"idl":99.9,"recv":0,"send":0,"writ":0.4,"used":568.92,"free":3071},{"epoch":26157697,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":568.9,"free":3071.01},{"epoch":26157698,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":568.88,"free":3071.03},{"epoch":26157699,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":568.63,"free":3071.26},{"epoch":26157700,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":568.88,"free":3071.03},{"epoch":26157701,"idl":99.79,"recv":0,"send":0,"writ":0.6,"used":568.97,"free":3070.92},{"epoch":26157702,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":568.58,"free":3071.31},{"epoch":26157703,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":568.56,"free":3071.33},{"epoch":26157704,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":568.52,"free":3071.36},{"epoch":26157705,"idl":99.89,"recv":0,"send":0,"writ":0.38,"used":568.56,"free":3071.34},{"epoch":26157706,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":569.2,"free":3070.7},{"epoch":26157707,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":568.71,"free":3071.19},{"epoch":26157708,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":568.69,"free":3071.2},{"epoch":26157709,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":568.67,"free":3071.22},{"epoch":26157710,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":568.67,"free":3071.23},{"epoch":26157711,"idl":99.82,"recv":0,"send":0,"writ":0.57,"used":568.58,"free":3071.31},{"epoch":26157712,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":567.89,"free":3072},{"epoch":26157713,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":567.87,"free":3072.02},{"epoch":26157714,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":567.85,"free":3072.04},{"epoch":26157715,"idl":99.86,"recv":0,"send":0,"writ":0.42,"used":568.72,"free":3071.18},{"epoch":26157716,"idl":99.8,"recv":0,"send":0,"writ":0.48,"used":568.68,"free":3071.21},{"epoch":26157717,"idl":99.95,"recv":0,"send":0,"writ":0.26,"used":568.47,"free":3071.42},{"epoch":26157718,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":568.46,"free":3071.42},{"epoch":26157719,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":568.43,"free":3071.45},{"epoch":26157720,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":569.17,"free":3070.73},{"epoch":26157721,"idl":99.8,"recv":0,"send":0,"writ":0.61,"used":569.33,"free":3070.57},{"epoch":26157722,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":568.14,"free":3071.75},{"epoch":26157723,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":568.13,"free":3071.76},{"epoch":26157724,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":568.09,"free":3071.79},{"epoch":26157725,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":568.58,"free":3071.32},{"epoch":26157726,"idl":99.82,"recv":0,"send":0,"writ":0.56,"used":568.94,"free":3070.96},{"epoch":26157727,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":568.72,"free":3071.17},{"epoch":26157728,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":568.69,"free":3071.2},{"epoch":26157729,"idl":99.83,"recv":0,"send":0,"writ":0.32,"used":568.93,"free":3070.93},{"epoch":26157730,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":569.15,"free":3070.73},{"epoch":26157731,"idl":99.81,"recv":0,"send":0,"writ":0.51,"used":569.49,"free":3070.38},{"epoch":26157732,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":569.1,"free":3070.77},{"epoch":26157733,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":569.09,"free":3070.77},{"epoch":26157734,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":568.41,"free":3071.45},{"epoch":26157735,"idl":99.89,"recv":0,"send":0,"writ":0.35,"used":568.4,"free":3071.48},{"epoch":26157736,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":568.94,"free":3070.94},{"epoch":26157737,"idl":99.9,"recv":0,"send":0,"writ":0.44,"used":568.05,"free":3071.82},{"epoch":26157738,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.17,"used":568.08,"free":3071.79},{"epoch":26157739,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.16,"used":568.08,"free":3071.78},{"epoch":26157740,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":568.32,"free":3071.55},{"epoch":26157741,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":568.3,"free":3071.57},{"epoch":26157742,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":568,"free":3071.86},{"epoch":26157743,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":567.66,"free":3072.2},{"epoch":26157744,"idl":99.8,"recv":0.03,"send":0.12,"writ":0.18,"used":569.12,"free":3070.69},{"epoch":26157745,"idl":99.86,"recv":0.02,"send":0.02,"writ":0.46,"used":577.39,"free":3062.24},{"epoch":26157746,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.29,"used":577.72,"free":3061.86},{"epoch":26157747,"idl":99.77,"recv":0.01,"send":0,"writ":0.64,"used":578.71,"free":3060.85},{"epoch":26157748,"idl":99.9,"recv":0.01,"send":0.28,"writ":0.28,"used":578.66,"free":3060.89},{"epoch":26157749,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":578.39,"free":3061.14},{"epoch":26157750,"idl":99.87,"recv":0.01,"send":0,"writ":0.36,"used":578.65,"free":3060.9},{"epoch":26157751,"idl":99.93,"recv":0.03,"send":0.14,"writ":0.24,"used":578.95,"free":3060.6},{"epoch":26157752,"idl":99.81,"recv":0,"send":0.07,"writ":0.63,"used":579.09,"free":3060.44},{"epoch":26157753,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":578.71,"free":3060.82},{"epoch":26157754,"idl":99.89,"recv":0.03,"send":0,"writ":0.19,"used":578.67,"free":3060.85},{"epoch":26157755,"idl":99.89,"recv":0.02,"send":0,"writ":0.38,"used":578.67,"free":3060.87},{"epoch":26157756,"idl":99.91,"recv":0.04,"send":0,"writ":0.25,"used":578.69,"free":3060.85},{"epoch":26157757,"idl":99.79,"recv":0.04,"send":0.07,"writ":0.73,"used":578.69,"free":3060.84},{"epoch":26157758,"idl":99.93,"recv":0.02,"send":0.14,"writ":0.27,"used":577.43,"free":3062.1},{"epoch":26157759,"idl":99.81,"recv":0.01,"send":0.58,"writ":0.46,"used":578.67,"free":3060.78},{"epoch":26157760,"idl":99.81,"recv":0.01,"send":0.48,"writ":0.43,"used":578.44,"free":3061.02},{"epoch":26157761,"idl":99.91,"recv":0.01,"send":0.31,"writ":0.2,"used":578.39,"free":3061.05},{"epoch":26157762,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":578.86,"free":3060.58},{"epoch":26157763,"idl":99.9,"recv":0,"send":0.1,"writ":0.15,"used":578.37,"free":3061.07},{"epoch":26157764,"idl":99.87,"recv":0.01,"send":0.24,"writ":0.19,"used":578.37,"free":3061.07},{"epoch":26157765,"idl":99.38,"recv":0.01,"send":0.24,"writ":0.37,"used":578.4,"free":3061.06},{"epoch":26157766,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":578.33,"free":3061.12},{"epoch":26157767,"idl":99.82,"recv":0,"send":0,"writ":0.43,"used":578.86,"free":3060.59},{"epoch":26157768,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":578.66,"free":3060.78},{"epoch":26157769,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":578.62,"free":3060.82},{"epoch":26157770,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":578.62,"free":3060.84},{"epoch":26157771,"idl":99.91,"recv":0.01,"send":0.28,"writ":0.2,"used":578.62,"free":3060.83},{"epoch":26157772,"idl":99.8,"recv":0,"send":0,"writ":0.48,"used":578.82,"free":3060.61},{"epoch":26157773,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":577.63,"free":3061.8},{"epoch":26157774,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":577.56,"free":3061.86},{"epoch":26157775,"idl":99.88,"recv":0,"send":0,"writ":0.37,"used":578.01,"free":3061.43},{"epoch":26157776,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":577.96,"free":3061.47},{"epoch":26157777,"idl":99.95,"recv":0,"send":0.07,"writ":0.17,"used":577.92,"free":3061.51},{"epoch":26157778,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":577.96,"free":3061.46},{"epoch":26157779,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":577.58,"free":3061.85},{"epoch":26157780,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":577.35,"free":3062.08},{"epoch":26157781,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":577.46,"free":3061.97},{"epoch":26157782,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":577.41,"free":3062.02},{"epoch":26157783,"idl":99.76,"recv":0.01,"send":0.17,"writ":0.6,"used":578.54,"free":3060.88},{"epoch":26157784,"idl":99.68,"recv":0.01,"send":0.16,"writ":0.19,"used":578.42,"free":3061},{"epoch":26157785,"idl":99.9,"recv":0,"send":0.02,"writ":0.38,"used":578.61,"free":3060.82},{"epoch":26157786,"idl":99.91,"recv":0.02,"send":0.25,"writ":0.19,"used":578.58,"free":3060.84},{"epoch":26157787,"idl":99.93,"recv":0.01,"send":0.12,"writ":0.25,"used":578.57,"free":3060.84},{"epoch":26157788,"idl":99.66,"recv":0.03,"send":0.92,"writ":0.75,"used":579.43,"free":3059.97},{"epoch":26157789,"idl":99.76,"recv":0.02,"send":0.65,"writ":0.42,"used":579.09,"free":3060.28},{"epoch":26157790,"idl":99.89,"recv":0.01,"send":0,"writ":0.43,"used":578.86,"free":3060.52},{"epoch":26157791,"idl":99.66,"recv":0.03,"send":2.13,"writ":0.27,"used":578.86,"free":3060.49},{"epoch":26157792,"idl":99.74,"recv":0.03,"send":1.61,"writ":0.3,"used":578.76,"free":3060.56},{"epoch":26157793,"idl":99.73,"recv":0.01,"send":0.36,"writ":0.52,"used":579.29,"free":3060.01},{"epoch":26157794,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":579.01,"free":3060.29},{"epoch":26157795,"idl":99.75,"recv":0.02,"send":1,"writ":0.4,"used":578.72,"free":3060.58},{"epoch":26157796,"idl":99.93,"recv":0.01,"send":0,"writ":0.2,"used":578.74,"free":3060.55},{"epoch":26157797,"idl":99.78,"recv":0.02,"send":1.07,"writ":0.28,"used":578.74,"free":3060.53},{"epoch":26157798,"idl":99.7,"recv":0.02,"send":0.71,"writ":0.66,"used":579.51,"free":3059.75},{"epoch":26157799,"idl":99.61,"recv":0.06,"send":1.95,"writ":0.29,"used":579,"free":3060.24},{"epoch":26157800,"idl":99.86,"recv":0,"send":0,"writ":0.41,"used":578.92,"free":3060.3},{"epoch":26157801,"idl":99.54,"recv":0.05,"send":3.03,"writ":0.28,"used":579.07,"free":3060.11},{"epoch":26157802,"idl":99.93,"recv":0,"send":0,"writ":0.24,"used":579.18,"free":3059.98},{"epoch":26157803,"idl":99.79,"recv":0,"send":0,"writ":0.44,"used":579.36,"free":3059.79},{"epoch":26157804,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.32,"used":578.61,"free":3060.54},{"epoch":26157805,"idl":99.82,"recv":0.01,"send":0.36,"writ":0.34,"used":578.86,"free":3060.3},{"epoch":26157806,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":578.88,"free":3060.28},{"epoch":26157807,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":578.84,"free":3060.31},{"epoch":26157808,"idl":99.81,"recv":0,"send":0,"writ":0.52,"used":579.15,"free":3059.99},{"epoch":26157809,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":578.77,"free":3060.37},{"epoch":26157810,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":578.93,"free":3060.23},{"epoch":26157811,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.16,"used":578.89,"free":3060.27},{"epoch":26157812,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":578.78,"free":3060.36},{"epoch":26157813,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":579.12,"free":3060.02},{"epoch":26157814,"idl":99.94,"recv":0,"send":0,"writ":0.29,"used":578.91,"free":3060.22},{"epoch":26157815,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":579.13,"free":3060.02},{"epoch":26157816,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":579.1,"free":3060.05},{"epoch":26157817,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":579.05,"free":3060.09},{"epoch":26157818,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":579.02,"free":3060.12},{"epoch":26157819,"idl":99.75,"recv":0,"send":0,"writ":0.72,"used":579.11,"free":3059.99},{"epoch":26157820,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":578.92,"free":3060.2},{"epoch":26157821,"idl":99.9,"recv":0.01,"send":0.32,"writ":0.2,"used":578.38,"free":3060.73},{"epoch":26157822,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":578.25,"free":3060.85},{"epoch":26157823,"idl":99.88,"recv":0.03,"send":0.33,"writ":0.23,"used":578.33,"free":3060.77},{"epoch":26157824,"idl":99.77,"recv":0.02,"send":0.07,"writ":0.65,"used":578.63,"free":3060.48},{"epoch":26157825,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":578.52,"free":3060.6},{"epoch":26157826,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":578.49,"free":3060.63},{"epoch":26157827,"idl":99.93,"recv":0.02,"send":0,"writ":0.18,"used":578.62,"free":3060.5},{"epoch":26157828,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":578.58,"free":3060.53},{"epoch":26157829,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":579.09,"free":3060.02},{"epoch":26157830,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":578.54,"free":3060.59},{"epoch":26157831,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":578.49,"free":3060.63},{"epoch":26157832,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":578.51,"free":3060.6},{"epoch":26157833,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":578.63,"free":3060.48},{"epoch":26157834,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":579.3,"free":3059.8},{"epoch":26157835,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":579.17,"free":3059.96},{"epoch":26157836,"idl":99.93,"recv":0.02,"send":0,"writ":0.2,"used":578.95,"free":3060.17},{"epoch":26157837,"idl":99.94,"recv":0.03,"send":0,"writ":0.2,"used":578.95,"free":3060.17},{"epoch":26157838,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":578.84,"free":3060.27},{"epoch":26157839,"idl":99.82,"recv":0,"send":0,"writ":0.56,"used":579.2,"free":3059.9},{"epoch":26157840,"idl":99.81,"recv":0.02,"send":0.32,"writ":0.36,"used":578.63,"free":3060.49},{"epoch":26157841,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":578.59,"free":3060.52},{"epoch":26157842,"idl":99.88,"recv":0.02,"send":0.32,"writ":0.22,"used":578.49,"free":3060.61},{"epoch":26157843,"idl":99.88,"recv":0.02,"send":0.32,"writ":0.25,"used":578.52,"free":3060.57},{"epoch":26157844,"idl":99.79,"recv":0.04,"send":0,"writ":0.65,"used":578.93,"free":3060.15},{"epoch":26157845,"idl":99.8,"recv":0.02,"send":0.32,"writ":0.4,"used":578.31,"free":3060.79},{"epoch":26157846,"idl":99.91,"recv":0.04,"send":0,"writ":0.25,"used":578.25,"free":3060.84},{"epoch":26157847,"idl":99.84,"recv":0.04,"send":0.65,"writ":0.27,"used":578.28,"free":3060.79},{"epoch":26157848,"idl":99.9,"recv":0.02,"send":0.33,"writ":0.24,"used":578.32,"free":3060.75},{"epoch":26157849,"idl":99.76,"recv":0,"send":0,"writ":0.63,"used":579.66,"free":3059.38},{"epoch":26157850,"idl":99.8,"recv":0.04,"send":0.32,"writ":0.52,"used":578.75,"free":3060.31},{"epoch":26157851,"idl":99.81,"recv":0.03,"send":0.93,"writ":0.27,"used":578.77,"free":3060.26},{"epoch":26157852,"idl":99.88,"recv":0.01,"send":0.37,"writ":0.21,"used":578.81,"free":3060.21},{"epoch":26157853,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":578.76,"free":3060.25},{"epoch":26157854,"idl":99.77,"recv":0.02,"send":0.33,"writ":0.46,"used":579.22,"free":3059.79},{"epoch":26157855,"idl":99.87,"recv":0,"send":0,"writ":0.51,"used":578.78,"free":3060.23},{"epoch":26157856,"idl":99.91,"recv":0.02,"send":0.32,"writ":0.23,"used":578.69,"free":3060.32},{"epoch":26157857,"idl":99.88,"recv":0.02,"send":0.33,"writ":0.26,"used":578.74,"free":3060.26},{"epoch":26157858,"idl":99.86,"recv":0.03,"send":0.65,"writ":0.25,"used":578.67,"free":3060.32},{"epoch":26157859,"idl":99.88,"recv":0.03,"send":0.33,"writ":0.26,"used":578.67,"free":3060.31},{"epoch":26157860,"idl":99.75,"recv":0.01,"send":0.01,"writ":0.76,"used":579.27,"free":3059.71},{"epoch":26157861,"idl":99.88,"recv":0.02,"send":0.33,"writ":0.2,"used":578.95,"free":3060.02},{"epoch":26157862,"idl":99.86,"recv":0.02,"send":0.33,"writ":0.27,"used":578.88,"free":3060.08},{"epoch":26157863,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":578.89,"free":3060.06},{"epoch":26157864,"idl":99.93,"recv":0.05,"send":0.01,"writ":0.25,"used":578.87,"free":3060.07},{"epoch":26157865,"idl":99.65,"recv":0.03,"send":0.65,"writ":0.82,"used":579.27,"free":3059.68},{"epoch":26157866,"idl":99.88,"recv":0.02,"send":0.33,"writ":0.26,"used":578.96,"free":3059.98},{"epoch":26157867,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":578.93,"free":3060},{"epoch":26157868,"idl":99.88,"recv":0.02,"send":0.33,"writ":0.25,"used":578.87,"free":3060.06},{"epoch":26157869,"idl":99.85,"recv":0.01,"send":0.68,"writ":0.21,"used":578.86,"free":3060.05},{"epoch":26157870,"idl":99.75,"recv":0,"send":0,"writ":0.8,"used":579.44,"free":3059.49},{"epoch":26157871,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":578.88,"free":3060.04},{"epoch":26157872,"idl":99.9,"recv":0.01,"send":0.33,"writ":0.18,"used":578.85,"free":3060.06},{"epoch":26157873,"idl":99.87,"recv":0.01,"send":0.32,"writ":0.23,"used":578.83,"free":3060.06},{"epoch":26157874,"idl":99.86,"recv":0.03,"send":0.65,"writ":0.24,"used":578.83,"free":3060.06},{"epoch":26157875,"idl":99.57,"recv":0.02,"send":1.33,"writ":0.68,"used":579.17,"free":3059.71},{"epoch":26157876,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":578.81,"free":3060.05},{"epoch":26157877,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":578.77,"free":3060.08},{"epoch":26157878,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":578.74,"free":3060.11},{"epoch":26157879,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":579.21,"free":3059.62},{"epoch":26157880,"idl":99.75,"recv":0,"send":0,"writ":0.73,"used":579.49,"free":3059.35},{"epoch":26157881,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":579.09,"free":3059.75},{"epoch":26157882,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":579.05,"free":3059.78},{"epoch":26157883,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":579.02,"free":3059.81},{"epoch":26157884,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":578.96,"free":3059.88},{"epoch":26157885,"idl":99.69,"recv":0,"send":0,"writ":0.76,"used":579.28,"free":3059.58},{"epoch":26157886,"idl":99.89,"recv":0.01,"send":0.32,"writ":0.19,"used":579.18,"free":3059.67},{"epoch":26157887,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":578.98,"free":3059.86},{"epoch":26157888,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":578.95,"free":3059.89},{"epoch":26157889,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":578.6,"free":3060.24},{"epoch":26157890,"idl":99.74,"recv":0,"send":0,"writ":0.7,"used":578.83,"free":3060.02},{"epoch":26157891,"idl":99.94,"recv":0,"send":0,"writ":0.22,"used":578.32,"free":3060.53},{"epoch":26157892,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":578.28,"free":3060.56},{"epoch":26157893,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":578.24,"free":3060.6},{"epoch":26157894,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":578.19,"free":3060.64},{"epoch":26157895,"idl":99.68,"recv":0.01,"send":0.31,"writ":0.65,"used":578.71,"free":3060.14},{"epoch":26157896,"idl":99.83,"recv":0.01,"send":0.66,"writ":0.36,"used":578.04,"free":3060.79},{"epoch":26157897,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":578.02,"free":3060.8},{"epoch":26157898,"idl":99.84,"recv":0.03,"send":0.65,"writ":0.23,"used":578.04,"free":3060.77},{"epoch":26157899,"idl":99.83,"recv":0.04,"send":0.61,"writ":0.38,"used":578.21,"free":3060.6},{"epoch":26157900,"idl":99.1,"recv":0.01,"send":0.69,"writ":11.34,"used":578.22,"free":3060.81},{"epoch":26157901,"idl":99.85,"recv":0.02,"send":0.71,"writ":0.41,"used":578.59,"free":3060.49},{"epoch":26157902,"idl":99.83,"recv":0.04,"send":0.65,"writ":0.28,"used":578.59,"free":3060.47},{"epoch":26157903,"idl":99.87,"recv":0.02,"send":0.33,"writ":0.24,"used":578.57,"free":3060.48},{"epoch":26157904,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":578.55,"free":3060.49},{"epoch":26157905,"idl":99.9,"recv":0.03,"send":0,"writ":0.4,"used":578.06,"free":3061.01},{"epoch":26157906,"idl":99.79,"recv":0.02,"send":0,"writ":0.59,"used":578.83,"free":3060.24},{"epoch":26157907,"idl":99.92,"recv":0.02,"send":0,"writ":0.16,"used":578.58,"free":3060.49},{"epoch":26157908,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":578.52,"free":3060.54},{"epoch":26157909,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":578.49,"free":3060.55},{"epoch":26157910,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":577.99,"free":3061.07},{"epoch":26157911,"idl":99.8,"recv":0.02,"send":0,"writ":0.58,"used":578.93,"free":3060.12},{"epoch":26157912,"idl":99.9,"recv":0.02,"send":0,"writ":0.21,"used":578.83,"free":3060.21},{"epoch":26157913,"idl":99.93,"recv":0.03,"send":0,"writ":0.2,"used":578.74,"free":3060.3},{"epoch":26157914,"idl":99.8,"recv":0.05,"send":0.97,"writ":0.29,"used":578.77,"free":3060.26},{"epoch":26157915,"idl":99.82,"recv":0.01,"send":0.65,"writ":0.38,"used":578.78,"free":3060.25},{"epoch":26157916,"idl":99.72,"recv":0.01,"send":0.65,"writ":0.63,"used":578.83,"free":3060.18},{"epoch":26157917,"idl":99.81,"recv":0.02,"send":1,"writ":0.27,"used":578.26,"free":3060.73},{"epoch":26157918,"idl":99.8,"recv":0.02,"send":0.97,"writ":0.2,"used":578.22,"free":3060.75},{"epoch":26157919,"idl":99.82,"recv":0.03,"send":1.02,"writ":0.27,"used":578.16,"free":3060.79},{"epoch":26157920,"idl":99.85,"recv":0.01,"send":0.33,"writ":0.43,"used":578.17,"free":3060.78},{"epoch":26157921,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":579.09,"free":3059.85},{"epoch":26157922,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":578.66,"free":3060.28},{"epoch":26157923,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.16,"used":578.71,"free":3060.22},{"epoch":26157924,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.17,"used":578.68,"free":3060.25},{"epoch":26157925,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":578.66,"free":3060.29},{"epoch":26157926,"idl":99.8,"recv":0,"send":0,"writ":0.52,"used":579.17,"free":3059.77},{"epoch":26157927,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":578.76,"free":3060.18},{"epoch":26157928,"idl":99.8,"recv":0.03,"send":0.84,"writ":0.23,"used":578.45,"free":3060.47},{"epoch":26157929,"idl":99.85,"recv":0.02,"send":0.49,"writ":0.27,"used":578.35,"free":3060.56},{"epoch":26157930,"idl":99.76,"recv":0.01,"send":0.85,"writ":0.38,"used":578.43,"free":3060.49},{"epoch":26157931,"idl":99.72,"recv":0.01,"send":0.42,"writ":0.4,"used":578.79,"free":3060.11},{"epoch":26157932,"idl":99.77,"recv":0.03,"send":1.36,"writ":0.54,"used":578.86,"free":3060.02},{"epoch":26157933,"idl":99.77,"recv":0.02,"send":1.29,"writ":0.21,"used":578.88,"free":3059.98},{"epoch":26157934,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":578.9,"free":3059.95},{"epoch":26157935,"idl":99.83,"recv":0.01,"send":0.43,"writ":0.43,"used":578.64,"free":3060.23},{"epoch":26157936,"idl":99.81,"recv":0,"send":0,"writ":0.35,"used":579.02,"free":3059.84},{"epoch":26157937,"idl":99.91,"recv":0,"send":0,"writ":0.43,"used":578.86,"free":3060},{"epoch":26157938,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":578.82,"free":3060.04},{"epoch":26157939,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":578.3,"free":3060.53},{"epoch":26157940,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":578.05,"free":3060.8},{"epoch":26157941,"idl":99.87,"recv":0.01,"send":0.42,"writ":0.22,"used":578.14,"free":3060.7},{"epoch":26157942,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":579,"free":3059.83},{"epoch":26157943,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":578.88,"free":3059.95},{"epoch":26157944,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":578.87,"free":3059.97},{"epoch":26157945,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":579.11,"free":3059.75},{"epoch":26157946,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":579.06,"free":3059.79},{"epoch":26157947,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":579.55,"free":3059.3},{"epoch":26157948,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":578.75,"free":3060.09},{"epoch":26157949,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":578.76,"free":3060.08},{"epoch":26157950,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":579.14,"free":3059.72},{"epoch":26157951,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":579.1,"free":3059.75},{"epoch":26157952,"idl":99.79,"recv":0,"send":0,"writ":0.51,"used":579.45,"free":3059.4},{"epoch":26157953,"idl":99.43,"recv":0.05,"send":3.79,"writ":0.35,"used":578.6,"free":3060.21},{"epoch":26157954,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":578.54,"free":3060.24},{"epoch":26157955,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":578.96,"free":3059.84},{"epoch":26157956,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":578.8,"free":3059.99},{"epoch":26157957,"idl":95.28,"recv":0.35,"send":0.01,"writ":78.72,"used":587.7,"free":3051.63},{"epoch":26157958,"idl":99.89,"recv":0,"send":0,"writ":179.58,"used":581.29,"free":3057.21},{"epoch":26157959,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":581.27,"free":3057.23},{"epoch":26157960,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":580.78,"free":3057.73},{"epoch":26157961,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":580.72,"free":3057.78},{"epoch":26157962,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.59,"used":580.84,"free":3057.67},{"epoch":26157963,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":579.05,"free":3059.49},{"epoch":26157964,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":579.02,"free":3059.52},{"epoch":26157965,"idl":96.31,"recv":0,"send":0,"writ":0.29,"used":578.52,"free":3060.04},{"epoch":26157966,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":578.48,"free":3060.08},{"epoch":26157967,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":578.92,"free":3059.63},{"epoch":26157968,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":579.09,"free":3059.47},{"epoch":26157969,"idl":99.85,"recv":0,"send":0,"writ":0.26,"used":579.31,"free":3059.23},{"epoch":26157970,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":579.06,"free":3059.49},{"epoch":26157971,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":579.01,"free":3059.54},{"epoch":26157972,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":579.26,"free":3059.29},{"epoch":26157973,"idl":99.84,"recv":0,"send":0,"writ":0.57,"used":579.53,"free":3059.01},{"epoch":26157974,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":579.27,"free":3059.27},{"epoch":26157975,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":579.08,"free":3059.47},{"epoch":26157976,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":579.04,"free":3059.51},{"epoch":26157977,"idl":99.93,"recv":0,"send":0,"writ":0.24,"used":579,"free":3059.55},{"epoch":26157978,"idl":99.79,"recv":0,"send":0,"writ":0.61,"used":579.47,"free":3059.09},{"epoch":26157979,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.16,"used":578.95,"free":3059.6},{"epoch":26157980,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":578.96,"free":3059.61},{"epoch":26157981,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":579.07,"free":3059.49},{"epoch":26157982,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":579.03,"free":3059.53},{"epoch":26157983,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":579.35,"free":3059.2},{"epoch":26157984,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.17,"used":578.96,"free":3059.59},{"epoch":26157985,"idl":99.78,"recv":0,"send":0,"writ":0.35,"used":578.69,"free":3059.87},{"epoch":26157986,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":578.81,"free":3059.75},{"epoch":26157987,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":578.81,"free":3059.75},{"epoch":26157988,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":579.45,"free":3059.1},{"epoch":26157989,"idl":99.92,"recv":0,"send":0,"writ":0.23,"used":579.24,"free":3059.31},{"epoch":26157990,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":578.1,"free":3060.46},{"epoch":26157991,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":577.95,"free":3060.61},{"epoch":26157992,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":578.01,"free":3060.55},{"epoch":26157993,"idl":99.77,"recv":0,"send":0,"writ":0.48,"used":578.55,"free":3060.01},{"epoch":26157994,"idl":99.91,"recv":0,"send":0,"writ":0.36,"used":578.28,"free":3060.27},{"epoch":26157995,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":578.98,"free":3059.59},{"epoch":26157996,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":578.97,"free":3059.59},{"epoch":26157997,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":578.94,"free":3059.62},{"epoch":26157998,"idl":99.78,"recv":0,"send":0,"writ":0.63,"used":579.59,"free":3058.97},{"epoch":26157999,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":578.61,"free":3059.93},{"epoch":26158000,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":579.06,"free":3059.5},{"epoch":26158001,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":579.03,"free":3059.52},{"epoch":26158002,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":579,"free":3059.55},{"epoch":26158003,"idl":99.8,"recv":0,"send":0,"writ":0.61,"used":579.4,"free":3059.14},{"epoch":26158004,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":578.96,"free":3059.62},{"epoch":26158005,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":579.1,"free":3059.5},{"epoch":26158006,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":579.07,"free":3059.54},{"epoch":26158007,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":579.04,"free":3059.56},{"epoch":26158008,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":578.99,"free":3059.6},{"epoch":26158009,"idl":99.77,"recv":0,"send":0,"writ":0.61,"used":579.55,"free":3059.04},{"epoch":26158010,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":578.74,"free":3059.87},{"epoch":26158011,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":578.84,"free":3059.76},{"epoch":26158012,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":578.81,"free":3059.79},{"epoch":26158013,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":578.78,"free":3059.81},{"epoch":26158014,"idl":99.8,"recv":0,"send":0,"writ":0.61,"used":579.32,"free":3059.27},{"epoch":26158015,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":579.21,"free":3059.39},{"epoch":26158016,"idl":99.88,"recv":0,"send":0,"writ":0.23,"used":579.2,"free":3059.41},{"epoch":26158017,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":579.34,"free":3059.26},{"epoch":26158018,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":579.25,"free":3059.34},{"epoch":26158019,"idl":99.77,"recv":0,"send":0,"writ":0.61,"used":579.51,"free":3059.08},{"epoch":26158020,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":579.2,"free":3059.41},{"epoch":26158021,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":579.25,"free":3059.36},{"epoch":26158022,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":579.31,"free":3059.29},{"epoch":26158023,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":579.27,"free":3059.32},{"epoch":26158024,"idl":99.75,"recv":0,"send":0,"writ":0.61,"used":579.6,"free":3058.99},{"epoch":26158025,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":579.46,"free":3059.14},{"epoch":26158026,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":579.45,"free":3059.15},{"epoch":26158027,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":579.55,"free":3059.04},{"epoch":26158028,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":579.51,"free":3059.08},{"epoch":26158029,"idl":99.7,"recv":0,"send":0,"writ":0.64,"used":579.24,"free":3059.32},{"epoch":26158030,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":578.69,"free":3059.9},{"epoch":26158031,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":578.74,"free":3059.84},{"epoch":26158032,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":578.77,"free":3059.8},{"epoch":26158033,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":578.74,"free":3059.83},{"epoch":26158034,"idl":99.8,"recv":0,"send":0,"writ":0.61,"used":579.27,"free":3059.29},{"epoch":26158035,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":579.18,"free":3059.41},{"epoch":26158036,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":579.34,"free":3059.24},{"epoch":26158037,"idl":99.88,"recv":0,"send":0,"writ":0.24,"used":579.3,"free":3059.27},{"epoch":26158038,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":579.27,"free":3059.3},{"epoch":26158039,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.43,"used":579.58,"free":3058.98},{"epoch":26158040,"idl":99.84,"recv":0,"send":0,"writ":0.46,"used":578.81,"free":3059.77},{"epoch":26158041,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":578.72,"free":3059.86},{"epoch":26158042,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":578.84,"free":3059.74},{"epoch":26158043,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":578.33,"free":3060.24},{"epoch":26158044,"idl":99.77,"recv":0.01,"send":0.01,"writ":0.43,"used":578.45,"free":3060.11},{"epoch":26158045,"idl":99.86,"recv":0,"send":0,"writ":0.41,"used":578.5,"free":3060.08},{"epoch":26158046,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":578.47,"free":3060.1},{"epoch":26158047,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":578.44,"free":3060.13},{"epoch":26158048,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":578.49,"free":3060.07},{"epoch":26158049,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":578.57,"free":3059.99},{"epoch":26158050,"idl":99.65,"recv":0,"send":0,"writ":0.67,"used":578.81,"free":3059.77},{"epoch":26158051,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":578.29,"free":3060.29},{"epoch":26158052,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":578.25,"free":3060.32},{"epoch":26158053,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":578.22,"free":3060.35},{"epoch":26158054,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":578.18,"free":3060.38},{"epoch":26158055,"idl":99.73,"recv":0,"send":0,"writ":0.66,"used":578.98,"free":3059.6},{"epoch":26158056,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":578.57,"free":3060.01},{"epoch":26158057,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":578.53,"free":3060.04},{"epoch":26158058,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":578.5,"free":3060.07},{"epoch":26158059,"idl":99.74,"recv":0,"send":0,"writ":0.27,"used":578.22,"free":3060.32},{"epoch":26158060,"idl":99.76,"recv":0,"send":0.01,"writ":0.66,"used":578.95,"free":3059.61},{"epoch":26158061,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":578.83,"free":3059.72},{"epoch":26158062,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":578.79,"free":3059.75},{"epoch":26158063,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":578.76,"free":3059.78},{"epoch":26158064,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":578.74,"free":3059.82},{"epoch":26158065,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":578.96,"free":3059.61},{"epoch":26158066,"idl":99.92,"recv":0,"send":0,"writ":0.32,"used":578.43,"free":3060.13},{"epoch":26158067,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":578.45,"free":3060.12},{"epoch":26158068,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":578.56,"free":3060},{"epoch":26158069,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":578.52,"free":3060.03},{"epoch":26158070,"idl":99.72,"recv":0,"send":0,"writ":0.71,"used":579.02,"free":3059.55},{"epoch":26158071,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":578.5,"free":3060.07},{"epoch":26158072,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":578.47,"free":3060.1},{"epoch":26158073,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":578.43,"free":3060.13},{"epoch":26158074,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":578.4,"free":3060.15},{"epoch":26158075,"idl":99.69,"recv":0,"send":0,"writ":0.56,"used":579.18,"free":3059.39},{"epoch":26158076,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":578.33,"free":3060.23},{"epoch":26158077,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":578.28,"free":3060.28},{"epoch":26158078,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":578.24,"free":3060.31},{"epoch":26158079,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":578.21,"free":3060.35},{"epoch":26158080,"idl":99.62,"recv":0,"send":0,"writ":0.7,"used":579,"free":3059.56},{"epoch":26158081,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":578.66,"free":3059.9},{"epoch":26158082,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":578.83,"free":3059.72},{"epoch":26158083,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":578.8,"free":3059.75},{"epoch":26158084,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":578.77,"free":3059.78},{"epoch":26158085,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":578.77,"free":3059.8},{"epoch":26158086,"idl":99.64,"recv":0,"send":0,"writ":0.56,"used":579.16,"free":3059.4},{"epoch":26158087,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":578.7,"free":3059.86},{"epoch":26158088,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":578.7,"free":3059.85},{"epoch":26158089,"idl":99.81,"recv":0,"send":0,"writ":0.26,"used":578.83,"free":3059.7},{"epoch":26158090,"idl":99.76,"recv":0,"send":0,"writ":0.27,"used":578.81,"free":3059.74},{"epoch":26158091,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":579.32,"free":3059.23},{"epoch":26158092,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":578.99,"free":3059.56},{"epoch":26158093,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":578.95,"free":3059.59},{"epoch":26158094,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":578.94,"free":3059.61},{"epoch":26158095,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":578.74,"free":3059.83},{"epoch":26158096,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":579.18,"free":3059.38},{"epoch":26158097,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":578.79,"free":3059.77},{"epoch":26158098,"idl":99.84,"recv":0,"send":0.01,"writ":0.15,"used":578.76,"free":3059.8},{"epoch":26158099,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.16,"used":578.7,"free":3059.85},{"epoch":26158100,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":578.93,"free":3059.63},{"epoch":26158101,"idl":99.71,"recv":0,"send":0,"writ":0.48,"used":579.18,"free":3059.38},{"epoch":26158102,"idl":99.84,"recv":0,"send":0,"writ":0.22,"used":578.8,"free":3059.76},{"epoch":26158103,"idl":99.8,"recv":0,"send":0,"writ":0.14,"used":578.77,"free":3059.79},{"epoch":26158104,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.14,"used":578.73,"free":3059.82},{"epoch":26158105,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":578.48,"free":3060.08},{"epoch":26158106,"idl":99.65,"recv":0,"send":0,"writ":0.57,"used":578.9,"free":3059.66},{"epoch":26158107,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":578.83,"free":3059.73},{"epoch":26158108,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":578.79,"free":3059.76},{"epoch":26158109,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":578.76,"free":3059.79},{"epoch":26158110,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":578.26,"free":3060.3},{"epoch":26158111,"idl":99.68,"recv":0,"send":0,"writ":0.58,"used":578.75,"free":3059.81},{"epoch":26158112,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":578.92,"free":3059.63},{"epoch":26158113,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":579.06,"free":3059.49},{"epoch":26158114,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":579.02,"free":3059.52},{"epoch":26158115,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":579.02,"free":3059.54},{"epoch":26158116,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":579.33,"free":3059.23},{"epoch":26158117,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":578.94,"free":3059.61},{"epoch":26158118,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":578.94,"free":3059.6},{"epoch":26158119,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":579.01,"free":3059.51},{"epoch":26158120,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":578.98,"free":3059.56},{"epoch":26158121,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":578.92,"free":3059.61},{"epoch":26158122,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":579.33,"free":3059.2},{"epoch":26158123,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":578.75,"free":3059.77},{"epoch":26158124,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":578.68,"free":3059.85},{"epoch":26158125,"idl":96.93,"recv":0.02,"send":0.01,"writ":1.55,"used":582.67,"free":3057.13},{"epoch":26158126,"idl":99.79,"recv":0,"send":0,"writ":77.02,"used":580.47,"free":3057.58},{"epoch":26158127,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":581.51,"free":3056.54},{"epoch":26158128,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":581.2,"free":3056.85},{"epoch":26158129,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":581.22,"free":3056.82},{"epoch":26158130,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":580.43,"free":3057.64},{"epoch":26158131,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":579.06,"free":3059.03},{"epoch":26158132,"idl":99.7,"recv":0,"send":0,"writ":0.51,"used":579.46,"free":3058.62},{"epoch":26158133,"idl":99.82,"recv":0,"send":0,"writ":0.22,"used":579.09,"free":3058.98},{"epoch":26158134,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":579.02,"free":3059.05},{"epoch":26158135,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":579.1,"free":3058.99},{"epoch":26158136,"idl":99.79,"recv":0,"send":0,"writ":0.19,"used":578.86,"free":3059.22},{"epoch":26158137,"idl":99.7,"recv":0,"send":0,"writ":0.45,"used":579.27,"free":3058.81},{"epoch":26158138,"idl":99.85,"recv":0,"send":0,"writ":0.24,"used":579.13,"free":3058.95},{"epoch":26158139,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":579.06,"free":3059.01},{"epoch":26158140,"idl":99.74,"recv":0,"send":0,"writ":0.27,"used":577.33,"free":3060.76},{"epoch":26158141,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":577.44,"free":3060.64},{"epoch":26158142,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":578.25,"free":3059.83},{"epoch":26158143,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":578.58,"free":3059.5},{"epoch":26158144,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":578.54,"free":3059.53},{"epoch":26158145,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":578.11,"free":3059.97},{"epoch":26158146,"idl":99.61,"recv":0,"send":0,"writ":0.14,"used":578.15,"free":3059.93},{"epoch":26158147,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":578.71,"free":3059.37},{"epoch":26158148,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":579.02,"free":3059.05},{"epoch":26158149,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":579.17,"free":3058.91},{"epoch":26158150,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":577.52,"free":3060.58},{"epoch":26158151,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":577.36,"free":3060.73},{"epoch":26158152,"idl":99.7,"recv":0,"send":0,"writ":0.36,"used":577.81,"free":3060.28},{"epoch":26158153,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":579.03,"free":3059.05},{"epoch":26158154,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":579.13,"free":3058.95},{"epoch":26158155,"idl":99.74,"recv":0,"send":0,"writ":0.29,"used":579.34,"free":3058.76},{"epoch":26158156,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":579.29,"free":3058.81},{"epoch":26158157,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":579.11,"free":3058.98},{"epoch":26158158,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":579.63,"free":3058.45},{"epoch":26158159,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.15,"used":579.03,"free":3059.05},{"epoch":26158160,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":579.09,"free":3059.01},{"epoch":26158161,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":579.13,"free":3058.96},{"epoch":26158162,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":579.06,"free":3059.03},{"epoch":26158163,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":579.39,"free":3058.69},{"epoch":26158164,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.15,"used":579.08,"free":3058.99},{"epoch":26158165,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":579.28,"free":3058.81},{"epoch":26158166,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":579.28,"free":3058.81},{"epoch":26158167,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":579.38,"free":3058.7},{"epoch":26158168,"idl":99.71,"recv":0,"send":0,"writ":0.5,"used":579.54,"free":3058.54},{"epoch":26158169,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":579.03,"free":3059.05},{"epoch":26158170,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":579.1,"free":3058.99},{"epoch":26158171,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":579.14,"free":3058.94},{"epoch":26158172,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":579.1,"free":3058.98},{"epoch":26158173,"idl":99.69,"recv":0,"send":0,"writ":0.54,"used":579.41,"free":3058.66},{"epoch":26158174,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":579.02,"free":3059.05},{"epoch":26158175,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":579.3,"free":3058.79},{"epoch":26158176,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":579.41,"free":3058.68},{"epoch":26158177,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":579.38,"free":3058.7},{"epoch":26158178,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":579.69,"free":3058.39},{"epoch":26158179,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":579.3,"free":3058.75},{"epoch":26158180,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.28,"used":579.29,"free":3058.78},{"epoch":26158181,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":579.4,"free":3058.66},{"epoch":26158182,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":579.37,"free":3058.69},{"epoch":26158183,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":579.57,"free":3058.48},{"epoch":26158184,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":578.8,"free":3059.24},{"epoch":26158185,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":579.27,"free":3058.79},{"epoch":26158186,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":579.24,"free":3058.81},{"epoch":26158187,"idl":99.81,"recv":0,"send":0,"writ":0.13,"used":579.29,"free":3058.76},{"epoch":26158188,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":579.88,"free":3058.17},{"epoch":26158189,"idl":99.85,"recv":0,"send":0,"writ":0.38,"used":579.33,"free":3058.73},{"epoch":26158190,"idl":99.83,"recv":0,"send":0,"writ":0.26,"used":579.32,"free":3058.76},{"epoch":26158191,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":579.28,"free":3058.79},{"epoch":26158192,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":579.24,"free":3058.82},{"epoch":26158193,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":579.29,"free":3058.77},{"epoch":26158194,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":579.74,"free":3058.35},{"epoch":26158195,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":578.35,"free":3059.76},{"epoch":26158196,"idl":99.78,"recv":0,"send":0,"writ":0.2,"used":578.74,"free":3059.36},{"epoch":26158197,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":578.76,"free":3059.33},{"epoch":26158198,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":578.67,"free":3059.42},{"epoch":26158199,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":578.6,"free":3059.49},{"epoch":26158200,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":577.89,"free":3060.22},{"epoch":26158201,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":577.84,"free":3060.26},{"epoch":26158202,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":577.81,"free":3060.29},{"epoch":26158203,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":577.76,"free":3060.33},{"epoch":26158204,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":578.7,"free":3059.39},{"epoch":26158205,"idl":99.76,"recv":0,"send":0,"writ":0.28,"used":578.43,"free":3059.67},{"epoch":26158206,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":578.36,"free":3059.74},{"epoch":26158207,"idl":99.81,"recv":0,"send":0,"writ":0.16,"used":578.3,"free":3059.79},{"epoch":26158208,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":578.41,"free":3059.68},{"epoch":26158209,"idl":99.65,"recv":0,"send":0,"writ":0.7,"used":578.84,"free":3059.23},{"epoch":26158210,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":578.84,"free":3059.24},{"epoch":26158211,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":578.81,"free":3059.27},{"epoch":26158212,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":578.83,"free":3059.25},{"epoch":26158213,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":578.87,"free":3059.2},{"epoch":26158214,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":579.1,"free":3058.98},{"epoch":26158215,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":578.58,"free":3059.51},{"epoch":26158216,"idl":99.8,"recv":0,"send":0,"writ":0.17,"used":578.54,"free":3059.55},{"epoch":26158217,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":578.5,"free":3059.58},{"epoch":26158218,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":578.65,"free":3059.43},{"epoch":26158219,"idl":99.67,"recv":0.01,"send":0.01,"writ":0.49,"used":578.98,"free":3059.1},{"epoch":26158220,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":578.85,"free":3059.24},{"epoch":26158221,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":578.82,"free":3059.27},{"epoch":26158222,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":578.8,"free":3059.29},{"epoch":26158223,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":578.75,"free":3059.33},{"epoch":26158224,"idl":99.65,"recv":0.01,"send":0.01,"writ":0.32,"used":579.27,"free":3058.81},{"epoch":26158225,"idl":99.76,"recv":0,"send":0.01,"writ":0.52,"used":578.87,"free":3059.22},{"epoch":26158226,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":578.84,"free":3059.25},{"epoch":26158227,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":578.81,"free":3059.28},{"epoch":26158228,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":578.77,"free":3059.31},{"epoch":26158229,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":578.74,"free":3059.34},{"epoch":26158230,"idl":99.59,"recv":0,"send":0,"writ":0.71,"used":577.87,"free":3060.22},{"epoch":26158231,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":577.4,"free":3060.69},{"epoch":26158232,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":577.37,"free":3060.72},{"epoch":26158233,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":577.33,"free":3060.75},{"epoch":26158234,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":577.3,"free":3060.78},{"epoch":26158235,"idl":99.59,"recv":0,"send":0,"writ":0.74,"used":578.18,"free":3059.91},{"epoch":26158236,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":577.75,"free":3060.34},{"epoch":26158237,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":577.89,"free":3060.19},{"epoch":26158238,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":577.87,"free":3060.21},{"epoch":26158239,"idl":99.73,"recv":0,"send":0,"writ":0.34,"used":578.81,"free":3059.24},{"epoch":26158240,"idl":99.59,"recv":0,"send":0,"writ":0.71,"used":578.85,"free":3059.22},{"epoch":26158241,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":578.27,"free":3059.79},{"epoch":26158242,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":578.24,"free":3059.82},{"epoch":26158243,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":578.25,"free":3059.81},{"epoch":26158244,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":578.39,"free":3059.67},{"epoch":26158245,"idl":99.61,"recv":0,"send":0,"writ":0.63,"used":579.2,"free":3058.87},{"epoch":26158246,"idl":99.81,"recv":0.01,"send":0.03,"writ":0.22,"used":578.82,"free":3059.25},{"epoch":26158247,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":578.74,"free":3059.32},{"epoch":26158248,"idl":99.58,"recv":0,"send":0.02,"writ":0.16,"used":578.88,"free":3059.18},{"epoch":26158249,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":578.82,"free":3059.24},{"epoch":26158250,"idl":99.65,"recv":0,"send":0.02,"writ":0.68,"used":579.3,"free":3058.77},{"epoch":26158251,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":578.77,"free":3059.3},{"epoch":26158252,"idl":99.85,"recv":0,"send":0.02,"writ":0.15,"used":578.88,"free":3059.18},{"epoch":26158253,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":578.82,"free":3059.24},{"epoch":26158254,"idl":99.85,"recv":0,"send":0.02,"writ":0.15,"used":578.78,"free":3059.28},{"epoch":26158255,"idl":99.72,"recv":0,"send":0,"writ":0.71,"used":578.97,"free":3059.1},{"epoch":26158256,"idl":99.88,"recv":0,"send":0.02,"writ":0.18,"used":578.69,"free":3059.37},{"epoch":26158257,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":578.56,"free":3059.5},{"epoch":26158258,"idl":99.88,"recv":0,"send":0.02,"writ":0.17,"used":578.51,"free":3059.55},{"epoch":26158259,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":578.63,"free":3059.42},{"epoch":26158260,"idl":99.76,"recv":0,"send":0.02,"writ":0.43,"used":579.28,"free":3058.8},{"epoch":26158261,"idl":99.87,"recv":0,"send":0,"writ":0.41,"used":578.55,"free":3059.52},{"epoch":26158262,"idl":99.93,"recv":0,"send":0.02,"writ":0.14,"used":578.51,"free":3059.56},{"epoch":26158263,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":578.63,"free":3059.43},{"epoch":26158264,"idl":99.93,"recv":0,"send":0.02,"writ":0.15,"used":578.59,"free":3059.47},{"epoch":26158265,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":578.29,"free":3059.77},{"epoch":26158266,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.55,"used":578.85,"free":3059.22},{"epoch":26158267,"idl":99.02,"recv":0,"send":0,"writ":0.29,"used":579.41,"free":3058.64},{"epoch":26158268,"idl":99.93,"recv":0.01,"send":0.02,"writ":0.26,"used":579.01,"free":3059.04},{"epoch":26158269,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":579.07,"free":3058.96},{"epoch":26158270,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.31,"used":579.02,"free":3059.02},{"epoch":26158271,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":579.2,"free":3058.84},{"epoch":26158272,"idl":99.9,"recv":0.01,"send":0.02,"writ":0.14,"used":578.77,"free":3059.27},{"epoch":26158273,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":578.66,"free":3059.4},{"epoch":26158274,"idl":99.93,"recv":0.01,"send":0.02,"writ":0.17,"used":578.52,"free":3059.53},{"epoch":26158275,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":578.57,"free":3059.49},{"epoch":26158276,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.62,"used":579.04,"free":3059.01},{"epoch":26158277,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":578.83,"free":3059.22},{"epoch":26158278,"idl":99.93,"recv":0.01,"send":0.02,"writ":0.14,"used":578.76,"free":3059.29},{"epoch":26158279,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.18,"used":578.86,"free":3059.18},{"epoch":26158280,"idl":99.88,"recv":0.01,"send":0.02,"writ":0.29,"used":578.79,"free":3059.26},{"epoch":26158281,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":579.69,"free":3058.36},{"epoch":26158282,"idl":99.92,"recv":0.01,"send":0.02,"writ":0.16,"used":579.01,"free":3059.03},{"epoch":26158283,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":579.1,"free":3058.94},{"epoch":26158284,"idl":99.9,"recv":0.01,"send":0.03,"writ":0.16,"used":579.02,"free":3059.02},{"epoch":26158285,"idl":98.82,"recv":0,"send":0,"writ":15.5,"used":581.49,"free":3056.91},{"epoch":26158286,"idl":99.76,"recv":0.01,"send":0.02,"writ":0.52,"used":578.94,"free":3059.19},{"epoch":26158287,"idl":99.92,"recv":0,"send":0,"writ":0.24,"used":578.63,"free":3059.49},{"epoch":26158288,"idl":99.91,"recv":0.01,"send":0.02,"writ":0.17,"used":578.56,"free":3059.55},{"epoch":26158289,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":578.62,"free":3059.49},{"epoch":26158290,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.29,"used":579.06,"free":3059.07},{"epoch":26158291,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":579.43,"free":3058.7},{"epoch":26158292,"idl":99.91,"recv":0.01,"send":0.02,"writ":0.2,"used":578.8,"free":3059.32},{"epoch":26158293,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":578.85,"free":3059.26},{"epoch":26158294,"idl":99.91,"recv":0.01,"send":0.03,"writ":0.18,"used":578.83,"free":3059.28},{"epoch":26158295,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":579.11,"free":3059.02},{"epoch":26158296,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.43,"used":579.48,"free":3058.65},{"epoch":26158297,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":579.35,"free":3058.77},{"epoch":26158298,"idl":99.92,"recv":0.01,"send":0.02,"writ":0.14,"used":579.34,"free":3058.78},{"epoch":26158299,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":579.03,"free":3059.06},{"epoch":26158300,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.29,"used":579.12,"free":3058.99},{"epoch":26158301,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":579.05,"free":3059.06},{"epoch":26158302,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.56,"used":578.72,"free":3059.38},{"epoch":26158303,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":578.27,"free":3059.82},{"epoch":26158304,"idl":99.9,"recv":0.01,"send":0.02,"writ":0.14,"used":578.38,"free":3059.71},{"epoch":26158305,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":578.78,"free":3059.33},{"epoch":26158306,"idl":99.91,"recv":0.01,"send":0.02,"writ":0.16,"used":578.83,"free":3059.27},{"epoch":26158307,"idl":99.79,"recv":0,"send":0,"writ":0.62,"used":579.5,"free":3058.6},{"epoch":26158308,"idl":99.93,"recv":0.01,"send":0.02,"writ":0.18,"used":578.81,"free":3059.28},{"epoch":26158309,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":578.82,"free":3059.26},{"epoch":26158310,"idl":99.9,"recv":0.01,"send":0.02,"writ":0.41,"used":579.03,"free":3059.07},{"epoch":26158311,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":579.09,"free":3059},{"epoch":26158312,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.58,"used":579.6,"free":3058.48},{"epoch":26158313,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":579.09,"free":3059},{"epoch":26158314,"idl":99.9,"recv":0.01,"send":0.02,"writ":0.2,"used":579.01,"free":3059.07},{"epoch":26158315,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":579.33,"free":3058.77},{"epoch":26158316,"idl":99.9,"recv":0.01,"send":0.02,"writ":0.19,"used":579.07,"free":3059.03},{"epoch":26158317,"idl":99.8,"recv":0,"send":0,"writ":0.48,"used":579.46,"free":3058.62},{"epoch":26158318,"idl":99.93,"recv":0.01,"send":0.02,"writ":0.32,"used":579.02,"free":3059.06},{"epoch":26158319,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":579.09,"free":3058.98},{"epoch":26158320,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.31,"used":578.31,"free":3059.77},{"epoch":26158321,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":578.37,"free":3059.71},{"epoch":26158322,"idl":96.28,"recv":0.04,"send":0.03,"writ":77.56,"used":588.08,"free":3051.87},{"epoch":26158323,"idl":99.9,"recv":0,"send":0,"writ":63.96,"used":581.7,"free":3056.62},{"epoch":26158324,"idl":99.91,"recv":0.01,"send":0.02,"writ":0.19,"used":581.72,"free":3056.59},{"epoch":26158325,"idl":99.86,"recv":0,"send":0.01,"writ":0.36,"used":581.73,"free":3056.6},{"epoch":26158326,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":581.71,"free":3056.62},{"epoch":26158327,"idl":99.8,"recv":0.01,"send":0.02,"writ":0.44,"used":581.21,"free":3057.12},{"epoch":26158328,"idl":99.93,"recv":0,"send":0,"writ":0.37,"used":579.01,"free":3059.34},{"epoch":26158329,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.3,"used":579.1,"free":3059.24},{"epoch":26158330,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":579.32,"free":3059.04},{"epoch":26158331,"idl":99.93,"recv":0.01,"send":0.02,"writ":0.2,"used":579.33,"free":3059.03},{"epoch":26158332,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":579.73,"free":3058.63},{"epoch":26158333,"idl":99.92,"recv":0.01,"send":0.02,"writ":0.28,"used":579.32,"free":3059.03},{"epoch":26158334,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":579.25,"free":3059.1},{"epoch":26158335,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.31,"used":579.32,"free":3059.04},{"epoch":26158336,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":579.25,"free":3059.11},{"epoch":26158337,"idl":99.92,"recv":0.01,"send":0.02,"writ":0.23,"used":579.36,"free":3059},{"epoch":26158338,"idl":99.76,"recv":0,"send":0,"writ":0.6,"used":578.66,"free":3059.69},{"epoch":26158339,"idl":99.91,"recv":0.01,"send":0.03,"writ":0.21,"used":578.36,"free":3059.98},{"epoch":26158340,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":579.04,"free":3059.32},{"epoch":26158341,"idl":99.93,"recv":0.01,"send":0.02,"writ":0.23,"used":579.36,"free":3058.99},{"epoch":26158342,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":579.33,"free":3059.02},{"epoch":26158343,"idl":99.76,"recv":0.01,"send":0.02,"writ":0.59,"used":579.86,"free":3058.49},{"epoch":26158344,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.17,"used":579.56,"free":3058.77},{"epoch":26158345,"idl":99.89,"recv":0.01,"send":0.02,"writ":0.35,"used":579.56,"free":3058.8},{"epoch":26158346,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":579.55,"free":3058.8},{"epoch":26158347,"idl":99.92,"recv":0.01,"send":0.02,"writ":0.18,"used":579.54,"free":3058.8},{"epoch":26158348,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":579.72,"free":3058.62},{"epoch":26158349,"idl":99.94,"recv":0.01,"send":0.02,"writ":0.18,"used":579.24,"free":3059.1},{"epoch":26158350,"idl":99.89,"recv":0,"send":0,"writ":0.39,"used":578.73,"free":3059.63},{"epoch":26158351,"idl":99.92,"recv":0.01,"send":0.02,"writ":0.2,"used":578.52,"free":3059.84},{"epoch":26158352,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":578.62,"free":3059.74},{"epoch":26158353,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.62,"used":579.07,"free":3059.28},{"epoch":26158354,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":578.36,"free":3059.98},{"epoch":26158355,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.32,"used":578.77,"free":3059.59},{"epoch":26158356,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":578.86,"free":3059.5},{"epoch":26158357,"idl":99.91,"recv":0.01,"send":0.02,"writ":0.21,"used":578.77,"free":3059.58},{"epoch":26158358,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":579.31,"free":3059.04},{"epoch":26158359,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.31,"used":578.28,"free":3060.04},{"epoch":26158360,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":578.6,"free":3059.74},{"epoch":26158361,"idl":99.92,"recv":0.01,"send":0.02,"writ":0.18,"used":578.52,"free":3059.82},{"epoch":26158362,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":578.59,"free":3059.74},{"epoch":26158363,"idl":99.79,"recv":0.01,"send":0.02,"writ":0.59,"used":579.02,"free":3059.31},{"epoch":26158364,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":578.57,"free":3059.78},{"epoch":26158365,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.33,"used":577.56,"free":3060.81},{"epoch":26158366,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":577.61,"free":3060.76},{"epoch":26158367,"idl":99.93,"recv":0.01,"send":0.02,"writ":0.17,"used":577.57,"free":3060.8},{"epoch":26158368,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":578.02,"free":3060.35},{"epoch":26158369,"idl":99.91,"recv":0.01,"send":0.02,"writ":0.18,"used":577.57,"free":3060.79},{"epoch":26158370,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":577.59,"free":3060.79},{"epoch":26158371,"idl":99.93,"recv":0.01,"send":0.02,"writ":0.18,"used":577.59,"free":3060.79},{"epoch":26158372,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":577.55,"free":3060.82},{"epoch":26158373,"idl":99.93,"recv":0.01,"send":0.02,"writ":0.22,"used":577.58,"free":3060.78},{"epoch":26158374,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":577.67,"free":3060.69},{"epoch":26158375,"idl":99.87,"recv":0.01,"send":0.02,"writ":0.35,"used":577.33,"free":3061.04},{"epoch":26158376,"idl":99.9,"recv":0,"send":0,"writ":0.22,"used":577.68,"free":3060.68},{"epoch":26158377,"idl":99.93,"recv":0,"send":0.02,"writ":0.18,"used":577.83,"free":3060.52},{"epoch":26158378,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":577.78,"free":3060.57},{"epoch":26158379,"idl":99.8,"recv":0,"send":0.02,"writ":0.58,"used":578.8,"free":3059.55},{"epoch":26158380,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":576.74,"free":3061.62},{"epoch":26158381,"idl":99.93,"recv":0,"send":0.02,"writ":0.2,"used":576.58,"free":3061.78},{"epoch":26158382,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":576.54,"free":3061.81},{"epoch":26158383,"idl":99.91,"recv":0,"send":0.02,"writ":0.18,"used":576.52,"free":3061.83},{"epoch":26158384,"idl":99.77,"recv":0,"send":0,"writ":0.61,"used":578.36,"free":3059.99},{"epoch":26158385,"idl":99.87,"recv":0,"send":0.02,"writ":0.34,"used":578.81,"free":3059.55},{"epoch":26158386,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":578.79,"free":3059.57},{"epoch":26158387,"idl":99.94,"recv":0,"send":0.02,"writ":0.21,"used":578.8,"free":3059.56},{"epoch":26158388,"idl":99.91,"recv":0,"send":0,"writ":0.22,"used":578.87,"free":3059.48},{"epoch":26158389,"idl":99.71,"recv":0,"send":0.02,"writ":0.74,"used":579.14,"free":3059.19},{"epoch":26158390,"idl":99.84,"recv":0,"send":0,"writ":0.41,"used":579.02,"free":3059.32},{"epoch":26158391,"idl":99.93,"recv":0,"send":0.02,"writ":0.21,"used":579.04,"free":3059.29},{"epoch":26158392,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":579.09,"free":3059.24},{"epoch":26158393,"idl":99.94,"recv":0,"send":0.02,"writ":0.21,"used":579.03,"free":3059.29},{"epoch":26158394,"idl":99.8,"recv":0,"send":0,"writ":0.44,"used":579.58,"free":3058.76},{"epoch":26158395,"idl":99.87,"recv":0,"send":0.02,"writ":0.46,"used":578.84,"free":3059.51},{"epoch":26158396,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":578.84,"free":3059.51},{"epoch":26158397,"idl":99.93,"recv":0,"send":0.02,"writ":0.24,"used":578.78,"free":3059.57},{"epoch":26158398,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":578.73,"free":3059.61},{"epoch":26158399,"idl":99.82,"recv":0.01,"send":0.03,"writ":0.57,"used":579.1,"free":3059.24},{"epoch":26158400,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":579.07,"free":3059.29},{"epoch":26158401,"idl":99.9,"recv":0,"send":0.02,"writ":0.22,"used":579.01,"free":3059.34},{"epoch":26158402,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":578.97,"free":3059.38},{"epoch":26158403,"idl":99.94,"recv":0,"send":0.02,"writ":0.16,"used":579.04,"free":3059.3},{"epoch":26158404,"idl":99.81,"recv":0.01,"send":0.01,"writ":0.4,"used":579.4,"free":3058.94},{"epoch":26158405,"idl":99.89,"recv":0,"send":0.02,"writ":0.44,"used":578.52,"free":3059.83},{"epoch":26158406,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":578.46,"free":3059.89},{"epoch":26158407,"idl":99.9,"recv":0,"send":0.02,"writ":0.15,"used":578.56,"free":3059.79},{"epoch":26158408,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":578.58,"free":3059.76},{"epoch":26158409,"idl":99.81,"recv":0,"send":0.02,"writ":0.47,"used":578.9,"free":3059.44},{"epoch":26158410,"idl":99.92,"recv":0,"send":0,"writ":0.45,"used":578.75,"free":3059.6},{"epoch":26158411,"idl":99.93,"recv":0,"send":0.02,"writ":0.17,"used":578.86,"free":3059.49},{"epoch":26158412,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":578.81,"free":3059.53},{"epoch":26158413,"idl":99.92,"recv":0,"send":0.02,"writ":0.17,"used":578.75,"free":3059.58},{"epoch":26158414,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":578.72,"free":3059.62},{"epoch":26158415,"idl":99.73,"recv":0,"send":0.02,"writ":0.73,"used":578.3,"free":3060.05},{"epoch":26158416,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":577.82,"free":3060.53},{"epoch":26158417,"idl":99.9,"recv":0,"send":0.02,"writ":0.18,"used":577.76,"free":3060.58},{"epoch":26158418,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":577.79,"free":3060.55},{"epoch":26158419,"idl":99.82,"recv":0,"send":0.02,"writ":0.29,"used":579.03,"free":3059.28},{"epoch":26158420,"idl":99.77,"recv":0,"send":0,"writ":0.7,"used":578.76,"free":3059.58},{"epoch":26158421,"idl":99.91,"recv":0,"send":0.02,"writ":0.18,"used":578.26,"free":3060.07},{"epoch":26158422,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":578.35,"free":3059.97},{"epoch":26158423,"idl":99.96,"recv":0,"send":0.02,"writ":0.18,"used":578.29,"free":3060.03},{"epoch":26158424,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":578.25,"free":3060.1},{"epoch":26158425,"idl":99.74,"recv":0,"send":0.02,"writ":0.73,"used":579.46,"free":3058.91},{"epoch":26158426,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":578.85,"free":3059.52},{"epoch":26158427,"idl":99.94,"recv":0,"send":0.02,"writ":0.17,"used":578.79,"free":3059.57},{"epoch":26158428,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":578.74,"free":3059.62},{"epoch":26158429,"idl":99.91,"recv":0,"send":0.02,"writ":0.15,"used":578.77,"free":3059.58},{"epoch":26158430,"idl":99.74,"recv":0,"send":0,"writ":0.61,"used":579.61,"free":3058.76},{"epoch":26158431,"idl":99.91,"recv":0,"send":0.02,"writ":0.29,"used":579.04,"free":3059.32},{"epoch":26158432,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":578.99,"free":3059.37},{"epoch":26158433,"idl":99.93,"recv":0,"send":0.02,"writ":0.17,"used":578.98,"free":3059.37},{"epoch":26158434,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":579.1,"free":3059.24},{"epoch":26158435,"idl":99.69,"recv":0,"send":0.02,"writ":0.56,"used":578.77,"free":3059.59},{"epoch":26158436,"idl":99.93,"recv":0,"send":0,"writ":0.34,"used":578.15,"free":3060.21},{"epoch":26158437,"idl":99.92,"recv":0,"send":0.02,"writ":0.18,"used":578.06,"free":3060.3},{"epoch":26158438,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":578.11,"free":3060.24},{"epoch":26158439,"idl":99.91,"recv":0,"send":0.02,"writ":0.16,"used":578.06,"free":3060.29},{"epoch":26158440,"idl":99.67,"recv":0,"send":0,"writ":0.49,"used":579.12,"free":3059.24},{"epoch":26158441,"idl":99.93,"recv":0,"send":0.02,"writ":0.41,"used":579.29,"free":3059.07},{"epoch":26158442,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":579.32,"free":3059.03},{"epoch":26158443,"idl":99.93,"recv":0,"send":0.02,"writ":0.18,"used":579.26,"free":3059.09},{"epoch":26158444,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":579.21,"free":3059.13},{"epoch":26158445,"idl":99.9,"recv":0,"send":0.02,"writ":0.33,"used":579.04,"free":3059.32},{"epoch":26158446,"idl":99.76,"recv":0,"send":0,"writ":0.57,"used":579.64,"free":3058.71},{"epoch":26158447,"idl":99.91,"recv":0,"send":0.02,"writ":0.19,"used":579.26,"free":3059.08},{"epoch":26158448,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":579.21,"free":3059.13},{"epoch":26158449,"idl":99.89,"recv":0,"send":0.02,"writ":0.27,"used":579.03,"free":3059.29},{"epoch":26158450,"idl":99.88,"recv":0.01,"send":0,"writ":0.3,"used":579.07,"free":3059.27},{"epoch":26158451,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.56,"used":579.62,"free":3058.72},{"epoch":26158452,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":579.29,"free":3059.03},{"epoch":26158453,"idl":99.9,"recv":0.01,"send":0.02,"writ":0.18,"used":579.27,"free":3059.05},{"epoch":26158454,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":579.29,"free":3059.03},{"epoch":26158455,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.31,"used":578.77,"free":3059.56},{"epoch":26158456,"idl":99.79,"recv":0,"send":0,"writ":0.63,"used":578.81,"free":3059.52},{"epoch":26158457,"idl":99.86,"recv":0.01,"send":0.02,"writ":0.21,"used":578.25,"free":3060.07},{"epoch":26158458,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":578.32,"free":3060},{"epoch":26158459,"idl":99.93,"recv":0.01,"send":0.03,"writ":0.15,"used":578.25,"free":3060.07},{"epoch":26158460,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":579.06,"free":3059.28},{"epoch":26158461,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.56,"used":579.57,"free":3058.76},{"epoch":26158462,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":579.31,"free":3059.01},{"epoch":26158463,"idl":99.93,"recv":0.01,"send":0.02,"writ":0.14,"used":579.23,"free":3059.09},{"epoch":26158464,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.16,"used":579.21,"free":3059.11},{"epoch":26158465,"idl":99.88,"recv":0,"send":0.02,"writ":0.3,"used":579.32,"free":3059.01},{"epoch":26158466,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":579.61,"free":3058.72},{"epoch":26158467,"idl":99.92,"recv":0,"send":0.02,"writ":0.14,"used":579.22,"free":3059.1},{"epoch":26158468,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":579.34,"free":3058.98},{"epoch":26158469,"idl":99.93,"recv":0,"send":0.02,"writ":0.15,"used":579.28,"free":3059.04},{"epoch":26158470,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":578.98,"free":3059.35},{"epoch":26158471,"idl":99.78,"recv":0,"send":0.02,"writ":0.43,"used":579.42,"free":3058.91},{"epoch":26158472,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":579.3,"free":3059.02},{"epoch":26158473,"idl":99.93,"recv":0,"send":0.02,"writ":0.14,"used":579.25,"free":3059.07},{"epoch":26158474,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":579.2,"free":3059.12},{"epoch":26158475,"idl":99.86,"recv":0,"send":0.02,"writ":0.3,"used":579.5,"free":3058.83},{"epoch":26158476,"idl":99.79,"recv":0,"send":0,"writ":0.42,"used":579.89,"free":3058.43},{"epoch":26158477,"idl":99.91,"recv":0.01,"send":0.02,"writ":0.32,"used":579.48,"free":3058.83},{"epoch":26158478,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":579.53,"free":3058.78},{"epoch":26158479,"idl":99.8,"recv":0.01,"send":0.44,"writ":0.29,"used":578.99,"free":3059.29},{"epoch":26158480,"idl":99.83,"recv":0.01,"send":0.44,"writ":0.4,"used":578.76,"free":3059.52},{"epoch":26158481,"idl":99.76,"recv":0.01,"send":0.02,"writ":0.42,"used":579.09,"free":3059.19},{"epoch":26158482,"idl":99.87,"recv":0.01,"send":0.45,"writ":0.33,"used":579.44,"free":3058.83},{"epoch":26158483,"idl":99.9,"recv":0.01,"send":0.02,"writ":0.2,"used":579.19,"free":3059.07},{"epoch":26158484,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":579.19,"free":3059.06},{"epoch":26158485,"idl":99.83,"recv":0,"send":0.02,"writ":0.36,"used":579.26,"free":3059.01},{"epoch":26158486,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":579.19,"free":3059.08},{"epoch":26158487,"idl":99.75,"recv":0,"send":0.02,"writ":0.61,"used":579.31,"free":3058.95},{"epoch":26158488,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":579.02,"free":3059.24},{"epoch":26158489,"idl":99.9,"recv":0,"send":0.02,"writ":0.17,"used":578.97,"free":3059.29},{"epoch":26158490,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":578.92,"free":3059.34},{"epoch":26158491,"idl":99.9,"recv":0,"send":0.02,"writ":0.17,"used":578.94,"free":3059.32},{"epoch":26158492,"idl":99.78,"recv":0.01,"send":0.02,"writ":0.59,"used":580.13,"free":3058.13},{"epoch":26158493,"idl":99.91,"recv":0.01,"send":0.02,"writ":0.19,"used":575.54,"free":3062.81},{"epoch":26158494,"idl":99.93,"recv":0,"send":0,"writ":0.24,"used":568.76,"free":3069.77},{"epoch":26158495,"idl":99.9,"recv":0,"send":0.02,"writ":0.32,"used":569.08,"free":3069.47},{"epoch":26158496,"idl":99.89,"recv":0,"send":0,"writ":0.25,"used":568.95,"free":3069.59},{"epoch":26158497,"idl":99.81,"recv":0,"send":0.02,"writ":0.43,"used":569.2,"free":3069.33},{"epoch":26158498,"idl":99.92,"recv":0,"send":0,"writ":0.34,"used":568.29,"free":3070.25},{"epoch":26158499,"idl":99.9,"recv":0,"send":0.02,"writ":0.16,"used":568.35,"free":3070.22},{"epoch":26158500,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":568.95,"free":3069.64},{"epoch":26158501,"idl":99.92,"recv":0,"send":0.02,"writ":0.18,"used":568.92,"free":3069.68},{"epoch":26158502,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":569.47,"free":3069.13},{"epoch":26158503,"idl":99.93,"recv":0,"send":0.02,"writ":0.19,"used":569.08,"free":3069.51},{"epoch":26158504,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":569.04,"free":3069.55},{"epoch":26158505,"idl":99.9,"recv":0,"send":0.02,"writ":0.36,"used":568.47,"free":3070.14},{"epoch":26158506,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":568.18,"free":3070.43},{"epoch":26158507,"idl":99.77,"recv":0.01,"send":0.02,"writ":0.65,"used":568.47,"free":3070.14},{"epoch":26158508,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":568.06,"free":3070.54},{"epoch":26158509,"idl":99.9,"recv":0,"send":0.02,"writ":0.34,"used":567.86,"free":3070.71},{"epoch":26158510,"idl":99.91,"recv":0,"send":0,"writ":0.33,"used":568.41,"free":3070.18},{"epoch":26158511,"idl":99.94,"recv":0,"send":0.02,"writ":0.21,"used":568.39,"free":3070.2},{"epoch":26158512,"idl":99.79,"recv":0,"send":0,"writ":0.46,"used":568.67,"free":3069.91},{"epoch":26158513,"idl":99.93,"recv":0,"send":0.02,"writ":0.32,"used":567.85,"free":3070.72},{"epoch":26158514,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":567.94,"free":3070.63},{"epoch":26158515,"idl":99.86,"recv":0,"send":0.02,"writ":0.32,"used":568.42,"free":3070.17},{"epoch":26158516,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":568.37,"free":3070.21},{"epoch":26158517,"idl":99.79,"recv":0,"send":0.02,"writ":0.39,"used":568.69,"free":3069.9},{"epoch":26158518,"idl":99.93,"recv":0,"send":0,"writ":0.42,"used":568.05,"free":3070.54},{"epoch":26158519,"idl":99.9,"recv":0.01,"send":0.03,"writ":0.23,"used":568.06,"free":3070.52},{"epoch":26158520,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":568.16,"free":3070.44},{"epoch":26158521,"idl":99.94,"recv":0,"send":0.02,"writ":0.21,"used":568.11,"free":3070.48},{"epoch":26158522,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":568.07,"free":3070.52},{"epoch":26158523,"idl":99.79,"recv":0,"send":0.02,"writ":0.56,"used":568.65,"free":3069.93},{"epoch":26158524,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":568.44,"free":3070.14},{"epoch":26158525,"idl":99.89,"recv":0,"send":0.02,"writ":0.32,"used":568.18,"free":3070.42},{"epoch":26158526,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":568.12,"free":3070.47},{"epoch":26158527,"idl":99.95,"recv":0,"send":0.02,"writ":0.17,"used":568.09,"free":3070.5},{"epoch":26158528,"idl":99.8,"recv":0,"send":0,"writ":0.61,"used":568.6,"free":3069.98},{"epoch":26158529,"idl":99.93,"recv":0,"send":0.02,"writ":0.18,"used":568.44,"free":3070.14},{"epoch":26158530,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":567.69,"free":3070.9},{"epoch":26158531,"idl":99.93,"recv":0,"send":0.02,"writ":0.17,"used":567.64,"free":3070.95},{"epoch":26158532,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":567.59,"free":3071},{"epoch":26158533,"idl":99.78,"recv":0,"send":0.02,"writ":0.58,"used":568.21,"free":3070.37},{"epoch":26158534,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":568.18,"free":3070.39},{"epoch":26158535,"idl":99.89,"recv":0,"send":0.02,"writ":0.33,"used":568.17,"free":3070.42},{"epoch":26158536,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":568.12,"free":3070.47},{"epoch":26158537,"idl":99.93,"recv":0,"send":0.02,"writ":0.16,"used":568.09,"free":3070.49},{"epoch":26158538,"idl":99.81,"recv":0,"send":0,"writ":0.45,"used":568.84,"free":3069.74},{"epoch":26158539,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.51,"used":568.7,"free":3069.85},{"epoch":26158540,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":571.28,"free":3067.19},{"epoch":26158541,"idl":99.91,"recv":0.01,"send":0.05,"writ":0.17,"used":571.2,"free":3067.27},{"epoch":26158542,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":571.27,"free":3067.18},{"epoch":26158543,"idl":99.78,"recv":0,"send":0.02,"writ":0.61,"used":571.98,"free":3066.46},{"epoch":26158544,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":571.72,"free":3066.74},{"epoch":26158545,"idl":99.87,"recv":0,"send":0.02,"writ":0.32,"used":571.88,"free":3066.61},{"epoch":26158546,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":571.85,"free":3066.65},{"epoch":26158547,"idl":99.93,"recv":0,"send":0.02,"writ":0.16,"used":571.84,"free":3066.65},{"epoch":26158548,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":572.36,"free":3066.12},{"epoch":26158549,"idl":99.95,"recv":0,"send":0.02,"writ":0.4,"used":571.43,"free":3067.05},{"epoch":26158550,"idl":99.83,"recv":0,"send":0,"writ":0.37,"used":571.15,"free":3067.34},{"epoch":26158551,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":571.11,"free":3067.38},{"epoch":26158552,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":571.1,"free":3067.38},{"epoch":26158553,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.09,"free":3067.39},{"epoch":26158554,"idl":99.79,"recv":0,"send":0,"writ":0.61,"used":571.84,"free":3066.64},{"epoch":26158555,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":571.71,"free":3066.79},{"epoch":26158556,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":571.76,"free":3066.73},{"epoch":26158557,"idl":99.65,"recv":0.06,"send":2.09,"writ":0.25,"used":571.49,"free":3066.99},{"epoch":26158558,"idl":99.83,"recv":0.03,"send":0.9,"writ":0.21,"used":571.49,"free":3066.96},{"epoch":26158559,"idl":99.79,"recv":0,"send":0,"writ":0.61,"used":572.03,"free":3066.41},{"epoch":26158560,"idl":99.83,"recv":0.02,"send":0.4,"writ":0.34,"used":571.8,"free":3066.54},{"epoch":26158561,"idl":99.95,"recv":0.01,"send":0.11,"writ":0.22,"used":571.6,"free":3066.49},{"epoch":26158562,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":571.57,"free":3066.51},{"epoch":26158563,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":571.52,"free":3066.56},{"epoch":26158564,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":571.81,"free":3066.26},{"epoch":26158565,"idl":99.88,"recv":0,"send":0,"writ":0.37,"used":571.71,"free":3066.37},{"epoch":26158566,"idl":99.88,"recv":0.14,"send":0.38,"writ":0.33,"used":571.77,"free":3066.31},{"epoch":26158567,"idl":99.9,"recv":0.37,"send":0.08,"writ":0.57,"used":571.72,"free":3066.36},{"epoch":26158568,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":571.58,"free":3066.5},{"epoch":26158569,"idl":99.6,"recv":0.14,"send":0.89,"writ":0.84,"used":572.26,"free":3065.79},{"epoch":26158570,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.32,"used":571.29,"free":3066.76},{"epoch":26158571,"idl":99.87,"recv":0.02,"send":0.5,"writ":0.32,"used":571.25,"free":3066.79},{"epoch":26158572,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.2,"free":3066.83},{"epoch":26158573,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":571.14,"free":3066.89},{"epoch":26158574,"idl":99.78,"recv":0.01,"send":0.04,"writ":0.61,"used":572.4,"free":3065.64},{"epoch":26158575,"idl":99.85,"recv":0.01,"send":0.05,"writ":0.4,"used":572.41,"free":3065.64},{"epoch":26158576,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":572.54,"free":3065.5},{"epoch":26158577,"idl":99.92,"recv":0,"send":0,"writ":0.23,"used":572.54,"free":3065.5},{"epoch":26158578,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":572.53,"free":3065.51},{"epoch":26158579,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.46,"used":573.05,"free":3064.98},{"epoch":26158580,"idl":99.9,"recv":0,"send":0,"writ":0.45,"used":571.93,"free":3066.11},{"epoch":26158581,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":572.05,"free":3065.99},{"epoch":26158582,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.03,"free":3066.01},{"epoch":26158583,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":572.01,"free":3066.03},{"epoch":26158584,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":572.47,"free":3065.56},{"epoch":26158585,"idl":99.86,"recv":0,"send":0,"writ":0.61,"used":572.47,"free":3065.57},{"epoch":26158586,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":572.45,"free":3065.59},{"epoch":26158587,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":572.43,"free":3065.61},{"epoch":26158588,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":572.4,"free":3065.63},{"epoch":26158589,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":572.37,"free":3065.66},{"epoch":26158590,"idl":99.71,"recv":0,"send":0,"writ":0.71,"used":572.78,"free":3065.27},{"epoch":26158591,"idl":99.56,"recv":0,"send":0,"writ":0.29,"used":572.56,"free":3065.48},{"epoch":26158592,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":572.53,"free":3065.51},{"epoch":26158593,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":572.5,"free":3065.53},{"epoch":26158594,"idl":99.92,"recv":0,"send":0,"writ":0.22,"used":572.47,"free":3065.56},{"epoch":26158595,"idl":99.75,"recv":0,"send":0,"writ":0.71,"used":572.59,"free":3065.45},{"epoch":26158596,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":572.2,"free":3065.84},{"epoch":26158597,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":572.17,"free":3065.87},{"epoch":26158598,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":572.16,"free":3065.87},{"epoch":26158599,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.38,"used":571.92,"free":3066.08},{"epoch":26158600,"idl":99.71,"recv":0.01,"send":0.01,"writ":0.79,"used":572.76,"free":3065.26},{"epoch":26158601,"idl":99.92,"recv":0.01,"send":0,"writ":0.22,"used":572.46,"free":3065.56},{"epoch":26158602,"idl":99.84,"recv":0,"send":0.01,"writ":0.23,"used":572.38,"free":3065.63},{"epoch":26158603,"idl":99.86,"recv":0.01,"send":0,"writ":0.21,"used":572.49,"free":3065.52},{"epoch":26158604,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":572.46,"free":3065.54},{"epoch":26158605,"idl":99.67,"recv":0,"send":0,"writ":0.75,"used":571.51,"free":3066.51},{"epoch":26158606,"idl":99.88,"recv":0.02,"send":0.41,"writ":0.28,"used":571.65,"free":3066.36},{"epoch":26158607,"idl":99.88,"recv":0.01,"send":0.41,"writ":0.24,"used":571.74,"free":3066.27},{"epoch":26158608,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":571.74,"free":3066.25},{"epoch":26158609,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.72,"free":3066.27},{"epoch":26158610,"idl":99.7,"recv":0,"send":0,"writ":0.74,"used":572.9,"free":3065.11},{"epoch":26158611,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":572.19,"free":3065.82},{"epoch":26158612,"idl":99.95,"recv":0,"send":0.02,"writ":0.2,"used":572.14,"free":3065.85},{"epoch":26158613,"idl":99.81,"recv":0.03,"send":0.79,"writ":0.26,"used":572.09,"free":3065.9},{"epoch":26158614,"idl":99.88,"recv":0.02,"send":0.03,"writ":0.23,"used":571.96,"free":3066.01},{"epoch":26158615,"idl":99.42,"recv":0.07,"send":2.01,"writ":0.75,"used":573.17,"free":3064.82},{"epoch":26158616,"idl":99.73,"recv":0.03,"send":1.24,"writ":0.37,"used":572.33,"free":3065.62},{"epoch":26158617,"idl":99.91,"recv":0,"send":0.04,"writ":0.21,"used":572.44,"free":3065.48},{"epoch":26158618,"idl":99.84,"recv":0.01,"send":0.39,"writ":0.16,"used":572.42,"free":3065.5},{"epoch":26158619,"idl":99.95,"recv":0,"send":0.02,"writ":0.23,"used":572.41,"free":3065.5},{"epoch":26158620,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":571.19,"free":3066.74},{"epoch":26158621,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":572.24,"free":3065.67},{"epoch":26158622,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":571.86,"free":3066.05},{"epoch":26158623,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":571.84,"free":3066.07},{"epoch":26158624,"idl":99.85,"recv":0.03,"send":0.42,"writ":0.28,"used":571.67,"free":3066.23},{"epoch":26158625,"idl":99.79,"recv":0.01,"send":0.41,"writ":0.36,"used":572.81,"free":3065.1},{"epoch":26158626,"idl":99.77,"recv":0.02,"send":0.01,"writ":0.62,"used":572.91,"free":3065},{"epoch":26158627,"idl":99.77,"recv":0.05,"send":1.23,"writ":0.36,"used":572.61,"free":3065.27},{"epoch":26158628,"idl":99.16,"recv":0.16,"send":5.35,"writ":0.41,"used":572.54,"free":3065.28},{"epoch":26158629,"idl":99.78,"recv":0.01,"send":0.41,"writ":0.39,"used":572.68,"free":3065.08},{"epoch":26158630,"idl":99.57,"recv":0.06,"send":2.05,"writ":0.4,"used":572.88,"free":3064.87},{"epoch":26158631,"idl":99.55,"recv":0.05,"send":1.23,"writ":0.68,"used":573.42,"free":3064.29},{"epoch":26158632,"idl":99.85,"recv":0,"send":0.01,"writ":0.21,"used":572.57,"free":3065.11},{"epoch":26158633,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":572.56,"free":3065.12},{"epoch":26158634,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.54,"free":3065.14},{"epoch":26158635,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":572.61,"free":3065.08},{"epoch":26158636,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":572.94,"free":3064.75},{"epoch":26158637,"idl":99.87,"recv":0.04,"send":0.05,"writ":0.35,"used":572.36,"free":3065.32},{"epoch":26158638,"idl":99.91,"recv":0.02,"send":0,"writ":0.19,"used":572.4,"free":3065.28},{"epoch":26158639,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.18,"used":572.42,"free":3065.25},{"epoch":26158640,"idl":99.82,"recv":0.04,"send":0.41,"writ":0.39,"used":572.38,"free":3065.31},{"epoch":26158641,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":572.71,"free":3064.97},{"epoch":26158642,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":572.32,"free":3065.36},{"epoch":26158643,"idl":99.85,"recv":0.02,"send":0,"writ":0.17,"used":572.3,"free":3065.37},{"epoch":26158644,"idl":99.68,"recv":0.06,"send":1.65,"writ":0.25,"used":572.38,"free":3065.27},{"epoch":26158645,"idl":99.79,"recv":0.03,"send":0.41,"writ":0.37,"used":572.88,"free":3064.77},{"epoch":26158646,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":573.15,"free":3064.5},{"epoch":26158647,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":572.78,"free":3064.87},{"epoch":26158648,"idl":99.8,"recv":0.05,"send":0.42,"writ":0.23,"used":572.82,"free":3064.82},{"epoch":26158649,"idl":99.69,"recv":0.07,"send":1.24,"writ":0.3,"used":572.85,"free":3064.77},{"epoch":26158650,"idl":99.72,"recv":0.03,"send":0.42,"writ":0.38,"used":572.52,"free":3065.1},{"epoch":26158651,"idl":99.41,"recv":0.08,"send":2.48,"writ":0.6,"used":573.15,"free":3064.43},{"epoch":26158652,"idl":99.71,"recv":0.04,"send":0.81,"writ":0.32,"used":573,"free":3064.56},{"epoch":26158653,"idl":99.85,"recv":0.02,"send":0.02,"writ":0.19,"used":572.94,"free":3064.61},{"epoch":26158654,"idl":99.85,"recv":0.02,"send":0,"writ":0.2,"used":573.03,"free":3064.51},{"epoch":26158655,"idl":99.78,"recv":0.03,"send":0.01,"writ":0.39,"used":572.99,"free":3064.57},{"epoch":26158656,"idl":99.72,"recv":0.03,"send":0.01,"writ":0.51,"used":573.3,"free":3064.25},{"epoch":26158657,"idl":99.69,"recv":0.04,"send":0.84,"writ":0.45,"used":572.76,"free":3064.77},{"epoch":26158658,"idl":99.78,"recv":0.01,"send":0.41,"writ":0.19,"used":572.72,"free":3064.8},{"epoch":26158659,"idl":99.73,"recv":0.03,"send":0.4,"writ":0.31,"used":572.07,"free":3065.43},{"epoch":26158660,"idl":99.58,"recv":0.06,"send":1.65,"writ":0.39,"used":572.25,"free":3065.23},{"epoch":26158661,"idl":99.86,"recv":0,"send":0.02,"writ":0.18,"used":572.27,"free":3065.21},{"epoch":26158662,"idl":99.44,"recv":0.09,"send":2.07,"writ":0.83,"used":571.31,"free":3066.14},{"epoch":26158663,"idl":99.54,"recv":0.06,"send":2.46,"writ":0.29,"used":570.9,"free":3066.5},{"epoch":26158664,"idl":99.55,"recv":0.06,"send":2.16,"writ":0.27,"used":571.15,"free":3066.21},{"epoch":26158665,"idl":99.36,"recv":0.1,"send":3.26,"writ":0.43,"used":571.63,"free":3065.71},{"epoch":26158666,"idl":99.7,"recv":0.02,"send":0.88,"writ":0.23,"used":571.73,"free":3065.55},{"epoch":26158667,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":572.23,"free":3065.05},{"epoch":26158668,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":572,"free":3065.27},{"epoch":26158669,"idl":99.76,"recv":0,"send":0,"writ":0.15,"used":572.07,"free":3065.22},{"epoch":26158670,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":572.07,"free":3065.23},{"epoch":26158671,"idl":99.23,"recv":0,"send":0,"writ":0.16,"used":572.05,"free":3065.26},{"epoch":26158672,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":572.69,"free":3064.61},{"epoch":26158673,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":572.01,"free":3065.29},{"epoch":26158674,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":571.98,"free":3065.32},{"epoch":26158675,"idl":99.71,"recv":0,"send":0,"writ":0.3,"used":571.01,"free":3066.3},{"epoch":26158676,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":570.96,"free":3066.35},{"epoch":26158677,"idl":99.71,"recv":0,"send":0,"writ":0.5,"used":571.94,"free":3065.35},{"epoch":26158678,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":572.31,"free":3064.97},{"epoch":26158679,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.29,"free":3064.99},{"epoch":26158680,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":572.54,"free":3064.76},{"epoch":26158681,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":572.52,"free":3064.78},{"epoch":26158682,"idl":99.68,"recv":0,"send":0,"writ":0.5,"used":572.74,"free":3064.55},{"epoch":26158683,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":572.23,"free":3065.05},{"epoch":26158684,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":572.21,"free":3065.07},{"epoch":26158685,"idl":99.69,"recv":0,"send":0,"writ":0.29,"used":571.54,"free":3065.75},{"epoch":26158686,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":571.45,"free":3065.84},{"epoch":26158687,"idl":95.18,"recv":0.32,"send":0.01,"writ":78.44,"used":585.59,"free":3051.15},{"epoch":26158688,"idl":99.78,"recv":0,"send":0,"writ":179.68,"used":573.71,"free":3063.95},{"epoch":26158689,"idl":99.67,"recv":0,"send":0,"writ":0.39,"used":574.4,"free":3063.23},{"epoch":26158690,"idl":97.89,"recv":0,"send":0,"writ":0.32,"used":574.43,"free":3063.21},{"epoch":26158691,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":574.4,"free":3063.23},{"epoch":26158692,"idl":99.69,"recv":0,"send":0,"writ":0.44,"used":574.32,"free":3063.32},{"epoch":26158693,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":571.47,"free":3066.2},{"epoch":26158694,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.45,"free":3066.22},{"epoch":26158695,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":571.22,"free":3066.46},{"epoch":26158696,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":571.19,"free":3066.49},{"epoch":26158697,"idl":99.78,"recv":0.01,"send":0.42,"writ":0.2,"used":571.55,"free":3066.12},{"epoch":26158698,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":572.3,"free":3065.38},{"epoch":26158699,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.14,"used":571.5,"free":3066.17},{"epoch":26158700,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":571.71,"free":3065.98},{"epoch":26158701,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":571.47,"free":3066.21},{"epoch":26158702,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.45,"free":3066.23},{"epoch":26158703,"idl":99.71,"recv":0,"send":0,"writ":0.62,"used":572.46,"free":3065.22},{"epoch":26158704,"idl":99.84,"recv":0,"send":0.01,"writ":0.18,"used":571.9,"free":3065.77},{"epoch":26158705,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":572.15,"free":3065.54},{"epoch":26158706,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":572.13,"free":3065.55},{"epoch":26158707,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":572.28,"free":3065.4},{"epoch":26158708,"idl":99.71,"recv":0,"send":0,"writ":0.6,"used":572.18,"free":3065.49},{"epoch":26158709,"idl":99.81,"recv":0,"send":0,"writ":0.17,"used":571.25,"free":3066.42},{"epoch":26158710,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":571.7,"free":3065.98},{"epoch":26158711,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":571.65,"free":3066.04},{"epoch":26158712,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.14,"used":571.7,"free":3065.98},{"epoch":26158713,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":571.68,"free":3066},{"epoch":26158714,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":570.9,"free":3066.77},{"epoch":26158715,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":571.74,"free":3065.95},{"epoch":26158716,"idl":99.83,"recv":0.01,"send":0.02,"writ":0.15,"used":571.68,"free":3066},{"epoch":26158717,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.18,"used":571.75,"free":3065.93},{"epoch":26158718,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":571.98,"free":3065.7},{"epoch":26158719,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":572.15,"free":3065.5},{"epoch":26158720,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":571.5,"free":3066.17},{"epoch":26158721,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":571.5,"free":3066.17},{"epoch":26158722,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":571.44,"free":3066.23},{"epoch":26158723,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":571.75,"free":3065.91},{"epoch":26158724,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":571.52,"free":3066.15},{"epoch":26158725,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":572.71,"free":3064.98},{"epoch":26158726,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":572.68,"free":3065},{"epoch":26158727,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":572.65,"free":3065.03},{"epoch":26158728,"idl":99.7,"recv":0,"send":0,"writ":0.42,"used":573.28,"free":3064.39},{"epoch":26158729,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":572.35,"free":3065.32},{"epoch":26158730,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":572.2,"free":3065.49},{"epoch":26158731,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":572.28,"free":3065.4},{"epoch":26158732,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.25,"free":3065.43},{"epoch":26158733,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":572.24,"free":3065.44},{"epoch":26158734,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":572.17,"free":3065.5},{"epoch":26158735,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":571.97,"free":3065.72},{"epoch":26158736,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":571.8,"free":3065.88},{"epoch":26158737,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":571.68,"free":3066},{"epoch":26158738,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":571.66,"free":3066.02},{"epoch":26158739,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":572.17,"free":3065.5},{"epoch":26158740,"idl":99.71,"recv":0,"send":0,"writ":0.29,"used":571.17,"free":3066.54},{"epoch":26158741,"idl":99.81,"recv":0,"send":0,"writ":0.14,"used":571.13,"free":3066.58},{"epoch":26158742,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":571.3,"free":3066.4},{"epoch":26158743,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":571.28,"free":3066.42},{"epoch":26158744,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":572.21,"free":3065.48},{"epoch":26158745,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":571.53,"free":3066.17},{"epoch":26158746,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":571.49,"free":3066.21},{"epoch":26158747,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.47,"free":3066.23},{"epoch":26158748,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":571.45,"free":3066.25},{"epoch":26158749,"idl":99.66,"recv":0,"send":0,"writ":0.66,"used":572.75,"free":3064.92},{"epoch":26158750,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":572.42,"free":3065.27},{"epoch":26158751,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":572.38,"free":3065.31},{"epoch":26158752,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":572.37,"free":3065.31},{"epoch":26158753,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.34,"free":3065.33},{"epoch":26158754,"idl":99.74,"recv":0,"send":0,"writ":0.5,"used":572.77,"free":3064.91},{"epoch":26158755,"idl":99.83,"recv":0,"send":0,"writ":0.35,"used":572.76,"free":3064.92},{"epoch":26158756,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.74,"free":3064.94},{"epoch":26158757,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":572.71,"free":3064.97},{"epoch":26158758,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":572.7,"free":3064.97},{"epoch":26158759,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.45,"used":573.04,"free":3064.63},{"epoch":26158760,"idl":99.82,"recv":0,"send":0,"writ":0.41,"used":572.19,"free":3065.49},{"epoch":26158761,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":572.16,"free":3065.52},{"epoch":26158762,"idl":99.68,"recv":0.04,"send":1.24,"writ":0.22,"used":572.06,"free":3065.6},{"epoch":26158763,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":572,"free":3065.66},{"epoch":26158764,"idl":99.71,"recv":0,"send":0,"writ":0.43,"used":572.38,"free":3065.27},{"epoch":26158765,"idl":99.82,"recv":0,"send":0,"writ":0.41,"used":572.71,"free":3064.96},{"epoch":26158766,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":572.69,"free":3064.97},{"epoch":26158767,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":572.66,"free":3064.99},{"epoch":26158768,"idl":99.79,"recv":0.01,"send":0.41,"writ":0.15,"used":572.48,"free":3065.17},{"epoch":26158769,"idl":99.74,"recv":0.03,"send":0.83,"writ":0.25,"used":572.47,"free":3065.16},{"epoch":26158770,"idl":99.68,"recv":0,"send":0,"writ":0.72,"used":572.9,"free":3064.74},{"epoch":26158771,"idl":99.75,"recv":0.04,"send":0.83,"writ":0.23,"used":572.39,"free":3065.24},{"epoch":26158772,"idl":99.8,"recv":0.03,"send":0.35,"writ":0.18,"used":572.35,"free":3065.27},{"epoch":26158773,"idl":99.75,"recv":0.04,"send":0.89,"writ":0.24,"used":572.45,"free":3065.15},{"epoch":26158774,"idl":99.72,"recv":0.05,"send":0.71,"writ":0.3,"used":572.36,"free":3065.22},{"epoch":26158775,"idl":99.65,"recv":0,"send":0.12,"writ":0.83,"used":572.56,"free":3065.03},{"epoch":26158776,"idl":99.84,"recv":0.02,"send":0,"writ":0.21,"used":571.89,"free":3065.7},{"epoch":26158777,"idl":99.81,"recv":0.01,"send":0.41,"writ":0.23,"used":571.81,"free":3065.77},{"epoch":26158778,"idl":99.45,"recv":0.09,"send":3.26,"writ":0.17,"used":571.83,"free":3065.72},{"epoch":26158779,"idl":99.58,"recv":0.04,"send":1.31,"writ":0.39,"used":572.55,"free":3064.92},{"epoch":26158780,"idl":99.63,"recv":0,"send":0,"writ":0.71,"used":572.99,"free":3064.49},{"epoch":26158781,"idl":99.75,"recv":0.02,"send":0.83,"writ":0.21,"used":572.49,"free":3064.98},{"epoch":26158782,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":572.44,"free":3065.02},{"epoch":26158783,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":572.42,"free":3065.03},{"epoch":26158784,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.4,"free":3065.07},{"epoch":26158785,"idl":99.67,"recv":0,"send":0,"writ":0.73,"used":572.38,"free":3065.11},{"epoch":26158786,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.82,"free":3065.66},{"epoch":26158787,"idl":99.84,"recv":0.01,"send":0.02,"writ":0.16,"used":571.79,"free":3065.68},{"epoch":26158788,"idl":99.79,"recv":0.01,"send":0.39,"writ":0.21,"used":571.84,"free":3065.62},{"epoch":26158789,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":571.77,"free":3065.68},{"epoch":26158790,"idl":99.67,"recv":0,"send":0,"writ":0.68,"used":572.84,"free":3064.63},{"epoch":26158791,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":572.49,"free":3064.98},{"epoch":26158792,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":572.47,"free":3065},{"epoch":26158793,"idl":99.71,"recv":0.03,"send":0.82,"writ":0.21,"used":572.52,"free":3064.93},{"epoch":26158794,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":572.52,"free":3064.93},{"epoch":26158795,"idl":99.63,"recv":0,"send":0,"writ":0.7,"used":572.09,"free":3065.37},{"epoch":26158796,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":572.09,"free":3065.37},{"epoch":26158797,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":571.96,"free":3065.5},{"epoch":26158798,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":571.95,"free":3065.5},{"epoch":26158799,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":571.91,"free":3065.53},{"epoch":26158800,"idl":99.6,"recv":0,"send":0,"writ":0.55,"used":572.38,"free":3065.08},{"epoch":26158801,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":572.14,"free":3065.32},{"epoch":26158802,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.11,"free":3065.36},{"epoch":26158803,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":572.27,"free":3065.2},{"epoch":26158804,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":572.25,"free":3065.22},{"epoch":26158805,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":572.73,"free":3064.75},{"epoch":26158806,"idl":99.62,"recv":0.02,"send":0.81,"writ":0.59,"used":573.08,"free":3064.4},{"epoch":26158807,"idl":99.68,"recv":0.03,"send":1.25,"writ":0.22,"used":572.76,"free":3064.69},{"epoch":26158808,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":572.72,"free":3064.71},{"epoch":26158809,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":572.71,"free":3064.7},{"epoch":26158810,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":572.95,"free":3064.48},{"epoch":26158811,"idl":99.17,"recv":0.01,"send":0.01,"writ":0.6,"used":573.22,"free":3064.21},{"epoch":26158812,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.82,"free":3064.6},{"epoch":26158813,"idl":99.72,"recv":0.06,"send":1.6,"writ":0.2,"used":572.84,"free":3064.57},{"epoch":26158814,"idl":99.9,"recv":0,"send":0.05,"writ":0.21,"used":571.97,"free":3065.41},{"epoch":26158815,"idl":99.77,"recv":0.03,"send":0.89,"writ":0.33,"used":571.88,"free":3065.51},{"epoch":26158816,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":572.32,"free":3065.07},{"epoch":26158817,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":572.05,"free":3065.33},{"epoch":26158818,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.17,"free":3065.21},{"epoch":26158819,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.14,"used":572.22,"free":3065.15},{"epoch":26158820,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":572.21,"free":3065.18},{"epoch":26158821,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":572.54,"free":3064.84},{"epoch":26158822,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":572.16,"free":3065.21},{"epoch":26158823,"idl":99.93,"recv":0.01,"send":0.04,"writ":0.19,"used":572.11,"free":3065.24},{"epoch":26158824,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.06,"free":3065.28},{"epoch":26158825,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":572.09,"free":3065.26},{"epoch":26158826,"idl":99.81,"recv":0,"send":0,"writ":0.58,"used":572.58,"free":3064.77},{"epoch":26158827,"idl":99.93,"recv":0.02,"send":0,"writ":0.17,"used":572.21,"free":3065.13},{"epoch":26158828,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.15,"free":3065.18},{"epoch":26158829,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":572.09,"free":3065.24},{"epoch":26158830,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":572.1,"free":3065.26},{"epoch":26158831,"idl":99.54,"recv":0.08,"send":1.76,"writ":0.73,"used":572.48,"free":3064.86},{"epoch":26158832,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.07,"free":3065.25},{"epoch":26158833,"idl":99.92,"recv":0.03,"send":0,"writ":0.2,"used":572.07,"free":3065.25},{"epoch":26158834,"idl":99.94,"recv":0.03,"send":0.05,"writ":0.29,"used":572.1,"free":3065.2},{"epoch":26158835,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":571.8,"free":3065.52},{"epoch":26158836,"idl":99.78,"recv":0.02,"send":0.04,"writ":0.37,"used":572.2,"free":3065.12},{"epoch":26158837,"idl":99.93,"recv":0.02,"send":0,"writ":0.43,"used":571.84,"free":3065.48},{"epoch":26158838,"idl":99.93,"recv":0.02,"send":0.01,"writ":0.22,"used":571.83,"free":3065.48},{"epoch":26158839,"idl":99.77,"recv":0,"send":0,"writ":0.29,"used":572.16,"free":3065.12},{"epoch":26158840,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":572.4,"free":3064.9},{"epoch":26158841,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.18,"used":572.35,"free":3064.95},{"epoch":26158842,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":572.86,"free":3064.43},{"epoch":26158843,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.18,"used":572.4,"free":3064.89},{"epoch":26158844,"idl":99.76,"recv":0.07,"send":1.21,"writ":0.41,"used":572.34,"free":3064.98},{"epoch":26158845,"idl":99.67,"recv":0.06,"send":1.68,"writ":0.41,"used":572.6,"free":3064.69},{"epoch":26158846,"idl":99.9,"recv":0.01,"send":0,"writ":0.2,"used":572.52,"free":3064.76},{"epoch":26158847,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":572.68,"free":3064.6},{"epoch":26158848,"idl":99.82,"recv":0.04,"send":0.83,"writ":0.27,"used":572.33,"free":3064.93},{"epoch":26158849,"idl":99.95,"recv":0.02,"send":0,"writ":0.25,"used":572.3,"free":3064.95},{"epoch":26158850,"idl":99.8,"recv":0.05,"send":0.78,"writ":0.37,"used":572.26,"free":3065.01},{"epoch":26158851,"idl":99.82,"recv":0.04,"send":0.88,"writ":0.23,"used":572.32,"free":3064.93},{"epoch":26158852,"idl":99.46,"recv":0.08,"send":2.42,"writ":0.67,"used":572.61,"free":3064.61},{"epoch":26158853,"idl":99.84,"recv":0.03,"send":0.47,"writ":0.27,"used":572.23,"free":3064.96},{"epoch":26158854,"idl":99.72,"recv":0.04,"send":1.65,"writ":0.29,"used":572.17,"free":3064.99},{"epoch":26158855,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":572.39,"free":3064.78},{"epoch":26158856,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":572.1,"free":3065.06},{"epoch":26158857,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":572.38,"free":3064.78},{"epoch":26158858,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":572.02,"free":3065.14},{"epoch":26158859,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":572,"free":3065.15},{"epoch":26158860,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":571.76,"free":3065.41},{"epoch":26158861,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":571.73,"free":3065.43},{"epoch":26158862,"idl":99.79,"recv":0,"send":0,"writ":0.5,"used":572.35,"free":3064.81},{"epoch":26158863,"idl":99.94,"recv":0,"send":0,"writ":0.22,"used":572.43,"free":3064.72},{"epoch":26158864,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":572.4,"free":3064.75},{"epoch":26158865,"idl":99.92,"recv":0,"send":0,"writ":0.32,"used":572.16,"free":3065},{"epoch":26158866,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.13,"free":3065.03},{"epoch":26158867,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":572.32,"free":3064.84},{"epoch":26158868,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":571.42,"free":3065.73},{"epoch":26158869,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":572.72,"free":3064.41},{"epoch":26158870,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":572.5,"free":3064.64},{"epoch":26158871,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.47,"free":3064.66},{"epoch":26158872,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":572.79,"free":3064.34},{"epoch":26158873,"idl":99.94,"recv":0,"send":0,"writ":0.39,"used":572.19,"free":3064.94},{"epoch":26158874,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":572.17,"free":3064.95},{"epoch":26158875,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":571.94,"free":3065.2},{"epoch":26158876,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":571.91,"free":3065.23},{"epoch":26158877,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":571.89,"free":3065.25},{"epoch":26158878,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":572.94,"free":3064.19},{"epoch":26158879,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.14,"used":572.38,"free":3064.75},{"epoch":26158880,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":572.52,"free":3064.62},{"epoch":26158881,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.49,"free":3064.65},{"epoch":26158882,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.46,"free":3064.68},{"epoch":26158883,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":572.6,"free":3064.53},{"epoch":26158884,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.92,"free":3065.2},{"epoch":26158885,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":571.91,"free":3065.23},{"epoch":26158886,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":571.91,"free":3065.23},{"epoch":26158887,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.88,"free":3065.25},{"epoch":26158888,"idl":99.82,"recv":0,"send":0,"writ":0.77,"used":572.34,"free":3064.79},{"epoch":26158889,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":571.84,"free":3065.29},{"epoch":26158890,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":572.27,"free":3064.87},{"epoch":26158891,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":572.24,"free":3064.89},{"epoch":26158892,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":572.23,"free":3064.9},{"epoch":26158893,"idl":99.66,"recv":0.04,"send":1.3,"writ":0.49,"used":572.62,"free":3064.5},{"epoch":26158894,"idl":99.88,"recv":0.02,"send":0.43,"writ":0.44,"used":572.42,"free":3064.67},{"epoch":26158895,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":572.96,"free":3064.15},{"epoch":26158896,"idl":99.83,"recv":0.02,"send":0.83,"writ":0.22,"used":572.89,"free":3064.21},{"epoch":26158897,"idl":99.85,"recv":0.03,"send":0.83,"writ":0.3,"used":572.86,"free":3064.22},{"epoch":26158898,"idl":99.8,"recv":0,"send":0,"writ":0.46,"used":573.19,"free":3063.88},{"epoch":26158899,"idl":99.9,"recv":0,"send":0,"writ":0.44,"used":572.12,"free":3064.92},{"epoch":26158900,"idl":99.91,"recv":0,"send":0,"writ":0.36,"used":571.87,"free":3065.19},{"epoch":26158901,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":571.85,"free":3065.21},{"epoch":26158902,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":571.81,"free":3065.24},{"epoch":26158903,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":572.16,"free":3064.89},{"epoch":26158904,"idl":99.95,"recv":0,"send":0,"writ":0.43,"used":572.25,"free":3064.8},{"epoch":26158905,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":572.49,"free":3064.58},{"epoch":26158906,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":572.48,"free":3064.59},{"epoch":26158907,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.64,"free":3064.42},{"epoch":26158908,"idl":99.76,"recv":0.05,"send":1.35,"writ":0.25,"used":572.33,"free":3064.71},{"epoch":26158909,"idl":99.8,"recv":0.01,"send":0,"writ":0.59,"used":572.81,"free":3064.22},{"epoch":26158910,"idl":99.85,"recv":0.02,"send":0.42,"writ":0.45,"used":572.63,"free":3064.42},{"epoch":26158911,"idl":99.87,"recv":0.01,"send":0.48,"writ":0.21,"used":572.46,"free":3064.57},{"epoch":26158912,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.52,"free":3064.51},{"epoch":26158913,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.59,"free":3064.44},{"epoch":26158914,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":572.91,"free":3064.1},{"epoch":26158915,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":572.56,"free":3064.47},{"epoch":26158916,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":572.4,"free":3064.63},{"epoch":26158917,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":572.26,"free":3064.76},{"epoch":26158918,"idl":99.83,"recv":0.02,"send":0.77,"writ":0.14,"used":572.26,"free":3064.76},{"epoch":26158919,"idl":99.68,"recv":0.03,"send":0.92,"writ":0.69,"used":571.43,"free":3065.56},{"epoch":26158920,"idl":99.77,"recv":0.02,"send":0.88,"writ":0.4,"used":571.99,"free":3065.01},{"epoch":26158921,"idl":99.95,"recv":0,"send":0.02,"writ":0.16,"used":572.01,"free":3064.98},{"epoch":26158922,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.08,"free":3064.9},{"epoch":26158923,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.06,"free":3064.91},{"epoch":26158924,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":573.02,"free":3063.96},{"epoch":26158925,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.39,"used":572.74,"free":3064.27},{"epoch":26158926,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.7,"free":3064.3},{"epoch":26158927,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.68,"free":3064.32},{"epoch":26158928,"idl":99.9,"recv":0.02,"send":0.4,"writ":0.22,"used":572.59,"free":3064.4},{"epoch":26158929,"idl":99.66,"recv":0.01,"send":0.35,"writ":0.59,"used":573.03,"free":3063.93},{"epoch":26158930,"idl":99.87,"recv":0,"send":0.08,"writ":0.52,"used":572.71,"free":3064.26},{"epoch":26158931,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.66,"free":3064.31},{"epoch":26158932,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":572.73,"free":3064.23},{"epoch":26158933,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.79,"free":3064.17},{"epoch":26158934,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":573.08,"free":3063.87},{"epoch":26158935,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":572.77,"free":3064.2},{"epoch":26158936,"idl":99.88,"recv":0.03,"send":0.41,"writ":0.2,"used":572.75,"free":3064.22},{"epoch":26158937,"idl":99.81,"recv":0.05,"send":0.83,"writ":0.34,"used":572.47,"free":3064.47},{"epoch":26158938,"idl":99.94,"recv":0.01,"send":0,"writ":0.16,"used":572.55,"free":3064.38},{"epoch":26158939,"idl":99.66,"recv":0.04,"send":0.84,"writ":0.6,"used":572.78,"free":3064.14},{"epoch":26158940,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":571.72,"free":3065.21},{"epoch":26158941,"idl":99.87,"recv":0.01,"send":0.41,"writ":0.16,"used":571.78,"free":3065.14},{"epoch":26158942,"idl":99.91,"recv":0.01,"send":0,"writ":0.21,"used":571.76,"free":3065.15},{"epoch":26158943,"idl":99.91,"recv":0.03,"send":0,"writ":0.23,"used":571.64,"free":3065.3},{"epoch":26158944,"idl":99.77,"recv":0.04,"send":0.01,"writ":0.39,"used":572.09,"free":3064.85},{"epoch":26158945,"idl":99.75,"recv":0.06,"send":0.42,"writ":0.71,"used":572.61,"free":3064.34},{"epoch":26158946,"idl":99.92,"recv":0.04,"send":0.01,"writ":0.22,"used":572.19,"free":3064.75},{"epoch":26158947,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.23,"used":572.21,"free":3064.73},{"epoch":26158948,"idl":99.9,"recv":0.05,"send":0.01,"writ":0.31,"used":572.21,"free":3064.72},{"epoch":26158949,"idl":99.81,"recv":0.04,"send":0.83,"writ":0.28,"used":572.17,"free":3064.76},{"epoch":26158950,"idl":99.68,"recv":0.01,"send":0,"writ":0.82,"used":573.43,"free":3063.5},{"epoch":26158951,"idl":99.78,"recv":0.03,"send":0.83,"writ":0.21,"used":572.93,"free":3063.98},{"epoch":26158952,"idl":99.69,"recv":0.08,"send":1.65,"writ":0.32,"used":572.87,"free":3064.03},{"epoch":26158953,"idl":99.88,"recv":0,"send":0.01,"writ":0.18,"used":572.85,"free":3064.03},{"epoch":26158954,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":572.95,"free":3063.93},{"epoch":26158955,"idl":99.78,"recv":0,"send":0,"writ":0.76,"used":572.96,"free":3063.92},{"epoch":26158956,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.67,"free":3064.21},{"epoch":26158957,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":572.65,"free":3064.23},{"epoch":26158958,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.63,"free":3064.24},{"epoch":26158959,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":572.84,"free":3064.02},{"epoch":26158960,"idl":99.7,"recv":0,"send":0,"writ":0.66,"used":573.31,"free":3063.56},{"epoch":26158961,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":573.07,"free":3063.8},{"epoch":26158962,"idl":99.83,"recv":0.03,"send":0.83,"writ":0.24,"used":572.96,"free":3063.89},{"epoch":26158963,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":572.91,"free":3063.93},{"epoch":26158964,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":572.9,"free":3063.96},{"epoch":26158965,"idl":99.73,"recv":0,"send":0,"writ":0.74,"used":573.24,"free":3063.65},{"epoch":26158966,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":571.91,"free":3064.98},{"epoch":26158967,"idl":99.89,"recv":0.04,"send":0.37,"writ":0.22,"used":571.82,"free":3065.06},{"epoch":26158968,"idl":99.77,"recv":0.05,"send":1.27,"writ":0.26,"used":571.81,"free":3065.06},{"epoch":26158969,"idl":99.88,"recv":0.06,"send":0.44,"writ":0.31,"used":571.82,"free":3065.02},{"epoch":26158970,"idl":99.72,"recv":0.05,"send":0.43,"writ":0.66,"used":572.11,"free":3064.74},{"epoch":26158971,"idl":99.89,"recv":0.05,"send":0.42,"writ":0.49,"used":572.3,"free":3064.54},{"epoch":26158972,"idl":99.86,"recv":0.02,"send":0.42,"writ":0.23,"used":572.53,"free":3064.29},{"epoch":26158973,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":572.6,"free":3064.21},{"epoch":26158974,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.57,"free":3064.24},{"epoch":26158975,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":572.42,"free":3064.41},{"epoch":26158976,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":571.57,"free":3065.26},{"epoch":26158977,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.31,"free":3065.51},{"epoch":26158978,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.29,"free":3065.53},{"epoch":26158979,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":571.27,"free":3065.54},{"epoch":26158980,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":572.24,"free":3064.59},{"epoch":26158981,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":572.34,"free":3064.48},{"epoch":26158982,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.05,"free":3064.78},{"epoch":26158983,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.14,"free":3064.68},{"epoch":26158984,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.11,"free":3064.7},{"epoch":26158985,"idl":99.91,"recv":0,"send":0,"writ":0.36,"used":572.12,"free":3064.71},{"epoch":26158986,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":572.6,"free":3064.22},{"epoch":26158987,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":571.84,"free":3064.98},{"epoch":26158988,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":571.81,"free":3065.01},{"epoch":26158989,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":572.32,"free":3064.48},{"epoch":26158990,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":572.03,"free":3064.78},{"epoch":26158991,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":572.6,"free":3064.2},{"epoch":26158992,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":571.98,"free":3064.82},{"epoch":26158993,"idl":99.93,"recv":0.03,"send":0.01,"writ":0.26,"used":572.05,"free":3064.75},{"epoch":26158994,"idl":99.83,"recv":0.04,"send":0.83,"writ":0.25,"used":572.11,"free":3064.71},{"epoch":26158995,"idl":99.88,"recv":0.02,"send":0,"writ":0.39,"used":572.1,"free":3064.74},{"epoch":26158996,"idl":99.75,"recv":0.01,"send":0.42,"writ":0.4,"used":572.68,"free":3064.16},{"epoch":26158997,"idl":99.86,"recv":0.06,"send":0.42,"writ":0.5,"used":572.27,"free":3064.55},{"epoch":26158998,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":572.3,"free":3064.52},{"epoch":26158999,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.15,"used":572.27,"free":3064.54},{"epoch":26159000,"idl":99.9,"recv":0.01,"send":0,"writ":0.35,"used":572.01,"free":3064.81},{"epoch":26159001,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":572.39,"free":3064.43},{"epoch":26159002,"idl":99.93,"recv":0,"send":0,"writ":0.33,"used":572.26,"free":3064.56},{"epoch":26159003,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":572.34,"free":3064.47},{"epoch":26159004,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":572.32,"free":3064.49},{"epoch":26159005,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":572.08,"free":3064.75},{"epoch":26159006,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":572.49,"free":3064.34},{"epoch":26159007,"idl":99.95,"recv":0.01,"send":0,"writ":0.32,"used":572.24,"free":3064.57},{"epoch":26159008,"idl":99.93,"recv":0.01,"send":0,"writ":0.19,"used":572.18,"free":3064.63},{"epoch":26159009,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":572.32,"free":3064.48},{"epoch":26159010,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":572.6,"free":3064.23},{"epoch":26159011,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":572.84,"free":3063.98},{"epoch":26159012,"idl":99.83,"recv":0.04,"send":0.82,"writ":0.35,"used":572,"free":3064.81},{"epoch":26159013,"idl":99.71,"recv":0.07,"send":1.68,"writ":0.34,"used":572,"free":3064.79},{"epoch":26159014,"idl":99.81,"recv":0.04,"send":0.83,"writ":0.25,"used":571.9,"free":3064.86},{"epoch":26159015,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":571.88,"free":3064.89},{"epoch":26159016,"idl":99.82,"recv":0.04,"send":0.83,"writ":0.2,"used":572.01,"free":3064.76},{"epoch":26159017,"idl":99.72,"recv":0.01,"send":0.41,"writ":0.61,"used":573.11,"free":3063.63},{"epoch":26159018,"idl":99.85,"recv":0.01,"send":0.42,"writ":0.2,"used":572.41,"free":3064.31},{"epoch":26159019,"idl":99.83,"recv":0,"send":0,"writ":0.31,"used":571.88,"free":3064.82},{"epoch":26159020,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":572.03,"free":3064.69},{"epoch":26159021,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":572.01,"free":3064.71},{"epoch":26159022,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":572.73,"free":3063.98},{"epoch":26159023,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":572.44,"free":3064.26},{"epoch":26159024,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.41,"free":3064.3},{"epoch":26159025,"idl":99.78,"recv":0.05,"send":0.79,"writ":0.45,"used":572.45,"free":3064.28},{"epoch":26159026,"idl":99.88,"recv":0,"send":0.04,"writ":0.25,"used":572.44,"free":3064.28},{"epoch":26159027,"idl":99.71,"recv":0.04,"send":0.42,"writ":0.68,"used":572.77,"free":3063.93},{"epoch":26159028,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.42,"free":3064.28},{"epoch":26159029,"idl":99.8,"recv":0.05,"send":0.83,"writ":0.23,"used":572.45,"free":3064.24},{"epoch":26159030,"idl":99.85,"recv":0.02,"send":0.42,"writ":0.43,"used":572.16,"free":3064.53},{"epoch":26159031,"idl":99.95,"recv":0.02,"send":0,"writ":0.2,"used":572.11,"free":3064.58},{"epoch":26159032,"idl":99.7,"recv":0.05,"send":0.83,"writ":0.66,"used":572.17,"free":3064.5},{"epoch":26159033,"idl":99.88,"recv":0.04,"send":0.42,"writ":0.31,"used":571.65,"free":3065.01},{"epoch":26159034,"idl":99.95,"recv":0.02,"send":0,"writ":0.19,"used":571.62,"free":3065.03},{"epoch":26159035,"idl":99.89,"recv":0.01,"send":0,"writ":0.36,"used":572.12,"free":3064.56},{"epoch":26159036,"idl":99.91,"recv":0.06,"send":0.01,"writ":0.3,"used":572.03,"free":3064.63},{"epoch":26159037,"idl":99.67,"recv":0.05,"send":0.83,"writ":0.53,"used":572.59,"free":3064.06},{"epoch":26159038,"idl":99.7,"recv":0.06,"send":1.66,"writ":0.48,"used":571.79,"free":3064.83},{"epoch":26159039,"idl":99.92,"recv":0,"send":0.01,"writ":0.18,"used":571.74,"free":3064.86},{"epoch":26159040,"idl":99.83,"recv":0,"send":0,"writ":0.34,"used":572.47,"free":3064.15},{"epoch":26159041,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":572.46,"free":3064.16},{"epoch":26159042,"idl":99.79,"recv":0,"send":0,"writ":0.45,"used":573.27,"free":3063.34},{"epoch":26159043,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":572.63,"free":3063.98},{"epoch":26159044,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":572.6,"free":3064},{"epoch":26159045,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":572.6,"free":3064.02},{"epoch":26159046,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":572.58,"free":3064.03},{"epoch":26159047,"idl":96,"recv":0.3,"send":0.01,"writ":64.06,"used":579.91,"free":3057.02},{"epoch":26159048,"idl":98.93,"recv":0,"send":0,"writ":193.14,"used":579.84,"free":3056.82},{"epoch":26159049,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":574.52,"free":3062.07},{"epoch":26159050,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":575,"free":3061.62},{"epoch":26159051,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.16,"used":575.05,"free":3061.57},{"epoch":26159052,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":575.05,"free":3061.56},{"epoch":26159053,"idl":99.6,"recv":0,"send":0,"writ":0.62,"used":572.88,"free":3063.76},{"epoch":26159054,"idl":99.77,"recv":0.04,"send":1.25,"writ":0.23,"used":572.18,"free":3064.48},{"epoch":26159055,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":572.07,"free":3064.61},{"epoch":26159056,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.16,"used":572.13,"free":3064.54},{"epoch":26159057,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":572.65,"free":3064.01},{"epoch":26159058,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":572.99,"free":3063.69},{"epoch":26159059,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.14,"used":572.6,"free":3064.07},{"epoch":26159060,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":572.61,"free":3064.08},{"epoch":26159061,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.58,"free":3064.11},{"epoch":26159062,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":572.6,"free":3064.08},{"epoch":26159063,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":573.08,"free":3063.6},{"epoch":26159064,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.72,"free":3063.95},{"epoch":26159065,"idl":99.89,"recv":0,"send":0.01,"writ":0.32,"used":572.22,"free":3064.47},{"epoch":26159066,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.18,"free":3064.51},{"epoch":26159067,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.16,"free":3064.52},{"epoch":26159068,"idl":99.79,"recv":0,"send":0,"writ":0.7,"used":569.82,"free":3066.96},{"epoch":26159069,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":569.04,"free":3067.76},{"epoch":26159070,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":568.79,"free":3068.03},{"epoch":26159071,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":568.78,"free":3068.03},{"epoch":26159072,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":568.93,"free":3067.88},{"epoch":26159073,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":569.37,"free":3067.44},{"epoch":26159074,"idl":99.92,"recv":0,"send":0,"writ":0.25,"used":569.14,"free":3067.68},{"epoch":26159075,"idl":99.85,"recv":0,"send":0,"writ":0.37,"used":569.14,"free":3067.69},{"epoch":26159076,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":569.12,"free":3067.71},{"epoch":26159077,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":569.1,"free":3067.72},{"epoch":26159078,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":569.43,"free":3067.39},{"epoch":26159079,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":568.81,"free":3067.98},{"epoch":26159080,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":568.57,"free":3068.24},{"epoch":26159081,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":568.52,"free":3068.28},{"epoch":26159082,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":568.55,"free":3068.25},{"epoch":26159083,"idl":99.8,"recv":0,"send":0,"writ":0.47,"used":569.2,"free":3067.59},{"epoch":26159084,"idl":99.94,"recv":0,"send":0,"writ":0.25,"used":569.13,"free":3067.66},{"epoch":26159085,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":569.38,"free":3067.43},{"epoch":26159086,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":569.35,"free":3067.45},{"epoch":26159087,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":569.32,"free":3067.47},{"epoch":26159088,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":569.3,"free":3067.49},{"epoch":26159089,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":569.63,"free":3067.18},{"epoch":26159090,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":569.29,"free":3067.53},{"epoch":26159091,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":569.26,"free":3067.56},{"epoch":26159092,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":569.31,"free":3067.51},{"epoch":26159093,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":569.38,"free":3067.43},{"epoch":26159094,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":569.49,"free":3067.31},{"epoch":26159095,"idl":99.52,"recv":0,"send":0,"writ":0.32,"used":569.12,"free":3067.7},{"epoch":26159096,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":569.1,"free":3067.71},{"epoch":26159097,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":569.07,"free":3067.74},{"epoch":26159098,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":569.06,"free":3067.75},{"epoch":26159099,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":569.2,"free":3067.61},{"epoch":26159100,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":569.03,"free":3067.79},{"epoch":26159101,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":569.01,"free":3067.8},{"epoch":26159102,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":569,"free":3067.82},{"epoch":26159103,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":569.06,"free":3067.75},{"epoch":26159104,"idl":99.83,"recv":0,"send":0,"writ":0.54,"used":569.5,"free":3067.31},{"epoch":26159105,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":569.39,"free":3067.44},{"epoch":26159106,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":569.35,"free":3067.46},{"epoch":26159107,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":569.34,"free":3067.48},{"epoch":26159108,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":569.31,"free":3067.5},{"epoch":26159109,"idl":99.72,"recv":0,"send":0,"writ":0.67,"used":569.6,"free":3067.19},{"epoch":26159110,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":569.05,"free":3067.75},{"epoch":26159111,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.01,"free":3067.79},{"epoch":26159112,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":569,"free":3067.8},{"epoch":26159113,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":568.97,"free":3067.83},{"epoch":26159114,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":569.51,"free":3067.28},{"epoch":26159115,"idl":99.89,"recv":0,"send":0,"writ":0.43,"used":569.39,"free":3067.42},{"epoch":26159116,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":569.37,"free":3067.43},{"epoch":26159117,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":569.1,"free":3067.7},{"epoch":26159118,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":569.09,"free":3067.71},{"epoch":26159119,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.55,"used":569.47,"free":3067.32},{"epoch":26159120,"idl":99.92,"recv":0,"send":0,"writ":0.38,"used":569.04,"free":3067.76},{"epoch":26159121,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":568.15,"free":3068.65},{"epoch":26159122,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":568.01,"free":3068.78},{"epoch":26159123,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":567.98,"free":3068.81},{"epoch":26159124,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":568.83,"free":3067.95},{"epoch":26159125,"idl":99.86,"recv":0,"send":0,"writ":0.55,"used":568.68,"free":3068.12},{"epoch":26159126,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":568.67,"free":3068.13},{"epoch":26159127,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":568.63,"free":3068.16},{"epoch":26159128,"idl":99.58,"recv":0,"send":0,"writ":0.19,"used":568.63,"free":3068.16},{"epoch":26159129,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":568.6,"free":3068.19},{"epoch":26159130,"idl":99.69,"recv":0,"send":0,"writ":0.69,"used":569.24,"free":3067.56},{"epoch":26159131,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":568.57,"free":3068.23},{"epoch":26159132,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":568.57,"free":3068.23},{"epoch":26159133,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":568.53,"free":3068.26},{"epoch":26159134,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":568.53,"free":3068.28},{"epoch":26159135,"idl":99.74,"recv":0.01,"send":0.01,"writ":0.73,"used":568.01,"free":3068.81},{"epoch":26159136,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":567.34,"free":3069.48},{"epoch":26159137,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":567.31,"free":3069.5},{"epoch":26159138,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":567.27,"free":3069.53},{"epoch":26159139,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":568.53,"free":3068.25},{"epoch":26159140,"idl":99.7,"recv":0,"send":0,"writ":0.7,"used":568.91,"free":3067.89},{"epoch":26159141,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":568.41,"free":3068.39},{"epoch":26159142,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":568.39,"free":3068.4},{"epoch":26159143,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":568.35,"free":3068.43},{"epoch":26159144,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":568.12,"free":3068.68},{"epoch":26159145,"idl":99.76,"recv":0,"send":0,"writ":0.67,"used":569.03,"free":3067.79},{"epoch":26159146,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":568.57,"free":3068.25},{"epoch":26159147,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":568.55,"free":3068.27},{"epoch":26159148,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":568.52,"free":3068.29},{"epoch":26159149,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":568.49,"free":3068.31},{"epoch":26159150,"idl":99.71,"recv":0,"send":0,"writ":0.67,"used":569.24,"free":3067.58},{"epoch":26159151,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":568.66,"free":3068.15},{"epoch":26159152,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":568.61,"free":3068.2},{"epoch":26159153,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":568.59,"free":3068.22},{"epoch":26159154,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":568.57,"free":3068.23},{"epoch":26159155,"idl":99.73,"recv":0,"send":0,"writ":0.7,"used":568.53,"free":3068.29},{"epoch":26159156,"idl":99.93,"recv":0,"send":0,"writ":0.23,"used":566.92,"free":3069.89},{"epoch":26159157,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":567.04,"free":3069.77},{"epoch":26159158,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":567.18,"free":3069.63},{"epoch":26159159,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":567.24,"free":3069.56},{"epoch":26159160,"idl":99.68,"recv":0,"send":0,"writ":0.6,"used":568.29,"free":3068.53},{"epoch":26159161,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":568.41,"free":3068.4},{"epoch":26159162,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":568.39,"free":3068.42},{"epoch":26159163,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":568.38,"free":3068.43},{"epoch":26159164,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":568.35,"free":3068.45},{"epoch":26159165,"idl":99.77,"recv":0,"send":0,"writ":0.5,"used":568.96,"free":3067.86},{"epoch":26159166,"idl":99.95,"recv":0,"send":0,"writ":0.38,"used":568.82,"free":3067.99},{"epoch":26159167,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":568.81,"free":3068},{"epoch":26159168,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":568.78,"free":3068.02},{"epoch":26159169,"idl":99.79,"recv":0.01,"send":0.01,"writ":0.29,"used":568.8,"free":3067.98},{"epoch":26159170,"idl":99.81,"recv":0,"send":0,"writ":0.33,"used":568.86,"free":3067.93},{"epoch":26159171,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":569.03,"free":3067.76},{"epoch":26159172,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":568.57,"free":3068.21},{"epoch":26159173,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":568.54,"free":3068.24},{"epoch":26159174,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":568.53,"free":3068.26},{"epoch":26159175,"idl":99.47,"recv":0,"send":0,"writ":0.3,"used":568.77,"free":3068.04},{"epoch":26159176,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":569.11,"free":3067.69},{"epoch":26159177,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":568.73,"free":3068.07},{"epoch":26159178,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":568.85,"free":3067.94},{"epoch":26159179,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.15,"used":568.87,"free":3067.92},{"epoch":26159180,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":567.92,"free":3068.89},{"epoch":26159181,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":568.74,"free":3068.06},{"epoch":26159182,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":568.82,"free":3067.98},{"epoch":26159183,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":568.8,"free":3067.99},{"epoch":26159184,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":568.78,"free":3068.01},{"epoch":26159185,"idl":99.76,"recv":0,"send":0,"writ":0.31,"used":568.77,"free":3068.04},{"epoch":26159186,"idl":99.55,"recv":0.02,"send":0.46,"writ":0.85,"used":571.59,"free":3065.16},{"epoch":26159187,"idl":99.52,"recv":0.03,"send":2.08,"writ":0.38,"used":574.08,"free":3062.57},{"epoch":26159188,"idl":99.73,"recv":0.02,"send":1.25,"writ":0.21,"used":574.11,"free":3062.51},{"epoch":26159189,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":574.07,"free":3062.53},{"epoch":26159190,"idl":99.58,"recv":0.03,"send":2.09,"writ":0.42,"used":573.88,"free":3062.72},{"epoch":26159191,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":574.23,"free":3062.34},{"epoch":26159192,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":573.65,"free":3062.92},{"epoch":26159193,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.21,"used":573.69,"free":3062.87},{"epoch":26159194,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":573.7,"free":3062.86},{"epoch":26159195,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":573.93,"free":3062.64},{"epoch":26159196,"idl":99.76,"recv":0,"send":0,"writ":0.41,"used":574.22,"free":3062.35},{"epoch":26159197,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":573.72,"free":3062.84},{"epoch":26159198,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":573.78,"free":3062.78},{"epoch":26159199,"idl":99.86,"recv":0,"send":0,"writ":0.25,"used":574.25,"free":3062.29},{"epoch":26159200,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":573.99,"free":3062.56},{"epoch":26159201,"idl":99.74,"recv":0,"send":0,"writ":0.33,"used":574.33,"free":3062.22},{"epoch":26159202,"idl":99.88,"recv":0,"send":0,"writ":0.39,"used":573.95,"free":3062.59},{"epoch":26159203,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":573.91,"free":3062.63},{"epoch":26159204,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":573.89,"free":3062.64},{"epoch":26159205,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":573.48,"free":3063.07},{"epoch":26159206,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":573.55,"free":3063},{"epoch":26159207,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":574.45,"free":3062.09},{"epoch":26159208,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":573.99,"free":3062.54},{"epoch":26159209,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":573.96,"free":3062.57},{"epoch":26159210,"idl":99.85,"recv":0,"send":0,"writ":0.37,"used":574.2,"free":3062.35},{"epoch":26159211,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":574.17,"free":3062.38},{"epoch":26159212,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":574.34,"free":3062.2},{"epoch":26159213,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":573.88,"free":3062.66},{"epoch":26159214,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":573.93,"free":3062.61},{"epoch":26159215,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":574.04,"free":3062.51},{"epoch":26159216,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":573.92,"free":3062.63},{"epoch":26159217,"idl":99.74,"recv":0,"send":0,"writ":0.61,"used":574.07,"free":3062.47},{"epoch":26159218,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":573.7,"free":3062.84},{"epoch":26159219,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":573.68,"free":3062.86},{"epoch":26159220,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":573.42,"free":3063.13},{"epoch":26159221,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":573.38,"free":3063.16},{"epoch":26159222,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":574.04,"free":3062.5},{"epoch":26159223,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":574,"free":3062.53},{"epoch":26159224,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":573.98,"free":3062.54},{"epoch":26159225,"idl":99.78,"recv":0,"send":0,"writ":0.4,"used":574.54,"free":3062.01},{"epoch":26159226,"idl":99.84,"recv":0.01,"send":0.03,"writ":0.13,"used":574.42,"free":3062.12},{"epoch":26159227,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":575.03,"free":3061.51},{"epoch":26159228,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":574.25,"free":3062.29},{"epoch":26159229,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":574.23,"free":3062.28},{"epoch":26159230,"idl":99.6,"recv":0.02,"send":1.25,"writ":0.45,"used":574.2,"free":3062.32},{"epoch":26159231,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":574.14,"free":3062.37},{"epoch":26159232,"idl":99.72,"recv":0,"send":0,"writ":0.42,"used":574.49,"free":3062.01},{"epoch":26159233,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":574.5,"free":3061.99},{"epoch":26159234,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":574.49,"free":3062.02},{"epoch":26159235,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":574.24,"free":3062.29},{"epoch":26159236,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":574.21,"free":3062.32},{"epoch":26159237,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":574.18,"free":3062.34},{"epoch":26159238,"idl":99.75,"recv":0,"send":0,"writ":0.55,"used":574.74,"free":3061.77},{"epoch":26159239,"idl":99.72,"recv":0.02,"send":0.84,"writ":0.21,"used":574.38,"free":3062.12},{"epoch":26159240,"idl":99.83,"recv":0,"send":0,"writ":0.33,"used":574.11,"free":3062.41},{"epoch":26159241,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":574.1,"free":3062.41},{"epoch":26159242,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":574.25,"free":3062.26},{"epoch":26159243,"idl":99.73,"recv":0,"send":0,"writ":0.54,"used":574.81,"free":3061.69},{"epoch":26159244,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":574.43,"free":3062.07},{"epoch":26159245,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":574.19,"free":3062.32},{"epoch":26159246,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":574.14,"free":3062.36},{"epoch":26159247,"idl":99.86,"recv":0,"send":0.01,"writ":0.16,"used":574.12,"free":3062.38},{"epoch":26159248,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":574.64,"free":3061.85},{"epoch":26159249,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":574.22,"free":3062.27},{"epoch":26159250,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":574.22,"free":3062.28},{"epoch":26159251,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":574.19,"free":3062.32},{"epoch":26159252,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":574.17,"free":3062.33},{"epoch":26159253,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":574.83,"free":3061.66},{"epoch":26159254,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":574.36,"free":3062.13},{"epoch":26159255,"idl":99.78,"recv":0.01,"send":0.42,"writ":0.37,"used":574.12,"free":3062.39},{"epoch":26159256,"idl":99.8,"recv":0.01,"send":0.06,"writ":0.27,"used":575.06,"free":3061.39},{"epoch":26159257,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":575.4,"free":3061.03},{"epoch":26159258,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":576.41,"free":3060.01},{"epoch":26159259,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":576.91,"free":3059.48},{"epoch":26159260,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":577.16,"free":3059.26},{"epoch":26159261,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":577.13,"free":3059.28},{"epoch":26159262,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":577.1,"free":3059.31},{"epoch":26159263,"idl":99.72,"recv":0,"send":0,"writ":0.42,"used":577.31,"free":3059.08},{"epoch":26159264,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":576.79,"free":3059.6},{"epoch":26159265,"idl":99.81,"recv":0,"send":0,"writ":0.39,"used":576.93,"free":3059.47},{"epoch":26159266,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":576.93,"free":3059.47},{"epoch":26159267,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":576.9,"free":3059.49},{"epoch":26159268,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":577.58,"free":3058.81},{"epoch":26159269,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":576.84,"free":3059.54},{"epoch":26159270,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":576.12,"free":3060.28},{"epoch":26159271,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":576.07,"free":3060.32},{"epoch":26159272,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":576.04,"free":3060.35},{"epoch":26159273,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":576.77,"free":3059.62},{"epoch":26159274,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":576.66,"free":3059.72},{"epoch":26159275,"idl":99.78,"recv":0,"send":0.02,"writ":0.38,"used":575.84,"free":3060.57},{"epoch":26159276,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":575.48,"free":3060.92},{"epoch":26159277,"idl":99.83,"recv":0,"send":0.01,"writ":0.18,"used":575.1,"free":3061.3},{"epoch":26159278,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":575.21,"free":3061.18},{"epoch":26159279,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":576.22,"free":3060.16},{"epoch":26159280,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":575.7,"free":3060.69},{"epoch":26159281,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":575.61,"free":3060.78},{"epoch":26159282,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":575.56,"free":3060.82},{"epoch":26159283,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":575.53,"free":3060.85},{"epoch":26159284,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":576.97,"free":3059.41},{"epoch":26159285,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":576.2,"free":3060.2},{"epoch":26159286,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":576.15,"free":3060.25},{"epoch":26159287,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":576.11,"free":3060.28},{"epoch":26159288,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":576.09,"free":3060.29},{"epoch":26159289,"idl":99.66,"recv":0,"send":0,"writ":0.72,"used":577.28,"free":3059.07},{"epoch":26159290,"idl":99.75,"recv":0,"send":0,"writ":0.38,"used":576.31,"free":3060.05},{"epoch":26159291,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":576.29,"free":3060.07},{"epoch":26159292,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":576.43,"free":3059.92},{"epoch":26159293,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":576.4,"free":3059.95},{"epoch":26159294,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":576.76,"free":3059.58},{"epoch":26159295,"idl":99.83,"recv":0,"send":0,"writ":0.37,"used":576.11,"free":3060.25},{"epoch":26159296,"idl":99.45,"recv":0,"send":0,"writ":0.14,"used":576.08,"free":3060.28},{"epoch":26159297,"idl":99.84,"recv":0,"send":0,"writ":0.22,"used":576.05,"free":3060.3},{"epoch":26159298,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":576.02,"free":3060.32},{"epoch":26159299,"idl":99.72,"recv":0.01,"send":0.01,"writ":0.56,"used":576.61,"free":3059.73},{"epoch":26159300,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":576.41,"free":3059.95},{"epoch":26159301,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":576.37,"free":3059.98},{"epoch":26159302,"idl":99.8,"recv":0.01,"send":0.42,"writ":0.22,"used":576.43,"free":3059.92},{"epoch":26159303,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":576.4,"free":3059.94},{"epoch":26159304,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":576.82,"free":3059.51},{"epoch":26159305,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":576.6,"free":3059.75},{"epoch":26159306,"idl":99.83,"recv":0,"send":0.01,"writ":0.16,"used":576.58,"free":3059.77},{"epoch":26159307,"idl":99.82,"recv":0.01,"send":0.42,"writ":0.14,"used":576.56,"free":3059.79},{"epoch":26159308,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":576.59,"free":3059.74},{"epoch":26159309,"idl":99.62,"recv":0.01,"send":0.83,"writ":0.59,"used":577.01,"free":3059.32},{"epoch":26159310,"idl":99.75,"recv":0.01,"send":0.42,"writ":0.37,"used":576.64,"free":3059.7},{"epoch":26159311,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":576.62,"free":3059.72},{"epoch":26159312,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":576.59,"free":3059.74},{"epoch":26159313,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":576.56,"free":3059.77},{"epoch":26159314,"idl":99.74,"recv":0,"send":0,"writ":0.32,"used":576.96,"free":3059.37},{"epoch":26159315,"idl":99.81,"recv":0,"send":0,"writ":0.59,"used":576.02,"free":3060.32},{"epoch":26159316,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":576.02,"free":3060.32},{"epoch":26159317,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":576.15,"free":3060.18},{"epoch":26159318,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":576.11,"free":3060.21},{"epoch":26159319,"idl":99.66,"recv":0.01,"send":0.01,"writ":0.57,"used":576.9,"free":3059.4},{"epoch":26159320,"idl":99.81,"recv":0.02,"send":0.03,"writ":0.47,"used":576.56,"free":3059.75},{"epoch":26159321,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.14,"used":576.61,"free":3059.7},{"epoch":26159322,"idl":99.85,"recv":0.04,"send":0.02,"writ":0.16,"used":576.58,"free":3059.73},{"epoch":26159323,"idl":99.86,"recv":0.04,"send":0.02,"writ":0.14,"used":576.56,"free":3059.75},{"epoch":26159324,"idl":99.83,"recv":0.03,"send":0.02,"writ":0.18,"used":576.58,"free":3059.73},{"epoch":26159325,"idl":99.64,"recv":0.03,"send":0.02,"writ":0.77,"used":577.14,"free":3059.19},{"epoch":26159326,"idl":99.83,"recv":0.04,"send":0.03,"writ":0.22,"used":576.84,"free":3059.49},{"epoch":26159327,"idl":99.86,"recv":0.03,"send":0.02,"writ":0.16,"used":576.81,"free":3059.52},{"epoch":26159328,"idl":99.84,"recv":0.05,"send":0.04,"writ":0.2,"used":576.82,"free":3059.5},{"epoch":26159329,"idl":99.82,"recv":0.03,"send":0.02,"writ":0.18,"used":576.78,"free":3059.54},{"epoch":26159330,"idl":99.69,"recv":0,"send":0,"writ":0.74,"used":577.27,"free":3059.07},{"epoch":26159331,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":576.48,"free":3059.85},{"epoch":26159332,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":576.66,"free":3059.67},{"epoch":26159333,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":576.64,"free":3059.68},{"epoch":26159334,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":576.6,"free":3059.71},{"epoch":26159335,"idl":99.66,"recv":0,"send":0,"writ":0.73,"used":577.21,"free":3059.12},{"epoch":26159336,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":576.69,"free":3059.64},{"epoch":26159337,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":576.28,"free":3060.04},{"epoch":26159338,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":576.25,"free":3060.08},{"epoch":26159339,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":576.33,"free":3060},{"epoch":26159340,"idl":99.19,"recv":0,"send":0,"writ":11.22,"used":576.79,"free":3060.35},{"epoch":26159341,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":576.75,"free":3060.45},{"epoch":26159342,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":576.72,"free":3060.48},{"epoch":26159343,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":576.68,"free":3060.51},{"epoch":26159344,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":576.66,"free":3060.53},{"epoch":26159345,"idl":99.67,"recv":0,"send":0,"writ":0.75,"used":577.25,"free":3059.97},{"epoch":26159346,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":576.88,"free":3060.34},{"epoch":26159347,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":576.99,"free":3060.23},{"epoch":26159348,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":577,"free":3060.21},{"epoch":26159349,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":577.22,"free":3059.99},{"epoch":26159350,"idl":99.68,"recv":0,"send":0,"writ":0.79,"used":577.41,"free":3059.81},{"epoch":26159351,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":576.94,"free":3060.28},{"epoch":26159352,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":576.91,"free":3060.3},{"epoch":26159353,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":576.88,"free":3060.33},{"epoch":26159354,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":576.92,"free":3060.28},{"epoch":26159355,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":577.4,"free":3059.82},{"epoch":26159356,"idl":99.84,"recv":0,"send":0,"writ":0.35,"used":577.24,"free":3059.97},{"epoch":26159357,"idl":99.86,"recv":0,"send":0,"writ":0.21,"used":577.21,"free":3060},{"epoch":26159358,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":577.18,"free":3060.03},{"epoch":26159359,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.16,"used":577.15,"free":3060.06},{"epoch":26159360,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":577.14,"free":3060.09},{"epoch":26159361,"idl":99.69,"recv":0,"send":0,"writ":0.58,"used":577.28,"free":3059.94},{"epoch":26159362,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":577.03,"free":3060.19},{"epoch":26159363,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":577,"free":3060.21},{"epoch":26159364,"idl":99.88,"recv":0,"send":0.01,"writ":0.21,"used":576.96,"free":3060.25},{"epoch":26159365,"idl":99.83,"recv":0,"send":0,"writ":0.37,"used":576.46,"free":3060.77},{"epoch":26159366,"idl":99.76,"recv":0,"send":0.01,"writ":0.55,"used":576.76,"free":3060.45},{"epoch":26159367,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":576.37,"free":3060.84},{"epoch":26159368,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":576.43,"free":3060.77},{"epoch":26159369,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":576.49,"free":3060.7},{"epoch":26159370,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":576.97,"free":3060.25},{"epoch":26159371,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":577.41,"free":3059.8},{"epoch":26159372,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":576.66,"free":3060.55},{"epoch":26159373,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":576.64,"free":3060.56},{"epoch":26159374,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":576.61,"free":3060.59},{"epoch":26159375,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":577.17,"free":3060.05},{"epoch":26159376,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":577.47,"free":3059.74},{"epoch":26159377,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":576.97,"free":3060.24},{"epoch":26159378,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":576.94,"free":3060.26},{"epoch":26159379,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":576.92,"free":3060.26},{"epoch":26159380,"idl":99.86,"recv":0,"send":0,"writ":0.39,"used":577.14,"free":3060.05},{"epoch":26159381,"idl":99.82,"recv":0,"send":0,"writ":0.57,"used":577.55,"free":3059.64},{"epoch":26159382,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":577.44,"free":3059.75},{"epoch":26159383,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":577.53,"free":3059.65},{"epoch":26159384,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":577.5,"free":3059.69},{"epoch":26159385,"idl":99.9,"recv":0,"send":0,"writ":0.37,"used":577.24,"free":3059.97},{"epoch":26159386,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":577.1,"free":3060.11},{"epoch":26159387,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":575.95,"free":3061.26},{"epoch":26159388,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":575.92,"free":3061.28},{"epoch":26159389,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":575.92,"free":3061.28},{"epoch":26159390,"idl":99.89,"recv":0,"send":0,"writ":0.38,"used":576.63,"free":3060.58},{"epoch":26159391,"idl":99.78,"recv":0,"send":0,"writ":0.5,"used":577.28,"free":3059.93},{"epoch":26159392,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":577.01,"free":3060.2},{"epoch":26159393,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":576.98,"free":3060.22},{"epoch":26159394,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":576.95,"free":3060.25},{"epoch":26159395,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":576.72,"free":3060.49},{"epoch":26159396,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":577.31,"free":3059.89},{"epoch":26159397,"idl":98.3,"recv":0,"send":0,"writ":0.39,"used":577.14,"free":3060.06},{"epoch":26159398,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":577.24,"free":3059.96},{"epoch":26159399,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":577.26,"free":3059.93},{"epoch":26159400,"idl":99.83,"recv":0,"send":0,"writ":0.37,"used":576.31,"free":3060.89},{"epoch":26159401,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":576.24,"free":3060.97},{"epoch":26159402,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":577.18,"free":3060.01},{"epoch":26159403,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":576.91,"free":3060.28},{"epoch":26159404,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":576.88,"free":3060.3},{"epoch":26159405,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":576.89,"free":3060.31},{"epoch":26159406,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":577.03,"free":3060.16},{"epoch":26159407,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":577.96,"free":3059.23},{"epoch":26159408,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":577.71,"free":3059.48},{"epoch":26159409,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":577.19,"free":3059.97},{"epoch":26159410,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":577.17,"free":3060.01},{"epoch":26159411,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":577.15,"free":3060.03},{"epoch":26159412,"idl":94.95,"recv":0.29,"send":0.01,"writ":257.5,"used":588.54,"free":3048.65},{"epoch":26159413,"idl":99.95,"recv":0,"send":0,"writ":0.35,"used":579.41,"free":3057.26},{"epoch":26159414,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":579.51,"free":3057.16},{"epoch":26159415,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":579.74,"free":3056.95},{"epoch":26159416,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":579.72,"free":3056.96},{"epoch":26159417,"idl":99.27,"recv":0,"send":0,"writ":0.66,"used":578.86,"free":3057.82},{"epoch":26159418,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":577.25,"free":3059.45},{"epoch":26159419,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.14,"used":577.22,"free":3059.48},{"epoch":26159420,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":577.21,"free":3059.51},{"epoch":26159421,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":577.31,"free":3059.4},{"epoch":26159422,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":577.7,"free":3059.03},{"epoch":26159423,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":577.31,"free":3059.45},{"epoch":26159424,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":577.28,"free":3059.47},{"epoch":26159425,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":577.26,"free":3059.51},{"epoch":26159426,"idl":99.91,"recv":0,"send":0.01,"writ":0.14,"used":577.23,"free":3059.54},{"epoch":26159427,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":577.74,"free":3059.02},{"epoch":26159428,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":577.84,"free":3058.92},{"epoch":26159429,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":577.69,"free":3059.06},{"epoch":26159430,"idl":99.88,"recv":0,"send":0,"writ":0.26,"used":576.57,"free":3060.19},{"epoch":26159431,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":576.55,"free":3060.21},{"epoch":26159432,"idl":99.77,"recv":0,"send":0,"writ":0.42,"used":577.05,"free":3059.71},{"epoch":26159433,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":576.49,"free":3060.27},{"epoch":26159434,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":576.45,"free":3060.3},{"epoch":26159435,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":576.07,"free":3060.7},{"epoch":26159436,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":576.11,"free":3060.65},{"epoch":26159437,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":576.09,"free":3060.67},{"epoch":26159438,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":576.65,"free":3060.11},{"epoch":26159439,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":576.79,"free":3059.95},{"epoch":26159440,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":575.81,"free":3060.94},{"epoch":26159441,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":575.73,"free":3061.02},{"epoch":26159442,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":575.73,"free":3061.01},{"epoch":26159443,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":577.18,"free":3059.56},{"epoch":26159444,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":576.81,"free":3059.93},{"epoch":26159445,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":576.56,"free":3060.2},{"epoch":26159446,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":576.52,"free":3060.23},{"epoch":26159447,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":576.49,"free":3060.25},{"epoch":26159448,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":577.02,"free":3059.72},{"epoch":26159449,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":576.68,"free":3060.05},{"epoch":26159450,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":576.78,"free":3059.98},{"epoch":26159451,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":576.83,"free":3059.92},{"epoch":26159452,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":576.8,"free":3059.95},{"epoch":26159453,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":577.32,"free":3059.42},{"epoch":26159454,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":576.5,"free":3060.24},{"epoch":26159455,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.31,"used":576.46,"free":3060.3},{"epoch":26159456,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":576.54,"free":3060.21},{"epoch":26159457,"idl":99.17,"recv":0,"send":0,"writ":0.17,"used":576.36,"free":3060.39},{"epoch":26159458,"idl":99.8,"recv":0,"send":0,"writ":0.45,"used":577.01,"free":3059.73},{"epoch":26159459,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":577.04,"free":3059.7},{"epoch":26159460,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":576.29,"free":3060.46},{"epoch":26159461,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":576.22,"free":3060.52},{"epoch":26159462,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":576.2,"free":3060.54},{"epoch":26159463,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":576.83,"free":3059.9},{"epoch":26159464,"idl":99.95,"recv":0,"send":0,"writ":0.3,"used":576.85,"free":3059.88},{"epoch":26159465,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":576.83,"free":3059.92},{"epoch":26159466,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":576.8,"free":3059.95},{"epoch":26159467,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":576.76,"free":3059.98},{"epoch":26159468,"idl":99.79,"recv":0,"send":0,"writ":0.63,"used":577.15,"free":3059.58},{"epoch":26159469,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":576.72,"free":3059.99},{"epoch":26159470,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":576.72,"free":3060.01},{"epoch":26159471,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":576.86,"free":3059.87},{"epoch":26159472,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":576.83,"free":3059.89},{"epoch":26159473,"idl":99.79,"recv":0,"send":0,"writ":0.45,"used":577.45,"free":3059.27},{"epoch":26159474,"idl":99.95,"recv":0,"send":0,"writ":0.3,"used":576.77,"free":3059.94},{"epoch":26159475,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":576.53,"free":3060.2},{"epoch":26159476,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":576.49,"free":3060.24},{"epoch":26159477,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":576.47,"free":3060.25},{"epoch":26159478,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":576.45,"free":3060.27},{"epoch":26159479,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.58,"used":577.42,"free":3059.29},{"epoch":26159480,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":576.84,"free":3059.89},{"epoch":26159481,"idl":99.92,"recv":0,"send":0.01,"writ":0.21,"used":576.78,"free":3059.94},{"epoch":26159482,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":576.74,"free":3059.98},{"epoch":26159483,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":576.71,"free":3060.01},{"epoch":26159484,"idl":99.8,"recv":0,"send":0,"writ":0.63,"used":577.49,"free":3059.22},{"epoch":26159485,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":575.39,"free":3061.34},{"epoch":26159486,"idl":99.93,"recv":0,"send":0.01,"writ":0.17,"used":575.35,"free":3061.38},{"epoch":26159487,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":575.31,"free":3061.41},{"epoch":26159488,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":575.3,"free":3061.42},{"epoch":26159489,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":576.77,"free":3059.94},{"epoch":26159490,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":576.72,"free":3060},{"epoch":26159491,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":576.68,"free":3060.04},{"epoch":26159492,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":576.79,"free":3059.93},{"epoch":26159493,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":576.81,"free":3059.9},{"epoch":26159494,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":577.56,"free":3059.14},{"epoch":26159495,"idl":99.86,"recv":0,"send":0,"writ":0.43,"used":577.03,"free":3059.69},{"epoch":26159496,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":576.99,"free":3059.73},{"epoch":26159497,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":576.96,"free":3059.75},{"epoch":26159498,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":576.93,"free":3059.78},{"epoch":26159499,"idl":99.73,"recv":0,"send":0,"writ":0.75,"used":577.46,"free":3059.23},{"epoch":26159500,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":577.3,"free":3059.4},{"epoch":26159501,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":577.28,"free":3059.41},{"epoch":26159502,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":577.25,"free":3059.44},{"epoch":26159503,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":577.22,"free":3059.47},{"epoch":26159504,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":577.44,"free":3059.26},{"epoch":26159505,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":577.17,"free":3059.53},{"epoch":26159506,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":577.15,"free":3059.55},{"epoch":26159507,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":577.31,"free":3059.39},{"epoch":26159508,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":577.29,"free":3059.41},{"epoch":26159509,"idl":99.81,"recv":0,"send":0,"writ":0.44,"used":578.01,"free":3058.68},{"epoch":26159510,"idl":99.88,"recv":0,"send":0,"writ":0.43,"used":577.01,"free":3059.7},{"epoch":26159511,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":576.97,"free":3059.73},{"epoch":26159512,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":576.94,"free":3059.76},{"epoch":26159513,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":576.9,"free":3059.79},{"epoch":26159514,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":577.49,"free":3059.19},{"epoch":26159515,"idl":99.91,"recv":0,"send":0,"writ":0.41,"used":576.84,"free":3059.86},{"epoch":26159516,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":576.87,"free":3059.83},{"epoch":26159517,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":576.76,"free":3059.93},{"epoch":26159518,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":576.74,"free":3059.95},{"epoch":26159519,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":576.71,"free":3059.97},{"epoch":26159520,"idl":99.74,"recv":0,"send":0,"writ":0.69,"used":577.49,"free":3059.21},{"epoch":26159521,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":577.17,"free":3059.53},{"epoch":26159522,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":577.32,"free":3059.38},{"epoch":26159523,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":577.29,"free":3059.4},{"epoch":26159524,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":577.26,"free":3059.43},{"epoch":26159525,"idl":99.77,"recv":0,"send":0,"writ":0.68,"used":577.37,"free":3059.34},{"epoch":26159526,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":576.97,"free":3059.73},{"epoch":26159527,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":576.94,"free":3059.76},{"epoch":26159528,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.19,"used":577.02,"free":3059.66},{"epoch":26159529,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":577,"free":3059.67},{"epoch":26159530,"idl":99.77,"recv":0,"send":0,"writ":0.66,"used":577.67,"free":3059.03},{"epoch":26159531,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":577.22,"free":3059.47},{"epoch":26159532,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":577.18,"free":3059.51},{"epoch":26159533,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":577.15,"free":3059.54},{"epoch":26159534,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":577.25,"free":3059.43},{"epoch":26159535,"idl":99.72,"recv":0,"send":0,"writ":0.65,"used":577.68,"free":3059.01},{"epoch":26159536,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":577.28,"free":3059.41},{"epoch":26159537,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":577.24,"free":3059.44},{"epoch":26159538,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":577.21,"free":3059.47},{"epoch":26159539,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.15,"used":577.17,"free":3059.5},{"epoch":26159540,"idl":99.72,"recv":0,"send":0,"writ":0.61,"used":577.52,"free":3059.17},{"epoch":26159541,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":577.22,"free":3059.47},{"epoch":26159542,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":577.29,"free":3059.4},{"epoch":26159543,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":577.26,"free":3059.42},{"epoch":26159544,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":577.22,"free":3059.46},{"epoch":26159545,"idl":99.75,"recv":0,"send":0,"writ":0.65,"used":577.66,"free":3059.03},{"epoch":26159546,"idl":99.91,"recv":0,"send":0.01,"writ":0.19,"used":577.43,"free":3059.26},{"epoch":26159547,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":577.4,"free":3059.28},{"epoch":26159548,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":577.45,"free":3059.22},{"epoch":26159549,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":577.52,"free":3059.15},{"epoch":26159550,"idl":99.74,"recv":0,"send":0,"writ":0.55,"used":578.26,"free":3058.43},{"epoch":26159551,"idl":99.93,"recv":0,"send":0,"writ":0.33,"used":577.47,"free":3059.21},{"epoch":26159552,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":577.45,"free":3059.24},{"epoch":26159553,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":577.42,"free":3059.26},{"epoch":26159554,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":577.38,"free":3059.29},{"epoch":26159555,"idl":99.72,"recv":0,"send":0,"writ":0.48,"used":577.58,"free":3059.11},{"epoch":26159556,"idl":99.92,"recv":0,"send":0,"writ":0.38,"used":577.29,"free":3059.4},{"epoch":26159557,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":577.25,"free":3059.43},{"epoch":26159558,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":577.23,"free":3059.44},{"epoch":26159559,"idl":99.83,"recv":0,"send":0,"writ":0.26,"used":577.21,"free":3059.44},{"epoch":26159560,"idl":99.71,"recv":0,"send":0,"writ":0.49,"used":577.77,"free":3058.9},{"epoch":26159561,"idl":99.93,"recv":0,"send":0,"writ":0.4,"used":577.41,"free":3059.25},{"epoch":26159562,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":577.38,"free":3059.28},{"epoch":26159563,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":577.56,"free":3059.1},{"epoch":26159564,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":577.52,"free":3059.13},{"epoch":26159565,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":577.52,"free":3059.15},{"epoch":26159566,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":577.63,"free":3059.04},{"epoch":26159567,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":577.21,"free":3059.45},{"epoch":26159568,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":577.17,"free":3059.48},{"epoch":26159569,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":577.15,"free":3059.5},{"epoch":26159570,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":577.57,"free":3059.1},{"epoch":26159571,"idl":99.8,"recv":0,"send":0,"writ":0.62,"used":578.1,"free":3058.57},{"epoch":26159572,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":577.52,"free":3059.14},{"epoch":26159573,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":577.49,"free":3059.16},{"epoch":26159574,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":577.46,"free":3059.19},{"epoch":26159575,"idl":99.88,"recv":0,"send":0,"writ":0.25,"used":577.69,"free":3058.98},{"epoch":26159576,"idl":99.78,"recv":0,"send":0,"writ":0.52,"used":577.6,"free":3059.06},{"epoch":26159577,"idl":99.94,"recv":0,"send":0,"writ":0.22,"used":576.49,"free":3060.17},{"epoch":26159578,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":576.56,"free":3060.09},{"epoch":26159579,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":576.52,"free":3060.13},{"epoch":26159580,"idl":99.84,"recv":0,"send":0,"writ":0.25,"used":576.77,"free":3059.9},{"epoch":26159581,"idl":99.78,"recv":0,"send":0,"writ":0.53,"used":577.31,"free":3059.35},{"epoch":26159582,"idl":99.95,"recv":0,"send":0,"writ":0.22,"used":576.2,"free":3060.46},{"epoch":26159583,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":576.17,"free":3060.48},{"epoch":26159584,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":576.22,"free":3060.43},{"epoch":26159585,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":576.8,"free":3059.87},{"epoch":26159586,"idl":99.82,"recv":0,"send":0,"writ":0.44,"used":577.13,"free":3059.53},{"epoch":26159587,"idl":99.93,"recv":0,"send":0,"writ":0.31,"used":576.73,"free":3059.93},{"epoch":26159588,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":576.71,"free":3059.94},{"epoch":26159589,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":576.93,"free":3059.7},{"epoch":26159590,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":576.92,"free":3059.72},{"epoch":26159591,"idl":99.77,"recv":0,"send":0,"writ":0.41,"used":577.46,"free":3059.18},{"epoch":26159592,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":577.05,"free":3059.59},{"epoch":26159593,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":577.03,"free":3059.6},{"epoch":26159594,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":577,"free":3059.65},{"epoch":26159595,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":576.75,"free":3059.91},{"epoch":26159596,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":577.06,"free":3059.6},{"epoch":26159597,"idl":99.91,"recv":0,"send":0,"writ":0.46,"used":576.44,"free":3060.21},{"epoch":26159598,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":576.41,"free":3060.24},{"epoch":26159599,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.14,"used":576.48,"free":3060.17},{"epoch":26159600,"idl":99.86,"recv":0,"send":0,"writ":0.25,"used":577.11,"free":3059.55},{"epoch":26159601,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":577.36,"free":3059.32},{"epoch":26159602,"idl":99.91,"recv":0,"send":0,"writ":0.41,"used":576.99,"free":3059.7},{"epoch":26159603,"idl":99.93,"recv":0,"send":0.01,"writ":0.14,"used":576.95,"free":3059.74},{"epoch":26159604,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":576.9,"free":3059.78},{"epoch":26159605,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":576.98,"free":3059.72},{"epoch":26159606,"idl":99.92,"recv":0,"send":0.01,"writ":0.18,"used":577.04,"free":3059.65},{"epoch":26159607,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":577.36,"free":3059.33},{"epoch":26159608,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":576.97,"free":3059.71},{"epoch":26159609,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":576.94,"free":3059.74},{"epoch":26159610,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":575.74,"free":3060.95},{"epoch":26159611,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":575.69,"free":3061},{"epoch":26159612,"idl":99.81,"recv":0,"send":0,"writ":0.6,"used":577.13,"free":3059.55},{"epoch":26159613,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":576.99,"free":3059.69},{"epoch":26159614,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":576.97,"free":3059.7},{"epoch":26159615,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":576.81,"free":3059.88},{"epoch":26159616,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":576.75,"free":3059.94},{"epoch":26159617,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":577.17,"free":3059.52},{"epoch":26159618,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":577.04,"free":3059.64},{"epoch":26159619,"idl":99.87,"recv":0,"send":0,"writ":0.36,"used":576.98,"free":3059.68},{"epoch":26159620,"idl":99.88,"recv":0,"send":0,"writ":0.27,"used":576.97,"free":3059.7},{"epoch":26159621,"idl":99.92,"recv":0.01,"send":0.02,"writ":0.16,"used":577.04,"free":3059.63},{"epoch":26159622,"idl":99.77,"recv":0,"send":0.01,"writ":0.69,"used":577.34,"free":3059.33},{"epoch":26159623,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":577.03,"free":3059.63},{"epoch":26159624,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":576.97,"free":3059.7},{"epoch":26159625,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":577.2,"free":3059.5},{"epoch":26159626,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":577.32,"free":3059.37},{"epoch":26159627,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":577.57,"free":3059.12},{"epoch":26159628,"idl":99.91,"recv":0,"send":0,"writ":0.43,"used":577.19,"free":3059.49},{"epoch":26159629,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":577.19,"free":3059.48},{"epoch":26159630,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":577.02,"free":3059.67},{"epoch":26159631,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":576.95,"free":3059.74},{"epoch":26159632,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":577.53,"free":3059.15},{"epoch":26159633,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":577.31,"free":3059.37},{"epoch":26159634,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":577.24,"free":3059.43},{"epoch":26159635,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":576.99,"free":3059.69},{"epoch":26159636,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":577.04,"free":3059.64},{"epoch":26159637,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":576.97,"free":3059.7},{"epoch":26159638,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":577.1,"free":3059.57},{"epoch":26159639,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":576.77,"free":3059.9},{"epoch":26159640,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":577.23,"free":3059.45},{"epoch":26159641,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":577.2,"free":3059.48},{"epoch":26159642,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":577.23,"free":3059.45},{"epoch":26159643,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":576.65,"free":3060.02},{"epoch":26159644,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":576.19,"free":3060.47},{"epoch":26159645,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":577,"free":3059.67},{"epoch":26159646,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":576.98,"free":3059.69},{"epoch":26159647,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":576.93,"free":3059.74},{"epoch":26159648,"idl":99.78,"recv":0,"send":0,"writ":0.56,"used":577.73,"free":3058.93},{"epoch":26159649,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":577.2,"free":3059.44},{"epoch":26159650,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":577.47,"free":3059.19},{"epoch":26159651,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":577.49,"free":3059.16},{"epoch":26159652,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":577.42,"free":3059.22},{"epoch":26159653,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":577.82,"free":3058.82},{"epoch":26159654,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":577.26,"free":3059.4},{"epoch":26159655,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":577.31,"free":3059.36},{"epoch":26159656,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.18,"used":577.17,"free":3059.49},{"epoch":26159657,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":577.3,"free":3059.36},{"epoch":26159658,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":577.71,"free":3058.95},{"epoch":26159659,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.18,"used":577.43,"free":3059.22},{"epoch":26159660,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":577.23,"free":3059.44},{"epoch":26159661,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":577.24,"free":3059.42},{"epoch":26159662,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":577.17,"free":3059.5},{"epoch":26159663,"idl":99.76,"recv":0,"send":0,"writ":0.45,"used":577.49,"free":3059.16},{"epoch":26159664,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":576.96,"free":3059.68},{"epoch":26159665,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":576.68,"free":3059.98},{"epoch":26159666,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.16,"used":576.74,"free":3059.92},{"epoch":26159667,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":576.73,"free":3059.93},{"epoch":26159668,"idl":99.76,"recv":0,"send":0,"writ":0.51,"used":577.55,"free":3059.1},{"epoch":26159669,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":577.74,"free":3058.9},{"epoch":26159670,"idl":99.87,"recv":0,"send":0,"writ":0.26,"used":577.22,"free":3059.44},{"epoch":26159671,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":577.14,"free":3059.52},{"epoch":26159672,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":577.27,"free":3059.39},{"epoch":26159673,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":577.81,"free":3058.84},{"epoch":26159674,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":577.38,"free":3059.27},{"epoch":26159675,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":577.49,"free":3059.17},{"epoch":26159676,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":577.49,"free":3059.17},{"epoch":26159677,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":577.42,"free":3059.24},{"epoch":26159678,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":577.46,"free":3059.19},{"epoch":26159679,"idl":99.66,"recv":0,"send":0,"writ":0.73,"used":577.85,"free":3058.77},{"epoch":26159680,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":577.43,"free":3059.21},{"epoch":26159681,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":577.45,"free":3059.19},{"epoch":26159682,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":577.48,"free":3059.16},{"epoch":26159683,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":577.4,"free":3059.23},{"epoch":26159684,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":577.59,"free":3059.04},{"epoch":26159685,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":577.22,"free":3059.42},{"epoch":26159686,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":577.16,"free":3059.48},{"epoch":26159687,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":577.2,"free":3059.43},{"epoch":26159688,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":577.21,"free":3059.42},{"epoch":26159689,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":577.28,"free":3059.35},{"epoch":26159690,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":577.01,"free":3059.63},{"epoch":26159691,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":576.95,"free":3059.69},{"epoch":26159692,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":576.89,"free":3059.74},{"epoch":26159693,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":577,"free":3059.63},{"epoch":26159694,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":577.87,"free":3058.76},{"epoch":26159695,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":577.15,"free":3059.5},{"epoch":26159696,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":577.28,"free":3059.36},{"epoch":26159697,"idl":99.88,"recv":0,"send":0,"writ":0.21,"used":576.97,"free":3059.67},{"epoch":26159698,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":576.93,"free":3059.7},{"epoch":26159699,"idl":99.55,"recv":0.01,"send":0.01,"writ":0.63,"used":577.58,"free":3059.05},{"epoch":26159700,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":576.68,"free":3059.97},{"epoch":26159701,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":576.74,"free":3059.9},{"epoch":26159702,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":576.73,"free":3059.9},{"epoch":26159703,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":576.67,"free":3059.97},{"epoch":26159704,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":577.27,"free":3059.35},{"epoch":26159705,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":577.7,"free":3058.94},{"epoch":26159706,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":577.64,"free":3059},{"epoch":26159707,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":577.75,"free":3058.89},{"epoch":26159708,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":577.67,"free":3058.96},{"epoch":26159709,"idl":99.73,"recv":0,"send":0,"writ":0.63,"used":577.91,"free":3058.7},{"epoch":26159710,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":577.5,"free":3059.12},{"epoch":26159711,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":577.43,"free":3059.19},{"epoch":26159712,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":577.37,"free":3059.24},{"epoch":26159713,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":577.49,"free":3059.12},{"epoch":26159714,"idl":99.77,"recv":0,"send":0,"writ":0.43,"used":577.77,"free":3058.85},{"epoch":26159715,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":577.42,"free":3059.22},{"epoch":26159716,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":577.53,"free":3059.11},{"epoch":26159717,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":577.7,"free":3058.93},{"epoch":26159718,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":577.64,"free":3058.99},{"epoch":26159719,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.15,"used":577.72,"free":3058.9},{"epoch":26159720,"idl":99.32,"recv":0,"send":0,"writ":0.7,"used":578.85,"free":3057.78},{"epoch":26159721,"idl":93.94,"recv":2.17,"send":0.01,"writ":77.09,"used":593.59,"free":3032.88},{"epoch":26159722,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":580.14,"free":3053},{"epoch":26159723,"idl":99.93,"recv":0.01,"send":0,"writ":0.16,"used":580.18,"free":3052.96},{"epoch":26159724,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":580.18,"free":3052.97},{"epoch":26159725,"idl":98.72,"recv":0.01,"send":0,"writ":16.07,"used":582.21,"free":3051.13},{"epoch":26159726,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.26,"used":578.5,"free":3054.4},{"epoch":26159727,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":577.64,"free":3055.27},{"epoch":26159728,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":577.63,"free":3055.27},{"epoch":26159729,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":577.69,"free":3055.22},{"epoch":26159730,"idl":99.65,"recv":0,"send":0,"writ":0.69,"used":578.11,"free":3054.81},{"epoch":26159731,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":577.93,"free":3054.99},{"epoch":26159732,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":577.96,"free":3054.96},{"epoch":26159733,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":577.89,"free":3055.02},{"epoch":26159734,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":577.92,"free":3054.98},{"epoch":26159735,"idl":99.7,"recv":0,"send":0,"writ":0.76,"used":578.08,"free":3054.83},{"epoch":26159736,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":577.66,"free":3055.26},{"epoch":26159737,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":577.01,"free":3055.9},{"epoch":26159738,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":576.97,"free":3055.94},{"epoch":26159739,"idl":99.82,"recv":0,"send":0,"writ":0.35,"used":576.94,"free":3055.94},{"epoch":26159740,"idl":99.64,"recv":0,"send":0,"writ":0.63,"used":577.76,"free":3055.13},{"epoch":26159741,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":576.95,"free":3055.94},{"epoch":26159742,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":576.88,"free":3056},{"epoch":26159743,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":576.96,"free":3055.92},{"epoch":26159744,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":576.89,"free":3056.01},{"epoch":26159745,"idl":99.65,"recv":0,"send":0,"writ":0.7,"used":577.08,"free":3055.83},{"epoch":26159746,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":576.96,"free":3055.95},{"epoch":26159747,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":576.88,"free":3056.02},{"epoch":26159748,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":576.93,"free":3055.97},{"epoch":26159749,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":576.93,"free":3055.97},{"epoch":26159750,"idl":99.69,"recv":0,"send":0,"writ":0.76,"used":576.51,"free":3056.39},{"epoch":26159751,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":576.91,"free":3056},{"epoch":26159752,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":576.95,"free":3055.95},{"epoch":26159753,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":576.89,"free":3056},{"epoch":26159754,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":576.96,"free":3055.93},{"epoch":26159755,"idl":99.66,"recv":0,"send":0,"writ":0.54,"used":577.29,"free":3055.61},{"epoch":26159756,"idl":99.86,"recv":0,"send":0,"writ":0.37,"used":576.87,"free":3056.03},{"epoch":26159757,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":576.99,"free":3055.91},{"epoch":26159758,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":576.91,"free":3055.98},{"epoch":26159759,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":576.86,"free":3056.03},{"epoch":26159760,"idl":99.81,"recv":0,"send":0,"writ":0.28,"used":577.23,"free":3055.67},{"epoch":26159761,"idl":99.7,"recv":0,"send":0,"writ":0.63,"used":576.77,"free":3056.13},{"epoch":26159762,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":576.12,"free":3056.77},{"epoch":26159763,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":576.21,"free":3056.69},{"epoch":26159764,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":576.19,"free":3056.71},{"epoch":26159765,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":577.1,"free":3055.81},{"epoch":26159766,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":577.22,"free":3055.69},{"epoch":26159767,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":576.66,"free":3056.24},{"epoch":26159768,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":576.62,"free":3056.28},{"epoch":26159769,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":577.2,"free":3055.68},{"epoch":26159770,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":577.14,"free":3055.75},{"epoch":26159771,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":577.5,"free":3055.38},{"epoch":26159772,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":577.21,"free":3055.67},{"epoch":26159773,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":577.15,"free":3055.73},{"epoch":26159774,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":577.14,"free":3055.73},{"epoch":26159775,"idl":99.78,"recv":0,"send":0,"writ":0.33,"used":576.72,"free":3056.17},{"epoch":26159776,"idl":95.1,"recv":0.3,"send":0.01,"writ":77.98,"used":590.46,"free":3042.7},{"epoch":26159777,"idl":99.79,"recv":0,"send":0,"writ":179.95,"used":578.34,"free":3054.65},{"epoch":26159778,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":578.38,"free":3054.6},{"epoch":26159779,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.15,"used":578.3,"free":3054.68},{"epoch":26159780,"idl":99.56,"recv":0,"send":0,"writ":0.29,"used":578.9,"free":3054.1},{"epoch":26159781,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":578.94,"free":3054.07},{"epoch":26159782,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":577.27,"free":3055.76},{"epoch":26159783,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":577.22,"free":3055.8},{"epoch":26159784,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":577.15,"free":3055.87},{"epoch":26159785,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":576.89,"free":3056.15},{"epoch":26159786,"idl":99.7,"recv":0.01,"send":0.01,"writ":0.59,"used":577.41,"free":3055.62},{"epoch":26159787,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":577.19,"free":3055.83},{"epoch":26159788,"idl":99.79,"recv":0,"send":0,"writ":0.15,"used":577.13,"free":3055.89},{"epoch":26159789,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":577.24,"free":3055.78},{"epoch":26159790,"idl":99.78,"recv":0,"send":0,"writ":0.39,"used":576.72,"free":3056.32},{"epoch":26159791,"idl":99.7,"recv":0,"send":0,"writ":0.53,"used":577.14,"free":3055.89},{"epoch":26159792,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":577.42,"free":3055.6},{"epoch":26159793,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":577.46,"free":3055.56},{"epoch":26159794,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":577.39,"free":3055.62},{"epoch":26159795,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":577.44,"free":3055.59},{"epoch":26159796,"idl":99.7,"recv":0,"send":0,"writ":0.32,"used":577.82,"free":3055.21},{"epoch":26159797,"idl":99.81,"recv":0,"send":0,"writ":0.42,"used":577.19,"free":3055.83},{"epoch":26159798,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":577.12,"free":3055.9},{"epoch":26159799,"idl":99.78,"recv":0,"send":0,"writ":0.28,"used":577.47,"free":3055.53},{"epoch":26159800,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":577.17,"free":3055.84},{"epoch":26159801,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":577.14,"free":3055.87},{"epoch":26159802,"idl":99.68,"recv":0,"send":0,"writ":0.56,"used":577.92,"free":3055.08},{"epoch":26159803,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":577.41,"free":3055.59},{"epoch":26159804,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":577.35,"free":3055.64},{"epoch":26159805,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":577.25,"free":3055.77},{"epoch":26159806,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":577.19,"free":3055.82},{"epoch":26159807,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":577.64,"free":3055.36},{"epoch":26159808,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.19,"used":577.44,"free":3055.56},{"epoch":26159809,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":577.42,"free":3055.58},{"epoch":26159810,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":577.67,"free":3055.35},{"epoch":26159811,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":577.74,"free":3055.27},{"epoch":26159812,"idl":99.71,"recv":0,"send":0.01,"writ":0.54,"used":578.04,"free":3054.97},{"epoch":26159813,"idl":99.85,"recv":0,"send":0.01,"writ":0.19,"used":577.63,"free":3055.38},{"epoch":26159814,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":577.6,"free":3055.4},{"epoch":26159815,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":577.24,"free":3055.78},{"epoch":26159816,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":577.26,"free":3055.76},{"epoch":26159817,"idl":99.7,"recv":0,"send":0,"writ":0.62,"used":577.7,"free":3055.31},{"epoch":26159818,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":576.95,"free":3056.05},{"epoch":26159819,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":576.93,"free":3056.07},{"epoch":26159820,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":577.64,"free":3055.37},{"epoch":26159821,"idl":99.71,"recv":0,"send":0,"writ":0.14,"used":577.61,"free":3055.4},{"epoch":26159822,"idl":99.72,"recv":0,"send":0,"writ":0.52,"used":578.1,"free":3054.91},{"epoch":26159823,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":577.5,"free":3055.5},{"epoch":26159824,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":577.47,"free":3055.53},{"epoch":26159825,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":577.47,"free":3055.55},{"epoch":26159826,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":577.43,"free":3055.58},{"epoch":26159827,"idl":99.74,"recv":0,"send":0,"writ":0.42,"used":577.71,"free":3055.3},{"epoch":26159828,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":577.13,"free":3055.87},{"epoch":26159829,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":577.58,"free":3055.4},{"epoch":26159830,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":577.76,"free":3055.23},{"epoch":26159831,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":577.73,"free":3055.26},{"epoch":26159832,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":578,"free":3054.97},{"epoch":26159833,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":577.43,"free":3055.55},{"epoch":26159834,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":577.39,"free":3055.6},{"epoch":26159835,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":577.39,"free":3055.63},{"epoch":26159836,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":577.35,"free":3055.67},{"epoch":26159837,"idl":99.82,"recv":0,"send":0,"writ":0.2,"used":577.16,"free":3055.86},{"epoch":26159838,"idl":99.68,"recv":0,"send":0,"writ":0.55,"used":578.07,"free":3054.94},{"epoch":26159839,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.16,"used":577.68,"free":3055.32},{"epoch":26159840,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":577.42,"free":3055.6},{"epoch":26159841,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":577.38,"free":3055.64},{"epoch":26159842,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":577.35,"free":3055.66},{"epoch":26159843,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":577.98,"free":3055.04},{"epoch":26159844,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":577.49,"free":3055.54},{"epoch":26159845,"idl":99.77,"recv":0,"send":0,"writ":0.35,"used":577.23,"free":3055.81},{"epoch":26159846,"idl":99.84,"recv":0,"send":0.01,"writ":0.18,"used":577.19,"free":3055.85},{"epoch":26159847,"idl":99.84,"recv":0,"send":0.01,"writ":0.19,"used":577.15,"free":3055.89},{"epoch":26159848,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":577.88,"free":3055.16},{"epoch":26159849,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":577.66,"free":3055.39},{"epoch":26159850,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":576.17,"free":3056.89},{"epoch":26159851,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":576.01,"free":3057.05},{"epoch":26159852,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":575.98,"free":3057.07},{"epoch":26159853,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":577.13,"free":3055.92},{"epoch":26159854,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":577.65,"free":3055.4},{"epoch":26159855,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":577.4,"free":3055.67},{"epoch":26159856,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":577.39,"free":3055.67},{"epoch":26159857,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":577.52,"free":3055.54},{"epoch":26159858,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":577.95,"free":3055.1},{"epoch":26159859,"idl":99.78,"recv":0,"send":0,"writ":0.29,"used":577.46,"free":3055.56},{"epoch":26159860,"idl":99.78,"recv":0,"send":0,"writ":0.27,"used":576.98,"free":3056.06},{"epoch":26159861,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":576.93,"free":3056.11},{"epoch":26159862,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":576.89,"free":3056.14},{"epoch":26159863,"idl":99.72,"recv":0,"send":0,"writ":0.4,"used":577.46,"free":3055.57},{"epoch":26159864,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":577.66,"free":3055.37},{"epoch":26159865,"idl":99.75,"recv":0,"send":0,"writ":0.29,"used":576.34,"free":3056.7},{"epoch":26159866,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":576.25,"free":3056.8},{"epoch":26159867,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":576.22,"free":3056.83},{"epoch":26159868,"idl":99.66,"recv":0,"send":0,"writ":0.51,"used":576.83,"free":3056.21},{"epoch":26159869,"idl":99.83,"recv":0,"send":0,"writ":0.22,"used":577.14,"free":3055.9},{"epoch":26159870,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":577.63,"free":3055.43},{"epoch":26159871,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":577.6,"free":3055.45},{"epoch":26159872,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":577.77,"free":3055.28},{"epoch":26159873,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":577.73,"free":3055.31},{"epoch":26159874,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":578.05,"free":3054.98},{"epoch":26159875,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":577.67,"free":3055.39},{"epoch":26159876,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":577.63,"free":3055.42},{"epoch":26159877,"idl":99.82,"recv":0,"send":0,"writ":0.21,"used":577.34,"free":3055.7},{"epoch":26159878,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":577.18,"free":3055.86},{"epoch":26159879,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":577.94,"free":3055.09},{"epoch":26159880,"idl":99.79,"recv":0,"send":0,"writ":0.38,"used":577.95,"free":3055.1},{"epoch":26159881,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":577.95,"free":3055.1},{"epoch":26159882,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":577.89,"free":3055.15},{"epoch":26159883,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":577.87,"free":3055.17},{"epoch":26159884,"idl":99.7,"recv":0,"send":0,"writ":0.56,"used":578.3,"free":3054.74},{"epoch":26159885,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":577.9,"free":3055.15},{"epoch":26159886,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":577.85,"free":3055.2},{"epoch":26159887,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":577.98,"free":3055.06},{"epoch":26159888,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":577.93,"free":3055.11},{"epoch":26159889,"idl":99.6,"recv":0,"send":0,"writ":0.68,"used":578.4,"free":3054.62},{"epoch":26159890,"idl":99.69,"recv":0,"send":0,"writ":0.3,"used":577.03,"free":3056},{"epoch":26159891,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":576.78,"free":3056.25},{"epoch":26159892,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":576.67,"free":3056.36},{"epoch":26159893,"idl":96.8,"recv":0.02,"send":0.01,"writ":77.56,"used":584.03,"free":3049.72},{"epoch":26159894,"idl":99.68,"recv":0,"send":0,"writ":0.52,"used":579.76,"free":3053.02},{"epoch":26159895,"idl":99.75,"recv":0,"send":0,"writ":0.36,"used":579.72,"free":3053.08},{"epoch":26159896,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":579.73,"free":3053.06},{"epoch":26159897,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":579.45,"free":3053.34},{"epoch":26159898,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":577.95,"free":3054.89},{"epoch":26159899,"idl":99.69,"recv":0.01,"send":0.01,"writ":0.43,"used":577.59,"free":3055.26},{"epoch":26159900,"idl":99.77,"recv":0,"send":0,"writ":0.44,"used":577.07,"free":3055.8},{"epoch":26159901,"idl":99.44,"recv":0,"send":0,"writ":0.18,"used":577.01,"free":3055.85},{"epoch":26159902,"idl":99.43,"recv":0,"send":0,"writ":0.16,"used":577.13,"free":3055.73},{"epoch":26159903,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":577.07,"free":3055.79},{"epoch":26159904,"idl":99.69,"recv":0,"send":0,"writ":0.46,"used":577.35,"free":3055.51},{"epoch":26159905,"idl":99.75,"recv":0,"send":0,"writ":0.46,"used":577.08,"free":3055.83},{"epoch":26159906,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.16,"used":577.1,"free":3055.8},{"epoch":26159907,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":577.03,"free":3055.87},{"epoch":26159908,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":577.04,"free":3055.86},{"epoch":26159909,"idl":99.72,"recv":0,"send":0,"writ":0.39,"used":577.81,"free":3055.08},{"epoch":26159910,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":577.09,"free":3055.82},{"epoch":26159911,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":577.04,"free":3055.87},{"epoch":26159912,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":577.15,"free":3055.75},{"epoch":26159913,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":577.09,"free":3055.81},{"epoch":26159914,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":577.03,"free":3055.86},{"epoch":26159915,"idl":99.63,"recv":0,"send":0,"writ":0.74,"used":577.65,"free":3055.26},{"epoch":26159916,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":577.35,"free":3055.55},{"epoch":26159917,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":577.3,"free":3055.6},{"epoch":26159918,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":577.29,"free":3055.6},{"epoch":26159919,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":576.89,"free":3055.99},{"epoch":26159920,"idl":99.67,"recv":0,"send":0,"writ":0.69,"used":577.45,"free":3055.44},{"epoch":26159921,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":577.04,"free":3055.85},{"epoch":26159922,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":577.06,"free":3055.82},{"epoch":26159923,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":577.11,"free":3055.77},{"epoch":26159924,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":577.05,"free":3055.83},{"epoch":26159925,"idl":99.77,"recv":0,"send":0,"writ":0.7,"used":577.63,"free":3055.26},{"epoch":26159926,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":577.37,"free":3055.52},{"epoch":26159927,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":577.3,"free":3055.59},{"epoch":26159928,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":577.26,"free":3055.62},{"epoch":26159929,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":577.36,"free":3055.52},{"epoch":26159930,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":577.78,"free":3055.11},{"epoch":26159931,"idl":99.93,"recv":0,"send":0,"writ":0.26,"used":577.02,"free":3055.87},{"epoch":26159932,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":577.12,"free":3055.76},{"epoch":26159933,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":577.12,"free":3055.76},{"epoch":26159934,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":577.06,"free":3055.82},{"epoch":26159935,"idl":99.74,"recv":0,"send":0,"writ":0.75,"used":576.86,"free":3056.03},{"epoch":26159936,"idl":99.57,"recv":0.04,"send":2.45,"writ":0.28,"used":576.08,"free":3056.79},{"epoch":26159937,"idl":99.82,"recv":0.02,"send":0.53,"writ":0.26,"used":577.28,"free":3055.52},{"epoch":26159938,"idl":99.92,"recv":0.01,"send":0,"writ":0.16,"used":577.89,"free":3054.87},{"epoch":26159939,"idl":99.31,"recv":0.06,"send":4.75,"writ":0.32,"used":577.89,"free":3054.83},{"epoch":26159940,"idl":99.58,"recv":0,"send":0,"writ":0.87,"used":573.26,"free":3059.6},{"epoch":26159941,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":569.37,"free":3063.6},{"epoch":26159942,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.5,"free":3063.47},{"epoch":26159943,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.49,"free":3063.47},{"epoch":26159944,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":569.47,"free":3063.48},{"epoch":26159945,"idl":99.73,"recv":0,"send":0,"writ":0.71,"used":570.14,"free":3062.85},{"epoch":26159946,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.7,"free":3063.3},{"epoch":26159947,"idl":99.96,"recv":0,"send":0,"writ":0.13,"used":569.68,"free":3063.32},{"epoch":26159948,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":569.66,"free":3063.33},{"epoch":26159949,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":569.64,"free":3063.33},{"epoch":26159950,"idl":99.72,"recv":0,"send":0,"writ":0.6,"used":570.13,"free":3062.85},{"epoch":26159951,"idl":99.93,"recv":0,"send":0,"writ":0.28,"used":569.36,"free":3063.62},{"epoch":26159952,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":569.32,"free":3063.65},{"epoch":26159953,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":569.4,"free":3063.57},{"epoch":26159954,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.5,"free":3063.46},{"epoch":26159955,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":568.33,"free":3064.65},{"epoch":26159956,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":569.38,"free":3063.6},{"epoch":26159957,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":568.97,"free":3064.01},{"epoch":26159958,"idl":99.91,"recv":0.01,"send":0.02,"writ":0.17,"used":568.93,"free":3064.04},{"epoch":26159959,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.15,"used":568.88,"free":3064.08},{"epoch":26159960,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":569.12,"free":3063.86},{"epoch":26159961,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":569.88,"free":3063.1},{"epoch":26159962,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":569.76,"free":3063.22},{"epoch":26159963,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":569.72,"free":3063.25},{"epoch":26159964,"idl":99.4,"recv":0.11,"send":4.21,"writ":0.27,"used":569.42,"free":3063.52},{"epoch":26159965,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":569.28,"free":3063.63},{"epoch":26159966,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":569.79,"free":3063.11},{"epoch":26159967,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":569.7,"free":3063.2},{"epoch":26159968,"idl":99.63,"recv":0.07,"send":2.59,"writ":0.26,"used":569.63,"free":3063.25},{"epoch":26159969,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":569.6,"free":3063.25},{"epoch":26159970,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":569.62,"free":3063.25},{"epoch":26159971,"idl":99.78,"recv":0,"send":0,"writ":0.51,"used":570.42,"free":3062.44},{"epoch":26159972,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":569.81,"free":3063.05},{"epoch":26159973,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":569.79,"free":3063.06},{"epoch":26159974,"idl":99.78,"recv":0.04,"send":1.23,"writ":0.17,"used":569.7,"free":3063.14},{"epoch":26159975,"idl":99.92,"recv":0,"send":0,"writ":0.33,"used":569.6,"free":3063.25},{"epoch":26159976,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":570.05,"free":3062.8},{"epoch":26159977,"idl":99.94,"recv":0,"send":0,"writ":0.32,"used":569.81,"free":3063.03},{"epoch":26159978,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":569.8,"free":3063.03},{"epoch":26159979,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":569.29,"free":3063.52},{"epoch":26159980,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":569.77,"free":3063.06},{"epoch":26159981,"idl":99.58,"recv":0.05,"send":1.77,"writ":0.48,"used":570.12,"free":3062.69},{"epoch":26159982,"idl":99.94,"recv":0,"send":0,"writ":0.35,"used":569.81,"free":3063},{"epoch":26159983,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":569.78,"free":3063.02},{"epoch":26159984,"idl":99.88,"recv":0.01,"send":0.44,"writ":0.21,"used":569.74,"free":3063.07},{"epoch":26159985,"idl":99.78,"recv":0.01,"send":0.41,"writ":0.32,"used":569.71,"free":3063.11},{"epoch":26159986,"idl":99.66,"recv":0.03,"send":1.24,"writ":0.64,"used":570.09,"free":3062.71},{"epoch":26159987,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":569.71,"free":3063.09},{"epoch":26159988,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.68,"free":3063.11},{"epoch":26159989,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":569.65,"free":3063.13},{"epoch":26159990,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":569.66,"free":3063.14},{"epoch":26159991,"idl":99.78,"recv":0,"send":0,"writ":0.35,"used":570.24,"free":3062.56},{"epoch":26159992,"idl":99.95,"recv":0,"send":0,"writ":0.39,"used":568.82,"free":3063.97},{"epoch":26159993,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":568.79,"free":3063.99},{"epoch":26159994,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":568.78,"free":3064.01},{"epoch":26159995,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":569.54,"free":3063.25},{"epoch":26159996,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":569.49,"free":3063.3},{"epoch":26159997,"idl":99.78,"recv":0,"send":0,"writ":0.61,"used":569.49,"free":3063.3},{"epoch":26159998,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":568.94,"free":3063.84},{"epoch":26159999,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":568.94,"free":3063.84},{"epoch":26160000,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":569.64,"free":3063.16},{"epoch":26160001,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":569.66,"free":3063.13},{"epoch":26160002,"idl":99.64,"recv":0.01,"send":0.41,"writ":0.61,"used":569.92,"free":3062.87},{"epoch":26160003,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":569.49,"free":3063.29},{"epoch":26160004,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":569.47,"free":3063.3},{"epoch":26160005,"idl":99.89,"recv":0,"send":0,"writ":0.37,"used":568.47,"free":3064.32},{"epoch":26160006,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":568.39,"free":3064.39},{"epoch":26160007,"idl":99.79,"recv":0,"send":0,"writ":0.6,"used":569.99,"free":3062.79},{"epoch":26160008,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":569.77,"free":3063.01},{"epoch":26160009,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":569.75,"free":3063},{"epoch":26160010,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":569.99,"free":3062.78},{"epoch":26160011,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":569.97,"free":3062.8},{"epoch":26160012,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":569.55,"free":3063.21},{"epoch":26160013,"idl":99.8,"recv":0.02,"send":0.82,"writ":0.26,"used":568.59,"free":3064.15},{"epoch":26160014,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":568.76,"free":3063.98},{"epoch":26160015,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":569.5,"free":3063.25},{"epoch":26160016,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":569.48,"free":3063.27},{"epoch":26160017,"idl":99.8,"recv":0,"send":0,"writ":0.45,"used":570.17,"free":3062.57},{"epoch":26160018,"idl":99.91,"recv":0,"send":0,"writ":0.33,"used":569.66,"free":3063.08},{"epoch":26160019,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.18,"used":569.66,"free":3063.07},{"epoch":26160020,"idl":99.91,"recv":0,"send":0,"writ":0.32,"used":569.75,"free":3063},{"epoch":26160021,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":569.71,"free":3063.03},{"epoch":26160022,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":570.13,"free":3062.61},{"epoch":26160023,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":569.91,"free":3062.82},{"epoch":26160024,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":569.88,"free":3062.85},{"epoch":26160025,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":570.13,"free":3062.62},{"epoch":26160026,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.11,"free":3062.64},{"epoch":26160027,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":570.43,"free":3062.31},{"epoch":26160028,"idl":99.93,"recv":0,"send":0,"writ":0.33,"used":570.16,"free":3062.57},{"epoch":26160029,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":570.26,"free":3062.47},{"epoch":26160030,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":570.01,"free":3062.74},{"epoch":26160031,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":569.99,"free":3062.75},{"epoch":26160032,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":570.35,"free":3062.39},{"epoch":26160033,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.2,"free":3062.53},{"epoch":26160034,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":570.18,"free":3062.54},{"epoch":26160035,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":569.69,"free":3063.05},{"epoch":26160036,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":569.63,"free":3063.11},{"epoch":26160037,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":569.68,"free":3063.05},{"epoch":26160038,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":570.11,"free":3062.61},{"epoch":26160039,"idl":99.9,"recv":0,"send":0,"writ":0.38,"used":569.97,"free":3062.73},{"epoch":26160040,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":570.23,"free":3062.49},{"epoch":26160041,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.2,"free":3062.52},{"epoch":26160042,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":570.18,"free":3062.53},{"epoch":26160043,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":570.66,"free":3062.05},{"epoch":26160044,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":569.91,"free":3062.81},{"epoch":26160045,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":570,"free":3062.74},{"epoch":26160046,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":569.37,"free":3063.36},{"epoch":26160047,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":569.43,"free":3063.3},{"epoch":26160048,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":569.86,"free":3062.86},{"epoch":26160049,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":569.49,"free":3063.23},{"epoch":26160050,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":569.49,"free":3063.24},{"epoch":26160051,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":569.46,"free":3063.27},{"epoch":26160052,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":569.44,"free":3063.28},{"epoch":26160053,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":569.77,"free":3062.94},{"epoch":26160054,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":569.41,"free":3063.3},{"epoch":26160055,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":569.4,"free":3063.32},{"epoch":26160056,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":569.39,"free":3063.33},{"epoch":26160057,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":569.2,"free":3063.53},{"epoch":26160058,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":569.94,"free":3062.79},{"epoch":26160059,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":569.4,"free":3063.33},{"epoch":26160060,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":569.52,"free":3063.23},{"epoch":26160061,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":569.49,"free":3063.25},{"epoch":26160062,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":569.47,"free":3063.27},{"epoch":26160063,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":569.98,"free":3062.76},{"epoch":26160064,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.43,"free":3063.3},{"epoch":26160065,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":569.19,"free":3063.56},{"epoch":26160066,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.15,"free":3063.59},{"epoch":26160067,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":569.13,"free":3063.61},{"epoch":26160068,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":569.52,"free":3063.22},{"epoch":26160069,"idl":99.85,"recv":0,"send":0,"writ":0.44,"used":569.36,"free":3063.34},{"epoch":26160070,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":569.52,"free":3063.2},{"epoch":26160071,"idl":99.93,"recv":0.02,"send":0.13,"writ":0.23,"used":569.45,"free":3063.27},{"epoch":26160072,"idl":99.89,"recv":0.04,"send":1.76,"writ":0.46,"used":569.55,"free":3063.14},{"epoch":26160073,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":569.96,"free":3062.73},{"epoch":26160074,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.15,"free":3062.55},{"epoch":26160075,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":570.21,"free":3062.52},{"epoch":26160076,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.18,"free":3062.54},{"epoch":26160077,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":569.93,"free":3062.78},{"epoch":26160078,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":569.89,"free":3062.82},{"epoch":26160079,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.55,"used":570.44,"free":3062.26},{"epoch":26160080,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":570.11,"free":3062.61},{"epoch":26160081,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.08,"free":3062.64},{"epoch":26160082,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.06,"free":3062.65},{"epoch":26160083,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.04,"free":3062.67},{"epoch":26160084,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":570.7,"free":3062},{"epoch":26160085,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":570.47,"free":3062.25},{"epoch":26160086,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":570.44,"free":3062.27},{"epoch":26160087,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":570.44,"free":3062.27},{"epoch":26160088,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.41,"free":3062.3},{"epoch":26160089,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":570.45,"free":3062.27},{"epoch":26160090,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":570.14,"free":3062.59},{"epoch":26160091,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.13,"free":3062.6},{"epoch":26160092,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.1,"free":3062.63},{"epoch":26160093,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":570.07,"free":3062.65},{"epoch":26160094,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":570.43,"free":3062.29},{"epoch":26160095,"idl":99.91,"recv":0,"send":0,"writ":0.34,"used":570.45,"free":3062.29},{"epoch":26160096,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":570.48,"free":3062.26},{"epoch":26160097,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.44,"free":3062.29},{"epoch":26160098,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.43,"free":3062.3},{"epoch":26160099,"idl":99.68,"recv":0,"send":0,"writ":0.63,"used":571.19,"free":3061.51},{"epoch":26160100,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":570.17,"free":3062.55},{"epoch":26160101,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":570.14,"free":3062.58},{"epoch":26160102,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":570.1,"free":3062.61},{"epoch":26160103,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.1,"free":3062.61},{"epoch":26160104,"idl":99.82,"recv":0,"send":0,"writ":0.4,"used":570.72,"free":3061.99},{"epoch":26160105,"idl":99.83,"recv":0,"send":0,"writ":0.43,"used":569.84,"free":3062.9},{"epoch":26160106,"idl":99.97,"recv":0,"send":0,"writ":0.16,"used":569.88,"free":3062.85},{"epoch":26160107,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":569.98,"free":3062.75},{"epoch":26160108,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.95,"free":3062.78},{"epoch":26160109,"idl":99.83,"recv":0,"send":0,"writ":0.41,"used":570.3,"free":3062.42},{"epoch":26160110,"idl":99.9,"recv":0,"send":0,"writ":0.41,"used":570.42,"free":3062.31},{"epoch":26160111,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.4,"free":3062.33},{"epoch":26160112,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":570.38,"free":3062.35},{"epoch":26160113,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":570.34,"free":3062.38},{"epoch":26160114,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":570.66,"free":3062.05},{"epoch":26160115,"idl":99.89,"recv":0,"send":0,"writ":0.42,"used":570.31,"free":3062.41},{"epoch":26160116,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.31,"free":3062.41},{"epoch":26160117,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":570.15,"free":3062.57},{"epoch":26160118,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.21,"free":3062.5},{"epoch":26160119,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":570.18,"free":3062.53},{"epoch":26160120,"idl":99.75,"recv":0,"send":0,"writ":0.68,"used":570.79,"free":3061.94},{"epoch":26160121,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":570.41,"free":3062.32},{"epoch":26160122,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":570.4,"free":3062.32},{"epoch":26160123,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":570.37,"free":3062.35},{"epoch":26160124,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.36,"free":3062.35},{"epoch":26160125,"idl":99.77,"recv":0,"send":0,"writ":0.7,"used":571.08,"free":3061.65},{"epoch":26160126,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.59,"free":3062.13},{"epoch":26160127,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":570.55,"free":3062.16},{"epoch":26160128,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.55,"free":3062.16},{"epoch":26160129,"idl":99.86,"recv":0,"send":0.02,"writ":0.45,"used":570.43,"free":3062.25},{"epoch":26160130,"idl":99.75,"recv":0,"send":0,"writ":0.67,"used":570.79,"free":3061.92},{"epoch":26160131,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.42,"free":3062.28},{"epoch":26160132,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.39,"free":3062.3},{"epoch":26160133,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.36,"free":3062.33},{"epoch":26160134,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":570.35,"free":3062.33},{"epoch":26160135,"idl":99.73,"recv":0,"send":0,"writ":0.69,"used":570.71,"free":3062},{"epoch":26160136,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.32,"free":3062.38},{"epoch":26160137,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":570.3,"free":3062.39},{"epoch":26160138,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.28,"free":3062.41},{"epoch":26160139,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.14,"used":570.34,"free":3062.34},{"epoch":26160140,"idl":95.12,"recv":0.27,"send":0.01,"writ":78.48,"used":580.34,"free":3052.85},{"epoch":26160141,"idl":99.89,"recv":0,"send":0,"writ":179.41,"used":572.62,"free":3060.04},{"epoch":26160142,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.62,"free":3060.04},{"epoch":26160143,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.58,"free":3060.07},{"epoch":26160144,"idl":98.55,"recv":0,"send":0,"writ":0.14,"used":572.57,"free":3060.07},{"epoch":26160145,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":572.64,"free":3060.03},{"epoch":26160146,"idl":99.93,"recv":0,"send":0,"writ":0.36,"used":570.37,"free":3062.33},{"epoch":26160147,"idl":99.41,"recv":0,"send":0,"writ":0.18,"used":570.34,"free":3062.35},{"epoch":26160148,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.33,"free":3062.36},{"epoch":26160149,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.29,"free":3062.39},{"epoch":26160150,"idl":99.75,"recv":0,"send":0,"writ":0.7,"used":569.94,"free":3062.77},{"epoch":26160151,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.37,"free":3062.36},{"epoch":26160152,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":570.46,"free":3062.27},{"epoch":26160153,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.44,"free":3062.28},{"epoch":26160154,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.42,"free":3062.3},{"epoch":26160155,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":570.99,"free":3061.75},{"epoch":26160156,"idl":99.92,"recv":0,"send":0.03,"writ":0.36,"used":570.37,"free":3062.36},{"epoch":26160157,"idl":99.89,"recv":0.02,"send":0.83,"writ":0.28,"used":570.39,"free":3062.34},{"epoch":26160158,"idl":99.93,"recv":0.03,"send":1.09,"writ":0.19,"used":570.36,"free":3062.36},{"epoch":26160159,"idl":99.82,"recv":0.03,"send":1.14,"writ":0.57,"used":570.63,"free":3062.05},{"epoch":26160160,"idl":99.87,"recv":0.02,"send":0.86,"writ":0.46,"used":570.66,"free":3062.03},{"epoch":26160161,"idl":99.76,"recv":0.06,"send":16.09,"writ":0.6,"used":571.33,"free":3061.36},{"epoch":26160162,"idl":99.91,"recv":0.06,"send":2.46,"writ":0.61,"used":570.74,"free":3061.93},{"epoch":26160163,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":570.87,"free":3061.78},{"epoch":26160164,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":570.65,"free":3062},{"epoch":26160165,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":570.58,"free":3062.08},{"epoch":26160166,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":570.74,"free":3061.92},{"epoch":26160167,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.29,"free":3062.36},{"epoch":26160168,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":570.26,"free":3062.39},{"epoch":26160169,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.23,"free":3062.41},{"epoch":26160170,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":570.49,"free":3062.17},{"epoch":26160171,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":571.09,"free":3061.57},{"epoch":26160172,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.88,"free":3061.78},{"epoch":26160173,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.85,"free":3061.8},{"epoch":26160174,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.83,"free":3061.81},{"epoch":26160175,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":570.35,"free":3062.32},{"epoch":26160176,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":570.53,"free":3062.12},{"epoch":26160177,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":569.92,"free":3062.74},{"epoch":26160178,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.78,"free":3062.87},{"epoch":26160179,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":569.77,"free":3062.88},{"epoch":26160180,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":570.48,"free":3062.18},{"epoch":26160181,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":570.66,"free":3061.99},{"epoch":26160182,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":569.56,"free":3063.1},{"epoch":26160183,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":569.65,"free":3063},{"epoch":26160184,"idl":99.62,"recv":0,"send":0,"writ":0.16,"used":569.63,"free":3063.01},{"epoch":26160185,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":569.63,"free":3063.03},{"epoch":26160186,"idl":99.81,"recv":0,"send":0,"writ":0.51,"used":570.17,"free":3062.49},{"epoch":26160187,"idl":99.92,"recv":0,"send":0,"writ":0.21,"used":570.58,"free":3062.08},{"epoch":26160188,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":570.56,"free":3062.09},{"epoch":26160189,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":570.54,"free":3062.09},{"epoch":26160190,"idl":99.85,"recv":0,"send":0,"writ":0.34,"used":570.54,"free":3062.1},{"epoch":26160191,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":570.91,"free":3061.73},{"epoch":26160192,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.74,"free":3061.89},{"epoch":26160193,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":570.72,"free":3061.91},{"epoch":26160194,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":570.7,"free":3061.92},{"epoch":26160195,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":570.79,"free":3061.85},{"epoch":26160196,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":571.22,"free":3061.42},{"epoch":26160197,"idl":99.93,"recv":0,"send":0,"writ":0.4,"used":570.54,"free":3062.1},{"epoch":26160198,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":569.86,"free":3062.77},{"epoch":26160199,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.14,"used":569.83,"free":3062.8},{"epoch":26160200,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":569.59,"free":3063.05},{"epoch":26160201,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":569.56,"free":3063.08},{"epoch":26160202,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":570.59,"free":3062.05},{"epoch":26160203,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.02,"free":3062.63},{"epoch":26160204,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.99,"free":3062.66},{"epoch":26160205,"idl":99.88,"recv":0,"send":0,"writ":0.37,"used":570.05,"free":3062.6},{"epoch":26160206,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":569.96,"free":3062.7},{"epoch":26160207,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":570.22,"free":3062.43},{"epoch":26160208,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":569.87,"free":3062.77},{"epoch":26160209,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.86,"free":3062.79},{"epoch":26160210,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":570.08,"free":3062.58},{"epoch":26160211,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.08,"free":3062.57},{"epoch":26160212,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":570.4,"free":3062.25},{"epoch":26160213,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.04,"free":3062.61},{"epoch":26160214,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.01,"free":3062.63},{"epoch":26160215,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":569.3,"free":3063.36},{"epoch":26160216,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":569.25,"free":3063.4},{"epoch":26160217,"idl":99.74,"recv":0,"send":0,"writ":0.67,"used":570.2,"free":3062.45},{"epoch":26160218,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":569.72,"free":3062.92},{"epoch":26160219,"idl":99.84,"recv":0,"send":0,"writ":0.35,"used":569.86,"free":3062.75},{"epoch":26160220,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":570.1,"free":3062.53},{"epoch":26160221,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.07,"free":3062.55},{"epoch":26160222,"idl":99.79,"recv":0,"send":0,"writ":0.53,"used":570.61,"free":3062.01},{"epoch":26160223,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":570.28,"free":3062.33},{"epoch":26160224,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":570.24,"free":3062.39},{"epoch":26160225,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":570.02,"free":3062.63},{"epoch":26160226,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":569.98,"free":3062.67},{"epoch":26160227,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":570.32,"free":3062.32},{"epoch":26160228,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":569.94,"free":3062.7},{"epoch":26160229,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.96,"free":3062.68},{"epoch":26160230,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":570.4,"free":3062.25},{"epoch":26160231,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.38,"free":3062.27},{"epoch":26160232,"idl":99.81,"recv":0,"send":0,"writ":0.44,"used":570.67,"free":3061.97},{"epoch":26160233,"idl":99.94,"recv":0,"send":0,"writ":0.3,"used":570.1,"free":3062.55},{"epoch":26160234,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":570.08,"free":3062.56},{"epoch":26160235,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":570.09,"free":3062.57},{"epoch":26160236,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":570.04,"free":3062.61},{"epoch":26160237,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":570.03,"free":3062.61},{"epoch":26160238,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":570.97,"free":3061.67},{"epoch":26160239,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":570.24,"free":3062.4},{"epoch":26160240,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":569.99,"free":3062.66},{"epoch":26160241,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":570.13,"free":3062.52},{"epoch":26160242,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":570.12,"free":3062.52},{"epoch":26160243,"idl":99.81,"recv":0,"send":0,"writ":0.63,"used":569.73,"free":3062.91},{"epoch":26160244,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":569.11,"free":3063.55},{"epoch":26160245,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":570.55,"free":3062.13},{"epoch":26160246,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":570.57,"free":3062.1},{"epoch":26160247,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":570.53,"free":3062.13},{"epoch":26160248,"idl":99.82,"recv":0,"send":0,"writ":0.57,"used":570.71,"free":3061.95},{"epoch":26160249,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":569.75,"free":3062.89},{"epoch":26160250,"idl":99.81,"recv":0,"send":0,"writ":0.37,"used":570,"free":3062.65},{"epoch":26160251,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":569.96,"free":3062.68},{"epoch":26160252,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":569.96,"free":3062.68},{"epoch":26160253,"idl":99.81,"recv":0,"send":0,"writ":0.6,"used":570.46,"free":3062.17},{"epoch":26160254,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.1,"free":3062.54},{"epoch":26160255,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":570.4,"free":3062.27},{"epoch":26160256,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":570.34,"free":3062.33},{"epoch":26160257,"idl":99.92,"recv":0,"send":0,"writ":0.22,"used":570.06,"free":3062.59},{"epoch":26160258,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":570.38,"free":3062.28},{"epoch":26160259,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.18,"used":569.52,"free":3063.13},{"epoch":26160260,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":569.77,"free":3062.9},{"epoch":26160261,"idl":99.92,"recv":0.03,"send":0.1,"writ":0.29,"used":569.78,"free":3062.86},{"epoch":26160262,"idl":99.94,"recv":0,"send":0.01,"writ":0.2,"used":569.69,"free":3062.92},{"epoch":26160263,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":570.21,"free":3062.39},{"epoch":26160264,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":570.32,"free":3062.27},{"epoch":26160265,"idl":99.86,"recv":0.01,"send":0.1,"writ":0.35,"used":569.94,"free":3062.62},{"epoch":26160266,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":569.91,"free":3062.63},{"epoch":26160267,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":569.9,"free":3062.64},{"epoch":26160268,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":570.31,"free":3062.23},{"epoch":26160269,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.11,"free":3062.42},{"epoch":26160270,"idl":99.82,"recv":0.01,"send":0.01,"writ":0.33,"used":569.3,"free":3063.25},{"epoch":26160271,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":569.21,"free":3063.34},{"epoch":26160272,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":569.18,"free":3063.36},{"epoch":26160273,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":569.76,"free":3062.77},{"epoch":26160274,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":570.34,"free":3062.19},{"epoch":26160275,"idl":99.87,"recv":0,"send":0,"writ":0.35,"used":570.28,"free":3062.27},{"epoch":26160276,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":570.25,"free":3062.29},{"epoch":26160277,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":570.23,"free":3062.31},{"epoch":26160278,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":570.21,"free":3062.32},{"epoch":26160279,"idl":99.75,"recv":0,"send":0,"writ":0.71,"used":570.14,"free":3062.38},{"epoch":26160280,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":570.43,"free":3062.1},{"epoch":26160281,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":570.41,"free":3062.12},{"epoch":26160282,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":570.4,"free":3062.12},{"epoch":26160283,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":570.37,"free":3062.16},{"epoch":26160284,"idl":99.81,"recv":0,"send":0,"writ":0.58,"used":570.51,"free":3062.03},{"epoch":26160285,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":570.36,"free":3062.2},{"epoch":26160286,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":570.55,"free":3062.01},{"epoch":26160287,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.53,"free":3062.02},{"epoch":26160288,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":570.51,"free":3062.05},{"epoch":26160289,"idl":99.8,"recv":0,"send":0,"writ":0.61,"used":569.32,"free":3063.23},{"epoch":26160290,"idl":99.9,"recv":0,"send":0,"writ":0.36,"used":569.97,"free":3062.6},{"epoch":26160291,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":569.98,"free":3062.58},{"epoch":26160292,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":569.95,"free":3062.61},{"epoch":26160293,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":569.93,"free":3062.62},{"epoch":26160294,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":570.76,"free":3061.79},{"epoch":26160295,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":569.67,"free":3062.89},{"epoch":26160296,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":569.64,"free":3062.92},{"epoch":26160297,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":569.57,"free":3062.98},{"epoch":26160298,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":569.54,"free":3063.01},{"epoch":26160299,"idl":99.77,"recv":0,"send":0,"writ":0.52,"used":570.34,"free":3062.2},{"epoch":26160300,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":570.75,"free":3061.82},{"epoch":26160301,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.75,"free":3061.81},{"epoch":26160302,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":570.71,"free":3061.84},{"epoch":26160303,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":570.71,"free":3061.84},{"epoch":26160304,"idl":99.75,"recv":0,"send":0,"writ":0.42,"used":570.96,"free":3061.58},{"epoch":26160305,"idl":99.84,"recv":0,"send":0,"writ":0.44,"used":570.69,"free":3061.88},{"epoch":26160306,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":570.65,"free":3061.9},{"epoch":26160307,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":570.64,"free":3061.91},{"epoch":26160308,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":570.61,"free":3061.93},{"epoch":26160309,"idl":99.62,"recv":0,"send":0,"writ":0.69,"used":570.86,"free":3061.64},{"epoch":26160310,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":570.55,"free":3061.97},{"epoch":26160311,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":570.5,"free":3062.02},{"epoch":26160312,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":570.49,"free":3062.02},{"epoch":26160313,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":570.47,"free":3062.04},{"epoch":26160314,"idl":99.75,"recv":0,"send":0,"writ":0.37,"used":571.17,"free":3061.35},{"epoch":26160315,"idl":99.81,"recv":0,"send":0,"writ":0.53,"used":569.98,"free":3062.56},{"epoch":26160316,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":569.94,"free":3062.59},{"epoch":26160317,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":569.68,"free":3062.85},{"epoch":26160318,"idl":99.86,"recv":0,"send":0.01,"writ":0.16,"used":569.63,"free":3062.91},{"epoch":26160319,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.15,"used":569.68,"free":3062.86},{"epoch":26160320,"idl":99.66,"recv":0,"send":0,"writ":0.71,"used":570.75,"free":3061.8},{"epoch":26160321,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":570.25,"free":3062.3},{"epoch":26160322,"idl":99.86,"recv":0.03,"send":0.95,"writ":0.22,"used":570.26,"free":3062.28},{"epoch":26160323,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.24,"free":3062.3},{"epoch":26160324,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":570.22,"free":3062.31},{"epoch":26160325,"idl":99.67,"recv":0,"send":0,"writ":0.72,"used":571.05,"free":3061.5},{"epoch":26160326,"idl":98.95,"recv":0,"send":0,"writ":0.17,"used":570.69,"free":3061.85},{"epoch":26160327,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":570.67,"free":3061.87},{"epoch":26160328,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.65,"free":3061.88},{"epoch":26160329,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":570.63,"free":3061.9},{"epoch":26160330,"idl":99.67,"recv":0,"send":0,"writ":0.9,"used":570.93,"free":3061.62},{"epoch":26160331,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":570.61,"free":3061.93},{"epoch":26160332,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":570.59,"free":3061.95},{"epoch":26160333,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.65,"free":3061.88},{"epoch":26160334,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":570.75,"free":3061.78},{"epoch":26160335,"idl":99.65,"recv":0,"send":0,"writ":0.83,"used":570.68,"free":3061.87},{"epoch":26160336,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":569.75,"free":3062.8},{"epoch":26160337,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":569.72,"free":3062.82},{"epoch":26160338,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":569.71,"free":3062.83},{"epoch":26160339,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":570.64,"free":3061.87},{"epoch":26160340,"idl":99.7,"recv":0,"send":0,"writ":0.64,"used":571.23,"free":3061.29},{"epoch":26160341,"idl":99.84,"recv":0.02,"send":0.95,"writ":0.23,"used":570.92,"free":3061.59},{"epoch":26160342,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":570.93,"free":3061.58},{"epoch":26160343,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":570.9,"free":3061.6},{"epoch":26160344,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":570.69,"free":3061.84},{"epoch":26160345,"idl":99.64,"recv":0,"send":0,"writ":0.7,"used":570.83,"free":3061.71},{"epoch":26160346,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":570.6,"free":3061.94},{"epoch":26160347,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":570.58,"free":3061.96},{"epoch":26160348,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":570.57,"free":3061.96},{"epoch":26160349,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":570.54,"free":3061.99},{"epoch":26160350,"idl":99.68,"recv":0,"send":0,"writ":0.66,"used":571.22,"free":3061.32},{"epoch":26160351,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":570.71,"free":3061.83},{"epoch":26160352,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":570.69,"free":3061.84},{"epoch":26160353,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":570.16,"free":3062.37},{"epoch":26160354,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":569.68,"free":3062.85},{"epoch":26160355,"idl":99.66,"recv":0,"send":0,"writ":0.49,"used":570.54,"free":3062.01},{"epoch":26160356,"idl":99.86,"recv":0,"send":0,"writ":0.39,"used":569.91,"free":3062.63},{"epoch":26160357,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":569.79,"free":3062.74},{"epoch":26160358,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.21,"used":569.7,"free":3062.83},{"epoch":26160359,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":569.71,"free":3062.82},{"epoch":26160360,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":569.7,"free":3062.84},{"epoch":26160361,"idl":99.73,"recv":0,"send":0,"writ":0.56,"used":569.81,"free":3062.73},{"epoch":26160362,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":569.41,"free":3063.13},{"epoch":26160363,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":569.39,"free":3063.14},{"epoch":26160364,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":569.37,"free":3063.16},{"epoch":26160365,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":569.38,"free":3063.16},{"epoch":26160366,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":570.34,"free":3062.19},{"epoch":26160367,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":570.05,"free":3062.48},{"epoch":26160368,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.05,"free":3062.48},{"epoch":26160369,"idl":99.77,"recv":0,"send":0,"writ":0.28,"used":569.98,"free":3062.53},{"epoch":26160370,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":570.23,"free":3062.29},{"epoch":26160371,"idl":99.74,"recv":0,"send":0,"writ":0.61,"used":570.39,"free":3062.13},{"epoch":26160372,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":569.95,"free":3062.57},{"epoch":26160373,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":569.92,"free":3062.59},{"epoch":26160374,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":569.9,"free":3062.62},{"epoch":26160375,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":569.91,"free":3062.63},{"epoch":26160376,"idl":99.71,"recv":0,"send":0,"writ":0.59,"used":570,"free":3062.54},{"epoch":26160377,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":569.13,"free":3063.41},{"epoch":26160378,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":569.09,"free":3063.44},{"epoch":26160379,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.14,"used":569.1,"free":3063.43},{"epoch":26160380,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":569.5,"free":3063.04},{"epoch":26160381,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":569.93,"free":3062.6},{"epoch":26160382,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":569.7,"free":3062.82},{"epoch":26160383,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":569.67,"free":3062.85},{"epoch":26160384,"idl":99.8,"recv":0,"send":0,"writ":0.16,"used":569.66,"free":3062.86},{"epoch":26160385,"idl":99.81,"recv":0.02,"send":0.77,"writ":0.38,"used":569.96,"free":3062.56},{"epoch":26160386,"idl":99.71,"recv":0,"send":0,"writ":0.63,"used":570.12,"free":3062.4},{"epoch":26160387,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":569.43,"free":3063.08},{"epoch":26160388,"idl":99.85,"recv":0.04,"send":1.59,"writ":0.25,"used":569.42,"free":3063.08},{"epoch":26160389,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":569.32,"free":3063.18},{"epoch":26160390,"idl":99.8,"recv":0,"send":0.02,"writ":0.32,"used":569.85,"free":3062.66},{"epoch":26160391,"idl":99.71,"recv":0.01,"send":0.27,"writ":0.44,"used":570.23,"free":3062.27},{"epoch":26160392,"idl":99.85,"recv":0.02,"send":0.88,"writ":0.36,"used":569.59,"free":3062.9},{"epoch":26160393,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":569.54,"free":3062.95},{"epoch":26160394,"idl":99.82,"recv":0.1,"send":5.55,"writ":0.46,"used":569.59,"free":3062.88},{"epoch":26160395,"idl":99.78,"recv":0,"send":0,"writ":0.38,"used":569.35,"free":3063.12},{"epoch":26160396,"idl":99.75,"recv":0.01,"send":0.24,"writ":0.4,"used":569.97,"free":3062.5},{"epoch":26160397,"idl":99.84,"recv":0,"send":0,"writ":0.46,"used":569.17,"free":3063.28},{"epoch":26160398,"idl":99.83,"recv":0,"send":0.01,"writ":0.21,"used":569.1,"free":3063.35},{"epoch":26160399,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":570.29,"free":3062.13},{"epoch":26160400,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":569.34,"free":3063.1},{"epoch":26160401,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":569.29,"free":3063.15},{"epoch":26160402,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":570.04,"free":3062.4},{"epoch":26160403,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":569.74,"free":3062.69},{"epoch":26160404,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":569.73,"free":3062.7},{"epoch":26160405,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":570.04,"free":3062.4},{"epoch":26160406,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":570.14,"free":3062.3},{"epoch":26160407,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":570.29,"free":3062.15},{"epoch":26160408,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":569.84,"free":3062.59},{"epoch":26160409,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":569.81,"free":3062.62},{"epoch":26160410,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":569.82,"free":3062.62},{"epoch":26160411,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":569.78,"free":3062.66},{"epoch":26160412,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":570.27,"free":3062.17},{"epoch":26160413,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":569.99,"free":3062.44},{"epoch":26160414,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":569.95,"free":3062.47},{"epoch":26160415,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":570.2,"free":3062.25},{"epoch":26160416,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":570.12,"free":3062.32},{"epoch":26160417,"idl":99.71,"recv":0,"send":0,"writ":0.52,"used":570.11,"free":3062.32},{"epoch":26160418,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":569.34,"free":3063.09},{"epoch":26160419,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":569.31,"free":3063.12},{"epoch":26160420,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":570.5,"free":3061.94},{"epoch":26160421,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":570.52,"free":3061.92},{"epoch":26160422,"idl":99.74,"recv":0,"send":0,"writ":0.5,"used":571,"free":3061.43},{"epoch":26160423,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":569.99,"free":3062.44},{"epoch":26160424,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":569.96,"free":3062.46},{"epoch":26160425,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":570.21,"free":3062.23},{"epoch":26160426,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":570.38,"free":3062.05},{"epoch":26160427,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":570.84,"free":3061.59},{"epoch":26160428,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":570.32,"free":3062.1},{"epoch":26160429,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":570.56,"free":3061.83},{"epoch":26160430,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":569.83,"free":3062.59},{"epoch":26160431,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":569.81,"free":3062.6},{"epoch":26160432,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":569.77,"free":3062.63},{"epoch":26160433,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":570.62,"free":3061.78},{"epoch":26160434,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":570.23,"free":3062.18},{"epoch":26160435,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":569.98,"free":3062.44},{"epoch":26160436,"idl":99.83,"recv":0,"send":0,"writ":0.13,"used":569.96,"free":3062.46},{"epoch":26160437,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":570.14,"free":3062.28},{"epoch":26160438,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":570.49,"free":3061.93},{"epoch":26160439,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.14,"used":570.11,"free":3062.3},{"epoch":26160440,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":570.11,"free":3062.32},{"epoch":26160441,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":570.08,"free":3062.34},{"epoch":26160442,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":570.06,"free":3062.36},{"epoch":26160443,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":570.4,"free":3062.02},{"epoch":26160444,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":570.01,"free":3062.4},{"epoch":26160445,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":570.27,"free":3062.16},{"epoch":26160446,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":570.24,"free":3062.18},{"epoch":26160447,"idl":99.73,"recv":0,"send":0,"writ":0.15,"used":570.23,"free":3062.19},{"epoch":26160448,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":570.58,"free":3061.84},{"epoch":26160449,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":569.89,"free":3062.52},{"epoch":26160450,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":570.36,"free":3062.07},{"epoch":26160451,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":570.35,"free":3062.07},{"epoch":26160452,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":570.32,"free":3062.09},{"epoch":26160453,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":570.67,"free":3061.74},{"epoch":26160454,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":570.28,"free":3062.13},{"epoch":26160455,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":570.53,"free":3061.9},{"epoch":26160456,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":570.51,"free":3061.91},{"epoch":26160457,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":570.49,"free":3061.92},{"epoch":26160458,"idl":99.73,"recv":0,"send":0,"writ":0.51,"used":570.59,"free":3061.82},{"epoch":26160459,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":570.54,"free":3061.85},{"epoch":26160460,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":569.43,"free":3062.98},{"epoch":26160461,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":569.39,"free":3063.01},{"epoch":26160462,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":569.37,"free":3063.03},{"epoch":26160463,"idl":99.7,"recv":0,"send":0,"writ":0.44,"used":570.01,"free":3062.38},{"epoch":26160464,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":570.31,"free":3062.08},{"epoch":26160465,"idl":99.81,"recv":0,"send":0,"writ":0.31,"used":569.84,"free":3062.57},{"epoch":26160466,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":569.8,"free":3062.6},{"epoch":26160467,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":569.79,"free":3062.61},{"epoch":26160468,"idl":99.73,"recv":0,"send":0,"writ":0.41,"used":570.51,"free":3061.88},{"epoch":26160469,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":570.47,"free":3061.93},{"epoch":26160470,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":570,"free":3062.41},{"epoch":26160471,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":570.03,"free":3062.37},{"epoch":26160472,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":570.13,"free":3062.26},{"epoch":26160473,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":570.1,"free":3062.29},{"epoch":26160474,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":571.05,"free":3061.33},{"epoch":26160475,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":570.33,"free":3062.07},{"epoch":26160476,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":570.3,"free":3062.09},{"epoch":26160477,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":570.28,"free":3062.11},{"epoch":26160478,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.25,"free":3062.14},{"epoch":26160479,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":570.78,"free":3061.6},{"epoch":26160480,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":570,"free":3062.4},{"epoch":26160481,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":569.96,"free":3062.43},{"epoch":26160482,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":570.01,"free":3062.38},{"epoch":26160483,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":570.09,"free":3062.29},{"epoch":26160484,"idl":99.8,"recv":0,"send":0,"writ":0.61,"used":571,"free":3061.38},{"epoch":26160485,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":570.57,"free":3061.83},{"epoch":26160486,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.53,"free":3061.86},{"epoch":26160487,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.5,"free":3061.89},{"epoch":26160488,"idl":99.93,"recv":0.03,"send":0.96,"writ":0.18,"used":570.63,"free":3061.74},{"epoch":26160489,"idl":99.73,"recv":0,"send":0,"writ":0.78,"used":571.22,"free":3061.13},{"epoch":26160490,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":570.8,"free":3061.56},{"epoch":26160491,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":570.81,"free":3061.55},{"epoch":26160492,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":570.79,"free":3061.56},{"epoch":26160493,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":570.77,"free":3061.58},{"epoch":26160494,"idl":99.82,"recv":0,"send":0,"writ":0.42,"used":571.18,"free":3061.18},{"epoch":26160495,"idl":99.9,"recv":0,"send":0,"writ":0.44,"used":570.74,"free":3061.64},{"epoch":26160496,"idl":99.95,"recv":0.01,"send":0.01,"writ":0.19,"used":570.78,"free":3061.59},{"epoch":26160497,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":570.8,"free":3061.57},{"epoch":26160498,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.77,"free":3061.59},{"epoch":26160499,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.55,"used":571.09,"free":3061.27},{"epoch":26160500,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":570.75,"free":3061.66},{"epoch":26160501,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":570.72,"free":3061.69},{"epoch":26160502,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":570.7,"free":3061.7},{"epoch":26160503,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.68,"free":3061.72},{"epoch":26160504,"idl":95.26,"recv":0.31,"send":0.01,"writ":78.02,"used":584.47,"free":3047.53},{"epoch":26160505,"idl":99.81,"recv":0,"send":0,"writ":180.12,"used":572.63,"free":3059.71},{"epoch":26160506,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":572.7,"free":3059.64},{"epoch":26160507,"idl":94.15,"recv":0,"send":0,"writ":0.13,"used":572.79,"free":3059.55},{"epoch":26160508,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.54,"free":3059.79},{"epoch":26160509,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":572.29,"free":3060.05},{"epoch":26160510,"idl":99.88,"recv":0,"send":0,"writ":0.45,"used":569.84,"free":3062.56},{"epoch":26160511,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":569.83,"free":3062.56},{"epoch":26160512,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":569.8,"free":3062.59},{"epoch":26160513,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":569.79,"free":3062.59},{"epoch":26160514,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":569.76,"free":3062.62},{"epoch":26160515,"idl":99.68,"recv":0,"send":0,"writ":0.68,"used":570.11,"free":3062.31},{"epoch":26160516,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.5,"free":3062.92},{"epoch":26160517,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":569.49,"free":3062.92},{"epoch":26160518,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":569.64,"free":3062.77},{"epoch":26160519,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":570.12,"free":3062.26},{"epoch":26160520,"idl":99.75,"recv":0,"send":0,"writ":0.69,"used":569.91,"free":3062.49},{"epoch":26160521,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":569.36,"free":3063.03},{"epoch":26160522,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":569.34,"free":3063.05},{"epoch":26160523,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":569.31,"free":3063.07},{"epoch":26160524,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":569.31,"free":3063.12},{"epoch":26160525,"idl":99.73,"recv":0,"send":0,"writ":0.7,"used":570.21,"free":3062.24},{"epoch":26160526,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.03,"free":3062.42},{"epoch":26160527,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":569.99,"free":3062.45},{"epoch":26160528,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":570.1,"free":3062.34},{"epoch":26160529,"idl":99.97,"recv":0,"send":0,"writ":0.15,"used":570.12,"free":3062.32},{"epoch":26160530,"idl":99.77,"recv":0,"send":0,"writ":0.72,"used":569.93,"free":3062.52},{"epoch":26160531,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":569.36,"free":3063.09},{"epoch":26160532,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":569.34,"free":3063.11},{"epoch":26160533,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":569.32,"free":3063.13},{"epoch":26160534,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.3,"free":3063.14},{"epoch":26160535,"idl":99.69,"recv":0.02,"send":0.04,"writ":0.7,"used":570.52,"free":3061.93},{"epoch":26160536,"idl":99.85,"recv":0.03,"send":0.18,"writ":0.21,"used":577.2,"free":3055.04},{"epoch":26160537,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":577.69,"free":3054.54},{"epoch":26160538,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":578.12,"free":3054.1},{"epoch":26160539,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":578.09,"free":3054.13},{"epoch":26160540,"idl":99.71,"recv":0,"send":0,"writ":0.71,"used":580.25,"free":3051.99},{"epoch":26160541,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":580.76,"free":3051.47},{"epoch":26160542,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":580.72,"free":3051.51},{"epoch":26160543,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":580.69,"free":3051.53},{"epoch":26160544,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.75,"free":3051.47},{"epoch":26160545,"idl":99.74,"recv":0,"send":0,"writ":0.73,"used":581.22,"free":3051.01},{"epoch":26160546,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.83,"free":3051.4},{"epoch":26160547,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":580.8,"free":3051.43},{"epoch":26160548,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":580.76,"free":3051.46},{"epoch":26160549,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":580.47,"free":3051.71},{"epoch":26160550,"idl":99.72,"recv":0,"send":0,"writ":0.56,"used":581.27,"free":3050.93},{"epoch":26160551,"idl":99.91,"recv":0,"send":0,"writ":0.31,"used":580.81,"free":3051.38},{"epoch":26160552,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":580.81,"free":3051.38},{"epoch":26160553,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":580.79,"free":3051.4},{"epoch":26160554,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":580.58,"free":3051.62},{"epoch":26160555,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.32,"used":581.03,"free":3051.18},{"epoch":26160556,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":579.15,"free":3053.06},{"epoch":26160557,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":578.8,"free":3053.41},{"epoch":26160558,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":578.77,"free":3053.43},{"epoch":26160559,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.14,"used":578.74,"free":3053.46},{"epoch":26160560,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":580.66,"free":3051.56},{"epoch":26160561,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":581.09,"free":3051.12},{"epoch":26160562,"idl":99.91,"recv":0.01,"send":0.94,"writ":0.17,"used":580.82,"free":3051.38},{"epoch":26160563,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":580.8,"free":3051.4},{"epoch":26160564,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":580.76,"free":3051.43},{"epoch":26160565,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":581,"free":3051.2},{"epoch":26160566,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":581.13,"free":3051.07},{"epoch":26160567,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":580.68,"free":3051.52},{"epoch":26160568,"idl":97.66,"recv":0,"send":0,"writ":0.14,"used":580.65,"free":3051.54},{"epoch":26160569,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":580.77,"free":3051.42},{"epoch":26160570,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":581.04,"free":3051.16},{"epoch":26160571,"idl":99.81,"recv":0,"send":0,"writ":0.59,"used":581.23,"free":3050.97},{"epoch":26160572,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":580.73,"free":3051.46},{"epoch":26160573,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":580.7,"free":3051.49},{"epoch":26160574,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":580.66,"free":3051.53},{"epoch":26160575,"idl":99.88,"recv":0.01,"send":0.08,"writ":0.41,"used":581,"free":3051.21},{"epoch":26160576,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":581.54,"free":3050.66},{"epoch":26160577,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":580.95,"free":3051.25},{"epoch":26160578,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":580.91,"free":3051.28},{"epoch":26160579,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":580.65,"free":3051.52},{"epoch":26160580,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":580.81,"free":3051.37},{"epoch":26160581,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":581.1,"free":3051.07},{"epoch":26160582,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.52,"free":3051.65},{"epoch":26160583,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":580.49,"free":3051.68},{"epoch":26160584,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":580.47,"free":3051.7},{"epoch":26160585,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":581.19,"free":3051},{"epoch":26160586,"idl":99.81,"recv":0,"send":0,"writ":0.61,"used":581.47,"free":3050.71},{"epoch":26160587,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":581.07,"free":3051.1},{"epoch":26160588,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.04,"free":3051.13},{"epoch":26160589,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":581,"free":3051.16},{"epoch":26160590,"idl":99.91,"recv":0,"send":0,"writ":0.29,"used":580.99,"free":3051.19},{"epoch":26160591,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":581.31,"free":3050.87},{"epoch":26160592,"idl":99.96,"recv":0,"send":0,"writ":0.39,"used":580.92,"free":3051.25},{"epoch":26160593,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":580.96,"free":3051.21},{"epoch":26160594,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":581.05,"free":3051.11},{"epoch":26160595,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.32,"used":580.56,"free":3051.61},{"epoch":26160596,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.15,"used":580.51,"free":3051.67},{"epoch":26160597,"idl":99.74,"recv":0,"send":0,"writ":0.6,"used":580.94,"free":3051.23},{"epoch":26160598,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":580.19,"free":3051.98},{"epoch":26160599,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":580.16,"free":3052},{"epoch":26160600,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":580.58,"free":3051.6},{"epoch":26160601,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":580.55,"free":3051.63},{"epoch":26160602,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":580.69,"free":3051.48},{"epoch":26160603,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":580.23,"free":3051.93},{"epoch":26160604,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":580.2,"free":3051.96},{"epoch":26160605,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":580.2,"free":3051.98},{"epoch":26160606,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.17,"free":3052.01},{"epoch":26160607,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":580.31,"free":3051.86},{"epoch":26160608,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":579.8,"free":3052.37},{"epoch":26160609,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":580.72,"free":3051.41},{"epoch":26160610,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":580.73,"free":3051.43},{"epoch":26160611,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":580.69,"free":3051.46},{"epoch":26160612,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":580.88,"free":3051.26},{"epoch":26160613,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":580.39,"free":3051.75},{"epoch":26160614,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":580.54,"free":3051.61},{"epoch":26160615,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":581.27,"free":3050.9},{"epoch":26160616,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":581.25,"free":3050.92},{"epoch":26160617,"idl":99.79,"recv":0,"send":0,"writ":0.64,"used":581.99,"free":3050.17},{"epoch":26160618,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":581.42,"free":3050.73},{"epoch":26160619,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.15,"used":581.38,"free":3050.77},{"epoch":26160620,"idl":99.85,"recv":0.01,"send":0.02,"writ":0.33,"used":580.47,"free":3051.71},{"epoch":26160621,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":580.44,"free":3051.74},{"epoch":26160622,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":581,"free":3051.17},{"epoch":26160623,"idl":99.92,"recv":0.01,"send":0.02,"writ":0.15,"used":581.2,"free":3050.97},{"epoch":26160624,"idl":99.93,"recv":0.01,"send":0.59,"writ":0.21,"used":581.25,"free":3050.91},{"epoch":26160625,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":581.03,"free":3051.15},{"epoch":26160626,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":580.96,"free":3051.22},{"epoch":26160627,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":581.27,"free":3050.9},{"epoch":26160628,"idl":99.92,"recv":0,"send":0,"writ":0.4,"used":580.65,"free":3051.52},{"epoch":26160629,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.79,"free":3051.38},{"epoch":26160630,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":581.03,"free":3051.15},{"epoch":26160631,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":581,"free":3051.18},{"epoch":26160632,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":581.33,"free":3050.85},{"epoch":26160633,"idl":99.9,"recv":0,"send":0,"writ":0.42,"used":581.19,"free":3050.98},{"epoch":26160634,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":581.16,"free":3051.01},{"epoch":26160635,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":580.92,"free":3051.27},{"epoch":26160636,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":581.06,"free":3051.12},{"epoch":26160637,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":581.03,"free":3051.15},{"epoch":26160638,"idl":99.79,"recv":0.01,"send":0.07,"writ":0.57,"used":581.33,"free":3050.84},{"epoch":26160639,"idl":99.84,"recv":0.02,"send":0.72,"writ":0.36,"used":581.23,"free":3050.89},{"epoch":26160640,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":581.2,"free":3050.94},{"epoch":26160641,"idl":99.94,"recv":0,"send":0.01,"writ":0.16,"used":581.15,"free":3050.98},{"epoch":26160642,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.12,"free":3051.01},{"epoch":26160643,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":581.91,"free":3050.21},{"epoch":26160644,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":581.49,"free":3050.63},{"epoch":26160645,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.35,"used":581.22,"free":3050.91},{"epoch":26160646,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":581.17,"free":3050.96},{"epoch":26160647,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":581.14,"free":3050.99},{"epoch":26160648,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":581.57,"free":3050.55},{"epoch":26160649,"idl":99.94,"recv":0,"send":0,"writ":0.31,"used":581.48,"free":3050.63},{"epoch":26160650,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":581.75,"free":3050.38},{"epoch":26160651,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":581.72,"free":3050.4},{"epoch":26160652,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":581.69,"free":3050.43},{"epoch":26160653,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":581.88,"free":3050.24},{"epoch":26160654,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":581.38,"free":3050.74},{"epoch":26160655,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.3,"used":581.39,"free":3050.76},{"epoch":26160656,"idl":99.91,"recv":0,"send":0.01,"writ":0.14,"used":581.51,"free":3050.63},{"epoch":26160657,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":581.48,"free":3050.66},{"epoch":26160658,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":581.64,"free":3050.49},{"epoch":26160659,"idl":99.93,"recv":0,"send":0,"writ":0.32,"used":580.92,"free":3051.21},{"epoch":26160660,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":581.39,"free":3050.75},{"epoch":26160661,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.37,"free":3050.77},{"epoch":26160662,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":581.5,"free":3050.64},{"epoch":26160663,"idl":99.8,"recv":0,"send":0,"writ":0.45,"used":581.88,"free":3050.25},{"epoch":26160664,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":580.71,"free":3051.41},{"epoch":26160665,"idl":99.89,"recv":0,"send":0,"writ":0.36,"used":580.7,"free":3051.45},{"epoch":26160666,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":580.68,"free":3051.46},{"epoch":26160667,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":580.64,"free":3051.49},{"epoch":26160668,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":580.61,"free":3051.52},{"epoch":26160669,"idl":99.7,"recv":0,"send":0,"writ":0.66,"used":581.51,"free":3050.62},{"epoch":26160670,"idl":99.86,"recv":0,"send":0,"writ":0.35,"used":580.99,"free":3051.15},{"epoch":26160671,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":580.96,"free":3051.18},{"epoch":26160672,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.14,"used":580.93,"free":3051.21},{"epoch":26160673,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":580.98,"free":3051.15},{"epoch":26160674,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":581.3,"free":3050.84},{"epoch":26160675,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":581.22,"free":3050.94},{"epoch":26160676,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":581.16,"free":3050.99},{"epoch":26160677,"idl":99.94,"recv":0,"send":0,"writ":0.21,"used":581.13,"free":3051.02},{"epoch":26160678,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":581.1,"free":3051.05},{"epoch":26160679,"idl":99.81,"recv":0.01,"send":0.01,"writ":0.55,"used":581.28,"free":3050.86},{"epoch":26160680,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":579.33,"free":3052.83},{"epoch":26160681,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":579.24,"free":3052.92},{"epoch":26160682,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":579.2,"free":3052.95},{"epoch":26160683,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":579.17,"free":3052.98},{"epoch":26160684,"idl":99.83,"recv":0,"send":0,"writ":0.55,"used":580.75,"free":3051.39},{"epoch":26160685,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":580.62,"free":3051.53},{"epoch":26160686,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":580.74,"free":3051.41},{"epoch":26160687,"idl":98.87,"recv":0,"send":0,"writ":0.14,"used":580.71,"free":3051.44},{"epoch":26160688,"idl":98.82,"recv":0,"send":0,"writ":0.14,"used":580.69,"free":3051.46},{"epoch":26160689,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":581.35,"free":3050.78},{"epoch":26160690,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":580.65,"free":3051.51},{"epoch":26160691,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":580.61,"free":3051.54},{"epoch":26160692,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":580.58,"free":3051.57},{"epoch":26160693,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":580.76,"free":3051.38},{"epoch":26160694,"idl":99.77,"recv":0,"send":0,"writ":0.56,"used":581.22,"free":3050.91},{"epoch":26160695,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":580.98,"free":3051.17},{"epoch":26160696,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":580.94,"free":3051.21},{"epoch":26160697,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":580.9,"free":3051.24},{"epoch":26160698,"idl":99.04,"recv":0,"send":0,"writ":0.14,"used":580.87,"free":3051.27},{"epoch":26160699,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":581.43,"free":3050.68},{"epoch":26160700,"idl":99.89,"recv":0,"send":0,"writ":0.44,"used":581.25,"free":3050.88},{"epoch":26160701,"idl":99.34,"recv":0,"send":0,"writ":0.16,"used":581.22,"free":3050.91},{"epoch":26160702,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":581.19,"free":3050.93},{"epoch":26160703,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":581.15,"free":3050.96},{"epoch":26160704,"idl":99.81,"recv":0,"send":0,"writ":0.43,"used":581.45,"free":3050.66},{"epoch":26160705,"idl":99.03,"recv":0,"send":0,"writ":0.45,"used":580.86,"free":3051.26},{"epoch":26160706,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":580.99,"free":3051.13},{"epoch":26160707,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":580.98,"free":3051.14},{"epoch":26160708,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":580.94,"free":3051.17},{"epoch":26160709,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.91,"free":3051.2},{"epoch":26160710,"idl":99.74,"recv":0,"send":0,"writ":0.71,"used":581.48,"free":3050.64},{"epoch":26160711,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":580.87,"free":3051.25},{"epoch":26160712,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":580.85,"free":3051.27},{"epoch":26160713,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":580.98,"free":3051.13},{"epoch":26160714,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":580.96,"free":3051.15},{"epoch":26160715,"idl":99.74,"recv":0,"send":0.01,"writ":0.71,"used":580.64,"free":3051.49},{"epoch":26160716,"idl":99.93,"recv":0,"send":0.01,"writ":0.16,"used":579.92,"free":3052.2},{"epoch":26160717,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":579.86,"free":3052.26},{"epoch":26160718,"idl":99.74,"recv":0,"send":0,"writ":0.15,"used":579.61,"free":3052.5},{"epoch":26160719,"idl":96.84,"recv":0,"send":0,"writ":0.16,"used":579.74,"free":3052.37},{"epoch":26160720,"idl":99.71,"recv":0,"send":0,"writ":0.7,"used":581.65,"free":3050.47},{"epoch":26160721,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":581.44,"free":3050.68},{"epoch":26160722,"idl":99.65,"recv":0,"send":0,"writ":0.14,"used":581.41,"free":3050.71},{"epoch":26160723,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.37,"free":3050.74},{"epoch":26160724,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":581.34,"free":3050.77},{"epoch":26160725,"idl":99.74,"recv":0,"send":0,"writ":0.73,"used":581.3,"free":3050.82},{"epoch":26160726,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":580.98,"free":3051.14},{"epoch":26160727,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.94,"free":3051.17},{"epoch":26160728,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":580.91,"free":3051.2},{"epoch":26160729,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":581.12,"free":3050.95},{"epoch":26160730,"idl":99.73,"recv":0,"send":0,"writ":0.71,"used":581.94,"free":3050.15},{"epoch":26160731,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":581.06,"free":3051.02},{"epoch":26160732,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":581.21,"free":3050.87},{"epoch":26160733,"idl":99.53,"recv":0,"send":0,"writ":0.18,"used":581.18,"free":3050.9},{"epoch":26160734,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":581.15,"free":3050.94},{"epoch":26160735,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":581.5,"free":3050.61},{"epoch":26160736,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":581.11,"free":3050.99},{"epoch":26160737,"idl":99.75,"recv":0,"send":0,"writ":0.21,"used":581.31,"free":3050.79},{"epoch":26160738,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.37,"free":3050.72},{"epoch":26160739,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.15,"used":581.47,"free":3050.62},{"epoch":26160740,"idl":99.31,"recv":0,"send":0,"writ":0.56,"used":581.82,"free":3050.29},{"epoch":26160741,"idl":99.93,"recv":0,"send":0,"writ":0.27,"used":581.42,"free":3050.68},{"epoch":26160742,"idl":99.97,"recv":0,"send":0,"writ":0.19,"used":581.39,"free":3050.71},{"epoch":26160743,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":581.36,"free":3050.74},{"epoch":26160744,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":581.33,"free":3050.77},{"epoch":26160745,"idl":99.75,"recv":0,"send":0,"writ":0.61,"used":581.87,"free":3050.24},{"epoch":26160746,"idl":99.92,"recv":0,"send":0,"writ":0.29,"used":581.71,"free":3050.39},{"epoch":26160747,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":581.67,"free":3050.42},{"epoch":26160748,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":581.63,"free":3050.46},{"epoch":26160749,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.6,"free":3050.49},{"epoch":26160750,"idl":99.72,"recv":0,"send":0,"writ":0.3,"used":581.59,"free":3050.51},{"epoch":26160751,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":582.07,"free":3050.03},{"epoch":26160752,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":581.48,"free":3050.62},{"epoch":26160753,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.45,"free":3050.64},{"epoch":26160754,"idl":96.58,"recv":0,"send":0,"writ":0.15,"used":581.42,"free":3050.67},{"epoch":26160755,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":581.16,"free":3050.94},{"epoch":26160756,"idl":99.81,"recv":0.01,"send":0.01,"writ":0.54,"used":581.65,"free":3050.45},{"epoch":26160757,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":581.41,"free":3050.69},{"epoch":26160758,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":581.45,"free":3050.64},{"epoch":26160759,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":581.67,"free":3050.4},{"epoch":26160760,"idl":99.9,"recv":0,"send":0,"writ":0.35,"used":581.4,"free":3050.68},{"epoch":26160761,"idl":98.68,"recv":0,"send":0,"writ":0.58,"used":581.87,"free":3050.21},{"epoch":26160762,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":581.57,"free":3050.5},{"epoch":26160763,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":581.55,"free":3050.52},{"epoch":26160764,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.7,"free":3050.36},{"epoch":26160765,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":581.45,"free":3050.62},{"epoch":26160766,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":581.76,"free":3050.31},{"epoch":26160767,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":581.38,"free":3050.69},{"epoch":26160768,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":581.34,"free":3050.72},{"epoch":26160769,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.31,"free":3050.75},{"epoch":26160770,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":581.37,"free":3050.71},{"epoch":26160771,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":582.18,"free":3049.89},{"epoch":26160772,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.66,"free":3050.41},{"epoch":26160773,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":581.62,"free":3050.44},{"epoch":26160774,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":581.6,"free":3050.45},{"epoch":26160775,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.34,"used":581.6,"free":3050.48},{"epoch":26160776,"idl":99.77,"recv":0,"send":0.01,"writ":0.41,"used":581.86,"free":3050.21},{"epoch":26160777,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":581.32,"free":3050.74},{"epoch":26160778,"idl":99.89,"recv":0,"send":0,"writ":0.15,"used":580.94,"free":3051.12},{"epoch":26160779,"idl":99,"recv":0,"send":0,"writ":0.22,"used":580.91,"free":3051.15},{"epoch":26160780,"idl":99.47,"recv":0,"send":0,"writ":5.79,"used":581.23,"free":3053.09},{"epoch":26160781,"idl":99.76,"recv":0,"send":0,"writ":0.43,"used":581.5,"free":3052.91},{"epoch":26160782,"idl":99.65,"recv":0,"send":0,"writ":0.31,"used":581.36,"free":3053.05},{"epoch":26160783,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":581.32,"free":3053.09},{"epoch":26160784,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":581.37,"free":3053.04},{"epoch":26160785,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":581.99,"free":3052.47},{"epoch":26160786,"idl":99.25,"recv":0,"send":0,"writ":0.52,"used":582.29,"free":3052.17},{"epoch":26160787,"idl":99.68,"recv":0,"send":0,"writ":0.2,"used":581.44,"free":3053.02},{"epoch":26160788,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":581.4,"free":3053.04},{"epoch":26160789,"idl":99.67,"recv":0,"send":0,"writ":0.28,"used":581.62,"free":3052.83},{"epoch":26160790,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":581.39,"free":3053.07},{"epoch":26160791,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":581.43,"free":3053.03},{"epoch":26160792,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":582.62,"free":3051.84},{"epoch":26160793,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":581.94,"free":3052.52},{"epoch":26160794,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.9,"free":3052.54},{"epoch":26160795,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":581.16,"free":3053.3},{"epoch":26160796,"idl":99.53,"recv":0,"send":0,"writ":0.16,"used":581.12,"free":3053.34},{"epoch":26160797,"idl":99.8,"recv":0,"send":0,"writ":0.59,"used":581.99,"free":3052.46},{"epoch":26160798,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":582,"free":3052.46},{"epoch":26160799,"idl":99.95,"recv":0.01,"send":0.01,"writ":0.18,"used":581.96,"free":3052.49},{"epoch":26160800,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":581.94,"free":3052.52},{"epoch":26160801,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.9,"free":3052.56},{"epoch":26160802,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":582.06,"free":3052.4},{"epoch":26160803,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":581.68,"free":3052.78},{"epoch":26160804,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":581.69,"free":3052.76},{"epoch":26160805,"idl":99.86,"recv":0,"send":0,"writ":0.35,"used":581.68,"free":3052.79},{"epoch":26160806,"idl":99.92,"recv":0,"send":0,"writ":0.12,"used":581.64,"free":3052.82},{"epoch":26160807,"idl":99.79,"recv":0,"send":0,"writ":0.49,"used":581.85,"free":3052.61},{"epoch":26160808,"idl":99.88,"recv":0.03,"send":1.45,"writ":0.38,"used":581.36,"free":3053.08},{"epoch":26160809,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":581.44,"free":3052.99},{"epoch":26160810,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":581.73,"free":3052.73},{"epoch":26160811,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.69,"free":3052.76},{"epoch":26160812,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":582.42,"free":3052.02},{"epoch":26160813,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":581.86,"free":3052.58},{"epoch":26160814,"idl":99.35,"recv":0,"send":0,"writ":0.14,"used":581.83,"free":3052.61},{"epoch":26160815,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":581.73,"free":3052.72},{"epoch":26160816,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.41,"free":3053.04},{"epoch":26160817,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":581.05,"free":3053.39},{"epoch":26160818,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.66,"free":3053.78},{"epoch":26160819,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.29,"used":581.09,"free":3053.33},{"epoch":26160820,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":581.47,"free":3052.95},{"epoch":26160821,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":581.43,"free":3052.99},{"epoch":26160822,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":581.71,"free":3052.7},{"epoch":26160823,"idl":99.85,"recv":0.01,"send":0.42,"writ":0.18,"used":580.69,"free":3053.72},{"epoch":26160824,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":580.41,"free":3053.99},{"epoch":26160825,"idl":99.83,"recv":0.01,"send":0.42,"writ":0.33,"used":580.39,"free":3054.02},{"epoch":26160826,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":580.45,"free":3053.96},{"epoch":26160827,"idl":99.74,"recv":0.02,"send":0.42,"writ":0.38,"used":580.71,"free":3053.69},{"epoch":26160828,"idl":99.92,"recv":0,"send":0,"writ":0.43,"used":580.44,"free":3053.96},{"epoch":26160829,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":580.4,"free":3053.99},{"epoch":26160830,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":580.14,"free":3054.26},{"epoch":26160831,"idl":99.76,"recv":0,"send":0,"writ":0.16,"used":580.11,"free":3054.29},{"epoch":26160832,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.08,"free":3054.31},{"epoch":26160833,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":580.38,"free":3054.01},{"epoch":26160834,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":579.85,"free":3054.54},{"epoch":26160835,"idl":98.08,"recv":0.01,"send":0.01,"writ":0.33,"used":580.21,"free":3054.19},{"epoch":26160836,"idl":99.91,"recv":0,"send":0.01,"writ":0.16,"used":580.18,"free":3054.22},{"epoch":26160837,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":580.15,"free":3054.25},{"epoch":26160838,"idl":99.76,"recv":0,"send":0,"writ":0.61,"used":579.64,"free":3054.76},{"epoch":26160839,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":579.1,"free":3055.29},{"epoch":26160840,"idl":99.83,"recv":0,"send":0,"writ":0.38,"used":580.27,"free":3054.13},{"epoch":26160841,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":580.46,"free":3053.94},{"epoch":26160842,"idl":99.88,"recv":0.01,"send":0.13,"writ":0.23,"used":580.38,"free":3054.01},{"epoch":26160843,"idl":99.78,"recv":0,"send":0.01,"writ":0.54,"used":580.59,"free":3053.79},{"epoch":26160844,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":580.15,"free":3054.22},{"epoch":26160845,"idl":99.57,"recv":0,"send":0,"writ":0.3,"used":579.41,"free":3054.99},{"epoch":26160846,"idl":99.83,"recv":0.01,"send":0.4,"writ":0.16,"used":579.39,"free":3054.99},{"epoch":26160847,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":579.39,"free":3054.99},{"epoch":26160848,"idl":99.75,"recv":0,"send":0,"writ":0.49,"used":579.34,"free":3055.04},{"epoch":26160849,"idl":99.22,"recv":0,"send":0,"writ":0.34,"used":580.05,"free":3054.3},{"epoch":26160850,"idl":99.3,"recv":0,"send":0,"writ":0.26,"used":580.55,"free":3053.82},{"epoch":26160851,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":580.52,"free":3053.85},{"epoch":26160852,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":580.68,"free":3053.68},{"epoch":26160853,"idl":99.75,"recv":0,"send":0,"writ":0.44,"used":581,"free":3053.36},{"epoch":26160854,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":579.64,"free":3054.72},{"epoch":26160855,"idl":99.8,"recv":0,"send":0,"writ":0.27,"used":580.12,"free":3054.25},{"epoch":26160856,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":580.09,"free":3054.28},{"epoch":26160857,"idl":99.84,"recv":0,"send":0,"writ":0.25,"used":580.05,"free":3054.31},{"epoch":26160858,"idl":99.72,"recv":0,"send":0,"writ":0.39,"used":580.44,"free":3053.91},{"epoch":26160859,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.33,"used":580.67,"free":3053.68},{"epoch":26160860,"idl":99.65,"recv":0,"send":0,"writ":0.32,"used":580.2,"free":3054.17},{"epoch":26160861,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":580.15,"free":3054.21},{"epoch":26160862,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":580.13,"free":3054.23},{"epoch":26160863,"idl":99.73,"recv":0,"send":0,"writ":0.43,"used":580.53,"free":3053.82},{"epoch":26160864,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":580.55,"free":3053.8},{"epoch":26160865,"idl":99.74,"recv":0,"send":0,"writ":0.31,"used":579.89,"free":3054.48},{"epoch":26160866,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":579.95,"free":3054.41},{"epoch":26160867,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":579.92,"free":3054.44},{"epoch":26160868,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":579.89,"free":3054.47},{"epoch":26160869,"idl":95,"recv":0.29,"send":0.01,"writ":257.56,"used":594.29,"free":3040.06},{"epoch":26160870,"idl":98.48,"recv":0,"send":0,"writ":0.28,"used":582.81,"free":3051.54},{"epoch":26160871,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":582.77,"free":3051.57},{"epoch":26160872,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":582.9,"free":3051.45},{"epoch":26160873,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":582.89,"free":3051.45},{"epoch":26160874,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":580.75,"free":3053.61},{"epoch":26160875,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":580.68,"free":3053.72},{"epoch":26160876,"idl":99.43,"recv":0,"send":0,"writ":0.14,"used":580.67,"free":3053.72},{"epoch":26160877,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":580.63,"free":3053.77},{"epoch":26160878,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":580.61,"free":3053.79},{"epoch":26160879,"idl":99.65,"recv":0,"send":0,"writ":0.68,"used":581.28,"free":3053.1},{"epoch":26160880,"idl":99.73,"recv":0.01,"send":0.02,"writ":0.28,"used":580.73,"free":3053.67},{"epoch":26160881,"idl":97.37,"recv":0.01,"send":0.01,"writ":0.17,"used":580.76,"free":3053.63},{"epoch":26160882,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":580.74,"free":3053.65},{"epoch":26160883,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":580.71,"free":3053.68},{"epoch":26160884,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":580.72,"free":3053.66},{"epoch":26160885,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":580.22,"free":3054.18},{"epoch":26160886,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":580.13,"free":3054.26},{"epoch":26160887,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":580.23,"free":3054.16},{"epoch":26160888,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":580.25,"free":3054.14},{"epoch":26160889,"idl":99.69,"recv":0,"send":0,"writ":0.55,"used":580.67,"free":3053.71},{"epoch":26160890,"idl":99.8,"recv":0,"send":0,"writ":0.28,"used":580.69,"free":3053.71},{"epoch":26160891,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":580.67,"free":3053.74},{"epoch":26160892,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":580.63,"free":3053.79},{"epoch":26160893,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":580.65,"free":3053.77},{"epoch":26160894,"idl":99.7,"recv":0,"send":0,"writ":0.48,"used":581.55,"free":3052.86},{"epoch":26160895,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.37,"used":580.52,"free":3053.91},{"epoch":26160896,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.18,"used":580.4,"free":3054.03},{"epoch":26160897,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":580.49,"free":3053.93},{"epoch":26160898,"idl":96.08,"recv":49.44,"send":0.07,"writ":124.85,"used":586.52,"free":3019.64},{"epoch":26160899,"idl":99.72,"recv":0,"send":0,"writ":0.53,"used":583.56,"free":3001.77},{"epoch":26160900,"idl":99.74,"recv":0,"send":0,"writ":0.48,"used":582.47,"free":3002.88},{"epoch":26160901,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":582.4,"free":3002.95},{"epoch":26160902,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":582.36,"free":3002.98},{"epoch":26160903,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":581.08,"free":3004.3},{"epoch":26160904,"idl":99.69,"recv":0,"send":0,"writ":0.44,"used":580.52,"free":3004.88},{"epoch":26160905,"idl":99.78,"recv":0,"send":0,"writ":0.45,"used":580.8,"free":3004.61},{"epoch":26160906,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":580.77,"free":3004.64},{"epoch":26160907,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":580.73,"free":3004.68},{"epoch":26160908,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":580.7,"free":3004.7},{"epoch":26160909,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":581,"free":3004.38},{"epoch":26160910,"idl":99.58,"recv":0,"send":0,"writ":0.69,"used":581.55,"free":3003.87},{"epoch":26160911,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":580.84,"free":3004.58},{"epoch":26160912,"idl":99.82,"recv":0,"send":0,"writ":0.19,"used":580.8,"free":3004.61},{"epoch":26160913,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":580.77,"free":3004.64},{"epoch":26160914,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":580.73,"free":3004.67},{"epoch":26160915,"idl":99.65,"recv":0,"send":0,"writ":0.77,"used":581.51,"free":3003.91},{"epoch":26160916,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":581.24,"free":3004.18},{"epoch":26160917,"idl":99.82,"recv":0,"send":0,"writ":0.24,"used":581.11,"free":3004.31},{"epoch":26160918,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":581.06,"free":3004.35},{"epoch":26160919,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.2,"used":581.01,"free":3004.39},{"epoch":26160920,"idl":99.66,"recv":0,"send":0,"writ":0.75,"used":581.29,"free":3004.13},{"epoch":26160921,"idl":99.8,"recv":0,"send":0,"writ":0.18,"used":580.96,"free":3004.45},{"epoch":26160922,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":581,"free":3004.41},{"epoch":26160923,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":581.08,"free":3004.33},{"epoch":26160924,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":581.04,"free":3004.36},{"epoch":26160925,"idl":99.65,"recv":0,"send":0,"writ":0.63,"used":581.87,"free":3003.55},{"epoch":26160926,"idl":99.82,"recv":0,"send":0,"writ":0.26,"used":581.24,"free":3004.18},{"epoch":26160927,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":581.2,"free":3004.21},{"epoch":26160928,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":581.17,"free":3004.23},{"epoch":26160929,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":581.32,"free":3004.08},{"epoch":26160930,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":581.75,"free":3003.67},{"epoch":26160931,"idl":96.87,"recv":0,"send":0,"writ":0.29,"used":581.29,"free":3004.13},{"epoch":26160932,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":581.25,"free":3004.16},{"epoch":26160933,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":581.22,"free":3004.19},{"epoch":26160934,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":581.19,"free":3004.21},{"epoch":26160935,"idl":99.66,"recv":0,"send":0,"writ":0.58,"used":581.38,"free":3004.04},{"epoch":26160936,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":581.08,"free":3004.33},{"epoch":26160937,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":581.05,"free":3004.36},{"epoch":26160938,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":581.01,"free":3004.39},{"epoch":26160939,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":580.74,"free":3004.64},{"epoch":26160940,"idl":99.64,"recv":0,"send":0,"writ":0.7,"used":581.42,"free":3003.98},{"epoch":26160941,"idl":99.85,"recv":0,"send":0,"writ":0.23,"used":579.97,"free":3005.43},{"epoch":26160942,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":580.12,"free":3005.27},{"epoch":26160943,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":580.09,"free":3005.3},{"epoch":26160944,"idl":99.84,"recv":0,"send":0.01,"writ":0.16,"used":580.06,"free":3005.33},{"epoch":26160945,"idl":99.65,"recv":0,"send":0,"writ":0.54,"used":581.69,"free":3003.71},{"epoch":26160946,"idl":99.85,"recv":0,"send":0,"writ":0.37,"used":581.23,"free":3004.16},{"epoch":26160947,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":581.21,"free":3004.18},{"epoch":26160948,"idl":99.75,"recv":0,"send":0,"writ":0.17,"used":581.35,"free":3004.04},{"epoch":26160949,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":581.31,"free":3004.07},{"epoch":26160950,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":581.31,"free":3004.09},{"epoch":26160951,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":581.63,"free":3003.77},{"epoch":26160952,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":581.25,"free":3004.14},{"epoch":26160953,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":581.21,"free":3004.18},{"epoch":26160954,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":581.19,"free":3004.2},{"epoch":26160955,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.3,"used":581.36,"free":3004.04},{"epoch":26160956,"idl":99.68,"recv":0,"send":0.01,"writ":0.57,"used":581.67,"free":3003.73},{"epoch":26160957,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":581.29,"free":3004.1},{"epoch":26160958,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":580.76,"free":3004.63},{"epoch":26160959,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":580.48,"free":3004.92},{"epoch":26160960,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":581.45,"free":3003.97},{"epoch":26160961,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":581.65,"free":3003.76},{"epoch":26160962,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":581.1,"free":3004.31},{"epoch":26160963,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":581.06,"free":3004.34},{"epoch":26160964,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":581.03,"free":3004.37},{"epoch":26160965,"idl":99.8,"recv":0,"send":0,"writ":0.31,"used":581.51,"free":3003.9},{"epoch":26160966,"idl":99.71,"recv":0,"send":0,"writ":0.52,"used":581.69,"free":3003.72},{"epoch":26160967,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":581.2,"free":3004.21},{"epoch":26160968,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":581.23,"free":3004.17},{"epoch":26160969,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":581.32,"free":3004.06},{"epoch":26160970,"idl":99.76,"recv":0,"send":0,"writ":0.33,"used":581.29,"free":3004.1},{"epoch":26160971,"idl":99.7,"recv":0,"send":0,"writ":0.43,"used":581.33,"free":3004.06},{"epoch":26160972,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":579.97,"free":3005.41},{"epoch":26160973,"idl":99.81,"recv":0,"send":0,"writ":0.21,"used":579.71,"free":3005.67},{"epoch":26160974,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":579.68,"free":3005.71},{"epoch":26160975,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":580.83,"free":3004.58},{"epoch":26160976,"idl":99.71,"recv":0,"send":0,"writ":0.43,"used":581.25,"free":3004.16},{"epoch":26160977,"idl":99.84,"recv":0,"send":0,"writ":0.35,"used":580.77,"free":3004.63},{"epoch":26160978,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":580.74,"free":3004.65},{"epoch":26160979,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.17,"used":580.71,"free":3004.68},{"epoch":26160980,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":580.7,"free":3004.71},{"epoch":26160981,"idl":99.72,"recv":0,"send":0,"writ":0.49,"used":581.38,"free":3004.03},{"epoch":26160982,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":581.07,"free":3004.33},{"epoch":26160983,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":581.03,"free":3004.36},{"epoch":26160984,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":581,"free":3004.39},{"epoch":26160985,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":580.5,"free":3004.91},{"epoch":26160986,"idl":99.7,"recv":0,"send":0,"writ":0.42,"used":580.79,"free":3004.61},{"epoch":26160987,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":579.69,"free":3005.71},{"epoch":26160988,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":579.85,"free":3005.55},{"epoch":26160989,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":579.85,"free":3005.54},{"epoch":26160990,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":580.8,"free":3004.61},{"epoch":26160991,"idl":99.7,"recv":0,"send":0,"writ":0.36,"used":581.13,"free":3004.28},{"epoch":26160992,"idl":99.84,"recv":0,"send":0,"writ":0.4,"used":580.99,"free":3004.41},{"epoch":26160993,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":580.97,"free":3004.43},{"epoch":26160994,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":580.93,"free":3004.46},{"epoch":26160995,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":580.95,"free":3004.46},{"epoch":26160996,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":580.82,"free":3004.59},{"epoch":26160997,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":581.15,"free":3004.29},{"epoch":26160998,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":580.76,"free":3004.67},{"epoch":26160999,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":580.49,"free":3004.92},{"epoch":26161000,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":580.46,"free":3004.96},{"epoch":26161001,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":580.59,"free":3004.84},{"epoch":26161002,"idl":99.69,"recv":0,"send":0,"writ":0.6,"used":581.41,"free":3004.01},{"epoch":26161003,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":581.04,"free":3004.38},{"epoch":26161004,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":581.01,"free":3004.44},{"epoch":26161005,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":580.77,"free":3004.7},{"epoch":26161006,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":580.73,"free":3004.74},{"epoch":26161007,"idl":99.72,"recv":0,"send":0,"writ":0.6,"used":581.06,"free":3004.4},{"epoch":26161008,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":580.85,"free":3004.61},{"epoch":26161009,"idl":99.86,"recv":0,"send":0.02,"writ":0.22,"used":580.81,"free":3004.64},{"epoch":26161010,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":581.03,"free":3004.44},{"epoch":26161011,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":580.99,"free":3004.47},{"epoch":26161012,"idl":99.69,"recv":0.02,"send":0.01,"writ":0.45,"used":581.38,"free":3004.08},{"epoch":26161013,"idl":99.82,"recv":0.02,"send":0.02,"writ":0.33,"used":581,"free":3004.46},{"epoch":26161014,"idl":99.82,"recv":0.02,"send":0.02,"writ":0.16,"used":581.01,"free":3004.44},{"epoch":26161015,"idl":99.76,"recv":0.03,"send":0.02,"writ":0.3,"used":581.04,"free":3004.43},{"epoch":26161016,"idl":99.84,"recv":0.03,"send":0.02,"writ":0.17,"used":581.01,"free":3004.45},{"epoch":26161017,"idl":99.72,"recv":0.02,"send":0.02,"writ":0.59,"used":581.35,"free":3004.1},{"epoch":26161018,"idl":99.8,"recv":0.02,"send":0.02,"writ":0.2,"used":580.84,"free":3004.62},{"epoch":26161019,"idl":99.83,"recv":0.02,"send":0.02,"writ":0.23,"used":580.77,"free":3004.67},{"epoch":26161020,"idl":99.71,"recv":0.02,"send":0.02,"writ":0.32,"used":580.3,"free":3005.17},{"epoch":26161021,"idl":99.78,"recv":0.02,"send":0.01,"writ":0.18,"used":580.26,"free":3005.2},{"epoch":26161022,"idl":99.68,"recv":0.02,"send":0.01,"writ":0.44,"used":580.75,"free":3004.7},{"epoch":26161023,"idl":99.84,"recv":0.02,"send":0.01,"writ":0.31,"used":580.76,"free":3004.69},{"epoch":26161024,"idl":99.8,"recv":0.02,"send":0.02,"writ":0.18,"used":580.72,"free":3004.72},{"epoch":26161025,"idl":99.79,"recv":0.02,"send":0.01,"writ":0.33,"used":581.04,"free":3004.42},{"epoch":26161026,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":580.97,"free":3004.49},{"epoch":26161027,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":581.47,"free":3003.98},{"epoch":26161028,"idl":99.83,"recv":0,"send":0,"writ":0.47,"used":581.24,"free":3004.21},{"epoch":26161029,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":581.08,"free":3004.34},{"epoch":26161030,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":581.07,"free":3004.37},{"epoch":26161031,"idl":99.57,"recv":0,"send":0,"writ":0.15,"used":581.03,"free":3004.4},{"epoch":26161032,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":581,"free":3004.43},{"epoch":26161033,"idl":99.76,"recv":0,"send":0,"writ":0.59,"used":581.32,"free":3004.11},{"epoch":26161034,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":580.72,"free":3004.7},{"epoch":26161035,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":581.32,"free":3004.12},{"epoch":26161036,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":581.34,"free":3004.11},{"epoch":26161037,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":581.3,"free":3004.14},{"epoch":26161038,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":581.42,"free":3004.01},{"epoch":26161039,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.14,"used":580.99,"free":3004.44},{"epoch":26161040,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":580.98,"free":3004.47},{"epoch":26161041,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":580.94,"free":3004.5},{"epoch":26161042,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":581.1,"free":3004.34},{"epoch":26161043,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":581.42,"free":3004.02},{"epoch":26161044,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":581.03,"free":3004.4},{"epoch":26161045,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":581.01,"free":3004.43},{"epoch":26161046,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":580.98,"free":3004.46},{"epoch":26161047,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":580.94,"free":3004.5},{"epoch":26161048,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":581.21,"free":3004.22},{"epoch":26161049,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":580.81,"free":3004.61},{"epoch":26161050,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":581.33,"free":3004.11},{"epoch":26161051,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.26,"free":3004.18},{"epoch":26161052,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.24,"free":3004.2},{"epoch":26161053,"idl":99.8,"recv":0,"send":0,"writ":0.46,"used":581.48,"free":3003.95},{"epoch":26161054,"idl":99.94,"recv":0,"send":0,"writ":0.27,"used":580.93,"free":3004.5},{"epoch":26161055,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":580.75,"free":3004.69},{"epoch":26161056,"idl":99.9,"recv":0,"send":0,"writ":0.13,"used":580.82,"free":3004.62},{"epoch":26161057,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":580.78,"free":3004.65},{"epoch":26161058,"idl":99.8,"recv":0,"send":0,"writ":0.42,"used":581.27,"free":3004.16},{"epoch":26161059,"idl":99.87,"recv":0,"send":0,"writ":0.5,"used":581.23,"free":3004.17},{"epoch":26161060,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":581.2,"free":3004.22},{"epoch":26161061,"idl":99.89,"recv":0,"send":0,"writ":0.13,"used":581.17,"free":3004.24},{"epoch":26161062,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.3,"free":3004.1},{"epoch":26161063,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":581.66,"free":3003.75},{"epoch":26161064,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":581.26,"free":3004.13},{"epoch":26161065,"idl":99.91,"recv":0,"send":0,"writ":0.33,"used":581.24,"free":3004.16},{"epoch":26161066,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":581.21,"free":3004.19},{"epoch":26161067,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.17,"free":3004.22},{"epoch":26161068,"idl":99.93,"recv":0,"send":0,"writ":0.4,"used":580.8,"free":3004.59},{"epoch":26161069,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":581.74,"free":3003.65},{"epoch":26161070,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":581.29,"free":3004.11},{"epoch":26161071,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":581.27,"free":3004.13},{"epoch":26161072,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":581.23,"free":3004.16},{"epoch":26161073,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":581.2,"free":3004.19},{"epoch":26161074,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":580.53,"free":3004.86},{"epoch":26161075,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.29,"used":580.65,"free":3004.76},{"epoch":26161076,"idl":99.91,"recv":0,"send":0.01,"writ":0.14,"used":580.84,"free":3004.56},{"epoch":26161077,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":580.8,"free":3004.59},{"epoch":26161078,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":580.77,"free":3004.62},{"epoch":26161079,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":580.31,"free":3005.08},{"epoch":26161080,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":581.43,"free":3003.97},{"epoch":26161081,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":581.44,"free":3003.96},{"epoch":26161082,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":581.42,"free":3003.98},{"epoch":26161083,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":581.57,"free":3003.82},{"epoch":26161084,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":581.73,"free":3003.66},{"epoch":26161085,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":581.29,"free":3004.12},{"epoch":26161086,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":581.24,"free":3004.16},{"epoch":26161087,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":581.2,"free":3004.19},{"epoch":26161088,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.18,"free":3004.21},{"epoch":26161089,"idl":99.7,"recv":0,"send":0,"writ":0.64,"used":581.7,"free":3003.67},{"epoch":26161090,"idl":99.84,"recv":0,"send":0,"writ":0.33,"used":581.32,"free":3004.07},{"epoch":26161091,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":581.28,"free":3004.11},{"epoch":26161092,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.24,"free":3004.14},{"epoch":26161093,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":581.19,"free":3004.18},{"epoch":26161094,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":581.66,"free":3003.73},{"epoch":26161095,"idl":99.87,"recv":0,"send":0,"writ":0.41,"used":581.23,"free":3004.17},{"epoch":26161096,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":581.31,"free":3004.09},{"epoch":26161097,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":581.29,"free":3004.11},{"epoch":26161098,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":581.25,"free":3004.14},{"epoch":26161099,"idl":99.77,"recv":0.01,"send":0.01,"writ":0.61,"used":581.41,"free":3003.97},{"epoch":26161100,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":581.43,"free":3003.98},{"epoch":26161101,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":581.41,"free":3003.99},{"epoch":26161102,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":581.45,"free":3003.94},{"epoch":26161103,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.52,"free":3003.88},{"epoch":26161104,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":581.83,"free":3003.55},{"epoch":26161105,"idl":99.77,"recv":0,"send":0,"writ":0.45,"used":581.24,"free":3004.16},{"epoch":26161106,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":581.19,"free":3004.2},{"epoch":26161107,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":581.15,"free":3004.23},{"epoch":26161108,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":581.2,"free":3004.19},{"epoch":26161109,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":581.27,"free":3004.11},{"epoch":26161110,"idl":99.71,"recv":0,"send":0,"writ":0.73,"used":582.03,"free":3003.36},{"epoch":26161111,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":581.46,"free":3003.92},{"epoch":26161112,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":581.44,"free":3003.94},{"epoch":26161113,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":581.41,"free":3003.97},{"epoch":26161114,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":581.38,"free":3003.99},{"epoch":26161115,"idl":99.67,"recv":0,"send":0,"writ":0.8,"used":581.82,"free":3003.56},{"epoch":26161116,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":581.51,"free":3003.86},{"epoch":26161117,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":581.47,"free":3003.89},{"epoch":26161118,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":581.44,"free":3003.92},{"epoch":26161119,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":581.4,"free":3003.93},{"epoch":26161120,"idl":99.71,"recv":0,"send":0,"writ":0.75,"used":581.05,"free":3004.3},{"epoch":26161121,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.11,"free":3004.24},{"epoch":26161122,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":581.27,"free":3004.07},{"epoch":26161123,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":581.26,"free":3004.08},{"epoch":26161124,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":581.23,"free":3004.13},{"epoch":26161125,"idl":99.73,"recv":0,"send":0,"writ":0.66,"used":581.42,"free":3003.96},{"epoch":26161126,"idl":99.91,"recv":0,"send":0,"writ":0.25,"used":581.44,"free":3003.95},{"epoch":26161127,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.96,"free":3004.42},{"epoch":26161128,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":580.64,"free":3004.74},{"epoch":26161129,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":580.79,"free":3004.58},{"epoch":26161130,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":581.74,"free":3003.65},{"epoch":26161131,"idl":99.93,"recv":0,"send":0,"writ":0.27,"used":581.24,"free":3004.14},{"epoch":26161132,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":581.22,"free":3004.16},{"epoch":26161133,"idl":99.92,"recv":0.03,"send":0,"writ":0.14,"used":581.22,"free":3004.16},{"epoch":26161134,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.25,"free":3004.12},{"epoch":26161135,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.55,"used":580.93,"free":3004.45},{"epoch":26161136,"idl":99.9,"recv":0,"send":0.01,"writ":0.3,"used":580.71,"free":3004.67},{"epoch":26161137,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":580.67,"free":3004.71},{"epoch":26161138,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":580.26,"free":3005.11},{"epoch":26161139,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":580.28,"free":3005.09},{"epoch":26161140,"idl":99.66,"recv":0,"send":0,"writ":0.49,"used":580.92,"free":3004.46},{"epoch":26161141,"idl":99.92,"recv":0,"send":0,"writ":0.4,"used":580.98,"free":3004.39},{"epoch":26161142,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":580.95,"free":3004.42},{"epoch":26161143,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":580.92,"free":3004.45},{"epoch":26161144,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":580.89,"free":3004.48},{"epoch":26161145,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":580.89,"free":3004.49},{"epoch":26161146,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":581.37,"free":3004.01},{"epoch":26161147,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581,"free":3004.38},{"epoch":26161148,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.97,"free":3004.4},{"epoch":26161149,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":580.93,"free":3004.41},{"epoch":26161150,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":580.67,"free":3004.69},{"epoch":26161151,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":581.53,"free":3003.82},{"epoch":26161152,"idl":98.59,"recv":0,"send":0,"writ":0.16,"used":580.88,"free":3004.46},{"epoch":26161153,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":580.99,"free":3004.35},{"epoch":26161154,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":580.95,"free":3004.39},{"epoch":26161155,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":580.92,"free":3004.43},{"epoch":26161156,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":581.7,"free":3003.65},{"epoch":26161157,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":581.11,"free":3004.23},{"epoch":26161158,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":581.23,"free":3004.1},{"epoch":26161159,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.16,"used":581.19,"free":3004.15},{"epoch":26161160,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":581.17,"free":3004.18},{"epoch":26161161,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":581.49,"free":3003.86},{"epoch":26161162,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":581.13,"free":3004.21},{"epoch":26161163,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":581.27,"free":3004.07},{"epoch":26161164,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":581.23,"free":3004.1},{"epoch":26161165,"idl":98.87,"recv":0,"send":0,"writ":15.55,"used":582.3,"free":3003.61},{"epoch":26161166,"idl":99.77,"recv":0,"send":0,"writ":0.51,"used":580.95,"free":3004.5},{"epoch":26161167,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":579.95,"free":3005.5},{"epoch":26161168,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":579.93,"free":3005.51},{"epoch":26161169,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":580.06,"free":3005.37},{"epoch":26161170,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":581.04,"free":3004.41},{"epoch":26161171,"idl":99.78,"recv":0,"send":0,"writ":0.58,"used":581.19,"free":3004.26},{"epoch":26161172,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":580.23,"free":3005.21},{"epoch":26161173,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":580.2,"free":3005.24},{"epoch":26161174,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":580.16,"free":3005.27},{"epoch":26161175,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":579.75,"free":3005.7},{"epoch":26161176,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":580.6,"free":3004.84},{"epoch":26161177,"idl":99.92,"recv":0,"send":0,"writ":0.47,"used":581.01,"free":3004.42},{"epoch":26161178,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":580.98,"free":3004.45},{"epoch":26161179,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":581.19,"free":3004.22},{"epoch":26161180,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":580.46,"free":3004.96},{"epoch":26161181,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":580.41,"free":3005.01},{"epoch":26161182,"idl":99.74,"recv":0,"send":0,"writ":0.57,"used":580.99,"free":3004.43},{"epoch":26161183,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":580.53,"free":3004.89},{"epoch":26161184,"idl":99.95,"recv":0.01,"send":0.01,"writ":0.16,"used":580.46,"free":3004.96},{"epoch":26161185,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":581.42,"free":3004.02},{"epoch":26161186,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":581.4,"free":3004.04},{"epoch":26161187,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":580.81,"free":3004.63},{"epoch":26161188,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":580.03,"free":3005.41},{"epoch":26161189,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":579.99,"free":3005.44},{"epoch":26161190,"idl":99.91,"recv":0,"send":0,"writ":0.34,"used":580.21,"free":3005.23},{"epoch":26161191,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":580.17,"free":3005.28},{"epoch":26161192,"idl":99.79,"recv":0,"send":0,"writ":0.58,"used":581.4,"free":3004.05},{"epoch":26161193,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":581.49,"free":3003.96},{"epoch":26161194,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":581.5,"free":3003.95},{"epoch":26161195,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.35,"used":581.01,"free":3004.45},{"epoch":26161196,"idl":88.13,"recv":0,"send":0.01,"writ":383.97,"used":602.42,"free":2917.81},{"epoch":26161197,"idl":98.95,"recv":0,"send":0,"writ":65.77,"used":584.38,"free":2831.61},{"epoch":26161198,"idl":99.9,"recv":0,"send":0,"writ":0.26,"used":583.05,"free":2834.54},{"epoch":26161199,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":582.89,"free":2834.62},{"epoch":26161200,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":583.82,"free":2833.24},{"epoch":26161201,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":583.72,"free":2833.25},{"epoch":26161202,"idl":99.79,"recv":0,"send":0,"writ":0.62,"used":582.31,"free":2834.62},{"epoch":26161203,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.56,"free":2835.29},{"epoch":26161204,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":581.44,"free":2835.32},{"epoch":26161205,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":581.45,"free":2835.11},{"epoch":26161206,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":581.53,"free":2834.87},{"epoch":26161207,"idl":99.82,"recv":0,"send":0,"writ":0.42,"used":581.67,"free":2834.58},{"epoch":26161208,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":580.17,"free":2835.99},{"epoch":26161209,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":581.23,"free":2834.51},{"epoch":26161210,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":581.61,"free":2834.05},{"epoch":26161211,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":581.46,"free":2834.1},{"epoch":26161212,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":581.74,"free":2833.73},{"epoch":26161213,"idl":99.93,"recv":0,"send":0,"writ":0.39,"used":580.68,"free":2834.7},{"epoch":26161214,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.57,"free":2834.73},{"epoch":26161215,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":580.5,"free":2834.74},{"epoch":26161216,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":580.37,"free":2834.78},{"epoch":26161217,"idl":99.78,"recv":0,"send":0,"writ":0.48,"used":580.86,"free":2834.21},{"epoch":26161218,"idl":99.94,"recv":0,"send":0,"writ":0.3,"used":580.39,"free":2834.6},{"epoch":26161219,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.14,"used":580.44,"free":2834.46},{"epoch":26161220,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":580.85,"free":2834},{"epoch":26161221,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":580.75,"free":2834.01},{"epoch":26161222,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":580.64,"free":2834.04},{"epoch":26161223,"idl":99.77,"recv":0,"send":0,"writ":0.57,"used":582.09,"free":2832.51},{"epoch":26161224,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":581.39,"free":2833.12},{"epoch":26161225,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":581.56,"free":2832.87},{"epoch":26161226,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":581.61,"free":2832.74},{"epoch":26161227,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":581.51,"free":2832.76},{"epoch":26161228,"idl":99.78,"recv":0,"send":0,"writ":0.6,"used":581.79,"free":2832.3},{"epoch":26161229,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.15,"free":2832.82},{"epoch":26161230,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":581.33,"free":2832.35},{"epoch":26161231,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":581.22,"free":2832.38},{"epoch":26161232,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.11,"free":2832.41},{"epoch":26161233,"idl":94.99,"recv":0.35,"send":0.01,"writ":194.59,"used":595.74,"free":2817.53},{"epoch":26161234,"idl":99.91,"recv":0,"send":0,"writ":63.72,"used":582.75,"free":2830.17},{"epoch":26161235,"idl":99.85,"recv":0,"send":0.01,"writ":0.3,"used":583.88,"free":2828.98},{"epoch":26161236,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":583.94,"free":2828.83},{"epoch":26161237,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":583.83,"free":2828.86},{"epoch":26161238,"idl":99.81,"recv":0,"send":0,"writ":0.63,"used":583.12,"free":2829.52},{"epoch":26161239,"idl":99.87,"recv":0,"send":0,"writ":0.27,"used":581.44,"free":2831.13},{"epoch":26161240,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":581.35,"free":2831.15},{"epoch":26161241,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":581.37,"free":2831.04},{"epoch":26161242,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.27,"free":2831.07},{"epoch":26161243,"idl":99.81,"recv":0,"send":0,"writ":0.51,"used":581.94,"free":2830.31},{"epoch":26161244,"idl":99.92,"recv":0,"send":0,"writ":0.23,"used":581.29,"free":2830.9},{"epoch":26161245,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":581.93,"free":2830.2},{"epoch":26161246,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":581.83,"free":2830.22},{"epoch":26161247,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":581.73,"free":2830.23},{"epoch":26161248,"idl":99.77,"recv":0,"send":0,"writ":0.61,"used":582.3,"free":2829.58},{"epoch":26161249,"idl":99.9,"recv":0,"send":0,"writ":0.19,"used":581.44,"free":2830.36},{"epoch":26161250,"idl":99.87,"recv":0,"send":0,"writ":0.35,"used":581.58,"free":2830.15},{"epoch":26161251,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":581.46,"free":2830.19},{"epoch":26161252,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":581.36,"free":2830.2},{"epoch":26161253,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":581.69,"free":2829.79},{"epoch":26161254,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":581.81,"free":2829.59},{"epoch":26161255,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.29,"used":581.73,"free":2829.61},{"epoch":26161256,"idl":99.91,"recv":0,"send":0.01,"writ":0.14,"used":581.61,"free":2829.65},{"epoch":26161257,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":581.49,"free":2829.68},{"epoch":26161258,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":581.21,"free":2829.88},{"epoch":26161259,"idl":99.78,"recv":0,"send":0,"writ":0.63,"used":581.89,"free":2829.01},{"epoch":26161260,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":581.86,"free":2828.95},{"epoch":26161261,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":581.86,"free":2828.87},{"epoch":26161262,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":581.74,"free":2828.9},{"epoch":26161263,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":581.63,"free":2828.93},{"epoch":26161264,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":581.88,"free":2828.6},{"epoch":26161265,"idl":99.82,"recv":0,"send":0,"writ":0.37,"used":581.43,"free":2828.98},{"epoch":26161266,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":581.32,"free":2829},{"epoch":26161267,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":581.3,"free":2828.94},{"epoch":26161268,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.33,"free":2828.84},{"epoch":26161269,"idl":99.68,"recv":0.01,"send":0.01,"writ":0.67,"used":582.38,"free":2827.68},{"epoch":26161270,"idl":99.81,"recv":0,"send":0,"writ":0.34,"used":581.3,"free":2828.69},{"epoch":26161271,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":581.17,"free":2828.74},{"epoch":26161272,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":581.22,"free":2828.6},{"epoch":26161273,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":581.15,"free":2828.59},{"epoch":26161274,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":581.75,"free":2827.92},{"epoch":26161275,"idl":99.86,"recv":0,"send":0,"writ":0.36,"used":581.69,"free":2827.92},{"epoch":26161276,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":581.58,"free":2827.95},{"epoch":26161277,"idl":99.91,"recv":0,"send":0,"writ":0.22,"used":581.47,"free":2827.98},{"epoch":26161278,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":581.35,"free":2828.02},{"epoch":26161279,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.54,"used":581.99,"free":2827.3},{"epoch":26161280,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":581.59,"free":2827.64},{"epoch":26161281,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.46,"free":2827.68},{"epoch":26161282,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":580.86,"free":2828.2},{"epoch":26161283,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":580.25,"free":2828.72},{"epoch":26161284,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":580.46,"free":2828.43},{"epoch":26161285,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":580.61,"free":2828.22},{"epoch":26161286,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":580.63,"free":2828.12},{"epoch":26161287,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":580.53,"free":2828.14},{"epoch":26161288,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":580.43,"free":2828.17},{"epoch":26161289,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":580.85,"free":2827.7},{"epoch":26161290,"idl":99.87,"recv":0,"send":0,"writ":0.45,"used":581.25,"free":2827.25},{"epoch":26161291,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":581.16,"free":2827.28},{"epoch":26161292,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":581.14,"free":2827.23},{"epoch":26161293,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.17,"free":2827.15},{"epoch":26161294,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":581.12,"free":2827.18},{"epoch":26161295,"idl":99.04,"recv":0,"send":0,"writ":0.7,"used":580.46,"free":2827.83},{"epoch":26161296,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":580.01,"free":2828.22},{"epoch":26161297,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":579.92,"free":2828.26},{"epoch":26161298,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":579.86,"free":2828.27},{"epoch":26161299,"idl":99.77,"recv":0,"send":0,"writ":0.27,"used":581.42,"free":2826.64},{"epoch":26161300,"idl":99.74,"recv":0,"send":0,"writ":0.7,"used":582.07,"free":2825.87},{"epoch":26161301,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":581.22,"free":2826.67},{"epoch":26161302,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":581.13,"free":2826.7},{"epoch":26161303,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.07,"free":2826.73},{"epoch":26161304,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":581.01,"free":2826.77},{"epoch":26161305,"idl":99.75,"recv":0,"send":0,"writ":0.71,"used":581.16,"free":2826.6},{"epoch":26161306,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":580.6,"free":2827.13},{"epoch":26161307,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":580.53,"free":2827.16},{"epoch":26161308,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":580.62,"free":2827.01},{"epoch":26161309,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":580.6,"free":2826.96},{"epoch":26161310,"idl":99.72,"recv":0,"send":0,"writ":0.71,"used":581.03,"free":2826.52},{"epoch":26161311,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":580.24,"free":2827.29},{"epoch":26161312,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":580.2,"free":2827.31},{"epoch":26161313,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":580.34,"free":2827.14},{"epoch":26161314,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":580.26,"free":2827.15},{"epoch":26161315,"idl":99.72,"recv":0.01,"send":0.01,"writ":0.67,"used":581.81,"free":2825.58},{"epoch":26161316,"idl":99.93,"recv":0,"send":0.01,"writ":0.22,"used":581.36,"free":2825.99},{"epoch":26161317,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":581.32,"free":2826.02},{"epoch":26161318,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":581.11,"free":2826.19},{"epoch":26161319,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":581.01,"free":2826.23},{"epoch":26161320,"idl":99.7,"recv":0,"send":0,"writ":0.73,"used":582.45,"free":2824.77},{"epoch":26161321,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.5,"free":2825.69},{"epoch":26161322,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":581.42,"free":2825.72},{"epoch":26161323,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.36,"free":2825.75},{"epoch":26161324,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.37,"free":2825.67},{"epoch":26161325,"idl":99.67,"recv":0,"send":0,"writ":0.61,"used":581.08,"free":2825.92},{"epoch":26161326,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":581.3,"free":2825.65},{"epoch":26161327,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.28,"free":2825.63},{"epoch":26161328,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.4,"free":2825.47},{"epoch":26161329,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":581.31,"free":2825.47},{"epoch":26161330,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.3,"used":581.73,"free":2824.99},{"epoch":26161331,"idl":99.78,"recv":0,"send":0,"writ":0.52,"used":581.83,"free":2824.81},{"epoch":26161332,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.49,"free":2825.06},{"epoch":26161333,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":581.51,"free":2824.98},{"epoch":26161334,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":581.44,"free":2825},{"epoch":26161335,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":581.13,"free":2825.27},{"epoch":26161336,"idl":99.79,"recv":0,"send":0,"writ":0.6,"used":581.88,"free":2824.47},{"epoch":26161337,"idl":99.91,"recv":0,"send":0,"writ":0.21,"used":581.62,"free":2824.67},{"epoch":26161338,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":581.62,"free":2824.62},{"epoch":26161339,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.16,"used":581.68,"free":2824.5},{"epoch":26161340,"idl":99.88,"recv":0.01,"send":0,"writ":0.3,"used":581.69,"free":2824.47},{"epoch":26161341,"idl":99.78,"recv":0,"send":0,"writ":0.64,"used":580.71,"free":2825.32},{"epoch":26161342,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":580.06,"free":2825.92},{"epoch":26161343,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":579.92,"free":2825.99},{"epoch":26161344,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":579.86,"free":2826.01},{"epoch":26161345,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":580.64,"free":2825.18},{"epoch":26161346,"idl":99.81,"recv":0,"send":0,"writ":0.58,"used":581.44,"free":2824.35},{"epoch":26161347,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":581.05,"free":2824.71},{"epoch":26161348,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":580.95,"free":2824.73},{"epoch":26161349,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":580.88,"free":2824.77},{"epoch":26161350,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":581.43,"free":2824.19},{"epoch":26161351,"idl":99.78,"recv":0,"send":0,"writ":0.52,"used":582.02,"free":2823.56},{"epoch":26161352,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":581.78,"free":2823.76},{"epoch":26161353,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":581.77,"free":2823.71},{"epoch":26161354,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":581.65,"free":2823.78},{"epoch":26161355,"idl":99,"recv":0,"send":0,"writ":0.34,"used":581.65,"free":2823.74},{"epoch":26161356,"idl":99.75,"recv":0,"send":0,"writ":0.44,"used":581.92,"free":2823.44},{"epoch":26161357,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":581.28,"free":2824.03},{"epoch":26161358,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":581.19,"free":2824.06},{"epoch":26161359,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":581.18,"free":2823.98},{"epoch":26161360,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":581.69,"free":2823.44},{"epoch":26161361,"idl":99.8,"recv":0,"send":0,"writ":0.61,"used":582.02,"free":2823.07},{"epoch":26161362,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.16,"used":581.77,"free":2823.27},{"epoch":26161363,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":581.78,"free":2823.2},{"epoch":26161364,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":581.73,"free":2823.2},{"epoch":26161365,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":581.94,"free":2822.97},{"epoch":26161366,"idl":99.79,"recv":0,"send":0,"writ":0.39,"used":582.19,"free":2822.68},{"epoch":26161367,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":581.78,"free":2823.05},{"epoch":26161368,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":581.7,"free":2823.07},{"epoch":26161369,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":581.64,"free":2823.08},{"epoch":26161370,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":582.02,"free":2822.68},{"epoch":26161371,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":581.97,"free":2822.7},{"epoch":26161372,"idl":99.78,"recv":0,"send":0,"writ":0.63,"used":582.26,"free":2822.38},{"epoch":26161373,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":581.84,"free":2822.74},{"epoch":26161374,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":581.81,"free":2822.71},{"epoch":26161375,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.32,"used":581.47,"free":2823.02},{"epoch":26161376,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.14,"used":581.47,"free":2822.98},{"epoch":26161377,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":582.13,"free":2822.27},{"epoch":26161378,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":581.03,"free":2823.31},{"epoch":26161379,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":580.79,"free":2823.49},{"epoch":26161380,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":580.97,"free":2823.28},{"epoch":26161381,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":580.96,"free":2823.24},{"epoch":26161382,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":581.25,"free":2822.91},{"epoch":26161383,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":580.86,"free":2823.25},{"epoch":26161384,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":580.89,"free":2823.15},{"epoch":26161385,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":581.65,"free":2822.35},{"epoch":26161386,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.78,"free":2822.2},{"epoch":26161387,"idl":99.74,"recv":0,"send":0,"writ":0.49,"used":582.27,"free":2821.66},{"epoch":26161388,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":582.14,"free":2821.75},{"epoch":26161389,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":581.58,"free":2822.24},{"epoch":26161390,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":581.53,"free":2822.28},{"epoch":26161391,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":581.49,"free":2822.3},{"epoch":26161392,"idl":99.75,"recv":0,"send":0,"writ":0.45,"used":581.27,"free":2822.49},{"epoch":26161393,"idl":99.91,"recv":0,"send":0,"writ":0.26,"used":580.21,"free":2823.51},{"epoch":26161394,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":580.27,"free":2823.43},{"epoch":26161395,"idl":98.92,"recv":0,"send":0,"writ":0.32,"used":581.69,"free":2822.01},{"epoch":26161396,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":581.63,"free":2822.02},{"epoch":26161397,"idl":99.74,"recv":0,"send":0,"writ":0.56,"used":581.95,"free":2821.67},{"epoch":26161398,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":581.72,"free":2821.85},{"epoch":26161399,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.18,"used":581.86,"free":2821.67},{"epoch":26161400,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":581.84,"free":2821.7},{"epoch":26161401,"idl":99.89,"recv":0.01,"send":0.15,"writ":0.2,"used":581.93,"free":2821.54},{"epoch":26161402,"idl":99.77,"recv":0,"send":0.01,"writ":0.39,"used":582.37,"free":2821.04},{"epoch":26161403,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":582.12,"free":2821.26},{"epoch":26161404,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":581.9,"free":2821.44},{"epoch":26161405,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":581.78,"free":2821.56},{"epoch":26161406,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":581.82,"free":2821.51},{"epoch":26161407,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":581.87,"free":2821.44},{"epoch":26161408,"idl":99.75,"recv":0,"send":0,"writ":0.54,"used":582.62,"free":2820.66},{"epoch":26161409,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":582.25,"free":2821.01},{"epoch":26161410,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":581.98,"free":2821.29},{"epoch":26161411,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":581.91,"free":2821.33},{"epoch":26161412,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":582.03,"free":2821.17},{"epoch":26161413,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":582.55,"free":2820.63},{"epoch":26161414,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":582.15,"free":2821},{"epoch":26161415,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":581.88,"free":2821.27},{"epoch":26161416,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":581.81,"free":2821.3},{"epoch":26161417,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":581.82,"free":2821.26},{"epoch":26161418,"idl":99.72,"recv":0,"send":0,"writ":0.58,"used":582.75,"free":2820.3},{"epoch":26161419,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":581.94,"free":2821.05},{"epoch":26161420,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":582.03,"free":2820.97},{"epoch":26161421,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.21,"used":581.91,"free":2821.08},{"epoch":26161422,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":581.86,"free":2821.12},{"epoch":26161423,"idl":99.72,"recv":0,"send":0,"writ":0.5,"used":582.49,"free":2820.46},{"epoch":26161424,"idl":99.89,"recv":0,"send":0,"writ":0.2,"used":581.89,"free":2821.02},{"epoch":26161425,"idl":99.72,"recv":0,"send":0,"writ":0.32,"used":581.63,"free":2821.29},{"epoch":26161426,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":581.57,"free":2821.33},{"epoch":26161427,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":581.52,"free":2821.36},{"epoch":26161428,"idl":99.72,"recv":0,"send":0,"writ":0.43,"used":582.12,"free":2820.73},{"epoch":26161429,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":582.2,"free":2820.6},{"epoch":26161430,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":581.08,"free":2821.72},{"epoch":26161431,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":580.97,"free":2821.8},{"epoch":26161432,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":580.92,"free":2821.84},{"epoch":26161433,"idl":99.71,"recv":0,"send":0,"writ":0.48,"used":581.69,"free":2821.03},{"epoch":26161434,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":582.09,"free":2820.59},{"epoch":26161435,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":581.51,"free":2821.17},{"epoch":26161436,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.16,"used":581.42,"free":2821.22},{"epoch":26161437,"idl":99.82,"recv":0,"send":0,"writ":0.15,"used":581.54,"free":2821.06},{"epoch":26161438,"idl":99.7,"recv":0,"send":0,"writ":0.45,"used":581.76,"free":2820.82},{"epoch":26161439,"idl":99.81,"recv":0,"send":0,"writ":0.29,"used":581.43,"free":2821.12},{"epoch":26161440,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":581.21,"free":2821.32},{"epoch":26161441,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":581.26,"free":2821.23},{"epoch":26161442,"idl":99.82,"recv":0,"send":0,"writ":0.17,"used":581.2,"free":2821.25},{"epoch":26161443,"idl":99.71,"recv":0,"send":0,"writ":0.31,"used":581.69,"free":2820.74},{"epoch":26161444,"idl":99.83,"recv":0,"send":0,"writ":0.39,"used":580.59,"free":2821.81},{"epoch":26161445,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":581.53,"free":2820.86},{"epoch":26161446,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":581.5,"free":2820.87},{"epoch":26161447,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":581.5,"free":2820.83},{"epoch":26161448,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":581.73,"free":2820.55},{"epoch":26161449,"idl":99.66,"recv":0,"send":0,"writ":0.75,"used":581.99,"free":2820.25},{"epoch":26161450,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":581.7,"free":2820.53},{"epoch":26161451,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":581.66,"free":2820.56},{"epoch":26161452,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":581.62,"free":2820.59},{"epoch":26161453,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":581.54,"free":2820.62},{"epoch":26161454,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":582.04,"free":2820.09},{"epoch":26161455,"idl":99.73,"recv":0,"send":0,"writ":0.32,"used":580.9,"free":2821.21},{"epoch":26161456,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":580.82,"free":2821.26},{"epoch":26161457,"idl":99.83,"recv":0,"send":0,"writ":0.23,"used":580.75,"free":2821.29},{"epoch":26161458,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":580.71,"free":2821.32},{"epoch":26161459,"idl":99.69,"recv":0.01,"send":0.01,"writ":0.58,"used":581.7,"free":2820.3},{"epoch":26161460,"idl":99.79,"recv":0,"send":0,"writ":0.31,"used":581.77,"free":2820.24},{"epoch":26161461,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":581.72,"free":2820.25},{"epoch":26161462,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":581.64,"free":2820.28},{"epoch":26161463,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":581.36,"free":2820.51},{"epoch":26161464,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":581.82,"free":2820.04},{"epoch":26161465,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":581.02,"free":2820.84},{"epoch":26161466,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":580.98,"free":2820.87},{"epoch":26161467,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":581.08,"free":2820.74},{"epoch":26161468,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":581.05,"free":2820.74},{"epoch":26161469,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":581.55,"free":2820.2},{"epoch":26161470,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":581.43,"free":2820.31},{"epoch":26161471,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":581.37,"free":2820.34},{"epoch":26161472,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":581.32,"free":2820.37},{"epoch":26161473,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":581.27,"free":2820.4},{"epoch":26161474,"idl":99.72,"recv":0,"send":0,"writ":0.45,"used":581.67,"free":2819.98},{"epoch":26161475,"idl":99.78,"recv":0,"send":0,"writ":0.48,"used":581.93,"free":2819.71},{"epoch":26161476,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":581.85,"free":2819.79},{"epoch":26161477,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":581.8,"free":2819.82},{"epoch":26161478,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":581.76,"free":2819.85},{"epoch":26161479,"idl":99.65,"recv":0,"send":0,"writ":0.7,"used":581.87,"free":2819.69},{"epoch":26161480,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":581,"free":2820.57},{"epoch":26161481,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":581.08,"free":2820.46},{"epoch":26161482,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":581.03,"free":2820.49},{"epoch":26161483,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":580.99,"free":2820.52},{"epoch":26161484,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":581.67,"free":2819.83},{"epoch":26161485,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":581.67,"free":2819.84},{"epoch":26161486,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":581.61,"free":2819.89},{"epoch":26161487,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":581.74,"free":2819.74},{"epoch":26161488,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":581.72,"free":2819.76},{"epoch":26161489,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":581.68,"free":2819.79},{"epoch":26161490,"idl":99.6,"recv":0.01,"send":0.44,"writ":0.77,"used":582.41,"free":2818.95},{"epoch":26161491,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":581.83,"free":2819.52},{"epoch":26161492,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":581.79,"free":2819.55},{"epoch":26161493,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":581.75,"free":2819.58},{"epoch":26161494,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":581.72,"free":2819.61},{"epoch":26161495,"idl":99.67,"recv":0,"send":0,"writ":0.69,"used":582.14,"free":2819.2},{"epoch":26161496,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.14,"used":582.07,"free":2819.25},{"epoch":26161497,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":582.05,"free":2819.27},{"epoch":26161498,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":581.75,"free":2819.55},{"epoch":26161499,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":581.47,"free":2819.82},{"epoch":26161500,"idl":99.61,"recv":0,"send":0,"writ":0.71,"used":581.38,"free":2819.91},{"epoch":26161501,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":580.91,"free":2820.36},{"epoch":26161502,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":580.89,"free":2820.38},{"epoch":26161503,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":581.01,"free":2820.25},{"epoch":26161504,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":581,"free":2820.26},{"epoch":26161505,"idl":99.65,"recv":0,"send":0,"writ":0.69,"used":581.72,"free":2819.54},{"epoch":26161506,"idl":99.78,"recv":0,"send":0,"writ":0.16,"used":580.92,"free":2820.32},{"epoch":26161507,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":580.86,"free":2820.35},{"epoch":26161508,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":580.82,"free":2820.38},{"epoch":26161509,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":581.48,"free":2819.42},{"epoch":26161510,"idl":99.64,"recv":0,"send":0,"writ":0.65,"used":582.4,"free":2818.5},{"epoch":26161511,"idl":99.84,"recv":0,"send":0,"writ":0.22,"used":581.85,"free":2819.04},{"epoch":26161512,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":581.81,"free":2819.07},{"epoch":26161513,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":581.77,"free":2819.1},{"epoch":26161514,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":581.73,"free":2819.16},{"epoch":26161515,"idl":99.64,"recv":0,"send":0,"writ":0.7,"used":581.92,"free":2818.98},{"epoch":26161516,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":581.83,"free":2819.04},{"epoch":26161517,"idl":99.83,"recv":0,"send":0,"writ":0.21,"used":581.79,"free":2819.07},{"epoch":26161518,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":581.75,"free":2819.1},{"epoch":26161519,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.14,"used":581.7,"free":2819.13},{"epoch":26161520,"idl":99.65,"recv":0,"send":0,"writ":0.71,"used":581.76,"free":2819.07},{"epoch":26161521,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":580.88,"free":2819.93},{"epoch":26161522,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":581.04,"free":2819.76},{"epoch":26161523,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":581.04,"free":2819.76},{"epoch":26161524,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":581.01,"free":2819.78},{"epoch":26161525,"idl":99.76,"recv":0,"send":0,"writ":0.35,"used":581.22,"free":2819.56},{"epoch":26161526,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":581.27,"free":2819.48},{"epoch":26161527,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":580.62,"free":2820.12},{"epoch":26161528,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":580.58,"free":2820.15},{"epoch":26161529,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":578.64,"free":2822.12},{"epoch":26161530,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":570.32,"free":2830.64},{"epoch":26161531,"idl":99.68,"recv":0,"send":0,"writ":0.63,"used":570.37,"free":2830.57},{"epoch":26161532,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":569.92,"free":2831},{"epoch":26161533,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":569.88,"free":2831.03},{"epoch":26161534,"idl":99.82,"recv":0,"send":0,"writ":0.18,"used":569.86,"free":2831.03},{"epoch":26161535,"idl":99.72,"recv":0,"send":0,"writ":0.34,"used":570.11,"free":2830.81},{"epoch":26161536,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":571.35,"free":2829.55},{"epoch":26161537,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":571.12,"free":2829.77},{"epoch":26161538,"idl":99.82,"recv":0,"send":0,"writ":0.14,"used":571.08,"free":2829.79},{"epoch":26161539,"idl":99.74,"recv":0,"send":0,"writ":0.28,"used":570.8,"free":2830.02},{"epoch":26161540,"idl":99.76,"recv":0,"send":0,"writ":0.29,"used":570.08,"free":2830.76},{"epoch":26161541,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":571.29,"free":2829.52},{"epoch":26161542,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.96,"free":2829.83},{"epoch":26161543,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":570.92,"free":2829.86},{"epoch":26161544,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":570.91,"free":2829.86},{"epoch":26161545,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":571.15,"free":2829.64},{"epoch":26161546,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":570.99,"free":2829.77},{"epoch":26161547,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.03,"free":2830.72},{"epoch":26161548,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":570.01,"free":2830.73},{"epoch":26161549,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":569.96,"free":2830.75},{"epoch":26161550,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":570.44,"free":2830.28},{"epoch":26161551,"idl":99.7,"recv":0,"send":0,"writ":0.55,"used":571,"free":2829.71},{"epoch":26161552,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":570.88,"free":2829.82},{"epoch":26161553,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":570.84,"free":2829.83},{"epoch":26161554,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":570.81,"free":2829.84},{"epoch":26161555,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":570.81,"free":2829.86},{"epoch":26161556,"idl":99.72,"recv":0,"send":0,"writ":0.41,"used":571.51,"free":2829.15},{"epoch":26161557,"idl":99.84,"recv":0,"send":0,"writ":0.28,"used":571.08,"free":2829.58},{"epoch":26161558,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":570.94,"free":2829.71},{"epoch":26161559,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":570.63,"free":2829.98},{"epoch":26161560,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":571.11,"free":2829.51},{"epoch":26161561,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":571.44,"free":2829.17},{"epoch":26161562,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":571.28,"free":2829.31},{"epoch":26161563,"idl":99.76,"recv":0.02,"send":0.04,"writ":0.52,"used":571.58,"free":2828.94},{"epoch":26161564,"idl":99.78,"recv":0.03,"send":0.18,"writ":0.23,"used":574.57,"free":2825.54},{"epoch":26161565,"idl":99.78,"recv":0,"send":0,"writ":0.36,"used":580.97,"free":2818.39},{"epoch":26161566,"idl":99.7,"recv":0,"send":0,"writ":0.41,"used":581.55,"free":2817.79},{"epoch":26161567,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":581.38,"free":2817.96},{"epoch":26161568,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":581.33,"free":2817.99},{"epoch":26161569,"idl":99.79,"recv":0,"send":0,"writ":0.43,"used":581.41,"free":2817.75},{"epoch":26161570,"idl":99.82,"recv":0,"send":0,"writ":0.3,"used":581.86,"free":2817.28},{"epoch":26161571,"idl":99.84,"recv":0,"send":0,"writ":0.13,"used":581.83,"free":2817.31},{"epoch":26161572,"idl":99.7,"recv":0,"send":0,"writ":0.59,"used":582.13,"free":2816.99},{"epoch":26161573,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":581.91,"free":2817.19},{"epoch":26161574,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":581.87,"free":2817.23},{"epoch":26161575,"idl":99.78,"recv":0,"send":0,"writ":0.35,"used":581.6,"free":2817.5},{"epoch":26161576,"idl":98.88,"recv":0,"send":0,"writ":0.18,"used":581.55,"free":2817.55},{"epoch":26161577,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":582,"free":2817.08},{"epoch":26161578,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":581.47,"free":2817.6},{"epoch":26161579,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.14,"used":581.59,"free":2817.46},{"epoch":26161580,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":581.81,"free":2817.24},{"epoch":26161581,"idl":99.84,"recv":0,"send":0.01,"writ":0.15,"used":581.75,"free":2817.3},{"epoch":26161582,"idl":99.71,"recv":0,"send":0,"writ":0.61,"used":581.31,"free":2817.73},{"epoch":26161583,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":580.69,"free":2818.34},{"epoch":26161584,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":580.82,"free":2818.2},{"epoch":26161585,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":581.79,"free":2817.23},{"epoch":26161586,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":581.73,"free":2817.28},{"epoch":26161587,"idl":99.76,"recv":0,"send":0,"writ":0.6,"used":581.34,"free":2817.66},{"epoch":26161588,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":580.43,"free":2818.56},{"epoch":26161589,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":580.36,"free":2818.59},{"epoch":26161590,"idl":99.87,"recv":0,"send":0,"writ":0.32,"used":581.15,"free":2817.8},{"epoch":26161591,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":580.73,"free":2818.22},{"epoch":26161592,"idl":99.77,"recv":0,"send":0,"writ":0.58,"used":581.4,"free":2817.54},{"epoch":26161593,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":581.17,"free":2817.77},{"epoch":26161594,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":581.12,"free":2817.8},{"epoch":26161595,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":581.11,"free":2817.83},{"epoch":26161596,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":581.07,"free":2817.85},{"epoch":26161597,"idl":94.24,"recv":0.34,"send":0.01,"writ":78.31,"used":595.84,"free":2803.05},{"epoch":26161598,"idl":99.85,"recv":0,"send":0,"writ":180.03,"used":583.63,"free":2814.53},{"epoch":26161599,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":583.34,"free":2814.78},{"epoch":26161600,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":583.56,"free":2814.57},{"epoch":26161601,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":583.53,"free":2814.6},{"epoch":26161602,"idl":99.8,"recv":0,"send":0,"writ":0.6,"used":583.52,"free":2814.6},{"epoch":26161603,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":581.01,"free":2817.16},{"epoch":26161604,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":580.98,"free":2817.18},{"epoch":26161605,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":580.95,"free":2817.21},{"epoch":26161606,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":580.91,"free":2817.24},{"epoch":26161607,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":581.49,"free":2816.65},{"epoch":26161608,"idl":99.92,"recv":0,"send":0,"writ":0.38,"used":581.09,"free":2817.06},{"epoch":26161609,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":581.12,"free":2817.03},{"epoch":26161610,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":580.99,"free":2817.17},{"epoch":26161611,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":580.92,"free":2817.22},{"epoch":26161612,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":580.88,"free":2817.24},{"epoch":26161613,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":581.21,"free":2816.9},{"epoch":26161614,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":580.81,"free":2817.29},{"epoch":26161615,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":580.8,"free":2817.32},{"epoch":26161616,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":580.94,"free":2817.17},{"epoch":26161617,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":580.9,"free":2817.2},{"epoch":26161618,"idl":99.76,"recv":0,"send":0,"writ":0.56,"used":581.46,"free":2816.63},{"epoch":26161619,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.83,"free":2817.26},{"epoch":26161620,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":580.57,"free":2817.53},{"epoch":26161621,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":580.51,"free":2817.56},{"epoch":26161622,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.48,"free":2817.57},{"epoch":26161623,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.58,"used":581.8,"free":2816.23},{"epoch":26161624,"idl":99.91,"recv":0,"send":0.01,"writ":0.16,"used":581.31,"free":2816.71},{"epoch":26161625,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":581.3,"free":2816.73},{"epoch":26161626,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.26,"free":2816.78},{"epoch":26161627,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":581.22,"free":2816.81},{"epoch":26161628,"idl":99.78,"recv":0,"send":0,"writ":0.49,"used":581.13,"free":2816.89},{"epoch":26161629,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":581,"free":2816.99},{"epoch":26161630,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":581.32,"free":2816.69},{"epoch":26161631,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":581.28,"free":2816.71},{"epoch":26161632,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":581.24,"free":2816.74},{"epoch":26161633,"idl":99.81,"recv":0,"send":0,"writ":0.52,"used":581.7,"free":2816.28},{"epoch":26161634,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":581.42,"free":2816.56},{"epoch":26161635,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":581.26,"free":2816.73},{"epoch":26161636,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":581.31,"free":2816.68},{"epoch":26161637,"idl":98.79,"recv":0,"send":0,"writ":0.2,"used":581.28,"free":2816.71},{"epoch":26161638,"idl":99.78,"recv":0,"send":0.01,"writ":0.56,"used":581.95,"free":2816.03},{"epoch":26161639,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.22,"used":581.19,"free":2816.78},{"epoch":26161640,"idl":99.85,"recv":0,"send":0.01,"writ":0.29,"used":581.18,"free":2816.81},{"epoch":26161641,"idl":99.76,"recv":0.03,"send":1.29,"writ":0.23,"used":581.22,"free":2816.78},{"epoch":26161642,"idl":99.58,"recv":0.06,"send":2.7,"writ":0.25,"used":581.23,"free":2816.71},{"epoch":26161643,"idl":99.78,"recv":0,"send":0,"writ":0.41,"used":581.64,"free":2816.29},{"epoch":26161644,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":581.65,"free":2816.27},{"epoch":26161645,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":581.15,"free":2816.77},{"epoch":26161646,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":581.11,"free":2816.81},{"epoch":26161647,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":581.25,"free":2816.67},{"epoch":26161648,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.39,"used":581.61,"free":2816.3},{"epoch":26161649,"idl":99.88,"recv":0.02,"send":3.16,"writ":0.66,"used":580.88,"free":2814.89},{"epoch":26161650,"idl":99.82,"recv":0,"send":0.21,"writ":0.29,"used":581.22,"free":2814.36},{"epoch":26161651,"idl":99.92,"recv":0,"send":0.09,"writ":0.19,"used":581.32,"free":2814.24},{"epoch":26161652,"idl":99.89,"recv":0,"send":0,"writ":0.18,"used":581.28,"free":2814.27},{"epoch":26161653,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":581.61,"free":2813.93},{"epoch":26161654,"idl":99.93,"recv":0,"send":0,"writ":0.37,"used":581.93,"free":2813.6},{"epoch":26161655,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":582.16,"free":2813.38},{"epoch":26161656,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":582.25,"free":2813.29},{"epoch":26161657,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":582.27,"free":2813.25},{"epoch":26161658,"idl":99.07,"recv":0,"send":0,"writ":0.14,"used":582.23,"free":2813.28},{"epoch":26161659,"idl":99.75,"recv":0,"send":0,"writ":0.69,"used":582.33,"free":2813.13},{"epoch":26161660,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":582.15,"free":2813.33},{"epoch":26161661,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":582.1,"free":2813.37},{"epoch":26161662,"idl":99.89,"recv":0.01,"send":0.01,"writ":0.17,"used":582.11,"free":2813.36},{"epoch":26161663,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":582.12,"free":2813.34},{"epoch":26161664,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":582.43,"free":2813.03},{"epoch":26161665,"idl":99.87,"recv":0,"send":0,"writ":0.35,"used":581.84,"free":2813.64},{"epoch":26161666,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":582,"free":2813.47},{"epoch":26161667,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.98,"free":2813.48},{"epoch":26161668,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":581.94,"free":2813.51},{"epoch":26161669,"idl":99.78,"recv":0,"send":0.02,"writ":0.55,"used":582.41,"free":2813.03},{"epoch":26161670,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":582.11,"free":2813.34},{"epoch":26161671,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":582.07,"free":2813.38},{"epoch":26161672,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":582.21,"free":2813.24},{"epoch":26161673,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":582.19,"free":2813.26},{"epoch":26161674,"idl":99.77,"recv":0.01,"send":0.01,"writ":0.63,"used":582.61,"free":2812.82},{"epoch":26161675,"idl":99.87,"recv":0,"send":0,"writ":0.37,"used":581.63,"free":2813.81},{"epoch":26161676,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":581.58,"free":2813.86},{"epoch":26161677,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":581.63,"free":2813.81},{"epoch":26161678,"idl":99.89,"recv":0.02,"send":0.13,"writ":0.18,"used":581.58,"free":2813.83},{"epoch":26161679,"idl":99.83,"recv":0,"send":0,"writ":0.58,"used":581.97,"free":2813.41},{"epoch":26161680,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":581.84,"free":2813.54},{"epoch":26161681,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":581.81,"free":2813.57},{"epoch":26161682,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":581.78,"free":2813.59},{"epoch":26161683,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.16,"used":581.75,"free":2813.62},{"epoch":26161684,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.56,"used":582.31,"free":2813.05},{"epoch":26161685,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":582.35,"free":2813.03},{"epoch":26161686,"idl":99.9,"recv":0.01,"send":1.77,"writ":0.14,"used":582.32,"free":2813.06},{"epoch":26161687,"idl":99.93,"recv":0.01,"send":0.59,"writ":0.27,"used":582.34,"free":2812.95},{"epoch":26161688,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":582.39,"free":2812.83},{"epoch":26161689,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":582.27,"free":2812.93},{"epoch":26161690,"idl":99.88,"recv":0,"send":0,"writ":0.46,"used":581.72,"free":2813.49},{"epoch":26161691,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":581.69,"free":2813.51},{"epoch":26161692,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":581.65,"free":2813.54},{"epoch":26161693,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":581.61,"free":2813.57},{"epoch":26161694,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":581.57,"free":2813.59},{"epoch":26161695,"idl":99.71,"recv":0,"send":0,"writ":0.73,"used":583.27,"free":2811.9},{"epoch":26161696,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":582.92,"free":2812.24},{"epoch":26161697,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":582.65,"free":2812.51},{"epoch":26161698,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.16,"used":582.61,"free":2812.52},{"epoch":26161699,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.17,"used":582.5,"free":2812.35},{"epoch":26161700,"idl":99.7,"recv":0,"send":0,"writ":0.67,"used":583,"free":2811.87},{"epoch":26161701,"idl":99.93,"recv":0.03,"send":0.04,"writ":0.17,"used":582.59,"free":2812.27},{"epoch":26161702,"idl":99.9,"recv":0.06,"send":0.07,"writ":0.3,"used":582.51,"free":2812.3},{"epoch":26161703,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":582.44,"free":2812.36},{"epoch":26161704,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":582.42,"free":2812.36},{"epoch":26161705,"idl":99.76,"recv":0,"send":0,"writ":0.72,"used":583.01,"free":2811.79},{"epoch":26161706,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":582.31,"free":2812.49},{"epoch":26161707,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":582.27,"free":2812.52},{"epoch":26161708,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":582.23,"free":2812.55},{"epoch":26161709,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":582.18,"free":2812.58},{"epoch":26161710,"idl":99.78,"recv":0,"send":0,"writ":0.64,"used":582.35,"free":2812.43},{"epoch":26161711,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":581.9,"free":2812.88},{"epoch":26161712,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":582.04,"free":2812.73},{"epoch":26161713,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":582.01,"free":2812.76},{"epoch":26161714,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":581.98,"free":2812.78},{"epoch":26161715,"idl":99.77,"recv":0,"send":0,"writ":0.69,"used":582.63,"free":2812.14},{"epoch":26161716,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":582.43,"free":2812.34},{"epoch":26161717,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":582.38,"free":2812.37},{"epoch":26161718,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":582.35,"free":2812.39},{"epoch":26161719,"idl":99.87,"recv":0.01,"send":0.01,"writ":0.3,"used":582.74,"free":2811.96},{"epoch":26161720,"idl":99.76,"recv":0,"send":0,"writ":0.74,"used":583.23,"free":2811.49},{"epoch":26161721,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":582.36,"free":2812.35},{"epoch":26161722,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":582.49,"free":2812.2},{"epoch":26161723,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":582.45,"free":2812.24},{"epoch":26161724,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":582.41,"free":2812.27},{"epoch":26161725,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":582.41,"free":2812.28},{"epoch":26161726,"idl":99.93,"recv":0,"send":0,"writ":0.3,"used":582.36,"free":2812.33},{"epoch":26161727,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":582.32,"free":2812.36},{"epoch":26161728,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":582.33,"free":2812.35},{"epoch":26161729,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":582.44,"free":2812.23},{"epoch":26161730,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":582.7,"free":2811.98},{"epoch":26161731,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":581.43,"free":2813.25},{"epoch":26161732,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":581.39,"free":2813.28},{"epoch":26161733,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.35,"free":2813.31},{"epoch":26161734,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":581.32,"free":2813.34},{"epoch":26161735,"idl":99.75,"recv":0,"send":0,"writ":0.6,"used":582.5,"free":2812.17},{"epoch":26161736,"idl":99.94,"recv":0,"send":0,"writ":0.27,"used":582.92,"free":2811.74},{"epoch":26161737,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":582.9,"free":2811.76},{"epoch":26161738,"idl":99.93,"recv":0,"send":0,"writ":0.33,"used":582.72,"free":2811.72},{"epoch":26161739,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":582.29,"free":2811.58},{"epoch":26161740,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":582.33,"free":2811.56},{"epoch":26161741,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":583.04,"free":2810.84},{"epoch":26161742,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":582.53,"free":2811.34},{"epoch":26161743,"idl":99.94,"recv":0,"send":0.01,"writ":0.14,"used":582.62,"free":2811.25},{"epoch":26161744,"idl":99.93,"recv":0,"send":0.01,"writ":0.15,"used":582.58,"free":2811.28},{"epoch":26161745,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":582.42,"free":2811.46},{"epoch":26161746,"idl":99.81,"recv":0,"send":0,"writ":0.58,"used":582.29,"free":2811.59},{"epoch":26161747,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":582,"free":2811.87},{"epoch":26161748,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":581.98,"free":2811.88},{"epoch":26161749,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":581.63,"free":2812.2},{"epoch":26161750,"idl":99.85,"recv":0,"send":0,"writ":0.32,"used":582.08,"free":2811.76},{"epoch":26161751,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":582.43,"free":2811.4},{"epoch":26161752,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":582.04,"free":2811.79},{"epoch":26161753,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":582,"free":2811.82},{"epoch":26161754,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":581.97,"free":2811.85},{"epoch":26161755,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":581.74,"free":2812.09},{"epoch":26161756,"idl":99.76,"recv":0,"send":0,"writ":0.43,"used":582.03,"free":2811.79},{"epoch":26161757,"idl":99.91,"recv":0,"send":0,"writ":0.33,"used":581.59,"free":2812.22},{"epoch":26161758,"idl":99.5,"recv":0,"send":0,"writ":0.14,"used":581.55,"free":2812.24},{"epoch":26161759,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.14,"used":581.51,"free":2812.28},{"epoch":26161760,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":581.5,"free":2812.31},{"epoch":26161761,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":581.62,"free":2812.2},{"epoch":26161762,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":581.24,"free":2812.58},{"epoch":26161763,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":581.35,"free":2812.46},{"epoch":26161764,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":581.32,"free":2812.48},{"epoch":26161765,"idl":99.84,"recv":0,"send":0,"writ":0.3,"used":582.27,"free":2811.55},{"epoch":26161766,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":582.48,"free":2811.33},{"epoch":26161767,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":581.72,"free":2812.09},{"epoch":26161768,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":581.69,"free":2812.1},{"epoch":26161769,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":581.82,"free":2811.96},{"epoch":26161770,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":581.81,"free":2811.99},{"epoch":26161771,"idl":99.78,"recv":0,"send":0,"writ":0.47,"used":582.13,"free":2811.52},{"epoch":26161772,"idl":99.88,"recv":0,"send":0,"writ":0.45,"used":581.7,"free":2810.57},{"epoch":26161773,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":581.66,"free":2810.6},{"epoch":26161774,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":581.63,"free":2810.63},{"epoch":26161775,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":581.93,"free":2810.35},{"epoch":26161776,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":582.01,"free":2810.26},{"epoch":26161777,"idl":99.78,"recv":0,"send":0.01,"writ":0.68,"used":578.82,"free":2813.4},{"epoch":26161778,"idl":99.93,"recv":0,"send":0,"writ":0.25,"used":571.46,"free":2820.91},{"epoch":26161779,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":570.97,"free":2821.37},{"epoch":26161780,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":571.17,"free":2821.19},{"epoch":26161781,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.16,"free":2821.2},{"epoch":26161782,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":572.03,"free":2820.32},{"epoch":26161783,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":571.77,"free":2820.57},{"epoch":26161784,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.74,"free":2820.6},{"epoch":26161785,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":571.03,"free":2821.32},{"epoch":26161786,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.98,"free":2821.37},{"epoch":26161787,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":571.88,"free":2820.46},{"epoch":26161788,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.68,"free":2820.66},{"epoch":26161789,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":571.67,"free":2820.67},{"epoch":26161790,"idl":99.88,"recv":0,"send":0,"writ":0.41,"used":570.47,"free":2821.64},{"epoch":26161791,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.38,"free":2821.72},{"epoch":26161792,"idl":99.8,"recv":0,"send":0,"writ":0.48,"used":571.48,"free":2820.63},{"epoch":26161793,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":571.03,"free":2821.08},{"epoch":26161794,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.01,"free":2821.09},{"epoch":26161795,"idl":99.5,"recv":0,"send":0,"writ":0.38,"used":571.77,"free":2820.26},{"epoch":26161796,"idl":99.93,"recv":0,"send":0,"writ":0.26,"used":571.56,"free":2820.38},{"epoch":26161797,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":571.42,"free":2820.52},{"epoch":26161798,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":570.46,"free":2821.48},{"epoch":26161799,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571,"free":2820.93},{"epoch":26161800,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":571.71,"free":2820.23},{"epoch":26161801,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":571.72,"free":2820.23},{"epoch":26161802,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":572.04,"free":2819.91},{"epoch":26161803,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.75,"free":2820.2},{"epoch":26161804,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.83,"free":2820.11},{"epoch":26161805,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":571.84,"free":2820.11},{"epoch":26161806,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":571.81,"free":2820.14},{"epoch":26161807,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":572.34,"free":2819.6},{"epoch":26161808,"idl":99.93,"recv":0,"send":0,"writ":0.32,"used":571.27,"free":2820.66},{"epoch":26161809,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":571.73,"free":2820.18},{"epoch":26161810,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":571.47,"free":2820.45},{"epoch":26161811,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.46,"free":2820.46},{"epoch":26161812,"idl":99.8,"recv":0,"send":0,"writ":0.43,"used":571.75,"free":2820.16},{"epoch":26161813,"idl":99.93,"recv":0,"send":0,"writ":0.33,"used":570.51,"free":2821.41},{"epoch":26161814,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":570.62,"free":2821.29},{"epoch":26161815,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":570.63,"free":2821.29},{"epoch":26161816,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.6,"free":2821.32},{"epoch":26161817,"idl":99.75,"recv":0,"send":0,"writ":0.43,"used":571.24,"free":2820.66},{"epoch":26161818,"idl":99.4,"recv":0,"send":0,"writ":0.37,"used":571.77,"free":2820.12},{"epoch":26161819,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.16,"used":571.75,"free":2820.12},{"epoch":26161820,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":571.75,"free":2820.14},{"epoch":26161821,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.73,"free":2820.16},{"epoch":26161822,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":571.71,"free":2820.18},{"epoch":26161823,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":571.84,"free":2820.04},{"epoch":26161824,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.47,"free":2820.4},{"epoch":26161825,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":571.58,"free":2820.3},{"epoch":26161826,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.55,"free":2820.32},{"epoch":26161827,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":571.54,"free":2820.33},{"epoch":26161828,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":571.86,"free":2820.01},{"epoch":26161829,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":571.5,"free":2820.36},{"epoch":26161830,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":571.74,"free":2820.14},{"epoch":26161831,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.73,"free":2820.15},{"epoch":26161832,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":571.69,"free":2820.18},{"epoch":26161833,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":572.03,"free":2819.84},{"epoch":26161834,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.65,"free":2820.21},{"epoch":26161835,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":571.2,"free":2820.68},{"epoch":26161836,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":571.31,"free":2820.55},{"epoch":26161837,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.27,"free":2820.58},{"epoch":26161838,"idl":99.8,"recv":0,"send":0,"writ":0.53,"used":572.01,"free":2819.83},{"epoch":26161839,"idl":99.75,"recv":0,"send":0,"writ":0.32,"used":571.77,"free":2820.05},{"epoch":26161840,"idl":99.87,"recv":0,"send":0,"writ":0.36,"used":572.05,"free":2819.78},{"epoch":26161841,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":571.94,"free":2819.89},{"epoch":26161842,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":571.93,"free":2819.89},{"epoch":26161843,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":572.38,"free":2819.44},{"epoch":26161844,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":571.88,"free":2819.95},{"epoch":26161845,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":571.89,"free":2819.96},{"epoch":26161846,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.91,"free":2819.94},{"epoch":26161847,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":572.02,"free":2819.81},{"epoch":26161848,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":572.34,"free":2819.49},{"epoch":26161849,"idl":99.95,"recv":0,"send":0,"writ":0.31,"used":571.98,"free":2819.85},{"epoch":26161850,"idl":99.86,"recv":0,"send":0,"writ":0.31,"used":571.97,"free":2819.87},{"epoch":26161851,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.96,"free":2819.87},{"epoch":26161852,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":571.93,"free":2819.9},{"epoch":26161853,"idl":99.79,"recv":0,"send":0,"writ":0.5,"used":572.25,"free":2819.57},{"epoch":26161854,"idl":99.93,"recv":0,"send":0,"writ":0.25,"used":571.88,"free":2819.93},{"epoch":26161855,"idl":99.83,"recv":0,"send":0,"writ":0.29,"used":572.13,"free":2819.7},{"epoch":26161856,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.11,"free":2819.73},{"epoch":26161857,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.09,"free":2819.74},{"epoch":26161858,"idl":99.84,"recv":0,"send":0,"writ":0.21,"used":572.28,"free":2819.55},{"epoch":26161859,"idl":99.87,"recv":0,"send":0,"writ":0.55,"used":572.09,"free":2819.73},{"epoch":26161860,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":572.22,"free":2819.62},{"epoch":26161861,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":572.2,"free":2819.62},{"epoch":26161862,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":572.17,"free":2819.64},{"epoch":26161863,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":572.15,"free":2819.66},{"epoch":26161864,"idl":99.8,"recv":0,"send":0,"writ":0.56,"used":572.28,"free":2819.53},{"epoch":26161865,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":571.63,"free":2820.19},{"epoch":26161866,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":571.61,"free":2820.21},{"epoch":26161867,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.16,"used":571.6,"free":2820.21},{"epoch":26161868,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":571.7,"free":2820.1},{"epoch":26161869,"idl":99.77,"recv":0,"send":0,"writ":0.68,"used":572.22,"free":2819.55},{"epoch":26161870,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":572.14,"free":2819.63},{"epoch":26161871,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":572.11,"free":2819.66},{"epoch":26161872,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":572.1,"free":2819.67},{"epoch":26161873,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":572.07,"free":2819.69},{"epoch":26161874,"idl":99.81,"recv":0,"send":0,"writ":0.57,"used":572.27,"free":2819.48},{"epoch":26161875,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":572.02,"free":2819.73},{"epoch":26161876,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.01,"free":2819.73},{"epoch":26161877,"idl":99.92,"recv":0,"send":0,"writ":0.24,"used":571.75,"free":2819.99},{"epoch":26161878,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":571.9,"free":2819.83},{"epoch":26161879,"idl":99.8,"recv":0.01,"send":0.01,"writ":0.6,"used":572.35,"free":2819.38},{"epoch":26161880,"idl":99.86,"recv":0,"send":0,"writ":0.35,"used":572.11,"free":2819.62},{"epoch":26161881,"idl":99.96,"recv":0,"send":0,"writ":0.2,"used":572.09,"free":2819.64},{"epoch":26161882,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":572.07,"free":2819.66},{"epoch":26161883,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":572.04,"free":2819.68},{"epoch":26161884,"idl":99.77,"recv":0,"send":0,"writ":0.6,"used":572.02,"free":2819.69},{"epoch":26161885,"idl":99.84,"recv":0,"send":0,"writ":0.32,"used":571.03,"free":2820.7},{"epoch":26161886,"idl":99.55,"recv":0,"send":0,"writ":0.29,"used":571.32,"free":2820.4},{"epoch":26161887,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":571.24,"free":2820.47},{"epoch":26161888,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":571.21,"free":2820.49},{"epoch":26161889,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":571.87,"free":2819.83},{"epoch":26161890,"idl":99.84,"recv":0,"send":0,"writ":0.35,"used":572.45,"free":2819.26},{"epoch":26161891,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":572.36,"free":2819.34},{"epoch":26161892,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":572.34,"free":2819.37},{"epoch":26161893,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":572.31,"free":2819.39},{"epoch":26161894,"idl":99.76,"recv":0,"send":0,"writ":0.47,"used":572.65,"free":2819.06},{"epoch":26161895,"idl":99.87,"recv":0,"send":0,"writ":0.47,"used":571.83,"free":2819.92},{"epoch":26161896,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":571.77,"free":2819.96},{"epoch":26161897,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":571.76,"free":2819.98},{"epoch":26161898,"idl":99.9,"recv":0,"send":0.01,"writ":0.19,"used":571.76,"free":2819.97},{"epoch":26161899,"idl":99.63,"recv":0,"send":0,"writ":0.35,"used":572.59,"free":2819.11},{"epoch":26161900,"idl":99.68,"recv":0,"send":0,"writ":0.71,"used":572.49,"free":2819.22},{"epoch":26161901,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":571.59,"free":2820.11},{"epoch":26161902,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.56,"free":2820.13},{"epoch":26161903,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":571.54,"free":2820.14},{"epoch":26161904,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.18,"used":571.53,"free":2820.17},{"epoch":26161905,"idl":99.77,"recv":0,"send":0,"writ":0.68,"used":571.76,"free":2819.96},{"epoch":26161906,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.35,"free":2820.36},{"epoch":26161907,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":571.34,"free":2820.37},{"epoch":26161908,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":571.31,"free":2820.39},{"epoch":26161909,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.29,"free":2820.41},{"epoch":26161910,"idl":99.73,"recv":0,"send":0,"writ":0.75,"used":571.94,"free":2819.78},{"epoch":26161911,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":571.26,"free":2820.44},{"epoch":26161912,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":571.23,"free":2820.46},{"epoch":26161913,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":571.18,"free":2820.49},{"epoch":26161914,"idl":99.93,"recv":0,"send":0,"writ":0.21,"used":571.17,"free":2820.49},{"epoch":26161915,"idl":99.75,"recv":0,"send":0,"writ":0.73,"used":572.05,"free":2819.63},{"epoch":26161916,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.83,"free":2819.84},{"epoch":26161917,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.8,"free":2819.87},{"epoch":26161918,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":571.82,"free":2819.84},{"epoch":26161919,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":571.52,"free":2820.15},{"epoch":26161920,"idl":99.64,"recv":0,"send":0,"writ":0.6,"used":572.11,"free":2819.57},{"epoch":26161921,"idl":99.94,"recv":0,"send":0,"writ":0.29,"used":571.73,"free":2819.93},{"epoch":26161922,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":571.72,"free":2819.94},{"epoch":26161923,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.69,"free":2819.96},{"epoch":26161924,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.68,"free":2819.98},{"epoch":26161925,"idl":99.75,"recv":0,"send":0,"writ":0.62,"used":571.57,"free":2820.1},{"epoch":26161926,"idl":99.93,"recv":0,"send":0,"writ":0.32,"used":570.92,"free":2820.75},{"epoch":26161927,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":570.96,"free":2820.7},{"epoch":26161928,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":571.06,"free":2820.59},{"epoch":26161929,"idl":99.89,"recv":0,"send":0,"writ":0.29,"used":571.76,"free":2819.87},{"epoch":26161930,"idl":99.73,"recv":0,"send":0,"writ":0.6,"used":572.11,"free":2819.53},{"epoch":26161931,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":571.75,"free":2819.89},{"epoch":26161932,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":571.71,"free":2819.92},{"epoch":26161933,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":571.7,"free":2819.92},{"epoch":26161934,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":571.47,"free":2820.2},{"epoch":26161935,"idl":99.74,"recv":0,"send":0,"writ":0.61,"used":572.43,"free":2819.27},{"epoch":26161936,"idl":99.92,"recv":0,"send":0,"writ":0.31,"used":571.66,"free":2820.03},{"epoch":26161937,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":571.65,"free":2820.03},{"epoch":26161938,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.62,"free":2820.05},{"epoch":26161939,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.16,"used":571.74,"free":2819.93},{"epoch":26161940,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":571.78,"free":2819.91},{"epoch":26161941,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":572.14,"free":2819.53},{"epoch":26161942,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":571.49,"free":2820.18},{"epoch":26161943,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":571.46,"free":2820.21},{"epoch":26161944,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":571.44,"free":2820.21},{"epoch":26161945,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":570.5,"free":2821.16},{"epoch":26161946,"idl":99.8,"recv":0,"send":0,"writ":0.64,"used":570.95,"free":2820.72},{"epoch":26161947,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.4,"free":2821.26},{"epoch":26161948,"idl":99.91,"recv":0,"send":0.02,"writ":0.2,"used":570.5,"free":2821.16},{"epoch":26161949,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":570.51,"free":2821.14},{"epoch":26161950,"idl":99.84,"recv":0,"send":0.01,"writ":0.33,"used":570.5,"free":2821.16},{"epoch":26161951,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":570.69,"free":2820.98},{"epoch":26161952,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":570.19,"free":2821.47},{"epoch":26161953,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":570.18,"free":2821.48},{"epoch":26161954,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.15,"free":2821.5},{"epoch":26161955,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":571.6,"free":2820.07},{"epoch":26161956,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":571.44,"free":2820.22},{"epoch":26161957,"idl":99.87,"recv":0,"send":0,"writ":0.2,"used":570.55,"free":2821.1},{"epoch":26161958,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":570.55,"free":2821.1},{"epoch":26161959,"idl":99.84,"recv":0,"send":0,"writ":0.31,"used":571.46,"free":2820.16},{"epoch":26161960,"idl":99.29,"recv":0,"send":0,"writ":0.37,"used":571.73,"free":2819.9},{"epoch":26161961,"idl":95.18,"recv":0.26,"send":0.01,"writ":77.86,"used":585.71,"free":2806.26},{"epoch":26161962,"idl":99.84,"recv":0,"send":0,"writ":179.41,"used":574.16,"free":2816.97},{"epoch":26161963,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":574.15,"free":2816.98},{"epoch":26161964,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":574.12,"free":2817.01},{"epoch":26161965,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":574.13,"free":2817.01},{"epoch":26161966,"idl":99.81,"recv":0,"send":0,"writ":0.64,"used":574.14,"free":2817},{"epoch":26161967,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":571.67,"free":2819.49},{"epoch":26161968,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":571.65,"free":2819.51},{"epoch":26161969,"idl":99.87,"recv":0,"send":0,"writ":0.18,"used":571.63,"free":2819.52},{"epoch":26161970,"idl":99.88,"recv":0,"send":0,"writ":0.33,"used":571.88,"free":2819.29},{"epoch":26161971,"idl":99.8,"recv":0,"send":0,"writ":0.37,"used":572.58,"free":2818.59},{"epoch":26161972,"idl":99.88,"recv":0,"send":0,"writ":0.39,"used":572.06,"free":2819.14},{"epoch":26161973,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":572.04,"free":2819.15},{"epoch":26161974,"idl":99.89,"recv":0,"send":0,"writ":0.16,"used":572.01,"free":2819.17},{"epoch":26161975,"idl":99.85,"recv":0,"send":0,"writ":0.35,"used":572.02,"free":2819.18},{"epoch":26161976,"idl":99.89,"recv":0,"send":0,"writ":0.17,"used":571.99,"free":2819.2},{"epoch":26161977,"idl":99.7,"recv":0,"send":0,"writ":0.61,"used":571.22,"free":2819.97},{"epoch":26161978,"idl":99.81,"recv":0.01,"send":0.01,"writ":0.24,"used":570.78,"free":2820.41},{"epoch":26161979,"idl":99.86,"recv":0,"send":0,"writ":0.22,"used":571.44,"free":2819.73},{"epoch":26161980,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":571.8,"free":2819.39},{"epoch":26161981,"idl":99.91,"recv":0,"send":0,"writ":0.19,"used":571.78,"free":2819.4},{"epoch":26161982,"idl":99.75,"recv":0,"send":0,"writ":0.58,"used":571.38,"free":2819.8},{"epoch":26161983,"idl":99.87,"recv":0,"send":0,"writ":0.17,"used":570.74,"free":2820.43},{"epoch":26161984,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":570.73,"free":2820.43},{"epoch":26161985,"idl":99.87,"recv":0,"send":0,"writ":0.38,"used":571.94,"free":2819.24},{"epoch":26161986,"idl":99.88,"recv":0,"send":0,"writ":0.17,"used":571.91,"free":2819.26},{"epoch":26161987,"idl":99.75,"recv":0,"send":0,"writ":0.59,"used":571.35,"free":2819.83},{"epoch":26161988,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":570.64,"free":2820.53},{"epoch":26161989,"idl":99.67,"recv":0,"send":0,"writ":0.27,"used":571.85,"free":2819.29},{"epoch":26161990,"idl":99.75,"recv":0,"send":0,"writ":0.35,"used":571.08,"free":2820.08},{"epoch":26161991,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":571.04,"free":2820.11},{"epoch":26161992,"idl":99.73,"recv":0,"send":0,"writ":0.57,"used":571.94,"free":2819.21},{"epoch":26161993,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":571.99,"free":2819.16},{"epoch":26161994,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":571.96,"free":2819.19},{"epoch":26161995,"idl":99.77,"recv":0,"send":0,"writ":0.33,"used":571.95,"free":2819.22},{"epoch":26161996,"idl":99.81,"recv":0,"send":0,"writ":0.15,"used":571.92,"free":2819.25},{"epoch":26161997,"idl":99.72,"recv":0,"send":0,"writ":0.62,"used":571.86,"free":2819.3},{"epoch":26161998,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":570.88,"free":2820.27},{"epoch":26161999,"idl":98.18,"recv":0.01,"send":0.01,"writ":0.18,"used":570.87,"free":2820.28},{"epoch":26162000,"idl":99.79,"recv":0,"send":0,"writ":0.35,"used":570.1,"free":2821.07},{"epoch":26162001,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":570.04,"free":2821.13},{"epoch":26162002,"idl":99.7,"recv":0,"send":0,"writ":0.58,"used":570.68,"free":2820.48},{"epoch":26162003,"idl":99.88,"recv":0,"send":0,"writ":0.18,"used":571.22,"free":2819.93},{"epoch":26162004,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":571.21,"free":2819.94},{"epoch":26162005,"idl":99.82,"recv":0,"send":0,"writ":0.36,"used":571.69,"free":2819.48},{"epoch":26162006,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":571.68,"free":2819.48},{"epoch":26162007,"idl":99.69,"recv":0,"send":0,"writ":0.4,"used":572.38,"free":2818.78},{"epoch":26162008,"idl":99.86,"recv":0,"send":0,"writ":0.37,"used":571.63,"free":2819.53},{"epoch":26162009,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":571.62,"free":2819.54},{"epoch":26162010,"idl":99.83,"recv":0,"send":0,"writ":0.36,"used":571.63,"free":2819.54},{"epoch":26162011,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":571.73,"free":2819.44},{"epoch":26162012,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":571.77,"free":2819.39},{"epoch":26162013,"idl":99.73,"recv":0,"send":0,"writ":0.55,"used":571.71,"free":2819.45},{"epoch":26162014,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":570.98,"free":2820.17},{"epoch":26162015,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":571.23,"free":2819.93},{"epoch":26162016,"idl":99.83,"recv":0,"send":0,"writ":0.15,"used":571.2,"free":2819.96},{"epoch":26162017,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":571.18,"free":2819.98},{"epoch":26162018,"idl":99.71,"recv":0,"send":0,"writ":0.55,"used":571.82,"free":2819.34},{"epoch":26162019,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":571.86,"free":2819.27},{"epoch":26162020,"idl":99.7,"recv":0,"send":0,"writ":0.35,"used":571.88,"free":2819.27},{"epoch":26162021,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":571.85,"free":2819.29},{"epoch":26162022,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":571.96,"free":2819.18},{"epoch":26162023,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":572.47,"free":2818.66},{"epoch":26162024,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":572.21,"free":2818.92},{"epoch":26162025,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":572.22,"free":2818.93},{"epoch":26162026,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":572.19,"free":2818.95},{"epoch":26162027,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":572.17,"free":2818.97},{"epoch":26162028,"idl":99.72,"recv":0,"send":0,"writ":0.49,"used":572.51,"free":2818.63},{"epoch":26162029,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":572.13,"free":2819},{"epoch":26162030,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":572.12,"free":2819.02},{"epoch":26162031,"idl":99.83,"recv":0.03,"send":0,"writ":0.18,"used":572.1,"free":2819.04},{"epoch":26162032,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.16,"free":2818.98},{"epoch":26162033,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":572.57,"free":2818.56},{"epoch":26162034,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":572.34,"free":2818.78},{"epoch":26162035,"idl":99.78,"recv":0,"send":0,"writ":0.34,"used":572.1,"free":2819.04},{"epoch":26162036,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":572.07,"free":2819.07},{"epoch":26162037,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":572.26,"free":2818.87},{"epoch":26162038,"idl":99.7,"recv":0,"send":0,"writ":0.52,"used":572.62,"free":2818.5},{"epoch":26162039,"idl":99.86,"recv":0,"send":0,"writ":0.2,"used":571.96,"free":2819.15},{"epoch":26162040,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":572.26,"free":2818.87},{"epoch":26162041,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":572.19,"free":2818.94},{"epoch":26162042,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.18,"free":2818.94},{"epoch":26162043,"idl":99.73,"recv":0,"send":0,"writ":0.38,"used":572.86,"free":2818.26},{"epoch":26162044,"idl":99.85,"recv":0,"send":0,"writ":0.37,"used":572.14,"free":2818.97},{"epoch":26162045,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.38,"used":572.46,"free":2818.67},{"epoch":26162046,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":572.49,"free":2818.63},{"epoch":26162047,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":572.47,"free":2818.65},{"epoch":26162048,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.45,"free":2818.66},{"epoch":26162049,"idl":99.66,"recv":0,"send":0,"writ":0.68,"used":573.09,"free":2818},{"epoch":26162050,"idl":99.75,"recv":0,"send":0,"writ":0.3,"used":571.72,"free":2819.39},{"epoch":26162051,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":571.66,"free":2819.45},{"epoch":26162052,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":571.64,"free":2819.46},{"epoch":26162053,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":571.19,"free":2819.91},{"epoch":26162054,"idl":99.72,"recv":0,"send":0,"writ":0.55,"used":571.49,"free":2819.61},{"epoch":26162055,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":571.6,"free":2819.52},{"epoch":26162056,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":571.64,"free":2819.47},{"epoch":26162057,"idl":99.87,"recv":0,"send":0,"writ":0.21,"used":571.75,"free":2819.36},{"epoch":26162058,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":571.72,"free":2819.38},{"epoch":26162059,"idl":99.71,"recv":0.01,"send":0.01,"writ":0.56,"used":572.05,"free":2819.05},{"epoch":26162060,"idl":99.38,"recv":0,"send":0,"writ":0.31,"used":571.94,"free":2819.18},{"epoch":26162061,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.91,"free":2819.2},{"epoch":26162062,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.9,"free":2819.2},{"epoch":26162063,"idl":99.82,"recv":0,"send":0,"writ":0.16,"used":571.71,"free":2819.39},{"epoch":26162064,"idl":99.71,"recv":0,"send":0,"writ":0.56,"used":571.96,"free":2819.14},{"epoch":26162065,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":571.61,"free":2819.5},{"epoch":26162066,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":571.64,"free":2819.47},{"epoch":26162067,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":571.75,"free":2819.36},{"epoch":26162068,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":571.71,"free":2819.38},{"epoch":26162069,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":572.47,"free":2818.63},{"epoch":26162070,"idl":99.82,"recv":0,"send":0,"writ":0.39,"used":571.94,"free":2819.17},{"epoch":26162071,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":571.93,"free":2819.18},{"epoch":26162072,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":571.9,"free":2819.2},{"epoch":26162073,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":571.88,"free":2819.22},{"epoch":26162074,"idl":99.73,"recv":0,"send":0,"writ":0.44,"used":572.34,"free":2818.76},{"epoch":26162075,"idl":99.83,"recv":0,"send":0,"writ":0.46,"used":571.87,"free":2819.24},{"epoch":26162076,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":571.84,"free":2819.27},{"epoch":26162077,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":571.83,"free":2819.28},{"epoch":26162078,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":571.91,"free":2819.19},{"epoch":26162079,"idl":99.67,"recv":0,"send":0,"writ":0.43,"used":572.31,"free":2818.76},{"epoch":26162080,"idl":99.8,"recv":0,"send":0,"writ":0.51,"used":571.96,"free":2819.12},{"epoch":26162081,"idl":99.15,"recv":0,"send":0,"writ":0.16,"used":571.94,"free":2819.14},{"epoch":26162082,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":571.93,"free":2819.15},{"epoch":26162083,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":571.89,"free":2819.18},{"epoch":26162084,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":571.88,"free":2819.2},{"epoch":26162085,"idl":99.66,"recv":0,"send":0,"writ":0.73,"used":572.03,"free":2819.1},{"epoch":26162086,"idl":99.88,"recv":0,"send":0,"writ":0.15,"used":571.63,"free":2819.49},{"epoch":26162087,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":571.6,"free":2819.52},{"epoch":26162088,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":571.58,"free":2819.53},{"epoch":26162089,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":571.63,"free":2819.48},{"epoch":26162090,"idl":99.67,"recv":0,"send":0,"writ":0.73,"used":571.84,"free":2819.29},{"epoch":26162091,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":571.22,"free":2819.9},{"epoch":26162092,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":571.2,"free":2819.92},{"epoch":26162093,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.18,"free":2819.93},{"epoch":26162094,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.16,"free":2819.95},{"epoch":26162095,"idl":99.67,"recv":0,"send":0,"writ":0.71,"used":571.55,"free":2819.57},{"epoch":26162096,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":570.89,"free":2820.23},{"epoch":26162097,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":570.86,"free":2820.26},{"epoch":26162098,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":570.87,"free":2820.23},{"epoch":26162099,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":571.55,"free":2819.55},{"epoch":26162100,"idl":99.56,"recv":0,"send":0,"writ":0.56,"used":571.37,"free":2819.74},{"epoch":26162101,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":570.74,"free":2820.38},{"epoch":26162102,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.73,"free":2820.38},{"epoch":26162103,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":570.72,"free":2820.39},{"epoch":26162104,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":570.69,"free":2820.41},{"epoch":26162105,"idl":99.68,"recv":0,"send":0,"writ":0.67,"used":572.34,"free":2818.78},{"epoch":26162106,"idl":99.86,"recv":0,"send":0,"writ":0.19,"used":571.91,"free":2819.21},{"epoch":26162107,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":571.89,"free":2819.22},{"epoch":26162108,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":571.87,"free":2819.24},{"epoch":26162109,"idl":99.82,"recv":0,"send":0,"writ":0.27,"used":571.83,"free":2819.26},{"epoch":26162110,"idl":99.68,"recv":0,"send":0,"writ":0.7,"used":572.02,"free":2819.08},{"epoch":26162111,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":571.8,"free":2819.3},{"epoch":26162112,"idl":99.85,"recv":0.01,"send":0,"writ":0.14,"used":571.99,"free":2819.1},{"epoch":26162113,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":571.91,"free":2819.17},{"epoch":26162114,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":571.88,"free":2819.2},{"epoch":26162115,"idl":99.68,"recv":0,"send":0,"writ":0.78,"used":572.25,"free":2818.84},{"epoch":26162116,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":571.85,"free":2819.23},{"epoch":26162117,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":571.84,"free":2819.24},{"epoch":26162118,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":571.81,"free":2819.27},{"epoch":26162119,"idl":99.86,"recv":0.01,"send":0.01,"writ":0.14,"used":571.82,"free":2819.25},{"epoch":26162120,"idl":99.28,"recv":0,"send":0,"writ":0.34,"used":572.58,"free":2818.51},{"epoch":26162121,"idl":99.6,"recv":0,"send":0,"writ":0.58,"used":572.23,"free":2818.86},{"epoch":26162122,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":572.19,"free":2818.89},{"epoch":26162123,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":572.17,"free":2818.91},{"epoch":26162124,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":572.15,"free":2818.93},{"epoch":26162125,"idl":99.77,"recv":0,"send":0,"writ":0.32,"used":571.66,"free":2819.42},{"epoch":26162126,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":572.74,"free":2818.34},{"epoch":26162127,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":572.11,"free":2818.97},{"epoch":26162128,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":572.08,"free":2818.99},{"epoch":26162129,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":572.07,"free":2819},{"epoch":26162130,"idl":99.8,"recv":0,"send":0,"writ":0.35,"used":572.31,"free":2818.77},{"epoch":26162131,"idl":99.71,"recv":0,"send":0,"writ":0.58,"used":571.95,"free":2819.13},{"epoch":26162132,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":571.23,"free":2819.85},{"epoch":26162133,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":571.2,"free":2819.88},{"epoch":26162134,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":571.19,"free":2819.88},{"epoch":26162135,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":571.92,"free":2819.17},{"epoch":26162136,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":572.42,"free":2818.66},{"epoch":26162137,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":572.12,"free":2818.96},{"epoch":26162138,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.1,"free":2818.97},{"epoch":26162139,"idl":99.81,"recv":0,"send":0,"writ":0.27,"used":572.1,"free":2818.95},{"epoch":26162140,"idl":99.81,"recv":0,"send":0,"writ":0.36,"used":572.08,"free":2818.99},{"epoch":26162141,"idl":99.33,"recv":0,"send":0,"writ":0.59,"used":572.42,"free":2818.64},{"epoch":26162142,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":572.05,"free":2819},{"epoch":26162143,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":572.21,"free":2818.84},{"epoch":26162144,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":572.18,"free":2818.88},{"epoch":26162145,"idl":99.85,"recv":0,"send":0,"writ":0.33,"used":571.45,"free":2819.63},{"epoch":26162146,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":571.85,"free":2819.22},{"epoch":26162147,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.63,"free":2819.44},{"epoch":26162148,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":571.63,"free":2819.44},{"epoch":26162149,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":571.61,"free":2819.45},{"epoch":26162150,"idl":99.86,"recv":0,"send":0,"writ":0.35,"used":572.32,"free":2818.76},{"epoch":26162151,"idl":99.83,"recv":0,"send":0,"writ":0.47,"used":572.97,"free":2818.1},{"epoch":26162152,"idl":99.95,"recv":0,"send":0,"writ":0.3,"used":572.05,"free":2819.02},{"epoch":26162153,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.09,"free":2818.98},{"epoch":26162154,"idl":99.96,"recv":0,"send":0,"writ":0.15,"used":572.2,"free":2818.86},{"epoch":26162155,"idl":99.86,"recv":0,"send":0,"writ":0.32,"used":571.95,"free":2819.12},{"epoch":26162156,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":571.94,"free":2819.14},{"epoch":26162157,"idl":99.79,"recv":0,"send":0,"writ":0.62,"used":572.7,"free":2818.36},{"epoch":26162158,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.14,"free":2818.93},{"epoch":26162159,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":572.11,"free":2818.95},{"epoch":26162160,"idl":99.89,"recv":0,"send":0,"writ":0.39,"used":572.34,"free":2818.73},{"epoch":26162161,"idl":99.96,"recv":0,"send":0,"writ":0.13,"used":572.33,"free":2818.73},{"epoch":26162162,"idl":99.79,"recv":0,"send":0,"writ":0.62,"used":572.75,"free":2818.31},{"epoch":26162163,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.06,"free":2819.03},{"epoch":26162164,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.02,"free":2819.07},{"epoch":26162165,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":572.11,"free":2818.99},{"epoch":26162166,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":572.18,"free":2818.92},{"epoch":26162167,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":572.36,"free":2818.74},{"epoch":26162168,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":571.9,"free":2819.2},{"epoch":26162169,"idl":99.85,"recv":0,"send":0,"writ":0.31,"used":571.62,"free":2819.45},{"epoch":26162170,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":572.36,"free":2818.73},{"epoch":26162171,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":572.34,"free":2818.75},{"epoch":26162172,"idl":99.8,"recv":0,"send":0,"writ":0.61,"used":572.55,"free":2818.53},{"epoch":26162173,"idl":99.93,"recv":0,"send":0.01,"writ":0.18,"used":572.04,"free":2819.04},{"epoch":26162174,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":572.01,"free":2819.09},{"epoch":26162175,"idl":99.91,"recv":0,"send":0,"writ":0.34,"used":572.34,"free":2818.79},{"epoch":26162176,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":572.43,"free":2818.7},{"epoch":26162177,"idl":99.79,"recv":0,"send":0,"writ":0.64,"used":572.97,"free":2818.15},{"epoch":26162178,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":572.39,"free":2818.73},{"epoch":26162179,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.15,"used":572.36,"free":2818.76},{"epoch":26162180,"idl":99.9,"recv":0,"send":0,"writ":0.33,"used":572.61,"free":2818.52},{"epoch":26162181,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":572.58,"free":2818.54},{"epoch":26162182,"idl":99.82,"recv":0,"send":0,"writ":0.55,"used":572.99,"free":2818.13},{"epoch":26162183,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":572.05,"free":2819.07},{"epoch":26162184,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":572.04,"free":2819.07},{"epoch":26162185,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":572.28,"free":2818.85},{"epoch":26162186,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":572.35,"free":2818.77},{"epoch":26162187,"idl":99.77,"recv":0,"send":0,"writ":0.44,"used":572.87,"free":2818.25},{"epoch":26162188,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":572.45,"free":2818.67},{"epoch":26162189,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":572.42,"free":2818.7},{"epoch":26162190,"idl":99.89,"recv":0,"send":0,"writ":0.34,"used":572.67,"free":2818.46},{"epoch":26162191,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":572.64,"free":2818.48},{"epoch":26162192,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":572.63,"free":2818.49},{"epoch":26162193,"idl":99.8,"recv":0,"send":0,"writ":0.61,"used":572.72,"free":2818.4},{"epoch":26162194,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":572.34,"free":2818.77},{"epoch":26162195,"idl":99.88,"recv":0,"send":0,"writ":0.34,"used":572.34,"free":2818.79},{"epoch":26162196,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.32,"free":2818.8},{"epoch":26162197,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":572.3,"free":2818.82},{"epoch":26162198,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":572.7,"free":2818.42},{"epoch":26162199,"idl":99.86,"recv":0,"send":0,"writ":0.35,"used":572.23,"free":2818.85},{"epoch":26162200,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":571.54,"free":2819.56},{"epoch":26162201,"idl":99.68,"recv":0,"send":0,"writ":0.17,"used":571.43,"free":2819.66},{"epoch":26162202,"idl":99.59,"recv":0,"send":0,"writ":0.15,"used":571.4,"free":2819.69},{"epoch":26162203,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":571.95,"free":2819.13},{"epoch":26162204,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":571.61,"free":2819.47},{"epoch":26162205,"idl":99.88,"recv":0,"send":0,"writ":0.35,"used":571.61,"free":2819.48},{"epoch":26162206,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":571.58,"free":2819.5},{"epoch":26162207,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":571.56,"free":2819.53},{"epoch":26162208,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":572.81,"free":2818.29},{"epoch":26162209,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":570.46,"free":2820.63},{"epoch":26162210,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":570,"free":2821.11},{"epoch":26162211,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":569.96,"free":2821.15},{"epoch":26162212,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":569.94,"free":2821.16},{"epoch":26162213,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":570.27,"free":2820.83},{"epoch":26162214,"idl":99.95,"recv":0,"send":0,"writ":0.29,"used":569.9,"free":2821.19},{"epoch":26162215,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":570.14,"free":2820.97},{"epoch":26162216,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.13,"free":2820.98},{"epoch":26162217,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":570.11,"free":2821},{"epoch":26162218,"idl":99.75,"recv":0,"send":0,"writ":0.51,"used":570.34,"free":2820.76},{"epoch":26162219,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":569.59,"free":2821.5},{"epoch":26162220,"idl":99.24,"recv":0,"send":0,"writ":8.32,"used":569.69,"free":2818.22},{"epoch":26162221,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":569.67,"free":2818.19},{"epoch":26162222,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":569.66,"free":2818.2},{"epoch":26162223,"idl":99.81,"recv":0,"send":0,"writ":0.5,"used":570.05,"free":2817.8},{"epoch":26162224,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":569.87,"free":2817.98},{"epoch":26162225,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":570.34,"free":2817.55},{"epoch":26162226,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.34,"free":2817.55},{"epoch":26162227,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.31,"free":2817.57},{"epoch":26162228,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":570.96,"free":2816.92},{"epoch":26162229,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":570.04,"free":2817.82},{"epoch":26162230,"idl":99.89,"recv":0,"send":0,"writ":0.38,"used":569.79,"free":2818.08},{"epoch":26162231,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":569.82,"free":2818.04},{"epoch":26162232,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":569.93,"free":2817.93},{"epoch":26162233,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":569.9,"free":2817.96},{"epoch":26162234,"idl":99.81,"recv":0,"send":0,"writ":0.58,"used":570.85,"free":2817},{"epoch":26162235,"idl":99.83,"recv":0,"send":0,"writ":0.37,"used":569.88,"free":2817.98},{"epoch":26162236,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":569.85,"free":2818.01},{"epoch":26162237,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":569.84,"free":2818.02},{"epoch":26162238,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":569.81,"free":2818.04},{"epoch":26162239,"idl":99.76,"recv":0.01,"send":0.01,"writ":0.6,"used":570.37,"free":2817.48},{"epoch":26162240,"idl":99.89,"recv":0,"send":0,"writ":0.37,"used":570.04,"free":2817.83},{"epoch":26162241,"idl":99.67,"recv":0,"send":0,"writ":0.18,"used":569.8,"free":2818.06},{"epoch":26162242,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":569.9,"free":2817.96},{"epoch":26162243,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":569.9,"free":2817.95},{"epoch":26162244,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":570.23,"free":2817.62},{"epoch":26162245,"idl":99.85,"recv":0.02,"send":0.08,"writ":0.39,"used":569.94,"free":2817.81},{"epoch":26162246,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":569.89,"free":2817.84},{"epoch":26162247,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.94,"free":2817.78},{"epoch":26162248,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.05,"free":2817.67},{"epoch":26162249,"idl":99.81,"recv":0,"send":0,"writ":0.5,"used":570.47,"free":2817.24},{"epoch":26162250,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":570.27,"free":2817.46},{"epoch":26162251,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.24,"free":2817.49},{"epoch":26162252,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.22,"free":2817.5},{"epoch":26162253,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":570.18,"free":2817.54},{"epoch":26162254,"idl":99.79,"recv":0,"send":0,"writ":0.41,"used":570.52,"free":2817.19},{"epoch":26162255,"idl":99.89,"recv":0,"send":0,"writ":0.46,"used":570.17,"free":2817.56},{"epoch":26162256,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.18,"free":2817.55},{"epoch":26162257,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.3,"free":2817.43},{"epoch":26162258,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.28,"free":2817.44},{"epoch":26162259,"idl":99.76,"recv":0,"send":0,"writ":0.71,"used":570.78,"free":2816.91},{"epoch":26162260,"idl":99.84,"recv":0,"send":0,"writ":0.37,"used":570.02,"free":2817.69},{"epoch":26162261,"idl":99.94,"recv":0.01,"send":0.01,"writ":0.16,"used":569.97,"free":2817.74},{"epoch":26162262,"idl":99.91,"recv":0,"send":0,"writ":0.13,"used":569.89,"free":2817.81},{"epoch":26162263,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":569.92,"free":2817.77},{"epoch":26162264,"idl":99.79,"recv":0,"send":0,"writ":0.43,"used":570.4,"free":2817.28},{"epoch":26162265,"idl":99.9,"recv":0,"send":0,"writ":0.45,"used":570.27,"free":2817.44},{"epoch":26162266,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.25,"free":2817.45},{"epoch":26162267,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.22,"free":2817.47},{"epoch":26162268,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":570.21,"free":2817.48},{"epoch":26162269,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":570.18,"free":2817.5},{"epoch":26162270,"idl":99.77,"recv":0,"send":0,"writ":0.73,"used":570.53,"free":2817.17},{"epoch":26162271,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.17,"free":2817.54},{"epoch":26162272,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.15,"free":2817.55},{"epoch":26162273,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":570.13,"free":2817.57},{"epoch":26162274,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.11,"free":2817.58},{"epoch":26162275,"idl":99.75,"recv":0,"send":0,"writ":0.73,"used":570.68,"free":2817.02},{"epoch":26162276,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":570.28,"free":2817.42},{"epoch":26162277,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":570.26,"free":2817.44},{"epoch":26162278,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.22,"free":2817.47},{"epoch":26162279,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":569.99,"free":2817.7},{"epoch":26162280,"idl":99.75,"recv":0,"send":0,"writ":0.76,"used":570.73,"free":2816.96},{"epoch":26162281,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":570.43,"free":2817.26},{"epoch":26162282,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.4,"free":2817.29},{"epoch":26162283,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.39,"free":2817.29},{"epoch":26162284,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":570.36,"free":2817.32},{"epoch":26162285,"idl":99.74,"recv":0,"send":0,"writ":0.67,"used":570.86,"free":2816.84},{"epoch":26162286,"idl":99.95,"recv":0,"send":0,"writ":0.21,"used":570.65,"free":2817.04},{"epoch":26162287,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.76,"free":2816.93},{"epoch":26162288,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":570.73,"free":2816.95},{"epoch":26162289,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":570.24,"free":2817.42},{"epoch":26162290,"idl":99.74,"recv":0,"send":0,"writ":0.58,"used":570.57,"free":2817.11},{"epoch":26162291,"idl":99.95,"recv":0,"send":0,"writ":0.3,"used":570.21,"free":2817.46},{"epoch":26162292,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":570.18,"free":2817.49},{"epoch":26162293,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":570.17,"free":2817.49},{"epoch":26162294,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.15,"free":2817.5},{"epoch":26162295,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":570.76,"free":2816.91},{"epoch":26162296,"idl":99.94,"recv":0,"send":0,"writ":0.3,"used":570.37,"free":2817.3},{"epoch":26162297,"idl":99.92,"recv":0,"send":0,"writ":0.24,"used":570.36,"free":2817.3},{"epoch":26162298,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.35,"free":2817.32},{"epoch":26162299,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.19,"used":570.45,"free":2817.2},{"epoch":26162300,"idl":99.75,"recv":0,"send":0,"writ":0.5,"used":571,"free":2816.67},{"epoch":26162301,"idl":99.95,"recv":0,"send":0,"writ":0.39,"used":569.72,"free":2817.95},{"epoch":26162302,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":569.71,"free":2817.95},{"epoch":26162303,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":569.68,"free":2817.98},{"epoch":26162304,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":569.68,"free":2817.98},{"epoch":26162305,"idl":99.73,"recv":0,"send":0,"writ":0.3,"used":569.43,"free":2818.25},{"epoch":26162306,"idl":99.79,"recv":0,"send":0,"writ":0.52,"used":570.64,"free":2817.02},{"epoch":26162307,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.16,"used":570.38,"free":2817.28},{"epoch":26162308,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":570.43,"free":2817.22},{"epoch":26162309,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.41,"free":2817.24},{"epoch":26162310,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":570.64,"free":2817.02},{"epoch":26162311,"idl":99.81,"recv":0,"send":0,"writ":0.54,"used":570.54,"free":2817.12},{"epoch":26162312,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.11,"free":2817.55},{"epoch":26162313,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.09,"free":2817.56},{"epoch":26162314,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":570.07,"free":2817.58},{"epoch":26162315,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":570.43,"free":2817.24},{"epoch":26162316,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":570.14,"free":2817.52},{"epoch":26162317,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":569.52,"free":2818.13},{"epoch":26162318,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":569.49,"free":2818.16},{"epoch":26162319,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":570.44,"free":2817.19},{"epoch":26162320,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":570.69,"free":2816.96},{"epoch":26162321,"idl":99.82,"recv":0,"send":0,"writ":0.57,"used":570.49,"free":2817.15},{"epoch":26162322,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":569.65,"free":2817.98},{"epoch":26162323,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":569.63,"free":2818.01},{"epoch":26162324,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":569.61,"free":2818.04},{"epoch":26162325,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":570.34,"free":2817.32},{"epoch":26162326,"idl":95.12,"recv":0.29,"send":0.01,"writ":78.46,"used":582.91,"free":2805.01},{"epoch":26162327,"idl":99.83,"recv":0,"send":0,"writ":179.11,"used":572.94,"free":2814.22},{"epoch":26162328,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":572.93,"free":2814.22},{"epoch":26162329,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":572.9,"free":2814.25},{"epoch":26162330,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":573.16,"free":2814.01},{"epoch":26162331,"idl":99.79,"recv":0,"send":0.01,"writ":0.41,"used":572.85,"free":2814.32},{"epoch":26162332,"idl":99.94,"recv":0,"send":0,"writ":0.33,"used":570.44,"free":2816.76},{"epoch":26162333,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.42,"free":2816.77},{"epoch":26162334,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.4,"free":2816.79},{"epoch":26162335,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":570.42,"free":2816.79},{"epoch":26162336,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":570.96,"free":2816.24},{"epoch":26162337,"idl":99.96,"recv":0,"send":0,"writ":0.14,"used":570.78,"free":2816.42},{"epoch":26162338,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.77,"free":2816.42},{"epoch":26162339,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":570.52,"free":2816.67},{"epoch":26162340,"idl":99.79,"recv":0,"send":0,"writ":0.28,"used":570.34,"free":2816.85},{"epoch":26162341,"idl":99.82,"recv":0,"send":0,"writ":0.34,"used":570.58,"free":2816.61},{"epoch":26162342,"idl":99.93,"recv":0,"send":0,"writ":0.38,"used":570.45,"free":2816.74},{"epoch":26162343,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.43,"free":2816.76},{"epoch":26162344,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":570.41,"free":2816.77},{"epoch":26162345,"idl":99.84,"recv":0,"send":0,"writ":0.27,"used":570.65,"free":2816.55},{"epoch":26162346,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.62,"free":2816.57},{"epoch":26162347,"idl":99.82,"recv":0,"send":0,"writ":0.59,"used":570.15,"free":2817.04},{"epoch":26162348,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":569.79,"free":2817.4},{"epoch":26162349,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":570.72,"free":2816.46},{"epoch":26162350,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":570.76,"free":2816.44},{"epoch":26162351,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.73,"free":2816.46},{"epoch":26162352,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":571.2,"free":2815.99},{"epoch":26162353,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.2,"free":2816.98},{"epoch":26162354,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":570.17,"free":2817.01},{"epoch":26162355,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":570.4,"free":2816.8},{"epoch":26162356,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":570.39,"free":2816.8},{"epoch":26162357,"idl":99.78,"recv":0,"send":0,"writ":0.52,"used":571.12,"free":2816.07},{"epoch":26162358,"idl":99.95,"recv":0,"send":0,"writ":0.19,"used":570.61,"free":2816.57},{"epoch":26162359,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.16,"used":570.79,"free":2816.39},{"epoch":26162360,"idl":99.92,"recv":0,"send":0,"writ":0.28,"used":570.79,"free":2816.41},{"epoch":26162361,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.77,"free":2816.44},{"epoch":26162362,"idl":99.83,"recv":0,"send":0,"writ":0.55,"used":570.84,"free":2816.37},{"epoch":26162363,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":569.99,"free":2817.21},{"epoch":26162364,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":569.97,"free":2817.22},{"epoch":26162365,"idl":99.89,"recv":0,"send":0,"writ":0.27,"used":570.94,"free":2816.27},{"epoch":26162366,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.94,"free":2816.27},{"epoch":26162367,"idl":99.82,"recv":0,"send":0,"writ":0.42,"used":571.27,"free":2815.94},{"epoch":26162368,"idl":99.94,"recv":0,"send":0,"writ":0.28,"used":570.9,"free":2816.3},{"epoch":26162369,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":570.88,"free":2816.32},{"epoch":26162370,"idl":99.92,"recv":0,"send":0,"writ":0.28,"used":571.04,"free":2816.17},{"epoch":26162371,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.03,"free":2816.18},{"epoch":26162372,"idl":99.83,"recv":0,"send":0,"writ":0.51,"used":571.19,"free":2816.02},{"epoch":26162373,"idl":99.95,"recv":0,"send":0,"writ":0.24,"used":570.02,"free":2817.18},{"epoch":26162374,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":569.99,"free":2817.21},{"epoch":26162375,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":570.98,"free":2816.24},{"epoch":26162376,"idl":99.96,"recv":0,"send":0,"writ":0.18,"used":570.95,"free":2816.26},{"epoch":26162377,"idl":99.82,"recv":0,"send":0,"writ":0.33,"used":571.6,"free":2815.61},{"epoch":26162378,"idl":99.91,"recv":0,"send":0,"writ":0.38,"used":571.16,"free":2816.04},{"epoch":26162379,"idl":99.86,"recv":0,"send":0,"writ":0.29,"used":570.93,"free":2816.25},{"epoch":26162380,"idl":99.8,"recv":0,"send":0,"writ":0.33,"used":569.93,"free":2817.26},{"epoch":26162381,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":569.93,"free":2817.25},{"epoch":26162382,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.06,"free":2817.13},{"epoch":26162383,"idl":99.08,"recv":0,"send":0,"writ":0.57,"used":571.39,"free":2815.79},{"epoch":26162384,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.99,"free":2816.18},{"epoch":26162385,"idl":99.86,"recv":0,"send":0,"writ":0.28,"used":570.74,"free":2816.44},{"epoch":26162386,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":569.95,"free":2817.23},{"epoch":26162387,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":569.71,"free":2817.46},{"epoch":26162388,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":570.37,"free":2816.8},{"epoch":26162389,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":570.17,"free":2817},{"epoch":26162390,"idl":99.88,"recv":0.01,"send":0.01,"writ":0.3,"used":570.26,"free":2816.93},{"epoch":26162391,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.24,"free":2816.94},{"epoch":26162392,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":570.2,"free":2816.97},{"epoch":26162393,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":569.89,"free":2817.28},{"epoch":26162394,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":569.18,"free":2817.99},{"epoch":26162395,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":569.72,"free":2817.46},{"epoch":26162396,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":569.65,"free":2817.53},{"epoch":26162397,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":569.65,"free":2817.53},{"epoch":26162398,"idl":99.78,"recv":0,"send":0,"writ":0.54,"used":570.71,"free":2816.46},{"epoch":26162399,"idl":99.9,"recv":0,"send":0,"writ":0.23,"used":570.1,"free":2817.06},{"epoch":26162400,"idl":99.8,"recv":0,"send":0,"writ":0.3,"used":570.27,"free":2816.92},{"epoch":26162401,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.26,"free":2816.91},{"epoch":26162402,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":570.23,"free":2816.94},{"epoch":26162403,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":570.86,"free":2816.31},{"epoch":26162404,"idl":99.95,"recv":0,"send":0,"writ":0.2,"used":570.2,"free":2816.97},{"epoch":26162405,"idl":99.85,"recv":0,"send":0,"writ":0.27,"used":570.45,"free":2816.73},{"epoch":26162406,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.42,"free":2816.76},{"epoch":26162407,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":570.42,"free":2816.76},{"epoch":26162408,"idl":99.76,"recv":0,"send":0,"writ":0.42,"used":570.82,"free":2816.35},{"epoch":26162409,"idl":99.9,"recv":0,"send":0,"writ":0.4,"used":570.15,"free":2817},{"epoch":26162410,"idl":99.87,"recv":0,"send":0,"writ":0.34,"used":570.15,"free":2817.01},{"epoch":26162411,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.18,"free":2816.98},{"epoch":26162412,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":570.29,"free":2816.87},{"epoch":26162413,"idl":99.82,"recv":0,"send":0,"writ":0.42,"used":570.57,"free":2816.58},{"epoch":26162414,"idl":99.94,"recv":0,"send":0,"writ":0.28,"used":570,"free":2817.16},{"epoch":26162415,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":570,"free":2817.18},{"epoch":26162416,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":569.98,"free":2817.19},{"epoch":26162417,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":569.96,"free":2817.22},{"epoch":26162418,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":569.93,"free":2817.25},{"epoch":26162419,"idl":99.78,"recv":0.01,"send":0.01,"writ":0.6,"used":569.78,"free":2817.4},{"epoch":26162420,"idl":99.89,"recv":0,"send":0,"writ":0.32,"used":570.39,"free":2816.81},{"epoch":26162421,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.4,"free":2816.8},{"epoch":26162422,"idl":99.65,"recv":0,"send":0,"writ":0.13,"used":570.36,"free":2816.83},{"epoch":26162423,"idl":99.97,"recv":0,"send":0,"writ":0.19,"used":570.42,"free":2816.77},{"epoch":26162424,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":570.84,"free":2816.34},{"epoch":26162425,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":570.27,"free":2816.93},{"epoch":26162426,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.24,"free":2816.95},{"epoch":26162427,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.23,"free":2816.96},{"epoch":26162428,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.2,"free":2816.98},{"epoch":26162429,"idl":99.82,"recv":0,"send":0,"writ":0.59,"used":569.9,"free":2817.28},{"epoch":26162430,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":569.93,"free":2817.27},{"epoch":26162431,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.9,"free":2817.29},{"epoch":26162432,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":569.9,"free":2817.29},{"epoch":26162433,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":569.86,"free":2817.32},{"epoch":26162434,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":570.65,"free":2816.52},{"epoch":26162435,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":570.32,"free":2816.88},{"epoch":26162436,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":570.28,"free":2816.91},{"epoch":26162437,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.27,"free":2816.92},{"epoch":26162438,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":570.23,"free":2816.95},{"epoch":26162439,"idl":99.75,"recv":0,"send":0,"writ":0.52,"used":571.05,"free":2816.11},{"epoch":26162440,"idl":99.91,"recv":0,"send":0,"writ":0.46,"used":570.21,"free":2816.97},{"epoch":26162441,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.19,"free":2816.98},{"epoch":26162442,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.16,"free":2817.01},{"epoch":26162443,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":570.15,"free":2817.03},{"epoch":26162444,"idl":99.8,"recv":0,"send":0,"writ":0.47,"used":570.55,"free":2816.63},{"epoch":26162445,"idl":99.86,"recv":0,"send":0,"writ":0.41,"used":570.45,"free":2816.74},{"epoch":26162446,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":570.54,"free":2816.65},{"epoch":26162447,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.52,"free":2816.67},{"epoch":26162448,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.5,"free":2816.68},{"epoch":26162449,"idl":99.78,"recv":0,"send":0,"writ":0.42,"used":570.86,"free":2816.31},{"epoch":26162450,"idl":99.88,"recv":0,"send":0,"writ":0.41,"used":570.67,"free":2816.53},{"epoch":26162451,"idl":99.95,"recv":0,"send":0,"writ":0.13,"used":570.65,"free":2816.54},{"epoch":26162452,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.63,"free":2816.56},{"epoch":26162453,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":570.66,"free":2816.52},{"epoch":26162454,"idl":99.82,"recv":0,"send":0,"writ":0.41,"used":571.43,"free":2815.75},{"epoch":26162455,"idl":99.9,"recv":0,"send":0,"writ":0.4,"used":570.82,"free":2816.37},{"epoch":26162456,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":570.75,"free":2816.44},{"epoch":26162457,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":570.72,"free":2816.46},{"epoch":26162458,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.71,"free":2816.47},{"epoch":26162459,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":570.49,"free":2816.69},{"epoch":26162460,"idl":99.6,"recv":0,"send":0,"writ":0.65,"used":570.32,"free":2816.87},{"epoch":26162461,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.92,"free":2817.27},{"epoch":26162462,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":569.91,"free":2817.28},{"epoch":26162463,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":569.88,"free":2817.3},{"epoch":26162464,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.87,"free":2817.31},{"epoch":26162465,"idl":99.74,"recv":0,"send":0,"writ":0.69,"used":570.85,"free":2816.34},{"epoch":26162466,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.52,"free":2816.66},{"epoch":26162467,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.5,"free":2816.68},{"epoch":26162468,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.48,"free":2816.69},{"epoch":26162469,"idl":99.9,"recv":0,"send":0,"writ":0.27,"used":570.69,"free":2816.46},{"epoch":26162470,"idl":99.8,"recv":0,"send":0,"writ":0.66,"used":571.45,"free":2815.72},{"epoch":26162471,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.67,"free":2816.49},{"epoch":26162472,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.64,"free":2816.52},{"epoch":26162473,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.62,"free":2816.53},{"epoch":26162474,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.6,"free":2816.55},{"epoch":26162475,"idl":99.74,"recv":0,"send":0,"writ":0.68,"used":570.74,"free":2816.43},{"epoch":26162476,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.51,"free":2816.65},{"epoch":26162477,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":570.73,"free":2816.43},{"epoch":26162478,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.7,"free":2816.46},{"epoch":26162479,"idl":99.92,"recv":0.01,"send":0.01,"writ":0.15,"used":570.67,"free":2816.48},{"epoch":26162480,"idl":99.73,"recv":0,"send":0,"writ":0.62,"used":571.02,"free":2816.15},{"epoch":26162481,"idl":99.92,"recv":0,"send":0,"writ":0.2,"used":570.63,"free":2816.53},{"epoch":26162482,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.61,"free":2816.55},{"epoch":26162483,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":570.59,"free":2816.56},{"epoch":26162484,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.74,"free":2816.41},{"epoch":26162485,"idl":99.72,"recv":0,"send":0,"writ":0.54,"used":571.13,"free":2816.03},{"epoch":26162486,"idl":99.96,"recv":0,"send":0,"writ":0.3,"used":570.49,"free":2816.67},{"epoch":26162487,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":570.46,"free":2816.7},{"epoch":26162488,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.45,"free":2816.7},{"epoch":26162489,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.42,"free":2816.73},{"epoch":26162490,"idl":99.73,"recv":0,"send":0,"writ":0.73,"used":570.94,"free":2816.23},{"epoch":26162491,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":570.64,"free":2816.55},{"epoch":26162492,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.6,"free":2816.59},{"epoch":26162493,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.57,"free":2816.61},{"epoch":26162494,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.72,"free":2816.46},{"epoch":26162495,"idl":99.76,"recv":0,"send":0,"writ":0.71,"used":571.1,"free":2816.1},{"epoch":26162496,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":570.71,"free":2816.49},{"epoch":26162497,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.69,"free":2816.5},{"epoch":26162498,"idl":99.9,"recv":0,"send":0,"writ":0.21,"used":570.67,"free":2816.52},{"epoch":26162499,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":570.91,"free":2816.25},{"epoch":26162500,"idl":99.73,"recv":0,"send":0,"writ":0.47,"used":571.23,"free":2815.95},{"epoch":26162501,"idl":99.91,"recv":0,"send":0,"writ":0.39,"used":570.64,"free":2816.54},{"epoch":26162502,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":570.61,"free":2816.56},{"epoch":26162503,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.6,"free":2816.57},{"epoch":26162504,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.58,"free":2816.62},{"epoch":26162505,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":571.02,"free":2816.2},{"epoch":26162506,"idl":99.78,"recv":0,"send":0,"writ":0.64,"used":571.41,"free":2815.69},{"epoch":26162507,"idl":99.96,"recv":0,"send":0,"writ":0.17,"used":570.87,"free":2816.23},{"epoch":26162508,"idl":99.92,"recv":0,"send":0,"writ":0.43,"used":570.58,"free":2816.5},{"epoch":26162509,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":570.31,"free":2816.76},{"epoch":26162510,"idl":99.86,"recv":0,"send":0,"writ":0.3,"used":571.09,"free":2816},{"epoch":26162511,"idl":99.79,"recv":0,"send":0,"writ":0.57,"used":571.2,"free":2815.89},{"epoch":26162512,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":570.75,"free":2816.33},{"epoch":26162513,"idl":99.9,"recv":0,"send":0,"writ":0.15,"used":570.74,"free":2816.35},{"epoch":26162514,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.72,"free":2816.38},{"epoch":26162515,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":571.03,"free":2816.08},{"epoch":26162516,"idl":99.76,"recv":0,"send":0,"writ":0.52,"used":571.05,"free":2816.05},{"epoch":26162517,"idl":99.9,"recv":0,"send":0,"writ":0.2,"used":570.38,"free":2816.72},{"epoch":26162518,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":570.35,"free":2816.74},{"epoch":26162519,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":570.32,"free":2816.77},{"epoch":26162520,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":570.1,"free":2817.01},{"epoch":26162521,"idl":99.74,"recv":0,"send":0,"writ":0.59,"used":570.4,"free":2816.71},{"epoch":26162522,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":570.04,"free":2817.06},{"epoch":26162523,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":570.01,"free":2817.08},{"epoch":26162524,"idl":99.88,"recv":0,"send":0,"writ":0.16,"used":569.99,"free":2817.1},{"epoch":26162525,"idl":99.85,"recv":0,"send":0,"writ":0.3,"used":570.73,"free":2816.38},{"epoch":26162526,"idl":99.78,"recv":0,"send":0,"writ":0.45,"used":571.02,"free":2816.08},{"epoch":26162527,"idl":99.91,"recv":0,"send":0,"writ":0.28,"used":570.63,"free":2816.46},{"epoch":26162528,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":570.62,"free":2816.48},{"epoch":26162529,"idl":99.77,"recv":0,"send":0,"writ":0.34,"used":570.96,"free":2815.73},{"epoch":26162530,"idl":99.83,"recv":0,"send":0,"writ":0.27,"used":570.71,"free":2815.99},{"epoch":26162531,"idl":99.75,"recv":0,"send":0,"writ":0.42,"used":570.97,"free":2815.73},{"epoch":26162532,"idl":99.88,"recv":0,"send":0,"writ":0.28,"used":569.93,"free":2816.76},{"epoch":26162533,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":569.91,"free":2816.78},{"epoch":26162534,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":569.89,"free":2816.79},{"epoch":26162535,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":570.13,"free":2816.57},{"epoch":26162536,"idl":99.7,"recv":0,"send":0,"writ":0.37,"used":570.44,"free":2816.26},{"epoch":26162537,"idl":99.86,"recv":0,"send":0,"writ":0.38,"used":569.11,"free":2817.58},{"epoch":26162538,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":569.11,"free":2817.58},{"epoch":26162539,"idl":99.83,"recv":0.01,"send":0.01,"writ":0.16,"used":569.14,"free":2817.54},{"epoch":26162540,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":569.51,"free":2817.2},{"epoch":26162541,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":569.49,"free":2817.21},{"epoch":26162542,"idl":99.7,"recv":0,"send":0,"writ":0.6,"used":569.38,"free":2817.31},{"epoch":26162543,"idl":99.84,"recv":0,"send":0,"writ":0.2,"used":568.95,"free":2817.73},{"epoch":26162544,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":568.91,"free":2817.76},{"epoch":26162545,"idl":99.77,"recv":0,"send":0,"writ":0.3,"used":570.13,"free":2816.56},{"epoch":26162546,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.12,"free":2816.56},{"epoch":26162547,"idl":99.68,"recv":0,"send":0,"writ":0.54,"used":569.59,"free":2817.09},{"epoch":26162548,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":569.1,"free":2817.58},{"epoch":26162549,"idl":99.87,"recv":0,"send":0,"writ":0.13,"used":569.09,"free":2817.58},{"epoch":26162550,"idl":99.79,"recv":0,"send":0,"writ":0.34,"used":569.81,"free":2816.87},{"epoch":26162551,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":569.99,"free":2816.69},{"epoch":26162552,"idl":99.72,"recv":0,"send":0,"writ":0.59,"used":570.9,"free":2815.78},{"epoch":26162553,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":570.2,"free":2816.47},{"epoch":26162554,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":570.17,"free":2816.5},{"epoch":26162555,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":569.93,"free":2816.75},{"epoch":26162556,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":569.87,"free":2816.82},{"epoch":26162557,"idl":99.73,"recv":0,"send":0,"writ":0.6,"used":570.38,"free":2816.3},{"epoch":26162558,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":569.93,"free":2816.74},{"epoch":26162559,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":570.16,"free":2816.48},{"epoch":26162560,"idl":99.79,"recv":0,"send":0,"writ":0.3,"used":570.14,"free":2816.53},{"epoch":26162561,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":570.13,"free":2816.53},{"epoch":26162562,"idl":99.71,"recv":0,"send":0,"writ":0.5,"used":569.99,"free":2816.66},{"epoch":26162563,"idl":99.87,"recv":0,"send":0,"writ":0.19,"used":568.86,"free":2817.79},{"epoch":26162564,"idl":99.88,"recv":0,"send":0,"writ":0.13,"used":568.82,"free":2817.82},{"epoch":26162565,"idl":98.58,"recv":0,"send":0,"writ":0.31,"used":570.31,"free":2816.36},{"epoch":26162566,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":570.31,"free":2816.35},{"epoch":26162567,"idl":99.73,"recv":0,"send":0,"writ":0.45,"used":570.43,"free":2816.23},{"epoch":26162568,"idl":99.85,"recv":0,"send":0,"writ":0.23,"used":569.22,"free":2817.44},{"epoch":26162569,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":569.2,"free":2817.45},{"epoch":26162570,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":570.39,"free":2816.28},{"epoch":26162571,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":570.37,"free":2816.29},{"epoch":26162572,"idl":99.72,"recv":0,"send":0,"writ":0.36,"used":570.7,"free":2815.96},{"epoch":26162573,"idl":99.85,"recv":0,"send":0,"writ":0.36,"used":570.33,"free":2816.32},{"epoch":26162574,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":570.31,"free":2816.34},{"epoch":26162575,"idl":99.82,"recv":0,"send":0,"writ":0.31,"used":570.07,"free":2816.6},{"epoch":26162576,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":570.04,"free":2816.62},{"epoch":26162577,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":570.12,"free":2816.53},{"epoch":26162578,"idl":99.71,"recv":0,"send":0,"writ":0.57,"used":570.78,"free":2815.87},{"epoch":26162579,"idl":99.83,"recv":0,"send":0,"writ":0.19,"used":570.26,"free":2816.39},{"epoch":26162580,"idl":99.79,"recv":0,"send":0,"writ":0.29,"used":569.95,"free":2816.71},{"epoch":26162581,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":569.92,"free":2816.74},{"epoch":26162582,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":569.9,"free":2816.75},{"epoch":26162583,"idl":99.73,"recv":0,"send":0,"writ":0.59,"used":570,"free":2816.64},{"epoch":26162584,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":569.37,"free":2817.28},{"epoch":26162585,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":570.57,"free":2816.09},{"epoch":26162586,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.58,"free":2816.08},{"epoch":26162587,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":570.55,"free":2816.1},{"epoch":26162588,"idl":99.73,"recv":0,"send":0,"writ":0.58,"used":570.82,"free":2815.82},{"epoch":26162589,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":570.71,"free":2815.9},{"epoch":26162590,"idl":99.79,"recv":0,"send":0,"writ":0.33,"used":570.48,"free":2816.14},{"epoch":26162591,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":570.44,"free":2816.18},{"epoch":26162592,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":570.42,"free":2816.19},{"epoch":26162593,"idl":99.7,"recv":0,"send":0,"writ":0.42,"used":570.8,"free":2815.81},{"epoch":26162594,"idl":99.85,"recv":0,"send":0,"writ":0.28,"used":570.38,"free":2816.24},{"epoch":26162595,"idl":99.76,"recv":0,"send":0,"writ":0.32,"used":570.62,"free":2816.02},{"epoch":26162596,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":570.61,"free":2816.02},{"epoch":26162597,"idl":99.83,"recv":0,"send":0,"writ":0.2,"used":570.09,"free":2816.54},{"epoch":26162598,"idl":99.72,"recv":0.01,"send":0.01,"writ":0.5,"used":570.6,"free":2816.02},{"epoch":26162599,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.2,"used":569.38,"free":2817.24},{"epoch":26162600,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":570.68,"free":2815.95},{"epoch":26162601,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":570.58,"free":2816.04},{"epoch":26162602,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.57,"free":2816.05},{"epoch":26162603,"idl":99.73,"recv":0,"send":0,"writ":0.4,"used":570.86,"free":2815.76},{"epoch":26162604,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":570.28,"free":2816.33},{"epoch":26162605,"idl":98.71,"recv":0,"send":0,"writ":15.47,"used":571.91,"free":2814.51},{"epoch":26162606,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":569.75,"free":2816.18},{"epoch":26162607,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":569.73,"free":2816.2},{"epoch":26162608,"idl":99.72,"recv":0,"send":0,"writ":0.4,"used":570.16,"free":2815.76},{"epoch":26162609,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":570.18,"free":2815.73},{"epoch":26162610,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":570.66,"free":2815.27},{"epoch":26162611,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":570.65,"free":2815.27},{"epoch":26162612,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":570.62,"free":2815.3},{"epoch":26162613,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":570.61,"free":2815.31},{"epoch":26162614,"idl":99.69,"recv":0,"send":0,"writ":0.57,"used":570.93,"free":2814.98},{"epoch":26162615,"idl":99.78,"recv":0,"send":0,"writ":0.31,"used":570.36,"free":2815.57},{"epoch":26162616,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":570.34,"free":2815.59},{"epoch":26162617,"idl":99.85,"recv":0,"send":0,"writ":0.17,"used":570.46,"free":2815.45},{"epoch":26162618,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":570.43,"free":2815.47},{"epoch":26162619,"idl":99.6,"recv":0,"send":0,"writ":0.75,"used":571.37,"free":2814.51},{"epoch":26162620,"idl":90.86,"recv":3.26,"send":0.01,"writ":119.49,"used":593.83,"free":2868.6},{"epoch":26162621,"idl":93.09,"recv":0.04,"send":0.01,"writ":180.12,"used":587.33,"free":3113.21},{"epoch":26162622,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":575.72,"free":3127.7},{"epoch":26162623,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":575.63,"free":3127.73},{"epoch":26162624,"idl":99.7,"recv":0,"send":0,"writ":0.65,"used":576.1,"free":3127.08},{"epoch":26162625,"idl":99.35,"recv":0,"send":0,"writ":0.4,"used":574.22,"free":3128.71},{"epoch":26162626,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":571.47,"free":3131.54},{"epoch":26162627,"idl":99.85,"recv":0,"send":0,"writ":0.23,"used":570.5,"free":3132.48},{"epoch":26162628,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":570.42,"free":3132.5},{"epoch":26162629,"idl":99.71,"recv":0,"send":0,"writ":0.54,"used":570.82,"free":3132.06},{"epoch":26162630,"idl":99.76,"recv":0,"send":0,"writ":0.34,"used":570.52,"free":3132.31},{"epoch":26162631,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":570.45,"free":3132.32},{"epoch":26162632,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":570.43,"free":3132.29},{"epoch":26162633,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":570.49,"free":3132.17},{"epoch":26162634,"idl":99.7,"recv":0,"send":0,"writ":0.48,"used":570.65,"free":3131.96},{"epoch":26162635,"idl":99.8,"recv":0,"send":0,"writ":0.38,"used":570.87,"free":3131.7},{"epoch":26162636,"idl":99.84,"recv":0,"send":0,"writ":0.18,"used":570.76,"free":3131.73},{"epoch":26162637,"idl":99.83,"recv":0,"send":0,"writ":0.17,"used":570.67,"free":3131.76},{"epoch":26162638,"idl":99.84,"recv":0,"send":0,"writ":0.17,"used":570.59,"free":3131.76},{"epoch":26162639,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":570.62,"free":3131.68},{"epoch":26162640,"idl":99.76,"recv":0,"send":0,"writ":0.36,"used":570.01,"free":3132.25},{"epoch":26162641,"idl":99.86,"recv":0,"send":0,"writ":0.18,"used":570.11,"free":3132.07},{"epoch":26162642,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":570.03,"free":3132.07},{"epoch":26162643,"idl":99.87,"recv":0,"send":0,"writ":0.14,"used":569.93,"free":3132.1},{"epoch":26162644,"idl":99.71,"recv":0,"send":0,"writ":0.41,"used":570.81,"free":3131.15},{"epoch":26162645,"idl":99.8,"recv":0,"send":0,"writ":0.47,"used":570.98,"free":3130.95},{"epoch":26162646,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":570.86,"free":3130.99},{"epoch":26162647,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.78,"free":3131.02},{"epoch":26162648,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.7,"free":3131.03},{"epoch":26162649,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":570.94,"free":3130.57},{"epoch":26162650,"idl":99.59,"recv":0,"send":0,"writ":0.68,"used":570.97,"free":3130.49},{"epoch":26162651,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.54,"free":3130.85},{"epoch":26162652,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":570.45,"free":3130.87},{"epoch":26162653,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.17,"used":570.46,"free":3130.8},{"epoch":26162654,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":570.42,"free":3130.78},{"epoch":26162655,"idl":99.61,"recv":0,"send":0,"writ":0.71,"used":571.39,"free":3129.76},{"epoch":26162656,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":570.99,"free":3130.08},{"epoch":26162657,"idl":99.85,"recv":0,"send":0,"writ":0.2,"used":570.89,"free":3130.11},{"epoch":26162658,"idl":99.87,"recv":0,"send":0,"writ":0.15,"used":570.81,"free":3130.11},{"epoch":26162659,"idl":99.85,"recv":0.01,"send":0.01,"writ":0.13,"used":570.7,"free":3130.14},{"epoch":26162660,"idl":99.64,"recv":0,"send":0,"writ":0.7,"used":571.51,"free":3129.27},{"epoch":26162661,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":571,"free":3129.71},{"epoch":26162662,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":570.92,"free":3129.72},{"epoch":26162663,"idl":99.83,"recv":0,"send":0,"writ":0.14,"used":570.84,"free":3129.74},{"epoch":26162664,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":570.77,"free":3129.75},{"epoch":26162665,"idl":99.65,"recv":0,"send":0,"writ":0.64,"used":571.36,"free":3129.12},{"epoch":26162666,"idl":99.85,"recv":0,"send":0,"writ":0.21,"used":571.11,"free":3129.29},{"epoch":26162667,"idl":99.86,"recv":0,"send":0,"writ":0.17,"used":571.02,"free":3129.32},{"epoch":26162668,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":570.93,"free":3129.34},{"epoch":26162669,"idl":99.84,"recv":0,"send":0,"writ":0.16,"used":570.85,"free":3129.35},{"epoch":26162670,"idl":99.67,"recv":0,"send":0,"writ":0.76,"used":571.15,"free":3129.01},{"epoch":26162671,"idl":99.85,"recv":0,"send":0,"writ":0.18,"used":570.77,"free":3129.33},{"epoch":26162672,"idl":99.85,"recv":0,"send":0,"writ":0.13,"used":570.81,"free":3129.22},{"epoch":26162673,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":570.71,"free":3129.25},{"epoch":26162674,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":570.66,"free":3129.25},{"epoch":26162675,"idl":99.69,"recv":0,"send":0,"writ":0.65,"used":571.42,"free":3128.45},{"epoch":26162676,"idl":99.85,"recv":0,"send":0,"writ":0.19,"used":570.78,"free":3129.03},{"epoch":26162677,"idl":99.86,"recv":0,"send":0,"writ":0.13,"used":570.69,"free":3129.06},{"epoch":26162678,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":570.64,"free":3129.06},{"epoch":26162679,"idl":99.76,"recv":0,"send":0,"writ":0.3,"used":570.78,"free":3128.85},{"epoch":26162680,"idl":99.64,"recv":0,"send":0,"writ":0.72,"used":570.54,"free":3129.03},{"epoch":26162681,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":569.89,"free":3129.6},{"epoch":26162682,"idl":99.86,"recv":0.01,"send":0.03,"writ":0.14,"used":569.79,"free":3129.55},{"epoch":26162683,"idl":99.83,"recv":0,"send":0,"writ":0.18,"used":569.69,"free":3129.52},{"epoch":26162684,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":569.61,"free":3129.54},{"epoch":26162685,"idl":99.67,"recv":0,"send":0,"writ":0.73,"used":570.38,"free":3128.72},{"epoch":26162686,"idl":98.44,"recv":0,"send":0,"writ":0.14,"used":569.95,"free":3129.08},{"epoch":26162687,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":569.85,"free":3129.11},{"epoch":26162688,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":569.8,"free":3129.11},{"epoch":26162689,"idl":99.84,"recv":0,"send":0,"writ":0.14,"used":569.72,"free":3129.12},{"epoch":26162690,"idl":96.55,"recv":0.25,"send":0.01,"writ":64.15,"used":576.9,"free":3121.64},{"epoch":26162691,"idl":98.18,"recv":0,"send":0,"writ":193.01,"used":576.85,"free":3122.64},{"epoch":26162692,"idl":99.86,"recv":0,"send":0,"writ":0.15,"used":572.86,"free":3126.12},{"epoch":26162693,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.88,"free":3126.04},{"epoch":26162694,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":572.81,"free":3126.04},{"epoch":26162695,"idl":99.8,"recv":0,"send":0,"writ":0.29,"used":573.01,"free":3125.81},{"epoch":26162696,"idl":99.72,"recv":0,"send":0,"writ":0.57,"used":570.88,"free":3127.95},{"epoch":26162697,"idl":99.85,"recv":0,"send":0,"writ":0.16,"used":570.27,"free":3128.53},{"epoch":26162698,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":570.22,"free":3128.54},{"epoch":26162699,"idl":99.89,"recv":0,"send":0,"writ":0.19,"used":570.04,"free":3128.65},{"epoch":26162700,"idl":99.79,"recv":0,"send":0,"writ":0.27,"used":570.32,"free":3128.34},{"epoch":26162701,"idl":99.77,"recv":0,"send":0,"writ":0.59,"used":570.97,"free":3127.63},{"epoch":26162702,"idl":99.89,"recv":0,"send":0,"writ":0.14,"used":570.17,"free":3128.37},{"epoch":26162703,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.11,"free":3128.38},{"epoch":26162704,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.05,"free":3128.39},{"epoch":26162705,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":570.41,"free":3128},{"epoch":26162706,"idl":99.82,"recv":0,"send":0,"writ":0.49,"used":570.93,"free":3127.41},{"epoch":26162707,"idl":99.91,"recv":0,"send":0,"writ":0.2,"used":570.72,"free":3127.55},{"epoch":26162708,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":570.63,"free":3127.57},{"epoch":26162709,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":570.07,"free":3128.05},{"epoch":26162710,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":570.48,"free":3127.59},{"epoch":26162711,"idl":99.79,"recv":0,"send":0,"writ":0.44,"used":570.86,"free":3127.14},{"epoch":26162712,"idl":99.93,"recv":0,"send":0,"writ":0.24,"used":570.58,"free":3127.37},{"epoch":26162713,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.48,"free":3127.4},{"epoch":26162714,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.42,"free":3127.37},{"epoch":26162715,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":570.55,"free":3127.19},{"epoch":26162716,"idl":99.8,"recv":0,"send":0,"writ":0.44,"used":570.49,"free":3127.2},{"epoch":26162717,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.36,"used":569.62,"free":3128.01},{"epoch":26162718,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":569.52,"free":3128.06},{"epoch":26162719,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.14,"used":569.48,"free":3128.08},{"epoch":26162720,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":569.44,"free":3128.09},{"epoch":26162721,"idl":99.78,"recv":0,"send":0,"writ":0.55,"used":570.43,"free":3127.06},{"epoch":26162722,"idl":99.95,"recv":0,"send":0,"writ":0.12,"used":570.54,"free":3126.91},{"epoch":26162723,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.5,"free":3126.91},{"epoch":26162724,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.6,"free":3126.76},{"epoch":26162725,"idl":99.86,"recv":0,"send":0,"writ":0.27,"used":570.83,"free":3126.53},{"epoch":26162726,"idl":99.79,"recv":0,"send":0,"writ":0.32,"used":571.18,"free":3126.15},{"epoch":26162727,"idl":99.93,"recv":0,"send":0,"writ":0.43,"used":570.49,"free":3126.79},{"epoch":26162728,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":570.44,"free":3126.82},{"epoch":26162729,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.41,"free":3126.82},{"epoch":26162730,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":570.38,"free":3126.83},{"epoch":26162731,"idl":99.79,"recv":0,"send":0,"writ":0.39,"used":570.71,"free":3126.48},{"epoch":26162732,"idl":99.94,"recv":0,"send":0,"writ":0.35,"used":570.77,"free":3126.38},{"epoch":26162733,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":570.74,"free":3126.39},{"epoch":26162734,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":570.69,"free":3126.42},{"epoch":26162735,"idl":99.88,"recv":0,"send":0,"writ":0.32,"used":569.95,"free":3127.14},{"epoch":26162736,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":570.04,"free":3127.01},{"epoch":26162737,"idl":99.79,"recv":0,"send":0,"writ":0.56,"used":571,"free":3126.01},{"epoch":26162738,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.67,"free":3126.29},{"epoch":26162739,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":570.64,"free":3126.28},{"epoch":26162740,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":570.61,"free":3126.27},{"epoch":26162741,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.52,"free":3126.32},{"epoch":26162742,"idl":99.8,"recv":0,"send":0,"writ":0.58,"used":570.92,"free":3125.87},{"epoch":26162743,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.41,"free":3126.35},{"epoch":26162744,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.36,"free":3126.39},{"epoch":26162745,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":570.33,"free":3126.4},{"epoch":26162746,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.36,"free":3126.32},{"epoch":26162747,"idl":99.75,"recv":0.01,"send":0.06,"writ":0.55,"used":570.83,"free":3125.8},{"epoch":26162748,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":570.44,"free":3126.16},{"epoch":26162749,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.39,"free":3126.18},{"epoch":26162750,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":570.63,"free":3125.92},{"epoch":26162751,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.68,"free":3125.81},{"epoch":26162752,"idl":99.78,"recv":0,"send":0,"writ":0.49,"used":570.42,"free":3126},{"epoch":26162753,"idl":99.94,"recv":0,"send":0,"writ":0.19,"used":569.56,"free":3126.82},{"epoch":26162754,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":569.52,"free":3126.82},{"epoch":26162755,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":569.96,"free":3126.37},{"epoch":26162756,"idl":99.92,"recv":0,"send":0,"writ":0.19,"used":569.92,"free":3126.36},{"epoch":26162757,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":570.73,"free":3125.5},{"epoch":26162758,"idl":99.91,"recv":0,"send":0,"writ":0.28,"used":570.76,"free":3125.42},{"epoch":26162759,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":570.45,"free":3125.7},{"epoch":26162760,"idl":99.87,"recv":0,"send":0,"writ":0.29,"used":568.99,"free":3127.15},{"epoch":26162761,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":568.93,"free":3127.19},{"epoch":26162762,"idl":99.8,"recv":0,"send":0,"writ":0.4,"used":569.53,"free":3126.52},{"epoch":26162763,"idl":99.93,"recv":0,"send":0,"writ":0.27,"used":569.46,"free":3126.55},{"epoch":26162764,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":569.43,"free":3126.56},{"epoch":26162765,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":570.87,"free":3125.13},{"epoch":26162766,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":570.84,"free":3125.12},{"epoch":26162767,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":571.13,"free":3124.79},{"epoch":26162768,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.71,"free":3125.16},{"epoch":26162769,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":570.68,"free":3125.14},{"epoch":26162770,"idl":99.9,"recv":0,"send":0,"writ":0.28,"used":570.88,"free":3124.93},{"epoch":26162771,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.15,"used":570.9,"free":3124.88},{"epoch":26162772,"idl":99.82,"recv":0,"send":0,"writ":0.32,"used":571.44,"free":3124.31},{"epoch":26162773,"idl":99.91,"recv":0,"send":0,"writ":0.4,"used":570.82,"free":3124.9},{"epoch":26162774,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":570.81,"free":3124.9},{"epoch":26162775,"idl":99.91,"recv":0,"send":0,"writ":0.3,"used":570.28,"free":3125.41},{"epoch":26162776,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":570.24,"free":3125.42},{"epoch":26162777,"idl":99.92,"recv":0,"send":0,"writ":0.18,"used":570.17,"free":3125.45},{"epoch":26162778,"idl":99.75,"recv":0,"send":0,"writ":0.56,"used":571.14,"free":3124.43},{"epoch":26162779,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.16,"used":571.03,"free":3124.52},{"epoch":26162780,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":570.76,"free":3124.78},{"epoch":26162781,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":570.71,"free":3124.8},{"epoch":26162782,"idl":99.93,"recv":0,"send":0.02,"writ":0.17,"used":570.61,"free":3124.84},{"epoch":26162783,"idl":99.82,"recv":0,"send":0,"writ":0.57,"used":571.49,"free":3123.92},{"epoch":26162784,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":571.23,"free":3124.16},{"epoch":26162785,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":570.51,"free":3124.88},{"epoch":26162786,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":570.46,"free":3124.93},{"epoch":26162787,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.42,"free":3124.93},{"epoch":26162788,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":571.48,"free":3123.81},{"epoch":26162789,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.96,"free":3124.28},{"epoch":26162790,"idl":99.82,"recv":0,"send":0,"writ":0.28,"used":569.77,"free":3125.43},{"epoch":26162791,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":569.6,"free":3125.56},{"epoch":26162792,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":569.54,"free":3125.58},{"epoch":26162793,"idl":99.81,"recv":0,"send":0,"writ":0.49,"used":570.81,"free":3124.29},{"epoch":26162794,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":571.18,"free":3123.89},{"epoch":26162795,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":570.67,"free":3124.38},{"epoch":26162796,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.6,"free":3124.41},{"epoch":26162797,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.55,"free":3124.43},{"epoch":26162798,"idl":99.83,"recv":0,"send":0,"writ":0.4,"used":570.95,"free":3124.02},{"epoch":26162799,"idl":99.8,"recv":0,"send":0,"writ":0.44,"used":570.87,"free":3124.05},{"epoch":26162800,"idl":99.83,"recv":0,"send":0,"writ":0.28,"used":570.88,"free":3124.03},{"epoch":26162801,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.82,"free":3124.05},{"epoch":26162802,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.79,"free":3124.07},{"epoch":26162803,"idl":99.77,"recv":0,"send":0,"writ":0.49,"used":570.95,"free":3123.89},{"epoch":26162804,"idl":99.95,"recv":0,"send":0,"writ":0.25,"used":569.73,"free":3125.08},{"epoch":26162805,"idl":99.86,"recv":0,"send":0,"writ":0.33,"used":570.41,"free":3124.38},{"epoch":26162806,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.35,"free":3124.39},{"epoch":26162807,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.29,"free":3124.39},{"epoch":26162808,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":570.23,"free":3124.42},{"epoch":26162809,"idl":99.81,"recv":0,"send":0,"writ":0.53,"used":571.91,"free":3122.7},{"epoch":26162810,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":571.13,"free":3123.44},{"epoch":26162811,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":571.23,"free":3123.32},{"epoch":26162812,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.19,"free":3123.31},{"epoch":26162813,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":571.14,"free":3123.32},{"epoch":26162814,"idl":99.79,"recv":0,"send":0,"writ":0.54,"used":570.84,"free":3123.58},{"epoch":26162815,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":570.81,"free":3123.6},{"epoch":26162816,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.78,"free":3123.6},{"epoch":26162817,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.74,"free":3123.63},{"epoch":26162818,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.71,"free":3123.63},{"epoch":26162819,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":570.97,"free":3123.35},{"epoch":26162820,"idl":99.89,"recv":0,"send":0,"writ":0.28,"used":570.65,"free":3123.67},{"epoch":26162821,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":570.61,"free":3123.69},{"epoch":26162822,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":570.58,"free":3123.7},{"epoch":26162823,"idl":99.95,"recv":0,"send":0,"writ":0.17,"used":570.61,"free":3123.66},{"epoch":26162824,"idl":99.79,"recv":0,"send":0,"writ":0.55,"used":571.47,"free":3122.79},{"epoch":26162825,"idl":99.89,"recv":0,"send":0,"writ":0.3,"used":570.72,"free":3123.56},{"epoch":26162826,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.66,"free":3123.59},{"epoch":26162827,"idl":99.96,"recv":0,"send":0,"writ":0.16,"used":570.65,"free":3123.59},{"epoch":26162828,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.15,"used":570.6,"free":3123.64},{"epoch":26162829,"idl":99.71,"recv":0,"send":0,"writ":0.64,"used":570.89,"free":3123.32},{"epoch":26162830,"idl":99.91,"recv":0,"send":0,"writ":0.33,"used":570.1,"free":3124.12},{"epoch":26162831,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.01,"free":3124.18},{"epoch":26162832,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.04,"free":3124.14},{"epoch":26162833,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.12,"free":3124.04},{"epoch":26162834,"idl":99.81,"recv":0,"send":0,"writ":0.56,"used":570.57,"free":3123.6},{"epoch":26162835,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":570.1,"free":3124.08},{"epoch":26162836,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.06,"free":3124.09},{"epoch":26162837,"idl":99.88,"recv":0,"send":0,"writ":0.2,"used":570.01,"free":3124.13},{"epoch":26162838,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":569.98,"free":3124.15},{"epoch":26162839,"idl":99.81,"recv":0.01,"send":0.01,"writ":0.5,"used":570.66,"free":3123.46},{"epoch":26162840,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":570.19,"free":3123.95},{"epoch":26162841,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":570.14,"free":3123.97},{"epoch":26162842,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.18,"free":3123.91},{"epoch":26162843,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.26,"free":3123.81},{"epoch":26162844,"idl":99.79,"recv":0,"send":0,"writ":0.4,"used":570.59,"free":3123.46},{"epoch":26162845,"idl":99.87,"recv":0,"send":0,"writ":0.46,"used":570.47,"free":3123.58},{"epoch":26162846,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.39,"free":3123.63},{"epoch":26162847,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":570.35,"free":3123.66},{"epoch":26162848,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":570.32,"free":3123.69},{"epoch":26162849,"idl":99.8,"recv":0,"send":0,"writ":0.39,"used":570.66,"free":3123.34},{"epoch":26162850,"idl":99.86,"recv":0,"send":0,"writ":0.44,"used":569.33,"free":3124.67},{"epoch":26162851,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":569.28,"free":3124.71},{"epoch":26162852,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":569.24,"free":3124.74},{"epoch":26162853,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":569.24,"free":3124.73},{"epoch":26162854,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.39,"free":3124.55},{"epoch":26162855,"idl":99.74,"recv":0,"send":0,"writ":0.77,"used":571.04,"free":3122.89},{"epoch":26162856,"idl":99.92,"recv":0,"send":0,"writ":0.12,"used":570.32,"free":3123.6},{"epoch":26162857,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.28,"free":3123.62},{"epoch":26162858,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":570.26,"free":3123.63},{"epoch":26162859,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":570.22,"free":3123.62},{"epoch":26162860,"idl":99.71,"recv":0,"send":0,"writ":0.66,"used":570.62,"free":3123.23},{"epoch":26162861,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":570.16,"free":3123.68},{"epoch":26162862,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.14,"free":3123.68},{"epoch":26162863,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":570.1,"free":3123.69},{"epoch":26162864,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.06,"free":3123.71},{"epoch":26162865,"idl":99.75,"recv":0,"send":0,"writ":0.68,"used":571.01,"free":3122.76},{"epoch":26162866,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":570.68,"free":3123.06},{"epoch":26162867,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.63,"free":3123.09},{"epoch":26162868,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.6,"free":3123.09},{"epoch":26162869,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.53,"free":3123.13},{"epoch":26162870,"idl":99.78,"recv":0,"send":0,"writ":0.73,"used":570.73,"free":3122.92},{"epoch":26162871,"idl":99.93,"recv":0,"send":0,"writ":0.12,"used":570.23,"free":3123.4},{"epoch":26162872,"idl":99.95,"recv":0,"send":0,"writ":0.14,"used":570.2,"free":3123.41},{"epoch":26162873,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.16,"free":3123.43},{"epoch":26162874,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.13,"free":3123.44},{"epoch":26162875,"idl":99.77,"recv":0,"send":0,"writ":0.72,"used":570.49,"free":3123.09},{"epoch":26162876,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":569.61,"free":3123.96},{"epoch":26162877,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":569.74,"free":3123.8},{"epoch":26162878,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":569.71,"free":3123.81},{"epoch":26162879,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":569.77,"free":3123.73},{"epoch":26162880,"idl":99.75,"recv":0,"send":0,"writ":0.71,"used":570.65,"free":3122.85},{"epoch":26162881,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.84,"free":3122.65},{"epoch":26162882,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.82,"free":3122.65},{"epoch":26162883,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.77,"free":3122.68},{"epoch":26162884,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.73,"free":3122.69},{"epoch":26162885,"idl":99.73,"recv":0,"send":0,"writ":0.64,"used":571,"free":3122.41},{"epoch":26162886,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":570.43,"free":3122.97},{"epoch":26162887,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.39,"free":3122.99},{"epoch":26162888,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.33,"free":3123.02},{"epoch":26162889,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":570.23,"free":3123.07},{"epoch":26162890,"idl":99.77,"recv":0,"send":0,"writ":0.55,"used":571.19,"free":3122.09},{"epoch":26162891,"idl":99.94,"recv":0,"send":0,"writ":0.3,"used":570.64,"free":3122.6},{"epoch":26162892,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.6,"free":3122.63},{"epoch":26162893,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.57,"free":3122.63},{"epoch":26162894,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":570.52,"free":3122.66},{"epoch":26162895,"idl":99.86,"recv":0,"send":0,"writ":0.39,"used":570.57,"free":3122.61},{"epoch":26162896,"idl":99.81,"recv":0,"send":0,"writ":0.6,"used":570.8,"free":3122.34},{"epoch":26162897,"idl":99.93,"recv":0,"send":0,"writ":0.22,"used":570.43,"free":3122.7},{"epoch":26162898,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":570.41,"free":3122.7},{"epoch":26162899,"idl":99.92,"recv":0.01,"send":0.02,"writ":0.23,"used":570.42,"free":3122.69},{"epoch":26162900,"idl":99.84,"recv":0,"send":0,"writ":0.34,"used":569.71,"free":3123.39},{"epoch":26162901,"idl":99.83,"recv":0,"send":0,"writ":0.59,"used":570.36,"free":3122.72},{"epoch":26162902,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":570.13,"free":3122.94},{"epoch":26162903,"idl":99.94,"recv":0,"send":0,"writ":0.18,"used":570.09,"free":3122.97},{"epoch":26162904,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":570.08,"free":3122.97},{"epoch":26162905,"idl":99.86,"recv":0,"send":0,"writ":0.34,"used":570.77,"free":3122.29},{"epoch":26162906,"idl":99.82,"recv":0,"send":0,"writ":0.54,"used":570.3,"free":3122.73},{"epoch":26162907,"idl":99.77,"recv":0,"send":0,"writ":0.14,"used":569.67,"free":3123.34},{"epoch":26162908,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.64,"free":3123.34},{"epoch":26162909,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":569.59,"free":3123.37},{"epoch":26162910,"idl":99.92,"recv":0,"send":0,"writ":0.27,"used":571.01,"free":3121.93},{"epoch":26162911,"idl":99.81,"recv":0,"send":0,"writ":0.61,"used":570.95,"free":3121.98},{"epoch":26162912,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.23,"free":3122.67},{"epoch":26162913,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":570.19,"free":3122.7},{"epoch":26162914,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.17,"free":3122.71},{"epoch":26162915,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":570.63,"free":3122.24},{"epoch":26162916,"idl":99.81,"recv":0,"send":0,"writ":0.55,"used":570.57,"free":3122.26},{"epoch":26162917,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":569.55,"free":3123.25},{"epoch":26162918,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":569.63,"free":3123.16},{"epoch":26162919,"idl":99.9,"recv":0,"send":0,"writ":0.31,"used":570.43,"free":3122.33},{"epoch":26162920,"idl":99.9,"recv":0,"send":0,"writ":0.3,"used":570.41,"free":3122.36},{"epoch":26162921,"idl":99.82,"recv":0,"send":0,"writ":0.51,"used":570.84,"free":3121.91},{"epoch":26162922,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":570.84,"free":3121.91},{"epoch":26162923,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.81,"free":3121.92},{"epoch":26162924,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.77,"free":3121.94},{"epoch":26162925,"idl":99.89,"recv":0,"send":0,"writ":0.33,"used":570.24,"free":3122.47},{"epoch":26162926,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":570.67,"free":3122.01},{"epoch":26162927,"idl":99.93,"recv":0,"send":0,"writ":0.44,"used":570.19,"free":3122.48},{"epoch":26162928,"idl":99.51,"recv":0,"send":0,"writ":0.2,"used":570.16,"free":3122.5},{"epoch":26162929,"idl":99.93,"recv":0,"send":0,"writ":0.2,"used":570.21,"free":3122.43},{"epoch":26162930,"idl":99.87,"recv":0,"send":0,"writ":0.31,"used":570.59,"free":3122.06},{"epoch":26162931,"idl":99.8,"recv":0,"send":0,"writ":0.34,"used":570.91,"free":3121.73},{"epoch":26162932,"idl":99.9,"recv":0,"send":0,"writ":0.42,"used":570.54,"free":3122.09},{"epoch":26162933,"idl":99.92,"recv":0,"send":0,"writ":0.17,"used":570.52,"free":3122.1},{"epoch":26162934,"idl":99.95,"recv":0,"send":0,"writ":0.18,"used":570.49,"free":3122.13},{"epoch":26162935,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":571,"free":3121.64},{"epoch":26162936,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.95,"free":3121.66},{"epoch":26162937,"idl":99.78,"recv":0,"send":0,"writ":0.59,"used":571.3,"free":3121.31},{"epoch":26162938,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.91,"free":3121.7},{"epoch":26162939,"idl":99.91,"recv":0.03,"send":0,"writ":0.18,"used":570.72,"free":3121.89},{"epoch":26162940,"idl":99.85,"recv":0,"send":0,"writ":0.29,"used":570.48,"free":3122.13},{"epoch":26162941,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.43,"free":3122.17},{"epoch":26162942,"idl":99.8,"recv":0,"send":0,"writ":0.55,"used":570.55,"free":3122.05},{"epoch":26162943,"idl":99.95,"recv":0,"send":0,"writ":0.16,"used":570.11,"free":3122.48},{"epoch":26162944,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":570.1,"free":3122.48},{"epoch":26162945,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":570.63,"free":3121.96},{"epoch":26162946,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":570.74,"free":3121.84},{"epoch":26162947,"idl":99.78,"recv":0,"send":0,"writ":0.51,"used":571.19,"free":3121.37},{"epoch":26162948,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":570.94,"free":3121.62},{"epoch":26162949,"idl":99.89,"recv":0,"send":0,"writ":0.37,"used":570.89,"free":3121.63},{"epoch":26162950,"idl":99.88,"recv":0,"send":0,"writ":0.31,"used":571.19,"free":3121.34},{"epoch":26162951,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":571.09,"free":3121.42},{"epoch":26162952,"idl":99.8,"recv":0,"send":0,"writ":0.41,"used":571.38,"free":3121.12},{"epoch":26162953,"idl":99.94,"recv":0,"send":0,"writ":0.29,"used":570.55,"free":3121.94},{"epoch":26162954,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":570.51,"free":3121.97},{"epoch":26162955,"idl":99.83,"recv":0,"send":0,"writ":0.3,"used":569.1,"free":3123.4},{"epoch":26162956,"idl":99.94,"recv":0,"send":0,"writ":0.15,"used":569.07,"free":3123.42},{"epoch":26162957,"idl":99.8,"recv":0,"send":0,"writ":0.44,"used":569.87,"free":3122.61},{"epoch":26162958,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":569.64,"free":3122.83},{"epoch":26162959,"idl":99.91,"recv":0.01,"send":0.01,"writ":0.14,"used":569.61,"free":3122.84},{"epoch":26162960,"idl":99.84,"recv":0,"send":0,"writ":0.29,"used":570.32,"free":3122.15},{"epoch":26162961,"idl":99.93,"recv":0.01,"send":0.01,"writ":0.16,"used":570.3,"free":3122.16},{"epoch":26162962,"idl":99.81,"recv":0,"send":0,"writ":0.41,"used":570.61,"free":3121.83},{"epoch":26162963,"idl":99.93,"recv":0,"send":0,"writ":0.29,"used":570.5,"free":3121.95},{"epoch":26162964,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":570.57,"free":3121.88},{"epoch":26162965,"idl":99.9,"recv":0,"send":0,"writ":0.34,"used":570.57,"free":3121.88},{"epoch":26162966,"idl":99.94,"recv":0,"send":0,"writ":0.13,"used":570.53,"free":3121.91},{"epoch":26162967,"idl":99.68,"recv":0,"send":0,"writ":0.3,"used":571.16,"free":3121.27},{"epoch":26162968,"idl":99.9,"recv":0,"send":0,"writ":0.39,"used":570.22,"free":3122.2},{"epoch":26162969,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.2,"free":3122.21},{"epoch":26162970,"idl":99.9,"recv":0,"send":0,"writ":0.29,"used":571.18,"free":3121.25},{"epoch":26162971,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":571.15,"free":3121.27},{"epoch":26162972,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":571.12,"free":3121.28},{"epoch":26162973,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":571.04,"free":3121.34},{"epoch":26162974,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.76,"free":3121.61},{"epoch":26162975,"idl":99.87,"recv":0,"send":0,"writ":0.35,"used":571,"free":3121.39},{"epoch":26162976,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":570.99,"free":3121.4},{"epoch":26162977,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":570.94,"free":3121.42},{"epoch":26162978,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":570.61,"free":3121.73},{"epoch":26162979,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":570.73,"free":3121.44},{"epoch":26162980,"idl":99.88,"recv":0,"send":0,"writ":0.36,"used":570.23,"free":3121.95},{"epoch":26162981,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":570.21,"free":3121.96},{"epoch":26162982,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":570.16,"free":3121.99},{"epoch":26162983,"idl":99.78,"recv":0,"send":0,"writ":0.57,"used":570.64,"free":3121.5},{"epoch":26162984,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":570.34,"free":3121.77},{"epoch":26162985,"idl":99.83,"recv":0.03,"send":0.02,"writ":0.36,"used":570,"free":3122.13},{"epoch":26162986,"idl":99.87,"recv":0.05,"send":0.03,"writ":0.15,"used":569.96,"free":3122.18},{"epoch":26162987,"idl":99.88,"recv":0.05,"send":0.03,"writ":0.17,"used":569.93,"free":3122.2},{"epoch":26162988,"idl":98.65,"recv":0.04,"send":0.02,"writ":0.38,"used":570.24,"free":3121.85},{"epoch":26162989,"idl":99.07,"recv":0.04,"send":0.02,"writ":0.33,"used":569.9,"free":3122.16},{"epoch":26162990,"idl":99.83,"recv":0.04,"send":0.02,"writ":0.33,"used":569.64,"free":3122.42},{"epoch":26162991,"idl":99.91,"recv":0.05,"send":0.03,"writ":0.14,"used":569.62,"free":3122.43},{"epoch":26162992,"idl":99.92,"recv":0.02,"send":0.02,"writ":0.16,"used":569.64,"free":3122.4},{"epoch":26162993,"idl":99.82,"recv":0,"send":0,"writ":0.59,"used":569.74,"free":3122.3},{"epoch":26162994,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":568.86,"free":3123.17},{"epoch":26162995,"idl":99.84,"recv":0,"send":0,"writ":0.36,"used":569.11,"free":3122.94},{"epoch":26162996,"idl":99.9,"recv":0,"send":0,"writ":0.18,"used":569.06,"free":3122.99},{"epoch":26162997,"idl":99.91,"recv":0,"send":0,"writ":0.18,"used":569.04,"free":3122.99},{"epoch":26162998,"idl":99.78,"recv":0,"send":0,"writ":0.43,"used":569.96,"free":3122.06},{"epoch":26162999,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":569.98,"free":3122.03},{"epoch":26163000,"idl":99.82,"recv":0,"send":0,"writ":0.29,"used":570.16,"free":3121.85},{"epoch":26163001,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":570.14,"free":3121.85},{"epoch":26163002,"idl":99.82,"recv":0.02,"send":0.04,"writ":0.25,"used":570.52,"free":3121.43},{"epoch":26163003,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":573.56,"free":3118.26},{"epoch":26163004,"idl":99.87,"recv":0,"send":0,"writ":0.57,"used":575.69,"free":3116.12},{"epoch":26163005,"idl":99.89,"recv":0,"send":0,"writ":0.31,"used":575.56,"free":3116.26},{"epoch":26163006,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":575.55,"free":3116.27},{"epoch":26163007,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":575.51,"free":3116.3},{"epoch":26163008,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":575.46,"free":3116.32},{"epoch":26163009,"idl":99.65,"recv":0.02,"send":0.1,"writ":1.29,"used":576.32,"free":3115.18},{"epoch":26163010,"idl":99.87,"recv":0,"send":0,"writ":0.33,"used":580.5,"free":3110.11},{"epoch":26163011,"idl":99.92,"recv":0,"send":0,"writ":0.13,"used":580.53,"free":3110.07},{"epoch":26163012,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":580.65,"free":3109.93},{"epoch":26163013,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.56,"free":3110.02},{"epoch":26163014,"idl":99.81,"recv":0,"send":0,"writ":0.59,"used":580.91,"free":3109.68},{"epoch":26163015,"idl":99.88,"recv":0,"send":0,"writ":0.29,"used":580.58,"free":3110.02},{"epoch":26163016,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":580.53,"free":3110.05},{"epoch":26163017,"idl":99.94,"recv":0,"send":0,"writ":0.2,"used":580.5,"free":3110.08},{"epoch":26163018,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.49,"free":3110.09},{"epoch":26163019,"idl":99.79,"recv":0.01,"send":0.01,"writ":0.57,"used":581.13,"free":3109.44},{"epoch":26163020,"idl":99.88,"recv":0,"send":0,"writ":0.3,"used":580.6,"free":3109.98},{"epoch":26163021,"idl":99.9,"recv":0,"send":0,"writ":0.17,"used":580.55,"free":3110.02},{"epoch":26163022,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":580.52,"free":3110.05},{"epoch":26163023,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":580.48,"free":3110.08},{"epoch":26163024,"idl":99.8,"recv":0,"send":0,"writ":0.54,"used":580.94,"free":3109.61},{"epoch":26163025,"idl":99.88,"recv":0,"send":0,"writ":0.38,"used":580.87,"free":3109.7},{"epoch":26163026,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.82,"free":3109.74},{"epoch":26163027,"idl":99.94,"recv":0,"send":0,"writ":0.16,"used":580.77,"free":3109.77},{"epoch":26163028,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":580.74,"free":3109.8},{"epoch":26163029,"idl":99.8,"recv":0,"send":0,"writ":0.57,"used":581.36,"free":3109.16},{"epoch":26163030,"idl":99.9,"recv":0,"send":0,"writ":0.32,"used":580.96,"free":3109.59},{"epoch":26163031,"idl":99.93,"recv":0,"send":0,"writ":0.13,"used":580.99,"free":3109.55},{"epoch":26163032,"idl":99.93,"recv":0,"send":0,"writ":0.17,"used":581.07,"free":3109.46},{"epoch":26163033,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.03,"free":3109.49},{"epoch":26163034,"idl":99.79,"recv":0,"send":0,"writ":0.59,"used":581.31,"free":3109.21},{"epoch":26163035,"idl":99.87,"recv":0,"send":0,"writ":0.3,"used":580.48,"free":3110.04},{"epoch":26163036,"idl":99.93,"recv":0,"send":0,"writ":0.19,"used":580.43,"free":3110.07},{"epoch":26163037,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":580.4,"free":3110.1},{"epoch":26163038,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":580.57,"free":3109.92},{"epoch":26163039,"idl":99.66,"recv":0,"send":0,"writ":0.56,"used":581.38,"free":3109.08},{"epoch":26163040,"idl":99.83,"recv":0,"send":0,"writ":0.44,"used":580.53,"free":3109.94},{"epoch":26163041,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":580.48,"free":3109.98},{"epoch":26163042,"idl":99.92,"recv":0,"send":0,"writ":0.16,"used":580.43,"free":3110.01},{"epoch":26163043,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":580.39,"free":3110.04},{"epoch":26163044,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":580.37,"free":3110.07},{"epoch":26163045,"idl":99.6,"recv":0,"send":0,"writ":0.7,"used":580.77,"free":3109.67},{"epoch":26163046,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":579.98,"free":3110.45},{"epoch":26163047,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":579.95,"free":3110.48},{"epoch":26163048,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":579.9,"free":3110.51},{"epoch":26163049,"idl":99.93,"recv":0,"send":0,"writ":0.18,"used":579.86,"free":3110.54},{"epoch":26163050,"idl":99.7,"recv":0,"send":0,"writ":0.7,"used":581.67,"free":3108.74},{"epoch":26163051,"idl":99.94,"recv":0,"send":0,"writ":0.17,"used":581.07,"free":3109.33},{"epoch":26163052,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":581.2,"free":3109.19},{"epoch":26163053,"idl":99.95,"recv":0,"send":0,"writ":0.15,"used":581.16,"free":3109.23},{"epoch":26163054,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":581.11,"free":3109.26},{"epoch":26163055,"idl":94.9,"recv":0.27,"send":0.01,"writ":193.77,"used":594.2,"free":3096.83},{"epoch":26163056,"idl":99.88,"recv":0,"send":0,"writ":63.66,"used":582.46,"free":3107.73},{"epoch":26163057,"idl":99.92,"recv":0,"send":0,"writ":0.14,"used":582.41,"free":3107.75},{"epoch":26163058,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":582.36,"free":3107.78},{"epoch":26163059,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":582.31,"free":3107.82},{"epoch":26163060,"idl":99.64,"recv":0,"send":0,"writ":0.73,"used":581.8,"free":3108.37},{"epoch":26163061,"idl":99.94,"recv":0,"send":0,"writ":0.14,"used":580.57,"free":3109.63},{"epoch":26163062,"idl":99.93,"recv":0,"send":0.01,"writ":0.16,"used":580.53,"free":3109.66},{"epoch":26163063,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.48,"free":3109.7},{"epoch":26163064,"idl":99.93,"recv":0,"send":0,"writ":0.15,"used":580.44,"free":3109.73},{"epoch":26163065,"idl":99.75,"recv":0,"send":0,"writ":0.57,"used":581.13,"free":3109.06},{"epoch":26163066,"idl":99.93,"recv":0,"send":0,"writ":0.34,"used":581.05,"free":3109.16},{"epoch":26163067,"idl":99.9,"recv":0,"send":0,"writ":0.14,"used":581.01,"free":3109.17},{"epoch":26163068,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.96,"free":3109.2},{"epoch":26163069,"idl":99.88,"recv":0,"send":0.01,"writ":0.31,"used":580.92,"free":3109.22},{"epoch":26163070,"idl":99.75,"recv":0,"send":0,"writ":0.7,"used":581.08,"free":3109.07},{"epoch":26163071,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":580.87,"free":3109.27},{"epoch":26163072,"idl":99.93,"recv":0,"send":0,"writ":0.14,"used":580.85,"free":3109.28},{"epoch":26163073,"idl":99.91,"recv":0,"send":0,"writ":0.16,"used":581,"free":3109.13},{"epoch":26163074,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":580.97,"free":3109.16},{"epoch":26163075,"idl":99.7,"recv":0,"send":0,"writ":0.57,"used":581.31,"free":3108.83},{"epoch":26163076,"idl":99.92,"recv":0,"send":0,"writ":0.3,"used":580.91,"free":3109.21},{"epoch":26163077,"idl":99.91,"recv":0,"send":0,"writ":0.17,"used":580.87,"free":3109.25},{"epoch":26163078,"idl":99.93,"recv":0,"send":0,"writ":0.16,"used":580.84,"free":3109.28},{"epoch":26163079,"idl":99.9,"recv":0.01,"send":0.01,"writ":0.15,"used":580.82,"free":3109.28},{"epoch":26163080,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":581.21,"free":3108.91},{"epoch":26163081,"idl":99.76,"recv":0,"send":0,"writ":0.54,"used":581.39,"free":3108.73},{"epoch":26163082,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":580.9,"free":3109.21},{"epoch":26163083,"idl":99.91,"recv":0,"send":0,"writ":0.15,"used":580.85,"free":3109.24},{"epoch":26163084,"idl":99.92,"recv":0,"send":0,"writ":0.15,"used":580.83,"free":3109.26},{"epoch":26163085,"idl":99.81,"recv":0,"send":0,"writ":0.32,"used":580.81,"free":3109.29},{"epoch":26163086,"idl":99.77,"recv":0,"send":0,"writ":0.54,"used":581.38,"free":3108.71},{"epoch":26163087,"idl":99.88,"recv":0,"send":0,"writ":0.14,"used":581.16,"free":3108.92},{"epoch":26163088,"idl":99.91,"recv":0,"send":0,"writ":0.14,"used":581.12,"free":3108.95},{"epoch":26163089,"idl":99.9,"recv":0,"send":0,"writ":0.16,"used":581.09,"free":3108.97},{"epoch":26163090,"idl":99.78,"recv":0,"send":0,"writ":0.3,"used":580.95,"free":3109},{"epoch":26163091,"idl":99.76,"recv":0,"send":0,"writ":0.55,"used":581.42,"free":3108.53},{"epoch":26163092,"idl":99.85,"recv":0,"send":0,"writ":0.14,"used":581.14,"free":3108.81},{"epoch":26163093,"idl":99.84,"recv":0,"send":0,"writ":0.15,"used":581.31,"free":3108.63},{"epoch":26163094,"idl":99.84,"recv":0.01,"send":0.01,"writ":0.2,"used":581.2,"free":3108.72},{"epoch":26163095,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":581.25,"free":3108.68},{"epoch":26163096,"idl":99.7,"recv":0,"send":0,"writ":0.54,"used":581.63,"free":3108.3},{"epoch":26163097,"idl":99.83,"recv":0,"send":0,"writ":0.16,"used":581.26,"free":3108.66},{"epoch":26163098,"idl":99.86,"recv":0,"send":0,"writ":0.14,"used":581.22,"free":3108.68},{"epoch":26163099,"idl":99.78,"recv":0,"send":0,"writ":0.32,"used":581.17,"free":3108.71},{"epoch":26163100,"idl":99.81,"recv":0,"send":0,"writ":0.3,"used":579.97,"free":3109.92},{"epoch":26163101,"idl":99.74,"recv":0,"send":0,"writ":0.4,"used":581.18,"free":3108.71},{"epoch":26163102,"idl":99.87,"recv":0,"send":0,"writ":0.28,"used":581.12,"free":3108.76},{"epoch":26163103,"idl":99.87,"recv":0,"send":0,"writ":0.16,"used":581.25,"free":3108.62},{"epoch":26163104,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":581.2,"free":3108.65},{"epoch":26163105,"idl":99.8,"recv":0,"send":0,"writ":0.32,"used":581.43,"free":3108.45},{"epoch":26163106,"idl":99.69,"recv":0,"send":0,"writ":0.5,"used":581.88,"free":3107.99},{"epoch":26163107,"idl":99.84,"recv":0,"send":0,"writ":0.19,"used":581.35,"free":3108.51},{"epoch":26163108,"idl":99.86,"recv":0,"send":0,"writ":0.16,"used":581.32,"free":3108.54},{"epoch":26163109,"idl":99.85,"recv":0,"send":0,"writ":0.15,"used":581.31,"free":3108.55}] \ No newline at end of file diff --git a/docs/static/data/examples/cars.csv b/docs/static/data/examples/cars.csv new file mode 100644 index 000000000..ad39c4d4f --- /dev/null +++ b/docs/static/data/examples/cars.csv @@ -0,0 +1,11915 @@ +make,model,year,engine_fuel_Type,engine_hp,engine_cylinders,transmission_type,driven_wheels,number_of_doors,market_category,vehicle_size,vehicle_style,highway_mpg,city_mpg,popularity,msrp +BMW,1 Series M,2011,premium unleaded (required),335,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,26,19,3916,46135 +BMW,1 Series,2011,premium unleaded (required),300,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,28,19,3916,40650 +BMW,1 Series,2011,premium unleaded (required),300,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,20,3916,36350 +BMW,1 Series,2011,premium unleaded (required),230,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,28,18,3916,29450 +BMW,1 Series,2011,premium unleaded (required),230,6,MANUAL,rear wheel drive,2,Luxury,Compact,Convertible,28,18,3916,34500 +BMW,1 Series,2012,premium unleaded (required),230,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,28,18,3916,31200 +BMW,1 Series,2012,premium unleaded (required),300,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,26,17,3916,44100 +BMW,1 Series,2012,premium unleaded (required),300,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,20,3916,39300 +BMW,1 Series,2012,premium unleaded (required),230,6,MANUAL,rear wheel drive,2,Luxury,Compact,Convertible,28,18,3916,36900 +BMW,1 Series,2013,premium unleaded (required),230,6,MANUAL,rear wheel drive,2,Luxury,Compact,Convertible,27,18,3916,37200 +BMW,1 Series,2013,premium unleaded (required),300,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,20,3916,39600 +BMW,1 Series,2013,premium unleaded (required),230,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,28,19,3916,31500 +BMW,1 Series,2013,premium unleaded (required),300,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,28,19,3916,44400 +BMW,1 Series,2013,premium unleaded (required),230,6,MANUAL,rear wheel drive,2,Luxury,Compact,Convertible,28,19,3916,37200 +BMW,1 Series,2013,premium unleaded (required),230,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,28,19,3916,31500 +BMW,1 Series,2013,premium unleaded (required),320,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,25,18,3916,48250 +BMW,1 Series,2013,premium unleaded (required),320,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,20,3916,43550 +Audi,100,1992,regular unleaded,172,6,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,24,17,3105,2000 +Audi,100,1992,regular unleaded,172,6,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,24,17,3105,2000 +Audi,100,1992,regular unleaded,172,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,20,16,3105,2000 +Audi,100,1992,regular unleaded,172,6,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,24,17,3105,2000 +Audi,100,1992,regular unleaded,172,6,MANUAL,all wheel drive,4,Luxury,Midsize,Sedan,21,16,3105,2000 +Audi,100,1993,regular unleaded,172,6,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,24,17,3105,2000 +Audi,100,1993,regular unleaded,172,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,20,16,3105,2000 +Audi,100,1993,regular unleaded,172,6,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,24,17,3105,2000 +Audi,100,1993,regular unleaded,172,6,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,24,17,3105,2000 +Audi,100,1993,regular unleaded,172,6,MANUAL,all wheel drive,4,Luxury,Midsize,Sedan,21,16,3105,2000 +Audi,100,1994,regular unleaded,172,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,21,16,3105,2000 +Audi,100,1994,regular unleaded,172,6,MANUAL,all wheel drive,4,Luxury,Midsize,Sedan,22,16,3105,2000 +Audi,100,1994,regular unleaded,172,6,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,22,17,3105,2000 +Audi,100,1994,regular unleaded,172,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,22,16,3105,2000 +Audi,100,1994,regular unleaded,172,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,21,16,3105,2000 +FIAT,124 Spider,2017,premium unleaded (recommended),160,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,35,26,819,27495 +FIAT,124 Spider,2017,premium unleaded (recommended),160,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,35,26,819,24995 +FIAT,124 Spider,2017,premium unleaded (recommended),160,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,35,26,819,28195 +Mercedes-Benz,190-Class,1991,regular unleaded,130,4,MANUAL,rear wheel drive,4,Luxury,Compact,Sedan,26,18,617,2000 +Mercedes-Benz,190-Class,1991,regular unleaded,158,6,MANUAL,rear wheel drive,4,Luxury,Compact,Sedan,25,17,617,2000 +Mercedes-Benz,190-Class,1992,regular unleaded,158,6,MANUAL,rear wheel drive,4,Luxury,Compact,Sedan,25,17,617,2000 +Mercedes-Benz,190-Class,1992,regular unleaded,130,4,MANUAL,rear wheel drive,4,Luxury,Compact,Sedan,26,18,617,2000 +Mercedes-Benz,190-Class,1993,regular unleaded,130,4,MANUAL,rear wheel drive,4,Luxury,Compact,Sedan,26,18,617,2000 +Mercedes-Benz,190-Class,1993,regular unleaded,158,6,MANUAL,rear wheel drive,4,Luxury,Compact,Sedan,25,17,617,2000 +BMW,2 Series,2016,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,35,23,3916,32850 +BMW,2 Series,2016,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,2,Luxury,Compact,Convertible,34,23,3916,38650 +BMW,2 Series,2016,premium unleaded (required),320,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,31,20,3916,48750 +BMW,2 Series,2016,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Compact,Coupe,35,23,3916,34850 +BMW,2 Series,2016,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,2,Luxury,Compact,Convertible,34,22,3916,40650 +BMW,2 Series,2016,premium unleaded (required),320,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,31,20,3916,44150 +BMW,2 Series,2016,premium unleaded (required),240,4,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,34,22,3916,32850 +BMW,2 Series,2016,premium unleaded (required),320,6,AUTOMATIC,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,30,20,3916,46150 +BMW,2 Series,2016,premium unleaded (required),320,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,30,20,3916,50750 +BMW,2 Series,2017,premium unleaded (recommended),335,6,AUTOMATIC,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,31,21,3916,46450 +BMW,2 Series,2017,premium unleaded (recommended),335,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,32,21,3916,49050 +BMW,2 Series,2017,premium unleaded (recommended),335,6,AUTOMATIC,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,32,21,3916,51050 +BMW,2 Series,2017,premium unleaded (recommended),335,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,32,21,3916,44450 +BMW,2 Series,2017,premium unleaded (recommended),248,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,34,23,3916,38950 +BMW,2 Series,2017,premium unleaded (recommended),248,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,35,24,3916,33150 +BMW,2 Series,2017,premium unleaded (recommended),248,4,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Compact,Coupe,33,24,3916,35150 +BMW,2 Series,2017,premium unleaded (recommended),248,4,AUTOMATIC,all wheel drive,2,Luxury,Compact,Convertible,33,23,3916,40950 +Audi,200,1990,regular unleaded,162,5,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,20,16,3105,2000 +Audi,200,1990,regular unleaded,162,5,MANUAL,all wheel drive,4,Luxury,Midsize,Wagon,22,15,3105,2000 +Audi,200,1990,regular unleaded,162,5,MANUAL,all wheel drive,4,Luxury,Midsize,Sedan,23,15,3105,2000 +Audi,200,1991,regular unleaded,217,5,MANUAL,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,22,16,3105,2000 +Audi,200,1991,regular unleaded,217,5,MANUAL,all wheel drive,4,"Luxury,Performance",Midsize,Wagon,22,16,3105,2000 +Audi,200,1991,regular unleaded,162,5,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,20,16,3105,2000 +Chrysler,200,2015,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,36,23,1013,25170 +Chrysler,200,2015,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,36,23,1013,23950 +Chrysler,200,2015,flex-fuel (unleaded/E85),295,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Midsize,Sedan,29,18,1013,29370 +Chrysler,200,2015,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,36,23,1013,21995 +Chrysler,200,2015,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Midsize,Sedan,36,23,1013,26625 +Chrysler,200,2015,flex-fuel (unleaded/E85),295,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Midsize,Sedan,29,18,1013,30825 +Chrysler,200,2016,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,36,23,1013,21995 +Chrysler,200,2016,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,36,23,1013,27795 +Chrysler,200,2016,flex-fuel (unleaded/E85),295,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Midsize,Sedan,29,18,1013,31785 +Chrysler,200,2016,flex-fuel (unleaded/E85),295,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Midsize,Sedan,29,18,1013,29905 +Chrysler,200,2016,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,36,23,1013,22490 +Chrysler,200,2016,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,36,23,1013,27570 +Chrysler,200,2016,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,36,23,1013,25690 +Chrysler,200,2016,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,36,23,1013,24490 +Chrysler,200,2017,flex-fuel (unleaded/E85),295,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Midsize,Sedan,28,18,1013,29905 +Chrysler,200,2017,flex-fuel (unleaded/E85),295,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Midsize,Sedan,28,18,1013,31785 +Chrysler,200,2017,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,36,23,1013,26685 +Chrysler,200,2017,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,36,23,1013,22490 +Chrysler,200,2017,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,36,23,1013,25690 +Chrysler,200,2017,flex-fuel (unleaded/E85),295,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Midsize,Sedan,28,18,1013,30900 +Chrysler,200,2017,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,36,23,1013,27795 +Chrysler,200,2017,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,36,23,1013,21995 +Chrysler,200,2017,flex-fuel (unleaded/E85),184,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,36,23,1013,24490 +Nissan,200SX,1996,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,36,26,2009,2000 +Nissan,200SX,1996,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,36,26,2009,2000 +Nissan,200SX,1996,regular unleaded,140,4,MANUAL,front wheel drive,2,Performance,Compact,Coupe,29,21,2009,2000 +Nissan,200SX,1997,regular unleaded,140,4,MANUAL,front wheel drive,2,Performance,Compact,Coupe,29,21,2009,2000 +Nissan,200SX,1997,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,25,2009,2000 +Nissan,200SX,1997,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,25,2009,2000 +Nissan,200SX,1998,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,25,2009,2000 +Nissan,200SX,1998,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,25,2009,2000 +Nissan,200SX,1998,regular unleaded,140,4,MANUAL,front wheel drive,2,Performance,Compact,Coupe,28,20,2009,2073 +Nissan,240SX,1996,regular unleaded,155,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,26,19,2009,3713 +Nissan,240SX,1996,regular unleaded,155,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,26,19,2009,3520 +Nissan,240SX,1997,regular unleaded,155,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,26,19,2009,3910 +Nissan,240SX,1997,regular unleaded,155,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,26,19,2009,4182 +Nissan,240SX,1997,regular unleaded,155,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,26,19,2009,4107 +Nissan,240SX,1998,regular unleaded,155,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,25,20,2009,4299 +Nissan,240SX,1998,regular unleaded,155,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,25,20,2009,4693 +Nissan,240SX,1998,regular unleaded,155,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,25,20,2009,4107 +Volvo,240,1991,regular unleaded,114,4,MANUAL,rear wheel drive,4,Luxury,Midsize,Wagon,26,19,870,2000 +Volvo,240,1991,regular unleaded,114,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,23,18,870,2000 +Volvo,240,1991,regular unleaded,114,4,MANUAL,rear wheel drive,4,Luxury,Midsize,Sedan,26,19,870,2000 +Volvo,240,1992,regular unleaded,114,4,MANUAL,rear wheel drive,4,Luxury,Midsize,Sedan,26,19,870,2000 +Volvo,240,1992,regular unleaded,114,4,MANUAL,rear wheel drive,4,Luxury,Midsize,Wagon,26,19,870,2000 +Volvo,240,1992,regular unleaded,114,4,MANUAL,rear wheel drive,4,Luxury,Midsize,Sedan,26,19,870,2000 +Volvo,240,1993,regular unleaded,114,4,MANUAL,rear wheel drive,4,Luxury,Midsize,Sedan,26,19,870,2000 +Volvo,240,1993,regular unleaded,114,4,MANUAL,rear wheel drive,4,Luxury,Midsize,Wagon,25,18,870,2000 +Mazda,2,2012,regular unleaded,100,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,29,586,16020 +Mazda,2,2012,regular unleaded,100,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,29,586,14530 +Mazda,2,2012,regular unleaded,100,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,28,586,16860 +Mazda,2,2012,regular unleaded,100,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,28,586,15370 +Mazda,2,2013,regular unleaded,100,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,28,586,17050 +Mazda,2,2013,regular unleaded,100,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,28,586,15560 +Mazda,2,2013,regular unleaded,100,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,29,586,16210 +Mazda,2,2013,regular unleaded,100,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,29,586,14720 +Mazda,2,2014,regular unleaded,100,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,28,586,17050 +Mazda,2,2014,regular unleaded,100,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,28,586,15560 +Mazda,2,2014,regular unleaded,100,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,29,586,16210 +Mazda,2,2014,regular unleaded,100,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,29,586,14720 +BMW,3 Series Gran Turismo,2015,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Hatchback,Luxury,Performance",Midsize,4dr Hatchback,30,20,3916,47250 +BMW,3 Series Gran Turismo,2015,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,"Hatchback,Luxury",Midsize,4dr Hatchback,33,22,3916,41850 +BMW,3 Series Gran Turismo,2015,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,"Hatchback,Luxury",Midsize,4dr Hatchback,33,22,3916,41850 +BMW,3 Series Gran Turismo,2016,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,"Hatchback,Luxury",Midsize,4dr Hatchback,34,22,3916,43000 +BMW,3 Series Gran Turismo,2016,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Hatchback,Luxury,Performance",Midsize,4dr Hatchback,30,20,3916,49200 +BMW,3 Series Gran Turismo,2017,premium unleaded (required),320,6,AUTOMATIC,all wheel drive,4,"Hatchback,Luxury,Performance",Midsize,4dr Hatchback,30,20,3916,49650 +BMW,3 Series Gran Turismo,2017,premium unleaded (required),248,4,AUTOMATIC,all wheel drive,4,"Hatchback,Luxury",Midsize,4dr Hatchback,33,23,3916,43950 +BMW,3 Series,2015,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,33,22,3916,41950 +BMW,3 Series,2015,premium unleaded (required),335,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance,Hybrid",Midsize,Sedan,33,25,3916,50150 +BMW,3 Series,2015,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,35,23,3916,37500 +BMW,3 Series,2015,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,32,21,3916,43750 +BMW,3 Series,2015,diesel,180,4,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Midsize,Sedan,45,32,3916,39000 +BMW,3 Series,2015,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,33,22,3916,39500 +BMW,3 Series,2015,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,33,22,3916,39500 +BMW,3 Series,2015,premium unleaded (required),180,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,35,23,3916,34950 +BMW,3 Series,2015,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,30,20,3916,45750 +BMW,3 Series,2015,diesel,180,4,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Midsize,Wagon,43,31,3916,43450 +BMW,3 Series,2015,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,35,23,3916,37500 +BMW,3 Series,2015,diesel,180,4,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Midsize,Sedan,43,31,3916,41000 +BMW,3 Series,2015,premium unleaded (required),180,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,36,24,3916,32950 +BMW,3 Series,2016,diesel,180,4,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Midsize,Sedan,40,30,3916,41850 +BMW,3 Series,2016,premium unleaded (required),320,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,33,22,3916,47800 +BMW,3 Series,2016,diesel,180,4,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Midsize,Sedan,42,32,3916,39850 +BMW,3 Series,2016,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,34,22,3916,38350 +BMW,3 Series,2016,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,34,22,3916,40350 +BMW,3 Series,2016,premium unleaded (required),240,4,MANUAL,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,34,22,3916,38350 +BMW,3 Series,2016,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,34,22,3916,42650 +BMW,3 Series,2016,premium unleaded (required),180,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,36,24,3916,33150 +BMW,3 Series,2016,premium unleaded (required),180,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,35,23,3916,35150 +BMW,3 Series,2016,diesel,180,4,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Midsize,Wagon,40,30,3916,44150 +BMW,3 Series,2016,premium unleaded (required),320,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,33,22,3916,45800 +BMW,3 Series,2017,premium unleaded (recommended),248,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,34,23,3916,38750 +BMW,3 Series,2017,premium unleaded (recommended),180,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,34,23,3916,35450 +BMW,3 Series,2017,premium unleaded (recommended),180,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,35,23,3916,33450 +BMW,3 Series,2017,premium unleaded (recommended),248,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,33,23,3916,40750 +BMW,3 Series,2017,diesel,180,4,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Midsize,Sedan,40,30,3916,42250 +BMW,3 Series,2017,premium unleaded (recommended),248,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,33,23,3916,42950 +BMW,3 Series,2017,diesel,180,4,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Midsize,Sedan,42,32,3916,40250 +BMW,3 Series,2017,premium unleaded (recommended),320,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,21,3916,49900 +BMW,3 Series,2017,premium unleaded (recommended),320,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,32,21,3916,47900 +BMW,3 Series,2017,diesel,180,4,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Midsize,Wagon,40,30,3916,44450 +Mercedes-Benz,300-Class,1991,regular unleaded,177,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,19,15,617,2232 +Mercedes-Benz,300-Class,1991,regular unleaded,177,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,20,15,617,2000 +Mercedes-Benz,300-Class,1991,regular unleaded,158,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,22,17,617,2000 +Mercedes-Benz,300-Class,1991,regular unleaded,177,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,20,15,617,2105 +Mercedes-Benz,300-Class,1991,regular unleaded,177,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,18,15,617,2199 +Mercedes-Benz,300-Class,1991,regular unleaded,177,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,22,16,617,2000 +Mercedes-Benz,300-Class,1991,regular unleaded,177,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,19,15,617,2124 +Mercedes-Benz,300-Class,1991,regular unleaded,228,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,21,14,617,3552 +Mercedes-Benz,300-Class,1991,regular unleaded,217,6,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,22,15,617,2179 +Mercedes-Benz,300-Class,1991,diesel,121,5,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Midsize,Sedan,30,23,617,2000 +Mercedes-Benz,300-Class,1992,diesel,121,5,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Midsize,Sedan,29,23,617,2000 +Mercedes-Benz,300-Class,1992,regular unleaded,228,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,17,14,617,2377 +Mercedes-Benz,300-Class,1992,regular unleaded,228,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,21,15,617,3814 +Mercedes-Benz,300-Class,1992,regular unleaded,177,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,19,15,617,2207 +Mercedes-Benz,300-Class,1992,regular unleaded,177,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,20,15,617,2000 +Mercedes-Benz,300-Class,1992,regular unleaded,217,6,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,21,15,617,2248 +Mercedes-Benz,300-Class,1992,regular unleaded,177,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,22,16,617,2065 +Mercedes-Benz,300-Class,1992,diesel,148,6,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Large,Sedan,22,18,617,2547 +Mercedes-Benz,300-Class,1992,regular unleaded,177,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,18,15,617,2282 +Mercedes-Benz,300-Class,1992,regular unleaded,158,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,23,18,617,2000 +Mercedes-Benz,300-Class,1993,regular unleaded,177,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,19,15,617,2544 +Mercedes-Benz,300-Class,1993,regular unleaded,217,6,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,22,17,617,2397 +Mercedes-Benz,300-Class,1993,diesel,121,5,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Midsize,Sedan,30,23,617,2000 +Mercedes-Benz,300-Class,1993,regular unleaded,228,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,21,14,617,4174 +Mercedes-Benz,300-Class,1993,regular unleaded,217,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,22,17,617,2187 +Mercedes-Benz,300-Class,1993,diesel,148,6,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Large,Sedan,22,18,617,2729 +Mercedes-Benz,300-Class,1993,regular unleaded,177,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,19,15,617,2433 +Mercedes-Benz,300-Class,1993,regular unleaded,194,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,23,17,617,2247 +Mercedes-Benz,300-Class,1993,regular unleaded,228,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,18,14,617,2540 +Mitsubishi,3000GT,1997,regular unleaded,218,6,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,23,17,436,3941 +Mitsubishi,3000GT,1997,regular unleaded,161,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,22,17,436,3295 +Mitsubishi,3000GT,1997,regular unleaded,320,6,MANUAL,all wheel drive,2,"Hatchback,Factory Tuner,Performance",Compact,2dr Hatchback,22,16,436,6008 +Mitsubishi,3000GT,1998,regular unleaded,320,6,MANUAL,all wheel drive,2,"Hatchback,Factory Tuner,Performance",Compact,2dr Hatchback,22,16,436,6710 +Mitsubishi,3000GT,1998,regular unleaded,161,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,22,17,436,3701 +Mitsubishi,3000GT,1998,regular unleaded,218,6,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,23,17,436,4671 +Mitsubishi,3000GT,1999,regular unleaded,218,6,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,23,17,436,5306 +Mitsubishi,3000GT,1999,regular unleaded,320,6,MANUAL,all wheel drive,2,"Hatchback,Factory Tuner,Performance",Compact,2dr Hatchback,22,16,436,7600 +Mitsubishi,3000GT,1999,regular unleaded,161,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,22,17,436,4090 +Chrysler,300,2015,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1013,37570 +Chrysler,300,2015,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,31,19,1013,31695 +Chrysler,300,2015,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,31,19,1013,38070 +Chrysler,300,2015,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1013,44895 +Chrysler,300,2015,regular unleaded,300,6,AUTOMATIC,rear wheel drive,4,Performance,Large,Sedan,31,19,1013,35070 +Chrysler,300,2015,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,Performance,Large,Sedan,31,19,1013,42395 +Chrysler,300,2015,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1013,34195 +Chrysler,300,2015,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1013,40570 +Chrysler,300,2016,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1013,38095 +Chrysler,300,2016,regular unleaded,300,6,AUTOMATIC,rear wheel drive,4,Performance,Large,Sedan,31,19,1013,35595 +Chrysler,300,2016,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1013,45190 +Chrysler,300,2016,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,31,19,1013,32260 +Chrysler,300,2016,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1013,37755 +Chrysler,300,2016,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1013,41055 +Chrysler,300,2016,regular unleaded,300,6,AUTOMATIC,rear wheel drive,4,Performance,Large,Sedan,31,19,1013,36090 +Chrysler,300,2016,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,Performance,Large,Sedan,31,19,1013,42690 +Chrysler,300,2016,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,31,19,1013,38555 +Chrysler,300,2016,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,31,19,1013,35255 +Chrysler,300,2016,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1013,38590 +Chrysler,300,2016,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1013,34760 +Chrysler,300,2017,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1013,41135 +Chrysler,300,2017,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1013,45270 +Chrysler,300,2017,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1013,38670 +Chrysler,300,2017,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,Performance,Large,Sedan,30,19,1013,38635 +Chrysler,300,2017,regular unleaded,300,6,AUTOMATIC,rear wheel drive,4,Performance,Large,Sedan,30,19,1013,36170 +Chrysler,300,2017,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1013,38175 +Chrysler,300,2017,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,30,19,1013,32340 +Chrysler,300,2017,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,Performance,Large,Sedan,30,19,1013,42770 +Chrysler,300,2017,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1013,34840 +Chrysler,300,2017,regular unleaded,300,6,AUTOMATIC,rear wheel drive,4,Performance,Large,Sedan,30,19,1013,35675 +Chrysler,300M,2002,premium unleaded (required),250,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,24,16,1013,32065 +Chrysler,300M,2002,premium unleaded (required),250,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,24,16,1013,28540 +Chrysler,300M,2003,premium unleaded (required),255,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,25,16,1013,32315 +Chrysler,300M,2003,regular unleaded,250,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,25,16,1013,28885 +Chrysler,300M,2004,regular unleaded,250,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,25,16,1013,29185 +Chrysler,300M,2004,premium unleaded (required),255,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,25,16,1013,32615 +Nissan,300ZX,1994,regular unleaded,222,6,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,22,16,2009,2847 +Nissan,300ZX,1994,regular unleaded,222,6,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,22,16,2009,2488 +Nissan,300ZX,1994,regular unleaded,300,6,MANUAL,rear wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,22,16,2009,2683 +Nissan,300ZX,1994,regular unleaded,222,6,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,22,16,2009,2553 +Nissan,300ZX,1995,regular unleaded,300,6,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,22,16,2009,3049 +Nissan,300ZX,1995,regular unleaded,222,6,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,22,17,2009,2774 +Nissan,300ZX,1995,regular unleaded,222,6,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,22,17,2009,2702 +Nissan,300ZX,1995,regular unleaded,222,6,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,22,17,2009,3101 +Nissan,300ZX,1996,regular unleaded,300,6,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,22,16,2009,3510 +Nissan,300ZX,1996,regular unleaded,222,6,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,22,17,2009,3107 +Nissan,300ZX,1996,regular unleaded,222,6,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,22,17,2009,3624 +Nissan,300ZX,1996,regular unleaded,222,6,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,22,17,2009,3185 +Mazda,323,1992,regular unleaded,82,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,586,2000 +Mazda,323,1992,regular unleaded,82,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,586,2000 +Mazda,323,1993,regular unleaded,82,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,586,2000 +Mazda,323,1993,regular unleaded,82,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,32,24,586,2000 +Mazda,323,1994,regular unleaded,82,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,586,2000 +Mercedes-Benz,350-Class,1990,diesel,134,6,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Large,Sedan,23,19,617,2144 +Mercedes-Benz,350-Class,1990,diesel,134,6,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Large,Sedan,23,19,617,2098 +Mercedes-Benz,350-Class,1991,diesel,134,6,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Large,Sedan,23,19,617,2178 +Mercedes-Benz,350-Class,1991,diesel,134,6,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Large,Sedan,23,19,617,2311 +Nissan,350Z,2007,regular unleaded,306,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,23,17,2009,36550 +Nissan,350Z,2007,regular unleaded,306,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,23,17,2009,41250 +Nissan,350Z,2007,regular unleaded,306,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,24,17,2009,30600 +Nissan,350Z,2007,regular unleaded,306,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,24,17,2009,37100 +Nissan,350Z,2007,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,18,2009,27900 +Nissan,350Z,2007,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,18,2009,32700 +Nissan,350Z,2007,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,24,17,2009,40250 +Nissan,350Z,2007,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,24,17,2009,35550 +Nissan,350Z,2007,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,18,2009,36100 +Nissan,350Z,2007,regular unleaded,306,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,24,17,2009,33200 +Nissan,350Z,2007,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,24,17,2009,37900 +Nissan,350Z,2007,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,18,2009,29600 +Nissan,350Z,2007,regular unleaded,306,6,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,25,18,2009,38070 +Nissan,350Z,2007,regular unleaded,306,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,23,17,2009,38900 +Nissan,350Z,2008,regular unleaded,306,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,24,17,2009,33840 +Nissan,350Z,2008,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,24,17,2009,38630 +Nissan,350Z,2008,regular unleaded,306,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,23,17,2009,39630 +Nissan,350Z,2008,regular unleaded,306,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,24,17,2009,37740 +Nissan,350Z,2008,regular unleaded,306,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,23,17,2009,41980 +Nissan,350Z,2008,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,24,17,2009,36280 +Nissan,350Z,2008,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,18,2009,36740 +Nissan,350Z,2008,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,24,17,2009,40980 +Nissan,350Z,2008,regular unleaded,306,6,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,25,18,2009,38680 +Nissan,350Z,2008,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,18,2009,28510 +Nissan,350Z,2008,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,18,2009,30210 +Nissan,350Z,2008,regular unleaded,306,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,24,17,2009,31210 +Nissan,350Z,2008,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,18,2009,33340 +Nissan,350Z,2008,regular unleaded,306,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,23,17,2009,37280 +Nissan,350Z,2009,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,24,17,2009,41570 +Nissan,350Z,2009,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,24,17,2009,36870 +Nissan,350Z,2009,regular unleaded,306,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,23,17,2009,42570 +Nissan,350Z,2009,regular unleaded,306,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,23,17,2009,37870 +Nissan,350Z,2009,regular unleaded,306,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,24,17,2009,39220 +Nissan,350Z,2009,regular unleaded,306,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,23,17,2009,40220 +Ferrari,360,2002,premium unleaded (required),400,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,15,10,2774,160829 +Ferrari,360,2002,premium unleaded (required),400,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,15,10,2774,140615 +Ferrari,360,2002,premium unleaded (required),400,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,15,10,2774,150694 +Ferrari,360,2002,premium unleaded (required),400,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,15,10,2774,170829 +Ferrari,360,2003,premium unleaded (required),400,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,15,10,2774,165986 +Ferrari,360,2003,premium unleaded (required),400,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,15,10,2774,154090 +Ferrari,360,2003,premium unleaded (required),400,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,15,10,2774,143860 +Ferrari,360,2003,premium unleaded (required),400,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,15,10,2774,176287 +Ferrari,360,2004,premium unleaded (required),400,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,15,10,2774,157767 +Ferrari,360,2004,premium unleaded (required),425,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Coupe,15,10,2774,187124 +Ferrari,360,2004,premium unleaded (required),400,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,15,10,2774,147332 +Ferrari,360,2004,premium unleaded (required),400,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,15,10,2774,169900 +Ferrari,360,2004,premium unleaded (required),400,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,15,10,2774,180408 +Nissan,370Z,2015,premium unleaded (required),350,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,26,19,2009,46790 +Nissan,370Z,2015,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,24,17,2009,48100 +Nissan,370Z,2015,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,26,18,2009,29990 +Nissan,370Z,2015,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,25,18,2009,41820 +Nissan,370Z,2015,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,26,19,2009,31290 +Nissan,370Z,2015,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,26,19,2009,34870 +Nissan,370Z,2015,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,26,18,2009,33570 +Nissan,370Z,2015,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,25,18,2009,46570 +Nissan,370Z,2015,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,26,18,2009,37970 +Nissan,370Z,2015,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,26,18,2009,37070 +Nissan,370Z,2015,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,25,18,2009,49400 +Nissan,370Z,2015,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,24,17,2009,45270 +Nissan,370Z,2015,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,26,19,2009,39270 +Nissan,370Z,2015,premium unleaded (required),350,6,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,26,18,2009,45490 +Nissan,370Z,2015,premium unleaded (required),350,6,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,26,18,2009,41990 +Nissan,370Z,2015,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,26,19,2009,38370 +Nissan,370Z,2015,premium unleaded (required),350,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,26,19,2009,43290 +Nissan,370Z,2016,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,25,18,2009,41820 +Nissan,370Z,2016,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,24,17,2009,48100 +Nissan,370Z,2016,premium unleaded (required),350,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,26,19,2009,43290 +Nissan,370Z,2016,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,26,19,2009,39270 +Nissan,370Z,2016,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,26,19,2009,34870 +Nissan,370Z,2016,premium unleaded (required),350,6,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,26,18,2009,41990 +Nissan,370Z,2016,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,26,19,2009,38370 +Nissan,370Z,2016,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,24,17,2009,45270 +Nissan,370Z,2016,premium unleaded (required),350,6,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,26,18,2009,45490 +Nissan,370Z,2016,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,26,18,2009,29990 +Nissan,370Z,2016,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,25,18,2009,46570 +Nissan,370Z,2016,premium unleaded (required),350,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,26,19,2009,46790 +Nissan,370Z,2016,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,25,18,2009,49400 +Nissan,370Z,2016,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,26,18,2009,37070 +Nissan,370Z,2016,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,26,19,2009,31290 +Nissan,370Z,2016,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,26,18,2009,37970 +Nissan,370Z,2016,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,26,18,2009,33570 +Nissan,370Z,2017,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,26,18,2009,37970 +Nissan,370Z,2017,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,26,19,2009,38370 +Nissan,370Z,2017,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,26,19,2009,34870 +Nissan,370Z,2017,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,26,18,2009,29990 +Nissan,370Z,2017,premium unleaded (required),350,6,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,26,18,2009,45490 +Nissan,370Z,2017,premium unleaded (required),350,6,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,26,18,2009,41990 +Nissan,370Z,2017,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,24,17,2009,45270 +Nissan,370Z,2017,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,26,18,2009,33570 +Nissan,370Z,2017,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,24,17,2009,48100 +Nissan,370Z,2017,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,26,19,2009,39270 +Nissan,370Z,2017,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,25,18,2009,46570 +Nissan,370Z,2017,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,25,18,2009,49400 +Nissan,370Z,2017,premium unleaded (required),332,6,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,26,18,2009,37070 +Nissan,370Z,2017,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,25,18,2009,41820 +Nissan,370Z,2017,premium unleaded (required),350,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,26,19,2009,46790 +Nissan,370Z,2017,premium unleaded (required),350,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,26,19,2009,43290 +Nissan,370Z,2017,premium unleaded (required),332,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Coupe,26,19,2009,31290 +Mazda,3,2015,regular unleaded,184,4,MANUAL,front wheel drive,4,Performance,Compact,Sedan,37,25,586,25045 +Mazda,3,2015,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,Performance,Compact,Sedan,39,28,586,26095 +Mazda,3,2015,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,41,30,586,23795 +Mazda,3,2015,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,41,29,586,19595 +Mazda,3,2015,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,41,29,586,18445 +Mazda,3,2015,regular unleaded,184,4,MANUAL,front wheel drive,4,Performance,Compact,Sedan,37,25,586,23845 +Mazda,3,2015,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,37,27,586,25395 +Mazda,3,2015,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,Performance,Compact,Sedan,39,28,586,24895 +Mazda,3,2015,regular unleaded,184,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,35,26,586,25545 +Mazda,3,2015,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,30,586,24295 +Mazda,3,2015,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,41,30,586,19495 +Mazda,3,2015,regular unleaded,155,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,29,586,20095 +Mazda,3,2015,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,30,586,19995 +Mazda,3,2015,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,30,586,21145 +Mazda,3,2015,regular unleaded,155,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,29,586,23245 +Mazda,3,2015,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,41,29,586,16945 +Mazda,3,2015,regular unleaded,184,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,35,26,586,24345 +Mazda,3,2015,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,41,30,586,20645 +Mazda,3,2015,regular unleaded,155,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,29,586,18945 +Mazda,3,2015,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,37,27,586,26595 +Mazda,3,2015,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,41,29,586,22745 +Mazda,3,2015,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,41,30,586,17995 +Mazda,3,2016,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,41,29,586,22545 +Mazda,3,2016,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,41,30,586,21095 +Mazda,3,2016,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,37,27,586,25495 +Mazda,3,2016,regular unleaded,155,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,29,586,20745 +Mazda,3,2016,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,30,586,24295 +Mazda,3,2016,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,41,30,586,23595 +Mazda,3,2016,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,30,586,21795 +Mazda,3,2016,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,41,29,586,17845 +Mazda,3,2016,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,37,27,586,26495 +Mazda,3,2016,regular unleaded,184,4,MANUAL,front wheel drive,4,Performance,Compact,Sedan,37,25,586,24745 +Mazda,3,2016,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,41,30,586,18895 +Mazda,3,2016,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,30,586,19595 +Mazda,3,2016,regular unleaded,155,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,29,586,23245 +Mazda,3,2016,regular unleaded,155,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,29,586,18545 +Mazda,3,2016,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,Performance,Compact,Sedan,39,28,586,25795 +Mazda,3,2016,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,41,29,586,20045 +Mazda,3,2016,regular unleaded,184,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,35,26,586,25445 +Mazda,3,2016,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,Performance,Compact,Sedan,39,28,586,24795 +Mazda,3,2017,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,28,586,21495 +Mazda,3,2017,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,37,27,586,17845 +Mazda,3,2017,regular unleaded,184,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,34,25,586,23145 +Mazda,3,2017,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,36,27,586,24195 +Mazda,3,2017,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,586,20145 +Mazda,3,2017,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,35,26,586,24945 +Mazda,3,2017,regular unleaded,184,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,25,586,23895 +Mazda,3,2017,regular unleaded,155,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,27,586,19095 +Mazda,3,2017,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,35,26,586,23445 +Mazda,3,2017,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,28,586,18895 +Mazda,3,2017,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,586,22245 +Mazda,3,2017,regular unleaded,184,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,25,586,22395 +Mazda,3,2017,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,37,27,586,20445 +BMW,4 Series Gran Coupe,2015,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,33,22,3916,42300 +BMW,4 Series Gran Coupe,2015,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,34,23,3916,40300 +BMW,4 Series Gran Coupe,2015,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,34,23,3916,40300 +BMW,4 Series Gran Coupe,2015,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,33,22,3916,42300 +BMW,4 Series Gran Coupe,2015,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,32,21,3916,45800 +BMW,4 Series Gran Coupe,2015,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,20,3916,47800 +BMW,4 Series Gran Coupe,2016,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,34,22,3916,43650 +BMW,4 Series Gran Coupe,2016,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,30,20,3916,49950 +BMW,4 Series Gran Coupe,2016,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,20,3916,47950 +BMW,4 Series Gran Coupe,2016,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,34,23,3916,41650 +BMW,4 Series Gran Coupe,2017,premium unleaded (recommended),320,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,32,21,3916,48300 +BMW,4 Series Gran Coupe,2017,premium unleaded (recommended),320,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,21,3916,50300 +BMW,4 Series Gran Coupe,2017,premium unleaded (recommended),248,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,33,23,3916,43950 +BMW,4 Series Gran Coupe,2017,premium unleaded (recommended),248,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,34,23,3916,41950 +BMW,4 Series,2015,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Convertible,29,20,3916,56900 +BMW,4 Series,2015,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,32,21,3916,46250 +BMW,4 Series,2015,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Convertible,33,21,3916,50750 +BMW,4 Series,2015,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Coupe,33,22,3916,42750 +BMW,4 Series,2015,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Convertible,34,23,3916,48750 +BMW,4 Series,2015,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,30,20,3916,48250 +BMW,4 Series,2015,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Coupe,33,22,3916,42750 +BMW,4 Series,2015,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Convertible,33,21,3916,50750 +BMW,4 Series,2015,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,35,23,3916,40750 +BMW,4 Series,2015,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,31,20,3916,54900 +BMW,4 Series,2015,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Convertible,34,23,3916,48750 +BMW,4 Series,2015,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,35,23,3916,40750 +BMW,4 Series,2016,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Convertible,33,21,3916,52000 +BMW,4 Series,2016,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Convertible,34,23,3916,50000 +BMW,4 Series,2016,premium unleaded (required),240,4,MANUAL,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,34,22,3916,41850 +BMW,4 Series,2016,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,30,20,3916,50150 +BMW,4 Series,2016,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,35,23,3916,41850 +BMW,4 Series,2016,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Convertible,29,20,3916,58950 +BMW,4 Series,2016,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Coupe,34,22,3916,43850 +BMW,4 Series,2016,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,31,20,3916,48150 +BMW,4 Series,2016,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,31,20,3916,56950 +BMW,4 Series,2017,premium unleaded (recommended),248,4,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Convertible,34,23,3916,50300 +BMW,4 Series,2017,premium unleaded (recommended),248,4,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Convertible,32,22,3916,52300 +BMW,4 Series,2017,premium unleaded (recommended),320,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,31,21,3916,50500 +BMW,4 Series,2017,premium unleaded (recommended),248,4,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,33,23,3916,44150 +BMW,4 Series,2017,premium unleaded (recommended),248,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,34,23,3916,42150 +BMW,4 Series,2017,premium unleaded (recommended),320,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Convertible,30,20,3916,59300 +BMW,4 Series,2017,premium unleaded (recommended),320,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,29,21,3916,57300 +BMW,4 Series,2017,premium unleaded (recommended),320,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,32,21,3916,48500 +Mercedes-Benz,400-Class,1992,regular unleaded,268,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,20,15,617,2168 +Mercedes-Benz,400-Class,1992,regular unleaded,282,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,16,12,617,2497 +Mercedes-Benz,400-Class,1993,regular unleaded,275,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,22,16,617,2278 +Mercedes-Benz,400-Class,1993,regular unleaded,275,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,17,13,617,2650 +Mercedes-Benz,420-Class,1990,regular unleaded,201,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,17,14,617,2000 +Mercedes-Benz,420-Class,1991,regular unleaded,201,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,17,14,617,2186 +Ferrari,456M,2001,premium unleaded (required),442,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,14,9,2774,223970 +Ferrari,456M,2001,premium unleaded (required),442,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,15,9,2774,219775 +Ferrari,456M,2002,premium unleaded (required),442,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,14,9,2774,228625 +Ferrari,456M,2002,premium unleaded (required),442,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,15,9,2774,224585 +Ferrari,456M,2003,premium unleaded (required),442,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,14,9,2774,228625 +Ferrari,456M,2003,premium unleaded (required),442,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,15,9,2774,224585 +Ferrari,458 Italia,2013,premium unleaded (required),562,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,17,13,2774,257412 +Ferrari,458 Italia,2013,premium unleaded (required),562,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,17,13,2774,233509 +Ferrari,458 Italia,2014,premium unleaded (required),562,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,17,13,2774,233509 +Ferrari,458 Italia,2014,premium unleaded (required),597,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,17,13,2774,288000 +Ferrari,458 Italia,2014,premium unleaded (required),562,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,17,13,2774,257412 +Ferrari,458 Italia,2015,premium unleaded (required),562,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,17,13,2774,239340 +Ferrari,458 Italia,2015,premium unleaded (required),562,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,17,13,2774,263553 +Ferrari,458 Italia,2015,premium unleaded (required),597,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,17,13,2774,291744 +Alfa Romeo,4C,2015,premium unleaded (required),237,4,AUTOMATED_MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,34,24,113,63900 +Alfa Romeo,4C,2015,premium unleaded (required),237,4,AUTOMATED_MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,34,24,113,68400 +Alfa Romeo,4C,2015,premium unleaded (required),237,4,AUTOMATED_MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,34,24,113,53900 +Alfa Romeo,4C,2016,premium unleaded (required),237,4,AUTOMATED_MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,34,24,113,55900 +Alfa Romeo,4C,2016,premium unleaded (required),237,4,AUTOMATED_MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,34,24,113,65900 +Toyota,4Runner,2014,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,23,17,2031,41365 +Toyota,4Runner,2014,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,23,17,2031,35740 +Toyota,4Runner,2014,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,22,17,2031,37615 +Toyota,4Runner,2014,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,22,17,2031,34695 +Toyota,4Runner,2014,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,22,17,2031,35725 +Toyota,4Runner,2014,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,22,17,2031,43400 +Toyota,4Runner,2014,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,23,17,2031,32820 +Toyota,4Runner,2014,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,22,17,2031,38645 +Toyota,4Runner,2015,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,21,17,2031,37825 +Toyota,4Runner,2015,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,21,17,2031,43620 +Toyota,4Runner,2015,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,21,17,2031,36115 +Toyota,4Runner,2015,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,22,17,2031,35950 +Toyota,4Runner,2015,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,22,17,2031,33210 +Toyota,4Runner,2015,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,21,17,2031,38855 +Toyota,4Runner,2015,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,22,17,2031,41585 +Toyota,4Runner,2015,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,21,17,2031,35085 +Toyota,4Runner,2015,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,21,17,2031,41310 +Toyota,4Runner,2016,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,22,17,2031,36690 +Toyota,4Runner,2016,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,21,17,2031,44360 +Toyota,4Runner,2016,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,21,17,2031,39595 +Toyota,4Runner,2016,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,21,17,2031,41850 +Toyota,4Runner,2016,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,22,17,2031,42325 +Toyota,4Runner,2016,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,21,17,2031,35885 +Toyota,4Runner,2016,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,21,17,2031,38565 +Toyota,4Runner,2016,regular unleaded,270,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,21,17,2031,36915 +Toyota,4Runner,2016,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,22,17,2031,34010 +BMW,5 Series Gran Turismo,2015,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Hatchback,Luxury",Large,4dr Hatchback,28,19,3916,60700 +BMW,5 Series Gran Turismo,2015,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Hatchback,Luxury,Performance",Large,4dr Hatchback,24,16,3916,71400 +BMW,5 Series Gran Turismo,2015,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Hatchback,Luxury",Large,4dr Hatchback,26,18,3916,63000 +BMW,5 Series Gran Turismo,2015,premium unleaded (required),445,8,AUTOMATIC,rear wheel drive,4,"Hatchback,Luxury,Performance",Large,4dr Hatchback,25,16,3916,69100 +BMW,5 Series Gran Turismo,2016,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Hatchback,Luxury",Large,4dr Hatchback,26,18,3916,63200 +BMW,5 Series Gran Turismo,2016,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Hatchback,Luxury,Performance",Large,4dr Hatchback,24,16,3916,72500 +BMW,5 Series Gran Turismo,2016,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Hatchback,Luxury",Large,4dr Hatchback,28,19,3916,60900 +BMW,5 Series Gran Turismo,2017,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Hatchback,Luxury",Large,4dr Hatchback,26,18,3916,63200 +BMW,5 Series Gran Turismo,2017,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Hatchback,Luxury,Performance",Large,4dr Hatchback,27,19,3916,60900 +BMW,5 Series Gran Turismo,2017,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Hatchback,Luxury,Performance",Large,4dr Hatchback,24,15,3916,72500 +BMW,5 Series,2015,premium unleaded (required),443,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,25,16,3916,67200 +BMW,5 Series,2015,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,29,20,3916,57900 +BMW,5 Series,2015,diesel,255,6,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Large,Sedan,38,26,3916,57100 +BMW,5 Series,2015,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,4,Luxury,Large,Sedan,33,22,3916,52250 +BMW,5 Series,2015,diesel,255,6,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Large,Sedan,37,26,3916,59400 +BMW,5 Series,2015,premium unleaded (required),443,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,25,17,3916,64900 +BMW,5 Series,2015,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,34,23,3916,49950 +BMW,5 Series,2015,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,31,20,3916,55600 +BMW,5 Series,2016,diesel,255,6,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Large,Sedan,38,26,3916,57350 +BMW,5 Series,2016,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,29,20,3916,58150 +BMW,5 Series,2016,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,31,20,3916,55850 +BMW,5 Series,2016,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,Luxury,Large,Sedan,34,22,3916,52500 +BMW,5 Series,2016,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,34,23,3916,50200 +BMW,5 Series,2016,premium unleaded (required),443,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,25,16,3916,68600 +BMW,5 Series,2016,premium unleaded (required),443,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,25,17,3916,66300 +BMW,5 Series,2016,diesel,255,6,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Large,Sedan,37,26,3916,59650 +Mercedes-Benz,500-Class,1991,regular unleaded,322,8,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,17,13,617,4155 +Mercedes-Benz,500-Class,1992,regular unleaded,322,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,15,11,617,2427 +Mercedes-Benz,500-Class,1992,regular unleaded,322,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,16,13,617,3245 +Mercedes-Benz,500-Class,1992,regular unleaded,322,8,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,17,13,617,4701 +Mercedes-Benz,500-Class,1993,regular unleaded,315,8,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,16,12,617,3176 +Mercedes-Benz,500-Class,1993,regular unleaded,315,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,18,14,617,3613 +Mercedes-Benz,500-Class,1993,regular unleaded,315,8,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,19,14,617,5140 +Mercedes-Benz,500-Class,1993,regular unleaded,315,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,16,12,617,2692 +FIAT,500e,2015,electric,,0,DIRECT_DRIVE,front wheel drive,2,Hatchback,Compact,2dr Hatchback,108,122,819,31800 +FIAT,500e,2016,electric,,0,DIRECT_DRIVE,front wheel drive,2,Hatchback,Compact,2dr Hatchback,103,121,819,31800 +FIAT,500e,2017,electric,,0,DIRECT_DRIVE,front wheel drive,2,Hatchback,Compact,2dr Hatchback,103,121,819,31800 +FIAT,500,2015,premium unleaded (recommended),160,4,MANUAL,front wheel drive,2,"Factory Tuner,Performance",Compact,Convertible,34,28,819,26595 +FIAT,500,2015,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,40,31,819,18700 +FIAT,500,2015,premium unleaded (recommended),135,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,34,28,819,19700 +FIAT,500,2015,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,34,28,819,22800 +FIAT,500,2015,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,34,28,819,24700 +FIAT,500,2015,premium unleaded (recommended),160,4,MANUAL,front wheel drive,2,"Hatchback,Factory Tuner,Performance",Compact,2dr Hatchback,34,28,819,22495 +FIAT,500,2015,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,40,31,819,17495 +FIAT,500,2015,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,34,28,819,20345 +FIAT,500,2015,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,40,31,819,17700 +FIAT,500,2015,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,40,31,819,20400 +FIAT,500,2015,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,40,31,819,16845 +FIAT,500,2016,premium unleaded (recommended),160,4,MANUAL,front wheel drive,2,"Factory Tuner,Performance",Compact,Convertible,34,28,819,26695 +FIAT,500,2016,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,40,31,819,21295 +FIAT,500,2016,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,40,31,819,20395 +FIAT,500,2016,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,40,31,819,17745 +FIAT,500,2016,premium unleaded (recommended),160,4,MANUAL,front wheel drive,2,"Hatchback,Factory Tuner,Performance",Compact,2dr Hatchback,34,28,819,22575 +FIAT,500,2016,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,40,31,819,24495 +FIAT,500,2016,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,40,31,819,16995 +FIAT,500,2016,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,40,31,819,20395 +FIAT,500,2016,premium unleaded (recommended),135,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,34,28,819,19700 +FIAT,500,2016,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,40,31,819,17900 +FIAT,500,2016,premium unleaded (recommended),101,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,40,31,819,21395 +FIAT,500,2017,premium unleaded (recommended),160,4,MANUAL,front wheel drive,2,"Hatchback,Factory Tuner,Performance",Compact,2dr Hatchback,33,28,819,19995 +FIAT,500,2017,premium unleaded (recommended),101,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,27,819,19390 +FIAT,500,2017,premium unleaded (recommended),101,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,33,27,819,17485 +FIAT,500,2017,premium unleaded (recommended),101,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,33,27,819,20885 +FIAT,500,2017,premium unleaded (recommended),160,4,MANUAL,front wheel drive,2,"Factory Tuner,Performance",Compact,Convertible,33,28,819,21490 +FIAT,500,2017,premium unleaded (recommended),101,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,27,819,15990 +FIAT,500L,2015,premium unleaded (recommended),160,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,33,25,819,19345 +FIAT,500L,2015,premium unleaded (recommended),160,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,33,25,819,23095 +FIAT,500L,2015,premium unleaded (recommended),160,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,22,819,24695 +FIAT,500L,2015,premium unleaded (recommended),160,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,33,25,819,21695 +FIAT,500L,2015,premium unleaded (recommended),160,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,33,25,819,20695 +FIAT,500L,2016,premium unleaded (recommended),160,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,33,25,819,21880 +FIAT,500L,2016,premium unleaded (recommended),160,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,33,25,819,23395 +FIAT,500L,2016,premium unleaded (recommended),160,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,22,819,24795 +FIAT,500L,2016,premium unleaded (recommended),160,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,33,25,819,20795 +FIAT,500L,2016,premium unleaded (recommended),160,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,33,25,819,19495 +FIAT,500L,2017,premium unleaded (recommended),160,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,22,819,23695 +FIAT,500L,2017,premium unleaded (recommended),160,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,22,819,20995 +FIAT,500L,2017,premium unleaded (recommended),160,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,22,819,22995 +FIAT,500X,2016,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,21,819,24635 +FIAT,500X,2016,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,22,819,25135 +FIAT,500X,2016,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,21,819,29235 +FIAT,500X,2016,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,22,819,23335 +FIAT,500X,2016,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,22,819,22735 +FIAT,500X,2016,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,21,819,27035 +FIAT,500X,2016,premium unleaded (recommended),160,4,MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,34,25,819,20000 +FIAT,500X,2016,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,22,819,27335 +FIAT,500X,2016,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,21,819,25235 +FIAT,500X,2017,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,21,819,27035 +FIAT,500X,2017,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,30,22,819,25135 +FIAT,500X,2017,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,21,819,25235 +FIAT,500X,2017,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,21,819,23890 +FIAT,500X,2017,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,30,22,819,23335 +FIAT,500X,2017,premium unleaded (recommended),160,4,MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,819,19995 +Ferrari,550,2001,premium unleaded (required),485,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,12,8,2774,248500 +Ferrari,550,2001,premium unleaded (required),485,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,12,8,2774,205840 +Mercedes-Benz,560-Class,1990,regular unleaded,238,8,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,16,12,617,2323 +Mercedes-Benz,560-Class,1990,regular unleaded,238,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,16,12,617,2170 +Mercedes-Benz,560-Class,1991,regular unleaded,238,8,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,16,12,617,2443 +Mercedes-Benz,560-Class,1991,regular unleaded,238,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,16,12,617,2304 +McLaren,570S,2016,premium unleaded (required),562,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,23,16,416,184900 +Ferrari,575M,2002,premium unleaded (required),515,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,15,9,2774,214670 +Ferrari,575M,2002,premium unleaded (required),515,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,16,9,2774,224670 +Ferrari,575M,2003,premium unleaded (required),515,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,15,9,2774,217890 +Ferrari,575M,2003,premium unleaded (required),515,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,16,9,2774,228339 +Ferrari,575M,2004,premium unleaded (required),515,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,16,9,2774,228339 +Ferrari,575M,2004,premium unleaded (required),515,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,15,9,2774,217890 +Maybach,57,2010,premium unleaded (required),543,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury",Large,Sedan,16,10,67,366000 +Maybach,57,2010,premium unleaded (required),631,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,16,10,67,455500 +Maybach,57,2010,premium unleaded (required),604,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,16,10,67,405500 +Maybach,57,2011,premium unleaded (required),543,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury",Large,Sedan,16,10,67,372500 +Maybach,57,2011,premium unleaded (required),620,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,16,10,67,412000 +Maybach,57,2012,premium unleaded (required),543,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury",Large,Sedan,16,10,67,379050 +Maybach,57,2012,premium unleaded (required),620,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,16,10,67,418950 +Ferrari,599,2009,premium unleaded (required),611,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,15,11,2774,320580 +Ferrari,599,2009,premium unleaded (required),611,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,15,11,2774,310543 +Ferrari,599,2010,premium unleaded (required),611,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,15,11,2774,310543 +Ferrari,599,2011,premium unleaded (required),611,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,15,11,2774,320580 +Ferrari,599,2011,premium unleaded (required),661,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,High-Performance",Midsize,Coupe,15,11,2774,410000 +Mazda,5,2013,regular unleaded,157,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,22,586,24470 +Mazda,5,2013,regular unleaded,157,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,22,586,20940 +Mazda,5,2013,regular unleaded,157,4,MANUAL,front wheel drive,4,N/A,Compact,Passenger Minivan,28,21,586,19940 +Mazda,5,2013,regular unleaded,157,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,22,586,22070 +Mazda,5,2014,regular unleaded,157,4,MANUAL,front wheel drive,4,N/A,Compact,Passenger Minivan,28,21,586,20140 +Mazda,5,2014,regular unleaded,157,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,22,586,24670 +Mazda,5,2014,regular unleaded,157,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,22,586,21140 +Mazda,5,2014,regular unleaded,157,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,22,586,22270 +Mazda,5,2015,regular unleaded,157,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,21,586,24770 +Mazda,5,2015,regular unleaded,157,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,21,586,22370 +Mazda,5,2015,regular unleaded,157,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,21,586,21240 +BMW,6 Series Gran Coupe,2015,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,16,3916,92600 +BMW,6 Series Gran Coupe,2015,premium unleaded (required),315,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,29,20,3916,81300 +BMW,6 Series Gran Coupe,2015,premium unleaded (required),315,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,31,20,3916,78300 +BMW,6 Series Gran Coupe,2015,premium unleaded (required),445,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,25,17,3916,89600 +BMW,6 Series Gran Coupe,2016,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,15,3916,93900 +BMW,6 Series Gran Coupe,2016,premium unleaded (required),315,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,29,20,3916,82500 +BMW,6 Series Gran Coupe,2016,premium unleaded (required),445,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,25,17,3916,90900 +BMW,6 Series Gran Coupe,2016,premium unleaded (required),315,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,31,20,3916,79500 +BMW,6 Series Gran Coupe,2017,premium unleaded (required),445,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,17,3916,91200 +BMW,6 Series Gran Coupe,2017,premium unleaded (required),315,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,28,19,3916,82800 +BMW,6 Series Gran Coupe,2017,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,15,3916,94200 +BMW,6 Series Gran Coupe,2017,premium unleaded (required),315,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,29,20,3916,79800 +BMW,6 Series,2015,premium unleaded (required),445,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Convertible,25,17,3916,94900 +BMW,6 Series,2015,premium unleaded (required),315,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Convertible,29,20,3916,86600 +BMW,6 Series,2015,premium unleaded (required),315,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,29,20,3916,79100 +BMW,6 Series,2015,premium unleaded (required),315,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,32,21,3916,76100 +BMW,6 Series,2015,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,25,16,3916,90400 +BMW,6 Series,2015,premium unleaded (required),315,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,31,20,3916,83600 +BMW,6 Series,2015,premium unleaded (required),445,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,25,17,3916,87400 +BMW,6 Series,2015,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,2,"Luxury,High-Performance",Midsize,Convertible,24,16,3916,97900 +BMW,6 Series,2016,premium unleaded (required),315,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Convertible,29,20,3916,87800 +BMW,6 Series,2016,premium unleaded (required),315,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,31,20,3916,77300 +BMW,6 Series,2016,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,2,"Luxury,High-Performance",Midsize,Convertible,24,15,3916,99200 +BMW,6 Series,2016,premium unleaded (required),445,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Convertible,25,17,3916,96200 +BMW,6 Series,2016,premium unleaded (required),315,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,29,20,3916,80300 +BMW,6 Series,2016,premium unleaded (required),315,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,31,20,3916,84800 +BMW,6 Series,2016,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,25,16,3916,91700 +BMW,6 Series,2016,premium unleaded (required),445,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,25,17,3916,88700 +BMW,6 Series,2017,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,24,16,3916,92000 +BMW,6 Series,2017,premium unleaded (required),315,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,30,21,3916,77600 +BMW,6 Series,2017,premium unleaded (required),445,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,24,17,3916,89000 +BMW,6 Series,2017,premium unleaded (required),315,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,28,19,3916,80600 +BMW,6 Series,2017,premium unleaded (required),315,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,29,20,3916,85100 +BMW,6 Series,2017,premium unleaded (required),315,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Convertible,28,19,3916,88100 +BMW,6 Series,2017,premium unleaded (required),445,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Convertible,24,17,3916,96500 +BMW,6 Series,2017,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,2,"Luxury,High-Performance",Midsize,Convertible,24,15,3916,99500 +Mercedes-Benz,600-Class,1992,regular unleaded,402,12,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,14,10,617,2960 +Mercedes-Benz,600-Class,1993,regular unleaded,389,12,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,15,11,617,3108 +Mercedes-Benz,600-Class,1993,regular unleaded,389,12,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,16,12,617,4623 +Mercedes-Benz,600-Class,1993,regular unleaded,389,12,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,15,11,617,3211 +Pontiac,6000,1990,regular unleaded,140,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,17,210,2000 +Pontiac,6000,1990,regular unleaded,110,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,29,20,210,2000 +Pontiac,6000,1990,regular unleaded,140,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Wagon,27,17,210,2000 +Pontiac,6000,1990,regular unleaded,140,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Wagon,27,17,210,2000 +Pontiac,6000,1990,regular unleaded,140,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,27,17,210,2000 +Pontiac,6000,1991,regular unleaded,140,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Wagon,28,17,210,2000 +Pontiac,6000,1991,regular unleaded,140,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,28,17,210,2000 +Pontiac,6000,1991,regular unleaded,110,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,28,19,210,2000 +Ferrari,612 Scaglietti,2009,premium unleaded (required),532,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Large,Coupe,16,9,2774,313088 +Ferrari,612 Scaglietti,2010,premium unleaded (required),532,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Large,Coupe,16,9,2774,313088 +Ferrari,612 Scaglietti,2011,premium unleaded (required),532,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Large,Coupe,16,9,2774,313088 +Mazda,626,2000,regular unleaded,170,6,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,25,19,586,2080 +Mazda,626,2000,regular unleaded,170,6,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,25,19,586,2234 +Mazda,626,2000,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,29,23,586,2000 +Mazda,626,2000,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,19,586,2146 +Mazda,626,2001,premium unleaded (required),165,6,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,25,19,586,22935 +Mazda,626,2001,premium unleaded (required),165,6,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,25,19,586,19935 +Mazda,626,2001,regular unleaded,125,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,19,586,20935 +Mazda,626,2001,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,29,23,586,18735 +Mazda,626,2002,premium unleaded (required),165,6,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,25,19,586,19985 +Mazda,626,2002,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,29,23,586,18785 +Mazda,626,2002,premium unleaded (required),165,6,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,25,19,586,21885 +Maybach,62,2010,premium unleaded (required),604,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,16,10,67,456500 +Maybach,62,2010,premium unleaded (required),543,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury",Large,Sedan,16,10,67,417000 +Maybach,62,2010,premium unleaded (required),631,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,16,10,67,506500 +Maybach,62,2011,premium unleaded (required),543,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury",Large,Sedan,16,10,67,423500 +Maybach,62,2011,premium unleaded (required),620,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,16,10,67,463000 +Maybach,62,2012,premium unleaded (required),620,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,16,10,67,470350 +Maybach,62,2012,premium unleaded (required),543,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury",Large,Sedan,16,10,67,430450 +McLaren,650S Coupe,2015,premium unleaded (required),641,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,22,16,416,265500 +McLaren,650S Spider,2015,premium unleaded (required),641,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,22,16,416,280225 +Mazda,6,2015,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,26,586,24895 +Mazda,6,2015,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,26,586,22895 +Mazda,6,2015,regular unleaded,184,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,37,25,586,23845 +Mazda,6,2015,regular unleaded,184,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,37,25,586,21190 +Mazda,6,2015,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,40,28,586,29895 +Mazda,6,2016,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,26,586,22995 +Mazda,6,2016,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,26,586,24995 +Mazda,6,2016,regular unleaded,184,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,37,25,586,21495 +Mazda,6,2016,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,26,586,30195 +Mazda,6,2016,regular unleaded,184,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,37,25,586,23945 +Mazda,6,2017,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,26,586,30695 +Mazda,6,2017,regular unleaded,184,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,34,24,586,21945 +Mazda,6,2017,regular unleaded,184,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,34,24,586,24195 +Mazda,6,2017,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,26,586,22995 +Mazda,6,2017,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,26,586,25245 +BMW,7 Series,2015,premium unleaded (required),535,12,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,20,13,3916,141200 +BMW,7 Series,2015,premium unleaded (required),315,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,29,19,3916,78000 +BMW,7 Series,2015,premium unleaded (required),445,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,25,16,3916,91000 +BMW,7 Series,2015,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,16,3916,94000 +BMW,7 Series,2015,premium unleaded (required),315,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,28,19,3916,81000 +BMW,7 Series,2015,premium unleaded (required),315,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,29,19,3916,74000 +BMW,7 Series,2015,premium unleaded (required),445,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,25,17,3916,87300 +BMW,7 Series,2015,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,16,3916,90300 +BMW,7 Series,2015,diesel,255,6,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Large,Sedan,31,23,3916,82500 +BMW,7 Series,2016,premium unleaded (required),445,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,25,17,3916,94400 +BMW,7 Series,2016,premium unleaded (required),320,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,29,21,3916,81300 +BMW,7 Series,2016,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,25,16,3916,97400 +BMW,7 Series,2017,premium unleaded (required),445,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,26,17,3916,94600 +BMW,7 Series,2017,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,25,16,3916,97600 +BMW,7 Series,2017,premium unleaded (required),320,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,28,19,3916,84500 +BMW,7 Series,2017,premium unleaded (required),320,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,29,21,3916,81500 +Porsche,718 Cayman,2017,premium unleaded (required),300,4,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,21,1715,53900 +Porsche,718 Cayman,2017,premium unleaded (required),350,4,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,26,20,1715,66300 +Volvo,740,1990,regular unleaded,114,4,MANUAL,rear wheel drive,4,Luxury,Midsize,Sedan,26,19,870,2000 +Volvo,740,1990,regular unleaded,153,4,MANUAL,rear wheel drive,4,Luxury,Midsize,Wagon,26,19,870,2000 +Volvo,740,1990,regular unleaded,114,4,MANUAL,rear wheel drive,4,Luxury,Midsize,Wagon,26,19,870,2000 +Volvo,740,1990,regular unleaded,114,4,MANUAL,rear wheel drive,4,Luxury,Midsize,Wagon,26,19,870,2000 +Volvo,740,1990,regular unleaded,114,4,MANUAL,rear wheel drive,4,Luxury,Midsize,Sedan,26,19,870,2000 +Volvo,740,1990,regular unleaded,153,4,MANUAL,rear wheel drive,4,Luxury,Midsize,Sedan,23,18,870,2000 +Volvo,740,1991,regular unleaded,162,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Wagon,20,17,870,2000 +Volvo,740,1991,regular unleaded,162,4,MANUAL,rear wheel drive,4,"Luxury,Performance",Midsize,Wagon,24,18,870,2000 +Volvo,740,1991,regular unleaded,114,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,24,18,870,2000 +Volvo,740,1991,regular unleaded,162,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,20,17,870,2000 +Volvo,740,1991,regular unleaded,162,4,MANUAL,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,18,870,2000 +Volvo,740,1991,regular unleaded,114,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,24,18,870,2000 +Volvo,740,1992,regular unleaded,162,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Wagon,20,17,870,2000 +Volvo,740,1992,regular unleaded,114,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,26,18,870,2000 +Volvo,740,1992,regular unleaded,114,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,26,18,870,2000 +Volvo,740,1992,regular unleaded,114,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,26,18,870,2000 +Volvo,760,1990,regular unleaded,144,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,19,15,870,2000 +Volvo,760,1990,regular unleaded,162,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,20,16,870,2000 +Volvo,760,1990,regular unleaded,162,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,20,16,870,2000 +Volvo,780,1990,regular unleaded,188,4,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,20,16,870,2000 +Volvo,780,1990,regular unleaded,144,6,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,19,15,870,2000 +BMW,8 Series,1995,regular unleaded,282,8,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,22,15,3916,4784 +BMW,8 Series,1995,regular unleaded,322,12,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,19,12,3916,5858 +BMW,8 Series,1995,regular unleaded,372,12,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,Performance",Midsize,Coupe,18,10,3916,8488 +BMW,8 Series,1996,regular unleaded,322,12,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,19,12,3916,6954 +BMW,8 Series,1996,regular unleaded,282,8,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,19,14,3916,5680 +BMW,8 Series,1997,regular unleaded,322,12,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,19,12,3916,7624 +BMW,8 Series,1997,regular unleaded,282,8,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,19,14,3916,6693 +Audi,80,1990,regular unleaded,108,4,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,28,19,3105,2000 +Audi,80,1990,regular unleaded,130,5,MANUAL,all wheel drive,4,Luxury,Compact,Sedan,22,16,3105,2000 +Audi,80,1991,regular unleaded,130,5,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,24,18,3105,2000 +Audi,80,1991,regular unleaded,130,5,MANUAL,all wheel drive,4,Luxury,Compact,Sedan,22,16,3105,2000 +Audi,80,1992,regular unleaded,130,5,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,24,18,3105,2000 +Audi,80,1992,regular unleaded,130,5,MANUAL,all wheel drive,4,Luxury,Compact,Sedan,22,16,3105,2000 +Volvo,850,1995,regular unleaded,222,5,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Wagon,24,17,870,2000 +Volvo,850,1995,regular unleaded,168,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,26,18,870,2000 +Volvo,850,1995,regular unleaded,240,5,AUTOMATIC,front wheel drive,4,"Factory Tuner,Luxury,Performance",Midsize,Sedan,24,17,870,2000 +Volvo,850,1995,regular unleaded,168,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,26,18,870,2000 +Volvo,850,1995,regular unleaded,168,5,MANUAL,front wheel drive,4,Luxury,Midsize,Wagon,26,18,870,2000 +Volvo,850,1995,regular unleaded,222,5,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,870,2000 +Volvo,850,1995,regular unleaded,168,5,MANUAL,front wheel drive,4,Luxury,Midsize,Wagon,26,18,870,2000 +Volvo,850,1995,regular unleaded,240,5,AUTOMATIC,front wheel drive,4,"Factory Tuner,Luxury,Performance",Midsize,Wagon,24,17,870,2000 +Volvo,850,1996,regular unleaded,222,5,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,870,2000 +Volvo,850,1996,regular unleaded,222,5,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Wagon,24,17,870,2000 +Volvo,850,1996,regular unleaded,168,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,26,18,870,2000 +Volvo,850,1996,regular unleaded,222,5,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,870,2000 +Volvo,850,1996,regular unleaded,240,5,AUTOMATIC,front wheel drive,4,"Factory Tuner,Luxury,Performance",Midsize,Sedan,24,17,870,2000 +Volvo,850,1996,regular unleaded,168,5,MANUAL,front wheel drive,4,Luxury,Midsize,Wagon,26,18,870,2000 +Volvo,850,1996,regular unleaded,240,5,AUTOMATIC,front wheel drive,4,"Factory Tuner,Luxury,Performance",Midsize,Wagon,24,17,870,2000 +Volvo,850,1996,regular unleaded,222,5,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Wagon,24,17,870,2000 +Volvo,850,1996,regular unleaded,168,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,26,18,870,2000 +Volvo,850,1996,regular unleaded,168,5,MANUAL,front wheel drive,4,Luxury,Midsize,Wagon,26,18,870,2000 +Volvo,850,1997,regular unleaded,168,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,26,18,870,2000 +Volvo,850,1997,regular unleaded,168,5,MANUAL,front wheel drive,4,Luxury,Midsize,Wagon,26,18,870,2000 +Volvo,850,1997,regular unleaded,240,5,AUTOMATIC,front wheel drive,4,"Factory Tuner,Luxury,Performance",Midsize,Sedan,24,17,870,2000 +Volvo,850,1997,regular unleaded,222,5,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Wagon,24,17,870,2000 +Volvo,850,1997,regular unleaded,240,5,AUTOMATIC,front wheel drive,4,"Factory Tuner,Luxury,Performance",Midsize,Wagon,24,17,870,2091 +Volvo,850,1997,regular unleaded,190,5,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Wagon,24,18,870,2000 +Volvo,850,1997,regular unleaded,190,5,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,18,870,2000 +Volvo,850,1997,regular unleaded,222,5,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,870,2000 +Toyota,86,2017,premium unleaded (recommended),205,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,28,21,2031,26255 +Toyota,86,2017,premium unleaded (recommended),200,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Coupe,32,24,2031,26975 +Saab,9-2X,2005,premium unleaded (required),227,4,MANUAL,all wheel drive,4,"Luxury,Performance",Compact,Wagon,24,17,376,26950 +Saab,9-2X,2005,regular unleaded,165,4,MANUAL,all wheel drive,4,"Luxury,Performance",Compact,Wagon,27,20,376,22990 +Saab,9-2X,2006,premium unleaded (required),230,4,MANUAL,all wheel drive,4,"Luxury,Performance",Compact,Wagon,25,18,376,26950 +Saab,9-2X,2006,regular unleaded,173,4,MANUAL,all wheel drive,4,Luxury,Compact,Wagon,26,19,376,22990 +Saab,9-3 Griffin,2012,flex-fuel (premium unleaded recommended/E85),220,4,MANUAL,front wheel drive,4,"Flex Fuel,Luxury",Midsize,Sedan,33,20,376,28900 +Saab,9-3 Griffin,2012,flex-fuel (premium unleaded recommended/E85),220,4,MANUAL,front wheel drive,2,"Flex Fuel,Luxury",Compact,Convertible,33,20,376,44080 +Saab,9-3 Griffin,2012,flex-fuel (premium unleaded recommended/E85),220,4,MANUAL,front wheel drive,2,"Flex Fuel,Luxury",Compact,Convertible,33,20,376,46080 +Saab,9-3 Griffin,2012,premium unleaded (recommended),220,4,MANUAL,all wheel drive,4,Luxury,Midsize,Sedan,30,20,376,37115 +Saab,9-3 Griffin,2012,flex-fuel (premium unleaded recommended/E85),220,4,MANUAL,front wheel drive,2,"Flex Fuel,Luxury",Compact,Convertible,33,20,376,39490 +Saab,9-3 Griffin,2012,flex-fuel (premium unleaded recommended/E85),220,4,MANUAL,front wheel drive,4,"Flex Fuel,Luxury",Midsize,Sedan,33,20,376,34340 +Saab,9-3 Griffin,2012,flex-fuel (premium unleaded recommended/E85),220,4,AUTOMATIC,front wheel drive,2,"Flex Fuel,Luxury",Compact,Convertible,28,18,376,44080 +Saab,9-3 Griffin,2012,flex-fuel (premium unleaded recommended/E85),220,4,AUTOMATIC,front wheel drive,2,"Flex Fuel,Luxury",Compact,Convertible,28,18,376,40840 +Saab,9-3 Griffin,2012,flex-fuel (premium unleaded recommended/E85),220,4,AUTOMATIC,front wheel drive,4,"Flex Fuel,Luxury",Compact,Wagon,28,18,376,31180 +Saab,9-3 Griffin,2012,premium unleaded (recommended),220,4,MANUAL,all wheel drive,4,Luxury,Midsize,Sedan,30,20,376,32395 +Saab,9-3 Griffin,2012,flex-fuel (premium unleaded recommended/E85),220,4,AUTOMATIC,front wheel drive,4,"Flex Fuel,Luxury",Midsize,Sedan,29,19,376,34340 +Saab,9-3 Griffin,2012,premium unleaded (recommended),220,4,AUTOMATIC,all wheel drive,4,Luxury,Compact,Wagon,29,18,376,34975 +Saab,9-3 Griffin,2012,premium unleaded (recommended),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,29,18,376,37115 +Saab,9-3 Griffin,2012,premium unleaded (recommended),220,4,MANUAL,all wheel drive,4,Luxury,Compact,Wagon,30,20,376,34975 +Saab,9-3 Griffin,2012,flex-fuel (premium unleaded recommended/E85),220,4,AUTOMATIC,front wheel drive,4,"Flex Fuel,Luxury",Midsize,Sedan,29,19,376,30250 +Saab,9-3 Griffin,2012,premium unleaded (recommended),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,29,18,376,32395 +Saab,9-3 Griffin,2012,flex-fuel (premium unleaded recommended/E85),220,4,MANUAL,front wheel drive,4,"Flex Fuel,Luxury",Compact,Wagon,33,20,376,29830 +Saab,9-3 Griffin,2012,flex-fuel (premium unleaded recommended/E85),220,4,AUTOMATIC,front wheel drive,2,"Flex Fuel,Luxury",Compact,Convertible,28,18,376,46080 +Saab,9-3,2009,premium unleaded (recommended),210,4,AUTOMATIC,all wheel drive,4,Luxury,Compact,Wagon,27,17,376,37810 +Saab,9-3,2009,premium unleaded (recommended),280,6,AUTOMATIC,front wheel drive,2,"Luxury,Performance",Compact,Convertible,24,15,376,51330 +Saab,9-3,2009,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Wagon,27,19,376,38305 +Saab,9-3,2009,premium unleaded (recommended),280,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Compact,Wagon,24,15,376,44885 +Saab,9-3,2009,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,29,19,376,30360 +Saab,9-3,2009,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Luxury,Compact,Convertible,27,19,376,42130 +Saab,9-3,2009,premium unleaded (recommended),280,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,15,376,43605 +Saab,9-3,2009,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Luxury,Compact,Wagon,29,19,376,31790 +Saab,9-3,2009,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Wagon,27,19,376,35315 +Saab,9-3,2009,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,28,19,376,37140 +Saab,9-3,2009,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,28,19,376,34150 +Saab,9-3,2009,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,27,19,376,44455 +Saab,9-3,2009,premium unleaded (recommended),210,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,27,17,376,36395 +Saab,9-3,2009,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,27,19,376,47345 +Saab,9-3,2010,premium unleaded (recommended),207,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,27,17,376,32395 +Saab,9-3,2010,premium unleaded (recommended),207,4,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,31,21,376,28900 +Saab,9-3,2010,premium unleaded (recommended),207,4,MANUAL,front wheel drive,4,Luxury,Compact,Wagon,31,21,376,30330 +Saab,9-3,2010,premium unleaded (recommended),207,4,MANUAL,front wheel drive,2,Luxury,Compact,Convertible,29,20,376,39990 +Saab,9-3,2010,premium unleaded (recommended),207,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,27,17,376,38115 +Saab,9-3,2010,premium unleaded (recommended),207,4,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,27,19,376,45080 +Saab,9-3,2010,premium unleaded (recommended),207,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,28,19,376,35340 +Saab,9-3,2010,premium unleaded (recommended),207,4,AUTOMATIC,all wheel drive,4,Luxury,Compact,Wagon,27,17,376,36975 +Saab,9-3,2010,premium unleaded (recommended),207,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Wagon,27,19,376,37020 +Saab,9-3,2011,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,31,21,376,28900 +Saab,9-3,2011,premium unleaded (recommended),210,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,27,17,376,38115 +Saab,9-3,2011,premium unleaded (recommended),210,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,27,17,376,32395 +Saab,9-3,2011,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Luxury,Compact,Convertible,29,20,376,39990 +Saab,9-3,2011,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Luxury,Compact,Wagon,31,21,376,30330 +Saab,9-3,2011,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Wagon,27,19,376,37020 +Saab,9-3,2011,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,28,19,376,35340 +Saab,9-3,2011,premium unleaded (recommended),210,4,AUTOMATIC,all wheel drive,4,Luxury,Compact,Wagon,27,17,376,36975 +Saab,9-3,2011,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,27,19,376,45080 +Saab,9-4X,2011,premium unleaded (required),265,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,18,376,37250 +Saab,9-4X,2011,premium unleaded (required),265,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,17,376,35875 +Saab,9-4X,2011,premium unleaded (required),265,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,18,376,33380 +Saab,9-4X,2011,premium unleaded (required),265,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,17,376,40245 +Saab,9-4X,2011,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,22,15,376,48010 +Saab,9-5,2009,premium unleaded (recommended),260,4,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,27,17,376,39400 +Saab,9-5,2009,premium unleaded (recommended),260,4,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Wagon,27,17,376,43270 +Saab,9-5,2009,premium unleaded (recommended),260,4,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Wagon,27,17,376,39650 +Saab,9-5,2009,premium unleaded (recommended),260,4,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,27,17,376,38380 +Saab,9-5,2009,premium unleaded (recommended),260,4,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Wagon,27,17,376,40765 +Saab,9-5,2009,premium unleaded (recommended),260,4,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,27,17,376,42000 +Saab,9-5,2010,premium unleaded (recommended),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,27,16,376,49165 +Saab,9-5,2011,premium unleaded (recommended),220,4,MANUAL,front wheel drive,4,Luxury,Large,Sedan,33,20,376,38525 +Saab,9-5,2011,premium unleaded (recommended),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,27,17,376,49565 +Saab,9-5,2011,premium unleaded (recommended),220,4,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,28,18,376,43435 +Saab,9-5,2011,premium unleaded (recommended),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,27,17,376,48030 +Saab,9-7X,2007,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,4dr SUV,20,14,376,39190 +Saab,9-7X,2007,regular unleaded,300,8,AUTOMATIC,all wheel drive,4,Luxury,Midsize,4dr SUV,19,13,376,41190 +Saab,9-7X,2008,regular unleaded,300,8,AUTOMATIC,all wheel drive,4,Luxury,Midsize,4dr SUV,19,13,376,42770 +Saab,9-7X,2008,regular unleaded,285,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,4dr SUV,20,14,376,40400 +Saab,9-7X,2008,regular unleaded,390,8,AUTOMATIC,all wheel drive,4,Luxury,Midsize,4dr SUV,16,12,376,46530 +Saab,9-7X,2009,regular unleaded,390,8,AUTOMATIC,all wheel drive,4,Luxury,Midsize,4dr SUV,16,12,376,49105 +Saab,9-7X,2009,regular unleaded,285,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,4dr SUV,20,14,376,42615 +Saab,9-7X,2009,regular unleaded,300,8,AUTOMATIC,all wheel drive,4,Luxury,Midsize,4dr SUV,20,14,376,45345 +Saab,9000,1996,regular unleaded,225,4,MANUAL,front wheel drive,4,"Hatchback,Factory Tuner,Luxury,Performance",Midsize,4dr Hatchback,25,18,376,2000 +Saab,9000,1996,regular unleaded,210,6,AUTOMATIC,front wheel drive,4,"Hatchback,Luxury",Midsize,4dr Hatchback,24,16,376,2000 +Saab,9000,1996,regular unleaded,170,4,MANUAL,front wheel drive,4,"Hatchback,Luxury",Midsize,4dr Hatchback,25,18,376,2000 +Saab,9000,1996,regular unleaded,200,4,MANUAL,front wheel drive,4,"Hatchback,Luxury",Midsize,4dr Hatchback,25,18,376,2000 +Saab,9000,1997,regular unleaded,210,6,AUTOMATIC,front wheel drive,4,"Hatchback,Luxury",Midsize,4dr Hatchback,24,16,376,2122 +Saab,9000,1997,regular unleaded,170,4,MANUAL,front wheel drive,4,"Hatchback,Luxury",Midsize,4dr Hatchback,26,18,376,2000 +Saab,9000,1997,regular unleaded,225,4,MANUAL,front wheel drive,4,"Hatchback,Factory Tuner,Luxury,Performance",Midsize,4dr Hatchback,26,18,376,2145 +Saab,9000,1997,regular unleaded,200,4,MANUAL,front wheel drive,4,"Hatchback,Luxury",Midsize,4dr Hatchback,26,18,376,2084 +Saab,9000,1997,regular unleaded,200,4,MANUAL,front wheel drive,4,"Hatchback,Luxury",Midsize,4dr Hatchback,26,18,376,2063 +Saab,9000,1998,regular unleaded,225,4,MANUAL,front wheel drive,4,"Hatchback,Luxury",Midsize,4dr Hatchback,25,18,376,2172 +Saab,900,1996,regular unleaded,185,4,MANUAL,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,26,18,376,2000 +Saab,900,1996,regular unleaded,185,4,MANUAL,front wheel drive,4,"Hatchback,Luxury,Performance",Compact,4dr Hatchback,23,15,376,2000 +Saab,900,1996,regular unleaded,150,4,MANUAL,front wheel drive,4,"Hatchback,Luxury",Compact,4dr Hatchback,26,18,376,2000 +Saab,900,1996,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,"Hatchback,Luxury",Compact,4dr Hatchback,23,17,376,2000 +Saab,900,1996,regular unleaded,185,4,MANUAL,front wheel drive,2,"Luxury,Performance",Compact,Convertible,26,18,376,2000 +Saab,900,1996,regular unleaded,170,6,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,23,17,376,2000 +Saab,900,1996,regular unleaded,150,4,MANUAL,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,26,18,376,2000 +Saab,900,1996,regular unleaded,150,4,MANUAL,front wheel drive,2,Luxury,Compact,Convertible,26,18,376,2000 +Saab,900,1997,regular unleaded,185,4,MANUAL,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,25,18,376,2000 +Saab,900,1997,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,"Hatchback,Luxury",Compact,4dr Hatchback,23,17,376,2000 +Saab,900,1997,regular unleaded,150,4,MANUAL,front wheel drive,2,Luxury,Compact,Convertible,26,18,376,2000 +Saab,900,1997,regular unleaded,150,4,MANUAL,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,26,18,376,2000 +Saab,900,1997,regular unleaded,185,4,MANUAL,front wheel drive,2,"Luxury,Performance",Compact,Convertible,25,18,376,2078 +Saab,900,1997,regular unleaded,185,4,MANUAL,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,25,18,376,2000 +Saab,900,1997,regular unleaded,185,4,MANUAL,front wheel drive,4,"Hatchback,Luxury,Performance",Compact,4dr Hatchback,25,18,376,2000 +Saab,900,1997,regular unleaded,185,4,MANUAL,front wheel drive,4,"Hatchback,Luxury,Performance",Compact,4dr Hatchback,25,18,376,2000 +Saab,900,1997,regular unleaded,170,6,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,23,17,376,2117 +Saab,900,1997,regular unleaded,150,4,MANUAL,front wheel drive,4,"Hatchback,Luxury",Compact,4dr Hatchback,26,18,376,2000 +Saab,900,1997,regular unleaded,185,4,MANUAL,front wheel drive,2,"Luxury,Performance",Compact,Convertible,25,18,376,2115 +Saab,900,1998,regular unleaded,185,4,MANUAL,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,25,18,376,2000 +Saab,900,1998,regular unleaded,185,4,MANUAL,front wheel drive,4,"Hatchback,Luxury,Performance",Compact,4dr Hatchback,24,18,376,2000 +Saab,900,1998,regular unleaded,185,4,MANUAL,front wheel drive,2,"Luxury,Performance",Compact,Convertible,25,18,376,2268 +Saab,900,1998,regular unleaded,185,4,MANUAL,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,24,18,376,2000 +Audi,90,1993,regular unleaded,172,6,MANUAL,all wheel drive,4,Luxury,Compact,Sedan,20,15,3105,2000 +Audi,90,1993,regular unleaded,172,6,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,24,18,3105,2000 +Audi,90,1993,regular unleaded,172,6,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,24,18,3105,2000 +Audi,90,1994,regular unleaded,172,6,MANUAL,all wheel drive,4,Luxury,Compact,Sedan,22,17,3105,2000 +Audi,90,1994,regular unleaded,172,6,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,24,18,3105,2000 +Audi,90,1994,regular unleaded,172,6,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,24,18,3105,2000 +Audi,90,1995,regular unleaded,172,6,MANUAL,all wheel drive,4,Luxury,Compact,Sedan,23,17,3105,2000 +Audi,90,1995,regular unleaded,172,6,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,24,17,3105,2000 +Audi,90,1995,regular unleaded,172,6,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,24,17,3105,2000 +Porsche,911,2015,premium unleaded (required),350,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,27,19,1715,96200 +Porsche,911,2015,premium unleaded (required),430,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,25,18,1715,132800 +Porsche,911,2015,premium unleaded (required),430,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,26,18,1715,120900 +Porsche,911,2015,premium unleaded (required),400,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,26,18,1715,105630 +Porsche,911,2015,premium unleaded (required),400,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,27,19,1715,98900 +Porsche,911,2015,premium unleaded (required),520,6,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,24,17,1715,163000 +Porsche,911,2015,premium unleaded (required),350,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,26,19,1715,102930 +Porsche,911,2015,premium unleaded (required),520,6,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,24,17,1715,151100 +Porsche,911,2015,premium unleaded (required),350,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,27,19,1715,91030 +Porsche,911,2015,premium unleaded (required),350,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,27,19,1715,84300 +Porsche,911,2015,premium unleaded (required),430,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,26,18,1715,114200 +Porsche,911,2015,premium unleaded (required),560,6,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,24,17,1715,182700 +Porsche,911,2015,premium unleaded (required),560,6,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,24,17,1715,194600 +Porsche,911,2015,premium unleaded (required),475,6,AUTOMATED_MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,20,15,1715,130400 +Porsche,911,2015,premium unleaded (required),400,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,27,19,1715,110800 +Porsche,911,2015,premium unleaded (required),400,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,26,18,1715,117530 +Porsche,911,2015,premium unleaded (required),430,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,25,18,1715,126100 +Porsche,911,2015,premium unleaded (required),350,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,26,18,1715,101600 +Porsche,911,2015,premium unleaded (required),400,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,26,18,1715,116200 +Porsche,911,2016,premium unleaded (required),350,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,26,19,1715,102930 +Porsche,911,2016,premium unleaded (required),430,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,26,18,1715,120900 +Porsche,911,2016,premium unleaded (required),400,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,26,18,1715,105630 +Porsche,911,2016,premium unleaded (required),430,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,25,18,1715,126100 +Porsche,911,2016,premium unleaded (required),350,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,27,19,1715,91030 +Porsche,911,2016,premium unleaded (required),400,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,27,19,1715,98900 +Porsche,911,2016,premium unleaded (required),430,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,25,18,1715,132800 +Porsche,911,2016,premium unleaded (required),350,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,27,19,1715,84300 +Porsche,911,2016,premium unleaded (required),520,6,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,24,17,1715,151100 +Porsche,911,2016,premium unleaded (required),350,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,26,19,1715,104600 +Porsche,911,2016,premium unleaded (required),350,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,26,18,1715,102930 +Porsche,911,2016,premium unleaded (required),430,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,26,18,1715,132800 +Porsche,911,2016,premium unleaded (required),430,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,26,18,1715,114200 +Porsche,911,2016,premium unleaded (required),350,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,27,19,1715,88800 +Porsche,911,2016,premium unleaded (required),560,6,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,24,17,1715,194600 +Porsche,911,2016,premium unleaded (required),350,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,27,19,1715,96200 +Porsche,911,2016,premium unleaded (required),400,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,26,18,1715,117530 +Porsche,911,2016,premium unleaded (required),350,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,27,19,1715,94800 +Porsche,911,2016,premium unleaded (required),400,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,27,19,1715,110800 +Porsche,911,2016,premium unleaded (required),400,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,26,18,1715,117530 +Porsche,911,2016,premium unleaded (required),350,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,27,19,1715,98500 +Porsche,911,2016,premium unleaded (required),520,6,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,24,17,1715,163000 +Porsche,911,2016,premium unleaded (required),560,6,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,24,17,1715,182700 +Porsche,911,2016,premium unleaded (required),475,6,AUTOMATED_MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,20,15,1715,130400 +Porsche,911,2016,premium unleaded (required),500,6,AUTOMATED_MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,20,14,1715,175900 +Porsche,911,2017,premium unleaded (required),540,6,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,29,20,1715,159200 +Porsche,911,2017,premium unleaded (required),370,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,19,1715,108600 +Porsche,911,2017,premium unleaded (required),580,6,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,28,20,1715,200400 +Porsche,911,2017,premium unleaded (required),420,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,28,20,1715,115700 +Porsche,911,2017,premium unleaded (required),420,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,20,1715,110300 +Porsche,911,2017,premium unleaded (required),420,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,20,1715,122600 +Porsche,911,2017,premium unleaded (required),420,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,20,1715,103400 +Porsche,911,2017,premium unleaded (required),370,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,29,20,1715,96300 +Porsche,911,2017,premium unleaded (required),370,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,29,20,1715,101700 +Porsche,911,2017,premium unleaded (required),540,6,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,29,20,1715,171500 +Porsche,911,2017,premium unleaded (required),580,6,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,20,1715,188100 +Porsche,911,2017,premium unleaded (required),370,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,29,20,1715,108600 +Porsche,911,2017,premium unleaded (required),420,6,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,28,20,1715,122600 +Porsche,911,2017,premium unleaded (required),370,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,29,20,1715,89400 +Porsche,928,1993,regular unleaded,345,8,MANUAL,rear wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,17,11,1715,6294 +Porsche,928,1994,regular unleaded,345,8,MANUAL,rear wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,17,11,1715,7419 +Porsche,928,1995,regular unleaded,345,8,MANUAL,rear wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,17,11,1715,9400 +Mazda,929,1993,regular unleaded,195,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,Sedan,22,17,586,2000 +Mazda,929,1994,regular unleaded,193,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,Sedan,22,17,586,2000 +Mazda,929,1995,regular unleaded,193,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,Sedan,22,17,586,2000 +Volvo,940,1993,regular unleaded,114,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,25,17,870,2000 +Volvo,940,1993,regular unleaded,114,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,25,17,870,2000 +Volvo,940,1993,regular unleaded,162,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,22,17,870,2000 +Volvo,940,1993,regular unleaded,114,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,25,17,870,2000 +Volvo,940,1993,regular unleaded,114,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,25,17,870,2000 +Volvo,940,1993,regular unleaded,162,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,22,17,870,2000 +Volvo,940,1994,regular unleaded,114,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,24,17,870,2000 +Volvo,940,1994,regular unleaded,114,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,24,17,870,2000 +Volvo,940,1994,regular unleaded,162,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,22,17,870,2000 +Volvo,940,1994,regular unleaded,162,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,22,17,870,2000 +Volvo,940,1995,regular unleaded,162,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,22,17,870,2000 +Volvo,940,1995,regular unleaded,162,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,24,17,870,2000 +Volvo,940,1995,regular unleaded,162,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,22,17,870,2000 +Volvo,940,1995,regular unleaded,114,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,24,17,870,2000 +Porsche,944,1990,regular unleaded,208,4,MANUAL,rear wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,24,15,1715,2667 +Porsche,944,1990,regular unleaded,208,4,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,24,15,1715,3083 +Porsche,944,1991,regular unleaded,208,4,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,24,15,1715,3578 +Porsche,944,1991,regular unleaded,208,4,MANUAL,rear wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,24,15,1715,3047 +Volvo,960,1995,regular unleaded,181,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,23,15,870,2000 +Volvo,960,1995,regular unleaded,181,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,23,15,870,2000 +Volvo,960,1996,regular unleaded,181,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,24,16,870,2000 +Volvo,960,1996,regular unleaded,181,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,24,16,870,2000 +Volvo,960,1997,regular unleaded,181,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,24,16,870,2000 +Volvo,960,1997,regular unleaded,181,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,24,16,870,2000 +Porsche,968,1993,regular unleaded,236,4,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,24,15,1715,4651 +Porsche,968,1993,regular unleaded,236,4,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,24,15,1715,3839 +Porsche,968,1994,regular unleaded,236,4,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,24,15,1715,4191 +Porsche,968,1994,regular unleaded,236,4,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,24,15,1715,4878 +Porsche,968,1995,regular unleaded,236,4,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,24,15,1715,4723 +Porsche,968,1995,regular unleaded,236,4,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,24,15,1715,5576 +Audi,A3,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,"Diesel,Luxury",Compact,Sedan,43,31,3105,35150 +Audi,A3,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,"Diesel,Luxury",Compact,Sedan,43,31,3105,32600 +Audi,A3,2015,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,4,Luxury,Compact,Sedan,33,24,3105,33200 +Audi,A3,2015,premium unleaded (recommended),170,4,AUTOMATED_MANUAL,front wheel drive,2,Luxury,Compact,Convertible,35,24,3105,44050 +Audi,A3,2015,premium unleaded (recommended),170,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,33,23,3105,29900 +Audi,A3,2015,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,4,Luxury,Compact,Sedan,33,24,3105,41650 +Audi,A3,2015,premium unleaded (recommended),170,4,AUTOMATED_MANUAL,front wheel drive,2,Luxury,Compact,Convertible,35,24,3105,38150 +Audi,A3,2015,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,4,Luxury,Compact,Sedan,33,24,3105,35750 +Audi,A3,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,"Diesel,Luxury",Compact,Sedan,43,31,3105,41050 +Audi,A3,2015,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,2,Luxury,Compact,Convertible,32,23,3105,47050 +Audi,A3,2015,premium unleaded (recommended),170,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,33,23,3105,38350 +Audi,A3,2015,premium unleaded (recommended),170,4,AUTOMATED_MANUAL,front wheel drive,2,Luxury,Compact,Convertible,35,24,3105,35600 +Audi,A3,2015,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,2,Luxury,Compact,Convertible,32,23,3105,38600 +Audi,A3,2015,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,2,Luxury,Compact,Convertible,32,23,3105,41150 +Audi,A3,2015,premium unleaded (recommended),170,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,33,23,3105,32450 +Audi,A3,2016,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,4,Luxury,Compact,Sedan,33,24,3105,34200 +Audi,A3,2016,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,2,Luxury,Compact,Convertible,32,23,3105,39600 +Audi,A3,2016,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,4,Luxury,Compact,Sedan,33,24,3105,37700 +Audi,A3,2016,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,"Diesel,Luxury",Compact,Sedan,43,31,3105,33200 +Audi,A3,2016,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,4,Luxury,Compact,Sedan,33,24,3105,43050 +Audi,A3,2016,premium unleaded (recommended),170,4,AUTOMATED_MANUAL,front wheel drive,2,Luxury,Compact,Convertible,35,24,3105,39300 +Audi,A3,2016,premium unleaded (recommended),170,4,AUTOMATED_MANUAL,front wheel drive,2,Luxury,Compact,Convertible,35,24,3105,36600 +Audi,A3,2016,premium unleaded (recommended),170,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,33,23,3105,39750 +Audi,A3,2016,premium unleaded (recommended),170,4,AUTOMATED_MANUAL,front wheel drive,2,Luxury,Compact,Convertible,35,24,3105,45450 +Audi,A3,2016,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,2,Luxury,Compact,Convertible,32,23,3105,48450 +Audi,A3,2016,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,"Diesel,Luxury",Compact,Sedan,43,31,3105,36700 +Audi,A3,2016,premium unleaded (recommended),170,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,33,23,3105,34400 +Audi,A3,2016,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,"Diesel,Luxury",Compact,Sedan,43,31,3105,35900 +Audi,A3,2016,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,2,Luxury,Compact,Convertible,32,23,3105,43100 +Audi,A3,2016,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,4,Luxury,Compact,Sedan,33,24,3105,36900 +Audi,A3,2016,premium unleaded (recommended),170,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,33,23,3105,33600 +Audi,A3,2016,premium unleaded (recommended),170,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,33,23,3105,30900 +Audi,A3,2016,premium unleaded (recommended),170,4,AUTOMATED_MANUAL,front wheel drive,2,Luxury,Compact,Convertible,35,24,3105,40100 +Audi,A3,2016,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,2,Luxury,Compact,Convertible,32,23,3105,42300 +Audi,A3,2016,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,"Diesel,Luxury",Compact,Sedan,43,31,3105,42050 +Audi,A3,2017,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,4,Luxury,Compact,Sedan,35,26,3105,43150 +Audi,A3,2017,premium unleaded (recommended),186,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,35,26,3105,40150 +Audi,A3,2017,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,4,Luxury,Compact,Sedan,35,26,3105,37450 +Audi,A3,2017,premium unleaded (recommended),186,4,AUTOMATED_MANUAL,front wheel drive,2,Luxury,Compact,Convertible,34,25,3105,37600 +Audi,A3,2017,premium unleaded (recommended),186,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,35,26,3105,34450 +Audi,A3,2017,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,2,Luxury,Compact,Convertible,34,25,3105,40300 +Audi,A3,2017,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,2,Luxury,Compact,Convertible,34,25,3105,49250 +Audi,A3,2017,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,2,Luxury,Compact,Convertible,34,25,3105,43550 +Audi,A3,2017,premium unleaded (recommended),186,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,35,26,3105,31200 +Audi,A3,2017,premium unleaded (recommended),186,4,AUTOMATED_MANUAL,front wheel drive,2,Luxury,Compact,Convertible,34,25,3105,40850 +Audi,A3,2017,premium unleaded (recommended),186,4,AUTOMATED_MANUAL,front wheel drive,2,Luxury,Compact,Convertible,34,25,3105,46550 +Audi,A3,2017,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,4,Luxury,Compact,Sedan,35,26,3105,34200 +Audi,A4 allroad,2017,premium unleaded (recommended),252,4,AUTOMATED_MANUAL,all wheel drive,4,Luxury,Midsize,Wagon,28,23,3105,51400 +Audi,A4 allroad,2017,premium unleaded (recommended),252,4,AUTOMATED_MANUAL,all wheel drive,4,Luxury,Midsize,Wagon,28,23,3105,44000 +Audi,A4 allroad,2017,premium unleaded (recommended),252,4,AUTOMATED_MANUAL,all wheel drive,4,Luxury,Midsize,Wagon,28,23,3105,47000 +Audi,A4,2015,premium unleaded (required),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,22,3105,45000 +Audi,A4,2015,premium unleaded (required),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,22,3105,39700 +Audi,A4,2015,premium unleaded (required),220,4,MANUAL,all wheel drive,4,Luxury,Midsize,Sedan,32,22,3105,43800 +Audi,A4,2015,premium unleaded (required),220,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,32,24,3105,35500 +Audi,A4,2015,premium unleaded (required),220,4,MANUAL,all wheel drive,4,Luxury,Midsize,Sedan,32,22,3105,38500 +Audi,A4,2015,premium unleaded (required),220,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,32,24,3105,37600 +Audi,A4,2015,premium unleaded (required),220,4,MANUAL,all wheel drive,4,Luxury,Midsize,Sedan,32,22,3105,36400 +Audi,A4,2015,premium unleaded (required),220,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,32,24,3105,42900 +Audi,A4,2015,premium unleaded (required),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,22,3105,37600 +Audi,A4,2016,premium unleaded (required),220,4,MANUAL,all wheel drive,4,Luxury,Midsize,Sedan,32,22,3105,37000 +Audi,A4,2016,premium unleaded (required),220,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,31,22,3105,38000 +Audi,A4,2016,premium unleaded (required),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,22,3105,38000 +Audi,A4,2016,premium unleaded (required),220,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,31,22,3105,35900 +Audi,A4,2016,premium unleaded (required),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,22,3105,40100 +Audi,A4,2016,premium unleaded (required),220,4,MANUAL,all wheel drive,4,Luxury,Midsize,Sedan,32,22,3105,39100 +Audi,A4,2017,premium unleaded (recommended),252,4,AUTOMATED_MANUAL,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,33,25,3105,37300 +Audi,A4,2017,premium unleaded (recommended),190,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,37,27,3105,34900 +Audi,A4,2017,premium unleaded (recommended),252,4,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,24,3105,48000 +Audi,A4,2017,premium unleaded (recommended),252,4,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,24,3105,43200 +Audi,A4,2017,premium unleaded (recommended),252,4,AUTOMATED_MANUAL,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,33,25,3105,41100 +Audi,A4,2017,premium unleaded (recommended),252,4,AUTOMATED_MANUAL,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,33,25,3105,45900 +Audi,A4,2017,premium unleaded (recommended),252,4,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,24,3105,39400 +Audi,A4,2017,premium unleaded (recommended),190,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,37,27,3105,38700 +Audi,A4,2017,premium unleaded (recommended),190,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,37,27,3105,37850 +Audi,A4,2017,premium unleaded (recommended),252,4,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,24,3105,42350 +Audi,A5,2016,premium unleaded (required),220,4,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Coupe,31,22,3105,43800 +Audi,A5,2016,premium unleaded (required),220,4,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Coupe,31,22,3105,41500 +Audi,A5,2016,premium unleaded (required),220,4,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Convertible,29,21,3105,47900 +Audi,A5,2016,premium unleaded (required),220,4,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Convertible,29,21,3105,50200 +Audi,A5,2016,premium unleaded (required),220,4,MANUAL,all wheel drive,2,Luxury,Midsize,Coupe,32,22,3105,40500 +Audi,A5,2016,premium unleaded (required),220,4,MANUAL,all wheel drive,2,Luxury,Midsize,Coupe,32,22,3105,42800 +Audi,A5,2017,flex-fuel (premium unleaded recommended/E85),220,4,MANUAL,all wheel drive,2,"Flex Fuel,Luxury",Midsize,Coupe,32,23,3105,41200 +Audi,A5,2017,flex-fuel (premium unleaded recommended/E85),220,4,AUTOMATIC,all wheel drive,2,"Flex Fuel,Luxury",Midsize,Convertible,21,15,3105,48600 +Audi,A5,2017,flex-fuel (premium unleaded recommended/E85),220,4,AUTOMATIC,all wheel drive,2,"Flex Fuel,Luxury",Midsize,Coupe,22,15,3105,42200 +Audi,A6,2015,diesel,240,6,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Midsize,Sedan,38,24,3105,58700 +Audi,A6,2015,premium unleaded (recommended),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,29,20,3105,50450 +Audi,A6,2015,premium unleaded (recommended),220,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,33,25,3105,44800 +Audi,A6,2015,premium unleaded (required),310,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,27,18,3105,60100 +Audi,A6,2015,premium unleaded (recommended),220,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,33,25,3105,48350 +Audi,A6,2015,premium unleaded (required),310,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,27,18,3105,56300 +Audi,A6,2015,premium unleaded (recommended),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,29,20,3105,46900 +Audi,A6,2015,diesel,240,6,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Midsize,Sedan,38,24,3105,62500 +Audi,A6,2016,premium unleaded (recommended),252,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,32,22,3105,52100 +Audi,A6,2016,premium unleaded (recommended),252,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,35,24,3105,49900 +Audi,A6,2016,premium unleaded (recommended),252,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,35,24,3105,46200 +Audi,A6,2016,diesel,240,6,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Midsize,Sedan,38,25,3105,59500 +Audi,A6,2016,premium unleaded (required),333,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,30,20,3105,61600 +Audi,A6,2016,premium unleaded (required),333,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,30,20,3105,57400 +Audi,A6,2016,diesel,240,6,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Midsize,Sedan,38,25,3105,63700 +Audi,A6,2016,premium unleaded (recommended),252,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,32,22,3105,48400 +Audi,A6,2017,premium unleaded (recommended),252,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,22,3105,53800 +Audi,A6,2017,premium unleaded (required),333,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,22,3105,61600 +Audi,A6,2017,premium unleaded (required),340,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,22,3105,67600 +Audi,A6,2017,premium unleaded (required),333,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,21,3105,58600 +Audi,A6,2017,premium unleaded (recommended),252,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,32,22,3105,49800 +Audi,A6,2017,premium unleaded (recommended),252,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,354,24,3105,51600 +Audi,A6,2017,premium unleaded (recommended),252,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,34,24,3105,47600 +Audi,A7,2015,premium unleaded (required),310,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,3105,65900 +Audi,A7,2015,premium unleaded (required),310,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,3105,69750 +Audi,A7,2015,diesel,240,6,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Large,Sedan,38,24,3105,68300 +Audi,A7,2015,diesel,240,6,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Large,Sedan,38,24,3105,72150 +Audi,A7,2016,diesel,240,6,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Large,Sedan,38,25,3105,70400 +Audi,A7,2016,premium unleaded (required),333,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,30,20,3105,68300 +Audi,A7,2016,diesel,240,6,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Large,Sedan,35,24,3105,73050 +Audi,A7,2016,premium unleaded (required),333,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,30,20,3105,70950 +Audi,A7,2017,premium unleaded (required),333,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,29,21,3105,68800 +Audi,A7,2017,premium unleaded (required),333,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,29,21,3105,71350 +Audi,A8,2016,diesel,240,6,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Large,Sedan,36,24,3105,85200 +Audi,A8,2016,premium unleaded (required),500,12,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,22,14,3105,137900 +Audi,A8,2016,premium unleaded (required),450,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,29,18,3105,90500 +Audi,A8,2016,premium unleaded (required),333,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,3105,81500 +Audi,A8,2017,premium unleaded (required),450,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,29,18,3105,91500 +Audi,A8,2017,premium unleaded (required),333,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,29,19,3105,82500 +GMC,Acadia Limited,2017,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,549,43850 +GMC,Acadia Limited,2017,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,549,45850 +GMC,Acadia,2015,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,549,33975 +GMC,Acadia,2015,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,549,40820 +GMC,Acadia,2015,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,16,549,42820 +GMC,Acadia,2015,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,549,42095 +GMC,Acadia,2015,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,16,549,44095 +GMC,Acadia,2015,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,16,549,38555 +GMC,Acadia,2015,regular unleaded,288,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,549,47690 +GMC,Acadia,2015,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,16,549,35975 +GMC,Acadia,2015,regular unleaded,288,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,16,549,49690 +GMC,Acadia,2015,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,549,36555 +GMC,Acadia,2016,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,549,36755 +GMC,Acadia,2016,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,549,44295 +GMC,Acadia,2016,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,549,42295 +GMC,Acadia,2016,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,549,30975 +GMC,Acadia,2016,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,549,36175 +GMC,Acadia,2016,regular unleaded,288,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,549,49890 +GMC,Acadia,2016,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,549,41020 +GMC,Acadia,2016,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,549,34175 +GMC,Acadia,2016,regular unleaded,288,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,549,47890 +GMC,Acadia,2016,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,549,38755 +GMC,Acadia,2016,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,549,43020 +GMC,Acadia,2017,regular unleaded,194,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,21,549,38350 +GMC,Acadia,2017,regular unleaded,310,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,25,18,549,43750 +GMC,Acadia,2017,regular unleaded,194,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,21,549,35070 +GMC,Acadia,2017,regular unleaded,194,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,21,549,32450 +GMC,Acadia,2017,regular unleaded,194,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,25,21,549,37070 +GMC,Acadia,2017,regular unleaded,310,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,25,18,549,41450 +GMC,Acadia,2017,regular unleaded,194,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,25,21,549,34450 +GMC,Acadia,2017,regular unleaded,194,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,21,549,29070 +GMC,Acadia,2017,regular unleaded,310,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,549,44920 +GMC,Acadia,2017,regular unleaded,310,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,25,18,549,46920 +GMC,Acadia,2017,regular unleaded,310,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,549,41750 +Hyundai,Accent,2014,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,27,1439,17395 +Hyundai,Accent,2014,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,27,1439,14895 +Hyundai,Accent,2014,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,27,1439,15645 +Hyundai,Accent,2014,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,27,1439,16095 +Hyundai,Accent,2014,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,38,27,1439,14645 +Hyundai,Accent,2014,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,27,1439,16395 +Hyundai,Accent,2015,regular unleaded,137,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,38,27,1439,14745 +Hyundai,Accent,2015,regular unleaded,137,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,27,1439,14995 +Hyundai,Accent,2015,regular unleaded,137,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,26,1439,15745 +Hyundai,Accent,2015,regular unleaded,137,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,26,1439,17495 +Hyundai,Accent,2015,regular unleaded,137,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,27,1439,16495 +Hyundai,Accent,2015,regular unleaded,137,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,26,1439,16195 +Hyundai,Accent,2016,regular unleaded,137,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,26,1439,15745 +Hyundai,Accent,2016,regular unleaded,137,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,26,1439,17495 +Hyundai,Accent,2016,regular unleaded,137,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,26,1439,16195 +Hyundai,Accent,2016,regular unleaded,137,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,27,1439,16495 +Hyundai,Accent,2016,regular unleaded,137,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,38,27,1439,14745 +Hyundai,Accent,2016,regular unleaded,137,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,27,1439,14995 +Plymouth,Acclaim,1993,regular unleaded,100,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,29,22,535,2000 +Plymouth,Acclaim,1994,regular unleaded,106,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,25,19,535,2000 +Plymouth,Acclaim,1995,regular unleaded,100,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,26,19,535,2000 +Honda,Accord Crosstour,2010,regular unleaded,271,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,25,17,2202,34020 +Honda,Accord Crosstour,2010,regular unleaded,271,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,25,17,2202,36220 +Honda,Accord Crosstour,2010,regular unleaded,271,6,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,27,18,2202,29670 +Honda,Accord Crosstour,2010,regular unleaded,271,6,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,27,18,2202,34770 +Honda,Accord Crosstour,2010,regular unleaded,271,6,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,27,18,2202,32570 +Honda,Accord Crosstour,2011,regular unleaded,271,6,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,27,18,2202,29990 +Honda,Accord Crosstour,2011,regular unleaded,271,6,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,27,18,2202,32890 +Honda,Accord Crosstour,2011,regular unleaded,271,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,26,18,2202,36540 +Honda,Accord Crosstour,2011,regular unleaded,271,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,26,18,2202,34340 +Honda,Accord Crosstour,2011,regular unleaded,271,6,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,27,18,2202,35090 +Honda,Accord Hybrid,2014,regular unleaded,195,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,45,50,2202,31905 +Honda,Accord Hybrid,2014,regular unleaded,195,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,45,50,2202,29155 +Honda,Accord Hybrid,2014,regular unleaded,195,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,45,50,2202,34905 +Honda,Accord Hybrid,2015,regular unleaded,196,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,45,50,2202,35055 +Honda,Accord Hybrid,2015,regular unleaded,196,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,45,50,2202,32055 +Honda,Accord Hybrid,2015,regular unleaded,196,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,45,50,2202,29305 +Honda,Accord Hybrid,2017,regular unleaded,212,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,47,49,2202,29605 +Honda,Accord Hybrid,2017,regular unleaded,212,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,47,49,2202,32905 +Honda,Accord Hybrid,2017,regular unleaded,212,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,47,49,2202,35955 +Honda,Accord Plug-In Hybrid,2014,regular unleaded,196,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,46,47,2202,39780 +Honda,Accord,2015,regular unleaded,278,6,MANUAL,front wheel drive,2,Performance,Midsize,Coupe,28,18,2202,30775 +Honda,Accord,2015,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,21,2202,32270 +Honda,Accord,2015,regular unleaded,278,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,32,21,2202,32550 +Honda,Accord,2015,regular unleaded,185,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,34,24,2202,23775 +Honda,Accord,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,35,26,2202,26300 +Honda,Accord,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,27,2202,30195 +Honda,Accord,2015,regular unleaded,185,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,34,24,2202,25450 +Honda,Accord,2015,regular unleaded,278,6,MANUAL,front wheel drive,2,Performance,Midsize,Coupe,28,18,2202,32550 +Honda,Accord,2015,regular unleaded,189,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,26,2202,24665 +Honda,Accord,2015,regular unleaded,185,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,34,24,2202,25030 +Honda,Accord,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,35,26,2202,30270 +Honda,Accord,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,27,2202,25830 +Honda,Accord,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,35,26,2202,28495 +Honda,Accord,2015,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,21,2202,30495 +Honda,Accord,2015,regular unleaded,278,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,32,21,2202,30775 +Honda,Accord,2015,regular unleaded,185,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,34,24,2202,22105 +Honda,Accord,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,27,2202,28420 +Honda,Accord,2015,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,21,2202,33630 +Honda,Accord,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,35,26,2202,24625 +Honda,Accord,2015,regular unleaded,189,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,34,24,2202,23865 +Honda,Accord,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,27,2202,22905 +Honda,Accord,2016,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,21,2202,32745 +Honda,Accord,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,27,2202,28670 +Honda,Accord,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,35,26,2202,26850 +Honda,Accord,2016,regular unleaded,189,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,26,2202,25065 +Honda,Accord,2016,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,21,2202,30745 +Honda,Accord,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,27,2202,27380 +Honda,Accord,2016,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,34,21,2202,34680 +Honda,Accord,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,35,26,2202,27850 +Honda,Accord,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,35,26,2202,24725 +Honda,Accord,2016,regular unleaded,189,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,34,23,2202,24265 +Honda,Accord,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,27,2202,26380 +Honda,Accord,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,35,26,2202,30845 +Honda,Accord,2016,regular unleaded,185,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,34,23,2202,25580 +Honda,Accord,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,27,2202,23005 +Honda,Accord,2016,regular unleaded,185,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,34,23,2202,23875 +Honda,Accord,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,35,26,2202,28845 +Honda,Accord,2016,regular unleaded,189,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,26,2202,26065 +Honda,Accord,2016,regular unleaded,185,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,34,23,2202,26000 +Honda,Accord,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,35,26,2202,25725 +Honda,Accord,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,27,2202,24005 +Honda,Accord,2016,regular unleaded,278,6,MANUAL,front wheel drive,2,Performance,Midsize,Coupe,28,18,2202,31025 +Honda,Accord,2016,regular unleaded,278,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,32,21,2202,34225 +Honda,Accord,2016,regular unleaded,278,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,32,21,2202,33025 +Honda,Accord,2016,regular unleaded,185,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,34,23,2202,22205 +Honda,Accord,2016,regular unleaded,278,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,32,21,2202,31025 +Honda,Accord,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,27,2202,30670 +Honda,Accord,2017,regular unleaded,189,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,26,2202,26215 +Honda,Accord,2017,regular unleaded,185,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,32,23,2202,24025 +Honda,Accord,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,34,26,2202,30995 +Honda,Accord,2017,regular unleaded,185,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,32,23,2202,22355 +Honda,Accord,2017,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,33,21,2202,34830 +Honda,Accord,2017,regular unleaded,185,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,32,23,2202,26150 +Honda,Accord,2017,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,33,21,2202,32895 +Honda,Accord,2017,regular unleaded,189,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,26,2202,25215 +Honda,Accord,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,27,2202,27530 +Honda,Accord,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,27,2202,28820 +Honda,Accord,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,27,2202,24155 +Honda,Accord,2017,regular unleaded,278,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,32,21,2202,34375 +Honda,Accord,2017,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,33,21,2202,30895 +Honda,Accord,2017,regular unleaded,278,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,32,21,2202,33175 +Honda,Accord,2017,regular unleaded,278,6,MANUAL,front wheel drive,2,Performance,Midsize,Coupe,28,18,2202,31175 +Honda,Accord,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,34,26,2202,27000 +Honda,Accord,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,34,26,2202,28000 +Honda,Accord,2017,regular unleaded,189,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,32,23,2202,24415 +Honda,Accord,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,34,26,2202,28995 +Honda,Accord,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,27,2202,30820 +Honda,Accord,2017,regular unleaded,278,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,32,21,2202,31175 +Honda,Accord,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,34,26,2202,25875 +Honda,Accord,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,27,2202,26530 +Honda,Accord,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,27,2202,23155 +Honda,Accord,2017,regular unleaded,189,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,26,2202,26215 +Honda,Accord,2017,regular unleaded,185,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,32,23,2202,25730 +Honda,Accord,2017,regular unleaded,189,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,32,23,2202,25415 +Honda,Accord,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,34,26,2202,24875 +Oldsmobile,Achieva,1996,regular unleaded,150,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,30,20,26,2000 +Oldsmobile,Achieva,1996,regular unleaded,150,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,30,20,26,2000 +Oldsmobile,Achieva,1997,regular unleaded,150,4,UNKNOWN,front wheel drive,2,N/A,Midsize,Coupe,29,19,26,2000 +Oldsmobile,Achieva,1997,regular unleaded,150,4,UNKNOWN,front wheel drive,4,N/A,Midsize,Sedan,29,19,26,2000 +Oldsmobile,Achieva,1998,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,26,2000 +BMW,ActiveHybrid 5,2014,premium unleaded (required),335,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance,Hybrid",Large,Sedan,30,23,3916,61400 +BMW,ActiveHybrid 5,2015,premium unleaded (required),335,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance,Hybrid",Large,Sedan,30,23,3916,61900 +BMW,ActiveHybrid 5,2016,premium unleaded (required),335,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance,Hybrid",Large,Sedan,30,23,3916,62100 +BMW,ActiveHybrid 7,2013,premium unleaded (required),350,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance,Hybrid",Large,Sedan,30,22,3916,84300 +BMW,ActiveHybrid 7,2014,premium unleaded (required),350,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance,Hybrid",Large,Sedan,30,22,3916,84300 +BMW,ActiveHybrid 7,2015,premium unleaded (required),335,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance,Hybrid",Large,Sedan,30,22,3916,84300 +BMW,ActiveHybrid X6,2010,premium unleaded (required),480,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance,Hybrid",Midsize,4dr SUV,19,17,3916,88900 +BMW,ActiveHybrid X6,2011,premium unleaded (required),480,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance,Hybrid",Midsize,4dr SUV,19,17,3916,88900 +Suzuki,Aerio,2005,regular unleaded,155,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,26,21,481,17049 +Suzuki,Aerio,2005,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,28,22,481,16349 +Suzuki,Aerio,2005,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,28,22,481,15949 +Suzuki,Aerio,2005,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,481,13449 +Suzuki,Aerio,2005,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,28,22,481,15449 +Suzuki,Aerio,2005,regular unleaded,155,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Wagon,26,21,481,17349 +Suzuki,Aerio,2005,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,481,15649 +Suzuki,Aerio,2005,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,26,21,481,16849 +Suzuki,Aerio,2005,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,481,15149 +Suzuki,Aerio,2005,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,22,481,16049 +Suzuki,Aerio,2005,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,26,21,481,16549 +Suzuki,Aerio,2005,regular unleaded,155,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Wagon,26,21,481,17849 +Suzuki,Aerio,2005,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,22,481,14349 +Suzuki,Aerio,2005,regular unleaded,155,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,26,21,481,17549 +Suzuki,Aerio,2006,regular unleaded,155,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Wagon,26,21,481,16599 +Suzuki,Aerio,2006,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,28,22,481,15499 +Suzuki,Aerio,2006,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,22,481,15999 +Suzuki,Aerio,2006,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,481,14099 +Suzuki,Aerio,2006,regular unleaded,155,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,26,21,481,16099 +Suzuki,Aerio,2006,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,28,22,481,15299 +Suzuki,Aerio,2006,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,28,22,481,14599 +Suzuki,Aerio,2006,regular unleaded,155,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,26,21,481,16999 +Suzuki,Aerio,2006,regular unleaded,155,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Wagon,26,21,481,17099 +Suzuki,Aerio,2006,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,22,481,14999 +Suzuki,Aerio,2006,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,28,22,481,16199 +Suzuki,Aerio,2006,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,481,15099 +Suzuki,Aerio,2007,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,481,14299 +Suzuki,Aerio,2007,regular unleaded,155,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,26,21,481,16299 +Suzuki,Aerio,2007,regular unleaded,155,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,26,21,481,17199 +Suzuki,Aerio,2007,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,22,481,15299 +Suzuki,Aerio,2007,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,22,481,16199 +Ford,Aerostar,1995,regular unleaded,135,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Minivan,22,16,5657,2000 +Ford,Aerostar,1995,regular unleaded,135,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Minivan,22,15,5657,2000 +Ford,Aerostar,1995,regular unleaded,155,6,AUTOMATIC,all wheel drive,3,N/A,Large,Passenger Minivan,18,14,5657,2000 +Ford,Aerostar,1995,regular unleaded,135,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Passenger Minivan,22,15,5657,2000 +Ford,Aerostar,1996,regular unleaded,140,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Minivan,21,15,5657,2000 +Ford,Aerostar,1996,regular unleaded,155,6,AUTOMATIC,all wheel drive,3,N/A,Large,Passenger Minivan,19,13,5657,2000 +Ford,Aerostar,1996,regular unleaded,140,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Passenger Minivan,21,15,5657,2000 +Ford,Aerostar,1996,regular unleaded,140,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Minivan,22,16,5657,2000 +Ford,Aerostar,1997,regular unleaded,140,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Minivan,21,15,5657,2000 +Ford,Aerostar,1997,regular unleaded,140,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Passenger Minivan,22,15,5657,2000 +Ford,Aerostar,1997,regular unleaded,152,6,AUTOMATIC,all wheel drive,3,N/A,Large,Passenger Minivan,17,13,5657,2000 +Ford,Aerostar,1997,regular unleaded,140,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Minivan,22,15,5657,2000 +Oldsmobile,Alero,2002,regular unleaded,170,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,26,22395 +Oldsmobile,Alero,2002,regular unleaded,170,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,26,21080 +Oldsmobile,Alero,2002,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,26,19605 +Oldsmobile,Alero,2002,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,26,21080 +Oldsmobile,Alero,2002,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,26,17805 +Oldsmobile,Alero,2002,regular unleaded,140,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,30,21,26,17805 +Oldsmobile,Alero,2002,regular unleaded,140,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,30,21,26,19855 +Oldsmobile,Alero,2002,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,26,22145 +Oldsmobile,Alero,2003,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,26,21585 +Oldsmobile,Alero,2003,regular unleaded,140,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,30,21,26,18085 +Oldsmobile,Alero,2003,regular unleaded,170,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,26,21585 +Oldsmobile,Alero,2003,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,26,20035 +Oldsmobile,Alero,2003,regular unleaded,170,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,26,22935 +Oldsmobile,Alero,2003,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,26,22685 +Oldsmobile,Alero,2003,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,26,18085 +Oldsmobile,Alero,2003,regular unleaded,140,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,30,21,26,20035 +Oldsmobile,Alero,2004,regular unleaded,170,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,26,23335 +Oldsmobile,Alero,2004,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,21,26,18485 +Oldsmobile,Alero,2004,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,26,21985 +Oldsmobile,Alero,2004,regular unleaded,140,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,31,21,26,20435 +Oldsmobile,Alero,2004,regular unleaded,140,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,31,21,26,18485 +Oldsmobile,Alero,2004,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,21,26,20435 +Oldsmobile,Alero,2004,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,26,23085 +Oldsmobile,Alero,2004,regular unleaded,170,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,26,21985 +Cadillac,Allante,1991,regular unleaded,200,8,AUTOMATIC,front wheel drive,2,"Luxury,Performance",Compact,Convertible,20,14,1624,2000 +Cadillac,Allante,1992,regular unleaded,200,8,AUTOMATIC,front wheel drive,2,"Luxury,Performance",Compact,Convertible,20,14,1624,2234 +Cadillac,Allante,1993,regular unleaded,295,8,AUTOMATIC,front wheel drive,2,"Luxury,Performance",Compact,Convertible,20,13,1624,2358 +Audi,allroad quattro,2003,regular unleaded,250,6,MANUAL,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,Wagon,21,14,3105,39950 +Audi,allroad quattro,2003,regular unleaded,250,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,Wagon,20,15,3105,41000 +Audi,allroad quattro,2004,regular unleaded,300,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,Wagon,19,14,3105,46950 +Audi,allroad quattro,2004,regular unleaded,250,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,Wagon,20,15,3105,39950 +Audi,allroad quattro,2004,regular unleaded,250,6,MANUAL,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,Wagon,21,14,3105,39950 +Audi,allroad quattro,2005,regular unleaded,250,6,MANUAL,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,Wagon,21,14,3105,40250 +Audi,allroad quattro,2005,regular unleaded,300,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,Wagon,19,14,3105,47250 +Audi,allroad quattro,2005,regular unleaded,250,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,Wagon,20,15,3105,40250 +Audi,allroad,2014,premium unleaded (recommended),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,27,20,3105,40700 +Audi,allroad,2014,premium unleaded (recommended),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,27,20,3105,43300 +Audi,allroad,2014,premium unleaded (recommended),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,27,20,3105,49200 +Audi,allroad,2015,premium unleaded (recommended),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,28,21,3105,44500 +Audi,allroad,2015,premium unleaded (recommended),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,28,21,3105,42400 +Audi,allroad,2015,premium unleaded (recommended),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,28,21,3105,49800 +Audi,allroad,2016,premium unleaded (recommended),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,28,21,3105,42700 +Audi,allroad,2016,premium unleaded (recommended),220,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,28,21,3105,44800 +BMW,ALPINA B6 Gran Coupe,2015,premium unleaded (required),540,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,24,16,3916,117300 +BMW,ALPINA B6 Gran Coupe,2016,premium unleaded (required),600,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,24,15,3916,122200 +BMW,ALPINA B6 Gran Coupe,2017,premium unleaded (required),600,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,24,15,3916,122500 +BMW,ALPINA B7,2014,premium unleaded (required),540,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,24,16,3916,135200 +BMW,ALPINA B7,2014,premium unleaded (required),540,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,25,16,3916,132200 +BMW,ALPINA B7,2014,premium unleaded (required),540,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,24,16,3916,131300 +BMW,ALPINA B7,2014,premium unleaded (required),540,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,25,16,3916,128300 +BMW,ALPINA B7,2015,premium unleaded (required),540,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,25,16,3916,132200 +BMW,ALPINA B7,2015,premium unleaded (required),540,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,24,16,3916,131300 +BMW,ALPINA B7,2015,premium unleaded (required),540,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,24,16,3916,135200 +BMW,ALPINA B7,2015,premium unleaded (required),540,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,25,16,3916,128300 +BMW,ALPINA B7,2017,premium unleaded (required),600,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,24,16,3916,137000 +BMW,Alpina,2003,premium unleaded (required),375,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Convertible,19,13,3916,136900 +Nissan,Altima Hybrid,2009,regular unleaded,198,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,33,35,2009,26650 +Nissan,Altima Hybrid,2010,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,33,35,2009,26780 +Nissan,Altima Hybrid,2011,regular unleaded,198,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,33,33,2009,26800 +Nissan,Altima,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,27,2009,22560 +Nissan,Altima,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,27,2009,28150 +Nissan,Altima,2015,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,22,2009,31950 +Nissan,Altima,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,27,2009,22300 +Nissan,Altima,2015,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,22,2009,29830 +Nissan,Altima,2015,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,22,2009,32350 +Nissan,Altima,2015,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,22,2009,26450 +Nissan,Altima,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,27,2009,24720 +Nissan,Altima,2016,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,22,2009,32090 +Nissan,Altima,2016,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,22,2009,27390 +Nissan,Altima,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,27,2009,22500 +Nissan,Altima,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,27,2009,22900 +Nissan,Altima,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,27,2009,24470 +Nissan,Altima,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,27,2009,25460 +Nissan,Altima,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,27,2009,28570 +Nissan,Altima,2016,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,22,2009,27990 +Nissan,Altima,2016,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,22,2009,32690 +Nissan,Altima,2017,regular unleaded,179,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,27,2009,25460 +Nissan,Altima,2017,regular unleaded,179,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,27,2009,22500 +Nissan,Altima,2017,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,22,2009,32690 +Nissan,Altima,2017,regular unleaded,179,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,27,2009,22900 +Nissan,Altima,2017,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,22,2009,27990 +Nissan,Altima,2017,regular unleaded,179,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,26,2009,24470 +Nissan,Altima,2017,regular unleaded,179,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,27,2009,28570 +Kia,Amanti,2007,regular unleaded,264,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,17,1720,25495 +Kia,Amanti,2008,regular unleaded,264,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,17,1720,25495 +Kia,Amanti,2009,regular unleaded,264,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,17,1720,26045 +Mercedes-Benz,AMG GT,2016,premium unleaded (required),503,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Coupe,22,16,617,129900 +Mercedes-Benz,AMG GT,2017,premium unleaded (required),503,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Coupe,22,16,617,131200 +Mercedes-Benz,AMG GT,2017,premium unleaded (required),456,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Coupe,22,16,617,111200 +Nissan,Armada,2014,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,4dr SUV,19,13,2009,37590 +Nissan,Armada,2014,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,18,12,2009,52860 +Nissan,Armada,2014,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,4dr SUV,19,13,2009,42680 +Nissan,Armada,2014,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,18,12,2009,45580 +Nissan,Armada,2014,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,18,12,2009,42890 +Nissan,Armada,2014,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,4dr SUV,19,13,2009,49960 +Nissan,Armada,2015,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,19,13,2009,50780 +Nissan,Armada,2015,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,18,12,2009,53680 +Nissan,Armada,2015,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,18,12,2009,43810 +Nissan,Armada,2015,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,18,12,2009,46500 +Nissan,Armada,2015,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,19,13,2009,49880 +Nissan,Armada,2015,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,19,13,2009,43600 +Nissan,Armada,2015,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,19,13,2009,38510 +Nissan,Armada,2015,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,18,12,2009,52780 +Nissan,Armada,2017,regular unleaded,390,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,19,14,2009,49650 +Nissan,Armada,2017,regular unleaded,390,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,19,14,2009,57590 +Nissan,Armada,2017,regular unleaded,390,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,18,13,2009,60490 +Nissan,Armada,2017,regular unleaded,390,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,18,13,2009,52550 +Nissan,Armada,2017,regular unleaded,390,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,19,14,2009,44900 +Nissan,Armada,2017,regular unleaded,390,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,18,13,2009,47800 +Bentley,Arnage,2007,premium unleaded (required),450,8,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,15,10,520,221990 +Bentley,Arnage,2007,premium unleaded (required),500,8,AUTOMATIC,rear wheel drive,4,"Exotic,Factory Tuner,Luxury,High-Performance",Large,Sedan,15,10,520,242990 +Bentley,Arnage,2007,premium unleaded (required),450,8,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,14,10,520,263990 +Bentley,Arnage,2008,premium unleaded (required),450,8,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,15,9,520,263990 +Bentley,Arnage,2008,premium unleaded (required),500,8,AUTOMATIC,rear wheel drive,4,"Exotic,Factory Tuner,Luxury,High-Performance",Large,Sedan,15,10,520,242990 +Bentley,Arnage,2008,premium unleaded (required),450,8,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,15,10,520,221990 +Bentley,Arnage,2009,premium unleaded (required),500,8,AUTOMATIC,rear wheel drive,4,"Exotic,Factory Tuner,Luxury,High-Performance",Large,Sedan,14,10,520,270990 +Bentley,Arnage,2009,premium unleaded (required),450,8,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,14,10,520,224990 +Bentley,Arnage,2009,premium unleaded (required),500,8,AUTOMATIC,rear wheel drive,4,"Exotic,Factory Tuner,Luxury,High-Performance",Large,Sedan,14,10,520,246990 +Bentley,Arnage,2009,premium unleaded (required),450,8,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,15,9,520,267990 +Chrysler,Aspen,2007,regular unleaded,235,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,4dr SUV,17,13,1013,30935 +Chrysler,Aspen,2007,regular unleaded,235,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,17,12,1013,33810 +Chrysler,Aspen,2008,regular unleaded,302,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,19,14,1013,32905 +Chrysler,Aspen,2008,regular unleaded,302,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,13,1013,35780 +Chrysler,Aspen,2009,regular unleaded,385,8,AUTOMATIC,four wheel drive,4,Hybrid,Large,4dr SUV,22,20,1013,45270 +Chrysler,Aspen,2009,regular unleaded,303,8,AUTOMATIC,four wheel drive,4,Performance,Large,4dr SUV,18,13,1013,37115 +Chrysler,Aspen,2009,regular unleaded,303,8,AUTOMATIC,rear wheel drive,4,Performance,Large,4dr SUV,19,14,1013,34730 +Ford,Aspire,1995,regular unleaded,63,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,38,31,5657,2000 +Ford,Aspire,1995,regular unleaded,63,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,38,31,5657,2000 +Ford,Aspire,1995,regular unleaded,63,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,31,5657,2000 +Ford,Aspire,1996,regular unleaded,63,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,29,5657,2000 +Ford,Aspire,1996,regular unleaded,63,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,38,29,5657,2000 +Ford,Aspire,1997,regular unleaded,63,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,38,29,5657,2000 +Ford,Aspire,1997,regular unleaded,63,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,29,5657,2000 +Chevrolet,Astro Cargo,2003,regular unleaded,190,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Minivan,21,15,1385,22050 +Chevrolet,Astro Cargo,2003,regular unleaded,190,6,AUTOMATIC,all wheel drive,3,N/A,Large,Cargo Minivan,18,14,1385,24450 +Chevrolet,Astro Cargo,2004,regular unleaded,190,6,AUTOMATIC,all wheel drive,3,N/A,Large,Cargo Minivan,18,14,1385,25195 +Chevrolet,Astro Cargo,2004,regular unleaded,190,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Minivan,19,14,1385,22695 +Chevrolet,Astro Cargo,2005,regular unleaded,190,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Minivan,20,15,1385,22930 +Chevrolet,Astro Cargo,2005,regular unleaded,190,6,AUTOMATIC,all wheel drive,3,N/A,Large,Cargo Minivan,18,14,1385,25430 +Chevrolet,Astro,2003,regular unleaded,190,6,AUTOMATIC,all wheel drive,3,N/A,Large,Passenger Minivan,16,12,1385,25690 +Chevrolet,Astro,2003,regular unleaded,190,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Passenger Minivan,19,14,1385,23690 +Chevrolet,Astro,2004,regular unleaded,190,6,AUTOMATIC,all wheel drive,3,N/A,Large,Passenger Minivan,16,12,1385,26195 +Chevrolet,Astro,2004,regular unleaded,190,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Passenger Minivan,19,14,1385,24195 +Chevrolet,Astro,2005,regular unleaded,190,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Passenger Minivan,20,14,1385,24430 +Chevrolet,Astro,2005,regular unleaded,190,6,AUTOMATIC,all wheel drive,3,N/A,Large,Passenger Minivan,16,12,1385,26430 +Cadillac,ATS Coupe,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,rear wheel drive,2,"Flex Fuel,Luxury,High-Performance",Compact,Coupe,28,18,1624,48165 +Cadillac,ATS Coupe,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,all wheel drive,2,"Flex Fuel,Luxury,High-Performance",Compact,Coupe,26,18,1624,50165 +Cadillac,ATS Coupe,2015,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,31,21,1624,37995 +Cadillac,ATS Coupe,2015,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Compact,Coupe,29,20,1624,40445 +Cadillac,ATS Coupe,2015,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Compact,Coupe,29,20,1624,46935 +Cadillac,ATS Coupe,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,all wheel drive,2,"Flex Fuel,Luxury,High-Performance",Compact,Coupe,26,18,1624,51435 +Cadillac,ATS Coupe,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,rear wheel drive,2,"Flex Fuel,Luxury,High-Performance",Compact,Coupe,28,18,1624,45150 +Cadillac,ATS Coupe,2015,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,31,21,1624,47095 +Cadillac,ATS Coupe,2015,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Compact,Coupe,29,20,1624,48205 +Cadillac,ATS Coupe,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,all wheel drive,2,"Flex Fuel,Luxury,High-Performance",Compact,Coupe,26,18,1624,47750 +Cadillac,ATS Coupe,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,rear wheel drive,2,"Flex Fuel,Luxury,High-Performance",Compact,Coupe,28,18,1624,50325 +Cadillac,ATS Coupe,2015,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,31,21,1624,41920 +Cadillac,ATS Coupe,2015,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,31,21,1624,44935 +Cadillac,ATS Coupe,2015,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Compact,Coupe,29,20,1624,44520 +Cadillac,ATS Coupe,2016,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,31,22,1624,47605 +Cadillac,ATS Coupe,2016,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,31,22,1624,41920 +Cadillac,ATS Coupe,2016,regular unleaded,335,6,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,30,20,1624,48675 +Cadillac,ATS Coupe,2016,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Compact,Coupe,30,22,1624,48715 +Cadillac,ATS Coupe,2016,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,31,22,1624,45445 +Cadillac,ATS Coupe,2016,regular unleaded,335,6,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,30,20,1624,45150 +Cadillac,ATS Coupe,2016,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Compact,Coupe,30,22,1624,40445 +Cadillac,ATS Coupe,2016,regular unleaded,335,6,AUTOMATIC,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,19,1624,47750 +Cadillac,ATS Coupe,2016,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Compact,Coupe,30,22,1624,47445 +Cadillac,ATS Coupe,2016,regular unleaded,335,6,AUTOMATIC,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,19,1624,50675 +Cadillac,ATS Coupe,2016,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,31,22,1624,37995 +Cadillac,ATS Coupe,2016,regular unleaded,335,6,AUTOMATIC,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,19,1624,51945 +Cadillac,ATS Coupe,2016,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Compact,Coupe,30,22,1624,44520 +Cadillac,ATS Coupe,2016,regular unleaded,335,6,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,30,20,1624,50835 +Cadillac,ATS Coupe,2017,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Compact,Coupe,30,22,1624,43395 +Cadillac,ATS Coupe,2017,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,31,22,1624,37595 +Cadillac,ATS Coupe,2017,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Compact,Coupe,30,22,1624,39995 +Cadillac,ATS Coupe,2017,regular unleaded,335,6,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,30,20,1624,49495 +Cadillac,ATS Coupe,2017,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,31,22,1624,41395 +Cadillac,ATS Coupe,2017,regular unleaded,335,6,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,30,20,1624,46995 +Cadillac,ATS Coupe,2017,regular unleaded,335,6,AUTOMATIC,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,27,19,1624,48995 +Cadillac,ATS-V,2016,premium unleaded (recommended),464,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,23,17,1624,62665 +Cadillac,ATS-V,2016,premium unleaded (recommended),464,6,MANUAL,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Compact,Sedan,23,17,1624,60465 +Cadillac,ATS-V,2017,premium unleaded (recommended),464,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,23,16,1624,62895 +Cadillac,ATS-V,2017,premium unleaded (recommended),464,6,MANUAL,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Compact,Sedan,23,16,1624,60695 +Cadillac,ATS,2015,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Compact,Sedan,28,20,1624,41340 +Cadillac,ATS,2015,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Compact,Sedan,30,21,1624,39340 +Cadillac,ATS,2015,regular unleaded,202,4,AUTOMATIC,rear wheel drive,4,Luxury,Compact,Sedan,33,21,1624,33215 +Cadillac,ATS,2015,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Compact,Sedan,30,21,1624,45615 +Cadillac,ATS,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,High-Performance",Compact,Sedan,28,18,1624,47615 +Cadillac,ATS,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,High-Performance",Compact,Sedan,28,18,1624,44660 +Cadillac,ATS,2015,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Compact,Sedan,28,20,1624,46715 +Cadillac,ATS,2015,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Compact,Sedan,28,20,1624,37245 +Cadillac,ATS,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,High-Performance",Compact,Sedan,28,18,1624,41340 +Cadillac,ATS,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Luxury,High-Performance",Compact,Sedan,26,18,1624,46660 +Cadillac,ATS,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Luxury,High-Performance",Compact,Sedan,26,18,1624,48715 +Cadillac,ATS,2015,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Compact,Sedan,28,20,1624,44660 +Cadillac,ATS,2015,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Compact,Sedan,30,21,1624,35245 +Cadillac,ATS,2015,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Compact,Sedan,30,21,1624,42660 +Cadillac,ATS,2015,regular unleaded,202,4,AUTOMATIC,rear wheel drive,4,Luxury,Compact,Sedan,33,21,1624,37340 +Cadillac,ATS,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Luxury,High-Performance",Compact,Sedan,26,18,1624,43340 +Cadillac,ATS,2016,regular unleaded,335,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,30,20,1624,41340 +Cadillac,ATS,2016,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,22,1624,46110 +Cadillac,ATS,2016,regular unleaded,335,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,30,20,1624,45155 +Cadillac,ATS,2016,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,22,1624,39340 +Cadillac,ATS,2016,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,28,19,1624,47155 +Cadillac,ATS,2016,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,22,1624,43155 +Cadillac,ATS,2016,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,30,22,1624,37245 +Cadillac,ATS,2016,regular unleaded,335,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,30,20,1624,48110 +Cadillac,ATS,2016,regular unleaded,202,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,32,22,1624,37340 +Cadillac,ATS,2016,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,22,1624,35245 +Cadillac,ATS,2016,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,28,19,1624,43340 +Cadillac,ATS,2016,regular unleaded,202,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,32,22,1624,33215 +Cadillac,ATS,2016,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,30,22,1624,47210 +Cadillac,ATS,2016,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,30,22,1624,41340 +Cadillac,ATS,2016,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,30,22,1624,45155 +Cadillac,ATS,2016,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,28,19,1624,49210 +Cadillac,ATS,2017,regular unleaded,335,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,30,20,1624,46995 +Cadillac,ATS,2017,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,30,22,1624,40395 +Cadillac,ATS,2017,regular unleaded,335,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,30,20,1624,43995 +Cadillac,ATS,2017,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,27,19,1624,45995 +Cadillac,ATS,2017,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,22,1624,34595 +Cadillac,ATS,2017,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,30,22,1624,36595 +Cadillac,ATS,2017,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,22,1624,38395 +Oldsmobile,Aurora,2001,premium unleaded (required),250,8,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,23,15,26,34794 +Oldsmobile,Aurora,2001,regular unleaded,215,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,25,17,26,30619 +Oldsmobile,Aurora,2002,regular unleaded,215,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,25,16,26,31615 +Oldsmobile,Aurora,2002,premium unleaded (required),250,8,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,24,16,26,35085 +Oldsmobile,Aurora,2003,premium unleaded (required),250,8,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,24,15,26,34725 +Chevrolet,Avalanche,2010,flex-fuel (unleaded/E85),320,8,AUTOMATIC,rear wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,45815 +Chevrolet,Avalanche,2010,flex-fuel (unleaded/E85),320,8,AUTOMATIC,rear wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,35725 +Chevrolet,Avalanche,2010,flex-fuel (unleaded/E85),320,8,AUTOMATIC,rear wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,38830 +Chevrolet,Avalanche,2011,flex-fuel (unleaded/E85),320,8,AUTOMATIC,rear wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,39405 +Chevrolet,Avalanche,2011,flex-fuel (unleaded/E85),320,8,AUTOMATIC,rear wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,46195 +Chevrolet,Avalanche,2011,flex-fuel (unleaded/E85),320,8,AUTOMATIC,four wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,39350 +Chevrolet,Avalanche,2011,flex-fuel (unleaded/E85),320,8,AUTOMATIC,four wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,49500 +Chevrolet,Avalanche,2011,flex-fuel (unleaded/E85),320,8,AUTOMATIC,four wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,42455 +Chevrolet,Avalanche,2011,flex-fuel (unleaded/E85),320,8,AUTOMATIC,rear wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,36300 +Chevrolet,Avalanche,2012,flex-fuel (unleaded/E85),320,8,AUTOMATIC,rear wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,40195 +Chevrolet,Avalanche,2012,flex-fuel (unleaded/E85),320,8,AUTOMATIC,four wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,43245 +Chevrolet,Avalanche,2012,flex-fuel (unleaded/E85),320,8,AUTOMATIC,rear wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,47000 +Chevrolet,Avalanche,2012,flex-fuel (unleaded/E85),320,8,AUTOMATIC,four wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,39850 +Chevrolet,Avalanche,2012,flex-fuel (unleaded/E85),320,8,AUTOMATIC,rear wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,36800 +Chevrolet,Avalanche,2012,flex-fuel (unleaded/E85),320,8,AUTOMATIC,four wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,50305 +Toyota,Avalon Hybrid,2015,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,39,40,2031,37800 +Toyota,Avalon Hybrid,2015,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,39,40,2031,41700 +Toyota,Avalon Hybrid,2015,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,39,40,2031,36470 +Toyota,Avalon Hybrid,2016,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,39,40,2031,36650 +Toyota,Avalon Hybrid,2016,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,39,40,2031,38100 +Toyota,Avalon Hybrid,2016,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,39,40,2031,41950 +Toyota,Avalon Hybrid,2017,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,39,40,2031,42550 +Toyota,Avalon Hybrid,2017,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,39,40,2031,38700 +Toyota,Avalon Hybrid,2017,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,39,40,2031,37250 +Toyota,Avalon,2015,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,21,2031,37170 +Toyota,Avalon,2015,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,21,2031,32285 +Toyota,Avalon,2015,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,21,2031,39980 +Toyota,Avalon,2015,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,21,2031,36080 +Toyota,Avalon,2015,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,21,2031,34140 +Toyota,Avalon,2016,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,21,2031,37050 +Toyota,Avalon,2016,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,21,2031,35850 +Toyota,Avalon,2016,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,21,2031,40450 +Toyota,Avalon,2016,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,21,2031,32650 +Toyota,Avalon,2016,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,21,2031,34400 +Toyota,Avalon,2017,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,30,21,2031,41050 +Toyota,Avalon,2017,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,30,21,2031,37650 +Toyota,Avalon,2017,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,2031,33250 +Toyota,Avalon,2017,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,2031,36450 +Toyota,Avalon,2017,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,2031,35000 +Dodge,Avenger,2012,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Midsize,Sedan,29,19,1851,25995 +Dodge,Avenger,2012,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,20,1851,21495 +Dodge,Avenger,2012,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Midsize,Sedan,29,19,1851,23995 +Dodge,Avenger,2012,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,30,21,1851,18995 +Dodge,Avenger,2013,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Midsize,Sedan,29,19,1851,25695 +Dodge,Avenger,2013,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,29,21,1851,19795 +Dodge,Avenger,2013,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,31,20,1851,22595 +Dodge,Avenger,2014,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,29,21,1851,20595 +Dodge,Avenger,2014,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Midsize,Sedan,29,19,1851,25795 +Dodge,Avenger,2014,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,31,20,1851,23295 +Lamborghini,Aventador,2014,premium unleaded (required),700,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,16,10,1158,441600 +Lamborghini,Aventador,2014,premium unleaded (required),700,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,18,11,1158,397500 +Lamborghini,Aventador,2014,premium unleaded (required),720,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,16,10,1158,548800 +Lamborghini,Aventador,2014,premium unleaded (required),720,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,18,11,1158,497650 +Lamborghini,Aventador,2015,premium unleaded (required),700,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,16,10,1158,441600 +Lamborghini,Aventador,2015,premium unleaded (required),700,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,18,11,1158,397500 +Lamborghini,Aventador,2015,premium unleaded (required),720,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,16,10,1158,548800 +Lamborghini,Aventador,2015,premium unleaded (required),720,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,18,11,1158,497650 +Lamborghini,Aventador,2016,premium unleaded (required),700,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,17,10,1158,443800 +Lamborghini,Aventador,2016,premium unleaded (required),750,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,18,11,1158,535500 +Lamborghini,Aventador,2016,premium unleaded (required),750,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,18,11,1158,490700 +Lamborghini,Aventador,2016,premium unleaded (required),700,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,18,11,1158,399500 +Chevrolet,Aveo,2009,regular unleaded,107,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,27,1385,11965 +Chevrolet,Aveo,2009,regular unleaded,107,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,34,27,1385,15365 +Chevrolet,Aveo,2009,regular unleaded,107,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,27,1385,14100 +Chevrolet,Aveo,2009,regular unleaded,107,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,34,27,1385,11965 +Chevrolet,Aveo,2009,regular unleaded,107,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,34,27,1385,14100 +Chevrolet,Aveo,2009,regular unleaded,107,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,27,1385,15365 +Chevrolet,Aveo,2010,regular unleaded,108,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,1385,15365 +Chevrolet,Aveo,2010,regular unleaded,108,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,27,1385,11965 +Chevrolet,Aveo,2010,regular unleaded,108,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,27,1385,14100 +Chevrolet,Aveo,2010,regular unleaded,108,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,1385,12115 +Chevrolet,Aveo,2010,regular unleaded,108,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,27,1385,15365 +Chevrolet,Aveo,2010,regular unleaded,108,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,1385,14250 +Chevrolet,Aveo,2011,regular unleaded,108,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,1385,15365 +Chevrolet,Aveo,2011,regular unleaded,108,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,1385,12115 +Chevrolet,Aveo,2011,regular unleaded,108,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,27,1385,11965 +Chevrolet,Aveo,2011,regular unleaded,108,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,1385,14250 +Chevrolet,Aveo,2011,regular unleaded,108,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,27,1385,15365 +Chevrolet,Aveo,2011,regular unleaded,108,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,27,1385,14100 +Lincoln,Aviator,2003,premium unleaded (required),302,8,AUTOMATIC,all wheel drive,4,Luxury,Midsize,4dr SUV,17,12,61,45125 +Lincoln,Aviator,2003,premium unleaded (required),302,8,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,4dr SUV,17,12,61,42175 +Lincoln,Aviator,2003,premium unleaded (required),302,8,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,4dr SUV,17,12,61,39485 +Lincoln,Aviator,2003,premium unleaded (required),302,8,AUTOMATIC,all wheel drive,4,Luxury,Midsize,4dr SUV,17,12,61,42435 +Lincoln,Aviator,2004,premium unleaded (required),302,8,AUTOMATIC,all wheel drive,4,Luxury,Midsize,4dr SUV,16,12,61,45705 +Lincoln,Aviator,2004,premium unleaded (required),302,8,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,4dr SUV,17,12,61,42755 +Lincoln,Aviator,2004,premium unleaded (required),302,8,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,4dr SUV,17,12,61,40290 +Lincoln,Aviator,2004,premium unleaded (required),302,8,AUTOMATIC,all wheel drive,4,Luxury,Midsize,4dr SUV,16,12,61,43240 +Lincoln,Aviator,2005,premium unleaded (required),302,8,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,4dr SUV,17,11,61,40635 +Lincoln,Aviator,2005,premium unleaded (required),302,8,AUTOMATIC,all wheel drive,4,Luxury,Midsize,4dr SUV,16,11,61,43585 +Nissan,Axxess,1990,regular unleaded,138,4,MANUAL,front wheel drive,3,N/A,Compact,Passenger Minivan,24,19,2009,2000 +Nissan,Axxess,1990,regular unleaded,138,4,MANUAL,four wheel drive,3,N/A,Compact,Passenger Minivan,22,17,2009,2000 +Nissan,Axxess,1990,regular unleaded,138,4,AUTOMATIC,four wheel drive,3,N/A,Compact,Passenger Minivan,20,16,2009,2000 +Nissan,Axxess,1990,regular unleaded,138,4,AUTOMATIC,front wheel drive,3,N/A,Compact,Passenger Minivan,22,18,2009,2000 +Hyundai,Azera,2015,regular unleaded,293,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,28,19,1439,38200 +Hyundai,Azera,2015,regular unleaded,293,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,29,20,1439,34000 +Hyundai,Azera,2016,regular unleaded,293,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,29,20,1439,34100 +Hyundai,Azera,2016,regular unleaded,293,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,28,19,1439,39300 +Hyundai,Azera,2017,regular unleaded,293,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,28,20,1439,34100 +Hyundai,Azera,2017,regular unleaded,293,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,28,19,1439,39300 +Pontiac,Aztek,2003,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,16,210,23820 +Pontiac,Aztek,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,210,20870 +Pontiac,Aztek,2004,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,16,210,24190 +Pontiac,Aztek,2004,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,210,21275 +Pontiac,Aztek,2005,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,16,210,24445 +Pontiac,Aztek,2005,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,210,21530 +Bentley,Azure T,2010,premium unleaded (required),500,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Large,Convertible,15,9,520,363000 +Bentley,Azure,2007,premium unleaded (required),450,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury",Large,Convertible,15,10,520,329990 +Bentley,Azure,2008,premium unleaded (required),450,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,Performance",Large,Convertible,15,9,520,329990 +Bentley,Azure,2009,premium unleaded (required),450,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,Performance",Large,Convertible,15,9,520,334990 +Mercedes-Benz,B-Class Electric Drive,2015,electric,177,0,DIRECT_DRIVE,front wheel drive,4,"Hatchback,Luxury",Compact,4dr Hatchback,82,85,617,41450 +Mercedes-Benz,B-Class Electric Drive,2016,electric,177,0,DIRECT_DRIVE,front wheel drive,4,"Hatchback,Luxury",Compact,4dr Hatchback,82,85,617,41450 +Mercedes-Benz,B-Class Electric Drive,2017,electric,177,0,DIRECT_DRIVE,front wheel drive,4,"Hatchback,Luxury",Compact,4dr Hatchback,82,85,617,39900 +Mazda,B-Series Pickup,1998,regular unleaded,119,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,24,19,586,2179 +Mazda,B-Series Pickup,1998,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,19,14,586,3323 +Mazda,B-Series Pickup,1998,regular unleaded,160,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,20,15,586,2915 +Mazda,B-Series Pickup,1998,regular unleaded,150,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,21,15,586,2756 +Mazda,B-Series Pickup,1998,regular unleaded,119,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,24,19,586,2692 +Mazda,B-Series Pickup,1998,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,20,15,586,2930 +Mazda,B-Series Pickup,1998,regular unleaded,119,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,24,19,586,2717 +Mazda,B-Series Pickup,1998,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,20,15,586,3033 +Mazda,B-Series Pickup,1998,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,20,15,586,2713 +Mazda,B-Series Pickup,1998,regular unleaded,119,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,24,19,586,2432 +Mazda,B-Series Pickup,1999,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,19,15,586,3514 +Mazda,B-Series Pickup,1999,regular unleaded,160,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,586,3696 +Mazda,B-Series Pickup,1999,regular unleaded,119,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,24,19,586,2593 +Mazda,B-Series Pickup,1999,regular unleaded,160,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,586,3538 +Mazda,B-Series Pickup,1999,regular unleaded,160,6,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,20,16,586,2870 +Mazda,B-Series Pickup,1999,regular unleaded,119,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,24,19,586,2211 +Mazda,B-Series Pickup,1999,flex-fuel (unleaded/E85),150,6,MANUAL,four wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,20,16,586,3206 +Mazda,B-Series Pickup,1999,flex-fuel (unleaded/E85),150,6,MANUAL,rear wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,21,16,586,3119 +Mazda,B-Series Pickup,1999,flex-fuel (unleaded/E85),150,6,MANUAL,four wheel drive,2,Flex Fuel,Compact,Extended Cab Pickup,20,16,586,3214 +Mazda,B-Series Pickup,1999,flex-fuel (unleaded/E85),150,6,MANUAL,rear wheel drive,2,Flex Fuel,Compact,Extended Cab Pickup,21,16,586,2853 +Mazda,B-Series Pickup,1999,regular unleaded,160,6,AUTOMATIC,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,20,15,586,3221 +Mazda,B-Series Pickup,1999,regular unleaded,119,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,24,19,586,2493 +Mazda,B-Series Pickup,1999,flex-fuel (unleaded/E85),150,6,MANUAL,rear wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,21,16,586,2946 +Mazda,B-Series Pickup,1999,flex-fuel (unleaded/E85),150,6,MANUAL,four wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,20,16,586,3011 +Mazda,B-Series Pickup,1999,regular unleaded,119,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,24,19,586,2857 +Mazda,B-Series Pickup,1999,regular unleaded,160,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,15,586,3229 +Mazda,B-Series Pickup,1999,regular unleaded,119,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,24,19,586,2801 +Mazda,B-Series Pickup,2000,regular unleaded,119,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,24,20,586,2637 +Mazda,B-Series Pickup,2000,regular unleaded,119,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,24,20,586,2961 +Mazda,B-Series Pickup,2000,flex-fuel (unleaded/E85),143,6,MANUAL,rear wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,21,16,586,3107 +Mazda,B-Series Pickup,2000,flex-fuel (unleaded/E85),143,6,MANUAL,four wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,20,15,586,3394 +Mazda,B-Series Pickup,2000,flex-fuel (unleaded/E85),143,6,MANUAL,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,21,16,586,2689 +Mazda,B-Series Pickup,2000,regular unleaded,160,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,586,3768 +Mazda,B-Series Pickup,2000,regular unleaded,119,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,24,20,586,2350 +Mazda,B-Series Pickup,2000,flex-fuel (unleaded/E85),143,6,MANUAL,rear wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,21,16,586,3289 +Mazda,B-Series Pickup,2000,flex-fuel (unleaded/E85),143,6,MANUAL,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,21,16,586,2413 +Mazda,B-Series Pickup,2000,regular unleaded,160,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,586,3928 +Mazda,B-Series Pickup,2000,regular unleaded,160,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,19,14,586,3579 +Mazda,B-Series Pickup,2000,flex-fuel (unleaded/E85),143,6,MANUAL,rear wheel drive,2,Flex Fuel,Compact,Extended Cab Pickup,21,16,586,3032 +Mazda,B-Series Pickup,2000,flex-fuel (unleaded/E85),143,6,MANUAL,four wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,20,15,586,3190 +Mazda,B-Series Truck,2007,regular unleaded,207,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,17,14,586,26590 +Mazda,B-Series Truck,2007,regular unleaded,148,6,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,21,16,586,19675 +Mazda,B-Series Truck,2007,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,26,21,586,15535 +Mazda,B-Series Truck,2007,regular unleaded,148,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,21,16,586,19040 +Mazda,B-Series Truck,2007,regular unleaded,148,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,21,16,586,21430 +Mazda,B-Series Truck,2007,regular unleaded,207,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,586,22045 +Mazda,B-Series Truck,2008,regular unleaded,207,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,17,14,586,26590 +Mazda,B-Series Truck,2008,regular unleaded,207,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,586,22045 +Mazda,B-Series Truck,2008,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,26,21,586,15535 +Mazda,B-Series Truck,2009,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,26,21,586,16060 +Mazda,B-Series Truck,2009,regular unleaded,207,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,586,22150 +Mazda,B-Series,2001,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,19,15,586,20030 +Mazda,B-Series,2001,regular unleaded,150,6,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,21,15,586,14990 +Mazda,B-Series,2001,regular unleaded,150,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,21,15,586,17225 +Mazda,B-Series,2001,regular unleaded,150,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,21,15,586,18485 +Mazda,B-Series,2001,regular unleaded,119,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,24,19,586,14545 +Mazda,B-Series,2001,regular unleaded,119,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,24,19,586,12345 +Mazda,B-Series,2001,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,19,15,586,18360 +Mazda,B-Series,2001,regular unleaded,207,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,16,586,19340 +Mazda,B-Series,2001,regular unleaded,150,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,21,15,586,17545 +Mazda,B-Series,2001,regular unleaded,140,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,26,21,586,12495 +Mazda,B-Series,2001,regular unleaded,207,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,18,14,586,22085 +Mazda,B-Series,2001,regular unleaded,140,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,26,21,586,14695 +Mazda,B-Series,2001,regular unleaded,150,6,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,21,15,586,15125 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,30695 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,32395 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,34195 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,34295 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,37695 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,35895 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,33895 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,32295 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,35895 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,32295 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,34195 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,32395 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,33895 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,35695 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,34295 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,35695 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,37695 +Subaru,B9 Tribeca,2006,premium unleaded (required),250,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,30695 +Subaru,B9 Tribeca,2007,premium unleaded (required),245,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,29995 +Subaru,B9 Tribeca,2007,premium unleaded (required),245,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,37295 +Subaru,B9 Tribeca,2007,premium unleaded (required),245,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,35495 +Subaru,B9 Tribeca,2007,premium unleaded (required),245,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,37295 +Subaru,B9 Tribeca,2007,premium unleaded (required),245,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,33495 +Subaru,B9 Tribeca,2007,premium unleaded (required),245,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,33495 +Subaru,B9 Tribeca,2007,premium unleaded (required),245,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,31995 +Subaru,B9 Tribeca,2007,premium unleaded (required),245,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,34495 +Subaru,B9 Tribeca,2007,premium unleaded (required),245,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,35495 +Subaru,B9 Tribeca,2007,premium unleaded (required),245,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,32495 +Subaru,B9 Tribeca,2007,premium unleaded (required),245,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,32495 +Subaru,B9 Tribeca,2007,premium unleaded (required),245,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,34495 +Subaru,Baja,2004,regular unleaded,165,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,25,19,640,22795 +Subaru,Baja,2004,premium unleaded (required),210,4,MANUAL,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,22,16,640,23995 +Subaru,Baja,2004,premium unleaded (required),210,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,21,16,640,24995 +Subaru,Baja,2004,regular unleaded,165,4,MANUAL,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,25,19,640,21995 +Subaru,Baja,2004,premium unleaded (required),210,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,21,16,640,26295 +Subaru,Baja,2005,regular unleaded,165,4,MANUAL,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,25,19,640,22345 +Subaru,Baja,2005,premium unleaded (required),210,4,MANUAL,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,23,17,640,24345 +Subaru,Baja,2005,premium unleaded (required),210,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,21,16,640,25345 +Subaru,Baja,2005,premium unleaded (required),210,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,21,16,640,27245 +Subaru,Baja,2005,regular unleaded,165,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,25,19,640,23145 +Subaru,Baja,2006,premium unleaded (required),210,4,MANUAL,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,23,17,640,24595 +Subaru,Baja,2006,regular unleaded,165,4,MANUAL,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,26,20,640,22495 +Subaru,Baja,2006,premium unleaded (required),210,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,21,16,640,25595 +Subaru,Baja,2006,premium unleaded (required),210,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,21,16,640,27495 +Subaru,Baja,2006,regular unleaded,165,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,25,19,640,23295 +Volkswagen,Beetle Convertible,2014,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,27295 +Volkswagen,Beetle Convertible,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,31795 +Volkswagen,Beetle Convertible,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,34895 +Volkswagen,Beetle Convertible,2014,regular unleaded,170,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,27,21,873,27295 +Volkswagen,Beetle Convertible,2014,diesel,140,4,AUTOMATED_MANUAL,front wheel drive,2,Diesel,Compact,Convertible,41,28,873,32755 +Volkswagen,Beetle Convertible,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,29395 +Volkswagen,Beetle Convertible,2014,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,29395 +Volkswagen,Beetle Convertible,2014,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,25170 +Volkswagen,Beetle Convertible,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,30495 +Volkswagen,Beetle Convertible,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,30695 +Volkswagen,Beetle Convertible,2014,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,29395 +Volkswagen,Beetle Convertible,2014,diesel,140,4,AUTOMATED_MANUAL,front wheel drive,2,Diesel,Compact,Convertible,41,28,873,31195 +Volkswagen,Beetle Convertible,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,30695 +Volkswagen,Beetle Convertible,2014,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,30755 +Volkswagen,Beetle Convertible,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,34895 +Volkswagen,Beetle Convertible,2014,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,27295 +Volkswagen,Beetle Convertible,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,33795 +Volkswagen,Beetle Convertible,2014,diesel,140,4,MANUAL,front wheel drive,2,Diesel,Compact,Convertible,41,28,873,30095 +Volkswagen,Beetle Convertible,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,30495 +Volkswagen,Beetle Convertible,2014,regular unleaded,170,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,27,21,873,27295 +Volkswagen,Beetle Convertible,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,29395 +Volkswagen,Beetle Convertible,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,33795 +Volkswagen,Beetle Convertible,2014,regular unleaded,170,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,27,21,873,29395 +Volkswagen,Beetle Convertible,2014,diesel,140,4,AUTOMATED_MANUAL,front wheel drive,2,Diesel,Compact,Convertible,41,28,873,29995 +Volkswagen,Beetle Convertible,2014,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,25170 +Volkswagen,Beetle Convertible,2014,regular unleaded,170,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,27,21,873,25170 +Volkswagen,Beetle Convertible,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,31795 +Volkswagen,Beetle Convertible,2014,regular unleaded,170,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,27,21,873,25170 +Volkswagen,Beetle Convertible,2014,regular unleaded,170,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,27,21,873,29395 +Volkswagen,Beetle Convertible,2014,diesel,140,4,MANUAL,front wheel drive,2,Diesel,Compact,Convertible,41,28,873,28895 +Volkswagen,Beetle Convertible,2015,diesel,150,4,MANUAL,front wheel drive,2,Diesel,Compact,Convertible,40,30,873,30295 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,31995 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,33995 +Volkswagen,Beetle Convertible,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,2,Diesel,Compact,Convertible,40,30,873,30195 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,32595 +Volkswagen,Beetle Convertible,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,29595 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,35095 +Volkswagen,Beetle Convertible,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,30425 +Volkswagen,Beetle Convertible,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,29595 +Volkswagen,Beetle Convertible,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,27475 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,30895 +Volkswagen,Beetle Convertible,2015,diesel,150,4,MANUAL,front wheel drive,2,Diesel,Compact,Convertible,40,30,873,31125 +Volkswagen,Beetle Convertible,2015,diesel,150,4,MANUAL,front wheel drive,2,Diesel,Compact,Convertible,40,30,873,29675 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,30995 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,34875 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,32595 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,29895 +Volkswagen,Beetle Convertible,2015,diesel,150,4,MANUAL,front wheel drive,2,Diesel,Compact,Convertible,40,30,873,29095 +Volkswagen,Beetle Convertible,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,2,Diesel,Compact,Convertible,40,30,873,31395 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,29895 +Volkswagen,Beetle Convertible,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,27475 +Volkswagen,Beetle Convertible,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,25595 +Volkswagen,Beetle Convertible,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,30425 +Volkswagen,Beetle Convertible,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,25595 +Volkswagen,Beetle Convertible,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,25995 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,30995 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,30895 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,35975 +Volkswagen,Beetle Convertible,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,2,Diesel,Compact,Convertible,40,30,873,30775 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,33995 +Volkswagen,Beetle Convertible,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,2,Diesel,Compact,Convertible,40,30,873,32225 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,35975 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,31495 +Volkswagen,Beetle Convertible,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,27995 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,35095 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,29,23,873,31995 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,31495 +Volkswagen,Beetle Convertible,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,32,24,873,27995 +Volkswagen,Beetle Convertible,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,34875 +Volkswagen,Beetle Convertible,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,29790 +Volkswagen,Beetle Convertible,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,34,25,873,28070 +Volkswagen,Beetle Convertible,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,34950 +Volkswagen,Beetle Convertible,2016,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,32670 +Volkswagen,Beetle Convertible,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,34,25,873,28070 +Volkswagen,Beetle Convertible,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,31570 +Volkswagen,Beetle Convertible,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,34,25,873,30500 +Volkswagen,Beetle Convertible,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,34,25,873,25995 +Volkswagen,Beetle Convertible,2016,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,36050 +Volkswagen,Beetle Convertible,2016,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,30890 +Volkswagen,Beetle Convertible,2016,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,36050 +Volkswagen,Beetle Convertible,2016,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,32670 +Volkswagen,Beetle Convertible,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,34,25,873,25490 +Volkswagen,Beetle Convertible,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,34950 +Volkswagen,Beetle Convertible,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,29790 +Volkswagen,Beetle Convertible,2016,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,30890 +Volkswagen,Beetle Convertible,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,34,25,873,30500 +Volkswagen,Beetle Convertible,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,31,23,873,31570 +Volkswagen,Beetle Convertible,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,34,25,873,25490 +Volkswagen,Beetle Convertible,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,34,25,873,25995 +Volkswagen,Beetle,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Diesel",Compact,2dr Hatchback,41,31,873,25895 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,30,24,873,31625 +Volkswagen,Beetle,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,873,20195 +Volkswagen,Beetle,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,873,24185 +Volkswagen,Beetle,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,873,26985 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,23,873,30525 +Volkswagen,Beetle,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,873,26195 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,23,873,30525 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,30,24,873,31625 +Volkswagen,Beetle,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,873,26195 +Volkswagen,Beetle,2015,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,873,23085 +Volkswagen,Beetle,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,873,21795 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,23,873,28115 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,30,24,873,32475 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,23,873,28675 +Volkswagen,Beetle,2015,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,873,20695 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,23,873,25450 +Volkswagen,Beetle,2015,diesel,150,4,MANUAL,front wheel drive,2,"Hatchback,Diesel",Compact,2dr Hatchback,41,31,873,27710 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,23,873,25450 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,30,24,873,26550 +Volkswagen,Beetle,2015,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,873,25885 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,30,24,873,29215 +Volkswagen,Beetle,2015,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,873,25095 +Volkswagen,Beetle,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Diesel",Compact,2dr Hatchback,41,31,873,26430 +Volkswagen,Beetle,2015,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,873,25885 +Volkswagen,Beetle,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Diesel",Compact,2dr Hatchback,41,31,873,29625 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,23,873,31375 +Volkswagen,Beetle,2015,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,873,25095 +Volkswagen,Beetle,2015,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,873,20695 +Volkswagen,Beetle,2015,diesel,150,4,MANUAL,front wheel drive,2,"Hatchback,Diesel",Compact,2dr Hatchback,41,31,873,28525 +Volkswagen,Beetle,2015,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,873,23085 +Volkswagen,Beetle,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Diesel",Compact,2dr Hatchback,41,31,873,28810 +Volkswagen,Beetle,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,873,24705 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,30,24,873,29215 +Volkswagen,Beetle,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,873,21795 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,30,24,873,32475 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,23,873,28115 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,23,873,28675 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,23,873,31375 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,30,24,873,26550 +Volkswagen,Beetle,2015,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,873,23605 +Volkswagen,Beetle,2015,diesel,150,4,MANUAL,front wheel drive,2,"Hatchback,Diesel",Compact,2dr Hatchback,41,31,873,25330 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,30,24,873,29775 +Volkswagen,Beetle,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,30,24,873,29775 +Volkswagen,Beetle,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,873,24705 +Volkswagen,Beetle,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,873,24185 +Volkswagen,Beetle,2015,diesel,150,4,MANUAL,front wheel drive,2,"Hatchback,Diesel",Compact,2dr Hatchback,41,31,873,24795 +Volkswagen,Beetle,2015,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,873,23605 +Volkswagen,Beetle,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,873,26985 +Volkswagen,Beetle,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,23,873,25995 +Volkswagen,Beetle,2016,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,24,873,27095 +Volkswagen,Beetle,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,34,25,873,22450 +Volkswagen,Beetle,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,34,25,873,19795 +Volkswagen,Beetle,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,34,25,873,25975 +Volkswagen,Beetle,2016,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,34,24,873,21350 +Volkswagen,Beetle,2016,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,24,873,27095 +Volkswagen,Beetle,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,34,25,873,19595 +Volkswagen,Beetle,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,23,873,31450 +Volkswagen,Beetle,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,23,873,31450 +Volkswagen,Beetle,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,34,25,873,22450 +Volkswagen,Beetle,2016,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,24,873,32550 +Volkswagen,Beetle,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,34,25,873,25975 +Volkswagen,Beetle,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,24,873,23995 +Volkswagen,Beetle,2016,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,24,873,32550 +Volkswagen,Beetle,2016,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,34,24,873,21350 +Volkswagen,Beetle,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,34,25,873,19795 +Volkswagen,Beetle,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,23,873,25995 +Volkswagen,Beetle,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,24,873,23995 +Volkswagen,Beetle,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,873,20475 +Volkswagen,Beetle,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,873,19995 +Volkswagen,Beetle,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,24,873,23995 +Volkswagen,Beetle,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,873,21890 +Volkswagen,Beetle,2017,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,29,23,873,32550 +Volkswagen,Beetle,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,873,25975 +Volkswagen,Beetle,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,873,22450 +Chevrolet,Beretta,1994,regular unleaded,170,4,MANUAL,front wheel drive,2,Performance,Compact,Coupe,27,18,1385,2000 +Chevrolet,Beretta,1994,regular unleaded,120,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,31,22,1385,2000 +Chevrolet,Beretta,1995,regular unleaded,120,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,33,21,1385,2000 +Chevrolet,Beretta,1995,regular unleaded,160,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,27,18,1385,2000 +Chevrolet,Beretta,1996,regular unleaded,120,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,33,22,1385,2000 +Chevrolet,Beretta,1996,regular unleaded,155,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,27,18,1385,2000 +Chevrolet,Black Diamond Avalanche,2013,flex-fuel (unleaded/E85),320,8,AUTOMATIC,four wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,39030 +Chevrolet,Black Diamond Avalanche,2013,flex-fuel (unleaded/E85),320,8,AUTOMATIC,four wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,41675 +Chevrolet,Black Diamond Avalanche,2013,flex-fuel (unleaded/E85),320,8,AUTOMATIC,rear wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,44580 +Chevrolet,Black Diamond Avalanche,2013,flex-fuel (unleaded/E85),320,8,AUTOMATIC,rear wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,38625 +Chevrolet,Black Diamond Avalanche,2013,flex-fuel (unleaded/E85),320,8,AUTOMATIC,four wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,47885 +Chevrolet,Black Diamond Avalanche,2013,flex-fuel (unleaded/E85),320,8,AUTOMATIC,rear wheel drive,4,"Crossover,Flex Fuel",Large,Crew Cab Pickup,21,15,1385,35980 +Lincoln,Blackwood,2002,premium unleaded (required),300,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Crew Cab Pickup,15,11,61,51785 +Chevrolet,Blazer,2003,regular unleaded,190,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,20,14,1385,20745 +Chevrolet,Blazer,2003,regular unleaded,190,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,18,13,1385,23745 +Chevrolet,Blazer,2003,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,15,1385,24695 +Chevrolet,Blazer,2003,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,17,13,1385,26695 +Chevrolet,Blazer,2003,regular unleaded,190,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,20,14,1385,22845 +Chevrolet,Blazer,2004,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,19,14,1385,25230 +Chevrolet,Blazer,2004,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,17,13,1385,27230 +Chevrolet,Blazer,2004,regular unleaded,190,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,18,13,1385,24055 +Chevrolet,Blazer,2004,regular unleaded,190,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,19,14,1385,23255 +Chevrolet,Blazer,2004,regular unleaded,190,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,19,14,1385,21055 +Chevrolet,Blazer,2005,regular unleaded,190,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,17,13,1385,24305 +Chevrolet,Blazer,2005,regular unleaded,190,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,20,14,1385,21305 +Chevrolet,Blazer,2005,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,1385,25480 +Chevrolet,Blazer,2005,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,18,14,1385,27480 +Chevrolet,Bolt EV,2017,electric,200,,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,110,128,1385,40905 +Chevrolet,Bolt EV,2017,electric,200,,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,110,128,1385,36620 +Pontiac,Bonneville,2003,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,17,210,26695 +Pontiac,Bonneville,2003,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,17,210,29670 +Pontiac,Bonneville,2003,premium unleaded (required),240,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,25,16,210,34020 +Pontiac,Bonneville,2004,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,18,210,27185 +Pontiac,Bonneville,2004,premium unleaded (required),275,8,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,22,15,210,35270 +Pontiac,Bonneville,2004,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,18,210,30035 +Pontiac,Bonneville,2005,premium unleaded (required),275,8,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,22,15,210,35585 +Pontiac,Bonneville,2005,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,18,210,30350 +Pontiac,Bonneville,2005,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,18,210,27965 +Kia,Borrego,2009,regular unleaded,337,8,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,22,15,1720,30995 +Kia,Borrego,2009,regular unleaded,276,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,17,1720,27995 +Kia,Borrego,2009,regular unleaded,276,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,21,16,1720,29995 +Kia,Borrego,2009,regular unleaded,276,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,17,1720,26245 +Kia,Borrego,2009,regular unleaded,337,8,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,1720,39995 +Kia,Borrego,2009,regular unleaded,337,8,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,22,15,1720,37995 +Kia,Borrego,2009,regular unleaded,337,8,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,1720,32995 +Kia,Borrego,2009,regular unleaded,337,8,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,1720,30995 +Kia,Borrego,2009,regular unleaded,276,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,21,16,1720,28295 +Porsche,Boxster,2014,premium unleaded (required),315,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,28,20,1715,62100 +Porsche,Boxster,2014,premium unleaded (required),265,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,30,20,1715,50400 +Porsche,Boxster,2015,premium unleaded (required),330,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,26,19,1715,73500 +Porsche,Boxster,2015,premium unleaded (required),315,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,28,20,1715,63300 +Porsche,Boxster,2015,premium unleaded (required),265,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,30,20,1715,51400 +Porsche,Boxster,2016,premium unleaded (required),330,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,26,19,1715,74600 +Porsche,Boxster,2016,premium unleaded (required),315,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,28,20,1715,63900 +Porsche,Boxster,2016,premium unleaded (required),265,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,30,20,1715,52100 +Oldsmobile,Bravada,2002,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,4dr SUV,19,14,26,34745 +Oldsmobile,Bravada,2002,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,26,32215 +Oldsmobile,Bravada,2002,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,26,32660 +Oldsmobile,Bravada,2003,regular unleaded,275,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,26,33395 +Oldsmobile,Bravada,2003,regular unleaded,275,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,4dr SUV,19,13,26,35345 +Oldsmobile,Bravada,2004,regular unleaded,275,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,19,14,26,33920 +Oldsmobile,Bravada,2004,regular unleaded,275,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,4dr SUV,19,14,26,35870 +Plymouth,Breeze,1998,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,33,23,535,2000 +Plymouth,Breeze,1998,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,33,23,535,2000 +Plymouth,Breeze,1999,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,33,23,535,2000 +Plymouth,Breeze,1999,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,33,23,535,2000 +Plymouth,Breeze,2000,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,34,23,535,2000 +Ford,Bronco II,1990,regular unleaded,140,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,20,16,5657,2000 +Ford,Bronco II,1990,regular unleaded,140,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,20,16,5657,2000 +Ford,Bronco II,1990,regular unleaded,140,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,20,15,5657,2000 +Ford,Bronco II,1990,regular unleaded,140,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,20,15,5657,2000 +Ford,Bronco II,1990,regular unleaded,140,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,20,15,5657,2000 +Ford,Bronco II,1990,regular unleaded,140,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,20,16,5657,2000 +Ford,Bronco II,1990,regular unleaded,140,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,20,15,5657,2000 +Ford,Bronco II,1990,regular unleaded,140,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,20,16,5657,2000 +Ford,Bronco,1994,regular unleaded,185,8,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,16,12,5657,2308 +Ford,Bronco,1994,regular unleaded,185,8,AUTOMATIC,four wheel drive,2,N/A,Midsize,2dr SUV,17,12,5657,2585 +Ford,Bronco,1994,regular unleaded,185,8,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,16,12,5657,2396 +Ford,Bronco,1995,regular unleaded,205,8,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,16,12,5657,2620 +Ford,Bronco,1995,regular unleaded,205,8,AUTOMATIC,four wheel drive,2,N/A,Midsize,2dr SUV,17,12,5657,2872 +Ford,Bronco,1995,regular unleaded,205,8,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,16,12,5657,2474 +Ford,Bronco,1996,regular unleaded,199,8,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,16,13,5657,2774 +Ford,Bronco,1996,regular unleaded,199,8,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,16,13,5657,2996 +Ford,Bronco,1996,regular unleaded,199,8,AUTOMATIC,four wheel drive,2,N/A,Midsize,2dr SUV,16,11,5657,3248 +Bentley,Brooklands,2009,premium unleaded (required),530,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Large,Coupe,14,10,520,340990 +Bentley,Brooklands,2010,premium unleaded (required),530,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Large,Coupe,15,9,520,340990 +Cadillac,Brougham,1990,regular unleaded,140,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,22,15,1624,2000 +Cadillac,Brougham,1990,regular unleaded,140,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,22,15,1624,2000 +Cadillac,Brougham,1991,regular unleaded,170,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,23,15,1624,2000 +Cadillac,Brougham,1992,regular unleaded,170,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,23,15,1624,2000 +Subaru,BRZ,2015,premium unleaded (required),200,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,30,22,640,29490 +Subaru,BRZ,2015,premium unleaded (required),200,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Coupe,34,25,640,28795 +Subaru,BRZ,2015,premium unleaded (required),200,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,30,22,640,25695 +Subaru,BRZ,2015,premium unleaded (required),200,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,30,22,640,27695 +Subaru,BRZ,2016,premium unleaded (required),200,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,30,22,640,27395 +Subaru,BRZ,2016,premium unleaded (required),200,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,30,22,640,27690 +Subaru,BRZ,2016,premium unleaded (required),200,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Coupe,34,25,640,28495 +Subaru,BRZ,2016,premium unleaded (required),200,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,30,22,640,25395 +Subaru,BRZ,2017,premium unleaded (required),200,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Coupe,33,24,640,28745 +Subaru,BRZ,2017,premium unleaded (required),205,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,29,21,640,29695 +Subaru,BRZ,2017,premium unleaded (required),205,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,29,21,640,25495 +Subaru,BRZ,2017,premium unleaded (required),205,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,29,21,640,27645 +Mercedes-Benz,C-Class,2015,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,24,617,40400 +Mercedes-Benz,C-Class,2015,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Compact,Coupe,27,19,617,46050 +Mercedes-Benz,C-Class,2015,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,27,19,617,42575 +Mercedes-Benz,C-Class,2015,premium unleaded (required),451,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,19,13,617,62950 +Mercedes-Benz,C-Class,2015,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,34,25,617,38400 +Mercedes-Benz,C-Class,2015,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,20,617,44050 +Mercedes-Benz,C-Class,2015,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,24,617,41050 +Mercedes-Benz,C-Class,2015,premium unleaded (required),329,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,29,21,617,48590 +Mercedes-Benz,C-Class,2015,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,34,25,617,39050 +Mercedes-Benz,C-Class,2015,premium unleaded (required),503,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,25,18,617,71900 +Mercedes-Benz,C-Class,2015,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,34,25,617,40575 +Mercedes-Benz,C-Class,2015,premium unleaded (required),469,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,25,18,617,63900 +Mercedes-Benz,C-Class,2015,premium unleaded (required),201,4,AUTOMATIC,rear wheel drive,2,Luxury,Compact,Coupe,31,22,617,39400 +Mercedes-Benz,C-Class,2016,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,24,617,43125 +Mercedes-Benz,C-Class,2016,premium unleaded (required),362,6,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,29,21,617,50800 +Mercedes-Benz,C-Class,2016,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,34,25,617,41125 +Mercedes-Benz,C-Class,2016,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,24,617,41275 +Mercedes-Benz,C-Class,2016,premium unleaded (required),503,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,25,18,617,73250 +Mercedes-Benz,C-Class,2016,premium unleaded (required),469,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,25,18,617,65250 +Mercedes-Benz,C-Class,2016,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,34,25,617,38950 +Mercedes-Benz,C-Class,2016,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,34,25,617,39275 +Mercedes-Benz,C-Class,2016,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,24,617,40950 +Mercedes-Benz,C-Class,2017,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,34,24,617,39850 +Mercedes-Benz,C-Class,2017,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,34,24,617,39500 +Mercedes-Benz,C-Class,2017,premium unleaded (required),362,6,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,29,21,617,52000 +Mercedes-Benz,C-Class,2017,premium unleaded (required),503,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,24,18,617,72800 +Mercedes-Benz,C-Class,2017,premium unleaded (required),469,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,23,17,617,67000 +Mercedes-Benz,C-Class,2017,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,34,24,617,41675 +Mercedes-Benz,C-Class,2017,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Coupe,31,24,617,44650 +Mercedes-Benz,C-Class,2017,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,30,23,617,42650 +Mercedes-Benz,C-Class,2017,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,24,617,43675 +Mercedes-Benz,C-Class,2017,premium unleaded (required),469,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,24,18,617,65200 +Mercedes-Benz,C-Class,2017,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,24,617,41500 +Mercedes-Benz,C-Class,2017,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,24,617,41850 +Mercedes-Benz,C-Class,2017,premium unleaded (required),503,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,23,17,617,75000 +Mercedes-Benz,C-Class,2017,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Convertible,29,22,617,52900 +Mercedes-Benz,C-Class,2017,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Convertible,31,23,617,50900 +Ford,C-Max Hybrid,2015,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Compact,Wagon,37,42,5657,27170 +Ford,C-Max Hybrid,2015,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Compact,Wagon,37,42,5657,24170 +Ford,C-Max Hybrid,2016,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Compact,Wagon,37,42,5657,24170 +Ford,C-Max Hybrid,2016,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Compact,Wagon,37,42,5657,27170 +Ford,C-Max Hybrid,2017,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Compact,Wagon,37,42,5657,24120 +Ford,C-Max Hybrid,2017,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Compact,Wagon,37,42,5657,27120 +Volvo,C30,2011,premium unleaded (recommended),227,5,MANUAL,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,29,21,870,24700 +Volvo,C30,2011,premium unleaded (recommended),227,5,MANUAL,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,29,21,870,27100 +Volvo,C30,2012,premium unleaded (recommended),227,5,MANUAL,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,29,21,870,27450 +Volvo,C30,2012,premium unleaded (recommended),227,5,MANUAL,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,29,21,870,24950 +Volvo,C30,2013,regular unleaded,227,5,MANUAL,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,29,21,870,25500 +Volvo,C30,2013,regular unleaded,227,5,MANUAL,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,29,21,870,27850 +Mercedes-Benz,C36 AMG,1995,regular unleaded,268,6,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,Performance",Compact,Sedan,20,16,617,3555 +Mercedes-Benz,C36 AMG,1996,regular unleaded,276,6,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,Performance",Compact,Sedan,20,16,617,3996 +Mercedes-Benz,C36 AMG,1997,regular unleaded,276,6,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,Performance",Compact,Sedan,22,16,617,4330 +Mercedes-Benz,C43 AMG,1998,regular unleaded,302,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,Performance",Compact,Sedan,21,16,617,4472 +Mercedes-Benz,C43 AMG,1999,regular unleaded,302,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,Performance",Compact,Sedan,21,16,617,4661 +Mercedes-Benz,C43 AMG,2000,regular unleaded,302,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,Performance",Compact,Sedan,21,16,617,5739 +Volvo,C70,2011,premium unleaded (recommended),227,5,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,28,19,870,39950 +Volvo,C70,2012,premium unleaded (recommended),227,5,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,28,18,870,40450 +Volvo,C70,2013,regular unleaded,227,5,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,28,19,870,41200 +Spyker,C8,2009,premium unleaded (required),400,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,18,13,2,209990 +Spyker,C8,2009,premium unleaded (required),400,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,18,13,2,219990 +Spyker,C8,2009,premium unleaded (required),400,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,18,13,2,209990 +Audi,Cabriolet,1996,regular unleaded,172,6,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,22,17,3105,2631 +Audi,Cabriolet,1997,regular unleaded,172,6,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,22,17,3105,2837 +Audi,Cabriolet,1998,regular unleaded,172,6,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,22,17,3105,3137 +Volkswagen,Cabriolet,1991,regular unleaded,94,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,29,22,873,2000 +Volkswagen,Cabriolet,1992,regular unleaded,94,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,29,22,873,2000 +Volkswagen,Cabriolet,1992,regular unleaded,94,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,29,22,873,2000 +Volkswagen,Cabriolet,1992,regular unleaded,94,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,29,22,873,2000 +Volkswagen,Cabriolet,1993,regular unleaded,94,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,27,21,873,2000 +Volkswagen,Cabriolet,1993,regular unleaded,94,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,27,21,873,2000 +Volkswagen,Cabrio,2000,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,28,21,873,2473 +Volkswagen,Cabrio,2000,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,28,21,873,2568 +Volkswagen,Cabrio,2001,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,28,21,873,19600 +Volkswagen,Cabrio,2001,regular unleaded,115,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,26,20,873,23175 +Volkswagen,Cabrio,2001,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,28,21,873,22300 +Volkswagen,Cabrio,2001,regular unleaded,115,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,26,20,873,20475 +Volkswagen,Cabrio,2001,regular unleaded,115,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,26,20,873,21475 +Volkswagen,Cabrio,2001,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,28,21,873,20600 +Volkswagen,Cabrio,2002,regular unleaded,115,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,27,20,873,21475 +Volkswagen,Cabrio,2002,regular unleaded,115,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,27,20,873,23175 +Volkswagen,Cabrio,2002,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,28,21,873,22300 +Volkswagen,Cabrio,2002,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,28,21,873,20600 +Volkswagen,Cabrio,2002,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,28,21,873,19600 +Volkswagen,Cabrio,2002,regular unleaded,115,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,27,20,873,20475 +Kia,Cadenza,2015,regular unleaded,293,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,28,19,1720,34900 +Kia,Cadenza,2015,regular unleaded,293,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,28,19,1720,43800 +Kia,Cadenza,2016,regular unleaded,293,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,28,19,1720,44090 +Kia,Cadenza,2016,regular unleaded,293,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,28,19,1720,35990 +Kia,Cadenza,2016,regular unleaded,293,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,28,19,1720,32990 +Kia,Cadenza,2017,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,28,20,1720,38990 +Kia,Cadenza,2017,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,28,20,1720,31990 +Kia,Cadenza,2017,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,28,20,1720,44390 +Dodge,Caliber,2010,regular unleaded,158,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,31,23,1851,18740 +Dodge,Caliber,2010,regular unleaded,172,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,29,23,1851,20555 +Dodge,Caliber,2010,regular unleaded,158,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,31,23,1851,16880 +Dodge,Caliber,2010,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,23,1851,19995 +Dodge,Caliber,2010,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,23,1851,18060 +Dodge,Caliber,2010,regular unleaded,158,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,31,23,1851,16975 +Dodge,Caliber,2010,regular unleaded,158,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,31,23,1851,17995 +Dodge,Caliber,2010,regular unleaded,172,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,29,23,1851,19995 +Dodge,Caliber,2011,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,23,1851,18620 +Dodge,Caliber,2011,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,23,1851,20585 +Dodge,Caliber,2011,regular unleaded,158,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,32,24,1851,17380 +Dodge,Caliber,2011,regular unleaded,172,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,29,23,1851,20585 +Dodge,Caliber,2011,regular unleaded,158,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,32,24,1851,18585 +Dodge,Caliber,2012,regular unleaded,158,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,32,24,1851,18730 +Dodge,Caliber,2012,regular unleaded,158,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,32,24,1851,17380 +Dodge,Caliber,2012,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,23,1851,18765 +Ferrari,California T,2015,premium unleaded (required),553,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,23,16,2774,198973 +Ferrari,California,2012,premium unleaded (required),453,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,19,13,2774,195840 +Ferrari,California,2013,premium unleaded (required),483,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,19,13,2774,198190 +Ferrari,California,2014,premium unleaded (required),483,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,19,13,2774,198190 +Chevrolet,Camaro,2015,regular unleaded,323,6,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,28,17,1385,29205 +Chevrolet,Camaro,2015,regular unleaded,323,6,MANUAL,rear wheel drive,2,Performance,Midsize,Convertible,28,17,1385,31205 +Chevrolet,Camaro,2015,premium unleaded (required),580,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Coupe,19,14,1385,55505 +Chevrolet,Camaro,2015,premium unleaded (recommended),426,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Convertible,24,16,1385,42405 +Chevrolet,Camaro,2015,premium unleaded (recommended),426,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Convertible,24,16,1385,39505 +Chevrolet,Camaro,2015,premium unleaded (recommended),426,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,24,16,1385,33505 +Chevrolet,Camaro,2015,premium unleaded (recommended),426,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,24,16,1385,37305 +Chevrolet,Camaro,2015,regular unleaded,323,6,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,28,17,1385,26005 +Chevrolet,Camaro,2015,regular unleaded,323,6,MANUAL,rear wheel drive,2,Performance,Midsize,Convertible,28,17,1385,35105 +Chevrolet,Camaro,2015,premium unleaded (required),505,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Coupe,19,13,1385,72305 +Chevrolet,Camaro,2015,regular unleaded,323,6,MANUAL,rear wheel drive,2,N/A,Midsize,Coupe,28,17,1385,23705 +Chevrolet,Camaro,2015,regular unleaded,323,6,AUTOMATIC,rear wheel drive,2,N/A,Midsize,Coupe,30,19,1385,25145 +Chevrolet,Camaro,2015,premium unleaded (required),580,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Convertible,19,14,1385,60705 +Chevrolet,Camaro,2016,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Convertible,25,16,1385,48300 +Chevrolet,Camaro,2016,premium unleaded (recommended),275,4,MANUAL,rear wheel drive,2,Performance,Midsize,Convertible,30,21,1385,36800 +Chevrolet,Camaro,2016,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,25,16,1385,41300 +Chevrolet,Camaro,2016,premium unleaded (recommended),275,4,MANUAL,rear wheel drive,2,Performance,Midsize,Convertible,30,21,1385,32700 +Chevrolet,Camaro,2016,premium unleaded (recommended),275,4,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,30,21,1385,25700 +Chevrolet,Camaro,2016,premium unleaded (recommended),275,4,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,30,21,1385,29800 +Chevrolet,Camaro,2016,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Convertible,25,16,1385,43300 +Chevrolet,Camaro,2016,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,25,16,1385,36300 +Chevrolet,Camaro,2017,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Convertible,25,16,1385,42905 +Chevrolet,Camaro,2017,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Convertible,25,16,1385,47905 +Chevrolet,Camaro,2017,premium unleaded (recommended),275,4,MANUAL,rear wheel drive,2,Performance,Midsize,Convertible,30,20,1385,35605 +Chevrolet,Camaro,2017,premium unleaded (recommended),275,4,AUTOMATIC,rear wheel drive,2,Performance,Midsize,Convertible,31,22,1385,32600 +Chevrolet,Camaro,2017,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,25,16,1385,41905 +Chevrolet,Camaro,2017,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,25,16,1385,36905 +Chevrolet,Camaro,2017,premium unleaded (recommended),275,4,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,30,20,1385,30405 +Chevrolet,Camaro,2017,premium unleaded (recommended),275,4,AUTOMATIC,rear wheel drive,2,Performance,Midsize,Coupe,31,22,1385,26600 +Chevrolet,Camaro,2017,premium unleaded (recommended),275,4,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,30,20,1385,25905 +Chevrolet,Camaro,2017,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Coupe,20,14,1385,61140 +Chevrolet,Camaro,2017,premium unleaded (recommended),275,4,MANUAL,rear wheel drive,2,Performance,Midsize,Convertible,30,20,1385,31905 +Chevrolet,Camaro,2017,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Convertible,20,14,1385,67140 +Toyota,Camry Hybrid,2015,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,38,40,2031,29980 +Toyota,Camry Hybrid,2015,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,38,40,2031,27995 +Toyota,Camry Hybrid,2015,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,39,43,2031,26790 +Toyota,Camry Hybrid,2016,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,38,40,2031,30140 +Toyota,Camry Hybrid,2016,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,38,40,2031,27995 +Toyota,Camry Hybrid,2016,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,39,43,2031,26790 +Toyota,Camry Hybrid,2017,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,38,42,2031,26790 +Toyota,Camry Hybrid,2017,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,37,40,2031,27995 +Toyota,Camry Hybrid,2017,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,37,40,2031,30140 +Toyota,Camry Solara,2006,regular unleaded,157,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,30,20,2031,21855 +Toyota,Camry Solara,2006,regular unleaded,225,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,26,18,2031,26940 +Toyota,Camry Solara,2006,regular unleaded,225,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,2031,23355 +Toyota,Camry Solara,2006,regular unleaded,225,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,26,18,2031,30210 +Toyota,Camry Solara,2006,regular unleaded,157,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,30,21,2031,21025 +Toyota,Camry Solara,2006,regular unleaded,225,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,2031,21860 +Toyota,Camry Solara,2006,regular unleaded,157,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,30,20,2031,20360 +Toyota,Camry Solara,2006,regular unleaded,157,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,30,21,2031,19530 +Toyota,Camry Solara,2006,regular unleaded,225,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,2031,26405 +Toyota,Camry Solara,2006,regular unleaded,157,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,30,20,2031,23405 +Toyota,Camry Solara,2007,regular unleaded,155,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,31,21,2031,19930 +Toyota,Camry Solara,2007,regular unleaded,210,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,26,18,2031,29460 +Toyota,Camry Solara,2007,regular unleaded,210,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,26,18,2031,27190 +Toyota,Camry Solara,2007,regular unleaded,155,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,31,22,2031,20760 +Toyota,Camry Solara,2007,regular unleaded,155,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,31,22,2031,23030 +Toyota,Camry Solara,2007,regular unleaded,210,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,2031,24530 +Toyota,Camry Solara,2007,regular unleaded,155,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,31,22,2031,23905 +Toyota,Camry Solara,2007,regular unleaded,210,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,2031,26905 +Toyota,Camry Solara,2007,regular unleaded,210,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,26,18,2031,30460 +Toyota,Camry Solara,2007,regular unleaded,210,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,2031,22260 +Toyota,Camry Solara,2007,regular unleaded,155,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,31,21,2031,22200 +Toyota,Camry Solara,2008,regular unleaded,210,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,26,18,2031,27440 +Toyota,Camry Solara,2008,regular unleaded,155,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,31,22,2031,24155 +Toyota,Camry Solara,2008,regular unleaded,155,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,31,21,2031,22450 +Toyota,Camry Solara,2008,regular unleaded,210,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,2031,27155 +Toyota,Camry Solara,2008,regular unleaded,210,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,2031,22510 +Toyota,Camry Solara,2008,regular unleaded,210,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,26,18,2031,30710 +Toyota,Camry Solara,2008,regular unleaded,155,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,31,22,2031,21010 +Toyota,Camry Solara,2008,regular unleaded,210,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,2031,24780 +Toyota,Camry Solara,2008,regular unleaded,155,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,31,22,2031,23280 +Toyota,Camry Solara,2008,regular unleaded,210,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,26,18,2031,29710 +Toyota,Camry Solara,2008,regular unleaded,155,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,31,21,2031,20180 +Toyota,Camry,2015,regular unleaded,178,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,25,2031,26150 +Toyota,Camry,2015,regular unleaded,178,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,25,2031,26150 +Toyota,Camry,2015,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,21,2031,31370 +Toyota,Camry,2015,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,21,2031,31370 +Toyota,Camry,2015,regular unleaded,178,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,25,2031,22970 +Toyota,Camry,2015,regular unleaded,178,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,25,2031,23840 +Toyota,Camry,2016,regular unleaded,178,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,25,2031,26310 +Toyota,Camry,2016,regular unleaded,178,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,25,2031,23840 +Toyota,Camry,2016,regular unleaded,178,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,25,2031,26310 +Toyota,Camry,2016,regular unleaded,178,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,25,2031,25715 +Toyota,Camry,2016,regular unleaded,178,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,25,2031,23070 +Toyota,Camry,2016,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,21,2031,31370 +Toyota,Camry,2016,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,21,2031,31370 +Toyota,Camry,2017,regular unleaded,178,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,33,24,2031,23070 +Toyota,Camry,2017,regular unleaded,178,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,33,24,2031,23840 +Toyota,Camry,2017,regular unleaded,178,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,33,24,2031,26310 +Toyota,Camry,2017,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,2031,31370 +Toyota,Camry,2017,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,30,21,2031,31370 +Toyota,Camry,2017,regular unleaded,178,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,33,24,2031,26310 +GMC,Canyon,2012,regular unleaded,185,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,25,18,549,24685 +GMC,Canyon,2012,regular unleaded,185,4,AUTOMATIC,four wheel drive,2,N/A,Compact,Regular Cab Pickup,23,17,549,22385 +GMC,Canyon,2012,regular unleaded,185,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,25,18,549,23040 +GMC,Canyon,2012,regular unleaded,242,5,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,549,31790 +GMC,Canyon,2012,regular unleaded,242,5,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,549,28610 +GMC,Canyon,2012,regular unleaded,185,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,25,18,549,20840 +GMC,Canyon,2012,regular unleaded,185,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,18,549,17490 +GMC,Canyon,2012,regular unleaded,242,5,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,23,17,549,29145 +GMC,Canyon,2012,regular unleaded,242,5,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,549,29125 +GMC,Canyon,2012,regular unleaded,185,4,AUTOMATIC,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,18,549,20455 +GMC,Canyon,2012,regular unleaded,185,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,23,17,549,24435 +GMC,Canyon,2012,regular unleaded,242,5,AUTOMATIC,four wheel drive,2,N/A,Compact,Regular Cab Pickup,23,17,549,25305 +GMC,Canyon,2012,regular unleaded,185,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,23,17,549,26485 +GMC,Canyon,2012,regular unleaded,242,5,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,23,17,549,26470 +GMC,Canyon,2015,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,27,20,549,29730 +GMC,Canyon,2015,regular unleaded,200,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,25,19,549,27935 +GMC,Canyon,2015,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,24,17,549,37250 +GMC,Canyon,2015,regular unleaded,200,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,26,19,549,22650 +GMC,Canyon,2015,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,27,20,549,26595 +GMC,Canyon,2015,regular unleaded,200,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,26,19,549,20995 +GMC,Canyon,2015,regular unleaded,305,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,26,18,549,26725 +GMC,Canyon,2015,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,27,20,549,25205 +GMC,Canyon,2015,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,27,20,549,31650 +GMC,Canyon,2015,regular unleaded,200,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,25,19,549,33855 +GMC,Canyon,2015,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,24,17,549,36950 +GMC,Canyon,2015,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,27,20,549,28535 +GMC,Canyon,2015,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,24,17,549,34310 +GMC,Canyon,2015,regular unleaded,305,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,26,18,549,33420 +GMC,Canyon,2015,regular unleaded,200,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,25,19,549,31145 +GMC,Canyon,2015,regular unleaded,305,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,26,18,549,30055 +GMC,Canyon,2015,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,24,17,549,34010 +GMC,Canyon,2016,regular unleaded,305,6,AUTOMATIC,rear wheel drive,4,Diesel,Compact,Crew Cab Pickup,26,18,549,34280 +GMC,Canyon,2016,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,Diesel,Compact,Crew Cab Pickup,24,17,549,35020 +GMC,Canyon,2016,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,Diesel,Compact,Crew Cab Pickup,24,17,549,38110 +GMC,Canyon,2016,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,Diesel,Compact,Crew Cab Pickup,24,17,549,37810 +GMC,Canyon,2016,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,24,17,549,35665 +GMC,Canyon,2016,regular unleaded,305,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,26,18,549,31540 +GMC,Canyon,2016,regular unleaded,200,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,26,19,549,20955 +GMC,Canyon,2016,regular unleaded,200,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,25,19,549,28595 +GMC,Canyon,2016,regular unleaded,305,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,26,18,549,27385 +GMC,Canyon,2016,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,Diesel,Compact,Crew Cab Pickup,27,20,549,29245 +GMC,Canyon,2016,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,27,20,549,25865 +GMC,Canyon,2016,regular unleaded,200,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,26,19,549,23310 +GMC,Canyon,2016,regular unleaded,305,6,AUTOMATIC,rear wheel drive,4,Diesel,Compact,Crew Cab Pickup,26,18,549,30765 +GMC,Canyon,2016,regular unleaded,200,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,25,19,549,31855 +GMC,Canyon,2016,regular unleaded,305,6,AUTOMATIC,rear wheel drive,4,Diesel,Compact,Crew Cab Pickup,26,18,549,33460 +GMC,Canyon,2016,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,Diesel,Compact,Crew Cab Pickup,24,17,549,34720 +GMC,Canyon,2016,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,27,20,549,27305 +Chevrolet,Caprice,1994,regular unleaded,260,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,23,15,1385,2000 +Chevrolet,Caprice,1994,regular unleaded,200,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,24,16,1385,2000 +Chevrolet,Caprice,1994,regular unleaded,200,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,24,16,1385,2000 +Chevrolet,Caprice,1995,regular unleaded,200,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,24,16,1385,2000 +Chevrolet,Caprice,1995,regular unleaded,260,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,23,15,1385,2000 +Chevrolet,Caprice,1996,regular unleaded,260,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,24,15,1385,2000 +Chevrolet,Caprice,1996,regular unleaded,200,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,24,16,1385,2000 +Chevrolet,Captiva Sport,2013,flex-fuel (unleaded/E85),180,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,28,20,1385,24155 +Chevrolet,Captiva Sport,2013,flex-fuel (unleaded/E85),180,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,28,20,1385,29615 +Chevrolet,Captiva Sport,2013,flex-fuel (unleaded/E85),180,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,28,20,1385,25770 +Chevrolet,Captiva Sport,2013,flex-fuel (unleaded/E85),180,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,28,20,1385,24940 +Chevrolet,Captiva Sport,2014,flex-fuel (unleaded/E85),180,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,28,20,1385,25145 +Chevrolet,Captiva Sport,2014,flex-fuel (unleaded/E85),180,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,28,20,1385,24360 +Chevrolet,Captiva Sport,2014,flex-fuel (unleaded/E85),180,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,28,20,1385,25975 +Chevrolet,Captiva Sport,2014,flex-fuel (unleaded/E85),180,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,28,20,1385,29495 +Chevrolet,Captiva Sport,2015,flex-fuel (unleaded/E85),180,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,28,20,1385,25985 +Chevrolet,Captiva Sport,2015,flex-fuel (unleaded/E85),180,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,28,20,1385,29505 +Chevrolet,Captiva Sport,2015,flex-fuel (unleaded/E85),180,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,28,20,1385,25155 +Chevrolet,Captiva Sport,2015,flex-fuel (unleaded/E85),180,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,28,20,1385,24370 +Dodge,Caravan,2005,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Passenger Minivan,24,17,1851,18380 +Dodge,Caravan,2005,regular unleaded,180,6,AUTOMATIC,front wheel drive,4,N/A,Large,Cargo Minivan,24,17,1851,19835 +Dodge,Caravan,2005,regular unleaded,180,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,24,17,1851,22225 +Dodge,Caravan,2006,regular unleaded,180,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Cargo Minivan,24,17,1851,20130 +Dodge,Caravan,2006,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Passenger Minivan,24,17,1851,18630 +Dodge,Caravan,2006,regular unleaded,180,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,24,17,1851,22520 +Dodge,Caravan,2007,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,24,17,1851,22995 +Dodge,Caravan,2007,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Compact,Cargo Minivan,24,17,1851,20555 +Dodge,Caravan,2007,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Compact,Passenger Minivan,24,17,1851,19055 +Porsche,Carrera GT,2004,premium unleaded (required),605,10,MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Convertible,15,9,1715,440000 +Porsche,Carrera GT,2005,premium unleaded (required),605,10,MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Convertible,15,9,1715,440000 +Buick,Cascada,2016,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,27,20,155,33065 +Buick,Cascada,2016,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,27,20,155,36065 +Buick,Cascada,2017,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,27,20,155,36065 +Buick,Cascada,2017,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,27,20,155,33065 +Buick,Cascada,2017,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,27,20,155,37065 +Cadillac,Catera,1999,regular unleaded,200,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,23,16,1624,2066 +Cadillac,Catera,2000,regular unleaded,200,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,23,16,1624,2103 +Cadillac,Catera,2000,regular unleaded,200,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,23,16,1624,2241 +Cadillac,Catera,2001,premium unleaded (required),200,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,22,16,1624,31305 +Chevrolet,Cavalier,2003,regular unleaded,140,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,22,1385,14230 +Chevrolet,Cavalier,2003,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,22,1385,14030 +Chevrolet,Cavalier,2003,regular unleaded,140,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,22,1385,15730 +Chevrolet,Cavalier,2003,regular unleaded,140,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,22,1385,17030 +Chevrolet,Cavalier,2003,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,22,1385,16830 +Chevrolet,Cavalier,2003,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,22,1385,15530 +Chevrolet,Cavalier,2004,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,23,1385,17410 +Chevrolet,Cavalier,2004,regular unleaded,140,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,23,1385,16105 +Chevrolet,Cavalier,2004,regular unleaded,140,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,23,1385,14435 +Chevrolet,Cavalier,2004,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,23,1385,15905 +Chevrolet,Cavalier,2004,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,23,1385,14235 +Chevrolet,Cavalier,2004,regular unleaded,140,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,23,1385,17610 +Chevrolet,Cavalier,2004,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,23,1385,10135 +Chevrolet,Cavalier,2005,regular unleaded,140,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,23,1385,16290 +Chevrolet,Cavalier,2005,regular unleaded,140,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,23,1385,14610 +Chevrolet,Cavalier,2005,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,23,1385,16090 +Chevrolet,Cavalier,2005,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,23,1385,17510 +Chevrolet,Cavalier,2005,regular unleaded,140,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,23,1385,17710 +Chevrolet,Cavalier,2005,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,23,1385,14410 +Chevrolet,Cavalier,2005,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,23,1385,10325 +Porsche,Cayenne,2015,premium unleaded (required),420,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,1715,74100 +Porsche,Cayenne,2015,premium unleaded (required),520,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,21,14,1715,113600 +Porsche,Cayenne,2015,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,29,20,1715,61700 +Porsche,Cayenne,2016,premium unleaded (required),440,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,High-Performance",Midsize,4dr SUV,23,16,1715,95500 +Porsche,Cayenne,2016,premium unleaded (required),420,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,1715,74800 +Porsche,Cayenne,2016,premium unleaded (required),520,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,21,14,1715,114700 +Porsche,Cayenne,2016,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,19,1715,58300 +Porsche,Cayenne,2016,premium unleaded (required),570,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,High-Performance",Midsize,4dr SUV,21,14,1715,157300 +Porsche,Cayenne,2016,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,29,20,1715,62300 +Porsche,Cayenne,2017,premium unleaded (required),520,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,21,14,1715,116500 +Porsche,Cayenne,2017,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,18,1715,59600 +Porsche,Cayenne,2017,premium unleaded (required),440,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,High-Performance",Midsize,4dr SUV,23,16,1715,97200 +Porsche,Cayenne,2017,premium unleaded (required),570,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,High-Performance",Midsize,4dr SUV,21,14,1715,159600 +Porsche,Cayenne,2017,premium unleaded (required),420,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,1715,76200 +Porsche,Cayman S,2006,premium unleaded (required),295,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,26,18,1715,58900 +Porsche,Cayman,2014,premium unleaded (required),275,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,30,20,1715,52600 +Porsche,Cayman,2014,premium unleaded (required),325,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,20,1715,63800 +Porsche,Cayman,2015,premium unleaded (required),325,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,20,1715,63800 +Porsche,Cayman,2015,premium unleaded (required),340,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,26,19,1715,75200 +Porsche,Cayman,2015,premium unleaded (required),275,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,30,20,1715,52600 +Porsche,Cayman,2016,premium unleaded (required),325,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,28,20,1715,64100 +Porsche,Cayman,2016,premium unleaded (required),340,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,26,19,1715,75200 +Porsche,Cayman,2016,premium unleaded (required),275,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,30,20,1715,52600 +Volkswagen,CC,2015,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,21,873,34275 +Volkswagen,CC,2015,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,34095 +Volkswagen,CC,2015,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,21,873,32995 +Volkswagen,CC,2015,premium unleaded (recommended),280,6,AUTOMATED_MANUAL,all wheel drive,4,Performance,Midsize,Sedan,25,17,873,43575 +Volkswagen,CC,2015,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,21,873,32995 +Volkswagen,CC,2015,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,38085 +Volkswagen,CC,2015,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,35375 +Volkswagen,CC,2015,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,35375 +Volkswagen,CC,2015,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,38085 +Volkswagen,CC,2015,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,34095 +Volkswagen,CC,2015,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,21,873,34275 +Volkswagen,CC,2016,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,32670 +Volkswagen,CC,2016,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,21,873,34655 +Volkswagen,CC,2016,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,35755 +Volkswagen,CC,2016,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,37820 +Volkswagen,CC,2016,premium unleaded (recommended),280,6,AUTOMATED_MANUAL,all wheel drive,4,Performance,Midsize,Sedan,25,17,873,44355 +Volkswagen,CC,2016,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,37820 +Volkswagen,CC,2016,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,37820 +Volkswagen,CC,2016,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,34475 +Volkswagen,CC,2016,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,34475 +Volkswagen,CC,2016,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,37820 +Volkswagen,CC,2016,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,21,873,31570 +Volkswagen,CC,2016,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,32670 +Volkswagen,CC,2016,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,21,873,34655 +Volkswagen,CC,2016,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,21,873,31570 +Volkswagen,CC,2016,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,35755 +Volkswagen,CC,2017,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,37820 +Volkswagen,CC,2017,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,37820 +Volkswagen,CC,2017,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,34475 +Volkswagen,CC,2017,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,37820 +Volkswagen,CC,2017,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,37820 +Volkswagen,CC,2017,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,31,22,873,34475 +Chevrolet,Celebrity,1990,regular unleaded,135,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Wagon,27,17,1385,2000 +Chevrolet,Celebrity,1990,regular unleaded,110,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Wagon,29,20,1385,2000 +Toyota,Celica,2003,regular unleaded,140,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,2031,18140 +Toyota,Celica,2003,premium unleaded (required),180,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,29,20,2031,22005 +Toyota,Celica,2003,premium unleaded (required),180,4,AUTOMATIC,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,27,20,2031,22705 +Toyota,Celica,2003,regular unleaded,140,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,23,2031,17340 +Toyota,Celica,2004,regular unleaded,140,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,23,2031,19535 +Toyota,Celica,2004,premium unleaded (required),180,4,AUTOMATIC,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,28,22,2031,22935 +Toyota,Celica,2004,premium unleaded (required),180,4,AUTOMATIC,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,28,22,2031,24810 +Toyota,Celica,2004,premium unleaded (required),180,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,30,21,2031,22235 +Toyota,Celica,2004,regular unleaded,140,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,2031,18370 +Toyota,Celica,2004,regular unleaded,140,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,23,2031,17570 +Toyota,Celica,2004,regular unleaded,140,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,2031,20335 +Toyota,Celica,2004,premium unleaded (required),180,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,30,21,2031,24110 +Toyota,Celica,2005,regular unleaded,140,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,23,2031,17670 +Toyota,Celica,2005,premium unleaded (required),180,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,30,21,2031,22335 +Toyota,Celica,2005,premium unleaded (required),180,4,AUTOMATIC,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,28,22,2031,23035 +Toyota,Celica,2005,regular unleaded,140,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,2031,18470 +Buick,Century,2003,regular unleaded,175,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,18,155,21235 +Buick,Century,2004,regular unleaded,175,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,155,21815 +Buick,Century,2005,regular unleaded,175,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,155,22040 +Dodge,Challenger,2015,regular unleaded,375,8,MANUAL,rear wheel drive,2,Performance,Large,Coupe,23,15,1851,31995 +Dodge,Challenger,2015,premium unleaded (recommended),485,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Large,Coupe,23,14,1851,42595 +Dodge,Challenger,2015,regular unleaded,375,8,MANUAL,rear wheel drive,2,Performance,Large,Coupe,23,15,1851,35795 +Dodge,Challenger,2015,premium unleaded (recommended),485,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Large,Coupe,23,14,1851,37995 +Dodge,Challenger,2015,regular unleaded,305,6,AUTOMATIC,rear wheel drive,2,Performance,Large,Coupe,30,19,1851,29995 +Dodge,Challenger,2015,regular unleaded,375,8,MANUAL,rear wheel drive,2,Performance,Large,Coupe,23,15,1851,38795 +Dodge,Challenger,2015,premium unleaded (recommended),707,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Large,Coupe,22,13,1851,58295 +Dodge,Challenger,2015,premium unleaded (recommended),485,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Large,Coupe,23,14,1851,45695 +Dodge,Challenger,2015,regular unleaded,375,8,MANUAL,rear wheel drive,2,Performance,Large,Coupe,23,15,1851,34995 +Dodge,Challenger,2015,regular unleaded,305,6,AUTOMATIC,rear wheel drive,2,Performance,Large,Coupe,30,19,1851,26995 +Dodge,Challenger,2016,regular unleaded,375,8,MANUAL,rear wheel drive,2,High-Performance,Large,Coupe,23,15,1851,31995 +Dodge,Challenger,2016,premium unleaded (recommended),485,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Large,Coupe,23,14,1851,49195 +Dodge,Challenger,2016,regular unleaded,305,6,AUTOMATIC,rear wheel drive,2,Performance,Large,Coupe,30,19,1851,29995 +Dodge,Challenger,2016,premium unleaded (recommended),485,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Large,Coupe,23,14,1851,37995 +Dodge,Challenger,2016,regular unleaded,375,8,MANUAL,rear wheel drive,2,High-Performance,Large,Coupe,23,15,1851,34995 +Dodge,Challenger,2016,regular unleaded,375,8,MANUAL,rear wheel drive,2,High-Performance,Large,Coupe,23,15,1851,38995 +Dodge,Challenger,2016,regular unleaded,305,6,AUTOMATIC,rear wheel drive,2,Performance,Large,Coupe,30,19,1851,26995 +Dodge,Challenger,2016,premium unleaded (recommended),707,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,High-Performance",Large,Coupe,21,13,1851,65945 +Dodge,Challenger,2016,premium unleaded (recommended),485,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Large,Coupe,23,14,1851,42795 +Dodge,Challenger,2016,regular unleaded,375,8,MANUAL,rear wheel drive,2,High-Performance,Large,Coupe,23,15,1851,35995 +Dodge,Challenger,2017,regular unleaded,375,8,MANUAL,rear wheel drive,2,High-Performance,Large,Coupe,23,15,1851,35890 +Dodge,Challenger,2017,premium unleaded (recommended),485,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Large,Coupe,23,14,1851,37995 +Dodge,Challenger,2017,premium unleaded (recommended),485,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Large,Coupe,23,14,1851,49195 +Dodge,Challenger,2017,regular unleaded,375,8,MANUAL,rear wheel drive,2,High-Performance,Large,Coupe,23,15,1851,36890 +Dodge,Challenger,2017,premium unleaded (recommended),707,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Large,Coupe,21,13,1851,62495 +Dodge,Challenger,2017,regular unleaded,375,8,MANUAL,rear wheel drive,2,High-Performance,Large,Coupe,23,15,1851,32890 +Dodge,Challenger,2017,regular unleaded,305,6,AUTOMATIC,rear wheel drive,2,Performance,Large,Coupe,30,19,1851,26995 +Dodge,Challenger,2017,regular unleaded,375,8,MANUAL,rear wheel drive,2,High-Performance,Large,Coupe,23,15,1851,39890 +Dodge,Challenger,2017,premium unleaded (recommended),485,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Large,Coupe,23,14,1851,42795 +Dodge,Challenger,2017,regular unleaded,305,6,AUTOMATIC,rear wheel drive,2,Performance,Large,Coupe,30,19,1851,29995 +Dodge,Challenger,2017,premium unleaded (recommended),485,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Large,Coupe,23,14,1851,43995 +Dodge,Challenger,2017,regular unleaded,375,8,MANUAL,rear wheel drive,2,High-Performance,Large,Coupe,23,15,1851,37390 +Dodge,Challenger,2017,regular unleaded,375,8,MANUAL,rear wheel drive,2,High-Performance,Large,Coupe,23,15,1851,40140 +Dodge,Charger,2015,premium unleaded (recommended),485,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,High-Performance",Large,Sedan,25,15,1851,47995 +Dodge,Charger,2015,premium unleaded (recommended),485,8,AUTOMATIC,rear wheel drive,4,High-Performance,Large,Sedan,25,15,1851,39995 +Dodge,Charger,2015,premium unleaded (recommended),707,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,High-Performance",Large,Sedan,22,13,1851,62295 +Dodge,Charger,2015,regular unleaded,370,8,AUTOMATIC,rear wheel drive,4,High-Performance,Large,Sedan,25,16,1851,33595 +Dodge,Charger,2015,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,31,19,1851,27995 +Dodge,Charger,2015,regular unleaded,370,8,AUTOMATIC,rear wheel drive,4,High-Performance,Large,Sedan,25,16,1851,36595 +Dodge,Charger,2015,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1851,32995 +Dodge,Charger,2015,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1851,30995 +Dodge,Charger,2015,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,31,19,1851,29995 +Dodge,Charger,2016,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,31,19,1851,27995 +Dodge,Charger,2016,premium unleaded (recommended),707,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,High-Performance",Large,Sedan,22,13,1851,65945 +Dodge,Charger,2016,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,Performance,Large,Sedan,31,19,1851,29995 +Dodge,Charger,2016,premium unleaded (recommended),485,8,AUTOMATIC,rear wheel drive,4,High-Performance,Large,Sedan,25,15,1851,39995 +Dodge,Charger,2016,premium unleaded (recommended),485,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,High-Performance",Large,Sedan,25,15,1851,50995 +Dodge,Charger,2016,regular unleaded,370,8,AUTOMATIC,rear wheel drive,4,High-Performance,Large,Sedan,25,16,1851,36895 +Dodge,Charger,2016,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,31,19,1851,31995 +Dodge,Charger,2016,regular unleaded,370,8,AUTOMATIC,rear wheel drive,4,High-Performance,Large,Sedan,25,16,1851,33895 +Dodge,Charger,2016,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,31,19,1851,30245 +Dodge,Charger,2017,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,30,19,1851,27995 +Dodge,Charger,2017,regular unleaded,370,8,AUTOMATIC,rear wheel drive,4,High-Performance,Large,Sedan,25,16,1851,34790 +Dodge,Charger,2017,premium unleaded (recommended),485,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,High-Performance",Large,Sedan,25,15,1851,51145 +Dodge,Charger,2017,premium unleaded (recommended),707,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,High-Performance",Large,Sedan,22,13,1851,65945 +Dodge,Charger,2017,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1851,30245 +Dodge,Charger,2017,regular unleaded,292,6,AUTOMATIC,rear wheel drive,4,Performance,Large,Sedan,30,19,1851,29995 +Dodge,Charger,2017,regular unleaded,370,8,AUTOMATIC,rear wheel drive,4,High-Performance,Large,Sedan,25,16,1851,39890 +Dodge,Charger,2017,premium unleaded (recommended),485,8,AUTOMATIC,rear wheel drive,4,High-Performance,Large,Sedan,25,15,1851,44995 +Dodge,Charger,2017,regular unleaded,292,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,27,18,1851,31995 +Dodge,Charger,2017,premium unleaded (recommended),485,8,AUTOMATIC,rear wheel drive,4,High-Performance,Large,Sedan,25,15,1851,39995 +Chevrolet,Chevy Van,1996,regular unleaded,195,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,17,14,1385,2000 +Chevrolet,Chevy Van,1996,regular unleaded,195,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,17,14,1385,2000 +Chevrolet,Chevy Van,1996,regular unleaded,195,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,17,14,1385,2000 +Chevrolet,Chevy Van,1997,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,17,14,1385,2000 +Chevrolet,Chevy Van,1997,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,17,14,1385,2000 +Chevrolet,Chevy Van,1997,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,17,14,1385,2000 +Chevrolet,Chevy Van,1998,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,18,13,1385,2050 +Chevrolet,Chevy Van,1998,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,18,13,1385,2052 +Chevrolet,Chevy Van,1998,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,18,13,1385,2116 +Oldsmobile,Ciera,1995,regular unleaded,160,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Wagon,26,17,26,2000 +Oldsmobile,Ciera,1996,regular unleaded,120,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,29,21,26,2000 +Oldsmobile,Ciera,1996,regular unleaded,160,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Wagon,26,18,26,2000 +Chrysler,Cirrus,1998,regular unleaded,168,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,17,1013,2107 +Chrysler,Cirrus,1999,regular unleaded,168,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,17,1013,2202 +Chrysler,Cirrus,2000,regular unleaded,168,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,16,1013,2373 +Chevrolet,City Express,2015,regular unleaded,131,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,26,24,1385,23515 +Chevrolet,City Express,2015,regular unleaded,131,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,26,24,1385,21955 +Chevrolet,City Express,2016,regular unleaded,131,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,26,24,1385,23515 +Chevrolet,City Express,2016,regular unleaded,131,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,26,24,1385,21955 +Chevrolet,City Express,2017,regular unleaded,131,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,26,24,1385,22405 +Chevrolet,City Express,2017,regular unleaded,131,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,26,24,1385,23515 +Honda,Civic CRX,1990,regular unleaded,62,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,44,36,2202,2000 +Honda,Civic CRX,1990,regular unleaded,108,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,24,2202,2000 +Honda,Civic CRX,1990,regular unleaded,92,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,32,27,2202,2000 +Honda,Civic CRX,1991,regular unleaded,108,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,24,2202,2000 +Honda,Civic CRX,1991,regular unleaded,92,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,27,2202,2000 +Honda,Civic CRX,1991,regular unleaded,62,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,44,36,2202,2000 +Honda,Civic del Sol,1995,regular unleaded,102,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,37,30,2202,2000 +Honda,Civic del Sol,1995,regular unleaded,125,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,32,25,2202,2000 +Honda,Civic del Sol,1995,regular unleaded,160,4,MANUAL,front wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,27,23,2202,2033 +Honda,Civic del Sol,1996,regular unleaded,106,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,29,2202,2000 +Honda,Civic del Sol,1996,regular unleaded,160,4,MANUAL,front wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,27,23,2202,2213 +Honda,Civic del Sol,1996,regular unleaded,125,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,26,2202,2108 +Honda,Civic del Sol,1997,regular unleaded,160,4,MANUAL,front wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,27,23,2202,2410 +Honda,Civic del Sol,1997,regular unleaded,106,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,28,2202,2142 +Honda,Civic del Sol,1997,regular unleaded,127,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,26,2202,2322 +Honda,Civic,2015,regular unleaded,143,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,39,30,2202,24340 +Honda,Civic,2015,regular unleaded,143,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,41,31,2202,20040 +Honda,Civic,2015,regular unleaded,143,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,39,30,2202,19990 +Honda,Civic,2015,premium unleaded (required),205,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Compact,Sedan,31,22,2202,24590 +Honda,Civic,2015,regular unleaded,110,4,AUTOMATIC,front wheel drive,4,Hybrid,Compact,Sedan,47,44,2202,27435 +Honda,Civic,2015,premium unleaded (required),205,4,MANUAL,front wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,31,22,2202,23090 +Honda,Civic,2015,regular unleaded,143,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,36,28,2202,20390 +Honda,Civic,2015,premium unleaded (required),205,4,MANUAL,front wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,31,22,2202,22890 +Honda,Civic,2015,regular unleaded,143,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,39,30,2202,21190 +Honda,Civic,2015,regular unleaded,110,4,AUTOMATIC,front wheel drive,4,Hybrid,Compact,Sedan,47,44,2202,25935 +Honda,Civic,2015,premium unleaded (required),205,4,MANUAL,front wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,31,22,2202,24390 +Honda,Civic,2015,regular unleaded,143,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,39,30,2202,22840 +Honda,Civic,2015,premium unleaded (required),205,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Compact,Sedan,31,22,2202,23290 +Honda,Civic,2015,natural gas,110,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,27,2202,26740 +Honda,Civic,2015,regular unleaded,110,4,AUTOMATIC,front wheel drive,4,Hybrid,Compact,Sedan,47,44,2202,26235 +Honda,Civic,2015,regular unleaded,110,4,AUTOMATIC,front wheel drive,4,Hybrid,Compact,Sedan,47,44,2202,24735 +Honda,Civic,2015,regular unleaded,143,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,39,30,2202,19290 +Honda,Civic,2015,regular unleaded,143,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,38,29,2202,21190 +Honda,Civic,2015,regular unleaded,143,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,38,29,2202,24140 +Honda,Civic,2015,regular unleaded,143,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,36,28,2202,18290 +Honda,Civic,2015,regular unleaded,143,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,28,2202,18490 +Honda,Civic,2015,premium unleaded (required),205,4,MANUAL,front wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,31,22,2202,24590 +Honda,Civic,2015,natural gas,110,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,27,2202,29390 +Honda,Civic,2015,regular unleaded,143,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,38,29,2202,22640 +Honda,Civic,2015,premium unleaded (required),205,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Compact,Sedan,31,22,2202,23090 +Honda,Civic,2015,regular unleaded,143,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,39,30,2202,19090 +Honda,Civic,2016,regular unleaded,174,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,41,31,2202,26125 +Honda,Civic,2016,regular unleaded,174,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,41,31,2202,23425 +Honda,Civic,2016,regular unleaded,174,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,42,31,2202,26500 +Honda,Civic,2016,regular unleaded,174,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,41,31,2202,22300 +Honda,Civic,2016,regular unleaded,158,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,40,27,2202,18640 +Honda,Civic,2016,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,41,31,2202,22040 +Honda,Civic,2016,regular unleaded,174,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,42,31,2202,22200 +Honda,Civic,2016,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,41,31,2202,21040 +Honda,Civic,2016,regular unleaded,158,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,41,30,2202,20850 +Honda,Civic,2016,regular unleaded,174,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,42,31,2202,24700 +Honda,Civic,2016,regular unleaded,158,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,38,26,2202,19050 +Honda,Civic,2016,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,41,31,2202,19440 +Honda,Civic,2016,regular unleaded,174,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,42,31,2202,23700 +Honda,Civic,2016,regular unleaded,174,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,42,31,2202,23200 +Honda,Civic,2016,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,41,31,2202,20440 +Honda,Civic,2016,regular unleaded,174,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,42,31,2202,24700 +Honda,Civic,2016,regular unleaded,158,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,41,30,2202,19850 +Honda,Civic,2017,regular unleaded,174,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,39,30,2202,19700 +Honda,Civic,2017,premium unleaded (recommended),180,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,39,30,2202,21300 +Honda,Civic,2017,regular unleaded,174,4,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,40,31,2202,25300 +Honda,Civic,2017,regular unleaded,174,4,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,40,31,2202,22800 +Honda,Civic,2017,regular unleaded,174,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,31,2202,20500 +Honda,Civic,2017,premium unleaded (recommended),180,4,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,36,30,2202,22100 +Honda,Civic,2017,regular unleaded,174,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,42,32,2202,26600 +Honda,Civic,2017,regular unleaded,174,4,AUTOMATIC,front wheel drive,2,Performance,Compact,Coupe,40,31,2202,26225 +Honda,Civic,2017,regular unleaded,174,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,42,32,2202,22300 +Honda,Civic,2017,regular unleaded,174,4,AUTOMATIC,front wheel drive,2,Performance,Compact,Coupe,40,31,2202,23525 +Honda,Civic,2017,regular unleaded,174,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,42,32,2202,23800 +Honda,Civic,2017,regular unleaded,174,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,42,31,2202,21500 +Honda,Civic,2017,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,40,31,2202,20540 +Honda,Civic,2017,regular unleaded,158,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,40,28,2202,18740 +Honda,Civic,2017,regular unleaded,158,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,39,30,2202,20950 +Honda,Civic,2017,regular unleaded,174,4,AUTOMATIC,front wheel drive,2,Performance,Compact,Coupe,40,31,2202,22400 +Honda,Civic,2017,regular unleaded,174,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,42,32,2202,23300 +Honda,Civic,2017,regular unleaded,174,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,42,32,2202,24800 +Honda,Civic,2017,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,40,31,2202,19540 +Honda,Civic,2017,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,40,31,2202,21140 +Honda,Civic,2017,regular unleaded,158,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,39,28,2202,19150 +Honda,Civic,2017,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,40,31,2202,22140 +Honda,Civic,2017,regular unleaded,158,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,39,30,2202,19950 +Honda,Civic,2017,regular unleaded,174,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,42,32,2202,24800 +Honda,Civic,2017,regular unleaded,174,4,MANUAL,front wheel drive,2,Performance,Compact,Coupe,41,30,2202,21600 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,18,14,1385,2949 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,18,14,1385,2992 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,20,15,1385,2529 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,18,14,1385,2580 +Chevrolet,C/K 1500 Series,1997,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,19,14,1385,2668 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,18,14,1385,2583 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,20,15,1385,2637 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,20,15,1385,2517 +Chevrolet,C/K 1500 Series,1997,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,17,11,1385,3046 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,20,15,1385,2265 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,18,14,1385,3046 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,20,15,1385,2896 +Chevrolet,C/K 1500 Series,1997,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,19,14,1385,2891 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,20,15,1385,2713 +Chevrolet,C/K 1500 Series,1997,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,17,11,1385,3120 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,18,14,1385,2653 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,18,14,1385,2541 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,20,15,1385,2486 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,20,15,1385,2268 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,20,15,1385,2207 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,18,14,1385,2925 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,20,15,1385,2242 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,20,15,1385,2554 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,18,14,1385,3088 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,18,14,1385,2749 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,18,14,1385,3220 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,18,14,1385,2996 +Chevrolet,C/K 1500 Series,1997,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,20,15,1385,2366 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,19,14,1385,3265 +Chevrolet,C/K 1500 Series,1998,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,17,12,1385,3676 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,19,14,1385,3427 +Chevrolet,C/K 1500 Series,1998,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,17,12,1385,3470 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,21,16,1385,2898 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,19,14,1385,2920 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,21,16,1385,2580 +Chevrolet,C/K 1500 Series,1998,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,18,13,1385,3357 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,21,16,1385,2996 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,19,14,1385,2883 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,21,16,1385,3094 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,21,16,1385,2885 +Chevrolet,C/K 1500 Series,1998,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,17,12,1385,3419 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,21,16,1385,2668 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,19,14,1385,2789 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,19,14,1385,3321 +Chevrolet,C/K 1500 Series,1998,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,18,13,1385,3342 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,19,14,1385,3025 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,21,16,1385,2653 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,21,16,1385,2740 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,21,16,1385,2639 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,19,14,1385,3067 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,21,16,1385,2817 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,19,14,1385,3350 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,19,14,1385,3282 +Chevrolet,C/K 1500 Series,1998,regular unleaded,200,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,21,16,1385,2430 +Chevrolet,C/K 1500 Series,1999,regular unleaded,230,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Extended Cab Pickup,17,13,1385,3696 +Chevrolet,C/K 1500 Series,1999,regular unleaded,230,8,AUTOMATIC,four wheel drive,3,N/A,Large,Extended Cab Pickup,17,13,1385,4098 +Chevrolet,C/K 2500 Series,1998,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,13,1385,2949 +Chevrolet,C/K 2500 Series,1998,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,17,13,1385,3345 +Chevrolet,C/K 2500 Series,1998,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,17,13,1385,3034 +Chevrolet,C/K 2500 Series,1998,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,13,1385,2697 +Chevrolet,C/K 2500 Series,1998,regular unleaded,255,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,18,12,1385,3360 +Chevrolet,C/K 2500 Series,1998,regular unleaded,255,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,18,12,1385,3068 +Chevrolet,C/K 2500 Series,1998,regular unleaded,255,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,18,12,1385,3090 +Chevrolet,C/K 2500 Series,1998,regular unleaded,255,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,18,12,1385,2847 +Mercedes-Benz,CL-Class,2012,premium unleaded (required),621,12,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Large,Coupe,18,12,617,211000 +Mercedes-Benz,CL-Class,2012,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Large,Coupe,18,12,617,158700 +Mercedes-Benz,CL-Class,2012,premium unleaded (required),429,8,AUTOMATIC,all wheel drive,2,"Luxury,High-Performance",Large,Coupe,24,15,617,114100 +Mercedes-Benz,CL-Class,2012,premium unleaded (required),536,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Large,Coupe,22,15,617,151500 +Mercedes-Benz,CL-Class,2013,premium unleaded (required),621,12,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Large,Coupe,18,12,617,213200 +Mercedes-Benz,CL-Class,2013,premium unleaded (required),536,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Large,Coupe,22,15,617,153000 +Mercedes-Benz,CL-Class,2013,premium unleaded (required),429,8,AUTOMATIC,all wheel drive,2,"Luxury,High-Performance",Large,Coupe,24,15,617,115300 +Mercedes-Benz,CL-Class,2013,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Large,Coupe,18,12,617,160300 +Mercedes-Benz,CL-Class,2014,premium unleaded (required),621,12,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Large,Coupe,18,12,617,215500 +Mercedes-Benz,CL-Class,2014,premium unleaded (required),429,8,AUTOMATIC,all wheel drive,2,"Luxury,High-Performance",Large,Coupe,24,15,617,116600 +Mercedes-Benz,CL-Class,2014,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Large,Coupe,18,12,617,162000 +Mercedes-Benz,CL-Class,2014,premium unleaded (required),536,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Large,Coupe,22,15,617,154600 +Mercedes-Benz,CLA-Class,2015,premium unleaded (required),208,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,38,26,617,31500 +Mercedes-Benz,CLA-Class,2015,premium unleaded (required),208,4,AUTOMATED_MANUAL,all wheel drive,4,Luxury,Midsize,Sedan,32,24,617,33500 +Mercedes-Benz,CLA-Class,2015,premium unleaded (required),355,4,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,31,23,617,48500 +Mercedes-Benz,CLA-Class,2016,premium unleaded (required),208,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,38,26,617,32050 +Mercedes-Benz,CLA-Class,2016,premium unleaded (required),375,4,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,31,23,617,49500 +Mercedes-Benz,CLA-Class,2016,premium unleaded (required),208,4,AUTOMATED_MANUAL,all wheel drive,4,Luxury,Midsize,Sedan,33,24,617,34050 +Mercedes-Benz,CLA-Class,2017,premium unleaded (required),208,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,38,26,617,32400 +Mercedes-Benz,CLA-Class,2017,premium unleaded (required),208,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,32,23,617,34400 +Mercedes-Benz,CLA-Class,2017,premium unleaded (required),375,4,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,30,23,617,49950 +Acura,CL,2001,premium unleaded (required),225,6,AUTOMATIC,front wheel drive,2,Luxury,Midsize,Coupe,27,17,204,29980 +Acura,CL,2001,premium unleaded (required),225,6,AUTOMATIC,front wheel drive,2,Luxury,Midsize,Coupe,27,17,204,27980 +Acura,CL,2002,premium unleaded (required),225,6,AUTOMATIC,front wheel drive,2,Luxury,Midsize,Coupe,27,17,204,28030 +Acura,CL,2002,premium unleaded (required),225,6,AUTOMATIC,front wheel drive,2,Luxury,Midsize,Coupe,27,17,204,30030 +Acura,CL,2003,premium unleaded (required),260,6,MANUAL,front wheel drive,2,"Factory Tuner,Luxury,Performance",Midsize,Coupe,26,17,204,32700 +Acura,CL,2003,premium unleaded (required),260,6,AUTOMATIC,front wheel drive,2,"Factory Tuner,Luxury,Performance",Midsize,Coupe,27,17,204,30550 +Acura,CL,2003,premium unleaded (required),225,6,AUTOMATIC,front wheel drive,2,Luxury,Midsize,Coupe,27,17,204,30350 +Acura,CL,2003,premium unleaded (required),225,6,AUTOMATIC,front wheel drive,2,Luxury,Midsize,Coupe,27,17,204,28200 +Acura,CL,2003,premium unleaded (required),260,6,MANUAL,front wheel drive,2,"Factory Tuner,Luxury,Performance",Midsize,Coupe,26,17,204,30550 +Chevrolet,Classic,2004,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,22,1385,19505 +Chevrolet,Classic,2005,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,22,1385,19690 +Mercedes-Benz,CLK-Class,2007,premium unleaded (required),268,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,25,17,617,54200 +Mercedes-Benz,CLK-Class,2007,premium unleaded (required),475,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,18,12,617,89200 +Mercedes-Benz,CLK-Class,2007,premium unleaded (required),268,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,25,17,617,46200 +Mercedes-Benz,CLK-Class,2007,premium unleaded (required),382,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,22,15,617,62900 +Mercedes-Benz,CLK-Class,2007,premium unleaded (required),382,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,22,15,617,54900 +Mercedes-Benz,CLK-Class,2008,premium unleaded (required),268,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Coupe,25,17,617,46450 +Mercedes-Benz,CLK-Class,2008,premium unleaded (required),382,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Coupe,22,15,617,55150 +Mercedes-Benz,CLK-Class,2008,premium unleaded (required),500,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,19,12,617,135000 +Mercedes-Benz,CLK-Class,2008,premium unleaded (required),382,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,21,15,617,63200 +Mercedes-Benz,CLK-Class,2008,premium unleaded (required),475,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,18,12,617,89500 +Mercedes-Benz,CLK-Class,2008,premium unleaded (required),268,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,25,17,617,54500 +Mercedes-Benz,CLK-Class,2009,premium unleaded (required),268,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,25,17,617,56100 +Mercedes-Benz,CLK-Class,2009,premium unleaded (required),382,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Convertible,21,15,617,64800 +Mercedes-Benz,CLK-Class,2009,premium unleaded (required),382,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,22,15,617,56800 +Mercedes-Benz,CLK-Class,2009,premium unleaded (required),268,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,25,17,617,48100 +Mercedes-Benz,CLS-Class,2015,premium unleaded (required),402,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,26,17,617,73200 +Mercedes-Benz,CLS-Class,2015,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,22,16,617,106550 +Mercedes-Benz,CLS-Class,2015,premium unleaded (required),329,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,30,20,617,65990 +Mercedes-Benz,CLS-Class,2015,premium unleaded (required),329,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,20,617,68490 +Mercedes-Benz,CLS-Class,2015,premium unleaded (required),402,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,24,17,617,75700 +Mercedes-Benz,CLS-Class,2016,premium unleaded (required),329,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,30,20,617,66900 +Mercedes-Benz,CLS-Class,2016,premium unleaded (required),329,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,19,617,69400 +Mercedes-Benz,CLS-Class,2016,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,22,16,617,107800 +Mercedes-Benz,CLS-Class,2016,premium unleaded (required),402,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,25,17,617,76600 +Mercedes-Benz,CLS-Class,2016,premium unleaded (required),402,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,26,17,617,74100 +Mercedes-Benz,CLS-Class,2017,premium unleaded (required),402,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,26,18,617,74850 +Mercedes-Benz,CLS-Class,2017,premium unleaded (required),402,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,25,17,617,77350 +Mercedes-Benz,CLS-Class,2017,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,22,16,617,108900 +Chevrolet,Cobalt,2008,regular unleaded,148,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,24,1385,14410 +Chevrolet,Cobalt,2008,regular unleaded,148,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,24,1385,15120 +Chevrolet,Cobalt,2008,premium unleaded (recommended),260,4,MANUAL,front wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,30,22,1385,22335 +Chevrolet,Cobalt,2008,regular unleaded,148,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,24,1385,14410 +Chevrolet,Cobalt,2008,regular unleaded,173,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,22,1385,19695 +Chevrolet,Cobalt,2008,regular unleaded,148,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,24,1385,15120 +Chevrolet,Cobalt,2008,regular unleaded,173,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,32,22,1385,19695 +Chevrolet,Cobalt,2009,regular unleaded,155,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,25,1385,16460 +Chevrolet,Cobalt,2009,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,25,1385,15660 +Chevrolet,Cobalt,2009,premium unleaded (recommended),260,4,MANUAL,front wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,30,22,1385,23425 +Chevrolet,Cobalt,2009,regular unleaded,155,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,25,1385,15660 +Chevrolet,Cobalt,2009,premium unleaded (recommended),260,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Compact,Sedan,30,22,1385,23425 +Chevrolet,Cobalt,2009,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,25,1385,14990 +Chevrolet,Cobalt,2009,regular unleaded,155,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,37,25,1385,14990 +Chevrolet,Cobalt,2009,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,25,1385,16460 +Chevrolet,Cobalt,2010,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,25,1385,15670 +Chevrolet,Cobalt,2010,premium unleaded (recommended),260,4,MANUAL,front wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,30,22,1385,24535 +Chevrolet,Cobalt,2010,regular unleaded,155,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,37,25,1385,14990 +Chevrolet,Cobalt,2010,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,25,1385,16470 +Chevrolet,Cobalt,2010,regular unleaded,155,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,25,1385,14990 +Chevrolet,Cobalt,2010,regular unleaded,155,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,37,25,1385,16470 +Chevrolet,Cobalt,2010,regular unleaded,155,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,37,25,1385,15670 +Chevrolet,Colorado,2012,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,Performance,Compact,Crew Cab Pickup,20,14,1385,28340 +Chevrolet,Colorado,2012,regular unleaded,242,5,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,23,17,1385,29480 +Chevrolet,Colorado,2012,regular unleaded,185,4,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,24,18,1385,23030 +Chevrolet,Colorado,2012,regular unleaded,185,4,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,24,18,1385,20980 +Chevrolet,Colorado,2012,regular unleaded,242,5,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,1385,30320 +Chevrolet,Colorado,2012,regular unleaded,242,5,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,17,1385,26160 +Chevrolet,Colorado,2012,regular unleaded,242,5,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,23,17,1385,27490 +Chevrolet,Colorado,2012,regular unleaded,185,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,25,18,1385,22955 +Chevrolet,Colorado,2012,regular unleaded,185,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,25,18,1385,19730 +Chevrolet,Colorado,2012,regular unleaded,185,4,AUTOMATIC,four wheel drive,2,N/A,Compact,Regular Cab Pickup,23,17,1385,24440 +Chevrolet,Colorado,2012,regular unleaded,185,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,18,1385,17475 +Chevrolet,Colorado,2012,regular unleaded,185,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,25,18,1385,24285 +Chevrolet,Colorado,2012,regular unleaded,185,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,23,17,1385,26620 +Chevrolet,Colorado,2012,regular unleaded,185,4,AUTOMATIC,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,18,1385,20370 +Chevrolet,Colorado,2012,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,Performance,Compact,Extended Cab Pickup,20,14,1385,27010 +Chevrolet,Colorado,2012,regular unleaded,242,5,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,1385,28460 +Chevrolet,Colorado,2015,regular unleaded,200,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,25,19,1385,29220 +Chevrolet,Colorado,2015,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,27,20,1385,29550 +Chevrolet,Colorado,2015,regular unleaded,305,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,26,18,1385,25850 +Chevrolet,Colorado,2015,regular unleaded,305,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,26,18,1385,28630 +Chevrolet,Colorado,2015,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,27,20,1385,27110 +Chevrolet,Colorado,2015,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,27,20,1385,24330 +Chevrolet,Colorado,2015,regular unleaded,200,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,25,19,1385,26885 +Chevrolet,Colorado,2015,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,24,17,1385,30005 +Chevrolet,Colorado,2015,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,24,17,1385,34415 +Chevrolet,Colorado,2015,regular unleaded,200,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,26,19,1385,21775 +Chevrolet,Colorado,2015,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,24,17,1385,32085 +Chevrolet,Colorado,2015,regular unleaded,305,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,26,18,1385,30785 +Chevrolet,Colorado,2015,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,24,17,1385,32385 +Chevrolet,Colorado,2015,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,24,17,1385,34115 +Chevrolet,Colorado,2015,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,27,20,1385,25170 +Chevrolet,Colorado,2015,regular unleaded,200,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,26,19,1385,20120 +Chevrolet,Colorado,2015,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,27,20,1385,27630 +Chevrolet,Colorado,2015,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,24,17,1385,29705 +Chevrolet,Colorado,2015,regular unleaded,200,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,25,19,1385,31555 +Chevrolet,Colorado,2016,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,Diesel,Compact,Crew Cab Pickup,24,17,1385,30665 +Chevrolet,Colorado,2016,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,Diesel,Compact,Crew Cab Pickup,24,17,1385,32895 +Chevrolet,Colorado,2016,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,Diesel,Compact,Crew Cab Pickup,24,17,1385,35000 +Chevrolet,Colorado,2016,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,Diesel,Compact,Crew Cab Pickup,24,17,1385,30365 +Chevrolet,Colorado,2016,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,27,20,1385,28515 +Chevrolet,Colorado,2016,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,Diesel,Compact,Crew Cab Pickup,24,17,1385,33195 +Chevrolet,Colorado,2016,regular unleaded,200,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,25,19,1385,30030 +Chevrolet,Colorado,2016,regular unleaded,200,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,26,19,1385,20100 +Chevrolet,Colorado,2016,regular unleaded,200,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,25,19,1385,32440 +Chevrolet,Colorado,2016,regular unleaded,305,6,AUTOMATIC,rear wheel drive,4,Diesel,Compact,Crew Cab Pickup,26,18,1385,31670 +Chevrolet,Colorado,2016,regular unleaded,305,6,AUTOMATIC,rear wheel drive,4,Diesel,Compact,Crew Cab Pickup,26,18,1385,26510 +Chevrolet,Colorado,2016,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,Diesel,Compact,Crew Cab Pickup,27,20,1385,30435 +Chevrolet,Colorado,2016,regular unleaded,200,4,AUTOMATIC,four wheel drive,4,Diesel,Compact,Extended Cab Pickup,25,19,1385,27545 +Chevrolet,Colorado,2016,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,Diesel,Compact,Crew Cab Pickup,27,20,1385,24990 +Chevrolet,Colorado,2016,regular unleaded,305,6,AUTOMATIC,four wheel drive,4,Diesel,Compact,Crew Cab Pickup,24,17,1385,35300 +Chevrolet,Colorado,2016,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,Diesel,Compact,Crew Cab Pickup,27,20,1385,27920 +Chevrolet,Colorado,2016,regular unleaded,200,4,MANUAL,rear wheel drive,4,Diesel,Compact,Extended Cab Pickup,26,19,1385,22435 +Chevrolet,Colorado,2016,regular unleaded,200,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,27,20,1385,25980 +Chevrolet,Colorado,2016,regular unleaded,305,6,AUTOMATIC,rear wheel drive,4,Diesel,Compact,Crew Cab Pickup,26,18,1385,29440 +Dodge,Colt,1992,regular unleaded,92,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,27,1851,2000 +Dodge,Colt,1992,regular unleaded,92,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,32,25,1851,2000 +Dodge,Colt,1993,regular unleaded,92,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,36,28,1851,2000 +Dodge,Colt,1993,regular unleaded,113,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,31,23,1851,2000 +Dodge,Colt,1993,regular unleaded,92,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,36,28,1851,2000 +Dodge,Colt,1993,regular unleaded,92,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,28,1851,2000 +Dodge,Colt,1994,regular unleaded,113,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,23,1851,2000 +Dodge,Colt,1994,regular unleaded,92,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,28,1851,2000 +Dodge,Colt,1994,regular unleaded,113,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,23,1851,2000 +Dodge,Colt,1994,regular unleaded,92,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,28,1851,2000 +Plymouth,Colt,1992,regular unleaded,113,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,26,21,535,2000 +Plymouth,Colt,1992,regular unleaded,92,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,32,25,535,2000 +Plymouth,Colt,1992,regular unleaded,92,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,27,535,2000 +Plymouth,Colt,1992,regular unleaded,113,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,26,21,535,2000 +Plymouth,Colt,1992,regular unleaded,113,4,MANUAL,all wheel drive,4,N/A,Compact,Wagon,24,19,535,2000 +Plymouth,Colt,1993,regular unleaded,92,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,36,28,535,2000 +Plymouth,Colt,1993,regular unleaded,92,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,36,28,535,2000 +Plymouth,Colt,1993,regular unleaded,113,4,MANUAL,all wheel drive,4,N/A,Compact,Wagon,24,19,535,2000 +Plymouth,Colt,1993,regular unleaded,113,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,31,23,535,2000 +Plymouth,Colt,1993,regular unleaded,92,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,28,535,2000 +Plymouth,Colt,1993,regular unleaded,136,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,26,19,535,2000 +Plymouth,Colt,1993,regular unleaded,113,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,26,21,535,2000 +Plymouth,Colt,1994,regular unleaded,113,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,27,21,535,2000 +Plymouth,Colt,1994,regular unleaded,136,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,25,19,535,2000 +Plymouth,Colt,1994,regular unleaded,136,4,MANUAL,all wheel drive,4,N/A,Compact,Wagon,22,18,535,2000 +Plymouth,Colt,1994,regular unleaded,92,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,28,535,2000 +Plymouth,Colt,1994,regular unleaded,92,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,28,535,2000 +Plymouth,Colt,1994,regular unleaded,113,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,23,535,2000 +Plymouth,Colt,1994,regular unleaded,113,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,23,535,2000 +Chrysler,Concorde,2002,regular unleaded,234,6,AUTOMATIC,four wheel drive,4,N/A,Large,Sedan,24,16,1013,25520 +Chrysler,Concorde,2002,regular unleaded,200,6,AUTOMATIC,four wheel drive,4,N/A,Large,Sedan,26,18,1013,22790 +Chrysler,Concorde,2002,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,Performance,Large,Sedan,24,16,1013,28415 +Chrysler,Concorde,2003,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,19,1013,23180 +Chrysler,Concorde,2003,regular unleaded,234,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,25,17,1013,25910 +Chrysler,Concorde,2003,regular unleaded,250,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,25,17,1013,28805 +Chrysler,Concorde,2004,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,19,1013,23480 +Chrysler,Concorde,2004,regular unleaded,234,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,25,17,1013,26210 +Chrysler,Concorde,2004,regular unleaded,250,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,25,17,1013,29105 +Bentley,Continental Flying Spur Speed,2011,premium unleaded (required),600,12,AUTOMATIC,all wheel drive,4,"Exotic,Factory Tuner,Luxury,High-Performance",Large,Sedan,17,10,520,206600 +Bentley,Continental Flying Spur Speed,2012,flex-fuel (premium unleaded required/E85),600,12,AUTOMATIC,all wheel drive,4,"Exotic,Flex Fuel,Factory Tuner,Luxury,High-Performance",Large,Sedan,17,10,520,209600 +Bentley,Continental Flying Spur Speed,2013,flex-fuel (premium unleaded required/E85),600,12,AUTOMATIC,all wheel drive,4,"Exotic,Flex Fuel,Factory Tuner,Luxury,High-Performance",Large,Sedan,17,10,520,209600 +Bentley,Continental Flying Spur,2011,flex-fuel (premium unleaded required/E85),552,12,AUTOMATIC,all wheel drive,4,"Exotic,Flex Fuel,Luxury,High-Performance",Large,Sedan,18,11,520,181200 +Bentley,Continental Flying Spur,2012,flex-fuel (premium unleaded required/E85),552,12,AUTOMATIC,all wheel drive,4,"Exotic,Flex Fuel,Luxury,High-Performance",Large,Sedan,19,11,520,184200 +Bentley,Continental Flying Spur,2013,flex-fuel (premium unleaded required/E85),552,12,AUTOMATIC,all wheel drive,4,"Exotic,Flex Fuel,Luxury,High-Performance",Large,Sedan,19,11,520,184200 +Bentley,Continental GT Speed Convertible,2014,flex-fuel (premium unleaded required/E85),626,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,20,12,520,238700 +Bentley,Continental GT Speed,2010,premium unleaded (required),600,12,AUTOMATIC,all wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Coupe,17,10,520,207700 +Bentley,Continental GT Speed,2014,flex-fuel (premium unleaded required/E85),616,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Factory Tuner,Luxury,High-Performance",Midsize,Coupe,20,13,520,217000 +Bentley,Continental GT3-R,2015,premium unleaded (required),572,8,AUTOMATIC,all wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Coupe,23,13,520,337000 +Bentley,Continental GT,2014,premium unleaded (required),500,8,AUTOMATIC,all wheel drive,2,"Exotic,Luxury,High-Performance",Midsize,Coupe,24,15,520,177500 +Bentley,Continental GT,2014,premium unleaded (required),521,8,AUTOMATIC,all wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Coupe,24,15,520,196500 +Bentley,Continental GT,2014,flex-fuel (premium unleaded required/E85),567,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Luxury,High-Performance",Midsize,Coupe,21,12,520,198600 +Bentley,Continental GT,2015,flex-fuel (premium unleaded required/E85),626,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,20,12,520,250100 +Bentley,Continental GT,2015,flex-fuel (premium unleaded required/E85),626,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Factory Tuner,Luxury,High-Performance",Midsize,Coupe,21,12,520,227600 +Bentley,Continental GT,2015,flex-fuel (premium unleaded required/E85),567,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Luxury,High-Performance",Midsize,Coupe,21,12,520,203500 +Bentley,Continental GT,2015,premium unleaded (required),521,8,AUTOMATIC,all wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,24,14,520,219400 +Bentley,Continental GT,2015,premium unleaded (required),500,8,AUTOMATIC,all wheel drive,2,"Exotic,Luxury,High-Performance",Midsize,Convertible,24,14,520,206300 +Bentley,Continental GT,2015,premium unleaded (required),500,8,AUTOMATIC,all wheel drive,2,"Exotic,Luxury,High-Performance",Midsize,Coupe,25,15,520,187900 +Bentley,Continental GT,2015,flex-fuel (premium unleaded required/E85),567,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Luxury,High-Performance",Midsize,Convertible,20,12,520,223600 +Bentley,Continental GT,2015,premium unleaded (required),521,8,AUTOMATIC,all wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Coupe,25,15,520,199700 +Bentley,Continental GT,2016,premium unleaded (required),521,8,AUTOMATIC,all wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,24,14,520,231800 +Bentley,Continental GT,2016,premium unleaded (required),500,8,AUTOMATIC,all wheel drive,2,"Exotic,Luxury,High-Performance",Midsize,Coupe,25,15,520,198500 +Bentley,Continental GT,2016,premium unleaded (required),500,8,AUTOMATIC,all wheel drive,2,"Exotic,Luxury,High-Performance",Midsize,Convertible,24,14,520,218400 +Bentley,Continental GT,2016,premium unleaded (required),626,12,AUTOMATIC,all wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Coupe,21,12,520,239400 +Bentley,Continental GT,2016,premium unleaded (required),582,12,AUTOMATIC,all wheel drive,2,"Exotic,Luxury,High-Performance",Midsize,Convertible,20,12,520,236100 +Bentley,Continental GT,2016,premium unleaded (required),582,12,AUTOMATIC,all wheel drive,2,"Exotic,Luxury,High-Performance",Midsize,Coupe,21,12,520,214600 +Bentley,Continental GT,2016,premium unleaded (required),521,8,AUTOMATIC,all wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Coupe,25,15,520,210700 +Bentley,Continental GT,2016,premium unleaded (required),626,12,AUTOMATIC,all wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,20,12,520,263400 +Bentley,Continental GTC Speed,2010,premium unleaded (required),600,12,AUTOMATIC,all wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,17,10,520,231400 +Bentley,Continental GTC Speed,2011,flex-fuel (premium unleaded required/E85),600,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,17,10,520,236100 +Bentley,Continental GTC,2012,flex-fuel (premium unleaded required/E85),567,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Luxury,High-Performance",Midsize,Convertible,19,11,520,212800 +Bentley,Continental GTC,2013,flex-fuel (premium unleaded required/E85),567,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Luxury,High-Performance",Midsize,Convertible,19,11,520,212800 +Bentley,Continental GTC,2013,premium unleaded (required),500,8,AUTOMATIC,all wheel drive,2,"Exotic,Luxury,High-Performance",Midsize,Convertible,24,14,520,191400 +Bentley,Continental GTC,2014,premium unleaded (required),500,8,AUTOMATIC,all wheel drive,2,"Exotic,Luxury,High-Performance",Midsize,Convertible,24,14,520,195200 +Bentley,Continental GTC,2014,flex-fuel (premium unleaded required/E85),567,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Luxury,High-Performance",Midsize,Convertible,20,12,520,218500 +Bentley,Continental GTC,2014,premium unleaded (required),521,8,AUTOMATIC,all wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,24,14,520,216200 +Bentley,Continental Supersports Convertible,2011,flex-fuel (premium unleaded required/E85),621,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,19,12,520,280400 +Bentley,Continental Supersports Convertible,2012,flex-fuel (premium unleaded required/E85),621,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,19,12,520,280400 +Bentley,Continental Supersports,2010,flex-fuel (premium unleaded required/E85),621,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Factory Tuner,Luxury,High-Performance",Midsize,Coupe,19,12,520,267000 +Bentley,Continental Supersports,2011,flex-fuel (premium unleaded required/E85),621,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Factory Tuner,Luxury,High-Performance",Midsize,Coupe,19,12,520,267000 +Bentley,Continental Supersports,2012,flex-fuel (premium unleaded required/E85),621,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Factory Tuner,Luxury,High-Performance",Midsize,Coupe,19,12,520,267000 +Bentley,Continental,2001,premium unleaded (required),420,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,Performance",Large,Coupe,15,10,520,299900 +Bentley,Continental,2001,premium unleaded (required),400,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,Performance",Large,Coupe,15,10,520,279900 +Bentley,Continental,2001,premium unleaded (required),420,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,Performance",Large,Coupe,15,10,520,309900 +Bentley,Continental,2001,premium unleaded (required),420,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,Performance",Large,Coupe,15,10,520,319900 +Bentley,Continental,2003,premium unleaded (required),420,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,Performance",Large,Coupe,15,10,520,328990 +Bentley,Continental,2003,premium unleaded (required),420,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,Performance",Large,Coupe,15,10,520,318990 +Lincoln,Continental,2001,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,61,39660 +Lincoln,Continental,2002,premium unleaded (required),275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,61,39895 +Lincoln,Continental,2002,premium unleaded (required),275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,61,38185 +Lincoln,Continental,2002,premium unleaded (required),275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,61,38790 +Lincoln,Continental,2002,premium unleaded (required),275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,61,39775 +Lincoln,Continental,2017,regular unleaded,305,6,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,26,17,61,44560 +Lincoln,Continental,2017,regular unleaded,305,6,AUTOMATIC,all wheel drive,4,Luxury,Large,Sedan,24,16,61,46560 +Lincoln,Continental,2017,regular unleaded,305,6,AUTOMATIC,all wheel drive,4,Luxury,Large,Sedan,24,16,61,49515 +Lincoln,Continental,2017,premium unleaded (recommended),,6,AUTOMATIC,all wheel drive,4,Luxury,Large,Sedan,25,17,61,55915 +Lincoln,Continental,2017,premium unleaded (recommended),,6,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,27,18,61,62915 +Lincoln,Continental,2017,premium unleaded (recommended),,6,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,27,18,61,53915 +Lincoln,Continental,2017,premium unleaded (recommended),,6,AUTOMATIC,all wheel drive,4,Luxury,Large,Sedan,25,17,61,64915 +Lincoln,Continental,2017,regular unleaded,305,6,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,26,17,61,47515 +Ford,Contour SVT,1998,regular unleaded,195,6,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,26,17,5657,2655 +Ford,Contour SVT,1999,regular unleaded,200,6,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,26,17,5657,2702 +Ford,Contour SVT,2000,regular unleaded,200,6,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,27,18,5657,2937 +Ford,Contour,1998,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,32,21,5657,2000 +Ford,Contour,1998,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,32,21,5657,2000 +Ford,Contour,1998,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,32,21,5657,2000 +Ford,Contour,1998,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,32,21,5657,2000 +Ford,Contour,1999,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,31,21,5657,2000 +Ford,Contour,1999,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,31,21,5657,2000 +Ford,Contour,2000,regular unleaded,170,6,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,27,18,5657,2000 +Ford,Contour,2000,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,31,21,5657,2079 +Rolls-Royce,Corniche,2001,premium unleaded (required),325,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury",Large,Convertible,15,10,86,359990 +Toyota,Corolla iM,2017,regular unleaded,137,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,2031,18750 +Toyota,Corolla iM,2017,regular unleaded,137,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,28,2031,19490 +Toyota,Corolla,2015,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,42,30,2031,18965 +Toyota,Corolla,2015,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,29,2031,18965 +Toyota,Corolla,2015,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,40,30,2031,19665 +Toyota,Corolla,2015,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,29,2031,19895 +Toyota,Corolla,2015,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,36,27,2031,17550 +Toyota,Corolla,2015,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,28,2031,16950 +Toyota,Corolla,2015,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,28,2031,21495 +Toyota,Corolla,2015,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,29,2031,22025 +Toyota,Corolla,2015,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,29,2031,22955 +Toyota,Corolla,2015,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,29,2031,19195 +Toyota,Corolla,2015,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,40,30,2031,22725 +Toyota,Corolla,2015,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,29,2031,18565 +Toyota,Corolla,2016,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,42,30,2031,19135 +Toyota,Corolla,2016,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,29,2031,19135 +Toyota,Corolla,2016,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,29,2031,20065 +Toyota,Corolla,2016,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,28,2031,17300 +Toyota,Corolla,2016,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,29,2031,23125 +Toyota,Corolla,2016,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,28,2031,21665 +Toyota,Corolla,2016,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,29,2031,22195 +Toyota,Corolla,2016,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,40,30,2031,19835 +Toyota,Corolla,2016,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,29,2031,20635 +Toyota,Corolla,2016,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,40,30,2031,22895 +Toyota,Corolla,2016,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,36,27,2031,17900 +Toyota,Corolla,2016,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,29,2031,18735 +Toyota,Corolla,2016,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,29,2031,19365 +Toyota,Corolla,2017,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,35,28,2031,22680 +Toyota,Corolla,2017,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,40,30,2031,21300 +Toyota,Corolla,2017,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,36,28,2031,18500 +Toyota,Corolla,2017,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,27,2031,21665 +Toyota,Corolla,2017,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,40,30,2031,19335 +Toyota,Corolla,2017,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,35,28,2031,21900 +Toyota,Corolla,2017,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,36,28,2031,21825 +Toyota,Corolla,2017,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,36,28,2031,18935 +Toyota,Corolla,2017,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,35,28,2031,20445 +Volkswagen,Corrado,1992,regular unleaded,158,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,26,18,873,2000 +Volkswagen,Corrado,1992,regular unleaded,178,6,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,23,16,873,2000 +Volkswagen,Corrado,1993,regular unleaded,178,6,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,23,16,873,2000 +Volkswagen,Corrado,1994,regular unleaded,178,6,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,22,16,873,2000 +Chevrolet,Corsica,1994,regular unleaded,120,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,22,1385,2000 +Chevrolet,Corsica,1996,regular unleaded,120,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,29,21,1385,2000 +Chevrolet,Corvette Stingray,2014,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,29,17,1385,53000 +Chevrolet,Corvette Stingray,2014,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,29,17,1385,57000 +Chevrolet,Corvette Stingray,2014,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,29,17,1385,62000 +Chevrolet,Corvette Stingray,2014,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,29,17,1385,58000 +Chevrolet,Corvette,2015,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,29,17,1385,68160 +Chevrolet,Corvette,2015,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,29,17,1385,64160 +Chevrolet,Corvette,2015,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,22,15,1385,83000 +Chevrolet,Corvette,2015,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,29,17,1385,63160 +Chevrolet,Corvette,2015,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,29,17,1385,64000 +Chevrolet,Corvette,2015,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,29,17,1385,55000 +Chevrolet,Corvette,2015,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,22,15,1385,87650 +Chevrolet,Corvette,2015,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,29,17,1385,73450 +Chevrolet,Corvette,2015,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,29,17,1385,64450 +Chevrolet,Corvette,2015,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,29,17,1385,69450 +Chevrolet,Corvette,2015,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,29,17,1385,60000 +Chevrolet,Corvette,2015,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,29,17,1385,59000 +Chevrolet,Corvette,2015,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,22,15,1385,82270 +Chevrolet,Corvette,2015,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,22,15,1385,86270 +Chevrolet,Corvette,2015,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,22,15,1385,91650 +Chevrolet,Corvette,2015,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,22,15,1385,79000 +Chevrolet,Corvette,2015,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,29,17,1385,68450 +Chevrolet,Corvette,2015,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,29,17,1385,59160 +Chevrolet,Corvette,2016,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,22,15,1385,88345 +Chevrolet,Corvette,2016,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,22,15,1385,79400 +Chevrolet,Corvette,2016,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,29,17,1385,70145 +Chevrolet,Corvette,2016,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,29,17,1385,65145 +Chevrolet,Corvette,2016,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,22,15,1385,83400 +Chevrolet,Corvette,2016,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,22,15,1385,82965 +Chevrolet,Corvette,2016,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,29,17,1385,68855 +Chevrolet,Corvette,2016,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,29,17,1385,59855 +Chevrolet,Corvette,2016,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,29,17,1385,64400 +Chevrolet,Corvette,2016,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,29,17,1385,74145 +Chevrolet,Corvette,2016,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,29,17,1385,63855 +Chevrolet,Corvette,2016,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,22,15,1385,86965 +Chevrolet,Corvette,2016,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,29,17,1385,59400 +Chevrolet,Corvette,2016,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,22,15,1385,92345 +Chevrolet,Corvette,2016,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,29,17,1385,60400 +Chevrolet,Corvette,2016,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,29,17,1385,64855 +Chevrolet,Corvette,2016,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,29,17,1385,69145 +Chevrolet,Corvette,2016,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,29,17,1385,55400 +Chevrolet,Corvette,2017,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,22,15,1385,87015 +Chevrolet,Corvette,2017,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,16,1385,59905 +Chevrolet,Corvette,2017,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,25,16,1385,74195 +Chevrolet,Corvette,2017,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,16,1385,65195 +Chevrolet,Corvette,2017,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,22,15,1385,88395 +Chevrolet,Corvette,2017,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,25,16,1385,59450 +Chevrolet,Corvette,2017,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,16,1385,55450 +Chevrolet,Corvette,2017,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,16,1385,70195 +Chevrolet,Corvette,2017,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,25,16,1385,68905 +Chevrolet,Corvette,2017,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,16,1385,65450 +Chevrolet,Corvette,2017,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,22,15,1385,79450 +Chevrolet,Corvette,2017,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,16,1385,69905 +Chevrolet,Corvette,2017,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,25,16,1385,69195 +Chevrolet,Corvette,2017,premium unleaded (recommended),455,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,25,16,1385,63905 +Chevrolet,Corvette,2017,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,25,16,1385,69450 +Chevrolet,Corvette,2017,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,16,1385,60450 +Chevrolet,Corvette,2017,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,25,16,1385,79195 +Chevrolet,Corvette,2017,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,22,15,1385,92395 +Chevrolet,Corvette,2017,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,22,15,1385,83450 +Chevrolet,Corvette,2017,premium unleaded (required),650,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,22,15,1385,83015 +Chevrolet,Corvette,2017,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,25,16,1385,73905 +Chevrolet,Corvette,2017,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Convertible,25,16,1385,64450 +Chevrolet,Corvette,2017,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,16,1385,64905 +Chevrolet,Corvette,2017,premium unleaded (recommended),460,8,MANUAL,rear wheel drive,2,High-Performance,Compact,Coupe,25,16,1385,75195 +Audi,Coupe,1990,regular unleaded,164,5,MANUAL,all wheel drive,2,"Hatchback,Factory Tuner,Luxury,Performance",Compact,2dr Hatchback,22,16,3105,2000 +Audi,Coupe,1991,regular unleaded,164,5,MANUAL,all wheel drive,2,"Hatchback,Factory Tuner,Luxury,Performance",Compact,2dr Hatchback,22,15,3105,2000 +Maserati,Coupe,2004,premium unleaded (required),390,8,MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Coupe,15,10,238,81013 +Maserati,Coupe,2004,premium unleaded (required),390,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Coupe,16,10,238,85174 +Maserati,Coupe,2005,premium unleaded (required),385,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Coupe,16,11,238,86877 +Maserati,Coupe,2005,premium unleaded (required),385,8,MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Coupe,15,10,238,82633 +Maserati,Coupe,2006,premium unleaded (required),390,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Coupe,18,11,238,87577 +Maserati,Coupe,2006,premium unleaded (required),390,8,MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Coupe,17,12,238,79900 +Volvo,Coupe,1991,regular unleaded,188,4,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,20,17,870,2000 +Honda,CR-V,2014,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,22,2202,26470 +Honda,CR-V,2014,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,23,2202,23120 +Honda,CR-V,2014,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,22,2202,30620 +Honda,CR-V,2014,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,23,2202,29370 +Honda,CR-V,2014,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,22,2202,24370 +Honda,CR-V,2014,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,22,2202,29120 +Honda,CR-V,2014,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,22,2202,29820 +Honda,CR-V,2014,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,23,2202,28570 +Honda,CR-V,2014,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,23,2202,25220 +Honda,CR-V,2014,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,23,2202,27870 +Honda,CR-V,2015,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,33,26,2202,32895 +Honda,CR-V,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,27,2202,23445 +Honda,CR-V,2015,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,33,26,2202,30895 +Honda,CR-V,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,27,2202,25545 +Honda,CR-V,2015,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,33,26,2202,29395 +Honda,CR-V,2015,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,33,26,2202,24695 +Honda,CR-V,2015,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,33,26,2202,26795 +Honda,CR-V,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,27,2202,28145 +Honda,CR-V,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,27,2202,31645 +Honda,CR-V,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,27,2202,29645 +Honda,CR-V,2016,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,25,2202,27295 +Honda,CR-V,2016,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,25,2202,31245 +Honda,CR-V,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,26,2202,32095 +Honda,CR-V,2016,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,25,2202,25845 +Honda,CR-V,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,26,2202,28445 +Honda,CR-V,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,26,2202,29945 +Honda,CR-V,2016,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,25,2202,25045 +Honda,CR-V,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,26,2202,24545 +Honda,CR-V,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,26,2202,25995 +Honda,CR-V,2016,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,25,2202,33395 +Honda,CR-V,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,26,2202,23745 +Honda,CR-V,2016,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,25,2202,29745 +Honda,CR-Z,2014,regular unleaded,130,4,AUTOMATIC,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,39,36,2202,20645 +Honda,CR-Z,2014,regular unleaded,130,4,MANUAL,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,38,31,2202,19995 +Honda,CR-Z,2014,regular unleaded,130,4,MANUAL,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,38,31,2202,23340 +Honda,CR-Z,2014,regular unleaded,130,4,MANUAL,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,38,31,2202,21840 +Honda,CR-Z,2014,regular unleaded,130,4,AUTOMATIC,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,39,36,2202,22490 +Honda,CR-Z,2014,regular unleaded,130,4,AUTOMATIC,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,39,36,2202,23990 +Honda,CR-Z,2015,regular unleaded,130,4,MANUAL,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,38,31,2202,21990 +Honda,CR-Z,2015,regular unleaded,130,4,AUTOMATIC,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,39,36,2202,24140 +Honda,CR-Z,2015,regular unleaded,130,4,MANUAL,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,38,31,2202,23490 +Honda,CR-Z,2015,regular unleaded,130,4,MANUAL,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,38,31,2202,20145 +Honda,CR-Z,2015,regular unleaded,130,4,AUTOMATIC,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,39,36,2202,20795 +Honda,CR-Z,2015,regular unleaded,130,4,AUTOMATIC,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,39,36,2202,22640 +Honda,CR-Z,2016,regular unleaded,130,4,MANUAL,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,38,31,2202,22140 +Honda,CR-Z,2016,regular unleaded,130,4,MANUAL,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,38,31,2202,24440 +Honda,CR-Z,2016,regular unleaded,130,4,AUTOMATIC,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,39,36,2202,22790 +Honda,CR-Z,2016,regular unleaded,130,4,MANUAL,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,38,31,2202,20295 +Honda,CR-Z,2016,regular unleaded,130,4,AUTOMATIC,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,39,36,2202,25090 +Honda,CR-Z,2016,regular unleaded,130,4,AUTOMATIC,front wheel drive,2,"Hatchback,Hybrid",Compact,2dr Hatchback,39,36,2202,20945 +Toyota,Cressida,1990,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,Sedan,22,17,2031,2000 +Toyota,Cressida,1991,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,Sedan,22,17,2031,2000 +Toyota,Cressida,1992,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,Sedan,22,17,2031,2000 +Chrysler,Crossfire,2006,premium unleaded (required),215,6,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,23,15,1013,29145 +Chrysler,Crossfire,2006,premium unleaded (required),215,6,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,23,15,1013,38545 +Chrysler,Crossfire,2006,premium unleaded (required),330,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,22,15,1013,49470 +Chrysler,Crossfire,2006,premium unleaded (required),215,6,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,23,15,1013,34195 +Chrysler,Crossfire,2006,premium unleaded (required),330,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,22,15,1013,45170 +Chrysler,Crossfire,2006,premium unleaded (required),215,6,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,23,15,1013,34185 +Chrysler,Crossfire,2007,premium unleaded (required),215,6,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,23,15,1013,38955 +Chrysler,Crossfire,2007,premium unleaded (required),215,6,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,23,15,1013,34595 +Chrysler,Crossfire,2007,premium unleaded (required),215,6,MANUAL,rear wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,23,15,1013,29510 +Chrysler,Crossfire,2007,premium unleaded (required),215,6,MANUAL,rear wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,23,15,1013,34560 +Chrysler,Crossfire,2008,premium unleaded (required),215,6,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,23,15,1013,39130 +Chrysler,Crossfire,2008,premium unleaded (required),215,6,MANUAL,rear wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,23,15,1013,34735 +Honda,Crosstour,2013,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,30,20,2202,33540 +Honda,Crosstour,2013,regular unleaded,278,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,28,19,2202,37090 +Honda,Crosstour,2013,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,30,20,2202,30890 +Honda,Crosstour,2013,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,31,22,2202,33015 +Honda,Crosstour,2013,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,30,20,2202,35640 +Honda,Crosstour,2013,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,31,22,2202,27230 +Honda,Crosstour,2013,regular unleaded,278,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,28,19,2202,34990 +Honda,Crosstour,2013,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,31,22,2202,30915 +Honda,Crosstour,2014,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,30,20,2202,33690 +Honda,Crosstour,2014,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,31,22,2202,33165 +Honda,Crosstour,2014,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,31,22,2202,31065 +Honda,Crosstour,2014,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,31,22,2202,27380 +Honda,Crosstour,2014,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,30,20,2202,35790 +Honda,Crosstour,2014,regular unleaded,278,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,28,19,2202,35140 +Honda,Crosstour,2014,regular unleaded,278,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,28,19,2202,37240 +Honda,Crosstour,2014,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,30,20,2202,31040 +Honda,Crosstour,2015,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,31,22,2202,33315 +Honda,Crosstour,2015,regular unleaded,278,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,28,19,2202,37390 +Honda,Crosstour,2015,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,30,20,2202,35940 +Honda,Crosstour,2015,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,30,20,2202,31190 +Honda,Crosstour,2015,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,31,22,2202,31215 +Honda,Crosstour,2015,regular unleaded,278,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,28,19,2202,35290 +Honda,Crosstour,2015,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,31,22,2202,27530 +Honda,Crosstour,2015,regular unleaded,278,6,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Midsize,4dr Hatchback,30,20,2202,33840 +Subaru,Crosstrek,2016,regular unleaded,160,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,34,30,640,26395 +Subaru,Crosstrek,2016,regular unleaded,148,4,MANUAL,all wheel drive,4,Crossover,Compact,4dr SUV,31,23,640,22395 +Subaru,Crosstrek,2016,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,34,26,640,25095 +Subaru,Crosstrek,2016,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,34,26,640,23395 +Subaru,Crosstrek,2016,regular unleaded,148,4,MANUAL,all wheel drive,4,Crossover,Compact,4dr SUV,31,23,640,21595 +Subaru,Crosstrek,2016,regular unleaded,160,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,34,30,640,29995 +Subaru,Crosstrek,2017,regular unleaded,148,4,MANUAL,all wheel drive,4,Crossover,Compact,4dr SUV,30,23,640,22495 +Subaru,Crosstrek,2017,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,33,26,640,23495 +Subaru,Crosstrek,2017,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,33,26,640,25195 +Subaru,Crosstrek,2017,regular unleaded,148,4,MANUAL,all wheel drive,4,Crossover,Compact,4dr SUV,30,23,640,21695 +Ford,Crown Victoria,2009,flex-fuel (unleaded/E85),224,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Sedan,24,16,5657,29205 +Ford,Crown Victoria,2010,flex-fuel (unleaded/E85),224,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Sedan,24,16,5657,29905 +Ford,Crown Victoria,2011,flex-fuel (unleaded/E85),239,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Sedan,24,16,5657,29905 +Chevrolet,Cruze Limited,2016,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,42,28,1385,20195 +Chevrolet,Cruze Limited,2016,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,36,25,1385,17845 +Chevrolet,Cruze Limited,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,26,1385,24370 +Chevrolet,Cruze Limited,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,26,1385,23370 +Chevrolet,Cruze Limited,2016,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,38,26,1385,19165 +Chevrolet,Cruze Limited,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,26,1385,21470 +Chevrolet,Cruze Limited,2016,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,36,25,1385,16120 +Chevrolet,Cruze Limited,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,26,1385,20195 +Chevrolet,Cruze Limited,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,22,1385,18970 +Chevrolet,Cruze,2015,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,36,25,1385,16170 +Chevrolet,Cruze,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,26,1385,23270 +Chevrolet,Cruze,2015,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,42,28,1385,20095 +Chevrolet,Cruze,2015,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,36,25,1385,17745 +Chevrolet,Cruze,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,26,1385,20095 +Chevrolet,Cruze,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,26,1385,24270 +Chevrolet,Cruze,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,22,1385,18870 +Chevrolet,Cruze,2015,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,38,26,1385,19065 +Chevrolet,Cruze,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,26,1385,21370 +Chevrolet,Cruze,2015,diesel,148,4,AUTOMATIC,front wheel drive,4,Diesel,Midsize,Sedan,46,27,1385,25660 +Chevrolet,Cruze,2016,regular unleaded,153,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,42,30,1385,19120 +Chevrolet,Cruze,2016,regular unleaded,153,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,41,29,1385,18120 +Chevrolet,Cruze,2016,regular unleaded,153,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,41,29,1385,16620 +Chevrolet,Cruze,2016,regular unleaded,153,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,42,30,1385,21120 +Chevrolet,Cruze,2016,regular unleaded,153,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,41,29,1385,19820 +Chevrolet,Cruze,2016,regular unleaded,153,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,42,30,1385,23120 +Chevrolet,Cruze,2017,regular unleaded,153,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,29,1385,21920 +Chevrolet,Cruze,2017,regular unleaded,153,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,1385,21240 +Chevrolet,Cruze,2017,regular unleaded,153,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,40,30,1385,21450 +Chevrolet,Cruze,2017,regular unleaded,153,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,39,28,1385,16975 +Chevrolet,Cruze,2017,regular unleaded,153,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,39,28,1385,18525 +Chevrolet,Cruze,2017,regular unleaded,153,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,29,1385,23475 +Chevrolet,Cruze,2017,regular unleaded,153,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,39,28,1385,20150 +Chevrolet,Cruze,2017,regular unleaded,153,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,40,30,1385,19525 +Chevrolet,Cruze,2017,regular unleaded,153,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,1385,23945 +Lexus,CT 200h,2015,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,"Hatchback,Luxury,Hybrid",Compact,4dr Hatchback,40,43,454,32200 +Lexus,CT 200h,2016,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,"Hatchback,Luxury,Hybrid",Compact,4dr Hatchback,40,43,454,31250 +Lexus,CT 200h,2017,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,"Hatchback,Luxury,Hybrid",Compact,4dr Hatchback,40,43,454,31250 +Cadillac,CT6,2016,premium unleaded (recommended),265,4,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,31,22,1624,58395 +Cadillac,CT6,2016,premium unleaded (required),404,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,26,18,1624,67570 +Cadillac,CT6,2016,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,27,18,1624,60395 +Cadillac,CT6,2016,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,27,18,1624,55495 +Cadillac,CT6,2016,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,27,18,1624,63570 +Cadillac,CT6,2016,premium unleaded (recommended),265,4,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,31,22,1624,53495 +Cadillac,CT6,2016,premium unleaded (required),404,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,26,18,1624,87465 +Cadillac,CT6,2016,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,27,18,1624,83465 +Cadillac,CT6,2016,premium unleaded (required),404,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,26,18,1624,64395 +Cadillac,CT6,2017,premium unleaded (required),404,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,26,18,1624,64395 +Cadillac,CT6,2017,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,27,18,1624,63595 +Cadillac,CT6,2017,premium unleaded (required),404,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,26,18,1624,87495 +Cadillac,CT6,2017,premium unleaded (recommended),265,4,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,30,22,1624,53495 +Cadillac,CT6,2017,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,27,18,1624,60395 +Cadillac,CT6,2017,premium unleaded (recommended),265,4,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,30,22,1624,58395 +Cadillac,CT6,2017,premium unleaded (required),404,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,26,18,1624,67595 +Cadillac,CT6,2017,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,27,18,1624,83495 +Cadillac,CT6,2017,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,27,18,1624,55495 +Cadillac,CTS Coupe,2012,regular unleaded,318,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,40615 +Cadillac,CTS Coupe,2012,regular unleaded,318,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,48150 +Cadillac,CTS Coupe,2012,regular unleaded,318,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,38715 +Cadillac,CTS Coupe,2012,regular unleaded,318,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,43950 +Cadillac,CTS Coupe,2012,regular unleaded,318,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,45850 +Cadillac,CTS Coupe,2012,regular unleaded,318,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,50050 +Cadillac,CTS Coupe,2013,regular unleaded,318,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,40805 +Cadillac,CTS Coupe,2013,regular unleaded,318,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,43950 +Cadillac,CTS Coupe,2013,regular unleaded,318,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,50050 +Cadillac,CTS Coupe,2013,regular unleaded,318,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,45850 +Cadillac,CTS Coupe,2013,regular unleaded,318,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,38905 +Cadillac,CTS Coupe,2013,regular unleaded,318,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,48150 +Cadillac,CTS Coupe,2014,regular unleaded,318,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,39495 +Cadillac,CTS Coupe,2014,regular unleaded,318,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,49995 +Cadillac,CTS Coupe,2014,regular unleaded,318,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,47995 +Cadillac,CTS Coupe,2014,regular unleaded,318,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,45795 +Cadillac,CTS Coupe,2014,regular unleaded,318,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,41495 +Cadillac,CTS Coupe,2014,regular unleaded,318,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,18,1624,43795 +Cadillac,CTS-V Coupe,2013,premium unleaded (required),556,8,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,19,14,1624,63215 +Cadillac,CTS-V Coupe,2014,premium unleaded (required),556,8,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,19,14,1624,63600 +Cadillac,CTS-V Coupe,2015,premium unleaded (required),556,8,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,19,14,1624,69900 +Cadillac,CTS-V Wagon,2012,premium unleaded (required),556,8,MANUAL,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Wagon,19,14,1624,63215 +Cadillac,CTS-V Wagon,2013,premium unleaded (required),556,8,MANUAL,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Wagon,19,14,1624,63215 +Cadillac,CTS-V Wagon,2014,premium unleaded (required),556,8,MANUAL,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Wagon,19,14,1624,63600 +Cadillac,CTS-V,2014,premium unleaded (required),556,8,MANUAL,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,19,14,1624,63600 +Cadillac,CTS-V,2016,premium unleaded (required),640,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,21,14,1624,83995 +Cadillac,CTS-V,2017,premium unleaded (required),640,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,21,14,1624,85995 +Cadillac,CTS Wagon,2012,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,27,18,1624,39015 +Cadillac,CTS Wagon,2012,regular unleaded,318,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Wagon,26,18,1624,44190 +Cadillac,CTS Wagon,2012,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,26,18,1624,40915 +Cadillac,CTS Wagon,2012,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,26,18,1624,44050 +Cadillac,CTS Wagon,2012,regular unleaded,318,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Wagon,26,18,1624,51650 +Cadillac,CTS Wagon,2012,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,27,18,1624,42150 +Cadillac,CTS Wagon,2012,regular unleaded,318,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Wagon,26,18,1624,49750 +Cadillac,CTS Wagon,2012,regular unleaded,318,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Wagon,26,18,1624,46090 +Cadillac,CTS Wagon,2013,regular unleaded,318,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Wagon,26,18,1624,44190 +Cadillac,CTS Wagon,2013,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,26,18,1624,42150 +Cadillac,CTS Wagon,2013,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,26,18,1624,41105 +Cadillac,CTS Wagon,2013,regular unleaded,318,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Wagon,26,18,1624,49750 +Cadillac,CTS Wagon,2013,regular unleaded,318,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Wagon,26,18,1624,46090 +Cadillac,CTS Wagon,2013,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,26,18,1624,39205 +Cadillac,CTS Wagon,2013,regular unleaded,318,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Wagon,26,18,1624,51650 +Cadillac,CTS Wagon,2013,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,26,18,1624,44050 +Cadillac,CTS Wagon,2014,regular unleaded,318,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Wagon,26,18,1624,49795 +Cadillac,CTS Wagon,2014,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,26,18,1624,44095 +Cadillac,CTS Wagon,2014,regular unleaded,270,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,26,18,1624,42195 +Cadillac,CTS Wagon,2014,regular unleaded,318,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Wagon,26,18,1624,46095 +Cadillac,CTS Wagon,2014,regular unleaded,318,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Wagon,26,18,1624,44195 +Cadillac,CTS Wagon,2014,regular unleaded,318,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Wagon,26,18,1624,51695 +Cadillac,CTS,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Luxury,Performance",Large,Sedan,26,18,1624,54970 +Cadillac,CTS,2015,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,30,20,1624,51270 +Cadillac,CTS,2015,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,28,19,1624,53270 +Cadillac,CTS,2015,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,28,19,1624,62070 +Cadillac,CTS,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Luxury,Performance",Large,Sedan,26,18,1624,63770 +Cadillac,CTS,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,Sedan,29,18,1624,61770 +Cadillac,CTS,2015,premium unleaded (required),420,6,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,24,16,1624,69340 +Cadillac,CTS,2015,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,28,19,1624,47345 +Cadillac,CTS,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Luxury,Performance",Large,Sedan,26,18,1624,59370 +Cadillac,CTS,2015,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,30,20,1624,45345 +Cadillac,CTS,2015,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,30,20,1624,55670 +Cadillac,CTS,2015,premium unleaded (recommended),272,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,28,19,1624,57670 +Cadillac,CTS,2015,premium unleaded (recommended),272,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,30,20,1624,60070 +Cadillac,CTS,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,Sedan,29,18,1624,52970 +Cadillac,CTS,2015,flex-fuel (unleaded/E85),321,6,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,Sedan,29,18,1624,57370 +Cadillac,CTS,2015,premium unleaded (required),420,6,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,24,16,1624,59340 +Cadillac,CTS,2016,regular unleaded,335,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,30,20,1624,58285 +Cadillac,CTS,2016,premium unleaded (recommended),268,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,31,21,1624,45560 +Cadillac,CTS,2016,premium unleaded (recommended),268,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,31,21,1624,60685 +Cadillac,CTS,2016,premium unleaded (required),420,6,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,24,16,1624,59955 +Cadillac,CTS,2016,premium unleaded (recommended),268,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,31,21,1624,51285 +Cadillac,CTS,2016,premium unleaded (required),420,6,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,24,16,1624,69955 +Cadillac,CTS,2016,premium unleaded (recommended),268,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,29,21,1624,53285 +Cadillac,CTS,2016,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,28,19,1624,60285 +Cadillac,CTS,2016,regular unleaded,335,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,30,20,1624,53285 +Cadillac,CTS,2016,regular unleaded,335,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,30,20,1624,62685 +Cadillac,CTS,2016,premium unleaded (recommended),268,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,29,21,1624,58285 +Cadillac,CTS,2016,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,28,19,1624,64685 +Cadillac,CTS,2016,premium unleaded (recommended),268,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,29,21,1624,62685 +Cadillac,CTS,2016,premium unleaded (recommended),268,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,31,21,1624,56285 +Cadillac,CTS,2016,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,28,19,1624,55285 +Cadillac,CTS,2016,premium unleaded (recommended),268,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,29,21,1624,47560 +Cadillac,CTS,2017,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,27,19,1624,61195 +Cadillac,CTS,2017,premium unleaded (recommended),268,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,30,22,1624,51695 +Cadillac,CTS,2017,premium unleaded (required),420,6,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,24,16,1624,70795 +Cadillac,CTS,2017,premium unleaded (recommended),268,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,29,21,1624,47995 +Cadillac,CTS,2017,regular unleaded,335,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,27,19,1624,55695 +Cadillac,CTS,2017,regular unleaded,335,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,30,20,1624,59195 +Cadillac,CTS,2017,regular unleaded,335,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,30,20,1624,53695 +Cadillac,CTS,2017,premium unleaded (recommended),268,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,29,21,1624,53695 +Cadillac,CTS,2017,premium unleaded (required),420,6,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,24,16,1624,60695 +Cadillac,CTS,2017,premium unleaded (recommended),268,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,30,22,1624,45995 +Nissan,Cube,2012,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,30,25,2009,14980 +Nissan,Cube,2012,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,27,2009,18680 +Nissan,Cube,2012,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,30,25,2009,16580 +Nissan,Cube,2012,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,27,2009,17580 +Nissan,Cube,2013,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,30,25,2009,16760 +Nissan,Cube,2013,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,27,2009,18860 +Nissan,Cube,2013,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,27,2009,17760 +Nissan,Cube,2014,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,27,2009,19000 +Nissan,Cube,2014,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,30,25,2009,16900 +Nissan,Cube,2014,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,27,2009,17900 +Oldsmobile,Custom Cruiser,1990,regular unleaded,140,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,22,15,26,2000 +Oldsmobile,Custom Cruiser,1991,regular unleaded,170,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,23,15,26,2000 +Oldsmobile,Custom Cruiser,1992,regular unleaded,170,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,23,15,26,2000 +Oldsmobile,Cutlass Calais,1990,regular unleaded,110,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,19,26,2000 +Oldsmobile,Cutlass Calais,1990,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,20,26,2000 +Oldsmobile,Cutlass Calais,1990,regular unleaded,180,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,29,19,26,2000 +Oldsmobile,Cutlass Calais,1990,regular unleaded,110,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,19,26,2000 +Oldsmobile,Cutlass Calais,1990,regular unleaded,180,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,29,19,26,2000 +Oldsmobile,Cutlass Calais,1990,regular unleaded,160,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,28,20,26,2000 +Oldsmobile,Cutlass Calais,1990,regular unleaded,110,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,19,26,2000 +Oldsmobile,Cutlass Calais,1990,regular unleaded,110,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,19,26,2000 +Oldsmobile,Cutlass Calais,1991,regular unleaded,110,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,31,19,26,2000 +Oldsmobile,Cutlass Calais,1991,regular unleaded,110,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,31,19,26,2000 +Oldsmobile,Cutlass Calais,1991,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,30,21,26,2000 +Oldsmobile,Cutlass Calais,1991,regular unleaded,160,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,30,21,26,2000 +Oldsmobile,Cutlass Calais,1991,regular unleaded,110,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,31,19,26,2000 +Oldsmobile,Cutlass Calais,1991,regular unleaded,180,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,21,26,2000 +Oldsmobile,Cutlass Calais,1991,regular unleaded,180,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,21,26,2000 +Oldsmobile,Cutlass Calais,1991,regular unleaded,110,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,31,19,26,2000 +Oldsmobile,Cutlass Ciera,1992,regular unleaded,160,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,17,26,2000 +Oldsmobile,Cutlass Ciera,1992,regular unleaded,160,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Wagon,27,17,26,2000 +Oldsmobile,Cutlass Ciera,1992,regular unleaded,110,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Wagon,28,19,26,2000 +Oldsmobile,Cutlass Ciera,1992,regular unleaded,110,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,28,19,26,2000 +Oldsmobile,Cutlass Ciera,1993,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,28,21,26,2000 +Oldsmobile,Cutlass Ciera,1993,regular unleaded,160,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Wagon,26,18,26,2000 +Oldsmobile,Cutlass Ciera,1993,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Wagon,26,18,26,2000 +Oldsmobile,Cutlass Ciera,1993,regular unleaded,160,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,17,26,2000 +Oldsmobile,Cutlass Ciera,1994,regular unleaded,120,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,28,22,26,2000 +Oldsmobile,Cutlass Ciera,1994,regular unleaded,120,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,17,26,2000 +Oldsmobile,Cutlass Ciera,1994,regular unleaded,160,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Wagon,26,17,26,2000 +Oldsmobile,Cutlass Ciera,1994,regular unleaded,160,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Wagon,26,17,26,2000 +Oldsmobile,Cutlass Supreme,1995,regular unleaded,160,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,26,17,26,2000 +Oldsmobile,Cutlass Supreme,1995,regular unleaded,160,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,26,17,26,2000 +Oldsmobile,Cutlass Supreme,1995,regular unleaded,160,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,17,26,2000 +Oldsmobile,Cutlass Supreme,1996,regular unleaded,160,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,18,26,2000 +Oldsmobile,Cutlass Supreme,1996,regular unleaded,160,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,26,18,26,2000 +Oldsmobile,Cutlass Supreme,1997,regular unleaded,160,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,18,26,2000 +Oldsmobile,Cutlass Supreme,1997,regular unleaded,160,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,26,18,26,2000 +Oldsmobile,Cutlass,1997,regular unleaded,155,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,18,26,2000 +Oldsmobile,Cutlass,1997,regular unleaded,155,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,18,26,2000 +Oldsmobile,Cutlass,1998,regular unleaded,155,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,17,26,2000 +Oldsmobile,Cutlass,1998,regular unleaded,155,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,17,26,2079 +Oldsmobile,Cutlass,1999,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,17,26,2045 +Oldsmobile,Cutlass,1999,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,17,26,2148 +Mazda,CX-3,2016,regular unleaded,146,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,35,29,586,19960 +Mazda,CX-3,2016,regular unleaded,146,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,35,29,586,21960 +Mazda,CX-3,2016,regular unleaded,146,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,32,27,586,26240 +Mazda,CX-3,2016,regular unleaded,146,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,32,27,586,23210 +Mazda,CX-3,2016,regular unleaded,146,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,32,27,586,21210 +Mazda,CX-3,2016,regular unleaded,146,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,35,29,586,24990 +Mazda,CX-3,2017,regular unleaded,146,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,29,586,24990 +Mazda,CX-3,2017,regular unleaded,146,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,29,586,19960 +Mazda,CX-3,2017,regular unleaded,146,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,29,586,21960 +Mazda,CX-3,2017,regular unleaded,146,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,32,27,586,23210 +Mazda,CX-3,2017,regular unleaded,146,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,32,27,586,26240 +Mazda,CX-3,2017,regular unleaded,146,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,32,27,586,21210 +Mazda,CX-5,2014,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,32,26,586,22795 +Mazda,CX-5,2014,regular unleaded,155,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,31,25,586,24045 +Mazda,CX-5,2014,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,32,25,586,24815 +Mazda,CX-5,2014,regular unleaded,184,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,30,24,586,26065 +Mazda,CX-5,2014,regular unleaded,184,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,30,24,586,29070 +Mazda,CX-5,2014,regular unleaded,155,4,MANUAL,front wheel drive,4,Crossover,Midsize,4dr SUV,35,26,586,21395 +Mazda,CX-5,2014,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,32,25,586,27820 +Mazda,CX-5,2015,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,32,25,586,27970 +Mazda,CX-5,2015,regular unleaded,184,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,30,24,586,29220 +Mazda,CX-5,2015,regular unleaded,184,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,30,24,586,26215 +Mazda,CX-5,2015,regular unleaded,155,4,MANUAL,front wheel drive,4,Crossover,Midsize,4dr SUV,35,26,586,21545 +Mazda,CX-5,2015,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,32,25,586,24965 +Mazda,CX-5,2015,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,32,26,586,22945 +Mazda,CX-5,2015,regular unleaded,155,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,31,25,586,24195 +Mazda,CX-5,2015,regular unleaded,184,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,30,24,586,24395 +Mazda,CX-5,2016,regular unleaded,155,4,MANUAL,front wheel drive,4,Crossover,Midsize,4dr SUV,35,26,586,21795 +Mazda,CX-5,2016,regular unleaded,184,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,30,24,586,26465 +Mazda,CX-5,2016,regular unleaded,184,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,30,24,586,24445 +Mazda,CX-5,2016,regular unleaded,155,4,MANUAL,front wheel drive,4,Crossover,Midsize,4dr SUV,35,26,586,21795 +Mazda,CX-5,2016,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,586,23195 +Mazda,CX-5,2016,regular unleaded,184,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,30,24,586,24895 +Mazda,CX-5,2016,regular unleaded,184,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,30,24,586,29870 +Mazda,CX-5,2016,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,586,28570 +Mazda,CX-5,2016,regular unleaded,184,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,30,24,586,29470 +Mazda,CX-5,2016,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,586,25215 +Mazda,CX-5,2016,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,586,25215 +Mazda,CX-5,2016,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,586,23595 +Mazda,CX-5,2016,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,586,28220 +Mazda,CX-5,2016,regular unleaded,184,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,30,24,586,26515 +Mazda,CX-7,2010,premium unleaded (recommended),244,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,586,25950 +Mazda,CX-7,2010,premium unleaded (recommended),244,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,17,586,27650 +Mazda,CX-7,2010,premium unleaded (recommended),244,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,586,31335 +Mazda,CX-7,2010,premium unleaded (recommended),244,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,17,586,33035 +Mazda,CX-7,2010,regular unleaded,161,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,20,586,21700 +Mazda,CX-7,2010,regular unleaded,161,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,20,586,22490 +Mazda,CX-7,2011,premium unleaded (recommended),244,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,17,586,33340 +Mazda,CX-7,2011,premium unleaded (recommended),244,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,18,586,31640 +Mazda,CX-7,2011,regular unleaded,161,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,20,586,21990 +Mazda,CX-7,2011,premium unleaded (recommended),244,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,17,586,27955 +Mazda,CX-7,2011,regular unleaded,161,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,20,586,22795 +Mazda,CX-7,2011,regular unleaded,161,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,20,586,26390 +Mazda,CX-7,2011,premium unleaded (recommended),244,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,18,586,26255 +Mazda,CX-7,2012,premium unleaded (recommended),244,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,18,586,26455 +Mazda,CX-7,2012,premium unleaded (recommended),244,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,18,586,31840 +Mazda,CX-7,2012,regular unleaded,161,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,20,586,26590 +Mazda,CX-7,2012,regular unleaded,161,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,20,586,22995 +Mazda,CX-7,2012,premium unleaded (recommended),244,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,17,586,28155 +Mazda,CX-7,2012,premium unleaded (recommended),244,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,17,586,33540 +Mazda,CX-7,2012,regular unleaded,161,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,20,586,22190 +Mazda,CX-9,2014,regular unleaded,273,6,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,22,16,586,31575 +Mazda,CX-9,2014,regular unleaded,273,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,24,17,586,29985 +Mazda,CX-9,2014,regular unleaded,273,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,24,17,586,32480 +Mazda,CX-9,2014,regular unleaded,273,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Large,4dr SUV,22,16,586,36625 +Mazda,CX-9,2014,regular unleaded,273,6,AUTOMATIC,front wheel drive,4,"Crossover,Performance",Large,4dr SUV,24,17,586,35035 +Mazda,CX-9,2014,regular unleaded,273,6,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,22,16,586,34070 +Mazda,CX-9,2015,regular unleaded,273,6,AUTOMATIC,front wheel drive,4,"Crossover,Performance",Large,4dr SUV,24,17,586,35035 +Mazda,CX-9,2015,regular unleaded,273,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Large,4dr SUV,22,16,586,36625 +Mazda,CX-9,2015,regular unleaded,273,6,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,22,16,586,31575 +Mazda,CX-9,2015,regular unleaded,273,6,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,22,16,586,34070 +Mazda,CX-9,2015,regular unleaded,273,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,24,17,586,32480 +Mazda,CX-9,2015,regular unleaded,273,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,24,17,586,29985 +Mazda,CX-9,2016,regular unleaded,227,4,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,28,22,586,35970 +Mazda,CX-9,2016,regular unleaded,227,4,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,27,21,586,33320 +Mazda,CX-9,2016,regular unleaded,227,4,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,27,21,586,41970 +Mazda,CX-9,2016,regular unleaded,227,4,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,28,22,586,40170 +Mazda,CX-9,2016,regular unleaded,227,4,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,28,22,586,31520 +Mazda,CX-9,2016,regular unleaded,227,4,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,27,21,586,44015 +Mazda,CX-9,2016,regular unleaded,227,4,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,27,21,586,37770 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,15,1851,26170 +Dodge,Dakota,2008,regular unleaded,302,8,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,19,14,1851,27780 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,15,1851,22030 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,18,14,1851,27625 +Dodge,Dakota,2008,regular unleaded,210,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,1851,25245 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,18,14,1851,26280 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,18,14,1851,27625 +Dodge,Dakota,2008,regular unleaded,210,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,1851,24720 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,18,14,1851,30155 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,18,14,1851,30780 +Dodge,Dakota,2008,regular unleaded,210,6,MANUAL,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,16,1851,23640 +Dodge,Dakota,2008,regular unleaded,210,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,16,1851,25395 +Dodge,Dakota,2008,regular unleaded,210,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,1851,28580 +Dodge,Dakota,2008,regular unleaded,210,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,15,1851,26590 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,15,1851,24010 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,18,14,1851,30510 +Dodge,Dakota,2008,regular unleaded,210,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,15,1851,26120 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,15,1851,22030 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,15,1851,26920 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,15,1851,26540 +Dodge,Dakota,2008,regular unleaded,302,8,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,18,14,1851,32135 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,15,1851,24010 +Dodge,Dakota,2008,regular unleaded,210,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,1851,27935 +Dodge,Dakota,2008,regular unleaded,210,6,MANUAL,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,16,1851,22505 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,18,14,1851,26280 +Dodge,Dakota,2008,regular unleaded,210,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,16,1851,24985 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,15,1851,26935 +Dodge,Dakota,2008,regular unleaded,302,8,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,14,1851,30760 +Dodge,Dakota,2008,regular unleaded,302,8,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,19,14,1851,28520 +Dodge,Dakota,2008,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,18,14,1851,29095 +Dodge,Dakota,2008,regular unleaded,210,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,16,1851,20470 +Dodge,Dakota,2008,regular unleaded,210,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,16,1851,20995 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,20,15,1851,28630 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,18,14,1851,31630 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,20,15,1851,23710 +Dodge,Dakota,2009,regular unleaded,210,6,MANUAL,rear wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,20,16,1851,25260 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,18,14,1851,29355 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,18,14,1851,31045 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,20,15,1851,23710 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,18,14,1851,29355 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,18,14,1851,27960 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,18,14,1851,30155 +Dodge,Dakota,2009,regular unleaded,210,6,MANUAL,four wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,19,15,1851,28210 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,18,14,1851,27960 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,20,15,1851,26405 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,18,14,1851,29985 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,18,14,1851,26810 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,20,15,1851,27315 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,20,15,1851,26405 +Dodge,Dakota,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,20,15,1851,22560 +Dodge,Dakota,2010,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,20,15,1851,26325 +Dodge,Dakota,2010,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,18,14,1851,27880 +Dodge,Dakota,2010,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,20,15,1851,25305 +Dodge,Dakota,2010,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,18,14,1851,28255 +Dodge,Dakota,2010,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,20,15,1851,23630 +Dodge,Dakota,2010,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,18,14,1851,27005 +Dodge,Dakota,2010,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,20,15,1851,23630 +Dodge,Dakota,2010,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,18,14,1851,29275 +Dodge,Dakota,2010,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,20,15,1851,22755 +Dodge,Dakota,2010,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,18,14,1851,33180 +Dodge,Dakota,2010,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Extended Cab Pickup,18,14,1851,27880 +Dodge,Dakota,2010,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,18,14,1851,29275 +Dodge,Dakota,2010,flex-fuel (unleaded/E85),302,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,19,14,1851,31365 +Dodge,Dakota,2010,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,20,15,1851,26325 +Dodge,Dakota,2010,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Compact,Crew Cab Pickup,20,15,1851,30180 +Dodge,Dart,2014,regular unleaded,160,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,36,25,1851,16495 +Dodge,Dart,2014,regular unleaded,184,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,35,22,1851,18595 +Dodge,Dart,2014,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,23,1851,22995 +Dodge,Dart,2014,regular unleaded,160,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,41,28,1851,19995 +Dodge,Dart,2014,regular unleaded,184,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,33,23,1851,20995 +Dodge,Dart,2015,regular unleaded,184,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,33,23,1851,21645 +Dodge,Dart,2015,regular unleaded,184,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,35,22,1851,19000 +Dodge,Dart,2015,regular unleaded,160,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,41,28,1851,20495 +Dodge,Dart,2015,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,23,1851,23795 +Dodge,Dart,2015,regular unleaded,160,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,36,25,1851,16495 +Dodge,Dart,2016,regular unleaded,160,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,39,27,1851,19495 +Dodge,Dart,2016,regular unleaded,160,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,36,25,1851,18995 +Dodge,Dart,2016,regular unleaded,184,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,35,22,1851,19395 +Dodge,Dart,2016,regular unleaded,160,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,36,25,1851,17995 +Dodge,Dart,2016,regular unleaded,184,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,23,1851,24395 +Dodge,Dart,2016,regular unleaded,160,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,36,25,1851,19595 +Dodge,Dart,2016,regular unleaded,160,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,36,25,1851,16995 +Dodge,Dart,2016,regular unleaded,160,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,39,27,1851,21095 +Dodge,Dart,2016,regular unleaded,184,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,35,22,1851,22095 +Dodge,Dart,2016,regular unleaded,184,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,35,22,1851,20995 +Dodge,Dart,2016,regular unleaded,184,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,35,22,1851,21595 +Rolls-Royce,Dawn,2016,premium unleaded (required),563,12,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Large,Convertible,19,12,86,335000 +Dodge,Daytona,1991,regular unleaded,152,4,MANUAL,front wheel drive,2,"Hatchback,Factory Tuner,Performance",Compact,2dr Hatchback,24,18,1851,2000 +Dodge,Daytona,1991,regular unleaded,152,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,24,18,1851,2000 +Dodge,Daytona,1991,regular unleaded,152,4,MANUAL,front wheel drive,2,"Hatchback,Factory Tuner,Performance",Compact,2dr Hatchback,24,18,1851,2000 +Dodge,Daytona,1991,regular unleaded,100,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,21,1851,2000 +Dodge,Daytona,1991,regular unleaded,141,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,25,17,1851,2000 +Dodge,Daytona,1991,regular unleaded,100,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,21,1851,2000 +Dodge,Daytona,1992,regular unleaded,224,4,MANUAL,front wheel drive,2,"Hatchback,Factory Tuner,Performance",Compact,2dr Hatchback,24,17,1851,2000 +Dodge,Daytona,1992,regular unleaded,141,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,26,17,1851,2000 +Dodge,Daytona,1992,regular unleaded,100,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,1851,2000 +Dodge,Daytona,1992,regular unleaded,100,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,1851,2000 +Dodge,Daytona,1993,regular unleaded,100,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,22,1851,2000 +Dodge,Daytona,1993,regular unleaded,100,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,22,1851,2000 +Dodge,Daytona,1993,regular unleaded,141,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,25,17,1851,2000 +Dodge,Daytona,1993,regular unleaded,224,4,MANUAL,front wheel drive,2,"Hatchback,Factory Tuner,Performance",Compact,2dr Hatchback,24,17,1851,2000 +Aston Martin,DB7,2003,premium unleaded (required),420,12,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Coupe,18,11,259,156300 +Aston Martin,DB7,2003,premium unleaded (required),420,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,17,10,259,151800 +Aston Martin,DB7,2003,premium unleaded (required),435,12,MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Coupe,15,9,259,156300 +Aston Martin,DB7,2003,premium unleaded (required),420,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,17,10,259,141800 +Aston Martin,DB9 GT,2016,premium unleaded (required),540,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,19,13,259,235307 +Aston Martin,DB9 GT,2016,premium unleaded (required),540,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,19,13,259,213250 +Aston Martin,DB9 GT,2016,premium unleaded (required),540,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,19,13,259,198250 +Aston Martin,DB9,2013,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,19,13,259,198700 +Aston Martin,DB9,2013,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,19,13,259,183700 +Aston Martin,DB9,2014,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,19,13,259,200800 +Aston Martin,DB9,2014,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,19,13,259,185800 +Aston Martin,DB9,2015,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,19,13,259,198295 +Aston Martin,DB9,2015,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,19,13,259,188295 +Aston Martin,DB9,2015,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,19,13,259,203295 +Aston Martin,DB9,2015,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,19,13,259,213295 +Aston Martin,DBS,2010,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,18,12,259,283900 +Aston Martin,DBS,2010,premium unleaded (required),510,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,17,11,259,279500 +Aston Martin,DBS,2010,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,18,12,259,270400 +Aston Martin,DBS,2010,premium unleaded (required),510,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,17,11,259,266000 +Aston Martin,DBS,2011,premium unleaded (required),510,12,MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,High-Performance",Midsize,Convertible,17,11,259,282295 +Aston Martin,DBS,2011,premium unleaded (required),510,12,MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,High-Performance",Midsize,Coupe,17,11,259,268660 +Aston Martin,DBS,2011,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,High-Performance",Midsize,Coupe,18,12,259,273104 +Aston Martin,DBS,2011,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,High-Performance",Midsize,Convertible,18,12,259,286739 +Aston Martin,DBS,2012,premium unleaded (required),510,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,17,11,259,295987 +Aston Martin,DBS,2012,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,18,12,259,275861 +Aston Martin,DBS,2012,premium unleaded (required),510,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,17,11,259,284576 +Aston Martin,DBS,2012,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,18,12,259,296387 +Aston Martin,DBS,2012,premium unleaded (required),510,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,17,11,259,290461 +Aston Martin,DBS,2012,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,18,12,259,284976 +Aston Martin,DBS,2012,premium unleaded (required),510,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,18,12,259,290861 +Aston Martin,DBS,2012,premium unleaded (required),510,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,17,11,259,275461 +Land Rover,Defender,1994,regular unleaded,182,8,MANUAL,four wheel drive,2,Luxury,Compact,2dr SUV,15,12,258,27736 +Land Rover,Defender,1995,regular unleaded,182,8,MANUAL,four wheel drive,2,Luxury,Compact,2dr SUV,15,12,258,30709 +Land Rover,Defender,1997,regular unleaded,182,8,AUTOMATIC,four wheel drive,2,Luxury,Compact,Convertible SUV,14,12,258,36931 +Land Rover,Defender,1997,regular unleaded,182,8,AUTOMATIC,four wheel drive,2,Luxury,Compact,2dr SUV,14,12,258,39669 +Cadillac,DeVille,2003,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,25,16,1624,49150 +Cadillac,DeVille,2003,regular unleaded,300,8,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,25,16,1624,49150 +Cadillac,DeVille,2003,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,25,16,1624,44400 +Cadillac,DeVille,2004,regular unleaded,300,8,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,1624,50750 +Cadillac,DeVille,2004,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,24,16,1624,50750 +Cadillac,DeVille,2004,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,24,16,1624,45600 +Cadillac,DeVille,2005,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,22,15,1624,51600 +Cadillac,DeVille,2005,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,22,15,1624,46430 +Cadillac,DeVille,2005,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,22,15,1624,46045 +Cadillac,DeVille,2005,regular unleaded,290,8,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,1624,51600 +Lamborghini,Diablo,2001,premium unleaded (required),550,12,MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Coupe,12,9,1158,294900 +Mitsubishi,Diamante,2002,premium unleaded (required),205,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,23,16,436,28447 +Mitsubishi,Diamante,2002,premium unleaded (required),210,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,23,16,436,26997 +Mitsubishi,Diamante,2002,premium unleaded (required),205,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,23,16,436,25687 +Mitsubishi,Diamante,2003,premium unleaded (required),205,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,23,16,436,25997 +Mitsubishi,Diamante,2003,premium unleaded (required),205,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,23,16,436,28447 +Mitsubishi,Diamante,2003,premium unleaded (required),210,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,23,16,436,27097 +Mitsubishi,Diamante,2004,premium unleaded (required),205,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,23,15,436,24999 +Mitsubishi,Diamante,2004,premium unleaded (required),210,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,23,15,436,26819 +Mitsubishi,Diamante,2004,premium unleaded (required),205,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,23,15,436,27619 +Land Rover,Discovery Series II,2000,regular unleaded,188,8,AUTOMATIC,all wheel drive,4,Luxury,Midsize,4dr SUV,16,12,258,2561 +Land Rover,Discovery Series II,2001,premium unleaded (required),188,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,16,12,258,36350 +Land Rover,Discovery Series II,2001,premium unleaded (required),188,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,16,12,258,33350 +Land Rover,Discovery Series II,2001,premium unleaded (required),188,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,16,12,258,34350 +Land Rover,Discovery Series II,2002,premium unleaded (required),188,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,16,12,258,33350 +Land Rover,Discovery Series II,2002,premium unleaded (required),188,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,16,12,258,37150 +Land Rover,Discovery Sport,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,20,258,37070 +Land Rover,Discovery Sport,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,20,258,45570 +Land Rover,Discovery Sport,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,20,258,41570 +Land Rover,Discovery Sport,2016,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,20,258,41955 +Land Rover,Discovery Sport,2016,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,20,258,45955 +Land Rover,Discovery Sport,2016,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,20,258,37455 +Land Rover,Discovery Sport,2017,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,20,258,46595 +Land Rover,Discovery Sport,2017,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,20,258,42195 +Land Rover,Discovery Sport,2017,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,20,258,37695 +Land Rover,Discovery,2003,premium unleaded (required),217,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,14,11,258,34350 +Land Rover,Discovery,2003,premium unleaded (required),217,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,14,11,258,40350 +Land Rover,Discovery,2003,premium unleaded (required),217,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,14,11,258,38350 +Land Rover,Discovery,2004,premium unleaded (required),217,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,14,11,258,38685 +Land Rover,Discovery,2004,premium unleaded (required),217,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,14,11,258,40685 +Land Rover,Discovery,2004,premium unleaded (required),217,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,14,11,258,34330 +Cadillac,DTS,2009,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,1624,51460 +Cadillac,DTS,2009,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,1624,46280 +Cadillac,DTS,2009,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,1624,49730 +Cadillac,DTS,2009,regular unleaded,292,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,22,15,1624,54230 +Cadillac,DTS,2009,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,1624,49230 +Cadillac,DTS,2009,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,1624,47625 +Cadillac,DTS,2010,premium unleaded (recommended),275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,1624,46280 +Cadillac,DTS,2010,premium unleaded (recommended),275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,1624,51525 +Cadillac,DTS,2010,premium unleaded (recommended),275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,1624,54425 +Cadillac,DTS,2010,premium unleaded (recommended),292,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,22,15,1624,59475 +Cadillac,DTS,2011,premium unleaded (recommended),292,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,1624,59875 +Cadillac,DTS,2011,premium unleaded (recommended),275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,1624,51925 +Cadillac,DTS,2011,premium unleaded (recommended),275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,1624,54825 +Cadillac,DTS,2011,premium unleaded (recommended),275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,1624,46680 +Dodge,Durango,2015,regular unleaded,290,6,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Large,4dr SUV,25,18,1851,36895 +Dodge,Durango,2015,premium unleaded (recommended),360,8,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Large,4dr SUV,22,14,1851,42495 +Dodge,Durango,2015,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,24,17,1851,39495 +Dodge,Durango,2015,regular unleaded,290,6,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Large,4dr SUV,25,18,1851,40995 +Dodge,Durango,2015,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Large,4dr SUV,24,17,1851,33095 +Dodge,Durango,2015,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,24,17,1851,43595 +Dodge,Durango,2015,premium unleaded (recommended),360,8,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Large,4dr SUV,23,14,1851,39995 +Dodge,Durango,2015,regular unleaded,290,6,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Large,4dr SUV,25,18,1851,30495 +Dodge,Durango,2016,premium unleaded (recommended),360,8,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Large,4dr SUV,22,14,1851,41995 +Dodge,Durango,2016,regular unleaded,293,6,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,25,18,1851,39595 +Dodge,Durango,2016,regular unleaded,293,6,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Large,4dr SUV,27,19,1851,30495 +Dodge,Durango,2016,regular unleaded,295,6,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,25,18,1851,43895 +Dodge,Durango,2016,regular unleaded,293,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Large,4dr SUV,25,18,1851,33095 +Dodge,Durango,2016,premium unleaded (recommended),360,8,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Large,4dr SUV,22,14,1851,44595 +Dodge,Durango,2016,regular unleaded,295,6,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Large,4dr SUV,27,19,1851,42390 +Dodge,Durango,2016,regular unleaded,293,6,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Large,4dr SUV,27,19,1851,36995 +Dodge,Durango,2016,regular unleaded,295,6,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Large,4dr SUV,27,19,1851,41295 +Dodge,Durango,2016,regular unleaded,295,6,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,25,18,1851,44990 +Dodge,Durango,2017,regular unleaded,295,6,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Large,4dr SUV,26,19,1851,37495 +Dodge,Durango,2017,regular unleaded,295,6,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Large,4dr SUV,26,19,1851,42490 +Dodge,Durango,2017,regular unleaded,295,6,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,25,18,1851,40095 +Dodge,Durango,2017,premium unleaded (recommended),360,8,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Large,4dr SUV,22,14,1851,42095 +Dodge,Durango,2017,regular unleaded,295,6,AUTOMATIC,rear wheel drive,4,Crossover,Large,4dr SUV,26,19,1851,29995 +Dodge,Durango,2017,premium unleaded (recommended),360,8,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Large,4dr SUV,22,14,1851,44695 +Dodge,Durango,2017,regular unleaded,295,6,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Large,4dr SUV,26,19,1851,41395 +Dodge,Durango,2017,regular unleaded,295,6,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,25,18,1851,43995 +Dodge,Durango,2017,regular unleaded,295,6,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,25,18,1851,45090 +Dodge,Durango,2017,regular unleaded,295,6,AUTOMATIC,all wheel drive,4,Crossover,Large,4dr SUV,25,18,1851,32595 +Dodge,Dynasty,1991,regular unleaded,100,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,18,1851,2000 +Dodge,Dynasty,1991,regular unleaded,141,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,18,1851,2000 +Dodge,Dynasty,1992,regular unleaded,100,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,19,1851,2000 +Dodge,Dynasty,1992,regular unleaded,141,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,18,1851,2000 +Dodge,Dynasty,1993,regular unleaded,141,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,18,1851,2000 +Dodge,Dynasty,1993,regular unleaded,100,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,18,1851,2000 +Ford,E-150,1996,regular unleaded,199,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,15,11,5657,2000 +Ford,E-150,1996,regular unleaded,145,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,14,12,5657,2000 +Ford,E-150,1996,regular unleaded,145,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,15,11,5657,2000 +Ford,E-150,1996,regular unleaded,145,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,15,11,5657,2000 +Ford,E-150,1996,regular unleaded,145,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,14,12,5657,2000 +Ford,E-150,1997,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,17,12,5657,2000 +Ford,E-150,1997,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,17,12,5657,2123 +Ford,E-150,1997,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,17,12,5657,2074 +Ford,E-150,1997,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,18,14,5657,2000 +Ford,E-150,1998,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,17,12,5657,2301 +Ford,E-150,1998,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,18,13,5657,2079 +Ford,E-150,1998,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,17,12,5657,2256 +Ford,E-150,1998,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,17,12,5657,2169 +Ford,E-250,1996,regular unleaded,199,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,13,11,5657,2000 +Ford,E-250,1996,regular unleaded,145,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,13,11,5657,2000 +Ford,E-250,1996,regular unleaded,199,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,13,11,5657,2000 +Ford,E-250,1996,regular unleaded,145,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,13,11,5657,2000 +Ford,E-250,1997,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,17,12,5657,2000 +Ford,E-250,1997,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,17,12,5657,2000 +Ford,E-250,1997,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,17,12,5657,2000 +Ford,E-250,1997,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,17,12,5657,2000 +Ford,E-250,1998,regular unleaded,235,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,17,13,5657,2080 +Ford,E-250,1998,regular unleaded,235,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,17,13,5657,2107 +Mercedes-Benz,E-Class,2015,premium unleaded (required),329,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,28,20,617,55850 +Mercedes-Benz,E-Class,2015,premium unleaded (required),550,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,23,16,617,93600 +Mercedes-Benz,E-Class,2015,premium unleaded (required),329,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,29,20,617,53350 +Mercedes-Benz,E-Class,2015,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance,Hybrid",Midsize,Sedan,29,24,617,57100 +Mercedes-Benz,E-Class,2015,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,20,617,54800 +Mercedes-Benz,E-Class,2015,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Wagon,27,20,617,59000 +Mercedes-Benz,E-Class,2015,diesel,195,4,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Midsize,Sedan,38,27,617,54300 +Mercedes-Benz,E-Class,2015,premium unleaded (required),402,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Convertible,26,17,617,67750 +Mercedes-Benz,E-Class,2015,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,617,52300 +Mercedes-Benz,E-Class,2015,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,22,15,617,100600 +Mercedes-Benz,E-Class,2015,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Wagon,21,15,617,103200 +Mercedes-Benz,E-Class,2015,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,617,52300 +Mercedes-Benz,E-Class,2015,premium unleaded (required),329,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,20,617,64850 +Mercedes-Benz,E-Class,2015,diesel,195,4,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Midsize,Sedan,38,27,617,54300 +Mercedes-Benz,E-Class,2015,premium unleaded (required),402,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,26,18,617,59400 +Mercedes-Benz,E-Class,2015,premium unleaded (required),329,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,29,20,617,61350 +Mercedes-Benz,E-Class,2015,diesel,195,4,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Midsize,Sedan,42,28,617,51800 +Mercedes-Benz,E-Class,2015,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Wagon,27,20,617,59000 +Mercedes-Benz,E-Class,2015,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,20,617,54800 +Mercedes-Benz,E-Class,2015,diesel,195,4,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Midsize,Sedan,42,28,617,51800 +Mercedes-Benz,E-Class,2015,premium unleaded (required),329,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,617,62350 +Mercedes-Benz,E-Class,2016,premium unleaded (required),329,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,617,63100 +Mercedes-Benz,E-Class,2016,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Wagon,27,20,617,59900 +Mercedes-Benz,E-Class,2016,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Wagon,27,20,617,59900 +Mercedes-Benz,E-Class,2016,diesel,195,4,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Midsize,Sedan,38,27,617,55150 +Mercedes-Benz,E-Class,2016,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,617,53100 +Mercedes-Benz,E-Class,2016,premium unleaded (required),329,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,20,617,65600 +Mercedes-Benz,E-Class,2016,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,22,15,617,101700 +Mercedes-Benz,E-Class,2016,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,617,53100 +Mercedes-Benz,E-Class,2016,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,20,617,55600 +Mercedes-Benz,E-Class,2016,premium unleaded (required),329,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,29,20,617,54200 +Mercedes-Benz,E-Class,2016,premium unleaded (required),402,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,26,18,617,60300 +Mercedes-Benz,E-Class,2016,premium unleaded (required),329,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,29,20,617,62250 +Mercedes-Benz,E-Class,2016,diesel,195,4,AUTOMATIC,all wheel drive,4,"Diesel,Luxury",Midsize,Sedan,38,27,617,55150 +Mercedes-Benz,E-Class,2016,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,20,617,55600 +Mercedes-Benz,E-Class,2016,premium unleaded (required),402,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Convertible,26,17,617,68700 +Mercedes-Benz,E-Class,2016,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Wagon,21,15,617,104300 +Mercedes-Benz,E-Class,2016,diesel,195,4,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Midsize,Sedan,42,28,617,52650 +Mercedes-Benz,E-Class,2016,diesel,195,4,AUTOMATIC,rear wheel drive,4,"Diesel,Luxury",Midsize,Sedan,42,28,617,52650 +Mercedes-Benz,E-Class,2016,premium unleaded (required),329,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,28,20,617,56700 +Mercedes-Benz,E-Class,2017,premium unleaded (required),329,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,29,20,617,62600 +Mercedes-Benz,E-Class,2017,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,29,22,617,54650 +Mercedes-Benz,E-Class,2017,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,29,22,617,54650 +Mercedes-Benz,E-Class,2017,premium unleaded (required),329,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,28,20,617,57050 +Mercedes-Benz,E-Class,2017,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,30,22,617,52150 +Mercedes-Benz,E-Class,2017,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,30,22,617,52150 +Mercedes-Benz,E-Class,2017,premium unleaded (required),329,6,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,29,20,617,54550 +Mercedes-Benz,E-Class,2017,premium unleaded (required),402,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,26,18,617,60650 +Mercedes-Benz,E-Class,2017,premium unleaded (required),402,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Convertible,25,17,617,69100 +Volkswagen,e-Golf,2015,electric,115,,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,105,126,873,33450 +Volkswagen,e-Golf,2015,electric,115,,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,105,126,873,35445 +Volkswagen,e-Golf,2016,electric,115,,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,105,126,873,28995 +Volkswagen,e-Golf,2016,electric,115,,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,105,126,873,35595 +Ford,E-Series Van,2012,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Cargo Van,16,12,5657,31460 +Ford,E-Series Van,2012,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,17,13,5657,26630 +Ford,E-Series Van,2012,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,17,13,5657,27630 +Ford,E-Series Van,2012,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Cargo Van,17,13,5657,28985 +Ford,E-Series Van,2012,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Cargo Van,17,13,5657,27840 +Ford,E-Series Van,2012,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,16,12,5657,30560 +Ford,E-Series Van,2013,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,17,13,5657,27325 +Ford,E-Series Van,2013,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,16,12,5657,31485 +Ford,E-Series Van,2013,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Cargo Van,17,13,5657,30145 +Ford,E-Series Van,2013,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,17,13,5657,28785 +Ford,E-Series Van,2013,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Cargo Van,17,13,5657,28540 +Ford,E-Series Van,2013,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Cargo Van,16,12,5657,32385 +Ford,E-Series Van,2014,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,16,13,5657,28600 +Ford,E-Series Van,2014,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,16,12,5657,32760 +Ford,E-Series Van,2014,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,16,13,5657,30060 +Ford,E-Series Van,2014,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Cargo Van,16,13,5657,31420 +Ford,E-Series Van,2014,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Cargo Van,16,12,5657,33660 +Ford,E-Series Van,2014,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Cargo Van,16,13,5657,29815 +Ford,E-Series Wagon,2012,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,16,13,5657,28760 +Ford,E-Series Wagon,2012,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,15,11,5657,34320 +Ford,E-Series Wagon,2012,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,15,11,5657,35620 +Ford,E-Series Wagon,2012,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,15,11,5657,34160 +Ford,E-Series Wagon,2012,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,16,13,5657,31200 +Ford,E-Series Wagon,2012,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,15,11,5657,31855 +Ford,E-Series Wagon,2013,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,15,11,5657,35245 +Ford,E-Series Wagon,2013,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,15,11,5657,36545 +Ford,E-Series Wagon,2013,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,15,11,5657,32785 +Ford,E-Series Wagon,2013,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,15,11,5657,35085 +Ford,E-Series Wagon,2013,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,16,13,5657,29455 +Ford,E-Series Wagon,2013,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,16,13,5657,31900 +Ford,E-Series Wagon,2014,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,16,13,5657,32675 +Ford,E-Series Wagon,2014,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,15,11,5657,37320 +Ford,E-Series Wagon,2014,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,15,11,5657,36020 +Ford,E-Series Wagon,2014,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,15,11,5657,35860 +Ford,E-Series Wagon,2014,flex-fuel (unleaded/E85),255,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,15,11,5657,33560 +Ford,E-Series Wagon,2014,flex-fuel (unleaded/E85),225,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,16,13,5657,30230 +Mercedes-Benz,E55 AMG,1999,regular unleaded,349,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,Performance",Midsize,Sedan,21,15,617,5878 +Mercedes-Benz,E55 AMG,2000,regular unleaded,349,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,Performance",Midsize,Sedan,21,15,617,6120 +Toyota,ECHO,2003,regular unleaded,108,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,38,30,2031,10775 +Toyota,ECHO,2003,regular unleaded,108,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,36,28,2031,11575 +Toyota,ECHO,2003,regular unleaded,108,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,38,30,2031,10245 +Toyota,ECHO,2003,regular unleaded,108,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,36,28,2031,11045 +Toyota,ECHO,2004,regular unleaded,108,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,38,30,2031,10885 +Toyota,ECHO,2004,regular unleaded,108,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,36,28,2031,11685 +Toyota,ECHO,2004,regular unleaded,108,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,36,28,2031,11155 +Toyota,ECHO,2004,regular unleaded,108,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,38,30,2031,10355 +Toyota,ECHO,2005,regular unleaded,108,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,38,30,2031,10985 +Toyota,ECHO,2005,regular unleaded,108,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,36,28,2031,11255 +Toyota,ECHO,2005,regular unleaded,108,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,36,28,2031,11785 +Toyota,ECHO,2005,regular unleaded,108,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,38,30,2031,10455 +Mitsubishi,Eclipse Spyder,2010,regular unleaded,162,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,26,19,436,27799 +Mitsubishi,Eclipse Spyder,2010,premium unleaded (recommended),265,6,AUTOMATIC,front wheel drive,2,Performance,Compact,Convertible,24,16,436,32599 +Mitsubishi,Eclipse Spyder,2011,premium unleaded (recommended),265,6,AUTOMATIC,front wheel drive,2,Performance,Compact,Convertible,24,16,436,32599 +Mitsubishi,Eclipse Spyder,2011,regular unleaded,162,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,27,20,436,27999 +Mitsubishi,Eclipse Spyder,2012,regular unleaded,162,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,27,20,436,28299 +Mitsubishi,Eclipse Spyder,2012,premium unleaded (recommended),265,6,AUTOMATIC,front wheel drive,2,Performance,Compact,Convertible,24,16,436,32599 +Mitsubishi,Eclipse Spyder,2012,regular unleaded,162,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,27,20,436,27999 +Mitsubishi,Eclipse,2010,regular unleaded,162,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,27,20,436,24699 +Mitsubishi,Eclipse,2010,regular unleaded,162,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,436,20699 +Mitsubishi,Eclipse,2010,premium unleaded (recommended),265,6,AUTOMATIC,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,24,16,436,29089 +Mitsubishi,Eclipse,2010,regular unleaded,162,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,27,20,436,21699 +Mitsubishi,Eclipse,2010,premium unleaded (recommended),265,6,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,25,16,436,28089 +Mitsubishi,Eclipse,2011,regular unleaded,162,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,436,24699 +Mitsubishi,Eclipse,2011,regular unleaded,162,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,436,19999 +Mitsubishi,Eclipse,2011,regular unleaded,162,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,436,18999 +Mitsubishi,Eclipse,2011,premium unleaded (recommended),265,6,AUTOMATIC,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,25,17,436,29089 +Mitsubishi,Eclipse,2012,regular unleaded,162,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,436,19499 +Mitsubishi,Eclipse,2012,regular unleaded,162,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,436,20499 +Mitsubishi,Eclipse,2012,regular unleaded,162,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,436,24699 +Mitsubishi,Eclipse,2012,premium unleaded (recommended),265,6,AUTOMATIC,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,25,17,436,29089 +Mitsubishi,Eclipse,2012,regular unleaded,162,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,436,24699 +Ford,Edge,2015,premium unleaded (recommended),245,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,20,5657,30095 +Ford,Edge,2015,premium unleaded (recommended),245,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,20,5657,33495 +Ford,Edge,2015,premium unleaded (recommended),245,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,30,20,5657,28100 +Ford,Edge,2015,premium unleaded (recommended),245,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,30,20,5657,31500 +Ford,Edge,2015,regular unleaded,315,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,17,5657,40095 +Ford,Edge,2015,regular unleaded,315,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,18,5657,38100 +Ford,Edge,2015,premium unleaded (recommended),245,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,20,5657,37595 +Ford,Edge,2015,premium unleaded (recommended),245,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,30,20,5657,35600 +Ford,Edge,2016,premium unleaded (recommended),245,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,30,20,5657,28700 +Ford,Edge,2016,premium unleaded (recommended),245,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,20,5657,30695 +Ford,Edge,2016,premium unleaded (recommended),245,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,30,20,5657,31790 +Ford,Edge,2016,premium unleaded (recommended),245,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,20,5657,37595 +Ford,Edge,2016,regular unleaded,315,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,24,17,5657,40900 +Ford,Edge,2016,premium unleaded (recommended),245,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,20,5657,33785 +Ford,Edge,2016,premium unleaded (recommended),245,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,30,20,5657,35600 +Ford,Edge,2017,premium unleaded (recommended),245,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,29,21,5657,28950 +Ford,Edge,2017,premium unleaded (recommended),245,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,27,20,5657,37595 +Ford,Edge,2017,regular unleaded,315,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,24,17,5657,40900 +Ford,Edge,2017,premium unleaded (recommended),245,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,27,20,5657,30945 +Ford,Edge,2017,premium unleaded (recommended),245,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,27,20,5657,33785 +Ford,Edge,2017,premium unleaded (recommended),245,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,29,20,5657,31790 +Ford,Edge,2017,premium unleaded (recommended),245,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,29,20,5657,35600 +Oldsmobile,Eighty-Eight Royale,1993,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2000 +Oldsmobile,Eighty-Eight Royale,1993,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2000 +Oldsmobile,Eighty-Eight Royale,1994,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2000 +Oldsmobile,Eighty-Eight Royale,1994,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2000 +Oldsmobile,Eighty-Eight Royale,1994,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2000 +Oldsmobile,Eighty-Eight Royale,1994,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2000 +Oldsmobile,Eighty-Eight Royale,1995,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2000 +Oldsmobile,Eighty-Eight Royale,1995,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2000 +Oldsmobile,Eighty-Eight Royale,1995,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2000 +Oldsmobile,Eighty-Eight Royale,1995,regular unleaded,225,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2000 +Oldsmobile,Eighty-Eight,1997,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2000 +Oldsmobile,Eighty-Eight,1997,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2000 +Oldsmobile,Eighty-Eight,1998,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,17,26,2000 +Oldsmobile,Eighty-Eight,1998,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,17,26,2098 +Oldsmobile,Eighty-Eight,1999,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,17,26,2210 +Oldsmobile,Eighty-Eight,1999,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,17,26,2107 +Oldsmobile,Eighty-Eight,1999,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,17,26,2320 +Hyundai,Elantra Coupe,2013,regular unleaded,145,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,37,27,1439,18595 +Hyundai,Elantra Coupe,2013,regular unleaded,148,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,37,27,1439,18595 +Hyundai,Elantra Coupe,2013,regular unleaded,148,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,38,28,1439,19895 +Hyundai,Elantra Coupe,2013,regular unleaded,145,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,37,27,1439,20895 +Hyundai,Elantra Coupe,2013,regular unleaded,148,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,37,27,1439,20895 +Hyundai,Elantra Coupe,2013,regular unleaded,148,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,38,28,1439,17595 +Hyundai,Elantra Coupe,2014,regular unleaded,166,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,34,24,1439,19600 +Hyundai,Elantra Coupe,2014,regular unleaded,173,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,34,24,1439,19600 +Hyundai,Elantra GT,2015,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,1439,19800 +Hyundai,Elantra GT,2015,regular unleaded,173,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,24,1439,18800 +Hyundai,Elantra GT,2016,regular unleaded,173,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,1439,18800 +Hyundai,Elantra GT,2016,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,1439,19800 +Hyundai,Elantra GT,2017,regular unleaded,173,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,32,24,1439,18800 +Hyundai,Elantra GT,2017,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,32,24,1439,19800 +Hyundai,Elantra Touring,2010,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,30,23,1439,17195 +Hyundai,Elantra Touring,2010,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,30,23,1439,19795 +Hyundai,Elantra Touring,2010,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,31,23,1439,15995 +Hyundai,Elantra Touring,2010,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,31,23,1439,18995 +Hyundai,Elantra Touring,2011,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,31,23,1439,15995 +Hyundai,Elantra Touring,2011,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,31,23,1439,19495 +Hyundai,Elantra Touring,2011,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,30,23,1439,17195 +Hyundai,Elantra Touring,2011,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,30,23,1439,20295 +Hyundai,Elantra Touring,2012,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,30,23,1439,17195 +Hyundai,Elantra Touring,2012,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,31,23,1439,15995 +Hyundai,Elantra Touring,2012,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,31,23,1439,19495 +Hyundai,Elantra Touring,2012,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,30,23,1439,20295 +Hyundai,Elantra,2015,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,35,24,1439,22600 +Hyundai,Elantra,2015,regular unleaded,145,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,27,1439,21700 +Hyundai,Elantra,2015,regular unleaded,145,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,28,1439,18250 +Hyundai,Elantra,2015,regular unleaded,145,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,27,1439,17250 +Hyundai,Elantra,2015,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,35,24,1439,22600 +Hyundai,Elantra,2015,regular unleaded,173,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,34,24,1439,21600 +Hyundai,Elantra,2015,regular unleaded,145,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,27,1439,21700 +Hyundai,Elantra,2016,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Performance,Compact,Sedan,35,24,1439,21250 +Hyundai,Elantra,2016,regular unleaded,145,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,28,1439,18250 +Hyundai,Elantra,2016,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,35,24,1439,21250 +Hyundai,Elantra,2016,regular unleaded,145,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,27,1439,21700 +Hyundai,Elantra,2016,regular unleaded,173,4,MANUAL,front wheel drive,4,Performance,Compact,Sedan,34,24,1439,20250 +Hyundai,Elantra,2016,regular unleaded,145,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,27,1439,17250 +Hyundai,Elantra,2016,regular unleaded,145,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,27,1439,21700 +Hyundai,Elantra,2016,regular unleaded,145,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,28,1439,19700 +Hyundai,Elantra,2017,regular unleaded,147,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,29,1439,18150 +Hyundai,Elantra,2017,regular unleaded,147,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,28,1439,22350 +Hyundai,Elantra,2017,regular unleaded,147,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,29,1439,18150 +Hyundai,Elantra,2017,regular unleaded,128,4,AUTOMATED_MANUAL,front wheel drive,4,N/A,Compact,Sedan,40,32,1439,20650 +Hyundai,Elantra,2017,regular unleaded,147,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,26,1439,17150 +Hyundai,Elantra,2017,regular unleaded,147,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,28,1439,22350 +Hyundai,Elantra,2017,regular unleaded,201,4,AUTOMATED_MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,26,1439,22750 +Hyundai,Elantra,2017,regular unleaded,201,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,22,1439,21650 +Hyundai,Elantra,2017,regular unleaded,147,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,29,1439,20250 +Cadillac,Eldorado,2000,regular unleaded,275,8,AUTOMATIC,front wheel drive,2,Luxury,Large,Coupe,25,15,1624,2905 +Cadillac,Eldorado,2000,regular unleaded,300,8,AUTOMATIC,front wheel drive,2,Luxury,Large,Coupe,25,15,1624,3257 +Cadillac,Eldorado,2001,regular unleaded,300,8,AUTOMATIC,front wheel drive,2,Luxury,Large,Coupe,25,15,1624,44011 +Cadillac,Eldorado,2001,regular unleaded,275,8,AUTOMATIC,front wheel drive,2,Luxury,Large,Coupe,25,15,1624,40436 +Cadillac,Eldorado,2002,regular unleaded,300,8,AUTOMATIC,front wheel drive,2,Luxury,Large,Coupe,25,16,1624,47660 +Cadillac,Eldorado,2002,regular unleaded,300,8,AUTOMATIC,front wheel drive,2,Luxury,Large,Coupe,25,16,1624,45265 +Cadillac,Eldorado,2002,regular unleaded,275,8,AUTOMATIC,front wheel drive,2,Luxury,Large,Coupe,25,16,1624,42130 +Buick,Electra,1990,regular unleaded,165,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,16,155,2000 +Buick,Electra,1990,regular unleaded,165,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,16,155,2000 +Buick,Electra,1990,regular unleaded,165,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,16,155,2000 +Buick,Electra,1990,regular unleaded,165,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,16,155,2000 +Honda,Element,2009,regular unleaded,166,4,MANUAL,all wheel drive,4,Crossover,Compact,4dr SUV,23,18,2202,22785 +Honda,Element,2009,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,25,20,2202,25770 +Honda,Element,2009,regular unleaded,166,4,MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,23,18,2202,23270 +Honda,Element,2009,regular unleaded,166,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,19,2202,23585 +Honda,Element,2009,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,25,20,2202,20275 +Honda,Element,2009,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,25,20,2202,24085 +Honda,Element,2009,regular unleaded,166,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,19,2202,25285 +Honda,Element,2009,regular unleaded,166,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,19,2202,21475 +Honda,Element,2009,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,25,20,2202,24070 +Honda,Element,2009,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,25,20,2202,22385 +Honda,Element,2010,regular unleaded,166,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,19,2202,23885 +Honda,Element,2010,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,25,20,2202,22635 +Honda,Element,2010,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,25,20,2202,24335 +Honda,Element,2010,regular unleaded,166,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,19,2202,25585 +Honda,Element,2010,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,25,20,2202,20525 +Honda,Element,2010,regular unleaded,166,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,19,2202,21775 +Honda,Element,2010,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,25,20,2202,24320 +Honda,Element,2011,regular unleaded,166,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,19,2202,24185 +Honda,Element,2011,regular unleaded,166,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,19,2202,22075 +Honda,Element,2011,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,25,20,2202,20825 +Honda,Element,2011,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,25,20,2202,22935 +Lotus,Elise,2009,premium unleaded (required),189,4,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,27,21,613,43995 +Lotus,Elise,2009,premium unleaded (required),218,4,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,26,20,613,54990 +Lotus,Elise,2009,premium unleaded (required),189,4,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,27,21,613,47250 +Lotus,Elise,2010,premium unleaded (required),189,4,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,27,21,613,47250 +Lotus,Elise,2010,premium unleaded (required),218,4,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,26,20,613,54990 +Lotus,Elise,2011,premium unleaded (required),189,4,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,27,21,613,51845 +Lotus,Elise,2011,premium unleaded (required),217,4,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,26,20,613,54990 +Lotus,Elise,2011,premium unleaded (required),217,4,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,26,20,613,57950 +Buick,Enclave,2015,regular unleaded,288,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,16,155,49305 +Buick,Enclave,2015,regular unleaded,288,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,155,39050 +Buick,Enclave,2015,regular unleaded,288,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,155,43450 +Buick,Enclave,2015,regular unleaded,288,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,16,155,45450 +Buick,Enclave,2015,regular unleaded,288,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,155,47305 +Buick,Enclave,2016,regular unleaded,288,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,155,43660 +Buick,Enclave,2016,regular unleaded,288,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,155,49515 +Buick,Enclave,2016,regular unleaded,288,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,155,39065 +Buick,Enclave,2016,regular unleaded,288,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,155,47515 +Buick,Enclave,2016,regular unleaded,288,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,155,45660 +Buick,Enclave,2017,regular unleaded,288,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,155,39065 +Buick,Enclave,2017,regular unleaded,288,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,155,45765 +Buick,Enclave,2017,regular unleaded,288,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,155,47625 +Buick,Enclave,2017,regular unleaded,288,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,155,43765 +Buick,Enclave,2017,regular unleaded,288,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,155,49625 +Buick,Encore,2015,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,23,155,29450 +Buick,Encore,2015,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,23,155,27655 +Buick,Encore,2015,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,23,155,25565 +Buick,Encore,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,155,29435 +Buick,Encore,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,155,27950 +Buick,Encore,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,155,24065 +Buick,Encore,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,155,26155 +Buick,Encore,2015,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,23,155,30935 +Buick,Encore,2016,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,23,155,31285 +Buick,Encore,2016,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,23,155,25565 +Buick,Encore,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,155,28300 +Buick,Encore,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,155,29785 +Buick,Encore,2016,regular unleaded,153,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,32,26,155,28850 +Buick,Encore,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,155,24065 +Buick,Encore,2016,regular unleaded,153,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,28,155,27350 +Buick,Encore,2016,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,23,155,29800 +Buick,Encore,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,155,26355 +Buick,Encore,2016,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,23,155,27855 +Buick,Encore,2017,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,24,155,31965 +Buick,Encore,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,155,26865 +Buick,Encore,2017,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,24,155,30565 +Buick,Encore,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,28,155,25565 +Buick,Encore,2017,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,26,155,27065 +Buick,Encore,2017,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,24,155,28365 +Buick,Encore,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,155,30465 +Buick,Encore,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,155,24365 +Buick,Encore,2017,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,24,155,25865 +Buick,Encore,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,155,29065 +Mitsubishi,Endeavor,2008,premium unleaded (required),225,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,19,15,436,29099 +Mitsubishi,Endeavor,2008,premium unleaded (required),225,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,19,15,436,29099 +Mitsubishi,Endeavor,2008,premium unleaded (required),225,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,436,27599 +Mitsubishi,Endeavor,2008,premium unleaded (required),225,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,436,27599 +Mitsubishi,Endeavor,2010,premium unleaded (recommended),225,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,21,15,436,29999 +Mitsubishi,Endeavor,2010,premium unleaded (recommended),225,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,19,15,436,31499 +Mitsubishi,Endeavor,2010,premium unleaded (recommended),225,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,21,15,436,27999 +Mitsubishi,Endeavor,2011,premium unleaded (recommended),225,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,21,15,436,28299 +Mitsubishi,Endeavor,2011,premium unleaded (recommended),225,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,21,15,436,32099 +Mitsubishi,Endeavor,2011,premium unleaded (recommended),225,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,19,15,436,33599 +Hyundai,Entourage,2007,regular unleaded,242,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,1439,26395 +Hyundai,Entourage,2007,regular unleaded,242,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,1439,28895 +Hyundai,Entourage,2007,regular unleaded,242,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,1439,23895 +Hyundai,Entourage,2008,regular unleaded,250,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,1439,29895 +Hyundai,Entourage,2008,regular unleaded,250,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,1439,23995 +Buick,Envision,2016,premium unleaded (recommended),252,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,20,155,42070 +Buick,Envision,2016,premium unleaded (recommended),252,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,20,155,44710 +Buick,Envision,2017,flex-fuel (unleaded/E85),197,4,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,28,21,155,39570 +Buick,Envision,2017,premium unleaded (recommended),252,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,20,155,44960 +Buick,Envision,2017,flex-fuel (unleaded/E85),197,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,29,22,155,35870 +Buick,Envision,2017,premium unleaded (recommended),252,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,20,155,42320 +Buick,Envision,2017,flex-fuel (unleaded/E85),197,4,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,28,21,155,37720 +Buick,Envision,2017,flex-fuel (unleaded/E85),197,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,29,22,155,37720 +GMC,Envoy XL,2004,regular unleaded,275,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,18,13,549,33570 +GMC,Envoy XL,2004,regular unleaded,275,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,18,13,549,38120 +GMC,Envoy XL,2004,regular unleaded,275,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,18,13,549,31320 +GMC,Envoy XL,2004,regular unleaded,275,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,18,13,549,35870 +GMC,Envoy XL,2005,regular unleaded,275,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,18,13,549,33810 +GMC,Envoy XL,2005,regular unleaded,275,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,12,549,36060 +GMC,Envoy XL,2005,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,19,13,549,38160 +GMC,Envoy XL,2005,regular unleaded,275,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,12,549,31945 +GMC,Envoy XL,2005,regular unleaded,300,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,18,13,549,40235 +GMC,Envoy XL,2005,regular unleaded,275,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,18,13,549,29695 +GMC,Envoy XL,2006,regular unleaded,291,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,18,13,549,33160 +GMC,Envoy XL,2006,regular unleaded,300,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,18,13,549,37600 +GMC,Envoy XL,2006,regular unleaded,291,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,18,13,549,29630 +GMC,Envoy XL,2006,regular unleaded,291,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,19,14,549,30910 +GMC,Envoy XL,2006,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,19,14,549,35350 +GMC,Envoy XL,2006,regular unleaded,291,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,19,14,549,27380 +GMC,Envoy XUV,2005,regular unleaded,275,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,12,549,36115 +GMC,Envoy XUV,2005,regular unleaded,275,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,18,13,549,29780 +GMC,Envoy XUV,2005,regular unleaded,275,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,18,13,549,33865 +GMC,Envoy XUV,2005,regular unleaded,275,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,12,549,32030 +GMC,Envoy,2007,regular unleaded,291,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,549,32960 +GMC,Envoy,2007,regular unleaded,291,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,549,26760 +GMC,Envoy,2007,regular unleaded,291,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,549,30770 +GMC,Envoy,2007,regular unleaded,302,8,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,549,34990 +GMC,Envoy,2007,regular unleaded,291,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,549,28950 +GMC,Envoy,2007,regular unleaded,302,8,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,13,549,37190 +GMC,Envoy,2008,regular unleaded,285,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,549,34020 +GMC,Envoy,2008,regular unleaded,285,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,549,27980 +GMC,Envoy,2008,regular unleaded,300,8,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,13,549,37105 +GMC,Envoy,2008,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,549,34970 +GMC,Envoy,2008,regular unleaded,285,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,549,30115 +GMC,Envoy,2008,regular unleaded,285,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,549,31885 +GMC,Envoy,2009,regular unleaded,285,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,549,35615 +GMC,Envoy,2009,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,15,549,36535 +GMC,Envoy,2009,regular unleaded,285,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,549,30625 +GMC,Envoy,2009,regular unleaded,285,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,549,32760 +GMC,Envoy,2009,regular unleaded,300,8,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,549,38670 +GMC,Envoy,2009,regular unleaded,285,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,549,33480 +Ferrari,Enzo,2003,premium unleaded (required),660,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,12,7,2774,643330 +Volkswagen,Eos,2014,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,N/A,Compact,Convertible,30,22,873,38325 +Volkswagen,Eos,2014,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,N/A,Compact,Convertible,30,22,873,42095 +Volkswagen,Eos,2014,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,N/A,Compact,Convertible,30,22,873,35595 +Volkswagen,Eos,2015,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,N/A,Compact,Convertible,30,22,873,39545 +Volkswagen,Eos,2015,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,N/A,Compact,Convertible,30,22,873,42745 +Volkswagen,Eos,2015,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,N/A,Compact,Convertible,30,22,873,36145 +Volkswagen,Eos,2016,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,N/A,Compact,Convertible,30,22,873,31995 +Suzuki,Equator,2010,regular unleaded,152,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,22,17,481,22075 +Suzuki,Equator,2010,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,481,25645 +Suzuki,Equator,2010,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,15,481,24775 +Suzuki,Equator,2010,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,15,481,28850 +Suzuki,Equator,2010,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,15,481,30900 +Suzuki,Equator,2010,regular unleaded,152,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,19,481,17520 +Suzuki,Equator,2010,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,15,481,25125 +Suzuki,Equator,2010,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,15,481,23245 +Suzuki,Equator,2010,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,15,481,27825 +Suzuki,Equator,2010,regular unleaded,152,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,19,481,18825 +Suzuki,Equator,2011,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,14,481,25979 +Suzuki,Equator,2011,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,15,481,25279 +Suzuki,Equator,2011,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,14,481,28279 +Suzuki,Equator,2011,regular unleaded,152,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,19,481,17595 +Suzuki,Equator,2011,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,14,481,29150 +Suzuki,Equator,2011,regular unleaded,152,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,22,17,481,22479 +Suzuki,Equator,2012,regular unleaded,152,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,19,481,19299 +Suzuki,Equator,2012,regular unleaded,152,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,19,481,17899 +Suzuki,Equator,2012,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,15,481,28699 +Suzuki,Equator,2012,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,15,481,25699 +Suzuki,Equator,2012,regular unleaded,152,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,22,17,481,22799 +Suzuki,Equator,2012,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,15,481,29550 +Suzuki,Equator,2012,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,14,481,26299 +Chevrolet,Equinox,2015,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel",Compact,4dr SUV,29,20,1385,26270 +Chevrolet,Equinox,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Compact,4dr SUV,32,22,1385,26170 +Chevrolet,Equinox,2015,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel",Compact,4dr SUV,29,20,1385,27920 +Chevrolet,Equinox,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Compact,4dr SUV,32,22,1385,28170 +Chevrolet,Equinox,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Compact,4dr SUV,32,22,1385,31920 +Chevrolet,Equinox,2015,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel",Compact,4dr SUV,29,20,1385,33670 +Chevrolet,Equinox,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Compact,4dr SUV,32,22,1385,24520 +Chevrolet,Equinox,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Compact,4dr SUV,32,22,1385,22120 +Chevrolet,Equinox,2015,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel",Compact,4dr SUV,29,20,1385,29920 +Chevrolet,Equinox,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,1385,22600 +Chevrolet,Equinox,2016,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,20,1385,31490 +Chevrolet,Equinox,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,1385,29740 +Chevrolet,Equinox,2016,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,20,1385,26960 +Chevrolet,Equinox,2016,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,20,1385,28200 +Chevrolet,Equinox,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,1385,25210 +Chevrolet,Equinox,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,1385,26450 +Chevrolet,Equinox,2017,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,1385,25510 +Chevrolet,Equinox,2017,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,28,20,1385,27260 +Chevrolet,Equinox,2017,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,1385,26750 +Chevrolet,Equinox,2017,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,1385,23100 +Chevrolet,Equinox,2017,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,28,20,1385,31790 +Chevrolet,Equinox,2017,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,1385,30040 +Chevrolet,Equinox,2017,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,28,20,1385,28500 +Hyundai,Equus,2014,premium unleaded (recommended),429,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,15,1439,61250 +Hyundai,Equus,2014,premium unleaded (recommended),429,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,15,1439,68500 +Hyundai,Equus,2015,premium unleaded (recommended),429,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,15,1439,61500 +Hyundai,Equus,2015,premium unleaded (recommended),429,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,15,1439,68750 +Hyundai,Equus,2016,premium unleaded (recommended),429,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,15,1439,68750 +Hyundai,Equus,2016,premium unleaded (recommended),429,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,15,1439,61500 +Lexus,ES 250,1990,regular unleaded,156,6,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,24,17,454,2000 +Lexus,ES 250,1991,regular unleaded,156,6,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,23,17,454,2000 +Lexus,ES 300h,2015,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,39,40,454,40580 +Lexus,ES 300h,2016,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,39,40,454,41020 +Lexus,ES 300h,2017,regular unleaded,200,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,39,40,454,41820 +Lexus,ES 300,2001,premium unleaded (required),210,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,24,17,454,31505 +Lexus,ES 300,2002,regular unleaded,210,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,27,18,454,31505 +Lexus,ES 300,2003,regular unleaded,210,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,27,18,454,31725 +Lexus,ES 330,2004,regular unleaded,225,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,27,18,454,31725 +Lexus,ES 330,2005,regular unleaded,225,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,27,18,454,32175 +Lexus,ES 330,2006,regular unleaded,218,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,27,18,454,32300 +Lexus,ES 350,2015,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,21,454,37700 +Lexus,ES 350,2015,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,21,454,40440 +Lexus,ES 350,2016,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,21,454,38100 +Lexus,ES 350,2017,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,30,21,454,38900 +Cadillac,Escalade ESV,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,20,14,1624,85795 +Cadillac,Escalade ESV,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,21,15,1624,83195 +Cadillac,Escalade ESV,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,21,15,1624,78695 +Cadillac,Escalade ESV,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,20,14,1624,87070 +Cadillac,Escalade ESV,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury",Large,4dr SUV,20,14,1624,77295 +Cadillac,Escalade ESV,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury",Large,4dr SUV,21,15,1624,74695 +Cadillac,Escalade ESV,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,20,14,1624,82570 +Cadillac,Escalade ESV,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,22,15,1624,92275 +Cadillac,Escalade ESV,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury",Large,4dr SUV,22,15,1624,75970 +Cadillac,Escalade ESV,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,20,14,1624,81295 +Cadillac,Escalade ESV,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,22,15,1624,84470 +Cadillac,Escalade ESV,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury",Large,4dr SUV,20,14,1624,78570 +Cadillac,Escalade ESV,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,20,14,1624,94875 +Cadillac,Escalade ESV,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,22,15,1624,79970 +Cadillac,Escalade ESV,2016,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,4dr SUV,22,15,1624,80045 +Cadillac,Escalade ESV,2016,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Large,4dr SUV,21,15,1624,82645 +Cadillac,Escalade ESV,2016,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Large,4dr SUV,21,15,1624,87145 +Cadillac,Escalade ESV,2016,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,22,15,1624,75970 +Cadillac,Escalade ESV,2016,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,21,15,1624,78570 +Cadillac,Escalade ESV,2016,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,4dr SUV,22,15,1624,84545 +Cadillac,Escalade ESV,2016,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,4dr SUV,22,15,1624,92350 +Cadillac,Escalade ESV,2016,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Large,4dr SUV,21,15,1624,94950 +Cadillac,Escalade ESV,2017,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Large,4dr SUV,20,15,1624,83995 +Cadillac,Escalade ESV,2017,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,4dr SUV,22,15,1624,95195 +Cadillac,Escalade ESV,2017,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,4dr SUV,22,15,1624,81395 +Cadillac,Escalade ESV,2017,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Large,4dr SUV,20,15,1624,88495 +Cadillac,Escalade ESV,2017,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Large,4dr SUV,20,15,1624,78995 +Cadillac,Escalade ESV,2017,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,4dr SUV,22,15,1624,76395 +Cadillac,Escalade ESV,2017,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Large,4dr SUV,20,15,1624,97795 +Cadillac,Escalade ESV,2017,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,4dr SUV,22,15,1624,85895 +Cadillac,Escalade EXT,2011,flex-fuel (premium unleaded recommended/E85),403,8,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel,Luxury,Performance",Large,Crew Cab Pickup,18,13,1624,67350 +Cadillac,Escalade EXT,2011,flex-fuel (premium unleaded recommended/E85),403,8,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel,Luxury,Performance",Large,Crew Cab Pickup,18,13,1624,69740 +Cadillac,Escalade EXT,2011,flex-fuel (premium unleaded recommended/E85),403,8,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel,Luxury",Large,Crew Cab Pickup,18,13,1624,62160 +Cadillac,Escalade EXT,2012,flex-fuel (premium unleaded recommended/E85),403,8,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel,Luxury,Performance",Large,Crew Cab Pickup,18,13,1624,69640 +Cadillac,Escalade EXT,2012,flex-fuel (premium unleaded recommended/E85),403,8,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel,Luxury",Large,Crew Cab Pickup,18,13,1624,63060 +Cadillac,Escalade EXT,2012,flex-fuel (premium unleaded recommended/E85),403,8,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel,Luxury,Performance",Large,Crew Cab Pickup,18,13,1624,67250 +Cadillac,Escalade EXT,2013,flex-fuel (premium unleaded recommended/E85),403,8,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel,Luxury,Performance",Large,Crew Cab Pickup,18,13,1624,69640 +Cadillac,Escalade EXT,2013,flex-fuel (premium unleaded recommended/E85),403,8,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel,Luxury",Large,Crew Cab Pickup,18,13,1624,63060 +Cadillac,Escalade EXT,2013,flex-fuel (premium unleaded recommended/E85),403,8,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel,Luxury,Performance",Large,Crew Cab Pickup,18,13,1624,67250 +Cadillac,Escalade Hybrid,2011,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,1624,88435 +Cadillac,Escalade Hybrid,2011,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,1624,76685 +Cadillac,Escalade Hybrid,2011,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,1624,85935 +Cadillac,Escalade Hybrid,2011,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,1624,74135 +Cadillac,Escalade Hybrid,2012,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,1624,76400 +Cadillac,Escalade Hybrid,2012,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,1624,83295 +Cadillac,Escalade Hybrid,2012,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,1624,85845 +Cadillac,Escalade Hybrid,2012,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,1624,73850 +Cadillac,Escalade Hybrid,2013,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,1624,74425 +Cadillac,Escalade Hybrid,2013,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,1624,83870 +Cadillac,Escalade Hybrid,2013,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,1624,76975 +Cadillac,Escalade Hybrid,2013,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,1624,86420 +Cadillac,Escalade,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,21,15,1624,80195 +Cadillac,Escalade,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,21,15,1624,84070 +Cadillac,Escalade,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,21,15,1624,91875 +Cadillac,Escalade,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,22,15,1624,76970 +Cadillac,Escalade,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury",Large,4dr SUV,21,15,1624,71695 +Cadillac,Escalade,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury",Large,4dr SUV,22,15,1624,72970 +Cadillac,Escalade,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury",Large,4dr SUV,21,15,1624,75570 +Cadillac,Escalade,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,22,15,1624,81470 +Cadillac,Escalade,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,21,14,1624,82795 +Cadillac,Escalade,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,21,14,1624,78295 +Cadillac,Escalade,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,21,15,1624,75695 +Cadillac,Escalade,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,21,15,1624,79570 +Cadillac,Escalade,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury",Large,4dr SUV,21,14,1624,74295 +Cadillac,Escalade,2015,flex-fuel (unleaded/E85),420,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury,Performance",Large,4dr SUV,22,15,1624,89275 +Cadillac,Escalade,2016,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,4dr SUV,22,15,1624,81545 +Cadillac,Escalade,2016,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,4dr SUV,22,15,1624,89350 +Cadillac,Escalade,2016,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Large,4dr SUV,21,15,1624,79645 +Cadillac,Escalade,2016,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Large,4dr SUV,21,15,1624,84145 +Cadillac,Escalade,2016,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Large,4dr SUV,21,15,1624,91950 +Cadillac,Escalade,2016,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,4dr SUV,22,15,1624,77045 +Cadillac,Escalade,2016,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,21,15,1624,75570 +Cadillac,Escalade,2016,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,22,15,1624,72970 +Cadillac,Escalade,2017,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,4dr SUV,22,15,1624,92195 +Cadillac,Escalade,2017,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Large,4dr SUV,20,15,1624,80995 +Cadillac,Escalade,2017,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,4dr SUV,22,15,1624,82895 +Cadillac,Escalade,2017,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Large,4dr SUV,20,15,1624,85495 +Cadillac,Escalade,2017,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Large,4dr SUV,20,15,1624,94795 +Cadillac,Escalade,2017,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Large,4dr SUV,20,15,1624,75995 +Cadillac,Escalade,2017,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,4dr SUV,22,15,1624,73395 +Cadillac,Escalade,2017,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,4dr SUV,22,15,1624,78395 +Ford,Escape Hybrid,2009,regular unleaded,177,4,AUTOMATIC,front wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,31,34,5657,31975 +Ford,Escape Hybrid,2009,regular unleaded,177,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,27,29,5657,33725 +Ford,Escape Hybrid,2009,regular unleaded,177,4,AUTOMATIC,front wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,31,34,5657,29645 +Ford,Escape Hybrid,2009,regular unleaded,177,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,27,29,5657,31395 +Ford,Escape Hybrid,2010,regular unleaded,177,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,27,30,5657,34120 +Ford,Escape Hybrid,2010,regular unleaded,177,4,AUTOMATIC,front wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,31,34,5657,32370 +Ford,Escape Hybrid,2010,regular unleaded,177,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,27,30,5657,31610 +Ford,Escape Hybrid,2010,regular unleaded,177,4,AUTOMATIC,front wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,31,34,5657,29860 +Ford,Escape Hybrid,2011,regular unleaded,177,4,AUTOMATIC,front wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,31,34,5657,30570 +Ford,Escape Hybrid,2011,regular unleaded,177,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,27,30,5657,34830 +Ford,Escape Hybrid,2011,regular unleaded,177,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,27,30,5657,32320 +Ford,Escape Hybrid,2011,regular unleaded,177,4,AUTOMATIC,front wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,31,34,5657,33080 +Ford,Escape,2015,premium unleaded (recommended),178,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,23,5657,29735 +Ford,Escape,2015,premium unleaded (recommended),178,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,23,5657,25650 +Ford,Escape,2015,premium unleaded (recommended),178,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,22,5657,27400 +Ford,Escape,2015,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,22,5657,23450 +Ford,Escape,2015,premium unleaded (recommended),178,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,22,5657,31485 +Ford,Escape,2016,premium unleaded (recommended),178,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,22,5657,27540 +Ford,Escape,2016,premium unleaded (recommended),178,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,23,5657,25790 +Ford,Escape,2016,premium unleaded (recommended),178,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,23,5657,29995 +Ford,Escape,2016,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,22,5657,23590 +Ford,Escape,2016,premium unleaded (recommended),178,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,22,5657,31745 +Ford,Escape,2017,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,29,21,5657,23600 +Ford,Escape,2017,regular unleaded,,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,30,23,5657,29100 +Ford,Escape,2017,regular unleaded,,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,28,22,5657,30850 +Ford,Escape,2017,regular unleaded,,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,28,22,5657,26850 +Ford,Escape,2017,regular unleaded,,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,30,23,5657,25100 +Ford,Escort,2001,regular unleaded,130,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,31,23,5657,12340 +Ford,Escort,2002,regular unleaded,130,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,31,22,5657,14315 +Ford,Escort,2002,regular unleaded,130,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,31,23,5657,12815 +Ford,Escort,2002,regular unleaded,110,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,32,23,5657,15015 +Ford,Escort,2002,regular unleaded,130,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,31,22,5657,13860 +Ford,Escort,2002,regular unleaded,110,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,32,23,5657,14090 +Ford,Escort,2003,regular unleaded,130,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,23,5657,13205 +Ford,Escort,2003,regular unleaded,130,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,23,5657,14355 +Ford,Escort,2003,regular unleaded,130,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,23,5657,14810 +Lotus,Esprit,2002,premium unleaded (required),350,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,14,613,89825 +Lotus,Esprit,2003,premium unleaded (required),350,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,14,613,90825 +Lotus,Esprit,2004,premium unleaded (required),350,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,14,613,93225 +Buick,Estate Wagon,1990,regular unleaded,140,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,22,15,155,2000 +Suzuki,Esteem,2000,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,24,481,2000 +Suzuki,Esteem,2000,regular unleaded,95,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,26,481,2000 +Suzuki,Esteem,2000,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,31,24,481,2000 +Suzuki,Esteem,2000,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,31,24,481,2000 +Suzuki,Esteem,2001,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,30,23,481,14199 +Suzuki,Esteem,2001,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,23,481,16499 +Suzuki,Esteem,2001,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,26,481,15499 +Suzuki,Esteem,2001,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,30,23,481,14999 +Suzuki,Esteem,2001,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,26,481,16699 +Suzuki,Esteem,2001,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,26,481,15699 +Suzuki,Esteem,2001,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,32,24,481,13699 +Suzuki,Esteem,2001,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,30,23,481,15799 +Suzuki,Esteem,2001,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,24,481,13199 +Suzuki,Esteem,2001,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,26,481,14699 +Suzuki,Esteem,2001,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,30,23,481,15899 +Suzuki,Esteem,2001,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,24,481,14199 +Suzuki,Esteem,2001,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,24,481,14899 +Suzuki,Esteem,2001,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,31,24,481,14699 +Suzuki,Esteem,2001,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,24,481,13999 +Suzuki,Esteem,2001,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,32,24,481,14499 +Suzuki,Esteem,2001,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,30,23,481,15199 +Suzuki,Esteem,2002,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,24,481,13299 +Suzuki,Esteem,2002,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,23,481,16799 +Suzuki,Esteem,2002,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,31,24,481,14799 +Suzuki,Esteem,2002,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,30,23,481,14299 +Suzuki,Esteem,2002,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,31,24,481,13799 +Suzuki,Esteem,2002,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,23,481,14799 +Suzuki,Esteem,2002,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,23,481,16599 +Suzuki,Esteem,2002,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,30,23,481,15299 +Suzuki,Esteem,2002,regular unleaded,122,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,24,481,14299 +Suzuki,Esteem,2002,regular unleaded,122,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,23,481,15799 +Volkswagen,EuroVan,2001,premium unleaded (required),201,6,AUTOMATIC,front wheel drive,3,N/A,Large,Passenger Minivan,18,15,873,27700 +Volkswagen,EuroVan,2001,premium unleaded (required),201,6,AUTOMATIC,front wheel drive,3,N/A,Large,Passenger Minivan,18,15,873,26200 +Volkswagen,EuroVan,2002,premium unleaded (recommended),201,6,AUTOMATIC,front wheel drive,3,N/A,Large,Passenger Minivan,18,15,873,26200 +Volkswagen,EuroVan,2002,premium unleaded (recommended),201,6,AUTOMATIC,front wheel drive,3,N/A,Large,Passenger Minivan,18,15,873,27700 +Volkswagen,EuroVan,2003,premium unleaded (recommended),201,6,AUTOMATIC,front wheel drive,3,N/A,Large,Passenger Minivan,18,15,873,26200 +Volkswagen,EuroVan,2003,premium unleaded (recommended),201,6,AUTOMATIC,front wheel drive,3,N/A,Large,Passenger Minivan,18,15,873,27700 +Lotus,Evora 400,2017,premium unleaded (required),400,6,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,39,21,613,91900 +Lotus,Evora 400,2017,premium unleaded (required),400,6,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,39,21,613,91900 +Lotus,Evora,2011,premium unleaded (required),276,6,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,27,18,613,64000 +Lotus,Evora,2011,premium unleaded (required),276,6,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,26,18,613,65500 +Lotus,Evora,2013,premium unleaded (required),276,6,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,26,18,613,66800 +Lotus,Evora,2013,premium unleaded (required),345,6,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,26,17,613,77100 +Lotus,Evora,2013,premium unleaded (required),345,6,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,26,17,613,78600 +Lotus,Evora,2013,premium unleaded (required),276,6,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,26,18,613,68300 +Lotus,Evora,2014,premium unleaded (required),345,6,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,26,17,613,78750 +Lotus,Evora,2014,premium unleaded (required),276,6,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,26,18,613,68750 +Lotus,Evora,2014,premium unleaded (required),345,6,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,26,17,613,79980 +Lotus,Evora,2014,premium unleaded (required),276,6,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,26,18,613,69980 +Infiniti,EX35,2008,premium unleaded (recommended),297,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,190,31900 +Infiniti,EX35,2008,premium unleaded (recommended),297,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,190,36850 +Infiniti,EX35,2008,premium unleaded (recommended),297,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,190,33300 +Infiniti,EX35,2008,premium unleaded (recommended),297,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,190,35450 +Infiniti,EX35,2009,premium unleaded (recommended),297,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,190,35200 +Infiniti,EX35,2009,premium unleaded (recommended),297,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,190,37400 +Infiniti,EX35,2009,premium unleaded (recommended),297,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,190,36000 +Infiniti,EX35,2009,premium unleaded (recommended),297,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,190,33800 +Infiniti,EX35,2010,premium unleaded (recommended),297,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,190,33800 +Infiniti,EX35,2010,premium unleaded (recommended),297,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,190,37400 +Infiniti,EX35,2010,premium unleaded (recommended),297,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,190,35200 +Infiniti,EX35,2010,premium unleaded (recommended),297,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,190,36000 +Hyundai,Excel,1992,regular unleaded,81,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,1439,2000 +Hyundai,Excel,1992,regular unleaded,81,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,25,1439,2000 +Hyundai,Excel,1992,regular unleaded,81,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,25,1439,2000 +Hyundai,Excel,1992,regular unleaded,81,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,25,1439,2000 +Hyundai,Excel,1993,regular unleaded,81,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,25,1439,2000 +Hyundai,Excel,1993,regular unleaded,81,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,25,1439,2000 +Hyundai,Excel,1993,regular unleaded,81,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,25,1439,2000 +Hyundai,Excel,1993,regular unleaded,81,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,25,1439,2000 +Hyundai,Excel,1994,regular unleaded,81,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,1439,2000 +Hyundai,Excel,1994,regular unleaded,81,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,24,1439,2000 +Hyundai,Excel,1994,regular unleaded,81,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,24,1439,2000 +Lotus,Exige,2009,premium unleaded (recommended),257,4,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,26,20,613,74995 +Lotus,Exige,2009,premium unleaded (recommended),240,4,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,26,20,613,65690 +Lotus,Exige,2010,premium unleaded (recommended),240,4,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,26,20,613,65690 +Lotus,Exige,2011,premium unleaded (recommended),240,4,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,26,20,613,65690 +Lotus,Exige,2011,premium unleaded (recommended),257,4,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,26,20,613,70750 +Lotus,Exige,2011,premium unleaded (recommended),257,4,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,26,20,613,74950 +Infiniti,EX,2011,premium unleaded (recommended),297,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,190,35200 +Infiniti,EX,2011,premium unleaded (recommended),297,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,190,36600 +Infiniti,EX,2011,premium unleaded (recommended),297,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,190,37400 +Infiniti,EX,2011,premium unleaded (recommended),297,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,190,38800 +Infiniti,EX,2012,premium unleaded (recommended),297,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,190,38100 +Infiniti,EX,2012,premium unleaded (recommended),297,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,190,37200 +Infiniti,EX,2012,premium unleaded (recommended),297,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,190,35800 +Infiniti,EX,2012,premium unleaded (recommended),297,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,190,39500 +Infiniti,EX,2013,premium unleaded (recommended),325,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,17,190,36900 +Infiniti,EX,2013,premium unleaded (recommended),325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,190,38300 +Infiniti,EX,2013,premium unleaded (recommended),325,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,25,17,190,39250 +Infiniti,EX,2013,premium unleaded (recommended),325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,190,40650 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,20,15,5657,58185 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,21,15,5657,62025 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,21,15,5657,62985 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,22,16,5657,59375 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,20,14,5657,66025 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,21,15,5657,57795 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,20,14,5657,60835 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,20,14,5657,64945 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,22,16,5657,45435 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,20,15,5657,63375 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,20,15,5657,48360 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,22,16,5657,60335 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,21,15,5657,48145 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,20,15,5657,62295 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,22,16,5657,55145 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,20,14,5657,51070 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,22,16,5657,41135 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,20,14,5657,47330 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,20,15,5657,44055 +Ford,Expedition,2016,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,21,15,5657,44410 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,20,15,5657,58021 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,20,15,5657,49150 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,20,15,5657,62590 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,21,15,5657,63307 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,20,15,5657,65957 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,20,15,5657,58410 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,21,15,5657,46225 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,21,15,5657,59940 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,19,15,5657,51861 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,19,15,5657,61061 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,19,15,5657,65510 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,20,15,5657,66347 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,20,15,5657,62860 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,20,15,5657,48936 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,21,15,5657,55370 +Ford,Expedition,2017,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,19,15,5657,68996 +Ford,Explorer Sport Trac,2008,regular unleaded,292,8,AUTOMATIC,all wheel drive,4,N/A,Compact,Crew Cab Pickup,19,13,5657,31320 +Ford,Explorer Sport Trac,2008,regular unleaded,292,8,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,13,5657,31320 +Ford,Explorer Sport Trac,2008,regular unleaded,210,6,AUTOMATIC,all wheel drive,4,N/A,Compact,Crew Cab Pickup,19,13,5657,30015 +Ford,Explorer Sport Trac,2008,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,13,5657,27925 +Ford,Explorer Sport Trac,2008,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,14,5657,25400 +Ford,Explorer Sport Trac,2008,regular unleaded,292,8,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,13,5657,28800 +Ford,Explorer Sport Trac,2008,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,13,5657,30015 +Ford,Explorer Sport Trac,2008,regular unleaded,292,8,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,13,5657,26710 +Ford,Explorer Sport Trac,2008,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,14,5657,27490 +Ford,Explorer Sport Trac,2008,regular unleaded,292,8,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,13,5657,29235 +Ford,Explorer Sport Trac,2009,regular unleaded,292,8,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Compact,Crew Cab Pickup,21,15,5657,31145 +Ford,Explorer Sport Trac,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Crossover,Compact,Crew Cab Pickup,20,14,5657,29835 +Ford,Explorer Sport Trac,2009,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Crossover,Compact,Crew Cab Pickup,19,13,5657,28510 +Ford,Explorer Sport Trac,2009,regular unleaded,292,8,AUTOMATIC,four wheel drive,4,Crossover,Compact,Crew Cab Pickup,19,14,5657,33670 +Ford,Explorer Sport Trac,2009,regular unleaded,292,8,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Compact,Crew Cab Pickup,19,14,5657,33670 +Ford,Explorer Sport Trac,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Crossover,Compact,Crew Cab Pickup,20,14,5657,29835 +Ford,Explorer Sport Trac,2009,regular unleaded,292,8,AUTOMATIC,four wheel drive,4,Crossover,Compact,Crew Cab Pickup,19,14,5657,29820 +Ford,Explorer Sport Trac,2009,regular unleaded,292,8,AUTOMATIC,rear wheel drive,4,Crossover,Compact,Crew Cab Pickup,21,15,5657,31145 +Ford,Explorer Sport Trac,2009,regular unleaded,292,8,AUTOMATIC,rear wheel drive,4,Crossover,Compact,Crew Cab Pickup,21,15,5657,27295 +Ford,Explorer Sport Trac,2009,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Crossover,Compact,Crew Cab Pickup,19,13,5657,32360 +Ford,Explorer Sport Trac,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Crossover,Compact,Crew Cab Pickup,20,14,5657,25985 +Ford,Explorer Sport Trac,2009,regular unleaded,210,6,AUTOMATIC,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,19,13,5657,32360 +Ford,Explorer Sport Trac,2010,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Crossover,Compact,Crew Cab Pickup,20,14,5657,33065 +Ford,Explorer Sport Trac,2010,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Crossover,Compact,Crew Cab Pickup,19,13,5657,35590 +Ford,Explorer Sport Trac,2010,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Crossover,Compact,Crew Cab Pickup,20,14,5657,28210 +Ford,Explorer Sport Trac,2010,regular unleaded,210,6,AUTOMATIC,all wheel drive,4,Crossover,Compact,Crew Cab Pickup,19,13,5657,35590 +Ford,Explorer Sport Trac,2010,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Crossover,Compact,Crew Cab Pickup,19,13,5657,30735 +Ford,Explorer Sport,2001,regular unleaded,203,6,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,18,14,5657,24055 +Ford,Explorer Sport,2001,regular unleaded,203,6,MANUAL,rear wheel drive,2,N/A,Midsize,2dr SUV,20,16,5657,21035 +Ford,Explorer Sport,2002,regular unleaded,203,6,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,20,15,5657,24615 +Ford,Explorer Sport,2002,regular unleaded,203,6,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,18,14,5657,24240 +Ford,Explorer Sport,2002,regular unleaded,203,6,MANUAL,rear wheel drive,2,N/A,Midsize,2dr SUV,20,16,5657,21220 +Ford,Explorer Sport,2002,regular unleaded,203,6,AUTOMATIC,four wheel drive,2,N/A,Midsize,2dr SUV,18,13,5657,26075 +Ford,Explorer Sport,2002,regular unleaded,203,6,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,20,15,5657,22265 +Ford,Explorer Sport,2002,regular unleaded,203,6,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,20,15,5657,23055 +Ford,Explorer Sport,2002,regular unleaded,203,6,AUTOMATIC,four wheel drive,2,N/A,Midsize,2dr SUV,18,13,5657,27780 +Ford,Explorer Sport,2002,regular unleaded,203,6,AUTOMATIC,four wheel drive,2,N/A,Midsize,2dr SUV,18,13,5657,25285 +Ford,Explorer Sport,2003,regular unleaded,203,6,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,19,14,5657,23835 +Ford,Explorer Sport,2003,regular unleaded,203,6,AUTOMATIC,four wheel drive,2,N/A,Midsize,2dr SUV,18,14,5657,25565 +Ford,Explorer Sport,2003,regular unleaded,203,6,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,19,14,5657,22545 +Ford,Explorer Sport,2003,regular unleaded,203,6,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,19,14,5657,25595 +Ford,Explorer Sport,2003,regular unleaded,203,6,AUTOMATIC,four wheel drive,2,N/A,Midsize,2dr SUV,18,14,5657,28760 +Ford,Explorer Sport,2003,regular unleaded,203,6,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,17,14,5657,24890 +Ford,Explorer Sport,2003,regular unleaded,203,6,AUTOMATIC,four wheel drive,2,N/A,Midsize,2dr SUV,18,14,5657,26915 +Ford,Explorer Sport,2003,regular unleaded,203,6,MANUAL,rear wheel drive,2,N/A,Midsize,2dr SUV,20,15,5657,21870 +Ford,Explorer,2015,flex-fuel (unleaded/E85),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel,Performance",Midsize,4dr SUV,24,17,5657,33000 +Ford,Explorer,2015,flex-fuel (unleaded/E85),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel,Performance",Midsize,4dr SUV,23,17,5657,40200 +Ford,Explorer,2015,flex-fuel (unleaded/E85),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel,Performance",Midsize,4dr SUV,24,17,5657,38200 +Ford,Explorer,2015,flex-fuel (unleaded/E85),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,23,17,5657,32700 +Ford,Explorer,2015,flex-fuel (unleaded/E85),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,24,17,5657,30700 +Ford,Explorer,2015,regular unleaded,365,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,22,16,5657,43100 +Ford,Explorer,2015,flex-fuel (unleaded/E85),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel,Performance",Midsize,4dr SUV,23,17,5657,35000 +Ford,Explorer,2016,flex-fuel (unleaded/E85),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,23,16,5657,35400 +Ford,Explorer,2016,flex-fuel (unleaded/E85),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,24,17,5657,41300 +Ford,Explorer,2016,regular unleaded,365,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,16,5657,52970 +Ford,Explorer,2016,regular unleaded,365,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,16,5657,43500 +Ford,Explorer,2016,flex-fuel (unleaded/E85),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,24,17,5657,31050 +Ford,Explorer,2016,flex-fuel (unleaded/E85),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,23,16,5657,33050 +Ford,Explorer,2016,flex-fuel (unleaded/E85),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,23,16,5657,43300 +Ford,Explorer,2016,flex-fuel (unleaded/E85),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,24,17,5657,33400 +Ford,Explorer,2017,regular unleaded,365,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,22,16,5657,53235 +Ford,Explorer,2017,flex-fuel (unleaded/E85),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,23,16,5657,33310 +Ford,Explorer,2017,regular unleaded,280,4,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel,Performance",Midsize,4dr SUV,27,19,5657,41525 +Ford,Explorer,2017,flex-fuel (unleaded/E85),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,24,17,5657,33625 +Ford,Explorer,2017,flex-fuel (unleaded/E85),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,24,17,5657,31160 +Ford,Explorer,2017,regular unleaded,365,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,22,16,5657,45205 +Ford,Explorer,2017,flex-fuel (unleaded/E85),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,23,16,5657,35775 +Ford,Explorer,2017,regular unleaded,280,4,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel,Performance",Midsize,4dr SUV,25,18,5657,43675 +Mitsubishi,Expo,1993,regular unleaded,136,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,26,19,436,2000 +Mitsubishi,Expo,1993,regular unleaded,136,4,MANUAL,four wheel drive,2,Hatchback,Compact,2dr Hatchback,22,17,436,2000 +Mitsubishi,Expo,1993,regular unleaded,113,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,26,21,436,2000 +Mitsubishi,Expo,1993,regular unleaded,136,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,26,19,436,2000 +Mitsubishi,Expo,1993,regular unleaded,136,4,MANUAL,four wheel drive,4,Hatchback,Compact,4dr Hatchback,22,17,436,2000 +Mitsubishi,Expo,1993,regular unleaded,136,4,MANUAL,four wheel drive,4,Hatchback,Compact,4dr Hatchback,22,17,436,2000 +Mitsubishi,Expo,1993,regular unleaded,136,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,26,19,436,2000 +Mitsubishi,Expo,1994,regular unleaded,136,4,MANUAL,four wheel drive,4,Hatchback,Compact,4dr Hatchback,22,18,436,2000 +Mitsubishi,Expo,1994,regular unleaded,136,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,24,18,436,2000 +Mitsubishi,Expo,1994,regular unleaded,113,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,27,21,436,2000 +Mitsubishi,Expo,1994,regular unleaded,136,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,25,19,436,2000 +Mitsubishi,Expo,1994,regular unleaded,136,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,25,19,436,2000 +Mitsubishi,Expo,1995,regular unleaded,136,4,AUTOMATIC,four wheel drive,4,Hatchback,Compact,4dr Hatchback,21,17,436,2000 +Mitsubishi,Expo,1995,regular unleaded,136,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,24,18,436,2000 +Chevrolet,Express Cargo,2014,flex-fuel (unleaded/E85),310,8,AUTOMATIC,all wheel drive,3,Flex Fuel,Midsize,Cargo Van,17,13,1385,32760 +Chevrolet,Express Cargo,2014,regular unleaded,195,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,19,14,1385,27710 +Chevrolet,Express,2014,flex-fuel (unleaded/E85),310,8,AUTOMATIC,all wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,13,1385,34525 +Chevrolet,Express,2014,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,11,1385,34160 +Chevrolet,Express,2014,flex-fuel (unleaded/E85),310,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,13,1385,30970 +Chevrolet,Express,2014,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,17,11,1385,36030 +Chevrolet,Express,2014,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,11,1385,31865 +Chevrolet,Express,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,11,1385,32190 +Chevrolet,Express,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,11,1385,34485 +Chevrolet,Express,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,11,1385,35915 +Chevrolet,Express,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,17,11,1385,36700 +Chevrolet,Express,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,17,11,1385,36355 +Chevrolet,Express,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,11,1385,34015 +Chevrolet,Express,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,16,11,1385,37500 +Chevrolet,Express,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,16,11,1385,32990 +Chevrolet,Express,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,16,11,1385,35285 +Chevrolet,Express,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,16,11,1385,36715 +Chevrolet,Express,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,16,11,1385,34815 +Chevrolet,Express,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,16,11,1385,37155 +Ford,F-150 Heritage,2004,regular unleaded,202,6,MANUAL,rear wheel drive,4,N/A,Large,Extended Cab Pickup,19,15,5657,22295 +Ford,F-150 Heritage,2004,regular unleaded,231,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,5657,26160 +Ford,F-150 Heritage,2004,regular unleaded,202,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,18,13,5657,23830 +Ford,F-150 Heritage,2004,regular unleaded,202,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,19,15,5657,22315 +Ford,F-150 Heritage,2004,regular unleaded,202,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,18,13,5657,25730 +Ford,F-150 Heritage,2004,regular unleaded,202,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,19,15,5657,20490 +Ford,F-150 Heritage,2004,regular unleaded,202,6,MANUAL,rear wheel drive,4,N/A,Large,Extended Cab Pickup,19,15,5657,25160 +Ford,F-150 Heritage,2004,regular unleaded,231,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,5657,26460 +Ford,F-150 Heritage,2004,regular unleaded,202,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,19,15,5657,22615 +Ford,F-150 Heritage,2004,regular unleaded,202,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,19,15,5657,23160 +Ford,F-150 Heritage,2004,regular unleaded,202,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,18,13,5657,26575 +Ford,F-150 Heritage,2004,regular unleaded,202,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,19,15,5657,19910 +Ford,F-150 Heritage,2004,regular unleaded,202,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,18,13,5657,26030 +Ford,F-150 Heritage,2004,regular unleaded,202,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,19,15,5657,19610 +Ford,F-150 Heritage,2004,regular unleaded,231,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,14,5657,22595 +Ford,F-150 Heritage,2004,regular unleaded,231,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,14,5657,25460 +Ford,F-150 Heritage,2004,regular unleaded,231,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,5657,28975 +Ford,F-150 Heritage,2004,regular unleaded,202,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,18,13,5657,23285 +Ford,F-150 Heritage,2004,regular unleaded,231,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,5657,29275 +Ford,F-150 Heritage,2004,regular unleaded,202,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,18,13,5657,22985 +Ford,F-150 SVT Lightning,1995,regular unleaded,240,8,AUTOMATIC,rear wheel drive,2,N/A,Large,Regular Cab Pickup,15,11,5657,4508 +Ford,F-150 SVT Lightning,1999,regular unleaded,360,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Performance",Large,Regular Cab Pickup,15,12,5657,5691 +Ford,F-150 SVT Lightning,2000,regular unleaded,360,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Performance",Large,Regular Cab Pickup,15,12,5657,5860 +Ford,F-150,2015,regular unleaded,325,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,18,5657,45090 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,25,18,5657,34205 +Ford,F-150,2015,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,26,19,5657,35310 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,25,18,5657,36555 +Ford,F-150,2015,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,55305 +Ford,F-150,2015,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,21,15,5657,43785 +Ford,F-150,2015,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,26,19,5657,39310 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,23,17,5657,30975 +Ford,F-150,2015,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,21,15,5657,39485 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,25,18,5657,31320 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,23,17,5657,33515 +Ford,F-150,2015,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,52545 +Ford,F-150,2015,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,21,15,5657,35360 +Ford,F-150,2015,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,26,19,5657,37665 +Ford,F-150,2015,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,26,19,5657,39610 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,17,5657,36055 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,25,18,5657,26030 +Ford,F-150,2015,flex-fuel (unleaded/E85),385,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,15,5657,51585 +Ford,F-150,2015,flex-fuel (unleaded/E85),385,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,49120 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,25,18,5657,31625 +Ford,F-150,2015,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,46140 +Ford,F-150,2015,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,26,19,5657,33655 +Ford,F-150,2015,flex-fuel (unleaded/E85),385,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,15,5657,49420 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,23,17,5657,37630 +Ford,F-150,2015,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,26,19,5657,41970 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,23,17,5657,34745 +Ford,F-150,2015,flex-fuel (unleaded/E85),385,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,15,5657,51885 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,23,17,5657,30675 +Ford,F-150,2015,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,26,19,5657,41670 +Ford,F-150,2015,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,52845 +Ford,F-150,2015,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,41840 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,25,18,5657,26330 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,25,18,5657,30090 +Ford,F-150,2015,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,26,19,5657,31200 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,25,18,5657,32545 +Ford,F-150,2015,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,55010 +Ford,F-150,2015,regular unleaded,325,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,23,18,5657,42735 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,23,17,5657,35045 +Ford,F-150,2015,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,37815 +Ford,F-150,2015,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,17,5657,40050 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,23,17,5657,31185 +Ford,F-150,2016,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,53775 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,25,18,5657,37140 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,25,18,5657,26540 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,25,18,5657,30600 +Ford,F-150,2016,flex-fuel (unleaded/E85),385,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,15,5657,52815 +Ford,F-150,2016,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,53475 +Ford,F-150,2016,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,56235 +Ford,F-150,2016,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,21,15,5657,40070 +Ford,F-150,2016,flex-fuel (unleaded/E85),385,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,50050 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,25,18,5657,31905 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,23,17,5657,35330 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,25,18,5657,26840 +Ford,F-150,2016,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,26,19,5657,34165 +Ford,F-150,2016,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,25,18,5657,58885 +Ford,F-150,2016,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,26,19,5657,35895 +Ford,F-150,2016,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,21,15,5657,35870 +Ford,F-150,2016,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,23,17,5657,62310 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,25,18,5657,34790 +Ford,F-150,2016,regular unleaded,325,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,23,18,5657,43490 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,25,18,5657,32210 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,17,5657,36565 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,23,17,5657,31485 +Ford,F-150,2016,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,26,19,5657,40365 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,25,18,5657,33055 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,23,17,5657,38215 +Ford,F-150,2016,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,26,19,5657,40065 +Ford,F-150,2016,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,26,19,5657,42725 +Ford,F-150,2016,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,26,19,5657,31710 +Ford,F-150,2016,regular unleaded,325,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,18,5657,45845 +Ford,F-150,2016,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,38325 +Ford,F-150,2016,flex-fuel (unleaded/E85),385,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,15,5657,50350 +Ford,F-150,2016,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,42425 +Ford,F-150,2016,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,55940 +Ford,F-150,2016,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,26,19,5657,42425 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,23,17,5657,34025 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,17,5657,40635 +Ford,F-150,2016,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,26,19,5657,38250 +Ford,F-150,2016,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,23,17,5657,35630 +Ford,F-150,2016,flex-fuel (unleaded/E85),385,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,15,5657,52515 +Ford,F-150,2016,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,21,15,5657,44540 +Ford,F-150,2016,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,46895 +Ford,F-150,2017,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,26,19,5657,31710 +Ford,F-150,2017,regular unleaded,450,6,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,18,15,5657,51310 +Ford,F-150,2017,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,56260 +Ford,F-150,2017,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,21,15,5657,40070 +Ford,F-150,2017,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,Performance,Large,Crew Cab Pickup,25,18,5657,59600 +Ford,F-150,2017,regular unleaded,450,6,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,18,15,5657,48325 +Ford,F-150,2017,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,26,19,5657,40365 +Ford,F-150,2017,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,46895 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,25,18,5657,26540 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,17,5657,36565 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,25,18,5657,31905 +Ford,F-150,2017,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,21,15,5657,44540 +Ford,F-150,2017,regular unleaded,325,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,18,5657,45845 +Ford,F-150,2017,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,38325 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,23,17,5657,31185 +Ford,F-150,2017,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,26,19,5657,40065 +Ford,F-150,2017,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,53704 +Ford,F-150,2017,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,54004 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,25,18,5657,35055 +Ford,F-150,2017,flex-fuel (unleaded/E85),385,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,15,5657,52835 +Ford,F-150,2017,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,42425 +Ford,F-150,2017,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,21,15,5657,56555 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,23,17,5657,35630 +Ford,F-150,2017,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,26,19,5657,34165 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,23,17,5657,31485 +Ford,F-150,2017,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,26,19,5657,35895 +Ford,F-150,2017,flex-fuel (unleaded/E85),385,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,15,5657,50280 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,23,17,5657,38215 +Ford,F-150,2017,flex-fuel (unleaded/E85),385,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,21,15,5657,35870 +Ford,F-150,2017,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,26,19,5657,42425 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,25,18,5657,26840 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,23,17,5657,35330 +Ford,F-150,2017,regular unleaded,325,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,23,18,5657,43490 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,25,18,5657,32210 +Ford,F-150,2017,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,26,19,5657,42725 +Ford,F-150,2017,flex-fuel (unleaded/E85),385,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,15,5657,50580 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,25,18,5657,37140 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,25,18,5657,34790 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,25,18,5657,30600 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,23,17,5657,34025 +Ford,F-150,2017,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,Performance,Large,Crew Cab Pickup,23,17,5657,63025 +Ford,F-150,2017,regular unleaded,325,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,26,19,5657,38250 +Ford,F-150,2017,flex-fuel (unleaded/E85),282,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,17,5657,40635 +Ford,F-150,2017,flex-fuel (unleaded/E85),385,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,15,5657,53135 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,5657,3104 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,5657,2862 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,four wheel drive,3,N/A,Large,Extended Cab Pickup,17,12,5657,3433 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,four wheel drive,3,N/A,Large,Extended Cab Pickup,17,12,5657,3215 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,four wheel drive,3,N/A,Large,Extended Cab Pickup,17,12,5657,3059 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,5657,3214 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,rear wheel drive,3,N/A,Large,Extended Cab Pickup,17,12,5657,3241 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,5657,2956 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,5657,3394 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,rear wheel drive,3,N/A,Large,Extended Cab Pickup,17,12,5657,2836 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,5657,2529 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,5657,2577 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,rear wheel drive,3,N/A,Large,Extended Cab Pickup,17,12,5657,2787 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,5657,3008 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,rear wheel drive,3,N/A,Large,Extended Cab Pickup,17,12,5657,3156 +Ford,F-250,1997,regular unleaded,220,8,MANUAL,four wheel drive,3,N/A,Large,Extended Cab Pickup,17,12,5657,3431 +Ford,F-250,1998,regular unleaded,220,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,13,5657,3338 +Ford,F-250,1998,regular unleaded,220,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Extended Cab Pickup,18,13,5657,3138 +Ford,F-250,1998,regular unleaded,220,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Extended Cab Pickup,18,13,5657,3096 +Ford,F-250,1998,regular unleaded,220,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Extended Cab Pickup,18,13,5657,3535 +Ford,F-250,1998,regular unleaded,220,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,16,13,5657,3733 +Ford,F-250,1998,regular unleaded,220,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,16,13,5657,3487 +Ford,F-250,1998,regular unleaded,220,8,MANUAL,four wheel drive,3,N/A,Large,Extended Cab Pickup,16,13,5657,3269 +Ford,F-250,1998,regular unleaded,220,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,13,5657,2843 +Ford,F-250,1998,regular unleaded,220,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Extended Cab Pickup,18,13,5657,3395 +Ford,F-250,1998,regular unleaded,220,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,16,13,5657,3099 +Ford,F-250,1998,regular unleaded,220,8,MANUAL,four wheel drive,3,N/A,Large,Extended Cab Pickup,16,13,5657,3471 +Ford,F-250,1998,regular unleaded,220,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,13,5657,3199 +Ford,F-250,1998,regular unleaded,220,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,13,5657,2817 +Ford,F-250,1998,regular unleaded,220,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,16,13,5657,3223 +Ford,F-250,1998,regular unleaded,220,8,MANUAL,four wheel drive,3,N/A,Large,Extended Cab Pickup,16,13,5657,3764 +Ford,F-250,1998,regular unleaded,220,8,MANUAL,four wheel drive,3,N/A,Large,Extended Cab Pickup,16,13,5657,3822 +Ford,F-250,1999,regular unleaded,220,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,13,5657,3251 +Ford,F-250,1999,regular unleaded,220,8,AUTOMATIC,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,5657,3550 +Ford,F-250,1999,regular unleaded,220,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,16,12,5657,3269 +Ford,F-250,1999,regular unleaded,220,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,15,12,5657,4078 +Ford,F-250,1999,regular unleaded,220,8,MANUAL,rear wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,5657,3241 +Ford,F-250,1999,regular unleaded,220,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,16,12,5657,3583 +Ford,F-250,1999,regular unleaded,220,8,MANUAL,four wheel drive,4,N/A,Large,Extended Cab Pickup,16,12,5657,3542 +Ford,F-250,1999,regular unleaded,220,8,MANUAL,rear wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,5657,3560 +Ford,F-250,1999,regular unleaded,220,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,13,5657,2922 +Ford,F-250,1999,regular unleaded,220,8,MANUAL,rear wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,5657,3188 +Ford,F-250,1999,regular unleaded,220,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,16,12,5657,3192 +Ford,F-250,1999,regular unleaded,220,8,AUTOMATIC,four wheel drive,2,N/A,Large,Regular Cab Pickup,15,12,5657,3878 +Ford,F-250,1999,regular unleaded,220,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,17,12,5657,3752 +Ford,F-250,1999,regular unleaded,220,8,MANUAL,four wheel drive,4,N/A,Large,Extended Cab Pickup,16,12,5657,3572 +Ford,F-250,1999,regular unleaded,220,8,MANUAL,four wheel drive,4,N/A,Large,Extended Cab Pickup,16,12,5657,3908 +Ford,F-250,1999,regular unleaded,220,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,13,5657,2923 +Ferrari,F12 Berlinetta,2013,premium unleaded (required),731,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,16,11,2774,315888 +Ferrari,F12 Berlinetta,2014,premium unleaded (required),731,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,16,11,2774,315888 +Ferrari,F12 Berlinetta,2015,premium unleaded (required),731,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,16,11,2774,319995 +Ferrari,F430,2007,premium unleaded (required),483,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,16,11,2774,173079 +Ferrari,F430,2007,premium unleaded (required),483,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,16,11,2774,211525 +Ferrari,F430,2007,premium unleaded (required),483,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Coupe,16,11,2774,234945 +Ferrari,F430,2007,premium unleaded (required),483,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,16,11,2774,184309 +Ferrari,F430,2007,premium unleaded (required),483,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,16,11,2774,201213 +Ferrari,F430,2008,premium unleaded (required),483,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,16,11,2774,199054 +Ferrari,F430,2008,premium unleaded (required),483,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,16,11,2774,217310 +Ferrari,F430,2008,premium unleaded (required),483,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,16,11,2774,228447 +Ferrari,F430,2008,premium unleaded (required),483,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,16,11,2774,186925 +Ferrari,F430,2009,premium unleaded (required),483,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,16,11,2774,200054 +Ferrari,F430,2009,premium unleaded (required),483,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,16,11,2774,218310 +Ferrari,F430,2009,premium unleaded (required),483,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,16,11,2774,187925 +Ferrari,F430,2009,premium unleaded (required),483,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,16,11,2774,229447 +Ford,Festiva,1991,regular unleaded,63,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,38,30,5657,2000 +Ford,Festiva,1991,regular unleaded,63,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,38,30,5657,2000 +Ford,Festiva,1992,regular unleaded,63,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,37,30,5657,2000 +Ford,Festiva,1992,regular unleaded,63,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,37,30,5657,2000 +Ford,Festiva,1993,regular unleaded,63,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,38,30,5657,2000 +Ford,Festiva,1993,regular unleaded,63,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,38,30,5657,2000 +Ferrari,FF,2013,premium unleaded (required),651,12,AUTOMATED_MANUAL,all wheel drive,,"Exotic,High-Performance",Large,Coupe,16,11,2774,295000 +Ferrari,FF,2014,premium unleaded (required),651,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Large,Coupe,16,11,2774,295000 +Ferrari,FF,2015,premium unleaded (required),651,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Large,Coupe,16,11,2774,295000 +Ford,Fiesta,2015,regular unleaded,120,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,28,5657,18405 +Ford,Fiesta,2015,regular unleaded,197,4,MANUAL,front wheel drive,4,"Hatchback,Factory Tuner,Performance",Compact,4dr Hatchback,35,26,5657,21435 +Ford,Fiesta,2015,regular unleaded,120,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,28,5657,15685 +Ford,Fiesta,2015,regular unleaded,120,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,28,5657,16085 +Ford,Fiesta,2015,regular unleaded,120,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,28,5657,14455 +Ford,Fiesta,2015,regular unleaded,120,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,28,5657,14855 +Ford,Fiesta,2015,regular unleaded,120,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,28,5657,18805 +Ford,Fiesta,2016,regular unleaded,120,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,5657,14880 +Ford,Fiesta,2016,regular unleaded,120,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,5657,16110 +Ford,Fiesta,2016,regular unleaded,120,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,5657,18830 +Ford,Fiesta,2016,regular unleaded,120,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,27,5657,15810 +Ford,Fiesta,2016,regular unleaded,120,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,27,5657,14580 +Ford,Fiesta,2016,regular unleaded,120,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,27,5657,18530 +Ford,Fiesta,2016,regular unleaded,197,4,MANUAL,front wheel drive,4,"Hatchback,Factory Tuner,Performance",Compact,4dr Hatchback,32,26,5657,21460 +Ford,Fiesta,2017,regular unleaded,120,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,5657,15660 +Ford,Fiesta,2017,regular unleaded,120,4,AUTOMATED_MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,27,5657,19420 +Ford,Fiesta,2017,regular unleaded,197,4,MANUAL,front wheel drive,4,"Hatchback,Factory Tuner,Performance",Compact,4dr Hatchback,32,26,5657,21610 +Ford,Fiesta,2017,regular unleaded,120,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,5657,14430 +Ford,Fiesta,2017,regular unleaded,120,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,27,5657,14130 +Ford,Fiesta,2017,regular unleaded,120,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,27,5657,15360 +Ford,Fiesta,2017,regular unleaded,120,4,AUTOMATED_MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,27,5657,19120 +Pontiac,Firebird,2000,regular unleaded,200,6,MANUAL,rear wheel drive,2,"Hatchback,Performance",Midsize,2dr Hatchback,28,17,210,4677 +Pontiac,Firebird,2000,regular unleaded,305,8,UNKNOWN,rear wheel drive,2,"Hatchback,Performance",Midsize,2dr Hatchback,23,15,210,6175 +Pontiac,Firebird,2000,regular unleaded,305,8,UNKNOWN,rear wheel drive,2,"Hatchback,Factory Tuner,Performance",Midsize,2dr Hatchback,23,15,210,8548 +Pontiac,Firebird,2000,regular unleaded,305,8,UNKNOWN,rear wheel drive,2,"Factory Tuner,Performance",Midsize,Convertible,23,15,210,9567 +Pontiac,Firebird,2000,regular unleaded,200,6,MANUAL,rear wheel drive,2,Performance,Midsize,Convertible,28,17,210,5844 +Pontiac,Firebird,2001,premium unleaded (required),310,8,AUTOMATIC,rear wheel drive,2,"Hatchback,Performance",Midsize,2dr Hatchback,23,16,210,24035 +Pontiac,Firebird,2001,regular unleaded,200,6,MANUAL,rear wheel drive,2,Performance,Midsize,Convertible,28,17,210,25475 +Pontiac,Firebird,2001,premium unleaded (required),310,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Performance",Midsize,Convertible,23,16,210,31215 +Pontiac,Firebird,2001,regular unleaded,200,6,MANUAL,rear wheel drive,2,"Hatchback,Performance",Midsize,2dr Hatchback,28,17,210,18855 +Pontiac,Firebird,2001,premium unleaded (required),310,8,AUTOMATIC,rear wheel drive,2,"Hatchback,Factory Tuner,Performance",Midsize,2dr Hatchback,23,16,210,27145 +Pontiac,Firebird,2002,premium unleaded (required),310,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Performance",Midsize,Convertible,23,16,210,32095 +Pontiac,Firebird,2002,premium unleaded (required),310,8,AUTOMATIC,rear wheel drive,2,"Hatchback,Performance",Midsize,2dr Hatchback,23,16,210,25995 +Pontiac,Firebird,2002,premium unleaded (required),310,8,AUTOMATIC,rear wheel drive,2,"Hatchback,Factory Tuner,Performance",Midsize,2dr Hatchback,23,16,210,28025 +Pontiac,Firebird,2002,regular unleaded,200,6,MANUAL,rear wheel drive,2,"Hatchback,Performance",Midsize,2dr Hatchback,29,17,210,20050 +Pontiac,Firebird,2002,regular unleaded,200,6,AUTOMATIC,rear wheel drive,2,N/A,Midsize,Convertible,28,17,210,26965 +Honda,Fit EV,2013,electric,,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,105,132,2202,36625 +Honda,Fit EV,2014,electric,,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,105,132,2202,36625 +Honda,Fit,2015,regular unleaded,130,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,29,2202,15650 +Honda,Fit,2015,regular unleaded,130,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,29,2202,17560 +Honda,Fit,2015,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,32,2202,19925 +Honda,Fit,2015,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,32,2202,20925 +Honda,Fit,2015,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,41,33,2202,16450 +Honda,Fit,2015,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,32,2202,18360 +Honda,Fit,2016,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,32,2202,21165 +Honda,Fit,2016,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,32,2202,20165 +Honda,Fit,2016,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,41,33,2202,16690 +Honda,Fit,2016,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,32,2202,18600 +Honda,Fit,2016,regular unleaded,130,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,29,2202,17800 +Honda,Fit,2016,regular unleaded,130,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,29,2202,15890 +Honda,Fit,2017,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,32,2202,20265 +Honda,Fit,2017,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,33,2202,16790 +Honda,Fit,2017,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,32,2202,21265 +Honda,Fit,2017,regular unleaded,130,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,29,2202,17900 +Honda,Fit,2017,regular unleaded,130,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,29,2202,15990 +Honda,Fit,2017,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,32,2202,18700 +Ford,Five Hundred,2005,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,19,5657,24165 +Ford,Five Hundred,2005,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,23,17,5657,23965 +Ford,Five Hundred,2005,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,19,5657,26290 +Ford,Five Hundred,2005,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,19,5657,22165 +Ford,Five Hundred,2005,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,23,17,5657,28090 +Ford,Five Hundred,2005,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,23,17,5657,25965 +Ford,Five Hundred,2006,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,19,5657,24230 +Ford,Five Hundred,2006,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,25,18,5657,22230 +Ford,Five Hundred,2006,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,23,17,5657,28230 +Ford,Five Hundred,2006,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,23,17,5657,24080 +Ford,Five Hundred,2006,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,19,5657,26380 +Ford,Five Hundred,2006,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,23,17,5657,26080 +Ford,Five Hundred,2007,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,23,17,5657,28460 +Ford,Five Hundred,2007,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,N/A,Large,Sedan,23,17,5657,24885 +Ford,Five Hundred,2007,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,19,5657,23035 +Ford,Five Hundred,2007,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,19,5657,26610 +Toyota,FJ Cruiser,2012,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,17,2031,27705 +Toyota,FJ Cruiser,2012,regular unleaded,260,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,18,15,2031,27295 +Toyota,FJ Cruiser,2012,regular unleaded,260,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,17,2031,26115 +Toyota,FJ Cruiser,2013,regular unleaded,260,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,16,2031,27030 +Toyota,FJ Cruiser,2013,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,17,2031,28620 +Toyota,FJ Cruiser,2013,regular unleaded,260,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,18,15,2031,28210 +Toyota,FJ Cruiser,2014,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,17,2031,29270 +Toyota,FJ Cruiser,2014,regular unleaded,260,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,16,2031,27680 +Toyota,FJ Cruiser,2014,regular unleaded,260,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,18,15,2031,28860 +Cadillac,Fleetwood,1994,regular unleaded,260,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,23,15,1624,2000 +Cadillac,Fleetwood,1995,regular unleaded,260,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,23,15,1624,2000 +Cadillac,Fleetwood,1996,regular unleaded,260,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,24,15,1624,2158 +Ford,Flex,2015,regular unleaded,287,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,25,18,5657,32100 +Ford,Flex,2015,regular unleaded,287,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,25,18,5657,29100 +Ford,Flex,2015,regular unleaded,287,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,25,18,5657,37700 +Ford,Flex,2015,regular unleaded,287,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,23,17,5657,39650 +Ford,Flex,2015,regular unleaded,287,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,23,17,5657,34050 +Ford,Flex,2015,premium unleaded (recommended),365,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Large,Wagon,23,16,5657,42400 +Ford,Flex,2016,premium unleaded (recommended),365,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,21,15,5657,42600 +Ford,Flex,2016,regular unleaded,287,6,AUTOMATIC,front wheel drive,4,"Crossover,Performance",Large,Wagon,23,16,5657,32300 +Ford,Flex,2016,regular unleaded,287,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,23,16,5657,29600 +Ford,Flex,2016,regular unleaded,287,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Large,Wagon,22,16,5657,34250 +Ford,Flex,2016,regular unleaded,287,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Large,Wagon,22,16,5657,39750 +Ford,Flex,2016,regular unleaded,287,6,AUTOMATIC,front wheel drive,4,"Crossover,Performance",Large,Wagon,23,16,5657,37800 +Ford,Flex,2017,premium unleaded (recommended),365,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,21,15,5657,43030 +Ford,Flex,2017,regular unleaded,287,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Large,Wagon,22,16,5657,40180 +Ford,Flex,2017,regular unleaded,287,6,AUTOMATIC,front wheel drive,4,"Crossover,Performance",Large,Wagon,23,16,5657,32730 +Ford,Flex,2017,regular unleaded,287,6,AUTOMATIC,front wheel drive,4,"Crossover,Performance",Large,Wagon,23,16,5657,38230 +Ford,Flex,2017,regular unleaded,287,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,23,16,5657,30025 +Ford,Flex,2017,regular unleaded,287,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Large,Wagon,22,16,5657,34680 +Bentley,Flying Spur,2014,flex-fuel (premium unleaded required/E85),616,12,AUTOMATIC,all wheel drive,4,"Exotic,Flex Fuel,Luxury,High-Performance",Large,Sedan,20,12,520,200500 +Bentley,Flying Spur,2015,flex-fuel (premium unleaded required/E85),616,12,AUTOMATIC,all wheel drive,4,"Exotic,Flex Fuel,Luxury,High-Performance",Large,Sedan,20,12,520,215800 +Bentley,Flying Spur,2015,premium unleaded (required),500,8,AUTOMATIC,all wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,24,14,520,195100 +Bentley,Flying Spur,2016,premium unleaded (required),500,8,AUTOMATIC,all wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,24,14,520,201000 +Bentley,Flying Spur,2016,premium unleaded (required),616,12,AUTOMATIC,all wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,20,12,520,222300 +Ford,Focus RS,2017,premium unleaded (recommended),350,4,MANUAL,all wheel drive,4,"Hatchback,Factory Tuner,High-Performance",Compact,4dr Hatchback,25,19,5657,36120 +Ford,Focus ST,2015,premium unleaded (recommended),252,4,MANUAL,front wheel drive,4,"Hatchback,Factory Tuner,Performance",Compact,4dr Hatchback,32,23,5657,24370 +Ford,Focus ST,2016,premium unleaded (recommended),252,4,MANUAL,front wheel drive,4,"Hatchback,Factory Tuner,Performance",Compact,4dr Hatchback,31,22,5657,24425 +Ford,Focus ST,2017,premium unleaded (recommended),252,4,MANUAL,front wheel drive,4,"Hatchback,Factory Tuner,Performance",Compact,4dr Hatchback,31,22,5657,24775 +Ford,Focus,2015,flex-fuel (unleaded/E85),160,4,MANUAL,front wheel drive,4,Flex Fuel,Compact,Sedan,36,26,5657,18460 +Ford,Focus,2015,flex-fuel (unleaded/E85),160,4,MANUAL,front wheel drive,4,"Hatchback,Flex Fuel",Compact,4dr Hatchback,36,26,5657,18960 +Ford,Focus,2015,flex-fuel (unleaded/E85),160,4,AUTOMATED_MANUAL,front wheel drive,4,Flex Fuel,Compact,Sedan,40,27,5657,23170 +Ford,Focus,2015,flex-fuel (unleaded/E85),160,4,MANUAL,front wheel drive,4,Flex Fuel,Compact,Sedan,36,26,5657,17170 +Ford,Focus,2015,flex-fuel (unleaded/E85),160,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Flex Fuel",Compact,4dr Hatchback,40,27,5657,23670 +Ford,Focus,2015,electric,,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,99,110,5657,29170 +Ford,Focus,2016,flex-fuel (unleaded/E85),160,4,MANUAL,front wheel drive,4,Flex Fuel,Compact,Sedan,36,26,5657,18515 +Ford,Focus,2016,flex-fuel (unleaded/E85),160,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Flex Fuel",Compact,4dr Hatchback,40,27,5657,23725 +Ford,Focus,2016,flex-fuel (unleaded/E85),160,4,AUTOMATED_MANUAL,front wheel drive,4,Flex Fuel,Compact,Sedan,40,27,5657,23225 +Ford,Focus,2016,electric,,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,99,110,5657,29170 +Ford,Focus,2016,flex-fuel (unleaded/E85),160,4,MANUAL,front wheel drive,4,"Hatchback,Flex Fuel",Compact,4dr Hatchback,36,26,5657,19015 +Ford,Focus,2016,flex-fuel (unleaded/E85),160,4,MANUAL,front wheel drive,4,Flex Fuel,Compact,Sedan,36,26,5657,17225 +Ford,Focus,2017,flex-fuel (unleaded/E85),160,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Flex Fuel",Compact,4dr Hatchback,40,27,5657,21675 +Ford,Focus,2017,regular unleaded,123,3,MANUAL,front wheel drive,4,N/A,Compact,Sedan,42,30,5657,18175 +Ford,Focus,2017,flex-fuel (unleaded/E85),160,4,MANUAL,front wheel drive,4,Flex Fuel,Compact,Sedan,36,26,5657,16775 +Ford,Focus,2017,flex-fuel (unleaded/E85),160,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Flex Fuel",Compact,4dr Hatchback,40,27,5657,24075 +Ford,Focus,2017,flex-fuel (unleaded/E85),160,4,AUTOMATED_MANUAL,front wheel drive,4,Flex Fuel,Compact,Sedan,40,27,5657,23575 +Ford,Focus,2017,flex-fuel (unleaded/E85),160,4,AUTOMATED_MANUAL,front wheel drive,4,Flex Fuel,Compact,Sedan,40,27,5657,21175 +Ford,Focus,2017,electric,,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,99,110,5657,29120 +Ford,Focus,2017,flex-fuel (unleaded/E85),160,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Flex Fuel",Compact,4dr Hatchback,40,27,5657,19765 +Suzuki,Forenza,2006,regular unleaded,126,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,19,481,16699 +Suzuki,Forenza,2006,regular unleaded,126,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,20,481,13799 +Suzuki,Forenza,2006,regular unleaded,126,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,27,19,481,14499 +Suzuki,Forenza,2006,regular unleaded,126,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,20,481,15099 +Suzuki,Forenza,2006,regular unleaded,126,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,19,481,15999 +Suzuki,Forenza,2006,regular unleaded,126,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,19,481,15399 +Suzuki,Forenza,2006,regular unleaded,126,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,19,481,14699 +Suzuki,Forenza,2006,regular unleaded,126,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,27,19,481,15799 +Suzuki,Forenza,2007,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,19,481,16349 +Suzuki,Forenza,2007,regular unleaded,127,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,27,19,481,14899 +Suzuki,Forenza,2007,regular unleaded,127,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,27,19,481,15399 +Suzuki,Forenza,2007,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,19,481,15099 +Suzuki,Forenza,2007,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,19,481,16499 +Suzuki,Forenza,2007,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,19,481,15449 +Suzuki,Forenza,2007,regular unleaded,127,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,20,481,13999 +Suzuki,Forenza,2007,regular unleaded,127,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,20,481,14349 +Suzuki,Forenza,2007,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,19,481,16049 +Suzuki,Forenza,2007,regular unleaded,127,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,20,481,14499 +Suzuki,Forenza,2007,regular unleaded,127,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,20,481,14949 +Suzuki,Forenza,2007,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,19,481,15999 +Suzuki,Forenza,2007,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,19,481,16949 +Suzuki,Forenza,2007,regular unleaded,127,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,27,19,481,15249 +Suzuki,Forenza,2007,regular unleaded,127,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,27,19,481,15849 +Suzuki,Forenza,2007,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,19,481,15599 +Suzuki,Forenza,2008,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,19,481,15589 +Suzuki,Forenza,2008,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,19,481,16489 +Suzuki,Forenza,2008,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,19,481,17689 +Suzuki,Forenza,2008,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,19,481,16989 +Suzuki,Forenza,2008,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,19,481,16089 +Suzuki,Forenza,2008,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,19,481,16789 +Suzuki,Forenza,2008,regular unleaded,127,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,20,481,14489 +Suzuki,Forenza,2008,regular unleaded,127,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,27,19,481,15889 +Suzuki,Forenza,2008,regular unleaded,127,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,20,481,14989 +Suzuki,Forenza,2008,regular unleaded,127,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,27,19,481,15389 +Subaru,Forester,2015,premium unleaded (required),250,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,23,640,33095 +Subaru,Forester,2015,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,24,640,25095 +Subaru,Forester,2015,regular unleaded,170,4,MANUAL,all wheel drive,4,Crossover,Midsize,4dr SUV,29,22,640,24595 +Subaru,Forester,2015,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,24,640,28095 +Subaru,Forester,2015,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,24,640,30095 +Subaru,Forester,2015,regular unleaded,170,4,MANUAL,all wheel drive,4,Crossover,Midsize,4dr SUV,29,22,640,22195 +Subaru,Forester,2015,premium unleaded (required),250,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,23,640,28495 +Subaru,Forester,2015,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,24,640,23195 +Subaru,Forester,2016,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,24,640,28795 +Subaru,Forester,2016,regular unleaded,170,4,MANUAL,all wheel drive,4,Crossover,Midsize,4dr SUV,29,22,640,25295 +Subaru,Forester,2016,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,24,640,23395 +Subaru,Forester,2016,premium unleaded (required),250,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,23,640,29195 +Subaru,Forester,2016,regular unleaded,170,4,MANUAL,all wheel drive,4,Crossover,Midsize,4dr SUV,29,22,640,22395 +Subaru,Forester,2016,premium unleaded (required),250,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,23,640,33795 +Subaru,Forester,2016,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,24,640,25795 +Subaru,Forester,2016,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,24,640,30795 +Subaru,Forester,2017,premium unleaded (required),250,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,27,23,640,34295 +Subaru,Forester,2017,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,26,640,25995 +Subaru,Forester,2017,premium unleaded (required),250,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,27,23,640,29295 +Subaru,Forester,2017,regular unleaded,170,4,MANUAL,all wheel drive,4,Crossover,Midsize,4dr SUV,28,22,640,25495 +Subaru,Forester,2017,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,26,640,29195 +Subaru,Forester,2017,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,26,640,31295 +Subaru,Forester,2017,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,26,640,23595 +Subaru,Forester,2017,regular unleaded,170,4,MANUAL,all wheel drive,4,Crossover,Midsize,4dr SUV,28,22,640,22595 +Kia,Forte,2015,regular unleaded,173,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,34,25,1720,19590 +Kia,Forte,2015,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,36,25,1720,19390 +Kia,Forte,2015,regular unleaded,173,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,24,1720,18590 +Kia,Forte,2015,regular unleaded,201,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,29,21,1720,20890 +Kia,Forte,2015,regular unleaded,201,4,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,29,21,1720,21890 +Kia,Forte,2015,regular unleaded,145,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,39,26,1720,17490 +Kia,Forte,2015,regular unleaded,145,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,25,1720,15890 +Kia,Forte,2015,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,33,25,1720,19690 +Kia,Forte,2015,regular unleaded,201,4,MANUAL,front wheel drive,2,Performance,Compact,Coupe,29,22,1720,20590 +Kia,Forte,2015,regular unleaded,201,4,AUTOMATIC,front wheel drive,2,Performance,Compact,Coupe,30,22,1720,21590 +Kia,Forte,2016,regular unleaded,201,4,MANUAL,front wheel drive,2,Performance,Compact,Coupe,29,22,1720,20690 +Kia,Forte,2016,regular unleaded,145,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,25,1720,15990 +Kia,Forte,2016,regular unleaded,201,4,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,29,21,1720,21990 +Kia,Forte,2016,regular unleaded,201,4,AUTOMATIC,front wheel drive,2,Performance,Compact,Coupe,30,22,1720,21690 +Kia,Forte,2016,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,33,25,1720,18090 +Kia,Forte,2016,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,25,1720,20390 +Kia,Forte,2016,regular unleaded,173,4,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,34,25,1720,19890 +Kia,Forte,2016,regular unleaded,145,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,39,26,1720,17700 +Kia,Forte,2016,regular unleaded,201,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,29,21,1720,20990 +Kia,Forte,2016,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Performance,Compact,Sedan,35,24,1720,19990 +Kia,Forte,2017,regular unleaded,147,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,29,1720,17500 +Kia,Forte,2017,regular unleaded,147,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,38,29,1720,19200 +Kia,Forte,2017,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,33,25,1720,21200 +Kia,Forte,2017,regular unleaded,147,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,34,25,1720,16490 +Kia,Forte,2017,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,25,1720,18090 +Kia,Forte,2017,regular unleaded,201,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,29,23,1720,25890 +Kia,Forte,2017,regular unleaded,201,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,30,25,1720,23690 +Kia,Forte,2017,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,25,1720,21990 +Volkswagen,Fox,1991,regular unleaded,81,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,22,873,2000 +Volkswagen,Fox,1991,regular unleaded,81,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,29,22,873,2000 +Volkswagen,Fox,1992,regular unleaded,81,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,29,22,873,2000 +Volkswagen,Fox,1992,regular unleaded,81,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,22,873,2000 +Volkswagen,Fox,1993,regular unleaded,81,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,22,873,2000 +Volkswagen,Fox,1993,regular unleaded,81,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,22,873,2000 +Volkswagen,Fox,1993,regular unleaded,81,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,22,873,2000 +Scion,FR-S,2014,premium unleaded (required),200,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,30,22,105,24700 +Scion,FR-S,2014,premium unleaded (required),200,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Coupe,34,25,105,28500 +Scion,FR-S,2014,premium unleaded (required),200,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,30,22,105,27400 +Scion,FR-S,2014,premium unleaded (required),200,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Coupe,34,25,105,25800 +Scion,FR-S,2015,premium unleaded (required),200,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Coupe,34,25,105,31090 +Scion,FR-S,2015,premium unleaded (required),200,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Coupe,34,25,105,26000 +Scion,FR-S,2015,premium unleaded (required),200,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,30,22,105,24900 +Scion,FR-S,2015,premium unleaded (required),200,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,30,22,105,29990 +Scion,FR-S,2016,premium unleaded (required),200,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,30,22,105,25305 +Scion,FR-S,2016,premium unleaded (required),200,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Coupe,34,25,105,30610 +Scion,FR-S,2016,premium unleaded (required),200,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,30,22,105,29510 +Scion,FR-S,2016,premium unleaded (required),200,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Coupe,34,25,105,26405 +Land Rover,Freelander,2003,regular unleaded,174,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,19,15,258,24975 +Land Rover,Freelander,2003,regular unleaded,174,6,AUTOMATIC,all wheel drive,2,"Crossover,Luxury",Compact,2dr SUV,19,15,258,26370 +Land Rover,Freelander,2003,regular unleaded,174,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,19,15,258,31575 +Land Rover,Freelander,2003,regular unleaded,174,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,19,15,258,27775 +Land Rover,Freelander,2004,regular unleaded,174,6,AUTOMATIC,all wheel drive,2,"Crossover,Luxury",Compact,2dr SUV,19,16,258,26330 +Land Rover,Freelander,2004,regular unleaded,174,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,19,16,258,28330 +Land Rover,Freelander,2004,regular unleaded,174,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,19,16,258,25330 +Land Rover,Freelander,2005,regular unleaded,174,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,19,16,258,26830 +Land Rover,Freelander,2005,regular unleaded,174,6,AUTOMATIC,all wheel drive,2,"Crossover,Luxury",Compact,2dr SUV,19,16,258,26830 +Ford,Freestar,2005,regular unleaded,,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,5657,28030 +Ford,Freestar,2005,regular unleaded,,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,5657,23930 +Ford,Freestar,2005,regular unleaded,,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Cargo Minivan,22,16,5657,21630 +Ford,Freestar,2005,regular unleaded,,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,5657,26530 +Ford,Freestar,2005,regular unleaded,,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,21,16,5657,29030 +Ford,Freestar,2005,regular unleaded,,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,21,16,5657,32755 +Ford,Freestar,2006,regular unleaded,193,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Cargo Minivan,22,16,5657,19650 +Ford,Freestar,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,21,15,5657,29575 +Ford,Freestar,2006,regular unleaded,193,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,5657,23655 +Ford,Freestar,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,21,15,5657,26615 +Ford,Freestar,2007,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,21,15,5657,26665 +Ford,Freestar,2007,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,21,15,5657,23705 +Ford,Freestar,2007,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,21,15,5657,29575 +Ford,Freestar,2007,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Cargo Minivan,21,15,5657,19700 +Ford,Freestyle,2005,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,25,18,5657,28440 +Ford,Freestyle,2005,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,17,5657,30440 +Ford,Freestyle,2005,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,25,18,5657,25040 +Ford,Freestyle,2005,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,17,5657,26840 +Ford,Freestyle,2005,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,25,18,5657,26440 +Ford,Freestyle,2005,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,17,5657,28240 +Ford,Freestyle,2006,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,17,5657,28355 +Ford,Freestyle,2006,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,25,18,5657,26505 +Ford,Freestyle,2006,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,25,18,5657,25105 +Ford,Freestyle,2006,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,17,5657,30580 +Ford,Freestyle,2006,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,17,5657,26955 +Ford,Freestyle,2006,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,25,18,5657,28530 +Ford,Freestyle,2007,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,17,5657,27770 +Ford,Freestyle,2007,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,25,18,5657,29205 +Ford,Freestyle,2007,regular unleaded,203,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,17,5657,31055 +Ford,Freestyle,2007,regular unleaded,203,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,25,18,5657,25920 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,32560 +Nissan,Frontier,2015,regular unleaded,152,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,17,2009,20660 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,22,16,2009,25510 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,34010 +Nissan,Frontier,2015,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,2009,31510 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,32560 +Nissan,Frontier,2015,regular unleaded,261,6,MANUAL,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,22,16,2009,25860 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,26450 +Nissan,Frontier,2015,regular unleaded,152,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,17,2009,23020 +Nissan,Frontier,2015,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,21,16,2009,27240 +Nissan,Frontier,2015,regular unleaded,152,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,19,2009,17990 +Nissan,Frontier,2015,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,21,16,2009,30550 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,22,16,2009,24190 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,22,16,2009,23750 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,28050 +Nissan,Frontier,2015,regular unleaded,152,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,19,2009,21970 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,31360 +Nissan,Frontier,2015,regular unleaded,261,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,22,16,2009,24540 +Nissan,Frontier,2015,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,2009,25400 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,22,16,2009,25350 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,22,16,2009,23610 +Nissan,Frontier,2015,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,2009,28560 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,21,15,2009,26310 +Nissan,Frontier,2015,regular unleaded,261,6,MANUAL,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,22,16,2009,22700 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,35260 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,22,16,2009,24630 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,27630 +Nissan,Frontier,2015,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,21,15,2009,31750 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,26750 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,22,16,2009,25840 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,32890 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,22,16,2009,24050 +Nissan,Frontier,2016,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,2009,31840 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,22,16,2009,24960 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,21,15,2009,26640 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,35590 +Nissan,Frontier,2016,regular unleaded,261,6,MANUAL,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,22,17,2009,23000 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,21,15,2009,32080 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,34360 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,28380 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,22,16,2009,25680 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,22,16,2009,23940 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,22,16,2009,24520 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,22,16,2009,31690 +Nissan,Frontier,2016,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,2009,28910 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,35610 +Nissan,Frontier,2016,regular unleaded,152,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,19,2009,18290 +Nissan,Frontier,2016,regular unleaded,152,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,17,2009,23230 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,34340 +Nissan,Frontier,2016,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,2009,28890 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,22,16,2009,31710 +Nissan,Frontier,2016,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,27960 +Nissan,Frontier,2016,regular unleaded,152,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,17,2009,20960 +Nissan,Frontier,2016,regular unleaded,152,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,19,2009,22180 +Nissan,Frontier,2017,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,23,16,2009,25750 +Nissan,Frontier,2017,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,2009,32340 +Nissan,Frontier,2017,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,21,15,2009,27320 +Nissan,Frontier,2017,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,23,16,2009,26470 +Nissan,Frontier,2017,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,27650 +Nissan,Frontier,2017,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,29170 +Nissan,Frontier,2017,regular unleaded,152,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,19,2009,18390 +Nissan,Frontier,2017,regular unleaded,152,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,22,17,2009,22160 +Nissan,Frontier,2017,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,23,16,2009,24950 +Nissan,Frontier,2017,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,23,16,2009,26630 +Nissan,Frontier,2017,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,33390 +Nissan,Frontier,2017,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,35160 +Nissan,Frontier,2017,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,28750 +Nissan,Frontier,2017,regular unleaded,152,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,22,17,2009,23910 +Nissan,Frontier,2017,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,21,15,2009,32580 +Nissan,Frontier,2017,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,2009,29700 +Nissan,Frontier,2017,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,15,2009,36410 +Nissan,Frontier,2017,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,16,2009,25200 +Nissan,Frontier,2017,regular unleaded,261,6,MANUAL,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,22,16,2009,23900 +Nissan,Frontier,2017,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,16,2009,24620 +Nissan,Frontier,2017,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,23,16,2009,32510 +Nissan,Frontier,2017,regular unleaded,152,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,19,2009,22860 +Ford,Fusion Hybrid,2015,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,41,44,5657,27380 +Ford,Fusion Hybrid,2015,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,41,44,5657,26575 +Ford,Fusion Hybrid,2015,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,41,44,5657,32330 +Ford,Fusion Hybrid,2016,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,41,44,5657,31430 +Ford,Fusion Hybrid,2016,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,41,44,5657,26480 +Ford,Fusion Hybrid,2016,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,41,44,5657,25675 +Ford,Fusion Hybrid,2017,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,41,43,5657,37020 +Ford,Fusion Hybrid,2017,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,41,43,5657,31010 +Ford,Fusion Hybrid,2017,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,41,43,5657,25675 +Ford,Fusion Hybrid,2017,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,41,43,5657,26480 +Ford,Fusion,2015,regular unleaded,231,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,31,22,5657,27830 +Ford,Fusion,2015,regular unleaded,231,4,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,31,22,5657,32780 +Ford,Fusion,2015,regular unleaded,175,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,22,5657,24035 +Ford,Fusion,2015,regular unleaded,231,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,33,22,5657,30780 +Ford,Fusion,2015,regular unleaded,175,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,22,5657,22500 +Ford,Fusion,2016,regular unleaded,231,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,33,22,5657,31270 +Ford,Fusion,2016,regular unleaded,175,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,22,5657,22750 +Ford,Fusion,2016,regular unleaded,175,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,22,5657,24320 +Ford,Fusion,2016,regular unleaded,231,4,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,31,22,5657,33270 +Ford,Fusion,2016,regular unleaded,231,4,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,31,22,5657,28115 +Ford,Fusion,2017,regular unleaded,231,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,21,5657,30610 +Ford,Fusion,2017,regular unleaded,231,4,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,29,20,5657,27405 +Ford,Fusion,2017,regular unleaded,231,4,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,29,20,5657,32610 +Ford,Fusion,2017,regular unleaded,175,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,32,21,5657,22610 +Ford,Fusion,2017,regular unleaded,175,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,32,21,5657,23610 +Ford,Fusion,2017,regular unleaded,231,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,21,5657,36620 +Ford,Fusion,2017,regular unleaded,231,4,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,29,20,5657,38620 +Infiniti,FX35,2008,premium unleaded (required),275,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,20,15,190,39550 +Infiniti,FX35,2008,premium unleaded (required),275,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,22,15,190,38050 +Infiniti,FX35,2009,premium unleaded (required),303,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,190,42150 +Infiniti,FX35,2009,premium unleaded (required),303,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,21,16,190,43600 +Infiniti,FX35,2010,premium unleaded (required),303,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,190,42850 +Infiniti,FX35,2010,premium unleaded (required),303,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,21,16,190,44300 +Infiniti,FX45,2006,premium unleaded (required),320,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,17,13,190,49750 +Infiniti,FX45,2007,premium unleaded (required),320,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,17,13,190,49850 +Infiniti,FX45,2008,premium unleaded (required),320,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,17,13,190,50100 +Infiniti,FX50,2009,premium unleaded (required),390,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,High-Performance",Midsize,4dr SUV,20,14,190,58400 +Infiniti,FX50,2010,premium unleaded (required),390,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,High-Performance",Midsize,4dr SUV,20,14,190,59000 +Infiniti,FX,2011,premium unleaded (required),303,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,21,16,190,44050 +Infiniti,FX,2011,premium unleaded (required),303,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,190,42600 +Infiniti,FX,2011,premium unleaded (required),390,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,20,14,190,57600 +Infiniti,FX,2012,premium unleaded (required),303,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,190,43700 +Infiniti,FX,2012,premium unleaded (required),390,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,High-Performance",Midsize,4dr SUV,20,14,190,59800 +Infiniti,FX,2012,premium unleaded (required),303,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,21,16,190,52000 +Infiniti,FX,2012,premium unleaded (required),303,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,21,16,190,45150 +Infiniti,FX,2013,premium unleaded (required),325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,22,16,190,53400 +Infiniti,FX,2013,premium unleaded (required),325,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,190,44950 +Infiniti,FX,2013,premium unleaded (required),390,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,High-Performance",Midsize,4dr SUV,20,14,190,61500 +Infiniti,FX,2013,premium unleaded (required),325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,22,16,190,46400 +Mercedes-Benz,G-Class,2015,premium unleaded (required),382,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,15,12,617,115400 +Mercedes-Benz,G-Class,2015,premium unleaded (required),536,8,AUTOMATIC,four wheel drive,4,"Factory Tuner,Luxury",Midsize,4dr SUV,14,12,617,137100 +Mercedes-Benz,G-Class,2016,premium unleaded (required),416,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,14,13,617,119900 +Mercedes-Benz,G-Class,2016,premium unleaded (required),563,8,AUTOMATIC,four wheel drive,4,"Factory Tuner,Luxury",Midsize,4dr SUV,14,12,617,139900 +Mercedes-Benz,G-Class,2016,premium unleaded (required),621,12,AUTOMATIC,four wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,13,11,617,217900 +Infiniti,G Convertible,2011,premium unleaded (required),325,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,24,16,190,50200 +Infiniti,G Convertible,2011,premium unleaded (recommended),325,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,25,17,190,45750 +Infiniti,G Convertible,2011,premium unleaded (required),325,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,25,17,190,58000 +Infiniti,G Convertible,2012,premium unleaded (required),325,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,24,16,190,51300 +Infiniti,G Convertible,2012,premium unleaded (recommended),325,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,25,17,190,46650 +Infiniti,G Convertible,2013,premium unleaded (required),343,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,Performance",Midsize,Convertible,25,17,190,61450 +Infiniti,G Convertible,2013,premium unleaded (recommended),325,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,25,17,190,47900 +Infiniti,G Convertible,2013,premium unleaded (recommended),325,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,24,16,190,52750 +Infiniti,G Coupe,2011,premium unleaded (recommended),330,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,19,190,38600 +Infiniti,G Coupe,2011,premium unleaded (recommended),330,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,25,17,190,43350 +Infiniti,G Coupe,2011,premium unleaded (recommended),348,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,25,17,190,48900 +Infiniti,G Coupe,2011,premium unleaded (recommended),330,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,25,18,190,40250 +Infiniti,G Coupe,2011,premium unleaded (recommended),348,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,27,19,190,50800 +Infiniti,G Coupe,2011,premium unleaded (recommended),330,6,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,27,19,190,37150 +Infiniti,G Coupe,2012,premium unleaded (recommended),348,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,27,19,190,51700 +Infiniti,G Coupe,2012,premium unleaded (recommended),330,6,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,27,19,190,37800 +Infiniti,G Coupe,2012,premium unleaded (recommended),348,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,25,17,190,49800 +Infiniti,G Coupe,2012,premium unleaded (recommended),330,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,25,18,190,40900 +Infiniti,G Coupe,2012,premium unleaded (recommended),330,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,19,190,39250 +Infiniti,G Coupe,2012,premium unleaded (recommended),330,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,25,17,190,44200 +Infiniti,G Coupe,2013,premium unleaded (recommended),330,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,25,17,190,45500 +Infiniti,G Coupe,2013,premium unleaded (recommended),330,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,25,18,190,42050 +Infiniti,G Coupe,2013,premium unleaded (recommended),330,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,19,190,40400 +Infiniti,G Coupe,2013,premium unleaded (recommended),348,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,27,19,190,53100 +Infiniti,G Coupe,2013,premium unleaded (recommended),348,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,25,17,190,51200 +Infiniti,G Sedan,2011,premium unleaded (recommended),328,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,25,18,190,41550 +Infiniti,G Sedan,2011,premium unleaded (recommended),328,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,27,19,190,44150 +Infiniti,G Sedan,2011,premium unleaded (recommended),328,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,27,19,190,39950 +Infiniti,G Sedan,2011,premium unleaded (recommended),328,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,27,19,190,35800 +Infiniti,G Sedan,2011,premium unleaded (recommended),328,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,25,18,190,37400 +Infiniti,G Sedan,2011,premium unleaded (recommended),218,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,29,20,190,32000 +Infiniti,G Sedan,2011,premium unleaded (recommended),328,6,MANUAL,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,25,17,190,40200 +Infiniti,G Sedan,2011,premium unleaded (recommended),218,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,27,19,190,35000 +Infiniti,G Sedan,2011,premium unleaded (recommended),218,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,29,20,190,33400 +Infiniti,G Sedan,2011,premium unleaded (recommended),328,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,25,18,190,44750 +Infiniti,G Sedan,2012,premium unleaded (recommended),328,6,MANUAL,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,25,17,190,41500 +Infiniti,G Sedan,2012,premium unleaded (recommended),328,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,27,19,190,36900 +Infiniti,G Sedan,2012,premium unleaded (recommended),218,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,29,20,190,33100 +Infiniti,G Sedan,2012,premium unleaded (recommended),328,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,25,18,190,38500 +Infiniti,G Sedan,2012,premium unleaded (recommended),328,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,25,18,190,41850 +Infiniti,G Sedan,2012,premium unleaded (recommended),328,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,25,18,190,46050 +Infiniti,G Sedan,2012,premium unleaded (recommended),328,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,27,19,190,45450 +Infiniti,G Sedan,2012,premium unleaded (recommended),218,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,27,19,190,36100 +Infiniti,G Sedan,2012,premium unleaded (recommended),328,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,27,19,190,40250 +Infiniti,G Sedan,2012,premium unleaded (recommended),218,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,29,20,190,34500 +Infiniti,G Sedan,2013,premium unleaded (required),328,6,MANUAL,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,25,17,190,37150 +Infiniti,G Sedan,2013,premium unleaded (required),328,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,25,18,190,34550 +Infiniti,G Sedan,2013,premium unleaded (required),328,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,27,19,190,32950 +Infiniti,G20,2000,regular unleaded,145,4,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,29,21,190,2251 +Infiniti,G20,2000,regular unleaded,145,4,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,29,21,190,2449 +Infiniti,G20,2001,regular unleaded,145,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Sedan,28,20,190,22195 +Infiniti,G20,2001,regular unleaded,145,4,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,29,21,190,21395 +Infiniti,G20,2001,regular unleaded,145,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Sedan,28,20,190,24895 +Infiniti,G20,2001,regular unleaded,145,4,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,29,21,190,24095 +Infiniti,G20,2002,regular unleaded,145,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Sedan,23,20,190,22195 +Infiniti,G20,2002,regular unleaded,145,4,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,29,21,190,21395 +Infiniti,G35,2006,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,22,16,190,33250 +Infiniti,G35,2006,regular unleaded,298,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,24,17,190,33800 +Infiniti,G35,2006,regular unleaded,280,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,23,17,190,33200 +Infiniti,G35,2006,regular unleaded,280,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,23,17,190,31450 +Infiniti,G35,2006,regular unleaded,298,6,MANUAL,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,24,17,190,31200 +Infiniti,G35,2007,premium unleaded (required),275,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,23,16,190,33450 +Infiniti,G35,2007,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,24,17,190,33450 +Infiniti,G35,2007,premium unleaded (required),306,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,23,17,190,33950 +Infiniti,G35,2007,premium unleaded (required),293,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,23,17,190,34050 +Infiniti,G35,2007,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,24,17,190,31900 +Infiniti,G35,2007,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,24,17,190,31450 +Infiniti,G35,2007,premium unleaded (required),306,6,MANUAL,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,25,17,190,32250 +Infiniti,G35,2008,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,24,17,190,32250 +Infiniti,G35,2008,premium unleaded (required),306,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,23,17,190,34750 +Infiniti,G35,2008,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,190,32700 +Infiniti,G35,2008,premium unleaded (required),306,6,MANUAL,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,25,17,190,33050 +Infiniti,G37 Convertible,2010,premium unleaded (required),325,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,24,16,190,46950 +Infiniti,G37 Convertible,2010,premium unleaded (required),325,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,25,17,190,54900 +Infiniti,G37 Convertible,2010,premium unleaded (required),325,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,25,17,190,44350 +Infiniti,G37 Coupe,2010,premium unleaded (recommended),330,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,19,190,37500 +Infiniti,G37 Coupe,2010,premium unleaded (recommended),330,6,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,27,19,190,36050 +Infiniti,G37 Coupe,2010,premium unleaded (recommended),330,6,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Coupe,25,18,190,39150 +Infiniti,G37 Coupe,2010,premium unleaded (recommended),330,6,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,27,19,190,50550 +Infiniti,G37 Coupe,2010,premium unleaded (recommended),330,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,25,17,190,40400 +Infiniti,G37 Sedan,2010,premium unleaded (recommended),328,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,27,19,190,43350 +Infiniti,G37 Sedan,2010,premium unleaded (recommended),328,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,27,19,190,33250 +Infiniti,G37 Sedan,2010,premium unleaded (recommended),328,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,25,18,190,36050 +Infiniti,G37 Sedan,2010,premium unleaded (recommended),328,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,25,18,190,43550 +Infiniti,G37 Sedan,2010,premium unleaded (recommended),328,6,MANUAL,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,25,17,190,37000 +Infiniti,G37 Sedan,2010,premium unleaded (recommended),328,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,27,19,190,34450 +Infiniti,G37,2008,premium unleaded (required),330,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,24,18,190,35650 +Infiniti,G37,2008,premium unleaded (required),330,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,26,17,190,36200 +Infiniti,G37,2008,premium unleaded (required),330,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,24,18,190,34900 +Infiniti,G37,2009,premium unleaded (required),328,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,18,190,33700 +Infiniti,G37,2009,premium unleaded (required),328,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,26,18,190,33250 +Infiniti,G37,2009,premium unleaded (required),328,6,MANUAL,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,25,17,190,34250 +Infiniti,G37,2009,premium unleaded (required),325,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,25,17,190,43850 +Infiniti,G37,2009,premium unleaded (required),328,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,25,18,190,35750 +Infiniti,G37,2009,premium unleaded (required),330,6,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Coupe,25,18,190,38700 +Infiniti,G37,2009,premium unleaded (required),330,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,25,17,190,37000 +Infiniti,G37,2009,premium unleaded (required),330,6,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,26,18,190,35900 +Infiniti,G37,2009,premium unleaded (required),325,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,24,16,190,43900 +Infiniti,G37,2009,premium unleaded (required),330,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,26,18,190,36650 +Pontiac,G3,2009,regular unleaded,106,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,27,210,14335 +Pontiac,G5,2007,regular unleaded,148,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,31,22,210,14775 +Pontiac,G5,2007,regular unleaded,173,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,31,22,210,18425 +Pontiac,G5,2008,regular unleaded,171,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,32,22,210,19850 +Pontiac,G5,2008,regular unleaded,148,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,24,210,15675 +Pontiac,G5,2009,regular unleaded,155,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,37,25,210,16980 +Pontiac,G5,2009,regular unleaded,155,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,25,210,20280 +Pontiac,G6,2008,regular unleaded,217,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,26,17,210,30210 +Pontiac,G6,2008,regular unleaded,252,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,26,17,210,26755 +Pontiac,G6,2008,regular unleaded,219,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,26,17,210,23100 +Pontiac,G6,2008,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,26,17,210,26960 +Pontiac,G6,2008,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,22,210,18765 +Pontiac,G6,2008,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,22,210,20290 +Pontiac,G6,2008,regular unleaded,219,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,26,17,210,23100 +Pontiac,G6,2009,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,26,17,210,28580 +Pontiac,G6,2009,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,22,210,19275 +Pontiac,G6,2009,regular unleaded,221,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,26,17,210,24180 +Pontiac,G6,2009,regular unleaded,252,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,26,17,210,28960 +Pontiac,G6,2009,flex-fuel (unleaded/E85),219,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,26,17,210,24710 +Pontiac,G6,2009,regular unleaded,164,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,33,22,210,22220 +Pontiac,G6,2009,regular unleaded,217,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,26,17,210,32300 +Pontiac,G6,2009,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,22,210,20490 +Pontiac,G6,2009,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,30,22,210,21165 +Pontiac,G6,2009,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,26,17,210,29060 +Pontiac,G6,2009,regular unleaded,221,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,26,17,210,24080 +Pontiac,G6,2009,regular unleaded,252,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,26,17,210,28480 +Pontiac,G6,2009,flex-fuel (unleaded/E85),219,6,AUTOMATIC,front wheel drive,2,Flex Fuel,Midsize,Coupe,26,17,210,24610 +Pontiac,G6,2009,regular unleaded,221,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,26,17,210,31870 +Pontiac,G6,2010,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,22,210,21275 +Genesis,G80,2017,regular unleaded,311,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,21,41400 +Genesis,G80,2017,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,15,21,54550 +Genesis,G80,2017,regular unleaded,311,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,25,16,21,43900 +Pontiac,G8,2008,regular unleaded,361,8,AUTOMATIC,rear wheel drive,4,High-Performance,Large,Sedan,24,15,210,29310 +Pontiac,G8,2008,regular unleaded,256,6,AUTOMATIC,rear wheel drive,4,Performance,Large,Sedan,25,17,210,26910 +Pontiac,G8,2009,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,High-Performance,Large,Sedan,24,15,210,31755 +Pontiac,G8,2009,regular unleaded,256,6,AUTOMATIC,rear wheel drive,4,Performance,Large,Sedan,25,17,210,28250 +Pontiac,G8,2009,premium unleaded (recommended),415,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,High-Performance",Large,Sedan,20,13,210,37610 +Mitsubishi,Galant,2010,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,436,21599 +Mitsubishi,Galant,2010,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,436,23999 +Mitsubishi,Galant,2011,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,436,21599 +Mitsubishi,Galant,2011,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,436,23999 +Mitsubishi,Galant,2012,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,436,21899 +Mitsubishi,Galant,2012,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,436,24299 +Lamborghini,Gallardo,2012,premium unleaded (required),570,10,MANUAL,all wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Convertible,20,12,1158,248000 +Lamborghini,Gallardo,2012,premium unleaded (required),560,10,MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Convertible,20,12,1158,225400 +Lamborghini,Gallardo,2012,premium unleaded (required),550,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,20,12,1158,187900 +Lamborghini,Gallardo,2012,premium unleaded (required),570,10,MANUAL,all wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Coupe,20,12,1158,237600 +Lamborghini,Gallardo,2012,premium unleaded (required),550,10,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,20,13,1158,191900 +Lamborghini,Gallardo,2012,premium unleaded (required),560,10,MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Coupe,20,12,1158,202000 +Lamborghini,Gallardo,2013,premium unleaded (required),560,10,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Coupe,20,13,1158,202000 +Lamborghini,Gallardo,2013,premium unleaded (required),560,10,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Convertible,20,13,1158,225400 +Lamborghini,Gallardo,2013,premium unleaded (required),570,10,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Convertible,20,13,1158,248000 +Lamborghini,Gallardo,2013,premium unleaded (required),550,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,20,12,1158,191900 +Lamborghini,Gallardo,2013,premium unleaded (required),570,10,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Coupe,20,13,1158,237600 +Lamborghini,Gallardo,2013,premium unleaded (required),550,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,20,12,1158,209500 +Lamborghini,Gallardo,2014,premium unleaded (required),550,10,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,20,12,1158,209500 +Lamborghini,Gallardo,2014,premium unleaded (required),550,10,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,20,14,1158,191900 +Lamborghini,Gallardo,2014,premium unleaded (required),570,10,MANUAL,all wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Convertible,20,13,1158,251600 +Lamborghini,Gallardo,2014,premium unleaded (required),550,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,20,12,1158,191900 +Lamborghini,Gallardo,2014,premium unleaded (required),560,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,20,15,1158,198900 +Lamborghini,Gallardo,2014,premium unleaded (required),570,10,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Coupe,20,13,1158,256300 +Lamborghini,Gallardo,2014,premium unleaded (required),560,10,MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Coupe,20,13,1158,202000 +Lamborghini,Gallardo,2014,premium unleaded (required),570,10,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Coupe,20,13,1158,241200 +Lamborghini,Gallardo,2014,premium unleaded (required),570,10,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Convertible,20,14,1158,251600 +Lamborghini,Gallardo,2014,premium unleaded (required),570,10,MANUAL,all wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Coupe,20,13,1158,241200 +Lamborghini,Gallardo,2014,premium unleaded (required),560,10,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Coupe,20,14,1158,202000 +Lamborghini,Gallardo,2014,premium unleaded (required),560,10,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Convertible,20,13,1158,225400 +Lamborghini,Gallardo,2014,premium unleaded (required),560,10,MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Convertible,20,13,1158,225400 +Hyundai,Genesis Coupe,2014,premium unleaded (recommended),348,6,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,24,16,1439,29350 +Hyundai,Genesis Coupe,2014,premium unleaded (recommended),348,6,AUTOMATIC,rear wheel drive,2,High-Performance,Midsize,Coupe,25,16,1439,32150 +Hyundai,Genesis Coupe,2014,premium unleaded (recommended),274,4,AUTOMATIC,rear wheel drive,2,Performance,Midsize,Coupe,27,17,1439,26350 +Hyundai,Genesis Coupe,2014,premium unleaded (recommended),348,6,AUTOMATIC,rear wheel drive,2,High-Performance,Midsize,Coupe,25,16,1439,32150 +Hyundai,Genesis Coupe,2014,premium unleaded (recommended),348,6,AUTOMATIC,rear wheel drive,2,High-Performance,Midsize,Coupe,25,16,1439,34600 +Hyundai,Genesis Coupe,2014,premium unleaded (recommended),274,4,AUTOMATIC,rear wheel drive,2,Performance,Midsize,Coupe,27,17,1439,29300 +Hyundai,Genesis Coupe,2014,premium unleaded (recommended),348,6,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,24,16,1439,33400 +Hyundai,Genesis Coupe,2014,premium unleaded (recommended),274,4,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,27,19,1439,27200 +Hyundai,Genesis Coupe,2015,premium unleaded (recommended),348,6,AUTOMATIC,rear wheel drive,2,High-Performance,Midsize,Coupe,25,16,1439,27950 +Hyundai,Genesis Coupe,2015,premium unleaded (recommended),348,6,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,24,16,1439,26750 +Hyundai,Genesis Coupe,2015,premium unleaded (recommended),348,6,AUTOMATIC,rear wheel drive,2,High-Performance,Midsize,Coupe,25,16,1439,34600 +Hyundai,Genesis Coupe,2015,premium unleaded (recommended),348,6,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,24,16,1439,33400 +Hyundai,Genesis Coupe,2015,premium unleaded (recommended),348,6,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,24,16,1439,29500 +Hyundai,Genesis Coupe,2016,premium unleaded (recommended),348,6,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,24,17,1439,26950 +Hyundai,Genesis Coupe,2016,premium unleaded (recommended),348,6,AUTOMATIC,rear wheel drive,2,High-Performance,Midsize,Coupe,25,16,1439,34950 +Hyundai,Genesis Coupe,2016,premium unleaded (recommended),348,6,AUTOMATIC,rear wheel drive,2,High-Performance,Midsize,Coupe,25,16,1439,28150 +Hyundai,Genesis Coupe,2016,premium unleaded (recommended),348,6,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,24,17,1439,29900 +Hyundai,Genesis Coupe,2016,premium unleaded (recommended),348,6,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,24,17,1439,33750 +Hyundai,Genesis,2014,regular unleaded,333,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,27,18,1439,35200 +Hyundai,Genesis,2014,premium unleaded (recommended),429,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,23,15,1439,47400 +Hyundai,Genesis,2015,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,15,1439,51500 +Hyundai,Genesis,2015,regular unleaded,311,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,29,18,1439,38000 +Hyundai,Genesis,2015,regular unleaded,311,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,25,16,1439,40500 +Hyundai,Genesis,2016,regular unleaded,311,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,25,16,1439,41250 +Hyundai,Genesis,2016,regular unleaded,311,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,29,18,1439,38750 +Hyundai,Genesis,2016,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,15,1439,53850 +Maserati,Ghibli,2015,premium unleaded (required),404,6,AUTOMATIC,all wheel drive,4,"Exotic,Luxury,High-Performance",Midsize,Sedan,25,15,238,77900 +Maserati,Ghibli,2015,premium unleaded (required),345,6,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Midsize,Sedan,25,15,238,69800 +Maserati,Ghibli,2016,premium unleaded (required),404,6,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Midsize,Sedan,24,16,238,76050 +Maserati,Ghibli,2016,premium unleaded (required),345,6,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Midsize,Sedan,24,17,238,70600 +Maserati,Ghibli,2016,premium unleaded (required),404,6,AUTOMATIC,all wheel drive,4,"Exotic,Luxury,High-Performance",Midsize,Sedan,24,16,238,78550 +Maserati,Ghibli,2017,premium unleaded (required),404,6,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Midsize,Sedan,24,16,238,77200 +Maserati,Ghibli,2017,premium unleaded (required),404,6,AUTOMATIC,all wheel drive,4,"Exotic,Luxury,High-Performance",Midsize,Sedan,24,16,238,79700 +Maserati,Ghibli,2017,premium unleaded (required),345,6,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Midsize,Sedan,24,17,238,71600 +Rolls-Royce,Ghost Series II,2015,premium unleaded (required),563,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,21,13,86,286750 +Rolls-Royce,Ghost Series II,2015,premium unleaded (required),563,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,21,13,86,319400 +Rolls-Royce,Ghost Series II,2016,premium unleaded (required),563,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,21,13,86,295850 +Rolls-Royce,Ghost Series II,2016,premium unleaded (required),563,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,21,13,86,329325 +Rolls-Royce,Ghost,2012,premium unleaded (required),563,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,20,13,86,250000 +Rolls-Royce,Ghost,2012,premium unleaded (required),563,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,20,13,86,290000 +Rolls-Royce,Ghost,2013,premium unleaded (required),563,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,21,13,86,296000 +Rolls-Royce,Ghost,2013,premium unleaded (required),563,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,21,13,86,256650 +Rolls-Royce,Ghost,2014,premium unleaded (required),563,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,21,13,86,263200 +Rolls-Royce,Ghost,2014,premium unleaded (required),563,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,21,13,86,303300 +Mercedes-Benz,GL-Class,2014,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Large,4dr SUV,26,19,617,63000 +Mercedes-Benz,GL-Class,2014,premium unleaded (required),362,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,19,14,617,64550 +Mercedes-Benz,GL-Class,2014,premium unleaded (required),429,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,4dr SUV,18,13,617,88600 +Mercedes-Benz,GL-Class,2014,premium unleaded (required),550,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Large,4dr SUV,17,13,617,118160 +Mercedes-Benz,GL-Class,2015,premium unleaded (required),550,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Large,4dr SUV,17,13,617,119450 +Mercedes-Benz,GL-Class,2015,premium unleaded (required),429,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,4dr SUV,18,13,617,89950 +Mercedes-Benz,GL-Class,2015,premium unleaded (required),362,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,21,17,617,65200 +Mercedes-Benz,GL-Class,2015,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Large,4dr SUV,26,19,617,63600 +Mercedes-Benz,GL-Class,2016,premium unleaded (required),429,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,4dr SUV,18,13,617,89950 +Mercedes-Benz,GL-Class,2016,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Large,4dr SUV,26,19,617,63600 +Mercedes-Benz,GL-Class,2016,premium unleaded (required),362,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,21,17,617,65200 +Mercedes-Benz,GL-Class,2016,premium unleaded (required),550,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Large,4dr SUV,17,13,617,119450 +Mercedes-Benz,GLA-Class,2015,premium unleaded (required),208,4,AUTOMATED_MANUAL,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,35,25,617,31300 +Mercedes-Benz,GLA-Class,2015,premium unleaded (required),208,4,AUTOMATED_MANUAL,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,32,24,617,33300 +Mercedes-Benz,GLA-Class,2015,premium unleaded (required),355,4,AUTOMATED_MANUAL,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Compact,4dr SUV,29,23,617,48300 +Mercedes-Benz,GLA-Class,2016,premium unleaded (required),375,4,AUTOMATED_MANUAL,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Compact,4dr SUV,29,22,617,49580 +Mercedes-Benz,GLA-Class,2016,premium unleaded (required),208,4,AUTOMATED_MANUAL,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,35,25,617,32500 +Mercedes-Benz,GLA-Class,2016,premium unleaded (required),208,4,AUTOMATED_MANUAL,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,32,24,617,34500 +Mercedes-Benz,GLA-Class,2017,premium unleaded (required),375,4,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Compact,4dr SUV,28,22,617,49900 +Mercedes-Benz,GLA-Class,2017,premium unleaded (required),208,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,33,24,617,32850 +Mercedes-Benz,GLA-Class,2017,premium unleaded (required),208,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,31,23,617,34850 +Mercedes-Benz,GLC-Class,2016,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,22,617,38950 +Mercedes-Benz,GLC-Class,2016,premium unleaded (required),241,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,21,617,40950 +Mercedes-Benz,GLC-Class,2017,premium unleaded (recommended),241,4,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,22,617,39150 +Mercedes-Benz,GLC-Class,2017,premium unleaded (recommended),241,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,21,617,41150 +Mercedes-Benz,GLE-Class Coupe,2016,premium unleaded (required),362,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,23,17,617,65100 +Mercedes-Benz,GLE-Class Coupe,2016,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,18,14,617,109300 +Mercedes-Benz,GLE-Class Coupe,2017,premium unleaded (required),362,6,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,Performance",Midsize,4dr SUV,23,17,617,69650 +Mercedes-Benz,GLE-Class Coupe,2017,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,18,14,617,110650 +Mercedes-Benz,GLE-Class,2016,premium unleaded (required),329,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,22,18,617,64600 +Mercedes-Benz,GLE-Class,2016,premium unleaded (required),550,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,17,13,617,99950 +Mercedes-Benz,GLE-Class,2016,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,18,617,51100 +Mercedes-Benz,GLE-Class,2016,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,17,13,617,107100 +Mercedes-Benz,GLE-Class,2016,diesel,201,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,29,22,617,52500 +Mercedes-Benz,GLE-Class,2016,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,22,17,617,53600 +Mercedes-Benz,GLE-Class,2017,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,17,13,617,108840 +Mercedes-Benz,GLE-Class,2017,premium unleaded (required),550,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,17,13,617,101690 +Mercedes-Benz,GLE-Class,2017,premium unleaded (required),329,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,23,18,617,65650 +Mercedes-Benz,GLE-Class,2017,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,18,617,52000 +Mercedes-Benz,GLE-Class,2017,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,22,18,617,54500 +Volkswagen,GLI,2008,premium unleaded (required),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Compact,Sedan,29,22,873,25375 +Volkswagen,GLI,2008,premium unleaded (required),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Compact,Sedan,29,22,873,25375 +Volkswagen,GLI,2008,premium unleaded (required),200,4,MANUAL,front wheel drive,4,Performance,Compact,Sedan,29,20,873,24300 +Volkswagen,GLI,2008,premium unleaded (required),200,4,MANUAL,front wheel drive,4,Performance,Compact,Sedan,29,20,873,24300 +Volkswagen,GLI,2008,premium unleaded (required),200,4,MANUAL,front wheel drive,4,Performance,Compact,Sedan,29,20,873,24300 +Volkswagen,GLI,2008,premium unleaded (required),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Compact,Sedan,29,22,873,25375 +Volkswagen,GLI,2009,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Compact,Sedan,31,21,873,24770 +Volkswagen,GLI,2009,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Compact,Sedan,31,21,873,24770 +Volkswagen,GLI,2009,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Compact,Sedan,29,22,873,25870 +Volkswagen,GLI,2009,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Compact,Sedan,29,22,873,25870 +Volkswagen,GLI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,26895 +Volkswagen,GLI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,25795 +Volkswagen,GLI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,26695 +Volkswagen,GLI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,24845 +Volkswagen,GLI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,26895 +Volkswagen,GLI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,25795 +Volkswagen,GLI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,27795 +Volkswagen,GLI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,24845 +Volkswagen,GLI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,27795 +Volkswagen,GLI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,26695 +Volkswagen,GLI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,23745 +Volkswagen,GLI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,23745 +Mercedes-Benz,GLK-Class,2013,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,25,19,617,37090 +Mercedes-Benz,GLK-Class,2013,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,19,617,39090 +Mercedes-Benz,GLK-Class,2013,diesel,200,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,33,24,617,38590 +Mercedes-Benz,GLK-Class,2014,diesel,200,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,33,24,617,38980 +Mercedes-Benz,GLK-Class,2014,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,19,617,39480 +Mercedes-Benz,GLK-Class,2014,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,25,19,617,37480 +Mercedes-Benz,GLK-Class,2015,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,25,19,617,37900 +Mercedes-Benz,GLK-Class,2015,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,25,18,617,39900 +Mercedes-Benz,GLK-Class,2015,diesel,200,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,33,24,617,39400 +Mercedes-Benz,GLS-Class,2017,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Large,4dr SUV,17,13,617,124100 +Mercedes-Benz,GLS-Class,2017,premium unleaded (required),449,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,4dr SUV,18,14,617,93850 +Mercedes-Benz,GLS-Class,2017,premium unleaded (required),362,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,22,17,617,68700 +Volkswagen,Golf Alltrack,2017,regular unleaded,170,4,AUTOMATED_MANUAL,all wheel drive,4,Crossover,Compact,Wagon,30,22,873,26950 +Volkswagen,Golf Alltrack,2017,regular unleaded,170,4,AUTOMATED_MANUAL,all wheel drive,4,Crossover,Compact,Wagon,30,22,873,32890 +Volkswagen,Golf Alltrack,2017,regular unleaded,170,4,AUTOMATED_MANUAL,all wheel drive,4,Crossover,Compact,Wagon,30,22,873,30530 +Volkswagen,Golf Alltrack,2017,regular unleaded,170,4,MANUAL,all wheel drive,4,Crossover,Compact,Wagon,30,22,873,25850 +Volkswagen,Golf Alltrack,2017,regular unleaded,170,4,MANUAL,all wheel drive,4,Crossover,Compact,Wagon,30,22,873,29430 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),220,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,34,25,873,29280 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,25,873,32640 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,34,25,873,24785 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,25,873,28885 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),220,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,34,25,873,26280 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,25,873,25885 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,25,873,30380 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),220,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,25,873,29880 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,25,873,27380 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,25,873,30980 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,25,873,27980 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,25,873,29485 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),220,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,25,873,31540 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,25,873,25385 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,25,873,30045 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),220,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,25,873,26880 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,25,873,31145 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,34,25,873,27785 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,25,873,26485 +Volkswagen,Golf GTI,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,25,873,28385 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,25,873,30620 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,25,873,26095 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,25,873,25595 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,25,873,29125 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,25,873,31220 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),220,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,25,873,27090 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,25,873,27590 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),220,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,25,873,31630 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,34,25,873,24995 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,25,873,30135 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,25,873,31235 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,25,873,32730 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,25,873,29725 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,34,25,873,28025 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),220,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,34,25,873,26490 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),220,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,25,873,30120 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,25,873,28625 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,25,873,26695 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),220,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,34,25,873,29520 +Volkswagen,Golf GTI,2016,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,25,873,28190 +Volkswagen,Golf GTI,2017,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,32,24,873,35195 +Volkswagen,Golf GTI,2017,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,24,873,25595 +Volkswagen,Golf GTI,2017,premium unleaded (recommended),220,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,24,873,27995 +Volkswagen,Golf GTI,2017,premium unleaded (recommended),220,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,24,873,34095 +Volkswagen,Golf GTI,2017,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,32,24,873,26095 +Volkswagen,Golf GTI,2017,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,32,24,873,26695 +Volkswagen,Golf GTI,2017,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,32,24,873,31990 +Volkswagen,Golf GTI,2017,premium unleaded (recommended),220,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,34,24,873,30890 +Volkswagen,Golf GTI,2017,premium unleaded (recommended),210,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,34,24,873,24995 +Volkswagen,Golf GTI,2017,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,32,24,873,29095 +Volkswagen,Golf R,2015,premium unleaded (recommended),292,4,AUTOMATED_MANUAL,all wheel drive,4,"Hatchback,Factory Tuner,High-Performance",Compact,4dr Hatchback,30,23,873,39090 +Volkswagen,Golf R,2015,premium unleaded (recommended),292,4,AUTOMATED_MANUAL,all wheel drive,4,"Hatchback,Factory Tuner,High-Performance",Compact,4dr Hatchback,30,23,873,36595 +Volkswagen,Golf R,2016,premium unleaded (recommended),292,4,AUTOMATED_MANUAL,all wheel drive,4,"Hatchback,Factory Tuner,High-Performance",Compact,4dr Hatchback,30,23,873,36750 +Volkswagen,Golf R,2016,premium unleaded (recommended),292,4,AUTOMATED_MANUAL,all wheel drive,4,"Hatchback,Factory Tuner,High-Performance",Compact,4dr Hatchback,30,23,873,38995 +Volkswagen,Golf R,2016,premium unleaded (recommended),292,4,MANUAL,all wheel drive,4,"Hatchback,Factory Tuner,High-Performance",Compact,4dr Hatchback,31,22,873,35650 +Volkswagen,Golf R,2016,premium unleaded (recommended),292,4,MANUAL,all wheel drive,4,"Hatchback,Factory Tuner,High-Performance",Compact,4dr Hatchback,31,22,873,37895 +Volkswagen,Golf R,2017,premium unleaded (recommended),292,4,AUTOMATED_MANUAL,all wheel drive,4,"Hatchback,Factory Tuner,High-Performance",Compact,4dr Hatchback,30,23,873,36755 +Volkswagen,Golf R,2017,premium unleaded (recommended),292,4,MANUAL,all wheel drive,4,"Hatchback,Factory Tuner,High-Performance",Compact,4dr Hatchback,31,22,873,35655 +Volkswagen,Golf R,2017,premium unleaded (recommended),292,4,MANUAL,all wheel drive,4,"Hatchback,Factory Tuner,High-Performance",Compact,4dr Hatchback,31,22,873,39375 +Volkswagen,Golf R,2017,premium unleaded (recommended),292,4,AUTOMATED_MANUAL,all wheel drive,4,"Hatchback,Factory Tuner,High-Performance",Compact,4dr Hatchback,30,23,873,40475 +Volkswagen,Golf SportWagen,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Compact,Wagon,42,31,873,31445 +Volkswagen,Golf SportWagen,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,35,25,873,22495 +Volkswagen,Golf SportWagen,2015,diesel,150,4,MANUAL,front wheel drive,4,Diesel,Compact,Wagon,43,31,873,27995 +Volkswagen,Golf SportWagen,2015,regular unleaded,170,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,36,25,873,21395 +Volkswagen,Golf SportWagen,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,35,25,873,29345 +Volkswagen,Golf SportWagen,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,36,25,873,26995 +Volkswagen,Golf SportWagen,2015,diesel,150,4,MANUAL,front wheel drive,4,Diesel,Compact,Wagon,43,31,873,30345 +Volkswagen,Golf SportWagen,2015,diesel,150,4,MANUAL,front wheel drive,4,Diesel,Compact,Wagon,43,31,873,24595 +Volkswagen,Golf SportWagen,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Compact,Wagon,42,31,873,25695 +Volkswagen,Golf SportWagen,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Compact,Wagon,42,31,873,29095 +Volkswagen,Golf SportWagen,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,35,25,873,24995 +Volkswagen,Golf SportWagen,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,35,25,873,27025 +Volkswagen,Golf SportWagen,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,35,25,873,29385 +Volkswagen,Golf SportWagen,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,35,25,873,22725 +Volkswagen,Golf SportWagen,2016,regular unleaded,170,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,36,25,873,21625 +Volkswagen,Golf SportWagen,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,34,25,873,22680 +Volkswagen,Golf SportWagen,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,34,25,873,27030 +Volkswagen,Golf SportWagen,2017,regular unleaded,170,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,35,25,873,21580 +Volkswagen,Golf SportWagen,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,34,25,873,29970 +Volkswagen,Golf,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Diesel",Compact,4dr Hatchback,43,31,873,26995 +Volkswagen,Golf,2015,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,37,25,873,19295 +Volkswagen,Golf,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Diesel",Compact,4dr Hatchback,43,31,873,23445 +Volkswagen,Golf,2015,regular unleaded,170,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,25,873,21295 +Volkswagen,Golf,2015,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,37,25,873,17995 +Volkswagen,Golf,2015,diesel,150,4,MANUAL,front wheel drive,4,"Hatchback,Diesel",Compact,4dr Hatchback,45,30,873,28395 +Volkswagen,Golf,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,25,873,24895 +Volkswagen,Golf,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,25,873,20995 +Volkswagen,Golf,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Diesel",Compact,4dr Hatchback,43,31,873,29495 +Volkswagen,Golf,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,25,873,27395 +Volkswagen,Golf,2015,diesel,150,4,MANUAL,front wheel drive,4,"Hatchback,Diesel",Compact,4dr Hatchback,45,30,873,22345 +Volkswagen,Golf,2015,diesel,150,4,MANUAL,front wheel drive,4,"Hatchback,Diesel",Compact,4dr Hatchback,45,30,873,25895 +Volkswagen,Golf,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,25,873,22395 +Volkswagen,Golf,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,36,25,873,20395 +Volkswagen,Golf,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,36,25,873,20675 +Volkswagen,Golf,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,25,873,27425 +Volkswagen,Golf,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,36,25,873,19595 +Volkswagen,Golf,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,25,873,22625 +Volkswagen,Golf,2016,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,37,25,873,18495 +Volkswagen,Golf,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,25,873,25225 +Volkswagen,Golf,2016,regular unleaded,170,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,25,873,20175 +Volkswagen,Golf,2016,regular unleaded,170,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,37,25,873,19575 +Volkswagen,Golf,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,25,873,21275 +Volkswagen,Golf,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,25,873,20995 +Volkswagen,Golf,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,25,873,22695 +Volkswagen,Golf,2017,regular unleaded,170,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,25,873,21595 +Volkswagen,Golf,2017,regular unleaded,170,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,25,873,19895 +Pontiac,Grand Am,2003,regular unleaded,175,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,210,22940 +Pontiac,Grand Am,2003,regular unleaded,175,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,210,21690 +Pontiac,Grand Am,2003,regular unleaded,140,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,30,22,210,17070 +Pontiac,Grand Am,2003,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,210,21240 +Pontiac,Grand Am,2003,regular unleaded,175,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,210,22940 +Pontiac,Grand Am,2003,regular unleaded,175,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,210,21690 +Pontiac,Grand Am,2003,regular unleaded,140,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,30,22,210,18890 +Pontiac,Grand Am,2004,regular unleaded,140,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,33,23,210,17070 +Pontiac,Grand Am,2004,regular unleaded,175,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,210,23530 +Pontiac,Grand Am,2004,regular unleaded,175,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,210,22280 +Pontiac,Grand Am,2004,regular unleaded,175,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,210,23530 +Pontiac,Grand Am,2004,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,210,21830 +Pontiac,Grand Am,2004,regular unleaded,140,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,33,23,210,19555 +Pontiac,Grand Am,2004,regular unleaded,175,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,210,22280 +Pontiac,Grand Am,2005,regular unleaded,175,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,210,23750 +Pontiac,Grand Am,2005,regular unleaded,175,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,27,18,210,22500 +Pontiac,Grand Am,2005,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,22,210,20090 +Dodge,Grand Caravan,2015,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1851,30995 +Dodge,Grand Caravan,2015,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1851,27395 +Dodge,Grand Caravan,2015,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1851,21795 +Dodge,Grand Caravan,2015,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1851,24245 +Dodge,Grand Caravan,2015,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1851,28395 +Dodge,Grand Caravan,2015,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1851,25245 +Dodge,Grand Caravan,2016,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1851,25095 +Dodge,Grand Caravan,2016,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1851,22595 +Dodge,Grand Caravan,2016,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1851,28295 +Dodge,Grand Caravan,2016,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1851,31495 +Dodge,Grand Caravan,2016,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1851,26195 +Dodge,Grand Caravan,2016,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1851,29395 +Dodge,Grand Caravan,2017,regular unleaded,283,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,1851,29395 +Dodge,Grand Caravan,2017,regular unleaded,283,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,1851,26695 +Dodge,Grand Caravan,2017,regular unleaded,283,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,1851,32395 +Dodge,Grand Caravan,2017,regular unleaded,283,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,1851,23995 +Pontiac,Grand Prix,2006,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,17,210,24330 +Pontiac,Grand Prix,2006,regular unleaded,303,8,AUTOMATIC,front wheel drive,4,"Factory Tuner,High-Performance",Midsize,Sedan,25,16,210,27330 +Pontiac,Grand Prix,2006,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,28,18,210,21330 +Pontiac,Grand Prix,2007,regular unleaded,303,8,AUTOMATIC,front wheel drive,4,"Factory Tuner,High-Performance",Midsize,Sedan,25,16,210,28815 +Pontiac,Grand Prix,2007,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,17,210,24735 +Pontiac,Grand Prix,2007,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,28,18,210,21815 +Pontiac,Grand Prix,2008,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,28,18,210,22210 +Pontiac,Grand Prix,2008,regular unleaded,303,8,AUTOMATIC,front wheel drive,4,"Factory Tuner,High-Performance",Large,Sedan,25,16,210,29325 +Suzuki,Grand Vitara,2011,regular unleaded,166,4,AUTOMATIC,rear wheel drive,4,Crossover,Compact,4dr SUV,25,19,481,23449 +Suzuki,Grand Vitara,2011,regular unleaded,166,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,23,19,481,24949 +Suzuki,Grand Vitara,2011,regular unleaded,166,4,MANUAL,rear wheel drive,4,Crossover,Compact,4dr SUV,26,19,481,19299 +Suzuki,Grand Vitara,2011,regular unleaded,166,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,23,19,481,22549 +Suzuki,Grand Vitara,2011,regular unleaded,166,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,23,19,481,22899 +Suzuki,Grand Vitara,2011,regular unleaded,166,4,AUTOMATIC,rear wheel drive,4,Crossover,Compact,4dr SUV,25,19,481,21099 +Suzuki,Grand Vitara,2012,regular unleaded,166,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,23,19,481,23949 +Suzuki,Grand Vitara,2012,regular unleaded,166,4,AUTOMATIC,rear wheel drive,4,Crossover,Compact,4dr SUV,25,19,481,21399 +Suzuki,Grand Vitara,2012,regular unleaded,166,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,23,19,481,25249 +Suzuki,Grand Vitara,2012,regular unleaded,166,4,AUTOMATIC,rear wheel drive,4,Crossover,Compact,4dr SUV,25,19,481,22299 +Suzuki,Grand Vitara,2012,regular unleaded,166,4,MANUAL,rear wheel drive,4,Crossover,Compact,4dr SUV,26,19,481,19499 +Suzuki,Grand Vitara,2012,regular unleaded,166,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,23,19,481,22849 +Suzuki,Grand Vitara,2012,regular unleaded,166,4,AUTOMATIC,rear wheel drive,4,Crossover,Compact,4dr SUV,25,19,481,23749 +Suzuki,Grand Vitara,2013,regular unleaded,166,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,23,19,481,23799 +Suzuki,Grand Vitara,2013,regular unleaded,166,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,23,19,481,25949 +Suzuki,Grand Vitara,2013,regular unleaded,166,4,AUTOMATIC,rear wheel drive,4,Crossover,Compact,4dr SUV,25,19,481,22349 +Suzuki,Grand Vitara,2013,regular unleaded,166,4,MANUAL,rear wheel drive,4,Crossover,Compact,4dr SUV,26,19,481,19949 +Suzuki,Grand Vitara,2013,regular unleaded,166,4,AUTOMATIC,rear wheel drive,4,Crossover,Compact,4dr SUV,25,19,481,24449 +Chrysler,Grand Voyager,2000,regular unleaded,158,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,23,16,1013,2169 +Chrysler,Grand Voyager,2000,flex-fuel (unleaded/E85),158,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Passenger Minivan,23,16,1013,2266 +Plymouth,Grand Voyager,1998,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,24,17,535,2000 +Plymouth,Grand Voyager,1998,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,24,17,535,2048 +Plymouth,Grand Voyager,1998,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,22,17,535,2000 +Plymouth,Grand Voyager,1999,flex-fuel (unleaded/E85),158,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Passenger Minivan,22,16,535,2055 +Plymouth,Grand Voyager,1999,flex-fuel (unleaded/E85),158,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Passenger Minivan,22,16,535,2152 +Plymouth,Grand Voyager,1999,flex-fuel (unleaded/E85),158,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Passenger Minivan,22,16,535,2234 +Plymouth,Grand Voyager,2000,flex-fuel (unleaded/E85),158,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Passenger Minivan,23,16,535,2331 +Plymouth,Grand Voyager,2000,regular unleaded,158,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,23,16,535,2267 +Maserati,GranSport,2005,premium unleaded (required),395,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Coupe,16,11,238,98172 +Maserati,GranSport,2006,premium unleaded (required),401,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Coupe,18,11,238,98872 +Maserati,GranSport,2006,premium unleaded (required),401,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Coupe,18,11,238,104122 +Maserati,GranSport,2006,premium unleaded (required),401,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Convertible,18,11,238,99900 +Maserati,GranTurismo Convertible,2014,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Midsize,Convertible,20,13,238,143300 +Maserati,GranTurismo Convertible,2014,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,20,13,238,153400 +Maserati,GranTurismo Convertible,2014,premium unleaded (required),444,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Midsize,Convertible,20,13,238,138800 +Maserati,GranTurismo Convertible,2015,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,20,13,238,161070 +Maserati,GranTurismo Convertible,2015,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,20,13,238,182009 +Maserati,GranTurismo Convertible,2015,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Midsize,Convertible,20,13,238,150465 +Maserati,GranTurismo Convertible,2015,premium unleaded (required),444,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Midsize,Convertible,20,13,238,145740 +Maserati,GranTurismo Convertible,2016,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,20,13,238,161070 +Maserati,GranTurismo Convertible,2016,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Midsize,Convertible,20,13,238,150465 +Maserati,GranTurismo Convertible,2016,premium unleaded (required),444,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Midsize,Convertible,20,13,238,145740 +Maserati,GranTurismo Convertible,2016,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,20,13,238,182009 +Maserati,GranTurismo,2014,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Large,Coupe,21,13,238,143400 +Maserati,GranTurismo,2014,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Large,Coupe,21,13,238,126500 +Maserati,GranTurismo,2015,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Large,Coupe,21,13,238,132825 +Maserati,GranTurismo,2015,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Large,Coupe,21,13,238,165627 +Maserati,GranTurismo,2015,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Large,Coupe,21,13,238,150570 +Maserati,GranTurismo,2016,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Large,Coupe,21,13,238,150570 +Maserati,GranTurismo,2016,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Large,Coupe,21,13,238,132825 +Maserati,GranTurismo,2016,premium unleaded (required),454,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Large,Coupe,21,13,238,165627 +Lexus,GS 200t,2016,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,30,21,454,53285 +Lexus,GS 200t,2016,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,33,22,454,45615 +Lexus,GS 200t,2017,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,32,22,454,46310 +Lexus,GS 200t,2017,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,30,21,454,53980 +Lexus,GS 300,2004,premium unleaded (required),220,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,23,16,454,38875 +Lexus,GS 300,2005,premium unleaded (required),220,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,23,16,454,38875 +Lexus,GS 300,2006,premium unleaded (required),245,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,27,19,454,43150 +Lexus,GS 300,2006,premium unleaded (required),245,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,25,19,454,45100 +Lexus,GS 350,2015,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,19,454,55070 +Lexus,GS 350,2015,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,19,454,48600 +Lexus,GS 350,2015,premium unleaded (required),306,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,19,454,57330 +Lexus,GS 350,2015,premium unleaded (required),306,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,19,454,50850 +Lexus,GS 350,2016,premium unleaded (required),311,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,29,20,454,50000 +Lexus,GS 350,2016,premium unleaded (required),311,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,28,19,454,54115 +Lexus,GS 350,2016,premium unleaded (required),311,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,19,454,50470 +Lexus,GS 350,2017,premium unleaded (required),311,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,28,20,454,50695 +Lexus,GS 350,2017,premium unleaded (required),311,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,27,19,454,54810 +Lexus,GS 350,2017,premium unleaded (required),311,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,19,454,50365 +Lexus,GS 350,2017,premium unleaded (required),311,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,19,454,56555 +Lexus,GS 400,1998,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,21,15,454,3542 +Lexus,GS 400,1999,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,22,16,454,3741 +Lexus,GS 400,2000,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,22,16,454,3965 +Lexus,GS 430,2005,premium unleaded (required),300,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,22,16,454,47975 +Lexus,GS 430,2006,premium unleaded (required),300,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,23,16,454,51375 +Lexus,GS 430,2007,premium unleaded (required),290,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,23,16,454,52375 +Lexus,GS 450h,2014,premium unleaded (required),338,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance,Hybrid",Midsize,Sedan,34,29,454,60430 +Lexus,GS 450h,2015,premium unleaded (required),338,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance,Hybrid",Midsize,Sedan,34,29,454,61330 +Lexus,GS 450h,2016,premium unleaded (required),338,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance,Hybrid",Midsize,Sedan,34,29,454,63080 +Lexus,GS 460,2009,premium unleaded (required),342,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,24,17,454,53470 +Lexus,GS 460,2010,premium unleaded (required),342,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,24,17,454,54070 +Lexus,GS 460,2011,premium unleaded (required),342,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,24,17,454,55370 +Lexus,GS F,2016,premium unleaded (required),467,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,24,16,454,84440 +Nissan,GT-R,2015,premium unleaded (recommended),545,6,AUTOMATED_MANUAL,all wheel drive,2,High-Performance,Midsize,Coupe,23,16,2009,111510 +Nissan,GT-R,2015,premium unleaded (recommended),545,6,AUTOMATED_MANUAL,all wheel drive,2,High-Performance,Midsize,Coupe,23,16,2009,115710 +Nissan,GT-R,2015,premium unleaded (recommended),545,6,AUTOMATED_MANUAL,all wheel drive,2,High-Performance,Midsize,Coupe,23,16,2009,101770 +Nissan,GT-R,2015,premium unleaded (recommended),600,6,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,High-Performance",Midsize,Coupe,23,16,2009,149990 +Nissan,GT-R,2016,premium unleaded (required),545,6,AUTOMATED_MANUAL,all wheel drive,2,High-Performance,Midsize,Coupe,22,16,2009,111510 +Nissan,GT-R,2016,premium unleaded (required),600,6,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,High-Performance",Midsize,Coupe,22,16,2009,149990 +Nissan,GT-R,2016,premium unleaded (required),545,6,AUTOMATED_MANUAL,all wheel drive,2,High-Performance,Midsize,Coupe,22,16,2009,101770 +Nissan,GT-R,2017,premium unleaded (required),565,6,AUTOMATED_MANUAL,all wheel drive,2,High-Performance,Midsize,Coupe,22,16,2009,109990 +Ford,GT,2005,premium unleaded (required),550,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,12,5657,149995 +Ford,GT,2006,premium unleaded (required),550,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,12,5657,149995 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,26275 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,31695 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,24595 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,25095 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,27375 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,31695 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,29995 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,29545 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,27845 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,31095 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,28445 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,27845 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,25095 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,24595 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,28945 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,23995 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,27375 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,29545 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,29995 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,23995 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,25695 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,26875 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,30595 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,30595 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,27975 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,26875 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,28445 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,25695 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,26275 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,28945 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,31095 +Volkswagen,GTI,2012,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,27975 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,29895 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,29695 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,30795 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,25300 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,24200 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,25895 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,30995 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,30395 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,24200 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,28795 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,25095 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,28395 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,27295 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,28195 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,31495 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,28195 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,24795 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,26195 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,31495 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,24795 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,32095 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,25300 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,27895 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,30995 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,29295 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,29695 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,26195 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,32095 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,26795 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,25895 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,25095 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,26795 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,28395 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,27895 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,33,24,873,29295 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,27295 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,30795 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,31,21,873,30395 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,29895 +Volkswagen,GTI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,28795 +Volkswagen,GTI,2014,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,26195 +Volkswagen,GTI,2014,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,29695 +Volkswagen,GTI,2014,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,31,21,873,25095 +Volkswagen,GTI,2014,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,33,24,873,30795 +Pontiac,GTO,2004,premium unleaded (required),350,8,AUTOMATIC,rear wheel drive,2,High-Performance,Midsize,Coupe,20,15,210,31795 +Pontiac,GTO,2005,premium unleaded (required),400,8,AUTOMATIC,rear wheel drive,2,High-Performance,Midsize,Coupe,19,14,210,32295 +Pontiac,GTO,2006,premium unleaded (required),400,8,AUTOMATIC,rear wheel drive,2,High-Performance,Midsize,Coupe,19,14,210,31290 +Lexus,GX 460,2015,premium unleaded (required),301,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,20,15,454,49485 +Lexus,GX 460,2015,premium unleaded (required),301,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,20,15,454,61115 +Lexus,GX 460,2016,premium unleaded (required),301,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,20,15,454,50780 +Lexus,GX 460,2016,premium unleaded (required),301,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,20,15,454,62155 +Lexus,GX 460,2017,premium unleaded (required),301,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,18,15,454,51280 +Lexus,GX 460,2017,premium unleaded (required),301,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,18,15,454,62980 +Lexus,GX 470,2007,regular unleaded,263,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,18,14,454,46635 +Lexus,GX 470,2008,premium unleaded (required),263,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,18,14,454,47315 +Lexus,GX 470,2009,premium unleaded (required),263,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,18,14,454,47615 +HUMMER,H3,2008,regular unleaded,242,5,MANUAL,four wheel drive,4,Luxury,Midsize,4dr SUV,18,13,130,39290 +HUMMER,H3,2008,regular unleaded,242,5,MANUAL,four wheel drive,4,Luxury,Midsize,4dr SUV,18,13,130,30995 +HUMMER,H3,2008,regular unleaded,300,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,16,13,130,39560 +HUMMER,H3,2009,regular unleaded,242,5,MANUAL,four wheel drive,4,Luxury,Midsize,4dr SUV,18,14,130,33390 +HUMMER,H3,2009,regular unleaded,242,5,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,18,14,130,43130 +HUMMER,H3,2009,regular unleaded,300,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,16,13,130,41705 +HUMMER,H3,2010,flex-fuel (unleaded/E85),300,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury",Midsize,4dr SUV,16,13,130,41705 +HUMMER,H3,2010,regular unleaded,239,5,MANUAL,four wheel drive,4,Luxury,Midsize,4dr SUV,18,14,130,33390 +HUMMER,H3,2010,regular unleaded,239,5,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,18,14,130,38365 +HUMMER,H3,2010,regular unleaded,239,5,MANUAL,four wheel drive,4,"Flex Fuel,Luxury",Midsize,4dr SUV,18,14,130,35960 +HUMMER,H3T,2009,regular unleaded,239,5,MANUAL,four wheel drive,4,"Crossover,Luxury",Compact,Crew Cab Pickup,18,14,130,30750 +HUMMER,H3T,2009,regular unleaded,300,8,AUTOMATIC,four wheel drive,4,"Crossover,Luxury",Compact,Crew Cab Pickup,16,13,130,36015 +HUMMER,H3T,2010,flex-fuel (unleaded/E85),300,8,AUTOMATIC,four wheel drive,4,"Crossover,Flex Fuel,Luxury",Compact,Crew Cab Pickup,16,13,130,39205 +HUMMER,H3T,2010,regular unleaded,239,5,MANUAL,four wheel drive,4,"Crossover,Flex Fuel,Luxury",Compact,Crew Cab Pickup,18,14,130,30915 +HUMMER,H3T,2010,regular unleaded,239,5,AUTOMATIC,four wheel drive,4,"Crossover,Flex Fuel,Luxury",Compact,Crew Cab Pickup,18,14,130,36355 +HUMMER,H3T,2010,flex-fuel (unleaded/E85),300,8,AUTOMATIC,four wheel drive,4,"Crossover,Flex Fuel,Luxury",Compact,Crew Cab Pickup,16,13,130,35680 +HUMMER,H3T,2010,regular unleaded,239,5,MANUAL,four wheel drive,4,"Crossover,Flex Fuel,Luxury",Compact,Crew Cab Pickup,18,14,130,33485 +Chevrolet,HHR,2009,flex-fuel (unleaded/E85),155,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Compact,Wagon,30,22,1385,20720 +Chevrolet,HHR,2009,premium unleaded (recommended),260,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Compact,Wagon,29,21,1385,25135 +Chevrolet,HHR,2009,flex-fuel (unleaded/E85),155,4,MANUAL,front wheel drive,4,Flex Fuel,Compact,Wagon,32,22,1385,18720 +Chevrolet,HHR,2009,premium unleaded (recommended),260,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Compact,Wagon,29,21,1385,24815 +Chevrolet,HHR,2009,flex-fuel (unleaded/E85),155,4,MANUAL,front wheel drive,4,Flex Fuel,Compact,Wagon,32,22,1385,19030 +Chevrolet,HHR,2009,flex-fuel (unleaded/E85),155,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Compact,Wagon,30,22,1385,21030 +Chevrolet,HHR,2010,flex-fuel (unleaded/E85),155,4,MANUAL,front wheel drive,4,Flex Fuel,Compact,Wagon,32,22,1385,20030 +Chevrolet,HHR,2010,flex-fuel (unleaded/E85),155,4,MANUAL,front wheel drive,4,Flex Fuel,Compact,Wagon,32,22,1385,18720 +Chevrolet,HHR,2010,premium unleaded (recommended),260,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Compact,Wagon,29,21,1385,26255 +Chevrolet,HHR,2010,flex-fuel (unleaded/E85),155,4,MANUAL,front wheel drive,4,Flex Fuel,Compact,Wagon,32,22,1385,19720 +Chevrolet,HHR,2010,flex-fuel (unleaded/E85),155,4,MANUAL,front wheel drive,4,Flex Fuel,Compact,Wagon,32,22,1385,19030 +Chevrolet,HHR,2011,flex-fuel (unleaded/E85),155,4,MANUAL,front wheel drive,4,Flex Fuel,Compact,Wagon,32,22,1385,18720 +Chevrolet,HHR,2011,flex-fuel (unleaded/E85),155,4,MANUAL,front wheel drive,4,Flex Fuel,Compact,Wagon,32,22,1385,19030 +Chevrolet,HHR,2011,flex-fuel (unleaded/E85),155,4,MANUAL,front wheel drive,4,Flex Fuel,Compact,Wagon,32,22,1385,19720 +Toyota,Highlander Hybrid,2014,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,28,27,2031,47300 +Toyota,Highlander Hybrid,2014,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,28,27,2031,49790 +Toyota,Highlander Hybrid,2015,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,28,27,2031,47850 +Toyota,Highlander Hybrid,2015,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,28,27,2031,50340 +Toyota,Highlander Hybrid,2016,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,28,27,2031,50485 +Toyota,Highlander Hybrid,2016,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,28,27,2031,47870 +Toyota,Highlander,2015,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,2031,34750 +Toyota,Highlander,2015,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,19,2031,31070 +Toyota,Highlander,2015,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,2031,44140 +Toyota,Highlander,2015,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,2031,38050 +Toyota,Highlander,2015,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,2031,41650 +Toyota,Highlander,2015,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,19,2031,42680 +Toyota,Highlander,2015,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,2031,32530 +Toyota,Highlander,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,20,2031,29765 +Toyota,Highlander,2015,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,19,2031,33290 +Toyota,Highlander,2015,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,19,2031,36590 +Toyota,Highlander,2015,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,19,2031,40190 +Toyota,Highlander,2016,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,19,2031,34395 +Toyota,Highlander,2016,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,2031,38775 +Toyota,Highlander,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,20,2031,30490 +Toyota,Highlander,2016,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,2031,42375 +Toyota,Highlander,2016,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,2031,44990 +Toyota,Highlander,2016,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,2031,33475 +Toyota,Highlander,2016,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,19,2031,43530 +Toyota,Highlander,2016,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,19,2031,32015 +Toyota,Highlander,2016,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,19,2031,40915 +Toyota,Highlander,2016,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,2031,35855 +Toyota,Highlander,2016,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,19,2031,37315 +Plymouth,Horizon,1990,regular unleaded,93,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,31,22,535,2000 +Honda,HR-V,2016,regular unleaded,141,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,35,28,2202,22065 +Honda,HR-V,2016,regular unleaded,141,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,32,27,2202,23365 +Honda,HR-V,2016,regular unleaded,141,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,35,28,2202,20015 +Honda,HR-V,2016,regular unleaded,141,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,32,27,2202,25990 +Honda,HR-V,2016,regular unleaded,141,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,32,27,2202,21315 +Honda,HR-V,2016,regular unleaded,141,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,35,28,2202,24690 +Honda,HR-V,2016,regular unleaded,141,4,MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,34,25,2202,19215 +Honda,HR-V,2016,regular unleaded,141,4,MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,34,25,2202,21265 +Honda,HR-V,2017,regular unleaded,141,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,28,2202,22215 +Honda,HR-V,2017,regular unleaded,141,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,27,2202,23515 +Honda,HR-V,2017,regular unleaded,141,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,28,2202,20165 +Honda,HR-V,2017,regular unleaded,141,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,27,2202,26140 +Honda,HR-V,2017,regular unleaded,141,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,28,2202,24840 +Honda,HR-V,2017,regular unleaded,141,4,MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,2202,19365 +Honda,HR-V,2017,regular unleaded,141,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,27,2202,21465 +Honda,HR-V,2017,regular unleaded,141,4,MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,2202,21415 +Lexus,HS 250h,2010,regular unleaded,187,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,34,35,454,34650 +Lexus,HS 250h,2010,regular unleaded,187,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,34,35,454,37420 +Lexus,HS 250h,2011,regular unleaded,187,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,34,35,454,39100 +Lexus,HS 250h,2011,regular unleaded,187,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,34,35,454,36330 +Lexus,HS 250h,2012,regular unleaded,187,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,34,35,454,39800 +Lexus,HS 250h,2012,regular unleaded,187,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,34,35,454,37030 +Lamborghini,Huracan,2015,premium unleaded (required),610,10,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Coupe,20,14,1158,237250 +Lamborghini,Huracan,2016,premium unleaded (required),610,10,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,14,1158,238500 +Lamborghini,Huracan,2016,premium unleaded (required),610,10,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Convertible,20,14,1158,262350 +Lamborghini,Huracan,2016,premium unleaded (required),580,10,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,14,1158,199800 +Mitsubishi,i-MiEV,2014,electric,,,DIRECT_DRIVE,rear wheel drive,4,Hatchback,Compact,4dr Hatchback,99,126,436,22995 +Mitsubishi,i-MiEV,2016,electric,66,,DIRECT_DRIVE,rear wheel drive,4,Hatchback,Compact,4dr Hatchback,99,126,436,22995 +Mitsubishi,i-MiEV,2017,electric,66,,DIRECT_DRIVE,rear wheel drive,4,Hatchback,Compact,4dr Hatchback,102,121,436,22995 +Infiniti,I30,1999,regular unleaded,190,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,25,18,190,2288 +Infiniti,I30,1999,regular unleaded,190,6,MANUAL,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,19,190,2433 +Infiniti,I30,2000,regular unleaded,227,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,25,17,190,2648 +Infiniti,I30,2000,regular unleaded,227,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,25,17,190,2552 +Infiniti,I30,2001,premium unleaded (required),227,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,190,31790 +Infiniti,I30,2001,premium unleaded (required),227,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,190,29715 +Infiniti,I35,2002,premium unleaded (required),255,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,190,28750 +Infiniti,I35,2003,premium unleaded (required),255,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,190,29100 +Infiniti,I35,2004,regular unleaded,255,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,190,30600 +BMW,i3,2015,electric,170,0,DIRECT_DRIVE,rear wheel drive,4,"Hatchback,Luxury",Compact,4dr Hatchback,111,137,3916,42400 +BMW,i3,2016,electric,170,0,DIRECT_DRIVE,rear wheel drive,4,"Hatchback,Luxury",Compact,4dr Hatchback,111,137,3916,42400 +BMW,i3,2017,electric,170,0,DIRECT_DRIVE,rear wheel drive,4,"Hatchback,Luxury",Compact,4dr Hatchback,111,137,3916,42400 +BMW,i3,2017,electric,170,0,DIRECT_DRIVE,rear wheel drive,4,"Hatchback,Luxury",Compact,4dr Hatchback,106,129,3916,43600 +Scion,iA,2016,regular unleaded,106,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,42,33,105,16800 +Scion,iA,2016,regular unleaded,106,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,41,31,105,15700 +Acura,ILX Hybrid,2014,premium unleaded (recommended),111,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Compact,Sedan,38,39,204,28900 +Acura,ILX Hybrid,2014,premium unleaded (recommended),111,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Compact,Sedan,38,39,204,34600 +Acura,ILX,2015,premium unleaded (recommended),201,4,MANUAL,front wheel drive,4,"Luxury,Performance",Compact,Sedan,31,22,204,29350 +Acura,ILX,2015,premium unleaded (recommended),150,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Sedan,35,24,204,31750 +Acura,ILX,2015,premium unleaded (recommended),150,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Sedan,35,24,204,29350 +Acura,ILX,2015,premium unleaded (recommended),150,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Sedan,35,24,204,27050 +Acura,ILX,2016,premium unleaded (recommended),201,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,36,25,204,34890 +Acura,ILX,2016,premium unleaded (recommended),201,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,36,25,204,29900 +Acura,ILX,2016,premium unleaded (recommended),201,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,36,25,204,29200 +Acura,ILX,2016,premium unleaded (recommended),201,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,36,25,204,31890 +Acura,ILX,2016,premium unleaded (recommended),201,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,36,25,204,32900 +Acura,ILX,2016,premium unleaded (recommended),201,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,36,25,204,27900 +Acura,ILX,2017,premium unleaded (recommended),201,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,35,25,204,32990 +Acura,ILX,2017,premium unleaded (recommended),201,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,35,25,204,29290 +Acura,ILX,2017,premium unleaded (recommended),201,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,35,25,204,31980 +Acura,ILX,2017,premium unleaded (recommended),201,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,35,25,204,34980 +Acura,ILX,2017,premium unleaded (recommended),201,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,35,25,204,27990 +Acura,ILX,2017,premium unleaded (recommended),201,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Compact,Sedan,35,25,204,29990 +Chevrolet,Impala Limited,2014,flex-fuel (unleaded/E85),300,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,30,18,1385,26840 +Chevrolet,Impala Limited,2014,flex-fuel (unleaded/E85),300,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,30,18,1385,25830 +Chevrolet,Impala Limited,2014,flex-fuel (unleaded/E85),300,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,30,18,1385,30535 +Chevrolet,Impala Limited,2015,flex-fuel (unleaded/E85),300,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,30,18,1385,26840 +Chevrolet,Impala Limited,2015,flex-fuel (unleaded/E85),300,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,30,18,1385,25830 +Chevrolet,Impala Limited,2015,flex-fuel (unleaded/E85),300,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,30,18,1385,30535 +Chevrolet,Impala Limited,2016,flex-fuel (unleaded/E85),300,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,30,18,1385,26840 +Chevrolet,Impala Limited,2016,flex-fuel (unleaded/E85),300,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,30,18,1385,30535 +Chevrolet,Impala Limited,2016,flex-fuel (unleaded/E85),300,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,30,18,1385,25830 +Chevrolet,Impala,2015,regular unleaded,195,4,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,31,21,1385,34465 +Chevrolet,Impala,2015,regular unleaded,195,4,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,31,21,1385,27060 +Chevrolet,Impala,2015,flex-fuel (unleaded/natural gas),,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,25,17,1385,40660 +Chevrolet,Impala,2015,flex-fuel (unleaded/E85),305,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,29,19,1385,35440 +Chevrolet,Impala,2015,flex-fuel (unleaded/E85),305,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,29,19,1385,30285 +Chevrolet,Impala,2015,regular unleaded,195,4,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,31,21,1385,29310 +Chevrolet,Impala,2015,regular unleaded,195,4,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,31,21,1385,27060 +Chevrolet,Impala,2015,flex-fuel (unleaded/natural gas),,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,25,17,1385,37535 +Chevrolet,Impala,2016,flex-fuel (unleaded/natural gas),,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,25,17,1385,40810 +Chevrolet,Impala,2016,flex-fuel (unleaded/E85),305,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,29,19,1385,35540 +Chevrolet,Impala,2016,flex-fuel (unleaded/natural gas),,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,25,17,1385,37570 +Chevrolet,Impala,2016,flex-fuel (unleaded/E85),305,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,29,19,1385,30435 +Chevrolet,Impala,2016,regular unleaded,195,4,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,31,22,1385,27095 +Chevrolet,Impala,2016,regular unleaded,195,4,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,31,22,1385,29460 +Chevrolet,Impala,2016,regular unleaded,195,4,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,31,22,1385,27095 +Chevrolet,Impala,2017,flex-fuel (unleaded/E85),305,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,28,19,1385,35645 +Chevrolet,Impala,2017,flex-fuel (unleaded/natural gas),,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,25,17,1385,37675 +Chevrolet,Impala,2017,flex-fuel (unleaded/natural gas),,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,25,17,1385,40915 +Chrysler,Imperial,1991,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,23,15,1013,2000 +Chrysler,Imperial,1992,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,23,16,1013,2000 +Chrysler,Imperial,1993,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,24,17,1013,2000 +Subaru,Impreza WRX,2013,premium unleaded (required),265,4,MANUAL,all wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,25,19,640,28295 +Subaru,Impreza WRX,2013,premium unleaded (required),265,4,MANUAL,all wheel drive,4,Performance,Compact,Sedan,25,19,640,29295 +Subaru,Impreza WRX,2013,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Hatchback,Factory Tuner,High-Performance",Compact,4dr Hatchback,23,17,640,36295 +Subaru,Impreza WRX,2013,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Factory Tuner,High-Performance",Compact,Sedan,23,17,640,37645 +Subaru,Impreza WRX,2013,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Factory Tuner,High-Performance",Compact,Sedan,23,17,640,34295 +Subaru,Impreza WRX,2013,premium unleaded (required),265,4,MANUAL,all wheel drive,4,Performance,Compact,Sedan,25,19,640,25795 +Subaru,Impreza WRX,2013,premium unleaded (required),265,4,MANUAL,all wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,25,19,640,29295 +Subaru,Impreza WRX,2013,premium unleaded (required),265,4,MANUAL,all wheel drive,4,Performance,Compact,Sedan,25,19,640,28295 +Subaru,Impreza WRX,2013,premium unleaded (required),265,4,MANUAL,all wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,25,19,640,25795 +Subaru,Impreza WRX,2014,premium unleaded (required),265,4,MANUAL,all wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,25,19,640,28495 +Subaru,Impreza WRX,2014,premium unleaded (required),265,4,MANUAL,all wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,25,19,640,29495 +Subaru,Impreza WRX,2014,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Factory Tuner,High-Performance",Compact,Sedan,23,17,640,34495 +Subaru,Impreza WRX,2014,premium unleaded (required),265,4,MANUAL,all wheel drive,4,Performance,Compact,Sedan,25,19,640,25995 +Subaru,Impreza WRX,2014,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Hatchback,Factory Tuner,High-Performance",Compact,4dr Hatchback,23,17,640,36495 +Subaru,Impreza WRX,2014,premium unleaded (required),265,4,MANUAL,all wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,25,19,640,25995 +Subaru,Impreza WRX,2014,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Factory Tuner,High-Performance",Compact,Sedan,23,17,640,37845 +Subaru,Impreza WRX,2014,premium unleaded (required),265,4,MANUAL,all wheel drive,4,Performance,Compact,Sedan,25,19,640,28495 +Subaru,Impreza WRX,2014,premium unleaded (required),265,4,MANUAL,all wheel drive,4,Performance,Compact,Sedan,25,19,640,29495 +Subaru,Impreza,2015,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,640,21495 +Subaru,Impreza,2015,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,36,27,640,23295 +Subaru,Impreza,2015,regular unleaded,148,4,MANUAL,all wheel drive,4,Hatchback,Compact,4dr Hatchback,33,24,640,20995 +Subaru,Impreza,2015,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,37,28,640,20995 +Subaru,Impreza,2015,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,640,22795 +Subaru,Impreza,2015,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,640,19695 +Subaru,Impreza,2015,regular unleaded,148,4,MANUAL,all wheel drive,4,Hatchback,Compact,4dr Hatchback,34,25,640,18695 +Subaru,Impreza,2015,regular unleaded,148,4,MANUAL,all wheel drive,4,N/A,Compact,Sedan,34,25,640,18195 +Subaru,Impreza,2015,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,37,28,640,22295 +Subaru,Impreza,2015,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,36,27,640,21995 +Subaru,Impreza,2015,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,37,28,640,19195 +Subaru,Impreza,2016,regular unleaded,148,4,MANUAL,all wheel drive,4,N/A,Compact,Sedan,34,25,640,18295 +Subaru,Impreza,2016,regular unleaded,148,4,MANUAL,all wheel drive,4,Hatchback,Compact,4dr Hatchback,33,24,640,21095 +Subaru,Impreza,2016,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,640,22095 +Subaru,Impreza,2016,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,37,28,640,21095 +Subaru,Impreza,2016,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,640,21595 +Subaru,Impreza,2016,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,640,19795 +Subaru,Impreza,2016,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,640,23595 +Subaru,Impreza,2016,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,37,28,640,19295 +Subaru,Impreza,2016,regular unleaded,148,4,MANUAL,all wheel drive,4,Hatchback,Compact,4dr Hatchback,34,25,640,18795 +Subaru,Impreza,2016,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,37,28,640,22595 +Subaru,Impreza,2016,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,640,23095 +Subaru,Impreza,2017,regular unleaded,152,4,MANUAL,all wheel drive,4,N/A,Midsize,Sedan,38,28,640,18395 +Subaru,Impreza,2017,regular unleaded,152,4,MANUAL,all wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,640,18895 +Subaru,Impreza,2017,regular unleaded,152,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,640,21695 +Subaru,Impreza,2017,regular unleaded,152,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,38,28,640,21195 +Subaru,Impreza,2017,regular unleaded,152,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,640,24595 +Subaru,Impreza,2017,regular unleaded,152,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,38,28,640,24095 +Subaru,Impreza,2017,regular unleaded,152,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,36,27,640,22795 +Subaru,Impreza,2017,regular unleaded,152,4,MANUAL,all wheel drive,4,N/A,Midsize,Sedan,36,27,640,21995 +Subaru,Impreza,2017,regular unleaded,152,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,640,19895 +Subaru,Impreza,2017,regular unleaded,152,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,640,23295 +Subaru,Impreza,2017,regular unleaded,152,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,38,28,640,19395 +Subaru,Impreza,2017,regular unleaded,152,4,MANUAL,all wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,640,22495 +Scion,iM,2016,regular unleaded,137,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,27,105,18460 +Scion,iM,2016,regular unleaded,137,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,28,105,19200 +Honda,Insight,2012,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,23690 +Honda,Insight,2012,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,18500 +Honda,Insight,2012,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,20275 +Honda,Insight,2012,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,18500 +Honda,Insight,2012,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,21965 +Honda,Insight,2012,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,20275 +Honda,Insight,2012,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,21965 +Honda,Insight,2012,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,23690 +Honda,Insight,2013,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,22065 +Honda,Insight,2013,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,20375 +Honda,Insight,2013,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,23790 +Honda,Insight,2013,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,20375 +Honda,Insight,2013,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,18600 +Honda,Insight,2013,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,23790 +Honda,Insight,2013,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,18600 +Honda,Insight,2013,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,22065 +Honda,Insight,2014,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,22190 +Honda,Insight,2014,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,23915 +Honda,Insight,2014,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,18725 +Honda,Insight,2014,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,44,41,2202,20500 +Acura,Integra,1999,regular unleaded,140,4,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,29,22,204,2827 +Acura,Integra,1999,regular unleaded,140,4,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,29,22,204,3000 +Acura,Integra,1999,regular unleaded,140,4,MANUAL,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,29,22,204,2912 +Acura,Integra,1999,regular unleaded,170,4,MANUAL,front wheel drive,4,"Luxury,Performance",Compact,Sedan,28,22,204,3381 +Acura,Integra,1999,regular unleaded,170,4,MANUAL,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,28,22,204,3355 +Acura,Integra,1999,regular unleaded,140,4,MANUAL,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,29,22,204,2799 +Acura,Integra,2000,regular unleaded,140,4,MANUAL,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,28,22,204,3130 +Acura,Integra,2000,regular unleaded,140,4,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,28,22,204,3012 +Acura,Integra,2000,regular unleaded,170,4,MANUAL,front wheel drive,4,"Luxury,Performance",Compact,Sedan,28,22,204,3622 +Acura,Integra,2000,regular unleaded,170,4,MANUAL,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,28,22,204,3652 +Acura,Integra,2000,regular unleaded,140,4,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,28,22,204,3222 +Acura,Integra,2000,regular unleaded,195,4,MANUAL,front wheel drive,2,"Hatchback,Factory Tuner,Luxury,Performance",Compact,2dr Hatchback,28,22,204,7398 +Acura,Integra,2000,regular unleaded,140,4,MANUAL,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,28,22,204,3086 +Acura,Integra,2001,premium unleaded (required),170,4,MANUAL,front wheel drive,4,"Luxury,Performance",Compact,Sedan,28,22,204,22600 +Acura,Integra,2001,regular unleaded,140,4,MANUAL,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,28,22,204,21050 +Acura,Integra,2001,regular unleaded,140,4,MANUAL,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,28,22,204,19400 +Acura,Integra,2001,regular unleaded,140,4,AUTOMATIC,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,28,21,204,20200 +Acura,Integra,2001,regular unleaded,140,4,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,28,22,204,21600 +Acura,Integra,2001,regular unleaded,140,4,AUTOMATIC,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,28,21,204,21850 +Acura,Integra,2001,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Sedan,28,21,204,21000 +Acura,Integra,2001,regular unleaded,140,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Sedan,28,21,204,22400 +Acura,Integra,2001,premium unleaded (required),195,4,MANUAL,front wheel drive,2,"Hatchback,Factory Tuner,Luxury,Performance",Compact,2dr Hatchback,28,22,204,24450 +Acura,Integra,2001,regular unleaded,140,4,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,28,22,204,20200 +Acura,Integra,2001,premium unleaded (required),170,4,MANUAL,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,28,22,204,22300 +Dodge,Intrepid,2002,regular unleaded,244,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,24,16,1851,27055 +Dodge,Intrepid,2002,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,18,1851,20810 +Dodge,Intrepid,2002,regular unleaded,234,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,24,16,1851,22970 +Dodge,Intrepid,2003,regular unleaded,244,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,25,17,1851,24875 +Dodge,Intrepid,2003,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,19,1851,21155 +Dodge,Intrepid,2004,regular unleaded,234,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,25,17,1851,25415 +Dodge,Intrepid,2004,regular unleaded,244,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,25,16,1851,25105 +Dodge,Intrepid,2004,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,19,1851,21385 +Oldsmobile,Intrigue,2000,regular unleaded,215,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,17,26,2233 +Oldsmobile,Intrigue,2000,regular unleaded,215,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,17,26,2484 +Oldsmobile,Intrigue,2000,regular unleaded,215,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,17,26,2290 +Oldsmobile,Intrigue,2001,regular unleaded,215,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,17,26,22515 +Oldsmobile,Intrigue,2001,regular unleaded,215,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,17,26,26635 +Oldsmobile,Intrigue,2001,regular unleaded,215,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,17,26,24270 +Oldsmobile,Intrigue,2002,regular unleaded,215,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,26,28070 +Oldsmobile,Intrigue,2002,regular unleaded,215,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,26,24580 +Oldsmobile,Intrigue,2002,regular unleaded,215,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,26,23160 +Scion,iQ,2013,regular unleaded,94,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,37,36,105,15495 +Scion,iQ,2014,regular unleaded,94,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,37,36,105,17850 +Scion,iQ,2014,regular unleaded,94,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,37,36,105,15665 +Scion,iQ,2015,regular unleaded,94,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,37,36,105,15665 +Lexus,IS 200t,2016,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,33,22,454,37325 +Lexus,IS 200t,2017,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,32,22,454,37825 +Lexus,IS 250 C,2013,premium unleaded (required),204,6,AUTOMATIC,rear wheel drive,2,Luxury,Compact,Convertible,30,21,454,42610 +Lexus,IS 250 C,2014,premium unleaded (required),204,6,AUTOMATIC,rear wheel drive,2,Luxury,Compact,Convertible,30,21,454,42860 +Lexus,IS 250 C,2015,premium unleaded (required),204,6,AUTOMATIC,rear wheel drive,2,Luxury,Compact,Convertible,30,21,454,43360 +Lexus,IS 250,2013,premium unleaded (required),204,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,30,21,454,35065 +Lexus,IS 250,2013,premium unleaded (required),204,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,27,21,454,37525 +Lexus,IS 250,2014,premium unleaded (required),204,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,30,21,454,36100 +Lexus,IS 250,2014,premium unleaded (required),204,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,27,20,454,38635 +Lexus,IS 250,2015,premium unleaded (required),204,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,30,21,454,36550 +Lexus,IS 250,2015,premium unleaded (required),204,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,30,21,454,41440 +Lexus,IS 250,2015,premium unleaded (required),204,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,27,20,454,39085 +Lexus,IS 250,2015,premium unleaded (required),204,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,27,20,454,43690 +Lexus,IS 300,2005,premium unleaded (required),215,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Compact,Wagon,23,16,454,31105 +Lexus,IS 300,2005,premium unleaded (required),215,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Compact,Sedan,23,16,454,31105 +Lexus,IS 300,2005,premium unleaded (required),215,6,MANUAL,rear wheel drive,4,"Luxury,Performance",Compact,Sedan,23,16,454,29735 +Lexus,IS 300,2016,premium unleaded (required),255,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,19,454,39700 +Lexus,IS 300,2017,premium unleaded (required),255,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,19,454,40200 +Lexus,IS 350 C,2013,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,27,19,454,46890 +Lexus,IS 350 C,2014,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,27,19,454,47140 +Lexus,IS 350 C,2015,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,27,19,454,47640 +Lexus,IS 350,2014,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,28,19,454,39615 +Lexus,IS 350,2014,premium unleaded (required),306,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,19,454,41850 +Lexus,IS 350,2015,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,28,19,454,40065 +Lexus,IS 350,2015,premium unleaded (required),306,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,19,454,42300 +Lexus,IS 350,2016,premium unleaded (required),306,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,19,454,43035 +Lexus,IS 350,2016,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,28,19,454,40870 +Lexus,IS F,2012,premium unleaded (required),416,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,23,16,454,61300 +Lexus,IS F,2013,premium unleaded (required),416,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,23,16,454,61750 +Lexus,IS F,2014,premium unleaded (required),416,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,23,16,454,63600 +Infiniti,J30,1995,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,22,16,190,2000 +Infiniti,J30,1996,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,22,16,190,2000 +Infiniti,J30,1996,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,22,16,190,2000 +Infiniti,J30,1997,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,22,16,190,2081 +Infiniti,J30,1997,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,22,16,190,2032 +Infiniti,J30,1997,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,22,16,190,2081 +Infiniti,J30,1997,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,22,16,190,2000 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,25270 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,26195 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,24170 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,29525 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,27295 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,27295 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,28200 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,24170 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,26420 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,27520 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,29300 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,25045 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,29300 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,26195 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,28425 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,28200 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,23945 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,27520 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,28425 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),200,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,25045 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),200,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,23945 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,25270 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,29525 +Volkswagen,Jetta GLI,2013,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,22,873,26420 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,23,873,24535 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,30875 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,28555 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,23,873,29775 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,23,873,28855 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,27925 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,23,873,27455 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,30875 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,25635 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,23,873,29775 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,23,873,27455 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,23,873,28855 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,25635 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,23,873,24535 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,23,873,26825 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,28555 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,27925 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,29955 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,32,24,873,29955 +Volkswagen,Jetta GLI,2014,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,33,23,873,26825 +Volkswagen,Jetta Hybrid,2013,premium unleaded (required),170,4,AUTOMATED_MANUAL,front wheel drive,4,Hybrid,Midsize,Sedan,48,42,873,26990 +Volkswagen,Jetta Hybrid,2013,premium unleaded (required),170,4,AUTOMATED_MANUAL,front wheel drive,4,Hybrid,Midsize,Sedan,48,42,873,24995 +Volkswagen,Jetta Hybrid,2013,premium unleaded (required),170,4,AUTOMATED_MANUAL,front wheel drive,4,Hybrid,Midsize,Sedan,48,42,873,29325 +Volkswagen,Jetta Hybrid,2013,premium unleaded (required),170,4,AUTOMATED_MANUAL,front wheel drive,4,Hybrid,Midsize,Sedan,48,42,873,31180 +Volkswagen,Jetta Hybrid,2014,premium unleaded (required),170,4,AUTOMATED_MANUAL,front wheel drive,4,Hybrid,Midsize,Sedan,48,42,873,31895 +Volkswagen,Jetta Hybrid,2014,premium unleaded (required),170,4,AUTOMATED_MANUAL,front wheel drive,4,Hybrid,Midsize,Sedan,48,42,873,25560 +Volkswagen,Jetta Hybrid,2014,premium unleaded (required),170,4,AUTOMATED_MANUAL,front wheel drive,4,Hybrid,Midsize,Sedan,48,42,873,27645 +Volkswagen,Jetta Hybrid,2014,premium unleaded (required),170,4,AUTOMATED_MANUAL,front wheel drive,4,Hybrid,Midsize,Sedan,48,42,873,30245 +Volkswagen,Jetta SportWagen,2012,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,24,873,24210 +Volkswagen,Jetta SportWagen,2012,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,24,873,21295 +Volkswagen,Jetta SportWagen,2012,diesel,140,4,MANUAL,front wheel drive,4,Diesel,Compact,Wagon,42,30,873,28120 +Volkswagen,Jetta SportWagen,2012,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,24,873,24210 +Volkswagen,Jetta SportWagen,2012,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,24,873,21295 +Volkswagen,Jetta SportWagen,2012,regular unleaded,170,5,MANUAL,front wheel drive,4,N/A,Compact,Wagon,33,23,873,20195 +Volkswagen,Jetta SportWagen,2012,regular unleaded,170,5,MANUAL,front wheel drive,4,N/A,Compact,Wagon,33,23,873,20195 +Volkswagen,Jetta SportWagen,2012,diesel,140,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Compact,Wagon,39,29,873,28390 +Volkswagen,Jetta SportWagen,2012,diesel,140,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Compact,Wagon,39,29,873,29220 +Volkswagen,Jetta SportWagen,2012,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,24,873,25960 +Volkswagen,Jetta SportWagen,2012,diesel,140,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Compact,Wagon,39,29,873,26640 +Volkswagen,Jetta SportWagen,2012,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,24,873,25960 +Volkswagen,Jetta SportWagen,2012,diesel,140,4,MANUAL,front wheel drive,4,Diesel,Compact,Wagon,42,30,873,25540 +Volkswagen,Jetta SportWagen,2012,diesel,140,4,MANUAL,front wheel drive,4,Diesel,Compact,Wagon,42,30,873,27290 +Volkswagen,Jetta SportWagen,2013,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,24,873,21695 +Volkswagen,Jetta SportWagen,2013,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,24,873,21695 +Volkswagen,Jetta SportWagen,2013,diesel,140,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Compact,Wagon,39,29,873,29495 +Volkswagen,Jetta SportWagen,2013,regular unleaded,170,5,MANUAL,front wheel drive,4,N/A,Compact,Wagon,33,23,873,20595 +Volkswagen,Jetta SportWagen,2013,diesel,140,4,MANUAL,front wheel drive,4,Diesel,Compact,Wagon,42,30,873,28395 +Volkswagen,Jetta SportWagen,2013,diesel,140,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Compact,Wagon,39,29,873,26895 +Volkswagen,Jetta SportWagen,2013,regular unleaded,170,5,MANUAL,front wheel drive,4,N/A,Compact,Wagon,33,23,873,20595 +Volkswagen,Jetta SportWagen,2013,diesel,140,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Compact,Wagon,39,29,873,28695 +Volkswagen,Jetta SportWagen,2013,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,24,873,24395 +Volkswagen,Jetta SportWagen,2013,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,24,873,26195 +Volkswagen,Jetta SportWagen,2013,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,24,873,26195 +Volkswagen,Jetta SportWagen,2013,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,24,873,24395 +Volkswagen,Jetta SportWagen,2013,diesel,140,4,MANUAL,front wheel drive,4,Diesel,Compact,Wagon,42,30,873,27595 +Volkswagen,Jetta SportWagen,2013,diesel,140,4,MANUAL,front wheel drive,4,Diesel,Compact,Wagon,42,30,873,25795 +Volkswagen,Jetta SportWagen,2014,regular unleaded,170,5,MANUAL,front wheel drive,4,N/A,Compact,Wagon,33,23,873,20995 +Volkswagen,Jetta SportWagen,2014,diesel,140,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Compact,Wagon,39,29,873,27665 +Volkswagen,Jetta SportWagen,2014,diesel,140,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Compact,Wagon,39,29,873,30265 +Volkswagen,Jetta SportWagen,2014,diesel,140,4,MANUAL,front wheel drive,4,Diesel,Compact,Wagon,42,30,873,29165 +Volkswagen,Jetta SportWagen,2014,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,23,873,26685 +Volkswagen,Jetta SportWagen,2014,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,23,873,24885 +Volkswagen,Jetta SportWagen,2014,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,23,873,22095 +Volkswagen,Jetta SportWagen,2014,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,23,873,26685 +Volkswagen,Jetta SportWagen,2014,regular unleaded,170,5,MANUAL,front wheel drive,4,N/A,Compact,Wagon,33,23,873,20995 +Volkswagen,Jetta SportWagen,2014,diesel,140,4,MANUAL,front wheel drive,4,Diesel,Compact,Wagon,42,30,873,26565 +Volkswagen,Jetta SportWagen,2014,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,23,873,24885 +Volkswagen,Jetta SportWagen,2014,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,23,873,22095 +Volkswagen,Jetta SportWagen,2014,diesel,140,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Compact,Wagon,39,29,873,29465 +Volkswagen,Jetta SportWagen,2014,diesel,140,4,MANUAL,front wheel drive,4,Diesel,Compact,Wagon,42,30,873,28365 +Volkswagen,Jetta,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,25,873,22325 +Volkswagen,Jetta,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,33,23,873,29280 +Volkswagen,Jetta,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,25,873,23650 +Volkswagen,Jetta,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,25,873,25380 +Volkswagen,Jetta,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Midsize,Sedan,45,31,873,25175 +Volkswagen,Jetta,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,33,23,873,26920 +Volkswagen,Jetta,2015,regular unleaded,170,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,37,25,873,20895 +Volkswagen,Jetta,2015,diesel,150,4,MANUAL,front wheel drive,4,Diesel,Midsize,Sedan,46,31,873,21640 +Volkswagen,Jetta,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,33,23,873,26920 +Volkswagen,Jetta,2015,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,32,24,873,28020 +Volkswagen,Jetta,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Midsize,Sedan,45,31,873,22740 +Volkswagen,Jetta,2015,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,32,24,873,30380 +Volkswagen,Jetta,2015,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,33,23,873,29280 +Volkswagen,Jetta,2015,diesel,150,4,MANUAL,front wheel drive,4,Diesel,Midsize,Sedan,46,31,873,24075 +Volkswagen,Jetta,2015,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,32,24,873,30380 +Volkswagen,Jetta,2015,regular unleaded,115,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,34,25,873,16215 +Volkswagen,Jetta,2015,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,32,24,873,28020 +Volkswagen,Jetta,2015,regular unleaded,115,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,34,25,873,17325 +Volkswagen,Jetta,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,25,873,20095 +Volkswagen,Jetta,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,25,873,23650 +Volkswagen,Jetta,2015,regular unleaded,170,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,37,25,873,18995 +Volkswagen,Jetta,2015,diesel,150,4,MANUAL,front wheel drive,4,Diesel,Midsize,Sedan,46,31,873,26410 +Volkswagen,Jetta,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,25,873,22325 +Volkswagen,Jetta,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,25,873,20095 +Volkswagen,Jetta,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,25,873,25380 +Volkswagen,Jetta,2015,premium unleaded (required),170,4,AUTOMATED_MANUAL,front wheel drive,4,Hybrid,Midsize,Sedan,48,42,873,31670 +Volkswagen,Jetta,2015,regular unleaded,115,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,23,873,18425 +Volkswagen,Jetta,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Midsize,Sedan,45,31,873,27510 +Volkswagen,Jetta,2015,regular unleaded,115,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,23,873,19420 +Volkswagen,Jetta,2015,regular unleaded,115,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,34,25,873,18320 +Volkswagen,Jetta,2015,regular unleaded,170,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,37,25,873,18995 +Volkswagen,Jetta,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,25,873,21995 +Volkswagen,Jetta,2016,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,28,873,22325 +Volkswagen,Jetta,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,873,23650 +Volkswagen,Jetta,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,33,23,873,29280 +Volkswagen,Jetta,2016,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,28,873,19775 +Volkswagen,Jetta,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,873,25380 +Volkswagen,Jetta,2016,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,33,24,873,28020 +Volkswagen,Jetta,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,33,23,873,26920 +Volkswagen,Jetta,2016,regular unleaded,150,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,39,28,873,18675 +Volkswagen,Jetta,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,33,23,873,26920 +Volkswagen,Jetta,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,873,23650 +Volkswagen,Jetta,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,873,21995 +Volkswagen,Jetta,2016,regular unleaded,150,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,39,28,873,18995 +Volkswagen,Jetta,2016,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,28,873,20095 +Volkswagen,Jetta,2016,regular unleaded,170,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,37,25,873,20895 +Volkswagen,Jetta,2016,premium unleaded (required),170,4,AUTOMATED_MANUAL,front wheel drive,4,Hybrid,Midsize,Sedan,48,42,873,31120 +Volkswagen,Jetta,2016,regular unleaded,150,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,39,28,873,17680 +Volkswagen,Jetta,2016,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,33,24,873,28020 +Volkswagen,Jetta,2016,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,28,873,18780 +Volkswagen,Jetta,2016,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,33,24,873,30380 +Volkswagen,Jetta,2016,premium unleaded (recommended),210,4,AUTOMATIC,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,33,24,873,30380 +Volkswagen,Jetta,2016,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,33,23,873,29280 +Volkswagen,Jetta,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,873,25380 +Volkswagen,Jetta,2017,premium unleaded (recommended),210,4,AUTOMATED_MANUAL,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,33,24,873,28995 +Volkswagen,Jetta,2017,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,28,873,21995 +Volkswagen,Jetta,2017,regular unleaded,150,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,40,28,873,20895 +Volkswagen,Jetta,2017,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,28,873,18995 +Volkswagen,Jetta,2017,regular unleaded,150,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,40,28,873,17895 +Volkswagen,Jetta,2017,premium unleaded (recommended),170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,25,873,24995 +Volkswagen,Jetta,2017,premium unleaded (recommended),210,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,33,23,873,27895 +GMC,Jimmy,1999,regular unleaded,190,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,16,13,549,2347 +GMC,Jimmy,1999,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,19,14,549,2554 +GMC,Jimmy,1999,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,14,549,2590 +GMC,Jimmy,1999,regular unleaded,190,6,UNKNOWN,rear wheel drive,2,N/A,Compact,2dr SUV,19,14,549,2182 +GMC,Jimmy,1999,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,14,549,2691 +GMC,Jimmy,1999,regular unleaded,190,6,UNKNOWN,four wheel drive,2,N/A,Compact,2dr SUV,19,14,549,2317 +GMC,Jimmy,1999,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,14,549,2368 +GMC,Jimmy,1999,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,19,14,549,2377 +GMC,Jimmy,1999,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,19,14,549,2251 +GMC,Jimmy,1999,regular unleaded,190,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,21,15,549,2038 +GMC,Jimmy,2000,regular unleaded,190,6,UNKNOWN,rear wheel drive,2,N/A,Compact,2dr SUV,20,15,549,2407 +GMC,Jimmy,2000,regular unleaded,190,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,16,13,549,2463 +GMC,Jimmy,2000,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,18,14,549,2773 +GMC,Jimmy,2000,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,549,2756 +GMC,Jimmy,2000,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,549,2590 +GMC,Jimmy,2000,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,18,14,549,2916 +GMC,Jimmy,2000,regular unleaded,190,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,21,15,549,2322 +GMC,Jimmy,2000,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,549,2623 +GMC,Jimmy,2000,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,18,14,549,2655 +GMC,Jimmy,2000,regular unleaded,190,6,UNKNOWN,four wheel drive,2,N/A,Compact,2dr SUV,18,14,549,2578 +GMC,Jimmy,2001,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,549,26770 +GMC,Jimmy,2001,regular unleaded,190,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,16,13,549,22270 +GMC,Jimmy,2001,regular unleaded,190,6,AUTOMATIC,four wheel drive,2,N/A,Compact,2dr SUV,18,14,549,25170 +GMC,Jimmy,2001,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,18,14,549,31925 +GMC,Jimmy,2001,regular unleaded,190,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,20,14,549,19270 +GMC,Jimmy,2001,regular unleaded,190,6,AUTOMATIC,rear wheel drive,2,N/A,Compact,2dr SUV,20,15,549,22170 +GMC,Jimmy,2001,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,18,14,549,30225 +GMC,Jimmy,2001,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,549,28225 +GMC,Jimmy,2001,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,18,14,549,33920 +GMC,Jimmy,2001,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,18,14,549,28770 +GMC,Jimmy,2001,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,549,29925 +Dodge,Journey,2015,regular unleaded,283,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,16,1851,33295 +Dodge,Journey,2015,regular unleaded,283,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,16,1851,33295 +Dodge,Journey,2015,regular unleaded,283,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,16,1851,27395 +Dodge,Journey,2015,regular unleaded,283,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,16,1851,28695 +Dodge,Journey,2015,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,19,1851,26595 +Dodge,Journey,2015,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,19,1851,23495 +Dodge,Journey,2015,regular unleaded,283,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,16,1851,29995 +Dodge,Journey,2015,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,19,1851,25195 +Dodge,Journey,2015,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,19,1851,20695 +Dodge,Journey,2015,regular unleaded,283,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,17,1851,31395 +Dodge,Journey,2015,regular unleaded,283,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,17,1851,31395 +Dodge,Journey,2016,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,19,1851,27395 +Dodge,Journey,2016,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,19,1851,26295 +Dodge,Journey,2016,regular unleaded,283,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,16,1851,26595 +Dodge,Journey,2016,regular unleaded,283,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,16,1851,33695 +Dodge,Journey,2016,regular unleaded,283,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,16,1851,28395 +Dodge,Journey,2016,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,25,17,1851,31795 +Dodge,Journey,2016,regular unleaded,283,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,16,1851,30895 +Dodge,Journey,2016,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,19,1851,20995 +Dodge,Journey,2016,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,19,1851,24895 +Dodge,Journey,2016,regular unleaded,283,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,16,1851,29795 +Dodge,Journey,2017,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,19,1851,20995 +Dodge,Journey,2017,regular unleaded,283,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,16,1851,33695 +Dodge,Journey,2017,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,19,1851,26295 +Dodge,Journey,2017,regular unleaded,283,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,16,1851,29795 +Dodge,Journey,2017,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Midsize,4dr SUV,25,17,1851,31795 +Dodge,Journey,2017,regular unleaded,283,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,16,1851,30995 +Dodge,Journey,2017,regular unleaded,283,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,16,1851,26595 +Dodge,Journey,2017,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,19,1851,27495 +Dodge,Journey,2017,regular unleaded,283,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,16,1851,28395 +Dodge,Journey,2017,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,19,1851,24895 +Nissan,Juke,2015,premium unleaded (recommended),188,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,32,28,2009,25240 +Nissan,Juke,2015,premium unleaded (required),215,4,MANUAL,front wheel drive,4,"Crossover,Hatchback,Factory Tuner,Performance",Compact,4dr Hatchback,31,25,2009,28020 +Nissan,Juke,2015,premium unleaded (required),211,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback,Factory Tuner,Performance",Compact,4dr Hatchback,29,25,2009,30020 +Nissan,Juke,2015,premium unleaded (recommended),188,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,31,26,2009,26940 +Nissan,Juke,2015,premium unleaded (recommended),188,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,32,28,2009,20250 +Nissan,Juke,2015,premium unleaded (recommended),188,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,32,28,2009,22300 +Nissan,Juke,2015,premium unleaded (recommended),188,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,31,26,2009,24150 +Nissan,Juke,2015,premium unleaded (recommended),188,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,31,26,2009,22100 +Nissan,Juke,2015,premium unleaded (recommended),188,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback,Performance",Compact,4dr Hatchback,31,26,2009,27230 +Nissan,Juke,2015,premium unleaded (recommended),188,4,MANUAL,front wheel drive,4,"Crossover,Hatchback,Performance",Compact,4dr Hatchback,34,28,2009,24830 +Nissan,Juke,2016,premium unleaded (recommended),188,4,MANUAL,front wheel drive,4,"Crossover,Hatchback,Performance",Compact,4dr Hatchback,34,28,2009,24830 +Nissan,Juke,2016,premium unleaded (recommended),188,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,31,26,2009,22100 +Nissan,Juke,2016,premium unleaded (required),211,4,MANUAL,front wheel drive,4,"Crossover,Hatchback,Factory Tuner,Performance",Compact,4dr Hatchback,31,25,2009,28020 +Nissan,Juke,2016,premium unleaded (recommended),188,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,32,28,2009,22300 +Nissan,Juke,2016,premium unleaded (recommended),188,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,31,26,2009,24150 +Nissan,Juke,2016,premium unleaded (recommended),188,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,31,26,2009,26940 +Nissan,Juke,2016,premium unleaded (required),215,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback,Factory Tuner,Performance",Compact,4dr Hatchback,29,25,2009,30020 +Nissan,Juke,2016,premium unleaded (recommended),188,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,32,28,2009,20250 +Nissan,Juke,2016,premium unleaded (recommended),188,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback,Performance",Compact,4dr Hatchback,31,26,2009,27230 +Nissan,Juke,2016,premium unleaded (recommended),188,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,32,28,2009,25240 +Nissan,Juke,2017,premium unleaded (required),215,4,MANUAL,front wheel drive,4,"Crossover,Hatchback,Factory Tuner,Performance",Compact,4dr Hatchback,31,26,2009,28020 +Nissan,Juke,2017,premium unleaded (recommended),188,4,MANUAL,front wheel drive,4,"Crossover,Hatchback,Performance",Compact,4dr Hatchback,33,27,2009,24830 +Nissan,Juke,2017,premium unleaded (required),211,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback,Factory Tuner,Performance",Compact,4dr Hatchback,29,25,2009,30020 +Nissan,Juke,2017,premium unleaded (recommended),188,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback,Performance",Compact,4dr Hatchback,30,26,2009,27230 +Nissan,Juke,2017,premium unleaded (recommended),188,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,26,2009,26940 +Nissan,Juke,2017,premium unleaded (recommended),188,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,26,2009,24400 +Nissan,Juke,2017,premium unleaded (recommended),188,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,26,2009,22100 +Nissan,Juke,2017,premium unleaded (recommended),188,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,32,28,2009,20250 +Nissan,Juke,2017,premium unleaded (recommended),188,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,32,28,2009,22550 +Nissan,Juke,2017,premium unleaded (recommended),188,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,32,28,2009,25240 +Subaru,Justy,1992,regular unleaded,73,3,MANUAL,four wheel drive,2,Hatchback,Compact,2dr Hatchback,29,24,640,2000 +Subaru,Justy,1992,regular unleaded,73,3,MANUAL,four wheel drive,4,Hatchback,Compact,4dr Hatchback,29,24,640,2000 +Subaru,Justy,1992,regular unleaded,66,3,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,28,640,2000 +Subaru,Justy,1992,regular unleaded,73,3,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,28,640,2000 +Subaru,Justy,1993,regular unleaded,73,3,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,32,28,640,2000 +Subaru,Justy,1993,regular unleaded,73,3,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,32,28,640,2000 +Subaru,Justy,1993,regular unleaded,73,3,MANUAL,four wheel drive,4,Hatchback,Compact,4dr Hatchback,29,24,640,2000 +Subaru,Justy,1993,regular unleaded,73,3,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,28,640,2000 +Subaru,Justy,1994,regular unleaded,73,3,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,33,28,640,2000 +Subaru,Justy,1994,regular unleaded,73,3,MANUAL,four wheel drive,4,Hatchback,Compact,4dr Hatchback,29,24,640,2000 +Infiniti,JX,2013,premium unleaded (recommended),265,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Large,4dr SUV,24,18,190,41250 +Infiniti,JX,2013,premium unleaded (recommended),265,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,23,18,190,42650 +Kia,K900,2015,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,15,1720,59900 +Kia,K900,2015,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,15,1720,54500 +Kia,K900,2016,regular unleaded,311,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,26,17,1720,49000 +Kia,K900,2016,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,15,1720,61900 +Kia,K900,2016,regular unleaded,311,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,26,17,1720,54900 +Suzuki,Kizashi,2011,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,23,481,21049 +Suzuki,Kizashi,2011,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,23,481,22049 +Suzuki,Kizashi,2011,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,23,481,24149 +Suzuki,Kizashi,2011,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,29,22,481,27299 +Suzuki,Kizashi,2011,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,29,22,481,23399 +Suzuki,Kizashi,2011,regular unleaded,185,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,29,20,481,24849 +Suzuki,Kizashi,2011,regular unleaded,185,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,29,20,481,23049 +Suzuki,Kizashi,2011,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,23,481,25949 +Suzuki,Kizashi,2011,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,30,23,481,22099 +Suzuki,Kizashi,2011,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,29,22,481,25499 +Suzuki,Kizashi,2011,regular unleaded,185,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,31,21,481,18999 +Suzuki,Kizashi,2012,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,23,481,23899 +Suzuki,Kizashi,2012,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,29,22,481,25249 +Suzuki,Kizashi,2012,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,29,22,481,27549 +Suzuki,Kizashi,2012,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,23,481,22299 +Suzuki,Kizashi,2012,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,29,22,481,23649 +Suzuki,Kizashi,2012,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,29,22,481,25749 +Suzuki,Kizashi,2012,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,23,481,24399 +Suzuki,Kizashi,2012,regular unleaded,185,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,31,21,481,18999 +Suzuki,Kizashi,2012,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,23,481,26199 +Suzuki,Kizashi,2012,regular unleaded,185,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,29,20,481,25099 +Suzuki,Kizashi,2012,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,23,481,20999 +Suzuki,Kizashi,2012,regular unleaded,185,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,29,20,481,22249 +Suzuki,Kizashi,2012,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,29,22,481,27549 +Suzuki,Kizashi,2012,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,23,481,26199 +Suzuki,Kizashi,2012,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,30,23,481,22349 +Suzuki,Kizashi,2013,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,23,481,25799 +Suzuki,Kizashi,2013,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,23,481,21749 +Suzuki,Kizashi,2013,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,29,22,481,23249 +Suzuki,Kizashi,2013,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,29,22,481,28999 +Suzuki,Kizashi,2013,regular unleaded,185,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,29,20,481,19999 +Suzuki,Kizashi,2013,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,29,22,481,27199 +Buick,LaCrosse,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,"Flex Fuel,Hybrid",Large,Sedan,36,25,155,35725 +Buick,LaCrosse,2015,flex-fuel (unleaded/E85),304,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,28,18,155,31065 +Buick,LaCrosse,2015,flex-fuel (unleaded/E85),304,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Large,Sedan,26,17,155,40500 +Buick,LaCrosse,2015,flex-fuel (unleaded/E85),304,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,28,18,155,39970 +Buick,LaCrosse,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,"Flex Fuel,Hybrid",Large,Sedan,36,25,155,33635 +Buick,LaCrosse,2015,flex-fuel (unleaded/E85),304,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,28,18,155,38025 +Buick,LaCrosse,2015,flex-fuel (unleaded/E85),304,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Large,Sedan,26,17,155,38730 +Buick,LaCrosse,2016,flex-fuel (unleaded/E85),304,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,28,18,155,34065 +Buick,LaCrosse,2016,flex-fuel (unleaded/E85),304,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,28,18,155,40145 +Buick,LaCrosse,2016,flex-fuel (unleaded/E85),304,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Large,Sedan,26,17,155,38905 +Buick,LaCrosse,2016,flex-fuel (unleaded/E85),304,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance,Hybrid",Large,Sedan,28,18,155,35900 +Buick,LaCrosse,2016,flex-fuel (unleaded/E85),304,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance,Hybrid",Large,Sedan,28,18,155,33810 +Buick,LaCrosse,2016,flex-fuel (unleaded/E85),304,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Large,Sedan,26,17,155,40675 +Buick,LaCrosse,2016,flex-fuel (unleaded/E85),304,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,28,18,155,38200 +Buick,LaCrosse,2016,flex-fuel (unleaded/E85),304,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,28,18,155,31065 +Buick,LaCrosse,2017,regular unleaded,310,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,31,21,155,36065 +Buick,LaCrosse,2017,regular unleaded,310,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,31,21,155,38665 +Buick,LaCrosse,2017,regular unleaded,310,6,AUTOMATIC,all wheel drive,4,Performance,Large,Sedan,29,20,155,43265 +Buick,LaCrosse,2017,regular unleaded,310,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,31,21,155,32065 +Buick,LaCrosse,2017,regular unleaded,310,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,31,21,155,41065 +Mitsubishi,Lancer Evolution,2013,premium unleaded (required),291,4,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Performance",Compact,Sedan,22,17,436,37895 +Mitsubishi,Lancer Evolution,2013,premium unleaded (required),291,4,MANUAL,all wheel drive,4,"Factory Tuner,Performance",Compact,Sedan,23,17,436,34695 +Mitsubishi,Lancer Evolution,2014,premium unleaded (required),291,4,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Performance",Compact,Sedan,22,17,436,38195 +Mitsubishi,Lancer Evolution,2014,premium unleaded (required),291,4,MANUAL,all wheel drive,4,"Factory Tuner,Performance",Compact,Sedan,23,17,436,34995 +Mitsubishi,Lancer Evolution,2015,premium unleaded (required),303,4,MANUAL,all wheel drive,4,"Factory Tuner,High-Performance",Compact,Sedan,23,17,436,37995 +Mitsubishi,Lancer Evolution,2015,premium unleaded (required),291,4,MANUAL,all wheel drive,4,"Factory Tuner,Performance",Compact,Sedan,23,17,436,34495 +Mitsubishi,Lancer Evolution,2015,premium unleaded (required),291,4,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Performance",Compact,Sedan,22,17,436,38995 +Mitsubishi,Lancer Sportback,2012,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,22,436,21345 +Mitsubishi,Lancer Sportback,2012,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,32,24,436,18395 +Mitsubishi,Lancer Sportback,2013,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,32,24,436,18495 +Mitsubishi,Lancer Sportback,2013,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,22,436,21495 +Mitsubishi,Lancer Sportback,2014,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,22,436,21945 +Mitsubishi,Lancer Sportback,2014,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,32,24,436,18595 +Mitsubishi,Lancer,2015,regular unleaded,148,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,34,25,436,17395 +Mitsubishi,Lancer,2015,premium unleaded (required),237,4,AUTOMATED_MANUAL,all wheel drive,4,Performance,Compact,Sedan,25,18,436,29495 +Mitsubishi,Lancer,2015,regular unleaded,168,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,31,22,436,20595 +Mitsubishi,Lancer,2015,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,30,23,436,21595 +Mitsubishi,Lancer,2015,regular unleaded,168,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,29,22,436,20995 +Mitsubishi,Lancer,2015,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,34,26,436,18295 +Mitsubishi,Lancer,2016,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,35,27,436,18595 +Mitsubishi,Lancer,2016,regular unleaded,168,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,31,23,436,20995 +Mitsubishi,Lancer,2016,regular unleaded,148,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,34,24,436,17595 +Mitsubishi,Lancer,2016,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,31,24,436,23495 +Mitsubishi,Lancer,2016,regular unleaded,168,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,31,22,436,22495 +Mitsubishi,Lancer,2016,regular unleaded,168,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,31,23,436,19995 +Mitsubishi,Lancer,2016,regular unleaded,168,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,31,23,436,21995 +Mitsubishi,Lancer,2017,regular unleaded,168,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,30,23,436,20295 +Mitsubishi,Lancer,2017,regular unleaded,168,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,30,23,436,21095 +Mitsubishi,Lancer,2017,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,34,27,436,18795 +Mitsubishi,Lancer,2017,regular unleaded,148,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,24,436,17795 +Mitsubishi,Lancer,2017,regular unleaded,168,4,AUTOMATIC,all wheel drive,4,N/A,Compact,Sedan,30,23,436,22095 +Toyota,Land Cruiser,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,18,13,2031,80155 +Toyota,Land Cruiser,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,18,13,2031,83825 +Toyota,Land Cruiser,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,18,13,2031,84325 +Maybach,Landaulet,2011,premium unleaded (required),620,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Convertible,16,10,67,1380000 +Maybach,Landaulet,2012,premium unleaded (required),620,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Convertible,16,10,67,1382750 +Plymouth,Laser,1992,regular unleaded,92,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,21,535,2000 +Plymouth,Laser,1992,regular unleaded,135,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,26,19,535,2000 +Plymouth,Laser,1992,regular unleaded,195,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,26,19,535,2000 +Plymouth,Laser,1992,regular unleaded,195,4,MANUAL,all wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,23,18,535,2000 +Plymouth,Laser,1993,regular unleaded,195,4,MANUAL,all wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,23,18,535,2000 +Plymouth,Laser,1993,regular unleaded,195,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,26,19,535,2000 +Plymouth,Laser,1993,regular unleaded,92,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,21,535,2000 +Plymouth,Laser,1993,regular unleaded,135,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,26,19,535,2000 +Plymouth,Laser,1994,regular unleaded,195,4,MANUAL,all wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,23,18,535,2000 +Plymouth,Laser,1994,regular unleaded,92,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,21,535,2000 +Plymouth,Laser,1994,regular unleaded,195,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,26,19,535,2000 +Plymouth,Laser,1994,regular unleaded,135,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,26,19,535,2000 +Chrysler,Le Baron,1993,regular unleaded,141,6,MANUAL,front wheel drive,2,N/A,Compact,Coupe,26,17,1013,2000 +Chrysler,Le Baron,1993,regular unleaded,141,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,26,18,1013,2000 +Chrysler,Le Baron,1993,regular unleaded,100,4,UNKNOWN,front wheel drive,2,N/A,Compact,Coupe,26,21,1013,2000 +Chrysler,Le Baron,1993,regular unleaded,141,6,MANUAL,front wheel drive,2,N/A,Compact,Convertible,24,17,1013,2000 +Chrysler,Le Baron,1993,regular unleaded,100,4,UNKNOWN,front wheel drive,2,N/A,Compact,Convertible,24,18,1013,2000 +Chrysler,Le Baron,1993,regular unleaded,141,6,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,26,18,1013,2000 +Chrysler,Le Baron,1993,regular unleaded,100,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,26,21,1013,2000 +Chrysler,Le Baron,1993,regular unleaded,141,6,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,26,18,1013,2000 +Chrysler,Le Baron,1994,regular unleaded,141,6,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,26,18,1013,2000 +Chrysler,Le Baron,1994,regular unleaded,142,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,24,18,1013,2000 +Chrysler,Le Baron,1994,regular unleaded,142,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,26,18,1013,2000 +Chrysler,Le Baron,1995,regular unleaded,141,6,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,26,18,1013,2000 +Pontiac,Le Mans,1991,regular unleaded,74,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,34,25,210,2000 +Pontiac,Le Mans,1991,regular unleaded,74,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,36,27,210,2000 +Pontiac,Le Mans,1991,regular unleaded,74,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,27,210,2000 +Pontiac,Le Mans,1992,regular unleaded,74,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,34,24,210,2000 +Pontiac,Le Mans,1992,regular unleaded,74,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,26,210,2000 +Pontiac,Le Mans,1992,regular unleaded,74,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,37,26,210,2000 +Pontiac,Le Mans,1993,regular unleaded,74,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,26,210,2000 +Pontiac,Le Mans,1993,regular unleaded,74,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,34,24,210,2000 +Pontiac,Le Mans,1993,regular unleaded,74,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,37,26,210,2000 +Nissan,Leaf,2014,electric,,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,101,126,2009,35020 +Nissan,Leaf,2014,electric,,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,101,126,2009,32000 +Nissan,Leaf,2014,electric,,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,101,126,2009,28980 +Nissan,Leaf,2015,electric,,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,101,126,2009,32100 +Nissan,Leaf,2015,electric,,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,101,126,2009,35120 +Nissan,Leaf,2015,electric,,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,101,126,2009,29010 +Nissan,Leaf,2015,electric,,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,101,126,2009,32000 +Nissan,Leaf,2016,electric,,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,101,126,2009,29010 +Nissan,Leaf,2016,electric,,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,101,124,2009,34200 +Nissan,Leaf,2016,electric,,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,101,124,2009,36790 +Subaru,Legacy,2015,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,36,26,640,26495 +Subaru,Legacy,2015,regular unleaded,256,6,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,28,20,640,29595 +Subaru,Legacy,2015,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,36,26,640,26795 +Subaru,Legacy,2015,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,36,26,640,23495 +Subaru,Legacy,2015,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,36,26,640,21995 +Subaru,Legacy,2015,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,36,26,640,23795 +Subaru,Legacy,2015,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,36,26,640,21695 +Subaru,Legacy,2016,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,36,26,640,21745 +Subaru,Legacy,2016,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,36,26,640,26845 +Subaru,Legacy,2016,regular unleaded,256,6,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,29,20,640,29945 +Subaru,Legacy,2016,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,36,26,640,23845 +Subaru,Legacy,2016,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,36,26,640,22045 +Subaru,Legacy,2016,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,36,26,640,27145 +Subaru,Legacy,2016,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,36,26,640,24145 +Subaru,Legacy,2017,regular unleaded,256,6,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,28,20,640,31640 +Subaru,Legacy,2017,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,34,25,640,23995 +Subaru,Legacy,2017,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,34,25,640,21995 +Subaru,Legacy,2017,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,34,25,640,25995 +Subaru,Legacy,2017,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,34,25,640,28840 +Acura,Legend,1993,regular unleaded,200,6,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,23,15,204,2000 +Acura,Legend,1993,regular unleaded,200,6,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,23,16,204,2060 +Acura,Legend,1993,regular unleaded,230,6,MANUAL,front wheel drive,2,"Luxury,Performance",Midsize,Coupe,23,15,204,2042 +Acura,Legend,1993,regular unleaded,200,6,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,23,16,204,2000 +Acura,Legend,1993,regular unleaded,230,6,MANUAL,front wheel drive,2,"Luxury,Performance",Midsize,Coupe,23,15,204,2000 +Acura,Legend,1994,regular unleaded,230,6,MANUAL,front wheel drive,2,"Luxury,Performance",Midsize,Coupe,24,16,204,2181 +Acura,Legend,1994,regular unleaded,200,6,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,23,16,204,2028 +Acura,Legend,1994,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,22,17,204,2063 +Acura,Legend,1994,regular unleaded,230,6,MANUAL,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,16,204,2066 +Acura,Legend,1994,regular unleaded,230,6,MANUAL,front wheel drive,2,"Luxury,Performance",Midsize,Coupe,24,16,204,2384 +Acura,Legend,1995,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,22,17,204,2356 +Acura,Legend,1995,regular unleaded,230,6,MANUAL,front wheel drive,2,"Luxury,Performance",Midsize,Coupe,24,16,204,2506 +Acura,Legend,1995,regular unleaded,230,6,MANUAL,front wheel drive,2,"Luxury,Performance",Midsize,Coupe,24,16,204,2265 +Acura,Legend,1995,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,22,17,204,2144 +Acura,Legend,1995,regular unleaded,200,6,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,23,16,204,2135 +Acura,Legend,1995,regular unleaded,230,6,MANUAL,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,16,204,2066 +Buick,LeSabre,2003,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,17,155,25645 +Buick,LeSabre,2003,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,17,155,31420 +Buick,LeSabre,2004,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,18,155,26040 +Buick,LeSabre,2004,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,18,155,32085 +Buick,LeSabre,2005,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,18,155,26725 +Buick,LeSabre,2005,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,18,155,32385 +Maserati,Levante,2017,premium unleaded (required),424,6,AUTOMATIC,all wheel drive,4,"Crossover,Exotic,Luxury,High-Performance",Large,4dr SUV,19,14,238,83000 +Maserati,Levante,2017,premium unleaded (required),345,6,AUTOMATIC,all wheel drive,4,"Crossover,Exotic,Luxury,Performance",Large,4dr SUV,20,14,238,72000 +Lexus,LFA,2012,premium unleaded (required),552,10,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Coupe,16,11,454,375000 +Chrysler,LHS,1999,regular unleaded,253,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,24,16,1013,2000 +Chrysler,LHS,2000,regular unleaded,253,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,24,16,1013,2087 +Chrysler,LHS,2001,premium unleaded (required),253,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,24,16,1013,28680 +Subaru,Loyale,1992,regular unleaded,90,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,28,22,640,2000 +Subaru,Loyale,1992,regular unleaded,90,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,29,22,640,2000 +Subaru,Loyale,1992,regular unleaded,90,4,MANUAL,four wheel drive,4,N/A,Compact,Wagon,26,21,640,2000 +Subaru,Loyale,1992,regular unleaded,90,4,MANUAL,four wheel drive,4,N/A,Compact,Sedan,26,21,640,2000 +Subaru,Loyale,1993,regular unleaded,90,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,28,22,640,2000 +Subaru,Loyale,1993,regular unleaded,90,4,MANUAL,four wheel drive,4,N/A,Compact,Wagon,26,21,640,2000 +Subaru,Loyale,1993,regular unleaded,90,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,29,22,640,2000 +Subaru,Loyale,1993,regular unleaded,90,4,MANUAL,four wheel drive,4,N/A,Compact,Sedan,26,21,640,2000 +Subaru,Loyale,1994,regular unleaded,90,4,MANUAL,four wheel drive,4,N/A,Compact,Wagon,26,21,640,2000 +Land Rover,LR2,2013,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,24,17,258,36400 +Land Rover,LR2,2013,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,24,17,258,41500 +Land Rover,LR2,2013,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,24,17,258,38900 +Land Rover,LR2,2014,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,24,17,258,36600 +Land Rover,LR2,2014,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,24,17,258,39100 +Land Rover,LR2,2014,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,24,17,258,41700 +Land Rover,LR2,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,24,17,258,36600 +Land Rover,LR2,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,24,17,258,39100 +Land Rover,LR2,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,24,17,258,41700 +Land Rover,LR3,2008,premium unleaded (required),300,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,17,12,258,48525 +Land Rover,LR3,2008,premium unleaded (required),300,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,17,12,258,54025 +Land Rover,LR3,2009,premium unleaded (required),300,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,17,12,258,45975 +Land Rover,LR4,2014,premium unleaded (required),340,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,19,14,258,49700 +Land Rover,LR4,2014,premium unleaded (required),340,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,19,14,258,59900 +Land Rover,LR4,2014,premium unleaded (required),340,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,19,14,258,54600 +Land Rover,LR4,2014,premium unleaded (required),340,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,19,14,258,69279 +Land Rover,LR4,2015,premium unleaded (required),340,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,19,14,258,60600 +Land Rover,LR4,2015,premium unleaded (required),340,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,19,14,258,50400 +Land Rover,LR4,2015,premium unleaded (required),340,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,19,14,258,55300 +Land Rover,LR4,2016,premium unleaded (required),340,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,19,15,258,50400 +Land Rover,LR4,2016,premium unleaded (required),340,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,19,15,258,55300 +Land Rover,LR4,2016,premium unleaded (required),340,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,19,15,258,60600 +Lexus,LS 400,1998,regular unleaded,290,8,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,23,17,454,4207 +Lexus,LS 400,1999,regular unleaded,290,8,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,23,16,454,4556 +Lexus,LS 400,2000,regular unleaded,290,8,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,23,16,454,5035 +Lexus,LS 430,2004,premium unleaded (required),290,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,454,55375 +Lexus,LS 430,2005,premium unleaded (required),290,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,454,56225 +Lexus,LS 430,2006,premium unleaded (required),278,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,454,56525 +Lexus,LS 460,2015,premium unleaded (required),360,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,454,82305 +Lexus,LS 460,2015,premium unleaded (required),386,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,16,454,84500 +Lexus,LS 460,2015,premium unleaded (required),386,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,454,78820 +Lexus,LS 460,2015,premium unleaded (required),386,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,454,72520 +Lexus,LS 460,2015,premium unleaded (required),360,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,454,75465 +Lexus,LS 460,2015,premium unleaded (required),360,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,454,87500 +Lexus,LS 460,2016,premium unleaded (required),360,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,454,75465 +Lexus,LS 460,2016,premium unleaded (required),386,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,454,78820 +Lexus,LS 460,2016,premium unleaded (required),386,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,454,72520 +Lexus,LS 460,2016,premium unleaded (required),360,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,454,82305 +Lexus,LS 460,2017,premium unleaded (required),359,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,454,82305 +Lexus,LS 460,2017,premium unleaded (required),386,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,454,72520 +Lexus,LS 460,2017,premium unleaded (required),386,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,454,78820 +Lexus,LS 460,2017,premium unleaded (required),359,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,454,75465 +Lexus,LS 600h L,2014,premium unleaded (required),438,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance,Hybrid",Large,Sedan,23,19,454,120060 +Lexus,LS 600h L,2015,premium unleaded (required),438,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance,Hybrid",Large,Sedan,23,19,454,120440 +Lexus,LS 600h L,2016,premium unleaded (required),438,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance,Hybrid",Large,Sedan,23,19,454,120440 +Lincoln,LS,2004,premium unleaded (required),232,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,61,36770 +Lincoln,LS,2004,premium unleaded (required),280,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,23,15,61,43370 +Lincoln,LS,2004,premium unleaded (required),232,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,61,36140 +Lincoln,LS,2004,premium unleaded (required),280,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,23,15,61,39970 +Lincoln,LS,2004,premium unleaded (required),232,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,61,32370 +Lincoln,LS,2005,premium unleaded (required),280,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,22,16,61,43590 +Lincoln,LS,2005,premium unleaded (required),232,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,61,32640 +Lincoln,LS,2005,premium unleaded (required),232,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,61,36360 +Lincoln,LS,2005,premium unleaded (required),232,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,61,36990 +Lincoln,LS,2005,premium unleaded (required),280,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,22,16,61,40190 +Lincoln,LS,2006,regular unleaded,280,8,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,23,16,61,39285 +Oldsmobile,LSS,1997,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,24,16,26,2136 +Oldsmobile,LSS,1997,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2080 +Oldsmobile,LSS,1998,regular unleaded,195,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,17,26,2283 +Oldsmobile,LSS,1998,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,25,16,26,2444 +Oldsmobile,LSS,1999,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,25,16,26,2681 +Oldsmobile,LSS,1999,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,17,26,2356 +Ford,LTD Crown Victoria,1990,regular unleaded,150,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,22,15,5657,2000 +Ford,LTD Crown Victoria,1990,regular unleaded,150,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,22,15,5657,2000 +Ford,LTD Crown Victoria,1990,regular unleaded,150,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,22,15,5657,2000 +Ford,LTD Crown Victoria,1990,regular unleaded,150,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,22,15,5657,2000 +Ford,LTD Crown Victoria,1990,regular unleaded,150,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,22,15,5657,2000 +Ford,LTD Crown Victoria,1990,regular unleaded,150,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,22,15,5657,2000 +Ford,LTD Crown Victoria,1991,regular unleaded,150,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,22,15,5657,2000 +Ford,LTD Crown Victoria,1991,regular unleaded,150,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,22,15,5657,2000 +Ford,LTD Crown Victoria,1991,regular unleaded,150,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,22,15,5657,2000 +Ford,LTD Crown Victoria,1991,regular unleaded,150,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,22,15,5657,2000 +Ford,LTD Crown Victoria,1991,regular unleaded,150,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,22,15,5657,2000 +Ford,LTD Crown Victoria,1991,regular unleaded,150,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,22,15,5657,2000 +Ford,LTD Crown Victoria,1991,regular unleaded,150,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,22,15,5657,2000 +Buick,Lucerne,2009,premium unleaded (recommended),292,8,AUTOMATIC,front wheel drive,4,"Factory Tuner,Performance",Large,Sedan,22,15,155,40205 +Buick,Lucerne,2009,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,26,17,155,32520 +Buick,Lucerne,2009,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,26,17,155,29265 +Buick,Lucerne,2009,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,26,17,155,35770 +Buick,Lucerne,2009,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,26,17,155,33120 +Buick,Lucerne,2009,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,26,17,155,35270 +Buick,Lucerne,2009,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,26,17,155,30770 +Buick,Lucerne,2009,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,26,17,155,34670 +Buick,Lucerne,2010,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,26,17,155,35730 +Buick,Lucerne,2010,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,26,17,155,30930 +Buick,Lucerne,2010,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,26,17,155,34830 +Buick,Lucerne,2010,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,26,17,155,33230 +Buick,Lucerne,2010,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,26,17,155,32730 +Buick,Lucerne,2010,premium unleaded (recommended),292,8,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,22,15,155,42515 +Buick,Lucerne,2010,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,26,17,155,29230 +Buick,Lucerne,2010,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,26,17,155,35625 +Buick,Lucerne,2010,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,26,17,155,36230 +Buick,Lucerne,2011,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,27,17,155,29730 +Buick,Lucerne,2011,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,27,17,155,35675 +Buick,Lucerne,2011,flex-fuel (unleaded/E85),227,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,27,17,155,33130 +Buick,Lucerne,2011,premium unleaded (recommended),292,8,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,23,15,155,44460 +Chevrolet,Lumina Minivan,1994,regular unleaded,120,6,AUTOMATIC,front wheel drive,3,N/A,Compact,Passenger Minivan,21,17,1385,2000 +Chevrolet,Lumina Minivan,1994,regular unleaded,120,6,AUTOMATIC,front wheel drive,3,N/A,Compact,Cargo Minivan,21,17,1385,2000 +Chevrolet,Lumina Minivan,1995,regular unleaded,120,6,AUTOMATIC,front wheel drive,3,N/A,Compact,Passenger Minivan,21,17,1385,2000 +Chevrolet,Lumina Minivan,1995,regular unleaded,120,6,AUTOMATIC,front wheel drive,3,N/A,Compact,Cargo Minivan,21,17,1385,2000 +Chevrolet,Lumina Minivan,1996,regular unleaded,180,6,AUTOMATIC,front wheel drive,3,N/A,Compact,Passenger Minivan,24,17,1385,2000 +Chevrolet,Lumina Minivan,1996,regular unleaded,180,6,AUTOMATIC,front wheel drive,3,N/A,Compact,Cargo Minivan,24,17,1385,2000 +Chevrolet,Lumina,1999,regular unleaded,160,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,17,1385,2000 +Chevrolet,Lumina,1999,regular unleaded,160,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,17,1385,2000 +Chevrolet,Lumina,1999,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,17,1385,2044 +Chevrolet,Lumina,2000,regular unleaded,175,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,18,1385,2100 +Chevrolet,Lumina,2001,regular unleaded,175,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,18,1385,18890 +Lexus,LX 450,1996,regular unleaded,212,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,14,12,454,3667 +Lexus,LX 450,1997,regular unleaded,212,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,14,12,454,4282 +Lexus,LX 470,2005,regular unleaded,235,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,16,12,454,65225 +Lexus,LX 470,2006,regular unleaded,275,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,15,12,454,67395 +Lexus,LX 470,2007,regular unleaded,268,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,15,12,454,67395 +Lexus,LX 570,2015,premium unleaded (recommended),383,8,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,17,12,454,83180 +Lexus,LX 570,2016,premium unleaded (recommended),383,8,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,18,13,454,88880 +Lexus,LX 570,2017,premium unleaded (recommended),383,8,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,18,13,454,89380 +Mercedes-Benz,M-Class,2013,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,28,20,617,51270 +Mercedes-Benz,M-Class,2013,premium unleaded (required),518,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,17,13,617,96100 +Mercedes-Benz,M-Class,2013,premium unleaded (required),402,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,20,14,617,58800 +Mercedes-Benz,M-Class,2013,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,18,617,49770 +Mercedes-Benz,M-Class,2013,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,18,617,47270 +Mercedes-Benz,M-Class,2014,premium unleaded (required),518,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,17,13,617,97250 +Mercedes-Benz,M-Class,2014,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,28,20,617,51790 +Mercedes-Benz,M-Class,2014,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,22,17,617,50290 +Mercedes-Benz,M-Class,2014,premium unleaded (required),402,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,19,14,617,59450 +Mercedes-Benz,M-Class,2014,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,18,617,47790 +Mercedes-Benz,M-Class,2015,premium unleaded (required),329,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,22,18,617,62900 +Mercedes-Benz,M-Class,2015,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,18,617,48300 +Mercedes-Benz,M-Class,2015,diesel,,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,29,22,617,49800 +Mercedes-Benz,M-Class,2015,premium unleaded (required),518,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,17,13,617,98400 +Mercedes-Benz,M-Class,2015,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,22,17,617,50800 +BMW,M2,2016,premium unleaded (required),365,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,26,18,3916,51700 +BMW,M2,2017,premium unleaded (required),365,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,26,18,3916,51700 +Infiniti,M30,1990,regular unleaded,162,6,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,23,17,190,2000 +Infiniti,M30,1991,regular unleaded,162,6,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Convertible,23,17,190,2000 +Infiniti,M30,1991,regular unleaded,162,6,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,23,17,190,2000 +Infiniti,M30,1992,regular unleaded,162,6,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,23,17,190,2000 +Infiniti,M30,1992,regular unleaded,162,6,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Convertible,23,17,190,2000 +Infiniti,M35,2008,premium unleaded (required),275,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,190,43900 +Infiniti,M35,2008,premium unleaded (required),275,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,22,16,190,45650 +Infiniti,M35,2009,premium unleaded (recommended),303,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,25,17,190,45800 +Infiniti,M35,2009,premium unleaded (recommended),275,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,22,16,190,47950 +Infiniti,M35,2010,premium unleaded (recommended),303,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,25,17,190,45800 +Infiniti,M35,2010,premium unleaded (recommended),303,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,22,16,190,47950 +Infiniti,M37,2011,premium unleaded (recommended),330,6,AUTOMATIC,all wheel drive,4,Luxury,Large,Sedan,24,17,190,49200 +Infiniti,M37,2011,premium unleaded (recommended),330,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,26,18,190,47050 +BMW,M3,2015,premium unleaded (required),425,6,MANUAL,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,26,17,3916,62000 +BMW,M3,2016,premium unleaded (required),425,6,MANUAL,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,26,17,3916,63500 +BMW,M3,2017,premium unleaded (required),425,6,MANUAL,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,26,17,3916,64000 +BMW,M4 GTS,2016,premium unleaded (required),493,6,AUTOMATED_MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,23,16,3916,133205 +Infiniti,M45,2008,premium unleaded (required),325,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,21,16,190,50250 +Infiniti,M45,2008,premium unleaded (required),325,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,20,14,190,52750 +Infiniti,M45,2009,premium unleaded (required),325,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,21,16,190,52150 +Infiniti,M45,2009,premium unleaded (required),325,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,20,14,190,54650 +Infiniti,M45,2010,premium unleaded (required),325,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,20,14,190,54650 +Infiniti,M45,2010,premium unleaded (required),325,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,21,16,190,52150 +BMW,M4,2015,premium unleaded (required),425,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,26,17,3916,64200 +BMW,M4,2015,premium unleaded (required),425,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Convertible,26,17,3916,72500 +BMW,M4,2016,premium unleaded (required),425,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Convertible,26,17,3916,74200 +BMW,M4,2016,premium unleaded (required),425,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,26,17,3916,65700 +BMW,M4,2017,premium unleaded (required),425,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Convertible,26,17,3916,74700 +BMW,M4,2017,premium unleaded (required),425,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,26,17,3916,66200 +Infiniti,M56,2011,premium unleaded (required),420,8,AUTOMATIC,all wheel drive,4,Luxury,Large,Sedan,23,16,190,60950 +Infiniti,M56,2011,premium unleaded (required),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,25,16,190,58450 +BMW,M5,2014,premium unleaded (required),552,8,AUTOMATED_MANUAL,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,20,14,3916,92900 +BMW,M5,2015,premium unleaded (required),560,8,AUTOMATED_MANUAL,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,20,14,3916,93600 +BMW,M5,2016,premium unleaded (required),560,8,AUTOMATED_MANUAL,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,20,14,3916,94100 +BMW,M6 Gran Coupe,2015,premium unleaded (required),560,8,AUTOMATED_MANUAL,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,20,14,3916,115700 +BMW,M6 Gran Coupe,2016,premium unleaded (required),552,8,AUTOMATED_MANUAL,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,20,14,3916,117200 +BMW,M6 Gran Coupe,2017,premium unleaded (required),560,8,AUTOMATED_MANUAL,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,20,14,3916,117500 +BMW,M6,2015,premium unleaded (required),560,8,AUTOMATED_MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Convertible,20,14,3916,118200 +BMW,M6,2015,premium unleaded (required),560,8,AUTOMATED_MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,20,14,3916,111900 +BMW,M6,2016,premium unleaded (required),552,8,AUTOMATED_MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Convertible,20,14,3916,119700 +BMW,M6,2016,premium unleaded (required),552,8,AUTOMATED_MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,20,14,3916,113400 +BMW,M6,2017,premium unleaded (required),560,8,AUTOMATED_MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,20,14,3916,113700 +BMW,M6,2017,premium unleaded (required),560,8,AUTOMATED_MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Convertible,22,15,3916,120000 +Porsche,Macan,2015,premium unleaded (required),400,6,AUTOMATED_MANUAL,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,23,17,1715,72300 +Porsche,Macan,2015,premium unleaded (required),340,6,AUTOMATED_MANUAL,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,23,17,1715,49900 +Porsche,Macan,2016,premium unleaded (required),340,6,AUTOMATED_MANUAL,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,23,17,1715,52600 +Porsche,Macan,2016,premium unleaded (required),400,6,AUTOMATED_MANUAL,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,23,17,1715,73900 +Porsche,Macan,2017,premium unleaded (required),360,6,AUTOMATED_MANUAL,all wheel drive,4,"Crossover,Luxury,High-Performance",Midsize,4dr SUV,23,17,1715,67200 +Porsche,Macan,2017,premium unleaded (required),340,6,AUTOMATED_MANUAL,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,23,17,1715,54400 +Porsche,Macan,2017,premium unleaded (required),400,6,AUTOMATED_MANUAL,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,23,17,1715,76000 +Porsche,Macan,2017,premium unleaded (required),252,4,AUTOMATED_MANUAL,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,20,1715,47500 +Dodge,Magnum,2006,regular unleaded,340,8,AUTOMATIC,all wheel drive,4,N/A,Large,Wagon,22,15,1851,32855 +Dodge,Magnum,2006,regular unleaded,340,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,23,15,1851,30855 +Dodge,Magnum,2006,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,26,18,1851,22680 +Dodge,Magnum,2006,regular unleaded,250,6,AUTOMATIC,all wheel drive,4,N/A,Large,Wagon,22,15,1851,29100 +Dodge,Magnum,2006,premium unleaded (required),425,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,High-Performance",Large,Wagon,18,13,1851,37320 +Dodge,Magnum,2007,regular unleaded,250,6,AUTOMATIC,all wheel drive,4,N/A,Large,Wagon,22,15,1851,29860 +Dodge,Magnum,2007,regular unleaded,190,6,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,26,18,1851,23370 +Dodge,Magnum,2007,regular unleaded,340,8,AUTOMATIC,rear wheel drive,4,Performance,Large,Wagon,23,15,1851,31515 +Dodge,Magnum,2007,regular unleaded,340,8,AUTOMATIC,all wheel drive,4,N/A,Large,Wagon,22,15,1851,33615 +Dodge,Magnum,2007,premium unleaded (required),425,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,High-Performance",Large,Wagon,18,13,1851,37795 +Dodge,Magnum,2008,premium unleaded (recommended),425,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,High-Performance",Large,Wagon,18,13,1851,38105 +Dodge,Magnum,2008,regular unleaded,340,8,AUTOMATIC,all wheel drive,4,N/A,Large,Wagon,22,15,1851,33880 +Dodge,Magnum,2008,regular unleaded,250,6,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,24,17,1851,27225 +Dodge,Magnum,2008,regular unleaded,250,6,AUTOMATIC,all wheel drive,4,N/A,Large,Wagon,22,15,1851,29855 +Dodge,Magnum,2008,regular unleaded,340,8,AUTOMATIC,rear wheel drive,4,Performance,Large,Wagon,23,15,1851,31780 +Dodge,Magnum,2008,regular unleaded,178,6,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,26,18,1851,23420 +Chevrolet,Malibu Classic,2008,regular unleaded,219,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,29,18,1385,20320 +Chevrolet,Malibu Classic,2008,regular unleaded,145,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,22,1385,17935 +Chevrolet,Malibu Classic,2008,regular unleaded,219,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,29,18,1385,19695 +Chevrolet,Malibu Hybrid,2008,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,32,24,1385,23640 +Chevrolet,Malibu Hybrid,2009,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,34,26,1385,25555 +Chevrolet,Malibu Hybrid,2010,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,34,26,1385,25925 +Chevrolet,Malibu Limited,2016,regular unleaded,197,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,24,1385,23835 +Chevrolet,Malibu Limited,2016,regular unleaded,197,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,24,1385,22565 +Chevrolet,Malibu Limited,2016,regular unleaded,197,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,24,1385,28420 +Chevrolet,Malibu Limited,2016,regular unleaded,197,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,24,1385,22565 +Chevrolet,Malibu Maxx,2005,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,Hatchback,Midsize,4dr Hatchback,28,20,1385,24610 +Chevrolet,Malibu Maxx,2005,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,Hatchback,Midsize,4dr Hatchback,28,20,1385,21465 +Chevrolet,Malibu Maxx,2005,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,Hatchback,Midsize,4dr Hatchback,28,20,1385,20965 +Chevrolet,Malibu Maxx,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,Hatchback,Midsize,4dr Hatchback,28,20,1385,23465 +Chevrolet,Malibu Maxx,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,Hatchback,Midsize,4dr Hatchback,28,20,1385,20165 +Chevrolet,Malibu Maxx,2006,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Midsize,4dr Hatchback,24,16,1385,23265 +Chevrolet,Malibu Maxx,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,Hatchback,Midsize,4dr Hatchback,28,20,1385,19565 +Chevrolet,Malibu Maxx,2007,regular unleaded,217,6,AUTOMATIC,front wheel drive,4,Hatchback,Midsize,4dr Hatchback,28,18,1385,20575 +Chevrolet,Malibu Maxx,2007,regular unleaded,217,6,AUTOMATIC,front wheel drive,4,Hatchback,Midsize,4dr Hatchback,28,18,1385,19795 +Chevrolet,Malibu Maxx,2007,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Midsize,4dr Hatchback,22,15,1385,23710 +Chevrolet,Malibu Maxx,2007,regular unleaded,217,6,AUTOMATIC,front wheel drive,4,"Hatchback,Performance",Midsize,4dr Hatchback,28,18,1385,23915 +Chevrolet,Malibu,2015,regular unleaded,196,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1385,28195 +Chevrolet,Malibu,2015,regular unleaded,196,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1385,25470 +Chevrolet,Malibu,2015,premium unleaded (recommended),259,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,30,21,1385,30355 +Chevrolet,Malibu,2015,regular unleaded,196,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1385,22340 +Chevrolet,Malibu,2015,premium unleaded (recommended),259,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,30,21,1385,27005 +Chevrolet,Malibu,2015,regular unleaded,196,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1385,23610 +Chevrolet,Malibu,2015,regular unleaded,196,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1385,22340 +Chevrolet,Malibu,2016,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,27,1385,21625 +Chevrolet,Malibu,2016,premium unleaded (recommended),250,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,33,22,1385,28620 +Chevrolet,Malibu,2016,regular unleaded,182,4,DIRECT_DRIVE,front wheel drive,4,Hybrid,Midsize,Sedan,46,47,1385,27770 +Chevrolet,Malibu,2016,premium unleaded (recommended),250,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,33,22,1385,30920 +Chevrolet,Malibu,2016,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,27,1385,23120 +Chevrolet,Malibu,2016,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,27,1385,25020 +Chevrolet,Malibu,2016,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,27,1385,23120 +Chevrolet,Malibu,2017,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,27,1385,25125 +Chevrolet,Malibu,2017,regular unleaded,182,4,DIRECT_DRIVE,front wheel drive,4,Hybrid,Midsize,Sedan,43,49,1385,27875 +Chevrolet,Malibu,2017,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,27,1385,21680 +Chevrolet,Malibu,2017,premium unleaded (recommended),250,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,33,22,1385,30975 +Chevrolet,Malibu,2017,regular unleaded,160,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,27,1385,23225 +Lincoln,Mark LT,2006,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Crew Cab Pickup,18,13,61,38680 +Lincoln,Mark LT,2006,regular unleaded,300,8,AUTOMATIC,four wheel drive,4,Luxury,Large,Crew Cab Pickup,16,12,61,42235 +Lincoln,Mark LT,2007,regular unleaded,300,8,AUTOMATIC,four wheel drive,4,Luxury,Large,Crew Cab Pickup,16,12,61,41225 +Lincoln,Mark LT,2007,regular unleaded,300,8,AUTOMATIC,four wheel drive,4,Luxury,Large,Crew Cab Pickup,16,12,61,41525 +Lincoln,Mark LT,2007,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Crew Cab Pickup,16,12,61,38425 +Lincoln,Mark LT,2007,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Crew Cab Pickup,16,12,61,38125 +Lincoln,Mark LT,2008,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Crew Cab Pickup,16,12,61,38915 +Lincoln,Mark LT,2008,regular unleaded,300,8,AUTOMATIC,four wheel drive,4,Luxury,Large,Crew Cab Pickup,17,13,61,42015 +Lincoln,Mark LT,2008,regular unleaded,300,8,AUTOMATIC,four wheel drive,4,Luxury,Large,Crew Cab Pickup,17,13,61,41715 +Lincoln,Mark LT,2008,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,Crew Cab Pickup,16,12,61,38615 +Lincoln,Mark VIII,1996,regular unleaded,280,8,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,24,16,61,2000 +Lincoln,Mark VIII,1996,regular unleaded,280,8,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,24,16,61,2000 +Lincoln,Mark VIII,1997,regular unleaded,280,8,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,24,16,61,2263 +Lincoln,Mark VIII,1997,regular unleaded,280,8,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,24,16,61,2209 +Lincoln,Mark VIII,1998,regular unleaded,280,8,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,24,15,61,2411 +Lincoln,Mark VIII,1998,regular unleaded,290,8,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,24,15,61,2459 +Lincoln,Mark VII,1990,regular unleaded,225,8,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,22,15,61,2000 +Lincoln,Mark VII,1990,regular unleaded,225,8,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,22,15,61,2000 +Lincoln,Mark VII,1991,regular unleaded,225,8,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,22,15,61,2000 +Lincoln,Mark VII,1991,regular unleaded,225,8,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,22,15,61,2000 +Lincoln,Mark VII,1992,regular unleaded,225,8,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,22,15,61,2000 +Lincoln,Mark VII,1992,regular unleaded,225,8,AUTOMATIC,rear wheel drive,2,Luxury,Large,Coupe,22,15,61,2000 +Toyota,Matrix,2011,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,32,25,2031,19685 +Toyota,Matrix,2011,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,21,2031,20755 +Toyota,Matrix,2011,regular unleaded,158,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,21,2031,19565 +Toyota,Matrix,2011,regular unleaded,158,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,26,20,2031,21715 +Toyota,Matrix,2011,regular unleaded,132,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,32,26,2031,18845 +Toyota,Matrix,2012,regular unleaded,158,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,26,20,2031,21715 +Toyota,Matrix,2012,regular unleaded,132,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,32,26,2031,18845 +Toyota,Matrix,2012,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,21,2031,20755 +Toyota,Matrix,2012,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,32,25,2031,19685 +Toyota,Matrix,2012,regular unleaded,158,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,21,2031,19565 +Toyota,Matrix,2013,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,32,25,2031,20115 +Toyota,Matrix,2013,regular unleaded,158,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,26,20,2031,22415 +Toyota,Matrix,2013,regular unleaded,158,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,21,2031,20265 +Toyota,Matrix,2013,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,21,2031,21455 +Toyota,Matrix,2013,regular unleaded,132,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,32,26,2031,19275 +Nissan,Maxima,2014,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,26,19,2009,34380 +Nissan,Maxima,2014,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,26,19,2009,31290 +Nissan,Maxima,2016,premium unleaded (recommended),300,6,AUTOMATIC,front wheel drive,4,High-Performance,Midsize,Sedan,30,22,2009,36990 +Nissan,Maxima,2016,premium unleaded (recommended),300,6,AUTOMATIC,front wheel drive,4,High-Performance,Midsize,Sedan,30,22,2009,34490 +Nissan,Maxima,2016,premium unleaded (recommended),300,6,AUTOMATIC,front wheel drive,4,High-Performance,Midsize,Sedan,30,22,2009,32510 +Nissan,Maxima,2016,premium unleaded (recommended),300,6,AUTOMATIC,front wheel drive,4,High-Performance,Midsize,Sedan,30,22,2009,39960 +Nissan,Maxima,2016,premium unleaded (recommended),300,6,AUTOMATIC,front wheel drive,4,High-Performance,Midsize,Sedan,30,22,2009,37770 +Nissan,Maxima,2017,premium unleaded (recommended),300,6,AUTOMATIC,front wheel drive,4,High-Performance,Midsize,Sedan,30,21,2009,34590 +Nissan,Maxima,2017,premium unleaded (recommended),300,6,AUTOMATIC,front wheel drive,4,High-Performance,Midsize,Sedan,30,21,2009,37090 +Nissan,Maxima,2017,premium unleaded (recommended),300,6,AUTOMATIC,front wheel drive,4,High-Performance,Midsize,Sedan,30,21,2009,40040 +Nissan,Maxima,2017,premium unleaded (recommended),300,6,AUTOMATIC,front wheel drive,4,High-Performance,Midsize,Sedan,30,21,2009,32610 +Nissan,Maxima,2017,premium unleaded (recommended),300,6,AUTOMATIC,front wheel drive,4,High-Performance,Midsize,Sedan,30,21,2009,37870 +Mercedes-Benz,Maybach,2016,premium unleaded (required),523,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,20,13,617,189350 +Mercedes-Benz,Maybach,2017,premium unleaded (required),523,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,21,13,617,191300 +Mazda,Mazdaspeed 3,2011,premium unleaded (required),263,4,MANUAL,front wheel drive,4,"Hatchback,Factory Tuner,Performance",Compact,4dr Hatchback,25,18,586,23700 +Mazda,Mazdaspeed 3,2012,premium unleaded (required),263,4,MANUAL,front wheel drive,4,"Hatchback,Factory Tuner,Performance",Compact,4dr Hatchback,25,18,586,24000 +Mazda,Mazdaspeed 3,2013,premium unleaded (required),263,4,MANUAL,front wheel drive,4,"Hatchback,Factory Tuner,Performance",Compact,4dr Hatchback,25,18,586,24200 +Mazda,Mazdaspeed 6,2006,premium unleaded (required),274,4,MANUAL,all wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,23,17,586,27995 +Mazda,Mazdaspeed 6,2006,premium unleaded (required),274,4,MANUAL,all wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,23,17,586,29925 +Mazda,Mazdaspeed 6,2007,premium unleaded (required),274,4,MANUAL,all wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,23,17,586,29925 +Mazda,Mazdaspeed 6,2007,premium unleaded (required),274,4,MANUAL,all wheel drive,4,"Factory Tuner,Performance",Midsize,Sedan,23,17,586,27995 +Mazda,Mazdaspeed MX-5 Miata,2004,premium unleaded (required),178,4,MANUAL,rear wheel drive,2,"Factory Tuner,Performance",Compact,Convertible,24,18,586,25730 +Mazda,Mazdaspeed MX-5 Miata,2005,premium unleaded (required),178,4,MANUAL,rear wheel drive,2,"Factory Tuner,Performance",Compact,Convertible,24,18,586,25780 +Mazda,Mazdaspeed MX-5 Miata,2005,premium unleaded (required),178,4,MANUAL,rear wheel drive,2,"Factory Tuner,Performance",Compact,Convertible,24,18,586,26580 +Mazda,Mazdaspeed Protege,2003,premium unleaded (required),170,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Compact,Sedan,27,21,586,20480 +Mazda,Mazdaspeed Protege,2003,premium unleaded (required),170,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Compact,Sedan,27,21,586,19980 +BMW,M,2001,premium unleaded (required),315,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,23,15,3916,44990 +BMW,M,2001,premium unleaded (required),315,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,23,15,3916,45990 +BMW,M,2002,premium unleaded (required),315,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,25,17,3916,44990 +BMW,M,2006,premium unleaded (required),330,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,22,14,3916,49300 +BMW,M,2006,premium unleaded (required),330,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,22,14,3916,51300 +Acura,MDX,2015,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,18,204,44565 +Acura,MDX,2015,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,18,204,48840 +Acura,MDX,2015,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,18,204,50840 +Acura,MDX,2015,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,204,42565 +Acura,MDX,2015,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,204,48840 +Acura,MDX,2015,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,204,46840 +Acura,MDX,2015,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,18,204,56780 +Acura,MDX,2015,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,204,54780 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,43015 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,49440 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,204,46515 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,44515 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,19,204,55230 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,204,45015 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,20,204,53230 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,204,52640 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,204,51440 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,204,50640 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,20,204,55230 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,204,49440 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,47440 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,48640 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,50640 +Acura,MDX,2016,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,19,204,57230 +Acura,MDX,2017,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,19,204,56400 +Acura,MDX,2017,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,48360 +Acura,MDX,2017,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,204,50360 +Acura,MDX,2017,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,204,52360 +Acura,MDX,2017,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,19,204,58400 +Acura,MDX,2017,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,20,204,56400 +Acura,MDX,2017,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,43950 +Acura,MDX,2017,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,50360 +Acura,MDX,2017,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,204,45950 +Acura,MDX,2017,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,20,204,54400 +Mercedes-Benz,Metris,2016,premium unleaded (recommended),208,4,AUTOMATIC,rear wheel drive,4,Luxury,Compact,Passenger Minivan,23,20,617,32500 +Mercedes-Benz,Metris,2016,premium unleaded (recommended),208,4,AUTOMATIC,rear wheel drive,3,Luxury,Large,Cargo Minivan,24,21,617,28950 +Chevrolet,Metro,1999,regular unleaded,55,3,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,42,34,1385,2000 +Chevrolet,Metro,1999,regular unleaded,79,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,39,33,1385,2000 +Chevrolet,Metro,1999,regular unleaded,79,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,39,33,1385,2000 +Chevrolet,Metro,2000,regular unleaded,79,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,38,31,1385,2000 +Chevrolet,Metro,2000,regular unleaded,55,3,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,41,32,1385,2000 +Chevrolet,Metro,2000,regular unleaded,79,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,38,31,1385,2000 +Chevrolet,Metro,2001,regular unleaded,79,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,31,26,1385,12515 +Mitsubishi,Mighty Max Pickup,1994,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,23,18,436,2000 +Mitsubishi,Mighty Max Pickup,1994,regular unleaded,116,6,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,20,15,436,2000 +Mitsubishi,Mighty Max Pickup,1994,regular unleaded,151,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,23,18,436,2000 +Mitsubishi,Mighty Max Pickup,1995,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,23,18,436,2000 +Mitsubishi,Mighty Max Pickup,1996,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,23,18,436,2000 +Mazda,Millenia,2000,regular unleaded,210,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,25,17,586,2381 +Mazda,Millenia,2000,regular unleaded,210,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,25,17,586,2337 +Mazda,Millenia,2000,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,17,586,2138 +Mazda,Millenia,2001,premium unleaded (required),210,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,25,17,586,31025 +Mazda,Millenia,2001,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,17,586,28025 +Mazda,Millenia,2002,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,17,586,28075 +Mazda,Millenia,2002,premium unleaded (required),210,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,25,17,586,31075 +Mazda,Millenia,2002,premium unleaded (required),210,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,25,17,586,31675 +Mazda,Millenia,2002,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,17,586,28875 +Infiniti,M,2012,premium unleaded (required),330,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,24,17,190,49850 +Infiniti,M,2012,premium unleaded (required),330,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,26,18,190,47700 +Infiniti,M,2012,premium unleaded (recommended),360,6,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,Sedan,32,27,190,53700 +Infiniti,M,2012,premium unleaded (required),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,190,59200 +Infiniti,M,2012,premium unleaded (required),420,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,190,61700 +Infiniti,M,2013,premium unleaded (required),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,190,61200 +Infiniti,M,2013,premium unleaded (recommended),360,6,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,Sedan,32,27,190,54750 +Infiniti,M,2013,premium unleaded (required),330,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,26,18,190,48700 +Infiniti,M,2013,premium unleaded (required),420,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,190,63700 +Infiniti,M,2013,premium unleaded (required),330,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,24,17,190,50850 +Mitsubishi,Mirage G4,2017,regular unleaded,78,3,MANUAL,front wheel drive,4,N/A,Compact,Sedan,40,33,436,13995 +Mitsubishi,Mirage G4,2017,regular unleaded,78,3,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,42,35,436,16995 +Mitsubishi,Mirage G4,2017,regular unleaded,78,3,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,42,35,436,15195 +Mitsubishi,Mirage,2014,regular unleaded,74,3,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,42,34,436,12995 +Mitsubishi,Mirage,2014,regular unleaded,74,3,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,44,37,436,15195 +Mitsubishi,Mirage,2014,regular unleaded,74,3,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,42,34,436,14195 +Mitsubishi,Mirage,2014,regular unleaded,74,3,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,44,37,436,13995 +Mitsubishi,Mirage,2015,regular unleaded,74,3,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,42,34,436,12995 +Mitsubishi,Mirage,2015,regular unleaded,74,3,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,42,34,436,14295 +Mitsubishi,Mirage,2015,regular unleaded,74,3,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,44,37,436,15395 +Mitsubishi,Mirage,2015,regular unleaded,74,3,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,44,37,436,14095 +Mitsubishi,Mirage,2015,regular unleaded,74,3,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,44,37,436,14945 +Mitsubishi,Mirage,2017,regular unleaded,78,3,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,41,33,436,14795 +Mitsubishi,Mirage,2017,regular unleaded,78,3,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,41,33,436,12995 +Mitsubishi,Mirage,2017,regular unleaded,78,3,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,43,37,436,14195 +Mitsubishi,Mirage,2017,regular unleaded,78,3,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,43,37,436,15995 +Mitsubishi,Mirage,2017,regular unleaded,78,3,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,43,37,436,16495 +Lincoln,MKC,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,29,20,61,46030 +Lincoln,MKC,2015,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,26,19,61,35595 +Lincoln,MKC,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,29,20,61,33100 +Lincoln,MKC,2015,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,26,19,61,48525 +Lincoln,MKC,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,29,20,61,46455 +Lincoln,MKC,2016,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,26,19,61,42955 +Lincoln,MKC,2016,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,26,19,61,48950 +Lincoln,MKC,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,29,20,61,40460 +Lincoln,MKC,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,29,20,61,33260 +Lincoln,MKC,2016,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,26,19,61,39585 +Lincoln,MKC,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,29,20,61,37090 +Lincoln,MKC,2016,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,26,19,61,35755 +Lincoln,MKC,2017,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,25,19,61,41895 +Lincoln,MKC,2017,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,28,21,61,35720 +Lincoln,MKC,2017,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,25,19,61,35130 +Lincoln,MKC,2017,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,28,21,61,32720 +Lincoln,MKC,2017,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,28,21,61,39485 +Lincoln,MKC,2017,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,25,19,61,38125 +Lincoln,MKC,2017,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,28,21,61,45475 +Lincoln,MKC,2017,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,25,19,61,47880 +Lincoln,MKS,2014,regular unleaded,304,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,28,19,61,38850 +Lincoln,MKS,2014,regular unleaded,304,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,26,18,61,40845 +Lincoln,MKS,2014,premium unleaded (recommended),365,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,25,17,61,45840 +Lincoln,MKS,2015,premium unleaded (recommended),365,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,25,17,61,45840 +Lincoln,MKS,2015,regular unleaded,305,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,28,19,61,38850 +Lincoln,MKS,2015,regular unleaded,305,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,26,18,61,40845 +Lincoln,MKS,2016,regular unleaded,350,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,24,17,61,41005 +Lincoln,MKS,2016,regular unleaded,350,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,26,17,61,39010 +Lincoln,MKS,2016,premium unleaded (recommended),365,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,61,46000 +Lincoln,MKT,2015,premium unleaded (recommended),365,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,Wagon,23,16,61,45205 +Lincoln,MKT,2015,regular unleaded,303,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Large,Wagon,25,17,61,43210 +Lincoln,MKT,2016,regular unleaded,303,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Large,Wagon,24,16,61,43370 +Lincoln,MKT,2016,premium unleaded (recommended),365,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,Wagon,21,15,61,45365 +Lincoln,MKT,2017,regular unleaded,303,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Large,Wagon,24,16,61,43530 +Lincoln,MKT,2017,premium unleaded (recommended),365,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,Wagon,21,15,61,49025 +Lincoln,MKX,2015,regular unleaded,305,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,17,61,40850 +Lincoln,MKX,2015,regular unleaded,305,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,61,38900 +Lincoln,MKX,2016,regular unleaded,303,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,17,61,44045 +Lincoln,MKX,2016,regular unleaded,303,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,17,61,47810 +Lincoln,MKX,2016,regular unleaded,303,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,17,61,53475 +Lincoln,MKX,2016,regular unleaded,303,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,17,61,38260 +Lincoln,MKX,2016,regular unleaded,303,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,17,61,55970 +Lincoln,MKX,2016,regular unleaded,303,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,17,61,45315 +Lincoln,MKX,2016,regular unleaded,303,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,17,61,40755 +Lincoln,MKX,2016,regular unleaded,303,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,17,61,41550 +Lincoln,MKX,2017,regular unleaded,303,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,17,61,38260 +Lincoln,MKX,2017,regular unleaded,303,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,61,44045 +Lincoln,MKX,2017,regular unleaded,303,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,61,48055 +Lincoln,MKX,2017,regular unleaded,303,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,17,61,45560 +Lincoln,MKX,2017,regular unleaded,303,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,17,61,53475 +Lincoln,MKX,2017,regular unleaded,303,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,61,40755 +Lincoln,MKX,2017,regular unleaded,303,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,17,61,41550 +Lincoln,MKX,2017,regular unleaded,303,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,61,55970 +Lincoln,MKZ Hybrid,2011,regular unleaded,191,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,36,41,61,34645 +Lincoln,MKZ,2015,regular unleaded,231,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,33,22,61,45555 +Lincoln,MKZ,2015,regular unleaded,231,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,33,22,61,35190 +Lincoln,MKZ,2015,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,39,41,61,35190 +Lincoln,MKZ,2015,regular unleaded,231,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,22,61,37080 +Lincoln,MKZ,2015,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,39,41,61,45555 +Lincoln,MKZ,2015,regular unleaded,231,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,22,61,47445 +Lincoln,MKZ,2016,regular unleaded,231,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,22,61,37080 +Lincoln,MKZ,2016,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,39,41,61,45605 +Lincoln,MKZ,2016,regular unleaded,231,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,33,22,61,45605 +Lincoln,MKZ,2016,regular unleaded,231,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,22,61,47495 +Lincoln,MKZ,2016,regular unleaded,188,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,39,41,61,35190 +Lincoln,MKZ,2016,regular unleaded,231,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,33,22,61,35190 +Lincoln,MKZ,2017,regular unleaded,,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,38,41,61,35010 +Lincoln,MKZ,2017,premium unleaded (recommended),245,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,28,20,61,36900 +Lincoln,MKZ,2017,regular unleaded,,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,38,41,61,39510 +Lincoln,MKZ,2017,premium unleaded (recommended),245,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,31,21,61,39510 +Lincoln,MKZ,2017,premium unleaded (recommended),245,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,28,20,61,49560 +Lincoln,MKZ,2017,premium unleaded (recommended),245,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,31,21,61,35010 +Lincoln,MKZ,2017,premium unleaded (recommended),245,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,28,20,61,41400 +Lincoln,MKZ,2017,premium unleaded (recommended),245,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,31,21,61,47670 +Lincoln,MKZ,2017,regular unleaded,,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,38,41,61,36760 +Lincoln,MKZ,2017,premium unleaded (recommended),245,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,31,21,61,36760 +Lincoln,MKZ,2017,regular unleaded,,4,AUTOMATIC,front wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,38,41,61,47670 +Lincoln,MKZ,2017,premium unleaded (recommended),245,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,28,20,61,38650 +Mercedes-Benz,ML55 AMG,2000,regular unleaded,342,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,Performance",Midsize,4dr SUV,16,12,617,5650 +Tesla,Model S,2014,electric,,0,DIRECT_DRIVE,rear wheel drive,4,"Exotic,High-Performance",Large,Sedan,90,88,1391,79900 +Tesla,Model S,2014,electric,,0,DIRECT_DRIVE,rear wheel drive,4,"Exotic,Performance",Large,Sedan,97,94,1391,69900 +Tesla,Model S,2014,electric,,0,DIRECT_DRIVE,all wheel drive,4,"Exotic,High-Performance",Large,Sedan,94,86,1391,104500 +Tesla,Model S,2014,electric,,0,DIRECT_DRIVE,rear wheel drive,4,"Exotic,High-Performance",Large,Sedan,90,88,1391,93400 +Tesla,Model S,2015,electric,,0,DIRECT_DRIVE,rear wheel drive,4,"Exotic,Performance",Large,Sedan,97,94,1391,69900 +Tesla,Model S,2015,electric,,0,DIRECT_DRIVE,all wheel drive,4,"Exotic,Performance",Large,Sedan,102,101,1391,75000 +Tesla,Model S,2015,electric,,0,DIRECT_DRIVE,all wheel drive,4,"Exotic,High-Performance",Large,Sedan,106,95,1391,85000 +Tesla,Model S,2015,electric,,0,DIRECT_DRIVE,all wheel drive,4,"Exotic,High-Performance",Large,Sedan,98,89,1391,105000 +Tesla,Model S,2015,electric,,0,DIRECT_DRIVE,rear wheel drive,4,"Exotic,Performance",Large,Sedan,90,88,1391,80000 +Tesla,Model S,2016,electric,,0,DIRECT_DRIVE,all wheel drive,,"Exotic,Performance",Large,Sedan,105,102,1391,79500 +Tesla,Model S,2016,electric,,0,DIRECT_DRIVE,all wheel drive,,"Exotic,Performance",Large,Sedan,101,98,1391,66000 +Tesla,Model S,2016,electric,,0,DIRECT_DRIVE,all wheel drive,,"Exotic,High-Performance",Large,Sedan,105,92,1391,134500 +Tesla,Model S,2016,electric,,0,DIRECT_DRIVE,rear wheel drive,,"Exotic,Performance",Large,Sedan,100,97,1391,74500 +Tesla,Model S,2016,electric,,0,DIRECT_DRIVE,all wheel drive,,"Exotic,Performance",Large,Sedan,107,101,1391,71000 +Tesla,Model S,2016,electric,,0,DIRECT_DRIVE,all wheel drive,4,"Exotic,Performance",Large,Sedan,102,101,1391,75000 +Tesla,Model S,2016,electric,,0,DIRECT_DRIVE,all wheel drive,4,"Exotic,High-Performance",Large,Sedan,107,101,1391,89500 +Tesla,Model S,2016,electric,,0,DIRECT_DRIVE,all wheel drive,4,"Exotic,High-Performance",Large,Sedan,100,91,1391,112000 +Tesla,Model S,2016,electric,,0,DIRECT_DRIVE,rear wheel drive,4,"Exotic,Performance",Large,Sedan,90,88,1391,70000 +Dodge,Monaco,1990,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,15,1851,2000 +Dodge,Monaco,1990,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,15,1851,2000 +Dodge,Monaco,1991,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,16,1851,2000 +Dodge,Monaco,1991,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,16,1851,2000 +Dodge,Monaco,1992,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,16,1851,2000 +Dodge,Monaco,1992,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,16,1851,2000 +Pontiac,Montana SV6,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,210,24250 +Pontiac,Montana SV6,2006,regular unleaded,196,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,21,15,210,27750 +Pontiac,Montana,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,210,26140 +Pontiac,Montana,2003,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,210,33790 +Pontiac,Montana,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,24,17,210,25815 +Pontiac,Montana,2003,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,210,30540 +Pontiac,Montana,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,210,27590 +Pontiac,Montana,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,24,17,210,24165 +Pontiac,Montana,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,210,29740 +Pontiac,Montana,2004,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,24,17,210,23335 +Pontiac,Montana,2004,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,210,31035 +Pontiac,Montana,2004,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,210,25885 +Pontiac,Montana,2004,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,210,30235 +Pontiac,Montana,2005,regular unleaded,200,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,21,15,210,30210 +Pontiac,Montana,2005,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,210,26040 +Pontiac,Montana,2005,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,210,24520 +Pontiac,Montana,2005,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,210,27890 +Pontiac,Montana,2005,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,210,30420 +Pontiac,Montana,2005,regular unleaded,200,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,21,15,210,27700 +Chevrolet,Monte Carlo,2005,regular unleaded,180,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,29,19,1385,22280 +Chevrolet,Monte Carlo,2005,regular unleaded,200,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,28,18,1385,24690 +Chevrolet,Monte Carlo,2005,premium unleaded (required),240,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,26,17,1385,28355 +Chevrolet,Monte Carlo,2006,regular unleaded,242,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,26,18,1385,24930 +Chevrolet,Monte Carlo,2006,flex-fuel (unleaded/E85),211,6,AUTOMATIC,front wheel drive,2,Flex Fuel,Midsize,Coupe,29,19,1385,20830 +Chevrolet,Monte Carlo,2006,regular unleaded,303,8,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,26,16,1385,26330 +Chevrolet,Monte Carlo,2006,flex-fuel (unleaded/E85),211,6,AUTOMATIC,front wheel drive,2,Flex Fuel,Midsize,Coupe,29,19,1385,20330 +Chevrolet,Monte Carlo,2006,regular unleaded,242,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,26,18,1385,23430 +Chevrolet,Monte Carlo,2007,regular unleaded,303,8,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,24,16,1385,27740 +Chevrolet,Monte Carlo,2007,flex-fuel (unleaded/E85),211,6,AUTOMATIC,front wheel drive,2,Flex Fuel,Midsize,Coupe,29,19,1385,22625 +Chevrolet,Monte Carlo,2007,flex-fuel (unleaded/E85),211,6,AUTOMATIC,front wheel drive,2,Flex Fuel,Midsize,Coupe,29,19,1385,21015 +Mitsubishi,Montero Sport,2002,regular unleaded,197,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,436,27607 +Mitsubishi,Montero Sport,2002,regular unleaded,165,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,15,436,27777 +Mitsubishi,Montero Sport,2002,regular unleaded,197,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,17,14,436,29627 +Mitsubishi,Montero Sport,2002,regular unleaded,165,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,436,22777 +Mitsubishi,Montero Sport,2002,regular unleaded,197,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,17,14,436,32887 +Mitsubishi,Montero Sport,2002,regular unleaded,197,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,436,31317 +Mitsubishi,Montero Sport,2002,regular unleaded,165,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,15,436,25087 +Mitsubishi,Montero Sport,2002,regular unleaded,165,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,436,25637 +Mitsubishi,Montero Sport,2003,regular unleaded,165,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,15,436,27777 +Mitsubishi,Montero Sport,2003,regular unleaded,165,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,15,436,25217 +Mitsubishi,Montero Sport,2003,regular unleaded,197,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,436,27607 +Mitsubishi,Montero Sport,2003,regular unleaded,165,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,436,22907 +Mitsubishi,Montero Sport,2003,regular unleaded,197,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,17,14,436,32887 +Mitsubishi,Montero Sport,2003,regular unleaded,197,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,17,14,436,29627 +Mitsubishi,Montero Sport,2003,regular unleaded,165,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,436,25637 +Mitsubishi,Montero Sport,2003,regular unleaded,197,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,436,31317 +Mitsubishi,Montero Sport,2004,regular unleaded,197,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,19,15,436,26199 +Mitsubishi,Montero Sport,2004,regular unleaded,197,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,17,14,436,25999 +Mitsubishi,Montero Sport,2004,regular unleaded,197,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,17,14,436,28199 +Mitsubishi,Montero Sport,2004,regular unleaded,197,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,19,15,436,23999 +Mitsubishi,Montero,2004,regular unleaded,215,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,18,13,436,34999 +Mitsubishi,Montero,2005,regular unleaded,215,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,17,13,436,35799 +Mitsubishi,Montero,2006,regular unleaded,215,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,17,13,436,36159 +McLaren,MP4-12C,2012,premium unleaded (required),592,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,22,15,416,229000 +McLaren,MP4-12C,2013,premium unleaded (required),616,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,22,15,416,239400 +Mazda,MPV,2004,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,23,16,586,28460 +Mazda,MPV,2004,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,23,16,586,23490 +Mazda,MPV,2005,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,23,16,586,28515 +Mazda,MPV,2005,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,23,16,586,22115 +Mazda,MPV,2005,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,23,16,586,22950 +Mazda,MPV,2006,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,23,16,586,28515 +Mazda,MPV,2006,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,23,16,586,22950 +Mazda,MPV,2006,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,23,16,586,22115 +Toyota,MR2 Spyder,2003,premium unleaded (required),138,4,AUTOMATED_MANUAL,rear wheel drive,2,Performance,Compact,Convertible,30,22,2031,25645 +Toyota,MR2 Spyder,2003,premium unleaded (required),138,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,29,23,2031,24645 +Toyota,MR2 Spyder,2004,regular unleaded,138,4,AUTOMATED_MANUAL,rear wheel drive,2,Performance,Compact,Convertible,30,23,2031,25895 +Toyota,MR2 Spyder,2004,regular unleaded,138,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,29,23,2031,24895 +Toyota,MR2 Spyder,2005,regular unleaded,138,4,AUTOMATED_MANUAL,rear wheel drive,2,Performance,Compact,Convertible,30,23,2031,26145 +Toyota,MR2 Spyder,2005,regular unleaded,138,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,29,23,2031,25145 +Toyota,MR2,1993,regular unleaded,135,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,26,19,2031,2000 +Toyota,MR2,1993,regular unleaded,200,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,25,18,2031,2078 +Toyota,MR2,1994,regular unleaded,200,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,25,18,2031,2254 +Toyota,MR2,1994,regular unleaded,135,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,26,19,2031,2000 +Toyota,MR2,1995,regular unleaded,135,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,26,19,2031,2038 +Toyota,MR2,1995,regular unleaded,200,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,25,18,2031,2462 +Bentley,Mulsanne,2014,premium unleaded (required),505,8,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,18,11,520,298900 +Bentley,Mulsanne,2015,premium unleaded (required),505,8,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,18,11,520,303700 +Bentley,Mulsanne,2016,premium unleaded (required),505,8,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,18,11,520,303700 +Bentley,Mulsanne,2016,premium unleaded (required),530,8,AUTOMATIC,rear wheel drive,4,"Exotic,Factory Tuner,Luxury,High-Performance",Large,Sedan,18,11,520,335600 +Nissan,Murano CrossCabriolet,2012,premium unleaded (recommended),265,6,AUTOMATIC,all wheel drive,2,Crossover,Midsize,Convertible SUV,22,17,2009,44540 +Nissan,Murano CrossCabriolet,2013,premium unleaded (recommended),265,6,AUTOMATIC,all wheel drive,2,Crossover,Midsize,Convertible SUV,22,17,2009,44540 +Nissan,Murano CrossCabriolet,2014,premium unleaded (recommended),265,6,AUTOMATIC,all wheel drive,2,Crossover,Midsize,Convertible SUV,22,17,2009,41995 +Nissan,Murano,2015,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,39000 +Nissan,Murano,2015,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,38550 +Nissan,Murano,2015,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,40600 +Nissan,Murano,2015,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,36950 +Nissan,Murano,2015,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,34220 +Nissan,Murano,2015,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,29560 +Nissan,Murano,2015,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,32620 +Nissan,Murano,2015,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,31160 +Nissan,Murano,2016,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,34400 +Nissan,Murano,2016,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,39180 +Nissan,Murano,2016,regular unleaded,250,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,30,26,2009,41730 +Nissan,Murano,2016,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,32800 +Nissan,Murano,2016,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,38730 +Nissan,Murano,2016,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,29740 +Nissan,Murano,2016,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,40780 +Nissan,Murano,2016,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,31340 +Nissan,Murano,2016,regular unleaded,250,4,AUTOMATIC,front wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,31,28,2009,42180 +Nissan,Murano,2016,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,37130 +Nissan,Murano,2016,regular unleaded,250,4,AUTOMATIC,front wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,31,28,2009,40130 +Nissan,Murano,2016,regular unleaded,250,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,30,26,2009,43780 +Nissan,Murano,2017,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,29740 +Nissan,Murano,2017,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,31340 +Nissan,Murano,2017,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,37130 +Nissan,Murano,2017,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,38730 +Nissan,Murano,2017,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,34400 +Nissan,Murano,2017,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,32800 +Nissan,Murano,2017,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,40780 +Nissan,Murano,2017,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,21,2009,39180 +Lamborghini,Murcielago,2008,premium unleaded (required),632,12,MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Coupe,13,8,1158,336400 +Lamborghini,Murcielago,2008,premium unleaded (required),632,12,MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Convertible,13,8,1158,369200 +Lamborghini,Murcielago,2008,premium unleaded (required),632,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Coupe,14,9,1158,345400 +Lamborghini,Murcielago,2008,premium unleaded (required),632,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Convertible,14,9,1158,378200 +Lamborghini,Murcielago,2009,premium unleaded (required),631,12,MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Convertible,13,8,1158,382400 +Lamborghini,Murcielago,2009,premium unleaded (required),631,12,MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Coupe,13,8,1158,354000 +Lamborghini,Murcielago,2009,premium unleaded (required),631,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Coupe,14,9,1158,364000 +Lamborghini,Murcielago,2009,premium unleaded (required),631,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Convertible,14,9,1158,392400 +Lamborghini,Murcielago,2010,premium unleaded (required),670,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Coupe,14,9,1158,450000 +Ford,Mustang SVT Cobra,1997,regular unleaded,305,8,MANUAL,rear wheel drive,2,"Factory Tuner,Performance",Compact,Convertible,24,16,5657,3550 +Ford,Mustang SVT Cobra,1997,regular unleaded,305,8,MANUAL,rear wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,24,16,5657,3206 +Ford,Mustang SVT Cobra,1998,regular unleaded,305,8,MANUAL,rear wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,24,16,5657,3654 +Ford,Mustang SVT Cobra,1998,regular unleaded,305,8,MANUAL,rear wheel drive,2,"Factory Tuner,Performance",Compact,Convertible,24,16,5657,4059 +Ford,Mustang SVT Cobra,1999,regular unleaded,320,8,MANUAL,rear wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,22,15,5657,4584 +Ford,Mustang SVT Cobra,1999,regular unleaded,320,8,MANUAL,rear wheel drive,2,"Factory Tuner,Performance",Compact,Convertible,22,15,5657,5193 +Ford,Mustang,2015,premium unleaded (recommended),435,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Convertible,25,15,5657,41800 +Ford,Mustang,2015,regular unleaded,300,6,MANUAL,rear wheel drive,2,Performance,Midsize,Convertible,28,17,5657,29300 +Ford,Mustang,2015,premium unleaded (recommended),310,4,MANUAL,rear wheel drive,2,High-Performance,Midsize,Convertible,31,22,5657,34800 +Ford,Mustang,2015,premium unleaded (recommended),310,4,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,31,22,5657,25300 +Ford,Mustang,2015,premium unleaded (recommended),435,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,25,15,5657,46170 +Ford,Mustang,2015,premium unleaded (recommended),435,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,25,15,5657,32300 +Ford,Mustang,2015,regular unleaded,300,6,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,28,17,5657,23800 +Ford,Mustang,2015,premium unleaded (recommended),310,4,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,31,22,5657,29300 +Ford,Mustang,2015,premium unleaded (recommended),435,8,MANUAL,rear wheel drive,2,High-Performance,Midsize,Coupe,25,15,5657,36300 +Ford,Mustang,2016,premium unleaded (recommended),435,8,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,25,15,5657,36395 +Ford,Mustang,2016,premium unleaded (recommended),435,8,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,25,15,5657,32395 +Ford,Mustang,2016,regular unleaded,300,6,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,28,17,5657,24145 +Ford,Mustang,2016,premium unleaded (recommended),310,4,MANUAL,rear wheel drive,2,Performance,Midsize,Convertible,29,20,5657,35145 +Ford,Mustang,2016,premium unleaded (recommended),310,4,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,31,22,5657,29645 +Ford,Mustang,2016,premium unleaded (recommended),435,8,MANUAL,rear wheel drive,2,Performance,Midsize,Convertible,25,15,5657,41895 +Ford,Mustang,2016,regular unleaded,300,6,MANUAL,rear wheel drive,2,Performance,Midsize,Convertible,28,17,5657,29645 +Ford,Mustang,2016,premium unleaded (recommended),310,4,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,31,22,5657,25645 +Ford,Mustang,2017,premium unleaded (recommended),310,4,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,30,21,5657,25645 +Ford,Mustang,2017,regular unleaded,300,6,MANUAL,rear wheel drive,2,N/A,Midsize,Coupe,27,18,5657,24645 +Ford,Mustang,2017,premium unleaded (recommended),310,4,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,30,21,5657,29645 +Ford,Mustang,2017,premium unleaded (recommended),435,8,MANUAL,rear wheel drive,2,Performance,Midsize,Convertible,23,14,5657,42145 +Ford,Mustang,2017,premium unleaded (recommended),435,8,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,25,15,5657,36645 +Ford,Mustang,2017,premium unleaded (recommended),310,4,MANUAL,rear wheel drive,2,Performance,Midsize,Convertible,27,21,5657,35145 +Ford,Mustang,2017,premium unleaded (recommended),435,8,MANUAL,rear wheel drive,2,Performance,Midsize,Coupe,25,15,5657,32645 +Mazda,MX-3,1993,regular unleaded,130,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,26,20,586,2000 +Mazda,MX-3,1993,regular unleaded,88,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,32,24,586,2000 +Mazda,MX-3,1993,regular unleaded,130,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,26,20,586,2000 +Mazda,MX-3,1994,regular unleaded,130,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,26,20,586,2000 +Mazda,MX-3,1994,regular unleaded,88,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,34,25,586,2000 +Mazda,MX-3,1995,regular unleaded,88,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,34,25,586,2000 +Mazda,MX-5 Miata,2014,premium unleaded (recommended),158,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,27505 +Mazda,MX-5 Miata,2014,premium unleaded (recommended),158,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,30550 +Mazda,MX-5 Miata,2014,premium unleaded (recommended),158,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,29265 +Mazda,MX-5 Miata,2014,premium unleaded (recommended),167,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,26905 +Mazda,MX-5 Miata,2014,premium unleaded (recommended),167,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,28665 +Mazda,MX-5 Miata,2014,premium unleaded (recommended),158,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,25980 +Mazda,MX-5 Miata,2014,premium unleaded (recommended),167,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,27550 +Mazda,MX-5 Miata,2014,premium unleaded (recommended),167,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,28,22,586,23720 +Mazda,MX-5 Miata,2014,premium unleaded (recommended),158,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,28650 +Mazda,MX-5 Miata,2014,premium unleaded (recommended),167,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,29450 +Mazda,MX-5 Miata,2015,premium unleaded (recommended),158,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,28650 +Mazda,MX-5 Miata,2015,premium unleaded (recommended),167,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,27550 +Mazda,MX-5 Miata,2015,premium unleaded (recommended),158,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,29265 +Mazda,MX-5 Miata,2015,premium unleaded (recommended),167,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,28,22,586,23970 +Mazda,MX-5 Miata,2015,premium unleaded (recommended),167,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,29450 +Mazda,MX-5 Miata,2015,premium unleaded (recommended),158,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,30550 +Mazda,MX-5 Miata,2015,premium unleaded (recommended),158,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,27505 +Mazda,MX-5 Miata,2015,premium unleaded (recommended),167,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,26905 +Mazda,MX-5 Miata,2015,premium unleaded (recommended),158,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,26230 +Mazda,MX-5 Miata,2015,premium unleaded (recommended),167,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,32205 +Mazda,MX-5 Miata,2015,premium unleaded (recommended),158,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,32655 +Mazda,MX-5 Miata,2015,premium unleaded (recommended),167,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,28,21,586,28665 +Mazda,MX-5 Miata,2016,premium unleaded (recommended),155,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,34,27,586,28600 +Mazda,MX-5 Miata,2016,premium unleaded (recommended),155,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,36,27,586,26395 +Mazda,MX-5 Miata,2016,premium unleaded (recommended),155,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,36,27,586,29330 +Mazda,MX-5 Miata,2016,premium unleaded (recommended),155,4,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,36,27,586,31270 +Mazda,MX-5 Miata,2016,premium unleaded (recommended),155,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,34,27,586,30065 +Mazda,MX-5 Miata,2016,premium unleaded (recommended),155,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,34,27,586,24915 +Mazda,MX-6,1995,regular unleaded,164,6,MANUAL,front wheel drive,2,Performance,Compact,Coupe,24,18,586,2000 +Mazda,MX-6,1995,regular unleaded,118,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,31,23,586,2000 +Mazda,MX-6,1996,regular unleaded,164,6,MANUAL,front wheel drive,2,Performance,Compact,Coupe,24,18,586,2000 +Mazda,MX-6,1996,regular unleaded,118,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,31,23,586,2000 +Mazda,MX-6,1996,regular unleaded,164,6,MANUAL,front wheel drive,2,Performance,Compact,Coupe,24,18,586,2000 +Mazda,MX-6,1997,regular unleaded,164,6,MANUAL,front wheel drive,2,Performance,Compact,Coupe,24,18,586,2000 +Mazda,MX-6,1997,regular unleaded,114,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,31,23,586,2000 +Mazda,Navajo,1992,regular unleaded,155,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,20,15,586,2000 +Mazda,Navajo,1992,regular unleaded,155,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,20,15,586,2000 +Mazda,Navajo,1992,regular unleaded,155,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,20,15,586,2000 +Mazda,Navajo,1992,regular unleaded,155,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,20,15,586,2000 +Mazda,Navajo,1993,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,21,16,586,2000 +Mazda,Navajo,1993,regular unleaded,160,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,21,16,586,2000 +Mazda,Navajo,1993,regular unleaded,160,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,21,16,586,2000 +Mazda,Navajo,1993,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,21,16,586,2000 +Mazda,Navajo,1994,regular unleaded,160,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,19,14,586,2000 +Mazda,Navajo,1994,regular unleaded,160,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,19,14,586,2000 +Mazda,Navajo,1994,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,18,14,586,2000 +Mazda,Navajo,1994,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,18,14,586,2000 +Lincoln,Navigator,2015,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,20,15,61,65055 +Lincoln,Navigator,2015,regular unleaded,365,6,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,19,15,61,67220 +Lincoln,Navigator,2015,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,22,16,61,61480 +Lincoln,Navigator,2015,regular unleaded,365,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,20,15,61,63645 +Lincoln,Navigator,2016,regular unleaded,380,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,22,16,61,63195 +Lincoln,Navigator,2016,regular unleaded,380,6,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,19,15,61,76650 +Lincoln,Navigator,2016,regular unleaded,380,6,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,19,15,61,69135 +Lincoln,Navigator,2016,regular unleaded,380,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,20,15,61,65560 +Lincoln,Navigator,2016,regular unleaded,380,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,20,15,61,73645 +Lincoln,Navigator,2016,regular unleaded,380,6,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,20,15,61,74260 +Lincoln,Navigator,2016,regular unleaded,380,6,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,20,15,61,66770 +Lincoln,Navigator,2016,regular unleaded,380,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,22,16,61,71260 +Lincoln,Navigator,2017,regular unleaded,380,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,20,15,61,65560 +Lincoln,Navigator,2017,regular unleaded,380,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,21,15,61,71260 +Lincoln,Navigator,2017,regular unleaded,380,6,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,20,15,61,66770 +Lincoln,Navigator,2017,regular unleaded,380,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,21,15,61,63195 +Lincoln,Navigator,2017,regular unleaded,380,6,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,19,15,61,69135 +Lincoln,Navigator,2017,regular unleaded,380,6,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,19,15,61,76645 +Lincoln,Navigator,2017,regular unleaded,380,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,20,15,61,73650 +Lincoln,Navigator,2017,regular unleaded,380,6,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,20,15,61,74260 +Dodge,Neon,2003,premium unleaded (required),215,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Compact,Sedan,27,19,1851,19450 +Dodge,Neon,2003,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,25,1851,13030 +Dodge,Neon,2003,premium unleaded (required),150,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,25,1851,17085 +Dodge,Neon,2003,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,25,1851,15340 +Dodge,Neon,2004,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,29,22,1851,14315 +Dodge,Neon,2004,premium unleaded (required),150,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,25,1851,17640 +Dodge,Neon,2004,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,25,1851,15800 +Dodge,Neon,2004,premium unleaded (required),225,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Compact,Sedan,28,19,1851,20450 +Dodge,Neon,2004,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,25,1851,13490 +Dodge,Neon,2004,regular unleaded,132,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,29,22,1851,16625 +Dodge,Neon,2005,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,25,1851,16110 +Dodge,Neon,2005,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,25,1851,13800 +Dodge,Neon,2005,premium unleaded (required),220,4,MANUAL,front wheel drive,4,"Factory Tuner,Performance",Compact,Sedan,28,19,1851,20700 +Plymouth,Neon,1999,regular unleaded,132,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,36,24,535,2000 +Plymouth,Neon,1999,regular unleaded,150,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,36,24,535,2000 +Plymouth,Neon,1999,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,24,535,2000 +Plymouth,Neon,1999,regular unleaded,150,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,36,24,535,2000 +Plymouth,Neon,1999,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,24,535,2000 +Plymouth,Neon,1999,regular unleaded,150,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,24,535,2000 +Plymouth,Neon,2000,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,31,24,535,2000 +Plymouth,Neon,2000,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,31,24,535,2044 +Plymouth,Neon,2001,regular unleaded,132,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,24,535,12715 +Volkswagen,New Beetle,2008,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,20990 +Volkswagen,New Beetle,2008,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,20525 +Volkswagen,New Beetle,2008,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,20525 +Volkswagen,New Beetle,2008,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,28,20,873,24315 +Volkswagen,New Beetle,2008,regular unleaded,150,5,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,873,17475 +Volkswagen,New Beetle,2008,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,20990 +Volkswagen,New Beetle,2008,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,18550 +Volkswagen,New Beetle,2008,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,28,20,873,24315 +Volkswagen,New Beetle,2008,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,18550 +Volkswagen,New Beetle,2008,regular unleaded,150,5,MANUAL,front wheel drive,2,N/A,Compact,Convertible,28,20,873,23240 +Volkswagen,New Beetle,2008,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,28,20,873,25740 +Volkswagen,New Beetle,2008,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,20990 +Volkswagen,New Beetle,2008,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,28,20,873,25740 +Volkswagen,New Beetle,2008,regular unleaded,150,5,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,873,17475 +Volkswagen,New Beetle,2008,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,20990 +Volkswagen,New Beetle,2008,regular unleaded,150,5,MANUAL,front wheel drive,2,N/A,Compact,Convertible,28,20,873,23240 +Volkswagen,New Beetle,2009,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,28,20,873,25990 +Volkswagen,New Beetle,2009,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,28,20,873,25990 +Volkswagen,New Beetle,2009,regular unleaded,150,5,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,873,18290 +Volkswagen,New Beetle,2009,regular unleaded,150,5,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,873,18290 +Volkswagen,New Beetle,2009,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,28,20,873,26990 +Volkswagen,New Beetle,2009,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,19390 +Volkswagen,New Beetle,2009,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,19390 +Volkswagen,New Beetle,2009,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,28,20,873,26990 +Volkswagen,New Beetle,2010,regular unleaded,150,5,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,873,18690 +Volkswagen,New Beetle,2010,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,28,20,873,27390 +Volkswagen,New Beetle,2010,regular unleaded,150,5,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,873,18690 +Volkswagen,New Beetle,2010,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,20390 +Volkswagen,New Beetle,2010,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,19790 +Volkswagen,New Beetle,2010,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,20390 +Volkswagen,New Beetle,2010,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,28,20,873,27390 +Volkswagen,New Beetle,2010,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,20390 +Volkswagen,New Beetle,2010,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,28,20,873,26390 +Volkswagen,New Beetle,2010,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,19790 +Volkswagen,New Beetle,2010,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,20390 +Volkswagen,New Beetle,2010,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,N/A,Compact,Convertible,28,20,873,26390 +Chrysler,New Yorker,1994,regular unleaded,214,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,24,16,1013,2000 +Chrysler,New Yorker,1995,regular unleaded,214,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,24,16,1013,2000 +Chrysler,New Yorker,1996,regular unleaded,214,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,24,16,1013,2000 +Oldsmobile,Ninety-Eight,1994,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,25,17,26,2000 +Oldsmobile,Ninety-Eight,1994,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,25,17,26,2000 +Oldsmobile,Ninety-Eight,1994,regular unleaded,225,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,24,15,26,2000 +Oldsmobile,Ninety-Eight,1994,regular unleaded,170,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,25,17,26,2000 +Oldsmobile,Ninety-Eight,1995,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2000 +Oldsmobile,Ninety-Eight,1995,regular unleaded,225,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2000 +Oldsmobile,Ninety-Eight,1996,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,17,26,2000 +Dodge,Nitro,2009,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Crossover,Midsize,4dr SUV,21,15,1851,26220 +Dodge,Nitro,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Crossover,Midsize,4dr SUV,22,16,1851,24560 +Dodge,Nitro,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Crossover,Midsize,4dr SUV,22,16,1851,22240 +Dodge,Nitro,2009,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Crossover,Midsize,4dr SUV,21,15,1851,23900 +Dodge,Nitro,2010,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Crossover,Midsize,4dr SUV,21,15,1851,23250 +Dodge,Nitro,2010,regular unleaded,260,6,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,21,16,1851,25750 +Dodge,Nitro,2010,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Crossover,Midsize,4dr SUV,22,16,1851,23235 +Dodge,Nitro,2010,regular unleaded,260,6,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,21,16,1851,26750 +Dodge,Nitro,2010,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Crossover,Midsize,4dr SUV,22,16,1851,21590 +Dodge,Nitro,2010,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,20,16,1851,27410 +Dodge,Nitro,2010,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,20,16,1851,28410 +Dodge,Nitro,2010,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Crossover,Midsize,4dr SUV,21,15,1851,24895 +Dodge,Nitro,2010,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Crossover,Midsize,4dr SUV,22,16,1851,21590 +Dodge,Nitro,2010,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Crossover,Midsize,4dr SUV,21,15,1851,23250 +Dodge,Nitro,2011,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,21,16,1851,28995 +Dodge,Nitro,2011,regular unleaded,260,6,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,21,16,1851,27245 +Dodge,Nitro,2011,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,21,16,1851,27995 +Dodge,Nitro,2011,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Crossover,Midsize,4dr SUV,21,15,1851,23995 +Dodge,Nitro,2011,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Crossover,Midsize,4dr SUV,22,16,1851,21590 +Dodge,Nitro,2011,regular unleaded,260,6,AUTOMATIC,rear wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,21,16,1851,26245 +Dodge,Nitro,2011,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Crossover,Midsize,4dr SUV,22,16,1851,23235 +Dodge,Nitro,2011,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Crossover,Midsize,4dr SUV,22,16,1851,22245 +Dodge,Nitro,2011,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Crossover,Midsize,4dr SUV,21,15,1851,24985 +Dodge,Nitro,2011,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,Crossover,Midsize,4dr SUV,21,15,1851,23340 +Acura,NSX,2004,regular unleaded,290,6,MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Coupe,22,16,204,89000 +Acura,NSX,2004,regular unleaded,252,6,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Coupe,22,16,204,89000 +Acura,NSX,2005,regular unleaded,290,6,MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Coupe,22,16,204,89000 +Acura,NSX,2005,regular unleaded,252,6,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Coupe,22,16,204,89000 +Acura,NSX,2017,premium unleaded (required),573,6,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,Luxury,High-Performance,Hybrid",Compact,Coupe,22,21,204,156000 +Nissan,NV200,2015,regular unleaded,131,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,26,24,2009,21710 +Nissan,NV200,2015,regular unleaded,131,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,26,24,2009,20720 +Nissan,NV200,2016,regular unleaded,131,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,26,24,2009,21760 +Nissan,NV200,2016,regular unleaded,131,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,26,24,2009,20870 +Nissan,NV200,2017,regular unleaded,131,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,26,24,2009,22230 +Nissan,NV200,2017,regular unleaded,131,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,26,24,2009,21330 +Lexus,NX 200t,2015,premium unleaded (required),235,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,21,454,35880 +Lexus,NX 200t,2015,premium unleaded (required),235,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,22,454,36580 +Lexus,NX 200t,2015,premium unleaded (required),235,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,21,454,37980 +Lexus,NX 200t,2015,premium unleaded (required),235,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,22,454,34480 +Lexus,NX 200t,2016,premium unleaded (required),235,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,22,454,34965 +Lexus,NX 200t,2016,premium unleaded (required),235,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,22,454,37065 +Lexus,NX 200t,2016,premium unleaded (required),235,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,22,454,36365 +Lexus,NX 200t,2016,premium unleaded (required),235,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,22,454,38465 +Lexus,NX 200t,2017,premium unleaded (required),235,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,22,454,38585 +Lexus,NX 200t,2017,premium unleaded (required),235,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,22,454,36485 +Lexus,NX 200t,2017,premium unleaded (required),235,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,22,454,37185 +Lexus,NX 200t,2017,premium unleaded (required),235,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,22,454,35085 +Lexus,NX 300h,2015,regular unleaded,194,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,31,35,454,39720 +Lexus,NX 300h,2015,regular unleaded,194,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,30,33,454,41310 +Lexus,NX 300h,2016,regular unleaded,194,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,30,33,454,41310 +Lexus,NX 300h,2016,regular unleaded,194,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,31,35,454,39720 +Lexus,NX 300h,2017,regular unleaded,194,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,30,33,454,39720 +Nissan,NX,1991,regular unleaded,140,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,28,21,2009,2000 +Nissan,NX,1991,regular unleaded,110,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,35,24,2009,2000 +Nissan,NX,1992,regular unleaded,110,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,35,24,2009,2000 +Nissan,NX,1992,regular unleaded,140,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,28,20,2009,2000 +Nissan,NX,1993,regular unleaded,140,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,28,20,2009,2000 +Nissan,NX,1993,regular unleaded,110,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,34,24,2009,2000 +Honda,Odyssey,2015,regular unleaded,248,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,28,19,2202,37775 +Honda,Odyssey,2015,regular unleaded,248,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,28,19,2202,35775 +Honda,Odyssey,2015,regular unleaded,248,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,28,19,2202,28975 +Honda,Odyssey,2015,regular unleaded,248,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,28,19,2202,37375 +Honda,Odyssey,2015,regular unleaded,248,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,28,19,2202,42030 +Honda,Odyssey,2015,regular unleaded,248,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,28,19,2202,44600 +Honda,Odyssey,2015,regular unleaded,248,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,28,19,2202,32275 +Honda,Odyssey,2016,regular unleaded,248,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,28,19,2202,37650 +Honda,Odyssey,2016,regular unleaded,248,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,28,19,2202,32550 +Honda,Odyssey,2016,regular unleaded,248,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,28,19,2202,36050 +Honda,Odyssey,2016,regular unleaded,248,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,28,19,2202,42305 +Honda,Odyssey,2016,regular unleaded,248,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,28,19,2202,44875 +Honda,Odyssey,2016,regular unleaded,248,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,28,19,2202,29400 +Honda,Odyssey,2016,regular unleaded,248,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,28,19,2202,38050 +Honda,Odyssey,2016,regular unleaded,248,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,28,19,2202,33500 +Dodge,Omni,1990,regular unleaded,93,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,31,22,1851,2000 +Kia,Optima Hybrid,2015,regular unleaded,199,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,39,35,1720,32150 +Kia,Optima Hybrid,2015,regular unleaded,199,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,40,36,1720,25990 +Kia,Optima Hybrid,2016,regular unleaded,199,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,39,35,1720,32195 +Kia,Optima Hybrid,2016,regular unleaded,199,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,40,36,1720,25995 +Kia,Optima Hybrid,2017,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,46,39,1720,25995 +Kia,Optima Hybrid,2017,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,46,39,1720,30990 +Kia,Optima,2014,regular unleaded,199,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,40,36,1720,25995 +Kia,Optima,2014,regular unleaded,274,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,20,1720,27500 +Kia,Optima,2014,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,23,1720,25500 +Kia,Optima,2014,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,23,1720,21500 +Kia,Optima,2014,regular unleaded,199,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,39,35,1720,31995 +Kia,Optima,2014,regular unleaded,274,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,20,1720,35300 +Kia,Optima,2014,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,23,1720,23950 +Kia,Optima,2015,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,23,1720,25790 +Kia,Optima,2015,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,23,1720,21840 +Kia,Optima,2015,regular unleaded,274,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,20,1720,27700 +Kia,Optima,2015,regular unleaded,274,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,20,1720,35500 +Kia,Optima,2015,regular unleaded,192,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,23,1720,24340 +Kia,Optima,2016,regular unleaded,245,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,22,1720,29940 +Kia,Optima,2016,regular unleaded,178,4,AUTOMATED_MANUAL,front wheel drive,4,N/A,Midsize,Sedan,39,28,1720,24140 +Kia,Optima,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,24,1720,25140 +Kia,Optima,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,24,1720,22140 +Kia,Optima,2016,regular unleaded,245,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,22,1720,36040 +Subaru,Outback,2015,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,33,25,640,30295 +Subaru,Outback,2015,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,33,25,640,24895 +Subaru,Outback,2015,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,33,25,640,25195 +Subaru,Outback,2015,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,33,25,640,29995 +Subaru,Outback,2015,regular unleaded,256,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,27,20,640,32995 +Subaru,Outback,2015,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,33,25,640,26995 +Subaru,Outback,2015,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,33,25,640,27295 +Subaru,Outback,2016,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,33,25,640,30695 +Subaru,Outback,2016,regular unleaded,256,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,27,20,640,33395 +Subaru,Outback,2016,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,33,25,640,25295 +Subaru,Outback,2016,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,33,25,640,27695 +Subaru,Outback,2016,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,33,25,640,27395 +Subaru,Outback,2016,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,33,25,640,24995 +Subaru,Outback,2016,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,33,25,640,30395 +Subaru,Outback,2017,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,25,640,35995 +Subaru,Outback,2017,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,25,640,25645 +Subaru,Outback,2017,regular unleaded,256,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,27,20,640,34995 +Subaru,Outback,2017,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,25,640,27695 +Subaru,Outback,2017,regular unleaded,256,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,27,20,640,38195 +Subaru,Outback,2017,regular unleaded,175,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,25,640,32390 +Mitsubishi,Outlander Sport,2015,regular unleaded,148,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,30,24,436,22195 +Mitsubishi,Outlander Sport,2015,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,23,436,21295 +Mitsubishi,Outlander Sport,2015,regular unleaded,168,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,26,23,436,22695 +Mitsubishi,Outlander Sport,2015,regular unleaded,168,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,26,23,436,24995 +Mitsubishi,Outlander Sport,2015,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,25,436,22795 +Mitsubishi,Outlander Sport,2015,regular unleaded,148,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,30,24,436,24195 +Mitsubishi,Outlander Sport,2015,regular unleaded,148,4,MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,30,24,436,19595 +Mitsubishi,Outlander Sport,2015,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,25,436,20795 +Mitsubishi,Outlander Sport,2015,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,23,436,23595 +Mitsubishi,Outlander Sport,2016,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,23,436,23995 +Mitsubishi,Outlander Sport,2016,regular unleaded,148,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,29,23,436,22195 +Mitsubishi,Outlander Sport,2016,regular unleaded,168,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,27,22,436,22695 +Mitsubishi,Outlander Sport,2016,regular unleaded,168,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,27,22,436,25395 +Mitsubishi,Outlander Sport,2016,regular unleaded,168,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,27,22,436,23895 +Mitsubishi,Outlander Sport,2016,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,23,436,22495 +Mitsubishi,Outlander Sport,2016,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,23,436,21295 +Mitsubishi,Outlander Sport,2016,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,24,436,20795 +Mitsubishi,Outlander Sport,2016,regular unleaded,148,4,MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,29,23,436,19595 +Mitsubishi,Outlander Sport,2016,regular unleaded,168,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,27,22,436,27395 +Mitsubishi,Outlander Sport,2016,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,23,436,25995 +Mitsubishi,Outlander Sport,2017,regular unleaded,168,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,27,22,436,24195 +Mitsubishi,Outlander Sport,2017,regular unleaded,148,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,29,23,436,22495 +Mitsubishi,Outlander Sport,2017,regular unleaded,168,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,27,22,436,25695 +Mitsubishi,Outlander Sport,2017,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,30,24,436,20995 +Mitsubishi,Outlander Sport,2017,regular unleaded,168,4,AUTOMATIC,four wheel drive,4,Crossover,Compact,4dr SUV,27,22,436,27695 +Mitsubishi,Outlander Sport,2017,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,23,436,24195 +Mitsubishi,Outlander Sport,2017,regular unleaded,168,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,23,436,22695 +Mitsubishi,Outlander Sport,2017,regular unleaded,148,4,MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,29,23,436,19795 +Mitsubishi,Outlander,2015,regular unleaded,166,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,29,24,436,26195 +Mitsubishi,Outlander,2015,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,31,25,436,24195 +Mitsubishi,Outlander,2015,premium unleaded (recommended),224,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,20,436,28195 +Mitsubishi,Outlander,2015,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,31,25,436,23195 +Mitsubishi,Outlander,2016,premium unleaded (recommended),224,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,27,20,436,30995 +Mitsubishi,Outlander,2016,regular unleaded,166,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,31,25,436,24995 +Mitsubishi,Outlander,2016,regular unleaded,166,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,29,24,436,26995 +Mitsubishi,Outlander,2016,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,31,25,436,22995 +Mitsubishi,Outlander,2016,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,31,25,436,23995 +Mitsubishi,Outlander,2016,regular unleaded,166,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,29,24,436,25995 +Mitsubishi,Outlander,2016,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,31,25,436,24995 +Mitsubishi,Outlander,2017,premium unleaded (recommended),224,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,27,20,436,31695 +Mitsubishi,Outlander,2017,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,30,25,436,24495 +Mitsubishi,Outlander,2017,regular unleaded,166,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,29,24,436,24995 +Mitsubishi,Outlander,2017,regular unleaded,166,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,29,24,436,27495 +Mitsubishi,Outlander,2017,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,30,25,436,25495 +Mitsubishi,Outlander,2017,regular unleaded,166,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,29,24,436,26495 +Mitsubishi,Outlander,2017,regular unleaded,166,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,30,25,436,23495 +Chrysler,Pacifica,2007,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,23,16,1013,24460 +Chrysler,Pacifica,2007,regular unleaded,255,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,22,15,1013,33775 +Chrysler,Pacifica,2007,regular unleaded,255,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,22,15,1013,27600 +Chrysler,Pacifica,2007,regular unleaded,255,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,14,1013,27550 +Chrysler,Pacifica,2007,regular unleaded,255,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,14,1013,35825 +Chrysler,Pacifica,2007,regular unleaded,255,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,14,1013,30250 +Chrysler,Pacifica,2008,regular unleaded,253,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,14,1013,30310 +Chrysler,Pacifica,2008,regular unleaded,253,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,14,1013,27225 +Chrysler,Pacifica,2008,regular unleaded,253,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,23,15,1013,34150 +Chrysler,Pacifica,2008,regular unleaded,253,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,14,1013,36195 +Chrysler,Pacifica,2008,regular unleaded,253,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,23,15,1013,28265 +Chrysler,Pacifica,2008,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,22,15,1013,24635 +Chrysler,Pacifica,2017,regular unleaded,287,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Passenger Minivan,28,18,1013,42495 +Chrysler,Pacifica,2017,regular unleaded,287,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,28,18,1013,30495 +Chrysler,Pacifica,2017,regular unleaded,287,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,28,18,1013,28595 +Chrysler,Pacifica,2017,regular unleaded,287,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,28,18,1013,37895 +Chrysler,Pacifica,2017,regular unleaded,287,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,28,18,1013,34495 +Porsche,Panamera,2015,premium unleaded (required),570,8,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,15,1715,200500 +Porsche,Panamera,2015,premium unleaded (required),310,6,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,Performance",Large,Sedan,27,18,1715,82800 +Porsche,Panamera,2015,premium unleaded (required),420,6,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,26,17,1715,125600 +Porsche,Panamera,2015,premium unleaded (required),420,6,AUTOMATED_MANUAL,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,27,17,1715,93200 +Porsche,Panamera,2015,premium unleaded (required),420,6,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,27,17,1715,98300 +Porsche,Panamera,2015,premium unleaded (required),520,8,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,15,1715,161100 +Porsche,Panamera,2015,premium unleaded (required),520,8,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,15,1715,141300 +Porsche,Panamera,2015,premium unleaded (required),570,8,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,15,1715,180300 +Porsche,Panamera,2015,premium unleaded (required),440,8,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,16,1715,113400 +Porsche,Panamera,2015,premium unleaded (required),310,6,AUTOMATED_MANUAL,rear wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,1715,78100 +Porsche,Panamera,2016,premium unleaded (required),520,8,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,15,1715,161100 +Porsche,Panamera,2016,premium unleaded (required),310,6,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,Performance",Large,Sedan,27,18,1715,82800 +Porsche,Panamera,2016,premium unleaded (required),520,8,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,15,1715,141300 +Porsche,Panamera,2016,premium unleaded (required),570,8,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,15,1715,200500 +Porsche,Panamera,2016,premium unleaded (required),310,6,AUTOMATED_MANUAL,rear wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,1715,78100 +Porsche,Panamera,2016,premium unleaded (required),570,8,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,15,1715,180300 +Porsche,Panamera,2016,premium unleaded (required),310,6,AUTOMATED_MANUAL,rear wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,1715,80000 +Porsche,Panamera,2016,premium unleaded (required),440,8,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,16,1715,113400 +Porsche,Panamera,2016,premium unleaded (required),310,6,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,Performance",Large,Sedan,27,18,1715,84300 +Porsche,Panamera,2016,premium unleaded (required),420,6,AUTOMATED_MANUAL,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,27,17,1715,93200 +Porsche,Panamera,2016,premium unleaded (required),420,6,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,26,17,1715,125600 +Porsche,Panamera,2016,premium unleaded (required),420,6,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,27,17,1715,98300 +Buick,Park Avenue,2003,premium unleaded (required),240,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,25,16,155,39725 +Buick,Park Avenue,2003,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,17,155,34600 +Buick,Park Avenue,2004,premium unleaded (required),240,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,26,16,155,40425 +Buick,Park Avenue,2004,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,18,155,35250 +Buick,Park Avenue,2005,premium unleaded (required),240,6,AUTOMATIC,front wheel drive,4,Performance,Large,Sedan,26,17,155,40730 +Buick,Park Avenue,2005,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,18,155,35555 +Rolls-Royce,Park Ward,2001,premium unleaded (required),322,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury",Large,Sedan,15,11,86,259900 +Rolls-Royce,Park Ward,2002,premium unleaded (required),322,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury",Large,Sedan,15,11,86,262990 +Toyota,Paseo,1995,regular unleaded,100,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,25,2031,2000 +Toyota,Paseo,1996,regular unleaded,93,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,32,26,2031,2000 +Toyota,Paseo,1997,regular unleaded,93,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,34,26,2031,2000 +Toyota,Paseo,1997,regular unleaded,93,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,32,25,2031,2178 +Volkswagen,Passat,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,24,873,26280 +Volkswagen,Passat,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Midsize,Sedan,42,30,873,29125 +Volkswagen,Passat,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,24,873,22440 +Volkswagen,Passat,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,24,873,22440 +Volkswagen,Passat,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,24,873,23995 +Volkswagen,Passat,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Midsize,Sedan,42,30,873,30850 +Volkswagen,Passat,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,24,873,31790 +Volkswagen,Passat,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,24,873,24375 +Volkswagen,Passat,2015,regular unleaded,170,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,35,24,873,21340 +Volkswagen,Passat,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,24,873,31790 +Volkswagen,Passat,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,24,873,26280 +Volkswagen,Passat,2015,diesel,150,4,AUTOMATED_MANUAL,front wheel drive,4,Diesel,Midsize,Sedan,42,30,873,33925 +Volkswagen,Passat,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,24,873,28105 +Volkswagen,Passat,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,24,873,24375 +Volkswagen,Passat,2015,regular unleaded,170,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,35,24,873,26915 +Volkswagen,Passat,2015,diesel,150,4,MANUAL,front wheel drive,4,Diesel,Midsize,Sedan,44,30,873,27095 +Volkswagen,Passat,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,24,873,28115 +Volkswagen,Passat,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,24,873,23995 +Volkswagen,Passat,2015,premium unleaded (required),280,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,28,20,873,35995 +Volkswagen,Passat,2015,regular unleaded,170,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,35,24,873,26915 +Volkswagen,Passat,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,24,873,28105 +Volkswagen,Passat,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,24,873,28115 +Volkswagen,Passat,2015,regular unleaded,170,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,35,24,873,21340 +Volkswagen,Passat,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,873,26280 +Volkswagen,Passat,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,873,34270 +Volkswagen,Passat,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,873,30495 +Volkswagen,Passat,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,873,24750 +Volkswagen,Passat,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,873,24750 +Volkswagen,Passat,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,873,28410 +Volkswagen,Passat,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,873,23975 +Volkswagen,Passat,2016,premium unleaded (required),280,6,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,28,20,873,36835 +Volkswagen,Passat,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,873,22440 +Volkswagen,Passat,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,873,23975 +Volkswagen,Passat,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,873,22440 +Volkswagen,Passat,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,873,26280 +Volkswagen,Passat,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,873,28410 +Volkswagen,Passat,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,873,34270 +Volkswagen,Passat,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,873,30495 +Volkswagen,Passat,2017,premium unleaded (required),280,6,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,28,20,873,29295 +Volkswagen,Passat,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,23,873,27995 +Volkswagen,Passat,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,23,873,22440 +Volkswagen,Passat,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,23,873,23975 +Volkswagen,Passat,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,23,873,30995 +Volkswagen,Passat,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,34,23,873,25495 +Volkswagen,Passat,2017,premium unleaded (required),280,6,AUTOMATED_MANUAL,front wheel drive,4,Performance,Midsize,Sedan,28,20,873,33995 +Honda,Passport,2000,regular unleaded,205,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,18,15,2202,2452 +Honda,Passport,2000,regular unleaded,205,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,14,2202,2879 +Honda,Passport,2000,regular unleaded,205,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,19,15,2202,2715 +Honda,Passport,2000,regular unleaded,205,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,18,15,2202,2668 +Honda,Passport,2001,regular unleaded,205,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,15,2202,30500 +Honda,Passport,2001,regular unleaded,205,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,15,2202,27300 +Honda,Passport,2001,regular unleaded,205,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,19,15,2202,23000 +Honda,Passport,2001,regular unleaded,205,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,2202,24150 +Honda,Passport,2001,regular unleaded,205,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,2202,28050 +Honda,Passport,2001,regular unleaded,205,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,2202,26800 +Honda,Passport,2001,regular unleaded,205,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,15,2202,29250 +Honda,Passport,2001,regular unleaded,205,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,19,15,2202,26150 +Honda,Passport,2002,regular unleaded,205,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,15,2202,30900 +Honda,Passport,2002,regular unleaded,205,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,19,15,2202,26450 +Honda,Passport,2002,regular unleaded,205,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,2202,24450 +Honda,Passport,2002,regular unleaded,205,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,2202,28450 +Honda,Passport,2002,regular unleaded,205,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,19,15,2202,23300 +Honda,Passport,2002,regular unleaded,205,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,15,2202,29550 +Honda,Passport,2002,regular unleaded,205,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,19,15,2202,27600 +Honda,Passport,2002,regular unleaded,205,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,2202,27100 +Nissan,Pathfinder,2015,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,27,20,2009,29510 +Nissan,Pathfinder,2015,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,27,20,2009,29780 +Nissan,Pathfinder,2015,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,Crossover,Large,4dr SUV,26,19,2009,37900 +Nissan,Pathfinder,2015,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,27,20,2009,41560 +Nissan,Pathfinder,2015,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,Crossover,Large,4dr SUV,26,19,2009,34830 +Nissan,Pathfinder,2015,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,Crossover,Large,4dr SUV,26,19,2009,31200 +Nissan,Pathfinder,2015,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,Crossover,Large,4dr SUV,26,19,2009,34500 +Nissan,Pathfinder,2015,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,27,20,2009,32810 +Nissan,Pathfinder,2015,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,27,20,2009,36210 +Nissan,Pathfinder,2015,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,27,20,2009,33140 +Nissan,Pathfinder,2015,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,Crossover,Large,4dr SUV,26,19,2009,43250 +Nissan,Pathfinder,2015,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,Crossover,Large,4dr SUV,26,19,2009,31470 +Nissan,Pathfinder,2016,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,27,20,2009,33150 +Nissan,Pathfinder,2016,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,Crossover,Large,4dr SUV,26,19,2009,38100 +Nissan,Pathfinder,2016,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,27,20,2009,41610 +Nissan,Pathfinder,2016,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,Crossover,Large,4dr SUV,26,19,2009,43300 +Nissan,Pathfinder,2016,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,27,20,2009,29830 +Nissan,Pathfinder,2016,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,27,20,2009,36410 +Nissan,Pathfinder,2016,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,Crossover,Large,4dr SUV,26,19,2009,34840 +Nissan,Pathfinder,2016,regular unleaded,260,6,AUTOMATIC,four wheel drive,4,Crossover,Large,4dr SUV,26,19,2009,31520 +Nissan,Pathfinder,2017,regular unleaded,284,6,AUTOMATIC,four wheel drive,4,Crossover,Large,4dr SUV,26,19,2009,37790 +Nissan,Pathfinder,2017,regular unleaded,284,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,27,20,2009,32980 +Nissan,Pathfinder,2017,regular unleaded,284,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,27,20,2009,36100 +Nissan,Pathfinder,2017,regular unleaded,284,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,27,20,2009,30290 +Nissan,Pathfinder,2017,regular unleaded,284,6,AUTOMATIC,front wheel drive,4,Crossover,Large,4dr SUV,27,20,2009,42070 +Nissan,Pathfinder,2017,regular unleaded,284,6,AUTOMATIC,four wheel drive,4,Crossover,Large,4dr SUV,26,19,2009,34670 +Nissan,Pathfinder,2017,regular unleaded,284,6,AUTOMATIC,four wheel drive,4,Crossover,Large,4dr SUV,26,19,2009,43760 +Nissan,Pathfinder,2017,regular unleaded,284,6,AUTOMATIC,four wheel drive,4,Crossover,Large,4dr SUV,26,19,2009,31980 +Volkswagen,Phaeton,2004,premium unleaded (recommended),335,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,21,14,873,64600 +Volkswagen,Phaeton,2004,premium unleaded (recommended),420,12,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,17,11,873,94600 +Volkswagen,Phaeton,2004,premium unleaded (recommended),420,12,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,17,11,873,79900 +Volkswagen,Phaeton,2005,premium unleaded (recommended),335,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,21,14,873,66950 +Volkswagen,Phaeton,2005,premium unleaded (recommended),420,12,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,17,11,873,96100 +Volkswagen,Phaeton,2005,premium unleaded (recommended),335,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,21,14,873,74600 +Volkswagen,Phaeton,2005,premium unleaded (recommended),420,12,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,17,11,873,100800 +Volkswagen,Phaeton,2006,premium unleaded (required),444,12,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,17,11,873,101300 +Volkswagen,Phaeton,2006,premium unleaded (required),444,12,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,17,11,873,96600 +Volkswagen,Phaeton,2006,premium unleaded (required),335,8,AUTOMATIC,all wheel drive,4,Luxury,Large,Sedan,21,14,873,66700 +Volkswagen,Phaeton,2006,premium unleaded (required),335,8,AUTOMATIC,all wheel drive,4,Luxury,Large,Sedan,21,14,873,74350 +Rolls-Royce,Phantom Coupe,2014,premium unleaded (required),453,12,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,Performance",Large,Coupe,19,11,86,433550 +Rolls-Royce,Phantom Coupe,2015,premium unleaded (required),453,12,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,Performance",Large,Coupe,19,11,86,438325 +Rolls-Royce,Phantom Coupe,2016,premium unleaded (required),453,12,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,Performance",Large,Coupe,19,11,86,449525 +Rolls-Royce,Phantom Drophead Coupe,2014,premium unleaded (required),453,12,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,Performance",Large,Convertible,19,11,86,474600 +Rolls-Royce,Phantom Drophead Coupe,2015,premium unleaded (required),453,12,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,Performance",Large,Convertible,19,11,86,479775 +Rolls-Royce,Phantom Drophead Coupe,2016,premium unleaded (required),453,12,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,Performance",Large,Convertible,19,11,86,492000 +Rolls-Royce,Phantom,2014,premium unleaded (required),453,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,19,11,86,402940 +Rolls-Royce,Phantom,2014,premium unleaded (required),453,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,19,11,86,474990 +Rolls-Royce,Phantom,2015,premium unleaded (required),453,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,19,11,86,407400 +Rolls-Royce,Phantom,2015,premium unleaded (required),453,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,19,11,86,480175 +Rolls-Royce,Phantom,2016,premium unleaded (required),453,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,19,11,86,417825 +Rolls-Royce,Phantom,2016,premium unleaded (required),453,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,Performance",Large,Sedan,19,11,86,492425 +Toyota,Pickup,1993,regular unleaded,150,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,20,15,2031,2047 +Toyota,Pickup,1993,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,17,14,2031,2550 +Toyota,Pickup,1993,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,17,14,2031,2221 +Toyota,Pickup,1993,regular unleaded,150,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,20,15,2031,2000 +Toyota,Pickup,1993,regular unleaded,116,4,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,20,17,2031,2142 +Toyota,Pickup,1993,regular unleaded,116,4,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,20,17,2031,2013 +Toyota,Pickup,1994,regular unleaded,116,4,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,20,17,2031,2293 +Toyota,Pickup,1994,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,17,14,2031,2281 +Toyota,Pickup,1994,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,19,2031,2000 +Toyota,Pickup,1994,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,19,2031,2000 +Toyota,Pickup,1994,regular unleaded,116,4,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,20,17,2031,2115 +Toyota,Pickup,1994,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,25,19,2031,2000 +Toyota,Pickup,1994,regular unleaded,150,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,20,15,2031,2040 +Toyota,Pickup,1994,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,17,14,2031,2423 +Toyota,Pickup,1994,regular unleaded,150,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,20,15,2031,2188 +Toyota,Pickup,1994,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,17,14,2031,2699 +Toyota,Pickup,1995,regular unleaded,150,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,22,16,2031,2311 +Toyota,Pickup,1995,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,17,14,2031,2691 +Toyota,Pickup,1995,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,25,19,2031,2197 +Toyota,Pickup,1995,regular unleaded,116,4,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,20,17,2031,2553 +Toyota,Pickup,1995,regular unleaded,116,4,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,20,17,2031,2409 +Toyota,Pickup,1995,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,17,14,2031,2912 +Toyota,Pickup,1995,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,19,2031,2000 +Toyota,Pickup,1995,regular unleaded,150,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,22,16,2031,2498 +Toyota,Pickup,1995,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,17,14,2031,2539 +Toyota,Pickup,1995,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,19,2031,2000 +Honda,Pilot,2015,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,Crossover,Midsize,4dr SUV,24,17,2202,33720 +Honda,Pilot,2015,regular unleaded,250,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,2202,40020 +Honda,Pilot,2015,regular unleaded,250,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,2202,36970 +Honda,Pilot,2015,regular unleaded,250,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,2202,33120 +Honda,Pilot,2015,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,Crossover,Midsize,4dr SUV,24,17,2202,41620 +Honda,Pilot,2015,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,Crossover,Midsize,4dr SUV,24,17,2202,38970 +Honda,Pilot,2015,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,Crossover,Midsize,4dr SUV,24,17,2202,31470 +Honda,Pilot,2015,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,Crossover,Midsize,4dr SUV,24,17,2202,34720 +Honda,Pilot,2015,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,Crossover,Midsize,4dr SUV,24,17,2202,36970 +Honda,Pilot,2015,regular unleaded,250,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,2202,35370 +Honda,Pilot,2015,regular unleaded,250,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,2202,29870 +Honda,Pilot,2015,regular unleaded,250,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,2202,32120 +Honda,Pilot,2015,regular unleaded,250,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,2202,37370 +Honda,Pilot,2015,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,Crossover,Midsize,4dr SUV,24,17,2202,38570 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,2202,39455 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,19,2202,46570 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,2202,38855 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,2202,38855 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,2202,37855 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,2202,33580 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,2202,36055 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,2202,31945 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,2202,37055 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,2202,30145 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,2202,34380 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,2202,32580 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,2202,35380 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,20,2202,41170 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,19,2202,42970 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,2202,37055 +Honda,Pilot,2016,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,2202,37655 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,2202,39255 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,2202,36455 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,2202,39855 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,2202,38055 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,19,2202,47070 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,2202,39255 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,2202,33030 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,2202,37455 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,2202,38255 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,2202,34830 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,2202,32395 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,20,2202,41670 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,2202,35830 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,19,2202,43470 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,2202,34030 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,2202,30595 +Honda,Pilot,2017,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,2202,37455 +Mitsubishi,Precis,1992,regular unleaded,81,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,25,436,2000 +Honda,Prelude,1999,regular unleaded,200,4,MANUAL,front wheel drive,2,Performance,Compact,Coupe,24,20,2202,3065 +Honda,Prelude,1999,regular unleaded,200,4,MANUAL,front wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,24,20,2202,3367 +Honda,Prelude,2000,regular unleaded,200,4,MANUAL,front wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,25,20,2202,3843 +Honda,Prelude,2000,regular unleaded,200,4,MANUAL,front wheel drive,2,Performance,Compact,Coupe,25,20,2202,3407 +Honda,Prelude,2001,premium unleaded (required),200,4,MANUAL,front wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,25,20,2202,26100 +Honda,Prelude,2001,premium unleaded (required),200,4,MANUAL,front wheel drive,2,Performance,Compact,Coupe,25,20,2202,23600 +Honda,Prelude,2001,premium unleaded (required),195,4,AUTOMATIC,front wheel drive,2,Performance,Compact,Coupe,24,19,2202,24600 +Toyota,Previa,1995,regular unleaded,138,4,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Minivan,20,15,2031,2000 +Toyota,Previa,1995,regular unleaded,161,4,AUTOMATIC,all wheel drive,3,N/A,Compact,Passenger Minivan,20,15,2031,2000 +Toyota,Previa,1995,regular unleaded,138,4,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Minivan,20,15,2031,2000 +Toyota,Previa,1995,regular unleaded,161,4,AUTOMATIC,all wheel drive,3,N/A,Compact,Passenger Minivan,20,15,2031,2194 +Toyota,Previa,1995,regular unleaded,161,4,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Minivan,20,16,2031,2000 +Toyota,Previa,1995,regular unleaded,138,4,AUTOMATIC,all wheel drive,3,N/A,Compact,Passenger Minivan,19,15,2031,2088 +Toyota,Previa,1995,regular unleaded,138,4,AUTOMATIC,all wheel drive,3,N/A,Compact,Passenger Minivan,19,15,2031,2000 +Toyota,Previa,1995,regular unleaded,161,4,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Minivan,20,16,2031,2000 +Toyota,Previa,1996,regular unleaded,161,4,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Minivan,20,16,2031,2064 +Toyota,Previa,1996,regular unleaded,161,4,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Minivan,20,16,2031,2304 +Toyota,Previa,1996,regular unleaded,161,4,AUTOMATIC,all wheel drive,3,N/A,Compact,Passenger Minivan,19,15,2031,2419 +Toyota,Previa,1996,regular unleaded,161,4,AUTOMATIC,all wheel drive,3,N/A,Compact,Passenger Minivan,19,15,2031,2196 +Toyota,Previa,1997,regular unleaded,161,4,AUTOMATIC,all wheel drive,3,N/A,Compact,Passenger Minivan,19,15,2031,2388 +Toyota,Previa,1997,regular unleaded,161,4,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Minivan,20,16,2031,2242 +Toyota,Previa,1997,regular unleaded,161,4,AUTOMATIC,all wheel drive,3,N/A,Compact,Passenger Minivan,19,15,2031,2728 +Toyota,Previa,1997,regular unleaded,161,4,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Minivan,20,16,2031,2580 +Toyota,Prius c,2014,regular unleaded,99,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,46,53,2031,20030 +Toyota,Prius c,2014,regular unleaded,99,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,46,53,2031,19080 +Toyota,Prius c,2014,regular unleaded,99,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,46,53,2031,21765 +Toyota,Prius c,2014,regular unleaded,99,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,46,53,2031,23360 +Toyota,Prius c,2015,regular unleaded,99,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,46,53,2031,20340 +Toyota,Prius c,2015,regular unleaded,99,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,46,53,2031,21765 +Toyota,Prius c,2015,regular unleaded,99,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,46,53,2031,19540 +Toyota,Prius c,2015,regular unleaded,99,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,46,53,2031,24475 +Toyota,Prius c,2016,regular unleaded,99,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,46,53,2031,20360 +Toyota,Prius c,2016,regular unleaded,99,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,46,53,2031,19560 +Toyota,Prius c,2016,regular unleaded,99,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,46,53,2031,24495 +Toyota,Prius c,2016,regular unleaded,99,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,46,53,2031,21785 +Toyota,Prius c,2016,regular unleaded,99,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,46,53,2031,21355 +Toyota,Prius Prime,2017,regular unleaded,121,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,53,55,2031,27100 +Toyota,Prius Prime,2017,regular unleaded,121,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,53,55,2031,33100 +Toyota,Prius Prime,2017,regular unleaded,121,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,53,55,2031,28800 +Toyota,Prius v,2015,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Wagon,40,44,2031,26675 +Toyota,Prius v,2015,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Wagon,40,44,2031,28060 +Toyota,Prius v,2015,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Wagon,40,44,2031,30935 +Toyota,Prius v,2015,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Wagon,40,44,2031,29695 +Toyota,Prius v,2016,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Wagon,40,44,2031,26675 +Toyota,Prius v,2016,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Wagon,40,44,2031,28060 +Toyota,Prius v,2016,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Wagon,40,44,2031,30935 +Toyota,Prius v,2016,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Wagon,40,44,2031,29695 +Toyota,Prius v,2017,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Wagon,39,43,2031,26675 +Toyota,Prius v,2017,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Wagon,39,43,2031,29695 +Toyota,Prius v,2017,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Wagon,39,43,2031,28060 +Toyota,Prius v,2017,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Wagon,39,43,2031,30935 +Toyota,Prius,2015,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,48,51,2031,25765 +Toyota,Prius,2015,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,48,51,2031,30005 +Toyota,Prius,2015,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,48,51,2031,24200 +Toyota,Prius,2015,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,48,51,2031,28435 +Toyota,Prius,2015,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,48,51,2031,26985 +Toyota,Prius,2015,regular unleaded,134,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,48,51,2031,23215 +Toyota,Prius,2016,regular unleaded,121,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,50,54,2031,24200 +Toyota,Prius,2016,regular unleaded,121,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,50,54,2031,26250 +Toyota,Prius,2016,regular unleaded,121,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,50,54,2031,28650 +Toyota,Prius,2016,regular unleaded,121,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,50,54,2031,30000 +Toyota,Prius,2016,regular unleaded,121,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,53,58,2031,24700 +Toyota,Prius,2016,regular unleaded,121,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,50,54,2031,28100 +Toyota,Prius,2017,regular unleaded,121,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,50,54,2031,28115 +Toyota,Prius,2017,regular unleaded,121,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,50,54,2031,30015 +Toyota,Prius,2017,regular unleaded,121,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,50,54,2031,29135 +Toyota,Prius,2017,regular unleaded,121,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,50,54,2031,26735 +Toyota,Prius,2017,regular unleaded,121,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,50,54,2031,24685 +Toyota,Prius,2017,regular unleaded,121,4,AUTOMATIC,front wheel drive,4,"Hatchback,Hybrid",Compact,4dr Hatchback,53,58,2031,25165 +Chevrolet,Prizm,2000,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,34,27,1385,2130 +Chevrolet,Prizm,2000,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,34,27,1385,2003 +Chevrolet,Prizm,2001,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,27,1385,14155 +Chevrolet,Prizm,2001,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,27,1385,16220 +Chevrolet,Prizm,2002,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,27,1385,14330 +Chevrolet,Prizm,2002,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,27,1385,16395 +Ford,Probe,1995,regular unleaded,118,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,23,5657,2000 +Ford,Probe,1995,regular unleaded,118,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,23,5657,2000 +Ford,Probe,1995,regular unleaded,164,6,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,24,18,5657,2000 +Ford,Probe,1996,regular unleaded,164,6,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,24,18,5657,2000 +Ford,Probe,1996,regular unleaded,118,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,23,5657,2000 +Ford,Probe,1996,regular unleaded,118,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,23,5657,2000 +Ford,Probe,1997,regular unleaded,118,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,23,5657,2000 +Ford,Probe,1997,regular unleaded,164,6,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,24,18,5657,2000 +Mazda,Protege5,2002,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,28,22,586,16455 +Mazda,Protege5,2003,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,28,22,586,16895 +Mazda,Protege,2001,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,586,13885 +Mazda,Protege,2001,regular unleaded,103,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,31,25,586,12765 +Mazda,Protege,2001,regular unleaded,103,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,31,25,586,13485 +Mazda,Protege,2001,regular unleaded,140,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,586,18020 +Mazda,Protege,2001,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,586,15535 +Mazda,Protege,2002,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,586,15700 +Mazda,Protege,2002,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,586,14975 +Mazda,Protege,2002,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,586,13075 +Mazda,Protege,2003,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,586,16140 +Mazda,Protege,2003,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,586,15415 +Mazda,Protege,2003,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,586,13680 +Chrysler,Prowler,2001,premium unleaded (required),253,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,21,15,1013,44625 +Chrysler,Prowler,2002,premium unleaded (required),253,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,21,16,1013,44625 +Plymouth,Prowler,1999,regular unleaded,253,6,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,21,15,535,20105 +Plymouth,Prowler,2000,regular unleaded,253,6,AUTOMATIC,rear wheel drive,2,Performance,Compact,Convertible,21,15,535,20901 +Plymouth,Prowler,2001,premium unleaded (required),253,6,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Convertible,21,15,535,44625 +Chrysler,PT Cruiser,2008,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,24,19,1013,19785 +Chrysler,PT Cruiser,2008,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,24,18,1013,23515 +Chrysler,PT Cruiser,2008,regular unleaded,150,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,26,21,1013,18430 +Chrysler,PT Cruiser,2008,regular unleaded,150,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,26,21,1013,15970 +Chrysler,PT Cruiser,2009,regular unleaded,150,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,26,21,1013,18000 +Chrysler,PT Cruiser,2009,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,24,19,1013,20780 +Chrysler,PT Cruiser,2009,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,24,18,1013,24510 +Chrysler,PT Cruiser,2010,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,24,19,1013,18275 +Nissan,Pulsar,1990,regular unleaded,90,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,31,23,2009,2000 +Audi,Q3,2015,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,29,20,3105,32500 +Audi,Q3,2015,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,29,20,3105,36400 +Audi,Q3,2015,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,28,20,3105,38500 +Audi,Q3,2015,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,28,20,3105,34600 +Audi,Q3,2016,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,29,20,3105,38600 +Audi,Q3,2016,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,28,20,3105,40700 +Audi,Q3,2016,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,29,20,3105,33700 +Audi,Q3,2016,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,28,20,3105,35800 +Audi,Q3,2017,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,28,20,3105,34500 +Audi,Q3,2017,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,28,20,3105,41300 +Audi,Q3,2017,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,28,20,3105,36600 +Audi,Q3,2017,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,28,20,3105,33900 +Audi,Q3,2017,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,28,20,3105,31800 +Audi,Q3,2017,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,28,20,3105,39200 +Infiniti,Q40,2015,premium unleaded (required),328,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,27,19,190,33950 +Infiniti,Q40,2015,premium unleaded (required),328,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,25,18,190,35550 +Infiniti,Q45,2004,regular unleaded,340,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,22,16,190,61600 +Infiniti,Q45,2004,regular unleaded,340,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,22,16,190,52400 +Infiniti,Q45,2005,regular unleaded,340,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,22,16,190,56400 +Infiniti,Q45,2006,premium unleaded (required),340,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,22,15,190,58100 +Infiniti,Q50,2015,premium unleaded (recommended),328,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,27,19,190,38950 +Infiniti,Q50,2015,premium unleaded (recommended),360,6,AUTOMATIC,all wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,35,28,190,46200 +Infiniti,Q50,2015,premium unleaded (recommended),328,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,190,37150 +Infiniti,Q50,2015,premium unleaded (recommended),328,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,27,19,190,45450 +Infiniti,Q50,2015,premium unleaded (recommended),328,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,29,20,190,43650 +Infiniti,Q50,2015,premium unleaded (recommended),328,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,27,19,190,41800 +Infiniti,Q50,2015,premium unleaded (recommended),360,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance,Hybrid",Midsize,Sedan,35,28,190,48600 +Infiniti,Q50,2015,premium unleaded (recommended),360,6,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Midsize,Sedan,36,29,190,44400 +Infiniti,Q50,2015,premium unleaded (recommended),360,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance,Hybrid",Midsize,Sedan,36,29,190,46800 +Infiniti,Q50,2015,premium unleaded (recommended),328,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,190,40000 +Infiniti,Q50,2016,premium unleaded (required),208,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,31,23,190,33950 +Infiniti,Q50,2016,premium unleaded (required),400,6,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,26,19,190,49950 +Infiniti,Q50,2016,premium unleaded (required),400,6,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,26,20,190,47950 +Infiniti,Q50,2016,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,27,19,190,41900 +Infiniti,Q50,2016,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,18,190,45900 +Infiniti,Q50,2016,premium unleaded (recommended),360,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance,Hybrid",Midsize,Sedan,31,27,190,49050 +Infiniti,Q50,2016,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,19,190,43900 +Infiniti,Q50,2016,premium unleaded (required),208,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,28,22,190,39650 +Infiniti,Q50,2016,premium unleaded (recommended),360,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance,Hybrid",Midsize,Sedan,34,28,190,47050 +Infiniti,Q50,2016,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,19,190,39900 +Infiniti,Q50,2016,premium unleaded (required),208,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,31,23,190,37650 +Infiniti,Q50,2016,premium unleaded (required),208,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,28,22,190,35950 +Infiniti,Q50,2017,premium unleaded (required),208,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,31,23,190,33950 +Infiniti,Q50,2017,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,190,44650 +Infiniti,Q50,2017,premium unleaded (required),400,6,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,26,19,190,50700 +Infiniti,Q50,2017,premium unleaded (required),208,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,22,190,44300 +Infiniti,Q50,2017,premium unleaded (required),400,6,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,26,20,190,48700 +Infiniti,Q50,2017,premium unleaded (recommended),360,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance,Hybrid",Compact,Sedan,30,26,190,49800 +Infiniti,Q50,2017,premium unleaded (required),208,4,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,31,23,190,38400 +Infiniti,Q50,2017,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,190,40650 +Infiniti,Q50,2017,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,27,19,190,42650 +Infiniti,Q50,2017,premium unleaded (required),208,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,28,22,190,40400 +Infiniti,Q50,2017,premium unleaded (required),208,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,28,22,190,35950 +Infiniti,Q50,2017,premium unleaded (required),208,4,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,23,190,42300 +Infiniti,Q50,2017,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,27,19,190,46650 +Infiniti,Q50,2017,premium unleaded (recommended),360,6,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance,Hybrid",Compact,Sedan,32,27,190,47800 +Audi,Q5,2015,premium unleaded (required),272,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,3105,52900 +Audi,Q5,2015,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,31,24,3105,47500 +Audi,Q5,2015,premium unleaded (required),245,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,30,24,3105,51900 +Audi,Q5,2015,premium unleaded (required),220,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,3105,42200 +Audi,Q5,2015,premium unleaded (required),220,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,3105,39300 +Audi,Q5,2015,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,31,24,3105,55000 +Audi,Q5,2015,premium unleaded (required),272,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,3105,45400 +Audi,Q5,2016,premium unleaded (required),272,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,3105,53500 +Audi,Q5,2016,premium unleaded (required),220,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,3105,40900 +Audi,Q5,2016,premium unleaded (required),220,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,3105,42750 +Audi,Q5,2016,premium unleaded (required),245,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,30,24,3105,52500 +Audi,Q5,2016,premium unleaded (required),272,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,3105,46000 +Audi,Q5,2016,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,31,24,3105,48100 +Audi,Q5,2016,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,31,24,3105,57700 +Audi,Q5,2016,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,31,24,3105,50200 +Audi,Q5,2016,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,31,24,3105,55600 +Audi,Q5,2017,premium unleaded (required),272,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,3105,53200 +Audi,Q5,2017,flex-fuel (premium unleaded recommended/E85),220,4,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel,Luxury",Midsize,4dr SUV,27,20,3105,40900 +Audi,Q5,2017,premium unleaded (required),272,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,3105,46400 +Audi,Q5,2017,flex-fuel (premium unleaded recommended/E85),220,4,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel,Luxury",Midsize,4dr SUV,27,20,3105,43150 +Infiniti,Q60 Convertible,2014,premium unleaded (recommended),325,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,24,16,190,53400 +Infiniti,Q60 Convertible,2014,premium unleaded (recommended),325,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,26,18,190,48550 +Infiniti,Q60 Convertible,2014,premium unleaded (required),343,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,Performance",Midsize,Convertible,26,18,190,62100 +Infiniti,Q60 Convertible,2015,premium unleaded (required),343,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,Performance",Midsize,Convertible,26,18,190,62100 +Infiniti,Q60 Convertible,2015,premium unleaded (recommended),325,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,24,16,190,53400 +Infiniti,Q60 Convertible,2015,premium unleaded (recommended),325,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Convertible,26,18,190,48550 +Infiniti,Q60 Coupe,2014,premium unleaded (required),348,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,25,17,190,51750 +Infiniti,Q60 Coupe,2014,premium unleaded (recommended),330,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,19,190,40950 +Infiniti,Q60 Coupe,2014,premium unleaded (recommended),330,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,25,18,190,42600 +Infiniti,Q60 Coupe,2014,premium unleaded (recommended),330,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,25,17,190,46050 +Infiniti,Q60 Coupe,2014,premium unleaded (required),348,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,27,19,190,53650 +Infiniti,Q60 Coupe,2015,premium unleaded (recommended),330,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,19,190,40950 +Infiniti,Q60 Coupe,2015,premium unleaded (recommended),330,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,25,17,190,46050 +Infiniti,Q60 Coupe,2015,premium unleaded (recommended),330,6,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,27,19,190,49650 +Infiniti,Q60 Coupe,2015,premium unleaded (recommended),330,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,25,18,190,42600 +Infiniti,Q60 Coupe,2015,premium unleaded (recommended),330,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Midsize,Coupe,25,17,190,47700 +Infiniti,Q60 Coupe,2017,premium unleaded (recommended),400,6,AUTOMATIC,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,26,19,190,53300 +Infiniti,Q60 Coupe,2017,premium unleaded (recommended),300,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,27,19,190,46300 +Infiniti,Q60 Coupe,2017,premium unleaded (recommended),300,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,28,19,190,44300 +Infiniti,Q60 Coupe,2017,premium unleaded (recommended),208,4,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,30,22,190,38950 +Infiniti,Q60 Coupe,2017,premium unleaded (recommended),400,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,27,20,190,51300 +Infiniti,Q60 Coupe,2017,premium unleaded (recommended),208,4,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Coupe,28,21,190,40950 +Infiniti,Q60 Coupe,2017,premium unleaded (recommended),208,4,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Coupe,28,21,190,43300 +Infiniti,Q60 Coupe,2017,premium unleaded (recommended),208,4,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,30,22,190,41300 +Infiniti,Q70,2014,premium unleaded (required),330,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,24,17,190,51750 +Infiniti,Q70,2014,premium unleaded (required),330,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,26,18,190,49600 +Infiniti,Q70,2014,premium unleaded (recommended),360,6,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,Sedan,34,29,190,55650 +Infiniti,Q70,2014,premium unleaded (required),420,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,190,64600 +Infiniti,Q70,2014,premium unleaded (required),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,190,62100 +Infiniti,Q70,2015,premium unleaded (required),330,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,26,18,190,51350 +Infiniti,Q70,2015,premium unleaded (required),330,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,26,18,190,49850 +Infiniti,Q70,2015,premium unleaded (required),330,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,24,17,190,52000 +Infiniti,Q70,2015,premium unleaded (required),416,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,16,190,67050 +Infiniti,Q70,2015,premium unleaded (required),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,16,190,62850 +Infiniti,Q70,2015,premium unleaded (required),420,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,16,190,65350 +Infiniti,Q70,2015,premium unleaded (recommended),360,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance,Hybrid",Large,Sedan,34,29,190,55900 +Infiniti,Q70,2015,premium unleaded (required),416,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,24,16,190,64550 +Infiniti,Q70,2015,premium unleaded (required),330,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,24,17,190,53500 +Infiniti,Q70,2016,premium unleaded (required),420,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,190,67050 +Infiniti,Q70,2016,premium unleaded (required),330,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,24,18,190,52000 +Infiniti,Q70,2016,premium unleaded (required),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,190,62850 +Infiniti,Q70,2016,premium unleaded (recommended),360,6,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,Sedan,34,29,190,55900 +Infiniti,Q70,2016,premium unleaded (required),420,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,23,16,190,65350 +Infiniti,Q70,2016,premium unleaded (required),420,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,190,64550 +Infiniti,Q70,2016,premium unleaded (required),330,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,26,18,190,51350 +Infiniti,Q70,2016,premium unleaded (required),330,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,24,18,190,53500 +Infiniti,Q70,2016,premium unleaded (required),330,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,26,18,190,49850 +Audi,Q7,2014,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Large,4dr SUV,28,19,3105,64900 +Audi,Q7,2014,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Large,4dr SUV,28,19,3105,52900 +Audi,Q7,2014,premium unleaded (required),333,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,22,16,3105,60900 +Audi,Q7,2014,premium unleaded (required),280,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,22,16,3105,47700 +Audi,Q7,2014,premium unleaded (required),280,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,22,16,3105,53700 +Audi,Q7,2014,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Large,4dr SUV,28,19,3105,58900 +Audi,Q7,2015,premium unleaded (required),333,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,22,16,3105,61900 +Audi,Q7,2015,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Large,4dr SUV,28,19,3105,53400 +Audi,Q7,2015,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Large,4dr SUV,28,19,3105,59900 +Audi,Q7,2015,premium unleaded (required),280,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,22,16,3105,54800 +Audi,Q7,2015,premium unleaded (required),280,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,22,16,3105,48300 +Audi,Q7,2015,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Large,4dr SUV,28,19,3105,65400 +Audi,Q7,2017,premium unleaded (required),333,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,4dr SUV,25,19,3105,58800 +Audi,Q7,2017,premium unleaded (required),333,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,4dr SUV,25,19,3105,64300 +Audi,Q7,2017,premium unleaded (required),333,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,4dr SUV,25,19,3105,54800 +Maserati,Quattroporte,2015,premium unleaded (required),404,6,AUTOMATIC,all wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,24,15,238,106900 +Maserati,Quattroporte,2015,premium unleaded (required),523,8,AUTOMATIC,rear wheel drive,4,"Exotic,Factory Tuner,Luxury,High-Performance",Large,Sedan,22,13,238,140500 +Maserati,Quattroporte,2016,premium unleaded (required),404,6,AUTOMATIC,all wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,23,16,238,107900 +Maserati,Quattroporte,2016,premium unleaded (required),404,6,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,23,16,238,99900 +Maserati,Quattroporte,2016,premium unleaded (required),523,8,AUTOMATIC,rear wheel drive,4,"Exotic,Factory Tuner,Luxury,High-Performance",Large,Sedan,22,15,238,141500 +Maserati,Quattroporte,2017,premium unleaded (required),404,6,AUTOMATIC,all wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,23,16,238,116000 +Maserati,Quattroporte,2017,premium unleaded (required),404,6,AUTOMATIC,all wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,23,16,238,109500 +Maserati,Quattroporte,2017,premium unleaded (required),523,8,AUTOMATIC,rear wheel drive,4,"Exotic,Factory Tuner,Luxury,High-Performance",Large,Sedan,22,15,238,145500 +Maserati,Quattroporte,2017,premium unleaded (required),404,6,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,23,16,238,109900 +Maserati,Quattroporte,2017,premium unleaded (required),404,6,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,23,16,238,109900 +Maserati,Quattroporte,2017,premium unleaded (required),404,6,AUTOMATIC,all wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,23,16,238,116000 +Maserati,Quattroporte,2017,premium unleaded (required),404,6,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury,High-Performance",Large,Sedan,23,16,238,103400 +Maserati,Quattroporte,2017,premium unleaded (required),523,8,AUTOMATIC,rear wheel drive,4,"Exotic,Factory Tuner,Luxury,High-Performance",Large,Sedan,22,15,238,145500 +Nissan,Quest,2014,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,25,19,2009,33750 +Nissan,Quest,2014,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,25,19,2009,42870 +Nissan,Quest,2014,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,25,19,2009,26220 +Nissan,Quest,2014,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,25,19,2009,29970 +Nissan,Quest,2015,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,20,2009,30280 +Nissan,Quest,2015,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,20,2009,34060 +Nissan,Quest,2015,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,20,2009,43180 +Nissan,Quest,2015,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,20,2009,26530 +Nissan,Quest,2016,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,20,2009,26580 +Nissan,Quest,2016,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,20,2009,34110 +Nissan,Quest,2016,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,20,2009,30540 +Nissan,Quest,2016,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,20,2009,43230 +Infiniti,QX4,2001,premium unleaded (required),240,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,4dr SUV,18,14,190,34150 +Infiniti,QX4,2001,premium unleaded (required),240,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,17,14,190,35550 +Infiniti,QX4,2002,premium unleaded (required),240,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,17,13,190,35550 +Infiniti,QX4,2002,premium unleaded (required),240,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,4dr SUV,18,14,190,34150 +Infiniti,QX4,2003,premium unleaded (required),240,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,4dr SUV,19,14,190,34750 +Infiniti,QX4,2003,premium unleaded (required),240,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,18,14,190,36150 +Infiniti,QX50,2015,premium unleaded (recommended),325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,190,36400 +Infiniti,QX50,2015,premium unleaded (recommended),325,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,25,17,190,37200 +Infiniti,QX50,2015,premium unleaded (recommended),325,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,17,190,35000 +Infiniti,QX50,2015,premium unleaded (recommended),325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,190,38600 +Infiniti,QX50,2016,premium unleaded (recommended),325,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,190,34450 +Infiniti,QX50,2016,premium unleaded (recommended),325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,190,35850 +Infiniti,QX50,2017,premium unleaded (recommended),325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,190,36250 +Infiniti,QX50,2017,premium unleaded (recommended),325,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,190,34450 +Infiniti,QX56,2009,premium unleaded (recommended),320,8,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,17,12,190,58150 +Infiniti,QX56,2009,premium unleaded (recommended),320,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,18,12,190,55050 +Infiniti,QX56,2010,premium unleaded (recommended),320,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,18,12,190,56050 +Infiniti,QX56,2010,premium unleaded (recommended),320,8,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,17,12,190,59150 +Infiniti,QX56,2011,premium unleaded (recommended),400,8,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,20,14,190,61800 +Infiniti,QX56,2011,premium unleaded (recommended),400,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,20,14,190,58700 +Infiniti,QX60,2015,premium unleaded (recommended),230,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Hybrid",Large,4dr SUV,28,26,190,45400 +Infiniti,QX60,2015,premium unleaded (recommended),265,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Large,4dr SUV,27,21,190,42400 +Infiniti,QX60,2015,premium unleaded (recommended),230,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Hybrid",Large,4dr SUV,28,25,190,46800 +Infiniti,QX60,2015,premium unleaded (recommended),265,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,26,19,190,43800 +Infiniti,QX60,2016,premium unleaded (recommended),265,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Large,4dr SUV,27,21,190,42600 +Infiniti,QX60,2016,premium unleaded (recommended),250,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Hybrid",Large,4dr SUV,28,25,190,53450 +Infiniti,QX60,2016,premium unleaded (recommended),250,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Hybrid",Large,4dr SUV,28,26,190,52050 +Infiniti,QX60,2016,premium unleaded (recommended),265,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,26,19,190,44400 +Infiniti,QX60,2017,premium unleaded (recommended),295,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,26,19,190,44900 +Infiniti,QX60,2017,premium unleaded (recommended),295,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Large,4dr SUV,27,20,190,43100 +Infiniti,QX70,2015,premium unleaded (required),325,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,190,45850 +Infiniti,QX70,2015,premium unleaded (required),325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,22,16,190,47300 +Infiniti,QX70,2016,premium unleaded (required),325,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,190,45850 +Infiniti,QX70,2016,premium unleaded (required),325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,22,16,190,47300 +Infiniti,QX70,2017,premium unleaded (required),325,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,190,45850 +Infiniti,QX70,2017,premium unleaded (required),325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,22,16,190,47650 +Infiniti,QX80,2014,premium unleaded (recommended),400,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,20,14,190,62700 +Infiniti,QX80,2014,premium unleaded (recommended),400,8,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,20,14,190,65800 +Infiniti,QX80,2015,premium unleaded (recommended),400,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,20,14,190,63250 +Infiniti,QX80,2015,premium unleaded (recommended),400,8,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,20,14,190,66350 +Infiniti,QX80,2016,premium unleaded (recommended),400,8,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,19,13,190,66350 +Infiniti,QX80,2016,premium unleaded (recommended),400,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,20,14,190,63250 +Infiniti,QX80,2016,premium unleaded (recommended),400,8,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,19,13,190,88850 +Infiniti,QX,2012,premium unleaded (recommended),400,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,20,14,190,60000 +Infiniti,QX,2012,premium unleaded (recommended),400,8,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,20,14,190,63100 +Infiniti,QX,2013,premium unleaded (recommended),400,8,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,20,14,190,64450 +Infiniti,QX,2013,premium unleaded (recommended),400,8,AUTOMATIC,rear wheel drive,4,Luxury,Large,4dr SUV,20,14,190,61350 +Mercedes-Benz,R-Class,2010,premium unleaded (required),268,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,Wagon,19,14,617,49300 +Mercedes-Benz,R-Class,2010,diesel,210,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Large,Wagon,24,18,617,50800 +Mercedes-Benz,R-Class,2011,premium unleaded (required),268,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,Wagon,19,15,617,50240 +Mercedes-Benz,R-Class,2011,diesel,210,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Large,Wagon,24,18,617,51740 +Mercedes-Benz,R-Class,2012,premium unleaded (required),302,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,Wagon,21,16,617,52690 +Mercedes-Benz,R-Class,2012,diesel,210,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Large,Wagon,23,18,617,53840 +Volkswagen,R32,2004,premium unleaded (recommended),240,6,MANUAL,all wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,24,17,873,29100 +Volkswagen,R32,2008,premium unleaded (required),250,6,AUTOMATED_MANUAL,all wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,23,18,873,32990 +Audi,R8,2014,premium unleaded (required),525,10,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,19,12,3105,164700 +Audi,R8,2014,premium unleaded (required),430,8,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,20,11,3105,128400 +Audi,R8,2014,premium unleaded (required),550,10,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,22,13,3105,179645 +Audi,R8,2014,premium unleaded (required),525,10,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,22,13,3105,173800 +Audi,R8,2014,premium unleaded (required),430,8,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,23,14,3105,137500 +Audi,R8,2014,premium unleaded (required),525,10,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,19,12,3105,151200 +Audi,R8,2014,premium unleaded (required),430,8,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,23,14,3105,124000 +Audi,R8,2014,premium unleaded (required),430,8,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,20,11,3105,114900 +Audi,R8,2014,premium unleaded (required),525,10,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,22,13,3105,160300 +Audi,R8,2014,premium unleaded (required),550,10,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,19,12,3105,170545 +Audi,R8,2015,premium unleaded (required),550,10,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,22,13,3105,199600 +Audi,R8,2015,premium unleaded (required),430,8,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,23,14,3105,138400 +Audi,R8,2015,premium unleaded (required),430,8,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,23,14,3105,124900 +Audi,R8,2015,premium unleaded (required),525,10,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,19,12,3105,166100 +Audi,R8,2015,premium unleaded (required),570,10,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,22,13,3105,199900 +Audi,R8,2015,premium unleaded (required),550,10,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,22,13,3105,182500 +Audi,R8,2015,premium unleaded (required),525,10,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,22,13,3105,162900 +Audi,R8,2015,premium unleaded (required),430,8,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,20,11,3105,115900 +Audi,R8,2015,premium unleaded (required),430,8,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,20,11,3105,129400 +Audi,R8,2015,premium unleaded (required),550,10,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,19,12,3105,190600 +Audi,R8,2015,premium unleaded (required),525,10,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,19,12,3105,153900 +Audi,R8,2015,premium unleaded (required),525,10,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Convertible,22,13,3105,175100 +Audi,R8,2015,premium unleaded (required),550,10,MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,19,12,3105,173500 +Audi,R8,2017,premium unleaded (required),540,10,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,22,14,3105,162900 +Audi,R8,2017,premium unleaded (required),610,10,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,High-Performance",Compact,Coupe,22,14,3105,189900 +Volkswagen,Rabbit,2007,regular unleaded,150,5,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,19,873,17110 +Volkswagen,Rabbit,2007,regular unleaded,150,5,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,19,873,17110 +Volkswagen,Rabbit,2007,regular unleaded,150,5,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,19,873,18185 +Volkswagen,Rabbit,2007,regular unleaded,150,5,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,19,873,18185 +Volkswagen,Rabbit,2007,regular unleaded,150,5,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,19,873,14990 +Volkswagen,Rabbit,2007,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,19,873,16065 +Volkswagen,Rabbit,2007,regular unleaded,150,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,19,873,16065 +Volkswagen,Rabbit,2007,regular unleaded,150,5,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,19,873,14990 +Volkswagen,Rabbit,2008,regular unleaded,170,5,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,22,873,17575 +Volkswagen,Rabbit,2008,regular unleaded,170,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,21,873,16675 +Volkswagen,Rabbit,2008,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,21,873,18650 +Volkswagen,Rabbit,2008,regular unleaded,170,5,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,22,873,15600 +Volkswagen,Rabbit,2008,regular unleaded,170,5,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,22,873,15600 +Volkswagen,Rabbit,2008,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,21,873,18650 +Volkswagen,Rabbit,2008,regular unleaded,170,5,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,22,873,17575 +Volkswagen,Rabbit,2008,regular unleaded,170,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,21,873,16675 +Volkswagen,Rabbit,2009,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,20,873,19340 +Volkswagen,Rabbit,2009,regular unleaded,170,5,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,21,873,16300 +Volkswagen,Rabbit,2009,regular unleaded,170,5,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,21,873,16300 +Volkswagen,Rabbit,2009,regular unleaded,170,5,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,20,873,19340 +Volkswagen,Rabbit,2009,regular unleaded,170,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,17400 +Volkswagen,Rabbit,2009,regular unleaded,170,5,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,873,17400 +Mitsubishi,Raider,2007,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,15,436,24005 +Mitsubishi,Raider,2007,regular unleaded,235,8,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,19,14,436,24005 +Mitsubishi,Raider,2007,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,15,436,23020 +Mitsubishi,Raider,2007,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,15,436,26750 +Mitsubishi,Raider,2007,regular unleaded,210,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,14,436,19890 +Mitsubishi,Raider,2007,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,18,14,436,26855 +Mitsubishi,Raider,2007,regular unleaded,235,8,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,14,436,28445 +Mitsubishi,Raider,2008,regular unleaded,210,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,16,436,20490 +Mitsubishi,Raider,2008,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,18,14,436,28780 +Mitsubishi,Raider,2008,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,15,436,25650 +Mitsubishi,Raider,2008,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,15,436,23590 +Mitsubishi,Raider,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,15,436,24235 +Mitsubishi,Raider,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,20,15,436,26295 +Mitsubishi,Raider,2009,regular unleaded,210,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,18,14,436,29425 +Mitsubishi,Raider,2009,regular unleaded,210,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,16,436,21135 +Buick,Rainier,2005,regular unleaded,275,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,4dr SUV,19,14,155,35610 +Buick,Rainier,2005,regular unleaded,275,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,155,33785 +Buick,Rainier,2006,regular unleaded,291,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,4dr SUV,20,14,155,32580 +Buick,Rainier,2006,regular unleaded,291,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,155,30580 +Buick,Rainier,2007,regular unleaded,291,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,4dr SUV,20,14,155,33570 +Buick,Rainier,2007,regular unleaded,291,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,155,31550 +GMC,Rally Wagon,1994,regular unleaded,195,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Passenger Van,16,11,549,2000 +GMC,Rally Wagon,1994,regular unleaded,155,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Van,17,14,549,2000 +GMC,Rally Wagon,1994,regular unleaded,195,8,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,16,11,549,2000 +GMC,Rally Wagon,1994,regular unleaded,155,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Van,17,14,549,2000 +GMC,Rally Wagon,1995,regular unleaded,165,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Van,15,13,549,2000 +GMC,Rally Wagon,1995,regular unleaded,165,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Van,15,13,549,2000 +Dodge,RAM 150,1991,regular unleaded,125,6,UNKNOWN,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,1851,2000 +Dodge,RAM 150,1991,regular unleaded,125,6,UNKNOWN,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,1851,2000 +Dodge,RAM 150,1991,regular unleaded,170,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,13,10,1851,2000 +Dodge,RAM 150,1991,regular unleaded,170,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,14,11,1851,2000 +Dodge,RAM 150,1991,regular unleaded,125,6,UNKNOWN,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,1851,2000 +Dodge,RAM 150,1991,regular unleaded,125,6,UNKNOWN,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,1851,2000 +Dodge,RAM 150,1991,regular unleaded,125,6,UNKNOWN,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,1851,2000 +Dodge,RAM 150,1991,regular unleaded,125,6,UNKNOWN,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,1851,2000 +Dodge,RAM 150,1991,regular unleaded,170,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,13,10,1851,2000 +Dodge,RAM 150,1991,regular unleaded,125,6,UNKNOWN,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,1851,2000 +Dodge,RAM 150,1991,regular unleaded,170,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,14,11,1851,2000 +Dodge,RAM 150,1991,regular unleaded,125,6,UNKNOWN,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,12,1851,2000 +Dodge,RAM 150,1992,regular unleaded,180,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,16,11,1851,2000 +Dodge,RAM 150,1992,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,15,12,1851,2000 +Dodge,RAM 150,1992,regular unleaded,180,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,14,1851,2000 +Dodge,RAM 150,1992,regular unleaded,180,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,14,1851,2000 +Dodge,RAM 150,1992,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,16,11,1851,2000 +Dodge,RAM 150,1992,regular unleaded,180,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,16,11,1851,2000 +Dodge,RAM 150,1992,regular unleaded,180,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,14,1851,2000 +Dodge,RAM 150,1992,regular unleaded,180,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,14,1851,2000 +Dodge,RAM 150,1992,regular unleaded,180,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,16,11,1851,2000 +Dodge,RAM 150,1992,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,15,12,1851,2000 +Dodge,RAM 150,1992,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,16,11,1851,2000 +Dodge,RAM 150,1992,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,16,11,1851,2000 +Dodge,RAM 150,1992,regular unleaded,180,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,16,11,1851,2000 +Dodge,RAM 150,1992,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,16,11,1851,2000 +Dodge,RAM 150,1993,regular unleaded,180,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,16,11,1851,2000 +Dodge,RAM 150,1993,regular unleaded,180,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,16,11,1851,2000 +Dodge,RAM 150,1993,regular unleaded,180,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,16,11,1851,2000 +Dodge,RAM 150,1993,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,16,12,1851,2000 +Dodge,RAM 150,1993,regular unleaded,180,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,14,1851,2000 +Dodge,RAM 150,1993,regular unleaded,180,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,14,1851,2000 +Dodge,RAM 150,1993,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,16,12,1851,2000 +Dodge,RAM 150,1993,regular unleaded,180,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,14,1851,2000 +Dodge,RAM 150,1993,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,16,12,1851,2000 +Dodge,RAM 150,1993,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,15,12,1851,2008 +Dodge,RAM 150,1993,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,15,12,1851,2083 +Dodge,RAM 150,1993,regular unleaded,180,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,14,1851,2000 +Dodge,RAM 150,1993,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,16,12,1851,2000 +Dodge,RAM 150,1993,regular unleaded,180,6,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,16,11,1851,2000 +Dodge,RAM 250,1991,regular unleaded,170,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,13,10,1851,2000 +Dodge,RAM 250,1991,regular unleaded,170,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,13,11,1851,2000 +Dodge,RAM 250,1991,regular unleaded,170,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,13,10,1851,2000 +Dodge,RAM 250,1991,regular unleaded,170,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,13,10,1851,2000 +Dodge,RAM 250,1991,regular unleaded,170,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,13,10,1851,2000 +Dodge,RAM 250,1991,regular unleaded,170,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,13,10,1851,2000 +Dodge,RAM 250,1991,regular unleaded,125,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,13,11,1851,2000 +Dodge,RAM 250,1991,regular unleaded,170,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,13,11,1851,2000 +Dodge,RAM 250,1991,regular unleaded,125,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,13,11,1851,2000 +Dodge,RAM 250,1991,regular unleaded,125,8,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,13,11,1851,2000 +Dodge,RAM 250,1992,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,16,11,1851,2000 +Dodge,RAM 250,1992,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,15,12,1851,2000 +Dodge,RAM 250,1992,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,15,12,1851,2000 +Dodge,RAM 250,1992,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,15,12,1851,2000 +Dodge,RAM 250,1992,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,16,11,1851,2000 +Dodge,RAM 250,1992,regular unleaded,180,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,13,1851,2000 +Dodge,RAM 250,1992,regular unleaded,180,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,17,13,1851,2000 +Dodge,RAM 250,1992,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,15,12,1851,2093 +Dodge,RAM 250,1993,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,15,12,1851,2073 +Dodge,RAM 250,1993,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,15,12,1851,2220 +Dodge,RAM 250,1993,regular unleaded,180,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,16,11,1851,2000 +Dodge,RAM 250,1993,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,15,12,1851,2122 +Dodge,RAM 250,1993,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Large,Regular Cab Pickup,15,12,1851,2046 +Dodge,RAM 250,1993,regular unleaded,230,8,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,16,12,1851,2000 +Dodge,RAM 250,1993,regular unleaded,180,6,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,16,11,1851,2000 +Dodge,Ram 50 Pickup,1991,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,22,17,1851,2000 +Dodge,Ram 50 Pickup,1991,regular unleaded,143,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,20,15,1851,2000 +Dodge,Ram 50 Pickup,1991,regular unleaded,143,6,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,20,15,1851,2000 +Dodge,Ram 50 Pickup,1991,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,22,17,1851,2000 +Dodge,Ram 50 Pickup,1991,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,22,17,1851,2000 +Dodge,Ram 50 Pickup,1991,regular unleaded,143,6,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,20,15,1851,2000 +Dodge,Ram 50 Pickup,1991,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,22,17,1851,2000 +Dodge,Ram 50 Pickup,1991,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,22,17,1851,2000 +Dodge,Ram 50 Pickup,1991,regular unleaded,116,4,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,20,17,1851,2000 +Dodge,Ram 50 Pickup,1991,regular unleaded,143,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,20,15,1851,2000 +Dodge,Ram 50 Pickup,1992,regular unleaded,116,4,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,20,17,1851,2000 +Dodge,Ram 50 Pickup,1992,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,22,17,1851,2000 +Dodge,Ram 50 Pickup,1992,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,22,17,1851,2000 +Dodge,Ram 50 Pickup,1992,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,22,17,1851,2000 +Dodge,Ram 50 Pickup,1992,regular unleaded,115,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,22,17,1851,2000 +Dodge,Ram 50 Pickup,1993,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,22,17,1851,2000 +Dodge,Ram 50 Pickup,1993,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,22,17,1851,2000 +Dodge,Ram 50 Pickup,1993,regular unleaded,116,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,22,17,1851,2000 +Dodge,Ram 50 Pickup,1993,regular unleaded,116,4,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,20,17,1851,2000 +Dodge,Ram Cargo,2001,regular unleaded,225,8,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,17,12,1851,20240 +Dodge,Ram Cargo,2001,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,15,13,1851,18740 +Dodge,Ram Cargo,2001,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Cargo Van,15,13,1851,18695 +Dodge,Ram Cargo,2001,regular unleaded,225,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,17,12,1851,22305 +Dodge,Ram Cargo,2001,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,15,13,1851,20850 +Dodge,Ram Cargo,2002,regular unleaded,225,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,14,12,1851,22885 +Dodge,Ram Cargo,2002,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,15,13,1851,21430 +Dodge,Ram Cargo,2002,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Cargo Van,15,13,1851,19275 +Dodge,Ram Cargo,2002,regular unleaded,225,8,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,14,12,1851,20820 +Dodge,Ram Cargo,2002,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,15,13,1851,19320 +Dodge,Ram Cargo,2003,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,15,13,1851,22190 +Dodge,Ram Cargo,2003,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Cargo Van,15,13,1851,20035 +Dodge,Ram Cargo,2003,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,15,13,1851,20080 +Dodge,Ram Cargo,2003,regular unleaded,225,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,15,13,1851,23645 +Dodge,Ram Cargo,2003,regular unleaded,225,8,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,15,13,1851,21580 +Dodge,Ram Pickup 1500,2008,regular unleaded,215,6,MANUAL,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,19,16,1851,22150 +Dodge,Ram Pickup 1500,2008,regular unleaded,345,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,19,13,1851,38100 +Dodge,Ram Pickup 1500,2008,regular unleaded,310,8,MANUAL,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,16,12,1851,29395 +Dodge,Ram Pickup 1500,2008,flex-fuel (unleaded/E85),310,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,1851,28755 +Dodge,Ram Pickup 1500,2008,regular unleaded,345,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,19,13,1851,36230 +Dodge,Ram Pickup 1500,2008,regular unleaded,310,8,MANUAL,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,16,12,1851,26705 +Dodge,Ram Pickup 1500,2008,regular unleaded,310,8,MANUAL,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,1851,30775 +Dodge,Ram Pickup 1500,2008,regular unleaded,310,8,MANUAL,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,17,13,1851,25435 +Dodge,Ram Pickup 1500,2008,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,1851,34865 +Dodge,Ram Pickup 1500,2008,regular unleaded,310,8,MANUAL,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,16,12,1851,30655 +Dodge,Ram Pickup 1500,2008,regular unleaded,215,6,MANUAL,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,19,16,1851,26320 +Dodge,Ram Pickup 1500,2008,regular unleaded,345,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,19,13,1851,33730 +Dodge,Ram Pickup 1500,2008,regular unleaded,310,8,MANUAL,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,16,12,1851,27045 +Dodge,Ram Pickup 1500,2008,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,1851,32155 +Dodge,Ram Pickup 1500,2008,regular unleaded,345,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,1851,41350 +Dodge,Ram Pickup 1500,2008,regular unleaded,310,8,MANUAL,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,17,13,1851,25720 +Dodge,Ram Pickup 1500,2008,regular unleaded,345,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,1851,36980 +Dodge,Ram Pickup 1500,2008,regular unleaded,345,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,1851,39780 +Dodge,Ram Pickup 1500,2008,regular unleaded,215,6,MANUAL,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,19,16,1851,22435 +Dodge,Ram Pickup 1500,2008,regular unleaded,310,8,MANUAL,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,16,12,1851,34275 +Dodge,Ram Pickup 1500,2008,regular unleaded,310,8,MANUAL,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,16,12,1851,29055 +Dodge,Ram Pickup 1500,2008,flex-fuel (unleaded/E85),310,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,1851,31445 +Dodge,Ram Pickup 1500,2009,regular unleaded,390,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,1851,43490 +Dodge,Ram Pickup 1500,2009,flex-fuel (unleaded/E85),310,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,19,14,1851,31880 +Dodge,Ram Pickup 1500,2009,regular unleaded,390,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,20,14,1851,38120 +Dodge,Ram Pickup 1500,2009,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,1851,32750 +Dodge,Ram Pickup 1500,2009,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,13,1851,26275 +Dodge,Ram Pickup 1500,2009,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,1851,29985 +Dodge,Ram Pickup 1500,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,20,14,1851,25575 +Dodge,Ram Pickup 1500,2009,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,13,1851,29285 +Dodge,Ram Pickup 1500,2009,flex-fuel (unleaded/E85),310,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,19,14,1851,29530 +Dodge,Ram Pickup 1500,2009,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,1851,35100 +Dodge,Ram Pickup 1500,2009,flex-fuel (unleaded/E85),310,8,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,19,14,1851,26015 +Dodge,Ram Pickup 1500,2009,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,13,1851,29585 +Dodge,Ram Pickup 1500,2009,flex-fuel (unleaded/E85),310,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,19,14,1851,29725 +Dodge,Ram Pickup 1500,2009,regular unleaded,390,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,20,14,1851,40270 +Dodge,Ram Pickup 1500,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,20,14,1851,21820 +Dodge,Ram Pickup 1500,2009,regular unleaded,210,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,20,14,1851,21520 +Dodge,Ram Pickup 1500,2009,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,13,1851,25975 +Dodge,Ram Pickup 1500,2009,flex-fuel (unleaded/E85),310,8,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,19,14,1851,25715 +Dodge,Ram Pickup 1500,2009,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,1851,32945 +Dodge,Ram Pickup 1500,2009,regular unleaded,390,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,1851,41340 +Dodge,Ram Pickup 1500,2010,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,1851,31730 +Dodge,Ram Pickup 1500,2010,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,13,1851,25065 +Dodge,Ram Pickup 1500,2010,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,13,1851,28725 +Dodge,Ram Pickup 1500,2010,regular unleaded,215,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,20,14,1851,24665 +Dodge,Ram Pickup 1500,2010,flex-fuel (unleaded/E85),310,8,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,19,14,1851,25155 +Dodge,Ram Pickup 1500,2010,flex-fuel (unleaded/E85),310,8,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,19,14,1851,24855 +Dodge,Ram Pickup 1500,2010,flex-fuel (unleaded/E85),310,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,19,14,1851,28865 +Dodge,Ram Pickup 1500,2010,regular unleaded,215,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,20,14,1851,20610 +Dodge,Ram Pickup 1500,2010,flex-fuel (unleaded/E85),310,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,19,14,1851,28510 +Dodge,Ram Pickup 1500,2010,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,13,1851,25365 +Dodge,Ram Pickup 1500,2010,regular unleaded,390,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,20,14,1851,36880 +Dodge,Ram Pickup 1500,2010,regular unleaded,215,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,20,14,1851,20910 +Dodge,Ram Pickup 1500,2010,regular unleaded,390,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,20,14,1851,39035 +Dodge,Ram Pickup 1500,2010,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,13,1851,28425 +Dodge,Ram Pickup 1500,2010,regular unleaded,390,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,1851,40495 +Dodge,Ram Pickup 1500,2010,flex-fuel (unleaded/E85),310,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,19,14,1851,31020 +Dodge,Ram Pickup 1500,2010,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,1851,34240 +Dodge,Ram Pickup 1500,2010,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,1851,32085 +Dodge,Ram Pickup 1500,2010,regular unleaded,390,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,1851,42650 +Dodge,Ram Pickup 1500,2010,flex-fuel (unleaded/E85),310,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,1851,29075 +Dodge,Ram Van,1998,regular unleaded,230,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,17,12,1851,2245 +Dodge,Ram Van,1998,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,16,13,1851,2034 +Dodge,Ram Van,1998,regular unleaded,230,8,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,17,12,1851,2239 +Dodge,Ram Van,1998,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Cargo Van,16,13,1851,2000 +Dodge,Ram Van,1999,regular unleaded,230,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,18,12,1851,2316 +Dodge,Ram Van,1999,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,16,14,1851,2118 +Dodge,Ram Van,1999,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Cargo Van,16,14,1851,2041 +Dodge,Ram Van,2000,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,16,13,1851,2237 +Dodge,Ram Van,2000,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,16,13,1851,2348 +Dodge,Ram Van,2000,regular unleaded,225,8,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,17,12,1851,2320 +Dodge,Ram Van,2000,regular unleaded,225,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,17,12,1851,2422 +Dodge,Ram Van,2000,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Cargo Van,16,13,1851,2087 +Dodge,Ram Wagon,2000,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Van,15,13,1851,2326 +Dodge,Ram Wagon,2000,regular unleaded,225,8,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,14,11,1851,2332 +Dodge,Ram Wagon,2001,regular unleaded,225,8,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,15,11,1851,23360 +Dodge,Ram Wagon,2001,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Van,15,12,1851,21345 +Dodge,Ram Wagon,2002,regular unleaded,175,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Van,15,13,1851,21345 +Dodge,Ramcharger,1991,regular unleaded,170,8,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,13,10,1851,2000 +Dodge,Ramcharger,1991,regular unleaded,170,8,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,12,11,1851,2000 +Dodge,Ramcharger,1991,regular unleaded,170,8,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,13,10,1851,2000 +Dodge,Ramcharger,1991,regular unleaded,170,8,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,12,11,1851,2000 +Dodge,Ramcharger,1991,regular unleaded,170,8,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,13,10,1851,2000 +Dodge,Ramcharger,1991,regular unleaded,170,8,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,12,11,1851,2000 +Dodge,Ramcharger,1992,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,14,11,1851,2000 +Dodge,Ramcharger,1992,regular unleaded,230,8,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,15,11,1851,2000 +Dodge,Ramcharger,1992,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,14,11,1851,2000 +Dodge,Ramcharger,1992,regular unleaded,230,8,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,15,11,1851,2000 +Dodge,Ramcharger,1992,regular unleaded,230,8,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,15,11,1851,2000 +Dodge,Ramcharger,1992,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,14,11,1851,2000 +Dodge,Ramcharger,1992,regular unleaded,230,8,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,15,11,1851,2000 +Dodge,Ramcharger,1992,regular unleaded,230,8,MANUAL,four wheel drive,2,N/A,Midsize,2dr SUV,14,11,1851,2000 +Dodge,Ramcharger,1993,regular unleaded,230,8,AUTOMATIC,four wheel drive,2,N/A,Midsize,2dr SUV,15,11,1851,2000 +Dodge,Ramcharger,1993,regular unleaded,230,8,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,16,11,1851,2000 +Dodge,Ramcharger,1993,regular unleaded,230,8,AUTOMATIC,four wheel drive,2,N/A,Midsize,2dr SUV,15,11,1851,2000 +Dodge,Ramcharger,1993,regular unleaded,230,8,AUTOMATIC,four wheel drive,2,N/A,Midsize,2dr SUV,15,11,1851,2000 +Dodge,Ramcharger,1993,regular unleaded,230,8,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,16,11,1851,2000 +Dodge,Ramcharger,1993,regular unleaded,230,8,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,16,11,1851,2000 +Dodge,Ramcharger,1993,regular unleaded,230,8,AUTOMATIC,four wheel drive,2,N/A,Midsize,2dr SUV,15,11,1851,2000 +Dodge,Ramcharger,1993,regular unleaded,230,8,AUTOMATIC,rear wheel drive,2,N/A,Midsize,2dr SUV,16,11,1851,2000 +Land Rover,Range Rover Evoque,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,30,21,258,60000 +Land Rover,Range Rover Evoque,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,2,"Crossover,Luxury",Compact,2dr SUV,30,21,258,57600 +Land Rover,Range Rover Evoque,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,30,21,258,48300 +Land Rover,Range Rover Evoque,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,30,21,258,48300 +Land Rover,Range Rover Evoque,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,30,21,258,41100 +Land Rover,Range Rover Evoque,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,2,"Crossover,Luxury",Compact,2dr SUV,30,21,258,45100 +Land Rover,Range Rover Evoque,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,30,21,258,44100 +Land Rover,Range Rover Evoque,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,2,"Crossover,Luxury",Compact,2dr SUV,30,21,258,49900 +Land Rover,Range Rover Evoque,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,30,21,258,48300 +Land Rover,Range Rover Evoque,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,30,21,258,56600 +Land Rover,Range Rover Evoque,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,30,21,258,55700 +Land Rover,Range Rover Evoque,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,30,21,258,48900 +Land Rover,Range Rover Evoque,2015,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,30,21,258,48300 +Land Rover,Range Rover Evoque,2016,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,30,21,258,50475 +Land Rover,Range Rover Evoque,2016,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,30,21,258,53775 +Land Rover,Range Rover Evoque,2016,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,2,"Crossover,Luxury",Compact,2dr SUV,30,21,258,46675 +Land Rover,Range Rover Evoque,2016,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,2,"Crossover,Luxury",Compact,2dr SUV,30,21,258,53775 +Land Rover,Range Rover Evoque,2016,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,30,21,258,41475 +Land Rover,Range Rover Evoque,2016,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,30,21,258,60775 +Land Rover,Range Rover Evoque,2016,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,30,21,258,45675 +Land Rover,Range Rover Evoque,2017,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,29,21,258,51000 +Land Rover,Range Rover Evoque,2017,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,2,"Crossover,Luxury",Compact,2dr SUV,29,21,258,45700 +Land Rover,Range Rover Evoque,2017,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,29,21,258,45800 +Land Rover,Range Rover Evoque,2017,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,2,"Crossover,Luxury",Compact,Convertible SUV,28,20,258,57700 +Land Rover,Range Rover Evoque,2017,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,29,21,258,62500 +Land Rover,Range Rover Evoque,2017,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,2,"Crossover,Luxury",Compact,Convertible SUV,28,20,258,51100 +Land Rover,Range Rover Evoque,2017,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,29,21,258,41800 +Land Rover,Range Rover Evoque,2017,premium unleaded (recommended),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,29,21,258,54200 +Land Rover,Range Rover Sport,2014,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Midsize,4dr SUV,19,14,258,79100 +Land Rover,Range Rover Sport,2014,premium unleaded (required),340,6,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Midsize,4dr SUV,23,17,258,67600 +Land Rover,Range Rover Sport,2014,flex-fuel (premium unleaded required/E85),340,6,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,Performance",Midsize,4dr SUV,23,17,258,62600 +Land Rover,Range Rover Sport,2014,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Midsize,4dr SUV,19,14,258,92400 +Land Rover,Range Rover Sport,2014,premium unleaded (required),510,8,AUTOMATIC,four wheel drive,4,"Luxury,High-Performance",Midsize,4dr SUV,19,14,258,92400 +Land Rover,Range Rover Sport,2014,premium unleaded (required),510,8,AUTOMATIC,four wheel drive,4,"Luxury,High-Performance",Midsize,4dr SUV,19,14,258,79100 +Land Rover,Range Rover Sport,2014,flex-fuel (premium unleaded required/E85),340,6,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,Performance",Midsize,4dr SUV,23,17,258,67600 +Land Rover,Range Rover Sport,2014,premium unleaded (required),340,6,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Midsize,4dr SUV,23,17,258,62600 +Land Rover,Range Rover Sport,2015,flex-fuel (premium unleaded required/E85),340,6,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,Performance",Midsize,4dr SUV,23,17,258,63350 +Land Rover,Range Rover Sport,2015,flex-fuel (premium unleaded required/E85),340,6,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,Performance",Midsize,4dr SUV,23,17,258,68295 +Land Rover,Range Rover Sport,2015,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Midsize,4dr SUV,19,14,258,79995 +Land Rover,Range Rover Sport,2015,flex-fuel (premium unleaded required/E85),550,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,19,14,258,110475 +Land Rover,Range Rover Sport,2015,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Midsize,4dr SUV,19,14,258,92495 +Land Rover,Range Rover Sport,2015,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Midsize,4dr SUV,19,14,258,92495 +Land Rover,Range Rover Sport,2015,flex-fuel (premium unleaded required/E85),340,6,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,Performance",Midsize,4dr SUV,23,17,258,76875 +Land Rover,Range Rover Sport,2016,premium unleaded (recommended),510,8,AUTOMATIC,four wheel drive,4,"Luxury,High-Performance",Midsize,4dr SUV,19,14,258,93075 +Land Rover,Range Rover Sport,2016,premium unleaded (recommended),510,8,AUTOMATIC,four wheel drive,4,"Luxury,High-Performance",Midsize,4dr SUV,19,14,258,79950 +Land Rover,Range Rover Sport,2016,premium unleaded (recommended),510,8,AUTOMATIC,four wheel drive,4,"Luxury,High-Performance",Midsize,4dr SUV,19,14,258,93295 +Land Rover,Range Rover Sport,2016,premium unleaded (recommended),550,8,AUTOMATIC,four wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,19,14,258,111350 +Land Rover,Range Rover Sport,2016,premium unleaded (recommended),340,6,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Midsize,4dr SUV,23,17,258,64950 +Land Rover,Range Rover Sport,2016,diesel,254,6,AUTOMATIC,four wheel drive,4,"Diesel,Luxury",Midsize,4dr SUV,29,22,258,66450 +Land Rover,Range Rover Sport,2016,premium unleaded (recommended),340,6,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Midsize,4dr SUV,23,17,258,69950 +Land Rover,Range Rover Sport,2016,diesel,254,6,AUTOMATIC,four wheel drive,4,"Diesel,Luxury",Midsize,4dr SUV,29,22,258,71450 +Land Rover,Range Rover Sport,2016,premium unleaded (recommended),510,8,AUTOMATIC,four wheel drive,4,"Luxury,High-Performance",Midsize,4dr SUV,19,14,258,82695 +Land Rover,Range Rover,2014,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,4dr SUV,19,13,258,142100 +Land Rover,Range Rover,2014,premium unleaded (required),510,8,AUTOMATIC,four wheel drive,4,"Luxury,High-Performance",Large,4dr SUV,19,13,258,105300 +Land Rover,Range Rover,2014,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,4dr SUV,19,13,258,184105 +Land Rover,Range Rover,2014,flex-fuel (premium unleaded required/E85),340,6,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury",Large,4dr SUV,23,17,258,83300 +Land Rover,Range Rover,2014,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,4dr SUV,19,13,258,136750 +Land Rover,Range Rover,2014,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,4dr SUV,19,13,258,105300 +Land Rover,Range Rover,2014,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,4dr SUV,19,13,258,100100 +Land Rover,Range Rover,2014,premium unleaded (required),340,6,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,23,17,258,83300 +Land Rover,Range Rover,2014,premium unleaded (required),510,8,AUTOMATIC,four wheel drive,4,"Luxury,High-Performance",Large,4dr SUV,19,13,258,100100 +Land Rover,Range Rover,2014,premium unleaded (required),510,8,AUTOMATIC,four wheel drive,4,"Luxury,High-Performance",Large,4dr SUV,19,13,258,184105 +Land Rover,Range Rover,2014,premium unleaded (required),510,8,AUTOMATIC,four wheel drive,4,"Luxury,High-Performance",Large,4dr SUV,19,13,258,136750 +Land Rover,Range Rover,2014,flex-fuel (premium unleaded required/E85),340,6,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury",Large,4dr SUV,23,17,258,88300 +Land Rover,Range Rover,2014,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,4dr SUV,19,13,258,118605 +Land Rover,Range Rover,2014,premium unleaded (required),510,8,AUTOMATIC,four wheel drive,4,"Luxury,High-Performance",Large,4dr SUV,19,13,258,142100 +Land Rover,Range Rover,2014,premium unleaded (required),340,6,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,23,17,258,88300 +Land Rover,Range Rover,2015,flex-fuel (premium unleaded required/E85),340,6,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury",Large,4dr SUV,23,17,258,83495 +Land Rover,Range Rover,2015,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,4dr SUV,19,13,258,101995 +Land Rover,Range Rover,2015,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,4dr SUV,19,13,258,106995 +Land Rover,Range Rover,2015,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,4dr SUV,19,13,258,118845 +Land Rover,Range Rover,2015,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,4dr SUV,19,13,258,186495 +Land Rover,Range Rover,2015,flex-fuel (premium unleaded required/E85),340,6,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury",Large,4dr SUV,23,17,258,98995 +Land Rover,Range Rover,2015,flex-fuel (premium unleaded required/E85),340,6,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury",Large,4dr SUV,23,17,258,89995 +Land Rover,Range Rover,2015,flex-fuel (premium unleaded required/E85),340,6,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury",Large,4dr SUV,23,17,258,95195 +Land Rover,Range Rover,2015,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,4dr SUV,19,13,258,137995 +Land Rover,Range Rover,2015,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,4dr SUV,19,13,258,142995 +Land Rover,Range Rover,2015,flex-fuel (premium unleaded required/E85),510,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Luxury,High-Performance",Large,4dr SUV,19,13,258,123845 +Land Rover,Range Rover,2016,diesel,254,6,AUTOMATIC,four wheel drive,4,"Diesel,Luxury",Large,4dr SUV,29,22,258,86450 +Land Rover,Range Rover,2016,premium unleaded (recommended),510,8,AUTOMATIC,four wheel drive,4,"Luxury,High-Performance",Large,4dr SUV,19,14,258,139995 +Land Rover,Range Rover,2016,premium unleaded (recommended),510,8,AUTOMATIC,four wheel drive,4,"Luxury,High-Performance",Large,4dr SUV,19,14,258,103195 +Land Rover,Range Rover,2016,premium unleaded (recommended),510,8,AUTOMATIC,four wheel drive,4,"Luxury,High-Performance",Large,4dr SUV,19,14,258,144995 +Land Rover,Range Rover,2016,premium unleaded (recommended),340,6,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,23,17,258,84950 +Land Rover,Range Rover,2016,premium unleaded (recommended),550,8,AUTOMATIC,four wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,4dr SUV,19,14,258,199495 +Land Rover,Range Rover,2016,premium unleaded (recommended),510,8,AUTOMATIC,four wheel drive,4,"Luxury,High-Performance",Large,4dr SUV,19,14,258,108195 +Land Rover,Range Rover,2016,premium unleaded (recommended),380,6,AUTOMATIC,four wheel drive,4,"Luxury,Performance",Large,4dr SUV,23,17,258,91950 +Land Rover,Range Rover,2016,diesel,254,6,AUTOMATIC,four wheel drive,4,"Diesel,Luxury",Large,4dr SUV,29,22,258,93450 +Ford,Ranger,2009,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,26,21,5657,17990 +Ford,Ranger,2009,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,26,21,5657,17680 +Ford,Ranger,2009,regular unleaded,207,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,21,15,5657,21050 +Ford,Ranger,2009,regular unleaded,207,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,19,15,5657,22305 +Ford,Ranger,2009,regular unleaded,207,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,5657,24255 +Ford,Ranger,2009,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,26,21,5657,16395 +Ford,Ranger,2009,regular unleaded,207,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,19,15,5657,24535 +Ford,Ranger,2009,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,26,21,5657,18805 +Ford,Ranger,2009,regular unleaded,207,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,5657,23575 +Ford,Ranger,2009,regular unleaded,207,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,19,15,5657,22985 +Ford,Ranger,2009,regular unleaded,207,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,5657,25805 +Ford,Ranger,2009,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,26,21,5657,17665 +Ford,Ranger,2009,regular unleaded,207,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,21,15,5657,21675 +Ford,Ranger,2009,regular unleaded,207,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,19,15,5657,21810 +Ford,Ranger,2009,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,26,21,5657,17890 +Ford,Ranger,2009,regular unleaded,207,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,21,15,5657,20405 +Ford,Ranger,2009,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,26,21,5657,19080 +Ford,Ranger,2010,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,27,22,5657,20580 +Ford,Ranger,2010,regular unleaded,207,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,21,15,5657,23220 +Ford,Ranger,2010,regular unleaded,207,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,21,15,5657,22485 +Ford,Ranger,2010,regular unleaded,207,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,21,15,5657,22155 +Ford,Ranger,2010,regular unleaded,207,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,5657,25800 +Ford,Ranger,2010,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,27,22,5657,19515 +Ford,Ranger,2010,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,27,22,5657,17820 +Ford,Ranger,2010,regular unleaded,207,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,5657,24905 +Ford,Ranger,2010,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,27,22,5657,18960 +Ford,Ranger,2010,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,27,22,5657,19105 +Ford,Ranger,2010,regular unleaded,207,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,19,15,5657,23570 +Ford,Ranger,2011,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,27,22,5657,18160 +Ford,Ranger,2011,regular unleaded,207,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,21,16,5657,23495 +Ford,Ranger,2011,regular unleaded,207,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,21,16,5657,22640 +Ford,Ranger,2011,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,27,22,5657,20740 +Ford,Ranger,2011,regular unleaded,207,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,5657,26070 +Ford,Ranger,2011,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,27,22,5657,19855 +Ford,Ranger,2011,regular unleaded,207,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,5657,25060 +Ford,Ranger,2011,regular unleaded,207,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,21,16,5657,22425 +Ford,Ranger,2011,regular unleaded,143,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,27,22,5657,19120 +Aston Martin,Rapide S,2014,premium unleaded (required),550,12,AUTOMATIC,rear wheel drive,4,"Exotic,High-Performance",Large,Sedan,19,13,259,198250 +Aston Martin,Rapide S,2015,premium unleaded (required),552,12,AUTOMATIC,rear wheel drive,4,"Exotic,High-Performance",Large,Sedan,22,14,259,203995 +Aston Martin,Rapide S,2016,premium unleaded (required),552,12,AUTOMATIC,rear wheel drive,4,"Exotic,High-Performance",Large,Sedan,22,14,259,206000 +Aston Martin,Rapide,2010,premium unleaded (required),470,12,AUTOMATIC,rear wheel drive,4,"Exotic,High-Performance",Large,Sedan,19,13,259,197850 +Aston Martin,Rapide,2011,premium unleaded (required),470,12,AUTOMATIC,rear wheel drive,4,"Exotic,High-Performance",Large,Sedan,19,13,259,207895 +Aston Martin,Rapide,2012,premium unleaded (required),470,12,AUTOMATIC,rear wheel drive,4,"Exotic,High-Performance",Large,Sedan,19,13,259,226850 +Aston Martin,Rapide,2012,premium unleaded (required),470,12,AUTOMATIC,rear wheel drive,4,"Exotic,High-Performance",Large,Sedan,19,13,259,207895 +Toyota,RAV4 EV,2012,electric,154,,DIRECT_DRIVE,front wheel drive,4,Crossover,Midsize,4dr SUV,74,78,2031,49800 +Toyota,RAV4 EV,2013,electric,,0,DIRECT_DRIVE,front wheel drive,4,Crossover,Midsize,4dr SUV,74,78,2031,49800 +Toyota,RAV4 EV,2014,electric,,0,DIRECT_DRIVE,front wheel drive,4,Crossover,Midsize,4dr SUV,74,78,2031,49800 +Toyota,RAV4 Hybrid,2016,regular unleaded,194,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,31,34,2031,28370 +Toyota,RAV4 Hybrid,2016,regular unleaded,194,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,31,34,2031,33610 +Toyota,RAV4 Hybrid,2017,regular unleaded,194,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,30,34,2031,34030 +Toyota,RAV4 Hybrid,2017,regular unleaded,194,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,30,34,2031,29030 +Toyota,RAV4 Hybrid,2017,regular unleaded,194,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,30,34,2031,32185 +Toyota,RAV4,2015,regular unleaded,176,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,31,24,2031,25240 +Toyota,RAV4,2015,regular unleaded,176,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,29,22,2031,29850 +Toyota,RAV4,2015,regular unleaded,176,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,31,24,2031,28450 +Toyota,RAV4,2015,regular unleaded,176,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,29,22,2031,26640 +Toyota,RAV4,2015,regular unleaded,176,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,31,24,2031,23680 +Toyota,RAV4,2015,regular unleaded,176,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,29,22,2031,25080 +Toyota,RAV4,2016,regular unleaded,176,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,31,24,2031,29265 +Toyota,RAV4,2016,regular unleaded,176,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,29,22,2031,25750 +Toyota,RAV4,2016,regular unleaded,176,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,31,24,2031,26270 +Toyota,RAV4,2016,regular unleaded,176,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,31,24,2031,24350 +Toyota,RAV4,2016,regular unleaded,176,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,29,22,2031,30665 +Toyota,RAV4,2016,regular unleaded,176,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,31,24,2031,31510 +Toyota,RAV4,2016,regular unleaded,176,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,29,22,2031,32910 +Toyota,RAV4,2016,regular unleaded,176,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,29,22,2031,27670 +Toyota,RAV4,2017,regular unleaded,176,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,29,23,2031,31830 +Toyota,RAV4,2017,regular unleaded,176,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,22,2031,28230 +Toyota,RAV4,2017,regular unleaded,176,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,22,2031,26310 +Toyota,RAV4,2017,regular unleaded,176,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,30,23,2031,24910 +Toyota,RAV4,2017,regular unleaded,176,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,22,2031,36150 +Toyota,RAV4,2017,regular unleaded,176,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,22,2031,33230 +Toyota,RAV4,2017,regular unleaded,176,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,29,23,2031,34750 +Toyota,RAV4,2017,regular unleaded,176,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,30,23,2031,26830 +Toyota,RAV4,2017,regular unleaded,176,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,30,23,2031,29985 +Toyota,RAV4,2017,regular unleaded,176,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,28,22,2031,31385 +Lexus,RC 200t,2016,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,32,22,454,39995 +Lexus,RC 200t,2017,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,2,Luxury,Midsize,Coupe,32,22,454,40155 +Lexus,RC 300,2016,premium unleaded (required),255,6,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Coupe,26,19,454,42610 +Lexus,RC 300,2017,premium unleaded (required),255,6,AUTOMATIC,all wheel drive,2,Luxury,Midsize,Coupe,26,19,454,42770 +Lexus,RC 350,2015,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,28,19,454,42790 +Lexus,RC 350,2015,premium unleaded (required),306,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,26,19,454,45025 +Lexus,RC 350,2016,premium unleaded (required),306,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,26,19,454,45015 +Lexus,RC 350,2016,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,28,19,454,42780 +Lexus,RC 350,2017,premium unleaded (required),306,6,AUTOMATIC,all wheel drive,2,"Luxury,Performance",Midsize,Coupe,26,19,454,45175 +Lexus,RC 350,2017,premium unleaded (required),306,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,28,19,454,43010 +Lexus,RC F,2015,premium unleaded (required),467,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,25,16,454,62400 +Lexus,RC F,2016,premium unleaded (required),467,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,25,16,454,62805 +Lexus,RC F,2017,premium unleaded (required),467,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,25,16,454,64165 +Acura,RDX,2015,premium unleaded (recommended),273,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,36495 +Acura,RDX,2015,premium unleaded (recommended),273,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,40195 +Acura,RDX,2015,premium unleaded (recommended),273,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,204,38795 +Acura,RDX,2015,premium unleaded (recommended),273,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,204,35095 +Acura,RDX,2016,premium unleaded (recommended),279,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,29,20,204,36670 +Acura,RDX,2016,premium unleaded (recommended),279,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,19,204,36870 +Acura,RDX,2016,premium unleaded (recommended),279,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,19,204,41870 +Acura,RDX,2016,premium unleaded (recommended),279,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,29,20,204,39070 +Acura,RDX,2016,premium unleaded (recommended),279,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,29,20,204,35370 +Acura,RDX,2016,premium unleaded (recommended),279,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,19,204,38170 +Acura,RDX,2016,premium unleaded (recommended),279,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,29,20,204,40370 +Acura,RDX,2016,premium unleaded (recommended),279,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,29,20,204,42020 +Acura,RDX,2016,premium unleaded (recommended),279,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,19,204,40570 +Acura,RDX,2016,premium unleaded (recommended),279,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,19,204,43520 +Acura,RDX,2017,premium unleaded (recommended),279,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,38370 +Acura,RDX,2017,premium unleaded (recommended),279,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,204,39270 +Acura,RDX,2017,premium unleaded (recommended),279,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,204,42220 +Acura,RDX,2017,premium unleaded (recommended),279,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,42070 +Acura,RDX,2017,premium unleaded (recommended),279,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,204,36870 +Acura,RDX,2017,premium unleaded (recommended),279,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,37070 +Acura,RDX,2017,premium unleaded (recommended),279,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,43720 +Acura,RDX,2017,premium unleaded (recommended),279,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,204,40770 +Acura,RDX,2017,premium unleaded (recommended),279,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,204,40570 +Acura,RDX,2017,premium unleaded (recommended),279,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,204,35570 +Buick,Reatta,1990,regular unleaded,165,6,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,25,16,155,2000 +Buick,Reatta,1990,regular unleaded,165,6,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,25,16,155,2000 +Buick,Reatta,1991,regular unleaded,170,6,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,25,16,155,2000 +Buick,Reatta,1991,regular unleaded,170,6,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,25,16,155,2000 +Buick,Regal,2016,premium unleaded (recommended),259,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,30,21,155,28565 +Buick,Regal,2016,premium unleaded (recommended),259,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,30,21,155,34065 +Buick,Regal,2016,premium unleaded (recommended),259,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,30,21,155,31565 +Buick,Regal,2016,premium unleaded (recommended),259,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,30,21,155,28990 +Buick,Regal,2016,premium unleaded (recommended),259,4,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,27,19,155,36490 +Buick,Regal,2016,premium unleaded (recommended),259,4,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,27,19,155,31415 +Buick,Regal,2016,premium unleaded (recommended),259,4,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,27,19,155,33990 +Buick,Regal,2016,flex-fuel (unleaded/E85),182,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,31,19,155,27065 +Buick,Regal,2016,premium unleaded (recommended),259,4,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,27,19,155,34325 +Buick,Regal,2016,premium unleaded (recommended),259,4,AUTOMATIC,front wheel drive,4,"Performance,Hybrid",Midsize,Sedan,30,21,155,31900 +Buick,Regal,2017,premium unleaded (recommended),259,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,29,21,155,31615 +Buick,Regal,2017,premium unleaded (recommended),259,4,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,27,19,155,36540 +Buick,Regal,2017,premium unleaded (recommended),259,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,29,21,155,34115 +Buick,Regal,2017,premium unleaded (recommended),259,4,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,27,19,155,34040 +Buick,Regal,2017,premium unleaded (recommended),259,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,29,21,155,28615 +Buick,Regal,2017,flex-fuel (unleaded/E85),182,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,30,19,155,27065 +Buick,Regal,2017,premium unleaded (recommended),259,4,AUTOMATIC,all wheel drive,4,Performance,Midsize,Sedan,27,19,155,31465 +Oldsmobile,Regency,1997,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,26,17,26,2000 +Oldsmobile,Regency,1998,regular unleaded,205,6,AUTOMATIC,front wheel drive,4,N/A,Large,Sedan,27,17,26,2084 +Buick,Rendezvous,2005,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,16,155,29970 +Buick,Rendezvous,2005,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,155,26780 +Buick,Rendezvous,2006,regular unleaded,195,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,23,17,155,24280 +Buick,Rendezvous,2006,regular unleaded,195,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,155,27780 +Buick,Rendezvous,2007,regular unleaded,196,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,23,17,155,28765 +Buick,Rendezvous,2007,regular unleaded,196,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,23,17,155,25190 +Suzuki,Reno,2006,regular unleaded,126,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,20,481,15399 +Suzuki,Reno,2006,regular unleaded,126,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,19,481,16299 +Suzuki,Reno,2006,regular unleaded,126,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,20,481,14249 +Suzuki,Reno,2006,regular unleaded,126,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,20,481,13299 +Suzuki,Reno,2006,regular unleaded,126,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,19,481,15149 +Suzuki,Reno,2006,regular unleaded,126,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,19,481,14199 +Suzuki,Reno,2007,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,19,481,14699 +Suzuki,Reno,2007,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,19,481,15049 +Suzuki,Reno,2007,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,19,481,15199 +Suzuki,Reno,2007,regular unleaded,127,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,20,481,13599 +Suzuki,Reno,2007,regular unleaded,127,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,20,481,14099 +Suzuki,Reno,2008,regular unleaded,127,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,20,481,13839 +Suzuki,Reno,2008,regular unleaded,127,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,20,481,14339 +Suzuki,Reno,2008,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,19,481,15349 +Suzuki,Reno,2008,regular unleaded,127,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,19,481,14939 +Lamborghini,Reventon,2008,premium unleaded (required),650,12,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Coupe,14,9,1158,1500000 +Honda,Ridgeline,2013,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2202,37380 +Honda,Ridgeline,2013,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2202,30195 +Honda,Ridgeline,2013,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2202,32155 +Honda,Ridgeline,2013,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2202,35030 +Honda,Ridgeline,2013,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2202,29450 +Honda,Ridgeline,2014,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2202,37505 +Honda,Ridgeline,2014,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2202,37505 +Honda,Ridgeline,2014,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2202,30720 +Honda,Ridgeline,2014,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2202,35155 +Honda,Ridgeline,2014,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2202,29575 +Honda,Ridgeline,2014,regular unleaded,250,6,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2202,32380 +Honda,Ridgeline,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,N/A,Large,Crew Cab Pickup,25,18,2202,37730 +Honda,Ridgeline,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,N/A,Large,Crew Cab Pickup,25,18,2202,42870 +Honda,Ridgeline,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,N/A,Large,Crew Cab Pickup,25,18,2202,33315 +Honda,Ridgeline,2017,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,N/A,Large,Crew Cab Pickup,26,19,2202,35930 +Honda,Ridgeline,2017,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,N/A,Large,Crew Cab Pickup,26,19,2202,33015 +Honda,Ridgeline,2017,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,N/A,Large,Crew Cab Pickup,26,19,2202,31515 +Honda,Ridgeline,2017,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,N/A,Large,Crew Cab Pickup,26,19,2202,33780 +Honda,Ridgeline,2017,regular unleaded,280,6,AUTOMATIC,front wheel drive,4,N/A,Large,Crew Cab Pickup,26,19,2202,29475 +Honda,Ridgeline,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,N/A,Large,Crew Cab Pickup,25,18,2202,35580 +Honda,Ridgeline,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,N/A,Large,Crew Cab Pickup,25,18,2202,31275 +Honda,Ridgeline,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,N/A,Large,Crew Cab Pickup,25,18,2202,41370 +Honda,Ridgeline,2017,regular unleaded,280,6,AUTOMATIC,all wheel drive,4,N/A,Large,Crew Cab Pickup,25,18,2202,34815 +Kia,Rio,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,27,1720,15190 +Kia,Rio,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,27,1720,18290 +Kia,Rio,2015,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,27,1720,13990 +Kia,Rio,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,27,1720,18090 +Kia,Rio,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,27,1720,17190 +Kia,Rio,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,27,1720,16990 +Kia,Rio,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,27,1720,15290 +Kia,Rio,2015,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,37,27,1720,13990 +Kia,Rio,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,27,1720,20755 +Kia,Rio,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,27,1720,15395 +Kia,Rio,2016,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,38,27,1720,14165 +Kia,Rio,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,27,1720,17755 +Kia,Rio,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,27,1720,17905 +Kia,Rio,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,27,1720,15495 +Kia,Rio,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,27,1720,20905 +Kia,Rio,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,36,27,1720,17755 +Kia,Rio,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,27,1720,15495 +Kia,Rio,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,27,1720,17905 +Kia,Rio,2017,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,27,1720,14165 +Kia,Rio,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,27,1720,20905 +Kia,Rio,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,36,27,1720,15395 +Buick,Riviera,1997,regular unleaded,205,6,AUTOMATIC,front wheel drive,2,N/A,Large,Coupe,26,17,155,2000 +Buick,Riviera,1997,regular unleaded,240,6,AUTOMATIC,front wheel drive,2,N/A,Large,Coupe,24,16,155,2000 +Buick,Riviera,1998,regular unleaded,240,6,AUTOMATIC,front wheel drive,2,N/A,Large,Coupe,25,16,155,2155 +Buick,Riviera,1999,regular unleaded,240,6,AUTOMATIC,front wheel drive,2,N/A,Large,Coupe,25,16,155,2379 +Acura,RL,2010,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,22,16,204,54250 +Acura,RL,2010,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,22,16,204,50450 +Acura,RL,2010,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,22,16,204,50450 +Acura,RL,2010,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,22,16,204,46830 +Acura,RL,2011,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,204,51350 +Acura,RL,2011,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,204,51350 +Acura,RL,2011,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,204,55150 +Acura,RL,2011,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,204,47200 +Acura,RL,2012,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,204,48200 +Acura,RL,2012,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,204,52350 +Acura,RL,2012,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,204,56150 +Acura,RL,2012,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,24,17,204,52350 +Acura,RLX,2015,premium unleaded (recommended),310,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,20,204,50950 +Acura,RLX,2015,premium unleaded (recommended),310,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,20,204,60450 +Acura,RLX,2015,premium unleaded (recommended),310,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,20,204,48450 +Acura,RLX,2015,premium unleaded (recommended),310,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,20,204,54450 +Acura,RLX,2015,premium unleaded (recommended),310,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,20,204,56950 +Acura,RLX,2016,premium unleaded (recommended),310,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,20,204,54450 +Acura,RLX,2016,premium unleaded (recommended),377,6,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance,Hybrid",Midsize,Sedan,32,28,204,59950 +Acura,RLX,2016,premium unleaded (recommended),310,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,20,204,60450 +Acura,RLX,2016,premium unleaded (recommended),377,6,AUTOMATED_MANUAL,all wheel drive,4,"Luxury,High-Performance,Hybrid",Midsize,Sedan,32,28,204,65950 +Acura,RLX,2016,premium unleaded (recommended),310,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,20,204,50950 +Acura,RLX,2017,premium unleaded (recommended),310,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,30,20,204,54450 +Acura,RLX,2017,premium unleaded (recommended),310,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,30,20,204,60450 +Buick,Roadmaster,1994,regular unleaded,260,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,23,15,155,2000 +Buick,Roadmaster,1994,regular unleaded,260,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,23,15,155,2000 +Buick,Roadmaster,1994,regular unleaded,260,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,23,15,155,2000 +Buick,Roadmaster,1995,regular unleaded,260,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,23,15,155,2000 +Buick,Roadmaster,1995,regular unleaded,260,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,23,15,155,2000 +Buick,Roadmaster,1995,regular unleaded,260,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,23,15,155,2000 +Buick,Roadmaster,1996,regular unleaded,260,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,24,15,155,2190 +Buick,Roadmaster,1996,regular unleaded,260,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Sedan,24,15,155,2000 +Buick,Roadmaster,1996,regular unleaded,260,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Wagon,24,15,155,2212 +Nissan,Rogue Select,2014,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,23,2009,20150 +Nissan,Rogue Select,2014,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,27,22,2009,21500 +Nissan,Rogue Select,2015,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,27,22,2009,21500 +Nissan,Rogue Select,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,23,2009,20150 +Nissan,Rogue,2015,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,25,2009,24140 +Nissan,Rogue,2015,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,25,2009,29630 +Nissan,Rogue,2015,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,25,2009,24390 +Nissan,Rogue,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,2009,28280 +Nissan,Rogue,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,2009,24490 +Nissan,Rogue,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,2009,22790 +Nissan,Rogue,2015,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,25,2009,25840 +Nissan,Rogue,2015,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,2009,23040 +Nissan,Rogue,2016,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,25,2009,30080 +Nissan,Rogue,2016,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,25,2009,24680 +Nissan,Rogue,2016,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,25,2009,26130 +Nissan,Rogue,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,2009,28730 +Nissan,Rogue,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,2009,24780 +Nissan,Rogue,2016,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,2009,23330 +Nissan,Rogue,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,2009,23820 +Nissan,Rogue,2017,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,25,2009,26590 +Nissan,Rogue,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,2009,25240 +Nissan,Rogue,2017,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,25,2009,25170 +Nissan,Rogue,2017,regular unleaded,170,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,32,25,2009,31310 +Nissan,Rogue,2017,regular unleaded,170,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,33,26,2009,29960 +Kia,Rondo,2007,regular unleaded,162,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,26,19,1720,19195 +Kia,Rondo,2007,regular unleaded,182,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,25,18,1720,20195 +Kia,Rondo,2007,regular unleaded,162,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,26,19,1720,16395 +Kia,Rondo,2007,regular unleaded,182,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,25,18,1720,18895 +Kia,Rondo,2007,regular unleaded,162,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,26,19,1720,17895 +Kia,Rondo,2008,regular unleaded,162,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,26,19,1720,16395 +Kia,Rondo,2008,regular unleaded,182,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,26,18,1720,18895 +Kia,Rondo,2008,regular unleaded,162,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,26,19,1720,19195 +Kia,Rondo,2008,regular unleaded,182,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,26,18,1720,20195 +Kia,Rondo,2008,regular unleaded,162,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,26,19,1720,17895 +Kia,Rondo,2009,regular unleaded,192,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,26,18,1720,19495 +Kia,Rondo,2009,regular unleaded,175,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,20,1720,21295 +Kia,Rondo,2009,regular unleaded,192,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,26,18,1720,22295 +Kia,Rondo,2009,regular unleaded,175,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,20,1720,18495 +Kia,Rondo,2009,regular unleaded,175,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,27,20,1720,17495 +Volkswagen,Routan,2010,regular unleaded,197,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,873,33600 +Volkswagen,Routan,2010,regular unleaded,251,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,873,42500 +Volkswagen,Routan,2010,regular unleaded,251,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,873,38600 +Volkswagen,Routan,2010,regular unleaded,197,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,873,25900 +Volkswagen,Routan,2010,regular unleaded,197,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,873,30600 +Volkswagen,Routan,2010,regular unleaded,197,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,873,32600 +Volkswagen,Routan,2010,regular unleaded,251,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,873,38600 +Volkswagen,Routan,2010,regular unleaded,251,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,873,36600 +Volkswagen,Routan,2010,regular unleaded,251,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,873,42500 +Volkswagen,Routan,2010,regular unleaded,251,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,873,36600 +Volkswagen,Routan,2011,regular unleaded,283,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,873,43240 +Volkswagen,Routan,2011,regular unleaded,283,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,873,34750 +Volkswagen,Routan,2011,regular unleaded,283,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,873,37390 +Volkswagen,Routan,2011,regular unleaded,283,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,873,33790 +Volkswagen,Routan,2011,regular unleaded,283,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,873,26930 +Volkswagen,Routan,2011,regular unleaded,283,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,873,39390 +Volkswagen,Routan,2011,regular unleaded,283,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,17,873,31770 +Volkswagen,Routan,2012,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,873,34490 +Volkswagen,Routan,2012,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,873,39890 +Volkswagen,Routan,2012,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,873,32010 +Volkswagen,Routan,2012,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,873,33490 +Volkswagen,Routan,2012,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,873,37890 +Volkswagen,Routan,2012,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,873,44280 +Volkswagen,Routan,2012,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,873,27020 +Audi,RS 4,2007,premium unleaded (required),420,8,MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Compact,Sedan,20,13,3105,66000 +Audi,RS 4,2008,premium unleaded (required),420,8,MANUAL,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,19,12,3105,81900 +Audi,RS 4,2008,premium unleaded (required),420,8,MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Compact,Sedan,20,13,3105,66910 +Audi,RS 5,2013,premium unleaded (required),450,8,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Convertible,23,16,3105,77900 +Audi,RS 5,2013,premium unleaded (required),450,8,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,23,16,3105,68900 +Audi,RS 5,2014,premium unleaded (required),450,8,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,23,16,3105,69600 +Audi,RS 5,2014,premium unleaded (required),450,8,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Convertible,22,16,3105,77900 +Audi,RS 5,2015,premium unleaded (required),450,8,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Convertible,22,16,3105,79200 +Audi,RS 5,2015,premium unleaded (required),450,8,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,23,16,3105,70900 +Audi,RS 6,2003,premium unleaded (required),450,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,20,14,3105,82700 +Audi,RS 7,2015,premium unleaded (required),560,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,27,16,3105,106500 +Audi,RS 7,2016,premium unleaded (required),560,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,25,15,3105,108900 +Audi,RS 7,2017,premium unleaded (required),560,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,25,15,3105,110700 +Acura,RSX,2004,regular unleaded,160,4,MANUAL,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,30,24,204,21100 +Acura,RSX,2004,regular unleaded,160,4,MANUAL,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,30,24,204,20025 +Acura,RSX,2004,regular unleaded,160,4,AUTOMATIC,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,31,22,204,22000 +Acura,RSX,2004,regular unleaded,160,4,AUTOMATIC,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,31,22,204,20925 +Acura,RSX,2004,premium unleaded (required),200,4,MANUAL,front wheel drive,2,"Hatchback,Factory Tuner,Luxury,Performance",Compact,2dr Hatchback,28,21,204,23320 +Acura,RSX,2005,regular unleaded,160,4,MANUAL,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,31,24,204,20275 +Acura,RSX,2005,regular unleaded,160,4,AUTOMATIC,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,31,22,204,22250 +Acura,RSX,2005,regular unleaded,160,4,AUTOMATIC,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,31,22,204,21175 +Acura,RSX,2005,regular unleaded,160,4,MANUAL,front wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,31,24,204,21350 +Acura,RSX,2005,premium unleaded (required),210,4,MANUAL,front wheel drive,2,"Hatchback,Factory Tuner,Luxury,Performance",Compact,2dr Hatchback,28,20,204,23670 +Acura,RSX,2006,regular unleaded,155,4,MANUAL,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,31,24,204,20325 +Acura,RSX,2006,regular unleaded,155,4,MANUAL,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,31,24,204,21475 +Acura,RSX,2006,premium unleaded (required),201,4,MANUAL,front wheel drive,2,"Hatchback,Factory Tuner,Luxury,Performance",Compact,2dr Hatchback,28,20,204,23845 +Acura,RSX,2006,regular unleaded,155,4,AUTOMATIC,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,31,22,204,21225 +Acura,RSX,2006,regular unleaded,155,4,AUTOMATIC,front wheel drive,2,"Hatchback,Luxury",Compact,2dr Hatchback,31,22,204,22375 +Lexus,RX 300,2001,premium unleaded (required),220,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,21,17,454,33955 +Lexus,RX 300,2001,premium unleaded (required),220,6,AUTOMATIC,four wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,21,16,454,35705 +Lexus,RX 300,2002,regular unleaded,220,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,21,16,454,35705 +Lexus,RX 300,2002,regular unleaded,220,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,21,17,454,33955 +Lexus,RX 300,2003,regular unleaded,220,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,21,16,454,36925 +Lexus,RX 300,2003,regular unleaded,220,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,21,17,454,35125 +Lexus,RX 330,2004,regular unleaded,230,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,454,35275 +Lexus,RX 330,2004,regular unleaded,230,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,22,16,454,36675 +Lexus,RX 330,2005,regular unleaded,230,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,17,454,36025 +Lexus,RX 330,2005,regular unleaded,230,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,22,16,454,37425 +Lexus,RX 330,2006,regular unleaded,223,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,17,454,36370 +Lexus,RX 330,2006,regular unleaded,223,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,22,16,454,37770 +Lexus,RX 350,2015,regular unleaded,270,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,18,454,40970 +Lexus,RX 350,2015,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,454,50220 +Lexus,RX 350,2015,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,454,48710 +Lexus,RX 350,2015,regular unleaded,270,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,18,454,42370 +Lexus,RX 350,2016,regular unleaded,295,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,19,454,49125 +Lexus,RX 350,2016,regular unleaded,295,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,454,41900 +Lexus,RX 350,2016,regular unleaded,295,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,19,454,43300 +Lexus,RX 350,2017,regular unleaded,295,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,19,454,50320 +Lexus,RX 350,2017,regular unleaded,295,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,20,454,48920 +Lexus,RX 350,2017,regular unleaded,295,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,20,454,43020 +Lexus,RX 350,2017,regular unleaded,295,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,19,454,44420 +Lexus,RX 400h,2006,regular unleaded,268,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,25,27,454,46060 +Lexus,RX 400h,2006,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,25,28,454,44660 +Lexus,RX 400h,2007,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,25,28,454,41180 +Lexus,RX 400h,2007,regular unleaded,268,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,25,27,454,42580 +Lexus,RX 400h,2008,premium unleaded (required),268,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,24,27,454,42080 +Lexus,RX 400h,2008,premium unleaded (required),268,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,24,26,454,43480 +Lexus,RX 450h,2015,premium unleaded (required),295,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,28,32,454,47620 +Lexus,RX 450h,2015,premium unleaded (required),295,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,28,30,454,49020 +Lexus,RX 450h,2016,premium unleaded (recommended),308,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,28,30,454,57045 +Lexus,RX 450h,2016,premium unleaded (recommended),308,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,28,30,454,53635 +Lexus,RX 450h,2016,premium unleaded (recommended),308,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,30,31,454,52235 +Lexus,RX 450h,2017,premium unleaded (recommended),308,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,28,31,454,53035 +Lexus,RX 450h,2017,premium unleaded (recommended),308,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Hybrid",Midsize,4dr SUV,28,31,454,56495 +Mazda,RX-7,1993,regular unleaded,255,,MANUAL,rear wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,23,15,586,7523 +Mazda,RX-7,1994,regular unleaded,255,,MANUAL,rear wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,23,15,586,8147 +Mazda,RX-7,1995,regular unleaded,255,,MANUAL,rear wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,23,15,586,8839 +Mazda,RX-8,2009,premium unleaded (required),232,,MANUAL,rear wheel drive,4,Performance,Compact,Coupe,22,16,586,31930 +Mazda,RX-8,2009,premium unleaded (required),212,,AUTOMATIC,rear wheel drive,4,Performance,Compact,Coupe,23,16,586,26435 +Mazda,RX-8,2009,premium unleaded (required),232,,MANUAL,rear wheel drive,4,Performance,Compact,Coupe,22,16,586,27860 +Mazda,RX-8,2009,premium unleaded (required),232,,MANUAL,rear wheel drive,4,Performance,Compact,Coupe,22,16,586,31000 +Mazda,RX-8,2009,premium unleaded (required),232,,MANUAL,rear wheel drive,4,Performance,Compact,Coupe,22,16,586,26435 +Mazda,RX-8,2009,premium unleaded (required),212,,AUTOMATIC,rear wheel drive,4,Performance,Compact,Coupe,23,16,586,31700 +Mazda,RX-8,2009,premium unleaded (required),212,,AUTOMATIC,rear wheel drive,4,Performance,Compact,Coupe,23,16,586,28560 +Mazda,RX-8,2010,premium unleaded (required),232,,MANUAL,rear wheel drive,4,Performance,Compact,Coupe,22,16,586,32140 +Mazda,RX-8,2010,premium unleaded (required),212,,AUTOMATIC,rear wheel drive,4,Performance,Compact,Coupe,23,16,586,26645 +Mazda,RX-8,2010,premium unleaded (required),212,,AUTOMATIC,rear wheel drive,4,Performance,Compact,Coupe,23,16,586,32810 +Mazda,RX-8,2010,premium unleaded (required),232,,MANUAL,rear wheel drive,4,Performance,Compact,Coupe,22,16,586,26645 +Mazda,RX-8,2010,premium unleaded (required),232,,MANUAL,rear wheel drive,4,Performance,Compact,Coupe,22,16,586,32110 +Mazda,RX-8,2011,premium unleaded (required),212,,AUTOMATIC,rear wheel drive,4,Performance,Compact,Coupe,23,16,586,32960 +Mazda,RX-8,2011,premium unleaded (required),232,,MANUAL,rear wheel drive,4,Performance,Compact,Coupe,22,16,586,32260 +Mazda,RX-8,2011,premium unleaded (required),232,,MANUAL,rear wheel drive,4,Performance,Compact,Coupe,22,16,586,32290 +Mazda,RX-8,2011,premium unleaded (required),232,,MANUAL,rear wheel drive,4,Performance,Compact,Coupe,22,16,586,26795 +Mazda,RX-8,2011,premium unleaded (required),212,,AUTOMATIC,rear wheel drive,4,Performance,Compact,Coupe,23,16,586,26795 +Chevrolet,S-10 Blazer,1992,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1992,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1992,regular unleaded,160,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,22,16,1385,2000 +Chevrolet,S-10 Blazer,1992,regular unleaded,160,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,22,16,1385,2000 +Chevrolet,S-10 Blazer,1992,regular unleaded,160,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,22,16,1385,2000 +Chevrolet,S-10 Blazer,1992,regular unleaded,160,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1992,regular unleaded,160,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,22,16,1385,2000 +Chevrolet,S-10 Blazer,1993,regular unleaded,165,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,22,16,1385,2000 +Chevrolet,S-10 Blazer,1993,regular unleaded,165,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1993,regular unleaded,165,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,22,16,1385,2000 +Chevrolet,S-10 Blazer,1993,regular unleaded,165,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1993,regular unleaded,165,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1993,regular unleaded,165,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,22,16,1385,2000 +Chevrolet,S-10 Blazer,1993,regular unleaded,165,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,22,16,1385,2000 +Chevrolet,S-10 Blazer,1993,regular unleaded,165,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,22,16,1385,2000 +Chevrolet,S-10 Blazer,1993,regular unleaded,165,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1993,regular unleaded,165,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1993,regular unleaded,165,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,22,16,1385,2000 +Chevrolet,S-10 Blazer,1993,regular unleaded,165,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1994,regular unleaded,165,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1994,regular unleaded,165,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1994,regular unleaded,165,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1994,regular unleaded,165,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1994,regular unleaded,165,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1994,regular unleaded,165,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1994,regular unleaded,165,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1994,regular unleaded,165,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1994,regular unleaded,165,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1994,regular unleaded,165,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1994,regular unleaded,165,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,20,15,1385,2000 +Chevrolet,S-10 Blazer,1994,regular unleaded,165,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,20,15,1385,2000 +Chevrolet,S-10,2002,regular unleaded,190,6,AUTOMATIC,rear wheel drive,3,Performance,Compact,Extended Cab Pickup,20,15,1385,20984 +Chevrolet,S-10,2002,flex-fuel (unleaded/E85),120,4,AUTOMATIC,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,23,17,1385,15406 +Chevrolet,S-10,2002,flex-fuel (unleaded/E85),120,4,AUTOMATIC,rear wheel drive,3,Flex Fuel,Compact,Extended Cab Pickup,23,17,1385,21474 +Chevrolet,S-10,2002,regular unleaded,190,6,MANUAL,four wheel drive,3,N/A,Compact,Extended Cab Pickup,16,12,1385,19757 +Chevrolet,S-10,2002,regular unleaded,190,6,AUTOMATIC,rear wheel drive,3,Performance,Compact,Extended Cab Pickup,20,15,1385,23539 +Chevrolet,S-10,2002,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,3,Flex Fuel,Compact,Extended Cab Pickup,25,19,1385,15943 +Chevrolet,S-10,2002,regular unleaded,190,6,MANUAL,rear wheel drive,3,N/A,Compact,Extended Cab Pickup,20,14,1385,17284 +Chevrolet,S-10,2002,regular unleaded,190,6,AUTOMATIC,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,20,15,1385,18169 +Chevrolet,S-10,2002,flex-fuel (unleaded/E85),120,4,AUTOMATIC,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,23,17,1385,19434 +Chevrolet,S-10,2002,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,25,19,1385,13961 +Chevrolet,S-10,2002,regular unleaded,190,6,AUTOMATIC,four wheel drive,3,N/A,Compact,Extended Cab Pickup,18,14,1385,24063 +Chevrolet,S-10,2002,regular unleaded,190,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,20,15,1385,18519 +Chevrolet,S-10,2002,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,18,14,1385,24462 +Chevrolet,S-10,2002,regular unleaded,190,6,AUTOMATIC,four wheel drive,3,N/A,Compact,Extended Cab Pickup,18,14,1385,25990 +Chevrolet,S-10,2002,flex-fuel (unleaded/E85),120,4,AUTOMATIC,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,23,17,1385,17169 +Chevrolet,S-10,2002,regular unleaded,190,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Extended Cab Pickup,20,15,1385,20209 +Chevrolet,S-10,2002,flex-fuel (unleaded/E85),120,4,AUTOMATIC,rear wheel drive,3,Flex Fuel,Compact,Extended Cab Pickup,23,17,1385,19209 +Chevrolet,S-10,2002,regular unleaded,190,6,AUTOMATIC,rear wheel drive,2,Performance,Compact,Regular Cab Pickup,20,15,1385,21499 +Chevrolet,S-10,2002,regular unleaded,190,6,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,20,14,1385,14961 +Chevrolet,S-10,2002,regular unleaded,190,6,AUTOMATIC,rear wheel drive,2,Performance,Compact,Regular Cab Pickup,20,15,1385,18944 +Chevrolet,S-10,2003,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,3,Flex Fuel,Compact,Extended Cab Pickup,25,19,1385,20780 +Chevrolet,S-10,2003,regular unleaded,190,6,MANUAL,four wheel drive,3,N/A,Compact,Extended Cab Pickup,17,12,1385,20270 +Chevrolet,S-10,2003,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,25,19,1385,16905 +Chevrolet,S-10,2003,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,25,19,1385,18780 +Chevrolet,S-10,2003,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,18,14,1385,24370 +Chevrolet,S-10,2003,flex-fuel (unleaded/E85),120,4,AUTOMATIC,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,23,17,1385,17570 +Chevrolet,S-10,2003,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,3,Flex Fuel,Compact,Extended Cab Pickup,25,19,1385,16570 +Chevrolet,S-10,2003,regular unleaded,190,6,MANUAL,four wheel drive,3,N/A,Compact,Extended Cab Pickup,17,12,1385,23985 +Chevrolet,S-10,2003,flex-fuel (unleaded/E85),120,4,AUTOMATIC,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,23,17,1385,16220 +Chevrolet,S-10,2003,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,3,Flex Fuel,Compact,Extended Cab Pickup,25,19,1385,18905 +Chevrolet,S-10,2003,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,25,19,1385,16120 +Chevrolet,S-10,2003,regular unleaded,190,6,MANUAL,four wheel drive,3,N/A,Compact,Extended Cab Pickup,17,12,1385,21820 +Chevrolet,S-10,2003,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,25,19,1385,14770 +Chevrolet,S-10,2003,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,3,Flex Fuel,Compact,Extended Cab Pickup,25,19,1385,18120 +Chevrolet,S-10,2004,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,18,14,1385,24660 +GMC,S-15 Jimmy,1990,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,18,15,549,2000 +GMC,S-15 Jimmy,1990,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,18,15,549,2000 +GMC,S-15 Jimmy,1990,regular unleaded,160,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,22,15,549,2000 +GMC,S-15 Jimmy,1990,regular unleaded,160,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,22,15,549,2000 +GMC,S-15 Jimmy,1990,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,18,15,549,2000 +GMC,S-15 Jimmy,1990,regular unleaded,160,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,22,15,549,2000 +GMC,S-15 Jimmy,1991,regular unleaded,150,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,22,15,549,2000 +GMC,S-15 Jimmy,1991,regular unleaded,150,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,22,15,549,2000 +GMC,S-15 Jimmy,1991,regular unleaded,150,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,18,14,549,2000 +GMC,S-15 Jimmy,1991,regular unleaded,150,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,18,14,549,2000 +GMC,S-15 Jimmy,1991,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,18,14,549,2000 +GMC,S-15 Jimmy,1991,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,18,14,549,2000 +GMC,S-15 Jimmy,1991,regular unleaded,150,6,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,18,14,549,2000 +GMC,S-15 Jimmy,1991,regular unleaded,150,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,18,14,549,2000 +GMC,S-15 Jimmy,1991,regular unleaded,150,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,22,15,549,2000 +GMC,S-15 Jimmy,1991,regular unleaded,150,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,22,15,549,2000 +GMC,S-15 Jimmy,1991,regular unleaded,150,6,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,22,15,549,2000 +GMC,S-15 Jimmy,1991,regular unleaded,150,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,18,14,549,2000 +GMC,S-15,1990,regular unleaded,105,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,21,549,2000 +GMC,S-15,1990,regular unleaded,105,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,21,549,2000 +GMC,S-15,1990,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,19,15,549,2000 +GMC,S-15,1990,regular unleaded,105,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,25,21,549,2000 +GMC,S-15,1990,regular unleaded,105,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,25,21,549,2000 +GMC,S-15,1990,regular unleaded,105,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,21,549,2000 +GMC,S-15,1990,regular unleaded,105,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,21,549,2000 +GMC,S-15,1990,regular unleaded,105,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,25,21,549,2000 +GMC,S-15,1990,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,19,15,549,2000 +GMC,S-15,1990,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,19,15,549,2000 +GMC,S-15,1990,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,19,15,549,2000 +GMC,S-15,1990,regular unleaded,105,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,21,549,2000 +GMC,S-15,1990,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,19,15,549,2000 +GMC,S-15,1990,regular unleaded,105,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,21,549,2000 +GMC,S-15,1990,regular unleaded,105,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,21,549,2000 +GMC,S-15,1990,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,19,15,549,2000 +GMC,S-15,1990,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,19,15,549,2000 +GMC,S-15,1990,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,19,15,549,2000 +GMC,S-15,1990,regular unleaded,160,6,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,19,15,549,2000 +Mercedes-Benz,S-Class,2015,premium unleaded (required),449,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,26,17,617,94400 +Mercedes-Benz,S-Class,2015,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,23,15,617,141450 +Mercedes-Benz,S-Class,2015,premium unleaded (required),449,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,26,16,617,97400 +Mercedes-Benz,S-Class,2015,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Large,Coupe,23,15,617,160900 +Mercedes-Benz,S-Class,2015,premium unleaded (required),621,12,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,20,13,617,222000 +Mercedes-Benz,S-Class,2015,premium unleaded (required),621,12,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Large,Coupe,20,13,617,230900 +Mercedes-Benz,S-Class,2015,premium unleaded (required),523,12,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,21,12,617,166900 +Mercedes-Benz,S-Class,2015,premium unleaded (required),449,8,AUTOMATIC,all wheel drive,2,"Luxury,High-Performance",Large,Coupe,24,16,617,119900 +Mercedes-Benz,S-Class,2016,premium unleaded (required),621,12,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Large,Coupe,20,13,617,234050 +Mercedes-Benz,S-Class,2016,premium unleaded (required),449,8,AUTOMATIC,all wheel drive,2,"Luxury,High-Performance",Large,Coupe,24,16,617,121550 +Mercedes-Benz,S-Class,2016,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,23,15,617,143250 +Mercedes-Benz,S-Class,2016,premium unleaded (required),449,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,26,17,617,95650 +Mercedes-Benz,S-Class,2016,premium unleaded (required),523,12,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,21,12,617,169050 +Mercedes-Benz,S-Class,2016,premium unleaded (required),449,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,26,16,617,98650 +Mercedes-Benz,S-Class,2016,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Large,Coupe,23,15,617,163150 +Mercedes-Benz,S-Class,2016,premium unleaded (required),621,12,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,20,13,617,224650 +Mercedes-Benz,S-Class,2017,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,23,15,617,144700 +Mercedes-Benz,S-Class,2017,premium unleaded (required),449,8,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,25,16,617,99600 +Mercedes-Benz,S-Class,2017,premium unleaded (required),449,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Large,Convertible,25,17,617,131400 +Mercedes-Benz,S-Class,2017,premium unleaded (required),523,12,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,22,13,617,170750 +Mercedes-Benz,S-Class,2017,premium unleaded (required),577,8,AUTOMATIC,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Large,Convertible,22,14,617,176400 +Mercedes-Benz,S-Class,2017,premium unleaded (required),621,12,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,22,13,617,226900 +Mercedes-Benz,S-Class,2017,premium unleaded (required),621,12,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Large,Convertible,21,14,617,247900 +Mercedes-Benz,S-Class,2017,premium unleaded (required),449,8,AUTOMATIC,rear wheel drive,4,"Luxury,High-Performance",Large,Sedan,26,18,617,96600 +Honda,S2000,2007,premium unleaded (required),237,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,24,18,2202,34250 +Honda,S2000,2008,premium unleaded (required),237,4,MANUAL,rear wheel drive,2,"Factory Tuner,Performance",Compact,Convertible,25,18,2202,37300 +Honda,S2000,2008,premium unleaded (required),237,4,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,25,18,2202,36300 +Honda,S2000,2008,premium unleaded (required),237,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,25,18,2202,34300 +Honda,S2000,2009,premium unleaded (required),237,4,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,25,18,2202,36995 +Honda,S2000,2009,premium unleaded (required),237,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,25,18,2202,34995 +Honda,S2000,2009,premium unleaded (required),237,4,MANUAL,rear wheel drive,2,"Factory Tuner,Performance",Compact,Convertible,25,18,2202,37995 +Audi,S3,2015,premium unleaded (required),292,4,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Compact,Sedan,31,23,3105,41100 +Audi,S3,2015,premium unleaded (required),292,4,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Compact,Sedan,31,23,3105,47000 +Audi,S3,2016,premium unleaded (required),292,4,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Compact,Sedan,31,23,3105,42500 +Audi,S3,2016,premium unleaded (required),292,4,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Compact,Sedan,31,23,3105,48650 +Audi,S3,2017,premium unleaded (required),292,4,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Compact,Sedan,28,21,3105,48400 +Audi,S3,2017,premium unleaded (required),292,4,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Compact,Sedan,28,21,3105,42900 +Volvo,S40,2009,premium unleaded (recommended),227,5,AUTOMATIC,all wheel drive,4,Luxury,Compact,Sedan,26,18,870,33800 +Volvo,S40,2009,premium unleaded (recommended),227,5,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Compact,Sedan,28,19,870,32350 +Volvo,S40,2009,premium unleaded (recommended),168,5,AUTOMATIC,front wheel drive,4,Luxury,Compact,Sedan,31,20,870,28550 +Volvo,S40,2010,premium unleaded (recommended),227,5,MANUAL,all wheel drive,4,Luxury,Compact,Sedan,27,20,870,31350 +Volvo,S40,2010,premium unleaded (recommended),168,5,MANUAL,front wheel drive,4,Luxury,Compact,Sedan,29,21,870,26200 +Volvo,S40,2010,premium unleaded (recommended),227,5,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Compact,Sedan,30,21,870,31150 +Volvo,S40,2011,regular unleaded,227,5,AUTOMATIC,front wheel drive,4,Luxury,Compact,Sedan,30,21,870,27750 +Volvo,S40,2011,regular unleaded,227,5,AUTOMATIC,front wheel drive,4,Luxury,Compact,Sedan,30,21,870,31150 +Audi,S4,2014,premium unleaded (required),333,6,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,28,18,3105,49500 +Audi,S4,2014,premium unleaded (required),333,6,MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,26,17,3105,54000 +Audi,S4,2014,premium unleaded (required),333,6,MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,26,17,3105,48100 +Audi,S4,2014,premium unleaded (required),333,6,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,28,18,3105,55400 +Audi,S4,2015,premium unleaded (required),333,6,MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,26,17,3105,48400 +Audi,S4,2015,premium unleaded (required),333,6,MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,26,17,3105,54300 +Audi,S4,2015,premium unleaded (required),333,6,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,28,18,3105,55700 +Audi,S4,2015,premium unleaded (required),333,6,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,28,18,3105,49800 +Audi,S4,2016,premium unleaded (required),333,6,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,28,18,3105,56100 +Audi,S4,2016,premium unleaded (required),333,6,MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,26,17,3105,55100 +Audi,S4,2016,premium unleaded (required),333,6,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,28,18,3105,50200 +Audi,S4,2016,premium unleaded (required),333,6,MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,26,17,3105,49200 +Audi,S5,2016,premium unleaded (required),333,6,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,Performance",Midsize,Convertible,26,18,3105,67350 +Audi,S5,2016,premium unleaded (required),333,6,MANUAL,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,26,17,3105,59350 +Audi,S5,2016,premium unleaded (required),333,6,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,Performance",Midsize,Convertible,26,18,3105,61100 +Audi,S5,2016,premium unleaded (required),333,6,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,Performance",Midsize,Coupe,28,18,3105,54100 +Audi,S5,2016,premium unleaded (required),333,6,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,Performance",Midsize,Coupe,28,18,3105,60350 +Audi,S5,2016,premium unleaded (required),333,6,MANUAL,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,26,17,3105,53100 +Audi,S5,2017,premium unleaded (required),333,6,MANUAL,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Midsize,Coupe,26,17,3105,53100 +Audi,S5,2017,premium unleaded (required),333,6,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,Performance",Midsize,Convertible,26,18,3105,61100 +Audi,S5,2017,premium unleaded (required),333,6,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,Performance",Midsize,Coupe,28,18,3105,54100 +Volvo,S60 Cross Country,2017,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,30,22,870,44200 +Volvo,S60,2015,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,870,35450 +Volvo,S60,2015,regular unleaded,302,4,AUTOMATIC,front wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,35,24,870,39250 +Volvo,S60,2015,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,870,34800 +Volvo,S60,2015,regular unleaded,325,6,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,28,19,870,43800 +Volvo,S60,2015,regular unleaded,325,6,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,28,19,870,42700 +Volvo,S60,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,37,25,870,33950 +Volvo,S60,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,37,25,870,33300 +Volvo,S60,2015,regular unleaded,302,4,AUTOMATIC,front wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,35,24,870,38150 +Volvo,S60,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,37,25,870,38900 +Volvo,S60,2016,regular unleaded,302,4,AUTOMATIC,front wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,33,23,870,39450 +Volvo,S60,2016,regular unleaded,345,6,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,27,18,870,59700 +Volvo,S60,2016,regular unleaded,302,4,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,31,22,870,44400 +Volvo,S60,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,870,35650 +Volvo,S60,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,870,40400 +Volvo,S60,2016,regular unleaded,302,4,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,31,22,870,47900 +Volvo,S60,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,38,26,870,34150 +Volvo,S60,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,870,38300 +Volvo,S60,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,38,26,870,36800 +Volvo,S60,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,20,870,43700 +Volvo,S60,2016,regular unleaded,302,4,AUTOMATIC,front wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,33,23,870,43300 +Volvo,S60,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,870,43400 +Volvo,S60,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,37,25,870,41900 +Volvo,S60,2016,regular unleaded,325,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,27,18,870,44200 +Volvo,S60,2016,regular unleaded,325,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Sedan,27,18,870,47700 +Volvo,S60,2017,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,36,25,870,33950 +Volvo,S60,2017,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,36,25,870,40800 +Volvo,S60,2017,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,36,25,870,36800 +Volvo,S60,2017,regular unleaded,302,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,31,23,870,47400 +Audi,S6,2015,premium unleaded (required),420,8,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,27,17,3105,75500 +Audi,S6,2016,premium unleaded (required),450,8,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,27,18,3105,70900 +Audi,S6,2016,premium unleaded (required),450,8,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,27,18,3105,75300 +Audi,S6,2017,premium unleaded (required),450,8,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,27,18,3105,74100 +Audi,S6,2017,premium unleaded (required),450,8,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Sedan,27,18,3105,70900 +Volvo,S70,1998,regular unleaded,168,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,27,17,870,2000 +Volvo,S70,1998,regular unleaded,168,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,27,17,870,2000 +Volvo,S70,1998,regular unleaded,190,5,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,24,17,870,2112 +Volvo,S70,1998,regular unleaded,236,5,MANUAL,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,23,17,870,2232 +Volvo,S70,1999,regular unleaded,162,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,26,19,870,2172 +Volvo,S70,1999,regular unleaded,190,5,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,25,18,870,2286 +Volvo,S70,1999,regular unleaded,236,5,MANUAL,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,25,18,870,2382 +Volvo,S70,1999,regular unleaded,190,5,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,23,16,870,2384 +Volvo,S70,2000,regular unleaded,190,5,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,24,17,870,2430 +Volvo,S70,2000,regular unleaded,190,5,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,23,16,870,2637 +Volvo,S70,2000,regular unleaded,168,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,26,19,870,2305 +Volvo,S70,2000,regular unleaded,190,5,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,24,17,870,2500 +Volvo,S70,2000,regular unleaded,168,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,26,19,870,2403 +Volvo,S70,2000,regular unleaded,236,5,MANUAL,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,25,18,870,2608 +Audi,S7,2015,premium unleaded (required),420,8,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,27,17,3105,82500 +Audi,S7,2016,premium unleaded (required),450,8,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,27,17,3105,82900 +Audi,S7,2017,premium unleaded (required),450,8,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,27,17,3105,82900 +Audi,S7,2017,premium unleaded (required),450,8,AUTOMATED_MANUAL,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,27,17,3105,79900 +Volvo,S80,2014,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,29,20,870,39900 +Volvo,S80,2014,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,25,18,870,43950 +Volvo,S80,2015,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,19,870,45100 +Volvo,S80,2015,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,19,870,43950 +Volvo,S80,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,38,26,870,41700 +Volvo,S80,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,38,26,870,40500 +Volvo,S80,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,37,25,870,48375 +Volvo,S80,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,37,25,870,43450 +Audi,S8,2015,premium unleaded (required),520,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,27,17,3105,114900 +Audi,S8,2016,premium unleaded (required),520,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,25,16,3105,114900 +Audi,S8,2016,premium unleaded (required),605,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,25,15,3105,114900 +Audi,S8,2017,premium unleaded (recommended),605,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,24,15,3105,115900 +Volvo,S90,1998,regular unleaded,181,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Sedan,23,16,870,2269 +Volvo,S90,2017,premium unleaded (recommended),250,4,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,34,23,870,46950 +Volvo,S90,2017,premium unleaded (recommended),316,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,31,22,870,52950 +Volvo,S90,2017,premium unleaded (recommended),250,4,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,34,23,870,50450 +Volvo,S90,2017,premium unleaded (recommended),316,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,31,22,870,56250 +GMC,Safari Cargo,2003,regular unleaded,190,6,AUTOMATIC,all wheel drive,3,N/A,Large,Cargo Minivan,18,14,549,24450 +GMC,Safari Cargo,2003,regular unleaded,190,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Minivan,21,15,549,22050 +GMC,Safari Cargo,2004,regular unleaded,190,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Minivan,19,14,549,22695 +GMC,Safari Cargo,2004,regular unleaded,190,6,AUTOMATIC,all wheel drive,3,N/A,Large,Cargo Minivan,18,14,549,25195 +GMC,Safari Cargo,2005,regular unleaded,190,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Minivan,20,15,549,22930 +GMC,Safari Cargo,2005,regular unleaded,190,6,AUTOMATIC,all wheel drive,3,N/A,Large,Cargo Minivan,18,14,549,25430 +GMC,Safari,2003,regular unleaded,190,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Passenger Minivan,19,14,549,23690 +GMC,Safari,2003,regular unleaded,190,6,AUTOMATIC,all wheel drive,3,N/A,Large,Passenger Minivan,16,12,549,25690 +GMC,Safari,2004,regular unleaded,190,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Passenger Minivan,19,14,549,24195 +GMC,Safari,2004,regular unleaded,190,6,AUTOMATIC,all wheel drive,3,N/A,Large,Passenger Minivan,16,12,549,26195 +GMC,Safari,2005,regular unleaded,190,6,AUTOMATIC,rear wheel drive,3,N/A,Large,Passenger Minivan,20,14,549,24430 +GMC,Safari,2005,regular unleaded,190,6,AUTOMATIC,all wheel drive,3,N/A,Large,Passenger Minivan,16,12,549,26430 +Suzuki,Samurai,1993,regular unleaded,66,4,MANUAL,four wheel drive,2,N/A,Compact,Convertible SUV,26,24,481,2000 +Suzuki,Samurai,1993,regular unleaded,66,4,MANUAL,rear wheel drive,2,N/A,Compact,Convertible SUV,26,24,481,2000 +Suzuki,Samurai,1994,regular unleaded,66,4,MANUAL,four wheel drive,2,N/A,Compact,Convertible SUV,26,24,481,2000 +Suzuki,Samurai,1995,regular unleaded,66,4,MANUAL,four wheel drive,2,N/A,Compact,Convertible SUV,26,24,481,2000 +Hyundai,Santa Fe Sport,2015,regular unleaded,264,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,1439,33000 +Hyundai,Santa Fe Sport,2015,regular unleaded,264,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,1439,31250 +Hyundai,Santa Fe Sport,2015,regular unleaded,190,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,20,1439,24950 +Hyundai,Santa Fe Sport,2015,regular unleaded,190,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,25,19,1439,26700 +Hyundai,Santa Fe Sport,2015,regular unleaded,264,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,1439,33000 +Hyundai,Santa Fe Sport,2015,regular unleaded,264,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,1439,31250 +Hyundai,Santa Fe Sport,2016,regular unleaded,265,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,1439,33000 +Hyundai,Santa Fe Sport,2016,regular unleaded,190,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,20,1439,24950 +Hyundai,Santa Fe Sport,2016,regular unleaded,190,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,25,19,1439,26700 +Hyundai,Santa Fe Sport,2016,regular unleaded,265,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,19,1439,31250 +Hyundai,Santa Fe Sport,2017,regular unleaded,265,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,19,1439,33450 +Hyundai,Santa Fe Sport,2017,regular unleaded,265,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,20,1439,31700 +Hyundai,Santa Fe Sport,2017,regular unleaded,265,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,19,1439,38250 +Hyundai,Santa Fe Sport,2017,regular unleaded,190,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,21,1439,25350 +Hyundai,Santa Fe Sport,2017,regular unleaded,190,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,20,1439,27100 +Hyundai,Santa Fe Sport,2017,regular unleaded,265,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,20,1439,36500 +Hyundai,Santa Fe,2015,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1439,30150 +Hyundai,Santa Fe,2015,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,1439,36000 +Hyundai,Santa Fe,2015,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,1439,31900 +Hyundai,Santa Fe,2015,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1439,34250 +Hyundai,Santa Fe,2015,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1439,34250 +Hyundai,Santa Fe,2015,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,1439,36000 +Hyundai,Santa Fe,2016,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,1439,32150 +Hyundai,Santa Fe,2016,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1439,30400 +Hyundai,Santa Fe,2016,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,1439,36250 +Hyundai,Santa Fe,2016,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1439,34500 +Hyundai,Santa Fe,2017,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,17,1439,36700 +Hyundai,Santa Fe,2017,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,23,17,1439,38700 +Hyundai,Santa Fe,2017,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,17,1439,40450 +Hyundai,Santa Fe,2017,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,23,17,1439,34950 +Hyundai,Santa Fe,2017,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,17,1439,41150 +Hyundai,Santa Fe,2017,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1439,30800 +Hyundai,Santa Fe,2017,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,1439,32550 +Hyundai,Santa Fe,2017,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,23,17,1439,39400 +GMC,Savana Cargo,2014,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,17,11,549,29215 +GMC,Savana Cargo,2014,flex-fuel (unleaded/E85),310,8,AUTOMATIC,all wheel drive,3,Flex Fuel,Midsize,Cargo Van,17,13,549,32760 +GMC,Savana Cargo,2014,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Cargo Van,17,11,549,33420 +GMC,Savana Cargo,2014,regular unleaded,195,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,19,14,549,27710 +GMC,Savana Cargo,2014,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,17,11,549,32535 +GMC,Savana Cargo,2014,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Cargo Van,17,11,549,31075 +GMC,Savana Cargo,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,17,11,549,32875 +GMC,Savana Cargo,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Cargo Van,17,11,549,31415 +GMC,Savana Cargo,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,17,11,549,29555 +GMC,Savana Cargo,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Cargo Van,17,11,549,33760 +GMC,Savana Cargo,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Cargo Van,16,11,549,32455 +GMC,Savana Cargo,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,16,11,549,33915 +GMC,Savana Cargo,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Cargo Van,16,11,549,34800 +GMC,Savana Cargo,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Cargo Van,16,11,549,30595 +GMC,Savana,2014,flex-fuel (unleaded/E85),310,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,13,549,30970 +GMC,Savana,2014,flex-fuel (unleaded/E85),280,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,17,11,549,36030 +GMC,Savana,2014,flex-fuel (unleaded/E85),280,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,11,549,31865 +GMC,Savana,2014,flex-fuel (unleaded/E85),310,8,AUTOMATIC,all wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,13,549,34525 +GMC,Savana,2014,flex-fuel (unleaded/E85),280,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,11,549,34160 +GMC,Savana,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,17,11,549,36355 +GMC,Savana,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,11,549,34015 +GMC,Savana,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,11,549,35915 +GMC,Savana,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,17,11,549,36700 +GMC,Savana,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,11,549,32190 +GMC,Savana,2015,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,17,11,549,34485 +GMC,Savana,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,16,11,549,32990 +GMC,Savana,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,16,11,549,37155 +GMC,Savana,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,16,11,549,37500 +GMC,Savana,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,16,11,549,35285 +GMC,Savana,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,16,11,549,36715 +GMC,Savana,2016,flex-fuel (unleaded/E85),285,8,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,16,11,549,34815 +Lexus,SC 300,1998,regular unleaded,225,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,22,17,454,3211 +Lexus,SC 300,1999,regular unleaded,225,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,22,17,454,3665 +Lexus,SC 300,2000,regular unleaded,225,6,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,22,17,454,4024 +Lexus,SC 400,1998,regular unleaded,290,8,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,23,17,454,3442 +Lexus,SC 400,1999,regular unleaded,290,8,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,23,16,454,4031 +Lexus,SC 400,2000,regular unleaded,290,8,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Midsize,Coupe,23,16,454,4404 +Lexus,SC 430,2008,premium unleaded (required),288,8,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,23,16,454,66355 +Lexus,SC 430,2009,premium unleaded (required),288,8,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,23,16,454,66805 +Lexus,SC 430,2010,premium unleaded (required),288,8,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,23,16,454,68405 +Hyundai,Scoupe,1993,regular unleaded,92,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,32,23,1439,2000 +Hyundai,Scoupe,1993,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,29,23,1439,2000 +Hyundai,Scoupe,1993,regular unleaded,92,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,32,23,1439,2000 +Hyundai,Scoupe,1994,regular unleaded,92,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,23,1439,2000 +Hyundai,Scoupe,1994,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,29,23,1439,2000 +Hyundai,Scoupe,1994,regular unleaded,92,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,23,1439,2000 +Hyundai,Scoupe,1995,regular unleaded,115,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,23,1439,2000 +Hyundai,Scoupe,1995,regular unleaded,92,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,24,1439,2000 +Hyundai,Scoupe,1995,regular unleaded,92,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,24,1439,2000 +Chrysler,Sebring,2008,regular unleaded,235,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,26,16,1013,32715 +Chrysler,Sebring,2008,regular unleaded,173,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,30,21,1013,26600 +Chrysler,Sebring,2008,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,1013,24415 +Chrysler,Sebring,2008,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,30,21,1013,20865 +Chrysler,Sebring,2008,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,30,21,1013,19840 +Chrysler,Sebring,2008,regular unleaded,235,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Sedan,24,15,1013,28415 +Chrysler,Sebring,2008,flex-fuel (unleaded/E85),186,6,AUTOMATIC,front wheel drive,2,Flex Fuel,Midsize,Convertible,26,18,1013,29275 +Chrysler,Sebring,2009,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,1013,25920 +Chrysler,Sebring,2009,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,30,21,1013,20915 +Chrysler,Sebring,2009,flex-fuel (unleaded/E85),186,6,AUTOMATIC,front wheel drive,2,Flex Fuel,Midsize,Convertible,26,18,1013,30270 +Chrysler,Sebring,2009,regular unleaded,235,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,27,16,1013,35125 +Chrysler,Sebring,2009,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,30,21,1013,20515 +Chrysler,Sebring,2009,regular unleaded,173,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,29,20,1013,27790 +Chrysler,Sebring,2009,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,30,21,1013,21810 +Chrysler,Sebring,2009,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,30,21,1013,23040 +Chrysler,Sebring,2010,regular unleaded,235,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,27,16,1013,32710 +Chrysler,Sebring,2010,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,30,21,1013,22115 +Chrysler,Sebring,2010,flex-fuel (unleaded/E85),186,6,AUTOMATIC,front wheel drive,2,Flex Fuel,Midsize,Convertible,26,18,1013,29210 +Chrysler,Sebring,2010,regular unleaded,173,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Convertible,29,20,1013,27850 +Chrysler,Sebring,2010,regular unleaded,173,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,21,1013,20120 +Kia,Sedona,2015,regular unleaded,276,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,18,1720,36300 +Kia,Sedona,2015,regular unleaded,276,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,18,1720,26100 +Kia,Sedona,2015,regular unleaded,276,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,18,1720,32300 +Kia,Sedona,2015,regular unleaded,276,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,17,1720,39700 +Kia,Sedona,2015,regular unleaded,276,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,18,1720,28300 +Kia,Sedona,2016,regular unleaded,276,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,18,1720,28500 +Kia,Sedona,2016,regular unleaded,276,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,18,1720,26400 +Kia,Sedona,2016,regular unleaded,276,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,17,1720,39900 +Kia,Sedona,2016,regular unleaded,276,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,18,1720,32700 +Kia,Sedona,2016,regular unleaded,276,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,18,1720,36400 +Kia,Sedona,2017,regular unleaded,276,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,17,1720,41900 +Kia,Sedona,2017,regular unleaded,276,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,18,1720,28850 +Kia,Sedona,2017,regular unleaded,276,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,18,1720,33600 +Kia,Sedona,2017,regular unleaded,276,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,18,1720,36900 +Kia,Sedona,2017,regular unleaded,276,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,18,1720,26800 +Nissan,Sentra,2015,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,30,2009,20720 +Nissan,Sentra,2015,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,40,30,2009,17780 +Nissan,Sentra,2015,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,30,2009,18350 +Nissan,Sentra,2015,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,36,27,2009,16530 +Nissan,Sentra,2015,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,30,2009,17380 +Nissan,Sentra,2015,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,39,30,2009,19960 +Nissan,Sentra,2016,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,29,2009,22170 +Nissan,Sentra,2016,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,29,2009,20410 +Nissan,Sentra,2016,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,36,27,2009,16780 +Nissan,Sentra,2016,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,29,2009,18550 +Nissan,Sentra,2016,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,40,30,2009,18160 +Nissan,Sentra,2016,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,29,2009,17760 +Nissan,Sentra,2017,regular unleaded,124,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,29,2009,21500 +Nissan,Sentra,2017,premium unleaded (recommended),188,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,33,27,2009,21990 +Nissan,Sentra,2017,regular unleaded,124,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,29,2009,18790 +Nissan,Sentra,2017,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,35,27,2009,16990 +Nissan,Sentra,2017,regular unleaded,124,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,29,2009,19990 +Nissan,Sentra,2017,regular unleaded,124,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,29,2009,17990 +Nissan,Sentra,2017,premium unleaded (recommended),188,4,MANUAL,front wheel drive,4,N/A,Midsize,Sedan,32,26,2009,21990 +Kia,Sephia,1999,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,21,1720,2000 +Kia,Sephia,1999,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,21,1720,2000 +Kia,Sephia,2000,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,26,20,1720,2000 +Kia,Sephia,2000,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,26,20,1720,2000 +Kia,Sephia,2001,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,1720,10845 +Kia,Sephia,2001,regular unleaded,125,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,28,22,1720,12445 +Kia,Sephia,2001,regular unleaded,125,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,19,1720,11820 +Kia,Sephia,2001,regular unleaded,125,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,28,19,1720,13420 +Toyota,Sequoia,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,13,2031,64320 +Toyota,Sequoia,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,13,2031,47620 +Toyota,Sequoia,2015,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,17,13,2031,56580 +Toyota,Sequoia,2015,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,17,13,2031,61095 +Toyota,Sequoia,2015,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,17,13,2031,47620 +Toyota,Sequoia,2015,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,17,13,2031,53355 +Toyota,Sequoia,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,13,2031,56580 +Toyota,Sequoia,2015,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,17,13,2031,64320 +Toyota,Sequoia,2015,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,17,13,2031,44395 +Toyota,Sequoia,2016,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,17,13,2031,61855 +Toyota,Sequoia,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,17,13,2031,57340 +Toyota,Sequoia,2016,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,17,13,2031,45325 +Toyota,Sequoia,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,17,13,2031,65080 +Toyota,Sequoia,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,13,2031,65080 +Toyota,Sequoia,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,13,2031,57340 +Toyota,Sequoia,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,13,2031,48550 +Toyota,Sequoia,2016,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,17,13,2031,54115 +Toyota,Sequoia,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,17,13,2031,48550 +Toyota,Sequoia,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,13,2031,48685 +Toyota,Sequoia,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,17,13,2031,65215 +Toyota,Sequoia,2017,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,17,13,2031,45460 +Toyota,Sequoia,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,17,13,2031,57475 +Toyota,Sequoia,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,13,2031,57475 +Toyota,Sequoia,2017,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,17,13,2031,54250 +Toyota,Sequoia,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,17,13,2031,48685 +Toyota,Sequoia,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,13,2031,65215 +Toyota,Sequoia,2017,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,17,13,2031,61990 +Cadillac,Seville,2002,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,25,16,1624,44399 +Cadillac,Seville,2002,regular unleaded,300,8,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,25,16,1624,49705 +Cadillac,Seville,2003,regular unleaded,300,8,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,25,16,1624,51650 +Cadillac,Seville,2003,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,25,16,1624,45535 +Cadillac,Seville,2004,regular unleaded,275,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,24,16,1624,45975 +Dodge,Shadow,1992,regular unleaded,93,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,23,1851,2000 +Dodge,Shadow,1992,regular unleaded,100,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,29,20,1851,2000 +Dodge,Shadow,1992,regular unleaded,152,4,MANUAL,front wheel drive,4,"Hatchback,Performance",Compact,4dr Hatchback,24,18,1851,2000 +Dodge,Shadow,1992,regular unleaded,93,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,23,1851,2000 +Dodge,Shadow,1992,regular unleaded,93,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,23,1851,2000 +Dodge,Shadow,1992,regular unleaded,152,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,24,18,1851,2000 +Dodge,Shadow,1992,regular unleaded,93,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,23,1851,2000 +Dodge,Shadow,1992,regular unleaded,100,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,20,1851,2000 +Dodge,Shadow,1992,regular unleaded,152,4,MANUAL,front wheel drive,2,"Hatchback,Performance",Compact,2dr Hatchback,24,18,1851,2000 +Dodge,Shadow,1992,regular unleaded,152,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,24,18,1851,2000 +Dodge,Shadow,1992,regular unleaded,100,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,29,20,1851,2000 +Dodge,Shadow,1992,regular unleaded,100,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,1851,2000 +Dodge,Shadow,1993,regular unleaded,93,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,23,1851,2000 +Dodge,Shadow,1993,regular unleaded,93,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,23,1851,2000 +Dodge,Shadow,1993,regular unleaded,100,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,22,1851,2000 +Dodge,Shadow,1993,regular unleaded,100,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,29,22,1851,2000 +Dodge,Shadow,1993,regular unleaded,100,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,22,1851,2000 +Dodge,Shadow,1993,regular unleaded,100,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,29,22,1851,2000 +Dodge,Shadow,1994,regular unleaded,100,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,27,21,1851,2000 +Dodge,Shadow,1994,regular unleaded,93,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,23,1851,2000 +Dodge,Shadow,1994,regular unleaded,93,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,30,23,1851,2000 +Dodge,Shadow,1994,regular unleaded,100,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,27,21,1851,2000 +Ford,Shelby GT350,2015,premium unleaded (recommended),526,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Coupe,21,14,5657,61295 +Ford,Shelby GT350,2015,premium unleaded (recommended),526,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Coupe,21,14,5657,47795 +Ford,Shelby GT350,2016,premium unleaded (recommended),526,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Coupe,21,15,5657,61295 +Ford,Shelby GT350,2016,premium unleaded (recommended),526,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Coupe,21,14,5657,47795 +Ford,Shelby GT350,2017,premium unleaded (recommended),526,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Coupe,21,15,5657,61795 +Ford,Shelby GT350,2017,premium unleaded (recommended),526,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Coupe,21,14,5657,54295 +Ford,Shelby GT500,2012,premium unleaded (required),550,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Coupe,23,15,5657,48810 +Ford,Shelby GT500,2013,premium unleaded (required),662,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Convertible,24,15,5657,59200 +Ford,Shelby GT500,2013,premium unleaded (required),662,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Coupe,24,15,5657,54200 +Ford,Shelby GT500,2014,premium unleaded (required),662,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Coupe,24,15,5657,55110 +Ford,Shelby GT500,2014,premium unleaded (required),662,8,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Midsize,Convertible,24,15,5657,60110 +Suzuki,Sidekick,1996,regular unleaded,120,4,MANUAL,four wheel drive,4,N/A,Compact,4dr SUV,23,20,481,2000 +Suzuki,Sidekick,1996,regular unleaded,95,4,MANUAL,rear wheel drive,4,N/A,Compact,4dr SUV,24,21,481,2000 +Suzuki,Sidekick,1996,regular unleaded,95,4,MANUAL,four wheel drive,2,N/A,Compact,Convertible SUV,24,21,481,2000 +Suzuki,Sidekick,1996,regular unleaded,95,4,MANUAL,rear wheel drive,2,N/A,Compact,Convertible SUV,24,21,481,2000 +Suzuki,Sidekick,1996,regular unleaded,95,4,MANUAL,four wheel drive,4,N/A,Compact,4dr SUV,24,21,481,2000 +Suzuki,Sidekick,1996,regular unleaded,120,4,MANUAL,four wheel drive,4,N/A,Compact,4dr SUV,23,20,481,2000 +Suzuki,Sidekick,1997,regular unleaded,95,4,MANUAL,four wheel drive,4,N/A,Compact,4dr SUV,24,21,481,2000 +Suzuki,Sidekick,1997,regular unleaded,120,4,MANUAL,rear wheel drive,4,N/A,Compact,4dr SUV,23,19,481,2000 +Suzuki,Sidekick,1997,regular unleaded,95,4,MANUAL,rear wheel drive,4,N/A,Compact,4dr SUV,24,21,481,2000 +Suzuki,Sidekick,1997,regular unleaded,120,4,MANUAL,four wheel drive,4,N/A,Compact,4dr SUV,23,19,481,2002 +Suzuki,Sidekick,1997,regular unleaded,95,4,MANUAL,rear wheel drive,2,N/A,Compact,Convertible SUV,24,21,481,2000 +Suzuki,Sidekick,1997,regular unleaded,120,4,MANUAL,four wheel drive,4,N/A,Compact,4dr SUV,23,19,481,2000 +Suzuki,Sidekick,1997,regular unleaded,95,4,MANUAL,four wheel drive,2,N/A,Compact,Convertible SUV,24,21,481,2000 +Suzuki,Sidekick,1998,regular unleaded,95,4,MANUAL,four wheel drive,2,N/A,Compact,Convertible SUV,24,21,481,2000 +Suzuki,Sidekick,1998,regular unleaded,95,4,MANUAL,rear wheel drive,4,N/A,Compact,4dr SUV,24,20,481,2000 +Suzuki,Sidekick,1998,regular unleaded,95,4,AUTOMATIC,four wheel drive,4,N/A,Compact,4dr SUV,24,19,481,2107 +Suzuki,Sidekick,1998,regular unleaded,120,4,MANUAL,four wheel drive,4,N/A,Compact,4dr SUV,23,20,481,2125 +Suzuki,Sidekick,1998,regular unleaded,120,4,MANUAL,four wheel drive,4,N/A,Compact,4dr SUV,23,20,481,2078 +Suzuki,Sidekick,1998,regular unleaded,95,4,MANUAL,four wheel drive,2,N/A,Compact,Convertible SUV,24,21,481,2000 +Suzuki,Sidekick,1998,regular unleaded,95,4,MANUAL,four wheel drive,4,N/A,Compact,4dr SUV,24,20,481,2019 +Suzuki,Sidekick,1998,regular unleaded,95,4,MANUAL,rear wheel drive,2,N/A,Compact,Convertible SUV,24,21,481,2000 +Suzuki,Sidekick,1998,regular unleaded,120,4,MANUAL,rear wheel drive,4,N/A,Compact,4dr SUV,23,20,481,2027 +Suzuki,Sidekick,1998,regular unleaded,120,4,MANUAL,four wheel drive,4,N/A,Compact,4dr SUV,23,20,481,2153 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,all wheel drive,4,N/A,Large,Passenger Minivan,23,16,2031,42880 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,all wheel drive,4,N/A,Large,Passenger Minivan,23,16,2031,37400 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,all wheel drive,4,N/A,Large,Passenger Minivan,23,16,2031,40655 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,37445 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,35200 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,41035 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,35000 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,all wheel drive,4,N/A,Large,Passenger Minivan,23,16,2031,33960 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,all wheel drive,4,N/A,Large,Passenger Minivan,23,16,2031,46250 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,41750 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,28700 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,45120 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,31630 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,31430 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,38455 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,39780 +Toyota,Sienna,2015,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,26595 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,all wheel drive,4,N/A,Large,Passenger Minivan,23,16,2031,34180 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,38605 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,35410 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,31840 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,all wheel drive,4,N/A,Large,Passenger Minivan,23,16,2031,37620 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,31640 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,41245 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,all wheel drive,4,N/A,Large,Passenger Minivan,23,16,2031,40815 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,28850 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,41900 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,all wheel drive,4,N/A,Large,Passenger Minivan,23,16,2031,43040 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,39930 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,all wheel drive,4,N/A,Large,Passenger Minivan,23,16,2031,46410 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,37655 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,35210 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,45270 +Toyota,Sienna,2016,regular unleaded,266,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,25,18,2031,26745 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,27,19,2031,29750 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,27,19,2031,32740 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,all wheel drive,4,N/A,Large,Passenger Minivan,24,18,2031,35080 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,all wheel drive,4,N/A,Large,Passenger Minivan,24,18,2031,43940 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,27,19,2031,42800 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,all wheel drive,4,N/A,Large,Passenger Minivan,24,18,2031,41715 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,27,19,2031,38555 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,27,19,2031,32540 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,27,19,2031,42145 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,27,19,2031,39505 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,27,19,2031,36310 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,27,19,2031,36110 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,27,19,2031,40830 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,27,19,2031,27645 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,all wheel drive,4,N/A,Large,Passenger Minivan,24,18,2031,38520 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,27,19,2031,46170 +Toyota,Sienna,2017,regular unleaded,296,6,AUTOMATIC,all wheel drive,4,N/A,Large,Passenger Minivan,24,18,2031,47310 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,19,14,549,30930 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,14,549,24515 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,549,30550 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,549,33935 +GMC,Sierra 1500 Classic,2007,regular unleaded,310,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,549,32025 +GMC,Sierra 1500 Classic,2007,regular unleaded,295,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,549,31735 +GMC,Sierra 1500 Classic,2007,regular unleaded,195,6,MANUAL,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,21,15,549,20310 +GMC,Sierra 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,19,15,549,23850 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,14,549,29355 +GMC,Sierra 1500 Classic,2007,regular unleaded,195,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,17,14,549,20960 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,549,31965 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,14,549,27730 +GMC,Sierra 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,15,549,25215 +GMC,Sierra 1500 Classic,2007,regular unleaded,195,6,MANUAL,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,21,15,549,15840 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,549,27060 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,19,14,549,32690 +GMC,Sierra 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,14,549,29380 +GMC,Sierra 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,19,15,549,26820 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,14,549,30825 +GMC,Sierra 1500 Classic,2007,regular unleaded,195,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,20,14,549,21465 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,549,28790 +GMC,Sierra 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,15,549,26555 +GMC,Sierra 1500 Classic,2007,regular unleaded,295,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,19,14,549,28915 +GMC,Sierra 1500 Classic,2007,regular unleaded,295,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,19,14,549,30675 +GMC,Sierra 1500 Classic,2007,regular unleaded,195,6,MANUAL,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,21,15,549,16115 +GMC,Sierra 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,14,549,27850 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,14,549,29065 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,549,35520 +GMC,Sierra 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,19,15,549,24140 +GMC,Sierra 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,19,15,549,25325 +GMC,Sierra 1500 Classic,2007,regular unleaded,295,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,549,30255 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,19,14,549,29015 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,549,33755 +GMC,Sierra 1500 Classic,2007,regular unleaded,195,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,17,14,549,20715 +GMC,Sierra 1500 Classic,2007,regular unleaded,295,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,549,33495 +GMC,Sierra 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,14,549,27580 +GMC,Sierra 1500 Classic,2007,regular unleaded,195,6,MANUAL,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,21,15,549,20750 +GMC,Sierra 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,14,549,25845 +GMC,Sierra 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,18,14,549,28845 +GMC,Sierra 1500 Classic,2007,regular unleaded,295,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,19,14,549,27430 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,14,549,31115 +GMC,Sierra 1500 Classic,2007,regular unleaded,310,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,549,33785 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,14,549,26245 +GMC,Sierra 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,18,14,549,30340 +GMC,Sierra 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,14,549,27560 +GMC,Sierra 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,14,549,26295 +GMC,Sierra 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,14,549,25850 +GMC,Sierra 1500 Classic,2007,regular unleaded,345,8,AUTOMATIC,all wheel drive,4,N/A,Large,Crew Cab Pickup,16,13,549,39125 +GMC,Sierra 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,549,32170 +GMC,Sierra 1500 Hybrid,2011,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,549,45425 +GMC,Sierra 1500 Hybrid,2011,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,549,48575 +GMC,Sierra 1500 Hybrid,2011,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,549,39095 +GMC,Sierra 1500 Hybrid,2011,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,549,42245 +GMC,Sierra 1500 Hybrid,2012,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,549,46790 +GMC,Sierra 1500 Hybrid,2012,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,549,40010 +GMC,Sierra 1500 Hybrid,2012,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,549,43210 +GMC,Sierra 1500 Hybrid,2012,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,549,49990 +GMC,Sierra 1500 Hybrid,2013,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,549,51935 +GMC,Sierra 1500 Hybrid,2013,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,549,48335 +GMC,Sierra 1500 Hybrid,2013,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,549,41555 +GMC,Sierra 1500 Hybrid,2013,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,549,45155 +GMC,Sierra 1500,2015,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,549,43360 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,549,38540 +GMC,Sierra 1500,2015,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,549,49965 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,549,36200 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,549,38840 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,549,42635 +GMC,Sierra 1500,2015,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,549,43660 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,549,30610 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,549,35390 +GMC,Sierra 1500,2015,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,549,46510 +GMC,Sierra 1500,2015,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,549,53115 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,549,40045 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,549,27060 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,549,26670 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,549,38665 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,549,30695 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,549,38965 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,549,37800 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,549,42935 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,549,33595 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,549,34675 +GMC,Sierra 1500,2015,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,23,16,549,40900 +GMC,Sierra 1500,2015,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,22,16,549,44150 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,549,35690 +GMC,Sierra 1500,2015,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,549,46810 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,549,30910 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,549,37500 +GMC,Sierra 1500,2015,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,549,52815 +GMC,Sierra 1500,2015,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,549,49665 +GMC,Sierra 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,549,33720 +GMC,Sierra 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,549,54240 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,549,36230 +GMC,Sierra 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,549,47570 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,549,34590 +GMC,Sierra 1500,2016,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,549,51390 +GMC,Sierra 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,22,16,549,44910 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,549,34465 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,549,27715 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,549,43505 +GMC,Sierra 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,549,47270 +GMC,Sierra 1500,2016,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,23,16,549,41660 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,549,39380 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,549,31955 +GMC,Sierra 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,16,549,44900 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,549,39535 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,549,28105 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,549,37070 +GMC,Sierra 1500,2016,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,16,549,40930 +GMC,Sierra 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,549,54540 +GMC,Sierra 1500,2016,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,549,44420 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,549,31390 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,549,40915 +GMC,Sierra 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,16,549,40775 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,549,31655 +GMC,Sierra 1500,2016,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,549,51090 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,549,38370 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,549,38670 +GMC,Sierra 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,549,35370 +GMC,Sierra 1500,2016,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,16,549,37625 +GMC,Sierra 1500,2016,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,549,44120 +GMC,Sierra 1500,2017,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,549,44840 +GMC,Sierra 1500,2017,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,549,52155 +GMC,Sierra 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,22,16,549,45330 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,549,32230 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,549,28205 +GMC,Sierra 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,549,45390 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,549,39160 +GMC,Sierra 1500,2017,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,549,41420 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,549,41405 +GMC,Sierra 1500,2017,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,549,44540 +GMC,Sierra 1500,2017,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,549,38115 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,549,32145 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,549,43995 +GMC,Sierra 1500,2017,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,549,52455 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,549,37560 +GMC,Sierra 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,549,47690 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,549,28595 +GMC,Sierra 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,20,15,549,55605 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,549,36210 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,549,34955 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,549,36720 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,549,40025 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,549,38860 +GMC,Sierra 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,549,41265 +GMC,Sierra 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,20,15,549,55305 +GMC,Sierra 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,549,47990 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,549,32445 +GMC,Sierra 1500,2017,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,23,16,549,42080 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,549,39870 +GMC,Sierra 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,549,35080 +GMC,Sierra 1500HD,2006,regular unleaded,300,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,16,13,549,34640 +GMC,Sierra 1500HD,2006,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,549,31405 +GMC,Sierra 1500HD,2006,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,549,33330 +GMC,Sierra 1500HD,2006,regular unleaded,300,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,16,13,549,36525 +GMC,Sierra 1500HD,2006,regular unleaded,300,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,16,13,549,33115 +GMC,Sierra 1500HD,2006,regular unleaded,300,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,549,29745 +GMC,Sierra C3,2001,regular unleaded,325,8,AUTOMATIC,all wheel drive,4,N/A,Large,Extended Cab Pickup,13,10,549,38370 +GMC,Sierra Classic 1500,1999,regular unleaded,200,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Extended Cab Pickup,17,13,549,4439 +GMC,Sierra Classic 1500,1999,regular unleaded,200,8,AUTOMATIC,four wheel drive,3,N/A,Large,Extended Cab Pickup,16,12,549,4827 +GMC,Sierra Classic 1500,1999,regular unleaded,200,8,AUTOMATIC,four wheel drive,3,N/A,Large,Extended Cab Pickup,16,12,549,4715 +GMC,Sierra Classic 1500,1999,regular unleaded,200,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Extended Cab Pickup,17,13,549,4287 +Mitsubishi,Sigma,1990,regular unleaded,142,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,20,16,436,2000 +Oldsmobile,Silhouette,2002,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,26,35970 +Oldsmobile,Silhouette,2002,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,26,26995 +Oldsmobile,Silhouette,2002,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,26,33925 +Oldsmobile,Silhouette,2002,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,26,31355 +Oldsmobile,Silhouette,2002,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,26,33400 +Oldsmobile,Silhouette,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,26,33740 +Oldsmobile,Silhouette,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,26,28040 +Oldsmobile,Silhouette,2003,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,26,36340 +Oldsmobile,Silhouette,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,26,31690 +Oldsmobile,Silhouette,2003,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,26,34290 +Oldsmobile,Silhouette,2004,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,26,36795 +Oldsmobile,Silhouette,2004,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,26,34740 +Oldsmobile,Silhouette,2004,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,26,32125 +Oldsmobile,Silhouette,2004,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,26,34185 +Oldsmobile,Silhouette,2004,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,26,28465 +Rolls-Royce,Silver Seraph,2001,premium unleaded (required),322,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury",Large,Sedan,15,11,86,219900 +Rolls-Royce,Silver Seraph,2002,premium unleaded (required),322,12,AUTOMATIC,rear wheel drive,4,"Exotic,Luxury",Large,Sedan,15,11,86,229990 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,14,1385,26685 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,19,15,1385,23350 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,295,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,19,14,1385,26930 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,14,1385,27135 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,14,1385,25845 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,295,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,1385,31375 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,195,6,MANUAL,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,19,14,1385,24020 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,19,14,1385,28515 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,1385,31810 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,1385,29580 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,1385,31465 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,195,6,MANUAL,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,21,15,1385,20515 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,195,6,MANUAL,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,19,14,1385,19865 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,295,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,1385,29380 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,14,1385,26975 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,195,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,20,14,1385,23940 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,19,15,1385,25960 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,14,1385,30755 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,19,15,1385,26460 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,195,6,MANUAL,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,21,15,1385,20075 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,19,14,1385,32330 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,19,15,1385,24965 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,1385,27060 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,14,1385,24515 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,195,6,MANUAL,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,19,14,1385,23575 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,310,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,1385,33425 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,1385,33395 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,195,6,MANUAL,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,21,15,1385,15840 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,295,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,1385,33135 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,14,1385,28410 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,14,1385,28705 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,19,15,1385,23640 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,195,6,MANUAL,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,21,15,1385,16115 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,1385,28460 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,19,14,1385,30570 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,14,1385,25915 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,14,1385,28995 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,295,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,19,14,1385,30315 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,19,14,1385,30465 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,345,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,1385,33280 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,195,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,20,14,1385,21465 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,310,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,1385,31665 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,18,14,1385,29980 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,195,6,MANUAL,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,19,14,1385,19620 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,1385,33575 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,14,1385,27250 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,285,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,18,14,1385,28485 +Chevrolet,Silverado 1500 Classic,2007,flex-fuel (unleaded/E85),295,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,1385,35160 +Chevrolet,Silverado 1500 Classic,2007,regular unleaded,295,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,19,14,1385,28555 +Chevrolet,Silverado 1500 Hybrid,2011,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,1385,48205 +Chevrolet,Silverado 1500 Hybrid,2011,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,1385,45055 +Chevrolet,Silverado 1500 Hybrid,2011,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,1385,38725 +Chevrolet,Silverado 1500 Hybrid,2011,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,1385,41875 +Chevrolet,Silverado 1500 Hybrid,2012,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,1385,42840 +Chevrolet,Silverado 1500 Hybrid,2012,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,1385,49620 +Chevrolet,Silverado 1500 Hybrid,2012,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,1385,39640 +Chevrolet,Silverado 1500 Hybrid,2012,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,1385,46420 +Chevrolet,Silverado 1500 Hybrid,2013,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,1385,51490 +Chevrolet,Silverado 1500 Hybrid,2013,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,1385,47915 +Chevrolet,Silverado 1500 Hybrid,2013,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,1385,41135 +Chevrolet,Silverado 1500 Hybrid,2013,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,Hybrid,Large,Crew Cab Pickup,23,20,1385,44710 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,46110 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,1385,35920 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,28545 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,22,16,1385,43450 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,37680 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,35435 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,33340 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,42010 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,42310 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,1385,47875 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,1385,42270 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,51150 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,1385,34110 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,35135 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,30345 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,32095 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,1385,30130 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,1385,41970 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,1385,34530 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,45420 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,22,16,1385,42760 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,40620 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,1385,36090 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,26495 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,40320 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,31625 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,30045 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,1385,37730 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,1385,34230 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,45810 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,1385,38635 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,50850 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,1385,39420 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,37380 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,23,16,1385,40100 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,1385,42560 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,1385,42860 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,45120 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,1385,47575 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,1385,31940 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,1385,38335 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,1385,35870 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,28155 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,36825 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,26105 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,37125 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,33215 +Chevrolet,Silverado 1500,2015,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,23,16,1385,39510 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,1385,36390 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,1385,36745 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,1385,34280 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,32395 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,31750 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,1385,37045 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,39540 +Chevrolet,Silverado 1500,2015,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,39240 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,1385,35825 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,16,1385,39685 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,31035 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,1385,32870 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,43775 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,1385,35545 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,1385,36935 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,38590 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,23,16,1385,41250 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,1385,31120 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,47135 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,48500 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,22,16,1385,44475 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,33170 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,46835 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,33060 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,53315 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,1385,38290 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,31335 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,33295 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,16,1385,38740 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,1385,41185 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,1385,43710 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,27485 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,36980 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,1385,44010 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,33360 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,22,16,1385,45640 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,16,1385,45170 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,1385,35100 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,1385,39275 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,1385,49740 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,23,16,1385,50040 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,29510 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,1385,36850 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,48200 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,38890 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,38695 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,16,1385,40090 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,16,1385,41890 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,16,1385,43260 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,41865 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,53015 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,36680 +Chevrolet,Silverado 1500,2016,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,16,1385,36940 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,1385,32955 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,29120 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,1385,37345 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,27095 +Chevrolet,Silverado 1500,2016,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,40495 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,1385,36035 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,1385,37835 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,16,1385,39230 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,24,18,1385,38980 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,1385,36515 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,16,1385,43950 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,31525 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,33850 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,44350 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,20,15,1385,47175 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,44465 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,1385,42075 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,20,15,1385,47475 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,20,15,1385,46180 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,33550 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,1385,39965 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,1385,35590 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,27975 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,22,16,1385,41590 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,44050 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,37370 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,15,1385,54925 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,27585 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,33860 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,1385,33445 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,20,15,1385,48740 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,16,1385,45860 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,16,1385,40375 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,22,15,1385,54625 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,16,1385,42380 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,29610 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,51350 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,30000 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,23,16,1385,37430 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,40985 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,39185 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,37670 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,20,15,1385,44815 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,31825 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,1385,37425 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,22,16,1385,51650 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,20,15,1385,49040 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,22,17,1385,37340 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,39280 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,24,18,1385,33985 +Chevrolet,Silverado 1500,2017,regular unleaded,355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,16,1385,40580 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,1385,31610 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,22,17,1385,39580 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,22,17,1385,42555 +Chevrolet,Silverado 1500,2017,flex-fuel (unleaded/E85),285,6,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,24,18,1385,33360 +Cadillac,Sixty Special,1993,regular unleaded,200,8,AUTOMATIC,front wheel drive,4,Luxury,Large,Sedan,23,15,1624,2000 +Buick,Skylark,1996,regular unleaded,150,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,29,19,155,2000 +Buick,Skylark,1996,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,29,19,155,2000 +Buick,Skylark,1996,regular unleaded,155,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,29,19,155,2000 +Buick,Skylark,1997,regular unleaded,155,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,18,155,2000 +Buick,Skylark,1997,regular unleaded,155,6,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,26,18,155,2000 +Buick,Skylark,1997,regular unleaded,150,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,29,19,155,2000 +Buick,Skylark,1997,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,29,19,155,2000 +Buick,Skylark,1998,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,30,19,155,2000 +Mercedes-Benz,SL-Class,2015,premium unleaded (required),329,6,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,27,20,617,84000 +Mercedes-Benz,SL-Class,2015,premium unleaded (required),429,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,24,17,617,106700 +Mercedes-Benz,SL-Class,2015,premium unleaded (required),621,12,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,21,14,617,214500 +Mercedes-Benz,SL-Class,2015,premium unleaded (required),557,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,25,16,617,147300 +Mercedes-Benz,SL-Class,2016,premium unleaded (required),449,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,24,17,617,108050 +Mercedes-Benz,SL-Class,2016,premium unleaded (required),329,6,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,27,20,617,85050 +Mercedes-Benz,SL-Class,2016,premium unleaded (required),621,12,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,21,14,617,217550 +Mercedes-Benz,SL-Class,2016,premium unleaded (required),577,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,25,16,617,149700 +Mercedes-Benz,SL-Class,2017,premium unleaded (required),449,8,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,25,17,617,110800 +Mercedes-Benz,SL-Class,2017,premium unleaded (required),577,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,25,16,617,151350 +Mercedes-Benz,SL-Class,2017,premium unleaded (required),621,12,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,21,14,617,219850 +Mercedes-Benz,SL-Class,2017,premium unleaded (required),362,6,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,28,20,617,86950 +Mercedes-Benz,SLC-Class,2017,premium unleaded (required),362,6,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,29,20,617,60300 +Mercedes-Benz,SLC-Class,2017,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,32,25,617,47950 +Mercedes-Benz,SLK-Class,2014,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,29,21,617,56225 +Mercedes-Benz,SLK-Class,2014,premium unleaded (required),415,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,28,19,617,68925 +Mercedes-Benz,SLK-Class,2014,premium unleaded (required),201,4,MANUAL,rear wheel drive,2,Luxury,Compact,Convertible,32,22,617,43525 +Mercedes-Benz,SLK-Class,2015,premium unleaded (required),201,4,MANUAL,rear wheel drive,2,Luxury,Compact,Convertible,32,22,617,43950 +Mercedes-Benz,SLK-Class,2015,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,29,21,617,57650 +Mercedes-Benz,SLK-Class,2015,premium unleaded (required),415,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,28,19,617,70850 +Mercedes-Benz,SLK-Class,2016,premium unleaded (required),302,6,AUTOMATIC,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,29,21,617,59200 +Mercedes-Benz,SLK-Class,2016,premium unleaded (required),241,4,AUTOMATIC,rear wheel drive,2,Luxury,Compact,Convertible,32,25,617,47000 +Mercedes-Benz,SLK-Class,2016,premium unleaded (required),416,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,28,19,617,72600 +Mercedes-Benz,SLR McLaren,2007,premium unleaded (required),641,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Coupe,16,11,617,480000 +Mercedes-Benz,SLR McLaren,2008,premium unleaded (required),617,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Convertible,16,12,617,495000 +Mercedes-Benz,SLR McLaren,2009,premium unleaded (required),617,8,AUTOMATIC,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Convertible,16,12,617,495000 +Mercedes-Benz,SLS AMG GT Final Edition,2015,premium unleaded (required),583,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Coupe,19,13,617,221580 +Mercedes-Benz,SLS AMG GT Final Edition,2015,premium unleaded (required),583,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Convertible,19,13,617,228080 +Mercedes-Benz,SLS AMG GT,2013,premium unleaded (required),583,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Coupe,19,13,617,199500 +Mercedes-Benz,SLS AMG GT,2013,premium unleaded (required),583,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Convertible,19,13,617,206000 +Mercedes-Benz,SLS AMG GT,2014,premium unleaded (required),622,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Coupe,17,13,617,275000 +Mercedes-Benz,SLS AMG GT,2014,premium unleaded (required),583,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Coupe,19,13,617,201500 +Mercedes-Benz,SLS AMG GT,2014,premium unleaded (required),583,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Convertible,19,13,617,208000 +Mercedes-Benz,SLS AMG,2011,premium unleaded (required),563,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Coupe,20,14,617,183000 +Mercedes-Benz,SLS AMG,2012,premium unleaded (required),563,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Coupe,20,14,617,189600 +Mercedes-Benz,SLS AMG,2012,premium unleaded (required),563,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,Luxury,High-Performance",Compact,Convertible,20,14,617,196100 +Acura,SLX,1997,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,17,13,204,2397 +Acura,SLX,1997,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,17,13,204,2488 +Acura,SLX,1998,regular unleaded,215,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,18,13,204,2816 +Acura,SLX,1999,regular unleaded,215,6,AUTOMATIC,four wheel drive,4,Luxury,Midsize,4dr SUV,18,13,204,2934 +Pontiac,Solstice,2007,regular unleaded,177,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,26,17,210,21515 +Pontiac,Solstice,2007,premium unleaded (required),260,4,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,28,19,210,26515 +Pontiac,Solstice,2008,regular unleaded,173,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,25,19,210,22455 +Pontiac,Solstice,2008,premium unleaded (required),260,4,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,28,19,210,28135 +Pontiac,Solstice,2008,premium unleaded (required),260,4,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,28,19,210,31750 +Pontiac,Solstice,2008,regular unleaded,173,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,25,19,210,28400 +Pontiac,Solstice,2009,premium unleaded (recommended),173,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,25,19,210,24275 +Pontiac,Solstice,2009,premium unleaded (recommended),260,4,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Coupe,28,19,210,30375 +Pontiac,Solstice,2009,premium unleaded (recommended),173,4,MANUAL,rear wheel drive,2,Performance,Compact,Convertible,25,19,210,29410 +Pontiac,Solstice,2009,premium unleaded (recommended),173,4,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,25,19,210,26225 +Pontiac,Solstice,2009,premium unleaded (recommended),260,4,MANUAL,rear wheel drive,2,"Factory Tuner,High-Performance",Compact,Convertible,28,19,210,29485 +Hyundai,Sonata Hybrid,2015,regular unleaded,199,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,40,36,1439,26000 +Hyundai,Sonata Hybrid,2015,regular unleaded,199,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,40,36,1439,29500 +Hyundai,Sonata Hybrid,2016,regular unleaded,193,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,44,40,1439,26000 +Hyundai,Sonata Hybrid,2016,regular unleaded,193,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,43,39,1439,30100 +Hyundai,Sonata Hybrid,2016,regular unleaded,193,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,43,39,1439,30100 +Hyundai,Sonata Hybrid,2017,regular unleaded,193,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,45,39,1439,26000 +Hyundai,Sonata Hybrid,2017,regular unleaded,193,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,43,38,1439,30100 +Hyundai,Sonata Hybrid,2017,regular unleaded,193,4,AUTOMATIC,front wheel drive,4,Hybrid,Midsize,Sedan,43,38,1439,30100 +Hyundai,Sonata,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,24,1439,23175 +Hyundai,Sonata,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,24,1439,26525 +Hyundai,Sonata,2015,regular unleaded,245,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,23,1439,28575 +Hyundai,Sonata,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,24,1439,23175 +Hyundai,Sonata,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,24,1439,26525 +Hyundai,Sonata,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,24,1439,26525 +Hyundai,Sonata,2015,regular unleaded,245,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,21,1439,33525 +Hyundai,Sonata,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,25,1439,21150 +Hyundai,Sonata,2015,regular unleaded,245,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,21,1439,33525 +Hyundai,Sonata,2015,regular unleaded,245,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,23,1439,28575 +Hyundai,Sonata,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,37,25,1439,21150 +Hyundai,Sonata,2015,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,35,24,1439,26525 +Hyundai,Sonata,2015,regular unleaded,177,4,AUTOMATED_MANUAL,front wheel drive,4,N/A,Midsize,Sedan,38,28,1439,23275 +Hyundai,Sonata,2016,regular unleaded,245,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,23,1439,28925 +Hyundai,Sonata,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1439,27350 +Hyundai,Sonata,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1439,27350 +Hyundai,Sonata,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,1439,21750 +Hyundai,Sonata,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1439,23400 +Hyundai,Sonata,2016,regular unleaded,245,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,21,1439,34075 +Hyundai,Sonata,2016,regular unleaded,245,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,32,23,1439,28925 +Hyundai,Sonata,2016,regular unleaded,178,4,AUTOMATED_MANUAL,front wheel drive,4,N/A,Midsize,Sedan,38,28,1439,23725 +Hyundai,Sonata,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1439,23400 +Hyundai,Sonata,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,38,25,1439,21750 +Hyundai,Sonata,2016,regular unleaded,178,4,AUTOMATED_MANUAL,front wheel drive,4,N/A,Midsize,Sedan,38,28,1439,23725 +Hyundai,Sonata,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1439,21600 +Hyundai,Sonata,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1439,27150 +Hyundai,Sonata,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1439,23400 +Hyundai,Sonata,2017,regular unleaded,245,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,22,1439,26600 +Hyundai,Sonata,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1439,23400 +Hyundai,Sonata,2017,regular unleaded,178,4,AUTOMATED_MANUAL,front wheel drive,4,N/A,Midsize,Sedan,36,28,1439,23125 +Hyundai,Sonata,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1439,21600 +Hyundai,Sonata,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1439,21950 +Hyundai,Sonata,2017,regular unleaded,245,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,22,1439,34350 +Hyundai,Sonata,2017,regular unleaded,245,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,31,22,1439,26600 +Hyundai,Sonata,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1439,21950 +Hyundai,Sonata,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,36,25,1439,27150 +Chevrolet,Sonic,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,35,25,1385,15495 +Chevrolet,Sonic,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,33,25,1385,21945 +Chevrolet,Sonic,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,25,1385,16095 +Chevrolet,Sonic,2015,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,29,1385,18835 +Chevrolet,Sonic,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,33,25,1385,21345 +Chevrolet,Sonic,2015,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,26,1385,14845 +Chevrolet,Sonic,2015,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,40,29,1385,18235 +Chevrolet,Sonic,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,25,1385,17845 +Chevrolet,Sonic,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,35,25,1385,17245 +Chevrolet,Sonic,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,27,1385,19680 +Chevrolet,Sonic,2015,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,27,1385,20545 +Chevrolet,Sonic,2015,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,26,1385,14245 +Chevrolet,Sonic,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,27,1385,20245 +Chevrolet,Sonic,2015,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,34,27,1385,19945 +Chevrolet,Sonic,2015,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,26,1385,16455 +Chevrolet,Sonic,2015,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,26,1385,15855 +Chevrolet,Sonic,2016,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,26,1385,16155 +Chevrolet,Sonic,2016,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,34,27,1385,20095 +Chevrolet,Sonic,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,24,1385,18145 +Chevrolet,Sonic,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,35,24,1385,15595 +Chevrolet,Sonic,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,27,1385,20345 +Chevrolet,Sonic,2016,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,26,1385,16755 +Chevrolet,Sonic,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,37,27,1385,19780 +Chevrolet,Sonic,2016,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,27,1385,20095 +Chevrolet,Sonic,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,33,25,1385,21495 +Chevrolet,Sonic,2016,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,26,1385,14345 +Chevrolet,Sonic,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,35,24,1385,17545 +Chevrolet,Sonic,2016,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,26,1385,14945 +Chevrolet,Sonic,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,24,1385,16195 +Chevrolet,Sonic,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,33,25,1385,21495 +Chevrolet,Sonic,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,34,24,1385,18170 +Chevrolet,Sonic,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,27,1385,21215 +Chevrolet,Sonic,2017,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,33,25,1385,17580 +Chevrolet,Sonic,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,24,1385,18970 +Chevrolet,Sonic,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,34,24,1385,16395 +Chevrolet,Sonic,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,36,27,1385,20415 +Chevrolet,Sonic,2017,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,39,28,1385,19720 +Chevrolet,Sonic,2017,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,39,28,1385,17530 +Chevrolet,Sonic,2017,regular unleaded,138,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,39,28,1385,19720 +Chevrolet,Sonic,2017,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,25,1385,15145 +GMC,Sonoma,2002,regular unleaded,190,6,AUTOMATIC,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,20,15,549,16538 +GMC,Sonoma,2002,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,25,19,549,13975 +GMC,Sonoma,2002,regular unleaded,190,6,AUTOMATIC,four wheel drive,3,N/A,Compact,Extended Cab Pickup,18,14,549,20793 +GMC,Sonoma,2002,flex-fuel (unleaded/E85),120,4,AUTOMATIC,rear wheel drive,3,Flex Fuel,Compact,Extended Cab Pickup,23,17,549,17093 +GMC,Sonoma,2002,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,3,Flex Fuel,Compact,Extended Cab Pickup,25,19,549,15957 +GMC,Sonoma,2002,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,18,14,549,24492 +GMC,Sonoma,2002,flex-fuel (unleaded/E85),120,4,AUTOMATIC,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,23,17,549,15093 +GMC,Sonoma,2002,flex-fuel (unleaded/E85),120,4,AUTOMATIC,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,23,17,549,15420 +GMC,Sonoma,2002,regular unleaded,190,6,MANUAL,four wheel drive,3,N/A,Compact,Extended Cab Pickup,16,12,549,19675 +GMC,Sonoma,2003,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,25,19,549,14770 +GMC,Sonoma,2003,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,3,Flex Fuel,Compact,Extended Cab Pickup,25,19,549,16570 +GMC,Sonoma,2003,regular unleaded,190,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,18,14,549,24670 +GMC,Sonoma,2003,regular unleaded,190,6,MANUAL,four wheel drive,3,N/A,Compact,Extended Cab Pickup,17,12,549,21970 +GMC,Sonoma,2003,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,25,19,549,16270 +GMC,Sonoma,2003,flex-fuel (unleaded/E85),120,4,AUTOMATIC,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,23,17,549,16220 +GMC,Sonoma,2003,regular unleaded,190,6,MANUAL,four wheel drive,3,N/A,Compact,Extended Cab Pickup,17,12,549,20320 +GMC,Sonoma,2003,flex-fuel (unleaded/E85),120,4,AUTOMATIC,rear wheel drive,2,Flex Fuel,Compact,Regular Cab Pickup,23,17,549,17670 +GMC,Sonoma,2003,flex-fuel (unleaded/E85),120,4,MANUAL,rear wheel drive,3,Flex Fuel,Compact,Extended Cab Pickup,25,19,549,18270 +Kia,Sorento,2015,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,1720,38500 +Kia,Sorento,2015,regular unleaded,191,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,20,1720,24300 +Kia,Sorento,2015,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1720,26700 +Kia,Sorento,2015,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1720,36700 +Kia,Sorento,2015,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,1720,41700 +Kia,Sorento,2015,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1720,31700 +Kia,Sorento,2015,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,1720,33500 +Kia,Sorento,2015,regular unleaded,191,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,25,19,1720,26100 +Kia,Sorento,2015,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1720,39900 +Kia,Sorento,2015,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,24,18,1720,28500 +Kia,Sorento,2016,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,18,1720,38300 +Kia,Sorento,2016,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,21,1720,28200 +Kia,Sorento,2016,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,1720,33900 +Kia,Sorento,2016,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,18,1720,28700 +Kia,Sorento,2016,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,17,1720,40100 +Kia,Sorento,2016,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,25,19,1720,32900 +Kia,Sorento,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,29,21,1720,25100 +Kia,Sorento,2016,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,17,1720,43300 +Kia,Sorento,2016,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,18,1720,32100 +Kia,Sorento,2016,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,29,21,1720,26400 +Kia,Sorento,2016,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,26,18,1720,41500 +Kia,Sorento,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,20,1720,31100 +Kia,Sorento,2016,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,26,18,1720,30500 +Kia,Sorento,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,20,1720,39900 +Kia,Sorento,2016,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,25,19,1720,41700 +Kia,Sorento,2017,regular unleaded,185,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,25,21,1720,28500 +Kia,Sorento,2017,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1720,28990 +Kia,Sorento,2017,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1720,33100 +Kia,Sorento,2017,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,17,1720,40400 +Kia,Sorento,2017,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,27,20,1720,31500 +Kia,Sorento,2017,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1720,38600 +Kia,Sorento,2017,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,17,1720,45700 +Kia,Sorento,2017,regular unleaded,290,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1720,43900 +Kia,Sorento,2017,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1720,30790 +Kia,Sorento,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,21,1720,25400 +Kia,Sorento,2017,regular unleaded,290,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,25,18,1720,34900 +Kia,Sorento,2017,regular unleaded,185,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,28,21,1720,26700 +Kia,Sorento,2017,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,25,19,1720,33300 +Kia,Soul EV,2015,electric,,0,DIRECT_DRIVE,front wheel drive,4,N/A,Compact,Wagon,92,120,1720,35700 +Kia,Soul EV,2015,electric,,0,DIRECT_DRIVE,front wheel drive,4,N/A,Compact,Wagon,92,120,1720,33700 +Kia,Soul EV,2016,electric,,0,DIRECT_DRIVE,front wheel drive,4,N/A,Compact,Wagon,92,120,1720,33950 +Kia,Soul EV,2016,electric,,0,DIRECT_DRIVE,front wheel drive,4,N/A,Compact,Wagon,92,120,1720,31950 +Kia,Soul EV,2016,electric,,0,DIRECT_DRIVE,front wheel drive,4,N/A,Compact,Wagon,92,120,1720,35950 +Kia,Soul,2014,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,24,1720,16900 +Kia,Soul,2014,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,23,1720,20500 +Kia,Soul,2014,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,23,1720,18400 +Kia,Soul,2014,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,30,24,1720,14900 +Kia,Soul,2015,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,30,24,1720,15190 +Kia,Soul,2015,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,24,1720,17190 +Kia,Soul,2015,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,23,1720,20790 +Kia,Soul,2015,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,23,1720,18690 +Kia,Soul,2016,regular unleaded,130,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,30,24,1720,17400 +Kia,Soul,2016,regular unleaded,130,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,30,24,1720,15900 +Kia,Soul,2016,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,24,1720,21300 +Kia,Soul,2016,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,31,24,1720,19400 +Chevrolet,Spark EV,2014,electric,140,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,109,128,1385,26685 +Chevrolet,Spark EV,2014,electric,140,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,109,128,1385,27010 +Chevrolet,Spark EV,2015,electric,140,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,109,128,1385,25170 +Chevrolet,Spark EV,2015,electric,140,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,109,128,1385,25560 +Chevrolet,Spark EV,2016,electric,140,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,109,128,1385,25510 +Chevrolet,Spark EV,2016,electric,140,0,DIRECT_DRIVE,front wheel drive,4,Hatchback,Compact,4dr Hatchback,109,128,1385,25120 +Chevrolet,Spark,2015,regular unleaded,84,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,39,31,1385,14040 +Chevrolet,Spark,2015,regular unleaded,84,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,39,30,1385,15095 +Chevrolet,Spark,2015,regular unleaded,84,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,39,31,1385,15440 +Chevrolet,Spark,2015,regular unleaded,84,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,39,31,1385,12270 +Chevrolet,Spark,2015,regular unleaded,84,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,39,30,1385,13580 +Chevrolet,Spark,2015,regular unleaded,84,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,39,30,1385,16535 +Chevrolet,Spark,2016,regular unleaded,98,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,41,30,1385,14685 +Chevrolet,Spark,2016,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,41,31,1385,17285 +Chevrolet,Spark,2016,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,41,31,1385,15785 +Chevrolet,Spark,2016,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,41,31,1385,13760 +Chevrolet,Spark,2016,regular unleaded,98,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,41,30,1385,12660 +Chevrolet,Spark,2016,regular unleaded,98,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,41,30,1385,16185 +Chevrolet,Spark,2017,regular unleaded,98,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,29,1385,16325 +Chevrolet,Spark,2017,regular unleaded,98,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,29,1385,13000 +Chevrolet,Spark,2017,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,30,1385,14100 +Chevrolet,Spark,2017,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,30,1385,15925 +Chevrolet,Spark,2017,regular unleaded,98,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,29,1385,14825 +Chevrolet,Spark,2017,regular unleaded,98,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,38,30,1385,17425 +Kia,Spectra,2007,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,23,1720,12895 +Kia,Spectra,2007,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,23,1720,15995 +Kia,Spectra,2007,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,32,23,1720,15895 +Kia,Spectra,2007,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,30,23,1720,15995 +Kia,Spectra,2007,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,23,1720,14895 +Kia,Spectra,2007,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,32,23,1720,16995 +Kia,Spectra,2007,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,32,23,1720,16995 +Kia,Spectra,2008,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,32,24,1720,15895 +Kia,Spectra,2008,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,32,24,1720,16995 +Kia,Spectra,2008,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,30,23,1720,15995 +Kia,Spectra,2008,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,23,1720,14895 +Kia,Spectra,2008,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,23,1720,15995 +Kia,Spectra,2008,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,32,24,1720,16995 +Kia,Spectra,2008,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,32,24,1720,13895 +Kia,Spectra,2008,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,23,1720,12895 +Kia,Spectra,2009,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,23,1720,13550 +Kia,Spectra,2009,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,23,1720,15550 +Kia,Spectra,2009,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,32,24,1720,17450 +Kia,Spectra,2009,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,30,23,1720,16695 +Kia,Spectra,2009,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,32,24,1720,16550 +Kia,Spectra,2009,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,23,1720,16450 +Kia,Spectra,2009,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,32,24,1720,17695 +Kia,Spectra,2009,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,32,24,1720,14550 +Dodge,Spirit,1993,regular unleaded,101,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,29,22,1851,2000 +Dodge,Spirit,1993,regular unleaded,101,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,26,21,1851,2000 +Dodge,Spirit,1994,regular unleaded,100,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,25,19,1851,2000 +Dodge,Spirit,1995,regular unleaded,100,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,26,19,1851,2000 +Kia,Sportage,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,21,1720,21900 +Kia,Sportage,2015,regular unleaded,260,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,26,20,1720,28100 +Kia,Sportage,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,21,1720,25300 +Kia,Sportage,2015,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,19,1720,26800 +Kia,Sportage,2015,regular unleaded,260,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,19,1720,29600 +Kia,Sportage,2015,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,19,1720,23400 +Kia,Sportage,2016,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,19,1720,23650 +Kia,Sportage,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,21,1720,22150 +Kia,Sportage,2016,regular unleaded,260,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,25,19,1720,31490 +Kia,Sportage,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,21,1720,25350 +Kia,Sportage,2016,regular unleaded,260,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,26,20,1720,29990 +Kia,Sportage,2016,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,19,1720,26850 +Kia,Sportage,2017,regular unleaded,181,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,25,21,1720,27000 +Kia,Sportage,2017,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,26,21,1720,32500 +Kia,Sportage,2017,regular unleaded,181,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,29,22,1720,22990 +Kia,Sportage,2017,regular unleaded,237,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,23,20,1720,34000 +Kia,Sportage,2017,regular unleaded,181,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,29,22,1720,25500 +Kia,Sportage,2017,regular unleaded,181,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,25,21,1720,24490 +Chevrolet,Sportvan,1994,regular unleaded,200,8,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,16,11,1385,2000 +Chevrolet,Sportvan,1994,regular unleaded,200,8,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,16,11,1385,2000 +Chevrolet,Sportvan,1994,regular unleaded,200,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Passenger Van,16,11,1385,2000 +Chevrolet,Sportvan,1994,regular unleaded,200,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Passenger Van,16,11,1385,2000 +Chevrolet,Sportvan,1994,regular unleaded,155,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,17,14,1385,2000 +Chevrolet,Sportvan,1994,regular unleaded,155,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,17,14,1385,2000 +Chevrolet,Sportvan,1995,regular unleaded,163,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,15,13,1385,2000 +Chevrolet,Sportvan,1995,regular unleaded,163,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Passenger Van,15,13,1385,2000 +Maserati,Spyder,2003,premium unleaded (required),390,8,MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Convertible,15,10,238,85542 +Maserati,Spyder,2003,premium unleaded (required),390,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Convertible,16,10,238,89622 +Maserati,Spyder,2004,premium unleaded (required),390,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Convertible,16,10,238,89622 +Maserati,Spyder,2004,premium unleaded (required),390,8,MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Convertible,15,10,238,85542 +Maserati,Spyder,2005,premium unleaded (required),385,8,MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Convertible,15,10,238,87252 +Maserati,Spyder,2005,premium unleaded (required),385,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Convertible,16,11,238,91415 +Audi,SQ5,2015,premium unleaded (required),354,6,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,24,17,3105,52700 +Audi,SQ5,2015,premium unleaded (required),354,6,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,24,17,3105,60200 +Audi,SQ5,2016,premium unleaded (required),354,6,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,Performance",Midsize,4dr SUV,24,17,3105,53300 +Audi,SQ5,2016,premium unleaded (required),354,6,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,Performance",Midsize,4dr SUV,24,17,3105,60800 +Audi,SQ5,2017,premium unleaded (required),354,6,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,Performance",Midsize,4dr SUV,24,17,3105,60800 +Audi,SQ5,2017,premium unleaded (required),354,6,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,Performance",Midsize,4dr SUV,24,17,3105,53300 +Dodge,SRT Viper,2013,premium unleaded (required),640,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,12,1851,97395 +Dodge,SRT Viper,2013,premium unleaded (required),640,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,12,1851,120395 +Dodge,SRT Viper,2014,premium unleaded (required),640,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,12,1851,107385 +Dodge,SRT Viper,2014,premium unleaded (required),640,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,12,1851,84885 +Cadillac,SRX,2014,regular unleaded,308,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,1624,48065 +Cadillac,SRX,2014,regular unleaded,308,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,1624,50955 +Cadillac,SRX,2014,regular unleaded,308,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,1624,42880 +Cadillac,SRX,2014,regular unleaded,308,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,1624,48145 +Cadillac,SRX,2014,regular unleaded,308,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,1624,37505 +Cadillac,SRX,2014,regular unleaded,308,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,1624,45375 +Cadillac,SRX,2014,regular unleaded,308,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,1624,45255 +Cadillac,SRX,2015,regular unleaded,308,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,1624,48920 +Cadillac,SRX,2015,regular unleaded,308,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,1624,48840 +Cadillac,SRX,2015,regular unleaded,308,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,1624,46030 +Cadillac,SRX,2015,regular unleaded,308,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,1624,51730 +Cadillac,SRX,2015,regular unleaded,308,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,1624,43640 +Cadillac,SRX,2015,regular unleaded,308,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,1624,46135 +Cadillac,SRX,2015,regular unleaded,308,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,1624,37605 +Cadillac,SRX,2016,regular unleaded,308,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,1624,37605 +Cadillac,SRX,2016,regular unleaded,308,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,1624,48840 +Cadillac,SRX,2016,regular unleaded,308,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,1624,51730 +Cadillac,SRX,2016,regular unleaded,308,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,1624,48920 +Cadillac,SRX,2016,regular unleaded,308,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,23,16,1624,46135 +Cadillac,SRX,2016,regular unleaded,308,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,1624,43640 +Cadillac,SRX,2016,regular unleaded,308,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,17,1624,46030 +Chevrolet,SS,2014,premium unleaded (recommended),415,8,AUTOMATIC,rear wheel drive,4,High-Performance,Large,Sedan,21,14,1385,43475 +Chevrolet,SS,2015,premium unleaded (recommended),415,8,AUTOMATIC,rear wheel drive,4,High-Performance,Large,Sedan,21,14,1385,45745 +Chevrolet,SS,2016,premium unleaded (recommended),415,8,AUTOMATIC,rear wheel drive,4,High-Performance,Large,Sedan,20,14,1385,46575 +Chevrolet,SSR,2004,regular unleaded,300,8,AUTOMATIC,rear wheel drive,2,Performance,Compact,Regular Cab Pickup,18,14,1385,41620 +Chevrolet,SSR,2005,regular unleaded,395,8,AUTOMATIC,rear wheel drive,2,Performance,Compact,Regular Cab Pickup,18,14,1385,42555 +Chevrolet,SSR,2006,regular unleaded,395,8,AUTOMATIC,rear wheel drive,2,High-Performance,Compact,Regular Cab Pickup,18,14,1385,39240 +Nissan,Stanza,1990,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,26,19,2009,2000 +Nissan,Stanza,1990,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,26,19,2009,2000 +Nissan,Stanza,1991,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,26,19,2009,2000 +Nissan,Stanza,1991,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,26,19,2009,2000 +Nissan,Stanza,1992,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,25,18,2009,2000 +Nissan,Stanza,1992,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,26,19,2009,2000 +Nissan,Stanza,1992,regular unleaded,138,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,26,19,2009,2000 +Dodge,Stealth,1994,regular unleaded,320,6,MANUAL,all wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,22,16,1851,2823 +Dodge,Stealth,1994,regular unleaded,222,6,MANUAL,front wheel drive,2,Performance,Compact,Coupe,23,17,1851,2350 +Dodge,Stealth,1994,regular unleaded,222,6,MANUAL,front wheel drive,2,Performance,Compact,Coupe,23,17,1851,2203 +Dodge,Stealth,1994,regular unleaded,164,6,MANUAL,front wheel drive,2,N/A,Compact,Coupe,22,17,1851,2000 +Dodge,Stealth,1995,regular unleaded,222,6,MANUAL,front wheel drive,2,Performance,Compact,Coupe,23,17,1851,2575 +Dodge,Stealth,1995,regular unleaded,320,6,MANUAL,all wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,22,16,1851,3219 +Dodge,Stealth,1995,regular unleaded,164,6,MANUAL,front wheel drive,2,N/A,Compact,Coupe,22,17,1851,2000 +Dodge,Stealth,1996,regular unleaded,222,6,MANUAL,front wheel drive,2,Performance,Compact,Coupe,23,17,1851,3044 +Dodge,Stealth,1996,regular unleaded,164,6,MANUAL,front wheel drive,2,N/A,Compact,Coupe,22,17,1851,2231 +Dodge,Stealth,1996,regular unleaded,320,6,MANUAL,all wheel drive,2,"Factory Tuner,Performance",Compact,Coupe,22,16,1851,3732 +Dodge,Stratus,2004,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,19,1851,21975 +Dodge,Stratus,2004,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,25,19,1851,21450 +Dodge,Stratus,2004,regular unleaded,200,6,MANUAL,front wheel drive,2,Performance,Midsize,Coupe,26,18,1851,22695 +Dodge,Stratus,2004,regular unleaded,200,6,AUTOMATIC,front wheel drive,2,Performance,Midsize,Coupe,25,18,1851,23520 +Dodge,Stratus,2004,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,26,19,1851,19690 +Dodge,Stratus,2004,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,27,20,1851,19970 +Dodge,Stratus,2004,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,19,1851,20820 +Dodge,Stratus,2004,regular unleaded,200,6,MANUAL,front wheel drive,4,Performance,Midsize,Sedan,25,17,1851,22370 +Dodge,Stratus,2004,regular unleaded,147,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,29,21,1851,19850 +Dodge,Stratus,2004,regular unleaded,142,4,AUTOMATIC,front wheel drive,2,N/A,Midsize,Coupe,26,19,1851,20675 +Dodge,Stratus,2005,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,25,19,1851,21735 +Dodge,Stratus,2005,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,25,19,1851,23335 +Dodge,Stratus,2005,regular unleaded,200,6,MANUAL,front wheel drive,2,Performance,Midsize,Coupe,27,18,1851,22980 +Dodge,Stratus,2005,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,26,19,1851,20255 +Dodge,Stratus,2005,regular unleaded,147,4,MANUAL,front wheel drive,2,N/A,Midsize,Coupe,29,21,1851,20135 +Dodge,Stratus,2006,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,25,19,1851,23755 +Dodge,Stratus,2006,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Sedan,27,20,1851,20825 +Cadillac,STS-V,2007,premium unleaded (required),469,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,19,12,1624,75010 +Cadillac,STS-V,2008,premium unleaded (required),469,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,19,13,1624,78775 +Cadillac,STS-V,2009,premium unleaded (required),469,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Luxury,High-Performance",Large,Sedan,19,13,1624,81795 +Cadillac,STS,2009,premium unleaded (required),320,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,24,15,1624,56345 +Cadillac,STS,2009,regular unleaded,302,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,26,17,1624,46845 +Cadillac,STS,2010,regular unleaded,302,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,27,18,1624,55945 +Cadillac,STS,2010,premium unleaded (recommended),320,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,24,15,1624,68785 +Cadillac,STS,2010,regular unleaded,302,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,27,18,1624,50385 +Cadillac,STS,2010,regular unleaded,302,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,27,18,1624,46845 +Cadillac,STS,2010,premium unleaded (recommended),320,8,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,24,15,1624,56345 +Cadillac,STS,2011,regular unleaded,302,6,AUTOMATIC,rear wheel drive,4,Luxury,Large,Sedan,27,18,1624,47280 +Cadillac,STS,2011,regular unleaded,302,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,27,18,1624,50820 +Cadillac,STS,2011,regular unleaded,302,6,AUTOMATIC,rear wheel drive,4,"Luxury,Performance",Large,Sedan,27,18,1624,56380 +Chevrolet,Suburban,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,4dr SUV,23,16,1385,54205 +Chevrolet,Suburban,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,1385,63785 +Chevrolet,Suburban,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,22,15,1385,57205 +Chevrolet,Suburban,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,15,1385,66785 +Chevrolet,Suburban,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,22,15,1385,52000 +Chevrolet,Suburban,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,4dr SUV,23,16,1385,49000 +Chevrolet,Suburban,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,1385,54730 +Chevrolet,Suburban,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,15,1385,57730 +Chevrolet,Suburban,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,1385,64440 +Chevrolet,Suburban,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,15,1385,52700 +Chevrolet,Suburban,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,1385,49700 +Chevrolet,Suburban,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,15,1385,67440 +Chevrolet,Suburban,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,15,1385,58045 +Chevrolet,Suburban,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,1385,49915 +Chevrolet,Suburban,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,15,1385,67730 +Chevrolet,Suburban,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,15,1385,52915 +Chevrolet,Suburban,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,1385,55045 +Chevrolet,Suburban,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,1385,64730 +GMC,Suburban,1997,regular unleaded,255,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,17,12,549,2468 +GMC,Suburban,1997,regular unleaded,255,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,15,11,549,2585 +GMC,Suburban,1998,regular unleaded,255,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,17,12,549,2790 +GMC,Suburban,1999,regular unleaded,255,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,17,12,549,3420 +GMC,Suburban,1999,regular unleaded,255,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,17,12,549,3051 +GMC,Suburban,1999,regular unleaded,255,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,17,12,549,3372 +Pontiac,Sunbird,1992,regular unleaded,111,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,32,22,210,2000 +Pontiac,Sunbird,1992,regular unleaded,140,6,MANUAL,front wheel drive,2,N/A,Compact,Coupe,26,17,210,2000 +Pontiac,Sunbird,1992,regular unleaded,111,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,32,22,210,2000 +Pontiac,Sunbird,1992,regular unleaded,111,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,32,22,210,2000 +Pontiac,Sunbird,1992,regular unleaded,111,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,22,210,2000 +Pontiac,Sunbird,1992,regular unleaded,111,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,22,210,2000 +Pontiac,Sunbird,1993,regular unleaded,110,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,32,22,210,2000 +Pontiac,Sunbird,1993,regular unleaded,110,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,32,22,210,2000 +Pontiac,Sunbird,1993,regular unleaded,110,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,22,210,2000 +Pontiac,Sunbird,1993,regular unleaded,110,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,22,210,2000 +Pontiac,Sunbird,1993,regular unleaded,110,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,32,22,210,2000 +Pontiac,Sunbird,1993,regular unleaded,140,6,MANUAL,front wheel drive,2,N/A,Compact,Coupe,26,17,210,2000 +Pontiac,Sunbird,1994,regular unleaded,110,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,22,210,2000 +Pontiac,Sunbird,1994,regular unleaded,110,4,MANUAL,front wheel drive,2,N/A,Compact,Convertible,32,22,210,2000 +Pontiac,Sunbird,1994,regular unleaded,110,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,32,22,210,2000 +Pontiac,Sunbird,1994,regular unleaded,140,6,MANUAL,front wheel drive,2,N/A,Compact,Coupe,26,17,210,2000 +Plymouth,Sundance,1992,regular unleaded,100,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,20,535,2000 +Plymouth,Sundance,1992,regular unleaded,93,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,23,535,2000 +Plymouth,Sundance,1992,regular unleaded,93,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,23,535,2000 +Plymouth,Sundance,1992,regular unleaded,100,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,20,535,2000 +Plymouth,Sundance,1992,regular unleaded,93,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,23,535,2000 +Plymouth,Sundance,1992,regular unleaded,93,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,23,535,2000 +Plymouth,Sundance,1993,regular unleaded,100,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,22,535,2000 +Plymouth,Sundance,1993,regular unleaded,93,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,23,535,2000 +Plymouth,Sundance,1993,regular unleaded,100,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,29,22,535,2000 +Plymouth,Sundance,1993,regular unleaded,93,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,29,23,535,2000 +Plymouth,Sundance,1994,regular unleaded,100,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,27,21,535,2000 +Plymouth,Sundance,1994,regular unleaded,100,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,27,21,535,2000 +Plymouth,Sundance,1994,regular unleaded,93,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,30,23,535,2000 +Plymouth,Sundance,1994,regular unleaded,93,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,30,23,535,2000 +Pontiac,Sunfire,2003,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,22,210,14930 +Pontiac,Sunfire,2004,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,23,210,10895 +Pontiac,Sunfire,2004,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,33,23,210,14930 +Pontiac,Sunfire,2005,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,32,23,210,15205 +Pontiac,Sunfire,2005,regular unleaded,140,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,32,23,210,10895 +Ferrari,Superamerica,2005,premium unleaded (required),532,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,15,9,2774,281170 +Ferrari,Superamerica,2005,premium unleaded (required),532,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,16,9,2774,294080 +Bentley,Supersports Convertible ISR,2013,flex-fuel (premium unleaded required/E85),631,12,AUTOMATIC,all wheel drive,2,"Exotic,Flex Fuel,Factory Tuner,Luxury,High-Performance",Midsize,Convertible,19,12,520,291900 +Toyota,Supra,1996,regular unleaded,320,6,AUTOMATIC,rear wheel drive,2,Performance,Compact,Coupe,22,16,2031,18255 +Toyota,Supra,1996,regular unleaded,220,6,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,22,16,2031,14977 +Toyota,Supra,1997,regular unleaded,320,6,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,22,15,2031,22001 +Toyota,Supra,1997,regular unleaded,220,6,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,22,16,2031,17320 +Toyota,Supra,1998,regular unleaded,225,6,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,22,17,2031,20596 +Toyota,Supra,1998,regular unleaded,320,6,MANUAL,rear wheel drive,2,Performance,Compact,Coupe,22,15,2031,25279 +Subaru,SVX,1995,regular unleaded,230,6,AUTOMATIC,all wheel drive,2,Performance,Compact,Coupe,23,15,640,2000 +Subaru,SVX,1995,regular unleaded,230,6,AUTOMATIC,front wheel drive,2,Performance,Compact,Coupe,23,15,640,2000 +Subaru,SVX,1995,regular unleaded,230,6,AUTOMATIC,all wheel drive,2,Performance,Compact,Coupe,23,15,640,2230 +Subaru,SVX,1995,regular unleaded,230,6,AUTOMATIC,front wheel drive,2,Performance,Compact,Coupe,23,15,640,2000 +Subaru,SVX,1996,regular unleaded,230,6,AUTOMATIC,all wheel drive,2,Performance,Compact,Coupe,22,15,640,2472 +Subaru,SVX,1996,regular unleaded,230,6,AUTOMATIC,all wheel drive,2,Performance,Compact,Coupe,22,15,640,2283 +Subaru,SVX,1997,regular unleaded,230,6,AUTOMATIC,all wheel drive,2,Performance,Compact,Coupe,22,15,640,2749 +Subaru,SVX,1997,regular unleaded,230,6,AUTOMATIC,all wheel drive,2,Performance,Compact,Coupe,22,15,640,2512 +Suzuki,Swift,1999,regular unleaded,79,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,39,33,481,2000 +Suzuki,Swift,2000,regular unleaded,79,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,38,31,481,2000 +Suzuki,Swift,2000,regular unleaded,79,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,38,31,481,2000 +Suzuki,Swift,2001,regular unleaded,79,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,26,481,9949 +Suzuki,Swift,2001,regular unleaded,79,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,26,481,10949 +Suzuki,Swift,2001,regular unleaded,79,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,38,31,481,9299 +Suzuki,Swift,2001,regular unleaded,79,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,38,31,481,10299 +Suzuki,SX4,2011,regular unleaded,150,4,MANUAL,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,22,481,16599 +Suzuki,SX4,2011,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,29,23,481,19349 +Suzuki,SX4,2011,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,30,23,481,17099 +Suzuki,SX4,2011,regular unleaded,150,4,MANUAL,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,22,481,16999 +Suzuki,SX4,2011,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,30,23,481,17849 +Suzuki,SX4,2011,regular unleaded,150,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,32,23,481,16479 +Suzuki,SX4,2011,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,30,23,481,18999 +Suzuki,SX4,2011,regular unleaded,150,4,MANUAL,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,22,481,18249 +Suzuki,SX4,2011,regular unleaded,150,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,23,481,13499 +Suzuki,SX4,2011,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,23,481,17799 +Suzuki,SX4,2011,regular unleaded,150,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,23,481,15195 +Suzuki,SX4,2011,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,23,481,18299 +Suzuki,SX4,2011,regular unleaded,150,4,MANUAL,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,22,481,17099 +Suzuki,SX4,2011,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,29,23,481,18599 +Suzuki,SX4,2012,regular unleaded,150,4,MANUAL,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,22,481,16799 +Suzuki,SX4,2012,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,29,23,481,18875 +Suzuki,SX4,2012,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,29,23,481,19649 +Suzuki,SX4,2012,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,23,481,17999 +Suzuki,SX4,2012,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,32,25,481,18199 +Suzuki,SX4,2012,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,32,25,481,17399 +Suzuki,SX4,2012,regular unleaded,150,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,23,481,13699 +Suzuki,SX4,2012,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,23,481,18499 +Suzuki,SX4,2012,regular unleaded,150,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,23,481,15495 +Suzuki,SX4,2012,regular unleaded,150,4,MANUAL,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,22,481,18549 +Suzuki,SX4,2012,regular unleaded,150,4,MANUAL,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,22,481,16999 +Suzuki,SX4,2013,regular unleaded,150,4,MANUAL,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,22,481,19349 +Suzuki,SX4,2013,regular unleaded,150,4,MANUAL,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,22,481,16999 +Suzuki,SX4,2013,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,29,23,481,19175 +Suzuki,SX4,2013,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,32,25,481,17849 +Suzuki,SX4,2013,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,30,23,481,18349 +Suzuki,SX4,2013,regular unleaded,148,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,30,23,481,18799 +Suzuki,SX4,2013,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback",Compact,4dr Hatchback,29,23,481,20449 +Suzuki,SX4,2013,regular unleaded,150,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,33,23,481,15845 +GMC,Syclone,1991,regular unleaded,280,6,AUTOMATIC,all wheel drive,2,"Factory Tuner,Performance",Compact,Regular Cab Pickup,16,13,549,5667 +Toyota,T100,1996,regular unleaded,190,6,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,20,15,2031,2563 +Toyota,T100,1996,regular unleaded,190,6,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,18,15,2031,2922 +Toyota,T100,1996,regular unleaded,190,6,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,20,15,2031,2506 +Toyota,T100,1996,regular unleaded,150,4,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,22,18,2031,2141 +Toyota,T100,1996,regular unleaded,190,6,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,18,15,2031,2802 +Toyota,T100,1997,regular unleaded,190,6,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,17,15,2031,3143 +Toyota,T100,1997,regular unleaded,190,6,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,19,15,2031,2806 +Toyota,T100,1997,regular unleaded,150,4,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,22,17,2031,2348 +Toyota,T100,1997,regular unleaded,190,6,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,17,15,2031,3042 +Toyota,T100,1997,regular unleaded,190,6,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,19,15,2031,2767 +Toyota,T100,1998,regular unleaded,150,4,MANUAL,rear wheel drive,2,N/A,Large,Regular Cab Pickup,22,17,2031,2540 +Toyota,T100,1998,regular unleaded,190,6,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,19,15,2031,3058 +Toyota,T100,1998,regular unleaded,190,6,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,18,15,2031,3586 +Toyota,T100,1998,regular unleaded,190,6,MANUAL,four wheel drive,2,N/A,Large,Extended Cab Pickup,18,15,2031,3480 +Toyota,T100,1998,regular unleaded,190,6,MANUAL,rear wheel drive,2,N/A,Large,Extended Cab Pickup,19,15,2031,3214 +Toyota,Tacoma,2015,regular unleaded,236,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,15,2031,27355 +Toyota,Tacoma,2015,regular unleaded,159,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,24,19,2031,23075 +Toyota,Tacoma,2015,regular unleaded,236,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,21,16,2031,27235 +Toyota,Tacoma,2015,regular unleaded,159,4,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,20,18,2031,24800 +Toyota,Tacoma,2015,regular unleaded,159,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,24,19,2031,21865 +Toyota,Tacoma,2015,regular unleaded,236,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,2031,35725 +Toyota,Tacoma,2015,regular unleaded,159,4,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,25,21,2031,20965 +Toyota,Tacoma,2015,regular unleaded,159,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,24,19,2031,23625 +Toyota,Tacoma,2015,regular unleaded,236,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,2031,37615 +Toyota,Tacoma,2015,regular unleaded,236,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,21,17,2031,25060 +Toyota,Tacoma,2015,regular unleaded,236,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,21,17,2031,23960 +Toyota,Tacoma,2015,regular unleaded,236,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,19,15,2031,26355 +Toyota,Tacoma,2015,regular unleaded,236,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,21,16,2031,36705 +Toyota,Tacoma,2015,regular unleaded,236,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,19,15,2031,36635 +Toyota,Tacoma,2015,regular unleaded,236,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,2031,28235 +Toyota,Tacoma,2015,regular unleaded,236,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,16,2031,28735 +Toyota,Tacoma,2015,regular unleaded,159,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,24,19,2031,22525 +Toyota,Tacoma,2015,regular unleaded,236,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,21,17,2031,25560 +Toyota,Tacoma,2015,regular unleaded,159,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,21,18,2031,25700 +Toyota,Tacoma,2016,regular unleaded,159,4,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,21,19,2031,25185 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,29275 +Toyota,Tacoma,2016,regular unleaded,159,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,19,2031,23660 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,34700 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,31420 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,34090 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,24,19,2031,30025 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,23,18,2031,33310 +Toyota,Tacoma,2016,regular unleaded,159,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,23,19,2031,26635 +Toyota,Tacoma,2016,regular unleaded,278,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,20,17,2031,31680 +Toyota,Tacoma,2016,regular unleaded,278,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,20,17,2031,32460 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,34090 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,24,19,2031,27355 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,23,18,2031,33310 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,24,19,2031,35105 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,31920 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,38180 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,24,19,2031,28345 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,24,19,2031,31125 +Toyota,Tacoma,2016,regular unleaded,159,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,22,19,2031,26735 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,24,19,2031,31625 +Toyota,Tacoma,2016,regular unleaded,159,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,22,19,2031,28820 +Toyota,Tacoma,2016,regular unleaded,278,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,21,17,2031,32460 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,24,19,2031,28845 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,23,18,2031,30530 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,24,19,2031,31125 +Toyota,Tacoma,2016,regular unleaded,159,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,19,2031,25745 +Toyota,Tacoma,2016,regular unleaded,159,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,23,19,2031,24490 +Toyota,Tacoma,2016,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,34700 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,35315 +Toyota,Tacoma,2017,regular unleaded,278,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,20,17,2031,33075 +Toyota,Tacoma,2017,regular unleaded,278,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,20,17,2031,40760 +Toyota,Tacoma,2017,regular unleaded,159,4,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,21,19,2031,25645 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,24,19,2031,35720 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,23,18,2031,33770 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,32765 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,34705 +Toyota,Tacoma,2017,regular unleaded,159,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,23,19,2031,27095 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,35315 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,42760 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,34705 +Toyota,Tacoma,2017,regular unleaded,159,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,23,19,2031,24950 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,24,19,2031,29690 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,24,19,2031,25730 +Toyota,Tacoma,2017,regular unleaded,278,6,MANUAL,four wheel drive,4,N/A,Compact,Crew Cab Pickup,20,17,2031,33075 +Toyota,Tacoma,2017,regular unleaded,159,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,19,2031,26205 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,24,19,2031,31740 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,29735 +Toyota,Tacoma,2017,regular unleaded,159,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,22,19,2031,29280 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,23,18,2031,33770 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,24,19,2031,30485 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,24,19,2031,28700 +Toyota,Tacoma,2017,regular unleaded,159,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,23,19,2031,24120 +Toyota,Tacoma,2017,regular unleaded,278,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,21,17,2031,32390 +Toyota,Tacoma,2017,regular unleaded,159,4,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,22,19,2031,27195 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,33265 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,24,19,2031,31740 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Crew Cab Pickup,23,18,2031,38795 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,four wheel drive,4,N/A,Compact,Extended Cab Pickup,23,18,2031,31875 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,24,19,2031,32240 +Toyota,Tacoma,2017,regular unleaded,278,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,Crew Cab Pickup,24,19,2031,30190 +Chevrolet,Tahoe Hybrid,2011,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,Hybrid,Large,4dr SUV,23,20,1385,51145 +Chevrolet,Tahoe Hybrid,2011,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,Hybrid,Large,4dr SUV,23,20,1385,53950 +Chevrolet,Tahoe Hybrid,2012,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,Hybrid,Large,4dr SUV,23,20,1385,54775 +Chevrolet,Tahoe Hybrid,2012,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,Hybrid,Large,4dr SUV,23,20,1385,51970 +Chevrolet,Tahoe Hybrid,2013,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,1385,56425 +Chevrolet,Tahoe Hybrid,2013,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,1385,53620 +Chevrolet,Tahoe Limited/Z71,2000,regular unleaded,255,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,15,11,1385,3465 +Chevrolet,Tahoe Limited/Z71,2000,regular unleaded,255,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,16,12,1385,3413 +Chevrolet,Tahoe,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,22,16,1385,54505 +Chevrolet,Tahoe,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,1385,61085 +Chevrolet,Tahoe,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,22,16,1385,49300 +Chevrolet,Tahoe,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,4dr SUV,23,16,1385,46300 +Chevrolet,Tahoe,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,4dr SUV,23,16,1385,51505 +Chevrolet,Tahoe,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,16,1385,64085 +Chevrolet,Tahoe,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,16,1385,64740 +Chevrolet,Tahoe,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,4dr SUV,23,16,1385,47000 +Chevrolet,Tahoe,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,22,16,1385,55030 +Chevrolet,Tahoe,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,4dr SUV,23,16,1385,52030 +Chevrolet,Tahoe,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,22,16,1385,50000 +Chevrolet,Tahoe,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,1385,61740 +Chevrolet,Tahoe,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,16,1385,50215 +Chevrolet,Tahoe,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,16,1385,55345 +Chevrolet,Tahoe,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,1385,47215 +Chevrolet,Tahoe,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,1385,62030 +Chevrolet,Tahoe,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,1385,52345 +Chevrolet,Tahoe,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,16,1385,65030 +Ford,Taurus X,2008,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,15,5657,31620 +Ford,Taurus X,2008,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,15,5657,28880 +Ford,Taurus X,2008,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,24,16,5657,29770 +Ford,Taurus X,2008,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,24,16,5657,27030 +Ford,Taurus X,2008,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,15,5657,32600 +Ford,Taurus X,2008,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,24,16,5657,30750 +Ford,Taurus X,2009,regular unleaded,263,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,24,17,5657,32325 +Ford,Taurus X,2009,regular unleaded,263,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,15,5657,33180 +Ford,Taurus X,2009,regular unleaded,263,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,15,5657,34175 +Ford,Taurus X,2009,regular unleaded,263,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,24,17,5657,31330 +Ford,Taurus X,2009,regular unleaded,263,6,AUTOMATIC,all wheel drive,4,Crossover,Large,Wagon,22,15,5657,30120 +Ford,Taurus X,2009,regular unleaded,263,6,AUTOMATIC,front wheel drive,4,Crossover,Large,Wagon,24,17,5657,28270 +Ford,Taurus,2015,flex-fuel (unleaded/E85),288,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,29,19,5657,29485 +Ford,Taurus,2015,flex-fuel (unleaded/E85),288,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,29,19,5657,27055 +Ford,Taurus,2015,premium unleaded (recommended),365,6,AUTOMATIC,all wheel drive,4,"Factory Tuner,High-Performance",Large,Sedan,25,17,5657,40220 +Ford,Taurus,2015,flex-fuel (unleaded/E85),288,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Large,Sedan,26,18,5657,31335 +Ford,Taurus,2015,flex-fuel (unleaded/E85),288,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Large,Sedan,26,18,5657,36255 +Ford,Taurus,2015,flex-fuel (unleaded/E85),288,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,29,19,5657,34405 +Ford,Taurus,2016,flex-fuel (unleaded/E85),288,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,27,18,5657,29540 +Ford,Taurus,2016,flex-fuel (unleaded/E85),288,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,27,18,5657,34460 +Ford,Taurus,2016,flex-fuel (unleaded/E85),288,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,27,18,5657,27110 +Ford,Taurus,2016,flex-fuel (unleaded/E85),288,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Large,Sedan,24,17,5657,31390 +Ford,Taurus,2016,premium unleaded (recommended),365,6,AUTOMATIC,all wheel drive,4,"Factory Tuner,High-Performance",Large,Sedan,24,16,5657,40275 +Ford,Taurus,2016,flex-fuel (unleaded/E85),288,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Large,Sedan,24,17,5657,36310 +Ford,Taurus,2017,flex-fuel (unleaded/E85),288,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,27,18,5657,36855 +Ford,Taurus,2017,flex-fuel (unleaded/E85),288,6,AUTOMATIC,front wheel drive,4,"Flex Fuel,Performance",Large,Sedan,27,18,5657,29775 +Ford,Taurus,2017,premium unleaded (recommended),365,6,AUTOMATIC,all wheel drive,4,"Factory Tuner,High-Performance",Large,Sedan,24,16,5657,42520 +Ford,Taurus,2017,flex-fuel (unleaded/E85),288,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Large,Sedan,24,17,5657,31625 +Ford,Taurus,2017,flex-fuel (unleaded/E85),288,6,AUTOMATIC,all wheel drive,4,"Flex Fuel,Performance",Large,Sedan,24,17,5657,38705 +Ford,Taurus,2017,flex-fuel (unleaded/E85),288,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Large,Sedan,27,18,5657,27345 +Chrysler,TC,1990,regular unleaded,141,6,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,22,15,1013,2000 +Chrysler,TC,1990,regular unleaded,200,4,MANUAL,front wheel drive,2,Performance,Compact,Convertible,23,16,1013,2000 +Chrysler,TC,1991,regular unleaded,141,6,AUTOMATIC,front wheel drive,2,Luxury,Compact,Convertible,22,16,1013,2000 +Scion,tC,2014,regular unleaded,179,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,23,105,21400 +Scion,tC,2014,regular unleaded,179,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,23,105,21440 +Scion,tC,2014,regular unleaded,179,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,23,105,22440 +Scion,tC,2014,regular unleaded,179,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,23,105,22400 +Scion,tC,2014,regular unleaded,179,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,23,105,20210 +Scion,tC,2014,regular unleaded,179,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,23,105,19210 +Scion,tC,2015,regular unleaded,179,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,23,105,19210 +Scion,tC,2015,regular unleaded,179,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,23,105,20360 +Scion,tC,2015,regular unleaded,179,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,23,105,24340 +Scion,tC,2015,regular unleaded,179,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,23,105,23190 +Scion,tC,2016,regular unleaded,179,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,23,105,19385 +Scion,tC,2016,regular unleaded,179,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,23,105,23190 +Scion,tC,2016,regular unleaded,179,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,23,105,24340 +Scion,tC,2016,regular unleaded,179,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,31,23,105,20535 +Ford,Tempo,1992,regular unleaded,96,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,21,5657,2000 +Ford,Tempo,1992,regular unleaded,96,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,21,5657,2000 +Ford,Tempo,1992,regular unleaded,140,6,MANUAL,front wheel drive,2,N/A,Compact,Coupe,26,19,5657,2000 +Ford,Tempo,1992,regular unleaded,96,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,21,5657,2000 +Ford,Tempo,1992,regular unleaded,140,6,MANUAL,front wheel drive,4,N/A,Compact,Sedan,26,19,5657,2000 +Ford,Tempo,1993,regular unleaded,96,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,21,5657,2000 +Ford,Tempo,1993,regular unleaded,96,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,21,5657,2000 +Ford,Tempo,1993,regular unleaded,96,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,21,5657,2000 +Ford,Tempo,1994,regular unleaded,96,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,21,5657,2000 +Ford,Tempo,1994,regular unleaded,96,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,30,21,5657,2000 +Ford,Tempo,1994,regular unleaded,96,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,30,21,5657,2000 +Toyota,Tercel,1996,regular unleaded,93,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,27,2031,2000 +Toyota,Tercel,1996,regular unleaded,93,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,27,2031,2000 +Toyota,Tercel,1996,regular unleaded,93,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,36,29,2031,2000 +Toyota,Tercel,1997,regular unleaded,93,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,28,2031,2012 +Toyota,Tercel,1997,regular unleaded,93,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,35,28,2031,2041 +Toyota,Tercel,1997,regular unleaded,93,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,28,2031,2000 +Toyota,Tercel,1998,regular unleaded,93,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,35,27,2031,2148 +GMC,Terrain,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,549,24070 +GMC,Terrain,2015,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,20,549,37240 +GMC,Terrain,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,549,33065 +GMC,Terrain,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,549,29820 +GMC,Terrain,2015,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,20,549,28310 +GMC,Terrain,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,549,26560 +GMC,Terrain,2015,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,20,549,34815 +GMC,Terrain,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,549,35490 +GMC,Terrain,2015,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,20,549,29810 +GMC,Terrain,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,549,28060 +GMC,Terrain,2015,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,20,549,31570 +GMC,Terrain,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,549,28300 +GMC,Terrain,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,549,33975 +GMC,Terrain,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,549,23975 +GMC,Terrain,2016,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,20,549,28550 +GMC,Terrain,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,549,30620 +GMC,Terrain,2016,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,20,549,35725 +GMC,Terrain,2016,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,32,22,549,26800 +GMC,Terrain,2016,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,20,549,32370 +GMC,Terrain,2016,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,29,20,549,30050 +GMC,Terrain,2017,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,28,20,549,29050 +GMC,Terrain,2017,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,21,549,28800 +GMC,Terrain,2017,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,28,20,549,36025 +GMC,Terrain,2017,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,21,549,34275 +GMC,Terrain,2017,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,21,549,27300 +GMC,Terrain,2017,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,28,20,549,30550 +GMC,Terrain,2017,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,21,549,30920 +GMC,Terrain,2017,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,21,549,24070 +GMC,Terrain,2017,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,28,20,549,32670 +Buick,Terraza,2005,regular unleaded,200,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,21,15,155,30990 +Buick,Terraza,2005,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,155,31170 +Buick,Terraza,2005,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,155,28110 +Buick,Terraza,2005,regular unleaded,200,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,21,15,155,33855 +Buick,Terraza,2006,regular unleaded,196,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,21,15,155,33250 +Buick,Terraza,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,155,27250 +Buick,Terraza,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,155,29750 +Buick,Terraza,2006,regular unleaded,196,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,21,15,155,30250 +Buick,Terraza,2007,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,23,16,155,30780 +Buick,Terraza,2007,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,23,16,155,28000 +Buick,Terraza,2007,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,23,16,155,26660 +Ford,Thunderbird,2003,premium unleaded (required),280,8,AUTOMATIC,rear wheel drive,2,Performance,Midsize,Convertible,22,16,5657,40355 +Ford,Thunderbird,2003,premium unleaded (required),280,8,AUTOMATIC,rear wheel drive,2,Performance,Midsize,Convertible,22,16,5657,36815 +Ford,Thunderbird,2003,premium unleaded (required),280,8,AUTOMATIC,rear wheel drive,2,Performance,Midsize,Convertible,22,16,5657,37855 +Ford,Thunderbird,2003,premium unleaded (required),280,8,AUTOMATIC,rear wheel drive,2,Performance,Midsize,Convertible,22,16,5657,39310 +Ford,Thunderbird,2004,premium unleaded (required),280,8,AUTOMATIC,rear wheel drive,2,Performance,Midsize,Convertible,21,15,5657,37435 +Ford,Thunderbird,2004,premium unleaded (required),280,8,AUTOMATIC,rear wheel drive,2,Performance,Midsize,Convertible,21,15,5657,38480 +Ford,Thunderbird,2005,premium unleaded (required),280,8,AUTOMATIC,rear wheel drive,2,Performance,Midsize,Convertible,22,16,5657,38355 +Ford,Thunderbird,2005,premium unleaded (required),280,8,AUTOMATIC,rear wheel drive,2,Performance,Midsize,Convertible,22,16,5657,39415 +Hyundai,Tiburon,2006,regular unleaded,138,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,27,19,1439,17095 +Hyundai,Tiburon,2006,regular unleaded,172,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,24,17,1439,18595 +Hyundai,Tiburon,2006,regular unleaded,172,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,24,16,1439,20595 +Hyundai,Tiburon,2006,regular unleaded,138,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,21,1439,16095 +Hyundai,Tiburon,2006,regular unleaded,172,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,24,17,1439,21595 +Hyundai,Tiburon,2006,regular unleaded,172,6,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,24,17,1439,19595 +Hyundai,Tiburon,2006,regular unleaded,172,6,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,24,17,1439,21195 +Hyundai,Tiburon,2007,regular unleaded,172,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,24,16,1439,22095 +Hyundai,Tiburon,2007,regular unleaded,172,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,24,17,1439,19395 +Hyundai,Tiburon,2007,regular unleaded,138,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,27,20,1439,17795 +Hyundai,Tiburon,2007,regular unleaded,172,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,24,17,1439,21695 +Hyundai,Tiburon,2007,regular unleaded,172,6,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,24,17,1439,22795 +Hyundai,Tiburon,2007,regular unleaded,138,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,1439,16695 +Hyundai,Tiburon,2007,regular unleaded,172,6,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,23,20,1439,20495 +Hyundai,Tiburon,2008,regular unleaded,138,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,27,20,1439,18370 +Hyundai,Tiburon,2008,regular unleaded,172,6,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,24,17,1439,21270 +Hyundai,Tiburon,2008,regular unleaded,172,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,24,17,1439,22620 +Hyundai,Tiburon,2008,regular unleaded,172,6,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,24,17,1439,20170 +Hyundai,Tiburon,2008,regular unleaded,138,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,28,20,1439,17270 +Hyundai,Tiburon,2008,regular unleaded,172,6,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,24,17,1439,22770 +Volkswagen,Tiguan,2015,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,20,873,30225 +Volkswagen,Tiguan,2015,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,20,873,28230 +Volkswagen,Tiguan,2015,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,20,873,33235 +Volkswagen,Tiguan,2015,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,26,21,873,37650 +Volkswagen,Tiguan,2015,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,20,873,39625 +Volkswagen,Tiguan,2015,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,26,21,873,26255 +Volkswagen,Tiguan,2015,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,20,873,35565 +Volkswagen,Tiguan,2015,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,26,21,873,33590 +Volkswagen,Tiguan,2015,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,26,21,873,31260 +Volkswagen,Tiguan,2015,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,26,21,873,28250 +Volkswagen,Tiguan,2016,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,26,21,873,24890 +Volkswagen,Tiguan,2016,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,20,873,36420 +Volkswagen,Tiguan,2016,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,20,873,33365 +Volkswagen,Tiguan,2016,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,26,21,873,28700 +Volkswagen,Tiguan,2016,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,20,873,26865 +Volkswagen,Tiguan,2016,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,26,21,873,31390 +Volkswagen,Tiguan,2016,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,26,21,873,34445 +Volkswagen,Tiguan,2016,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,20,873,30675 +Volkswagen,Tiguan,2017,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,24,20,873,30095 +Volkswagen,Tiguan,2017,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,20,873,32070 +Volkswagen,Tiguan,2017,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,20,873,26970 +Volkswagen,Tiguan,2017,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,20,873,34580 +Volkswagen,Tiguan,2017,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,24,20,873,24995 +Volkswagen,Tiguan,2017,premium unleaded (recommended),200,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,20,873,36475 +Volkswagen,Tiguan,2017,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,24,20,873,34500 +Volkswagen,Tiguan,2017,premium unleaded (recommended),200,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,24,20,873,32605 +Nissan,Titan,2014,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,12,2009,39780 +Nissan,Titan,2014,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,2009,34440 +Nissan,Titan,2014,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,12,2009,37580 +Nissan,Titan,2014,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,2009,31910 +Nissan,Titan,2014,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,12,2009,34760 +Nissan,Titan,2014,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,2009,29360 +Nissan,Titan,2014,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,2009,33990 +Nissan,Titan,2014,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,12,2009,37320 +Nissan,Titan,2014,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,12,2009,43280 +Nissan,Titan,2014,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,12,2009,34640 +Nissan,Titan,2014,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,2009,40580 +Nissan,Titan,2014,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,12,2009,32210 +Nissan,Titan,2014,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,2009,31790 +Nissan,Titan,2014,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,12,2009,36840 +Nissan,Titan,2015,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,2009,41160 +Nissan,Titan,2015,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,12,2009,32490 +Nissan,Titan,2015,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,2009,32060 +Nissan,Titan,2015,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,12,2009,34910 +Nissan,Titan,2015,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,2009,31940 +Nissan,Titan,2015,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,12,2009,38170 +Nissan,Titan,2015,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,2009,34140 +Nissan,Titan,2015,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,12,2009,34790 +Nissan,Titan,2015,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,12,2009,40370 +Nissan,Titan,2015,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,12,2009,43860 +Nissan,Titan,2015,regular unleaded,317,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,2009,29640 +Nissan,Titan,2015,regular unleaded,317,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,12,2009,36990 +Nissan,Titan,2017,regular unleaded,390,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2009,37670 +Nissan,Titan,2017,regular unleaded,390,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2009,40700 +Nissan,Titan,2017,regular unleaded,390,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2009,37810 +Nissan,Titan,2017,regular unleaded,390,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,20,15,2009,45020 +Nissan,Titan,2017,regular unleaded,390,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2009,49460 +Nissan,Titan,2017,regular unleaded,390,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2009,55400 +Nissan,Titan,2017,regular unleaded,390,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2009,46380 +Nissan,Titan,2017,regular unleaded,390,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2009,52310 +Nissan,Titan,2017,regular unleaded,390,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,21,15,2009,34780 +Acura,TL,2012,premium unleaded (required),305,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,18,204,42985 +Acura,TL,2012,premium unleaded (required),280,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,204,41635 +Acura,TL,2012,premium unleaded (required),305,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,18,204,39255 +Acura,TL,2012,premium unleaded (required),305,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,18,204,45185 +Acura,TL,2012,premium unleaded (required),280,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,29,20,204,35705 +Acura,TL,2012,premium unleaded (required),305,6,MANUAL,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,25,17,204,42985 +Acura,TL,2012,premium unleaded (required),280,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,29,20,204,39435 +Acura,TL,2013,premium unleaded (recommended),280,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,204,39635 +Acura,TL,2013,premium unleaded (recommended),305,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,18,204,45385 +Acura,TL,2013,premium unleaded (recommended),305,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,18,204,39455 +Acura,TL,2013,premium unleaded (recommended),305,6,MANUAL,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,25,17,204,43185 +Acura,TL,2013,premium unleaded (recommended),280,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,204,41835 +Acura,TL,2013,premium unleaded (recommended),305,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,18,204,43185 +Acura,TL,2013,premium unleaded (recommended),280,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,29,20,204,35905 +Acura,TL,2013,premium unleaded (recommended),280,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,204,37405 +Acura,TL,2014,premium unleaded (recommended),280,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,204,37530 +Acura,TL,2014,premium unleaded (recommended),280,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,29,20,204,36030 +Acura,TL,2014,premium unleaded (recommended),305,6,MANUAL,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,25,17,204,43310 +Acura,TL,2014,premium unleaded (recommended),305,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,18,204,39580 +Acura,TL,2014,premium unleaded (recommended),280,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,204,39760 +Acura,TL,2014,premium unleaded (recommended),305,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,18,204,45510 +Acura,TL,2014,premium unleaded (recommended),305,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,26,18,204,43310 +Acura,TL,2014,premium unleaded (recommended),280,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,29,20,204,41960 +Acura,TLX,2015,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,21,204,41575 +Acura,TLX,2015,premium unleaded (recommended),206,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,35,24,204,35500 +Acura,TLX,2015,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,34,21,204,42600 +Acura,TLX,2015,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,34,21,204,39375 +Acura,TLX,2015,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,21,204,44800 +Acura,TLX,2015,premium unleaded (recommended),206,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,35,24,204,31445 +Acura,TLX,2015,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,34,21,204,35320 +Acura,TLX,2016,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,21,204,41575 +Acura,TLX,2016,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,34,21,204,35320 +Acura,TLX,2016,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,34,21,204,42600 +Acura,TLX,2016,premium unleaded (recommended),206,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,35,24,204,35750 +Acura,TLX,2016,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,21,204,44800 +Acura,TLX,2016,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,34,21,204,39375 +Acura,TLX,2016,premium unleaded (recommended),206,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,35,24,204,31695 +Acura,TLX,2017,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,34,21,204,42600 +Acura,TLX,2017,premium unleaded (recommended),206,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,35,24,204,35950 +Acura,TLX,2017,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,21,204,44800 +Acura,TLX,2017,premium unleaded (recommended),206,4,AUTOMATED_MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,35,24,204,31900 +Acura,TLX,2017,premium unleaded (recommended),290,6,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Sedan,31,21,204,41600 +Acura,TLX,2017,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,34,21,204,39400 +Acura,TLX,2017,premium unleaded (recommended),290,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,34,21,204,35350 +Oldsmobile,Toronado,1990,regular unleaded,165,6,AUTOMATIC,front wheel drive,2,N/A,Large,Coupe,24,16,26,2000 +Oldsmobile,Toronado,1990,regular unleaded,165,6,AUTOMATIC,front wheel drive,2,N/A,Large,Coupe,24,16,26,2000 +Oldsmobile,Toronado,1991,regular unleaded,170,6,AUTOMATIC,front wheel drive,2,N/A,Large,Coupe,24,16,26,2000 +Oldsmobile,Toronado,1991,regular unleaded,170,6,AUTOMATIC,front wheel drive,2,N/A,Large,Coupe,24,16,26,2000 +Oldsmobile,Toronado,1992,regular unleaded,170,6,AUTOMATIC,front wheel drive,2,N/A,Large,Coupe,24,16,26,2000 +Oldsmobile,Toronado,1992,regular unleaded,170,6,AUTOMATIC,front wheel drive,2,N/A,Large,Coupe,24,16,26,2000 +Pontiac,Torrent,2007,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,23,17,210,23965 +Pontiac,Torrent,2007,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,24,17,210,22455 +Pontiac,Torrent,2008,regular unleaded,264,6,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Performance",Compact,4dr SUV,24,16,210,29745 +Pontiac,Torrent,2008,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,17,210,25145 +Pontiac,Torrent,2008,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,24,17,210,23520 +Pontiac,Torrent,2008,regular unleaded,264,6,AUTOMATIC,front wheel drive,4,"Crossover,Factory Tuner,Performance",Compact,4dr SUV,24,16,210,28120 +Pontiac,Torrent,2009,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,24,17,210,24820 +Pontiac,Torrent,2009,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,17,210,26815 +Pontiac,Torrent,2009,regular unleaded,264,6,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Performance",Compact,4dr SUV,24,16,210,31415 +Pontiac,Torrent,2009,regular unleaded,264,6,AUTOMATIC,front wheel drive,4,"Crossover,Factory Tuner,Performance",Compact,4dr SUV,24,17,210,29420 +Volkswagen,Touareg 2,2008,premium unleaded (required),350,8,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,17,12,873,48390 +Volkswagen,Touareg 2,2008,premium unleaded (required),280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,20,14,873,39300 +Volkswagen,Touareg 2,2008,diesel,310,10,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,20,15,873,68340 +Volkswagen,Touareg 2,2009,diesel,221,6,AUTOMATIC,all wheel drive,4,"Crossover,Diesel",Midsize,4dr SUV,25,17,873,42800 +Volkswagen,Touareg 2,2009,premium unleaded (recommended),280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,20,14,873,39300 +Volkswagen,Touareg 2,2009,premium unleaded (recommended),350,8,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,18,13,873,48900 +Volkswagen,Touareg,2015,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Diesel",Midsize,4dr SUV,29,20,873,62200 +Volkswagen,Touareg,2015,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Diesel",Midsize,4dr SUV,29,20,873,56670 +Volkswagen,Touareg,2015,premium unleaded (recommended),280,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,23,17,873,53170 +Volkswagen,Touareg,2015,premium unleaded (recommended),280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,17,873,48745 +Volkswagen,Touareg,2015,premium unleaded (recommended),280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,17,873,44705 +Volkswagen,Touareg,2015,premium unleaded (recommended),280,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,23,17,873,58700 +Volkswagen,Touareg,2015,premium unleaded (recommended),380,6,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Midsize,4dr SUV,24,20,873,66995 +Volkswagen,Touareg,2015,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Diesel",Midsize,4dr SUV,29,20,873,52245 +Volkswagen,Touareg,2016,premium unleaded (recommended),280,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,23,17,873,51450 +Volkswagen,Touareg,2016,premium unleaded (recommended),280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,17,873,46745 +Volkswagen,Touareg,2016,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Diesel",Midsize,4dr SUV,29,21,873,54950 +Volkswagen,Touareg,2016,premium unleaded (recommended),280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,17,873,42705 +Volkswagen,Touareg,2016,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Diesel",Midsize,4dr SUV,29,21,873,63245 +Volkswagen,Touareg,2016,premium unleaded (recommended),280,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,23,17,873,59745 +Volkswagen,Touareg,2016,diesel,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Diesel",Midsize,4dr SUV,29,21,873,50245 +Volkswagen,Touareg,2017,premium unleaded (recommended),280,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,17,873,49495 +Volkswagen,Touareg,2017,premium unleaded (recommended),280,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,23,17,873,52795 +Volkswagen,Touareg,2017,premium unleaded (recommended),280,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,4dr SUV,23,17,873,60195 +Chrysler,Town and Country,2014,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,32995 +Chrysler,Town and Country,2014,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,30765 +Chrysler,Town and Country,2014,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,41995 +Chrysler,Town and Country,2014,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,34465 +Chrysler,Town and Country,2015,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,29995 +Chrysler,Town and Country,2015,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,37945 +Chrysler,Town and Country,2015,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,35315 +Chrysler,Town and Country,2015,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,33695 +Chrysler,Town and Country,2015,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,40295 +Chrysler,Town and Country,2015,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,31465 +Chrysler,Town and Country,2016,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,35845 +Chrysler,Town and Country,2016,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,34145 +Chrysler,Town and Country,2016,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,40645 +Chrysler,Town and Country,2016,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,29995 +Chrysler,Town and Country,2016,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,38445 +Chrysler,Town and Country,2016,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,37345 +Chrysler,Town and Country,2016,flex-fuel (unleaded/E85),283,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,25,17,1013,31875 +Lincoln,Town Car,2009,flex-fuel (unleaded/E85),239,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury",Large,Sedan,24,16,61,52055 +Lincoln,Town Car,2009,flex-fuel (unleaded/E85),239,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury",Large,Sedan,24,16,61,46385 +Lincoln,Town Car,2010,flex-fuel (unleaded/E85),239,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury",Large,Sedan,24,16,61,52595 +Lincoln,Town Car,2010,flex-fuel (unleaded/E85),239,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury",Large,Sedan,24,16,61,46925 +Lincoln,Town Car,2011,flex-fuel (unleaded/E85),239,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury",Large,Sedan,24,16,61,47225 +Lincoln,Town Car,2011,flex-fuel (unleaded/E85),239,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury",Large,Sedan,24,16,61,47000 +Lincoln,Town Car,2011,flex-fuel (unleaded/E85),239,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury",Large,Sedan,24,16,61,52895 +Lincoln,Town Car,2011,flex-fuel (unleaded/E85),239,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Luxury",Large,Sedan,24,16,61,52670 +Chevrolet,Tracker,2002,regular unleaded,127,4,MANUAL,four wheel drive,2,N/A,Compact,Convertible SUV,23,20,1385,19060 +Chevrolet,Tracker,2002,regular unleaded,127,4,MANUAL,rear wheel drive,4,N/A,Compact,4dr SUV,24,20,1385,16790 +Chevrolet,Tracker,2002,regular unleaded,127,4,MANUAL,four wheel drive,4,N/A,Compact,4dr SUV,23,20,1385,17890 +Chevrolet,Tracker,2002,regular unleaded,155,6,AUTOMATIC,four wheel drive,4,N/A,Compact,4dr SUV,19,16,1385,21510 +Chevrolet,Tracker,2002,regular unleaded,127,4,MANUAL,four wheel drive,2,N/A,Compact,Convertible SUV,23,20,1385,17200 +Chevrolet,Tracker,2002,regular unleaded,155,6,AUTOMATIC,four wheel drive,4,N/A,Compact,4dr SUV,19,16,1385,21935 +Chevrolet,Tracker,2002,regular unleaded,127,4,MANUAL,rear wheel drive,2,N/A,Compact,Convertible SUV,24,20,1385,16100 +Chevrolet,Tracker,2002,regular unleaded,155,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,4dr SUV,19,17,1385,20835 +Chevrolet,Tracker,2003,regular unleaded,165,6,AUTOMATIC,four wheel drive,4,N/A,Compact,4dr SUV,19,16,1385,22530 +Chevrolet,Tracker,2003,regular unleaded,165,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,4dr SUV,19,17,1385,21430 +Chevrolet,Tracker,2003,regular unleaded,127,4,MANUAL,four wheel drive,2,N/A,Compact,Convertible SUV,23,20,1385,17730 +Chevrolet,Tracker,2003,regular unleaded,127,4,MANUAL,rear wheel drive,2,N/A,Compact,Convertible SUV,24,20,1385,16630 +Chevrolet,Tracker,2003,regular unleaded,127,4,MANUAL,rear wheel drive,4,N/A,Compact,4dr SUV,24,20,1385,17330 +Chevrolet,Tracker,2003,regular unleaded,127,4,MANUAL,four wheel drive,4,N/A,Compact,4dr SUV,23,20,1385,18430 +Chevrolet,Tracker,2003,regular unleaded,165,6,AUTOMATIC,four wheel drive,4,N/A,Compact,4dr SUV,19,16,1385,22130 +Chevrolet,Tracker,2003,regular unleaded,127,4,MANUAL,four wheel drive,2,N/A,Compact,Convertible SUV,23,20,1385,19580 +Chevrolet,Tracker,2004,regular unleaded,165,6,AUTOMATIC,four wheel drive,4,N/A,Compact,4dr SUV,20,17,1385,22315 +Chevrolet,Tracker,2004,regular unleaded,165,6,AUTOMATIC,four wheel drive,4,N/A,Compact,4dr SUV,20,17,1385,22715 +Chevrolet,Tracker,2004,regular unleaded,165,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,4dr SUV,20,17,1385,21615 +Chevrolet,Tracker,2004,regular unleaded,165,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,4dr SUV,20,17,1385,19865 +Chevrolet,Tracker,2004,regular unleaded,165,6,AUTOMATIC,four wheel drive,4,N/A,Compact,4dr SUV,20,17,1385,20965 +Chevrolet,TrailBlazer EXT,2004,regular unleaded,275,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,19,14,1385,32320 +Chevrolet,TrailBlazer EXT,2004,regular unleaded,275,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,19,14,1385,34220 +Chevrolet,TrailBlazer EXT,2004,regular unleaded,275,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,18,13,1385,30070 +Chevrolet,TrailBlazer EXT,2004,regular unleaded,275,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,18,13,1385,31970 +Chevrolet,TrailBlazer EXT,2005,regular unleaded,275,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,12,1385,32515 +Chevrolet,TrailBlazer EXT,2005,regular unleaded,275,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,18,13,1385,30265 +Chevrolet,TrailBlazer EXT,2005,regular unleaded,275,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,17,12,1385,30335 +Chevrolet,TrailBlazer EXT,2005,regular unleaded,275,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,18,13,1385,28085 +Chevrolet,TrailBlazer EXT,2006,regular unleaded,291,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,19,14,1385,27980 +Chevrolet,TrailBlazer EXT,2006,regular unleaded,291,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,19,14,1385,30230 +Chevrolet,TrailBlazer EXT,2006,regular unleaded,291,6,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,19,14,1385,28130 +Chevrolet,TrailBlazer EXT,2006,regular unleaded,291,6,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,19,14,1385,25880 +Chevrolet,TrailBlazer,2007,regular unleaded,291,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,25045 +Chevrolet,TrailBlazer,2007,premium unleaded (required),395,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Performance",Midsize,4dr SUV,17,13,1385,34885 +Chevrolet,TrailBlazer,2007,premium unleaded (required),395,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Performance",Midsize,4dr SUV,16,12,1385,33620 +Chevrolet,TrailBlazer,2007,regular unleaded,291,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,27340 +Chevrolet,TrailBlazer,2007,premium unleaded (required),395,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Performance",Midsize,4dr SUV,16,12,1385,37125 +Chevrolet,TrailBlazer,2007,premium unleaded (required),395,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Performance",Midsize,4dr SUV,17,13,1385,31320 +Chevrolet,TrailBlazer,2007,regular unleaded,291,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,27970 +Chevrolet,TrailBlazer,2007,regular unleaded,291,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,30210 +Chevrolet,TrailBlazer,2008,regular unleaded,285,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,26390 +Chevrolet,TrailBlazer,2008,regular unleaded,285,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,28525 +Chevrolet,TrailBlazer,2008,regular unleaded,285,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,29880 +Chevrolet,TrailBlazer,2008,regular unleaded,285,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,29535 +Chevrolet,TrailBlazer,2008,regular unleaded,285,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,27745 +Chevrolet,TrailBlazer,2008,regular unleaded,285,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,31910 +Chevrolet,TrailBlazer,2008,premium unleaded (required),390,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Performance",Midsize,4dr SUV,16,12,1385,32155 +Chevrolet,TrailBlazer,2008,regular unleaded,285,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,31810 +Chevrolet,TrailBlazer,2008,premium unleaded (required),390,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Performance",Midsize,4dr SUV,16,12,1385,34290 +Chevrolet,TrailBlazer,2008,premium unleaded (required),390,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Performance",Midsize,4dr SUV,16,12,1385,37725 +Chevrolet,TrailBlazer,2008,regular unleaded,285,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,27400 +Chevrolet,TrailBlazer,2008,premium unleaded (required),390,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Performance",Midsize,4dr SUV,16,12,1385,35590 +Chevrolet,TrailBlazer,2008,regular unleaded,285,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,33945 +Chevrolet,TrailBlazer,2008,regular unleaded,285,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,29780 +Chevrolet,TrailBlazer,2009,regular unleaded,285,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,35770 +Chevrolet,TrailBlazer,2009,regular unleaded,285,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,31330 +Chevrolet,TrailBlazer,2009,premium unleaded (recommended),390,8,AUTOMATIC,all wheel drive,4,"Factory Tuner,Performance",Midsize,4dr SUV,16,12,1385,39330 +Chevrolet,TrailBlazer,2009,regular unleaded,285,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,31275 +Chevrolet,TrailBlazer,2009,regular unleaded,285,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,33595 +Chevrolet,TrailBlazer,2009,premium unleaded (recommended),390,8,AUTOMATIC,rear wheel drive,4,"Factory Tuner,Performance",Midsize,4dr SUV,16,12,1385,37195 +Chevrolet,TrailBlazer,2009,regular unleaded,285,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,33445 +Chevrolet,TrailBlazer,2009,regular unleaded,285,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,20,14,1385,29155 +Pontiac,Trans Sport,1996,regular unleaded,180,6,AUTOMATIC,front wheel drive,3,N/A,Compact,Passenger Minivan,24,17,210,2000 +Pontiac,Trans Sport,1997,regular unleaded,180,6,AUTOMATIC,front wheel drive,3,N/A,Midsize,Passenger Minivan,23,16,210,2000 +Pontiac,Trans Sport,1997,regular unleaded,180,6,AUTOMATIC,front wheel drive,3,N/A,Compact,Passenger Minivan,23,16,210,2000 +Pontiac,Trans Sport,1998,regular unleaded,180,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,23,16,210,2000 +Pontiac,Trans Sport,1998,regular unleaded,180,6,AUTOMATIC,front wheel drive,3,N/A,Compact,Passenger Minivan,23,16,210,2000 +Pontiac,Trans Sport,1998,regular unleaded,180,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,210,2038 +Pontiac,Trans Sport,1998,regular unleaded,180,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,210,2104 +Ford,Transit Connect,2015,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,20,5657,26710 +Ford,Transit Connect,2015,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,23330 +Ford,Transit Connect,2015,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,20,5657,25185 +Ford,Transit Connect,2015,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,22330 +Ford,Transit Connect,2015,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,20,5657,24710 +Ford,Transit Connect,2015,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,22330 +Ford,Transit Connect,2015,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,23855 +Ford,Transit Connect,2015,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,24855 +Ford,Transit Connect,2015,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,20,5657,26710 +Ford,Transit Connect,2015,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,20,5657,29185 +Ford,Transit Connect,2015,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,20,5657,25185 +Ford,Transit Connect,2015,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,24855 +Ford,Transit Connect,2015,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,23330 +Ford,Transit Connect,2015,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,20,5657,24710 +Ford,Transit Connect,2015,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,23855 +Ford,Transit Connect,2016,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,22675 +Ford,Transit Connect,2016,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,20,5657,25300 +Ford,Transit Connect,2016,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,20,5657,24825 +Ford,Transit Connect,2016,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,20,5657,26825 +Ford,Transit Connect,2016,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,20,5657,24825 +Ford,Transit Connect,2016,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,24200 +Ford,Transit Connect,2016,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,20,5657,26825 +Ford,Transit Connect,2016,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,22675 +Ford,Transit Connect,2016,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,20,5657,29300 +Ford,Transit Connect,2016,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,23675 +Ford,Transit Connect,2016,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,28,20,5657,25300 +Ford,Transit Connect,2016,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,24200 +Ford,Transit Connect,2016,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,25200 +Ford,Transit Connect,2016,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,25200 +Ford,Transit Connect,2016,regular unleaded,169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,29,21,5657,23675 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,27,20,5657,23900 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,19,5657,25585 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,19,5657,27590 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,27,20,5657,24425 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,19,5657,30215 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,19,5657,25585 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,27,20,5657,25425 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,19,5657,28215 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,19,5657,25590 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,19,5657,27590 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,27,20,5657,22900 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,27,20,5657,25425 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,27,20,5657,24425 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,27,19,5657,25590 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,27,20,5657,23900 +Ford,Transit Connect,2017,flex-fuel (unleaded/E85),169,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Cargo Minivan,27,20,5657,22900 +Ford,Transit Wagon,2015,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,19,14,5657,35430 +Ford,Transit Wagon,2015,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Large,Passenger Van,19,14,5657,40830 +Ford,Transit Wagon,2015,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Midsize,Passenger Van,19,14,5657,36070 +Ford,Transit Wagon,2015,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,19,14,5657,33920 +Ford,Transit Wagon,2015,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Large,Passenger Van,19,14,5657,39080 +Ford,Transit Wagon,2015,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,19,14,5657,33770 +Ford,Transit Wagon,2015,premium unleaded (recommended),310,6,AUTOMATIC,rear wheel drive,3,Diesel,Large,Passenger Van,19,14,5657,43795 +Ford,Transit Wagon,2015,premium unleaded (recommended),310,6,AUTOMATIC,rear wheel drive,3,Diesel,Large,Passenger Van,19,14,5657,42295 +Ford,Transit Wagon,2015,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,19,14,5657,32270 +Ford,Transit Wagon,2015,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Midsize,Passenger Van,19,14,5657,37420 +Ford,Transit Wagon,2015,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Large,Passenger Van,19,14,5657,37580 +Ford,Transit Wagon,2015,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Midsize,Passenger Van,19,14,5657,37570 +Ford,Transit Wagon,2015,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,19,14,5657,33930 +Ford,Transit Wagon,2015,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,19,14,5657,32420 +Ford,Transit Wagon,2015,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Midsize,Passenger Van,19,14,5657,35920 +Ford,Transit Wagon,2015,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Large,Passenger Van,19,14,5657,39330 +Ford,Transit Wagon,2016,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Midsize,Passenger Van,19,14,5657,36825 +Ford,Transit Wagon,2016,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Large,Passenger Van,19,14,5657,39580 +Ford,Transit Wagon,2016,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,19,14,5657,34635 +Ford,Transit Wagon,2016,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Large,Passenger Van,19,14,5657,39735 +Ford,Transit Wagon,2016,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Midsize,Passenger Van,19,14,5657,36975 +Ford,Transit Wagon,2016,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,19,14,5657,34470 +Ford,Transit Wagon,2016,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Large,Passenger Van,19,14,5657,41030 +Ford,Transit Wagon,2016,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,19,14,5657,34620 +Ford,Transit Wagon,2016,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Midsize,Passenger Van,19,14,5657,38270 +Ford,Transit Wagon,2016,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,19,14,5657,33325 +Ford,Transit Wagon,2016,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Large,Passenger Van,19,14,5657,38285 +Ford,Transit Wagon,2016,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,19,14,5657,33175 +Ford,Transit Wagon,2016,premium unleaded (recommended),310,6,AUTOMATIC,rear wheel drive,3,Diesel,Large,Passenger Van,19,14,5657,43995 +Ford,Transit Wagon,2016,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,19,14,5657,35930 +Ford,Transit Wagon,2016,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,"Flex Fuel,Diesel",Midsize,Passenger Van,19,14,5657,38120 +Ford,Transit Wagon,2016,premium unleaded (recommended),310,6,AUTOMATIC,rear wheel drive,3,Diesel,Large,Passenger Van,19,14,5657,42700 +Ford,Transit Wagon,2017,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,19,14,5657,34515 +Ford,Transit Wagon,2017,regular unleaded,275,6,AUTOMATIC,rear wheel drive,3,Diesel,Midsize,Passenger Van,19,14,5657,38015 +Ford,Transit Wagon,2017,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,19,14,5657,34365 +Ford,Transit Wagon,2017,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,19,14,5657,35810 +Ford,Transit Wagon,2017,regular unleaded,275,6,AUTOMATIC,rear wheel drive,3,Diesel,Midsize,Passenger Van,19,14,5657,39310 +Ford,Transit Wagon,2017,regular unleaded,275,6,AUTOMATIC,rear wheel drive,3,Diesel,Large,Passenger Van,19,14,5657,40770 +Ford,Transit Wagon,2017,regular unleaded,275,6,AUTOMATIC,rear wheel drive,3,Diesel,Large,Passenger Van,19,14,5657,42075 +Ford,Transit Wagon,2017,regular unleaded,275,6,AUTOMATIC,rear wheel drive,3,Diesel,Large,Passenger Van,19,14,5657,43370 +Ford,Transit Wagon,2017,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,19,14,5657,37120 +Ford,Transit Wagon,2017,regular unleaded,275,6,AUTOMATIC,rear wheel drive,3,Diesel,Large,Passenger Van,19,14,5657,39475 +Ford,Transit Wagon,2017,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Midsize,Passenger Van,19,14,5657,35660 +Ford,Transit Wagon,2017,flex-fuel (unleaded/E85),275,6,AUTOMATIC,rear wheel drive,3,Flex Fuel,Large,Passenger Van,19,14,5657,35825 +Ford,Transit Wagon,2017,regular unleaded,275,6,AUTOMATIC,rear wheel drive,3,Diesel,Large,Passenger Van,19,14,5657,42220 +Ford,Transit Wagon,2017,regular unleaded,275,6,AUTOMATIC,rear wheel drive,3,Diesel,Midsize,Passenger Van,19,14,5657,39460 +Ford,Transit Wagon,2017,regular unleaded,275,6,AUTOMATIC,rear wheel drive,3,Diesel,Midsize,Passenger Van,19,14,5657,38165 +Ford,Transit Wagon,2017,regular unleaded,275,6,AUTOMATIC,rear wheel drive,3,Diesel,Large,Passenger Van,19,14,5657,40925 +Chevrolet,Traverse,2015,regular unleaded,288,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,16,1385,43935 +Chevrolet,Traverse,2015,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,1385,30995 +Chevrolet,Traverse,2015,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,16,1385,38295 +Chevrolet,Traverse,2015,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,16,1385,32995 +Chevrolet,Traverse,2015,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,1385,33795 +Chevrolet,Traverse,2015,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,16,1385,35795 +Chevrolet,Traverse,2015,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,1385,36295 +Chevrolet,Traverse,2015,regular unleaded,288,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,1385,41935 +Chevrolet,Traverse,2016,regular unleaded,288,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,44145 +Chevrolet,Traverse,2016,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,34005 +Chevrolet,Traverse,2016,regular unleaded,288,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,42145 +Chevrolet,Traverse,2016,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,28700 +Chevrolet,Traverse,2016,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,36505 +Chevrolet,Traverse,2016,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,38505 +Chevrolet,Traverse,2016,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,31205 +Chevrolet,Traverse,2016,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,36005 +Chevrolet,Traverse,2016,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,33205 +Chevrolet,Traverse,2017,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,38650 +Chevrolet,Traverse,2017,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,28700 +Chevrolet,Traverse,2017,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,34100 +Chevrolet,Traverse,2017,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,31300 +Chevrolet,Traverse,2017,regular unleaded,288,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,44045 +Chevrolet,Traverse,2017,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,33300 +Chevrolet,Traverse,2017,regular unleaded,281,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,36100 +Chevrolet,Traverse,2017,regular unleaded,281,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,36650 +Chevrolet,Traverse,2017,regular unleaded,288,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,15,1385,42045 +Chevrolet,Trax,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,26,1385,25030 +Chevrolet,Trax,2015,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,24,1385,26530 +Chevrolet,Trax,2015,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,24,1385,23945 +Chevrolet,Trax,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,26,1385,20120 +Chevrolet,Trax,2015,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,24,1385,21620 +Chevrolet,Trax,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,26,1385,22445 +Chevrolet,Trax,2015,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,26,1385,20040 +Chevrolet,Trax,2015,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,24,1385,21540 +Chevrolet,Trax,2016,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,24,1385,24145 +Chevrolet,Trax,2016,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,24,1385,21800 +Chevrolet,Trax,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,26,1385,25230 +Chevrolet,Trax,2016,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,24,1385,26730 +Chevrolet,Trax,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,26,1385,20300 +Chevrolet,Trax,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,26,1385,22645 +Chevrolet,Trax,2016,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,31,24,1385,21800 +Chevrolet,Trax,2016,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,34,26,1385,20300 +Chevrolet,Trax,2017,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,24,1385,24400 +Chevrolet,Trax,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,1385,26100 +Chevrolet,Trax,2017,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,24,1385,27600 +Chevrolet,Trax,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,1385,22900 +Chevrolet,Trax,2017,regular unleaded,138,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,30,24,1385,22500 +Chevrolet,Trax,2017,regular unleaded,138,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,33,25,1385,21000 +Subaru,Tribeca,2012,regular unleaded,256,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,35895 +Subaru,Tribeca,2012,regular unleaded,256,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,30595 +Subaru,Tribeca,2012,regular unleaded,256,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,32595 +Subaru,Tribeca,2013,regular unleaded,256,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,32595 +Subaru,Tribeca,2014,regular unleaded,256,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,640,34095 +Mazda,Tribute Hybrid,2008,regular unleaded,133,4,AUTOMATIC,front wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,30,34,586,27995 +Mazda,Tribute Hybrid,2008,regular unleaded,133,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,27,29,586,27235 +Mazda,Tribute Hybrid,2008,regular unleaded,133,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,27,29,586,29745 +Mazda,Tribute Hybrid,2008,regular unleaded,133,4,AUTOMATIC,front wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,30,34,586,25485 +Mazda,Tribute Hybrid,2009,regular unleaded,177,4,AUTOMATIC,front wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,31,34,586,29175 +Mazda,Tribute Hybrid,2009,regular unleaded,177,4,AUTOMATIC,front wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,31,34,586,31695 +Mazda,Tribute Hybrid,2009,regular unleaded,177,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,27,29,586,30925 +Mazda,Tribute Hybrid,2009,regular unleaded,177,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,27,29,586,33445 +Mazda,Tribute,2009,regular unleaded,171,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,25,19,586,23545 +Mazda,Tribute,2009,regular unleaded,171,4,MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,28,22,586,19730 +Mazda,Tribute,2009,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,26,18,586,25885 +Mazda,Tribute,2009,regular unleaded,171,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,20,586,24620 +Mazda,Tribute,2009,regular unleaded,240,6,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,17,586,24805 +Mazda,Tribute,2009,regular unleaded,171,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,25,19,586,24690 +Mazda,Tribute,2009,regular unleaded,171,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,25,19,586,26375 +Mazda,Tribute,2009,regular unleaded,240,6,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,17,586,25950 +Mazda,Tribute,2009,regular unleaded,171,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,20,586,22935 +Mazda,Tribute,2009,regular unleaded,171,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,20,586,21790 +Mazda,Tribute,2009,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,26,18,586,24200 +Mazda,Tribute,2009,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,26,18,586,23055 +Mazda,Tribute,2009,regular unleaded,240,6,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,24,17,586,27635 +Mazda,Tribute,2010,regular unleaded,171,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,20,586,24200 +Mazda,Tribute,2010,regular unleaded,171,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,20,586,27305 +Mazda,Tribute,2010,regular unleaded,171,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,21,586,23590 +Mazda,Tribute,2010,regular unleaded,171,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,21,586,25550 +Mazda,Tribute,2010,regular unleaded,171,4,MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,28,22,586,20405 +Mazda,Tribute,2010,regular unleaded,171,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,21,586,22445 +Mazda,Tribute,2010,flex-fuel (unleaded/E85),240,6,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Compact,4dr SUV,25,19,586,27165 +Mazda,Tribute,2010,flex-fuel (unleaded/E85),240,6,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel",Compact,4dr SUV,23,18,586,28915 +Mazda,Tribute,2010,regular unleaded,171,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,20,586,25345 +Mazda,Tribute,2011,regular unleaded,171,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,21,586,25700 +Mazda,Tribute,2011,regular unleaded,171,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,20,586,25495 +Mazda,Tribute,2011,regular unleaded,171,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,21,586,23740 +Mazda,Tribute,2011,flex-fuel (unleaded/E85),240,6,AUTOMATIC,all wheel drive,4,"Crossover,Flex Fuel",Compact,4dr SUV,23,18,586,29065 +Mazda,Tribute,2011,regular unleaded,171,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,21,586,22595 +Mazda,Tribute,2011,regular unleaded,171,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,20,586,24350 +Mazda,Tribute,2011,regular unleaded,171,4,MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,28,23,586,20555 +Mazda,Tribute,2011,regular unleaded,171,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,20,586,27455 +Mazda,Tribute,2011,flex-fuel (unleaded/E85),240,6,AUTOMATIC,front wheel drive,4,"Crossover,Flex Fuel",Compact,4dr SUV,25,19,586,27315 +Mazda,Truck,2002,regular unleaded,135,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,25,21,586,12840 +Mazda,Truck,2002,regular unleaded,207,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,16,586,19885 +Mazda,Truck,2002,regular unleaded,147,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,21,17,586,18090 +Mazda,Truck,2002,regular unleaded,207,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,18,14,586,22630 +Mazda,Truck,2002,regular unleaded,147,6,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,21,17,586,15670 +Mazda,Truck,2002,regular unleaded,147,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,20,16,586,20575 +Mazda,Truck,2003,regular unleaded,207,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,17,14,586,21410 +Mazda,Truck,2003,regular unleaded,207,6,MANUAL,four wheel drive,4,N/A,Compact,Extended Cab Pickup,17,14,586,23150 +Mazda,Truck,2003,regular unleaded,147,6,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,21,17,586,16975 +Mazda,Truck,2003,regular unleaded,147,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,21,17,586,19215 +Mazda,Truck,2003,regular unleaded,135,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,26,21,586,13930 +Mazda,Truck,2003,regular unleaded,207,6,MANUAL,rear wheel drive,4,N/A,Compact,Extended Cab Pickup,20,15,586,20880 +Mazda,Truck,2003,regular unleaded,147,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,21,17,586,18885 +Mazda,Truck,2003,regular unleaded,135,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,26,21,586,18050 +Mazda,Truck,2003,regular unleaded,207,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,17,14,586,19975 +Nissan,Truck,1995,regular unleaded,134,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,24,19,2009,2000 +Nissan,Truck,1995,regular unleaded,153,6,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,20,16,2009,2121 +Nissan,Truck,1995,regular unleaded,134,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,24,19,2009,2000 +Nissan,Truck,1995,regular unleaded,134,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,24,19,2009,2000 +Nissan,Truck,1995,regular unleaded,153,6,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,20,16,2009,2000 +Nissan,Truck,1995,regular unleaded,134,4,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,19,16,2009,2281 +Nissan,Truck,1995,regular unleaded,153,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,17,14,2009,2436 +Nissan,Truck,1995,regular unleaded,153,6,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,17,14,2009,2494 +Nissan,Truck,1995,regular unleaded,134,4,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,19,16,2009,2130 +Nissan,Truck,1996,regular unleaded,134,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,24,19,2009,2000 +Nissan,Truck,1996,regular unleaded,134,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,24,19,2009,2122 +Nissan,Truck,1996,regular unleaded,134,4,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,18,15,2009,2762 +Nissan,Truck,1996,regular unleaded,134,4,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,18,15,2009,2354 +Nissan,Truck,1996,regular unleaded,134,4,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,18,15,2009,2647 +Nissan,Truck,1996,regular unleaded,134,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,24,19,2009,2547 +Nissan,Truck,1996,regular unleaded,134,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,24,19,2009,2326 +Nissan,Truck,1997,regular unleaded,134,4,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,18,15,2009,2918 +Nissan,Truck,1997,regular unleaded,134,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,23,19,2009,2391 +Nissan,Truck,1997,regular unleaded,134,4,MANUAL,four wheel drive,2,N/A,Compact,Extended Cab Pickup,18,15,2009,3140 +Nissan,Truck,1997,regular unleaded,134,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,23,19,2009,2550 +Nissan,Truck,1997,regular unleaded,134,4,MANUAL,four wheel drive,2,N/A,Compact,Regular Cab Pickup,18,15,2009,2676 +Nissan,Truck,1997,regular unleaded,134,4,MANUAL,rear wheel drive,2,N/A,Compact,Regular Cab Pickup,23,19,2009,2241 +Nissan,Truck,1997,regular unleaded,134,4,MANUAL,rear wheel drive,2,N/A,Compact,Extended Cab Pickup,23,19,2009,2837 +Acura,TSX Sport Wagon,2012,premium unleaded (recommended),201,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,30,22,204,35010 +Acura,TSX Sport Wagon,2012,premium unleaded (recommended),201,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,30,22,204,31360 +Acura,TSX Sport Wagon,2013,premium unleaded (recommended),201,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,30,22,204,35510 +Acura,TSX Sport Wagon,2013,premium unleaded (recommended),201,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,30,22,204,31860 +Acura,TSX Sport Wagon,2014,premium unleaded (recommended),201,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,30,22,204,35635 +Acura,TSX Sport Wagon,2014,premium unleaded (recommended),201,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,30,22,204,31985 +Acura,TSX,2012,premium unleaded (recommended),201,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,31,22,204,30010 +Acura,TSX,2012,premium unleaded (required),280,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,19,204,35550 +Acura,TSX,2012,premium unleaded (required),280,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,19,204,38650 +Acura,TSX,2012,premium unleaded (recommended),201,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,31,22,204,33110 +Acura,TSX,2012,premium unleaded (recommended),201,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,31,22,204,31010 +Acura,TSX,2012,premium unleaded (recommended),201,4,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,29,21,204,31010 +Acura,TSX,2013,premium unleaded (recommended),201,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,31,22,204,30510 +Acura,TSX,2013,premium unleaded (recommended),201,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,31,22,204,31510 +Acura,TSX,2013,premium unleaded (recommended),201,4,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,29,21,204,31510 +Acura,TSX,2013,premium unleaded (recommended),201,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,31,22,204,33610 +Acura,TSX,2013,premium unleaded (recommended),280,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,19,204,39150 +Acura,TSX,2014,premium unleaded (recommended),201,4,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,29,21,204,31635 +Acura,TSX,2014,premium unleaded (recommended),201,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,31,22,204,30635 +Acura,TSX,2014,premium unleaded (recommended),280,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Sedan,28,19,204,39275 +Acura,TSX,2014,premium unleaded (recommended),201,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,31,22,204,33735 +Acura,TSX,2014,premium unleaded (recommended),201,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,31,22,204,31635 +Audi,TT RS,2012,premium unleaded (required),360,5,MANUAL,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,25,18,3105,56850 +Audi,TT RS,2013,premium unleaded (required),360,5,MANUAL,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,25,18,3105,57200 +Audi,TT,2015,premium unleaded (recommended),211,4,AUTOMATED_MANUAL,all wheel drive,2,Luxury,Compact,Convertible,31,22,3105,43350 +Audi,TT,2015,premium unleaded (recommended),211,4,AUTOMATED_MANUAL,all wheel drive,2,Luxury,Compact,Coupe,31,22,3105,40350 +Audi,TT,2016,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,Performance",Compact,Coupe,30,23,3105,42900 +Audi,TT,2016,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,2,Luxury,Compact,Convertible,30,23,3105,46400 +Audi,TT,2017,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,2,Luxury,Compact,Convertible,30,23,3105,47000 +Audi,TT,2017,premium unleaded (recommended),220,4,AUTOMATED_MANUAL,all wheel drive,2,"Luxury,Performance",Compact,Coupe,30,23,3105,43500 +Audi,TTS,2015,premium unleaded (required),265,4,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,Performance",Compact,Convertible,31,22,3105,51700 +Audi,TTS,2015,premium unleaded (required),265,4,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,Performance",Compact,Coupe,31,22,3105,48700 +Audi,TTS,2016,premium unleaded (required),292,4,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,Performance",Compact,Coupe,27,23,3105,51900 +Audi,TTS,2017,premium unleaded (required),292,4,AUTOMATED_MANUAL,all wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,27,23,3105,52500 +Hyundai,Tucson,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,21,1439,26450 +Hyundai,Tucson,2015,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,29,23,1439,21650 +Hyundai,Tucson,2015,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,25,20,1439,27950 +Hyundai,Tucson,2015,regular unleaded,182,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,28,21,1439,23700 +Hyundai,Tucson,2015,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,25,20,1439,25200 +Hyundai,Tucson,2015,regular unleaded,164,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,25,21,1439,23150 +Hyundai,Tucson,2015,regular unleaded,182,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,25,20,1439,25200 +Hyundai,Tucson,2015,regular unleaded,180,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,25,20,1439,27950 +Hyundai,Tucson,2016,regular unleaded,175,4,AUTOMATED_MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,33,26,1439,24150 +Hyundai,Tucson,2016,regular unleaded,175,4,AUTOMATED_MANUAL,all wheel drive,4,Crossover,Compact,4dr SUV,31,25,1439,25550 +Hyundai,Tucson,2016,regular unleaded,175,4,AUTOMATED_MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,30,25,1439,29900 +Hyundai,Tucson,2016,regular unleaded,164,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,21,1439,24100 +Hyundai,Tucson,2016,regular unleaded,175,4,AUTOMATED_MANUAL,all wheel drive,4,Crossover,Compact,4dr SUV,28,24,1439,31300 +Hyundai,Tucson,2016,regular unleaded,175,4,AUTOMATED_MANUAL,all wheel drive,4,Crossover,Compact,4dr SUV,28,24,1439,27550 +Hyundai,Tucson,2016,regular unleaded,175,4,AUTOMATED_MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,30,25,1439,26150 +Hyundai,Tucson,2016,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,31,23,1439,22700 +Hyundai,Tucson,2017,regular unleaded,164,4,AUTOMATIC,front wheel drive,4,Crossover,Compact,4dr SUV,30,23,1439,22700 +Hyundai,Tucson,2017,regular unleaded,164,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,26,21,1439,24100 +Hyundai,Tucson,2017,regular unleaded,175,4,AUTOMATED_MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,30,25,1439,29775 +Hyundai,Tucson,2017,regular unleaded,175,4,AUTOMATED_MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,30,25,1439,25900 +Hyundai,Tucson,2017,regular unleaded,175,4,AUTOMATED_MANUAL,all wheel drive,4,Crossover,Compact,4dr SUV,28,24,1439,31175 +Hyundai,Tucson,2017,regular unleaded,175,4,AUTOMATED_MANUAL,all wheel drive,4,Crossover,Compact,4dr SUV,28,24,1439,27300 +Hyundai,Tucson,2017,regular unleaded,175,4,AUTOMATED_MANUAL,front wheel drive,4,Crossover,Compact,4dr SUV,32,26,1439,24150 +Hyundai,Tucson,2017,regular unleaded,175,4,AUTOMATED_MANUAL,all wheel drive,4,Crossover,Compact,4dr SUV,30,25,1439,25550 +Toyota,Tundra,2015,regular unleaded,310,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,18,14,2031,33210 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,rear wheel drive,2,N/A,Large,Regular Cab Pickup,18,13,2031,29120 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,2031,44925 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,40685 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,2031,44925 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,2031,44000 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,33390 +Toyota,Tundra,2015,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,33060 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,2031,47975 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,34710 +Toyota,Tundra,2015,regular unleaded,310,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,19,15,2031,30160 +Toyota,Tundra,2015,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,34710 +Toyota,Tundra,2015,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,40685 +Toyota,Tundra,2015,regular unleaded,310,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,18,14,2031,31560 +Toyota,Tundra,2015,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,2031,44000 +Toyota,Tundra,2015,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,35040 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,2031,37030 +Toyota,Tundra,2015,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,2031,42550 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,2031,42550 +Toyota,Tundra,2015,regular unleaded,310,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,18,14,2031,35530 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,33060 +Toyota,Tundra,2015,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,2031,37030 +Toyota,Tundra,2015,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,17,13,2031,32170 +Toyota,Tundra,2015,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,41385 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,2031,39500 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,35040 +Toyota,Tundra,2015,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,33390 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,41385 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,2031,47975 +Toyota,Tundra,2015,regular unleaded,310,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,19,15,2031,32480 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,2031,37635 +Toyota,Tundra,2015,regular unleaded,310,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,19,15,2031,28510 +Toyota,Tundra,2015,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,2031,47975 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,2031,33980 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,2031,30010 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,2031,31660 +Toyota,Tundra,2015,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,2031,47975 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,2031,31990 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,four wheel drive,2,N/A,Large,Regular Cab Pickup,17,13,2031,32170 +Toyota,Tundra,2015,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,2031,30340 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,34220 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,2031,30840 +Toyota,Tundra,2016,regular unleaded,310,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,18,14,2031,34000 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,2031,45560 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,2031,32980 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,2031,38670 +Toyota,Tundra,2016,regular unleaded,310,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,18,14,2031,36320 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,2031,34970 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,2031,46530 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,2031,43585 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,42945 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,42945 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,2031,46530 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,2031,30840 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,41720 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,2031,49580 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,2031,46530 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,2031,40535 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,2031,38020 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,2031,49580 +Toyota,Tundra,2016,regular unleaded,310,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,19,15,2031,29140 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,13,2031,29950 +Toyota,Tundra,2016,regular unleaded,310,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,19,15,2031,33270 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,2031,32650 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,2031,49580 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,2031,49580 +Toyota,Tundra,2016,regular unleaded,310,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,18,14,2031,32190 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,36030 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,17,13,2031,33000 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,2031,31170 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,34220 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,35700 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,2031,32980 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,rear wheel drive,2,N/A,Large,Regular Cab Pickup,18,13,2031,29950 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,2031,38670 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,41720 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,2031,34970 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,2031,46530 +Toyota,Tundra,2016,regular unleaded,310,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,19,15,2031,30950 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,2031,45560 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,2031,43585 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,2031,32650 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,33890 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,2031,40535 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,36030 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,35700 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,2,N/A,Large,Regular Cab Pickup,17,13,2031,33000 +Toyota,Tundra,2016,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,33890 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,2031,31170 +Toyota,Tundra,2016,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,2031,38020 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,2,N/A,Large,Regular Cab Pickup,17,13,2031,33450 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,2031,50030 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,2031,35420 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,42330 +Toyota,Tundra,2017,regular unleaded,310,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,19,15,2031,31830 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,2031,46980 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,42330 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,2031,46980 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,2031,44195 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,2031,39280 +Toyota,Tundra,2017,regular unleaded,310,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,18,14,2031,34880 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,2031,46010 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,rear wheel drive,2,N/A,Large,Regular Cab Pickup,18,13,2031,30400 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,2031,38470 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,2031,33430 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,2031,41145 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,43395 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,2031,50030 +Toyota,Tundra,2017,regular unleaded,310,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,19,15,2031,34150 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,18,13,2031,30400 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,2031,31620 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,2031,50030 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,2031,33100 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,43395 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,2031,31620 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,36480 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,2031,31290 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,2031,33430 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,34340 +Toyota,Tundra,2017,regular unleaded,310,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,18,14,2031,37200 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,2031,46980 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,2031,44195 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,2031,31290 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,34340 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,18,13,2031,46980 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,36150 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,34670 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,18,13,2031,33100 +Toyota,Tundra,2017,regular unleaded,310,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,19,15,2031,30020 +Toyota,Tundra,2017,regular unleaded,310,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,18,14,2031,33070 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,2031,35420 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,36480 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Extended Cab Pickup,18,13,2031,39280 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Extended Cab Pickup,17,13,2031,36150 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,2031,46010 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,rear wheel drive,4,N/A,Large,Crew Cab Pickup,18,13,2031,41145 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,2,Flex Fuel,Large,Regular Cab Pickup,17,13,2031,33450 +Toyota,Tundra,2017,regular unleaded,381,8,AUTOMATIC,four wheel drive,4,N/A,Large,Crew Cab Pickup,17,13,2031,38470 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Extended Cab Pickup,17,13,2031,34670 +Toyota,Tundra,2017,flex-fuel (unleaded/E85),381,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,Crew Cab Pickup,17,13,2031,50030 +GMC,Typhoon,1992,regular unleaded,285,6,AUTOMATIC,all wheel drive,2,"Factory Tuner,Performance",Compact,2dr SUV,17,14,549,5895 +GMC,Typhoon,1993,regular unleaded,285,6,AUTOMATIC,all wheel drive,2,"Factory Tuner,Performance",Compact,2dr SUV,17,13,549,6890 +Chevrolet,Uplander,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,1385,22750 +Chevrolet,Uplander,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,1385,22750 +Chevrolet,Uplander,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,1385,28250 +Chevrolet,Uplander,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,1385,26250 +Chevrolet,Uplander,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,23,16,1385,19250 +Chevrolet,Uplander,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,23,16,1385,19250 +Chevrolet,Uplander,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Cargo Minivan,23,16,1385,21150 +Chevrolet,Uplander,2006,regular unleaded,201,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,23,16,1385,30250 +Chevrolet,Uplander,2006,regular unleaded,196,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,21,15,1385,33250 +Chevrolet,Uplander,2007,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Compact,Passenger Minivan,23,16,1385,20205 +Chevrolet,Uplander,2007,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Cargo Minivan,23,16,1385,22105 +Chevrolet,Uplander,2007,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,23,16,1385,23280 +Chevrolet,Uplander,2007,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,23,16,1385,23280 +Chevrolet,Uplander,2007,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,23,16,1385,27405 +Chevrolet,Uplander,2007,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,23,16,1385,33050 +Chevrolet,Uplander,2007,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,23,16,1385,29350 +Chevrolet,Uplander,2007,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Compact,Passenger Minivan,23,16,1385,20205 +Chevrolet,Uplander,2008,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Compact,Passenger Minivan,23,16,1385,21540 +Chevrolet,Uplander,2008,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Compact,Passenger Minivan,23,16,1385,21540 +Chevrolet,Uplander,2008,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,23,16,1385,24250 +Chevrolet,Uplander,2008,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Cargo Minivan,23,16,1385,23080 +Chevrolet,Uplander,2008,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,23,16,1385,29330 +Chevrolet,Uplander,2008,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,23,16,1385,24250 +Aston Martin,V12 Vanquish,2004,premium unleaded (required),460,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,18,11,259,234260 +Aston Martin,V12 Vanquish,2005,premium unleaded (required),460,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,16,10,259,234260 +Aston Martin,V12 Vanquish,2005,premium unleaded (required),520,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Coupe,16,10,259,255000 +Aston Martin,V12 Vanquish,2006,premium unleaded (required),520,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,Factory Tuner,High-Performance",Compact,Coupe,16,10,259,260000 +Aston Martin,V12 Vantage S,2015,premium unleaded (required),565,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,18,12,259,182395 +Aston Martin,V12 Vantage S,2016,premium unleaded (required),565,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,18,12,259,198195 +Aston Martin,V12 Vantage S,2016,premium unleaded (required),565,12,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,18,12,259,183695 +Aston Martin,V12 Vantage,2011,premium unleaded (required),510,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,17,11,259,191995 +Aston Martin,V12 Vantage,2011,premium unleaded (required),510,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,17,11,259,180535 +Aston Martin,V12 Vantage,2012,premium unleaded (required),510,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,17,11,259,180535 +Aston Martin,V12 Vantage,2012,premium unleaded (required),510,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,17,11,259,195895 +Aston Martin,V12 Vantage,2012,premium unleaded (required),510,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,17,11,259,180535 +Aston Martin,V12 Vantage,2012,premium unleaded (required),510,12,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,17,11,259,195895 +Volvo,V40,2002,premium unleaded (required),160,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Wagon,27,19,870,24900 +Volvo,V40,2003,premium unleaded (required),170,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Wagon,27,19,870,24900 +Volvo,V40,2004,premium unleaded (required),170,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Wagon,27,19,870,25700 +Volvo,V40,2004,premium unleaded (required),170,4,AUTOMATIC,front wheel drive,4,Luxury,Compact,Wagon,27,19,870,29845 +Volvo,V50,2009,premium unleaded (recommended),168,5,AUTOMATIC,front wheel drive,4,Luxury,Compact,Wagon,31,20,870,29800 +Volvo,V50,2009,premium unleaded (recommended),227,5,AUTOMATIC,all wheel drive,4,Luxury,Compact,Wagon,26,18,870,35500 +Volvo,V50,2010,premium unleaded (recommended),227,5,MANUAL,all wheel drive,4,Luxury,Compact,Wagon,26,20,870,33050 +Volvo,V50,2010,premium unleaded (recommended),168,5,AUTOMATIC,front wheel drive,4,Luxury,Compact,Wagon,30,21,870,28700 +Volvo,V50,2011,regular unleaded,227,5,AUTOMATIC,front wheel drive,4,Luxury,Compact,Wagon,30,21,870,32850 +Volvo,V50,2011,regular unleaded,227,5,AUTOMATIC,front wheel drive,4,Luxury,Compact,Wagon,30,21,870,29000 +Volvo,V60 Cross Country,2015,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,28,20,870,41000 +Volvo,V60 Cross Country,2015,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,28,20,870,44650 +Volvo,V60 Cross Country,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,28,20,870,41200 +Volvo,V60 Cross Country,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,28,20,870,44850 +Volvo,V60 Cross Country,2017,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,30,22,870,41700 +Volvo,V60 Cross Country,2017,regular unleaded,240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,30,22,870,45350 +Volvo,V60,2015,regular unleaded,325,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Wagon,28,19,870,45400 +Volvo,V60,2015,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,29,20,870,37450 +Volvo,V60,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,37,25,870,35750 +Volvo,V60,2015,regular unleaded,325,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Wagon,28,19,870,45150 +Volvo,V60,2015,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,29,20,870,37250 +Volvo,V60,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,37,25,870,35950 +Volvo,V60,2016,regular unleaded,302,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Wagon,31,22,870,46050 +Volvo,V60,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,29,20,870,43520 +Volvo,V60,2016,regular unleaded,345,6,AUTOMATIC,all wheel drive,4,"Factory Tuner,Luxury,High-Performance",Midsize,Wagon,27,18,870,61300 +Volvo,V60,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,29,20,870,39600 +Volvo,V60,2016,regular unleaded,302,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Wagon,31,22,870,49450 +Volvo,V60,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,29,25,870,36150 +Volvo,V60,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,29,25,870,41750 +Volvo,V60,2016,regular unleaded,325,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Wagon,27,18,870,49200 +Volvo,V60,2016,regular unleaded,325,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Midsize,Wagon,27,18,870,45800 +Volvo,V60,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,29,25,870,38100 +Volvo,V60,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,Luxury,Midsize,Wagon,29,20,870,37650 +Volvo,V60,2017,regular unleaded,302,4,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Wagon,31,23,870,48950 +Volvo,V60,2017,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Wagon,36,25,870,36150 +Volvo,V60,2017,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Wagon,36,25,870,41750 +Volvo,V60,2017,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Midsize,Wagon,36,25,870,38100 +Volvo,V70,2008,premium unleaded (recommended),235,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,24,16,870,32465 +Volvo,V70,2009,premium unleaded (recommended),235,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,25,16,870,32900 +Volvo,V70,2010,premium unleaded (recommended),235,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,27,18,870,33550 +Volvo,V70,2010,premium unleaded (recommended),235,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Wagon,27,18,870,38000 +Aston Martin,V8 Vantage,2014,premium unleaded (required),430,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,19,13,259,145200 +Aston Martin,V8 Vantage,2014,premium unleaded (required),420,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,19,13,259,131200 +Aston Martin,V8 Vantage,2014,premium unleaded (required),430,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,13,259,130700 +Aston Martin,V8 Vantage,2014,premium unleaded (required),420,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,14,259,122400 +Aston Martin,V8 Vantage,2014,premium unleaded (required),420,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,13,259,116700 +Aston Martin,V8 Vantage,2014,premium unleaded (required),420,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,21,14,259,136900 +Aston Martin,V8 Vantage,2014,premium unleaded (required),430,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,14,259,136400 +Aston Martin,V8 Vantage,2014,premium unleaded (required),430,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,21,14,259,150900 +Aston Martin,V8 Vantage,2015,premium unleaded (required),430,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,19,13,259,147495 +Aston Martin,V8 Vantage,2015,premium unleaded (required),430,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,13,259,132995 +Aston Martin,V8 Vantage,2015,premium unleaded (required),430,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,13,259,98200 +Aston Martin,V8 Vantage,2015,premium unleaded (required),430,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,13,259,117995 +Aston Martin,V8 Vantage,2015,premium unleaded (required),430,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,14,259,103900 +Aston Martin,V8 Vantage,2015,premium unleaded (required),430,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,21,14,259,153195 +Aston Martin,V8 Vantage,2015,premium unleaded (required),430,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,14,259,138695 +Aston Martin,V8 Vantage,2015,premium unleaded (required),430,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,19,13,259,112700 +Aston Martin,V8 Vantage,2015,premium unleaded (required),430,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,14,259,123695 +Aston Martin,V8 Vantage,2015,premium unleaded (required),430,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,21,14,259,138195 +Aston Martin,V8 Vantage,2015,premium unleaded (required),430,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,21,14,259,118400 +Aston Martin,V8 Vantage,2015,premium unleaded (required),430,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,19,13,259,132495 +Aston Martin,V8 Vantage,2016,premium unleaded (required),430,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,19,13,259,148795 +Aston Martin,V8 Vantage,2016,premium unleaded (required),430,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,13,259,134295 +Aston Martin,V8 Vantage,2016,premium unleaded (required),430,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,13,259,103300 +Aston Martin,V8 Vantage,2016,premium unleaded (required),430,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,14,259,126995 +Aston Martin,V8 Vantage,2016,premium unleaded (required),430,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,19,13,259,117800 +Aston Martin,V8 Vantage,2016,premium unleaded (required),430,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,21,14,259,141495 +Aston Martin,V8 Vantage,2016,premium unleaded (required),430,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,19,13,259,135795 +Aston Martin,V8 Vantage,2016,premium unleaded (required),430,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,21,14,259,154495 +Aston Martin,V8 Vantage,2016,premium unleaded (required),430,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,14,259,139995 +Aston Martin,V8 Vantage,2016,premium unleaded (required),430,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,14,259,109000 +Aston Martin,V8 Vantage,2016,premium unleaded (required),430,8,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,13,259,121295 +Aston Martin,V8 Vantage,2016,premium unleaded (required),430,8,AUTOMATED_MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Convertible,21,14,259,123500 +Audi,V8,1992,regular unleaded,276,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,18,13,3105,2000 +Audi,V8,1993,regular unleaded,276,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,18,13,3105,2149 +Audi,V8,1994,regular unleaded,276,8,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Midsize,Sedan,18,13,3105,2239 +Volvo,V90,1998,regular unleaded,181,6,AUTOMATIC,rear wheel drive,4,Luxury,Midsize,Wagon,23,16,870,2200 +Volkswagen,Vanagon,1990,regular unleaded,90,4,MANUAL,four wheel drive,3,N/A,Large,Passenger Minivan,15,14,873,2000 +Volkswagen,Vanagon,1990,regular unleaded,90,4,AUTOMATIC,rear wheel drive,3,N/A,Large,Passenger Minivan,16,15,873,2000 +Volkswagen,Vanagon,1990,regular unleaded,90,4,MANUAL,four wheel drive,3,N/A,Large,Passenger Minivan,15,14,873,2000 +Volkswagen,Vanagon,1990,regular unleaded,90,4,MANUAL,rear wheel drive,3,N/A,Large,Passenger Minivan,18,16,873,2000 +Volkswagen,Vanagon,1990,regular unleaded,90,4,MANUAL,rear wheel drive,3,N/A,Large,Passenger Minivan,18,16,873,2000 +Volkswagen,Vanagon,1990,regular unleaded,90,4,MANUAL,rear wheel drive,3,N/A,Large,Passenger Minivan,18,16,873,2000 +Volkswagen,Vanagon,1990,regular unleaded,90,4,MANUAL,rear wheel drive,3,N/A,Large,Passenger Minivan,18,16,873,2000 +Volkswagen,Vanagon,1991,regular unleaded,90,4,MANUAL,rear wheel drive,3,N/A,Large,Passenger Minivan,18,16,873,2000 +Volkswagen,Vanagon,1991,regular unleaded,90,4,MANUAL,rear wheel drive,3,N/A,Large,Passenger Minivan,18,16,873,2000 +Volkswagen,Vanagon,1991,regular unleaded,90,4,MANUAL,rear wheel drive,3,N/A,Large,Passenger Minivan,18,16,873,2000 +Volkswagen,Vanagon,1991,regular unleaded,90,4,MANUAL,rear wheel drive,3,N/A,Large,Passenger Minivan,18,16,873,2000 +GMC,Vandura,1994,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,20,15,549,2000 +GMC,Vandura,1994,regular unleaded,165,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,20,15,549,2000 +GMC,Vandura,1994,regular unleaded,165,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Cargo Van,20,15,549,2000 +GMC,Vandura,1994,regular unleaded,200,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,20,15,549,2000 +GMC,Vandura,1994,regular unleaded,200,8,AUTOMATIC,rear wheel drive,3,N/A,Large,Cargo Van,16,12,549,2000 +GMC,Vandura,1994,regular unleaded,165,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Cargo Van,20,15,549,2000 +GMC,Vandura,1995,regular unleaded,165,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,20,15,549,2000 +GMC,Vandura,1995,regular unleaded,165,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,15,13,549,2000 +GMC,Vandura,1995,regular unleaded,165,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Cargo Van,20,15,549,2000 +GMC,Vandura,1995,regular unleaded,165,6,AUTOMATIC,rear wheel drive,3,N/A,Midsize,Cargo Van,20,15,549,2000 +GMC,Vandura,1995,regular unleaded,165,6,AUTOMATIC,rear wheel drive,3,N/A,Compact,Cargo Van,20,15,549,2000 +Nissan,Van,1990,regular unleaded,106,4,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Minivan,19,15,2009,2000 +Nissan,Van,1990,regular unleaded,106,4,MANUAL,rear wheel drive,3,N/A,Compact,Passenger Minivan,20,16,2009,2000 +Aston Martin,Vanquish,2014,premium unleaded (required),565,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,19,13,259,296295 +Aston Martin,Vanquish,2014,premium unleaded (required),565,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,19,13,259,278295 +Aston Martin,Vanquish,2015,premium unleaded (required),568,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,21,13,259,301695 +Aston Martin,Vanquish,2015,premium unleaded (required),568,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,21,13,259,283695 +Aston Martin,Vanquish,2016,premium unleaded (required),568,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,21,13,259,287650 +Aston Martin,Vanquish,2016,premium unleaded (required),568,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,21,13,259,305650 +Aston Martin,Vanquish,2016,premium unleaded (required),568,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,21,13,259,302695 +Aston Martin,Vanquish,2016,premium unleaded (required),568,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,21,13,259,320695 +Mitsubishi,Vanwagon,1990,regular unleaded,107,4,AUTOMATIC,rear wheel drive,3,N/A,Compact,Passenger Minivan,19,16,436,2000 +Mitsubishi,Vanwagon,1990,regular unleaded,107,4,AUTOMATIC,rear wheel drive,3,N/A,Compact,Cargo Minivan,20,18,436,2000 +Hyundai,Veloster,2014,regular unleaded,201,4,AUTOMATIC,front wheel drive,3,"Hatchback,Performance",Compact,2dr Hatchback,31,24,1439,23300 +Hyundai,Veloster,2014,regular unleaded,132,4,AUTOMATED_MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,36,28,1439,19050 +Hyundai,Veloster,2014,regular unleaded,132,4,AUTOMATED_MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,36,28,1439,21650 +Hyundai,Veloster,2014,regular unleaded,132,4,AUTOMATED_MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,36,28,1439,21650 +Hyundai,Veloster,2014,regular unleaded,201,4,MANUAL,front wheel drive,3,"Hatchback,Performance",Compact,2dr Hatchback,33,24,1439,22300 +Hyundai,Veloster,2014,regular unleaded,201,4,MANUAL,front wheel drive,3,"Hatchback,Performance",Compact,2dr Hatchback,33,24,1439,22300 +Hyundai,Veloster,2014,regular unleaded,138,4,MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,35,26,1439,17800 +Hyundai,Veloster,2014,regular unleaded,138,4,MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,35,26,1439,17800 +Hyundai,Veloster,2014,regular unleaded,132,4,AUTOMATED_MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,36,28,1439,19050 +Hyundai,Veloster,2014,regular unleaded,138,4,MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,35,26,1439,17800 +Hyundai,Veloster,2014,regular unleaded,201,4,MANUAL,front wheel drive,3,"Hatchback,Performance",Compact,2dr Hatchback,33,24,1439,21300 +Hyundai,Veloster,2014,regular unleaded,201,4,AUTOMATIC,front wheel drive,3,"Hatchback,Performance",Compact,2dr Hatchback,31,24,1439,23300 +Hyundai,Veloster,2014,regular unleaded,132,4,AUTOMATED_MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,36,28,1439,19050 +Hyundai,Veloster,2015,regular unleaded,132,4,AUTOMATED_MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,36,27,1439,19250 +Hyundai,Veloster,2015,regular unleaded,201,4,AUTOMATIC,front wheel drive,3,"Hatchback,Performance",Compact,2dr Hatchback,31,24,1439,23600 +Hyundai,Veloster,2015,regular unleaded,132,4,AUTOMATED_MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,36,27,1439,21950 +Hyundai,Veloster,2015,regular unleaded,132,4,AUTOMATED_MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,36,27,1439,21950 +Hyundai,Veloster,2015,regular unleaded,138,4,MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,35,26,1439,18000 +Hyundai,Veloster,2015,regular unleaded,201,4,MANUAL,front wheel drive,3,"Hatchback,Performance",Compact,2dr Hatchback,33,24,1439,22600 +Hyundai,Veloster,2015,regular unleaded,201,4,MANUAL,front wheel drive,3,"Hatchback,Performance",Compact,2dr Hatchback,33,24,1439,21600 +Hyundai,Veloster,2016,regular unleaded,132,4,AUTOMATED_MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,36,28,1439,19100 +Hyundai,Veloster,2016,regular unleaded,132,4,MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,35,27,1439,18000 +Hyundai,Veloster,2016,regular unleaded,201,4,MANUAL,front wheel drive,3,"Hatchback,Performance",Compact,2dr Hatchback,33,25,1439,23950 +Hyundai,Veloster,2016,regular unleaded,201,4,MANUAL,front wheel drive,3,"Hatchback,Performance",Compact,2dr Hatchback,33,25,1439,21600 +Hyundai,Veloster,2016,regular unleaded,132,4,AUTOMATED_MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,36,28,1439,19100 +Hyundai,Veloster,2016,regular unleaded,132,4,MANUAL,front wheel drive,3,Hatchback,Compact,2dr Hatchback,35,27,1439,18000 +Hyundai,Veloster,2016,regular unleaded,201,4,AUTOMATED_MANUAL,front wheel drive,3,"Hatchback,Performance",Compact,2dr Hatchback,33,27,1439,23800 +Hyundai,Veloster,2016,regular unleaded,201,4,MANUAL,front wheel drive,3,"Hatchback,Performance",Compact,2dr Hatchback,33,25,1439,22600 +Hyundai,Veloster,2016,regular unleaded,201,4,AUTOMATED_MANUAL,front wheel drive,3,"Hatchback,Performance",Compact,2dr Hatchback,33,27,1439,23800 +Hyundai,Veloster,2016,regular unleaded,201,4,MANUAL,front wheel drive,3,"Hatchback,Performance",Compact,2dr Hatchback,33,25,1439,22600 +Chevrolet,Venture,2003,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,1385,31790 +Chevrolet,Venture,2003,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,1385,33790 +Chevrolet,Venture,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,1385,24040 +Chevrolet,Venture,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,1385,26340 +Chevrolet,Venture,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Cargo Minivan,24,17,1385,22440 +Chevrolet,Venture,2003,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,1385,29740 +Chevrolet,Venture,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,24,17,1385,21365 +Chevrolet,Venture,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,24,17,1385,22465 +Chevrolet,Venture,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,1385,31490 +Chevrolet,Venture,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,24,17,1385,25165 +Chevrolet,Venture,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,1385,29240 +Chevrolet,Venture,2003,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,1385,30240 +Chevrolet,Venture,2004,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,1385,30575 +Chevrolet,Venture,2004,regular unleaded,185,6,AUTOMATIC,all wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,1385,33625 +Chevrolet,Venture,2004,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,1385,26675 +Chevrolet,Venture,2004,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Cargo Minivan,24,17,1385,22600 +Chevrolet,Venture,2004,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Compact,Passenger Minivan,24,17,1385,21475 +Chevrolet,Venture,2004,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,1385,23225 +Chevrolet,Venture,2005,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,1385,30760 +Chevrolet,Venture,2005,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Cargo Minivan,24,17,1385,23165 +Chevrolet,Venture,2005,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,1385,26835 +Chevrolet,Venture,2005,regular unleaded,185,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,1385,23365 +Toyota,Venza,2013,regular unleaded,181,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,Wagon,26,20,2031,31510 +Toyota,Venza,2013,regular unleaded,268,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,Wagon,25,18,2031,39020 +Toyota,Venza,2013,regular unleaded,268,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,Wagon,25,18,2031,31120 +Toyota,Venza,2013,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,"Crossover,Performance",Midsize,Wagon,26,19,2031,37570 +Toyota,Venza,2013,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,"Crossover,Performance",Midsize,Wagon,26,19,2031,29670 +Toyota,Venza,2013,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,"Crossover,Performance",Midsize,Wagon,26,19,2031,33330 +Toyota,Venza,2013,regular unleaded,181,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,Wagon,26,20,2031,27850 +Toyota,Venza,2013,regular unleaded,181,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,Wagon,26,20,2031,32960 +Toyota,Venza,2013,regular unleaded,268,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,Wagon,25,18,2031,34780 +Toyota,Venza,2013,regular unleaded,181,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,Wagon,26,20,2031,29300 +Toyota,Venza,2014,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,"Crossover,Performance",Midsize,Wagon,26,19,2031,29770 +Toyota,Venza,2014,regular unleaded,268,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,Wagon,25,18,2031,39570 +Toyota,Venza,2014,regular unleaded,181,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,Wagon,26,20,2031,29400 +Toyota,Venza,2014,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,"Crossover,Performance",Midsize,Wagon,26,19,2031,33630 +Toyota,Venza,2014,regular unleaded,268,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,Wagon,25,18,2031,35080 +Toyota,Venza,2014,regular unleaded,268,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,Wagon,25,18,2031,31220 +Toyota,Venza,2014,regular unleaded,181,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,Wagon,26,20,2031,27950 +Toyota,Venza,2014,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,"Crossover,Performance",Midsize,Wagon,26,19,2031,38120 +Toyota,Venza,2014,regular unleaded,181,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,Wagon,26,20,2031,31810 +Toyota,Venza,2014,regular unleaded,181,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,Wagon,26,20,2031,33260 +Toyota,Venza,2015,regular unleaded,268,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,Wagon,25,18,2031,35600 +Toyota,Venza,2015,regular unleaded,181,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,Wagon,26,20,2031,33560 +Toyota,Venza,2015,regular unleaded,268,6,AUTOMATIC,all wheel drive,4,"Crossover,Performance",Midsize,Wagon,25,18,2031,39940 +Toyota,Venza,2015,regular unleaded,181,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,Wagon,26,20,2031,29065 +Toyota,Venza,2015,regular unleaded,181,4,AUTOMATIC,front wheel drive,4,Crossover,Midsize,Wagon,26,20,2031,32110 +Toyota,Venza,2015,regular unleaded,268,6,AUTOMATIC,front wheel drive,4,"Crossover,Performance",Midsize,Wagon,26,19,2031,34150 +Toyota,Venza,2015,regular unleaded,181,4,AUTOMATIC,all wheel drive,4,Crossover,Midsize,Wagon,26,20,2031,30515 +Hyundai,Veracruz,2010,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,16,1439,35895 +Hyundai,Veracruz,2010,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,23,17,1439,28145 +Hyundai,Veracruz,2010,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,23,17,1439,34195 +Hyundai,Veracruz,2010,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,16,1439,30045 +Hyundai,Veracruz,2011,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,17,1439,28345 +Hyundai,Veracruz,2011,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,17,1439,34395 +Hyundai,Veracruz,2011,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,1439,36095 +Hyundai,Veracruz,2011,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,1439,30245 +Hyundai,Veracruz,2012,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,1439,30245 +Hyundai,Veracruz,2012,regular unleaded,260,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,1439,36195 +Hyundai,Veracruz,2012,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,17,1439,34495 +Hyundai,Veracruz,2012,regular unleaded,260,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,17,1439,28345 +Buick,Verano,2015,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,32,21,155,21065 +Buick,Verano,2015,premium unleaded (recommended),250,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,30,21,155,29215 +Buick,Verano,2015,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,32,21,155,27050 +Buick,Verano,2015,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,32,21,155,25020 +Buick,Verano,2015,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,32,21,155,23380 +Buick,Verano,2016,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,32,21,155,23480 +Buick,Verano,2016,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,32,21,155,24475 +Buick,Verano,2016,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,32,21,155,24065 +Buick,Verano,2016,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,32,21,155,21065 +Buick,Verano,2016,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,32,21,155,26505 +Buick,Verano,2016,premium unleaded (recommended),250,4,AUTOMATIC,front wheel drive,4,Performance,Midsize,Sedan,30,21,155,28670 +Buick,Verano,2017,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,21,155,21065 +Buick,Verano,2017,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,21,155,26555 +Buick,Verano,2017,regular unleaded,180,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,31,21,155,24115 +Suzuki,Verona,2004,,155,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,17,481,17199 +Suzuki,Verona,2004,,155,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,17,481,20199 +Suzuki,Verona,2004,,155,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,17,481,18499 +Suzuki,Verona,2005,regular unleaded,155,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,18,481,19349 +Suzuki,Verona,2005,regular unleaded,155,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,18,481,21049 +Suzuki,Verona,2005,regular unleaded,155,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,18,481,17549 +Suzuki,Verona,2005,regular unleaded,155,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,18,481,20549 +Suzuki,Verona,2006,regular unleaded,155,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,17,481,20299 +Suzuki,Verona,2006,regular unleaded,155,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,17,481,18299 +Nissan,Versa Note,2015,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,31,2009,17930 +Nissan,Versa Note,2015,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,31,2009,18660 +Nissan,Versa Note,2015,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,31,2009,17960 +Nissan,Versa Note,2015,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,31,2009,16330 +Nissan,Versa Note,2015,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,31,2009,15430 +Nissan,Versa Note,2015,regular unleaded,109,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,27,2009,14180 +Nissan,Versa Note,2015,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,31,2009,17530 +Nissan,Versa Note,2016,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,31,2009,16380 +Nissan,Versa Note,2016,regular unleaded,109,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,27,2009,14230 +Nissan,Versa Note,2016,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,31,2009,17980 +Nissan,Versa Note,2016,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,31,2009,18710 +Nissan,Versa Note,2016,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,40,31,2009,15480 +Nissan,Versa Note,2017,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,39,31,2009,15480 +Nissan,Versa Note,2017,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,39,31,2009,17980 +Nissan,Versa Note,2017,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,39,31,2009,16380 +Nissan,Versa Note,2017,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,39,31,2009,18710 +Nissan,Versa,2015,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,40,31,2009,13990 +Nissan,Versa,2015,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,40,31,2009,15530 +Nissan,Versa,2015,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,40,31,2009,16890 +Nissan,Versa,2015,regular unleaded,109,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,27,2009,11990 +Nissan,Versa,2015,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,40,31,2009,17590 +Nissan,Versa,2015,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,35,26,2009,13490 +Nissan,Versa,2016,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,40,31,2009,14040 +Nissan,Versa,2016,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,35,26,2009,13540 +Nissan,Versa,2016,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,40,31,2009,15580 +Nissan,Versa,2016,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,40,31,2009,17140 +Nissan,Versa,2016,regular unleaded,109,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,27,2009,11990 +Nissan,Versa,2017,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,39,31,2009,17280 +Nissan,Versa,2017,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,35,26,2009,13680 +Nissan,Versa,2017,regular unleaded,109,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,36,27,2009,11990 +Nissan,Versa,2017,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,39,31,2009,14130 +Nissan,Versa,2017,regular unleaded,109,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,39,31,2009,15720 +Bugatti,Veyron 16.4,2008,premium unleaded (required),1001,16,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Coupe,14,8,820,2065902 +Bugatti,Veyron 16.4,2008,premium unleaded (required),1001,16,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Coupe,14,8,820,1500000 +Bugatti,Veyron 16.4,2009,premium unleaded (required),1001,16,AUTOMATED_MANUAL,all wheel drive,2,"Exotic,High-Performance",Compact,Coupe,14,8,820,1705769 +Pontiac,Vibe,2008,regular unleaded,126,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,33,26,210,16855 +Pontiac,Vibe,2009,regular unleaded,132,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,32,26,210,16100 +Pontiac,Vibe,2009,regular unleaded,158,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,21,210,16495 +Pontiac,Vibe,2009,regular unleaded,158,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,21,210,20875 +Pontiac,Vibe,2009,regular unleaded,158,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,26,20,210,20475 +Pontiac,Vibe,2010,regular unleaded,158,4,AUTOMATIC,all wheel drive,4,Hatchback,Compact,4dr Hatchback,26,20,210,20275 +Pontiac,Vibe,2010,regular unleaded,132,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,32,26,210,16100 +Pontiac,Vibe,2010,regular unleaded,158,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,21,210,20875 +Pontiac,Vibe,2010,regular unleaded,158,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,28,21,210,17445 +Acura,Vigor,1992,regular unleaded,176,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,24,18,204,2000 +Acura,Vigor,1992,regular unleaded,176,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,24,18,204,2000 +Acura,Vigor,1993,regular unleaded,176,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,24,18,204,2000 +Acura,Vigor,1993,regular unleaded,176,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,24,18,204,2000 +Acura,Vigor,1994,regular unleaded,176,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,24,18,204,2000 +Acura,Vigor,1994,regular unleaded,176,5,MANUAL,front wheel drive,4,Luxury,Midsize,Sedan,24,18,204,2000 +Dodge,Viper,2015,premium unleaded (required),645,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,12,1851,107995 +Dodge,Viper,2015,premium unleaded (required),645,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,12,1851,94995 +Dodge,Viper,2015,premium unleaded (required),645,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,12,1851,84995 +Dodge,Viper,2015,premium unleaded (required),645,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,12,1851,94995 +Dodge,Viper,2016,premium unleaded (required),645,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,12,1851,95895 +Dodge,Viper,2016,premium unleaded (required),645,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,12,1851,87895 +Dodge,Viper,2016,premium unleaded (required),645,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,12,1851,118795 +Dodge,Viper,2016,premium unleaded (required),645,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,12,1851,107995 +Dodge,Viper,2016,premium unleaded (required),645,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,21,12,1851,95895 +Dodge,Viper,2017,premium unleaded (required),645,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,12,1851,95895 +Dodge,Viper,2017,premium unleaded (required),645,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,12,1851,87895 +Dodge,Viper,2017,premium unleaded (required),645,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,12,1851,118795 +Dodge,Viper,2017,premium unleaded (required),645,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,12,1851,95895 +Dodge,Viper,2017,premium unleaded (required),645,10,MANUAL,rear wheel drive,2,"Exotic,High-Performance",Compact,Coupe,19,12,1851,107995 +Aston Martin,Virage,2012,premium unleaded (required),490,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Coupe,18,13,259,208295 +Aston Martin,Virage,2012,premium unleaded (required),490,12,AUTOMATIC,rear wheel drive,2,"Exotic,High-Performance",Midsize,Convertible,18,13,259,223295 +Suzuki,Vitara,2002,regular unleaded,127,4,AUTOMATIC,rear wheel drive,2,N/A,Compact,Convertible SUV,23,20,481,16599 +Suzuki,Vitara,2002,regular unleaded,127,4,AUTOMATIC,four wheel drive,2,N/A,Compact,Convertible SUV,23,20,481,17999 +Suzuki,Vitara,2002,regular unleaded,127,4,AUTOMATIC,rear wheel drive,4,N/A,Compact,4dr SUV,23,20,481,17799 +Suzuki,Vitara,2002,regular unleaded,127,4,MANUAL,four wheel drive,2,N/A,Compact,Convertible SUV,23,20,481,16999 +Suzuki,Vitara,2002,regular unleaded,127,4,MANUAL,rear wheel drive,2,N/A,Compact,Convertible SUV,24,20,481,15999 +Suzuki,Vitara,2002,regular unleaded,127,4,MANUAL,four wheel drive,4,N/A,Compact,4dr SUV,23,20,481,18199 +Suzuki,Vitara,2002,regular unleaded,127,4,AUTOMATIC,four wheel drive,4,N/A,Compact,4dr SUV,23,20,481,19199 +Suzuki,Vitara,2002,regular unleaded,127,4,MANUAL,rear wheel drive,4,N/A,Compact,4dr SUV,23,20,481,16799 +Suzuki,Vitara,2003,regular unleaded,127,4,MANUAL,four wheel drive,4,N/A,Compact,4dr SUV,23,20,481,18199 +Suzuki,Vitara,2003,regular unleaded,127,4,MANUAL,four wheel drive,2,N/A,Compact,Convertible SUV,23,20,481,16999 +Suzuki,Vitara,2003,regular unleaded,127,4,MANUAL,rear wheel drive,2,N/A,Compact,Convertible SUV,24,20,481,15599 +Suzuki,Vitara,2003,regular unleaded,127,4,MANUAL,rear wheel drive,4,N/A,Compact,4dr SUV,23,20,481,16799 +Suzuki,Vitara,2004,regular unleaded,165,6,AUTOMATIC,four wheel drive,4,N/A,Compact,4dr SUV,20,17,481,19199 +Suzuki,Vitara,2004,regular unleaded,165,6,AUTOMATIC,rear wheel drive,4,N/A,Compact,4dr SUV,20,17,481,17999 +Suzuki,Vitara,2004,regular unleaded,165,6,MANUAL,four wheel drive,4,N/A,Compact,4dr SUV,20,17,481,18199 +Suzuki,Vitara,2004,regular unleaded,165,6,MANUAL,rear wheel drive,4,N/A,Compact,4dr SUV,21,17,481,16999 +Chrysler,Voyager,2001,flex-fuel (unleaded/E85),180,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,1013,23525 +Chrysler,Voyager,2001,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,18,1013,19160 +Chrysler,Voyager,2002,flex-fuel (unleaded/E85),180,6,AUTOMATIC,front wheel drive,4,N/A,Large,Passenger Minivan,22,16,1013,23640 +Chrysler,Voyager,2002,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,1013,16430 +Chrysler,Voyager,2002,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,23,17,1013,19155 +Chrysler,Voyager,2003,regular unleaded,150,4,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,25,18,1013,20960 +Chrysler,Voyager,2003,regular unleaded,180,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,1013,23790 +Plymouth,Voyager,1998,regular unleaded,150,4,AUTOMATIC,front wheel drive,3,N/A,Midsize,Passenger Minivan,24,18,535,2000 +Plymouth,Voyager,1998,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,535,2000 +Plymouth,Voyager,1998,regular unleaded,150,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,24,17,535,2000 +Plymouth,Voyager,1999,flex-fuel (unleaded/E85),158,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,22,16,535,2166 +Plymouth,Voyager,1999,flex-fuel (unleaded/E85),158,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,22,16,535,2110 +Plymouth,Voyager,1999,regular unleaded,150,4,AUTOMATIC,front wheel drive,3,N/A,Midsize,Passenger Minivan,24,18,535,2000 +Plymouth,Voyager,2000,flex-fuel (unleaded/E85),158,6,AUTOMATIC,front wheel drive,4,Flex Fuel,Midsize,Passenger Minivan,23,16,535,2317 +Plymouth,Voyager,2000,regular unleaded,150,4,AUTOMATIC,front wheel drive,3,N/A,Midsize,Passenger Minivan,24,18,535,2008 +Ford,Windstar Cargo,2001,regular unleaded,200,6,AUTOMATIC,front wheel drive,3,N/A,Midsize,Cargo Minivan,22,16,5657,20220 +Ford,Windstar Cargo,2002,regular unleaded,200,6,AUTOMATIC,front wheel drive,3,N/A,Midsize,Cargo Minivan,21,16,5657,20585 +Ford,Windstar Cargo,2003,regular unleaded,200,6,AUTOMATIC,front wheel drive,3,N/A,Midsize,Cargo Minivan,22,16,5657,21075 +Ford,Windstar,2001,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,5657,31115 +Ford,Windstar,2001,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,5657,25000 +Ford,Windstar,2001,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,5657,27435 +Ford,Windstar,2001,regular unleaded,200,6,AUTOMATIC,front wheel drive,3,N/A,Midsize,Passenger Minivan,22,16,5657,22185 +Ford,Windstar,2001,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,5657,28595 +Ford,Windstar,2001,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,5657,33765 +Ford,Windstar,2002,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,21,16,5657,28900 +Ford,Windstar,2002,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,21,16,5657,27460 +Ford,Windstar,2002,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,21,16,5657,26375 +Ford,Windstar,2002,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,21,16,5657,31630 +Ford,Windstar,2002,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,21,16,5657,34040 +Ford,Windstar,2002,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,21,16,5657,22340 +Ford,Windstar,2003,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,5657,27870 +Ford,Windstar,2003,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,5657,23070 +Ford,Windstar,2003,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,5657,26315 +Ford,Windstar,2003,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,5657,29230 +Ford,Windstar,2003,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,5657,34825 +Ford,Windstar,2003,regular unleaded,200,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Passenger Minivan,22,16,5657,31835 +Rolls-Royce,Wraith,2014,premium unleaded (required),624,12,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Large,Coupe,21,13,86,284900 +Rolls-Royce,Wraith,2015,premium unleaded (required),624,12,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Large,Coupe,21,13,86,294025 +Rolls-Royce,Wraith,2016,premium unleaded (required),624,12,AUTOMATIC,rear wheel drive,2,"Exotic,Luxury,High-Performance",Large,Coupe,21,13,86,304350 +Subaru,WRX,2015,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Factory Tuner,High-Performance",Compact,Sedan,23,17,640,37395 +Subaru,WRX,2015,premium unleaded (recommended),268,4,AUTOMATIC,all wheel drive,4,Performance,Compact,Sedan,25,19,640,31195 +Subaru,WRX,2015,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Factory Tuner,High-Performance",Compact,Sedan,23,17,640,38495 +Subaru,WRX,2015,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Factory Tuner,High-Performance",Compact,Sedan,23,17,640,34495 +Subaru,WRX,2015,premium unleaded (recommended),268,4,MANUAL,all wheel drive,4,Performance,Compact,Sedan,28,21,640,29995 +Subaru,WRX,2015,premium unleaded (recommended),268,4,AUTOMATIC,all wheel drive,4,Performance,Compact,Sedan,25,19,640,29695 +Subaru,WRX,2015,premium unleaded (recommended),268,4,MANUAL,all wheel drive,4,Performance,Compact,Sedan,28,21,640,26295 +Subaru,WRX,2015,premium unleaded (recommended),268,4,MANUAL,all wheel drive,4,Performance,Compact,Sedan,28,21,640,28495 +Subaru,WRX,2016,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Factory Tuner,High-Performance",Compact,Sedan,23,17,640,34695 +Subaru,WRX,2016,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Factory Tuner,High-Performance",Compact,Sedan,23,17,640,39995 +Subaru,WRX,2016,premium unleaded (recommended),268,4,MANUAL,all wheel drive,4,Performance,Compact,Sedan,27,20,640,28895 +Subaru,WRX,2016,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Factory Tuner,High-Performance",Compact,Sedan,23,17,640,38995 +Subaru,WRX,2016,premium unleaded (recommended),268,4,MANUAL,all wheel drive,4,Performance,Compact,Sedan,27,20,640,30395 +Subaru,WRX,2016,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Factory Tuner,High-Performance",Compact,Sedan,23,17,640,39995 +Subaru,WRX,2016,premium unleaded (recommended),268,4,AUTOMATIC,all wheel drive,4,Performance,Compact,Sedan,24,18,640,31595 +Subaru,WRX,2016,premium unleaded (recommended),268,4,AUTOMATIC,all wheel drive,4,Performance,Compact,Sedan,24,18,640,30095 +Subaru,WRX,2016,premium unleaded (recommended),268,4,MANUAL,all wheel drive,4,Performance,Compact,Sedan,27,20,640,26595 +Subaru,WRX,2017,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Factory Tuner,High-Performance",Compact,Sedan,23,17,640,39995 +Subaru,WRX,2017,premium unleaded (recommended),268,4,MANUAL,all wheel drive,4,Performance,Compact,Sedan,27,20,640,26695 +Subaru,WRX,2017,premium unleaded (recommended),268,4,AUTOMATIC,all wheel drive,4,Performance,Compact,Sedan,24,18,640,30195 +Subaru,WRX,2017,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Factory Tuner,High-Performance",Compact,Sedan,23,17,640,39995 +Subaru,WRX,2017,premium unleaded (recommended),268,4,MANUAL,all wheel drive,4,Performance,Compact,Sedan,27,20,640,30995 +Subaru,WRX,2017,premium unleaded (recommended),268,4,AUTOMATIC,all wheel drive,4,Performance,Compact,Sedan,24,18,640,32195 +Subaru,WRX,2017,premium unleaded (recommended),268,4,MANUAL,all wheel drive,4,Performance,Compact,Sedan,27,20,640,28995 +Subaru,WRX,2017,premium unleaded (required),305,4,MANUAL,all wheel drive,4,"Factory Tuner,High-Performance",Compact,Sedan,23,17,640,35195 +Suzuki,X-90,1996,regular unleaded,95,4,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,26,22,481,2000 +Suzuki,X-90,1996,regular unleaded,95,4,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,26,22,481,2000 +Suzuki,X-90,1997,regular unleaded,95,4,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,26,22,481,2000 +Suzuki,X-90,1997,regular unleaded,95,4,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,26,22,481,2000 +Suzuki,X-90,1998,regular unleaded,95,4,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,26,22,481,2000 +Suzuki,X-90,1998,regular unleaded,95,4,MANUAL,four wheel drive,2,N/A,Compact,2dr SUV,26,22,481,2000 +Suzuki,X-90,1998,regular unleaded,95,4,MANUAL,rear wheel drive,2,N/A,Compact,2dr SUV,26,22,481,2000 +BMW,X1,2015,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,34,23,3916,31200 +BMW,X1,2015,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,32,22,3916,33000 +BMW,X1,2015,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,27,18,3916,39100 +BMW,X1,2016,premium unleaded (required),228,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,32,22,3916,34800 +BMW,X1,2017,premium unleaded (required),228,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,32,23,3916,33100 +BMW,X1,2017,premium unleaded (required),228,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Compact,4dr SUV,31,22,3916,35100 +BMW,X3,2015,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,26,19,3916,45500 +BMW,X3,2015,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,21,3916,40500 +BMW,X3,2015,diesel,180,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,34,27,3916,42000 +BMW,X3,2015,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,21,3916,38500 +BMW,X3,2016,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,21,3916,38950 +BMW,X3,2016,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,27,19,3916,46800 +BMW,X3,2016,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,21,3916,40950 +BMW,X3,2016,diesel,180,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,34,27,3916,42450 +BMW,X3,2017,diesel,180,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,34,27,3916,42750 +BMW,X3,2017,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,26,19,3916,47950 +BMW,X3,2017,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,21,3916,41250 +BMW,X3,2017,premium unleaded (required),240,4,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,21,3916,39250 +BMW,X4,2015,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,3916,44700 +BMW,X4,2015,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,27,19,3916,48000 +BMW,X4,2016,premium unleaded (required),360,6,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,25,18,3916,57800 +BMW,X4,2016,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,3916,45250 +BMW,X4,2016,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,27,19,3916,49700 +BMW,X4,2017,premium unleaded (required),355,6,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,26,19,3916,58100 +BMW,X4,2017,premium unleaded (required),240,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,28,20,3916,45550 +BMW,X5 M,2015,premium unleaded (required),567,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,19,14,3916,98700 +BMW,X5 M,2016,premium unleaded (required),567,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,19,14,3916,98800 +BMW,X5 M,2017,premium unleaded (required),567,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,19,14,3916,98800 +BMW,X5,2015,diesel,255,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,31,24,3916,57700 +BMW,X5,2015,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,3916,53900 +BMW,X5,2015,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,18,3916,56200 +BMW,X5,2015,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,22,15,3916,70100 +BMW,X5,2016,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,18,3916,57000 +BMW,X5,2016,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,21,15,3916,71500 +BMW,X5,2016,diesel,255,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,30,23,3916,57700 +BMW,X5,2016,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,18,3916,54700 +BMW,X5,2017,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,18,3916,57800 +BMW,X5,2017,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,18,3916,55500 +BMW,X5,2017,diesel,255,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Diesel",Midsize,4dr SUV,30,23,3916,59300 +BMW,X5,2017,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,21,15,3916,72300 +BMW,X6 M,2015,premium unleaded (required),567,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,19,14,3916,102100 +BMW,X6 M,2016,premium unleaded (required),567,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,19,14,3916,102200 +BMW,X6 M,2017,premium unleaded (required),567,8,AUTOMATIC,all wheel drive,4,"Crossover,Factory Tuner,Luxury,High-Performance",Midsize,4dr SUV,19,14,3916,102200 +BMW,X6,2015,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,18,3916,61900 +BMW,X6,2015,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,22,15,3916,72900 +BMW,X6,2015,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,3916,59600 +BMW,X6,2016,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,18,3916,62900 +BMW,X6,2016,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,18,3916,60600 +BMW,X6,2016,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,21,15,3916,75300 +BMW,X6,2017,premium unleaded (required),300,6,AUTOMATIC,rear wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,18,3916,61400 +BMW,X6,2017,premium unleaded (required),445,8,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,21,15,3916,76100 +BMW,X6,2017,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,24,18,3916,63700 +Scion,xA,2004,regular unleaded,108,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,27,105,12480 +Scion,xA,2004,regular unleaded,108,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,27,105,13280 +Scion,xA,2005,regular unleaded,108,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,105,13330 +Scion,xA,2005,regular unleaded,108,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,27,105,12530 +Scion,xA,2006,regular unleaded,103,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,27,105,13580 +Scion,xA,2006,regular unleaded,103,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,34,27,105,12780 +Scion,xB,2013,regular unleaded,158,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,28,22,105,16970 +Scion,xB,2013,regular unleaded,158,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,28,22,105,19210 +Scion,xB,2013,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,28,22,105,17920 +Scion,xB,2013,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,28,22,105,20160 +Scion,xB,2014,regular unleaded,158,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,28,22,105,16970 +Scion,xB,2014,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,28,22,105,20420 +Scion,xB,2014,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,28,22,105,17920 +Scion,xB,2015,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,28,22,105,18070 +Scion,xB,2015,regular unleaded,158,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Wagon,28,22,105,19685 +Scion,xB,2015,regular unleaded,158,4,MANUAL,front wheel drive,4,N/A,Compact,Wagon,28,22,105,17120 +Volvo,XC60,2015,regular unleaded,325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,870,51050 +Volvo,XC60,2015,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,870,45550 +Volvo,XC60,2015,regular unleaded,302,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,30,22,870,46750 +Volvo,XC60,2015,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,870,48250 +Volvo,XC60,2015,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,870,41550 +Volvo,XC60,2015,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,870,42650 +Volvo,XC60,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,31,24,870,38850 +Volvo,XC60,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,31,24,870,39650 +Volvo,XC60,2015,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,870,42950 +Volvo,XC60,2015,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,870,43850 +Volvo,XC60,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,31,24,870,43900 +Volvo,XC60,2015,regular unleaded,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,18,870,37250 +Volvo,XC60,2015,regular unleaded,302,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,30,22,870,45550 +Volvo,XC60,2015,regular unleaded,302,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,30,22,870,41450 +Volvo,XC60,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,31,24,870,35750 +Volvo,XC60,2015,regular unleaded,325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,870,45800 +Volvo,XC60,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,31,24,870,42850 +Volvo,XC60,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,31,24,870,40250 +Volvo,XC60,2015,regular unleaded,325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,870,47200 +Volvo,XC60,2015,regular unleaded,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,18,870,41750 +Volvo,XC60,2015,regular unleaded,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,18,870,40350 +Volvo,XC60,2015,regular unleaded,302,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,30,22,870,44050 +Volvo,XC60,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,31,24,870,36400 +Volvo,XC60,2015,regular unleaded,325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,870,49800 +Volvo,XC60,2015,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,870,47050 +Volvo,XC60,2015,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,18,870,45400 +Volvo,XC60,2015,regular unleaded,302,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,30,22,870,42350 +Volvo,XC60,2015,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,18,870,41150 +Volvo,XC60,2015,regular unleaded,302,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,30,22,870,40050 +Volvo,XC60,2015,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,18,870,37900 +Volvo,XC60,2015,regular unleaded,325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,24,17,870,46950 +Volvo,XC60,2015,regular unleaded,302,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,30,22,870,41150 +Volvo,XC60,2015,regular unleaded,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,18,870,44350 +Volvo,XC60,2016,regular unleaded,302,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,29,22,870,41350 +Volvo,XC60,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,19,870,38100 +Volvo,XC60,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,19,870,41350 +Volvo,XC60,2016,regular unleaded,325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,23,17,870,46950 +Volvo,XC60,2016,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,23,17,870,42650 +Volvo,XC60,2016,regular unleaded,302,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,28,20,870,47200 +Volvo,XC60,2016,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,23,17,870,47050 +Volvo,XC60,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,31,23,870,36600 +Volvo,XC60,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,31,23,870,44150 +Volvo,XC60,2016,regular unleaded,302,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,28,20,870,47750 +Volvo,XC60,2016,regular unleaded,325,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,23,17,870,51050 +Volvo,XC60,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,19,870,45650 +Volvo,XC60,2016,regular unleaded,302,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,28,20,870,43350 +Volvo,XC60,2016,regular unleaded,302,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,28,20,870,51300 +Volvo,XC60,2016,regular unleaded,302,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,29,22,870,45750 +Volvo,XC60,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,31,23,870,39850 +Volvo,XC60,2017,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,30,23,870,40950 +Volvo,XC60,2017,regular unleaded,302,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,29,20,870,46350 +Volvo,XC60,2017,regular unleaded,302,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,29,20,870,51000 +Volvo,XC60,2017,regular unleaded,302,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Midsize,4dr SUV,29,20,870,46350 +Volvo,XC60,2017,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,30,23,870,40950 +Volvo,XC70,2014,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,Wagon,26,18,870,34500 +Volvo,XC70,2014,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,24,17,870,40950 +Volvo,XC70,2015,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,24,17,870,42050 +Volvo,XC70,2015,regular unleaded,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,25,18,870,36900 +Volvo,XC70,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,Wagon,31,24,870,36050 +Volvo,XC70,2015,regular unleaded,300,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,24,17,870,41800 +Volvo,XC70,2015,regular unleaded,240,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,25,18,870,37550 +Volvo,XC70,2015,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,Wagon,31,24,870,35400 +Volvo,XC70,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,Wagon,31,23,870,46675 +Volvo,XC70,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,26,19,870,43050 +Volvo,XC70,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,26,19,870,48175 +Volvo,XC70,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,Wagon,31,23,870,41550 +Volvo,XC70,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,26,19,870,47175 +Volvo,XC70,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,26,19,870,38600 +Volvo,XC70,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,Wagon,31,23,870,37100 +Volvo,XC70,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,Wagon,31,23,870,45675 +Volvo,XC70,2016,regular unleaded,250,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,26,19,870,42050 +Volvo,XC70,2016,regular unleaded,240,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,Wagon,31,23,870,40550 +Volvo,XC90,2014,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,16,870,39700 +Volvo,XC90,2014,regular unleaded,240,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,25,16,870,42700 +Volvo,XC90,2016,premium unleaded (recommended),250,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,25,22,870,53250 +Volvo,XC90,2016,premium unleaded (recommended),316,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,4dr SUV,25,20,870,49800 +Volvo,XC90,2016,premium unleaded (recommended),250,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Large,4dr SUV,26,22,870,43950 +Volvo,XC90,2016,premium unleaded (recommended),316,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,4dr SUV,25,20,870,55400 +Volvo,XC90,2016,premium unleaded (recommended),316,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,4dr SUV,25,20,870,53800 +Volvo,XC90,2016,premium unleaded (recommended),250,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Large,4dr SUV,26,22,870,51250 +Volvo,XC90,2016,premium unleaded (recommended),316,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,25,20,870,65700 +Volvo,XC90,2016,premium unleaded (recommended),250,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,25,22,870,51350 +Volvo,XC90,2016,premium unleaded (recommended),250,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Large,4dr SUV,25,22,870,45950 +Volvo,XC90,2016,premium unleaded (recommended),250,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Large,4dr SUV,26,22,870,49350 +Volvo,XC90,2017,premium unleaded (recommended),250,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Large,4dr SUV,26,22,870,51150 +Volvo,XC90,2017,premium unleaded (recommended),316,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,4dr SUV,25,20,870,57200 +Volvo,XC90,2017,premium unleaded (recommended),316,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,4dr SUV,25,20,870,51600 +Volvo,XC90,2017,premium unleaded (recommended),250,4,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Large,4dr SUV,26,22,870,45750 +Volvo,XC90,2017,premium unleaded (recommended),316,4,AUTOMATIC,all wheel drive,4,"Crossover,Luxury,Performance",Large,4dr SUV,25,20,870,55600 +Volvo,XC,2002,premium unleaded (required),197,5,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,Wagon,23,17,870,36500 +Scion,xD,2012,regular unleaded,128,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,33,27,105,15345 +Scion,xD,2012,regular unleaded,128,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,33,27,105,16145 +Scion,xD,2012,regular unleaded,128,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,33,27,105,16250 +Scion,xD,2012,regular unleaded,128,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,33,27,105,17050 +Scion,xD,2013,regular unleaded,128,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,33,27,105,18955 +Scion,xD,2013,regular unleaded,128,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,33,27,105,16545 +Scion,xD,2013,regular unleaded,128,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,33,27,105,18155 +Scion,xD,2013,regular unleaded,128,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,33,27,105,15745 +Scion,xD,2014,regular unleaded,128,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,33,27,105,15920 +Scion,xD,2014,regular unleaded,128,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,33,27,105,16720 +Hyundai,XG300,2001,regular unleaded,192,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,17,1439,24999 +Hyundai,XG300,2001,regular unleaded,192,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,25,17,1439,23499 +Hyundai,XG350,2003,regular unleaded,194,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,15,1439,23999 +Hyundai,XG350,2003,regular unleaded,194,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,15,1439,25599 +Hyundai,XG350,2004,regular unleaded,194,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,15,1439,25599 +Hyundai,XG350,2004,regular unleaded,194,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,15,1439,23999 +Hyundai,XG350,2005,regular unleaded,194,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,16,1439,24899 +Hyundai,XG350,2005,regular unleaded,194,6,AUTOMATIC,front wheel drive,4,N/A,Midsize,Sedan,24,16,1439,26499 +Suzuki,XL-7,2004,regular unleaded,185,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,481,25799 +Suzuki,XL-7,2004,regular unleaded,185,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,27499 +Suzuki,XL-7,2004,regular unleaded,185,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,21999 +Suzuki,XL-7,2004,regular unleaded,185,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,481,23799 +Suzuki,XL-7,2004,regular unleaded,185,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,481,22599 +Suzuki,XL-7,2004,regular unleaded,185,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,22999 +Suzuki,XL-7,2004,regular unleaded,185,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,25499 +Suzuki,XL-7,2004,regular unleaded,185,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,24499 +Suzuki,XL-7,2004,regular unleaded,185,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,20099 +Suzuki,XL-7,2004,regular unleaded,185,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,481,21099 +Suzuki,XL-7,2005,regular unleaded,185,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,22299 +Suzuki,XL-7,2005,regular unleaded,185,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,24799 +Suzuki,XL-7,2005,regular unleaded,185,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,20899 +Suzuki,XL-7,2005,regular unleaded,185,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,481,21899 +Suzuki,XL-7,2005,regular unleaded,185,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,27799 +Suzuki,XL-7,2005,regular unleaded,185,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,23299 +Suzuki,XL-7,2005,regular unleaded,185,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,481,21399 +Suzuki,XL-7,2005,regular unleaded,185,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,25799 +Suzuki,XL-7,2005,regular unleaded,185,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,481,22899 +Suzuki,XL-7,2005,regular unleaded,185,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,481,23399 +Suzuki,XL-7,2005,regular unleaded,185,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,481,24099 +Suzuki,XL-7,2005,regular unleaded,185,6,MANUAL,rear wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,20399 +Suzuki,XL-7,2005,regular unleaded,185,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,481,26099 +Suzuki,XL-7,2006,regular unleaded,185,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,24899 +Suzuki,XL-7,2006,regular unleaded,185,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,26699 +Suzuki,XL-7,2006,regular unleaded,185,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,481,23199 +Suzuki,XL-7,2006,regular unleaded,185,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,481,23699 +Suzuki,XL-7,2006,regular unleaded,185,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,481,25499 +Suzuki,XL-7,2006,regular unleaded,185,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,21,16,481,21999 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,24599 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,481,29549 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,27949 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,481,28349 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,25949 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,481,24599 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,481,31749 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,481,26999 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,481,27549 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,24349 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,481,25949 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,481,26199 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,25399 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,21,16,481,28649 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,27049 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,22999 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,30149 +Suzuki,XL7,2007,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,26749 +Suzuki,XL7,2008,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,481,25199 +Suzuki,XL7,2008,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,481,29149 +Suzuki,XL7,2008,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,481,29149 +Suzuki,XL7,2008,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,27499 +Suzuki,XL7,2008,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,26599 +Suzuki,XL7,2008,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,23549 +Suzuki,XL7,2008,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,25099 +Suzuki,XL7,2008,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,21599 +Suzuki,XL7,2008,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,25049 +Suzuki,XL7,2008,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,481,26699 +Suzuki,XL7,2008,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,481,26749 +Suzuki,XL7,2008,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,22,16,481,27499 +Suzuki,XL7,2008,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,22,15,481,28249 +Suzuki,XL7,2009,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,481,28280 +Suzuki,XL7,2009,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,16,481,29930 +Suzuki,XL7,2009,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,481,28580 +Suzuki,XL7,2009,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,16,481,29079 +Suzuki,XL7,2009,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,481,27429 +Suzuki,XL7,2009,regular unleaded,252,6,AUTOMATIC,front wheel drive,4,Crossover,Midsize,4dr SUV,24,17,481,25745 +Suzuki,XL7,2009,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,16,481,27395 +Suzuki,XL7,2009,regular unleaded,252,6,AUTOMATIC,all wheel drive,4,Crossover,Midsize,4dr SUV,23,16,481,30230 +Cadillac,XLR-V,2007,premium unleaded (required),443,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,20,13,1624,97460 +Cadillac,XLR-V,2008,premium unleaded (required),443,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,21,14,1624,99160 +Cadillac,XLR-V,2008,premium unleaded (required),443,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,21,14,1624,100660 +Cadillac,XLR-V,2009,premium unleaded (required),443,8,AUTOMATIC,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,23,14,1624,104215 +Cadillac,XLR,2007,regular unleaded,320,8,AUTOMATIC,rear wheel drive,2,Luxury,Compact,Convertible,24,15,1624,80655 +Cadillac,XLR,2007,regular unleaded,320,8,AUTOMATIC,rear wheel drive,2,Luxury,Compact,Convertible,24,15,1624,84160 +Cadillac,XLR,2007,regular unleaded,320,8,AUTOMATIC,rear wheel drive,2,Luxury,Compact,Convertible,24,15,1624,78335 +Cadillac,XLR,2008,regular unleaded,320,8,AUTOMATIC,rear wheel drive,2,Luxury,Compact,Convertible,24,15,1624,80650 +Cadillac,XLR,2008,regular unleaded,320,8,AUTOMATIC,rear wheel drive,2,Luxury,Compact,Convertible,24,15,1624,81855 +Cadillac,XLR,2008,regular unleaded,320,8,AUTOMATIC,rear wheel drive,2,Luxury,Compact,Convertible,24,15,1624,85650 +Cadillac,XLR,2009,premium unleaded (recommended),320,8,AUTOMATIC,rear wheel drive,2,Luxury,Compact,Convertible,24,15,1624,86215 +Cadillac,XT5,2017,premium unleaded (required),310,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,1624,62500 +Cadillac,XT5,2017,premium unleaded (required),310,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,1624,51895 +Cadillac,XT5,2017,premium unleaded (required),310,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,1624,38995 +Cadillac,XT5,2017,premium unleaded (required),310,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,1624,47390 +Cadillac,XT5,2017,premium unleaded (required),310,6,AUTOMATIC,front wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,27,19,1624,44895 +Cadillac,XT5,2017,premium unleaded (required),310,6,AUTOMATIC,all wheel drive,4,"Crossover,Luxury",Midsize,4dr SUV,26,18,1624,54390 +Nissan,Xterra,2013,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,2009,26900 +Nissan,Xterra,2013,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,20,16,2009,29440 +Nissan,Xterra,2013,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,20,16,2009,25850 +Nissan,Xterra,2013,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,2009,30490 +Nissan,Xterra,2013,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,22,16,2009,24850 +Nissan,Xterra,2013,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,2009,24990 +Nissan,Xterra,2013,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,22,16,2009,22940 +Nissan,Xterra,2014,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,2009,31370 +Nissan,Xterra,2014,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,22,16,2009,25300 +Nissan,Xterra,2014,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,2009,27350 +Nissan,Xterra,2014,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,2009,25440 +Nissan,Xterra,2014,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,20,16,2009,26300 +Nissan,Xterra,2014,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,22,16,2009,23390 +Nissan,Xterra,2014,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,20,16,2009,30320 +Nissan,Xterra,2015,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,2009,26670 +Nissan,Xterra,2015,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,2009,27720 +Nissan,Xterra,2015,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,2009,25710 +Nissan,Xterra,2015,regular unleaded,261,6,MANUAL,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,2009,30590 +Nissan,Xterra,2015,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,22,16,2009,23660 +Nissan,Xterra,2015,regular unleaded,261,6,AUTOMATIC,four wheel drive,4,N/A,Midsize,4dr SUV,20,15,2009,31640 +Nissan,Xterra,2015,regular unleaded,261,6,AUTOMATIC,rear wheel drive,4,N/A,Midsize,4dr SUV,22,16,2009,25670 +Cadillac,XTS,2015,regular unleaded,304,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,26,17,1624,64245 +Cadillac,XTS,2015,regular unleaded,304,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,1624,44660 +Cadillac,XTS,2015,regular unleaded,304,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,1624,54670 +Cadillac,XTS,2015,premium unleaded (required),410,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,1624,62735 +Cadillac,XTS,2015,regular unleaded,304,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,26,17,1624,56900 +Cadillac,XTS,2015,regular unleaded,304,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,26,17,1624,51000 +Cadillac,XTS,2015,regular unleaded,304,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,1624,49000 +Cadillac,XTS,2015,premium unleaded (required),410,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,24,16,1624,69785 +Cadillac,XTS,2015,regular unleaded,304,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,1624,62015 +Cadillac,XTS,2016,regular unleaded,304,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,1624,45295 +Cadillac,XTS,2016,regular unleaded,304,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,1624,49250 +Cadillac,XTS,2016,regular unleaded,304,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,1624,55705 +Cadillac,XTS,2016,regular unleaded,304,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,26,17,1624,66780 +Cadillac,XTS,2016,premium unleaded (required),410,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,16,1624,72320 +Cadillac,XTS,2016,regular unleaded,304,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,26,17,1624,51250 +Cadillac,XTS,2016,premium unleaded (required),410,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,16,1624,63770 +Cadillac,XTS,2016,regular unleaded,304,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,1624,64550 +Cadillac,XTS,2016,regular unleaded,304,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,26,17,1624,57935 +Cadillac,XTS,2017,regular unleaded,304,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,1624,45295 +Cadillac,XTS,2017,regular unleaded,304,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,26,17,1624,66795 +Cadillac,XTS,2017,regular unleaded,304,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,1624,49295 +Cadillac,XTS,2017,regular unleaded,304,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,26,17,1624,57995 +Cadillac,XTS,2017,regular unleaded,304,6,AUTOMATIC,all wheel drive,4,"Luxury,Performance",Large,Sedan,26,17,1624,51295 +Cadillac,XTS,2017,premium unleaded (required),410,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,16,1624,63795 +Cadillac,XTS,2017,premium unleaded (required),410,6,AUTOMATIC,all wheel drive,4,"Luxury,High-Performance",Large,Sedan,23,16,1624,72395 +Cadillac,XTS,2017,regular unleaded,304,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,1624,64595 +Cadillac,XTS,2017,regular unleaded,304,6,AUTOMATIC,front wheel drive,4,"Luxury,Performance",Large,Sedan,28,18,1624,55795 +Subaru,XT,1991,regular unleaded,97,4,MANUAL,front wheel drive,2,N/A,Compact,Coupe,29,22,640,2000 +Subaru,XT,1991,regular unleaded,145,6,AUTOMATIC,front wheel drive,2,N/A,Compact,Coupe,26,18,640,2000 +Subaru,XT,1991,regular unleaded,145,6,MANUAL,all wheel drive,2,N/A,Compact,Coupe,23,16,640,2000 +Subaru,XV Crosstrek,2013,regular unleaded,148,4,MANUAL,all wheel drive,4,Crossover,Compact,4dr SUV,30,23,640,21995 +Subaru,XV Crosstrek,2013,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,33,25,640,24495 +Subaru,XV Crosstrek,2013,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,33,25,640,22995 +Subaru,XV Crosstrek,2014,regular unleaded,160,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,33,29,640,25995 +Subaru,XV Crosstrek,2014,regular unleaded,160,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,33,29,640,29295 +Subaru,XV Crosstrek,2014,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,33,25,640,22995 +Subaru,XV Crosstrek,2014,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,33,25,640,24495 +Subaru,XV Crosstrek,2014,regular unleaded,148,4,MANUAL,all wheel drive,4,Crossover,Compact,4dr SUV,30,23,640,21995 +Subaru,XV Crosstrek,2015,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,34,26,640,24795 +Subaru,XV Crosstrek,2015,regular unleaded,160,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,34,30,640,29295 +Subaru,XV Crosstrek,2015,regular unleaded,160,4,AUTOMATIC,all wheel drive,4,"Crossover,Hybrid",Compact,4dr SUV,34,30,640,25995 +Subaru,XV Crosstrek,2015,regular unleaded,148,4,MANUAL,all wheel drive,4,Crossover,Compact,4dr SUV,31,23,640,22295 +Subaru,XV Crosstrek,2015,regular unleaded,148,4,MANUAL,all wheel drive,4,Crossover,Compact,4dr SUV,31,23,640,21595 +Subaru,XV Crosstrek,2015,regular unleaded,148,4,AUTOMATIC,all wheel drive,4,Crossover,Compact,4dr SUV,34,26,640,23295 +Toyota,Yaris iA,2017,regular unleaded,106,4,MANUAL,front wheel drive,4,N/A,Compact,Sedan,39,30,2031,15950 +Toyota,Yaris iA,2017,regular unleaded,106,4,AUTOMATIC,front wheel drive,4,N/A,Compact,Sedan,40,32,2031,17050 +Toyota,Yaris,2015,regular unleaded,106,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,30,2031,16820 +Toyota,Yaris,2015,regular unleaded,106,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,30,2031,16880 +Toyota,Yaris,2015,regular unleaded,106,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,36,30,2031,16505 +Toyota,Yaris,2015,regular unleaded,106,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,30,2031,15945 +Toyota,Yaris,2015,regular unleaded,106,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,37,30,2031,14845 +Toyota,Yaris,2015,regular unleaded,106,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,36,30,2031,15570 +Toyota,Yaris,2015,regular unleaded,106,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,30,2031,17620 +Toyota,Yaris,2016,regular unleaded,106,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,30,2031,17670 +Toyota,Yaris,2016,regular unleaded,106,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,37,30,2031,16870 +Toyota,Yaris,2016,regular unleaded,106,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,36,30,2031,16555 +Toyota,Yaris,2016,regular unleaded,106,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,30,2031,16930 +Toyota,Yaris,2016,regular unleaded,106,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,37,30,2031,14895 +Toyota,Yaris,2016,regular unleaded,106,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,36,30,2031,15620 +Toyota,Yaris,2016,regular unleaded,106,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,30,2031,15995 +Toyota,Yaris,2017,regular unleaded,106,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,35,30,2031,16000 +Toyota,Yaris,2017,regular unleaded,106,4,AUTOMATIC,front wheel drive,2,Hatchback,Compact,2dr Hatchback,35,30,2031,16910 +Toyota,Yaris,2017,regular unleaded,106,4,MANUAL,front wheel drive,2,Hatchback,Compact,2dr Hatchback,36,30,2031,15250 +Toyota,Yaris,2017,regular unleaded,106,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,30,2031,16375 +Toyota,Yaris,2017,regular unleaded,106,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,30,2031,17285 +Toyota,Yaris,2017,regular unleaded,106,4,AUTOMATIC,front wheel drive,4,Hatchback,Compact,4dr Hatchback,35,30,2031,18000 +Toyota,Yaris,2017,regular unleaded,106,4,MANUAL,front wheel drive,4,Hatchback,Compact,4dr Hatchback,36,30,2031,17200 +GMC,Yukon Denali,2000,regular unleaded,255,8,AUTOMATIC,four wheel drive,4,Luxury,Large,4dr SUV,15,11,549,3949 +GMC,Yukon Hybrid,2011,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,549,54420 +GMC,Yukon Hybrid,2011,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,549,51610 +GMC,Yukon Hybrid,2011,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,549,61770 +GMC,Yukon Hybrid,2011,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,549,58925 +GMC,Yukon Hybrid,2012,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,549,55280 +GMC,Yukon Hybrid,2012,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,549,63130 +GMC,Yukon Hybrid,2012,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,549,52470 +GMC,Yukon Hybrid,2012,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,549,60285 +GMC,Yukon Hybrid,2013,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,549,54145 +GMC,Yukon Hybrid,2013,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,549,64805 +GMC,Yukon Hybrid,2013,regular unleaded,332,8,AUTOMATIC,four wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,549,56955 +GMC,Yukon Hybrid,2013,regular unleaded,332,8,AUTOMATIC,rear wheel drive,4,"Luxury,Hybrid",Large,4dr SUV,23,20,549,61960 +GMC,Yukon XL,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,22,15,549,61925 +GMC,Yukon XL,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,4dr SUV,23,16,549,58925 +GMC,Yukon XL,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,22,15,549,53440 +GMC,Yukon XL,2015,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,Performance,Large,4dr SUV,21,15,549,67220 +GMC,Yukon XL,2015,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,Performance,Large,4dr SUV,20,14,549,70220 +GMC,Yukon XL,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,4dr SUV,23,16,549,50440 +GMC,Yukon XL,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,549,51015 +GMC,Yukon XL,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,549,59700 +GMC,Yukon XL,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,15,549,54015 +GMC,Yukon XL,2016,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,Performance,Large,4dr SUV,22,15,549,68025 +GMC,Yukon XL,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,15,549,62700 +GMC,Yukon XL,2016,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,Performance,Large,4dr SUV,20,14,549,71025 +GMC,Yukon XL,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,15,549,54230 +GMC,Yukon XL,2017,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,Performance,Large,4dr SUV,22,15,549,68665 +GMC,Yukon XL,2017,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,Performance,Large,4dr SUV,20,14,549,71665 +GMC,Yukon XL,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,15,549,63015 +GMC,Yukon XL,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,549,51230 +GMC,Yukon XL,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,549,60015 +GMC,Yukon,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,22,16,549,50740 +GMC,Yukon,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,4dr SUV,23,16,549,47740 +GMC,Yukon,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,Flex Fuel,Large,4dr SUV,22,16,549,59225 +GMC,Yukon,2015,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,Flex Fuel,Large,4dr SUV,23,16,549,56225 +GMC,Yukon,2015,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,N/A,Large,4dr SUV,21,15,549,64520 +GMC,Yukon,2015,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,N/A,Large,4dr SUV,21,14,549,67520 +GMC,Yukon,2016,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,Performance,Large,4dr SUV,22,15,549,65325 +GMC,Yukon,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,16,549,51315 +GMC,Yukon,2016,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,Performance,Large,4dr SUV,21,15,549,68325 +GMC,Yukon,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,549,57000 +GMC,Yukon,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,549,48315 +GMC,Yukon,2016,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,16,549,60000 +GMC,Yukon,2017,premium unleaded (recommended),420,8,AUTOMATIC,four wheel drive,4,Performance,Large,4dr SUV,20,15,549,68965 +GMC,Yukon,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,549,57315 +GMC,Yukon,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,16,549,51530 +GMC,Yukon,2017,premium unleaded (recommended),420,8,AUTOMATIC,rear wheel drive,4,Performance,Large,4dr SUV,22,15,549,65965 +GMC,Yukon,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,four wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,22,16,549,60315 +GMC,Yukon,2017,flex-fuel (unleaded/E85),355,8,AUTOMATIC,rear wheel drive,4,"Flex Fuel,Performance",Large,4dr SUV,23,16,549,48530 +BMW,Z3,2000,regular unleaded,193,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,24,17,3916,4976 +BMW,Z3,2000,regular unleaded,193,6,MANUAL,rear wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,24,17,3916,4697 +BMW,Z3,2000,regular unleaded,170,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,25,17,3916,4755 +BMW,Z3,2001,premium unleaded (required),225,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,26,19,3916,37900 +BMW,Z3,2001,premium unleaded (required),184,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,25,18,3916,31300 +BMW,Z3,2001,premium unleaded (required),225,6,MANUAL,rear wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,26,19,3916,37700 +BMW,Z3,2002,premium unleaded (required),225,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,26,19,3916,37900 +BMW,Z3,2002,premium unleaded (required),184,6,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,25,18,3916,31300 +BMW,Z3,2002,premium unleaded (required),225,6,MANUAL,rear wheel drive,2,"Hatchback,Luxury,Performance",Compact,2dr Hatchback,26,19,3916,37700 +BMW,Z4 M,2007,premium unleaded (required),330,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,22,15,3916,50100 +BMW,Z4 M,2007,premium unleaded (required),330,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,22,15,3916,52100 +BMW,Z4 M,2008,premium unleaded (required),330,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Coupe,23,15,3916,50400 +BMW,Z4 M,2008,premium unleaded (required),330,6,MANUAL,rear wheel drive,2,"Factory Tuner,Luxury,High-Performance",Compact,Convertible,23,15,3916,52400 +BMW,Z4,2014,premium unleaded (required),240,4,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,34,22,3916,48950 +BMW,Z4,2014,premium unleaded (required),300,6,MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,26,19,3916,56950 +BMW,Z4,2014,premium unleaded (required),335,6,AUTOMATED_MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,24,17,3916,65800 +BMW,Z4,2015,premium unleaded (required),240,4,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,34,22,3916,48950 +BMW,Z4,2015,premium unleaded (required),300,6,AUTOMATED_MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,24,17,3916,56950 +BMW,Z4,2015,premium unleaded (required),335,6,AUTOMATED_MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,24,17,3916,65800 +BMW,Z4,2016,premium unleaded (required),300,6,AUTOMATED_MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,24,17,3916,57500 +BMW,Z4,2016,premium unleaded (required),240,4,MANUAL,rear wheel drive,2,"Luxury,Performance",Compact,Convertible,34,22,3916,49700 +BMW,Z4,2016,premium unleaded (required),335,6,AUTOMATED_MANUAL,rear wheel drive,2,"Luxury,High-Performance",Compact,Convertible,24,17,3916,66350 +BMW,Z8,2001,premium unleaded (required),394,8,MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Convertible,19,12,3916,128000 +BMW,Z8,2002,premium unleaded (required),394,8,MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Convertible,19,12,3916,130000 +BMW,Z8,2003,premium unleaded (required),394,8,MANUAL,rear wheel drive,2,"Exotic,Luxury,High-Performance",Compact,Convertible,19,12,3916,131500 +Acura,ZDX,2011,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback,Luxury",Midsize,4dr Hatchback,23,16,204,46020 +Acura,ZDX,2011,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback,Luxury",Midsize,4dr Hatchback,23,16,204,56570 +Acura,ZDX,2011,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback,Luxury",Midsize,4dr Hatchback,23,16,204,50520 +Acura,ZDX,2012,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback,Luxury",Midsize,4dr Hatchback,23,16,204,46120 +Acura,ZDX,2012,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback,Luxury",Midsize,4dr Hatchback,23,16,204,56670 +Acura,ZDX,2012,premium unleaded (required),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback,Luxury",Midsize,4dr Hatchback,23,16,204,50620 +Acura,ZDX,2013,premium unleaded (recommended),300,6,AUTOMATIC,all wheel drive,4,"Crossover,Hatchback,Luxury",Midsize,4dr Hatchback,23,16,204,50920 +Lincoln,Zephyr,2006,regular unleaded,221,6,AUTOMATIC,front wheel drive,4,Luxury,Midsize,Sedan,26,17,61,28995 \ No newline at end of file diff --git a/docs/static/data/examples/cars.d.ts b/docs/static/data/examples/cars.d.ts new file mode 100644 index 000000000..c532d0fe6 --- /dev/null +++ b/docs/static/data/examples/cars.d.ts @@ -0,0 +1,18 @@ +export type CarData = { + make: string; + model: string; + year: number; + engine_fuel_Type: string; + engine_hp: number; + engine_cylinders: number; + transmission_type: string; + driven_wheels: number; + number_of_doors: string; + market_category: string; + vehicle_size: string; + vehicle_style: string; + highway_mpg: number; + city_mpg: number; + popularity: number; + msrp: number; +}; diff --git a/docs/static/data/examples/dailyTemperatures.csv b/docs/static/data/examples/dailyTemperatures.csv new file mode 100644 index 000000000..4ca11e9b4 --- /dev/null +++ b/docs/static/data/examples/dailyTemperatures.csv @@ -0,0 +1,31111 @@ +dayOfYear,year,value +1,1940,11.721 +1,1941,11.816 +1,1942,11.564 +1,1943,11.857 +1,1944,11.952 +1,1945,11.829 +1,1946,11.734 +1,1947,11.569 +1,1948,11.953 +1,1949,11.61 +1,1950,11.674 +1,1951,11.565 +1,1952,11.934 +1,1953,11.735 +1,1954,11.569 +1,1955,11.609 +1,1956,11.469 +1,1957,11.71 +1,1958,11.818 +1,1959,11.615 +1,1960,11.96 +1,1961,11.851 +1,1962,11.78 +1,1963,11.873 +1,1964,12.068 +1,1965,11.461 +1,1966,11.966 +1,1967,11.793 +1,1968,11.76 +1,1969,11.62 +1,1970,12.026 +1,1971,11.815 +1,1972,11.841 +1,1973,12.194 +1,1974,12.028 +1,1975,11.88 +1,1976,11.992 +1,1977,11.725 +1,1978,11.865 +1,1979,12.042 +1,1980,12.107 +1,1981,12.253 +1,1982,11.97 +1,1983,12.154 +1,1984,11.94 +1,1985,11.897 +1,1986,12.043 +1,1987,11.831 +1,1988,12.311 +1,1989,11.843 +1,1990,12.413 +1,1991,12.297 +1,1992,12.202 +1,1993,12.124 +1,1994,12.122 +1,1995,12.587 +1,1996,12.329 +1,1997,12.067 +1,1998,12.306 +1,1999,12.138 +1,2000,12.149 +1,2001,12.092 +1,2002,12.693 +1,2003,12.235 +1,2004,12.75 +1,2005,12.522 +1,2006,12.599 +1,2007,12.701 +1,2008,12.188 +1,2009,12.58 +1,2010,12.496 +1,2011,12.338 +1,2012,12.68 +1,2013,12.502 +1,2014,12.553 +1,2015,12.518 +1,2016,13.17 +1,2017,13.067 +1,2018,12.715 +1,2019,12.798 +1,2020,13.098 +1,2021,12.601 +1,2022,12.661 +1,2023,12.965 +1,2024,13.398 +2,1940,11.661 +2,1941,11.806 +2,1942,11.516 +2,1943,11.83 +2,1944,11.96 +2,1945,11.763 +2,1946,11.705 +2,1947,11.54 +2,1948,11.916 +2,1949,11.638 +2,1950,11.627 +2,1951,11.576 +2,1952,11.802 +2,1953,11.748 +2,1954,11.514 +2,1955,11.592 +2,1956,11.497 +2,1957,11.671 +2,1958,11.849 +2,1959,11.567 +2,1960,11.945 +2,1961,11.808 +2,1962,11.789 +2,1963,11.96 +2,1964,12.116 +2,1965,11.467 +2,1966,11.92 +2,1967,11.767 +2,1968,11.682 +2,1969,11.629 +2,1970,12.012 +2,1971,11.821 +2,1972,11.901 +2,1973,12.154 +2,1974,11.963 +2,1975,11.814 +2,1976,11.943 +2,1977,11.765 +2,1978,11.884 +2,1979,12.035 +2,1980,12.062 +2,1981,12.227 +2,1982,11.891 +2,1983,12.081 +2,1984,12.046 +2,1985,11.951 +2,1986,12.04 +2,1987,11.805 +2,1988,12.359 +2,1989,11.819 +2,1990,12.371 +2,1991,12.246 +2,1992,12.201 +2,1993,12.165 +2,1994,12.181 +2,1995,12.591 +2,1996,12.307 +2,1997,12.177 +2,1998,12.408 +2,1999,12.08 +2,2000,12.108 +2,2001,12.097 +2,2002,12.616 +2,2003,12.293 +2,2004,12.737 +2,2005,12.607 +2,2006,12.63 +2,2007,12.784 +2,2008,12.123 +2,2009,12.503 +2,2010,12.475 +2,2011,12.361 +2,2012,12.604 +2,2013,12.505 +2,2014,12.556 +2,2015,12.547 +2,2016,13.141 +2,2017,13.033 +2,2018,12.731 +2,2019,12.86 +2,2020,13.192 +2,2021,12.617 +2,2022,12.651 +2,2023,12.951 +2,2024,13.301 +3,1940,11.661 +3,1941,11.782 +3,1942,11.487 +3,1943,11.739 +3,1944,11.986 +3,1945,11.698 +3,1946,11.742 +3,1947,11.497 +3,1948,11.935 +3,1949,11.626 +3,1950,11.508 +3,1951,11.536 +3,1952,11.709 +3,1953,11.763 +3,1954,11.533 +3,1955,11.649 +3,1956,11.525 +3,1957,11.628 +3,1958,11.868 +3,1959,11.517 +3,1960,11.934 +3,1961,11.804 +3,1962,11.817 +3,1963,11.985 +3,1964,12.098 +3,1965,11.457 +3,1966,11.924 +3,1967,11.696 +3,1968,11.616 +3,1969,11.69 +3,1970,12.032 +3,1971,11.806 +3,1972,11.811 +3,1973,12.116 +3,1974,11.867 +3,1975,11.758 +3,1976,11.873 +3,1977,11.789 +3,1978,11.959 +3,1979,12.011 +3,1980,11.991 +3,1981,12.198 +3,1982,11.833 +3,1983,12.028 +3,1984,12.149 +3,1985,11.999 +3,1986,12.016 +3,1987,11.715 +3,1988,12.362 +3,1989,11.818 +3,1990,12.322 +3,1991,12.215 +3,1992,12.246 +3,1993,12.153 +3,1994,12.182 +3,1995,12.551 +3,1996,12.25 +3,1997,12.273 +3,1998,12.483 +3,1999,12.089 +3,2000,12.037 +3,2001,12.087 +3,2002,12.599 +3,2003,12.39 +3,2004,12.702 +3,2005,12.707 +3,2006,12.616 +3,2007,12.848 +3,2008,12.065 +3,2009,12.442 +3,2010,12.543 +3,2011,12.356 +3,2012,12.492 +3,2013,12.528 +3,2014,12.539 +3,2015,12.58 +3,2016,13.096 +3,2017,12.963 +3,2018,12.751 +3,2019,12.905 +3,2020,13.177 +3,2021,12.667 +3,2022,12.604 +3,2023,12.906 +3,2024,13.192 +4,1940,11.678 +4,1941,11.722 +4,1942,11.506 +4,1943,11.638 +4,1944,11.94 +4,1945,11.676 +4,1946,11.748 +4,1947,11.576 +4,1948,11.986 +4,1949,11.632 +4,1950,11.434 +4,1951,11.439 +4,1952,11.633 +4,1953,11.694 +4,1954,11.564 +4,1955,11.709 +4,1956,11.595 +4,1957,11.661 +4,1958,11.914 +4,1959,11.5 +4,1960,11.884 +4,1961,11.756 +4,1962,11.832 +4,1963,12.004 +4,1964,12.091 +4,1965,11.447 +4,1966,11.901 +4,1967,11.662 +4,1968,11.648 +4,1969,11.803 +4,1970,12.067 +4,1971,11.795 +4,1972,11.722 +4,1973,12.145 +4,1974,11.863 +4,1975,11.734 +4,1976,11.739 +4,1977,11.829 +4,1978,11.937 +4,1979,11.988 +4,1980,11.838 +4,1981,12.244 +4,1982,11.841 +4,1983,12.063 +4,1984,12.191 +4,1985,11.961 +4,1986,11.975 +4,1987,11.72 +4,1988,12.39 +4,1989,11.776 +4,1990,12.242 +4,1991,12.2 +4,1992,12.252 +4,1993,12.136 +4,1994,12.103 +4,1995,12.456 +4,1996,12.131 +4,1997,12.229 +4,1998,12.521 +4,1999,12.09 +4,2000,11.986 +4,2001,12.134 +4,2002,12.626 +4,2003,12.468 +4,2004,12.632 +4,2005,12.688 +4,2006,12.566 +4,2007,12.921 +4,2008,12.116 +4,2009,12.416 +4,2010,12.552 +4,2011,12.358 +4,2012,12.449 +4,2013,12.58 +4,2014,12.463 +4,2015,12.639 +4,2016,13.077 +4,2017,12.882 +4,2018,12.742 +4,2019,12.893 +4,2020,13.152 +4,2021,12.69 +4,2022,12.587 +4,2023,12.829 +4,2024,13.135 +5,1940,11.605 +5,1941,11.628 +5,1942,11.553 +5,1943,11.634 +5,1944,11.864 +5,1945,11.669 +5,1946,11.794 +5,1947,11.758 +5,1948,11.941 +5,1949,11.696 +5,1950,11.42 +5,1951,11.376 +5,1952,11.622 +5,1953,11.615 +5,1954,11.574 +5,1955,11.717 +5,1956,11.702 +5,1957,11.663 +5,1958,11.973 +5,1959,11.459 +5,1960,11.901 +5,1961,11.738 +5,1962,11.901 +5,1963,12.023 +5,1964,12.079 +5,1965,11.401 +5,1966,11.826 +5,1967,11.628 +5,1968,11.668 +5,1969,11.843 +5,1970,12.108 +5,1971,11.844 +5,1972,11.665 +5,1973,12.173 +5,1974,11.917 +5,1975,11.752 +5,1976,11.674 +5,1977,11.894 +5,1978,11.926 +5,1979,12.038 +5,1980,11.828 +5,1981,12.27 +5,1982,11.825 +5,1983,12.142 +5,1984,12.287 +5,1985,11.993 +5,1986,11.965 +5,1987,11.78 +5,1988,12.425 +5,1989,11.757 +5,1990,12.174 +5,1991,12.163 +5,1992,12.29 +5,1993,12.032 +5,1994,12.067 +5,1995,12.38 +5,1996,12.087 +5,1997,12.149 +5,1998,12.529 +5,1999,12.08 +5,2000,11.921 +5,2001,12.148 +5,2002,12.644 +5,2003,12.551 +5,2004,12.529 +5,2005,12.694 +5,2006,12.527 +5,2007,12.925 +5,2008,12.288 +5,2009,12.432 +5,2010,12.516 +5,2011,12.385 +5,2012,12.52 +5,2013,12.59 +5,2014,12.441 +5,2015,12.611 +5,2016,13.082 +5,2017,12.737 +5,2018,12.76 +5,2019,12.833 +5,2020,13.061 +5,2021,12.694 +5,2022,12.631 +5,2023,12.772 +5,2024,13.111 +6,1940,11.519 +6,1941,11.706 +6,1942,11.697 +6,1943,11.671 +6,1944,11.817 +6,1945,11.67 +6,1946,11.831 +6,1947,11.847 +6,1948,11.877 +6,1949,11.819 +6,1950,11.446 +6,1951,11.323 +6,1952,11.585 +6,1953,11.55 +6,1954,11.546 +6,1955,11.726 +6,1956,11.766 +6,1957,11.636 +6,1958,11.98 +6,1959,11.493 +6,1960,11.895 +6,1961,11.762 +6,1962,11.968 +6,1963,11.957 +6,1964,12.013 +6,1965,11.4 +6,1966,11.728 +6,1967,11.635 +6,1968,11.664 +6,1969,11.872 +6,1970,12.052 +6,1971,11.867 +6,1972,11.582 +6,1973,12.199 +6,1974,11.936 +6,1975,11.818 +6,1976,11.643 +6,1977,11.945 +6,1978,11.94 +6,1979,12.064 +6,1980,11.855 +6,1981,12.275 +6,1982,11.8 +6,1983,12.236 +6,1984,12.285 +6,1985,11.98 +6,1986,12.006 +6,1987,11.842 +6,1988,12.414 +6,1989,11.807 +6,1990,12.123 +6,1991,12.082 +6,1992,12.273 +6,1993,11.989 +6,1994,12.013 +6,1995,12.328 +6,1996,12.106 +6,1997,12.092 +6,1998,12.508 +6,1999,12.06 +6,2000,11.921 +6,2001,12.177 +6,2002,12.655 +6,2003,12.579 +6,2004,12.387 +6,2005,12.678 +6,2006,12.472 +6,2007,12.876 +6,2008,12.376 +6,2009,12.462 +6,2010,12.495 +6,2011,12.424 +6,2012,12.558 +6,2013,12.569 +6,2014,12.432 +6,2015,12.591 +6,2016,13.122 +6,2017,12.607 +6,2018,12.804 +6,2019,12.801 +6,2020,13.023 +6,2021,12.719 +6,2022,12.693 +6,2023,12.727 +6,2024,13.086 +7,1940,11.492 +7,1941,11.759 +7,1942,11.808 +7,1943,11.699 +7,1944,11.807 +7,1945,11.671 +7,1946,11.803 +7,1947,11.913 +7,1948,11.89 +7,1949,11.873 +7,1950,11.402 +7,1951,11.299 +7,1952,11.541 +7,1953,11.576 +7,1954,11.558 +7,1955,11.777 +7,1956,11.741 +7,1957,11.612 +7,1958,12.007 +7,1959,11.67 +7,1960,11.903 +7,1961,11.837 +7,1962,11.987 +7,1963,11.977 +7,1964,11.925 +7,1965,11.369 +7,1966,11.655 +7,1967,11.67 +7,1968,11.567 +7,1969,11.843 +7,1970,12.002 +7,1971,11.853 +7,1972,11.562 +7,1973,12.123 +7,1974,11.889 +7,1975,11.849 +7,1976,11.596 +7,1977,12.036 +7,1978,11.912 +7,1979,12.038 +7,1980,11.883 +7,1981,12.224 +7,1982,11.731 +7,1983,12.265 +7,1984,12.185 +7,1985,11.974 +7,1986,12.022 +7,1987,11.874 +7,1988,12.412 +7,1989,11.824 +7,1990,12.082 +7,1991,12.039 +7,1992,12.252 +7,1993,12.004 +7,1994,12.007 +7,1995,12.316 +7,1996,12.147 +7,1997,12.052 +7,1998,12.423 +7,1999,12.054 +7,2000,11.97 +7,2001,12.172 +7,2002,12.619 +7,2003,12.635 +7,2004,12.197 +7,2005,12.707 +7,2006,12.442 +7,2007,12.733 +7,2008,12.368 +7,2009,12.436 +7,2010,12.442 +7,2011,12.455 +7,2012,12.503 +7,2013,12.575 +7,2014,12.434 +7,2015,12.519 +7,2016,13.135 +7,2017,12.487 +7,2018,12.854 +7,2019,12.735 +7,2020,13.03 +7,2021,12.752 +7,2022,12.753 +7,2023,12.724 +7,2024,13.014 +8,1940,11.459 +8,1941,11.805 +8,1942,11.833 +8,1943,11.731 +8,1944,11.845 +8,1945,11.666 +8,1946,11.81 +8,1947,11.957 +8,1948,11.975 +8,1949,11.818 +8,1950,11.429 +8,1951,11.335 +8,1952,11.602 +8,1953,11.683 +8,1954,11.604 +8,1955,11.857 +8,1956,11.752 +8,1957,11.58 +8,1958,12.004 +8,1959,11.771 +8,1960,11.879 +8,1961,11.863 +8,1962,12.005 +8,1963,11.947 +8,1964,11.806 +8,1965,11.38 +8,1966,11.621 +8,1967,11.726 +8,1968,11.445 +8,1969,11.784 +8,1970,11.964 +8,1971,11.795 +8,1972,11.569 +8,1973,12.079 +8,1974,11.755 +8,1975,11.84 +8,1976,11.562 +8,1977,12.033 +8,1978,11.862 +8,1979,12.018 +8,1980,11.941 +8,1981,12.155 +8,1982,11.693 +8,1983,12.293 +8,1984,12.062 +8,1985,12.021 +8,1986,11.972 +8,1987,11.841 +8,1988,12.375 +8,1989,11.778 +8,1990,12.076 +8,1991,12.068 +8,1992,12.193 +8,1993,12.012 +8,1994,11.995 +8,1995,12.32 +8,1996,12.131 +8,1997,11.946 +8,1998,12.416 +8,1999,12.064 +8,2000,12.069 +8,2001,12.174 +8,2002,12.636 +8,2003,12.683 +8,2004,12.119 +8,2005,12.716 +8,2006,12.425 +8,2007,12.707 +8,2008,12.293 +8,2009,12.409 +8,2010,12.428 +8,2011,12.465 +8,2012,12.423 +8,2013,12.566 +8,2014,12.456 +8,2015,12.396 +8,2016,13.12 +8,2017,12.453 +8,2018,12.89 +8,2019,12.647 +8,2020,12.971 +8,2021,12.747 +8,2022,12.76 +8,2023,12.717 +8,2024,13.008 +9,1940,11.349 +9,1941,11.797 +9,1942,11.901 +9,1943,11.758 +9,1944,11.878 +9,1945,11.604 +9,1946,11.806 +9,1947,11.914 +9,1948,12.038 +9,1949,11.808 +9,1950,11.512 +9,1951,11.387 +9,1952,11.679 +9,1953,11.784 +9,1954,11.56 +9,1955,11.832 +9,1956,11.828 +9,1957,11.526 +9,1958,11.994 +9,1959,11.822 +9,1960,11.907 +9,1961,11.861 +9,1962,11.927 +9,1963,11.876 +9,1964,11.736 +9,1965,11.386 +9,1966,11.577 +9,1967,11.704 +9,1968,11.456 +9,1969,11.721 +9,1970,11.986 +9,1971,11.788 +9,1972,11.593 +9,1973,12.073 +9,1974,11.639 +9,1975,11.78 +9,1976,11.553 +9,1977,11.977 +9,1978,11.784 +9,1979,12.013 +9,1980,12.006 +9,1981,12.146 +9,1982,11.756 +9,1983,12.293 +9,1984,12.005 +9,1985,12.045 +9,1986,11.999 +9,1987,11.81 +9,1988,12.376 +9,1989,11.764 +9,1990,12.095 +9,1991,12.139 +9,1992,12.139 +9,1993,11.948 +9,1994,11.964 +9,1995,12.261 +9,1996,12.192 +9,1997,11.912 +9,1998,12.377 +9,1999,12.055 +9,2000,12.156 +9,2001,12.164 +9,2002,12.724 +9,2003,12.687 +9,2004,12.196 +9,2005,12.731 +9,2006,12.396 +9,2007,12.715 +9,2008,12.23 +9,2009,12.372 +9,2010,12.45 +9,2011,12.399 +9,2012,12.399 +9,2013,12.56 +9,2014,12.557 +9,2015,12.395 +9,2016,13.088 +9,2017,12.532 +9,2018,12.856 +9,2019,12.605 +9,2020,12.95 +9,2021,12.758 +9,2022,12.739 +9,2023,12.693 +9,2024,13.053 +10,1940,11.352 +10,1941,11.835 +10,1942,11.93 +10,1943,11.753 +10,1944,11.934 +10,1945,11.555 +10,1946,11.828 +10,1947,11.885 +10,1948,11.969 +10,1949,11.785 +10,1950,11.56 +10,1951,11.423 +10,1952,11.711 +10,1953,11.825 +10,1954,11.585 +10,1955,11.807 +10,1956,11.901 +10,1957,11.563 +10,1958,11.973 +10,1959,11.878 +10,1960,11.925 +10,1961,11.796 +10,1962,11.786 +10,1963,11.758 +10,1964,11.708 +10,1965,11.352 +10,1966,11.491 +10,1967,11.669 +10,1968,11.514 +10,1969,11.657 +10,1970,11.987 +10,1971,11.719 +10,1972,11.579 +10,1973,12.121 +10,1974,11.604 +10,1975,11.721 +10,1976,11.62 +10,1977,11.912 +10,1978,11.758 +10,1979,11.992 +10,1980,12.062 +10,1981,12.135 +10,1982,11.745 +10,1983,12.312 +10,1984,12.02 +10,1985,12.047 +10,1986,12.069 +10,1987,11.878 +10,1988,12.347 +10,1989,11.792 +10,1990,12.155 +10,1991,12.2 +10,1992,12.097 +10,1993,11.924 +10,1994,11.989 +10,1995,12.147 +10,1996,12.285 +10,1997,11.964 +10,1998,12.31 +10,1999,12.033 +10,2000,12.215 +10,2001,12.118 +10,2002,12.841 +10,2003,12.568 +10,2004,12.3 +10,2005,12.742 +10,2006,12.367 +10,2007,12.74 +10,2008,12.234 +10,2009,12.306 +10,2010,12.454 +10,2011,12.344 +10,2012,12.369 +10,2013,12.561 +10,2014,12.624 +10,2015,12.49 +10,2016,13.083 +10,2017,12.596 +10,2018,12.817 +10,2019,12.543 +10,2020,12.889 +10,2021,12.766 +10,2022,12.722 +10,2023,12.675 +10,2024,13.033 +11,1940,11.405 +11,1941,11.855 +11,1942,11.898 +11,1943,11.707 +11,1944,12 +11,1945,11.535 +11,1946,11.864 +11,1947,11.866 +11,1948,11.921 +11,1949,11.845 +11,1950,11.561 +11,1951,11.5 +11,1952,11.704 +11,1953,11.781 +11,1954,11.518 +11,1955,11.763 +11,1956,11.94 +11,1957,11.57 +11,1958,12.04 +11,1959,11.88 +11,1960,11.902 +11,1961,11.785 +11,1962,11.712 +11,1963,11.601 +11,1964,11.651 +11,1965,11.358 +11,1966,11.512 +11,1967,11.701 +11,1968,11.513 +11,1969,11.649 +11,1970,11.934 +11,1971,11.706 +11,1972,11.485 +11,1973,12.093 +11,1974,11.641 +11,1975,11.618 +11,1976,11.646 +11,1977,11.903 +11,1978,11.794 +11,1979,11.993 +11,1980,12.06 +11,1981,12.116 +11,1982,11.695 +11,1983,12.308 +11,1984,11.937 +11,1985,12.012 +11,1986,12.165 +11,1987,11.919 +11,1988,12.391 +11,1989,11.836 +11,1990,12.217 +11,1991,12.253 +11,1992,12.09 +11,1993,12.028 +11,1994,12.014 +11,1995,12.161 +11,1996,12.295 +11,1997,11.982 +11,1998,12.329 +11,1999,12.003 +11,2000,12.187 +11,2001,12.078 +11,2002,12.847 +11,2003,12.411 +11,2004,12.389 +11,2005,12.732 +11,2006,12.408 +11,2007,12.765 +11,2008,12.175 +11,2009,12.275 +11,2010,12.425 +11,2011,12.293 +11,2012,12.281 +11,2013,12.506 +11,2014,12.684 +11,2015,12.565 +11,2016,13.138 +11,2017,12.662 +11,2018,12.76 +11,2019,12.569 +11,2020,12.865 +11,2021,12.715 +11,2022,12.734 +11,2023,12.66 +11,2024,12.977 +12,1940,11.451 +12,1941,11.81 +12,1942,11.91 +12,1943,11.659 +12,1944,12.071 +12,1945,11.534 +12,1946,11.854 +12,1947,11.82 +12,1948,11.905 +12,1949,11.95 +12,1950,11.553 +12,1951,11.516 +12,1952,11.716 +12,1953,11.74 +12,1954,11.485 +12,1955,11.811 +12,1956,11.955 +12,1957,11.593 +12,1958,12.066 +12,1959,11.923 +12,1960,11.926 +12,1961,11.849 +12,1962,11.785 +12,1963,11.483 +12,1964,11.596 +12,1965,11.436 +12,1966,11.552 +12,1967,11.747 +12,1968,11.488 +12,1969,11.684 +12,1970,11.884 +12,1971,11.781 +12,1972,11.409 +12,1973,12.014 +12,1974,11.603 +12,1975,11.559 +12,1976,11.702 +12,1977,11.942 +12,1978,11.859 +12,1979,12.035 +12,1980,12.036 +12,1981,12.121 +12,1982,11.724 +12,1983,12.293 +12,1984,11.92 +12,1985,11.945 +12,1986,12.106 +12,1987,12.027 +12,1988,12.446 +12,1989,11.854 +12,1990,12.226 +12,1991,12.314 +12,1992,12.116 +12,1993,12.099 +12,1994,12.033 +12,1995,12.153 +12,1996,12.245 +12,1997,11.969 +12,1998,12.304 +12,1999,12.044 +12,2000,12.144 +12,2001,12.096 +12,2002,12.781 +12,2003,12.404 +12,2004,12.39 +12,2005,12.71 +12,2006,12.459 +12,2007,12.777 +12,2008,12.096 +12,2009,12.316 +12,2010,12.443 +12,2011,12.3 +12,2012,12.206 +12,2013,12.482 +12,2014,12.712 +12,2015,12.654 +12,2016,13.177 +12,2017,12.682 +12,2018,12.623 +12,2019,12.65 +12,2020,12.898 +12,2021,12.713 +12,2022,12.798 +12,2023,12.652 +12,2024,12.92 +13,1940,11.567 +13,1941,11.82 +13,1942,11.908 +13,1943,11.731 +13,1944,12.116 +13,1945,11.579 +13,1946,11.857 +13,1947,11.768 +13,1948,11.857 +13,1949,12.004 +13,1950,11.563 +13,1951,11.548 +13,1952,11.823 +13,1953,11.707 +13,1954,11.513 +13,1955,11.915 +13,1956,11.891 +13,1957,11.651 +13,1958,12.105 +13,1959,11.997 +13,1960,11.912 +13,1961,11.862 +13,1962,11.799 +13,1963,11.46 +13,1964,11.59 +13,1965,11.55 +13,1966,11.565 +13,1967,11.756 +13,1968,11.501 +13,1969,11.782 +13,1970,11.889 +13,1971,11.769 +13,1972,11.326 +13,1973,11.979 +13,1974,11.597 +13,1975,11.57 +13,1976,11.741 +13,1977,11.953 +13,1978,11.958 +13,1979,12.028 +13,1980,12.141 +13,1981,12.159 +13,1982,11.759 +13,1983,12.215 +13,1984,11.943 +13,1985,11.944 +13,1986,12.002 +13,1987,12.187 +13,1988,12.425 +13,1989,11.884 +13,1990,12.17 +13,1991,12.364 +13,1992,12.133 +13,1993,12.161 +13,1994,11.982 +13,1995,12.116 +13,1996,12.189 +13,1997,11.926 +13,1998,12.21 +13,1999,12.095 +13,2000,12.039 +13,2001,12.112 +13,2002,12.724 +13,2003,12.472 +13,2004,12.381 +13,2005,12.672 +13,2006,12.458 +13,2007,12.803 +13,2008,12.03 +13,2009,12.362 +13,2010,12.463 +13,2011,12.31 +13,2012,12.229 +13,2013,12.516 +13,2014,12.757 +13,2015,12.709 +13,2016,13.147 +13,2017,12.603 +13,2018,12.545 +13,2019,12.75 +13,2020,12.933 +13,2021,12.748 +13,2022,12.832 +13,2023,12.572 +13,2024,12.901 +14,1940,11.592 +14,1941,11.795 +14,1942,11.956 +14,1943,11.774 +14,1944,12.188 +14,1945,11.591 +14,1946,11.803 +14,1947,11.738 +14,1948,11.757 +14,1949,12.021 +14,1950,11.601 +14,1951,11.604 +14,1952,11.905 +14,1953,11.706 +14,1954,11.578 +14,1955,12.027 +14,1956,11.801 +14,1957,11.718 +14,1958,12.061 +14,1959,12.03 +14,1960,11.864 +14,1961,11.864 +14,1962,11.822 +14,1963,11.506 +14,1964,11.584 +14,1965,11.635 +14,1966,11.472 +14,1967,11.703 +14,1968,11.558 +14,1969,11.836 +14,1970,11.923 +14,1971,11.734 +14,1972,11.262 +14,1973,12.035 +14,1974,11.549 +14,1975,11.605 +14,1976,11.682 +14,1977,11.939 +14,1978,11.982 +14,1979,11.962 +14,1980,12.227 +14,1981,12.172 +14,1982,11.797 +14,1983,12.109 +14,1984,12.036 +14,1985,11.918 +14,1986,11.971 +14,1987,12.273 +14,1988,12.385 +14,1989,11.874 +14,1990,12.129 +14,1991,12.34 +14,1992,12.066 +14,1993,12.187 +14,1994,11.919 +14,1995,12.138 +14,1996,12.051 +14,1997,11.896 +14,1998,12.137 +14,1999,12.177 +14,2000,11.93 +14,2001,12.115 +14,2002,12.643 +14,2003,12.529 +14,2004,12.383 +14,2005,12.636 +14,2006,12.445 +14,2007,12.757 +14,2008,12.006 +14,2009,12.372 +14,2010,12.564 +14,2011,12.322 +14,2012,12.282 +14,2013,12.535 +14,2014,12.764 +14,2015,12.725 +14,2016,13.093 +14,2017,12.549 +14,2018,12.55 +14,2019,12.785 +14,2020,12.971 +14,2021,12.753 +14,2022,12.886 +14,2023,12.475 +14,2024,12.94 +15,1940,11.522 +15,1941,11.742 +15,1942,11.992 +15,1943,11.789 +15,1944,12.171 +15,1945,11.559 +15,1946,11.802 +15,1947,11.679 +15,1948,11.668 +15,1949,11.993 +15,1950,11.582 +15,1951,11.627 +15,1952,11.936 +15,1953,11.706 +15,1954,11.622 +15,1955,12.088 +15,1956,11.722 +15,1957,11.762 +15,1958,12.011 +15,1959,12.01 +15,1960,11.812 +15,1961,11.864 +15,1962,11.816 +15,1963,11.559 +15,1964,11.626 +15,1965,11.698 +15,1966,11.418 +15,1967,11.581 +15,1968,11.593 +15,1969,11.898 +15,1970,11.991 +15,1971,11.711 +15,1972,11.255 +15,1973,12.079 +15,1974,11.566 +15,1975,11.683 +15,1976,11.664 +15,1977,11.93 +15,1978,11.908 +15,1979,11.927 +15,1980,12.305 +15,1981,12.207 +15,1982,11.779 +15,1983,12.062 +15,1984,12.084 +15,1985,11.949 +15,1986,11.984 +15,1987,12.294 +15,1988,12.382 +15,1989,11.86 +15,1990,12.125 +15,1991,12.257 +15,1992,12.036 +15,1993,12.232 +15,1994,11.805 +15,1995,12.229 +15,1996,11.988 +15,1997,11.961 +15,1998,12.171 +15,1999,12.339 +15,2000,11.876 +15,2001,12.179 +15,2002,12.58 +15,2003,12.549 +15,2004,12.409 +15,2005,12.556 +15,2006,12.342 +15,2007,12.72 +15,2008,12.031 +15,2009,12.41 +15,2010,12.661 +15,2011,12.321 +15,2012,12.289 +15,2013,12.527 +15,2014,12.736 +15,2015,12.756 +15,2016,13.104 +15,2017,12.584 +15,2018,12.58 +15,2019,12.771 +15,2020,12.988 +15,2021,12.709 +15,2022,12.821 +15,2023,12.491 +15,2024,12.984 +16,1940,11.47 +16,1941,11.736 +16,1942,11.944 +16,1943,11.704 +16,1944,12.067 +16,1945,11.558 +16,1946,11.805 +16,1947,11.646 +16,1948,11.651 +16,1949,11.918 +16,1950,11.499 +16,1951,11.63 +16,1952,11.995 +16,1953,11.712 +16,1954,11.698 +16,1955,12.061 +16,1956,11.646 +16,1957,11.818 +16,1958,12.045 +16,1959,11.958 +16,1960,11.746 +16,1961,11.905 +16,1962,11.82 +16,1963,11.599 +16,1964,11.681 +16,1965,11.749 +16,1966,11.454 +16,1967,11.496 +16,1968,11.597 +16,1969,11.953 +16,1970,12.001 +16,1971,11.755 +16,1972,11.322 +16,1973,12.088 +16,1974,11.59 +16,1975,11.776 +16,1976,11.648 +16,1977,11.917 +16,1978,11.838 +16,1979,11.96 +16,1980,12.375 +16,1981,12.27 +16,1982,11.727 +16,1983,12.085 +16,1984,12.103 +16,1985,11.907 +16,1986,11.983 +16,1987,12.331 +16,1988,12.451 +16,1989,11.869 +16,1990,12.209 +16,1991,12.253 +16,1992,12.089 +16,1993,12.282 +16,1994,11.716 +16,1995,12.278 +16,1996,11.979 +16,1997,12.003 +16,1998,12.225 +16,1999,12.475 +16,2000,11.878 +16,2001,12.253 +16,2002,12.532 +16,2003,12.594 +16,2004,12.389 +16,2005,12.502 +16,2006,12.24 +16,2007,12.718 +16,2008,12.006 +16,2009,12.471 +16,2010,12.705 +16,2011,12.303 +16,2012,12.303 +16,2013,12.52 +16,2014,12.684 +16,2015,12.8 +16,2016,12.988 +16,2017,12.644 +16,2018,12.634 +16,2019,12.762 +16,2020,13.004 +16,2021,12.667 +16,2022,12.758 +16,2023,12.58 +16,2024,13.021 +17,1940,11.478 +17,1941,11.757 +17,1942,11.948 +17,1943,11.56 +17,1944,12.055 +17,1945,11.622 +17,1946,11.839 +17,1947,11.683 +17,1948,11.663 +17,1949,11.857 +17,1950,11.493 +17,1951,11.612 +17,1952,12.127 +17,1953,11.705 +17,1954,11.679 +17,1955,12.07 +17,1956,11.612 +17,1957,11.775 +17,1958,12.111 +17,1959,12.027 +17,1960,11.712 +17,1961,11.934 +17,1962,11.832 +17,1963,11.585 +17,1964,11.733 +17,1965,11.85 +17,1966,11.495 +17,1967,11.511 +17,1968,11.627 +17,1969,11.954 +17,1970,11.971 +17,1971,11.755 +17,1972,11.423 +17,1973,12.122 +17,1974,11.644 +17,1975,11.809 +17,1976,11.605 +17,1977,11.915 +17,1978,11.846 +17,1979,12.076 +17,1980,12.379 +17,1981,12.302 +17,1982,11.732 +17,1983,12.2 +17,1984,12.115 +17,1985,11.923 +17,1986,12.007 +17,1987,12.373 +17,1988,12.455 +17,1989,11.855 +17,1990,12.238 +17,1991,12.304 +17,1992,12.123 +17,1993,12.231 +17,1994,11.758 +17,1995,12.288 +17,1996,11.971 +17,1997,11.992 +17,1998,12.268 +17,1999,12.56 +17,2000,11.927 +17,2001,12.321 +17,2002,12.485 +17,2003,12.641 +17,2004,12.366 +17,2005,12.49 +17,2006,12.197 +17,2007,12.729 +17,2008,12.003 +17,2009,12.606 +17,2010,12.731 +17,2011,12.277 +17,2012,12.262 +17,2013,12.454 +17,2014,12.656 +17,2015,12.781 +17,2016,12.875 +17,2017,12.738 +17,2018,12.688 +17,2019,12.767 +17,2020,13.009 +17,2021,12.611 +17,2022,12.726 +17,2023,12.646 +17,2024,13.042 +18,1940,11.527 +18,1941,11.745 +18,1942,11.998 +18,1943,11.444 +18,1944,12.109 +18,1945,11.746 +18,1946,11.922 +18,1947,11.727 +18,1948,11.693 +18,1949,11.809 +18,1950,11.431 +18,1951,11.618 +18,1952,12.186 +18,1953,11.738 +18,1954,11.642 +18,1955,12.035 +18,1956,11.572 +18,1957,11.714 +18,1958,12.139 +18,1959,12.122 +18,1960,11.73 +18,1961,11.931 +18,1962,11.873 +18,1963,11.585 +18,1964,11.724 +18,1965,11.925 +18,1966,11.51 +18,1967,11.558 +18,1968,11.715 +18,1969,11.929 +18,1970,11.901 +18,1971,11.759 +18,1972,11.579 +18,1973,12.168 +18,1974,11.704 +18,1975,11.887 +18,1976,11.518 +18,1977,11.989 +18,1978,11.872 +18,1979,12.107 +18,1980,12.402 +18,1981,12.329 +18,1982,11.68 +18,1983,12.291 +18,1984,12.094 +18,1985,11.952 +18,1986,12.032 +18,1987,12.293 +18,1988,12.357 +18,1989,11.873 +18,1990,12.188 +18,1991,12.386 +18,1992,12.152 +18,1993,12.145 +18,1994,11.822 +18,1995,12.311 +18,1996,11.9 +18,1997,11.999 +18,1998,12.279 +18,1999,12.57 +18,2000,11.999 +18,2001,12.362 +18,2002,12.493 +18,2003,12.652 +18,2004,12.365 +18,2005,12.512 +18,2006,12.213 +18,2007,12.786 +18,2008,12.013 +18,2009,12.698 +18,2010,12.729 +18,2011,12.237 +18,2012,12.255 +18,2013,12.368 +18,2014,12.641 +18,2015,12.797 +18,2016,12.764 +18,2017,12.813 +18,2018,12.711 +18,2019,12.704 +18,2020,12.993 +18,2021,12.577 +18,2022,12.681 +18,2023,12.638 +18,2024,13.132 +19,1940,11.518 +19,1941,11.674 +19,1942,12.016 +19,1943,11.411 +19,1944,12.218 +19,1945,11.835 +19,1946,11.964 +19,1947,11.787 +19,1948,11.711 +19,1949,11.832 +19,1950,11.379 +19,1951,11.587 +19,1952,12.116 +19,1953,11.859 +19,1954,11.63 +19,1955,12.019 +19,1956,11.597 +19,1957,11.662 +19,1958,12.171 +19,1959,12.14 +19,1960,11.729 +19,1961,11.94 +19,1962,11.891 +19,1963,11.614 +19,1964,11.706 +19,1965,11.982 +19,1966,11.547 +19,1967,11.666 +19,1968,11.763 +19,1969,11.864 +19,1970,11.839 +19,1971,11.812 +19,1972,11.599 +19,1973,12.147 +19,1974,11.785 +19,1975,11.914 +19,1976,11.473 +19,1977,11.993 +19,1978,11.937 +19,1979,12.095 +19,1980,12.396 +19,1981,12.385 +19,1982,11.763 +19,1983,12.286 +19,1984,12.02 +19,1985,11.965 +19,1986,11.977 +19,1987,12.177 +19,1988,12.239 +19,1989,11.847 +19,1990,12.102 +19,1991,12.381 +19,1992,12.17 +19,1993,12.111 +19,1994,11.816 +19,1995,12.357 +19,1996,11.852 +19,1997,12.103 +19,1998,12.306 +19,1999,12.496 +19,2000,12.032 +19,2001,12.335 +19,2002,12.508 +19,2003,12.696 +19,2004,12.376 +19,2005,12.478 +19,2006,12.223 +19,2007,12.841 +19,2008,12.023 +19,2009,12.715 +19,2010,12.729 +19,2011,12.194 +19,2012,12.257 +19,2013,12.423 +19,2014,12.631 +19,2015,12.829 +19,2016,12.736 +19,2017,12.923 +19,2018,12.733 +19,2019,12.717 +19,2020,12.939 +19,2021,12.607 +19,2022,12.649 +19,2023,12.613 +19,2024,13.164 +20,1940,11.52 +20,1941,11.706 +20,1942,12.035 +20,1943,11.411 +20,1944,12.284 +20,1945,11.899 +20,1946,11.983 +20,1947,11.824 +20,1948,11.69 +20,1949,11.827 +20,1950,11.372 +20,1951,11.521 +20,1952,12.059 +20,1953,11.918 +20,1954,11.597 +20,1955,12.038 +20,1956,11.592 +20,1957,11.658 +20,1958,12.272 +20,1959,12.147 +20,1960,11.741 +20,1961,11.954 +20,1962,11.887 +20,1963,11.715 +20,1964,11.685 +20,1965,12.017 +20,1966,11.616 +20,1967,11.794 +20,1968,11.75 +20,1969,11.837 +20,1970,11.833 +20,1971,11.858 +20,1972,11.63 +20,1973,12.142 +20,1974,11.826 +20,1975,11.852 +20,1976,11.502 +20,1977,11.99 +20,1978,11.907 +20,1979,12.135 +20,1980,12.402 +20,1981,12.43 +20,1982,11.959 +20,1983,12.284 +20,1984,11.965 +20,1985,11.958 +20,1986,11.918 +20,1987,12.085 +20,1988,12.17 +20,1989,11.82 +20,1990,12.14 +20,1991,12.377 +20,1992,12.222 +20,1993,12.17 +20,1994,11.857 +20,1995,12.351 +20,1996,11.838 +20,1997,12.105 +20,1998,12.308 +20,1999,12.415 +20,2000,11.995 +20,2001,12.303 +20,2002,12.408 +20,2003,12.733 +20,2004,12.355 +20,2005,12.455 +20,2006,12.24 +20,2007,12.814 +20,2008,12.006 +20,2009,12.667 +20,2010,12.736 +20,2011,12.133 +20,2012,12.203 +20,2013,12.525 +20,2014,12.598 +20,2015,12.809 +20,2016,12.805 +20,2017,13.003 +20,2018,12.753 +20,2019,12.71 +20,2020,12.885 +20,2021,12.706 +20,2022,12.703 +20,2023,12.574 +20,2024,13.111 +21,1940,11.49 +21,1941,11.712 +21,1942,12.056 +21,1943,11.51 +21,1944,12.256 +21,1945,11.904 +21,1946,11.947 +21,1947,11.814 +21,1948,11.748 +21,1949,11.883 +21,1950,11.459 +21,1951,11.475 +21,1952,12.021 +21,1953,11.929 +21,1954,11.512 +21,1955,12.032 +21,1956,11.628 +21,1957,11.689 +21,1958,12.343 +21,1959,12.1 +21,1960,11.755 +21,1961,11.967 +21,1962,11.937 +21,1963,11.757 +21,1964,11.735 +21,1965,11.975 +21,1966,11.646 +21,1967,11.868 +21,1968,11.735 +21,1969,11.82 +21,1970,11.85 +21,1971,11.844 +21,1972,11.597 +21,1973,12.121 +21,1974,11.767 +21,1975,11.77 +21,1976,11.584 +21,1977,11.925 +21,1978,11.857 +21,1979,12.143 +21,1980,12.396 +21,1981,12.38 +21,1982,11.976 +21,1983,12.364 +21,1984,11.948 +21,1985,11.958 +21,1986,11.862 +21,1987,12.126 +21,1988,12.146 +21,1989,11.771 +21,1990,12.226 +21,1991,12.366 +21,1992,12.329 +21,1993,12.245 +21,1994,11.959 +21,1995,12.263 +21,1996,11.918 +21,1997,12.1 +21,1998,12.28 +21,1999,12.394 +21,2000,11.985 +21,2001,12.271 +21,2002,12.362 +21,2003,12.712 +21,2004,12.304 +21,2005,12.472 +21,2006,12.3 +21,2007,12.823 +21,2008,11.973 +21,2009,12.602 +21,2010,12.735 +21,2011,12.12 +21,2012,12.128 +21,2013,12.629 +21,2014,12.564 +21,2015,12.743 +21,2016,12.879 +21,2017,13.082 +21,2018,12.726 +21,2019,12.723 +21,2020,12.933 +21,2021,12.74 +21,2022,12.724 +21,2023,12.534 +21,2024,13.087 +22,1940,11.476 +22,1941,11.744 +22,1942,12.038 +22,1943,11.6 +22,1944,12.252 +22,1945,11.855 +22,1946,11.928 +22,1947,11.844 +22,1948,11.76 +22,1949,12.027 +22,1950,11.504 +22,1951,11.518 +22,1952,11.99 +22,1953,11.927 +22,1954,11.448 +22,1955,12.001 +22,1956,11.65 +22,1957,11.692 +22,1958,12.347 +22,1959,12.097 +22,1960,11.684 +22,1961,11.995 +22,1962,11.924 +22,1963,11.712 +22,1964,11.808 +22,1965,12.002 +22,1966,11.644 +22,1967,11.793 +22,1968,11.69 +22,1969,11.81 +22,1970,11.878 +22,1971,11.858 +22,1972,11.582 +22,1973,12.118 +22,1974,11.731 +22,1975,11.777 +22,1976,11.662 +22,1977,11.883 +22,1978,11.861 +22,1979,12.109 +22,1980,12.398 +22,1981,12.398 +22,1982,11.969 +22,1983,12.459 +22,1984,11.964 +22,1985,12.044 +22,1986,11.775 +22,1987,12.174 +22,1988,12.09 +22,1989,11.731 +22,1990,12.27 +22,1991,12.348 +22,1992,12.364 +22,1993,12.269 +22,1994,12.051 +22,1995,12.239 +22,1996,12.007 +22,1997,12.004 +22,1998,12.249 +22,1999,12.35 +22,2000,11.998 +22,2001,12.249 +22,2002,12.334 +22,2003,12.634 +22,2004,12.225 +22,2005,12.404 +22,2006,12.254 +22,2007,12.841 +22,2008,12.008 +22,2009,12.6 +22,2010,12.789 +22,2011,12.142 +22,2012,12.092 +22,2013,12.685 +22,2014,12.54 +22,2015,12.715 +22,2016,12.912 +22,2017,13.103 +22,2018,12.65 +22,2019,12.773 +22,2020,13.015 +22,2021,12.71 +22,2022,12.757 +22,2023,12.561 +22,2024,13.13 +23,1940,11.462 +23,1941,11.756 +23,1942,12.008 +23,1943,11.637 +23,1944,12.265 +23,1945,11.822 +23,1946,11.956 +23,1947,11.952 +23,1948,11.677 +23,1949,12.103 +23,1950,11.554 +23,1951,11.622 +23,1952,12.021 +23,1953,11.909 +23,1954,11.422 +23,1955,11.993 +23,1956,11.702 +23,1957,11.679 +23,1958,12.363 +23,1959,12.175 +23,1960,11.676 +23,1961,12.06 +23,1962,11.906 +23,1963,11.71 +23,1964,11.826 +23,1965,11.976 +23,1966,11.695 +23,1967,11.771 +23,1968,11.618 +23,1969,11.758 +23,1970,11.944 +23,1971,11.819 +23,1972,11.606 +23,1973,12.172 +23,1974,11.684 +23,1975,11.836 +23,1976,11.696 +23,1977,11.869 +23,1978,11.875 +23,1979,12.057 +23,1980,12.355 +23,1981,12.437 +23,1982,11.922 +23,1983,12.496 +23,1984,12.103 +23,1985,12.131 +23,1986,11.807 +23,1987,12.152 +23,1988,12.032 +23,1989,11.733 +23,1990,12.305 +23,1991,12.363 +23,1992,12.3 +23,1993,12.241 +23,1994,12.118 +23,1995,12.203 +23,1996,11.992 +23,1997,11.985 +23,1998,12.276 +23,1999,12.282 +23,2000,12.02 +23,2001,12.247 +23,2002,12.299 +23,2003,12.596 +23,2004,12.24 +23,2005,12.38 +23,2006,12.299 +23,2007,12.861 +23,2008,12.032 +23,2009,12.503 +23,2010,12.799 +23,2011,12.158 +23,2012,12.085 +23,2013,12.731 +23,2014,12.581 +23,2015,12.633 +23,2016,12.877 +23,2017,13.041 +23,2018,12.587 +23,2019,12.785 +23,2020,13.06 +23,2021,12.72 +23,2022,12.806 +23,2023,12.588 +23,2024,13.158 +24,1940,11.395 +24,1941,11.695 +24,1942,11.998 +24,1943,11.614 +24,1944,12.189 +24,1945,11.811 +24,1946,11.941 +24,1947,12.004 +24,1948,11.62 +24,1949,12.084 +24,1950,11.564 +24,1951,11.631 +24,1952,12.059 +24,1953,11.908 +24,1954,11.442 +24,1955,11.957 +24,1956,11.738 +24,1957,11.656 +24,1958,12.441 +24,1959,12.222 +24,1960,11.751 +24,1961,12.075 +24,1962,11.904 +24,1963,11.726 +24,1964,11.792 +24,1965,11.977 +24,1966,11.768 +24,1967,11.806 +24,1968,11.564 +24,1969,11.705 +24,1970,11.981 +24,1971,11.761 +24,1972,11.605 +24,1973,12.136 +24,1974,11.661 +24,1975,11.873 +24,1976,11.792 +24,1977,11.88 +24,1978,11.857 +24,1979,12.086 +24,1980,12.288 +24,1981,12.435 +24,1982,11.914 +24,1983,12.445 +24,1984,12.188 +24,1985,12.157 +24,1986,11.867 +24,1987,12.107 +24,1988,12.077 +24,1989,11.75 +24,1990,12.309 +24,1991,12.392 +24,1992,12.218 +24,1993,12.17 +24,1994,12.189 +24,1995,12.191 +24,1996,11.952 +24,1997,12.017 +24,1998,12.363 +24,1999,12.268 +24,2000,12.051 +24,2001,12.277 +24,2002,12.314 +24,2003,12.476 +24,2004,12.299 +24,2005,12.477 +24,2006,12.376 +24,2007,12.87 +24,2008,12.031 +24,2009,12.487 +24,2010,12.816 +24,2011,12.217 +24,2012,12.075 +24,2013,12.776 +24,2014,12.54 +24,2015,12.585 +24,2016,12.855 +24,2017,13.004 +24,2018,12.531 +24,2019,12.766 +24,2020,13.048 +24,2021,12.706 +24,2022,12.835 +24,2023,12.58 +24,2024,13.172 +25,1940,11.342 +25,1941,11.723 +25,1942,12.033 +25,1943,11.512 +25,1944,12.096 +25,1945,11.757 +25,1946,11.903 +25,1947,11.977 +25,1948,11.582 +25,1949,12.048 +25,1950,11.641 +25,1951,11.566 +25,1952,12.132 +25,1953,11.856 +25,1954,11.496 +25,1955,11.912 +25,1956,11.795 +25,1957,11.651 +25,1958,12.498 +25,1959,12.183 +25,1960,11.883 +25,1961,12.022 +25,1962,11.92 +25,1963,11.809 +25,1964,11.809 +25,1965,11.991 +25,1966,11.897 +25,1967,11.809 +25,1968,11.541 +25,1969,11.645 +25,1970,11.984 +25,1971,11.76 +25,1972,11.464 +25,1973,12.041 +25,1974,11.601 +25,1975,11.879 +25,1976,11.845 +25,1977,11.91 +25,1978,11.868 +25,1979,12.064 +25,1980,12.283 +25,1981,12.349 +25,1982,11.964 +25,1983,12.371 +25,1984,12.154 +25,1985,12.157 +25,1986,11.922 +25,1987,12.138 +25,1988,12.183 +25,1989,11.769 +25,1990,12.344 +25,1991,12.389 +25,1992,12.217 +25,1993,12.141 +25,1994,12.251 +25,1995,12.21 +25,1996,11.952 +25,1997,12.077 +25,1998,12.369 +25,1999,12.283 +25,2000,12.059 +25,2001,12.256 +25,2002,12.361 +25,2003,12.436 +25,2004,12.353 +25,2005,12.573 +25,2006,12.409 +25,2007,12.826 +25,2008,12.043 +25,2009,12.524 +25,2010,12.765 +25,2011,12.356 +25,2012,12.101 +25,2013,12.729 +25,2014,12.496 +25,2015,12.574 +25,2016,12.827 +25,2017,13.034 +25,2018,12.518 +25,2019,12.744 +25,2020,13.121 +25,2021,12.693 +25,2022,12.81 +25,2023,12.648 +25,2024,13.194 +26,1940,11.369 +26,1941,11.761 +26,1942,12.052 +26,1943,11.444 +26,1944,12.036 +26,1945,11.736 +26,1946,11.809 +26,1947,11.931 +26,1948,11.582 +26,1949,12.05 +26,1950,11.705 +26,1951,11.548 +26,1952,12.213 +26,1953,11.849 +26,1954,11.544 +26,1955,11.847 +26,1956,11.767 +26,1957,11.648 +26,1958,12.44 +26,1959,12.107 +26,1960,11.991 +26,1961,12.007 +26,1962,11.876 +26,1963,11.912 +26,1964,11.836 +26,1965,11.993 +26,1966,11.886 +26,1967,11.839 +26,1968,11.499 +26,1969,11.655 +26,1970,11.977 +26,1971,11.752 +26,1972,11.418 +26,1973,12.015 +26,1974,11.58 +26,1975,11.925 +26,1976,11.801 +26,1977,11.906 +26,1978,11.837 +26,1979,12.071 +26,1980,12.272 +26,1981,12.27 +26,1982,12.015 +26,1983,12.312 +26,1984,12.057 +26,1985,12.143 +26,1986,12.007 +26,1987,12.285 +26,1988,12.258 +26,1989,11.816 +26,1990,12.326 +26,1991,12.378 +26,1992,12.291 +26,1993,12.165 +26,1994,12.234 +26,1995,12.234 +26,1996,11.908 +26,1997,12.095 +26,1998,12.416 +26,1999,12.244 +26,2000,12.042 +26,2001,12.279 +26,2002,12.403 +26,2003,12.448 +26,2004,12.37 +26,2005,12.59 +26,2006,12.346 +26,2007,12.811 +26,2008,12.085 +26,2009,12.522 +26,2010,12.699 +26,2011,12.43 +26,2012,12.15 +26,2013,12.708 +26,2014,12.518 +26,2015,12.606 +26,2016,12.813 +26,2017,13.051 +26,2018,12.55 +26,2019,12.702 +26,2020,13.158 +26,2021,12.665 +26,2022,12.738 +26,2023,12.773 +26,2024,13.208 +27,1940,11.417 +27,1941,11.746 +27,1942,12.045 +27,1943,11.432 +27,1944,12.058 +27,1945,11.725 +27,1946,11.747 +27,1947,11.933 +27,1948,11.643 +27,1949,12.085 +27,1950,11.664 +27,1951,11.561 +27,1952,12.286 +27,1953,11.847 +27,1954,11.588 +27,1955,11.8 +27,1956,11.722 +27,1957,11.674 +27,1958,12.349 +27,1959,12.122 +27,1960,12.05 +27,1961,12.024 +27,1962,11.821 +27,1963,11.923 +27,1964,11.832 +27,1965,11.951 +27,1966,11.828 +27,1967,11.85 +27,1968,11.491 +27,1969,11.652 +27,1970,11.952 +27,1971,11.714 +27,1972,11.459 +27,1973,12.003 +27,1974,11.605 +27,1975,11.953 +27,1976,11.796 +27,1977,11.874 +27,1978,11.818 +27,1979,12.08 +27,1980,12.246 +27,1981,12.265 +27,1982,12.086 +27,1983,12.413 +27,1984,11.964 +27,1985,12.16 +27,1986,12.038 +27,1987,12.439 +27,1988,12.291 +27,1989,11.878 +27,1990,12.281 +27,1991,12.434 +27,1992,12.357 +27,1993,12.182 +27,1994,12.297 +27,1995,12.267 +27,1996,11.954 +27,1997,12.099 +27,1998,12.563 +27,1999,12.219 +27,2000,12.087 +27,2001,12.275 +27,2002,12.369 +27,2003,12.48 +27,2004,12.393 +27,2005,12.579 +27,2006,12.347 +27,2007,12.823 +27,2008,12.152 +27,2009,12.564 +27,2010,12.733 +27,2011,12.485 +27,2012,12.122 +27,2013,12.73 +27,2014,12.463 +27,2015,12.6 +27,2016,12.843 +27,2017,13.091 +27,2018,12.6 +27,2019,12.704 +27,2020,13.157 +27,2021,12.686 +27,2022,12.673 +27,2023,12.795 +27,2024,13.27 +28,1940,11.451 +28,1941,11.759 +28,1942,11.995 +28,1943,11.437 +28,1944,12.046 +28,1945,11.741 +28,1946,11.688 +28,1947,11.963 +28,1948,11.642 +28,1949,12.096 +28,1950,11.577 +28,1951,11.612 +28,1952,12.274 +28,1953,11.928 +28,1954,11.601 +28,1955,11.802 +28,1956,11.643 +28,1957,11.686 +28,1958,12.339 +28,1959,12.156 +28,1960,12.035 +28,1961,12.074 +28,1962,11.737 +28,1963,11.88 +28,1964,11.776 +28,1965,11.856 +28,1966,11.871 +28,1967,11.759 +28,1968,11.533 +28,1969,11.559 +28,1970,11.884 +28,1971,11.728 +28,1972,11.555 +28,1973,11.912 +28,1974,11.615 +28,1975,11.922 +28,1976,11.861 +28,1977,11.771 +28,1978,11.845 +28,1979,11.993 +28,1980,12.143 +28,1981,12.297 +28,1982,12.087 +28,1983,12.521 +28,1984,11.937 +28,1985,12.18 +28,1986,12.095 +28,1987,12.507 +28,1988,12.323 +28,1989,11.859 +28,1990,12.225 +28,1991,12.403 +28,1992,12.423 +28,1993,12.127 +28,1994,12.376 +28,1995,12.31 +28,1996,12.054 +28,1997,12.137 +28,1998,12.623 +28,1999,12.224 +28,2000,12.12 +28,2001,12.287 +28,2002,12.342 +28,2003,12.527 +28,2004,12.421 +28,2005,12.582 +28,2006,12.424 +28,2007,12.841 +28,2008,12.195 +28,2009,12.618 +28,2010,12.826 +28,2011,12.563 +28,2012,12.084 +28,2013,12.722 +28,2014,12.375 +28,2015,12.578 +28,2016,12.857 +28,2017,13.081 +28,2018,12.642 +28,2019,12.703 +28,2020,13.133 +28,2021,12.62 +28,2022,12.621 +28,2023,12.753 +28,2024,13.325 +29,1940,11.435 +29,1941,11.779 +29,1942,11.961 +29,1943,11.474 +29,1944,12.047 +29,1945,11.697 +29,1946,11.663 +29,1947,11.933 +29,1948,11.733 +29,1949,12.114 +29,1950,11.574 +29,1951,11.591 +29,1952,12.179 +29,1953,11.946 +29,1954,11.641 +29,1955,11.847 +29,1956,11.585 +29,1957,11.672 +29,1958,12.381 +29,1959,12.159 +29,1960,11.999 +29,1961,12.105 +29,1962,11.7 +29,1963,11.931 +29,1964,11.752 +29,1965,11.866 +29,1966,11.906 +29,1967,11.704 +29,1968,11.565 +29,1969,11.488 +29,1970,11.786 +29,1971,11.721 +29,1972,11.649 +29,1973,11.88 +29,1974,11.612 +29,1975,11.899 +29,1976,11.921 +29,1977,11.759 +29,1978,11.878 +29,1979,11.873 +29,1980,12.001 +29,1981,12.3 +29,1982,12.078 +29,1983,12.564 +29,1984,11.904 +29,1985,12.148 +29,1986,12.174 +29,1987,12.468 +29,1988,12.315 +29,1989,11.975 +29,1990,12.219 +29,1991,12.271 +29,1992,12.464 +29,1993,12.123 +29,1994,12.32 +29,1995,12.381 +29,1996,12.161 +29,1997,12.216 +29,1998,12.647 +29,1999,12.182 +29,2000,12.151 +29,2001,12.293 +29,2002,12.376 +29,2003,12.547 +29,2004,12.447 +29,2005,12.546 +29,2006,12.46 +29,2007,12.822 +29,2008,12.159 +29,2009,12.646 +29,2010,12.816 +29,2011,12.597 +29,2012,12.091 +29,2013,12.698 +29,2014,12.446 +29,2015,12.64 +29,2016,12.894 +29,2017,13.09 +29,2018,12.646 +29,2019,12.635 +29,2020,13.062 +29,2021,12.603 +29,2022,12.601 +29,2023,12.716 +29,2024,13.338 +30,1940,11.497 +30,1941,11.788 +30,1942,11.864 +30,1943,11.524 +30,1944,12.039 +30,1945,11.667 +30,1946,11.683 +30,1947,11.858 +30,1948,11.789 +30,1949,12.07 +30,1950,11.597 +30,1951,11.552 +30,1952,12.121 +30,1953,11.943 +30,1954,11.659 +30,1955,11.798 +30,1956,11.532 +30,1957,11.605 +30,1958,12.303 +30,1959,12.067 +30,1960,11.982 +30,1961,12.121 +30,1962,11.743 +30,1963,12.026 +30,1964,11.787 +30,1965,11.907 +30,1966,11.895 +30,1967,11.665 +30,1968,11.591 +30,1969,11.485 +30,1970,11.781 +30,1971,11.742 +30,1972,11.721 +30,1973,11.958 +30,1974,11.541 +30,1975,11.916 +30,1976,11.886 +30,1977,11.765 +30,1978,11.888 +30,1979,11.764 +30,1980,11.937 +30,1981,12.317 +30,1982,12.057 +30,1983,12.548 +30,1984,11.86 +30,1985,12.107 +30,1986,12.218 +30,1987,12.441 +30,1988,12.242 +30,1989,12.133 +30,1990,12.138 +30,1991,12.185 +30,1992,12.453 +30,1993,12.151 +30,1994,12.18 +30,1995,12.469 +30,1996,12.201 +30,1997,12.283 +30,1998,12.719 +30,1999,12.102 +30,2000,12.199 +30,2001,12.271 +30,2002,12.371 +30,2003,12.618 +30,2004,12.481 +30,2005,12.541 +30,2006,12.431 +30,2007,12.836 +30,2008,12.13 +30,2009,12.663 +30,2010,12.843 +30,2011,12.608 +30,2012,12.066 +30,2013,12.703 +30,2014,12.556 +30,2015,12.675 +30,2016,12.979 +30,2017,13.04 +30,2018,12.618 +30,2019,12.572 +30,2020,12.993 +30,2021,12.611 +30,2022,12.627 +30,2023,12.71 +30,2024,13.415 +31,1940,11.499 +31,1941,11.802 +31,1942,11.768 +31,1943,11.611 +31,1944,12.013 +31,1945,11.619 +31,1946,11.711 +31,1947,11.838 +31,1948,11.793 +31,1949,12.001 +31,1950,11.594 +31,1951,11.536 +31,1952,12.183 +31,1953,11.859 +31,1954,11.769 +31,1955,11.754 +31,1956,11.483 +31,1957,11.587 +31,1958,12.181 +31,1959,12.022 +31,1960,11.976 +31,1961,12.157 +31,1962,11.837 +31,1963,12.158 +31,1964,11.84 +31,1965,11.881 +31,1966,11.904 +31,1967,11.574 +31,1968,11.632 +31,1969,11.486 +31,1970,11.749 +31,1971,11.746 +31,1972,11.745 +31,1973,11.957 +31,1974,11.518 +31,1975,11.944 +31,1976,11.852 +31,1977,11.777 +31,1978,11.86 +31,1979,11.729 +31,1980,11.9 +31,1981,12.33 +31,1982,12.085 +31,1983,12.511 +31,1984,11.813 +31,1985,12.076 +31,1986,12.266 +31,1987,12.468 +31,1988,12.214 +31,1989,12.199 +31,1990,12.092 +31,1991,12.173 +31,1992,12.408 +31,1993,12.143 +31,1994,12.068 +31,1995,12.512 +31,1996,12.191 +31,1997,12.379 +31,1998,12.774 +31,1999,12.082 +31,2000,12.278 +31,2001,12.243 +31,2002,12.408 +31,2003,12.719 +31,2004,12.488 +31,2005,12.607 +31,2006,12.435 +31,2007,12.922 +31,2008,12.096 +31,2009,12.621 +31,2010,12.799 +31,2011,12.576 +31,2012,12.041 +31,2013,12.719 +31,2014,12.613 +31,2015,12.624 +31,2016,13.091 +31,2017,13.035 +31,2018,12.579 +31,2019,12.572 +31,2020,12.955 +31,2021,12.625 +31,2022,12.664 +31,2023,12.78 +31,2024,13.465 +32,1940,11.504 +32,1941,11.79 +32,1942,11.685 +32,1943,11.643 +32,1944,11.933 +32,1945,11.6 +32,1946,11.697 +32,1947,11.809 +32,1948,11.781 +32,1949,11.892 +32,1950,11.601 +32,1951,11.555 +32,1952,12.259 +32,1953,11.776 +32,1954,11.814 +32,1955,11.755 +32,1956,11.527 +32,1957,11.63 +32,1958,12.121 +32,1959,12.028 +32,1960,12.094 +32,1961,12.16 +32,1962,11.872 +32,1963,12.231 +32,1964,11.891 +32,1965,11.815 +32,1966,11.97 +32,1967,11.497 +32,1968,11.656 +32,1969,11.524 +32,1970,11.794 +32,1971,11.728 +32,1972,11.713 +32,1973,12.03 +32,1974,11.506 +32,1975,11.935 +32,1976,11.818 +32,1977,11.793 +32,1978,11.848 +32,1979,11.767 +32,1980,11.889 +32,1981,12.33 +32,1982,12.079 +32,1983,12.424 +32,1984,11.815 +32,1985,12.025 +32,1986,12.261 +32,1987,12.516 +32,1988,12.23 +32,1989,12.141 +32,1990,12.113 +32,1991,12.16 +32,1992,12.348 +32,1993,12.187 +32,1994,12.04 +32,1995,12.548 +32,1996,12.179 +32,1997,12.368 +32,1998,12.765 +32,1999,12.153 +32,2000,12.383 +32,2001,12.169 +32,2002,12.409 +32,2003,12.787 +32,2004,12.518 +32,2005,12.578 +32,2006,12.484 +32,2007,12.974 +32,2008,12.089 +32,2009,12.581 +32,2010,12.827 +32,2011,12.524 +32,2012,12.054 +32,2013,12.654 +32,2014,12.655 +32,2015,12.567 +32,2016,13.147 +32,2017,13.059 +32,2018,12.583 +32,2019,12.62 +32,2020,12.975 +32,2021,12.656 +32,2022,12.702 +32,2023,12.764 +32,2024,13.472 +33,1940,11.504 +33,1941,11.829 +33,1942,11.69 +33,1943,11.699 +33,1944,11.949 +33,1945,11.65 +33,1946,11.689 +33,1947,11.757 +33,1948,11.695 +33,1949,11.794 +33,1950,11.584 +33,1951,11.542 +33,1952,12.273 +33,1953,11.692 +33,1954,11.839 +33,1955,11.721 +33,1956,11.633 +33,1957,11.659 +33,1958,12.123 +33,1959,12.107 +33,1960,12.195 +33,1961,12.176 +33,1962,11.965 +33,1963,12.188 +33,1964,11.941 +33,1965,11.725 +33,1966,11.959 +33,1967,11.479 +33,1968,11.649 +33,1969,11.549 +33,1970,11.776 +33,1971,11.712 +33,1972,11.684 +33,1973,12.095 +33,1974,11.466 +33,1975,11.91 +33,1976,11.74 +33,1977,11.851 +33,1978,11.806 +33,1979,11.821 +33,1980,11.996 +33,1981,12.291 +33,1982,12.05 +33,1983,12.368 +33,1984,11.875 +33,1985,12.019 +33,1986,12.264 +33,1987,12.589 +33,1988,12.224 +33,1989,12.045 +33,1990,12.14 +33,1991,12.228 +33,1992,12.316 +33,1993,12.263 +33,1994,12.051 +33,1995,12.609 +33,1996,12.161 +33,1997,12.298 +33,1998,12.781 +33,1999,12.223 +33,2000,12.447 +33,2001,12.1 +33,2002,12.429 +33,2003,12.798 +33,2004,12.447 +33,2005,12.497 +33,2006,12.561 +33,2007,12.978 +33,2008,12.118 +33,2009,12.561 +33,2010,12.841 +33,2011,12.516 +33,2012,12.101 +33,2013,12.645 +33,2014,12.638 +33,2015,12.564 +33,2016,13.157 +33,2017,13.093 +33,2018,12.532 +33,2019,12.71 +33,2020,13.006 +33,2021,12.74 +33,2022,12.695 +33,2023,12.732 +33,2024,13.483 +34,1940,11.445 +34,1941,11.876 +34,1942,11.637 +34,1943,11.713 +34,1944,12.019 +34,1945,11.631 +34,1946,11.736 +34,1947,11.735 +34,1948,11.71 +34,1949,11.774 +34,1950,11.559 +34,1951,11.563 +34,1952,12.242 +34,1953,11.71 +34,1954,11.905 +34,1955,11.708 +34,1956,11.74 +34,1957,11.708 +34,1958,12.165 +34,1959,12.169 +34,1960,12.104 +34,1961,12.198 +34,1962,12.07 +34,1963,12.112 +34,1964,12.014 +34,1965,11.684 +34,1966,11.906 +34,1967,11.489 +34,1968,11.651 +34,1969,11.555 +34,1970,11.795 +34,1971,11.705 +34,1972,11.661 +34,1973,12.131 +34,1974,11.52 +34,1975,11.94 +34,1976,11.707 +34,1977,11.895 +34,1978,11.709 +34,1979,11.844 +34,1980,12.107 +34,1981,12.255 +34,1982,12.031 +34,1983,12.295 +34,1984,11.927 +34,1985,12.008 +34,1986,12.292 +34,1987,12.561 +34,1988,12.198 +34,1989,12.074 +34,1990,12.124 +34,1991,12.386 +34,1992,12.338 +34,1993,12.295 +34,1994,12.096 +34,1995,12.639 +34,1996,12.12 +34,1997,12.296 +34,1998,12.815 +34,1999,12.282 +34,2000,12.564 +34,2001,12.123 +34,2002,12.476 +34,2003,12.778 +34,2004,12.421 +34,2005,12.456 +34,2006,12.577 +34,2007,12.936 +34,2008,12.196 +34,2009,12.573 +34,2010,12.791 +34,2011,12.577 +34,2012,12.207 +34,2013,12.673 +34,2014,12.541 +34,2015,12.63 +34,2016,13.114 +34,2017,13.095 +34,2018,12.491 +34,2019,12.747 +34,2020,13.016 +34,2021,12.875 +34,2022,12.643 +34,2023,12.732 +34,2024,13.468 +35,1940,11.507 +35,1941,11.907 +35,1942,11.681 +35,1943,11.73 +35,1944,12.028 +35,1945,11.618 +35,1946,11.846 +35,1947,11.696 +35,1948,11.764 +35,1949,11.789 +35,1950,11.54 +35,1951,11.563 +35,1952,12.243 +35,1953,11.827 +35,1954,11.993 +35,1955,11.708 +35,1956,11.772 +35,1957,11.761 +35,1958,12.198 +35,1959,12.228 +35,1960,12.022 +35,1961,12.227 +35,1962,12.114 +35,1963,12.129 +35,1964,12.086 +35,1965,11.66 +35,1966,11.862 +35,1967,11.531 +35,1968,11.713 +35,1969,11.533 +35,1970,11.849 +35,1971,11.704 +35,1972,11.612 +35,1973,12.294 +35,1974,11.59 +35,1975,11.952 +35,1976,11.673 +35,1977,11.924 +35,1978,11.681 +35,1979,11.831 +35,1980,12.136 +35,1981,12.242 +35,1982,12.005 +35,1983,12.258 +35,1984,11.982 +35,1985,12 +35,1986,12.343 +35,1987,12.517 +35,1988,12.24 +35,1989,12.165 +35,1990,12.135 +35,1991,12.449 +35,1992,12.345 +35,1993,12.361 +35,1994,12.149 +35,1995,12.654 +35,1996,12.164 +35,1997,12.309 +35,1998,12.834 +35,1999,12.32 +35,2000,12.612 +35,2001,12.178 +35,2002,12.474 +35,2003,12.692 +35,2004,12.423 +35,2005,12.511 +35,2006,12.513 +35,2007,12.865 +35,2008,12.276 +35,2009,12.654 +35,2010,12.721 +35,2011,12.582 +35,2012,12.298 +35,2013,12.731 +35,2014,12.452 +35,2015,12.652 +35,2016,13.144 +35,2017,13.098 +35,2018,12.571 +35,2019,12.746 +35,2020,13.011 +35,2021,12.921 +35,2022,12.618 +35,2023,12.748 +35,2024,13.47 +36,1940,11.577 +36,1941,11.906 +36,1942,11.747 +36,1943,11.766 +36,1944,11.983 +36,1945,11.649 +36,1946,11.917 +36,1947,11.722 +36,1948,11.746 +36,1949,11.808 +36,1950,11.557 +36,1951,11.574 +36,1952,12.207 +36,1953,11.913 +36,1954,12.016 +36,1955,11.718 +36,1956,11.807 +36,1957,11.685 +36,1958,12.27 +36,1959,12.164 +36,1960,11.957 +36,1961,12.269 +36,1962,12.047 +36,1963,12.207 +36,1964,12.151 +36,1965,11.693 +36,1966,11.888 +36,1967,11.601 +36,1968,11.767 +36,1969,11.547 +36,1970,11.889 +36,1971,11.707 +36,1972,11.627 +36,1973,12.328 +36,1974,11.611 +36,1975,12.014 +36,1976,11.639 +36,1977,11.918 +36,1978,11.79 +36,1979,11.793 +36,1980,12.17 +36,1981,12.329 +36,1982,12.004 +36,1983,12.27 +36,1984,11.982 +36,1985,11.978 +36,1986,12.348 +36,1987,12.47 +36,1988,12.256 +36,1989,12.241 +36,1990,12.174 +36,1991,12.484 +36,1992,12.304 +36,1993,12.393 +36,1994,12.208 +36,1995,12.645 +36,1996,12.231 +36,1997,12.282 +36,1998,12.835 +36,1999,12.424 +36,2000,12.596 +36,2001,12.247 +36,2002,12.482 +36,2003,12.673 +36,2004,12.473 +36,2005,12.504 +36,2006,12.483 +36,2007,12.865 +36,2008,12.28 +36,2009,12.762 +36,2010,12.764 +36,2011,12.593 +36,2012,12.289 +36,2013,12.775 +36,2014,12.406 +36,2015,12.664 +36,2016,13.168 +36,2017,13.115 +36,2018,12.699 +36,2019,12.748 +36,2020,12.983 +36,2021,12.935 +36,2022,12.648 +36,2023,12.877 +36,2024,13.471 +37,1940,11.61 +37,1941,11.875 +37,1942,11.812 +37,1943,11.76 +37,1944,11.999 +37,1945,11.686 +37,1946,11.931 +37,1947,11.867 +37,1948,11.752 +37,1949,11.8 +37,1950,11.579 +37,1951,11.603 +37,1952,12.157 +37,1953,11.914 +37,1954,12.049 +37,1955,11.712 +37,1956,11.834 +37,1957,11.624 +37,1958,12.264 +37,1959,12.036 +37,1960,11.935 +37,1961,12.273 +37,1962,11.96 +37,1963,12.295 +37,1964,12.106 +37,1965,11.747 +37,1966,11.974 +37,1967,11.552 +37,1968,11.778 +37,1969,11.6 +37,1970,12.005 +37,1971,11.767 +37,1972,11.627 +37,1973,12.277 +37,1974,11.583 +37,1975,12.041 +37,1976,11.589 +37,1977,11.849 +37,1978,11.858 +37,1979,11.837 +37,1980,12.168 +37,1981,12.409 +37,1982,12.052 +37,1983,12.257 +37,1984,11.944 +37,1985,11.98 +37,1986,12.305 +37,1987,12.481 +37,1988,12.175 +37,1989,12.33 +37,1990,12.251 +37,1991,12.532 +37,1992,12.277 +37,1993,12.4 +37,1994,12.201 +37,1995,12.753 +37,1996,12.336 +37,1997,12.236 +37,1998,12.824 +37,1999,12.542 +37,2000,12.612 +37,2001,12.289 +37,2002,12.506 +37,2003,12.668 +37,2004,12.509 +37,2005,12.514 +37,2006,12.517 +37,2007,12.921 +37,2008,12.23 +37,2009,12.87 +37,2010,12.777 +37,2011,12.563 +37,2012,12.308 +37,2013,12.768 +37,2014,12.342 +37,2015,12.641 +37,2016,13.196 +37,2017,13.076 +37,2018,12.785 +37,2019,12.693 +37,2020,13.013 +37,2021,12.876 +37,2022,12.658 +37,2023,12.948 +37,2024,13.532 +38,1940,11.629 +38,1941,11.85 +38,1942,11.768 +38,1943,11.69 +38,1944,12.026 +38,1945,11.683 +38,1946,11.924 +38,1947,11.844 +38,1948,11.749 +38,1949,11.796 +38,1950,11.638 +38,1951,11.592 +38,1952,12.131 +38,1953,11.931 +38,1954,12.072 +38,1955,11.674 +38,1956,11.871 +38,1957,11.644 +38,1958,12.217 +38,1959,12.008 +38,1960,11.936 +38,1961,12.247 +38,1962,11.94 +38,1963,12.284 +38,1964,12.014 +38,1965,11.805 +38,1966,12.03 +38,1967,11.531 +38,1968,11.78 +38,1969,11.727 +38,1970,12.184 +38,1971,11.782 +38,1972,11.601 +38,1973,12.258 +38,1974,11.579 +38,1975,11.993 +38,1976,11.553 +38,1977,11.852 +38,1978,11.815 +38,1979,11.918 +38,1980,12.197 +38,1981,12.482 +38,1982,12.094 +38,1983,12.26 +38,1984,11.947 +38,1985,11.881 +38,1986,12.282 +38,1987,12.515 +38,1988,12.14 +38,1989,12.375 +38,1990,12.316 +38,1991,12.622 +38,1992,12.283 +38,1993,12.394 +38,1994,12.153 +38,1995,12.876 +38,1996,12.534 +38,1997,12.237 +38,1998,12.769 +38,1999,12.572 +38,2000,12.644 +38,2001,12.343 +38,2002,12.47 +38,2003,12.642 +38,2004,12.529 +38,2005,12.532 +38,2006,12.607 +38,2007,12.913 +38,2008,12.138 +38,2009,12.846 +38,2010,12.791 +38,2011,12.504 +38,2012,12.312 +38,2013,12.692 +38,2014,12.386 +38,2015,12.697 +38,2016,13.18 +38,2017,13.073 +38,2018,12.886 +38,2019,12.638 +38,2020,13.086 +38,2021,12.754 +38,2022,12.742 +38,2023,12.905 +38,2024,13.568 +39,1940,11.666 +39,1941,11.889 +39,1942,11.809 +39,1943,11.794 +39,1944,12.072 +39,1945,11.763 +39,1946,11.913 +39,1947,11.826 +39,1948,11.709 +39,1949,11.758 +39,1950,11.638 +39,1951,11.587 +39,1952,12.155 +39,1953,11.924 +39,1954,12.071 +39,1955,11.657 +39,1956,11.883 +39,1957,11.728 +39,1958,12.202 +39,1959,11.98 +39,1960,11.992 +39,1961,12.125 +39,1962,11.981 +39,1963,12.207 +39,1964,11.92 +39,1965,11.862 +39,1966,12.05 +39,1967,11.569 +39,1968,11.7 +39,1969,11.809 +39,1970,12.264 +39,1971,11.792 +39,1972,11.577 +39,1973,12.254 +39,1974,11.591 +39,1975,11.915 +39,1976,11.604 +39,1977,11.868 +39,1978,11.799 +39,1979,11.948 +39,1980,12.263 +39,1981,12.559 +39,1982,12.097 +39,1983,12.29 +39,1984,11.98 +39,1985,11.86 +39,1986,12.306 +39,1987,12.489 +39,1988,12.172 +39,1989,12.373 +39,1990,12.352 +39,1991,12.63 +39,1992,12.243 +39,1993,12.457 +39,1994,12.078 +39,1995,12.946 +39,1996,12.637 +39,1997,12.281 +39,1998,12.715 +39,1999,12.562 +39,2000,12.618 +39,2001,12.336 +39,2002,12.417 +39,2003,12.614 +39,2004,12.625 +39,2005,12.519 +39,2006,12.646 +39,2007,12.884 +39,2008,12.065 +39,2009,12.777 +39,2010,12.804 +39,2011,12.452 +39,2012,12.263 +39,2013,12.646 +39,2014,12.471 +39,2015,12.814 +39,2016,13.177 +39,2017,13.052 +39,2018,12.966 +39,2019,12.635 +39,2020,13.155 +39,2021,12.675 +39,2022,12.873 +39,2023,12.851 +39,2024,13.651 +40,1940,11.623 +40,1941,11.906 +40,1942,11.845 +40,1943,11.806 +40,1944,12.033 +40,1945,11.858 +40,1946,11.944 +40,1947,11.883 +40,1948,11.743 +40,1949,11.71 +40,1950,11.683 +40,1951,11.563 +40,1952,12.156 +40,1953,11.966 +40,1954,12.031 +40,1955,11.632 +40,1956,11.818 +40,1957,11.792 +40,1958,12.205 +40,1959,11.957 +40,1960,12.051 +40,1961,12.072 +40,1962,12.042 +40,1963,12.167 +40,1964,11.918 +40,1965,11.811 +40,1966,12.012 +40,1967,11.616 +40,1968,11.668 +40,1969,11.851 +40,1970,12.319 +40,1971,11.725 +40,1972,11.611 +40,1973,12.22 +40,1974,11.604 +40,1975,11.935 +40,1976,11.69 +40,1977,11.919 +40,1978,11.804 +40,1979,11.959 +40,1980,12.288 +40,1981,12.523 +40,1982,12.063 +40,1983,12.32 +40,1984,12.047 +40,1985,11.846 +40,1986,12.284 +40,1987,12.412 +40,1988,12.184 +40,1989,12.406 +40,1990,12.422 +40,1991,12.608 +40,1992,12.241 +40,1993,12.51 +40,1994,11.928 +40,1995,12.952 +40,1996,12.656 +40,1997,12.297 +40,1998,12.712 +40,1999,12.61 +40,2000,12.594 +40,2001,12.262 +40,2002,12.385 +40,2003,12.607 +40,2004,12.744 +40,2005,12.525 +40,2006,12.648 +40,2007,12.881 +40,2008,12.064 +40,2009,12.725 +40,2010,12.781 +40,2011,12.386 +40,2012,12.303 +40,2013,12.661 +40,2014,12.49 +40,2015,12.895 +40,2016,13.225 +40,2017,13.022 +40,2018,12.972 +40,2019,12.697 +40,2020,13.187 +40,2021,12.691 +40,2022,13.016 +40,2023,12.81 +40,2024,13.689 +41,1940,11.642 +41,1941,11.944 +41,1942,11.863 +41,1943,11.752 +41,1944,12.025 +41,1945,11.897 +41,1946,11.931 +41,1947,11.925 +41,1948,11.75 +41,1949,11.694 +41,1950,11.705 +41,1951,11.579 +41,1952,12.167 +41,1953,12.05 +41,1954,11.989 +41,1955,11.512 +41,1956,11.75 +41,1957,11.757 +41,1958,12.216 +41,1959,11.998 +41,1960,12.06 +41,1961,12.071 +41,1962,12.083 +41,1963,12.177 +41,1964,11.957 +41,1965,11.741 +41,1966,11.967 +41,1967,11.644 +41,1968,11.683 +41,1969,11.897 +41,1970,12.372 +41,1971,11.748 +41,1972,11.658 +41,1973,12.22 +41,1974,11.629 +41,1975,11.919 +41,1976,11.743 +41,1977,11.972 +41,1978,11.844 +41,1979,11.976 +41,1980,12.264 +41,1981,12.41 +41,1982,12.112 +41,1983,12.336 +41,1984,12.125 +41,1985,11.84 +41,1986,12.27 +41,1987,12.312 +41,1988,12.199 +41,1989,12.406 +41,1990,12.489 +41,1991,12.584 +41,1992,12.255 +41,1993,12.557 +41,1994,11.847 +41,1995,12.964 +41,1996,12.59 +41,1997,12.298 +41,1998,12.757 +41,1999,12.674 +41,2000,12.59 +41,2001,12.234 +41,2002,12.428 +41,2003,12.618 +41,2004,12.844 +41,2005,12.567 +41,2006,12.679 +41,2007,12.907 +41,2008,12.071 +41,2009,12.727 +41,2010,12.744 +41,2011,12.345 +41,2012,12.328 +41,2013,12.705 +41,2014,12.47 +41,2015,13.006 +41,2016,13.201 +41,2017,13.033 +41,2018,12.928 +41,2019,12.732 +41,2020,13.226 +41,2021,12.735 +41,2022,13.11 +41,2023,12.874 +41,2024,NA +42,1940,11.705 +42,1941,12.076 +42,1942,11.866 +42,1943,11.764 +42,1944,12.025 +42,1945,11.897 +42,1946,11.918 +42,1947,11.932 +42,1948,11.806 +42,1949,11.69 +42,1950,11.727 +42,1951,11.598 +42,1952,12.124 +42,1953,12.127 +42,1954,11.863 +42,1955,11.449 +42,1956,11.712 +42,1957,11.761 +42,1958,12.183 +42,1959,11.989 +42,1960,12.045 +42,1961,12.054 +42,1962,12.099 +42,1963,12.115 +42,1964,11.975 +42,1965,11.743 +42,1966,11.918 +42,1967,11.683 +42,1968,11.68 +42,1969,11.941 +42,1970,12.43 +42,1971,11.833 +42,1972,11.711 +42,1973,12.282 +42,1974,11.656 +42,1975,11.927 +42,1976,11.707 +42,1977,12.064 +42,1978,11.864 +42,1979,12.02 +42,1980,12.312 +42,1981,12.322 +42,1982,12.185 +42,1983,12.325 +42,1984,12.2 +42,1985,11.878 +42,1986,12.27 +42,1987,12.251 +42,1988,12.198 +42,1989,12.419 +42,1990,12.557 +42,1991,12.496 +42,1992,12.295 +42,1993,12.585 +42,1994,11.863 +42,1995,12.958 +42,1996,12.523 +42,1997,12.265 +42,1998,12.767 +42,1999,12.634 +42,2000,12.62 +42,2001,12.279 +42,2002,12.465 +42,2003,12.616 +42,2004,12.83 +42,2005,12.603 +42,2006,12.686 +42,2007,12.954 +42,2008,12.051 +42,2009,12.704 +42,2010,12.774 +42,2011,12.374 +42,2012,12.375 +42,2013,12.733 +42,2014,12.475 +42,2015,13.082 +42,2016,13.21 +42,2017,13.108 +42,2018,12.893 +42,2019,12.78 +42,2020,13.254 +42,2021,12.726 +42,2022,13.04 +42,2023,12.978 +42,2024,NA +43,1940,11.716 +43,1941,12.177 +43,1942,11.882 +43,1943,11.869 +43,1944,12.038 +43,1945,11.877 +43,1946,11.93 +43,1947,11.906 +43,1948,11.836 +43,1949,11.667 +43,1950,11.739 +43,1951,11.599 +43,1952,12.077 +43,1953,12.153 +43,1954,11.776 +43,1955,11.492 +43,1956,11.737 +43,1957,11.798 +43,1958,12.149 +43,1959,12.05 +43,1960,12.107 +43,1961,12.083 +43,1962,12.147 +43,1963,12.081 +43,1964,11.983 +43,1965,11.759 +43,1966,11.892 +43,1967,11.674 +43,1968,11.714 +43,1969,11.981 +43,1970,12.439 +43,1971,11.925 +43,1972,11.751 +43,1973,12.346 +43,1974,11.762 +43,1975,11.895 +43,1976,11.736 +43,1977,12.09 +43,1978,11.979 +43,1979,12.026 +43,1980,12.381 +43,1981,12.31 +43,1982,12.215 +43,1983,12.317 +43,1984,12.232 +43,1985,11.923 +43,1986,12.249 +43,1987,12.276 +43,1988,12.259 +43,1989,12.414 +43,1990,12.567 +43,1991,12.405 +43,1992,12.345 +43,1993,12.574 +43,1994,11.86 +43,1995,12.951 +43,1996,12.463 +43,1997,12.299 +43,1998,12.748 +43,1999,12.592 +43,2000,12.644 +43,2001,12.35 +43,2002,12.525 +43,2003,12.573 +43,2004,12.757 +43,2005,12.634 +43,2006,12.762 +43,2007,12.929 +43,2008,12.027 +43,2009,12.644 +43,2010,12.855 +43,2011,12.418 +43,2012,12.436 +43,2013,12.772 +43,2014,12.486 +43,2015,13.09 +43,2016,13.214 +43,2017,13.141 +43,2018,12.924 +43,2019,12.85 +43,2020,13.232 +43,2021,12.711 +43,2022,12.918 +43,2023,13.052 +43,2024,NA +44,1940,11.705 +44,1941,12.252 +44,1942,11.875 +44,1943,11.931 +44,1944,12.085 +44,1945,11.873 +44,1946,11.95 +44,1947,11.862 +44,1948,11.858 +44,1949,11.703 +44,1950,11.755 +44,1951,11.587 +44,1952,12.019 +44,1953,12.15 +44,1954,11.79 +44,1955,11.632 +44,1956,11.801 +44,1957,11.953 +44,1958,12.1 +44,1959,12.17 +44,1960,12.218 +44,1961,12.094 +44,1962,12.246 +44,1963,12.029 +44,1964,12.043 +44,1965,11.76 +44,1966,11.913 +44,1967,11.679 +44,1968,11.733 +44,1969,11.995 +44,1970,12.425 +44,1971,11.922 +44,1972,11.784 +44,1973,12.374 +44,1974,11.811 +44,1975,11.89 +44,1976,11.808 +44,1977,12.152 +44,1978,12.1 +44,1979,11.994 +44,1980,12.459 +44,1981,12.341 +44,1982,12.268 +44,1983,12.376 +44,1984,12.25 +44,1985,11.958 +44,1986,12.287 +44,1987,12.285 +44,1988,12.281 +44,1989,12.431 +44,1990,12.577 +44,1991,12.397 +44,1992,12.457 +44,1993,12.58 +44,1994,11.912 +44,1995,12.943 +44,1996,12.463 +44,1997,12.355 +44,1998,12.722 +44,1999,12.627 +44,2000,12.619 +44,2001,12.388 +44,2002,12.625 +44,2003,12.533 +44,2004,12.693 +44,2005,12.645 +44,2006,12.863 +44,2007,12.88 +44,2008,12.08 +44,2009,12.599 +44,2010,12.881 +44,2011,12.431 +44,2012,12.559 +44,2013,12.8 +44,2014,12.52 +44,2015,13.1 +44,2016,13.205 +44,2017,13.168 +44,2018,13.041 +44,2019,12.879 +44,2020,13.231 +44,2021,12.689 +44,2022,12.828 +44,2023,13.068 +44,2024,NA +45,1940,11.758 +45,1941,12.339 +45,1942,11.879 +45,1943,12.004 +45,1944,12.065 +45,1945,11.907 +45,1946,11.979 +45,1947,11.882 +45,1948,11.919 +45,1949,11.746 +45,1950,11.81 +45,1951,11.566 +45,1952,11.982 +45,1953,12.113 +45,1954,11.829 +45,1955,11.769 +45,1956,11.833 +45,1957,12.11 +45,1958,12.055 +45,1959,12.171 +45,1960,12.24 +45,1961,12.069 +45,1962,12.319 +45,1963,11.988 +45,1964,12.062 +45,1965,11.729 +45,1966,11.974 +45,1967,11.829 +45,1968,11.789 +45,1969,12.016 +45,1970,12.422 +45,1971,11.919 +45,1972,11.745 +45,1973,12.385 +45,1974,11.839 +45,1975,11.952 +45,1976,11.87 +45,1977,12.177 +45,1978,12.19 +45,1979,12.011 +45,1980,12.545 +45,1981,12.434 +45,1982,12.26 +45,1983,12.507 +45,1984,12.338 +45,1985,12.003 +45,1986,12.287 +45,1987,12.277 +45,1988,12.305 +45,1989,12.397 +45,1990,12.574 +45,1991,12.344 +45,1992,12.598 +45,1993,12.536 +45,1994,11.996 +45,1995,12.949 +45,1996,12.456 +45,1997,12.367 +45,1998,12.711 +45,1999,12.692 +45,2000,12.623 +45,2001,12.439 +45,2002,12.71 +45,2003,12.509 +45,2004,12.67 +45,2005,12.695 +45,2006,12.961 +45,2007,12.758 +45,2008,12.213 +45,2009,12.574 +45,2010,12.921 +45,2011,12.48 +45,2012,12.722 +45,2013,12.73 +45,2014,12.547 +45,2015,13.065 +45,2016,13.206 +45,2017,13.205 +45,2018,13.183 +45,2019,12.993 +45,2020,13.265 +45,2021,12.691 +45,2022,12.801 +45,2023,13.041 +45,2024,NA +46,1940,11.794 +46,1941,12.389 +46,1942,11.923 +46,1943,12.033 +46,1944,12.063 +46,1945,11.9 +46,1946,12.003 +46,1947,11.967 +46,1948,11.861 +46,1949,11.78 +46,1950,11.884 +46,1951,11.549 +46,1952,12 +46,1953,12.112 +46,1954,11.869 +46,1955,11.837 +46,1956,11.86 +46,1957,12.099 +46,1958,12.063 +46,1959,12.125 +46,1960,12.297 +46,1961,12.073 +46,1962,12.364 +46,1963,11.984 +46,1964,11.999 +46,1965,11.746 +46,1966,11.954 +46,1967,11.884 +46,1968,11.911 +46,1969,12.021 +46,1970,12.352 +46,1971,12 +46,1972,11.744 +46,1973,12.394 +46,1974,11.927 +46,1975,12.023 +46,1976,11.914 +46,1977,12.21 +46,1978,12.186 +46,1979,12.021 +46,1980,12.642 +46,1981,12.464 +46,1982,12.285 +46,1983,12.631 +46,1984,12.43 +46,1985,12.123 +46,1986,12.258 +46,1987,12.3 +46,1988,12.28 +46,1989,12.354 +46,1990,12.514 +46,1991,12.323 +46,1992,12.67 +46,1993,12.452 +46,1994,12.095 +46,1995,12.905 +46,1996,12.414 +46,1997,12.387 +46,1998,12.71 +46,1999,12.736 +46,2000,12.642 +46,2001,12.489 +46,2002,12.786 +46,2003,12.414 +46,2004,12.567 +46,2005,12.755 +46,2006,13.014 +46,2007,12.718 +46,2008,12.313 +46,2009,12.536 +46,2010,12.973 +46,2011,12.599 +46,2012,12.843 +46,2013,12.657 +46,2014,12.616 +46,2015,13.021 +46,2016,13.283 +46,2017,13.287 +46,2018,13.257 +46,2019,13.112 +46,2020,13.31 +46,2021,12.672 +46,2022,12.839 +46,2023,12.947 +46,2024,NA +47,1940,11.861 +47,1941,12.443 +47,1942,11.877 +47,1943,12.071 +47,1944,12.131 +47,1945,11.803 +47,1946,11.996 +47,1947,12.015 +47,1948,11.872 +47,1949,11.944 +47,1950,11.89 +47,1951,11.604 +47,1952,12.011 +47,1953,12.075 +47,1954,11.852 +47,1955,11.936 +47,1956,11.847 +47,1957,12.14 +47,1958,12.087 +47,1959,12.15 +47,1960,12.339 +47,1961,12.113 +47,1962,12.391 +47,1963,12.051 +47,1964,11.953 +47,1965,11.773 +47,1966,11.97 +47,1967,11.877 +47,1968,11.954 +47,1969,12.048 +47,1970,12.348 +47,1971,12.065 +47,1972,11.772 +47,1973,12.425 +47,1974,11.98 +47,1975,12.065 +47,1976,11.975 +47,1977,12.259 +47,1978,12.242 +47,1979,11.958 +47,1980,12.649 +47,1981,12.482 +47,1982,12.362 +47,1983,12.666 +47,1984,12.443 +47,1985,12.149 +47,1986,12.224 +47,1987,12.326 +47,1988,12.233 +47,1989,12.356 +47,1990,12.414 +47,1991,12.359 +47,1992,12.669 +47,1993,12.375 +47,1994,12.222 +47,1995,12.853 +47,1996,12.398 +47,1997,12.327 +47,1998,12.766 +47,1999,12.82 +47,2000,12.61 +47,2001,12.513 +47,2002,12.856 +47,2003,12.36 +47,2004,12.558 +47,2005,12.787 +47,2006,12.971 +47,2007,12.738 +47,2008,12.364 +47,2009,12.5 +47,2010,12.99 +47,2011,12.71 +47,2012,12.876 +47,2013,12.639 +47,2014,12.635 +47,2015,13.027 +47,2016,13.412 +47,2017,13.325 +47,2018,13.291 +47,2019,13.211 +47,2020,13.429 +47,2021,12.622 +47,2022,12.898 +47,2023,12.921 +47,2024,NA +48,1940,11.972 +48,1941,12.54 +48,1942,11.801 +48,1943,12.109 +48,1944,12.212 +48,1945,11.72 +48,1946,12.012 +48,1947,12.028 +48,1948,11.994 +48,1949,12.116 +48,1950,11.9 +48,1951,11.674 +48,1952,12.015 +48,1953,12.146 +48,1954,11.813 +48,1955,12.033 +48,1956,11.848 +48,1957,12.17 +48,1958,12.171 +48,1959,12.198 +48,1960,12.374 +48,1961,12.128 +48,1962,12.362 +48,1963,12.122 +48,1964,11.935 +48,1965,11.816 +48,1966,11.952 +48,1967,11.876 +48,1968,11.941 +48,1969,12.098 +48,1970,12.336 +48,1971,12.081 +48,1972,11.783 +48,1973,12.438 +48,1974,11.995 +48,1975,12.079 +48,1976,12.031 +48,1977,12.289 +48,1978,12.302 +48,1979,11.992 +48,1980,12.616 +48,1981,12.484 +48,1982,12.406 +48,1983,12.672 +48,1984,12.396 +48,1985,12.083 +48,1986,12.232 +48,1987,12.344 +48,1988,12.248 +48,1989,12.363 +48,1990,12.328 +48,1991,12.459 +48,1992,12.653 +48,1993,12.388 +48,1994,12.204 +48,1995,12.8 +48,1996,12.421 +48,1997,12.332 +48,1998,12.824 +48,1999,12.86 +48,2000,12.577 +48,2001,12.545 +48,2002,12.915 +48,2003,12.424 +48,2004,12.648 +48,2005,12.744 +48,2006,12.884 +48,2007,12.724 +48,2008,12.416 +48,2009,12.51 +48,2010,13.014 +48,2011,12.772 +48,2012,12.882 +48,2013,12.582 +48,2014,12.702 +48,2015,13.039 +48,2016,13.481 +48,2017,13.287 +48,2018,13.233 +48,2019,13.241 +48,2020,13.505 +48,2021,12.564 +48,2022,12.979 +48,2023,12.905 +48,2024,NA +49,1940,12.086 +49,1941,12.53 +49,1942,11.837 +49,1943,12.082 +49,1944,12.244 +49,1945,11.651 +49,1946,12.035 +49,1947,12.007 +49,1948,12.033 +49,1949,12.176 +49,1950,11.83 +49,1951,11.74 +49,1952,12.003 +49,1953,12.148 +49,1954,11.795 +49,1955,12.047 +49,1956,11.85 +49,1957,12.168 +49,1958,12.245 +49,1959,12.183 +49,1960,12.353 +49,1961,12.213 +49,1962,12.337 +49,1963,12.221 +49,1964,11.985 +49,1965,11.871 +49,1966,11.911 +49,1967,11.951 +49,1968,11.923 +49,1969,12.088 +49,1970,12.342 +49,1971,12.088 +49,1972,11.761 +49,1973,12.408 +49,1974,11.979 +49,1975,12.093 +49,1976,12.006 +49,1977,12.302 +49,1978,12.355 +49,1979,12.065 +49,1980,12.679 +49,1981,12.547 +49,1982,12.399 +49,1983,12.717 +49,1984,12.362 +49,1985,12.054 +49,1986,12.301 +49,1987,12.345 +49,1988,12.301 +49,1989,12.408 +49,1990,12.315 +49,1991,12.564 +49,1992,12.634 +49,1993,12.449 +49,1994,12.181 +49,1995,12.774 +49,1996,12.452 +49,1997,12.413 +49,1998,12.873 +49,1999,12.835 +49,2000,12.532 +49,2001,12.579 +49,2002,12.943 +49,2003,12.552 +49,2004,12.719 +49,2005,12.721 +49,2006,12.875 +49,2007,12.705 +49,2008,12.457 +49,2009,12.531 +49,2010,13.092 +49,2011,12.74 +49,2012,12.839 +49,2013,12.525 +49,2014,12.804 +49,2015,12.973 +49,2016,13.527 +49,2017,13.285 +49,2018,13.173 +49,2019,13.215 +49,2020,13.501 +49,2021,12.578 +49,2022,12.975 +49,2023,12.957 +49,2024,NA +50,1940,12.115 +50,1941,12.481 +50,1942,11.871 +50,1943,12.168 +50,1944,12.21 +50,1945,11.631 +50,1946,12.052 +50,1947,11.98 +50,1948,11.969 +50,1949,12.236 +50,1950,11.759 +50,1951,11.84 +50,1952,12.045 +50,1953,12.155 +50,1954,11.82 +50,1955,11.993 +50,1956,11.883 +50,1957,12.118 +50,1958,12.272 +50,1959,12.111 +50,1960,12.353 +50,1961,12.301 +50,1962,12.358 +50,1963,12.27 +50,1964,12.03 +50,1965,11.908 +50,1966,11.858 +50,1967,12.026 +50,1968,12.011 +50,1969,12.06 +50,1970,12.37 +50,1971,12.043 +50,1972,11.731 +50,1973,12.379 +50,1974,11.926 +50,1975,12.156 +50,1976,12.037 +50,1977,12.382 +50,1978,12.396 +50,1979,12.132 +50,1980,12.765 +50,1981,12.557 +50,1982,12.427 +50,1983,12.757 +50,1984,12.33 +50,1985,12.067 +50,1986,12.359 +50,1987,12.33 +50,1988,12.383 +50,1989,12.428 +50,1990,12.368 +50,1991,12.651 +50,1992,12.618 +50,1993,12.431 +50,1994,12.167 +50,1995,12.811 +50,1996,12.519 +50,1997,12.441 +50,1998,12.937 +50,1999,12.801 +50,2000,12.502 +50,2001,12.618 +50,2002,12.968 +50,2003,12.657 +50,2004,12.759 +50,2005,12.754 +50,2006,12.952 +50,2007,12.659 +50,2008,12.468 +50,2009,12.582 +50,2010,13.164 +50,2011,12.682 +50,2012,12.768 +50,2013,12.529 +50,2014,12.861 +50,2015,12.975 +50,2016,13.551 +50,2017,13.326 +50,2018,13.108 +50,2019,13.194 +50,2020,13.471 +50,2021,12.605 +50,2022,12.92 +50,2023,13.093 +50,2024,NA +51,1940,12.109 +51,1941,12.521 +51,1942,11.924 +51,1943,12.32 +51,1944,12.275 +51,1945,11.669 +51,1946,12.105 +51,1947,11.973 +51,1948,11.947 +51,1949,12.235 +51,1950,11.74 +51,1951,11.858 +51,1952,12.075 +51,1953,12.191 +51,1954,11.892 +51,1955,12.012 +51,1956,11.912 +51,1957,12.087 +51,1958,12.295 +51,1959,12.096 +51,1960,12.402 +51,1961,12.395 +51,1962,12.382 +51,1963,12.267 +51,1964,12.054 +51,1965,11.954 +51,1966,11.929 +51,1967,12.103 +51,1968,12.124 +51,1969,12.078 +51,1970,12.327 +51,1971,11.99 +51,1972,11.721 +51,1973,12.439 +51,1974,11.832 +51,1975,12.172 +51,1976,12.002 +51,1977,12.388 +51,1978,12.447 +51,1979,12.207 +51,1980,12.761 +51,1981,12.581 +51,1982,12.495 +51,1983,12.768 +51,1984,12.327 +51,1985,12.122 +51,1986,12.376 +51,1987,12.319 +51,1988,12.471 +51,1989,12.469 +51,1990,12.459 +51,1991,12.772 +51,1992,12.577 +51,1993,12.369 +51,1994,12.141 +51,1995,12.849 +51,1996,12.585 +51,1997,12.462 +51,1998,12.95 +51,1999,12.807 +51,2000,12.492 +51,2001,12.69 +51,2002,12.974 +51,2003,12.637 +51,2004,12.751 +51,2005,12.824 +51,2006,13.041 +51,2007,12.695 +51,2008,12.516 +51,2009,12.712 +51,2010,13.211 +51,2011,12.667 +51,2012,12.743 +51,2013,12.56 +51,2014,12.864 +51,2015,12.997 +51,2016,13.553 +51,2017,13.322 +51,2018,13.091 +51,2019,13.207 +51,2020,13.45 +51,2021,12.733 +51,2022,12.922 +51,2023,13.194 +51,2024,NA +52,1940,12.105 +52,1941,12.526 +52,1942,11.988 +52,1943,12.395 +52,1944,12.349 +52,1945,11.776 +52,1946,12.128 +52,1947,12.091 +52,1948,12.02 +52,1949,12.263 +52,1950,11.73 +52,1951,11.869 +52,1952,12.124 +52,1953,12.218 +52,1954,11.934 +52,1955,12.04 +52,1956,11.901 +52,1957,12.09 +52,1958,12.306 +52,1959,12.154 +52,1960,12.449 +52,1961,12.471 +52,1962,12.37 +52,1963,12.242 +52,1964,12.076 +52,1965,11.967 +52,1966,11.997 +52,1967,12.193 +52,1968,12.149 +52,1969,12.131 +52,1970,12.304 +52,1971,11.972 +52,1972,11.799 +52,1973,12.483 +52,1974,11.87 +52,1975,12.121 +52,1976,11.987 +52,1977,12.358 +52,1978,12.455 +52,1979,12.241 +52,1980,12.74 +52,1981,12.587 +52,1982,12.502 +52,1983,12.755 +52,1984,12.315 +52,1985,12.138 +52,1986,12.383 +52,1987,12.387 +52,1988,12.514 +52,1989,12.46 +52,1990,12.566 +52,1991,12.863 +52,1992,12.563 +52,1993,12.302 +52,1994,12.098 +52,1995,12.859 +52,1996,12.611 +52,1997,12.502 +52,1998,12.963 +52,1999,12.787 +52,2000,12.505 +52,2001,12.685 +52,2002,12.988 +52,2003,12.622 +52,2004,12.765 +52,2005,12.935 +52,2006,13.077 +52,2007,12.771 +52,2008,12.599 +52,2009,12.766 +52,2010,13.183 +52,2011,12.628 +52,2012,12.744 +52,2013,12.647 +52,2014,12.842 +52,2015,13.002 +52,2016,13.524 +52,2017,13.318 +52,2018,13.062 +52,2019,13.311 +52,2020,13.515 +52,2021,12.86 +52,2022,12.976 +52,2023,13.215 +52,2024,NA +53,1940,12.105 +53,1941,12.419 +53,1942,12.119 +53,1943,12.424 +53,1944,12.437 +53,1945,11.826 +53,1946,12.202 +53,1947,12.253 +53,1948,12.088 +53,1949,12.267 +53,1950,11.797 +53,1951,11.882 +53,1952,12.101 +53,1953,12.278 +53,1954,12.028 +53,1955,12.047 +53,1956,11.905 +53,1957,12.107 +53,1958,12.407 +53,1959,12.244 +53,1960,12.446 +53,1961,12.505 +53,1962,12.332 +53,1963,12.229 +53,1964,12.108 +53,1965,12.023 +53,1966,12.045 +53,1967,12.136 +53,1968,12.134 +53,1969,12.142 +53,1970,12.307 +53,1971,11.95 +53,1972,11.894 +53,1973,12.563 +53,1974,11.937 +53,1975,12.099 +53,1976,11.98 +53,1977,12.367 +53,1978,12.509 +53,1979,12.215 +53,1980,12.702 +53,1981,12.6 +53,1982,12.451 +53,1983,12.807 +53,1984,12.23 +53,1985,12.149 +53,1986,12.406 +53,1987,12.472 +53,1988,12.568 +53,1989,12.439 +53,1990,12.628 +53,1991,12.873 +53,1992,12.602 +53,1993,12.291 +53,1994,12.07 +53,1995,12.815 +53,1996,12.593 +53,1997,12.494 +53,1998,12.984 +53,1999,12.767 +53,2000,12.526 +53,2001,12.616 +53,2002,13.002 +53,2003,12.652 +53,2004,12.86 +53,2005,12.972 +53,2006,13.082 +53,2007,12.81 +53,2008,12.721 +53,2009,12.754 +53,2010,13.166 +53,2011,12.582 +53,2012,12.81 +53,2013,12.78 +53,2014,12.825 +53,2015,13.03 +53,2016,13.582 +53,2017,13.383 +53,2018,13.08 +53,2019,13.361 +53,2020,13.61 +53,2021,12.97 +53,2022,13.001 +53,2023,13.173 +53,2024,NA +54,1940,12.098 +54,1941,12.35 +54,1942,12.223 +54,1943,12.405 +54,1944,12.539 +54,1945,11.854 +54,1946,12.299 +54,1947,12.339 +54,1948,12.07 +54,1949,12.265 +54,1950,11.901 +54,1951,11.897 +54,1952,12.086 +54,1953,12.326 +54,1954,12.057 +54,1955,12.011 +54,1956,11.99 +54,1957,12.106 +54,1958,12.487 +54,1959,12.36 +54,1960,12.474 +54,1961,12.449 +54,1962,12.347 +54,1963,12.208 +54,1964,12.129 +54,1965,12.047 +54,1966,12.152 +54,1967,12.081 +54,1968,12.221 +54,1969,12.163 +54,1970,12.341 +54,1971,11.946 +54,1972,12.007 +54,1973,12.617 +54,1974,11.915 +54,1975,12.201 +54,1976,11.895 +54,1977,12.374 +54,1978,12.505 +54,1979,12.212 +54,1980,12.77 +54,1981,12.637 +54,1982,12.386 +54,1983,12.784 +54,1984,12.167 +54,1985,12.159 +54,1986,12.463 +54,1987,12.608 +54,1988,12.599 +54,1989,12.404 +54,1990,12.625 +54,1991,12.868 +54,1992,12.605 +54,1993,12.293 +54,1994,12.073 +54,1995,12.797 +54,1996,12.61 +54,1997,12.536 +54,1998,13.04 +54,1999,12.803 +54,2000,12.588 +54,2001,12.595 +54,2002,13.016 +54,2003,12.709 +54,2004,12.954 +54,2005,12.998 +54,2006,13.029 +54,2007,12.79 +54,2008,12.751 +54,2009,12.755 +54,2010,13.162 +54,2011,12.567 +54,2012,12.86 +54,2013,12.913 +54,2014,12.83 +54,2015,13.092 +54,2016,13.649 +54,2017,13.426 +54,2018,13.089 +54,2019,13.379 +54,2020,13.684 +54,2021,12.995 +54,2022,13.107 +54,2023,13.137 +54,2024,NA +55,1940,12.133 +55,1941,12.294 +55,1942,12.282 +55,1943,12.404 +55,1944,12.576 +55,1945,11.88 +55,1946,12.31 +55,1947,12.313 +55,1948,12.116 +55,1949,12.306 +55,1950,12 +55,1951,11.921 +55,1952,12.095 +55,1953,12.388 +55,1954,12.028 +55,1955,11.987 +55,1956,12.007 +55,1957,12.117 +55,1958,12.533 +55,1959,12.394 +55,1960,12.463 +55,1961,12.391 +55,1962,12.32 +55,1963,12.263 +55,1964,12.149 +55,1965,12.041 +55,1966,12.302 +55,1967,12.031 +55,1968,12.25 +55,1969,12.249 +55,1970,12.387 +55,1971,11.945 +55,1972,12.118 +55,1973,12.567 +55,1974,11.913 +55,1975,12.312 +55,1976,11.839 +55,1977,12.393 +55,1978,12.476 +55,1979,12.197 +55,1980,12.765 +55,1981,12.665 +55,1982,12.334 +55,1983,12.805 +55,1984,12.153 +55,1985,12.142 +55,1986,12.485 +55,1987,12.623 +55,1988,12.631 +55,1989,12.404 +55,1990,12.591 +55,1991,12.897 +55,1992,12.513 +55,1993,12.303 +55,1994,12.122 +55,1995,12.757 +55,1996,12.698 +55,1997,12.616 +55,1998,13.123 +55,1999,12.853 +55,2000,12.659 +55,2001,12.64 +55,2002,13.013 +55,2003,12.772 +55,2004,13.006 +55,2005,13.044 +55,2006,13.007 +55,2007,12.746 +55,2008,12.816 +55,2009,12.792 +55,2010,13.134 +55,2011,12.55 +55,2012,12.79 +55,2013,12.992 +55,2014,12.838 +55,2015,13.154 +55,2016,13.71 +55,2017,13.397 +55,2018,13.106 +55,2019,13.39 +55,2020,13.695 +55,2021,12.987 +55,2022,13.185 +55,2023,13.172 +55,2024,NA +56,1940,12.205 +56,1941,12.264 +56,1942,12.283 +56,1943,12.423 +56,1944,12.609 +56,1945,11.961 +56,1946,12.235 +56,1947,12.328 +56,1948,12.115 +56,1949,12.349 +56,1950,12.122 +56,1951,11.911 +56,1952,12.124 +56,1953,12.452 +56,1954,12.012 +56,1955,11.976 +56,1956,11.981 +56,1957,12.1 +56,1958,12.548 +56,1959,12.388 +56,1960,12.419 +56,1961,12.415 +56,1962,12.307 +56,1963,12.345 +56,1964,12.147 +56,1965,12.111 +56,1966,12.459 +56,1967,12.056 +56,1968,12.278 +56,1969,12.274 +56,1970,12.43 +56,1971,11.998 +56,1972,12.163 +56,1973,12.627 +56,1974,11.941 +56,1975,12.369 +56,1976,11.881 +56,1977,12.348 +56,1978,12.53 +56,1979,12.188 +56,1980,12.756 +56,1981,12.65 +56,1982,12.306 +56,1983,12.817 +56,1984,12.182 +56,1985,12.166 +56,1986,12.502 +56,1987,12.612 +56,1988,12.701 +56,1989,12.526 +56,1990,12.613 +56,1991,12.972 +56,1992,12.515 +56,1993,12.391 +56,1994,12.194 +56,1995,12.688 +56,1996,12.784 +56,1997,12.679 +56,1998,13.166 +56,1999,12.934 +56,2000,12.692 +56,2001,12.63 +56,2002,12.999 +56,2003,12.767 +56,2004,13.098 +56,2005,13.063 +56,2006,13.002 +56,2007,12.75 +56,2008,12.862 +56,2009,12.861 +56,2010,13.1 +56,2011,12.539 +56,2012,12.687 +56,2013,13.006 +56,2014,12.792 +56,2015,13.136 +56,2016,13.768 +56,2017,13.329 +56,2018,13.101 +56,2019,13.368 +56,2020,13.652 +56,2021,12.98 +56,2022,13.312 +56,2023,13.25 +56,2024,NA +57,1940,12.247 +57,1941,12.252 +57,1942,12.316 +57,1943,12.447 +57,1944,12.67 +57,1945,12.042 +57,1946,12.158 +57,1947,12.368 +57,1948,12.075 +57,1949,12.351 +57,1950,12.162 +57,1951,11.841 +57,1952,12.173 +57,1953,12.527 +57,1954,12.042 +57,1955,11.95 +57,1956,12.006 +57,1957,12.144 +57,1958,12.511 +57,1959,12.395 +57,1960,12.403 +57,1961,12.426 +57,1962,12.303 +57,1963,12.411 +57,1964,12.191 +57,1965,12.244 +57,1966,12.563 +57,1967,12.073 +57,1968,12.37 +57,1969,12.29 +57,1970,12.428 +57,1971,11.98 +57,1972,12.221 +57,1973,12.673 +57,1974,11.988 +57,1975,12.443 +57,1976,11.975 +57,1977,12.339 +57,1978,12.55 +57,1979,12.248 +57,1980,12.751 +57,1981,12.653 +57,1982,12.28 +57,1983,12.782 +57,1984,12.226 +57,1985,12.124 +57,1986,12.558 +57,1987,12.601 +57,1988,12.779 +57,1989,12.662 +57,1990,12.695 +57,1991,13.032 +57,1992,12.6 +57,1993,12.473 +57,1994,12.222 +57,1995,12.644 +57,1996,12.798 +57,1997,12.722 +57,1998,13.163 +57,1999,12.994 +57,2000,12.66 +57,2001,12.636 +57,2002,12.957 +57,2003,12.763 +57,2004,13.19 +57,2005,13.061 +57,2006,12.983 +57,2007,12.729 +57,2008,12.87 +57,2009,12.891 +57,2010,13.045 +57,2011,12.519 +57,2012,12.61 +57,2013,13.012 +57,2014,12.73 +57,2015,13.112 +57,2016,13.832 +57,2017,13.392 +57,2018,13.18 +57,2019,13.457 +57,2020,13.544 +57,2021,12.942 +57,2022,13.411 +57,2023,13.335 +57,2024,NA +58,1940,12.25 +58,1941,12.277 +58,1942,12.349 +58,1943,12.475 +58,1944,12.671 +58,1945,12.153 +58,1946,12.112 +58,1947,12.398 +58,1948,12.016 +58,1949,12.331 +58,1950,12.19 +58,1951,11.766 +58,1952,12.262 +58,1953,12.579 +58,1954,12.039 +58,1955,11.952 +58,1956,12.014 +58,1957,12.152 +58,1958,12.446 +58,1959,12.424 +58,1960,12.421 +58,1961,12.429 +58,1962,12.335 +58,1963,12.375 +58,1964,12.239 +58,1965,12.346 +58,1966,12.595 +58,1967,12.165 +58,1968,12.39 +58,1969,12.315 +58,1970,12.427 +58,1971,11.852 +58,1972,12.255 +58,1973,12.67 +58,1974,12.057 +58,1975,12.466 +58,1976,12.095 +58,1977,12.35 +58,1978,12.518 +58,1979,12.325 +58,1980,12.753 +58,1981,12.666 +58,1982,12.329 +58,1983,12.753 +58,1984,12.251 +58,1985,12.129 +58,1986,12.604 +58,1987,12.587 +58,1988,12.842 +58,1989,12.723 +58,1990,12.812 +58,1991,13.025 +58,1992,12.664 +58,1993,12.544 +58,1994,12.2 +58,1995,12.613 +58,1996,12.778 +58,1997,12.724 +58,1998,13.186 +58,1999,13.038 +58,2000,12.658 +58,2001,12.668 +58,2002,12.956 +58,2003,12.736 +58,2004,13.197 +58,2005,13.097 +58,2006,12.972 +58,2007,12.711 +58,2008,12.91 +58,2009,12.878 +58,2010,13.069 +58,2011,12.572 +58,2012,12.592 +58,2013,13.036 +58,2014,12.751 +58,2015,13.026 +58,2016,13.87 +58,2017,13.468 +58,2018,13.265 +58,2019,13.538 +58,2020,13.475 +58,2021,12.937 +58,2022,13.505 +58,2023,13.399 +58,2024,NA +59,1940,12.282 +59,1941,12.297 +59,1942,12.279 +59,1943,12.541 +59,1944,12.698 +59,1945,12.167 +59,1946,12.149 +59,1947,12.366 +59,1948,11.979 +59,1949,12.305 +59,1950,12.196 +59,1951,11.755 +59,1952,12.319 +59,1953,12.568 +59,1954,12.082 +59,1955,11.968 +59,1956,11.977 +59,1957,12.069 +59,1958,12.382 +59,1959,12.461 +59,1960,12.463 +59,1961,12.416 +59,1962,12.333 +59,1963,12.395 +59,1964,12.265 +59,1965,12.417 +59,1966,12.597 +59,1967,12.233 +59,1968,12.38 +59,1969,12.417 +59,1970,12.418 +59,1971,11.791 +59,1972,12.31 +59,1973,12.722 +59,1974,12.125 +59,1975,12.488 +59,1976,12.119 +59,1977,12.357 +59,1978,12.481 +59,1979,12.348 +59,1980,12.789 +59,1981,12.716 +59,1982,12.356 +59,1983,12.719 +59,1984,12.251 +59,1985,12.21 +59,1986,12.602 +59,1987,12.573 +59,1988,12.915 +59,1989,12.775 +59,1990,12.961 +59,1991,12.997 +59,1992,12.677 +59,1993,12.573 +59,1994,12.185 +59,1995,12.62 +59,1996,12.727 +59,1997,12.728 +59,1998,13.223 +59,1999,13.067 +59,2000,12.669 +59,2001,12.758 +59,2002,12.959 +59,2003,12.804 +59,2004,13.189 +59,2005,13.083 +59,2006,13.024 +59,2007,12.732 +59,2008,12.932 +59,2009,12.851 +59,2010,13.08 +59,2011,12.634 +59,2012,12.641 +59,2013,13.019 +59,2014,12.796 +59,2015,12.996 +59,2016,13.922 +59,2017,13.537 +59,2018,13.297 +59,2019,13.559 +59,2020,13.492 +59,2021,12.984 +59,2022,13.51 +59,2023,13.496 +59,2024,NA +60,1940,12.323 +60,1941,NA +60,1942,NA +60,1943,NA +60,1944,12.683 +60,1945,NA +60,1946,NA +60,1947,NA +60,1948,11.874 +60,1949,NA +60,1950,NA +60,1951,NA +60,1952,12.373 +60,1953,NA +60,1954,NA +60,1955,NA +60,1956,12.006 +60,1957,NA +60,1958,NA +60,1959,NA +60,1960,12.426 +60,1961,NA +60,1962,NA +60,1963,NA +60,1964,12.269 +60,1965,NA +60,1966,NA +60,1967,NA +60,1968,12.412 +60,1969,NA +60,1970,NA +60,1971,NA +60,1972,12.331 +60,1973,NA +60,1974,NA +60,1975,NA +60,1976,12.045 +60,1977,NA +60,1978,NA +60,1979,NA +60,1980,12.744 +60,1981,NA +60,1982,NA +60,1983,NA +60,1984,12.297 +60,1985,NA +60,1986,NA +60,1987,NA +60,1988,12.917 +60,1989,NA +60,1990,NA +60,1991,NA +60,1992,12.673 +60,1993,NA +60,1994,NA +60,1995,NA +60,1996,12.754 +60,1997,NA +60,1998,NA +60,1999,NA +60,2000,12.652 +60,2001,NA +60,2002,NA +60,2003,NA +60,2004,13.153 +60,2005,NA +60,2006,NA +60,2007,NA +60,2008,12.972 +60,2009,NA +60,2010,NA +60,2011,NA +60,2012,12.724 +60,2013,NA +60,2014,NA +60,2015,NA +60,2016,13.893 +60,2017,NA +60,2018,NA +60,2019,NA +60,2020,13.541 +60,2021,NA +60,2022,NA +60,2023,NA +60,2024,NA +61,1940,12.33 +61,1941,12.286 +61,1942,12.257 +61,1943,12.526 +61,1944,12.736 +61,1945,12.213 +61,1946,12.237 +61,1947,12.416 +61,1948,11.774 +61,1949,12.291 +61,1950,12.187 +61,1951,11.749 +61,1952,12.339 +61,1953,12.531 +61,1954,12.078 +61,1955,11.972 +61,1956,12.071 +61,1957,12.09 +61,1958,12.442 +61,1959,12.529 +61,1960,12.315 +61,1961,12.438 +61,1962,12.374 +61,1963,12.442 +61,1964,12.241 +61,1965,12.398 +61,1966,12.583 +61,1967,12.269 +61,1968,12.43 +61,1969,12.422 +61,1970,12.444 +61,1971,11.764 +61,1972,12.229 +61,1973,12.756 +61,1974,12.216 +61,1975,12.493 +61,1976,12.025 +61,1977,12.333 +61,1978,12.434 +61,1979,12.339 +61,1980,12.623 +61,1981,12.798 +61,1982,12.364 +61,1983,12.768 +61,1984,12.432 +61,1985,12.304 +61,1986,12.596 +61,1987,12.593 +61,1988,12.973 +61,1989,12.793 +61,1990,13.09 +61,1991,12.967 +61,1992,12.684 +61,1993,12.605 +61,1994,12.237 +61,1995,12.661 +61,1996,12.855 +61,1997,12.726 +61,1998,13.256 +61,1999,13.059 +61,2000,12.705 +61,2001,12.81 +61,2002,12.96 +61,2003,12.821 +61,2004,13.146 +61,2005,13.052 +61,2006,13.132 +61,2007,12.723 +61,2008,13.047 +61,2009,12.775 +61,2010,13.126 +61,2011,12.655 +61,2012,12.723 +61,2013,13.024 +61,2014,12.805 +61,2015,13.055 +61,2016,13.889 +61,2017,13.554 +61,2018,13.333 +61,2019,13.569 +61,2020,13.63 +61,2021,13.01 +61,2022,13.524 +61,2023,13.524 +61,2024,NA +62,1940,12.288 +62,1941,12.28 +62,1942,12.316 +62,1943,12.468 +62,1944,12.756 +62,1945,12.257 +62,1946,12.362 +62,1947,12.472 +62,1948,11.746 +62,1949,12.34 +62,1950,12.114 +62,1951,11.81 +62,1952,12.236 +62,1953,12.508 +62,1954,12.065 +62,1955,11.941 +62,1956,12.164 +62,1957,12.136 +62,1958,12.491 +62,1959,12.535 +62,1960,12.264 +62,1961,12.435 +62,1962,12.45 +62,1963,12.433 +62,1964,12.294 +62,1965,12.361 +62,1966,12.533 +62,1967,12.32 +62,1968,12.453 +62,1969,12.437 +62,1970,12.406 +62,1971,11.836 +62,1972,12.115 +62,1973,12.798 +62,1974,12.216 +62,1975,12.456 +62,1976,12.031 +62,1977,12.319 +62,1978,12.409 +62,1979,12.365 +62,1980,12.584 +62,1981,12.795 +62,1982,12.437 +62,1983,12.889 +62,1984,12.548 +62,1985,12.354 +62,1986,12.639 +62,1987,12.618 +62,1988,12.954 +62,1989,12.779 +62,1990,13.154 +62,1991,12.938 +62,1992,12.71 +62,1993,12.687 +62,1994,12.296 +62,1995,12.704 +62,1996,12.878 +62,1997,12.788 +62,1998,13.248 +62,1999,13.036 +62,2000,12.766 +62,2001,12.88 +62,2002,12.982 +62,2003,12.75 +62,2004,13.114 +62,2005,13.092 +62,2006,13.217 +62,2007,12.695 +62,2008,13.146 +62,2009,12.799 +62,2010,13.189 +62,2011,12.66 +62,2012,12.706 +62,2013,13.086 +62,2014,12.847 +62,2015,13.165 +62,2016,13.88 +62,2017,13.591 +62,2018,13.352 +62,2019,13.577 +62,2020,13.695 +62,2021,13.06 +62,2022,13.577 +62,2023,13.537 +62,2024,NA +63,1940,12.327 +63,1941,12.264 +63,1942,12.374 +63,1943,12.445 +63,1944,12.735 +63,1945,12.25 +63,1946,12.463 +63,1947,12.48 +63,1948,11.826 +63,1949,12.395 +63,1950,12.164 +63,1951,11.857 +63,1952,12.178 +63,1953,12.53 +63,1954,12.034 +63,1955,11.873 +63,1956,12.245 +63,1957,12.197 +63,1958,12.548 +63,1959,12.584 +63,1960,12.287 +63,1961,12.408 +63,1962,12.543 +63,1963,12.468 +63,1964,12.316 +63,1965,12.327 +63,1966,12.464 +63,1967,12.443 +63,1968,12.507 +63,1969,12.445 +63,1970,12.417 +63,1971,11.917 +63,1972,12.174 +63,1973,12.727 +63,1974,12.257 +63,1975,12.464 +63,1976,12.09 +63,1977,12.302 +63,1978,12.41 +63,1979,12.485 +63,1980,12.601 +63,1981,12.842 +63,1982,12.453 +63,1983,12.998 +63,1984,12.662 +63,1985,12.371 +63,1986,12.661 +63,1987,12.608 +63,1988,12.924 +63,1989,12.74 +63,1990,13.207 +63,1991,12.952 +63,1992,12.787 +63,1993,12.753 +63,1994,12.377 +63,1995,12.738 +63,1996,12.868 +63,1997,12.879 +63,1998,13.251 +63,1999,12.999 +63,2000,12.803 +63,2001,12.966 +63,2002,13.019 +63,2003,12.69 +63,2004,13.084 +63,2005,13.162 +63,2006,13.28 +63,2007,12.758 +63,2008,13.188 +63,2009,12.895 +63,2010,13.203 +63,2011,12.724 +63,2012,12.675 +63,2013,13.117 +63,2014,12.845 +63,2015,13.154 +63,2016,13.858 +63,2017,13.58 +63,2018,13.423 +63,2019,13.637 +63,2020,13.746 +63,2021,13.179 +63,2022,13.62 +63,2023,13.551 +63,2024,NA +64,1940,12.352 +64,1941,12.268 +64,1942,12.374 +64,1943,12.384 +64,1944,12.7 +64,1945,12.184 +64,1946,12.425 +64,1947,12.516 +64,1948,11.92 +64,1949,12.468 +64,1950,12.27 +64,1951,11.976 +64,1952,12.175 +64,1953,12.502 +64,1954,12.021 +64,1955,11.832 +64,1956,12.28 +64,1957,12.22 +64,1958,12.601 +64,1959,12.663 +64,1960,12.334 +64,1961,12.393 +64,1962,12.604 +64,1963,12.456 +64,1964,12.267 +64,1965,12.407 +64,1966,12.467 +64,1967,12.44 +64,1968,12.546 +64,1969,12.424 +64,1970,12.452 +64,1971,11.932 +64,1972,12.183 +64,1973,12.686 +64,1974,12.368 +64,1975,12.544 +64,1976,12.171 +64,1977,12.314 +64,1978,12.349 +64,1979,12.518 +64,1980,12.659 +64,1981,12.916 +64,1982,12.422 +64,1983,13.015 +64,1984,12.699 +64,1985,12.297 +64,1986,12.717 +64,1987,12.668 +64,1988,12.867 +64,1989,12.671 +64,1990,13.185 +64,1991,13.004 +64,1992,12.815 +64,1993,12.763 +64,1994,12.513 +64,1995,12.757 +64,1996,12.875 +64,1997,12.93 +64,1998,13.322 +64,1999,12.916 +64,2000,12.825 +64,2001,13.021 +64,2002,13.069 +64,2003,12.67 +64,2004,13.026 +64,2005,13.219 +64,2006,13.282 +64,2007,12.83 +64,2008,13.252 +64,2009,12.975 +64,2010,13.234 +64,2011,12.794 +64,2012,12.661 +64,2013,13.209 +64,2014,12.891 +64,2015,13.097 +64,2016,13.859 +64,2017,13.571 +64,2018,13.465 +64,2019,13.68 +64,2020,13.742 +64,2021,13.32 +64,2022,13.601 +64,2023,13.624 +64,2024,NA +65,1940,12.411 +65,1941,12.287 +65,1942,12.403 +65,1943,12.311 +65,1944,12.69 +65,1945,12.103 +65,1946,12.401 +65,1947,12.513 +65,1948,11.989 +65,1949,12.463 +65,1950,12.302 +65,1951,12.118 +65,1952,12.212 +65,1953,12.485 +65,1954,12.072 +65,1955,11.843 +65,1956,12.372 +65,1957,12.214 +65,1958,12.678 +65,1959,12.641 +65,1960,12.336 +65,1961,12.405 +65,1962,12.669 +65,1963,12.457 +65,1964,12.253 +65,1965,12.526 +65,1966,12.438 +65,1967,12.372 +65,1968,12.584 +65,1969,12.424 +65,1970,12.497 +65,1971,11.936 +65,1972,12.236 +65,1973,12.672 +65,1974,12.432 +65,1975,12.599 +65,1976,12.231 +65,1977,12.404 +65,1978,12.4 +65,1979,12.542 +65,1980,12.699 +65,1981,12.961 +65,1982,12.444 +65,1983,12.974 +65,1984,12.734 +65,1985,12.345 +65,1986,12.808 +65,1987,12.729 +65,1988,12.866 +65,1989,12.643 +65,1990,13.192 +65,1991,13.031 +65,1992,12.859 +65,1993,12.776 +65,1994,12.598 +65,1995,12.767 +65,1996,12.891 +65,1997,12.983 +65,1998,13.305 +65,1999,12.88 +65,2000,12.837 +65,2001,13.065 +65,2002,13.121 +65,2003,12.742 +65,2004,13.001 +65,2005,13.221 +65,2006,13.286 +65,2007,12.89 +65,2008,13.187 +65,2009,13.029 +65,2010,13.283 +65,2011,12.899 +65,2012,12.718 +65,2013,13.311 +65,2014,12.975 +65,2015,13.06 +65,2016,13.87 +65,2017,13.63 +65,2018,13.403 +65,2019,13.673 +65,2020,13.67 +65,2021,13.367 +65,2022,13.605 +65,2023,13.751 +65,2024,NA +66,1940,12.452 +66,1941,12.363 +66,1942,12.403 +66,1943,12.234 +66,1944,12.683 +66,1945,12.085 +66,1946,12.447 +66,1947,12.474 +66,1948,12.061 +66,1949,12.454 +66,1950,12.326 +66,1951,12.216 +66,1952,12.259 +66,1953,12.469 +66,1954,12.155 +66,1955,11.908 +66,1956,12.372 +66,1957,12.259 +66,1958,12.792 +66,1959,12.608 +66,1960,12.32 +66,1961,12.443 +66,1962,12.636 +66,1963,12.418 +66,1964,12.282 +66,1965,12.567 +66,1966,12.415 +66,1967,12.354 +66,1968,12.566 +66,1969,12.492 +66,1970,12.532 +66,1971,11.966 +66,1972,12.329 +66,1973,12.634 +66,1974,12.422 +66,1975,12.651 +66,1976,12.266 +66,1977,12.596 +66,1978,12.428 +66,1979,12.625 +66,1980,12.746 +66,1981,12.973 +66,1982,12.424 +66,1983,12.951 +66,1984,12.752 +66,1985,12.417 +66,1986,12.808 +66,1987,12.829 +66,1988,12.859 +66,1989,12.68 +66,1990,13.19 +66,1991,12.994 +66,1992,12.887 +66,1993,12.842 +66,1994,12.601 +66,1995,12.802 +66,1996,12.866 +66,1997,13.025 +66,1998,13.242 +66,1999,12.859 +66,2000,12.852 +66,2001,13.105 +66,2002,13.202 +66,2003,12.782 +66,2004,13 +66,2005,13.225 +66,2006,13.309 +66,2007,12.908 +66,2008,13.184 +66,2009,13.056 +66,2010,13.346 +66,2011,13.013 +66,2012,12.768 +66,2013,13.298 +66,2014,13.07 +66,2015,13.097 +66,2016,13.923 +66,2017,13.678 +66,2018,13.346 +66,2019,13.594 +66,2020,13.558 +66,2021,13.405 +66,2022,13.582 +66,2023,13.801 +66,2024,NA +67,1940,12.439 +67,1941,12.466 +67,1942,12.383 +67,1943,12.193 +67,1944,12.669 +67,1945,12.137 +67,1946,12.482 +67,1947,12.439 +67,1948,12.168 +67,1949,12.425 +67,1950,12.278 +67,1951,12.234 +67,1952,12.345 +67,1953,12.551 +67,1954,12.214 +67,1955,11.997 +67,1956,12.289 +67,1957,12.287 +67,1958,12.864 +67,1959,12.591 +67,1960,12.296 +67,1961,12.502 +67,1962,12.622 +67,1963,12.427 +67,1964,12.29 +67,1965,12.548 +67,1966,12.424 +67,1967,12.338 +67,1968,12.55 +67,1969,12.568 +67,1970,12.556 +67,1971,12.061 +67,1972,12.345 +67,1973,12.565 +67,1974,12.361 +67,1975,12.719 +67,1976,12.29 +67,1977,12.745 +67,1978,12.456 +67,1979,12.616 +67,1980,12.793 +67,1981,12.998 +67,1982,12.432 +67,1983,12.987 +67,1984,12.75 +67,1985,12.471 +67,1986,12.733 +67,1987,12.869 +67,1988,12.911 +67,1989,12.728 +67,1990,13.258 +67,1991,12.917 +67,1992,12.937 +67,1993,12.889 +67,1994,12.65 +67,1995,12.813 +67,1996,12.806 +67,1997,13.048 +67,1998,13.178 +67,1999,12.798 +67,2000,12.877 +67,2001,13.127 +67,2002,13.338 +67,2003,12.768 +67,2004,13.029 +67,2005,13.284 +67,2006,13.269 +67,2007,12.979 +67,2008,13.228 +67,2009,13.134 +67,2010,13.378 +67,2011,13.055 +67,2012,12.814 +67,2013,13.251 +67,2014,13.164 +67,2015,13.232 +67,2016,13.918 +67,2017,13.658 +67,2018,13.323 +67,2019,13.602 +67,2020,13.493 +67,2021,13.475 +67,2022,13.609 +67,2023,13.801 +67,2024,NA +68,1940,12.437 +68,1941,12.556 +68,1942,12.401 +68,1943,12.261 +68,1944,12.719 +68,1945,12.218 +68,1946,12.46 +68,1947,12.447 +68,1948,12.222 +68,1949,12.396 +68,1950,12.284 +68,1951,12.298 +68,1952,12.439 +68,1953,12.541 +68,1954,12.295 +68,1955,12.041 +68,1956,12.267 +68,1957,12.313 +68,1958,12.931 +68,1959,12.617 +68,1960,12.347 +68,1961,12.581 +68,1962,12.668 +68,1963,12.426 +68,1964,12.31 +68,1965,12.529 +68,1966,12.432 +68,1967,12.382 +68,1968,12.565 +68,1969,12.589 +68,1970,12.493 +68,1971,12.229 +68,1972,12.352 +68,1973,12.561 +68,1974,12.351 +68,1975,12.684 +68,1976,12.242 +68,1977,12.814 +68,1978,12.466 +68,1979,12.637 +68,1980,12.848 +68,1981,13.014 +68,1982,12.397 +68,1983,13.04 +68,1984,12.799 +68,1985,12.541 +68,1986,12.706 +68,1987,12.836 +68,1988,12.913 +68,1989,12.788 +68,1990,13.309 +68,1991,12.895 +68,1992,12.98 +68,1993,12.845 +68,1994,12.687 +68,1995,12.8 +68,1996,12.784 +68,1997,13.06 +68,1998,13.169 +68,1999,12.756 +68,2000,12.862 +68,2001,13.15 +68,2002,13.39 +68,2003,12.796 +68,2004,13.098 +68,2005,13.347 +68,2006,13.226 +68,2007,13.028 +68,2008,13.273 +68,2009,13.161 +68,2010,13.398 +68,2011,13.08 +68,2012,12.916 +68,2013,13.281 +68,2014,13.21 +68,2015,13.393 +68,2016,13.865 +68,2017,13.694 +68,2018,13.371 +68,2019,13.663 +68,2020,13.52 +68,2021,13.521 +68,2022,13.575 +68,2023,13.838 +68,2024,NA +69,1940,12.401 +69,1941,12.557 +69,1942,12.491 +69,1943,12.331 +69,1944,12.815 +69,1945,12.31 +69,1946,12.505 +69,1947,12.513 +69,1948,12.228 +69,1949,12.487 +69,1950,12.332 +69,1951,12.374 +69,1952,12.504 +69,1953,12.561 +69,1954,12.41 +69,1955,12.101 +69,1956,12.325 +69,1957,12.309 +69,1958,12.926 +69,1959,12.693 +69,1960,12.403 +69,1961,12.575 +69,1962,12.658 +69,1963,12.354 +69,1964,12.347 +69,1965,12.566 +69,1966,12.509 +69,1967,12.495 +69,1968,12.593 +69,1969,12.641 +69,1970,12.446 +69,1971,12.431 +69,1972,12.336 +69,1973,12.616 +69,1974,12.338 +69,1975,12.623 +69,1976,12.192 +69,1977,12.843 +69,1978,12.52 +69,1979,12.632 +69,1980,12.867 +69,1981,13.016 +69,1982,12.47 +69,1983,13.124 +69,1984,12.832 +69,1985,12.574 +69,1986,12.751 +69,1987,12.755 +69,1988,12.961 +69,1989,12.887 +69,1990,13.388 +69,1991,12.924 +69,1992,13.02 +69,1993,12.799 +69,1994,12.744 +69,1995,12.809 +69,1996,12.866 +69,1997,13.084 +69,1998,13.191 +69,1999,12.748 +69,2000,12.854 +69,2001,13.118 +69,2002,13.429 +69,2003,12.891 +69,2004,13.155 +69,2005,13.412 +69,2006,13.206 +69,2007,13.076 +69,2008,13.235 +69,2009,13.112 +69,2010,13.514 +69,2011,13.072 +69,2012,12.936 +69,2013,13.323 +69,2014,13.249 +69,2015,13.498 +69,2016,13.789 +69,2017,13.704 +69,2018,13.439 +69,2019,13.711 +69,2020,13.524 +69,2021,13.524 +69,2022,13.539 +69,2023,13.919 +69,2024,NA +70,1940,12.35 +70,1941,12.518 +70,1942,12.645 +70,1943,12.425 +70,1944,12.851 +70,1945,12.351 +70,1946,12.55 +70,1947,12.584 +70,1948,12.246 +70,1949,12.543 +70,1950,12.368 +70,1951,12.449 +70,1952,12.484 +70,1953,12.594 +70,1954,12.477 +70,1955,12.17 +70,1956,12.372 +70,1957,12.331 +70,1958,12.896 +70,1959,12.76 +70,1960,12.413 +70,1961,12.562 +70,1962,12.666 +70,1963,12.368 +70,1964,12.428 +70,1965,12.606 +70,1966,12.618 +70,1967,12.594 +70,1968,12.654 +70,1969,12.604 +70,1970,12.484 +70,1971,12.559 +70,1972,12.349 +70,1973,12.683 +70,1974,12.32 +70,1975,12.617 +70,1976,12.173 +70,1977,12.781 +70,1978,12.622 +70,1979,12.634 +70,1980,12.845 +70,1981,13.029 +70,1982,12.618 +70,1983,13.182 +70,1984,12.885 +70,1985,12.608 +70,1986,12.777 +70,1987,12.735 +70,1988,12.994 +70,1989,12.978 +70,1990,13.438 +70,1991,12.926 +70,1992,13.011 +70,1993,12.795 +70,1994,12.769 +70,1995,12.847 +70,1996,12.965 +70,1997,13.182 +70,1998,13.099 +70,1999,12.813 +70,2000,12.873 +70,2001,13.082 +70,2002,13.512 +70,2003,12.98 +70,2004,13.236 +70,2005,13.466 +70,2006,13.149 +70,2007,13.144 +70,2008,13.297 +70,2009,13.025 +70,2010,13.639 +70,2011,13.056 +70,2012,12.957 +70,2013,13.347 +70,2014,13.285 +70,2015,13.57 +70,2016,13.838 +70,2017,13.646 +70,2018,13.532 +70,2019,13.768 +70,2020,13.625 +70,2021,13.533 +70,2022,13.555 +70,2023,13.98 +70,2024,NA +71,1940,12.289 +71,1941,12.505 +71,1942,12.77 +71,1943,12.516 +71,1944,12.855 +71,1945,12.381 +71,1946,12.564 +71,1947,12.616 +71,1948,12.245 +71,1949,12.573 +71,1950,12.424 +71,1951,12.473 +71,1952,12.504 +71,1953,12.601 +71,1954,12.512 +71,1955,12.202 +71,1956,12.339 +71,1957,12.375 +71,1958,12.873 +71,1959,12.825 +71,1960,12.342 +71,1961,12.643 +71,1962,12.668 +71,1963,12.411 +71,1964,12.499 +71,1965,12.624 +71,1966,12.678 +71,1967,12.698 +71,1968,12.715 +71,1969,12.582 +71,1970,12.438 +71,1971,12.665 +71,1972,12.428 +71,1973,12.82 +71,1974,12.376 +71,1975,12.665 +71,1976,12.175 +71,1977,12.812 +71,1978,12.692 +71,1979,12.654 +71,1980,12.822 +71,1981,13.04 +71,1982,12.708 +71,1983,13.213 +71,1984,12.902 +71,1985,12.703 +71,1986,12.811 +71,1987,12.737 +71,1988,12.998 +71,1989,13.002 +71,1990,13.462 +71,1991,12.876 +71,1992,12.979 +71,1993,12.831 +71,1994,12.803 +71,1995,12.892 +71,1996,13.043 +71,1997,13.286 +71,1998,12.997 +71,1999,12.876 +71,2000,12.96 +71,2001,13.123 +71,2002,13.559 +71,2003,13.04 +71,2004,13.214 +71,2005,13.434 +71,2006,13.157 +71,2007,13.167 +71,2008,13.4 +71,2009,12.976 +71,2010,13.668 +71,2011,13.133 +71,2012,13.002 +71,2013,13.379 +71,2014,13.352 +71,2015,13.651 +71,2016,13.937 +71,2017,13.578 +71,2018,13.605 +71,2019,13.834 +71,2020,13.73 +71,2021,13.526 +71,2022,13.522 +71,2023,13.971 +71,2024,NA +72,1940,12.259 +72,1941,12.521 +72,1942,12.758 +72,1943,12.585 +72,1944,12.875 +72,1945,12.399 +72,1946,12.618 +72,1947,12.627 +72,1948,12.282 +72,1949,12.546 +72,1950,12.495 +72,1951,12.458 +72,1952,12.522 +72,1953,12.555 +72,1954,12.546 +72,1955,12.259 +72,1956,12.356 +72,1957,12.444 +72,1958,12.866 +72,1959,12.835 +72,1960,12.337 +72,1961,12.685 +72,1962,12.646 +72,1963,12.42 +72,1964,12.555 +72,1965,12.613 +72,1966,12.714 +72,1967,12.798 +72,1968,12.68 +72,1969,12.634 +72,1970,12.422 +72,1971,12.695 +72,1972,12.561 +72,1973,12.897 +72,1974,12.415 +72,1975,12.706 +72,1976,12.079 +72,1977,12.844 +72,1978,12.713 +72,1979,12.657 +72,1980,12.787 +72,1981,13.1 +72,1982,12.772 +72,1983,13.217 +72,1984,12.928 +72,1985,12.782 +72,1986,12.854 +72,1987,12.779 +72,1988,13.023 +72,1989,13.003 +72,1990,13.487 +72,1991,12.899 +72,1992,13.02 +72,1993,12.811 +72,1994,12.809 +72,1995,12.893 +72,1996,13.07 +72,1997,13.359 +72,1998,12.96 +72,1999,12.889 +72,2000,13.01 +72,2001,13.182 +72,2002,13.673 +72,2003,13.094 +72,2004,13.223 +72,2005,13.428 +72,2006,13.131 +72,2007,13.264 +72,2008,13.403 +72,2009,12.978 +72,2010,13.761 +72,2011,13.207 +72,2012,13.078 +72,2013,13.419 +72,2014,13.378 +72,2015,13.664 +72,2016,13.965 +72,2017,13.59 +72,2018,13.606 +72,2019,13.848 +72,2020,13.762 +72,2021,13.568 +72,2022,13.481 +72,2023,13.925 +72,2024,NA +73,1940,12.259 +73,1941,12.585 +73,1942,12.707 +73,1943,12.608 +73,1944,12.879 +73,1945,12.466 +73,1946,12.678 +73,1947,12.634 +73,1948,12.406 +73,1949,12.598 +73,1950,12.486 +73,1951,12.504 +73,1952,12.565 +73,1953,12.532 +73,1954,12.606 +73,1955,12.318 +73,1956,12.438 +73,1957,12.48 +73,1958,12.808 +73,1959,12.839 +73,1960,12.332 +73,1961,12.716 +73,1962,12.665 +73,1963,12.456 +73,1964,12.563 +73,1965,12.624 +73,1966,12.781 +73,1967,12.846 +73,1968,12.718 +73,1969,12.697 +73,1970,12.506 +73,1971,12.767 +73,1972,12.655 +73,1973,12.993 +73,1974,12.482 +73,1975,12.738 +73,1976,12.065 +73,1977,12.903 +73,1978,12.726 +73,1979,12.671 +73,1980,12.833 +73,1981,13.123 +73,1982,12.785 +73,1983,13.225 +73,1984,12.916 +73,1985,12.871 +73,1986,12.896 +73,1987,12.806 +73,1988,13.022 +73,1989,12.975 +73,1990,13.523 +73,1991,12.941 +73,1992,13.109 +73,1993,12.688 +73,1994,12.846 +73,1995,12.907 +73,1996,13.086 +73,1997,13.337 +73,1998,13.037 +73,1999,12.873 +73,2000,13.056 +73,2001,13.219 +73,2002,13.761 +73,2003,13.102 +73,2004,13.295 +73,2005,13.468 +73,2006,13.107 +73,2007,13.381 +73,2008,13.4 +73,2009,13.012 +73,2010,13.826 +73,2011,13.195 +73,2012,13.218 +73,2013,13.416 +73,2014,13.38 +73,2015,13.678 +73,2016,13.973 +73,2017,13.607 +73,2018,13.576 +73,2019,13.852 +73,2020,13.757 +73,2021,13.535 +73,2022,13.498 +73,2023,13.918 +73,2024,NA +74,1940,12.293 +74,1941,12.674 +74,1942,12.705 +74,1943,12.647 +74,1944,12.834 +74,1945,12.554 +74,1946,12.721 +74,1947,12.685 +74,1948,12.458 +74,1949,12.611 +74,1950,12.557 +74,1951,12.537 +74,1952,12.655 +74,1953,12.52 +74,1954,12.64 +74,1955,12.377 +74,1956,12.553 +74,1957,12.467 +74,1958,12.761 +74,1959,12.898 +74,1960,12.357 +74,1961,12.752 +74,1962,12.731 +74,1963,12.487 +74,1964,12.592 +74,1965,12.601 +74,1966,12.772 +74,1967,12.873 +74,1968,12.811 +74,1969,12.697 +74,1970,12.541 +74,1971,12.793 +74,1972,12.716 +74,1973,12.968 +74,1974,12.512 +74,1975,12.691 +74,1976,12.148 +74,1977,12.894 +74,1978,12.738 +74,1979,12.738 +74,1980,12.909 +74,1981,13.138 +74,1982,12.791 +74,1983,13.244 +74,1984,12.993 +74,1985,12.947 +74,1986,12.942 +74,1987,12.817 +74,1988,12.991 +74,1989,12.971 +74,1990,13.565 +74,1991,12.991 +74,1992,13.126 +74,1993,12.703 +74,1994,12.93 +74,1995,12.952 +74,1996,13.165 +74,1997,13.275 +74,1998,13.122 +74,1999,12.9 +74,2000,13.091 +74,2001,13.279 +74,2002,13.718 +74,2003,13.144 +74,2004,13.328 +74,2005,13.55 +74,2006,13.214 +74,2007,13.41 +74,2008,13.354 +74,2009,13.055 +74,2010,13.796 +74,2011,13.216 +74,2012,13.327 +74,2013,13.419 +74,2014,13.439 +74,2015,13.729 +74,2016,13.935 +74,2017,13.702 +74,2018,13.545 +74,2019,13.814 +74,2020,13.797 +74,2021,13.474 +74,2022,13.611 +74,2023,13.918 +74,2024,NA +75,1940,12.414 +75,1941,12.733 +75,1942,12.696 +75,1943,12.625 +75,1944,12.854 +75,1945,12.598 +75,1946,12.723 +75,1947,12.732 +75,1948,12.434 +75,1949,12.62 +75,1950,12.679 +75,1951,12.604 +75,1952,12.695 +75,1953,12.611 +75,1954,12.732 +75,1955,12.415 +75,1956,12.625 +75,1957,12.473 +75,1958,12.726 +75,1959,12.929 +75,1960,12.457 +75,1961,12.844 +75,1962,12.776 +75,1963,12.496 +75,1964,12.654 +75,1965,12.645 +75,1966,12.775 +75,1967,12.863 +75,1968,12.869 +75,1969,12.711 +75,1970,12.607 +75,1971,12.797 +75,1972,12.78 +75,1973,12.945 +75,1974,12.522 +75,1975,12.648 +75,1976,12.298 +75,1977,12.899 +75,1978,12.777 +75,1979,12.809 +75,1980,12.982 +75,1981,13.184 +75,1982,12.817 +75,1983,13.222 +75,1984,13.041 +75,1985,12.963 +75,1986,12.979 +75,1987,12.831 +75,1988,13.016 +75,1989,12.96 +75,1990,13.547 +75,1991,13.039 +75,1992,13.125 +75,1993,12.805 +75,1994,13.009 +75,1995,13.009 +75,1996,13.193 +75,1997,13.284 +75,1998,13.189 +75,1999,12.898 +75,2000,13.082 +75,2001,13.28 +75,2002,13.697 +75,2003,13.219 +75,2004,13.355 +75,2005,13.61 +75,2006,13.308 +75,2007,13.356 +75,2008,13.313 +75,2009,13.104 +75,2010,13.81 +75,2011,13.229 +75,2012,13.356 +75,2013,13.468 +75,2014,13.487 +75,2015,13.784 +75,2016,13.955 +75,2017,13.757 +75,2018,13.549 +75,2019,13.779 +75,2020,13.839 +75,2021,13.47 +75,2022,13.753 +75,2023,13.947 +75,2024,NA +76,1940,12.55 +76,1941,12.807 +76,1942,12.691 +76,1943,12.541 +76,1944,12.874 +76,1945,12.657 +76,1946,12.695 +76,1947,12.858 +76,1948,12.432 +76,1949,12.638 +76,1950,12.736 +76,1951,12.628 +76,1952,12.677 +76,1953,12.735 +76,1954,12.839 +76,1955,12.472 +76,1956,12.622 +76,1957,12.494 +76,1958,12.74 +76,1959,12.973 +76,1960,12.496 +76,1961,12.89 +76,1962,12.773 +76,1963,12.509 +76,1964,12.688 +76,1965,12.67 +76,1966,12.749 +76,1967,12.872 +76,1968,12.931 +76,1969,12.768 +76,1970,12.649 +76,1971,12.813 +76,1972,12.869 +76,1973,12.96 +76,1974,12.592 +76,1975,12.703 +76,1976,12.363 +76,1977,12.932 +76,1978,12.836 +76,1979,12.862 +76,1980,12.958 +76,1981,13.252 +76,1982,12.845 +76,1983,13.203 +76,1984,13.066 +76,1985,12.959 +76,1986,12.979 +76,1987,12.904 +76,1988,13.093 +76,1989,12.953 +76,1990,13.56 +76,1991,13.129 +76,1992,13.156 +76,1993,12.878 +76,1994,13.037 +76,1995,13.07 +76,1996,13.218 +76,1997,13.368 +76,1998,13.217 +76,1999,12.871 +76,2000,13.066 +76,2001,13.254 +76,2002,13.707 +76,2003,13.261 +76,2004,13.372 +76,2005,13.562 +76,2006,13.371 +76,2007,13.314 +76,2008,13.29 +76,2009,13.227 +76,2010,13.811 +76,2011,13.303 +76,2012,13.359 +76,2013,13.505 +76,2014,13.554 +76,2015,13.884 +76,2016,13.975 +76,2017,13.751 +76,2018,13.535 +76,2019,13.747 +76,2020,13.852 +76,2021,13.481 +76,2022,13.827 +76,2023,13.954 +76,2024,NA +77,1940,12.627 +77,1941,12.747 +77,1942,12.732 +77,1943,12.55 +77,1944,12.989 +77,1945,12.692 +77,1946,12.697 +77,1947,12.889 +77,1948,12.395 +77,1949,12.685 +77,1950,12.777 +77,1951,12.602 +77,1952,12.65 +77,1953,12.827 +77,1954,12.881 +77,1955,12.439 +77,1956,12.652 +77,1957,12.574 +77,1958,12.768 +77,1959,12.986 +77,1960,12.476 +77,1961,12.925 +77,1962,12.791 +77,1963,12.533 +77,1964,12.697 +77,1965,12.704 +77,1966,12.749 +77,1967,12.893 +77,1968,12.952 +77,1969,12.882 +77,1970,12.707 +77,1971,12.873 +77,1972,12.925 +77,1973,12.985 +77,1974,12.604 +77,1975,12.77 +77,1976,12.369 +77,1977,12.96 +77,1978,12.891 +77,1979,12.908 +77,1980,13.025 +77,1981,13.252 +77,1982,12.918 +77,1983,13.228 +77,1984,13.103 +77,1985,13.025 +77,1986,13 +77,1987,13.016 +77,1988,13.189 +77,1989,12.991 +77,1990,13.61 +77,1991,13.249 +77,1992,13.172 +77,1993,12.983 +77,1994,13.081 +77,1995,13.152 +77,1996,13.233 +77,1997,13.391 +77,1998,13.236 +77,1999,12.882 +77,2000,13.073 +77,2001,13.251 +77,2002,13.699 +77,2003,13.346 +77,2004,13.359 +77,2005,13.532 +77,2006,13.368 +77,2007,13.329 +77,2008,13.284 +77,2009,13.315 +77,2010,13.833 +77,2011,13.359 +77,2012,13.381 +77,2013,13.493 +77,2014,13.71 +77,2015,13.945 +77,2016,14.028 +77,2017,13.795 +77,2018,13.558 +77,2019,13.783 +77,2020,13.939 +77,2021,13.476 +77,2022,13.926 +77,2023,13.915 +77,2024,NA +78,1940,12.63 +78,1941,12.765 +78,1942,12.775 +78,1943,12.648 +78,1944,12.997 +78,1945,12.736 +78,1946,12.766 +78,1947,12.894 +78,1948,12.451 +78,1949,12.705 +78,1950,12.743 +78,1951,12.532 +78,1952,12.592 +78,1953,12.895 +78,1954,12.901 +78,1955,12.446 +78,1956,12.626 +78,1957,12.702 +78,1958,12.791 +78,1959,12.994 +78,1960,12.441 +78,1961,12.857 +78,1962,12.921 +78,1963,12.524 +78,1964,12.686 +78,1965,12.672 +78,1966,12.703 +78,1967,12.901 +78,1968,12.995 +78,1969,12.936 +78,1970,12.836 +78,1971,12.902 +78,1972,12.822 +78,1973,12.951 +78,1974,12.653 +78,1975,12.763 +78,1976,12.396 +78,1977,12.893 +78,1978,12.974 +78,1979,12.99 +78,1980,13.169 +78,1981,13.31 +78,1982,12.924 +78,1983,13.231 +78,1984,13.12 +78,1985,13.008 +78,1986,13.032 +78,1987,13.06 +78,1988,13.233 +78,1989,12.993 +78,1990,13.609 +78,1991,13.319 +78,1992,13.168 +78,1993,13 +78,1994,13.203 +78,1995,13.247 +78,1996,13.207 +78,1997,13.419 +78,1998,13.264 +78,1999,12.904 +78,2000,13.145 +78,2001,13.243 +78,2002,13.701 +78,2003,13.402 +78,2004,13.454 +78,2005,13.525 +78,2006,13.319 +78,2007,13.458 +78,2008,13.286 +78,2009,13.364 +78,2010,13.882 +78,2011,13.403 +78,2012,13.372 +78,2013,13.47 +78,2014,13.794 +78,2015,13.9 +78,2016,14.026 +78,2017,13.906 +78,2018,13.599 +78,2019,13.856 +78,2020,13.968 +78,2021,13.538 +78,2022,14.047 +78,2023,13.878 +78,2024,NA +79,1940,12.613 +79,1941,12.869 +79,1942,12.823 +79,1943,12.632 +79,1944,12.933 +79,1945,12.773 +79,1946,12.815 +79,1947,12.898 +79,1948,12.527 +79,1949,12.721 +79,1950,12.738 +79,1951,12.569 +79,1952,12.613 +79,1953,12.937 +79,1954,12.889 +79,1955,12.405 +79,1956,12.606 +79,1957,12.831 +79,1958,12.782 +79,1959,13.079 +79,1960,12.427 +79,1961,12.839 +79,1962,13.017 +79,1963,12.462 +79,1964,12.635 +79,1965,12.644 +79,1966,12.73 +79,1967,12.911 +79,1968,13 +79,1969,13.043 +79,1970,13.012 +79,1971,12.844 +79,1972,12.75 +79,1973,13.003 +79,1974,12.703 +79,1975,12.777 +79,1976,12.436 +79,1977,12.788 +79,1978,13.026 +79,1979,13.114 +79,1980,13.246 +79,1981,13.347 +79,1982,12.91 +79,1983,13.271 +79,1984,13.098 +79,1985,13.004 +79,1986,13.02 +79,1987,13.021 +79,1988,13.294 +79,1989,13.056 +79,1990,13.588 +79,1991,13.336 +79,1992,13.196 +79,1993,13.05 +79,1994,13.301 +79,1995,13.372 +79,1996,13.197 +79,1997,13.468 +79,1998,13.307 +79,1999,12.932 +79,2000,13.228 +79,2001,13.239 +79,2002,13.76 +79,2003,13.431 +79,2004,13.529 +79,2005,13.561 +79,2006,13.353 +79,2007,13.499 +79,2008,13.346 +79,2009,13.427 +79,2010,13.852 +79,2011,13.444 +79,2012,13.411 +79,2013,13.454 +79,2014,13.8 +79,2015,13.881 +79,2016,14.009 +79,2017,13.994 +79,2018,13.667 +79,2019,13.904 +79,2020,13.998 +79,2021,13.618 +79,2022,14.079 +79,2023,13.824 +79,2024,NA +80,1940,12.592 +80,1941,12.881 +80,1942,12.854 +80,1943,12.582 +80,1944,12.936 +80,1945,12.723 +80,1946,12.828 +80,1947,12.931 +80,1948,12.611 +80,1949,12.755 +80,1950,12.762 +80,1951,12.692 +80,1952,12.692 +80,1953,12.939 +80,1954,12.874 +80,1955,12.458 +80,1956,12.661 +80,1957,12.842 +80,1958,12.76 +80,1959,13.15 +80,1960,12.457 +80,1961,12.91 +80,1962,13.066 +80,1963,12.512 +80,1964,12.603 +80,1965,12.624 +80,1966,12.758 +80,1967,12.919 +80,1968,13.07 +80,1969,13.085 +80,1970,13.062 +80,1971,12.839 +80,1972,12.8 +80,1973,13.034 +80,1974,12.71 +80,1975,12.75 +80,1976,12.453 +80,1977,12.682 +80,1978,13.057 +80,1979,13.219 +80,1980,13.373 +80,1981,13.415 +80,1982,12.906 +80,1983,13.286 +80,1984,13.068 +80,1985,13.085 +80,1986,12.965 +80,1987,12.954 +80,1988,13.421 +80,1989,13.122 +80,1990,13.55 +80,1991,13.312 +80,1992,13.277 +80,1993,13.092 +80,1994,13.281 +80,1995,13.462 +80,1996,13.143 +80,1997,13.504 +80,1998,13.356 +80,1999,12.957 +80,2000,13.26 +80,2001,13.276 +80,2002,13.828 +80,2003,13.4 +80,2004,13.536 +80,2005,13.613 +80,2006,13.443 +80,2007,13.632 +80,2008,13.404 +80,2009,13.503 +80,2010,13.792 +80,2011,13.49 +80,2012,13.472 +80,2013,13.52 +80,2014,13.804 +80,2015,13.884 +80,2016,14.044 +80,2017,14.041 +80,2018,13.72 +80,2019,13.945 +80,2020,13.984 +80,2021,13.635 +80,2022,14.052 +80,2023,13.831 +80,2024,NA +81,1940,12.6 +81,1941,12.827 +81,1942,12.831 +81,1943,12.546 +81,1944,12.961 +81,1945,12.744 +81,1946,12.873 +81,1947,12.987 +81,1948,12.687 +81,1949,12.765 +81,1950,12.835 +81,1951,12.76 +81,1952,12.741 +81,1953,12.833 +81,1954,12.926 +81,1955,12.542 +81,1956,12.706 +81,1957,12.85 +81,1958,12.78 +81,1959,13.196 +81,1960,12.486 +81,1961,12.975 +81,1962,12.998 +81,1963,12.525 +81,1964,12.612 +81,1965,12.616 +81,1966,12.811 +81,1967,12.955 +81,1968,13.107 +81,1969,13.032 +81,1970,13.06 +81,1971,12.806 +81,1972,12.873 +81,1973,13.055 +81,1974,12.693 +81,1975,12.779 +81,1976,12.467 +81,1977,12.709 +81,1978,13.098 +81,1979,13.237 +81,1980,13.505 +81,1981,13.425 +81,1982,12.938 +81,1983,13.289 +81,1984,13.112 +81,1985,13.163 +81,1986,12.995 +81,1987,12.99 +81,1988,13.458 +81,1989,13.182 +81,1990,13.556 +81,1991,13.261 +81,1992,13.353 +81,1993,13.139 +81,1994,13.215 +81,1995,13.506 +81,1996,13.119 +81,1997,13.492 +81,1998,13.435 +81,1999,12.922 +81,2000,13.328 +81,2001,13.267 +81,2002,13.845 +81,2003,13.408 +81,2004,13.535 +81,2005,13.65 +81,2006,13.496 +81,2007,13.805 +81,2008,13.485 +81,2009,13.559 +81,2010,13.798 +81,2011,13.553 +81,2012,13.517 +81,2013,13.533 +81,2014,13.8 +81,2015,13.907 +81,2016,14.068 +81,2017,14.102 +81,2018,13.714 +81,2019,14.002 +81,2020,13.979 +81,2021,13.673 +81,2022,14.035 +81,2023,13.848 +81,2024,NA +82,1940,12.583 +82,1941,12.834 +82,1942,12.772 +82,1943,12.514 +82,1944,13.027 +82,1945,12.79 +82,1946,12.966 +82,1947,13.08 +82,1948,12.754 +82,1949,12.818 +82,1950,12.938 +82,1951,12.813 +82,1952,12.763 +82,1953,12.771 +82,1954,13.025 +82,1955,12.654 +82,1956,12.76 +82,1957,12.845 +82,1958,12.834 +82,1959,13.199 +82,1960,12.468 +82,1961,13.065 +82,1962,12.914 +82,1963,12.561 +82,1964,12.613 +82,1965,12.621 +82,1966,12.868 +82,1967,12.946 +82,1968,13.097 +82,1969,12.99 +82,1970,13.117 +82,1971,12.786 +82,1972,12.871 +82,1973,13.05 +82,1974,12.709 +82,1975,12.854 +82,1976,12.51 +82,1977,12.763 +82,1978,13.14 +82,1979,13.337 +82,1980,13.579 +82,1981,13.436 +82,1982,13 +82,1983,13.244 +82,1984,13.174 +82,1985,13.215 +82,1986,13.015 +82,1987,13.044 +82,1988,13.516 +82,1989,13.218 +82,1990,13.602 +82,1991,13.209 +82,1992,13.397 +82,1993,13.245 +82,1994,13.167 +82,1995,13.514 +82,1996,13.101 +82,1997,13.461 +82,1998,13.528 +82,1999,12.941 +82,2000,13.405 +82,2001,13.269 +82,2002,13.796 +82,2003,13.436 +82,2004,13.551 +82,2005,13.62 +82,2006,13.527 +82,2007,13.88 +82,2008,13.56 +82,2009,13.584 +82,2010,13.765 +82,2011,13.571 +82,2012,13.569 +82,2013,13.507 +82,2014,13.769 +82,2015,13.867 +82,2016,14.088 +82,2017,14.165 +82,2018,13.804 +82,2019,14.049 +82,2020,14.017 +82,2021,13.719 +82,2022,14.037 +82,2023,13.907 +82,2024,NA +83,1940,12.569 +83,1941,12.828 +83,1942,12.753 +83,1943,12.469 +83,1944,13.174 +83,1945,12.819 +83,1946,13.025 +83,1947,13.125 +83,1948,12.75 +83,1949,12.908 +83,1950,12.998 +83,1951,12.863 +83,1952,12.803 +83,1953,12.84 +83,1954,13.115 +83,1955,12.722 +83,1956,12.749 +83,1957,12.927 +83,1958,12.891 +83,1959,13.282 +83,1960,12.488 +83,1961,13.161 +83,1962,12.938 +83,1963,12.625 +83,1964,12.677 +83,1965,12.607 +83,1966,12.881 +83,1967,12.908 +83,1968,13.088 +83,1969,12.992 +83,1970,13.166 +83,1971,12.782 +83,1972,12.838 +83,1973,13.043 +83,1974,12.779 +83,1975,12.958 +83,1976,12.609 +83,1977,12.867 +83,1978,13.137 +83,1979,13.356 +83,1980,13.624 +83,1981,13.462 +83,1982,13.047 +83,1983,13.261 +83,1984,13.209 +83,1985,13.234 +83,1986,13.061 +83,1987,13.062 +83,1988,13.602 +83,1989,13.269 +83,1990,13.611 +83,1991,13.201 +83,1992,13.435 +83,1993,13.304 +83,1994,13.157 +83,1995,13.517 +83,1996,13.069 +83,1997,13.368 +83,1998,13.578 +83,1999,13.089 +83,2000,13.439 +83,2001,13.313 +83,2002,13.783 +83,2003,13.561 +83,2004,13.593 +83,2005,13.613 +83,2006,13.612 +83,2007,13.854 +83,2008,13.617 +83,2009,13.541 +83,2010,13.762 +83,2011,13.6 +83,2012,13.596 +83,2013,13.494 +83,2014,13.759 +83,2015,13.82 +83,2016,14.138 +83,2017,14.188 +83,2018,13.883 +83,2019,14.062 +83,2020,14.086 +83,2021,13.731 +83,2022,14.05 +83,2023,13.979 +83,2024,NA +84,1940,12.553 +84,1941,12.887 +84,1942,12.818 +84,1943,12.541 +84,1944,13.289 +84,1945,12.821 +84,1946,13.02 +84,1947,13.139 +84,1948,12.837 +84,1949,13.008 +84,1950,13.026 +84,1951,12.89 +84,1952,12.874 +84,1953,12.952 +84,1954,13.133 +84,1955,12.813 +84,1956,12.761 +84,1957,12.948 +84,1958,12.962 +84,1959,13.305 +84,1960,12.524 +84,1961,13.162 +84,1962,12.998 +84,1963,12.736 +84,1964,12.693 +84,1965,12.618 +84,1966,12.949 +84,1967,12.901 +84,1968,13.091 +84,1969,13.001 +84,1970,13.211 +84,1971,12.831 +84,1972,12.875 +84,1973,13.129 +84,1974,12.813 +84,1975,13.05 +84,1976,12.691 +84,1977,12.953 +84,1978,13.108 +84,1979,13.305 +84,1980,13.646 +84,1981,13.5 +84,1982,13.059 +84,1983,13.276 +84,1984,13.214 +84,1985,13.248 +84,1986,13.139 +84,1987,13.027 +84,1988,13.581 +84,1989,13.307 +84,1990,13.569 +84,1991,13.216 +84,1992,13.437 +84,1993,13.387 +84,1994,13.223 +84,1995,13.537 +84,1996,13.115 +84,1997,13.295 +84,1998,13.64 +84,1999,13.205 +84,2000,13.448 +84,2001,13.334 +84,2002,13.797 +84,2003,13.669 +84,2004,13.655 +84,2005,13.603 +84,2006,13.653 +84,2007,13.806 +84,2008,13.68 +84,2009,13.536 +84,2010,13.742 +84,2011,13.676 +84,2012,13.567 +84,2013,13.49 +84,2014,13.78 +84,2015,13.8 +84,2016,14.169 +84,2017,14.178 +84,2018,13.968 +84,2019,14.117 +84,2020,14.089 +84,2021,13.802 +84,2022,14.011 +84,2023,14.007 +84,2024,NA +85,1940,12.555 +85,1941,13.005 +85,1942,12.87 +85,1943,12.644 +85,1944,13.284 +85,1945,12.879 +85,1946,13.005 +85,1947,13.11 +85,1948,12.938 +85,1949,13.067 +85,1950,13.024 +85,1951,12.914 +85,1952,13.007 +85,1953,12.939 +85,1954,13.071 +85,1955,12.848 +85,1956,12.786 +85,1957,12.929 +85,1958,13.037 +85,1959,13.35 +85,1960,12.563 +85,1961,13.177 +85,1962,13.044 +85,1963,12.788 +85,1964,12.762 +85,1965,12.654 +85,1966,12.989 +85,1967,12.947 +85,1968,13.131 +85,1969,13.014 +85,1970,13.296 +85,1971,12.839 +85,1972,12.963 +85,1973,13.247 +85,1974,12.859 +85,1975,13.148 +85,1976,12.776 +85,1977,13.039 +85,1978,13.129 +85,1979,13.236 +85,1980,13.652 +85,1981,13.526 +85,1982,13.027 +85,1983,13.317 +85,1984,13.178 +85,1985,13.203 +85,1986,13.174 +85,1987,13.078 +85,1988,13.573 +85,1989,13.343 +85,1990,13.574 +85,1991,13.254 +85,1992,13.451 +85,1993,13.498 +85,1994,13.251 +85,1995,13.536 +85,1996,13.144 +85,1997,13.286 +85,1998,13.663 +85,1999,13.269 +85,2000,13.511 +85,2001,13.342 +85,2002,13.764 +85,2003,13.744 +85,2004,13.689 +85,2005,13.605 +85,2006,13.675 +85,2007,13.831 +85,2008,13.761 +85,2009,13.57 +85,2010,13.798 +85,2011,13.721 +85,2012,13.611 +85,2013,13.464 +85,2014,13.792 +85,2015,13.88 +85,2016,14.177 +85,2017,14.176 +85,2018,13.979 +85,2019,14.185 +85,2020,14.09 +85,2021,13.871 +85,2022,13.961 +85,2023,14.066 +85,2024,NA +86,1940,12.615 +86,1941,13.009 +86,1942,12.945 +86,1943,12.683 +86,1944,13.233 +86,1945,12.968 +86,1946,13.023 +86,1947,13.106 +86,1948,13.038 +86,1949,13.084 +86,1950,13.002 +86,1951,12.998 +86,1952,13.094 +86,1953,12.93 +86,1954,13.044 +86,1955,12.761 +86,1956,12.875 +86,1957,12.908 +86,1958,13.107 +86,1959,13.395 +86,1960,12.654 +86,1961,13.196 +86,1962,13.118 +86,1963,12.77 +86,1964,12.751 +86,1965,12.725 +86,1966,13.082 +86,1967,13.051 +86,1968,13.185 +86,1969,12.952 +86,1970,13.296 +86,1971,12.863 +86,1972,13.004 +86,1973,13.307 +86,1974,12.901 +86,1975,13.19 +86,1976,12.822 +86,1977,13.191 +86,1978,13.161 +86,1979,13.229 +86,1980,13.65 +86,1981,13.539 +86,1982,12.949 +86,1983,13.371 +86,1984,13.219 +86,1985,13.2 +86,1986,13.226 +86,1987,13.1 +86,1988,13.602 +86,1989,13.386 +86,1990,13.535 +86,1991,13.328 +86,1992,13.454 +86,1993,13.537 +86,1994,13.282 +86,1995,13.563 +86,1996,13.17 +86,1997,13.333 +86,1998,13.666 +86,1999,13.268 +86,2000,13.58 +86,2001,13.375 +86,2002,13.773 +86,2003,13.74 +86,2004,13.69 +86,2005,13.65 +86,2006,13.672 +86,2007,13.86 +86,2008,13.795 +86,2009,13.587 +86,2010,13.832 +86,2011,13.772 +86,2012,13.676 +86,2013,13.476 +86,2014,13.796 +86,2015,13.875 +86,2016,14.16 +86,2017,14.212 +86,2018,14.003 +86,2019,14.227 +86,2020,14.127 +86,2021,13.948 +86,2022,13.928 +86,2023,14.152 +86,2024,NA +87,1940,12.724 +87,1941,13.038 +87,1942,12.961 +87,1943,12.667 +87,1944,13.207 +87,1945,13.035 +87,1946,13.096 +87,1947,13.14 +87,1948,13.16 +87,1949,13.131 +87,1950,12.975 +87,1951,13.032 +87,1952,13.127 +87,1953,13.003 +87,1954,13.03 +87,1955,12.705 +87,1956,12.907 +87,1957,12.963 +87,1958,13.154 +87,1959,13.39 +87,1960,12.812 +87,1961,13.239 +87,1962,13.229 +87,1963,12.773 +87,1964,12.728 +87,1965,12.744 +87,1966,13.144 +87,1967,13.124 +87,1968,13.27 +87,1969,12.943 +87,1970,13.293 +87,1971,12.964 +87,1972,13.115 +87,1973,13.296 +87,1974,13.005 +87,1975,13.179 +87,1976,12.814 +87,1977,13.303 +87,1978,13.233 +87,1979,13.266 +87,1980,13.627 +87,1981,13.573 +87,1982,12.921 +87,1983,13.472 +87,1984,13.275 +87,1985,13.264 +87,1986,13.339 +87,1987,13.141 +87,1988,13.59 +87,1989,13.46 +87,1990,13.57 +87,1991,13.411 +87,1992,13.459 +87,1993,13.496 +87,1994,13.326 +87,1995,13.631 +87,1996,13.219 +87,1997,13.372 +87,1998,13.753 +87,1999,13.261 +87,2000,13.627 +87,2001,13.501 +87,2002,13.834 +87,2003,13.71 +87,2004,13.709 +87,2005,13.722 +87,2006,13.658 +87,2007,13.894 +87,2008,13.789 +87,2009,13.65 +87,2010,13.808 +87,2011,13.836 +87,2012,13.745 +87,2013,13.539 +87,2014,13.836 +87,2015,13.852 +87,2016,14.17 +87,2017,14.299 +87,2018,14.097 +87,2019,14.248 +87,2020,14.214 +87,2021,13.994 +87,2022,13.915 +87,2023,14.194 +87,2024,NA +88,1940,12.837 +88,1941,13.04 +88,1942,12.943 +88,1943,12.647 +88,1944,13.228 +88,1945,13.06 +88,1946,13.231 +88,1947,13.234 +88,1948,13.284 +88,1949,13.14 +88,1950,12.939 +88,1951,13.069 +88,1952,13.155 +88,1953,13.126 +88,1954,13.012 +88,1955,12.777 +88,1956,12.938 +88,1957,13.046 +88,1958,13.183 +88,1959,13.378 +88,1960,12.948 +88,1961,13.267 +88,1962,13.274 +88,1963,12.829 +88,1964,12.763 +88,1965,12.825 +88,1966,13.181 +88,1967,13.168 +88,1968,13.304 +88,1969,12.988 +88,1970,13.291 +88,1971,12.984 +88,1972,13.181 +88,1973,13.29 +88,1974,13.104 +88,1975,13.181 +88,1976,12.795 +88,1977,13.343 +88,1978,13.293 +88,1979,13.327 +88,1980,13.625 +88,1981,13.608 +88,1982,12.959 +88,1983,13.515 +88,1984,13.363 +88,1985,13.322 +88,1986,13.471 +88,1987,13.219 +88,1988,13.582 +88,1989,13.443 +88,1990,13.64 +88,1991,13.474 +88,1992,13.448 +88,1993,13.48 +88,1994,13.393 +88,1995,13.648 +88,1996,13.334 +88,1997,13.399 +88,1998,13.768 +88,1999,13.269 +88,2000,13.671 +88,2001,13.601 +88,2002,13.892 +88,2003,13.715 +88,2004,13.775 +88,2005,13.746 +88,2006,13.691 +88,2007,13.945 +88,2008,13.743 +88,2009,13.732 +88,2010,13.911 +88,2011,13.939 +88,2012,13.764 +88,2013,13.641 +88,2014,13.899 +88,2015,13.866 +88,2016,14.269 +88,2017,14.449 +88,2018,14.197 +88,2019,14.367 +88,2020,14.307 +88,2021,14.034 +88,2022,14.032 +88,2023,14.206 +88,2024,NA +89,1940,12.966 +89,1941,13.024 +89,1942,13.02 +89,1943,12.633 +89,1944,13.192 +89,1945,13.082 +89,1946,13.25 +89,1947,13.337 +89,1948,13.348 +89,1949,13.168 +89,1950,12.945 +89,1951,13.113 +89,1952,13.195 +89,1953,13.186 +89,1954,12.992 +89,1955,12.898 +89,1956,12.965 +89,1957,13.089 +89,1958,13.263 +89,1959,13.353 +89,1960,12.99 +89,1961,13.318 +89,1962,13.291 +89,1963,12.921 +89,1964,12.833 +89,1965,12.88 +89,1966,13.262 +89,1967,13.168 +89,1968,13.287 +89,1969,13.033 +89,1970,13.279 +89,1971,13.026 +89,1972,13.243 +89,1973,13.327 +89,1974,13.169 +89,1975,13.191 +89,1976,12.862 +89,1977,13.338 +89,1978,13.289 +89,1979,13.319 +89,1980,13.631 +89,1981,13.671 +89,1982,13.036 +89,1983,13.546 +89,1984,13.453 +89,1985,13.296 +89,1986,13.573 +89,1987,13.267 +89,1988,13.587 +89,1989,13.379 +89,1990,13.727 +89,1991,13.556 +89,1992,13.469 +89,1993,13.476 +89,1994,13.506 +89,1995,13.646 +89,1996,13.42 +89,1997,13.353 +89,1998,13.787 +89,1999,13.364 +89,2000,13.734 +89,2001,13.614 +89,2002,13.969 +89,2003,13.734 +89,2004,13.795 +89,2005,13.802 +89,2006,13.706 +89,2007,13.973 +89,2008,13.787 +89,2009,13.747 +89,2010,13.995 +89,2011,14.014 +89,2012,13.788 +89,2013,13.761 +89,2014,13.985 +89,2015,13.871 +89,2016,14.396 +89,2017,14.487 +89,2018,14.2 +89,2019,14.465 +89,2020,14.322 +89,2021,14.054 +89,2022,14.074 +89,2023,14.23 +89,2024,NA +90,1940,12.969 +90,1941,13.049 +90,1942,13.081 +90,1943,12.679 +90,1944,13.205 +90,1945,13.13 +90,1946,13.267 +90,1947,13.414 +90,1948,13.376 +90,1949,13.14 +90,1950,12.969 +90,1951,13.123 +90,1952,13.265 +90,1953,13.203 +90,1954,12.991 +90,1955,12.972 +90,1956,13.008 +90,1957,13.146 +90,1958,13.37 +90,1959,13.357 +90,1960,13.03 +90,1961,13.41 +90,1962,13.296 +90,1963,12.98 +90,1964,12.956 +90,1965,12.908 +90,1966,13.329 +90,1967,13.089 +90,1968,13.245 +90,1969,13.128 +90,1970,13.316 +90,1971,13.096 +90,1972,13.315 +90,1973,13.366 +90,1974,13.201 +90,1975,13.178 +90,1976,12.983 +90,1977,13.329 +90,1978,13.318 +90,1979,13.386 +90,1980,13.652 +90,1981,13.705 +90,1982,13.109 +90,1983,13.616 +90,1984,13.514 +90,1985,13.237 +90,1986,13.607 +90,1987,13.344 +90,1988,13.536 +90,1989,13.388 +90,1990,13.784 +90,1991,13.633 +90,1992,13.519 +90,1993,13.533 +90,1994,13.607 +90,1995,13.722 +90,1996,13.527 +90,1997,13.301 +90,1998,13.805 +90,1999,13.487 +90,2000,13.855 +90,2001,13.646 +90,2002,13.971 +90,2003,13.705 +90,2004,13.868 +90,2005,13.81 +90,2006,13.735 +90,2007,14.007 +90,2008,13.796 +90,2009,13.739 +90,2010,14.076 +90,2011,14.053 +90,2012,13.847 +90,2013,13.854 +90,2014,13.979 +90,2015,13.858 +90,2016,14.483 +90,2017,14.432 +90,2018,14.179 +90,2019,14.447 +90,2020,14.349 +90,2021,14.005 +90,2022,14.101 +90,2023,14.238 +90,2024,NA +91,1940,13.002 +91,1941,13.11 +91,1942,13.143 +91,1943,12.746 +91,1944,13.3 +91,1945,13.187 +91,1946,13.292 +91,1947,13.44 +91,1948,13.425 +91,1949,13.112 +91,1950,13.031 +91,1951,13.178 +91,1952,13.286 +91,1953,13.256 +91,1954,13.062 +91,1955,12.979 +91,1956,13.038 +91,1957,13.207 +91,1958,13.402 +91,1959,13.383 +91,1960,13.061 +91,1961,13.453 +91,1962,13.342 +91,1963,12.994 +91,1964,13.019 +91,1965,12.98 +91,1966,13.424 +91,1967,13.024 +91,1968,13.159 +91,1969,13.244 +91,1970,13.405 +91,1971,13.126 +91,1972,13.313 +91,1973,13.43 +91,1974,13.233 +91,1975,13.178 +91,1976,13.057 +91,1977,13.25 +91,1978,13.332 +91,1979,13.427 +91,1980,13.676 +91,1981,13.721 +91,1982,13.156 +91,1983,13.668 +91,1984,13.487 +91,1985,13.245 +91,1986,13.643 +91,1987,13.385 +91,1988,13.583 +91,1989,13.493 +91,1990,13.8 +91,1991,13.681 +91,1992,13.541 +91,1993,13.625 +91,1994,13.706 +91,1995,13.744 +91,1996,13.591 +91,1997,13.303 +91,1998,13.891 +91,1999,13.552 +91,2000,13.948 +91,2001,13.715 +91,2002,14.003 +91,2003,13.727 +91,2004,13.892 +91,2005,13.861 +91,2006,13.78 +91,2007,14.007 +91,2008,13.781 +91,2009,13.8 +91,2010,14.175 +91,2011,14.102 +91,2012,13.921 +91,2013,13.862 +91,2014,14.005 +91,2015,13.882 +91,2016,14.451 +91,2017,14.438 +91,2018,14.179 +91,2019,14.403 +91,2020,14.359 +91,2021,13.977 +91,2022,14.135 +91,2023,14.24 +91,2024,NA +92,1940,13.102 +92,1941,13.145 +92,1942,13.254 +92,1943,12.787 +92,1944,13.307 +92,1945,13.193 +92,1946,13.348 +92,1947,13.456 +92,1948,13.409 +92,1949,13.091 +92,1950,13.09 +92,1951,13.259 +92,1952,13.254 +92,1953,13.334 +92,1954,13.073 +92,1955,13.039 +92,1956,13.067 +92,1957,13.21 +92,1958,13.467 +92,1959,13.499 +92,1960,13.122 +92,1961,13.45 +92,1962,13.351 +92,1963,13.033 +92,1964,13.076 +92,1965,13.042 +92,1966,13.483 +92,1967,13.055 +92,1968,13.174 +92,1969,13.288 +92,1970,13.491 +92,1971,13.176 +92,1972,13.308 +92,1973,13.477 +92,1974,13.188 +92,1975,13.134 +92,1976,13.103 +92,1977,13.166 +92,1978,13.346 +92,1979,13.448 +92,1980,13.711 +92,1981,13.732 +92,1982,13.202 +92,1983,13.685 +92,1984,13.449 +92,1985,13.277 +92,1986,13.678 +92,1987,13.407 +92,1988,13.538 +92,1989,13.653 +92,1990,13.83 +92,1991,13.749 +92,1992,13.535 +92,1993,13.637 +92,1994,13.76 +92,1995,13.817 +92,1996,13.598 +92,1997,13.358 +92,1998,13.94 +92,1999,13.573 +92,2000,13.992 +92,2001,13.778 +92,2002,14.025 +92,2003,13.747 +92,2004,13.895 +92,2005,13.901 +92,2006,13.862 +92,2007,14.044 +92,2008,13.783 +92,2009,13.832 +92,2010,14.221 +92,2011,14.099 +92,2012,13.999 +92,2013,13.874 +92,2014,14.036 +92,2015,13.905 +92,2016,14.416 +92,2017,14.473 +92,2018,14.188 +92,2019,14.397 +92,2020,14.4 +92,2021,14.022 +92,2022,14.18 +92,2023,14.207 +92,2024,NA +93,1940,13.188 +93,1941,13.136 +93,1942,13.338 +93,1943,12.812 +93,1944,13.333 +93,1945,13.217 +93,1946,13.381 +93,1947,13.47 +93,1948,13.371 +93,1949,13.121 +93,1950,13.176 +93,1951,13.262 +93,1952,13.266 +93,1953,13.46 +93,1954,13.124 +93,1955,13.066 +93,1956,13.131 +93,1957,13.211 +93,1958,13.557 +93,1959,13.51 +93,1960,13.201 +93,1961,13.482 +93,1962,13.317 +93,1963,13.07 +93,1964,13.066 +93,1965,13.097 +93,1966,13.412 +93,1967,13.116 +93,1968,13.21 +93,1969,13.311 +93,1970,13.471 +93,1971,13.264 +93,1972,13.276 +93,1973,13.501 +93,1974,13.182 +93,1975,13.177 +93,1976,13.152 +93,1977,13.13 +93,1978,13.358 +93,1979,13.417 +93,1980,13.763 +93,1981,13.798 +93,1982,13.259 +93,1983,13.652 +93,1984,13.4 +93,1985,13.334 +93,1986,13.652 +93,1987,13.515 +93,1988,13.534 +93,1989,13.737 +93,1990,13.817 +93,1991,13.804 +93,1992,13.586 +93,1993,13.634 +93,1994,13.783 +93,1995,13.845 +93,1996,13.583 +93,1997,13.436 +93,1998,14.059 +93,1999,13.664 +93,2000,14.049 +93,2001,13.848 +93,2002,14.007 +93,2003,13.755 +93,2004,13.933 +93,2005,13.989 +93,2006,13.891 +93,2007,14.097 +93,2008,13.811 +93,2009,13.903 +93,2010,14.247 +93,2011,14.024 +93,2012,14.105 +93,2013,13.846 +93,2014,14.017 +93,2015,13.872 +93,2016,14.38 +93,2017,14.482 +93,2018,14.17 +93,2019,14.47 +93,2020,14.419 +93,2021,14.069 +93,2022,14.286 +93,2023,14.203 +93,2024,NA +94,1940,13.269 +94,1941,13.106 +94,1942,13.354 +94,1943,12.921 +94,1944,13.334 +94,1945,13.227 +94,1946,13.424 +94,1947,13.442 +94,1948,13.334 +94,1949,13.19 +94,1950,13.183 +94,1951,13.228 +94,1952,13.311 +94,1953,13.506 +94,1954,13.147 +94,1955,13.067 +94,1956,13.174 +94,1957,13.184 +94,1958,13.645 +94,1959,13.538 +94,1960,13.22 +94,1961,13.575 +94,1962,13.316 +94,1963,13.064 +94,1964,13.079 +94,1965,13.135 +94,1966,13.347 +94,1967,13.187 +94,1968,13.181 +94,1969,13.329 +94,1970,13.447 +94,1971,13.349 +94,1972,13.296 +94,1973,13.557 +94,1974,13.194 +94,1975,13.268 +94,1976,13.242 +94,1977,13.184 +94,1978,13.441 +94,1979,13.415 +94,1980,13.782 +94,1981,13.863 +94,1982,13.279 +94,1983,13.618 +94,1984,13.373 +94,1985,13.375 +94,1986,13.629 +94,1987,13.573 +94,1988,13.587 +94,1989,13.82 +94,1990,13.824 +94,1991,13.843 +94,1992,13.617 +94,1993,13.641 +94,1994,13.726 +94,1995,13.801 +94,1996,13.561 +94,1997,13.535 +94,1998,14.181 +94,1999,13.73 +94,2000,14.045 +94,2001,13.898 +94,2002,13.957 +94,2003,13.758 +94,2004,13.983 +94,2005,14.002 +94,2006,13.949 +94,2007,14.089 +94,2008,13.81 +94,2009,13.922 +94,2010,14.238 +94,2011,13.992 +94,2012,14.202 +94,2013,13.835 +94,2014,14.029 +94,2015,13.868 +94,2016,14.4 +94,2017,14.545 +94,2018,14.174 +94,2019,14.541 +94,2020,14.391 +94,2021,14.107 +94,2022,14.388 +94,2023,14.222 +94,2024,NA +95,1940,13.341 +95,1941,13.152 +95,1942,13.306 +95,1943,13.028 +95,1944,13.392 +95,1945,13.233 +95,1946,13.504 +95,1947,13.464 +95,1948,13.374 +95,1949,13.271 +95,1950,13.089 +95,1951,13.226 +95,1952,13.359 +95,1953,13.537 +95,1954,13.205 +95,1955,13.076 +95,1956,13.215 +95,1957,13.202 +95,1958,13.644 +95,1959,13.593 +95,1960,13.308 +95,1961,13.627 +95,1962,13.338 +95,1963,13.109 +95,1964,13.083 +95,1965,13.141 +95,1966,13.373 +95,1967,13.222 +95,1968,13.196 +95,1969,13.377 +95,1970,13.497 +95,1971,13.406 +95,1972,13.362 +95,1973,13.607 +95,1974,13.184 +95,1975,13.337 +95,1976,13.268 +95,1977,13.263 +95,1978,13.541 +95,1979,13.436 +95,1980,13.777 +95,1981,13.834 +95,1982,13.311 +95,1983,13.671 +95,1984,13.39 +95,1985,13.362 +95,1986,13.634 +95,1987,13.599 +95,1988,13.621 +95,1989,13.85 +95,1990,13.865 +95,1991,13.921 +95,1992,13.608 +95,1993,13.679 +95,1994,13.776 +95,1995,13.812 +95,1996,13.598 +95,1997,13.551 +95,1998,14.257 +95,1999,13.739 +95,2000,13.947 +95,2001,13.939 +95,2002,13.84 +95,2003,13.776 +95,2004,14.01 +95,2005,14.024 +95,2006,13.956 +95,2007,14.086 +95,2008,13.834 +95,2009,13.908 +95,2010,14.332 +95,2011,13.888 +95,2012,14.249 +95,2013,13.873 +95,2014,14.035 +95,2015,13.876 +95,2016,14.46 +95,2017,14.557 +95,2018,14.168 +95,2019,14.575 +95,2020,14.411 +95,2021,14.203 +95,2022,14.453 +95,2023,14.223 +95,2024,NA +96,1940,13.383 +96,1941,13.169 +96,1942,13.282 +96,1943,13.104 +96,1944,13.423 +96,1945,13.252 +96,1946,13.538 +96,1947,13.527 +96,1948,13.449 +96,1949,13.32 +96,1950,13.098 +96,1951,13.223 +96,1952,13.355 +96,1953,13.518 +96,1954,13.273 +96,1955,13.158 +96,1956,13.216 +96,1957,13.337 +96,1958,13.636 +96,1959,13.597 +96,1960,13.37 +96,1961,13.627 +96,1962,13.453 +96,1963,13.144 +96,1964,13.097 +96,1965,13.097 +96,1966,13.405 +96,1967,13.29 +96,1968,13.275 +96,1969,13.477 +96,1970,13.566 +96,1971,13.449 +96,1972,13.441 +96,1973,13.64 +96,1974,13.156 +96,1975,13.409 +96,1976,13.29 +96,1977,13.315 +96,1978,13.557 +96,1979,13.433 +96,1980,13.755 +96,1981,13.813 +96,1982,13.348 +96,1983,13.73 +96,1984,13.451 +96,1985,13.364 +96,1986,13.686 +96,1987,13.629 +96,1988,13.665 +96,1989,13.852 +96,1990,13.963 +96,1991,14.018 +96,1992,13.529 +96,1993,13.667 +96,1994,13.813 +96,1995,13.827 +96,1996,13.665 +96,1997,13.498 +96,1998,14.333 +96,1999,13.767 +96,2000,13.86 +96,2001,13.936 +96,2002,13.828 +96,2003,13.777 +96,2004,14.069 +96,2005,14.068 +96,2006,13.944 +96,2007,14.163 +96,2008,13.887 +96,2009,13.956 +96,2010,14.387 +96,2011,13.811 +96,2012,14.272 +96,2013,13.896 +96,2014,14.062 +96,2015,13.909 +96,2016,14.46 +96,2017,14.583 +96,2018,14.157 +96,2019,14.562 +96,2020,14.51 +96,2021,14.293 +96,2022,14.54 +96,2023,14.217 +96,2024,NA +97,1940,13.441 +97,1941,13.133 +97,1942,13.297 +97,1943,13.147 +97,1944,13.426 +97,1945,13.337 +97,1946,13.509 +97,1947,13.579 +97,1948,13.534 +97,1949,13.386 +97,1950,13.119 +97,1951,13.251 +97,1952,13.321 +97,1953,13.479 +97,1954,13.326 +97,1955,13.182 +97,1956,13.199 +97,1957,13.484 +97,1958,13.654 +97,1959,13.542 +97,1960,13.38 +97,1961,13.55 +97,1962,13.562 +97,1963,13.208 +97,1964,13.111 +97,1965,13.134 +97,1966,13.437 +97,1967,13.297 +97,1968,13.356 +97,1969,13.57 +97,1970,13.641 +97,1971,13.461 +97,1972,13.545 +97,1973,13.709 +97,1974,13.183 +97,1975,13.468 +97,1976,13.333 +97,1977,13.391 +97,1978,13.524 +97,1979,13.464 +97,1980,13.826 +97,1981,13.839 +97,1982,13.379 +97,1983,13.747 +97,1984,13.522 +97,1985,13.41 +97,1986,13.799 +97,1987,13.72 +97,1988,13.724 +97,1989,13.867 +97,1990,14.026 +97,1991,14.095 +97,1992,13.476 +97,1993,13.699 +97,1994,13.74 +97,1995,13.866 +97,1996,13.7 +97,1997,13.525 +97,1998,14.393 +97,1999,13.766 +97,2000,13.851 +97,2001,13.942 +97,2002,13.905 +97,2003,13.841 +97,2004,14.113 +97,2005,14.14 +97,2006,13.947 +97,2007,14.221 +97,2008,13.97 +97,2009,14.064 +97,2010,14.346 +97,2011,13.809 +97,2012,14.255 +97,2013,13.911 +97,2014,14.124 +97,2015,13.942 +97,2016,14.461 +97,2017,14.548 +97,2018,14.15 +97,2019,14.614 +97,2020,14.588 +97,2021,14.323 +97,2022,14.648 +97,2023,14.19 +97,2024,NA +98,1940,13.557 +98,1941,13.154 +98,1942,13.333 +98,1943,13.202 +98,1944,13.483 +98,1945,13.449 +98,1946,13.565 +98,1947,13.638 +98,1948,13.592 +98,1949,13.462 +98,1950,13.179 +98,1951,13.311 +98,1952,13.368 +98,1953,13.465 +98,1954,13.369 +98,1955,13.179 +98,1956,13.17 +98,1957,13.476 +98,1958,13.65 +98,1959,13.534 +98,1960,13.438 +98,1961,13.549 +98,1962,13.639 +98,1963,13.285 +98,1964,13.178 +98,1965,13.192 +98,1966,13.471 +98,1967,13.336 +98,1968,13.444 +98,1969,13.647 +98,1970,13.65 +98,1971,13.423 +98,1972,13.556 +98,1973,13.668 +98,1974,13.193 +98,1975,13.517 +98,1976,13.329 +98,1977,13.479 +98,1978,13.506 +98,1979,13.511 +98,1980,13.914 +98,1981,13.925 +98,1982,13.41 +98,1983,13.761 +98,1984,13.535 +98,1985,13.485 +98,1986,13.838 +98,1987,13.784 +98,1988,13.739 +98,1989,13.86 +98,1990,14.08 +98,1991,14.091 +98,1992,13.433 +98,1993,13.751 +98,1994,13.726 +98,1995,13.962 +98,1996,13.72 +98,1997,13.504 +98,1998,14.442 +98,1999,13.757 +98,2000,13.93 +98,2001,13.956 +98,2002,13.954 +98,2003,13.881 +98,2004,14.188 +98,2005,14.205 +98,2006,13.972 +98,2007,14.247 +98,2008,14.059 +98,2009,14.065 +98,2010,14.324 +98,2011,13.868 +98,2012,14.22 +98,2013,13.937 +98,2014,14.162 +98,2015,13.976 +98,2016,14.531 +98,2017,14.531 +98,2018,14.135 +98,2019,14.716 +98,2020,14.601 +98,2021,14.369 +98,2022,14.71 +98,2023,14.186 +98,2024,NA +99,1940,13.651 +99,1941,13.222 +99,1942,13.317 +99,1943,13.294 +99,1944,13.535 +99,1945,13.565 +99,1946,13.547 +99,1947,13.692 +99,1948,13.588 +99,1949,13.543 +99,1950,13.252 +99,1951,13.39 +99,1952,13.412 +99,1953,13.467 +99,1954,13.364 +99,1955,13.248 +99,1956,13.162 +99,1957,13.437 +99,1958,13.667 +99,1959,13.628 +99,1960,13.425 +99,1961,13.585 +99,1962,13.624 +99,1963,13.383 +99,1964,13.208 +99,1965,13.208 +99,1966,13.502 +99,1967,13.344 +99,1968,13.533 +99,1969,13.704 +99,1970,13.665 +99,1971,13.353 +99,1972,13.503 +99,1973,13.63 +99,1974,13.269 +99,1975,13.571 +99,1976,13.329 +99,1977,13.542 +99,1978,13.529 +99,1979,13.595 +99,1980,13.937 +99,1981,13.954 +99,1982,13.459 +99,1983,13.731 +99,1984,13.564 +99,1985,13.531 +99,1986,13.857 +99,1987,13.785 +99,1988,13.721 +99,1989,13.891 +99,1990,14.111 +99,1991,14.048 +99,1992,13.498 +99,1993,13.777 +99,1994,13.753 +99,1995,13.958 +99,1996,13.769 +99,1997,13.519 +99,1998,14.436 +99,1999,13.8 +99,2000,13.925 +99,2001,13.937 +99,2002,14.043 +99,2003,13.94 +99,2004,14.207 +99,2005,14.204 +99,2006,13.996 +99,2007,14.268 +99,2008,14.082 +99,2009,14.043 +99,2010,14.25 +99,2011,13.969 +99,2012,14.264 +99,2013,14.037 +99,2014,14.159 +99,2015,14.016 +99,2016,14.588 +99,2017,14.579 +99,2018,14.192 +99,2019,14.763 +99,2020,14.604 +99,2021,14.431 +99,2022,14.709 +99,2023,14.244 +99,2024,NA +100,1940,13.62 +100,1941,13.249 +100,1942,13.326 +100,1943,13.369 +100,1944,13.573 +100,1945,13.642 +100,1946,13.499 +100,1947,13.741 +100,1948,13.591 +100,1949,13.5 +100,1950,13.286 +100,1951,13.47 +100,1952,13.364 +100,1953,13.473 +100,1954,13.376 +100,1955,13.293 +100,1956,13.258 +100,1957,13.407 +100,1958,13.722 +100,1959,13.772 +100,1960,13.365 +100,1961,13.563 +100,1962,13.604 +100,1963,13.465 +100,1964,13.255 +100,1965,13.211 +100,1966,13.538 +100,1967,13.362 +100,1968,13.558 +100,1969,13.807 +100,1970,13.719 +100,1971,13.36 +100,1972,13.548 +100,1973,13.623 +100,1974,13.35 +100,1975,13.617 +100,1976,13.34 +100,1977,13.598 +100,1978,13.551 +100,1979,13.607 +100,1980,13.954 +100,1981,13.93 +100,1982,13.54 +100,1983,13.748 +100,1984,13.631 +100,1985,13.6 +100,1986,13.846 +100,1987,13.738 +100,1988,13.711 +100,1989,13.872 +100,1990,14.105 +100,1991,14.033 +100,1992,13.6 +100,1993,13.788 +100,1994,13.74 +100,1995,13.975 +100,1996,13.819 +100,1997,13.521 +100,1998,14.35 +100,1999,13.82 +100,2000,13.905 +100,2001,13.932 +100,2002,14.116 +100,2003,13.986 +100,2004,14.2 +100,2005,14.186 +100,2006,14.064 +100,2007,14.324 +100,2008,14.114 +100,2009,14.041 +100,2010,14.214 +100,2011,14.07 +100,2012,14.283 +100,2013,14.144 +100,2014,14.153 +100,2015,14.047 +100,2016,14.591 +100,2017,14.56 +100,2018,14.335 +100,2019,14.744 +100,2020,14.613 +100,2021,14.419 +100,2022,14.706 +100,2023,14.368 +100,2024,NA +101,1940,13.634 +101,1941,13.296 +101,1942,13.329 +101,1943,13.401 +101,1944,13.626 +101,1945,13.659 +101,1946,13.52 +101,1947,13.774 +101,1948,13.581 +101,1949,13.502 +101,1950,13.312 +101,1951,13.504 +101,1952,13.312 +101,1953,13.497 +101,1954,13.413 +101,1955,13.303 +101,1956,13.347 +101,1957,13.4 +101,1958,13.734 +101,1959,13.812 +101,1960,13.321 +101,1961,13.544 +101,1962,13.622 +101,1963,13.486 +101,1964,13.378 +101,1965,13.211 +101,1966,13.572 +101,1967,13.373 +101,1968,13.595 +101,1969,13.85 +101,1970,13.795 +101,1971,13.449 +101,1972,13.626 +101,1973,13.606 +101,1974,13.449 +101,1975,13.644 +101,1976,13.348 +101,1977,13.642 +101,1978,13.649 +101,1979,13.572 +101,1980,13.927 +101,1981,13.902 +101,1982,13.63 +101,1983,13.779 +101,1984,13.743 +101,1985,13.691 +101,1986,13.929 +101,1987,13.711 +101,1988,13.848 +101,1989,13.824 +101,1990,14.132 +101,1991,14.028 +101,1992,13.606 +101,1993,13.804 +101,1994,13.765 +101,1995,14.035 +101,1996,13.816 +101,1997,13.576 +101,1998,14.37 +101,1999,13.887 +101,2000,13.963 +101,2001,13.961 +101,2002,14.181 +101,2003,14.018 +101,2004,14.218 +101,2005,14.207 +101,2006,14.088 +101,2007,14.375 +101,2008,14.117 +101,2009,14.024 +101,2010,14.199 +101,2011,14.121 +101,2012,14.278 +101,2013,14.22 +101,2014,14.132 +101,2015,14.133 +101,2016,14.639 +101,2017,14.523 +101,2018,14.45 +101,2019,14.676 +101,2020,14.618 +101,2021,14.416 +101,2022,14.71 +101,2023,14.475 +101,2024,NA +102,1940,13.625 +102,1941,13.352 +102,1942,13.308 +102,1943,13.438 +102,1944,13.709 +102,1945,13.665 +102,1946,13.575 +102,1947,13.781 +102,1948,13.562 +102,1949,13.482 +102,1950,13.319 +102,1951,13.504 +102,1952,13.302 +102,1953,13.538 +102,1954,13.467 +102,1955,13.275 +102,1956,13.342 +102,1957,13.42 +102,1958,13.711 +102,1959,13.836 +102,1960,13.349 +102,1961,13.666 +102,1962,13.603 +102,1963,13.535 +102,1964,13.489 +102,1965,13.233 +102,1966,13.58 +102,1967,13.465 +102,1968,13.639 +102,1969,13.87 +102,1970,13.802 +102,1971,13.445 +102,1972,13.739 +102,1973,13.679 +102,1974,13.435 +102,1975,13.641 +102,1976,13.383 +102,1977,13.677 +102,1978,13.742 +102,1979,13.615 +102,1980,13.916 +102,1981,13.91 +102,1982,13.739 +102,1983,13.828 +102,1984,13.783 +102,1985,13.785 +102,1986,13.951 +102,1987,13.728 +102,1988,13.994 +102,1989,13.794 +102,1990,14.155 +102,1991,14.017 +102,1992,13.643 +102,1993,13.804 +102,1994,13.776 +102,1995,14.068 +102,1996,13.805 +102,1997,13.663 +102,1998,14.413 +102,1999,13.901 +102,2000,14.02 +102,2001,14.034 +102,2002,14.229 +102,2003,14.093 +102,2004,14.233 +102,2005,14.225 +102,2006,14.1 +102,2007,14.409 +102,2008,14.148 +102,2009,14.027 +102,2010,14.217 +102,2011,14.176 +102,2012,14.284 +102,2013,14.283 +102,2014,14.157 +102,2015,14.23 +102,2016,14.649 +102,2017,14.502 +102,2018,14.479 +102,2019,14.592 +102,2020,14.628 +102,2021,14.382 +102,2022,14.697 +102,2023,14.574 +102,2024,NA +103,1940,13.583 +103,1941,13.389 +103,1942,13.373 +103,1943,13.528 +103,1944,13.748 +103,1945,13.7 +103,1946,13.623 +103,1947,13.758 +103,1948,13.549 +103,1949,13.411 +103,1950,13.366 +103,1951,13.456 +103,1952,13.288 +103,1953,13.576 +103,1954,13.504 +103,1955,13.283 +103,1956,13.35 +103,1957,13.47 +103,1958,13.685 +103,1959,13.823 +103,1960,13.414 +103,1961,13.739 +103,1962,13.595 +103,1963,13.605 +103,1964,13.556 +103,1965,13.295 +103,1966,13.58 +103,1967,13.558 +103,1968,13.696 +103,1969,13.911 +103,1970,13.784 +103,1971,13.439 +103,1972,13.798 +103,1973,13.77 +103,1974,13.44 +103,1975,13.626 +103,1976,13.375 +103,1977,13.742 +103,1978,13.736 +103,1979,13.671 +103,1980,13.892 +103,1981,13.961 +103,1982,13.87 +103,1983,13.883 +103,1984,13.858 +103,1985,13.843 +103,1986,13.96 +103,1987,13.77 +103,1988,14.135 +103,1989,13.848 +103,1990,14.226 +103,1991,14.029 +103,1992,13.713 +103,1993,13.804 +103,1994,13.805 +103,1995,14.131 +103,1996,13.802 +103,1997,13.71 +103,1998,14.39 +103,1999,13.994 +103,2000,14.123 +103,2001,14.083 +103,2002,14.226 +103,2003,14.16 +103,2004,14.289 +103,2005,14.226 +103,2006,14.12 +103,2007,14.394 +103,2008,14.124 +103,2009,14.068 +103,2010,14.281 +103,2011,14.162 +103,2012,14.29 +103,2013,14.279 +103,2014,14.265 +103,2015,14.328 +103,2016,14.728 +103,2017,14.576 +103,2018,14.468 +103,2019,14.567 +103,2020,14.674 +103,2021,14.404 +103,2022,14.66 +103,2023,14.653 +103,2024,NA +104,1940,13.608 +104,1941,13.436 +104,1942,13.467 +104,1943,13.557 +104,1944,13.684 +104,1945,13.701 +104,1946,13.696 +104,1947,13.779 +104,1948,13.531 +104,1949,13.424 +104,1950,13.392 +104,1951,13.455 +104,1952,13.343 +104,1953,13.649 +104,1954,13.574 +104,1955,13.312 +104,1956,13.437 +104,1957,13.53 +104,1958,13.742 +104,1959,13.801 +104,1960,13.55 +104,1961,13.752 +104,1962,13.646 +104,1963,13.644 +104,1964,13.57 +104,1965,13.372 +104,1966,13.607 +104,1967,13.613 +104,1968,13.747 +104,1969,13.979 +104,1970,13.879 +104,1971,13.478 +104,1972,13.808 +104,1973,13.862 +104,1974,13.49 +104,1975,13.648 +104,1976,13.427 +104,1977,13.795 +104,1978,13.705 +104,1979,13.692 +104,1980,13.92 +104,1981,13.978 +104,1982,13.953 +104,1983,13.892 +104,1984,13.919 +104,1985,13.877 +104,1986,13.986 +104,1987,13.85 +104,1988,14.202 +104,1989,13.919 +104,1990,14.322 +104,1991,14.066 +104,1992,13.789 +104,1993,13.854 +104,1994,13.875 +104,1995,14.177 +104,1996,13.869 +104,1997,13.833 +104,1998,14.358 +104,1999,14.084 +104,2000,14.224 +104,2001,14.13 +104,2002,14.262 +104,2003,14.182 +104,2004,14.322 +104,2005,14.272 +104,2006,14.183 +104,2007,14.372 +104,2008,14.111 +104,2009,14.153 +104,2010,14.278 +104,2011,14.275 +104,2012,14.294 +104,2013,14.271 +104,2014,14.346 +104,2015,14.385 +104,2016,14.813 +104,2017,14.635 +104,2018,14.452 +104,2019,14.579 +104,2020,14.732 +104,2021,14.459 +104,2022,14.633 +104,2023,14.644 +104,2024,NA +105,1940,13.647 +105,1941,13.542 +105,1942,13.452 +105,1943,13.585 +105,1944,13.669 +105,1945,13.674 +105,1946,13.736 +105,1947,13.825 +105,1948,13.523 +105,1949,13.498 +105,1950,13.369 +105,1951,13.504 +105,1952,13.457 +105,1953,13.74 +105,1954,13.563 +105,1955,13.356 +105,1956,13.493 +105,1957,13.583 +105,1958,13.811 +105,1959,13.877 +105,1960,13.689 +105,1961,13.743 +105,1962,13.678 +105,1963,13.637 +105,1964,13.577 +105,1965,13.507 +105,1966,13.637 +105,1967,13.674 +105,1968,13.808 +105,1969,13.984 +105,1970,13.926 +105,1971,13.559 +105,1972,13.77 +105,1973,13.941 +105,1974,13.604 +105,1975,13.691 +105,1976,13.518 +105,1977,13.851 +105,1978,13.679 +105,1979,13.746 +105,1980,13.968 +105,1981,14.019 +105,1982,13.995 +105,1983,13.906 +105,1984,13.986 +105,1985,13.87 +105,1986,13.966 +105,1987,13.963 +105,1988,14.216 +105,1989,14.025 +105,1990,14.405 +105,1991,14.131 +105,1992,13.873 +105,1993,13.909 +105,1994,13.949 +105,1995,14.19 +105,1996,13.924 +105,1997,13.92 +105,1998,14.381 +105,1999,14.073 +105,2000,14.286 +105,2001,14.153 +105,2002,14.332 +105,2003,14.211 +105,2004,14.355 +105,2005,14.321 +105,2006,14.21 +105,2007,14.429 +105,2008,14.043 +105,2009,14.219 +105,2010,14.345 +105,2011,14.363 +105,2012,14.297 +105,2013,14.318 +105,2014,14.362 +105,2015,14.441 +105,2016,14.913 +105,2017,14.651 +105,2018,14.499 +105,2019,14.585 +105,2020,14.758 +105,2021,14.476 +105,2022,14.561 +105,2023,14.631 +105,2024,NA +106,1940,13.751 +106,1941,13.603 +106,1942,13.481 +106,1943,13.592 +106,1944,13.746 +106,1945,13.645 +106,1946,13.689 +106,1947,13.82 +106,1948,13.536 +106,1949,13.513 +106,1950,13.4 +106,1951,13.554 +106,1952,13.565 +106,1953,13.763 +106,1954,13.554 +106,1955,13.422 +106,1956,13.571 +106,1957,13.643 +106,1958,13.857 +106,1959,13.967 +106,1960,13.669 +106,1961,13.763 +106,1962,13.694 +106,1963,13.661 +106,1964,13.585 +106,1965,13.605 +106,1966,13.641 +106,1967,13.77 +106,1968,13.892 +106,1969,13.958 +106,1970,13.945 +106,1971,13.613 +106,1972,13.68 +106,1973,13.948 +106,1974,13.709 +106,1975,13.704 +106,1976,13.493 +106,1977,13.957 +106,1978,13.669 +106,1979,13.837 +106,1980,14.002 +106,1981,14.094 +106,1982,13.98 +106,1983,13.907 +106,1984,14.05 +106,1985,13.91 +106,1986,13.996 +106,1987,14.072 +106,1988,14.205 +106,1989,14.08 +106,1990,14.513 +106,1991,14.163 +106,1992,13.926 +106,1993,14.025 +106,1994,14.029 +106,1995,14.262 +106,1996,13.992 +106,1997,14.009 +106,1998,14.408 +106,1999,14.037 +106,2000,14.317 +106,2001,14.145 +106,2002,14.385 +106,2003,14.248 +106,2004,14.379 +106,2005,14.381 +106,2006,14.196 +106,2007,14.435 +106,2008,14.03 +106,2009,14.242 +106,2010,14.5 +106,2011,14.373 +106,2012,14.329 +106,2013,14.392 +106,2014,14.332 +106,2015,14.426 +106,2016,14.949 +106,2017,14.633 +106,2018,14.527 +106,2019,14.607 +106,2020,14.787 +106,2021,14.52 +106,2022,14.516 +106,2023,14.667 +106,2024,NA +107,1940,13.835 +107,1941,13.64 +107,1942,13.522 +107,1943,13.652 +107,1944,13.733 +107,1945,13.652 +107,1946,13.643 +107,1947,13.83 +107,1948,13.551 +107,1949,13.54 +107,1950,13.441 +107,1951,13.584 +107,1952,13.709 +107,1953,13.814 +107,1954,13.598 +107,1955,13.51 +107,1956,13.562 +107,1957,13.779 +107,1958,13.841 +107,1959,13.994 +107,1960,13.663 +107,1961,13.708 +107,1962,13.664 +107,1963,13.664 +107,1964,13.566 +107,1965,13.622 +107,1966,13.633 +107,1967,13.803 +107,1968,13.896 +107,1969,13.999 +107,1970,13.972 +107,1971,13.642 +107,1972,13.617 +107,1973,13.978 +107,1974,13.825 +107,1975,13.797 +107,1976,13.468 +107,1977,14.043 +107,1978,13.715 +107,1979,13.883 +107,1980,14.048 +107,1981,14.149 +107,1982,13.97 +107,1983,13.967 +107,1984,14.068 +107,1985,14.008 +107,1986,14.025 +107,1987,14.155 +107,1988,14.156 +107,1989,14.141 +107,1990,14.47 +107,1991,14.182 +107,1992,13.986 +107,1993,14.086 +107,1994,14.086 +107,1995,14.348 +107,1996,14.024 +107,1997,14.096 +107,1998,14.472 +107,1999,14.007 +107,2000,14.327 +107,2001,14.189 +107,2002,14.394 +107,2003,14.246 +107,2004,14.405 +107,2005,14.429 +107,2006,14.184 +107,2007,14.472 +107,2008,14.094 +107,2009,14.296 +107,2010,14.648 +107,2011,14.389 +107,2012,14.382 +107,2013,14.37 +107,2014,14.4 +107,2015,14.479 +107,2016,14.935 +107,2017,14.622 +107,2018,14.615 +107,2019,14.668 +107,2020,14.83 +107,2021,14.571 +107,2022,14.474 +107,2023,14.682 +107,2024,NA +108,1940,13.888 +108,1941,13.58 +108,1942,13.591 +108,1943,13.711 +108,1944,13.672 +108,1945,13.678 +108,1946,13.658 +108,1947,13.83 +108,1948,13.565 +108,1949,13.648 +108,1950,13.543 +108,1951,13.588 +108,1952,13.792 +108,1953,13.867 +108,1954,13.666 +108,1955,13.649 +108,1956,13.568 +108,1957,13.846 +108,1958,13.84 +108,1959,13.995 +108,1960,13.685 +108,1961,13.72 +108,1962,13.671 +108,1963,13.698 +108,1964,13.552 +108,1965,13.715 +108,1966,13.633 +108,1967,13.86 +108,1968,13.897 +108,1969,13.982 +108,1970,14.024 +108,1971,13.639 +108,1972,13.639 +108,1973,14.025 +108,1974,13.898 +108,1975,13.884 +108,1976,13.541 +108,1977,14.077 +108,1978,13.807 +108,1979,13.89 +108,1980,14.136 +108,1981,14.135 +108,1982,14.022 +108,1983,14.055 +108,1984,14.04 +108,1985,14.037 +108,1986,14.089 +108,1987,14.202 +108,1988,14.155 +108,1989,14.101 +108,1990,14.29 +108,1991,14.234 +108,1992,14.024 +108,1993,14.121 +108,1994,14.153 +108,1995,14.408 +108,1996,14.082 +108,1997,14.193 +108,1998,14.459 +108,1999,14.014 +108,2000,14.363 +108,2001,14.223 +108,2002,14.381 +108,2003,14.252 +108,2004,14.434 +108,2005,14.497 +108,2006,14.167 +108,2007,14.581 +108,2008,14.141 +108,2009,14.355 +108,2010,14.746 +108,2011,14.495 +108,2012,14.419 +108,2013,14.316 +108,2014,14.541 +108,2015,14.489 +108,2016,14.955 +108,2017,14.633 +108,2018,14.767 +108,2019,14.787 +108,2020,14.871 +108,2021,14.586 +108,2022,14.491 +108,2023,14.702 +108,2024,NA +109,1940,13.94 +109,1941,13.567 +109,1942,13.545 +109,1943,13.775 +109,1944,13.745 +109,1945,13.713 +109,1946,13.678 +109,1947,13.897 +109,1948,13.565 +109,1949,13.712 +109,1950,13.671 +109,1951,13.627 +109,1952,13.85 +109,1953,13.902 +109,1954,13.715 +109,1955,13.662 +109,1956,13.587 +109,1957,13.925 +109,1958,13.885 +109,1959,13.982 +109,1960,13.692 +109,1961,13.785 +109,1962,13.813 +109,1963,13.734 +109,1964,13.487 +109,1965,13.759 +109,1966,13.688 +109,1967,13.936 +109,1968,13.963 +109,1969,13.972 +109,1970,13.985 +109,1971,13.641 +109,1972,13.682 +109,1973,14.082 +109,1974,13.869 +109,1975,13.911 +109,1976,13.627 +109,1977,14.1 +109,1978,13.896 +109,1979,13.9 +109,1980,14.233 +109,1981,14.135 +109,1982,14.06 +109,1983,14.139 +109,1984,14.065 +109,1985,14.04 +109,1986,14.111 +109,1987,14.185 +109,1988,14.255 +109,1989,14.155 +109,1990,14.148 +109,1991,14.221 +109,1992,14.013 +109,1993,14.158 +109,1994,14.201 +109,1995,14.425 +109,1996,14.104 +109,1997,14.283 +109,1998,14.446 +109,1999,14.069 +109,2000,14.384 +109,2001,14.227 +109,2002,14.362 +109,2003,14.291 +109,2004,14.482 +109,2005,14.519 +109,2006,14.22 +109,2007,14.691 +109,2008,14.179 +109,2009,14.394 +109,2010,14.865 +109,2011,14.593 +109,2012,14.468 +109,2013,14.304 +109,2014,14.653 +109,2015,14.47 +109,2016,15.073 +109,2017,14.684 +109,2018,14.945 +109,2019,14.857 +109,2020,14.907 +109,2021,14.622 +109,2022,14.502 +109,2023,14.799 +109,2024,NA +110,1940,13.96 +110,1941,13.669 +110,1942,13.576 +110,1943,13.83 +110,1944,13.79 +110,1945,13.774 +110,1946,13.729 +110,1947,13.921 +110,1948,13.601 +110,1949,13.788 +110,1950,13.745 +110,1951,13.651 +110,1952,13.9 +110,1953,13.939 +110,1954,13.711 +110,1955,13.676 +110,1956,13.578 +110,1957,13.99 +110,1958,13.827 +110,1959,13.97 +110,1960,13.797 +110,1961,13.919 +110,1962,13.953 +110,1963,13.793 +110,1964,13.498 +110,1965,13.761 +110,1966,13.745 +110,1967,13.956 +110,1968,13.906 +110,1969,13.95 +110,1970,13.911 +110,1971,13.702 +110,1972,13.748 +110,1973,14.094 +110,1974,13.842 +110,1975,13.911 +110,1976,13.657 +110,1977,14.118 +110,1978,13.97 +110,1979,13.964 +110,1980,14.341 +110,1981,14.156 +110,1982,14.104 +110,1983,14.197 +110,1984,14.019 +110,1985,14.067 +110,1986,14.126 +110,1987,14.165 +110,1988,14.35 +110,1989,14.226 +110,1990,14.14 +110,1991,14.231 +110,1992,14.025 +110,1993,14.206 +110,1994,14.239 +110,1995,14.444 +110,1996,14.211 +110,1997,14.38 +110,1998,14.515 +110,1999,14.151 +110,2000,14.377 +110,2001,14.262 +110,2002,14.367 +110,2003,14.331 +110,2004,14.524 +110,2005,14.546 +110,2006,14.354 +110,2007,14.733 +110,2008,14.184 +110,2009,14.433 +110,2010,14.933 +110,2011,14.593 +110,2012,14.474 +110,2013,14.296 +110,2014,14.765 +110,2015,14.524 +110,2016,15.2 +110,2017,14.754 +110,2018,15.047 +110,2019,14.897 +110,2020,14.907 +110,2021,14.643 +110,2022,14.535 +110,2023,14.892 +110,2024,NA +111,1940,14.001 +111,1941,13.753 +111,1942,13.682 +111,1943,13.875 +111,1944,13.817 +111,1945,13.846 +111,1946,13.799 +111,1947,13.953 +111,1948,13.603 +111,1949,13.851 +111,1950,13.811 +111,1951,13.66 +111,1952,13.965 +111,1953,13.969 +111,1954,13.723 +111,1955,13.745 +111,1956,13.566 +111,1957,13.991 +111,1958,13.814 +111,1959,13.949 +111,1960,13.898 +111,1961,13.996 +111,1962,14.028 +111,1963,13.831 +111,1964,13.527 +111,1965,13.723 +111,1966,13.734 +111,1967,13.996 +111,1968,13.865 +111,1969,13.889 +111,1970,13.867 +111,1971,13.798 +111,1972,13.867 +111,1973,14.087 +111,1974,13.835 +111,1975,13.92 +111,1976,13.732 +111,1977,14.144 +111,1978,13.979 +111,1979,14.039 +111,1980,14.426 +111,1981,14.231 +111,1982,14.101 +111,1983,14.286 +111,1984,13.991 +111,1985,14.043 +111,1986,14.183 +111,1987,14.141 +111,1988,14.494 +111,1989,14.227 +111,1990,14.262 +111,1991,14.269 +111,1992,14.098 +111,1993,14.216 +111,1994,14.287 +111,1995,14.407 +111,1996,14.261 +111,1997,14.395 +111,1998,14.589 +111,1999,14.274 +111,2000,14.371 +111,2001,14.312 +111,2002,14.364 +111,2003,14.417 +111,2004,14.593 +111,2005,14.623 +111,2006,14.482 +111,2007,14.757 +111,2008,14.209 +111,2009,14.487 +111,2010,14.984 +111,2011,14.561 +111,2012,14.504 +111,2013,14.295 +111,2014,14.834 +111,2015,14.619 +111,2016,15.247 +111,2017,14.766 +111,2018,15.053 +111,2019,14.889 +111,2020,14.946 +111,2021,14.638 +111,2022,14.608 +111,2023,14.868 +111,2024,NA +112,1940,13.995 +112,1941,13.754 +112,1942,13.75 +112,1943,13.915 +112,1944,13.86 +112,1945,13.907 +112,1946,13.847 +112,1947,13.97 +112,1948,13.607 +112,1949,13.87 +112,1950,13.82 +112,1951,13.688 +112,1952,14.01 +112,1953,14.052 +112,1954,13.784 +112,1955,13.851 +112,1956,13.605 +112,1957,13.987 +112,1958,13.82 +112,1959,13.941 +112,1960,13.925 +112,1961,14.042 +112,1962,14.055 +112,1963,13.85 +112,1964,13.543 +112,1965,13.725 +112,1966,13.733 +112,1967,14.076 +112,1968,13.831 +112,1969,13.951 +112,1970,13.879 +112,1971,13.835 +112,1972,13.963 +112,1973,14.127 +112,1974,13.847 +112,1975,13.954 +112,1976,13.772 +112,1977,14.227 +112,1978,14.047 +112,1979,14.065 +112,1980,14.532 +112,1981,14.306 +112,1982,14.074 +112,1983,14.33 +112,1984,14.012 +112,1985,14.053 +112,1986,14.234 +112,1987,14.106 +112,1988,14.64 +112,1989,14.201 +112,1990,14.42 +112,1991,14.362 +112,1992,14.127 +112,1993,14.233 +112,1994,14.363 +112,1995,14.352 +112,1996,14.301 +112,1997,14.425 +112,1998,14.642 +112,1999,14.304 +112,2000,14.416 +112,2001,14.311 +112,2002,14.329 +112,2003,14.555 +112,2004,14.633 +112,2005,14.706 +112,2006,14.505 +112,2007,14.843 +112,2008,14.275 +112,2009,14.528 +112,2010,14.978 +112,2011,14.556 +112,2012,14.512 +112,2013,14.368 +112,2014,14.872 +112,2015,14.669 +112,2016,15.277 +112,2017,14.768 +112,2018,15.072 +112,2019,14.932 +112,2020,15.074 +112,2021,14.669 +112,2022,14.653 +112,2023,14.877 +112,2024,NA +113,1940,13.994 +113,1941,13.747 +113,1942,13.771 +113,1943,13.939 +113,1944,13.852 +113,1945,13.901 +113,1946,13.916 +113,1947,13.964 +113,1948,13.634 +113,1949,13.854 +113,1950,13.828 +113,1951,13.783 +113,1952,13.986 +113,1953,14.167 +113,1954,13.829 +113,1955,13.912 +113,1956,13.654 +113,1957,13.956 +113,1958,13.863 +113,1959,13.976 +113,1960,13.956 +113,1961,14.111 +113,1962,14.085 +113,1963,13.869 +113,1964,13.59 +113,1965,13.801 +113,1966,13.775 +113,1967,14.07 +113,1968,13.814 +113,1969,14.009 +113,1970,13.946 +113,1971,13.793 +113,1972,14 +113,1973,14.171 +113,1974,13.883 +113,1975,13.954 +113,1976,13.766 +113,1977,14.247 +113,1978,14.102 +113,1979,14.038 +113,1980,14.607 +113,1981,14.356 +113,1982,14.072 +113,1983,14.336 +113,1984,14.093 +113,1985,14.06 +113,1986,14.326 +113,1987,14.169 +113,1988,14.642 +113,1989,14.213 +113,1990,14.568 +113,1991,14.447 +113,1992,14.148 +113,1993,14.3 +113,1994,14.416 +113,1995,14.396 +113,1996,14.361 +113,1997,14.477 +113,1998,14.617 +113,1999,14.347 +113,2000,14.452 +113,2001,14.291 +113,2002,14.373 +113,2003,14.599 +113,2004,14.613 +113,2005,14.772 +113,2006,14.562 +113,2007,14.88 +113,2008,14.384 +113,2009,14.555 +113,2010,14.92 +113,2011,14.576 +113,2012,14.55 +113,2013,14.445 +113,2014,14.923 +113,2015,14.774 +113,2016,15.262 +113,2017,14.792 +113,2018,15.068 +113,2019,14.986 +113,2020,15.154 +113,2021,14.672 +113,2022,14.739 +113,2023,14.922 +113,2024,NA +114,1940,13.985 +114,1941,13.839 +114,1942,13.763 +114,1943,13.925 +114,1944,13.841 +114,1945,13.916 +114,1946,13.976 +114,1947,13.988 +114,1948,13.643 +114,1949,13.835 +114,1950,13.818 +114,1951,13.839 +114,1952,13.949 +114,1953,14.23 +114,1954,13.856 +114,1955,13.925 +114,1956,13.674 +114,1957,13.914 +114,1958,13.886 +114,1959,14.011 +114,1960,13.968 +114,1961,14.129 +114,1962,14.108 +114,1963,13.87 +114,1964,13.632 +114,1965,13.893 +114,1966,13.829 +114,1967,14.042 +114,1968,13.779 +114,1969,14.034 +114,1970,14.046 +114,1971,13.85 +114,1972,14.005 +114,1973,14.178 +114,1974,13.897 +114,1975,13.926 +114,1976,13.781 +114,1977,14.277 +114,1978,14.11 +114,1979,14.102 +114,1980,14.598 +114,1981,14.406 +114,1982,14.075 +114,1983,14.375 +114,1984,14.162 +114,1985,14.156 +114,1986,14.361 +114,1987,14.247 +114,1988,14.612 +114,1989,14.254 +114,1990,14.559 +114,1991,14.602 +114,1992,14.183 +114,1993,14.321 +114,1994,14.438 +114,1995,14.439 +114,1996,14.366 +114,1997,14.496 +114,1998,14.611 +114,1999,14.376 +114,2000,14.512 +114,2001,14.348 +114,2002,14.431 +114,2003,14.635 +114,2004,14.558 +114,2005,14.804 +114,2006,14.604 +114,2007,14.888 +114,2008,14.485 +114,2009,14.551 +114,2010,14.907 +114,2011,14.573 +114,2012,14.633 +114,2013,14.505 +114,2014,14.893 +114,2015,14.792 +114,2016,15.251 +114,2017,14.806 +114,2018,15.077 +114,2019,15.05 +114,2020,15.195 +114,2021,14.698 +114,2022,14.758 +114,2023,14.953 +114,2024,NA +115,1940,13.994 +115,1941,13.887 +115,1942,13.812 +115,1943,13.895 +115,1944,13.888 +115,1945,13.951 +115,1946,14.008 +115,1947,14.037 +115,1948,13.646 +115,1949,13.827 +115,1950,13.836 +115,1951,13.926 +115,1952,13.957 +115,1953,14.299 +115,1954,13.861 +115,1955,13.927 +115,1956,13.693 +115,1957,13.973 +115,1958,13.969 +115,1959,14.058 +115,1960,13.932 +115,1961,14.161 +115,1962,14.135 +115,1963,13.908 +115,1964,13.711 +115,1965,13.922 +115,1966,13.89 +115,1967,14.135 +115,1968,13.671 +115,1969,14.139 +115,1970,14.101 +115,1971,13.835 +115,1972,14.009 +115,1973,14.202 +115,1974,13.906 +115,1975,13.882 +115,1976,13.846 +115,1977,14.272 +115,1978,14.191 +115,1979,14.22 +115,1980,14.59 +115,1981,14.465 +115,1982,14.116 +115,1983,14.478 +115,1984,14.143 +115,1985,14.218 +115,1986,14.395 +115,1987,14.335 +115,1988,14.583 +115,1989,14.287 +115,1990,14.533 +115,1991,14.667 +115,1992,14.282 +115,1993,14.307 +115,1994,14.482 +115,1995,14.419 +115,1996,14.305 +115,1997,14.516 +115,1998,14.666 +115,1999,14.309 +115,2000,14.54 +115,2001,14.433 +115,2002,14.471 +115,2003,14.709 +115,2004,14.537 +115,2005,14.781 +115,2006,14.627 +115,2007,14.887 +115,2008,14.575 +115,2009,14.543 +115,2010,14.878 +115,2011,14.623 +115,2012,14.652 +115,2013,14.584 +115,2014,14.814 +115,2015,14.825 +115,2016,15.254 +115,2017,14.854 +115,2018,15.116 +115,2019,15.082 +115,2020,15.266 +115,2021,14.815 +115,2022,14.766 +115,2023,14.965 +115,2024,NA +116,1940,13.995 +116,1941,13.927 +116,1942,13.825 +116,1943,13.943 +116,1944,13.97 +116,1945,14.005 +116,1946,14.047 +116,1947,14.079 +116,1948,13.694 +116,1949,13.848 +116,1950,13.849 +116,1951,14.025 +116,1952,13.939 +116,1953,14.411 +116,1954,13.875 +116,1955,13.908 +116,1956,13.75 +116,1957,14.031 +116,1958,14.05 +116,1959,14.082 +116,1960,13.882 +116,1961,14.187 +116,1962,14.089 +116,1963,13.988 +116,1964,13.768 +116,1965,13.947 +116,1966,13.899 +116,1967,14.126 +116,1968,13.651 +116,1969,14.245 +116,1970,14.183 +116,1971,13.87 +116,1972,13.968 +116,1973,14.246 +116,1974,13.87 +116,1975,13.92 +116,1976,13.922 +116,1977,14.319 +116,1978,14.246 +116,1979,14.285 +116,1980,14.584 +116,1981,14.552 +116,1982,14.116 +116,1983,14.55 +116,1984,14.119 +116,1985,14.261 +116,1986,14.418 +116,1987,14.377 +116,1988,14.579 +116,1989,14.271 +116,1990,14.538 +116,1991,14.668 +116,1992,14.38 +116,1993,14.328 +116,1994,14.502 +116,1995,14.483 +116,1996,14.286 +116,1997,14.498 +116,1998,14.664 +116,1999,14.303 +116,2000,14.597 +116,2001,14.507 +116,2002,14.521 +116,2003,14.734 +116,2004,14.523 +116,2005,14.757 +116,2006,14.682 +116,2007,14.84 +116,2008,14.695 +116,2009,14.576 +116,2010,14.9 +116,2011,14.74 +116,2012,14.637 +116,2013,14.701 +116,2014,14.8 +116,2015,14.861 +116,2016,15.263 +116,2017,14.899 +116,2018,15.103 +116,2019,15.164 +116,2020,15.323 +116,2021,14.849 +116,2022,14.833 +116,2023,15.036 +116,2024,NA +117,1940,14.081 +117,1941,13.957 +117,1942,13.888 +117,1943,13.99 +117,1944,14.027 +117,1945,14.06 +117,1946,14.111 +117,1947,14.109 +117,1948,13.767 +117,1949,13.923 +117,1950,13.9 +117,1951,14.104 +117,1952,13.938 +117,1953,14.447 +117,1954,13.896 +117,1955,13.888 +117,1956,13.765 +117,1957,14.107 +117,1958,14.132 +117,1959,14.22 +117,1960,13.859 +117,1961,14.241 +117,1962,14.05 +117,1963,14.085 +117,1964,13.788 +117,1965,13.99 +117,1966,13.925 +117,1967,14.062 +117,1968,13.765 +117,1969,14.283 +117,1970,14.226 +117,1971,13.906 +117,1972,14.019 +117,1973,14.276 +117,1974,13.818 +117,1975,14.008 +117,1976,13.935 +117,1977,14.366 +117,1978,14.218 +117,1979,14.265 +117,1980,14.613 +117,1981,14.603 +117,1982,14.093 +117,1983,14.583 +117,1984,14.108 +117,1985,14.323 +117,1986,14.375 +117,1987,14.421 +117,1988,14.645 +117,1989,14.286 +117,1990,14.61 +117,1991,14.665 +117,1992,14.399 +117,1993,14.357 +117,1994,14.476 +117,1995,14.562 +117,1996,14.305 +117,1997,14.509 +117,1998,14.696 +117,1999,14.341 +117,2000,14.693 +117,2001,14.589 +117,2002,14.539 +117,2003,14.699 +117,2004,14.593 +117,2005,14.765 +117,2006,14.693 +117,2007,14.812 +117,2008,14.733 +117,2009,14.574 +117,2010,14.985 +117,2011,14.842 +117,2012,14.708 +117,2013,14.805 +117,2014,14.81 +117,2015,14.848 +117,2016,15.233 +117,2017,14.907 +117,2018,15.104 +117,2019,15.161 +117,2020,15.331 +117,2021,14.853 +117,2022,14.851 +117,2023,15.106 +117,2024,NA +118,1940,14.153 +118,1941,13.982 +118,1942,13.886 +118,1943,14.024 +118,1944,14.092 +118,1945,14.079 +118,1946,14.115 +118,1947,14.176 +118,1948,13.879 +118,1949,14.018 +118,1950,13.942 +118,1951,14.241 +118,1952,13.992 +118,1953,14.427 +118,1954,13.954 +118,1955,13.873 +118,1956,13.795 +118,1957,14.169 +118,1958,14.101 +118,1959,14.263 +118,1960,13.847 +118,1961,14.246 +118,1962,14.055 +118,1963,14.078 +118,1964,13.803 +118,1965,14.025 +118,1966,13.903 +118,1967,14.048 +118,1968,13.888 +118,1969,14.277 +118,1970,14.288 +118,1971,13.955 +118,1972,14.085 +118,1973,14.255 +118,1974,13.826 +118,1975,14.061 +118,1976,13.967 +118,1977,14.351 +118,1978,14.21 +118,1979,14.275 +118,1980,14.658 +118,1981,14.621 +118,1982,14.073 +118,1983,14.652 +118,1984,14.164 +118,1985,14.334 +118,1986,14.406 +118,1987,14.469 +118,1988,14.68 +118,1989,14.262 +118,1990,14.718 +118,1991,14.623 +118,1992,14.451 +118,1993,14.38 +118,1994,14.402 +118,1995,14.609 +118,1996,14.349 +118,1997,14.572 +118,1998,14.78 +118,1999,14.37 +118,2000,14.679 +118,2001,14.672 +118,2002,14.613 +118,2003,14.617 +118,2004,14.614 +118,2005,14.827 +118,2006,14.738 +118,2007,14.797 +118,2008,14.766 +118,2009,14.621 +118,2010,15.025 +118,2011,14.911 +118,2012,14.684 +118,2013,14.87 +118,2014,14.861 +118,2015,14.89 +118,2016,15.205 +118,2017,14.862 +118,2018,15.133 +118,2019,15.121 +118,2020,15.373 +118,2021,14.852 +118,2022,14.868 +118,2023,15.187 +118,2024,NA +119,1940,14.144 +119,1941,13.983 +119,1942,13.892 +119,1943,14.08 +119,1944,14.21 +119,1945,14.123 +119,1946,14.143 +119,1947,14.246 +119,1948,14.022 +119,1949,14.095 +119,1950,13.951 +119,1951,14.325 +119,1952,14.045 +119,1953,14.411 +119,1954,13.978 +119,1955,13.876 +119,1956,13.857 +119,1957,14.13 +119,1958,14.077 +119,1959,14.321 +119,1960,13.818 +119,1961,14.239 +119,1962,14.075 +119,1963,14.061 +119,1964,13.905 +119,1965,14.055 +119,1966,13.943 +119,1967,14.069 +119,1968,13.937 +119,1969,14.342 +119,1970,14.265 +119,1971,14.053 +119,1972,14.111 +119,1973,14.272 +119,1974,13.875 +119,1975,14.06 +119,1976,14.001 +119,1977,14.331 +119,1978,14.239 +119,1979,14.29 +119,1980,14.688 +119,1981,14.637 +119,1982,14.122 +119,1983,14.705 +119,1984,14.296 +119,1985,14.395 +119,1986,14.442 +119,1987,14.609 +119,1988,14.663 +119,1989,14.281 +119,1990,14.823 +119,1991,14.65 +119,1992,14.529 +119,1993,14.421 +119,1994,14.377 +119,1995,14.651 +119,1996,14.399 +119,1997,14.576 +119,1998,14.815 +119,1999,14.387 +119,2000,14.694 +119,2001,14.698 +119,2002,14.758 +119,2003,14.564 +119,2004,14.544 +119,2005,14.845 +119,2006,14.797 +119,2007,14.847 +119,2008,14.805 +119,2009,14.758 +119,2010,15.068 +119,2011,14.92 +119,2012,14.674 +119,2013,14.877 +119,2014,14.864 +119,2015,14.922 +119,2016,15.2 +119,2017,14.903 +119,2018,15.115 +119,2019,15.12 +119,2020,15.454 +119,2021,14.949 +119,2022,14.913 +119,2023,15.217 +119,2024,NA +120,1940,14.17 +120,1941,14.115 +120,1942,13.959 +120,1943,14.134 +120,1944,14.214 +120,1945,14.112 +120,1946,14.171 +120,1947,14.319 +120,1948,14.118 +120,1949,14.136 +120,1950,13.947 +120,1951,14.329 +120,1952,14.117 +120,1953,14.391 +120,1954,13.989 +120,1955,13.93 +120,1956,13.87 +120,1957,14.151 +120,1958,14.122 +120,1959,14.399 +120,1960,13.852 +120,1961,14.285 +120,1962,14.103 +120,1963,14.056 +120,1964,13.996 +120,1965,14.13 +120,1966,13.995 +120,1967,14.064 +120,1968,14.001 +120,1969,14.412 +120,1970,14.228 +120,1971,14.118 +120,1972,14.087 +120,1973,14.387 +120,1974,13.922 +120,1975,14.098 +120,1976,14.005 +120,1977,14.315 +120,1978,14.226 +120,1979,14.314 +120,1980,14.681 +120,1981,14.608 +120,1982,14.164 +120,1983,14.676 +120,1984,14.396 +120,1985,14.465 +120,1986,14.474 +120,1987,14.703 +120,1988,14.627 +120,1989,14.275 +120,1990,14.862 +120,1991,14.664 +120,1992,14.557 +120,1993,14.493 +120,1994,14.427 +120,1995,14.684 +120,1996,14.438 +120,1997,14.62 +120,1998,14.831 +120,1999,14.355 +120,2000,14.694 +120,2001,14.66 +120,2002,14.832 +120,2003,14.565 +120,2004,14.478 +120,2005,14.862 +120,2006,14.809 +120,2007,14.969 +120,2008,14.811 +120,2009,14.902 +120,2010,15.066 +120,2011,14.94 +120,2012,14.739 +120,2013,14.89 +120,2014,14.826 +120,2015,14.983 +120,2016,15.177 +120,2017,14.996 +120,2018,15.098 +120,2019,15.116 +120,2020,15.5 +120,2021,15.045 +120,2022,14.926 +120,2023,15.206 +120,2024,NA +121,1940,14.173 +121,1941,14.196 +121,1942,14.069 +121,1943,14.192 +121,1944,14.237 +121,1945,14.065 +121,1946,14.188 +121,1947,14.394 +121,1948,14.154 +121,1949,14.159 +121,1950,13.973 +121,1951,14.261 +121,1952,14.181 +121,1953,14.392 +121,1954,13.976 +121,1955,14.04 +121,1956,13.944 +121,1957,14.189 +121,1958,14.183 +121,1959,14.373 +121,1960,13.878 +121,1961,14.316 +121,1962,14.168 +121,1963,14.09 +121,1964,14.074 +121,1965,14.187 +121,1966,14.029 +121,1967,14.146 +121,1968,14.044 +121,1969,14.46 +121,1970,14.195 +121,1971,14.166 +121,1972,14.123 +121,1973,14.486 +121,1974,13.993 +121,1975,14.165 +121,1976,14.026 +121,1977,14.298 +121,1978,14.259 +121,1979,14.272 +121,1980,14.656 +121,1981,14.582 +121,1982,14.258 +121,1983,14.672 +121,1984,14.46 +121,1985,14.52 +121,1986,14.526 +121,1987,14.674 +121,1988,14.6 +121,1989,14.292 +121,1990,14.897 +121,1991,14.625 +121,1992,14.548 +121,1993,14.548 +121,1994,14.463 +121,1995,14.751 +121,1996,14.421 +121,1997,14.62 +121,1998,14.822 +121,1999,14.374 +121,2000,14.746 +121,2001,14.759 +121,2002,14.862 +121,2003,14.609 +121,2004,14.467 +121,2005,14.874 +121,2006,14.793 +121,2007,15.102 +121,2008,14.809 +121,2009,15.008 +121,2010,15.093 +121,2011,14.917 +121,2012,14.798 +121,2013,14.972 +121,2014,14.83 +121,2015,14.993 +121,2016,15.191 +121,2017,15.039 +121,2018,15.102 +121,2019,15.098 +121,2020,15.504 +121,2021,15.108 +121,2022,14.949 +121,2023,15.212 +121,2024,NA +122,1940,14.215 +122,1941,14.242 +122,1942,14.182 +122,1943,14.156 +122,1944,14.214 +122,1945,13.996 +122,1946,14.23 +122,1947,14.419 +122,1948,14.201 +122,1949,14.175 +122,1950,14.069 +122,1951,14.287 +122,1952,14.201 +122,1953,14.373 +122,1954,13.98 +122,1955,14.134 +122,1956,13.994 +122,1957,14.218 +122,1958,14.23 +122,1959,14.358 +122,1960,13.948 +122,1961,14.297 +122,1962,14.227 +122,1963,14.115 +122,1964,14.083 +122,1965,14.206 +122,1966,14.08 +122,1967,14.246 +122,1968,14.102 +122,1969,14.511 +122,1970,14.107 +122,1971,14.214 +122,1972,14.2 +122,1973,14.594 +122,1974,14.028 +122,1975,14.293 +122,1976,14.096 +122,1977,14.411 +122,1978,14.271 +122,1979,14.305 +122,1980,14.674 +122,1981,14.584 +122,1982,14.417 +122,1983,14.665 +122,1984,14.527 +122,1985,14.503 +122,1986,14.637 +122,1987,14.626 +122,1988,14.668 +122,1989,14.378 +122,1990,14.916 +122,1991,14.575 +122,1992,14.505 +122,1993,14.581 +122,1994,14.408 +122,1995,14.757 +122,1996,14.447 +122,1997,14.642 +122,1998,14.841 +122,1999,14.419 +122,2000,14.766 +122,2001,14.805 +122,2002,14.849 +122,2003,14.622 +122,2004,14.523 +122,2005,14.888 +122,2006,14.818 +122,2007,15.236 +122,2008,14.804 +122,2009,15.093 +122,2010,15.154 +122,2011,14.834 +122,2012,14.872 +122,2013,14.986 +122,2014,14.859 +122,2015,14.978 +122,2016,15.144 +122,2017,15.106 +122,2018,15.085 +122,2019,15.143 +122,2020,15.452 +122,2021,15.136 +122,2022,15.02 +122,2023,15.173 +122,2024,NA +123,1940,14.234 +123,1941,14.297 +123,1942,14.233 +123,1943,14.17 +123,1944,14.205 +123,1945,14.042 +123,1946,14.283 +123,1947,14.468 +123,1948,14.204 +123,1949,14.242 +123,1950,14.138 +123,1951,14.319 +123,1952,14.196 +123,1953,14.343 +123,1954,14.063 +123,1955,14.097 +123,1956,14.027 +123,1957,14.207 +123,1958,14.236 +123,1959,14.376 +123,1960,13.978 +123,1961,14.318 +123,1962,14.257 +123,1963,14.083 +123,1964,14.081 +123,1965,14.212 +123,1966,14.197 +123,1967,14.295 +123,1968,14.133 +123,1969,14.514 +123,1970,14.146 +123,1971,14.296 +123,1972,14.297 +123,1973,14.593 +123,1974,14.074 +123,1975,14.285 +123,1976,14.096 +123,1977,14.476 +123,1978,14.25 +123,1979,14.332 +123,1980,14.724 +123,1981,14.577 +123,1982,14.542 +123,1983,14.676 +123,1984,14.604 +123,1985,14.497 +123,1986,14.69 +123,1987,14.619 +123,1988,14.707 +123,1989,14.52 +123,1990,14.916 +123,1991,14.544 +123,1992,14.53 +123,1993,14.641 +123,1994,14.394 +123,1995,14.707 +123,1996,14.507 +123,1997,14.667 +123,1998,14.903 +123,1999,14.5 +123,2000,14.762 +123,2001,14.791 +123,2002,14.836 +123,2003,14.679 +123,2004,14.561 +123,2005,14.937 +123,2006,14.827 +123,2007,15.269 +123,2008,14.761 +123,2009,15.127 +123,2010,15.194 +123,2011,14.744 +123,2012,14.898 +123,2013,14.929 +123,2014,14.938 +123,2015,15.065 +123,2016,15.17 +123,2017,15.131 +123,2018,15.099 +123,2019,15.274 +123,2020,15.46 +123,2021,15.21 +123,2022,15.069 +123,2023,15.204 +123,2024,NA +124,1940,14.238 +124,1941,14.305 +124,1942,14.286 +124,1943,14.204 +124,1944,14.178 +124,1945,14.149 +124,1946,14.281 +124,1947,14.52 +124,1948,14.262 +124,1949,14.244 +124,1950,14.192 +124,1951,14.438 +124,1952,14.231 +124,1953,14.361 +124,1954,14.139 +124,1955,14.101 +124,1956,14.019 +124,1957,14.223 +124,1958,14.282 +124,1959,14.372 +124,1960,14.026 +124,1961,14.375 +124,1962,14.248 +124,1963,14.066 +124,1964,14.082 +124,1965,14.244 +124,1966,14.245 +124,1967,14.367 +124,1968,14.106 +124,1969,14.503 +124,1970,14.214 +124,1971,14.316 +124,1972,14.315 +124,1973,14.572 +124,1974,14.158 +124,1975,14.231 +124,1976,14.08 +124,1977,14.548 +124,1978,14.286 +124,1979,14.408 +124,1980,14.716 +124,1981,14.587 +124,1982,14.593 +124,1983,14.706 +124,1984,14.695 +124,1985,14.482 +124,1986,14.674 +124,1987,14.588 +124,1988,14.684 +124,1989,14.588 +124,1990,14.987 +124,1991,14.551 +124,1992,14.504 +124,1993,14.694 +124,1994,14.487 +124,1995,14.705 +124,1996,14.565 +124,1997,14.687 +124,1998,14.961 +124,1999,14.642 +124,2000,14.841 +124,2001,14.766 +124,2002,14.849 +124,2003,14.765 +124,2004,14.591 +124,2005,14.959 +124,2006,14.846 +124,2007,15.266 +124,2008,14.783 +124,2009,15.127 +124,2010,15.231 +124,2011,14.729 +124,2012,14.963 +124,2013,14.949 +124,2014,14.984 +124,2015,15.096 +124,2016,15.302 +124,2017,15.141 +124,2018,15.136 +124,2019,15.358 +124,2020,15.49 +124,2021,15.187 +124,2022,15.088 +124,2023,15.267 +124,2024,NA +125,1940,14.305 +125,1941,14.264 +125,1942,14.29 +125,1943,14.233 +125,1944,14.18 +125,1945,14.133 +125,1946,14.324 +125,1947,14.483 +125,1948,14.281 +125,1949,14.225 +125,1950,14.238 +125,1951,14.525 +125,1952,14.299 +125,1953,14.392 +125,1954,14.197 +125,1955,14.113 +125,1956,14.038 +125,1957,14.258 +125,1958,14.287 +125,1959,14.338 +125,1960,14.067 +125,1961,14.386 +125,1962,14.278 +125,1963,14.073 +125,1964,14.177 +125,1965,14.244 +125,1966,14.291 +125,1967,14.427 +125,1968,14.145 +125,1969,14.498 +125,1970,14.294 +125,1971,14.297 +125,1972,14.309 +125,1973,14.612 +125,1974,14.165 +125,1975,14.186 +125,1976,14.085 +125,1977,14.523 +125,1978,14.276 +125,1979,14.362 +125,1980,14.759 +125,1981,14.605 +125,1982,14.635 +125,1983,14.756 +125,1984,14.74 +125,1985,14.424 +125,1986,14.643 +125,1987,14.598 +125,1988,14.68 +125,1989,14.624 +125,1990,15.03 +125,1991,14.568 +125,1992,14.567 +125,1993,14.677 +125,1994,14.567 +125,1995,14.733 +125,1996,14.613 +125,1997,14.67 +125,1998,14.991 +125,1999,14.717 +125,2000,14.896 +125,2001,14.778 +125,2002,14.909 +125,2003,14.793 +125,2004,14.641 +125,2005,14.977 +125,2006,14.875 +125,2007,15.233 +125,2008,14.848 +125,2009,15.104 +125,2010,15.247 +125,2011,14.821 +125,2012,15.101 +125,2013,14.994 +125,2014,14.981 +125,2015,15.097 +125,2016,15.378 +125,2017,15.185 +125,2018,15.139 +125,2019,15.401 +125,2020,15.455 +125,2021,15.168 +125,2022,15.1 +125,2023,15.334 +125,2024,NA +126,1940,14.299 +126,1941,14.264 +126,1942,14.328 +126,1943,14.372 +126,1944,14.212 +126,1945,14.114 +126,1946,14.419 +126,1947,14.469 +126,1948,14.373 +126,1949,14.212 +126,1950,14.262 +126,1951,14.605 +126,1952,14.365 +126,1953,14.463 +126,1954,14.216 +126,1955,14.161 +126,1956,14.056 +126,1957,14.277 +126,1958,14.398 +126,1959,14.374 +126,1960,14.14 +126,1961,14.434 +126,1962,14.309 +126,1963,14.103 +126,1964,14.243 +126,1965,14.236 +126,1966,14.358 +126,1967,14.472 +126,1968,14.248 +126,1969,14.531 +126,1970,14.324 +126,1971,14.33 +126,1972,14.382 +126,1973,14.681 +126,1974,14.151 +126,1975,14.27 +126,1976,14.143 +126,1977,14.508 +126,1978,14.314 +126,1979,14.327 +126,1980,14.874 +126,1981,14.708 +126,1982,14.652 +126,1983,14.847 +126,1984,14.722 +126,1985,14.446 +126,1986,14.675 +126,1987,14.687 +126,1988,14.713 +126,1989,14.591 +126,1990,15.029 +126,1991,14.603 +126,1992,14.604 +126,1993,14.61 +126,1994,14.656 +126,1995,14.796 +126,1996,14.616 +126,1997,14.683 +126,1998,15.014 +126,1999,14.713 +126,2000,14.888 +126,2001,14.81 +126,2002,14.977 +126,2003,14.847 +126,2004,14.711 +126,2005,14.985 +126,2006,14.894 +126,2007,15.21 +126,2008,14.915 +126,2009,15.134 +126,2010,15.263 +126,2011,14.912 +126,2012,15.172 +126,2013,15.019 +126,2014,14.992 +126,2015,15.095 +126,2016,15.464 +126,2017,15.243 +126,2018,15.163 +126,2019,15.49 +126,2020,15.427 +126,2021,15.111 +126,2022,15.124 +126,2023,15.354 +126,2024,NA +127,1940,14.354 +127,1941,14.258 +127,1942,14.409 +127,1943,14.382 +127,1944,14.183 +127,1945,14.108 +127,1946,14.514 +127,1947,14.482 +127,1948,14.361 +127,1949,14.221 +127,1950,14.201 +127,1951,14.657 +127,1952,14.421 +127,1953,14.591 +127,1954,14.241 +127,1955,14.135 +127,1956,14.075 +127,1957,14.334 +127,1958,14.459 +127,1959,14.461 +127,1960,14.195 +127,1961,14.448 +127,1962,14.335 +127,1963,14.141 +127,1964,14.295 +127,1965,14.264 +127,1966,14.409 +127,1967,14.555 +127,1968,14.294 +127,1969,14.549 +127,1970,14.31 +127,1971,14.391 +127,1972,14.426 +127,1973,14.686 +127,1974,14.164 +127,1975,14.368 +127,1976,14.197 +127,1977,14.508 +127,1978,14.388 +127,1979,14.376 +127,1980,14.932 +127,1981,14.762 +127,1982,14.65 +127,1983,14.863 +127,1984,14.76 +127,1985,14.513 +127,1986,14.72 +127,1987,14.737 +127,1988,14.743 +127,1989,14.531 +127,1990,15.08 +127,1991,14.61 +127,1992,14.582 +127,1993,14.579 +127,1994,14.711 +127,1995,14.834 +127,1996,14.618 +127,1997,14.703 +127,1998,15.135 +127,1999,14.743 +127,2000,14.858 +127,2001,14.83 +127,2002,15.033 +127,2003,14.892 +127,2004,14.764 +127,2005,15.006 +127,2006,14.915 +127,2007,15.239 +127,2008,14.97 +127,2009,15.097 +127,2010,15.304 +127,2011,14.984 +127,2012,15.209 +127,2013,15.067 +127,2014,15.051 +127,2015,15.149 +127,2016,15.508 +127,2017,15.319 +127,2018,15.246 +127,2019,15.565 +127,2020,15.409 +127,2021,15.106 +127,2022,15.199 +127,2023,15.376 +127,2024,NA +128,1940,14.457 +128,1941,14.313 +128,1942,14.423 +128,1943,14.371 +128,1944,14.211 +128,1945,14.161 +128,1946,14.595 +128,1947,14.476 +128,1948,14.407 +128,1949,14.294 +128,1950,14.129 +128,1951,14.694 +128,1952,14.452 +128,1953,14.685 +128,1954,14.236 +128,1955,14.097 +128,1956,14.107 +128,1957,14.379 +128,1958,14.533 +128,1959,14.502 +128,1960,14.206 +128,1961,14.502 +128,1962,14.412 +128,1963,14.202 +128,1964,14.378 +128,1965,14.34 +128,1966,14.44 +128,1967,14.62 +128,1968,14.384 +128,1969,14.593 +128,1970,14.263 +128,1971,14.501 +128,1972,14.459 +128,1973,14.671 +128,1974,14.21 +128,1975,14.408 +128,1976,14.251 +128,1977,14.585 +128,1978,14.427 +128,1979,14.435 +128,1980,14.912 +128,1981,14.761 +128,1982,14.686 +128,1983,14.927 +128,1984,14.821 +128,1985,14.558 +128,1986,14.729 +128,1987,14.79 +128,1988,14.782 +128,1989,14.476 +128,1990,15.105 +128,1991,14.655 +128,1992,14.611 +128,1993,14.616 +128,1994,14.755 +128,1995,14.839 +128,1996,14.699 +128,1997,14.657 +128,1998,15.279 +128,1999,14.747 +128,2000,14.831 +128,2001,14.891 +128,2002,15.096 +128,2003,14.97 +128,2004,14.845 +128,2005,15.014 +128,2006,14.868 +128,2007,15.221 +128,2008,14.998 +128,2009,15.098 +128,2010,15.324 +128,2011,15.057 +128,2012,15.265 +128,2013,15.063 +128,2014,15.059 +128,2015,15.168 +128,2016,15.57 +128,2017,15.364 +128,2018,15.291 +128,2019,15.605 +128,2020,15.364 +128,2021,15.111 +128,2022,15.247 +128,2023,15.363 +128,2024,NA +129,1940,14.511 +129,1941,14.33 +129,1942,14.397 +129,1943,14.394 +129,1944,14.272 +129,1945,14.22 +129,1946,14.604 +129,1947,14.463 +129,1948,14.405 +129,1949,14.34 +129,1950,14.115 +129,1951,14.744 +129,1952,14.458 +129,1953,14.692 +129,1954,14.275 +129,1955,14.113 +129,1956,14.097 +129,1957,14.415 +129,1958,14.568 +129,1959,14.509 +129,1960,14.253 +129,1961,14.584 +129,1962,14.475 +129,1963,14.249 +129,1964,14.345 +129,1965,14.431 +129,1966,14.42 +129,1967,14.701 +129,1968,14.495 +129,1969,14.667 +129,1970,14.263 +129,1971,14.55 +129,1972,14.534 +129,1973,14.706 +129,1974,14.289 +129,1975,14.491 +129,1976,14.18 +129,1977,14.678 +129,1978,14.457 +129,1979,14.504 +129,1980,14.96 +129,1981,14.721 +129,1982,14.69 +129,1983,15.014 +129,1984,14.891 +129,1985,14.59 +129,1986,14.782 +129,1987,14.788 +129,1988,14.834 +129,1989,14.471 +129,1990,15.116 +129,1991,14.752 +129,1992,14.636 +129,1993,14.648 +129,1994,14.761 +129,1995,14.818 +129,1996,14.781 +129,1997,14.668 +129,1998,15.31 +129,1999,14.678 +129,2000,14.807 +129,2001,14.994 +129,2002,15.147 +129,2003,15.076 +129,2004,14.932 +129,2005,15.075 +129,2006,14.797 +129,2007,15.179 +129,2008,14.982 +129,2009,15.078 +129,2010,15.318 +129,2011,15.093 +129,2012,15.312 +129,2013,15.105 +129,2014,15.04 +129,2015,15.169 +129,2016,15.571 +129,2017,15.409 +129,2018,15.297 +129,2019,15.59 +129,2020,15.372 +129,2021,15.12 +129,2022,15.235 +129,2023,15.315 +129,2024,NA +130,1940,14.572 +130,1941,14.341 +130,1942,14.43 +130,1943,14.403 +130,1944,14.307 +130,1945,14.305 +130,1946,14.575 +130,1947,14.463 +130,1948,14.363 +130,1949,14.353 +130,1950,14.185 +130,1951,14.73 +130,1952,14.458 +130,1953,14.733 +130,1954,14.309 +130,1955,14.144 +130,1956,14.093 +130,1957,14.454 +130,1958,14.612 +130,1959,14.49 +130,1960,14.297 +130,1961,14.551 +130,1962,14.533 +130,1963,14.349 +130,1964,14.377 +130,1965,14.525 +130,1966,14.385 +130,1967,14.719 +130,1968,14.597 +130,1969,14.751 +130,1970,14.321 +130,1971,14.554 +130,1972,14.586 +130,1973,14.708 +130,1974,14.32 +130,1975,14.614 +130,1976,14.159 +130,1977,14.715 +130,1978,14.516 +130,1979,14.569 +130,1980,15.028 +130,1981,14.716 +130,1982,14.696 +130,1983,15.032 +130,1984,14.921 +130,1985,14.614 +130,1986,14.781 +130,1987,14.76 +130,1988,14.877 +130,1989,14.486 +130,1990,15.144 +130,1991,14.83 +130,1992,14.669 +130,1993,14.733 +130,1994,14.726 +130,1995,14.818 +130,1996,14.88 +130,1997,14.688 +130,1998,15.27 +130,1999,14.663 +130,2000,14.791 +130,2001,15.074 +130,2002,15.235 +130,2003,15.098 +130,2004,14.982 +130,2005,15.172 +130,2006,14.848 +130,2007,15.172 +130,2008,14.983 +130,2009,15.056 +130,2010,15.332 +130,2011,15.074 +130,2012,15.406 +130,2013,15.163 +130,2014,15.13 +130,2015,15.17 +130,2016,15.593 +130,2017,15.389 +130,2018,15.357 +130,2019,15.611 +130,2020,15.426 +130,2021,15.168 +130,2022,15.242 +130,2023,15.312 +130,2024,NA +131,1940,14.675 +131,1941,14.372 +131,1942,14.472 +131,1943,14.462 +131,1944,14.37 +131,1945,14.355 +131,1946,14.569 +131,1947,14.487 +131,1948,14.387 +131,1949,14.378 +131,1950,14.271 +131,1951,14.667 +131,1952,14.469 +131,1953,14.772 +131,1954,14.325 +131,1955,14.245 +131,1956,14.108 +131,1957,14.5 +131,1958,14.616 +131,1959,14.479 +131,1960,14.325 +131,1961,14.533 +131,1962,14.542 +131,1963,14.418 +131,1964,14.411 +131,1965,14.605 +131,1966,14.377 +131,1967,14.685 +131,1968,14.681 +131,1969,14.878 +131,1970,14.4 +131,1971,14.611 +131,1972,14.535 +131,1973,14.67 +131,1974,14.343 +131,1975,14.708 +131,1976,14.193 +131,1977,14.747 +131,1978,14.554 +131,1979,14.642 +131,1980,15.049 +131,1981,14.704 +131,1982,14.684 +131,1983,14.994 +131,1984,14.932 +131,1985,14.58 +131,1986,14.793 +131,1987,14.792 +131,1988,14.936 +131,1989,14.583 +131,1990,15.192 +131,1991,14.852 +131,1992,14.734 +131,1993,14.749 +131,1994,14.687 +131,1995,14.822 +131,1996,14.928 +131,1997,14.666 +131,1998,15.216 +131,1999,14.695 +131,2000,14.81 +131,2001,15.137 +131,2002,15.333 +131,2003,15.145 +131,2004,15.03 +131,2005,15.241 +131,2006,14.908 +131,2007,15.189 +131,2008,15.041 +131,2009,15.003 +131,2010,15.345 +131,2011,15.119 +131,2012,15.478 +131,2013,15.181 +131,2014,15.263 +131,2015,15.182 +131,2016,15.606 +131,2017,15.384 +131,2018,15.369 +131,2019,15.599 +131,2020,15.496 +131,2021,15.244 +131,2022,15.282 +131,2023,15.339 +131,2024,NA +132,1940,14.629 +132,1941,14.429 +132,1942,14.517 +132,1943,14.517 +132,1944,14.463 +132,1945,14.356 +132,1946,14.576 +132,1947,14.526 +132,1948,14.417 +132,1949,14.399 +132,1950,14.326 +132,1951,14.607 +132,1952,14.52 +132,1953,14.715 +132,1954,14.357 +132,1955,14.373 +132,1956,14.095 +132,1957,14.562 +132,1958,14.647 +132,1959,14.488 +132,1960,14.388 +132,1961,14.527 +132,1962,14.562 +132,1963,14.443 +132,1964,14.362 +132,1965,14.619 +132,1966,14.397 +132,1967,14.708 +132,1968,14.69 +132,1969,14.904 +132,1970,14.453 +132,1971,14.635 +132,1972,14.536 +132,1973,14.61 +132,1974,14.361 +132,1975,14.719 +132,1976,14.213 +132,1977,14.75 +132,1978,14.606 +132,1979,14.67 +132,1980,15.126 +132,1981,14.735 +132,1982,14.665 +132,1983,14.991 +132,1984,14.936 +132,1985,14.51 +132,1986,14.836 +132,1987,14.857 +132,1988,14.994 +132,1989,14.657 +132,1990,15.203 +132,1991,14.865 +132,1992,14.818 +132,1993,14.746 +132,1994,14.672 +132,1995,14.873 +132,1996,14.957 +132,1997,14.697 +132,1998,15.213 +132,1999,14.727 +132,2000,14.868 +132,2001,15.187 +132,2002,15.379 +132,2003,15.175 +132,2004,15.062 +132,2005,15.265 +132,2006,14.948 +132,2007,15.174 +132,2008,15.077 +132,2009,14.989 +132,2010,15.321 +132,2011,15.145 +132,2012,15.465 +132,2013,15.21 +132,2014,15.322 +132,2015,15.231 +132,2016,15.589 +132,2017,15.453 +132,2018,15.415 +132,2019,15.553 +132,2020,15.595 +132,2021,15.252 +132,2022,15.349 +132,2023,15.455 +132,2024,NA +133,1940,14.627 +133,1941,14.478 +133,1942,14.611 +133,1943,14.557 +133,1944,14.526 +133,1945,14.382 +133,1946,14.49 +133,1947,14.564 +133,1948,14.421 +133,1949,14.451 +133,1950,14.353 +133,1951,14.58 +133,1952,14.538 +133,1953,14.744 +133,1954,14.376 +133,1955,14.41 +133,1956,14.165 +133,1957,14.604 +133,1958,14.685 +133,1959,14.587 +133,1960,14.468 +133,1961,14.643 +133,1962,14.524 +133,1963,14.441 +133,1964,14.375 +133,1965,14.626 +133,1966,14.45 +133,1967,14.802 +133,1968,14.696 +133,1969,14.818 +133,1970,14.585 +133,1971,14.621 +133,1972,14.629 +133,1973,14.65 +133,1974,14.427 +133,1975,14.659 +133,1976,14.222 +133,1977,14.75 +133,1978,14.686 +133,1979,14.679 +133,1980,15.195 +133,1981,14.765 +133,1982,14.697 +133,1983,14.977 +133,1984,14.962 +133,1985,14.506 +133,1986,14.842 +133,1987,14.925 +133,1988,15.105 +133,1989,14.738 +133,1990,15.228 +133,1991,14.879 +133,1992,14.811 +133,1993,14.797 +133,1994,14.669 +133,1995,14.941 +133,1996,14.945 +133,1997,14.727 +133,1998,15.223 +133,1999,14.742 +133,2000,14.84 +133,2001,15.228 +133,2002,15.396 +133,2003,15.176 +133,2004,15.042 +133,2005,15.26 +133,2006,14.989 +133,2007,15.165 +133,2008,15.07 +133,2009,14.982 +133,2010,15.343 +133,2011,15.109 +133,2012,15.448 +133,2013,15.166 +133,2014,15.392 +133,2015,15.297 +133,2016,15.583 +133,2017,15.496 +133,2018,15.435 +133,2019,15.548 +133,2020,15.708 +133,2021,15.299 +133,2022,15.394 +133,2023,15.556 +133,2024,NA +134,1940,14.619 +134,1941,14.525 +134,1942,14.66 +134,1943,14.566 +134,1944,14.625 +134,1945,14.364 +134,1946,14.458 +134,1947,14.562 +134,1948,14.497 +134,1949,14.509 +134,1950,14.439 +134,1951,14.603 +134,1952,14.629 +134,1953,14.828 +134,1954,14.401 +134,1955,14.439 +134,1956,14.219 +134,1957,14.654 +134,1958,14.672 +134,1959,14.661 +134,1960,14.519 +134,1961,14.729 +134,1962,14.571 +134,1963,14.553 +134,1964,14.451 +134,1965,14.627 +134,1966,14.528 +134,1967,14.837 +134,1968,14.711 +134,1969,14.808 +134,1970,14.722 +134,1971,14.617 +134,1972,14.665 +134,1973,14.651 +134,1974,14.467 +134,1975,14.624 +134,1976,14.327 +134,1977,14.753 +134,1978,14.752 +134,1979,14.69 +134,1980,15.226 +134,1981,14.873 +134,1982,14.78 +134,1983,14.984 +134,1984,14.957 +134,1985,14.549 +134,1986,14.862 +134,1987,15.023 +134,1988,15.163 +134,1989,14.8 +134,1990,15.247 +134,1991,14.891 +134,1992,14.821 +134,1993,14.905 +134,1994,14.635 +134,1995,15 +134,1996,14.951 +134,1997,14.779 +134,1998,15.253 +134,1999,14.815 +134,2000,14.834 +134,2001,15.247 +134,2002,15.436 +134,2003,15.244 +134,2004,15.026 +134,2005,15.265 +134,2006,15.08 +134,2007,15.196 +134,2008,15.082 +134,2009,14.968 +134,2010,15.391 +134,2011,15.095 +134,2012,15.43 +134,2013,15.196 +134,2014,15.433 +134,2015,15.312 +134,2016,15.584 +134,2017,15.469 +134,2018,15.513 +134,2019,15.53 +134,2020,15.727 +134,2021,15.346 +134,2022,15.442 +134,2023,15.596 +134,2024,NA +135,1940,14.623 +135,1941,14.653 +135,1942,14.619 +135,1943,14.571 +135,1944,14.633 +135,1945,14.354 +135,1946,14.479 +135,1947,14.615 +135,1948,14.569 +135,1949,14.545 +135,1950,14.531 +135,1951,14.609 +135,1952,14.66 +135,1953,14.858 +135,1954,14.456 +135,1955,14.489 +135,1956,14.289 +135,1957,14.745 +135,1958,14.73 +135,1959,14.684 +135,1960,14.538 +135,1961,14.813 +135,1962,14.563 +135,1963,14.652 +135,1964,14.501 +135,1965,14.678 +135,1966,14.563 +135,1967,14.839 +135,1968,14.649 +135,1969,14.822 +135,1970,14.78 +135,1971,14.545 +135,1972,14.624 +135,1973,14.631 +135,1974,14.435 +135,1975,14.598 +135,1976,14.37 +135,1977,14.808 +135,1978,14.765 +135,1979,14.687 +135,1980,15.296 +135,1981,14.955 +135,1982,14.818 +135,1983,14.975 +135,1984,15.042 +135,1985,14.613 +135,1986,14.884 +135,1987,15.084 +135,1988,15.202 +135,1989,14.869 +135,1990,15.277 +135,1991,14.904 +135,1992,14.875 +135,1993,14.886 +135,1994,14.667 +135,1995,15.026 +135,1996,14.945 +135,1997,14.866 +135,1998,15.294 +135,1999,14.844 +135,2000,14.899 +135,2001,15.24 +135,2002,15.423 +135,2003,15.284 +135,2004,15.015 +135,2005,15.277 +135,2006,15.18 +135,2007,15.215 +135,2008,15.114 +135,2009,14.958 +135,2010,15.463 +135,2011,15.104 +135,2012,15.463 +135,2013,15.266 +135,2014,15.45 +135,2015,15.335 +135,2016,15.584 +135,2017,15.487 +135,2018,15.595 +135,2019,15.522 +135,2020,15.759 +135,2021,15.4 +135,2022,15.52 +135,2023,15.639 +135,2024,NA +136,1940,14.705 +136,1941,14.711 +136,1942,14.621 +136,1943,14.643 +136,1944,14.666 +136,1945,14.393 +136,1946,14.501 +136,1947,14.665 +136,1948,14.593 +136,1949,14.586 +136,1950,14.536 +136,1951,14.68 +136,1952,14.655 +136,1953,14.944 +136,1954,14.565 +136,1955,14.573 +136,1956,14.384 +136,1957,14.76 +136,1958,14.799 +136,1959,14.701 +136,1960,14.648 +136,1961,14.91 +136,1962,14.56 +136,1963,14.634 +136,1964,14.509 +136,1965,14.676 +136,1966,14.572 +136,1967,14.813 +136,1968,14.627 +136,1969,14.853 +136,1970,14.758 +136,1971,14.575 +136,1972,14.672 +136,1973,14.678 +136,1974,14.486 +136,1975,14.582 +136,1976,14.434 +136,1977,14.835 +136,1978,14.792 +136,1979,14.781 +136,1980,15.306 +136,1981,15.054 +136,1982,14.862 +136,1983,14.973 +136,1984,15.088 +136,1985,14.634 +136,1986,14.902 +136,1987,15.118 +136,1988,15.215 +136,1989,14.9 +136,1990,15.329 +136,1991,14.914 +136,1992,14.936 +136,1993,14.844 +136,1994,14.745 +136,1995,15.039 +136,1996,14.97 +136,1997,14.969 +136,1998,15.308 +136,1999,14.88 +136,2000,14.988 +136,2001,15.268 +136,2002,15.45 +136,2003,15.245 +136,2004,15.085 +136,2005,15.311 +136,2006,15.307 +136,2007,15.218 +136,2008,15.177 +136,2009,14.967 +136,2010,15.473 +136,2011,15.085 +136,2012,15.475 +136,2013,15.3 +136,2014,15.481 +136,2015,15.346 +136,2016,15.628 +136,2017,15.615 +136,2018,15.591 +136,2019,15.511 +136,2020,15.776 +136,2021,15.431 +136,2022,15.56 +136,2023,15.722 +136,2024,NA +137,1940,14.751 +137,1941,14.769 +137,1942,14.645 +137,1943,14.696 +137,1944,14.693 +137,1945,14.443 +137,1946,14.575 +137,1947,14.72 +137,1948,14.648 +137,1949,14.668 +137,1950,14.552 +137,1951,14.755 +137,1952,14.687 +137,1953,15.057 +137,1954,14.645 +137,1955,14.633 +137,1956,14.43 +137,1957,14.758 +137,1958,14.897 +137,1959,14.73 +137,1960,14.712 +137,1961,14.908 +137,1962,14.611 +137,1963,14.673 +137,1964,14.533 +137,1965,14.673 +137,1966,14.611 +137,1967,14.816 +137,1968,14.628 +137,1969,14.936 +137,1970,14.795 +137,1971,14.575 +137,1972,14.72 +137,1973,14.697 +137,1974,14.619 +137,1975,14.594 +137,1976,14.495 +137,1977,14.86 +137,1978,14.815 +137,1979,14.892 +137,1980,15.296 +137,1981,15.073 +137,1982,14.897 +137,1983,14.99 +137,1984,15.086 +137,1985,14.749 +137,1986,14.945 +137,1987,15.148 +137,1988,15.245 +137,1989,14.925 +137,1990,15.385 +137,1991,15.02 +137,1992,14.968 +137,1993,14.879 +137,1994,14.807 +137,1995,15.028 +137,1996,15.064 +137,1997,15.061 +137,1998,15.369 +137,1999,14.965 +137,2000,15.022 +137,2001,15.307 +137,2002,15.425 +137,2003,15.204 +137,2004,15.185 +137,2005,15.305 +137,2006,15.382 +137,2007,15.208 +137,2008,15.214 +137,2009,14.992 +137,2010,15.486 +137,2011,15.135 +137,2012,15.467 +137,2013,15.301 +137,2014,15.537 +137,2015,15.347 +137,2016,15.618 +137,2017,15.69 +137,2018,15.547 +137,2019,15.527 +137,2020,15.81 +137,2021,15.495 +137,2022,15.567 +137,2023,15.754 +137,2024,NA +138,1940,14.822 +138,1941,14.788 +138,1942,14.692 +138,1943,14.708 +138,1944,14.711 +138,1945,14.458 +138,1946,14.658 +138,1947,14.749 +138,1948,14.685 +138,1949,14.711 +138,1950,14.592 +138,1951,14.809 +138,1952,14.774 +138,1953,15.127 +138,1954,14.661 +138,1955,14.671 +138,1956,14.502 +138,1957,14.823 +138,1958,14.966 +138,1959,14.827 +138,1960,14.77 +138,1961,14.957 +138,1962,14.627 +138,1963,14.708 +138,1964,14.633 +138,1965,14.585 +138,1966,14.687 +138,1967,14.923 +138,1968,14.611 +138,1969,15.003 +138,1970,14.821 +138,1971,14.57 +138,1972,14.758 +138,1973,14.766 +138,1974,14.673 +138,1975,14.629 +138,1976,14.48 +138,1977,14.886 +138,1978,14.813 +138,1979,14.941 +138,1980,15.336 +138,1981,15.09 +138,1982,14.946 +138,1983,15.03 +138,1984,15.109 +138,1985,14.833 +138,1986,14.944 +138,1987,15.192 +138,1988,15.238 +138,1989,14.971 +138,1990,15.421 +138,1991,15.069 +138,1992,14.987 +138,1993,14.945 +138,1994,14.892 +138,1995,15.053 +138,1996,15.103 +138,1997,15.138 +138,1998,15.461 +138,1999,14.968 +138,2000,15.005 +138,2001,15.256 +138,2002,15.404 +138,2003,15.233 +138,2004,15.223 +138,2005,15.387 +138,2006,15.388 +138,2007,15.202 +138,2008,15.207 +138,2009,15.078 +138,2010,15.477 +138,2011,15.167 +138,2012,15.478 +138,2013,15.317 +138,2014,15.548 +138,2015,15.43 +138,2016,15.66 +138,2017,15.712 +138,2018,15.51 +138,2019,15.546 +138,2020,15.812 +138,2021,15.616 +138,2022,15.594 +138,2023,15.705 +138,2024,NA +139,1940,14.88 +139,1941,14.729 +139,1942,14.75 +139,1943,14.717 +139,1944,14.716 +139,1945,14.491 +139,1946,14.662 +139,1947,14.751 +139,1948,14.718 +139,1949,14.767 +139,1950,14.603 +139,1951,14.841 +139,1952,14.839 +139,1953,15.094 +139,1954,14.666 +139,1955,14.64 +139,1956,14.584 +139,1957,14.848 +139,1958,15.042 +139,1959,14.8 +139,1960,14.762 +139,1961,15.012 +139,1962,14.681 +139,1963,14.722 +139,1964,14.66 +139,1965,14.525 +139,1966,14.697 +139,1967,15.017 +139,1968,14.618 +139,1969,15.006 +139,1970,14.865 +139,1971,14.62 +139,1972,14.761 +139,1973,14.811 +139,1974,14.707 +139,1975,14.65 +139,1976,14.444 +139,1977,14.955 +139,1978,14.853 +139,1979,14.964 +139,1980,15.324 +139,1981,15.13 +139,1982,14.975 +139,1983,15.074 +139,1984,15.184 +139,1985,14.881 +139,1986,15.008 +139,1987,15.205 +139,1988,15.26 +139,1989,15.034 +139,1990,15.413 +139,1991,15.051 +139,1992,14.993 +139,1993,14.979 +139,1994,14.93 +139,1995,15.016 +139,1996,15.086 +139,1997,15.151 +139,1998,15.508 +139,1999,14.991 +139,2000,15.008 +139,2001,15.269 +139,2002,15.321 +139,2003,15.286 +139,2004,15.276 +139,2005,15.417 +139,2006,15.368 +139,2007,15.245 +139,2008,15.236 +139,2009,15.18 +139,2010,15.469 +139,2011,15.205 +139,2012,15.468 +139,2013,15.306 +139,2014,15.526 +139,2015,15.539 +139,2016,15.704 +139,2017,15.724 +139,2018,15.499 +139,2019,15.487 +139,2020,15.789 +139,2021,15.649 +139,2022,15.592 +139,2023,15.694 +139,2024,NA +140,1940,14.968 +140,1941,14.677 +140,1942,14.759 +140,1943,14.71 +140,1944,14.699 +140,1945,14.549 +140,1946,14.656 +140,1947,14.736 +140,1948,14.819 +140,1949,14.85 +140,1950,14.679 +140,1951,14.897 +140,1952,14.866 +140,1953,15.064 +140,1954,14.688 +140,1955,14.628 +140,1956,14.655 +140,1957,14.867 +140,1958,15.028 +140,1959,14.738 +140,1960,14.734 +140,1961,15.042 +140,1962,14.716 +140,1963,14.712 +140,1964,14.729 +140,1965,14.538 +140,1966,14.685 +140,1967,14.996 +140,1968,14.673 +140,1969,14.998 +140,1970,14.913 +140,1971,14.686 +140,1972,14.808 +140,1973,14.876 +140,1974,14.693 +140,1975,14.674 +140,1976,14.38 +140,1977,14.956 +140,1978,14.929 +140,1979,14.921 +140,1980,15.324 +140,1981,15.149 +140,1982,14.978 +140,1983,15.186 +140,1984,15.206 +140,1985,14.892 +140,1986,15.1 +140,1987,15.211 +140,1988,15.305 +140,1989,15.041 +140,1990,15.34 +140,1991,15.127 +140,1992,15.002 +140,1993,15.043 +140,1994,14.939 +140,1995,15.05 +140,1996,15.016 +140,1997,15.148 +140,1998,15.595 +140,1999,15.009 +140,2000,15.006 +140,2001,15.227 +140,2002,15.29 +140,2003,15.365 +140,2004,15.312 +140,2005,15.446 +140,2006,15.29 +140,2007,15.29 +140,2008,15.261 +140,2009,15.322 +140,2010,15.463 +140,2011,15.26 +140,2012,15.449 +140,2013,15.302 +140,2014,15.516 +140,2015,15.583 +140,2016,15.727 +140,2017,15.738 +140,2018,15.482 +140,2019,15.493 +140,2020,15.796 +140,2021,15.668 +140,2022,15.618 +140,2023,15.699 +140,2024,NA +141,1940,15.043 +141,1941,14.727 +141,1942,14.794 +141,1943,14.743 +141,1944,14.781 +141,1945,14.637 +141,1946,14.683 +141,1947,14.796 +141,1948,14.887 +141,1949,14.881 +141,1950,14.779 +141,1951,14.975 +141,1952,14.854 +141,1953,15.038 +141,1954,14.695 +141,1955,14.604 +141,1956,14.669 +141,1957,14.834 +141,1958,14.998 +141,1959,14.776 +141,1960,14.741 +141,1961,14.962 +141,1962,14.767 +141,1963,14.738 +141,1964,14.763 +141,1965,14.548 +141,1966,14.725 +141,1967,14.987 +141,1968,14.697 +141,1969,14.998 +141,1970,14.988 +141,1971,14.641 +141,1972,14.893 +141,1973,14.912 +141,1974,14.718 +141,1975,14.672 +141,1976,14.384 +141,1977,14.948 +141,1978,14.961 +141,1979,14.999 +141,1980,15.323 +141,1981,15.136 +141,1982,15.056 +141,1983,15.253 +141,1984,15.185 +141,1985,14.962 +141,1986,15.134 +141,1987,15.218 +141,1988,15.342 +141,1989,14.996 +141,1990,15.324 +141,1991,15.213 +141,1992,14.982 +141,1993,15.095 +141,1994,14.953 +141,1995,15.08 +141,1996,14.925 +141,1997,15.16 +141,1998,15.634 +141,1999,15.091 +141,2000,15.033 +141,2001,15.225 +141,2002,15.248 +141,2003,15.417 +141,2004,15.27 +141,2005,15.482 +141,2006,15.238 +141,2007,15.353 +141,2008,15.255 +141,2009,15.368 +141,2010,15.468 +141,2011,15.354 +141,2012,15.505 +141,2013,15.307 +141,2014,15.531 +141,2015,15.584 +141,2016,15.75 +141,2017,15.745 +141,2018,15.456 +141,2019,15.551 +141,2020,15.808 +141,2021,15.722 +141,2022,15.615 +141,2023,15.699 +141,2024,NA +142,1940,15.047 +142,1941,14.851 +142,1942,14.773 +142,1943,14.8 +142,1944,14.865 +142,1945,14.671 +142,1946,14.721 +142,1947,14.857 +142,1948,15.006 +142,1949,14.874 +142,1950,14.851 +142,1951,15.102 +142,1952,14.839 +142,1953,15.049 +142,1954,14.759 +142,1955,14.618 +142,1956,14.684 +142,1957,14.829 +142,1958,15.066 +142,1959,14.828 +142,1960,14.81 +142,1961,14.958 +142,1962,14.82 +142,1963,14.798 +142,1964,14.824 +142,1965,14.617 +142,1966,14.771 +142,1967,15.002 +142,1968,14.667 +142,1969,15.025 +142,1970,14.98 +142,1971,14.614 +142,1972,14.963 +142,1973,14.954 +142,1974,14.769 +142,1975,14.669 +142,1976,14.429 +142,1977,14.938 +142,1978,14.977 +142,1979,15.074 +142,1980,15.303 +142,1981,15.168 +142,1982,15.119 +142,1983,15.288 +142,1984,15.168 +142,1985,15.031 +142,1986,15.13 +142,1987,15.148 +142,1988,15.397 +142,1989,15.019 +142,1990,15.267 +142,1991,15.308 +142,1992,14.969 +142,1993,15.102 +142,1994,15.048 +142,1995,15.074 +142,1996,14.851 +142,1997,15.172 +142,1998,15.668 +142,1999,15.144 +142,2000,15.102 +142,2001,15.27 +142,2002,15.18 +142,2003,15.437 +142,2004,15.242 +142,2005,15.449 +142,2006,15.215 +142,2007,15.384 +142,2008,15.28 +142,2009,15.373 +142,2010,15.462 +142,2011,15.468 +142,2012,15.535 +142,2013,15.333 +142,2014,15.621 +142,2015,15.558 +142,2016,15.802 +142,2017,15.797 +142,2018,15.47 +142,2019,15.616 +142,2020,15.861 +142,2021,15.697 +142,2022,15.54 +142,2023,15.718 +142,2024,NA +143,1940,15.032 +143,1941,14.932 +143,1942,14.812 +143,1943,14.858 +143,1944,14.886 +143,1945,14.696 +143,1946,14.79 +143,1947,14.924 +143,1948,15.058 +143,1949,14.923 +143,1950,14.857 +143,1951,15.17 +143,1952,14.884 +143,1953,15.044 +143,1954,14.765 +143,1955,14.688 +143,1956,14.719 +143,1957,14.834 +143,1958,15.09 +143,1959,14.93 +143,1960,14.898 +143,1961,15.022 +143,1962,14.846 +143,1963,14.853 +143,1964,14.829 +143,1965,14.693 +143,1966,14.788 +143,1967,15.042 +143,1968,14.694 +143,1969,15.141 +143,1970,15.011 +143,1971,14.62 +143,1972,14.967 +143,1973,14.987 +143,1974,14.763 +143,1975,14.696 +143,1976,14.497 +143,1977,14.935 +143,1978,14.967 +143,1979,15.064 +143,1980,15.311 +143,1981,15.249 +143,1982,15.107 +143,1983,15.328 +143,1984,15.18 +143,1985,15.067 +143,1986,15.142 +143,1987,15.069 +143,1988,15.476 +143,1989,15.026 +143,1990,15.227 +143,1991,15.427 +143,1992,14.976 +143,1993,15.111 +143,1994,15.194 +143,1995,15.087 +143,1996,14.87 +143,1997,15.223 +143,1998,15.708 +143,1999,15.145 +143,2000,15.211 +143,2001,15.331 +143,2002,15.173 +143,2003,15.48 +143,2004,15.194 +143,2005,15.423 +143,2006,15.216 +143,2007,15.391 +143,2008,15.296 +143,2009,15.412 +143,2010,15.54 +143,2011,15.503 +143,2012,15.588 +143,2013,15.396 +143,2014,15.677 +143,2015,15.543 +143,2016,15.887 +143,2017,15.838 +143,2018,15.583 +143,2019,15.704 +143,2020,15.894 +143,2021,15.691 +143,2022,15.552 +143,2023,15.777 +143,2024,NA +144,1940,15.058 +144,1941,14.942 +144,1942,14.835 +144,1943,14.851 +144,1944,14.924 +144,1945,14.769 +144,1946,14.915 +144,1947,14.997 +144,1948,15.1 +144,1949,14.979 +144,1950,14.895 +144,1951,15.193 +144,1952,14.934 +144,1953,15.029 +144,1954,14.843 +144,1955,14.715 +144,1956,14.755 +144,1957,14.848 +144,1958,15.141 +144,1959,15.028 +144,1960,15.024 +144,1961,15.097 +144,1962,14.865 +144,1963,14.915 +144,1964,14.829 +144,1965,14.747 +144,1966,14.796 +144,1967,15.082 +144,1968,14.811 +144,1969,15.158 +144,1970,15.084 +144,1971,14.587 +144,1972,14.878 +144,1973,15.105 +144,1974,14.726 +144,1975,14.748 +144,1976,14.54 +144,1977,14.998 +144,1978,14.969 +144,1979,15.102 +144,1980,15.311 +144,1981,15.306 +144,1982,15.122 +144,1983,15.366 +144,1984,15.231 +144,1985,15.076 +144,1986,15.219 +144,1987,15.061 +144,1988,15.462 +144,1989,15.073 +144,1990,15.246 +144,1991,15.497 +144,1992,14.985 +144,1993,15.208 +144,1994,15.318 +144,1995,15.126 +144,1996,14.877 +144,1997,15.237 +144,1998,15.713 +144,1999,15.131 +144,2000,15.26 +144,2001,15.428 +144,2002,15.192 +144,2003,15.533 +144,2004,15.206 +144,2005,15.505 +144,2006,15.276 +144,2007,15.411 +144,2008,15.35 +144,2009,15.423 +144,2010,15.583 +144,2011,15.445 +144,2012,15.602 +144,2013,15.416 +144,2014,15.632 +144,2015,15.615 +144,2016,15.87 +144,2017,15.904 +144,2018,15.685 +144,2019,15.768 +144,2020,15.905 +144,2021,15.687 +144,2022,15.64 +144,2023,15.862 +144,2024,NA +145,1940,15.06 +145,1941,14.94 +145,1942,14.884 +145,1943,14.866 +145,1944,14.984 +145,1945,14.832 +145,1946,15.006 +145,1947,15.004 +145,1948,15.174 +145,1949,15.002 +145,1950,14.911 +145,1951,15.219 +145,1952,14.948 +145,1953,15.049 +145,1954,15.011 +145,1955,14.762 +145,1956,14.75 +145,1957,14.855 +145,1958,15.211 +145,1959,15.053 +145,1960,15.095 +145,1961,15.164 +145,1962,14.87 +145,1963,14.973 +145,1964,14.872 +145,1965,14.77 +145,1966,14.901 +145,1967,15.106 +145,1968,14.862 +145,1969,15.179 +145,1970,15.07 +145,1971,14.654 +145,1972,14.918 +145,1973,15.224 +145,1974,14.695 +145,1975,14.799 +145,1976,14.595 +145,1977,15.075 +145,1978,14.983 +145,1979,15.089 +145,1980,15.315 +145,1981,15.361 +145,1982,15.167 +145,1983,15.398 +145,1984,15.236 +145,1985,15.082 +145,1986,15.284 +145,1987,15.098 +145,1988,15.464 +145,1989,15.068 +145,1990,15.298 +145,1991,15.476 +145,1992,15.097 +145,1993,15.25 +145,1994,15.364 +145,1995,15.207 +145,1996,14.936 +145,1997,15.235 +145,1998,15.735 +145,1999,15.188 +145,2000,15.354 +145,2001,15.487 +145,2002,15.33 +145,2003,15.6 +145,2004,15.221 +145,2005,15.553 +145,2006,15.359 +145,2007,15.477 +145,2008,15.384 +145,2009,15.464 +145,2010,15.63 +145,2011,15.434 +145,2012,15.535 +145,2013,15.425 +145,2014,15.613 +145,2015,15.718 +145,2016,15.836 +145,2017,15.914 +145,2018,15.776 +145,2019,15.743 +145,2020,15.839 +145,2021,15.756 +145,2022,15.748 +145,2023,15.923 +145,2024,NA +146,1940,15.049 +146,1941,14.919 +146,1942,14.883 +146,1943,14.844 +146,1944,15.093 +146,1945,14.853 +146,1946,15.08 +146,1947,14.961 +146,1948,15.198 +146,1949,15.055 +146,1950,14.895 +146,1951,15.213 +146,1952,14.997 +146,1953,15.07 +146,1954,15.125 +146,1955,14.801 +146,1956,14.752 +146,1957,14.96 +146,1958,15.261 +146,1959,15.017 +146,1960,15.109 +146,1961,15.225 +146,1962,14.829 +146,1963,15.071 +146,1964,14.889 +146,1965,14.858 +146,1966,14.922 +146,1967,15.074 +146,1968,14.847 +146,1969,15.164 +146,1970,15.076 +146,1971,14.672 +146,1972,14.946 +146,1973,15.255 +146,1974,14.718 +146,1975,14.882 +146,1976,14.653 +146,1977,15.178 +146,1978,15.027 +146,1979,15.115 +146,1980,15.331 +146,1981,15.358 +146,1982,15.202 +146,1983,15.444 +146,1984,15.269 +146,1985,15.121 +146,1986,15.294 +146,1987,15.151 +146,1988,15.488 +146,1989,15.038 +146,1990,15.328 +146,1991,15.499 +146,1992,15.262 +146,1993,15.276 +146,1994,15.349 +146,1995,15.221 +146,1996,14.986 +146,1997,15.238 +146,1998,15.759 +146,1999,15.292 +146,2000,15.312 +146,2001,15.549 +146,2002,15.546 +146,2003,15.581 +146,2004,15.195 +146,2005,15.54 +146,2006,15.418 +146,2007,15.604 +146,2008,15.406 +146,2009,15.556 +146,2010,15.62 +146,2011,15.45 +146,2012,15.493 +146,2013,15.401 +146,2014,15.688 +146,2015,15.794 +146,2016,15.861 +146,2017,15.959 +146,2018,15.835 +146,2019,15.723 +146,2020,15.82 +146,2021,15.821 +146,2022,15.869 +146,2023,16.002 +146,2024,NA +147,1940,15.038 +147,1941,14.937 +147,1942,14.897 +147,1943,14.837 +147,1944,15.117 +147,1945,14.947 +147,1946,15.148 +147,1947,14.916 +147,1948,15.267 +147,1949,15.105 +147,1950,14.86 +147,1951,15.201 +147,1952,15.012 +147,1953,15.122 +147,1954,15.141 +147,1955,14.875 +147,1956,14.79 +147,1957,15.118 +147,1958,15.238 +147,1959,15.021 +147,1960,15.163 +147,1961,15.196 +147,1962,14.824 +147,1963,15.123 +147,1964,14.805 +147,1965,14.943 +147,1966,14.975 +147,1967,15.1 +147,1968,14.803 +147,1969,15.136 +147,1970,15.057 +147,1971,14.713 +147,1972,14.949 +147,1973,15.297 +147,1974,14.798 +147,1975,14.978 +147,1976,14.687 +147,1977,15.256 +147,1978,15.119 +147,1979,15.135 +147,1980,15.356 +147,1981,15.355 +147,1982,15.201 +147,1983,15.451 +147,1984,15.298 +147,1985,15.195 +147,1986,15.305 +147,1987,15.182 +147,1988,15.499 +147,1989,15.008 +147,1990,15.397 +147,1991,15.579 +147,1992,15.321 +147,1993,15.298 +147,1994,15.288 +147,1995,15.247 +147,1996,15.003 +147,1997,15.323 +147,1998,15.754 +147,1999,15.297 +147,2000,15.299 +147,2001,15.567 +147,2002,15.711 +147,2003,15.554 +147,2004,15.176 +147,2005,15.573 +147,2006,15.488 +147,2007,15.679 +147,2008,15.397 +147,2009,15.636 +147,2010,15.622 +147,2011,15.451 +147,2012,15.529 +147,2013,15.456 +147,2014,15.799 +147,2015,15.833 +147,2016,15.986 +147,2017,16.036 +147,2018,15.847 +147,2019,15.776 +147,2020,15.883 +147,2021,15.852 +147,2022,15.915 +147,2023,15.989 +147,2024,NA +148,1940,15.011 +148,1941,14.973 +148,1942,14.915 +148,1943,14.879 +148,1944,15.077 +148,1945,15.002 +148,1946,15.186 +148,1947,14.892 +148,1948,15.235 +148,1949,15.122 +148,1950,14.908 +148,1951,15.223 +148,1952,14.981 +148,1953,15.122 +148,1954,15.193 +148,1955,14.959 +148,1956,14.755 +148,1957,15.207 +148,1958,15.238 +148,1959,15.098 +148,1960,15.192 +148,1961,15.191 +148,1962,14.894 +148,1963,15.146 +148,1964,14.766 +148,1965,15.039 +148,1966,15.005 +148,1967,15.112 +148,1968,14.841 +148,1969,15.155 +148,1970,15.065 +148,1971,14.759 +148,1972,14.982 +148,1973,15.355 +148,1974,14.871 +148,1975,15.034 +148,1976,14.728 +148,1977,15.257 +148,1978,15.163 +148,1979,15.128 +148,1980,15.358 +148,1981,15.389 +148,1982,15.209 +148,1983,15.525 +148,1984,15.286 +148,1985,15.306 +148,1986,15.331 +148,1987,15.138 +148,1988,15.491 +148,1989,15.037 +148,1990,15.425 +148,1991,15.625 +148,1992,15.32 +148,1993,15.293 +148,1994,15.262 +148,1995,15.27 +148,1996,14.995 +148,1997,15.401 +148,1998,15.785 +148,1999,15.357 +148,2000,15.294 +148,2001,15.57 +148,2002,15.804 +148,2003,15.523 +148,2004,15.134 +148,2005,15.673 +148,2006,15.562 +148,2007,15.709 +148,2008,15.386 +148,2009,15.593 +148,2010,15.688 +148,2011,15.507 +148,2012,15.611 +148,2013,15.478 +148,2014,15.851 +148,2015,15.799 +148,2016,16.01 +148,2017,16.103 +148,2018,15.852 +148,2019,15.866 +148,2020,15.919 +148,2021,15.912 +148,2022,15.922 +148,2023,16.011 +148,2024,NA +149,1940,15.046 +149,1941,15.025 +149,1942,14.951 +149,1943,14.956 +149,1944,15.13 +149,1945,15.123 +149,1946,15.184 +149,1947,14.847 +149,1948,15.166 +149,1949,15.064 +149,1950,14.975 +149,1951,15.297 +149,1952,15.014 +149,1953,15.088 +149,1954,15.235 +149,1955,15.068 +149,1956,14.781 +149,1957,15.177 +149,1958,15.23 +149,1959,15.13 +149,1960,15.209 +149,1961,15.206 +149,1962,14.92 +149,1963,15.211 +149,1964,14.786 +149,1965,15.138 +149,1966,15.024 +149,1967,15.134 +149,1968,14.868 +149,1969,15.15 +149,1970,15.092 +149,1971,14.785 +149,1972,14.972 +149,1973,15.378 +149,1974,14.981 +149,1975,15.087 +149,1976,14.795 +149,1977,15.243 +149,1978,15.184 +149,1979,15.115 +149,1980,15.35 +149,1981,15.491 +149,1982,15.156 +149,1983,15.595 +149,1984,15.307 +149,1985,15.319 +149,1986,15.381 +149,1987,15.102 +149,1988,15.513 +149,1989,15.142 +149,1990,15.409 +149,1991,15.641 +149,1992,15.335 +149,1993,15.278 +149,1994,15.207 +149,1995,15.309 +149,1996,15.043 +149,1997,15.421 +149,1998,15.824 +149,1999,15.431 +149,2000,15.317 +149,2001,15.523 +149,2002,15.833 +149,2003,15.541 +149,2004,15.146 +149,2005,15.691 +149,2006,15.585 +149,2007,15.694 +149,2008,15.379 +149,2009,15.601 +149,2010,15.737 +149,2011,15.532 +149,2012,15.664 +149,2013,15.567 +149,2014,15.891 +149,2015,15.739 +149,2016,15.951 +149,2017,16.088 +149,2018,15.861 +149,2019,15.955 +149,2020,15.991 +149,2021,16.007 +149,2022,15.949 +149,2023,16.034 +149,2024,NA +150,1940,15.098 +150,1941,15.081 +150,1942,15.004 +150,1943,15.041 +150,1944,15.181 +150,1945,15.178 +150,1946,15.223 +150,1947,14.858 +150,1948,15.15 +150,1949,14.999 +150,1950,14.986 +150,1951,15.249 +150,1952,15.114 +150,1953,15.109 +150,1954,15.2 +150,1955,15.18 +150,1956,14.816 +150,1957,15.208 +150,1958,15.196 +150,1959,15.11 +150,1960,15.194 +150,1961,15.225 +150,1962,14.927 +150,1963,15.249 +150,1964,14.82 +150,1965,15.147 +150,1966,15.093 +150,1967,15.136 +150,1968,14.95 +150,1969,15.19 +150,1970,15.091 +150,1971,14.795 +150,1972,15.015 +150,1973,15.382 +150,1974,15.046 +150,1975,15.116 +150,1976,14.791 +150,1977,15.239 +150,1978,15.194 +150,1979,15.184 +150,1980,15.365 +150,1981,15.555 +150,1982,15.128 +150,1983,15.592 +150,1984,15.346 +150,1985,15.361 +150,1986,15.378 +150,1987,15.126 +150,1988,15.508 +150,1989,15.233 +150,1990,15.374 +150,1991,15.669 +150,1992,15.338 +150,1993,15.371 +150,1994,15.268 +150,1995,15.329 +150,1996,15.085 +150,1997,15.451 +150,1998,15.869 +150,1999,15.416 +150,2000,15.36 +150,2001,15.499 +150,2002,15.835 +150,2003,15.579 +150,2004,15.22 +150,2005,15.708 +150,2006,15.581 +150,2007,15.624 +150,2008,15.364 +150,2009,15.644 +150,2010,15.796 +150,2011,15.58 +150,2012,15.781 +150,2013,15.644 +150,2014,15.931 +150,2015,15.815 +150,2016,15.976 +150,2017,16.074 +150,2018,15.892 +150,2019,16.006 +150,2020,16.075 +150,2021,16.022 +150,2022,15.978 +150,2023,16.045 +150,2024,NA +151,1940,15.093 +151,1941,15.092 +151,1942,15.046 +151,1943,15.037 +151,1944,15.203 +151,1945,15.159 +151,1946,15.272 +151,1947,14.877 +151,1948,15.161 +151,1949,14.977 +151,1950,14.937 +151,1951,15.179 +151,1952,15.132 +151,1953,15.169 +151,1954,15.203 +151,1955,15.216 +151,1956,14.887 +151,1957,15.258 +151,1958,15.184 +151,1959,15.069 +151,1960,15.204 +151,1961,15.237 +151,1962,14.957 +151,1963,15.245 +151,1964,14.823 +151,1965,15.089 +151,1966,15.174 +151,1967,15.125 +151,1968,14.96 +151,1969,15.157 +151,1970,15.075 +151,1971,14.845 +151,1972,15.072 +151,1973,15.372 +151,1974,15.054 +151,1975,15.102 +151,1976,14.87 +151,1977,15.247 +151,1978,15.169 +151,1979,15.19 +151,1980,15.442 +151,1981,15.56 +151,1982,15.137 +151,1983,15.571 +151,1984,15.383 +151,1985,15.34 +151,1986,15.347 +151,1987,15.235 +151,1988,15.437 +151,1989,15.289 +151,1990,15.411 +151,1991,15.669 +151,1992,15.362 +151,1993,15.479 +151,1994,15.343 +151,1995,15.386 +151,1996,15.162 +151,1997,15.512 +151,1998,15.924 +151,1999,15.368 +151,2000,15.438 +151,2001,15.471 +151,2002,15.895 +151,2003,15.597 +151,2004,15.311 +151,2005,15.717 +151,2006,15.626 +151,2007,15.592 +151,2008,15.388 +151,2009,15.719 +151,2010,15.763 +151,2011,15.636 +151,2012,15.851 +151,2013,15.694 +151,2014,15.956 +151,2015,15.924 +151,2016,15.997 +151,2017,16.045 +151,2018,15.921 +151,2019,15.994 +151,2020,16.133 +151,2021,15.999 +151,2022,15.974 +151,2023,16.115 +151,2024,NA +152,1940,15.103 +152,1941,15.172 +152,1942,15.081 +152,1943,15.022 +152,1944,15.267 +152,1945,15.145 +152,1946,15.281 +152,1947,14.931 +152,1948,15.162 +152,1949,15.01 +152,1950,15.008 +152,1951,15.197 +152,1952,15.157 +152,1953,15.233 +152,1954,15.192 +152,1955,15.191 +152,1956,14.925 +152,1957,15.315 +152,1958,15.19 +152,1959,15.102 +152,1960,15.164 +152,1961,15.28 +152,1962,15.022 +152,1963,15.243 +152,1964,14.905 +152,1965,15.044 +152,1966,15.188 +152,1967,15.138 +152,1968,14.937 +152,1969,15.138 +152,1970,15.125 +152,1971,14.855 +152,1972,15.097 +152,1973,15.357 +152,1974,15.053 +152,1975,15.046 +152,1976,14.959 +152,1977,15.235 +152,1978,15.145 +152,1979,15.17 +152,1980,15.475 +152,1981,15.499 +152,1982,15.136 +152,1983,15.512 +152,1984,15.39 +152,1985,15.295 +152,1986,15.324 +152,1987,15.331 +152,1988,15.407 +152,1989,15.289 +152,1990,15.423 +152,1991,15.679 +152,1992,15.381 +152,1993,15.484 +152,1994,15.444 +152,1995,15.44 +152,1996,15.191 +152,1997,15.479 +152,1998,15.961 +152,1999,15.402 +152,2000,15.459 +152,2001,15.542 +152,2002,15.922 +152,2003,15.668 +152,2004,15.398 +152,2005,15.73 +152,2006,15.726 +152,2007,15.664 +152,2008,15.435 +152,2009,15.801 +152,2010,15.708 +152,2011,15.706 +152,2012,15.895 +152,2013,15.734 +152,2014,15.949 +152,2015,15.946 +152,2016,15.996 +152,2017,16.017 +152,2018,15.893 +152,2019,16.002 +152,2020,16.162 +152,2021,16.059 +152,2022,15.944 +152,2023,16.155 +152,2024,NA +153,1940,15.102 +153,1941,15.293 +153,1942,15.107 +153,1943,15.016 +153,1944,15.326 +153,1945,15.176 +153,1946,15.279 +153,1947,14.976 +153,1948,15.161 +153,1949,15.072 +153,1950,15.008 +153,1951,15.252 +153,1952,15.161 +153,1953,15.277 +153,1954,15.199 +153,1955,15.209 +153,1956,14.855 +153,1957,15.297 +153,1958,15.202 +153,1959,15.179 +153,1960,15.157 +153,1961,15.275 +153,1962,15.066 +153,1963,15.236 +153,1964,14.988 +153,1965,15.112 +153,1966,15.242 +153,1967,15.14 +153,1968,15.007 +153,1969,15.142 +153,1970,15.193 +153,1971,14.902 +153,1972,15.154 +153,1973,15.314 +153,1974,15.009 +153,1975,15.067 +153,1976,14.984 +153,1977,15.303 +153,1978,15.129 +153,1979,15.223 +153,1980,15.491 +153,1981,15.499 +153,1982,15.185 +153,1983,15.452 +153,1984,15.424 +153,1985,15.31 +153,1986,15.271 +153,1987,15.392 +153,1988,15.409 +153,1989,15.334 +153,1990,15.458 +153,1991,15.722 +153,1992,15.377 +153,1993,15.48 +153,1994,15.493 +153,1995,15.495 +153,1996,15.207 +153,1997,15.482 +153,1998,16.012 +153,1999,15.457 +153,2000,15.503 +153,2001,15.591 +153,2002,15.933 +153,2003,15.725 +153,2004,15.464 +153,2005,15.736 +153,2006,15.808 +153,2007,15.686 +153,2008,15.491 +153,2009,15.797 +153,2010,15.694 +153,2011,15.732 +153,2012,15.93 +153,2013,15.764 +153,2014,15.892 +153,2015,15.923 +153,2016,16.016 +153,2017,16.008 +153,2018,15.828 +153,2019,16.047 +153,2020,16.175 +153,2021,16.107 +153,2022,15.937 +153,2023,16.16 +153,2024,NA +154,1940,15.014 +154,1941,15.382 +154,1942,15.13 +154,1943,14.993 +154,1944,15.342 +154,1945,15.196 +154,1946,15.294 +154,1947,15.06 +154,1948,15.22 +154,1949,15.077 +154,1950,15.015 +154,1951,15.324 +154,1952,15.154 +154,1953,15.254 +154,1954,15.197 +154,1955,15.257 +154,1956,14.861 +154,1957,15.274 +154,1958,15.25 +154,1959,15.243 +154,1960,15.197 +154,1961,15.3 +154,1962,15.075 +154,1963,15.257 +154,1964,15.017 +154,1965,15.225 +154,1966,15.303 +154,1967,15.169 +154,1968,15.079 +154,1969,15.162 +154,1970,15.234 +154,1971,14.968 +154,1972,15.23 +154,1973,15.29 +154,1974,15.033 +154,1975,15.077 +154,1976,15.013 +154,1977,15.325 +154,1978,15.115 +154,1979,15.258 +154,1980,15.478 +154,1981,15.535 +154,1982,15.245 +154,1983,15.402 +154,1984,15.444 +154,1985,15.268 +154,1986,15.208 +154,1987,15.504 +154,1988,15.429 +154,1989,15.404 +154,1990,15.551 +154,1991,15.778 +154,1992,15.37 +154,1993,15.538 +154,1994,15.502 +154,1995,15.527 +154,1996,15.255 +154,1997,15.507 +154,1998,15.943 +154,1999,15.517 +154,2000,15.589 +154,2001,15.635 +154,2002,15.894 +154,2003,15.754 +154,2004,15.533 +154,2005,15.827 +154,2006,15.908 +154,2007,15.694 +154,2008,15.515 +154,2009,15.781 +154,2010,15.773 +154,2011,15.717 +154,2012,15.9 +154,2013,15.747 +154,2014,15.802 +154,2015,15.955 +154,2016,16.038 +154,2017,16.005 +154,2018,15.824 +154,2019,16.051 +154,2020,16.149 +154,2021,16.164 +154,2022,15.975 +154,2023,16.211 +154,2024,NA +155,1940,14.969 +155,1941,15.376 +155,1942,15.14 +155,1943,15.023 +155,1944,15.358 +155,1945,15.245 +155,1946,15.313 +155,1947,15.121 +155,1948,15.232 +155,1949,15.05 +155,1950,15.035 +155,1951,15.392 +155,1952,15.18 +155,1953,15.316 +155,1954,15.171 +155,1955,15.262 +155,1956,14.926 +155,1957,15.356 +155,1958,15.313 +155,1959,15.352 +155,1960,15.263 +155,1961,15.338 +155,1962,15.056 +155,1963,15.218 +155,1964,15.067 +155,1965,15.195 +155,1966,15.355 +155,1967,15.175 +155,1968,15.086 +155,1969,15.175 +155,1970,15.304 +155,1971,15.009 +155,1972,15.334 +155,1973,15.264 +155,1974,15.048 +155,1975,15.096 +155,1976,14.966 +155,1977,15.44 +155,1978,15.139 +155,1979,15.315 +155,1980,15.504 +155,1981,15.511 +155,1982,15.244 +155,1983,15.398 +155,1984,15.456 +155,1985,15.263 +155,1986,15.184 +155,1987,15.569 +155,1988,15.491 +155,1989,15.436 +155,1990,15.637 +155,1991,15.817 +155,1992,15.332 +155,1993,15.579 +155,1994,15.534 +155,1995,15.577 +155,1996,15.347 +155,1997,15.568 +155,1998,15.908 +155,1999,15.562 +155,2000,15.678 +155,2001,15.666 +155,2002,15.851 +155,2003,15.707 +155,2004,15.578 +155,2005,15.863 +155,2006,15.94 +155,2007,15.665 +155,2008,15.555 +155,2009,15.753 +155,2010,15.855 +155,2011,15.756 +155,2012,15.877 +155,2013,15.708 +155,2014,15.816 +155,2015,16.078 +155,2016,16.1 +155,2017,16.008 +155,2018,15.868 +155,2019,16.082 +155,2020,16.144 +155,2021,16.203 +155,2022,15.952 +155,2023,16.274 +155,2024,NA +156,1940,15.009 +156,1941,15.403 +156,1942,15.181 +156,1943,15.06 +156,1944,15.382 +156,1945,15.218 +156,1946,15.262 +156,1947,15.125 +156,1948,15.255 +156,1949,15.055 +156,1950,15.088 +156,1951,15.463 +156,1952,15.217 +156,1953,15.358 +156,1954,15.155 +156,1955,15.24 +156,1956,15.027 +156,1957,15.394 +156,1958,15.415 +156,1959,15.351 +156,1960,15.278 +156,1961,15.324 +156,1962,15.09 +156,1963,15.254 +156,1964,15.065 +156,1965,15.178 +156,1966,15.428 +156,1967,15.183 +156,1968,15.073 +156,1969,15.192 +156,1970,15.248 +156,1971,15.008 +156,1972,15.442 +156,1973,15.253 +156,1974,15.078 +156,1975,15.162 +156,1976,14.999 +156,1977,15.484 +156,1978,15.2 +156,1979,15.403 +156,1980,15.555 +156,1981,15.534 +156,1982,15.318 +156,1983,15.388 +156,1984,15.459 +156,1985,15.272 +156,1986,15.19 +156,1987,15.578 +156,1988,15.559 +156,1989,15.393 +156,1990,15.65 +156,1991,15.802 +156,1992,15.329 +156,1993,15.609 +156,1994,15.621 +156,1995,15.695 +156,1996,15.372 +156,1997,15.695 +156,1998,15.956 +156,1999,15.622 +156,2000,15.741 +156,2001,15.74 +156,2002,15.85 +156,2003,15.695 +156,2004,15.598 +156,2005,15.875 +156,2006,15.905 +156,2007,15.684 +156,2008,15.562 +156,2009,15.806 +156,2010,15.902 +156,2011,15.818 +156,2012,15.894 +156,2013,15.692 +156,2014,15.848 +156,2015,16.153 +156,2016,16.155 +156,2017,16.036 +156,2018,15.886 +156,2019,16.06 +156,2020,16.158 +156,2021,16.179 +156,2022,15.948 +156,2023,16.286 +156,2024,NA +157,1940,15.056 +157,1941,15.436 +157,1942,15.22 +157,1943,15.082 +157,1944,15.468 +157,1945,15.207 +157,1946,15.267 +157,1947,15.165 +157,1948,15.231 +157,1949,15.045 +157,1950,15.148 +157,1951,15.463 +157,1952,15.244 +157,1953,15.345 +157,1954,15.151 +157,1955,15.263 +157,1956,15.069 +157,1957,15.376 +157,1958,15.45 +157,1959,15.332 +157,1960,15.27 +157,1961,15.255 +157,1962,15.145 +157,1963,15.286 +157,1964,15.037 +157,1965,15.165 +157,1966,15.367 +157,1967,15.179 +157,1968,15.059 +157,1969,15.288 +157,1970,15.195 +157,1971,15.024 +157,1972,15.523 +157,1973,15.23 +157,1974,15.097 +157,1975,15.177 +157,1976,15.07 +157,1977,15.556 +157,1978,15.195 +157,1979,15.376 +157,1980,15.568 +157,1981,15.556 +157,1982,15.382 +157,1983,15.381 +157,1984,15.433 +157,1985,15.297 +157,1986,15.204 +157,1987,15.638 +157,1988,15.585 +157,1989,15.353 +157,1990,15.643 +157,1991,15.814 +157,1992,15.35 +157,1993,15.629 +157,1994,15.677 +157,1995,15.713 +157,1996,15.359 +157,1997,15.783 +157,1998,16.046 +157,1999,15.713 +157,2000,15.738 +157,2001,15.757 +157,2002,15.837 +157,2003,15.697 +157,2004,15.679 +157,2005,15.932 +157,2006,15.851 +157,2007,15.742 +157,2008,15.582 +157,2009,15.809 +157,2010,15.923 +157,2011,15.895 +157,2012,15.804 +157,2013,15.7 +157,2014,15.873 +157,2015,16.138 +157,2016,16.183 +157,2017,16.029 +157,2018,15.946 +157,2019,16.068 +157,2020,16.166 +157,2021,16.104 +157,2022,16.044 +157,2023,16.293 +157,2024,NA +158,1940,15.086 +158,1941,15.432 +158,1942,15.33 +158,1943,15.114 +158,1944,15.499 +158,1945,15.184 +158,1946,15.276 +158,1947,15.21 +158,1948,15.191 +158,1949,15.067 +158,1950,15.215 +158,1951,15.441 +158,1952,15.28 +158,1953,15.368 +158,1954,15.141 +158,1955,15.269 +158,1956,15.106 +158,1957,15.377 +158,1958,15.433 +158,1959,15.312 +158,1960,15.286 +158,1961,15.308 +158,1962,15.181 +158,1963,15.261 +158,1964,15.001 +158,1965,15.105 +158,1966,15.332 +158,1967,15.231 +158,1968,15.093 +158,1969,15.348 +158,1970,15.195 +158,1971,15.058 +158,1972,15.537 +158,1973,15.258 +158,1974,15.101 +158,1975,15.142 +158,1976,15.114 +158,1977,15.585 +158,1978,15.224 +158,1979,15.371 +158,1980,15.578 +158,1981,15.587 +158,1982,15.41 +158,1983,15.367 +158,1984,15.41 +158,1985,15.29 +158,1986,15.276 +158,1987,15.69 +158,1988,15.663 +158,1989,15.362 +158,1990,15.642 +158,1991,15.822 +158,1992,15.399 +158,1993,15.665 +158,1994,15.655 +158,1995,15.653 +158,1996,15.447 +158,1997,15.771 +158,1998,16.103 +158,1999,15.773 +158,2000,15.697 +158,2001,15.755 +158,2002,15.82 +158,2003,15.684 +158,2004,15.732 +158,2005,15.95 +158,2006,15.879 +158,2007,15.761 +158,2008,15.671 +158,2009,15.729 +158,2010,15.932 +158,2011,15.978 +158,2012,15.727 +158,2013,15.764 +158,2014,15.892 +158,2015,16.137 +158,2016,16.2 +158,2017,16.007 +158,2018,16.032 +158,2019,16.116 +158,2020,16.131 +158,2021,15.992 +158,2022,16.139 +158,2023,16.384 +158,2024,NA +159,1940,15.09 +159,1941,15.406 +159,1942,15.357 +159,1943,15.083 +159,1944,15.541 +159,1945,15.194 +159,1946,15.242 +159,1947,15.288 +159,1948,15.214 +159,1949,15.077 +159,1950,15.233 +159,1951,15.44 +159,1952,15.331 +159,1953,15.403 +159,1954,15.152 +159,1955,15.255 +159,1956,15.128 +159,1957,15.368 +159,1958,15.395 +159,1959,15.298 +159,1960,15.321 +159,1961,15.363 +159,1962,15.195 +159,1963,15.299 +159,1964,15.068 +159,1965,15.082 +159,1966,15.374 +159,1967,15.268 +159,1968,15.158 +159,1969,15.395 +159,1970,15.219 +159,1971,15.129 +159,1972,15.491 +159,1973,15.327 +159,1974,15.129 +159,1975,15.042 +159,1976,15.21 +159,1977,15.578 +159,1978,15.244 +159,1979,15.384 +159,1980,15.588 +159,1981,15.619 +159,1982,15.465 +159,1983,15.329 +159,1984,15.4 +159,1985,15.335 +159,1986,15.346 +159,1987,15.698 +159,1988,15.732 +159,1989,15.429 +159,1990,15.691 +159,1991,15.796 +159,1992,15.43 +159,1993,15.646 +159,1994,15.562 +159,1995,15.673 +159,1996,15.535 +159,1997,15.774 +159,1998,16.064 +159,1999,15.781 +159,2000,15.68 +159,2001,15.805 +159,2002,15.832 +159,2003,15.658 +159,2004,15.764 +159,2005,15.943 +159,2006,15.937 +159,2007,15.786 +159,2008,15.731 +159,2009,15.644 +159,2010,15.905 +159,2011,16.06 +159,2012,15.76 +159,2013,15.831 +159,2014,15.964 +159,2015,16.177 +159,2016,16.157 +159,2017,16.003 +159,2018,16.131 +159,2019,16.183 +159,2020,16.084 +159,2021,16.021 +159,2022,16.212 +159,2023,16.498 +159,2024,NA +160,1940,15.038 +160,1941,15.426 +160,1942,15.334 +160,1943,15.019 +160,1944,15.524 +160,1945,15.204 +160,1946,15.288 +160,1947,15.363 +160,1948,15.342 +160,1949,15.07 +160,1950,15.226 +160,1951,15.482 +160,1952,15.318 +160,1953,15.444 +160,1954,15.207 +160,1955,15.242 +160,1956,15.096 +160,1957,15.368 +160,1958,15.4 +160,1959,15.353 +160,1960,15.305 +160,1961,15.444 +160,1962,15.201 +160,1963,15.366 +160,1964,15.207 +160,1965,15.159 +160,1966,15.444 +160,1967,15.28 +160,1968,15.148 +160,1969,15.469 +160,1970,15.23 +160,1971,15.164 +160,1972,15.467 +160,1973,15.444 +160,1974,15.1 +160,1975,15.041 +160,1976,15.298 +160,1977,15.549 +160,1978,15.204 +160,1979,15.396 +160,1980,15.621 +160,1981,15.731 +160,1982,15.495 +160,1983,15.389 +160,1984,15.398 +160,1985,15.394 +160,1986,15.365 +160,1987,15.719 +160,1988,15.749 +160,1989,15.481 +160,1990,15.713 +160,1991,15.747 +160,1992,15.424 +160,1993,15.629 +160,1994,15.542 +160,1995,15.748 +160,1996,15.542 +160,1997,15.778 +160,1998,15.997 +160,1999,15.756 +160,2000,15.686 +160,2001,15.847 +160,2002,15.841 +160,2003,15.684 +160,2004,15.812 +160,2005,15.933 +160,2006,15.959 +160,2007,15.865 +160,2008,15.724 +160,2009,15.647 +160,2010,15.87 +160,2011,16.077 +160,2012,15.792 +160,2013,15.821 +160,2014,15.988 +160,2015,16.186 +160,2016,16.161 +160,2017,16.02 +160,2018,16.213 +160,2019,16.25 +160,2020,16.09 +160,2021,16.049 +160,2022,16.251 +160,2023,16.639 +160,2024,NA +161,1940,15.059 +161,1941,15.415 +161,1942,15.342 +161,1943,15.032 +161,1944,15.518 +161,1945,15.211 +161,1946,15.358 +161,1947,15.417 +161,1948,15.423 +161,1949,15.065 +161,1950,15.234 +161,1951,15.557 +161,1952,15.303 +161,1953,15.423 +161,1954,15.255 +161,1955,15.205 +161,1956,15.112 +161,1957,15.337 +161,1958,15.411 +161,1959,15.394 +161,1960,15.298 +161,1961,15.489 +161,1962,15.171 +161,1963,15.39 +161,1964,15.342 +161,1965,15.264 +161,1966,15.467 +161,1967,15.277 +161,1968,15.123 +161,1969,15.439 +161,1970,15.313 +161,1971,15.236 +161,1972,15.477 +161,1973,15.522 +161,1974,15.057 +161,1975,15.067 +161,1976,15.335 +161,1977,15.508 +161,1978,15.153 +161,1979,15.424 +161,1980,15.661 +161,1981,15.773 +161,1982,15.525 +161,1983,15.429 +161,1984,15.412 +161,1985,15.438 +161,1986,15.411 +161,1987,15.75 +161,1988,15.781 +161,1989,15.514 +161,1990,15.735 +161,1991,15.757 +161,1992,15.424 +161,1993,15.625 +161,1994,15.567 +161,1995,15.901 +161,1996,15.577 +161,1997,15.752 +161,1998,16.133 +161,1999,15.673 +161,2000,15.686 +161,2001,15.886 +161,2002,15.903 +161,2003,15.688 +161,2004,15.842 +161,2005,15.982 +161,2006,15.935 +161,2007,15.913 +161,2008,15.715 +161,2009,15.704 +161,2010,15.891 +161,2011,16.032 +161,2012,15.848 +161,2013,15.841 +161,2014,15.984 +161,2015,16.141 +161,2016,16.132 +161,2017,16.032 +161,2018,16.252 +161,2019,16.318 +161,2020,16.163 +161,2021,15.986 +161,2022,16.292 +161,2023,16.7 +161,2024,NA +162,1940,15.139 +162,1941,15.433 +162,1942,15.364 +162,1943,15.06 +162,1944,15.548 +162,1945,15.283 +162,1946,15.337 +162,1947,15.484 +162,1948,15.378 +162,1949,15.067 +162,1950,15.303 +162,1951,15.665 +162,1952,15.298 +162,1953,15.423 +162,1954,15.251 +162,1955,15.167 +162,1956,15.125 +162,1957,15.36 +162,1958,15.404 +162,1959,15.396 +162,1960,15.287 +162,1961,15.506 +162,1962,15.187 +162,1963,15.404 +162,1964,15.419 +162,1965,15.307 +162,1966,15.427 +162,1967,15.299 +162,1968,15.128 +162,1969,15.415 +162,1970,15.388 +162,1971,15.275 +162,1972,15.409 +162,1973,15.57 +162,1974,15.012 +162,1975,15.117 +162,1976,15.334 +162,1977,15.525 +162,1978,15.146 +162,1979,15.456 +162,1980,15.675 +162,1981,15.771 +162,1982,15.567 +162,1983,15.412 +162,1984,15.463 +162,1985,15.438 +162,1986,15.538 +162,1987,15.828 +162,1988,15.832 +162,1989,15.511 +162,1990,15.754 +162,1991,15.832 +162,1992,15.434 +162,1993,15.635 +162,1994,15.603 +162,1995,15.993 +162,1996,15.677 +162,1997,15.768 +162,1998,16.254 +162,1999,15.596 +162,2000,15.684 +162,2001,15.888 +162,2002,15.891 +162,2003,15.711 +162,2004,15.87 +162,2005,16.033 +162,2006,15.958 +162,2007,15.971 +162,2008,15.722 +162,2009,15.729 +162,2010,15.934 +162,2011,15.953 +162,2012,15.872 +162,2013,15.982 +162,2014,16.009 +162,2015,16.129 +162,2016,16.152 +162,2017,16.065 +162,2018,16.265 +162,2019,16.359 +162,2020,16.227 +162,2021,15.943 +162,2022,16.298 +162,2023,16.645 +162,2024,NA +163,1940,15.208 +163,1941,15.524 +163,1942,15.36 +163,1943,15.082 +163,1944,15.548 +163,1945,15.336 +163,1946,15.321 +163,1947,15.507 +163,1948,15.37 +163,1949,15.086 +163,1950,15.334 +163,1951,15.696 +163,1952,15.344 +163,1953,15.492 +163,1954,15.223 +163,1955,15.131 +163,1956,15.135 +163,1957,15.362 +163,1958,15.348 +163,1959,15.386 +163,1960,15.332 +163,1961,15.545 +163,1962,15.167 +163,1963,15.401 +163,1964,15.397 +163,1965,15.325 +163,1966,15.353 +163,1967,15.288 +163,1968,15.213 +163,1969,15.42 +163,1970,15.392 +163,1971,15.251 +163,1972,15.323 +163,1973,15.619 +163,1974,14.975 +163,1975,15.24 +163,1976,15.247 +163,1977,15.563 +163,1978,15.123 +163,1979,15.472 +163,1980,15.668 +163,1981,15.74 +163,1982,15.601 +163,1983,15.367 +163,1984,15.54 +163,1985,15.462 +163,1986,15.618 +163,1987,15.854 +163,1988,15.891 +163,1989,15.487 +163,1990,15.709 +163,1991,15.874 +163,1992,15.507 +163,1993,15.608 +163,1994,15.607 +163,1995,16.009 +163,1996,15.711 +163,1997,15.797 +163,1998,16.274 +163,1999,15.544 +163,2000,15.646 +163,2001,15.902 +163,2002,15.872 +163,2003,15.735 +163,2004,15.803 +163,2005,16.085 +163,2006,16.005 +163,2007,16.014 +163,2008,15.738 +163,2009,15.764 +163,2010,15.985 +163,2011,15.936 +163,2012,15.952 +163,2013,16.107 +163,2014,16.041 +163,2015,16.143 +163,2016,16.143 +163,2017,16.084 +163,2018,16.248 +163,2019,16.384 +163,2020,16.261 +163,2021,15.93 +163,2022,16.245 +163,2023,16.568 +163,2024,NA +164,1940,15.274 +164,1941,15.576 +164,1942,15.395 +164,1943,15.097 +164,1944,15.534 +164,1945,15.339 +164,1946,15.285 +164,1947,15.488 +164,1948,15.306 +164,1949,15.079 +164,1950,15.386 +164,1951,15.723 +164,1952,15.379 +164,1953,15.488 +164,1954,15.237 +164,1955,15.146 +164,1956,15.147 +164,1957,15.324 +164,1958,15.368 +164,1959,15.389 +164,1960,15.406 +164,1961,15.508 +164,1962,15.096 +164,1963,15.427 +164,1964,15.353 +164,1965,15.316 +164,1966,15.332 +164,1967,15.273 +164,1968,15.224 +164,1969,15.44 +164,1970,15.395 +164,1971,15.253 +164,1972,15.331 +164,1973,15.637 +164,1974,14.964 +164,1975,15.314 +164,1976,15.178 +164,1977,15.594 +164,1978,15.152 +164,1979,15.502 +164,1980,15.618 +164,1981,15.769 +164,1982,15.618 +164,1983,15.435 +164,1984,15.553 +164,1985,15.466 +164,1986,15.638 +164,1987,15.87 +164,1988,15.902 +164,1989,15.483 +164,1990,15.7 +164,1991,15.844 +164,1992,15.572 +164,1993,15.61 +164,1994,15.593 +164,1995,16.048 +164,1996,15.74 +164,1997,15.859 +164,1998,16.276 +164,1999,15.558 +164,2000,15.648 +164,2001,15.905 +164,2002,15.889 +164,2003,15.776 +164,2004,15.757 +164,2005,16.112 +164,2006,16.07 +164,2007,16.03 +164,2008,15.742 +164,2009,15.84 +164,2010,16.057 +164,2011,15.949 +164,2012,16.033 +164,2013,16.193 +164,2014,16.053 +164,2015,16.136 +164,2016,16.108 +164,2017,16.113 +164,2018,16.221 +164,2019,16.383 +164,2020,16.287 +164,2021,15.989 +164,2022,16.256 +164,2023,16.539 +164,2024,NA +165,1940,15.331 +165,1941,15.55 +165,1942,15.415 +165,1943,15.141 +165,1944,15.508 +165,1945,15.316 +165,1946,15.271 +165,1947,15.475 +165,1948,15.291 +165,1949,15.086 +165,1950,15.36 +165,1951,15.655 +165,1952,15.401 +165,1953,15.428 +165,1954,15.198 +165,1955,15.157 +165,1956,15.206 +165,1957,15.327 +165,1958,15.453 +165,1959,15.364 +165,1960,15.456 +165,1961,15.481 +165,1962,15.075 +165,1963,15.438 +165,1964,15.382 +165,1965,15.32 +165,1966,15.345 +165,1967,15.288 +165,1968,15.192 +165,1969,15.519 +165,1970,15.485 +165,1971,15.296 +165,1972,15.421 +165,1973,15.642 +165,1974,15.049 +165,1975,15.297 +165,1976,15.141 +165,1977,15.612 +165,1978,15.134 +165,1979,15.505 +165,1980,15.588 +165,1981,15.773 +165,1982,15.62 +165,1983,15.493 +165,1984,15.529 +165,1985,15.475 +165,1986,15.703 +165,1987,15.824 +165,1988,15.893 +165,1989,15.493 +165,1990,15.759 +165,1991,15.869 +165,1992,15.643 +165,1993,15.656 +165,1994,15.628 +165,1995,16.079 +165,1996,15.731 +165,1997,15.875 +165,1998,16.27 +165,1999,15.606 +165,2000,15.694 +165,2001,15.925 +165,2002,15.913 +165,2003,15.786 +165,2004,15.719 +165,2005,16.127 +165,2006,16.133 +165,2007,16.038 +165,2008,15.789 +165,2009,15.976 +165,2010,16.082 +165,2011,15.945 +165,2012,16.149 +165,2013,16.23 +165,2014,15.988 +165,2015,16.128 +165,2016,16.124 +165,2017,16.147 +165,2018,16.138 +165,2019,16.372 +165,2020,16.237 +165,2021,16.064 +165,2022,16.305 +165,2023,16.497 +165,2024,NA +166,1940,15.337 +166,1941,15.509 +166,1942,15.394 +166,1943,15.182 +166,1944,15.522 +166,1945,15.319 +166,1946,15.256 +166,1947,15.488 +166,1948,15.253 +166,1949,15.158 +166,1950,15.363 +166,1951,15.603 +166,1952,15.431 +166,1953,15.416 +166,1954,15.17 +166,1955,15.271 +166,1956,15.251 +166,1957,15.348 +166,1958,15.493 +166,1959,15.33 +166,1960,15.526 +166,1961,15.448 +166,1962,15.157 +166,1963,15.508 +166,1964,15.4 +166,1965,15.44 +166,1966,15.435 +166,1967,15.34 +166,1968,15.155 +166,1969,15.57 +166,1970,15.551 +166,1971,15.287 +166,1972,15.481 +166,1973,15.613 +166,1974,15.146 +166,1975,15.265 +166,1976,15.168 +166,1977,15.647 +166,1978,15.167 +166,1979,15.483 +166,1980,15.599 +166,1981,15.711 +166,1982,15.589 +166,1983,15.589 +166,1984,15.506 +166,1985,15.483 +166,1986,15.701 +166,1987,15.784 +166,1988,15.944 +166,1989,15.54 +166,1990,15.851 +166,1991,15.962 +166,1992,15.703 +166,1993,15.678 +166,1994,15.729 +166,1995,16.038 +166,1996,15.703 +166,1997,15.846 +166,1998,16.271 +166,1999,15.701 +166,2000,15.727 +166,2001,15.919 +166,2002,15.914 +166,2003,15.815 +166,2004,15.781 +166,2005,16.086 +166,2006,16.158 +166,2007,16.006 +166,2008,15.84 +166,2009,15.999 +166,2010,16.1 +166,2011,15.939 +166,2012,16.246 +166,2013,16.149 +166,2014,15.968 +166,2015,16.155 +166,2016,16.136 +166,2017,16.181 +166,2018,16.066 +166,2019,16.364 +166,2020,16.174 +166,2021,16.174 +166,2022,16.393 +166,2023,16.472 +166,2024,NA +167,1940,15.357 +167,1941,15.458 +167,1942,15.428 +167,1943,15.185 +167,1944,15.481 +167,1945,15.398 +167,1946,15.289 +167,1947,15.553 +167,1948,15.233 +167,1949,15.224 +167,1950,15.355 +167,1951,15.615 +167,1952,15.465 +167,1953,15.428 +167,1954,15.189 +167,1955,15.34 +167,1956,15.252 +167,1957,15.451 +167,1958,15.447 +167,1959,15.418 +167,1960,15.535 +167,1961,15.416 +167,1962,15.2 +167,1963,15.539 +167,1964,15.419 +167,1965,15.483 +167,1966,15.467 +167,1967,15.351 +167,1968,15.233 +167,1969,15.615 +167,1970,15.56 +167,1971,15.279 +167,1972,15.579 +167,1973,15.573 +167,1974,15.215 +167,1975,15.234 +167,1976,15.171 +167,1977,15.689 +167,1978,15.276 +167,1979,15.484 +167,1980,15.644 +167,1981,15.649 +167,1982,15.574 +167,1983,15.651 +167,1984,15.507 +167,1985,15.48 +167,1986,15.713 +167,1987,15.778 +167,1988,15.976 +167,1989,15.539 +167,1990,15.853 +167,1991,15.985 +167,1992,15.763 +167,1993,15.718 +167,1994,15.785 +167,1995,16.049 +167,1996,15.707 +167,1997,15.843 +167,1998,16.287 +167,1999,15.765 +167,2000,15.711 +167,2001,15.836 +167,2002,15.898 +167,2003,15.936 +167,2004,15.785 +167,2005,16.103 +167,2006,16.18 +167,2007,15.974 +167,2008,15.809 +167,2009,15.987 +167,2010,16.095 +167,2011,15.998 +167,2012,16.319 +167,2013,16.078 +167,2014,16.008 +167,2015,16.089 +167,2016,16.161 +167,2017,16.231 +167,2018,16.084 +167,2019,16.324 +167,2020,16.199 +167,2021,16.232 +167,2022,16.436 +167,2023,16.495 +167,2024,NA +168,1940,15.323 +168,1941,15.415 +168,1942,15.398 +168,1943,15.179 +168,1944,15.415 +168,1945,15.485 +168,1946,15.329 +168,1947,15.589 +168,1948,15.312 +168,1949,15.248 +168,1950,15.363 +168,1951,15.603 +168,1952,15.456 +168,1953,15.429 +168,1954,15.201 +168,1955,15.354 +168,1956,15.226 +168,1957,15.506 +168,1958,15.375 +168,1959,15.526 +168,1960,15.52 +168,1961,15.325 +168,1962,15.219 +168,1963,15.532 +168,1964,15.378 +168,1965,15.502 +168,1966,15.474 +168,1967,15.407 +168,1968,15.274 +168,1969,15.64 +168,1970,15.596 +168,1971,15.266 +168,1972,15.58 +168,1973,15.533 +168,1974,15.231 +168,1975,15.235 +168,1976,15.194 +168,1977,15.726 +168,1978,15.38 +168,1979,15.489 +168,1980,15.718 +168,1981,15.629 +168,1982,15.547 +168,1983,15.748 +168,1984,15.46 +168,1985,15.479 +168,1986,15.755 +168,1987,15.751 +168,1988,15.944 +168,1989,15.567 +168,1990,15.862 +168,1991,16.089 +168,1992,15.845 +168,1993,15.769 +168,1994,15.791 +168,1995,16.025 +168,1996,15.708 +168,1997,15.862 +168,1998,16.243 +168,1999,15.826 +168,2000,15.727 +168,2001,15.755 +168,2002,15.952 +168,2003,15.938 +168,2004,15.79 +168,2005,16.107 +168,2006,16.156 +168,2007,15.947 +168,2008,15.727 +168,2009,15.961 +168,2010,16.079 +168,2011,16.062 +168,2012,16.341 +168,2013,16.077 +168,2014,16.082 +168,2015,16.025 +168,2016,16.223 +168,2017,16.276 +168,2018,16.128 +168,2019,16.332 +168,2020,16.327 +168,2021,16.212 +168,2022,16.451 +168,2023,16.507 +168,2024,NA +169,1940,15.358 +169,1941,15.419 +169,1942,15.328 +169,1943,15.213 +169,1944,15.351 +169,1945,15.604 +169,1946,15.375 +169,1947,15.606 +169,1948,15.399 +169,1949,15.276 +169,1950,15.324 +169,1951,15.591 +169,1952,15.497 +169,1953,15.467 +169,1954,15.169 +169,1955,15.39 +169,1956,15.203 +169,1957,15.6 +169,1958,15.341 +169,1959,15.603 +169,1960,15.523 +169,1961,15.314 +169,1962,15.25 +169,1963,15.5 +169,1964,15.291 +169,1965,15.445 +169,1966,15.462 +169,1967,15.446 +169,1968,15.383 +169,1969,15.639 +169,1970,15.616 +169,1971,15.239 +169,1972,15.642 +169,1973,15.493 +169,1974,15.214 +169,1975,15.222 +169,1976,15.185 +169,1977,15.748 +169,1978,15.468 +169,1979,15.56 +169,1980,15.798 +169,1981,15.608 +169,1982,15.578 +169,1983,15.862 +169,1984,15.442 +169,1985,15.528 +169,1986,15.794 +169,1987,15.77 +169,1988,15.931 +169,1989,15.558 +169,1990,15.902 +169,1991,16.156 +169,1992,15.899 +169,1993,15.805 +169,1994,15.819 +169,1995,15.978 +169,1996,15.722 +169,1997,15.896 +169,1998,16.193 +169,1999,15.906 +169,2000,15.694 +169,2001,15.74 +169,2002,16.061 +169,2003,15.946 +169,2004,15.878 +169,2005,16.089 +169,2006,16.098 +169,2007,15.923 +169,2008,15.744 +169,2009,15.965 +169,2010,16.101 +169,2011,16.065 +169,2012,16.329 +169,2013,16.058 +169,2014,16.128 +169,2015,16.049 +169,2016,16.253 +169,2017,16.274 +169,2018,16.205 +169,2019,16.347 +169,2020,16.363 +169,2021,16.202 +169,2022,16.401 +169,2023,16.505 +169,2024,NA +170,1940,15.384 +170,1941,15.447 +170,1942,15.272 +170,1943,15.222 +170,1944,15.33 +170,1945,15.665 +170,1946,15.361 +170,1947,15.606 +170,1948,15.482 +170,1949,15.373 +170,1950,15.274 +170,1951,15.586 +170,1952,15.461 +170,1953,15.559 +170,1954,15.141 +170,1955,15.358 +170,1956,15.22 +170,1957,15.652 +170,1958,15.319 +170,1959,15.616 +170,1960,15.465 +170,1961,15.344 +170,1962,15.337 +170,1963,15.493 +170,1964,15.283 +170,1965,15.414 +170,1966,15.452 +170,1967,15.491 +170,1968,15.372 +170,1969,15.669 +170,1970,15.578 +170,1971,15.263 +170,1972,15.676 +170,1973,15.411 +170,1974,15.209 +170,1975,15.309 +170,1976,15.208 +170,1977,15.748 +170,1978,15.549 +170,1979,15.634 +170,1980,15.826 +170,1981,15.629 +170,1982,15.622 +170,1983,15.924 +170,1984,15.44 +170,1985,15.58 +170,1986,15.78 +170,1987,15.77 +170,1988,15.969 +170,1989,15.601 +170,1990,15.948 +170,1991,16.228 +170,1992,15.889 +170,1993,15.797 +170,1994,15.825 +170,1995,15.917 +170,1996,15.743 +170,1997,15.987 +170,1998,16.237 +170,1999,15.928 +170,2000,15.698 +170,2001,15.777 +170,2002,16.087 +170,2003,15.941 +170,2004,15.998 +170,2005,16.107 +170,2006,16.108 +170,2007,15.937 +170,2008,15.765 +170,2009,15.98 +170,2010,16.161 +170,2011,16.092 +170,2012,16.323 +170,2013,16.068 +170,2014,16.139 +170,2015,16.032 +170,2016,16.273 +170,2017,16.258 +170,2018,16.308 +170,2019,16.362 +170,2020,16.401 +170,2021,16.237 +170,2022,16.298 +170,2023,16.503 +170,2024,NA +171,1940,15.419 +171,1941,15.462 +171,1942,15.202 +171,1943,15.241 +171,1944,15.332 +171,1945,15.653 +171,1946,15.31 +171,1947,15.62 +171,1948,15.528 +171,1949,15.393 +171,1950,15.324 +171,1951,15.583 +171,1952,15.464 +171,1953,15.572 +171,1954,15.181 +171,1955,15.342 +171,1956,15.257 +171,1957,15.627 +171,1958,15.307 +171,1959,15.614 +171,1960,15.517 +171,1961,15.365 +171,1962,15.375 +171,1963,15.532 +171,1964,15.324 +171,1965,15.366 +171,1966,15.481 +171,1967,15.533 +171,1968,15.32 +171,1969,15.637 +171,1970,15.58 +171,1971,15.316 +171,1972,15.686 +171,1973,15.462 +171,1974,15.245 +171,1975,15.337 +171,1976,15.238 +171,1977,15.688 +171,1978,15.563 +171,1979,15.707 +171,1980,15.803 +171,1981,15.715 +171,1982,15.631 +171,1983,16.005 +171,1984,15.43 +171,1985,15.601 +171,1986,15.726 +171,1987,15.759 +171,1988,15.991 +171,1989,15.682 +171,1990,15.906 +171,1991,16.188 +171,1992,15.882 +171,1993,15.742 +171,1994,15.829 +171,1995,15.867 +171,1996,15.761 +171,1997,16.062 +171,1998,16.277 +171,1999,15.934 +171,2000,15.735 +171,2001,15.793 +171,2002,16.104 +171,2003,15.93 +171,2004,16.053 +171,2005,16.129 +171,2006,16.117 +171,2007,15.955 +171,2008,15.78 +171,2009,16.081 +171,2010,16.177 +171,2011,16.124 +171,2012,16.274 +171,2013,16.111 +171,2014,16.117 +171,2015,16.026 +171,2016,16.305 +171,2017,16.265 +171,2018,16.399 +171,2019,16.356 +171,2020,16.511 +171,2021,16.207 +171,2022,16.31 +171,2023,16.499 +171,2024,NA +172,1940,15.375 +172,1941,15.509 +172,1942,15.168 +172,1943,15.278 +172,1944,15.363 +172,1945,15.691 +172,1946,15.288 +172,1947,15.572 +172,1948,15.546 +172,1949,15.455 +172,1950,15.444 +172,1951,15.556 +172,1952,15.472 +172,1953,15.56 +172,1954,15.233 +172,1955,15.322 +172,1956,15.213 +172,1957,15.631 +172,1958,15.371 +172,1959,15.584 +172,1960,15.542 +172,1961,15.448 +172,1962,15.42 +172,1963,15.424 +172,1964,15.372 +172,1965,15.372 +172,1966,15.504 +172,1967,15.533 +172,1968,15.327 +172,1969,15.631 +172,1970,15.674 +172,1971,15.321 +172,1972,15.616 +172,1973,15.49 +172,1974,15.311 +172,1975,15.343 +172,1976,15.299 +172,1977,15.685 +172,1978,15.526 +172,1979,15.74 +172,1980,15.772 +172,1981,15.787 +172,1982,15.576 +172,1983,16.07 +172,1984,15.402 +172,1985,15.586 +172,1986,15.657 +172,1987,15.815 +172,1988,16.048 +172,1989,15.674 +172,1990,15.883 +172,1991,16.143 +172,1992,15.882 +172,1993,15.706 +172,1994,15.871 +172,1995,15.844 +172,1996,15.75 +172,1997,16.125 +172,1998,16.271 +172,1999,15.919 +172,2000,15.781 +172,2001,15.803 +172,2002,16.195 +172,2003,15.922 +172,2004,16.071 +172,2005,16.201 +172,2006,16.1 +172,2007,15.999 +172,2008,15.768 +172,2009,16.101 +172,2010,16.169 +172,2011,16.129 +172,2012,16.185 +172,2013,16.167 +172,2014,16.107 +172,2015,16.102 +172,2016,16.298 +172,2017,16.259 +172,2018,16.416 +172,2019,16.332 +172,2020,16.558 +172,2021,16.199 +172,2022,16.332 +172,2023,16.43 +172,2024,NA +173,1940,15.362 +173,1941,15.567 +173,1942,15.17 +173,1943,15.342 +173,1944,15.439 +173,1945,15.712 +173,1946,15.336 +173,1947,15.604 +173,1948,15.513 +173,1949,15.491 +173,1950,15.493 +173,1951,15.488 +173,1952,15.485 +173,1953,15.578 +173,1954,15.284 +173,1955,15.334 +173,1956,15.209 +173,1957,15.637 +173,1958,15.462 +173,1959,15.555 +173,1960,15.545 +173,1961,15.553 +173,1962,15.449 +173,1963,15.37 +173,1964,15.385 +173,1965,15.355 +173,1966,15.49 +173,1967,15.518 +173,1968,15.32 +173,1969,15.618 +173,1970,15.65 +173,1971,15.382 +173,1972,15.577 +173,1973,15.548 +173,1974,15.342 +173,1975,15.36 +173,1976,15.36 +173,1977,15.666 +173,1978,15.536 +173,1979,15.716 +173,1980,15.765 +173,1981,15.858 +173,1982,15.559 +173,1983,16.077 +173,1984,15.42 +173,1985,15.611 +173,1986,15.651 +173,1987,15.827 +173,1988,16.039 +173,1989,15.688 +173,1990,15.867 +173,1991,16.137 +173,1992,15.894 +173,1993,15.685 +173,1994,15.879 +173,1995,15.867 +173,1996,15.724 +173,1997,16.205 +173,1998,16.219 +173,1999,15.935 +173,2000,15.789 +173,2001,15.814 +173,2002,16.237 +173,2003,15.905 +173,2004,16.094 +173,2005,16.195 +173,2006,16.079 +173,2007,16.072 +173,2008,15.79 +173,2009,16.153 +173,2010,16.178 +173,2011,16.141 +173,2012,16.196 +173,2013,16.256 +173,2014,16.15 +173,2015,16.189 +173,2016,16.257 +173,2017,16.25 +173,2018,16.436 +173,2019,16.349 +173,2020,16.559 +173,2021,16.234 +173,2022,16.352 +173,2023,16.457 +173,2024,NA +174,1940,15.424 +174,1941,15.593 +174,1942,15.193 +174,1943,15.399 +174,1944,15.489 +174,1945,15.766 +174,1946,15.355 +174,1947,15.627 +174,1948,15.48 +174,1949,15.519 +174,1950,15.486 +174,1951,15.477 +174,1952,15.515 +174,1953,15.537 +174,1954,15.265 +174,1955,15.301 +174,1956,15.255 +174,1957,15.637 +174,1958,15.44 +174,1959,15.507 +174,1960,15.569 +174,1961,15.567 +174,1962,15.497 +174,1963,15.4 +174,1964,15.434 +174,1965,15.298 +174,1966,15.491 +174,1967,15.494 +174,1968,15.38 +174,1969,15.651 +174,1970,15.607 +174,1971,15.434 +174,1972,15.568 +174,1973,15.647 +174,1974,15.378 +174,1975,15.375 +174,1976,15.391 +174,1977,15.619 +174,1978,15.577 +174,1979,15.702 +174,1980,15.795 +174,1981,15.863 +174,1982,15.479 +174,1983,16.026 +174,1984,15.442 +174,1985,15.631 +174,1986,15.651 +174,1987,15.802 +174,1988,16.003 +174,1989,15.7 +174,1990,15.856 +174,1991,16.162 +174,1992,15.885 +174,1993,15.623 +174,1994,15.872 +174,1995,15.905 +174,1996,15.69 +174,1997,16.243 +174,1998,16.138 +174,1999,15.907 +174,2000,15.816 +174,2001,15.836 +174,2002,16.153 +174,2003,15.937 +174,2004,16.106 +174,2005,16.169 +174,2006,16.107 +174,2007,16.098 +174,2008,15.78 +174,2009,16.156 +174,2010,16.188 +174,2011,16.127 +174,2012,16.171 +174,2013,16.322 +174,2014,16.197 +174,2015,16.243 +174,2016,16.251 +174,2017,16.292 +174,2018,16.396 +174,2019,16.359 +174,2020,16.532 +174,2021,16.22 +174,2022,16.41 +174,2023,16.507 +174,2024,NA +175,1940,15.455 +175,1941,15.647 +175,1942,15.227 +175,1943,15.413 +175,1944,15.552 +175,1945,15.77 +175,1946,15.413 +175,1947,15.652 +175,1948,15.494 +175,1949,15.527 +175,1950,15.498 +175,1951,15.474 +175,1952,15.618 +175,1953,15.494 +175,1954,15.29 +175,1955,15.258 +175,1956,15.252 +175,1957,15.692 +175,1958,15.509 +175,1959,15.519 +175,1960,15.585 +175,1961,15.673 +175,1962,15.472 +175,1963,15.434 +175,1964,15.493 +175,1965,15.312 +175,1966,15.471 +175,1967,15.486 +175,1968,15.452 +175,1969,15.67 +175,1970,15.574 +175,1971,15.406 +175,1972,15.631 +175,1973,15.719 +175,1974,15.424 +175,1975,15.402 +175,1976,15.382 +175,1977,15.655 +175,1978,15.553 +175,1979,15.697 +175,1980,15.876 +175,1981,15.848 +175,1982,15.486 +175,1983,15.983 +175,1984,15.472 +175,1985,15.694 +175,1986,15.595 +175,1987,15.813 +175,1988,15.917 +175,1989,15.708 +175,1990,15.85 +175,1991,16.102 +175,1992,15.865 +175,1993,15.624 +175,1994,15.903 +175,1995,15.921 +175,1996,15.686 +175,1997,16.257 +175,1998,16.099 +175,1999,15.869 +175,2000,15.802 +175,2001,15.851 +175,2002,16.077 +175,2003,15.98 +175,2004,16.094 +175,2005,16.1 +175,2006,16.16 +175,2007,16.108 +175,2008,15.779 +175,2009,16.198 +175,2010,16.2 +175,2011,16.086 +175,2012,16.141 +175,2013,16.375 +175,2014,16.257 +175,2015,16.264 +175,2016,16.334 +175,2017,16.302 +175,2018,16.386 +175,2019,16.365 +175,2020,16.552 +175,2021,16.264 +175,2022,16.484 +175,2023,16.541 +175,2024,NA +176,1940,15.524 +176,1941,15.648 +176,1942,15.278 +176,1943,15.395 +176,1944,15.605 +176,1945,15.759 +176,1946,15.403 +176,1947,15.631 +176,1948,15.538 +176,1949,15.543 +176,1950,15.54 +176,1951,15.416 +176,1952,15.742 +176,1953,15.52 +176,1954,15.352 +176,1955,15.265 +176,1956,15.266 +176,1957,15.759 +176,1958,15.555 +176,1959,15.581 +176,1960,15.504 +176,1961,15.752 +176,1962,15.563 +176,1963,15.57 +176,1964,15.513 +176,1965,15.266 +176,1966,15.502 +176,1967,15.467 +176,1968,15.547 +176,1969,15.646 +176,1970,15.544 +176,1971,15.316 +176,1972,15.64 +176,1973,15.685 +176,1974,15.456 +176,1975,15.489 +176,1976,15.446 +176,1977,15.666 +176,1978,15.523 +176,1979,15.716 +176,1980,15.915 +176,1981,15.824 +176,1982,15.579 +176,1983,16.001 +176,1984,15.551 +176,1985,15.751 +176,1986,15.502 +176,1987,15.828 +176,1988,15.806 +176,1989,15.696 +176,1990,15.85 +176,1991,16.106 +176,1992,15.852 +176,1993,15.62 +176,1994,15.903 +176,1995,15.946 +176,1996,15.754 +176,1997,16.182 +176,1998,16.113 +176,1999,15.809 +176,2000,15.843 +176,2001,15.932 +176,2002,16.106 +176,2003,15.977 +176,2004,16.146 +176,2005,16.038 +176,2006,16.183 +176,2007,16.123 +176,2008,15.783 +176,2009,16.177 +176,2010,16.241 +176,2011,16.094 +176,2012,16.154 +176,2013,16.386 +176,2014,16.263 +176,2015,16.281 +176,2016,16.382 +176,2017,16.287 +176,2018,16.346 +176,2019,16.486 +176,2020,16.585 +176,2021,16.323 +176,2022,16.54 +176,2023,16.638 +176,2024,NA +177,1940,15.589 +177,1941,15.57 +177,1942,15.331 +177,1943,15.384 +177,1944,15.601 +177,1945,15.744 +177,1946,15.431 +177,1947,15.59 +177,1948,15.487 +177,1949,15.567 +177,1950,15.512 +177,1951,15.365 +177,1952,15.767 +177,1953,15.504 +177,1954,15.431 +177,1955,15.322 +177,1956,15.325 +177,1957,15.773 +177,1958,15.492 +177,1959,15.622 +177,1960,15.431 +177,1961,15.806 +177,1962,15.682 +177,1963,15.652 +177,1964,15.532 +177,1965,15.237 +177,1966,15.576 +177,1967,15.464 +177,1968,15.531 +177,1969,15.582 +177,1970,15.552 +177,1971,15.294 +177,1972,15.674 +177,1973,15.627 +177,1974,15.516 +177,1975,15.557 +177,1976,15.428 +177,1977,15.677 +177,1978,15.519 +177,1979,15.704 +177,1980,15.974 +177,1981,15.87 +177,1982,15.727 +177,1983,16.055 +177,1984,15.558 +177,1985,15.802 +177,1986,15.454 +177,1987,15.861 +177,1988,15.785 +177,1989,15.694 +177,1990,15.84 +177,1991,16.168 +177,1992,15.812 +177,1993,15.649 +177,1994,15.812 +177,1995,15.99 +177,1996,15.799 +177,1997,16.135 +177,1998,16.139 +177,1999,15.752 +177,2000,15.866 +177,2001,16.031 +177,2002,16.134 +177,2003,15.966 +177,2004,16.187 +177,2005,16.067 +177,2006,16.224 +177,2007,16.162 +177,2008,15.865 +177,2009,16.219 +177,2010,16.267 +177,2011,16.098 +177,2012,16.187 +177,2013,16.376 +177,2014,16.224 +177,2015,16.328 +177,2016,16.396 +177,2017,16.342 +177,2018,16.353 +177,2019,16.573 +177,2020,16.554 +177,2021,16.372 +177,2022,16.484 +177,2023,16.703 +177,2024,NA +178,1940,15.626 +178,1941,15.58 +178,1942,15.367 +178,1943,15.392 +178,1944,15.505 +178,1945,15.672 +178,1946,15.481 +178,1947,15.614 +178,1948,15.47 +178,1949,15.646 +178,1950,15.525 +178,1951,15.348 +178,1952,15.705 +178,1953,15.483 +178,1954,15.459 +178,1955,15.332 +178,1956,15.375 +178,1957,15.724 +178,1958,15.461 +178,1959,15.63 +178,1960,15.364 +178,1961,15.863 +178,1962,15.69 +178,1963,15.706 +178,1964,15.522 +178,1965,15.296 +178,1966,15.666 +178,1967,15.52 +178,1968,15.504 +178,1969,15.558 +178,1970,15.621 +178,1971,15.322 +178,1972,15.731 +178,1973,15.658 +178,1974,15.661 +178,1975,15.6 +178,1976,15.431 +178,1977,15.633 +178,1978,15.563 +178,1979,15.708 +178,1980,16.02 +178,1981,15.893 +178,1982,15.817 +178,1983,16.086 +178,1984,15.593 +178,1985,15.783 +178,1986,15.507 +178,1987,15.929 +178,1988,15.857 +178,1989,15.713 +178,1990,15.854 +178,1991,16.261 +178,1992,15.762 +178,1993,15.687 +178,1994,15.764 +178,1995,15.995 +178,1996,15.817 +178,1997,16.091 +178,1998,16.148 +178,1999,15.789 +178,2000,15.872 +178,2001,16.103 +178,2002,16.13 +178,2003,15.938 +178,2004,16.153 +178,2005,16.119 +178,2006,16.219 +178,2007,16.161 +178,2008,16.046 +178,2009,16.246 +178,2010,16.246 +178,2011,16.084 +178,2012,16.189 +178,2013,16.399 +178,2014,16.188 +178,2015,16.322 +178,2016,16.469 +178,2017,16.363 +178,2018,16.374 +178,2019,16.571 +178,2020,16.5 +178,2021,16.402 +178,2022,16.436 +178,2023,16.704 +178,2024,NA +179,1940,15.689 +179,1941,15.598 +179,1942,15.389 +179,1943,15.438 +179,1944,15.457 +179,1945,15.609 +179,1946,15.525 +179,1947,15.674 +179,1948,15.461 +179,1949,15.653 +179,1950,15.548 +179,1951,15.297 +179,1952,15.656 +179,1953,15.47 +179,1954,15.439 +179,1955,15.256 +179,1956,15.391 +179,1957,15.719 +179,1958,15.55 +179,1959,15.63 +179,1960,15.362 +179,1961,15.9 +179,1962,15.699 +179,1963,15.769 +179,1964,15.573 +179,1965,15.297 +179,1966,15.704 +179,1967,15.562 +179,1968,15.556 +179,1969,15.615 +179,1970,15.691 +179,1971,15.335 +179,1972,15.79 +179,1973,15.672 +179,1974,15.769 +179,1975,15.652 +179,1976,15.463 +179,1977,15.652 +179,1978,15.64 +179,1979,15.721 +179,1980,16.015 +179,1981,15.859 +179,1982,15.855 +179,1983,16.131 +179,1984,15.561 +179,1985,15.712 +179,1986,15.618 +179,1987,16.008 +179,1988,15.884 +179,1989,15.728 +179,1990,15.893 +179,1991,16.307 +179,1992,15.76 +179,1993,15.737 +179,1994,15.758 +179,1995,16.023 +179,1996,15.886 +179,1997,16.049 +179,1998,16.189 +179,1999,15.82 +179,2000,15.876 +179,2001,16.124 +179,2002,16.205 +179,2003,15.977 +179,2004,16.131 +179,2005,16.151 +179,2006,16.172 +179,2007,16.113 +179,2008,16.164 +179,2009,16.28 +179,2010,16.231 +179,2011,16.05 +179,2012,16.213 +179,2013,16.398 +179,2014,16.173 +179,2015,16.303 +179,2016,16.461 +179,2017,16.339 +179,2018,16.352 +179,2019,16.608 +179,2020,16.535 +179,2021,16.388 +179,2022,16.377 +179,2023,16.705 +179,2024,NA +180,1940,15.683 +180,1941,15.585 +180,1942,15.385 +180,1943,15.511 +180,1944,15.428 +180,1945,15.521 +180,1946,15.496 +180,1947,15.656 +180,1948,15.501 +180,1949,15.672 +180,1950,15.537 +180,1951,15.273 +180,1952,15.621 +180,1953,15.514 +180,1954,15.466 +180,1955,15.228 +180,1956,15.366 +180,1957,15.718 +180,1958,15.665 +180,1959,15.616 +180,1960,15.412 +180,1961,15.881 +180,1962,15.695 +180,1963,15.77 +180,1964,15.635 +180,1965,15.376 +180,1966,15.736 +180,1967,15.599 +180,1968,15.615 +180,1969,15.67 +180,1970,15.756 +180,1971,15.414 +180,1972,15.797 +180,1973,15.648 +180,1974,15.734 +180,1975,15.605 +180,1976,15.518 +180,1977,15.649 +180,1978,15.721 +180,1979,15.726 +180,1980,15.951 +180,1981,15.874 +180,1982,15.859 +180,1983,16.071 +180,1984,15.566 +180,1985,15.683 +180,1986,15.674 +180,1987,16.107 +180,1988,15.896 +180,1989,15.766 +180,1990,15.959 +180,1991,16.282 +180,1992,15.796 +180,1993,15.761 +180,1994,15.816 +180,1995,16.033 +180,1996,15.928 +180,1997,15.977 +180,1998,16.25 +180,1999,15.797 +180,2000,15.86 +180,2001,16.129 +180,2002,16.2 +180,2003,15.943 +180,2004,16.083 +180,2005,16.173 +180,2006,16.144 +180,2007,16.088 +180,2008,16.165 +180,2009,16.333 +180,2010,16.241 +180,2011,16.039 +180,2012,16.297 +180,2013,16.394 +180,2014,16.132 +180,2015,16.345 +180,2016,16.427 +180,2017,16.317 +180,2018,16.372 +180,2019,16.684 +180,2020,16.522 +180,2021,16.413 +180,2022,16.342 +180,2023,16.66 +180,2024,NA +181,1940,15.639 +181,1941,15.548 +181,1942,15.435 +181,1943,15.528 +181,1944,15.494 +181,1945,15.501 +181,1946,15.475 +181,1947,15.577 +181,1948,15.534 +181,1949,15.648 +181,1950,15.548 +181,1951,15.308 +181,1952,15.609 +181,1953,15.571 +181,1954,15.449 +181,1955,15.239 +181,1956,15.371 +181,1957,15.696 +181,1958,15.725 +181,1959,15.603 +181,1960,15.474 +181,1961,15.829 +181,1962,15.693 +181,1963,15.739 +181,1964,15.648 +181,1965,15.463 +181,1966,15.711 +181,1967,15.651 +181,1968,15.645 +181,1969,15.659 +181,1970,15.721 +181,1971,15.448 +181,1972,15.753 +181,1973,15.687 +181,1974,15.706 +181,1975,15.566 +181,1976,15.525 +181,1977,15.631 +181,1978,15.77 +181,1979,15.733 +181,1980,15.919 +181,1981,15.938 +181,1982,15.851 +181,1983,16.014 +181,1984,15.552 +181,1985,15.685 +181,1986,15.671 +181,1987,16.12 +181,1988,15.882 +181,1989,15.804 +181,1990,15.979 +181,1991,16.26 +181,1992,15.831 +181,1993,15.818 +181,1994,15.866 +181,1995,16.076 +181,1996,16.005 +181,1997,15.886 +181,1998,16.269 +181,1999,15.789 +181,2000,15.815 +181,2001,16.147 +181,2002,16.164 +181,2003,15.942 +181,2004,16.074 +181,2005,16.225 +181,2006,16.15 +181,2007,16.107 +181,2008,16.1 +181,2009,16.403 +181,2010,16.276 +181,2011,16.024 +181,2012,16.399 +181,2013,16.331 +181,2014,16.124 +181,2015,16.379 +181,2016,16.443 +181,2017,16.314 +181,2018,16.337 +181,2019,16.687 +181,2020,16.473 +181,2021,16.46 +181,2022,16.338 +181,2023,16.648 +181,2024,NA +182,1940,15.596 +182,1941,15.563 +182,1942,15.471 +182,1943,15.498 +182,1944,15.567 +182,1945,15.56 +182,1946,15.487 +182,1947,15.582 +182,1948,15.593 +182,1949,15.622 +182,1950,15.527 +182,1951,15.342 +182,1952,15.599 +182,1953,15.637 +182,1954,15.451 +182,1955,15.275 +182,1956,15.325 +182,1957,15.662 +182,1958,15.793 +182,1959,15.64 +182,1960,15.553 +182,1961,15.841 +182,1962,15.636 +182,1963,15.688 +182,1964,15.587 +182,1965,15.508 +182,1966,15.671 +182,1967,15.637 +182,1968,15.643 +182,1969,15.64 +182,1970,15.617 +182,1971,15.483 +182,1972,15.718 +182,1973,15.752 +182,1974,15.703 +182,1975,15.558 +182,1976,15.499 +182,1977,15.604 +182,1978,15.693 +182,1979,15.732 +182,1980,15.923 +182,1981,15.962 +182,1982,15.884 +182,1983,15.986 +182,1984,15.535 +182,1985,15.686 +182,1986,15.631 +182,1987,16.059 +182,1988,15.92 +182,1989,15.872 +182,1990,16.003 +182,1991,16.212 +182,1992,15.799 +182,1993,15.921 +182,1994,15.933 +182,1995,16.123 +182,1996,16.023 +182,1997,15.871 +182,1998,16.266 +182,1999,15.785 +182,2000,15.767 +182,2001,16.143 +182,2002,16.172 +182,2003,15.948 +182,2004,16.044 +182,2005,16.259 +182,2006,16.229 +182,2007,16.112 +182,2008,16.046 +182,2009,16.359 +182,2010,16.244 +182,2011,16.045 +182,2012,16.458 +182,2013,16.258 +182,2014,16.104 +182,2015,16.415 +182,2016,16.49 +182,2017,16.338 +182,2018,16.31 +182,2019,16.644 +182,2020,16.529 +182,2021,16.431 +182,2022,16.333 +182,2023,16.585 +182,2024,NA +183,1940,15.581 +183,1941,15.596 +183,1942,15.549 +183,1943,15.488 +183,1944,15.644 +183,1945,15.541 +183,1946,15.493 +183,1947,15.612 +183,1948,15.633 +183,1949,15.622 +183,1950,15.566 +183,1951,15.412 +183,1952,15.581 +183,1953,15.645 +183,1954,15.441 +183,1955,15.317 +183,1956,15.315 +183,1957,15.601 +183,1958,15.808 +183,1959,15.658 +183,1960,15.53 +183,1961,15.816 +183,1962,15.612 +183,1963,15.692 +183,1964,15.579 +183,1965,15.527 +183,1966,15.749 +183,1967,15.616 +183,1968,15.691 +183,1969,15.694 +183,1970,15.631 +183,1971,15.49 +183,1972,15.711 +183,1973,15.772 +183,1974,15.625 +183,1975,15.577 +183,1976,15.492 +183,1977,15.584 +183,1978,15.672 +183,1979,15.708 +183,1980,15.934 +183,1981,15.93 +183,1982,15.844 +183,1983,15.961 +183,1984,15.564 +183,1985,15.672 +183,1986,15.614 +183,1987,16.036 +183,1988,15.925 +183,1989,15.931 +183,1990,15.996 +183,1991,16.132 +183,1992,15.78 +183,1993,16.051 +183,1994,15.92 +183,1995,16.091 +183,1996,16.031 +183,1997,15.911 +183,1998,16.252 +183,1999,15.801 +183,2000,15.839 +183,2001,16.146 +183,2002,16.206 +183,2003,15.948 +183,2004,16.039 +183,2005,16.31 +183,2006,16.278 +183,2007,16.129 +183,2008,15.958 +183,2009,16.334 +183,2010,16.217 +183,2011,16.069 +183,2012,16.423 +183,2013,16.2 +183,2014,16.134 +183,2015,16.39 +183,2016,16.483 +183,2017,16.349 +183,2018,16.336 +183,2019,16.606 +183,2020,16.58 +183,2021,16.425 +183,2022,16.39 +183,2023,16.565 +183,2024,NA +184,1940,15.625 +184,1941,15.607 +184,1942,15.559 +184,1943,15.532 +184,1944,15.643 +184,1945,15.474 +184,1946,15.492 +184,1947,15.647 +184,1948,15.646 +184,1949,15.652 +184,1950,15.599 +184,1951,15.421 +184,1952,15.562 +184,1953,15.629 +184,1954,15.375 +184,1955,15.33 +184,1956,15.367 +184,1957,15.595 +184,1958,15.799 +184,1959,15.595 +184,1960,15.528 +184,1961,15.807 +184,1962,15.605 +184,1963,15.724 +184,1964,15.616 +184,1965,15.575 +184,1966,15.778 +184,1967,15.603 +184,1968,15.711 +184,1969,15.818 +184,1970,15.708 +184,1971,15.494 +184,1972,15.676 +184,1973,15.815 +184,1974,15.597 +184,1975,15.595 +184,1976,15.478 +184,1977,15.594 +184,1978,15.648 +184,1979,15.693 +184,1980,15.916 +184,1981,15.88 +184,1982,15.802 +184,1983,15.944 +184,1984,15.627 +184,1985,15.71 +184,1986,15.635 +184,1987,16.081 +184,1988,15.946 +184,1989,15.912 +184,1990,16.006 +184,1991,16.183 +184,1992,15.874 +184,1993,16.087 +184,1994,15.949 +184,1995,16.072 +184,1996,16.094 +184,1997,15.923 +184,1998,16.287 +184,1999,15.871 +184,2000,15.903 +184,2001,16.12 +184,2002,16.244 +184,2003,15.962 +184,2004,16.065 +184,2005,16.316 +184,2006,16.271 +184,2007,16.139 +184,2008,15.918 +184,2009,16.32 +184,2010,16.167 +184,2011,16.089 +184,2012,16.374 +184,2013,16.204 +184,2014,16.189 +184,2015,16.364 +184,2016,16.472 +184,2017,16.327 +184,2018,16.324 +184,2019,16.559 +184,2020,16.568 +184,2021,16.492 +184,2022,16.42 +184,2023,16.672 +184,2024,NA +185,1940,15.676 +185,1941,15.594 +185,1942,15.537 +185,1943,15.561 +185,1944,15.708 +185,1945,15.506 +185,1946,15.538 +185,1947,15.663 +185,1948,15.658 +185,1949,15.72 +185,1950,15.618 +185,1951,15.423 +185,1952,15.615 +185,1953,15.623 +185,1954,15.366 +185,1955,15.365 +185,1956,15.437 +185,1957,15.676 +185,1958,15.808 +185,1959,15.556 +185,1960,15.568 +185,1961,15.812 +185,1962,15.663 +185,1963,15.77 +185,1964,15.578 +185,1965,15.68 +185,1966,15.77 +185,1967,15.603 +185,1968,15.742 +185,1969,15.917 +185,1970,15.776 +185,1971,15.486 +185,1972,15.655 +185,1973,15.861 +185,1974,15.577 +185,1975,15.626 +185,1976,15.488 +185,1977,15.608 +185,1978,15.599 +185,1979,15.693 +185,1980,15.931 +185,1981,15.905 +185,1982,15.884 +185,1983,15.894 +185,1984,15.625 +185,1985,15.757 +185,1986,15.627 +185,1987,16.117 +185,1988,15.934 +185,1989,15.894 +185,1990,15.933 +185,1991,16.22 +185,1992,15.879 +185,1993,16.037 +185,1994,15.968 +185,1995,16.029 +185,1996,16.106 +185,1997,15.905 +185,1998,16.298 +185,1999,15.949 +185,2000,15.859 +185,2001,16.143 +185,2002,16.271 +185,2003,15.971 +185,2004,16.028 +185,2005,16.308 +185,2006,16.25 +185,2007,16.233 +185,2008,15.938 +185,2009,16.266 +185,2010,16.142 +185,2011,16.142 +185,2012,16.297 +185,2013,16.219 +185,2014,16.216 +185,2015,16.327 +185,2016,16.526 +185,2017,16.326 +185,2018,16.284 +185,2019,16.544 +185,2020,16.532 +185,2021,16.586 +185,2022,16.418 +185,2023,16.873 +185,2024,NA +186,1940,15.759 +186,1941,15.547 +186,1942,15.56 +186,1943,15.558 +186,1944,15.751 +186,1945,15.558 +186,1946,15.551 +186,1947,15.689 +186,1948,15.648 +186,1949,15.788 +186,1950,15.618 +186,1951,15.489 +186,1952,15.671 +186,1953,15.639 +186,1954,15.379 +186,1955,15.399 +186,1956,15.5 +186,1957,15.758 +186,1958,15.797 +186,1959,15.555 +186,1960,15.581 +186,1961,15.888 +186,1962,15.724 +186,1963,15.829 +186,1964,15.508 +186,1965,15.717 +186,1966,15.752 +186,1967,15.597 +186,1968,15.762 +186,1969,15.889 +186,1970,15.826 +186,1971,15.534 +186,1972,15.71 +186,1973,15.864 +186,1974,15.567 +186,1975,15.623 +186,1976,15.522 +186,1977,15.642 +186,1978,15.534 +186,1979,15.658 +186,1980,15.944 +186,1981,15.956 +186,1982,15.948 +186,1983,15.827 +186,1984,15.627 +186,1985,15.791 +186,1986,15.672 +186,1987,16.101 +186,1988,15.906 +186,1989,15.873 +186,1990,15.937 +186,1991,16.183 +186,1992,15.908 +186,1993,16.001 +186,1994,15.96 +186,1995,15.997 +186,1996,16.103 +186,1997,15.901 +186,1998,16.364 +186,1999,15.979 +186,2000,15.844 +186,2001,16.159 +186,2002,16.282 +186,2003,15.999 +186,2004,15.979 +186,2005,16.283 +186,2006,16.227 +186,2007,16.353 +186,2008,15.957 +186,2009,16.238 +186,2010,16.166 +186,2011,16.202 +186,2012,16.245 +186,2013,16.268 +186,2014,16.25 +186,2015,16.265 +186,2016,16.558 +186,2017,16.316 +186,2018,16.357 +186,2019,16.537 +186,2020,16.517 +186,2021,16.619 +186,2022,16.447 +186,2023,17.034 +186,2024,NA +187,1940,15.795 +187,1941,15.509 +187,1942,15.555 +187,1943,15.555 +187,1944,15.686 +187,1945,15.607 +187,1946,15.524 +187,1947,15.713 +187,1948,15.613 +187,1949,15.785 +187,1950,15.614 +187,1951,15.471 +187,1952,15.644 +187,1953,15.632 +187,1954,15.396 +187,1955,15.382 +187,1956,15.517 +187,1957,15.756 +187,1958,15.722 +187,1959,15.57 +187,1960,15.544 +187,1961,15.928 +187,1962,15.731 +187,1963,15.859 +187,1964,15.437 +187,1965,15.66 +187,1966,15.803 +187,1967,15.594 +187,1968,15.737 +187,1969,15.817 +187,1970,15.837 +187,1971,15.56 +187,1972,15.763 +187,1973,15.9 +187,1974,15.55 +187,1975,15.614 +187,1976,15.584 +187,1977,15.606 +187,1978,15.612 +187,1979,15.643 +187,1980,15.959 +187,1981,15.917 +187,1982,15.968 +187,1983,15.775 +187,1984,15.655 +187,1985,15.752 +187,1986,15.687 +187,1987,16.068 +187,1988,15.914 +187,1989,15.833 +187,1990,16.041 +187,1991,16.145 +187,1992,15.905 +187,1993,15.979 +187,1994,15.948 +187,1995,15.996 +187,1996,16.111 +187,1997,15.916 +187,1998,16.415 +187,1999,15.935 +187,2000,15.911 +187,2001,16.044 +187,2002,16.286 +187,2003,16.095 +187,2004,15.955 +187,2005,16.247 +187,2006,16.191 +187,2007,16.437 +187,2008,16.024 +187,2009,16.245 +187,2010,16.211 +187,2011,16.228 +187,2012,16.212 +187,2013,16.266 +187,2014,16.313 +187,2015,16.27 +187,2016,16.536 +187,2017,16.331 +187,2018,16.442 +187,2019,16.543 +187,2020,16.506 +187,2021,16.591 +187,2022,16.483 +187,2023,17.051 +187,2024,NA +188,1940,15.806 +188,1941,15.508 +188,1942,15.567 +188,1943,15.55 +188,1944,15.626 +188,1945,15.657 +188,1946,15.544 +188,1947,15.745 +188,1948,15.645 +188,1949,15.774 +188,1950,15.643 +188,1951,15.466 +188,1952,15.571 +188,1953,15.587 +188,1954,15.464 +188,1955,15.415 +188,1956,15.502 +188,1957,15.713 +188,1958,15.676 +188,1959,15.622 +188,1960,15.533 +188,1961,15.921 +188,1962,15.747 +188,1963,15.856 +188,1964,15.478 +188,1965,15.641 +188,1966,15.827 +188,1967,15.567 +188,1968,15.671 +188,1969,15.739 +188,1970,15.849 +188,1971,15.587 +188,1972,15.82 +188,1973,15.888 +188,1974,15.535 +188,1975,15.63 +188,1976,15.614 +188,1977,15.62 +188,1978,15.661 +188,1979,15.672 +188,1980,15.973 +188,1981,15.899 +188,1982,15.967 +188,1983,15.76 +188,1984,15.675 +188,1985,15.714 +188,1986,15.739 +188,1987,16.063 +188,1988,15.963 +188,1989,15.774 +188,1990,16.136 +188,1991,16.196 +188,1992,15.859 +188,1993,15.933 +188,1994,15.929 +188,1995,16.035 +188,1996,16.096 +188,1997,15.923 +188,1998,16.441 +188,1999,15.959 +188,2000,16.002 +188,2001,15.952 +188,2002,16.302 +188,2003,16.197 +188,2004,15.941 +188,2005,16.24 +188,2006,16.147 +188,2007,16.453 +188,2008,16.089 +188,2009,16.314 +188,2010,16.169 +188,2011,16.279 +188,2012,16.201 +188,2013,16.216 +188,2014,16.309 +188,2015,16.294 +188,2016,16.489 +188,2017,16.376 +188,2018,16.401 +188,2019,16.552 +188,2020,16.479 +188,2021,16.591 +188,2022,16.52 +188,2023,17.074 +188,2024,NA +189,1940,15.846 +189,1941,15.584 +189,1942,15.569 +189,1943,15.566 +189,1944,15.593 +189,1945,15.661 +189,1946,15.552 +189,1947,15.728 +189,1948,15.652 +189,1949,15.776 +189,1950,15.637 +189,1951,15.48 +189,1952,15.582 +189,1953,15.657 +189,1954,15.546 +189,1955,15.418 +189,1956,15.481 +189,1957,15.676 +189,1958,15.694 +189,1959,15.691 +189,1960,15.499 +189,1961,15.866 +189,1962,15.718 +189,1963,15.77 +189,1964,15.594 +189,1965,15.597 +189,1966,15.779 +189,1967,15.612 +189,1968,15.578 +189,1969,15.666 +189,1970,15.849 +189,1971,15.595 +189,1972,15.843 +189,1973,15.86 +189,1974,15.543 +189,1975,15.613 +189,1976,15.587 +189,1977,15.649 +189,1978,15.654 +189,1979,15.711 +189,1980,15.962 +189,1981,15.873 +189,1982,15.964 +189,1983,15.859 +189,1984,15.636 +189,1985,15.706 +189,1986,15.764 +189,1987,16.023 +189,1988,15.987 +189,1989,15.809 +189,1990,16.208 +189,1991,16.193 +189,1992,15.793 +189,1993,15.855 +189,1994,15.908 +189,1995,16.104 +189,1996,16.113 +189,1997,16.005 +189,1998,16.452 +189,1999,16.017 +189,2000,16.033 +189,2001,15.975 +189,2002,16.298 +189,2003,16.241 +189,2004,15.927 +189,2005,16.197 +189,2006,16.085 +189,2007,16.416 +189,2008,16.108 +189,2009,16.351 +189,2010,16.175 +189,2011,16.324 +189,2012,16.175 +189,2013,16.171 +189,2014,16.306 +189,2015,16.296 +189,2016,16.5 +189,2017,16.446 +189,2018,16.347 +189,2019,16.611 +189,2020,16.498 +189,2021,16.598 +189,2022,16.548 +189,2023,17.061 +189,2024,NA +190,1940,15.867 +190,1941,15.645 +190,1942,15.549 +190,1943,15.55 +190,1944,15.609 +190,1945,15.668 +190,1946,15.567 +190,1947,15.706 +190,1948,15.631 +190,1949,15.79 +190,1950,15.588 +190,1951,15.466 +190,1952,15.625 +190,1953,15.646 +190,1954,15.579 +190,1955,15.424 +190,1956,15.493 +190,1957,15.683 +190,1958,15.705 +190,1959,15.75 +190,1960,15.49 +190,1961,15.825 +190,1962,15.722 +190,1963,15.694 +190,1964,15.72 +190,1965,15.595 +190,1966,15.771 +190,1967,15.676 +190,1968,15.54 +190,1969,15.589 +190,1970,15.854 +190,1971,15.619 +190,1972,15.837 +190,1973,15.813 +190,1974,15.522 +190,1975,15.608 +190,1976,15.54 +190,1977,15.742 +190,1978,15.62 +190,1979,15.751 +190,1980,15.919 +190,1981,15.884 +190,1982,15.904 +190,1983,15.885 +190,1984,15.672 +190,1985,15.679 +190,1986,15.771 +190,1987,16.069 +190,1988,16 +190,1989,15.887 +190,1990,16.312 +190,1991,16.187 +190,1992,15.755 +190,1993,15.82 +190,1994,15.923 +190,1995,16.121 +190,1996,16.175 +190,1997,16.073 +190,1998,16.418 +190,1999,16.052 +190,2000,15.964 +190,2001,15.974 +190,2002,16.314 +190,2003,16.264 +190,2004,15.922 +190,2005,16.209 +190,2006,16.1 +190,2007,16.341 +190,2008,16.068 +190,2009,16.257 +190,2010,16.258 +190,2011,16.333 +190,2012,16.193 +190,2013,16.157 +190,2014,16.293 +190,2015,16.202 +190,2016,16.523 +190,2017,16.439 +190,2018,16.345 +190,2019,16.669 +190,2020,16.49 +190,2021,16.603 +190,2022,16.557 +190,2023,17.039 +190,2024,NA +191,1940,15.831 +191,1941,15.739 +191,1942,15.506 +191,1943,15.534 +191,1944,15.618 +191,1945,15.659 +191,1946,15.596 +191,1947,15.69 +191,1948,15.623 +191,1949,15.795 +191,1950,15.607 +191,1951,15.502 +191,1952,15.675 +191,1953,15.6 +191,1954,15.561 +191,1955,15.491 +191,1956,15.474 +191,1957,15.687 +191,1958,15.722 +191,1959,15.774 +191,1960,15.515 +191,1961,15.76 +191,1962,15.746 +191,1963,15.648 +191,1964,15.847 +191,1965,15.612 +191,1966,15.768 +191,1967,15.669 +191,1968,15.543 +191,1969,15.558 +191,1970,15.846 +191,1971,15.599 +191,1972,15.872 +191,1973,15.813 +191,1974,15.546 +191,1975,15.634 +191,1976,15.473 +191,1977,15.764 +191,1978,15.618 +191,1979,15.752 +191,1980,15.895 +191,1981,15.943 +191,1982,15.817 +191,1983,15.89 +191,1984,15.729 +191,1985,15.713 +191,1986,15.806 +191,1987,16.121 +191,1988,15.97 +191,1989,15.928 +191,1990,16.357 +191,1991,16.191 +191,1992,15.777 +191,1993,15.839 +191,1994,15.919 +191,1995,16.167 +191,1996,16.102 +191,1997,16.095 +191,1998,16.352 +191,1999,16.05 +191,2000,15.907 +191,2001,16.021 +191,2002,16.336 +191,2003,16.242 +191,2004,15.961 +191,2005,16.224 +191,2006,16.164 +191,2007,16.244 +191,2008,16.039 +191,2009,16.247 +191,2010,16.262 +191,2011,16.38 +191,2012,16.216 +191,2013,16.177 +191,2014,16.27 +191,2015,16.214 +191,2016,16.507 +191,2017,16.406 +191,2018,16.35 +191,2019,16.739 +191,2020,16.481 +191,2021,16.586 +191,2022,16.562 +191,2023,17.027 +191,2024,NA +192,1940,15.816 +192,1941,15.781 +192,1942,15.508 +192,1943,15.499 +192,1944,15.624 +192,1945,15.605 +192,1946,15.573 +192,1947,15.631 +192,1948,15.647 +192,1949,15.752 +192,1950,15.552 +192,1951,15.559 +192,1952,15.72 +192,1953,15.533 +192,1954,15.561 +192,1955,15.525 +192,1956,15.433 +192,1957,15.643 +192,1958,15.72 +192,1959,15.791 +192,1960,15.486 +192,1961,15.698 +192,1962,15.758 +192,1963,15.564 +192,1964,15.916 +192,1965,15.606 +192,1966,15.804 +192,1967,15.698 +192,1968,15.547 +192,1969,15.595 +192,1970,15.807 +192,1971,15.537 +192,1972,15.965 +192,1973,15.778 +192,1974,15.556 +192,1975,15.723 +192,1976,15.371 +192,1977,15.853 +192,1978,15.644 +192,1979,15.773 +192,1980,15.856 +192,1981,15.995 +192,1982,15.751 +192,1983,15.961 +192,1984,15.753 +192,1985,15.708 +192,1986,15.826 +192,1987,16.155 +192,1988,15.959 +192,1989,15.895 +192,1990,16.303 +192,1991,16.136 +192,1992,15.775 +192,1993,15.914 +192,1994,15.911 +192,1995,16.134 +192,1996,16.039 +192,1997,16.083 +192,1998,16.331 +192,1999,16.049 +192,2000,15.874 +192,2001,16.144 +192,2002,16.291 +192,2003,16.189 +192,2004,15.993 +192,2005,16.181 +192,2006,16.203 +192,2007,16.175 +192,2008,16.065 +192,2009,16.307 +192,2010,16.331 +192,2011,16.431 +192,2012,16.258 +192,2013,16.194 +192,2014,16.226 +192,2015,16.253 +192,2016,16.501 +192,2017,16.368 +192,2018,16.336 +192,2019,16.76 +192,2020,16.544 +192,2021,16.544 +192,2022,16.561 +192,2023,17.029 +192,2024,NA +193,1940,15.894 +193,1941,15.758 +193,1942,15.491 +193,1943,15.425 +193,1944,15.699 +193,1945,15.589 +193,1946,15.613 +193,1947,15.656 +193,1948,15.621 +193,1949,15.772 +193,1950,15.499 +193,1951,15.519 +193,1952,15.816 +193,1953,15.487 +193,1954,15.592 +193,1955,15.54 +193,1956,15.423 +193,1957,15.63 +193,1958,15.66 +193,1959,15.861 +193,1960,15.496 +193,1961,15.723 +193,1962,15.782 +193,1963,15.551 +193,1964,15.952 +193,1965,15.553 +193,1966,15.841 +193,1967,15.772 +193,1968,15.55 +193,1969,15.574 +193,1970,15.755 +193,1971,15.534 +193,1972,15.989 +193,1973,15.763 +193,1974,15.493 +193,1975,15.747 +193,1976,15.369 +193,1977,15.889 +193,1978,15.643 +193,1979,15.789 +193,1980,15.864 +193,1981,16.06 +193,1982,15.746 +193,1983,16.029 +193,1984,15.752 +193,1985,15.637 +193,1986,15.85 +193,1987,16.136 +193,1988,15.99 +193,1989,15.917 +193,1990,16.254 +193,1991,16.128 +193,1992,15.762 +193,1993,15.888 +193,1994,15.929 +193,1995,16.128 +193,1996,15.968 +193,1997,16.083 +193,1998,16.286 +193,1999,16.022 +193,2000,15.863 +193,2001,16.247 +193,2002,16.268 +193,2003,16.144 +193,2004,15.997 +193,2005,16.228 +193,2006,16.26 +193,2007,16.137 +193,2008,16.159 +193,2009,16.365 +193,2010,16.404 +193,2011,16.486 +193,2012,16.268 +193,2013,16.185 +193,2014,16.261 +193,2015,16.297 +193,2016,16.471 +193,2017,16.35 +193,2018,16.343 +193,2019,16.715 +193,2020,16.678 +193,2021,16.535 +193,2022,16.545 +193,2023,16.976 +193,2024,NA +194,1940,15.927 +194,1941,15.695 +194,1942,15.418 +194,1943,15.401 +194,1944,15.67 +194,1945,15.633 +194,1946,15.609 +194,1947,15.733 +194,1948,15.605 +194,1949,15.832 +194,1950,15.458 +194,1951,15.499 +194,1952,15.851 +194,1953,15.541 +194,1954,15.546 +194,1955,15.584 +194,1956,15.432 +194,1957,15.612 +194,1958,15.643 +194,1959,15.85 +194,1960,15.539 +194,1961,15.751 +194,1962,15.731 +194,1963,15.588 +194,1964,15.959 +194,1965,15.564 +194,1966,15.902 +194,1967,15.747 +194,1968,15.579 +194,1969,15.561 +194,1970,15.682 +194,1971,15.512 +194,1972,16.004 +194,1973,15.742 +194,1974,15.494 +194,1975,15.665 +194,1976,15.432 +194,1977,15.891 +194,1978,15.676 +194,1979,15.764 +194,1980,15.903 +194,1981,16.163 +194,1982,15.685 +194,1983,16.061 +194,1984,15.739 +194,1985,15.601 +194,1986,15.912 +194,1987,16.109 +194,1988,16.016 +194,1989,15.999 +194,1990,16.248 +194,1991,16.135 +194,1992,15.795 +194,1993,15.763 +194,1994,15.97 +194,1995,16.122 +194,1996,15.906 +194,1997,16.135 +194,1998,16.254 +194,1999,15.989 +194,2000,15.858 +194,2001,16.33 +194,2002,16.273 +194,2003,16.124 +194,2004,16.034 +194,2005,16.288 +194,2006,16.31 +194,2007,16.097 +194,2008,16.239 +194,2009,16.387 +194,2010,16.372 +194,2011,16.534 +194,2012,16.269 +194,2013,16.174 +194,2014,16.273 +194,2015,16.312 +194,2016,16.516 +194,2017,16.448 +194,2018,16.397 +194,2019,16.68 +194,2020,16.67 +194,2021,16.574 +194,2022,16.5 +194,2023,16.932 +194,2024,NA +195,1940,15.892 +195,1941,15.702 +195,1942,15.425 +195,1943,15.437 +195,1944,15.62 +195,1945,15.683 +195,1946,15.58 +195,1947,15.86 +195,1948,15.604 +195,1949,15.852 +195,1950,15.459 +195,1951,15.539 +195,1952,15.809 +195,1953,15.602 +195,1954,15.62 +195,1955,15.64 +195,1956,15.364 +195,1957,15.632 +195,1958,15.649 +195,1959,15.85 +195,1960,15.583 +195,1961,15.735 +195,1962,15.659 +195,1963,15.613 +195,1964,15.941 +195,1965,15.647 +195,1966,15.864 +195,1967,15.708 +195,1968,15.644 +195,1969,15.586 +195,1970,15.711 +195,1971,15.458 +195,1972,15.977 +195,1973,15.729 +195,1974,15.568 +195,1975,15.602 +195,1976,15.534 +195,1977,15.889 +195,1978,15.732 +195,1979,15.714 +195,1980,15.923 +195,1981,16.208 +195,1982,15.67 +195,1983,16.107 +195,1984,15.736 +195,1985,15.589 +195,1986,15.964 +195,1987,16.162 +195,1988,16.039 +195,1989,16.023 +195,1990,16.254 +195,1991,16.117 +195,1992,15.803 +195,1993,15.721 +195,1994,15.994 +195,1995,16.119 +195,1996,15.915 +195,1997,16.184 +195,1998,16.162 +195,1999,15.929 +195,2000,15.829 +195,2001,16.407 +195,2002,16.292 +195,2003,16.166 +195,2004,16.093 +195,2005,16.332 +195,2006,16.345 +195,2007,16.11 +195,2008,16.278 +195,2009,16.409 +195,2010,16.342 +195,2011,16.52 +195,2012,16.24 +195,2013,16.153 +195,2014,16.294 +195,2015,16.408 +195,2016,16.541 +195,2017,16.503 +195,2018,16.464 +195,2019,16.653 +195,2020,16.641 +195,2021,16.586 +195,2022,16.499 +195,2023,16.859 +195,2024,NA +196,1940,15.811 +196,1941,15.699 +196,1942,15.463 +196,1943,15.439 +196,1944,15.589 +196,1945,15.699 +196,1946,15.568 +196,1947,15.91 +196,1948,15.611 +196,1949,15.814 +196,1950,15.478 +196,1951,15.588 +196,1952,15.782 +196,1953,15.685 +196,1954,15.665 +196,1955,15.595 +196,1956,15.319 +196,1957,15.599 +196,1958,15.71 +196,1959,15.828 +196,1960,15.627 +196,1961,15.674 +196,1962,15.642 +196,1963,15.64 +196,1964,15.914 +196,1965,15.699 +196,1966,15.767 +196,1967,15.695 +196,1968,15.706 +196,1969,15.648 +196,1970,15.758 +196,1971,15.445 +196,1972,15.908 +196,1973,15.735 +196,1974,15.624 +196,1975,15.6 +196,1976,15.507 +196,1977,15.838 +196,1978,15.815 +196,1979,15.706 +196,1980,16.012 +196,1981,16.218 +196,1982,15.711 +196,1983,16.144 +196,1984,15.757 +196,1985,15.618 +196,1986,16.006 +196,1987,16.222 +196,1988,16.036 +196,1989,16.019 +196,1990,16.277 +196,1991,16.104 +196,1992,15.78 +196,1993,15.727 +196,1994,16.056 +196,1995,16.117 +196,1996,15.922 +196,1997,16.141 +196,1998,16.095 +196,1999,15.891 +196,2000,15.876 +196,2001,16.435 +196,2002,16.243 +196,2003,16.192 +196,2004,16.09 +196,2005,16.419 +196,2006,16.325 +196,2007,16.149 +196,2008,16.264 +196,2009,16.385 +196,2010,16.326 +196,2011,16.534 +196,2012,16.23 +196,2013,16.104 +196,2014,16.357 +196,2015,16.404 +196,2016,16.573 +196,2017,16.504 +196,2018,16.528 +196,2019,16.623 +196,2020,16.624 +196,2021,16.555 +196,2022,16.546 +196,2023,16.823 +196,2024,NA +197,1940,15.7 +197,1941,15.671 +197,1942,15.445 +197,1943,15.436 +197,1944,15.633 +197,1945,15.635 +197,1946,15.513 +197,1947,15.877 +197,1948,15.606 +197,1949,15.729 +197,1950,15.421 +197,1951,15.641 +197,1952,15.738 +197,1953,15.747 +197,1954,15.708 +197,1955,15.57 +197,1956,15.341 +197,1957,15.592 +197,1958,15.764 +197,1959,15.747 +197,1960,15.636 +197,1961,15.667 +197,1962,15.628 +197,1963,15.678 +197,1964,15.876 +197,1965,15.696 +197,1966,15.822 +197,1967,15.651 +197,1968,15.719 +197,1969,15.667 +197,1970,15.761 +197,1971,15.512 +197,1972,15.869 +197,1973,15.738 +197,1974,15.618 +197,1975,15.54 +197,1976,15.468 +197,1977,15.802 +197,1978,15.839 +197,1979,15.698 +197,1980,16.001 +197,1981,16.178 +197,1982,15.777 +197,1983,16.055 +197,1984,15.812 +197,1985,15.66 +197,1986,16.025 +197,1987,16.245 +197,1988,16.115 +197,1989,15.989 +197,1990,16.354 +197,1991,16.1 +197,1992,15.731 +197,1993,15.772 +197,1994,16.09 +197,1995,16.1 +197,1996,15.879 +197,1997,16.162 +197,1998,16.112 +197,1999,15.93 +197,2000,15.967 +197,2001,16.406 +197,2002,16.227 +197,2003,16.235 +197,2004,16.03 +197,2005,16.439 +197,2006,16.327 +197,2007,16.183 +197,2008,16.247 +197,2009,16.309 +197,2010,16.329 +197,2011,16.497 +197,2012,16.224 +197,2013,16.052 +197,2014,16.38 +197,2015,16.322 +197,2016,16.614 +197,2017,16.523 +197,2018,16.55 +197,2019,16.634 +197,2020,16.617 +197,2021,16.566 +197,2022,16.589 +197,2023,16.864 +197,2024,NA +198,1940,15.681 +198,1941,15.626 +198,1942,15.471 +198,1943,15.433 +198,1944,15.682 +198,1945,15.617 +198,1946,15.533 +198,1947,15.806 +198,1948,15.595 +198,1949,15.637 +198,1950,15.465 +198,1951,15.64 +198,1952,15.704 +198,1953,15.881 +198,1954,15.666 +198,1955,15.513 +198,1956,15.311 +198,1957,15.609 +198,1958,15.832 +198,1959,15.679 +198,1960,15.645 +198,1961,15.672 +198,1962,15.663 +198,1963,15.793 +198,1964,15.834 +198,1965,15.638 +198,1966,15.873 +198,1967,15.655 +198,1968,15.679 +198,1969,15.65 +198,1970,15.689 +198,1971,15.563 +198,1972,15.802 +198,1973,15.682 +198,1974,15.6 +198,1975,15.457 +198,1976,15.47 +198,1977,15.762 +198,1978,15.81 +198,1979,15.694 +198,1980,16.043 +198,1981,16.163 +198,1982,15.92 +198,1983,15.902 +198,1984,15.835 +198,1985,15.668 +198,1986,16.014 +198,1987,16.224 +198,1988,16.179 +198,1989,16.039 +198,1990,16.364 +198,1991,16.132 +198,1992,15.728 +198,1993,15.788 +198,1994,16.094 +198,1995,16.063 +198,1996,15.842 +198,1997,16.139 +198,1998,16.171 +198,1999,15.932 +198,2000,16.056 +198,2001,16.396 +198,2002,16.229 +198,2003,16.253 +198,2004,15.999 +198,2005,16.409 +198,2006,16.335 +198,2007,16.187 +198,2008,16.233 +198,2009,16.284 +198,2010,16.351 +198,2011,16.496 +198,2012,16.198 +198,2013,16.113 +198,2014,16.378 +198,2015,16.292 +198,2016,16.586 +198,2017,16.485 +198,2018,16.555 +198,2019,16.645 +198,2020,16.593 +198,2021,16.567 +198,2022,16.641 +198,2023,16.904 +198,2024,NA +199,1940,15.71 +199,1941,15.633 +199,1942,15.507 +199,1943,15.426 +199,1944,15.679 +199,1945,15.612 +199,1946,15.597 +199,1947,15.736 +199,1948,15.667 +199,1949,15.579 +199,1950,15.508 +199,1951,15.63 +199,1952,15.673 +199,1953,15.884 +199,1954,15.612 +199,1955,15.498 +199,1956,15.333 +199,1957,15.649 +199,1958,15.806 +199,1959,15.679 +199,1960,15.652 +199,1961,15.637 +199,1962,15.678 +199,1963,15.889 +199,1964,15.808 +199,1965,15.49 +199,1966,15.886 +199,1967,15.69 +199,1968,15.643 +199,1969,15.688 +199,1970,15.673 +199,1971,15.54 +199,1972,15.747 +199,1973,15.682 +199,1974,15.637 +199,1975,15.392 +199,1976,15.47 +199,1977,15.77 +199,1978,15.805 +199,1979,15.765 +199,1980,16.078 +199,1981,16.133 +199,1982,16.027 +199,1983,15.862 +199,1984,15.794 +199,1985,15.611 +199,1986,15.983 +199,1987,16.157 +199,1988,16.252 +199,1989,16.122 +199,1990,16.37 +199,1991,16.209 +199,1992,15.756 +199,1993,15.812 +199,1994,16.101 +199,1995,16.041 +199,1996,15.863 +199,1997,16.125 +199,1998,16.318 +199,1999,15.935 +199,2000,16.108 +199,2001,16.408 +199,2002,16.197 +199,2003,16.282 +199,2004,15.933 +199,2005,16.382 +199,2006,16.283 +199,2007,16.241 +199,2008,16.272 +199,2009,16.283 +199,2010,16.324 +199,2011,16.53 +199,2012,16.212 +199,2013,16.167 +199,2014,16.37 +199,2015,16.354 +199,2016,16.616 +199,2017,16.435 +199,2018,16.564 +199,2019,16.658 +199,2020,16.58 +199,2021,16.576 +199,2022,16.632 +199,2023,16.959 +199,2024,NA +200,1940,15.676 +200,1941,15.652 +200,1942,15.479 +200,1943,15.412 +200,1944,15.699 +200,1945,15.612 +200,1946,15.677 +200,1947,15.664 +200,1948,15.682 +200,1949,15.535 +200,1950,15.606 +200,1951,15.682 +200,1952,15.635 +200,1953,15.852 +200,1954,15.562 +200,1955,15.508 +200,1956,15.434 +200,1957,15.636 +200,1958,15.85 +200,1959,15.665 +200,1960,15.594 +200,1961,15.649 +200,1962,15.679 +200,1963,15.97 +200,1964,15.78 +200,1965,15.461 +200,1966,15.884 +200,1967,15.72 +200,1968,15.621 +200,1969,15.68 +200,1970,15.655 +200,1971,15.519 +200,1972,15.707 +200,1973,15.648 +200,1974,15.625 +200,1975,15.372 +200,1976,15.485 +200,1977,15.765 +200,1978,15.742 +200,1979,15.751 +200,1980,16.071 +200,1981,16.102 +200,1982,16.049 +200,1983,15.871 +200,1984,15.751 +200,1985,15.599 +200,1986,15.913 +200,1987,16.148 +200,1988,16.266 +200,1989,16.121 +200,1990,16.273 +200,1991,16.242 +200,1992,15.741 +200,1993,15.849 +200,1994,16.041 +200,1995,16.09 +200,1996,15.947 +200,1997,16.064 +200,1998,16.377 +200,1999,15.947 +200,2000,16.072 +200,2001,16.441 +200,2002,16.155 +200,2003,16.312 +200,2004,15.864 +200,2005,16.318 +200,2006,16.259 +200,2007,16.239 +200,2008,16.3 +200,2009,16.378 +200,2010,16.294 +200,2011,16.53 +200,2012,16.228 +200,2013,16.173 +200,2014,16.312 +200,2015,16.445 +200,2016,16.665 +200,2017,16.404 +200,2018,16.599 +200,2019,16.674 +200,2020,16.625 +200,2021,16.519 +200,2022,16.618 +200,2023,16.994 +200,2024,NA +201,1940,15.693 +201,1941,15.64 +201,1942,15.448 +201,1943,15.354 +201,1944,15.697 +201,1945,15.589 +201,1946,15.733 +201,1947,15.605 +201,1948,15.621 +201,1949,15.44 +201,1950,15.632 +201,1951,15.679 +201,1952,15.671 +201,1953,15.838 +201,1954,15.54 +201,1955,15.421 +201,1956,15.452 +201,1957,15.649 +201,1958,15.891 +201,1959,15.681 +201,1960,15.575 +201,1961,15.723 +201,1962,15.747 +201,1963,16.052 +201,1964,15.748 +201,1965,15.471 +201,1966,15.851 +201,1967,15.757 +201,1968,15.575 +201,1969,15.682 +201,1970,15.645 +201,1971,15.544 +201,1972,15.706 +201,1973,15.589 +201,1974,15.594 +201,1975,15.359 +201,1976,15.515 +201,1977,15.798 +201,1978,15.721 +201,1979,15.725 +201,1980,16.129 +201,1981,16.03 +201,1982,16.046 +201,1983,15.867 +201,1984,15.722 +201,1985,15.596 +201,1986,15.85 +201,1987,16.161 +201,1988,16.268 +201,1989,16.089 +201,1990,16.202 +201,1991,16.229 +201,1992,15.72 +201,1993,15.871 +201,1994,16 +201,1995,16.147 +201,1996,15.993 +201,1997,15.985 +201,1998,16.421 +201,1999,16.045 +201,2000,16.01 +201,2001,16.451 +201,2002,16.186 +201,2003,16.369 +201,2004,15.882 +201,2005,16.286 +201,2006,16.24 +201,2007,16.182 +201,2008,16.29 +201,2009,16.445 +201,2010,16.296 +201,2011,16.496 +201,2012,16.226 +201,2013,16.15 +201,2014,16.265 +201,2015,16.48 +201,2016,16.676 +201,2017,16.424 +201,2018,16.634 +201,2019,16.709 +201,2020,16.624 +201,2021,16.515 +201,2022,16.628 +201,2023,16.993 +201,2024,NA +202,1940,15.744 +202,1941,15.665 +202,1942,15.473 +202,1943,15.304 +202,1944,15.685 +202,1945,15.614 +202,1946,15.778 +202,1947,15.623 +202,1948,15.544 +202,1949,15.467 +202,1950,15.617 +202,1951,15.642 +202,1952,15.691 +202,1953,15.773 +202,1954,15.58 +202,1955,15.408 +202,1956,15.463 +202,1957,15.654 +202,1958,15.795 +202,1959,15.66 +202,1960,15.611 +202,1961,15.754 +202,1962,15.781 +202,1963,16.104 +202,1964,15.725 +202,1965,15.478 +202,1966,15.831 +202,1967,15.738 +202,1968,15.568 +202,1969,15.669 +202,1970,15.679 +202,1971,15.615 +202,1972,15.709 +202,1973,15.647 +202,1974,15.543 +202,1975,15.389 +202,1976,15.552 +202,1977,15.801 +202,1978,15.755 +202,1979,15.743 +202,1980,16.183 +202,1981,15.958 +202,1982,16.067 +202,1983,15.837 +202,1984,15.746 +202,1985,15.541 +202,1986,15.788 +202,1987,16.155 +202,1988,16.216 +202,1989,16.099 +202,1990,16.157 +202,1991,16.187 +202,1992,15.697 +202,1993,15.897 +202,1994,16.002 +202,1995,16.165 +202,1996,16.013 +202,1997,15.947 +202,1998,16.451 +202,1999,16.094 +202,2000,16.028 +202,2001,16.412 +202,2002,16.245 +202,2003,16.417 +202,2004,15.896 +202,2005,16.265 +202,2006,16.235 +202,2007,16.15 +202,2008,16.268 +202,2009,16.491 +202,2010,16.269 +202,2011,16.434 +202,2012,16.279 +202,2013,16.116 +202,2014,16.304 +202,2015,16.464 +202,2016,16.732 +202,2017,16.458 +202,2018,16.565 +202,2019,16.706 +202,2020,16.59 +202,2021,16.572 +202,2022,16.668 +202,2023,16.988 +202,2024,NA +203,1940,15.786 +203,1941,15.737 +203,1942,15.503 +203,1943,15.338 +203,1944,15.666 +203,1945,15.597 +203,1946,15.8 +203,1947,15.62 +203,1948,15.549 +203,1949,15.471 +203,1950,15.601 +203,1951,15.62 +203,1952,15.671 +203,1953,15.694 +203,1954,15.489 +203,1955,15.509 +203,1956,15.493 +203,1957,15.645 +203,1958,15.737 +203,1959,15.652 +203,1960,15.655 +203,1961,15.702 +203,1962,15.791 +203,1963,15.994 +203,1964,15.818 +203,1965,15.531 +203,1966,15.882 +203,1967,15.709 +203,1968,15.525 +203,1969,15.652 +203,1970,15.619 +203,1971,15.595 +203,1972,15.768 +203,1973,15.669 +203,1974,15.5 +203,1975,15.387 +203,1976,15.583 +203,1977,15.875 +203,1978,15.785 +203,1979,15.77 +203,1980,16.174 +203,1981,15.89 +203,1982,16.045 +203,1983,15.867 +203,1984,15.731 +203,1985,15.533 +203,1986,15.686 +203,1987,16.171 +203,1988,16.122 +203,1989,16.066 +203,1990,16.1 +203,1991,16.126 +203,1992,15.672 +203,1993,15.851 +203,1994,15.985 +203,1995,16.15 +203,1996,16.054 +203,1997,15.931 +203,1998,16.47 +203,1999,16.079 +203,2000,16.035 +203,2001,16.405 +203,2002,16.261 +203,2003,16.395 +203,2004,15.904 +203,2005,16.317 +203,2006,16.196 +203,2007,16.121 +203,2008,16.239 +203,2009,16.52 +203,2010,16.3 +203,2011,16.371 +203,2012,16.376 +203,2013,16.128 +203,2014,16.308 +203,2015,16.408 +203,2016,16.761 +203,2017,16.467 +203,2018,16.552 +203,2019,16.675 +203,2020,16.55 +203,2021,16.585 +203,2022,16.714 +203,2023,16.98 +203,2024,NA +204,1940,15.799 +204,1941,15.748 +204,1942,15.516 +204,1943,15.353 +204,1944,15.655 +204,1945,15.566 +204,1946,15.832 +204,1947,15.653 +204,1948,15.615 +204,1949,15.492 +204,1950,15.524 +204,1951,15.664 +204,1952,15.692 +204,1953,15.702 +204,1954,15.389 +204,1955,15.553 +204,1956,15.53 +204,1957,15.662 +204,1958,15.709 +204,1959,15.657 +204,1960,15.729 +204,1961,15.649 +204,1962,15.731 +204,1963,15.939 +204,1964,15.805 +204,1965,15.579 +204,1966,15.87 +204,1967,15.695 +204,1968,15.517 +204,1969,15.659 +204,1970,15.588 +204,1971,15.504 +204,1972,15.874 +204,1973,15.638 +204,1974,15.546 +204,1975,15.414 +204,1976,15.679 +204,1977,15.94 +204,1978,15.832 +204,1979,15.771 +204,1980,16.148 +204,1981,15.857 +204,1982,15.981 +204,1983,15.919 +204,1984,15.687 +204,1985,15.609 +204,1986,15.637 +204,1987,16.227 +204,1988,16.082 +204,1989,16.065 +204,1990,16.041 +204,1991,16.106 +204,1992,15.657 +204,1993,15.821 +204,1994,15.921 +204,1995,16.097 +204,1996,16.07 +204,1997,15.931 +204,1998,16.475 +204,1999,16.059 +204,2000,16.045 +204,2001,16.365 +204,2002,16.228 +204,2003,16.352 +204,2004,15.907 +204,2005,16.385 +204,2006,16.118 +204,2007,16.158 +204,2008,16.198 +204,2009,16.512 +204,2010,16.318 +204,2011,16.353 +204,2012,16.388 +204,2013,16.149 +204,2014,16.298 +204,2015,16.428 +204,2016,16.746 +204,2017,16.515 +204,2018,16.601 +204,2019,16.637 +204,2020,16.535 +204,2021,16.573 +204,2022,16.739 +204,2023,16.978 +204,2024,NA +205,1940,15.802 +205,1941,15.773 +205,1942,15.492 +205,1943,15.398 +205,1944,15.698 +205,1945,15.547 +205,1946,15.837 +205,1947,15.666 +205,1948,15.684 +205,1949,15.517 +205,1950,15.486 +205,1951,15.67 +205,1952,15.672 +205,1953,15.674 +205,1954,15.351 +205,1955,15.514 +205,1956,15.545 +205,1957,15.623 +205,1958,15.708 +205,1959,15.584 +205,1960,15.686 +205,1961,15.669 +205,1962,15.702 +205,1963,15.879 +205,1964,15.708 +205,1965,15.634 +205,1966,15.835 +205,1967,15.697 +205,1968,15.523 +205,1969,15.663 +205,1970,15.615 +205,1971,15.456 +205,1972,15.862 +205,1973,15.676 +205,1974,15.535 +205,1975,15.473 +205,1976,15.755 +205,1977,15.923 +205,1978,15.837 +205,1979,15.752 +205,1980,16.154 +205,1981,15.819 +205,1982,15.916 +205,1983,15.959 +205,1984,15.74 +205,1985,15.658 +205,1986,15.677 +205,1987,16.291 +205,1988,16.044 +205,1989,16.093 +205,1990,16.054 +205,1991,16.136 +205,1992,15.63 +205,1993,15.821 +205,1994,15.829 +205,1995,16.074 +205,1996,16.023 +205,1997,15.933 +205,1998,16.467 +205,1999,16.086 +205,2000,15.979 +205,2001,16.278 +205,2002,16.236 +205,2003,16.284 +205,2004,15.904 +205,2005,16.454 +205,2006,16.123 +205,2007,16.233 +205,2008,16.204 +205,2009,16.488 +205,2010,16.266 +205,2011,16.327 +205,2012,16.374 +205,2013,16.167 +205,2014,16.29 +205,2015,16.425 +205,2016,16.701 +205,2017,16.583 +205,2018,16.638 +205,2019,16.614 +205,2020,16.529 +205,2021,16.607 +205,2022,16.775 +205,2023,16.97 +205,2024,NA +206,1940,15.791 +206,1941,15.792 +206,1942,15.505 +206,1943,15.467 +206,1944,15.755 +206,1945,15.566 +206,1946,15.82 +206,1947,15.703 +206,1948,15.711 +206,1949,15.564 +206,1950,15.445 +206,1951,15.666 +206,1952,15.685 +206,1953,15.675 +206,1954,15.375 +206,1955,15.511 +206,1956,15.57 +206,1957,15.591 +206,1958,15.756 +206,1959,15.622 +206,1960,15.731 +206,1961,15.682 +206,1962,15.73 +206,1963,15.85 +206,1964,15.674 +206,1965,15.659 +206,1966,15.818 +206,1967,15.764 +206,1968,15.571 +206,1969,15.732 +206,1970,15.687 +206,1971,15.461 +206,1972,15.85 +206,1973,15.74 +206,1974,15.536 +206,1975,15.459 +206,1976,15.783 +206,1977,15.898 +206,1978,15.803 +206,1979,15.721 +206,1980,16.08 +206,1981,15.778 +206,1982,15.89 +206,1983,15.985 +206,1984,15.74 +206,1985,15.715 +206,1986,15.696 +206,1987,16.281 +206,1988,15.963 +206,1989,16.096 +206,1990,16.073 +206,1991,16.179 +206,1992,15.656 +206,1993,15.756 +206,1994,15.826 +206,1995,16.102 +206,1996,16.011 +206,1997,15.981 +206,1998,16.416 +206,1999,16.136 +206,2000,15.996 +206,2001,16.216 +206,2002,16.314 +206,2003,16.174 +206,2004,15.909 +206,2005,16.474 +206,2006,16.151 +206,2007,16.288 +206,2008,16.224 +206,2009,16.39 +206,2010,16.227 +206,2011,16.314 +206,2012,16.374 +206,2013,16.182 +206,2014,16.251 +206,2015,16.431 +206,2016,16.653 +206,2017,16.626 +206,2018,16.653 +206,2019,16.595 +206,2020,16.551 +206,2021,16.597 +206,2022,16.785 +206,2023,16.964 +206,2024,NA +207,1940,15.784 +207,1941,15.77 +207,1942,15.525 +207,1943,15.512 +207,1944,15.778 +207,1945,15.541 +207,1946,15.792 +207,1947,15.679 +207,1948,15.774 +207,1949,15.61 +207,1950,15.394 +207,1951,15.698 +207,1952,15.658 +207,1953,15.794 +207,1954,15.433 +207,1955,15.527 +207,1956,15.542 +207,1957,15.595 +207,1958,15.755 +207,1959,15.621 +207,1960,15.819 +207,1961,15.663 +207,1962,15.701 +207,1963,15.882 +207,1964,15.671 +207,1965,15.614 +207,1966,15.818 +207,1967,15.781 +207,1968,15.612 +207,1969,15.774 +207,1970,15.729 +207,1971,15.526 +207,1972,15.767 +207,1973,15.752 +207,1974,15.519 +207,1975,15.405 +207,1976,15.793 +207,1977,15.893 +207,1978,15.846 +207,1979,15.671 +207,1980,16.068 +207,1981,15.82 +207,1982,15.905 +207,1983,15.955 +207,1984,15.707 +207,1985,15.783 +207,1986,15.639 +207,1987,16.266 +207,1988,15.941 +207,1989,16.053 +207,1990,16.072 +207,1991,16.235 +207,1992,15.743 +207,1993,15.781 +207,1994,15.887 +207,1995,16.082 +207,1996,15.992 +207,1997,16.067 +207,1998,16.332 +207,1999,16.14 +207,2000,16.056 +207,2001,16.134 +207,2002,16.234 +207,2003,16.163 +207,2004,15.94 +207,2005,16.428 +207,2006,16.226 +207,2007,16.325 +207,2008,16.309 +207,2009,16.379 +207,2010,16.228 +207,2011,16.32 +207,2012,16.316 +207,2013,16.233 +207,2014,16.217 +207,2015,16.45 +207,2016,16.676 +207,2017,16.665 +207,2018,16.644 +207,2019,16.581 +207,2020,16.554 +207,2021,16.57 +207,2022,16.763 +207,2023,16.978 +207,2024,NA +208,1940,15.802 +208,1941,15.726 +208,1942,15.515 +208,1943,15.545 +208,1944,15.793 +208,1945,15.525 +208,1946,15.789 +208,1947,15.687 +208,1948,15.761 +208,1949,15.653 +208,1950,15.391 +208,1951,15.645 +208,1952,15.667 +208,1953,15.889 +208,1954,15.437 +208,1955,15.511 +208,1956,15.499 +208,1957,15.63 +208,1958,15.727 +208,1959,15.589 +208,1960,15.892 +208,1961,15.691 +208,1962,15.687 +208,1963,15.903 +208,1964,15.679 +208,1965,15.586 +208,1966,15.823 +208,1967,15.757 +208,1968,15.64 +208,1969,15.779 +208,1970,15.732 +208,1971,15.6 +208,1972,15.748 +208,1973,15.794 +208,1974,15.559 +208,1975,15.366 +208,1976,15.787 +208,1977,15.919 +208,1978,15.852 +208,1979,15.67 +208,1980,16.086 +208,1981,15.891 +208,1982,15.891 +208,1983,15.879 +208,1984,15.664 +208,1985,15.803 +208,1986,15.631 +208,1987,16.207 +208,1988,15.952 +208,1989,16.045 +208,1990,16.11 +208,1991,16.199 +208,1992,15.786 +208,1993,15.87 +208,1994,15.903 +208,1995,16.114 +208,1996,15.946 +208,1997,16.134 +208,1998,16.365 +208,1999,16.179 +208,2000,16.062 +208,2001,16.055 +208,2002,16.282 +208,2003,16.128 +208,2004,15.899 +208,2005,16.331 +208,2006,16.232 +208,2007,16.292 +208,2008,16.393 +208,2009,16.409 +208,2010,16.26 +208,2011,16.333 +208,2012,16.277 +208,2013,16.32 +208,2014,16.275 +208,2015,16.458 +208,2016,16.724 +208,2017,16.68 +208,2018,16.724 +208,2019,16.571 +208,2020,16.533 +208,2021,16.562 +208,2022,16.717 +208,2023,17.011 +208,2024,NA +209,1940,15.778 +209,1941,15.712 +209,1942,15.507 +209,1943,15.6 +209,1944,15.822 +209,1945,15.521 +209,1946,15.77 +209,1947,15.694 +209,1948,15.735 +209,1949,15.701 +209,1950,15.419 +209,1951,15.656 +209,1952,15.727 +209,1953,15.93 +209,1954,15.433 +209,1955,15.466 +209,1956,15.412 +209,1957,15.68 +209,1958,15.712 +209,1959,15.621 +209,1960,15.895 +209,1961,15.714 +209,1962,15.634 +209,1963,15.924 +209,1964,15.665 +209,1965,15.552 +209,1966,15.784 +209,1967,15.772 +209,1968,15.669 +209,1969,15.775 +209,1970,15.68 +209,1971,15.575 +209,1972,15.765 +209,1973,15.783 +209,1974,15.549 +209,1975,15.403 +209,1976,15.766 +209,1977,15.971 +209,1978,15.796 +209,1979,15.686 +209,1980,16.095 +209,1981,15.925 +209,1982,15.916 +209,1983,15.847 +209,1984,15.616 +209,1985,15.797 +209,1986,15.677 +209,1987,16.147 +209,1988,15.972 +209,1989,16.038 +209,1990,16.075 +209,1991,16.147 +209,1992,15.788 +209,1993,15.956 +209,1994,15.953 +209,1995,16.2 +209,1996,15.924 +209,1997,16.213 +209,1998,16.388 +209,1999,16.195 +209,2000,16.063 +209,2001,15.959 +209,2002,16.317 +209,2003,16.108 +209,2004,15.864 +209,2005,16.291 +209,2006,16.264 +209,2007,16.274 +209,2008,16.444 +209,2009,16.421 +209,2010,16.279 +209,2011,16.365 +209,2012,16.307 +209,2013,16.39 +209,2014,16.358 +209,2015,16.482 +209,2016,16.66 +209,2017,16.699 +209,2018,16.736 +209,2019,16.562 +209,2020,16.535 +209,2021,16.535 +209,2022,16.7 +209,2023,16.998 +209,2024,NA +210,1940,15.776 +210,1941,15.738 +210,1942,15.517 +210,1943,15.615 +210,1944,15.826 +210,1945,15.52 +210,1946,15.765 +210,1947,15.683 +210,1948,15.604 +210,1949,15.7 +210,1950,15.43 +210,1951,15.561 +210,1952,15.74 +210,1953,15.954 +210,1954,15.449 +210,1955,15.415 +210,1956,15.424 +210,1957,15.644 +210,1958,15.739 +210,1959,15.679 +210,1960,15.9 +210,1961,15.705 +210,1962,15.598 +210,1963,15.904 +210,1964,15.682 +210,1965,15.55 +210,1966,15.762 +210,1967,15.809 +210,1968,15.739 +210,1969,15.772 +210,1970,15.639 +210,1971,15.562 +210,1972,15.753 +210,1973,15.788 +210,1974,15.569 +210,1975,15.464 +210,1976,15.786 +210,1977,16.003 +210,1978,15.805 +210,1979,15.708 +210,1980,16.123 +210,1981,15.975 +210,1982,15.943 +210,1983,15.863 +210,1984,15.592 +210,1985,15.818 +210,1986,15.686 +210,1987,16.091 +210,1988,15.994 +210,1989,15.989 +210,1990,16.035 +210,1991,16.2 +210,1992,15.756 +210,1993,16.029 +210,1994,15.918 +210,1995,16.276 +210,1996,15.998 +210,1997,16.228 +210,1998,16.39 +210,1999,16.183 +210,2000,16.093 +210,2001,15.927 +210,2002,16.292 +210,2003,16.134 +210,2004,15.911 +210,2005,16.284 +210,2006,16.262 +210,2007,16.222 +210,2008,16.437 +210,2009,16.41 +210,2010,16.304 +210,2011,16.411 +210,2012,16.303 +210,2013,16.373 +210,2014,16.344 +210,2015,16.48 +210,2016,16.572 +210,2017,16.737 +210,2018,16.7 +210,2019,16.578 +210,2020,16.475 +210,2021,16.468 +210,2022,16.706 +210,2023,16.971 +210,2024,NA +211,1940,15.801 +211,1941,15.811 +211,1942,15.496 +211,1943,15.622 +211,1944,15.844 +211,1945,15.465 +211,1946,15.745 +211,1947,15.605 +211,1948,15.515 +211,1949,15.667 +211,1950,15.394 +211,1951,15.506 +211,1952,15.759 +211,1953,15.944 +211,1954,15.507 +211,1955,15.407 +211,1956,15.489 +211,1957,15.628 +211,1958,15.724 +211,1959,15.793 +211,1960,15.871 +211,1961,15.691 +211,1962,15.575 +211,1963,15.818 +211,1964,15.694 +211,1965,15.518 +211,1966,15.819 +211,1967,15.787 +211,1968,15.759 +211,1969,15.789 +211,1970,15.559 +211,1971,15.515 +211,1972,15.734 +211,1973,15.764 +211,1974,15.591 +211,1975,15.526 +211,1976,15.804 +211,1977,16.001 +211,1978,15.841 +211,1979,15.727 +211,1980,16.117 +211,1981,16.071 +211,1982,15.904 +211,1983,15.875 +211,1984,15.617 +211,1985,15.82 +211,1986,15.72 +211,1987,16.075 +211,1988,16.013 +211,1989,15.995 +211,1990,16.054 +211,1991,16.26 +211,1992,15.762 +211,1993,15.98 +211,1994,15.894 +211,1995,16.311 +211,1996,16.078 +211,1997,16.201 +211,1998,16.4 +211,1999,16.195 +211,2000,16.127 +211,2001,16.018 +211,2002,16.276 +211,2003,16.119 +211,2004,15.873 +211,2005,16.302 +211,2006,16.247 +211,2007,16.243 +211,2008,16.399 +211,2009,16.417 +211,2010,16.39 +211,2011,16.388 +211,2012,16.293 +211,2013,16.3 +211,2014,16.323 +211,2015,16.484 +211,2016,16.529 +211,2017,16.721 +211,2018,16.629 +211,2019,16.57 +211,2020,16.458 +211,2021,16.463 +211,2022,16.667 +211,2023,16.948 +211,2024,NA +212,1940,15.874 +212,1941,15.819 +212,1942,15.503 +212,1943,15.616 +212,1944,15.837 +212,1945,15.457 +212,1946,15.743 +212,1947,15.544 +212,1948,15.556 +212,1949,15.659 +212,1950,15.366 +212,1951,15.523 +212,1952,15.715 +212,1953,15.97 +212,1954,15.475 +212,1955,15.398 +212,1956,15.527 +212,1957,15.679 +212,1958,15.696 +212,1959,15.886 +212,1960,15.859 +212,1961,15.664 +212,1962,15.546 +212,1963,15.749 +212,1964,15.668 +212,1965,15.594 +212,1966,15.841 +212,1967,15.775 +212,1968,15.692 +212,1969,15.792 +212,1970,15.57 +212,1971,15.439 +212,1972,15.692 +212,1973,15.716 +212,1974,15.554 +212,1975,15.561 +212,1976,15.776 +212,1977,15.972 +212,1978,15.777 +212,1979,15.814 +212,1980,16.061 +212,1981,16.114 +212,1982,15.869 +212,1983,15.853 +212,1984,15.669 +212,1985,15.793 +212,1986,15.834 +212,1987,16.015 +212,1988,16.009 +212,1989,16.061 +212,1990,16.044 +212,1991,16.305 +212,1992,15.735 +212,1993,15.889 +212,1994,15.913 +212,1995,16.278 +212,1996,16.112 +212,1997,16.162 +212,1998,16.412 +212,1999,16.108 +212,2000,16.174 +212,2001,16.16 +212,2002,16.283 +212,2003,16.086 +212,2004,15.894 +212,2005,16.29 +212,2006,16.259 +212,2007,16.276 +212,2008,16.405 +212,2009,16.418 +212,2010,16.387 +212,2011,16.357 +212,2012,16.212 +212,2013,16.26 +212,2014,16.319 +212,2015,16.544 +212,2016,16.532 +212,2017,16.726 +212,2018,16.568 +212,2019,16.555 +212,2020,16.443 +212,2021,16.512 +212,2022,16.633 +212,2023,16.955 +212,2024,NA +213,1940,15.882 +213,1941,15.824 +213,1942,15.515 +213,1943,15.585 +213,1944,15.823 +213,1945,15.553 +213,1946,15.697 +213,1947,15.541 +213,1948,15.624 +213,1949,15.704 +213,1950,15.317 +213,1951,15.504 +213,1952,15.711 +213,1953,15.9 +213,1954,15.452 +213,1955,15.41 +213,1956,15.545 +213,1957,15.723 +213,1958,15.631 +213,1959,15.897 +213,1960,15.8 +213,1961,15.663 +213,1962,15.579 +213,1963,15.753 +213,1964,15.64 +213,1965,15.692 +213,1966,15.789 +213,1967,15.784 +213,1968,15.64 +213,1969,15.716 +213,1970,15.625 +213,1971,15.372 +213,1972,15.687 +213,1973,15.666 +213,1974,15.596 +213,1975,15.573 +213,1976,15.764 +213,1977,15.963 +213,1978,15.685 +213,1979,15.851 +213,1980,16.068 +213,1981,16.051 +213,1982,15.876 +213,1983,15.873 +213,1984,15.705 +213,1985,15.858 +213,1986,15.887 +213,1987,15.993 +213,1988,15.988 +213,1989,16.05 +213,1990,16.031 +213,1991,16.355 +213,1992,15.722 +213,1993,15.817 +213,1994,15.876 +213,1995,16.236 +213,1996,16.218 +213,1997,16.177 +213,1998,16.405 +213,1999,16.062 +213,2000,16.226 +213,2001,16.266 +213,2002,16.256 +213,2003,16.105 +213,2004,15.894 +213,2005,16.265 +213,2006,16.268 +213,2007,16.284 +213,2008,16.405 +213,2009,16.394 +213,2010,16.318 +213,2011,16.428 +213,2012,16.15 +213,2013,16.282 +213,2014,16.347 +213,2015,16.548 +213,2016,16.619 +213,2017,16.66 +213,2018,16.516 +213,2019,16.568 +213,2020,16.49 +213,2021,16.562 +213,2022,16.701 +213,2023,16.939 +213,2024,NA +214,1940,15.86 +214,1941,15.868 +214,1942,15.528 +214,1943,15.535 +214,1944,15.826 +214,1945,15.632 +214,1946,15.624 +214,1947,15.527 +214,1948,15.652 +214,1949,15.717 +214,1950,15.314 +214,1951,15.548 +214,1952,15.632 +214,1953,15.842 +214,1954,15.427 +214,1955,15.471 +214,1956,15.544 +214,1957,15.711 +214,1958,15.656 +214,1959,15.831 +214,1960,15.754 +214,1961,15.674 +214,1962,15.606 +214,1963,15.797 +214,1964,15.586 +214,1965,15.797 +214,1966,15.836 +214,1967,15.814 +214,1968,15.593 +214,1969,15.608 +214,1970,15.663 +214,1971,15.385 +214,1972,15.709 +214,1973,15.61 +214,1974,15.651 +214,1975,15.605 +214,1976,15.696 +214,1977,15.972 +214,1978,15.608 +214,1979,15.812 +214,1980,16.086 +214,1981,16.05 +214,1982,15.863 +214,1983,15.889 +214,1984,15.725 +214,1985,15.905 +214,1986,15.89 +214,1987,16 +214,1988,15.98 +214,1989,15.996 +214,1990,16.026 +214,1991,16.33 +214,1992,15.621 +214,1993,15.872 +214,1994,15.887 +214,1995,16.224 +214,1996,16.292 +214,1997,16.187 +214,1998,16.393 +214,1999,16.051 +214,2000,16.232 +214,2001,16.275 +214,2002,16.198 +214,2003,16.225 +214,2004,15.962 +214,2005,16.266 +214,2006,16.319 +214,2007,16.33 +214,2008,16.344 +214,2009,16.418 +214,2010,16.215 +214,2011,16.461 +214,2012,16.166 +214,2013,16.291 +214,2014,16.334 +214,2015,16.55 +214,2016,16.639 +214,2017,16.659 +214,2018,16.474 +214,2019,16.543 +214,2020,16.542 +214,2021,16.605 +214,2022,16.71 +214,2023,16.996 +214,2024,NA +215,1940,15.806 +215,1941,15.836 +215,1942,15.494 +215,1943,15.431 +215,1944,15.838 +215,1945,15.692 +215,1946,15.545 +215,1947,15.564 +215,1948,15.625 +215,1949,15.672 +215,1950,15.292 +215,1951,15.63 +215,1952,15.538 +215,1953,15.808 +215,1954,15.393 +215,1955,15.559 +215,1956,15.525 +215,1957,15.685 +215,1958,15.647 +215,1959,15.754 +215,1960,15.752 +215,1961,15.759 +215,1962,15.601 +215,1963,15.871 +215,1964,15.584 +215,1965,15.803 +215,1966,15.89 +215,1967,15.791 +215,1968,15.557 +215,1969,15.553 +215,1970,15.654 +215,1971,15.446 +215,1972,15.724 +215,1973,15.629 +215,1974,15.676 +215,1975,15.567 +215,1976,15.6 +215,1977,15.958 +215,1978,15.602 +215,1979,15.818 +215,1980,16.11 +215,1981,16.114 +215,1982,15.821 +215,1983,15.847 +215,1984,15.75 +215,1985,15.94 +215,1986,15.853 +215,1987,15.991 +215,1988,15.962 +215,1989,16.005 +215,1990,16.027 +215,1991,16.246 +215,1992,15.555 +215,1993,15.959 +215,1994,15.826 +215,1995,16.256 +215,1996,16.293 +215,1997,16.19 +215,1998,16.404 +215,1999,16.103 +215,2000,16.195 +215,2001,16.279 +215,2002,16.134 +215,2003,16.307 +215,2004,16.04 +215,2005,16.309 +215,2006,16.38 +215,2007,16.339 +215,2008,16.306 +215,2009,16.459 +215,2010,16.176 +215,2011,16.477 +215,2012,16.186 +215,2013,16.298 +215,2014,16.34 +215,2015,16.607 +215,2016,16.604 +215,2017,16.643 +215,2018,16.431 +215,2019,16.506 +215,2020,16.589 +215,2021,16.66 +215,2022,16.686 +215,2023,17.018 +215,2024,NA +216,1940,15.726 +216,1941,15.844 +216,1942,15.441 +216,1943,15.37 +216,1944,15.83 +216,1945,15.739 +216,1946,15.527 +216,1947,15.587 +216,1948,15.615 +216,1949,15.653 +216,1950,15.243 +216,1951,15.622 +216,1952,15.45 +216,1953,15.753 +216,1954,15.424 +216,1955,15.592 +216,1956,15.514 +216,1957,15.652 +216,1958,15.621 +216,1959,15.661 +216,1960,15.766 +216,1961,15.761 +216,1962,15.627 +216,1963,15.97 +216,1964,15.571 +216,1965,15.765 +216,1966,15.861 +216,1967,15.775 +216,1968,15.582 +216,1969,15.559 +216,1970,15.644 +216,1971,15.473 +216,1972,15.762 +216,1973,15.683 +216,1974,15.687 +216,1975,15.502 +216,1976,15.6 +216,1977,15.97 +216,1978,15.602 +216,1979,15.808 +216,1980,16.071 +216,1981,16.129 +216,1982,15.832 +216,1983,15.807 +216,1984,15.766 +216,1985,15.992 +216,1986,15.822 +216,1987,16.014 +216,1988,15.943 +216,1989,15.963 +216,1990,16.057 +216,1991,16.242 +216,1992,15.56 +216,1993,15.935 +216,1994,15.77 +216,1995,16.314 +216,1996,16.258 +216,1997,16.201 +216,1998,16.448 +216,1999,16.127 +216,2000,16.084 +216,2001,16.267 +216,2002,16.086 +216,2003,16.32 +216,2004,16.028 +216,2005,16.322 +216,2006,16.422 +216,2007,16.251 +216,2008,16.276 +216,2009,16.446 +216,2010,16.13 +216,2011,16.396 +216,2012,16.229 +216,2013,16.314 +216,2014,16.38 +216,2015,16.555 +216,2016,16.552 +216,2017,16.566 +216,2018,16.412 +216,2019,16.466 +216,2020,16.574 +216,2021,16.608 +216,2022,16.704 +216,2023,17.034 +216,2024,NA +217,1940,15.754 +217,1941,15.855 +217,1942,15.43 +217,1943,15.287 +217,1944,15.75 +217,1945,15.79 +217,1946,15.534 +217,1947,15.644 +217,1948,15.661 +217,1949,15.662 +217,1950,15.301 +217,1951,15.619 +217,1952,15.408 +217,1953,15.737 +217,1954,15.387 +217,1955,15.573 +217,1956,15.475 +217,1957,15.631 +217,1958,15.611 +217,1959,15.646 +217,1960,15.726 +217,1961,15.748 +217,1962,15.646 +217,1963,15.983 +217,1964,15.579 +217,1965,15.61 +217,1966,15.786 +217,1967,15.737 +217,1968,15.615 +217,1969,15.621 +217,1970,15.632 +217,1971,15.433 +217,1972,15.708 +217,1973,15.646 +217,1974,15.686 +217,1975,15.507 +217,1976,15.588 +217,1977,15.957 +217,1978,15.566 +217,1979,15.836 +217,1980,15.983 +217,1981,16.091 +217,1982,15.874 +217,1983,15.846 +217,1984,15.782 +217,1985,15.986 +217,1986,15.83 +217,1987,16.024 +217,1988,15.874 +217,1989,15.856 +217,1990,16.056 +217,1991,16.223 +217,1992,15.591 +217,1993,15.918 +217,1994,15.761 +217,1995,16.281 +217,1996,16.272 +217,1997,16.147 +217,1998,16.553 +217,1999,16.134 +217,2000,16.024 +217,2001,16.303 +217,2002,16.095 +217,2003,16.34 +217,2004,16.003 +217,2005,16.328 +217,2006,16.419 +217,2007,16.229 +217,2008,16.207 +217,2009,16.418 +217,2010,16.132 +217,2011,16.323 +217,2012,16.26 +217,2013,16.354 +217,2014,16.366 +217,2015,16.532 +217,2016,16.536 +217,2017,16.542 +217,2018,16.453 +217,2019,16.487 +217,2020,16.533 +217,2021,16.584 +217,2022,16.7 +217,2023,17.049 +217,2024,NA +218,1940,15.798 +218,1941,15.837 +218,1942,15.369 +218,1943,15.299 +218,1944,15.669 +218,1945,15.82 +218,1946,15.632 +218,1947,15.634 +218,1948,15.627 +218,1949,15.674 +218,1950,15.32 +218,1951,15.63 +218,1952,15.401 +218,1953,15.75 +218,1954,15.371 +218,1955,15.565 +218,1956,15.434 +218,1957,15.621 +218,1958,15.552 +218,1959,15.665 +218,1960,15.726 +218,1961,15.782 +218,1962,15.628 +218,1963,15.929 +218,1964,15.61 +218,1965,15.568 +218,1966,15.689 +218,1967,15.765 +218,1968,15.665 +218,1969,15.626 +218,1970,15.705 +218,1971,15.471 +218,1972,15.663 +218,1973,15.627 +218,1974,15.685 +218,1975,15.469 +218,1976,15.56 +218,1977,15.948 +218,1978,15.594 +218,1979,15.914 +218,1980,15.936 +218,1981,16.088 +218,1982,15.901 +218,1983,15.902 +218,1984,15.798 +218,1985,15.998 +218,1986,15.843 +218,1987,15.918 +218,1988,15.843 +218,1989,15.765 +218,1990,16.012 +218,1991,16.184 +218,1992,15.643 +218,1993,15.991 +218,1994,15.775 +218,1995,16.219 +218,1996,16.233 +218,1997,16.054 +218,1998,16.563 +218,1999,16.074 +218,2000,15.995 +218,2001,16.316 +218,2002,16.1 +218,2003,16.321 +218,2004,16.003 +218,2005,16.314 +218,2006,16.382 +218,2007,16.23 +218,2008,16.204 +218,2009,16.434 +218,2010,16.131 +218,2011,16.315 +218,2012,16.297 +218,2013,16.373 +218,2014,16.332 +218,2015,16.474 +218,2016,16.564 +218,2017,16.562 +218,2018,16.49 +218,2019,16.574 +218,2020,16.548 +218,2021,16.573 +218,2022,16.62 +218,2023,17.022 +218,2024,NA +219,1940,15.78 +219,1941,15.85 +219,1942,15.376 +219,1943,15.335 +219,1944,15.61 +219,1945,15.811 +219,1946,15.636 +219,1947,15.597 +219,1948,15.61 +219,1949,15.706 +219,1950,15.381 +219,1951,15.641 +219,1952,15.404 +219,1953,15.845 +219,1954,15.372 +219,1955,15.582 +219,1956,15.407 +219,1957,15.677 +219,1958,15.51 +219,1959,15.702 +219,1960,15.736 +219,1961,15.706 +219,1962,15.653 +219,1963,15.869 +219,1964,15.646 +219,1965,15.468 +219,1966,15.606 +219,1967,15.714 +219,1968,15.69 +219,1969,15.543 +219,1970,15.779 +219,1971,15.524 +219,1972,15.679 +219,1973,15.605 +219,1974,15.736 +219,1975,15.43 +219,1976,15.471 +219,1977,15.936 +219,1978,15.632 +219,1979,15.985 +219,1980,15.888 +219,1981,16.135 +219,1982,15.962 +219,1983,15.981 +219,1984,15.816 +219,1985,15.994 +219,1986,15.848 +219,1987,15.81 +219,1988,15.859 +219,1989,15.74 +219,1990,15.999 +219,1991,16.139 +219,1992,15.725 +219,1993,15.998 +219,1994,15.769 +219,1995,16.119 +219,1996,16.134 +219,1997,15.997 +219,1998,16.579 +219,1999,16.034 +219,2000,16.003 +219,2001,16.277 +219,2002,16.142 +219,2003,16.336 +219,2004,15.982 +219,2005,16.278 +219,2006,16.373 +219,2007,16.263 +219,2008,16.187 +219,2009,16.403 +219,2010,16.118 +219,2011,16.363 +219,2012,16.319 +219,2013,16.343 +219,2014,16.338 +219,2015,16.462 +219,2016,16.579 +219,2017,16.533 +219,2018,16.497 +219,2019,16.662 +219,2020,16.574 +219,2021,16.533 +219,2022,16.53 +219,2023,16.979 +219,2024,NA +220,1940,15.706 +220,1941,15.844 +220,1942,15.372 +220,1943,15.381 +220,1944,15.603 +220,1945,15.789 +220,1946,15.585 +220,1947,15.551 +220,1948,15.618 +220,1949,15.718 +220,1950,15.441 +220,1951,15.656 +220,1952,15.377 +220,1953,15.897 +220,1954,15.362 +220,1955,15.591 +220,1956,15.381 +220,1957,15.653 +220,1958,15.477 +220,1959,15.704 +220,1960,15.757 +220,1961,15.647 +220,1962,15.685 +220,1963,15.879 +220,1964,15.643 +220,1965,15.417 +220,1966,15.581 +220,1967,15.695 +220,1968,15.685 +220,1969,15.474 +220,1970,15.735 +220,1971,15.558 +220,1972,15.722 +220,1973,15.555 +220,1974,15.715 +220,1975,15.396 +220,1976,15.42 +220,1977,15.931 +220,1978,15.629 +220,1979,16 +220,1980,15.858 +220,1981,16.163 +220,1982,15.943 +220,1983,15.959 +220,1984,15.781 +220,1985,15.92 +220,1986,15.879 +220,1987,15.795 +220,1988,15.877 +220,1989,15.761 +220,1990,15.956 +220,1991,16.097 +220,1992,15.816 +220,1993,15.938 +220,1994,15.777 +220,1995,16.089 +220,1996,16.044 +220,1997,15.985 +220,1998,16.574 +220,1999,15.973 +220,2000,16.002 +220,2001,16.182 +220,2002,16.134 +220,2003,16.294 +220,2004,15.939 +220,2005,16.229 +220,2006,16.373 +220,2007,16.214 +220,2008,16.191 +220,2009,16.294 +220,2010,16.147 +220,2011,16.366 +220,2012,16.358 +220,2013,16.339 +220,2014,16.346 +220,2015,16.466 +220,2016,16.605 +220,2017,16.508 +220,2018,16.511 +220,2019,16.698 +220,2020,16.517 +220,2021,16.512 +220,2022,16.491 +220,2023,16.917 +220,2024,NA +221,1940,15.689 +221,1941,15.891 +221,1942,15.342 +221,1943,15.414 +221,1944,15.613 +221,1945,15.708 +221,1946,15.581 +221,1947,15.528 +221,1948,15.604 +221,1949,15.711 +221,1950,15.484 +221,1951,15.714 +221,1952,15.397 +221,1953,15.913 +221,1954,15.328 +221,1955,15.575 +221,1956,15.321 +221,1957,15.616 +221,1958,15.536 +221,1959,15.728 +221,1960,15.796 +221,1961,15.582 +221,1962,15.677 +221,1963,15.901 +221,1964,15.59 +221,1965,15.418 +221,1966,15.574 +221,1967,15.65 +221,1968,15.649 +221,1969,15.448 +221,1970,15.642 +221,1971,15.598 +221,1972,15.804 +221,1973,15.48 +221,1974,15.709 +221,1975,15.302 +221,1976,15.437 +221,1977,15.888 +221,1978,15.614 +221,1979,16.063 +221,1980,15.877 +221,1981,16.073 +221,1982,15.918 +221,1983,15.904 +221,1984,15.748 +221,1985,15.845 +221,1986,15.85 +221,1987,15.843 +221,1988,15.899 +221,1989,15.776 +221,1990,15.965 +221,1991,16.063 +221,1992,15.792 +221,1993,15.884 +221,1994,15.813 +221,1995,16.033 +221,1996,16.031 +221,1997,15.974 +221,1998,16.573 +221,1999,15.943 +221,2000,16.025 +221,2001,16.162 +221,2002,16.122 +221,2003,16.263 +221,2004,15.945 +221,2005,16.152 +221,2006,16.373 +221,2007,16.183 +221,2008,16.133 +221,2009,16.192 +221,2010,16.157 +221,2011,16.378 +221,2012,16.366 +221,2013,16.391 +221,2014,16.316 +221,2015,16.441 +221,2016,16.648 +221,2017,16.497 +221,2018,16.542 +221,2019,16.686 +221,2020,16.475 +221,2021,16.468 +221,2022,16.491 +221,2023,16.87 +221,2024,NA +222,1940,15.667 +222,1941,15.948 +222,1942,15.353 +222,1943,15.46 +222,1944,15.646 +222,1945,15.688 +222,1946,15.599 +222,1947,15.537 +222,1948,15.585 +222,1949,15.675 +222,1950,15.503 +222,1951,15.732 +222,1952,15.466 +222,1953,15.888 +222,1954,15.32 +222,1955,15.54 +222,1956,15.302 +222,1957,15.588 +222,1958,15.585 +222,1959,15.717 +222,1960,15.745 +222,1961,15.489 +222,1962,15.64 +222,1963,15.876 +222,1964,15.511 +222,1965,15.421 +222,1966,15.565 +222,1967,15.677 +222,1968,15.556 +222,1969,15.485 +222,1970,15.543 +222,1971,15.594 +222,1972,15.768 +222,1973,15.44 +222,1974,15.755 +222,1975,15.352 +222,1976,15.576 +222,1977,15.843 +222,1978,15.584 +222,1979,16.042 +222,1980,15.913 +222,1981,15.983 +222,1982,15.837 +222,1983,15.856 +222,1984,15.771 +222,1985,15.822 +222,1986,15.815 +222,1987,15.876 +222,1988,15.912 +222,1989,15.782 +222,1990,16.01 +222,1991,16.036 +222,1992,15.791 +222,1993,15.874 +222,1994,15.79 +222,1995,15.944 +222,1996,16.011 +222,1997,15.974 +222,1998,16.525 +222,1999,15.943 +222,2000,16.044 +222,2001,16.154 +222,2002,16.108 +222,2003,16.166 +222,2004,15.985 +222,2005,16.117 +222,2006,16.331 +222,2007,16.208 +222,2008,16.06 +222,2009,16.156 +222,2010,16.134 +222,2011,16.382 +222,2012,16.363 +222,2013,16.379 +222,2014,16.301 +222,2015,16.47 +222,2016,16.644 +222,2017,16.516 +222,2018,16.544 +222,2019,16.642 +222,2020,16.464 +222,2021,16.456 +222,2022,16.515 +222,2023,16.843 +222,2024,NA +223,1940,15.72 +223,1941,15.93 +223,1942,15.421 +223,1943,15.515 +223,1944,15.671 +223,1945,15.675 +223,1946,15.586 +223,1947,15.595 +223,1948,15.65 +223,1949,15.655 +223,1950,15.427 +223,1951,15.739 +223,1952,15.502 +223,1953,15.864 +223,1954,15.254 +223,1955,15.565 +223,1956,15.266 +223,1957,15.613 +223,1958,15.608 +223,1959,15.728 +223,1960,15.705 +223,1961,15.468 +223,1962,15.579 +223,1963,15.798 +223,1964,15.464 +223,1965,15.388 +223,1966,15.561 +223,1967,15.641 +223,1968,15.524 +223,1969,15.513 +223,1970,15.469 +223,1971,15.593 +223,1972,15.802 +223,1973,15.415 +223,1974,15.713 +223,1975,15.378 +223,1976,15.619 +223,1977,15.806 +223,1978,15.558 +223,1979,15.983 +223,1980,15.937 +223,1981,15.96 +223,1982,15.742 +223,1983,15.865 +223,1984,15.767 +223,1985,15.79 +223,1986,15.803 +223,1987,15.868 +223,1988,15.914 +223,1989,15.804 +223,1990,16.043 +223,1991,15.988 +223,1992,15.782 +223,1993,15.855 +223,1994,15.743 +223,1995,15.899 +223,1996,16.006 +223,1997,15.995 +223,1998,16.559 +223,1999,15.987 +223,2000,16.006 +223,2001,16.134 +223,2002,16.13 +223,2003,16.106 +223,2004,16.021 +223,2005,16.144 +223,2006,16.266 +223,2007,16.172 +223,2008,16.023 +223,2009,16.136 +223,2010,16.087 +223,2011,16.391 +223,2012,16.332 +223,2013,16.372 +223,2014,16.343 +223,2015,16.491 +223,2016,16.622 +223,2017,16.585 +223,2018,16.559 +223,2019,16.572 +223,2020,16.494 +223,2021,16.473 +223,2022,16.517 +223,2023,16.838 +223,2024,NA +224,1940,15.776 +224,1941,15.864 +224,1942,15.383 +224,1943,15.498 +224,1944,15.699 +224,1945,15.704 +224,1946,15.607 +224,1947,15.621 +224,1948,15.728 +224,1949,15.637 +224,1950,15.418 +224,1951,15.783 +224,1952,15.461 +224,1953,15.827 +224,1954,15.221 +224,1955,15.536 +224,1956,15.26 +224,1957,15.636 +224,1958,15.647 +224,1959,15.708 +224,1960,15.742 +224,1961,15.491 +224,1962,15.558 +224,1963,15.783 +224,1964,15.454 +224,1965,15.368 +224,1966,15.562 +224,1967,15.596 +224,1968,15.583 +224,1969,15.472 +224,1970,15.507 +224,1971,15.611 +224,1972,15.742 +224,1973,15.356 +224,1974,15.727 +224,1975,15.358 +224,1976,15.589 +224,1977,15.73 +224,1978,15.488 +224,1979,15.92 +224,1980,15.913 +224,1981,15.94 +224,1982,15.665 +224,1983,15.898 +224,1984,15.694 +224,1985,15.766 +224,1986,15.703 +224,1987,15.871 +224,1988,15.91 +224,1989,15.863 +224,1990,16.094 +224,1991,15.933 +224,1992,15.798 +224,1993,15.792 +224,1994,15.781 +224,1995,15.91 +224,1996,16.015 +224,1997,16.052 +224,1998,16.48 +224,1999,16.006 +224,2000,15.953 +224,2001,16.12 +224,2002,16.199 +224,2003,16.156 +224,2004,16.036 +224,2005,16.154 +224,2006,16.229 +224,2007,16.128 +224,2008,16.008 +224,2009,16.138 +224,2010,16.06 +224,2011,16.398 +224,2012,16.269 +224,2013,16.369 +224,2014,16.307 +224,2015,16.488 +224,2016,16.647 +224,2017,16.597 +224,2018,16.529 +224,2019,16.516 +224,2020,16.509 +224,2021,16.482 +224,2022,16.55 +224,2023,16.809 +224,2024,NA +225,1940,15.716 +225,1941,15.849 +225,1942,15.349 +225,1943,15.404 +225,1944,15.696 +225,1945,15.696 +225,1946,15.564 +225,1947,15.618 +225,1948,15.75 +225,1949,15.62 +225,1950,15.462 +225,1951,15.843 +225,1952,15.442 +225,1953,15.853 +225,1954,15.264 +225,1955,15.489 +225,1956,15.253 +225,1957,15.614 +225,1958,15.706 +225,1959,15.61 +225,1960,15.716 +225,1961,15.486 +225,1962,15.592 +225,1963,15.795 +225,1964,15.468 +225,1965,15.34 +225,1966,15.559 +225,1967,15.545 +225,1968,15.609 +225,1969,15.45 +225,1970,15.558 +225,1971,15.545 +225,1972,15.759 +225,1973,15.386 +225,1974,15.739 +225,1975,15.337 +225,1976,15.532 +225,1977,15.64 +225,1978,15.469 +225,1979,15.867 +225,1980,15.853 +225,1981,15.919 +225,1982,15.677 +225,1983,15.92 +225,1984,15.645 +225,1985,15.712 +225,1986,15.61 +225,1987,15.943 +225,1988,15.909 +225,1989,15.872 +225,1990,16.143 +225,1991,15.933 +225,1992,15.792 +225,1993,15.817 +225,1994,15.857 +225,1995,15.933 +225,1996,16.087 +225,1997,16.119 +225,1998,16.349 +225,1999,15.951 +225,2000,15.873 +225,2001,16.084 +225,2002,16.244 +225,2003,16.161 +225,2004,16.059 +225,2005,16.127 +225,2006,16.263 +225,2007,16.107 +225,2008,16.024 +225,2009,16.128 +225,2010,16.022 +225,2011,16.337 +225,2012,16.192 +225,2013,16.357 +225,2014,16.218 +225,2015,16.435 +225,2016,16.71 +225,2017,16.629 +225,2018,16.514 +225,2019,16.499 +225,2020,16.478 +225,2021,16.488 +225,2022,16.546 +225,2023,16.772 +225,2024,NA +226,1940,15.688 +226,1941,15.752 +226,1942,15.351 +226,1943,15.373 +226,1944,15.691 +226,1945,15.731 +226,1946,15.517 +226,1947,15.654 +226,1948,15.727 +226,1949,15.589 +226,1950,15.388 +226,1951,15.834 +226,1952,15.472 +226,1953,15.83 +226,1954,15.341 +226,1955,15.452 +226,1956,15.293 +226,1957,15.629 +226,1958,15.688 +226,1959,15.552 +226,1960,15.69 +226,1961,15.535 +226,1962,15.641 +226,1963,15.853 +226,1964,15.441 +226,1965,15.352 +226,1966,15.526 +226,1967,15.51 +226,1968,15.6 +226,1969,15.42 +226,1970,15.521 +226,1971,15.453 +226,1972,15.844 +226,1973,15.467 +226,1974,15.655 +226,1975,15.294 +226,1976,15.529 +226,1977,15.626 +226,1978,15.433 +226,1979,15.839 +226,1980,15.82 +226,1981,15.938 +226,1982,15.709 +226,1983,15.911 +226,1984,15.614 +226,1985,15.727 +226,1986,15.587 +226,1987,15.953 +226,1988,15.975 +226,1989,15.867 +226,1990,16.125 +226,1991,15.925 +226,1992,15.738 +226,1993,15.846 +226,1994,15.9 +226,1995,16.012 +226,1996,16.101 +226,1997,16.095 +226,1998,16.258 +226,1999,15.886 +226,2000,15.846 +226,2001,16.048 +226,2002,16.273 +226,2003,16.172 +226,2004,16.141 +226,2005,16.078 +226,2006,16.325 +226,2007,16.16 +226,2008,16.066 +226,2009,16.139 +226,2010,15.975 +226,2011,16.316 +226,2012,16.133 +226,2013,16.363 +226,2014,16.108 +226,2015,16.403 +226,2016,16.797 +226,2017,16.622 +226,2018,16.513 +226,2019,16.442 +226,2020,16.483 +226,2021,16.492 +226,2022,16.484 +226,2023,16.76 +226,2024,NA +227,1940,15.688 +227,1941,15.654 +227,1942,15.363 +227,1943,15.425 +227,1944,15.68 +227,1945,15.715 +227,1946,15.416 +227,1947,15.655 +227,1948,15.665 +227,1949,15.521 +227,1950,15.328 +227,1951,15.832 +227,1952,15.498 +227,1953,15.831 +227,1954,15.394 +227,1955,15.471 +227,1956,15.361 +227,1957,15.669 +227,1958,15.666 +227,1959,15.503 +227,1960,15.686 +227,1961,15.545 +227,1962,15.735 +227,1963,15.878 +227,1964,15.423 +227,1965,15.428 +227,1966,15.507 +227,1967,15.559 +227,1968,15.606 +227,1969,15.406 +227,1970,15.48 +227,1971,15.35 +227,1972,15.894 +227,1973,15.469 +227,1974,15.621 +227,1975,15.272 +227,1976,15.439 +227,1977,15.588 +227,1978,15.403 +227,1979,15.815 +227,1980,15.809 +227,1981,15.976 +227,1982,15.724 +227,1983,15.907 +227,1984,15.587 +227,1985,15.689 +227,1986,15.578 +227,1987,15.932 +227,1988,16.02 +227,1989,15.861 +227,1990,16.126 +227,1991,15.96 +227,1992,15.76 +227,1993,15.87 +227,1994,15.861 +227,1995,16.057 +227,1996,16.046 +227,1997,16.062 +227,1998,16.193 +227,1999,15.832 +227,2000,15.865 +227,2001,16.037 +227,2002,16.301 +227,2003,16.177 +227,2004,16.162 +227,2005,16.122 +227,2006,16.352 +227,2007,16.198 +227,2008,16.165 +227,2009,16.206 +227,2010,15.964 +227,2011,16.225 +227,2012,16.129 +227,2013,16.285 +227,2014,16.032 +227,2015,16.396 +227,2016,16.794 +227,2017,16.578 +227,2018,16.538 +227,2019,16.417 +227,2020,16.454 +227,2021,16.501 +227,2022,16.507 +227,2023,16.753 +227,2024,NA +228,1940,15.721 +228,1941,15.622 +228,1942,15.427 +228,1943,15.402 +228,1944,15.63 +228,1945,15.767 +228,1946,15.383 +228,1947,15.645 +228,1948,15.624 +228,1949,15.452 +228,1950,15.331 +228,1951,15.774 +228,1952,15.473 +228,1953,15.798 +228,1954,15.422 +228,1955,15.544 +228,1956,15.353 +228,1957,15.682 +228,1958,15.67 +228,1959,15.417 +228,1960,15.68 +228,1961,15.547 +228,1962,15.787 +228,1963,15.827 +228,1964,15.423 +228,1965,15.409 +228,1966,15.492 +228,1967,15.586 +228,1968,15.556 +228,1969,15.373 +228,1970,15.425 +228,1971,15.292 +228,1972,15.869 +228,1973,15.509 +228,1974,15.565 +228,1975,15.27 +228,1976,15.313 +228,1977,15.532 +228,1978,15.358 +228,1979,15.83 +228,1980,15.784 +228,1981,16.018 +228,1982,15.675 +228,1983,15.908 +228,1984,15.561 +228,1985,15.628 +228,1986,15.577 +228,1987,15.923 +228,1988,16.041 +228,1989,15.85 +228,1990,16.093 +228,1991,15.99 +228,1992,15.781 +228,1993,15.881 +228,1994,15.812 +228,1995,16.049 +228,1996,15.974 +228,1997,16.014 +228,1998,16.149 +228,1999,15.802 +228,2000,15.819 +228,2001,16.018 +228,2002,16.283 +228,2003,16.171 +228,2004,16.12 +228,2005,16.183 +228,2006,16.342 +228,2007,16.176 +228,2008,16.239 +228,2009,16.224 +228,2010,16.025 +228,2011,16.203 +228,2012,16.113 +228,2013,16.204 +228,2014,16.088 +228,2015,16.366 +228,2016,16.774 +228,2017,16.553 +228,2018,16.507 +228,2019,16.39 +228,2020,16.394 +228,2021,16.491 +228,2022,16.535 +228,2023,16.808 +228,2024,NA +229,1940,15.711 +229,1941,15.64 +229,1942,15.415 +229,1943,15.406 +229,1944,15.605 +229,1945,15.837 +229,1946,15.425 +229,1947,15.587 +229,1948,15.625 +229,1949,15.495 +229,1950,15.349 +229,1951,15.712 +229,1952,15.48 +229,1953,15.673 +229,1954,15.375 +229,1955,15.561 +229,1956,15.278 +229,1957,15.731 +229,1958,15.67 +229,1959,15.391 +229,1960,15.717 +229,1961,15.564 +229,1962,15.75 +229,1963,15.753 +229,1964,15.424 +229,1965,15.457 +229,1966,15.495 +229,1967,15.597 +229,1968,15.546 +229,1969,15.412 +229,1970,15.387 +229,1971,15.239 +229,1972,15.835 +229,1973,15.576 +229,1974,15.498 +229,1975,15.304 +229,1976,15.282 +229,1977,15.587 +229,1978,15.412 +229,1979,15.845 +229,1980,15.78 +229,1981,16.098 +229,1982,15.599 +229,1983,15.886 +229,1984,15.526 +229,1985,15.6 +229,1986,15.598 +229,1987,15.876 +229,1988,16.096 +229,1989,15.889 +229,1990,16.047 +229,1991,16.017 +229,1992,15.788 +229,1993,15.842 +229,1994,15.793 +229,1995,16.003 +229,1996,15.927 +229,1997,16.009 +229,1998,16.164 +229,1999,15.8 +229,2000,15.737 +229,2001,16.041 +229,2002,16.288 +229,2003,16.135 +229,2004,16.094 +229,2005,16.25 +229,2006,16.295 +229,2007,16.128 +229,2008,16.225 +229,2009,16.19 +229,2010,16.085 +229,2011,16.189 +229,2012,16.076 +229,2013,16.191 +229,2014,16.156 +229,2015,16.35 +229,2016,16.793 +229,2017,16.534 +229,2018,16.478 +229,2019,16.364 +229,2020,16.333 +229,2021,16.519 +229,2022,16.483 +229,2023,16.83 +229,2024,NA +230,1940,15.605 +230,1941,15.63 +230,1942,15.407 +230,1943,15.44 +230,1944,15.623 +230,1945,15.886 +230,1946,15.443 +230,1947,15.499 +230,1948,15.542 +230,1949,15.527 +230,1950,15.315 +230,1951,15.688 +230,1952,15.42 +230,1953,15.565 +230,1954,15.389 +230,1955,15.598 +230,1956,15.274 +230,1957,15.69 +230,1958,15.685 +230,1959,15.378 +230,1960,15.761 +230,1961,15.59 +230,1962,15.7 +230,1963,15.706 +230,1964,15.412 +230,1965,15.456 +230,1966,15.533 +230,1967,15.613 +230,1968,15.532 +230,1969,15.433 +230,1970,15.39 +230,1971,15.266 +230,1972,15.785 +230,1973,15.595 +230,1974,15.45 +230,1975,15.302 +230,1976,15.319 +230,1977,15.597 +230,1978,15.478 +230,1979,15.822 +230,1980,15.811 +230,1981,16.06 +230,1982,15.567 +230,1983,15.899 +230,1984,15.574 +230,1985,15.612 +230,1986,15.619 +230,1987,15.823 +230,1988,16.131 +230,1989,15.877 +230,1990,15.974 +230,1991,16.046 +230,1992,15.777 +230,1993,15.801 +230,1994,15.799 +230,1995,15.986 +230,1996,15.881 +230,1997,15.999 +230,1998,16.174 +230,1999,15.845 +230,2000,15.747 +230,2001,16.014 +230,2002,16.211 +230,2003,16.11 +230,2004,16.064 +230,2005,16.289 +230,2006,16.269 +230,2007,16.058 +230,2008,16.096 +230,2009,16.15 +230,2010,16.141 +230,2011,16.134 +230,2012,16.09 +230,2013,16.22 +230,2014,16.214 +230,2015,16.353 +230,2016,16.733 +230,2017,16.52 +230,2018,16.463 +230,2019,16.409 +230,2020,16.372 +230,2021,16.487 +230,2022,16.423 +230,2023,16.817 +230,2024,NA +231,1940,15.561 +231,1941,15.574 +231,1942,15.465 +231,1943,15.424 +231,1944,15.598 +231,1945,15.902 +231,1946,15.47 +231,1947,15.424 +231,1948,15.489 +231,1949,15.529 +231,1950,15.227 +231,1951,15.695 +231,1952,15.382 +231,1953,15.479 +231,1954,15.411 +231,1955,15.598 +231,1956,15.24 +231,1957,15.66 +231,1958,15.672 +231,1959,15.401 +231,1960,15.759 +231,1961,15.608 +231,1962,15.639 +231,1963,15.697 +231,1964,15.434 +231,1965,15.404 +231,1966,15.502 +231,1967,15.603 +231,1968,15.511 +231,1969,15.443 +231,1970,15.349 +231,1971,15.305 +231,1972,15.741 +231,1973,15.589 +231,1974,15.425 +231,1975,15.319 +231,1976,15.34 +231,1977,15.617 +231,1978,15.406 +231,1979,15.713 +231,1980,15.833 +231,1981,15.934 +231,1982,15.534 +231,1983,15.914 +231,1984,15.628 +231,1985,15.573 +231,1986,15.625 +231,1987,15.768 +231,1988,16.134 +231,1989,15.832 +231,1990,15.912 +231,1991,16.007 +231,1992,15.726 +231,1993,15.78 +231,1994,15.803 +231,1995,15.99 +231,1996,15.821 +231,1997,15.978 +231,1998,16.134 +231,1999,15.873 +231,2000,15.834 +231,2001,16.008 +231,2002,16.175 +231,2003,16.107 +231,2004,16.05 +231,2005,16.26 +231,2006,16.203 +231,2007,15.983 +231,2008,16.012 +231,2009,16.131 +231,2010,16.15 +231,2011,16.084 +231,2012,16.1 +231,2013,16.271 +231,2014,16.188 +231,2015,16.353 +231,2016,16.645 +231,2017,16.474 +231,2018,16.414 +231,2019,16.409 +231,2020,16.363 +231,2021,16.431 +231,2022,16.383 +231,2023,16.813 +231,2024,NA +232,1940,15.541 +232,1941,15.533 +232,1942,15.566 +232,1943,15.386 +232,1944,15.601 +232,1945,15.928 +232,1946,15.465 +232,1947,15.344 +232,1948,15.443 +232,1949,15.458 +232,1950,15.231 +232,1951,15.643 +232,1952,15.369 +232,1953,15.439 +232,1954,15.395 +232,1955,15.621 +232,1956,15.185 +232,1957,15.688 +232,1958,15.583 +232,1959,15.441 +232,1960,15.672 +232,1961,15.601 +232,1962,15.53 +232,1963,15.705 +232,1964,15.406 +232,1965,15.362 +232,1966,15.439 +232,1967,15.615 +232,1968,15.518 +232,1969,15.441 +232,1970,15.382 +232,1971,15.365 +232,1972,15.716 +232,1973,15.541 +232,1974,15.413 +232,1975,15.37 +232,1976,15.362 +232,1977,15.626 +232,1978,15.339 +232,1979,15.623 +232,1980,15.869 +232,1981,15.889 +232,1982,15.57 +232,1983,15.884 +232,1984,15.715 +232,1985,15.596 +232,1986,15.658 +232,1987,15.741 +232,1988,16.102 +232,1989,15.781 +232,1990,15.91 +232,1991,16 +232,1992,15.644 +232,1993,15.75 +232,1994,15.786 +232,1995,15.957 +232,1996,15.762 +232,1997,15.978 +232,1998,16.111 +232,1999,15.898 +232,2000,15.934 +232,2001,16.015 +232,2002,16.106 +232,2003,16.125 +232,2004,16.029 +232,2005,16.207 +232,2006,16.149 +232,2007,15.994 +232,2008,15.983 +232,2009,16.163 +232,2010,16.203 +232,2011,16.007 +232,2012,16.099 +232,2013,16.226 +232,2014,16.164 +232,2015,16.333 +232,2016,16.526 +232,2017,16.436 +232,2018,16.345 +232,2019,16.408 +232,2020,16.315 +232,2021,16.431 +232,2022,16.321 +232,2023,16.762 +232,2024,NA +233,1940,15.541 +233,1941,15.495 +233,1942,15.625 +233,1943,15.358 +233,1944,15.645 +233,1945,15.949 +233,1946,15.454 +233,1947,15.282 +233,1948,15.472 +233,1949,15.432 +233,1950,15.283 +233,1951,15.551 +233,1952,15.386 +233,1953,15.423 +233,1954,15.396 +233,1955,15.601 +233,1956,15.136 +233,1957,15.661 +233,1958,15.56 +233,1959,15.44 +233,1960,15.583 +233,1961,15.576 +233,1962,15.478 +233,1963,15.71 +233,1964,15.372 +233,1965,15.356 +233,1966,15.483 +233,1967,15.671 +233,1968,15.476 +233,1969,15.425 +233,1970,15.387 +233,1971,15.408 +233,1972,15.719 +233,1973,15.508 +233,1974,15.391 +233,1975,15.386 +233,1976,15.319 +233,1977,15.611 +233,1978,15.283 +233,1979,15.623 +233,1980,15.883 +233,1981,15.875 +233,1982,15.587 +233,1983,15.843 +233,1984,15.775 +233,1985,15.582 +233,1986,15.736 +233,1987,15.725 +233,1988,16.063 +233,1989,15.724 +233,1990,15.899 +233,1991,15.971 +233,1992,15.586 +233,1993,15.724 +233,1994,15.703 +233,1995,15.945 +233,1996,15.744 +233,1997,15.978 +233,1998,16.149 +233,1999,15.907 +233,2000,15.948 +233,2001,16.003 +233,2002,16.02 +233,2003,16.147 +233,2004,15.95 +233,2005,16.196 +233,2006,16.121 +233,2007,15.995 +233,2008,15.975 +233,2009,16.189 +233,2010,16.234 +233,2011,15.936 +233,2012,16.142 +233,2013,16.148 +233,2014,16.152 +233,2015,16.363 +233,2016,16.462 +233,2017,16.325 +233,2018,16.25 +233,2019,16.398 +233,2020,16.259 +233,2021,16.428 +233,2022,16.184 +233,2023,16.749 +233,2024,NA +234,1940,15.549 +234,1941,15.477 +234,1942,15.58 +234,1943,15.368 +234,1944,15.671 +234,1945,15.945 +234,1946,15.419 +234,1947,15.263 +234,1948,15.538 +234,1949,15.396 +234,1950,15.285 +234,1951,15.509 +234,1952,15.42 +234,1953,15.334 +234,1954,15.346 +234,1955,15.578 +234,1956,15.146 +234,1957,15.622 +234,1958,15.56 +234,1959,15.45 +234,1960,15.562 +234,1961,15.552 +234,1962,15.455 +234,1963,15.68 +234,1964,15.412 +234,1965,15.393 +234,1966,15.497 +234,1967,15.6 +234,1968,15.345 +234,1969,15.412 +234,1970,15.374 +234,1971,15.411 +234,1972,15.714 +234,1973,15.517 +234,1974,15.394 +234,1975,15.35 +234,1976,15.3 +234,1977,15.56 +234,1978,15.287 +234,1979,15.575 +234,1980,15.927 +234,1981,15.753 +234,1982,15.562 +234,1983,15.785 +234,1984,15.82 +234,1985,15.539 +234,1986,15.748 +234,1987,15.748 +234,1988,16.006 +234,1989,15.695 +234,1990,15.909 +234,1991,15.964 +234,1992,15.568 +234,1993,15.654 +234,1994,15.633 +234,1995,15.978 +234,1996,15.749 +234,1997,15.967 +234,1998,16.191 +234,1999,15.845 +234,2000,15.907 +234,2001,16.027 +234,2002,15.982 +234,2003,16.175 +234,2004,15.873 +234,2005,16.187 +234,2006,16.103 +234,2007,15.991 +234,2008,15.983 +234,2009,16.147 +234,2010,16.283 +234,2011,15.94 +234,2012,16.187 +234,2013,16.109 +234,2014,16.166 +234,2015,16.404 +234,2016,16.402 +234,2017,16.242 +234,2018,16.171 +234,2019,16.423 +234,2020,16.229 +234,2021,16.399 +234,2022,16.13 +234,2023,16.775 +234,2024,NA +235,1940,15.569 +235,1941,15.458 +235,1942,15.481 +235,1943,15.325 +235,1944,15.659 +235,1945,15.929 +235,1946,15.366 +235,1947,15.315 +235,1948,15.588 +235,1949,15.398 +235,1950,15.31 +235,1951,15.469 +235,1952,15.418 +235,1953,15.296 +235,1954,15.279 +235,1955,15.515 +235,1956,15.103 +235,1957,15.531 +235,1958,15.508 +235,1959,15.441 +235,1960,15.518 +235,1961,15.544 +235,1962,15.364 +235,1963,15.633 +235,1964,15.412 +235,1965,15.446 +235,1966,15.477 +235,1967,15.528 +235,1968,15.277 +235,1969,15.42 +235,1970,15.381 +235,1971,15.39 +235,1972,15.624 +235,1973,15.457 +235,1974,15.422 +235,1975,15.328 +235,1976,15.311 +235,1977,15.551 +235,1978,15.29 +235,1979,15.524 +235,1980,15.949 +235,1981,15.703 +235,1982,15.495 +235,1983,15.775 +235,1984,15.808 +235,1985,15.589 +235,1986,15.691 +235,1987,15.805 +235,1988,15.986 +235,1989,15.642 +235,1990,15.921 +235,1991,15.94 +235,1992,15.505 +235,1993,15.558 +235,1994,15.613 +235,1995,16.003 +235,1996,15.798 +235,1997,15.985 +235,1998,16.155 +235,1999,15.782 +235,2000,15.892 +235,2001,16.042 +235,2002,15.981 +235,2003,16.18 +235,2004,15.809 +235,2005,16.103 +235,2006,16.079 +235,2007,16.033 +235,2008,15.941 +235,2009,16.097 +235,2010,16.324 +235,2011,15.966 +235,2012,16.205 +235,2013,16.045 +235,2014,16.214 +235,2015,16.384 +235,2016,16.366 +235,2017,16.261 +235,2018,16.143 +235,2019,16.435 +235,2020,16.204 +235,2021,16.361 +235,2022,16.24 +235,2023,16.795 +235,2024,NA +236,1940,15.534 +236,1941,15.415 +236,1942,15.392 +236,1943,15.28 +236,1944,15.643 +236,1945,15.905 +236,1946,15.338 +236,1947,15.363 +236,1948,15.518 +236,1949,15.324 +236,1950,15.237 +236,1951,15.464 +236,1952,15.36 +236,1953,15.277 +236,1954,15.321 +236,1955,15.503 +236,1956,15.054 +236,1957,15.493 +236,1958,15.452 +236,1959,15.448 +236,1960,15.438 +236,1961,15.476 +236,1962,15.308 +236,1963,15.639 +236,1964,15.378 +236,1965,15.49 +236,1966,15.402 +236,1967,15.414 +236,1968,15.265 +236,1969,15.434 +236,1970,15.237 +236,1971,15.377 +236,1972,15.558 +236,1973,15.406 +236,1974,15.392 +236,1975,15.231 +236,1976,15.324 +236,1977,15.56 +236,1978,15.237 +236,1979,15.494 +236,1980,15.905 +236,1981,15.689 +236,1982,15.458 +236,1983,15.783 +236,1984,15.801 +236,1985,15.617 +236,1986,15.624 +236,1987,15.798 +236,1988,15.98 +236,1989,15.581 +236,1990,15.875 +236,1991,15.902 +236,1992,15.445 +236,1993,15.528 +236,1994,15.584 +236,1995,15.969 +236,1996,15.898 +236,1997,15.976 +236,1998,16.163 +236,1999,15.762 +236,2000,15.882 +236,2001,16.084 +236,2002,16.003 +236,2003,16.158 +236,2004,15.774 +236,2005,16.007 +236,2006,16.09 +236,2007,16.022 +236,2008,15.912 +236,2009,16.086 +236,2010,16.315 +236,2011,16.017 +236,2012,16.179 +236,2013,15.985 +236,2014,16.246 +236,2015,16.275 +236,2016,16.362 +236,2017,16.286 +236,2018,16.125 +236,2019,16.44 +236,2020,16.225 +236,2021,16.258 +236,2022,16.245 +236,2023,16.788 +236,2024,NA +237,1940,15.483 +237,1941,15.383 +237,1942,15.302 +237,1943,15.258 +237,1944,15.595 +237,1945,15.907 +237,1946,15.282 +237,1947,15.318 +237,1948,15.487 +237,1949,15.214 +237,1950,15.193 +237,1951,15.5 +237,1952,15.351 +237,1953,15.258 +237,1954,15.31 +237,1955,15.494 +237,1956,15.071 +237,1957,15.463 +237,1958,15.422 +237,1959,15.444 +237,1960,15.332 +237,1961,15.455 +237,1962,15.259 +237,1963,15.67 +237,1964,15.304 +237,1965,15.413 +237,1966,15.365 +237,1967,15.335 +237,1968,15.215 +237,1969,15.462 +237,1970,15.161 +237,1971,15.229 +237,1972,15.546 +237,1973,15.407 +237,1974,15.357 +237,1975,15.148 +237,1976,15.28 +237,1977,15.51 +237,1978,15.201 +237,1979,15.492 +237,1980,15.843 +237,1981,15.667 +237,1982,15.545 +237,1983,15.85 +237,1984,15.771 +237,1985,15.66 +237,1986,15.594 +237,1987,15.817 +237,1988,15.912 +237,1989,15.67 +237,1990,15.829 +237,1991,15.811 +237,1992,15.468 +237,1993,15.498 +237,1994,15.559 +237,1995,15.885 +237,1996,16.023 +237,1997,15.936 +237,1998,16.196 +237,1999,15.756 +237,2000,15.916 +237,2001,16.054 +237,2002,16.001 +237,2003,16.121 +237,2004,15.82 +237,2005,15.945 +237,2006,16.047 +237,2007,15.998 +237,2008,15.906 +237,2009,16.018 +237,2010,16.3 +237,2011,16.115 +237,2012,16.148 +237,2013,15.927 +237,2014,16.321 +237,2015,16.186 +237,2016,16.316 +237,2017,16.261 +237,2018,16.073 +237,2019,16.475 +237,2020,16.31 +237,2021,16.217 +237,2022,16.257 +237,2023,16.811 +237,2024,NA +238,1940,15.512 +238,1941,15.426 +238,1942,15.236 +238,1943,15.256 +238,1944,15.59 +238,1945,15.873 +238,1946,15.269 +238,1947,15.229 +238,1948,15.441 +238,1949,15.101 +238,1950,15.171 +238,1951,15.551 +238,1952,15.359 +238,1953,15.254 +238,1954,15.258 +238,1955,15.478 +238,1956,15.057 +238,1957,15.48 +238,1958,15.385 +238,1959,15.42 +238,1960,15.25 +238,1961,15.464 +238,1962,15.234 +238,1963,15.62 +238,1964,15.284 +238,1965,15.435 +238,1966,15.411 +238,1967,15.326 +238,1968,15.25 +238,1969,15.425 +238,1970,15.164 +238,1971,15.224 +238,1972,15.464 +238,1973,15.425 +238,1974,15.403 +238,1975,15.109 +238,1976,15.214 +238,1977,15.511 +238,1978,15.146 +238,1979,15.461 +238,1980,15.754 +238,1981,15.687 +238,1982,15.574 +238,1983,15.854 +238,1984,15.664 +238,1985,15.696 +238,1986,15.6 +238,1987,15.876 +238,1988,15.837 +238,1989,15.673 +238,1990,15.812 +238,1991,15.767 +238,1992,15.506 +238,1993,15.457 +238,1994,15.61 +238,1995,15.875 +238,1996,16.048 +238,1997,15.869 +238,1998,16.127 +238,1999,15.775 +238,2000,15.937 +238,2001,16.024 +238,2002,15.966 +238,2003,16.106 +238,2004,15.796 +238,2005,15.98 +238,2006,16.033 +238,2007,15.984 +238,2008,15.915 +238,2009,15.95 +238,2010,16.276 +238,2011,16.189 +238,2012,16.166 +238,2013,15.896 +238,2014,16.341 +238,2015,16.1 +238,2016,16.265 +238,2017,16.187 +238,2018,15.965 +238,2019,16.474 +238,2020,16.323 +238,2021,16.199 +238,2022,16.284 +238,2023,16.849 +238,2024,NA +239,1940,15.464 +239,1941,15.472 +239,1942,15.196 +239,1943,15.226 +239,1944,15.59 +239,1945,15.799 +239,1946,15.285 +239,1947,15.207 +239,1948,15.387 +239,1949,15.053 +239,1950,15.186 +239,1951,15.513 +239,1952,15.364 +239,1953,15.247 +239,1954,15.183 +239,1955,15.475 +239,1956,15.042 +239,1957,15.437 +239,1958,15.367 +239,1959,15.431 +239,1960,15.17 +239,1961,15.498 +239,1962,15.259 +239,1963,15.611 +239,1964,15.302 +239,1965,15.442 +239,1966,15.451 +239,1967,15.305 +239,1968,15.277 +239,1969,15.393 +239,1970,15.219 +239,1971,15.234 +239,1972,15.363 +239,1973,15.382 +239,1974,15.435 +239,1975,15.153 +239,1976,15.164 +239,1977,15.479 +239,1978,15.199 +239,1979,15.348 +239,1980,15.608 +239,1981,15.708 +239,1982,15.542 +239,1983,15.826 +239,1984,15.553 +239,1985,15.705 +239,1986,15.614 +239,1987,15.879 +239,1988,15.801 +239,1989,15.686 +239,1990,15.79 +239,1991,15.752 +239,1992,15.497 +239,1993,15.415 +239,1994,15.622 +239,1995,15.943 +239,1996,16.037 +239,1997,15.843 +239,1998,16.062 +239,1999,15.753 +239,2000,15.925 +239,2001,15.968 +239,2002,15.941 +239,2003,16.094 +239,2004,15.819 +239,2005,15.992 +239,2006,16.009 +239,2007,16.003 +239,2008,15.893 +239,2009,15.954 +239,2010,16.278 +239,2011,16.246 +239,2012,16.178 +239,2013,15.841 +239,2014,16.272 +239,2015,16.072 +239,2016,16.242 +239,2017,16.157 +239,2018,15.961 +239,2019,16.475 +239,2020,16.269 +239,2021,16.195 +239,2022,16.274 +239,2023,16.781 +239,2024,NA +240,1940,15.451 +240,1941,15.456 +240,1942,15.189 +240,1943,15.206 +240,1944,15.581 +240,1945,15.784 +240,1946,15.267 +240,1947,15.243 +240,1948,15.363 +240,1949,14.998 +240,1950,15.233 +240,1951,15.45 +240,1952,15.398 +240,1953,15.228 +240,1954,15.147 +240,1955,15.439 +240,1956,15.032 +240,1957,15.444 +240,1958,15.362 +240,1959,15.353 +240,1960,15.179 +240,1961,15.585 +240,1962,15.262 +240,1963,15.638 +240,1964,15.237 +240,1965,15.378 +240,1966,15.39 +240,1967,15.225 +240,1968,15.289 +240,1969,15.448 +240,1970,15.175 +240,1971,15.256 +240,1972,15.297 +240,1973,15.357 +240,1974,15.349 +240,1975,15.161 +240,1976,15.113 +240,1977,15.461 +240,1978,15.157 +240,1979,15.324 +240,1980,15.532 +240,1981,15.666 +240,1982,15.555 +240,1983,15.824 +240,1984,15.517 +240,1985,15.669 +240,1986,15.621 +240,1987,15.863 +240,1988,15.841 +240,1989,15.7 +240,1990,15.812 +240,1991,15.738 +240,1992,15.491 +240,1993,15.412 +240,1994,15.623 +240,1995,15.943 +240,1996,16.021 +240,1997,15.843 +240,1998,15.989 +240,1999,15.72 +240,2000,15.926 +240,2001,15.88 +240,2002,15.884 +240,2003,16.051 +240,2004,15.832 +240,2005,16.003 +240,2006,15.933 +240,2007,15.97 +240,2008,15.876 +240,2009,15.987 +240,2010,16.227 +240,2011,16.282 +240,2012,16.172 +240,2013,15.849 +240,2014,16.243 +240,2015,16.048 +240,2016,16.253 +240,2017,16.131 +240,2018,15.996 +240,2019,16.428 +240,2020,16.216 +240,2021,16.199 +240,2022,16.263 +240,2023,16.679 +240,2024,NA +241,1940,15.452 +241,1941,15.404 +241,1942,15.201 +241,1943,15.169 +241,1944,15.541 +241,1945,15.735 +241,1946,15.271 +241,1947,15.262 +241,1948,15.339 +241,1949,15.038 +241,1950,15.163 +241,1951,15.475 +241,1952,15.418 +241,1953,15.231 +241,1954,15.181 +241,1955,15.384 +241,1956,15.011 +241,1957,15.433 +241,1958,15.3 +241,1959,15.328 +241,1960,15.203 +241,1961,15.526 +241,1962,15.187 +241,1963,15.636 +241,1964,15.217 +241,1965,15.318 +241,1966,15.399 +241,1967,15.186 +241,1968,15.232 +241,1969,15.432 +241,1970,15.141 +241,1971,15.306 +241,1972,15.331 +241,1973,15.342 +241,1974,15.292 +241,1975,15.135 +241,1976,15.087 +241,1977,15.409 +241,1978,15.212 +241,1979,15.311 +241,1980,15.538 +241,1981,15.586 +241,1982,15.552 +241,1983,15.81 +241,1984,15.516 +241,1985,15.571 +241,1986,15.581 +241,1987,15.762 +241,1988,15.883 +241,1989,15.696 +241,1990,15.79 +241,1991,15.773 +241,1992,15.489 +241,1993,15.42 +241,1994,15.594 +241,1995,15.889 +241,1996,16 +241,1997,15.812 +241,1998,15.946 +241,1999,15.665 +241,2000,15.931 +241,2001,15.806 +241,2002,15.825 +241,2003,15.981 +241,2004,15.823 +241,2005,16.039 +241,2006,15.869 +241,2007,15.927 +241,2008,15.797 +241,2009,16.002 +241,2010,16.205 +241,2011,16.27 +241,2012,16.136 +241,2013,15.871 +241,2014,16.225 +241,2015,16.079 +241,2016,16.224 +241,2017,16.112 +241,2018,16.023 +241,2019,16.435 +241,2020,16.205 +241,2021,16.184 +241,2022,16.173 +241,2023,16.649 +241,2024,NA +242,1940,15.38 +242,1941,15.381 +242,1942,15.153 +242,1943,15.093 +242,1944,15.52 +242,1945,15.677 +242,1946,15.23 +242,1947,15.241 +242,1948,15.285 +242,1949,15.082 +242,1950,15.124 +242,1951,15.495 +242,1952,15.389 +242,1953,15.279 +242,1954,15.198 +242,1955,15.387 +242,1956,14.98 +242,1957,15.4 +242,1958,15.262 +242,1959,15.288 +242,1960,15.289 +242,1961,15.468 +242,1962,15.198 +242,1963,15.626 +242,1964,15.166 +242,1965,15.282 +242,1966,15.431 +242,1967,15.244 +242,1968,15.173 +242,1969,15.391 +242,1970,15.18 +242,1971,15.314 +242,1972,15.252 +242,1973,15.354 +242,1974,15.29 +242,1975,15.088 +242,1976,15.073 +242,1977,15.379 +242,1978,15.201 +242,1979,15.307 +242,1980,15.572 +242,1981,15.505 +242,1982,15.496 +242,1983,15.794 +242,1984,15.537 +242,1985,15.556 +242,1986,15.484 +242,1987,15.715 +242,1988,15.901 +242,1989,15.737 +242,1990,15.747 +242,1991,15.773 +242,1992,15.425 +242,1993,15.418 +242,1994,15.585 +242,1995,15.868 +242,1996,15.941 +242,1997,15.746 +242,1998,15.93 +242,1999,15.625 +242,2000,15.878 +242,2001,15.762 +242,2002,15.751 +242,2003,15.968 +242,2004,15.805 +242,2005,16.041 +242,2006,15.825 +242,2007,15.923 +242,2008,15.733 +242,2009,15.977 +242,2010,16.159 +242,2011,16.177 +242,2012,16.116 +242,2013,15.846 +242,2014,16.238 +242,2015,16.176 +242,2016,16.198 +242,2017,16.076 +242,2018,16.027 +242,2019,16.383 +242,2020,16.18 +242,2021,16.208 +242,2022,16.104 +242,2023,16.665 +242,2024,NA +243,1940,15.336 +243,1941,15.33 +243,1942,15.081 +243,1943,15.064 +243,1944,15.545 +243,1945,15.613 +243,1946,15.225 +243,1947,15.226 +243,1948,15.297 +243,1949,15.12 +243,1950,15.141 +243,1951,15.552 +243,1952,15.408 +243,1953,15.404 +243,1954,15.162 +243,1955,15.351 +243,1956,14.976 +243,1957,15.342 +243,1958,15.237 +243,1959,15.284 +243,1960,15.254 +243,1961,15.403 +243,1962,15.265 +243,1963,15.634 +243,1964,15.093 +243,1965,15.223 +243,1966,15.344 +243,1967,15.282 +243,1968,15.151 +243,1969,15.309 +243,1970,15.198 +243,1971,15.294 +243,1972,15.247 +243,1973,15.346 +243,1974,15.186 +243,1975,15.049 +243,1976,15.063 +243,1977,15.309 +243,1978,15.174 +243,1979,15.322 +243,1980,15.59 +243,1981,15.421 +243,1982,15.39 +243,1983,15.836 +243,1984,15.513 +243,1985,15.524 +243,1986,15.388 +243,1987,15.625 +243,1988,15.878 +243,1989,15.811 +243,1990,15.707 +243,1991,15.741 +243,1992,15.35 +243,1993,15.455 +243,1994,15.565 +243,1995,15.808 +243,1996,15.848 +243,1997,15.664 +243,1998,15.889 +243,1999,15.622 +243,2000,15.848 +243,2001,15.765 +243,2002,15.685 +243,2003,15.966 +243,2004,15.783 +243,2005,15.967 +243,2006,15.8 +243,2007,15.923 +243,2008,15.721 +243,2009,15.912 +243,2010,16.14 +243,2011,16.08 +243,2012,16.085 +243,2013,15.859 +243,2014,16.203 +243,2015,16.222 +243,2016,16.206 +243,2017,16.043 +243,2018,16.026 +243,2019,16.269 +243,2020,16.134 +243,2021,16.267 +243,2022,16.102 +243,2023,16.632 +243,2024,NA +244,1940,15.314 +244,1941,15.333 +244,1942,15.034 +244,1943,15.054 +244,1944,15.535 +244,1945,15.504 +244,1946,15.204 +244,1947,15.187 +244,1948,15.297 +244,1949,15.086 +244,1950,15.122 +244,1951,15.54 +244,1952,15.386 +244,1953,15.381 +244,1954,15.142 +244,1955,15.306 +244,1956,14.966 +244,1957,15.308 +244,1958,15.322 +244,1959,15.25 +244,1960,15.221 +244,1961,15.347 +244,1962,15.329 +244,1963,15.605 +244,1964,15.09 +244,1965,15.194 +244,1966,15.244 +244,1967,15.196 +244,1968,15.112 +244,1969,15.311 +244,1970,15.201 +244,1971,15.287 +244,1972,15.185 +244,1973,15.329 +244,1974,15.137 +244,1975,15.001 +244,1976,15.04 +244,1977,15.23 +244,1978,15.14 +244,1979,15.383 +244,1980,15.545 +244,1981,15.382 +244,1982,15.338 +244,1983,15.816 +244,1984,15.441 +244,1985,15.455 +244,1986,15.337 +244,1987,15.531 +244,1988,15.85 +244,1989,15.774 +244,1990,15.705 +244,1991,15.697 +244,1992,15.284 +244,1993,15.389 +244,1994,15.547 +244,1995,15.743 +244,1996,15.724 +244,1997,15.654 +244,1998,15.861 +244,1999,15.625 +244,2000,15.848 +244,2001,15.733 +244,2002,15.694 +244,2003,15.971 +244,2004,15.746 +244,2005,15.827 +244,2006,15.753 +244,2007,15.867 +244,2008,15.686 +244,2009,15.825 +244,2010,16.119 +244,2011,15.985 +244,2012,16.054 +244,2013,15.848 +244,2014,16.156 +244,2015,16.149 +244,2016,16.202 +244,2017,16.028 +244,2018,15.977 +244,2019,16.156 +244,2020,16.125 +244,2021,16.352 +244,2022,16.12 +244,2023,16.544 +244,2024,NA +245,1940,15.282 +245,1941,15.319 +245,1942,14.986 +245,1943,15.076 +245,1944,15.478 +245,1945,15.431 +245,1946,15.163 +245,1947,15.19 +245,1948,15.24 +245,1949,15.088 +245,1950,15.151 +245,1951,15.487 +245,1952,15.333 +245,1953,15.32 +245,1954,15.108 +245,1955,15.23 +245,1956,14.934 +245,1957,15.227 +245,1958,15.398 +245,1959,15.246 +245,1960,15.179 +245,1961,15.314 +245,1962,15.375 +245,1963,15.591 +245,1964,15.032 +245,1965,15.161 +245,1966,15.126 +245,1967,15.164 +245,1968,15.042 +245,1969,15.358 +245,1970,15.197 +245,1971,15.202 +245,1972,15.133 +245,1973,15.291 +245,1974,15.005 +245,1975,15.008 +245,1976,15.075 +245,1977,15.162 +245,1978,15.138 +245,1979,15.389 +245,1980,15.548 +245,1981,15.373 +245,1982,15.328 +245,1983,15.749 +245,1984,15.407 +245,1985,15.372 +245,1986,15.289 +245,1987,15.51 +245,1988,15.78 +245,1989,15.682 +245,1990,15.667 +245,1991,15.635 +245,1992,15.209 +245,1993,15.329 +245,1994,15.511 +245,1995,15.774 +245,1996,15.598 +245,1997,15.65 +245,1998,15.827 +245,1999,15.607 +245,2000,15.749 +245,2001,15.687 +245,2002,15.762 +245,2003,15.918 +245,2004,15.732 +245,2005,15.803 +245,2006,15.735 +245,2007,15.766 +245,2008,15.76 +245,2009,15.797 +245,2010,16.042 +245,2011,15.942 +245,2012,15.974 +245,2013,15.874 +245,2014,16.134 +245,2015,16.072 +245,2016,16.141 +245,2017,16.05 +245,2018,15.89 +245,2019,16.076 +245,2020,16.22 +245,2021,16.376 +245,2022,16.135 +245,2023,16.534 +245,2024,NA +246,1940,15.298 +246,1941,15.29 +246,1942,15 +246,1943,15.097 +246,1944,15.465 +246,1945,15.398 +246,1946,15.118 +246,1947,15.188 +246,1948,15.213 +246,1949,15.084 +246,1950,15.199 +246,1951,15.488 +246,1952,15.253 +246,1953,15.273 +246,1954,15.02 +246,1955,15.165 +246,1956,14.915 +246,1957,15.162 +246,1958,15.374 +246,1959,15.196 +246,1960,15.192 +246,1961,15.306 +246,1962,15.374 +246,1963,15.58 +246,1964,14.942 +246,1965,15.078 +246,1966,15.06 +246,1967,15.176 +246,1968,14.938 +246,1969,15.371 +246,1970,15.192 +246,1971,15.172 +246,1972,15.118 +246,1973,15.286 +246,1974,14.891 +246,1975,15.016 +246,1976,15.164 +246,1977,15.101 +246,1978,15.181 +246,1979,15.347 +246,1980,15.545 +246,1981,15.357 +246,1982,15.307 +246,1983,15.656 +246,1984,15.378 +246,1985,15.273 +246,1986,15.229 +246,1987,15.55 +246,1988,15.688 +246,1989,15.649 +246,1990,15.604 +246,1991,15.598 +246,1992,15.193 +246,1993,15.292 +246,1994,15.445 +246,1995,15.765 +246,1996,15.516 +246,1997,15.64 +246,1998,15.798 +246,1999,15.614 +246,2000,15.741 +246,2001,15.677 +246,2002,15.746 +246,2003,15.889 +246,2004,15.742 +246,2005,15.816 +246,2006,15.64 +246,2007,15.847 +246,2008,15.847 +246,2009,15.813 +246,2010,15.941 +246,2011,15.951 +246,2012,15.902 +246,2013,15.885 +246,2014,16.127 +246,2015,16.014 +246,2016,16.093 +246,2017,16.069 +246,2018,15.81 +246,2019,16.079 +246,2020,16.241 +246,2021,16.28 +246,2022,16.072 +246,2023,16.537 +246,2024,NA +247,1940,15.227 +247,1941,15.221 +247,1942,14.979 +247,1943,15.089 +247,1944,15.485 +247,1945,15.375 +247,1946,15.093 +247,1947,15.134 +247,1948,15.182 +247,1949,15.114 +247,1950,15.142 +247,1951,15.461 +247,1952,15.133 +247,1953,15.263 +247,1954,14.955 +247,1955,15.148 +247,1956,14.925 +247,1957,15.107 +247,1958,15.362 +247,1959,15.11 +247,1960,15.266 +247,1961,15.263 +247,1962,15.384 +247,1963,15.528 +247,1964,14.905 +247,1965,15.006 +247,1966,15.049 +247,1967,15.214 +247,1968,14.898 +247,1969,15.289 +247,1970,15.183 +247,1971,15.176 +247,1972,15.166 +247,1973,15.227 +247,1974,14.824 +247,1975,15 +247,1976,15.175 +247,1977,15.086 +247,1978,15.183 +247,1979,15.341 +247,1980,15.519 +247,1981,15.323 +247,1982,15.288 +247,1983,15.652 +247,1984,15.357 +247,1985,15.227 +247,1986,15.247 +247,1987,15.471 +247,1988,15.621 +247,1989,15.596 +247,1990,15.532 +247,1991,15.556 +247,1992,15.217 +247,1993,15.251 +247,1994,15.413 +247,1995,15.748 +247,1996,15.48 +247,1997,15.675 +247,1998,15.74 +247,1999,15.603 +247,2000,15.774 +247,2001,15.699 +247,2002,15.737 +247,2003,15.92 +247,2004,15.704 +247,2005,15.801 +247,2006,15.512 +247,2007,15.852 +247,2008,15.835 +247,2009,15.838 +247,2010,15.869 +247,2011,15.991 +247,2012,15.916 +247,2013,15.854 +247,2014,16.056 +247,2015,15.975 +247,2016,16.034 +247,2017,16.029 +247,2018,15.802 +247,2019,16.169 +247,2020,16.269 +247,2021,16.167 +247,2022,16.065 +247,2023,16.461 +247,2024,NA +248,1940,15.153 +248,1941,15.156 +248,1942,14.969 +248,1943,15.11 +248,1944,15.488 +248,1945,15.371 +248,1946,15.109 +248,1947,15.082 +248,1948,15.123 +248,1949,15.155 +248,1950,15.102 +248,1951,15.431 +248,1952,15.049 +248,1953,15.203 +248,1954,14.942 +248,1955,15.114 +248,1956,14.963 +248,1957,15.15 +248,1958,15.288 +248,1959,15.051 +248,1960,15.328 +248,1961,15.2 +248,1962,15.362 +248,1963,15.47 +248,1964,14.925 +248,1965,14.884 +248,1966,15.009 +248,1967,15.242 +248,1968,14.864 +248,1969,15.229 +248,1970,15.206 +248,1971,15.182 +248,1972,15.241 +248,1973,15.218 +248,1974,14.808 +248,1975,14.956 +248,1976,15.168 +248,1977,15.072 +248,1978,15.128 +248,1979,15.267 +248,1980,15.461 +248,1981,15.328 +248,1982,15.262 +248,1983,15.621 +248,1984,15.257 +248,1985,15.198 +248,1986,15.289 +248,1987,15.413 +248,1988,15.63 +248,1989,15.533 +248,1990,15.527 +248,1991,15.549 +248,1992,15.176 +248,1993,15.258 +248,1994,15.422 +248,1995,15.764 +248,1996,15.42 +248,1997,15.696 +248,1998,15.696 +248,1999,15.551 +248,2000,15.76 +248,2001,15.686 +248,2002,15.768 +248,2003,15.946 +248,2004,15.666 +248,2005,15.82 +248,2006,15.484 +248,2007,15.826 +248,2008,15.8 +248,2009,15.82 +248,2010,15.831 +248,2011,15.95 +248,2012,15.934 +248,2013,15.864 +248,2014,15.974 +248,2015,15.974 +248,2016,16.006 +248,2017,15.985 +248,2018,15.825 +248,2019,16.201 +248,2020,16.292 +248,2021,16.111 +248,2022,16.064 +248,2023,16.406 +248,2024,NA +249,1940,15.132 +249,1941,15.104 +249,1942,14.971 +249,1943,15.138 +249,1944,15.456 +249,1945,15.333 +249,1946,15.096 +249,1947,15.008 +249,1948,15.125 +249,1949,15.141 +249,1950,15.16 +249,1951,15.379 +249,1952,15.05 +249,1953,15.171 +249,1954,14.892 +249,1955,15.051 +249,1956,14.977 +249,1957,15.185 +249,1958,15.198 +249,1959,15.007 +249,1960,15.356 +249,1961,15.206 +249,1962,15.256 +249,1963,15.467 +249,1964,14.904 +249,1965,14.813 +249,1966,14.99 +249,1967,15.237 +249,1968,14.788 +249,1969,15.176 +249,1970,15.187 +249,1971,15.239 +249,1972,15.214 +249,1973,15.154 +249,1974,14.814 +249,1975,14.914 +249,1976,15.126 +249,1977,15.061 +249,1978,15.116 +249,1979,15.163 +249,1980,15.449 +249,1981,15.299 +249,1982,15.176 +249,1983,15.586 +249,1984,15.255 +249,1985,15.233 +249,1986,15.244 +249,1987,15.409 +249,1988,15.628 +249,1989,15.465 +249,1990,15.504 +249,1991,15.566 +249,1992,15.156 +249,1993,15.257 +249,1994,15.448 +249,1995,15.72 +249,1996,15.405 +249,1997,15.686 +249,1998,15.637 +249,1999,15.536 +249,2000,15.728 +249,2001,15.663 +249,2002,15.759 +249,2003,15.933 +249,2004,15.633 +249,2005,15.822 +249,2006,15.44 +249,2007,15.715 +249,2008,15.754 +249,2009,15.785 +249,2010,15.741 +249,2011,15.927 +249,2012,15.871 +249,2013,15.88 +249,2014,15.91 +249,2015,15.997 +249,2016,15.991 +249,2017,15.899 +249,2018,15.841 +249,2019,16.145 +249,2020,16.259 +249,2021,16.105 +249,2022,16.066 +249,2023,16.375 +249,2024,NA +250,1940,15.047 +250,1941,15.054 +250,1942,14.915 +250,1943,15.157 +250,1944,15.387 +250,1945,15.356 +250,1946,14.998 +250,1947,14.974 +250,1948,15.156 +250,1949,15.101 +250,1950,15.164 +250,1951,15.305 +250,1952,15.019 +250,1953,15.156 +250,1954,14.803 +250,1955,14.99 +250,1956,14.959 +250,1957,15.204 +250,1958,15.162 +250,1959,15.027 +250,1960,15.309 +250,1961,15.157 +250,1962,15.201 +250,1963,15.442 +250,1964,14.876 +250,1965,14.81 +250,1966,14.996 +250,1967,15.203 +250,1968,14.809 +250,1969,15.104 +250,1970,15.116 +250,1971,15.193 +250,1972,15.168 +250,1973,15.077 +250,1974,14.871 +250,1975,14.851 +250,1976,15.074 +250,1977,15.065 +250,1978,15.065 +250,1979,15.129 +250,1980,15.438 +250,1981,15.303 +250,1982,15.13 +250,1983,15.555 +250,1984,15.263 +250,1985,15.208 +250,1986,15.188 +250,1987,15.416 +250,1988,15.614 +250,1989,15.425 +250,1990,15.497 +250,1991,15.52 +250,1992,15.14 +250,1993,15.293 +250,1994,15.496 +250,1995,15.639 +250,1996,15.342 +250,1997,15.614 +250,1998,15.657 +250,1999,15.544 +250,2000,15.667 +250,2001,15.682 +250,2002,15.688 +250,2003,15.825 +250,2004,15.629 +250,2005,15.784 +250,2006,15.428 +250,2007,15.646 +250,2008,15.704 +250,2009,15.741 +250,2010,15.658 +250,2011,15.822 +250,2012,15.836 +250,2013,15.838 +250,2014,15.847 +250,2015,15.998 +250,2016,15.965 +250,2017,15.924 +250,2018,15.856 +250,2019,16.092 +250,2020,16.173 +250,2021,16.096 +250,2022,16.06 +250,2023,16.438 +250,2024,NA +251,1940,14.98 +251,1941,14.947 +251,1942,14.855 +251,1943,15.088 +251,1944,15.283 +251,1945,15.322 +251,1946,14.951 +251,1947,14.941 +251,1948,15.129 +251,1949,15.082 +251,1950,15.098 +251,1951,15.255 +251,1952,14.99 +251,1953,15.105 +251,1954,14.781 +251,1955,15.057 +251,1956,14.928 +251,1957,15.189 +251,1958,15.111 +251,1959,15.017 +251,1960,15.191 +251,1961,15.124 +251,1962,15.14 +251,1963,15.333 +251,1964,14.832 +251,1965,14.879 +251,1966,15.036 +251,1967,15.117 +251,1968,14.904 +251,1969,15.062 +251,1970,15.062 +251,1971,15.102 +251,1972,15.111 +251,1973,14.997 +251,1974,14.916 +251,1975,14.781 +251,1976,15.03 +251,1977,15.086 +251,1978,14.965 +251,1979,15.16 +251,1980,15.479 +251,1981,15.353 +251,1982,15.185 +251,1983,15.531 +251,1984,15.234 +251,1985,15.164 +251,1986,15.16 +251,1987,15.396 +251,1988,15.587 +251,1989,15.378 +251,1990,15.516 +251,1991,15.423 +251,1992,15.175 +251,1993,15.345 +251,1994,15.471 +251,1995,15.552 +251,1996,15.346 +251,1997,15.561 +251,1998,15.619 +251,1999,15.58 +251,2000,15.597 +251,2001,15.67 +251,2002,15.665 +251,2003,15.687 +251,2004,15.571 +251,2005,15.823 +251,2006,15.454 +251,2007,15.668 +251,2008,15.703 +251,2009,15.664 +251,2010,15.571 +251,2011,15.781 +251,2012,15.785 +251,2013,15.793 +251,2014,15.835 +251,2015,15.952 +251,2016,15.982 +251,2017,15.971 +251,2018,15.834 +251,2019,16.057 +251,2020,16.079 +251,2021,16.095 +251,2022,16.049 +251,2023,16.448 +251,2024,NA +252,1940,14.936 +252,1941,14.789 +252,1942,14.858 +252,1943,15.032 +252,1944,15.201 +252,1945,15.293 +252,1946,14.967 +252,1947,14.962 +252,1948,15.072 +252,1949,15.072 +252,1950,15.063 +252,1951,15.246 +252,1952,14.94 +252,1953,15.047 +252,1954,14.833 +252,1955,15.021 +252,1956,14.845 +252,1957,15.127 +252,1958,15.081 +252,1959,15.001 +252,1960,15.004 +252,1961,15.139 +252,1962,15.049 +252,1963,15.326 +252,1964,14.81 +252,1965,14.911 +252,1966,14.983 +252,1967,15.049 +252,1968,14.956 +252,1969,15.022 +252,1970,14.98 +252,1971,15.037 +252,1972,15.112 +252,1973,15.001 +252,1974,14.975 +252,1975,14.812 +252,1976,14.922 +252,1977,15.067 +252,1978,14.933 +252,1979,15.205 +252,1980,15.42 +252,1981,15.36 +252,1982,15.284 +252,1983,15.475 +252,1984,15.256 +252,1985,15.167 +252,1986,15.165 +252,1987,15.409 +252,1988,15.544 +252,1989,15.341 +252,1990,15.499 +252,1991,15.376 +252,1992,15.221 +252,1993,15.295 +252,1994,15.353 +252,1995,15.49 +252,1996,15.396 +252,1997,15.534 +252,1998,15.54 +252,1999,15.534 +252,2000,15.532 +252,2001,15.628 +252,2002,15.621 +252,2003,15.6 +252,2004,15.509 +252,2005,15.842 +252,2006,15.48 +252,2007,15.627 +252,2008,15.724 +252,2009,15.619 +252,2010,15.596 +252,2011,15.757 +252,2012,15.743 +252,2013,15.79 +252,2014,15.836 +252,2015,15.931 +252,2016,16.003 +252,2017,15.936 +252,2018,15.817 +252,2019,15.988 +252,2020,16.018 +252,2021,16.05 +252,2022,16.047 +252,2023,16.423 +252,2024,NA +253,1940,14.91 +253,1941,14.708 +253,1942,14.894 +253,1943,14.988 +253,1944,15.179 +253,1945,15.218 +253,1946,15.059 +253,1947,15.001 +253,1948,14.97 +253,1949,15.054 +253,1950,15.065 +253,1951,15.258 +253,1952,14.871 +253,1953,14.955 +253,1954,14.833 +253,1955,14.963 +253,1956,14.839 +253,1957,15.086 +253,1958,15.024 +253,1959,14.94 +253,1960,14.894 +253,1961,15.207 +253,1962,15.017 +253,1963,15.353 +253,1964,14.799 +253,1965,14.933 +253,1966,14.909 +253,1967,15.01 +253,1968,14.972 +253,1969,15.04 +253,1970,14.928 +253,1971,14.974 +253,1972,15.151 +253,1973,15.04 +253,1974,14.971 +253,1975,14.807 +253,1976,14.854 +253,1977,15.052 +253,1978,14.872 +253,1979,15.206 +253,1980,15.307 +253,1981,15.372 +253,1982,15.293 +253,1983,15.432 +253,1984,15.296 +253,1985,15.211 +253,1986,15.174 +253,1987,15.461 +253,1988,15.485 +253,1989,15.278 +253,1990,15.531 +253,1991,15.38 +253,1992,15.228 +253,1993,15.221 +253,1994,15.253 +253,1995,15.445 +253,1996,15.391 +253,1997,15.473 +253,1998,15.461 +253,1999,15.48 +253,2000,15.446 +253,2001,15.603 +253,2002,15.579 +253,2003,15.57 +253,2004,15.493 +253,2005,15.821 +253,2006,15.456 +253,2007,15.571 +253,2008,15.718 +253,2009,15.566 +253,2010,15.65 +253,2011,15.75 +253,2012,15.702 +253,2013,15.784 +253,2014,15.815 +253,2015,15.917 +253,2016,15.954 +253,2017,15.934 +253,2018,15.784 +253,2019,15.914 +253,2020,16.019 +253,2021,16.047 +253,2022,15.986 +253,2023,16.474 +253,2024,NA +254,1940,14.869 +254,1941,14.679 +254,1942,14.893 +254,1943,14.961 +254,1944,15.213 +254,1945,15.15 +254,1946,15.118 +254,1947,15.036 +254,1948,14.881 +254,1949,15.047 +254,1950,15.019 +254,1951,15.253 +254,1952,14.875 +254,1953,14.93 +254,1954,14.9 +254,1955,14.912 +254,1956,14.783 +254,1957,15.062 +254,1958,14.951 +254,1959,14.869 +254,1960,14.894 +254,1961,15.261 +254,1962,15.036 +254,1963,15.313 +254,1964,14.74 +254,1965,14.895 +254,1966,14.894 +254,1967,14.96 +254,1968,14.997 +254,1969,15.061 +254,1970,14.809 +254,1971,14.98 +254,1972,15.116 +254,1973,15.067 +254,1974,14.983 +254,1975,14.842 +254,1976,14.835 +254,1977,15.034 +254,1978,14.897 +254,1979,15.156 +254,1980,15.28 +254,1981,15.332 +254,1982,15.278 +254,1983,15.376 +254,1984,15.316 +254,1985,15.19 +254,1986,15.173 +254,1987,15.464 +254,1988,15.462 +254,1989,15.26 +254,1990,15.522 +254,1991,15.339 +254,1992,15.204 +254,1993,15.155 +254,1994,15.222 +254,1995,15.415 +254,1996,15.383 +254,1997,15.421 +254,1998,15.438 +254,1999,15.402 +254,2000,15.374 +254,2001,15.585 +254,2002,15.612 +254,2003,15.533 +254,2004,15.513 +254,2005,15.728 +254,2006,15.465 +254,2007,15.503 +254,2008,15.722 +254,2009,15.577 +254,2010,15.603 +254,2011,15.755 +254,2012,15.667 +254,2013,15.749 +254,2014,15.76 +254,2015,15.887 +254,2016,15.967 +254,2017,15.955 +254,2018,15.77 +254,2019,15.889 +254,2020,16.019 +254,2021,16.027 +254,2022,15.92 +254,2023,16.522 +254,2024,NA +255,1940,14.764 +255,1941,14.665 +255,1942,14.896 +255,1943,14.907 +255,1944,15.226 +255,1945,15.144 +255,1946,15.101 +255,1947,14.992 +255,1948,14.785 +255,1949,15.012 +255,1950,14.983 +255,1951,15.128 +255,1952,14.964 +255,1953,14.9 +255,1954,14.88 +255,1955,14.891 +255,1956,14.658 +255,1957,15.08 +255,1958,14.883 +255,1959,14.811 +255,1960,14.906 +255,1961,15.217 +255,1962,15.031 +255,1963,15.197 +255,1964,14.675 +255,1965,14.802 +255,1966,14.844 +255,1967,14.916 +255,1968,14.945 +255,1969,15.034 +255,1970,14.778 +255,1971,14.901 +255,1972,15.108 +255,1973,15.077 +255,1974,14.994 +255,1975,14.83 +255,1976,14.838 +255,1977,15.038 +255,1978,14.885 +255,1979,15.108 +255,1980,15.314 +255,1981,15.304 +255,1982,15.165 +255,1983,15.327 +255,1984,15.244 +255,1985,15.15 +255,1986,15.143 +255,1987,15.445 +255,1988,15.45 +255,1989,15.171 +255,1990,15.475 +255,1991,15.283 +255,1992,15.058 +255,1993,15.106 +255,1994,15.236 +255,1995,15.42 +255,1996,15.373 +255,1997,15.362 +255,1998,15.461 +255,1999,15.403 +255,2000,15.356 +255,2001,15.583 +255,2002,15.588 +255,2003,15.518 +255,2004,15.475 +255,2005,15.636 +255,2006,15.492 +255,2007,15.385 +255,2008,15.71 +255,2009,15.658 +255,2010,15.578 +255,2011,15.705 +255,2012,15.638 +255,2013,15.791 +255,2014,15.742 +255,2015,15.847 +255,2016,15.953 +255,2017,15.935 +255,2018,15.729 +255,2019,15.859 +255,2020,16.004 +255,2021,16.004 +255,2022,15.921 +255,2023,16.556 +255,2024,NA +256,1940,14.709 +256,1941,14.584 +256,1942,14.872 +256,1943,14.867 +256,1944,15.219 +256,1945,15.094 +256,1946,15.053 +256,1947,14.917 +256,1948,14.712 +256,1949,15.006 +256,1950,14.928 +256,1951,15.033 +256,1952,15.037 +256,1953,14.913 +256,1954,14.768 +256,1955,14.916 +256,1956,14.576 +256,1957,15.039 +256,1958,14.854 +256,1959,14.777 +256,1960,14.924 +256,1961,15.16 +256,1962,15.029 +256,1963,15.098 +256,1964,14.633 +256,1965,14.747 +256,1966,14.817 +256,1967,14.864 +256,1968,14.884 +256,1969,15.019 +256,1970,14.771 +256,1971,14.811 +256,1972,15.165 +256,1973,15.066 +256,1974,14.931 +256,1975,14.759 +256,1976,14.884 +256,1977,15.019 +256,1978,14.833 +256,1979,15.107 +256,1980,15.321 +256,1981,15.285 +256,1982,15.066 +256,1983,15.293 +256,1984,15.169 +256,1985,15.09 +256,1986,15.069 +256,1987,15.434 +256,1988,15.425 +256,1989,15.129 +256,1990,15.348 +256,1991,15.294 +256,1992,14.925 +256,1993,15.076 +256,1994,15.285 +256,1995,15.425 +256,1996,15.337 +256,1997,15.329 +256,1998,15.52 +256,1999,15.418 +256,2000,15.318 +256,2001,15.605 +256,2002,15.499 +256,2003,15.528 +256,2004,15.422 +256,2005,15.598 +256,2006,15.483 +256,2007,15.314 +256,2008,15.623 +256,2009,15.767 +256,2010,15.51 +256,2011,15.665 +256,2012,15.595 +256,2013,15.841 +256,2014,15.698 +256,2015,15.747 +256,2016,15.932 +256,2017,15.95 +256,2018,15.71 +256,2019,15.823 +256,2020,15.979 +256,2021,15.986 +256,2022,15.919 +256,2023,16.486 +256,2024,NA +257,1940,14.768 +257,1941,14.536 +257,1942,14.879 +257,1943,14.809 +257,1944,15.142 +257,1945,15.053 +257,1946,15.012 +257,1947,14.824 +257,1948,14.61 +257,1949,14.981 +257,1950,14.883 +257,1951,14.944 +257,1952,15.108 +257,1953,14.89 +257,1954,14.633 +257,1955,14.888 +257,1956,14.504 +257,1957,14.938 +257,1958,14.769 +257,1959,14.783 +257,1960,14.91 +257,1961,15.138 +257,1962,15.044 +257,1963,15.006 +257,1964,14.565 +257,1965,14.739 +257,1966,14.862 +257,1967,14.837 +257,1968,14.893 +257,1969,14.988 +257,1970,14.718 +257,1971,14.816 +257,1972,15.159 +257,1973,15.049 +257,1974,14.821 +257,1975,14.709 +257,1976,14.902 +257,1977,14.95 +257,1978,14.759 +257,1979,15.078 +257,1980,15.27 +257,1981,15.201 +257,1982,15.03 +257,1983,15.293 +257,1984,15.141 +257,1985,15.041 +257,1986,15.027 +257,1987,15.453 +257,1988,15.366 +257,1989,15.12 +257,1990,15.206 +257,1991,15.277 +257,1992,14.868 +257,1993,15.044 +257,1994,15.309 +257,1995,15.349 +257,1996,15.31 +257,1997,15.31 +257,1998,15.527 +257,1999,15.384 +257,2000,15.312 +257,2001,15.572 +257,2002,15.496 +257,2003,15.511 +257,2004,15.398 +257,2005,15.642 +257,2006,15.451 +257,2007,15.276 +257,2008,15.545 +257,2009,15.803 +257,2010,15.539 +257,2011,15.614 +257,2012,15.537 +257,2013,15.83 +257,2014,15.616 +257,2015,15.712 +257,2016,15.883 +257,2017,15.927 +257,2018,15.718 +257,2019,15.817 +257,2020,15.937 +257,2021,15.961 +257,2022,15.893 +257,2023,16.421 +257,2024,NA +258,1940,14.871 +258,1941,14.529 +258,1942,14.841 +258,1943,14.748 +258,1944,15.076 +258,1945,15.02 +258,1946,14.919 +258,1947,14.776 +258,1948,14.582 +258,1949,14.959 +258,1950,14.813 +258,1951,14.941 +258,1952,15.129 +258,1953,14.846 +258,1954,14.547 +258,1955,14.868 +258,1956,14.509 +258,1957,14.918 +258,1958,14.671 +258,1959,14.73 +258,1960,14.802 +258,1961,15.07 +258,1962,14.918 +258,1963,14.945 +258,1964,14.511 +258,1965,14.77 +258,1966,14.891 +258,1967,14.885 +258,1968,14.913 +258,1969,14.949 +258,1970,14.669 +258,1971,14.801 +258,1972,15.139 +258,1973,15.009 +258,1974,14.771 +258,1975,14.651 +258,1976,14.919 +258,1977,14.847 +258,1978,14.734 +258,1979,15.034 +258,1980,15.156 +258,1981,15.119 +258,1982,14.948 +258,1983,15.327 +258,1984,15.141 +258,1985,14.99 +258,1986,15.003 +258,1987,15.476 +258,1988,15.297 +258,1989,15.105 +258,1990,15.214 +258,1991,15.259 +258,1992,14.795 +258,1993,15.004 +258,1994,15.3 +258,1995,15.266 +258,1996,15.3 +258,1997,15.251 +258,1998,15.462 +258,1999,15.304 +258,2000,15.348 +258,2001,15.508 +258,2002,15.502 +258,2003,15.445 +258,2004,15.431 +258,2005,15.682 +258,2006,15.504 +258,2007,15.274 +258,2008,15.424 +258,2009,15.812 +258,2010,15.535 +258,2011,15.524 +258,2012,15.51 +258,2013,15.72 +258,2014,15.575 +258,2015,15.711 +258,2016,15.865 +258,2017,15.869 +258,2018,15.706 +258,2019,15.867 +258,2020,15.912 +258,2021,15.982 +258,2022,15.906 +258,2023,16.413 +258,2024,NA +259,1940,14.943 +259,1941,14.494 +259,1942,14.804 +259,1943,14.674 +259,1944,15.009 +259,1945,14.967 +259,1946,14.827 +259,1947,14.661 +259,1948,14.556 +259,1949,14.898 +259,1950,14.775 +259,1951,14.909 +259,1952,15.101 +259,1953,14.794 +259,1954,14.47 +259,1955,14.881 +259,1956,14.519 +259,1957,14.919 +259,1958,14.577 +259,1959,14.718 +259,1960,14.713 +259,1961,14.987 +259,1962,14.793 +259,1963,14.951 +259,1964,14.506 +259,1965,14.757 +259,1966,14.858 +259,1967,14.914 +259,1968,14.893 +259,1969,14.873 +259,1970,14.635 +259,1971,14.749 +259,1972,15.029 +259,1973,14.902 +259,1974,14.723 +259,1975,14.624 +259,1976,14.894 +259,1977,14.826 +259,1978,14.72 +259,1979,15.001 +259,1980,15.037 +259,1981,15.092 +259,1982,14.943 +259,1983,15.338 +259,1984,15.147 +259,1985,14.998 +259,1986,14.981 +259,1987,15.477 +259,1988,15.24 +259,1989,15.119 +259,1990,15.201 +259,1991,15.259 +259,1992,14.748 +259,1993,14.948 +259,1994,15.244 +259,1995,15.235 +259,1996,15.262 +259,1997,15.22 +259,1998,15.393 +259,1999,15.244 +259,2000,15.348 +259,2001,15.402 +259,2002,15.45 +259,2003,15.46 +259,2004,15.441 +259,2005,15.676 +259,2006,15.545 +259,2007,15.279 +259,2008,15.352 +259,2009,15.774 +259,2010,15.537 +259,2011,15.436 +259,2012,15.479 +259,2013,15.674 +259,2014,15.557 +259,2015,15.756 +259,2016,15.876 +259,2017,15.782 +259,2018,15.681 +259,2019,15.871 +259,2020,15.937 +259,2021,16.03 +259,2022,15.873 +259,2023,16.481 +259,2024,NA +260,1940,14.957 +260,1941,14.467 +260,1942,14.7 +260,1943,14.655 +260,1944,14.938 +260,1945,14.877 +260,1946,14.783 +260,1947,14.58 +260,1948,14.541 +260,1949,14.81 +260,1950,14.715 +260,1951,14.92 +260,1952,14.974 +260,1953,14.755 +260,1954,14.482 +260,1955,14.849 +260,1956,14.561 +260,1957,14.963 +260,1958,14.53 +260,1959,14.687 +260,1960,14.677 +260,1961,14.965 +260,1962,14.771 +260,1963,14.964 +260,1964,14.442 +260,1965,14.708 +260,1966,14.785 +260,1967,14.905 +260,1968,14.841 +260,1969,14.847 +260,1970,14.678 +260,1971,14.723 +260,1972,14.985 +260,1973,14.798 +260,1974,14.676 +260,1975,14.619 +260,1976,14.933 +260,1977,14.841 +260,1978,14.769 +260,1979,14.977 +260,1980,14.99 +260,1981,15.141 +260,1982,14.996 +260,1983,15.393 +260,1984,15.077 +260,1985,14.99 +260,1986,14.938 +260,1987,15.464 +260,1988,15.165 +260,1989,15.136 +260,1990,15.14 +260,1991,15.31 +260,1992,14.779 +260,1993,14.904 +260,1994,15.205 +260,1995,15.23 +260,1996,15.192 +260,1997,15.24 +260,1998,15.37 +260,1999,15.216 +260,2000,15.211 +260,2001,15.342 +260,2002,15.442 +260,2003,15.47 +260,2004,15.467 +260,2005,15.681 +260,2006,15.523 +260,2007,15.297 +260,2008,15.257 +260,2009,15.697 +260,2010,15.591 +260,2011,15.351 +260,2012,15.439 +260,2013,15.621 +260,2014,15.537 +260,2015,15.799 +260,2016,15.868 +260,2017,15.703 +260,2018,15.653 +260,2019,15.85 +260,2020,15.944 +260,2021,15.979 +260,2022,15.864 +260,2023,16.522 +260,2024,NA +261,1940,14.965 +261,1941,14.499 +261,1942,14.588 +261,1943,14.642 +261,1944,14.859 +261,1945,14.834 +261,1946,14.766 +261,1947,14.517 +261,1948,14.503 +261,1949,14.749 +261,1950,14.614 +261,1951,14.94 +261,1952,14.903 +261,1953,14.67 +261,1954,14.519 +261,1955,14.774 +261,1956,14.525 +261,1957,14.931 +261,1958,14.466 +261,1959,14.657 +261,1960,14.666 +261,1961,14.939 +261,1962,14.812 +261,1963,14.995 +261,1964,14.4 +261,1965,14.623 +261,1966,14.747 +261,1967,14.843 +261,1968,14.737 +261,1969,14.892 +261,1970,14.802 +261,1971,14.703 +261,1972,14.975 +261,1973,14.754 +261,1974,14.6 +261,1975,14.644 +261,1976,14.97 +261,1977,14.834 +261,1978,14.715 +261,1979,14.961 +261,1980,14.958 +261,1981,15.165 +261,1982,14.993 +261,1983,15.378 +261,1984,14.968 +261,1985,14.932 +261,1986,14.899 +261,1987,15.379 +261,1988,15.086 +261,1989,15.143 +261,1990,15.03 +261,1991,15.314 +261,1992,14.761 +261,1993,14.923 +261,1994,15.22 +261,1995,15.194 +261,1996,15.134 +261,1997,15.269 +261,1998,15.417 +261,1999,15.179 +261,2000,15.163 +261,2001,15.272 +261,2002,15.421 +261,2003,15.486 +261,2004,15.463 +261,2005,15.721 +261,2006,15.54 +261,2007,15.331 +261,2008,15.215 +261,2009,15.631 +261,2010,15.587 +261,2011,15.308 +261,2012,15.413 +261,2013,15.575 +261,2014,15.556 +261,2015,15.758 +261,2016,15.865 +261,2017,15.689 +261,2018,15.655 +261,2019,15.788 +261,2020,15.91 +261,2021,15.866 +261,2022,15.857 +261,2023,16.481 +261,2024,NA +262,1940,14.967 +262,1941,14.48 +262,1942,14.629 +262,1943,14.585 +262,1944,14.858 +262,1945,14.829 +262,1946,14.76 +262,1947,14.552 +262,1948,14.524 +262,1949,14.727 +262,1950,14.594 +262,1951,14.945 +262,1952,14.833 +262,1953,14.677 +262,1954,14.563 +262,1955,14.707 +262,1956,14.491 +262,1957,14.905 +262,1958,14.451 +262,1959,14.648 +262,1960,14.655 +262,1961,14.948 +262,1962,14.751 +262,1963,15.004 +262,1964,14.434 +262,1965,14.596 +262,1966,14.776 +262,1967,14.797 +262,1968,14.639 +262,1969,14.802 +262,1970,14.854 +262,1971,14.695 +262,1972,14.912 +262,1973,14.725 +262,1974,14.556 +262,1975,14.707 +262,1976,14.894 +262,1977,14.787 +262,1978,14.693 +262,1979,14.999 +262,1980,14.975 +262,1981,15.139 +262,1982,14.989 +262,1983,15.306 +262,1984,14.903 +262,1985,14.902 +262,1986,14.868 +262,1987,15.288 +262,1988,15.082 +262,1989,15.15 +262,1990,14.899 +262,1991,15.261 +262,1992,14.716 +262,1993,14.959 +262,1994,15.246 +262,1995,15.131 +262,1996,15.101 +262,1997,15.272 +262,1998,15.355 +262,1999,15.169 +262,2000,15.113 +262,2001,15.222 +262,2002,15.386 +262,2003,15.491 +262,2004,15.421 +262,2005,15.725 +262,2006,15.557 +262,2007,15.302 +262,2008,15.261 +262,2009,15.577 +262,2010,15.582 +262,2011,15.282 +262,2012,15.414 +262,2013,15.566 +262,2014,15.535 +262,2015,15.717 +262,2016,15.878 +262,2017,15.772 +262,2018,15.662 +262,2019,15.722 +262,2020,15.834 +262,2021,15.822 +262,2022,15.863 +262,2023,16.401 +262,2024,NA +263,1940,14.947 +263,1941,14.448 +263,1942,14.643 +263,1943,14.499 +263,1944,14.807 +263,1945,14.83 +263,1946,14.711 +263,1947,14.549 +263,1948,14.556 +263,1949,14.719 +263,1950,14.64 +263,1951,14.856 +263,1952,14.751 +263,1953,14.688 +263,1954,14.582 +263,1955,14.658 +263,1956,14.457 +263,1957,14.857 +263,1958,14.48 +263,1959,14.58 +263,1960,14.658 +263,1961,14.871 +263,1962,14.641 +263,1963,14.892 +263,1964,14.484 +263,1965,14.636 +263,1966,14.74 +263,1967,14.757 +263,1968,14.563 +263,1969,14.698 +263,1970,14.805 +263,1971,14.604 +263,1972,14.839 +263,1973,14.707 +263,1974,14.455 +263,1975,14.69 +263,1976,14.829 +263,1977,14.761 +263,1978,14.726 +263,1979,15.041 +263,1980,15.008 +263,1981,15.115 +263,1982,14.967 +263,1983,15.214 +263,1984,14.851 +263,1985,14.835 +263,1986,14.843 +263,1987,15.164 +263,1988,15.141 +263,1989,15.168 +263,1990,14.882 +263,1991,15.163 +263,1992,14.663 +263,1993,14.914 +263,1994,15.222 +263,1995,15.056 +263,1996,15.023 +263,1997,15.226 +263,1998,15.287 +263,1999,15.172 +263,2000,15.044 +263,2001,15.169 +263,2002,15.371 +263,2003,15.492 +263,2004,15.343 +263,2005,15.703 +263,2006,15.584 +263,2007,15.237 +263,2008,15.274 +263,2009,15.492 +263,2010,15.542 +263,2011,15.249 +263,2012,15.438 +263,2013,15.585 +263,2014,15.518 +263,2015,15.712 +263,2016,15.787 +263,2017,15.78 +263,2018,15.62 +263,2019,15.746 +263,2020,15.822 +263,2021,15.803 +263,2022,15.81 +263,2023,16.341 +263,2024,NA +264,1940,14.884 +264,1941,14.395 +264,1942,14.622 +264,1943,14.513 +264,1944,14.824 +264,1945,14.755 +264,1946,14.726 +264,1947,14.537 +264,1948,14.551 +264,1949,14.673 +264,1950,14.656 +264,1951,14.796 +264,1952,14.7 +264,1953,14.667 +264,1954,14.553 +264,1955,14.625 +264,1956,14.387 +264,1957,14.788 +264,1958,14.47 +264,1959,14.541 +264,1960,14.661 +264,1961,14.816 +264,1962,14.58 +264,1963,14.779 +264,1964,14.5 +264,1965,14.664 +264,1966,14.663 +264,1967,14.75 +264,1968,14.464 +264,1969,14.624 +264,1970,14.767 +264,1971,14.547 +264,1972,14.717 +264,1973,14.691 +264,1974,14.451 +264,1975,14.624 +264,1976,14.741 +264,1977,14.758 +264,1978,14.695 +264,1979,15.032 +264,1980,14.979 +264,1981,15.086 +264,1982,14.935 +264,1983,15.117 +264,1984,14.763 +264,1985,14.798 +264,1986,14.83 +264,1987,15.064 +264,1988,15.192 +264,1989,15.172 +264,1990,14.955 +264,1991,15.136 +264,1992,14.651 +264,1993,14.867 +264,1994,15.189 +264,1995,14.975 +264,1996,14.936 +264,1997,15.215 +264,1998,15.237 +264,1999,15.157 +264,2000,15.009 +264,2001,15.188 +264,2002,15.382 +264,2003,15.461 +264,2004,15.303 +264,2005,15.65 +264,2006,15.585 +264,2007,15.207 +264,2008,15.255 +264,2009,15.418 +264,2010,15.493 +264,2011,15.174 +264,2012,15.442 +264,2013,15.596 +264,2014,15.474 +264,2015,15.682 +264,2016,15.727 +264,2017,15.76 +264,2018,15.558 +264,2019,15.709 +264,2020,15.75 +264,2021,15.751 +264,2022,15.715 +264,2023,16.325 +264,2024,NA +265,1940,14.819 +265,1941,14.359 +265,1942,14.602 +265,1943,14.511 +265,1944,14.836 +265,1945,14.706 +265,1946,14.697 +265,1947,14.563 +265,1948,14.519 +265,1949,14.658 +265,1950,14.587 +265,1951,14.764 +265,1952,14.651 +265,1953,14.646 +265,1954,14.482 +265,1955,14.586 +265,1956,14.275 +265,1957,14.748 +265,1958,14.467 +265,1959,14.5 +265,1960,14.579 +265,1961,14.781 +265,1962,14.524 +265,1963,14.668 +265,1964,14.49 +265,1965,14.679 +265,1966,14.676 +265,1967,14.735 +265,1968,14.369 +265,1969,14.594 +265,1970,14.827 +265,1971,14.547 +265,1972,14.618 +265,1973,14.692 +265,1974,14.492 +265,1975,14.53 +265,1976,14.625 +265,1977,14.704 +265,1978,14.686 +265,1979,15.046 +265,1980,14.895 +265,1981,15.038 +265,1982,14.886 +265,1983,15.038 +265,1984,14.681 +265,1985,14.747 +265,1986,14.826 +265,1987,15.001 +265,1988,15.182 +265,1989,15.216 +265,1990,14.989 +265,1991,15.161 +265,1992,14.69 +265,1993,14.765 +265,1994,15.113 +265,1995,14.906 +265,1996,14.951 +265,1997,15.227 +265,1998,15.186 +265,1999,15.098 +265,2000,14.975 +265,2001,15.186 +265,2002,15.393 +265,2003,15.439 +265,2004,15.314 +265,2005,15.611 +265,2006,15.561 +265,2007,15.245 +265,2008,15.244 +265,2009,15.372 +265,2010,15.449 +265,2011,15.206 +265,2012,15.465 +265,2013,15.573 +265,2014,15.5 +265,2015,15.613 +265,2016,15.721 +265,2017,15.709 +265,2018,15.567 +265,2019,15.661 +265,2020,15.685 +265,2021,15.631 +265,2022,15.611 +265,2023,16.358 +265,2024,NA +266,1940,14.732 +266,1941,14.306 +266,1942,14.558 +266,1943,14.446 +266,1944,14.842 +266,1945,14.636 +266,1946,14.645 +266,1947,14.55 +266,1948,14.464 +266,1949,14.703 +266,1950,14.581 +266,1951,14.735 +266,1952,14.574 +266,1953,14.622 +266,1954,14.453 +266,1955,14.543 +266,1956,14.234 +266,1957,14.759 +266,1958,14.513 +266,1959,14.498 +266,1960,14.533 +266,1961,14.766 +266,1962,14.46 +266,1963,14.61 +266,1964,14.468 +266,1965,14.699 +266,1966,14.7 +266,1967,14.756 +266,1968,14.35 +266,1969,14.617 +266,1970,14.845 +266,1971,14.542 +266,1972,14.626 +266,1973,14.654 +266,1974,14.434 +266,1975,14.462 +266,1976,14.519 +266,1977,14.704 +266,1978,14.694 +266,1979,15.05 +266,1980,14.829 +266,1981,15.006 +266,1982,14.841 +266,1983,15.028 +266,1984,14.614 +266,1985,14.745 +266,1986,14.771 +266,1987,14.952 +266,1988,15.162 +266,1989,15.164 +266,1990,15.03 +266,1991,15.146 +266,1992,14.65 +266,1993,14.692 +266,1994,15.071 +266,1995,14.847 +266,1996,14.919 +266,1997,15.246 +266,1998,15.107 +266,1999,15.107 +266,2000,14.907 +266,2001,15.218 +266,2002,15.35 +266,2003,15.41 +266,2004,15.352 +266,2005,15.557 +266,2006,15.548 +266,2007,15.224 +266,2008,15.162 +266,2009,15.3 +266,2010,15.443 +266,2011,15.213 +266,2012,15.428 +266,2013,15.531 +266,2014,15.461 +266,2015,15.532 +266,2016,15.7 +266,2017,15.623 +266,2018,15.597 +266,2019,15.643 +266,2020,15.669 +266,2021,15.569 +266,2022,15.556 +266,2023,16.381 +266,2024,NA +267,1940,14.623 +267,1941,14.311 +267,1942,14.519 +267,1943,14.392 +267,1944,14.799 +267,1945,14.559 +267,1946,14.556 +267,1947,14.482 +267,1948,14.441 +267,1949,14.696 +267,1950,14.534 +267,1951,14.7 +267,1952,14.538 +267,1953,14.614 +267,1954,14.394 +267,1955,14.514 +267,1956,14.159 +267,1957,14.718 +267,1958,14.595 +267,1959,14.526 +267,1960,14.549 +267,1961,14.745 +267,1962,14.462 +267,1963,14.556 +267,1964,14.486 +267,1965,14.731 +267,1966,14.76 +267,1967,14.667 +267,1968,14.479 +267,1969,14.668 +267,1970,14.785 +267,1971,14.558 +267,1972,14.642 +267,1973,14.63 +267,1974,14.423 +267,1975,14.426 +267,1976,14.462 +267,1977,14.638 +267,1978,14.636 +267,1979,15.011 +267,1980,14.77 +267,1981,14.962 +267,1982,14.815 +267,1983,14.999 +267,1984,14.599 +267,1985,14.679 +267,1986,14.755 +267,1987,14.867 +267,1988,15.079 +267,1989,15.029 +267,1990,14.984 +267,1991,15.1 +267,1992,14.631 +267,1993,14.699 +267,1994,15.07 +267,1995,14.802 +267,1996,14.857 +267,1997,15.315 +267,1998,15.064 +267,1999,15.121 +267,2000,14.869 +267,2001,15.242 +267,2002,15.293 +267,2003,15.353 +267,2004,15.342 +267,2005,15.486 +267,2006,15.526 +267,2007,15.197 +267,2008,15.13 +267,2009,15.269 +267,2010,15.444 +267,2011,15.172 +267,2012,15.359 +267,2013,15.417 +267,2014,15.408 +267,2015,15.472 +267,2016,15.626 +267,2017,15.533 +267,2018,15.583 +267,2019,15.594 +267,2020,15.654 +267,2021,15.541 +267,2022,15.544 +267,2023,16.351 +267,2024,NA +268,1940,14.565 +268,1941,14.276 +268,1942,14.505 +268,1943,14.455 +268,1944,14.767 +268,1945,14.538 +268,1946,14.56 +268,1947,14.5 +268,1948,14.421 +268,1949,14.592 +268,1950,14.46 +268,1951,14.633 +268,1952,14.513 +268,1953,14.605 +268,1954,14.347 +268,1955,14.486 +268,1956,14.095 +268,1957,14.656 +268,1958,14.679 +268,1959,14.537 +268,1960,14.553 +268,1961,14.713 +268,1962,14.417 +268,1963,14.551 +268,1964,14.482 +268,1965,14.673 +268,1966,14.812 +268,1967,14.7 +268,1968,14.553 +268,1969,14.629 +268,1970,14.752 +268,1971,14.613 +268,1972,14.547 +268,1973,14.603 +268,1974,14.438 +268,1975,14.387 +268,1976,14.464 +268,1977,14.595 +268,1978,14.617 +268,1979,14.971 +268,1980,14.72 +268,1981,14.92 +268,1982,14.771 +268,1983,14.973 +268,1984,14.6 +268,1985,14.651 +268,1986,14.733 +268,1987,14.834 +268,1988,15.028 +268,1989,14.914 +268,1990,14.931 +268,1991,15.08 +268,1992,14.64 +268,1993,14.687 +268,1994,15.043 +268,1995,14.807 +268,1996,14.801 +268,1997,15.385 +268,1998,15.05 +268,1999,15.102 +268,2000,14.77 +268,2001,15.185 +268,2002,15.227 +268,2003,15.288 +268,2004,15.304 +268,2005,15.384 +268,2006,15.452 +268,2007,15.155 +268,2008,15.106 +268,2009,15.291 +268,2010,15.417 +268,2011,15.185 +268,2012,15.314 +268,2013,15.359 +268,2014,15.389 +268,2015,15.461 +268,2016,15.603 +268,2017,15.477 +268,2018,15.537 +268,2019,15.611 +268,2020,15.679 +268,2021,15.476 +268,2022,15.58 +268,2023,16.324 +268,2024,NA +269,1940,14.468 +269,1941,14.204 +269,1942,14.445 +269,1943,14.436 +269,1944,14.767 +269,1945,14.574 +269,1946,14.547 +269,1947,14.495 +269,1948,14.396 +269,1949,14.482 +269,1950,14.378 +269,1951,14.605 +269,1952,14.508 +269,1953,14.573 +269,1954,14.279 +269,1955,14.472 +269,1956,14.102 +269,1957,14.652 +269,1958,14.714 +269,1959,14.529 +269,1960,14.543 +269,1961,14.653 +269,1962,14.337 +269,1963,14.605 +269,1964,14.405 +269,1965,14.529 +269,1966,14.818 +269,1967,14.72 +269,1968,14.529 +269,1969,14.595 +269,1970,14.68 +269,1971,14.58 +269,1972,14.489 +269,1973,14.579 +269,1974,14.442 +269,1975,14.39 +269,1976,14.368 +269,1977,14.578 +269,1978,14.621 +269,1979,14.955 +269,1980,14.727 +269,1981,14.873 +269,1982,14.713 +269,1983,14.99 +269,1984,14.59 +269,1985,14.649 +269,1986,14.664 +269,1987,14.856 +269,1988,14.976 +269,1989,14.831 +269,1990,14.927 +269,1991,15.051 +269,1992,14.571 +269,1993,14.585 +269,1994,15.011 +269,1995,14.874 +269,1996,14.773 +269,1997,15.379 +269,1998,15.097 +269,1999,15.052 +269,2000,14.697 +269,2001,15.092 +269,2002,15.178 +269,2003,15.293 +269,2004,15.302 +269,2005,15.27 +269,2006,15.446 +269,2007,15.075 +269,2008,15.125 +269,2009,15.266 +269,2010,15.399 +269,2011,15.217 +269,2012,15.31 +269,2013,15.326 +269,2014,15.375 +269,2015,15.466 +269,2016,15.547 +269,2017,15.371 +269,2018,15.449 +269,2019,15.642 +269,2020,15.68 +269,2021,15.46 +269,2022,15.554 +269,2023,16.251 +269,2024,NA +270,1940,14.372 +270,1941,14.172 +270,1942,14.387 +270,1943,14.47 +270,1944,14.75 +270,1945,14.505 +270,1946,14.487 +270,1947,14.507 +270,1948,14.473 +270,1949,14.414 +270,1950,14.395 +270,1951,14.534 +270,1952,14.52 +270,1953,14.557 +270,1954,14.165 +270,1955,14.435 +270,1956,14.167 +270,1957,14.616 +270,1958,14.696 +270,1959,14.522 +270,1960,14.551 +270,1961,14.564 +270,1962,14.295 +270,1963,14.621 +270,1964,14.261 +270,1965,14.44 +270,1966,14.825 +270,1967,14.673 +270,1968,14.482 +270,1969,14.581 +270,1970,14.657 +270,1971,14.557 +270,1972,14.501 +270,1973,14.517 +270,1974,14.44 +270,1975,14.414 +270,1976,14.319 +270,1977,14.537 +270,1978,14.552 +270,1979,14.96 +270,1980,14.706 +270,1981,14.826 +270,1982,14.663 +270,1983,15.014 +270,1984,14.549 +270,1985,14.603 +270,1986,14.589 +270,1987,14.849 +270,1988,14.881 +270,1989,14.754 +270,1990,14.989 +270,1991,14.988 +270,1992,14.505 +270,1993,14.471 +270,1994,14.943 +270,1995,14.958 +270,1996,14.741 +270,1997,15.375 +270,1998,15.171 +270,1999,14.954 +270,2000,14.634 +270,2001,14.995 +270,2002,15.201 +270,2003,15.339 +270,2004,15.241 +270,2005,15.158 +270,2006,15.484 +270,2007,15.047 +270,2008,15.118 +270,2009,15.277 +270,2010,15.384 +270,2011,15.271 +270,2012,15.315 +270,2013,15.33 +270,2014,15.376 +270,2015,15.373 +270,2016,15.47 +270,2017,15.333 +270,2018,15.39 +270,2019,15.64 +270,2020,15.618 +270,2021,15.492 +270,2022,15.518 +270,2023,16.21 +270,2024,NA +271,1940,14.351 +271,1941,14.19 +271,1942,14.374 +271,1943,14.506 +271,1944,14.721 +271,1945,14.468 +271,1946,14.387 +271,1947,14.542 +271,1948,14.532 +271,1949,14.394 +271,1950,14.449 +271,1951,14.436 +271,1952,14.478 +271,1953,14.521 +271,1954,14.127 +271,1955,14.386 +271,1956,14.165 +271,1957,14.579 +271,1958,14.576 +271,1959,14.508 +271,1960,14.558 +271,1961,14.451 +271,1962,14.269 +271,1963,14.63 +271,1964,14.128 +271,1965,14.429 +271,1966,14.825 +271,1967,14.569 +271,1968,14.478 +271,1969,14.545 +271,1970,14.633 +271,1971,14.528 +271,1972,14.477 +271,1973,14.423 +271,1974,14.427 +271,1975,14.407 +271,1976,14.307 +271,1977,14.479 +271,1978,14.484 +271,1979,14.894 +271,1980,14.636 +271,1981,14.763 +271,1982,14.633 +271,1983,14.868 +271,1984,14.489 +271,1985,14.516 +271,1986,14.519 +271,1987,14.791 +271,1988,14.794 +271,1989,14.728 +271,1990,15.046 +271,1991,14.913 +271,1992,14.457 +271,1993,14.416 +271,1994,14.884 +271,1995,14.966 +271,1996,14.666 +271,1997,15.323 +271,1998,15.228 +271,1999,14.862 +271,2000,14.695 +271,2001,14.919 +271,2002,15.21 +271,2003,15.312 +271,2004,15.164 +271,2005,15.086 +271,2006,15.461 +271,2007,15.019 +271,2008,15.106 +271,2009,15.329 +271,2010,15.302 +271,2011,15.243 +271,2012,15.345 +271,2013,15.307 +271,2014,15.347 +271,2015,15.294 +271,2016,15.45 +271,2017,15.277 +271,2018,15.37 +271,2019,15.653 +271,2020,15.531 +271,2021,15.5 +271,2022,15.476 +271,2023,16.162 +271,2024,NA +272,1940,14.313 +272,1941,14.163 +272,1942,14.335 +272,1943,14.476 +272,1944,14.695 +272,1945,14.446 +272,1946,14.304 +272,1947,14.558 +272,1948,14.538 +272,1949,14.367 +272,1950,14.468 +272,1951,14.444 +272,1952,14.461 +272,1953,14.465 +272,1954,14.081 +272,1955,14.349 +272,1956,14.166 +272,1957,14.573 +272,1958,14.521 +272,1959,14.479 +272,1960,14.549 +272,1961,14.343 +272,1962,14.195 +272,1963,14.573 +272,1964,13.997 +272,1965,14.427 +272,1966,14.729 +272,1967,14.49 +272,1968,14.412 +272,1969,14.51 +272,1970,14.553 +272,1971,14.503 +272,1972,14.392 +272,1973,14.379 +272,1974,14.385 +272,1975,14.402 +272,1976,14.299 +272,1977,14.459 +272,1978,14.461 +272,1979,14.848 +272,1980,14.595 +272,1981,14.724 +272,1982,14.586 +272,1983,14.73 +272,1984,14.465 +272,1985,14.442 +272,1986,14.42 +272,1987,14.772 +272,1988,14.741 +272,1989,14.732 +272,1990,15.001 +272,1991,14.869 +272,1992,14.413 +272,1993,14.385 +272,1994,14.908 +272,1995,14.919 +272,1996,14.606 +272,1997,15.257 +272,1998,15.219 +272,1999,14.759 +272,2000,14.708 +272,2001,14.9 +272,2002,15.158 +272,2003,15.205 +272,2004,15.114 +272,2005,15.025 +272,2006,15.384 +272,2007,15.015 +272,2008,15.066 +272,2009,15.31 +272,2010,15.277 +272,2011,15.194 +272,2012,15.351 +272,2013,15.263 +272,2014,15.333 +272,2015,15.336 +272,2016,15.483 +272,2017,15.233 +272,2018,15.365 +272,2019,15.586 +272,2020,15.45 +272,2021,15.484 +272,2022,15.37 +272,2023,16.131 +272,2024,NA +273,1940,14.289 +273,1941,14.221 +273,1942,14.346 +273,1943,14.429 +273,1944,14.677 +273,1945,14.37 +273,1946,14.202 +273,1947,14.563 +273,1948,14.565 +273,1949,14.36 +273,1950,14.456 +273,1951,14.478 +273,1952,14.442 +273,1953,14.406 +273,1954,14.031 +273,1955,14.314 +273,1956,14.174 +273,1957,14.572 +273,1958,14.454 +273,1959,14.454 +273,1960,14.545 +273,1961,14.318 +273,1962,14.224 +273,1963,14.529 +273,1964,13.949 +273,1965,14.357 +273,1966,14.628 +273,1967,14.413 +273,1968,14.302 +273,1969,14.473 +273,1970,14.482 +273,1971,14.494 +273,1972,14.336 +273,1973,14.376 +273,1974,14.292 +273,1975,14.405 +273,1976,14.236 +273,1977,14.38 +273,1978,14.411 +273,1979,14.8 +273,1980,14.572 +273,1981,14.661 +273,1982,14.547 +273,1983,14.689 +273,1984,14.445 +273,1985,14.425 +273,1986,14.356 +273,1987,14.828 +273,1988,14.757 +273,1989,14.756 +273,1990,14.984 +273,1991,14.814 +273,1992,14.336 +273,1993,14.385 +273,1994,14.873 +273,1995,14.853 +273,1996,14.547 +273,1997,15.206 +273,1998,15.166 +273,1999,14.658 +273,2000,14.681 +273,2001,14.938 +273,2002,15.093 +273,2003,15.168 +273,2004,14.964 +273,2005,14.973 +273,2006,15.338 +273,2007,14.981 +273,2008,15.038 +273,2009,15.205 +273,2010,15.206 +273,2011,15.13 +273,2012,15.342 +273,2013,15.188 +273,2014,15.328 +273,2015,15.357 +273,2016,15.443 +273,2017,15.198 +273,2018,15.361 +273,2019,15.564 +273,2020,15.414 +273,2021,15.413 +273,2022,15.301 +273,2023,16.077 +273,2024,NA +274,1940,14.292 +274,1941,14.315 +274,1942,14.343 +274,1943,14.381 +274,1944,14.64 +274,1945,14.298 +274,1946,14.178 +274,1947,14.527 +274,1948,14.631 +274,1949,14.351 +274,1950,14.416 +274,1951,14.414 +274,1952,14.4 +274,1953,14.368 +274,1954,13.95 +274,1955,14.258 +274,1956,14.206 +274,1957,14.569 +274,1958,14.382 +274,1959,14.363 +274,1960,14.502 +274,1961,14.325 +274,1962,14.289 +274,1963,14.478 +274,1964,13.959 +274,1965,14.302 +274,1966,14.514 +274,1967,14.393 +274,1968,14.264 +274,1969,14.438 +274,1970,14.437 +274,1971,14.506 +274,1972,14.32 +274,1973,14.278 +274,1974,14.212 +274,1975,14.326 +274,1976,14.258 +274,1977,14.311 +274,1978,14.394 +274,1979,14.731 +274,1980,14.589 +274,1981,14.571 +274,1982,14.527 +274,1983,14.662 +274,1984,14.426 +274,1985,14.465 +274,1986,14.31 +274,1987,14.83 +274,1988,14.739 +274,1989,14.795 +274,1990,14.9 +274,1991,14.789 +274,1992,14.33 +274,1993,14.383 +274,1994,14.832 +274,1995,14.845 +274,1996,14.506 +274,1997,15.089 +274,1998,15.095 +274,1999,14.592 +274,2000,14.729 +274,2001,14.934 +274,2002,15.016 +274,2003,15.167 +274,2004,14.832 +274,2005,15.046 +274,2006,15.347 +274,2007,14.936 +274,2008,15.025 +274,2009,15.117 +274,2010,15.146 +274,2011,15.132 +274,2012,15.355 +274,2013,15.103 +274,2014,15.31 +274,2015,15.41 +274,2016,15.403 +274,2017,15.182 +274,2018,15.287 +274,2019,15.549 +274,2020,15.424 +274,2021,15.37 +274,2022,15.29 +274,2023,16.021 +274,2024,NA +275,1940,14.252 +275,1941,14.331 +275,1942,14.372 +275,1943,14.392 +275,1944,14.536 +275,1945,14.263 +275,1946,14.16 +275,1947,14.413 +275,1948,14.68 +275,1949,14.277 +275,1950,14.39 +275,1951,14.384 +275,1952,14.336 +275,1953,14.364 +275,1954,13.911 +275,1955,14.186 +275,1956,14.194 +275,1957,14.537 +275,1958,14.349 +275,1959,14.386 +275,1960,14.482 +275,1961,14.277 +275,1962,14.402 +275,1963,14.474 +275,1964,13.957 +275,1965,14.226 +275,1966,14.418 +275,1967,14.386 +275,1968,14.28 +275,1969,14.391 +275,1970,14.439 +275,1971,14.469 +275,1972,14.304 +275,1973,14.166 +275,1974,14.112 +275,1975,14.256 +275,1976,14.189 +275,1977,14.219 +275,1978,14.356 +275,1979,14.669 +275,1980,14.539 +275,1981,14.529 +275,1982,14.55 +275,1983,14.645 +275,1984,14.402 +275,1985,14.54 +275,1986,14.25 +275,1987,14.798 +275,1988,14.708 +275,1989,14.819 +275,1990,14.853 +275,1991,14.734 +275,1992,14.331 +275,1993,14.378 +275,1994,14.87 +275,1995,14.846 +275,1996,14.551 +275,1997,15.038 +275,1998,14.976 +275,1999,14.565 +275,2000,14.767 +275,2001,14.885 +275,2002,14.904 +275,2003,15.201 +275,2004,14.762 +275,2005,15.11 +275,2006,15.312 +275,2007,14.913 +275,2008,15.07 +275,2009,15.038 +275,2010,15.126 +275,2011,15.037 +275,2012,15.333 +275,2013,15.054 +275,2014,15.221 +275,2015,15.435 +275,2016,15.356 +275,2017,15.15 +275,2018,15.241 +275,2019,15.465 +275,2020,15.463 +275,2021,15.345 +275,2022,15.252 +275,2023,15.941 +275,2024,NA +276,1940,14.179 +276,1941,14.313 +276,1942,14.378 +276,1943,14.429 +276,1944,14.51 +276,1945,14.276 +276,1946,14.1 +276,1947,14.344 +276,1948,14.718 +276,1949,14.213 +276,1950,14.344 +276,1951,14.386 +276,1952,14.261 +276,1953,14.312 +276,1954,13.931 +276,1955,14.113 +276,1956,14.172 +276,1957,14.499 +276,1958,14.291 +276,1959,14.344 +276,1960,14.45 +276,1961,14.271 +276,1962,14.449 +276,1963,14.421 +276,1964,13.881 +276,1965,14.136 +276,1966,14.353 +276,1967,14.329 +276,1968,14.258 +276,1969,14.332 +276,1970,14.414 +276,1971,14.412 +276,1972,14.282 +276,1973,14.164 +276,1974,14.12 +276,1975,14.146 +276,1976,14.078 +276,1977,14.168 +276,1978,14.266 +276,1979,14.641 +276,1980,14.446 +276,1981,14.491 +276,1982,14.551 +276,1983,14.6 +276,1984,14.376 +276,1985,14.539 +276,1986,14.245 +276,1987,14.783 +276,1988,14.634 +276,1989,14.796 +276,1990,14.836 +276,1991,14.706 +276,1992,14.259 +276,1993,14.413 +276,1994,14.875 +276,1995,14.815 +276,1996,14.597 +276,1997,15.006 +276,1998,14.834 +276,1999,14.511 +276,2000,14.755 +276,2001,14.83 +276,2002,14.84 +276,2003,15.163 +276,2004,14.764 +276,2005,15.118 +276,2006,15.253 +276,2007,14.912 +276,2008,15.061 +276,2009,14.985 +276,2010,15.104 +276,2011,14.97 +276,2012,15.359 +276,2013,15.052 +276,2014,15.127 +276,2015,15.451 +276,2016,15.297 +276,2017,15.105 +276,2018,15.232 +276,2019,15.346 +276,2020,15.504 +276,2021,15.378 +276,2022,15.22 +276,2023,15.894 +276,2024,NA +277,1940,14.122 +277,1941,14.348 +277,1942,14.329 +277,1943,14.385 +277,1944,14.544 +277,1945,14.255 +277,1946,14.064 +277,1947,14.366 +277,1948,14.728 +277,1949,14.224 +277,1950,14.292 +277,1951,14.409 +277,1952,14.179 +277,1953,14.252 +277,1954,13.897 +277,1955,14.095 +277,1956,14.143 +277,1957,14.434 +277,1958,14.264 +277,1959,14.293 +277,1960,14.481 +277,1961,14.232 +277,1962,14.43 +277,1963,14.404 +277,1964,13.811 +277,1965,14.121 +277,1966,14.326 +277,1967,14.28 +277,1968,14.233 +277,1969,14.281 +277,1970,14.308 +277,1971,14.347 +277,1972,14.313 +277,1973,14.181 +277,1974,14.099 +277,1975,14.099 +277,1976,14.02 +277,1977,14.105 +277,1978,14.131 +277,1979,14.619 +277,1980,14.381 +277,1981,14.389 +277,1982,14.526 +277,1983,14.529 +277,1984,14.294 +277,1985,14.552 +277,1986,14.211 +277,1987,14.749 +277,1988,14.536 +277,1989,14.696 +277,1990,14.777 +277,1991,14.71 +277,1992,14.239 +277,1993,14.409 +277,1994,14.828 +277,1995,14.784 +277,1996,14.575 +277,1997,14.906 +277,1998,14.791 +277,1999,14.466 +277,2000,14.695 +277,2001,14.799 +277,2002,14.741 +277,2003,15.093 +277,2004,14.805 +277,2005,15.074 +277,2006,15.202 +277,2007,14.885 +277,2008,14.967 +277,2009,14.949 +277,2010,15.059 +277,2011,14.991 +277,2012,15.343 +277,2013,15.016 +277,2014,14.994 +277,2015,15.406 +277,2016,15.199 +277,2017,15.084 +277,2018,15.218 +277,2019,15.25 +277,2020,15.451 +277,2021,15.355 +277,2022,15.142 +277,2023,15.803 +277,2024,NA +278,1940,14.12 +278,1941,14.365 +278,1942,14.265 +278,1943,14.314 +278,1944,14.518 +278,1945,14.248 +278,1946,14.028 +278,1947,14.352 +278,1948,14.655 +278,1949,14.224 +278,1950,14.208 +278,1951,14.366 +278,1952,14.16 +278,1953,14.199 +278,1954,13.826 +278,1955,14.089 +278,1956,14.104 +278,1957,14.385 +278,1958,14.283 +278,1959,14.304 +278,1960,14.502 +278,1961,14.279 +278,1962,14.391 +278,1963,14.407 +278,1964,13.789 +278,1965,14.131 +278,1966,14.25 +278,1967,14.242 +278,1968,14.267 +278,1969,14.219 +278,1970,14.241 +278,1971,14.233 +278,1972,14.291 +278,1973,14.182 +278,1974,14.046 +278,1975,14.087 +278,1976,13.962 +278,1977,14.068 +278,1978,14.053 +278,1979,14.585 +278,1980,14.369 +278,1981,14.307 +278,1982,14.467 +278,1983,14.527 +278,1984,14.313 +278,1985,14.509 +278,1986,14.189 +278,1987,14.658 +278,1988,14.455 +278,1989,14.654 +278,1990,14.75 +278,1991,14.693 +278,1992,14.214 +278,1993,14.376 +278,1994,14.74 +278,1995,14.727 +278,1996,14.548 +278,1997,14.859 +278,1998,14.764 +278,1999,14.487 +278,2000,14.601 +278,2001,14.811 +278,2002,14.666 +278,2003,15.055 +278,2004,14.824 +278,2005,15.01 +278,2006,15.108 +278,2007,14.897 +278,2008,14.897 +278,2009,14.947 +278,2010,15.031 +278,2011,15.04 +278,2012,15.291 +278,2013,14.982 +278,2014,14.923 +278,2015,15.446 +278,2016,15.153 +278,2017,15.136 +278,2018,15.166 +278,2019,15.233 +278,2020,15.335 +278,2021,15.266 +278,2022,15.101 +278,2023,15.714 +278,2024,NA +279,1940,14.1 +279,1941,14.348 +279,1942,14.263 +279,1943,14.25 +279,1944,14.519 +279,1945,14.262 +279,1946,14.007 +279,1947,14.357 +279,1948,14.513 +279,1949,14.178 +279,1950,14.173 +279,1951,14.298 +279,1952,14.136 +279,1953,14.154 +279,1954,13.758 +279,1955,14.071 +279,1956,14.01 +279,1957,14.327 +279,1958,14.263 +279,1959,14.266 +279,1960,14.499 +279,1961,14.331 +279,1962,14.349 +279,1963,14.431 +279,1964,13.871 +279,1965,14.123 +279,1966,14.199 +279,1967,14.185 +279,1968,14.241 +279,1969,14.196 +279,1970,14.241 +279,1971,14.108 +279,1972,14.266 +279,1973,14.172 +279,1974,14.003 +279,1975,14.049 +279,1976,13.832 +279,1977,14.037 +279,1978,13.989 +279,1979,14.554 +279,1980,14.327 +279,1981,14.412 +279,1982,14.428 +279,1983,14.44 +279,1984,14.337 +279,1985,14.368 +279,1986,14.184 +279,1987,14.593 +279,1988,14.423 +279,1989,14.634 +279,1990,14.681 +279,1991,14.641 +279,1992,14.093 +279,1993,14.359 +279,1994,14.681 +279,1995,14.607 +279,1996,14.465 +279,1997,14.827 +279,1998,14.69 +279,1999,14.551 +279,2000,14.523 +279,2001,14.801 +279,2002,14.656 +279,2003,15.034 +279,2004,14.839 +279,2005,14.926 +279,2006,15.03 +279,2007,14.88 +279,2008,14.897 +279,2009,14.94 +279,2010,14.981 +279,2011,15.043 +279,2012,15.195 +279,2013,14.968 +279,2014,14.9 +279,2015,15.492 +279,2016,15.168 +279,2017,15.225 +279,2018,15.134 +279,2019,15.209 +279,2020,15.269 +279,2021,15.223 +279,2022,15.162 +279,2023,15.665 +279,2024,NA +280,1940,14.137 +280,1941,14.293 +280,1942,14.249 +280,1943,14.236 +280,1944,14.456 +280,1945,14.285 +280,1946,13.97 +280,1947,14.362 +280,1948,14.423 +280,1949,14.096 +280,1950,14.152 +280,1951,14.201 +280,1952,14.034 +280,1953,14.067 +280,1954,13.729 +280,1955,14.021 +280,1956,13.974 +280,1957,14.338 +280,1958,14.228 +280,1959,14.224 +280,1960,14.443 +280,1961,14.306 +280,1962,14.287 +280,1963,14.458 +280,1964,13.882 +280,1965,14.086 +280,1966,14.156 +280,1967,14.132 +280,1968,14.151 +280,1969,14.106 +280,1970,14.242 +280,1971,14.076 +280,1972,14.24 +280,1973,14.144 +280,1974,13.929 +280,1975,13.998 +280,1976,13.8 +280,1977,14.034 +280,1978,13.937 +280,1979,14.541 +280,1980,14.307 +280,1981,14.547 +280,1982,14.401 +280,1983,14.365 +280,1984,14.34 +280,1985,14.263 +280,1986,14.171 +280,1987,14.545 +280,1988,14.37 +280,1989,14.582 +280,1990,14.558 +280,1991,14.574 +280,1992,13.953 +280,1993,14.316 +280,1994,14.586 +280,1995,14.568 +280,1996,14.368 +280,1997,14.803 +280,1998,14.613 +280,1999,14.6 +280,2000,14.453 +280,2001,14.802 +280,2002,14.708 +280,2003,14.982 +280,2004,14.868 +280,2005,14.865 +280,2006,14.955 +280,2007,14.8 +280,2008,14.881 +280,2009,14.932 +280,2010,14.965 +280,2011,15.013 +280,2012,15.082 +280,2013,14.909 +280,2014,14.905 +280,2015,15.489 +280,2016,15.222 +280,2017,15.257 +280,2018,15.15 +280,2019,15.156 +280,2020,15.195 +280,2021,15.243 +280,2022,15.159 +280,2023,15.617 +280,2024,NA +281,1940,14.086 +281,1941,14.216 +281,1942,14.258 +281,1943,14.206 +281,1944,14.455 +281,1945,14.251 +281,1946,13.9 +281,1947,14.319 +281,1948,14.274 +281,1949,14.035 +281,1950,14.078 +281,1951,14.157 +281,1952,13.987 +281,1953,14.019 +281,1954,13.756 +281,1955,13.982 +281,1956,13.888 +281,1957,14.361 +281,1958,14.214 +281,1959,14.174 +281,1960,14.359 +281,1961,14.216 +281,1962,14.253 +281,1963,14.457 +281,1964,13.849 +281,1965,14.137 +281,1966,14.167 +281,1967,14.116 +281,1968,14.141 +281,1969,14.053 +281,1970,14.206 +281,1971,14.03 +281,1972,14.242 +281,1973,14.136 +281,1974,13.905 +281,1975,13.934 +281,1976,13.793 +281,1977,13.987 +281,1978,13.91 +281,1979,14.518 +281,1980,14.273 +281,1981,14.548 +281,1982,14.344 +281,1983,14.312 +281,1984,14.35 +281,1985,14.174 +281,1986,14.084 +281,1987,14.464 +281,1988,14.392 +281,1989,14.514 +281,1990,14.498 +281,1991,14.544 +281,1992,13.924 +281,1993,14.277 +281,1994,14.481 +281,1995,14.535 +281,1996,14.316 +281,1997,14.796 +281,1998,14.551 +281,1999,14.59 +281,2000,14.384 +281,2001,14.74 +281,2002,14.736 +281,2003,14.943 +281,2004,14.905 +281,2005,14.85 +281,2006,14.895 +281,2007,14.684 +281,2008,14.779 +281,2009,14.87 +281,2010,14.919 +281,2011,15 +281,2012,15.015 +281,2013,14.834 +281,2014,14.932 +281,2015,15.409 +281,2016,15.2 +281,2017,15.257 +281,2018,15.129 +281,2019,15.158 +281,2020,15.209 +281,2021,15.24 +281,2022,15.105 +281,2023,15.6 +281,2024,NA +282,1940,14.012 +282,1941,14.166 +282,1942,14.249 +282,1943,14.15 +282,1944,14.422 +282,1945,14.213 +282,1946,13.938 +282,1947,14.248 +282,1948,14.169 +282,1949,13.988 +282,1950,14.08 +282,1951,14.189 +282,1952,13.983 +282,1953,14.037 +282,1954,13.733 +282,1955,13.998 +282,1956,13.758 +282,1957,14.292 +282,1958,14.186 +282,1959,14.097 +282,1960,14.294 +282,1961,14.08 +282,1962,14.226 +282,1963,14.442 +282,1964,13.835 +282,1965,14.191 +282,1966,14.149 +282,1967,14.151 +282,1968,14.115 +282,1969,14.103 +282,1970,14.108 +282,1971,14.059 +282,1972,14.208 +282,1973,14.055 +282,1974,13.977 +282,1975,13.862 +282,1976,13.778 +282,1977,13.91 +282,1978,13.897 +282,1979,14.488 +282,1980,14.236 +282,1981,14.467 +282,1982,14.277 +282,1983,14.275 +282,1984,14.379 +282,1985,14.078 +282,1986,13.967 +282,1987,14.411 +282,1988,14.36 +282,1989,14.446 +282,1990,14.487 +282,1991,14.506 +282,1992,13.904 +282,1993,14.27 +282,1994,14.498 +282,1995,14.52 +282,1996,14.317 +282,1997,14.781 +282,1998,14.439 +282,1999,14.51 +282,2000,14.291 +282,2001,14.719 +282,2002,14.743 +282,2003,14.894 +282,2004,14.924 +282,2005,14.847 +282,2006,14.87 +282,2007,14.63 +282,2008,14.71 +282,2009,14.807 +282,2010,14.861 +282,2011,14.948 +282,2012,14.983 +282,2013,14.757 +282,2014,14.964 +282,2015,15.336 +282,2016,15.166 +282,2017,15.205 +282,2018,15.068 +282,2019,15.171 +282,2020,15.205 +282,2021,15.264 +282,2022,15.058 +282,2023,15.628 +282,2024,NA +283,1940,13.938 +283,1941,14.162 +283,1942,14.204 +283,1943,14.144 +283,1944,14.323 +283,1945,14.193 +283,1946,13.999 +283,1947,14.136 +283,1948,14.121 +283,1949,13.934 +283,1950,14.07 +283,1951,14.216 +283,1952,13.969 +283,1953,14.086 +283,1954,13.787 +283,1955,14.038 +283,1956,13.632 +283,1957,14.206 +283,1958,14.077 +283,1959,14.087 +283,1960,14.192 +283,1961,14.021 +283,1962,14.156 +283,1963,14.376 +283,1964,13.819 +283,1965,14.1 +283,1966,14.106 +283,1967,14.203 +283,1968,14.09 +283,1969,14.17 +283,1970,14.005 +283,1971,14.002 +283,1972,14.153 +283,1973,14.007 +283,1974,14.014 +283,1975,13.776 +283,1976,13.689 +283,1977,13.874 +283,1978,13.896 +283,1979,14.386 +283,1980,14.204 +283,1981,14.359 +283,1982,14.195 +283,1983,14.251 +283,1984,14.397 +283,1985,14.023 +283,1986,13.883 +283,1987,14.366 +283,1988,14.391 +283,1989,14.398 +283,1990,14.463 +283,1991,14.473 +283,1992,13.9 +283,1993,14.258 +283,1994,14.501 +283,1995,14.52 +283,1996,14.327 +283,1997,14.796 +283,1998,14.352 +283,1999,14.407 +283,2000,14.226 +283,2001,14.694 +283,2002,14.777 +283,2003,14.807 +283,2004,14.933 +283,2005,14.874 +283,2006,14.829 +283,2007,14.636 +283,2008,14.672 +283,2009,14.738 +283,2010,14.831 +283,2011,14.914 +283,2012,14.949 +283,2013,14.731 +283,2014,14.969 +283,2015,15.234 +283,2016,15.104 +283,2017,15.172 +283,2018,15.018 +283,2019,15.123 +283,2020,15.217 +283,2021,15.245 +283,2022,15.004 +283,2023,15.679 +283,2024,NA +284,1940,13.913 +284,1941,14.151 +284,1942,14.152 +284,1943,14.069 +284,1944,14.282 +284,1945,14.149 +284,1946,14.043 +284,1947,14.055 +284,1948,14.093 +284,1949,13.975 +284,1950,14.028 +284,1951,14.196 +284,1952,13.905 +284,1953,14.052 +284,1954,13.822 +284,1955,14.053 +284,1956,13.515 +284,1957,14.154 +284,1958,13.944 +284,1959,14.111 +284,1960,14.101 +284,1961,13.982 +284,1962,14.097 +284,1963,14.27 +284,1964,13.79 +284,1965,13.949 +284,1966,14.011 +284,1967,14.198 +284,1968,14.018 +284,1969,14.242 +284,1970,13.958 +284,1971,13.914 +284,1972,14.044 +284,1973,14.015 +284,1974,13.968 +284,1975,13.73 +284,1976,13.682 +284,1977,13.852 +284,1978,13.913 +284,1979,14.325 +284,1980,14.13 +284,1981,14.332 +284,1982,14.16 +284,1983,14.181 +284,1984,14.342 +284,1985,13.973 +284,1986,13.798 +284,1987,14.376 +284,1988,14.396 +284,1989,14.377 +284,1990,14.443 +284,1991,14.45 +284,1992,13.933 +284,1993,14.242 +284,1994,14.42 +284,1995,14.53 +284,1996,14.296 +284,1997,14.764 +284,1998,14.382 +284,1999,14.33 +284,2000,14.225 +284,2001,14.663 +284,2002,14.737 +284,2003,14.695 +284,2004,14.921 +284,2005,14.952 +284,2006,14.802 +284,2007,14.619 +284,2008,14.667 +284,2009,14.658 +284,2010,14.826 +284,2011,14.83 +284,2012,14.867 +284,2013,14.683 +284,2014,14.912 +284,2015,15.137 +284,2016,15.043 +284,2017,15.089 +284,2018,14.92 +284,2019,15.031 +284,2020,15.173 +284,2021,15.133 +284,2022,14.996 +284,2023,15.707 +284,2024,NA +285,1940,13.87 +285,1941,14.142 +285,1942,14.109 +285,1943,13.975 +285,1944,14.24 +285,1945,14.059 +285,1946,13.994 +285,1947,13.997 +285,1948,14.005 +285,1949,13.987 +285,1950,14.059 +285,1951,14.164 +285,1952,13.82 +285,1953,14.004 +285,1954,13.827 +285,1955,14.023 +285,1956,13.502 +285,1957,14.154 +285,1958,13.869 +285,1959,14.043 +285,1960,14.073 +285,1961,13.985 +285,1962,14.052 +285,1963,14.167 +285,1964,13.72 +285,1965,13.886 +285,1966,13.929 +285,1967,14.164 +285,1968,13.964 +285,1969,14.283 +285,1970,13.955 +285,1971,13.867 +285,1972,13.934 +285,1973,14.01 +285,1974,13.999 +285,1975,13.675 +285,1976,13.724 +285,1977,13.817 +285,1978,13.947 +285,1979,14.359 +285,1980,14.076 +285,1981,14.295 +285,1982,14.097 +285,1983,14.116 +285,1984,14.264 +285,1985,13.926 +285,1986,13.804 +285,1987,14.332 +285,1988,14.387 +285,1989,14.346 +285,1990,14.457 +285,1991,14.394 +285,1992,13.923 +285,1993,14.23 +285,1994,14.297 +285,1995,14.562 +285,1996,14.255 +285,1997,14.707 +285,1998,14.389 +285,1999,14.277 +285,2000,14.262 +285,2001,14.637 +285,2002,14.715 +285,2003,14.584 +285,2004,14.821 +285,2005,14.982 +285,2006,14.778 +285,2007,14.535 +285,2008,14.695 +285,2009,14.625 +285,2010,14.801 +285,2011,14.789 +285,2012,14.729 +285,2013,14.624 +285,2014,14.824 +285,2015,15.081 +285,2016,15.028 +285,2017,14.975 +285,2018,14.846 +285,2019,14.934 +285,2020,15.062 +285,2021,15.023 +285,2022,15.023 +285,2023,15.661 +285,2024,NA +286,1940,13.864 +286,1941,14.152 +286,1942,14.035 +286,1943,13.931 +286,1944,14.169 +286,1945,14.001 +286,1946,13.925 +286,1947,13.939 +286,1948,13.915 +286,1949,13.934 +286,1950,14.097 +286,1951,14.167 +286,1952,13.766 +286,1953,14.011 +286,1954,13.788 +286,1955,13.937 +286,1956,13.528 +286,1957,14.089 +286,1958,13.884 +286,1959,13.957 +286,1960,13.989 +286,1961,13.992 +286,1962,14.022 +286,1963,14.119 +286,1964,13.72 +286,1965,13.868 +286,1966,13.86 +286,1967,14.117 +286,1968,13.992 +286,1969,14.238 +286,1970,13.924 +286,1971,13.827 +286,1972,13.976 +286,1973,13.989 +286,1974,13.957 +286,1975,13.63 +286,1976,13.661 +286,1977,13.817 +286,1978,13.93 +286,1979,14.366 +286,1980,14.06 +286,1981,14.244 +286,1982,14.084 +286,1983,14.087 +286,1984,14.221 +286,1985,13.872 +286,1986,13.849 +286,1987,14.246 +286,1988,14.302 +286,1989,14.3 +286,1990,14.488 +286,1991,14.312 +286,1992,13.944 +286,1993,14.19 +286,1994,14.22 +286,1995,14.537 +286,1996,14.192 +286,1997,14.636 +286,1998,14.366 +286,1999,14.169 +286,2000,14.324 +286,2001,14.588 +286,2002,14.639 +286,2003,14.529 +286,2004,14.726 +286,2005,14.962 +286,2006,14.754 +286,2007,14.494 +286,2008,14.671 +286,2009,14.61 +286,2010,14.763 +286,2011,14.723 +286,2012,14.654 +286,2013,14.627 +286,2014,14.768 +286,2015,15.026 +286,2016,15.028 +286,2017,14.913 +286,2018,14.823 +286,2019,14.889 +286,2020,14.972 +286,2021,15.029 +286,2022,15.009 +286,2023,15.515 +286,2024,NA +287,1940,13.888 +287,1941,14.123 +287,1942,13.93 +287,1943,13.866 +287,1944,14.124 +287,1945,13.945 +287,1946,13.865 +287,1947,13.934 +287,1948,13.873 +287,1949,13.886 +287,1950,14.12 +287,1951,14.126 +287,1952,13.794 +287,1953,13.997 +287,1954,13.794 +287,1955,13.871 +287,1956,13.516 +287,1957,14.057 +287,1958,13.847 +287,1959,13.881 +287,1960,13.988 +287,1961,14.011 +287,1962,13.971 +287,1963,14.079 +287,1964,13.704 +287,1965,13.9 +287,1966,13.81 +287,1967,14.135 +287,1968,14.034 +287,1969,14.17 +287,1970,13.853 +287,1971,13.807 +287,1972,14.014 +287,1973,13.993 +287,1974,13.834 +287,1975,13.608 +287,1976,13.676 +287,1977,13.805 +287,1978,13.882 +287,1979,14.289 +287,1980,14.026 +287,1981,14.223 +287,1982,14.096 +287,1983,14.054 +287,1984,14.21 +287,1985,13.823 +287,1986,13.885 +287,1987,14.148 +287,1988,14.274 +287,1989,14.219 +287,1990,14.511 +287,1991,14.204 +287,1992,13.963 +287,1993,14.143 +287,1994,14.175 +287,1995,14.433 +287,1996,14.206 +287,1997,14.56 +287,1998,14.366 +287,1999,14.102 +287,2000,14.231 +287,2001,14.508 +287,2002,14.54 +287,2003,14.51 +287,2004,14.559 +287,2005,14.88 +287,2006,14.709 +287,2007,14.447 +287,2008,14.653 +287,2009,14.646 +287,2010,14.705 +287,2011,14.7 +287,2012,14.67 +287,2013,14.559 +287,2014,14.71 +287,2015,14.994 +287,2016,14.993 +287,2017,14.865 +287,2018,14.774 +287,2019,14.876 +287,2020,14.95 +287,2021,15.053 +287,2022,14.95 +287,2023,15.454 +287,2024,NA +288,1940,13.818 +288,1941,14.074 +288,1942,13.909 +288,1943,13.772 +288,1944,14.122 +288,1945,13.909 +288,1946,13.801 +288,1947,13.905 +288,1948,13.807 +288,1949,13.868 +288,1950,14.038 +288,1951,14.063 +288,1952,13.836 +288,1953,13.968 +288,1954,13.792 +288,1955,13.833 +288,1956,13.47 +288,1957,14.072 +288,1958,13.856 +288,1959,13.912 +288,1960,13.977 +288,1961,13.95 +288,1962,13.944 +288,1963,14.028 +288,1964,13.655 +288,1965,13.922 +288,1966,13.789 +288,1967,14.093 +288,1968,14.094 +288,1969,14.068 +288,1970,13.758 +288,1971,13.788 +288,1972,14.039 +288,1973,13.976 +288,1974,13.701 +288,1975,13.523 +288,1976,13.591 +288,1977,13.745 +288,1978,13.891 +288,1979,14.271 +288,1980,13.978 +288,1981,14.186 +288,1982,14.11 +288,1983,14.039 +288,1984,14.169 +288,1985,13.812 +288,1986,13.939 +288,1987,14.061 +288,1988,14.269 +288,1989,14.195 +288,1990,14.5 +288,1991,14.132 +288,1992,13.972 +288,1993,14.124 +288,1994,14.132 +288,1995,14.379 +288,1996,14.236 +288,1997,14.486 +288,1998,14.365 +288,1999,14.083 +288,2000,14.101 +288,2001,14.42 +288,2002,14.431 +288,2003,14.535 +288,2004,14.445 +288,2005,14.79 +288,2006,14.658 +288,2007,14.427 +288,2008,14.647 +288,2009,14.652 +288,2010,14.633 +288,2011,14.622 +288,2012,14.702 +288,2013,14.51 +288,2014,14.713 +288,2015,14.999 +288,2016,14.987 +288,2017,14.817 +288,2018,14.705 +288,2019,14.872 +288,2020,14.95 +288,2021,14.975 +288,2022,14.943 +288,2023,15.432 +288,2024,NA +289,1940,13.724 +289,1941,14.007 +289,1942,13.877 +289,1943,13.692 +289,1944,14.091 +289,1945,13.87 +289,1946,13.762 +289,1947,13.883 +289,1948,13.728 +289,1949,13.815 +289,1950,13.96 +289,1951,14.04 +289,1952,13.769 +289,1953,13.992 +289,1954,13.809 +289,1955,13.748 +289,1956,13.432 +289,1957,14.038 +289,1958,13.871 +289,1959,13.91 +289,1960,13.924 +289,1961,13.878 +289,1962,13.882 +289,1963,14.021 +289,1964,13.588 +289,1965,13.891 +289,1966,13.654 +289,1967,14.039 +289,1968,14.118 +289,1969,13.96 +289,1970,13.703 +289,1971,13.705 +289,1972,14.02 +289,1973,13.947 +289,1974,13.594 +289,1975,13.504 +289,1976,13.506 +289,1977,13.697 +289,1978,13.878 +289,1979,14.203 +289,1980,13.988 +289,1981,14.183 +289,1982,14.08 +289,1983,13.968 +289,1984,14.099 +289,1985,13.766 +289,1986,13.99 +289,1987,14.018 +289,1988,14.222 +289,1989,14.095 +289,1990,14.451 +289,1991,14.079 +289,1992,13.986 +289,1993,14.163 +289,1994,14.079 +289,1995,14.332 +289,1996,14.181 +289,1997,14.439 +289,1998,14.401 +289,1999,14.08 +289,2000,13.976 +289,2001,14.318 +289,2002,14.376 +289,2003,14.528 +289,2004,14.425 +289,2005,14.733 +289,2006,14.602 +289,2007,14.427 +289,2008,14.631 +289,2009,14.66 +289,2010,14.557 +289,2011,14.559 +289,2012,14.702 +289,2013,14.515 +289,2014,14.687 +289,2015,14.945 +289,2016,14.971 +289,2017,14.816 +289,2018,14.695 +289,2019,14.848 +289,2020,14.859 +289,2021,14.825 +289,2022,14.97 +289,2023,15.341 +289,2024,NA +290,1940,13.594 +290,1941,13.957 +290,1942,13.758 +290,1943,13.683 +290,1944,14.004 +290,1945,13.825 +290,1946,13.747 +290,1947,13.882 +290,1948,13.669 +290,1949,13.733 +290,1950,13.847 +290,1951,13.94 +290,1952,13.716 +290,1953,14.033 +290,1954,13.854 +290,1955,13.772 +290,1956,13.391 +290,1957,13.943 +290,1958,13.812 +290,1959,13.827 +290,1960,13.863 +290,1961,13.774 +290,1962,13.819 +290,1963,13.988 +290,1964,13.545 +290,1965,13.866 +290,1966,13.524 +290,1967,13.997 +290,1968,14.074 +290,1969,13.936 +290,1970,13.621 +290,1971,13.682 +290,1972,13.937 +290,1973,13.882 +290,1974,13.5 +290,1975,13.575 +290,1976,13.43 +290,1977,13.658 +290,1978,13.84 +290,1979,14.177 +290,1980,14.008 +290,1981,14.107 +290,1982,14.004 +290,1983,13.875 +290,1984,13.982 +290,1985,13.734 +290,1986,14.016 +290,1987,13.982 +290,1988,14.167 +290,1989,13.957 +290,1990,14.355 +290,1991,14.031 +290,1992,13.932 +290,1993,14.178 +290,1994,14.076 +290,1995,14.271 +290,1996,14.063 +290,1997,14.403 +290,1998,14.419 +290,1999,14.073 +290,2000,13.995 +290,2001,14.237 +290,2002,14.351 +290,2003,14.502 +290,2004,14.421 +290,2005,14.666 +290,2006,14.542 +290,2007,14.41 +290,2008,14.584 +290,2009,14.677 +290,2010,14.506 +290,2011,14.491 +290,2012,14.664 +290,2013,14.518 +290,2014,14.683 +290,2015,14.851 +290,2016,14.931 +290,2017,14.857 +290,2018,14.681 +290,2019,14.849 +290,2020,14.797 +290,2021,14.674 +290,2022,14.926 +290,2023,15.25 +290,2024,NA +291,1940,13.533 +291,1941,13.907 +291,1942,13.656 +291,1943,13.675 +291,1944,13.998 +291,1945,13.828 +291,1946,13.707 +291,1947,13.929 +291,1948,13.62 +291,1949,13.645 +291,1950,13.759 +291,1951,13.922 +291,1952,13.747 +291,1953,13.982 +291,1954,13.889 +291,1955,13.735 +291,1956,13.296 +291,1957,13.89 +291,1958,13.783 +291,1959,13.834 +291,1960,13.793 +291,1961,13.741 +291,1962,13.746 +291,1963,13.896 +291,1964,13.492 +291,1965,13.837 +291,1966,13.445 +291,1967,13.977 +291,1968,14.02 +291,1969,13.841 +291,1970,13.554 +291,1971,13.624 +291,1972,13.905 +291,1973,13.754 +291,1974,13.426 +291,1975,13.609 +291,1976,13.299 +291,1977,13.69 +291,1978,13.755 +291,1979,14.105 +291,1980,13.988 +291,1981,14.023 +291,1982,13.919 +291,1983,13.782 +291,1984,13.828 +291,1985,13.644 +291,1986,14.014 +291,1987,13.944 +291,1988,14.121 +291,1989,13.88 +291,1990,14.315 +291,1991,14.052 +291,1992,13.877 +291,1993,14.176 +291,1994,14.086 +291,1995,14.19 +291,1996,14 +291,1997,14.311 +291,1998,14.41 +291,1999,14.054 +291,2000,14.004 +291,2001,14.19 +291,2002,14.322 +291,2003,14.493 +291,2004,14.39 +291,2005,14.636 +291,2006,14.455 +291,2007,14.398 +291,2008,14.543 +291,2009,14.657 +291,2010,14.497 +291,2011,14.405 +291,2012,14.63 +291,2013,14.521 +291,2014,14.608 +291,2015,14.783 +291,2016,14.869 +291,2017,14.889 +291,2018,14.699 +291,2019,14.864 +291,2020,14.746 +291,2021,14.655 +291,2022,14.87 +291,2023,15.214 +291,2024,NA +292,1940,13.442 +292,1941,13.862 +292,1942,13.545 +292,1943,13.665 +292,1944,13.965 +292,1945,13.839 +292,1946,13.619 +292,1947,13.913 +292,1948,13.632 +292,1949,13.591 +292,1950,13.693 +292,1951,13.886 +292,1952,13.813 +292,1953,13.947 +292,1954,13.823 +292,1955,13.685 +292,1956,13.228 +292,1957,13.817 +292,1958,13.774 +292,1959,13.799 +292,1960,13.719 +292,1961,13.758 +292,1962,13.698 +292,1963,13.795 +292,1964,13.413 +292,1965,13.796 +292,1966,13.367 +292,1967,13.936 +292,1968,13.91 +292,1969,13.737 +292,1970,13.55 +292,1971,13.592 +292,1972,13.855 +292,1973,13.745 +292,1974,13.362 +292,1975,13.588 +292,1976,13.178 +292,1977,13.757 +292,1978,13.678 +292,1979,14.01 +292,1980,14.002 +292,1981,13.905 +292,1982,13.824 +292,1983,13.708 +292,1984,13.69 +292,1985,13.579 +292,1986,13.931 +292,1987,13.908 +292,1988,14.134 +292,1989,13.835 +292,1990,14.294 +292,1991,14.053 +292,1992,13.82 +292,1993,14.082 +292,1994,14.078 +292,1995,14.146 +292,1996,13.971 +292,1997,14.237 +292,1998,14.322 +292,1999,14.051 +292,2000,13.933 +292,2001,14.188 +292,2002,14.293 +292,2003,14.479 +292,2004,14.389 +292,2005,14.583 +292,2006,14.404 +292,2007,14.365 +292,2008,14.478 +292,2009,14.597 +292,2010,14.512 +292,2011,14.343 +292,2012,14.597 +292,2013,14.564 +292,2014,14.508 +292,2015,14.774 +292,2016,14.778 +292,2017,14.896 +292,2018,14.683 +292,2019,14.912 +292,2020,14.705 +292,2021,14.689 +292,2022,14.823 +292,2023,15.185 +292,2024,NA +293,1940,13.365 +293,1941,13.875 +293,1942,13.501 +293,1943,13.634 +293,1944,13.869 +293,1945,13.878 +293,1946,13.547 +293,1947,13.807 +293,1948,13.638 +293,1949,13.547 +293,1950,13.589 +293,1951,13.897 +293,1952,13.82 +293,1953,13.949 +293,1954,13.715 +293,1955,13.717 +293,1956,13.164 +293,1957,13.762 +293,1958,13.741 +293,1959,13.709 +293,1960,13.641 +293,1961,13.721 +293,1962,13.663 +293,1963,13.771 +293,1964,13.255 +293,1965,13.749 +293,1966,13.336 +293,1967,13.862 +293,1968,13.816 +293,1969,13.703 +293,1970,13.593 +293,1971,13.508 +293,1972,13.842 +293,1973,13.76 +293,1974,13.334 +293,1975,13.469 +293,1976,13.139 +293,1977,13.736 +293,1978,13.618 +293,1979,13.94 +293,1980,14.001 +293,1981,13.819 +293,1982,13.766 +293,1983,13.689 +293,1984,13.63 +293,1985,13.506 +293,1986,13.84 +293,1987,13.859 +293,1988,14.118 +293,1989,13.81 +293,1990,14.175 +293,1991,14.078 +293,1992,13.793 +293,1993,13.944 +293,1994,14.057 +293,1995,14.078 +293,1996,13.878 +293,1997,14.117 +293,1998,14.225 +293,1999,14.048 +293,2000,13.901 +293,2001,14.216 +293,2002,14.26 +293,2003,14.412 +293,2004,14.374 +293,2005,14.548 +293,2006,14.423 +293,2007,14.332 +293,2008,14.379 +293,2009,14.553 +293,2010,14.552 +293,2011,14.303 +293,2012,14.566 +293,2013,14.563 +293,2014,14.399 +293,2015,14.773 +293,2016,14.687 +293,2017,14.903 +293,2018,14.68 +293,2019,14.884 +293,2020,14.711 +293,2021,14.666 +293,2022,14.834 +293,2023,15.196 +293,2024,NA +294,1940,13.37 +294,1941,13.887 +294,1942,13.462 +294,1943,13.557 +294,1944,13.776 +294,1945,13.884 +294,1946,13.493 +294,1947,13.741 +294,1948,13.601 +294,1949,13.573 +294,1950,13.516 +294,1951,13.93 +294,1952,13.721 +294,1953,13.844 +294,1954,13.695 +294,1955,13.639 +294,1956,13.12 +294,1957,13.776 +294,1958,13.661 +294,1959,13.665 +294,1960,13.6 +294,1961,13.651 +294,1962,13.668 +294,1963,13.795 +294,1964,13.198 +294,1965,13.681 +294,1966,13.305 +294,1967,13.811 +294,1968,13.804 +294,1969,13.738 +294,1970,13.624 +294,1971,13.476 +294,1972,13.816 +294,1973,13.756 +294,1974,13.312 +294,1975,13.354 +294,1976,13.079 +294,1977,13.689 +294,1978,13.597 +294,1979,13.909 +294,1980,13.952 +294,1981,13.75 +294,1982,13.646 +294,1983,13.715 +294,1984,13.659 +294,1985,13.434 +294,1986,13.835 +294,1987,13.826 +294,1988,14.032 +294,1989,13.758 +294,1990,14.157 +294,1991,14.078 +294,1992,13.75 +294,1993,13.857 +294,1994,14.03 +294,1995,14 +294,1996,13.766 +294,1997,14.081 +294,1998,14.127 +294,1999,14.048 +294,2000,13.844 +294,2001,14.203 +294,2002,14.216 +294,2003,14.399 +294,2004,14.323 +294,2005,14.508 +294,2006,14.38 +294,2007,14.314 +294,2008,14.335 +294,2009,14.514 +294,2010,14.59 +294,2011,14.256 +294,2012,14.533 +294,2013,14.497 +294,2014,14.328 +294,2015,14.772 +294,2016,14.595 +294,2017,14.881 +294,2018,14.697 +294,2019,14.88 +294,2020,14.702 +294,2021,14.655 +294,2022,14.865 +294,2023,15.182 +294,2024,NA +295,1940,13.387 +295,1941,13.885 +295,1942,13.372 +295,1943,13.587 +295,1944,13.747 +295,1945,13.841 +295,1946,13.507 +295,1947,13.739 +295,1948,13.556 +295,1949,13.622 +295,1950,13.505 +295,1951,13.96 +295,1952,13.592 +295,1953,13.744 +295,1954,13.665 +295,1955,13.563 +295,1956,13.167 +295,1957,13.736 +295,1958,13.545 +295,1959,13.619 +295,1960,13.564 +295,1961,13.603 +295,1962,13.65 +295,1963,13.754 +295,1964,13.152 +295,1965,13.646 +295,1966,13.289 +295,1967,13.812 +295,1968,13.807 +295,1969,13.685 +295,1970,13.687 +295,1971,13.455 +295,1972,13.769 +295,1973,13.746 +295,1974,13.3 +295,1975,13.328 +295,1976,13.037 +295,1977,13.61 +295,1978,13.579 +295,1979,13.845 +295,1980,13.861 +295,1981,13.735 +295,1982,13.544 +295,1983,13.725 +295,1984,13.646 +295,1985,13.438 +295,1986,13.883 +295,1987,13.798 +295,1988,13.954 +295,1989,13.761 +295,1990,14.13 +295,1991,13.982 +295,1992,13.741 +295,1993,13.814 +295,1994,13.969 +295,1995,13.962 +295,1996,13.698 +295,1997,14.093 +295,1998,14.049 +295,1999,14.023 +295,2000,13.788 +295,2001,14.185 +295,2002,14.168 +295,2003,14.409 +295,2004,14.28 +295,2005,14.425 +295,2006,14.331 +295,2007,14.277 +295,2008,14.259 +295,2009,14.458 +295,2010,14.551 +295,2011,14.221 +295,2012,14.43 +295,2013,14.375 +295,2014,14.333 +295,2015,14.695 +295,2016,14.428 +295,2017,14.778 +295,2018,14.668 +295,2019,14.816 +295,2020,14.67 +295,2021,14.643 +295,2022,14.857 +295,2023,15.127 +295,2024,NA +296,1940,13.359 +296,1941,13.833 +296,1942,13.27 +296,1943,13.612 +296,1944,13.689 +296,1945,13.781 +296,1946,13.525 +296,1947,13.638 +296,1948,13.489 +296,1949,13.603 +296,1950,13.513 +296,1951,13.888 +296,1952,13.557 +296,1953,13.705 +296,1954,13.599 +296,1955,13.511 +296,1956,13.23 +296,1957,13.658 +296,1958,13.484 +296,1959,13.575 +296,1960,13.57 +296,1961,13.592 +296,1962,13.586 +296,1963,13.664 +296,1964,13.066 +296,1965,13.587 +296,1966,13.227 +296,1967,13.81 +296,1968,13.74 +296,1969,13.592 +296,1970,13.693 +296,1971,13.431 +296,1972,13.736 +296,1973,13.675 +296,1974,13.344 +296,1975,13.326 +296,1976,13.049 +296,1977,13.49 +296,1978,13.53 +296,1979,13.775 +296,1980,13.712 +296,1981,13.682 +296,1982,13.488 +296,1983,13.755 +296,1984,13.642 +296,1985,13.452 +296,1986,13.775 +296,1987,13.806 +296,1988,13.875 +296,1989,13.744 +296,1990,14.103 +296,1991,13.933 +296,1992,13.779 +296,1993,13.825 +296,1994,13.903 +296,1995,13.948 +296,1996,13.668 +296,1997,14.124 +296,1998,13.983 +296,1999,13.985 +296,2000,13.726 +296,2001,14.189 +296,2002,14.112 +296,2003,14.387 +296,2004,14.238 +296,2005,14.389 +296,2006,14.315 +296,2007,14.192 +296,2008,14.146 +296,2009,14.406 +296,2010,14.455 +296,2011,14.164 +296,2012,14.393 +296,2013,14.251 +296,2014,14.336 +296,2015,14.653 +296,2016,14.376 +296,2017,14.636 +296,2018,14.57 +296,2019,14.738 +296,2020,14.645 +296,2021,14.634 +296,2022,14.793 +296,2023,15.08 +296,2024,NA +297,1940,13.329 +297,1941,13.709 +297,1942,13.244 +297,1943,13.576 +297,1944,13.638 +297,1945,13.64 +297,1946,13.449 +297,1947,13.556 +297,1948,13.455 +297,1949,13.537 +297,1950,13.491 +297,1951,13.778 +297,1952,13.526 +297,1953,13.692 +297,1954,13.546 +297,1955,13.477 +297,1956,13.253 +297,1957,13.629 +297,1958,13.523 +297,1959,13.535 +297,1960,13.579 +297,1961,13.57 +297,1962,13.488 +297,1963,13.547 +297,1964,13.05 +297,1965,13.575 +297,1966,13.247 +297,1967,13.776 +297,1968,13.697 +297,1969,13.518 +297,1970,13.686 +297,1971,13.416 +297,1972,13.73 +297,1973,13.532 +297,1974,13.412 +297,1975,13.28 +297,1976,13.07 +297,1977,13.414 +297,1978,13.55 +297,1979,13.754 +297,1980,13.58 +297,1981,13.624 +297,1982,13.532 +297,1983,13.762 +297,1984,13.649 +297,1985,13.469 +297,1986,13.64 +297,1987,13.797 +297,1988,13.827 +297,1989,13.76 +297,1990,13.991 +297,1991,13.858 +297,1992,13.763 +297,1993,13.816 +297,1994,13.828 +297,1995,13.986 +297,1996,13.616 +297,1997,14.131 +297,1998,13.953 +297,1999,13.95 +297,2000,13.679 +297,2001,14.164 +297,2002,14.005 +297,2003,14.349 +297,2004,14.205 +297,2005,14.34 +297,2006,14.311 +297,2007,14.152 +297,2008,14.103 +297,2009,14.348 +297,2010,14.342 +297,2011,14.168 +297,2012,14.369 +297,2013,14.152 +297,2014,14.294 +297,2015,14.594 +297,2016,14.419 +297,2017,14.578 +297,2018,14.521 +297,2019,14.713 +297,2020,14.519 +297,2021,14.62 +297,2022,14.72 +297,2023,15.053 +297,2024,NA +298,1940,13.325 +298,1941,13.568 +298,1942,13.255 +298,1943,13.526 +298,1944,13.627 +298,1945,13.55 +298,1946,13.347 +298,1947,13.449 +298,1948,13.479 +298,1949,13.52 +298,1950,13.438 +298,1951,13.67 +298,1952,13.548 +298,1953,13.625 +298,1954,13.572 +298,1955,13.447 +298,1956,13.218 +298,1957,13.619 +298,1958,13.534 +298,1959,13.496 +298,1960,13.539 +298,1961,13.639 +298,1962,13.464 +298,1963,13.504 +298,1964,13.022 +298,1965,13.498 +298,1966,13.269 +298,1967,13.68 +298,1968,13.648 +298,1969,13.407 +298,1970,13.666 +298,1971,13.384 +298,1972,13.706 +298,1973,13.458 +298,1974,13.356 +298,1975,13.239 +298,1976,13.085 +298,1977,13.356 +298,1978,13.569 +298,1979,13.718 +298,1980,13.562 +298,1981,13.594 +298,1982,13.507 +298,1983,13.666 +298,1984,13.61 +298,1985,13.47 +298,1986,13.585 +298,1987,13.836 +298,1988,13.83 +298,1989,13.776 +298,1990,13.934 +298,1991,13.768 +298,1992,13.754 +298,1993,13.765 +298,1994,13.834 +298,1995,13.989 +298,1996,13.606 +298,1997,14.111 +298,1998,13.911 +298,1999,13.932 +298,2000,13.69 +298,2001,14.097 +298,2002,14.01 +298,2003,14.3 +298,2004,14.136 +298,2005,14.252 +298,2006,14.276 +298,2007,14.165 +298,2008,14.104 +298,2009,14.255 +298,2010,14.273 +298,2011,14.163 +298,2012,14.305 +298,2013,14.063 +298,2014,14.323 +298,2015,14.508 +298,2016,14.442 +298,2017,14.556 +298,2018,14.556 +298,2019,14.701 +298,2020,14.449 +298,2021,14.554 +298,2022,14.646 +298,2023,15.004 +298,2024,NA +299,1940,13.205 +299,1941,13.525 +299,1942,13.236 +299,1943,13.475 +299,1944,13.614 +299,1945,13.56 +299,1946,13.286 +299,1947,13.435 +299,1948,13.429 +299,1949,13.499 +299,1950,13.449 +299,1951,13.609 +299,1952,13.522 +299,1953,13.542 +299,1954,13.52 +299,1955,13.405 +299,1956,13.164 +299,1957,13.544 +299,1958,13.513 +299,1959,13.426 +299,1960,13.461 +299,1961,13.684 +299,1962,13.377 +299,1963,13.472 +299,1964,12.986 +299,1965,13.356 +299,1966,13.275 +299,1967,13.598 +299,1968,13.542 +299,1969,13.355 +299,1970,13.582 +299,1971,13.28 +299,1972,13.632 +299,1973,13.392 +299,1974,13.294 +299,1975,13.219 +299,1976,13.022 +299,1977,13.411 +299,1978,13.514 +299,1979,13.69 +299,1980,13.627 +299,1981,13.598 +299,1982,13.504 +299,1983,13.613 +299,1984,13.594 +299,1985,13.541 +299,1986,13.551 +299,1987,13.858 +299,1988,13.779 +299,1989,13.808 +299,1990,13.906 +299,1991,13.675 +299,1992,13.679 +299,1993,13.735 +299,1994,13.846 +299,1995,13.959 +299,1996,13.539 +299,1997,14.105 +299,1998,13.924 +299,1999,13.879 +299,2000,13.709 +299,2001,13.971 +299,2002,14.064 +299,2003,14.253 +299,2004,14.092 +299,2005,14.225 +299,2006,14.207 +299,2007,14.168 +299,2008,14.129 +299,2009,14.16 +299,2010,14.184 +299,2011,14.141 +299,2012,14.262 +299,2013,14.035 +299,2014,14.364 +299,2015,14.42 +299,2016,14.415 +299,2017,14.571 +299,2018,14.574 +299,2019,14.691 +299,2020,14.394 +299,2021,14.582 +299,2022,14.592 +299,2023,14.96 +299,2024,NA +300,1940,13.145 +300,1941,13.506 +300,1942,13.214 +300,1943,13.468 +300,1944,13.537 +300,1945,13.549 +300,1946,13.235 +300,1947,13.422 +300,1948,13.424 +300,1949,13.468 +300,1950,13.443 +300,1951,13.573 +300,1952,13.499 +300,1953,13.501 +300,1954,13.461 +300,1955,13.359 +300,1956,13.129 +300,1957,13.435 +300,1958,13.48 +300,1959,13.413 +300,1960,13.4 +300,1961,13.669 +300,1962,13.364 +300,1963,13.484 +300,1964,12.91 +300,1965,13.325 +300,1966,13.279 +300,1967,13.515 +300,1968,13.519 +300,1969,13.326 +300,1970,13.482 +300,1971,13.159 +300,1972,13.57 +300,1973,13.326 +300,1974,13.321 +300,1975,13.216 +300,1976,12.986 +300,1977,13.534 +300,1978,13.462 +300,1979,13.629 +300,1980,13.715 +300,1981,13.598 +300,1982,13.531 +300,1983,13.619 +300,1984,13.569 +300,1985,13.567 +300,1986,13.567 +300,1987,13.769 +300,1988,13.686 +300,1989,13.717 +300,1990,13.91 +300,1991,13.638 +300,1992,13.621 +300,1993,13.679 +300,1994,13.838 +300,1995,13.947 +300,1996,13.479 +300,1997,14.06 +300,1998,13.973 +300,1999,13.854 +300,2000,13.709 +300,2001,13.862 +300,2002,14.047 +300,2003,14.21 +300,2004,14.05 +300,2005,14.24 +300,2006,14.253 +300,2007,14.148 +300,2008,14.079 +300,2009,14.079 +300,2010,14.096 +300,2011,14.04 +300,2012,14.209 +300,2013,14.035 +300,2014,14.337 +300,2015,14.377 +300,2016,14.377 +300,2017,14.523 +300,2018,14.611 +300,2019,14.67 +300,2020,14.285 +300,2021,14.592 +300,2022,14.579 +300,2023,14.881 +300,2024,NA +301,1940,13.138 +301,1941,13.532 +301,1942,13.154 +301,1943,13.415 +301,1944,13.448 +301,1945,13.54 +301,1946,13.186 +301,1947,13.438 +301,1948,13.427 +301,1949,13.474 +301,1950,13.404 +301,1951,13.62 +301,1952,13.466 +301,1953,13.412 +301,1954,13.433 +301,1955,13.255 +301,1956,13.113 +301,1957,13.328 +301,1958,13.486 +301,1959,13.377 +301,1960,13.403 +301,1961,13.61 +301,1962,13.324 +301,1963,13.478 +301,1964,12.955 +301,1965,13.349 +301,1966,13.201 +301,1967,13.522 +301,1968,13.46 +301,1969,13.339 +301,1970,13.407 +301,1971,13.051 +301,1972,13.49 +301,1973,13.297 +301,1974,13.374 +301,1975,13.145 +301,1976,12.948 +301,1977,13.562 +301,1978,13.381 +301,1979,13.505 +301,1980,13.801 +301,1981,13.591 +301,1982,13.533 +301,1983,13.638 +301,1984,13.533 +301,1985,13.548 +301,1986,13.55 +301,1987,13.713 +301,1988,13.6 +301,1989,13.553 +301,1990,13.847 +301,1991,13.583 +301,1992,13.605 +301,1993,13.616 +301,1994,13.784 +301,1995,13.966 +301,1996,13.486 +301,1997,13.976 +301,1998,13.91 +301,1999,13.799 +301,2000,13.666 +301,2001,13.771 +301,2002,13.982 +301,2003,14.137 +301,2004,13.975 +301,2005,14.206 +301,2006,14.246 +301,2007,14.132 +301,2008,14.04 +301,2009,14.005 +301,2010,14.008 +301,2011,13.989 +301,2012,14.194 +301,2013,14.053 +301,2014,14.223 +301,2015,14.388 +301,2016,14.284 +301,2017,14.4 +301,2018,14.643 +301,2019,14.616 +301,2020,14.242 +301,2021,14.589 +301,2022,14.519 +301,2023,14.784 +301,2024,NA +302,1940,13.159 +302,1941,13.529 +302,1942,13.089 +302,1943,13.316 +302,1944,13.384 +302,1945,13.47 +302,1946,13.161 +302,1947,13.404 +302,1948,13.439 +302,1949,13.514 +302,1950,13.376 +302,1951,13.618 +302,1952,13.387 +302,1953,13.34 +302,1954,13.378 +302,1955,13.212 +302,1956,13.126 +302,1957,13.31 +302,1958,13.466 +302,1959,13.306 +302,1960,13.357 +302,1961,13.534 +302,1962,13.357 +302,1963,13.471 +302,1964,13.019 +302,1965,13.319 +302,1966,13.169 +302,1967,13.545 +302,1968,13.345 +302,1969,13.346 +302,1970,13.366 +302,1971,13.007 +302,1972,13.436 +302,1973,13.294 +302,1974,13.336 +302,1975,13.088 +302,1976,12.932 +302,1977,13.568 +302,1978,13.387 +302,1979,13.408 +302,1980,13.757 +302,1981,13.591 +302,1982,13.515 +302,1983,13.623 +302,1984,13.473 +302,1985,13.5 +302,1986,13.481 +302,1987,13.679 +302,1988,13.502 +302,1989,13.53 +302,1990,13.806 +302,1991,13.46 +302,1992,13.518 +302,1993,13.556 +302,1994,13.695 +302,1995,13.856 +302,1996,13.507 +302,1997,13.861 +302,1998,13.87 +302,1999,13.754 +302,2000,13.606 +302,2001,13.744 +302,2002,13.952 +302,2003,14.13 +302,2004,14.013 +302,2005,14.133 +302,2006,14.185 +302,2007,14.088 +302,2008,14.019 +302,2009,13.95 +302,2010,13.97 +302,2011,13.889 +302,2012,14.208 +302,2013,14.053 +302,2014,14.183 +302,2015,14.364 +302,2016,14.244 +302,2017,14.269 +302,2018,14.623 +302,2019,14.571 +302,2020,14.255 +302,2021,14.554 +302,2022,14.458 +302,2023,14.736 +302,2024,NA +303,1940,13.144 +303,1941,13.525 +303,1942,13.055 +303,1943,13.281 +303,1944,13.359 +303,1945,13.443 +303,1946,13.139 +303,1947,13.346 +303,1948,13.432 +303,1949,13.486 +303,1950,13.316 +303,1951,13.526 +303,1952,13.278 +303,1953,13.289 +303,1954,13.322 +303,1955,13.145 +303,1956,13.066 +303,1957,13.338 +303,1958,13.473 +303,1959,13.219 +303,1960,13.305 +303,1961,13.468 +303,1962,13.338 +303,1963,13.443 +303,1964,12.964 +303,1965,13.194 +303,1966,13.198 +303,1967,13.462 +303,1968,13.348 +303,1969,13.257 +303,1970,13.387 +303,1971,12.971 +303,1972,13.393 +303,1973,13.235 +303,1974,13.305 +303,1975,12.988 +303,1976,12.924 +303,1977,13.586 +303,1978,13.435 +303,1979,13.392 +303,1980,13.708 +303,1981,13.624 +303,1982,13.481 +303,1983,13.577 +303,1984,13.38 +303,1985,13.344 +303,1986,13.504 +303,1987,13.658 +303,1988,13.459 +303,1989,13.489 +303,1990,13.786 +303,1991,13.341 +303,1992,13.423 +303,1993,13.502 +303,1994,13.555 +303,1995,13.715 +303,1996,13.523 +303,1997,13.803 +303,1998,13.788 +303,1999,13.769 +303,2000,13.509 +303,2001,13.714 +303,2002,13.863 +303,2003,14.124 +303,2004,14.009 +303,2005,14.065 +303,2006,14.083 +303,2007,14.058 +303,2008,13.992 +303,2009,13.922 +303,2010,13.932 +303,2011,13.793 +303,2012,14.158 +303,2013,14 +303,2014,14.179 +303,2015,14.328 +303,2016,14.243 +303,2017,14.152 +303,2018,14.601 +303,2019,14.531 +303,2020,14.256 +303,2021,14.502 +303,2022,14.413 +303,2023,14.717 +303,2024,NA +304,1940,13.103 +304,1941,13.452 +304,1942,13.08 +304,1943,13.257 +304,1944,13.346 +304,1945,13.428 +304,1946,13.154 +304,1947,13.315 +304,1948,13.45 +304,1949,13.399 +304,1950,13.261 +304,1951,13.449 +304,1952,13.162 +304,1953,13.18 +304,1954,13.262 +304,1955,13.101 +304,1956,12.977 +304,1957,13.387 +304,1958,13.401 +304,1959,13.16 +304,1960,13.282 +304,1961,13.497 +304,1962,13.286 +304,1963,13.382 +304,1964,12.946 +304,1965,13.129 +304,1966,13.17 +304,1967,13.343 +304,1968,13.365 +304,1969,13.217 +304,1970,13.383 +304,1971,12.974 +304,1972,13.393 +304,1973,13.197 +304,1974,13.228 +304,1975,12.945 +304,1976,12.84 +304,1977,13.557 +304,1978,13.438 +304,1979,13.401 +304,1980,13.644 +304,1981,13.602 +304,1982,13.4 +304,1983,13.511 +304,1984,13.249 +304,1985,13.247 +304,1986,13.507 +304,1987,13.58 +304,1988,13.408 +304,1989,13.437 +304,1990,13.762 +304,1991,13.243 +304,1992,13.326 +304,1993,13.437 +304,1994,13.463 +304,1995,13.583 +304,1996,13.48 +304,1997,13.75 +304,1998,13.653 +304,1999,13.751 +304,2000,13.483 +304,2001,13.777 +304,2002,13.797 +304,2003,14.062 +304,2004,13.899 +304,2005,14.037 +304,2006,14.048 +304,2007,14.074 +304,2008,13.996 +304,2009,13.914 +304,2010,13.922 +304,2011,13.661 +304,2012,14.163 +304,2013,13.979 +304,2014,14.162 +304,2015,14.256 +304,2016,14.227 +304,2017,14.062 +304,2018,14.545 +304,2019,14.502 +304,2020,14.193 +304,2021,14.406 +304,2022,14.335 +304,2023,14.657 +304,2024,NA +305,1940,13.055 +305,1941,13.394 +305,1942,13.029 +305,1943,13.173 +305,1944,13.304 +305,1945,13.365 +305,1946,13.13 +305,1947,13.291 +305,1948,13.41 +305,1949,13.318 +305,1950,13.145 +305,1951,13.317 +305,1952,13.119 +305,1953,13.102 +305,1954,13.21 +305,1955,13.01 +305,1956,12.983 +305,1957,13.432 +305,1958,13.313 +305,1959,13.131 +305,1960,13.308 +305,1961,13.546 +305,1962,13.28 +305,1963,13.359 +305,1964,12.924 +305,1965,13.134 +305,1966,13.121 +305,1967,13.331 +305,1968,13.349 +305,1969,13.16 +305,1970,13.363 +305,1971,12.925 +305,1972,13.342 +305,1973,13.187 +305,1974,13.149 +305,1975,12.933 +305,1976,12.805 +305,1977,13.441 +305,1978,13.47 +305,1979,13.364 +305,1980,13.56 +305,1981,13.564 +305,1982,13.297 +305,1983,13.532 +305,1984,13.134 +305,1985,13.204 +305,1986,13.41 +305,1987,13.565 +305,1988,13.364 +305,1989,13.355 +305,1990,13.727 +305,1991,13.181 +305,1992,13.277 +305,1993,13.338 +305,1994,13.397 +305,1995,13.533 +305,1996,13.479 +305,1997,13.709 +305,1998,13.562 +305,1999,13.732 +305,2000,13.529 +305,2001,13.825 +305,2002,13.747 +305,2003,13.93 +305,2004,13.829 +305,2005,14.011 +305,2006,13.999 +305,2007,14.029 +305,2008,14.01 +305,2009,13.838 +305,2010,13.995 +305,2011,13.625 +305,2012,14.125 +305,2013,13.967 +305,2014,14.135 +305,2015,14.208 +305,2016,14.257 +305,2017,14.023 +305,2018,14.429 +305,2019,14.452 +305,2020,14.168 +305,2021,14.355 +305,2022,14.223 +305,2023,14.555 +305,2024,NA +306,1940,13.011 +306,1941,13.365 +306,1942,12.989 +306,1943,13.167 +306,1944,13.275 +306,1945,13.282 +306,1946,13.077 +306,1947,13.259 +306,1948,13.371 +306,1949,13.225 +306,1950,12.982 +306,1951,13.214 +306,1952,13.089 +306,1953,13.099 +306,1954,13.165 +306,1955,12.96 +306,1956,12.978 +306,1957,13.467 +306,1958,13.277 +306,1959,13.133 +306,1960,13.361 +306,1961,13.541 +306,1962,13.257 +306,1963,13.28 +306,1964,12.905 +306,1965,13.142 +306,1966,13.117 +306,1967,13.336 +306,1968,13.325 +306,1969,13.188 +306,1970,13.349 +306,1971,12.914 +306,1972,13.264 +306,1973,13.138 +306,1974,13.127 +306,1975,12.951 +306,1976,12.824 +306,1977,13.309 +306,1978,13.474 +306,1979,13.324 +306,1980,13.52 +306,1981,13.535 +306,1982,13.304 +306,1983,13.556 +306,1984,13.045 +306,1985,13.213 +306,1986,13.383 +306,1987,13.52 +306,1988,13.33 +306,1989,13.308 +306,1990,13.678 +306,1991,13.11 +306,1992,13.205 +306,1993,13.255 +306,1994,13.361 +306,1995,13.49 +306,1996,13.491 +306,1997,13.697 +306,1998,13.525 +306,1999,13.701 +306,2000,13.511 +306,2001,13.819 +306,2002,13.731 +306,2003,13.888 +306,2004,13.771 +306,2005,14.031 +306,2006,13.958 +306,2007,13.965 +306,2008,14.018 +306,2009,13.764 +306,2010,13.964 +306,2011,13.664 +306,2012,14.094 +306,2013,13.969 +306,2014,14.032 +306,2015,14.169 +306,2016,14.252 +306,2017,14.053 +306,2018,14.351 +306,2019,14.352 +306,2020,14.169 +306,2021,14.282 +306,2022,14.085 +306,2023,14.524 +306,2024,NA +307,1940,12.912 +307,1941,13.37 +307,1942,12.974 +307,1943,13.134 +307,1944,13.227 +307,1945,13.264 +307,1946,13.047 +307,1947,13.22 +307,1948,13.319 +307,1949,13.141 +307,1950,12.928 +307,1951,13.139 +307,1952,12.962 +307,1953,13.16 +307,1954,13.172 +307,1955,12.903 +307,1956,12.93 +307,1957,13.422 +307,1958,13.259 +307,1959,13.139 +307,1960,13.385 +307,1961,13.43 +307,1962,13.2 +307,1963,13.19 +307,1964,12.889 +307,1965,13.129 +307,1966,13.075 +307,1967,13.299 +307,1968,13.274 +307,1969,13.175 +307,1970,13.329 +307,1971,12.861 +307,1972,13.232 +307,1973,13.069 +307,1974,13.107 +307,1975,12.944 +307,1976,12.785 +307,1977,13.27 +307,1978,13.439 +307,1979,13.303 +307,1980,13.475 +307,1981,13.505 +307,1982,13.258 +307,1983,13.571 +307,1984,13.023 +307,1985,13.238 +307,1986,13.412 +307,1987,13.52 +307,1988,13.311 +307,1989,13.243 +307,1990,13.627 +307,1991,13.009 +307,1992,13.12 +307,1993,13.245 +307,1994,13.338 +307,1995,13.469 +307,1996,13.441 +307,1997,13.717 +307,1998,13.521 +307,1999,13.625 +307,2000,13.515 +307,2001,13.834 +307,2002,13.71 +307,2003,13.845 +307,2004,13.712 +307,2005,13.99 +307,2006,13.886 +307,2007,13.869 +307,2008,13.989 +307,2009,13.778 +307,2010,13.95 +307,2011,13.687 +307,2012,14.042 +307,2013,13.893 +307,2014,13.946 +307,2015,14.114 +307,2016,14.26 +307,2017,14.119 +307,2018,14.262 +307,2019,14.301 +307,2020,14.178 +307,2021,14.189 +307,2022,13.972 +307,2023,14.481 +307,2024,NA +308,1940,12.829 +308,1941,13.367 +308,1942,12.902 +308,1943,13.077 +308,1944,13.127 +308,1945,13.3 +308,1946,13.095 +308,1947,13.166 +308,1948,13.295 +308,1949,13.073 +308,1950,12.896 +308,1951,13.119 +308,1952,12.854 +308,1953,13.158 +308,1954,13.116 +308,1955,12.844 +308,1956,12.884 +308,1957,13.397 +308,1958,13.208 +308,1959,13.078 +308,1960,13.338 +308,1961,13.29 +308,1962,13.136 +308,1963,13.176 +308,1964,12.895 +308,1965,13.049 +308,1966,13.051 +308,1967,13.174 +308,1968,13.259 +308,1969,13.182 +308,1970,13.263 +308,1971,12.8 +308,1972,13.176 +308,1973,13.046 +308,1974,13.072 +308,1975,12.924 +308,1976,12.767 +308,1977,13.27 +308,1978,13.354 +308,1979,13.211 +308,1980,13.433 +308,1981,13.427 +308,1982,13.244 +308,1983,13.563 +308,1984,13.028 +308,1985,13.202 +308,1986,13.413 +308,1987,13.53 +308,1988,13.231 +308,1989,13.202 +308,1990,13.602 +308,1991,12.92 +308,1992,13.023 +308,1993,13.285 +308,1994,13.327 +308,1995,13.449 +308,1996,13.385 +308,1997,13.792 +308,1998,13.519 +308,1999,13.549 +308,2000,13.548 +308,2001,13.849 +308,2002,13.722 +308,2003,13.808 +308,2004,13.692 +308,2005,13.897 +308,2006,13.815 +308,2007,13.828 +308,2008,13.986 +308,2009,13.804 +308,2010,13.934 +308,2011,13.684 +308,2012,13.998 +308,2013,13.8 +308,2014,13.934 +308,2015,14.05 +308,2016,14.286 +308,2017,14.139 +308,2018,14.168 +308,2019,14.294 +308,2020,14.173 +308,2021,14.172 +308,2022,13.885 +308,2023,14.439 +308,2024,NA +309,1940,12.783 +309,1941,13.373 +309,1942,12.8 +309,1943,13 +309,1944,13.023 +309,1945,13.279 +309,1946,13.126 +309,1947,13.122 +309,1948,13.248 +309,1949,12.999 +309,1950,12.826 +309,1951,13.146 +309,1952,12.794 +309,1953,13.141 +309,1954,13.082 +309,1955,12.883 +309,1956,12.84 +309,1957,13.361 +309,1958,13.212 +309,1959,13.006 +309,1960,13.271 +309,1961,13.241 +309,1962,13.098 +309,1963,13.241 +309,1964,12.911 +309,1965,12.933 +309,1966,13.023 +309,1967,13.023 +309,1968,13.201 +309,1969,13.179 +309,1970,13.188 +309,1971,12.751 +309,1972,13.091 +309,1973,13.012 +309,1974,13.069 +309,1975,12.845 +309,1976,12.762 +309,1977,13.261 +309,1978,13.306 +309,1979,13.143 +309,1980,13.432 +309,1981,13.313 +309,1982,13.276 +309,1983,13.508 +309,1984,13.061 +309,1985,13.153 +309,1986,13.399 +309,1987,13.488 +309,1988,13.161 +309,1989,13.216 +309,1990,13.535 +309,1991,12.957 +309,1992,12.884 +309,1993,13.307 +309,1994,13.329 +309,1995,13.398 +309,1996,13.358 +309,1997,13.874 +309,1998,13.551 +309,1999,13.514 +309,2000,13.578 +309,2001,13.883 +309,2002,13.662 +309,2003,13.732 +309,2004,13.631 +309,2005,13.844 +309,2006,13.791 +309,2007,13.789 +309,2008,13.975 +309,2009,13.832 +309,2010,13.928 +309,2011,13.673 +309,2012,13.983 +309,2013,13.694 +309,2014,13.955 +309,2015,13.966 +309,2016,14.311 +309,2017,14.136 +309,2018,14.099 +309,2019,14.269 +309,2020,14.154 +309,2021,14.181 +309,2022,13.883 +309,2023,14.4 +309,2024,NA +310,1940,12.752 +310,1941,13.35 +310,1942,12.693 +310,1943,12.907 +310,1944,12.962 +310,1945,13.218 +310,1946,13.121 +310,1947,13.13 +310,1948,13.172 +310,1949,12.945 +310,1950,12.748 +310,1951,13.166 +310,1952,12.751 +310,1953,13.013 +310,1954,13.077 +310,1955,12.939 +310,1956,12.796 +310,1957,13.317 +310,1958,13.173 +310,1959,12.984 +310,1960,13.214 +310,1961,13.16 +310,1962,13.035 +310,1963,13.283 +310,1964,12.931 +310,1965,12.88 +310,1966,12.983 +310,1967,12.912 +310,1968,13.129 +310,1969,13.109 +310,1970,13.155 +310,1971,12.68 +310,1972,13.011 +310,1973,12.978 +310,1974,12.975 +310,1975,12.791 +310,1976,12.714 +310,1977,13.239 +310,1978,13.269 +310,1979,13.088 +310,1980,13.398 +310,1981,13.245 +310,1982,13.281 +310,1983,13.477 +310,1984,13.038 +310,1985,13.145 +310,1986,13.371 +310,1987,13.418 +310,1988,13.143 +310,1989,13.202 +310,1990,13.435 +310,1991,13.025 +310,1992,12.882 +310,1993,13.206 +310,1994,13.301 +310,1995,13.382 +310,1996,13.299 +310,1997,13.974 +310,1998,13.566 +310,1999,13.496 +310,2000,13.536 +310,2001,13.869 +310,2002,13.611 +310,2003,13.701 +310,2004,13.539 +310,2005,13.748 +310,2006,13.752 +310,2007,13.72 +310,2008,13.958 +310,2009,13.866 +310,2010,13.943 +310,2011,13.637 +310,2012,13.969 +310,2013,13.651 +310,2014,13.929 +310,2015,13.905 +310,2016,14.338 +310,2017,14.109 +310,2018,14.023 +310,2019,14.203 +310,2020,14.187 +310,2021,14.176 +310,2022,13.954 +310,2023,14.424 +310,2024,NA +311,1940,12.7 +311,1941,13.296 +311,1942,12.618 +311,1943,12.849 +311,1944,12.941 +311,1945,13.178 +311,1946,13.029 +311,1947,13.119 +311,1948,13.136 +311,1949,12.945 +311,1950,12.694 +311,1951,13.136 +311,1952,12.688 +311,1953,12.861 +311,1954,13.138 +311,1955,12.885 +311,1956,12.775 +311,1957,13.245 +311,1958,13.115 +311,1959,12.884 +311,1960,13.133 +311,1961,13.076 +311,1962,12.971 +311,1963,13.274 +311,1964,12.92 +311,1965,12.945 +311,1966,12.998 +311,1967,12.872 +311,1968,13.039 +311,1969,13.042 +311,1970,13.15 +311,1971,12.569 +311,1972,12.969 +311,1973,12.957 +311,1974,12.866 +311,1975,12.752 +311,1976,12.682 +311,1977,13.194 +311,1978,13.265 +311,1979,13.017 +311,1980,13.297 +311,1981,13.189 +311,1982,13.17 +311,1983,13.468 +311,1984,12.998 +311,1985,13.11 +311,1986,13.314 +311,1987,13.358 +311,1988,13.08 +311,1989,13.105 +311,1990,13.344 +311,1991,13.093 +311,1992,12.879 +311,1993,13.123 +311,1994,13.269 +311,1995,13.335 +311,1996,13.248 +311,1997,13.967 +311,1998,13.574 +311,1999,13.481 +311,2000,13.394 +311,2001,13.81 +311,2002,13.55 +311,2003,13.667 +311,2004,13.47 +311,2005,13.651 +311,2006,13.695 +311,2007,13.68 +311,2008,13.871 +311,2009,13.874 +311,2010,13.954 +311,2011,13.546 +311,2012,13.879 +311,2013,13.681 +311,2014,13.907 +311,2015,13.853 +311,2016,14.3 +311,2017,14.087 +311,2018,13.986 +311,2019,14.138 +311,2020,14.244 +311,2021,14.084 +311,2022,13.986 +311,2023,14.446 +311,2024,NA +312,1940,12.681 +312,1941,13.237 +312,1942,12.626 +312,1943,12.775 +312,1944,12.944 +312,1945,13.114 +312,1946,12.986 +312,1947,13.068 +312,1948,13.036 +312,1949,12.935 +312,1950,12.693 +312,1951,13.098 +312,1952,12.622 +312,1953,12.754 +312,1954,13.158 +312,1955,12.823 +312,1956,12.686 +312,1957,13.14 +312,1958,13.064 +312,1959,12.879 +312,1960,13.039 +312,1961,12.972 +312,1962,13.007 +312,1963,13.229 +312,1964,12.876 +312,1965,13.022 +312,1966,12.928 +312,1967,12.814 +312,1968,12.926 +312,1969,13.062 +312,1970,13.14 +312,1971,12.513 +312,1972,12.977 +312,1973,12.946 +312,1974,12.797 +312,1975,12.767 +312,1976,12.763 +312,1977,13.165 +312,1978,13.22 +312,1979,13.005 +312,1980,13.198 +312,1981,13.125 +312,1982,13.132 +312,1983,13.404 +312,1984,12.957 +312,1985,13.046 +312,1986,13.229 +312,1987,13.319 +312,1988,12.989 +312,1989,13.027 +312,1990,13.264 +312,1991,13.132 +312,1992,12.929 +312,1993,13.094 +312,1994,13.281 +312,1995,13.292 +312,1996,13.194 +312,1997,13.892 +312,1998,13.526 +312,1999,13.433 +312,2000,13.248 +312,2001,13.791 +312,2002,13.534 +312,2003,13.671 +312,2004,13.462 +312,2005,13.645 +312,2006,13.683 +312,2007,13.682 +312,2008,13.723 +312,2009,13.792 +312,2010,13.945 +312,2011,13.532 +312,2012,13.843 +312,2013,13.705 +312,2014,13.814 +312,2015,13.84 +312,2016,14.165 +312,2017,14.038 +312,2018,13.917 +312,2019,14.031 +312,2020,14.262 +312,2021,14.026 +312,2022,13.918 +312,2023,14.448 +312,2024,NA +313,1940,12.656 +313,1941,13.122 +313,1942,12.607 +313,1943,12.754 +313,1944,12.916 +313,1945,13.002 +313,1946,12.915 +313,1947,12.956 +313,1948,12.981 +313,1949,12.927 +313,1950,12.679 +313,1951,13.011 +313,1952,12.57 +313,1953,12.749 +313,1954,13.031 +313,1955,12.762 +313,1956,12.589 +313,1957,13.026 +313,1958,12.972 +313,1959,12.862 +313,1960,12.949 +313,1961,12.853 +313,1962,12.958 +313,1963,13.175 +313,1964,12.827 +313,1965,12.982 +313,1966,12.818 +313,1967,12.782 +313,1968,12.845 +313,1969,13.095 +313,1970,13.128 +313,1971,12.579 +313,1972,12.932 +313,1973,12.917 +313,1974,12.74 +313,1975,12.779 +313,1976,12.835 +313,1977,13.077 +313,1978,13.163 +313,1979,12.977 +313,1980,13.101 +313,1981,13.099 +313,1982,13.079 +313,1983,13.297 +313,1984,12.915 +313,1985,12.981 +313,1986,13.114 +313,1987,13.284 +313,1988,12.969 +313,1989,12.972 +313,1990,13.209 +313,1991,13.122 +313,1992,12.915 +313,1993,13.068 +313,1994,13.369 +313,1995,13.284 +313,1996,13.187 +313,1997,13.84 +313,1998,13.504 +313,1999,13.38 +313,2000,13.125 +313,2001,13.737 +313,2002,13.524 +313,2003,13.686 +313,2004,13.526 +313,2005,13.651 +313,2006,13.701 +313,2007,13.672 +313,2008,13.638 +313,2009,13.702 +313,2010,13.935 +313,2011,13.485 +313,2012,13.798 +313,2013,13.71 +313,2014,13.737 +313,2015,13.873 +313,2016,14.057 +313,2017,13.952 +313,2018,13.891 +313,2019,13.936 +313,2020,14.199 +313,2021,14.02 +313,2022,13.905 +313,2023,14.438 +313,2024,NA +314,1940,12.61 +314,1941,12.999 +314,1942,12.548 +314,1943,12.716 +314,1944,12.887 +314,1945,12.922 +314,1946,12.87 +314,1947,12.815 +314,1948,12.935 +314,1949,12.924 +314,1950,12.605 +314,1951,13.022 +314,1952,12.559 +314,1953,12.748 +314,1954,12.919 +314,1955,12.738 +314,1956,12.558 +314,1957,12.948 +314,1958,12.931 +314,1959,12.846 +314,1960,12.869 +314,1961,12.824 +314,1962,12.855 +314,1963,13.101 +314,1964,12.758 +314,1965,12.895 +314,1966,12.753 +314,1967,12.753 +314,1968,12.787 +314,1969,13.071 +314,1970,13.036 +314,1971,12.651 +314,1972,12.859 +314,1973,12.932 +314,1974,12.689 +314,1975,12.716 +314,1976,12.78 +314,1977,12.954 +314,1978,13.075 +314,1979,12.928 +314,1980,13.058 +314,1981,13.042 +314,1982,13.024 +314,1983,13.258 +314,1984,12.844 +314,1985,12.953 +314,1986,13.054 +314,1987,13.225 +314,1988,12.922 +314,1989,12.95 +314,1990,13.173 +314,1991,13.122 +314,1992,12.872 +314,1993,13.09 +314,1994,13.467 +314,1995,13.31 +314,1996,13.181 +314,1997,13.798 +314,1998,13.478 +314,1999,13.323 +314,2000,13.141 +314,2001,13.646 +314,2002,13.551 +314,2003,13.659 +314,2004,13.549 +314,2005,13.645 +314,2006,13.733 +314,2007,13.621 +314,2008,13.635 +314,2009,13.641 +314,2010,13.95 +314,2011,13.423 +314,2012,13.754 +314,2013,13.703 +314,2014,13.768 +314,2015,13.912 +314,2016,14.021 +314,2017,13.866 +314,2018,13.86 +314,2019,13.841 +314,2020,14.143 +314,2021,14.014 +314,2022,13.875 +314,2023,14.404 +314,2024,NA +315,1940,12.615 +315,1941,12.882 +315,1942,12.491 +315,1943,12.698 +315,1944,12.887 +315,1945,12.852 +315,1946,12.791 +315,1947,12.763 +315,1948,12.912 +315,1949,12.929 +315,1950,12.521 +315,1951,13.046 +315,1952,12.516 +315,1953,12.741 +315,1954,12.795 +315,1955,12.705 +315,1956,12.548 +315,1957,12.896 +315,1958,12.902 +315,1959,12.904 +315,1960,12.857 +315,1961,12.783 +315,1962,12.795 +315,1963,13.134 +315,1964,12.737 +315,1965,12.786 +315,1966,12.731 +315,1967,12.816 +315,1968,12.744 +315,1969,13.042 +315,1970,12.893 +315,1971,12.717 +315,1972,12.846 +315,1973,12.895 +315,1974,12.677 +315,1975,12.692 +315,1976,12.742 +315,1977,12.879 +315,1978,12.899 +315,1979,12.846 +315,1980,13.049 +315,1981,13.038 +315,1982,12.945 +315,1983,13.189 +315,1984,12.743 +315,1985,12.943 +315,1986,12.966 +315,1987,13.156 +315,1988,12.861 +315,1989,12.951 +315,1990,13.227 +315,1991,13.116 +315,1992,12.922 +315,1993,13.093 +315,1994,13.499 +315,1995,13.336 +315,1996,13.103 +315,1997,13.708 +315,1998,13.379 +315,1999,13.268 +315,2000,13.121 +315,2001,13.613 +315,2002,13.519 +315,2003,13.634 +315,2004,13.575 +315,2005,13.603 +315,2006,13.724 +315,2007,13.565 +315,2008,13.608 +315,2009,13.615 +315,2010,13.922 +315,2011,13.381 +315,2012,13.756 +315,2013,13.718 +315,2014,13.722 +315,2015,13.984 +315,2016,13.976 +315,2017,13.776 +315,2018,13.762 +315,2019,13.761 +315,2020,14.112 +315,2021,13.935 +315,2022,13.758 +315,2023,14.388 +315,2024,NA +316,1940,12.561 +316,1941,12.842 +316,1942,12.452 +316,1943,12.677 +316,1944,12.854 +316,1945,12.819 +316,1946,12.732 +316,1947,12.736 +316,1948,12.929 +316,1949,12.896 +316,1950,12.476 +316,1951,13.006 +316,1952,12.457 +316,1953,12.674 +316,1954,12.728 +316,1955,12.622 +316,1956,12.515 +316,1957,12.856 +316,1958,12.884 +316,1959,12.848 +316,1960,12.823 +316,1961,12.783 +316,1962,12.797 +316,1963,13.128 +316,1964,12.7 +316,1965,12.711 +316,1966,12.644 +316,1967,12.809 +316,1968,12.674 +316,1969,13.053 +316,1970,12.852 +316,1971,12.743 +316,1972,12.812 +316,1973,12.873 +316,1974,12.662 +316,1975,12.694 +316,1976,12.682 +316,1977,12.874 +316,1978,12.778 +316,1979,12.771 +316,1980,13.054 +316,1981,13.129 +316,1982,12.92 +316,1983,13.088 +316,1984,12.65 +316,1985,12.916 +316,1986,12.856 +316,1987,13.065 +316,1988,12.869 +316,1989,12.915 +316,1990,13.222 +316,1991,13.132 +316,1992,12.969 +316,1993,13.1 +316,1994,13.517 +316,1995,13.301 +316,1996,13.108 +316,1997,13.62 +316,1998,13.263 +316,1999,13.217 +316,2000,13.1 +316,2001,13.546 +316,2002,13.46 +316,2003,13.623 +316,2004,13.511 +316,2005,13.599 +316,2006,13.654 +316,2007,13.487 +316,2008,13.539 +316,2009,13.575 +316,2010,13.875 +316,2011,13.409 +316,2012,13.698 +316,2013,13.686 +316,2014,13.598 +316,2015,14.031 +316,2016,13.952 +316,2017,13.71 +316,2018,13.693 +316,2019,13.732 +316,2020,14.095 +316,2021,13.792 +316,2022,13.683 +316,2023,14.345 +316,2024,NA +317,1940,12.505 +317,1941,12.757 +317,1942,12.417 +317,1943,12.673 +317,1944,12.77 +317,1945,12.788 +317,1946,12.71 +317,1947,12.703 +317,1948,12.979 +317,1949,12.886 +317,1950,12.443 +317,1951,12.953 +317,1952,12.367 +317,1953,12.682 +317,1954,12.707 +317,1955,12.595 +317,1956,12.533 +317,1957,12.821 +317,1958,12.816 +317,1959,12.751 +317,1960,12.752 +317,1961,12.721 +317,1962,12.795 +317,1963,13.105 +317,1964,12.646 +317,1965,12.638 +317,1966,12.59 +317,1967,12.836 +317,1968,12.69 +317,1969,13.003 +317,1970,12.897 +317,1971,12.726 +317,1972,12.833 +317,1973,12.895 +317,1974,12.599 +317,1975,12.68 +317,1976,12.655 +317,1977,12.904 +317,1978,12.778 +317,1979,12.762 +317,1980,13.036 +317,1981,13.216 +317,1982,12.902 +317,1983,13.015 +317,1984,12.577 +317,1985,12.939 +317,1986,12.773 +317,1987,13.104 +317,1988,12.822 +317,1989,12.856 +317,1990,13.282 +317,1991,13.184 +317,1992,12.96 +317,1993,13.046 +317,1994,13.44 +317,1995,13.242 +317,1996,13.139 +317,1997,13.534 +317,1998,13.278 +317,1999,13.204 +317,2000,13.078 +317,2001,13.515 +317,2002,13.393 +317,2003,13.558 +317,2004,13.51 +317,2005,13.608 +317,2006,13.526 +317,2007,13.388 +317,2008,13.499 +317,2009,13.566 +317,2010,13.803 +317,2011,13.471 +317,2012,13.601 +317,2013,13.66 +317,2014,13.465 +317,2015,14.039 +317,2016,13.876 +317,2017,13.659 +317,2018,13.665 +317,2019,13.611 +317,2020,14.08 +317,2021,13.752 +317,2022,13.613 +317,2023,14.341 +317,2024,NA +318,1940,12.472 +318,1941,12.635 +318,1942,12.385 +318,1943,12.699 +318,1944,12.687 +318,1945,12.714 +318,1946,12.718 +318,1947,12.682 +318,1948,12.962 +318,1949,12.807 +318,1950,12.438 +318,1951,12.922 +318,1952,12.36 +318,1953,12.668 +318,1954,12.695 +318,1955,12.572 +318,1956,12.521 +318,1957,12.859 +318,1958,12.746 +318,1959,12.681 +318,1960,12.653 +318,1961,12.669 +318,1962,12.842 +318,1963,13.002 +318,1964,12.562 +318,1965,12.578 +318,1966,12.527 +318,1967,12.878 +318,1968,12.631 +318,1969,12.931 +318,1970,12.895 +318,1971,12.706 +318,1972,12.803 +318,1973,12.937 +318,1974,12.589 +318,1975,12.612 +318,1976,12.634 +318,1977,12.899 +318,1978,12.797 +318,1979,12.815 +318,1980,12.956 +318,1981,13.187 +318,1982,12.841 +318,1983,12.936 +318,1984,12.554 +318,1985,12.991 +318,1986,12.734 +318,1987,13.072 +318,1988,12.807 +318,1989,12.775 +318,1990,13.342 +318,1991,13.207 +318,1992,12.947 +318,1993,12.983 +318,1994,13.296 +318,1995,13.161 +318,1996,13.197 +318,1997,13.42 +318,1998,13.311 +318,1999,13.198 +318,2000,12.969 +318,2001,13.516 +318,2002,13.349 +318,2003,13.487 +318,2004,13.54 +318,2005,13.544 +318,2006,13.49 +318,2007,13.383 +318,2008,13.454 +318,2009,13.62 +318,2010,13.761 +318,2011,13.527 +318,2012,13.571 +318,2013,13.633 +318,2014,13.395 +318,2015,14.044 +318,2016,13.803 +318,2017,13.617 +318,2018,13.587 +318,2019,13.558 +318,2020,14.044 +318,2021,13.774 +318,2022,13.561 +318,2023,14.35 +318,2024,NA +319,1940,12.513 +319,1941,12.507 +319,1942,12.306 +319,1943,12.727 +319,1944,12.706 +319,1945,12.587 +319,1946,12.676 +319,1947,12.669 +319,1948,12.935 +319,1949,12.734 +319,1950,12.441 +319,1951,12.966 +319,1952,12.411 +319,1953,12.702 +319,1954,12.656 +319,1955,12.497 +319,1956,12.499 +319,1957,12.958 +319,1958,12.713 +319,1959,12.601 +319,1960,12.587 +319,1961,12.659 +319,1962,12.851 +319,1963,12.924 +319,1964,12.522 +319,1965,12.603 +319,1966,12.446 +319,1967,12.867 +319,1968,12.579 +319,1969,12.819 +319,1970,12.766 +319,1971,12.679 +319,1972,12.728 +319,1973,12.986 +319,1974,12.609 +319,1975,12.594 +319,1976,12.621 +319,1977,12.859 +319,1978,12.835 +319,1979,12.866 +319,1980,12.944 +319,1981,13.122 +319,1982,12.779 +319,1983,12.906 +319,1984,12.591 +319,1985,12.977 +319,1986,12.725 +319,1987,13.017 +319,1988,12.795 +319,1989,12.709 +319,1990,13.335 +319,1991,13.206 +319,1992,12.934 +319,1993,12.887 +319,1994,13.202 +319,1995,13.145 +319,1996,13.24 +319,1997,13.278 +319,1998,13.313 +319,1999,13.197 +319,2000,12.891 +319,2001,13.501 +319,2002,13.342 +319,2003,13.431 +319,2004,13.566 +319,2005,13.506 +319,2006,13.624 +319,2007,13.306 +319,2008,13.397 +319,2009,13.653 +319,2010,13.72 +319,2011,13.49 +319,2012,13.586 +319,2013,13.594 +319,2014,13.383 +319,2015,13.959 +319,2016,13.773 +319,2017,13.56 +319,2018,13.531 +319,2019,13.605 +319,2020,14.021 +319,2021,13.768 +319,2022,13.513 +319,2023,14.343 +319,2024,NA +320,1940,12.556 +320,1941,12.45 +320,1942,12.271 +320,1943,12.721 +320,1944,12.814 +320,1945,12.493 +320,1946,12.615 +320,1947,12.694 +320,1948,12.878 +320,1949,12.645 +320,1950,12.42 +320,1951,12.942 +320,1952,12.452 +320,1953,12.716 +320,1954,12.661 +320,1955,12.39 +320,1956,12.454 +320,1957,12.943 +320,1958,12.661 +320,1959,12.56 +320,1960,12.529 +320,1961,12.646 +320,1962,12.832 +320,1963,12.843 +320,1964,12.548 +320,1965,12.654 +320,1966,12.496 +320,1967,12.805 +320,1968,12.595 +320,1969,12.748 +320,1970,12.636 +320,1971,12.654 +320,1972,12.641 +320,1973,13.022 +320,1974,12.623 +320,1975,12.546 +320,1976,12.598 +320,1977,12.934 +320,1978,12.804 +320,1979,12.931 +320,1980,12.932 +320,1981,13.061 +320,1982,12.725 +320,1983,12.87 +320,1984,12.591 +320,1985,12.942 +320,1986,12.801 +320,1987,12.971 +320,1988,12.765 +320,1989,12.684 +320,1990,13.282 +320,1991,13.161 +320,1992,12.832 +320,1993,12.77 +320,1994,13.159 +320,1995,13.158 +320,1996,13.275 +320,1997,13.183 +320,1998,13.276 +320,1999,13.141 +320,2000,12.844 +320,2001,13.491 +320,2002,13.249 +320,2003,13.37 +320,2004,13.6 +320,2005,13.494 +320,2006,13.637 +320,2007,13.21 +320,2008,13.351 +320,2009,13.627 +320,2010,13.7 +320,2011,13.401 +320,2012,13.609 +320,2013,13.572 +320,2014,13.366 +320,2015,13.817 +320,2016,13.746 +320,2017,13.458 +320,2018,13.48 +320,2019,13.708 +320,2020,13.979 +320,2021,13.77 +320,2022,13.422 +320,2023,14.362 +320,2024,NA +321,1940,12.621 +321,1941,12.409 +321,1942,12.272 +321,1943,12.721 +321,1944,12.839 +321,1945,12.496 +321,1946,12.488 +321,1947,12.649 +321,1948,12.786 +321,1949,12.613 +321,1950,12.448 +321,1951,12.756 +321,1952,12.463 +321,1953,12.719 +321,1954,12.686 +321,1955,12.201 +321,1956,12.412 +321,1957,12.922 +321,1958,12.626 +321,1959,12.494 +321,1960,12.592 +321,1961,12.675 +321,1962,12.801 +321,1963,12.799 +321,1964,12.551 +321,1965,12.666 +321,1966,12.514 +321,1967,12.765 +321,1968,12.589 +321,1969,12.783 +321,1970,12.616 +321,1971,12.644 +321,1972,12.628 +321,1973,12.968 +321,1974,12.626 +321,1975,12.516 +321,1976,12.631 +321,1977,12.992 +321,1978,12.771 +321,1979,13.014 +321,1980,12.932 +321,1981,13.017 +321,1982,12.681 +321,1983,12.841 +321,1984,12.635 +321,1985,12.892 +321,1986,12.861 +321,1987,12.922 +321,1988,12.753 +321,1989,12.666 +321,1990,13.247 +321,1991,13.177 +321,1992,12.749 +321,1993,12.652 +321,1994,13.166 +321,1995,13.221 +321,1996,13.26 +321,1997,13.073 +321,1998,13.19 +321,1999,12.989 +321,2000,12.824 +321,2001,13.525 +321,2002,13.24 +321,2003,13.307 +321,2004,13.702 +321,2005,13.429 +321,2006,13.595 +321,2007,13.197 +321,2008,13.257 +321,2009,13.543 +321,2010,13.618 +321,2011,13.317 +321,2012,13.572 +321,2013,13.522 +321,2014,13.337 +321,2015,13.718 +321,2016,13.709 +321,2017,13.388 +321,2018,13.394 +321,2019,13.76 +321,2020,13.934 +321,2021,13.702 +321,2022,13.398 +321,2023,14.411 +321,2024,NA +322,1940,12.651 +322,1941,12.373 +322,1942,12.367 +322,1943,12.686 +322,1944,12.812 +322,1945,12.421 +322,1946,12.437 +322,1947,12.592 +322,1948,12.764 +322,1949,12.63 +322,1950,12.433 +322,1951,12.642 +322,1952,12.461 +322,1953,12.699 +322,1954,12.679 +322,1955,12.199 +322,1956,12.435 +322,1957,12.882 +322,1958,12.571 +322,1959,12.5 +322,1960,12.563 +322,1961,12.677 +322,1962,12.688 +322,1963,12.744 +322,1964,12.5 +322,1965,12.581 +322,1966,12.55 +322,1967,12.722 +322,1968,12.561 +322,1969,12.748 +322,1970,12.622 +322,1971,12.621 +322,1972,12.59 +322,1973,12.874 +322,1974,12.597 +322,1975,12.475 +322,1976,12.628 +322,1977,12.98 +322,1978,12.765 +322,1979,13.028 +322,1980,12.952 +322,1981,12.932 +322,1982,12.73 +322,1983,12.855 +322,1984,12.639 +322,1985,12.834 +322,1986,12.923 +322,1987,12.889 +322,1988,12.744 +322,1989,12.658 +322,1990,13.275 +322,1991,13.22 +322,1992,12.738 +322,1993,12.542 +322,1994,13.124 +322,1995,13.257 +322,1996,13.246 +322,1997,12.978 +322,1998,13.041 +322,1999,12.961 +322,2000,12.832 +322,2001,13.543 +322,2002,13.32 +322,2003,13.305 +322,2004,13.734 +322,2005,13.415 +322,2006,13.537 +322,2007,13.224 +322,2008,13.15 +322,2009,13.451 +322,2010,13.511 +322,2011,13.288 +322,2012,13.58 +322,2013,13.523 +322,2014,13.307 +322,2015,13.668 +322,2016,13.705 +322,2017,13.365 +322,2018,13.352 +322,2019,13.709 +322,2020,13.875 +322,2021,13.579 +322,2022,13.403 +322,2023,14.46 +322,2024,NA +323,1940,12.693 +323,1941,12.325 +323,1942,12.427 +323,1943,12.63 +323,1944,12.737 +323,1945,12.314 +323,1946,12.448 +323,1947,12.541 +323,1948,12.703 +323,1949,12.698 +323,1950,12.386 +323,1951,12.523 +323,1952,12.428 +323,1953,12.596 +323,1954,12.692 +323,1955,12.258 +323,1956,12.469 +323,1957,12.78 +323,1958,12.588 +323,1959,12.497 +323,1960,12.478 +323,1961,12.645 +323,1962,12.585 +323,1963,12.757 +323,1964,12.495 +323,1965,12.614 +323,1966,12.609 +323,1967,12.629 +323,1968,12.522 +323,1969,12.754 +323,1970,12.659 +323,1971,12.612 +323,1972,12.542 +323,1973,12.816 +323,1974,12.566 +323,1975,12.364 +323,1976,12.649 +323,1977,12.875 +323,1978,12.688 +323,1979,13.014 +323,1980,12.877 +323,1981,12.925 +323,1982,12.8 +323,1983,12.902 +323,1984,12.636 +323,1985,12.762 +323,1986,12.898 +323,1987,12.902 +323,1988,12.722 +323,1989,12.702 +323,1990,13.289 +323,1991,13.179 +323,1992,12.747 +323,1993,12.519 +323,1994,13.078 +323,1995,13.203 +323,1996,13.273 +323,1997,12.956 +323,1998,12.897 +323,1999,12.962 +323,2000,12.831 +323,2001,13.497 +323,2002,13.347 +323,2003,13.257 +323,2004,13.706 +323,2005,13.421 +323,2006,13.481 +323,2007,13.213 +323,2008,13.067 +323,2009,13.388 +323,2010,13.405 +323,2011,13.219 +323,2012,13.538 +323,2013,13.556 +323,2014,13.251 +323,2015,13.635 +323,2016,13.653 +323,2017,13.353 +323,2018,13.32 +323,2019,13.703 +323,2020,13.829 +323,2021,13.542 +323,2022,13.374 +323,2023,14.428 +323,2024,NA +324,1940,12.705 +324,1941,12.26 +324,1942,12.429 +324,1943,12.633 +324,1944,12.658 +324,1945,12.245 +324,1946,12.488 +324,1947,12.47 +324,1948,12.657 +324,1949,12.693 +324,1950,12.356 +324,1951,12.478 +324,1952,12.403 +324,1953,12.52 +324,1954,12.653 +324,1955,12.279 +324,1956,12.453 +324,1957,12.664 +324,1958,12.695 +324,1959,12.446 +324,1960,12.421 +324,1961,12.638 +324,1962,12.56 +324,1963,12.693 +324,1964,12.418 +324,1965,12.657 +324,1966,12.628 +324,1967,12.571 +324,1968,12.498 +324,1969,12.739 +324,1970,12.682 +324,1971,12.611 +324,1972,12.533 +324,1973,12.719 +324,1974,12.527 +324,1975,12.321 +324,1976,12.599 +324,1977,12.788 +324,1978,12.574 +324,1979,12.964 +324,1980,12.783 +324,1981,12.846 +324,1982,12.768 +324,1983,12.918 +324,1984,12.61 +324,1985,12.629 +324,1986,12.83 +324,1987,12.802 +324,1988,12.674 +324,1989,12.788 +324,1990,13.283 +324,1991,13.086 +324,1992,12.71 +324,1993,12.485 +324,1994,13.053 +324,1995,13.107 +324,1996,13.324 +324,1997,13.033 +324,1998,12.833 +324,1999,12.995 +324,2000,12.808 +324,2001,13.398 +324,2002,13.334 +324,2003,13.242 +324,2004,13.658 +324,2005,13.446 +324,2006,13.415 +324,2007,13.235 +324,2008,13.023 +324,2009,13.364 +324,2010,13.353 +324,2011,13.14 +324,2012,13.501 +324,2013,13.5 +324,2014,13.279 +324,2015,13.606 +324,2016,13.533 +324,2017,13.322 +324,2018,13.315 +324,2019,13.714 +324,2020,13.801 +324,2021,13.492 +324,2022,13.362 +324,2023,14.313 +324,2024,NA +325,1940,12.691 +325,1941,12.181 +325,1942,12.404 +325,1943,12.653 +325,1944,12.544 +325,1945,12.276 +325,1946,12.529 +325,1947,12.424 +325,1948,12.633 +325,1949,12.717 +325,1950,12.311 +325,1951,12.503 +325,1952,12.376 +325,1953,12.476 +325,1954,12.616 +325,1955,12.327 +325,1956,12.419 +325,1957,12.595 +325,1958,12.699 +325,1959,12.435 +325,1960,12.334 +325,1961,12.614 +325,1962,12.566 +325,1963,12.62 +325,1964,12.293 +325,1965,12.656 +325,1966,12.616 +325,1967,12.547 +325,1968,12.47 +325,1969,12.703 +325,1970,12.631 +325,1971,12.575 +325,1972,12.466 +325,1973,12.629 +325,1974,12.542 +325,1975,12.295 +325,1976,12.498 +325,1977,12.708 +325,1978,12.593 +325,1979,12.949 +325,1980,12.747 +325,1981,12.778 +325,1982,12.736 +325,1983,12.857 +325,1984,12.608 +325,1985,12.562 +325,1986,12.735 +325,1987,12.725 +325,1988,12.594 +325,1989,12.836 +325,1990,13.25 +325,1991,12.957 +325,1992,12.604 +325,1993,12.476 +325,1994,12.992 +325,1995,13.026 +325,1996,13.363 +325,1997,13.138 +325,1998,12.827 +325,1999,12.984 +325,2000,12.739 +325,2001,13.312 +325,2002,13.31 +325,2003,13.116 +325,2004,13.553 +325,2005,13.443 +325,2006,13.384 +325,2007,13.215 +325,2008,13.036 +325,2009,13.306 +325,2010,13.323 +325,2011,13.013 +325,2012,13.558 +325,2013,13.406 +325,2014,13.295 +325,2015,13.533 +325,2016,13.456 +325,2017,13.372 +325,2018,13.339 +325,2019,13.66 +325,2020,13.787 +325,2021,13.455 +325,2022,13.306 +325,2023,14.219 +325,2024,NA +326,1940,12.666 +326,1941,12.083 +326,1942,12.39 +326,1943,12.65 +326,1944,12.441 +326,1945,12.241 +326,1946,12.512 +326,1947,12.383 +326,1948,12.574 +326,1949,12.657 +326,1950,12.291 +326,1951,12.478 +326,1952,12.381 +326,1953,12.47 +326,1954,12.53 +326,1955,12.309 +326,1956,12.407 +326,1957,12.543 +326,1958,12.655 +326,1959,12.427 +326,1960,12.27 +326,1961,12.615 +326,1962,12.52 +326,1963,12.617 +326,1964,12.168 +326,1965,12.627 +326,1966,12.642 +326,1967,12.581 +326,1968,12.437 +326,1969,12.723 +326,1970,12.532 +326,1971,12.592 +326,1972,12.435 +326,1973,12.51 +326,1974,12.526 +326,1975,12.307 +326,1976,12.423 +326,1977,12.667 +326,1978,12.611 +326,1979,12.949 +326,1980,12.734 +326,1981,12.69 +326,1982,12.696 +326,1983,12.851 +326,1984,12.653 +326,1985,12.553 +326,1986,12.701 +326,1987,12.694 +326,1988,12.526 +326,1989,12.832 +326,1990,13.232 +326,1991,12.906 +326,1992,12.497 +326,1993,12.465 +326,1994,12.917 +326,1995,12.981 +326,1996,13.283 +326,1997,13.185 +326,1998,12.802 +326,1999,12.9 +326,2000,12.7 +326,2001,13.277 +326,2002,13.302 +326,2003,12.948 +326,2004,13.455 +326,2005,13.396 +326,2006,13.351 +326,2007,13.188 +326,2008,13.069 +326,2009,13.304 +326,2010,13.232 +326,2011,12.978 +326,2012,13.581 +326,2013,13.35 +326,2014,13.327 +326,2015,13.465 +326,2016,13.391 +326,2017,13.371 +326,2018,13.345 +326,2019,13.599 +326,2020,13.757 +326,2021,13.415 +326,2022,13.248 +326,2023,14.095 +326,2024,NA +327,1940,12.601 +327,1941,12.017 +327,1942,12.443 +327,1943,12.598 +327,1944,12.432 +327,1945,12.223 +327,1946,12.413 +327,1947,12.339 +327,1948,12.492 +327,1949,12.483 +327,1950,12.279 +327,1951,12.452 +327,1952,12.374 +327,1953,12.481 +327,1954,12.481 +327,1955,12.275 +327,1956,12.386 +327,1957,12.501 +327,1958,12.585 +327,1959,12.405 +327,1960,12.235 +327,1961,12.598 +327,1962,12.464 +327,1963,12.59 +327,1964,12.074 +327,1965,12.623 +327,1966,12.628 +327,1967,12.573 +327,1968,12.498 +327,1969,12.727 +327,1970,12.361 +327,1971,12.567 +327,1972,12.466 +327,1973,12.517 +327,1974,12.46 +327,1975,12.31 +327,1976,12.403 +327,1977,12.675 +327,1978,12.669 +327,1979,12.948 +327,1980,12.751 +327,1981,12.646 +327,1982,12.714 +327,1983,12.908 +327,1984,12.67 +327,1985,12.508 +327,1986,12.677 +327,1987,12.688 +327,1988,12.559 +327,1989,12.789 +327,1990,13.241 +327,1991,12.877 +327,1992,12.531 +327,1993,12.46 +327,1994,12.871 +327,1995,12.99 +327,1996,13.165 +327,1997,13.137 +327,1998,12.818 +327,1999,12.832 +327,2000,12.721 +327,2001,13.365 +327,2002,13.275 +327,2003,12.891 +327,2004,13.383 +327,2005,13.338 +327,2006,13.243 +327,2007,13.077 +327,2008,13.065 +327,2009,13.322 +327,2010,13.145 +327,2011,12.944 +327,2012,13.488 +327,2013,13.284 +327,2014,13.282 +327,2015,13.472 +327,2016,13.345 +327,2017,13.32 +327,2018,13.369 +327,2019,13.611 +327,2020,13.7 +327,2021,13.409 +327,2022,13.269 +327,2023,13.914 +327,2024,NA +328,1940,12.578 +328,1941,12.019 +328,1942,12.46 +328,1943,12.559 +328,1944,12.428 +328,1945,12.177 +328,1946,12.378 +328,1947,12.377 +328,1948,12.449 +328,1949,12.371 +328,1950,12.227 +328,1951,12.469 +328,1952,12.35 +328,1953,12.56 +328,1954,12.427 +328,1955,12.227 +328,1956,12.361 +328,1957,12.536 +328,1958,12.53 +328,1959,12.446 +328,1960,12.231 +328,1961,12.556 +328,1962,12.401 +328,1963,12.555 +328,1964,12.079 +328,1965,12.529 +328,1966,12.636 +328,1967,12.561 +328,1968,12.506 +328,1969,12.738 +328,1970,12.235 +328,1971,12.525 +328,1972,12.461 +328,1973,12.479 +328,1974,12.433 +328,1975,12.232 +328,1976,12.444 +328,1977,12.696 +328,1978,12.684 +328,1979,12.966 +328,1980,12.724 +328,1981,12.598 +328,1982,12.677 +328,1983,12.856 +328,1984,12.683 +328,1985,12.454 +328,1986,12.627 +328,1987,12.7 +328,1988,12.592 +328,1989,12.769 +328,1990,13.219 +328,1991,12.805 +328,1992,12.549 +328,1993,12.514 +328,1994,12.862 +328,1995,13.009 +328,1996,13.048 +328,1997,13.086 +328,1998,12.828 +328,1999,12.767 +328,2000,12.834 +328,2001,13.359 +328,2002,13.209 +328,2003,12.913 +328,2004,13.267 +328,2005,13.246 +328,2006,13.195 +328,2007,12.979 +328,2008,13.122 +328,2009,13.287 +328,2010,13.047 +328,2011,12.912 +328,2012,13.377 +328,2013,13.24 +328,2014,13.202 +328,2015,13.477 +328,2016,13.336 +328,2017,13.279 +328,2018,13.415 +328,2019,13.661 +328,2020,13.652 +328,2021,13.439 +328,2022,13.316 +328,2023,13.812 +328,2024,NA +329,1940,12.569 +329,1941,12.018 +329,1942,12.418 +329,1943,12.526 +329,1944,12.39 +329,1945,12.182 +329,1946,12.403 +329,1947,12.393 +329,1948,12.411 +329,1949,12.395 +329,1950,12.206 +329,1951,12.491 +329,1952,12.307 +329,1953,12.582 +329,1954,12.36 +329,1955,12.145 +329,1956,12.351 +329,1957,12.548 +329,1958,12.504 +329,1959,12.421 +329,1960,12.257 +329,1961,12.464 +329,1962,12.437 +329,1963,12.519 +329,1964,12.162 +329,1965,12.44 +329,1966,12.664 +329,1967,12.548 +329,1968,12.457 +329,1969,12.767 +329,1970,12.17 +329,1971,12.49 +329,1972,12.469 +329,1973,12.433 +329,1974,12.397 +329,1975,12.267 +329,1976,12.492 +329,1977,12.669 +329,1978,12.716 +329,1979,13.031 +329,1980,12.702 +329,1981,12.601 +329,1982,12.607 +329,1983,12.758 +329,1984,12.676 +329,1985,12.411 +329,1986,12.606 +329,1987,12.748 +329,1988,12.595 +329,1989,12.803 +329,1990,13.18 +329,1991,12.738 +329,1992,12.527 +329,1993,12.547 +329,1994,12.855 +329,1995,12.938 +329,1996,12.953 +329,1997,13.071 +329,1998,12.831 +329,1999,12.674 +329,2000,12.901 +329,2001,13.188 +329,2002,13.109 +329,2003,12.932 +329,2004,13.114 +329,2005,13.215 +329,2006,13.172 +329,2007,12.976 +329,2008,13.195 +329,2009,13.292 +329,2010,13.035 +329,2011,12.913 +329,2012,13.286 +329,2013,13.194 +329,2014,13.107 +329,2015,13.513 +329,2016,13.369 +329,2017,13.297 +329,2018,13.425 +329,2019,13.604 +329,2020,13.655 +329,2021,13.438 +329,2022,13.339 +329,2023,13.777 +329,2024,NA +330,1940,12.483 +330,1941,12.023 +330,1942,12.385 +330,1943,12.497 +330,1944,12.277 +330,1945,12.227 +330,1946,12.405 +330,1947,12.386 +330,1948,12.338 +330,1949,12.391 +330,1950,12.208 +330,1951,12.443 +330,1952,12.234 +330,1953,12.551 +330,1954,12.318 +330,1955,12.094 +330,1956,12.317 +330,1957,12.582 +330,1958,12.417 +330,1959,12.365 +330,1960,12.27 +330,1961,12.425 +330,1962,12.52 +330,1963,12.539 +330,1964,12.249 +330,1965,12.39 +330,1966,12.639 +330,1967,12.476 +330,1968,12.442 +330,1969,12.756 +330,1970,12.17 +330,1971,12.481 +330,1972,12.502 +330,1973,12.362 +330,1974,12.33 +330,1975,12.305 +330,1976,12.435 +330,1977,12.646 +330,1978,12.663 +330,1979,13.068 +330,1980,12.653 +330,1981,12.59 +330,1982,12.5 +330,1983,12.709 +330,1984,12.68 +330,1985,12.386 +330,1986,12.54 +330,1987,12.732 +330,1988,12.595 +330,1989,12.861 +330,1990,13.103 +330,1991,12.798 +330,1992,12.443 +330,1993,12.576 +330,1994,12.854 +330,1995,12.943 +330,1996,12.879 +330,1997,13.056 +330,1998,12.79 +330,1999,12.641 +330,2000,12.871 +330,2001,13.069 +330,2002,13.001 +330,2003,12.912 +330,2004,13.031 +330,2005,13.249 +330,2006,13.165 +330,2007,12.986 +330,2008,13.221 +330,2009,13.314 +330,2010,12.966 +330,2011,12.968 +330,2012,13.163 +330,2013,13.139 +330,2014,13.04 +330,2015,13.545 +330,2016,13.417 +330,2017,13.352 +330,2018,13.391 +330,2019,13.525 +330,2020,13.67 +330,2021,13.376 +330,2022,13.344 +330,2023,13.766 +330,2024,NA +331,1940,12.433 +331,1941,12.036 +331,1942,12.353 +331,1943,12.462 +331,1944,12.243 +331,1945,12.228 +331,1946,12.381 +331,1947,12.358 +331,1948,12.264 +331,1949,12.341 +331,1950,12.212 +331,1951,12.446 +331,1952,12.162 +331,1953,12.471 +331,1954,12.353 +331,1955,12.056 +331,1956,12.281 +331,1957,12.532 +331,1958,12.35 +331,1959,12.274 +331,1960,12.281 +331,1961,12.461 +331,1962,12.602 +331,1963,12.593 +331,1964,12.21 +331,1965,12.38 +331,1966,12.537 +331,1967,12.406 +331,1968,12.319 +331,1969,12.756 +331,1970,12.176 +331,1971,12.494 +331,1972,12.543 +331,1973,12.383 +331,1974,12.191 +331,1975,12.324 +331,1976,12.308 +331,1977,12.619 +331,1978,12.545 +331,1979,13.022 +331,1980,12.572 +331,1981,12.55 +331,1982,12.504 +331,1983,12.648 +331,1984,12.613 +331,1985,12.423 +331,1986,12.471 +331,1987,12.649 +331,1988,12.6 +331,1989,12.831 +331,1990,13.011 +331,1991,12.897 +331,1992,12.396 +331,1993,12.618 +331,1994,12.853 +331,1995,12.942 +331,1996,12.814 +331,1997,12.992 +331,1998,12.769 +331,1999,12.586 +331,2000,12.882 +331,2001,13.007 +331,2002,12.876 +331,2003,12.955 +331,2004,13.057 +331,2005,13.242 +331,2006,13.098 +331,2007,12.984 +331,2008,13.209 +331,2009,13.257 +331,2010,12.933 +331,2011,12.967 +331,2012,13.073 +331,2013,13.181 +331,2014,12.997 +331,2015,13.502 +331,2016,13.431 +331,2017,13.337 +331,2018,13.314 +331,2019,13.538 +331,2020,13.671 +331,2021,13.385 +331,2022,13.297 +331,2023,13.837 +331,2024,NA +332,1940,12.425 +332,1941,12.058 +332,1942,12.335 +332,1943,12.421 +332,1944,12.19 +332,1945,12.189 +332,1946,12.371 +332,1947,12.336 +332,1948,12.2 +332,1949,12.344 +332,1950,12.221 +332,1951,12.426 +332,1952,12.132 +332,1953,12.367 +332,1954,12.326 +332,1955,12.041 +332,1956,12.285 +332,1957,12.512 +332,1958,12.32 +332,1959,12.229 +332,1960,12.279 +332,1961,12.503 +332,1962,12.616 +332,1963,12.551 +332,1964,12.109 +332,1965,12.358 +332,1966,12.43 +332,1967,12.294 +332,1968,12.224 +332,1969,12.743 +332,1970,12.177 +332,1971,12.505 +332,1972,12.512 +332,1973,12.404 +332,1974,12.117 +332,1975,12.324 +332,1976,12.238 +332,1977,12.528 +332,1978,12.422 +332,1979,12.978 +332,1980,12.535 +332,1981,12.568 +332,1982,12.517 +332,1983,12.627 +332,1984,12.496 +332,1985,12.381 +332,1986,12.454 +332,1987,12.601 +332,1988,12.581 +332,1989,12.769 +332,1990,12.95 +332,1991,12.875 +332,1992,12.392 +332,1993,12.634 +332,1994,12.739 +332,1995,12.816 +332,1996,12.753 +332,1997,12.896 +332,1998,12.724 +332,1999,12.534 +332,2000,12.868 +332,2001,13.002 +332,2002,12.853 +332,2003,12.979 +332,2004,13.065 +332,2005,13.27 +332,2006,13.032 +332,2007,12.93 +332,2008,13.213 +332,2009,13.226 +332,2010,12.909 +332,2011,12.976 +332,2012,13.033 +332,2013,13.212 +332,2014,12.901 +332,2015,13.495 +332,2016,13.479 +332,2017,13.351 +332,2018,13.241 +332,2019,13.496 +332,2020,13.639 +332,2021,13.405 +332,2022,13.234 +332,2023,13.925 +332,2024,NA +333,1940,12.393 +333,1941,12.021 +333,1942,12.318 +333,1943,12.423 +333,1944,12.129 +333,1945,12.146 +333,1946,12.257 +333,1947,12.361 +333,1948,12.123 +333,1949,12.383 +333,1950,12.226 +333,1951,12.475 +333,1952,12.107 +333,1953,12.308 +333,1954,12.297 +333,1955,12.044 +333,1956,12.334 +333,1957,12.51 +333,1958,12.244 +333,1959,12.313 +333,1960,12.248 +333,1961,12.473 +333,1962,12.606 +333,1963,12.482 +333,1964,12.024 +333,1965,12.363 +333,1966,12.381 +333,1967,12.214 +333,1968,12.157 +333,1969,12.668 +333,1970,12.223 +333,1971,12.429 +333,1972,12.453 +333,1973,12.354 +333,1974,12.086 +333,1975,12.241 +333,1976,12.169 +333,1977,12.45 +333,1978,12.419 +333,1979,12.917 +333,1980,12.545 +333,1981,12.575 +333,1982,12.546 +333,1983,12.624 +333,1984,12.497 +333,1985,12.315 +333,1986,12.405 +333,1987,12.606 +333,1988,12.561 +333,1989,12.662 +333,1990,12.956 +333,1991,12.866 +333,1992,12.428 +333,1993,12.609 +333,1994,12.71 +333,1995,12.705 +333,1996,12.742 +333,1997,12.893 +333,1998,12.676 +333,1999,12.492 +333,2000,12.83 +333,2001,13 +333,2002,12.819 +333,2003,12.874 +333,2004,13.006 +333,2005,13.23 +333,2006,12.986 +333,2007,12.885 +333,2008,13.173 +333,2009,13.208 +333,2010,12.878 +333,2011,12.967 +333,2012,13.051 +333,2013,13.237 +333,2014,12.828 +333,2015,13.476 +333,2016,13.468 +333,2017,13.356 +333,2018,13.235 +333,2019,13.431 +333,2020,13.506 +333,2021,13.344 +333,2022,13.162 +333,2023,13.928 +333,2024,NA +334,1940,12.364 +334,1941,12.084 +334,1942,12.326 +334,1943,12.391 +334,1944,12.136 +334,1945,12.168 +334,1946,12.203 +334,1947,12.365 +334,1948,12.028 +334,1949,12.405 +334,1950,12.229 +334,1951,12.588 +334,1952,12.069 +334,1953,12.317 +334,1954,12.182 +334,1955,12.028 +334,1956,12.326 +334,1957,12.495 +334,1958,12.168 +334,1959,12.334 +334,1960,12.206 +334,1961,12.383 +334,1962,12.61 +334,1963,12.445 +334,1964,11.946 +334,1965,12.307 +334,1966,12.289 +334,1967,12.151 +334,1968,12.211 +334,1969,12.692 +334,1970,12.272 +334,1971,12.412 +334,1972,12.443 +334,1973,12.354 +334,1974,12.046 +334,1975,12.147 +334,1976,12.12 +334,1977,12.485 +334,1978,12.426 +334,1979,12.843 +334,1980,12.516 +334,1981,12.487 +334,1982,12.615 +334,1983,12.57 +334,1984,12.464 +334,1985,12.248 +334,1986,12.424 +334,1987,12.617 +334,1988,12.493 +334,1989,12.657 +334,1990,12.899 +334,1991,12.809 +334,1992,12.467 +334,1993,12.586 +334,1994,12.717 +334,1995,12.72 +334,1996,12.745 +334,1997,12.886 +334,1998,12.65 +334,1999,12.456 +334,2000,12.748 +334,2001,13.063 +334,2002,12.805 +334,2003,12.806 +334,2004,12.974 +334,2005,13.176 +334,2006,12.922 +334,2007,12.87 +334,2008,13.125 +334,2009,13.193 +334,2010,12.809 +334,2011,12.892 +334,2012,13.05 +334,2013,13.26 +334,2014,12.813 +334,2015,13.507 +334,2016,13.445 +334,2017,13.392 +334,2018,13.285 +334,2019,13.474 +334,2020,13.396 +334,2021,13.319 +334,2022,13.029 +334,2023,13.883 +334,2024,NA +335,1940,12.294 +335,1941,12.161 +335,1942,12.39 +335,1943,12.369 +335,1944,12.089 +335,1945,12.115 +335,1946,12.177 +335,1947,12.312 +335,1948,12.073 +335,1949,12.362 +335,1950,12.212 +335,1951,12.626 +335,1952,12.048 +335,1953,12.339 +335,1954,12.089 +335,1955,12.032 +335,1956,12.3 +335,1957,12.43 +335,1958,12.203 +335,1959,12.292 +335,1960,12.164 +335,1961,12.386 +335,1962,12.587 +335,1963,12.368 +335,1964,11.866 +335,1965,12.229 +335,1966,12.225 +335,1967,12.074 +335,1968,12.177 +335,1969,12.712 +335,1970,12.252 +335,1971,12.444 +335,1972,12.446 +335,1973,12.403 +335,1974,12.031 +335,1975,12.024 +335,1976,12.119 +335,1977,12.525 +335,1978,12.38 +335,1979,12.793 +335,1980,12.459 +335,1981,12.411 +335,1982,12.589 +335,1983,12.525 +335,1984,12.426 +335,1985,12.246 +335,1986,12.455 +335,1987,12.612 +335,1988,12.424 +335,1989,12.667 +335,1990,12.837 +335,1991,12.672 +335,1992,12.47 +335,1993,12.57 +335,1994,12.637 +335,1995,12.758 +335,1996,12.74 +335,1997,12.878 +335,1998,12.617 +335,1999,12.488 +335,2000,12.678 +335,2001,13.049 +335,2002,12.785 +335,2003,12.831 +335,2004,12.918 +335,2005,13.072 +335,2006,12.903 +335,2007,12.899 +335,2008,13.146 +335,2009,13.196 +335,2010,12.707 +335,2011,12.791 +335,2012,12.98 +335,2013,13.315 +335,2014,12.796 +335,2015,13.54 +335,2016,13.446 +335,2017,13.419 +335,2018,13.262 +335,2019,13.46 +335,2020,13.332 +335,2021,13.281 +335,2022,12.886 +335,2023,13.826 +335,2024,NA +336,1940,12.239 +336,1941,12.188 +336,1942,12.389 +336,1943,12.285 +336,1944,12.011 +336,1945,12.063 +336,1946,12.174 +336,1947,12.266 +336,1948,12.141 +336,1949,12.293 +336,1950,12.215 +336,1951,12.693 +336,1952,12.041 +336,1953,12.347 +336,1954,12.002 +336,1955,12.037 +336,1956,12.273 +336,1957,12.416 +336,1958,12.263 +336,1959,12.313 +336,1960,12.164 +336,1961,12.376 +336,1962,12.555 +336,1963,12.4 +336,1964,11.874 +336,1965,12.172 +336,1966,12.195 +336,1967,12.008 +336,1968,12.133 +336,1969,12.715 +336,1970,12.212 +336,1971,12.418 +336,1972,12.424 +336,1973,12.339 +336,1974,12.035 +336,1975,12.001 +336,1976,12.241 +336,1977,12.487 +336,1978,12.356 +336,1979,12.759 +336,1980,12.337 +336,1981,12.363 +336,1982,12.485 +336,1983,12.454 +336,1984,12.406 +336,1985,12.201 +336,1986,12.523 +336,1987,12.654 +336,1988,12.439 +336,1989,12.665 +336,1990,12.724 +336,1991,12.545 +336,1992,12.414 +336,1993,12.551 +336,1994,12.615 +336,1995,12.739 +336,1996,12.719 +336,1997,12.904 +336,1998,12.606 +336,1999,12.572 +336,2000,12.606 +336,2001,12.975 +336,2002,12.676 +336,2003,12.875 +336,2004,12.81 +336,2005,12.929 +336,2006,12.911 +336,2007,12.907 +336,2008,13.09 +336,2009,13.145 +336,2010,12.625 +336,2011,12.744 +336,2012,12.993 +336,2013,13.324 +336,2014,12.701 +336,2015,13.491 +336,2016,13.397 +336,2017,13.429 +336,2018,13.225 +336,2019,13.342 +336,2020,13.289 +336,2021,13.315 +336,2022,12.899 +336,2023,13.88 +336,2024,NA +337,1940,12.175 +337,1941,12.173 +337,1942,12.323 +337,1943,12.226 +337,1944,11.948 +337,1945,11.985 +337,1946,12.107 +337,1947,12.198 +337,1948,12.166 +337,1949,12.257 +337,1950,12.225 +337,1951,12.722 +337,1952,12.049 +337,1953,12.292 +337,1954,11.932 +337,1955,12.078 +337,1956,12.239 +337,1957,12.393 +337,1958,12.255 +337,1959,12.339 +337,1960,12.188 +337,1961,12.385 +337,1962,12.479 +337,1963,12.424 +337,1964,11.94 +337,1965,12.197 +337,1966,12.244 +337,1967,11.987 +337,1968,12.115 +337,1969,12.659 +337,1970,12.231 +337,1971,12.349 +337,1972,12.43 +337,1973,12.22 +337,1974,12.015 +337,1975,11.982 +337,1976,12.371 +337,1977,12.501 +337,1978,12.341 +337,1979,12.755 +337,1980,12.29 +337,1981,12.416 +337,1982,12.441 +337,1983,12.472 +337,1984,12.349 +337,1985,12.157 +337,1986,12.557 +337,1987,12.684 +337,1988,12.471 +337,1989,12.634 +337,1990,12.707 +337,1991,12.432 +337,1992,12.425 +337,1993,12.577 +337,1994,12.616 +337,1995,12.728 +337,1996,12.683 +337,1997,12.87 +337,1998,12.669 +337,1999,12.649 +337,2000,12.532 +337,2001,12.939 +337,2002,12.601 +337,2003,12.864 +337,2004,12.808 +337,2005,12.884 +337,2006,12.862 +337,2007,12.87 +337,2008,13.033 +337,2009,13.079 +337,2010,12.58 +337,2011,12.742 +337,2012,13.036 +337,2013,13.351 +337,2014,12.71 +337,2015,13.471 +337,2016,13.353 +337,2017,13.396 +337,2018,13.17 +337,2019,13.265 +337,2020,13.313 +337,2021,13.379 +337,2022,13 +337,2023,13.903 +337,2024,NA +338,1940,12.213 +338,1941,12.196 +338,1942,12.27 +338,1943,12.207 +338,1944,11.932 +338,1945,11.924 +338,1946,12.082 +338,1947,12.136 +338,1948,12.169 +338,1949,12.217 +338,1950,12.259 +338,1951,12.656 +338,1952,12.065 +338,1953,12.281 +338,1954,11.917 +338,1955,12.09 +338,1956,12.22 +338,1957,12.349 +338,1958,12.296 +338,1959,12.356 +338,1960,12.27 +338,1961,12.429 +338,1962,12.407 +338,1963,12.415 +338,1964,11.962 +338,1965,12.256 +338,1966,12.253 +338,1967,11.986 +338,1968,12.075 +338,1969,12.596 +338,1970,12.244 +338,1971,12.295 +338,1972,12.429 +338,1973,12.152 +338,1974,11.988 +338,1975,11.954 +338,1976,12.366 +338,1977,12.52 +338,1978,12.344 +338,1979,12.795 +338,1980,12.285 +338,1981,12.499 +338,1982,12.448 +338,1983,12.485 +338,1984,12.312 +338,1985,12.152 +338,1986,12.547 +338,1987,12.704 +338,1988,12.5 +338,1989,12.701 +338,1990,12.658 +338,1991,12.395 +338,1992,12.418 +338,1993,12.602 +338,1994,12.61 +338,1995,12.65 +338,1996,12.663 +338,1997,12.793 +338,1998,12.806 +338,1999,12.708 +338,2000,12.44 +338,2001,12.87 +338,2002,12.626 +338,2003,12.847 +338,2004,12.801 +338,2005,12.91 +338,2006,12.854 +338,2007,12.818 +338,2008,12.9 +338,2009,13.053 +338,2010,12.624 +338,2011,12.699 +338,2012,13.047 +338,2013,13.346 +338,2014,12.783 +338,2015,13.487 +338,2016,13.389 +338,2017,13.418 +338,2018,13.141 +338,2019,13.237 +338,2020,13.343 +338,2021,13.358 +338,2022,13.069 +338,2023,13.888 +338,2024,NA +339,1940,12.201 +339,1941,12.218 +339,1942,12.158 +339,1943,12.176 +339,1944,11.993 +339,1945,11.908 +339,1946,12.083 +339,1947,12.077 +339,1948,12.174 +339,1949,12.181 +339,1950,12.25 +339,1951,12.637 +339,1952,12.063 +339,1953,12.283 +339,1954,11.955 +339,1955,11.971 +339,1956,12.153 +339,1957,12.32 +339,1958,12.324 +339,1959,12.245 +339,1960,12.311 +339,1961,12.441 +339,1962,12.296 +339,1963,12.381 +339,1964,11.94 +339,1965,12.29 +339,1966,12.219 +339,1967,11.944 +339,1968,12.041 +339,1969,12.542 +339,1970,12.177 +339,1971,12.207 +339,1972,12.405 +339,1973,12.14 +339,1974,11.985 +339,1975,11.894 +339,1976,12.268 +339,1977,12.494 +339,1978,12.388 +339,1979,12.841 +339,1980,12.356 +339,1981,12.577 +339,1982,12.433 +339,1983,12.46 +339,1984,12.301 +339,1985,12.189 +339,1986,12.527 +339,1987,12.766 +339,1988,12.558 +339,1989,12.789 +339,1990,12.702 +339,1991,12.384 +339,1992,12.396 +339,1993,12.544 +339,1994,12.569 +339,1995,12.531 +339,1996,12.651 +339,1997,12.87 +339,1998,12.892 +339,1999,12.734 +339,2000,12.352 +339,2001,12.775 +339,2002,12.585 +339,2003,12.835 +339,2004,12.715 +339,2005,12.846 +339,2006,12.925 +339,2007,12.825 +339,2008,12.771 +339,2009,13.035 +339,2010,12.704 +339,2011,12.664 +339,2012,12.962 +339,2013,13.195 +339,2014,12.877 +339,2015,13.483 +339,2016,13.358 +339,2017,13.381 +339,2018,13.06 +339,2019,13.267 +339,2020,13.348 +339,2021,13.207 +339,2022,13.142 +339,2023,13.866 +339,2024,NA +340,1940,12.224 +340,1941,12.114 +340,1942,12.024 +340,1943,12.128 +340,1944,12.034 +340,1945,11.918 +340,1946,12.095 +340,1947,12.092 +340,1948,12.152 +340,1949,12.227 +340,1950,12.152 +340,1951,12.643 +340,1952,12.145 +340,1953,12.307 +340,1954,11.957 +340,1955,11.849 +340,1956,12.112 +340,1957,12.269 +340,1958,12.353 +340,1959,12.112 +340,1960,12.3 +340,1961,12.4 +340,1962,12.217 +340,1963,12.329 +340,1964,11.889 +340,1965,12.296 +340,1966,12.222 +340,1967,12.03 +340,1968,12.032 +340,1969,12.486 +340,1970,12.076 +340,1971,12.154 +340,1972,12.348 +340,1973,12.147 +340,1974,11.968 +340,1975,11.833 +340,1976,12.172 +340,1977,12.394 +340,1978,12.383 +340,1979,12.897 +340,1980,12.403 +340,1981,12.628 +340,1982,12.335 +340,1983,12.477 +340,1984,12.259 +340,1985,12.215 +340,1986,12.54 +340,1987,12.75 +340,1988,12.554 +340,1989,12.8 +340,1990,12.759 +340,1991,12.428 +340,1992,12.385 +340,1993,12.45 +340,1994,12.519 +340,1995,12.383 +340,1996,12.653 +340,1997,12.93 +340,1998,12.842 +340,1999,12.689 +340,2000,12.353 +340,2001,12.748 +340,2002,12.572 +340,2003,12.904 +340,2004,12.699 +340,2005,12.78 +340,2006,12.991 +340,2007,12.846 +340,2008,12.732 +340,2009,13.018 +340,2010,12.678 +340,2011,12.67 +340,2012,12.898 +340,2013,13.051 +340,2014,12.869 +340,2015,13.425 +340,2016,13.263 +340,2017,13.28 +340,2018,12.984 +340,2019,13.291 +340,2020,13.307 +340,2021,13.172 +340,2022,13.177 +340,2023,13.836 +340,2024,NA +341,1940,12.25 +341,1941,12.058 +341,1942,11.902 +341,1943,12.138 +341,1944,12.054 +341,1945,11.939 +341,1946,12.097 +341,1947,12.097 +341,1948,12.127 +341,1949,12.232 +341,1950,12.113 +341,1951,12.624 +341,1952,12.222 +341,1953,12.321 +341,1954,11.958 +341,1955,11.768 +341,1956,12.088 +341,1957,12.262 +341,1958,12.307 +341,1959,12.068 +341,1960,12.347 +341,1961,12.336 +341,1962,12.138 +341,1963,12.3 +341,1964,11.829 +341,1965,12.246 +341,1966,12.258 +341,1967,12.168 +341,1968,12.025 +341,1969,12.422 +341,1970,12.027 +341,1971,12.132 +341,1972,12.342 +341,1973,12.143 +341,1974,11.977 +341,1975,11.806 +341,1976,12.142 +341,1977,12.259 +341,1978,12.367 +341,1979,12.93 +341,1980,12.406 +341,1981,12.64 +341,1982,12.29 +341,1983,12.48 +341,1984,12.246 +341,1985,12.175 +341,1986,12.493 +341,1987,12.732 +341,1988,12.501 +341,1989,12.76 +341,1990,12.774 +341,1991,12.397 +341,1992,12.387 +341,1993,12.408 +341,1994,12.471 +341,1995,12.365 +341,1996,12.607 +341,1997,12.893 +341,1998,12.787 +341,1999,12.643 +341,2000,12.387 +341,2001,12.732 +341,2002,12.563 +341,2003,12.945 +341,2004,12.693 +341,2005,12.647 +341,2006,13.001 +341,2007,12.903 +341,2008,12.767 +341,2009,13.007 +341,2010,12.606 +341,2011,12.681 +341,2012,12.924 +341,2013,12.944 +341,2014,12.865 +341,2015,13.415 +341,2016,13.11 +341,2017,13.236 +341,2018,12.955 +341,2019,13.322 +341,2020,13.285 +341,2021,13.184 +341,2022,13.26 +341,2023,13.779 +341,2024,NA +342,1940,12.258 +342,1941,11.991 +342,1942,11.847 +342,1943,12.205 +342,1944,12.044 +342,1945,11.93 +342,1946,12.087 +342,1947,12.074 +342,1948,12.091 +342,1949,12.22 +342,1950,12.134 +342,1951,12.54 +342,1952,12.209 +342,1953,12.272 +342,1954,11.914 +342,1955,11.799 +342,1956,12.072 +342,1957,12.194 +342,1958,12.329 +342,1959,12.033 +342,1960,12.433 +342,1961,12.24 +342,1962,12.068 +342,1963,12.318 +342,1964,11.776 +342,1965,12.19 +342,1966,12.266 +342,1967,12.232 +342,1968,11.957 +342,1969,12.342 +342,1970,12.02 +342,1971,12.134 +342,1972,12.219 +342,1973,12.135 +342,1974,11.929 +342,1975,11.75 +342,1976,12.135 +342,1977,12.215 +342,1978,12.357 +342,1979,12.872 +342,1980,12.392 +342,1981,12.599 +342,1982,12.308 +342,1983,12.461 +342,1984,12.277 +342,1985,12.172 +342,1986,12.461 +342,1987,12.781 +342,1988,12.436 +342,1989,12.691 +342,1990,12.789 +342,1991,12.379 +342,1992,12.418 +342,1993,12.414 +342,1994,12.433 +342,1995,12.377 +342,1996,12.554 +342,1997,12.797 +342,1998,12.758 +342,1999,12.608 +342,2000,12.391 +342,2001,12.664 +342,2002,12.551 +342,2003,12.955 +342,2004,12.656 +342,2005,12.612 +342,2006,13.03 +342,2007,12.897 +342,2008,12.807 +342,2009,12.911 +342,2010,12.583 +342,2011,12.699 +342,2012,12.917 +342,2013,12.855 +342,2014,12.87 +342,2015,13.478 +342,2016,13.023 +342,2017,13.179 +342,2018,12.928 +342,2019,13.365 +342,2020,13.249 +342,2021,13.142 +342,2022,13.221 +342,2023,13.683 +342,2024,NA +343,1940,12.229 +343,1941,11.969 +343,1942,11.853 +343,1943,12.217 +343,1944,12.022 +343,1945,11.88 +343,1946,12.104 +343,1947,11.991 +343,1948,12.055 +343,1949,12.251 +343,1950,12.175 +343,1951,12.449 +343,1952,12.215 +343,1953,12.319 +343,1954,11.89 +343,1955,11.864 +343,1956,12.015 +343,1957,12.17 +343,1958,12.305 +343,1959,12.074 +343,1960,12.48 +343,1961,12.194 +343,1962,12.055 +343,1963,12.228 +343,1964,11.777 +343,1965,12.159 +343,1966,12.223 +343,1967,12.254 +343,1968,11.955 +343,1969,12.364 +343,1970,12.005 +343,1971,12.155 +343,1972,12.168 +343,1973,12.125 +343,1974,11.959 +343,1975,11.746 +343,1976,12.03 +343,1977,12.167 +343,1978,12.282 +343,1979,12.783 +343,1980,12.326 +343,1981,12.634 +343,1982,12.327 +343,1983,12.418 +343,1984,12.275 +343,1985,12.218 +343,1986,12.398 +343,1987,12.815 +343,1988,12.322 +343,1989,12.559 +343,1990,12.789 +343,1991,12.415 +343,1992,12.4 +343,1993,12.479 +343,1994,12.388 +343,1995,12.358 +343,1996,12.533 +343,1997,12.785 +343,1998,12.706 +343,1999,12.581 +343,2000,12.383 +343,2001,12.52 +343,2002,12.56 +343,2003,12.992 +343,2004,12.652 +343,2005,12.633 +343,2006,13.007 +343,2007,12.868 +343,2008,12.789 +343,2009,12.864 +343,2010,12.575 +343,2011,12.686 +343,2012,12.868 +343,2013,12.832 +343,2014,12.837 +343,2015,13.527 +343,2016,12.975 +343,2017,13.088 +343,2018,12.934 +343,2019,13.366 +343,2020,13.224 +343,2021,13.13 +343,2022,13.172 +343,2023,13.568 +343,2024,NA +344,1940,12.195 +344,1941,11.992 +344,1942,11.798 +344,1943,12.224 +344,1944,11.938 +344,1945,11.828 +344,1946,12.055 +344,1947,11.857 +344,1948,11.991 +344,1949,12.288 +344,1950,12.273 +344,1951,12.35 +344,1952,12.192 +344,1953,12.376 +344,1954,11.885 +344,1955,11.914 +344,1956,11.914 +344,1957,12.195 +344,1958,12.235 +344,1959,12.105 +344,1960,12.486 +344,1961,12.134 +344,1962,12.033 +344,1963,12.12 +344,1964,11.794 +344,1965,12.144 +344,1966,12.13 +344,1967,12.308 +344,1968,11.903 +344,1969,12.434 +344,1970,12.054 +344,1971,12.198 +344,1972,12.2 +344,1973,12.036 +344,1974,11.937 +344,1975,11.775 +344,1976,11.943 +344,1977,12.039 +344,1978,12.232 +344,1979,12.736 +344,1980,12.257 +344,1981,12.631 +344,1982,12.362 +344,1983,12.404 +344,1984,12.269 +344,1985,12.197 +344,1986,12.325 +344,1987,12.905 +344,1988,12.263 +344,1989,12.473 +344,1990,12.721 +344,1991,12.424 +344,1992,12.332 +344,1993,12.511 +344,1994,12.347 +344,1995,12.255 +344,1996,12.536 +344,1997,12.742 +344,1998,12.673 +344,1999,12.543 +344,2000,12.417 +344,2001,12.454 +344,2002,12.548 +344,2003,13.015 +344,2004,12.622 +344,2005,12.716 +344,2006,12.976 +344,2007,12.797 +344,2008,12.742 +344,2009,12.846 +344,2010,12.586 +344,2011,12.672 +344,2012,12.848 +344,2013,12.811 +344,2014,12.834 +344,2015,13.534 +344,2016,12.895 +344,2017,13.044 +344,2018,12.962 +344,2019,13.387 +344,2020,13.209 +344,2021,13.199 +344,2022,13.177 +344,2023,13.467 +344,2024,NA +345,1940,12.154 +345,1941,12.058 +345,1942,11.83 +345,1943,12.179 +345,1944,11.926 +345,1945,11.86 +345,1946,11.962 +345,1947,11.778 +345,1948,11.929 +345,1949,12.286 +345,1950,12.325 +345,1951,12.318 +345,1952,12.137 +345,1953,12.332 +345,1954,11.851 +345,1955,11.884 +345,1956,11.822 +345,1957,12.148 +345,1958,12.141 +345,1959,12.103 +345,1960,12.443 +345,1961,12.038 +345,1962,11.945 +345,1963,12.035 +345,1964,11.779 +345,1965,12.164 +345,1966,12.116 +345,1967,12.31 +345,1968,11.853 +345,1969,12.496 +345,1970,12.118 +345,1971,12.21 +345,1972,12.262 +345,1973,11.996 +345,1974,11.902 +345,1975,11.764 +345,1976,11.956 +345,1977,11.95 +345,1978,12.145 +345,1979,12.699 +345,1980,12.152 +345,1981,12.658 +345,1982,12.362 +345,1983,12.407 +345,1984,12.206 +345,1985,12.126 +345,1986,12.276 +345,1987,12.916 +345,1988,12.262 +345,1989,12.43 +345,1990,12.562 +345,1991,12.452 +345,1992,12.247 +345,1993,12.445 +345,1994,12.3 +345,1995,12.134 +345,1996,12.55 +345,1997,12.756 +345,1998,12.712 +345,1999,12.517 +345,2000,12.419 +345,2001,12.482 +345,2002,12.574 +345,2003,12.949 +345,2004,12.634 +345,2005,12.806 +345,2006,12.963 +345,2007,12.767 +345,2008,12.65 +345,2009,12.761 +345,2010,12.584 +345,2011,12.653 +345,2012,12.777 +345,2013,12.762 +345,2014,12.836 +345,2015,13.518 +345,2016,12.885 +345,2017,13.012 +345,2018,13.049 +345,2019,13.368 +345,2020,13.139 +345,2021,13.241 +345,2022,13.1 +345,2023,13.35 +345,2024,NA +346,1940,12.086 +346,1941,12.11 +346,1942,11.874 +346,1943,12.097 +346,1944,11.942 +346,1945,11.839 +346,1946,11.935 +346,1947,11.666 +346,1948,11.958 +346,1949,12.239 +346,1950,12.341 +346,1951,12.324 +346,1952,12.054 +346,1953,12.211 +346,1954,11.814 +346,1955,11.917 +346,1956,11.867 +346,1957,12.206 +346,1958,12.144 +346,1959,12.088 +346,1960,12.395 +346,1961,11.953 +346,1962,11.874 +346,1963,12.004 +346,1964,11.774 +346,1965,12.194 +346,1966,12.083 +346,1967,12.362 +346,1968,11.859 +346,1969,12.531 +346,1970,12.114 +346,1971,12.128 +346,1972,12.221 +346,1973,11.978 +346,1974,11.902 +346,1975,11.698 +346,1976,12.047 +346,1977,11.949 +346,1978,12.131 +346,1979,12.657 +346,1980,12.09 +346,1981,12.661 +346,1982,12.378 +346,1983,12.399 +346,1984,12.168 +346,1985,12.065 +346,1986,12.277 +346,1987,12.928 +346,1988,12.303 +346,1989,12.344 +346,1990,12.498 +346,1991,12.484 +346,1992,12.208 +346,1993,12.361 +346,1994,12.276 +346,1995,12.111 +346,1996,12.567 +346,1997,12.703 +346,1998,12.703 +346,1999,12.453 +346,2000,12.391 +346,2001,12.503 +346,2002,12.642 +346,2003,12.931 +346,2004,12.672 +346,2005,12.831 +346,2006,12.957 +346,2007,12.767 +346,2008,12.619 +346,2009,12.661 +346,2010,12.561 +346,2011,12.565 +346,2012,12.67 +346,2013,12.664 +346,2014,12.777 +346,2015,13.458 +346,2016,12.955 +346,2017,12.992 +346,2018,13.131 +346,2019,13.319 +346,2020,13.03 +346,2021,13.174 +346,2022,13.005 +346,2023,13.272 +346,2024,NA +347,1940,12.011 +347,1941,12.155 +347,1942,11.895 +347,1943,12.045 +347,1944,11.937 +347,1945,11.858 +347,1946,11.904 +347,1947,11.594 +347,1948,11.984 +347,1949,12.168 +347,1950,12.298 +347,1951,12.291 +347,1952,11.94 +347,1953,12.219 +347,1954,11.8 +347,1955,11.875 +347,1956,11.866 +347,1957,12.319 +347,1958,12.144 +347,1959,12.063 +347,1960,12.347 +347,1961,11.867 +347,1962,11.887 +347,1963,11.941 +347,1964,11.788 +347,1965,12.155 +347,1966,12.026 +347,1967,12.293 +347,1968,11.938 +347,1969,12.541 +347,1970,12.059 +347,1971,12.079 +347,1972,12.13 +347,1973,11.981 +347,1974,11.918 +347,1975,11.627 +347,1976,12.122 +347,1977,11.986 +347,1978,12.165 +347,1979,12.578 +347,1980,12.021 +347,1981,12.589 +347,1982,12.34 +347,1983,12.372 +347,1984,12.104 +347,1985,12.096 +347,1986,12.247 +347,1987,12.847 +347,1988,12.398 +347,1989,12.313 +347,1990,12.516 +347,1991,12.456 +347,1992,12.259 +347,1993,12.336 +347,1994,12.255 +347,1995,12.13 +347,1996,12.54 +347,1997,12.655 +347,1998,12.702 +347,1999,12.454 +347,2000,12.33 +347,2001,12.443 +347,2002,12.719 +347,2003,12.907 +347,2004,12.732 +347,2005,12.8 +347,2006,12.933 +347,2007,12.787 +347,2008,12.644 +347,2009,12.64 +347,2010,12.48 +347,2011,12.57 +347,2012,12.587 +347,2013,12.648 +347,2014,12.823 +347,2015,13.375 +347,2016,12.992 +347,2017,12.997 +347,2018,13.2 +347,2019,13.271 +347,2020,12.957 +347,2021,13.059 +347,2022,12.934 +347,2023,13.26 +347,2024,NA +348,1940,11.953 +348,1941,12.179 +348,1942,11.91 +348,1943,12.055 +348,1944,11.902 +348,1945,11.857 +348,1946,11.88 +348,1947,11.61 +348,1948,11.934 +348,1949,12.11 +348,1950,12.28 +348,1951,12.212 +348,1952,12.01 +348,1953,12.275 +348,1954,11.8 +348,1955,11.808 +348,1956,11.802 +348,1957,12.336 +348,1958,12.055 +348,1959,12.028 +348,1960,12.287 +348,1961,11.766 +348,1962,11.931 +348,1963,11.949 +348,1964,11.738 +348,1965,12.063 +348,1966,11.988 +348,1967,12.238 +348,1968,11.91 +348,1969,12.454 +348,1970,11.991 +348,1971,12.021 +348,1972,12.106 +348,1973,12.016 +348,1974,11.935 +348,1975,11.615 +348,1976,12.093 +348,1977,12.034 +348,1978,12.122 +348,1979,12.489 +348,1980,12.04 +348,1981,12.541 +348,1982,12.328 +348,1983,12.379 +348,1984,12.017 +348,1985,12.093 +348,1986,12.208 +348,1987,12.696 +348,1988,12.416 +348,1989,12.308 +348,1990,12.532 +348,1991,12.394 +348,1992,12.34 +348,1993,12.26 +348,1994,12.259 +348,1995,12.217 +348,1996,12.52 +348,1997,12.612 +348,1998,12.769 +348,1999,12.465 +348,2000,12.318 +348,2001,12.44 +348,2002,12.827 +348,2003,12.919 +348,2004,12.747 +348,2005,12.784 +348,2006,12.922 +348,2007,12.726 +348,2008,12.617 +348,2009,12.613 +348,2010,12.463 +348,2011,12.587 +348,2012,12.556 +348,2013,12.714 +348,2014,12.9 +348,2015,13.317 +348,2016,12.954 +348,2017,12.992 +348,2018,13.214 +348,2019,13.225 +348,2020,12.842 +348,2021,12.992 +348,2022,12.875 +348,2023,13.299 +348,2024,NA +349,1940,11.882 +349,1941,12.121 +349,1942,11.914 +349,1943,12.012 +349,1944,11.886 +349,1945,11.856 +349,1946,11.841 +349,1947,11.641 +349,1948,11.819 +349,1949,12.003 +349,1950,12.238 +349,1951,12.067 +349,1952,12.011 +349,1953,12.218 +349,1954,11.807 +349,1955,11.781 +349,1956,11.803 +349,1957,12.334 +349,1958,11.959 +349,1959,11.991 +349,1960,12.283 +349,1961,11.7 +349,1962,11.966 +349,1963,11.947 +349,1964,11.7 +349,1965,12.018 +349,1966,11.977 +349,1967,12.183 +349,1968,11.951 +349,1969,12.46 +349,1970,12.004 +349,1971,11.909 +349,1972,12.152 +349,1973,12.065 +349,1974,11.956 +349,1975,11.626 +349,1976,12.053 +349,1977,12.103 +349,1978,12.129 +349,1979,12.457 +349,1980,12.141 +349,1981,12.498 +349,1982,12.377 +349,1983,12.312 +349,1984,11.923 +349,1985,12.055 +349,1986,12.181 +349,1987,12.547 +349,1988,12.433 +349,1989,12.36 +349,1990,12.544 +349,1991,12.356 +349,1992,12.377 +349,1993,12.159 +349,1994,12.303 +349,1995,12.27 +349,1996,12.524 +349,1997,12.54 +349,1998,12.76 +349,1999,12.425 +349,2000,12.362 +349,2001,12.557 +349,2002,12.876 +349,2003,12.937 +349,2004,12.711 +349,2005,12.784 +349,2006,12.964 +349,2007,12.571 +349,2008,12.551 +349,2009,12.571 +349,2010,12.481 +349,2011,12.586 +349,2012,12.57 +349,2013,12.811 +349,2014,12.941 +349,2015,13.283 +349,2016,12.879 +349,2017,13.001 +349,2018,13.219 +349,2019,13.285 +349,2020,12.761 +349,2021,13.043 +349,2022,12.886 +349,2023,13.332 +349,2024,NA +350,1940,11.878 +350,1941,12.073 +350,1942,11.926 +350,1943,11.934 +350,1944,11.883 +350,1945,11.827 +350,1946,11.75 +350,1947,11.622 +350,1948,11.73 +350,1949,11.94 +350,1950,12.2 +350,1951,11.963 +350,1952,11.982 +350,1953,12.118 +350,1954,11.883 +350,1955,11.709 +350,1956,11.814 +350,1957,12.36 +350,1958,12.013 +350,1959,11.972 +350,1960,12.27 +350,1961,11.642 +350,1962,12.023 +350,1963,11.937 +350,1964,11.666 +350,1965,11.988 +350,1966,11.972 +350,1967,12.179 +350,1968,11.975 +350,1969,12.476 +350,1970,12.008 +350,1971,11.813 +350,1972,12.185 +350,1973,12.021 +350,1974,11.909 +350,1975,11.699 +350,1976,12.076 +350,1977,12.142 +350,1978,12.165 +350,1979,12.416 +350,1980,12.222 +350,1981,12.471 +350,1982,12.482 +350,1983,12.251 +350,1984,12.013 +350,1985,12.058 +350,1986,12.191 +350,1987,12.495 +350,1988,12.416 +350,1989,12.361 +350,1990,12.542 +350,1991,12.362 +350,1992,12.311 +350,1993,12.21 +350,1994,12.314 +350,1995,12.312 +350,1996,12.474 +350,1997,12.449 +350,1998,12.645 +350,1999,12.336 +350,2000,12.382 +350,2001,12.622 +350,2002,12.87 +350,2003,12.887 +350,2004,12.603 +350,2005,12.741 +350,2006,13.016 +350,2007,12.486 +350,2008,12.501 +350,2009,12.533 +350,2010,12.488 +350,2011,12.546 +350,2012,12.578 +350,2013,12.855 +350,2014,12.932 +350,2015,13.231 +350,2016,12.761 +350,2017,13.021 +350,2018,13.222 +350,2019,13.328 +350,2020,12.744 +350,2021,13.063 +350,2022,12.917 +350,2023,13.345 +350,2024,NA +351,1940,11.862 +351,1941,12.072 +351,1942,11.872 +351,1943,11.894 +351,1944,11.915 +351,1945,11.818 +351,1946,11.666 +351,1947,11.61 +351,1948,11.671 +351,1949,11.926 +351,1950,12.139 +351,1951,11.962 +351,1952,11.962 +351,1953,12.029 +351,1954,11.891 +351,1955,11.623 +351,1956,11.83 +351,1957,12.33 +351,1958,12.128 +351,1959,11.974 +351,1960,12.26 +351,1961,11.666 +351,1962,12.044 +351,1963,11.949 +351,1964,11.564 +351,1965,11.903 +351,1966,12.022 +351,1967,12.268 +351,1968,12.039 +351,1969,12.497 +351,1970,12.007 +351,1971,11.805 +351,1972,12.168 +351,1973,12.019 +351,1974,11.912 +351,1975,11.739 +351,1976,12.116 +351,1977,12.152 +351,1978,12.118 +351,1979,12.39 +351,1980,12.259 +351,1981,12.43 +351,1982,12.542 +351,1983,12.198 +351,1984,12.049 +351,1985,12.106 +351,1986,12.193 +351,1987,12.49 +351,1988,12.39 +351,1989,12.291 +351,1990,12.631 +351,1991,12.34 +351,1992,12.214 +351,1993,12.261 +351,1994,12.281 +351,1995,12.332 +351,1996,12.439 +351,1997,12.427 +351,1998,12.608 +351,1999,12.291 +351,2000,12.406 +351,2001,12.672 +351,2002,12.842 +351,2003,12.828 +351,2004,12.526 +351,2005,12.774 +351,2006,13.046 +351,2007,12.44 +351,2008,12.523 +351,2009,12.528 +351,2010,12.578 +351,2011,12.533 +351,2012,12.582 +351,2013,12.813 +351,2014,12.893 +351,2015,13.147 +351,2016,12.742 +351,2017,13.022 +351,2018,13.223 +351,2019,13.305 +351,2020,12.775 +351,2021,13.027 +351,2022,12.921 +351,2023,13.366 +351,2024,NA +352,1940,11.828 +352,1941,12.077 +352,1942,11.783 +352,1943,11.899 +352,1944,11.888 +352,1945,11.781 +352,1946,11.6 +352,1947,11.659 +352,1948,11.641 +352,1949,11.927 +352,1950,12.045 +352,1951,11.947 +352,1952,11.939 +352,1953,11.959 +352,1954,11.876 +352,1955,11.593 +352,1956,11.792 +352,1957,12.298 +352,1958,12.158 +352,1959,11.959 +352,1960,12.2 +352,1961,11.757 +352,1962,12.128 +352,1963,11.95 +352,1964,11.539 +352,1965,11.815 +352,1966,12.06 +352,1967,12.332 +352,1968,12.101 +352,1969,12.491 +352,1970,12.017 +352,1971,11.824 +352,1972,12.207 +352,1973,11.988 +352,1974,11.873 +352,1975,11.762 +352,1976,12.108 +352,1977,12.176 +352,1978,12.023 +352,1979,12.372 +352,1980,12.245 +352,1981,12.409 +352,1982,12.586 +352,1983,12.127 +352,1984,12.011 +352,1985,12.157 +352,1986,12.13 +352,1987,12.465 +352,1988,12.357 +352,1989,12.262 +352,1990,12.696 +352,1991,12.215 +352,1992,12.196 +352,1993,12.235 +352,1994,12.335 +352,1995,12.306 +352,1996,12.363 +352,1997,12.498 +352,1998,12.623 +352,1999,12.321 +352,2000,12.402 +352,2001,12.697 +352,2002,12.779 +352,2003,12.769 +352,2004,12.533 +352,2005,12.779 +352,2006,12.995 +352,2007,12.395 +352,2008,12.478 +352,2009,12.542 +352,2010,12.597 +352,2011,12.532 +352,2012,12.575 +352,2013,12.752 +352,2014,12.861 +352,2015,13.05 +352,2016,12.779 +352,2017,12.984 +352,2018,13.221 +352,2019,13.214 +352,2020,12.81 +352,2021,12.972 +352,2022,12.867 +352,2023,13.33 +352,2024,NA +353,1940,11.852 +353,1941,11.996 +353,1942,11.707 +353,1943,11.964 +353,1944,11.842 +353,1945,11.716 +353,1946,11.625 +353,1947,11.603 +353,1948,11.5 +353,1949,11.92 +353,1950,11.977 +353,1951,11.95 +353,1952,11.898 +353,1953,11.917 +353,1954,11.885 +353,1955,11.563 +353,1956,11.802 +353,1957,12.299 +353,1958,12.118 +353,1959,11.959 +353,1960,12.192 +353,1961,11.81 +353,1962,12.187 +353,1963,11.954 +353,1964,11.544 +353,1965,11.721 +353,1966,12.047 +353,1967,12.312 +353,1968,12.191 +353,1969,12.463 +353,1970,11.868 +353,1971,11.775 +353,1972,12.227 +353,1973,11.953 +353,1974,11.843 +353,1975,11.812 +353,1976,12.057 +353,1977,12.146 +353,1978,11.932 +353,1979,12.354 +353,1980,12.216 +353,1981,12.382 +353,1982,12.642 +353,1983,12.07 +353,1984,11.951 +353,1985,12.092 +353,1986,12.14 +353,1987,12.476 +353,1988,12.374 +353,1989,12.256 +353,1990,12.611 +353,1991,12.134 +353,1992,12.088 +353,1993,12.225 +353,1994,12.333 +353,1995,12.312 +353,1996,12.285 +353,1997,12.569 +353,1998,12.602 +353,1999,12.342 +353,2000,12.414 +353,2001,12.74 +353,2002,12.719 +353,2003,12.766 +353,2004,12.531 +353,2005,12.745 +353,2006,12.98 +353,2007,12.43 +353,2008,12.423 +353,2009,12.564 +353,2010,12.609 +353,2011,12.536 +353,2012,12.576 +353,2013,12.69 +353,2014,12.892 +353,2015,12.945 +353,2016,12.831 +353,2017,12.989 +353,2018,13.197 +353,2019,13.114 +353,2020,12.778 +353,2021,12.901 +353,2022,12.771 +353,2023,13.322 +353,2024,NA +354,1940,11.882 +354,1941,11.989 +354,1942,11.642 +354,1943,11.994 +354,1944,11.782 +354,1945,11.71 +354,1946,11.669 +354,1947,11.601 +354,1948,11.436 +354,1949,11.934 +354,1950,11.941 +354,1951,11.977 +354,1952,11.865 +354,1953,11.965 +354,1954,11.894 +354,1955,11.523 +354,1956,11.816 +354,1957,12.334 +354,1958,12.102 +354,1959,11.982 +354,1960,12.191 +354,1961,11.76 +354,1962,12.168 +354,1963,11.995 +354,1964,11.603 +354,1965,11.75 +354,1966,12.005 +354,1967,12.235 +354,1968,12.249 +354,1969,12.394 +354,1970,11.776 +354,1971,11.772 +354,1972,12.241 +354,1973,11.942 +354,1974,11.803 +354,1975,11.8 +354,1976,11.97 +354,1977,12.128 +354,1978,11.997 +354,1979,12.382 +354,1980,12.131 +354,1981,12.375 +354,1982,12.67 +354,1983,12.029 +354,1984,12.008 +354,1985,12.01 +354,1986,12.117 +354,1987,12.481 +354,1988,12.393 +354,1989,12.273 +354,1990,12.515 +354,1991,12.117 +354,1992,12.053 +354,1993,12.285 +354,1994,12.295 +354,1995,12.329 +354,1996,12.322 +354,1997,12.615 +354,1998,12.558 +354,1999,12.302 +354,2000,12.413 +354,2001,12.786 +354,2002,12.707 +354,2003,12.783 +354,2004,12.533 +354,2005,12.803 +354,2006,12.976 +354,2007,12.478 +354,2008,12.431 +354,2009,12.612 +354,2010,12.599 +354,2011,12.579 +354,2012,12.488 +354,2013,12.645 +354,2014,12.976 +354,2015,12.852 +354,2016,12.872 +354,2017,13.047 +354,2018,13.211 +354,2019,13.073 +354,2020,12.709 +354,2021,12.868 +354,2022,12.794 +354,2023,13.288 +354,2024,NA +355,1940,11.92 +355,1941,11.902 +355,1942,11.603 +355,1943,11.978 +355,1944,11.77 +355,1945,11.719 +355,1946,11.71 +355,1947,11.682 +355,1948,11.563 +355,1949,11.926 +355,1950,11.824 +355,1951,11.943 +355,1952,11.889 +355,1953,11.983 +355,1954,11.874 +355,1955,11.463 +355,1956,11.858 +355,1957,12.338 +355,1958,12.08 +355,1959,11.986 +355,1960,12.211 +355,1961,11.756 +355,1962,12.102 +355,1963,12.034 +355,1964,11.73 +355,1965,11.782 +355,1966,11.96 +355,1967,12.168 +355,1968,12.202 +355,1969,12.323 +355,1970,11.765 +355,1971,11.809 +355,1972,12.256 +355,1973,11.972 +355,1974,11.793 +355,1975,11.821 +355,1976,11.911 +355,1977,12.083 +355,1978,12.012 +355,1979,12.393 +355,1980,12.043 +355,1981,12.407 +355,1982,12.658 +355,1983,12.002 +355,1984,12.026 +355,1985,12.01 +355,1986,12.054 +355,1987,12.513 +355,1988,12.359 +355,1989,12.277 +355,1990,12.485 +355,1991,12.184 +355,1992,12.024 +355,1993,12.283 +355,1994,12.27 +355,1995,12.357 +355,1996,12.321 +355,1997,12.64 +355,1998,12.5 +355,1999,12.307 +355,2000,12.304 +355,2001,12.761 +355,2002,12.695 +355,2003,12.854 +355,2004,12.488 +355,2005,12.813 +355,2006,12.92 +355,2007,12.503 +355,2008,12.439 +355,2009,12.654 +355,2010,12.576 +355,2011,12.669 +355,2012,12.401 +355,2013,12.584 +355,2014,13.006 +355,2015,12.83 +355,2016,12.915 +355,2017,13.076 +355,2018,13.155 +355,2019,13.118 +355,2020,12.681 +355,2021,12.859 +355,2022,12.813 +355,2023,13.293 +355,2024,NA +356,1940,11.986 +356,1941,11.842 +356,1942,11.593 +356,1943,11.942 +356,1944,11.75 +356,1945,11.683 +356,1946,11.685 +356,1947,11.773 +356,1948,11.614 +356,1949,11.881 +356,1950,11.774 +356,1951,11.949 +356,1952,11.854 +356,1953,11.928 +356,1954,11.874 +356,1955,11.481 +356,1956,11.909 +356,1957,12.275 +356,1958,12.025 +356,1959,11.985 +356,1960,12.151 +356,1961,11.825 +356,1962,12.07 +356,1963,12.039 +356,1964,11.808 +356,1965,11.754 +356,1966,11.899 +356,1967,12.015 +356,1968,12.092 +356,1969,12.257 +356,1970,11.81 +356,1971,11.773 +356,1972,12.317 +356,1973,11.981 +356,1974,11.865 +356,1975,11.827 +356,1976,11.791 +356,1977,12.055 +356,1978,12 +356,1979,12.408 +356,1980,12.083 +356,1981,12.431 +356,1982,12.658 +356,1983,11.98 +356,1984,12.027 +356,1985,12.035 +356,1986,12.051 +356,1987,12.537 +356,1988,12.338 +356,1989,12.24 +356,1990,12.498 +356,1991,12.252 +356,1992,12.046 +356,1993,12.204 +356,1994,12.271 +356,1995,12.339 +356,1996,12.327 +356,1997,12.555 +356,1998,12.457 +356,1999,12.338 +356,2000,12.193 +356,2001,12.725 +356,2002,12.655 +356,2003,12.906 +356,2004,12.419 +356,2005,12.808 +356,2006,12.883 +356,2007,12.503 +356,2008,12.406 +356,2009,12.701 +356,2010,12.559 +356,2011,12.64 +356,2012,12.366 +356,2013,12.586 +356,2014,12.972 +356,2015,12.905 +356,2016,12.968 +356,2017,13.046 +356,2018,13.075 +356,2019,13.126 +356,2020,12.678 +356,2021,12.86 +356,2022,12.787 +356,2023,13.375 +356,2024,NA +357,1940,12.044 +357,1941,11.865 +357,1942,11.645 +357,1943,11.937 +357,1944,11.753 +357,1945,11.664 +357,1946,11.699 +357,1947,11.799 +357,1948,11.583 +357,1949,11.859 +357,1950,11.775 +357,1951,11.955 +357,1952,11.827 +357,1953,11.843 +357,1954,11.953 +357,1955,11.552 +357,1956,11.92 +357,1957,12.245 +357,1958,12.026 +357,1959,11.969 +357,1960,12.128 +357,1961,11.865 +357,1962,12.016 +357,1963,12.07 +357,1964,11.904 +357,1965,11.795 +357,1966,11.858 +357,1967,11.867 +357,1968,11.913 +357,1969,12.157 +357,1970,11.833 +357,1971,11.681 +357,1972,12.324 +357,1973,11.962 +357,1974,11.919 +357,1975,11.891 +357,1976,11.72 +357,1977,12.055 +357,1978,11.954 +357,1979,12.372 +357,1980,12.12 +357,1981,12.466 +357,1982,12.591 +357,1983,12.01 +357,1984,11.933 +357,1985,12.101 +357,1986,12.069 +357,1987,12.455 +357,1988,12.349 +357,1989,12.189 +357,1990,12.452 +357,1991,12.256 +357,1992,12.03 +357,1993,12.149 +357,1994,12.302 +357,1995,12.26 +357,1996,12.328 +357,1997,12.473 +357,1998,12.413 +357,1999,12.347 +357,2000,12.143 +357,2001,12.735 +357,2002,12.517 +357,2003,12.89 +357,2004,12.409 +357,2005,12.833 +357,2006,12.841 +357,2007,12.438 +357,2008,12.345 +357,2009,12.72 +357,2010,12.634 +357,2011,12.583 +357,2012,12.357 +357,2013,12.578 +357,2014,12.997 +357,2015,12.988 +357,2016,12.985 +357,2017,13.026 +357,2018,12.938 +357,2019,13.126 +357,2020,12.677 +357,2021,12.844 +357,2022,12.725 +357,2023,13.465 +357,2024,NA +358,1940,12.093 +358,1941,11.901 +358,1942,11.651 +358,1943,11.929 +358,1944,11.795 +358,1945,11.701 +358,1946,11.753 +358,1947,11.816 +358,1948,11.585 +358,1949,11.771 +358,1950,11.758 +358,1951,11.911 +358,1952,11.846 +358,1953,11.836 +358,1954,12.021 +358,1955,11.666 +358,1956,11.904 +358,1957,12.193 +358,1958,12.005 +358,1959,12.017 +358,1960,12.186 +358,1961,11.812 +358,1962,11.94 +358,1963,12.057 +358,1964,11.932 +358,1965,11.852 +358,1966,11.839 +358,1967,11.776 +358,1968,11.779 +358,1969,12.025 +358,1970,11.786 +358,1971,11.734 +358,1972,12.254 +358,1973,11.984 +358,1974,11.881 +358,1975,11.913 +358,1976,11.761 +358,1977,12.076 +358,1978,11.973 +358,1979,12.348 +358,1980,12.143 +358,1981,12.404 +358,1982,12.554 +358,1983,12.047 +358,1984,11.857 +358,1985,12.155 +358,1986,12.135 +358,1987,12.419 +358,1988,12.334 +358,1989,12.202 +358,1990,12.378 +358,1991,12.34 +358,1992,11.932 +358,1993,12.26 +358,1994,12.341 +358,1995,12.177 +358,1996,12.328 +358,1997,12.492 +358,1998,12.345 +358,1999,12.376 +358,2000,12.104 +358,2001,12.741 +358,2002,12.368 +358,2003,12.838 +358,2004,12.375 +358,2005,12.869 +358,2006,12.788 +358,2007,12.365 +358,2008,12.368 +358,2009,12.744 +358,2010,12.706 +358,2011,12.572 +358,2012,12.373 +358,2013,12.586 +358,2014,13.032 +358,2015,13.086 +358,2016,12.936 +358,2017,12.999 +358,2018,12.811 +358,2019,13.163 +358,2020,12.666 +358,2021,12.84 +358,2022,12.655 +358,2023,13.544 +358,2024,NA +359,1940,12.089 +359,1941,11.927 +359,1942,11.63 +359,1943,11.928 +359,1944,11.83 +359,1945,11.715 +359,1946,11.738 +359,1947,11.835 +359,1948,11.5 +359,1949,11.663 +359,1950,11.769 +359,1951,11.878 +359,1952,11.84 +359,1953,11.894 +359,1954,11.971 +359,1955,11.722 +359,1956,11.898 +359,1957,12.2 +359,1958,11.918 +359,1959,12.041 +359,1960,12.185 +359,1961,11.776 +359,1962,11.908 +359,1963,12.063 +359,1964,11.888 +359,1965,11.846 +359,1966,11.787 +359,1967,11.693 +359,1968,11.761 +359,1969,11.935 +359,1970,11.783 +359,1971,11.829 +359,1972,12.233 +359,1973,12.004 +359,1974,11.836 +359,1975,11.841 +359,1976,11.842 +359,1977,12.043 +359,1978,12.036 +359,1979,12.386 +359,1980,12.129 +359,1981,12.353 +359,1982,12.512 +359,1983,12.118 +359,1984,11.814 +359,1985,12.136 +359,1986,12.114 +359,1987,12.291 +359,1988,12.293 +359,1989,12.276 +359,1990,12.332 +359,1991,12.36 +359,1992,11.933 +359,1993,12.294 +359,1994,12.301 +359,1995,12.138 +359,1996,12.286 +359,1997,12.548 +359,1998,12.335 +359,1999,12.393 +359,2000,12.114 +359,2001,12.723 +359,2002,12.285 +359,2003,12.801 +359,2004,12.379 +359,2005,12.797 +359,2006,12.722 +359,2007,12.325 +359,2008,12.428 +359,2009,12.684 +359,2010,12.642 +359,2011,12.534 +359,2012,12.43 +359,2013,12.636 +359,2014,13.036 +359,2015,13.038 +359,2016,12.955 +359,2017,12.938 +359,2018,12.81 +359,2019,13.2 +359,2020,12.666 +359,2021,12.844 +359,2022,12.689 +359,2023,13.596 +359,2024,NA +360,1940,12.125 +360,1941,11.913 +360,1942,11.603 +360,1943,12.013 +360,1944,11.826 +360,1945,11.706 +360,1946,11.757 +360,1947,11.826 +360,1948,11.423 +360,1949,11.626 +360,1950,11.769 +360,1951,11.915 +360,1952,11.881 +360,1953,11.915 +360,1954,11.863 +360,1955,11.675 +360,1956,11.875 +360,1957,12.116 +360,1958,11.782 +360,1959,12.053 +360,1960,12.143 +360,1961,11.753 +360,1962,11.845 +360,1963,12.039 +360,1964,11.861 +360,1965,11.837 +360,1966,11.744 +360,1967,11.643 +360,1968,11.76 +360,1969,11.926 +360,1970,11.82 +360,1971,11.86 +360,1972,12.168 +360,1973,12.045 +360,1974,11.774 +360,1975,11.894 +360,1976,11.884 +360,1977,11.976 +360,1978,12.083 +360,1979,12.445 +360,1980,12.062 +360,1981,12.328 +360,1982,12.447 +360,1983,12.145 +360,1984,11.745 +360,1985,12.117 +360,1986,12.035 +360,1987,12.209 +360,1988,12.219 +360,1989,12.337 +360,1990,12.254 +360,1991,12.328 +360,1992,11.911 +360,1993,12.257 +360,1994,12.311 +360,1995,12.172 +360,1996,12.244 +360,1997,12.595 +360,1998,12.352 +360,1999,12.401 +360,2000,12.144 +360,2001,12.699 +360,2002,12.222 +360,2003,12.747 +360,2004,12.427 +360,2005,12.747 +360,2006,12.666 +360,2007,12.308 +360,2008,12.482 +360,2009,12.633 +360,2010,12.617 +360,2011,12.512 +360,2012,12.427 +360,2013,12.679 +360,2014,13.003 +360,2015,12.949 +360,2016,12.938 +360,2017,12.816 +360,2018,12.785 +360,2019,13.156 +360,2020,12.609 +360,2021,12.808 +360,2022,12.798 +360,2023,13.57 +360,2024,NA +361,1940,12.183 +361,1941,11.81 +361,1942,11.604 +361,1943,12.071 +361,1944,11.855 +361,1945,11.676 +361,1946,11.711 +361,1947,11.884 +361,1948,11.48 +361,1949,11.705 +361,1950,11.714 +361,1951,11.937 +361,1952,11.877 +361,1953,11.856 +361,1954,11.792 +361,1955,11.624 +361,1956,11.867 +361,1957,12.044 +361,1958,11.728 +361,1959,12.111 +361,1960,12.131 +361,1961,11.724 +361,1962,11.853 +361,1963,12.016 +361,1964,11.78 +361,1965,11.824 +361,1966,11.786 +361,1967,11.742 +361,1968,11.729 +361,1969,11.935 +361,1970,11.832 +361,1971,11.868 +361,1972,12.151 +361,1973,12.087 +361,1974,11.78 +361,1975,11.948 +361,1976,11.854 +361,1977,11.934 +361,1978,12.099 +361,1979,12.489 +361,1980,12.043 +361,1981,12.297 +361,1982,12.414 +361,1983,12.209 +361,1984,11.775 +361,1985,12.081 +361,1986,12.032 +361,1987,12.243 +361,1988,12.14 +361,1989,12.352 +361,1990,12.183 +361,1991,12.281 +361,1992,11.997 +361,1993,12.137 +361,1994,12.369 +361,1995,12.222 +361,1996,12.144 +361,1997,12.589 +361,1998,12.37 +361,1999,12.385 +361,2000,12.181 +361,2001,12.712 +361,2002,12.159 +361,2003,12.687 +361,2004,12.423 +361,2005,12.708 +361,2006,12.63 +361,2007,12.344 +361,2008,12.474 +361,2009,12.643 +361,2010,12.581 +361,2011,12.545 +361,2012,12.368 +361,2013,12.704 +361,2014,12.902 +361,2015,12.897 +361,2016,12.896 +361,2017,12.754 +361,2018,12.766 +361,2019,13.065 +361,2020,12.583 +361,2021,12.709 +361,2022,12.859 +361,2023,13.498 +361,2024,NA +362,1940,12.175 +362,1941,11.712 +362,1942,11.684 +362,1943,12.025 +362,1944,11.862 +362,1945,11.653 +362,1946,11.615 +362,1947,11.905 +362,1948,11.547 +362,1949,11.844 +362,1950,11.682 +362,1951,11.958 +362,1952,11.819 +362,1953,11.823 +362,1954,11.755 +362,1955,11.593 +362,1956,11.824 +362,1957,12 +362,1958,11.747 +362,1959,12.101 +362,1960,12.103 +362,1961,11.758 +362,1962,11.917 +362,1963,12.044 +362,1964,11.675 +362,1965,11.884 +362,1966,11.779 +362,1967,11.784 +362,1968,11.656 +362,1969,11.917 +362,1970,11.838 +362,1971,11.848 +362,1972,12.127 +362,1973,12.107 +362,1974,11.815 +362,1975,11.988 +362,1976,11.823 +362,1977,11.876 +362,1978,12.078 +362,1979,12.446 +362,1980,12.063 +362,1981,12.248 +362,1982,12.368 +362,1983,12.258 +362,1984,11.888 +362,1985,12.094 +362,1986,12.006 +362,1987,12.189 +362,1988,12.008 +362,1989,12.359 +362,1990,12.179 +362,1991,12.242 +362,1992,12.043 +362,1993,12.07 +362,1994,12.426 +362,1995,12.311 +362,1996,12.175 +362,1997,12.481 +362,1998,12.421 +362,1999,12.35 +362,2000,12.199 +362,2001,12.709 +362,2002,12.199 +362,2003,12.635 +362,2004,12.359 +362,2005,12.661 +362,2006,12.545 +362,2007,12.298 +362,2008,12.553 +362,2009,12.628 +362,2010,12.487 +362,2011,12.605 +362,2012,12.409 +362,2013,12.712 +362,2014,12.818 +362,2015,12.925 +362,2016,12.934 +362,2017,12.763 +362,2018,12.725 +362,2019,13.058 +362,2020,12.618 +362,2021,12.679 +362,2022,12.903 +362,2023,13.509 +362,2024,NA +363,1940,12.092 +363,1941,11.705 +363,1942,11.765 +363,1943,11.984 +363,1944,11.931 +363,1945,11.636 +363,1946,11.542 +363,1947,11.923 +363,1948,11.547 +363,1949,11.831 +363,1950,11.666 +363,1951,12.015 +363,1952,11.749 +363,1953,11.813 +363,1954,11.711 +363,1955,11.519 +363,1956,11.863 +363,1957,11.922 +363,1958,11.753 +363,1959,12.12 +363,1960,12.072 +363,1961,11.753 +363,1962,11.935 +363,1963,12.005 +363,1964,11.599 +363,1965,11.925 +363,1966,11.743 +363,1967,11.797 +363,1968,11.647 +363,1969,11.93 +363,1970,11.863 +363,1971,11.857 +363,1972,12.111 +363,1973,12.138 +363,1974,11.86 +363,1975,11.976 +363,1976,11.814 +363,1977,11.922 +363,1978,12.114 +363,1979,12.384 +363,1980,12.128 +363,1981,12.178 +363,1982,12.33 +363,1983,12.166 +363,1984,12.006 +363,1985,12.183 +363,1986,12.002 +363,1987,12.183 +363,1988,11.891 +363,1989,12.388 +363,1990,12.172 +363,1991,12.177 +363,1992,12.033 +363,1993,12.113 +363,1994,12.44 +363,1995,12.327 +363,1996,12.181 +363,1997,12.333 +363,1998,12.415 +363,1999,12.343 +363,2000,12.207 +363,2001,12.767 +363,2002,12.236 +363,2003,12.645 +363,2004,12.371 +363,2005,12.643 +363,2006,12.52 +363,2007,12.321 +363,2008,12.684 +363,2009,12.633 +363,2010,12.422 +363,2011,12.637 +363,2012,12.472 +363,2013,12.677 +363,2014,12.79 +363,2015,12.948 +363,2016,13.001 +363,2017,12.811 +363,2018,12.626 +363,2019,13.007 +363,2020,12.651 +363,2021,12.674 +363,2022,12.858 +363,2023,13.53 +363,2024,NA +364,1940,12.015 +364,1941,11.667 +364,1942,11.818 +364,1943,11.97 +364,1944,11.888 +364,1945,11.692 +364,1946,11.53 +364,1947,11.859 +364,1948,11.514 +364,1949,11.75 +364,1950,11.611 +364,1951,12.135 +364,1952,11.749 +364,1953,11.81 +364,1954,11.66 +364,1955,11.505 +364,1956,11.836 +364,1957,11.859 +364,1958,11.719 +364,1959,12.079 +364,1960,12.038 +364,1961,11.765 +364,1962,11.853 +364,1963,11.957 +364,1964,11.549 +364,1965,11.94 +364,1966,11.79 +364,1967,11.84 +364,1968,11.626 +364,1969,11.961 +364,1970,11.87 +364,1971,11.889 +364,1972,12.053 +364,1973,12.146 +364,1974,11.906 +364,1975,12.006 +364,1976,11.803 +364,1977,11.968 +364,1978,12.065 +364,1979,12.334 +364,1980,12.187 +364,1981,12.145 +364,1982,12.296 +364,1983,12.093 +364,1984,12.009 +364,1985,12.178 +364,1986,12.027 +364,1987,12.174 +364,1988,11.806 +364,1989,12.405 +364,1990,12.246 +364,1991,12.18 +364,1992,12.104 +364,1993,12.207 +364,1994,12.454 +364,1995,12.319 +364,1996,12.173 +364,1997,12.325 +364,1998,12.329 +364,1999,12.328 +364,2000,12.238 +364,2001,12.801 +364,2002,12.246 +364,2003,12.678 +364,2004,12.413 +364,2005,12.696 +364,2006,12.535 +364,2007,12.324 +364,2008,12.722 +364,2009,12.59 +364,2010,12.443 +364,2011,12.673 +364,2012,12.543 +364,2013,12.619 +364,2014,12.704 +364,2015,13.022 +364,2016,13.022 +364,2017,12.838 +364,2018,12.572 +364,2019,12.992 +364,2020,12.669 +364,2021,12.688 +364,2022,12.839 +364,2023,13.506 +364,2024,NA +365,1940,11.978 +365,1941,11.629 +365,1942,11.836 +365,1943,11.999 +365,1944,11.905 +365,1945,11.709 +365,1946,11.548 +365,1947,11.9 +365,1948,11.427 +365,1949,11.723 +365,1950,11.57 +365,1951,12.18 +365,1952,11.728 +365,1953,11.766 +365,1954,11.583 +365,1955,11.507 +365,1956,11.817 +365,1957,11.795 +365,1958,11.651 +365,1959,12.054 +365,1960,12.026 +365,1961,11.778 +365,1962,11.78 +365,1963,11.959 +365,1964,11.547 +365,1965,11.95 +365,1966,11.851 +365,1967,11.813 +365,1968,11.641 +365,1969,11.973 +365,1970,11.878 +365,1971,11.869 +365,1972,12.024 +365,1973,12.08 +365,1974,11.938 +365,1975,12.043 +365,1976,11.815 +365,1977,11.961 +365,1978,12.031 +365,1979,12.27 +365,1980,12.252 +365,1981,12.107 +365,1982,12.256 +365,1983,11.956 +365,1984,11.928 +365,1985,12.086 +365,1986,12.019 +365,1987,12.19 +365,1988,11.824 +365,1989,12.433 +365,1990,12.282 +365,1991,12.251 +365,1992,12.159 +365,1993,12.203 +365,1994,12.53 +365,1995,12.318 +365,1996,12.166 +365,1997,12.35 +365,1998,12.279 +365,1999,12.238 +365,2000,12.221 +365,2001,12.764 +365,2002,12.215 +365,2003,12.716 +365,2004,12.457 +365,2005,12.678 +365,2006,12.592 +365,2007,12.299 +365,2008,12.679 +365,2009,12.565 +365,2010,12.414 +365,2011,12.727 +365,2012,12.508 +365,2013,12.536 +365,2014,12.546 +365,2015,13.103 +365,2016,13.027 +365,2017,12.81 +365,2018,12.614 +365,2019,12.951 +365,2020,12.656 +365,2021,12.694 +365,2022,12.869 +365,2023,13.457 +365,2024,NA +366,1940,11.924 +366,1941,11.584 +366,1942,11.825 +366,1943,12.001 +366,1944,11.92 +366,1945,11.695 +366,1946,11.588 +366,1947,11.958 +366,1948,11.428 +366,1949,11.65 +366,1950,11.577 +366,1951,12.093 +366,1952,11.722 +366,1953,11.677 +366,1954,11.588 +366,1955,11.466 +366,1956,11.761 +366,1957,11.789 +366,1958,11.621 +366,1959,12.013 +366,1960,11.897 +366,1961,11.791 +366,1962,11.785 +366,1963,11.99 +366,1964,11.507 +366,1965,11.996 +366,1966,11.835 +366,1967,11.792 +366,1968,11.632 +366,1969,12.018 +366,1970,11.857 +366,1971,11.807 +366,1972,12.063 +366,1973,12.038 +366,1974,11.901 +366,1975,12.037 +366,1976,11.781 +366,1977,11.917 +366,1978,12.042 +366,1979,12.177 +366,1980,12.257 +366,1981,12.046 +366,1982,12.202 +366,1983,11.905 +366,1984,11.847 +366,1985,12.039 +366,1986,11.917 +366,1987,12.219 +366,1988,11.848 +366,1989,12.415 +366,1990,12.287 +366,1991,12.237 +366,1992,12.121 +366,1993,12.142 +366,1994,12.583 +366,1995,12.322 +366,1996,12.076 +366,1997,12.339 +366,1998,12.206 +366,1999,12.172 +366,2000,12.166 +366,2001,12.713 +366,2002,12.189 +366,2003,12.758 +366,2004,12.476 +366,2005,12.644 +366,2006,12.677 +366,2007,12.261 +366,2008,12.629 +366,2009,12.529 +366,2010,12.362 +366,2011,12.758 +366,2012,12.482 +366,2013,12.562 +366,2014,12.485 +366,2015,13.143 +366,2016,13.04 +366,2017,12.769 +366,2018,12.717 +366,2019,12.977 +366,2020,12.627 +366,2021,12.671 +366,2022,12.953 +366,2023,13.416 +366,2024,NA \ No newline at end of file diff --git a/docs/static/data/examples/date/apple-stock.d.ts b/docs/static/data/examples/date/apple-stock.d.ts new file mode 100644 index 000000000..e2bc6f5ca --- /dev/null +++ b/docs/static/data/examples/date/apple-stock.d.ts @@ -0,0 +1,4 @@ +export type AppleStockData = { + date: Date; + value: number; +}[]; diff --git a/docs/static/data/examples/date/apple-stock.json b/docs/static/data/examples/date/apple-stock.json new file mode 100644 index 000000000..91cfec7c7 --- /dev/null +++ b/docs/static/data/examples/date/apple-stock.json @@ -0,0 +1,1282 @@ +[ + { "date": "2007-04-24T07:00:00.000Z", "value": 93.24 }, + { "date": "2007-04-25T07:00:00.000Z", "value": 95.35 }, + { "date": "2007-04-26T07:00:00.000Z", "value": 98.84 }, + { "date": "2007-04-27T07:00:00.000Z", "value": 99.92 }, + { "date": "2007-04-30T07:00:00.000Z", "value": 99.8 }, + { "date": "2007-05-01T07:00:00.000Z", "value": 99.47 }, + { "date": "2007-05-02T07:00:00.000Z", "value": 100.39 }, + { "date": "2007-05-03T07:00:00.000Z", "value": 100.4 }, + { "date": "2007-05-04T07:00:00.000Z", "value": 100.81 }, + { "date": "2007-05-07T07:00:00.000Z", "value": 103.92 }, + { "date": "2007-05-08T07:00:00.000Z", "value": 105.06 }, + { "date": "2007-05-09T07:00:00.000Z", "value": 106.88 }, + { "date": "2007-05-10T07:00:00.000Z", "value": 107.34 }, + { "date": "2007-05-11T07:00:00.000Z", "value": 108.74 }, + { "date": "2007-05-14T07:00:00.000Z", "value": 109.36 }, + { "date": "2007-05-15T07:00:00.000Z", "value": 107.52 }, + { "date": "2007-05-16T07:00:00.000Z", "value": 107.34 }, + { "date": "2007-05-17T07:00:00.000Z", "value": 109.44 }, + { "date": "2007-05-18T07:00:00.000Z", "value": 110.02 }, + { "date": "2007-05-21T07:00:00.000Z", "value": 111.98 }, + { "date": "2007-05-22T07:00:00.000Z", "value": 113.54 }, + { "date": "2007-05-23T07:00:00.000Z", "value": 112.89 }, + { "date": "2007-05-24T07:00:00.000Z", "value": 110.69 }, + { "date": "2007-05-25T07:00:00.000Z", "value": 113.62 }, + { "date": "2007-05-29T07:00:00.000Z", "value": 114.35 }, + { "date": "2007-05-30T07:00:00.000Z", "value": 118.77 }, + { "date": "2007-05-31T07:00:00.000Z", "value": 121.19 }, + { "date": "2007-06-01T07:00:00.000Z", "value": 118.4 }, + { "date": "2007-06-04T07:00:00.000Z", "value": 121.33 }, + { "date": "2007-06-05T07:00:00.000Z", "value": 122.67 }, + { "date": "2007-06-06T07:00:00.000Z", "value": 123.64 }, + { "date": "2007-06-07T07:00:00.000Z", "value": 124.07 }, + { "date": "2007-06-08T07:00:00.000Z", "value": 124.49 }, + { "date": "2007-06-11T07:00:00.000Z", "value": 120.19 }, + { "date": "2007-06-12T07:00:00.000Z", "value": 120.38 }, + { "date": "2007-06-13T07:00:00.000Z", "value": 117.5 }, + { "date": "2007-06-14T07:00:00.000Z", "value": 118.75 }, + { "date": "2007-06-15T07:00:00.000Z", "value": 120.5 }, + { "date": "2007-06-18T07:00:00.000Z", "value": 125.09 }, + { "date": "2007-06-19T07:00:00.000Z", "value": 123.66 }, + { "date": "2007-06-20T07:00:00.000Z", "value": 121.55 }, + { "date": "2007-06-21T07:00:00.000Z", "value": 123.9 }, + { "date": "2007-06-22T07:00:00.000Z", "value": 123 }, + { "date": "2007-06-25T07:00:00.000Z", "value": 122.34 }, + { "date": "2007-06-26T07:00:00.000Z", "value": 119.65 }, + { "date": "2007-06-27T07:00:00.000Z", "value": 121.89 }, + { "date": "2007-06-28T07:00:00.000Z", "value": 120.56 }, + { "date": "2007-06-29T07:00:00.000Z", "value": 122.04 }, + { "date": "2007-07-02T07:00:00.000Z", "value": 121.26 }, + { "date": "2007-07-03T07:00:00.000Z", "value": 127.17 }, + { "date": "2007-07-05T07:00:00.000Z", "value": 132.75 }, + { "date": "2007-07-06T07:00:00.000Z", "value": 132.3 }, + { "date": "2007-07-09T07:00:00.000Z", "value": 130.33 }, + { "date": "2007-07-10T07:00:00.000Z", "value": 132.35 }, + { "date": "2007-07-11T07:00:00.000Z", "value": 132.39 }, + { "date": "2007-07-12T07:00:00.000Z", "value": 134.07 }, + { "date": "2007-07-13T07:00:00.000Z", "value": 137.73 }, + { "date": "2007-07-16T07:00:00.000Z", "value": 138.1 }, + { "date": "2007-07-17T07:00:00.000Z", "value": 138.91 }, + { "date": "2007-07-18T07:00:00.000Z", "value": 138.12 }, + { "date": "2007-07-19T07:00:00.000Z", "value": 140 }, + { "date": "2007-07-20T07:00:00.000Z", "value": 143.75 }, + { "date": "2007-07-23T07:00:00.000Z", "value": 143.7 }, + { "date": "2007-07-24T07:00:00.000Z", "value": 134.89 }, + { "date": "2007-07-25T07:00:00.000Z", "value": 137.26 }, + { "date": "2007-07-26T07:00:00.000Z", "value": 146 }, + { "date": "2007-07-27T07:00:00.000Z", "value": 143.85 }, + { "date": "2007-07-30T07:00:00.000Z", "value": 141.43 }, + { "date": "2007-07-31T07:00:00.000Z", "value": 131.76 }, + { "date": "2007-08-01T07:00:00.000Z", "value": 135 }, + { "date": "2007-08-02T07:00:00.000Z", "value": 136.49 }, + { "date": "2007-08-03T07:00:00.000Z", "value": 131.85 }, + { "date": "2007-08-06T07:00:00.000Z", "value": 135.25 }, + { "date": "2007-08-07T07:00:00.000Z", "value": 135.03 }, + { "date": "2007-08-08T07:00:00.000Z", "value": 134.01 }, + { "date": "2007-08-09T07:00:00.000Z", "value": 126.39 }, + { "date": "2007-08-10T07:00:00.000Z", "value": 125 }, + { "date": "2007-08-13T07:00:00.000Z", "value": 127.79 }, + { "date": "2007-08-14T07:00:00.000Z", "value": 124.03 }, + { "date": "2007-08-15T07:00:00.000Z", "value": 119.9 }, + { "date": "2007-08-16T07:00:00.000Z", "value": 117.05 }, + { "date": "2007-08-17T07:00:00.000Z", "value": 122.06 }, + { "date": "2007-08-20T07:00:00.000Z", "value": 122.22 }, + { "date": "2007-08-21T07:00:00.000Z", "value": 127.57 }, + { "date": "2007-08-22T07:00:00.000Z", "value": 132.51 }, + { "date": "2007-08-23T07:00:00.000Z", "value": 131.07 }, + { "date": "2007-08-24T07:00:00.000Z", "value": 135.3 }, + { "date": "2007-08-27T07:00:00.000Z", "value": 132.25 }, + { "date": "2007-08-28T07:00:00.000Z", "value": 126.82 }, + { "date": "2007-08-29T07:00:00.000Z", "value": 134.08 }, + { "date": "2007-08-30T07:00:00.000Z", "value": 136.25 }, + { "date": "2007-08-31T07:00:00.000Z", "value": 138.48 }, + { "date": "2007-09-04T07:00:00.000Z", "value": 144.16 }, + { "date": "2007-09-05T07:00:00.000Z", "value": 136.76 }, + { "date": "2007-09-06T07:00:00.000Z", "value": 135.01 }, + { "date": "2007-09-07T07:00:00.000Z", "value": 131.77 }, + { "date": "2007-09-10T07:00:00.000Z", "value": 136.71 }, + { "date": "2007-09-11T07:00:00.000Z", "value": 135.49 }, + { "date": "2007-09-12T07:00:00.000Z", "value": 136.85 }, + { "date": "2007-09-13T07:00:00.000Z", "value": 137.2 }, + { "date": "2007-09-14T07:00:00.000Z", "value": 138.81 }, + { "date": "2007-09-17T07:00:00.000Z", "value": 138.41 }, + { "date": "2007-09-18T07:00:00.000Z", "value": 140.92 }, + { "date": "2007-09-19T07:00:00.000Z", "value": 140.77 }, + { "date": "2007-09-20T07:00:00.000Z", "value": 140.31 }, + { "date": "2007-09-21T07:00:00.000Z", "value": 144.15 }, + { "date": "2007-09-24T07:00:00.000Z", "value": 148.28 }, + { "date": "2007-09-25T07:00:00.000Z", "value": 153.18 }, + { "date": "2007-09-26T07:00:00.000Z", "value": 152.77 }, + { "date": "2007-09-27T07:00:00.000Z", "value": 154.5 }, + { "date": "2007-09-28T07:00:00.000Z", "value": 153.47 }, + { "date": "2007-10-01T07:00:00.000Z", "value": 156.34 }, + { "date": "2007-10-02T07:00:00.000Z", "value": 158.45 }, + { "date": "2007-10-03T07:00:00.000Z", "value": 157.92 }, + { "date": "2007-10-04T07:00:00.000Z", "value": 156.24 }, + { "date": "2007-10-05T07:00:00.000Z", "value": 161.45 }, + { "date": "2007-10-08T07:00:00.000Z", "value": 167.91 }, + { "date": "2007-10-09T07:00:00.000Z", "value": 167.86 }, + { "date": "2007-10-10T07:00:00.000Z", "value": 166.79 }, + { "date": "2007-10-11T07:00:00.000Z", "value": 162.23 }, + { "date": "2007-10-12T07:00:00.000Z", "value": 167.25 }, + { "date": "2007-10-15T07:00:00.000Z", "value": 166.98 }, + { "date": "2007-10-16T07:00:00.000Z", "value": 169.58 }, + { "date": "2007-10-17T07:00:00.000Z", "value": 172.75 }, + { "date": "2007-10-18T07:00:00.000Z", "value": 173.5 }, + { "date": "2007-10-19T07:00:00.000Z", "value": 170.42 }, + { "date": "2007-10-22T07:00:00.000Z", "value": 174.36 }, + { "date": "2007-10-23T07:00:00.000Z", "value": 186.16 }, + { "date": "2007-10-24T07:00:00.000Z", "value": 185.93 }, + { "date": "2007-10-25T07:00:00.000Z", "value": 182.78 }, + { "date": "2007-10-26T07:00:00.000Z", "value": 184.7 }, + { "date": "2007-10-29T07:00:00.000Z", "value": 185.09 }, + { "date": "2007-10-30T07:00:00.000Z", "value": 187 }, + { "date": "2007-10-31T07:00:00.000Z", "value": 189.95 }, + { "date": "2007-11-01T07:00:00.000Z", "value": 187.44 }, + { "date": "2007-11-02T07:00:00.000Z", "value": 187.87 }, + { "date": "2007-11-05T08:00:00.000Z", "value": 186.18 }, + { "date": "2007-11-06T08:00:00.000Z", "value": 191.79 }, + { "date": "2007-11-07T08:00:00.000Z", "value": 186.3 }, + { "date": "2007-11-08T08:00:00.000Z", "value": 175.47 }, + { "date": "2007-11-09T08:00:00.000Z", "value": 165.37 }, + { "date": "2007-11-12T08:00:00.000Z", "value": 153.76 }, + { "date": "2007-11-13T08:00:00.000Z", "value": 169.96 }, + { "date": "2007-11-14T08:00:00.000Z", "value": 166.11 }, + { "date": "2007-11-15T08:00:00.000Z", "value": 164.3 }, + { "date": "2007-11-16T08:00:00.000Z", "value": 166.39 }, + { "date": "2007-11-19T08:00:00.000Z", "value": 163.95 }, + { "date": "2007-11-20T08:00:00.000Z", "value": 168.85 }, + { "date": "2007-11-21T08:00:00.000Z", "value": 168.46 }, + { "date": "2007-11-23T08:00:00.000Z", "value": 171.54 }, + { "date": "2007-11-26T08:00:00.000Z", "value": 172.54 }, + { "date": "2007-11-27T08:00:00.000Z", "value": 174.81 }, + { "date": "2007-11-28T08:00:00.000Z", "value": 180.22 }, + { "date": "2007-11-29T08:00:00.000Z", "value": 184.29 }, + { "date": "2007-11-30T08:00:00.000Z", "value": 182.22 }, + { "date": "2007-12-03T08:00:00.000Z", "value": 178.86 }, + { "date": "2007-12-04T08:00:00.000Z", "value": 179.81 }, + { "date": "2007-12-05T08:00:00.000Z", "value": 185.5 }, + { "date": "2007-12-06T08:00:00.000Z", "value": 189.95 }, + { "date": "2007-12-07T08:00:00.000Z", "value": 194.3 }, + { "date": "2007-12-10T08:00:00.000Z", "value": 194.21 }, + { "date": "2007-12-11T08:00:00.000Z", "value": 188.54 }, + { "date": "2007-12-12T08:00:00.000Z", "value": 190.86 }, + { "date": "2007-12-13T08:00:00.000Z", "value": 191.83 }, + { "date": "2007-12-14T08:00:00.000Z", "value": 190.39 }, + { "date": "2007-12-17T08:00:00.000Z", "value": 184.4 }, + { "date": "2007-12-18T08:00:00.000Z", "value": 182.98 }, + { "date": "2007-12-19T08:00:00.000Z", "value": 183.12 }, + { "date": "2007-12-20T08:00:00.000Z", "value": 187.21 }, + { "date": "2007-12-21T08:00:00.000Z", "value": 193.91 }, + { "date": "2007-12-24T08:00:00.000Z", "value": 198.8 }, + { "date": "2007-12-26T08:00:00.000Z", "value": 198.95 }, + { "date": "2007-12-27T08:00:00.000Z", "value": 198.57 }, + { "date": "2007-12-28T08:00:00.000Z", "value": 199.83 }, + { "date": "2007-12-31T08:00:00.000Z", "value": 198.08 }, + { "date": "2008-01-02T08:00:00.000Z", "value": 194.84 }, + { "date": "2008-01-03T08:00:00.000Z", "value": 194.93 }, + { "date": "2008-01-04T08:00:00.000Z", "value": 180.05 }, + { "date": "2008-01-07T08:00:00.000Z", "value": 177.64 }, + { "date": "2008-01-08T08:00:00.000Z", "value": 171.25 }, + { "date": "2008-01-09T08:00:00.000Z", "value": 179.4 }, + { "date": "2008-01-10T08:00:00.000Z", "value": 178.02 }, + { "date": "2008-01-11T08:00:00.000Z", "value": 172.69 }, + { "date": "2008-01-14T08:00:00.000Z", "value": 178.78 }, + { "date": "2008-01-15T08:00:00.000Z", "value": 169.04 }, + { "date": "2008-01-16T08:00:00.000Z", "value": 159.64 }, + { "date": "2008-01-17T08:00:00.000Z", "value": 160.89 }, + { "date": "2008-01-18T08:00:00.000Z", "value": 161.36 }, + { "date": "2008-01-22T08:00:00.000Z", "value": 155.64 }, + { "date": "2008-01-23T08:00:00.000Z", "value": 139.07 }, + { "date": "2008-01-24T08:00:00.000Z", "value": 135.6 }, + { "date": "2008-01-25T08:00:00.000Z", "value": 130.01 }, + { "date": "2008-01-28T08:00:00.000Z", "value": 130.01 }, + { "date": "2008-01-29T08:00:00.000Z", "value": 131.54 }, + { "date": "2008-01-30T08:00:00.000Z", "value": 132.18 }, + { "date": "2008-01-31T08:00:00.000Z", "value": 135.36 }, + { "date": "2008-02-01T08:00:00.000Z", "value": 133.75 }, + { "date": "2008-02-04T08:00:00.000Z", "value": 131.65 }, + { "date": "2008-02-05T08:00:00.000Z", "value": 129.36 }, + { "date": "2008-02-06T08:00:00.000Z", "value": 122 }, + { "date": "2008-02-07T08:00:00.000Z", "value": 121.24 }, + { "date": "2008-02-08T08:00:00.000Z", "value": 125.48 }, + { "date": "2008-02-11T08:00:00.000Z", "value": 129.45 }, + { "date": "2008-02-12T08:00:00.000Z", "value": 124.86 }, + { "date": "2008-02-13T08:00:00.000Z", "value": 129.4 }, + { "date": "2008-02-14T08:00:00.000Z", "value": 127.46 }, + { "date": "2008-02-15T08:00:00.000Z", "value": 124.63 }, + { "date": "2008-02-19T08:00:00.000Z", "value": 122.18 }, + { "date": "2008-02-20T08:00:00.000Z", "value": 123.82 }, + { "date": "2008-02-21T08:00:00.000Z", "value": 121.54 }, + { "date": "2008-02-22T08:00:00.000Z", "value": 119.46 }, + { "date": "2008-02-25T08:00:00.000Z", "value": 119.74 }, + { "date": "2008-02-26T08:00:00.000Z", "value": 119.15 }, + { "date": "2008-02-27T08:00:00.000Z", "value": 122.96 }, + { "date": "2008-02-28T08:00:00.000Z", "value": 129.91 }, + { "date": "2008-02-29T08:00:00.000Z", "value": 125.02 }, + { "date": "2008-03-03T08:00:00.000Z", "value": 121.73 }, + { "date": "2008-03-04T08:00:00.000Z", "value": 124.62 }, + { "date": "2008-03-05T08:00:00.000Z", "value": 124.49 }, + { "date": "2008-03-06T08:00:00.000Z", "value": 120.93 }, + { "date": "2008-03-07T08:00:00.000Z", "value": 122.25 }, + { "date": "2008-03-10T07:00:00.000Z", "value": 119.69 }, + { "date": "2008-03-11T07:00:00.000Z", "value": 127.35 }, + { "date": "2008-03-12T07:00:00.000Z", "value": 126.03 }, + { "date": "2008-03-13T07:00:00.000Z", "value": 127.94 }, + { "date": "2008-03-14T07:00:00.000Z", "value": 126.61 }, + { "date": "2008-03-17T07:00:00.000Z", "value": 126.73 }, + { "date": "2008-03-18T07:00:00.000Z", "value": 132.82 }, + { "date": "2008-03-19T07:00:00.000Z", "value": 129.67 }, + { "date": "2008-03-20T07:00:00.000Z", "value": 133.27 }, + { "date": "2008-03-24T07:00:00.000Z", "value": 139.53 }, + { "date": "2008-03-25T07:00:00.000Z", "value": 140.98 }, + { "date": "2008-03-26T07:00:00.000Z", "value": 145.06 }, + { "date": "2008-03-27T07:00:00.000Z", "value": 140.25 }, + { "date": "2008-03-28T07:00:00.000Z", "value": 143.01 }, + { "date": "2008-03-31T07:00:00.000Z", "value": 143.5 }, + { "date": "2008-04-01T07:00:00.000Z", "value": 149.53 }, + { "date": "2008-04-02T07:00:00.000Z", "value": 147.49 }, + { "date": "2008-04-03T07:00:00.000Z", "value": 151.61 }, + { "date": "2008-04-04T07:00:00.000Z", "value": 153.08 }, + { "date": "2008-04-07T07:00:00.000Z", "value": 155.89 }, + { "date": "2008-04-08T07:00:00.000Z", "value": 152.84 }, + { "date": "2008-04-09T07:00:00.000Z", "value": 151.44 }, + { "date": "2008-04-10T07:00:00.000Z", "value": 154.55 }, + { "date": "2008-04-11T07:00:00.000Z", "value": 147.14 }, + { "date": "2008-04-14T07:00:00.000Z", "value": 147.78 }, + { "date": "2008-04-15T07:00:00.000Z", "value": 148.38 }, + { "date": "2008-04-16T07:00:00.000Z", "value": 153.7 }, + { "date": "2008-04-17T07:00:00.000Z", "value": 154.49 }, + { "date": "2008-04-18T07:00:00.000Z", "value": 161.04 }, + { "date": "2008-04-21T07:00:00.000Z", "value": 168.16 }, + { "date": "2008-04-22T07:00:00.000Z", "value": 160.2 }, + { "date": "2008-04-23T07:00:00.000Z", "value": 162.89 }, + { "date": "2008-04-24T07:00:00.000Z", "value": 168.94 }, + { "date": "2008-04-25T07:00:00.000Z", "value": 169.73 }, + { "date": "2008-04-28T07:00:00.000Z", "value": 172.24 }, + { "date": "2008-04-29T07:00:00.000Z", "value": 175.05 }, + { "date": "2008-04-30T07:00:00.000Z", "value": 173.95 }, + { "date": "2008-05-01T07:00:00.000Z", "value": 180 }, + { "date": "2008-05-02T07:00:00.000Z", "value": 180.94 }, + { "date": "2008-05-05T07:00:00.000Z", "value": 184.73 }, + { "date": "2008-05-06T07:00:00.000Z", "value": 186.66 }, + { "date": "2008-05-07T07:00:00.000Z", "value": 182.59 }, + { "date": "2008-05-08T07:00:00.000Z", "value": 185.06 }, + { "date": "2008-05-09T07:00:00.000Z", "value": 183.45 }, + { "date": "2008-05-12T07:00:00.000Z", "value": 188.16 }, + { "date": "2008-05-13T07:00:00.000Z", "value": 189.96 }, + { "date": "2008-05-14T07:00:00.000Z", "value": 186.26 }, + { "date": "2008-05-15T07:00:00.000Z", "value": 189.73 }, + { "date": "2008-05-16T07:00:00.000Z", "value": 187.62 }, + { "date": "2008-05-19T07:00:00.000Z", "value": 183.6 }, + { "date": "2008-05-20T07:00:00.000Z", "value": 185.9 }, + { "date": "2008-05-21T07:00:00.000Z", "value": 178.19 }, + { "date": "2008-05-22T07:00:00.000Z", "value": 177.05 }, + { "date": "2008-05-23T07:00:00.000Z", "value": 181.17 }, + { "date": "2008-05-27T07:00:00.000Z", "value": 186.43 }, + { "date": "2008-05-28T07:00:00.000Z", "value": 187.01 }, + { "date": "2008-05-29T07:00:00.000Z", "value": 186.69 }, + { "date": "2008-05-30T07:00:00.000Z", "value": 188.75 }, + { "date": "2008-06-02T07:00:00.000Z", "value": 186.1 }, + { "date": "2008-06-03T07:00:00.000Z", "value": 185.37 }, + { "date": "2008-06-04T07:00:00.000Z", "value": 185.19 }, + { "date": "2008-06-05T07:00:00.000Z", "value": 189.43 }, + { "date": "2008-06-06T07:00:00.000Z", "value": 185.64 }, + { "date": "2008-06-09T07:00:00.000Z", "value": 181.61 }, + { "date": "2008-06-10T07:00:00.000Z", "value": 185.64 }, + { "date": "2008-06-11T07:00:00.000Z", "value": 180.81 }, + { "date": "2008-06-12T07:00:00.000Z", "value": 173.26 }, + { "date": "2008-06-13T07:00:00.000Z", "value": 172.37 }, + { "date": "2008-06-16T07:00:00.000Z", "value": 176.84 }, + { "date": "2008-06-17T07:00:00.000Z", "value": 181.43 }, + { "date": "2008-06-18T07:00:00.000Z", "value": 178.75 }, + { "date": "2008-06-19T07:00:00.000Z", "value": 180.9 }, + { "date": "2008-06-20T07:00:00.000Z", "value": 175.27 }, + { "date": "2008-06-23T07:00:00.000Z", "value": 173.16 }, + { "date": "2008-06-24T07:00:00.000Z", "value": 173.25 }, + { "date": "2008-06-25T07:00:00.000Z", "value": 177.39 }, + { "date": "2008-06-26T07:00:00.000Z", "value": 168.26 }, + { "date": "2008-06-27T07:00:00.000Z", "value": 170.09 }, + { "date": "2008-06-30T07:00:00.000Z", "value": 167.44 }, + { "date": "2008-07-01T07:00:00.000Z", "value": 174.68 }, + { "date": "2008-07-02T07:00:00.000Z", "value": 168.18 }, + { "date": "2008-07-03T07:00:00.000Z", "value": 170.12 }, + { "date": "2008-07-07T07:00:00.000Z", "value": 175.16 }, + { "date": "2008-07-08T07:00:00.000Z", "value": 179.55 }, + { "date": "2008-07-09T07:00:00.000Z", "value": 174.25 }, + { "date": "2008-07-10T07:00:00.000Z", "value": 176.63 }, + { "date": "2008-07-11T07:00:00.000Z", "value": 172.58 }, + { "date": "2008-07-14T07:00:00.000Z", "value": 173.88 }, + { "date": "2008-07-15T07:00:00.000Z", "value": 169.64 }, + { "date": "2008-07-16T07:00:00.000Z", "value": 172.81 }, + { "date": "2008-07-17T07:00:00.000Z", "value": 171.81 }, + { "date": "2008-07-18T07:00:00.000Z", "value": 165.15 }, + { "date": "2008-07-21T07:00:00.000Z", "value": 166.29 }, + { "date": "2008-07-22T07:00:00.000Z", "value": 162.02 }, + { "date": "2008-07-23T07:00:00.000Z", "value": 166.26 }, + { "date": "2008-07-24T07:00:00.000Z", "value": 159.03 }, + { "date": "2008-07-25T07:00:00.000Z", "value": 162.12 }, + { "date": "2008-07-28T07:00:00.000Z", "value": 154.4 }, + { "date": "2008-07-29T07:00:00.000Z", "value": 157.08 }, + { "date": "2008-07-30T07:00:00.000Z", "value": 159.88 }, + { "date": "2008-07-31T07:00:00.000Z", "value": 158.95 }, + { "date": "2008-08-01T07:00:00.000Z", "value": 156.66 }, + { "date": "2008-08-04T07:00:00.000Z", "value": 153.23 }, + { "date": "2008-08-05T07:00:00.000Z", "value": 160.64 }, + { "date": "2008-08-06T07:00:00.000Z", "value": 164.19 }, + { "date": "2008-08-07T07:00:00.000Z", "value": 163.57 }, + { "date": "2008-08-08T07:00:00.000Z", "value": 169.55 }, + { "date": "2008-08-11T07:00:00.000Z", "value": 173.56 }, + { "date": "2008-08-12T07:00:00.000Z", "value": 176.73 }, + { "date": "2008-08-13T07:00:00.000Z", "value": 179.3 }, + { "date": "2008-08-14T07:00:00.000Z", "value": 179.32 }, + { "date": "2008-08-15T07:00:00.000Z", "value": 175.74 }, + { "date": "2008-08-18T07:00:00.000Z", "value": 175.39 }, + { "date": "2008-08-19T07:00:00.000Z", "value": 173.53 }, + { "date": "2008-08-20T07:00:00.000Z", "value": 175.84 }, + { "date": "2008-08-21T07:00:00.000Z", "value": 174.29 }, + { "date": "2008-08-22T07:00:00.000Z", "value": 176.79 }, + { "date": "2008-08-25T07:00:00.000Z", "value": 172.55 }, + { "date": "2008-08-26T07:00:00.000Z", "value": 173.64 }, + { "date": "2008-08-27T07:00:00.000Z", "value": 174.67 }, + { "date": "2008-08-28T07:00:00.000Z", "value": 173.74 }, + { "date": "2008-08-29T07:00:00.000Z", "value": 169.53 }, + { "date": "2008-09-02T07:00:00.000Z", "value": 166.19 }, + { "date": "2008-09-03T07:00:00.000Z", "value": 166.96 }, + { "date": "2008-09-04T07:00:00.000Z", "value": 161.22 }, + { "date": "2008-09-05T07:00:00.000Z", "value": 160.18 }, + { "date": "2008-09-08T07:00:00.000Z", "value": 157.92 }, + { "date": "2008-09-09T07:00:00.000Z", "value": 151.68 }, + { "date": "2008-09-10T07:00:00.000Z", "value": 151.61 }, + { "date": "2008-09-11T07:00:00.000Z", "value": 152.65 }, + { "date": "2008-09-12T07:00:00.000Z", "value": 148.94 }, + { "date": "2008-09-15T07:00:00.000Z", "value": 140.36 }, + { "date": "2008-09-16T07:00:00.000Z", "value": 139.88 }, + { "date": "2008-09-17T07:00:00.000Z", "value": 127.83 }, + { "date": "2008-09-18T07:00:00.000Z", "value": 134.09 }, + { "date": "2008-09-19T07:00:00.000Z", "value": 140.91 }, + { "date": "2008-09-22T07:00:00.000Z", "value": 131.05 }, + { "date": "2008-09-23T07:00:00.000Z", "value": 126.84 }, + { "date": "2008-09-24T07:00:00.000Z", "value": 128.71 }, + { "date": "2008-09-25T07:00:00.000Z", "value": 131.93 }, + { "date": "2008-09-26T07:00:00.000Z", "value": 128.24 }, + { "date": "2008-09-29T07:00:00.000Z", "value": 105.26 }, + { "date": "2008-09-30T07:00:00.000Z", "value": 113.66 }, + { "date": "2008-10-01T07:00:00.000Z", "value": 109.12 }, + { "date": "2008-10-02T07:00:00.000Z", "value": 100.1 }, + { "date": "2008-10-03T07:00:00.000Z", "value": 97.07 }, + { "date": "2008-10-06T07:00:00.000Z", "value": 98.14 }, + { "date": "2008-10-07T07:00:00.000Z", "value": 89.16 }, + { "date": "2008-10-08T07:00:00.000Z", "value": 89.79 }, + { "date": "2008-10-09T07:00:00.000Z", "value": 88.74 }, + { "date": "2008-10-10T07:00:00.000Z", "value": 96.8 }, + { "date": "2008-10-13T07:00:00.000Z", "value": 110.26 }, + { "date": "2008-10-14T07:00:00.000Z", "value": 104.08 }, + { "date": "2008-10-15T07:00:00.000Z", "value": 97.95 }, + { "date": "2008-10-16T07:00:00.000Z", "value": 101.89 }, + { "date": "2008-10-17T07:00:00.000Z", "value": 97.4 }, + { "date": "2008-10-20T07:00:00.000Z", "value": 98.44 }, + { "date": "2008-10-21T07:00:00.000Z", "value": 91.49 }, + { "date": "2008-10-22T07:00:00.000Z", "value": 96.87 }, + { "date": "2008-10-23T07:00:00.000Z", "value": 98.23 }, + { "date": "2008-10-24T07:00:00.000Z", "value": 96.38 }, + { "date": "2008-10-27T07:00:00.000Z", "value": 92.09 }, + { "date": "2008-10-28T07:00:00.000Z", "value": 99.91 }, + { "date": "2008-10-29T07:00:00.000Z", "value": 104.55 }, + { "date": "2008-10-30T07:00:00.000Z", "value": 111.04 }, + { "date": "2008-10-31T07:00:00.000Z", "value": 107.59 }, + { "date": "2008-11-03T08:00:00.000Z", "value": 106.96 }, + { "date": "2008-11-04T08:00:00.000Z", "value": 110.99 }, + { "date": "2008-11-05T08:00:00.000Z", "value": 103.3 }, + { "date": "2008-11-06T08:00:00.000Z", "value": 99.1 }, + { "date": "2008-11-07T08:00:00.000Z", "value": 98.24 }, + { "date": "2008-11-10T08:00:00.000Z", "value": 95.88 }, + { "date": "2008-11-11T08:00:00.000Z", "value": 94.77 }, + { "date": "2008-11-12T08:00:00.000Z", "value": 90.12 }, + { "date": "2008-11-13T08:00:00.000Z", "value": 96.44 }, + { "date": "2008-11-14T08:00:00.000Z", "value": 90.24 }, + { "date": "2008-11-17T08:00:00.000Z", "value": 88.14 }, + { "date": "2008-11-18T08:00:00.000Z", "value": 89.91 }, + { "date": "2008-11-19T08:00:00.000Z", "value": 86.29 }, + { "date": "2008-11-20T08:00:00.000Z", "value": 80.49 }, + { "date": "2008-11-21T08:00:00.000Z", "value": 82.58 }, + { "date": "2008-11-24T08:00:00.000Z", "value": 92.95 }, + { "date": "2008-11-25T08:00:00.000Z", "value": 90.8 }, + { "date": "2008-11-26T08:00:00.000Z", "value": 95 }, + { "date": "2008-11-27T08:00:00.000Z", "value": 95 }, + { "date": "2008-11-28T08:00:00.000Z", "value": 92.67 }, + { "date": "2008-12-01T08:00:00.000Z", "value": 88.93 }, + { "date": "2008-12-02T08:00:00.000Z", "value": 92.47 }, + { "date": "2008-12-03T08:00:00.000Z", "value": 95.9 }, + { "date": "2008-12-04T08:00:00.000Z", "value": 91.41 }, + { "date": "2008-12-05T08:00:00.000Z", "value": 94 }, + { "date": "2008-12-08T08:00:00.000Z", "value": 99.72 }, + { "date": "2008-12-09T08:00:00.000Z", "value": 100.06 }, + { "date": "2008-12-10T08:00:00.000Z", "value": 98.21 }, + { "date": "2008-12-11T08:00:00.000Z", "value": 95 }, + { "date": "2008-12-12T08:00:00.000Z", "value": 98.27 }, + { "date": "2008-12-15T08:00:00.000Z", "value": 94.75 }, + { "date": "2008-12-16T08:00:00.000Z", "value": 95.43 }, + { "date": "2008-12-17T08:00:00.000Z", "value": 89.16 }, + { "date": "2008-12-18T08:00:00.000Z", "value": 89.43 }, + { "date": "2008-12-19T08:00:00.000Z", "value": 90 }, + { "date": "2008-12-22T08:00:00.000Z", "value": 85.74 }, + { "date": "2008-12-23T08:00:00.000Z", "value": 86.38 }, + { "date": "2008-12-24T08:00:00.000Z", "value": 85.04 }, + { "date": "2008-12-25T08:00:00.000Z", "value": 85.04 }, + { "date": "2008-12-26T08:00:00.000Z", "value": 85.81 }, + { "date": "2008-12-29T08:00:00.000Z", "value": 86.61 }, + { "date": "2008-12-30T08:00:00.000Z", "value": 86.29 }, + { "date": "2008-12-31T08:00:00.000Z", "value": 85.35 }, + { "date": "2009-01-01T08:00:00.000Z", "value": 85.35 }, + { "date": "2009-01-02T08:00:00.000Z", "value": 90.75 }, + { "date": "2009-01-05T08:00:00.000Z", "value": 94.58 }, + { "date": "2009-01-06T08:00:00.000Z", "value": 93.02 }, + { "date": "2009-01-07T08:00:00.000Z", "value": 91.01 }, + { "date": "2009-01-08T08:00:00.000Z", "value": 92.7 }, + { "date": "2009-01-09T08:00:00.000Z", "value": 90.58 }, + { "date": "2009-01-12T08:00:00.000Z", "value": 88.66 }, + { "date": "2009-01-13T08:00:00.000Z", "value": 87.71 }, + { "date": "2009-01-14T08:00:00.000Z", "value": 85.33 }, + { "date": "2009-01-15T08:00:00.000Z", "value": 83.38 }, + { "date": "2009-01-16T08:00:00.000Z", "value": 82.33 }, + { "date": "2009-01-20T08:00:00.000Z", "value": 78.2 }, + { "date": "2009-01-21T08:00:00.000Z", "value": 82.83 }, + { "date": "2009-01-22T08:00:00.000Z", "value": 88.36 }, + { "date": "2009-01-23T08:00:00.000Z", "value": 88.36 }, + { "date": "2009-01-26T08:00:00.000Z", "value": 89.64 }, + { "date": "2009-01-27T08:00:00.000Z", "value": 90.73 }, + { "date": "2009-01-28T08:00:00.000Z", "value": 94.2 }, + { "date": "2009-01-29T08:00:00.000Z", "value": 93 }, + { "date": "2009-01-30T08:00:00.000Z", "value": 90.13 }, + { "date": "2009-02-02T08:00:00.000Z", "value": 91.51 }, + { "date": "2009-02-03T08:00:00.000Z", "value": 92.98 }, + { "date": "2009-02-04T08:00:00.000Z", "value": 93.55 }, + { "date": "2009-02-05T08:00:00.000Z", "value": 96.46 }, + { "date": "2009-02-06T08:00:00.000Z", "value": 99.72 }, + { "date": "2009-02-09T08:00:00.000Z", "value": 102.51 }, + { "date": "2009-02-10T08:00:00.000Z", "value": 97.83 }, + { "date": "2009-02-11T08:00:00.000Z", "value": 96.82 }, + { "date": "2009-02-12T08:00:00.000Z", "value": 99.27 }, + { "date": "2009-02-13T08:00:00.000Z", "value": 99.16 }, + { "date": "2009-02-17T08:00:00.000Z", "value": 94.53 }, + { "date": "2009-02-18T08:00:00.000Z", "value": 94.37 }, + { "date": "2009-02-19T08:00:00.000Z", "value": 90.64 }, + { "date": "2009-02-20T08:00:00.000Z", "value": 91.2 }, + { "date": "2009-02-23T08:00:00.000Z", "value": 86.95 }, + { "date": "2009-02-24T08:00:00.000Z", "value": 90.25 }, + { "date": "2009-02-25T08:00:00.000Z", "value": 91.16 }, + { "date": "2009-02-26T08:00:00.000Z", "value": 89.19 }, + { "date": "2009-02-27T08:00:00.000Z", "value": 89.31 }, + { "date": "2009-03-02T08:00:00.000Z", "value": 87.94 }, + { "date": "2009-03-03T08:00:00.000Z", "value": 88.37 }, + { "date": "2009-03-04T08:00:00.000Z", "value": 91.17 }, + { "date": "2009-03-05T08:00:00.000Z", "value": 88.84 }, + { "date": "2009-03-06T08:00:00.000Z", "value": 85.3 }, + { "date": "2009-03-09T07:00:00.000Z", "value": 83.11 }, + { "date": "2009-03-10T07:00:00.000Z", "value": 88.63 }, + { "date": "2009-03-11T07:00:00.000Z", "value": 92.68 }, + { "date": "2009-03-12T07:00:00.000Z", "value": 96.35 }, + { "date": "2009-03-13T07:00:00.000Z", "value": 95.93 }, + { "date": "2009-03-16T07:00:00.000Z", "value": 95.42 }, + { "date": "2009-03-17T07:00:00.000Z", "value": 99.66 }, + { "date": "2009-03-18T07:00:00.000Z", "value": 101.52 }, + { "date": "2009-03-19T07:00:00.000Z", "value": 101.62 }, + { "date": "2009-03-20T07:00:00.000Z", "value": 101.59 }, + { "date": "2009-03-23T07:00:00.000Z", "value": 107.66 }, + { "date": "2009-03-24T07:00:00.000Z", "value": 106.5 }, + { "date": "2009-03-25T07:00:00.000Z", "value": 106.49 }, + { "date": "2009-03-26T07:00:00.000Z", "value": 109.87 }, + { "date": "2009-03-27T07:00:00.000Z", "value": 106.85 }, + { "date": "2009-03-30T07:00:00.000Z", "value": 104.49 }, + { "date": "2009-03-31T07:00:00.000Z", "value": 105.12 }, + { "date": "2009-04-01T07:00:00.000Z", "value": 108.69 }, + { "date": "2009-04-02T07:00:00.000Z", "value": 112.71 }, + { "date": "2009-04-03T07:00:00.000Z", "value": 115.99 }, + { "date": "2009-04-06T07:00:00.000Z", "value": 118.45 }, + { "date": "2009-04-07T07:00:00.000Z", "value": 115 }, + { "date": "2009-04-08T07:00:00.000Z", "value": 116.32 }, + { "date": "2009-04-09T07:00:00.000Z", "value": 119.57 }, + { "date": "2009-04-10T07:00:00.000Z", "value": 119.57 }, + { "date": "2009-04-13T07:00:00.000Z", "value": 120.22 }, + { "date": "2009-04-14T07:00:00.000Z", "value": 118.31 }, + { "date": "2009-04-15T07:00:00.000Z", "value": 117.64 }, + { "date": "2009-04-16T07:00:00.000Z", "value": 121.45 }, + { "date": "2009-04-17T07:00:00.000Z", "value": 123.42 }, + { "date": "2009-04-20T07:00:00.000Z", "value": 120.5 }, + { "date": "2009-04-21T07:00:00.000Z", "value": 121.76 }, + { "date": "2009-04-22T07:00:00.000Z", "value": 121.51 }, + { "date": "2009-04-23T07:00:00.000Z", "value": 125.4 }, + { "date": "2009-04-24T07:00:00.000Z", "value": 123.9 }, + { "date": "2009-04-27T07:00:00.000Z", "value": 124.73 }, + { "date": "2009-04-28T07:00:00.000Z", "value": 123.9 }, + { "date": "2009-04-29T07:00:00.000Z", "value": 125.14 }, + { "date": "2009-04-30T07:00:00.000Z", "value": 125.83 }, + { "date": "2009-05-01T07:00:00.000Z", "value": 127.24 }, + { "date": "2009-05-04T07:00:00.000Z", "value": 132.07 }, + { "date": "2009-05-05T07:00:00.000Z", "value": 132.71 }, + { "date": "2009-05-06T07:00:00.000Z", "value": 132.5 }, + { "date": "2009-05-07T07:00:00.000Z", "value": 129.06 }, + { "date": "2009-05-08T07:00:00.000Z", "value": 129.19 }, + { "date": "2009-05-11T07:00:00.000Z", "value": 129.57 }, + { "date": "2009-05-12T07:00:00.000Z", "value": 124.42 }, + { "date": "2009-05-13T07:00:00.000Z", "value": 119.49 }, + { "date": "2009-05-14T07:00:00.000Z", "value": 122.95 }, + { "date": "2009-05-15T07:00:00.000Z", "value": 122.42 }, + { "date": "2009-05-18T07:00:00.000Z", "value": 126.65 }, + { "date": "2009-05-19T07:00:00.000Z", "value": 127.45 }, + { "date": "2009-05-20T07:00:00.000Z", "value": 125.87 }, + { "date": "2009-05-21T07:00:00.000Z", "value": 124.18 }, + { "date": "2009-05-22T07:00:00.000Z", "value": 122.5 }, + { "date": "2009-05-26T07:00:00.000Z", "value": 130.78 }, + { "date": "2009-05-27T07:00:00.000Z", "value": 133.05 }, + { "date": "2009-05-28T07:00:00.000Z", "value": 135.07 }, + { "date": "2009-05-29T07:00:00.000Z", "value": 135.81 }, + { "date": "2009-06-01T07:00:00.000Z", "value": 139.35 }, + { "date": "2009-06-02T07:00:00.000Z", "value": 139.49 }, + { "date": "2009-06-03T07:00:00.000Z", "value": 140.95 }, + { "date": "2009-06-04T07:00:00.000Z", "value": 143.74 }, + { "date": "2009-06-05T07:00:00.000Z", "value": 144.67 }, + { "date": "2009-06-08T07:00:00.000Z", "value": 143.85 }, + { "date": "2009-06-09T07:00:00.000Z", "value": 142.72 }, + { "date": "2009-06-10T07:00:00.000Z", "value": 140.25 }, + { "date": "2009-06-11T07:00:00.000Z", "value": 139.95 }, + { "date": "2009-06-12T07:00:00.000Z", "value": 136.97 }, + { "date": "2009-06-15T07:00:00.000Z", "value": 136.09 }, + { "date": "2009-06-16T07:00:00.000Z", "value": 136.35 }, + { "date": "2009-06-17T07:00:00.000Z", "value": 135.58 }, + { "date": "2009-06-18T07:00:00.000Z", "value": 135.88 }, + { "date": "2009-06-19T07:00:00.000Z", "value": 139.48 }, + { "date": "2009-06-22T07:00:00.000Z", "value": 137.37 }, + { "date": "2009-06-23T07:00:00.000Z", "value": 134.01 }, + { "date": "2009-06-24T07:00:00.000Z", "value": 136.22 }, + { "date": "2009-06-25T07:00:00.000Z", "value": 139.86 }, + { "date": "2009-06-26T07:00:00.000Z", "value": 142.44 }, + { "date": "2009-06-29T07:00:00.000Z", "value": 141.97 }, + { "date": "2009-06-30T07:00:00.000Z", "value": 142.43 }, + { "date": "2009-07-01T07:00:00.000Z", "value": 142.83 }, + { "date": "2009-07-02T07:00:00.000Z", "value": 140.02 }, + { "date": "2009-07-03T07:00:00.000Z", "value": 140.02 }, + { "date": "2009-07-06T07:00:00.000Z", "value": 138.61 }, + { "date": "2009-07-07T07:00:00.000Z", "value": 135.4 }, + { "date": "2009-07-08T07:00:00.000Z", "value": 137.22 }, + { "date": "2009-07-09T07:00:00.000Z", "value": 136.36 }, + { "date": "2009-07-10T07:00:00.000Z", "value": 138.52 }, + { "date": "2009-07-13T07:00:00.000Z", "value": 142.34 }, + { "date": "2009-07-14T07:00:00.000Z", "value": 142.27 }, + { "date": "2009-07-15T07:00:00.000Z", "value": 146.88 }, + { "date": "2009-07-16T07:00:00.000Z", "value": 147.52 }, + { "date": "2009-07-17T07:00:00.000Z", "value": 151.75 }, + { "date": "2009-07-20T07:00:00.000Z", "value": 152.91 }, + { "date": "2009-07-21T07:00:00.000Z", "value": 151.51 }, + { "date": "2009-07-22T07:00:00.000Z", "value": 156.74 }, + { "date": "2009-07-23T07:00:00.000Z", "value": 157.82 }, + { "date": "2009-07-24T07:00:00.000Z", "value": 159.99 }, + { "date": "2009-07-27T07:00:00.000Z", "value": 160.1 }, + { "date": "2009-07-28T07:00:00.000Z", "value": 160 }, + { "date": "2009-07-29T07:00:00.000Z", "value": 160.03 }, + { "date": "2009-07-30T07:00:00.000Z", "value": 162.79 }, + { "date": "2009-07-31T07:00:00.000Z", "value": 163.39 }, + { "date": "2009-08-03T07:00:00.000Z", "value": 166.43 }, + { "date": "2009-08-04T07:00:00.000Z", "value": 165.55 }, + { "date": "2009-08-05T07:00:00.000Z", "value": 165.11 }, + { "date": "2009-08-06T07:00:00.000Z", "value": 163.91 }, + { "date": "2009-08-07T07:00:00.000Z", "value": 165.51 }, + { "date": "2009-08-10T07:00:00.000Z", "value": 164.72 }, + { "date": "2009-08-12T07:00:00.000Z", "value": 165.31 }, + { "date": "2009-08-13T07:00:00.000Z", "value": 168.42 }, + { "date": "2009-08-14T07:00:00.000Z", "value": 166.78 }, + { "date": "2009-08-17T07:00:00.000Z", "value": 159.59 }, + { "date": "2009-08-18T07:00:00.000Z", "value": 164 }, + { "date": "2009-08-19T07:00:00.000Z", "value": 164.6 }, + { "date": "2009-08-20T07:00:00.000Z", "value": 166.33 }, + { "date": "2009-08-21T07:00:00.000Z", "value": 169.22 }, + { "date": "2009-08-24T07:00:00.000Z", "value": 169.06 }, + { "date": "2009-08-25T07:00:00.000Z", "value": 169.4 }, + { "date": "2009-08-26T07:00:00.000Z", "value": 167.41 }, + { "date": "2009-08-27T07:00:00.000Z", "value": 169.45 }, + { "date": "2009-08-28T07:00:00.000Z", "value": 170.05 }, + { "date": "2009-08-31T07:00:00.000Z", "value": 168.21 }, + { "date": "2009-09-01T07:00:00.000Z", "value": 165.3 }, + { "date": "2009-09-02T07:00:00.000Z", "value": 165.18 }, + { "date": "2009-09-03T07:00:00.000Z", "value": 166.55 }, + { "date": "2009-09-04T07:00:00.000Z", "value": 170.31 }, + { "date": "2009-09-08T07:00:00.000Z", "value": 172.93 }, + { "date": "2009-09-09T07:00:00.000Z", "value": 171.14 }, + { "date": "2009-09-10T07:00:00.000Z", "value": 172.56 }, + { "date": "2009-09-11T07:00:00.000Z", "value": 172.16 }, + { "date": "2009-09-14T07:00:00.000Z", "value": 173.72 }, + { "date": "2009-09-15T07:00:00.000Z", "value": 175.16 }, + { "date": "2009-09-16T07:00:00.000Z", "value": 181.87 }, + { "date": "2009-09-17T07:00:00.000Z", "value": 184.55 }, + { "date": "2009-09-18T07:00:00.000Z", "value": 185.02 }, + { "date": "2009-09-21T07:00:00.000Z", "value": 184.02 }, + { "date": "2009-09-22T07:00:00.000Z", "value": 184.48 }, + { "date": "2009-09-23T07:00:00.000Z", "value": 185.5 }, + { "date": "2009-09-24T07:00:00.000Z", "value": 183.82 }, + { "date": "2009-09-25T07:00:00.000Z", "value": 182.37 }, + { "date": "2009-09-28T07:00:00.000Z", "value": 186.15 }, + { "date": "2009-09-29T07:00:00.000Z", "value": 185.38 }, + { "date": "2009-09-30T07:00:00.000Z", "value": 185.35 }, + { "date": "2009-10-01T07:00:00.000Z", "value": 180.86 }, + { "date": "2009-10-02T07:00:00.000Z", "value": 184.9 }, + { "date": "2009-10-05T07:00:00.000Z", "value": 186.02 }, + { "date": "2009-10-06T07:00:00.000Z", "value": 190.01 }, + { "date": "2009-10-07T07:00:00.000Z", "value": 190.25 }, + { "date": "2009-10-08T07:00:00.000Z", "value": 189.27 }, + { "date": "2009-10-09T07:00:00.000Z", "value": 190.47 }, + { "date": "2009-10-12T07:00:00.000Z", "value": 190.81 }, + { "date": "2009-10-13T07:00:00.000Z", "value": 190.02 }, + { "date": "2009-10-14T07:00:00.000Z", "value": 191.29 }, + { "date": "2009-10-15T07:00:00.000Z", "value": 190.56 }, + { "date": "2009-10-16T07:00:00.000Z", "value": 188.05 }, + { "date": "2009-10-19T07:00:00.000Z", "value": 189.86 }, + { "date": "2009-10-20T07:00:00.000Z", "value": 198.76 }, + { "date": "2009-10-21T07:00:00.000Z", "value": 204.92 }, + { "date": "2009-10-22T07:00:00.000Z", "value": 205.2 }, + { "date": "2009-10-23T07:00:00.000Z", "value": 203.94 }, + { "date": "2009-10-26T07:00:00.000Z", "value": 202.48 }, + { "date": "2009-10-27T07:00:00.000Z", "value": 197.37 }, + { "date": "2009-10-28T07:00:00.000Z", "value": 192.4 }, + { "date": "2009-10-29T07:00:00.000Z", "value": 196.35 }, + { "date": "2009-10-30T07:00:00.000Z", "value": 188.5 }, + { "date": "2009-11-02T08:00:00.000Z", "value": 189.31 }, + { "date": "2009-11-03T08:00:00.000Z", "value": 188.75 }, + { "date": "2009-11-04T08:00:00.000Z", "value": 190.81 }, + { "date": "2009-11-05T08:00:00.000Z", "value": 194.03 }, + { "date": "2009-11-06T08:00:00.000Z", "value": 194.34 }, + { "date": "2009-11-09T08:00:00.000Z", "value": 201.46 }, + { "date": "2009-11-10T08:00:00.000Z", "value": 202.98 }, + { "date": "2009-11-11T08:00:00.000Z", "value": 203.25 }, + { "date": "2009-11-12T08:00:00.000Z", "value": 201.99 }, + { "date": "2009-11-13T08:00:00.000Z", "value": 204.45 }, + { "date": "2009-11-16T08:00:00.000Z", "value": 206.63 }, + { "date": "2009-11-17T08:00:00.000Z", "value": 207 }, + { "date": "2009-11-18T08:00:00.000Z", "value": 205.96 }, + { "date": "2009-11-19T08:00:00.000Z", "value": 200.51 }, + { "date": "2009-11-20T08:00:00.000Z", "value": 199.92 }, + { "date": "2009-11-23T08:00:00.000Z", "value": 205.88 }, + { "date": "2009-11-24T08:00:00.000Z", "value": 204.44 }, + { "date": "2009-11-25T08:00:00.000Z", "value": 204.19 }, + { "date": "2009-11-26T08:00:00.000Z", "value": 204.19 }, + { "date": "2009-11-27T08:00:00.000Z", "value": 200.59 }, + { "date": "2009-11-30T08:00:00.000Z", "value": 199.91 }, + { "date": "2009-12-01T08:00:00.000Z", "value": 196.97 }, + { "date": "2009-12-02T08:00:00.000Z", "value": 196.23 }, + { "date": "2009-12-03T08:00:00.000Z", "value": 196.48 }, + { "date": "2009-12-04T08:00:00.000Z", "value": 193.32 }, + { "date": "2009-12-07T08:00:00.000Z", "value": 188.95 }, + { "date": "2009-12-08T08:00:00.000Z", "value": 189.87 }, + { "date": "2009-12-09T08:00:00.000Z", "value": 197.8 }, + { "date": "2009-12-10T08:00:00.000Z", "value": 196.43 }, + { "date": "2009-12-11T08:00:00.000Z", "value": 194.67 }, + { "date": "2009-12-14T08:00:00.000Z", "value": 196.98 }, + { "date": "2009-12-15T08:00:00.000Z", "value": 194.17 }, + { "date": "2009-12-16T08:00:00.000Z", "value": 195.03 }, + { "date": "2009-12-17T08:00:00.000Z", "value": 191.86 }, + { "date": "2009-12-18T08:00:00.000Z", "value": 195.43 }, + { "date": "2009-12-21T08:00:00.000Z", "value": 198.23 }, + { "date": "2009-12-22T08:00:00.000Z", "value": 200.36 }, + { "date": "2009-12-23T08:00:00.000Z", "value": 202.1 }, + { "date": "2009-12-24T08:00:00.000Z", "value": 209.04 }, + { "date": "2009-12-25T08:00:00.000Z", "value": 209.04 }, + { "date": "2009-12-28T08:00:00.000Z", "value": 211.61 }, + { "date": "2009-12-29T08:00:00.000Z", "value": 209.1 }, + { "date": "2009-12-30T08:00:00.000Z", "value": 211.64 }, + { "date": "2009-12-31T08:00:00.000Z", "value": 210.73 }, + { "date": "2010-01-01T08:00:00.000Z", "value": 210.73 }, + { "date": "2010-01-04T08:00:00.000Z", "value": 214.01 }, + { "date": "2010-01-05T08:00:00.000Z", "value": 214.38 }, + { "date": "2010-01-06T08:00:00.000Z", "value": 210.97 }, + { "date": "2010-01-07T08:00:00.000Z", "value": 210.58 }, + { "date": "2010-01-08T08:00:00.000Z", "value": 211.98 }, + { "date": "2010-01-11T08:00:00.000Z", "value": 210.11 }, + { "date": "2010-01-12T08:00:00.000Z", "value": 207.72 }, + { "date": "2010-01-13T08:00:00.000Z", "value": 210.65 }, + { "date": "2010-01-14T08:00:00.000Z", "value": 209.43 }, + { "date": "2010-01-15T08:00:00.000Z", "value": 205.93 }, + { "date": "2010-01-18T08:00:00.000Z", "value": 205.93 }, + { "date": "2010-01-19T08:00:00.000Z", "value": 215.04 }, + { "date": "2010-01-20T08:00:00.000Z", "value": 211.72 }, + { "date": "2010-01-21T08:00:00.000Z", "value": 208.07 }, + { "date": "2010-01-22T08:00:00.000Z", "value": 197.75 }, + { "date": "2010-01-25T08:00:00.000Z", "value": 203.08 }, + { "date": "2010-01-26T08:00:00.000Z", "value": 205.94 }, + { "date": "2010-01-27T08:00:00.000Z", "value": 207.88 }, + { "date": "2010-01-28T08:00:00.000Z", "value": 199.29 }, + { "date": "2010-01-29T08:00:00.000Z", "value": 192.06 }, + { "date": "2010-02-01T08:00:00.000Z", "value": 194.73 }, + { "date": "2010-02-02T08:00:00.000Z", "value": 195.86 }, + { "date": "2010-02-03T08:00:00.000Z", "value": 199.23 }, + { "date": "2010-02-04T08:00:00.000Z", "value": 192.05 }, + { "date": "2010-02-05T08:00:00.000Z", "value": 195.46 }, + { "date": "2010-02-08T08:00:00.000Z", "value": 194.12 }, + { "date": "2010-02-09T08:00:00.000Z", "value": 196.19 }, + { "date": "2010-02-10T08:00:00.000Z", "value": 195.12 }, + { "date": "2010-02-11T08:00:00.000Z", "value": 198.67 }, + { "date": "2010-02-12T08:00:00.000Z", "value": 200.38 }, + { "date": "2010-02-15T08:00:00.000Z", "value": 200.38 }, + { "date": "2010-02-16T08:00:00.000Z", "value": 203.4 }, + { "date": "2010-02-17T08:00:00.000Z", "value": 202.55 }, + { "date": "2010-02-18T08:00:00.000Z", "value": 202.93 }, + { "date": "2010-02-19T08:00:00.000Z", "value": 201.67 }, + { "date": "2010-02-22T08:00:00.000Z", "value": 200.42 }, + { "date": "2010-02-23T08:00:00.000Z", "value": 197.06 }, + { "date": "2010-02-24T08:00:00.000Z", "value": 200.66 }, + { "date": "2010-02-25T08:00:00.000Z", "value": 202 }, + { "date": "2010-02-26T08:00:00.000Z", "value": 204.62 }, + { "date": "2010-03-01T08:00:00.000Z", "value": 208.99 }, + { "date": "2010-03-02T08:00:00.000Z", "value": 208.85 }, + { "date": "2010-03-03T08:00:00.000Z", "value": 209.33 }, + { "date": "2010-03-04T08:00:00.000Z", "value": 210.71 }, + { "date": "2010-03-05T08:00:00.000Z", "value": 218.95 }, + { "date": "2010-03-08T08:00:00.000Z", "value": 219.08 }, + { "date": "2010-03-09T08:00:00.000Z", "value": 223.02 }, + { "date": "2010-03-10T08:00:00.000Z", "value": 224.84 }, + { "date": "2010-03-11T08:00:00.000Z", "value": 225.5 }, + { "date": "2010-03-12T08:00:00.000Z", "value": 226.6 }, + { "date": "2010-03-15T07:00:00.000Z", "value": 223.84 }, + { "date": "2010-03-16T07:00:00.000Z", "value": 224.45 }, + { "date": "2010-03-17T07:00:00.000Z", "value": 224.12 }, + { "date": "2010-03-18T07:00:00.000Z", "value": 224.65 }, + { "date": "2010-03-19T07:00:00.000Z", "value": 222.25 }, + { "date": "2010-03-22T07:00:00.000Z", "value": 224.75 }, + { "date": "2010-03-23T07:00:00.000Z", "value": 228.36 }, + { "date": "2010-03-24T07:00:00.000Z", "value": 229.37 }, + { "date": "2010-03-25T07:00:00.000Z", "value": 226.65 }, + { "date": "2010-03-26T07:00:00.000Z", "value": 230.9 }, + { "date": "2010-03-29T07:00:00.000Z", "value": 232.39 }, + { "date": "2010-03-30T07:00:00.000Z", "value": 235.84 }, + { "date": "2010-03-31T07:00:00.000Z", "value": 235 }, + { "date": "2010-04-01T07:00:00.000Z", "value": 235.97 }, + { "date": "2010-04-02T07:00:00.000Z", "value": 235.97 }, + { "date": "2010-04-05T07:00:00.000Z", "value": 238.49 }, + { "date": "2010-04-06T07:00:00.000Z", "value": 239.54 }, + { "date": "2010-04-07T07:00:00.000Z", "value": 240.6 }, + { "date": "2010-04-08T07:00:00.000Z", "value": 239.95 }, + { "date": "2010-04-09T07:00:00.000Z", "value": 241.79 }, + { "date": "2010-04-12T07:00:00.000Z", "value": 242.29 }, + { "date": "2010-04-13T07:00:00.000Z", "value": 242.43 }, + { "date": "2010-04-14T07:00:00.000Z", "value": 245.69 }, + { "date": "2010-04-15T07:00:00.000Z", "value": 248.92 }, + { "date": "2010-04-16T07:00:00.000Z", "value": 247.4 }, + { "date": "2010-04-19T07:00:00.000Z", "value": 247.07 }, + { "date": "2010-04-20T07:00:00.000Z", "value": 244.59 }, + { "date": "2010-04-21T07:00:00.000Z", "value": 259.22 }, + { "date": "2010-04-22T07:00:00.000Z", "value": 266.47 }, + { "date": "2010-04-23T07:00:00.000Z", "value": 270.83 }, + { "date": "2010-04-26T07:00:00.000Z", "value": 269.5 }, + { "date": "2010-04-27T07:00:00.000Z", "value": 262.04 }, + { "date": "2010-04-28T07:00:00.000Z", "value": 261.6 }, + { "date": "2010-04-29T07:00:00.000Z", "value": 268.64 }, + { "date": "2010-04-30T07:00:00.000Z", "value": 261.09 }, + { "date": "2010-05-03T07:00:00.000Z", "value": 266.35 }, + { "date": "2010-05-04T07:00:00.000Z", "value": 258.68 }, + { "date": "2010-05-05T07:00:00.000Z", "value": 255.98 }, + { "date": "2010-05-06T07:00:00.000Z", "value": 246.25 }, + { "date": "2010-05-07T07:00:00.000Z", "value": 235.86 }, + { "date": "2010-05-10T07:00:00.000Z", "value": 253.99 }, + { "date": "2010-05-11T07:00:00.000Z", "value": 256.52 }, + { "date": "2010-05-12T07:00:00.000Z", "value": 262.09 }, + { "date": "2010-05-13T07:00:00.000Z", "value": 258.36 }, + { "date": "2010-05-14T07:00:00.000Z", "value": 253.82 }, + { "date": "2010-05-17T07:00:00.000Z", "value": 254.22 }, + { "date": "2010-05-18T07:00:00.000Z", "value": 252.36 }, + { "date": "2010-05-19T07:00:00.000Z", "value": 248.34 }, + { "date": "2010-05-20T07:00:00.000Z", "value": 237.76 }, + { "date": "2010-05-21T07:00:00.000Z", "value": 242.32 }, + { "date": "2010-05-24T07:00:00.000Z", "value": 246.76 }, + { "date": "2010-05-25T07:00:00.000Z", "value": 245.22 }, + { "date": "2010-05-26T07:00:00.000Z", "value": 244.11 }, + { "date": "2010-05-27T07:00:00.000Z", "value": 253.35 }, + { "date": "2010-05-28T07:00:00.000Z", "value": 256.88 }, + { "date": "2010-05-31T07:00:00.000Z", "value": 256.88 }, + { "date": "2010-06-01T07:00:00.000Z", "value": 260.83 }, + { "date": "2010-06-02T07:00:00.000Z", "value": 263.95 }, + { "date": "2010-06-03T07:00:00.000Z", "value": 263.12 }, + { "date": "2010-06-04T07:00:00.000Z", "value": 255.96 }, + { "date": "2010-06-07T07:00:00.000Z", "value": 250.94 }, + { "date": "2010-06-08T07:00:00.000Z", "value": 249.33 }, + { "date": "2010-06-09T07:00:00.000Z", "value": 243.2 }, + { "date": "2010-06-10T07:00:00.000Z", "value": 250.51 }, + { "date": "2010-06-11T07:00:00.000Z", "value": 253.51 }, + { "date": "2010-06-14T07:00:00.000Z", "value": 254.28 }, + { "date": "2010-06-15T07:00:00.000Z", "value": 259.69 }, + { "date": "2010-06-16T07:00:00.000Z", "value": 267.25 }, + { "date": "2010-06-17T07:00:00.000Z", "value": 271.87 }, + { "date": "2010-06-18T07:00:00.000Z", "value": 274.07 }, + { "date": "2010-06-21T07:00:00.000Z", "value": 270.17 }, + { "date": "2010-06-22T07:00:00.000Z", "value": 273.85 }, + { "date": "2010-06-23T07:00:00.000Z", "value": 270.97 }, + { "date": "2010-06-24T07:00:00.000Z", "value": 269 }, + { "date": "2010-06-25T07:00:00.000Z", "value": 266.7 }, + { "date": "2010-06-28T07:00:00.000Z", "value": 268.3 }, + { "date": "2010-06-29T07:00:00.000Z", "value": 256.17 }, + { "date": "2010-06-30T07:00:00.000Z", "value": 251.53 }, + { "date": "2010-07-01T07:00:00.000Z", "value": 248.48 }, + { "date": "2010-07-02T07:00:00.000Z", "value": 246.94 }, + { "date": "2010-07-05T07:00:00.000Z", "value": 246.94 }, + { "date": "2010-07-06T07:00:00.000Z", "value": 248.63 }, + { "date": "2010-07-07T07:00:00.000Z", "value": 258.66 }, + { "date": "2010-07-08T07:00:00.000Z", "value": 258.09 }, + { "date": "2010-07-09T07:00:00.000Z", "value": 259.62 }, + { "date": "2010-07-12T07:00:00.000Z", "value": 257.28 }, + { "date": "2010-07-13T07:00:00.000Z", "value": 251.8 }, + { "date": "2010-07-14T07:00:00.000Z", "value": 252.73 }, + { "date": "2010-07-15T07:00:00.000Z", "value": 251.45 }, + { "date": "2010-07-16T07:00:00.000Z", "value": 249.9 }, + { "date": "2010-07-19T07:00:00.000Z", "value": 245.58 }, + { "date": "2010-07-20T07:00:00.000Z", "value": 251.89 }, + { "date": "2010-07-21T07:00:00.000Z", "value": 254.24 }, + { "date": "2010-07-22T07:00:00.000Z", "value": 259.02 }, + { "date": "2010-07-23T07:00:00.000Z", "value": 259.94 }, + { "date": "2010-07-26T07:00:00.000Z", "value": 259.28 }, + { "date": "2010-07-27T07:00:00.000Z", "value": 264.08 }, + { "date": "2010-07-28T07:00:00.000Z", "value": 260.96 }, + { "date": "2010-07-29T07:00:00.000Z", "value": 258.11 }, + { "date": "2010-07-30T07:00:00.000Z", "value": 257.25 }, + { "date": "2010-08-02T07:00:00.000Z", "value": 261.85 }, + { "date": "2010-08-03T07:00:00.000Z", "value": 261.93 }, + { "date": "2010-08-04T07:00:00.000Z", "value": 262.98 }, + { "date": "2010-08-05T07:00:00.000Z", "value": 261.7 }, + { "date": "2010-08-06T07:00:00.000Z", "value": 260.09 }, + { "date": "2010-08-09T07:00:00.000Z", "value": 261.75 }, + { "date": "2010-08-10T07:00:00.000Z", "value": 259.41 }, + { "date": "2010-08-11T07:00:00.000Z", "value": 250.19 }, + { "date": "2010-08-12T07:00:00.000Z", "value": 251.79 }, + { "date": "2010-08-13T07:00:00.000Z", "value": 249.1 }, + { "date": "2010-08-16T07:00:00.000Z", "value": 247.64 }, + { "date": "2010-08-17T07:00:00.000Z", "value": 251.97 }, + { "date": "2010-08-18T07:00:00.000Z", "value": 253.07 }, + { "date": "2010-08-19T07:00:00.000Z", "value": 249.88 }, + { "date": "2010-08-20T07:00:00.000Z", "value": 249.64 }, + { "date": "2010-08-23T07:00:00.000Z", "value": 245.8 }, + { "date": "2010-08-24T07:00:00.000Z", "value": 239.93 }, + { "date": "2010-08-25T07:00:00.000Z", "value": 242.89 }, + { "date": "2010-08-26T07:00:00.000Z", "value": 240.28 }, + { "date": "2010-08-27T07:00:00.000Z", "value": 241.62 }, + { "date": "2010-08-30T07:00:00.000Z", "value": 242.5 }, + { "date": "2010-08-31T07:00:00.000Z", "value": 243.1 }, + { "date": "2010-09-01T07:00:00.000Z", "value": 250.33 }, + { "date": "2010-09-02T07:00:00.000Z", "value": 252.17 }, + { "date": "2010-09-03T07:00:00.000Z", "value": 258.77 }, + { "date": "2010-09-06T07:00:00.000Z", "value": 258.77 }, + { "date": "2010-09-07T07:00:00.000Z", "value": 257.81 }, + { "date": "2010-09-08T07:00:00.000Z", "value": 262.92 }, + { "date": "2010-09-09T07:00:00.000Z", "value": 263.07 }, + { "date": "2010-09-10T07:00:00.000Z", "value": 263.41 }, + { "date": "2010-09-13T07:00:00.000Z", "value": 267.04 }, + { "date": "2010-09-14T07:00:00.000Z", "value": 268.06 }, + { "date": "2010-09-15T07:00:00.000Z", "value": 270.22 }, + { "date": "2010-09-16T07:00:00.000Z", "value": 276.57 }, + { "date": "2010-09-17T07:00:00.000Z", "value": 275.37 }, + { "date": "2010-09-20T07:00:00.000Z", "value": 283.23 }, + { "date": "2010-09-21T07:00:00.000Z", "value": 283.77 }, + { "date": "2010-09-22T07:00:00.000Z", "value": 287.75 }, + { "date": "2010-09-23T07:00:00.000Z", "value": 288.92 }, + { "date": "2010-09-24T07:00:00.000Z", "value": 292.32 }, + { "date": "2010-09-27T07:00:00.000Z", "value": 291.16 }, + { "date": "2010-09-28T07:00:00.000Z", "value": 286.86 }, + { "date": "2010-09-29T07:00:00.000Z", "value": 287.37 }, + { "date": "2010-09-30T07:00:00.000Z", "value": 283.75 }, + { "date": "2010-10-01T07:00:00.000Z", "value": 282.52 }, + { "date": "2010-10-04T07:00:00.000Z", "value": 278.64 }, + { "date": "2010-10-05T07:00:00.000Z", "value": 288.94 }, + { "date": "2010-10-06T07:00:00.000Z", "value": 289.19 }, + { "date": "2010-10-07T07:00:00.000Z", "value": 289.22 }, + { "date": "2010-10-08T07:00:00.000Z", "value": 294.07 }, + { "date": "2010-10-11T07:00:00.000Z", "value": 295.36 }, + { "date": "2010-10-12T07:00:00.000Z", "value": 298.54 }, + { "date": "2010-10-13T07:00:00.000Z", "value": 300.14 }, + { "date": "2010-10-14T07:00:00.000Z", "value": 302.31 }, + { "date": "2010-10-15T07:00:00.000Z", "value": 314.74 }, + { "date": "2010-10-18T07:00:00.000Z", "value": 318 }, + { "date": "2010-10-19T07:00:00.000Z", "value": 309.49 }, + { "date": "2010-10-20T07:00:00.000Z", "value": 310.53 }, + { "date": "2010-10-21T07:00:00.000Z", "value": 309.52 }, + { "date": "2010-10-22T07:00:00.000Z", "value": 307.47 }, + { "date": "2010-10-25T07:00:00.000Z", "value": 308.84 }, + { "date": "2010-10-26T07:00:00.000Z", "value": 308.05 }, + { "date": "2010-10-27T07:00:00.000Z", "value": 307.83 }, + { "date": "2010-10-28T07:00:00.000Z", "value": 305.24 }, + { "date": "2010-10-29T07:00:00.000Z", "value": 300.98 }, + { "date": "2010-11-01T07:00:00.000Z", "value": 304.18 }, + { "date": "2010-11-02T07:00:00.000Z", "value": 309.36 }, + { "date": "2010-11-03T07:00:00.000Z", "value": 312.8 }, + { "date": "2010-11-04T07:00:00.000Z", "value": 318.27 }, + { "date": "2010-11-05T07:00:00.000Z", "value": 317.13 }, + { "date": "2010-11-08T08:00:00.000Z", "value": 318.62 }, + { "date": "2010-11-09T08:00:00.000Z", "value": 316.08 }, + { "date": "2010-11-10T08:00:00.000Z", "value": 318.03 }, + { "date": "2010-11-11T08:00:00.000Z", "value": 316.66 }, + { "date": "2010-11-12T08:00:00.000Z", "value": 308.03 }, + { "date": "2010-11-15T08:00:00.000Z", "value": 307.04 }, + { "date": "2010-11-16T08:00:00.000Z", "value": 301.59 }, + { "date": "2010-11-17T08:00:00.000Z", "value": 300.5 }, + { "date": "2010-11-18T08:00:00.000Z", "value": 308.43 }, + { "date": "2010-11-19T08:00:00.000Z", "value": 306.73 }, + { "date": "2010-11-22T08:00:00.000Z", "value": 313.36 }, + { "date": "2010-11-23T08:00:00.000Z", "value": 308.73 }, + { "date": "2010-11-24T08:00:00.000Z", "value": 314.8 }, + { "date": "2010-11-26T08:00:00.000Z", "value": 315 }, + { "date": "2010-11-29T08:00:00.000Z", "value": 316.87 }, + { "date": "2010-11-30T08:00:00.000Z", "value": 311.15 }, + { "date": "2010-12-01T08:00:00.000Z", "value": 316.4 }, + { "date": "2010-12-02T08:00:00.000Z", "value": 318.15 }, + { "date": "2010-12-03T08:00:00.000Z", "value": 317.44 }, + { "date": "2010-12-06T08:00:00.000Z", "value": 320.15 }, + { "date": "2010-12-07T08:00:00.000Z", "value": 318.21 }, + { "date": "2010-12-08T08:00:00.000Z", "value": 321.01 }, + { "date": "2010-12-09T08:00:00.000Z", "value": 319.76 }, + { "date": "2010-12-10T08:00:00.000Z", "value": 320.56 }, + { "date": "2010-12-13T08:00:00.000Z", "value": 321.67 }, + { "date": "2010-12-14T08:00:00.000Z", "value": 320.29 }, + { "date": "2010-12-15T08:00:00.000Z", "value": 320.36 }, + { "date": "2010-12-16T08:00:00.000Z", "value": 321.25 }, + { "date": "2010-12-17T08:00:00.000Z", "value": 320.61 }, + { "date": "2010-12-20T08:00:00.000Z", "value": 322.21 }, + { "date": "2010-12-21T08:00:00.000Z", "value": 324.2 }, + { "date": "2010-12-22T08:00:00.000Z", "value": 325.16 }, + { "date": "2010-12-23T08:00:00.000Z", "value": 323.6 }, + { "date": "2010-12-27T08:00:00.000Z", "value": 324.68 }, + { "date": "2010-12-28T08:00:00.000Z", "value": 325.47 }, + { "date": "2010-12-29T08:00:00.000Z", "value": 325.29 }, + { "date": "2010-12-30T08:00:00.000Z", "value": 323.66 }, + { "date": "2010-12-31T08:00:00.000Z", "value": 322.56 }, + { "date": "2011-01-03T08:00:00.000Z", "value": 329.57 }, + { "date": "2011-01-04T08:00:00.000Z", "value": 331.29 }, + { "date": "2011-01-05T08:00:00.000Z", "value": 334 }, + { "date": "2011-01-06T08:00:00.000Z", "value": 333.73 }, + { "date": "2011-01-07T08:00:00.000Z", "value": 336.12 }, + { "date": "2011-01-10T08:00:00.000Z", "value": 342.46 }, + { "date": "2011-01-11T08:00:00.000Z", "value": 341.64 }, + { "date": "2011-01-12T08:00:00.000Z", "value": 344.42 }, + { "date": "2011-01-13T08:00:00.000Z", "value": 345.68 }, + { "date": "2011-01-14T08:00:00.000Z", "value": 348.48 }, + { "date": "2011-01-18T08:00:00.000Z", "value": 340.65 }, + { "date": "2011-01-19T08:00:00.000Z", "value": 338.84 }, + { "date": "2011-01-20T08:00:00.000Z", "value": 332.68 }, + { "date": "2011-01-21T08:00:00.000Z", "value": 326.72 }, + { "date": "2011-01-24T08:00:00.000Z", "value": 337.45 }, + { "date": "2011-01-25T08:00:00.000Z", "value": 341.4 }, + { "date": "2011-01-26T08:00:00.000Z", "value": 343.85 }, + { "date": "2011-01-27T08:00:00.000Z", "value": 343.21 }, + { "date": "2011-01-28T08:00:00.000Z", "value": 336.1 }, + { "date": "2011-01-31T08:00:00.000Z", "value": 339.32 }, + { "date": "2011-02-01T08:00:00.000Z", "value": 345.03 }, + { "date": "2011-02-02T08:00:00.000Z", "value": 344.32 }, + { "date": "2011-02-03T08:00:00.000Z", "value": 343.44 }, + { "date": "2011-02-04T08:00:00.000Z", "value": 346.5 }, + { "date": "2011-02-07T08:00:00.000Z", "value": 351.88 }, + { "date": "2011-02-08T08:00:00.000Z", "value": 355.2 }, + { "date": "2011-02-09T08:00:00.000Z", "value": 358.16 }, + { "date": "2011-02-10T08:00:00.000Z", "value": 354.54 }, + { "date": "2011-02-11T08:00:00.000Z", "value": 356.85 }, + { "date": "2011-02-14T08:00:00.000Z", "value": 359.18 }, + { "date": "2011-02-15T08:00:00.000Z", "value": 359.9 }, + { "date": "2011-02-16T08:00:00.000Z", "value": 363.13 }, + { "date": "2011-02-17T08:00:00.000Z", "value": 358.3 }, + { "date": "2011-02-18T08:00:00.000Z", "value": 350.56 }, + { "date": "2011-02-22T08:00:00.000Z", "value": 338.61 }, + { "date": "2011-02-23T08:00:00.000Z", "value": 342.62 }, + { "date": "2011-02-24T08:00:00.000Z", "value": 342.88 }, + { "date": "2011-02-25T08:00:00.000Z", "value": 348.16 }, + { "date": "2011-02-28T08:00:00.000Z", "value": 353.21 }, + { "date": "2011-03-01T08:00:00.000Z", "value": 349.31 }, + { "date": "2011-03-02T08:00:00.000Z", "value": 352.12 }, + { "date": "2011-03-03T08:00:00.000Z", "value": 359.56 }, + { "date": "2011-03-04T08:00:00.000Z", "value": 360 }, + { "date": "2011-03-07T08:00:00.000Z", "value": 355.36 }, + { "date": "2011-03-08T08:00:00.000Z", "value": 355.76 }, + { "date": "2011-03-09T08:00:00.000Z", "value": 352.47 }, + { "date": "2011-03-10T08:00:00.000Z", "value": 346.67 }, + { "date": "2011-03-11T08:00:00.000Z", "value": 351.99 }, + { "date": "2011-03-14T07:00:00.000Z", "value": 353.56 }, + { "date": "2011-03-15T07:00:00.000Z", "value": 345.43 }, + { "date": "2011-03-16T07:00:00.000Z", "value": 330.01 }, + { "date": "2011-03-17T07:00:00.000Z", "value": 334.64 }, + { "date": "2011-03-18T07:00:00.000Z", "value": 330.67 }, + { "date": "2011-03-21T07:00:00.000Z", "value": 339.3 }, + { "date": "2011-03-22T07:00:00.000Z", "value": 341.2 }, + { "date": "2011-03-23T07:00:00.000Z", "value": 339.19 }, + { "date": "2011-03-24T07:00:00.000Z", "value": 344.97 }, + { "date": "2011-03-25T07:00:00.000Z", "value": 351.54 }, + { "date": "2011-03-28T07:00:00.000Z", "value": 350.44 }, + { "date": "2011-03-29T07:00:00.000Z", "value": 350.96 }, + { "date": "2011-03-30T07:00:00.000Z", "value": 348.63 }, + { "date": "2011-03-31T07:00:00.000Z", "value": 348.51 }, + { "date": "2011-04-01T07:00:00.000Z", "value": 344.56 }, + { "date": "2011-04-04T07:00:00.000Z", "value": 341.19 }, + { "date": "2011-04-05T07:00:00.000Z", "value": 338.89 }, + { "date": "2011-04-06T07:00:00.000Z", "value": 338.04 }, + { "date": "2011-04-07T07:00:00.000Z", "value": 338.08 }, + { "date": "2011-04-08T07:00:00.000Z", "value": 335.06 }, + { "date": "2011-04-11T07:00:00.000Z", "value": 330.8 }, + { "date": "2011-04-12T07:00:00.000Z", "value": 332.4 }, + { "date": "2011-04-13T07:00:00.000Z", "value": 336.13 }, + { "date": "2011-04-14T07:00:00.000Z", "value": 332.42 }, + { "date": "2011-04-15T07:00:00.000Z", "value": 327.46 }, + { "date": "2011-04-18T07:00:00.000Z", "value": 331.85 }, + { "date": "2011-04-19T07:00:00.000Z", "value": 337.86 }, + { "date": "2011-04-20T07:00:00.000Z", "value": 342.41 }, + { "date": "2011-04-21T07:00:00.000Z", "value": 350.7 }, + { "date": "2011-04-25T07:00:00.000Z", "value": 353.01 }, + { "date": "2011-04-26T07:00:00.000Z", "value": 350.42 }, + { "date": "2011-04-27T07:00:00.000Z", "value": 350.15 }, + { "date": "2011-04-28T07:00:00.000Z", "value": 346.75 }, + { "date": "2011-04-29T07:00:00.000Z", "value": 350.13 }, + { "date": "2011-05-02T07:00:00.000Z", "value": 346.28 }, + { "date": "2011-05-03T07:00:00.000Z", "value": 348.2 }, + { "date": "2011-05-04T07:00:00.000Z", "value": 349.57 }, + { "date": "2011-05-05T07:00:00.000Z", "value": 346.75 }, + { "date": "2011-05-06T07:00:00.000Z", "value": 346.66 }, + { "date": "2011-05-09T07:00:00.000Z", "value": 347.6 }, + { "date": "2011-05-10T07:00:00.000Z", "value": 349.45 }, + { "date": "2011-05-11T07:00:00.000Z", "value": 347.23 }, + { "date": "2011-05-12T07:00:00.000Z", "value": 346.57 }, + { "date": "2011-05-13T07:00:00.000Z", "value": 340.5 }, + { "date": "2011-05-16T07:00:00.000Z", "value": 333.3 }, + { "date": "2011-05-17T07:00:00.000Z", "value": 336.14 }, + { "date": "2011-05-18T07:00:00.000Z", "value": 339.87 }, + { "date": "2011-05-19T07:00:00.000Z", "value": 340.53 }, + { "date": "2011-05-20T07:00:00.000Z", "value": 335.22 }, + { "date": "2011-05-23T07:00:00.000Z", "value": 334.4 }, + { "date": "2011-05-24T07:00:00.000Z", "value": 332.19 }, + { "date": "2011-05-25T07:00:00.000Z", "value": 336.78 }, + { "date": "2011-05-26T07:00:00.000Z", "value": 335 }, + { "date": "2011-05-27T07:00:00.000Z", "value": 337.41 }, + { "date": "2011-05-31T07:00:00.000Z", "value": 347.83 }, + { "date": "2011-06-01T07:00:00.000Z", "value": 345.51 }, + { "date": "2011-06-02T07:00:00.000Z", "value": 346.1 }, + { "date": "2011-06-03T07:00:00.000Z", "value": 343.44 }, + { "date": "2011-06-06T07:00:00.000Z", "value": 338.04 }, + { "date": "2011-06-07T07:00:00.000Z", "value": 332.04 }, + { "date": "2011-06-08T07:00:00.000Z", "value": 332.24 }, + { "date": "2011-06-09T07:00:00.000Z", "value": 331.49 }, + { "date": "2011-06-10T07:00:00.000Z", "value": 325.9 }, + { "date": "2011-06-13T07:00:00.000Z", "value": 326.6 }, + { "date": "2011-06-14T07:00:00.000Z", "value": 332.44 }, + { "date": "2011-06-15T07:00:00.000Z", "value": 326.75 }, + { "date": "2011-06-16T07:00:00.000Z", "value": 325.16 }, + { "date": "2011-06-17T07:00:00.000Z", "value": 320.26 }, + { "date": "2011-06-20T07:00:00.000Z", "value": 315.32 }, + { "date": "2011-06-21T07:00:00.000Z", "value": 325.3 }, + { "date": "2011-06-22T07:00:00.000Z", "value": 322.61 }, + { "date": "2011-06-23T07:00:00.000Z", "value": 331.23 }, + { "date": "2011-06-24T07:00:00.000Z", "value": 326.35 }, + { "date": "2011-06-27T07:00:00.000Z", "value": 332.04 }, + { "date": "2011-06-28T07:00:00.000Z", "value": 335.26 }, + { "date": "2011-06-29T07:00:00.000Z", "value": 334.04 }, + { "date": "2011-06-30T07:00:00.000Z", "value": 335.67 }, + { "date": "2011-07-01T07:00:00.000Z", "value": 343.26 }, + { "date": "2011-07-05T07:00:00.000Z", "value": 349.43 }, + { "date": "2011-07-06T07:00:00.000Z", "value": 351.76 }, + { "date": "2011-07-07T07:00:00.000Z", "value": 357.2 }, + { "date": "2011-07-08T07:00:00.000Z", "value": 359.71 }, + { "date": "2011-07-11T07:00:00.000Z", "value": 354 }, + { "date": "2011-07-12T07:00:00.000Z", "value": 353.75 }, + { "date": "2011-07-13T07:00:00.000Z", "value": 358.02 }, + { "date": "2011-07-14T07:00:00.000Z", "value": 357.77 }, + { "date": "2011-07-15T07:00:00.000Z", "value": 364.92 }, + { "date": "2011-07-18T07:00:00.000Z", "value": 373.8 }, + { "date": "2011-07-19T07:00:00.000Z", "value": 376.85 }, + { "date": "2011-07-20T07:00:00.000Z", "value": 386.9 }, + { "date": "2011-07-21T07:00:00.000Z", "value": 387.29 }, + { "date": "2011-07-22T07:00:00.000Z", "value": 393.3 }, + { "date": "2011-07-25T07:00:00.000Z", "value": 398.5 }, + { "date": "2011-07-26T07:00:00.000Z", "value": 403.41 }, + { "date": "2011-07-27T07:00:00.000Z", "value": 392.59 }, + { "date": "2011-07-28T07:00:00.000Z", "value": 391.82 }, + { "date": "2011-07-29T07:00:00.000Z", "value": 390.48 }, + { "date": "2011-08-01T07:00:00.000Z", "value": 396.75 }, + { "date": "2011-08-02T07:00:00.000Z", "value": 388.91 }, + { "date": "2011-08-03T07:00:00.000Z", "value": 392.57 }, + { "date": "2011-08-04T07:00:00.000Z", "value": 377.37 }, + { "date": "2011-08-05T07:00:00.000Z", "value": 373.62 }, + { "date": "2011-08-08T07:00:00.000Z", "value": 353.21 }, + { "date": "2011-08-09T07:00:00.000Z", "value": 374.01 }, + { "date": "2011-08-10T07:00:00.000Z", "value": 363.69 }, + { "date": "2011-08-11T07:00:00.000Z", "value": 373.7 }, + { "date": "2011-08-12T07:00:00.000Z", "value": 376.99 }, + { "date": "2011-08-15T07:00:00.000Z", "value": 383.41 }, + { "date": "2011-08-16T07:00:00.000Z", "value": 380.48 }, + { "date": "2011-08-17T07:00:00.000Z", "value": 380.44 }, + { "date": "2011-08-18T07:00:00.000Z", "value": 366.05 }, + { "date": "2011-08-19T07:00:00.000Z", "value": 356.03 }, + { "date": "2011-08-22T07:00:00.000Z", "value": 356.44 }, + { "date": "2011-08-23T07:00:00.000Z", "value": 373.6 }, + { "date": "2011-08-24T07:00:00.000Z", "value": 376.18 }, + { "date": "2011-08-25T07:00:00.000Z", "value": 373.72 }, + { "date": "2011-08-26T07:00:00.000Z", "value": 383.58 }, + { "date": "2011-08-29T07:00:00.000Z", "value": 389.97 }, + { "date": "2011-08-30T07:00:00.000Z", "value": 389.99 }, + { "date": "2011-08-31T07:00:00.000Z", "value": 384.83 }, + { "date": "2011-09-01T07:00:00.000Z", "value": 381.03 }, + { "date": "2011-09-02T07:00:00.000Z", "value": 374.05 }, + { "date": "2011-09-06T07:00:00.000Z", "value": 379.74 }, + { "date": "2011-09-07T07:00:00.000Z", "value": 383.93 }, + { "date": "2011-09-08T07:00:00.000Z", "value": 384.14 }, + { "date": "2011-09-09T07:00:00.000Z", "value": 377.48 }, + { "date": "2011-09-12T07:00:00.000Z", "value": 379.94 }, + { "date": "2011-09-13T07:00:00.000Z", "value": 384.62 }, + { "date": "2011-09-14T07:00:00.000Z", "value": 389.3 }, + { "date": "2011-09-15T07:00:00.000Z", "value": 392.96 }, + { "date": "2011-09-16T07:00:00.000Z", "value": 400.5 }, + { "date": "2011-09-19T07:00:00.000Z", "value": 411.63 }, + { "date": "2011-09-20T07:00:00.000Z", "value": 413.45 }, + { "date": "2011-09-21T07:00:00.000Z", "value": 412.14 }, + { "date": "2011-09-22T07:00:00.000Z", "value": 401.82 }, + { "date": "2011-09-23T07:00:00.000Z", "value": 404.3 }, + { "date": "2011-09-26T07:00:00.000Z", "value": 403.17 }, + { "date": "2011-09-27T07:00:00.000Z", "value": 399.26 }, + { "date": "2011-09-28T07:00:00.000Z", "value": 397.01 }, + { "date": "2011-09-29T07:00:00.000Z", "value": 390.57 }, + { "date": "2011-09-30T07:00:00.000Z", "value": 381.32 }, + { "date": "2011-10-03T07:00:00.000Z", "value": 374.6 }, + { "date": "2011-10-04T07:00:00.000Z", "value": 372.5 }, + { "date": "2011-10-05T07:00:00.000Z", "value": 378.25 }, + { "date": "2011-10-06T07:00:00.000Z", "value": 377.37 }, + { "date": "2011-10-07T07:00:00.000Z", "value": 369.8 }, + { "date": "2011-10-10T07:00:00.000Z", "value": 388.81 }, + { "date": "2011-10-11T07:00:00.000Z", "value": 400.29 }, + { "date": "2011-10-12T07:00:00.000Z", "value": 402.19 }, + { "date": "2011-10-13T07:00:00.000Z", "value": 408.43 }, + { "date": "2011-10-14T07:00:00.000Z", "value": 422 }, + { "date": "2011-10-17T07:00:00.000Z", "value": 419.99 }, + { "date": "2011-10-18T07:00:00.000Z", "value": 422.24 }, + { "date": "2011-10-19T07:00:00.000Z", "value": 398.62 }, + { "date": "2011-10-20T07:00:00.000Z", "value": 395.31 }, + { "date": "2011-10-21T07:00:00.000Z", "value": 392.87 }, + { "date": "2011-10-24T07:00:00.000Z", "value": 405.77 }, + { "date": "2011-10-25T07:00:00.000Z", "value": 397.77 }, + { "date": "2011-10-26T07:00:00.000Z", "value": 400.6 }, + { "date": "2011-10-27T07:00:00.000Z", "value": 404.69 }, + { "date": "2011-10-28T07:00:00.000Z", "value": 404.95 }, + { "date": "2011-10-31T07:00:00.000Z", "value": 404.78 }, + { "date": "2011-11-01T07:00:00.000Z", "value": 396.51 }, + { "date": "2011-11-02T07:00:00.000Z", "value": 397.41 }, + { "date": "2011-11-03T07:00:00.000Z", "value": 403.07 }, + { "date": "2011-11-04T07:00:00.000Z", "value": 400.24 }, + { "date": "2011-11-07T08:00:00.000Z", "value": 399.73 }, + { "date": "2011-11-08T08:00:00.000Z", "value": 406.23 }, + { "date": "2011-11-09T08:00:00.000Z", "value": 395.28 }, + { "date": "2011-11-10T08:00:00.000Z", "value": 385.22 }, + { "date": "2011-11-11T08:00:00.000Z", "value": 384.62 }, + { "date": "2011-11-14T08:00:00.000Z", "value": 379.26 }, + { "date": "2011-11-15T08:00:00.000Z", "value": 388.83 }, + { "date": "2011-11-16T08:00:00.000Z", "value": 384.77 }, + { "date": "2011-11-17T08:00:00.000Z", "value": 377.41 }, + { "date": "2011-11-18T08:00:00.000Z", "value": 374.94 }, + { "date": "2011-11-21T08:00:00.000Z", "value": 369.01 }, + { "date": "2011-11-22T08:00:00.000Z", "value": 376.51 }, + { "date": "2011-11-23T08:00:00.000Z", "value": 366.99 }, + { "date": "2011-11-25T08:00:00.000Z", "value": 363.57 }, + { "date": "2011-11-28T08:00:00.000Z", "value": 376.12 }, + { "date": "2011-11-29T08:00:00.000Z", "value": 373.2 }, + { "date": "2011-11-30T08:00:00.000Z", "value": 382.2 }, + { "date": "2011-12-01T08:00:00.000Z", "value": 387.93 }, + { "date": "2011-12-02T08:00:00.000Z", "value": 389.7 }, + { "date": "2011-12-05T08:00:00.000Z", "value": 393.01 }, + { "date": "2011-12-06T08:00:00.000Z", "value": 390.95 }, + { "date": "2011-12-07T08:00:00.000Z", "value": 389.09 }, + { "date": "2011-12-08T08:00:00.000Z", "value": 390.66 }, + { "date": "2011-12-09T08:00:00.000Z", "value": 393.62 }, + { "date": "2011-12-12T08:00:00.000Z", "value": 391.84 }, + { "date": "2011-12-13T08:00:00.000Z", "value": 388.81 }, + { "date": "2011-12-14T08:00:00.000Z", "value": 380.19 }, + { "date": "2011-12-15T08:00:00.000Z", "value": 378.94 }, + { "date": "2011-12-16T08:00:00.000Z", "value": 381.02 }, + { "date": "2011-12-19T08:00:00.000Z", "value": 382.21 }, + { "date": "2011-12-20T08:00:00.000Z", "value": 395.95 }, + { "date": "2011-12-21T08:00:00.000Z", "value": 396.44 }, + { "date": "2011-12-22T08:00:00.000Z", "value": 398.55 }, + { "date": "2011-12-23T08:00:00.000Z", "value": 403.43 }, + { "date": "2011-12-27T08:00:00.000Z", "value": 406.53 }, + { "date": "2011-12-28T08:00:00.000Z", "value": 402.64 }, + { "date": "2011-12-29T08:00:00.000Z", "value": 405.12 }, + { "date": "2011-12-30T08:00:00.000Z", "value": 405 }, + { "date": "2012-01-03T08:00:00.000Z", "value": 411.23 }, + { "date": "2012-01-04T08:00:00.000Z", "value": 413.44 }, + { "date": "2012-01-05T08:00:00.000Z", "value": 418.03 }, + { "date": "2012-01-06T08:00:00.000Z", "value": 422.4 }, + { "date": "2012-01-09T08:00:00.000Z", "value": 421.73 }, + { "date": "2012-01-10T08:00:00.000Z", "value": 423.24 }, + { "date": "2012-01-11T08:00:00.000Z", "value": 422.55 }, + { "date": "2012-01-12T08:00:00.000Z", "value": 421.39 }, + { "date": "2012-01-13T08:00:00.000Z", "value": 419.81 }, + { "date": "2012-01-17T08:00:00.000Z", "value": 424.7 }, + { "date": "2012-01-18T08:00:00.000Z", "value": 429.11 }, + { "date": "2012-01-19T08:00:00.000Z", "value": 427.75 }, + { "date": "2012-01-20T08:00:00.000Z", "value": 420.3 }, + { "date": "2012-01-23T08:00:00.000Z", "value": 427.41 }, + { "date": "2012-01-24T08:00:00.000Z", "value": 420.41 }, + { "date": "2012-01-25T08:00:00.000Z", "value": 446.66 }, + { "date": "2012-01-26T08:00:00.000Z", "value": 444.63 }, + { "date": "2012-01-27T08:00:00.000Z", "value": 447.28 }, + { "date": "2012-01-30T08:00:00.000Z", "value": 453.01 }, + { "date": "2012-01-31T08:00:00.000Z", "value": 456.48 }, + { "date": "2012-02-01T08:00:00.000Z", "value": 456.19 }, + { "date": "2012-02-02T08:00:00.000Z", "value": 455.12 }, + { "date": "2012-02-03T08:00:00.000Z", "value": 459.68 }, + { "date": "2012-02-06T08:00:00.000Z", "value": 463.97 }, + { "date": "2012-02-07T08:00:00.000Z", "value": 468.83 }, + { "date": "2012-02-08T08:00:00.000Z", "value": 476.68 }, + { "date": "2012-02-09T08:00:00.000Z", "value": 493.17 }, + { "date": "2012-02-10T08:00:00.000Z", "value": 493.42 }, + { "date": "2012-02-13T08:00:00.000Z", "value": 502.6 }, + { "date": "2012-02-14T08:00:00.000Z", "value": 509.46 }, + { "date": "2012-02-15T08:00:00.000Z", "value": 497.67 }, + { "date": "2012-02-16T08:00:00.000Z", "value": 502.21 }, + { "date": "2012-02-17T08:00:00.000Z", "value": 502.12 }, + { "date": "2012-02-21T08:00:00.000Z", "value": 514.85 }, + { "date": "2012-02-22T08:00:00.000Z", "value": 513.04 }, + { "date": "2012-02-23T08:00:00.000Z", "value": 516.39 }, + { "date": "2012-02-24T08:00:00.000Z", "value": 522.41 }, + { "date": "2012-02-27T08:00:00.000Z", "value": 525.76 }, + { "date": "2012-02-28T08:00:00.000Z", "value": 535.41 }, + { "date": "2012-02-29T08:00:00.000Z", "value": 542.44 }, + { "date": "2012-03-01T08:00:00.000Z", "value": 544.47 }, + { "date": "2012-03-02T08:00:00.000Z", "value": 545.18 }, + { "date": "2012-03-05T08:00:00.000Z", "value": 533.16 }, + { "date": "2012-03-06T08:00:00.000Z", "value": 530.26 }, + { "date": "2012-03-07T08:00:00.000Z", "value": 530.69 }, + { "date": "2012-03-08T08:00:00.000Z", "value": 541.99 }, + { "date": "2012-03-09T08:00:00.000Z", "value": 545.17 }, + { "date": "2012-03-12T07:00:00.000Z", "value": 552 }, + { "date": "2012-03-13T07:00:00.000Z", "value": 568.1 }, + { "date": "2012-03-14T07:00:00.000Z", "value": 589.58 }, + { "date": "2012-03-15T07:00:00.000Z", "value": 585.56 }, + { "date": "2012-03-16T07:00:00.000Z", "value": 585.57 }, + { "date": "2012-03-19T07:00:00.000Z", "value": 601.1 }, + { "date": "2012-03-20T07:00:00.000Z", "value": 605.96 }, + { "date": "2012-03-21T07:00:00.000Z", "value": 602.5 }, + { "date": "2012-03-22T07:00:00.000Z", "value": 599.34 }, + { "date": "2012-03-23T07:00:00.000Z", "value": 596.05 }, + { "date": "2012-03-26T07:00:00.000Z", "value": 606.98 }, + { "date": "2012-03-27T07:00:00.000Z", "value": 614.48 }, + { "date": "2012-03-28T07:00:00.000Z", "value": 617.62 }, + { "date": "2012-03-29T07:00:00.000Z", "value": 609.86 }, + { "date": "2012-03-30T07:00:00.000Z", "value": 599.55 }, + { "date": "2012-04-02T07:00:00.000Z", "value": 618.63 }, + { "date": "2012-04-03T07:00:00.000Z", "value": 629.32 }, + { "date": "2012-04-04T07:00:00.000Z", "value": 624.31 }, + { "date": "2012-04-05T07:00:00.000Z", "value": 633.68 }, + { "date": "2012-04-09T07:00:00.000Z", "value": 636.23 }, + { "date": "2012-04-10T07:00:00.000Z", "value": 628.44 }, + { "date": "2012-04-11T07:00:00.000Z", "value": 626.2 }, + { "date": "2012-04-12T07:00:00.000Z", "value": 622.77 }, + { "date": "2012-04-13T07:00:00.000Z", "value": 605.23 }, + { "date": "2012-04-16T07:00:00.000Z", "value": 580.13 }, + { "date": "2012-04-17T07:00:00.000Z", "value": 609.7 }, + { "date": "2012-04-18T07:00:00.000Z", "value": 608.34 }, + { "date": "2012-04-19T07:00:00.000Z", "value": 587.44 }, + { "date": "2012-04-20T07:00:00.000Z", "value": 572.98 }, + { "date": "2012-04-23T07:00:00.000Z", "value": 571.7 }, + { "date": "2012-04-24T07:00:00.000Z", "value": 560.28 }, + { "date": "2012-04-25T07:00:00.000Z", "value": 610 }, + { "date": "2012-04-26T07:00:00.000Z", "value": 607.7 }, + { "date": "2012-04-27T07:00:00.000Z", "value": 603 }, + { "date": "2012-04-30T07:00:00.000Z", "value": 583.98 }, + { "date": "2012-05-01T07:00:00.000Z", "value": 582.13 } +] diff --git a/docs/static/data/examples/date/apple-ticker.d.ts b/docs/static/data/examples/date/apple-ticker.d.ts new file mode 100644 index 000000000..b8a888937 --- /dev/null +++ b/docs/static/data/examples/date/apple-ticker.d.ts @@ -0,0 +1,9 @@ +export type AppleTickerData = { + date: Date; + open: number; + high: number; + low: number; + close: number; + adjClose: number; + volume: number; +}[]; diff --git a/docs/static/data/examples/date/apple-ticker.json b/docs/static/data/examples/date/apple-ticker.json new file mode 100644 index 000000000..e1bc2e605 --- /dev/null +++ b/docs/static/data/examples/date/apple-ticker.json @@ -0,0 +1,1172 @@ +[ + { + "date": "2017-11-03T00:00:00.000Z", + "open": 174, + "high": 174.259995, + "low": 171.119995, + "close": 172.5, + "adjClose": 170.526596, + "volume": 59398600 + }, + { + "date": "2017-11-06T00:00:00.000Z", + "open": 172.369995, + "high": 174.990005, + "low": 171.720001, + "close": 174.25, + "adjClose": 172.256577, + "volume": 35026300 + }, + { + "date": "2017-11-07T00:00:00.000Z", + "open": 173.910004, + "high": 175.25, + "low": 173.600006, + "close": 174.809998, + "adjClose": 172.810165, + "volume": 24361500 + }, + { + "date": "2017-11-08T00:00:00.000Z", + "open": 174.660004, + "high": 176.240005, + "low": 174.330002, + "close": 176.240005, + "adjClose": 174.223831, + "volume": 24409500 + }, + { + "date": "2017-11-09T00:00:00.000Z", + "open": 175.110001, + "high": 176.100006, + "low": 173.139999, + "close": 175.880005, + "adjClose": 173.86795, + "volume": 29482600 + }, + { + "date": "2017-11-10T00:00:00.000Z", + "open": 175.110001, + "high": 175.380005, + "low": 174.270004, + "close": 174.669998, + "adjClose": 173.292511, + "volume": 25145500 + }, + { + "date": "2017-11-13T00:00:00.000Z", + "open": 173.5, + "high": 174.5, + "low": 173.399994, + "close": 173.970001, + "adjClose": 172.598022, + "volume": 16982100 + }, + { + "date": "2017-11-14T00:00:00.000Z", + "open": 173.039993, + "high": 173.479996, + "low": 171.179993, + "close": 171.339996, + "adjClose": 169.988754, + "volume": 24782500 + }, + { + "date": "2017-11-15T00:00:00.000Z", + "open": 169.970001, + "high": 170.320007, + "low": 168.380005, + "close": 169.080002, + "adjClose": 167.746582, + "volume": 29158100 + }, + { + "date": "2017-11-16T00:00:00.000Z", + "open": 171.179993, + "high": 171.869995, + "low": 170.300003, + "close": 171.100006, + "adjClose": 169.750671, + "volume": 23637500 + }, + { + "date": "2017-11-17T00:00:00.000Z", + "open": 171.039993, + "high": 171.389999, + "low": 169.639999, + "close": 170.149994, + "adjClose": 168.808151, + "volume": 21899500 + }, + { + "date": "2017-11-20T00:00:00.000Z", + "open": 170.289993, + "high": 170.559998, + "low": 169.559998, + "close": 169.979996, + "adjClose": 168.639496, + "volume": 16262400 + }, + { + "date": "2017-11-21T00:00:00.000Z", + "open": 170.779999, + "high": 173.699997, + "low": 170.779999, + "close": 173.139999, + "adjClose": 171.774567, + "volume": 25131300 + }, + { + "date": "2017-11-22T00:00:00.000Z", + "open": 173.360001, + "high": 175, + "low": 173.050003, + "close": 174.960007, + "adjClose": 173.580231, + "volume": 25588900 + }, + { + "date": "2017-11-24T00:00:00.000Z", + "open": 175.100006, + "high": 175.5, + "low": 174.649994, + "close": 174.970001, + "adjClose": 173.590149, + "volume": 14026700 + }, + { + "date": "2017-11-27T00:00:00.000Z", + "open": 175.050003, + "high": 175.080002, + "low": 173.339996, + "close": 174.089996, + "adjClose": 172.717072, + "volume": 20716800 + }, + { + "date": "2017-11-28T00:00:00.000Z", + "open": 174.300003, + "high": 174.869995, + "low": 171.860001, + "close": 173.070007, + "adjClose": 171.705139, + "volume": 26428800 + }, + { + "date": "2017-11-29T00:00:00.000Z", + "open": 172.630005, + "high": 172.919998, + "low": 167.160004, + "close": 169.479996, + "adjClose": 168.143433, + "volume": 41666400 + }, + { + "date": "2017-11-30T00:00:00.000Z", + "open": 170.429993, + "high": 172.139999, + "low": 168.440002, + "close": 171.850006, + "adjClose": 170.494751, + "volume": 41527200 + }, + { + "date": "2017-12-01T00:00:00.000Z", + "open": 169.949997, + "high": 171.669998, + "low": 168.5, + "close": 171.050003, + "adjClose": 169.70105, + "volume": 39759300 + }, + { + "date": "2017-12-04T00:00:00.000Z", + "open": 172.479996, + "high": 172.619995, + "low": 169.630005, + "close": 169.800003, + "adjClose": 168.460922, + "volume": 32542400 + }, + { + "date": "2017-12-05T00:00:00.000Z", + "open": 169.059998, + "high": 171.520004, + "low": 168.399994, + "close": 169.639999, + "adjClose": 168.30217, + "volume": 27350200 + }, + { + "date": "2017-12-06T00:00:00.000Z", + "open": 167.5, + "high": 170.199997, + "low": 166.460007, + "close": 169.009995, + "adjClose": 167.677139, + "volume": 28560000 + }, + { + "date": "2017-12-07T00:00:00.000Z", + "open": 169.029999, + "high": 170.440002, + "low": 168.910004, + "close": 169.320007, + "adjClose": 167.984711, + "volume": 25673300 + }, + { + "date": "2017-12-08T00:00:00.000Z", + "open": 170.490005, + "high": 171, + "low": 168.820007, + "close": 169.369995, + "adjClose": 168.034302, + "volume": 23355200 + }, + { + "date": "2017-12-11T00:00:00.000Z", + "open": 169.199997, + "high": 172.889999, + "low": 168.789993, + "close": 172.669998, + "adjClose": 171.308289, + "volume": 35273800 + }, + { + "date": "2017-12-12T00:00:00.000Z", + "open": 172.149994, + "high": 172.389999, + "low": 171.460007, + "close": 171.699997, + "adjClose": 170.345932, + "volume": 19409200 + }, + { + "date": "2017-12-13T00:00:00.000Z", + "open": 172.5, + "high": 173.539993, + "low": 172, + "close": 172.270004, + "adjClose": 170.911438, + "volume": 23818400 + }, + { + "date": "2017-12-14T00:00:00.000Z", + "open": 172.399994, + "high": 173.130005, + "low": 171.649994, + "close": 172.220001, + "adjClose": 170.861832, + "volume": 20476500 + }, + { + "date": "2017-12-15T00:00:00.000Z", + "open": 173.630005, + "high": 174.169998, + "low": 172.460007, + "close": 173.970001, + "adjClose": 172.598022, + "volume": 40169300 + }, + { + "date": "2017-12-18T00:00:00.000Z", + "open": 174.880005, + "high": 177.199997, + "low": 174.860001, + "close": 176.419998, + "adjClose": 175.028717, + "volume": 29421100 + }, + { + "date": "2017-12-19T00:00:00.000Z", + "open": 175.029999, + "high": 175.389999, + "low": 174.089996, + "close": 174.539993, + "adjClose": 173.163528, + "volume": 27436400 + }, + { + "date": "2017-12-20T00:00:00.000Z", + "open": 174.869995, + "high": 175.419998, + "low": 173.25, + "close": 174.350006, + "adjClose": 172.975037, + "volume": 23475600 + }, + { + "date": "2017-12-21T00:00:00.000Z", + "open": 174.169998, + "high": 176.020004, + "low": 174.100006, + "close": 175.009995, + "adjClose": 173.629822, + "volume": 20949900 + }, + { + "date": "2017-12-22T00:00:00.000Z", + "open": 174.679993, + "high": 175.419998, + "low": 174.5, + "close": 175.009995, + "adjClose": 173.629822, + "volume": 16349400 + }, + { + "date": "2017-12-26T00:00:00.000Z", + "open": 170.800003, + "high": 171.470001, + "low": 169.679993, + "close": 170.570007, + "adjClose": 169.224838, + "volume": 33185500 + }, + { + "date": "2017-12-27T00:00:00.000Z", + "open": 170.100006, + "high": 170.779999, + "low": 169.710007, + "close": 170.600006, + "adjClose": 169.254608, + "volume": 21498200 + }, + { + "date": "2017-12-28T00:00:00.000Z", + "open": 171, + "high": 171.850006, + "low": 170.479996, + "close": 171.080002, + "adjClose": 169.73082, + "volume": 16480200 + }, + { + "date": "2017-12-29T00:00:00.000Z", + "open": 170.520004, + "high": 170.589996, + "low": 169.220001, + "close": 169.229996, + "adjClose": 167.895416, + "volume": 25999900 + }, + { + "date": "2018-01-02T00:00:00.000Z", + "open": 170.160004, + "high": 172.300003, + "low": 169.259995, + "close": 172.259995, + "adjClose": 170.901505, + "volume": 25555900 + }, + { + "date": "2018-01-03T00:00:00.000Z", + "open": 172.529999, + "high": 174.550003, + "low": 171.960007, + "close": 172.229996, + "adjClose": 170.871735, + "volume": 29517900 + }, + { + "date": "2018-01-04T00:00:00.000Z", + "open": 172.539993, + "high": 173.470001, + "low": 172.080002, + "close": 173.029999, + "adjClose": 171.665436, + "volume": 22434600 + }, + { + "date": "2018-01-05T00:00:00.000Z", + "open": 173.440002, + "high": 175.369995, + "low": 173.050003, + "close": 175, + "adjClose": 173.619904, + "volume": 23660000 + }, + { + "date": "2018-01-08T00:00:00.000Z", + "open": 174.350006, + "high": 175.610001, + "low": 173.929993, + "close": 174.350006, + "adjClose": 172.975037, + "volume": 20567800 + }, + { + "date": "2018-01-09T00:00:00.000Z", + "open": 174.550003, + "high": 175.059998, + "low": 173.410004, + "close": 174.330002, + "adjClose": 172.9552, + "volume": 21584000 + }, + { + "date": "2018-01-10T00:00:00.000Z", + "open": 173.160004, + "high": 174.300003, + "low": 173, + "close": 174.289993, + "adjClose": 172.915497, + "volume": 23959900 + }, + { + "date": "2018-01-11T00:00:00.000Z", + "open": 174.589996, + "high": 175.490005, + "low": 174.490005, + "close": 175.279999, + "adjClose": 173.897705, + "volume": 18667700 + }, + { + "date": "2018-01-12T00:00:00.000Z", + "open": 176.179993, + "high": 177.360001, + "low": 175.649994, + "close": 177.089996, + "adjClose": 175.69342, + "volume": 25418100 + }, + { + "date": "2018-01-16T00:00:00.000Z", + "open": 177.899994, + "high": 179.389999, + "low": 176.139999, + "close": 176.190002, + "adjClose": 174.800537, + "volume": 29565900 + }, + { + "date": "2018-01-17T00:00:00.000Z", + "open": 176.149994, + "high": 179.25, + "low": 175.070007, + "close": 179.100006, + "adjClose": 177.687576, + "volume": 34386800 + }, + { + "date": "2018-01-18T00:00:00.000Z", + "open": 179.369995, + "high": 180.100006, + "low": 178.25, + "close": 179.259995, + "adjClose": 177.846313, + "volume": 31193400 + }, + { + "date": "2018-01-19T00:00:00.000Z", + "open": 178.610001, + "high": 179.580002, + "low": 177.410004, + "close": 178.460007, + "adjClose": 177.052628, + "volume": 32425100 + }, + { + "date": "2018-01-22T00:00:00.000Z", + "open": 177.300003, + "high": 177.779999, + "low": 176.600006, + "close": 177, + "adjClose": 175.604141, + "volume": 27108600 + }, + { + "date": "2018-01-23T00:00:00.000Z", + "open": 177.300003, + "high": 179.440002, + "low": 176.820007, + "close": 177.039993, + "adjClose": 175.643814, + "volume": 32689100 + }, + { + "date": "2018-01-24T00:00:00.000Z", + "open": 177.25, + "high": 177.300003, + "low": 173.199997, + "close": 174.220001, + "adjClose": 172.846054, + "volume": 51105100 + }, + { + "date": "2018-01-25T00:00:00.000Z", + "open": 174.509995, + "high": 174.949997, + "low": 170.529999, + "close": 171.110001, + "adjClose": 169.760574, + "volume": 41529000 + }, + { + "date": "2018-01-26T00:00:00.000Z", + "open": 172, + "high": 172, + "low": 170.059998, + "close": 171.509995, + "adjClose": 170.157425, + "volume": 39143000 + }, + { + "date": "2018-01-29T00:00:00.000Z", + "open": 170.160004, + "high": 170.160004, + "low": 167.070007, + "close": 167.960007, + "adjClose": 166.635422, + "volume": 50640400 + }, + { + "date": "2018-01-30T00:00:00.000Z", + "open": 165.529999, + "high": 167.369995, + "low": 164.699997, + "close": 166.970001, + "adjClose": 165.653244, + "volume": 46048200 + }, + { + "date": "2018-01-31T00:00:00.000Z", + "open": 166.869995, + "high": 168.440002, + "low": 166.5, + "close": 167.429993, + "adjClose": 166.109604, + "volume": 32478900 + }, + { + "date": "2018-02-01T00:00:00.000Z", + "open": 167.169998, + "high": 168.619995, + "low": 166.759995, + "close": 167.779999, + "adjClose": 166.456848, + "volume": 47230800 + }, + { + "date": "2018-02-02T00:00:00.000Z", + "open": 166, + "high": 166.800003, + "low": 160.100006, + "close": 160.5, + "adjClose": 159.234253, + "volume": 86593800 + }, + { + "date": "2018-02-05T00:00:00.000Z", + "open": 159.100006, + "high": 163.880005, + "low": 156, + "close": 156.490005, + "adjClose": 155.25589, + "volume": 72738500 + }, + { + "date": "2018-02-06T00:00:00.000Z", + "open": 154.830002, + "high": 163.720001, + "low": 154, + "close": 163.029999, + "adjClose": 161.744293, + "volume": 68243800 + }, + { + "date": "2018-02-07T00:00:00.000Z", + "open": 163.089996, + "high": 163.399994, + "low": 159.070007, + "close": 159.539993, + "adjClose": 158.281815, + "volume": 51608600 + }, + { + "date": "2018-02-08T00:00:00.000Z", + "open": 160.289993, + "high": 161, + "low": 155.029999, + "close": 155.149994, + "adjClose": 153.926437, + "volume": 54390500 + }, + { + "date": "2018-02-09T00:00:00.000Z", + "open": 157.070007, + "high": 157.889999, + "low": 150.240005, + "close": 156.410004, + "adjClose": 155.809189, + "volume": 70672600 + }, + { + "date": "2018-02-12T00:00:00.000Z", + "open": 158.5, + "high": 163.889999, + "low": 157.509995, + "close": 162.710007, + "adjClose": 162.084991, + "volume": 60819500 + }, + { + "date": "2018-02-13T00:00:00.000Z", + "open": 161.949997, + "high": 164.75, + "low": 161.649994, + "close": 164.339996, + "adjClose": 163.708725, + "volume": 32549200 + }, + { + "date": "2018-02-14T00:00:00.000Z", + "open": 163.039993, + "high": 167.539993, + "low": 162.880005, + "close": 167.369995, + "adjClose": 166.727081, + "volume": 40644900 + }, + { + "date": "2018-02-15T00:00:00.000Z", + "open": 169.789993, + "high": 173.089996, + "low": 169, + "close": 172.990005, + "adjClose": 172.3255, + "volume": 51147200 + }, + { + "date": "2018-02-16T00:00:00.000Z", + "open": 172.360001, + "high": 174.820007, + "low": 171.770004, + "close": 172.429993, + "adjClose": 171.767639, + "volume": 40176100 + }, + { + "date": "2018-02-20T00:00:00.000Z", + "open": 172.050003, + "high": 174.259995, + "low": 171.419998, + "close": 171.850006, + "adjClose": 171.18988, + "volume": 33930500 + }, + { + "date": "2018-02-21T00:00:00.000Z", + "open": 172.830002, + "high": 174.119995, + "low": 171.009995, + "close": 171.070007, + "adjClose": 170.412872, + "volume": 37471600 + }, + { + "date": "2018-02-22T00:00:00.000Z", + "open": 171.800003, + "high": 173.949997, + "low": 171.710007, + "close": 172.5, + "adjClose": 171.837372, + "volume": 30991900 + }, + { + "date": "2018-02-23T00:00:00.000Z", + "open": 173.669998, + "high": 175.649994, + "low": 173.539993, + "close": 175.5, + "adjClose": 174.825851, + "volume": 33812400 + }, + { + "date": "2018-02-26T00:00:00.000Z", + "open": 176.350006, + "high": 179.389999, + "low": 176.210007, + "close": 178.970001, + "adjClose": 178.282532, + "volume": 38162200 + }, + { + "date": "2018-02-27T00:00:00.000Z", + "open": 179.100006, + "high": 180.479996, + "low": 178.160004, + "close": 178.389999, + "adjClose": 177.704758, + "volume": 38928100 + }, + { + "date": "2018-02-28T00:00:00.000Z", + "open": 179.259995, + "high": 180.619995, + "low": 178.050003, + "close": 178.119995, + "adjClose": 177.435791, + "volume": 37782100 + }, + { + "date": "2018-03-01T00:00:00.000Z", + "open": 178.539993, + "high": 179.779999, + "low": 172.660004, + "close": 175, + "adjClose": 174.327774, + "volume": 48802000 + }, + { + "date": "2018-03-02T00:00:00.000Z", + "open": 172.800003, + "high": 176.300003, + "low": 172.449997, + "close": 176.210007, + "adjClose": 175.533142, + "volume": 38454000 + }, + { + "date": "2018-03-05T00:00:00.000Z", + "open": 175.210007, + "high": 177.740005, + "low": 174.520004, + "close": 176.820007, + "adjClose": 176.140793, + "volume": 28401400 + }, + { + "date": "2018-03-06T00:00:00.000Z", + "open": 177.910004, + "high": 178.25, + "low": 176.130005, + "close": 176.669998, + "adjClose": 175.991364, + "volume": 23788500 + }, + { + "date": "2018-03-07T00:00:00.000Z", + "open": 174.940002, + "high": 175.850006, + "low": 174.270004, + "close": 175.029999, + "adjClose": 174.357666, + "volume": 31703500 + }, + { + "date": "2018-03-08T00:00:00.000Z", + "open": 175.479996, + "high": 177.119995, + "low": 175.070007, + "close": 176.940002, + "adjClose": 176.26033, + "volume": 23774100 + }, + { + "date": "2018-03-09T00:00:00.000Z", + "open": 177.960007, + "high": 180, + "low": 177.389999, + "close": 179.979996, + "adjClose": 179.288635, + "volume": 32185200 + }, + { + "date": "2018-03-12T00:00:00.000Z", + "open": 180.289993, + "high": 182.389999, + "low": 180.210007, + "close": 181.720001, + "adjClose": 181.021957, + "volume": 32207100 + }, + { + "date": "2018-03-13T00:00:00.000Z", + "open": 182.589996, + "high": 183.5, + "low": 179.240005, + "close": 179.970001, + "adjClose": 179.278687, + "volume": 31693500 + }, + { + "date": "2018-03-14T00:00:00.000Z", + "open": 180.320007, + "high": 180.520004, + "low": 177.809998, + "close": 178.440002, + "adjClose": 177.754562, + "volume": 29368400 + }, + { + "date": "2018-03-15T00:00:00.000Z", + "open": 178.5, + "high": 180.240005, + "low": 178.070007, + "close": 178.649994, + "adjClose": 177.963745, + "volume": 22743800 + }, + { + "date": "2018-03-16T00:00:00.000Z", + "open": 178.649994, + "high": 179.119995, + "low": 177.619995, + "close": 178.020004, + "adjClose": 177.336182, + "volume": 39404700 + }, + { + "date": "2018-03-19T00:00:00.000Z", + "open": 177.320007, + "high": 177.470001, + "low": 173.660004, + "close": 175.300003, + "adjClose": 174.626633, + "volume": 33446800 + }, + { + "date": "2018-03-20T00:00:00.000Z", + "open": 175.240005, + "high": 176.800003, + "low": 174.940002, + "close": 175.240005, + "adjClose": 174.566864, + "volume": 19649400 + }, + { + "date": "2018-03-21T00:00:00.000Z", + "open": 175.039993, + "high": 175.089996, + "low": 171.259995, + "close": 171.270004, + "adjClose": 170.612106, + "volume": 37054900 + }, + { + "date": "2018-03-22T00:00:00.000Z", + "open": 170, + "high": 172.679993, + "low": 168.600006, + "close": 168.850006, + "adjClose": 168.201401, + "volume": 41490800 + }, + { + "date": "2018-03-23T00:00:00.000Z", + "open": 168.389999, + "high": 169.919998, + "low": 164.940002, + "close": 164.940002, + "adjClose": 164.306427, + "volume": 41028800 + }, + { + "date": "2018-03-26T00:00:00.000Z", + "open": 168.070007, + "high": 173.100006, + "low": 166.440002, + "close": 172.770004, + "adjClose": 172.106354, + "volume": 37541200 + }, + { + "date": "2018-03-27T00:00:00.000Z", + "open": 173.679993, + "high": 175.149994, + "low": 166.919998, + "close": 168.339996, + "adjClose": 167.693359, + "volume": 40922600 + }, + { + "date": "2018-03-28T00:00:00.000Z", + "open": 167.25, + "high": 170.020004, + "low": 165.190002, + "close": 166.479996, + "adjClose": 165.8405, + "volume": 41668500 + }, + { + "date": "2018-03-29T00:00:00.000Z", + "open": 167.809998, + "high": 171.75, + "low": 166.899994, + "close": 167.779999, + "adjClose": 167.135513, + "volume": 38398500 + }, + { + "date": "2018-04-02T00:00:00.000Z", + "open": 166.639999, + "high": 168.940002, + "low": 164.470001, + "close": 166.679993, + "adjClose": 166.039734, + "volume": 37586800 + }, + { + "date": "2018-04-03T00:00:00.000Z", + "open": 167.639999, + "high": 168.75, + "low": 164.880005, + "close": 168.389999, + "adjClose": 167.743164, + "volume": 30278000 + }, + { + "date": "2018-04-04T00:00:00.000Z", + "open": 164.880005, + "high": 172.009995, + "low": 164.770004, + "close": 171.610001, + "adjClose": 170.950806, + "volume": 34605500 + }, + { + "date": "2018-04-05T00:00:00.000Z", + "open": 172.580002, + "high": 174.229996, + "low": 172.080002, + "close": 172.800003, + "adjClose": 172.13623, + "volume": 26933200 + }, + { + "date": "2018-04-06T00:00:00.000Z", + "open": 170.970001, + "high": 172.479996, + "low": 168.199997, + "close": 168.380005, + "adjClose": 167.733215, + "volume": 35005300 + }, + { + "date": "2018-04-09T00:00:00.000Z", + "open": 169.880005, + "high": 173.089996, + "low": 169.850006, + "close": 170.050003, + "adjClose": 169.39679, + "volume": 29017700 + }, + { + "date": "2018-04-10T00:00:00.000Z", + "open": 173, + "high": 174, + "low": 171.529999, + "close": 173.25, + "adjClose": 172.584503, + "volume": 28408600 + }, + { + "date": "2018-04-11T00:00:00.000Z", + "open": 172.229996, + "high": 173.919998, + "low": 171.699997, + "close": 172.440002, + "adjClose": 171.777618, + "volume": 22431600 + }, + { + "date": "2018-04-12T00:00:00.000Z", + "open": 173.410004, + "high": 175, + "low": 173.039993, + "close": 174.139999, + "adjClose": 173.471085, + "volume": 22889300 + }, + { + "date": "2018-04-13T00:00:00.000Z", + "open": 174.779999, + "high": 175.839996, + "low": 173.850006, + "close": 174.729996, + "adjClose": 174.058807, + "volume": 25124300 + }, + { + "date": "2018-04-16T00:00:00.000Z", + "open": 175.029999, + "high": 176.190002, + "low": 174.830002, + "close": 175.820007, + "adjClose": 175.144638, + "volume": 21578400 + }, + { + "date": "2018-04-17T00:00:00.000Z", + "open": 176.490005, + "high": 178.940002, + "low": 176.410004, + "close": 178.240005, + "adjClose": 177.555328, + "volume": 26605400 + }, + { + "date": "2018-04-18T00:00:00.000Z", + "open": 177.809998, + "high": 178.820007, + "low": 176.880005, + "close": 177.839996, + "adjClose": 177.15686, + "volume": 20754500 + }, + { + "date": "2018-04-19T00:00:00.000Z", + "open": 173.759995, + "high": 175.389999, + "low": 172.660004, + "close": 172.800003, + "adjClose": 172.13623, + "volume": 34808800 + }, + { + "date": "2018-04-20T00:00:00.000Z", + "open": 170.600006, + "high": 171.220001, + "low": 165.429993, + "close": 165.720001, + "adjClose": 165.08342, + "volume": 65491100 + }, + { + "date": "2018-04-23T00:00:00.000Z", + "open": 166.830002, + "high": 166.919998, + "low": 164.089996, + "close": 165.240005, + "adjClose": 164.60527, + "volume": 36515500 + }, + { + "date": "2018-04-24T00:00:00.000Z", + "open": 165.669998, + "high": 166.330002, + "low": 161.220001, + "close": 162.940002, + "adjClose": 162.314102, + "volume": 33692000 + }, + { + "date": "2018-04-25T00:00:00.000Z", + "open": 162.619995, + "high": 165.419998, + "low": 162.410004, + "close": 163.649994, + "adjClose": 163.021362, + "volume": 28382100 + }, + { + "date": "2018-04-26T00:00:00.000Z", + "open": 164.119995, + "high": 165.729996, + "low": 163.369995, + "close": 164.220001, + "adjClose": 163.589188, + "volume": 27963000 + }, + { + "date": "2018-04-27T00:00:00.000Z", + "open": 164, + "high": 164.330002, + "low": 160.630005, + "close": 162.320007, + "adjClose": 161.696487, + "volume": 35655800 + }, + { + "date": "2018-04-30T00:00:00.000Z", + "open": 162.130005, + "high": 167.259995, + "low": 161.839996, + "close": 165.259995, + "adjClose": 164.625183, + "volume": 42427400 + }, + { + "date": "2018-05-01T00:00:00.000Z", + "open": 166.410004, + "high": 169.199997, + "low": 165.270004, + "close": 169.100006, + "adjClose": 168.450439, + "volume": 53569400 + }, + { + "date": "2018-05-02T00:00:00.000Z", + "open": 175.229996, + "high": 177.75, + "low": 173.800003, + "close": 176.570007, + "adjClose": 175.891754, + "volume": 66539400 + }, + { + "date": "2018-05-03T00:00:00.000Z", + "open": 175.880005, + "high": 177.5, + "low": 174.440002, + "close": 176.889999, + "adjClose": 176.21051, + "volume": 34068200 + }, + { + "date": "2018-05-04T00:00:00.000Z", + "open": 178.25, + "high": 184.25, + "low": 178.169998, + "close": 183.830002, + "adjClose": 183.123856, + "volume": 56201300 + }, + { + "date": "2018-05-07T00:00:00.000Z", + "open": 185.179993, + "high": 187.669998, + "low": 184.75, + "close": 185.160004, + "adjClose": 184.448746, + "volume": 42451400 + }, + { + "date": "2018-05-08T00:00:00.000Z", + "open": 184.990005, + "high": 186.220001, + "low": 183.669998, + "close": 186.050003, + "adjClose": 185.335327, + "volume": 28402800 + }, + { + "date": "2018-05-09T00:00:00.000Z", + "open": 186.550003, + "high": 187.399994, + "low": 185.220001, + "close": 187.360001, + "adjClose": 186.640305, + "volume": 23211200 + }, + { + "date": "2018-05-10T00:00:00.000Z", + "open": 187.740005, + "high": 190.369995, + "low": 187.649994, + "close": 190.039993, + "adjClose": 189.309998, + "volume": 27989300 + }, + { + "date": "2018-05-11T00:00:00.000Z", + "open": 189.490005, + "high": 190.059998, + "low": 187.449997, + "close": 188.589996, + "adjClose": 188.589996, + "volume": 25806600 + } +] diff --git a/docs/static/data/examples/date/civilization-timeline.csv b/docs/static/data/examples/date/civilization-timeline.csv new file mode 100644 index 000000000..33dd19b4b --- /dev/null +++ b/docs/static/data/examples/date/civilization-timeline.csv @@ -0,0 +1,52 @@ +civilization,start,end,startLabel,endLabel,region,timeline +Aegean civilization,-2000,-1200,,,Europe (and colonial offshoots),ANCIENT WORLD +"Age of pre-colonial civilization (Christian, Islamic, and traditional kingdoms)",650,1880,,,Sub-Saharan Africa,MEDIEVAL WORLD +Age of Turkic empires,500,1200,,,Middle East,MEDIEVAL WORLD +Age of united Caliphate,650,900,,,Middle East,MEDIEVAL WORLD +Ancient Andean region,-1000,500,,,pre-colonial Americas,ANCIENT WORLD +Ancient China,-2000,500,,,East Asia,ANCIENT WORLD +Ancient Steppe empires,-1000,500,,,the Steppe,ANCIENT WORLD +British India,1800,1945,,WWII,South Asia,MODERN WORLD +Classic age of Mesoamerica,100,900,,,pre-colonial Americas,ANCIENT WORLD +Colonial Africa,1880,1980,,,Sub-Saharan Africa,MODERN WORLD +Colonial United States,1500,1776,,,Europe (and colonial offshoots),MODERN WORLD +Early Islamic period,1200,1500,,,South Asia,MEDIEVAL WORLD +Early modern China,1500,1918,,WWI,East Asia,MODERN WORLD +Early modern Europe,1500,1800,,,Europe (and colonial offshoots),MODERN WORLD +Early Nubian civilization,-2000,-1000,,,Sub-Saharan Africa,ANCIENT WORLD +Egyptian civilization,-3000,-550,,,Middle East,ANCIENT WORLD +First Persian Empire,-550,-330,,,Middle East,ANCIENT WORLD +Formative age of Mesoamerica,-1500,100,,,pre-colonial Americas,ANCIENT WORLD +Formative Japan (age of Yamato rule),500,800,,,East Asia,MEDIEVAL WORLD +Formative US,1776,1865,,,Europe (and colonial offshoots),MODERN WORLD +Fractured Islamic world,900,2018,,present,Middle East,MODERN WORLD +Great power US,1865,1945,,WWII,Europe (and colonial offshoots),MODERN WORLD +Greek age,-1200,0,,,Europe (and colonial offshoots),ANCIENT WORLD +Heian age,800,1200,,,East Asia,MEDIEVAL WORLD +Imperial Japan,1870,1945,,WWII,East Asia,MODERN WORLD +Indian kingdom age,-500,1200,,,South Asia,ANCIENT WORLD +Indus civilization,-2500,-1500,,,South Asia,ANCIENT WORLD +Inter-Persian period,-330,200,,,Middle East,ANCIENT WORLD +Kush,-1000,300,,,Sub-Saharan Africa,ANCIENT WORLD +Medieval Andean region,500,1530,,,pre-colonial Americas,MEDIEVAL WORLD +Medieval China,500,1500,,,East Asia,MEDIEVAL WORLD +Medieval Europe,500,1500,,,Europe (and colonial offshoots),MEDIEVAL WORLD +Mesopotamian civilization,-3500,-550,,,Middle East,ANCIENT WORLD +Modern Africa,1980,2018,WWII,present,Sub-Saharan Africa,MODERN WORLD +Modern Europe,1800,2018,,present,Europe (and colonial offshoots),MODERN WORLD +Modern India,1945,2018,,present,South Asia,MODERN WORLD +Modern Japan,1945,2018,,present,East Asia,MODERN WORLD +Mongol Empire,1200,1300,,,the Steppe,MEDIEVAL WORLD +Mughal Empire,1500,1800,,,South Asia,MODERN WORLD +Peak of Aksum,300,650,,,Sub-Saharan Africa,MEDIEVAL WORLD +People's Republic of China,1945,2018,WWII,present,East Asia,MODERN WORLD +Postclassic age of Mesoamerica,900,1520,,,pre-colonial Americas,MEDIEVAL WORLD +Ptolemaic Egypt,-330,0,,,Middle East,ANCIENT WORLD +Republic of China,1918,1945,,,East Asia,MODERN WORLD +Roman > Byzantine Egypt,0,650,,,Middle East,ANCIENT WORLD +Roman Empire,0,500,,,Europe (and colonial offshoots),ANCIENT WORLD +Roman Republic,-500,0,,,Europe (and colonial offshoots),ANCIENT WORLD +Second Persian Empire,-200,650,,,Middle East,ANCIENT WORLD +Shogunate,1200,1870,,,East Asia,MEDIEVAL WORLD +Superpower US,1945,2018,,present,Europe (and colonial offshoots),MODERN WORLD +Vedic age,-1500,-500,,,South Asia,ANCIENT WORLD \ No newline at end of file diff --git a/docs/static/data/examples/date/civilization-timeline.d.ts b/docs/static/data/examples/date/civilization-timeline.d.ts new file mode 100644 index 000000000..8f147c710 --- /dev/null +++ b/docs/static/data/examples/date/civilization-timeline.d.ts @@ -0,0 +1,9 @@ +export type CivilizationTimeline = { + civilization: string; + start: number; + end: number; + startLabel: string; + endLabel: string; + region: string; + timeline: string; +}; diff --git a/docs/static/data/examples/date/daily-temperature.json b/docs/static/data/examples/date/daily-temperature.json new file mode 100644 index 000000000..b6177a3e6 --- /dev/null +++ b/docs/static/data/examples/date/daily-temperature.json @@ -0,0 +1,1466 @@ +[ + { + "date": "2011-10-01T00:00:00.000Z", + "value": 62.7 + }, + { + "date": "2011-10-02T00:00:00.000Z", + "value": 59.9 + }, + { + "date": "2011-10-03T00:00:00.000Z", + "value": 59.1 + }, + { + "date": "2011-10-04T00:00:00.000Z", + "value": 58.8 + }, + { + "date": "2011-10-05T00:00:00.000Z", + "value": 58.7 + }, + { + "date": "2011-10-06T00:00:00.000Z", + "value": 57 + }, + { + "date": "2011-10-07T00:00:00.000Z", + "value": 56.7 + }, + { + "date": "2011-10-08T00:00:00.000Z", + "value": 56.8 + }, + { + "date": "2011-10-09T00:00:00.000Z", + "value": 56.7 + }, + { + "date": "2011-10-10T00:00:00.000Z", + "value": 60.1 + }, + { + "date": "2011-10-11T00:00:00.000Z", + "value": 61.1 + }, + { + "date": "2011-10-12T00:00:00.000Z", + "value": 61.5 + }, + { + "date": "2011-10-13T00:00:00.000Z", + "value": 64.3 + }, + { + "date": "2011-10-14T00:00:00.000Z", + "value": 67.1 + }, + { + "date": "2011-10-15T00:00:00.000Z", + "value": 64.6 + }, + { + "date": "2011-10-16T00:00:00.000Z", + "value": 61.6 + }, + { + "date": "2011-10-17T00:00:00.000Z", + "value": 61.1 + }, + { + "date": "2011-10-18T00:00:00.000Z", + "value": 59.2 + }, + { + "date": "2011-10-19T00:00:00.000Z", + "value": 58.9 + }, + { + "date": "2011-10-20T00:00:00.000Z", + "value": 57.2 + }, + { + "date": "2011-10-21T00:00:00.000Z", + "value": 56.4 + }, + { + "date": "2011-10-22T00:00:00.000Z", + "value": 60.7 + }, + { + "date": "2011-10-23T00:00:00.000Z", + "value": 65.1 + }, + { + "date": "2011-10-24T00:00:00.000Z", + "value": 60.9 + }, + { + "date": "2011-10-25T00:00:00.000Z", + "value": 56.1 + }, + { + "date": "2011-10-26T00:00:00.000Z", + "value": 54.6 + }, + { + "date": "2011-10-27T00:00:00.000Z", + "value": 56.1 + }, + { + "date": "2011-10-28T00:00:00.000Z", + "value": 58.1 + }, + { + "date": "2011-10-29T00:00:00.000Z", + "value": 57.5 + }, + { + "date": "2011-10-30T00:00:00.000Z", + "value": 57.7 + }, + { + "date": "2011-10-31T00:00:00.000Z", + "value": 55.1 + }, + { + "date": "2011-11-01T00:00:00.000Z", + "value": 57.9 + }, + { + "date": "2011-11-02T00:00:00.000Z", + "value": 64.6 + }, + { + "date": "2011-11-03T00:00:00.000Z", + "value": 56.2 + }, + { + "date": "2011-11-04T00:00:00.000Z", + "value": 50.5 + }, + { + "date": "2011-11-05T00:00:00.000Z", + "value": 51.3 + }, + { + "date": "2011-11-06T00:00:00.000Z", + "value": 52.6 + }, + { + "date": "2011-11-07T00:00:00.000Z", + "value": 51.4 + }, + { + "date": "2011-11-08T00:00:00.000Z", + "value": 50.6 + }, + { + "date": "2011-11-09T00:00:00.000Z", + "value": 54.6 + }, + { + "date": "2011-11-10T00:00:00.000Z", + "value": 55.6 + }, + { + "date": "2011-11-11T00:00:00.000Z", + "value": 53.9 + }, + { + "date": "2011-11-12T00:00:00.000Z", + "value": 54 + }, + { + "date": "2011-11-13T00:00:00.000Z", + "value": 53.8 + }, + { + "date": "2011-11-14T00:00:00.000Z", + "value": 53.5 + }, + { + "date": "2011-11-15T00:00:00.000Z", + "value": 53.4 + }, + { + "date": "2011-11-16T00:00:00.000Z", + "value": 52.2 + }, + { + "date": "2011-11-17T00:00:00.000Z", + "value": 52.7 + }, + { + "date": "2011-11-18T00:00:00.000Z", + "value": 53.1 + }, + { + "date": "2011-11-19T00:00:00.000Z", + "value": 49 + }, + { + "date": "2011-11-20T00:00:00.000Z", + "value": 50.4 + }, + { + "date": "2011-11-21T00:00:00.000Z", + "value": 51.1 + }, + { + "date": "2011-11-22T00:00:00.000Z", + "value": 52.3 + }, + { + "date": "2011-11-23T00:00:00.000Z", + "value": 54.6 + }, + { + "date": "2011-11-24T00:00:00.000Z", + "value": 55.1 + }, + { + "date": "2011-11-25T00:00:00.000Z", + "value": 51.5 + }, + { + "date": "2011-11-26T00:00:00.000Z", + "value": 53.6 + }, + { + "date": "2011-11-27T00:00:00.000Z", + "value": 52.3 + }, + { + "date": "2011-11-28T00:00:00.000Z", + "value": 51 + }, + { + "date": "2011-11-29T00:00:00.000Z", + "value": 49.5 + }, + { + "date": "2011-11-30T00:00:00.000Z", + "value": 49.8 + }, + { + "date": "2011-12-01T00:00:00.000Z", + "value": 60.4 + }, + { + "date": "2011-12-02T00:00:00.000Z", + "value": 62.2 + }, + { + "date": "2011-12-03T00:00:00.000Z", + "value": 58.3 + }, + { + "date": "2011-12-04T00:00:00.000Z", + "value": 52.7 + }, + { + "date": "2011-12-05T00:00:00.000Z", + "value": 51.5 + }, + { + "date": "2011-12-06T00:00:00.000Z", + "value": 49.9 + }, + { + "date": "2011-12-07T00:00:00.000Z", + "value": 48.6 + }, + { + "date": "2011-12-08T00:00:00.000Z", + "value": 46.4 + }, + { + "date": "2011-12-09T00:00:00.000Z", + "value": 49.8 + }, + { + "date": "2011-12-10T00:00:00.000Z", + "value": 52.1 + }, + { + "date": "2011-12-11T00:00:00.000Z", + "value": 48.8 + }, + { + "date": "2011-12-12T00:00:00.000Z", + "value": 47.4 + }, + { + "date": "2011-12-13T00:00:00.000Z", + "value": 47.2 + }, + { + "date": "2011-12-14T00:00:00.000Z", + "value": 46.1 + }, + { + "date": "2011-12-15T00:00:00.000Z", + "value": 48.8 + }, + { + "date": "2011-12-16T00:00:00.000Z", + "value": 47.9 + }, + { + "date": "2011-12-17T00:00:00.000Z", + "value": 49.8 + }, + { + "date": "2011-12-18T00:00:00.000Z", + "value": 49.1 + }, + { + "date": "2011-12-19T00:00:00.000Z", + "value": 48.3 + }, + { + "date": "2011-12-20T00:00:00.000Z", + "value": 49.3 + }, + { + "date": "2011-12-21T00:00:00.000Z", + "value": 48.4 + }, + { + "date": "2011-12-22T00:00:00.000Z", + "value": 53.3 + }, + { + "date": "2011-12-23T00:00:00.000Z", + "value": 47.5 + }, + { + "date": "2011-12-24T00:00:00.000Z", + "value": 47.9 + }, + { + "date": "2011-12-25T00:00:00.000Z", + "value": 48.9 + }, + { + "date": "2011-12-26T00:00:00.000Z", + "value": 45.9 + }, + { + "date": "2011-12-27T00:00:00.000Z", + "value": 47.2 + }, + { + "date": "2011-12-28T00:00:00.000Z", + "value": 48.9 + }, + { + "date": "2011-12-29T00:00:00.000Z", + "value": 50.9 + }, + { + "date": "2011-12-30T00:00:00.000Z", + "value": 52.9 + }, + { + "date": "2011-12-31T00:00:00.000Z", + "value": 50.1 + }, + { + "date": "2012-01-01T00:00:00.000Z", + "value": 53.9 + }, + { + "date": "2012-01-02T00:00:00.000Z", + "value": 53.1 + }, + { + "date": "2012-01-03T00:00:00.000Z", + "value": 49.7 + }, + { + "date": "2012-01-04T00:00:00.000Z", + "value": 52.7 + }, + { + "date": "2012-01-05T00:00:00.000Z", + "value": 52.6 + }, + { + "date": "2012-01-06T00:00:00.000Z", + "value": 49 + }, + { + "date": "2012-01-07T00:00:00.000Z", + "value": 51 + }, + { + "date": "2012-01-08T00:00:00.000Z", + "value": 56.8 + }, + { + "date": "2012-01-09T00:00:00.000Z", + "value": 52.3 + }, + { + "date": "2012-01-10T00:00:00.000Z", + "value": 51.6 + }, + { + "date": "2012-01-11T00:00:00.000Z", + "value": 49.8 + }, + { + "date": "2012-01-12T00:00:00.000Z", + "value": 51.9 + }, + { + "date": "2012-01-13T00:00:00.000Z", + "value": 53.7 + }, + { + "date": "2012-01-14T00:00:00.000Z", + "value": 52.9 + }, + { + "date": "2012-01-15T00:00:00.000Z", + "value": 49.7 + }, + { + "date": "2012-01-16T00:00:00.000Z", + "value": 45.3 + }, + { + "date": "2012-01-17T00:00:00.000Z", + "value": 43.6 + }, + { + "date": "2012-01-18T00:00:00.000Z", + "value": 45 + }, + { + "date": "2012-01-19T00:00:00.000Z", + "value": 47.3 + }, + { + "date": "2012-01-20T00:00:00.000Z", + "value": 51.4 + }, + { + "date": "2012-01-21T00:00:00.000Z", + "value": 53.7 + }, + { + "date": "2012-01-22T00:00:00.000Z", + "value": 48.3 + }, + { + "date": "2012-01-23T00:00:00.000Z", + "value": 52.9 + }, + { + "date": "2012-01-24T00:00:00.000Z", + "value": 49.1 + }, + { + "date": "2012-01-25T00:00:00.000Z", + "value": 52.1 + }, + { + "date": "2012-01-26T00:00:00.000Z", + "value": 53.6 + }, + { + "date": "2012-01-27T00:00:00.000Z", + "value": 50.4 + }, + { + "date": "2012-01-28T00:00:00.000Z", + "value": 50.3 + }, + { + "date": "2012-01-29T00:00:00.000Z", + "value": 53.8 + }, + { + "date": "2012-01-30T00:00:00.000Z", + "value": 51.9 + }, + { + "date": "2012-01-31T00:00:00.000Z", + "value": 50 + }, + { + "date": "2012-02-01T00:00:00.000Z", + "value": 50 + }, + { + "date": "2012-02-02T00:00:00.000Z", + "value": 51.3 + }, + { + "date": "2012-02-03T00:00:00.000Z", + "value": 51.5 + }, + { + "date": "2012-02-04T00:00:00.000Z", + "value": 52 + }, + { + "date": "2012-02-05T00:00:00.000Z", + "value": 53.8 + }, + { + "date": "2012-02-06T00:00:00.000Z", + "value": 54.6 + }, + { + "date": "2012-02-07T00:00:00.000Z", + "value": 54.3 + }, + { + "date": "2012-02-08T00:00:00.000Z", + "value": 51.9 + }, + { + "date": "2012-02-09T00:00:00.000Z", + "value": 53.8 + }, + { + "date": "2012-02-10T00:00:00.000Z", + "value": 53.9 + }, + { + "date": "2012-02-11T00:00:00.000Z", + "value": 52.3 + }, + { + "date": "2012-02-12T00:00:00.000Z", + "value": 50.1 + }, + { + "date": "2012-02-13T00:00:00.000Z", + "value": 49.5 + }, + { + "date": "2012-02-14T00:00:00.000Z", + "value": 48.6 + }, + { + "date": "2012-02-15T00:00:00.000Z", + "value": 49.9 + }, + { + "date": "2012-02-16T00:00:00.000Z", + "value": 52.4 + }, + { + "date": "2012-02-17T00:00:00.000Z", + "value": 49.9 + }, + { + "date": "2012-02-18T00:00:00.000Z", + "value": 51.6 + }, + { + "date": "2012-02-19T00:00:00.000Z", + "value": 47.8 + }, + { + "date": "2012-02-20T00:00:00.000Z", + "value": 48.7 + }, + { + "date": "2012-02-21T00:00:00.000Z", + "value": 49.7 + }, + { + "date": "2012-02-22T00:00:00.000Z", + "value": 53.4 + }, + { + "date": "2012-02-23T00:00:00.000Z", + "value": 54.1 + }, + { + "date": "2012-02-24T00:00:00.000Z", + "value": 55.9 + }, + { + "date": "2012-02-25T00:00:00.000Z", + "value": 51.7 + }, + { + "date": "2012-02-26T00:00:00.000Z", + "value": 47.7 + }, + { + "date": "2012-02-27T00:00:00.000Z", + "value": 45.4 + }, + { + "date": "2012-02-28T00:00:00.000Z", + "value": 47 + }, + { + "date": "2012-02-29T00:00:00.000Z", + "value": 49.8 + }, + { + "date": "2012-03-01T00:00:00.000Z", + "value": 48.9 + }, + { + "date": "2012-03-02T00:00:00.000Z", + "value": 48.1 + }, + { + "date": "2012-03-03T00:00:00.000Z", + "value": 50.7 + }, + { + "date": "2012-03-04T00:00:00.000Z", + "value": 55 + }, + { + "date": "2012-03-05T00:00:00.000Z", + "value": 48.8 + }, + { + "date": "2012-03-06T00:00:00.000Z", + "value": 48.4 + }, + { + "date": "2012-03-07T00:00:00.000Z", + "value": 49.9 + }, + { + "date": "2012-03-08T00:00:00.000Z", + "value": 49.2 + }, + { + "date": "2012-03-09T00:00:00.000Z", + "value": 51.7 + }, + { + "date": "2012-03-10T00:00:00.000Z", + "value": 49.3 + }, + { + "date": "2012-03-11T00:00:00.000Z", + "value": 50 + }, + { + "date": "2012-03-12T00:00:00.000Z", + "value": 48.6 + }, + { + "date": "2012-03-13T00:00:00.000Z", + "value": 53.9 + }, + { + "date": "2012-03-14T00:00:00.000Z", + "value": 55.2 + }, + { + "date": "2012-03-15T00:00:00.000Z", + "value": 55.9 + }, + { + "date": "2012-03-16T00:00:00.000Z", + "value": 54.6 + }, + { + "date": "2012-03-17T00:00:00.000Z", + "value": 48.2 + }, + { + "date": "2012-03-18T00:00:00.000Z", + "value": 47.1 + }, + { + "date": "2012-03-19T00:00:00.000Z", + "value": 45.8 + }, + { + "date": "2012-03-20T00:00:00.000Z", + "value": 49.7 + }, + { + "date": "2012-03-21T00:00:00.000Z", + "value": 51.4 + }, + { + "date": "2012-03-22T00:00:00.000Z", + "value": 51.4 + }, + { + "date": "2012-03-23T00:00:00.000Z", + "value": 48.4 + }, + { + "date": "2012-03-24T00:00:00.000Z", + "value": 49 + }, + { + "date": "2012-03-25T00:00:00.000Z", + "value": 46.4 + }, + { + "date": "2012-03-26T00:00:00.000Z", + "value": 49.7 + }, + { + "date": "2012-03-27T00:00:00.000Z", + "value": 54.1 + }, + { + "date": "2012-03-28T00:00:00.000Z", + "value": 54.6 + }, + { + "date": "2012-03-29T00:00:00.000Z", + "value": 52.3 + }, + { + "date": "2012-03-30T00:00:00.000Z", + "value": 54.5 + }, + { + "date": "2012-03-31T00:00:00.000Z", + "value": 56.2 + }, + { + "date": "2012-04-01T00:00:00.000Z", + "value": 51.1 + }, + { + "date": "2012-04-02T00:00:00.000Z", + "value": 50.5 + }, + { + "date": "2012-04-03T00:00:00.000Z", + "value": 52.2 + }, + { + "date": "2012-04-04T00:00:00.000Z", + "value": 50.6 + }, + { + "date": "2012-04-05T00:00:00.000Z", + "value": 47.9 + }, + { + "date": "2012-04-06T00:00:00.000Z", + "value": 47.4 + }, + { + "date": "2012-04-07T00:00:00.000Z", + "value": 49.4 + }, + { + "date": "2012-04-08T00:00:00.000Z", + "value": 50 + }, + { + "date": "2012-04-09T00:00:00.000Z", + "value": 51.3 + }, + { + "date": "2012-04-10T00:00:00.000Z", + "value": 53.8 + }, + { + "date": "2012-04-11T00:00:00.000Z", + "value": 52.9 + }, + { + "date": "2012-04-12T00:00:00.000Z", + "value": 53.9 + }, + { + "date": "2012-04-13T00:00:00.000Z", + "value": 50.2 + }, + { + "date": "2012-04-14T00:00:00.000Z", + "value": 50.9 + }, + { + "date": "2012-04-15T00:00:00.000Z", + "value": 51.5 + }, + { + "date": "2012-04-16T00:00:00.000Z", + "value": 51.9 + }, + { + "date": "2012-04-17T00:00:00.000Z", + "value": 53.2 + }, + { + "date": "2012-04-18T00:00:00.000Z", + "value": 53 + }, + { + "date": "2012-04-19T00:00:00.000Z", + "value": 55.1 + }, + { + "date": "2012-04-20T00:00:00.000Z", + "value": 55.8 + }, + { + "date": "2012-04-21T00:00:00.000Z", + "value": 58 + }, + { + "date": "2012-04-22T00:00:00.000Z", + "value": 52.8 + }, + { + "date": "2012-04-23T00:00:00.000Z", + "value": 55.1 + }, + { + "date": "2012-04-24T00:00:00.000Z", + "value": 57.9 + }, + { + "date": "2012-04-25T00:00:00.000Z", + "value": 57.5 + }, + { + "date": "2012-04-26T00:00:00.000Z", + "value": 55.3 + }, + { + "date": "2012-04-27T00:00:00.000Z", + "value": 53.5 + }, + { + "date": "2012-04-28T00:00:00.000Z", + "value": 54.7 + }, + { + "date": "2012-04-29T00:00:00.000Z", + "value": 54 + }, + { + "date": "2012-04-30T00:00:00.000Z", + "value": 53.4 + }, + { + "date": "2012-05-01T00:00:00.000Z", + "value": 52.7 + }, + { + "date": "2012-05-02T00:00:00.000Z", + "value": 50.7 + }, + { + "date": "2012-05-03T00:00:00.000Z", + "value": 52.6 + }, + { + "date": "2012-05-04T00:00:00.000Z", + "value": 53.4 + }, + { + "date": "2012-05-05T00:00:00.000Z", + "value": 53.1 + }, + { + "date": "2012-05-06T00:00:00.000Z", + "value": 56.5 + }, + { + "date": "2012-05-07T00:00:00.000Z", + "value": 55.3 + }, + { + "date": "2012-05-08T00:00:00.000Z", + "value": 52 + }, + { + "date": "2012-05-09T00:00:00.000Z", + "value": 52.4 + }, + { + "date": "2012-05-10T00:00:00.000Z", + "value": 53.4 + }, + { + "date": "2012-05-11T00:00:00.000Z", + "value": 53.1 + }, + { + "date": "2012-05-12T00:00:00.000Z", + "value": 49.9 + }, + { + "date": "2012-05-13T00:00:00.000Z", + "value": 52 + }, + { + "date": "2012-05-14T00:00:00.000Z", + "value": 56 + }, + { + "date": "2012-05-15T00:00:00.000Z", + "value": 53 + }, + { + "date": "2012-05-16T00:00:00.000Z", + "value": 51 + }, + { + "date": "2012-05-17T00:00:00.000Z", + "value": 51.4 + }, + { + "date": "2012-05-18T00:00:00.000Z", + "value": 52.2 + }, + { + "date": "2012-05-19T00:00:00.000Z", + "value": 52.4 + }, + { + "date": "2012-05-20T00:00:00.000Z", + "value": 54.5 + }, + { + "date": "2012-05-21T00:00:00.000Z", + "value": 52.8 + }, + { + "date": "2012-05-22T00:00:00.000Z", + "value": 53.9 + }, + { + "date": "2012-05-23T00:00:00.000Z", + "value": 56.5 + }, + { + "date": "2012-05-24T00:00:00.000Z", + "value": 54.7 + }, + { + "date": "2012-05-25T00:00:00.000Z", + "value": 52.5 + }, + { + "date": "2012-05-26T00:00:00.000Z", + "value": 52.1 + }, + { + "date": "2012-05-27T00:00:00.000Z", + "value": 52.2 + }, + { + "date": "2012-05-28T00:00:00.000Z", + "value": 52.9 + }, + { + "date": "2012-05-29T00:00:00.000Z", + "value": 52.1 + }, + { + "date": "2012-05-30T00:00:00.000Z", + "value": 52.1 + }, + { + "date": "2012-05-31T00:00:00.000Z", + "value": 53.3 + }, + { + "date": "2012-06-01T00:00:00.000Z", + "value": 54.8 + }, + { + "date": "2012-06-02T00:00:00.000Z", + "value": 54 + }, + { + "date": "2012-06-03T00:00:00.000Z", + "value": 52.3 + }, + { + "date": "2012-06-04T00:00:00.000Z", + "value": 55.3 + }, + { + "date": "2012-06-05T00:00:00.000Z", + "value": 53.5 + }, + { + "date": "2012-06-06T00:00:00.000Z", + "value": 54.1 + }, + { + "date": "2012-06-07T00:00:00.000Z", + "value": 53.9 + }, + { + "date": "2012-06-08T00:00:00.000Z", + "value": 54.4 + }, + { + "date": "2012-06-09T00:00:00.000Z", + "value": 55 + }, + { + "date": "2012-06-10T00:00:00.000Z", + "value": 60 + }, + { + "date": "2012-06-11T00:00:00.000Z", + "value": 57.2 + }, + { + "date": "2012-06-12T00:00:00.000Z", + "value": 55.1 + }, + { + "date": "2012-06-13T00:00:00.000Z", + "value": 53.3 + }, + { + "date": "2012-06-14T00:00:00.000Z", + "value": 53.4 + }, + { + "date": "2012-06-15T00:00:00.000Z", + "value": 54.6 + }, + { + "date": "2012-06-16T00:00:00.000Z", + "value": 57 + }, + { + "date": "2012-06-17T00:00:00.000Z", + "value": 55.6 + }, + { + "date": "2012-06-18T00:00:00.000Z", + "value": 52.5 + }, + { + "date": "2012-06-19T00:00:00.000Z", + "value": 53.9 + }, + { + "date": "2012-06-20T00:00:00.000Z", + "value": 55.3 + }, + { + "date": "2012-06-21T00:00:00.000Z", + "value": 53.3 + }, + { + "date": "2012-06-22T00:00:00.000Z", + "value": 54.1 + }, + { + "date": "2012-06-23T00:00:00.000Z", + "value": 55.2 + }, + { + "date": "2012-06-24T00:00:00.000Z", + "value": 55.8 + }, + { + "date": "2012-06-25T00:00:00.000Z", + "value": 56.8 + }, + { + "date": "2012-06-26T00:00:00.000Z", + "value": 57.5 + }, + { + "date": "2012-06-27T00:00:00.000Z", + "value": 57.7 + }, + { + "date": "2012-06-28T00:00:00.000Z", + "value": 56.6 + }, + { + "date": "2012-06-29T00:00:00.000Z", + "value": 56.4 + }, + { + "date": "2012-06-30T00:00:00.000Z", + "value": 58.4 + }, + { + "date": "2012-07-01T00:00:00.000Z", + "value": 58.8 + }, + { + "date": "2012-07-02T00:00:00.000Z", + "value": 56.4 + }, + { + "date": "2012-07-03T00:00:00.000Z", + "value": 56.5 + }, + { + "date": "2012-07-04T00:00:00.000Z", + "value": 55.8 + }, + { + "date": "2012-07-05T00:00:00.000Z", + "value": 54.8 + }, + { + "date": "2012-07-06T00:00:00.000Z", + "value": 54.9 + }, + { + "date": "2012-07-07T00:00:00.000Z", + "value": 54.7 + }, + { + "date": "2012-07-08T00:00:00.000Z", + "value": 52.8 + }, + { + "date": "2012-07-09T00:00:00.000Z", + "value": 53.7 + }, + { + "date": "2012-07-10T00:00:00.000Z", + "value": 53.1 + }, + { + "date": "2012-07-11T00:00:00.000Z", + "value": 52.7 + }, + { + "date": "2012-07-12T00:00:00.000Z", + "value": 52 + }, + { + "date": "2012-07-13T00:00:00.000Z", + "value": 53.4 + }, + { + "date": "2012-07-14T00:00:00.000Z", + "value": 54 + }, + { + "date": "2012-07-15T00:00:00.000Z", + "value": 54 + }, + { + "date": "2012-07-16T00:00:00.000Z", + "value": 54.5 + }, + { + "date": "2012-07-17T00:00:00.000Z", + "value": 56.7 + }, + { + "date": "2012-07-18T00:00:00.000Z", + "value": 57.5 + }, + { + "date": "2012-07-19T00:00:00.000Z", + "value": 57.1 + }, + { + "date": "2012-07-20T00:00:00.000Z", + "value": 58.1 + }, + { + "date": "2012-07-21T00:00:00.000Z", + "value": 57.6 + }, + { + "date": "2012-07-22T00:00:00.000Z", + "value": 56 + }, + { + "date": "2012-07-23T00:00:00.000Z", + "value": 56.6 + }, + { + "date": "2012-07-24T00:00:00.000Z", + "value": 57.8 + }, + { + "date": "2012-07-25T00:00:00.000Z", + "value": 57.5 + }, + { + "date": "2012-07-26T00:00:00.000Z", + "value": 56.4 + }, + { + "date": "2012-07-27T00:00:00.000Z", + "value": 55.3 + }, + { + "date": "2012-07-28T00:00:00.000Z", + "value": 55 + }, + { + "date": "2012-07-29T00:00:00.000Z", + "value": 55.6 + }, + { + "date": "2012-07-30T00:00:00.000Z", + "value": 55.6 + }, + { + "date": "2012-07-31T00:00:00.000Z", + "value": 55.9 + }, + { + "date": "2012-08-01T00:00:00.000Z", + "value": 55.4 + }, + { + "date": "2012-08-02T00:00:00.000Z", + "value": 54.4 + }, + { + "date": "2012-08-03T00:00:00.000Z", + "value": 53.7 + }, + { + "date": "2012-08-04T00:00:00.000Z", + "value": 54.1 + }, + { + "date": "2012-08-05T00:00:00.000Z", + "value": 57.8 + }, + { + "date": "2012-08-06T00:00:00.000Z", + "value": 58.2 + }, + { + "date": "2012-08-07T00:00:00.000Z", + "value": 58 + }, + { + "date": "2012-08-08T00:00:00.000Z", + "value": 57 + }, + { + "date": "2012-08-09T00:00:00.000Z", + "value": 55 + }, + { + "date": "2012-08-10T00:00:00.000Z", + "value": 54.8 + }, + { + "date": "2012-08-11T00:00:00.000Z", + "value": 53 + }, + { + "date": "2012-08-12T00:00:00.000Z", + "value": 52.5 + }, + { + "date": "2012-08-13T00:00:00.000Z", + "value": 53.3 + }, + { + "date": "2012-08-14T00:00:00.000Z", + "value": 53.9 + }, + { + "date": "2012-08-15T00:00:00.000Z", + "value": 56.2 + }, + { + "date": "2012-08-16T00:00:00.000Z", + "value": 57.1 + }, + { + "date": "2012-08-17T00:00:00.000Z", + "value": 55.3 + }, + { + "date": "2012-08-18T00:00:00.000Z", + "value": 56.2 + }, + { + "date": "2012-08-19T00:00:00.000Z", + "value": 54.3 + }, + { + "date": "2012-08-20T00:00:00.000Z", + "value": 53.1 + }, + { + "date": "2012-08-21T00:00:00.000Z", + "value": 53.4 + }, + { + "date": "2012-08-22T00:00:00.000Z", + "value": 54.5 + }, + { + "date": "2012-08-23T00:00:00.000Z", + "value": 55.7 + }, + { + "date": "2012-08-24T00:00:00.000Z", + "value": 54.8 + }, + { + "date": "2012-08-25T00:00:00.000Z", + "value": 53.8 + }, + { + "date": "2012-08-26T00:00:00.000Z", + "value": 56.5 + }, + { + "date": "2012-08-27T00:00:00.000Z", + "value": 58.3 + }, + { + "date": "2012-08-28T00:00:00.000Z", + "value": 58.7 + }, + { + "date": "2012-08-29T00:00:00.000Z", + "value": 57.5 + }, + { + "date": "2012-08-30T00:00:00.000Z", + "value": 55.9 + }, + { + "date": "2012-08-31T00:00:00.000Z", + "value": 55.4 + }, + { + "date": "2012-09-01T00:00:00.000Z", + "value": 55.7 + }, + { + "date": "2012-09-02T00:00:00.000Z", + "value": 53.1 + }, + { + "date": "2012-09-03T00:00:00.000Z", + "value": 53.5 + }, + { + "date": "2012-09-04T00:00:00.000Z", + "value": 52.5 + }, + { + "date": "2012-09-05T00:00:00.000Z", + "value": 54.5 + }, + { + "date": "2012-09-06T00:00:00.000Z", + "value": 56.3 + }, + { + "date": "2012-09-07T00:00:00.000Z", + "value": 56.4 + }, + { + "date": "2012-09-08T00:00:00.000Z", + "value": 56.5 + }, + { + "date": "2012-09-09T00:00:00.000Z", + "value": 56.4 + }, + { + "date": "2012-09-10T00:00:00.000Z", + "value": 55.4 + }, + { + "date": "2012-09-11T00:00:00.000Z", + "value": 56.2 + }, + { + "date": "2012-09-12T00:00:00.000Z", + "value": 55.7 + }, + { + "date": "2012-09-13T00:00:00.000Z", + "value": 54.3 + }, + { + "date": "2012-09-14T00:00:00.000Z", + "value": 55.2 + }, + { + "date": "2012-09-15T00:00:00.000Z", + "value": 54.3 + }, + { + "date": "2012-09-16T00:00:00.000Z", + "value": 52.9 + }, + { + "date": "2012-09-17T00:00:00.000Z", + "value": 54.8 + }, + { + "date": "2012-09-18T00:00:00.000Z", + "value": 54.8 + }, + { + "date": "2012-09-19T00:00:00.000Z", + "value": 56.8 + }, + { + "date": "2012-09-20T00:00:00.000Z", + "value": 55.4 + }, + { + "date": "2012-09-21T00:00:00.000Z", + "value": 55.8 + }, + { + "date": "2012-09-22T00:00:00.000Z", + "value": 55.9 + }, + { + "date": "2012-09-23T00:00:00.000Z", + "value": 52.8 + }, + { + "date": "2012-09-24T00:00:00.000Z", + "value": 54.5 + }, + { + "date": "2012-09-25T00:00:00.000Z", + "value": 53.3 + }, + { + "date": "2012-09-26T00:00:00.000Z", + "value": 53.6 + }, + { + "date": "2012-09-27T00:00:00.000Z", + "value": 52.1 + }, + { + "date": "2012-09-28T00:00:00.000Z", + "value": 52.6 + }, + { + "date": "2012-09-29T00:00:00.000Z", + "value": 53.9 + }, + { + "date": "2012-09-30T00:00:00.000Z", + "value": 55.1 + } +] diff --git a/docs/static/data/examples/date/hydro.d.ts b/docs/static/data/examples/date/hydro.d.ts new file mode 100644 index 000000000..1ded7a0b1 --- /dev/null +++ b/docs/static/data/examples/date/hydro.d.ts @@ -0,0 +1,7 @@ +export type HydroData = { + date: Date; + dirtyh2o: number; + infiltration: number; + rain: number; + rain_induced: number; +}[]; diff --git a/docs/static/data/examples/date/hydro.json b/docs/static/data/examples/date/hydro.json new file mode 100644 index 000000000..c26b46877 --- /dev/null +++ b/docs/static/data/examples/date/hydro.json @@ -0,0 +1,1507 @@ +[ + { + "date": 1710460800000, + "dirtyh2o": 107.8725, + "infiltration": -12.22, + "rain": 5.5, + "rain_induced": 0.0 + }, + { + "date": 1710547200000, + "dirtyh2o": 176.1, + "infiltration": -4.09, + "rain": 8.64, + "rain_induced": 0.0 + }, + { + "date": 1710633600000, + "dirtyh2o": 176.55, + "infiltration": -10.99, + "rain": 3.9, + "rain_induced": 0.0 + }, + { + "date": 1710720000000, + "dirtyh2o": 154.6885, + "infiltration": -18.85, + "rain": 2.66, + "rain_induced": 0.0 + }, + { + "date": 1710806400000, + "dirtyh2o": 168.53, + "infiltration": -16.4, + "rain": 0.63, + "rain_induced": 0.0 + }, + { + "date": 1710892800000, + "dirtyh2o": 182.02, + "infiltration": -11.52, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1710979200000, + "dirtyh2o": 196.916, + "infiltration": -0.34, + "rain": 1.17, + "rain_induced": 0.0 + }, + { + "date": 1711065600000, + "dirtyh2o": 190.342, + "infiltration": -4.43, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1711152000000, + "dirtyh2o": 227.304, + "infiltration": -7.43, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1711238400000, + "dirtyh2o": 244.024, + "infiltration": -8.6, + "rain": 2.42, + "rain_induced": 32.07 + }, + { + "date": 1711324800000, + "dirtyh2o": 216.923, + "infiltration": -6.16, + "rain": 2.12, + "rain_induced": 16.03 + }, + { + "date": 1711411200000, + "dirtyh2o": 203.7845, + "infiltration": 2.08, + "rain": 0.0, + "rain_induced": 8.02 + }, + { + "date": 1711497600000, + "dirtyh2o": 176.909, + "infiltration": 9.65, + "rain": 12.08, + "rain_induced": 0.0 + }, + { + "date": 1711584000000, + "dirtyh2o": 181.1745, + "infiltration": 28.95, + "rain": 100.0, + "rain_induced": 441.07 + }, + { + "date": 1711670400000, + "dirtyh2o": 222.965, + "infiltration": 24.12, + "rain": 1.02, + "rain_induced": 220.53 + }, + { + "date": 1711756800000, + "dirtyh2o": 259.692, + "infiltration": 51.5, + "rain": 11.28, + "rain_induced": 215.27 + }, + { + "date": 1711843200000, + "dirtyh2o": 255.475, + "infiltration": 64.9, + "rain": 0.0, + "rain_induced": 52.5 + }, + { + "date": 1711929600000, + "dirtyh2o": 237.747, + "infiltration": 70.75, + "rain": 0.39, + "rain_induced": 66.13 + }, + { + "date": 1712016000000, + "dirtyh2o": 253.5645, + "infiltration": 67.11, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1712102400000, + "dirtyh2o": 258.837, + "infiltration": 79.36, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1712188800000, + "dirtyh2o": 248.957, + "infiltration": 92.44, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1712275200000, + "dirtyh2o": 221.1885, + "infiltration": 70.61, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1712361600000, + "dirtyh2o": 251.28, + "infiltration": 69.23, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1712448000000, + "dirtyh2o": 220.341, + "infiltration": 54.53, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1712534400000, + "dirtyh2o": 174.287, + "infiltration": 69.21, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1712620800000, + "dirtyh2o": 179.094, + "infiltration": 61.47, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1712707200000, + "dirtyh2o": 160.3125, + "infiltration": 60.13, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1712793600000, + "dirtyh2o": 217.1415, + "infiltration": 65.21, + "rain": 41.0, + "rain_induced": 11.19 + }, + { + "date": 1712880000000, + "dirtyh2o": 225.625, + "infiltration": 44.48, + "rain": 0.0, + "rain_induced": 5.59 + }, + { + "date": 1712966400000, + "dirtyh2o": 326.52, + "infiltration": 64.42, + "rain": 53.63, + "rain_induced": 193.07 + }, + { + "date": 1713052800000, + "dirtyh2o": 319.33, + "infiltration": 67.98, + "rain": 9.08, + "rain_induced": 95.13 + }, + { + "date": 1713139200000, + "dirtyh2o": 260.547, + "infiltration": 67.76, + "rain": 0.0, + "rain_induced": 47.57 + }, + { + "date": 1713225600000, + "dirtyh2o": 271.301, + "infiltration": 57.47, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1713312000000, + "dirtyh2o": 211.242, + "infiltration": 42.3, + "rain": 0.93, + "rain_induced": 0.0 + }, + { + "date": 1713398400000, + "dirtyh2o": 226.4135, + "infiltration": 70.17, + "rain": 24.76, + "rain_induced": 0.0 + }, + { + "date": 1713484800000, + "dirtyh2o": 200.0035, + "infiltration": 61.63, + "rain": 2.9, + "rain_induced": 73.68 + }, + { + "date": 1713571200000, + "dirtyh2o": 252.888, + "infiltration": 73.1, + "rain": 0.0, + "rain_induced": 36.84 + }, + { + "date": 1713657600000, + "dirtyh2o": 204.182, + "infiltration": 53.72, + "rain": 1.93, + "rain_induced": 18.42 + }, + { + "date": 1713744000000, + "dirtyh2o": 183.7015, + "infiltration": 36.97, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1713830400000, + "dirtyh2o": 220.1245, + "infiltration": 31.93, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1713916800000, + "dirtyh2o": 203.775, + "infiltration": 36.58, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1714003200000, + "dirtyh2o": 216.0965, + "infiltration": 51.12, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1714089600000, + "dirtyh2o": 192.9735, + "infiltration": 17.65, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1714176000000, + "dirtyh2o": 248.112, + "infiltration": 5.92, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1714262400000, + "dirtyh2o": 222.409, + "infiltration": -4.19, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1714348800000, + "dirtyh2o": 192.071, + "infiltration": -5.5, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1714435200000, + "dirtyh2o": 203.4045, + "infiltration": 22.06, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1714521600000, + "dirtyh2o": 185.516, + "infiltration": 14.06, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1714608000000, + "dirtyh2o": 218.69, + "infiltration": 22.31, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1714694400000, + "dirtyh2o": 248.957, + "infiltration": 20.0, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1714780800000, + "dirtyh2o": 315.924, + "infiltration": 27.05, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1714867200000, + "dirtyh2o": 315.161, + "infiltration": 28.56, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1714953600000, + "dirtyh2o": 266.627, + "infiltration": 26.19, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1715040000000, + "dirtyh2o": 256.9845, + "infiltration": 35.34, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1715126400000, + "dirtyh2o": 256.5, + "infiltration": 25.18, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1715212800000, + "dirtyh2o": 222.4425, + "infiltration": 26.5, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1715299200000, + "dirtyh2o": 192.8025, + "infiltration": -3.77, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1715385600000, + "dirtyh2o": 196.92, + "infiltration": -9.01, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1715472000000, + "dirtyh2o": 175.241, + "infiltration": 6.69, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1715558400000, + "dirtyh2o": 181.5925, + "infiltration": 10.06, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1715644800000, + "dirtyh2o": 158.023, + "infiltration": 20.3, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1715731200000, + "dirtyh2o": 205.8745, + "infiltration": 46.04, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1715817600000, + "dirtyh2o": 231.515, + "infiltration": 30.97, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1715904000000, + "dirtyh2o": 241.148, + "infiltration": 41.92, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1715990400000, + "dirtyh2o": 296.256, + "infiltration": 53.1, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1716076800000, + "dirtyh2o": 273.581, + "infiltration": 86.22, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1716163200000, + "dirtyh2o": 247.247, + "infiltration": 79.77, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1716249600000, + "dirtyh2o": 221.2075, + "infiltration": 89.83, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1716336000000, + "dirtyh2o": 250.021, + "infiltration": 86.67, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1716422400000, + "dirtyh2o": 266.304, + "infiltration": 56.87, + "rain": 0.0, + "rain_induced": 170.82 + }, + { + "date": 1716508800000, + "dirtyh2o": 296.6755, + "infiltration": 80.14, + "rain": 0.76, + "rain_induced": 118.5 + }, + { + "date": 1716595200000, + "dirtyh2o": 328.224, + "infiltration": 71.55, + "rain": 16.87, + "rain_induced": 16.54 + }, + { + "date": 1716681600000, + "dirtyh2o": 306.196, + "infiltration": 71.96, + "rain": 0.0, + "rain_induced": 8.27 + }, + { + "date": 1716768000000, + "dirtyh2o": 229.406, + "infiltration": 32.44, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1716854400000, + "dirtyh2o": 242.782, + "infiltration": 36.37, + "rain": 0.0, + "rain_induced": 91.84 + }, + { + "date": 1716940800000, + "dirtyh2o": 236.2175, + "infiltration": 16.85, + "rain": 0.0, + "rain_induced": 45.92 + }, + { + "date": 1717027200000, + "dirtyh2o": 183.0935, + "infiltration": 15.17, + "rain": 0.0, + "rain_induced": 22.96 + }, + { + "date": 1717113600000, + "dirtyh2o": 208.7625, + "infiltration": 14.94, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1717200000000, + "dirtyh2o": 268.272, + "infiltration": 25.48, + "rain": 11.53, + "rain_induced": 20.33 + }, + { + "date": 1717286400000, + "dirtyh2o": 249.964, + "infiltration": 7.69, + "rain": 3.47, + "rain_induced": 10.17 + }, + { + "date": 1717372800000, + "dirtyh2o": 188.252, + "infiltration": 3.82, + "rain": 0.0, + "rain_induced": 5.08 + }, + { + "date": 1717459200000, + "dirtyh2o": 165.7465, + "infiltration": 6.77, + "rain": 2.15, + "rain_induced": 0.0 + }, + { + "date": 1717545600000, + "dirtyh2o": 191.045, + "infiltration": -0.3, + "rain": 6.59, + "rain_induced": 0.0 + }, + { + "date": 1717632000000, + "dirtyh2o": 181.4595, + "infiltration": 10.68, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1717718400000, + "dirtyh2o": 207.005, + "infiltration": 16.39, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1717804800000, + "dirtyh2o": 315.552, + "infiltration": 20.92, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1717891200000, + "dirtyh2o": 282.766, + "infiltration": 19.38, + "rain": 0.0, + "rain_induced": 154.58 + }, + { + "date": 1717977600000, + "dirtyh2o": 262.447, + "infiltration": 29.14, + "rain": 5.57, + "rain_induced": 77.29 + }, + { + "date": 1718064000000, + "dirtyh2o": 261.307, + "infiltration": 53.89, + "rain": 22.35, + "rain_induced": 38.64 + }, + { + "date": 1718150400000, + "dirtyh2o": 263.53, + "infiltration": 58.26, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1718236800000, + "dirtyh2o": 236.493, + "infiltration": 34.82, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1718323200000, + "dirtyh2o": 239.286, + "infiltration": 46.98, + "rain": 6.11, + "rain_induced": 116.36 + }, + { + "date": 1718409600000, + "dirtyh2o": 286.872, + "infiltration": 43.26, + "rain": 0.0, + "rain_induced": 58.18 + }, + { + "date": 1718496000000, + "dirtyh2o": 264.517, + "infiltration": 51.33, + "rain": 0.0, + "rain_induced": 174.75 + }, + { + "date": 1718582400000, + "dirtyh2o": 235.125, + "infiltration": 30.11, + "rain": 0.0, + "rain_induced": 72.83 + }, + { + "date": 1718668800000, + "dirtyh2o": 246.0215, + "infiltration": 43.9, + "rain": 5.57, + "rain_induced": 42.98 + }, + { + "date": 1718755200000, + "dirtyh2o": 260.338, + "infiltration": 27.49, + "rain": 0.0, + "rain_induced": 3.28 + }, + { + "date": 1718841600000, + "dirtyh2o": 216.201, + "infiltration": 22.14, + "rain": 3.76, + "rain_induced": 1.64 + }, + { + "date": 1718928000000, + "dirtyh2o": 235.98, + "infiltration": 32.93, + "rain": 3.9, + "rain_induced": 0.0 + }, + { + "date": 1719014400000, + "dirtyh2o": 293.004, + "infiltration": 16.48, + "rain": 10.76, + "rain_induced": 0.0 + }, + { + "date": 1719100800000, + "dirtyh2o": 230.978, + "infiltration": 4.1, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1719187200000, + "dirtyh2o": 219.184, + "infiltration": -0.74, + "rain": 0.0, + "rain_induced": 78.25 + }, + { + "date": 1719273600000, + "dirtyh2o": 213.4935, + "infiltration": -8.33, + "rain": 0.0, + "rain_induced": 39.12 + }, + { + "date": 1719360000000, + "dirtyh2o": 244.6915, + "infiltration": -4.86, + "rain": 6.07, + "rain_induced": 90.56 + }, + { + "date": 1719446400000, + "dirtyh2o": 228.133, + "infiltration": -7.53, + "rain": 3.51, + "rain_induced": 35.5 + }, + { + "date": 1719532800000, + "dirtyh2o": 206.929, + "infiltration": 0.97, + "rain": 15.73, + "rain_induced": 17.75 + }, + { + "date": 1719619200000, + "dirtyh2o": 308.688, + "infiltration": 9.67, + "rain": 5.18, + "rain_induced": 0.0 + }, + { + "date": 1719705600000, + "dirtyh2o": 265.639, + "infiltration": 6.09, + "rain": 17.19, + "rain_induced": 0.0 + }, + { + "date": 1719792000000, + "dirtyh2o": 210.6055, + "infiltration": 23.07, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1719878400000, + "dirtyh2o": 197.885, + "infiltration": 9.28, + "rain": 17.12, + "rain_induced": 0.0 + }, + { + "date": 1719964800000, + "dirtyh2o": 199.424, + "infiltration": 20.85, + "rain": 100.0, + "rain_induced": 378.46 + }, + { + "date": 1720051200000, + "dirtyh2o": 214.377, + "infiltration": -1.3, + "rain": 6.37, + "rain_induced": 189.23 + }, + { + "date": 1720137600000, + "dirtyh2o": 210.3395, + "infiltration": -15.52, + "rain": 1.78, + "rain_induced": 94.62 + }, + { + "date": 1720224000000, + "dirtyh2o": 273.216, + "infiltration": -14.84, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1720310400000, + "dirtyh2o": 268.026, + "infiltration": -15.83, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1720396800000, + "dirtyh2o": 226.4325, + "infiltration": -10.08, + "rain": 27.24, + "rain_induced": 0.0 + }, + { + "date": 1720483200000, + "dirtyh2o": 236.36, + "infiltration": -12.14, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1720569600000, + "dirtyh2o": 228.057, + "infiltration": -7.4, + "rain": 0.53, + "rain_induced": 0.0 + }, + { + "date": 1720656000000, + "dirtyh2o": 194.6455, + "infiltration": -31.02, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1720742400000, + "dirtyh2o": 150.176, + "infiltration": -32.43, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1720828800000, + "dirtyh2o": 201.684, + "infiltration": -19.91, + "rain": 0.79, + "rain_induced": 0.0 + }, + { + "date": 1720915200000, + "dirtyh2o": 194.909, + "infiltration": -13.49, + "rain": 1.98, + "rain_induced": 0.0 + }, + { + "date": 1721001600000, + "dirtyh2o": 197.4195, + "infiltration": -5.72, + "rain": 0.0, + "rain_induced": 70.5 + }, + { + "date": 1721088000000, + "dirtyh2o": 229.1685, + "infiltration": -3.24, + "rain": 2.35, + "rain_induced": 35.25 + }, + { + "date": 1721174400000, + "dirtyh2o": 259.1695, + "infiltration": -10.01, + "rain": 8.22, + "rain_induced": 17.63 + }, + { + "date": 1721260800000, + "dirtyh2o": 269.99, + "infiltration": -19.81, + "rain": 7.35, + "rain_induced": 0.0 + }, + { + "date": 1721347200000, + "dirtyh2o": 229.786, + "infiltration": -2.25, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1721433600000, + "dirtyh2o": 282.72, + "infiltration": 13.62, + "rain": 11.77, + "rain_induced": 0.0 + }, + { + "date": 1721520000000, + "dirtyh2o": 189.222, + "infiltration": -1.17, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1721606400000, + "dirtyh2o": 144.704, + "infiltration": -22.43, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1721692800000, + "dirtyh2o": 169.974, + "infiltration": -28.76, + "rain": 0.0, + "rain_induced": 39.64 + }, + { + "date": 1721779200000, + "dirtyh2o": 190.551, + "infiltration": -30.04, + "rain": 0.0, + "rain_induced": 19.82 + }, + { + "date": 1721865600000, + "dirtyh2o": 234.346, + "infiltration": -16.2, + "rain": 0.0, + "rain_induced": 44.51 + }, + { + "date": 1721952000000, + "dirtyh2o": 242.972, + "infiltration": -5.08, + "rain": 10.19, + "rain_induced": 17.3 + }, + { + "date": 1722038400000, + "dirtyh2o": 322.836, + "infiltration": -2.77, + "rain": 9.56, + "rain_induced": 8.65 + }, + { + "date": 1722124800000, + "dirtyh2o": 260.876, + "infiltration": -21.25, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1722211200000, + "dirtyh2o": 221.2645, + "infiltration": -8.73, + "rain": 3.62, + "rain_induced": 0.0 + }, + { + "date": 1722297600000, + "dirtyh2o": 229.9855, + "infiltration": 6.26, + "rain": 3.44, + "rain_induced": 27.61 + }, + { + "date": 1722384000000, + "dirtyh2o": 222.4615, + "infiltration": -7.57, + "rain": 0.79, + "rain_induced": 13.8 + }, + { + "date": 1722470400000, + "dirtyh2o": 218.557, + "infiltration": -8.52, + "rain": 0.0, + "rain_induced": 6.9 + }, + { + "date": 1722556800000, + "dirtyh2o": 227.6105, + "infiltration": -15.37, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1722643200000, + "dirtyh2o": 358.428, + "infiltration": -24.14, + "rain": 3.1, + "rain_induced": 0.0 + }, + { + "date": 1722729600000, + "dirtyh2o": 353.87, + "infiltration": -9.4, + "rain": 12.17, + "rain_induced": 36.63 + }, + { + "date": 1722816000000, + "dirtyh2o": 268.2325, + "infiltration": -2.04, + "rain": 4.44, + "rain_induced": 18.32 + }, + { + "date": 1722902400000, + "dirtyh2o": 292.448, + "infiltration": 8.97, + "rain": 4.18, + "rain_induced": 75.89 + }, + { + "date": 1722988800000, + "dirtyh2o": 313.329, + "infiltration": 3.58, + "rain": 0.73, + "rain_induced": 33.36 + }, + { + "date": 1723075200000, + "dirtyh2o": 306.451, + "infiltration": 15.64, + "rain": 0.1, + "rain_induced": 16.68 + }, + { + "date": 1723161600000, + "dirtyh2o": 297.179, + "infiltration": 2.0, + "rain": 3.38, + "rain_induced": 0.0 + }, + { + "date": 1723248000000, + "dirtyh2o": 316.536, + "infiltration": 1.8, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1723334400000, + "dirtyh2o": 322.608, + "infiltration": -4.7, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1723420800000, + "dirtyh2o": 246.411, + "infiltration": -24.01, + "rain": 24.95, + "rain_induced": 0.0 + }, + { + "date": 1723507200000, + "dirtyh2o": 264.7365, + "infiltration": -1.54, + "rain": 76.85, + "rain_induced": 181.39 + }, + { + "date": 1723593600000, + "dirtyh2o": 280.972, + "infiltration": 12.46, + "rain": 45.08, + "rain_induced": 90.7 + }, + { + "date": 1723680000000, + "dirtyh2o": 232.9685, + "infiltration": -4.19, + "rain": 0.0, + "rain_induced": 45.35 + }, + { + "date": 1723766400000, + "dirtyh2o": 246.3255, + "infiltration": -1.2, + "rain": 0.28, + "rain_induced": 24.46 + }, + { + "date": 1723852800000, + "dirtyh2o": 271.056, + "infiltration": 13.52, + "rain": 1.74, + "rain_induced": 12.23 + }, + { + "date": 1723939200000, + "dirtyh2o": 249.524, + "infiltration": 9.73, + "rain": 0.0, + "rain_induced": 6.11 + }, + { + "date": 1724025600000, + "dirtyh2o": 171.114, + "infiltration": 16.75, + "rain": 11.75, + "rain_induced": 0.0 + }, + { + "date": 1724112000000, + "dirtyh2o": 189.487, + "infiltration": 26.51, + "rain": 21.71, + "rain_induced": 0.0 + }, + { + "date": 1724198400000, + "dirtyh2o": 215.175, + "infiltration": 13.21, + "rain": 52.36, + "rain_induced": 0.0 + }, + { + "date": 1724284800000, + "dirtyh2o": 246.525, + "infiltration": -0.6, + "rain": 36.38, + "rain_induced": 101.71 + }, + { + "date": 1724371200000, + "dirtyh2o": 279.034, + "infiltration": 10.62, + "rain": 0.0, + "rain_induced": 50.85 + }, + { + "date": 1724457600000, + "dirtyh2o": 385.464, + "infiltration": 3.24, + "rain": 0.0, + "rain_induced": 25.43 + }, + { + "date": 1724544000000, + "dirtyh2o": 368.225, + "infiltration": -17.38, + "rain": 5.44, + "rain_induced": 0.0 + }, + { + "date": 1724630400000, + "dirtyh2o": 299.022, + "infiltration": -12.18, + "rain": 4.54, + "rain_induced": 0.0 + }, + { + "date": 1724716800000, + "dirtyh2o": 308.7975, + "infiltration": -20.97, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1724803200000, + "dirtyh2o": 289.693, + "infiltration": -14.2, + "rain": 4.08, + "rain_induced": 123.15 + }, + { + "date": 1724889600000, + "dirtyh2o": 244.7295, + "infiltration": -34.26, + "rain": 1.94, + "rain_induced": 61.58 + }, + { + "date": 1724976000000, + "dirtyh2o": 208.145, + "infiltration": -45.28, + "rain": 0.96, + "rain_induced": 30.79 + }, + { + "date": 1725062400000, + "dirtyh2o": 231.48, + "infiltration": -53.67, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1725148800000, + "dirtyh2o": 163.713, + "infiltration": -64.41, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1725235200000, + "dirtyh2o": 141.17, + "infiltration": -51.06, + "rain": 5.99, + "rain_induced": 0.0 + }, + { + "date": 1725321600000, + "dirtyh2o": 150.5465, + "infiltration": -46.83, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1725408000000, + "dirtyh2o": 196.3745, + "infiltration": -16.43, + "rain": 2.39, + "rain_induced": 113.43 + }, + { + "date": 1725494400000, + "dirtyh2o": 222.6515, + "infiltration": -36.37, + "rain": 0.0, + "rain_induced": 56.72 + }, + { + "date": 1725580800000, + "dirtyh2o": 230.793, + "infiltration": -41.58, + "rain": 0.0, + "rain_induced": 28.36 + }, + { + "date": 1725667200000, + "dirtyh2o": 375.804, + "infiltration": -33.1, + "rain": 14.73, + "rain_induced": 0.0 + }, + { + "date": 1725753600000, + "dirtyh2o": 355.157, + "infiltration": -17.84, + "rain": 0.82, + "rain_induced": 0.0 + }, + { + "date": 1725840000000, + "dirtyh2o": 273.3055, + "infiltration": -0.18, + "rain": 15.95, + "rain_induced": 0.0 + }, + { + "date": 1725926400000, + "dirtyh2o": 246.601, + "infiltration": -4.69, + "rain": 0.95, + "rain_induced": 0.0 + }, + { + "date": 1726012800000, + "dirtyh2o": 235.2675, + "infiltration": -16.17, + "rain": 21.94, + "rain_induced": 0.0 + }, + { + "date": 1726099200000, + "dirtyh2o": 248.1305, + "infiltration": -30.94, + "rain": 20.56, + "rain_induced": 0.0 + }, + { + "date": 1726185600000, + "dirtyh2o": 240.236, + "infiltration": -17.12, + "rain": 1.64, + "rain_induced": 23.99 + }, + { + "date": 1726272000000, + "dirtyh2o": 308.424, + "infiltration": -0.23, + "rain": 0.13, + "rain_induced": 11.99 + }, + { + "date": 1726358400000, + "dirtyh2o": 280.082, + "infiltration": -7.42, + "rain": 0.8, + "rain_induced": 6.0 + }, + { + "date": 1726444800000, + "dirtyh2o": 248.33, + "infiltration": -17.97, + "rain": 40.12, + "rain_induced": 0.0 + }, + { + "date": 1726531200000, + "dirtyh2o": 232.5885, + "infiltration": -25.1, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1726617600000, + "dirtyh2o": 228.9215, + "infiltration": -27.5, + "rain": 8.54, + "rain_induced": 0.0 + }, + { + "date": 1726704000000, + "dirtyh2o": 170.0975, + "infiltration": -35.83, + "rain": 0.14, + "rain_induced": 0.0 + }, + { + "date": 1726790400000, + "dirtyh2o": 149.625, + "infiltration": -41.95, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1726876800000, + "dirtyh2o": 219.984, + "infiltration": -39.68, + "rain": 13.17, + "rain_induced": 0.0 + }, + { + "date": 1726963200000, + "dirtyh2o": 175.23, + "infiltration": -47.35, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1727049600000, + "dirtyh2o": 177.954, + "infiltration": -41.3, + "rain": 100.0, + "rain_induced": 444.99 + }, + { + "date": 1727136000000, + "dirtyh2o": 192.7835, + "infiltration": -41.2, + "rain": 3.2, + "rain_induced": 222.5 + }, + { + "date": 1727222400000, + "dirtyh2o": 226.936, + "infiltration": -44.17, + "rain": 0.0, + "rain_induced": 111.25 + }, + { + "date": 1727308800000, + "dirtyh2o": 236.227, + "infiltration": -49.41, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1727395200000, + "dirtyh2o": 220.609, + "infiltration": -42.45, + "rain": 37.49, + "rain_induced": 0.0 + }, + { + "date": 1727481600000, + "dirtyh2o": 302.952, + "infiltration": -42.24, + "rain": 4.9, + "rain_induced": 0.0 + }, + { + "date": 1727568000000, + "dirtyh2o": 266.387, + "infiltration": -55.5, + "rain": 5.28, + "rain_induced": 0.0 + }, + { + "date": 1727654400000, + "dirtyh2o": 222.908, + "infiltration": -54.04, + "rain": 2.34, + "rain_induced": 0.0 + }, + { + "date": 1727740800000, + "dirtyh2o": 235.391, + "infiltration": -59.62, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1727827200000, + "dirtyh2o": 246.563, + "infiltration": -59.68, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1727913600000, + "dirtyh2o": 270.6075, + "infiltration": -53.48, + "rain": 0.84, + "rain_induced": 0.0 + }, + { + "date": 1728000000000, + "dirtyh2o": 273.923, + "infiltration": -41.85, + "rain": 0.26, + "rain_induced": 0.0 + }, + { + "date": 1728086400000, + "dirtyh2o": 374.124, + "infiltration": -29.77, + "rain": 0.0, + "rain_induced": 21.49 + }, + { + "date": 1728172800000, + "dirtyh2o": 339.482, + "infiltration": -31.09, + "rain": 1.18, + "rain_induced": 10.74 + }, + { + "date": 1728259200000, + "dirtyh2o": 283.3755, + "infiltration": -36.02, + "rain": 4.01, + "rain_induced": 5.37 + }, + { + "date": 1728345600000, + "dirtyh2o": 268.774, + "infiltration": -41.53, + "rain": 0.39, + "rain_induced": 0.0 + }, + { + "date": 1728432000000, + "dirtyh2o": 251.902, + "infiltration": -52.87, + "rain": 6.1, + "rain_induced": 0.0 + }, + { + "date": 1728518400000, + "dirtyh2o": 292.3245, + "infiltration": -40.52, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1728604800000, + "dirtyh2o": 254.752, + "infiltration": -59.79, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1728691200000, + "dirtyh2o": 307.8, + "infiltration": -63.71, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1728777600000, + "dirtyh2o": 241.901, + "infiltration": -77.09, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1728864000000, + "dirtyh2o": 194.6265, + "infiltration": -80.33, + "rain": 0.0, + "rain_induced": 0.0 + }, + { + "date": 1728950400000, + "dirtyh2o": 185.801, + "infiltration": -83.67, + "rain": 15.88, + "rain_induced": 0.0 + } +] diff --git a/docs/static/data/examples/date/us-events.csv b/docs/static/data/examples/date/us-events.csv new file mode 100644 index 000000000..469cce9cf --- /dev/null +++ b/docs/static/data/examples/date/us-events.csv @@ -0,0 +1,51 @@ +startYear,endYear,event +1787,1868,Three-Fifths Compromise +1788,1788,US Constitution ratified +1803,1803,Louisiana Purchase +1812,1815,War of 1812 +1820,1820,Missouri Compromise (free state/slave state balance) +1830,1838,Trail of Tears +1846,1848,Mexican-American War +1850,1850,Compromise of 1850 +1851,1851,Indian Appropriations Act (creates reservation system) +1861,1865,Civil War +1863,1877,Reconstruction Era +1866,1866,Civil Rights Act (1866) +1868,1868,Fourteenth Amendment (equal protection) +1870,1870,Fifteenth Amendment (right to vote) +1876,1876,Battle of Little Bighorn +1896,1896,Plessy v. Ferguson (separate but equal) +1914,1918,WWI +1915,1970,Great Migration +1920,1920,Women's suffrage +1924,1924,Indian Citizenship Act +1929,1933,Great Depression +1935,1935,Social Security Administration established +1937,1937,Wagner-Steagall Act (housing for low income) +1939,1945,WWII +1942,1945,Japanese Internment Camps +1947,1991,Cold War +1948,1948,Selective Service Act +1950,1953,Korean War +1954,1954,Brown v. Board of Education (desegregation) +1955,1975,Vietnam War +1963,1963,Assassination of JFK +1964,1964,Civil Rights Act (1964) +1965,1965,Voting Rights Act +1967,1967,Loving v. Virginia (interracial marriage) +1968,1968,Fair Housing Act +1968,1968,Summer of '68/Assassination of MLK +1969,1969,Moon landing +1972,1972,Watergate Scandal +1973,1973,Roe v. Wade (abortion access) +1979,1981,Iran Hostage Crisis +1985,1987,Iran Contra Affair +1990,1990,Americans with Disabilities Act +1990,1991,Gulf War +1998,1999,Clinton Affair and impeachment +2001,2001,September 11th attacks +2001,2020,War in Afghanistan +2003,2011,Iraq War +2007,2009,Great Recession +2008,2016,Obama Presidency +2015,2015,Obergefell v. Hodges (gay marriage) \ No newline at end of file diff --git a/docs/static/data/examples/date/us-events.d.ts b/docs/static/data/examples/date/us-events.d.ts new file mode 100644 index 000000000..92d1cdef0 --- /dev/null +++ b/docs/static/data/examples/date/us-events.d.ts @@ -0,0 +1,5 @@ +export type USEvents = { + startYear: number; + endYear: number; + event: string; +}; diff --git a/docs/static/data/examples/geo/eclipses.json b/docs/static/data/examples/geo/eclipses.json new file mode 100644 index 000000000..d6b5647d1 --- /dev/null +++ b/docs/static/data/examples/geo/eclipses.json @@ -0,0 +1,19546 @@ +{ + "type": "Topology", + "bbox": [-179.9908, -89.4629, 179.9994, 89.0702], + "transform": { + "scale": [0.0035999379993799942, 0.0017853488534885346], + "translate": [-179.9908, -89.4629] + }, + "objects": { + "eclipses": { + "type": "GeometryCollection", + "geometries": [ + { + "type": "Polygon", + "arcs": [[0]], + "id": 0, + "properties": { + "ID": "1961-02-15", + "Date": "1961-02-15" + } + }, + { + "type": "Polygon", + "arcs": [[1]], + "id": 1, + "properties": { + "ID": "1968-09-22", + "Date": "1968-09-22" + } + }, + { + "type": "Polygon", + "arcs": [[2]], + "id": 2, + "properties": { + "ID": "1970-03-07", + "Date": "1970-03-07" + } + }, + { + "type": "Polygon", + "arcs": [[3]], + "id": 3, + "properties": { + "ID": "1972-07-10", + "Date": "1972-07-10" + } + }, + { + "type": "Polygon", + "arcs": [[4]], + "id": 4, + "properties": { + "ID": "1973-06-30", + "Date": "1973-06-30" + } + }, + { + "type": "Polygon", + "arcs": [[5]], + "id": 5, + "properties": { + "ID": "1979-02-26", + "Date": "1979-02-26" + } + }, + { + "type": "Polygon", + "arcs": [[6]], + "id": 6, + "properties": { + "ID": "1988-03-18", + "Date": "1988-03-18" + } + }, + { + "type": "Polygon", + "arcs": [[7]], + "id": 7, + "properties": { + "ID": "1990-07-22", + "Date": "1990-07-22" + } + }, + { + "type": "Polygon", + "arcs": [[8]], + "id": 8, + "properties": { + "ID": "1991-07-11", + "Date": "1991-07-11" + } + }, + { + "type": "Polygon", + "arcs": [[9]], + "id": 9, + "properties": { + "ID": "1992-06-30", + "Date": "1992-06-30" + } + }, + { + "type": "Polygon", + "arcs": [[10]], + "id": 10, + "properties": { + "ID": "1994-11-03", + "Date": "1994-11-03" + } + }, + { + "type": "Polygon", + "arcs": [[11]], + "id": 11, + "properties": { + "ID": "1995-10-24", + "Date": "1995-10-24" + } + }, + { + "type": "Polygon", + "arcs": [[12]], + "id": 12, + "properties": { + "ID": "1997-03-09", + "Date": "1997-03-09" + } + }, + { + "type": "Polygon", + "arcs": [[13]], + "id": 13, + "properties": { + "ID": "1998-02-26", + "Date": "1998-02-26" + } + }, + { + "type": "Polygon", + "arcs": [[14]], + "id": 14, + "properties": { + "ID": "1999-08-11", + "Date": "1999-08-11" + } + }, + { + "type": "Polygon", + "arcs": [[15]], + "id": 15, + "properties": { + "ID": "2001-06-21", + "Date": "2001-06-21" + } + }, + { + "type": "Polygon", + "arcs": [[16]], + "id": 16, + "properties": { + "ID": "2002-12-04", + "Date": "2002-12-04" + } + }, + { + "type": "Polygon", + "arcs": [[17]], + "id": 17, + "properties": { + "ID": "2003-11-23", + "Date": "2003-11-23" + } + }, + { + "type": "Polygon", + "arcs": [[18]], + "id": 18, + "properties": { + "ID": "2006-03-29", + "Date": "2006-03-29" + } + }, + { + "type": "Polygon", + "arcs": [[19]], + "id": 19, + "properties": { + "ID": "2008-08-01", + "Date": "2008-08-01" + } + }, + { + "type": "Polygon", + "arcs": [[20]], + "id": 20, + "properties": { + "ID": "2009-07-22", + "Date": "2009-07-22" + } + }, + { + "type": "Polygon", + "arcs": [[21]], + "id": 21, + "properties": { + "ID": "2010-07-11", + "Date": "2010-07-11" + } + }, + { + "type": "Polygon", + "arcs": [[22]], + "id": 22, + "properties": { + "ID": "2012-11-13", + "Date": "2012-11-13" + } + }, + { + "type": "Polygon", + "arcs": [[23]], + "id": 23, + "properties": { + "ID": "2015-03-20", + "Date": "2015-03-20" + } + }, + { + "type": "Polygon", + "arcs": [[24]], + "id": 24, + "properties": { + "ID": "2016-03-09", + "Date": "2016-03-09" + } + }, + { + "type": "Polygon", + "arcs": [[25]], + "id": 25, + "properties": { + "ID": "2017-08-21", + "Date": "2017-08-21" + } + }, + { + "type": "Polygon", + "arcs": [[26]], + "id": 26, + "properties": { + "ID": "2019-07-02", + "Date": "2019-07-02" + } + }, + { + "type": "Polygon", + "arcs": [[27]], + "id": 27, + "properties": { + "ID": "2020-12-14", + "Date": "2020-12-14" + } + }, + { + "type": "Polygon", + "arcs": [[28]], + "id": 28, + "properties": { + "ID": "2021-12-04", + "Date": "2021-12-04" + } + }, + { + "type": "Polygon", + "arcs": [[29]], + "id": 29, + "properties": { + "ID": "2024-04-08", + "Date": "2024-04-08" + } + }, + { + "type": "Polygon", + "arcs": [[30]], + "id": 30, + "properties": { + "ID": "2026-08-12", + "Date": "2026-08-12" + } + }, + { + "type": "Polygon", + "arcs": [[31]], + "id": 31, + "properties": { + "ID": "2027-08-02", + "Date": "2027-08-02" + } + }, + { + "type": "Polygon", + "arcs": [[32]], + "id": 32, + "properties": { + "ID": "2028-07-22", + "Date": "2028-07-22" + } + }, + { + "type": "Polygon", + "arcs": [[33]], + "id": 33, + "properties": { + "ID": "2030-11-25", + "Date": "2030-11-25" + } + }, + { + "type": "Polygon", + "arcs": [[34]], + "id": 34, + "properties": { + "ID": "2033-03-30", + "Date": "2033-03-30" + } + }, + { + "type": "Polygon", + "arcs": [[35]], + "id": 35, + "properties": { + "ID": "2034-03-20", + "Date": "2034-03-20" + } + }, + { + "type": "Polygon", + "arcs": [[36]], + "id": 36, + "properties": { + "ID": "2035-09-02", + "Date": "2035-09-02" + } + }, + { + "type": "Polygon", + "arcs": [[37]], + "id": 37, + "properties": { + "ID": "2037-07-13", + "Date": "2037-07-13" + } + }, + { + "type": "Polygon", + "arcs": [[38]], + "id": 38, + "properties": { + "ID": "2038-12-26", + "Date": "2038-12-26" + } + }, + { + "type": "Polygon", + "arcs": [[39]], + "id": 39, + "properties": { + "ID": "2039-12-15", + "Date": "2039-12-15" + } + }, + { + "type": "Polygon", + "arcs": [[40]], + "id": 40, + "properties": { + "ID": "2041-04-30", + "Date": "2041-04-30" + } + }, + { + "type": "Polygon", + "arcs": [[41]], + "id": 41, + "properties": { + "ID": "2042-04-20", + "Date": "2042-04-20" + } + }, + { + "type": "Polygon", + "arcs": [[42]], + "id": 42, + "properties": { + "ID": "2043-04-09", + "Date": "2043-04-09" + } + }, + { + "type": "Polygon", + "arcs": [[43]], + "id": 43, + "properties": { + "ID": "2044-08-23", + "Date": "2044-08-23" + } + }, + { + "type": "Polygon", + "arcs": [[44]], + "id": 44, + "properties": { + "ID": "2045-08-12", + "Date": "2045-08-12" + } + }, + { + "type": "Polygon", + "arcs": [[45]], + "id": 45, + "properties": { + "ID": "2046-08-02", + "Date": "2046-08-02" + } + }, + { + "type": "Polygon", + "arcs": [[46]], + "id": 46, + "properties": { + "ID": "2048-12-05", + "Date": "2048-12-05" + } + }, + { + "type": "Polygon", + "arcs": [[47]], + "id": 47, + "properties": { + "ID": "2052-03-30", + "Date": "2052-03-30" + } + }, + { + "type": "Polygon", + "arcs": [[48]], + "id": 48, + "properties": { + "ID": "2053-09-12", + "Date": "2053-09-12" + } + }, + { + "type": "Polygon", + "arcs": [[49]], + "id": 49, + "properties": { + "ID": "2055-07-24", + "Date": "2055-07-24" + } + }, + { + "type": "Polygon", + "arcs": [[50]], + "id": 50, + "properties": { + "ID": "2057-01-05", + "Date": "2057-01-05" + } + }, + { + "type": "Polygon", + "arcs": [[51]], + "id": 51, + "properties": { + "ID": "2057-12-26", + "Date": "2057-12-26" + } + }, + { + "type": "Polygon", + "arcs": [[52]], + "id": 52, + "properties": { + "ID": "2059-05-11", + "Date": "2059-05-11" + } + }, + { + "type": "Polygon", + "arcs": [[53]], + "id": 53, + "properties": { + "ID": "2060-04-30", + "Date": "2060-04-30" + } + }, + { + "type": "Polygon", + "arcs": [[54]], + "id": 54, + "properties": { + "ID": "2076-01-06", + "Date": "2076-01-06" + } + }, + { + "type": "Polygon", + "arcs": [[55]], + "id": 55, + "properties": { + "ID": "2078-05-11", + "Date": "2078-05-11" + } + }, + { + "type": "Polygon", + "arcs": [[56]], + "id": 56, + "properties": { + "ID": "2079-05-01", + "Date": "2079-05-01" + } + }, + { + "type": "Polygon", + "arcs": [[57]], + "id": 57, + "properties": { + "ID": "2081-09-03", + "Date": "2081-09-03" + } + }, + { + "type": "Polygon", + "arcs": [[58]], + "id": 58, + "properties": { + "ID": "2090-09-23", + "Date": "2090-09-23" + } + }, + { + "type": "Polygon", + "arcs": [[59]], + "id": 59, + "properties": { + "ID": "2094-01-16", + "Date": "2094-01-16" + } + }, + { + "type": "Polygon", + "arcs": [[60]], + "id": 60, + "properties": { + "ID": "2097-05-11", + "Date": "2097-05-11" + } + }, + { + "type": "Polygon", + "arcs": [[61]], + "id": 61, + "properties": { + "ID": "2099-09-14", + "Date": "2099-09-14" + } + } + ] + } + }, + "arcs": [ + [ + [75570, 90629], + [919, -717], + [-1400, -911], + [-2075, -1544], + [-1415, -1188], + [-1560, -1434], + [-2349, -2369], + [-1751, -1869], + [-1210, -1293], + [-981, -1016], + [-1725, -1633], + [-1218, -973], + [-1345, -851], + [-1017, -475], + [-1523, -441], + [-1491, -143], + [-1384, 87], + [-1125, 203], + [-1338, 370], + [-880, 309], + [-1376, 568], + [-848, 395], + [38, 965], + [291, -131], + [150, -66], + [116, -50], + [98, -42], + [87, -37], + [77, -32], + [72, -30], + [67, -28], + [62, -25], + [59, -24], + [56, -23], + [104, -42], + [97, -38], + [46, -18], + [87, -34], + [42, -16], + [118, -45], + [38, -14], + [73, -27], + [35, -13], + [35, -13], + [100, -36], + [63, -23], + [31, -11], + [148, -52], + [111, -38], + [27, -9], + [27, -9], + [78, -26], + [171, -56], + [194, -60], + [159, -48], + [150, -44], + [142, -41], + [136, -37], + [129, -34], + [125, -32], + [120, -29], + [115, -27], + [112, -26], + [108, -23], + [106, -23], + [102, -20], + [99, -20], + [97, -18], + [95, -17], + [92, -15], + [90, -15], + [88, -14], + [87, -13], + [167, -23], + [82, -10], + [80, -9], + [79, -9], + [77, -8], + [76, -7], + [75, -7], + [73, -6], + [73, -5], + [71, -5], + [71, -4], + [69, -4], + [69, -3], + [67, -3], + [67, -2], + [66, -2], + [65, -1], + [65, -1], + [63, -1], + [63, 0], + [62, 1], + [62, 1], + [60, 1], + [61, 2], + [59, 2], + [59, 2], + [58, 3], + [58, 3], + [58, 3], + [56, 4], + [57, 4], + [110, 9], + [55, 5], + [108, 11], + [54, 6], + [53, 6], + [52, 7], + [52, 7], + [52, 7], + [52, 7], + [101, 15], + [150, 25], + [49, 9], + [49, 9], + [97, 19], + [48, 10], + [48, 10], + [47, 10], + [48, 11], + [47, 11], + [46, 11], + [93, 22], + [91, 23], + [45, 12], + [90, 25], + [89, 25], + [45, 13], + [131, 40], + [87, 28], + [43, 14], + [85, 29], + [43, 15], + [42, 15], + [42, 15], + [42, 15], + [83, 31], + [42, 16], + [41, 16], + [41, 16], + [41, 16], + [123, 50], + [40, 17], + [121, 52], + [40, 18], + [119, 54], + [39, 18], + [118, 56], + [39, 19], + [78, 39], + [38, 19], + [39, 20], + [39, 20], + [77, 40], + [38, 20], + [38, 20], + [38, 21], + [38, 21], + [38, 21], + [38, 21], + [38, 21], + [38, 21], + [113, 65], + [37, 22], + [112, 67], + [75, 46], + [37, 23], + [37, 23], + [37, 23], + [37, 23], + [111, 71], + [37, 24], + [110, 73], + [37, 25], + [110, 75], + [36, 25], + [74, 51], + [73, 52], + [73, 52], + [36, 26], + [37, 27], + [109, 80], + [73, 55], + [36, 27], + [37, 28], + [73, 56], + [73, 56], + [109, 86], + [110, 87], + [109, 89], + [37, 30], + [37, 30], + [73, 61], + [37, 31], + [110, 93], + [37, 31], + [74, 63], + [37, 32], + [37, 32], + [37, 32], + [112, 98], + [37, 33], + [37, 33], + [38, 34], + [37, 33], + [38, 34], + [113, 102], + [76, 69], + [38, 35], + [38, 35], + [76, 71], + [77, 72], + [77, 72], + [38, 36], + [39, 37], + [39, 37], + [39, 37], + [78, 75], + [79, 76], + [79, 76], + [40, 39], + [40, 39], + [40, 39], + [80, 79], + [81, 80], + [40, 40], + [41, 41], + [124, 123], + [41, 41], + [42, 42], + [125, 127], + [85, 86], + [42, 43], + [43, 44], + [43, 44], + [43, 44], + [44, 45], + [43, 44], + [88, 91], + [89, 92], + [89, 92], + [45, 47], + [46, 48], + [45, 47], + [46, 48], + [46, 48], + [47, 49], + [140, 147], + [48, 50], + [96, 101], + [48, 51], + [98, 103], + [99, 105], + [50, 53], + [51, 54], + [50, 53], + [103, 109], + [52, 55], + [105, 112], + [53, 56], + [54, 57], + [54, 58], + [109, 116], + [56, 59], + [112, 119], + [57, 61], + [57, 61], + [117, 124], + [119, 126], + [60, 64], + [123, 130], + [63, 66], + [63, 67], + [128, 135], + [131, 138], + [135, 142], + [69, 72], + [140, 146], + [144, 151], + [73, 76], + [151, 156], + [155, 160], + [80, 82], + [81, 83], + [82, 84], + [84, 86], + [85, 87], + [87, 88], + [89, 89], + [182, 184], + [95, 95], + [96, 96], + [99, 98], + [101, 100], + [210, 206], + [109, 106], + [112, 109], + [115, 111], + [119, 114], + [123, 117], + [127, 120], + [131, 124], + [136, 127], + [142, 132], + [147, 136], + [154, 140], + [162, 147], + [170, 152], + [179, 159], + [191, 167], + [203, 176], + [218, 187], + [124, 104], + [32, 27], + [32, 27], + [133, 111], + [104, 86], + [145, 120], + [38, 31], + [38, 31], + [119, 96], + [41, 33], + [127, 102], + [44, 35], + [91, 72], + [47, 37], + [47, 37], + [150, 117], + [53, 41], + [109, 84], + [115, 88], + [61, 46], + [62, 47], + [274, 204], + [155, 114], + [84, 61], + [89, 64], + [94, 68], + [212, 150], + [121, 85], + [135, 94], + [156, 107], + [189, 127], + [254, 168], + [452, 291] + ], + [ + [75060, 73927], + [-57, -254], + [-1241, 97], + [-960, 255], + [-684, 296], + [-876, 551], + [-1134, 1080], + [-1002, 1446], + [-564, 1121], + [-714, 1962], + [-460, 1939], + [-277, 2297], + [19, 2032], + [581, 2677], + [975, 1729], + [1646, 1497], + [4348, 1648], + [5447, 472], + [-5745, -858], + [-256, -66], + [-81, -22], + [-307, -87], + [-214, -65], + [-201, -64], + [-190, -64], + [-60, -21], + [-234, -85], + [-164, -62], + [-378, -155], + [-337, -152], + [-302, -149], + [-274, -147], + [-249, -145], + [-228, -142], + [-209, -140], + [-192, -138], + [-178, -135], + [-165, -134], + [-153, -132], + [-143, -130], + [-133, -129], + [-125, -126], + [-116, -126], + [-109, -123], + [-103, -122], + [-97, -121], + [-91, -119], + [-85, -118], + [-81, -117], + [-76, -115], + [-73, -115], + [-68, -113], + [-64, -112], + [-62, -111], + [-58, -109], + [-107, -217], + [-49, -106], + [-47, -106], + [-87, -209], + [-40, -103], + [-38, -102], + [-71, -202], + [-32, -100], + [-31, -99], + [-30, -98], + [-28, -98], + [-26, -97], + [-25, -96], + [-24, -95], + [-23, -95], + [-42, -187], + [-19, -93], + [-18, -92], + [-17, -92], + [-16, -91], + [-15, -90], + [-28, -180], + [-24, -177], + [-11, -87], + [-20, -174], + [-9, -86], + [-8, -86], + [-21, -254], + [-15, -251], + [-4, -82], + [-6, -164], + [-6, -243], + [-1, -80], + [0, -238], + [2, -157], + [1, -78], + [2, -77], + [2, -77], + [3, -77], + [3, -77], + [7, -152], + [4, -75], + [9, -150], + [5, -75], + [17, -222], + [13, -147], + [7, -73], + [7, -72], + [15, -144], + [8, -72], + [17, -143], + [9, -71], + [9, -71], + [9, -70], + [19, -140], + [10, -70], + [21, -139], + [11, -69], + [11, -69], + [22, -137], + [12, -68], + [12, -68], + [24, -135], + [25, -134], + [13, -67], + [13, -66], + [27, -133], + [14, -66], + [14, -66], + [14, -66], + [44, -195], + [46, -194], + [32, -129], + [16, -64], + [16, -63], + [17, -64], + [34, -127], + [17, -63], + [17, -63], + [35, -125], + [18, -62], + [37, -125], + [38, -123], + [19, -62], + [38, -123], + [20, -61], + [20, -61], + [20, -61], + [41, -121], + [42, -121], + [21, -60], + [65, -179], + [45, -119], + [23, -60], + [23, -59], + [23, -59], + [23, -59], + [24, -59], + [48, -117], + [24, -58], + [50, -117], + [25, -58], + [78, -173], + [26, -58], + [26, -57], + [27, -57], + [55, -115], + [28, -57], + [56, -113], + [29, -57], + [29, -56], + [59, -113], + [30, -56], + [31, -56], + [31, -56], + [31, -56], + [31, -56], + [32, -56], + [32, -55], + [33, -56], + [33, -55], + [33, -55], + [34, -56], + [69, -110], + [71, -109], + [36, -55], + [37, -55], + [74, -109], + [38, -54], + [39, -54], + [39, -54], + [40, -55], + [40, -54], + [41, -54], + [41, -53], + [85, -108], + [88, -107], + [90, -107], + [46, -53], + [47, -53], + [48, -53], + [49, -53], + [50, -53], + [50, -53], + [52, -53], + [52, -53], + [108, -105], + [56, -52], + [57, -53], + [58, -52], + [60, -53], + [60, -52], + [63, -52], + [64, -52], + [65, -53], + [67, -52], + [69, -52], + [72, -52], + [73, -52], + [75, -51], + [78, -52], + [81, -52], + [83, -52], + [87, -52], + [90, -51], + [94, -52], + [98, -52], + [103, -51], + [109, -52], + [115, -52], + [122, -51], + [131, -52], + [18, -7], + [37, -14], + [19, -7], + [19, -7], + [19, -7], + [20, -7], + [20, -7], + [20, -7], + [103, -34], + [22, -7], + [22, -7], + [22, -7], + [23, -7], + [23, -7], + [23, -7], + [24, -7], + [24, -7], + [24, -7], + [25, -7], + [25, -7], + [26, -7], + [26, -7], + [27, -7], + [28, -7], + [28, -7], + [28, -7], + [30, -7], + [30, -7], + [30, -7], + [32, -7], + [33, -7], + [33, -7], + [107, -22], + [39, -7], + [40, -7], + [42, -7], + [90, -15], + [48, -7], + [108, -15], + [61, -7], + [68, -8], + [76, -7], + [90, -8], + [115, -8], + [229, -11] + ], + [ + [43758, 81162], + [20, -469], + [-3808, -1071], + [-4123, -2102], + [-4754, -4275], + [-481, -592], + [-313, -404], + [-86, -114], + [-410, -561], + [-194, -276], + [-296, -433], + [-177, -267], + [-238, -369], + [-196, -312], + [-127, -206], + [-185, -306], + [-120, -202], + [-204, -350], + [-3273, -6697], + [-1261, -2839], + [-878, -1869], + [-607, -1192], + [-1040, -1813], + [-766, -1142], + [-841, -1070], + [-634, -690], + [-1145, -1021], + [-1264, -838], + [-1309, -603], + [-1148, -343], + [-1929, -255], + [-1878, 67], + [-1345, 207], + [-24, 489], + [335, -55], + [151, -23], + [116, -16], + [98, -13], + [165, -21], + [72, -8], + [129, -14], + [115, -12], + [53, -5], + [101, -9], + [47, -4], + [90, -7], + [126, -9], + [116, -7], + [72, -4], + [104, -5], + [98, -4], + [93, -3], + [89, -2], + [113, -2], + [80, -1], + [153, 0], + [97, 1], + [170, 4], + [160, 6], + [151, 7], + [142, 9], + [136, 10], + [129, 12], + [124, 12], + [120, 13], + [115, 14], + [111, 15], + [107, 15], + [104, 16], + [101, 17], + [98, 17], + [96, 17], + [93, 18], + [90, 19], + [89, 19], + [86, 19], + [85, 20], + [82, 20], + [81, 20], + [80, 21], + [78, 21], + [76, 21], + [148, 43], + [73, 22], + [140, 45], + [69, 23], + [68, 23], + [132, 46], + [128, 47], + [63, 24], + [62, 24], + [121, 49], + [59, 24], + [59, 25], + [58, 25], + [57, 25], + [112, 50], + [110, 51], + [107, 52], + [156, 78], + [51, 26], + [50, 26], + [100, 53], + [97, 54], + [48, 27], + [47, 27], + [47, 27], + [47, 27], + [46, 27], + [136, 82], + [176, 111], + [43, 28], + [42, 28], + [42, 28], + [84, 57], + [41, 28], + [41, 28], + [81, 57], + [119, 86], + [39, 29], + [39, 29], + [38, 29], + [38, 29], + [38, 29], + [38, 29], + [38, 29], + [74, 59], + [36, 29], + [73, 59], + [71, 59], + [36, 30], + [70, 59], + [35, 30], + [103, 90], + [101, 90], + [33, 30], + [66, 61], + [32, 30], + [97, 91], + [64, 61], + [94, 92], + [31, 31], + [31, 31], + [31, 31], + [61, 62], + [30, 31], + [30, 31], + [30, 31], + [30, 31], + [59, 62], + [29, 31], + [87, 94], + [57, 63], + [57, 63], + [28, 31], + [84, 95], + [55, 64], + [54, 63], + [27, 32], + [27, 32], + [27, 32], + [27, 32], + [27, 32], + [53, 64], + [26, 32], + [26, 32], + [104, 129], + [51, 65], + [51, 65], + [25, 32], + [50, 65], + [25, 33], + [25, 33], + [74, 98], + [24, 32], + [49, 66], + [24, 33], + [24, 33], + [24, 33], + [24, 33], + [71, 98], + [94, 133], + [23, 33], + [23, 33], + [69, 100], + [91, 134], + [45, 67], + [89, 134], + [88, 135], + [87, 136], + [43, 68], + [64, 102], + [21, 34], + [21, 34], + [21, 34], + [21, 34], + [21, 34], + [84, 137], + [21, 35], + [82, 137], + [41, 69], + [61, 104], + [60, 104], + [80, 139], + [20, 35], + [20, 35], + [20, 35], + [59, 105], + [59, 105], + [97, 176], + [19, 35], + [77, 142], + [19, 35], + [38, 71], + [38, 71], + [38, 71], + [94, 179], + [93, 179], + [37, 72], + [37, 72], + [55, 108], + [55, 109], + [55, 109], + [18, 36], + [54, 109], + [36, 73], + [36, 73], + [54, 110], + [54, 110], + [90, 184], + [71, 148], + [71, 149], + [53, 111], + [88, 187], + [88, 188], + [35, 75], + [35, 75], + [70, 151], + [35, 76], + [122, 266], + [35, 77], + [87, 191], + [122, 270], + [122, 271], + [122, 273], + [70, 157], + [123, 276], + [88, 198], + [53, 120], + [142, 320], + [89, 201], + [36, 81], + [36, 81], + [36, 81], + [72, 163], + [91, 205], + [73, 164], + [92, 207], + [37, 83], + [93, 208], + [113, 251], + [114, 253], + [19, 42], + [19, 42], + [116, 255], + [98, 214], + [79, 172], + [120, 260], + [81, 174], + [123, 263], + [210, 443], + [129, 268], + [2198, 4073], + [5706, 6660], + [188, 149], + [195, 151], + [307, 230], + [215, 156], + [111, 79], + [471, 322], + [253, 166], + [131, 84], + [417, 257], + [148, 88], + [152, 89], + [320, 181], + [525, 282], + [190, 97], + [198, 99], + [208, 101], + [219, 103], + [231, 105], + [245, 109], + [372, 157], + [152, 62], + [324, 128], + [86, 33], + [320, 119], + [98, 35], + [153, 54], + [106, 37], + [283, 95], + [185, 60], + [270, 84], + [72, 22], + [151, 45], + [339, 97], + [94, 26], + [99, 27], + [335, 87], + [433, 105], + [186, 43], + [231, 51], + [338, 69], + [450, 86] + ], + [ + [41182, 65878], + [-241, -523], + [-1288, 1137], + [-886, 868], + [-1052, 1127], + [-920, 1070], + [-1585, 2025], + [-1091, 1510], + [-1065, 1531], + [-1150, 1679], + [-1974, 2771], + [-1486, 1868], + [-2700, 2749], + [-3834, 2587], + [-5802, 1911], + [-3797, 379], + [-4669, -292], + [-4996, -1276], + [95943, -1913], + [-1466, -910], + [-2180, -1568], + [-1755, -1431], + [-1795, -1586], + [-1222, -1129], + [-392, 481], + [383, 371], + [172, 166], + [135, 129], + [114, 110], + [193, 184], + [163, 156], + [75, 71], + [70, 66], + [68, 64], + [126, 119], + [60, 56], + [113, 106], + [107, 100], + [102, 94], + [143, 133], + [91, 84], + [88, 81], + [126, 115], + [120, 109], + [190, 172], + [144, 129], + [104, 93], + [67, 60], + [164, 145], + [63, 56], + [229, 200], + [218, 188], + [207, 178], + [200, 168], + [192, 161], + [186, 154], + [181, 147], + [175, 142], + [172, 137], + [167, 132], + [164, 128], + [161, 124], + [158, 121], + [155, 117], + [153, 114], + [150, 111], + [149, 108], + [146, 105], + [145, 103], + [285, 199], + [140, 96], + [277, 187], + [136, 90], + [270, 176], + [133, 85], + [132, 83], + [132, 82], + [131, 81], + [130, 79], + [258, 154], + [128, 75], + [127, 73], + [127, 73], + [126, 71], + [126, 70], + [250, 136], + [125, 67], + [248, 130], + [123, 63], + [246, 124], + [-99880, 60], + [245, 118], + [243, 115], + [242, 110], + [362, 160], + [240, 102], + [120, 50], + [120, 49], + [239, 96], + [120, 47], + [238, 91], + [476, 174], + [238, 83], + [118, 40], + [356, 117], + [355, 111], + [354, 105], + [119, 34], + [118, 33], + [353, 96], + [354, 90], + [235, 57], + [235, 55], + [352, 78], + [234, 49], + [234, 47], + [351, 66], + [349, 61], + [349, 57], + [232, 35], + [348, 48], + [346, 44], + [230, 27], + [229, 25], + [229, 23], + [228, 21], + [228, 19], + [227, 17], + [226, 15], + [113, 7], + [337, 18], + [111, 5], + [224, 9], + [222, 7], + [331, 7], + [439, 4], + [542, -5], + [535, -15], + [423, -19], + [209, -12], + [517, -36], + [205, -17], + [606, -60], + [99, -11], + [493, -61], + [484, -69], + [191, -30], + [189, -31], + [94, -16], + [187, -33], + [93, -17], + [458, -89], + [449, -96], + [525, -124], + [343, -88], + [336, -92], + [330, -96], + [162, -49], + [242, -76], + [316, -104], + [386, -135], + [377, -140], + [368, -145], + [430, -180], + [280, -124], + [476, -223], + [199, -98], + [261, -133], + [383, -204], + [187, -104], + [245, -141], + [181, -107], + [119, -72], + [59, -36], + [118, -73], + [116, -73], + [58, -37], + [229, -149], + [169, -113], + [166, -114], + [164, -115], + [162, -116], + [107, -78], + [315, -237], + [206, -160], + [152, -121], + [150, -122], + [50, -41], + [390, -331], + [48, -42], + [48, -42], + [95, -84], + [141, -127], + [186, -171], + [46, -43], + [46, -43], + [91, -86], + [91, -87], + [135, -131], + [265, -264], + [174, -178], + [258, -270], + [42, -45], + [127, -137], + [167, -183], + [124, -138], + [205, -233], + [122, -141], + [201, -236], + [199, -239], + [158, -192], + [157, -195], + [39, -49], + [116, -147], + [155, -197], + [115, -149], + [115, -150], + [191, -253], + [114, -152], + [114, -154], + [113, -154], + [38, -52], + [113, -156], + [151, -210], + [113, -158], + [113, -159], + [38, -54], + [75, -107], + [113, -162], + [189, -272], + [38, -55], + [38, -55], + [38, -55], + [114, -166], + [190, -280], + [77, -113], + [38, -56], + [77, -114], + [77, -115], + [155, -231], + [39, -58], + [39, -58], + [157, -235], + [79, -119], + [80, -119], + [40, -60], + [40, -60], + [80, -121], + [40, -61], + [122, -183], + [41, -62], + [41, -62], + [41, -62], + [166, -250], + [42, -63], + [42, -63], + [85, -128], + [85, -128], + [43, -65], + [87, -130], + [87, -131], + [89, -133], + [44, -66], + [45, -67], + [90, -135], + [184, -273], + [93, -138], + [95, -140], + [48, -71], + [48, -71], + [98, -143], + [49, -72], + [150, -219], + [102, -148], + [104, -150], + [52, -75], + [107, -153], + [54, -77], + [110, -157], + [56, -79], + [56, -79], + [57, -80], + [58, -81], + [58, -81], + [118, -165], + [61, -84], + [61, -84], + [124, -171], + [64, -87], + [64, -87], + [66, -89], + [66, -89], + [136, -182], + [140, -186], + [72, -95], + [149, -193], + [76, -98], + [77, -100], + [80, -102], + [81, -103], + [83, -105], + [85, -107], + [87, -108], + [89, -111], + [92, -113], + [95, -115], + [97, -118], + [101, -120], + [104, -124], + [107, -127], + [112, -131], + [117, -135], + [122, -140], + [128, -145], + [135, -151], + [143, -159], + [174, -189], + [21, -23], + [22, -24], + [66, -71], + [92, -98], + [72, -76], + [49, -52], + [25, -26], + [26, -27], + [26, -27], + [26, -27], + [27, -28], + [27, -28], + [27, -28], + [28, -29], + [57, -59], + [121, -123], + [32, -32], + [33, -33], + [33, -33], + [34, -34], + [34, -34], + [36, -36], + [36, -36], + [38, -37], + [162, -159], + [44, -43], + [46, -44], + [48, -46], + [103, -98], + [56, -53], + [60, -56], + [64, -60], + [69, -64], + [77, -71], + [87, -79], + [101, -92], + [129, -115], + [207, -182], + [111, -96] + ], + [ + [68219, 43394], + [-224, -902], + [-2470, 2296], + [-2129, 2250], + [-2489, 2934], + [-1300, 1630], + [-2422, 3061], + [-193, 237], + [-243, 295], + [-106, 128], + [-131, 157], + [-52, 62], + [-180, 213], + [-51, 60], + [-76, 89], + [-151, 175], + [-149, 171], + [-74, 84], + [-220, 247], + [-48, 53], + [-49, 54], + [-167, 183], + [-48, 52], + [-142, 152], + [-94, 100], + [-187, 195], + [-139, 142], + [-253, 253], + [-137, 133], + [-159, 152], + [-68, 64], + [-68, 63], + [-90, 83], + [-45, 41], + [-202, 180], + [-90, 78], + [-22, 19], + [-134, 114], + [-67, 56], + [-89, 74], + [-89, 72], + [-89, 71], + [-89, 70], + [-111, 85], + [-45, 34], + [-44, 33], + [-89, 66], + [-44, 32], + [-111, 80], + [-67, 47], + [-67, 46], + [-66, 45], + [-89, 60], + [-67, 44], + [-45, 29], + [-66, 42], + [-134, 84], + [-67, 41], + [-67, 40], + [-67, 39], + [-45, 26], + [-67, 38], + [-23, 13], + [-67, 37], + [-180, 96], + [-23, 12], + [-45, 23], + [-68, 34], + [-90, 44], + [-69, 33], + [-45, 21], + [-91, 42], + [-114, 50], + [-23, 10], + [-69, 29], + [-46, 19], + [-69, 28], + [-92, 36], + [-93, 35], + [-70, 25], + [-69, 24], + [-70, 24], + [-47, 16], + [-94, 30], + [-70, 22], + [-71, 21], + [-95, 27], + [-47, 13], + [-120, 31], + [-95, 23], + [-73, 17], + [-96, 21], + [-24, 5], + [-25, 5], + [-97, 19], + [-49, 9], + [-98, 17], + [-24, 4], + [-25, 4], + [-74, 11], + [-49, 7], + [-50, 7], + [-174, 21], + [-76, 8], + [-126, 11], + [-102, 7], + [-51, 3], + [-77, 4], + [-103, 4], + [-78, 2], + [-78, 1], + [-131, 0], + [-106, -2], + [-79, -2], + [-54, -2], + [-80, -4], + [-54, -3], + [-190, -14], + [-110, -10], + [-138, -15], + [-112, -14], + [-141, -20], + [-85, -13], + [-201, -35], + [-58, -11], + [-205, -42], + [-89, -20], + [-90, -21], + [-90, -22], + [-214, -56], + [-62, -17], + [-124, -36], + [-126, -38], + [-95, -30], + [-128, -42], + [-130, -44], + [-65, -23], + [-132, -48], + [-134, -50], + [-34, -13], + [-102, -40], + [-207, -84], + [-175, -75], + [-71, -31], + [-108, -48], + [-73, -33], + [-146, -68], + [-112, -53], + [-113, -55], + [-114, -57], + [-77, -39], + [-156, -80], + [-40, -21], + [-119, -63], + [-122, -66], + [-40, -22], + [-166, -92], + [-84, -47], + [-42, -24], + [-85, -49], + [-86, -50], + [-220, -130], + [-45, -27], + [-90, -55], + [-91, -56], + [-92, -57], + [-237, -149], + [-195, -126], + [-303, -200], + [-104, -70], + [-106, -72], + [-328, -227], + [-229, -162], + [-238, -171], + [-185, -135], + [-323, -240], + [-343, -259], + [-218, -167], + [-2441, -1975], + [-3272, -2791], + [-217, 911], + [372, 328], + [150, 132], + [213, 188], + [86, 76], + [391, 344], + [200, 176], + [90, 79], + [125, 110], + [258, 227], + [255, 223], + [144, 126], + [55, 48], + [232, 202], + [406, 353], + [296, 256], + [397, 340], + [240, 204], + [436, 368], + [297, 247], + [3356, 2566], + [2422, 1435], + [1537, 648], + [964, 280], + [1441, 213], + [1760, -112], + [1095, -297], + [1823, -905], + [1431, -1075], + [2132, -2139], + [3259, -4045], + [244, -317], + [217, -281], + [37, -48], + [37, -48], + [37, -48], + [151, -196], + [194, -251], + [283, -365], + [254, -326], + [87, -111], + [134, -171], + [183, -233], + [94, -119], + [96, -121], + [197, -248], + [258, -322], + [162, -201], + [55, -68], + [112, -138], + [174, -213], + [120, -146], + [249, -302], + [197, -236], + [68, -81], + [69, -82], + [70, -83], + [294, -345], + [77, -90], + [79, -92], + [80, -93], + [166, -191], + [174, -199], + [279, -314], + [200, -223], + [105, -116], + [109, -120], + [112, -123], + [117, -127], + [249, -268], + [274, -291], + [330, -345], + [90, -93], + [193, -197], + [129, -131], + [82, -83], + [145, -145], + [158, -157], + [137, -135], + [232, -226], + [279, -267], + [297, -280], + [238, -221], + [100, -92], + [121, -110], + [471, -422] + ], + [ + [39635, 93784], + [1630, -879], + [-3212, -1558], + [-2381, -1507], + [-1809, -1371], + [-1343, -1148], + [-2319, -2230], + [-1561, -1640], + [-1763, -1910], + [-1212, -1288], + [-1121, -1125], + [-1198, -1086], + [-1492, -1131], + [-1245, -727], + [-1584, -636], + [-1366, -306], + [-1123, -101], + [-1535, 51], + [-1307, 191], + [-1112, 253], + [-1293, 385], + [-41, 1193], + [289, -84], + [150, -43], + [117, -32], + [98, -26], + [87, -23], + [151, -39], + [67, -17], + [63, -15], + [116, -28], + [54, -13], + [52, -12], + [97, -22], + [91, -20], + [127, -27], + [79, -17], + [75, -15], + [107, -21], + [68, -13], + [65, -12], + [32, -6], + [32, -6], + [61, -11], + [59, -10], + [58, -10], + [84, -14], + [107, -17], + [127, -19], + [49, -7], + [219, -29], + [161, -19], + [152, -17], + [145, -14], + [137, -11], + [132, -10], + [126, -8], + [121, -7], + [118, -5], + [113, -4], + [110, -3], + [107, -1], + [104, -1], + [101, 1], + [98, 1], + [96, 2], + [94, 2], + [91, 4], + [90, 4], + [88, 5], + [86, 6], + [85, 6], + [82, 6], + [162, 15], + [156, 17], + [76, 9], + [75, 10], + [74, 10], + [73, 10], + [72, 11], + [140, 23], + [69, 12], + [68, 12], + [68, 13], + [66, 13], + [66, 13], + [65, 14], + [64, 14], + [63, 14], + [63, 15], + [62, 15], + [62, 15], + [61, 15], + [60, 16], + [60, 16], + [59, 16], + [59, 16], + [58, 17], + [57, 17], + [57, 17], + [113, 35], + [56, 18], + [55, 18], + [109, 37], + [54, 19], + [107, 38], + [105, 39], + [52, 20], + [103, 40], + [101, 41], + [51, 21], + [50, 21], + [50, 21], + [49, 21], + [147, 65], + [144, 67], + [95, 45], + [47, 23], + [94, 47], + [46, 23], + [46, 24], + [46, 24], + [46, 24], + [46, 24], + [45, 24], + [45, 24], + [45, 25], + [45, 25], + [45, 25], + [133, 75], + [87, 51], + [44, 26], + [87, 52], + [86, 53], + [43, 27], + [85, 53], + [128, 82], + [84, 55], + [42, 28], + [42, 28], + [83, 56], + [83, 57], + [41, 29], + [41, 29], + [41, 29], + [41, 29], + [82, 59], + [82, 59], + [81, 60], + [81, 61], + [40, 30], + [41, 31], + [40, 31], + [40, 31], + [40, 31], + [40, 31], + [80, 63], + [40, 32], + [40, 32], + [40, 32], + [40, 32], + [40, 32], + [79, 65], + [40, 33], + [119, 99], + [79, 67], + [119, 102], + [79, 68], + [118, 104], + [40, 35], + [79, 71], + [39, 35], + [40, 36], + [79, 72], + [79, 72], + [79, 73], + [40, 37], + [119, 111], + [40, 38], + [79, 75], + [40, 38], + [80, 77], + [80, 77], + [40, 39], + [40, 39], + [41, 40], + [40, 39], + [81, 80], + [122, 120], + [122, 123], + [41, 41], + [41, 41], + [124, 126], + [41, 42], + [41, 42], + [42, 43], + [42, 43], + [42, 43], + [126, 130], + [42, 44], + [128, 133], + [85, 90], + [87, 91], + [130, 138], + [88, 93], + [44, 47], + [89, 95], + [45, 48], + [90, 96], + [136, 147], + [46, 49], + [46, 50], + [93, 100], + [188, 204], + [48, 52], + [96, 105], + [48, 52], + [49, 53], + [98, 107], + [50, 54], + [50, 55], + [50, 55], + [101, 110], + [52, 56], + [51, 56], + [52, 57], + [105, 114], + [53, 58], + [107, 116], + [54, 59], + [165, 180], + [56, 61], + [56, 61], + [57, 62], + [115, 124], + [58, 63], + [59, 64], + [59, 64], + [121, 130], + [61, 66], + [124, 133], + [63, 67], + [63, 68], + [129, 138], + [66, 70], + [67, 71], + [67, 71], + [137, 144], + [70, 74], + [142, 149], + [72, 75], + [74, 77], + [150, 155], + [76, 79], + [78, 80], + [79, 81], + [80, 82], + [82, 83], + [167, 169], + [173, 173], + [179, 178], + [92, 91], + [94, 93], + [96, 94], + [98, 95], + [101, 97], + [102, 98], + [105, 100], + [107, 102], + [111, 104], + [113, 105], + [116, 108], + [119, 110], + [123, 112], + [127, 115], + [131, 117], + [135, 120], + [140, 124], + [145, 126], + [150, 130], + [157, 134], + [164, 138], + [172, 142], + [180, 148], + [189, 153], + [201, 159], + [213, 167], + [228, 174], + [245, 184], + [303, 223], + [76, 54], + [117, 84], + [164, 116], + [43, 30], + [87, 60], + [45, 31], + [45, 31], + [93, 64], + [96, 65], + [49, 33], + [154, 102], + [220, 144], + [117, 76], + [61, 39], + [127, 80], + [66, 41], + [67, 42], + [142, 88], + [151, 91], + [162, 97], + [86, 51], + [282, 163], + [103, 59], + [110, 62], + [117, 65], + [261, 142], + [147, 79], + [164, 86], + [186, 95], + [218, 110], + [271, 133], + [391, 185], + [486, 219] + ], + [ + [10498, 80674], + [-39, -552], + [-2218, -187], + [-3479, -752], + [-2313, -868], + [95282, -3027], + [-126, -111], + [-536, -493], + [-278, -270], + [-317, -321], + [-102, -106], + [-199, -211], + [-97, -105], + [-189, -209], + [-228, -259], + [-176, -206], + [-129, -154], + [-167, -203], + [-282, -353], + [-193, -250], + [-150, -199], + [-182, -247], + [-71, -98], + [-174, -244], + [-236, -340], + [-98, -144], + [-128, -192], + [-187, -286], + [-31, -48], + [-180, -283], + [-59, -94], + [-173, -281], + [-85, -140], + [-166, -278], + [-214, -368], + [-156, -274], + [-51, -91], + [-200, -362], + [-2971, -6287], + [-958, -2192], + [-1075, -2330], + [-1343, -2543], + [-991, -1567], + [-1415, -1804], + [-1094, -1090], + [-1568, -1182], + [-1226, -666], + [-1438, -544], + [-890, -227], + [-1333, -204], + [-1934, -48], + [-48, 569], + [336, -4], + [152, 1], + [118, 2], + [99, 2], + [88, 3], + [79, 3], + [72, 3], + [68, 3], + [63, 3], + [59, 3], + [111, 7], + [150, 11], + [134, 11], + [42, 4], + [41, 4], + [40, 4], + [39, 4], + [76, 8], + [72, 8], + [69, 8], + [99, 12], + [63, 8], + [31, 4], + [175, 25], + [109, 17], + [104, 17], + [75, 13], + [72, 13], + [172, 33], + [161, 33], + [151, 33], + [143, 33], + [137, 34], + [130, 34], + [124, 33], + [120, 35], + [116, 34], + [111, 34], + [107, 34], + [105, 35], + [101, 34], + [98, 35], + [188, 69], + [91, 35], + [89, 35], + [86, 35], + [84, 35], + [83, 35], + [81, 35], + [79, 35], + [78, 35], + [151, 71], + [73, 35], + [72, 35], + [140, 71], + [69, 36], + [67, 35], + [131, 71], + [65, 36], + [63, 35], + [124, 71], + [120, 72], + [117, 71], + [58, 36], + [168, 107], + [162, 108], + [53, 36], + [52, 36], + [153, 108], + [50, 36], + [49, 36], + [49, 36], + [48, 36], + [48, 36], + [48, 36], + [93, 72], + [46, 36], + [46, 36], + [45, 36], + [89, 72], + [216, 181], + [125, 109], + [41, 36], + [121, 109], + [118, 109], + [115, 109], + [76, 73], + [111, 109], + [37, 37], + [36, 36], + [72, 73], + [71, 73], + [70, 73], + [69, 73], + [34, 37], + [34, 37], + [67, 73], + [33, 36], + [99, 110], + [65, 73], + [32, 37], + [32, 37], + [63, 73], + [93, 110], + [31, 37], + [31, 37], + [30, 36], + [61, 74], + [89, 110], + [59, 74], + [87, 110], + [57, 74], + [57, 74], + [28, 37], + [28, 37], + [28, 37], + [55, 73], + [55, 74], + [27, 37], + [27, 37], + [27, 37], + [27, 37], + [27, 37], + [53, 74], + [26, 37], + [26, 37], + [26, 37], + [78, 112], + [51, 74], + [51, 74], + [25, 37], + [25, 37], + [75, 112], + [49, 74], + [25, 38], + [97, 149], + [24, 37], + [24, 37], + [71, 112], + [94, 149], + [69, 112], + [46, 75], + [68, 112], + [23, 38], + [45, 75], + [67, 112], + [44, 75], + [66, 113], + [65, 113], + [43, 75], + [43, 75], + [64, 113], + [84, 151], + [21, 38], + [21, 38], + [62, 113], + [62, 114], + [20, 37], + [41, 76], + [61, 114], + [20, 38], + [20, 38], + [20, 38], + [20, 38], + [20, 38], + [20, 38], + [20, 38], + [79, 152], + [39, 76], + [39, 76], + [39, 76], + [39, 77], + [77, 153], + [19, 38], + [19, 38], + [19, 38], + [57, 115], + [57, 115], + [56, 115], + [19, 39], + [56, 115], + [56, 116], + [37, 77], + [55, 115], + [37, 78], + [55, 116], + [18, 38], + [55, 116], + [90, 194], + [126, 272], + [18, 39], + [18, 39], + [18, 39], + [18, 39], + [89, 196], + [71, 156], + [71, 157], + [35, 78], + [53, 118], + [53, 118], + [35, 79], + [88, 198], + [35, 79], + [35, 79], + [35, 79], + [35, 79], + [70, 159], + [105, 239], + [35, 80], + [35, 80], + [35, 80], + [35, 80], + [35, 80], + [35, 80], + [123, 282], + [70, 161], + [106, 243], + [53, 122], + [160, 366], + [161, 369], + [18, 41], + [18, 41], + [18, 41], + [109, 247], + [91, 207], + [129, 291], + [37, 83], + [187, 418], + [133, 295], + [96, 211], + [97, 212], + [118, 256], + [1990, 3903], + [2037, 3125], + [1442, 1750], + [-95142, 3913], + [451, 248], + [363, 188], + [255, 126], + [267, 127], + [138, 64], + [287, 129], + [150, 65], + [474, 195], + [168, 66], + [173, 66], + [179, 66], + [378, 134], + [409, 135], + [218, 68], + [228, 69], + [240, 69], + [254, 70], + [269, 70], + [328, 80], + [82, 19], + [210, 48], + [132, 29], + [137, 29], + [191, 39], + [308, 59], + [55, 10], + [55, 10], + [56, 10], + [57, 10], + [58, 10], + [309, 51], + [203, 31], + [145, 21], + [153, 21], + [340, 43], + [93, 11], + [312, 34], + [117, 12], + [126, 12], + [137, 12], + [152, 12], + [172, 13], + [204, 14], + [265, 16], + [510, 21], + [161, 5] + ], + [ + [11573, 67212], + [-299, -654], + [-795, 629], + [-1117, 999], + [-1599, 1684], + [-716, 861], + [-1442, 1943], + [-1088, 1642], + [-799, 1289], + [-1085, 1824], + [-1716, 2890], + [98579, 2220], + [-2485, 3176], + [-2771, 2492], + [-2593, 1582], + [-3815, 1461], + [-6692, 1064], + [-5433, -91], + [-6694, -1285], + [-3371, -1306], + [-2379, -1277], + [-1805, -1192], + [-1567, -1192], + [-1570, -1332], + [-1428, -1311], + [-641, 531], + [405, 401], + [184, 181], + [144, 141], + [123, 119], + [109, 105], + [100, 96], + [92, 88], + [86, 82], + [158, 149], + [145, 136], + [68, 63], + [129, 120], + [62, 57], + [119, 109], + [57, 52], + [216, 196], + [102, 91], + [50, 45], + [191, 169], + [46, 40], + [90, 79], + [131, 114], + [43, 37], + [126, 107], + [41, 35], + [160, 136], + [78, 65], + [77, 64], + [187, 154], + [269, 218], + [257, 204], + [248, 193], + [240, 182], + [234, 174], + [227, 166], + [224, 159], + [218, 153], + [216, 147], + [212, 142], + [209, 137], + [207, 133], + [204, 129], + [203, 125], + [201, 121], + [200, 118], + [198, 114], + [198, 111], + [196, 109], + [196, 106], + [195, 103], + [194, 100], + [194, 98], + [194, 96], + [193, 93], + [194, 91], + [386, 177], + [193, 85], + [193, 83], + [193, 81], + [193, 79], + [387, 153], + [194, 74], + [389, 143], + [195, 69], + [196, 68], + [196, 66], + [196, 64], + [197, 63], + [197, 61], + [395, 118], + [199, 57], + [598, 162], + [603, 150], + [608, 138], + [406, 86], + [409, 80], + [410, 76], + [411, 70], + [413, 66], + [207, 31], + [206, 30], + [414, 56], + [208, 26], + [622, 72], + [622, 62], + [620, 52], + [619, 43], + [205, 12], + [205, 11], + [613, 26], + [203, 7], + [203, 6], + [202, 5], + [201, 4], + [201, 3], + [200, 2], + [199, 1], + [198, 0], + [590, -5], + [582, -13], + [383, -13], + [753, -36], + [185, -11], + [367, -24], + [720, -58], + [352, -33], + [347, -36], + [845, -101], + [328, -45], + [322, -47], + [474, -75], + [309, -53], + [303, -55], + [298, -57], + [292, -59], + [144, -30], + [424, -93], + [139, -32], + [542, -132], + [132, -34], + [260, -69], + [629, -179], + [243, -74], + [472, -152], + [342, -117], + [440, -160], + [424, -164], + [306, -125], + [298, -128], + [194, -86], + [95, -43], + [188, -87], + [93, -44], + [273, -133], + [439, -225], + [169, -91], + [411, -230], + [159, -93], + [386, -235], + [296, -190], + [287, -192], + [70, -48], + [139, -97], + [136, -97], + [200, -146], + [386, -296], + [125, -99], + [244, -199], + [119, -100], + [233, -201], + [227, -202], + [56, -51], + [164, -152], + [54, -51], + [107, -102], + [158, -154], + [155, -154], + [202, -206], + [148, -155], + [49, -52], + [192, -208], + [234, -261], + [46, -52], + [182, -210], + [45, -53], + [44, -52], + [132, -158], + [87, -106], + [129, -159], + [169, -213], + [166, -213], + [122, -160], + [121, -161], + [40, -54], + [40, -54], + [39, -53], + [118, -162], + [116, -162], + [77, -109], + [152, -217], + [150, -218], + [111, -164], + [-99855, -219], + [109, -165], + [36, -55], + [72, -111], + [107, -166], + [106, -166], + [141, -223], + [35, -56], + [139, -224], + [69, -112], + [103, -169], + [137, -226], + [137, -227], + [101, -171], + [34, -57], + [68, -115], + [67, -114], + [34, -58], + [101, -173], + [67, -115], + [101, -175], + [67, -116], + [168, -293], + [101, -176], + [101, -178], + [101, -178], + [68, -119], + [34, -60], + [34, -60], + [34, -60], + [34, -60], + [34, -60], + [68, -121], + [68, -121], + [34, -61], + [103, -183], + [69, -122], + [35, -62], + [69, -123], + [35, -62], + [35, -62], + [35, -62], + [35, -62], + [35, -62], + [106, -188], + [71, -126], + [72, -127], + [72, -127], + [36, -63], + [73, -128], + [73, -129], + [37, -65], + [74, -129], + [75, -131], + [75, -131], + [38, -66], + [38, -66], + [154, -266], + [39, -67], + [79, -135], + [79, -135], + [81, -137], + [40, -68], + [41, -69], + [82, -139], + [168, -280], + [85, -141], + [87, -143], + [88, -145], + [180, -292], + [46, -74], + [93, -148], + [95, -151], + [48, -76], + [98, -153], + [49, -77], + [50, -77], + [102, -157], + [51, -79], + [52, -79], + [53, -80], + [54, -81], + [54, -81], + [54, -81], + [55, -83], + [113, -166], + [116, -169], + [59, -86], + [60, -86], + [61, -87], + [62, -88], + [63, -89], + [64, -89], + [65, -91], + [66, -91], + [68, -93], + [68, -93], + [70, -95], + [71, -95], + [73, -97], + [74, -98], + [76, -100], + [78, -101], + [80, -103], + [81, -104], + [84, -106], + [86, -108], + [88, -109], + [92, -112], + [94, -115], + [97, -117], + [101, -120], + [105, -122], + [109, -127], + [113, -130], + [120, -135], + [125, -139], + [133, -145], + [160, -173], + [80, -85], + [41, -43], + [21, -22], + [64, -67], + [135, -139], + [96, -97], + [25, -25], + [25, -25], + [51, -51], + [53, -53], + [27, -27], + [143, -140], + [125, -120], + [33, -31], + [34, -32], + [35, -33], + [35, -33], + [75, -70], + [120, -111], + [88, -80], + [96, -86], + [52, -46], + [54, -48], + [59, -52], + [62, -54], + [144, -124], + [85, -72], + [101, -84], + [128, -106], + [292, -233] + ], + [ + [37279, 43304], + [-232, -918], + [-1322, 1135], + [-1848, 1784], + [-2310, 2581], + [-1471, 1852], + [-1277, 1727], + [-1361, 1931], + [-2770, 3950], + [-141, 191], + [-209, 280], + [-184, 243], + [-69, 90], + [-159, 206], + [-113, 145], + [-135, 171], + [-157, 196], + [-223, 273], + [-133, 160], + [-155, 183], + [-133, 154], + [-66, 76], + [-132, 150], + [-66, 74], + [-155, 170], + [-22, 24], + [-88, 95], + [-88, 94], + [-66, 70], + [-88, 92], + [-66, 68], + [-88, 90], + [-110, 110], + [-111, 110], + [-44, 43], + [-177, 169], + [-67, 63], + [-89, 82], + [-89, 81], + [-67, 60], + [-45, 40], + [-67, 59], + [-67, 58], + [-90, 77], + [-45, 38], + [-181, 149], + [-45, 36], + [-91, 72], + [-69, 54], + [-45, 35], + [-92, 70], + [-138, 102], + [-69, 50], + [-93, 66], + [-46, 32], + [-140, 96], + [-24, 16], + [-94, 62], + [-23, 15], + [-189, 120], + [-167, 101], + [-96, 56], + [-121, 68], + [-49, 27], + [-72, 39], + [-147, 78], + [-49, 25], + [-74, 37], + [-149, 72], + [-75, 35], + [-76, 34], + [-75, 33], + [-76, 33], + [-26, 11], + [-102, 42], + [-77, 31], + [-25, 10], + [-52, 20], + [-77, 29], + [-52, 19], + [-53, 19], + [-104, 36], + [-53, 18], + [-79, 26], + [-53, 17], + [-188, 56], + [-108, 30], + [-218, 56], + [-139, 32], + [-55, 12], + [-28, 6], + [-85, 17], + [-56, 11], + [-228, 40], + [-57, 9], + [-204, 28], + [-117, 14], + [-149, 15], + [-119, 10], + [-183, 12], + [-61, 3], + [-216, 7], + [-63, 1], + [-190, 0], + [-64, -1], + [-226, -7], + [-98, -5], + [-66, -4], + [-100, -7], + [-134, -11], + [-102, -10], + [-103, -11], + [-69, -8], + [-139, -18], + [-141, -20], + [-71, -11], + [-143, -24], + [-73, -13], + [-221, -42], + [-187, -40], + [-114, -26], + [-38, -9], + [-155, -38], + [-78, -20], + [-79, -21], + [-159, -44], + [-81, -23], + [-41, -12], + [-123, -37], + [-166, -52], + [-84, -27], + [-42, -14], + [-86, -29], + [-173, -60], + [-177, -64], + [-180, -68], + [-230, -91], + [-47, -19], + [-190, -79], + [-194, -84], + [-149, -66], + [-152, -69], + [-206, -97], + [-213, -103], + [-387, -196], + [-231, -122], + [-178, -96], + [-183, -101], + [-5244, -3601], + [-2176, -1742], + [-150, 992], + [305, 255], + [155, 129], + [119, 99], + [101, 84], + [169, 140], + [207, 170], + [226, 186], + [238, 194], + [126, 103], + [298, 241], + [227, 182], + [233, 186], + [212, 168], + [400, 314], + [160, 124], + [297, 229], + [273, 207], + [253, 190], + [120, 89], + [231, 170], + [426, 308], + [572, 402], + [3030, 1837], + [1847, 814], + [2667, 643], + [1507, 33], + [1815, -331], + [1293, -513], + [1011, -576], + [1782, -1415], + [1187, -1226], + [1722, -2136], + [1790, -2529], + [189, -277], + [193, -283], + [28, -41], + [141, -207], + [114, -168], + [204, -300], + [59, -87], + [150, -221], + [184, -270], + [189, -277], + [161, -235], + [165, -241], + [67, -98], + [241, -349], + [106, -153], + [181, -260], + [111, -159], + [190, -270], + [157, -222], + [161, -226], + [83, -116], + [126, -175], + [129, -179], + [132, -182], + [136, -186], + [93, -126], + [190, -257], + [49, -66], + [99, -132], + [153, -203], + [52, -69], + [214, -281], + [111, -144], + [172, -222], + [179, -228], + [124, -157], + [127, -160], + [65, -81], + [134, -166], + [138, -170], + [217, -264], + [230, -276], + [80, -95], + [252, -295], + [88, -102], + [90, -104], + [188, -215], + [98, -111], + [102, -114], + [105, -117], + [108, -120], + [113, -124], + [117, -128], + [122, -132], + [127, -137], + [275, -291], + [331, -342], + [45, -46], + [116, -118], + [148, -149], + [132, -131], + [84, -83], + [148, -145], + [128, -124], + [212, -203], + [247, -232], + [142, -132], + [221, -202], + [63, -57], + [308, -275], + [101, -89], + [122, -106], + [164, -141], + [300, -254] + ], + [ + [60931, 21690], + [-543, -803], + [-275, 284], + [-155, 163], + [-120, 128], + [-102, 108], + [-171, 182], + [-143, 154], + [-182, 198], + [-55, 60], + [-198, 217], + [-89, 98], + [-124, 138], + [-115, 128], + [-141, 158], + [-192, 217], + [-30, 34], + [-59, 67], + [-57, 65], + [-28, 32], + [-134, 153], + [-26, 30], + [-100, 115], + [-72, 83], + [-70, 81], + [-45, 52], + [-184, 214], + [-150, 176], + [-142, 168], + [-135, 159], + [-128, 153], + [-122, 146], + [-117, 140], + [-113, 136], + [-108, 130], + [-105, 127], + [-101, 123], + [-98, 119], + [-95, 116], + [-92, 113], + [-177, 218], + [-85, 105], + [-83, 102], + [-82, 101], + [-79, 98], + [-77, 96], + [-76, 95], + [-219, 273], + [-139, 174], + [-134, 168], + [-193, 242], + [-124, 156], + [-60, 76], + [-60, 75], + [-59, 74], + [-58, 73], + [-57, 72], + [-56, 71], + [-56, 71], + [-55, 69], + [-54, 68], + [-54, 68], + [-53, 67], + [-52, 66], + [-103, 130], + [-150, 190], + [-193, 243], + [-47, 59], + [-47, 59], + [-46, 58], + [-136, 171], + [-89, 111], + [-87, 109], + [-128, 160], + [-83, 104], + [-123, 153], + [-121, 149], + [-78, 97], + [-39, 48], + [-116, 142], + [-75, 92], + [-75, 91], + [-37, 45], + [-73, 89], + [-36, 44], + [-36, 44], + [-107, 129], + [-71, 85], + [-69, 83], + [-69, 82], + [-135, 160], + [-67, 79], + [-33, 39], + [-98, 114], + [-65, 76], + [-32, 37], + [-32, 37], + [-32, 37], + [-95, 108], + [-63, 72], + [-123, 140], + [-61, 68], + [-61, 68], + [-149, 165], + [-118, 128], + [-58, 63], + [-29, 31], + [-29, 31], + [-29, 31], + [-114, 121], + [-57, 59], + [-28, 29], + [-28, 29], + [-28, 29], + [-28, 29], + [-28, 29], + [-83, 85], + [-137, 138], + [-109, 107], + [-80, 78], + [-27, 26], + [-27, 26], + [-53, 51], + [-53, 50], + [-79, 74], + [-157, 144], + [-104, 93], + [-51, 45], + [-26, 23], + [-51, 44], + [-51, 44], + [-51, 44], + [-102, 85], + [-50, 41], + [-76, 62], + [-25, 20], + [-25, 20], + [-25, 20], + [-25, 20], + [-50, 39], + [-25, 19], + [-25, 19], + [-25, 19], + [-25, 19], + [-25, 19], + [-25, 19], + [-49, 37], + [-99, 72], + [-25, 18], + [-74, 52], + [-49, 34], + [-25, 17], + [-25, 17], + [-49, 33], + [-49, 33], + [-24, 16], + [-49, 32], + [-49, 31], + [-49, 31], + [-49, 30], + [-49, 30], + [-73, 44], + [-49, 28], + [-49, 28], + [-49, 28], + [-49, 27], + [-24, 13], + [-73, 39], + [-49, 26], + [-74, 37], + [-24, 12], + [-49, 24], + [-25, 12], + [-49, 23], + [-49, 23], + [-24, 11], + [-49, 22], + [-74, 32], + [-24, 10], + [-74, 30], + [-74, 30], + [-50, 19], + [-49, 18], + [-25, 9], + [-25, 9], + [-25, 9], + [-49, 17], + [-50, 17], + [-25, 8], + [-25, 8], + [-75, 23], + [-50, 15], + [-101, 28], + [-76, 20], + [-25, 6], + [-51, 12], + [-51, 12], + [-51, 11], + [-51, 11], + [-26, 5], + [-26, 5], + [-26, 5], + [-51, 9], + [-52, 9], + [-26, 4], + [-26, 4], + [-26, 4], + [-26, 4], + [-53, 7], + [-52, 7], + [-53, 6], + [-79, 8], + [-27, 2], + [-53, 4], + [-27, 2], + [-27, 2], + [-27, 2], + [-54, 3], + [-27, 1], + [-27, 1], + [-27, 1], + [-28, 1], + [-27, 1], + [-82, 1], + [-28, 0], + [-28, 0], + [-83, -1], + [-28, -1], + [-28, -1], + [-28, -1], + [-28, -1], + [-28, -1], + [-86, -5], + [-57, -4], + [-57, -5], + [-58, -5], + [-29, -3], + [-88, -10], + [-89, -11], + [-89, -13], + [-31, -5], + [-30, -5], + [-91, -15], + [-92, -18], + [-31, -6], + [-31, -6], + [-31, -6], + [-63, -14], + [-63, -14], + [-96, -23], + [-32, -8], + [-65, -17], + [-98, -27], + [-33, -9], + [-66, -19], + [-34, -10], + [-67, -21], + [-34, -11], + [-103, -33], + [-69, -23], + [-35, -12], + [-71, -25], + [-107, -39], + [-36, -14], + [-109, -42], + [-37, -15], + [-112, -45], + [-38, -16], + [-38, -16], + [-76, -33], + [-39, -17], + [-39, -17], + [-79, -36], + [-79, -36], + [-41, -19], + [-40, -19], + [-124, -60], + [-41, -20], + [-42, -21], + [-85, -43], + [-43, -22], + [-131, -69], + [-44, -23], + [-45, -24], + [-91, -50], + [-45, -25], + [-47, -26], + [-46, -26], + [-95, -54], + [-48, -28], + [-48, -28], + [-99, -58], + [-100, -60], + [-51, -31], + [-51, -31], + [-52, -32], + [-53, -33], + [-53, -33], + [-54, -34], + [-109, -70], + [-56, -36], + [-113, -74], + [-58, -38], + [-59, -39], + [-59, -40], + [-121, -82], + [-62, -42], + [-127, -88], + [-65, -45], + [-132, -94], + [-138, -98], + [-70, -51], + [-145, -106], + [-75, -55], + [-154, -115], + [-161, -121], + [-83, -63], + [-173, -133], + [-90, -70], + [-92, -72], + [-96, -75], + [-98, -78], + [-101, -80], + [-105, -84], + [-109, -88], + [-113, -92], + [-119, -96], + [-123, -102], + [-130, -107], + [-137, -114], + [-145, -122], + [-156, -130], + [-156, -132], + [-70, -60], + [-49, -42], + [-75, -64], + [-105, -90], + [-27, -23], + [-56, -48], + [-87, -75], + [-30, -26], + [-62, -54], + [-131, -114], + [-107, -93], + [-38, -33], + [-205, -180], + [-93, -82], + [-50, -44], + [-52, -46], + [-176, -155], + [-67, -60], + [-73, -65], + [-81, -72], + [-93, -83], + [-112, -100], + [-149, -133], + [-273, -245], + [-174, 1032], + [905, 828], + [1928, 1708], + [1224, 1021], + [1022, 794], + [1497, 1031], + [1068, 606], + [902, 405], + [1434, 391], + [1080, 52], + [869, -133], + [736, -241], + [1031, -540], + [797, -573], + [1080, -968], + [1333, -1438], + [1348, -1632], + [1043, -1326], + [1570, -2018], + [1356, -1709], + [1098, -1338], + [1347, -1568], + [2058, -2222] + ], + [ + [62894, 32513], + [45, -701], + [-302, -170], + [-173, -96], + [-135, -75], + [-115, -63], + [-193, -106], + [-85, -46], + [-79, -43], + [-211, -115], + [-63, -34], + [-232, -124], + [-105, -56], + [-147, -78], + [-223, -117], + [-42, -22], + [-121, -63], + [-152, -79], + [-37, -19], + [-72, -37], + [-35, -18], + [-35, -18], + [-167, -85], + [-158, -80], + [-150, -75], + [-143, -71], + [-204, -101], + [-192, -94], + [-182, -88], + [-175, -83], + [-167, -78], + [-160, -75], + [-155, -72], + [-149, -68], + [-145, -66], + [-141, -63], + [-137, -61], + [-133, -58], + [-129, -56], + [-251, -107], + [-239, -101], + [-230, -94], + [-330, -132], + [-106, -42], + [-207, -80], + [-101, -38], + [-295, -110], + [-283, -102], + [-448, -155], + [-87, -29], + [-338, -110], + [-244, -76], + [-238, -72], + [-154, -45], + [-77, -22], + [-225, -63], + [-74, -20], + [-218, -58], + [-284, -72], + [-207, -50], + [-68, -16], + [-135, -31], + [-67, -15], + [-198, -43], + [-385, -78], + [-187, -35], + [-123, -22], + [-122, -21], + [-120, -20], + [-119, -19], + [-118, -18], + [-290, -41], + [-5059, 128], + [-2067, 585], + [-2458, 1177], + [-3776, 2906], + [-274, 259], + [-164, 158], + [-192, 187], + [-55, 54], + [-165, 163], + [-138, 138], + [-138, 139], + [-111, 113], + [-139, 142], + [-112, 115], + [-168, 174], + [-141, 147], + [-85, 89], + [-113, 119], + [-57, 60], + [-86, 91], + [-144, 153], + [-232, 248], + [-205, 221], + [-178, 192], + [-60, 65], + [-60, 65], + [-151, 164], + [-61, 66], + [-92, 100], + [-217, 236], + [-31, 34], + [-126, 137], + [-32, 35], + [-160, 174], + [-32, 35], + [-32, 35], + [-65, 71], + [-65, 71], + [-33, 36], + [-132, 143], + [-34, 37], + [-33, 36], + [-67, 73], + [-34, 37], + [-136, 147], + [-35, 38], + [-34, 37], + [-69, 75], + [-35, 38], + [-176, 190], + [-108, 116], + [-145, 156], + [-148, 158], + [-75, 80], + [-114, 121], + [-154, 163], + [-39, 41], + [-40, 42], + [-39, 41], + [-40, 42], + [-40, 42], + [-40, 42], + [-40, 42], + [-164, 171], + [-41, 43], + [-126, 130], + [-172, 177], + [-43, 44], + [-44, 45], + [-89, 91], + [-135, 137], + [-92, 93], + [-46, 46], + [-47, 47], + [-47, 47], + [-48, 48], + [-193, 192], + [-50, 49], + [-50, 49], + [-50, 49], + [-51, 50], + [-102, 100], + [-211, 204], + [-164, 157], + [-112, 106], + [-57, 54], + [-234, 219], + [-183, 169], + [-126, 115], + [-64, 58], + [-65, 59], + [-66, 59], + [-67, 60], + [-68, 61], + [-69, 61], + [-70, 62], + [-71, 63], + [-72, 63], + [-73, 64], + [-75, 65], + [-75, 65], + [-78, 67], + [-78, 67], + [-162, 137], + [-84, 70], + [-172, 144], + [-180, 148], + [-94, 76], + [-194, 156], + [-206, 164], + [-108, 84], + [-111, 86], + [-115, 89], + [-120, 91], + [-124, 94], + [-130, 97], + [-136, 101], + [-142, 104], + [-151, 109], + [-160, 115], + [-194, 137], + [-24, 17], + [-49, 34], + [-75, 52], + [-131, 90], + [-112, 76], + [-28, 19], + [-59, 40], + [-30, 20], + [-158, 105], + [-102, 67], + [-72, 47], + [-113, 74], + [-166, 106], + [-44, 28], + [-46, 29], + [-48, 30], + [-155, 97], + [-56, 35], + [-123, 75], + [-67, 41], + [-73, 44], + [-166, 100], + [-100, 59], + [-120, 70], + [-157, 91], + [-318, 180], + [150, 629], + [1546, -889], + [1522, -1000], + [1246, -916], + [1722, -1415], + [1403, -1281], + [1122, -1100], + [1469, -1520], + [2068, -2210], + [2138, -2199], + [2411, -2132], + [273, -210], + [220, -164], + [361, -259], + [112, -78], + [197, -134], + [170, -113], + [114, -74], + [86, -55], + [231, -144], + [87, -53], + [58, -35], + [205, -121], + [148, -85], + [89, -50], + [240, -131], + [60, -32], + [61, -32], + [244, -125], + [123, -61], + [156, -75], + [219, -102], + [127, -57], + [224, -97], + [162, -67], + [262, -104], + [199, -75], + [270, -96], + [205, -69], + [208, -66], + [175, -53], + [321, -90], + [145, -38], + [256, -63], + [112, -26], + [149, -33], + [76, -16], + [267, -53], + [311, -55], + [119, -19], + [160, -24], + [161, -22], + [287, -35], + [83, -9], + [295, -28], + [86, -7], + [5217, 444], + [2884, 858], + [1550, 602], + [1875, 834], + [2485, 1248], + [969, 520] + ], + [ + [97718, 53330], + [4, -104], + [-2520, -990], + [-1209, -401], + [-1554, -422], + [-997, -204], + [-1439, -181], + [-1020, -33], + [-1254, 92], + [-1700, 401], + [-984, 404], + [-1343, 780], + [-1039, 793], + [-1064, 976], + [-1690, 1821], + [-1839, 2171], + [-1375, 1613], + [-4217, 4297], + [-4116, 3067], + [-1938, 1113], + [-2235, 1062], + [2626, -1141], + [256, -136], + [148, -80], + [57, -31], + [55, -30], + [384, -215], + [174, -100], + [165, -96], + [156, -92], + [292, -176], + [136, -84], + [615, -390], + [326, -215], + [396, -270], + [185, -129], + [347, -248], + [322, -236], + [444, -336], + [139, -108], + [135, -106], + [259, -207], + [306, -250], + [344, -288], + [375, -323], + [301, -266], + [192, -173], + [581, -539], + [126, -120], + [592, -578], + [221, -222], + [487, -500], + [389, -411], + [573, -621], + [86, -95], + [197, -219], + [299, -336], + [106, -120], + [182, -207], + [152, -174], + [125, -144], + [123, -142], + [264, -307], + [141, -164], + [230, -269], + [180, -211], + [155, -182], + [109, -128], + [151, -177], + [128, -150], + [106, -124], + [146, -171], + [206, -240], + [102, -118], + [81, -94], + [20, -23], + [81, -93], + [20, -23], + [20, -23], + [20, -23], + [20, -23], + [20, -23], + [20, -23], + [20, -23], + [20, -23], + [99, -113], + [79, -90], + [59, -67], + [39, -44], + [176, -198], + [136, -151], + [58, -64], + [58, -64], + [77, -85], + [77, -84], + [77, -83], + [134, -144], + [96, -102], + [19, -20], + [19, -20], + [19, -20], + [19, -20], + [19, -20], + [19, -20], + [115, -120], + [57, -59], + [38, -39], + [38, -39], + [38, -39], + [134, -135], + [19, -19], + [19, -19], + [19, -19], + [19, -19], + [19, -19], + [19, -19], + [134, -131], + [38, -37], + [134, -129], + [19, -18], + [173, -162], + [58, -54], + [58, -53], + [116, -105], + [78, -69], + [78, -69], + [39, -34], + [39, -34], + [98, -84], + [99, -83], + [59, -49], + [40, -33], + [80, -65], + [20, -16], + [20, -16], + [20, -16], + [20, -16], + [20, -16], + [20, -16], + [20, -16], + [80, -63], + [61, -47], + [41, -31], + [102, -77], + [20, -15], + [41, -30], + [41, -30], + [62, -45], + [83, -60], + [21, -15], + [63, -44], + [42, -29], + [42, -29], + [63, -43], + [85, -57], + [43, -28], + [43, -28], + [86, -55], + [22, -14], + [22, -14], + [43, -27], + [44, -27], + [44, -27], + [66, -40], + [133, -79], + [90, -51], + [23, -13], + [23, -13], + [45, -25], + [91, -50], + [47, -25], + [23, -12], + [23, -12], + [23, -12], + [23, -12], + [70, -36], + [71, -36], + [24, -12], + [24, -12], + [47, -23], + [48, -23], + [48, -23], + [73, -34], + [24, -11], + [49, -22], + [49, -22], + [25, -11], + [25, -11], + [25, -11], + [75, -32], + [50, -21], + [101, -42], + [77, -30], + [26, -10], + [26, -10], + [26, -10], + [26, -10], + [26, -10], + [26, -10], + [79, -29], + [54, -19], + [80, -28], + [27, -9], + [27, -9], + [27, -9], + [82, -27], + [28, -9], + [83, -26], + [56, -17], + [85, -25], + [28, -8], + [57, -16], + [29, -8], + [29, -8], + [29, -8], + [29, -8], + [88, -23], + [89, -22], + [30, -7], + [30, -7], + [91, -21], + [92, -21], + [62, -13], + [63, -13], + [31, -6], + [32, -6], + [32, -6], + [32, -6], + [32, -6], + [32, -6], + [33, -6], + [98, -17], + [132, -21], + [34, -5], + [34, -5], + [102, -14], + [70, -9], + [34, -4], + [35, -4], + [71, -8], + [36, -4], + [36, -4], + [36, -4], + [72, -7], + [111, -10], + [37, -3], + [37, -3], + [76, -5], + [77, -5], + [38, -2], + [39, -2], + [39, -2], + [39, -2], + [40, -2], + [40, -2], + [121, -4], + [41, -1], + [41, -1], + [125, -2], + [43, 0], + [43, 0], + [42, 0], + [44, 0], + [43, 0], + [89, 1], + [89, 2], + [45, 1], + [92, 3], + [47, 2], + [94, 4], + [47, 2], + [97, 5], + [98, 6], + [100, 7], + [205, 16], + [160, 15], + [164, 17], + [113, 13], + [115, 14], + [239, 32], + [124, 18], + [192, 30], + [66, 11], + [66, 11], + [137, 24], + [212, 39], + [74, 14], + [150, 30], + [155, 32], + [80, 17], + [82, 18], + [168, 38], + [87, 20], + [89, 21], + [184, 44], + [96, 24], + [98, 25], + [101, 26], + [103, 27], + [107, 29], + [111, 30], + [232, 65], + [251, 73], + [134, 40], + [140, 43], + [147, 46], + [156, 49], + [167, 53], + [70, 23], + [197, 65], + [160, 54], + [85, 29], + [29, 10], + [184, 64], + [134, 47], + [222, 80], + [124, 45], + [44, 16], + [141, 52], + [103, 38], + [174, 66], + [134, 51], + [76, 29], + [175, 68], + [108, 42], + [329, 130], + [241, 98] + ], + [ + [3815, 97137], + [3744, -1143], + [-6549, -1991], + [98059, -959], + [-2592, -1647], + [-2368, -1920], + [-1806, -1730], + [-2305, -2467], + [-1121, -1248], + [-1146, -1264], + [-918, -971], + [-1273, -1246], + [-1449, -1220], + [-926, -651], + [-1248, -711], + [-1526, -619], + [-964, -260], + [-1651, -234], + [-2009, 22], + [-1476, 195], + [-170, 1514], + [285, -39], + [150, -18], + [116, -14], + [99, -10], + [87, -9], + [152, -14], + [67, -6], + [63, -5], + [171, -12], + [52, -3], + [50, -3], + [48, -3], + [47, -2], + [45, -2], + [43, -2], + [43, -2], + [41, -2], + [79, -3], + [39, -1], + [37, -1], + [37, -1], + [36, -1], + [35, -1], + [68, -1], + [98, -1], + [32, 0], + [31, 0], + [31, 0], + [30, 0], + [29, 0], + [87, 1], + [56, 1], + [55, 1], + [53, 1], + [152, 5], + [25, 1], + [24, 1], + [175, 9], + [163, 11], + [155, 12], + [146, 13], + [140, 15], + [133, 15], + [128, 17], + [124, 17], + [119, 18], + [115, 19], + [111, 19], + [109, 20], + [105, 20], + [102, 21], + [100, 22], + [97, 22], + [96, 22], + [93, 23], + [91, 23], + [89, 23], + [87, 24], + [86, 24], + [167, 49], + [161, 51], + [79, 26], + [78, 26], + [76, 26], + [75, 26], + [74, 27], + [73, 27], + [72, 27], + [71, 27], + [71, 28], + [69, 28], + [69, 28], + [67, 28], + [133, 57], + [66, 29], + [65, 29], + [127, 59], + [63, 30], + [62, 30], + [62, 30], + [61, 30], + [60, 30], + [120, 61], + [59, 31], + [58, 31], + [116, 63], + [113, 63], + [57, 32], + [111, 64], + [109, 65], + [109, 65], + [53, 33], + [159, 100], + [104, 67], + [52, 34], + [51, 34], + [51, 34], + [102, 69], + [100, 69], + [50, 35], + [99, 70], + [98, 71], + [97, 71], + [48, 36], + [48, 36], + [48, 36], + [95, 73], + [94, 73], + [47, 37], + [47, 37], + [47, 37], + [93, 75], + [138, 113], + [46, 38], + [91, 77], + [45, 38], + [46, 39], + [45, 39], + [45, 39], + [45, 39], + [45, 39], + [45, 39], + [89, 79], + [89, 80], + [44, 40], + [44, 40], + [89, 81], + [44, 41], + [44, 41], + [44, 41], + [87, 82], + [88, 83], + [131, 126], + [43, 42], + [44, 43], + [87, 85], + [87, 86], + [130, 131], + [43, 43], + [44, 44], + [43, 44], + [87, 89], + [87, 90], + [130, 135], + [87, 91], + [87, 92], + [44, 47], + [43, 46], + [44, 47], + [44, 47], + [87, 94], + [88, 95], + [44, 48], + [44, 48], + [44, 48], + [89, 98], + [44, 48], + [45, 50], + [89, 98], + [89, 100], + [45, 50], + [136, 152], + [136, 155], + [46, 52], + [46, 52], + [46, 52], + [92, 105], + [47, 54], + [46, 53], + [47, 54], + [47, 54], + [47, 54], + [47, 54], + [48, 55], + [95, 110], + [48, 56], + [97, 112], + [49, 56], + [98, 114], + [49, 57], + [99, 116], + [50, 58], + [51, 59], + [50, 59], + [102, 119], + [52, 60], + [104, 121], + [105, 123], + [53, 62], + [53, 62], + [54, 63], + [54, 63], + [54, 63], + [55, 64], + [111, 129], + [56, 65], + [113, 132], + [115, 134], + [58, 67], + [59, 68], + [59, 68], + [60, 69], + [183, 210], + [62, 71], + [125, 144], + [64, 73], + [65, 74], + [131, 148], + [67, 76], + [135, 152], + [69, 78], + [70, 78], + [71, 79], + [72, 79], + [146, 162], + [75, 82], + [152, 166], + [78, 85], + [79, 85], + [162, 174], + [83, 89], + [84, 89], + [86, 91], + [88, 92], + [89, 93], + [91, 94], + [92, 95], + [95, 97], + [96, 98], + [99, 100], + [100, 101], + [104, 103], + [105, 104], + [108, 106], + [111, 108], + [114, 109], + [117, 112], + [121, 114], + [124, 116], + [129, 118], + [132, 121], + [137, 123], + [142, 127], + [148, 129], + [153, 133], + [160, 136], + [168, 140], + [175, 144], + [184, 149], + [195, 153], + [206, 159], + [219, 166], + [235, 172], + [253, 181], + [274, 189], + [300, 200], + [172, 112], + [183, 116], + [48, 30], + [198, 121], + [104, 63], + [108, 64], + [112, 66], + [57, 33], + [119, 68], + [125, 70], + [266, 146], + [143, 76], + [151, 79], + [160, 82], + [84, 42], + [176, 87], + [92, 45], + [96, 46], + [100, 47], + [104, 48], + [108, 49], + [113, 51], + [244, 107], + [271, 115], + [-99694, 124], + [171, 67], + [185, 71], + [203, 76], + [226, 81], + [255, 88], + [296, 99], + [357, 113], + [463, 138], + [732, 201], + [650, 160] + ], + [ + [44693, 67062], + [28, -465], + [-3574, -1409], + [-2508, -1375], + [-88, -55], + [-334, -213], + [-80, -52], + [-453, -303], + [-141, -97], + [-206, -144], + [-132, -94], + [-317, -230], + [-61, -45], + [-408, -308], + [-111, -86], + [-320, -253], + [-103, -83], + [-248, -203], + [-144, -120], + [-187, -158], + [-91, -78], + [-178, -154], + [-87, -76], + [-212, -188], + [-480, -439], + [-152, -143], + [-185, -176], + [-144, -139], + [-71, -69], + [-276, -272], + [-265, -267], + [-317, -326], + [-303, -319], + [-176, -188], + [-256, -278], + [-111, -122], + [-350, -389], + [-105, -118], + [-2380, -2809], + [-1560, -1843], + [-1396, -1513], + [-1342, -1250], + [-1562, -1154], + [-1049, -593], + [-1429, -591], + [-1004, -281], + [-1865, -273], + [-2376, 32], + [-1592, 208], + [-1402, 283], + [-2602, 720], + [81, 433], + [309, -90], + [157, -45], + [122, -34], + [192, -53], + [81, -22], + [75, -20], + [363, -95], + [51, -13], + [188, -47], + [127, -31], + [193, -46], + [173, -40], + [66, -15], + [124, -28], + [146, -32], + [56, -12], + [81, -17], + [130, -27], + [49, -10], + [346, -68], + [158, -29], + [149, -27], + [279, -47], + [130, -21], + [125, -19], + [121, -18], + [117, -17], + [223, -30], + [210, -26], + [199, -22], + [189, -20], + [92, -9], + [90, -8], + [257, -21], + [83, -6], + [161, -10], + [155, -9], + [296, -12], + [141, -4], + [137, -3], + [134, -1], + [257, 0], + [184, 3], + [61, 2], + [233, 8], + [114, 6], + [111, 6], + [54, 3], + [161, 11], + [156, 13], + [102, 9], + [51, 5], + [49, 5], + [99, 11], + [97, 11], + [95, 12], + [94, 12], + [46, 6], + [92, 13], + [135, 21], + [88, 14], + [130, 22], + [43, 8], + [85, 16], + [42, 8], + [83, 16], + [82, 16], + [81, 17], + [80, 18], + [79, 18], + [78, 18], + [77, 18], + [152, 38], + [185, 50], + [108, 30], + [72, 21], + [70, 21], + [105, 32], + [35, 11], + [136, 44], + [101, 34], + [67, 23], + [65, 23], + [130, 47], + [96, 36], + [126, 49], + [93, 37], + [92, 38], + [91, 38], + [120, 52], + [59, 26], + [117, 53], + [58, 27], + [57, 27], + [85, 41], + [29, 14], + [112, 55], + [55, 28], + [83, 43], + [54, 28], + [81, 43], + [54, 29], + [53, 29], + [80, 44], + [208, 120], + [77, 45], + [25, 15], + [76, 46], + [200, 124], + [98, 63], + [49, 32], + [121, 80], + [24, 16], + [95, 65], + [71, 49], + [94, 66], + [70, 50], + [46, 33], + [138, 101], + [68, 51], + [113, 86], + [22, 17], + [67, 52], + [67, 52], + [44, 35], + [44, 35], + [66, 53], + [87, 71], + [22, 18], + [65, 54], + [43, 36], + [43, 36], + [43, 36], + [21, 18], + [85, 73], + [64, 55], + [42, 37], + [42, 37], + [42, 37], + [63, 56], + [62, 56], + [21, 19], + [21, 19], + [62, 57], + [62, 57], + [41, 38], + [41, 38], + [41, 38], + [20, 19], + [61, 58], + [61, 58], + [41, 39], + [81, 78], + [141, 138], + [20, 20], + [20, 20], + [20, 20], + [20, 20], + [20, 20], + [20, 20], + [20, 20], + [20, 20], + [20, 20], + [79, 80], + [80, 81], + [138, 143], + [99, 103], + [118, 125], + [98, 105], + [98, 105], + [39, 42], + [59, 64], + [176, 193], + [39, 43], + [78, 87], + [78, 87], + [59, 66], + [39, 44], + [39, 44], + [39, 44], + [98, 111], + [98, 112], + [20, 23], + [98, 113], + [59, 68], + [79, 91], + [178, 207], + [119, 139], + [60, 70], + [40, 47], + [40, 47], + [60, 71], + [161, 190], + [81, 96], + [102, 121], + [143, 170], + [249, 296], + [21, 25], + [105, 125], + [298, 355], + [65, 77], + [4355, 4707], + [3083, 2513], + [2709, 1673], + [370, 195], + [412, 208], + [149, 73], + [320, 153], + [357, 164], + [364, 161], + [88, 38], + [251, 106], + [101, 42], + [417, 168], + [175, 68], + [47, 18], + [148, 56], + [409, 150], + [143, 51], + [254, 88], + [101, 34], + [114, 38], + [586, 187], + [226, 69] + ], + [ + [74282, 60070], + [-74, -251], + [-1678, 992], + [-1332, 900], + [-1591, 1213], + [-1870, 1623], + [-1268, 1213], + [-1571, 1605], + [-1226, 1298], + [-1579, 1671], + [-2037, 2031], + [-2343, 1992], + [-3939, 2314], + [-453, 185], + [-782, 283], + [-4046, 798], + [-4048, -158], + [-2255, -441], + [-3072, -954], + [-2401, -991], + [-1857, -888], + [-1635, -854], + [-1255, -692], + [3191, 2081], + [225, 115], + [213, 106], + [201, 100], + [192, 95], + [183, 89], + [177, 84], + [169, 81], + [165, 77], + [159, 74], + [154, 71], + [150, 68], + [146, 66], + [143, 64], + [139, 61], + [136, 59], + [264, 113], + [128, 54], + [249, 104], + [121, 49], + [119, 48], + [117, 47], + [229, 90], + [223, 86], + [108, 41], + [319, 118], + [206, 74], + [101, 36], + [100, 35], + [99, 34], + [98, 34], + [287, 96], + [279, 90], + [92, 29], + [90, 28], + [179, 55], + [175, 52], + [259, 75], + [169, 47], + [83, 23], + [247, 66], + [81, 21], + [161, 41], + [158, 39], + [78, 19], + [156, 37], + [153, 35], + [152, 34], + [224, 48], + [293, 59], + [72, 14], + [285, 53], + [279, 48], + [206, 33], + [136, 21], + [201, 29], + [66, 9], + [198, 26], + [65, 8], + [258, 30], + [254, 26], + [62, 6], + [249, 22], + [244, 18], + [61, 4], + [180, 11], + [238, 12], + [349, 12], + [285, 5], + [169, 1], + [333, -3], + [273, -7], + [161, -6], + [265, -13], + [262, -17], + [308, -25], + [303, -30], + [444, -54], + [7325, -2868], + [486, -342], + [255, -188], + [441, -338], + [373, -299], + [277, -230], + [336, -287], + [152, -133], + [212, -188], + [91, -82], + [181, -165], + [120, -111], + [211, -197], + [180, -171], + [120, -115], + [30, -29], + [30, -29], + [30, -29], + [120, -117], + [60, -59], + [181, -178], + [150, -150], + [30, -30], + [151, -152], + [121, -123], + [182, -186], + [91, -94], + [61, -63], + [61, -63], + [31, -32], + [184, -192], + [92, -97], + [62, -65], + [93, -98], + [124, -131], + [63, -67], + [31, -33], + [31, -33], + [32, -34], + [31, -33], + [126, -135], + [95, -102], + [128, -137], + [64, -69], + [64, -69], + [97, -105], + [130, -141], + [132, -142], + [132, -143], + [33, -36], + [34, -37], + [33, -36], + [67, -73], + [34, -37], + [136, -147], + [34, -37], + [34, -37], + [35, -38], + [34, -37], + [35, -38], + [34, -37], + [35, -38], + [35, -38], + [140, -153], + [71, -77], + [252, -273], + [147, -158], + [37, -40], + [75, -81], + [37, -40], + [152, -163], + [38, -41], + [155, -166], + [118, -126], + [120, -127], + [162, -172], + [41, -43], + [42, -44], + [41, -43], + [126, -133], + [129, -134], + [43, -45], + [43, -45], + [132, -137], + [135, -139], + [46, -47], + [45, -46], + [47, -48], + [46, -47], + [47, -48], + [47, -48], + [47, -48], + [96, -97], + [49, -49], + [49, -49], + [49, -49], + [50, -50], + [50, -50], + [50, -50], + [51, -51], + [156, -154], + [106, -104], + [108, -105], + [110, -107], + [56, -54], + [114, -109], + [58, -55], + [58, -55], + [59, -56], + [60, -57], + [60, -57], + [61, -57], + [62, -58], + [126, -117], + [65, -60], + [65, -60], + [66, -60], + [67, -61], + [68, -62], + [69, -62], + [70, -63], + [144, -129], + [148, -131], + [77, -67], + [77, -67], + [79, -69], + [163, -140], + [84, -71], + [86, -73], + [88, -74], + [90, -75], + [92, -77], + [94, -78], + [97, -79], + [100, -81], + [103, -83], + [106, -85], + [223, -176], + [240, -186], + [128, -97], + [133, -101], + [141, -105], + [148, -110], + [158, -115], + [111, -80], + [46, -33], + [144, -102], + [50, -35], + [104, -73], + [110, -76], + [86, -59], + [60, -41], + [94, -64], + [65, -44], + [33, -22], + [218, -145], + [80, -52], + [129, -84], + [94, -60], + [50, -32], + [52, -33], + [54, -34], + [57, -36], + [61, -38], + [64, -40], + [70, -43], + [75, -46], + [84, -51], + [94, -57], + [111, -67], + [143, -84], + [245, -143], + [101, -57] + ], + [ + [65393, 35448], + [-235, -531], + [-236, 211], + [-139, 124], + [-109, 98], + [-92, 82], + [-155, 139], + [-68, 61], + [-122, 109], + [-109, 98], + [-50, 45], + [-95, 86], + [-88, 79], + [-198, 178], + [-107, 96], + [-67, 60], + [-127, 114], + [-30, 27], + [-30, 27], + [-29, 26], + [-29, 26], + [-111, 100], + [-53, 48], + [-77, 69], + [-98, 88], + [-184, 165], + [-65, 58], + [-155, 139], + [-145, 130], + [-138, 123], + [-130, 116], + [-124, 111], + [-119, 106], + [-114, 101], + [-110, 98], + [-106, 94], + [-202, 178], + [-189, 166], + [-91, 80], + [-89, 78], + [-86, 75], + [-166, 145], + [-159, 138], + [-227, 195], + [-144, 123], + [-70, 60], + [-69, 59], + [-67, 57], + [-132, 112], + [-191, 160], + [-122, 102], + [-178, 147], + [-57, 47], + [-57, 47], + [-56, 46], + [-56, 45], + [-109, 88], + [-53, 43], + [-53, 43], + [-207, 165], + [-99, 79], + [-146, 114], + [-142, 110], + [-47, 36], + [-46, 35], + [-46, 35], + [-134, 102], + [-44, 33], + [-44, 33], + [-43, 32], + [-43, 32], + [-43, 32], + [-126, 93], + [-83, 60], + [-161, 116], + [-79, 56], + [-78, 55], + [-39, 27], + [-114, 79], + [-75, 51], + [-111, 75], + [-145, 96], + [-141, 92], + [-104, 66], + [-103, 65], + [-34, 21], + [-67, 41], + [-164, 100], + [-97, 57], + [-64, 37], + [-63, 36], + [-63, 36], + [-62, 35], + [-92, 51], + [-61, 33], + [-30, 16], + [-30, 16], + [-30, 16], + [-30, 16], + [-89, 46], + [-59, 30], + [-58, 29], + [-172, 84], + [-169, 78], + [-55, 25], + [-82, 36], + [-28, 12], + [-54, 23], + [-134, 55], + [-27, 11], + [-53, 21], + [-26, 10], + [-105, 40], + [-52, 19], + [-128, 45], + [-26, 9], + [-51, 17], + [-25, 8], + [-25, 8], + [-25, 8], + [-76, 24], + [-49, 15], + [-148, 42], + [-49, 13], + [-49, 13], + [-24, 6], + [-24, 6], + [-24, 6], + [-24, 6], + [-48, 11], + [-48, 11], + [-71, 15], + [-71, 15], + [-47, 9], + [-47, 9], + [-23, 4], + [-70, 12], + [-69, 11], + [-69, 10], + [-23, 3], + [-23, 3], + [-23, 3], + [-23, 3], + [-45, 5], + [-46, 5], + [-68, 7], + [-22, 2], + [-90, 7], + [-45, 3], + [-22, 1], + [-22, 1], + [-22, 1], + [-67, 3], + [-22, 1], + [-44, 1], + [-44, 1], + [-22, 0], + [-22, 0], + [-22, 0], + [-22, 0], + [-22, 0], + [-22, 0], + [-21, 0], + [-44, -1], + [-65, -2], + [-22, -1], + [-65, -3], + [-64, -4], + [-65, -5], + [-43, -4], + [-64, -6], + [-64, -7], + [-64, -8], + [-85, -12], + [-21, -3], + [-21, -3], + [-85, -14], + [-21, -4], + [-21, -4], + [-21, -4], + [-21, -4], + [-21, -4], + [-21, -4], + [-21, -4], + [-42, -9], + [-42, -9], + [-21, -5], + [-21, -5], + [-21, -5], + [-21, -5], + [-21, -5], + [-21, -5], + [-21, -5], + [-21, -5], + [-42, -11], + [-63, -17], + [-83, -24], + [-63, -19], + [-41, -13], + [-84, -27], + [-21, -7], + [-83, -29], + [-42, -15], + [-21, -8], + [-125, -48], + [-41, -16], + [-42, -17], + [-84, -35], + [-104, -46], + [-42, -19], + [-63, -29], + [-21, -10], + [-21, -10], + [-41, -20], + [-63, -31], + [-64, -32], + [-21, -11], + [-21, -11], + [-21, -11], + [-21, -11], + [-21, -11], + [-63, -34], + [-64, -35], + [-106, -60], + [-64, -37], + [-85, -51], + [-43, -26], + [-64, -40], + [-43, -27], + [-65, -41], + [-65, -42], + [-65, -43], + [-65, -44], + [-22, -15], + [-22, -15], + [-65, -45], + [-44, -31], + [-44, -31], + [-67, -48], + [-22, -16], + [-22, -16], + [-22, -16], + [-45, -33], + [-67, -50], + [-45, -34], + [-45, -34], + [-45, -35], + [-45, -35], + [-23, -18], + [-23, -18], + [-91, -72], + [-46, -37], + [-116, -95], + [-23, -19], + [-23, -19], + [-47, -39], + [-118, -100], + [-119, -102], + [-24, -21], + [-24, -21], + [-24, -21], + [-97, -86], + [-122, -110], + [-49, -45], + [-25, -23], + [-25, -23], + [-25, -23], + [-25, -23], + [-25, -23], + [-25, -23], + [-51, -47], + [-127, -120], + [-51, -49], + [-26, -25], + [-26, -25], + [-26, -25], + [-26, -25], + [-53, -51], + [-106, -103], + [-80, -79], + [-27, -27], + [-27, -27], + [-27, -27], + [-27, -27], + [-27, -27], + [-28, -28], + [-55, -55], + [-28, -28], + [-112, -114], + [-113, -116], + [-29, -30], + [-57, -59], + [-29, -30], + [-30, -31], + [-29, -30], + [-148, -155], + [-121, -128], + [-61, -65], + [-31, -33], + [-31, -33], + [-31, -33], + [-31, -33], + [-127, -136], + [-129, -140], + [-132, -143], + [-67, -73], + [-102, -112], + [-138, -152], + [-71, -78], + [-71, -79], + [-36, -40], + [-73, -81], + [-37, -41], + [-37, -41], + [-37, -41], + [-113, -126], + [-77, -86], + [-78, -87], + [-79, -89], + [-40, -45], + [-40, -45], + [-40, -45], + [-41, -46], + [-41, -46], + [-42, -47], + [-42, -47], + [-171, -193], + [-87, -98], + [-135, -152], + [-138, -156], + [-47, -53], + [-242, -273], + [-203, -229], + [-52, -59], + [-215, -242], + [-226, -254], + [-117, -132], + [-183, -205], + [-63, -70], + [-194, -217], + [-135, -150], + [-140, -155], + [-72, -80], + [-73, -81], + [-151, -166], + [-78, -86], + [-79, -87], + [-165, -181], + [-85, -93], + [-177, -192], + [-92, -100], + [-193, -208], + [-204, -220], + [-108, -115], + [-112, -119], + [-116, -124], + [-121, -128], + [-127, -133], + [-132, -139], + [-140, -146], + [-148, -154], + [-157, -162], + [-169, -174], + [-120, -122], + [-50, -51], + [-130, -132], + [-111, -112], + [-117, -118], + [-93, -93], + [-65, -65], + [-33, -33], + [-34, -34], + [-35, -35], + [-146, -145], + [-120, -118], + [-86, -84], + [-189, -185], + [-107, -104], + [-57, -55], + [-60, -58], + [-206, -198], + [-81, -77], + [-90, -86], + [-102, -97], + [-123, -116], + [-163, -152], + [-358, -332], + [-145, 606], + [1473, 1425], + [2320, 2422], + [1981, 2214], + [1806, 2085], + [1256, 1439], + [1654, 1789], + [1063, 1024], + [1624, 1262], + [1204, 629], + [1051, 307], + [949, 78], + [699, -58], + [1060, -260], + [1390, -613], + [880, -519], + [1338, -938], + [1265, -1008], + [1360, -1170], + [2186, -1980], + [1385, -1276], + [1422, -1304] + ], + [ + [89538, 34198], + [-2105, -1929], + [-70, -58], + [-102, -84], + [-33, -27], + [-65, -53], + [-184, -150], + [-144, -117], + [-110, -89], + [-53, -43], + [-241, -194], + [-179, -142], + [-169, -134], + [-162, -127], + [-155, -121], + [-149, -115], + [-143, -110], + [-139, -107], + [-265, -200], + [-127, -95], + [-124, -93], + [-238, -175], + [-115, -84], + [-113, -82], + [-111, -80], + [-108, -77], + [-211, -150], + [-203, -142], + [-100, -69], + [-98, -67], + [-191, -130], + [-186, -125], + [-270, -178], + [-345, -223], + [-84, -53], + [-83, -52], + [-82, -51], + [-162, -100], + [-238, -144], + [-231, -137], + [-75, -44], + [-224, -129], + [-218, -123], + [-213, -117], + [-70, -38], + [-277, -147], + [-269, -138], + [-455, -224], + [-5861, -1590], + [-2774, 191], + [-3081, 1070], + [-2291, 1491], + [-1790, 1636], + [-1769, 2029], + [-375, 477], + [-188, 245], + [-54, 71], + [-81, 107], + [-244, 326], + [-109, 147], + [-192, 262], + [-166, 228], + [-111, 154], + [-28, 39], + [-28, 39], + [-28, 39], + [-169, 237], + [-199, 281], + [-57, 81], + [-145, 206], + [-58, 83], + [-87, 125], + [-118, 169], + [-59, 85], + [-120, 173], + [-120, 174], + [-61, 88], + [-92, 133], + [-31, 45], + [-124, 180], + [-31, 45], + [-94, 137], + [-159, 232], + [-162, 235], + [-33, 48], + [-33, 48], + [-33, 48], + [-33, 48], + [-33, 48], + [-202, 294], + [-138, 200], + [-140, 203], + [-107, 154], + [-36, 52], + [-36, 52], + [-73, 105], + [-148, 213], + [-37, 53], + [-76, 109], + [-76, 109], + [-195, 278], + [-120, 170], + [-164, 231], + [-168, 235], + [-43, 60], + [-130, 182], + [-89, 123], + [-90, 124], + [-46, 63], + [-46, 63], + [-46, 63], + [-94, 129], + [-95, 130], + [-98, 132], + [-99, 134], + [-101, 135], + [-156, 208], + [-107, 142], + [-165, 216], + [-171, 223], + [-118, 152], + [-60, 77], + [-61, 78], + [-188, 238], + [-65, 82], + [-132, 166], + [-68, 84], + [-139, 172], + [-72, 88], + [-73, 89], + [-74, 90], + [-76, 92], + [-77, 93], + [-79, 95], + [-81, 96], + [-83, 98], + [-85, 100], + [-176, 205], + [-91, 106], + [-192, 219], + [-203, 230], + [-219, 243], + [-116, 127], + [-121, 131], + [-127, 137], + [-133, 142], + [-141, 149], + [-149, 156], + [-182, 188], + [-68, 70], + [-168, 170], + [-51, 51], + [-26, 26], + [-26, 26], + [-27, 27], + [-27, 27], + [-27, 27], + [-1998, 2004], + [1949, -1726], + [1684, -1718], + [1332, -1518], + [1039, -1280], + [1440, -1900], + [1536, -2149], + [946, -1351], + [1571, -2202], + [2803, -3457], + [160, -170], + [107, -112], + [134, -138], + [269, -270], + [136, -133], + [108, -104], + [82, -78], + [82, -77], + [82, -76], + [220, -200], + [222, -195], + [28, -24], + [308, -259], + [113, -92], + [228, -180], + [86, -66], + [144, -109], + [87, -64], + [233, -168], + [236, -163], + [149, -99], + [120, -78], + [150, -95], + [61, -38], + [122, -74], + [30, -18], + [215, -126], + [93, -53], + [187, -103], + [94, -50], + [127, -66], + [63, -32], + [128, -64], + [96, -47], + [97, -46], + [32, -15], + [65, -30], + [130, -59], + [66, -29], + [264, -112], + [67, -27], + [269, -104], + [170, -62], + [103, -36], + [104, -35], + [138, -45], + [140, -44], + [70, -21], + [106, -31], + [142, -40], + [144, -38], + [217, -54], + [73, -17], + [257, -56], + [74, -15], + [112, -22], + [37, -7], + [189, -33], + [228, -36], + [77, -11], + [193, -25], + [156, -18], + [158, -16], + [79, -7], + [280, -21], + [121, -7], + [41, -2], + [205, -8], + [165, -4], + [83, -1], + [210, 0], + [84, 1], + [213, 5], + [86, 3], + [173, 8], + [87, 5], + [176, 12], + [88, 7], + [179, 16], + [90, 9], + [181, 20], + [91, 11], + [138, 18], + [279, 41], + [94, 15], + [237, 41], + [144, 27], + [97, 19], + [5374, 2083], + [1376, 820], + [1956, 1326], + [2395, 1822], + [2401, 1968] + ], + [ + [52431, 11135], + [3566, 268], + [62, -181], + [69, -163], + [58, -125], + [51, -103], + [48, -88], + [45, -80], + [85, -139], + [41, -62], + [40, -59], + [39, -55], + [38, -53], + [38, -50], + [37, -48], + [37, -46], + [36, -44], + [36, -43], + [36, -42], + [71, -79], + [70, -74], + [69, -71], + [34, -34], + [34, -33], + [68, -64], + [34, -31], + [101, -89], + [100, -84], + [133, -105], + [33, -25], + [66, -49], + [33, -24], + [131, -92], + [66, -44], + [65, -42], + [66, -42], + [32, -20], + [131, -79], + [244, -136], + [244, -125], + [244, -114], + [244, -105], + [244, -96], + [244, -89], + [244, -81], + [244, -75], + [244, -70], + [244, -63], + [243, -59], + [243, -53], + [243, -49], + [241, -44], + [241, -40], + [241, -37], + [239, -32], + [237, -28], + [237, -25], + [235, -22], + [234, -18], + [232, -15], + [230, -12], + [228, -9], + [227, -6], + [224, -3], + [222, -1], + [219, 2], + [218, 4], + [215, 7], + [212, 9], + [210, 11], + [207, 14], + [406, 33], + [199, 20], + [196, 22], + [193, 23], + [190, 25], + [371, 56], + [182, 31], + [178, 32], + [175, 33], + [172, 35], + [170, 37], + [166, 38], + [163, 39], + [160, 40], + [158, 42], + [154, 43], + [152, 45], + [148, 45], + [289, 94], + [140, 49], + [137, 50], + [266, 102], + [129, 53], + [126, 54], + [123, 54], + [121, 56], + [118, 56], + [116, 57], + [114, 58], + [110, 58], + [109, 60], + [106, 60], + [103, 60], + [101, 62], + [99, 62], + [97, 63], + [94, 63], + [92, 64], + [90, 65], + [88, 65], + [86, 66], + [166, 133], + [157, 136], + [76, 69], + [74, 69], + [72, 69], + [70, 70], + [135, 142], + [65, 72], + [63, 72], + [61, 72], + [60, 73], + [58, 73], + [56, 74], + [55, 74], + [53, 75], + [52, 75], + [50, 76], + [49, 76], + [47, 76], + [45, 77], + [44, 77], + [43, 78], + [41, 78], + [40, 78], + [39, 79], + [37, 79], + [70, 160], + [33, 80], + [62, 163], + [29, 82], + [54, 164], + [25, 84], + [24, 83], + [44, 169], + [20, 84], + [19, 86], + [34, 172], + [15, 87], + [26, 175], + [11, 88], + [10, 89], + [9, 90], + [8, 90], + [6, 90], + [5, 92], + [4, 92], + [2, 92], + [1, 93], + [0, 94], + [-2, 94], + [-3, 96], + [-4, 96], + [-6, 97], + [-7, 97], + [-9, 99], + [-10, 99], + [-12, 100], + [-14, 101], + [-15, 103], + [-16, 103], + [-19, 105], + [-20, 105], + [-22, 107], + [-24, 109], + [-27, 109], + [-28, 111], + [-30, 113], + [-33, 115], + [-36, 116], + [-38, 119], + [-41, 121], + [-45, 123], + [-47, 126], + [-51, 128], + [-56, 132], + [-60, 136], + [-65, 140], + [-70, 145], + [-78, 150], + [-85, 157], + [-24, 43], + [-25, 44], + [-52, 89], + [-27, 46], + [-14, 23], + [-29, 47], + [-60, 96], + [-16, 25], + [-16, 25], + [-16, 25], + [-51, 77], + [-54, 80], + [-19, 28], + [-39, 56], + [-41, 57], + [-66, 91], + [-23, 31], + [-24, 32], + [-50, 66], + [-54, 69], + [-29, 36], + [-30, 37], + [-31, 38], + [-32, 39], + [-71, 84], + [-39, 45], + [-41, 47], + [-45, 51], + [-48, 54], + [-116, 124], + [-73, 75], + [-182, 184], + [-96, 84], + [1517, 1811], + [1129, -1069], + [675, -817], + [772, -1174], + [967, -2154], + [501, -2157], + [81, -1375], + [-316, -2111], + [-982, -1919], + [-1350, -1297], + [-2880, -1396], + [-7035, -1015], + [-4153, 185], + [-5029, 1232], + [-2102, 1405], + [-915, 1335], + [-397, 1879] + ], + [ + [77496, 79306], + [-107, -626], + [-3046, 155], + [-2614, -201], + [-2333, -475], + [-4493, -1906], + [-292, -180], + [-71, -45], + [-344, -225], + [-263, -180], + [-128, -90], + [-63, -45], + [-542, -406], + [-283, -225], + [-110, -90], + [-108, -90], + [-159, -135], + [-257, -224], + [-247, -224], + [-285, -269], + [-92, -89], + [-46, -45], + [-90, -89], + [-221, -223], + [-86, -89], + [-85, -89], + [-84, -89], + [-124, -133], + [-161, -177], + [-119, -133], + [-39, -44], + [-229, -265], + [-185, -220], + [-285, -351], + [-172, -219], + [-167, -218], + [-163, -218], + [-159, -217], + [-155, -217], + [-181, -259], + [-89, -130], + [-145, -215], + [-114, -172], + [-167, -257], + [-109, -171], + [-160, -256], + [-156, -255], + [-26, -43], + [-152, -254], + [-50, -85], + [-196, -338], + [-24, -42], + [-143, -253], + [-47, -84], + [-70, -126], + [-115, -210], + [-113, -209], + [-45, -84], + [-2576, -5450], + [-1228, -2776], + [-1181, -2494], + [-567, -1092], + [-1013, -1754], + [-884, -1324], + [-808, -1052], + [-1090, -1204], + [-1357, -1203], + [-1216, -842], + [-1677, -860], + [-2217, -702], + [-1490, -244], + [-78, 643], + [335, 48], + [154, 24], + [119, 20], + [100, 18], + [241, 46], + [191, 40], + [112, 25], + [102, 23], + [95, 23], + [131, 32], + [159, 41], + [74, 20], + [105, 29], + [99, 28], + [95, 28], + [60, 18], + [59, 18], + [112, 35], + [80, 26], + [52, 17], + [76, 25], + [74, 25], + [196, 70], + [161, 59], + [151, 59], + [144, 57], + [136, 56], + [130, 56], + [124, 55], + [120, 54], + [115, 54], + [111, 53], + [107, 52], + [205, 104], + [98, 52], + [95, 51], + [93, 51], + [90, 50], + [88, 50], + [86, 50], + [84, 49], + [241, 147], + [153, 97], + [147, 97], + [71, 47], + [70, 48], + [137, 95], + [67, 47], + [130, 94], + [64, 47], + [62, 46], + [123, 93], + [60, 46], + [59, 46], + [116, 92], + [57, 46], + [111, 91], + [109, 91], + [106, 91], + [104, 90], + [51, 45], + [149, 134], + [97, 89], + [95, 89], + [139, 133], + [45, 44], + [45, 44], + [45, 44], + [44, 44], + [44, 44], + [43, 44], + [43, 44], + [85, 87], + [83, 87], + [82, 87], + [80, 87], + [40, 44], + [39, 43], + [39, 43], + [39, 43], + [39, 43], + [38, 43], + [38, 43], + [37, 43], + [37, 43], + [37, 43], + [37, 43], + [37, 43], + [72, 85], + [36, 43], + [105, 128], + [35, 43], + [69, 85], + [34, 42], + [34, 43], + [100, 127], + [33, 42], + [65, 84], + [128, 169], + [63, 84], + [31, 42], + [31, 42], + [31, 42], + [61, 84], + [90, 125], + [30, 42], + [30, 42], + [87, 125], + [87, 125], + [85, 125], + [56, 83], + [56, 83], + [136, 207], + [54, 83], + [53, 83], + [26, 41], + [26, 41], + [104, 165], + [77, 124], + [76, 123], + [25, 41], + [25, 41], + [74, 124], + [49, 82], + [168, 286], + [24, 41], + [47, 82], + [47, 82], + [69, 122], + [23, 41], + [23, 41], + [23, 41], + [23, 41], + [45, 81], + [90, 163], + [66, 122], + [66, 122], + [22, 41], + [65, 122], + [43, 81], + [64, 122], + [85, 162], + [21, 41], + [83, 162], + [21, 41], + [62, 121], + [41, 81], + [61, 122], + [20, 40], + [40, 81], + [40, 81], + [40, 81], + [40, 81], + [40, 81], + [20, 41], + [39, 80], + [20, 41], + [117, 242], + [58, 122], + [19, 40], + [77, 162], + [19, 40], + [57, 121], + [38, 81], + [94, 202], + [56, 121], + [19, 41], + [74, 161], + [37, 81], + [37, 81], + [37, 81], + [37, 81], + [55, 121], + [146, 323], + [90, 202], + [36, 81], + [36, 81], + [90, 202], + [36, 81], + [36, 81], + [36, 81], + [36, 81], + [36, 81], + [36, 81], + [125, 284], + [107, 243], + [107, 244], + [89, 203], + [18, 41], + [143, 325], + [143, 326], + [90, 204], + [199, 450], + [91, 205], + [73, 164], + [55, 123], + [92, 205], + [37, 82], + [93, 206], + [75, 165], + [113, 247], + [2221, 4374], + [2060, 3103], + [2041, 2297], + [6525, 4029], + [509, 168], + [552, 164], + [146, 40], + [302, 79], + [157, 39], + [326, 77], + [525, 111], + [378, 70], + [406, 68], + [215, 32], + [225, 31], + [234, 30], + [247, 28], + [259, 27], + [276, 25], + [294, 22], + [250, 16], + [88, 5], + [227, 11], + [47, 2], + [195, 7], + [101, 3], + [213, 5], + [55, 1], + [172, 2], + [182, 1], + [263, -2], + [69, -1], + [72, -1], + [150, -3], + [78, -2], + [166, -5], + [179, -7], + [303, -15], + [236, -14], + [133, -9], + [147, -11], + [367, -31], + [261, -25], + [616, -71] + ], + [ + [81826, 69290], + [-376, -836], + [-1545, 1147], + [-1269, 1183], + [-831, 911], + [-1167, 1488], + [-772, 1132], + [-775, 1260], + [-1263, 2313], + [-979, 1976], + [-825, 1728], + [-1450, 2968], + [-1049, 1936], + [-1733, 2632], + [-2112, 2309], + [-5817, 3282], + [-8122, 1529], + [-10334, 85], + [-5406, -641], + [-6506, -1937], + [-2455, -1329], + [-3008, -2293], + [-2097, -2038], + [-1206, 513], + [373, 438], + [173, 200], + [136, 157], + [117, 133], + [104, 117], + [184, 205], + [83, 92], + [153, 167], + [140, 152], + [66, 71], + [127, 135], + [120, 126], + [114, 119], + [55, 57], + [108, 111], + [104, 105], + [150, 150], + [96, 95], + [48, 47], + [139, 135], + [45, 43], + [45, 43], + [45, 43], + [88, 83], + [129, 120], + [85, 78], + [83, 76], + [83, 75], + [81, 72], + [121, 107], + [119, 103], + [291, 246], + [285, 232], + [280, 219], + [276, 208], + [275, 198], + [274, 190], + [274, 183], + [274, 175], + [277, 169], + [278, 163], + [282, 158], + [284, 152], + [289, 148], + [293, 143], + [298, 139], + [304, 135], + [310, 131], + [316, 127], + [322, 123], + [330, 120], + [338, 116], + [347, 112], + [718, 215], + [374, 103], + [383, 99], + [394, 96], + [404, 92], + [415, 90], + [427, 86], + [438, 82], + [450, 79], + [462, 76], + [474, 72], + [486, 69], + [498, 65], + [510, 61], + [522, 58], + [532, 54], + [1098, 97], + [1135, 81], + [580, 35], + [587, 31], + [592, 27], + [596, 23], + [600, 19], + [602, 15], + [1203, 19], + [598, 4], + [1769, -12], + [1144, -25], + [558, -17], + [1084, -44], + [525, -26], + [1013, -61], + [961, -71], + [461, -39], + [448, -41], + [434, -43], + [829, -91], + [779, -98], + [730, -104], + [347, -54], + [336, -55], + [326, -56], + [314, -57], + [305, -58], + [295, -59], + [285, -60], + [276, -61], + [267, -61], + [510, -125], + [479, -127], + [228, -64], + [222, -65], + [214, -65], + [209, -66], + [202, -66], + [388, -133], + [366, -134], + [345, -135], + [639, -272], + [295, -137], + [280, -137], + [267, -138], + [129, -69], + [126, -69], + [123, -69], + [120, -69], + [455, -277], + [213, -138], + [401, -277], + [189, -138], + [92, -69], + [178, -138], + [172, -138], + [166, -138], + [239, -206], + [76, -68], + [76, -69], + [147, -137], + [143, -137], + [70, -68], + [203, -204], + [66, -68], + [65, -68], + [64, -68], + [63, -68], + [62, -68], + [61, -68], + [60, -67], + [60, -68], + [117, -135], + [57, -67], + [113, -135], + [55, -67], + [162, -201], + [105, -134], + [152, -200], + [99, -133], + [97, -133], + [141, -199], + [92, -132], + [135, -198], + [131, -197], + [43, -66], + [84, -131], + [165, -261], + [120, -196], + [156, -260], + [38, -65], + [38, -65], + [75, -130], + [74, -129], + [109, -194], + [107, -193], + [70, -129], + [69, -128], + [136, -257], + [67, -128], + [99, -191], + [130, -256], + [64, -127], + [63, -127], + [63, -127], + [124, -255], + [92, -190], + [30, -63], + [150, -317], + [89, -190], + [88, -189], + [88, -190], + [86, -189], + [29, -63], + [86, -189], + [57, -127], + [85, -189], + [28, -63], + [85, -189], + [28, -63], + [28, -63], + [28, -63], + [56, -127], + [28, -63], + [28, -63], + [83, -189], + [111, -253], + [111, -253], + [111, -253], + [56, -127], + [55, -126], + [28, -64], + [111, -254], + [56, -127], + [28, -64], + [56, -127], + [28, -64], + [28, -64], + [56, -127], + [28, -64], + [85, -192], + [28, -64], + [57, -129], + [57, -128], + [29, -65], + [57, -128], + [29, -65], + [29, -65], + [58, -129], + [29, -65], + [58, -129], + [59, -130], + [59, -131], + [30, -65], + [60, -131], + [60, -131], + [60, -131], + [61, -132], + [31, -66], + [31, -66], + [31, -66], + [62, -133], + [31, -66], + [63, -133], + [32, -67], + [32, -67], + [32, -67], + [64, -135], + [65, -135], + [66, -135], + [33, -68], + [67, -136], + [68, -137], + [68, -137], + [35, -69], + [35, -69], + [70, -139], + [35, -69], + [36, -70], + [36, -70], + [36, -70], + [73, -141], + [37, -70], + [75, -142], + [76, -143], + [77, -144], + [39, -72], + [79, -145], + [40, -73], + [41, -73], + [82, -147], + [41, -74], + [42, -74], + [85, -149], + [87, -151], + [44, -76], + [45, -76], + [45, -76], + [46, -77], + [92, -155], + [47, -78], + [48, -78], + [97, -158], + [50, -80], + [50, -80], + [51, -80], + [104, -163], + [53, -82], + [54, -83], + [110, -167], + [114, -169], + [58, -86], + [60, -87], + [60, -87], + [124, -177], + [64, -89], + [65, -91], + [67, -92], + [68, -92], + [69, -94], + [71, -94], + [73, -96], + [74, -97], + [77, -99], + [78, -100], + [81, -101], + [83, -103], + [86, -105], + [88, -107], + [92, -109], + [95, -111], + [98, -114], + [103, -116], + [107, -120], + [112, -123], + [118, -128], + [125, -131], + [133, -137], + [141, -144], + [20, -20], + [81, -80], + [42, -41], + [64, -62], + [67, -65], + [23, -22], + [71, -67], + [74, -69], + [51, -47], + [53, -49], + [82, -75], + [29, -26], + [29, -26], + [92, -81], + [32, -28], + [66, -58], + [70, -60], + [36, -31], + [38, -32], + [79, -66], + [42, -35], + [89, -73], + [48, -39], + [50, -40], + [53, -42], + [57, -45], + [61, -48], + [66, -51], + [74, -57], + [83, -62], + [98, -73], + [125, -92], + [271, -190] + ], + [ + [6311, 43345], + [-230, -935], + [-1404, 1110], + [-2363, 2212], + [-1642, 1825], + [97923, 2686], + [-1269, 1845], + [-1909, 3003], + [-2786, 4428], + [-43, 64], + [-108, 160], + [-108, 159], + [-86, 125], + [-172, 248], + [-150, 213], + [-107, 150], + [-43, 60], + [-107, 148], + [-86, 117], + [-193, 260], + [-43, 57], + [-86, 113], + [-151, 196], + [-108, 138], + [-65, 82], + [-130, 162], + [-87, 107], + [-109, 132], + [-88, 105], + [-22, 26], + [-110, 129], + [-88, 102], + [-66, 76], + [-22, 25], + [-111, 125], + [-134, 148], + [-112, 121], + [-113, 120], + [-68, 71], + [-91, 94], + [-91, 93], + [-92, 92], + [-92, 91], + [-116, 112], + [-187, 176], + [-47, 43], + [-95, 86], + [-95, 85], + [-48, 42], + [-96, 83], + [-96, 82], + [-121, 101], + [-98, 80], + [-123, 98], + [-100, 77], + [-100, 76], + [-100, 75], + [-152, 110], + [-51, 36], + [-129, 89], + [-104, 70], + [-130, 85], + [-79, 51], + [-27, 17], + [-106, 66], + [-80, 48], + [-135, 80], + [-109, 62], + [-110, 61], + [-55, 30], + [-28, 15], + [-83, 44], + [-56, 29], + [-113, 57], + [-28, 14], + [-114, 55], + [-115, 54], + [-145, 65], + [-59, 26], + [-118, 50], + [-29, 12], + [-150, 60], + [-120, 46], + [-122, 45], + [-31, 11], + [-92, 32], + [-156, 52], + [-63, 20], + [-95, 29], + [-64, 19], + [-225, 63], + [-65, 17], + [-66, 17], + [-99, 24], + [-100, 23], + [-67, 15], + [-170, 35], + [-137, 26], + [-139, 24], + [-141, 22], + [-142, 20], + [-145, 18], + [-146, 16], + [-74, 7], + [-224, 18], + [-76, 5], + [-114, 6], + [-116, 5], + [-196, 5], + [-120, 1], + [-80, 0], + [-162, -2], + [-82, -2], + [-83, -3], + [-210, -10], + [-85, -5], + [-86, -6], + [-87, -7], + [-175, -16], + [-89, -9], + [-135, -15], + [-136, -17], + [-185, -26], + [-47, -7], + [-95, -15], + [-191, -32], + [-146, -27], + [-99, -19], + [-50, -10], + [-253, -54], + [-207, -48], + [-106, -26], + [-107, -27], + [-162, -43], + [-55, -15], + [-111, -31], + [-56, -16], + [-113, -33], + [-173, -52], + [-296, -95], + [-183, -62], + [-251, -89], + [-193, -71], + [-66, -25], + [-407, -161], + [-212, -88], + [-3561, -1874], + [-1457, -942], + [-2416, -1723], + [-156, 1002], + [322, 245], + [289, 217], + [362, 270], + [205, 151], + [61, 45], + [319, 232], + [93, 67], + [213, 153], + [117, 83], + [146, 103], + [137, 96], + [33, 23], + [96, 67], + [62, 43], + [177, 122], + [85, 58], + [54, 37], + [247, 167], + [353, 234], + [163, 106], + [305, 196], + [144, 91], + [272, 170], + [256, 156], + [123, 74], + [119, 71], + [117, 69], + [224, 130], + [319, 181], + [4423, 1866], + [1640, 327], + [1585, 89], + [2138, -285], + [1087, -349], + [1631, -817], + [1355, -982], + [865, -784], + [1371, -1505], + [1926, -2632], + [1237, -1935], + [327, -531], + [71, -116], + [240, -392], + [73, -120], + [147, -242], + [250, -411], + [76, -125], + [51, -84], + [103, -170], + [183, -301], + [53, -87], + [134, -220], + [109, -178], + [55, -90], + [55, -90], + [140, -228], + [114, -185], + [29, -47], + [234, -378], + [30, -48], + [151, -242], + [186, -296], + [63, -100], + [128, -202], + [98, -154], + [133, -207], + [34, -53], + [102, -158], + [104, -160], + [106, -163], + [108, -164], + [37, -56], + [148, -223], + [38, -57], + [38, -57], + [38, -57], + [77, -115], + [39, -58], + [119, -175], + [81, -119], + [124, -180], + [126, -183], + [43, -62], + [131, -187], + [181, -255], + [93, -130], + [142, -198], + [147, -202], + [101, -137], + [51, -69], + [52, -70], + [159, -213], + [110, -145], + [-99890, -147], + [174, -226], + [244, -311], + [193, -242], + [134, -166], + [139, -170], + [71, -86], + [73, -88], + [74, -89], + [153, -182], + [160, -187], + [82, -95], + [85, -98], + [86, -99], + [89, -101], + [91, -103], + [94, -105], + [97, -107], + [99, -109], + [103, -113], + [106, -115], + [225, -239], + [119, -125], + [124, -129], + [267, -273], + [145, -145], + [153, -152], + [164, -160], + [69, -67], + [120, -115], + [153, -145], + [109, -102], + [86, -80], + [121, -111], + [130, -118], + [140, -126], + [37, -33], + [77, -68], + [123, -108], + [135, -117], + [151, -130], + [112, -95], + [61, -51], + [65, -54], + [144, -119], + [174, -142], + [106, -86], + [312, -247], + [246, -189] + ], + [ + [30462, 22032], + [-343, -820], + [-380, 362], + [-187, 181], + [-138, 136], + [-115, 113], + [-189, 189], + [-157, 158], + [-137, 140], + [-122, 125], + [-57, 59], + [-55, 57], + [-52, 54], + [-147, 154], + [-90, 95], + [-86, 91], + [-158, 169], + [-180, 194], + [-34, 37], + [-66, 72], + [-64, 70], + [-31, 34], + [-31, 34], + [-30, 33], + [-30, 33], + [-87, 96], + [-28, 31], + [-136, 152], + [-152, 172], + [-49, 55], + [-196, 223], + [-161, 186], + [-151, 176], + [-143, 167], + [-136, 161], + [-253, 303], + [-233, 282], + [-110, 134], + [-209, 258], + [-196, 244], + [-94, 118], + [-91, 115], + [-89, 112], + [-171, 218], + [-163, 210], + [-79, 102], + [-77, 100], + [-149, 195], + [-73, 95], + [-71, 93], + [-70, 92], + [-69, 91], + [-67, 89], + [-66, 88], + [-65, 87], + [-64, 86], + [-63, 85], + [-183, 247], + [-176, 238], + [-168, 230], + [-55, 75], + [-54, 74], + [-53, 73], + [-53, 73], + [-154, 213], + [-100, 139], + [-97, 136], + [-48, 67], + [-95, 132], + [-138, 194], + [-90, 127], + [-175, 246], + [-43, 61], + [-126, 178], + [-123, 175], + [-120, 170], + [-40, 57], + [-154, 220], + [-38, 54], + [-75, 107], + [-147, 210], + [-72, 102], + [-36, 51], + [-71, 101], + [-35, 50], + [-69, 99], + [-136, 194], + [-67, 95], + [-99, 141], + [-65, 93], + [-128, 182], + [-126, 178], + [-92, 130], + [-61, 86], + [-150, 211], + [-59, 83], + [-59, 82], + [-58, 81], + [-57, 80], + [-114, 158], + [-28, 39], + [-28, 39], + [-111, 153], + [-55, 75], + [-82, 112], + [-27, 37], + [-27, 37], + [-107, 145], + [-79, 107], + [-131, 175], + [-77, 102], + [-77, 102], + [-25, 33], + [-76, 100], + [-150, 195], + [-25, 32], + [-74, 95], + [-122, 155], + [-73, 92], + [-24, 30], + [-24, 30], + [-24, 30], + [-24, 30], + [-119, 147], + [-71, 86], + [-47, 57], + [-47, 57], + [-47, 56], + [-70, 83], + [-23, 27], + [-23, 27], + [-47, 55], + [-69, 80], + [-46, 53], + [-91, 104], + [-23, 26], + [-68, 77], + [-68, 75], + [-68, 75], + [-45, 49], + [-45, 49], + [-45, 48], + [-67, 71], + [-45, 47], + [-22, 23], + [-45, 47], + [-22, 23], + [-89, 91], + [-67, 67], + [-22, 22], + [-22, 22], + [-22, 22], + [-67, 65], + [-66, 64], + [-22, 21], + [-22, 21], + [-22, 21], + [-66, 62], + [-22, 20], + [-45, 41], + [-22, 20], + [-22, 20], + [-22, 20], + [-22, 20], + [-44, 39], + [-44, 39], + [-22, 19], + [-22, 19], + [-22, 19], + [-22, 19], + [-22, 19], + [-22, 19], + [-22, 19], + [-44, 37], + [-22, 18], + [-22, 18], + [-22, 18], + [-22, 18], + [-22, 18], + [-22, 18], + [-22, 18], + [-44, 35], + [-66, 52], + [-67, 51], + [-66, 50], + [-67, 49], + [-22, 16], + [-22, 16], + [-22, 16], + [-22, 16], + [-67, 47], + [-112, 76], + [-89, 59], + [-90, 57], + [-45, 28], + [-23, 14], + [-68, 41], + [-22, 13], + [-46, 27], + [-45, 26], + [-23, 13], + [-114, 63], + [-23, 12], + [-23, 12], + [-23, 12], + [-23, 12], + [-23, 12], + [-24, 12], + [-46, 23], + [-70, 34], + [-23, 11], + [-23, 11], + [-24, 11], + [-70, 32], + [-71, 31], + [-23, 10], + [-24, 10], + [-71, 29], + [-48, 19], + [-72, 28], + [-24, 9], + [-72, 26], + [-49, 17], + [-24, 8], + [-24, 8], + [-49, 16], + [-49, 16], + [-99, 30], + [-25, 7], + [-25, 7], + [-25, 7], + [-75, 20], + [-76, 19], + [-25, 6], + [-26, 6], + [-76, 17], + [-103, 20], + [-26, 5], + [-26, 5], + [-26, 5], + [-53, 9], + [-26, 4], + [-53, 8], + [-53, 8], + [-27, 4], + [-80, 10], + [-27, 3], + [-27, 3], + [-82, 8], + [-55, 4], + [-55, 4], + [-28, 2], + [-28, 2], + [-56, 3], + [-28, 1], + [-28, 1], + [-57, 2], + [-57, 1], + [-58, 1], + [-29, 0], + [-87, -1], + [-30, -1], + [-59, -2], + [-59, -2], + [-30, -1], + [-91, -5], + [-91, -7], + [-31, -3], + [-31, -3], + [-31, -3], + [-63, -6], + [-31, -3], + [-32, -4], + [-32, -4], + [-63, -8], + [-65, -9], + [-33, -5], + [-65, -10], + [-66, -11], + [-67, -12], + [-33, -6], + [-68, -13], + [-69, -14], + [-69, -15], + [-35, -8], + [-106, -24], + [-107, -27], + [-36, -9], + [-37, -10], + [-37, -10], + [-37, -10], + [-37, -10], + [-113, -33], + [-38, -11], + [-77, -24], + [-38, -12], + [-79, -25], + [-79, -27], + [-41, -14], + [-81, -28], + [-124, -45], + [-170, -64], + [-87, -35], + [-133, -54], + [-91, -38], + [-46, -20], + [-46, -20], + [-142, -63], + [-48, -22], + [-48, -22], + [-99, -46], + [-50, -24], + [-102, -49], + [-156, -78], + [-54, -27], + [-54, -28], + [-54, -28], + [-111, -58], + [-57, -30], + [-57, -31], + [-59, -32], + [-58, -32], + [-60, -33], + [-61, -34], + [-61, -34], + [-126, -72], + [-64, -37], + [-65, -38], + [-66, -39], + [-68, -40], + [-68, -41], + [-141, -86], + [-72, -44], + [-74, -46], + [-75, -47], + [-77, -49], + [-78, -50], + [-80, -51], + [-82, -53], + [-84, -55], + [-86, -57], + [-88, -58], + [-91, -61], + [-93, -63], + [-96, -65], + [-99, -68], + [-102, -71], + [-106, -74], + [-110, -78], + [-114, -81], + [-119, -85], + [-125, -90], + [-131, -96], + [-138, -102], + [-147, -109], + [-157, -117], + [-44, -33], + [-45, -34], + [-69, -52], + [-47, -36], + [-98, -75], + [-51, -39], + [-80, -61], + [-83, -64], + [-117, -91], + [-62, -48], + [-64, -50], + [-102, -80], + [-109, -86], + [-79, -62], + [-83, -66], + [-44, -35], + [-93, -74], + [-101, -81], + [-55, -44], + [-58, -47], + [-62, -50], + [-67, -54], + [-73, -59], + [-174, -141], + [-111, -91], + [-148, -122], + [-276, -226], + [-104, 911], + [1374, 1146], + [1950, 1521], + [1155, 815], + [868, 556], + [1241, 687], + [782, 354], + [1126, 378], + [1465, 207], + [721, -40], + [1061, -252], + [954, -442], + [1173, -836], + [589, -538], + [950, -1019], + [953, -1178], + [1374, -1887], + [1174, -1695], + [1176, -1705], + [2159, -2997], + [1485, -1903], + [1722, -2021], + [2562, -2638] + ], + [ + [27689, 33845], + [136, -598], + [-333, -230], + [-171, -118], + [-131, -90], + [-208, -144], + [-88, -60], + [-81, -55], + [-146, -100], + [-67, -46], + [-63, -43], + [-119, -81], + [-110, -75], + [-152, -103], + [-140, -95], + [-171, -115], + [-158, -106], + [-147, -99], + [-70, -47], + [-167, -111], + [-126, -84], + [-30, -20], + [-177, -117], + [-112, -74], + [-200, -131], + [-187, -123], + [-178, -115], + [-169, -109], + [-162, -104], + [-155, -99], + [-150, -95], + [-144, -91], + [-140, -88], + [-136, -85], + [-131, -81], + [-128, -79], + [-125, -77], + [-122, -74], + [-119, -72], + [-116, -70], + [-226, -135], + [-109, -65], + [-213, -125], + [-206, -120], + [-199, -114], + [-97, -55], + [-284, -160], + [-272, -150], + [-176, -96], + [-172, -92], + [-84, -45], + [-167, -88], + [-82, -43], + [-81, -42], + [-80, -41], + [-80, -41], + [-234, -118], + [-228, -113], + [-222, -108], + [-73, -35], + [-216, -102], + [-141, -66], + [-276, -125], + [-269, -119], + [-132, -57], + [-387, -162], + [-250, -101], + [-246, -96], + [-121, -46], + [-179, -67], + [-118, -43], + [-117, -42], + [-288, -100], + [-113, -38], + [-168, -55], + [-167, -53], + [-164, -51], + [-163, -49], + [-424, -120], + [-105, -28], + [-5622, -460], + [-2839, 651], + [-1962, 849], + [-3612, 2465], + [-154, 130], + [-247, 212], + [-124, 108], + [-248, 220], + [-124, 112], + [-94, 85], + [99814, 172], + [-126, 117], + [-317, 298], + [-256, 245], + [-32, 31], + [-32, 31], + [-162, 158], + [-163, 160], + [-264, 261], + [-33, 33], + [-67, 67], + [-33, 33], + [-34, 34], + [-134, 135], + [-68, 69], + [-136, 138], + [-103, 105], + [-104, 106], + [-280, 288], + [-107, 110], + [-144, 149], + [-72, 75], + [-73, 76], + [-111, 115], + [-148, 155], + [-75, 78], + [-152, 159], + [-154, 161], + [-39, 41], + [-39, 41], + [-118, 124], + [-160, 167], + [-41, 43], + [-40, 42], + [-41, 43], + [-41, 43], + [-41, 43], + [-41, 43], + [-42, 44], + [-42, 44], + [-42, 44], + [-169, 178], + [-43, 45], + [-131, 136], + [-44, 46], + [-44, 46], + [-44, 46], + [-45, 47], + [-45, 47], + [-45, 47], + [-46, 48], + [-138, 143], + [-47, 49], + [-47, 49], + [-47, 49], + [-144, 148], + [-147, 152], + [-150, 154], + [-102, 105], + [-52, 53], + [-52, 53], + [-159, 162], + [-163, 165], + [-55, 56], + [-56, 56], + [-171, 172], + [-58, 58], + [-59, 59], + [-180, 179], + [-62, 61], + [-62, 61], + [-190, 188], + [-132, 128], + [-134, 131], + [-69, 66], + [-70, 67], + [-71, 68], + [-72, 69], + [-73, 70], + [-74, 71], + [-75, 71], + [-77, 73], + [-157, 148], + [-163, 152], + [-84, 78], + [-86, 80], + [-269, 246], + [-94, 85], + [-97, 87], + [-99, 89], + [-101, 91], + [-105, 93], + [-108, 95], + [-111, 98], + [-235, 204], + [-125, 107], + [-129, 110], + [-136, 115], + [-142, 120], + [-150, 125], + [-160, 131], + [-194, 159], + [-72, 58], + [-126, 102], + [-53, 42], + [-137, 109], + [-117, 92], + [-93, 73], + [-32, 25], + [-32, 25], + [-67, 52], + [-180, 138], + [-38, 29], + [-80, 61], + [-42, 32], + [-133, 100], + [-96, 72], + [-51, 38], + [-109, 81], + [-59, 43], + [-63, 46], + [-66, 48], + [-150, 109], + [-186, 133], + [-118, 83], + [-155, 109], + [-319, 221], + [161, 565], + [1282, -883], + [1181, -884], + [1264, -1022], + [1636, -1437], + [1053, -988], + [1920, -1901], + [2029, -2078], + [2370, -2342], + [-95725, -3344], + [274, -161], + [61, -35], + [92, -52], + [184, -102], + [278, -148], + [62, -32], + [343, -171], + [220, -104], + [349, -156], + [160, -68], + [290, -117], + [228, -87], + [65, -24], + [33, -12], + [231, -81], + [265, -88], + [134, -42], + [270, -80], + [136, -38], + [275, -72], + [69, -17], + [104, -25], + [34, -8], + [140, -32], + [246, -52], + [107, -21], + [178, -33], + [144, -25], + [290, -45], + [183, -25], + [260, -31], + [37, -4], + [225, -22], + [266, -21], + [77, -5], + [270, -14], + [157, -6], + [157, -4], + [159, -2], + [240, 0], + [81, 1], + [244, 6], + [206, 8], + [5362, 1176], + [1966, 833], + [1786, 902], + [1329, 746], + [1994, 1211], + [1551, 997], + [1821, 1207] + ], + [ + [35257, 99753], + [45722, -541], + [-13105, -704], + [-8000, -2249], + [-2462, -1594], + [-1557, -1343], + [-2165, -2280], + [-1120, -1325], + [-1525, -1886], + [-1287, -1588], + [-1717, -1981], + [-829, -861], + [-1177, -1087], + [-1217, -943], + [-828, -535], + [-1397, -716], + [-1135, -421], + [-1663, -386], + [-1300, -134], + [-1064, -14], + [-428, 2073], + [273, 5], + [146, 6], + [115, 6], + [97, 5], + [86, 6], + [150, 11], + [66, 6], + [122, 11], + [56, 6], + [105, 11], + [97, 11], + [134, 17], + [123, 17], + [113, 17], + [107, 17], + [101, 17], + [95, 17], + [31, 6], + [89, 17], + [86, 17], + [82, 17], + [80, 17], + [77, 17], + [98, 23], + [24, 6], + [24, 6], + [171, 43], + [161, 43], + [151, 43], + [144, 43], + [138, 43], + [131, 43], + [126, 44], + [121, 43], + [117, 44], + [114, 43], + [109, 44], + [107, 44], + [104, 44], + [101, 44], + [98, 44], + [96, 44], + [94, 45], + [91, 44], + [90, 45], + [88, 44], + [86, 45], + [85, 45], + [83, 45], + [82, 45], + [80, 45], + [79, 45], + [77, 45], + [77, 46], + [75, 45], + [74, 46], + [73, 46], + [72, 45], + [71, 46], + [71, 46], + [69, 47], + [68, 46], + [68, 46], + [67, 47], + [66, 46], + [65, 47], + [65, 47], + [64, 47], + [63, 47], + [63, 47], + [62, 47], + [62, 48], + [60, 47], + [61, 48], + [60, 48], + [59, 48], + [59, 48], + [58, 48], + [58, 48], + [114, 97], + [56, 49], + [56, 49], + [56, 49], + [55, 49], + [55, 49], + [55, 49], + [54, 50], + [107, 99], + [53, 50], + [53, 50], + [52, 50], + [104, 101], + [103, 102], + [51, 51], + [101, 102], + [50, 51], + [50, 52], + [50, 52], + [49, 52], + [49, 52], + [49, 52], + [49, 52], + [49, 53], + [48, 52], + [49, 53], + [48, 53], + [95, 107], + [48, 54], + [47, 53], + [47, 54], + [94, 109], + [46, 54], + [47, 55], + [93, 110], + [46, 55], + [46, 56], + [92, 111], + [91, 113], + [45, 56], + [46, 57], + [45, 57], + [45, 57], + [90, 115], + [45, 58], + [45, 58], + [45, 59], + [44, 58], + [45, 59], + [45, 59], + [44, 59], + [45, 60], + [44, 60], + [89, 120], + [88, 121], + [44, 61], + [89, 124], + [44, 61], + [88, 125], + [44, 63], + [44, 63], + [88, 127], + [88, 129], + [44, 65], + [44, 65], + [44, 65], + [45, 66], + [44, 66], + [44, 66], + [44, 67], + [44, 67], + [89, 136], + [44, 68], + [89, 138], + [44, 69], + [45, 70], + [44, 70], + [45, 71], + [45, 71], + [89, 144], + [45, 73], + [45, 73], + [45, 73], + [45, 74], + [46, 75], + [45, 75], + [45, 75], + [46, 76], + [91, 154], + [46, 78], + [46, 79], + [46, 79], + [46, 79], + [46, 80], + [47, 81], + [93, 164], + [47, 83], + [93, 168], + [48, 85], + [47, 86], + [47, 87], + [48, 88], + [48, 88], + [47, 90], + [48, 90], + [49, 91], + [48, 92], + [48, 94], + [49, 94], + [48, 95], + [49, 97], + [49, 97], + [49, 99], + [49, 100], + [49, 101], + [49, 103], + [50, 104], + [49, 105], + [49, 107], + [50, 109], + [49, 110], + [49, 112], + [49, 114], + [49, 116], + [49, 118], + [48, 120], + [48, 122], + [47, 125], + [47, 127], + [46, 130], + [45, 133], + [44, 136], + [42, 139], + [41, 143], + [38, 147], + [36, 151], + [33, 156], + [28, 161], + [23, 167], + [17, 173], + [8, 180], + [-3, 188], + [-17, 198], + [-37, 208], + [-14, 58], + [-8, 29], + [-18, 59], + [-20, 60], + [-11, 30], + [-24, 62], + [-13, 31], + [-14, 32], + [-15, 32], + [-16, 32], + [-17, 33], + [-18, 33], + [-40, 67], + [-22, 34], + [-47, 69], + [-26, 35], + [-28, 36], + [-29, 36], + [-31, 36], + [-34, 38], + [-35, 37], + [-38, 38], + [-41, 39], + [-43, 39], + [-96, 81], + [-54, 41], + [-57, 41], + [-62, 43], + [-66, 43], + [-72, 45], + [-77, 45], + [-84, 46], + [-301, 144], + [-120, 50], + [-132, 51], + [-146, 53], + [-162, 55], + [-182, 56], + [-205, 58], + [-232, 60], + [-266, 62], + [-307, 65], + [-360, 68], + [-428, 70], + [-518, 75], + [-643, 79], + [-826, 84], + [-1113, 90], + [-1617, 99], + [-2733, 110], + [-5028, 92] + ], + [ + [9846, 68603], + [0, -491], + [-2793, -608], + [-5755, -2454], + [-416, -256], + [-225, -143], + [-109, -71], + [-213, -141], + [-255, -173], + [99614, -273], + [-47, -34], + [-228, -167], + [-307, -231], + [-127, -98], + [-247, -194], + [-198, -160], + [-155, -127], + [-76, -63], + [-296, -250], + [-72, -62], + [-176, -154], + [-104, -92], + [-102, -91], + [-101, -91], + [-165, -151], + [-65, -60], + [-128, -119], + [-280, -266], + [-121, -117], + [-323, -319], + [-29, -29], + [-170, -172], + [-139, -142], + [-244, -254], + [-159, -168], + [-130, -139], + [-77, -83], + [-127, -138], + [-75, -82], + [-149, -164], + [-2779, -3286], + [-1261, -1518], + [-1380, -1554], + [-1707, -1652], + [-1126, -895], + [-1242, -807], + [-1989, -933], + [-913, -299], + [-1798, -389], + [-1875, -167], + [-1149, -2], + [-1957, 143], + [-1375, 194], + [54, 468], + [308, -43], + [158, -20], + [224, -28], + [172, -20], + [271, -29], + [59, -6], + [210, -20], + [139, -12], + [86, -7], + [234, -18], + [71, -5], + [292, -18], + [174, -9], + [136, -6], + [77, -3], + [26, -1], + [228, -7], + [167, -3], + [157, -2], + [150, -1], + [142, 0], + [135, 1], + [130, 2], + [125, 3], + [121, 4], + [116, 4], + [113, 5], + [109, 5], + [106, 6], + [103, 6], + [100, 6], + [98, 7], + [95, 8], + [94, 8], + [91, 8], + [89, 8], + [87, 9], + [85, 9], + [84, 9], + [82, 9], + [80, 10], + [79, 10], + [78, 10], + [151, 21], + [74, 11], + [73, 11], + [72, 11], + [139, 23], + [69, 12], + [134, 24], + [66, 12], + [128, 24], + [187, 38], + [61, 13], + [120, 26], + [116, 27], + [115, 27], + [56, 14], + [111, 28], + [108, 28], + [159, 42], + [103, 29], + [201, 59], + [98, 30], + [96, 30], + [141, 46], + [92, 31], + [91, 31], + [178, 63], + [87, 32], + [43, 16], + [42, 16], + [168, 65], + [123, 49], + [120, 50], + [118, 50], + [78, 34], + [77, 34], + [38, 17], + [75, 34], + [111, 51], + [37, 17], + [109, 52], + [71, 35], + [71, 35], + [70, 35], + [104, 53], + [169, 89], + [67, 36], + [33, 18], + [33, 18], + [65, 36], + [161, 91], + [94, 55], + [94, 55], + [62, 37], + [61, 37], + [91, 56], + [89, 56], + [30, 19], + [117, 75], + [29, 19], + [29, 19], + [29, 19], + [29, 19], + [29, 19], + [57, 38], + [28, 19], + [28, 19], + [140, 96], + [82, 58], + [82, 58], + [54, 39], + [54, 39], + [53, 39], + [53, 39], + [53, 39], + [78, 59], + [103, 79], + [26, 20], + [26, 20], + [152, 119], + [25, 20], + [25, 20], + [25, 20], + [25, 20], + [172, 141], + [97, 81], + [72, 61], + [48, 41], + [71, 61], + [47, 41], + [47, 41], + [47, 41], + [116, 103], + [183, 166], + [45, 42], + [45, 42], + [45, 42], + [67, 63], + [89, 84], + [22, 21], + [22, 21], + [22, 21], + [22, 21], + [22, 21], + [109, 106], + [65, 64], + [86, 85], + [43, 43], + [85, 86], + [85, 86], + [42, 43], + [105, 108], + [84, 87], + [21, 22], + [62, 65], + [21, 22], + [62, 66], + [41, 44], + [41, 44], + [41, 44], + [41, 44], + [41, 44], + [41, 44], + [61, 66], + [81, 89], + [81, 89], + [20, 22], + [60, 67], + [100, 112], + [40, 45], + [40, 45], + [140, 158], + [139, 159], + [20, 23], + [20, 23], + [99, 114], + [79, 92], + [79, 92], + [59, 69], + [59, 69], + [79, 93], + [39, 46], + [59, 70], + [59, 70], + [59, 70], + [79, 94], + [79, 94], + [138, 165], + [79, 95], + [79, 95], + [99, 120], + [139, 168], + [159, 192], + [201, 243], + [202, 245], + [163, 197], + [123, 149], + [312, 375], + [3453, 3795], + [1877, 1659], + [-97829, 1556], + [2634, 1430], + [374, 168], + [622, 261], + [113, 45], + [747, 282], + [139, 49], + [144, 50], + [150, 51], + [157, 52], + [163, 53], + [353, 110], + [484, 141], + [243, 67], + [97, 26], + [242, 63], + [269, 67], + [41, 10], + [219, 52], + [144, 33], + [102, 23], + [165, 36], + [184, 39], + [136, 28], + [151, 30], + [83, 16], + [90, 17], + [97, 18], + [109, 20], + [123, 22], + [339, 58], + [468, 72] + ], + [ + [42408, 56416], + [-61, -267], + [-1121, 497], + [-1136, 576], + [-980, 558], + [-1424, 921], + [-1153, 848], + [-1438, 1190], + [-1172, 1080], + [-1601, 1622], + [-1254, 1361], + [-1023, 1140], + [-1143, 1270], + [-2240, 2335], + [-2593, 2214], + [-259, 187], + [-323, 224], + [-179, 120], + [-488, 312], + [-156, 95], + [-126, 75], + [-224, 130], + [-129, 73], + [-196, 108], + [-133, 71], + [-235, 122], + [-308, 153], + [-245, 116], + [-142, 65], + [-144, 64], + [-329, 140], + [-338, 135], + [-270, 101], + [-236, 84], + [-5715, 898], + [-2728, -206], + [-3331, -685], + [-1551, -457], + [-2178, -766], + [-1727, -697], + [3756, 1799], + [204, 69], + [194, 64], + [186, 60], + [178, 56], + [171, 53], + [166, 51], + [160, 48], + [155, 46], + [150, 43], + [147, 42], + [142, 40], + [139, 38], + [136, 36], + [133, 35], + [257, 66], + [124, 31], + [122, 30], + [120, 29], + [234, 54], + [113, 26], + [112, 25], + [110, 24], + [109, 23], + [212, 44], + [104, 21], + [102, 20], + [201, 38], + [99, 18], + [288, 51], + [186, 31], + [183, 29], + [266, 39], + [173, 24], + [254, 33], + [82, 10], + [164, 19], + [81, 9], + [315, 32], + [78, 7], + [153, 13], + [75, 6], + [369, 26], + [356, 19], + [275, 10], + [203, 5], + [198, 3], + [194, 1], + [255, -2], + [248, -5], + [182, -6], + [415, -20], + [344, -24], + [442, -41], + [321, -37], + [3623, -880], + [3347, -1712], + [2421, -1876], + [133, -119], + [265, -242], + [131, -122], + [157, -148], + [337, -325], + [103, -101], + [154, -153], + [179, -180], + [77, -78], + [51, -52], + [178, -183], + [51, -53], + [127, -132], + [102, -107], + [152, -161], + [127, -135], + [127, -136], + [51, -55], + [51, -55], + [127, -138], + [127, -139], + [51, -56], + [128, -140], + [77, -85], + [128, -142], + [129, -143], + [51, -57], + [26, -29], + [26, -29], + [26, -29], + [155, -174], + [105, -118], + [78, -88], + [131, -148], + [53, -60], + [79, -89], + [133, -151], + [107, -121], + [54, -61], + [81, -92], + [108, -123], + [137, -155], + [55, -62], + [83, -94], + [111, -126], + [112, -127], + [170, -192], + [115, -129], + [58, -65], + [87, -98], + [58, -65], + [59, -66], + [59, -66], + [149, -167], + [121, -134], + [61, -67], + [155, -171], + [93, -103], + [63, -69], + [160, -174], + [32, -35], + [32, -35], + [98, -106], + [66, -71], + [66, -71], + [67, -72], + [170, -181], + [34, -36], + [35, -37], + [34, -36], + [35, -37], + [35, -37], + [35, -37], + [71, -74], + [72, -75], + [72, -75], + [36, -37], + [37, -38], + [37, -38], + [148, -153], + [114, -116], + [77, -78], + [39, -39], + [39, -39], + [39, -39], + [40, -40], + [39, -39], + [40, -40], + [81, -80], + [82, -81], + [124, -122], + [42, -41], + [85, -82], + [130, -125], + [44, -42], + [44, -42], + [90, -85], + [45, -42], + [46, -43], + [46, -43], + [46, -43], + [47, -44], + [94, -87], + [96, -89], + [98, -89], + [50, -45], + [50, -45], + [153, -137], + [52, -46], + [53, -47], + [161, -141], + [110, -95], + [113, -97], + [58, -49], + [58, -49], + [58, -49], + [60, -50], + [60, -50], + [61, -51], + [62, -51], + [126, -103], + [130, -105], + [134, -107], + [68, -54], + [70, -55], + [70, -55], + [72, -56], + [73, -56], + [75, -57], + [76, -58], + [77, -58], + [79, -59], + [80, -60], + [166, -122], + [86, -62], + [87, -63], + [90, -64], + [92, -65], + [95, -67], + [97, -67], + [100, -69], + [103, -70], + [107, -72], + [110, -73], + [114, -75], + [119, -77], + [123, -80], + [129, -82], + [135, -84], + [142, -88], + [150, -91], + [160, -96], + [22, -13], + [68, -40], + [191, -111], + [51, -29], + [159, -90], + [143, -80], + [91, -50], + [64, -35], + [100, -54], + [143, -76], + [77, -41], + [123, -64], + [43, -22], + [140, -72], + [103, -52], + [113, -56], + [198, -97], + [161, -77], + [97, -46], + [114, -53], + [148, -68], + [278, -124], + [63, -28] + ], + [ + [34032, 30377], + [-125, -634], + [-297, 266], + [-167, 151], + [-122, 110], + [-102, 92], + [-88, 80], + [-79, 72], + [-201, 183], + [-59, 54], + [-159, 146], + [-141, 129], + [-127, 117], + [-225, 207], + [-68, 63], + [-129, 119], + [-120, 111], + [-29, 27], + [-28, 26], + [-28, 26], + [-55, 51], + [-130, 121], + [-74, 69], + [-72, 67], + [-70, 65], + [-45, 42], + [-44, 41], + [-159, 148], + [-149, 139], + [-141, 132], + [-133, 125], + [-248, 232], + [-116, 109], + [-112, 105], + [-108, 101], + [-104, 98], + [-101, 94], + [-98, 92], + [-187, 175], + [-177, 166], + [-169, 157], + [-161, 150], + [-78, 73], + [-151, 141], + [-146, 135], + [-208, 193], + [-134, 123], + [-129, 118], + [-63, 58], + [-62, 57], + [-61, 56], + [-120, 110], + [-117, 106], + [-57, 52], + [-112, 101], + [-164, 148], + [-209, 187], + [-51, 45], + [-150, 133], + [-97, 86], + [-48, 42], + [-141, 123], + [-92, 80], + [-135, 116], + [-44, 38], + [-44, 38], + [-87, 74], + [-127, 108], + [-42, 35], + [-124, 104], + [-160, 133], + [-157, 128], + [-38, 31], + [-38, 31], + [-150, 121], + [-110, 87], + [-37, 29], + [-107, 84], + [-36, 28], + [-35, 27], + [-35, 27], + [-35, 27], + [-69, 53], + [-69, 52], + [-101, 76], + [-67, 50], + [-131, 96], + [-33, 24], + [-32, 23], + [-32, 23], + [-32, 23], + [-32, 23], + [-32, 23], + [-94, 66], + [-63, 44], + [-61, 42], + [-92, 63], + [-60, 41], + [-30, 20], + [-30, 20], + [-30, 20], + [-59, 39], + [-88, 57], + [-116, 74], + [-29, 18], + [-29, 18], + [-141, 87], + [-139, 83], + [-110, 64], + [-55, 31], + [-107, 60], + [-27, 15], + [-54, 29], + [-26, 14], + [-26, 14], + [-79, 42], + [-53, 27], + [-103, 52], + [-26, 13], + [-26, 13], + [-51, 25], + [-76, 36], + [-76, 36], + [-51, 23], + [-74, 33], + [-25, 11], + [-25, 11], + [-25, 11], + [-74, 31], + [-73, 30], + [-49, 20], + [-49, 19], + [-72, 28], + [-120, 44], + [-72, 25], + [-71, 24], + [-71, 23], + [-71, 22], + [-23, 7], + [-23, 7], + [-47, 14], + [-93, 26], + [-23, 6], + [-23, 6], + [-23, 6], + [-93, 24], + [-46, 11], + [-22, 5], + [-23, 5], + [-114, 25], + [-91, 18], + [-45, 8], + [-68, 12], + [-68, 11], + [-67, 10], + [-67, 9], + [-67, 8], + [-45, 5], + [-22, 2], + [-67, 6], + [-22, 2], + [-45, 4], + [-44, 3], + [-45, 3], + [-22, 1], + [-22, 1], + [-22, 1], + [-22, 1], + [-22, 1], + [-23, 1], + [-44, 1], + [-44, 1], + [-22, 0], + [-22, 0], + [-22, 0], + [-22, 0], + [-22, 0], + [-22, 0], + [-22, 0], + [-44, -1], + [-45, -1], + [-22, -1], + [-22, -1], + [-22, -1], + [-22, -1], + [-22, -1], + [-66, -4], + [-66, -5], + [-22, -2], + [-22, -2], + [-22, -2], + [-22, -2], + [-66, -7], + [-44, -5], + [-22, -3], + [-89, -12], + [-22, -3], + [-22, -3], + [-44, -7], + [-66, -11], + [-45, -8], + [-22, -4], + [-22, -4], + [-89, -18], + [-66, -14], + [-23, -5], + [-22, -5], + [-67, -16], + [-45, -11], + [-67, -17], + [-45, -12], + [-67, -19], + [-45, -13], + [-68, -20], + [-45, -14], + [-68, -22], + [-46, -15], + [-137, -48], + [-23, -8], + [-91, -34], + [-24, -9], + [-23, -9], + [-23, -9], + [-23, -9], + [-70, -28], + [-70, -29], + [-70, -30], + [-47, -21], + [-47, -21], + [-71, -32], + [-24, -11], + [-48, -23], + [-23, -11], + [-48, -23], + [-97, -48], + [-24, -12], + [-24, -12], + [-49, -25], + [-48, -25], + [-25, -13], + [-49, -26], + [-99, -54], + [-149, -84], + [-51, -29], + [-127, -75], + [-51, -31], + [-26, -16], + [-129, -80], + [-53, -33], + [-132, -85], + [-53, -35], + [-27, -18], + [-27, -18], + [-81, -54], + [-54, -37], + [-55, -38], + [-55, -38], + [-55, -39], + [-113, -80], + [-28, -20], + [-57, -41], + [-115, -84], + [-87, -65], + [-118, -89], + [-119, -92], + [-61, -47], + [-92, -72], + [-62, -49], + [-94, -75], + [-63, -51], + [-32, -26], + [-32, -26], + [-32, -26], + [-65, -53], + [-65, -54], + [-66, -55], + [-67, -56], + [-101, -85], + [-34, -29], + [-69, -59], + [-35, -30], + [-35, -30], + [-35, -30], + [-35, -30], + [-36, -31], + [-144, -125], + [-110, -97], + [-37, -33], + [-152, -135], + [-38, -34], + [-39, -35], + [-39, -35], + [-118, -107], + [-81, -73], + [-123, -113], + [-125, -115], + [-86, -79], + [-87, -81], + [-44, -41], + [-44, -41], + [-45, -42], + [-136, -128], + [-47, -44], + [-47, -44], + [-143, -136], + [-97, -92], + [-100, -95], + [-154, -147], + [-52, -50], + [-53, -51], + [-54, -52], + [-54, -52], + [-55, -53], + [-55, -53], + [-171, -165], + [-118, -114], + [-182, -178], + [-63, -61], + [-64, -62], + [-130, -127], + [-67, -65], + [-136, -133], + [-71, -69], + [-144, -141], + [-150, -147], + [-156, -153], + [-81, -79], + [-83, -81], + [-171, -167], + [-89, -87], + [-91, -89], + [-94, -92], + [-97, -95], + [-99, -97], + [-103, -100], + [-106, -104], + [-110, -107], + [-115, -111], + [-119, -116], + [-255, -247], + [-137, -133], + [-145, -139], + [-154, -149], + [-234, -224], + [-24, -23], + [-48, -46], + [-125, -119], + [-106, -101], + [-141, -134], + [-121, -115], + [-164, -155], + [-144, -136], + [-38, -36], + [-163, -153], + [-90, -84], + [-47, -44], + [-49, -46], + [-104, -97], + [-56, -52], + [-59, -55], + [-202, -187], + [-79, -73], + [-88, -81], + [-100, -92], + [-120, -110], + [-159, -145], + [-335, -302], + [-131, 610], + [870, 811], + [2126, 2056], + [1278, 1273], + [1259, 1265], + [1698, 1681], + [964, 916], + [1186, 1053], + [1605, 1218], + [997, 588], + [1223, 492], + [1126, 202], + [859, -19], + [904, -177], + [829, -295], + [996, -505], + [697, -437], + [1095, -797], + [1710, -1444], + [1005, -920], + [1301, -1231], + [1527, -1467], + [1907, -1817], + [1498, -1390] + ], + [ + [53046, 36947], + [-2137, -2095], + [-269, -241], + [-216, -193], + [-126, -113], + [-73, -65], + [-175, -155], + [-165, -147], + [-157, -138], + [-149, -132], + [-144, -126], + [-138, -120], + [-132, -116], + [-129, -112], + [-245, -212], + [-232, -199], + [-220, -188], + [-211, -179], + [-201, -170], + [-195, -162], + [-94, -78], + [-93, -77], + [-92, -76], + [-89, -73], + [-89, -73], + [-87, -71], + [-171, -138], + [-167, -134], + [-162, -129], + [-158, -125], + [-78, -61], + [-77, -60], + [-76, -59], + [-150, -116], + [-74, -57], + [-217, -165], + [-280, -210], + [-69, -51], + [-68, -50], + [-201, -147], + [-66, -48], + [-259, -185], + [-127, -89], + [-310, -215], + [-121, -82], + [-120, -81], + [-351, -231], + [-115, -74], + [-170, -108], + [-223, -139], + [-433, -261], + [-212, -123], + [-311, -175], + [-102, -56], + [-152, -82], + [-2733, -1187], + [-3367, -641], + [-2026, 92], + [-2541, 675], + [-1661, 807], + [-1861, 1274], + [-3027, 2896], + [-153, 170], + [-216, 244], + [-93, 106], + [-188, 216], + [-221, 258], + [-64, 75], + [-257, 305], + [-65, 78], + [-197, 237], + [-33, 40], + [-33, 40], + [-167, 203], + [-169, 207], + [-137, 169], + [-174, 215], + [-105, 131], + [-71, 88], + [-216, 270], + [-36, 45], + [-147, 185], + [-187, 235], + [-38, 48], + [-38, 48], + [-115, 146], + [-156, 197], + [-79, 100], + [-120, 152], + [-122, 155], + [-41, 52], + [-83, 105], + [-42, 53], + [-42, 53], + [-170, 216], + [-87, 110], + [-88, 111], + [-134, 169], + [-45, 57], + [-46, 58], + [-46, 58], + [-46, 58], + [-47, 59], + [-47, 59], + [-47, 59], + [-96, 121], + [-97, 122], + [-199, 249], + [-102, 127], + [-52, 65], + [-52, 65], + [-53, 66], + [-53, 66], + [-108, 134], + [-167, 205], + [-57, 70], + [-57, 70], + [-58, 71], + [-178, 218], + [-61, 74], + [-61, 74], + [-63, 76], + [-127, 154], + [-65, 78], + [-66, 79], + [-67, 80], + [-68, 81], + [-139, 166], + [-71, 84], + [-146, 173], + [-152, 177], + [-78, 91], + [-80, 93], + [-81, 94], + [-83, 96], + [-172, 197], + [-180, 205], + [-94, 106], + [-96, 108], + [-99, 111], + [-208, 231], + [-110, 121], + [-113, 124], + [-118, 129], + [-123, 133], + [-129, 138], + [-135, 144], + [-143, 151], + [-152, 159], + [-162, 169], + [-22, 23], + [-23, 24], + [-93, 96], + [-174, 178], + [-107, 108], + [-84, 85], + [-1945, 2033], + [1759, -1604], + [985, -976], + [1433, -1521], + [1983, -2280], + [821, -992], + [1323, -1633], + [1302, -1608], + [2095, -2465], + [2221, -2251], + [116, -104], + [145, -128], + [232, -200], + [407, -336], + [203, -161], + [175, -135], + [29, -22], + [175, -131], + [293, -211], + [147, -102], + [147, -100], + [148, -98], + [237, -152], + [59, -37], + [149, -91], + [60, -36], + [150, -88], + [240, -136], + [60, -33], + [61, -33], + [212, -112], + [122, -62], + [30, -15], + [184, -90], + [123, -58], + [216, -98], + [124, -54], + [187, -78], + [94, -38], + [63, -25], + [221, -84], + [63, -23], + [95, -34], + [128, -44], + [192, -63], + [96, -30], + [194, -58], + [228, -63], + [131, -34], + [165, -40], + [232, -52], + [66, -14], + [100, -20], + [101, -19], + [168, -30], + [136, -22], + [204, -30], + [137, -18], + [173, -20], + [138, -14], + [175, -15], + [140, -10], + [176, -10], + [142, -6], + [178, -5], + [72, -1], + [144, -1], + [145, 1], + [109, 2], + [73, 2], + [184, 7], + [184, 10], + [75, 5], + [261, 21], + [76, 7], + [151, 16], + [152, 18], + [154, 20], + [309, 47], + [78, 13], + [196, 35], + [79, 15], + [159, 32], + [159, 34], + [81, 18], + [121, 28], + [203, 50], + [82, 21], + [164, 44], + [83, 23], + [209, 60], + [84, 25], + [211, 66], + [171, 56], + [86, 29], + [173, 60], + [175, 63], + [3144, 1516], + [2097, 1368], + [1729, 1296], + [1580, 1282], + [1392, 1182], + [1982, 1726], + [1105, 970] + ], + [ + [11462, 12553], + [2681, -306], + [-28, -225], + [-8, -285], + [-2, -125], + [1, -107], + [2, -95], + [4, -88], + [5, -80], + [5, -75], + [6, -71], + [7, -67], + [7, -64], + [8, -62], + [8, -58], + [8, -57], + [9, -55], + [9, -53], + [10, -51], + [10, -50], + [10, -49], + [10, -47], + [10, -46], + [11, -45], + [11, -44], + [11, -43], + [23, -84], + [24, -80], + [12, -39], + [25, -76], + [25, -74], + [13, -36], + [40, -105], + [27, -67], + [28, -66], + [14, -32], + [43, -94], + [59, -121], + [46, -87], + [15, -28], + [16, -29], + [31, -55], + [32, -54], + [123, -196], + [129, -183], + [135, -172], + [139, -164], + [145, -155], + [150, -147], + [154, -141], + [160, -135], + [164, -129], + [169, -124], + [173, -118], + [178, -114], + [182, -109], + [187, -105], + [191, -101], + [196, -97], + [200, -93], + [204, -90], + [208, -86], + [212, -82], + [216, -79], + [220, -76], + [223, -72], + [227, -70], + [231, -66], + [234, -63], + [238, -60], + [240, -57], + [244, -54], + [246, -52], + [249, -48], + [251, -46], + [510, -83], + [258, -37], + [259, -35], + [524, -61], + [528, -51], + [265, -21], + [266, -19], + [265, -17], + [266, -14], + [266, -12], + [265, -9], + [265, -7], + [263, -5], + [263, -2], + [261, 0], + [260, 2], + [258, 4], + [257, 6], + [506, 19], + [498, 27], + [245, 16], + [481, 39], + [469, 45], + [457, 53], + [223, 28], + [437, 63], + [213, 33], + [209, 35], + [206, 36], + [202, 38], + [199, 39], + [195, 40], + [192, 41], + [187, 43], + [184, 44], + [181, 45], + [350, 94], + [170, 49], + [329, 100], + [315, 104], + [302, 108], + [146, 55], + [142, 56], + [139, 57], + [137, 58], + [263, 118], + [127, 60], + [124, 61], + [121, 61], + [118, 62], + [228, 126], + [109, 64], + [108, 65], + [104, 65], + [102, 66], + [100, 67], + [97, 67], + [94, 67], + [92, 68], + [90, 69], + [173, 138], + [83, 70], + [159, 142], + [77, 71], + [74, 72], + [144, 145], + [68, 73], + [67, 74], + [65, 74], + [63, 75], + [121, 150], + [57, 75], + [111, 153], + [53, 77], + [51, 77], + [49, 78], + [48, 78], + [47, 78], + [45, 79], + [43, 79], + [83, 159], + [39, 81], + [74, 161], + [35, 82], + [33, 82], + [32, 82], + [31, 82], + [30, 83], + [56, 168], + [50, 168], + [46, 171], + [21, 85], + [38, 173], + [34, 175], + [15, 88], + [14, 88], + [24, 179], + [10, 90], + [18, 181], + [7, 91], + [10, 185], + [4, 93], + [2, 94], + [1, 94], + [0, 95], + [-1, 95], + [-3, 97], + [-3, 97], + [-5, 97], + [-6, 98], + [-7, 99], + [-9, 100], + [-10, 101], + [-11, 101], + [-12, 103], + [-14, 103], + [-15, 104], + [-17, 105], + [-18, 106], + [-19, 108], + [-44, 218], + [-25, 111], + [-26, 112], + [-28, 114], + [-29, 115], + [-32, 116], + [-33, 119], + [-36, 120], + [-38, 122], + [-41, 124], + [-43, 127], + [-45, 128], + [-49, 132], + [-52, 134], + [-55, 138], + [-59, 141], + [-63, 145], + [-68, 149], + [-73, 154], + [-78, 160], + [-86, 167], + [-94, 174], + [-13, 24], + [-13, 24], + [-27, 49], + [-28, 49], + [-29, 51], + [-60, 103], + [-48, 80], + [-33, 55], + [-52, 84], + [-18, 29], + [-18, 29], + [-77, 120], + [-41, 62], + [-43, 65], + [-45, 67], + [-48, 69], + [-25, 36], + [-25, 36], + [-111, 155], + [-30, 41], + [-65, 86], + [-71, 94], + [-79, 101], + [-44, 55], + [-47, 59], + [-52, 63], + [-57, 69], + [-65, 76], + [-77, 89], + [-201, 228], + [-98, 98], + [1334, 1401], + [1037, -1090], + [921, -1205], + [852, -1410], + [772, -1695], + [631, -2116], + [221, -1448], + [-3, -1782], + [-230, -1215], + [-980, -1939], + [-2284, -1795], + [-3208, -1098], + [-10753, -765], + [-5763, 630], + [-4778, 1898], + [-1543, 2075], + [-279, 2300], + [449, 2155] + ], + [ + [44588, 77124], + [-163, -684], + [-1808, 412], + [-2590, 335], + [-1742, 46], + [-6239, -1255], + [-149, -63], + [-431, -192], + [-207, -98], + [-333, -165], + [-319, -168], + [-124, -68], + [-61, -34], + [-300, -172], + [-174, -104], + [-282, -175], + [-164, -106], + [-370, -249], + [-153, -108], + [-150, -108], + [-244, -182], + [-142, -109], + [-232, -183], + [-268, -221], + [-44, -37], + [-258, -223], + [-42, -37], + [-247, -224], + [-81, -75], + [-236, -225], + [-116, -113], + [-151, -151], + [-185, -190], + [-180, -189], + [-210, -229], + [-170, -190], + [-101, -115], + [-33, -38], + [-131, -153], + [-97, -115], + [-95, -115], + [-63, -77], + [-155, -192], + [-61, -77], + [-180, -231], + [-233, -309], + [-57, -77], + [-85, -116], + [-84, -116], + [-219, -310], + [-107, -155], + [-312, -466], + [-101, -156], + [-75, -117], + [-123, -194], + [-49, -78], + [-192, -312], + [-164, -273], + [-229, -391], + [-112, -196], + [-132, -234], + [-109, -196], + [-214, -392], + [-2690, -5602], + [-895, -1955], + [-979, -2040], + [-1115, -2105], + [-598, -1019], + [-1121, -1698], + [-687, -910], + [-1602, -1786], + [-1201, -1070], + [-911, -682], + [-1708, -1019], + [-1057, -485], + [-1927, -642], + [-110, 706], + [334, 98], + [154, 48], + [119, 38], + [189, 63], + [80, 28], + [141, 50], + [64, 23], + [60, 22], + [57, 21], + [157, 60], + [49, 19], + [46, 18], + [89, 35], + [84, 34], + [79, 33], + [76, 32], + [107, 46], + [101, 44], + [65, 29], + [62, 28], + [90, 41], + [114, 53], + [185, 89], + [75, 37], + [244, 125], + [160, 85], + [151, 82], + [143, 80], + [136, 77], + [129, 76], + [124, 75], + [119, 73], + [114, 72], + [110, 70], + [107, 70], + [203, 136], + [97, 67], + [95, 66], + [181, 130], + [87, 64], + [169, 126], + [160, 124], + [155, 122], + [148, 120], + [143, 119], + [137, 117], + [67, 58], + [131, 115], + [64, 57], + [125, 113], + [61, 56], + [120, 112], + [116, 110], + [113, 110], + [110, 108], + [54, 54], + [106, 108], + [52, 53], + [51, 53], + [51, 53], + [50, 53], + [50, 53], + [49, 52], + [49, 52], + [143, 156], + [92, 103], + [46, 52], + [45, 51], + [45, 51], + [132, 152], + [86, 101], + [42, 50], + [125, 150], + [121, 149], + [119, 148], + [77, 98], + [38, 49], + [38, 49], + [38, 49], + [37, 48], + [111, 145], + [108, 145], + [105, 143], + [35, 48], + [69, 95], + [68, 95], + [67, 95], + [33, 47], + [33, 47], + [65, 94], + [64, 93], + [32, 47], + [32, 47], + [63, 93], + [31, 46], + [62, 93], + [61, 92], + [30, 46], + [30, 46], + [30, 46], + [30, 46], + [59, 92], + [58, 91], + [87, 137], + [85, 136], + [56, 91], + [83, 135], + [108, 180], + [27, 45], + [27, 45], + [27, 45], + [53, 89], + [52, 89], + [52, 89], + [52, 89], + [51, 89], + [101, 177], + [99, 176], + [49, 88], + [73, 131], + [24, 44], + [24, 44], + [24, 44], + [71, 130], + [47, 87], + [47, 87], + [138, 260], + [91, 173], + [45, 86], + [89, 172], + [22, 43], + [22, 43], + [22, 43], + [87, 171], + [43, 85], + [86, 171], + [21, 42], + [85, 170], + [42, 85], + [104, 212], + [41, 84], + [123, 253], + [81, 169], + [120, 251], + [20, 42], + [20, 42], + [79, 167], + [98, 209], + [39, 83], + [97, 208], + [58, 125], + [19, 41], + [77, 166], + [95, 207], + [57, 124], + [57, 124], + [113, 247], + [131, 288], + [186, 410], + [37, 82], + [37, 82], + [111, 245], + [111, 245], + [129, 285], + [129, 285], + [92, 203], + [111, 244], + [37, 81], + [130, 283], + [93, 203], + [168, 363], + [94, 202], + [189, 403], + [1985, 3849], + [2241, 3337], + [1726, 1915], + [2541, 2033], + [6356, 2394], + [257, 38], + [266, 35], + [277, 32], + [143, 15], + [145, 14], + [457, 37], + [159, 10], + [164, 9], + [168, 8], + [533, 15], + [189, 2], + [195, 0], + [202, -2], + [210, -4], + [218, -7], + [229, -10], + [491, -29], + [341, -27], + [114, -10], + [156, -15], + [163, -17], + [170, -19], + [43, -5], + [181, -22], + [141, -18], + [148, -20], + [155, -22], + [54, -8], + [54, -8], + [169, -26], + [244, -40], + [64, -11], + [204, -36], + [147, -27], + [158, -30], + [83, -16], + [179, -36], + [200, -42], + [110, -24], + [250, -56], + [147, -34], + [171, -41], + [214, -53], + [331, -86], + [333, -92] + ], + [ + [51763, 72350], + [-500, -1131], + [-1023, 611], + [-1102, 839], + [-1122, 1085], + [-856, 1020], + [-1236, 1838], + [-960, 1805], + [-812, 1853], + [-811, 2212], + [-449, 1406], + [-583, 2036], + [-721, 2895], + [-372, 1719], + [-391, 2152], + [-242, 2461], + [289, 1978], + [9290, 2665], + [32291, -1292], + [1284, -2595], + [-437, -2308], + [-529, -1530], + [-2575, 146], + [20, 438], + [-1, 205], + [-6, 161], + [-8, 136], + [-10, 121], + [-11, 110], + [-13, 101], + [-14, 94], + [-14, 88], + [-16, 84], + [-16, 80], + [-16, 76], + [-18, 73], + [-18, 70], + [-18, 68], + [-39, 129], + [-20, 62], + [-42, 119], + [-22, 57], + [-22, 55], + [-23, 55], + [-23, 53], + [-24, 52], + [-24, 51], + [-24, 50], + [-25, 49], + [-25, 48], + [-26, 48], + [-26, 46], + [-27, 46], + [-27, 45], + [-84, 131], + [-58, 84], + [-30, 41], + [-61, 81], + [-31, 40], + [-96, 116], + [-135, 148], + [-35, 36], + [-35, 35], + [-72, 70], + [-37, 35], + [-37, 34], + [-294, 245], + [-325, 229], + [-355, 214], + [-390, 201], + [-426, 189], + [-466, 179], + [-509, 168], + [-555, 157], + [-605, 148], + [-658, 139], + [-715, 128], + [-775, 119], + [-835, 108], + [-898, 98], + [-959, 87], + [-1018, 76], + [-1071, 64], + [-1117, 53], + [-1153, 40], + [-1177, 29], + [-1186, 17], + [-2343, -2], + [-1131, -17], + [-1088, -27], + [-1038, -36], + [-981, -44], + [-922, -51], + [-862, -58], + [-801, -64], + [-742, -69], + [-687, -73], + [-635, -77], + [-585, -80], + [-540, -83], + [-498, -85], + [-460, -87], + [-425, -89], + [-392, -90], + [-363, -91], + [-337, -93], + [-312, -93], + [-289, -93], + [-520, -189], + [-233, -95], + [-218, -95], + [-204, -96], + [-190, -95], + [-178, -95], + [-167, -96], + [-157, -95], + [-147, -95], + [-138, -95], + [-130, -95], + [-238, -189], + [-108, -94], + [-103, -94], + [-97, -94], + [-92, -94], + [-86, -93], + [-82, -93], + [-78, -92], + [-143, -185], + [-66, -92], + [-62, -91], + [-59, -91], + [-57, -91], + [-104, -181], + [-48, -90], + [-45, -89], + [-44, -90], + [-41, -89], + [-39, -89], + [-37, -88], + [-35, -88], + [-34, -88], + [-32, -87], + [-59, -175], + [-27, -86], + [-50, -173], + [-23, -86], + [-22, -85], + [-21, -86], + [-38, -169], + [-34, -169], + [-30, -168], + [-14, -83], + [-13, -84], + [-12, -83], + [-22, -165], + [-19, -164], + [-16, -164], + [-14, -162], + [-6, -81], + [-15, -241], + [-7, -160], + [-3, -80], + [-6, -238], + [-1, -79], + [-1, -157], + [0, -78], + [1, -79], + [1, -78], + [1, -77], + [3, -155], + [5, -155], + [3, -77], + [3, -77], + [4, -76], + [4, -77], + [4, -76], + [4, -76], + [4, -76], + [5, -76], + [5, -76], + [11, -151], + [6, -75], + [6, -75], + [13, -150], + [7, -75], + [7, -75], + [7, -74], + [23, -223], + [25, -222], + [18, -147], + [9, -73], + [18, -147], + [10, -73], + [10, -73], + [10, -73], + [20, -145], + [21, -145], + [11, -73], + [11, -72], + [11, -72], + [11, -72], + [23, -144], + [12, -72], + [12, -72], + [12, -72], + [12, -71], + [25, -143], + [13, -72], + [13, -71], + [13, -71], + [26, -143], + [13, -71], + [41, -212], + [14, -71], + [14, -71], + [29, -141], + [29, -141], + [15, -71], + [15, -70], + [15, -70], + [31, -141], + [31, -140], + [16, -70], + [16, -70], + [16, -70], + [16, -70], + [33, -140], + [17, -70], + [17, -70], + [17, -70], + [17, -70], + [17, -70], + [35, -139], + [18, -70], + [36, -139], + [18, -70], + [37, -139], + [19, -70], + [38, -139], + [19, -70], + [38, -139], + [40, -139], + [20, -70], + [40, -139], + [41, -139], + [21, -70], + [42, -139], + [21, -69], + [65, -210], + [67, -209], + [23, -70], + [23, -70], + [23, -70], + [46, -139], + [48, -141], + [24, -70], + [24, -70], + [49, -140], + [25, -71], + [51, -140], + [51, -141], + [53, -142], + [53, -141], + [55, -142], + [55, -143], + [57, -142], + [29, -72], + [58, -143], + [30, -72], + [30, -72], + [30, -72], + [31, -72], + [62, -145], + [64, -145], + [32, -73], + [33, -73], + [33, -73], + [33, -73], + [34, -74], + [34, -74], + [70, -148], + [35, -74], + [36, -74], + [73, -150], + [75, -150], + [78, -151], + [39, -76], + [80, -153], + [41, -77], + [42, -77], + [42, -77], + [43, -78], + [43, -78], + [44, -78], + [45, -79], + [92, -159], + [47, -80], + [48, -80], + [49, -81], + [49, -81], + [102, -163], + [53, -83], + [53, -83], + [55, -84], + [55, -84], + [57, -85], + [58, -86], + [59, -86], + [61, -87], + [62, -88], + [64, -88], + [65, -90], + [67, -90], + [68, -92], + [71, -92], + [73, -94], + [75, -94], + [77, -97], + [80, -97], + [82, -99], + [86, -101], + [89, -102], + [93, -105], + [96, -107], + [102, -109], + [106, -112], + [112, -116], + [119, -119], + [127, -123], + [35, -34], + [18, -17], + [37, -35], + [18, -17], + [76, -71], + [100, -91], + [63, -56], + [88, -77], + [23, -20], + [23, -20], + [72, -61], + [25, -21], + [25, -21], + [25, -21], + [107, -88], + [28, -23], + [29, -23], + [90, -71], + [32, -25], + [66, -51], + [34, -26], + [72, -54], + [38, -28], + [123, -90], + [45, -32], + [47, -33], + [50, -35], + [110, -75], + [61, -41], + [68, -45], + [76, -50], + [89, -56], + [109, -68], + [164, -98], + [125, -72] + ], + [ + [75235, 43592], + [-219, -951], + [-2410, 1767], + [-1517, 1367], + [-1959, 2111], + [-1245, 1572], + [-1014, 1423], + [-1204, 1857], + [-1132, 1895], + [-1663, 2952], + [-1965, 3430], + [-124, 204], + [-124, 202], + [-62, 100], + [-145, 232], + [-83, 131], + [-104, 163], + [-146, 226], + [-126, 192], + [-189, 284], + [-106, 156], + [-149, 216], + [-64, 92], + [-43, 61], + [-86, 121], + [-43, 60], + [-130, 180], + [-87, 119], + [-154, 206], + [-110, 145], + [-89, 116], + [-67, 86], + [-90, 114], + [-90, 113], + [-68, 84], + [-115, 140], + [-161, 193], + [-93, 109], + [-70, 81], + [-47, 54], + [-142, 160], + [-96, 106], + [-120, 130], + [-73, 78], + [-49, 52], + [-172, 179], + [-125, 126], + [-25, 25], + [-75, 74], + [-51, 50], + [-153, 147], + [-77, 72], + [-156, 144], + [-79, 71], + [-106, 94], + [-80, 69], + [-162, 138], + [-192, 157], + [-224, 176], + [-113, 86], + [-86, 64], + [-174, 126], + [-117, 82], + [-89, 61], + [-180, 120], + [-91, 59], + [-92, 58], + [-155, 95], + [-63, 38], + [-94, 56], + [-128, 73], + [-96, 54], + [-163, 88], + [-266, 136], + [-136, 66], + [-102, 48], + [-104, 48], + [-175, 77], + [-71, 30], + [-72, 30], + [-144, 58], + [-36, 14], + [-184, 70], + [-150, 54], + [-37, 13], + [-76, 26], + [-115, 38], + [-154, 49], + [-237, 70], + [-80, 22], + [-162, 43], + [-248, 60], + [-84, 19], + [-213, 45], + [-130, 25], + [-88, 16], + [-177, 30], + [-90, 14], + [-182, 26], + [-93, 12], + [-93, 11], + [-236, 25], + [-145, 13], + [-197, 14], + [-99, 6], + [-101, 5], + [-153, 6], + [-156, 4], + [-211, 2], + [-53, 0], + [-108, -1], + [-110, -2], + [-110, -3], + [-112, -4], + [-113, -5], + [-115, -6], + [-233, -16], + [-179, -15], + [-183, -18], + [-187, -21], + [-190, -24], + [-130, -18], + [-198, -30], + [-341, -58], + [-211, -40], + [-5318, -1935], + [-1702, -932], + [-1780, -1100], + [-155, 1007], + [346, 228], + [175, 114], + [350, 225], + [175, 111], + [78, 49], + [271, 168], + [175, 107], + [54, 33], + [427, 255], + [124, 73], + [193, 112], + [73, 42], + [208, 118], + [98, 55], + [246, 136], + [29, 16], + [239, 130], + [198, 105], + [187, 97], + [178, 91], + [170, 86], + [163, 81], + [309, 149], + [289, 136], + [138, 63], + [134, 60], + [131, 58], + [252, 109], + [241, 101], + [344, 138], + [5164, 1168], + [1716, -51], + [2545, -580], + [2224, -1102], + [1408, -1049], + [1870, -1896], + [1000, -1273], + [3391, -5519], + [66, -119], + [154, -279], + [22, -40], + [201, -365], + [113, -205], + [114, -207], + [92, -167], + [163, -295], + [47, -85], + [47, -85], + [143, -259], + [145, -261], + [49, -88], + [49, -88], + [124, -222], + [177, -315], + [77, -136], + [26, -46], + [26, -46], + [78, -138], + [26, -46], + [53, -93], + [53, -93], + [135, -235], + [27, -47], + [55, -95], + [55, -95], + [112, -193], + [28, -48], + [114, -195], + [29, -49], + [117, -198], + [29, -49], + [180, -302], + [92, -152], + [125, -206], + [160, -261], + [65, -105], + [33, -53], + [33, -53], + [67, -107], + [34, -54], + [34, -54], + [34, -54], + [34, -54], + [69, -109], + [35, -55], + [35, -55], + [71, -111], + [145, -224], + [74, -113], + [113, -172], + [116, -174], + [78, -117], + [40, -59], + [40, -59], + [81, -119], + [41, -60], + [83, -121], + [42, -61], + [43, -62], + [129, -185], + [44, -63], + [90, -126], + [45, -63], + [138, -193], + [143, -196], + [198, -267], + [102, -136], + [52, -69], + [106, -139], + [108, -140], + [112, -144], + [172, -219], + [120, -149], + [185, -228], + [64, -78], + [65, -78], + [66, -79], + [67, -80], + [138, -163], + [71, -83], + [145, -168], + [152, -172], + [78, -88], + [80, -90], + [82, -90], + [84, -92], + [86, -93], + [88, -95], + [90, -97], + [188, -198], + [200, -206], + [105, -107], + [221, -221], + [117, -115], + [122, -118], + [128, -123], + [134, -126], + [140, -131], + [149, -137], + [159, -143], + [66, -59], + [69, -61], + [193, -169], + [51, -44], + [134, -114], + [143, -120], + [30, -25], + [93, -77], + [166, -136], + [108, -87], + [116, -92], + [170, -133], + [93, -72], + [154, -117], + [177, -133], + [138, -101], + [77, -56], + [86, -62], + [208, -147], + [140, -98], + [215, -146], + [170, -114] + ], + [ + [275, 22191], + [-273, -740], + [99760, 201], + [-280, 239], + [-310, 270], + [-219, 194], + [-92, 83], + [-85, 77], + [-222, 203], + [-129, 120], + [-174, 163], + [-105, 100], + [-50, 48], + [-96, 92], + [-134, 130], + [-125, 122], + [-79, 78], + [-184, 183], + [-136, 137], + [-65, 66], + [-124, 127], + [-30, 31], + [-116, 120], + [-190, 199], + [-52, 55], + [-100, 106], + [-178, 191], + [-167, 181], + [-156, 172], + [-149, 166], + [-275, 311], + [-129, 148], + [-123, 143], + [-119, 138], + [-225, 266], + [-210, 253], + [-198, 241], + [-95, 117], + [-182, 227], + [-173, 218], + [-165, 210], + [-80, 103], + [-155, 200], + [-75, 98], + [-74, 97], + [-72, 95], + [-71, 94], + [-69, 92], + [-69, 92], + [-67, 90], + [-66, 89], + [-65, 88], + [-64, 87], + [-63, 86], + [-62, 85], + [-238, 331], + [-226, 317], + [-214, 305], + [-204, 294], + [-147, 214], + [-48, 70], + [-141, 207], + [-46, 68], + [-91, 135], + [-132, 198], + [-129, 193], + [-84, 127], + [-164, 249], + [-40, 61], + [-79, 121], + [-39, 60], + [-39, 60], + [-152, 235], + [-184, 286], + [-36, 56], + [-71, 111], + [-208, 327], + [-34, 54], + [-199, 315], + [-97, 154], + [-95, 151], + [-94, 150], + [-61, 98], + [-91, 146], + [-30, 48], + [-30, 48], + [-118, 190], + [-87, 140], + [-86, 138], + [-28, 45], + [-140, 226], + [-164, 264], + [-186, 300], + [-26, 42], + [-104, 167], + [-102, 164], + [-76, 122], + [-25, 40], + [-25, 40], + [-25, 40], + [-99, 158], + [-73, 117], + [-73, 116], + [-24, 38], + [-24, 38], + [-24, 38], + [-24, 38], + [-118, 187], + [-47, 74], + [-70, 110], + [-23, 36], + [-115, 180], + [-114, 177], + [-90, 139], + [-89, 137], + [-111, 169], + [-109, 165], + [-87, 131], + [-65, 97], + [-43, 64], + [-64, 95], + [-64, 94], + [-106, 155], + [-85, 122], + [-125, 180], + [-42, 59], + [-83, 117], + [-62, 86], + [-62, 86], + [-21, 29], + [-41, 56], + [-41, 56], + [-41, 56], + [-41, 55], + [-41, 55], + [-41, 55], + [-102, 135], + [-61, 79], + [-61, 79], + [-41, 53], + [-81, 103], + [-81, 102], + [-81, 100], + [-81, 99], + [-81, 97], + [-81, 96], + [-81, 95], + [-81, 93], + [-61, 69], + [-61, 68], + [-20, 22], + [-61, 67], + [-61, 67], + [-61, 65], + [-41, 43], + [-41, 43], + [-41, 43], + [-20, 21], + [-41, 42], + [-41, 42], + [-41, 41], + [-103, 102], + [-62, 60], + [-21, 20], + [-41, 39], + [-21, 20], + [-83, 77], + [-21, 19], + [-21, 19], + [-21, 19], + [-21, 19], + [-21, 19], + [-21, 19], + [-42, 37], + [-63, 55], + [-21, 18], + [-21, 18], + [-21, 18], + [-21, 18], + [-85, 71], + [-43, 35], + [-21, 17], + [-43, 34], + [-43, 34], + [-43, 34], + [-65, 50], + [-87, 65], + [-22, 16], + [-22, 16], + [-65, 47], + [-44, 31], + [-45, 31], + [-22, 15], + [-22, 15], + [-22, 15], + [-22, 15], + [-45, 30], + [-45, 29], + [-45, 29], + [-22, 14], + [-68, 42], + [-23, 14], + [-23, 14], + [-23, 14], + [-46, 27], + [-46, 27], + [-23, 13], + [-23, 13], + [-23, 13], + [-23, 13], + [-23, 13], + [-24, 13], + [-47, 25], + [-47, 25], + [-23, 12], + [-71, 36], + [-24, 12], + [-24, 12], + [-48, 23], + [-48, 23], + [-24, 11], + [-73, 33], + [-25, 11], + [-73, 32], + [-99, 40], + [-25, 10], + [-25, 10], + [-51, 20], + [-50, 19], + [-51, 18], + [-51, 18], + [-26, 9], + [-26, 9], + [-52, 17], + [-52, 17], + [-26, 8], + [-26, 8], + [-27, 8], + [-79, 23], + [-81, 22], + [-26, 7], + [-28, 7], + [-81, 20], + [-55, 13], + [-83, 18], + [-28, 6], + [-57, 11], + [-85, 16], + [-28, 5], + [-87, 14], + [-87, 13], + [-29, 4], + [-30, 4], + [-59, 7], + [-60, 7], + [-30, 3], + [-61, 6], + [-61, 5], + [-31, 2], + [-31, 2], + [-31, 2], + [-31, 2], + [-63, 4], + [-63, 2], + [-32, 1], + [-65, 2], + [-65, 1], + [-32, 0], + [-33, 0], + [-33, 0], + [-34, 0], + [-100, -2], + [-103, -4], + [-69, -4], + [-35, -2], + [-35, -2], + [-35, -2], + [-36, -3], + [-71, -6], + [-36, -3], + [-110, -11], + [-74, -9], + [-38, -5], + [-113, -15], + [-77, -11], + [-39, -6], + [-79, -13], + [-40, -7], + [-40, -7], + [-81, -15], + [-82, -16], + [-125, -27], + [-42, -9], + [-130, -30], + [-44, -11], + [-44, -11], + [-44, -11], + [-136, -36], + [-140, -39], + [-95, -28], + [-146, -45], + [-49, -16], + [-101, -33], + [-52, -17], + [-104, -36], + [-53, -19], + [-53, -19], + [-109, -40], + [-111, -42], + [-57, -22], + [-57, -22], + [-59, -23], + [-58, -24], + [-121, -50], + [-123, -52], + [-64, -27], + [-64, -28], + [-65, -29], + [-133, -60], + [-138, -64], + [-71, -34], + [-145, -69], + [-75, -37], + [-76, -38], + [-78, -39], + [-79, -40], + [-81, -42], + [-83, -43], + [-85, -45], + [-177, -95], + [-91, -50], + [-95, -52], + [-97, -54], + [-100, -57], + [-104, -59], + [-107, -62], + [-111, -65], + [-116, -69], + [-121, -72], + [-126, -77], + [-132, -81], + [-140, -87], + [-149, -94], + [-181, -115], + [-161, -104], + [-73, -48], + [-50, -33], + [-159, -105], + [-85, -57], + [-152, -102], + [-65, -44], + [-103, -70], + [-189, -130], + [-128, -89], + [-46, -32], + [-150, -105], + [-55, -39], + [-121, -86], + [-140, -100], + [-82, -59], + [-93, -67], + [-112, -81], + [-148, -108], + [-281, -206], + [-67, 804], + [902, 676], + [1933, 1340], + [1255, 766], + [1188, 626], + [1397, 580], + [1007, 288], + [891, 146], + [1123, 11], + [1515, -351], + [1003, -502], + [1091, -819], + [784, -771], + [1110, -1339], + [778, -1086], + [768, -1165], + [1218, -1957], + [1897, -3086], + [1438, -2219], + [1563, -2219], + [2178, -2726], + [2591, -2723], + [-98333, -1488] + ], + [ + [91906, 35610], + [184, -508], + [-258, -206], + [-197, -156], + [-138, -111], + [-112, -90], + [-98, -78], + [-166, -133], + [-143, -115], + [-126, -101], + [-59, -47], + [-56, -45], + [-105, -85], + [-99, -80], + [-92, -74], + [-45, -36], + [-167, -134], + [-78, -63], + [-251, -202], + [-163, -131], + [-62, -50], + [-119, -96], + [-86, -69], + [-137, -110], + [-79, -64], + [-188, -151], + [-177, -142], + [-167, -134], + [-160, -127], + [-152, -121], + [-146, -117], + [-140, -111], + [-136, -108], + [-131, -103], + [-251, -198], + [-120, -94], + [-117, -92], + [-114, -89], + [-111, -87], + [-109, -85], + [-212, -163], + [-102, -79], + [-200, -153], + [-192, -147], + [-186, -141], + [-91, -69], + [-90, -68], + [-176, -131], + [-86, -64], + [-85, -63], + [-84, -62], + [-245, -181], + [-80, -58], + [-80, -58], + [-308, -222], + [-224, -159], + [-217, -153], + [-72, -50], + [-141, -98], + [-138, -95], + [-69, -47], + [-68, -46], + [-134, -91], + [-67, -45], + [-66, -44], + [-66, -44], + [-65, -43], + [-65, -43], + [-64, -42], + [-64, -42], + [-127, -83], + [-187, -120], + [-184, -117], + [-121, -76], + [-179, -111], + [-177, -108], + [-289, -173], + [-114, -67], + [-280, -162], + [-165, -94], + [-109, -61], + [-162, -89], + [-107, -58], + [-54, -29], + [-211, -112], + [-312, -161], + [-153, -77], + [-203, -100], + [-201, -96], + [-491, -225], + [-242, -105], + [-333, -139], + [-5183, -1182], + [-2944, 207], + [-3088, 965], + [-3091, 1772], + [-140, 99], + [-35, 25], + [-245, 178], + [-140, 104], + [-105, 79], + [-141, 107], + [-248, 192], + [-71, 56], + [-107, 85], + [-251, 202], + [-252, 208], + [-36, 30], + [-73, 61], + [-109, 92], + [-73, 62], + [-147, 126], + [-148, 128], + [-111, 97], + [-75, 66], + [-150, 133], + [-113, 101], + [-152, 137], + [-192, 175], + [-155, 142], + [-39, 36], + [-157, 146], + [-79, 74], + [-80, 75], + [-160, 151], + [-40, 38], + [-41, 39], + [-40, 38], + [-164, 157], + [-124, 119], + [-167, 162], + [-170, 165], + [-43, 42], + [-43, 42], + [-43, 42], + [-218, 215], + [-268, 265], + [-137, 136], + [-46, 46], + [-140, 139], + [-47, 47], + [-47, 47], + [-47, 47], + [-48, 48], + [-48, 48], + [-145, 146], + [-148, 149], + [-151, 152], + [-102, 103], + [-208, 210], + [-160, 161], + [-164, 166], + [-111, 112], + [-113, 114], + [-115, 117], + [-118, 118], + [-179, 181], + [-185, 186], + [-63, 63], + [-128, 129], + [-65, 65], + [-66, 66], + [-66, 66], + [-68, 68], + [-68, 68], + [-69, 69], + [-141, 140], + [-145, 144], + [-73, 73], + [-75, 74], + [-154, 152], + [-159, 156], + [-81, 80], + [-83, 81], + [-84, 82], + [-86, 84], + [-177, 172], + [-185, 178], + [-96, 93], + [-98, 94], + [-101, 96], + [-103, 98], + [-106, 101], + [-110, 104], + [-113, 106], + [-117, 110], + [-121, 113], + [-126, 117], + [-131, 121], + [-137, 126], + [-144, 132], + [-151, 138], + [-161, 145], + [-171, 154], + [-72, 64], + [-100, 89], + [-26, 23], + [-52, 46], + [-53, 47], + [-27, 24], + [-84, 74], + [-118, 103], + [-93, 81], + [-64, 56], + [-67, 58], + [-106, 91], + [-152, 130], + [-41, 35], + [-84, 71], + [-45, 38], + [-45, 38], + [-97, 82], + [-51, 43], + [-109, 91], + [-121, 101], + [-67, 55], + [-149, 123], + [-185, 150], + [-118, 95], + [-153, 124], + [-323, 256], + [166, 506], + [1881, -1504], + [1974, -1726], + [1208, -1123], + [1674, -1616], + [2267, -2226], + [1166, -1119], + [1585, -1440], + [5203, -3554], + [202, -93], + [168, -75], + [101, -44], + [101, -43], + [203, -84], + [169, -67], + [170, -65], + [238, -87], + [68, -24], + [137, -47], + [102, -34], + [206, -66], + [138, -42], + [241, -70], + [69, -19], + [104, -28], + [139, -36], + [104, -26], + [70, -17], + [245, -56], + [140, -30], + [176, -35], + [177, -33], + [213, -36], + [142, -22], + [250, -35], + [180, -22], + [108, -12], + [109, -11], + [109, -10], + [182, -15], + [146, -10], + [220, -12], + [184, -7], + [111, -3], + [112, -2], + [111, -1], + [150, 0], + [150, 2], + [226, 6], + [152, 6], + [152, 8], + [153, 10], + [231, 18], + [77, 7], + [272, 28], + [78, 9], + [236, 30], + [79, 11], + [237, 36], + [80, 13], + [281, 49], + [324, 64], + [534, 122], + [209, 53], + [2473, 855], + [2483, 1242], + [1542, 936], + [1769, 1199], + [2418, 1786], + [1145, 881], + [1691, 1318], + [1632, 1267] + ], + [ + [93340, 94327], + [-8785, 3202], + [14139, 786], + [-92190, -921], + [3618, -2321], + [268, -2212], + [-378, -1550], + [-443, -1114], + [-914, -1708], + [-1277, -1771], + [-899, -974], + [-806, -725], + [-1510, -1049], + [-1704, -789], + [-1417, -398], + [-898, -148], + [98550, 3807], + [106, 16], + [241, 43], + [356, 105], + [56, 17], + [52, 16], + [50, 16], + [47, 15], + [87, 29], + [41, 14], + [78, 28], + [37, 14], + [71, 27], + [34, 13], + [-99937, 26], + [31, 13], + [60, 25], + [58, 25], + [82, 37], + [26, 12], + [26, 12], + [99, 47], + [24, 12], + [46, 23], + [45, 23], + [44, 23], + [63, 34], + [101, 56], + [19, 11], + [19, 11], + [154, 93], + [125, 81], + [117, 79], + [110, 79], + [102, 78], + [98, 77], + [92, 77], + [87, 76], + [83, 75], + [79, 76], + [76, 75], + [72, 75], + [69, 75], + [66, 74], + [64, 74], + [60, 75], + [58, 74], + [55, 74], + [54, 74], + [51, 74], + [48, 74], + [47, 74], + [44, 74], + [43, 74], + [40, 74], + [39, 74], + [36, 74], + [35, 74], + [33, 75], + [31, 74], + [29, 74], + [27, 75], + [26, 75], + [23, 75], + [22, 75], + [20, 75], + [18, 75], + [17, 76], + [14, 75], + [13, 76], + [10, 76], + [9, 76], + [7, 77], + [5, 76], + [2, 77], + [1, 77], + [-2, 77], + [-3, 77], + [-6, 78], + [-9, 78], + [-10, 78], + [-13, 78], + [-16, 79], + [-18, 79], + [-21, 79], + [-24, 79], + [-27, 79], + [-29, 80], + [-33, 80], + [-36, 80], + [-40, 81], + [-43, 81], + [-46, 81], + [-51, 81], + [-55, 81], + [-59, 82], + [-64, 82], + [-68, 82], + [-74, 82], + [-79, 83], + [-85, 82], + [-90, 83], + [-98, 83], + [-104, 83], + [-111, 83], + [-119, 83], + [-127, 83], + [-137, 83], + [-146, 83], + [-157, 83], + [-168, 82], + [-181, 82], + [-194, 82], + [-210, 80], + [-225, 80], + [99757, 79], + [-264, 77], + [-288, 76], + [-314, 74], + [-344, 70], + [-148, 28], + [-50, 9], + [-209, 35], + [-109, 17], + [-170, 25], + [-58, 8], + [-120, 16], + [-186, 23], + [-264, 28], + [-69, 7], + [-71, 7], + [-71, 6], + [-302, 24], + [-244, 15], + [-172, 9], + [-90, 4], + [-285, 9], + [-205, 4], + [-108, 1], + [-228, 0], + [-122, -1], + [-128, -2], + [-135, -3], + [-143, -4], + [-153, -6], + [-165, -8], + [-687, -42], + [-604, -81] + ], + [ + [75725, 69848], + [-34, -515], + [-2214, -106], + [-1695, -209], + [-2764, -615], + [-2748, -1019], + [-414, -195], + [-225, -111], + [-270, -138], + [-158, -83], + [-204, -110], + [-343, -192], + [-280, -164], + [-181, -109], + [-177, -109], + [-86, -54], + [-254, -163], + [-164, -108], + [-317, -215], + [-39, -27], + [-228, -161], + [-111, -80], + [-74, -54], + [-180, -133], + [-176, -133], + [-104, -80], + [-136, -106], + [-167, -132], + [-323, -264], + [-188, -158], + [-153, -131], + [-210, -183], + [-262, -235], + [-57, -52], + [-85, -78], + [-140, -130], + [-192, -181], + [-241, -232], + [-105, -103], + [-181, -180], + [-228, -231], + [-320, -332], + [-72, -76], + [-96, -102], + [-166, -178], + [-2188, -2525], + [-1880, -2271], + [-1217, -1396], + [-1529, -1573], + [-978, -875], + [-1218, -941], + [-926, -608], + [-1135, -629], + [-1484, -646], + [-2058, -616], + [-1767, -311], + [-1238, -116], + [-1757, -43], + [44, 499], + [285, 6], + [278, 7], + [102, 4], + [170, 7], + [144, 7], + [126, 7], + [114, 7], + [104, 7], + [142, 10], + [88, 7], + [123, 10], + [78, 7], + [109, 10], + [104, 10], + [98, 10], + [93, 10], + [90, 10], + [113, 13], + [82, 10], + [104, 13], + [75, 10], + [202, 28], + [165, 25], + [156, 24], + [148, 25], + [140, 24], + [135, 25], + [128, 24], + [124, 24], + [119, 24], + [226, 49], + [108, 24], + [105, 24], + [101, 24], + [100, 25], + [96, 24], + [94, 24], + [92, 24], + [90, 24], + [87, 24], + [86, 24], + [85, 24], + [163, 49], + [79, 24], + [78, 24], + [77, 24], + [75, 24], + [74, 24], + [72, 24], + [72, 24], + [70, 24], + [70, 24], + [68, 24], + [68, 24], + [66, 24], + [65, 24], + [65, 24], + [64, 24], + [125, 47], + [61, 24], + [60, 24], + [60, 24], + [59, 24], + [59, 24], + [57, 24], + [57, 24], + [57, 24], + [56, 24], + [55, 24], + [215, 95], + [52, 24], + [52, 24], + [52, 24], + [51, 24], + [50, 24], + [50, 24], + [147, 71], + [48, 24], + [48, 24], + [48, 24], + [47, 24], + [184, 95], + [45, 24], + [89, 48], + [44, 24], + [44, 24], + [86, 47], + [43, 24], + [42, 24], + [42, 24], + [42, 24], + [42, 24], + [123, 71], + [40, 24], + [40, 24], + [40, 24], + [40, 24], + [78, 47], + [39, 24], + [39, 24], + [189, 119], + [37, 24], + [37, 24], + [37, 24], + [37, 24], + [108, 71], + [36, 24], + [36, 24], + [140, 95], + [35, 24], + [204, 143], + [33, 24], + [197, 143], + [191, 143], + [32, 24], + [31, 24], + [31, 24], + [154, 119], + [61, 48], + [149, 119], + [59, 48], + [174, 143], + [57, 48], + [196, 167], + [28, 24], + [55, 48], + [55, 48], + [135, 119], + [80, 72], + [53, 48], + [182, 167], + [26, 24], + [26, 24], + [51, 48], + [51, 48], + [76, 72], + [25, 24], + [25, 24], + [25, 24], + [25, 24], + [25, 24], + [74, 72], + [122, 119], + [49, 48], + [24, 24], + [24, 24], + [24, 24], + [24, 24], + [24, 24], + [24, 24], + [24, 24], + [71, 72], + [47, 48], + [47, 48], + [140, 145], + [23, 24], + [23, 24], + [23, 24], + [23, 24], + [23, 24], + [114, 120], + [45, 48], + [45, 48], + [90, 97], + [89, 96], + [22, 24], + [22, 24], + [22, 24], + [22, 24], + [154, 169], + [87, 97], + [43, 48], + [108, 121], + [107, 121], + [85, 97], + [21, 24], + [21, 24], + [85, 97], + [21, 24], + [21, 24], + [63, 73], + [63, 73], + [104, 121], + [83, 97], + [104, 122], + [144, 170], + [103, 122], + [61, 73], + [41, 49], + [41, 49], + [41, 49], + [61, 73], + [41, 49], + [61, 73], + [61, 73], + [122, 147], + [81, 98], + [81, 98], + [122, 147], + [142, 172], + [101, 123], + [61, 74], + [61, 74], + [61, 74], + [61, 74], + [143, 173], + [143, 173], + [82, 99], + [103, 124], + [124, 149], + [208, 249], + [273, 324], + [191, 225], + [2327, 2540], + [3086, 2623], + [5879, 2857], + [287, 83], + [303, 83], + [323, 83], + [227, 55], + [363, 83], + [259, 55], + [275, 55], + [294, 55], + [317, 55], + [345, 55], + [185, 27], + [434, 58], + [148, 18], + [156, 18], + [165, 18], + [249, 25], + [75, 7], + [78, 7], + [207, 18], + [88, 7], + [92, 7], + [96, 7], + [261, 17], + [116, 7], + [191, 10], + [217, 10], + [80, 3], + [280, 10], + [112, 3], + [281, 5], + [201, 3], + [460, 0] + ], + [ + [10310, 53295], + [-48, -279], + [-1696, 539], + [-1970, 827], + [-2073, 1146], + [-1578, 1090], + [-1479, 1211], + [-1251, 1172], + [98964, 1069], + [-952, 1047], + [-1684, 1948], + [-1512, 1753], + [-2938, 3019], + [-227, 201], + [-128, 111], + [-259, 220], + [-238, 196], + [-407, 322], + [-111, 85], + [-282, 210], + [-260, 187], + [-417, 286], + [-371, 240], + [-190, 118], + [-64, 39], + [-228, 136], + [-166, 96], + [-101, 57], + [-34, 19], + [-171, 94], + [-104, 56], + [-247, 129], + [-144, 73], + [-146, 72], + [-37, 18], + [-262, 124], + [-76, 35], + [-511, 222], + [-287, 116], + [-41, 16], + [-384, 144], + [-265, 93], + [-4086, 850], + [-3618, 6], + [-3103, -424], + [-2992, -709], + [4382, 1328], + [175, 27], + [169, 25], + [163, 23], + [156, 21], + [152, 20], + [291, 36], + [274, 30], + [261, 26], + [126, 12], + [123, 11], + [121, 10], + [118, 9], + [116, 8], + [225, 15], + [217, 12], + [210, 10], + [102, 4], + [200, 7], + [290, 6], + [277, 3], + [90, 0], + [177, -1], + [87, -1], + [170, -3], + [84, -2], + [165, -5], + [81, -3], + [80, -3], + [235, -11], + [153, -9], + [76, -5], + [74, -5], + [148, -11], + [286, -24], + [345, -35], + [6599, -2159], + [2886, -2091], + [1667, -1585], + [348, -363], + [275, -294], + [250, -272], + [158, -174], + [225, -251], + [157, -177], + [112, -127], + [134, -153], + [201, -231], + [134, -155], + [246, -286], + [179, -210], + [135, -158], + [45, -53], + [45, -53], + [45, -53], + [68, -80], + [45, -53], + [136, -161], + [23, -27], + [68, -80], + [183, -217], + [115, -136], + [139, -164], + [187, -220], + [23, -27], + [118, -139], + [71, -83], + [143, -168], + [24, -28], + [24, -28], + [73, -85], + [24, -28], + [24, -28], + [24, -28], + [49, -57], + [73, -85], + [74, -86], + [124, -143], + [75, -86], + [100, -115], + [51, -58], + [51, -58], + [128, -146], + [104, -117], + [78, -88], + [132, -148], + [80, -89], + [27, -30], + [108, -119], + [82, -90], + [83, -91], + [111, -121], + [113, -122], + [57, -61], + [115, -123], + [117, -123], + [89, -94], + [-99882, -125], + [30, -31], + [31, -32], + [30, -31], + [31, -32], + [93, -95], + [93, -95], + [95, -96], + [32, -32], + [32, -32], + [33, -33], + [32, -32], + [65, -65], + [66, -65], + [66, -65], + [34, -33], + [67, -65], + [34, -33], + [34, -33], + [104, -100], + [105, -100], + [35, -33], + [36, -34], + [108, -101], + [73, -68], + [37, -34], + [37, -34], + [75, -69], + [152, -138], + [156, -139], + [80, -71], + [40, -35], + [82, -71], + [82, -71], + [42, -36], + [42, -36], + [42, -36], + [129, -109], + [132, -110], + [45, -37], + [45, -37], + [45, -37], + [46, -37], + [93, -75], + [47, -38], + [47, -38], + [48, -38], + [48, -38], + [49, -38], + [99, -77], + [50, -39], + [50, -39], + [155, -118], + [160, -119], + [110, -81], + [56, -41], + [113, -82], + [58, -41], + [118, -83], + [121, -85], + [61, -42], + [63, -43], + [63, -43], + [129, -87], + [66, -44], + [68, -45], + [137, -89], + [71, -46], + [71, -46], + [73, -46], + [227, -141], + [79, -48], + [80, -48], + [165, -99], + [173, -101], + [90, -51], + [92, -52], + [94, -53], + [97, -54], + [202, -110], + [106, -56], + [110, -58], + [113, -58], + [118, -60], + [122, -62], + [128, -63], + [134, -65], + [140, -66], + [148, -70], + [157, -71], + [168, -76], + [71, -31], + [48, -21], + [74, -32], + [26, -11], + [132, -56], + [83, -35], + [87, -36], + [91, -37], + [162, -65], + [69, -27], + [110, -43], + [118, -45], + [173, -65], + [96, -35], + [159, -57], + [59, -21], + [127, -44], + [148, -51], + [181, -60], + [112, -36], + [143, -46], + [233, -72], + [146, -43] + ], + [ + [2744, 25047], + [-164, -617], + [-352, 310], + [-162, 143], + [-123, 110], + [-103, 92], + [-91, 82], + [-81, 73], + [-144, 130], + [-126, 114], + [-58, 53], + [-55, 50], + [-53, 48], + [-192, 176], + [-169, 155], + [-78, 72], + [-38, 35], + [-37, 34], + [-172, 160], + [-65, 60], + [-210, 196], + [-111, 104], + [-79, 74], + [99875, 119], + [-72, 68], + [-93, 88], + [-186, 176], + [-154, 146], + [-144, 137], + [-138, 132], + [-130, 125], + [-125, 120], + [-120, 115], + [-115, 111], + [-111, 107], + [-211, 203], + [-101, 98], + [-97, 94], + [-95, 92], + [-92, 90], + [-90, 87], + [-88, 85], + [-169, 164], + [-82, 80], + [-80, 78], + [-78, 76], + [-77, 75], + [-75, 73], + [-74, 72], + [-214, 208], + [-136, 132], + [-67, 65], + [-65, 63], + [-128, 125], + [-63, 61], + [-183, 177], + [-59, 57], + [-116, 112], + [-57, 55], + [-112, 108], + [-55, 53], + [-162, 155], + [-52, 50], + [-52, 50], + [-203, 193], + [-49, 47], + [-49, 46], + [-144, 136], + [-140, 132], + [-46, 43], + [-46, 43], + [-45, 42], + [-89, 83], + [-44, 41], + [-130, 120], + [-127, 117], + [-83, 76], + [-122, 111], + [-80, 73], + [-40, 36], + [-156, 140], + [-152, 135], + [-75, 66], + [-147, 128], + [-72, 63], + [-36, 31], + [-71, 61], + [-35, 30], + [-35, 30], + [-104, 88], + [-69, 58], + [-101, 84], + [-67, 56], + [-33, 27], + [-33, 27], + [-33, 27], + [-33, 27], + [-65, 53], + [-32, 26], + [-96, 77], + [-95, 75], + [-63, 49], + [-123, 96], + [-31, 24], + [-121, 92], + [-90, 67], + [-89, 66], + [-30, 22], + [-88, 64], + [-144, 103], + [-57, 40], + [-85, 59], + [-28, 19], + [-112, 76], + [-28, 19], + [-165, 108], + [-28, 18], + [-27, 17], + [-27, 17], + [-27, 17], + [-27, 17], + [-27, 17], + [-27, 17], + [-27, 17], + [-107, 65], + [-79, 47], + [-53, 31], + [-26, 15], + [-26, 15], + [-26, 15], + [-26, 15], + [-26, 15], + [-52, 29], + [-129, 70], + [-26, 14], + [-51, 27], + [-51, 26], + [-76, 39], + [-26, 13], + [-50, 25], + [-25, 12], + [-126, 60], + [-25, 12], + [-50, 23], + [-49, 22], + [-25, 11], + [-25, 11], + [-25, 11], + [-25, 11], + [-49, 21], + [-49, 20], + [-49, 20], + [-74, 30], + [-49, 19], + [-24, 9], + [-49, 18], + [-97, 36], + [-73, 25], + [-121, 40], + [-97, 30], + [-24, 7], + [-24, 7], + [-24, 7], + [-24, 7], + [-24, 7], + [-24, 7], + [-48, 13], + [-24, 6], + [-24, 6], + [-24, 6], + [-24, 6], + [-24, 6], + [-24, 6], + [-24, 6], + [-48, 11], + [-48, 11], + [-24, 5], + [-24, 5], + [-24, 5], + [-24, 5], + [-24, 5], + [-48, 9], + [-72, 13], + [-71, 12], + [-24, 4], + [-48, 7], + [-48, 7], + [-24, 3], + [-24, 3], + [-24, 3], + [-24, 3], + [-24, 3], + [-24, 3], + [-48, 5], + [-72, 7], + [-24, 2], + [-49, 4], + [-72, 5], + [-72, 4], + [-49, 2], + [-24, 1], + [-73, 2], + [-48, 1], + [-25, 0], + [-24, 0], + [-24, 0], + [-25, 0], + [-24, 0], + [-25, 0], + [-49, -1], + [-49, -2], + [-49, -2], + [-49, -2], + [-25, -1], + [-24, -1], + [-74, -5], + [-25, -2], + [-25, -2], + [-25, -2], + [-25, -2], + [-50, -5], + [-50, -5], + [-25, -3], + [-25, -3], + [-25, -3], + [-25, -3], + [-25, -3], + [-51, -7], + [-50, -7], + [-26, -4], + [-51, -8], + [-51, -8], + [-51, -9], + [-26, -5], + [-77, -15], + [-26, -5], + [-26, -5], + [-26, -5], + [-78, -17], + [-26, -6], + [-26, -6], + [-26, -6], + [-80, -19], + [-53, -14], + [-80, -21], + [-53, -14], + [-81, -23], + [-27, -8], + [-27, -8], + [-82, -25], + [-28, -9], + [-55, -18], + [-83, -27], + [-56, -19], + [-28, -10], + [-113, -40], + [-85, -32], + [-29, -11], + [-29, -11], + [-86, -34], + [-30, -12], + [-88, -36], + [-29, -12], + [-59, -25], + [-30, -13], + [-30, -13], + [-30, -13], + [-121, -54], + [-31, -14], + [-92, -43], + [-94, -45], + [-31, -15], + [-31, -15], + [-32, -16], + [-32, -16], + [-32, -16], + [-32, -16], + [-32, -16], + [-65, -33], + [-65, -34], + [-66, -35], + [-100, -54], + [-33, -18], + [-68, -37], + [-34, -19], + [-69, -39], + [-69, -39], + [-35, -20], + [-71, -41], + [-107, -63], + [-109, -66], + [-73, -44], + [-75, -46], + [-37, -23], + [-153, -96], + [-39, -25], + [-78, -50], + [-159, -104], + [-41, -27], + [-41, -27], + [-41, -27], + [-83, -56], + [-84, -57], + [-86, -59], + [-87, -60], + [-133, -93], + [-45, -32], + [-45, -32], + [-139, -99], + [-47, -34], + [-47, -34], + [-48, -35], + [-48, -35], + [-49, -36], + [-49, -36], + [-50, -37], + [-50, -37], + [-103, -76], + [-104, -79], + [-53, -40], + [-53, -40], + [-54, -41], + [-55, -42], + [-56, -43], + [-56, -43], + [-56, -43], + [-58, -45], + [-58, -45], + [-59, -46], + [-60, -47], + [-60, -47], + [-62, -49], + [-62, -49], + [-128, -101], + [-65, -52], + [-133, -106], + [-138, -111], + [-142, -116], + [-74, -60], + [-74, -60], + [-77, -63], + [-77, -63], + [-80, -66], + [-164, -135], + [-85, -70], + [-87, -73], + [-89, -74], + [-91, -76], + [-95, -79], + [-96, -81], + [-100, -84], + [-103, -86], + [-107, -90], + [-110, -93], + [-115, -97], + [-119, -101], + [-125, -106], + [-130, -111], + [-137, -117], + [-145, -124], + [-155, -132], + [-188, -160], + [-193, -165], + [-51, -44], + [-106, -91], + [-28, -24], + [-56, -48], + [-118, -101], + [-62, -53], + [-97, -83], + [-176, -151], + [-157, -135], + [-42, -36], + [-43, -37], + [-191, -163], + [-108, -92], + [-120, -103], + [-137, -117], + [-164, -140], + [-98, -84], + [-118, -101], + [-156, -133], + [-313, -265], + [-116, 616], + [1625, 1422], + [1745, 1534], + [1230, 1066], + [1647, 1370], + [1158, 893], + [1465, 995], + [987, 553], + [1503, 596], + [1041, 201], + [893, 15], + [1516, -323], + [777, -329], + [1102, -638], + [1475, -1106], + [1357, -1198], + [1662, -1598], + [1816, -1809], + [1159, -1150], + [-98646, -1320], + [1226, -1157], + [1259, -1147] + ], + [ + [16285, 39611], + [-2334, -2343], + [-105, -98], + [-76, -71], + [-98, -92], + [-47, -44], + [-47, -44], + [-168, -157], + [-158, -148], + [-150, -141], + [-143, -134], + [-137, -128], + [-131, -123], + [-127, -119], + [-122, -114], + [-233, -218], + [-111, -104], + [-108, -101], + [-106, -99], + [-103, -96], + [-100, -93], + [-99, -92], + [-96, -89], + [-186, -173], + [-91, -84], + [-176, -163], + [-86, -79], + [-167, -154], + [-82, -75], + [-160, -146], + [-155, -142], + [-152, -138], + [-74, -67], + [-73, -66], + [-73, -66], + [-71, -64], + [-71, -64], + [-140, -125], + [-136, -121], + [-200, -177], + [-130, -114], + [-190, -167], + [-63, -55], + [-61, -53], + [-123, -106], + [-239, -205], + [-59, -50], + [-173, -147], + [-57, -48], + [-57, -48], + [-168, -140], + [-165, -136], + [-215, -176], + [-53, -43], + [-158, -127], + [-257, -204], + [-251, -196], + [-99, -76], + [-98, -75], + [-289, -218], + [-142, -105], + [-279, -203], + [-46, -33], + [-91, -65], + [-136, -96], + [-224, -155], + [-4094, -2168], + [97315, -649], + [-2871, 42], + [-1744, 413], + [-2099, 899], + [-4332, 3214], + [-213, 199], + [-216, 206], + [-109, 105], + [-295, 287], + [-112, 111], + [-151, 150], + [-38, 38], + [-231, 233], + [-156, 159], + [-158, 162], + [-161, 166], + [-122, 127], + [-165, 172], + [-168, 177], + [-128, 135], + [-129, 137], + [-44, 47], + [-132, 141], + [-44, 47], + [-135, 145], + [-91, 98], + [-92, 99], + [-140, 151], + [-95, 103], + [-48, 52], + [-48, 52], + [-196, 213], + [-201, 219], + [-51, 56], + [-156, 170], + [-106, 116], + [-273, 298], + [-170, 186], + [-174, 191], + [-180, 196], + [-123, 135], + [-126, 138], + [-129, 140], + [-66, 72], + [-134, 146], + [-68, 74], + [-211, 229], + [-146, 158], + [-150, 162], + [-156, 168], + [-80, 86], + [-81, 87], + [-168, 180], + [-175, 186], + [-90, 96], + [-93, 98], + [-192, 203], + [-100, 105], + [-103, 108], + [-106, 111], + [-109, 114], + [-113, 118], + [-239, 247], + [-127, 130], + [-133, 136], + [-139, 142], + [-147, 148], + [-156, 157], + [-166, 167], + [-23, 23], + [-23, 23], + [-24, 24], + [-23, 23], + [-24, 24], + [-49, 49], + [-2319, 2412], + [924, -820], + [1268, -1183], + [1976, -1960], + [1578, -1647], + [2178, -2319], + [1866, -1935], + [1237, -1201], + [2837, -2347], + [317, -219], + [378, -248], + [63, -40], + [94, -59], + [63, -39], + [281, -170], + [125, -73], + [187, -106], + [156, -86], + [155, -83], + [63, -33], + [124, -64], + [93, -47], + [93, -46], + [124, -60], + [249, -116], + [62, -28], + [155, -68], + [249, -104], + [155, -62], + [125, -48], + [124, -46], + [94, -34], + [62, -22], + [218, -74], + [125, -40], + [32, -10], + [187, -57], + [94, -27], + [32, -9], + [94, -26], + [94, -25], + [125, -32], + [32, -8], + [94, -23], + [95, -22], + [31, -7], + [63, -14], + [32, -7], + [158, -33], + [222, -42], + [63, -11], + [95, -16], + [128, -20], + [95, -14], + [96, -13], + [160, -20], + [128, -14], + [224, -21], + [161, -12], + [130, -8], + [129, -6], + [260, -8], + [65, -1], + [228, 0], + [131, 2], + [164, 5], + [132, 6], + [232, 14], + [66, 5], + [266, 24], + [100, 11], + [168, 20], + [134, 18], + [169, 25], + [135, 22], + [204, 36], + [69, 13], + [102, 20], + [69, 14], + [103, 22], + [103, 23], + [-99864, 32], + [139, 34], + [244, 64], + [316, 91], + [284, 89], + [214, 72], + [180, 63], + [400, 151], + [73, 29], + [147, 60], + [148, 62], + [112, 48], + [4594, 2795], + [2809, 2312], + [2271, 2032], + [1203, 1095], + [1788, 1616], + [1229, 1087] + ], + [ + [71463, 14154], + [2074, -602], + [-123, -327], + [-54, -161], + [-42, -129], + [-35, -111], + [-29, -99], + [-26, -90], + [-23, -83], + [-20, -77], + [-19, -73], + [-17, -70], + [-16, -66], + [-15, -63], + [-14, -61], + [-13, -58], + [-23, -112], + [-20, -105], + [-18, -100], + [-16, -95], + [-14, -91], + [-18, -130], + [-15, -124], + [-9, -79], + [-7, -77], + [-3, -37], + [-9, -110], + [-10, -174], + [-5, -165], + [-1, -63], + [0, -94], + [1, -60], + [8, -219], + [15, -207], + [22, -196], + [27, -188], + [33, -179], + [38, -173], + [43, -166], + [48, -161], + [53, -155], + [56, -151], + [61, -146], + [66, -143], + [69, -138], + [74, -136], + [78, -131], + [82, -129], + [86, -125], + [91, -123], + [94, -120], + [99, -117], + [103, -115], + [107, -112], + [111, -110], + [116, -107], + [120, -106], + [124, -103], + [129, -100], + [133, -99], + [138, -97], + [142, -95], + [147, -92], + [152, -91], + [156, -89], + [162, -87], + [166, -84], + [171, -83], + [176, -81], + [181, -79], + [186, -77], + [191, -76], + [197, -73], + [201, -71], + [207, -70], + [429, -133], + [449, -125], + [471, -117], + [490, -109], + [511, -101], + [262, -47], + [267, -45], + [271, -43], + [276, -41], + [280, -39], + [284, -36], + [288, -34], + [291, -32], + [295, -30], + [298, -28], + [300, -25], + [303, -23], + [306, -21], + [307, -19], + [310, -16], + [310, -14], + [312, -12], + [625, -17], + [312, -5], + [313, -3], + [623, 1], + [309, 4], + [308, 6], + [307, 8], + [304, 10], + [301, 12], + [299, 14], + [296, 16], + [868, 60], + [282, 24], + [552, 53], + [270, 29], + [526, 63], + [256, 34], + [498, 73], + [242, 39], + [237, 40], + [232, 41], + [227, 43], + [223, 44], + [217, 45], + [213, 47], + [208, 48], + [203, 49], + [198, 50], + [194, 51], + [189, 52], + [365, 108], + [175, 55], + [338, 114], + [163, 58], + [158, 59], + [305, 120], + [146, 61], + [416, 189], + [131, 64], + [128, 65], + [245, 132], + [118, 67], + [114, 68], + [111, 68], + [108, 69], + [105, 69], + [102, 70], + [99, 71], + [190, 142], + [90, 72], + [89, 73], + [85, 73], + [83, 73], + [81, 74], + [78, 75], + [76, 75], + [73, 75], + [72, 76], + [69, 76], + [67, 77], + [64, 77], + [63, 78], + [61, 78], + [115, 158], + [55, 79], + [53, 80], + [51, 80], + [50, 81], + [47, 81], + [91, 163], + [42, 83], + [41, 83], + [39, 83], + [38, 83], + [71, 169], + [-99968, 85], + [62, 171], + [56, 173], + [26, 88], + [25, 87], + [23, 88], + [22, 89], + [40, 179], + [18, 90], + [16, 90], + [16, 92], + [14, 91], + [24, 185], + [10, 94], + [9, 94], + [8, 94], + [7, 95], + [5, 96], + [4, 96], + [3, 98], + [1, 97], + [0, 99], + [-1, 99], + [-2, 100], + [-3, 101], + [-5, 101], + [-6, 102], + [-8, 104], + [-9, 104], + [-10, 105], + [-11, 106], + [-13, 107], + [-14, 108], + [-16, 109], + [-17, 110], + [-19, 111], + [-20, 113], + [-22, 114], + [-24, 115], + [-25, 117], + [-27, 118], + [-29, 120], + [-31, 121], + [-33, 124], + [-35, 125], + [99965, 127], + [-39, 130], + [-42, 132], + [-45, 134], + [-47, 137], + [-50, 140], + [-54, 144], + [-57, 147], + [-60, 151], + [-66, 156], + [-69, 161], + [-76, 166], + [-81, 174], + [-88, 180], + [-97, 190], + [-27, 53], + [-57, 107], + [-15, 28], + [-15, 28], + [-31, 56], + [-64, 115], + [-17, 30], + [-17, 30], + [-17, 30], + [-18, 31], + [-18, 31], + [-18, 31], + [-57, 97], + [-20, 33], + [-20, 33], + [-63, 104], + [-22, 36], + [-46, 73], + [-24, 38], + [-24, 38], + [-78, 120], + [-57, 86], + [-29, 44], + [-31, 46], + [-32, 47], + [-34, 49], + [-35, 50], + [-37, 53], + [-39, 55], + [-41, 58], + [-45, 61], + [-48, 65], + [-52, 71], + [-58, 77], + [-66, 86], + [-78, 100], + [-98, 122], + [-110, 138], + [-100, 113], + [1305, 1159], + [-98584, -1695], + [1102, -1703], + [613, -1174], + [575, -1349], + [633, -2085], + [273, -1756], + [-265, -2780], + [-1515, -2249], + [98045, -1137], + [-6915, -1382], + [-11405, -98], + [-5491, 687], + [-4151, 1606], + [-1191, 1222], + [-683, 1982], + [51, 1776], + [703, 2543], + [900, 1917] + ], + [ + [68508, 48596], + [-1355, 623], + [-167, 77], + [-113, 51], + [-173, 77], + [-64, 28], + [-32, 14], + [-30, 13], + [-60, 26], + [-30, 13], + [-28, 12], + [-57, 24], + [-81, 34], + [-79, 33], + [-75, 31], + [-49, 20], + [-72, 29], + [-136, 54], + [-181, 69], + [-149, 56], + [-141, 52], + [-134, 48], + [-250, 86], + [-231, 75], + [-109, 34], + [-106, 32], + [-202, 59], + [-97, 27], + [-94, 26], + [-92, 24], + [-89, 23], + [-87, 22], + [-86, 21], + [-83, 20], + [-162, 36], + [-78, 17], + [-77, 16], + [-76, 15], + [-147, 28], + [-71, 13], + [-140, 24], + [-68, 11], + [-133, 20], + [-65, 9], + [-128, 17], + [-184, 21], + [-60, 6], + [-118, 11], + [-114, 9], + [-57, 4], + [-110, 7], + [-109, 5], + [-106, 4], + [-205, 4], + [-100, 0], + [-49, -1], + [-97, -2], + [-95, -2], + [-47, -2], + [-46, -2], + [-92, -5], + [-90, -6], + [-88, -7], + [-88, -8], + [-43, -4], + [-85, -9], + [-84, -10], + [-41, -5], + [-82, -11], + [-41, -6], + [-40, -6], + [-80, -13], + [-156, -28], + [-38, -7], + [-76, -15], + [-75, -16], + [-37, -8], + [-146, -34], + [-36, -9], + [-106, -28], + [-70, -19], + [-35, -10], + [-69, -20], + [-34, -10], + [-67, -21], + [-34, -11], + [-165, -55], + [-64, -23], + [-128, -48], + [-93, -36], + [-62, -25], + [-31, -13], + [-61, -26], + [-90, -39], + [-59, -27], + [-88, -41], + [-30, -14], + [-115, -57], + [-28, -14], + [-85, -44], + [-28, -15], + [-83, -45], + [-27, -15], + [-82, -46], + [-81, -47], + [-53, -32], + [-53, -32], + [-26, -16], + [-26, -16], + [-52, -33], + [-52, -33], + [-26, -17], + [-51, -34], + [-76, -51], + [-25, -17], + [-25, -17], + [-25, -17], + [-49, -35], + [-74, -53], + [-49, -36], + [-24, -18], + [-24, -18], + [-24, -18], + [-24, -18], + [-72, -55], + [-47, -37], + [-70, -56], + [-47, -38], + [-23, -19], + [-23, -19], + [-23, -19], + [-46, -39], + [-68, -58], + [-45, -39], + [-45, -40], + [-22, -20], + [-22, -20], + [-22, -20], + [-22, -20], + [-22, -20], + [-22, -20], + [-22, -20], + [-22, -20], + [-44, -41], + [-43, -41], + [-86, -83], + [-85, -84], + [-21, -21], + [-63, -64], + [-83, -86], + [-82, -87], + [-41, -44], + [-61, -66], + [-20, -22], + [-60, -67], + [-40, -45], + [-60, -68], + [-20, -23], + [-59, -69], + [-59, -69], + [-58, -69], + [-39, -47], + [-19, -23], + [-77, -95], + [-38, -47], + [-19, -24], + [-19, -24], + [-19, -24], + [-19, -24], + [-19, -24], + [-75, -97], + [-56, -73], + [-37, -49], + [-74, -99], + [-37, -50], + [-55, -75], + [-91, -126], + [-18, -25], + [-36, -51], + [-54, -77], + [-18, -26], + [-18, -26], + [-18, -26], + [-18, -26], + [-35, -51], + [-54, -79], + [-35, -52], + [-53, -79], + [-18, -27], + [-88, -133], + [-35, -54], + [-87, -135], + [-52, -82], + [-52, -82], + [-69, -110], + [-103, -168], + [-17, -28], + [-17, -28], + [-17, -28], + [-17, -28], + [-17, -28], + [-34, -57], + [-34, -57], + [-34, -57], + [-51, -86], + [-17, -29], + [-17, -29], + [-17, -29], + [-17, -29], + [-17, -29], + [-101, -175], + [-34, -59], + [-84, -148], + [-17, -30], + [-84, -150], + [-50, -90], + [-101, -183], + [-67, -123], + [-67, -124], + [-67, -124], + [-101, -189], + [-84, -159], + [-84, -160], + [-118, -227], + [-68, -131], + [-17, -33], + [-17, -33], + [-17, -33], + [-17, -33], + [-17, -33], + [-51, -100], + [-34, -67], + [-120, -236], + [-86, -170], + [-156, -311], + [-35, -70], + [-35, -70], + [-35, -70], + [-88, -177], + [-71, -143], + [-125, -252], + [-145, -293], + [-73, -148], + [-37, -75], + [-74, -150], + [-37, -75], + [-94, -190], + [-133, -269], + [-135, -273], + [-98, -198], + [-79, -159], + [-121, -242], + [-164, -328], + [-126, -250], + [-85, -168], + [-174, -342], + [-22, -43], + [-157, -305], + [-161, -310], + [-94, -180], + [-393, -739], + [-4284, -6595], + [-472, -571], + [-296, -344], + [-319, -360], + [-258, -282], + [-472, -497], + [-425, -429], + [-232, -226], + [-249, -237], + [-132, -123], + [-137, -126], + [-448, -401], + [-338, -291], + [-185, -155], + [-197, -162], + [-242, -194], + [-122, -96], + [-161, -125], + [-244, -186], + [-2925, -1819], + [1521, 945], + [2722, 2102], + [1959, 1909], + [7575, 11933], + [1138, 2316], + [897, 1745], + [825, 1469], + [926, 1440], + [806, 1054], + [948, 1004], + [1055, 841], + [1593, 800], + [1537, 340], + [1604, 1], + [1316, -214], + [1378, -392], + [1965, -798], + [1735, -890] + ], + [ + [11719, 74281], + [-204, -733], + [-2443, 879], + [-3089, 713], + [93952, -118], + [-150, -33], + [-147, -34], + [-145, -35], + [-142, -36], + [-140, -37], + [-206, -57], + [-135, -39], + [-132, -40], + [-131, -41], + [-318, -105], + [-185, -65], + [-182, -67], + [-353, -138], + [-114, -47], + [-57, -24], + [-112, -48], + [-55, -24], + [-110, -49], + [-323, -150], + [-52, -25], + [-104, -51], + [-52, -26], + [-153, -78], + [-200, -105], + [-195, -107], + [-48, -27], + [-143, -82], + [-187, -110], + [-138, -84], + [-135, -84], + [-221, -142], + [-342, -232], + [-124, -88], + [-82, -59], + [-162, -119], + [-80, -60], + [-196, -151], + [-154, -122], + [-113, -92], + [-75, -62], + [-111, -93], + [-73, -62], + [-72, -62], + [-249, -220], + [-173, -159], + [-136, -128], + [-67, -64], + [-33, -32], + [-165, -162], + [-97, -97], + [-64, -65], + [-127, -131], + [-63, -66], + [-124, -132], + [-122, -132], + [-30, -33], + [-150, -167], + [-88, -100], + [-260, -303], + [-113, -136], + [-28, -34], + [-193, -238], + [-162, -206], + [-159, -207], + [-130, -173], + [-103, -139], + [-51, -70], + [-76, -105], + [-125, -175], + [-123, -176], + [-121, -176], + [-144, -213], + [-118, -178], + [-70, -107], + [-207, -322], + [-68, -108], + [-45, -72], + [-112, -181], + [-44, -72], + [-176, -291], + [-65, -109], + [-86, -146], + [-128, -220], + [-252, -443], + [-2710, -5375], + [-1385, -2840], + [-872, -1675], + [-1357, -2346], + [-1276, -1891], + [-1103, -1400], + [-1136, -1242], + [-1815, -1618], + [-1029, -746], + [-1742, -1026], + [-1392, -636], + [-59, 794], + [248, 110], + [154, 70], + [119, 55], + [188, 90], + [80, 39], + [141, 71], + [63, 32], + [172, 88], + [102, 54], + [139, 75], + [44, 24], + [42, 23], + [120, 67], + [182, 104], + [101, 59], + [64, 38], + [62, 37], + [60, 36], + [114, 70], + [55, 34], + [80, 50], + [52, 33], + [124, 79], + [218, 144], + [159, 108], + [150, 103], + [141, 101], + [135, 97], + [128, 94], + [123, 92], + [117, 90], + [114, 88], + [109, 86], + [208, 168], + [99, 81], + [96, 81], + [93, 79], + [91, 78], + [89, 77], + [86, 76], + [84, 75], + [163, 148], + [79, 73], + [77, 72], + [149, 141], + [73, 70], + [141, 138], + [136, 136], + [131, 133], + [64, 66], + [126, 131], + [61, 65], + [60, 64], + [118, 127], + [58, 63], + [57, 63], + [56, 62], + [55, 62], + [55, 62], + [54, 61], + [54, 61], + [156, 181], + [51, 60], + [100, 119], + [49, 59], + [48, 58], + [96, 117], + [47, 58], + [138, 172], + [45, 57], + [45, 57], + [132, 169], + [43, 56], + [84, 111], + [84, 111], + [41, 55], + [41, 55], + [40, 54], + [80, 109], + [79, 108], + [77, 107], + [114, 160], + [37, 53], + [37, 53], + [37, 53], + [36, 52], + [108, 157], + [71, 104], + [104, 155], + [34, 51], + [68, 103], + [100, 152], + [33, 51], + [65, 101], + [32, 50], + [32, 50], + [127, 200], + [62, 99], + [31, 50], + [61, 99], + [150, 244], + [88, 146], + [58, 97], + [114, 193], + [56, 95], + [28, 48], + [28, 48], + [55, 95], + [82, 142], + [27, 47], + [80, 141], + [53, 94], + [130, 233], + [52, 93], + [127, 231], + [25, 46], + [25, 46], + [99, 183], + [24, 45], + [73, 137], + [24, 45], + [120, 226], + [71, 135], + [93, 179], + [46, 89], + [46, 89], + [46, 89], + [23, 45], + [45, 88], + [45, 88], + [112, 220], + [88, 175], + [22, 44], + [87, 174], + [129, 260], + [64, 130], + [147, 300], + [84, 171], + [124, 255], + [41, 85], + [102, 211], + [81, 169], + [100, 209], + [100, 209], + [100, 208], + [99, 207], + [59, 124], + [59, 124], + [39, 82], + [137, 287], + [39, 82], + [97, 204], + [97, 203], + [116, 243], + [58, 121], + [58, 121], + [58, 121], + [77, 160], + [116, 240], + [135, 279], + [58, 119], + [58, 119], + [136, 277], + [39, 79], + [2153, 3979], + [1663, 2435], + [1239, 1461], + [1973, 1801], + [1406, 961], + [2335, 1126], + [-94525, 934], + [480, -10], + [382, -17], + [132, -8], + [134, -9], + [277, -22], + [289, -27], + [301, -33], + [317, -40], + [508, -75], + [367, -62], + [192, -35], + [201, -39], + [208, -43], + [219, -47], + [229, -52], + [242, -57], + [329, -83], + [73, -19], + [150, -40], + [77, -21], + [40, -11], + [40, -11], + [164, -46], + [173, -50], + [91, -27], + [93, -28], + [196, -60], + [51, -16], + [273, -87], + [118, -39], + [400, -136], + [236, -84], + [179, -65], + [205, -76], + [248, -95], + [151, -59], + [185, -74], + [271, -110], + [364, -153] + ], + [ + [93726, 81349], + [-3371, 6160], + [2133, 130], + [1222, -388], + [1296, -967], + [573, -899], + [240, -852], + [-90, -1285], + [-358, -776], + [-847, -808], + [-798, -315] + ], + [ + [21871, 77528], + [-874, -1939], + [-900, 420], + [-980, 651], + [-771, 693], + [-766, 898], + [-499, 738], + [-653, 1237], + [-558, 1482], + [-505, 2408], + [-81, 1624], + [298, 2283], + [1105, 2390], + [2931, 2358], + [2757, 946], + [5663, 578], + [5559, -719], + [2594, -1134], + [-3196, -1399], + [-173, 91], + [-234, 103], + [-208, 87], + [-173, 67], + [-152, 56], + [-137, 48], + [-127, 42], + [-120, 38], + [-113, 35], + [-107, 31], + [-104, 29], + [-99, 27], + [-190, 49], + [-265, 62], + [-84, 18], + [-164, 34], + [-308, 58], + [-147, 25], + [-213, 33], + [-69, 10], + [-202, 27], + [-130, 16], + [-128, 15], + [-125, 13], + [-123, 12], + [-238, 20], + [-230, 16], + [-112, 7], + [-165, 8], + [-446, 14], + [-373, 2], + [-354, -6], + [-338, -12], + [-323, -19], + [-309, -23], + [-297, -29], + [-284, -32], + [-274, -36], + [-263, -40], + [-253, -42], + [-244, -46], + [-235, -47], + [-226, -51], + [-219, -52], + [-210, -54], + [-204, -56], + [-196, -57], + [-189, -59], + [-183, -61], + [-177, -61], + [-171, -63], + [-166, -64], + [-160, -65], + [-154, -66], + [-150, -67], + [-145, -67], + [-140, -68], + [-135, -69], + [-132, -70], + [-127, -70], + [-123, -71], + [-119, -71], + [-116, -71], + [-112, -72], + [-108, -73], + [-105, -73], + [-102, -73], + [-99, -73], + [-96, -74], + [-183, -148], + [-87, -75], + [-84, -75], + [-82, -75], + [-80, -75], + [-77, -75], + [-75, -75], + [-73, -76], + [-70, -75], + [-135, -152], + [-64, -76], + [-62, -76], + [-60, -76], + [-59, -76], + [-57, -77], + [-55, -76], + [-53, -76], + [-52, -76], + [-50, -77], + [-48, -76], + [-93, -153], + [-44, -77], + [-42, -76], + [-41, -76], + [-79, -153], + [-37, -77], + [-36, -76], + [-35, -77], + [-34, -76], + [-64, -153], + [-30, -76], + [-29, -77], + [-28, -76], + [-27, -76], + [-26, -77], + [-25, -76], + [-24, -76], + [-23, -76], + [-22, -77], + [-21, -76], + [-20, -76], + [-19, -76], + [-36, -152], + [-17, -77], + [-30, -152], + [-28, -152], + [-24, -152], + [-11, -76], + [-10, -76], + [-9, -75], + [-9, -76], + [-8, -76], + [-7, -76], + [-12, -152], + [-5, -76], + [-4, -76], + [-6, -151], + [-4, -152], + [-1, -76], + [0, -76], + [1, -76], + [1, -76], + [2, -76], + [3, -76], + [3, -76], + [4, -76], + [5, -76], + [5, -76], + [6, -76], + [7, -76], + [7, -76], + [8, -77], + [9, -76], + [9, -76], + [10, -77], + [22, -153], + [12, -76], + [13, -77], + [13, -77], + [29, -154], + [16, -77], + [16, -77], + [17, -77], + [18, -78], + [38, -155], + [20, -78], + [21, -78], + [22, -78], + [22, -78], + [48, -157], + [25, -79], + [26, -79], + [27, -79], + [56, -159], + [30, -80], + [31, -80], + [32, -81], + [32, -80], + [34, -82], + [35, -81], + [37, -82], + [37, -82], + [39, -82], + [40, -83], + [42, -84], + [43, -83], + [44, -85], + [46, -85], + [48, -85], + [50, -86], + [51, -87], + [54, -87], + [55, -88], + [58, -89], + [61, -90], + [63, -91], + [66, -92], + [69, -93], + [72, -95], + [77, -96], + [80, -98], + [85, -99], + [91, -102], + [97, -104], + [118, -122], + [29, -29], + [15, -15], + [46, -44], + [48, -46], + [16, -15], + [33, -31], + [34, -31], + [35, -31], + [18, -16], + [18, -16], + [18, -16], + [37, -33], + [59, -50], + [20, -17], + [41, -34], + [43, -35], + [115, -90], + [25, -19], + [50, -38], + [54, -39], + [28, -20], + [28, -20], + [30, -21], + [30, -21], + [32, -22], + [32, -22], + [34, -23], + [111, -72], + [84, -52], + [47, -28], + [49, -29], + [54, -31], + [59, -33], + [66, -36], + [77, -41], + [158, -85], + [168, -71] + ], + [ + [43924, 44095], + [-200, -960], + [-2416, 1488], + [-1933, 1567], + [-1137, 1110], + [-1380, 1565], + [-826, 1064], + [-1212, 1749], + [-1378, 2266], + [-1427, 2623], + [-1356, 2636], + [-1833, 3449], + [-101, 178], + [-20, 35], + [-142, 247], + [-61, 105], + [-82, 140], + [-20, 34], + [-62, 105], + [-144, 242], + [-146, 240], + [-168, 272], + [-127, 202], + [-107, 168], + [-173, 266], + [-109, 165], + [-44, 66], + [-200, 294], + [-22, 32], + [-90, 130], + [-159, 225], + [-115, 159], + [-163, 222], + [-47, 63], + [-71, 94], + [-240, 311], + [-73, 92], + [-148, 184], + [-125, 152], + [-75, 90], + [-76, 90], + [-77, 90], + [-129, 149], + [-105, 118], + [-79, 88], + [-53, 58], + [-81, 88], + [-162, 173], + [-138, 143], + [-56, 57], + [-112, 113], + [-28, 28], + [-85, 84], + [-144, 139], + [-176, 165], + [-119, 109], + [-90, 81], + [-91, 80], + [-92, 80], + [-62, 53], + [-125, 105], + [-63, 52], + [-160, 130], + [-195, 153], + [-99, 75], + [-134, 100], + [-34, 25], + [-136, 98], + [-69, 49], + [-210, 144], + [-143, 95], + [-108, 70], + [-221, 138], + [-112, 68], + [-114, 67], + [-38, 22], + [-77, 44], + [-39, 22], + [-117, 65], + [-79, 43], + [-39, 21], + [-201, 105], + [-41, 21], + [-164, 82], + [-168, 80], + [-170, 78], + [-262, 114], + [-89, 37], + [-44, 18], + [-227, 90], + [-93, 35], + [-234, 85], + [-96, 33], + [-243, 80], + [-99, 31], + [-202, 60], + [-102, 29], + [-208, 56], + [-106, 27], + [-161, 39], + [-109, 25], + [-221, 48], + [-401, 76], + [-59, 10], + [-118, 19], + [-242, 36], + [-186, 24], + [-126, 15], + [-127, 14], + [-261, 24], + [-338, 24], + [-279, 13], + [-216, 6], + [-221, 3], + [-150, 0], + [-232, -3], + [-78, -2], + [-743, -39], + [-2963, -503], + [-3472, -1210], + [-2281, -1103], + [-258, 944], + [117, 64], + [375, 202], + [191, 100], + [272, 141], + [210, 106], + [177, 88], + [297, 145], + [130, 62], + [235, 111], + [159, 73], + [196, 89], + [92, 41], + [88, 39], + [128, 56], + [81, 35], + [157, 67], + [112, 47], + [72, 30], + [274, 112], + [65, 26], + [264, 104], + [217, 82], + [403, 147], + [188, 66], + [180, 61], + [174, 57], + [167, 54], + [320, 99], + [301, 87], + [285, 79], + [272, 71], + [261, 64], + [609, 134], + [115, 23], + [550, 99], + [2754, 211], + [2577, -287], + [2762, -940], + [1076, -582], + [2129, -1594], + [1788, -1890], + [1980, -2795], + [2184, -3909], + [121, -234], + [162, -315], + [20, -39], + [142, -278], + [102, -200], + [82, -161], + [123, -242], + [62, -122], + [145, -286], + [273, -538], + [85, -167], + [64, -126], + [43, -84], + [43, -84], + [22, -43], + [130, -255], + [132, -257], + [156, -302], + [45, -87], + [68, -131], + [23, -44], + [161, -309], + [23, -44], + [23, -44], + [94, -179], + [71, -134], + [120, -226], + [24, -45], + [122, -228], + [74, -137], + [25, -46], + [25, -46], + [25, -46], + [76, -140], + [51, -93], + [51, -93], + [26, -47], + [26, -47], + [26, -47], + [26, -47], + [26, -47], + [79, -142], + [107, -191], + [27, -48], + [82, -145], + [111, -194], + [84, -146], + [86, -148], + [145, -248], + [59, -100], + [90, -151], + [122, -203], + [31, -51], + [31, -51], + [63, -103], + [63, -103], + [32, -52], + [130, -209], + [66, -105], + [67, -106], + [68, -107], + [103, -161], + [35, -54], + [35, -54], + [71, -109], + [72, -109], + [110, -166], + [37, -55], + [190, -281], + [39, -57], + [79, -114], + [80, -115], + [164, -233], + [42, -59], + [128, -178], + [132, -180], + [136, -183], + [92, -123], + [47, -62], + [144, -188], + [49, -63], + [100, -128], + [102, -130], + [52, -65], + [160, -198], + [110, -134], + [56, -68], + [57, -68], + [116, -138], + [59, -69], + [183, -213], + [127, -144], + [65, -73], + [66, -74], + [67, -74], + [138, -151], + [71, -77], + [72, -77], + [149, -157], + [155, -161], + [80, -82], + [82, -83], + [169, -169], + [88, -87], + [183, -177], + [96, -91], + [98, -92], + [101, -94], + [105, -96], + [108, -98], + [112, -100], + [117, -103], + [121, -105], + [127, -108], + [133, -112], + [139, -115], + [148, -120], + [156, -124], + [190, -149], + [120, -92], + [101, -76], + [52, -39], + [165, -121], + [88, -64], + [123, -88], + [65, -46], + [174, -121], + [114, -78], + [40, -27], + [216, -144], + [97, -63], + [283, -180], + [137, -85], + [162, -98], + [206, -121], + [137, -79], + [197, -112], + [205, -113] + ], + [ + [70089, 22257], + [-206, -669], + [-253, 176], + [-311, 223], + [-189, 138], + [-148, 110], + [-125, 94], + [-210, 161], + [-92, 71], + [-165, 129], + [-146, 116], + [-254, 206], + [-168, 138], + [-103, 86], + [-49, 41], + [-186, 158], + [-210, 181], + [-227, 200], + [-105, 94], + [-229, 207], + [-151, 139], + [-29, 27], + [-29, 27], + [-29, 27], + [-204, 192], + [-190, 183], + [-345, 339], + [-308, 312], + [-144, 148], + [-137, 143], + [-258, 274], + [-239, 259], + [-114, 126], + [-216, 242], + [-204, 232], + [-193, 224], + [-93, 109], + [-179, 213], + [-491, 600], + [-151, 189], + [-216, 276], + [-271, 353], + [-65, 86], + [-64, 85], + [-186, 250], + [-405, 557], + [-55, 77], + [-54, 76], + [-210, 299], + [-345, 502], + [-94, 139], + [-92, 137], + [-90, 135], + [-175, 266], + [-127, 195], + [-83, 128], + [-201, 314], + [-78, 123], + [-300, 480], + [-248, 404], + [-103, 169], + [-134, 222], + [-130, 218], + [-32, 54], + [-32, 54], + [-32, 54], + [-186, 316], + [-180, 309], + [-117, 202], + [-86, 149], + [-85, 148], + [-111, 194], + [-109, 192], + [-107, 189], + [-105, 186], + [-26, 46], + [-103, 183], + [-76, 136], + [-150, 268], + [-49, 88], + [-73, 131], + [-167, 301], + [-94, 169], + [-184, 332], + [-113, 204], + [-111, 200], + [-88, 159], + [-87, 157], + [-129, 231], + [-106, 191], + [-84, 150], + [-104, 186], + [-103, 183], + [-102, 180], + [-61, 108], + [-20, 35], + [-81, 142], + [-20, 35], + [-20, 35], + [-20, 35], + [-79, 138], + [-20, 35], + [-79, 137], + [-59, 102], + [-98, 168], + [-97, 165], + [-39, 66], + [-58, 98], + [-77, 129], + [-77, 129], + [-38, 63], + [-96, 158], + [-19, 31], + [-19, 31], + [-19, 31], + [-19, 31], + [-19, 31], + [-19, 31], + [-19, 31], + [-57, 92], + [-57, 91], + [-19, 30], + [-132, 209], + [-19, 30], + [-19, 30], + [-57, 88], + [-75, 116], + [-19, 29], + [-19, 29], + [-19, 29], + [-94, 143], + [-132, 196], + [-19, 28], + [-19, 28], + [-19, 28], + [-113, 164], + [-19, 27], + [-19, 27], + [-19, 27], + [-19, 27], + [-19, 27], + [-19, 27], + [-57, 80], + [-38, 53], + [-76, 105], + [-19, 26], + [-19, 26], + [-19, 26], + [-38, 51], + [-77, 103], + [-57, 76], + [-77, 100], + [-39, 50], + [-58, 74], + [-77, 98], + [-39, 48], + [-39, 48], + [-39, 48], + [-39, 48], + [-59, 71], + [-59, 70], + [-59, 69], + [-20, 23], + [-20, 23], + [-20, 23], + [-20, 23], + [-79, 91], + [-81, 89], + [-20, 22], + [-20, 22], + [-20, 22], + [-20, 22], + [-61, 66], + [-20, 21], + [-41, 43], + [-41, 43], + [-41, 43], + [-41, 42], + [-21, 21], + [-21, 21], + [-20, 20], + [-21, 21], + [-21, 21], + [-21, 21], + [-20, 20], + [-21, 21], + [-84, 81], + [-21, 20], + [-64, 60], + [-42, 39], + [-22, 20], + [-43, 39], + [-64, 58], + [-43, 38], + [-65, 57], + [-66, 56], + [-66, 55], + [-89, 73], + [-67, 53], + [-23, 18], + [-45, 35], + [-45, 35], + [-69, 52], + [-23, 17], + [-23, 17], + [-92, 67], + [-47, 33], + [-23, 16], + [-47, 32], + [-71, 48], + [-24, 16], + [-24, 16], + [-24, 16], + [-48, 31], + [-73, 46], + [-24, 15], + [-49, 30], + [-74, 44], + [-50, 29], + [-50, 29], + [-25, 14], + [-25, 14], + [-51, 28], + [-77, 41], + [-51, 27], + [-26, 13], + [-26, 13], + [-26, 13], + [-26, 13], + [-79, 39], + [-54, 25], + [-26, 12], + [-27, 12], + [-27, 12], + [-27, 12], + [-27, 12], + [-27, 12], + [-55, 24], + [-83, 34], + [-28, 11], + [-28, 11], + [-28, 11], + [-28, 11], + [-57, 21], + [-57, 21], + [-29, 10], + [-29, 10], + [-29, 10], + [-29, 10], + [-29, 10], + [-59, 19], + [-89, 28], + [-30, 9], + [-91, 26], + [-62, 17], + [-30, 8], + [-31, 8], + [-63, 16], + [-63, 15], + [-32, 7], + [-32, 7], + [-32, 7], + [-32, 7], + [-32, 7], + [-33, 7], + [-98, 19], + [-67, 12], + [-67, 11], + [-34, 5], + [-34, 5], + [-69, 10], + [-35, 5], + [-35, 5], + [-35, 4], + [-35, 4], + [-107, 12], + [-73, 7], + [-73, 6], + [-75, 5], + [-37, 2], + [-38, 2], + [-38, 2], + [-38, 2], + [-39, 2], + [-38, 1], + [-39, 1], + [-40, 1], + [-79, 1], + [-40, 0], + [-40, 0], + [-41, 0], + [-82, -1], + [-42, -1], + [-42, -1], + [-127, -5], + [-87, -5], + [-44, -3], + [-44, -3], + [-44, -3], + [-137, -12], + [-92, -9], + [-95, -11], + [-96, -12], + [-48, -6], + [-99, -14], + [-152, -24], + [-157, -27], + [-53, -10], + [-109, -21], + [-111, -23], + [-114, -25], + [-116, -27], + [-120, -29], + [-185, -48], + [-194, -54], + [-203, -60], + [-140, -44], + [-73, -24], + [-73, -24], + [-75, -25], + [-76, -26], + [-78, -27], + [-80, -28], + [-164, -60], + [-85, -32], + [-175, -68], + [-92, -37], + [-94, -38], + [-96, -39], + [-202, -85], + [-105, -46], + [-110, -49], + [-114, -51], + [-118, -54], + [-123, -57], + [-128, -61], + [-136, -66], + [-142, -70], + [-152, -76], + [-162, -82], + [-138, -72], + [-123, -65], + [-51, -27], + [-53, -28], + [-54, -29], + [-172, -94], + [-92, -51], + [-65, -36], + [-68, -38], + [-107, -60], + [-156, -89], + [-225, -131], + [-104, -61], + [-56, -33], + [-123, -74], + [-68, -41], + [-157, -95], + [-95, -58], + [-112, -69], + [-150, -93], + [-290, -182], + [-44, 706], + [1105, 703], + [1631, 930], + [1339, 644], + [1778, 643], + [1504, 301], + [1322, 33], + [831, -114], + [1107, -341], + [1180, -640], + [1289, -1077], + [1141, -1309], + [837, -1171], + [1463, -2396], + [1188, -2138], + [1174, -2140], + [2570, -4336], + [2478, -3479], + [2358, -2693], + [1576, -1514], + [2719, -2161] + ], + [ + [55601, 37678], + [173, -461], + [-255, -222], + [-183, -160], + [-130, -114], + [-106, -94], + [-93, -82], + [-158, -140], + [-70, -62], + [-65, -58], + [-120, -107], + [-209, -188], + [-138, -124], + [-43, -39], + [-42, -38], + [-41, -37], + [-40, -36], + [-77, -70], + [-74, -67], + [-36, -33], + [-35, -32], + [-34, -31], + [-67, -61], + [-65, -59], + [-32, -29], + [-152, -139], + [-86, -79], + [-83, -76], + [-132, -121], + [-51, -47], + [-25, -23], + [-145, -134], + [-193, -179], + [-160, -149], + [-152, -141], + [-145, -135], + [-139, -129], + [-134, -124], + [-128, -120], + [-124, -116], + [-120, -112], + [-117, -109], + [-113, -106], + [-218, -203], + [-207, -194], + [-100, -93], + [-194, -181], + [-94, -88], + [-92, -86], + [-91, -85], + [-89, -83], + [-88, -82], + [-86, -80], + [-169, -156], + [-163, -152], + [-80, -74], + [-79, -73], + [-156, -143], + [-76, -70], + [-75, -69], + [-74, -68], + [-74, -68], + [-72, -66], + [-72, -66], + [-142, -129], + [-70, -63], + [-69, -63], + [-136, -123], + [-134, -121], + [-66, -59], + [-195, -174], + [-127, -113], + [-63, -56], + [-62, -55], + [-124, -109], + [-242, -212], + [-177, -154], + [-58, -50], + [-58, -50], + [-58, -50], + [-171, -146], + [-113, -96], + [-166, -140], + [-55, -46], + [-55, -46], + [-54, -45], + [-162, -134], + [-106, -87], + [-158, -129], + [-157, -126], + [-256, -204], + [-151, -119], + [-50, -39], + [-50, -39], + [-149, -115], + [-98, -75], + [-146, -111], + [-97, -73], + [-144, -107], + [-191, -140], + [-188, -136], + [-233, -165], + [-367, -253], + [-181, -122], + [-45, -30], + [-313, -204], + [-221, -140], + [-132, -82], + [-218, -133], + [-87, -52], + [-6554, -2288], + [-3901, 205], + [-5557, 2361], + [-122, 79], + [-81, 53], + [-204, 136], + [-288, 197], + [-249, 175], + [-42, 30], + [-42, 30], + [-252, 183], + [-42, 31], + [-85, 63], + [-213, 160], + [-215, 165], + [-130, 101], + [-131, 103], + [-265, 211], + [-89, 72], + [-225, 184], + [-182, 151], + [-92, 77], + [-139, 117], + [-46, 39], + [-47, 40], + [-141, 121], + [-143, 123], + [-289, 253], + [-98, 87], + [-149, 132], + [-201, 180], + [-51, 46], + [-51, 46], + [-51, 46], + [-208, 190], + [-212, 195], + [-162, 150], + [-55, 51], + [-55, 51], + [-223, 209], + [-171, 161], + [-116, 110], + [-298, 283], + [-61, 58], + [-123, 118], + [-189, 181], + [-129, 124], + [-65, 63], + [-132, 127], + [-67, 65], + [-68, 66], + [-138, 134], + [-70, 68], + [-215, 209], + [-223, 217], + [-76, 74], + [-156, 152], + [-161, 156], + [-82, 80], + [-83, 81], + [-85, 83], + [-173, 170], + [-90, 87], + [-184, 179], + [-94, 92], + [-97, 94], + [-99, 96], + [-102, 99], + [-104, 101], + [-106, 103], + [-110, 106], + [-113, 109], + [-116, 112], + [-120, 116], + [-124, 119], + [-130, 124], + [-134, 128], + [-140, 134], + [-147, 140], + [-155, 147], + [-164, 155], + [-198, 187], + [-125, 117], + [-105, 98], + [-167, 156], + [-89, 82], + [-125, 116], + [-168, 155], + [-148, 135], + [-79, 72], + [-83, 76], + [-88, 80], + [-46, 42], + [-97, 88], + [-221, 199], + [-130, 116], + [-72, 64], + [-79, 70], + [-87, 77], + [-99, 88], + [-117, 104], + [-154, 134], + [-329, 286], + [167, 455], + [963, -822], + [1946, -1737], + [1116, -1035], + [1303, -1229], + [1304, -1235], + [2079, -1919], + [2148, -1827], + [2404, -1732], + [2419, -1319], + [413, -179], + [75, -31], + [374, -148], + [149, -56], + [149, -54], + [335, -115], + [186, -60], + [186, -57], + [74, -22], + [186, -53], + [260, -70], + [74, -19], + [222, -54], + [149, -34], + [148, -32], + [111, -23], + [149, -29], + [222, -40], + [260, -42], + [74, -11], + [260, -35], + [74, -9], + [260, -28], + [149, -14], + [112, -9], + [186, -13], + [223, -12], + [186, -7], + [75, -2], + [186, -3], + [224, 0], + [150, 2], + [187, 5], + [149, 6], + [150, 8], + [113, 7], + [112, 8], + [75, 6], + [188, 17], + [264, 28], + [75, 9], + [226, 30], + [189, 28], + [76, 12], + [189, 32], + [190, 35], + [152, 30], + [190, 40], + [191, 43], + [76, 18], + [115, 28], + [153, 39], + [76, 20], + [385, 108], + [77, 23], + [348, 110], + [4579, 2294], + [2921, 2183], + [1813, 1547], + [1351, 1206], + [1345, 1219], + [2062, 1857], + [1551, 1357], + [783, 666] + ], + [ + [42246, 70749], + [-75, -538], + [-2104, 233], + [-1637, 77], + [-2901, -124], + [-5581, -1446], + [-233, -104], + [-46, -21], + [-91, -42], + [-45, -21], + [-89, -42], + [-44, -21], + [-218, -106], + [-128, -64], + [-168, -86], + [-325, -173], + [-157, -87], + [-117, -66], + [-77, -44], + [-226, -132], + [-37, -22], + [-327, -200], + [-106, -67], + [-140, -90], + [-69, -45], + [-136, -90], + [-67, -45], + [-134, -91], + [-196, -136], + [-192, -137], + [-126, -92], + [-124, -92], + [-92, -69], + [-241, -184], + [-264, -209], + [-115, -93], + [-170, -140], + [-413, -352], + [-187, -165], + [-158, -142], + [-78, -71], + [-180, -166], + [-127, -119], + [-200, -191], + [-3122, -3400], + [-1318, -1567], + [-1686, -1947], + [-1597, -1669], + [-1848, -1637], + [-1166, -863], + [-1531, -948], + [-1139, -580], + [-1692, -688], + [-1188, -373], + [-1451, -348], + [-1313, -224], + [28, 536], + [263, 46], + [155, 28], + [120, 22], + [101, 19], + [168, 34], + [74, 15], + [68, 14], + [182, 39], + [55, 12], + [103, 23], + [48, 11], + [137, 32], + [42, 10], + [42, 10], + [41, 10], + [78, 19], + [146, 37], + [102, 26], + [128, 34], + [120, 33], + [113, 31], + [82, 23], + [104, 30], + [75, 22], + [223, 68], + [163, 51], + [153, 50], + [146, 48], + [138, 47], + [132, 46], + [127, 45], + [239, 88], + [113, 43], + [215, 84], + [103, 42], + [198, 81], + [95, 40], + [182, 79], + [89, 39], + [86, 38], + [167, 76], + [81, 38], + [79, 37], + [230, 111], + [147, 73], + [71, 36], + [140, 71], + [135, 71], + [66, 35], + [65, 35], + [191, 104], + [122, 69], + [60, 34], + [60, 34], + [117, 67], + [114, 67], + [166, 100], + [54, 33], + [54, 33], + [105, 65], + [155, 98], + [50, 32], + [51, 33], + [49, 32], + [49, 32], + [49, 32], + [48, 32], + [48, 32], + [94, 63], + [93, 63], + [91, 63], + [90, 63], + [44, 31], + [44, 31], + [44, 31], + [43, 31], + [43, 31], + [43, 31], + [168, 123], + [82, 61], + [81, 61], + [80, 61], + [39, 30], + [156, 121], + [38, 30], + [38, 30], + [38, 30], + [38, 30], + [111, 89], + [37, 30], + [109, 89], + [71, 59], + [71, 59], + [105, 88], + [103, 88], + [34, 29], + [34, 29], + [101, 88], + [33, 29], + [33, 29], + [98, 86], + [65, 58], + [96, 86], + [157, 143], + [154, 143], + [30, 28], + [90, 85], + [90, 85], + [29, 28], + [59, 57], + [29, 28], + [29, 28], + [29, 28], + [29, 28], + [29, 28], + [29, 28], + [57, 56], + [85, 84], + [28, 28], + [28, 28], + [55, 55], + [28, 28], + [28, 28], + [55, 55], + [136, 139], + [80, 82], + [27, 28], + [53, 55], + [53, 55], + [26, 27], + [130, 137], + [78, 82], + [77, 82], + [202, 217], + [247, 270], + [73, 81], + [120, 134], + [120, 134], + [24, 27], + [71, 80], + [47, 53], + [94, 107], + [93, 106], + [46, 53], + [46, 53], + [46, 53], + [46, 53], + [46, 53], + [46, 53], + [68, 79], + [68, 79], + [90, 105], + [112, 131], + [67, 79], + [22, 26], + [67, 79], + [22, 26], + [22, 26], + [22, 26], + [22, 26], + [22, 26], + [22, 26], + [22, 26], + [22, 26], + [176, 208], + [109, 130], + [152, 181], + [130, 155], + [86, 103], + [151, 180], + [129, 154], + [107, 128], + [193, 230], + [43, 51], + [193, 229], + [107, 127], + [129, 152], + [129, 152], + [194, 227], + [217, 252], + [87, 100], + [219, 251], + [22, 25], + [22, 25], + [22, 25], + [221, 249], + [179, 199], + [2033, 2082], + [2211, 1819], + [2870, 1688], + [3162, 1131], + [419, 102], + [219, 49], + [226, 48], + [314, 62], + [245, 45], + [255, 43], + [87, 14], + [89, 14], + [181, 27], + [92, 13], + [94, 13], + [192, 25], + [98, 12], + [100, 12], + [206, 23], + [105, 11], + [217, 21], + [226, 19], + [117, 9], + [241, 17], + [384, 21], + [134, 6], + [282, 10], + [147, 4], + [153, 3], + [321, 4], + [170, 0], + [178, -1], + [187, -3], + [196, -4], + [207, -6], + [220, -8], + [92, -4], + [63, -3], + [198, -10], + [175, -10], + [148, -9], + [157, -11], + [41, -3], + [41, -3], + [218, -17], + [142, -12], + [314, -29], + [378, -39], + [72, -8], + [157, -18], + [85, -10], + [192, -24], + [110, -14], + [269, -36], + [183, -26], + [297, -44], + [233, -36] + ], + [ + [77970, 50728], + [-32, -282], + [-1561, 257], + [-1729, 430], + [-1293, 436], + [-1963, 883], + [-1857, 1123], + [-1288, 967], + [-1712, 1546], + [-1175, 1228], + [-1459, 1678], + [-928, 1120], + [-4252, 4784], + [-148, 140], + [-276, 256], + [-128, 116], + [-182, 162], + [-79, 69], + [-53, 46], + [-107, 92], + [-81, 69], + [-192, 161], + [-196, 161], + [-171, 137], + [-116, 91], + [-88, 68], + [-119, 91], + [-90, 68], + [-152, 113], + [-124, 90], + [-189, 135], + [-64, 45], + [-227, 156], + [-234, 156], + [-241, 155], + [-105, 66], + [-71, 44], + [-327, 197], + [-150, 87], + [-114, 65], + [-194, 108], + [-79, 43], + [-201, 107], + [-123, 64], + [-209, 106], + [-303, 147], + [-270, 125], + [-232, 103], + [-191, 82], + [-196, 81], + [-461, 180], + [-3249, 882], + [-3204, 321], + [-1989, -20], + [-2559, -232], + [5268, 613], + [400, -21], + [126, -8], + [361, -27], + [227, -20], + [427, -44], + [102, -12], + [100, -12], + [195, -25], + [95, -13], + [93, -13], + [183, -27], + [264, -42], + [170, -29], + [6000, -2187], + [1547, -1023], + [2455, -2111], + [2150, -2329], + [270, -317], + [124, -147], + [123, -147], + [123, -147], + [164, -197], + [163, -197], + [61, -74], + [163, -198], + [102, -124], + [122, -149], + [102, -124], + [41, -50], + [102, -124], + [143, -175], + [41, -50], + [41, -50], + [206, -251], + [41, -50], + [145, -176], + [104, -126], + [42, -51], + [84, -101], + [63, -76], + [63, -76], + [63, -76], + [106, -127], + [21, -25], + [193, -230], + [43, -51], + [43, -51], + [109, -128], + [131, -154], + [44, -51], + [111, -129], + [134, -155], + [113, -129], + [137, -156], + [23, -26], + [23, -26], + [116, -130], + [141, -157], + [119, -131], + [96, -105], + [24, -26], + [24, -26], + [73, -79], + [49, -53], + [74, -80], + [150, -159], + [178, -186], + [104, -107], + [104, -107], + [133, -134], + [27, -27], + [27, -27], + [27, -27], + [27, -27], + [27, -27], + [82, -81], + [83, -82], + [28, -27], + [28, -27], + [28, -27], + [57, -55], + [28, -27], + [86, -82], + [87, -82], + [117, -110], + [150, -138], + [91, -83], + [155, -139], + [63, -56], + [193, -168], + [98, -84], + [67, -57], + [33, -28], + [68, -57], + [103, -85], + [69, -57], + [105, -86], + [144, -115], + [147, -115], + [37, -29], + [152, -117], + [38, -29], + [118, -88], + [79, -59], + [80, -59], + [123, -89], + [126, -89], + [85, -60], + [175, -121], + [135, -91], + [92, -61], + [93, -61], + [95, -62], + [97, -62], + [49, -31], + [50, -31], + [50, -31], + [102, -63], + [103, -63], + [106, -63], + [54, -32], + [54, -32], + [55, -32], + [169, -97], + [116, -65], + [59, -33], + [244, -132], + [127, -67], + [131, -67], + [67, -34], + [67, -34], + [139, -69], + [71, -35], + [221, -105], + [154, -71], + [80, -36], + [81, -36], + [166, -73], + [175, -75], + [90, -37], + [93, -38], + [192, -77], + [100, -39], + [103, -40], + [107, -40], + [110, -41], + [113, -41], + [118, -42], + [250, -86], + [134, -44], + [139, -45], + [148, -46], + [155, -48], + [189, -56], + [118, -34], + [25, -7], + [126, -35], + [133, -36], + [56, -15], + [58, -15], + [89, -23], + [192, -48], + [104, -25], + [230, -54], + [85, -19], + [137, -30], + [208, -44], + [120, -24], + [65, -13], + [146, -28], + [176, -32], + [107, -19], + [131, -23], + [185, -30], + [266, -41] + ], + [ + [71132, 19517], + [-429, -444], + [-249, 213], + [-158, 137], + [-125, 108], + [-107, 93], + [-94, 82], + [-85, 75], + [-78, 69], + [-73, 65], + [-132, 118], + [-229, 204], + [-52, 47], + [-50, 45], + [-48, 43], + [-92, 83], + [-44, 40], + [-84, 77], + [-81, 74], + [-186, 171], + [-137, 126], + [-65, 60], + [-94, 87], + [-30, 28], + [-30, 28], + [-29, 27], + [-29, 27], + [-29, 27], + [-111, 104], + [-80, 75], + [-127, 120], + [-179, 169], + [-167, 159], + [-157, 150], + [-148, 142], + [-141, 136], + [-135, 130], + [-128, 125], + [-123, 120], + [-233, 227], + [-111, 109], + [-107, 105], + [-103, 102], + [-101, 99], + [-98, 97], + [-95, 95], + [-93, 92], + [-90, 90], + [-88, 88], + [-171, 170], + [-82, 82], + [-81, 81], + [-157, 157], + [-76, 77], + [-75, 75], + [-146, 146], + [-71, 71], + [-138, 139], + [-68, 68], + [-132, 133], + [-65, 65], + [-127, 128], + [-123, 124], + [-60, 60], + [-60, 60], + [-117, 118], + [-57, 57], + [-57, 57], + [-56, 56], + [-56, 56], + [-55, 55], + [-54, 54], + [-54, 54], + [-105, 106], + [-155, 154], + [-150, 149], + [-49, 49], + [-145, 143], + [-141, 139], + [-92, 90], + [-46, 45], + [-45, 44], + [-45, 44], + [-44, 43], + [-44, 43], + [-88, 85], + [-128, 124], + [-84, 81], + [-42, 40], + [-42, 40], + [-122, 117], + [-120, 114], + [-79, 74], + [-117, 110], + [-115, 107], + [-75, 70], + [-149, 136], + [-37, 34], + [-36, 33], + [-36, 33], + [-108, 97], + [-71, 64], + [-71, 63], + [-35, 31], + [-34, 30], + [-35, 31], + [-137, 120], + [-68, 59], + [-34, 29], + [-133, 114], + [-33, 28], + [-98, 82], + [-97, 81], + [-33, 27], + [-127, 104], + [-32, 26], + [-63, 51], + [-31, 25], + [-63, 50], + [-93, 73], + [-61, 48], + [-61, 47], + [-61, 46], + [-91, 69], + [-60, 45], + [-89, 66], + [-30, 22], + [-59, 43], + [-59, 42], + [-59, 42], + [-58, 41], + [-145, 100], + [-58, 39], + [-57, 38], + [-86, 57], + [-57, 37], + [-28, 18], + [-85, 54], + [-85, 53], + [-28, 17], + [-28, 17], + [-28, 17], + [-28, 17], + [-28, 17], + [-83, 49], + [-28, 16], + [-111, 64], + [-55, 31], + [-83, 45], + [-55, 30], + [-55, 29], + [-82, 42], + [-82, 42], + [-55, 27], + [-27, 13], + [-109, 52], + [-28, 13], + [-54, 25], + [-27, 12], + [-27, 12], + [-109, 48], + [-54, 23], + [-27, 11], + [-109, 44], + [-54, 21], + [-54, 21], + [-109, 40], + [-54, 19], + [-55, 19], + [-27, 9], + [-27, 9], + [-27, 9], + [-28, 9], + [-54, 17], + [-55, 17], + [-27, 8], + [-27, 8], + [-27, 8], + [-55, 16], + [-55, 15], + [-27, 7], + [-55, 14], + [-55, 14], + [-28, 7], + [-55, 13], + [-27, 6], + [-55, 12], + [-28, 6], + [-28, 6], + [-28, 6], + [-55, 11], + [-84, 16], + [-27, 5], + [-84, 14], + [-85, 13], + [-28, 4], + [-85, 11], + [-56, 7], + [-57, 6], + [-57, 6], + [-29, 3], + [-57, 5], + [-87, 7], + [-87, 5], + [-58, 3], + [-29, 1], + [-30, 1], + [-29, 1], + [-29, 1], + [-30, 1], + [-59, 1], + [-30, 0], + [-29, 0], + [-30, 0], + [-30, 0], + [-30, 0], + [-90, -2], + [-30, -1], + [-31, -1], + [-30, -1], + [-61, -3], + [-31, -2], + [-31, -2], + [-61, -4], + [-31, -2], + [-31, -2], + [-94, -8], + [-32, -3], + [-63, -7], + [-63, -7], + [-32, -4], + [-32, -4], + [-32, -4], + [-65, -9], + [-33, -5], + [-65, -10], + [-33, -5], + [-33, -5], + [-66, -11], + [-67, -12], + [-67, -13], + [-68, -13], + [-34, -7], + [-138, -30], + [-69, -16], + [-71, -17], + [-71, -18], + [-71, -18], + [-73, -20], + [-73, -20], + [-73, -21], + [-38, -11], + [-37, -11], + [-75, -23], + [-115, -36], + [-195, -65], + [-79, -28], + [-81, -29], + [-81, -30], + [-83, -31], + [-41, -16], + [-85, -33], + [-85, -34], + [-87, -36], + [-87, -36], + [-45, -19], + [-45, -19], + [-182, -80], + [-46, -21], + [-94, -43], + [-48, -22], + [-97, -46], + [-49, -23], + [-99, -48], + [-50, -24], + [-51, -25], + [-103, -52], + [-52, -26], + [-53, -27], + [-162, -84], + [-55, -29], + [-56, -30], + [-56, -30], + [-115, -62], + [-117, -65], + [-121, -68], + [-61, -34], + [-125, -72], + [-64, -37], + [-65, -38], + [-133, -78], + [-137, -82], + [-71, -43], + [-71, -43], + [-73, -44], + [-74, -46], + [-75, -47], + [-77, -48], + [-79, -49], + [-80, -51], + [-165, -105], + [-86, -55], + [-87, -57], + [-90, -59], + [-92, -60], + [-95, -63], + [-97, -65], + [-100, -67], + [-104, -70], + [-107, -72], + [-110, -76], + [-115, -79], + [-120, -83], + [-125, -86], + [-268, -188], + [-145, -103], + [-154, -110], + [-211, -151], + [-47, -34], + [-48, -35], + [-99, -72], + [-105, -76], + [-82, -60], + [-86, -63], + [-90, -66], + [-63, -46], + [-65, -48], + [-68, -50], + [-35, -26], + [-35, -26], + [-74, -55], + [-119, -88], + [-42, -31], + [-134, -100], + [-48, -36], + [-157, -118], + [-119, -89], + [-65, -49], + [-70, -53], + [-77, -58], + [-86, -65], + [-97, -74], + [-116, -88], + [-153, -116], + [-295, -224], + [1, 0], + [-103, 632], + [1462, 1138], + [1500, 1129], + [877, 633], + [1175, 801], + [1538, 934], + [944, 487], + [1638, 633], + [1065, 232], + [756, 61], + [1071, -77], + [780, -182], + [1007, -395], + [1356, -797], + [1078, -820], + [1244, -1098], + [946, -911], + [1271, -1282], + [1020, -1049], + [1799, -1841], + [1358, -1348], + [1323, -1262], + [2055, -1839] + ], + [ + [79364, 42143], + [-2359, -2349], + [-100, -93], + [-48, -45], + [-47, -44], + [-92, -86], + [-45, -42], + [-161, -151], + [-151, -143], + [-282, -267], + [-131, -125], + [-126, -120], + [-121, -116], + [-117, -112], + [-113, -109], + [-217, -208], + [-103, -100], + [-101, -98], + [-98, -95], + [-96, -93], + [-94, -91], + [-92, -89], + [-89, -87], + [-88, -86], + [-171, -166], + [-83, -81], + [-82, -80], + [-80, -78], + [-79, -77], + [-154, -150], + [-149, -146], + [-73, -71], + [-143, -140], + [-71, -69], + [-69, -67], + [-203, -198], + [-196, -191], + [-64, -62], + [-249, -242], + [-180, -175], + [-59, -57], + [-59, -57], + [-58, -56], + [-171, -165], + [-167, -160], + [-55, -53], + [-162, -155], + [-106, -101], + [-104, -99], + [-155, -147], + [-101, -95], + [-50, -47], + [-50, -47], + [-99, -93], + [-146, -136], + [-285, -264], + [-185, -170], + [-46, -42], + [-136, -124], + [-134, -121], + [-88, -79], + [-175, -156], + [-172, -152], + [-211, -185], + [-166, -144], + [-205, -175], + [-201, -170], + [-80, -67], + [-118, -98], + [-79, -65], + [-156, -127], + [-307, -246], + [-189, -148], + [-4000, -2477], + [-3087, -924], + [-3209, -3], + [-2472, 655], + [-4458, 2525], + [-81, 60], + [-82, 61], + [-331, 251], + [-254, 197], + [-303, 240], + [-266, 215], + [-181, 148], + [-46, 38], + [-46, 38], + [-232, 194], + [-142, 120], + [-193, 164], + [-246, 212], + [-305, 266], + [-210, 184], + [-53, 47], + [-54, 48], + [-54, 48], + [-54, 48], + [-165, 148], + [-112, 101], + [-171, 155], + [-235, 213], + [-60, 55], + [-122, 111], + [-124, 114], + [-126, 116], + [-64, 59], + [-130, 120], + [-66, 61], + [-67, 62], + [-136, 126], + [-69, 64], + [-70, 65], + [-142, 133], + [-221, 206], + [-76, 71], + [-314, 294], + [-165, 154], + [-84, 79], + [-86, 81], + [-88, 83], + [-89, 84], + [-185, 173], + [-95, 89], + [-197, 185], + [-208, 195], + [-108, 101], + [-111, 104], + [-233, 218], + [-250, 233], + [-271, 252], + [-145, 135], + [-153, 141], + [-162, 150], + [-173, 159], + [-2558, 2539], + [1261, -1073], + [1614, -1424], + [2387, -2168], + [1073, -975], + [1424, -1271], + [2508, -2076], + [3666, -2372], + [172, -86], + [171, -83], + [204, -96], + [68, -31], + [236, -105], + [67, -29], + [267, -111], + [67, -27], + [165, -65], + [132, -50], + [263, -95], + [261, -88], + [66, -21], + [227, -70], + [64, -19], + [65, -19], + [193, -54], + [161, -42], + [128, -32], + [224, -52], + [64, -14], + [159, -33], + [96, -19], + [31, -6], + [254, -45], + [158, -25], + [221, -31], + [63, -8], + [221, -25], + [157, -15], + [94, -8], + [94, -7], + [157, -10], + [125, -6], + [125, -5], + [125, -3], + [125, -2], + [156, 0], + [93, 1], + [94, 2], + [187, 6], + [124, 6], + [218, 14], + [125, 10], + [186, 18], + [218, 25], + [94, 12], + [93, 13], + [93, 14], + [187, 30], + [93, 16], + [156, 29], + [125, 25], + [62, 13], + [125, 27], + [31, 7], + [125, 29], + [62, 15], + [250, 64], + [63, 17], + [125, 35], + [157, 46], + [63, 19], + [251, 80], + [63, 21], + [252, 88], + [127, 46], + [158, 60], + [64, 25], + [63, 25], + [223, 91], + [128, 54], + [224, 99], + [64, 29], + [193, 90], + [65, 31], + [97, 47], + [65, 32], + [130, 65], + [65, 33], + [163, 85], + [329, 178], + [199, 112], + [3774, 2709], + [1359, 1185], + [1967, 1823], + [1385, 1313], + [1498, 1413], + [1075, 994], + [1589, 1421], + [1304, 1113] + ], + [ + [31930, 15756], + [1638, -787], + [-144, -240], + [-97, -171], + [-73, -133], + [-61, -112], + [-52, -98], + [-46, -88], + [-42, -82], + [-39, -76], + [-36, -72], + [-33, -68], + [-31, -64], + [-30, -62], + [-55, -117], + [-26, -55], + [-48, -106], + [-23, -51], + [-22, -49], + [-21, -48], + [-40, -93], + [-19, -45], + [-54, -130], + [-17, -41], + [-17, -41], + [-47, -119], + [-15, -39], + [-29, -75], + [-14, -37], + [-40, -108], + [-25, -69], + [-36, -102], + [-34, -99], + [-42, -127], + [-20, -61], + [-19, -61], + [-36, -118], + [-62, -213], + [-54, -202], + [-48, -193], + [-42, -185], + [-36, -178], + [-32, -172], + [-28, -167], + [-23, -162], + [-20, -158], + [-16, -153], + [-13, -150], + [-10, -147], + [-6, -143], + [-4, -140], + [0, -138], + [2, -135], + [5, -132], + [8, -130], + [11, -128], + [13, -126], + [16, -124], + [18, -123], + [21, -120], + [24, -119], + [26, -117], + [29, -115], + [31, -114], + [35, -112], + [36, -111], + [40, -110], + [42, -108], + [45, -107], + [47, -106], + [51, -105], + [53, -103], + [57, -102], + [59, -101], + [62, -100], + [66, -99], + [68, -97], + [72, -97], + [75, -96], + [78, -94], + [82, -94], + [85, -92], + [89, -92], + [93, -90], + [96, -89], + [100, -89], + [213, -174], + [113, -85], + [117, -84], + [121, -84], + [126, -82], + [131, -81], + [276, -160], + [146, -78], + [151, -77], + [156, -76], + [329, -148], + [174, -73], + [179, -71], + [186, -70], + [191, -69], + [199, -68], + [204, -66], + [212, -65], + [218, -64], + [226, -62], + [233, -61], + [239, -59], + [503, -115], + [262, -55], + [270, -53], + [277, -51], + [286, -50], + [293, -48], + [609, -91], + [640, -83], + [668, -75], + [345, -34], + [352, -32], + [358, -30], + [364, -28], + [370, -26], + [375, -23], + [380, -21], + [773, -35], + [786, -25], + [794, -15], + [798, -5], + [399, 1], + [1187, 18], + [391, 11], + [388, 13], + [762, 33], + [374, 20], + [732, 47], + [708, 55], + [681, 63], + [652, 71], + [315, 38], + [308, 40], + [877, 129], + [547, 94], + [517, 100], + [248, 52], + [240, 53], + [233, 54], + [226, 56], + [432, 114], + [206, 59], + [200, 60], + [193, 61], + [187, 62], + [182, 63], + [175, 63], + [170, 65], + [164, 65], + [159, 66], + [154, 67], + [149, 68], + [144, 69], + [139, 69], + [135, 70], + [130, 70], + [126, 72], + [122, 72], + [117, 72], + [114, 73], + [215, 148], + [102, 75], + [99, 76], + [95, 76], + [93, 77], + [88, 77], + [86, 78], + [83, 78], + [156, 158], + [74, 80], + [140, 161], + [66, 82], + [63, 82], + [61, 82], + [59, 83], + [56, 83], + [54, 84], + [52, 84], + [50, 85], + [93, 172], + [43, 86], + [42, 87], + [39, 87], + [38, 88], + [36, 89], + [34, 88], + [32, 90], + [30, 90], + [29, 91], + [27, 91], + [25, 91], + [24, 93], + [22, 93], + [21, 93], + [36, 189], + [16, 95], + [14, 96], + [13, 97], + [11, 97], + [10, 98], + [8, 99], + [7, 99], + [5, 100], + [4, 101], + [2, 102], + [1, 103], + [0, 103], + [-2, 105], + [-4, 105], + [-4, 106], + [-7, 107], + [-8, 108], + [-9, 110], + [-11, 110], + [-13, 111], + [-14, 113], + [-15, 114], + [-18, 115], + [-19, 117], + [-20, 118], + [-23, 119], + [-24, 121], + [-26, 123], + [-28, 124], + [-31, 127], + [-32, 128], + [-34, 130], + [-37, 133], + [-39, 135], + [-41, 138], + [-44, 140], + [-48, 144], + [-50, 146], + [-53, 151], + [-57, 154], + [-61, 159], + [-65, 163], + [-70, 170], + [-76, 175], + [-81, 182], + [-89, 191], + [-96, 201], + [-56, 112], + [-14, 28], + [-29, 58], + [-15, 29], + [-31, 60], + [-64, 122], + [-51, 95], + [-35, 65], + [-37, 67], + [-38, 69], + [-60, 106], + [-21, 37], + [-43, 74], + [-69, 118], + [-49, 82], + [-79, 130], + [-57, 92], + [-30, 48], + [-31, 49], + [-102, 159], + [-77, 117], + [-42, 63], + [-45, 66], + [-49, 72], + [-53, 76], + [-59, 84], + [-67, 95], + [-79, 109], + [-99, 135], + [-113, 155], + [-102, 125], + [1335, 985], + [616, -729], + [1329, -1843], + [932, -1589], + [564, -1142], + [862, -2216], + [458, -1789], + [173, -1455], + [-365, -2358], + [-3816, -2730], + [-10513, -1124], + [-17179, 755], + [-3750, 1258], + [-1610, 1820], + [-302, 2294], + [328, 1889], + [343, 1112], + [707, 1726], + [613, 1206], + [854, 1426], + [690, 1003] + ], + [ + [36868, 44993], + [-2209, 1166], + [-122, 67], + [-70, 38], + [-112, 60], + [-158, 84], + [-148, 77], + [-139, 72], + [-133, 67], + [-126, 63], + [-121, 59], + [-116, 56], + [-219, 104], + [-104, 48], + [-199, 89], + [-95, 42], + [-93, 40], + [-177, 75], + [-86, 35], + [-84, 34], + [-82, 33], + [-80, 32], + [-78, 30], + [-77, 29], + [-150, 56], + [-72, 26], + [-142, 50], + [-69, 24], + [-200, 66], + [-65, 21], + [-64, 20], + [-125, 38], + [-61, 18], + [-119, 34], + [-117, 32], + [-114, 30], + [-111, 28], + [-162, 39], + [-53, 12], + [-155, 33], + [-151, 30], + [-97, 18], + [-96, 17], + [-95, 15], + [-46, 7], + [-46, 7], + [-91, 13], + [-89, 11], + [-175, 20], + [-42, 4], + [-85, 8], + [-124, 9], + [-41, 3], + [-160, 8], + [-40, 2], + [-39, 1], + [-77, 2], + [-39, 1], + [-38, 0], + [-38, 0], + [-37, 0], + [-37, 0], + [-37, 0], + [-37, -1], + [-37, -1], + [-73, -2], + [-36, -1], + [-71, -3], + [-35, -2], + [-35, -2], + [-35, -2], + [-69, -5], + [-35, -3], + [-34, -3], + [-34, -3], + [-33, -3], + [-101, -11], + [-33, -4], + [-65, -8], + [-65, -9], + [-32, -5], + [-32, -5], + [-32, -5], + [-32, -5], + [-31, -5], + [-63, -11], + [-31, -6], + [-31, -6], + [-31, -6], + [-61, -12], + [-30, -6], + [-60, -13], + [-30, -7], + [-30, -7], + [-30, -7], + [-29, -7], + [-59, -15], + [-58, -15], + [-29, -8], + [-86, -24], + [-28, -8], + [-56, -17], + [-84, -26], + [-28, -9], + [-27, -9], + [-82, -28], + [-82, -29], + [-80, -30], + [-26, -10], + [-53, -21], + [-52, -21], + [-27, -11], + [-51, -21], + [-103, -45], + [-51, -23], + [-50, -23], + [-25, -12], + [-25, -12], + [-25, -12], + [-25, -12], + [-24, -12], + [-50, -25], + [-24, -12], + [-25, -13], + [-48, -25], + [-73, -39], + [-47, -26], + [-72, -40], + [-94, -55], + [-23, -14], + [-23, -14], + [-23, -14], + [-23, -14], + [-69, -43], + [-46, -29], + [-23, -15], + [-90, -59], + [-89, -61], + [-45, -31], + [-44, -31], + [-22, -16], + [-22, -16], + [-87, -64], + [-43, -32], + [-43, -33], + [-43, -33], + [-64, -50], + [-21, -17], + [-21, -17], + [-21, -17], + [-21, -17], + [-63, -52], + [-83, -70], + [-21, -18], + [-61, -53], + [-62, -55], + [-20, -18], + [-20, -18], + [-41, -37], + [-61, -56], + [-40, -37], + [-20, -19], + [-20, -19], + [-20, -19], + [-20, -19], + [-79, -77], + [-79, -78], + [-39, -40], + [-39, -40], + [-39, -40], + [-58, -60], + [-77, -82], + [-77, -83], + [-19, -21], + [-19, -21], + [-19, -21], + [-19, -21], + [-19, -21], + [-19, -21], + [-19, -21], + [-75, -86], + [-19, -22], + [-19, -22], + [-56, -65], + [-56, -66], + [-56, -67], + [-37, -45], + [-37, -45], + [-37, -45], + [-92, -115], + [-73, -92], + [-73, -94], + [-73, -95], + [-18, -24], + [-18, -24], + [-18, -24], + [-18, -24], + [-18, -24], + [-18, -24], + [-36, -49], + [-36, -49], + [-36, -49], + [-72, -99], + [-18, -25], + [-18, -25], + [-18, -25], + [-54, -76], + [-54, -76], + [-18, -26], + [-125, -181], + [-107, -157], + [-89, -134], + [-71, -107], + [-71, -109], + [-71, -110], + [-18, -28], + [-18, -28], + [-71, -111], + [-107, -170], + [-89, -143], + [-18, -29], + [-18, -29], + [-18, -29], + [-89, -146], + [-36, -59], + [-54, -89], + [-18, -30], + [-18, -30], + [-18, -30], + [-18, -30], + [-18, -30], + [-18, -30], + [-54, -91], + [-91, -153], + [-91, -155], + [-91, -157], + [-37, -64], + [-55, -95], + [-74, -129], + [-93, -162], + [-131, -231], + [-132, -235], + [-19, -34], + [-19, -34], + [-19, -34], + [-77, -138], + [-19, -34], + [-58, -104], + [-39, -70], + [-39, -70], + [-98, -177], + [-139, -252], + [-40, -73], + [-40, -73], + [-61, -111], + [-61, -111], + [-124, -226], + [-104, -190], + [-85, -155], + [-64, -117], + [-108, -197], + [-22, -40], + [-22, -40], + [-22, -40], + [-22, -40], + [-22, -40], + [-89, -162], + [-45, -82], + [-183, -332], + [-70, -127], + [-47, -85], + [-143, -258], + [-147, -264], + [-100, -178], + [-205, -365], + [-132, -232], + [-135, -237], + [-55, -96], + [-197, -341], + [-29, -50], + [-176, -301], + [-60, -102], + [-184, -311], + [-127, -212], + [-97, -161], + [-235, -385], + [-283, -456], + [-148, -235], + [-114, -179], + [-278, -430], + [-296, -448], + [-133, -198], + [-279, -408], + [-97, -140], + [-201, -286], + [-376, -523], + [-114, -155], + [-238, -319], + [-188, -248], + [-197, -255], + [-68, -87], + [-69, -88], + [-215, -271], + [-228, -281], + [-79, -96], + [-247, -297], + [-175, -206], + [-184, -213], + [-194, -221], + [-312, -349], + [-225, -245], + [-242, -258], + [-262, -274], + [-139, -143], + [-146, -148], + [-154, -154], + [-336, -328], + [-3683, -2820], + [2713, 2192], + [1823, 1798], + [2533, 3025], + [1900, 2742], + [2771, 4736], + [946, 1744], + [979, 1788], + [732, 1277], + [839, 1349], + [771, 1099], + [1304, 1503], + [1002, 843], + [859, 523], + [1194, 456], + [1488, 195], + [1448, -130], + [877, -202], + [1792, -647], + [1255, -604], + [1788, -1025], + [1350, -874] + ], + [ + [78926, 70923], + [-228, -773], + [-1744, 894], + [-2247, 954], + [-1806, 587], + [-4358, 649], + [-300, 0], + [-74, -1], + [-145, -3], + [-71, -2], + [-142, -5], + [-70, -3], + [-139, -7], + [-68, -4], + [-136, -9], + [-67, -5], + [-328, -29], + [-255, -28], + [-187, -24], + [-122, -17], + [-121, -18], + [-119, -19], + [-118, -20], + [-117, -21], + [-229, -44], + [-112, -23], + [-56, -12], + [-55, -12], + [-110, -25], + [-216, -52], + [-107, -27], + [-209, -56], + [-103, -29], + [-153, -45], + [-199, -62], + [-50, -16], + [-98, -32], + [-240, -83], + [-47, -17], + [-141, -52], + [-321, -126], + [-90, -37], + [-45, -19], + [-176, -76], + [-43, -19], + [-130, -59], + [-86, -40], + [-126, -60], + [-167, -82], + [-164, -84], + [-161, -85], + [-79, -43], + [-40, -22], + [-195, -110], + [-77, -45], + [-76, -45], + [-114, -69], + [-186, -115], + [-146, -94], + [-251, -168], + [-35, -24], + [-105, -73], + [-104, -74], + [-69, -50], + [-136, -100], + [-167, -127], + [-66, -51], + [-66, -52], + [-226, -182], + [-221, -186], + [-93, -80], + [-274, -245], + [-149, -138], + [-262, -252], + [-86, -85], + [-113, -114], + [-84, -86], + [-56, -58], + [-138, -145], + [-27, -29], + [-216, -235], + [-80, -89], + [-287, -330], + [-77, -91], + [-51, -61], + [-101, -122], + [-100, -123], + [-50, -62], + [-74, -93], + [-49, -62], + [-98, -125], + [-264, -347], + [-188, -256], + [-139, -193], + [-46, -65], + [-182, -261], + [-90, -131], + [-45, -66], + [-155, -232], + [-198, -301], + [-130, -203], + [-214, -340], + [-106, -172], + [-231, -381], + [-2642, -4877], + [-972, -1877], + [-1160, -2149], + [-1469, -2472], + [-834, -1257], + [-1156, -1565], + [-1224, -1447], + [-1009, -1046], + [-1936, -1682], + [-1945, -1327], + [-832, -472], + [-91, 846], + [248, 143], + [153, 90], + [218, 131], + [87, 54], + [152, 95], + [131, 83], + [170, 111], + [101, 67], + [48, 32], + [46, 31], + [87, 59], + [123, 84], + [76, 53], + [37, 26], + [140, 99], + [160, 116], + [90, 66], + [58, 43], + [83, 62], + [132, 100], + [51, 39], + [49, 38], + [72, 56], + [193, 152], + [157, 128], + [148, 122], + [141, 117], + [133, 114], + [127, 110], + [121, 107], + [117, 104], + [112, 101], + [108, 99], + [104, 97], + [199, 189], + [188, 182], + [90, 88], + [173, 173], + [165, 169], + [79, 82], + [78, 82], + [151, 160], + [73, 79], + [72, 78], + [71, 77], + [69, 76], + [68, 76], + [197, 222], + [126, 145], + [122, 143], + [60, 71], + [59, 70], + [58, 69], + [57, 69], + [167, 204], + [54, 67], + [54, 67], + [53, 66], + [52, 66], + [52, 66], + [51, 65], + [100, 129], + [98, 127], + [143, 189], + [139, 186], + [135, 184], + [44, 60], + [87, 120], + [85, 119], + [125, 177], + [82, 117], + [40, 58], + [40, 58], + [79, 115], + [39, 57], + [77, 113], + [76, 113], + [148, 223], + [73, 110], + [36, 55], + [176, 272], + [170, 268], + [165, 264], + [160, 261], + [63, 103], + [31, 51], + [31, 51], + [92, 153], + [150, 253], + [59, 100], + [87, 149], + [29, 50], + [114, 197], + [112, 195], + [55, 97], + [55, 97], + [27, 48], + [27, 48], + [27, 48], + [27, 48], + [27, 48], + [53, 95], + [53, 95], + [26, 47], + [130, 236], + [51, 93], + [51, 93], + [175, 323], + [25, 46], + [98, 183], + [73, 136], + [24, 45], + [72, 136], + [71, 134], + [71, 134], + [70, 134], + [23, 44], + [23, 44], + [161, 308], + [23, 44], + [68, 131], + [45, 87], + [134, 259], + [88, 171], + [66, 128], + [131, 255], + [43, 84], + [129, 252], + [128, 250], + [126, 248], + [168, 328], + [21, 41], + [21, 41], + [83, 162], + [21, 41], + [62, 121], + [41, 80], + [124, 241], + [82, 159], + [123, 238], + [102, 197], + [143, 274], + [122, 233], + [2180, 3818], + [1980, 2715], + [1487, 1563], + [2780, 2017], + [2156, 929], + [1723, 427], + [5588, -128], + [228, -47], + [236, -52], + [121, -28], + [248, -60], + [258, -66], + [549, -153], + [146, -43], + [149, -45], + [312, -99], + [162, -54], + [342, -117], + [369, -133], + [402, -153], + [447, -179], + [129, -54], + [168, -71], + [70, -30], + [296, -129], + [161, -72], + [305, -140], + [244, -115], + [161, -77], + [115, -56], + [122, -60], + [201, -100], + [150, -76], + [168, -86], + [194, -101], + [240, -127], + [152, -82], + [200, -109], + [454, -253] + ], + [ + [92710, 17218], + [1339, -922], + [-175, -220], + [-118, -156], + [-90, -121], + [-75, -103], + [-65, -90], + [-58, -81], + [-53, -75], + [-49, -70], + [-46, -66], + [-43, -63], + [-41, -60], + [-75, -112], + [-69, -104], + [-32, -49], + [-62, -96], + [-29, -45], + [-56, -88], + [-27, -43], + [-26, -42], + [-50, -81], + [-48, -78], + [-23, -38], + [-45, -75], + [-43, -72], + [-41, -70], + [-40, -69], + [-19, -33], + [-38, -66], + [-72, -128], + [-51, -92], + [-17, -31], + [-32, -59], + [-32, -59], + [-31, -57], + [-30, -57], + [-29, -55], + [-56, -109], + [-100, -197], + [-91, -187], + [-85, -179], + [-80, -174], + [-74, -167], + [-70, -162], + [-66, -157], + [-62, -154], + [-58, -149], + [-56, -146], + [-52, -143], + [-50, -140], + [-47, -137], + [-44, -135], + [-42, -132], + [-40, -130], + [-38, -129], + [-36, -126], + [-33, -124], + [-32, -123], + [-30, -121], + [-28, -119], + [-27, -118], + [-24, -117], + [-23, -115], + [-22, -114], + [-19, -113], + [-19, -112], + [-16, -110], + [-15, -110], + [-14, -108], + [-12, -108], + [-11, -106], + [-9, -106], + [-7, -104], + [-6, -104], + [-5, -103], + [-3, -102], + [-1, -102], + [0, -100], + [1, -100], + [3, -99], + [5, -99], + [6, -97], + [7, -98], + [10, -96], + [11, -96], + [12, -95], + [14, -95], + [16, -94], + [18, -93], + [19, -93], + [21, -93], + [23, -91], + [25, -92], + [27, -90], + [29, -91], + [30, -89], + [33, -90], + [35, -88], + [37, -89], + [39, -87], + [42, -88], + [44, -86], + [46, -87], + [100, -171], + [54, -85], + [57, -84], + [60, -84], + [62, -83], + [134, -166], + [72, -82], + [75, -81], + [79, -81], + [82, -81], + [86, -80], + [90, -79], + [94, -79], + [99, -79], + [102, -77], + [107, -78], + [112, -77], + [117, -76], + [122, -76], + [127, -75], + [271, -148], + [145, -73], + [308, -144], + [165, -71], + [171, -70], + [179, -70], + [382, -136], + [203, -67], + [212, -66], + [221, -65], + [230, -64], + [241, -63], + [512, -122], + [272, -59], + [284, -58], + [295, -57], + [628, -109], + [679, -103], + [359, -49], + [373, -47], + [386, -45], + [-99601, -43], + [414, -41], + [869, -75], + [922, -66], + [480, -29], + [994, -50], + [513, -21], + [521, -18], + [529, -15], + [536, -12], + [1633, -17], + [1095, 4], + [545, 7], + [541, 10], + [535, 13], + [529, 16], + [521, 19], + [512, 22], + [993, 52], + [479, 30], + [467, 33], + [894, 73], + [1240, 127], + [757, 95], + [703, 103], + [332, 54], + [318, 55], + [307, 57], + [294, 59], + [282, 60], + [271, 61], + [260, 63], + [250, 64], + [239, 65], + [229, 66], + [219, 67], + [211, 69], + [201, 69], + [194, 71], + [185, 71], + [177, 72], + [170, 73], + [162, 74], + [156, 75], + [149, 75], + [143, 77], + [136, 77], + [131, 78], + [125, 78], + [120, 79], + [115, 80], + [109, 81], + [105, 81], + [101, 82], + [187, 166], + [87, 84], + [84, 85], + [80, 85], + [76, 86], + [72, 86], + [69, 87], + [66, 88], + [62, 88], + [60, 89], + [56, 90], + [53, 90], + [51, 91], + [48, 91], + [45, 92], + [43, 93], + [40, 93], + [37, 95], + [35, 94], + [33, 96], + [31, 96], + [28, 97], + [26, 98], + [24, 98], + [22, 100], + [19, 100], + [18, 100], + [16, 102], + [14, 103], + [11, 103], + [10, 104], + [8, 106], + [6, 106], + [4, 107], + [2, 108], + [1, 109], + [-2, 111], + [-3, 111], + [-5, 113], + [-7, 114], + [-9, 115], + [-11, 117], + [-13, 118], + [-15, 119], + [-17, 121], + [-18, 123], + [-21, 124], + [-23, 126], + [-25, 129], + [-28, 130], + [-29, 132], + [-32, 134], + [-35, 137], + [-37, 140], + [-39, 142], + [-43, 145], + [-46, 149], + [-49, 152], + [-52, 156], + [-56, 160], + [-60, 165], + [-65, 171], + [-70, 176], + [-75, 183], + [-81, 191], + [-89, 199], + [-97, 211], + [-13, 28], + [-14, 30], + [-28, 59], + [-29, 60], + [-30, 61], + [-31, 63], + [-48, 96], + [-50, 99], + [-35, 68], + [-55, 105], + [-58, 109], + [-62, 114], + [-66, 120], + [-47, 83], + [-75, 132], + [-54, 93], + [-88, 148], + [-32, 53], + [-33, 54], + [-34, 56], + [-36, 59], + [-38, 61], + [-82, 131], + [-46, 71], + [-49, 76], + [-53, 82], + [-60, 90], + [-67, 101], + [-80, 117], + [-101, 146], + [-116, 168], + [-103, 136], + [1436, 855], + [1106, -1399], + [1403, -2102], + [600, -1044], + [1008, -2039], + [703, -1777], + [462, -1572], + [244, -1885], + [-544, -1834], + [-6510, -1954], + [66973, 1007], + [-1775, 2206], + [135, 2265], + [561, 2004], + [1025, 2507], + [1186, 2248], + [982, 1553], + [655, 920], + [1473, 1796] + ], + [ + [46226, 67187], + [-239, -809], + [-2521, 1565], + [-2945, 1484], + [-3919, 1233], + [-70, 13], + [-472, 79], + [-130, 19], + [-319, 41], + [-124, 14], + [-244, 24], + [-179, 15], + [-292, 19], + [-57, 3], + [-114, 5], + [-112, 4], + [-111, 3], + [-110, 2], + [-108, 1], + [-108, 0], + [-106, -1], + [-158, -3], + [-359, -15], + [-100, -6], + [-100, -7], + [-147, -12], + [-97, -9], + [-239, -25], + [-234, -30], + [-138, -20], + [-90, -14], + [-91, -15], + [-222, -40], + [-87, -17], + [-217, -45], + [-85, -19], + [-168, -40], + [-84, -21], + [-82, -21], + [-123, -33], + [-122, -34], + [-239, -72], + [-195, -63], + [-39, -13], + [-115, -40], + [-76, -27], + [-262, -98], + [-74, -29], + [-219, -90], + [-72, -31], + [-71, -31], + [-36, -16], + [-176, -80], + [-139, -66], + [-239, -119], + [-134, -70], + [-166, -90], + [-130, -73], + [-130, -75], + [-96, -57], + [-63, -38], + [-126, -78], + [-94, -59], + [-62, -40], + [-61, -40], + [-92, -61], + [-61, -41], + [-60, -41], + [-180, -126], + [-59, -42], + [-59, -43], + [-146, -108], + [-29, -22], + [-115, -88], + [-142, -112], + [-85, -68], + [-139, -114], + [-111, -93], + [-109, -94], + [-54, -47], + [-189, -168], + [-106, -97], + [-53, -49], + [-131, -124], + [-26, -25], + [-129, -125], + [-77, -76], + [-102, -102], + [-101, -103], + [-75, -78], + [-100, -105], + [-74, -79], + [-123, -133], + [-146, -162], + [-48, -54], + [-168, -192], + [-71, -83], + [-71, -84], + [-94, -112], + [-140, -170], + [-92, -114], + [-207, -261], + [-45, -58], + [-91, -118], + [-90, -118], + [-90, -120], + [-67, -90], + [-133, -181], + [-154, -214], + [-154, -217], + [-87, -125], + [-87, -126], + [-151, -222], + [-86, -128], + [-129, -194], + [-128, -196], + [-128, -198], + [-170, -266], + [-2349, -4005], + [-1758, -3079], + [-979, -1621], + [-1057, -1633], + [-1494, -2075], + [-1095, -1346], + [-1781, -1901], + [-1496, -1349], + [-2247, -1665], + [-120, 885], + [250, 173], + [152, 108], + [216, 155], + [87, 64], + [78, 58], + [139, 104], + [62, 47], + [59, 45], + [56, 43], + [105, 81], + [49, 38], + [93, 73], + [44, 35], + [84, 67], + [80, 64], + [148, 120], + [69, 57], + [99, 82], + [93, 78], + [118, 100], + [138, 118], + [129, 113], + [49, 43], + [96, 85], + [190, 172], + [156, 143], + [147, 136], + [139, 131], + [132, 127], + [246, 240], + [115, 115], + [111, 112], + [107, 109], + [104, 107], + [100, 104], + [97, 102], + [94, 100], + [92, 98], + [176, 191], + [85, 94], + [163, 182], + [79, 89], + [77, 88], + [76, 87], + [74, 85], + [73, 85], + [141, 166], + [69, 82], + [68, 81], + [66, 80], + [193, 234], + [62, 77], + [61, 76], + [179, 225], + [171, 218], + [110, 143], + [54, 71], + [53, 70], + [53, 70], + [52, 69], + [52, 69], + [51, 68], + [50, 67], + [148, 201], + [48, 66], + [48, 66], + [47, 65], + [47, 65], + [46, 64], + [91, 128], + [90, 127], + [88, 125], + [129, 185], + [42, 61], + [42, 61], + [123, 181], + [160, 237], + [78, 117], + [77, 116], + [76, 115], + [37, 57], + [184, 283], + [36, 56], + [71, 111], + [140, 219], + [170, 270], + [165, 266], + [97, 157], + [158, 259], + [31, 51], + [31, 51], + [92, 153], + [30, 50], + [30, 50], + [120, 200], + [117, 198], + [29, 49], + [29, 49], + [29, 49], + [142, 243], + [28, 48], + [28, 48], + [83, 143], + [55, 95], + [27, 47], + [162, 281], + [106, 185], + [208, 366], + [51, 90], + [51, 90], + [76, 134], + [50, 89], + [50, 89], + [99, 176], + [98, 175], + [97, 173], + [24, 43], + [24, 43], + [24, 43], + [24, 43], + [24, 43], + [71, 127], + [24, 43], + [141, 253], + [70, 125], + [253, 454], + [23, 41], + [91, 163], + [90, 161], + [112, 200], + [45, 80], + [67, 119], + [22, 39], + [111, 197], + [22, 39], + [132, 233], + [66, 116], + [2573, 4146], + [972, 1295], + [1541, 1707], + [1364, 1180], + [2260, 1362], + [2817, 860], + [2456, 142], + [4642, -963], + [509, -190], + [107, -42], + [108, -43], + [337, -138], + [235, -100], + [246, -108], + [127, -57], + [129, -59], + [133, -62], + [277, -131], + [145, -70], + [303, -151], + [160, -81], + [339, -176], + [180, -96], + [190, -103], + [201, -111], + [56, -31], + [173, -97], + [182, -104], + [298, -173], + [107, -63], + [74, -44], + [196, -117], + [214, -130], + [189, -116], + [50, -31], + [160, -100], + [57, -36], + [120, -76], + [442, -284], + [94, -61], + [104, -68], + [261, -173], + [192, -128], + [389, -265] + ], + [ + [2950, 91989], + [96290, -85], + [-326, 1320], + [-58, 2311], + [-97935, 2411], + [10234, 1451], + [25389, -1420], + [2122, -1853], + [469, -1611], + [16, -2504], + [-141, -1286], + [-489, -2799], + [-429, -1869], + [-553, -2032], + [-648, -2013], + [-697, -1821], + [-1063, -2259], + [-929, -1574], + [-666, -949], + [-984, -1176], + [-1071, -1029], + [-1050, -802], + [-933, -568], + [-764, 1661], + [98, 56], + [144, 91], + [117, 74], + [92, 61], + [79, 52], + [70, 48], + [62, 43], + [58, 41], + [54, 38], + [50, 36], + [92, 68], + [124, 94], + [38, 29], + [36, 28], + [36, 28], + [34, 27], + [66, 53], + [92, 75], + [58, 48], + [55, 47], + [27, 23], + [78, 67], + [49, 43], + [24, 21], + [24, 21], + [69, 62], + [87, 80], + [42, 39], + [41, 38], + [20, 19], + [58, 56], + [76, 73], + [18, 18], + [131, 132], + [123, 126], + [115, 122], + [108, 118], + [103, 115], + [98, 112], + [94, 110], + [90, 107], + [86, 105], + [83, 104], + [80, 102], + [77, 100], + [75, 99], + [72, 98], + [70, 96], + [68, 96], + [67, 94], + [64, 93], + [63, 92], + [61, 92], + [60, 91], + [59, 90], + [57, 89], + [55, 88], + [55, 88], + [53, 87], + [53, 87], + [51, 86], + [50, 85], + [49, 85], + [96, 169], + [92, 167], + [45, 82], + [44, 83], + [86, 163], + [42, 82], + [82, 161], + [40, 81], + [78, 159], + [38, 80], + [37, 79], + [37, 79], + [37, 79], + [71, 156], + [35, 78], + [34, 78], + [68, 155], + [33, 77], + [32, 77], + [32, 77], + [32, 77], + [31, 76], + [31, 76], + [31, 77], + [30, 76], + [59, 151], + [29, 76], + [28, 75], + [56, 151], + [28, 75], + [27, 75], + [27, 75], + [52, 149], + [26, 75], + [26, 75], + [25, 74], + [25, 74], + [25, 75], + [24, 74], + [24, 74], + [24, 74], + [23, 74], + [23, 74], + [46, 147], + [22, 74], + [44, 147], + [22, 74], + [42, 147], + [21, 73], + [41, 147], + [20, 74], + [39, 146], + [19, 73], + [38, 147], + [19, 73], + [18, 73], + [36, 147], + [35, 146], + [17, 73], + [17, 73], + [33, 147], + [16, 73], + [16, 73], + [16, 73], + [31, 147], + [15, 73], + [15, 73], + [29, 147], + [14, 73], + [14, 73], + [14, 73], + [26, 147], + [26, 147], + [13, 74], + [12, 73], + [24, 147], + [12, 74], + [22, 147], + [11, 74], + [11, 74], + [21, 148], + [10, 74], + [19, 148], + [9, 74], + [9, 74], + [9, 75], + [17, 148], + [23, 224], + [7, 75], + [7, 75], + [13, 149], + [6, 75], + [11, 151], + [5, 75], + [5, 75], + [5, 76], + [4, 75], + [8, 151], + [3, 76], + [3, 76], + [3, 76], + [2, 76], + [2, 76], + [2, 77], + [1, 76], + [1, 77], + [1, 153], + [-1, 154], + [-1, 77], + [-3, 155], + [-5, 155], + [-3, 77], + [-8, 156], + [-15, 235], + [-6, 78], + [-21, 237], + [-17, 158], + [-30, 239], + [-36, 239], + [-28, 161], + [-30, 162], + [-34, 162], + [-18, 81], + [-19, 81], + [-40, 164], + [-22, 82], + [-23, 82], + [-24, 82], + [-50, 165], + [-56, 166], + [-29, 83], + [-31, 84], + [-32, 83], + [-34, 84], + [-35, 84], + [-36, 84], + [-38, 84], + [-40, 85], + [-41, 85], + [-43, 85], + [-91, 170], + [-49, 85], + [-51, 86], + [-53, 86], + [-112, 172], + [-60, 86], + [-62, 86], + [-65, 87], + [-68, 87], + [-71, 87], + [-74, 87], + [-77, 87], + [-165, 175], + [-179, 175], + [-96, 88], + [-101, 88], + [-214, 175], + [-115, 88], + [-121, 88], + [-126, 88], + [-132, 88], + [-138, 88], + [-145, 88], + [-313, 175], + [-168, 87], + [-176, 87], + [-186, 87], + [-195, 86], + [-205, 86], + [-217, 86], + [-227, 85], + [-240, 84], + [-253, 84], + [-267, 82], + [-282, 82], + [-297, 81], + [-313, 80], + [-331, 78], + [-350, 77], + [-369, 75], + [-389, 73], + [-412, 71], + [-433, 69], + [-458, 66], + [-482, 63], + [-507, 60], + [-533, 57], + [-1145, 101], + [-1251, 82], + [-663, 34], + [-687, 27], + [-710, 21], + [-728, 15], + [-745, 7], + [-759, 0], + [-769, -8], + [-1551, -41], + [-774, -34], + [-767, -43], + [-757, -52], + [-743, -61], + [-725, -71], + [-704, -81], + [-682, -90], + [-658, -100], + [-631, -111], + [-605, -121], + [-577, -132], + [-550, -143], + [-522, -154], + [-496, -168], + [-469, -180], + [-444, -196], + [-419, -212], + [-161, -90], + [-106, -62], + [-155, -96], + [-151, -99], + [-50, -34], + [-146, -105], + [-48, -36], + [-95, -73], + [-94, -76], + [-92, -78], + [-46, -40], + [-45, -40], + [-45, -41], + [-89, -85], + [-87, -88], + [-43, -45], + [-43, -46], + [-85, -95], + [-42, -49], + [-41, -50], + [-41, -51], + [-41, -53], + [-41, -54], + [-41, -55], + [-40, -57], + [-80, -119], + [-39, -63], + [-79, -132], + [-39, -70], + [-77, -149], + [-39, -81], + [-38, -85], + [-39, -91], + [-39, -98], + [-40, -107], + [-40, -118], + [-41, -134], + [-43, -160], + [-47, -207], + [-63, -387] + ], + [ + [80174, 45970], + [-143, -954], + [-1968, 630], + [-1543, 725], + [-1862, 1201], + [-1406, 1194], + [-1570, 1693], + [-954, 1246], + [-1248, 1916], + [-704, 1230], + [-977, 1879], + [-723, 1503], + [-1074, 2332], + [-2681, 5546], + [-86, 158], + [-65, 118], + [-220, 394], + [-135, 236], + [-230, 393], + [-94, 158], + [-47, 78], + [-144, 236], + [-24, 39], + [-147, 235], + [-50, 79], + [-176, 274], + [-103, 157], + [-130, 195], + [-106, 157], + [-244, 351], + [-196, 273], + [-143, 195], + [-29, 39], + [-297, 389], + [-91, 116], + [-62, 78], + [-93, 116], + [-223, 271], + [-197, 232], + [-134, 154], + [-68, 77], + [-138, 154], + [-70, 77], + [-71, 77], + [-217, 230], + [-73, 76], + [-112, 115], + [-114, 114], + [-233, 228], + [-241, 228], + [-41, 38], + [-166, 151], + [-127, 113], + [-86, 75], + [-87, 75], + [-88, 75], + [-225, 186], + [-185, 149], + [-47, 37], + [-191, 148], + [-196, 147], + [-100, 73], + [-204, 146], + [-210, 145], + [-107, 72], + [-164, 108], + [-167, 107], + [-229, 142], + [-418, 245], + [-62, 35], + [-252, 138], + [-393, 204], + [-415, 200], + [-364, 163], + [-227, 96], + [-394, 157], + [-247, 92], + [-3726, 877], + [-3335, 97], + [-2794, -340], + [-1562, -342], + [-67, 979], + [465, 117], + [236, 56], + [182, 41], + [154, 34], + [136, 29], + [342, 69], + [193, 37], + [174, 32], + [310, 54], + [140, 23], + [379, 57], + [171, 24], + [214, 28], + [250, 30], + [276, 30], + [299, 28], + [81, 7], + [402, 30], + [265, 16], + [251, 12], + [239, 8], + [228, 5], + [427, 3], + [396, -5], + [548, -21], + [663, -46], + [155, -14], + [152, -15], + [148, -16], + [146, -17], + [281, -36], + [271, -39], + [388, -63], + [247, -45], + [239, -47], + [232, -49], + [4210, -1542], + [2900, -1989], + [1976, -1973], + [2434, -3378], + [2514, -4778], + [266, -569], + [19, -41], + [19, -41], + [94, -203], + [169, -368], + [56, -122], + [131, -286], + [56, -123], + [56, -123], + [37, -81], + [56, -123], + [56, -123], + [56, -123], + [112, -247], + [56, -123], + [56, -123], + [75, -165], + [75, -165], + [132, -289], + [57, -124], + [57, -124], + [95, -207], + [38, -83], + [57, -124], + [96, -208], + [116, -249], + [39, -84], + [78, -167], + [39, -83], + [79, -167], + [99, -210], + [20, -42], + [20, -42], + [20, -42], + [20, -42], + [101, -210], + [102, -211], + [82, -169], + [62, -127], + [105, -212], + [42, -85], + [42, -85], + [107, -213], + [43, -85], + [65, -128], + [22, -43], + [22, -43], + [22, -43], + [22, -43], + [22, -43], + [134, -258], + [45, -86], + [68, -129], + [46, -87], + [23, -43], + [23, -43], + [70, -131], + [94, -173], + [24, -44], + [24, -44], + [72, -131], + [97, -175], + [74, -132], + [25, -44], + [25, -44], + [25, -44], + [25, -44], + [76, -132], + [26, -45], + [77, -133], + [52, -89], + [79, -133], + [80, -134], + [27, -45], + [27, -45], + [55, -90], + [27, -44], + [56, -91], + [28, -45], + [28, -45], + [28, -45], + [28, -45], + [28, -45], + [86, -137], + [117, -182], + [30, -46], + [120, -183], + [61, -92], + [93, -139], + [31, -46], + [64, -93], + [64, -93], + [64, -93], + [33, -47], + [33, -47], + [100, -141], + [34, -47], + [34, -47], + [34, -47], + [34, -47], + [35, -48], + [105, -143], + [108, -143], + [73, -96], + [37, -48], + [37, -48], + [38, -49], + [76, -97], + [38, -48], + [39, -49], + [39, -49], + [39, -49], + [40, -49], + [40, -49], + [40, -49], + [41, -50], + [82, -99], + [84, -99], + [85, -100], + [131, -151], + [135, -152], + [46, -51], + [46, -51], + [47, -51], + [47, -51], + [48, -52], + [48, -52], + [48, -51], + [100, -105], + [50, -52], + [102, -105], + [52, -53], + [106, -106], + [55, -54], + [54, -53], + [112, -108], + [114, -109], + [118, -110], + [60, -55], + [123, -111], + [126, -112], + [65, -57], + [66, -57], + [67, -57], + [137, -115], + [142, -117], + [148, -118], + [76, -60], + [157, -121], + [163, -123], + [85, -62], + [86, -62], + [89, -64], + [91, -64], + [190, -130], + [99, -66], + [102, -67], + [105, -68], + [108, -68], + [113, -70], + [117, -71], + [121, -73], + [127, -73], + [133, -76], + [139, -77], + [146, -79], + [156, -81], + [165, -84], + [46, -23], + [95, -47], + [150, -72], + [162, -75], + [205, -92], + [196, -84], + [106, -44], + [37, -15], + [77, -31], + [80, -32], + [175, -68], + [48, -18], + [100, -37], + [166, -60], + [127, -44], + [70, -24], + [75, -25], + [82, -27], + [91, -29], + [105, -33], + [127, -38], + [170, -50], + [275, -77] + ], + [ + [51285, 78565], + [-403, -2069], + [-1897, 57], + [-1287, 186], + [-1179, 291], + [-1226, 439], + [-1796, 921], + [-1703, 1200], + [-1418, 1235], + [-1749, 1761], + [-1427, 1551], + [-1510, 1655], + [-2380, 2438], + [-3032, 2561], + [-1718, 1152], + [-4288, 2075], + [-5177, 1432], + [-4657, 684], + [-6344, 374], + [666, 2058], + [3151, -81], + [1438, -63], + [1062, -58], + [858, -55], + [725, -52], + [631, -51], + [559, -50], + [957, -94], + [417, -46], + [740, -88], + [332, -43], + [311, -42], + [292, -41], + [535, -80], + [482, -78], + [223, -38], + [416, -74], + [562, -108], + [173, -35], + [631, -136], + [145, -33], + [276, -65], + [505, -126], + [232, -61], + [111, -30], + [109, -30], + [209, -59], + [295, -87], + [364, -112], + [171, -55], + [164, -54], + [80, -27], + [553, -195], + [486, -186], + [435, -178], + [392, -171], + [357, -165], + [327, -159], + [303, -155], + [281, -150], + [263, -145], + [247, -142], + [233, -138], + [219, -135], + [209, -132], + [198, -129], + [189, -126], + [181, -124], + [173, -122], + [167, -119], + [160, -117], + [154, -115], + [148, -113], + [144, -111], + [139, -110], + [135, -108], + [130, -106], + [127, -105], + [124, -104], + [120, -102], + [117, -100], + [114, -100], + [111, -98], + [109, -97], + [106, -96], + [103, -95], + [201, -186], + [98, -92], + [95, -90], + [94, -90], + [92, -89], + [90, -88], + [89, -87], + [87, -86], + [86, -86], + [84, -85], + [83, -84], + [81, -83], + [160, -164], + [78, -81], + [77, -81], + [76, -80], + [75, -79], + [74, -79], + [73, -78], + [72, -77], + [71, -77], + [70, -76], + [70, -76], + [69, -75], + [68, -75], + [67, -74], + [66, -73], + [66, -73], + [65, -73], + [128, -144], + [126, -142], + [62, -71], + [123, -139], + [60, -69], + [60, -69], + [59, -68], + [59, -68], + [59, -68], + [115, -134], + [57, -66], + [113, -132], + [56, -65], + [111, -130], + [109, -128], + [54, -64], + [107, -126], + [53, -63], + [53, -63], + [52, -62], + [156, -185], + [103, -122], + [101, -120], + [101, -120], + [99, -119], + [148, -176], + [49, -58], + [97, -116], + [48, -57], + [48, -57], + [48, -57], + [48, -57], + [48, -57], + [47, -56], + [95, -112], + [47, -56], + [47, -56], + [93, -110], + [93, -110], + [93, -109], + [46, -54], + [46, -54], + [92, -107], + [91, -107], + [91, -106], + [91, -105], + [91, -104], + [45, -52], + [45, -52], + [45, -52], + [90, -103], + [45, -51], + [45, -51], + [45, -51], + [45, -51], + [134, -151], + [45, -50], + [45, -50], + [45, -50], + [89, -99], + [45, -49], + [90, -99], + [89, -97], + [45, -49], + [45, -49], + [45, -48], + [45, -48], + [45, -48], + [45, -48], + [45, -48], + [45, -48], + [45, -48], + [45, -47], + [46, -48], + [45, -47], + [45, -47], + [91, -94], + [46, -47], + [91, -93], + [92, -93], + [46, -46], + [46, -46], + [93, -92], + [46, -45], + [47, -46], + [94, -91], + [46, -45], + [95, -90], + [47, -45], + [95, -90], + [96, -89], + [96, -89], + [49, -44], + [97, -88], + [49, -44], + [99, -88], + [100, -87], + [100, -87], + [101, -86], + [51, -43], + [103, -86], + [52, -43], + [157, -128], + [53, -42], + [161, -127], + [109, -84], + [55, -42], + [111, -83], + [57, -42], + [56, -41], + [57, -42], + [57, -41], + [58, -41], + [59, -42], + [58, -41], + [119, -82], + [61, -41], + [60, -40], + [123, -82], + [126, -81], + [128, -81], + [65, -40], + [66, -40], + [66, -40], + [67, -40], + [68, -40], + [69, -40], + [69, -39], + [71, -40], + [71, -40], + [72, -39], + [74, -40], + [74, -39], + [75, -39], + [77, -40], + [77, -39], + [79, -39], + [80, -39], + [81, -39], + [83, -38], + [84, -39], + [86, -39], + [88, -38], + [89, -39], + [91, -38], + [93, -39], + [95, -38], + [97, -38], + [100, -38], + [102, -38], + [105, -38], + [108, -38], + [111, -37], + [115, -38], + [119, -38], + [123, -37], + [127, -37], + [133, -37], + [139, -38], + [145, -37], + [154, -36], + [162, -37], + [173, -37], + [122, -24], + [51, -10], + [105, -19], + [27, -5], + [112, -19], + [29, -5], + [88, -14], + [31, -5], + [31, -5], + [129, -19], + [138, -19], + [112, -14], + [120, -14], + [129, -14], + [94, -9], + [100, -9], + [109, -9], + [120, -9], + [136, -9], + [75, -4], + [83, -4], + [93, -4], + [107, -5], + [131, -3], + [185, -4], + [179, -1] + ], + [ + [53678, 18643], + [1094, -1027], + [-216, -216], + [-129, -133], + [-100, -105], + [-83, -90], + [-73, -79], + [-66, -71], + [-60, -67], + [-56, -62], + [-52, -58], + [-50, -56], + [-91, -104], + [-83, -96], + [-77, -90], + [-36, -43], + [-70, -83], + [-33, -40], + [-95, -115], + [-30, -37], + [-29, -36], + [-29, -36], + [-28, -35], + [-27, -34], + [-27, -34], + [-78, -98], + [-25, -32], + [-49, -63], + [-47, -61], + [-23, -30], + [-23, -30], + [-22, -29], + [-22, -29], + [-22, -29], + [-21, -28], + [-63, -84], + [-80, -108], + [-39, -53], + [-19, -26], + [-73, -102], + [-18, -25], + [-18, -25], + [-128, -182], + [-120, -173], + [-112, -166], + [-106, -161], + [-101, -155], + [-96, -150], + [-91, -146], + [-88, -143], + [-84, -139], + [-81, -136], + [-78, -133], + [-75, -131], + [-72, -128], + [-70, -126], + [-68, -124], + [-66, -122], + [-64, -120], + [-62, -119], + [-60, -116], + [-59, -116], + [-56, -114], + [-56, -113], + [-54, -111], + [-52, -110], + [-51, -109], + [-50, -108], + [-49, -107], + [-47, -106], + [-47, -105], + [-45, -104], + [-44, -103], + [-43, -102], + [-42, -102], + [-41, -101], + [-40, -100], + [-39, -99], + [-38, -99], + [-38, -98], + [-36, -97], + [-36, -97], + [-34, -96], + [-34, -95], + [-33, -95], + [-32, -95], + [-32, -94], + [-30, -93], + [-30, -93], + [-29, -93], + [-28, -92], + [-28, -91], + [-27, -91], + [-26, -91], + [-25, -91], + [-24, -90], + [-24, -89], + [-23, -89], + [-22, -89], + [-22, -89], + [-20, -88], + [-20, -88], + [-19, -88], + [-19, -87], + [-17, -87], + [-17, -86], + [-16, -87], + [-16, -86], + [-14, -86], + [-14, -85], + [-13, -85], + [-12, -86], + [-11, -84], + [-11, -85], + [-9, -84], + [-9, -84], + [-8, -84], + [-7, -84], + [-6, -83], + [-5, -83], + [-4, -83], + [-3, -83], + [-2, -83], + [-1, -82], + [0, -83], + [1, -82], + [2, -82], + [8, -163], + [6, -81], + [7, -82], + [8, -81], + [10, -80], + [11, -81], + [12, -81], + [14, -80], + [15, -80], + [17, -81], + [19, -80], + [20, -79], + [22, -80], + [23, -80], + [26, -79], + [28, -79], + [29, -79], + [32, -79], + [34, -79], + [37, -79], + [38, -78], + [42, -79], + [44, -78], + [47, -78], + [49, -78], + [53, -77], + [56, -78], + [123, -155], + [67, -77], + [71, -76], + [75, -77], + [79, -76], + [85, -77], + [89, -76], + [195, -151], + [106, -75], + [113, -75], + [119, -75], + [260, -149], + [294, -147], + [161, -73], + [170, -72], + [181, -72], + [193, -72], + [206, -71], + [218, -70], + [233, -70], + [249, -69], + [548, -136], + [625, -132], + [346, -64], + [369, -63], + [819, -123], + [938, -115], + [518, -55], + [554, -53], + [1223, -98], + [1383, -86], + [754, -38], + [794, -34], + [833, -30], + [1771, -47], + [929, -16], + [950, -11], + [964, -6], + [971, 0], + [970, 5], + [960, 10], + [943, 15], + [920, 21], + [1747, 56], + [819, 35], + [1517, 81], + [696, 47], + [656, 50], + [1192, 108], + [539, 59], + [504, 61], + [471, 63], + [440, 65], + [410, 67], + [383, 69], + [357, 70], + [334, 72], + [603, 148], + [272, 76], + [492, 156], + [223, 79], + [208, 81], + [195, 81], + [183, 83], + [171, 83], + [161, 84], + [150, 85], + [141, 86], + [132, 86], + [124, 88], + [116, 88], + [108, 89], + [102, 89], + [95, 91], + [90, 91], + [83, 92], + [78, 92], + [72, 94], + [68, 94], + [63, 95], + [58, 95], + [54, 97], + [50, 97], + [46, 98], + [42, 99], + [39, 99], + [35, 101], + [32, 101], + [28, 102], + [26, 103], + [22, 104], + [20, 105], + [17, 106], + [14, 107], + [11, 108], + [9, 108], + [6, 110], + [4, 112], + [1, 112], + [-1, 113], + [-4, 115], + [-6, 116], + [-8, 117], + [-11, 119], + [-13, 121], + [-16, 121], + [-17, 124], + [-21, 125], + [-22, 127], + [-25, 129], + [-28, 131], + [-29, 133], + [-33, 135], + [-35, 138], + [-38, 140], + [-41, 144], + [-44, 146], + [-46, 149], + [-50, 152], + [-54, 157], + [-57, 161], + [-62, 165], + [-65, 170], + [-70, 175], + [-76, 182], + [-81, 190], + [-88, 197], + [-95, 207], + [-104, 218], + [-60, 122], + [-31, 62], + [-16, 32], + [-16, 32], + [-33, 65], + [-51, 100], + [-72, 138], + [-19, 36], + [-19, 36], + [-60, 111], + [-63, 115], + [-22, 40], + [-22, 40], + [-46, 83], + [-24, 43], + [-50, 87], + [-52, 91], + [-27, 47], + [-28, 48], + [-29, 49], + [-30, 50], + [-31, 52], + [-32, 54], + [-33, 55], + [-35, 57], + [-36, 59], + [-77, 125], + [-42, 68], + [-45, 70], + [-48, 75], + [-51, 80], + [-56, 87], + [-63, 95], + [-71, 107], + [-83, 125], + [-107, 155], + [-124, 184], + [-105, 139], + [1578, 757], + [763, -926], + [1110, -1455], + [890, -1266], + [1460, -2245], + [703, -1138], + [1339, -2154], + [1906, -2486], + [2954, -1659], + [-57545, -189], + [4456, 2721], + [1003, 1517], + [1259, 2246], + [921, 1704], + [1025, 1829], + [1059, 1750], + [1347, 1985], + [923, 1205], + [884, 1042], + [1207, 1261], + [668, 626] + ], + [ + [61190, 89054], + [-2005, -705], + [-1425, 1584], + [-1620, 1596], + [-3087, 2310], + [-5816, 2298], + [-8582, 1150], + [-8339, 68], + [-8985, -1004], + [-5146, -1754], + [-2735, -1844], + [-2173, -2353], + [-1726, -2677], + [-1449, -2814], + [-1019, -2173], + [-601, -1293], + [-819, -1719], + [-1182, -2293], + [-1323, -2223], + [-1271, -1788], + [-1014, -1202], + [-861, -883], + [98824, -1028], + [-1011, -735], + [-620, 1311], + [100, 68], + [162, 120], + [124, 94], + [98, 75], + [83, 64], + [73, 58], + [66, 53], + [61, 49], + [56, 46], + [103, 85], + [48, 40], + [45, 38], + [43, 37], + [42, 36], + [79, 68], + [74, 65], + [103, 92], + [32, 29], + [32, 29], + [61, 56], + [30, 28], + [29, 27], + [28, 26], + [56, 52], + [105, 100], + [25, 24], + [25, 24], + [119, 116], + [45, 45], + [22, 22], + [22, 22], + [22, 22], + [84, 85], + [80, 83], + [142, 149], + [133, 142], + [124, 137], + [118, 132], + [-99889, 127], + [106, 124], + [103, 121], + [98, 118], + [94, 115], + [91, 113], + [88, 111], + [85, 109], + [83, 107], + [80, 105], + [78, 104], + [76, 102], + [74, 100], + [72, 100], + [70, 98], + [69, 97], + [67, 96], + [66, 95], + [65, 94], + [63, 93], + [62, 93], + [61, 91], + [118, 181], + [114, 177], + [56, 88], + [55, 87], + [107, 173], + [52, 85], + [52, 85], + [50, 84], + [50, 84], + [50, 84], + [49, 83], + [48, 82], + [47, 82], + [94, 163], + [46, 81], + [45, 80], + [45, 80], + [88, 159], + [43, 79], + [43, 79], + [42, 78], + [42, 78], + [42, 78], + [41, 77], + [41, 78], + [40, 76], + [40, 77], + [79, 153], + [39, 75], + [38, 76], + [76, 151], + [38, 75], + [37, 74], + [74, 149], + [36, 74], + [36, 74], + [36, 74], + [71, 147], + [35, 73], + [35, 73], + [69, 146], + [68, 145], + [67, 144], + [33, 72], + [33, 72], + [33, 72], + [65, 143], + [32, 71], + [32, 71], + [32, 71], + [32, 71], + [63, 142], + [31, 70], + [62, 141], + [62, 141], + [91, 210], + [60, 139], + [89, 209], + [88, 208], + [29, 69], + [29, 69], + [58, 139], + [57, 137], + [57, 138], + [85, 206], + [28, 68], + [56, 137], + [83, 205], + [28, 69], + [55, 136], + [55, 136], + [27, 68], + [82, 204], + [27, 68], + [27, 68], + [27, 68], + [27, 68], + [27, 68], + [54, 135], + [27, 68], + [27, 68], + [80, 203], + [27, 68], + [27, 68], + [53, 135], + [27, 68], + [53, 135], + [27, 68], + [53, 135], + [27, 68], + [53, 135], + [27, 68], + [53, 135], + [27, 68], + [53, 135], + [27, 68], + [27, 68], + [27, 68], + [53, 135], + [27, 68], + [27, 68], + [27, 68], + [27, 68], + [54, 135], + [82, 204], + [27, 68], + [82, 204], + [55, 137], + [83, 204], + [56, 137], + [28, 68], + [56, 137], + [85, 206], + [57, 137], + [29, 69], + [116, 276], + [29, 68], + [89, 208], + [120, 277], + [61, 139], + [61, 139], + [31, 70], + [63, 140], + [63, 140], + [32, 70], + [65, 140], + [98, 211], + [67, 141], + [136, 284], + [105, 213], + [71, 143], + [36, 71], + [37, 72], + [74, 144], + [37, 71], + [38, 72], + [155, 290], + [39, 72], + [122, 218], + [41, 73], + [42, 74], + [85, 146], + [87, 147], + [135, 222], + [46, 74], + [94, 148], + [48, 75], + [48, 74], + [99, 150], + [51, 75], + [104, 150], + [107, 151], + [167, 228], + [116, 152], + [59, 76], + [61, 77], + [124, 154], + [130, 154], + [66, 77], + [138, 155], + [71, 78], + [146, 156], + [76, 78], + [157, 157], + [81, 79], + [83, 79], + [173, 158], + [182, 159], + [192, 159], + [100, 80], + [209, 161], + [109, 80], + [230, 161], + [245, 162], + [262, 162], + [138, 81], + [143, 81], + [304, 163], + [329, 163], + [358, 163], + [390, 163], + [210, 81], + [219, 81], + [230, 81], + [243, 81], + [524, 161], + [284, 80], + [301, 80], + [656, 157], + [359, 78], + [381, 77], + [407, 76], + [433, 75], + [464, 74], + [1026, 143], + [568, 69], + [610, 67], + [1355, 126], + [1555, 114], + [1773, 97], + [970, 41], + [1023, 36], + [1074, 30], + [1119, 23], + [1155, 16], + [2382, 9], + [1203, -7], + [1194, -15], + [1175, -23], + [1143, -31], + [2161, -84], + [1958, -111], + [898, -65], + [1633, -146], + [740, -80], + [691, -85], + [647, -89], + [1170, -189], + [531, -100], + [498, -103], + [468, -107], + [440, -109], + [416, -113], + [392, -115], + [372, -119], + [353, -121], + [336, -124], + [320, -127], + [305, -129], + [293, -133], + [280, -135], + [270, -139], + [260, -141], + [252, -145], + [243, -148], + [236, -151], + [230, -155], + [224, -160], + [220, -163], + [214, -167], + [212, -172], + [208, -177], + [206, -183], + [205, -188], + [203, -195], + [203, -202], + [204, -210], + [205, -219], + [209, -229], + [212, -241], + [217, -255], + [59, -70], + [30, -36], + [60, -73], + [30, -37], + [61, -74], + [31, -38], + [62, -77], + [63, -78], + [32, -40], + [32, -40], + [65, -82], + [33, -42], + [33, -42], + [136, -175], + [70, -91], + [108, -141], + [37, -49], + [38, -50], + [115, -154], + [40, -53], + [82, -110], + [42, -57], + [43, -58], + [44, -60], + [45, -61], + [46, -63], + [47, -65], + [48, -67], + [50, -69], + [160, -223], + [58, -81], + [61, -85], + [64, -90], + [67, -95], + [73, -103], + [78, -111], + [86, -123], + [98, -140], + [115, -165], + [149, -215], + [289, -416] + ], + [ + [47634, 47387], + [-111, -933], + [-2384, 447], + [-1181, 398], + [-1037, 465], + [-1455, 861], + [-1228, 951], + [-842, 790], + [-1278, 1453], + [-917, 1254], + [-1377, 2262], + [-729, 1383], + [-1345, 2837], + [-1177, 2643], + [-2373, 4977], + [-252, 467], + [-23, 42], + [-94, 170], + [-192, 342], + [-98, 171], + [-175, 300], + [-102, 172], + [-156, 259], + [-133, 216], + [-81, 130], + [-27, 43], + [-55, 87], + [-83, 130], + [-56, 87], + [-142, 218], + [-87, 131], + [-237, 350], + [-61, 88], + [-154, 219], + [-255, 353], + [-198, 266], + [-136, 178], + [-69, 89], + [-140, 178], + [-107, 134], + [-109, 134], + [-186, 224], + [-38, 45], + [-351, 405], + [-40, 45], + [-81, 90], + [-124, 136], + [-298, 317], + [-88, 91], + [-89, 91], + [-90, 91], + [-423, 411], + [-247, 229], + [-204, 183], + [-265, 230], + [-109, 92], + [-167, 138], + [-288, 231], + [-59, 46], + [-366, 277], + [-191, 139], + [-263, 185], + [-344, 231], + [-5165, 2295], + [-2036, 426], + [-2693, 240], + [-3035, -121], + [13, 942], + [510, 51], + [260, 21], + [201, 15], + [454, 28], + [124, 6], + [116, 5], + [211, 8], + [98, 3], + [268, 6], + [240, 3], + [357, 0], + [317, -5], + [287, -8], + [55, -2], + [54, -2], + [207, -9], + [148, -8], + [234, -14], + [222, -16], + [127, -10], + [302, -27], + [284, -29], + [266, -31], + [253, -33], + [241, -34], + [230, -35], + [220, -36], + [211, -37], + [204, -38], + [387, -78], + [363, -80], + [173, -41], + [332, -83], + [316, -85], + [152, -43], + [294, -87], + [142, -44], + [138, -44], + [400, -134], + [128, -45], + [370, -136], + [685, -276], + [213, -93], + [3967, -2422], + [2106, -1980], + [2311, -2973], + [3369, -6265], + [115, -251], + [76, -167], + [207, -458], + [112, -249], + [93, -208], + [37, -83], + [129, -289], + [92, -207], + [55, -124], + [55, -124], + [73, -165], + [128, -288], + [146, -329], + [73, -164], + [73, -164], + [73, -164], + [55, -123], + [55, -123], + [55, -123], + [110, -245], + [37, -82], + [37, -82], + [111, -245], + [74, -163], + [56, -123], + [56, -122], + [75, -163], + [132, -286], + [57, -122], + [96, -204], + [38, -81], + [116, -245], + [117, -244], + [59, -122], + [99, -204], + [20, -41], + [60, -122], + [81, -163], + [20, -40], + [41, -82], + [82, -163], + [41, -81], + [83, -163], + [21, -41], + [21, -41], + [21, -41], + [21, -41], + [85, -163], + [64, -122], + [65, -123], + [87, -163], + [22, -41], + [22, -41], + [89, -163], + [45, -82], + [45, -82], + [45, -81], + [23, -41], + [23, -41], + [23, -41], + [23, -41], + [23, -41], + [23, -41], + [47, -82], + [47, -82], + [47, -82], + [24, -41], + [24, -41], + [24, -41], + [24, -41], + [24, -41], + [24, -41], + [49, -83], + [49, -82], + [74, -123], + [25, -41], + [101, -165], + [77, -124], + [104, -165], + [106, -165], + [54, -83], + [54, -83], + [27, -41], + [55, -83], + [56, -83], + [56, -83], + [56, -83], + [57, -83], + [29, -42], + [29, -42], + [58, -83], + [59, -83], + [30, -42], + [30, -42], + [30, -42], + [60, -83], + [31, -42], + [31, -42], + [31, -42], + [31, -42], + [31, -42], + [31, -42], + [32, -42], + [32, -42], + [32, -42], + [32, -42], + [32, -42], + [165, -211], + [136, -169], + [104, -127], + [71, -85], + [72, -85], + [109, -128], + [112, -128], + [38, -43], + [38, -43], + [77, -85], + [39, -43], + [119, -130], + [81, -86], + [41, -43], + [83, -87], + [128, -130], + [43, -43], + [44, -44], + [88, -87], + [45, -44], + [45, -44], + [138, -131], + [95, -88], + [97, -89], + [148, -133], + [102, -89], + [211, -179], + [55, -45], + [55, -45], + [55, -45], + [172, -136], + [118, -91], + [61, -46], + [123, -91], + [63, -46], + [129, -93], + [133, -93], + [68, -46], + [70, -47], + [142, -94], + [74, -48], + [74, -47], + [76, -48], + [78, -48], + [79, -48], + [81, -48], + [167, -97], + [87, -49], + [88, -49], + [91, -50], + [189, -99], + [99, -51], + [206, -102], + [108, -51], + [112, -52], + [117, -53], + [120, -53], + [126, -53], + [131, -54], + [138, -55], + [145, -56], + [154, -57], + [208, -74], + [242, -80], + [25, -8], + [106, -33], + [55, -17], + [114, -34], + [90, -26], + [94, -26], + [99, -27], + [70, -19], + [148, -38], + [121, -29], + [42, -10], + [89, -21], + [95, -21], + [50, -11], + [107, -23], + [57, -12], + [61, -12], + [131, -25], + [74, -14], + [168, -30], + [220, -35], + [156, -23], + [314, -41] + ] + ] +} diff --git a/docs/static/data/examples/geo/submarine-cables-landing-points.json b/docs/static/data/examples/geo/submarine-cables-landing-points.json new file mode 100644 index 000000000..d6276158f --- /dev/null +++ b/docs/static/data/examples/geo/submarine-cables-landing-points.json @@ -0,0 +1,15780 @@ +{ + "type": "FeatureCollection", + "name": "landing points", + "crs": { + "type": "name", + "properties": { + "name": "urn:ogc:def:crs:OGC:1.3:CRS84" + } + }, + "features": [ + { + "type": "Feature", + "properties": { + "id": "changi-south-singapore", + "name": "Changi South, Singapore", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.98701228871877, 1.389044778365076] + } + }, + { + "type": "Feature", + "properties": { + "id": "yanbu-saudi-arabia", + "name": "Yanbu, Saudi Arabia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [38.107016, 24.07061700000014] + } + }, + { + "type": "Feature", + "properties": { + "id": "duba-saudi-arabia", + "name": "Duba, Saudi Arabia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [35.696529, 27.354019000000108] + } + }, + { + "type": "Feature", + "properties": { + "id": "timpaki-greece", + "name": "Timpaki, Greece", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [24.7684, 35.07163] + } + }, + { + "type": "Feature", + "properties": { + "id": "thorlakshofn-iceland", + "name": "Thorlakshofn, Iceland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-21.378120000000365, 63.856257999999855] + } + }, + { + "type": "Feature", + "properties": { + "id": "vladivostok-russia", + "name": "Vladivostok, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [131.91075500000053, 43.15461600000029] + } + }, + { + "type": "Feature", + "properties": { + "id": "murmansk-russia", + "name": "Murmansk, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [33.08685, 68.97279] + } + }, + { + "type": "Feature", + "properties": { + "id": "okrug-russia", + "name": "Okrug, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [61.66370000000029, 69.7512] + } + }, + { + "type": "Feature", + "properties": { + "id": "sakha-republic-russia", + "name": "Sakha Republic, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [128.8645, 71.6375] + } + }, + { + "type": "Feature", + "properties": { + "id": "pevek-russia", + "name": "Pevek, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [170.30700000000033, 69.70289999999989] + } + }, + { + "type": "Feature", + "properties": { + "id": "anadyr-russia", + "name": "Anadyr, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [177.50214600000047, 64.727191] + } + }, + { + "type": "Feature", + "properties": { + "id": "petropavlovsk-kamchatsky-russia", + "name": "Petropavlovsk-Kamchatsky, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [158.6500000000004, 53.016667] + } + }, + { + "type": "Feature", + "properties": { + "id": "yuzhno-sakhalinsk-russia", + "name": "Yuzhno-Sakhalinsk, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [142.72619600000067, 46.94897100000031] + } + }, + { + "type": "Feature", + "properties": { + "id": "nakhodka-russia", + "name": "Nakhodka, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [132.874012, 42.812626] + } + }, + { + "type": "Feature", + "properties": { + "id": "dikson-russia", + "name": "Dikson, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [80.531, 73.5077] + } + }, + { + "type": "Feature", + "properties": { + "id": "kaikoura-new-zealand", + "name": "Kaikoura, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [173.68299899999985, -42.402699000000126] + } + }, + { + "type": "Feature", + "properties": { + "id": "auckland-new-zealand", + "name": "Auckland, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [174.7704190000002, -36.88420899999963] + } + }, + { + "type": "Feature", + "properties": { + "id": "wellington-new-zealand", + "name": "Wellington, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [174.76712099999978, -41.28051500000012] + } + }, + { + "type": "Feature", + "properties": { + "id": "christchurch-new-zealand", + "name": "Christchurch, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [172.6362254000002, -43.53205440000025] + } + }, + { + "type": "Feature", + "properties": { + "id": "raglan-new-zealand", + "name": "Raglan, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [174.8717940000005, -37.80140599999979] + } + }, + { + "type": "Feature", + "properties": { + "id": "new-plymouth-new-zealand", + "name": "New Plymouth, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [174.0833330000004, -39.06666699999974] + } + }, + { + "type": "Feature", + "properties": { + "id": "paraparaumu-new-zealand", + "name": "Paraparaumu, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [174.99746700000057, -40.91911600000029] + } + }, + { + "type": "Feature", + "properties": { + "id": "whanganui-new-zealand", + "name": "Whanganui, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [175.05000000000055, -39.933333000000374] + } + }, + { + "type": "Feature", + "properties": { + "id": "waikanae-new-zealand", + "name": "Waikanae, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [175.051956, -40.862789] + } + }, + { + "type": "Feature", + "properties": { + "id": "titahi-bay-new-zealand", + "name": "Titahi Bay, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [174.83800000000033, -41.1058] + } + }, + { + "type": "Feature", + "properties": { + "id": "oara-new-zealand", + "name": "Oara, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [173.50613300000035, -42.51606] + } + }, + { + "type": "Feature", + "properties": { + "id": "gran-canaria-canary-islands-spain", + "name": "Gran Canaria, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-15.596565000000169, 27.957734999999843] + } + }, + { + "type": "Feature", + "properties": { + "id": "carana-seychelles", + "name": "Carana, Seychelles", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [55.453028999999816, -4.565748999999727] + } + }, + { + "type": "Feature", + "properties": { + "id": "mellieha-malta", + "name": "Mellieha, Malta", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.35010000000051, 35.95239999999956] + } + }, + { + "type": "Feature", + "properties": { + "id": "tuas-singapore", + "name": "Tuas, Singapore", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.64621000000031, 1.338645999999613] + } + }, + { + "type": "Feature", + "properties": { + "id": "mumbai-india", + "name": "Mumbai, India", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [72.87586599999972, 19.07608000000056] + } + }, + { + "type": "Feature", + "properties": { + "id": "chennai-india", + "name": "Chennai, India", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [80.24304900000018, 13.06391799999983] + } + }, + { + "type": "Feature", + "properties": { + "id": "satun-thailand", + "name": "Satun, Thailand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [100.066118, 6.613467] + } + }, + { + "type": "Feature", + "properties": { + "id": "morib-malaysia", + "name": "Morib, Malaysia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [101.4436, 2.751199999999614] + } + }, + { + "type": "Feature", + "properties": { + "id": "matara-sri-lanka", + "name": "Matara, Sri Lanka", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [80.53991299999987, 5.940826] + } + }, + { + "type": "Feature", + "properties": { + "id": "salalah-oman", + "name": "Salalah, Oman", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [54.148039, 17.095866] + } + }, + { + "type": "Feature", + "properties": { + "id": "sidi-kerir-egypt", + "name": "Sidi Kerir, Egypt", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [29.672355999999496, 31.047639999999745] + } + }, + { + "type": "Feature", + "properties": { + "id": "zafarana-egypt", + "name": "Zafarana, Egypt", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [32.64989399999973, 29.116661999999593] + } + }, + { + "type": "Feature", + "properties": { + "id": "savona-italy", + "name": "Savona, Italy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [8.483793000000247, 44.305778] + } + }, + { + "type": "Feature", + "properties": { + "id": "praia-grande-brazil", + "name": "Praia Grande, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-46.41250299999953, -24.00887299999971] + } + }, + { + "type": "Feature", + "properties": { + "id": "punta-del-este-uruguay", + "name": "Punta del Este, Uruguay", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-54.94999999999959, -34.966666999999546] + } + }, + { + "type": "Feature", + "properties": { + "id": "las-toninas-argentina", + "name": "Las Toninas, Argentina", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-56.695511999999454, -36.472522999999654] + } + }, + { + "type": "Feature", + "properties": { + "id": "djibouti-city-djibouti", + "name": "Djibouti City, Djibouti", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [43.1458333, 11.598738889999936] + } + }, + { + "type": "Feature", + "properties": { + "id": "shanghai-china", + "name": "Shanghai, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.47258699999978, 31.247570999999652] + } + }, + { + "type": "Feature", + "properties": { + "id": "gianyar-indonesia", + "name": "Gianyar, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [115.33144100000013, -8.536715000000129] + } + }, + { + "type": "Feature", + "properties": { + "id": "denpasar-indonesia", + "name": "Denpasar, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [115.22151899999974, -8.65666] + } + }, + { + "type": "Feature", + "properties": { + "id": "pringgabaya-indonesia", + "name": "Pringgabaya, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [116.6549200000002, -8.537099000000126] + } + }, + { + "type": "Feature", + "properties": { + "id": "arica-chile", + "name": "Arica, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-70.30674999999974, -18.473380999999762] + } + }, + { + "type": "Feature", + "properties": { + "id": "iquique-chile", + "name": "Iquique, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-70.14222300000023, -20.21669999999972] + } + }, + { + "type": "Feature", + "properties": { + "id": "antofagasta-chile", + "name": "Antofagasta, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-70.3999999999996, -23.65] + } + }, + { + "type": "Feature", + "properties": { + "id": "la-serena-chile", + "name": "La Serena, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-71.250204, -29.906301000000383] + } + }, + { + "type": "Feature", + "properties": { + "id": "valparaso-chile", + "name": "Valparaíso, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-71.62031099999989, -33.045521] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-montt-chile", + "name": "Puerto Montt, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-72.95341899999967, -41.460379] + } + }, + { + "type": "Feature", + "properties": { + "id": "talcahuano-chile", + "name": "Talcahuano, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-73.116982, -36.724785000000224] + } + }, + { + "type": "Feature", + "properties": { + "id": "san-antonio-chile", + "name": "San Antonio, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-71.613065, -33.58364699999987] + } + }, + { + "type": "Feature", + "properties": { + "id": "valdivia-chile", + "name": "Valdivia, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-73.24583299999982, -39.813889] + } + }, + { + "type": "Feature", + "properties": { + "id": "tocopilla-chile", + "name": "Tocopilla, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-70.19765799999962, -22.088377999999864] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-saavedra-chile", + "name": "Puerto Saavedra, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-73.39676999999965, -38.78713000000042] + } + }, + { + "type": "Feature", + "properties": { + "id": "caldera-chile", + "name": "Caldera, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-70.812357, -27.061992000000203] + } + }, + { + "type": "Feature", + "properties": { + "id": "constitucin-chile", + "name": "Constitución, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-72.416068, -35.318371] + } + }, + { + "type": "Feature", + "properties": { + "id": "jdaide-lebanon", + "name": "Jdaide, Lebanon", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [35.56304299999965, 33.89190000000016] + } + }, + { + "type": "Feature", + "properties": { + "id": "playa-blanca-canary-islands-spain", + "name": "Playa Blanca, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-13.827319999999844, 28.863419999999763] + } + }, + { + "type": "Feature", + "properties": { + "id": "rock-sound-bahamas", + "name": "Rock Sound, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-76.5744468253916, 24.424987000000584] + } + }, + { + "type": "Feature", + "properties": { + "id": "west-island-cocos-keeling-islands", + "name": "West Island, Cocos (Keeling) Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [96.83231500000059, -12.193114000000236] + } + }, + { + "type": "Feature", + "properties": { + "id": "preveza-greece", + "name": "Preveza, Greece", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [20.75171500000016, 38.9592669999997] + } + }, + { + "type": "Feature", + "properties": { + "id": "crotone-italy", + "name": "Crotone, Italy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [17.127150000000228, 39.080669] + } + }, + { + "type": "Feature", + "properties": { + "id": "dakhla-morocco", + "name": "Dakhla, Morocco", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-15.934426000000258, 23.721081] + } + }, + { + "type": "Feature", + "properties": { + "id": "waingapu-indonesia", + "name": "Waingapu, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [120.25291400000029, -9.646107999999629] + } + }, + { + "type": "Feature", + "properties": { + "id": "sumbawa-besar-indonesia", + "name": "Sumbawa Besar, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [118.08221699999959, -8.84115] + } + }, + { + "type": "Feature", + "properties": { + "id": "lombok-indonesia", + "name": "Lombok, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [116.07251999999957, -8.561430000000428] + } + }, + { + "type": "Feature", + "properties": { + "id": "padang-galak-indonesia", + "name": "Padang Galak, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [115.26056999999972, -8.6571] + } + }, + { + "type": "Feature", + "properties": { + "id": "agat-gu-united-states", + "name": "Agat, GU, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [144.6575300000005, 13.38530999999952] + } + }, + { + "type": "Feature", + "properties": { + "id": "tanjung-pakis-indonesia", + "name": "Tanjung Pakis, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [107.12089678739565, -5.981255891395705] + } + }, + { + "type": "Feature", + "properties": { + "id": "eureka-ca-united-states", + "name": "Eureka, CA, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-124.159554, 40.80325500000026] + } + }, + { + "type": "Feature", + "properties": { + "id": "george-town-cayman-islands", + "name": "George Town, Cayman Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-81.381704, 19.2966] + } + }, + { + "type": "Feature", + "properties": { + "id": "montego-bay-jamaica", + "name": "Montego Bay, Jamaica", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-77.92137900000016, 18.46936000000045] + } + }, + { + "type": "Feature", + "properties": { + "id": "ocho-rios-jamaica", + "name": "Ocho Rios, Jamaica", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-77.10319145653193, 18.398554763480178] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-general-villamil-ecuador", + "name": "Puerto General Villamil, Ecuador", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-90.962113, -0.961038000000599] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-ayora-ecuador", + "name": "Puerto Ayora, Ecuador", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-90.311297, -0.742407000000526] + } + }, + { + "type": "Feature", + "properties": { + "id": "tebingtinggi-island-indonesia", + "name": "Tebingtinggi Island, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [102.66701999999972, 0.932559999999683] + } + }, + { + "type": "Feature", + "properties": { + "id": "wall-township-nj-united-states", + "name": "Wall Township, NJ, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-74.06287378610239, 40.15288660362225] + } + }, + { + "type": "Feature", + "properties": { + "id": "virginia-beach-va-united-states", + "name": "Virginia Beach, VA, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-76.05919805548166, 36.75501822092653] + } + }, + { + "type": "Feature", + "properties": { + "id": "myrtle-beach-sc-united-states", + "name": "Myrtle Beach, SC, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-78.88267627991215, 33.69356806481849] + } + }, + { + "type": "Feature", + "properties": { + "id": "jacksonville-fl-united-states", + "name": "Jacksonville, FL, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-81.65572119046146, 30.33203468427115] + } + }, + { + "type": "Feature", + "properties": { + "id": "sunny-isles-fl-united-states", + "name": "Sunny Isles, FL, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-80.12156700383323, 25.93848705585839] + } + }, + { + "type": "Feature", + "properties": { + "id": "igneada-turkey", + "name": "Igneada, Turkey", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [27.985308316539033, 41.88417700854285] + } + }, + { + "type": "Feature", + "properties": { + "id": "mangalia-romania", + "name": "Mangalia, Romania", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [28.582768830792418, 43.817203429780506] + } + }, + { + "type": "Feature", + "properties": { + "id": "varna-bulgaria", + "name": "Varna, Bulgaria", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [27.912847430370874, 43.208378859398294] + } + }, + { + "type": "Feature", + "properties": { + "id": "istanbul-turkey", + "name": "Istanbul, Turkey", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [28.98608885757659, 41.040611420515205] + } + }, + { + "type": "Feature", + "properties": { + "id": "natuna-indonesia", + "name": "Natuna, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [108.1428687196711, 3.945663654321777] + } + }, + { + "type": "Feature", + "properties": { + "id": "batam-indonesia", + "name": "Batam, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.96250058733321, 1.134724535942212] + } + }, + { + "type": "Feature", + "properties": { + "id": "lingga-indonesia", + "name": "Lingga, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [104.63544932935977, -0.162758734486573] + } + }, + { + "type": "Feature", + "properties": { + "id": "singkawang-indonesia", + "name": "Singkawang, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [108.98720405903603, 0.906013564379663] + } + }, + { + "type": "Feature", + "properties": { + "id": "terempa-indonesia", + "name": "Terempa, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [106.21108297879121, 3.207108027466347] + } + }, + { + "type": "Feature", + "properties": { + "id": "dumai-indonesia", + "name": "Dumai, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [101.44763420482607, 1.665606179943552] + } + }, + { + "type": "Feature", + "properties": { + "id": "bengkalis-indonesia", + "name": "Bengkalis, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [102.08010445990314, 1.489196199854774] + } + }, + { + "type": "Feature", + "properties": { + "id": "kuala-tungkal-indonesia", + "name": "Kuala Tungkal, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.46318453480333, -0.823447909986214] + } + }, + { + "type": "Feature", + "properties": { + "id": "karimun-indonesia", + "name": "Karimun, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.40488379485404, 0.769809997522032] + } + }, + { + "type": "Feature", + "properties": { + "id": "ranai-indonesia", + "name": "Ranai, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [108.37748769408987, 3.940902007893783] + } + }, + { + "type": "Feature", + "properties": { + "id": "bintan-indonesia", + "name": "Bintan, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [104.4258063403719, 1.136696382475179] + } + }, + { + "type": "Feature", + "properties": { + "id": "chikura-japan", + "name": "Chikura, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [139.95466259014782, 34.97665774488098] + } + }, + { + "type": "Feature", + "properties": { + "id": "busan-south-korea", + "name": "Busan, South Korea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [128.99929925728011, 35.17014221411404] + } + }, + { + "type": "Feature", + "properties": { + "id": "shantou-china", + "name": "Shantou, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [116.67547986258941, 23.35455466321301] + } + }, + { + "type": "Feature", + "properties": { + "id": "kuantan-malaysia", + "name": "Kuantan, Malaysia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.32255963442319, 3.815165294464947] + } + }, + { + "type": "Feature", + "properties": { + "id": "kitaibaraki-japan", + "name": "Kitaibaraki, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [140.7509510885496, 36.80178305286864] + } + }, + { + "type": "Feature", + "properties": { + "id": "lantau-island-china", + "name": "Lantau Island, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [113.94833335702552, 22.271491582355765] + } + }, + { + "type": "Feature", + "properties": { + "id": "chongming-china", + "name": "Chongming, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.39520308159317, 31.61988322143398] + } + }, + { + "type": "Feature", + "properties": { + "id": "katong-singapore", + "name": "Katong, Singapore", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.90468812828809, 1.309281803574862] + } + }, + { + "type": "Feature", + "properties": { + "id": "batangas-philippines", + "name": "Batangas, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.06492987806163, 13.765553306627453] + } + }, + { + "type": "Feature", + "properties": { + "id": "tanshui-taiwan", + "name": "Tanshui, Taiwan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.46258584635851, 25.18136115573813] + } + }, + { + "type": "Feature", + "properties": { + "id": "casablanca-morocco", + "name": "Casablanca, Morocco", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-7.631939228454826, 33.605388222844965] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-baquerizo-moreno-ecuador", + "name": "Puerto Baquerizo Moreno, Ecuador", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-89.61434465171453, -0.909204747199169] + } + }, + { + "type": "Feature", + "properties": { + "id": "mombasa-kenya", + "name": "Mombasa, Kenya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [39.672848865100434, -4.05301193811178] + } + }, + { + "type": "Feature", + "properties": { + "id": "karachi-pakistan", + "name": "Karachi, Pakistan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [67.02854237669558, 24.88968414835756] + } + }, + { + "type": "Feature", + "properties": { + "id": "marseille-france", + "name": "Marseille, France", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [5.372519159869853, 43.2935822274014] + } + }, + { + "type": "Feature", + "properties": { + "id": "berbera-somalia", + "name": "Berbera, Somalia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [45.01090660700845, 10.435139839597326] + } + }, + { + "type": "Feature", + "properties": { + "id": "kalba-united-arab-emirates", + "name": "Kalba, United Arab Emirates", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [56.33997572982662, 25.05152380937409] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-sudan-sudan", + "name": "Port Sudan, Sudan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [37.21970118887137, 19.6155521522995] + } + }, + { + "type": "Feature", + "properties": { + "id": "palermo-italy", + "name": "Palermo, Italy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [13.358389967448261, 38.1214528789738] + } + }, + { + "type": "Feature", + "properties": { + "id": "mocha-yemen", + "name": "Mocha, Yemen", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [43.247333637589975, 13.320293944780644] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-said-egypt", + "name": "Port Said, Egypt", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [32.28447519284367, 31.259288581351] + } + }, + { + "type": "Feature", + "properties": { + "id": "ras-ghareb-egypt", + "name": "Ras Ghareb, Egypt", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [33.08279005699819, 28.36591485118123] + } + }, + { + "type": "Feature", + "properties": { + "id": "bizerte-tunisia", + "name": "Bizerte, Tunisia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [9.867340194446399, 37.27679632943787] + } + }, + { + "type": "Feature", + "properties": { + "id": "bejaia-algeria", + "name": "Bejaia, Algeria", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [5.066379240023281, 36.75703293290604] + } + }, + { + "type": "Feature", + "properties": { + "id": "clarenville-nl-canada", + "name": "Clarenville, NL, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-53.964548661846536, 48.168222910535945] + } + }, + { + "type": "Feature", + "properties": { + "id": "iqaluit-nu-canada", + "name": "Iqaluit, NU, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-68.51972585745135, 63.74861192041047] + } + }, + { + "type": "Feature", + "properties": { + "id": "zeebrugge-belgium", + "name": "Zeebrugge, Belgium", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [3.207005557221095, 51.330720666926] + } + }, + { + "type": "Feature", + "properties": { + "id": "zandvoort-netherlands", + "name": "Zandvoort, Netherlands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [4.527219465719213, 52.37040617053003] + } + }, + { + "type": "Feature", + "properties": { + "id": "sizewell-united-kingdom", + "name": "Sizewell, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [1.620287931266688, 52.207129508183186] + } + }, + { + "type": "Feature", + "properties": { + "id": "thorpeness-united-kingdom", + "name": "Thorpeness, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [1.613061373886069, 52.180842493763265] + } + }, + { + "type": "Feature", + "properties": { + "id": "callantsoog-netherlands", + "name": "Callantsoog, Netherlands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [4.700758740675326, 52.8369263006513] + } + }, + { + "type": "Feature", + "properties": { + "id": "winterton-on-sea-united-kingdom", + "name": "Winterton-on-Sea, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [1.693546515543716, 52.71520907724292] + } + }, + { + "type": "Feature", + "properties": { + "id": "rurutu-french-polynesia", + "name": "Rurutu, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-151.3428793820872, -22.451280119948564] + } + }, + { + "type": "Feature", + "properties": { + "id": "tubuai-french-polynesia", + "name": "Tubuai, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-149.48591885045477, -23.346958549161855] + } + }, + { + "type": "Feature", + "properties": { + "id": "les-les-de-la-madeleine-qc-canada", + "name": "Les Îles-de-la-Madeleine, QC, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.95570010196184, 47.382587543938286] + } + }, + { + "type": "Feature", + "properties": { + "id": "lanse--beaufils-qc-canada", + "name": "L'Anse-à-Beaufils, QC, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.30896411288765, 48.4717699721746] + } + }, + { + "type": "Feature", + "properties": { + "id": "letkokkon-myanmar", + "name": "Letkokkon, Myanmar", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [96.16200172862082, 16.34039907601519] + } + }, + { + "type": "Feature", + "properties": { + "id": "soyo-angola", + "name": "Soyo, Angola", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.352112369863505, -6.141027019376253] + } + }, + { + "type": "Feature", + "properties": { + "id": "cabinda-angola", + "name": "Cabinda, Angola", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.18983221138734, -5.556551942091261] + } + }, + { + "type": "Feature", + "properties": { + "id": "false-pass-ak-united-states", + "name": "False Pass, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-163.41500012444857, 54.850929297440445] + } + }, + { + "type": "Feature", + "properties": { + "id": "akutan-ak-united-states", + "name": "Akutan, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-165.77305662048317, 54.13564624654387] + } + }, + { + "type": "Feature", + "properties": { + "id": "kodiak-ak-united-states", + "name": "Kodiak, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-152.39514861704993, 57.794429412027824] + } + }, + { + "type": "Feature", + "properties": { + "id": "king-cove-ak-united-states", + "name": "King Cove, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-162.30442046685764, 55.04922413917561] + } + }, + { + "type": "Feature", + "properties": { + "id": "cold-bay-ak-united-states", + "name": "Cold Bay, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-162.7040295587709, 55.204141643227956] + } + }, + { + "type": "Feature", + "properties": { + "id": "sand-point-ak-united-states", + "name": "Sand Point, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-160.49630102020737, 55.341544848049665] + } + }, + { + "type": "Feature", + "properties": { + "id": "perryville-ak-united-states", + "name": "Perryville, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-159.14479135751236, 55.9175061765676] + } + }, + { + "type": "Feature", + "properties": { + "id": "chignik-bay-ak-united-states", + "name": "Chignik Bay, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-158.4088086025222, 56.29452718230368] + } + }, + { + "type": "Feature", + "properties": { + "id": "chignik-lagoon-ak-united-states", + "name": "Chignik Lagoon, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-158.50722924813215, 56.321349454230955] + } + }, + { + "type": "Feature", + "properties": { + "id": "chignik-lake-ak-united-states", + "name": "Chignik Lake, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-158.77209112104833, 56.254980633515856] + } + }, + { + "type": "Feature", + "properties": { + "id": "larsen-bay-ak-united-states", + "name": "Larsen Bay, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-153.98597085435438, 57.537325409216464] + } + }, + { + "type": "Feature", + "properties": { + "id": "unalaska-ak-united-states", + "name": "Unalaska, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-166.5332428495381, 53.88452908082735] + } + }, + { + "type": "Feature", + "properties": { + "id": "coffman-cove-ak-united-states", + "name": "Coffman Cove, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-132.82951207850078, 56.0152040251003] + } + }, + { + "type": "Feature", + "properties": { + "id": "tolu-colombia", + "name": "Tolu, Colombia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-75.55868571473623, 9.496684976707797] + } + }, + { + "type": "Feature", + "properties": { + "id": "cartagena-colombia", + "name": "Cartagena, Colombia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-75.50568282259702, 10.387019581388188] + } + }, + { + "type": "Feature", + "properties": { + "id": "santa-marta-colombia", + "name": "Santa Marta, Colombia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-74.20528091178296, 11.241950014956615] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-colombia-colombia", + "name": "Puerto Colombia, Colombia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-74.95277794084195, 11.005175136687086] + } + }, + { + "type": "Feature", + "properties": { + "id": "parque-isla-de-salamanca-colombia", + "name": "Parque Isla de Salamanca, Colombia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-74.6119456627598, 11.012160871628708] + } + }, + { + "type": "Feature", + "properties": { + "id": "galway-ireland", + "name": "Galway, Ireland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-9.048344475059992, 53.273886331643325] + } + }, + { + "type": "Feature", + "properties": { + "id": "pagudpud-philippines", + "name": "Pagudpud, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [120.85798626960448, 18.62423705385342] + } + }, + { + "type": "Feature", + "properties": { + "id": "le-porge-france", + "name": "Le Porge, France", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-1.211874000599181, 44.893828011372506] + } + }, + { + "type": "Feature", + "properties": { + "id": "pascagoula-ms-united-states", + "name": "Pascagoula, MS, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-88.55612365850801, 30.365757133880095] + } + }, + { + "type": "Feature", + "properties": { + "id": "freeport-tx-united-states", + "name": "Freeport, TX, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-95.34436958207272, 28.949570369461895] + } + }, + { + "type": "Feature", + "properties": { + "id": "houstrup-denmark", + "name": "Houstrup, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [8.193131486241754, 55.76459980196083] + } + }, + { + "type": "Feature", + "properties": { + "id": "maruyama-japan", + "name": "Maruyama, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [139.81694296114787, 35.03762880268033] + } + }, + { + "type": "Feature", + "properties": { + "id": "chung-hom-kok-china", + "name": "Chung Hom Kok, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [114.20306950469305, 22.222106487528322] + } + }, + { + "type": "Feature", + "properties": { + "id": "sriracha-thailand", + "name": "Sriracha, Thailand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [100.93054472738712, 13.174440091923486] + } + }, + { + "type": "Feature", + "properties": { + "id": "quy-nhon-vietnam", + "name": "Quy Nhon, Vietnam", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [109.21965018343204, 13.782957863531578] + } + }, + { + "type": "Feature", + "properties": { + "id": "chisasibi-qc-canada", + "name": "Chisasibi, QC, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-78.89345508087042, 53.77360358424755] + } + }, + { + "type": "Feature", + "properties": { + "id": "akulivik-qc-canada", + "name": "Akulivik, QC, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-78.14424099999962, 60.817681] + } + }, + { + "type": "Feature", + "properties": { + "id": "ivujivik-qc-canada", + "name": "Ivujivik, QC, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-77.91666700000017, 62.416667] + } + }, + { + "type": "Feature", + "properties": { + "id": "kangiqsujuaq-qc-canada", + "name": "Kangiqsujuaq, QC, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-71.95388600000021, 61.59626] + } + }, + { + "type": "Feature", + "properties": { + "id": "salluit-qc-canada", + "name": "Salluit, QC, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-75.64685599999957, 62.201285] + } + }, + { + "type": "Feature", + "properties": { + "id": "puvirnituq-qc-canada", + "name": "Puvirnituq, QC, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-77.26923137796963, 60.03711467356487] + } + }, + { + "type": "Feature", + "properties": { + "id": "umiujaq-qc-canada", + "name": "Umiujaq, QC, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-76.54711274890023, 56.551555831568265] + } + }, + { + "type": "Feature", + "properties": { + "id": "kuujjuarapik-qc-canada", + "name": "Kuujjuarapik, QC, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-77.76376838115107, 55.274567237728434] + } + }, + { + "type": "Feature", + "properties": { + "id": "inukjuak-qc-canada", + "name": "Inukjuak, QC, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-78.1051011471607, 58.45511981262098] + } + }, + { + "type": "Feature", + "properties": { + "id": "suez-egypt", + "name": "Suez, Egypt", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [32.530031659514265, 29.97255276207389] + } + }, + { + "type": "Feature", + "properties": { + "id": "bude-united-kingdom", + "name": "Bude, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.544404967232026, 50.828206861825805] + } + }, + { + "type": "Feature", + "properties": { + "id": "genoa-italy", + "name": "Genoa, Italy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [8.938910676373752, 44.410344134870826] + } + }, + { + "type": "Feature", + "properties": { + "id": "barcelona-spain", + "name": "Barcelona, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [2.168761663816667, 41.38562101906717] + } + }, + { + "type": "Feature", + "properties": { + "id": "mogadishu-somalia", + "name": "Mogadishu, Somalia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [45.344158324054746, 2.041165502382569] + } + }, + { + "type": "Feature", + "properties": { + "id": "dar-es-salaam-tanzania", + "name": "Dar Es Salaam, Tanzania", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [39.2696997366333, -6.822986816656027] + } + }, + { + "type": "Feature", + "properties": { + "id": "maputo-mozambique", + "name": "Maputo, Mozambique", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [32.580641975224495, -25.96817092953566] + } + }, + { + "type": "Feature", + "properties": { + "id": "nacala-mozambique", + "name": "Nacala, Mozambique", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [40.68544580401738, -14.565606565477566] + } + }, + { + "type": "Feature", + "properties": { + "id": "mahajanga-madagascar", + "name": "Mahajanga, Madagascar", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [46.31551994061999, -15.713729798684284] + } + }, + { + "type": "Feature", + "properties": { + "id": "mtunzini-south-africa", + "name": "Mtunzini, South Africa", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [31.757864237774868, -28.950437930347448] + } + }, + { + "type": "Feature", + "properties": { + "id": "cape-town-south-africa", + "name": "Cape Town, South Africa", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [18.421985013161873, -33.91909390231618] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-elizabeth-south-africa", + "name": "Port Elizabeth, South Africa", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [25.623273857014453, -33.96249877250449] + } + }, + { + "type": "Feature", + "properties": { + "id": "muanda-congo-dem-rep-", + "name": "Muanda, Congo, Dem. Rep.", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.349894588125835, -5.933359258652018] + } + }, + { + "type": "Feature", + "properties": { + "id": "pointe-noire-congo-rep-", + "name": "Pointe-Noire, Congo, Rep.", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [11.863615635735243, -4.778823951269715] + } + }, + { + "type": "Feature", + "properties": { + "id": "libreville-gabon", + "name": "Libreville, Gabon", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [9.454339998738732, 0.394512925065328] + } + }, + { + "type": "Feature", + "properties": { + "id": "lagos-nigeria", + "name": "Lagos, Nigeria", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [3.423509310097813, 6.439093189951876] + } + }, + { + "type": "Feature", + "properties": { + "id": "accra-ghana", + "name": "Accra, Ghana", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-0.200914391857452, 5.558502094915184] + } + }, + { + "type": "Feature", + "properties": { + "id": "abidjan-cte-divoire", + "name": "Abidjan, Côte d'Ivoire", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.026253478826362, 5.323494303815522] + } + }, + { + "type": "Feature", + "properties": { + "id": "dakar-senegal", + "name": "Dakar, Senegal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-17.45192756170286, 14.686668562834853] + } + }, + { + "type": "Feature", + "properties": { + "id": "carcavelos-portugal", + "name": "Carcavelos, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-9.337919637867174, 38.68883841598668] + } + }, + { + "type": "Feature", + "properties": { + "id": "sharjah-united-arab-emirates", + "name": "Sharjah, United Arab Emirates", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [55.39219166719758, 25.352333296922126] + } + }, + { + "type": "Feature", + "properties": { + "id": "sir-abu-nuayr-island-united-arab-emirates", + "name": "Sir Abu Nu'Ayr Island, United Arab Emirates", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [54.22111935518819, 25.24083604154785] + } + }, + { + "type": "Feature", + "properties": { + "id": "bunkum-bay-montserrat", + "name": "Bunkum Bay, Montserrat", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-62.22016960060925, 16.77230218462907] + } + }, + { + "type": "Feature", + "properties": { + "id": "noumea-new-caledonia", + "name": "Noumea, New Caledonia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [166.43911648456228, -22.30303249590949] + } + }, + { + "type": "Feature", + "properties": { + "id": "suva-fiji", + "name": "Suva, Fiji", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [178.43744782858172, -18.123638259082412] + } + }, + { + "type": "Feature", + "properties": { + "id": "quanono-new-caledonia", + "name": "Quanono, New Caledonia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [167.26045379334428, -20.937043135849024] + } + }, + { + "type": "Feature", + "properties": { + "id": "tadine-new-caledonia", + "name": "Tadine, New Caledonia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [167.8795207376045, -21.5480515052071] + } + }, + { + "type": "Feature", + "properties": { + "id": "vao-new-caledonia", + "name": "Vao, New Caledonia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [167.49424269022595, -22.671928620930743] + } + }, + { + "type": "Feature", + "properties": { + "id": "yate-new-caledonia", + "name": "Yate, New Caledonia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [166.94504874334316, -22.15896231236269] + } + }, + { + "type": "Feature", + "properties": { + "id": "mont-dore-new-caledonia", + "name": "Mont-Dore, New Caledonia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [166.56362811510715, -22.265407748494795] + } + }, + { + "type": "Feature", + "properties": { + "id": "turkmenbashi-turkmenistan", + "name": "Turkmenbashi, Turkmenistan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [52.962428685450476, 40.0034241811054] + } + }, + { + "type": "Feature", + "properties": { + "id": "siyazan-azerbaijan", + "name": "Siyazan, Azerbaijan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [49.11240699877993, 41.07539844631734] + } + }, + { + "type": "Feature", + "properties": { + "id": "aeng-batu-batu-indonesia", + "name": "Aeng Batu Batu, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [119.3846441249859, -5.343255863481147] + } + }, + { + "type": "Feature", + "properties": { + "id": "isla-de-cozumel-mexico", + "name": "Isla de Cozumel, Mexico", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-86.87916551272748, 20.428643723961528] + } + }, + { + "type": "Feature", + "properties": { + "id": "playa-del-carmen-mexico", + "name": "Playa del Carmen, Mexico", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-87.07021762347813, 20.629671822473284] + } + }, + { + "type": "Feature", + "properties": { + "id": "hanstholm-denmark", + "name": "Hanstholm, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [8.616176544405619, 57.1116419890287] + } + }, + { + "type": "Feature", + "properties": { + "id": "lesund-norway", + "name": "Ålesund, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [6.174386267600624, 62.471487316816024] + } + }, + { + "type": "Feature", + "properties": { + "id": "molde-norway", + "name": "Molde, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [7.160738107922867, 62.737235056023906] + } + }, + { + "type": "Feature", + "properties": { + "id": "trondheim-norway", + "name": "Trondheim, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [10.392083475057461, 63.43101023727209] + } + }, + { + "type": "Feature", + "properties": { + "id": "sture-norway", + "name": "Sture, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [4.855490717543631, 60.62197848184314] + } + }, + { + "type": "Feature", + "properties": { + "id": "hyllestad-norway", + "name": "Hyllestad, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [5.293393239360569, 61.17224731124904] + } + }, + { + "type": "Feature", + "properties": { + "id": "herlandsvika-norway", + "name": "Herlandsvika, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [6.465755690097893, 62.614444121130504] + } + }, + { + "type": "Feature", + "properties": { + "id": "andalsnes-norway", + "name": "Andalsnes, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [7.681587348323319, 62.56582391439949] + } + }, + { + "type": "Feature", + "properties": { + "id": "brekstad-norway", + "name": "Brekstad, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [9.663116706307335, 63.68840785895216] + } + }, + { + "type": "Feature", + "properties": { + "id": "kristiansund-norway", + "name": "Kristiansund, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [7.729683017377027, 63.11078168812796] + } + }, + { + "type": "Feature", + "properties": { + "id": "bergen-norway", + "name": "Bergen, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [5.332760887254182, 60.390702572205015] + } + }, + { + "type": "Feature", + "properties": { + "id": "equinor-tjeldbergodden-norway", + "name": "Equinor Tjeldbergodden, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [7.906062286959042, 63.387565697517516] + } + }, + { + "type": "Feature", + "properties": { + "id": "heim-norway", + "name": "Åheim, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [5.522348155291638, 62.03599154304587] + } + }, + { + "type": "Feature", + "properties": { + "id": "lefdal-norway", + "name": "Lefdal, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [5.498520047171866, 61.93554024603813] + } + }, + { + "type": "Feature", + "properties": { + "id": "flor-norway", + "name": "Florø, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [4.97585196040373, 61.596307262996845] + } + }, + { + "type": "Feature", + "properties": { + "id": "la-lnea-spain", + "name": "La Línea, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.325190374296312, 36.210321613687086] + } + }, + { + "type": "Feature", + "properties": { + "id": "playa-de-la-ribera-spain", + "name": "Playa de la Ribera, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.31366694495955, 35.88680676460581] + } + }, + { + "type": "Feature", + "properties": { + "id": "tarifa-spain", + "name": "Tarifa, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.604450430371827, 36.014312562262546] + } + }, + { + "type": "Feature", + "properties": { + "id": "playa-de-benitez-spain", + "name": "Playa de Benitez, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.334747036874234, 35.89387536092829] + } + }, + { + "type": "Feature", + "properties": { + "id": "veules-les-roses-france", + "name": "Veules-les-Roses, France", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [0.797804107936884, 49.877294755007966] + } + }, + { + "type": "Feature", + "properties": { + "id": "brighton-united-kingdom", + "name": "Brighton, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-0.134434774132274, 50.82847768289534] + } + }, + { + "type": "Feature", + "properties": { + "id": "balboa-panama", + "name": "Balboa, Panama", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-79.56667848090558, 8.950027090050071] + } + }, + { + "type": "Feature", + "properties": { + "id": "manta-ecuador", + "name": "Manta, Ecuador", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-80.71618938533152, -0.950019548909125] + } + }, + { + "type": "Feature", + "properties": { + "id": "sarasota-fl-united-states", + "name": "Sarasota, FL, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-82.53962559359218, 27.338874145064636] + } + }, + { + "type": "Feature", + "properties": { + "id": "cancn-mexico", + "name": "Cancún, Mexico", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-86.76756449301183, 21.095667620228284] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-barrios-guatemala", + "name": "Puerto Barrios, Guatemala", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-88.59715914417545, 15.727178790973568] + } + }, + { + "type": "Feature", + "properties": { + "id": "maria-chiquita-panama", + "name": "Maria Chiquita, Panama", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-79.75354358290359, 9.437552783179655] + } + }, + { + "type": "Feature", + "properties": { + "id": "ixtapa-mexico", + "name": "Ixtapa, Mexico", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-101.61050704708008, 17.664141640212932] + } + }, + { + "type": "Feature", + "properties": { + "id": "baler-philippines", + "name": "Baler, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.5601821423825, 15.761529372858007] + } + }, + { + "type": "Feature", + "properties": { + "id": "atafu-tokelau", + "name": "Atafu, Tokelau", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-172.51088584218982, -8.559089911025723] + } + }, + { + "type": "Feature", + "properties": { + "id": "fakaofa-tokelau", + "name": "Fakaofa, Tokelau", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-171.2614703759691, -9.383815953134444] + } + }, + { + "type": "Feature", + "properties": { + "id": "nukunonu-tokelau", + "name": "Nukunonu, Tokelau", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-171.8115057453994, -9.174596975990283] + } + }, + { + "type": "Feature", + "properties": { + "id": "umbogintwini-south-africa", + "name": "Umbogintwini, South Africa", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [30.901573844939975, -30.02165003123855] + } + }, + { + "type": "Feature", + "properties": { + "id": "aktau-kazakhstan", + "name": "Aktau, Kazakhstan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [51.19998939997308, 43.65000490837599] + } + }, + { + "type": "Feature", + "properties": { + "id": "macao-beach-dominican-republic", + "name": "Macao Beach, Dominican Republic", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-68.35808046415055, 18.649121368332914] + } + }, + { + "type": "Feature", + "properties": { + "id": "aguadilla-pr-united-states", + "name": "Aguadilla, PR, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-67.15485866027421, 18.427498367495332] + } + }, + { + "type": "Feature", + "properties": { + "id": "ponce-pr-united-states", + "name": "Ponce, PR, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-66.62661196417604, 17.982654263677432] + } + }, + { + "type": "Feature", + "properties": { + "id": "humacao-pr-united-states", + "name": "Humacao, PR, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-65.78126344193588, 18.117762679323533] + } + }, + { + "type": "Feature", + "properties": { + "id": "frederiksted-virgin-islands-u-s-", + "name": "Frederiksted, Virgin Islands (U.S.)", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.88153263400059, 17.71247648429815] + } + }, + { + "type": "Feature", + "properties": { + "id": "tagbilaran-philippines", + "name": "Tagbilaran, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.8781708282273, 9.675424800166496] + } + }, + { + "type": "Feature", + "properties": { + "id": "baclayon-philippines", + "name": "Baclayon, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.91354677972978, 9.622558270780814] + } + }, + { + "type": "Feature", + "properties": { + "id": "bacong-philippines", + "name": "Bacong, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.29495595749424, 9.246330876791887] + } + }, + { + "type": "Feature", + "properties": { + "id": "valverde-canary-islands-spain", + "name": "Valverde, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-17.89088785284622, 27.820221110808376] + } + }, + { + "type": "Feature", + "properties": { + "id": "san-sebastian-de-la-gomera-canary-islands-spain", + "name": "San Sebastian de la Gomera, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-17.10817272035399, 28.08796545986209] + } + }, + { + "type": "Feature", + "properties": { + "id": "los-realejos-canary-islands-spain", + "name": "Los Realejos, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-16.586438673353285, 28.39755177786975] + } + }, + { + "type": "Feature", + "properties": { + "id": "sardina-canary-islands-spain", + "name": "Sardina, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-15.694032078979518, 28.149917514296334] + } + }, + { + "type": "Feature", + "properties": { + "id": "arrecife-canary-islands-spain", + "name": "Arrecife, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-13.547596831473385, 28.959501465241516] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-del-rosario-canary-islands-spain", + "name": "Puerto del Rosario, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-13.8622084250066, 28.496502747357056] + } + }, + { + "type": "Feature", + "properties": { + "id": "morrojable-canary-islands-spain", + "name": "Morrojable, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-15.590405442922616, 27.745256470964904] + } + }, + { + "type": "Feature", + "properties": { + "id": "aguimes-canary-islands-spain", + "name": "Aguimes, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-15.39073517421491, 27.89546221316101] + } + }, + { + "type": "Feature", + "properties": { + "id": "taytay-philippines", + "name": "Taytay, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [119.5003313770629, 10.819711349018178] + } + }, + { + "type": "Feature", + "properties": { + "id": "coron-philippines", + "name": "Coron, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [120.20069709185529, 12.00505568108349] + } + }, + { + "type": "Feature", + "properties": { + "id": "roxas-city-philippines", + "name": "Roxas City, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [122.74998727810114, 11.583329743234799] + } + }, + { + "type": "Feature", + "properties": { + "id": "pasacao-philippines", + "name": "Pasacao, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [122.95064631564051, 13.547780735355616] + } + }, + { + "type": "Feature", + "properties": { + "id": "masbate-city-philippines", + "name": "Masbate City, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.61666146882905, 12.36667735747389] + } + }, + { + "type": "Feature", + "properties": { + "id": "bogo-philippines", + "name": "Bogo, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [124.00765240278449, 11.045876992172708] + } + }, + { + "type": "Feature", + "properties": { + "id": "naga-philippines", + "name": "Naga, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.69144168929111, 10.238241908341195] + } + }, + { + "type": "Feature", + "properties": { + "id": "cagayan-de-oro-philippines", + "name": "Cagayan de Oro, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [124.6318951246283, 8.454228346754434] + } + }, + { + "type": "Feature", + "properties": { + "id": "buenavista-philippines", + "name": "Buenavista, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [125.42073733924198, 8.968922103740454] + } + }, + { + "type": "Feature", + "properties": { + "id": "toledo-philippines", + "name": "Toledo, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.63524055722937, 10.376249136547585] + } + }, + { + "type": "Feature", + "properties": { + "id": "san-carlos-philippines", + "name": "San Carlos, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.41287743350378, 10.48374478941065] + } + }, + { + "type": "Feature", + "properties": { + "id": "san-remigio-philippines", + "name": "San Remigio, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.93633897674167, 11.083326819623835] + } + }, + { + "type": "Feature", + "properties": { + "id": "talisay-philippines", + "name": "Talisay, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [122.96776056132873, 10.739403490193638] + } + }, + { + "type": "Feature", + "properties": { + "id": "leganes-philippines", + "name": "Leganes, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [122.58944051683412, 10.786581108825175] + } + }, + { + "type": "Feature", + "properties": { + "id": "milagros-philippines", + "name": "Milagros, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.50909318565661, 12.21812459782717] + } + }, + { + "type": "Feature", + "properties": { + "id": "roxas-philippines", + "name": "Roxas, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.52774693301089, 12.586435075844179] + } + }, + { + "type": "Feature", + "properties": { + "id": "boracay-philippines", + "name": "Boracay, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.94481206724484, 11.949242135456359] + } + }, + { + "type": "Feature", + "properties": { + "id": "san-juan-philippines", + "name": "San Juan, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.44886515295346, 13.809927621665082] + } + }, + { + "type": "Feature", + "properties": { + "id": "saint-franois-guadeloupe", + "name": "Saint-François, Guadeloupe", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.27445511116322, 16.2510994263896] + } + }, + { + "type": "Feature", + "properties": { + "id": "beausejour-guadeloupe", + "name": "Beausejour, Guadeloupe", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.073869315760064, 16.303571371032774] + } + }, + { + "type": "Feature", + "properties": { + "id": "saint-louis-guadeloupe", + "name": "Saint-Louis, Guadeloupe", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.31909619282, 15.953416689646957] + } + }, + { + "type": "Feature", + "properties": { + "id": "capesterre-belle-eau-guadeloupe", + "name": "Capesterre-Belle-Eau, Guadeloupe", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.56468928055858, 16.042421082706085] + } + }, + { + "type": "Feature", + "properties": { + "id": "terre-de-haut-guadeloupe", + "name": "Terre-de-Haut, Guadeloupe", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.57883721975507, 15.87301473693941] + } + }, + { + "type": "Feature", + "properties": { + "id": "portrane-ireland", + "name": "Portrane, Ireland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.114621764040578, 53.49320125868104] + } + }, + { + "type": "Feature", + "properties": { + "id": "caithness-united-kingdom", + "name": "Caithness, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-3.79424967588497, 58.56884330892058] + } + }, + { + "type": "Feature", + "properties": { + "id": "zhuhai-china", + "name": "Zhuhai, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [113.57672717496288, 22.27071213139382] + } + }, + { + "type": "Feature", + "properties": { + "id": "wenchang-china", + "name": "Wenchang, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [110.76181217688699, 20.04531942945252] + } + }, + { + "type": "Feature", + "properties": { + "id": "prince-rupert-bc-canada", + "name": "Prince Rupert, BC, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-130.3263225254466, 54.313074177273506] + } + }, + { + "type": "Feature", + "properties": { + "id": "ketchikan-ak-united-states", + "name": "Ketchikan, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-131.64781638709374, 55.34210213926781] + } + }, + { + "type": "Feature", + "properties": { + "id": "lisbon-portugal", + "name": "Lisbon, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-9.150188745593539, 38.72568313629117] + } + }, + { + "type": "Feature", + "properties": { + "id": "salinas-ecuador", + "name": "Salinas, Ecuador", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-81.00906207423142, -2.228488012518966] + } + }, + { + "type": "Feature", + "properties": { + "id": "stavanger-norway", + "name": "Stavanger, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [5.730792816785339, 58.970835322878486] + } + }, + { + "type": "Feature", + "properties": { + "id": "seaton-sluice-united-kingdom", + "name": "Seaton Sluice, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-1.474409557421581, 55.08361265840864] + } + }, + { + "type": "Feature", + "properties": { + "id": "komesu-japan", + "name": "Komesu, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [127.70079480862088, 26.087758925965602] + } + }, + { + "type": "Feature", + "properties": { + "id": "ysanden-norway", + "name": "Øysanden, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [10.216424592439722, 63.33349269467931] + } + }, + { + "type": "Feature", + "properties": { + "id": "cabo-san-juan-equatorial-guinea", + "name": "Cabo San Juan, Equatorial Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [9.341400937157914, 1.175260843995147] + } + }, + { + "type": "Feature", + "properties": { + "id": "corisco-equatorial-guinea", + "name": "Corisco, Equatorial Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [9.319591736686618, 0.934855533287646] + } + }, + { + "type": "Feature", + "properties": { + "id": "great-bay-beach-saint-martin", + "name": "Great Bay Beach, Saint Martin", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-63.05505687711228, 18.02447108294632] + } + }, + { + "type": "Feature", + "properties": { + "id": "basseterre-saint-kitts-and-nevis", + "name": "Basseterre, Saint Kitts and Nevis", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-62.731216774492594, 17.29863882853087] + } + }, + { + "type": "Feature", + "properties": { + "id": "gustavia-saint-barthlemy", + "name": "Gustavia, Saint Barthélemy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-62.850564834476344, 17.897910609461633] + } + }, + { + "type": "Feature", + "properties": { + "id": "great-level-bay-bonaire-sint-eustatius-and-saba", + "name": "Great Level Bay, Bonaire, Sint Eustatius and Saba", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-63.244216899359486, 17.61512081946529] + } + }, + { + "type": "Feature", + "properties": { + "id": "gallows-bay-bonaire-sint-eustatius-and-saba", + "name": "Gallows Bay, Bonaire, Sint Eustatius and Saba", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-62.985525676368766, 17.475916931774663] + } + }, + { + "type": "Feature", + "properties": { + "id": "nago-japan", + "name": "Nago, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [127.97732749763631, 26.591537746166892] + } + }, + { + "type": "Feature", + "properties": { + "id": "kagoshima-japan", + "name": "Kagoshima, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [130.55711082634357, 31.596550387213796] + } + }, + { + "type": "Feature", + "properties": { + "id": "praia-cape-verde", + "name": "Praia, Cape Verde", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-23.521210371540917, 14.923187578095792] + } + }, + { + "type": "Feature", + "properties": { + "id": "sal-rei-cape-verde", + "name": "Sal Rei, Cape Verde", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-22.919037946563606, 16.177172019272348] + } + }, + { + "type": "Feature", + "properties": { + "id": "murdeira-cape-verde", + "name": "Murdeira, Cape Verde", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-22.935309907692385, 16.677109657860797] + } + }, + { + "type": "Feature", + "properties": { + "id": "tarrafalsao-nicolau-cape-verde", + "name": "Tarrafal—Sao Nicolau, Cape Verde", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-24.357159486377725, 16.565883323041476] + } + }, + { + "type": "Feature", + "properties": { + "id": "sao-pedro-cape-verde", + "name": "Sao Pedro, Cape Verde", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-25.060808890249945, 16.8234218118491] + } + }, + { + "type": "Feature", + "properties": { + "id": "tarrafalsantiago-cape-verde", + "name": "Tarrafal—Santiago, Cape Verde", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-23.7510686071453, 15.276847576817431] + } + }, + { + "type": "Feature", + "properties": { + "id": "porto-novosanto-antao-cape-verde", + "name": "Porto Novo—Santo Antao, Cape Verde", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-25.05944170371845, 17.01920048093112] + } + }, + { + "type": "Feature", + "properties": { + "id": "nova-sintra-cape-verde", + "name": "Nova Sintra, Cape Verde", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-24.695403875669342, 14.872992709661645] + } + }, + { + "type": "Feature", + "properties": { + "id": "sao-filipe-cape-verde", + "name": "Sao Filipe, Cape Verde", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-24.500921591567447, 14.89714197148703] + } + }, + { + "type": "Feature", + "properties": { + "id": "vila-do-maio-cape-verde", + "name": "Vila do Maio, Cape Verde", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-23.209784810907763, 15.13835540576909] + } + }, + { + "type": "Feature", + "properties": { + "id": "miyazaki-japan", + "name": "Miyazaki, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [131.29461013126027, 32.09766150238528] + } + }, + { + "type": "Feature", + "properties": { + "id": "okinawa-japan", + "name": "Okinawa, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [127.68079433194626, 26.21237003963796] + } + }, + { + "type": "Feature", + "properties": { + "id": "akita-japan", + "name": "Akita, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [140.34362715835178, 39.692020829915805] + } + }, + { + "type": "Feature", + "properties": { + "id": "ishikari-japan", + "name": "Ishikari, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [141.31552588391256, 43.17139041277906] + } + }, + { + "type": "Feature", + "properties": { + "id": "sendai-japan", + "name": "Sendai, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [140.758202059976, 38.314358270084796] + } + }, + { + "type": "Feature", + "properties": { + "id": "ibaraki-japan", + "name": "Ibaraki, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [140.26994556992358, 36.34218453650411] + } + }, + { + "type": "Feature", + "properties": { + "id": "ciudad-lzaro-crdenas-mexico", + "name": "Ciudad Lázaro Cárdenas, Mexico", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-102.1943469795801, 17.956770832775874] + } + }, + { + "type": "Feature", + "properties": { + "id": "manzanillo-mexico", + "name": "Manzanillo, Mexico", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-104.30817604853006, 19.085820767886304] + } + }, + { + "type": "Feature", + "properties": { + "id": "lurin-peru", + "name": "Lurin, Peru", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-76.87428536869113, -12.27852723926577] + } + }, + { + "type": "Feature", + "properties": { + "id": "ilo-peru", + "name": "Ilo, Peru", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-71.32370719040878, -17.641170392665316] + } + }, + { + "type": "Feature", + "properties": { + "id": "toahotu-french-polynesia", + "name": "To'ahotu, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-149.3233641790288, -17.750458444433576] + } + }, + { + "type": "Feature", + "properties": { + "id": "iskele-cyprus", + "name": "Iskele, Cyprus", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [33.919474747486674, 35.28438782609294] + } + }, + { + "type": "Feature", + "properties": { + "id": "kg-buntai-malaysia", + "name": "Kg Buntai, Malaysia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [110.29362075022723, 1.675088253416448] + } + }, + { + "type": "Feature", + "properties": { + "id": "hanko-finland", + "name": "Hanko, Finland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [22.968222026939827, 59.82321000411133] + } + }, + { + "type": "Feature", + "properties": { + "id": "helsinki-finland", + "name": "Helsinki, Finland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [24.932478447942344, 60.171075418251775] + } + }, + { + "type": "Feature", + "properties": { + "id": "stockholm-sweden", + "name": "Stockholm, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [18.062854408198262, 59.33220864029596] + } + }, + { + "type": "Feature", + "properties": { + "id": "kotka-finland", + "name": "Kotka, Finland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [26.883551284533894, 60.50104138217182] + } + }, + { + "type": "Feature", + "properties": { + "id": "allen-philippines", + "name": "Allen, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [124.28234656591368, 12.501379842633298] + } + }, + { + "type": "Feature", + "properties": { + "id": "santa-magdalena-philippines", + "name": "Santa Magdalena, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [124.10709098153629, 12.645301175945292] + } + }, + { + "type": "Feature", + "properties": { + "id": "apia-samoa", + "name": "Apia, Samoa", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-171.7666787783535, -13.83340294727077] + } + }, + { + "type": "Feature", + "properties": { + "id": "rarotonga-cook-islands", + "name": "Rarotonga, Cook Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-159.76971462086553, -21.22436850158232] + } + }, + { + "type": "Feature", + "properties": { + "id": "aitutaki-cook-islands", + "name": "Aitutaki, Cook Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-159.77489955371595, -18.825717893637886] + } + }, + { + "type": "Feature", + "properties": { + "id": "alofi-niue", + "name": "Alofi, Niue", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-169.91670374001632, -19.016700578491196] + } + }, + { + "type": "Feature", + "properties": { + "id": "vaitape-french-polynesia", + "name": "Vaitape, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-151.74953139862995, -16.506277798147295] + } + }, + { + "type": "Feature", + "properties": { + "id": "marina-di-ragusa-italy", + "name": "Marina di Ragusa, Italy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.550291964996632, 36.784806017807284] + } + }, + { + "type": "Feature", + "properties": { + "id": "point-salines-grenada", + "name": "Point Salines, Grenada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.79057834201777, 12.008822041918535] + } + }, + { + "type": "Feature", + "properties": { + "id": "kingstown-saint-vincent-and-the-grenadines", + "name": "Kingstown, Saint Vincent and the Grenadines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.20825642759, 13.145437164553272] + } + }, + { + "type": "Feature", + "properties": { + "id": "chateaubelair-saint-vincent-and-the-grenadines", + "name": "Chateaubelair, Saint Vincent and the Grenadines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.24083697091665, 13.290916333074449] + } + }, + { + "type": "Feature", + "properties": { + "id": "owia-saint-vincent-and-the-grenadines", + "name": "Owia, Saint Vincent and the Grenadines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.14277795835048, 13.373100524281398] + } + }, + { + "type": "Feature", + "properties": { + "id": "conference-grenada", + "name": "Conference, Grenada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.60638846976849, 12.161209900388371] + } + }, + { + "type": "Feature", + "properties": { + "id": "bequia-saint-vincent-and-the-grenadines", + "name": "Bequia, Saint Vincent and the Grenadines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.24470659708132, 12.997564199055631] + } + }, + { + "type": "Feature", + "properties": { + "id": "mustique-saint-vincent-and-the-grenadines", + "name": "Mustique, Saint Vincent and the Grenadines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.18712607146598, 12.877712443605333] + } + }, + { + "type": "Feature", + "properties": { + "id": "canouan-saint-vincent-and-the-grenadines", + "name": "Canouan, Saint Vincent and the Grenadines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.338957018594414, 12.699637527038135] + } + }, + { + "type": "Feature", + "properties": { + "id": "union-island-saint-vincent-and-the-grenadines", + "name": "Union Island, Saint Vincent and the Grenadines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.44318057757454, 12.61140490841754] + } + }, + { + "type": "Feature", + "properties": { + "id": "carriacou-grenada", + "name": "Carriacou, Grenada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.47861756418861, 12.473707095397089] + } + }, + { + "type": "Feature", + "properties": { + "id": "varberg-sweden", + "name": "Varberg, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.25127695683338, 57.10530906897654] + } + }, + { + "type": "Feature", + "properties": { + "id": "laeso-denmark", + "name": "Laeso, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [10.887135086818205, 57.256995553835054] + } + }, + { + "type": "Feature", + "properties": { + "id": "saint-hilaire-de-riez-france", + "name": "Saint-Hilaire-de-Riez, France", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-1.968311908440512, 46.693996052542076] + } + }, + { + "type": "Feature", + "properties": { + "id": "hirtshals-denmark", + "name": "Hirtshals, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [9.959261211922808, 57.58819362027481] + } + }, + { + "type": "Feature", + "properties": { + "id": "larvik-norway", + "name": "Larvik, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [10.016390077702312, 59.081111065010276] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-erin-isle-of-man", + "name": "Port Erin, Isle of Man", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.760450951013013, 54.087201561008925] + } + }, + { + "type": "Feature", + "properties": { + "id": "hobyo-somalia", + "name": "Hobyo, Somalia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [48.522036291699095, 5.350156507108096] + } + }, + { + "type": "Feature", + "properties": { + "id": "kismayo-somalia", + "name": "Kismayo, Somalia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [42.54516145608429, -0.362712155658414] + } + }, + { + "type": "Feature", + "properties": { + "id": "bulobulo-indonesia", + "name": "Bulobulo, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [119.80926998945384, -5.669066725303026] + } + }, + { + "type": "Feature", + "properties": { + "id": "kawinda-nae-indonesia", + "name": "Kawinda Nae, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [117.86156300673181, -8.108065089693554] + } + }, + { + "type": "Feature", + "properties": { + "id": "sangatta-indonesia", + "name": "Sangatta, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [117.53548901897588, 0.324519239745939] + } + }, + { + "type": "Feature", + "properties": { + "id": "towale-indonesia", + "name": "Towale, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [119.66607832995933, -0.711934579631645] + } + }, + { + "type": "Feature", + "properties": { + "id": "senggigi-indonesia", + "name": "Senggigi, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [116.04728206542367, -8.485456800877358] + } + }, + { + "type": "Feature", + "properties": { + "id": "sanur-indonesia", + "name": "Sanur, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [115.25961172497856, -8.695053648699712] + } + }, + { + "type": "Feature", + "properties": { + "id": "puger-indonesia", + "name": "Puger, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [113.45680538491652, -8.374136096774691] + } + }, + { + "type": "Feature", + "properties": { + "id": "jimbaran-indonesia", + "name": "Jimbaran, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [115.15980710818101, -8.784071344370517] + } + }, + { + "type": "Feature", + "properties": { + "id": "mentigi-indonesia", + "name": "Mentigi, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [107.69636024691997, -3.195985843905447] + } + }, + { + "type": "Feature", + "properties": { + "id": "ancol-indonesia", + "name": "Ancol, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [106.83337257701854, -6.129010757137053] + } + }, + { + "type": "Feature", + "properties": { + "id": "sungailiat-indonesia", + "name": "Sungailiat, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [106.13249416727732, -1.851497937336347] + } + }, + { + "type": "Feature", + "properties": { + "id": "anyer-indonesia", + "name": "Anyer, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [105.8839103590013, -6.073698462563101] + } + }, + { + "type": "Feature", + "properties": { + "id": "kalianda-indonesia", + "name": "Kalianda, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [105.584911547377, -5.769253113829279] + } + }, + { + "type": "Feature", + "properties": { + "id": "takesung-indonesia", + "name": "Takesung, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [114.66681429335992, -3.882827780552503] + } + }, + { + "type": "Feature", + "properties": { + "id": "ujung-pankah-indonesia", + "name": "Ujung Pankah, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [112.59823665719662, -6.953337827182054] + } + }, + { + "type": "Feature", + "properties": { + "id": "bawean-indonesia", + "name": "Bawean, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [112.5856147684581, -5.793490872092121] + } + }, + { + "type": "Feature", + "properties": { + "id": "sungsang-indonesia", + "name": "Sungsang, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [104.87448724596126, -2.295321954856632] + } + }, + { + "type": "Feature", + "properties": { + "id": "muntok-indonesia", + "name": "Muntok, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [105.16430637658752, -2.065178938419933] + } + }, + { + "type": "Feature", + "properties": { + "id": "ruperts-bay-saint-helena-ascension-and-tristan-da-cunha", + "name": "Rupert's Bay, Saint Helena, Ascension and Tristan da Cunha", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.711485529379132, -15.91859454291577] + } + }, + { + "type": "Feature", + "properties": { + "id": "sao-tome-sao-tome-and-principe", + "name": "Sao Tome, Sao Tome and Principe", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [6.733297177107914, 0.333291349734822] + } + }, + { + "type": "Feature", + "properties": { + "id": "annobon-equatorial-guinea", + "name": "Annobon, Equatorial Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [5.636850199935424, -1.435134530086856] + } + }, + { + "type": "Feature", + "properties": { + "id": "thanlyin-myanmar", + "name": "Thanlyin, Myanmar", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [96.24822399826891, 16.758743940312797] + } + }, + { + "type": "Feature", + "properties": { + "id": "maroochydore-qld-australia", + "name": "Maroochydore, QLD, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [153.08944349704078, -26.65184454476102] + } + }, + { + "type": "Feature", + "properties": { + "id": "wurrumiyanga-nt-australia", + "name": "Wurrumiyanga, NT, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [130.63211077321293, -11.762586195478946] + } + }, + { + "type": "Feature", + "properties": { + "id": "bod-norway", + "name": "Bodø, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.400076241225918, 67.2860008218803] + } + }, + { + "type": "Feature", + "properties": { + "id": "narvik-norway", + "name": "Narvik, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [17.5599983191143, 68.42055748484364] + } + }, + { + "type": "Feature", + "properties": { + "id": "nesna-norway", + "name": "Nesna, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [13.018192454540326, 66.19807367745199] + } + }, + { + "type": "Feature", + "properties": { + "id": "sandnessjen-norway", + "name": "Sandnessjøen, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.631461771472942, 66.02154867057047] + } + }, + { + "type": "Feature", + "properties": { + "id": "brnnysund-norway", + "name": "Brønnøysund, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.207743809919691, 65.47356212044537] + } + }, + { + "type": "Feature", + "properties": { + "id": "rrvik-norway", + "name": "Rørvik, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [11.23734654814018, 64.8620769116659] + } + }, + { + "type": "Feature", + "properties": { + "id": "utskarpen-norway", + "name": "Utskarpen, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [13.563626638462381, 66.29295854243102] + } + }, + { + "type": "Feature", + "properties": { + "id": "hemnesberget-norway", + "name": "Hemnesberget, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [13.624454232090756, 66.2241605995992] + } + }, + { + "type": "Feature", + "properties": { + "id": "mo-i-rana-norway", + "name": "Mo I Rana, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.141983162343337, 66.31371064643912] + } + }, + { + "type": "Feature", + "properties": { + "id": "lucena-philippines", + "name": "Lucena, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.61229277155476, 13.935263338898494] + } + }, + { + "type": "Feature", + "properties": { + "id": "iloilo-city-philippines", + "name": "Iloilo City, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [122.56210600000011, 10.72015000000033] + } + }, + { + "type": "Feature", + "properties": { + "id": "san-jose-philippines", + "name": "San Jose, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.05011055262295, 12.362575543909628] + } + }, + { + "type": "Feature", + "properties": { + "id": "dumaguete-philippines", + "name": "Dumaguete, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.28148104221114, 9.29556291878211] + } + }, + { + "type": "Feature", + "properties": { + "id": "rdvig-denmark", + "name": "Rødvig, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.371850755501782, 55.25614081845626] + } + }, + { + "type": "Feature", + "properties": { + "id": "rnne-denmark", + "name": "Rønne, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.708323709697254, 55.1010167213648] + } + }, + { + "type": "Feature", + "properties": { + "id": "great-nicobar-india", + "name": "Great Nicobar, India", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [93.92740511526486, 7.031330621106264] + } + }, + { + "type": "Feature", + "properties": { + "id": "kamorta-india", + "name": "Kamorta, India", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [93.48140933746257, 8.172231912838214] + } + }, + { + "type": "Feature", + "properties": { + "id": "car-nicobar-india", + "name": "Car Nicobar, India", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [92.81644398821717, 9.177491191419136] + } + }, + { + "type": "Feature", + "properties": { + "id": "little-andaman-india", + "name": "Little Andaman, India", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [92.59715703418706, 10.709053093381414] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-blair-india", + "name": "Port Blair, India", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [92.72647823163769, 11.623381524823145] + } + }, + { + "type": "Feature", + "properties": { + "id": "havelock-india", + "name": "Havelock, India", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [92.98756203105867, 11.97605767788474] + } + }, + { + "type": "Feature", + "properties": { + "id": "long-island-india", + "name": "Long Island, India", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [92.93507183386814, 12.396491032225782] + } + }, + { + "type": "Feature", + "properties": { + "id": "rangat-india", + "name": "Rangat, India", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [92.91385602858449, 12.506947715390226] + } + }, + { + "type": "Feature", + "properties": { + "id": "cloverdale-or-united-states", + "name": "Cloverdale, OR, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-123.95636439138569, 45.231053623068334] + } + }, + { + "type": "Feature", + "properties": { + "id": "topolobampo-mexico", + "name": "Topolobampo, Mexico", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-109.0503685702488, 25.600694810119023] + } + }, + { + "type": "Feature", + "properties": { + "id": "la-paz-mexico", + "name": "La Paz, Mexico", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-110.30548177447065, 24.102573212618296] + } + }, + { + "type": "Feature", + "properties": { + "id": "kingston-on-canada", + "name": "Kingston, ON, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-76.47933739888295, 44.23153908355388] + } + }, + { + "type": "Feature", + "properties": { + "id": "mahuma-curaao", + "name": "Mahuma, Curaçao", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-68.95694320562453, 12.168897494151253] + } + }, + { + "type": "Feature", + "properties": { + "id": "sydney-nsw-australia", + "name": "Sydney, NSW, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [151.20704719697792, -33.86969726258806] + } + }, + { + "type": "Feature", + "properties": { + "id": "honiara-solomon-islands", + "name": "Honiara, Solomon Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [159.94979002697502, -9.429092662827514] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-moresby-papua-new-guinea", + "name": "Port Moresby, Papua New Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [147.18851977030366, -9.479605545733392] + } + }, + { + "type": "Feature", + "properties": { + "id": "auki-solomon-islands", + "name": "Auki, Solomon Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [160.70132758051582, -8.774649361836964] + } + }, + { + "type": "Feature", + "properties": { + "id": "noro-solomon-islands", + "name": "Noro, Solomon Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [157.1906611221929, -8.242077358023835] + } + }, + { + "type": "Feature", + "properties": { + "id": "taro-solomon-islands", + "name": "Taro, Solomon Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [156.3959107086384, -6.708991470563916] + } + }, + { + "type": "Feature", + "properties": { + "id": "saint-pierre-saint-pierre-and-miquelon", + "name": "Saint-Pierre, Saint Pierre and Miquelon", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-56.180631113367895, 46.7758434822525] + } + }, + { + "type": "Feature", + "properties": { + "id": "miquelon-langlade-saint-pierre-and-miquelon", + "name": "Miquelon-Langlade, Saint Pierre and Miquelon", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-56.34992308328289, 47.08366803819911] + } + }, + { + "type": "Feature", + "properties": { + "id": "fortune-nl-canada", + "name": "Fortune, NL, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-55.827286637117496, 47.071981606498014] + } + }, + { + "type": "Feature", + "properties": { + "id": "lamaline-nl-canada", + "name": "Lamaline, NL, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-55.80327542365829, 46.86895214132025] + } + }, + { + "type": "Feature", + "properties": { + "id": "narragansett-ri-united-states", + "name": "Narragansett, RI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-71.4428092999447, 41.441373103781416] + } + }, + { + "type": "Feature", + "properties": { + "id": "crescent-beach-ri-united-states", + "name": "Crescent Beach, RI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-71.59367589228842, 41.191957690250234] + } + }, + { + "type": "Feature", + "properties": { + "id": "kwa-ibo-nigeria", + "name": "Kwa Ibo, Nigeria", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [7.99743463088214, 4.543803638521524] + } + }, + { + "type": "Feature", + "properties": { + "id": "bonny-nigeria", + "name": "Bonny, Nigeria", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [7.178428863416457, 4.429324073608768] + } + }, + { + "type": "Feature", + "properties": { + "id": "nybro-sweden", + "name": "Nybro, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [15.9086849897881, 56.74380029450157] + } + }, + { + "type": "Feature", + "properties": { + "id": "klaipeda-lithuania", + "name": "Klaipeda, Lithuania", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [21.149989870548666, 55.69572398403827] + } + }, + { + "type": "Feature", + "properties": { + "id": "songkhla-thailand", + "name": "Songkhla, Thailand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [100.59695121370791, 7.078571549462993] + } + }, + { + "type": "Feature", + "properties": { + "id": "shima-japan", + "name": "Shima, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [136.87429367856012, 34.33689105304941] + } + }, + { + "type": "Feature", + "properties": { + "id": "fangshan-taiwan", + "name": "Fangshan, Taiwan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [120.66214696027194, 22.24920209060255] + } + }, + { + "type": "Feature", + "properties": { + "id": "lingang-china", + "name": "Lingang, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.89610604706175, 30.935672217827715] + } + }, + { + "type": "Feature", + "properties": { + "id": "baie-du-tombeau-mauritius", + "name": "Baie du Tombeau, Mauritius", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [57.495126451326854, -20.12211965245305] + } + }, + { + "type": "Feature", + "properties": { + "id": "le-port-runion", + "name": "Le Port, Réunion", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [55.30328230092485, -20.944389515009306] + } + }, + { + "type": "Feature", + "properties": { + "id": "fort-dauphin-madagascar", + "name": "Fort Dauphin, Madagascar", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [46.985375573694, -25.02253245968302] + } + }, + { + "type": "Feature", + "properties": { + "id": "candi-kusuma-indonesia", + "name": "Candi Kusuma, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [114.52724417391764, -8.29458083818568] + } + }, + { + "type": "Feature", + "properties": { + "id": "muncar-indonesia", + "name": "Muncar, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [114.31037421036322, -8.448018585744649] + } + }, + { + "type": "Feature", + "properties": { + "id": "banyu-urip-indonesia", + "name": "Banyu Urip, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [112.71968042869284, -7.271904005469821] + } + }, + { + "type": "Feature", + "properties": { + "id": "kendal-indonesia", + "name": "Kendal, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [110.18790325087357, -7.026549032389113] + } + }, + { + "type": "Feature", + "properties": { + "id": "cirebon-indonesia", + "name": "Cirebon, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [108.56666518530787, -6.716666684588034] + } + }, + { + "type": "Feature", + "properties": { + "id": "takapuna-new-zealand", + "name": "Takapuna, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [174.7679206921732, -36.787834026121374] + } + }, + { + "type": "Feature", + "properties": { + "id": "los-angeles-ca-united-states", + "name": "Los Angeles, CA, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-118.24533743138608, 34.053485007566536] + } + }, + { + "type": "Feature", + "properties": { + "id": "kiritimati-kiribati", + "name": "Kiritimati, Kiribati", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-157.4278124207352, 1.872139418081872] + } + }, + { + "type": "Feature", + "properties": { + "id": "savusavu-fiji", + "name": "Savusavu, Fiji", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [179.34975304523115, -16.80801351808057] + } + }, + { + "type": "Feature", + "properties": { + "id": "alexandria-nsw-australia", + "name": "Alexandria, NSW, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [151.19620853634117, -33.91367353877604] + } + }, + { + "type": "Feature", + "properties": { + "id": "blaabjerg-denmark", + "name": "Blaabjerg, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [8.329194484059428, 55.75167411423402] + } + }, + { + "type": "Feature", + "properties": { + "id": "lecanvey-ireland", + "name": "Lecanvey, Ireland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-9.696504823189116, 53.77082456067109] + } + }, + { + "type": "Feature", + "properties": { + "id": "medan-indonesia", + "name": "Medan, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [98.67606376706559, 3.752137998988587] + } + }, + { + "type": "Feature", + "properties": { + "id": "panipahan-indonesia", + "name": "Panipahan, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [100.31331490213338, 2.452351467017792] + } + }, + { + "type": "Feature", + "properties": { + "id": "brookvale-nsw-australia", + "name": "Brookvale, NSW, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [151.2739905089297, -33.76115742340559] + } + }, + { + "type": "Feature", + "properties": { + "id": "piti-gu-united-states", + "name": "Piti, GU, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [144.6947421446121, 13.464655237903457] + } + }, + { + "type": "Feature", + "properties": { + "id": "minamiboso-japan", + "name": "Minamiboso, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [139.84012607854274, 35.04299999812508] + } + }, + { + "type": "Feature", + "properties": { + "id": "pangai-tonga", + "name": "Pangai, Tonga", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-174.35026124305716, -19.811427853180504] + } + }, + { + "type": "Feature", + "properties": { + "id": "neiafu-tonga", + "name": "Neiafu, Tonga", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-173.9836850536668, -18.647685111026306] + } + }, + { + "type": "Feature", + "properties": { + "id": "nukualofa-tonga", + "name": "Nuku'alofa, Tonga", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-175.20003205902455, -21.133285523298724] + } + }, + { + "type": "Feature", + "properties": { + "id": "kekaha-hi-united-states", + "name": "Kekaha, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-159.72420070177043, 21.970305176244892] + } + }, + { + "type": "Feature", + "properties": { + "id": "kawaihae-hi-united-states", + "name": "Kawaihae, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-155.83123627078382, 20.040296565242386] + } + }, + { + "type": "Feature", + "properties": { + "id": "makaha-hi-united-states", + "name": "Makaha, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-158.22064785761836, 21.463431186887874] + } + }, + { + "type": "Feature", + "properties": { + "id": "makena-hi-united-states", + "name": "Makena, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-156.43999896208925, 20.66359808291429] + } + }, + { + "type": "Feature", + "properties": { + "id": "lahaina-hi-united-states", + "name": "Lahaina, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-156.6844995213046, 20.900903808232215] + } + }, + { + "type": "Feature", + "properties": { + "id": "kaunakakai-hi-united-states", + "name": "Kaunakakai, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-157.02388831896434, 21.093332873863375] + } + }, + { + "type": "Feature", + "properties": { + "id": "hawaii-kai-hi-united-states", + "name": "Hawaii Kai, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-157.66889976388762, 21.271999685979125] + } + }, + { + "type": "Feature", + "properties": { + "id": "rst-norway", + "name": "Røst, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.070117249965676, 67.50256025183057] + } + }, + { + "type": "Feature", + "properties": { + "id": "golden-bay-malta", + "name": "Golden Bay, Malta", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.344455230051267, 35.938693357433294] + } + }, + { + "type": "Feature", + "properties": { + "id": "mgarr-ix-xini-malta", + "name": "Mgarr ix-Xini, Malta", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.271322957639853, 36.020445712050986] + } + }, + { + "type": "Feature", + "properties": { + "id": "grand-baie-rodrigues-mauritius", + "name": "Grand Baie (Rodrigues), Mauritius", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [63.44823384600892, -19.674345590458557] + } + }, + { + "type": "Feature", + "properties": { + "id": "hao-french-polynesia", + "name": "Hao, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-140.90808894739678, -18.215762168246187] + } + }, + { + "type": "Feature", + "properties": { + "id": "manado-indonesia", + "name": "Manado, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [124.83960982123122, 1.490831387794458] + } + }, + { + "type": "Feature", + "properties": { + "id": "ondong-siau-indonesia", + "name": "Ondong Siau, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [125.37295905277645, 2.754597622785298] + } + }, + { + "type": "Feature", + "properties": { + "id": "tahuna-indonesia", + "name": "Tahuna, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [125.48550780117083, 3.611114813225043] + } + }, + { + "type": "Feature", + "properties": { + "id": "melonguane-indonesia", + "name": "Melonguane, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [126.71726962389127, 4.042997369771598] + } + }, + { + "type": "Feature", + "properties": { + "id": "morotai-indonesia", + "name": "Morotai, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [128.40081335312803, 2.365656185992435] + } + }, + { + "type": "Feature", + "properties": { + "id": "tobelo-indonesia", + "name": "Tobelo, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [127.96785467546508, 1.714583851328001] + } + }, + { + "type": "Feature", + "properties": { + "id": "terante-indonesia", + "name": "Terante, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [127.36133655044122, 0.795808528724933] + } + }, + { + "type": "Feature", + "properties": { + "id": "sofifi-indonesia", + "name": "Sofifi, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [127.56143406494019, 0.734974159349548] + } + }, + { + "type": "Feature", + "properties": { + "id": "tidore-indonesia", + "name": "Tidore, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [127.40408554359439, 0.674004693399439] + } + }, + { + "type": "Feature", + "properties": { + "id": "luwuk-indonesia", + "name": "Luwuk, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [122.79278509934582, -0.938827229844264] + } + }, + { + "type": "Feature", + "properties": { + "id": "salakan-indonesia", + "name": "Salakan, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.34019682092921, -1.301013030054349] + } + }, + { + "type": "Feature", + "properties": { + "id": "bangga-indonesia", + "name": "Bangga, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.5275341004328, -1.600278223931014] + } + }, + { + "type": "Feature", + "properties": { + "id": "taliabu-indonesia", + "name": "Taliabu, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [124.77405810985547, -1.826840253714664] + } + }, + { + "type": "Feature", + "properties": { + "id": "sanana-indonesia", + "name": "Sanana, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [125.93699673914384, -2.201449043927852] + } + }, + { + "type": "Feature", + "properties": { + "id": "kendari-indonesia", + "name": "Kendari, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [122.5129757272525, -3.998447236539192] + } + }, + { + "type": "Feature", + "properties": { + "id": "wawonii-indonesia", + "name": "Wawonii, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.12388838041429, -4.13614873480347] + } + }, + { + "type": "Feature", + "properties": { + "id": "raha-indonesia", + "name": "Raha, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [122.72108104857861, -4.8323825296047] + } + }, + { + "type": "Feature", + "properties": { + "id": "buranga-indonesia", + "name": "Buranga, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [122.8561102109089, -4.792266637754665] + } + }, + { + "type": "Feature", + "properties": { + "id": "lakudo-indonesia", + "name": "Lakudo, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [122.55989952213625, -5.389117652388677] + } + }, + { + "type": "Feature", + "properties": { + "id": "baubau-indonesia", + "name": "Baubau, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [122.59688680062212, -5.507063767817186] + } + }, + { + "type": "Feature", + "properties": { + "id": "ijmuiden-netherlands", + "name": "Ijmuiden, Netherlands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [4.613685008225076, 52.458518261510505] + } + }, + { + "type": "Feature", + "properties": { + "id": "takaroa-french-polynesia", + "name": "Takaroa, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-144.9722077085387, -14.44976861091078] + } + }, + { + "type": "Feature", + "properties": { + "id": "manihi-french-polynesia", + "name": "Manihi, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-145.9581445100918, -14.402893905977834] + } + }, + { + "type": "Feature", + "properties": { + "id": "rangiroa-french-polynesia", + "name": "Rangiroa, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-147.65130737313942, -15.116218466216026] + } + }, + { + "type": "Feature", + "properties": { + "id": "arutua-french-polynesia", + "name": "Arutua, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-146.78615295672597, -15.289899868102054] + } + }, + { + "type": "Feature", + "properties": { + "id": "kaukura-french-polynesia", + "name": "Kaukura, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-146.67384224527237, -15.741389321160426] + } + }, + { + "type": "Feature", + "properties": { + "id": "fakarava-french-polynesia", + "name": "Fakarava, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-145.62456320343523, -16.31031326521463] + } + }, + { + "type": "Feature", + "properties": { + "id": "makemo-french-polynesia", + "name": "Makemo, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-143.86719140149893, -16.539560977104543] + } + }, + { + "type": "Feature", + "properties": { + "id": "hitiaa-french-polynesia", + "name": "Hitia'a, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-149.30812077463256, -17.723318964508962] + } + }, + { + "type": "Feature", + "properties": { + "id": "hiva-oa-french-polynesia", + "name": "Hiva Oa, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-139.02112549855994, -9.754675849911337] + } + }, + { + "type": "Feature", + "properties": { + "id": "nuku-hiva-french-polynesia", + "name": "Nuku Hiva, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-140.14209638414115, -8.860487903690284] + } + }, + { + "type": "Feature", + "properties": { + "id": "suro-guinea-bissau", + "name": "Suro, Guinea-Bissau", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-15.791145687980361, 11.774131923775144] + } + }, + { + "type": "Feature", + "properties": { + "id": "duynefontein-south-africa", + "name": "Duynefontein, South Africa", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [18.449914853508034, -33.69332250414635] + } + }, + { + "type": "Feature", + "properties": { + "id": "tuasivi-samoa", + "name": "Tuasivi, Samoa", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-172.17816102572922, -13.670594022635811] + } + }, + { + "type": "Feature", + "properties": { + "id": "punta-arenas-chile", + "name": "Punta Arenas, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-70.9333325758548, -53.16665547850178] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-williams-chile", + "name": "Puerto Williams, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-67.60586142738464, -54.935200597435625] + } + }, + { + "type": "Feature", + "properties": { + "id": "tortel-chile", + "name": "Tortel, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-73.5368874992271, -47.8012146645996] + } + }, + { + "type": "Feature", + "properties": { + "id": "gwadar-pakistan", + "name": "Gwadar, Pakistan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [62.32496971736171, 25.132264042220044] + } + }, + { + "type": "Feature", + "properties": { + "id": "westbury-ny-united-states", + "name": "Westbury, NY, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-73.58682634862092, 40.75710357176081] + } + }, + { + "type": "Feature", + "properties": { + "id": "buffalo-ny-united-states", + "name": "Buffalo, NY, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-78.87846124712111, 42.88543648440384] + } + }, + { + "type": "Feature", + "properties": { + "id": "toronto-on-canada", + "name": "Toronto, ON, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-79.38531972935783, 43.64855718648988] + } + }, + { + "type": "Feature", + "properties": { + "id": "punta-salina-pr-united-states", + "name": "Punta Salina, PR, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-66.18575110125009, 18.472993987729723] + } + }, + { + "type": "Feature", + "properties": { + "id": "dania-beach-fl-united-states", + "name": "Dania Beach, FL, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-80.14394128131613, 26.05231628642727] + } + }, + { + "type": "Feature", + "properties": { + "id": "guantanamo-bay-cuba", + "name": "Guantanamo Bay, Cuba", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-75.15816600469216, 19.939616197540232] + } + }, + { + "type": "Feature", + "properties": { + "id": "newcastle-united-kingdom", + "name": "Newcastle, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-1.617778331330783, 54.978249214505325] + } + }, + { + "type": "Feature", + "properties": { + "id": "endrup-denmark", + "name": "Endrup, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [8.718388990908409, 55.523118197393956] + } + }, + { + "type": "Feature", + "properties": { + "id": "eemshaven-netherlands", + "name": "Eemshaven, Netherlands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [6.816022174500858, 53.44280469148242] + } + }, + { + "type": "Feature", + "properties": { + "id": "schoelcher-martinique", + "name": "Schoelcher, Martinique", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.112138356657894, 14.62900014542359] + } + }, + { + "type": "Feature", + "properties": { + "id": "pegwell-barbados", + "name": "Pegwell, Barbados", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-59.536333783870646, 13.062605447541841] + } + }, + { + "type": "Feature", + "properties": { + "id": "georgetown-guyana", + "name": "Georgetown, Guyana", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-58.154840621908406, 6.804497184903283] + } + }, + { + "type": "Feature", + "properties": { + "id": "totness-suriname", + "name": "Totness, Suriname", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-56.3753863160845, 5.88658231885745] + } + }, + { + "type": "Feature", + "properties": { + "id": "mt-lavinia-sri-lanka", + "name": "Mt. Lavinia, Sri Lanka", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [79.86679011789849, 6.833211066334002] + } + }, + { + "type": "Feature", + "properties": { + "id": "hulhumale-maldives", + "name": "Hulhumale, Maldives", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [73.54028092778208, 4.211918287643329] + } + }, + { + "type": "Feature", + "properties": { + "id": "kourou-french-guiana", + "name": "Kourou, French Guiana", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-52.645554998996076, 5.168298539392282] + } + }, + { + "type": "Feature", + "properties": { + "id": "flying-fish-cove-christmas-island", + "name": "Flying Fish Cove, Christmas Island", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [105.69706984367988, -10.437358645528604] + } + }, + { + "type": "Feature", + "properties": { + "id": "leava-wallis-and-futuna", + "name": "Leava, Wallis and Futuna", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-178.15810822900787, -14.29683787673278] + } + }, + { + "type": "Feature", + "properties": { + "id": "mata-utu-wallis-and-futuna", + "name": "Mata-Utu, Wallis and Futuna", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-176.17500035041283, -13.28200057514735] + } + }, + { + "type": "Feature", + "properties": { + "id": "nelson-new-zealand", + "name": "Nelson, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [173.2839500554759, -41.27225508692507] + } + }, + { + "type": "Feature", + "properties": { + "id": "levin-new-zealand", + "name": "Levin, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [175.28531582518966, -40.62528389684749] + } + }, + { + "type": "Feature", + "properties": { + "id": "st-louis-saint-martin", + "name": "St. Louis, Saint Martin", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-63.07814455076077, 18.089928806917726] + } + }, + { + "type": "Feature", + "properties": { + "id": "baie-mahault-guadeloupe", + "name": "Baie-Mahault, Guadeloupe", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.571724719484635, 16.24447966793278] + } + }, + { + "type": "Feature", + "properties": { + "id": "copa-club-jamaica", + "name": "Copa Club, Jamaica", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-76.68936118328716, 17.94295278588291] + } + }, + { + "type": "Feature", + "properties": { + "id": "weno-chuuk-micronesia", + "name": "Weno, Chuuk, Micronesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [151.85848716518004, 7.4399935397999] + } + }, + { + "type": "Feature", + "properties": { + "id": "magachgil-yap-micronesia", + "name": "Magachgil, Yap, Micronesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [138.06149986878208, 9.443922836169293] + } + }, + { + "type": "Feature", + "properties": { + "id": "ngeremlengui-palau", + "name": "Ngeremlengui, Palau", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [134.56094082517401, 7.531746239289589] + } + }, + { + "type": "Feature", + "properties": { + "id": "el-segundo-ca-united-states", + "name": "El Segundo, CA, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-118.41595515893246, 33.919920018514716] + } + }, + { + "type": "Feature", + "properties": { + "id": "sangano-angola", + "name": "Sangano, Angola", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [13.20144427784794, -9.490068430331263] + } + }, + { + "type": "Feature", + "properties": { + "id": "aden-yemen", + "name": "Aden, Yemen", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [45.033538426912656, 12.80068388902319] + } + }, + { + "type": "Feature", + "properties": { + "id": "bp-clair-ridge-united-kingdom", + "name": "BP Clair Ridge, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.294930049347158, 60.44104932347162] + } + }, + { + "type": "Feature", + "properties": { + "id": "baie-longue-saint-martin", + "name": "Baie Longue, Saint Martin", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-63.14570622695739, 18.059651281207522] + } + }, + { + "type": "Feature", + "properties": { + "id": "philipsburg-sint-maarten", + "name": "Philipsburg, Sint Maarten", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-63.045828368024814, 18.03020531994386] + } + }, + { + "type": "Feature", + "properties": { + "id": "mamoudzou-mayotte", + "name": "Mamoudzou, Mayotte", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [45.23329414477891, -12.783309286191155] + } + }, + { + "type": "Feature", + "properties": { + "id": "perth-wa-australia", + "name": "Perth, WA, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [115.85721872350305, -31.953438943980444] + } + }, + { + "type": "Feature", + "properties": { + "id": "kikori-papua-new-guinea", + "name": "Kikori, Papua New Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [144.24020642922832, -7.413514034785749] + } + }, + { + "type": "Feature", + "properties": { + "id": "sisimiut-greenland", + "name": "Sisimiut, Greenland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-53.673386277081676, 66.93946731265552] + } + }, + { + "type": "Feature", + "properties": { + "id": "maniitsoq-greenland", + "name": "Maniitsoq, Greenland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-52.9057232466823, 65.40768043958298] + } + }, + { + "type": "Feature", + "properties": { + "id": "aasiaat-greenland", + "name": "Aasiaat, Greenland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-52.859116834386796, 68.70697200462084] + } + }, + { + "type": "Feature", + "properties": { + "id": "jakarta-indonesia", + "name": "Jakarta, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [106.82785500280218, -6.171598654656037] + } + }, + { + "type": "Feature", + "properties": { + "id": "bali-indonesia", + "name": "Bali, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [115.5969650016194, -8.46441229451898] + } + }, + { + "type": "Feature", + "properties": { + "id": "seba-indonesia", + "name": "Seba, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.87989512104573, -10.457822046090712] + } + }, + { + "type": "Feature", + "properties": { + "id": "baa-indonesia", + "name": "Baa, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.03526539632074, -10.733340209244204] + } + }, + { + "type": "Feature", + "properties": { + "id": "kupang-indonesia", + "name": "Kupang, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.58331188307946, -10.183332685646945] + } + }, + { + "type": "Feature", + "properties": { + "id": "alor-indonesia", + "name": "Alor, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [124.40375899999984, -8.32065399999965] + } + }, + { + "type": "Feature", + "properties": { + "id": "kokar-indonesia", + "name": "Kokar, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [124.4534528682253, -8.158311369783405] + } + }, + { + "type": "Feature", + "properties": { + "id": "tiakur-indonesia", + "name": "Tiakur, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [127.7878715476509, -8.150331686078658] + } + }, + { + "type": "Feature", + "properties": { + "id": "serwaru-indonesia", + "name": "Serwaru, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [127.69148768374592, -8.158118033985517] + } + }, + { + "type": "Feature", + "properties": { + "id": "suemlaki-indonesia", + "name": "Suemlaki, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [131.21304280623136, -8.052228527722747] + } + }, + { + "type": "Feature", + "properties": { + "id": "tual-indonesia", + "name": "Tual, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [132.75207980190007, -5.626577896544291] + } + }, + { + "type": "Feature", + "properties": { + "id": "kep-aru-indonesia", + "name": "Kep. Aru, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [134.55017423123812, -6.194644939615642] + } + }, + { + "type": "Feature", + "properties": { + "id": "timika-indonesia", + "name": "Timika, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [136.88957687085835, -4.550311186325246] + } + }, + { + "type": "Feature", + "properties": { + "id": "agats-indonesia", + "name": "Agats, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [138.12136310762432, -5.535629327699581] + } + }, + { + "type": "Feature", + "properties": { + "id": "kota-mappi-indonesia", + "name": "Kota Mappi, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [139.39650868867434, -7.102452989490189] + } + }, + { + "type": "Feature", + "properties": { + "id": "nabire-indonesia", + "name": "Nabire, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [135.50163840096192, -3.372233814094784] + } + }, + { + "type": "Feature", + "properties": { + "id": "yapen-indonesia", + "name": "Yapen, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [136.1569846163966, -1.756122937373931] + } + }, + { + "type": "Feature", + "properties": { + "id": "supiori-indonesia", + "name": "Supiori, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [135.63852795242624, -0.729511301427863] + } + }, + { + "type": "Feature", + "properties": { + "id": "manokwari-indonesia", + "name": "Manokwari, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [134.06203981141212, -0.861468674318417] + } + }, + { + "type": "Feature", + "properties": { + "id": "teluk-indonesia", + "name": "Teluk, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [133.48213050018526, -2.202373735308214] + } + }, + { + "type": "Feature", + "properties": { + "id": "makassar-indonesia", + "name": "Makassar, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [119.41239198623501, -5.152184574655251] + } + }, + { + "type": "Feature", + "properties": { + "id": "balikpapan-indonesia", + "name": "Balikpapan, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [116.8311926429059, -1.265365259496974] + } + }, + { + "type": "Feature", + "properties": { + "id": "tarakan-indonesia", + "name": "Tarakan, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [117.57850656662666, 3.32734673355634] + } + }, + { + "type": "Feature", + "properties": { + "id": "madura-indonesia", + "name": "Madura, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [113.28346566396206, -6.902285124495648] + } + }, + { + "type": "Feature", + "properties": { + "id": "bomba-belize", + "name": "Bomba, Belize", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-88.29445550119168, 17.92561325213987] + } + }, + { + "type": "Feature", + "properties": { + "id": "san-pedro-belize", + "name": "San Pedro, Belize", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-87.97834244387919, 17.911036510229252] + } + }, + { + "type": "Feature", + "properties": { + "id": "kiamsam-malaysia", + "name": "Kiamsam, Malaysia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [115.16893796108766, 5.255328831991221] + } + }, + { + "type": "Feature", + "properties": { + "id": "so-mateus-brazil", + "name": "São Mateus, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-39.85912604370219, -18.71670527193436] + } + }, + { + "type": "Feature", + "properties": { + "id": "porto-seguro-brazil", + "name": "Porto Seguro, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-39.06469301273606, -16.451085786629932] + } + }, + { + "type": "Feature", + "properties": { + "id": "ilhus-brazil", + "name": "Ilhéus, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-39.04770083727351, -14.787976283084447] + } + }, + { + "type": "Feature", + "properties": { + "id": "salvador-brazil", + "name": "Salvador, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-38.504537159555696, -12.969985149046437] + } + }, + { + "type": "Feature", + "properties": { + "id": "aracaju-brazil", + "name": "Aracaju, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-37.07480184426862, -10.909604310397242] + } + }, + { + "type": "Feature", + "properties": { + "id": "macei-brazil", + "name": "Maceió, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-35.734959043425846, -9.666468352123587] + } + }, + { + "type": "Feature", + "properties": { + "id": "recife-brazil", + "name": "Recife, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-34.87197137352442, -8.055334790265249] + } + }, + { + "type": "Feature", + "properties": { + "id": "joo-pessoa-brazil", + "name": "João Pessoa, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-34.86103388127259, -7.115292965130038] + } + }, + { + "type": "Feature", + "properties": { + "id": "natal-brazil", + "name": "Natal, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-35.21118011760075, -5.794830309553049] + } + }, + { + "type": "Feature", + "properties": { + "id": "rio-de-janeiro-brazil", + "name": "Rio de Janeiro, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-43.209563123346214, -22.903394007564856] + } + }, + { + "type": "Feature", + "properties": { + "id": "vitria-brazil", + "name": "Vitória, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-40.301655027085616, -20.29401816965799] + } + }, + { + "type": "Feature", + "properties": { + "id": "maca-brazil", + "name": "Macaé, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-41.785638350817834, -22.371806144382276] + } + }, + { + "type": "Feature", + "properties": { + "id": "sitio-brazil", + "name": "Sitio, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-37.570504618108146, -11.846665780631213] + } + }, + { + "type": "Feature", + "properties": { + "id": "atafona-brazil", + "name": "Atafona, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-41.02724045057403, -21.63116071758739] + } + }, + { + "type": "Feature", + "properties": { + "id": "thinadhoo-maldives", + "name": "Thinadhoo, Maldives", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [72.9976787731035, 0.531092812926772] + } + }, + { + "type": "Feature", + "properties": { + "id": "kolhufushi-maldives", + "name": "Kolhufushi, Maldives", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [73.42463159564608, 2.776764140474484] + } + }, + { + "type": "Feature", + "properties": { + "id": "penarik-indonesia", + "name": "Penarik, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [108.29023189652773, 3.666751882884313] + } + }, + { + "type": "Feature", + "properties": { + "id": "jayapura-indonesia", + "name": "Jayapura, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [140.66911520902298, -2.591560615048934] + } + }, + { + "type": "Feature", + "properties": { + "id": "sarmi-indonesia", + "name": "Sarmi, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [139.35329582866163, -2.175235284063632] + } + }, + { + "type": "Feature", + "properties": { + "id": "biak-indonesia", + "name": "Biak, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [136.053298166411, -1.163471733528127] + } + }, + { + "type": "Feature", + "properties": { + "id": "sorong-indonesia", + "name": "Sorong, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [131.29539138070672, -0.882071743282296] + } + }, + { + "type": "Feature", + "properties": { + "id": "labuha-indonesia", + "name": "Labuha, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [127.48045267699527, -0.62679641513887] + } + }, + { + "type": "Feature", + "properties": { + "id": "ternate-indonesia", + "name": "Ternate, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [127.3753746264334, 0.789852072003555] + } + }, + { + "type": "Feature", + "properties": { + "id": "namlea-indonesia", + "name": "Namlea, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [127.08582405030384, -3.233414619247981] + } + }, + { + "type": "Feature", + "properties": { + "id": "ambon-indonesia", + "name": "Ambon, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [128.19070608009505, -3.65537922217473] + } + }, + { + "type": "Feature", + "properties": { + "id": "masohi-indonesia", + "name": "Masohi, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [128.95525631973047, -3.297836157693041] + } + }, + { + "type": "Feature", + "properties": { + "id": "bandaneria-indonesia", + "name": "Bandaneria, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [129.87205254526336, -4.520181235524404] + } + }, + { + "type": "Feature", + "properties": { + "id": "fakfak-indonesia", + "name": "Fakfak, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [133.01941359689326, -3.097769992192042] + } + }, + { + "type": "Feature", + "properties": { + "id": "waisai-indonesia", + "name": "Waisai, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [130.85759872209317, -0.383361405409033] + } + }, + { + "type": "Feature", + "properties": { + "id": "kaimana-indonesia", + "name": "Kaimana, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [133.79148336245194, -3.679353447601613] + } + }, + { + "type": "Feature", + "properties": { + "id": "merauke-indonesia", + "name": "Merauke, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [140.40505289608703, -8.499087423602589] + } + }, + { + "type": "Feature", + "properties": { + "id": "tutuyan-indonesia", + "name": "Tutuyan, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [124.57498598525504, 0.761436727647464] + } + }, + { + "type": "Feature", + "properties": { + "id": "tanjung-selor-indonesia", + "name": "Tanjung Selor, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [117.81942436470823, 2.572031573356753] + } + }, + { + "type": "Feature", + "properties": { + "id": "surabaya-indonesia", + "name": "Surabaya, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [112.74667405204215, -7.258579529403704] + } + }, + { + "type": "Feature", + "properties": { + "id": "ygarden-norway", + "name": "Øygarden, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [4.830246594801849, 60.58734699304449] + } + }, + { + "type": "Feature", + "properties": { + "id": "farsund-norway", + "name": "Farsund, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [6.752803826594345, 58.082772534114184] + } + }, + { + "type": "Feature", + "properties": { + "id": "tjele-denmark", + "name": "Tjele, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [9.611688520083618, 56.51080050758219] + } + }, + { + "type": "Feature", + "properties": { + "id": "tachognya-beach-tinian-northern-mariana-islands", + "name": "Tachognya Beach, Tinian, Northern Mariana Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [145.62926794520425, 14.95877106098149] + } + }, + { + "type": "Feature", + "properties": { + "id": "sasanlagu-rota-northern-mariana-islands", + "name": "Sasanlagu, Rota, Northern Mariana Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [145.13434642081117, 14.144932053703911] + } + }, + { + "type": "Feature", + "properties": { + "id": "sugar-dock-saipan-northern-mariana-islands", + "name": "Sugar Dock, Saipan, Northern Mariana Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [145.69958039539418, 15.15181163785877] + } + }, + { + "type": "Feature", + "properties": { + "id": "tungku-brunei", + "name": "Tungku, Brunei", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [114.88583269289208, 4.926371091877087] + } + }, + { + "type": "Feature", + "properties": { + "id": "utqiavik-ak-united-states", + "name": "Utqiaġvik, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-156.7886391570038, 71.2905514484419] + } + }, + { + "type": "Feature", + "properties": { + "id": "point-hope-ak-united-states", + "name": "Point Hope, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-166.80806870465364, 68.34776717273846] + } + }, + { + "type": "Feature", + "properties": { + "id": "wainwright-ak-united-states", + "name": "Wainwright, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-160.03834541201024, 70.63695061464358] + } + }, + { + "type": "Feature", + "properties": { + "id": "kotzebue-ak-united-states", + "name": "Kotzebue, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-162.59666879498252, 66.89834258781576] + } + }, + { + "type": "Feature", + "properties": { + "id": "nome-ak-united-states", + "name": "Nome, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-165.40640954135216, 64.50111393833453] + } + }, + { + "type": "Feature", + "properties": { + "id": "prudhoe-bay-ak-united-states", + "name": "Prudhoe Bay, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-148.3384467789415, 70.25563972169385] + } + }, + { + "type": "Feature", + "properties": { + "id": "kauditan-indonesia", + "name": "Kauditan, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [125.065610637692, 1.378623021535844] + } + }, + { + "type": "Feature", + "properties": { + "id": "candelaria-canary-islands-spain", + "name": "Candelaria, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-16.371740338636698, 28.35553820749996] + } + }, + { + "type": "Feature", + "properties": { + "id": "cabo-espiritu-santo-argentina", + "name": "Cabo Espiritu Santo , Argentina", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-68.60578536679908, -52.65889381307667] + } + }, + { + "type": "Feature", + "properties": { + "id": "punta-dungeness-argentina", + "name": "Punta Dungeness, Argentina", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-68.41975034233799, -52.39023015656946] + } + }, + { + "type": "Feature", + "properties": { + "id": "seraya-indonesia", + "name": "Seraya, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [115.7466719268156, -8.386261088786426] + } + }, + { + "type": "Feature", + "properties": { + "id": "tarahales-spain", + "name": "Tarahales, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-15.450744897328406, 28.09637458651798] + } + }, + { + "type": "Feature", + "properties": { + "id": "mangawhai-new-zealand", + "name": "Mangawhai, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [174.57446228390702, -36.126151926388076] + } + }, + { + "type": "Feature", + "properties": { + "id": "kapolei-hi-united-states", + "name": "Kapolei, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-158.05689997730587, 21.33542628089623] + } + }, + { + "type": "Feature", + "properties": { + "id": "taba-egypt", + "name": "Taba, Egypt", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [34.89487373423802, 29.49257805463958] + } + }, + { + "type": "Feature", + "properties": { + "id": "sines-portugal", + "name": "Sines, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-8.869597215725236, 37.95721527519197] + } + }, + { + "type": "Feature", + "properties": { + "id": "cape-daguilar-china", + "name": "Cape D’Aguilar, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [114.26024719856278, 22.20803685525445] + } + }, + { + "type": "Feature", + "properties": { + "id": "bosaso-somalia", + "name": "Bosaso, Somalia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [49.187930015152716, 11.27556768215564] + } + }, + { + "type": "Feature", + "properties": { + "id": "chipiona-spain", + "name": "Chipiona, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.428876288504881, 36.73130715040634] + } + }, + { + "type": "Feature", + "properties": { + "id": "la-union-philippines", + "name": "La Union, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [120.38963738769527, 16.582590683428435] + } + }, + { + "type": "Feature", + "properties": { + "id": "jambi-indonesia", + "name": "Jambi, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.60996177457488, -1.59000743590525] + } + }, + { + "type": "Feature", + "properties": { + "id": "san-andres-colombia", + "name": "San Andres, Colombia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-81.70056368799152, 12.58469567441] + } + }, + { + "type": "Feature", + "properties": { + "id": "skagway-ak-united-states", + "name": "Skagway, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-135.31389240702524, 59.45834296188656] + } + }, + { + "type": "Feature", + "properties": { + "id": "haines-ak-united-states", + "name": "Haines, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-135.4449958297753, 59.2358322180217] + } + }, + { + "type": "Feature", + "properties": { + "id": "manele-bay-hi-united-states", + "name": "Manele Bay, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-156.89689103344213, 20.74343777516384] + } + }, + { + "type": "Feature", + "properties": { + "id": "ko-olina-hi-united-states", + "name": "Ko Olina, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-158.1194975892112, 21.339701501022716] + } + }, + { + "type": "Feature", + "properties": { + "id": "koko-head-hi-united-states", + "name": "Koko Head, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-157.69601156108763, 21.27756212284436] + } + }, + { + "type": "Feature", + "properties": { + "id": "kihei-maui-hi-united-states", + "name": "Kihei, Maui, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-156.46310227824216, 20.78215491175544] + } + }, + { + "type": "Feature", + "properties": { + "id": "lihue-hi-united-states", + "name": "Lihue, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-159.36857049586013, 21.974943320873678] + } + }, + { + "type": "Feature", + "properties": { + "id": "skaill-united-kingdom", + "name": "Skaill, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-3.354952684851185, 59.051457590258224] + } + }, + { + "type": "Feature", + "properties": { + "id": "dunnet-head-united-kingdom", + "name": "Dunnet Head, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-3.376583528902671, 58.670331191552805] + } + }, + { + "type": "Feature", + "properties": { + "id": "whitehead-united-kingdom", + "name": "Whitehead, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.71872054158581, 54.753703383542245] + } + }, + { + "type": "Feature", + "properties": { + "id": "troon-united-kingdom", + "name": "Troon, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.65993222914139, 55.5413266177564] + } + }, + { + "type": "Feature", + "properties": { + "id": "aberdeen-united-kingdom", + "name": "Aberdeen, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.106809037797774, 57.15379366080006] + } + }, + { + "type": "Feature", + "properties": { + "id": "rota-spain", + "name": "Rota, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.363007194542121, 36.62627034141008] + } + }, + { + "type": "Feature", + "properties": { + "id": "tinocas-canary-islands-spain", + "name": "Tinocas, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-15.487707761768633, 28.134359150696014] + } + }, + { + "type": "Feature", + "properties": { + "id": "gimar-canary-islands-spain", + "name": "Güimar, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-16.412560622219132, 28.310582527291785] + } + }, + { + "type": "Feature", + "properties": { + "id": "batu-prahu-indonesia", + "name": "Batu Prahu, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [106.54745969362378, -3.079924874677914] + } + }, + { + "type": "Feature", + "properties": { + "id": "tanjung-pandan-indonesia", + "name": "Tanjung Pandan, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [107.66288859094354, -2.767442131603872] + } + }, + { + "type": "Feature", + "properties": { + "id": "sungai-kakap-indonesia", + "name": "Sungai Kakap, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [109.18320001394059, -0.067055880871294] + } + }, + { + "type": "Feature", + "properties": { + "id": "pontianak-indonesia", + "name": "Pontianak, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [109.33544599983824, -0.02740748572117] + } + }, + { + "type": "Feature", + "properties": { + "id": "pekanbaru-indonesia", + "name": "Pekanbaru, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [101.45000236721037, 0.533338808185448] + } + }, + { + "type": "Feature", + "properties": { + "id": "palembang-indonesia", + "name": "Palembang, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [104.75732424302257, -2.990975214813744] + } + }, + { + "type": "Feature", + "properties": { + "id": "bandar-lampung-indonesia", + "name": "Bandar Lampung, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [105.25410123485105, -5.409291405447021] + } + }, + { + "type": "Feature", + "properties": { + "id": "bandar-bukit-tinggi-malaysia", + "name": "Bandar Bukit Tinggi, Malaysia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [101.43672112661895, 3.009279598552212] + } + }, + { + "type": "Feature", + "properties": { + "id": "padang-indonesia", + "name": "Padang, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [100.3616242319778, -0.943868049760795] + } + }, + { + "type": "Feature", + "properties": { + "id": "baturaja-indonesia", + "name": "Baturaja, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.83896551859655, -5.040323938937036] + } + }, + { + "type": "Feature", + "properties": { + "id": "teping-tinggi-indonesia", + "name": "Teping Tinggi, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [99.20820708031928, 3.38060004881919] + } + }, + { + "type": "Feature", + "properties": { + "id": "rantu-prapat-indonesia", + "name": "Rantu Prapat, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [99.8278355476186, 2.105137225791509] + } + }, + { + "type": "Feature", + "properties": { + "id": "sibolga-indonesia", + "name": "Sibolga, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [98.7866253477217, 1.747808401450186] + } + }, + { + "type": "Feature", + "properties": { + "id": "pesaren-indonesia", + "name": "Pesaren, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [105.58271428330855, -1.553876045073224] + } + }, + { + "type": "Feature", + "properties": { + "id": "linao-chile", + "name": "Linao, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-73.50446353715449, -41.991130772680464] + } + }, + { + "type": "Feature", + "properties": { + "id": "meimen-chile", + "name": "Meimen, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-73.15529386263455, -41.80692209717782] + } + }, + { + "type": "Feature", + "properties": { + "id": "kota-kinabalu-malaysia", + "name": "Kota Kinabalu, Malaysia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [116.07430841346488, 5.981335462944344] + } + }, + { + "type": "Feature", + "properties": { + "id": "miri-malaysia", + "name": "Miri, Malaysia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [114.00741534642131, 4.425299696021398] + } + }, + { + "type": "Feature", + "properties": { + "id": "bintulu-malaysia", + "name": "Bintulu, Malaysia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [113.06835351166146, 3.197004204897269] + } + }, + { + "type": "Feature", + "properties": { + "id": "kuching-malaysia", + "name": "Kuching, Malaysia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [110.35370699724248, 1.520179142639563] + } + }, + { + "type": "Feature", + "properties": { + "id": "largs-united-kingdom", + "name": "Largs, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.867305129111486, 55.79334084522685] + } + }, + { + "type": "Feature", + "properties": { + "id": "kilchatten-bay-united-kingdom", + "name": "Kilchatten Bay, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.02809603083071, 55.75184157675699] + } + }, + { + "type": "Feature", + "properties": { + "id": "otter-ferry-united-kingdom", + "name": "Otter Ferry, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.321211057560248, 56.00828363082897] + } + }, + { + "type": "Feature", + "properties": { + "id": "achnaba-united-kingdom", + "name": "Achnaba, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.365791104104346, 56.0194198007718] + } + }, + { + "type": "Feature", + "properties": { + "id": "blackwaterfoot-united-kingdom", + "name": "Blackwaterfoot, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.332099721721647, 55.50195153980647] + } + }, + { + "type": "Feature", + "properties": { + "id": "ardnacross-united-kingdom", + "name": "Ardnacross, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.533417938480937, 55.47654899547629] + } + }, + { + "type": "Feature", + "properties": { + "id": "down-craig-united-kingdom", + "name": "Down Craig, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.900459402499706, 55.78015567878319] + } + }, + { + "type": "Feature", + "properties": { + "id": "corrie-united-kingdom", + "name": "Corrie, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.141426028671646, 55.643649778815956] + } + }, + { + "type": "Feature", + "properties": { + "id": "ardneil-bay-united-kingdom", + "name": "Ardneil Bay, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.889375425976652, 55.693046380984526] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-askaig-united-kingdom", + "name": "Port Askaig, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.106317923258217, 55.84773646690266] + } + }, + { + "type": "Feature", + "properties": { + "id": "feolin-ferry-united-kingdom", + "name": "Feolin Ferry, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.089911684880576, 55.84674962951922] + } + }, + { + "type": "Feature", + "properties": { + "id": "lagavulin-united-kingdom", + "name": "Lagavulin, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.125409706608423, 55.63611260842305] + } + }, + { + "type": "Feature", + "properties": { + "id": "glenbarr-united-kingdom", + "name": "Glenbarr, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.697577978438375, 55.5655001545679] + } + }, + { + "type": "Feature", + "properties": { + "id": "craighouse-united-kingdom", + "name": "Craighouse, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.953827796908598, 55.833671668737594] + } + }, + { + "type": "Feature", + "properties": { + "id": "ormsary-united-kingdom", + "name": "Ormsary, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.614570224741897, 55.89168013274818] + } + }, + { + "type": "Feature", + "properties": { + "id": "kilchoan-ferry-united-kingdom", + "name": "Kilchoan Ferry, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.093964416384551, 56.68857206371467] + } + }, + { + "type": "Feature", + "properties": { + "id": "tobermory-united-kingdom", + "name": "Tobermory, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.070282792535835, 56.62184876344401] + } + }, + { + "type": "Feature", + "properties": { + "id": "duart-bay-united-kingdom", + "name": "Duart Bay, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.669355342181603, 56.45583872337909] + } + }, + { + "type": "Feature", + "properties": { + "id": "ganavan-bay-united-kingdom", + "name": "Ganavan Bay, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.475800791797411, 56.43776362936629] + } + }, + { + "type": "Feature", + "properties": { + "id": "corran-united-kingdom", + "name": "Corran, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.24538103315399, 56.72252575336978] + } + }, + { + "type": "Feature", + "properties": { + "id": "ardmair-united-kingdom", + "name": "Ardmair, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.196211146111352, 57.93407860444336] + } + }, + { + "type": "Feature", + "properties": { + "id": "branahuie-bay-united-kingdom", + "name": "Branahuie Bay, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.310761137803723, 58.20906178912654] + } + }, + { + "type": "Feature", + "properties": { + "id": "leverburgh-united-kingdom", + "name": "Leverburgh, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-7.008368065487474, 57.76940498421615] + } + }, + { + "type": "Feature", + "properties": { + "id": "lochmaddy-united-kingdom", + "name": "Lochmaddy, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-7.163348424447861, 57.60369602072103] + } + }, + { + "type": "Feature", + "properties": { + "id": "dunvegan-united-kingdom", + "name": "Dunvegan, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.581659383396897, 57.43632161635986] + } + }, + { + "type": "Feature", + "properties": { + "id": "sandwick-village-united-kingdom", + "name": "Sandwick Village, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-7.274139361587601, 57.36669606319859] + } + }, + { + "type": "Feature", + "properties": { + "id": "ardvasar-united-kingdom", + "name": "Ardvasar, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.906464549211194, 57.05937167381964] + } + }, + { + "type": "Feature", + "properties": { + "id": "mallaigvaig-united-kingdom", + "name": "Mallaigvaig, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.820429453909242, 57.00847793549073] + } + }, + { + "type": "Feature", + "properties": { + "id": "scarinish-united-kingdom", + "name": "Scarinish, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.808514691440422, 56.50378811166303] + } + }, + { + "type": "Feature", + "properties": { + "id": "calgary-united-kingdom", + "name": "Calgary, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.272382258741686, 56.58212380789294] + } + }, + { + "type": "Feature", + "properties": { + "id": "ludag-united-kingdom", + "name": "Ludag, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-7.328143229580633, 57.10553545436932] + } + }, + { + "type": "Feature", + "properties": { + "id": "balla-united-kingdom", + "name": "Balla, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-7.312176444016728, 57.08152206844662] + } + }, + { + "type": "Feature", + "properties": { + "id": "north-bay-united-kingdom", + "name": "North Bay, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-7.449481034248862, 57.02529080676939] + } + }, + { + "type": "Feature", + "properties": { + "id": "bay-of-tuquoy-united-kingdom", + "name": "Bay of Tuquoy, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.939523291645173, 59.27976761462946] + } + }, + { + "type": "Feature", + "properties": { + "id": "aikerness-united-kingdom", + "name": "Aikerness , United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.959152183989914, 59.35045615867429] + } + }, + { + "type": "Feature", + "properties": { + "id": "portachur-point-united-kingdom", + "name": "Portachur Point, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.943867574873906, 55.74276545167655] + } + }, + { + "type": "Feature", + "properties": { + "id": "coilleag-united-kingdom", + "name": "Coilleag, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-7.302215513573145, 57.073613678908174] + } + }, + { + "type": "Feature", + "properties": { + "id": "ardbeg-point-united-kingdom", + "name": "Ardbeg Point, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.063594052558557, 55.85859002460768] + } + }, + { + "type": "Feature", + "properties": { + "id": "ardyne-point-united-kingdom", + "name": "Ardyne Point, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.019990567822617, 55.86941315469065] + } + }, + { + "type": "Feature", + "properties": { + "id": "ardgour-united-kingdom", + "name": "Ardgour, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.233662291455659, 56.721567938290406] + } + }, + { + "type": "Feature", + "properties": { + "id": "ola-russia", + "name": "Ola, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [151.28336550228838, 59.58334404177546] + } + }, + { + "type": "Feature", + "properties": { + "id": "okha-russia", + "name": "Okha, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [142.94245344231874, 53.57754872024526] + } + }, + { + "type": "Feature", + "properties": { + "id": "ust-bolsheretsk-russia", + "name": "Ust-Bolsheretsk, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [156.28707289511524, 52.8124143843626] + } + }, + { + "type": "Feature", + "properties": { + "id": "porthcressa-beach-united-kingdom", + "name": "Porthcressa Beach, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.308173249011986, 49.91990507743219] + } + }, + { + "type": "Feature", + "properties": { + "id": "rayong-thailand", + "name": "Rayong, Thailand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [101.27734623952156, 12.670662766449453] + } + }, + { + "type": "Feature", + "properties": { + "id": "cherating-malaysia", + "name": "Cherating, Malaysia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.39365333405974, 4.130238298773889] + } + }, + { + "type": "Feature", + "properties": { + "id": "davao-philippines", + "name": "Davao, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [125.61277821882337, 7.079988883160723] + } + }, + { + "type": "Feature", + "properties": { + "id": "ilyich-russia", + "name": "Ilyich, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [36.77084896777953, 45.423608504090225] + } + }, + { + "type": "Feature", + "properties": { + "id": "kerch-ukraine", + "name": "Kerch, Ukraine", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [36.477392144416996, 45.35698172208197] + } + }, + { + "type": "Feature", + "properties": { + "id": "domburg-netherlands", + "name": "Domburg, Netherlands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [3.496165508627513, 51.56395317878594] + } + }, + { + "type": "Feature", + "properties": { + "id": "aldeburgh-united-kingdom", + "name": "Aldeburgh, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [1.59060045229765, 52.15784264485106] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-hedland-wa-australia", + "name": "Port Hedland, WA, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [118.57723632786721, -20.313457816103977] + } + }, + { + "type": "Feature", + "properties": { + "id": "darwin-nt-australia", + "name": "Darwin, NT, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [130.84314560733188, -12.467490679762335] + } + }, + { + "type": "Feature", + "properties": { + "id": "igiugig-ak-united-states", + "name": "Igiugig, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-155.894743305873, 59.327800128586375] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-alsworth-ak-united-states", + "name": "Port Alsworth, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-154.33693190944115, 60.200371500530565] + } + }, + { + "type": "Feature", + "properties": { + "id": "fish-camp-ak-united-states", + "name": "Fish Camp, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-154.85885536783073, 59.94919988638935] + } + }, + { + "type": "Feature", + "properties": { + "id": "nondalton-ak-united-states", + "name": "Nondalton, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-154.8477225632173, 59.97264977173151] + } + }, + { + "type": "Feature", + "properties": { + "id": "newhalen-ak-united-states", + "name": "Newhalen, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-154.89977330759405, 59.71814501958255] + } + }, + { + "type": "Feature", + "properties": { + "id": "kokhanok-ak-united-states", + "name": "Kokhanok, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-154.75275192737033, 59.44215809995211] + } + }, + { + "type": "Feature", + "properties": { + "id": "pile-bay-ak-united-states", + "name": "Pile Bay, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-153.8804869202911, 59.776054476860736] + } + }, + { + "type": "Feature", + "properties": { + "id": "illiamna-ak-united-states", + "name": "Illiamna, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-154.90612095934733, 59.75476522974361] + } + }, + { + "type": "Feature", + "properties": { + "id": "pedro-bay-ak-united-states", + "name": "Pedro Bay, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-154.10612152607447, 59.787211540484066] + } + }, + { + "type": "Feature", + "properties": { + "id": "williamsport-ak-united-states", + "name": "Williamsport, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-153.6321472524672, 59.68240283563412] + } + }, + { + "type": "Feature", + "properties": { + "id": "mchugh-point-ak-united-states", + "name": "McHugh Point, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-149.7321988433523, 61.01571463051229] + } + }, + { + "type": "Feature", + "properties": { + "id": "portage-ak-united-states", + "name": "Portage, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-148.98981655676283, 60.82828925189892] + } + }, + { + "type": "Feature", + "properties": { + "id": "kuakata-bangladesh", + "name": "Kuakata, Bangladesh", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [90.11661195839056, 21.81673555170019] + } + }, + { + "type": "Feature", + "properties": { + "id": "ngwe-saung-myanmar", + "name": "Ngwe Saung, Myanmar", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [94.39121830521921, 16.858028367792087] + } + }, + { + "type": "Feature", + "properties": { + "id": "toulon-france", + "name": "Toulon, France", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [5.930343471732925, 43.12529261338062] + } + }, + { + "type": "Feature", + "properties": { + "id": "al-bustan-oman", + "name": "Al Bustan, Oman", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [58.60608740574173, 23.576086153406322] + } + }, + { + "type": "Feature", + "properties": { + "id": "butterworth-malaysia", + "name": "Butterworth, Malaysia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [100.3732130000001, 5.420856999999501] + } + }, + { + "type": "Feature", + "properties": { + "id": "buenaventura-colombia", + "name": "Buenaventura, Colombia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-77.04030087608415, 3.883674880769377] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-chacabuco-chile", + "name": "Puerto Chacabuco, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-72.80509879821604, -45.458300502960896] + } + }, + { + "type": "Feature", + "properties": { + "id": "quellon-chile", + "name": "Quellon, Chile", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-73.4794635548648, -43.11747361087103] + } + }, + { + "type": "Feature", + "properties": { + "id": "gav-spain", + "name": "Gavá, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [2.001342348824238, 41.30400294182016] + } + }, + { + "type": "Feature", + "properties": { + "id": "fomboni-moheli-comoros", + "name": "Fomboni Moheli, Comoros", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [43.73959403105519, -12.288236282174637] + } + }, + { + "type": "Feature", + "properties": { + "id": "mutsamudu-comoros", + "name": "Mutsamudu, Comoros", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [44.400042781936975, -12.166656649737234] + } + }, + { + "type": "Feature", + "properties": { + "id": "chindini-comoros", + "name": "Chindini, Comoros", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [43.48910592725335, -11.923498177297489] + } + }, + { + "type": "Feature", + "properties": { + "id": "mouly-new-caledonia", + "name": "Mouly, New Caledonia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [166.48901879296093, -20.705937606465653] + } + }, + { + "type": "Feature", + "properties": { + "id": "xepenehe-new-caledonia", + "name": "Xepenehe, New Caledonia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [167.1513230112785, -20.78091600078031] + } + }, + { + "type": "Feature", + "properties": { + "id": "poindimie-new-caledonia", + "name": "Poindimie, New Caledonia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [165.3415586683325, -20.94587867907623] + } + }, + { + "type": "Feature", + "properties": { + "id": "angra-do-heroismo-portugal", + "name": "Angra do Heroismo, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-27.215824453460726, 38.65852273411065] + } + }, + { + "type": "Feature", + "properties": { + "id": "vila-do-porto-portugal", + "name": "Vila do Porto, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-25.14126537622286, 36.95676381760319] + } + }, + { + "type": "Feature", + "properties": { + "id": "sao-mateus-portugal", + "name": "Sao Mateus, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-28.461233727451088, 38.43229047782674] + } + }, + { + "type": "Feature", + "properties": { + "id": "velas-portugal", + "name": "Velas, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-28.213187028169727, 38.68384545540383] + } + }, + { + "type": "Feature", + "properties": { + "id": "porto-santo-portugal", + "name": "Porto Santo, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-16.347668090064616, 33.04731630163687] + } + }, + { + "type": "Feature", + "properties": { + "id": "funchal-portugal", + "name": "Funchal, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-16.90894698932445, 32.64686582848503] + } + }, + { + "type": "Feature", + "properties": { + "id": "toco-trinidad-and-tobago", + "name": "Toco, Trinidad and Tobago", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-60.949687274825834, 10.831137615525023] + } + }, + { + "type": "Feature", + "properties": { + "id": "pigeon-point-trinidad-and-tobago", + "name": "Pigeon Point, Trinidad and Tobago", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-60.8403123523081, 11.165409723744887] + } + }, + { + "type": "Feature", + "properties": { + "id": "kaliko-haiti", + "name": "Kaliko, Haiti", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-72.6087122185881, 18.864587460664012] + } + }, + { + "type": "Feature", + "properties": { + "id": "huahine-french-polynesia", + "name": "Huahine, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-151.00006903893114, -16.730055979032983] + } + }, + { + "type": "Feature", + "properties": { + "id": "moorea-french-polynesia", + "name": "Moorea, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-149.82956205562925, -17.53877497410204] + } + }, + { + "type": "Feature", + "properties": { + "id": "uturoa-french-polynesia", + "name": "Uturoa, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-151.44303747512816, -16.73090937041829] + } + }, + { + "type": "Feature", + "properties": { + "id": "nasugbu-philippines", + "name": "Nasugbu, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [120.62301068928153, 14.08818738603884] + } + }, + { + "type": "Feature", + "properties": { + "id": "pinamalayan-philippines", + "name": "Pinamalayan, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.464538969975, 13.045778897501009] + } + }, + { + "type": "Feature", + "properties": { + "id": "legazpi-city-philippines", + "name": "Legazpi City, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.74373657411999, 13.139089344982096] + } + }, + { + "type": "Feature", + "properties": { + "id": "calbayog-philippines", + "name": "Calbayog, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [124.60027893608728, 12.069906190827794] + } + }, + { + "type": "Feature", + "properties": { + "id": "ormoc-philippines", + "name": "Ormoc, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [124.61277892723209, 11.006888634178551] + } + }, + { + "type": "Feature", + "properties": { + "id": "cebu-philippines", + "name": "Cebu, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.89461537348606, 10.310033388931942] + } + }, + { + "type": "Feature", + "properties": { + "id": "cadiz-city-philippines", + "name": "Cadiz City, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.29998688847635, 10.950026359206475] + } + }, + { + "type": "Feature", + "properties": { + "id": "ozamiz-city-philippines", + "name": "Ozamiz City, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [123.84998649885156, 8.15002871017603] + } + }, + { + "type": "Feature", + "properties": { + "id": "butuan-city-philippines", + "name": "Butuan City, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [125.54061030119769, 8.947615403087411] + } + }, + { + "type": "Feature", + "properties": { + "id": "san-jose-de-buenavista-philippines", + "name": "San Jose de Buenavista, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.9412964447354, 10.7488060244645] + } + }, + { + "type": "Feature", + "properties": { + "id": "santiago-de-cuba-cuba", + "name": "Santiago de Cuba, Cuba", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-75.82897360919972, 20.028793830551678] + } + }, + { + "type": "Feature", + "properties": { + "id": "killala-ireland", + "name": "Killala, Ireland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-9.232194615107773, 54.20682940735159] + } + }, + { + "type": "Feature", + "properties": { + "id": "cork-ireland", + "name": "Cork, Ireland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-8.472771324965379, 51.89833468681314] + } + }, + { + "type": "Feature", + "properties": { + "id": "milton-nl-canada", + "name": "Milton, NL, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-53.96023910121649, 48.20761257904729] + } + }, + { + "type": "Feature", + "properties": { + "id": "pacific-city-or-united-states", + "name": "Pacific City, OR, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-123.96263091711538, 45.201924825052345] + } + }, + { + "type": "Feature", + "properties": { + "id": "hillsboro-or-united-states", + "name": "Hillsboro, OR, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-122.98980067645101, 45.52289882456287] + } + }, + { + "type": "Feature", + "properties": { + "id": "blackpool-sands-united-kingdom", + "name": "Blackpool Sands, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-3.610909534778955, 50.318829731011164] + } + }, + { + "type": "Feature", + "properties": { + "id": "labuan-bajo-indonesia", + "name": "Labuan Bajo, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [119.90756399999961, -8.475551000000337] + } + }, + { + "type": "Feature", + "properties": { + "id": "sape-indonesia", + "name": "Sape, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [118.97619999999958, -8.505600000000186] + } + }, + { + "type": "Feature", + "properties": { + "id": "ende-indonesia", + "name": "Ende, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.64273999999963, -8.845699000000337] + } + }, + { + "type": "Feature", + "properties": { + "id": "bima-indonesia", + "name": "Bima, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [118.74490299999954, -8.464266] + } + }, + { + "type": "Feature", + "properties": { + "id": "saraemee-indonesia", + "name": "Saraemee, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [118.71180654503641, -8.796931179918204] + } + }, + { + "type": "Feature", + "properties": { + "id": "el-quawef-libya", + "name": "El-Quawef, Libya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [25.087361150721847, 31.760813307797036] + } + }, + { + "type": "Feature", + "properties": { + "id": "faial-portugal", + "name": "Faial, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-28.647561720454632, 38.52509969078346] + } + }, + { + "type": "Feature", + "properties": { + "id": "graciosa-portugal", + "name": "Graciosa, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-27.96348017381436, 39.01102990331347] + } + }, + { + "type": "Feature", + "properties": { + "id": "corvo-portugal", + "name": "Corvo, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-31.110548256901808, 39.67193532519235] + } + }, + { + "type": "Feature", + "properties": { + "id": "flores-portugal", + "name": "Flores, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-31.128516994172628, 39.462211754202684] + } + }, + { + "type": "Feature", + "properties": { + "id": "piedra-santa-spain", + "name": "Piedra Santa, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-15.4088015676665, 28.0406223300121] + } + }, + { + "type": "Feature", + "properties": { + "id": "las-caletillas-spain", + "name": "Las Caletillas, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-16.362365345277993, 28.377278582514037] + } + }, + { + "type": "Feature", + "properties": { + "id": "sihanoukville-cambodia", + "name": "Sihanoukville, Cambodia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.5066415352679, 10.630005631197179] + } + }, + { + "type": "Feature", + "properties": { + "id": "kralendijk-bonaire-netherlands", + "name": "Kralendijk, Bonaire, Netherlands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-68.27668403743758, 12.1506847141182] + } + }, + { + "type": "Feature", + "properties": { + "id": "north-salina-bonaire-netherlands-antilles", + "name": "North Salina, Bonaire, Netherlands Antilles", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-68.28414900000037, 12.16381600000031] + } + }, + { + "type": "Feature", + "properties": { + "id": "ratmalana-sri-lanka", + "name": "Ratmalana, Sri Lanka", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [79.88927545353178, 6.820387603783331] + } + }, + { + "type": "Feature", + "properties": { + "id": "mataram-indonesia", + "name": "Mataram, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [116.08153497084547, -8.586389151918382] + } + }, + { + "type": "Feature", + "properties": { + "id": "beculuk-indonesia", + "name": "Beculuk, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [114.0970637204135, -8.615634129813742] + } + }, + { + "type": "Feature", + "properties": { + "id": "toweli-indonesia", + "name": "Toweli, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [119.3883685657535, -1.14246770115011] + } + }, + { + "type": "Feature", + "properties": { + "id": "sangata-indonesia", + "name": "Sangata, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [117.55096752363565, 0.326887363868025] + } + }, + { + "type": "Feature", + "properties": { + "id": "pankalan-indonesia", + "name": "Pankalan, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [111.75292475602348, -2.849667399839319] + } + }, + { + "type": "Feature", + "properties": { + "id": "ketapang-indonesia", + "name": "Ketapang, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [109.97187133023849, -1.859123326919246] + } + }, + { + "type": "Feature", + "properties": { + "id": "banjarmasin-indonesia", + "name": "Banjarmasin, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [114.60399695504717, -3.327961488455799] + } + }, + { + "type": "Feature", + "properties": { + "id": "klagshamn-sweden", + "name": "Klagshamn, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.916666647555985, 55.53329310071757] + } + }, + { + "type": "Feature", + "properties": { + "id": "brondby-denmark", + "name": "Brondby, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.414909190505824, 55.647245614148375] + } + }, + { + "type": "Feature", + "properties": { + "id": "nybor-denmark", + "name": "Nybor, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [10.799480647390425, 55.324102015186554] + } + }, + { + "type": "Feature", + "properties": { + "id": "korsor-denmark", + "name": "Korsor, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [11.1493827432665, 55.325754887316066] + } + }, + { + "type": "Feature", + "properties": { + "id": "rostock-germany", + "name": "Rostock, Germany", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.132389859395118, 54.07889347828129] + } + }, + { + "type": "Feature", + "properties": { + "id": "markgrafenheide-germany", + "name": "Markgrafenheide, Germany", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.149479691038465, 54.191405400383246] + } + }, + { + "type": "Feature", + "properties": { + "id": "osterby-denmark", + "name": "Osterby, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [11.199285051665356, 57.313455583034056] + } + }, + { + "type": "Feature", + "properties": { + "id": "kristinelund-sweden", + "name": "Kristinelund, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.588639536183592, 56.134734209506604] + } + }, + { + "type": "Feature", + "properties": { + "id": "velling-sweden", + "name": "Velling, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.963834582891906, 55.471062440799756] + } + }, + { + "type": "Feature", + "properties": { + "id": "mosede-denmark", + "name": "Mosede, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.273014759775123, 55.57585273290951] + } + }, + { + "type": "Feature", + "properties": { + "id": "tinian-northern-mariana-islands", + "name": "Tinian, Northern Mariana Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [145.63747106439294, 15.011127130088084] + } + }, + { + "type": "Feature", + "properties": { + "id": "saipan-northern-mariana-islands", + "name": "Saipan, Northern Mariana Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [145.75094754650527, 15.177731913934196] + } + }, + { + "type": "Feature", + "properties": { + "id": "rota-northern-mariana-islands", + "name": "Rota, Northern Mariana Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [145.21247136546683, 14.151844706294384] + } + }, + { + "type": "Feature", + "properties": { + "id": "vila-olga-virgin-islands-u-s-", + "name": "Vila Olga, Virgin Islands (U.S.)", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.94802428611636, 18.335728451477053] + } + }, + { + "type": "Feature", + "properties": { + "id": "banana-bay-virgin-islands-u-s-", + "name": "Banana Bay, Virgin Islands (U.S.)", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.9437762422507, 18.328219740149677] + } + }, + { + "type": "Feature", + "properties": { + "id": "flamingo-bay-virgin-islands-u-s-", + "name": "Flamingo Bay, Virgin Islands (U.S.)", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.95778990419831, 18.31283049845186] + } + }, + { + "type": "Feature", + "properties": { + "id": "tortola-virgin-islands-u-k-", + "name": "Tortola, Virgin Islands (U.K.)", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.59724328461294, 18.414781849275727] + } + }, + { + "type": "Feature", + "properties": { + "id": "great-bay-virgin-islands-u-s-", + "name": "Great Bay, Virgin Islands (U.S.)", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.84319037600667, 18.322472111215944] + } + }, + { + "type": "Feature", + "properties": { + "id": "brewers-bay-virgin-islands-u-s-", + "name": "Brewer's Bay, Virgin Islands (U.S.)", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.97531918865543, 18.342402587783795] + } + }, + { + "type": "Feature", + "properties": { + "id": "st-croix-vi-united-states", + "name": "St. Croix, VI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.81941109597715, 17.77186426252601] + } + }, + { + "type": "Feature", + "properties": { + "id": "christiansted-vi-united-states", + "name": "Christiansted, VI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.70315141271158, 17.74666057922994] + } + }, + { + "type": "Feature", + "properties": { + "id": "larne-united-kingdom", + "name": "Larne, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.809882586380724, 54.8574917130542] + } + }, + { + "type": "Feature", + "properties": { + "id": "girvan-united-kingdom", + "name": "Girvan, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.854219200881687, 55.24020824699869] + } + }, + { + "type": "Feature", + "properties": { + "id": "donaghadee-united-kingdom", + "name": "Donaghadee, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.538789028425981, 54.64286757769068] + } + }, + { + "type": "Feature", + "properties": { + "id": "portpatrick-united-kingdom", + "name": "Portpatrick, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.115547140754501, 54.84372443137133] + } + }, + { + "type": "Feature", + "properties": { + "id": "carrickfergus-united-kingdom", + "name": "Carrickfergus, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.808173603216432, 54.71367039332256] + } + }, + { + "type": "Feature", + "properties": { + "id": "saltcoats-united-kingdom", + "name": "Saltcoats, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.783516125968447, 55.637580196789] + } + }, + { + "type": "Feature", + "properties": { + "id": "douglas-isle-of-man", + "name": "Douglas, Isle of Man", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.480879621609006, 54.15027516173615] + } + }, + { + "type": "Feature", + "properties": { + "id": "ballyhornan-united-kingdom", + "name": "Ballyhornan, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.559394482578881, 54.30204489127169] + } + }, + { + "type": "Feature", + "properties": { + "id": "silecroft-beach-united-kingdom", + "name": "Silecroft Beach, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-3.357149948919584, 54.210627399618204] + } + }, + { + "type": "Feature", + "properties": { + "id": "groudle-bay-isle-of-man", + "name": "Groudle Bay, Isle of Man", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.423897240100814, 54.166979427201255] + } + }, + { + "type": "Feature", + "properties": { + "id": "peel-isle-of-man", + "name": "Peel, Isle of Man", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.691426347455661, 54.22244748636322] + } + }, + { + "type": "Feature", + "properties": { + "id": "ballywater-united-kingdom", + "name": "Ballywater, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.484394535709527, 54.54274158020212] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-grenaugh-isle-of-man", + "name": "Port Grenaugh, Isle of Man", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.566670576458847, 54.099993061704566] + } + }, + { + "type": "Feature", + "properties": { + "id": "kulhudhufushi-maldives", + "name": "Kulhudhufushi, Maldives", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [73.07140918962196, 6.622441345756243] + } + }, + { + "type": "Feature", + "properties": { + "id": "eydhafushi-maldives", + "name": "Eydhafushi, Maldives", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [73.07082325253705, 5.10323036500867] + } + }, + { + "type": "Feature", + "properties": { + "id": "dhangethi-maldives", + "name": "Dhangethi, Maldives", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [72.95558895917017, 3.608093477292954] + } + }, + { + "type": "Feature", + "properties": { + "id": "gan-maldives", + "name": "Gan, Maldives", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [73.5446510418731, 1.918411782935948] + } + }, + { + "type": "Feature", + "properties": { + "id": "gahdhoo-maldives", + "name": "Gahdhoo, Maldives", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [73.45549094878493, 0.288802003782081] + } + }, + { + "type": "Feature", + "properties": { + "id": "hithadhoo-maldives", + "name": "Hithadhoo, Maldives", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [73.0891826145313, -0.606021265123729] + } + }, + { + "type": "Feature", + "properties": { + "id": "fuvahmulah-maldives", + "name": "Fuvahmulah, Maldives", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [73.42687768780482, -0.298304384684116] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-gentil-gabon", + "name": "Port Gentil, Gabon", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [8.781610983118213, -0.721040306474947] + } + }, + { + "type": "Feature", + "properties": { + "id": "lusk-ireland", + "name": "Lusk, Ireland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.165888193558061, 53.5262544597455] + } + }, + { + "type": "Feature", + "properties": { + "id": "tubruq-libya", + "name": "Tubruq, Libya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [23.96031116788467, 32.079604155442524] + } + }, + { + "type": "Feature", + "properties": { + "id": "al-bayda-libya", + "name": "Al Bayda, Libya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [21.74166039584773, 32.88172722141812] + } + }, + { + "type": "Feature", + "properties": { + "id": "tolmeta-libya", + "name": "Tolmeta, Libya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [20.949961737944477, 32.7167319823823] + } + }, + { + "type": "Feature", + "properties": { + "id": "benghazi-libya", + "name": "Benghazi, Libya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [20.0667592386134, 32.11658375707046] + } + }, + { + "type": "Feature", + "properties": { + "id": "brega-libya", + "name": "Brega, Libya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [19.576525210899774, 30.37810849301232] + } + }, + { + "type": "Feature", + "properties": { + "id": "ras-lanuf-libya", + "name": "Ras Lanuf, Libya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [18.41187759844715, 30.58673750269537] + } + }, + { + "type": "Feature", + "properties": { + "id": "sirte-libya", + "name": "Sirte, Libya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [16.58834373400552, 31.205251640496385] + } + }, + { + "type": "Feature", + "properties": { + "id": "misrata-libya", + "name": "Misrata, Libya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [15.094790104552942, 32.374278843690206] + } + }, + { + "type": "Feature", + "properties": { + "id": "al-khums-libya", + "name": "Al Khums, Libya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.264419599045283, 32.64966152384906] + } + }, + { + "type": "Feature", + "properties": { + "id": "zawia-libya", + "name": "Zawia, Libya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.529752859149369, 32.774720416295395] + } + }, + { + "type": "Feature", + "properties": { + "id": "zuwara-libya", + "name": "Zuwara, Libya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.083366456623793, 32.93337907602435] + } + }, + { + "type": "Feature", + "properties": { + "id": "hermosa-beach-ca-united-states", + "name": "Hermosa Beach, CA, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-118.3995489205548, 33.86223263215783] + } + }, + { + "type": "Feature", + "properties": { + "id": "sandy-point-vic-australia", + "name": "Sandy Point, VIC, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [146.11969728527944, -38.82018266620619] + } + }, + { + "type": "Feature", + "properties": { + "id": "four-mile-bluff-tas-australia", + "name": "Four Mile Bluff, TAS, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [146.85016551780885, -41.033277075283166] + } + }, + { + "type": "Feature", + "properties": { + "id": "mcgaurans-beach-vic-australia", + "name": "McGaurans Beach, VIC, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [147.0712591111841, -38.44361560267609] + } + }, + { + "type": "Feature", + "properties": { + "id": "stanley-tas-australia", + "name": "Stanley, TAS, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [145.29411193263175, -40.760375144220774] + } + }, + { + "type": "Feature", + "properties": { + "id": "inverloch-vic-australia", + "name": "Inverloch, VIC, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [145.72946318672493, -38.63345276915484] + } + }, + { + "type": "Feature", + "properties": { + "id": "boat-harbour-tas-australia", + "name": "Boat Harbour, TAS, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [145.62379919907832, -40.950868285823475] + } + }, + { + "type": "Feature", + "properties": { + "id": "hudishibana-aruba", + "name": "Hudishibana, Aruba", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-70.04997379684745, 12.61663444588521] + } + }, + { + "type": "Feature", + "properties": { + "id": "tyra-denmark", + "name": "Tyra, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [4.748508371456069, 55.71560692113303] + } + }, + { + "type": "Feature", + "properties": { + "id": "valdemar-denmark", + "name": "Valdemar, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [4.564328814430468, 55.804072375667204] + } + }, + { + "type": "Feature", + "properties": { + "id": "south-arne-denmark", + "name": "South Arne, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [4.228391552411665, 56.078288457913686] + } + }, + { + "type": "Feature", + "properties": { + "id": "tjornuvik-faroe-islands", + "name": "Tjornuvik, Faroe Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-7.147235154612645, 62.28992112511651] + } + }, + { + "type": "Feature", + "properties": { + "id": "vestmannaeyjar-iceland", + "name": "Vestmannaeyjar, Iceland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-20.267294219614712, 63.43768691325937] + } + }, + { + "type": "Feature", + "properties": { + "id": "ajaccio-france", + "name": "Ajaccio, France", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [8.738642263557722, 41.91932911005827] + } + }, + { + "type": "Feature", + "properties": { + "id": "la-seyne-france", + "name": "La Seyne, France", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [5.878097414994613, 43.10290804483813] + } + }, + { + "type": "Feature", + "properties": { + "id": "lle-rousse-france", + "name": "L’Île-Rousse, France", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [8.937079622982822, 42.636509507125425] + } + }, + { + "type": "Feature", + "properties": { + "id": "cannes-france", + "name": "Cannes, France", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [7.017354420434145, 43.552927166028866] + } + }, + { + "type": "Feature", + "properties": { + "id": "condado-beach-pr-united-states", + "name": "Condado Beach, PR, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-66.07795512628773, 18.459899231626707] + } + }, + { + "type": "Feature", + "properties": { + "id": "alsgarde-denmark", + "name": "Alsgarde, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.536881760349303, 56.07488218434122] + } + }, + { + "type": "Feature", + "properties": { + "id": "kristiansand-norway", + "name": "Kristiansand, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [7.996259976968247, 58.150955964772265] + } + }, + { + "type": "Feature", + "properties": { + "id": "monte-carlo-monaco", + "name": "Monte Carlo, Monaco", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [7.427217411333373, 43.73973086446898] + } + }, + { + "type": "Feature", + "properties": { + "id": "otranto-italy", + "name": "Otranto, Italy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [18.48570567114649, 40.14805341338399] + } + }, + { + "type": "Feature", + "properties": { + "id": "umag-croatia", + "name": "Umag, Croatia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [13.520181845020204, 45.43310919075256] + } + }, + { + "type": "Feature", + "properties": { + "id": "mestre-italy", + "name": "Mestre, Italy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.24410853025256, 45.49587287439124] + } + }, + { + "type": "Feature", + "properties": { + "id": "vaasa-finland", + "name": "Vaasa, Finland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [21.616367515856382, 63.09519496029378] + } + }, + { + "type": "Feature", + "properties": { + "id": "ume-sweden", + "name": "Umeå, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [20.262950505879587, 63.825869861087995] + } + }, + { + "type": "Feature", + "properties": { + "id": "nynashamn-sweden", + "name": "Nynashamn, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [17.94654589684245, 58.902924681852596] + } + }, + { + "type": "Feature", + "properties": { + "id": "meremisa-estonia", + "name": "Meremöisa, Estonia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [24.27661953755893, 59.40084650364665] + } + }, + { + "type": "Feature", + "properties": { + "id": "mielno-poland", + "name": "Mielno, Poland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [16.062269887931166, 54.25994813889153] + } + }, + { + "type": "Feature", + "properties": { + "id": "gedebak-odde-denmark", + "name": "Gedebak Odde, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.966665195317916, 55.01259082191649] + } + }, + { + "type": "Feature", + "properties": { + "id": "vdd-sweden", + "name": "Väddö, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [18.816564811762902, 59.98338076725241] + } + }, + { + "type": "Feature", + "properties": { + "id": "norrtalge-sweden", + "name": "Norrtalge, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [18.70133051839585, 59.759662312956806] + } + }, + { + "type": "Feature", + "properties": { + "id": "turku-finland", + "name": "Turku, Finland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [22.25923815419077, 60.449310000380336] + } + }, + { + "type": "Feature", + "properties": { + "id": "santo-domingo-dominican-republic", + "name": "Santo Domingo, Dominican Republic", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-69.98327462534776, 18.500003908549843] + } + }, + { + "type": "Feature", + "properties": { + "id": "dubrovnik-croatia", + "name": "Dubrovnik, Croatia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [18.10640906484386, 42.641861527952074] + } + }, + { + "type": "Feature", + "properties": { + "id": "aethos-greece", + "name": "Aethos, Greece", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [20.015449242293954, 39.68361519899665] + } + }, + { + "type": "Feature", + "properties": { + "id": "corfu-greece", + "name": "Corfu, Greece", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [19.919493717937684, 39.619298271804126] + } + }, + { + "type": "Feature", + "properties": { + "id": "durres-albania", + "name": "Durres, Albania", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [19.450060456738612, 41.31669317408654] + } + }, + { + "type": "Feature", + "properties": { + "id": "bridgetown-barbados", + "name": "Bridgetown, Barbados", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-59.6133600964925, 13.09895401478758] + } + }, + { + "type": "Feature", + "properties": { + "id": "castries-saint-lucia", + "name": "Castries, Saint Lucia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.00681614060515, 13.994222056803636] + } + }, + { + "type": "Feature", + "properties": { + "id": "pointe-a-pitre-guadeloupe", + "name": "Pointe-a-Pitre, Guadeloupe", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.533085299041176, 16.241044022954128] + } + }, + { + "type": "Feature", + "properties": { + "id": "roseau-dominica", + "name": "Roseau, Dominica", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.370731898428815, 15.251799221839917] + } + }, + { + "type": "Feature", + "properties": { + "id": "the-valley-anguilla", + "name": "The Valley, Anguilla", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-63.057205313090236, 18.217405253293038] + } + }, + { + "type": "Feature", + "properties": { + "id": "santos-brazil", + "name": "Santos, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-46.32806677354398, -23.96184546770303] + } + }, + { + "type": "Feature", + "properties": { + "id": "cagliari-italy", + "name": "Cagliari, Italy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [9.109345125948352, 39.21530980337931] + } + }, + { + "type": "Feature", + "properties": { + "id": "civitavecchia-italy", + "name": "Civitavecchia, Italy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [11.796843222099454, 42.09113065224952] + } + }, + { + "type": "Feature", + "properties": { + "id": "olbia-italy", + "name": "Olbia, Italy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [9.486883920996263, 40.92250775322418] + } + }, + { + "type": "Feature", + "properties": { + "id": "khark-island-iran", + "name": "Khark Island, Iran", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [50.31205031256536, 29.245773309269737] + } + }, + { + "type": "Feature", + "properties": { + "id": "soroosh-platform-iran", + "name": "Soroosh Platform, Iran", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [49.47806652836738, 29.072484050458797] + } + }, + { + "type": "Feature", + "properties": { + "id": "diba-oman", + "name": "Diba, Oman", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [56.25804219411907, 25.616974601949437] + } + }, + { + "type": "Feature", + "properties": { + "id": "tanah-merah-singapore", + "name": "Tanah Merah, Singapore", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.94658262985948, 1.327257988673239] + } + }, + { + "type": "Feature", + "properties": { + "id": "nanhui-china", + "name": "Nanhui, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.92506915087793, 30.86471386158243] + } + }, + { + "type": "Feature", + "properties": { + "id": "west-palm-beach-fl-united-states", + "name": "West Palm Beach, FL, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-80.0533480580195, 26.715357789296604] + } + }, + { + "type": "Feature", + "properties": { + "id": "magens-bay-vi-united-states", + "name": "Magen’s Bay, VI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.93708679386462, 18.372989080105754] + } + }, + { + "type": "Feature", + "properties": { + "id": "samandag-turkey", + "name": "Samandag, Turkey", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [35.99926748312504, 36.0823377830327] + } + }, + { + "type": "Feature", + "properties": { + "id": "girne-cyprus", + "name": "Girne, Cyprus", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [33.23628115920056, 35.299122503690995] + } + }, + { + "type": "Feature", + "properties": { + "id": "bozyazi-turkey", + "name": "Bozyazi, Turkey", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [32.96670199999983, 36.09999800000014] + } + }, + { + "type": "Feature", + "properties": { + "id": "daet-philippines", + "name": "Daet, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [122.94988948023868, 14.116616393710558] + } + }, + { + "type": "Feature", + "properties": { + "id": "dartmouth-united-kingdom", + "name": "Dartmouth, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-3.578390026566098, 50.3517417330836] + } + }, + { + "type": "Feature", + "properties": { + "id": "st-ouens-bay-jersey", + "name": "St. Ouens Bay, Jersey", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.22590075030709, 49.2157112339672] + } + }, + { + "type": "Feature", + "properties": { + "id": "archirondel-jersey", + "name": "Archirondel, Jersey", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.021311051490386, 49.22527885088681] + } + }, + { + "type": "Feature", + "properties": { + "id": "surville-france", + "name": "Surville, France", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-1.65002225201485, 49.283290656759505] + } + }, + { + "type": "Feature", + "properties": { + "id": "greve-de-lecq-jersey", + "name": "Greve de Lecq, Jersey", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.20143787701187, 49.24794670647606] + } + }, + { + "type": "Feature", + "properties": { + "id": "havelet-bay-guernsey", + "name": "Havelet Bay, Guernsey", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.529513816474804, 49.450989496876616] + } + }, + { + "type": "Feature", + "properties": { + "id": "new-victoria-ns-canada", + "name": "New Victoria, NS, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-60.129570668304126, 46.252907299695295] + } + }, + { + "type": "Feature", + "properties": { + "id": "rose-blanche-nl-canada", + "name": "Rose Blanche, NL, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-58.686602940516025, 47.61768929491316] + } + }, + { + "type": "Feature", + "properties": { + "id": "lancresse-bay-guernsey", + "name": "L'Ancresse Bay, Guernsey", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.533468891798009, 49.50339305286627] + } + }, + { + "type": "Feature", + "properties": { + "id": "saints-bay-guernsey", + "name": "Saints Bay, Guernsey", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.558029421274028, 49.423325556977545] + } + }, + { + "type": "Feature", + "properties": { + "id": "pembroke-guernsey", + "name": "Pembroke, Guernsey", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.537619279482811, 49.5095442333529] + } + }, + { + "type": "Feature", + "properties": { + "id": "malabo-equatorial-guinea", + "name": "Malabo, Equatorial Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [8.783368794373132, 3.749792920040846] + } + }, + { + "type": "Feature", + "properties": { + "id": "palma-spain", + "name": "Palma, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [2.605248171011596, 39.55232558289569] + } + }, + { + "type": "Feature", + "properties": { + "id": "santa-cruz-de-la-palma-canary-islands-spain", + "name": "Santa Cruz de La Palma, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-17.76524521083971, 28.66318191894655] + } + }, + { + "type": "Feature", + "properties": { + "id": "granadilla-canary-islands-spain", + "name": "Granadilla, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-16.51805353891703, 28.05911580626102] + } + }, + { + "type": "Feature", + "properties": { + "id": "fresh-creek-bahamas", + "name": "Fresh Creek, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-77.84460938833543, 24.689806158505206] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-nelson-bahamas", + "name": "Port Nelson, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-74.84054657503572, 23.652143168499805] + } + }, + { + "type": "Feature", + "properties": { + "id": "george-town-bahamas", + "name": "George Town, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-75.78800684134596, 23.516551982193818] + } + }, + { + "type": "Feature", + "properties": { + "id": "clarence-town-bahamas", + "name": "Clarence Town, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-74.96618125165998, 23.09834303441093] + } + }, + { + "type": "Feature", + "properties": { + "id": "cockburn-town-bahamas", + "name": "Cockburn Town, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-74.53024406048193, 24.052531948572295] + } + }, + { + "type": "Feature", + "properties": { + "id": "governors-harbor-bahamas", + "name": "Governors Harbor, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-76.24064323944411, 25.196118966380908] + } + }, + { + "type": "Feature", + "properties": { + "id": "duncan-town-bahamas", + "name": "Duncan Town, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-75.73346586435837, 22.18326183392645] + } + }, + { + "type": "Feature", + "properties": { + "id": "mayaguana-bahamas", + "name": "Mayaguana, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-73.06413181783965, 22.40156502331459] + } + }, + { + "type": "Feature", + "properties": { + "id": "sakra-island-singapore", + "name": "Sakra Island, Singapore", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.70419998906564, 1.258916074584562] + } + }, + { + "type": "Feature", + "properties": { + "id": "grover-beach-ca-united-states", + "name": "Grover Beach, CA, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-120.62142234655883, 35.12063343823428] + } + }, + { + "type": "Feature", + "properties": { + "id": "ajigaura-japan", + "name": "Ajigaura, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [140.61227931178595, 36.38355921004964] + } + }, + { + "type": "Feature", + "properties": { + "id": "brookhaven-ny-united-states", + "name": "Brookhaven, NY, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-72.91227645666535, 40.77314800141434] + } + }, + { + "type": "Feature", + "properties": { + "id": "beverwijk-netherlands", + "name": "Beverwijk, Netherlands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [4.65690687384739, 52.4863126507949] + } + }, + { + "type": "Feature", + "properties": { + "id": "whitesands-bay-united-kingdom", + "name": "Whitesands Bay, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.69845688406582, 50.07851709909508] + } + }, + { + "type": "Feature", + "properties": { + "id": "hollywood-fl-united-states", + "name": "Hollywood, FL, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-80.16023274792637, 26.010202101419793] + } + }, + { + "type": "Feature", + "properties": { + "id": "tijuana-mexico", + "name": "Tijuana, Mexico", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-117.03822175993177, 32.530849775964526] + } + }, + { + "type": "Feature", + "properties": { + "id": "northport-ny-united-states", + "name": "Northport, NY, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-73.34411208824896, 40.909455098946864] + } + }, + { + "type": "Feature", + "properties": { + "id": "morro-bay-ca-united-states", + "name": "Morro Bay, CA, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-120.84720343661344, 35.36668135110142] + } + }, + { + "type": "Feature", + "properties": { + "id": "spencer-beach-hi-united-states", + "name": "Spencer Beach, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-155.82208710734326, 20.02310522788963] + } + }, + { + "type": "Feature", + "properties": { + "id": "whenuapai-new-zealand", + "name": "Whenuapai, New Zealand", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [174.62338803049747, -36.788806016342846] + } + }, + { + "type": "Feature", + "properties": { + "id": "fortaleza-brazil", + "name": "Fortaleza, Brazil", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-38.54296486670816, -3.718833983135767] + } + }, + { + "type": "Feature", + "properties": { + "id": "maldonado-uruguay", + "name": "Maldonado, Uruguay", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-54.9501798061832, -34.90037950486604] + } + }, + { + "type": "Feature", + "properties": { + "id": "fort-amador-panama", + "name": "Fort Amador, Panama", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-79.54673220597371, 8.934109660849913] + } + }, + { + "type": "Feature", + "properties": { + "id": "manchester-ca-united-states", + "name": "Manchester, CA, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-123.68694751866207, 38.969206964199174] + } + }, + { + "type": "Feature", + "properties": { + "id": "porthcurno-united-kingdom", + "name": "Porthcurno, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.654511602696999, 50.04304865772133] + } + }, + { + "type": "Feature", + "properties": { + "id": "estepona-spain", + "name": "Estepona, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.145869384898987, 36.42710220192447] + } + }, + { + "type": "Feature", + "properties": { + "id": "alexandria-egypt", + "name": "Alexandria, Egypt", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [29.889799154879768, 31.191886381300293] + } + }, + { + "type": "Feature", + "properties": { + "id": "fujairah-united-arab-emirates", + "name": "Fujairah, United Arab Emirates", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [56.33372573425402, 25.12169311729687] + } + }, + { + "type": "Feature", + "properties": { + "id": "penang-malaysia", + "name": "Penang, Malaysia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [100.36299141850921, 5.353648556252068] + } + }, + { + "type": "Feature", + "properties": { + "id": "miura-japan", + "name": "Miura, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [139.62067845174548, 35.14403408076478] + } + }, + { + "type": "Feature", + "properties": { + "id": "island-park-ny-united-states", + "name": "Island Park, NY, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-73.65592827360544, 40.60030327678891] + } + }, + { + "type": "Feature", + "properties": { + "id": "deep-water-bay-china", + "name": "Deep Water Bay, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [114.18397772134276, 22.249439351724135] + } + }, + { + "type": "Feature", + "properties": { + "id": "taipa-china", + "name": "Taipa, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [113.56102894389554, 22.156130887820552] + } + }, + { + "type": "Feature", + "properties": { + "id": "danang-vietnam", + "name": "Danang, Vietnam", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [108.21474366875415, 16.051559827539535] + } + }, + { + "type": "Feature", + "properties": { + "id": "mersing-malaysia", + "name": "Mersing, Malaysia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.84990301084824, 2.295511672818094] + } + }, + { + "type": "Feature", + "properties": { + "id": "tuckerton-nj-united-states", + "name": "Tuckerton, NJ, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-74.3379102123581, 39.60388495499794] + } + }, + { + "type": "Feature", + "properties": { + "id": "st-davids-bermuda", + "name": "St. David’s, Bermuda", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.76950878757836, 32.31223462116611] + } + }, + { + "type": "Feature", + "properties": { + "id": "boca-raton-fl-united-states", + "name": "Boca Raton, FL, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-80.08894373592823, 26.350323169523307] + } + }, + { + "type": "Feature", + "properties": { + "id": "geoje-south-korea", + "name": "Geoje, South Korea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [128.62116686463057, 34.89432230348703] + } + }, + { + "type": "Feature", + "properties": { + "id": "toucheng-taiwan", + "name": "Toucheng, Taiwan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.80145279380204, 24.863592858849984] + } + }, + { + "type": "Feature", + "properties": { + "id": "pyapon-myanmar", + "name": "Pyapon, Myanmar", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [95.68194004710986, 16.28219994582068] + } + }, + { + "type": "Feature", + "properties": { + "id": "cochin-india", + "name": "Cochin, India", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [76.2695514552781, 9.938085366963747] + } + }, + { + "type": "Feature", + "properties": { + "id": "muscat-oman", + "name": "Muscat, Oman", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [58.59104835389556, 23.615093257127455] + } + }, + { + "type": "Feature", + "properties": { + "id": "haramous-djibouti", + "name": "Haramous, Djibouti", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [43.16166943911833, 11.57367892559111] + } + }, + { + "type": "Feature", + "properties": { + "id": "yeroskipos-cyprus", + "name": "Yeroskipos, Cyprus", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [32.46655514198167, 34.76641137968889] + } + }, + { + "type": "Feature", + "properties": { + "id": "marmaris-turkey", + "name": "Marmaris, Turkey", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [28.253667501430726, 36.855249443027645] + } + }, + { + "type": "Feature", + "properties": { + "id": "mazara-del-vallo-italy", + "name": "Mazara del Vallo, Italy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.591276253065672, 37.6501301882885] + } + }, + { + "type": "Feature", + "properties": { + "id": "sesimbra-portugal", + "name": "Sesimbra, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-9.10275134743162, 38.442693498717716] + } + }, + { + "type": "Feature", + "properties": { + "id": "penmarch-france", + "name": "Penmarch, France", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.338692222335851, 47.81131501545926] + } + }, + { + "type": "Feature", + "properties": { + "id": "goonhilly-downs-united-kingdom", + "name": "Goonhilly Downs, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.174531473969438, 50.02480268692736] + } + }, + { + "type": "Feature", + "properties": { + "id": "sylt-germany", + "name": "Sylt, Germany", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [8.383369077736603, 54.89850565849076] + } + }, + { + "type": "Feature", + "properties": { + "id": "conil-spain", + "name": "Conil, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.087226139907955, 36.27656323583929] + } + }, + { + "type": "Feature", + "properties": { + "id": "nassau-bahamas", + "name": "Nassau, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-77.3402518354711, 25.067038149721668] + } + }, + { + "type": "Feature", + "properties": { + "id": "crooked-island-bahamas", + "name": "Crooked Island, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-74.19499039172881, 22.629711836470307] + } + }, + { + "type": "Feature", + "properties": { + "id": "providenciales-turks-and-caicos-islands", + "name": "Providenciales, Turks and Caicos Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-72.12023600212929, 21.851092241181135] + } + }, + { + "type": "Feature", + "properties": { + "id": "punta-cana-dominican-republic", + "name": "Punta Cana, Dominican Republic", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-68.43825618860336, 18.62127951261195] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-plata-dominican-republic", + "name": "Puerto Plata, Dominican Republic", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-70.69123310819835, 19.799343884570277] + } + }, + { + "type": "Feature", + "properties": { + "id": "riohacha-colombia", + "name": "Riohacha, Colombia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-72.95270611552465, 11.482908943707002] + } + }, + { + "type": "Feature", + "properties": { + "id": "bluefields-nicaragua", + "name": "Bluefields, Nicaragua", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-83.7714606584487, 11.991778023043224] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-lempira-honduras", + "name": "Puerto Lempira, Honduras", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-83.77675850625809, 15.2612206744503] + } + }, + { + "type": "Feature", + "properties": { + "id": "trujillo-honduras", + "name": "Trujillo, Honduras", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-85.95475989302903, 15.91515082763621] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-cortes-honduras", + "name": "Puerto Cortes, Honduras", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-87.94606707611833, 15.844797765849336] + } + }, + { + "type": "Feature", + "properties": { + "id": "kahe-point-hi-united-states", + "name": "Kahe Point, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-158.1305815657342, 21.353981651913017] + } + }, + { + "type": "Feature", + "properties": { + "id": "tel-aviv-israel", + "name": "Tel Aviv, Israel", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [34.769678510427525, 32.04459625328252] + } + }, + { + "type": "Feature", + "properties": { + "id": "punta-carnero-ecuador", + "name": "Punta Carnero, Ecuador", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-80.91443143239496, -2.272915471022714] + } + }, + { + "type": "Feature", + "properties": { + "id": "baby-beach-aruba", + "name": "Baby Beach, Aruba", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-69.87868485569008, 12.414141621401512] + } + }, + { + "type": "Feature", + "properties": { + "id": "halifax-ns-canada", + "name": "Halifax, NS, Canada", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-63.57395299389634, 44.64579771640388] + } + }, + { + "type": "Feature", + "properties": { + "id": "lynn-ma-united-states", + "name": "Lynn, MA, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-70.95026612782196, 42.46366906639662] + } + }, + { + "type": "Feature", + "properties": { + "id": "dublin-ireland", + "name": "Dublin, Ireland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.248261182079261, 53.34804540825266] + } + }, + { + "type": "Feature", + "properties": { + "id": "southport-united-kingdom", + "name": "Southport, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-3.006368947416178, 53.6479307129575] + } + }, + { + "type": "Feature", + "properties": { + "id": "san-juan-pr-united-states", + "name": "San Juan, PR, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-66.10666604344871, 18.46583911293328] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-san-jose-guatemala", + "name": "Puerto San Jose, Guatemala", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-90.82221860307874, 13.934611711675785] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-limon-costa-rica", + "name": "Puerto Limon, Costa Rica", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-83.03767211577134, 9.98860569236453] + } + }, + { + "type": "Feature", + "properties": { + "id": "vero-beach-fl-united-states", + "name": "Vero Beach, FL, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-80.3942657852602, 27.638389595700062] + } + }, + { + "type": "Feature", + "properties": { + "id": "eight-mile-rock-bahamas", + "name": "Eight-Mile Rock, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-78.80286066262627, 26.539625615887786] + } + }, + { + "type": "Feature", + "properties": { + "id": "mazatln-mexico", + "name": "Mazatlán, Mexico", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-106.4218657552673, 23.19954028420841] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-cabezas-nicaragua", + "name": "Puerto Cabezas, Nicaragua", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-83.39392186340069, 14.021605416550102] + } + }, + { + "type": "Feature", + "properties": { + "id": "tanguisson-point-gu-united-states", + "name": "Tanguisson Point, GU, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [144.80934665104402, 13.549098008782096] + } + }, + { + "type": "Feature", + "properties": { + "id": "bandon-or-united-states", + "name": "Bandon, OR, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-124.40823607019446, 43.11855671756456] + } + }, + { + "type": "Feature", + "properties": { + "id": "cayenne-french-guiana", + "name": "Cayenne, French Guiana", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-52.321080106162114, 4.941366580222763] + } + }, + { + "type": "Feature", + "properties": { + "id": "le-lamentin-martinique", + "name": "Le Lamentin, Martinique", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.09426725052896, 14.615536344106602] + } + }, + { + "type": "Feature", + "properties": { + "id": "miramar-pr-united-states", + "name": "Miramar, PR, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-66.08288676341918, 18.453414915988162] + } + }, + { + "type": "Feature", + "properties": { + "id": "punto-fijo-venezuela", + "name": "Punto Fijo, Venezuela", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-70.20425835551981, 11.708793042446786] + } + }, + { + "type": "Feature", + "properties": { + "id": "coro-venezuela", + "name": "Coro, Venezuela", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-69.6778182987669, 11.40280739842251] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-cabello-venezuela", + "name": "Puerto Cabello, Venezuela", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-68.00958217587406, 10.478127219558246] + } + }, + { + "type": "Feature", + "properties": { + "id": "camuri-venezuela", + "name": "Camuri, Venezuela", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-66.87819870001267, 10.606453559388058] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-la-cruz-venezuela", + "name": "Puerto La Cruz, Venezuela", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.64487508680702, 10.20253829818435] + } + }, + { + "type": "Feature", + "properties": { + "id": "cuman-venezuela", + "name": "Cumaná, Venezuela", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.1821190669718, 10.45429942943457] + } + }, + { + "type": "Feature", + "properties": { + "id": "porlamar-venezuela", + "name": "Porlamar, Venezuela", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-63.84761002659714, 10.955251673780253] + } + }, + { + "type": "Feature", + "properties": { + "id": "carpano-venezuela", + "name": "Carúpano, Venezuela", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-63.250527930044655, 10.666799855297995] + } + }, + { + "type": "Feature", + "properties": { + "id": "maracaibo-venezuela", + "name": "Maracaibo, Venezuela", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-71.59838578587484, 10.688212118052888] + } + }, + { + "type": "Feature", + "properties": { + "id": "cabimas-venezuela", + "name": "Cabimas, Venezuela", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-71.45109585115443, 10.395952645405345] + } + }, + { + "type": "Feature", + "properties": { + "id": "chichiriviche-venezuela", + "name": "Chichiriviche, Venezuela", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-68.28449653190312, 10.928572840410965] + } + }, + { + "type": "Feature", + "properties": { + "id": "higuerote-venezuela", + "name": "Higuerote, Venezuela", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-66.0981089206046, 10.480347852297058] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-of-spain-trinidad-and-tobago", + "name": "Port of Spain, Trinidad and Tobago", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.516679060663506, 10.649788927298061] + } + }, + { + "type": "Feature", + "properties": { + "id": "cat-island-bahamas", + "name": "Cat Island, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-75.52589765202667, 24.403328545640875] + } + }, + { + "type": "Feature", + "properties": { + "id": "paddington-nsw-australia", + "name": "Paddington, NSW, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [151.22867804102955, -33.882122576910746] + } + }, + { + "type": "Feature", + "properties": { + "id": "oxford-falls-nsw-australia", + "name": "Oxford Falls, NSW, Australia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [151.24508427940717, -33.737386464427146] + } + }, + { + "type": "Feature", + "properties": { + "id": "tumon-bay-gu-united-states", + "name": "Tumon Bay, GU, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [144.80055759477042, 13.513588412077127] + } + }, + { + "type": "Feature", + "properties": { + "id": "jeddah-saudi-arabia", + "name": "Jeddah, Saudi Arabia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [39.18276132165812, 21.481258967423997] + } + }, + { + "type": "Feature", + "properties": { + "id": "aqaba-jordan", + "name": "Aqaba, Jordan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [35.0069830298188, 29.5317563225164] + } + }, + { + "type": "Feature", + "properties": { + "id": "catania-italy", + "name": "Catania, Italy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [15.06744637392353, 37.51158912057966] + } + }, + { + "type": "Feature", + "properties": { + "id": "haifa-israel", + "name": "Haifa, Israel", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [34.99877991062991, 32.81141595206901] + } + }, + { + "type": "Feature", + "properties": { + "id": "chania-greece", + "name": "Chania, Greece", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [24.012166599899842, 35.51180510130379] + } + }, + { + "type": "Feature", + "properties": { + "id": "sochi-russia", + "name": "Sochi, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [39.725827343195135, 43.61550412193395] + } + }, + { + "type": "Feature", + "properties": { + "id": "poti-georgia", + "name": "Poti, Georgia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [41.66762284260889, 42.15077146868242] + } + }, + { + "type": "Feature", + "properties": { + "id": "whittier-ak-united-states", + "name": "Whittier, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-148.68473864788294, 60.77292972367712] + } + }, + { + "type": "Feature", + "properties": { + "id": "valdez-ak-united-states", + "name": "Valdez, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-146.35334076333424, 61.1303526863193] + } + }, + { + "type": "Feature", + "properties": { + "id": "juneau-ak-united-states", + "name": "Juneau, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-134.4068617995742, 58.29950660150348] + } + }, + { + "type": "Feature", + "properties": { + "id": "dubai-united-arab-emirates", + "name": "Dubai, United Arab Emirates", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [55.3084334918307, 25.269340274513326] + } + }, + { + "type": "Feature", + "properties": { + "id": "doha-qatar", + "name": "Doha, Qatar", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [51.519373676036224, 25.294340911551473] + } + }, + { + "type": "Feature", + "properties": { + "id": "manama-bahrain", + "name": "Manama, Bahrain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [50.575819656958856, 26.228971616238397] + } + }, + { + "type": "Feature", + "properties": { + "id": "kuwait-city-kuwait", + "name": "Kuwait City, Kuwait", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [47.97474728083279, 29.374016243694342] + } + }, + { + "type": "Feature", + "properties": { + "id": "lannion-france", + "name": "Lannion, France", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-3.45993307923203, 48.7302567635661] + } + }, + { + "type": "Feature", + "properties": { + "id": "shirley-ny-united-states", + "name": "Shirley, NY, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-72.8722374225294, 40.80028399491198] + } + }, + { + "type": "Feature", + "properties": { + "id": "manasquan-nj-united-states", + "name": "Manasquan, NJ, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-74.04704127778739, 40.12334092150604] + } + }, + { + "type": "Feature", + "properties": { + "id": "tong-fuk-china", + "name": "Tong Fuk, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [113.9321224310095, 22.227383648293767] + } + }, + { + "type": "Feature", + "properties": { + "id": "bellport-ny-united-states", + "name": "Bellport, NY, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-72.9378135479497, 40.755544345975636] + } + }, + { + "type": "Feature", + "properties": { + "id": "puerto-viejo-venezuela", + "name": "Puerto Viejo, Venezuela", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-67.02995640500617, 10.611204913055957] + } + }, + { + "type": "Feature", + "properties": { + "id": "half-moon-bay-cayman-islands", + "name": "Half Moon Bay, Cayman Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-81.16677500363241, 19.282958272408933] + } + }, + { + "type": "Feature", + "properties": { + "id": "skewjack-united-kingdom", + "name": "Skewjack, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.675068228759528, 50.06356023166626] + } + }, + { + "type": "Feature", + "properties": { + "id": "willemstad-curaao", + "name": "Willemstad, Curaçao", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-68.89660547327945, 12.095319207817482] + } + }, + { + "type": "Feature", + "properties": { + "id": "krst-norway", + "name": "Kårstø, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [5.524386728066474, 59.27926561977114] + } + }, + { + "type": "Feature", + "properties": { + "id": "lowestoft-united-kingdom", + "name": "Lowestoft, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [1.729174572880481, 52.47136138660366] + } + }, + { + "type": "Feature", + "properties": { + "id": "novorossiysk-russia", + "name": "Novorossiysk, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [37.77280138298693, 44.72363129016526] + } + }, + { + "type": "Feature", + "properties": { + "id": "lena-point-ak-united-states", + "name": "Lena Point, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-134.7472912459108, 58.55094319826671] + } + }, + { + "type": "Feature", + "properties": { + "id": "gedser-denmark", + "name": "Gedser, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [11.928972034748114, 54.5763494513252] + } + }, + { + "type": "Feature", + "properties": { + "id": "krdla-estonia", + "name": "Kärdla, Estonia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [22.738046408748517, 59.00085992778861] + } + }, + { + "type": "Feature", + "properties": { + "id": "stavsnas-sweden", + "name": "Stavsnas, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [18.68833503869206, 59.29277953886509] + } + }, + { + "type": "Feature", + "properties": { + "id": "alta-vista-canary-islands-spain", + "name": "Alta Vista, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-15.699963470779664, 27.99950052783035] + } + }, + { + "type": "Feature", + "properties": { + "id": "cotonou-benin", + "name": "Cotonou, Benin", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [2.439916256884288, 6.356578143137085] + } + }, + { + "type": "Feature", + "properties": { + "id": "cacuaco-angola", + "name": "Cacuaco, Angola", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [13.372330387259552, -8.776676133719576] + } + }, + { + "type": "Feature", + "properties": { + "id": "melkbosstrand-south-africa", + "name": "Melkbosstrand, South Africa", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [18.445764293191417, -33.72721429783107] + } + }, + { + "type": "Feature", + "properties": { + "id": "douala-cameroon", + "name": "Douala, Cameroon", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [9.706317359297685, 4.047149594894734] + } + }, + { + "type": "Feature", + "properties": { + "id": "baie-jacotet-mauritius", + "name": "Baie Jacotet, Mauritius", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [57.48538507465784, -20.473998881300616] + } + }, + { + "type": "Feature", + "properties": { + "id": "saint-paul-runion", + "name": "Saint Paul, Réunion", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [55.27913663758483, -21.000248532786685] + } + }, + { + "type": "Feature", + "properties": { + "id": "panama-city-panama", + "name": "Panama City, Panama", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-79.536698033394, 8.96460539716702] + } + }, + { + "type": "Feature", + "properties": { + "id": "colon-panama", + "name": "Colon, Panama", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-79.90002785413276, 9.353719654814881] + } + }, + { + "type": "Feature", + "properties": { + "id": "kolobrzeg-poland", + "name": "Kolobrzeg, Poland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [15.574867889461387, 54.17234594764517] + } + }, + { + "type": "Feature", + "properties": { + "id": "ystad-sweden", + "name": "Ystad, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [13.828287095505573, 55.43133306942664] + } + }, + { + "type": "Feature", + "properties": { + "id": "kilmore-quay-ireland", + "name": "Kilmore Quay, Ireland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.584100787917293, 52.17458459780505] + } + }, + { + "type": "Feature", + "properties": { + "id": "sennen-cove-united-kingdom", + "name": "Sennen Cove, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.698749852608188, 50.076057253909084] + } + }, + { + "type": "Feature", + "properties": { + "id": "sandymount-ireland", + "name": "Sandymount, Ireland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.215448705323951, 53.331420488922106] + } + }, + { + "type": "Feature", + "properties": { + "id": "wada-japan", + "name": "Wada, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [140.016771921149, 35.035849707658116] + } + }, + { + "type": "Feature", + "properties": { + "id": "lynnwood-wa-united-states", + "name": "Lynnwood, WA, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-122.31585473995702, 47.82399565289671] + } + }, + { + "type": "Feature", + "properties": { + "id": "barranquilla-colombia", + "name": "Barranquilla, Colombia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-74.77975560247563, 10.940462356597266] + } + }, + { + "type": "Feature", + "properties": { + "id": "toyohashi-japan", + "name": "Toyohashi, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [137.39157846836073, 34.769058694740494] + } + }, + { + "type": "Feature", + "properties": { + "id": "pedersker-denmark", + "name": "Pedersker, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.992153458511723, 55.03092522192833] + } + }, + { + "type": "Feature", + "properties": { + "id": "tallinn-estonia", + "name": "Tallinn, Estonia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [24.75240045051129, 59.43619967386823] + } + }, + { + "type": "Feature", + "properties": { + "id": "emi-japan", + "name": "Emi, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [140.06110782724093, 35.062382188907605] + } + }, + { + "type": "Feature", + "properties": { + "id": "oxwich-bay-united-kingdom", + "name": "Oxwich Bay, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.169600545246965, 51.5577834055629] + } + }, + { + "type": "Feature", + "properties": { + "id": "north-miami-beach-fl-united-states", + "name": "North Miami Beach, FL, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-80.16238118390442, 25.932943369738155] + } + }, + { + "type": "Feature", + "properties": { + "id": "katthammarsvik-sweden", + "name": "Katthammarsvik, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [18.845275728923724, 57.43103874071369] + } + }, + { + "type": "Feature", + "properties": { + "id": "fukuoka-japan", + "name": "Fukuoka, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [130.40164201384718, 33.59029634124741] + } + }, + { + "type": "Feature", + "properties": { + "id": "caves-point-bahamas", + "name": "Caves Point, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-77.45299589622712, 25.06845347286773] + } + }, + { + "type": "Feature", + "properties": { + "id": "current-bahamas", + "name": "Current, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-76.78766433630425, 25.407832959532726] + } + }, + { + "type": "Feature", + "properties": { + "id": "sandy-point-bahamas", + "name": "Sandy Point, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-77.39952913722855, 26.025208986231604] + } + }, + { + "type": "Feature", + "properties": { + "id": "highbridge-united-kingdom", + "name": "Highbridge, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.975021313373105, 51.222224715299575] + } + }, + { + "type": "Feature", + "properties": { + "id": "bilbao-spain", + "name": "Bilbao, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.946163911940886, 43.268343944304746] + } + }, + { + "type": "Feature", + "properties": { + "id": "el-mdano-canary-islands-spain", + "name": "El Médano, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-16.53858592356673, 28.04665565421587] + } + }, + { + "type": "Feature", + "properties": { + "id": "ttouan-morocco", + "name": "Tétouan, Morocco", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.391816476292718, 35.56592071383514] + } + }, + { + "type": "Feature", + "properties": { + "id": "tulum-mexico", + "name": "Tulum, Mexico", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-87.46359671477981, 20.21255300132458] + } + }, + { + "type": "Feature", + "properties": { + "id": "isla-verde-pr-united-states", + "name": "Isla Verde, PR, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-66.0168711851852, 18.441649889620493] + } + }, + { + "type": "Feature", + "properties": { + "id": "hawksbill-bahamas", + "name": "Hawksbill, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-78.73684508439229, 26.51690828149026] + } + }, + { + "type": "Feature", + "properties": { + "id": "belize-city-belize", + "name": "Belize City, Belize", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-88.18161378425486, 17.495546959038734] + } + }, + { + "type": "Feature", + "properties": { + "id": "changi-north-singapore", + "name": "Changi North, Singapore", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.98701228871877, 1.389044778365076] + } + }, + { + "type": "Feature", + "properties": { + "id": "logi-russia", + "name": "Logi, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [28.499858733276625, 59.79988465730398] + } + }, + { + "type": "Feature", + "properties": { + "id": "maiquetia-venezuela", + "name": "Maiquetia, Venezuela", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-66.96032754808188, 10.599398382983651] + } + }, + { + "type": "Feature", + "properties": { + "id": "el-djamila-algeria", + "name": "El Djamila, Algeria", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [2.901439367437092, 36.80021914596014] + } + }, + { + "type": "Feature", + "properties": { + "id": "ostend-belgium", + "name": "Ostend, Belgium", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [2.912669828231202, 51.23112295648613] + } + }, + { + "type": "Feature", + "properties": { + "id": "funningsfjordur-faroe-islands", + "name": "Funningsfjordur, Faroe Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.928143512944303, 62.24410742927273] + } + }, + { + "type": "Feature", + "properties": { + "id": "seydisfjordur-iceland", + "name": "Seydisfjordur, Iceland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-14.01803106852637, 65.25134493671624] + } + }, + { + "type": "Feature", + "properties": { + "id": "plerin-france", + "name": "Plerin, France", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.768087866216746, 48.5347423619462] + } + }, + { + "type": "Feature", + "properties": { + "id": "athens-greece", + "name": "Athens, Greece", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [23.736287889084878, 37.976077606231485] + } + }, + { + "type": "Feature", + "properties": { + "id": "ses-covetes-spain", + "name": "Ses Covetes, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [2.970970568180519, 39.35454015029765] + } + }, + { + "type": "Feature", + "properties": { + "id": "kita-kyushu-japan", + "name": "Kita-kyushu, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [131.03201266103676, 33.839280593185066] + } + }, + { + "type": "Feature", + "properties": { + "id": "dunnet-bay-united-kingdom", + "name": "Dunnet Bay, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-3.346212456667843, 58.6153117335717] + } + }, + { + "type": "Feature", + "properties": { + "id": "harbour-pointe-wa-united-states", + "name": "Harbour Pointe, WA, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-122.30218287464231, 47.886214534310426] + } + }, + { + "type": "Feature", + "properties": { + "id": "ganaveh-iran", + "name": "Ganaveh, Iran", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [50.52113219569986, 29.57074954758673] + } + }, + { + "type": "Feature", + "properties": { + "id": "toliara-madagascar", + "name": "Toliara, Madagascar", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [43.66312924147357, -23.354761383307448] + } + }, + { + "type": "Feature", + "properties": { + "id": "saint-maarten-sint-maarten", + "name": "Saint Maarten, Sint Maarten", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-63.073709207648776, 18.03104106358677] + } + }, + { + "type": "Feature", + "properties": { + "id": "tripoli-libya", + "name": "Tripoli, Libya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [13.18727192460679, 32.87729851774509] + } + }, + { + "type": "Feature", + "properties": { + "id": "halul-island-qatar", + "name": "Halul Island, Qatar", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [52.420251944095554, 25.66856486604894] + } + }, + { + "type": "Feature", + "properties": { + "id": "das-island-united-arab-emirates", + "name": "Das Island, United Arab Emirates", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [52.86595475335554, 25.152635742226607] + } + }, + { + "type": "Feature", + "properties": { + "id": "msida-malta", + "name": "Msida, Malta", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.48814990930262, 35.89870707579968] + } + }, + { + "type": "Feature", + "properties": { + "id": "pentaskhinos-cyprus", + "name": "Pentaskhinos, Cyprus", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [33.603566055262434, 34.828480585406425] + } + }, + { + "type": "Feature", + "properties": { + "id": "beirut-lebanon", + "name": "Beirut, Lebanon", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [35.48520534729164, 33.892474483755706] + } + }, + { + "type": "Feature", + "properties": { + "id": "tartous-syria", + "name": "Tartous, Syria", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [35.89780271125363, 34.89170456715425] + } + }, + { + "type": "Feature", + "properties": { + "id": "jask-iran", + "name": "Jask, Iran", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [57.79739657237599, 25.681238922770035] + } + }, + { + "type": "Feature", + "properties": { + "id": "trablous-lebanon", + "name": "Trablous, Lebanon", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [35.859130863649256, 34.43942017407255] + } + }, + { + "type": "Feature", + "properties": { + "id": "saida-lebanon", + "name": "Saida, Lebanon", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [35.38627963612143, 33.45019127312952] + } + }, + { + "type": "Feature", + "properties": { + "id": "bull-bay-jamaica", + "name": "Bull Bay, Jamaica", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-76.666668328269, 17.949676769483375] + } + }, + { + "type": "Feature", + "properties": { + "id": "cayman-brac-cayman-islands", + "name": "Cayman Brac, Cayman Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-79.87764017468038, 19.690333157005682] + } + }, + { + "type": "Feature", + "properties": { + "id": "pevensey-bay-united-kingdom", + "name": "Pevensey Bay, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [0.366675538087463, 50.81901885178749] + } + }, + { + "type": "Feature", + "properties": { + "id": "cayeux-sur-mer-france", + "name": "Cayeux-sur-Mer, France", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [1.493432552382359, 50.1788087128989] + } + }, + { + "type": "Feature", + "properties": { + "id": "broadstairs-united-kingdom", + "name": "Broadstairs, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [1.439428684389156, 51.35888704355227] + } + }, + { + "type": "Feature", + "properties": { + "id": "puttgarden-germany", + "name": "Puttgarden, Germany", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [11.212468636075954, 54.49606370712445] + } + }, + { + "type": "Feature", + "properties": { + "id": "rodbyhavn-denmark", + "name": "Rodbyhavn, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [11.358659938762571, 54.663072234722705] + } + }, + { + "type": "Feature", + "properties": { + "id": "balluta-bay-malta", + "name": "Balluta Bay, Malta", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.380044517135502, 35.934059945071226] + } + }, + { + "type": "Feature", + "properties": { + "id": "abu-dhabi-united-arab-emirates", + "name": "Abu Dhabi, United Arab Emirates", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [54.41888334074636, 24.44378591321805] + } + }, + { + "type": "Feature", + "properties": { + "id": "seward-ak-united-states", + "name": "Seward, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-149.44313654812677, 60.112188854289144] + } + }, + { + "type": "Feature", + "properties": { + "id": "warrenton-or-united-states", + "name": "Warrenton, OR, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-123.92386141333, 46.165128101471765] + } + }, + { + "type": "Feature", + "properties": { + "id": "colombo-sri-lanka", + "name": "Colombo, Sri Lanka", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [79.87199030952664, 6.926734329228339] + } + }, + { + "type": "Feature", + "properties": { + "id": "annaba-algeria", + "name": "Annaba, Algeria", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [7.755439835067534, 36.90234352923105] + } + }, + { + "type": "Feature", + "properties": { + "id": "coxs-bazar-bangladesh", + "name": "Cox’s Bazar, Bangladesh", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [91.9949309402717, 21.429179588930793] + } + }, + { + "type": "Feature", + "properties": { + "id": "melaka-malaysia", + "name": "Melaka, Malaysia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [102.22090025859913, 2.273178376445401] + } + }, + { + "type": "Feature", + "properties": { + "id": "tuticorine-india", + "name": "Tuticorine, India", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [78.14513606409648, 8.802197481673602] + } + }, + { + "type": "Feature", + "properties": { + "id": "ventspils-latvia", + "name": "Ventspils, Latvia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [21.569980829967136, 57.3895311433225] + } + }, + { + "type": "Feature", + "properties": { + "id": "farosund-sweden", + "name": "Farosund, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [19.05533417386644, 57.86298045610252] + } + }, + { + "type": "Feature", + "properties": { + "id": "al-safat-kuwait", + "name": "Al Safat, Kuwait", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [47.97650509208768, 29.36993130675009] + } + }, + { + "type": "Feature", + "properties": { + "id": "al-seeb-oman", + "name": "Al Seeb, Oman", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [58.17610724159374, 23.684699958424858] + } + }, + { + "type": "Feature", + "properties": { + "id": "khasab-oman", + "name": "Khasab, Oman", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [56.24681173332479, 26.181306905191207] + } + }, + { + "type": "Feature", + "properties": { + "id": "algiers-algeria", + "name": "Algiers, Algeria", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [3.03181036883106, 36.765335726264965] + } + }, + { + "type": "Feature", + "properties": { + "id": "al-ghaydah-yemen", + "name": "Al Ghaydah, Yemen", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [52.1823614876194, 16.21038241802077] + } + }, + { + "type": "Feature", + "properties": { + "id": "al-hudaydah-yemen", + "name": "Al Hudaydah, Yemen", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [43.00853986144068, 14.685558591121037] + } + }, + { + "type": "Feature", + "properties": { + "id": "kokkini-greece", + "name": "Kokkini, Greece", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [19.92398590225534, 39.75382832785027] + } + }, + { + "type": "Feature", + "properties": { + "id": "bari-italy", + "name": "Bari, Italy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [16.866663849340995, 41.12549190517652] + } + }, + { + "type": "Feature", + "properties": { + "id": "al-khobar-saudi-arabia", + "name": "Al Khobar, Saudi Arabia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [50.21419881938428, 26.286171946143384] + } + }, + { + "type": "Feature", + "properties": { + "id": "male-maldives", + "name": "Male, Maldives", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [73.49992451105788, 4.166264250014393] + } + }, + { + "type": "Feature", + "properties": { + "id": "trivendrum-india", + "name": "Trivendrum, India", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [76.97023455265756, 8.79814420594613] + } + }, + { + "type": "Feature", + "properties": { + "id": "unqui-costa-rica", + "name": "Unqui, Costa Rica", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-84.45427267473828, 9.52585599210056] + } + }, + { + "type": "Feature", + "properties": { + "id": "asilah-morocco", + "name": "Asilah, Morocco", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.035761332616119, 35.470776894974364] + } + }, + { + "type": "Feature", + "properties": { + "id": "qingdao-china", + "name": "Qingdao, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [120.34256710854041, 36.08707301679962] + } + }, + { + "type": "Feature", + "properties": { + "id": "nedonna-beach-or-united-states", + "name": "Nedonna Beach, OR, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-123.9400723393461, 45.64373383133329] + } + }, + { + "type": "Feature", + "properties": { + "id": "siboney-cuba", + "name": "Siboney, Cuba", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-75.71237212930136, 19.96363784623182] + } + }, + { + "type": "Feature", + "properties": { + "id": "la-guaira-venezuela", + "name": "La Guaira, Venezuela", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-66.88962447316864, 10.603153964816613] + } + }, + { + "type": "Feature", + "properties": { + "id": "spanish-river-park-fl-united-states", + "name": "Spanish River Park, FL, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-80.06770351659999, 26.378060323486324] + } + }, + { + "type": "Feature", + "properties": { + "id": "crown-haven-bahamas", + "name": "Crown Haven, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-77.82195315438537, 26.912504093121328] + } + }, + { + "type": "Feature", + "properties": { + "id": "riding-point-bahamas", + "name": "Riding Point, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-78.24587863532254, 26.616743586869234] + } + }, + { + "type": "Feature", + "properties": { + "id": "oran-algeria", + "name": "Oran, Algeria", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-0.641966325506104, 35.701644687598105] + } + }, + { + "type": "Feature", + "properties": { + "id": "nevelsk-russia", + "name": "Nevelsk, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [141.85915342848872, 46.68444926886579] + } + }, + { + "type": "Feature", + "properties": { + "id": "anchorage-ak-united-states", + "name": "Anchorage, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-149.85837062897104, 61.21746022819249] + } + }, + { + "type": "Feature", + "properties": { + "id": "homer-ak-united-states", + "name": "Homer, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-151.5443069346379, 59.64636648400125] + } + }, + { + "type": "Feature", + "properties": { + "id": "kenai-ak-united-states", + "name": "Kenai, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-151.25978565182047, 60.55290938197095] + } + }, + { + "type": "Feature", + "properties": { + "id": "kurilsk-russia", + "name": "Kurilsk, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [147.88148802939835, 45.08668134949974] + } + }, + { + "type": "Feature", + "properties": { + "id": "yuzhno-kurilsk-russia", + "name": "Yuzhno Kurilsk, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [145.85861348585863, 44.03452277512258] + } + }, + { + "type": "Feature", + "properties": { + "id": "krabozavodskoye-russia", + "name": "Krabozavodskoye, Russia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [146.74723590322517, 43.79361974189811] + } + }, + { + "type": "Feature", + "properties": { + "id": "narrow-cape-ak-united-states", + "name": "Narrow Cape, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-152.32916965988375, 57.426839493352986] + } + }, + { + "type": "Feature", + "properties": { + "id": "naoetsu-japan", + "name": "Naoetsu, Japan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [138.24216380329804, 37.1697471369115] + } + }, + { + "type": "Feature", + "properties": { + "id": "dumpton-gap-united-kingdom", + "name": "Dumpton Gap, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [1.439331028208272, 51.358582140301735] + } + }, + { + "type": "Feature", + "properties": { + "id": "bredene-belgium", + "name": "Bredene, Belgium", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [2.961888543364296, 51.24638508954479] + } + }, + { + "type": "Feature", + "properties": { + "id": "kungsbacka-sweden", + "name": "Kungsbacka, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.076237555423859, 57.48748132890327] + } + }, + { + "type": "Feature", + "properties": { + "id": "helsingborg-sweden", + "name": "Helsingborg, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.69586602272335, 56.04384398259481] + } + }, + { + "type": "Feature", + "properties": { + "id": "saeby-denmark", + "name": "Saeby, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [10.51657069155658, 57.330828814195684] + } + }, + { + "type": "Feature", + "properties": { + "id": "helsingr-denmark", + "name": "Helsingør, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.592155158693032, 56.03043680856882] + } + }, + { + "type": "Feature", + "properties": { + "id": "dragor-denmark", + "name": "Dragor, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.670182447167804, 55.59353552411696] + } + }, + { + "type": "Feature", + "properties": { + "id": "bunkeflostand-sweden", + "name": "Bunkeflostand, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.918717427353357, 55.556808783888215] + } + }, + { + "type": "Feature", + "properties": { + "id": "tuborg-denmark", + "name": "Tuborg, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.545573160442217, 55.72195316407604] + } + }, + { + "type": "Feature", + "properties": { + "id": "barsebck-sweden", + "name": "Barsebäck, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.955436151341445, 55.7703788906411] + } + }, + { + "type": "Feature", + "properties": { + "id": "ballygrangans-ireland", + "name": "Ballygrangans, Ireland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.558807837085055, 52.1840758940144] + } + }, + { + "type": "Feature", + "properties": { + "id": "ballinesker-ireland", + "name": "Ballinesker, Ireland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.364862661977725, 52.40145956155487] + } + }, + { + "type": "Feature", + "properties": { + "id": "blackpool-united-kingdom", + "name": "Blackpool, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-3.050753681598593, 53.80866015617761] + } + }, + { + "type": "Feature", + "properties": { + "id": "keawaula-hi-united-states", + "name": "Keawaula, HI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-158.24203761297346, 21.548768815961324] + } + }, + { + "type": "Feature", + "properties": { + "id": "mancora-peru", + "name": "Mancora, Peru", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-81.05378680242436, -4.154046119166225] + } + }, + { + "type": "Feature", + "properties": { + "id": "ponta-delgada-portugal", + "name": "Ponta Delgada, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-25.668755236919054, 37.73921676257322] + } + }, + { + "type": "Feature", + "properties": { + "id": "trapani-italy", + "name": "Trapani, Italy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.513639589314238, 38.01795196948339] + } + }, + { + "type": "Feature", + "properties": { + "id": "kelibia-tunisia", + "name": "Kelibia, Tunisia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [11.08991012914754, 36.849310578248605] + } + }, + { + "type": "Feature", + "properties": { + "id": "vung-tau-vietnam", + "name": "Vung Tau, Vietnam", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [107.07919759818563, 10.341846070578725] + } + }, + { + "type": "Feature", + "properties": { + "id": "san-luis-obispo-ca-united-states", + "name": "San Luis Obispo, CA, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-120.66273091104549, 35.28501406539198] + } + }, + { + "type": "Feature", + "properties": { + "id": "ballesteros-philippines", + "name": "Ballesteros, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.51395299746949, 18.409407737575833] + } + }, + { + "type": "Feature", + "properties": { + "id": "morant-point-jamaica", + "name": "Morant Point, Jamaica", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-76.18434445120171, 17.918365683338692] + } + }, + { + "type": "Feature", + "properties": { + "id": "madang-papua-new-guinea", + "name": "Madang, Papua New Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [145.78476099911447, -5.233684557346294] + } + }, + { + "type": "Feature", + "properties": { + "id": "vanimo-papua-new-guinea", + "name": "Vanimo, Papua New Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [141.29985206689102, -2.689686209025552] + } + }, + { + "type": "Feature", + "properties": { + "id": "wewak-papua-new-guinea", + "name": "Wewak, Papua New Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [143.65832207581573, -3.580017060975621] + } + }, + { + "type": "Feature", + "properties": { + "id": "lorengau-papua-new-guinea", + "name": "Lorengau, Papua New Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [147.27904704992326, -2.034973696257708] + } + }, + { + "type": "Feature", + "properties": { + "id": "kavieng-papua-new-guinea", + "name": "Kavieng, Papua New Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [150.80860997923472, -2.578109968566451] + } + }, + { + "type": "Feature", + "properties": { + "id": "kokopo-papua-new-guinea", + "name": "Kokopo, Papua New Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [152.2746245656963, -4.342345484470854] + } + }, + { + "type": "Feature", + "properties": { + "id": "kimbe-papua-new-guinea", + "name": "Kimbe, Papua New Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [150.13873740690363, -5.551156943700505] + } + }, + { + "type": "Feature", + "properties": { + "id": "arawa-papua-new-guinea", + "name": "Arawa, Papua New Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [155.56781070933525, -6.225626589587989] + } + }, + { + "type": "Feature", + "properties": { + "id": "lae-papua-new-guinea", + "name": "Lae, Papua New Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [146.99296326821266, -6.742790426839804] + } + }, + { + "type": "Feature", + "properties": { + "id": "popondetta-papua-new-guinea", + "name": "Popondetta, Papua New Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [148.29347504222986, -8.60448195723049] + } + }, + { + "type": "Feature", + "properties": { + "id": "alotau-papua-new-guinea", + "name": "Alotau, Papua New Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [150.45878112549488, -10.315707376356073] + } + }, + { + "type": "Feature", + "properties": { + "id": "kerema-papua-new-guinea", + "name": "Kerema, Papua New Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [145.77174831301969, -7.963732377083801] + } + }, + { + "type": "Feature", + "properties": { + "id": "daru-papua-new-guinea", + "name": "Daru, Papua New Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [143.2099825496737, -9.078178461616261] + } + }, + { + "type": "Feature", + "properties": { + "id": "tripoli-lebanon", + "name": "Tripoli, Lebanon", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [35.859130863649256, 34.43942017407255] + } + }, + { + "type": "Feature", + "properties": { + "id": "chaguaramas-trinidad-and-tobago", + "name": "Chaguaramas, Trinidad and Tobago", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.65080982501901, 10.686160924629547] + } + }, + { + "type": "Feature", + "properties": { + "id": "chabahar-iran", + "name": "Chabahar, Iran", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [60.62962112850144, 25.298225757613068] + } + }, + { + "type": "Feature", + "properties": { + "id": "bandar-abbas-iran", + "name": "Bandar Abbas, Iran", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [56.27435077631597, 27.187166634918157] + } + }, + { + "type": "Feature", + "properties": { + "id": "papenoo-french-polynesia", + "name": "Papenoo, French Polynesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-149.4410857683295, -17.512339612680847] + } + }, + { + "type": "Feature", + "properties": { + "id": "st-thomas-virgin-islands-u-s-", + "name": "St. Thomas, Virgin Islands (U.S.)", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.90442080138043, 18.32451161430899] + } + }, + { + "type": "Feature", + "properties": { + "id": "coleraine-united-kingdom", + "name": "Coleraine, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.676190566430108, 55.130735276808025] + } + }, + { + "type": "Feature", + "properties": { + "id": "moroni-comoros", + "name": "Moroni, Comoros", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [43.24340297631164, -11.700694108521787] + } + }, + { + "type": "Feature", + "properties": { + "id": "sventoji-lithuania", + "name": "Sventoji, Lithuania", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [21.08238351913559, 56.02828822719519] + } + }, + { + "type": "Feature", + "properties": { + "id": "matthew-town-bahamas", + "name": "Matthew Town, Bahamas", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-73.68307669187328, 20.950513473241386] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-au-prince-haiti", + "name": "Port-au-Prince, Haiti", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-72.34313623484962, 18.542691638169828] + } + }, + { + "type": "Feature", + "properties": { + "id": "redondo-beach-ca-united-states", + "name": "Redondo Beach, CA, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-118.38802549121814, 33.84447169990369] + } + }, + { + "type": "Feature", + "properties": { + "id": "al-faw-iraq", + "name": "Al Faw, Iraq", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [48.53177813622705, 29.923295047889525] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-antonio-jamaica", + "name": "Port Antonio, Jamaica", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-76.44607954957709, 18.176323584205534] + } + }, + { + "type": "Feature", + "properties": { + "id": "negril-jamaica", + "name": "Negril, Jamaica", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-78.34825670000004, 18.27866855000019] + } + }, + { + "type": "Feature", + "properties": { + "id": "black-river-jamaica", + "name": "Black River, Jamaica", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-77.84837205, 18.023692299999738] + } + }, + { + "type": "Feature", + "properties": { + "id": "port-vila-vanuatu", + "name": "Port Vila, Vanuatu", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [168.3228065563886, -17.73033029960237] + } + }, + { + "type": "Feature", + "properties": { + "id": "skalvik-sweden", + "name": "Skalvik, Sweden", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [12.683268375397688, 56.683188391927246] + } + }, + { + "type": "Feature", + "properties": { + "id": "vestero-denmark", + "name": "Vestero, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [10.966960997495818, 57.27225033176589] + } + }, + { + "type": "Feature", + "properties": { + "id": "lyngsa-denmark", + "name": "Lyngsa, Denmark", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [10.514617567940121, 57.24480515635301] + } + }, + { + "type": "Feature", + "properties": { + "id": "deeside-clwyd-united-kingdom", + "name": "Deeside Clwyd, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-3.027560338653956, 53.20172685400547] + } + }, + { + "type": "Feature", + "properties": { + "id": "clonshaugh-ireland", + "name": "Clonshaugh, Ireland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.19791942086681, 53.41005646402988] + } + }, + { + "type": "Feature", + "properties": { + "id": "glen-lyon-united-kingdom", + "name": "Glen Lyon, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.333418788571606, 60.333074012819225] + } + }, + { + "type": "Feature", + "properties": { + "id": "abu-talat-egypt", + "name": "Abu Talat, Egypt", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [29.702494600068064, 31.07184873173793] + } + }, + { + "type": "Feature", + "properties": { + "id": "balchik-bulgaria", + "name": "Balchik, Bulgaria", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [28.167437093767063, 43.41434082476201] + } + }, + { + "type": "Feature", + "properties": { + "id": "florence-or-united-states", + "name": "Florence, OR, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-124.09983785116663, 43.98213392544807] + } + }, + { + "type": "Feature", + "properties": { + "id": "nikiski-ak-united-states", + "name": "Nikiski, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-151.29171922294844, 60.689824374738805] + } + }, + { + "type": "Feature", + "properties": { + "id": "nuuk-greenland", + "name": "Nuuk, Greenland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-51.729967243662, 64.18113207585347] + } + }, + { + "type": "Feature", + "properties": { + "id": "qaqortoq-greenland", + "name": "Qaqortoq, Greenland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-46.03539119962812, 60.71893720673825] + } + }, + { + "type": "Feature", + "properties": { + "id": "landeyjar-iceland", + "name": "Landeyjar, Iceland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-20.142294308165788, 63.64216740018509] + } + }, + { + "type": "Feature", + "properties": { + "id": "wrangell-ak-united-states", + "name": "Wrangell, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-132.38381635771853, 56.47079696590413] + } + }, + { + "type": "Feature", + "properties": { + "id": "petersburg-ak-united-states", + "name": "Petersburg, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-132.97004641117772, 56.80761348649193] + } + }, + { + "type": "Feature", + "properties": { + "id": "hawk-inlet-ak-united-states", + "name": "Hawk Inlet, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-134.74182249978486, 58.128107290421895] + } + }, + { + "type": "Feature", + "properties": { + "id": "angoon-ak-united-states", + "name": "Angoon, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-134.58225230032593, 57.50184070413107] + } + }, + { + "type": "Feature", + "properties": { + "id": "sitka-ak-united-states", + "name": "Sitka, AK, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-135.33440020499734, 57.05291252397862] + } + }, + { + "type": "Feature", + "properties": { + "id": "st-pauls-bay-malta", + "name": "St. Paul's Bay, Malta", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.415591366953777, 35.95050510992482] + } + }, + { + "type": "Feature", + "properties": { + "id": "banff-united-kingdom", + "name": "Banff, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.523654445625652, 57.66686503311678] + } + }, + { + "type": "Feature", + "properties": { + "id": "torshavn-faroe-islands", + "name": "Torshavn, Faroe Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-6.771844795542762, 62.01745992125038] + } + }, + { + "type": "Feature", + "properties": { + "id": "ayre-of-cara-united-kingdom", + "name": "Ayre of Cara, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-2.900119022684549, 58.833271670742334] + } + }, + { + "type": "Feature", + "properties": { + "id": "sandwick-united-kingdom", + "name": "Sandwick, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-1.238694418403355, 59.99597623948273] + } + }, + { + "type": "Feature", + "properties": { + "id": "maywick-united-kingdom", + "name": "Maywick, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-1.323801779987519, 60.00398405107052] + } + }, + { + "type": "Feature", + "properties": { + "id": "cavite-philippines", + "name": "Cavite, Philippines", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [120.82010583274749, 14.286268059205895] + } + }, + { + "type": "Feature", + "properties": { + "id": "pa-li-taiwan", + "name": "Pa Li, Taiwan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [121.38319137135235, 25.149983824511168] + } + }, + { + "type": "Feature", + "properties": { + "id": "shindu-ri-south-korea", + "name": "Shindu-Ri, South Korea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [126.39158626085847, 36.5762519059318] + } + }, + { + "type": "Feature", + "properties": { + "id": "tseung-kwan-o-china", + "name": "Tseung Kwan O, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [114.25868469966966, 22.318295858960994] + } + }, + { + "type": "Feature", + "properties": { + "id": "barka-oman", + "name": "Barka, Oman", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [58.00433001953226, 23.679434626295404] + } + }, + { + "type": "Feature", + "properties": { + "id": "monaco-monaco", + "name": "Monaco, Monaco", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [7.417647105613099, 43.7326219851318] + } + }, + { + "type": "Feature", + "properties": { + "id": "gibraltar-gibraltar", + "name": "Gibraltar, Gibraltar", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-5.347675882562299, 36.15593839433242] + } + }, + { + "type": "Feature", + "properties": { + "id": "tanjung-pinggir-indonesia", + "name": "Tanjung Pinggir, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.95972513555026, 1.133478841137077] + } + }, + { + "type": "Feature", + "properties": { + "id": "rengit-malaysia", + "name": "Rengit, Malaysia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.14765741457578, 1.677136908543702] + } + }, + { + "type": "Feature", + "properties": { + "id": "bahar-ic-caghaq-malta", + "name": "Bahar ic-Caghaq, Malta", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.458755398875866, 35.934059945071226] + } + }, + { + "type": "Feature", + "properties": { + "id": "pozzallo-italy", + "name": "Pozzallo, Italy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.853872306471374, 36.73372358889935] + } + }, + { + "type": "Feature", + "properties": { + "id": "charlestown-ri-united-states", + "name": "Charlestown, RI, United States", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-71.64587110379887, 41.41190102685621] + } + }, + { + "type": "Feature", + "properties": { + "id": "paget-bermuda", + "name": "Paget, Bermuda", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.78869822710942, 32.28053606150149] + } + }, + { + "type": "Feature", + "properties": { + "id": "jarry-guadeloupe", + "name": "Jarry, Guadeloupe", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.554862627363974, 16.24301295362244] + } + }, + { + "type": "Feature", + "properties": { + "id": "baillif-guadeloupe", + "name": "Baillif, Guadeloupe", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.71394454591881, 16.02894096235326] + } + }, + { + "type": "Feature", + "properties": { + "id": "saint-martin-saint-martin", + "name": "Saint Martin, Saint Martin", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-63.05007641189039, 18.092782243043843] + } + }, + { + "type": "Feature", + "properties": { + "id": "saint-barthelemy-saint-barthlemy", + "name": "Saint Barthelemy, Saint Barthélemy", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-62.833377346652114, 17.900059606619095] + } + }, + { + "type": "Feature", + "properties": { + "id": "needhams-point-barbados", + "name": "Needham’s Point, Barbados", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-59.61272533131715, 13.078788771964213] + } + }, + { + "type": "Feature", + "properties": { + "id": "rodney-bay-saint-lucia", + "name": "Rodney Bay, Saint Lucia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-60.988554434791894, 14.035627463902898] + } + }, + { + "type": "Feature", + "properties": { + "id": "st-johns-antigua-and-barbuda", + "name": "St. John’s, Antigua and Barbuda", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.857938584537024, 17.051483656003057] + } + }, + { + "type": "Feature", + "properties": { + "id": "dickenson-bay-antigua-and-barbuda", + "name": "Dickenson Bay, Antigua and Barbuda", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.846850070591344, 17.159562620479022] + } + }, + { + "type": "Feature", + "properties": { + "id": "canefield-dominica", + "name": "Canefield, Dominica", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-61.3848432165572, 15.303329396919509] + } + }, + { + "type": "Feature", + "properties": { + "id": "seixal-portugal", + "name": "Seixal, Portugal", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-9.107390016020531, 38.64227793104314] + } + }, + { + "type": "Feature", + "properties": { + "id": "majuro-marshall-islands", + "name": "Majuro, Marshall Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [171.18569515329133, 7.116244492209489] + } + }, + { + "type": "Feature", + "properties": { + "id": "kwajalein-marshall-islands", + "name": "Kwajalein, Marshall Islands", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [167.42436969284964, 9.189776771931747] + } + }, + { + "type": "Feature", + "properties": { + "id": "pohnpei-micronesia", + "name": "Pohnpei, Micronesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [159.07027404846937, 7.786411434873258] + } + }, + { + "type": "Feature", + "properties": { + "id": "pago-pago-american-samoa", + "name": "Pago Pago, American Samoa", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-170.6957131979243, -14.276549258314759] + } + }, + { + "type": "Feature", + "properties": { + "id": "tanjung-bemban-indonesia", + "name": "Tanjung Bemban, Indonesia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [104.13310593522468, 1.173205471474546] + } + }, + { + "type": "Feature", + "properties": { + "id": "liepaja-latvia", + "name": "Liepaja, Latvia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [21.011289819499012, 56.508187009234916] + } + }, + { + "type": "Feature", + "properties": { + "id": "mariehamn-finland", + "name": "Mariehamn, Finland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [19.937853079931728, 60.11383725176324] + } + }, + { + "type": "Feature", + "properties": { + "id": "haradsholm-finland", + "name": "Haradsholm, Finland", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [22.302109217570575, 60.30096942029215] + } + }, + { + "type": "Feature", + "properties": { + "id": "toamasina-madagascar", + "name": "Toamasina, Madagascar", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [49.40033220843509, -18.146178330153475] + } + }, + { + "type": "Feature", + "properties": { + "id": "sainte-marie-runion", + "name": "Sainte Marie, Réunion", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [55.5499372269972, -20.89737367686439] + } + }, + { + "type": "Feature", + "properties": { + "id": "terre-rouge-mauritius", + "name": "Terre Rouge, Mauritius", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [57.51009208840517, -20.077808728343882] + } + }, + { + "type": "Feature", + "properties": { + "id": "nouakchott-mauritania", + "name": "Nouakchott, Mauritania", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-15.978283586115026, 18.083870571149703] + } + }, + { + "type": "Feature", + "properties": { + "id": "banjul-gambia", + "name": "Banjul, Gambia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-16.581359330765565, 13.455945272538713] + } + }, + { + "type": "Feature", + "properties": { + "id": "conakry-guinea", + "name": "Conakry, Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-13.703822306739795, 9.51362445369898] + } + }, + { + "type": "Feature", + "properties": { + "id": "freetown-sierra-leone", + "name": "Freetown, Sierra Leone", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-13.238099980411846, 8.485330684414834] + } + }, + { + "type": "Feature", + "properties": { + "id": "monrovia-liberia", + "name": "Monrovia, Liberia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-10.797183740829837, 6.300076440551095] + } + }, + { + "type": "Feature", + "properties": { + "id": "lome-togo", + "name": "Lome, Togo", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [1.227807740553459, 6.126007437636389] + } + }, + { + "type": "Feature", + "properties": { + "id": "el-goro-canary-islands-spain", + "name": "El Goro, Canary Islands, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-15.398742981042119, 27.959398125393562] + } + }, + { + "type": "Feature", + "properties": { + "id": "guningtou-taiwan", + "name": "Guningtou, Taiwan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [118.3071193317206, 24.476142461748964] + } + }, + { + "type": "Feature", + "properties": { + "id": "lake-ci-taiwan", + "name": "Lake Ci, Taiwan", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [118.28973653153466, 24.45552056717088] + } + }, + { + "type": "Feature", + "properties": { + "id": "bata-equatorial-guinea", + "name": "Bata, Equatorial Guinea", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [9.768231377937155, 1.86006953404933] + } + }, + { + "type": "Feature", + "properties": { + "id": "dadeng-island-china", + "name": "Dadeng Island, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [118.30096699232908, 24.556730963363293] + } + }, + { + "type": "Feature", + "properties": { + "id": "guanyin-mountain-china", + "name": "Guanyin Mountain, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [118.18895535292918, 24.493917245739397] + } + }, + { + "type": "Feature", + "properties": { + "id": "holyhead-united-kingdom", + "name": "Holyhead, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-4.630391234443465, 53.306036954202824] + } + }, + { + "type": "Feature", + "properties": { + "id": "bushehr-iran", + "name": "Bushehr, Iran", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [50.84271399913828, 28.970010723821048] + } + }, + { + "type": "Feature", + "properties": { + "id": "breivika-norway", + "name": "Breivika, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [16.553187508910554, 68.7350474125281] + } + }, + { + "type": "Feature", + "properties": { + "id": "longyearbyen-svalbard-norway", + "name": "Longyearbyen, Svalbard, Norway", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [15.648793618341614, 78.21852706841452] + } + }, + { + "type": "Feature", + "properties": { + "id": "fuzhou-china", + "name": "Fuzhou, China", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [119.30321237607896, 26.071095323025133] + } + }, + { + "type": "Feature", + "properties": { + "id": "yzerfontein-south-africa", + "name": "Yzerfontein, South Africa", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [18.15553012379604, -33.34822369818508] + } + }, + { + "type": "Feature", + "properties": { + "id": "swakopmund-namibia", + "name": "Swakopmund, Namibia", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [14.528091287257723, -22.678326281671815] + } + }, + { + "type": "Feature", + "properties": { + "id": "limbe-cameroon", + "name": "Limbe, Cameroon", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [9.208466149480103, 4.014515699203031] + } + }, + { + "type": "Feature", + "properties": { + "id": "valencia-spain", + "name": "Valencia, Spain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-0.376976278852538, 39.46830904651182] + } + }, + { + "type": "Feature", + "properties": { + "id": "luanda-angola", + "name": "Luanda, Angola", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [13.235025797027419, -8.812854559864036] + } + }, + { + "type": "Feature", + "properties": { + "id": "kribi-cameroon", + "name": "Kribi, Cameroon", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [9.91041877721031, 2.932917598068485] + } + }, + { + "type": "Feature", + "properties": { + "id": "derna-libya", + "name": "Derna, Libya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [22.63921835375919, 32.7635527751755] + } + }, + { + "type": "Feature", + "properties": { + "id": "harbour-view-jamaica", + "name": "Harbour View, Jamaica", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-76.71686360521022, 17.949676769483375] + } + }, + { + "type": "Feature", + "properties": { + "id": "haina-dominican-republic", + "name": "Haina, Dominican Republic", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-70.16183895197612, 18.69899857176688] + } + }, + { + "type": "Feature", + "properties": { + "id": "nanny-cay-virgin-islands-u-k-", + "name": "Nanny Cay, Virgin Islands (U.K.)", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-64.59724328461294, 18.414781849275727] + } + }, + { + "type": "Feature", + "properties": { + "id": "nyali-kenya", + "name": "Nyali, Kenya", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [39.700046111458704, -4.050503576490087] + } + }, + { + "type": "Feature", + "properties": { + "id": "kaweni-mayotte", + "name": "Kaweni, Mayotte", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [45.165862551923084, -12.81710377769619] + } + }, + { + "type": "Feature", + "properties": { + "id": "amwaj-island-bahrain", + "name": "Amwaj Island, Bahrain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [50.575819656958856, 26.228971616238397] + } + }, + { + "type": "Feature", + "properties": { + "id": "al-kheesa-qatar", + "name": "Al-Kheesa, Qatar", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [51.519373676036224, 25.294340911551473] + } + }, + { + "type": "Feature", + "properties": { + "id": "victoria-seychelles", + "name": "Victoria, Seychelles", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [55.44505448879704, -4.617612256898667] + } + }, + { + "type": "Feature", + "properties": { + "id": "brean-united-kingdom", + "name": "Brean, United Kingdom", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [-3.010909959824204, 51.293736519284835] + } + }, + { + "type": "Feature", + "properties": { + "id": "al-hidd-bahrain", + "name": "Al Hidd, Bahrain", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [50.656190693773056, 26.24158547784853] + } + }, + { + "type": "Feature", + "properties": { + "id": "al-daayen-qatar", + "name": "Al Daayen, Qatar", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [51.45189325508997, 25.53858919168178] + } + }, + { + "type": "Feature", + "properties": { + "id": "qalhat-oman", + "name": "Qalhat, Oman", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [58.59104835389556, 23.615093257127455] + } + }, + { + "type": "Feature", + "properties": { + "id": "telisai-brunei", + "name": "Telisai, Brunei", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [114.57059854120709, 4.703722436182602] + } + }, + { + "type": "Feature", + "properties": { + "id": "singapore-singapore", + "name": "Singapore, Singapore", + "is_tbd": false + }, + "geometry": { + "type": "Point", + "coordinates": [103.85302800863454, 1.293660845526915] + } + }, + { + "type": "Feature", + "properties": { + "id": "new-york-ny-united-states", + "name": "New York, NY, United States", + "is_tbd": true + }, + "geometry": { + "type": "Point", + "coordinates": [-74.00712400000013, 40.71454999999975] + } + } + ] +} diff --git a/docs/static/data/examples/geo/submarine-cables.json b/docs/static/data/examples/geo/submarine-cables.json new file mode 100644 index 000000000..a4e479ec2 --- /dev/null +++ b/docs/static/data/examples/geo/submarine-cables.json @@ -0,0 +1,20352 @@ +{ + "type": "FeatureCollection", + "name": "submarine_cables", + "crs": { + "type": "name", + "properties": { + "name": "urn:ogc:def:crs:OGC:1.3:CRS84" + } + }, + "features": [ + { + "type": "Feature", + "properties": { + "id": "scylla", + "name": "Scylla", + "color": "#b82a3f", + "feature_id": "scylla-0", + "coordinates": [3.1697065756605127, 52.623261418527164] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [1.729273010906667, 52.46882263773057], + [2.250072641967279, 52.623261418527164], + [3.825071526223184, 52.623261418527164], + [4.275071207439254, 52.55491468334145], + [4.613670967572091, 52.45850170510121] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "polar-express", + "name": "Polar Express", + "color": "#939597", + "feature_id": "polar-express-0", + "coordinates": [109.08660648329376, 77.68283838223476] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [132.8740001067516, 42.81267161587229], + [132.2999805127964, 42.688609263361], + [131.91075500000053, 43.15461600000029], + [132.2999805127964, 42.356956853355285], + [133.19997987522854, 41.85617959436382], + [134.5499789194723, 41.744358789482135], + [137.92497652859228, 43.07331078300331], + [140.84997445590054, 45.59408578894727], + [141.9749736589405, 45.75130568537162], + [142.64997318076465, 45.90808394896206], + [142.64997318076465, 46.375769707492964], + [142.7262426585804, 46.94899298742823], + [142.87497302137248, 46.375769707492964], + [143.09997286198055, 45.90808394896206], + [143.99997222441252, 45.75130568537162], + [148.49996903657254, 46.375769707492964], + [153.44996552994863, 48.35656994073389], + [158.8499617045408, 50.835111137952765], + [159.2999613857567, 52.23455229126475], + [158.6500000000004, 53.016667], + [159.74996106697276, 52.509290959647046], + [161.99995947305277, 52.782322857764086], + [168.2999550100769, 53.8574734403048], + [174.02495120631264, 55.906298769135816], + [180.44994640290892, 60.869535166329314], + [181.3499457653409, 62.781080493725966], + [179.99994672169302, 63.79239592397769], + [178.6499476780448, 64.38232115988146], + [177.50214849115653, 64.727191], + [178.6499476780448, 64.4794309101757], + [179.99994672169302, 64.1870673067454] + ], + [ + [-179.99979825111026, 64.1870673067454], + [-172.79980335165416, 63.99042806051594], + [-170.09980526435817, 64.76870273314239], + [-169.1998059019262, 66.07850491576798], + [-170.54980494557398, 67.66857826204097], + [-175.94980112016623, 69.47590081058132], + [-179.99979672288995, 70.17422909007658] + ], + [ + [179.99994824991276, 70.17422909007658], + [177.749948315613, 70.55228024514142], + [171.89995245980478, 70.70155250919242], + [170.09995373494084, 70.25039973315279], + [170.30700000000033, 69.70289999999989], + [169.64995405372477, 70.25039973315279], + [159.74996106697276, 72.13481545023674], + [148.9499687177886, 72.81230997105112], + [141.7499738183325, 73.07627580961613], + [134.99997860009248, 72.81230997105112], + [131.39998115036443, 71.99624816540918], + [128.8645, 71.6375], + [130.49998178793246, 72.27235077127645], + [130.94998146914853, 74.09330000483297], + [123.74998656969242, 76.27568108311115], + [112.94999422050827, 77.49983814503042], + [104.8499999586202, 77.883517178072], + [99.45000378402821, 77.49983814503042], + [94.50000729065212, 77.20425577257376], + [86.85001270998012, 75.95170116422631], + [81.00001685417206, 74.45913348599123], + [80.531, 73.5077], + [78.75001844809205, 73.71908229166698], + [71.55002354863595, 73.9695009786144], + [65.70002769282789, 72.81230997105112], + [63.00002960553181, 70.55228024514122], + [61.66370000000029, 69.7512], + [60.7500311994518, 70.4018983878988], + [59.40003215580393, 70.55228024514142], + [57.60003343093982, 70.4018983878988], + [53.1000366187798, 69.94402310253798], + [44.100042994459585, 69.63309228121122], + [34.650049688923644, 69.47590081058132], + [33.750050326491674, 69.3175488665178], + [33.08685, 68.97279] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "darwin-jakarta-singapore-cable-djsc", + "name": "Darwin-Jakarta-Singapore Cable (DJSC)", + "color": "#939597", + "feature_id": "darwin-jakarta-singapore-cable-djsc-0", + "coordinates": [114.16800775684536, -19.800107039490683] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [118.57724023471044, -20.31344226536234], + [117.97499050962776, -20.048661670363828], + [115.19999262658828, -19.800107039490683], + [111.59999517686023, -19.800107039490683], + [109.7999964519963, -20.433922197637315] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "zeus", + "name": "Zeus", + "color": "#939597", + "feature_id": "zeus-0", + "coordinates": [3.1322239085293404, 52.486461320100375] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [1.729273010906667, 52.46882263773057], + [2.250072641967279, 52.486461320100375], + [3.825071526223184, 52.486461320100375], + [4.524191030960452, 52.3636663818082] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "india-asia-xpress-iax", + "name": "India Asia Xpress (IAX)", + "color": "#939597", + "feature_id": "india-asia-xpress-iax-0", + "coordinates": [82.94986406169889, 2.0379806062831562] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [101.25000250948804, 2.143087178471944], + [101.41875238934821, 2.592701464601845], + [101.44360237174422, 2.751228763607116] + ], + [ + [97.87500490036805, 5.286069860821101], + [99.00000410340803, 5.957818681088611], + [100.0661133481664, 6.613518860854185] + ], + [ + [85.50001366692797, 1.01853421661562], + [83.92501477969202, 5.510071711803135], + [83.025015419644, 7.744876956882223], + [82.57501573842794, 9.524411345019587], + [81.45001653598385, 11.735650161405744], + [80.2429873910547, 13.063853101883296] + ], + [ + [79.65001781052402, 3.191933974144717], + [80.43751725265204, 5.435413643888296], + [80.53985718074958, 5.940820740520053] + ], + [ + [72.87590260996691, 19.076074257285313], + [71.3250237086238, 16.965102599435824], + [70.6500241867999, 13.492128176464178], + [72.1097991585246, 9.361978911834058], + [73.90979788338853, 6.688675551202238], + [78.30001876747187, 3.715978119297972], + [79.65001781052402, 3.191933974144717], + [81.00001685476795, 2.817450442654064], + [85.50001366692797, 1.01853421661562], + [90.00001047908799, 1.918228780215685], + [92.7000085663839, 4.613591578862867], + [94.27500745064, 5.510071711803135], + [95.40000665367998, 6.069699469735895], + [97.42500521915215, 5.622041180883144], + [97.87500490036805, 5.286069860821101], + [98.55000442219213, 4.613591578862867], + [100.08281583514238, 3.245560139784544], + [101.25000250948804, 2.143087178471944], + [102.15000187192001, 1.805788280129235], + [102.68279723997185, 1.558264177552559], + [103.34065102845304, 1.383978004154756], + [103.50000091556822, 1.327518855965934], + [103.64609081207684, 1.338585852071589] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "india-europe-xpress-iex", + "name": "India Europe Xpress (IEX)", + "color": "#939597", + "feature_id": "india-europe-xpress-iex-0", + "coordinates": [48.47945482584157, 12.142154838896914] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [25.20005638398345, 34.544136272978676], + [24.975056542779498, 34.867831005273246], + [24.7684, 35.07163] + ], + [ + [35.521924071875446, 26.562513149236622], + [35.550049051355614, 27.097918575216056], + [35.6965489475738, 27.354010300438773] + ], + [ + [37.34051417738746, 24.138084599448263], + [37.80004745803154, 24.12261698700334], + [38.10697724059963, 24.070648010417926] + ], + [ + [44.55004267627157, 11.515266158038685], + [43.6500433138396, 11.620598816364094], + [43.147993669496344, 11.594869371447714] + ], + [ + [54.000035981807684, 13.382708036125592], + [54.112535901515685, 14.583511645118676], + [54.112535901515685, 16.53419619825962], + [54.14808587692781, 17.095827186725558] + ], + [ + [32.65318110412005, 29.113614162980156], + [33.07505080526349, 28.951554732193216], + [33.53928797639452, 28.161052262220892], + [34.537549769215445, 27.364667993860166], + [35.521924071875446, 26.562513149236622], + [36.337548494079556, 25.754704263415306], + [37.350047776813625, 24.12261698700334], + [38.70004682046351, 22.05298561667763], + [39.487546262591536, 20.375041253465525], + [41.737544668671546, 16.53419619825962], + [42.468794150647625, 14.801154224791475], + [42.97504379201547, 13.929303843271725], + [43.22816861269959, 13.054150695298716], + [43.32660604296558, 12.834868817846598], + [43.41098098319361, 12.615395567393307], + [43.87504315444764, 12.395734000022884], + [44.55004267627157, 11.515266158038685], + [45.450042038703714, 11.294709319565555], + [48.600039807215495, 12.17588718550806], + [52.650036938159616, 13.163718917913684], + [54.000035981807684, 13.382708036125592], + [55.35003502426392, 13.492128176464178], + [58.95003247399197, 15.23578178303569], + [60.97503103946394, 16.53419619825962], + [66.60002705585575, 18.67864702215462], + [70.2000245055838, 18.89166158430325], + [72.87590260996691, 19.076074257285313] + ], + [ + [29.672353215170432, 31.047641997876354], + [29.98130299690345, 30.85311851188075], + [30.375052717967577, 30.78065656729467], + [31.050052239791512, 30.41752891425901], + [31.725051761615447, 30.174689758499085], + [32.17505144283152, 29.589085940778546], + [32.65318110412005, 29.113614162980156] + ], + [ + [29.672353215170432, 31.047641997876354], + [29.98130299690345, 30.80481662242596], + [30.375052717967577, 30.6839556754382], + [31.050052239791512, 30.320465424761352], + [31.725051761615447, 30.077385962079745], + [32.17505144283152, 29.54020324258323], + [32.65318110412005, 29.113614162980156] + ], + [ + [8.483758225965857, 44.305748230542434], + [9.000067859611391, 44.051519228735145], + [9.675067381435326, 43.07331078300331], + [9.900067221447472, 42.41235450073577], + [11.475066106299465, 39.69832335493328], + [11.812565867211418, 37.85673997565843], + [13.668814552823221, 35.96797434759347], + [14.4000640347993, 35.78566189952613], + [16.65006244087931, 35.419780517080454], + [19.35006052817539, 35.78566189952613], + [25.20005638398345, 34.544136272978676], + [27.900054471279333, 32.52821504536482], + [29.672353215170432, 31.047641997876354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "firmina", + "name": "Firmina", + "color": "#939597", + "feature_id": "firmina-0", + "coordinates": [-34.32878826997273, 1.4078256050719347] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-41.849896117201126, -27.951747285219852], + [-45.22489372632114, -25.13418654706126], + [-46.41249288501473, -24.00886839636476] + ], + [ + [-50.84988974152117, -35.95811819864912], + [-53.99988751003313, -35.409856394925356], + [-54.94999683756278, -34.96666536873374] + ], + [ + [-74.00712333731559, 40.714546633445224], + [-73.34987380232134, 39.69832335493328], + [-71.5498750780533, 38.651811712711236], + [-65.69987922224524, 28.161052262220892], + [-63.449880815569244, 25.754704263415306], + [-48.59989133544116, 16.53419619825962], + [-38.69989834868906, 7.744889052551343], + [-33.749901855313055, 0.568578852526286], + [-30.14990438070896, -3.479268654140981], + [-27.22490647768197, -9.290424301035614], + [-27.449906318288924, -13.698987269610853], + [-29.24990504315295, -18.026426383713385], + [-35.999900261393066, -24.7261180292069], + [-39.599897711717006, -25.946230718414654], + [-41.849896117201126, -27.951747285219852], + [-44.09989452328114, -32.61276000573585], + [-50.84988974152117, -35.95811819864912], + [-53.99988751003313, -36.683250670190546], + [-56.69544560047457, -36.47095527632115] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "ionian", + "name": "Ionian", + "color": "#939597", + "feature_id": "ionian-0", + "coordinates": [18.93871075691635, 38.981265934904116] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [17.1271521023086, 39.08066915816414], + [17.775061643323397, 39.03151487972863], + [19.80006020879557, 38.94407095870682], + [20.751719534631093, 38.95926674743771] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sape-labuanbajo-ende-kupang-cable-systems", + "name": "Sape-LabuanBajo-Ende-Kupang Cable Systems", + "color": "#2982bd", + "feature_id": "sape-labuanbajo-ende-kupang-cable-systems-0", + "coordinates": [122.54750304427111, -9.609222459948285] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [118.97619995148753, -8.505601593938906], + [119.2499897575324, -8.197049140471307], + [119.58748951844436, -8.141369965795263], + [119.86873931920437, -8.197049140471307], + [119.90755929170408, -8.475554575636494] + ], + [ + [121.64273806248687, -8.845694469061982], + [121.72498800422042, -9.06830600387434], + [122.84998720726028, -9.808147286237755], + [123.29998688907224, -9.900514027809777], + [123.58338668830928, -10.182939736570972] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "kupang-alor-cable-systems", + "name": "Kupang-Alor Cable Systems", + "color": "#8fc73e", + "feature_id": "kupang-alor-cable-systems-0", + "coordinates": [123.6265333733646, -9.092224759625765] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [123.58333668774881, -10.183333435365995], + [123.46873676893242, -9.697273227790134], + [123.52498672908436, -9.142360877005416], + [123.74998656969242, -9.031272829743102], + [124.08748633060438, -8.920150538055964], + [124.1999862509085, -8.69780485225661], + [124.40375610655602, -8.320653715924948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "denpasar-waingapu-cable-systems", + "name": "Denpasar-Waingapu Cable Systems", + "color": "#73469b", + "feature_id": "denpasar-waingapu-cable-systems-0", + "coordinates": [116.69216573688439, -9.364432611249072] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [118.08222058479092, -8.84114915636195], + [118.01249063418831, -9.142360877005416], + [117.6749908732763, -9.364432611249072], + [117.22499119206023, -9.364432611249072], + [116.54999167023632, -9.364432611249072], + [116.09999198902025, -9.253414272929234], + [115.64999230780435, -9.142360877005416], + [115.42499246719629, -8.920150538055964], + [115.26057258367305, -8.657096255417912] + ], + [ + [115.64999230780435, -9.142360877005416], + [115.7062422679563, -8.864576677888891], + [115.8749921490083, -8.679270038068381], + [116.07252200848032, -8.561426607445838] + ], + [ + [118.08222058479092, -8.84114915636195], + [118.23749047479632, -9.142360877005416], + [118.68749015601239, -9.253414272929234], + [119.2499897581283, -9.179382545871192], + [120.03748919966026, -9.179382545871192], + [120.26248904026832, -9.364432611249072], + [120.25301904757285, -9.645765890160561] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "gignet-1", + "name": "GigNet-1", + "color": "#939597", + "feature_id": "gignet-1-0", + "coordinates": [-83.3284376671059, 24.286760976787377] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-86.76758665233308, 21.095728792367282], + [-86.51236447788934, 21.425997872385494], + [-86.17486471697737, 21.635297384859456], + [-84.82486567332933, 23.50508968095727], + [-83.24986678907334, 24.32780311165172], + [-80.99986838299351, 24.532657566160623], + [-80.54986870177734, 24.73717827217618], + [-80.09986902056137, 25.348717422116806], + [-79.7623692596494, 25.95717997876443], + [-80.08893152830953, 26.350585697437936] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bifrost", + "name": "Bifrost", + "color": "#939597", + "feature_id": "bifrost-0", + "coordinates": [144.39923582400317, 13.383313913136476] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [109.34999677018433, -3.029995968008762], + [107.77499788712001, -4.601453764837203], + [107.43749812620823, -5.273944363641391], + [106.82782855810385, -6.171876390816408] + ], + [ + [126.4499846569885, 5.659359572411404], + [126.11248489607638, 5.957818681088611], + [125.61287587560011, 7.079988883160723] + ], + [ + [179.9999271925697, 40.72919024912841], + [172.79992073307184, 40.72919024912841], + [160.19996074878455, 37.232354321556215], + [148.49996903657254, 23.022776999376163], + [144.6749717462366, 14.365653759228536], + [144.56247182593248, 13.929303843271725], + [144.69470173285575, 13.464772962370034], + [143.9999722250084, 13.273238157547667], + [137.24997700676838, 11.735650161405744], + [133.19997987582443, 9.96791518697421], + [129.59998242550031, 7.893494252945061], + [126.4499846569885, 5.659359572411404], + [120.59998880177616, 2.367912558705314], + [119.47498959814024, 1.01853421661562], + [119.24998975693651, 0.568578852526286], + [118.3162923516883, -0.810555324740847], + [117.73941082764068, -1.515333651974942], + [117.48749100610289, -2.730375485267956], + [116.58310164737688, -4.179995582158739], + [114.67992114108486, -5.049857167366866], + [112.04999485867219, -4.377144375531941], + [110.02499629200824, -3.479268678969987], + [109.34999677018433, -3.029995968008762], + [106.4249988434722, -0.331409329660175], + [105.63749940134412, 0.118588418888407], + [104.84999995921609, 0.568578852526286], + [104.17500043739219, 0.685071778220589], + [103.89375063663218, 0.793562652607278], + [103.89375063663218, 1.01853421661562], + [103.85303066547843, 1.294067636025204] + ], + [ + [-118.24535355799173, 34.053396879397155], + [-118.79984160513769, 33.98629373718458], + [-120.59984033000163, 33.565491482352144], + [-122.39983905486565, 33.565491482352144], + [-129.59983395432175, 36.51238821239372], + [-138.82500430186857, 39.351217571171134], + [-151.19983391146837, 40.72891504599633], + [-179.99981351048459, 40.72891504599633] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "echo", + "name": "Echo", + "color": "#939597", + "feature_id": "echo-0", + "coordinates": [143.649143688831, 13.579774174395396] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [144.65753175859138, 13.385305518498171], + [143.9999722250084, 13.382708036125592], + [143.54997254319645, 13.419186961310118] + ], + [ + [143.88747230410857, 13.965698203819443], + [144.22497206442463, 13.710817738179543], + [144.69470173285575, 13.464772962370034] + ], + [ + [135.44997828130855, 6.554242425496881], + [134.7749787594844, 7.001096155427831], + [134.5609408257699, 7.531746239289589] + ], + [ + [109.57499661138823, -3.029995968008762], + [107.88749780742413, -4.601453764837203], + [107.54999804651217, -5.273944363641391], + [107.12099835041957, -5.981154260263196] + ], + [ + [179.99994672199094, 45.33107107332478], + [172.79992073307184, 45.33105820085058], + [160.19996074878455, 37.94551049545976], + [148.49996903657254, 23.436294941322956], + [143.88747230410857, 13.965698203819443], + [143.54997254319645, 13.419186961310118], + [139.4999754122525, 9.672311317776519], + [135.44997828130855, 6.554242425496881], + [131.39998115036443, 3.865649782481938], + [129.59998242550031, 1.618372199773091], + [128.69998306306852, -1.981015190984778], + [128.02498354124438, -2.880195580251495], + [127.3499840194203, -4.676208028750978], + [123.74998656969242, -6.467627592690604], + [120.14998911996437, -6.467627592690604], + [116.58310164737688, -4.852974874840811], + [114.74999294596827, -4.825692499217524], + [112.04999485867219, -4.15276774801373], + [110.24999613321236, -3.479268678969987], + [109.57499661138823, -3.029995968008762], + [106.53749876377609, -0.331409329660175], + [105.29999964043216, 0.906050180868988], + [104.84999995921609, 1.187252773694183], + [104.62500011860826, 1.250557147797139], + [104.28790035741284, 1.29982615632926], + [104.18975042694322, 1.310150970358706], + [103.9870105705659, 1.389451396800126] + ], + [ + [-124.1595592195036, 40.803253108521204], + [-130.49983331675372, 42.74371346443661], + [-138.59982757864196, 44.051519228735145], + [-151.19981865268997, 45.33107107332478], + [-179.99979825051417, 45.33107107332478] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "jscfs", + "name": "JSCFS", + "color": "#939597", + "feature_id": "jscfs-0", + "coordinates": [-77.84875084100733, 17.98210713046697] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-77.92138056441907, 18.469357593227244], + [-78.1873703759894, 18.55426456504901], + [-78.35612025644538, 18.447578822532193], + [-78.34826026201351, 18.278671433780033], + [-78.29987029629342, 18.073658723981566], + [-78.07487045568539, 17.966677204124778], + [-77.8483706161399, 18.023694555394542], + [-77.84987061507735, 17.85963086953788], + [-77.39987093326538, 17.716802179008738], + [-76.94987125204939, 17.770376320835908], + [-76.66665145328088, 17.949944181323474] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "confluence-1", + "name": "Confluence-1", + "color": "#939597", + "feature_id": "confluence-1-0", + "coordinates": [-76.89026083922192, 32.98660181015117] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-74.69987284596938, 36.90321229501777], + [-76.05919805488558, 36.755008440642456] + ], + [ + [-79.1998696581294, 29.931250704427015], + [-80.54986870177734, 30.223305674181546], + [-81.65572729397282, 30.332031818467613] + ], + [ + [-77.39987093386137, 32.55982671166805], + [-78.26653698657401, 33.18971466460036], + [-78.8826698834326, 33.693557908375226] + ], + [ + [-74.06287329782184, 40.152905263922435], + [-73.93747338606026, 40.02845597599401], + [-74.02487332354937, 39.00237890905848], + [-74.69987284596938, 36.90321229501777], + [-74.9248726871734, 35.541926812580044], + [-76.04987189021341, 33.6903890393485], + [-77.39987093386137, 32.55982671166805], + [-79.1998696581294, 29.931250704427015], + [-79.64986933934539, 26.461843796189072], + [-80.12154869329927, 25.93847678106971] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "kafos", + "name": "KAFOS", + "color": "#bc74b0", + "feature_id": "kafos-0", + "coordinates": [28.059768458575576, 41.8784657502913] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [28.9882337004031, 41.04061756347724], + [29.02505367372345, 41.43584595024919], + [28.350054151899513, 41.85617959436382], + [27.985354410256235, 41.884178753453995], + [28.237554231595595, 42.19047067556437], + [28.237554231595595, 42.85377505385463], + [28.350054151899513, 43.18278481586091] + ], + [ + [27.91285446161595, 43.20837344983079], + [28.350054151899513, 43.18278481586091], + [28.800053833115584, 43.42838486264793], + [28.800053833115584, 43.67299239292208], + [28.582753987052882, 43.81718785722393] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "caribbean-express-cx", + "name": "Caribbean Express (CX)", + "color": "#939597", + "feature_id": "caribbean-express-cx-0", + "coordinates": [-84.3936212124087, 19.130884443491595] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-85.04986551393736, 21.635297384859456], + [-86.17486471697737, 21.111485983488905], + [-86.51236447788934, 21.163951238165083], + [-86.76758665233308, 21.095728792367282] + ], + [ + [-79.53736941904137, 9.96791518697421], + [-76.04987188961734, 10.509154616655167], + [-75.50573165009138, 10.386791448721794] + ], + [ + [-80.05334157838351, 26.715271953494778], + [-79.64986933934539, 26.461843796189072], + [-79.53736941904137, 25.95717997876443], + [-79.42486949873734, 25.348717422116806], + [-79.42486949873734, 24.73717827217618], + [-80.99986838299351, 23.50508968095727], + [-83.24986678907334, 23.298598065875808], + [-84.82486567332933, 22.469443964829594], + [-85.04986551393736, 21.635297384859456], + [-85.2748653545454, 20.375041253465525], + [-84.37486599211334, 19.104405475930548], + [-81.67486790481735, 17.39502263470061], + [-80.3248688611693, 16.10232559580288], + [-80.09986902115736, 13.929303843271725], + [-79.42486949933343, 11.95585820711483], + [-79.53736941904137, 9.96791518697421], + [-79.75347926594715, 9.43772198486991] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "b2js-jakarta-bangka-batam-singapore-cable-system", + "name": "B2JS (Jakarta-Bangka-Batam-Singapore) Cable System", + "color": "#31b34a", + "feature_id": "b2js-jakarta-bangka-batam-singapore-cable-system-0", + "coordinates": [105.85583788357124, -1.8976735724457114] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [106.82782855810385, -6.171876390816408], + [106.76249860438415, -5.273944363641391], + [106.76249860438415, -4.601453764837203], + [106.76249860378826, -3.479268678969987], + [106.54745875672049, -3.079924874677914], + [106.31249892257236, -2.580536704984041], + [105.86249924135629, -1.906058394384871], + [105.58270944015786, -1.55387979369155], + [105.52499948104, -1.231315750217505], + [105.18749972012822, 0.118588418888407], + [104.84999995921609, 0.345586247302265], + [104.17500043739219, 0.456083447840484], + [103.72500075617612, 0.793562652607278], + [103.72500075617612, 1.01853421661562], + [103.87813064769747, 1.134723598626692], + [103.96260058785819, 1.134723598626692], + [103.92187561670804, 1.185378176915862], + [103.94648059927786, 1.327258925921086] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "maroc-telecom-west-africa", + "name": "Maroc Telecom West Africa", + "color": "#b27032", + "feature_id": "maroc-telecom-west-africa-0", + "coordinates": [-16.675451618935483, 8.694340537828282] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-16.199914288484848, 23.848523186488023], + [-16.087414368180845, 23.745587983103547], + [-15.934424476560338, 23.721081977553723] + ], + [ + [-3.7124231341447, 3.266814816815753], + [-4.026242911831901, 5.323508791824736] + ], + [ + [1.350073278939419, 4.164912849976844], + [1.350073279535309, 5.061986954416028], + [1.2278033661525, 6.126307297218631] + ], + [ + [2.250072641967279, 4.052702097268195], + [2.250072641967279, 5.061986954416028], + [2.440112507341183, 6.356673335458169] + ], + [ + [-7.631920358132049, 33.60539511325592], + [-8.999919389028747, 33.315153958129144], + [-12.149917156944838, 30.126049846722907], + [-13.274916359984843, 28.161052262220892], + [-14.399915563024848, 26.964304734562802], + [-16.199914288484848, 23.848523186488023], + [-16.64991396910486, 22.884654113882362], + [-17.999913012752813, 19.952622905164304], + [-17.999913013348873, 16.53419619825962], + [-17.999913012752813, 11.735650161405744], + [-16.64991396910486, 8.635699417327544], + [-15.299914926648881, 7.744889052551343], + [-14.399915564216826, 6.852191098754417], + [-12.149917156944838, 5.061986954416028], + [-10.799918113296798, 3.715978119297972], + [-6.299921301732752, 3.715978119297972], + [-3.7124231341447, 3.266814816815753], + [-0.899925126544701, 3.279837005485092], + [1.350073278939419, 4.164912849976844], + [2.250072641967279, 4.052702097268195], + [5.400070410479259, 1.918228780215685], + [7.200069135343199, 0.793562652607278], + [8.55006817899124, 0.568578852526286], + [9.454267538448192, 0.394465191855375] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "galapagos-cable-system", + "name": "Galapagos Cable System", + "color": "#939597", + "feature_id": "galapagos-cable-system-0", + "coordinates": [-85.17329128464077, -1.0813464460989053] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-89.61436228100118, -0.909172611722227], + [-89.88736208760552, -0.968864549257972], + [-90.11236192821347, -0.912622173290856], + [-90.31130405300462, -0.742410110898021], + [-90.44986168912544, -0.912622173290856], + [-90.67486152973348, -0.968864549257972], + [-90.96211132624296, -0.961035665226774] + ], + [ + [-80.71613109211359, -0.949727245539691], + [-81.4498680648054, -1.081346446098905], + [-89.09986264547749, -1.081346446098905], + [-89.61436228100118, -0.909172611722227] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "africa-1", + "name": "Africa-1", + "color": "#939597", + "feature_id": "africa-1-0", + "coordinates": [50.521787569484985, 12.3151066300413] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [35.6965489475738, 27.354010300438773], + [35.100049370139544, 27.097918575216056], + [34.59379972936759, 26.562513149236622] + ], + [ + [11.137566345387313, 37.232354321556215], + [12.15006562871929, 38.12273010839229], + [12.60006530993536, 38.255323983516746], + [13.05006499115126, 38.25528472056408], + [13.358654772543531, 38.116121616583314] + ], + [ + [10.348617229173357, 37.41128363492314], + [10.12371673872093, 37.36659125097782], + [9.867357245811377, 37.27681625347506] + ], + [ + [7.425068975355316, 37.94551049545976], + [5.85007009109944, 37.35168786972491], + [5.066370646279438, 36.75705648320675] + ], + [ + [42.918793831267806, 13.054150695298716], + [43.1786936471521, 13.1445250990119], + [43.24734359852002, 13.320340603999938] + ], + [ + [60.97503104005983, 16.749771315644608], + [60.7500311994518, 22.469443964829594], + [59.85003183701983, 23.401884131852626], + [58.53974954781313, 24.047071084649417], + [56.92503390911571, 24.711631506331287], + [56.339934323605746, 25.0514826710928] + ], + [ + [32.28445136473579, 31.259278146448963], + [31.27505207980363, 31.79808736758517], + [27.900054470683443, 31.957307911004875], + [25.200056383387533, 32.717717936758305], + [19.350060527579473, 33.37780603565923], + [16.650062440283392, 33.00121852265437], + [14.400064034203382, 33.37780603565923], + [12.150065628130307, 35.419780517080454], + [11.925065787515337, 35.78566189952613], + [11.700065946907301, 36.240655233214795], + [11.137566345387313, 37.232354321556215], + [10.348617229173357, 37.41128363492314], + [9.000067859611391, 37.500588446053314], + [7.425068975355316, 37.94551049545976], + [6.75006945353141, 38.651811712711236], + [5.737570170795323, 41.744358789482135], + [5.372530429392953, 43.29362778902916] + ], + [ + [32.28445136473579, 31.259278146448963], + [32.287551362539546, 30.83702058239723], + [32.287551363135435, 30.077385962079745], + [32.42805126360403, 29.63833609362638], + [32.5971261438298, 29.34456698948989], + [32.934525904812716, 28.951554732193216] + ], + [ + [44.550042675675655, 11.184367066436806], + [43.650043313243685, 11.489461709300429], + [43.147993668900284, 11.594869371447714] + ], + [ + [45.450042038107796, 10.963556857789229], + [45.23580218987712, 10.81596353465244], + [45.01088234921272, 10.435118748992778] + ], + [ + [32.934525904812716, 28.951554732193216], + [33.08276564295244, 28.365936333863488], + [33.38487558519094, 28.161052262220892], + [33.918800206947566, 27.364667993860166], + [34.5937997287717, 26.562513149236622], + [35.100049370139544, 25.754704263415306], + [36.11254865287563, 24.12261698700334], + [37.46254769652367, 22.05298561667763], + [38.250047138651695, 20.375041253465525], + [39.48754626199565, 18.251816319028308], + [40.50004554473372, 16.53419619825962], + [41.850044588379575, 14.801154224791475], + [42.35629422974762, 13.929303843271725], + [42.918793831267806, 13.054150695298716], + [43.17191865195173, 12.834868817846598], + [43.25629359217959, 12.615395567393307], + [43.50941841286368, 12.395734000022884], + [44.550042675675655, 11.184367066436806], + [45.450042038107796, 10.963556857789229], + [48.600039806619776, 11.845776373625682], + [52.650036937563726, 12.834868817846598], + [54.00003598121177, 13.054150695298716], + [54.67503550363159, 12.615395567393307], + [53.550036300591586, 9.524411345019587], + [50.850038213295704, 5.510071711803135], + [47.700040444187806, 1.468426767332062], + [45.22504219809568, -1.006358951224712], + [42.30004427019156, -3.254657364797595], + [39.67289613069207, -4.052924364763157] + ], + [ + [54.00003598121177, 13.054150695298716], + [55.35003502485981, 13.710817738179543], + [58.95003247458786, 15.452760959322148], + [60.97503104005983, 16.749771315644608], + [65.70002769282789, 20.375041253465525], + [66.2625272943479, 23.298598065875808], + [67.02854675169263, 24.889731701235718] + ], + [ + [37.21967786857488, 19.615566594546237], + [37.650047563696944, 19.952622905164304], + [38.250047138651695, 20.375041253465525] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sednalink-fibre", + "name": "SednaLink Fibre", + "color": "#939597", + "feature_id": "sednalink-fibre-0", + "coordinates": [-57.63536287783805, 57.335798274038694] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-53.964587535636, 48.168238145677634], + [-53.54988782881715, 48.1067757091962], + [-53.09988814760116, 48.331645382421584], + [-52.19988878516919, 48.85250340834858], + [-52.1998887857651, 51.4000532002448], + [-53.99988751062921, 54.64614507279089], + [-62.99988113494925, 61.304658531911684], + [-64.79987985981327, 62.15710017959822], + [-66.14987890346123, 62.57453442007588], + [-67.94987762832534, 63.39212305870191], + [-68.39987730954124, 63.59296341313572], + [-68.5196772246739, 63.748596953565425] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bt-north-sea", + "name": "BT North Sea", + "color": "#939597", + "feature_id": "bt-north-sea-0", + "coordinates": [3.2017697648710453, 52.79012792089301] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [1.440993215126866, 51.35857144425913], + [1.800072960751208, 51.37665177535368], + [2.475072482575314, 51.37665177535368], + [2.912772172504702, 51.231220564626796] + ], + [ + [1.693573035600792, 52.71519390619602], + [2.250072641371389, 52.782322857763916], + [3.150072003803359, 52.782322857763916], + [4.050071366235301, 52.91820015099415], + [4.700770905273572, 52.83690603960173] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "natitua-sud", + "name": "Natitua Sud", + "color": "#939597", + "feature_id": "natitua-sud-0", + "coordinates": [-148.94982024720593, -20.4601744714345] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-149.17482008781397, -22.423530538252976], + [-150.74981897206996, -22.423530538252976], + [-151.34291855191267, -22.451259432002047] + ], + [ + [-149.48591986742795, -23.346921000731925], + [-149.17482008781397, -22.423530538252976], + [-148.94982024720593, -20.855024450960002], + [-148.94982024720593, -18.097730413625754], + [-149.06232016750997, -17.77663542458734], + [-149.30812077403647, -17.723342219804465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "cogim", + "name": "COGIM", + "color": "#2da348", + "feature_id": "cogim-0", + "coordinates": [-63.09871067071035, 47.99957081518147] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-64.30898020757125, 48.471795243193526], + [-63.89988049738122, 48.35656994073389], + [-62.54988145373326, 47.75501398838159], + [-61.95568187466979, 47.382579621269315] + ], + [ + [-64.30898020757125, 48.471795243193526], + [-63.89988049738122, 48.20683973227631], + [-62.54988145373326, 47.603526230147054], + [-61.95568187466979, 47.382579621269315] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "nzadi-cable-system", + "name": "Nzadi Cable System", + "color": "#939597", + "feature_id": "nzadi-cable-system-0", + "coordinates": [11.890182179105153, -7.257207799586837] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.352065485024895, -6.141015427762483], + [12.150065628123372, -6.24401084163074], + [11.700065946907301, -6.24401084163074] + ], + [ + [13.2350248601241, -8.812561807472918], + [12.60006530933947, -8.252720521975078], + [11.925065787515337, -7.361072141346966], + [11.700065946907301, -6.691145450676487], + [11.700065946907301, -6.24401084163074], + [11.700065946907301, -5.796494123131055], + [11.925065787515337, -5.572600905016571], + [12.189865599928936, -5.556576787346813] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "au-aleutian", + "name": "AU-Aleutian", + "color": "#939597", + "feature_id": "au-aleutian-0", + "coordinates": [-155.2419461377483, 57.454948829723236] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-162.89981036490207, 54.62453363273431], + [-163.0123102852061, 54.75458482702223], + [-163.23731012581422, 54.81945422425164], + [-163.41500999992988, 54.850957576706435] + ], + [ + [-165.93730821311013, 54.36317932422034], + [-165.8248082928061, 54.297579451743616], + [-165.7730505169718, 54.13563909483611] + ], + [ + [-166.5332550565608, 53.884514690832674], + [-166.49980781463012, 54.03413235288798], + [-166.27480797402217, 54.297579451743616], + [-165.93730821311013, 54.36317932422034], + [-165.59980845219815, 54.42867459701131], + [-165.14980877098208, 54.297579451743616], + [-164.2498094085501, 54.297579451743616], + [-163.34981004611814, 54.42867459701131], + [-162.89981036490207, 54.62453363273431], + [-162.5623106039901, 54.81945422425164], + [-162.44981068368608, 54.98117280667424], + [-162.30441078668878, 55.04920181729881] + ], + [ + [-158.84981323395803, 55.58979765418974], + [-158.96231315426206, 55.78006042872178], + [-159.14481302497745, 55.91748576408034] + ], + [ + [-154.349816421798, 57.81248509700279], + [-153.91231673172692, 57.66903988014627], + [-153.9860166795172, 57.53731864742798] + ], + [ + [-158.77211328900142, 56.25498350864953], + [-158.62481339335008, 56.28291483663344], + [-158.50721347665896, 56.32136337173188], + [-158.1748137121341, 56.345311717086645], + [-158.0498138006852, 56.27944535366353], + [-157.95606442397008, 56.06721100545158], + [-158.39981355274205, 55.716742341796504], + [-158.84981323395803, 55.58979765418974], + [-159.29981291517413, 55.462441022744116], + [-159.7498125963901, 55.39860800738413], + [-160.19981227760607, 55.33467174196275], + [-160.49631206756285, 55.341553400505745], + [-160.64981195882206, 55.43053741585322], + [-160.8748117994301, 55.39860800738413], + [-161.09981164003813, 55.33467174196275], + [-161.32481148064608, 55.30266486319479], + [-161.5498113212541, 55.30266486319479], + [-161.77481116186206, 55.23857355917991], + [-161.9998110024701, 55.07789244004107], + [-162.11231092277413, 55.01343862290665], + [-162.30441078668878, 55.04920181729881], + [-162.44981068368608, 55.01343862290665], + [-162.5623106039901, 55.07789244004107], + [-162.70401050360863, 55.20414950086246] + ], + [ + [-152.39511780652478, 57.79442233367661], + [-152.21231793602203, 57.87236311520368], + [-152.21231793602203, 57.991820801948336], + [-152.54981769693399, 58.02162314067965], + [-152.99981737814997, 57.961993642608604], + [-153.16856793641995, 57.991820801948336], + [-153.44981705936607, 58.02162314067965], + [-153.89981674058203, 57.991820801948336], + [-154.349816421798, 57.81248509700279], + [-154.799816103014, 57.69243021067541], + [-155.47481562483802, 57.32986760241204], + [-156.82481466848606, 56.469799876841364], + [-157.49981419031008, 56.40760669952738], + [-157.94981387152606, 56.41452207827379], + [-158.40881354636645, 56.294514501432815] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sealink", + "name": "SEALink", + "color": "#939597", + "feature_id": "sealink-0", + "coordinates": [-133.57793525038744, 57.17816795530828] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-132.82953166696967, 56.01522795549937], + [-132.91128279861326, 56.12703903462045], + [-132.89728280888463, 56.19050811225165], + [-132.72971293122976, 56.26414244600613], + [-132.68226177043363, 56.290901656933244], + [-132.6480829917154, 56.35047071868672], + [-132.6480829917154, 56.38164333600656], + [-132.6480829917154, 56.47504144368915], + [-132.7043829504098, 56.53717947317284], + [-132.7606829091041, 56.599105613036215], + [-132.81698286779843, 56.66104033500301], + [-132.87328282649264, 56.722763716398305], + [-132.96985275504602, 56.80779122608294], + [-132.844882847329, 56.91336556277733], + [-132.95198276875283, 57.02097743143682], + [-133.2329425620245, 57.0817458672619], + [-133.5163311798385, 57.12497316683124], + [-133.57328231292297, 57.16816090817329], + [-133.60188111983007, 57.22966820564031], + [-133.57424231079767, 57.31396150003877], + [-133.6085222856475, 57.37303699157914], + [-133.63518109624013, 57.558771470979536], + [-133.7463121845549, 57.707894171078124], + [-133.76848216971047, 57.823712369918354], + [-133.93518088371752, 57.98640326883037], + [-134.06858194953583, 58.10124945897567], + [-134.1927818584138, 58.16513091439583], + [-134.29583062763368, 58.2074722872718], + [-134.57990043354195, 58.242595438937855], + [-134.6554803780911, 58.2916726856476], + [-134.78693028165003, 58.41219086765227], + [-134.78291914433507, 58.498125955375684], + [-134.74729145098985, 58.55104926823199] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "colombian-festoon", + "name": "Colombian Festoon", + "color": "#34b44a", + "feature_id": "colombian-festoon-0", + "coordinates": [-75.572066881937, 10.345771350329215] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-74.2052931188053, 11.241938042153947], + [-74.36237308565332, 11.331480662183736], + [-74.47487300595733, 11.221152507138186], + [-74.61193345573746, 11.012160871628708] + ], + [ + [-74.95280235488772, 11.005163154152314], + [-75.14987252778135, 11.073982781226704], + [-75.26237244808537, 10.963556857789229], + [-75.50573165009138, 10.386791448721794], + [-75.82487204960537, 10.18944276650771], + [-75.82487205020136, 9.894039027618874], + [-75.55866223759489, 9.496381979983852] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "iris", + "name": "IRIS", + "color": "#939597", + "feature_id": "iris-0", + "coordinates": [-14.825616934992468, 59.69105121774612] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-9.048319354741835, 53.273886331643325], + [-9.899918751460802, 53.05365242709044], + [-10.799918113892772, 53.05365242709044], + [-11.249917795108757, 53.32328423459367], + [-12.599916838160823, 54.94878902385568], + [-12.599916838756798, 55.67438282806273], + [-12.374916998148876, 56.42826046882331], + [-12.599916838756798, 58.836278671696704], + [-13.949915882404753, 59.52787100202244], + [-21.149910781860854, 60.869535166329314], + [-21.824910303684874, 62.15710017959802], + [-22.72490966611693, 62.98618902459583], + [-22.27490998490086, 63.49271968258239], + [-21.37812062019495, 63.85625749318217] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "cap-1", + "name": "CAP-1", + "color": "#939597", + "feature_id": "cap-1-0", + "coordinates": [149.8331505194419, 32.2670546909128] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-179.9998135098885, 41.40760835982755], + [-151.19983391146837, 41.40760835982755], + [-138.71241594025526, 40.04369219282995], + [-129.59983395432175, 36.87321951208918], + [-122.84983873608172, 35.23621340052833], + [-120.62152181466485, 35.12094936772425] + ], + [ + [120.85798861841093, 18.62426162007685], + [121.61248808391636, 19.246083087004678], + [122.84998720785634, 19.846840405431607], + [125.99998497636832, 20.585819096040467], + [130.94998146974442, 22.05298561667763], + [138.59997605041642, 25.348717422116806], + [160.19996074878455, 38.651811712711236], + [172.79992073307184, 41.40771250413317], + [179.9999271925697, 41.40771250413317] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "amitie", + "name": "Amitie", + "color": "#939597", + "feature_id": "amitie-0", + "coordinates": [-35.611006018074534, 47.229908495775845] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-10.799918113296798, 49.441203723128126], + [-7.199920663568747, 50.88245364291035], + [-5.399921938704722, 51.02419288763869], + [-4.544402544762761, 50.82820142743802] + ], + [ + [-70.9502755028152, 42.46364601310964], + [-69.2998766713773, 42.41235450073577], + [-61.199882409489234, 41.744358789482135], + [-50.39989006030518, 43.564400497117504], + [-39.999995084534305, 46.17414676370771], + [-23.39990918734489, 50.16726116292705], + [-16.199914287888873, 50.16726116292705], + [-10.799918113296798, 49.441203723128126], + [-5.849921620516682, 46.99317357497881], + [-3.149923533220687, 45.11977579961189], + [-1.2118249061879, 44.893811870344166] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "gulf-of-mexico-fiber-optic-network", + "name": "Gulf of Mexico Fiber Optic Network", + "color": "#b09330", + "feature_id": "gulf-of-mexico-fiber-optic-network-0", + "coordinates": [-91.16801373144628, 28.05519878947112] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-95.3443582218182, 28.949542146640226], + [-94.04985913885349, 28.094910059657792], + [-91.79986073277357, 27.89623898952877], + [-88.6498629642615, 28.68871408880051], + [-88.19986328304552, 29.475236194966442], + [-88.5561630306394, 30.36577371017563] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "havsil", + "name": "Havsil", + "color": "#939597", + "feature_id": "havsil-0", + "coordinates": [8.312114173170528, 57.62300098914048] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [8.616168131569623, 57.1116502612407], + [8.662568098699438, 57.289273621719786], + [7.987568576875333, 57.93205658695149], + [7.996258571315195, 58.15106571642474] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "grace-hopper", + "name": "Grace Hopper", + "color": "#939597", + "feature_id": "grace-hopper-0", + "coordinates": [-38.13144319480949, 40.77777616920807] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-16.199914287888873, 46.272182853813746], + [-9.899918750864742, 46.89076287862241], + [-5.849921619920792, 45.96024524125332], + [-4.274922736260805, 44.694829089578064], + [-2.94919367482359, 43.27422025200056] + ], + [ + [-72.93786409419286, 40.75584308487123], + [-71.09987539624133, 39.78482855593708], + [-68.39987730894534, 39.524987333511575], + [-61.199882409489234, 38.651811712711236], + [-50.39989006030518, 39.00237890905848], + [-39.59989771112103, 40.387320290775165], + [-23.39990918734489, 44.694829089578064], + [-16.199914287888873, 46.272182853813746], + [-10.799918113296798, 49.294684219425534], + [-8.099920026000802, 49.73293362369091], + [-4.544402544762761, 50.82820142743802] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "asia-direct-cable-adc", + "name": "Asia Direct Cable (ADC)", + "color": "#939597", + "feature_id": "asia-direct-cable-adc-0", + "coordinates": [120.94205159594404, 20.058334551396143] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [114.29999326356042, 14.801154224791475], + [116.99999135204828, 13.710817738179543], + [118.79999007691222, 13.492128176464178], + [120.14998912056026, 13.492128176464178], + [121.06600847164387, 13.762418337904336] + ], + [ + [116.99999135204828, 19.316876111628602], + [117.22499119206023, 19.952622905164304], + [117.22499119206023, 20.796306105108954], + [116.99999135204828, 22.469443964829594], + [116.67753158048177, 23.355006811273626] + ], + [ + [115.19999262718417, 18.251816319028308], + [114.52499310536027, 20.796306105108954], + [114.20292333351765, 22.222050419736746] + ], + [ + [113.17499406171223, 12.615395567393307], + [112.94999422110416, 12.834868817846598], + [111.59999517745612, 13.492128176464178], + [110.02499629320002, 13.820086409698149], + [109.21959686375268, 13.782910441432165] + ], + [ + [107.99999772772824, 5.342078055167462], + [105.29999964043216, 6.405200795356109], + [103.27500107495999, 7.744889052551343], + [100.80000282767625, 9.524411345019587], + [100.12500330585212, 11.294709319565555], + [100.23750322675212, 12.17588718550806], + [100.5750029864723, 12.834868817846598], + [100.93057273577531, 13.174371211662333] + ], + [ + [139.8169651882899, 35.03751783625896], + [140.2874748549764, 34.40502275071583], + [140.84997445649643, 33.93964008831958], + [140.84997445649643, 32.43331330641712], + [140.39997477528036, 30.901396088515583], + [138.82497589102448, 28.161052262220892], + [137.24997700676838, 26.562513149236622], + [132.74998019460836, 23.50508968095727], + [130.94998146974442, 22.67720619658283], + [125.99998497636832, 21.111485983488905], + [122.84998720785634, 20.26954403592967], + [121.04998848299223, 20.058334551396143], + [120.14998912056026, 20.058334551396143], + [116.99999135204828, 19.316876111628602], + [115.19999262718417, 18.251816319028308], + [114.29999326356042, 14.801154224791475], + [113.17499406171223, 12.615395567393307], + [112.16249477897614, 9.96791518697421], + [110.92499565563222, 7.744889052551343], + [107.99999772772824, 5.342078055167462], + [105.74999932164823, 4.389285926050889], + [104.68125007876003, 2.817450442654064], + [104.3161753373827, 1.468426767332062], + [104.20615041532531, 1.341894944206274], + [103.91973061822782, 1.228443589211935], + [103.64609081207684, 1.338585852071589] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "eastern-arctic-undersea-fibre-optic-network-eaufon", + "name": "Eastern Arctic Undersea Fibre Optic Network (EAUFON)", + "color": "#939597", + "feature_id": "eastern-arctic-undersea-fibre-optic-network-eaufon-0", + "coordinates": [-77.22173960190065, 56.73124145046779] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-75.59987220899734, 62.781080493725966], + [-75.59987220899734, 62.47071999993716], + [-75.64685599999957, 62.201285] + ], + [ + [-78.7498699775094, 62.47071999993716], + [-78.29987029629342, 62.47071999993716], + [-77.91666700000017, 62.416667] + ], + [ + [-79.19986965872539, 60.869535166329314], + [-78.7498699775094, 60.869535166329314], + [-78.14424099999962, 60.817681] + ], + [ + [-78.52487013690137, 59.755303236949885], + [-78.7498699775094, 60.20556098402312], + [-79.19986965872539, 60.869535166329314], + [-79.19986965872539, 61.51998376783524], + [-78.7498699775094, 62.47071999993716], + [-78.29987029629342, 62.781080493725966], + [-76.94987125264538, 62.88381399033642], + [-75.59987220899734, 62.781080493725966], + [-73.79987348413331, 62.88381399033642], + [-72.44987444048536, 62.57453442007588], + [-71.99987475926929, 62.15710017959822], + [-71.95388600000021, 61.59626] + ], + [ + [-78.29987029629342, 55.67438282806256], + [-78.07487045568539, 55.419806214460095], + [-77.76378669168503, 55.27457419139] + ], + [ + [-78.7498699775094, 58.130601640228065], + [-78.29987029629342, 58.36740335134627], + [-78.1050704342914, 58.455132585223964] + ], + [ + [-77.17487109325342, 56.55247760361351], + [-76.72487141203734, 56.55247760361334], + [-76.547137162946, 56.55156255991264] + ], + [ + [-77.26920696392496, 60.03711467356487], + [-78.52487013690137, 59.755303236949885], + [-79.19986965872539, 59.06836550247485], + [-79.19986965872539, 58.60262683506721], + [-78.7498699775094, 58.130601640228065], + [-77.39987093386137, 57.41066230395057], + [-77.17487109325342, 56.55247760361351], + [-77.39987093386137, 56.178604166899504], + [-77.84987061507735, 55.92731356432168], + [-78.29987029629342, 55.67438282806256], + [-79.19986965872539, 55.419806214460095], + [-80.09986902115736, 54.905692844320384], + [-80.09986902115736, 54.38492939974421], + [-79.64986933994138, 53.85747344030463], + [-78.89347339140438, 53.77361440535725] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "2africa", + "name": "2Africa", + "color": "#939597", + "feature_id": "2africa-0", + "coordinates": [43.58740728258226, -2.5605596300304683] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [41.850044588975464, -11.943944931746927], + [42.0750444295835, -12.053986862571492], + [42.75004395140763, -12.053986862571492], + [43.24330360197786, -11.70058928227246] + ], + [ + [-18.67491253517281, 31.28673881439167], + [-16.649913969700833, 30.25570294203996], + [-15.862414526976806, 28.951554732193216], + [-15.59656471590344, 27.95773368288536] + ], + [ + [55.45302495190066, -4.565748350533681], + [55.35003502485981, -3.928327304142726], + [54.90003534364374, -1.081346446098905], + [54.00003598121177, 1.168506749040887], + [51.750037576323734, 5.510071711803135] + ], + [ + [5.400070410479259, 2.367912558705314], + [7.200069135343199, 3.154491498099929], + [7.650068816559269, 3.491423322320486], + [7.999287318573636, 4.541590692825167] + ], + [ + [1.800072960155291, -11.356308769001004], + [11.70006594750339, -8.846050186819042], + [12.60006530993536, -8.830631937053113], + [13.2350248601241, -8.812561807472918] + ], + [ + [27.000055108251473, -34.734661512708556], + [25.875055905211468, -34.364025894526776], + [25.62325608358887, -33.96247066676] + ], + [ + [5.372530429989041, 43.29362778902916], + [5.175070569275306, 42.85377505385463], + [4.050071366235301, 41.85617959436382], + [2.70007232258726, 41.351450286896835], + [2.168725042748747, 41.38560270176822] + ], + [ + [8.938867903561913, 44.41035752885395], + [8.775068019003356, 44.051519228735145], + [8.325068338383204, 43.72721479104973], + [7.200069135343199, 43.07331078300331], + [6.412569692619428, 42.74371346443661], + [5.962570011403358, 42.74371346443661], + [5.175070569275306, 42.85377505385463] + ], + [ + [32.28445136473579, 31.259278146448963], + [31.500051920411693, 31.79808736758517], + [30.60005255857544, 32.24321001626265], + [28.8000538337115, 32.81231878328768], + [25.20005638398345, 34.40502275071583], + [19.35006052817539, 35.60293032290622], + [16.65006244087931, 35.23621340052833], + [14.4000640347993, 35.60293032290622], + [13.162564911455348, 35.96797434759347], + [12.487565389631243, 36.87321951208918], + [11.70006594750339, 37.85673997565843], + [11.250066265691402, 39.69832335493328], + [9.787567301739443, 42.41235450073577], + [9.562567461727298, 43.07331078300331], + [9.337567620523373, 43.40114497315386], + [8.887567939307473, 44.051519228735145], + [8.938867903561913, 44.41035752885395] + ], + [ + [33.41295056589729, 28.161052262220892], + [33.300050645275604, 28.293214058016247], + [33.08276564295244, 28.365936333863488] + ], + [ + [36.11254865347152, 24.12261698700334], + [36.900048095003655, 24.259444485784854], + [37.80004745803154, 24.225251377401804], + [38.10697724059963, 24.070648010417926] + ], + [ + [38.25004713924761, 20.375041253465525], + [37.79284668516374, 20.051571134280977], + [37.21967786917094, 19.615566594546237] + ], + [ + [44.55004267627157, 11.184367066436806], + [43.6500433138396, 11.45511199738803], + [43.147993669496344, 11.594869371447714] + ], + [ + [54.000035981807684, 13.054150695298716], + [54.112535901515685, 13.382708036125592], + [54.2250358218198, 14.583511645118676], + [54.2250358218198, 16.53419619825962], + [54.14808587692781, 17.095827186725558] + ], + [ + [48.600039807215495, 1.468426767332062], + [46.800041082351555, 1.918228780215685], + [45.34418211369595, 2.041205223228673] + ], + [ + [41.17504506655564, -4.900422453147314], + [40.72504538533957, -4.676208028750978], + [39.67289769319086, -4.028086271839726] + ], + [ + [40.95004522654352, -5.273944363641391], + [40.500045544731705, -4.676208028750978], + [39.67289769319086, -4.053024114605478] + ], + [ + [40.387545625023506, -6.169450529574419], + [39.8250460229076, -6.467627592690604], + [39.2696764169327, -6.823132108349142] + ], + [ + [42.300044269595645, -14.861883917662055], + [45.000042356891726, -15.296387760621855], + [46.315441425050665, -15.713729798684284] + ], + [ + [42.30004427019156, -15.22403228464728], + [41.400044907163675, -14.644301977123689], + [40.68539697592695, -14.565582936090522] + ], + [ + [35.3250492113435, -26.55162080165701], + [33.75005032708759, -26.350174904573805], + [32.580621155522095, -25.968268155408055] + ], + [ + [33.75005032708759, -28.348517239947398], + [32.85005096465545, -28.842401214006088], + [31.757961738301788, -28.95055966653794] + ], + [ + [18.42196118505379, -33.9190837726064], + [17.775061643323397, -34.11602012163186], + [17.325061962107526, -34.857839362235865], + [18.000061483931432, -36.321527759917814], + [19.80006020939146, -36.683250670190546], + [23.40005765911934, -36.683250670190546], + [26.100055745819503, -35.836608037492084], + [27.000055108251473, -34.734661512708556], + [33.30005064587152, -29.92069711126888], + [33.75005032708759, -28.348517239947398], + [35.3250492113435, -26.55162080165701], + [41.17504506715156, -23.287413403488756], + [42.30004427019156, -20.57441905727606], + [42.30004427019156, -15.22403228464728], + [42.300044269595645, -14.861883917662055], + [41.850044588975464, -11.943944931746927], + [41.40004490775959, -9.290424301035614], + [40.387545625023506, -6.169450529574419], + [40.95004522654352, -5.273944363641391], + [41.17504506655564, -4.900422453147314], + [42.30004427019156, -3.479268678969987], + [45.450042038703714, -1.231315750217505], + [48.600039807215495, 1.468426767332062], + [51.750037576323734, 5.510071711803135], + [54.000035981807684, 9.524411345019587], + [54.900035344239626, 12.615395567393307], + [54.000035981807684, 13.054150695298716], + [52.650036938159616, 12.834868817846598], + [48.600039807215495, 11.845776373625682], + [45.450042038703714, 10.963556857789229], + [44.55004267627157, 11.184367066436806], + [43.31254355292762, 12.615395567393307], + [43.21410612266146, 12.834868817846598], + [42.97504379201547, 13.054150695298716], + [42.35629423034351, 13.929303843271725], + [41.850044588975464, 14.801154224791475], + [40.50004554532981, 16.53419619825962], + [39.487546262591536, 18.251816319028308], + [38.25004713924761, 20.375041253465525], + [37.46254769711956, 22.05298561667763], + [36.11254865347152, 24.12261698700334], + [35.10004937073546, 25.754704263415306], + [34.59379972936759, 26.562513149236622], + [33.918800207543484, 27.364667993860166], + [33.41295056589729, 28.161052262220892], + [32.906450924701346, 28.951554732193216], + [32.65318110412005, 29.113614162980156], + [32.62520112394134, 29.34456698948989], + [32.456226243644636, 29.63833609362638], + [32.529931191431416, 29.972545436050268], + [32.400051282843634, 30.83702058239723], + [32.28445136473579, 31.259278146448963] + ], + [ + [10.800066584475331, -5.124561675456391], + [11.250066265691402, -5.572600905016571], + [12.349965487108477, -5.933373731471249] + ], + [ + [0.000074235291265, -6.467627592690604], + [10.800066584475331, -5.124561675456391], + [11.863635831628983, -4.778787768919273] + ], + [ + [-3.599923213840782, -2.580536704984041], + [0.000074235291265, -6.467627592690604], + [1.800072960155291, -11.356308769001004], + [6.750069454127299, -18.026426383713385], + [8.10006849777534, -23.493922445897766], + [13.05006499115126, -30.309953344646914], + [15.30006339723144, -32.61276000573585], + [16.65006244087931, -33.74264465652948], + [17.55006180331145, -33.92953699245888], + [18.42196118505379, -33.9190837726064] + ], + [ + [3.423511810692077, 6.439066911484701], + [3.825071526223184, 4.164912849976844], + [2.250072641967279, 1.131014326431796], + [1.575073120143173, 0.343586284889255], + [0.450073917103168, -0.631398185258206], + [-3.599923213840782, -2.580536704984041], + [-10.799918113296798, -2.580536704984041], + [-15.299914925456818, 1.918228780215685], + [-19.799911737616924, 8.635699417327544], + [-21.14991078126488, 11.735650161405744], + [-21.14092484990462, 14.365653759228536], + [-21.14991078126488, 19.952622905164304], + [-20.299911384604457, 22.884654113882362], + [-18.67491253517281, 31.28673881439167], + [-17.099913650320843, 35.05222991093683], + [-16.246065123519145, 39.46712719019058], + [-16.199914287888873, 39.69832335493328], + [-16.199914288484848, 44.694829089578064], + [-11.249917795108757, 48.70423463096077], + [-7.199920663568747, 50.740281893948264], + [-5.399921938704722, 50.95337730033461], + [-4.544402544762761, 50.82820142743802] + ], + [ + [-0.204315619320994, 5.558285889905761], + [0.450073917103168, 3.279837005485092], + [0.450073917103168, -0.631398185258206] + ], + [ + [-3.599923213840782, -2.580536704984041], + [-4.374922664823828, 1.468426767332062], + [-4.499922576272752, 2.367912558705314], + [-4.274922735664717, 3.266814816815753], + [-4.026242911831901, 5.323508791824736] + ], + [ + [-21.14092484990462, 14.365653759228536], + [-18.449912693968884, 14.365653759228536], + [-17.44571340535299, 14.686594841995088] + ], + [ + [-16.199914287888873, 39.69832335493328], + [-13.949915882404753, 38.768859224553665], + [-10.799918113296798, 38.47588134813884], + [-9.337919149586526, 38.68882888776801] + ], + [ + [3.825071526223184, 4.164912849976844], + [5.400070410479259, 2.367912558705314], + [7.200069135343199, 1.243490076978134], + [8.55006817899124, 1.01853421661562], + [9.454267538448192, 0.394465191855375] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sir-abu-nuayr-cable", + "name": "Sir Abu Nu’ayr Cable", + "color": "#9f54a0", + "feature_id": "sir-abu-nuayr-cable-0", + "coordinates": [54.79394747078382, 25.5067805473588] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [55.39223499496501, 25.352332240929258], + [55.068785224695716, 25.55188275942578], + [54.45003566183195, 25.450342946923996], + [54.22113582458252, 25.24085583479993] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "senegal-horn-of-africa-regional-express-share-cable", + "name": "Senegal Horn of Africa Regional Express (SHARE) Cable", + "color": "#939597", + "feature_id": "senegal-horn-of-africa-regional-express-share-cable-0", + "coordinates": [-20.50834370394503, 14.583511645118676] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-17.44571340535299, 14.686594841995088], + [-18.449912693968884, 14.583511645118676], + [-22.49990982491292, 14.583511645118676], + [-23.521209101414883, 14.923035560171769] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "azerbaijan-turkmenistan", + "name": "Azerbaijan-Turkmenistan", + "color": "#939597", + "feature_id": "azerbaijan-turkmenistan-0", + "coordinates": [51.07331477147122, 40.72535114139575] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [49.11243944363099, 41.07537147773428], + [49.500039169051746, 41.097606154138276], + [50.400038531483716, 41.01277253854238], + [52.20003725634783, 40.244353697009814], + [52.96243671625686, 40.0034121873673] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "gondwana-2picot-2", + "name": "Gondwana-2/Picot-2", + "color": "#939597", + "feature_id": "gondwana-2picot-2-0", + "coordinates": [172.0099339140269, -19.988503963069462] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [167.39995564764476, -22.006935513565224], + [167.17595580632852, -22.006935513565224], + [166.94507315738767, -22.15896231236269] + ], + [ + [167.39995564764476, -21.589112646478924], + [167.62495548825277, -21.484467259778455], + [167.87954515164918, -21.548062859078698] + ], + [ + [167.83395603859978, -20.96971618702372], + [167.60895480118282, -20.86464932352473], + [167.26050262143454, -20.937043135849024] + ], + [ + [166.9499559664287, -22.52748528666686], + [167.1749558070367, -22.735159984412718], + [167.49425558084178, -22.671917357180575] + ], + [ + [166.61245620492096, -22.562119511835817], + [166.61245620492096, -22.446638334574942], + [166.56362811510715, -22.265370242946062] + ], + [ + [178.43744782917761, -18.12381094353711], + [178.0874480765248, -18.560495634148936], + [167.83395603859978, -20.96971618702372], + [167.39995564764476, -21.589112646478924], + [167.39995564764476, -22.006935513565224], + [166.9499559664287, -22.52748528666686], + [166.61245620492096, -22.562119511835817], + [166.43925632880908, -22.30330806462004] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "java-kalimantan-sulawesi-jakasusi", + "name": "Java-Kalimantan-Sulawesi (JAKASUSI)", + "color": "#30a7df", + "feature_id": "java-kalimantan-sulawesi-jakasusi-0", + "coordinates": [114.81725815914584, -4.378143197677048] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [112.71972094673194, -7.271863121195906], + [112.78124434005238, -6.616650693475464], + [112.83749430020433, -6.39309949782384], + [113.96249350384025, -4.825692499217524], + [114.18749334444826, -4.377144375531941], + [114.66674769244, -3.882827780552503], + [114.52499310476432, -4.252498775658097], + [114.74999294596827, -4.377144375531941], + [116.58310164737688, -4.404364233745071], + [118.79999007691222, -5.049857167366866], + [119.38468966210954, -5.343245784035673] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "ixchel", + "name": "Ixchel", + "color": "#6ac5ae", + "feature_id": "ixchel-0", + "coordinates": [-87.0022100738826, 20.505433864493767] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-87.07026408326414, 20.629718018017286], + [-87.01848911994196, 20.515592009193767], + [-86.87916421864102, 20.428653099962673] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "dos-continentes-l-ll", + "name": "DOS CONTINENTES l & ll", + "color": "#939597", + "feature_id": "dos-continentes-l-ll-0", + "coordinates": [-5.317170136013715, 35.89240754440482] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-5.604462809431084, 36.014276783200074], + [-5.399921938704722, 35.96797434759347], + [-5.334736438007837, 35.89388140994376], + [-5.323321992968886, 35.889837117183504], + [-5.313642702950744, 35.89388140994376], + [-5.287422018400775, 36.05897312258671], + [-5.325166132287478, 36.210325320952876] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "crosschannel-fibre", + "name": "CrossChannel Fibre", + "color": "#939597", + "feature_id": "crosschannel-fibre-0", + "coordinates": [0.2589884282093351, 50.26698212513418] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-0.134425668831739, 50.82847935144261], + [0.000074235887269, 50.597677199053464], + [0.450073917103168, 50.02292045625484], + [0.797773670193607, 49.87730699116304] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "aurora-cable-system", + "name": "AURORA Cable System", + "color": "#939597", + "feature_id": "aurora-cable-system-0", + "coordinates": [-84.59134209846444, 17.535285129087896] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-84.14986615150539, 17.39502263470061], + [-82.34986742723737, 18.82068667655483], + [-81.38171060439305, 19.29660411698066] + ], + [ + [-85.49986519515353, 17.823934412537824], + [-87.07486408000543, 16.53419619825962], + [-87.94615578765044, 15.844981598742493] + ], + [ + [-79.56661939832038, 8.950317108800647], + [-79.1998696581294, 8.190543417795567], + [-78.52487013630538, 7.298762754459602], + [-78.29987029569733, 5.061986954416028], + [-80.54986870177717, 2.367912558705314], + [-80.77486854238529, 0.568578852526286], + [-80.77486854238529, -0.331409329660175], + [-80.71613109211359, -0.949727245539691] + ], + [ + [-79.64986933934539, 11.95585820711483], + [-79.64986933934539, 9.96791518697421], + [-79.75347926594715, 9.43772198486991] + ], + [ + [-86.17486471697755, 18.251816319028308], + [-87.74986360123336, 16.53419619825962], + [-88.0873633621456, 16.10232559580288], + [-88.59713531004533, 15.72723663872111] + ], + [ + [-86.3998645575854, 21.635297384859456], + [-86.51236447788934, 21.530685333962452], + [-86.76758665233308, 21.095728792367282] + ], + [ + [-82.53956729225628, 27.33890667576847], + [-82.79986710785754, 26.964304734562802], + [-83.24986678907334, 24.941363171753835], + [-84.82486567332933, 23.711258142484382], + [-86.3998645575854, 21.635297384859456], + [-86.3998645575854, 20.375041253465525], + [-86.17486471697755, 18.251816319028308], + [-85.49986519515353, 17.823934412537824], + [-84.14986615150539, 17.39502263470061], + [-82.79986710785735, 16.10232559580288], + [-81.44986806420931, 13.929303843271725], + [-79.64986933934539, 11.95585820711483], + [-76.04987188961734, 11.294709319565555], + [-75.50573165009138, 10.386791448721794] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "x-link-submarine-cable", + "name": "X-Link Submarine Cable", + "color": "#bb3726", + "feature_id": "x-link-submarine-cable-0", + "coordinates": [-58.426836847760526, 10.006678144787003] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-58.15486456660838, 6.804293299288759], + [-57.93738472067315, 7.298762754459602], + [-58.49988432219324, 10.410816505402636], + [-59.17488384401726, 12.615395567393307], + [-59.536383587927375, 13.062625710060047] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "x-link-submarine-cable", + "name": "X-Link Submarine Cable", + "color": "#939597", + "feature_id": "x-link-submarine-cable-1", + "coordinates": [-59.245514071648145, 10.05495956212755] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-56.37537582721498, 5.886620767353833], + [-56.699885597329214, 6.405200795356109], + [-57.599884959761184, 6.852191098754417], + [-58.15486456660838, 6.804293299288759] + ], + [ + [-58.15486456660838, 6.804293299288759], + [-58.049884640977254, 7.298762754459602], + [-59.39988368462521, 10.410816505402636], + [-60.299883047057264, 11.735650161405744], + [-61.199882409489234, 11.95585820711483], + [-61.7905819910321, 12.008779421336584] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "maldives-sri-lanka-cable-msc", + "name": "Maldives Sri Lanka Cable (MSC)", + "color": "#4bb648", + "feature_id": "maldives-sri-lanka-cable-msc-0", + "coordinates": [76.75325063896727, 5.408740500220119] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [73.5403521392646, 4.212345781871875], + [74.25002163652775, 4.389285926050889], + [79.20001812990384, 6.405200795356109], + [79.86681765753698, 6.833088156653076] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bkk-digitek", + "name": "BKK Digitek", + "color": "#ca3693", + "feature_id": "bkk-digitek-0", + "coordinates": [5.625070251087294, 59.60214757992793] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [5.332770458155238, 60.390723705809705], + [5.400120410443975, 60.35426474321949], + [5.46882036177621, 60.29859553499119], + [5.512570330783177, 60.18692233975918], + [5.456320370631232, 60.07486799642308], + [5.512570330783177, 59.90606992457441], + [5.625070251087294, 59.6796637072089], + [5.625070251087294, 59.451717318905224], + [5.524480322346278, 59.279267580371936], + [5.850070091695329, 59.1068949571908], + [5.850070091695329, 59.049084544661525], + [5.730770176208466, 58.97082148666851] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tokelau-submarine-cable", + "name": "Tokelau Submarine Cable", + "color": "#939597", + "feature_id": "tokelau-submarine-cable-0", + "coordinates": [-172.04578978025606, -9.178183024905252] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-172.51090355571756, -8.55909289982796], + [-172.46230359014612, -8.846050186819042], + [-172.3498036698421, -9.06830600387434], + [-172.12480382923417, -9.179382545871192], + [-171.81150405117864, -9.174626307490229], + [-171.67480414801807, -9.3459320066398], + [-171.44980430741032, -9.3459320066398], + [-171.26150444080352, -9.383770856814323] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "mist", + "name": "MIST", + "color": "#939597", + "feature_id": "mist-0", + "coordinates": [83.06951305691896, 2.525274965009771] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [101.25000250948804, 2.199296754027785], + [101.36250242919627, 2.592701464601845], + [101.44360237174422, 2.751228763607116] + ], + [ + [72.87590260996691, 19.076074257285313], + [71.55002354923184, 16.965102599435824], + [71.10002386801577, 13.492128176464178], + [72.5049108757027, 9.443204702286806], + [74.30490960056682, 6.770440250104599], + [78.30001876747187, 3.940475772228723], + [79.65001781052402, 3.416559618323163], + [81.00001685476795, 3.042156042425745], + [85.50001366692797, 1.918228780215685], + [90.00001047908799, 2.817450442654064], + [92.7000085663839, 4.837826391986653], + [94.27500745064, 5.733989114150035], + [95.40000665367998, 6.181557032537114], + [97.42500521915215, 5.845915088460174], + [98.10000474097606, 5.286069860821101], + [98.77500426280002, 4.613591578862867], + [100.12500330644806, 3.266814816815753], + [101.25000250948804, 2.199296754027785], + [102.15000187192001, 1.862009426867957], + [102.68279723997185, 1.614492576238035], + [103.34065102845304, 1.412069619499448], + [103.50000091556822, 1.383728077246843], + [103.64609081207684, 1.338585852071589] + ], + [ + [81.00001685476795, 3.042156042425745], + [82.57501573902388, 5.51004741056704], + [82.80001557963189, 7.744876956882223], + [82.35001589841599, 9.524411345019587], + [81.45001653598385, 11.515266158038685], + [80.2429873910547, 13.063853101883296] + ], + [ + [96.16200611327653, 16.340356254503206], + [96.21670607452651, 14.833379080264962], + [96.52500585612407, 11.294709319565555], + [96.18750609521211, 8.33898542602023], + [95.40000665367998, 6.181557032537114] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "trans-caspian-fiber-optic-tcfo", + "name": "Trans Caspian Fiber Optic (TCFO)", + "color": "#939597", + "feature_id": "trans-caspian-fiber-optic-tcfo-0", + "coordinates": [50.373275544955504, 42.16049193649846] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [49.11243944363099, 41.07537147773428], + [49.500039169051746, 41.18233034647952], + [50.400038531483716, 42.19047067556437], + [50.850038212699786, 42.85377505385463], + [51.07503805390374, 43.40114497315386], + [51.200037965352465, 43.64998729289357] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "boriken-submarine-cable-system-bscs", + "name": "Boriken Submarine Cable System (BSCS)", + "color": "#939597", + "feature_id": "boriken-submarine-cable-system-bscs-0", + "coordinates": [-66.86416408951303, 17.823934412537824] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-64.8814698014181, 17.712429822041884], + [-65.24987954043327, 17.823934412537824], + [-65.69987922164925, 18.03800543960884], + [-65.78127564836231, 18.117751077532546], + [-65.81237914195327, 17.931002277731153], + [-66.14987890286532, 17.823934412537824], + [-66.37487874347327, 17.823934412537824], + [-66.48737866377729, 17.87747641213855], + [-66.62663637762581, 17.982654263677432], + [-66.82487842468926, 17.823934412537824], + [-67.0498782652973, 17.823934412537824], + [-67.27487810590533, 17.931002277731153], + [-67.33112806605729, 18.144943564296312], + [-67.33112806605729, 18.358585051948666], + [-67.15485865967813, 18.42747520529369], + [-67.44658422007005, 18.65855318205459], + [-68.06237754803328, 18.731925895976644], + [-68.35808046355456, 18.649132934420464] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "la-gomera-el-hierro", + "name": "La Gomera-El Hierro", + "color": "#82489c", + "feature_id": "la-gomera-el-hierro-0", + "coordinates": [-17.406432376031034, 27.779808227112085] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-17.10821364444101, 28.08794070557161], + [-17.08851365839672, 27.946250262571624], + [-17.437413411232882, 27.763588526057674], + [-17.774913172144863, 27.763588526057674], + [-17.890913089969388, 27.820205885436337] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tenerife-la-gomera-la-palma", + "name": "Tenerife-La Gomera-La Palma", + "color": "#397cbf", + "feature_id": "tenerife-la-gomera-la-palma-0", + "coordinates": [-17.104673858647516, 28.177643715718204] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-17.765193179030604, 28.663271035325494], + [-17.58982330326421, 28.663271035325494], + [-17.364803462670494, 28.56451109930117], + [-17.212413570624847, 28.359233526108653], + [-17.09375632253179, 28.159242763304235], + [-17.10821364444101, 28.08794070557161], + [-16.976044634742863, 28.045558044929322], + [-16.76241388940886, 27.91280889046331], + [-16.537414048800827, 27.91280889046331], + [-16.48116408864888, 27.962503359972544], + [-16.51801406254387, 28.059088061264703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tenerife-la-palma", + "name": "Tenerife-La Palma", + "color": "#cd1875", + "feature_id": "tenerife-la-palma-0", + "coordinates": [-17.153280432843218, 28.689992052050172] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-16.586414014088774, 28.3975939856212], + [-16.76241388940886, 28.55704546571141], + [-17.364803462670494, 28.761938001940052], + [-17.58982330326421, 28.761938001940052], + [-17.765193179030604, 28.663271035325494] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tenerife-gran-canaria", + "name": "Tenerife-Gran Canaria", + "color": "#368ccb", + "feature_id": "tenerife-gran-canaria-0", + "coordinates": [-16.114966533512558, 28.154948775403653] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-15.694014646272876, 28.14994322532678], + [-15.862414526976806, 28.21058804973515], + [-16.31241420819279, 28.111449436442342], + [-16.538584047971995, 28.04674170420907] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "candalta", + "name": "CANDALTA", + "color": "#f0a51f", + "feature_id": "candalta-0", + "coordinates": [-16.008811791029615, 28.225523187644825] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-16.371744166162927, 28.355537519987053], + [-16.199914287888873, 28.26014491451133], + [-15.974914447280838, 28.111449436442342], + [-15.749914606672803, 28.012130816282678], + [-15.699964642057836, 27.99976141196052] + ], + [ + [-16.371744166162927, 28.355537519987053], + [-16.199914287888873, 28.309722768786855], + [-15.974914447280838, 28.21058804973515], + [-15.749914606672803, 28.06177953770711], + [-15.699964642057836, 27.99976141196052] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "transcan-2", + "name": "TRANSCAN-2", + "color": "#7fae40", + "feature_id": "transcan-2-0", + "coordinates": [-13.611074291224469, 28.66209674372891] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-15.590393235304276, 27.745267274498815], + [-15.412414845760821, 27.763588526057674], + [-15.390735173618907, 27.89546221316101] + ], + [ + [-13.547572416832708, 28.959501465241516], + [-13.612416120896796, 28.65581241773313], + [-13.862220631432962, 28.496470563064292] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "converge-domestic-submarine-cable-network-cdscn", + "name": "Converge Domestic Submarine Cable Network (CDSCN)", + "color": "#939597", + "feature_id": "converge-domestic-submarine-cable-network-cdscn-0", + "coordinates": [120.91814381110439, 11.95585820711483] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [123.29490876766968, 9.246348603115479], + [123.4687367695283, 9.08033076823304], + [123.74998657028831, 8.969223547813073], + [124.48123605226439, 8.635699417327544], + [124.63191594552123, 8.454147535358373] + ], + [ + [123.91358645439269, 9.622537095709703], + [124.19998625150438, 9.524411345019587], + [124.64998593272028, 9.524411345019587], + [125.09998561393635, 9.413444258507468], + [125.32498545454442, 9.246926926415313], + [125.42068851174744, 8.96893416150806] + ], + [ + [123.69139286179657, 10.238265933645806], + [123.74998657028831, 10.078698006650882], + [123.74998657028831, 9.801670473167405], + [123.87820913570422, 9.675391878909068] + ], + [ + [123.4128774340995, 10.483708779671844], + [123.52498672968031, 10.410816505402636], + [123.63524055782548, 10.376237129155953] + ], + [ + [122.58944051743, 10.786617082837381], + [122.84998720785634, 10.742581675476316], + [122.96776056192462, 10.739415483408436] + ], + [ + [124.00760357528995, 11.045900953925155], + [124.1341362981531, 10.932011625131736], + [124.42498609211222, 10.853089690745378], + [124.61277595908044, 11.006888020676286] + ], + [ + [123.61668588346967, 12.366641586121915], + [123.525036729645, 12.505588131780542], + [123.35623684922442, 12.615395567393307], + [123.01873708831224, 12.834868817846598], + [122.84998720785634, 13.054150695298716], + [122.84998720785634, 13.273238157547667], + [122.95067073028108, 13.546888070207757] + ], + [ + [121.52772251956102, 12.586423162176118], + [121.61248808451225, 12.395734000022884], + [121.83748792512026, 12.17588718550806], + [121.94481206784073, 11.949266020482952], + [122.06248776572832, 11.95585820711483], + [122.39998752664027, 11.845776373625682], + [122.7499872786972, 11.583202180445141], + [122.96248712816029, 11.735650161405744], + [123.29998688907224, 11.735650161405744], + [123.4687367695283, 11.95585820711483], + [123.50906877220675, 12.218076875737609], + [123.52498672968031, 11.95585820711483], + [123.82048402610715, 11.537441867288294], + [123.9363145632918, 11.083374737000184] + ], + [ + [121.44881632545892, 13.809939475817998], + [121.61248808451225, 13.492128176464178], + [121.72498800481614, 13.054150695298716], + [121.72498800481614, 12.725155923562937], + [121.52772251956102, 12.586423162176118], + [121.4999881642083, 12.395734000022884], + [121.38748824390436, 12.175838310300918], + [120.93748856268829, 11.95585820711483], + [120.37498896116833, 11.95585820711483], + [120.20076908458739, 12.005434247136094], + [120.37498896116833, 11.735650161405744], + [119.92498927995226, 11.073982781226704], + [119.50037958074992, 10.820000490489491] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "guadeloupe-cable-des-iles-du-sud-gcis", + "name": "Guadeloupe Cable des Iles du Sud (GCIS)", + "color": "#31ac49", + "feature_id": "guadeloupe-cable-des-iles-du-sud-gcis-0", + "coordinates": [-61.3504426727622, 16.113973083936457] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-61.49826219811416, 15.98876894276924], + [-61.564677072940256, 16.042456277649705] + ], + [ + [-61.199882409489234, 16.21038241802077], + [-61.274442903544895, 16.251075987819178] + ], + [ + [-61.36863228994521, 16.10232559580288], + [-61.31912060626978, 15.953463637141539] + ], + [ + [-61.578837219159084, 15.87297951222115], + [-61.49826219811416, 15.98876894276924], + [-61.36863228994521, 16.10232559580288], + [-61.199882409489234, 16.21038241802077], + [-61.07385710814174, 16.303571371032774] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "rockabill", + "name": "Rockabill", + "color": "#35b44a", + "feature_id": "rockabill-0", + "coordinates": [-4.571461647951509, 53.76256062499536] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-6.114621432404959, 53.49317504982963], + [-5.624921779312757, 53.669053535347956], + [-4.499922576272752, 53.768910566668154], + [-3.599923213840782, 53.768910566668154], + [-3.006373634316702, 53.64793339883286] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "oman-australia-cable-oac", + "name": "Oman Australia Cable (OAC)", + "color": "#939597", + "feature_id": "oman-australia-cable-oac-0", + "coordinates": [79.54038090758999, -10.621476489144413] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [90.45001016030389, -18.880139975101287], + [95.40000665308409, -13.99027116703789], + [96.83231563842301, -12.19311300919901] + ], + [ + [115.85731216153286, -31.95344133032441], + [113.84999358353613, -31.468437004267116], + [112.04999485867219, -30.309953344646914], + [90.45001016030389, -18.880139975101287], + [74.25002163652775, -6.616638567759907], + [65.25002801220771, 4.164912849976844], + [61.200030881263785, 15.669513225155328], + [60.75003120004769, 19.104405475930548], + [60.75003120004769, 22.469443964829594], + [59.85003183761572, 23.401884131852626], + [58.950032475183775, 23.711258142484382], + [58.591142729424746, 23.61510487139472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tanjun-pandan-sungai-kakap-cable-system", + "name": "Tanjun Pandan-Sungai Kakap Cable System", + "color": "#939597", + "feature_id": "tanjun-pandan-sungai-kakap-cable-system-0", + "coordinates": [108.11568048125864, -1.2267692284729605] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [107.6628879665399, -2.767442755874555], + [107.60664800638088, -2.517708985005584], + [107.64799797708824, -2.237970538313903], + [108.11249764803219, -1.231315750217505], + [108.89999709016004, -0.106411275875331], + [109.18222689022608, -0.061391357195134] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "hainan-to-hong-kong-express-h2he", + "name": "Hainan to Hong Kong Express (H2HE)", + "color": "#32479d", + "feature_id": "hainan-to-hong-kong-express-h2he-0", + "coordinates": [112.93581403124367, 20.90911219728767] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [110.76181217748294, 20.04530796190923], + [111.0374955759361, 20.26954403592967], + [112.83749430080022, 20.796306105108954], + [113.56874378277612, 21.635297384859456], + [113.68124370308007, 21.84429407917378], + [113.57675158960345, 22.270716559591165], + [113.73749366323219, 22.10511054810837], + [114.0749934241442, 22.10511054810837], + [114.20292333351765, 22.222050419736746] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "ketchcan1-submarine-fiber-cable-system", + "name": "KetchCan1 Submarine Fiber Cable System", + "color": "#bf1e5a", + "feature_id": "ketchcan1-submarine-fiber-cable-system-0", + "coordinates": [-130.96964048299532, 54.78868595868127] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-130.3263334396628, 54.3130644955053], + [-130.44358460849705, 54.29748595281848], + [-130.55608452595908, 54.330299043611234], + [-130.61233323705773, 54.559258765782204], + [-130.72483315736176, 54.68951871778469], + [-130.9498329979697, 54.75449236881684], + [-131.06238415450144, 54.94878902385568], + [-131.11868411319574, 55.07780072164758], + [-131.23108403073118, 55.14215100378169], + [-131.64783250350035, 55.3420878350874] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "equiano", + "name": "Equiano", + "color": "#939597", + "feature_id": "equiano-0", + "coordinates": [-8.049604192321624, -1.6811689359051059] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [7.650068816559269, -6.616650693475464], + [8.10006849777534, -6.39309949782384], + [10.80006658507125, -5.721872747834027], + [12.349965487108477, -5.933373731471249] + ], + [ + [8.325068338383204, -10.620064860363328], + [-3.599923213840782, -14.57172649133264], + [-5.711521717964501, -15.918564131427416] + ], + [ + [1.575073120143173, 0.793562652607278], + [2.250072641967279, 1.580886840914019], + [3.600071685615319, 4.164912849976844], + [3.423511810692077, 6.439066911484701] + ], + [ + [9.00006786020731, -23.493922445897766], + [13.05006499115126, -22.665969967794723], + [14.533463940297622, -22.68542973223063] + ], + [ + [18.445861168718807, -33.72721819637752], + [17.55006180331145, -33.74264465652948], + [16.65006244087931, -33.55534420877598], + [15.525063237839305, -32.61276000573585], + [13.50006467236733, -30.309953344646914], + [9.00006786020731, -23.493922445897766], + [7.650068816559269, -18.026426383713385], + [8.325068338383204, -10.620064860363328], + [7.650068816559269, -6.616650693475464], + [7.200069135343199, -4.825692499217524], + [4.050071366831219, -1.231315750217505], + [1.575073120143173, 0.793562652607278], + [0.225074076495304, -0.093411304877662], + [-3.599923213840782, -1.681168935905106], + [-10.799918113296798, -1.681168935905106], + [-14.849915244240833, 2.367912558705314], + [-19.349912056400854, 8.635699417327544], + [-20.699911100048894, 11.735650161405744], + [-20.699911100048894, 19.952622905164304], + [-19.84991170219638, 22.884654113882362], + [-19.12491221579282, 27.763588526057674], + [-18.449912693968884, 31.28673881439167], + [-17.099913650320843, 33.93964008831958], + [-13.949915881808863, 36.14986678681771], + [-10.349918432080813, 38.034173900641946], + [-9.56241898995276, 38.29952060596935], + [-9.150219281958897, 38.725651996250065] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "south-pacific-cable-system-spscmistral", + "name": "South Pacific Cable System (SPSC)/Mistral", + "color": "#d18e29", + "feature_id": "south-pacific-cable-system-spscmistral-0", + "coordinates": [-83.51924740133123, -9.94094004567475] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-86.39986455818149, -2.430680261964397], + [-84.14986615150539, -2.580536704984041], + [-81.009068376476, -2.228447783119123] + ], + [ + [-76.4998715708334, -18.453813775777263], + [-72.89987412110536, -19.30538407236122], + [-70.3067559580946, -18.473543073651314] + ], + [ + [-82.79986710785735, -11.50333384598423], + [-79.1998696581294, -12.603512104971372], + [-76.87428130559798, -12.278420041799535] + ], + [ + [-90.82222367756134, 13.934797333208934], + [-91.57486089156936, 13.054150695298716], + [-92.24986041339346, 9.524411345019587], + [-90.89986137034151, 3.715978119297972], + [-87.74986360123408, 0.568578852526286], + [-86.39986455818149, -2.430680261964397], + [-85.04986551393736, -6.616650693475464], + [-82.79986710785735, -11.50333384598423], + [-79.1998696581294, -15.441023659568003], + [-76.4998715708334, -18.453813775777263], + [-74.02487332414536, -27.153831285391675], + [-72.22487459928134, -31.851465665577166], + [-71.62043502747201, -33.0455412324782] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "n0r5ke-viking", + "name": "N0r5ke Viking", + "color": "#939597", + "feature_id": "n0r5ke-viking-0", + "coordinates": [5.942297154260842, 62.49599756579917] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [9.637665064777536, 63.61946636684087], + [9.815742282376135, 63.576280591644036], + [9.90006722263928, 63.48851288982226], + [10.293816943703206, 63.46341549544039], + [10.392059061607597, 63.43100204742538] + ], + [ + [7.160713694473003, 62.73722946432855], + [7.425068975951234, 62.66077045886655], + [7.681611762963911, 62.563956240896886] + ], + [ + [9.663153327971344, 63.68839703736208], + [9.618817421879271, 63.67623095645985], + [9.637665064777536, 63.61946636684087], + [9.00006786020731, 63.5010867925096], + [8.55006817899124, 63.42562743079097], + [8.16374032766953, 63.358030578753215], + [7.906025665891121, 63.38757389977738], + [7.76256873567138, 63.22367528305821], + [7.72966876017, 63.11078338854429], + [7.537568896255323, 63.12213306123374], + [7.200069135343199, 63.12213306123374], + [6.948609313479835, 63.03295735917101], + [6.862569374431217, 62.91797878525176], + [6.975069294735334, 62.81536487879316], + [7.160713694473003, 62.73722946432855], + [6.862569374431217, 62.76392332890575], + [6.637569533823182, 62.738168854300056], + [6.465792311761874, 62.613002975496556], + [6.300069772911229, 62.66077045886655], + [6.187569852607282, 62.609058908203394], + [6.174386268196514, 62.471487316816024], + [5.962570011999247, 62.50536500000058], + [5.850070091695329, 62.453382412508034], + [5.400070410479259, 62.29689073879055], + [5.287570488983533, 62.244545161699875], + [5.343820449731396, 62.13958079203451], + [5.522335948269301, 62.03599154304587], + [5.456320370035314, 61.9814494856501], + [5.49850784014933, 61.93554024603813], + [5.062570648375498, 61.9814494856501], + [4.837570808959242, 61.92855599360783], + [4.725070888655324, 61.822493741892], + [4.725070888655324, 61.71606370959984], + [4.97585196040373, 61.596307262996845], + [4.725070888655324, 61.5557270894935], + [4.725070888655324, 61.448373642843535], + [4.950070729263189, 61.23255301306608], + [5.293429861024407, 61.172244368269645], + [4.837570808959242, 61.01524141470435], + [4.725070888655324, 60.79643169535018], + [4.855539546229977, 60.621972493449306], + [5.062570649567277, 60.57611674038779], + [5.287570490175341, 60.46539258705809], + [5.332770458155238, 60.390723705809705] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "celtic-norse", + "name": "Celtic Norse", + "color": "#939597", + "feature_id": "celtic-norse-0", + "coordinates": [-2.396417644684732, 61.455326710628185] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-5.399921938704722, 60.242806526349625], + [-4.949922257488737, 59.451717318905224], + [-4.16242281536077, 58.75856894488285], + [-3.794223076196971, 58.56885167249308] + ], + [ + [10.216466998498731, 63.33348031552026], + [9.90006722263928, 63.475978110242295], + [9.787617302300049, 63.576280591644036], + [9.675067382031244, 63.65127632517789], + [9.45006754142321, 63.62629973033458], + [9.337567621119263, 63.65127632517789], + [9.225067700815345, 63.72607438667927], + [9.00006786020731, 63.82549832634285], + [8.775068019599274, 63.87507906940428], + [7.875068657167304, 63.72607438667927], + [6.750069454127299, 63.72607438667927], + [0.450073917103168, 62.29689073879055], + [-3.149923532624712, 61.23255301306608], + [-5.399921938704722, 60.242806526349625], + [-7.649920344784732, 59.79305890746801], + [-8.999919388432772, 58.75856894488285], + [-10.349918432080813, 57.571890279005004], + [-10.799918113296798, 56.345222926819986], + [-10.349918432080813, 55.33458061322915], + [-9.449919069648843, 54.559258765782204], + [-9.232149223918952, 54.207113520678774] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "mandji-fiber-optic-cable", + "name": "Mandji Fiber Optic Cable", + "color": "#939597", + "feature_id": "mandji-fiber-optic-cable-0", + "coordinates": [9.225067700815345, 1.0738514996111803] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [9.341367618427313, 1.175232424070032], + [9.225067700815345, 1.131014326431796], + [9.225067700815345, 1.01853421661562], + [9.31956763387089, 0.93484644390108] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "okinawa-cellular-cable", + "name": "Okinawa Cellular Cable", + "color": "#504a9f", + "feature_id": "okinawa-cellular-cable-0", + "coordinates": [128.68334289984077, 29.27169533674899] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [127.9772835756315, 26.59157896846108], + [127.79998370123226, 26.562513149236622], + [127.57498386062443, 26.763586569619832], + [127.68748378092832, 27.16466581281361], + [128.47498322305617, 28.359233526108653], + [128.6999830636644, 29.34456698948989], + [129.1499827448803, 30.514495959759188], + [129.59998242609637, 31.28673881439167], + [130.04998210731227, 31.574717129337273], + [130.55708174807816, 31.59652468890519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "cabo-verde-telecom-domestic-submarine-cable-phase-2", + "name": "Cabo Verde Telecom Domestic Submarine Cable Phase 2", + "color": "#364da0", + "feature_id": "cabo-verde-telecom-domestic-submarine-cable-phase-2-0", + "coordinates": [-24.56759067138637, 16.084567433773145] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-25.059408011740402, 17.019177136056072], + [-25.03115803175291, 16.911292789233244], + [-25.060796682631604, 16.82344518100311], + [-25.077407998988974, 16.72458551142151], + [-25.077407998988974, 16.616813850378605], + [-23.962408788864877, 15.452760959322148], + [-23.751080813571633, 15.276859352491755] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "cabo-verde-telecom-domestic-submarine-cable-phase-3", + "name": "Cabo Verde Telecom Domestic Submarine Cable Phase 3", + "color": "#21b595", + "feature_id": "cabo-verde-telecom-domestic-submarine-cable-phase-3-0", + "coordinates": [-24.552897138117146, 15.100182190335289] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-22.919050152989968, 16.174753793884634], + [-23.062409426432907, 15.994209911785873], + [-23.23110930692428, 15.669513225155328], + [-23.287409267040857, 15.23578178303569], + [-23.209772603289423, 15.12991920861748], + [-23.287409267040857, 15.018578573757566], + [-23.521209101414883, 14.923035560171769], + [-23.512409107648892, 14.801154224791475], + [-23.624909027952924, 14.692360031374477], + [-23.849908868560874, 14.583511645118676], + [-24.299908549776944, 14.692360031374477], + [-24.412408470080948, 14.746763925027949], + [-24.50093379799378, 14.897153768217777], + [-24.581158350536953, 14.85553088506029], + [-24.695416082095676, 14.872992709661645], + [-24.637408310688897, 15.018578573757566], + [-24.52490839038498, 15.127208002058438], + [-24.299908549776944, 15.23578178303569], + [-24.07490870916891, 15.344299555517438], + [-23.751080813571633, 15.276859352491755], + [-24.07490870916891, 15.452760959322148], + [-25.189907919293006, 16.616813850378605], + [-25.189907919293006, 16.72458551142151], + [-25.060796682631604, 16.82344518100311], + [-25.087407991904882, 16.911292789233244], + [-25.059408011740402, 17.019177136056072] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "cabo-verde-telecom-domestic-submarine-cable-phase-1", + "name": "Cabo Verde Telecom Domestic Submarine Cable Phase 1", + "color": "#b32c57", + "feature_id": "cabo-verde-telecom-domestic-submarine-cable-phase-1-0", + "coordinates": [-23.099947086292758, 16.626458747530876] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-25.060796682631604, 16.82344518100311], + [-24.97490807160088, 16.642014062854088], + [-24.637408310688897, 16.53419619825962], + [-24.357135071737133, 16.56583652167643], + [-24.187408629472912, 16.426318069774425], + [-23.39990918734489, 16.53419619825962], + [-22.935309907096382, 16.677097964299264], + [-22.949909506128904, 16.426318069774425], + [-22.919050152989968, 16.174753793884634], + [-23.17490934673694, 15.994209911785873], + [-23.343659227192916, 15.669513225155328], + [-23.39990918734489, 15.23578178303569], + [-23.39990918734489, 15.018578573757566], + [-23.521209101414883, 14.923035560171769] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "miyazaki-okinawa-cable-moc", + "name": "Miyazaki-Okinawa Cable (MOC)", + "color": "#b0d135", + "feature_id": "miyazaki-okinawa-cable-moc-0", + "coordinates": [130.61608243107938, 28.675897447067] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [131.29461013185616, 32.09764082018094], + [131.73748091187227, 31.67051304708704], + [131.84998083217639, 31.28673881439167], + [131.39998115096031, 29.540507745394393], + [128.6999830636644, 26.562513149236622], + [128.02498354184027, 26.159307970773796], + [127.68084378563216, 26.212414126750332] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "japan-information-highway-jih", + "name": "Japan Information Highway (JIH)", + "color": "#6ebe44", + "feature_id": "japan-information-highway-jih-0", + "coordinates": [139.0649744188759, 34.41798443375018] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [132.74998019460836, 31.094262827639596], + [132.07498067278445, 31.67051304708704], + [131.29461013185616, 32.09764082018094] + ], + [ + [127.68084378563216, 26.212414126750332], + [128.02498354184027, 26.058287560298936], + [128.6999830636644, 26.361086325391653], + [131.39998115096031, 29.34456698948989], + [132.74998019460836, 31.094262827639596], + [134.99997860068837, 31.478822672736243], + [136.57497748494447, 32.24321001626265], + [136.79997732555248, 32.81231878328768], + [136.87399727311598, 34.33682825203164], + [137.69997668798445, 34.03292178996395], + [138.59997605041642, 34.12610104005762], + [139.9548550906076, 34.97657002902224], + [140.3437248151284, 35.006169091971316], + [140.84997445649643, 35.419780517080454], + [140.96247437680037, 35.78566189952613], + [140.84997445649643, 36.05897312258671], + [140.26989674242904, 36.3421943691647], + [140.84997445649643, 36.14986678681771], + [141.2999741377125, 36.42191605012607], + [141.7499738189284, 36.87321951208918], + [141.7499738189284, 37.58978657360316], + [141.2999741377125, 38.034173900641946], + [140.75817764652615, 38.31438700373923], + [141.2999741377125, 38.12273010839229], + [141.7499738189284, 38.21117903702327], + [142.19997350014447, 38.651811712711236], + [142.4249733407523, 40.04369219282995], + [142.19997350014447, 41.0693404382163], + [141.7499738189284, 41.40772623743587], + [141.2999741377125, 41.57626183009805], + [140.84997445649643, 41.57626183009805], + [140.39997477528036, 41.40772623743587], + [139.94997509406446, 41.23875232896668], + [139.8374751737605, 41.15395052136796], + [139.61247533315233, 40.89949091487156], + [139.49997541284839, 40.387320290775165], + [139.7249752534564, 40.04369219282995], + [140.3436271589475, 39.692011436751784] + ], + [ + [139.8374751737605, 41.15395052136796], + [139.38746049255505, 41.57626183009805], + [139.0499757316325, 42.079235618164205], + [139.0499757316325, 42.74371346443661], + [139.27497557224055, 43.07331078300331], + [140.39997477528036, 43.564400497117504], + [140.84997445649643, 43.564400497117504], + [141.31540412678189, 43.171175265998414] + ], + [ + [139.94997509406446, 41.23875232896668], + [139.61247533315233, 41.57626183009805], + [139.27497557224055, 42.079235618164205], + [139.27497557224055, 42.74371346443661], + [139.49997541284839, 43.07331078300331], + [140.39997477528036, 43.48282788090381], + [140.84997445649643, 43.48282788090381], + [141.31540412678189, 43.171175265998414] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "lazaro-cardenas-manzanillo-santiago-submarine-cable-system-lcmsscs", + "name": "Lazaro Cardenas-Manzanillo Santiago Submarine Cable System (LCMSSCS)", + "color": "#4cb748", + "feature_id": "lazaro-cardenas-manzanillo-santiago-submarine-cable-system-lcmsscs-0", + "coordinates": [-103.53391735089956, 18.05407066325256] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-102.19435336862126, 17.956784079019087], + [-102.14985340014547, 17.716802179008738], + [-101.8123536392335, 17.609605913225096], + [-101.61055378219038, 17.664117239853425] + ], + [ + [-104.30815187118662, 19.085789444146997], + [-104.28735188592155, 18.67864702215462], + [-103.9498521250095, 18.251816319028308], + [-103.04985276257753, 17.823934412537824], + [-102.59985308136154, 17.823934412537824], + [-102.19435336862126, 17.956784079019087] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "fibra-optica-al-pacfico", + "name": "Fibra Optica al Pacífico", + "color": "#7e3a96", + "feature_id": "fibra-optica-al-pacfico-0", + "coordinates": [-75.4377408454582, -15.911012613246953] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-76.87428130559798, -12.278420041799535], + [-77.39987093329539, -12.822995625629687], + [-77.39987093326538, -13.698987269610853], + [-76.04987188961734, -15.441023659568003], + [-73.79987348353733, -17.16855309422607], + [-72.44987443988929, -17.59799899615561], + [-71.32367523769945, -17.641173816666765] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "batam-sarawak-internet-cable-system-basics", + "name": "Batam Sarawak Internet Cable System (BaSICS)", + "color": "#939597", + "feature_id": "batam-sarawak-internet-cable-system-basics-0", + "coordinates": [107.24054688479251, 2.2124032492666004] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [110.29359610292167, 1.675048741325099], + [110.13749621350414, 1.918228780215685], + [109.57499661198418, 2.367912558705314], + [106.19999900286413, 2.143087178471944], + [104.73750003891215, 1.468426767332062], + [104.62500011860826, 1.369994553366951], + [104.28790035741284, 1.173518198634099], + [104.13310046707468, 1.173205764381919] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "eastern-light", + "name": "Eastern Light", + "color": "#944098", + "feature_id": "eastern-light-0", + "coordinates": [22.61855165919033, 59.731932505209926] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [18.062756752613467, 59.332308261070324], + [18.90006084695932, 59.451717318905224], + [20.25005989060736, 59.56588346342974], + [21.375059093647366, 59.6796637072089], + [22.725058137295406, 59.736409384078485], + [22.96675718482345, 59.82340942681512], + [23.175057818511476, 59.736409384078485], + [23.85005734033541, 59.736409384078485], + [24.4125569418554, 59.849612385021544], + [24.932478448538234, 60.17116346096182], + [25.20005638398345, 60.07486799642308], + [26.10005574641542, 60.07486799642308], + [26.775055268239356, 60.29859553499119], + [26.883648941310668, 60.50114056075515] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sorsogon-samar-submarine-fiber-optical-interconnection-project-sssfoip", + "name": "Sorsogon-Samar Submarine Fiber Optical Interconnection Project (SSSFOIP)", + "color": "#bf3b28", + "feature_id": "sorsogon-samar-submarine-fiber-optical-interconnection-project-sssfoip-0", + "coordinates": [124.22831176599172, 12.614974341566125] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [124.10708631731555, 12.645255061583299], + [124.2281112315803, 12.615395567393307], + [124.28238619313154, 12.501390118608668] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "manatua", + "name": "Manatua", + "color": "#de1f29", + "feature_id": "manatua-0", + "coordinates": [-162.21224462541835, -20.995131543025877] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-151.8748181745139, -17.383402005942372], + [-151.87481817451416, -16.953454989810012], + [-151.74951826327774, -16.506319370588244] + ], + [ + [-160.19981227700998, -20.995131543025877], + [-160.19981227700998, -20.15254378601884], + [-160.08731235670606, -19.30538407236122], + [-159.77491257801293, -18.825724826038964] + ], + [ + [-159.86231251669412, -20.995131543025877], + [-159.86231251669412, -21.100125697241367], + [-159.7697125816967, -21.22434283051234] + ], + [ + [-169.64980558254612, -18.026426383713385], + [-169.87480542315404, -18.453813775777263], + [-169.91670539347172, -19.016714981418488] + ], + [ + [-171.76669408292253, -13.833489255757883], + [-171.44980430741003, -13.698987269610853], + [-170.77480478558613, -13.698987269610853], + [-170.0998052637621, -14.135775375064753], + [-169.64980558254612, -15.006817032918917], + [-169.64980558254612, -18.026426383713385], + [-166.4998078152263, -18.880139975101287], + [-163.79980972733412, -20.995131543025877], + [-160.19981227700998, -20.995131543025877], + [-159.86231251669412, -20.995131543025877], + [-156.59981482728193, -20.57441905727606], + [-151.8748181745139, -17.383402005942372], + [-150.97481881208193, -17.383402005942372], + [-150.07481944965014, -17.919416202114803], + [-149.51231984812995, -17.919416202114803], + [-149.32331998201923, -17.75044654103135] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "malta-italy-interconnector", + "name": "Malta-Italy Interconnector", + "color": "#bf3b28", + "feature_id": "malta-italy-interconnector-0", + "coordinates": [14.565709909689161, 36.363815050467736] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [14.550263928396447, 36.784772286316525], + [14.625063875407335, 36.60275474032986], + [14.512563955103388, 36.14986678681771], + [14.458763993215797, 35.934055517066156] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "caribbean-regional-communications-infrastructure-program-carcip", + "name": "Caribbean Regional Communications Infrastructure Program (CARCIP)", + "color": "#a69b33", + "feature_id": "caribbean-regional-communications-infrastructure-program-carcip-0", + "coordinates": [-61.55578124830757, 12.669103176552909] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-61.32304895989587, 13.054150695298716], + [-61.26685736204357, 13.026751030444217], + [-61.244682377752454, 12.99754041050673] + ], + [ + [-61.3906322743602, 12.956082453283926], + [-61.278332353914564, 12.928720698349338], + [-61.18718241848596, 12.877712443605333] + ], + [ + [-61.448857233113074, 12.84262005691349], + [-61.39265727292572, 12.787673734344708], + [-61.33898231094953, 12.69962561864898] + ], + [ + [-61.53533217185351, 12.72891132912099], + [-61.478982211772404, 12.674135433811642], + [-61.443192784000885, 12.611394520710775] + ], + [ + [-61.59358213058863, 12.558545570699522], + [-61.53733217043667, 12.531043226499293], + [-61.47859314954795, 12.473742852030739] + ], + [ + [-61.59308347979395, 12.170910831959134], + [-61.477778438014084, 12.277222829820545], + [-61.53338217323487, 12.342743321766505], + [-61.58963213338683, 12.395734000022884], + [-61.59358213058863, 12.558545570699522], + [-61.53533217185351, 12.72891132912099], + [-61.448857233113074, 12.84262005691349], + [-61.3906322743602, 12.956082453283926], + [-61.32304895989587, 13.054150695298716], + [-61.20828240353856, 13.145460938850391] + ], + [ + [-61.142786746811325, 13.373112400304763], + [-61.199882409489234, 13.437424347113762], + [-61.25613236964119, 13.41001911215676], + [-61.24088238044452, 13.290916333074449] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "energinet-laeso-varberg", + "name": "Energinet Laeso-Varberg", + "color": "#373996", + "feature_id": "energinet-laeso-varberg-0", + "coordinates": [11.557203093552545, 57.105449150617744] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [10.88716652336899, 57.256997748271914], + [11.025066425679285, 57.17764775045606], + [11.70006594750339, 57.08606597586797], + [12.251265557028319, 57.10529657756172] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "energinet-lyngsa-laeso", + "name": "Energinet Lyngsa-Laeso", + "color": "#a74234", + "feature_id": "energinet-lyngsa-laeso-0", + "coordinates": [10.701035387650052, 57.22562397392139] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [10.514616787286627, 57.24491811100583], + [10.687566664767303, 57.22335372144116], + [10.88716652336899, 57.256997748271914] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "skagenfiber-west", + "name": "Skagenfiber West", + "color": "#2ab34a", + "feature_id": "skagenfiber-west-0", + "coordinates": [9.90006722263928, 58.336423287848476] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [10.016367140251418, 59.08111069751331], + [10.012567142943197, 58.93317132635269], + [9.90006722263928, 58.34773024524864], + [9.90006722263928, 57.812399750516676], + [9.959267180701602, 57.58818834277187] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pasuli", + "name": "PASULI", + "color": "#939597", + "feature_id": "pasuli-0", + "coordinates": [105.00346543425971, -2.1623603588707] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [104.87451166060183, -2.29534634931278], + [104.96249987952004, -2.187128507840782], + [105.1642597365915, -2.065142653434521] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sjjk", + "name": "SJJK", + "color": "#32499f", + "feature_id": "sjjk-0", + "coordinates": [113.7186194342261, -4.956509167211948] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [112.59819447032245, -6.953337827182054], + [112.49999453988826, -6.641483533889414], + [112.49999453988826, -6.39309949782384], + [112.89374426095222, -5.833801119425374], + [112.83749430080022, -5.777839699209608], + [112.58559447924856, -5.793509456683637] + ], + [ + [114.66674769244, -3.882827780552503], + [114.0749934241442, -4.377144375531941], + [113.84999358353613, -4.825692499217524], + [112.94999422110416, -5.721872747834027], + [112.83749430080022, -5.721872747834027], + [112.58559447924856, -5.793509456683637] + ], + [ + [105.58496037606338, -5.769333077764941], + [105.69374936149612, -6.001651664913879], + [105.88389922679218, -6.073710601062686] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "link-5-phase-2", + "name": "Link 5 Phase-2", + "color": "#c82026", + "feature_id": "link-5-phase-2-0", + "coordinates": [105.0899856959658, -0.953859025087695] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [103.48820092392756, -0.823472321509598], + [103.95000059678412, -0.781386636225506], + [104.40000027800002, -0.781386636225506], + [105.74999932164823, -1.118839506905204], + [106.08749908256002, -1.343787247896245], + [106.19999900286413, -1.681168935905106], + [106.13251858191788, -1.851497937336347] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "link-4-phase-2", + "name": "Link 4 Phase-2", + "color": "#32499f", + "feature_id": "link-4-phase-2-0", + "coordinates": [106.94530716809211, -2.5337266678270964] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [106.13251858191788, -1.851497937336347], + [106.31249892316825, -1.79361712035498], + [106.81974856382791, -2.130918480960247], + [107.0999983652961, -3.029995968008762], + [107.32499820590417, -3.254657364797595], + [107.54999804651217, -3.254657364797595], + [107.69638466156053, -3.195961467831239] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "link-3-phase-2", + "name": "Link 3 Phase-2", + "color": "#32499f", + "feature_id": "link-3-phase-2-0", + "coordinates": [107.3886770593571, -4.698732969990715] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [107.0999983652961, -5.273944363641391], + [107.12099835041957, -5.981154260263196] + ], + [ + [107.69638466156053, -3.195961467831239], + [107.66249796681612, -3.479268678969987], + [107.43749812620823, -4.601453764837203], + [107.0999983652961, -5.273944363641391], + [106.83339855415792, -6.128964849210604] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "link-2-phase-2", + "name": "Link 2 Phase-2", + "color": "#4a499e", + "feature_id": "link-2-phase-2-0", + "coordinates": [114.24409282969995, -8.929573210379402] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [113.45679386208272, -8.374087789277866], + [113.6249937429283, -8.623660111129396], + [114.2999932647522, -8.957195081743208], + [114.97499278657611, -8.957195081743208], + [115.15985265561974, -8.783705413994738] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "link-1-phase-2", + "name": "Link 1 Phase-2", + "color": "#5a9f43", + "feature_id": "link-1-phase-2-0", + "coordinates": [115.67268185049087, -8.623660111129396] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [115.25956289748419, -8.69510191560289], + [115.53749238809613, -8.623660111129396], + [115.8749921490083, -8.623660111129396], + [116.04726202697086, -8.485465010786783] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "link-3-phase-1", + "name": "Link 3 Phase-1", + "color": "#5a9f43", + "feature_id": "link-3-phase-1-0", + "coordinates": [116.81114646890248, -7.955717094334744] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [116.04726202697086, -8.485465010786783], + [116.0437420294642, -8.401139048122928], + [116.09999198961614, -8.17849027894485], + [116.54999167083221, -7.955717094334744], + [117.44999103326418, -7.955717094334744], + [117.86151417923728, -8.108113429686256] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "link-2-phase-1", + "name": "Link 2 Phase-1", + "color": "#5a9f43", + "feature_id": "link-2-phase-1-0", + "coordinates": [118.62829725367507, -0.13306273837292792] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [117.53549097269544, 0.3245436533999], + [117.89999071448025, 0.231087797340564], + [119.2499897581283, -0.443906656918472], + [119.66610274459995, -0.711958991791477] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "link-1-phase-1", + "name": "Link 1 Phase-1", + "color": "#37b19b", + "feature_id": "link-1-phase-1-0", + "coordinates": [119.05234026140161, -7.0359837894711745] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [117.86151417923728, -8.108113429686256], + [118.34999039569615, -7.732822794391694], + [119.47498959873613, -6.616650693475464], + [119.58748951904025, -6.169450529574419], + [119.80928936191529, -5.669034918116978] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "prat", + "name": "Prat", + "color": "#18b199", + "feature_id": "prat-0", + "coordinates": [-71.96746334125407, -30.53200949880093] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-72.95341123369906, -41.460374244790415], + [-73.34987380232134, -41.60922308603497], + [-73.79987348353733, -41.641926259541066], + [-74.2498731647534, -41.39859245412438], + [-74.2498731647534, -40.54922829806904], + [-73.79987348413331, -39.919423868282905], + [-73.24583387662014, -39.81388745904346], + [-73.57487364352536, -39.39977988677472], + [-73.56836364813708, -39.15216193718996], + [-73.39677376969296, -38.78712693980813], + [-73.57487364352536, -38.70085673739973], + [-73.79987348413331, -38.34880601117126], + [-73.79987348353733, -37.04328040742419], + [-73.57487364352536, -36.863477581370745], + [-73.11696381106697, -36.724746633522955], + [-73.12487396171339, -35.95811819864912], + [-72.89987412170134, -35.47096027456567], + [-72.4160644644366, -35.318374761635], + [-72.44987444048536, -34.734661512708556], + [-72.22487459987732, -33.9917435564351], + [-71.61306503328898, -33.58364852694362], + [-71.77487491806535, -33.36763676394733], + [-71.62043502747201, -33.0455412324782], + [-71.77487491806535, -31.851465665577166], + [-71.99987475867339, -30.309953344646914], + [-71.54987507745732, -29.92069711126888], + [-71.25021708661282, -29.906307231590603], + [-71.54987507745732, -29.529912966149226], + [-71.77487491866134, -28.74381028114999], + [-71.5498750780533, -27.420446776433664], + [-70.81235560051896, -27.061994602084383], + [-71.09987539683732, -26.215682285093067], + [-71.09987539624133, -24.31670674946909], + [-70.76237563532928, -23.905969261790176], + [-70.39997354830841, -23.65002363064994], + [-70.76237563532928, -23.493922445897766], + [-70.76237563592535, -22.94251974031627], + [-70.64987571562133, -22.52748528666686], + [-70.19765603597794, -22.08837968437996], + [-70.64987571562133, -21.274950941109722], + [-70.64987571562133, -20.855024450960002], + [-70.14221005903548, -20.216704864852915], + [-70.64987571562133, -19.588268775768398], + [-70.64987571502535, -19.30538407236122], + [-70.3067559580946, -18.473543073651314] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "ultramar-ge", + "name": "Ultramar GE", + "color": "#41b87b", + "feature_id": "ultramar-ge-0", + "coordinates": [6.401350083724907, -0.6166957139394924] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [6.733269466028645, 0.333286471885856], + [6.875069365576195, 0.118588418888407], + [6.750069454127299, -0.331409329660175], + [5.650070233377079, -1.231315750217505], + [5.63687024272798, -1.435160298356124] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "singapore-myanmar-sigmar", + "name": "Singapore-Myanmar (SIGMAR)", + "color": "#34a496", + "feature_id": "singapore-myanmar-sigmar-0", + "coordinates": [97.3732174735973, 7.656761037671288] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [96.2482060528076, 16.758772278045996], + [96.44170591573064, 14.833379080264962], + [96.75000569732802, 11.294709319565555], + [97.42500521915215, 7.354454266299882], + [99.4500037846241, 5.286069860821101], + [100.12500330644806, 4.613591578862867], + [100.80000282827214, 3.266814816815753], + [101.25000250948804, 2.817450442654064], + [102.15000187192001, 2.199296754027785], + [102.68279723997185, 1.783118248528041], + [103.34065102845304, 1.383978004153676], + [103.50000091556822, 1.28531735946305], + [103.6471008113613, 1.338165966949504] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "polar-circle-cable", + "name": "Polar Circle Cable", + "color": "#51b847", + "feature_id": "polar-circle-cable-0", + "coordinates": [13.003013674052, 66.312054201844] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [10.392059061607597, 63.43100204742538], + [10.293816943703206, 63.475978110242664], + [9.90006722263928, 63.5010867925096], + [9.843817262487306, 63.576280591644036], + [9.675067382031244, 63.676208784313815], + [9.506323501571046, 63.67623095645985], + [9.45006754142321, 63.72607438667927], + [9.45006754142321, 63.82549832634285], + [9.618817421879271, 63.9245724837925], + [9.90006722263928, 64.12167519439029], + [10.237566983551233, 64.31739001144422], + [10.462566824159268, 64.46326983353543], + [10.80006658507125, 64.53591955943637], + [11.025066425679285, 64.70468599661166], + [11.237370962780744, 64.86207950442943], + [11.475066106895355, 64.96778031868584], + [11.70006594750339, 65.01533984410813], + [11.925065788111255, 65.13386892664585], + [12.207765587844165, 65.47355705315002], + [12.178190608795347, 65.55616358500063], + [12.262565549023208, 65.6259608208081], + [12.543815349783216, 65.83404693088383], + [12.631465287691299, 66.02153874887077], + [12.768815190391422, 66.1544195909438], + [13.0182650136789, 66.19806628775794], + [12.993815030999286, 66.3808044991722], + [13.05006499115126, 66.44832399589339], + [12.937565070847313, 66.56045213116752], + [13.05006499115126, 66.7165854620128], + [13.50006467236733, 66.95995474248622], + [13.9500643535834, 67.13543790495441], + [14.4000640347993, 67.2860055353949], + [14.512563955103388, 67.4394931950778], + [14.906313676167343, 67.61151472096557], + [15.131313516775379, 67.65432532704776], + [15.356313357383414, 67.78229156045435], + [15.581313197991449, 67.90956187665077], + [15.887562981041043, 67.97293705344714], + [16.143812799511437, 68.05716856580699], + [16.171887779622978, 68.1411682869288], + [16.127072811370283, 68.22074777678267], + [16.06516285522781, 68.28972225489503], + [16.152422793411944, 68.36187412811796], + [16.31256267996733, 68.38642806305168], + [16.66881242759669, 68.4173574082686], + [17.073261876821988, 68.4078545509303], + [17.560022733754863, 68.42054850557756] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tverrlinken", + "name": "Tverrlinken", + "color": "#1bbaae", + "feature_id": "tverrlinken-0", + "coordinates": [13.563638846080806, 66.26218454683192] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [13.018229076204165, 66.19806628775794], + [13.05006499115126, 66.24521776261767], + [13.218814871607321, 66.290494626255], + [13.387564752063213, 66.31310255415389], + [13.563638846080806, 66.29296835834745], + [13.563638846080806, 66.24773433541898], + [13.624478646731319, 66.22416306028722], + [13.781314473127338, 66.25652447701611], + [13.9500643535834, 66.25652447701611], + [14.141958748893472, 66.31371064643912] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "national-digital-transmission-network-ndtn", + "name": "National Digital Transmission Network (NDTN)", + "color": "#a3492e", + "feature_id": "national-digital-transmission-network-ndtn-0", + "coordinates": [122.22013011901967, 10.321516903939624] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [122.43363382518382, 10.425900114515514], + [122.56210741119705, 10.720150965231483] + ], + [ + [121.0501884828507, 12.363012914770593], + [121.04998848299223, 11.735650161405744], + [121.2749883236003, 11.294709319565555], + [121.4999881642083, 10.410816505402636], + [121.94998784542437, 10.18944276650771], + [122.43363382518382, 10.425900114515514], + [122.28748760633616, 9.96791518697421], + [122.28748760633616, 9.524411345019587], + [122.84998720785634, 8.858082310478125], + [123.1874869687683, 8.858082310478125], + [123.29998688907224, 9.08033076823304], + [123.28143690221336, 9.295503918748068] + ], + [ + [121.61229277215065, 13.935275186648965], + [121.72498800481614, 13.492128176464178], + [121.83748792512026, 13.054150695298716], + [121.83748792512026, 12.725155923562937], + [121.72498800481614, 12.395734000022884], + [121.38748824390436, 12.230866087669114], + [121.0501884828507, 12.363012914770593] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "rnne-rdvig", + "name": "Rønne-Rødvig", + "color": "#2aaf8a", + "feature_id": "rnne-rdvig-0", + "coordinates": [13.533267873522249, 55.113215716596756] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.371865471594333, 55.256124793284926], + [12.825065150543395, 55.14215100378169], + [14.4000640347993, 55.07780072164758], + [14.708363816396854, 55.101035976100604] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "chennai-andaman-nicobar-islands-cable", + "name": "Chennai-Andaman & Nicobar Islands Cable", + "color": "#b0c435", + "feature_id": "chennai-andaman-nicobar-islands-cable-0", + "coordinates": [86.7274583214336, 12.31494911385849] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [92.72647339138612, 11.6233755892342], + [92.81250848668802, 11.294709319565555], + [92.250008885168, 11.073982781226704], + [89.10001111665602, 11.735650161405744], + [83.70001494206386, 13.054150695298716], + [81.45001653598385, 12.834868817846598], + [80.2429873910547, 13.063853101883296] + ], + [ + [92.91387560237851, 12.506922878216642], + [92.92360298633176, 12.45624046231191], + [92.9350669936164, 12.396497036071935], + [92.98750836271651, 12.17588718550806], + [92.98760601889737, 11.976015925931847], + [92.8707584454232, 11.735650161405744], + [92.72647339138612, 11.6233755892342], + [92.86875844683996, 11.294709319565555], + [92.75625852653607, 10.853089690745378], + [92.59717660798114, 10.709095116735966], + [92.7000085663839, 10.410816505402636], + [92.92500840699213, 9.524411345019587], + [92.81641473392077, 9.177521361414023], + [93.03750832729602, 9.08033076823304], + [93.31875812805603, 8.301880168760817], + [93.48145332530132, 8.172274246767415], + [93.40638306598177, 8.079175518240902], + [93.45958302829436, 7.967776882259614], + [93.54375796866393, 7.856347922592533], + [93.937507689728, 7.298762754459602], + [93.92744910310356, 7.031336722040379] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "dunant", + "name": "Dunant", + "color": "#ab7a2b", + "feature_id": "dunant-0", + "coordinates": [-38.534447291567545, 38.59180890843825] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-1.968324369680687, 46.69399663348955], + [-2.699923851408727, 46.58235508209589], + [-5.399921938704722, 46.58235508209589], + [-9.899918750864742, 46.272182853813746], + [-16.199914287888873, 45.33107107332478], + [-23.39990918734489, 42.74371346443661], + [-39.59989771112103, 38.29952060596935], + [-50.39989006030518, 37.41128363492314], + [-61.199882409489234, 37.58978657360316], + [-72.44987443988929, 37.232354321556215], + [-74.69987284596938, 36.72307894944538], + [-76.05919805488558, 36.755008440642456] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "gulf-of-california-cable", + "name": "Gulf of California Cable", + "color": "#939597", + "feature_id": "gulf-of-california-cable-0", + "coordinates": [-109.82192082171117, 24.990270773742253] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-110.30544762264611, 24.102536621844706], + [-110.13734774172961, 24.532657566160623], + [-109.57484814020961, 25.348717422116806], + [-109.0503485117701, 25.600681534740346] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "maple-leaf-fibre", + "name": "Maple Leaf Fibre", + "color": "#939597", + "feature_id": "maple-leaf-fibre-0", + "coordinates": [-77.82843579220533, 43.72721479104973] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-79.38531972876184, 43.644625404178896], + [-78.74986997691342, 43.72721479104973], + [-77.06237117235341, 43.72721479104973], + [-76.72487141144136, 43.889587736299546], + [-76.61237149113734, 44.051519228735145], + [-76.47937158535576, 44.23157012407103] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "coral-sea-cable-system-cs", + "name": "Coral Sea Cable System (CS²)", + "color": "#3c4b9f", + "feature_id": "coral-sea-cable-system-cs-0", + "coordinates": [155.40559836145107, -21.18378787673899] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [157.19068553683346, -8.242089438962438], + [157.27496282088057, -7.955717094334744], + [157.38746274118452, -7.732822794391694] + ], + [ + [156.39586188114404, -6.708991470563916], + [156.59996329905667, -7.286684094287295], + [157.38746274118452, -7.732822794391694], + [158.3999620239206, -8.06711903252912], + [159.74996106756865, -8.901626855396557], + [159.94976092602863, -9.429053646438376] + ], + [ + [160.70132758111177, -8.774637297685615], + [160.64996043000062, -9.179382545871192], + [160.53746050969667, -9.290424301035614], + [160.19996074878455, -9.290424301035614], + [159.94976092602863, -9.429053646438376] + ], + [ + [154.79996457419256, -15.441023659568003], + [152.09996648689648, -14.135775375064753], + [148.49996903716843, -11.50333384598423], + [147.2624699138245, -10.177457430361159], + [147.1885196909836, -9.479589292697398] + ], + [ + [151.20699836948356, -33.86955536437554], + [152.09996648689648, -33.36763676394733], + [154.3499648929765, -31.851465665577166], + [155.69996393662453, -28.74381028114999], + [155.69996393662453, -25.5408960762594], + [155.24996425540863, -18.880139975101287], + [154.79996457419256, -15.441023659568003], + [157.04996298027257, -11.943944931746927], + [159.18746146604863, -10.177457430361159], + [159.29996138635258, -9.734235342300764], + [159.24376142616532, -9.290424301035614], + [159.52496122696058, -9.012754814881703], + [159.74996106756865, -9.012754814881703], + [159.94976092602863, -9.429053646438376] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "malbec", + "name": "Malbec", + "color": "#b13885", + "feature_id": "malbec-0", + "coordinates": [-49.04790358181043, -32.87518112808766] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-43.209565153998795, -22.903486555497864], + [-43.649894842065066, -23.905969261790176], + [-44.99989388571311, -24.521579207604788], + [-46.12489308875311, -25.13418654706126] + ], + [ + [-46.41249054126638, -24.00886625539158], + [-46.12489308875311, -25.13418654706126] + ], + [ + [-46.12489308875311, -25.13418654706126], + [-46.34989292936115, -27.951747285219852], + [-48.59989133544116, -32.61276000573585], + [-53.99988751003313, -35.775783044315574], + [-56.69544224110189, -36.47097855291446] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "st-pierre-and-miquelon-cable", + "name": "St. Pierre and Miquelon Cable", + "color": "#63ae45", + "feature_id": "st-pierre-and-miquelon-cable-0", + "coordinates": [-56.18893456436548, 47.06659226124515] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-55.83589977066387, 47.07196443816753], + [-56.13738599580921, 47.12091150337983], + [-56.19363595596117, 47.12087748071977], + [-56.34988584527227, 47.083686216782894], + [-56.19363595596117, 47.08262225469679], + [-56.137335995844595, 46.890660369874894], + [-56.18058596520585, 46.775830298450956], + [-55.968636115353135, 46.813826285336035], + [-55.80328623248853, 46.868958275284484] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sea2shore", + "name": "sea2shore", + "color": "#50c2bc", + "feature_id": "sea2shore-0", + "coordinates": [-71.50328331663817, 41.30829079074047] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-71.593675046429, 41.191963141608795], + [-71.49162511872218, 41.323294052209405], + [-71.44277515332791, 41.441393468408165] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "glo-2", + "name": "Glo-2", + "color": "#939597", + "feature_id": "glo-2-0", + "coordinates": [5.169196734626581, 3.629637645031181] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [7.178469150645043, 4.429366914918262], + [7.200069135343199, 3.940475772228723], + [7.200069135343199, 3.491423322320486] + ], + [ + [3.423511810692077, 6.439066911484701], + [4.275071207439254, 4.164912849976844], + [5.400070410479259, 3.491423322320486], + [7.200069135343199, 3.491423322320486], + [7.650068816559269, 3.715978119297972], + [7.997468570458267, 4.543815029306955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "nordbalt", + "name": "NordBalt", + "color": "#7b439a", + "feature_id": "nordbalt-0", + "coordinates": [18.28746856397302, 55.716652093821665] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [15.908662966093914, 56.74380010331279], + [16.087562839359293, 56.59379297841909], + [16.20006275966341, 56.345222926819986], + [16.31256267996733, 56.03221697111684], + [17.325061962703415, 55.71665209382169], + [20.475059731215396, 55.71665209382169], + [21.14995925311044, 55.69574860959892] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "southeast-asia-japan-cable-2-sjc2", + "name": "Southeast Asia-Japan Cable 2 (SJC2)", + "color": "#939597", + "feature_id": "southeast-asia-japan-cable-2-sjc2-0", + "coordinates": [120.11959543017579, 20.262399360871058] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [126.22498481697616, 25.55188275942578], + [123.74998657028831, 25.653336613275968], + [122.84998720785634, 25.754704263415306], + [121.94998784542437, 25.653336613275968], + [121.48768817292179, 25.181626281877442] + ], + [ + [128.24998338244833, 28.359233526108653], + [127.12498417940836, 29.540507745394393], + [125.77498513576032, 30.320465424761352], + [124.64998593272028, 30.901396088515583], + [122.84998720785634, 31.28673881439167], + [122.17498768603221, 31.142418511463745], + [121.89608788360775, 30.93566174731481] + ], + [ + [129.59998242609637, 28.75448641587161], + [129.37498258548837, 30.901396088515583], + [129.1499827448803, 31.67051304708704], + [129.26248266518442, 32.81231878328768], + [129.37498258548837, 34.31215165223537], + [128.99948285149597, 35.17030187110507] + ], + [ + [138.59997605041642, 32.052708023486105], + [137.69997668798445, 33.09551711711572], + [136.87399727311598, 34.33682825203164] + ], + [ + [100.59697562834847, 7.078508072193671], + [101.70000219070411, 7.410337121715031], + [103.04883123518098, 7.451587710516492], + [105.29999964043216, 6.181557032537114], + [107.0999983652961, 4.837826391986653] + ], + [ + [112.94999422110416, 12.615395567393307], + [111.59999517745612, 13.273238157547667], + [110.02499629320002, 13.710817738179543], + [109.21959686375268, 13.782910441432165] + ], + [ + [120.14998912056026, 20.26954403592967], + [120.48748888147222, 21.635297384859456], + [120.66208875778412, 22.24916819612369] + ], + [ + [114.74999294596827, 18.251816319028308], + [114.2999932647522, 20.796306105108954], + [114.20309333339699, 22.222140388552646] + ], + [ + [103.98701228931466, 1.389451396800126], + [104.19209042528556, 1.27648207407276], + [104.28790035741284, 1.327893755020796], + [104.4565502379397, 1.468426767332062], + [104.84999995921609, 2.817450442654064], + [105.74999932164823, 4.052702097268195], + [107.0999983652961, 4.837826391986653], + [107.99999772772824, 5.510071711803135], + [110.69999581502415, 7.744889052551343], + [111.93749493836825, 9.96791518697421], + [112.94999422110416, 12.615395567393307], + [114.74999294596827, 18.251816319028308], + [116.99999135204828, 19.529070924351004], + [120.14998912056026, 20.26954403592967], + [121.04998848299223, 20.375041253465525], + [122.84998720785634, 20.901439785237727], + [124.87498577332835, 22.05298561667763], + [125.77498513576032, 24.12261698700334], + [126.22498481697616, 25.55188275942578], + [126.67498449819223, 26.159307970773796], + [128.24998338244833, 28.359233526108653], + [129.59998242609637, 28.75448641587161], + [131.39998115096031, 29.049948644465616], + [134.99997860068837, 30.126049846722907], + [136.79997732555248, 30.901396088515583], + [138.59997605041642, 32.052708023486105], + [139.0499757316325, 32.43331330641712], + [139.7249752534564, 33.93964008831958], + [139.94997509406446, 34.40502275071583], + [139.95467509073487, 34.9767277606654] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "no-uk", + "name": "NO-UK", + "color": "#939597", + "feature_id": "no-uk-0", + "coordinates": [2.5506646059114644, 56.57725054446959] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-1.474424719563785, 55.08361265840864], + [-0.899925126544701, 55.33458061322915], + [0.900073598319238, 55.84318584148099], + [2.534972440141729, 56.549192472345595], + [3.375071845007284, 58.05131589106017], + [4.050071366831219, 58.641677771384906], + [5.175070569871224, 58.8750683108978], + [5.512570330783177, 58.99117670269845], + [5.730770176208466, 58.97082148666851] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sakhalin-kuril-islands-cable", + "name": "Sakhalin-Kuril Islands Cable", + "color": "#c1b230", + "feature_id": "sakhalin-kuril-islands-cable-0", + "coordinates": [146.9626603754605, 45.57302306563193] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [142.7262426585804, 46.94899298742823], + [143.4374726234884, 47.04430546733278], + [145.57497110926445, 46.272182853813746], + [147.59996967473646, 45.25192738121436], + [147.88151244403892, 45.086689968098796], + [147.59996967473646, 45.172673246984374], + [147.05997005727735, 45.03772308017787], + [146.75634527236807, 44.694829089578064], + [146.6999703123045, 44.37405751055866], + [146.24997063108842, 44.051519228735145], + [145.8585646583641, 44.03453155100814], + [146.24997063108842, 43.889587736299546], + [146.74723590382106, 43.79361974189811] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "meltingpot-indianoceanic-submarine-system-metiss", + "name": "Meltingpot Indianoceanic Submarine System (METISS)", + "color": "#69bd45", + "feature_id": "meltingpot-indianoceanic-submarine-system-metiss-0", + "coordinates": [44.94191055148988, -26.361278448096442] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [54.000035981807684, -20.57441905727606], + [54.450035663023755, -20.679706953509026], + [54.900035344239626, -20.890063499753126], + [55.30323505860932, -20.944427907258927] + ], + [ + [46.98534095108366, -25.022510261484882], + [47.250040763567654, -25.337712186601237], + [47.700040444783724, -25.5408960762594] + ], + [ + [30.90155234499045, -30.02161828745679], + [32.40005128343955, -29.92069711126888], + [38.70004682046351, -27.553513996438255], + [45.000042357487644, -26.350174904573805], + [47.700040444783724, -25.5408960762594], + [49.050039488431565, -24.7261180292069], + [51.750037575727674, -23.08058350574774], + [53.550036300591586, -20.995131543025877], + [54.000035981807684, -20.57441905727606], + [54.900035344239626, -20.15254378601884], + [55.800034706671596, -20.15254378601884], + [56.700034069103765, -20.046895587328578], + [57.49513350584786, -20.12212441603404] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "java-bali-cable-system-jbcs", + "name": "Java Bali Cable System (JBCS)", + "color": "#9b3794", + "feature_id": "java-bali-cable-system-jbcs-0", + "coordinates": [114.42270747463047, -8.37620604082781] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [114.3103932573849, -8.448027546855428], + [114.47074314379151, -8.345488699899732], + [114.52729310373101, -8.294580235998978] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "jakarta-surabaya-cable-system-jayabaya", + "name": "Jakarta Surabaya Cable System (JAYABAYA)", + "color": "#4b3c97", + "feature_id": "jakarta-surabaya-cable-system-jayabaya-0", + "coordinates": [110.10010340348808, -6.867191961808345] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [107.12099835041957, -5.981154260263196], + [107.32499820590417, -5.833801119425374], + [107.54999804651217, -5.833801119425374], + [108.44999740894414, -6.169450529574419], + [108.6749972495522, -6.39309949782384], + [108.6749972495522, -6.56077224456368], + [108.5573442550797, -6.7166534198806], + [108.7874971698561, -6.616650693475464], + [109.79999645259218, -6.616650693475464], + [110.02499629320002, -6.730871350313521], + [110.18788680280707, -7.026520241492761], + [110.24999613380825, -6.730871350313521], + [110.69999581502415, -6.281287025048499], + [111.37499533684829, -6.169450529574419], + [112.16249477897614, -6.39309949782384], + [112.61249446019221, -6.616650693475464], + [112.71972094673194, -7.271863121195906] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "southern-cross-next", + "name": "Southern Cross NEXT", + "color": "#939597", + "feature_id": "southern-cross-next-0", + "coordinates": [-152.73512862838317, 11.457182090784272] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [179.34974953238176, -16.80801177359578], + [179.09994735985677, -17.16855309422607], + [179.09994735985677, -17.705202172686143], + [179.32494720046478, -18.880139975101287], + [179.54994704107284, -19.30538407236122] + ], + [ + [178.43822782862517, -18.12306964099227], + [178.6499476786407, -18.880139975101287], + [179.09994735985677, -19.72952545002093] + ], + [ + [-171.44980430741032, -9.290424301035614], + [-171.67480414801807, -9.290424301035614], + [-171.81150405117864, -9.174626307490229] + ], + [ + [-157.42781424071944, 1.872154031030135], + [-157.72481403032197, 2.817450442654064], + [-158.84981323336194, 4.164912849976844], + [-160.19981227700998, 5.061986954416028] + ], + [ + [-179.99979825051417, -18.880139975101287], + [-177.2998001632181, -16.738110438702392], + [-175.49980143835418, -14.57172649133264], + [-173.92480255409808, -11.943944931746927], + [-172.79980335105827, -11.06203210990941], + [-171.67480414801807, -10.620064860363328], + [-171.44980430741032, -9.290424301035614], + [-169.19980590133002, -4.825692499217524], + [-162.89981036430618, 2.367912558705314], + [-160.19981227700998, 5.061986954416028], + [-159.29981291457804, 5.957818681088611], + [-138.5998275786418, 23.298598065875808], + [-127.79983522945773, 28.55704546571141], + [-120.59984033000163, 33.18971466460036], + [-118.79984160513769, 33.89296086026752], + [-118.2453498104448, 34.053596693794645] + ], + [ + [173.69995118526478, -24.7261180292069], + [175.04995022891282, -30.309953344646914], + [175.5057116247971, -33.348019756446746], + [174.9374503086087, -36.14003339129533], + [174.99370026876065, -36.5929784279503], + [174.77324144056072, -36.78413802465403] + ], + [ + [151.1962571270927, -33.9135716055703], + [152.09996648689648, -33.92953699245888], + [154.80007176467663, -32.61276000573585], + [160.64996043000062, -31.468437004267116], + [166.49995628580868, -27.951747285219852], + [173.69995118526478, -24.7261180292069], + [178.19994799742463, -20.57441905727606], + [179.09994735985677, -19.72952545002093], + [179.54994704107284, -19.30538407236122], + [179.99994672228874, -18.880139975101287] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "havfrueaec-2", + "name": "Havfrue/AEC-2", + "color": "#30aa9f", + "feature_id": "havfrueaec-2-0", + "coordinates": [-32.133407561101365, 50.019286209842136] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [7.996258571315195, 58.15106571642474], + [7.875068657167304, 57.93205658695149], + [6.300069772911229, 57.571890279005004], + [4.500071048047289, 57.571890279005004] + ], + [ + [-74.06286329723287, 40.15283384719578], + [-71.09987539624133, 40.55848045058687], + [-68.39987730894534, 41.23875232896668], + [-61.199882409489234, 42.41235450073577], + [-50.39989006030518, 44.694829089578064], + [-39.59989771112103, 47.50228998113275], + [-23.39990918734489, 52.963398105593654], + [-16.199914287888873, 55.07780072164758], + [-8.999919388432772, 58.99117670269845], + [-5.399921938704722, 59.6796637072089], + [-1.799924488976671, 59.451717318905224], + [1.800072960751208, 58.52439396084483], + [4.500071048047289, 57.571890279005004], + [5.400070410479259, 56.717468482041056], + [6.300069772911229, 56.22032688484515], + [7.200069135343199, 55.84318584148099], + [7.650068816559269, 55.779970327098255], + [8.329168335478954, 55.75165023178093] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "havfrueaec-2", + "name": "Havfrue/AEC-2", + "color": "#939597", + "feature_id": "havfrueaec-2-1", + "coordinates": [-12.851910827821143, 54.83745221210867] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-16.199914287888873, 55.07780072164758], + [-12.599916838160823, 54.81936191424907], + [-10.799918113296798, 54.165971787151676], + [-10.349918432080813, 53.901684726074365], + [-9.696518894955119, 53.770801861757974] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "damai-cable-system", + "name": "DAMAI Cable System", + "color": "#813e97", + "feature_id": "damai-cable-system-0", + "coordinates": [100.32496780231551, 2.472045411688214] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [98.67598433294691, 3.752031394331624], + [98.88750418310408, 3.828234303320954], + [99.45000378402821, 3.64113270007644], + [99.78750354553605, 3.266814816815753], + [100.35000314705607, 2.817450442654064], + [100.31333654252106, 2.452337743745375], + [100.46250306736002, 2.705081160335851], + [100.57500298766413, 2.705081160335851], + [101.25000250948804, 2.425986659073317], + [101.75825214943936, 2.143087178471944], + [101.87075206974325, 1.976445096071245], + [101.7281271707802, 1.805588379583355], + [101.44766236946415, 1.665522797277134] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "japan-guam-australia-south-jga-s", + "name": "Japan-Guam-Australia South (JGA-S)", + "color": "#944b9d", + "feature_id": "japan-guam-australia-south-jga-s-0", + "coordinates": [162.37709844199074, -8.256673286188146] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [157.94996234270454, -25.5408960762594], + [153.8999652117606, -26.55162080165701], + [153.08946578592602, -26.65185387937018] + ], + [ + [144.69469829535794, 13.464777824932952], + [144.8156466471772, 13.273238157547667], + [145.34997126865645, 12.834868817846598], + [146.24997063108842, 12.17588718550806], + [147.14996999352056, 11.95585820711483], + [149.39996839960057, 10.853089690745378], + [151.1999671244645, 9.524411345019587], + [152.99996584932862, 8.190543417795567], + [155.24996425540863, 4.164912849976844], + [156.59996329905667, -0.331409329660175], + [157.7249625020967, -3.029995968008762], + [159.29996138635258, -4.825692499217524], + [161.5499597924326, -6.616650693475464], + [162.44995915486456, -8.401139048122928], + [162.89995883608063, -10.177457430361159], + [161.99995947364866, -13.698987269610853], + [159.29996138635258, -18.880139975101287], + [157.94996234270454, -25.5408960762594], + [156.59996329905667, -28.74381028114999], + [154.54016356638905, -31.851465665577166], + [152.09996648689648, -33.461541290548496], + [151.27398707202818, -33.76116106060903] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "japan-guam-australia-north-jga-n", + "name": "Japan-Guam-Australia North (JGA-N)", + "color": "#5bba4d", + "feature_id": "japan-guam-australia-north-jga-n-0", + "coordinates": [139.81180398582964, 23.8145115470694] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [144.69469829535794, 13.48913559272836], + [144.34997197706534, 14.042738209008093], + [143.77497238440057, 15.23578178303569], + [143.09997286257644, 16.965102599435824], + [140.84997445649643, 21.635297384859456], + [139.27497557224055, 24.941363171753835], + [139.0499757316325, 27.763588526057674], + [139.27497557224055, 30.901396088515583], + [139.61247533315233, 32.43331330641712], + [139.61247533315233, 33.93964008831958], + [139.66872529330445, 34.40502275071583], + [139.8401751718479, 35.04297888770938] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tonga-domestic-cable-extension-tdce", + "name": "Tonga Domestic Cable Extension (TDCE)", + "color": "#e11e25", + "feature_id": "tonga-domestic-cable-extension-tdce-0", + "coordinates": [-174.93558692339224, -19.727367489131723] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-174.93730183683417, -19.72952545002093], + [-174.5998020759221, -19.72952545002093], + [-174.3521422513667, -19.81379624685283] + ], + [ + [-173.98368505307081, -18.65921570866675], + [-174.26230231501015, -18.880139975101287], + [-174.93730183683417, -19.72952545002093], + [-175.1623016774422, -20.57441905727606], + [-175.20000165073517, -21.13346565929308] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "paniolo-cable-network", + "name": "Paniolo Cable Network", + "color": "#eb2d24", + "feature_id": "paniolo-cable-network-0", + "coordinates": [-159.0244435640541, 21.437225127981492] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-156.44000048737098, 20.66359808291429], + [-156.26231506636998, 20.48046637597571], + [-155.98106587237416, 20.26954403592967], + [-155.8314059821754, 20.039988105686604] + ], + [ + [-157.66890586680287, 21.272011061320086], + [-157.4998141897139, 21.111485983488905], + [-157.16231442880195, 21.00649984517682], + [-157.0238851072874, 21.093359005003947], + [-156.82481466789, 21.00649984517682], + [-156.68448273605244, 20.900892404445557] + ], + [ + [-159.72421261392935, 21.97028767315794], + [-159.63731267549, 21.84429407917378], + [-158.84981323336194, 21.32123529551194], + [-158.39981355214616, 21.32123529551194], + [-158.22066328843272, 21.463446823448095] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bodo-rost-cable", + "name": "Bodo-Rost Cable", + "color": "#395eab", + "feature_id": "bodo-rost-cable-0", + "coordinates": [13.223634135474441, 67.33614800460242] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.070165685321228, 67.50255969476498], + [12.15006562871929, 67.4394931950778], + [13.9500643535834, 67.2662194729948], + [14.4000640347993, 67.28599754127353] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "malta-gozo-cable", + "name": "Malta-Gozo Cable", + "color": "#af2724", + "feature_id": "malta-gozo-cable-0", + "coordinates": [14.307914119340296, 35.97958757021516] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [14.271364125971758, 36.02048335169246], + [14.307914100079415, 35.97958759177732], + [14.344464074187073, 35.938670628992185] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "mauritius-and-rodrigues-submarine-cable-system-mars", + "name": "Mauritius and Rodrigues Submarine Cable System (MARS)", + "color": "#2fb34a", + "feature_id": "mauritius-and-rodrigues-submarine-cable-system-mars-0", + "coordinates": [60.49855604599219, -20.368445549627353] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [57.485483512684, -20.4739956609462], + [57.71253335183965, -20.679706953509026], + [58.050033112751606, -20.679706953509026], + [59.400032156399845, -20.57441905727606], + [61.650030562479856, -20.15254378601884], + [62.77502976551986, -19.68301691579981], + [63.33752936703985, -19.570614456630267], + [63.44822928861899, -19.674355986985773] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "palapa-ring-east", + "name": "Palapa Ring East", + "color": "#cfc12a", + "feature_id": "palapa-ring-east-0", + "coordinates": [135.66860583860839, -1.155981803828098] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [134.32497907886446, -1.681168935905106], + [133.87497939764833, -2.018492325403201], + [133.48208167334192, -2.202398136007332] + ], + [ + [135.50163840155787, -3.372233814094784], + [135.56247820220838, -3.029995968008762], + [135.89997796312034, -2.580536704984041], + [136.12497780372834, -2.130918480960247], + [136.15700903103723, -1.756135138662984], + [136.3499776443364, -2.018492325403201], + [136.79997732555248, -2.018492325403201], + [136.96882720593763, -1.906058394384871], + [137.02502716612523, -1.681168935905106], + [136.79997732555248, -1.456253566768368], + [136.3499776443364, -1.456253566768368], + [135.89997796312034, -1.343787247896245], + [135.67497812251227, -1.175078194688609], + [135.61872816236033, -1.006508927978018], + [135.6385523670668, -0.729535713493476], + [135.44997828190444, -0.837630979982777], + [134.99997860068837, -0.837630979982777], + [134.32497907886446, -0.781386636225506], + [134.06198926516882, -0.861458343462516], + [134.2124791585605, -1.006358951224712], + [134.32497907886446, -1.231315750217505], + [134.32497907886446, -1.681168935905106], + [134.6624788397764, -2.130918480960247], + [135.1124785209923, -3.029995968008762], + [135.50163840155787, -3.372233814094784] + ], + [ + [139.3964598611798, -7.10240453607264], + [139.0499757316325, -7.175078903541362], + [138.59997605041642, -7.063446338991156], + [138.26247628950446, -6.616650693475464], + [138.14997636920035, -5.945707155070551], + [138.12136310822027, -5.535665777980654], + [137.8124766082884, -5.497950688314972], + [137.24997700676838, -5.273944363641391], + [137.02497716616054, -5.049857167366866], + [136.88962726204366, -4.550247539955819], + [136.74372736540053, -4.377144375531941], + [135.7874780428164, -3.591554479962213], + [135.50163840155787, -3.372233814094784] + ], + [ + [124.45350169691167, -8.160824687115849], + [124.64998593272028, -8.06711903252912], + [125.32498545454442, -8.06711903252912], + [125.66248521486048, -8.085683049445066], + [126.4499846575844, -8.122808517987067], + [126.8999843388003, -7.955717094334744], + [127.34998402001636, -7.955717094334744], + [127.69148768434198, -8.158093867003885], + [127.78788370920816, -8.150378145203206], + [127.91248362153638, -8.01142187411753], + [128.92498290427224, -8.01142187411753], + [129.59998242609637, -8.17849027894485], + [130.04998210731227, -8.17849027894485], + [130.8374815494403, -8.06711903252912], + [131.21306722087192, -8.052228527722747], + [130.8374815494403, -7.844284877164426], + [130.7249816291364, -7.621331259952996], + [130.8374815494403, -7.175078903541362], + [131.62498099156832, -6.281287025048499], + [132.29998051339228, -5.777839699209608], + [132.75212863058638, -5.626541451914449], + [132.6937302344564, -5.385957847172989], + [132.86453011346023, -5.128744870833515], + [133.20212987430145, -5.128744870833515], + [134.0999792382564, -5.945707155070551], + [134.26872911871246, -6.057590432424689], + [134.55017423183406, -6.194693482599263], + [134.77497876008053, -6.169450529574419], + [135.22497844129637, -5.833801119425374], + [136.01247788342445, -5.609922463067903], + [136.46247756464052, -5.385957847172989], + [136.68747740524836, -5.049857167366866], + [136.88962726204366, -4.550247539955819] + ], + [ + [120.25301904757285, -9.645765890160561], + [120.59998880177616, -9.623336788342698], + [121.61248808451225, -10.288167912195235], + [121.87987070759587, -10.457810041841412], + [122.06248776572832, -10.39883957712749], + [122.84998720785634, -10.620064860363328], + [123.03524098287087, -10.733304228874601], + [123.07498704846441, -10.509472025995535], + [123.29998688907224, -10.343606996551301], + [123.58338668830928, -10.182939736570972] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "palapa-ring-west", + "name": "Palapa Ring West", + "color": "#34ae9c", + "feature_id": "palapa-ring-west-0", + "coordinates": [106.54848431714115, 3.2374647686098967] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [102.08008004585733, 1.489220605654509], + [101.7281271707802, 1.637214579479661], + [101.44766236946415, 1.665522797277134] + ], + [ + [102.66702150506265, 0.932556749588656], + [102.57030157358, 1.220865326014433], + [102.08008004585733, 1.489220605654509] + ], + [ + [103.40488379485404, 0.769834409364108], + [103.2750010743641, 0.962392648220998], + [103.05000123375626, 1.168506749040887], + [102.73892645412448, 1.220865326014433], + [102.66702150506265, 0.932556749588656] + ], + [ + [103.96260058785819, 1.134723598626692], + [103.87813064769747, 1.106743972267083], + [103.50000091556822, 0.962392648220998], + [103.40488379485404, 0.769834409364108] + ], + [ + [104.63544932995566, -0.162758734486573], + [104.40000027800002, -0.218910724747275], + [104.11875047724001, -0.331409329660175], + [103.46670093915824, -0.816543192375462] + ], + [ + [108.98720405963192, 0.906050180868988], + [108.7874971698561, 1.243490076978134], + [108.44999740834825, 2.967259208499712], + [108.44999740834825, 3.416559618323163], + [108.37749745970777, 3.940874826242975], + [108.14286872026699, 3.945639298144044], + [107.99999772772824, 3.840706312160734], + [107.32499820590417, 3.491423322320486], + [106.87499852468827, 3.266814816815753], + [106.21112899497965, 3.207140223034116], + [105.97499916225613, 2.592701464601845], + [105.74999932164823, 2.143087178471944], + [104.86707219123898, 1.476960063746986], + [104.62500011860826, 1.299726182129234], + [104.28790035741284, 1.117266982599347], + [103.96260058785819, 1.134723598626692], + [104.03475053674654, 0.906050180868988], + [104.0601005187884, 0.793562652607278], + [104.17500043739219, 0.341586322057481], + [104.40000027800002, 0.006088583243098], + [104.63544932995566, -0.162758734486573] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "palapa-ring-middle", + "name": "Palapa Ring Middle", + "color": "#9d402f", + "feature_id": "palapa-ring-middle-0", + "coordinates": [126.30923830411129, 4.037101645710038] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [122.55994835082257, -5.389069040125207], + [122.57073740567941, -5.439965887100271], + [122.59686238717225, -5.507088069175353] + ], + [ + [122.5129774465972, -3.998469097245277], + [122.79378724766909, -3.984542968792908], + [122.90623716800829, -4.040605164746324], + [122.96248712816029, -4.0967133582636], + [123.12391279505485, -4.136112209115112], + [122.96248712816029, -4.377144375531941], + [122.84998720785634, -4.489307688629395], + [122.7937372477044, -4.657520205679987], + [122.72108104917467, -4.832406856866896], + [122.79173724912116, -4.825692499217524], + [122.8561102217839, -4.792242310211464] + ], + [ + [122.79275724839854, -0.938788738945078], + [123.07498704846441, -1.118839506905204], + [123.29998688907224, -1.146958988943794], + [123.34022123556977, -1.301025233930005], + [123.41248680937619, -1.203172122899247], + [123.63748664998437, -1.231315750217505], + [123.6937366101362, -1.400021081752755], + [123.52752579038147, -1.600245159061188], + [123.69378661010106, -1.624992367351439], + [124.03128637101301, -1.849888622119352], + [124.31248617180833, -2.130918480960247], + [124.53748601241617, -2.130918480960247], + [124.64998593272028, -2.018492325403201], + [124.77400928236094, -1.826803651259553], + [124.98748569363224, -2.018492325403201], + [125.6624852154562, -2.355745736646099], + [125.88748505606551, -2.580536704984041], + [126.11248489667227, -2.580536704984041], + [126.16873485682439, -2.468145972656231], + [126.11248489667227, -2.299542189691408], + [125.93699502099113, -2.201477967855737] + ], + [ + [127.36131213699136, 0.795808528724933], + [127.37810900009228, 0.739317546778636], + [127.40408554419028, 0.674041311933507], + [127.46248394032031, 0.68107206531252], + [127.56141387023749, 0.734977909038349] + ], + [ + [124.83963579837055, 1.490779296094786], + [124.7624858530244, 1.805788280129235], + [125.2124855342403, 2.592701464601845], + [125.37293463932659, 2.754634201538266], + [125.2124855342403, 2.817450442654064], + [125.2124855342403, 3.266814816815753], + [125.48553221581139, 3.600934571622815], + [125.32498545454442, 3.715978119297972], + [125.43748537484831, 3.940475772228723], + [126.4499846575844, 4.052702097268195], + [126.71726962448716, 4.042960839837178], + [126.8999843388003, 3.940475772228723], + [127.12498417940836, 3.715978119297972], + [127.34998402001636, 3.266814816815753], + [127.91248362153638, 2.367912558705314], + [128.1374834621444, 2.255504211923693], + [128.4007645256335, 2.365668382611432], + [128.1937334222964, 2.143087178471944], + [128.1374834621444, 1.918228780215685], + [127.96785467606097, 1.714620455999579] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "ulysses-2", + "name": "Ulysses 2", + "color": "#b96528", + "feature_id": "ulysses-2-0", + "coordinates": [3.1715390842772706, 52.55491468334145] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [1.729273010906667, 52.46882263773057], + [2.250072641967279, 52.55491468334145], + [3.825071526223184, 52.55491468334145], + [4.275071207439254, 52.52070133452017], + [4.613670967572091, 52.45850170510121] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "natitua", + "name": "Natitua", + "color": "#b75c28", + "feature_id": "natitua-0", + "coordinates": [-144.18136825994162, -13.277979584962026] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-143.99982375323387, -16.953454989810012], + [-143.43732415171385, -17.061035019881473], + [-142.42482486897788, -17.49073216111117], + [-141.18732574563384, -18.026426383713385], + [-140.90812594342162, -18.21574609011921] + ], + [ + [-145.7998224780979, -15.657788279357618], + [-145.7998224780979, -15.874323281689755], + [-145.7435733833309, -16.090625820394905], + [-145.6245784616174, -16.310348412455653] + ], + [ + [-146.9248216811379, -15.54943449312637], + [-146.86857255795104, -15.657788279357618], + [-146.67384529643192, -15.741365822737464] + ], + [ + [-146.58732192022583, -15.54943449312637], + [-146.64357272302706, -15.441023659568003], + [-146.78614990437427, -15.289888093159902] + ], + [ + [-147.14982152174582, -15.54943449312637], + [-146.9248216811379, -15.54943449312637], + [-146.58732192022583, -15.54943449312637], + [-145.7998224780979, -15.657788279357618], + [-145.34982279688208, -15.982503786245815], + [-145.12482295627387, -16.30669306561819], + [-144.56232335475386, -16.738110438702392], + [-143.99982375323387, -16.953454989810012], + [-143.77482391262583, -16.84581334779884], + [-143.77482391262583, -16.738110438702392], + [-143.86720665968107, -16.539560977104543] + ], + [ + [-147.14982152174582, -15.22403228464728], + [-147.37482136235388, -15.115452462868433], + [-147.65128601025373, -15.116206681570276] + ], + [ + [-139.38732702076982, -9.845097085826893], + [-139.04982725985775, -9.845097085826893], + [-139.02111634269687, -9.754639758300243] + ], + [ + [-145.3498227968819, -14.135775375064753], + [-145.12482295627404, -14.244842547315386], + [-144.97218634565309, -14.44976861091078] + ], + [ + [-145.9123223984019, -14.789380798539128], + [-145.9123223984019, -14.57172649133264], + [-145.95812314720624, -14.402858435885264] + ], + [ + [-140.14211164232333, -8.860524087732387], + [-139.72482678168188, -9.290424301035614], + [-139.38732702076982, -9.845097085826893], + [-139.49982694107385, -10.177457430361159], + [-140.39982630350582, -11.06203210990941], + [-144.8998231156658, -13.698987269610853], + [-145.3498227968819, -14.135775375064753], + [-145.4623227171859, -14.57172649133264], + [-145.9123223984019, -14.789380798539128], + [-146.69982184052995, -14.789380798539128], + [-147.14982152174582, -15.22403228464728], + [-147.14982152174582, -15.54943449312637], + [-147.37482136235388, -15.874323281689755], + [-148.72482040600192, -17.383402005942372], + [-149.30812077403647, -17.723342219804465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "curie", + "name": "Curie", + "color": "#b2692e", + "feature_id": "curie-0", + "coordinates": [-88.47487729407196, 6.532689664383895] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-85.94986487636933, 0.568578852526286], + [-82.34986742664147, 2.367912558705314], + [-80.09986902056127, 5.061986954416028], + [-79.42486949873734, 7.298762754459602], + [-79.64986933934539, 8.190543417795567], + [-79.56661939832038, 8.950317108800647] + ], + [ + [-71.62043502747201, -33.0455412324782], + [-72.67487428049732, -31.851465665577166], + [-79.64986933934539, -18.453813775777263], + [-84.14986615150539, -11.50333384598423], + [-85.49986519515335, -6.616650693475464], + [-85.94986487636933, 0.568578852526286], + [-87.06475643430807, 5.534179292238576], + [-92.69986009460936, 9.524411345019587], + [-98.09985626920162, 12.615395567393307], + [-104.39985180622548, 16.10232559580288], + [-108.44984893716952, 18.67864702215462], + [-114.29984479297748, 22.469443964829594], + [-118.7998416051375, 27.763588526057674], + [-119.69984096756966, 31.28673881439167], + [-119.24984128635367, 32.81231878328768], + [-118.79984160513769, 33.84625607000376], + [-118.41596126184774, 33.919920018514716] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "venezuelan-festoon", + "name": "Venezuelan Festoon", + "color": "#3cac48", + "feature_id": "venezuelan-festoon-0", + "coordinates": [-67.69388910487417, 10.642183589613154] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-71.45109585055843, 10.395928632135309], + [-71.54987507745732, 10.468102245057224], + [-71.5984101993246, 10.688176132322553], + [-71.54987507745732, 11.073982781226704], + [-71.09987539624133, 11.405009147532837], + [-70.42487587441731, 11.625479959569759], + [-70.2043160306639, 11.708782466419052], + [-69.86237627289731, 11.625479959569759], + [-69.67780609114857, 11.40280739842251], + [-69.52487651198534, 11.515266158038685], + [-69.2998766713773, 11.625479959569759], + [-68.7373770698573, 11.57037848436471], + [-68.39987730894534, 11.294709319565555], + [-68.28449653130713, 10.928560854771177], + [-68.06237754803328, 10.742581675476316], + [-68.0095943823004, 10.478139223021032], + [-67.72487778712132, 10.632033208117747], + [-67.38737802620926, 10.742581675476316], + [-67.16237818560131, 10.742581675476316], + [-66.87829838684605, 10.606498174462416], + [-66.59987858408131, 10.742581675476316], + [-66.26237882316926, 10.742581675476316], + [-66.14987890286532, 10.632033208117747], + [-66.09812112703104, 10.480347852297058], + [-65.69987922164925, 10.410816505402636], + [-65.24987954043327, 10.410816505402636], + [-64.6448995002568, 10.20251427017962], + [-64.40813013673643, 10.410816505402636], + [-64.18210685935347, 10.454323438205137], + [-64.40613013815326, 10.632033208117747], + [-64.34988017800121, 10.797840764398018], + [-64.01238041708925, 10.742581675476316], + [-63.84763444004682, 10.955215720095936], + [-63.449880815569244, 10.853089690745378], + [-63.25051572242633, 10.66677586312187] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "fibra-optica-austral", + "name": "Fibra Optica Austral", + "color": "#23a94c", + "feature_id": "fibra-optica-austral-0", + "coordinates": [-75.75521397094205, -50.41720732696811] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-71.54987507745732, -53.36079173838132], + [-71.21237531654535, -53.29360179765794], + [-70.9333325752588, -53.16665547850178] + ], + [ + [-76.04987188961734, -47.948158003955456], + [-75.14987252718537, -47.87275031309153], + [-74.69987284596938, -47.79723273066813], + [-74.2498731647534, -47.79723273066813], + [-73.53688749863102, -47.8012146645996] + ], + [ + [-72.95341123369906, -41.460374244790415], + [-73.34987380232134, -41.65126697659352], + [-73.79987348353733, -41.73527248346838], + [-74.2498731647534, -41.90295427099872], + [-75.14987252718537, -43.55557627361341], + [-76.04987188961734, -46.72843318742704], + [-76.04987188961734, -47.948158003955456], + [-75.59987220840135, -51.718874274733054], + [-75.14987252718537, -52.27301020156594], + [-74.13737324444938, -52.820304304805035], + [-72.89987412110536, -53.15890429141288], + [-71.54987507745732, -53.36079173838132], + [-71.09987539624133, -53.894509657193765], + [-70.19987603380928, -54.42149711540557], + [-68.84987699016132, -54.94179496686152], + [-68.1748774683373, -55.00636393692005], + [-67.60586142678865, -54.935200597435625] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "djibouti-africa-regional-express-1-dare1", + "name": "Djibouti Africa Regional Express 1 (DARE1)", + "color": "#a8b737", + "feature_id": "djibouti-africa-regional-express-1-dare1-0", + "coordinates": [53.03961723333936, 6.378909892509768] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [45.34418211369595, 2.041205223228673], + [46.800041082351555, 2.030661890474562], + [49.500039169647664, 1.468426767332062] + ], + [ + [49.18792939074925, 11.275556936623303], + [48.82503964782373, 11.735650161405744], + [48.600039807215495, 11.95585820711483] + ], + [ + [44.55004267627157, 11.294709319565555], + [45.450042038703714, 11.073982781226704], + [48.600039807215495, 11.95585820711483], + [52.650036938159616, 12.944533868662859], + [54.000035981807684, 13.163718917913684], + [55.12503518484766, 12.615395567393307], + [54.450035663023755, 9.524411345019587], + [52.650036938755704, 5.510071711803135], + [49.500039169647664, 1.468426767332062], + [45.67504187931155, -1.456253566768368], + [42.30004427019156, -3.703826470668162], + [39.672896131287985, -4.052924364763157] + ], + [ + [44.55004267627157, 11.294709319565555], + [43.6500433138396, 11.510285103755706], + [43.147993669496344, 11.594869371447714] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "peace-cable", + "name": "PEACE Cable", + "color": "#939597", + "feature_id": "peace-cable-0", + "coordinates": [27.184192604467825, 32.05106664439717] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [11.981315748271214, 35.419780517080454], + [13.668814552823221, 35.694348446523605], + [14.350104069595545, 35.95240101739202] + ], + [ + [27.900054471279333, 31.861808602270827], + [31.500051920411693, 34.25018044028607], + [32.46665123625965, 34.76657169708608] + ], + [ + [53.55003630118787, 5.510071711803135], + [50.850038213295704, 5.733989114150035], + [49.500039169647664, 5.733989114150035], + [48.522039862471644, 5.350192596890764] + ], + [ + [45.900041719919614, -1.681168935905106], + [45.22504219809568, -1.568714273759809], + [44.100042995055674, -1.231315750217505], + [43.08754371231959, -0.781386636225506], + [42.54514409656065, -0.362708732883334] + ], + [ + [50.400038532079606, 1.468426767332062], + [46.800041082351555, 2.143087178471944], + [45.34418211369595, 2.041205223228673] + ], + [ + [48.600039807215495, 12.285833556268273], + [48.93753956812765, 11.735650161405744], + [49.18792939074925, 11.275556936623303] + ], + [ + [50.400038532079606, 1.468426767332062], + [52.200037256943745, -2.130918480960247], + [54.000035981807684, -3.928327304142726], + [55.44505495814283, -4.617611322442229] + ], + [ + [44.55004267627157, 11.625479959569759], + [43.24223110273755, 12.615395567393307], + [43.15785616250969, 12.834868817846598], + [42.89066885178764, 13.054150695298716], + [42.30004427019156, 13.929303843271725], + [41.79379462882369, 14.801154224791475], + [40.387545625025695, 16.53419619825962], + [39.37504634228762, 18.251816319028308], + [38.137547218943496, 20.375041253465525], + [37.350047776815444, 22.05298561667763], + [36.0000487331676, 24.12261698700334], + [34.987549450431516, 25.754704263415306], + [34.50942478913956, 26.562513149236622], + [33.86255024739151, 27.364667993860166], + [33.370838095731244, 28.161052262220892], + [32.65318110412005, 29.113614162980156], + [31.725051761615447, 29.099110450974905], + [31.050052239791512, 29.34456698948989], + [30.375052717967577, 29.711645057947948], + [29.98130299690345, 30.320335942474912], + [29.700933195520264, 31.072270031660224], + [27.900054471279333, 31.861808602270827], + [25.20005638398345, 32.575628370353314], + [19.35006052817539, 33.18971466460036], + [16.65006244087931, 32.81231878328768], + [14.4000640347993, 33.18971466460036], + [11.981315748271214, 35.419780517080454], + [11.812565867807308, 35.78566189952613], + [11.025066425679285, 37.232354321556215], + [10.348617229769246, 37.32187222983512], + [9.00006786020731, 37.41128363492314], + [7.200069135343199, 37.94551049545976], + [6.525069613519264, 38.651811712711236], + [5.625070251087294, 41.744358789482135], + [5.372530429989041, 43.29362778902916] + ], + [ + [65.25002801220771, 22.884654113882362], + [63.0000296061277, 24.532657566160623], + [62.32496971795777, 25.132264042220044] + ], + [ + [55.350035025455725, 13.929303843271725], + [55.350035025455725, 12.615395567393307], + [54.900035344239626, 9.524411345019587], + [53.55003630118787, 5.510071711803135], + [50.400038532079606, 1.468426767332062], + [45.900041719919614, -1.681168935905106], + [42.30004427019156, -3.928327304142726], + [39.672896131287985, -4.052924364763157] + ], + [ + [67.02854675228852, 24.889731701235718], + [65.25002801220771, 22.884654113882362], + [64.35002864977574, 20.375041253465525], + [60.97503104065572, 16.965102599435824], + [58.950032475183775, 15.669513225155328], + [55.350035025455725, 13.929303843271725], + [48.600039807215495, 12.285833556268273], + [45.450042038703714, 11.405009147532837], + [44.55004267627157, 11.625479959569759], + [43.6500433138396, 11.65285521978413], + [43.147993669496344, 11.594869371447714] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "jupiter", + "name": "JUPITER", + "color": "#939597", + "feature_id": "jupiter-0", + "coordinates": [-148.34543872865953, 42.443778673426124] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-123.95633795222734, 45.231085444465265], + [-125.09983714216165, 44.694829089578064], + [-129.59983395432175, 43.40114497315386], + [-138.48723921702876, 41.40772623743587] + ], + [ + [141.9749736595364, 34.40502275071583], + [141.07497429710443, 32.052708023486105], + [140.62497461588836, 30.901396088515583], + [138.82497589102448, 27.763588526057674], + [137.24997700676838, 26.159307970773796], + [133.19997987582443, 22.884654113882362], + [127.79998370123226, 17.823934412537824], + [124.64998593272028, 15.23578178303569], + [123.52498672968031, 14.256644994553568], + [122.95008713694452, 14.11652289884887] + ], + [ + [140.84997445649643, 34.40502275071583], + [138.59997605041642, 33.75276987113051], + [137.69997668798445, 33.84625607000376], + [136.87399727311598, 34.33682825203164] + ], + [ + [179.9999271925697, 42.74370001723423], + [172.79992073307184, 42.74370001723423], + [160.19996074878455, 40.04369219282995], + [149.39996839960057, 35.78566189952613], + [143.09997286257644, 34.59045588265229], + [141.9749736595364, 34.40502275071583], + [140.84997445649643, 34.40502275071583], + [139.8937251339125, 34.77547607575676], + [139.8169651882899, 35.03751783625896] + ], + [ + [-118.39945344740454, 33.86223263215783], + [-120.59984033000163, 33.75276987113051], + [-122.39983905486565, 33.93964008831958], + [-129.59983395432175, 37.58978657360316], + [-138.48723921702876, 41.40772623743587], + [-151.19983391146837, 42.74376277082024], + [-179.99981350929244, 42.74376277082024] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "wall-li", + "name": "WALL-LI", + "color": "#939597", + "feature_id": "wall-li-0", + "coordinates": [-73.5534947989728, 40.29093211392018] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-73.58682634802493, 40.75710357176081], + [-73.46237372262536, 40.47295490579842], + [-73.51862368277732, 40.30157665795872], + [-73.79987348353733, 40.21572406083388], + [-74.06286329723287, 40.15283384719578] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "crosslake-fibre", + "name": "Crosslake Fibre", + "color": "#bfa82f", + "feature_id": "crosslake-fibre-0", + "coordinates": [-78.99633893060788, 43.35045980757377] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-79.38531972876184, 43.644625404178896], + [-79.08736973782538, 43.48282788090381], + [-78.91861985736939, 43.23744835244082], + [-78.86236989721743, 43.07331078300331], + [-78.8784612465251, 42.88543648440384] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "gtmo-pr", + "name": "GTMO-PR", + "color": "#28a557", + "feature_id": "gtmo-pr-0", + "coordinates": [-71.5121630761125, 17.219005195339975] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-66.1857511006541, 18.472993987729723], + [-66.48737866377729, 18.731925895976644], + [-67.0498782652973, 18.89166158430325], + [-67.72487778712132, 18.465364393137207], + [-68.06237754922526, 18.251816319028308], + [-68.51237722924927, 17.823934412537824], + [-69.2998766713773, 17.716802179008738], + [-70.64987571502535, 17.287636299591014], + [-71.99987475867339, 17.180187287481402], + [-74.69987284596938, 17.39502263470061], + [-75.14987252718537, 18.251816319028308], + [-75.26237244808537, 19.670379638527862], + [-75.15816600409609, 19.939616197540232] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "gtmo-1", + "name": "GTMO-1", + "color": "#8bc63f", + "feature_id": "gtmo-1-0", + "coordinates": [-74.93554377031592, 24.44157297379965] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-80.14394128072004, 26.05231628642727], + [-79.64986933934539, 25.95717997876443], + [-78.41237021600136, 26.159307970773796], + [-77.5123708535694, 25.754704263415306], + [-76.8311713361375, 25.813358882055525], + [-76.24064175447417, 25.599112345903848], + [-75.59987220840135, 25.14511970405232], + [-74.92487268657733, 24.430271928048597], + [-74.69987284596938, 24.01990020343257], + [-74.58737292566536, 23.711258142484382], + [-74.58737292566536, 23.298598065875808], + [-74.69987284596938, 22.884654113882362], + [-74.47487300536135, 22.05298561667763], + [-74.02487332414536, 21.21639789994191], + [-73.91237340384134, 20.796306105108954], + [-74.02482332418074, 20.375041253465525], + [-74.09132327707152, 20.183174721867687], + [-74.30612312490535, 19.952622905164304], + [-74.69987284596938, 19.74098736552503], + [-74.92487268657733, 19.793828591740805], + [-75.15816600409609, 19.939616197540232] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "havhingstennorth-sea-connect-nsc", + "name": "Havhingsten/North Sea Connect (NSC)", + "color": "#939597", + "feature_id": "havhingstennorth-sea-connect-nsc-0", + "coordinates": [3.3035885901261963, 55.40286882019859] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [8.193168431226582, 55.764614544717034], + [7.650068816559269, 55.526080187888624], + [3.150072004399249, 55.39851702575686], + [-0.899925126544701, 55.07780072164758], + [-1.617778330734808, 54.978249214505325] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "havhingstenceltixconnect-2-cc-2", + "name": "Havhingsten/CeltixConnect-2 (CC-2)", + "color": "#939597", + "feature_id": "havhingstenceltixconnect-2-cc-2-0", + "coordinates": [-4.688420988295718, 53.82144045807647] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-4.499922576272752, 53.83535026397598], + [-4.499722576414371, 53.96791403087386], + [-4.566622529021913, 54.10028616652036] + ], + [ + [-4.949922257488737, 53.802143574575354], + [-4.949922257488737, 53.96791403087386], + [-4.760422391732305, 54.08721396659914] + ], + [ + [-6.248311337697743, 53.348124632595216], + [-5.624921779312757, 53.53554178438765], + [-4.949922257488737, 53.802143574575354], + [-4.499922576272752, 53.83535026397598], + [-3.599923213840782, 53.83535026397598], + [-3.050753602877677, 53.80897597127557] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "cobracable", + "name": "COBRAcable", + "color": "#59af46", + "feature_id": "cobracable-0", + "coordinates": [7.417712921448299, 54.92882086229602] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [8.718388991504298, 55.523118197393956], + [8.10006849777534, 55.526080187888624], + [7.650068816559269, 55.39851702575686], + [6.975069294735334, 54.03403825672413], + [6.816022175096919, 53.44280469148259] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "kanawa", + "name": "Kanawa", + "color": "#6fc6b1", + "feature_id": "kanawa-0", + "coordinates": [-56.102765001579144, 10.704754187067351] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-61.11213835606199, 14.62900014542359], + [-61.1998324095247, 14.474609432069002], + [-61.08738248918522, 14.365653759228536], + [-60.9748825688812, 14.365653759228536], + [-59.849883365841194, 13.929303843271725], + [-58.049884640977254, 12.615395567393307], + [-54.89988687246519, 9.524411345019587], + [-52.87488830699313, 5.957818681088611], + [-52.64555499839999, 5.168298539392282] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "fly-lion3", + "name": "FLY-LION3", + "color": "#c7b22e", + "feature_id": "fly-lion3-0", + "coordinates": [44.02971817153852, -12.264700887720124] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [43.24330360197786, -11.70058928227246], + [43.14379367247156, -11.943944931746927], + [43.31254355292762, -12.163983680780518], + [43.537543393535486, -12.163983680780518], + [43.87504315444764, -12.163983680780518], + [44.55004267627157, -12.603512104971372], + [45.000042357487644, -12.822995625629687], + [45.16576224009026, -12.81709644553311] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "nelson-levin", + "name": "Nelson-Levin", + "color": "#403c97", + "feature_id": "nelson-levin-0", + "coordinates": [174.11213952095213, -40.54922829806904] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [173.28395005607203, -41.272264261522736], + [173.47495134465672, -40.890286050098695], + [173.9249510258728, -40.54922829806904], + [174.82495038830476, -40.54922829806904], + [175.28531582578577, -40.625274631911594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "png-lng", + "name": "PNG LNG", + "color": "#cf297b", + "feature_id": "png-lng-0", + "coordinates": [145.69032833274045, -8.492326203968872] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [144.24020634990947, -7.413515958216607], + [144.89997158744055, -7.955717094334744], + [145.57497110926445, -8.401139048122928], + [146.6999703123045, -9.290424301035614], + [147.1885196909836, -9.479589292697398] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "kumul-domestic-submarine-cable-system", + "name": "Kumul Domestic Submarine Cable System", + "color": "#a76c35", + "feature_id": "kumul-domestic-submarine-cable-system-0", + "coordinates": [150.11278431665923, -9.549626145302739] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [145.34997126865645, -3.479268678969987], + [145.79997094987252, -2.130918480960247], + [146.6999703123045, -1.681168935905106], + [147.14996999352056, -1.79361712035498], + [147.27907146456383, -2.034985895581542] + ], + [ + [152.2124664072006, -3.928327304142726], + [152.2124664072006, -4.040555289062013], + [152.27457573820178, -4.342382000415256] + ], + [ + [151.1999671244645, -3.928327304142726], + [152.2124664072006, -3.928327304142726], + [152.43746624780843, -4.15276774801373], + [152.54996616811255, -4.377144375531941], + [152.66246608841666, -4.825692499217524], + [152.99996584932862, -5.049857167366866], + [153.8999652117606, -4.825692499217524], + [154.79996457419256, -4.825692499217524], + [155.24996425540863, -5.273944363641391], + [155.4749640960167, -5.721872747834027], + [155.56783512397587, -6.225662994684143] + ], + [ + [150.52496760264054, -4.825692499217524], + [150.41246768233665, -5.273944363641391], + [150.13873740749958, -5.551120494376022] + ], + [ + [146.24997063108842, -4.825692499217524], + [146.6999703123045, -4.601453764837203], + [149.39996839960057, -4.601453764837203], + [150.52496760264054, -4.825692499217524], + [151.1999671244645, -3.928327304142726], + [149.84996808081647, -2.580536704984041], + [149.84996808081647, -2.130918480960247], + [150.52496760264054, -2.130918480960247], + [150.80856115174018, -2.578139138209878] + ], + [ + [143.6583709045021, -3.580053610579313], + [143.9999722250084, -3.479268678969987], + [144.44997190622448, -3.029995968008762], + [144.44997190622448, -2.580536704984041] + ], + [ + [141.2999741377125, -2.130918480960247], + [141.29987648153164, -2.68969840259993] + ], + [ + [145.78474096066176, -5.23368424614938], + [146.02497079048058, -5.049857167366866], + [146.24997063108842, -4.825692499217524], + [146.24997063108842, -4.377144375531941], + [145.34997126865645, -3.479268678969987], + [144.44997190622448, -2.580536704984041], + [142.19997350014447, -2.130918480960247], + [141.2999741377125, -2.130918480960247], + [140.84997445649643, -2.355745736646099], + [140.6691145846195, -2.591565453841469] + ], + [ + [146.99293885476297, -6.739375698979131], + [147.3749698341284, -7.063446338991156], + [148.04996935595253, -7.062898168976972] + ], + [ + [148.29352387091618, -8.604445748342641], + [148.9499687183845, -8.401139048122928], + [149.39996839960057, -8.401139048122928] + ], + [ + [150.45875671204502, -10.315743405478372], + [150.7499674432486, -10.39883957712749], + [151.1999671244645, -10.39883957712749] + ], + [ + [147.1885196909836, -9.479589292697398], + [147.3749698341284, -10.177457430361159], + [149.39996839960057, -11.06203210990941], + [150.7499674432486, -11.06203210990941], + [151.1999671244645, -10.841130095525784], + [151.1999671244645, -10.39883957712749], + [150.97496728385667, -10.177457430361159], + [150.29996776203237, -9.734235342300764], + [149.84996808081647, -9.290424301035614], + [149.39996839960057, -8.846050186819042], + [149.39996839960057, -8.401139048122928], + [148.04996935595253, -7.063446338991156], + [148.04996935595253, -6.39309949782384], + [147.59996967473646, -5.945707155070551], + [146.90630490718834, -5.585376278267006], + [146.02497079048058, -5.273944363641391], + [145.78474096066176, -5.23368424614938] + ], + [ + [145.77174829265064, -7.963744467834914], + [145.57497110926445, -8.401139048122928] + ], + [ + [143.20993372217916, -9.07814229926305], + [143.9999722250084, -8.846050186819042], + [144.89997158744055, -7.955717094334744] + ], + [ + [144.89997158744055, -7.955717094334744], + [145.57497110926445, -8.401139048122928], + [146.6999703123045, -9.290424301035614], + [147.1885196909836, -9.479589292697398] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "strategic-evolution-underwater-link-seul", + "name": "Strategic Evolution Underwater Link (SEUL)", + "color": "#bd254b", + "feature_id": "strategic-evolution-underwater-link-seul-0", + "coordinates": [-88.13645167977197, 17.914295863394358] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-88.29445457772995, 17.925607489676395], + [-88.09086335966593, 17.911032138193548], + [-87.9783422706509, 17.911032138193548] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "labuan-brunei-submarine-cable", + "name": "Labuan-Brunei Submarine Cable", + "color": "#939597", + "feature_id": "labuan-brunei-submarine-cable-0", + "coordinates": [114.98447468523975, 5.126623341957696] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [114.88563284987973, 4.926762452886777], + [114.97499278657611, 5.120007115780538], + [115.16894264918031, 5.255340365327868] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "marea", + "name": "MAREA", + "color": "#288da3", + "feature_id": "marea-0", + "coordinates": [-38.63188942005439, 39.2652211952896] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-76.05920188300789, 36.75500543613887], + [-74.69987284596938, 36.8131986057773], + [-72.44987443988929, 37.41128363492314], + [-61.199882409489234, 37.94551049545976], + [-50.39989006030518, 37.94551049545976], + [-39.59989771112103, 39.00237890905848], + [-23.39990918734489, 43.40114497315386], + [-16.199914287888873, 45.64654149518748], + [-9.899918750864742, 46.58235508209589], + [-5.849921619920792, 45.64654149518748], + [-4.499922576272752, 44.694829089578064], + [-2.94919367482359, 43.27422025200056] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "brazilian-festoon", + "name": "Brazilian Festoon", + "color": "#a36929", + "feature_id": "brazilian-festoon-0", + "coordinates": [-39.023203791638025, -14.833362589631577] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-35.21118082012924, -5.794842609646821], + [-34.87490105835306, -6.169450529574419], + [-34.76240113804903, -6.616650693475464], + [-34.86103106817862, -7.115296841294736], + [-34.649901217745025, -7.398261494590969], + [-34.649901217745025, -7.732822794391694], + [-34.87197106042865, -8.055326726100276], + [-34.76240113804903, -8.401139048122928], + [-35.09990089896101, -9.290424301035614], + [-35.73496044907887, -9.652223223190191], + [-35.887400341089034, -10.177457430361159], + [-36.44989994260905, -10.730617682527622], + [-37.07479949992427, -10.909607685768748], + [-37.01239954412904, -11.172420921128236], + [-37.181149424585016, -11.558448514962322], + [-37.570509148759015, -11.846669756599255], + [-37.68739906595306, -12.273934999624657], + [-38.02489882686504, -12.822995625629687], + [-38.50448848711929, -12.969972035343062], + [-38.474898508081026, -13.480286782092094], + [-38.69989834868906, -14.244842547315386], + [-39.04769810230445, -14.787969163702286], + [-38.812398268993064, -15.22403228464728], + [-38.69989834868906, -15.874323281689755], + [-38.812398268993064, -16.30669306561819], + [-39.064688090268504, -16.451075727726476], + [-38.92489818929701, -16.953454989810012], + [-38.92489818929701, -17.59799899615561], + [-39.37489787051308, -18.453813775777263], + [-39.85912752748027, -18.716690158772792], + [-39.59989771112103, -18.98655325687281], + [-39.59989771112103, -19.72952545002093], + [-39.824897551729066, -20.15254378601884], + [-40.30165721398805, -20.294028446525374], + [-40.499897073553086, -20.995131543025877], + [-41.02723669998073, -21.631144867598294], + [-40.94989675476907, -21.832990805201973], + [-41.17489659537699, -22.25009967909017], + [-41.399896435985056, -22.35418408364265], + [-41.78563616272342, -22.371792110839323], + [-41.849896117201126, -22.665969967794723], + [-42.299895798417, -23.08058350574774], + [-42.749895479633096, -23.08058350574774], + [-43.209565153998795, -22.903486555497864] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "nationwide-submarine-cable-ooredoo-maldives-nascom", + "name": "Nationwide Submarine Cable Ooredoo Maldives (NaSCOM)", + "color": "#ef7422", + "feature_id": "nationwide-submarine-cable-ooredoo-maldives-nascom-0", + "coordinates": [73.48963528205385, 3.0591532409241324] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [73.08918245887716, -0.605519711481634], + [72.99768252369688, 0.281087260908294], + [72.99768252369688, 0.531080606428844], + [72.99768252369688, 0.7810638415977], + [73.42463222124152, 2.776778986293493], + [73.53957213981701, 3.276079687360095], + [73.5403521392646, 3.962982118955608], + [73.5403521392646, 4.212345781871875], + [73.49035217468503, 4.461629537081564], + [73.27082233020181, 4.854566321204942], + [73.07082247188356, 5.103622553806417], + [73.1708224010427, 5.601440402765235], + [73.1715024005612, 6.125830038600412], + [73.07150247140208, 6.622826415013179] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "saba-statia-cable-system-sscs", + "name": "Saba, Statia Cable System (SSCS)", + "color": "#c01f38", + "feature_id": "saba-statia-cable-system-sscs-0", + "coordinates": [-63.316647428490754, 17.616040674676356] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-62.72976132570861, 17.298635546518767], + [-62.829761254867734, 17.298635546518767], + [-62.98704114344912, 17.38645312863801], + [-62.98552567577276, 17.4758936446012], + [-63.08709107257286, 17.481859236798527], + [-63.25164095600422, 17.521161556886454], + [-63.2442168987635, 17.615097550173232], + [-63.351690885127965, 17.616496978706607], + [-63.351690885127965, 17.71178205639049], + [-63.155061024422324, 17.92932775779633], + [-63.05505687651619, 18.024447867032848], + [-62.9436311742012, 17.9845119674776], + [-62.85054881207171, 17.89791564702213] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "east-west-submarine-cable-system", + "name": "East-West Submarine Cable System", + "color": "#ed164f", + "feature_id": "east-west-submarine-cable-system-0", + "coordinates": [107.48745749995058, 3.3208737280614002] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [103.85068066714334, 2.295702456949584], + [104.40000027800002, 2.480311786858834], + [105.74999932164823, 2.592701464601845], + [105.97499916225613, 2.817450442654064], + [106.21112899497965, 3.207140223034116], + [106.87499852468827, 3.154491498099929], + [107.32499820590417, 3.266814816815753], + [107.99999772772824, 3.491423322320486], + [108.29022752212674, 3.66676047852701], + [108.89999709016004, 3.266814816815753], + [109.79999645259218, 2.592701464601845], + [110.3624960541122, 1.918228780215685], + [110.35370606033919, 1.520169126642031] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "smpcs-packet-1", + "name": "SMPCS Packet-1", + "color": "#a43a95", + "feature_id": "smpcs-packet-1-0", + "coordinates": [127.32155160528421, -3.169471179209552] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [126.8999843388003, 1.01853421661562], + [127.34998402001636, 1.01853421661562], + [127.46248394032031, 0.906050180868988], + [127.56141387023749, 0.734977909038349] + ], + [ + [127.34998402001636, 1.01853421661562], + [127.34998402001636, 0.906050180868988], + [127.37537400202993, 0.789853009413861] + ], + [ + [128.19070342444294, -3.645746178185419], + [128.02498354184027, -4.040555289062013], + [127.79998370123226, -4.15276774801373], + [126.4499846575844, -4.15276774801373], + [125.09998561393635, -3.816084221750117], + [123.07498704846441, -3.816084221750117], + [122.5129774465972, -3.998469097245277] + ], + [ + [127.48045392759028, -0.626808465190322], + [127.34998402001636, -0.781386636225506], + [127.34998402001636, -1.006358951224712] + ], + [ + [126.67498449819223, -1.231315750217505], + [127.34998402001636, -1.006358951224712], + [127.79998370123226, -1.006358951224712], + [128.24998338244833, -1.231315750217505], + [129.1499827448803, -1.231315750217505], + [129.59998242609637, -0.781386636225506], + [130.39002186642503, -0.59019055694165], + [130.8901215121497, -0.59019055694165], + [131.29539122505295, -0.882055944384604] + ], + [ + [126.68699448968422, -2.201477967855737], + [125.93699502099113, -2.201477967855737] + ], + [ + [127.34998402001636, -3.254657364797595], + [127.08582420714973, -3.233401495651691] + ], + [ + [129.1499827448803, -3.928327304142726], + [129.1499827448803, -3.703826470668162], + [128.95525288282877, -3.297846628597966] + ], + [ + [129.87205223335977, -4.520172025984351], + [129.82498226670444, -4.15276774801373] + ], + [ + [124.83963579837055, 1.490779296094786], + [125.09998561393635, 1.243490076978134], + [125.99998497636832, 1.01853421661562], + [126.8999843388003, 1.01853421661562], + [126.8999843388003, 0.568578852526286], + [126.8999843388003, 0.118588418888407], + [126.67498449819223, -1.231315750217505], + [126.68699448968422, -2.201477967855737], + [127.12498417940836, -2.580536704984041], + [127.34998402001636, -3.254657364797595], + [127.57498386062443, -3.703826470668162], + [127.79998370123226, -3.928327304142726], + [128.02498354184027, -3.928327304142726], + [128.19070342444294, -3.645746178185419], + [128.47498322305617, -3.816084221750117], + [129.1499827448803, -3.928327304142726], + [129.82498226670444, -4.15276774801373], + [130.49998178852834, -4.15276774801373], + [131.39998115096031, -3.928327304142726], + [132.29998051339228, -3.479268678969987], + [132.74998019460836, -3.366969497295258], + [133.00857001142109, -3.111418827305897] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "smpcs-packet-2", + "name": "SMPCS Packet-2", + "color": "#33b44a", + "feature_id": "smpcs-packet-2-0", + "coordinates": [131.7481483166599, -2.9282857462319782] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [136.57497748494447, -5.049857167366866], + [136.88962726204366, -4.550247539955819] + ], + [ + [134.0999792382564, -4.15276774801373], + [133.79147945680054, -3.679367344668947] + ], + [ + [132.75203019315612, -5.635389324566262], + [132.63753027426915, -5.385957847172989], + [132.63963027278143, -5.128744870833515], + [132.85535011996345, -4.427385673631022] + ], + [ + [134.06198926516882, -0.861458343462516], + [134.32497907886446, -0.725141539440244], + [134.5499789194723, -0.556402272850676] + ], + [ + [136.05329785450718, -1.187185613026656], + [135.89997796312034, -1.400021081752755] + ], + [ + [139.49997541284839, -1.681168935905106], + [139.35329551675804, -2.175227145407234] + ], + [ + [140.6691145846195, -2.591565453841469], + [140.39997477528036, -2.130918480960247], + [139.49997541284839, -1.681168935905106], + [137.69997668798445, -1.231315750217505], + [136.79997732555248, -1.231315750217505], + [136.3499776443364, -1.400021081752755], + [135.89997796312034, -1.400021081752755], + [135.44997828190444, -1.175078194688609], + [134.99997860068837, -0.781386636225506], + [134.5499789194723, -0.556402272850676], + [133.64997955704033, -0.331409329660175], + [132.29998051339228, -0.106411275875331], + [131.62498099156832, -0.331409329660175], + [131.29539122505295, -0.882055944384604], + [131.04539140215516, -0.757068845388176], + [130.8901215121497, -0.690184231258399], + [130.39002186642503, -0.690184231258399], + [130.27498194792028, -1.231315750217505], + [130.7249816291364, -1.681168935905106], + [131.39998115096031, -2.580536704984041], + [131.84998083217639, -3.029995968008762], + [132.29998051339228, -3.254657364797595], + [132.74998019460836, -3.254657364797595], + [133.00857001142109, -3.111418827305897], + [132.74998019460836, -3.479268678969987], + [132.6053502970656, -3.679267550854945], + [132.6053502970656, -4.178090661818857], + [132.85535011996345, -4.427385673631022], + [133.64997955704033, -4.377144375531941], + [134.0999792382564, -4.15276774801373], + [134.99997860068837, -4.713582177229341], + [135.89997796312034, -4.825692499217524], + [136.57497748494447, -5.049857167366866], + [136.79997732555248, -6.169450529574419], + [136.79997732555248, -8.401139048122928], + [137.24997700676838, -8.846050186819042], + [138.59997605041642, -9.06830600387434], + [139.94997509406446, -8.846050186819042], + [140.4050547716818, -8.499084023854977] + ], + [ + [130.85760153518734, -0.383358280481133], + [130.8901215121497, -0.490195084933788], + [131.29539122505295, -0.882055944384604] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "luwuk-tutuyan-cable-system-ltcs", + "name": "Luwuk Tutuyan Cable System (LTCS)", + "color": "#554b9f", + "feature_id": "luwuk-tutuyan-cable-system-ltcs-0", + "coordinates": [124.09471861195684, -0.5754637530094442] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [124.57498598585093, 0.761435633994978], + [124.64998593272028, 0.568578852526286], + [124.64998593272028, 0.118588418888407], + [123.74998657028831, -1.006358951224712], + [123.29998688907224, -1.0907197553434], + [123.07498704846441, -1.062599741028748], + [122.79275724839854, -0.938788738945078] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tarakan-selor-cable-system-tscs", + "name": "Tarakan Selor Cable System (TSCS)", + "color": "#3db557", + "feature_id": "tarakan-selor-cable-system-tscs-0", + "coordinates": [117.89999071448025, 3.041428189035514] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [117.57851094221976, 3.327354396392252], + [117.61874091372025, 3.154491498099929], + [117.89999071448025, 3.042156042425745], + [117.89999071448025, 2.817450442654064], + [117.81942077155682, 2.572022500481324] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sumatera-bangka-cable-system-sbcs", + "name": "Sumatera Bangka Cable System (SBCS)", + "color": "#bab034", + "feature_id": "sumatera-bangka-cable-system-sbcs-0", + "coordinates": [104.74267069755896, -2.45781340167386] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [105.1642597365915, -2.065142653434521], + [104.96249987952004, -2.130918480960247], + [104.84999995921609, -2.243336428755356], + [104.73750003891215, -2.468145972656231], + [104.62500011860826, -2.636728372378741], + [104.62500011860826, -2.805287932308005], + [104.75732002487146, -2.990989901799765] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "s-u-b-cable-system", + "name": "S-U-B Cable System", + "color": "#cd5628", + "feature_id": "s-u-b-cable-system-0", + "coordinates": [116.55737291277299, -6.120726307063563] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [114.60399304939611, -3.327586828573203], + [114.18749334444826, -3.703826470668162], + [113.96249350384025, -4.377144375531941], + [113.73749366323219, -4.825692499217524], + [113.17499406171223, -5.721872747834027], + [112.7249943804961, -6.39309949782384], + [112.7249943804961, -6.616650693475464], + [112.74667436513809, -7.258591948594869], + [112.83749430080022, -6.616650693475464], + [112.94999422110416, -6.39309949782384], + [114.45604315420499, -6.097992024119321], + [116.140885345263, -6.097992024119321], + [117.44999103326418, -6.169450529574419], + [118.79999007691222, -5.273944363641391], + [119.41238964308272, -5.152180217334632], + [118.79999007691222, -5.161910662112973], + [116.58310164737688, -4.628705101793656], + [114.74999294596827, -4.601453764837203], + [114.2999932647522, -4.377144375531941], + [114.2999932647522, -3.703826470668162], + [114.60399304939611, -3.327586828573203] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "indigo-west", + "name": "INDIGO-West", + "color": "#a47c2c", + "feature_id": "indigo-west-0", + "coordinates": [106.53613018762641, -14.85914706498238] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [103.85303066547843, 1.294067636025204], + [103.83750067648, 1.01853421661562], + [103.83750067648, 0.793562652607278], + [104.17500043739219, 0.627825578639062], + [104.84999995921609, 0.512331397069687], + [105.52499948104, 0.118588418888407], + [106.19999900286413, -0.781386636225506], + [106.98549844640908, -2.130918480960247], + [107.0999983652961, -3.029995968008762], + [107.0999983652961, -4.601453764837203], + [106.76249860438415, -5.273944363641391], + [106.70624864423215, -5.721872747834027], + [106.83339855415792, -6.171588071824203], + [106.4249988434722, -5.777839699209608], + [105.88026922936368, -5.924173215600462], + [105.74999932164823, -6.001651664913879], + [105.29999964043216, -6.057590432424689], + [104.84999995921609, -6.616650693475464], + [104.84999995921609, -7.509810688339655], + [105.29999964043216, -11.943944931746927], + [108.89999708956415, -20.433922197637315], + [111.14999549624022, -27.153831285391675], + [112.94999422110416, -30.309953344646914], + [113.84999358353613, -31.08383471876715], + [115.85731216153286, -31.95344133032441] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "junior", + "name": "Junior", + "color": "#939597", + "feature_id": "junior-0", + "coordinates": [-44.59798566136823, -23.927642902465152] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-46.328062944825774, -23.961842897596995], + [-44.99989388571311, -24.111502734257556], + [-43.649894842065066, -23.493922445897766], + [-43.209565153998795, -22.903486555497864] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "skagerrak-4", + "name": "Skagerrak 4", + "color": "#60bb46", + "feature_id": "skagerrak-4-0", + "coordinates": [8.933237151289035, 57.372833879784395] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [7.996258571315195, 58.15106571642474], + [8.437568258687293, 57.93205658695149], + [8.775068019599274, 57.571890279005004], + [9.112567780511228, 57.14714566273739], + [9.112567780511228, 56.840738642145595], + [9.225067700815345, 56.717468482041056], + [9.281317660967318, 56.59379297841909], + [9.337567621119263, 56.5628106790318], + [9.611687426930246, 56.510791530389184] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "atisa", + "name": "Atisa", + "color": "#56be8d", + "feature_id": "atisa-0", + "coordinates": [144.8895850351337, 14.530318141710865] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [145.62927107079807, 14.958774985807963], + [145.46247118896056, 14.9098938602896], + [145.12497142804838, 14.9098938602896] + ], + [ + [144.78747166713643, 14.365653759228536], + [145.0124715077445, 14.365653759228536], + [145.1343514214037, 14.144936296053942] + ], + [ + [144.69470173285575, 13.464772962370034], + [144.67497174683248, 13.929303843271725], + [144.78747166713643, 14.365653759228536], + [145.12497142804838, 14.9098938602896], + [145.34997126865645, 15.127208002058438], + [145.69958102098977, 15.151813296858165] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tui-samoa", + "name": "Tui-Samoa", + "color": "#ba8c34", + "feature_id": "tui-samoa-0", + "coordinates": [-176.2024591526966, -14.475800138388479] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-176.17500034981677, -13.28200057514735], + [-175.7248012789621, -13.698987269610853], + [-175.49980143835418, -14.135775375064753] + ], + [ + [-178.1581082284118, -14.29683787673278], + [-177.74979984443416, -14.57172649133264], + [-177.2998001632181, -15.006817032918917] + ], + [ + [179.34974953238176, -16.80801177359578], + [179.54994704107284, -17.16855309422607], + [179.99993262111886, -17.59799899615561] + ], + [ + [-171.76669408292253, -13.833489255757883], + [-171.8998039886261, -13.480286782092094], + [-172.23730374953826, -13.261386000117113], + [-172.79980335105807, -13.261386000117113], + [-175.49980143835418, -14.135775375064753], + [-177.2998001632181, -15.006817032918917], + [-179.54979856929822, -17.16855309422607], + [-179.99979825051417, -17.59799899615561] + ], + [ + [-171.8998039886261, -13.480286782092094], + [-172.01230390893014, -13.589662250511992], + [-172.17816102513325, -13.670594022635811] + ], + [ + [178.43744782917761, -18.12381094353711], + [178.87496111451927, -18.1345594776067], + [179.99993262111886, -17.59799899615561] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bugio", + "name": "BUGIO", + "color": "#d33894", + "feature_id": "bugio-0", + "coordinates": [-9.356394683523376, 38.45053529435128] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-9.331559153496016, 38.69016197235561], + [-9.431509082690525, 38.61206568189243], + [-9.352749138484882, 38.44269570155157], + [-9.20269924478157, 38.36471443161014], + [-9.102749315587062, 38.443079483141986] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "quintillion-subsea-cable-network", + "name": "Quintillion Subsea Cable Network", + "color": "#baab31", + "feature_id": "quintillion-subsea-cable-network-0", + "coordinates": [-161.33751646696302, 71.19090757693874] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-161.11856210313954, 71.2456293000943], + [-160.649811958226, 70.80045445855757], + [-160.0383428956656, 70.6369472699777] + ], + [ + [-168.29980653889805, 68.12014116880246], + [-166.94980749525, 67.4394931950778], + [-165.59980845160197, 67.09168603590075], + [-163.79980972673806, 66.91588535690659], + [-162.59668101868573, 66.89834123906633] + ], + [ + [-167.84980685768198, 68.61776755908173], + [-167.3998071764661, 68.45310188361526], + [-166.80805792891852, 68.34777271452057] + ], + [ + [-156.78863527988355, 71.29055679250217], + [-156.59981482728193, 71.38369549089958], + [-156.59981482728193, 71.6688723488943] + ], + [ + [-148.33844147955003, 70.25564680477646], + [-148.0498208841779, 70.50227660282823], + [-148.4998205653939, 70.80045445855757], + [-155.2498157836339, 71.6688723488943], + [-158.399813552146, 71.6688723488943], + [-161.11856210313954, 71.2456293000943], + [-162.8998103643061, 70.80045445855757], + [-166.94980749525, 69.10459505606227], + [-167.84980685768198, 68.61776755908173], + [-168.29980653889805, 68.12014116880246], + [-168.52480637950612, 66.01760945207974], + [-168.07480669829013, 64.8962822062035], + [-166.94980749525, 64.31739001144422], + [-166.04980813281807, 64.31739001144422], + [-165.4063989572757, 64.50111053726943] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "arsat-submarine-fiber-optic-cable", + "name": "ARSAT Submarine Fiber Optic Cable", + "color": "#e12825", + "feature_id": "arsat-submarine-fiber-optic-cable-0", + "coordinates": [-68.46704320378186, -52.55423589863918] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-68.41974729486917, -52.39021716428195], + [-68.45812726768037, -52.54751033211764], + [-68.60578716307674, -52.65889476082427] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "balok", + "name": "BALOK", + "color": "#35bba4", + "feature_id": "balok-0", + "coordinates": [115.91094573738204, -8.399360919774722] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [115.74667223991136, -8.38626016131127], + [115.9332421077435, -8.401139048122928], + [116.04726202697086, -8.485465010786783] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pencan-9", + "name": "Pencan-9", + "color": "#86c440", + "feature_id": "pencan-9-0", + "coordinates": [-11.540609046184585, 33.07476541382135] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-6.428881209780371, 36.73129423644173], + [-7.199920663568747, 36.42191605012607], + [-8.774919547824737, 35.419780517080454], + [-10.799918113296798, 33.93964008831958], + [-14.399915563024848, 29.73606949729205], + [-14.849915244240833, 28.951554732193216], + [-15.450744818607603, 28.09637444868102] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "taba-aqaba", + "name": "Taba-Aqaba", + "color": "#98a439", + "feature_id": "taba-aqaba-0", + "coordinates": [34.950974476341685, 29.512254681383894] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [34.894869516086914, 29.492576422604117], + [34.950974476341685, 29.512254681383894], + [35.007079436596456, 29.53192911521984] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tannat", + "name": "Tannat", + "color": "#34a8a7", + "feature_id": "tannat-0", + "coordinates": [-47.401374671328654, -31.994362705245862] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-46.328062944825774, -23.961842897596995], + [-45.89989324814505, -25.13418654706126], + [-45.44989356692909, -27.951747285219852], + [-47.69989197300907, -32.61276000573585], + [-50.84988974152117, -34.48775447869497], + [-53.54988782881715, -35.22626671976636], + [-54.95018683683219, -34.900416027051364] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tannat", + "name": "Tannat", + "color": "#939597", + "feature_id": "tannat-1", + "coordinates": [-55.071481156910636, -35.94204986875076] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-53.54988782881715, -35.22626671976636], + [-53.99988751003313, -35.59302880961411], + [-56.69544224110189, -36.47097855291446] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "south-atlantic-inter-link-sail", + "name": "South Atlantic Inter Link (SAIL)", + "color": "#c62a26", + "feature_id": "south-atlantic-inter-link-sail-0", + "coordinates": [-13.859932011165085, -2.6142006522582335] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-38.54296845985962, -3.718735129291019], + [-35.999900261393066, -2.580536704984041], + [-34.199901536528955, -2.130918480960247], + [-25.199907912208914, -1.906058394384871], + [-10.799918113296798, -2.805287932308005], + [-3.599923213840782, -2.805287932308005], + [0.450073917103168, -1.081346446098905], + [6.300069772911229, 1.918228780215685], + [8.10006849777534, 2.480311786858834], + [9.00006786020731, 2.592701464601845], + [9.91022721544212, 2.933124533518679] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "brusa", + "name": "BRUSA", + "color": "#c86d28", + "feature_id": "brusa-0", + "coordinates": [-42.08907980888398, 8.420314618733528] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-63.449880815569244, 24.941363171753835], + [-65.69987922164925, 20.375041253465525], + [-66.14987890286532, 19.104405475930548], + [-66.10666604285262, 18.4661054185857] + ], + [ + [-35.549900580176995, 0.568578852526286], + [-36.899899623825036, -0.781386636225506], + [-38.542964866112186, -3.718736532579186] + ], + [ + [-43.20956312275021, -22.90349520937403], + [-42.299895798417, -23.905969261790176], + [-40.94989675476907, -24.31670674946909], + [-37.34989930504102, -23.493922445897766], + [-32.849902492881, -18.026426383713385], + [-31.049903768016975, -13.698987269610853], + [-29.92490456497697, -9.290424301035614], + [-31.499903436794966, -4.825692486823471], + [-35.549900580176995, 0.568578852526286], + [-41.399896435985056, 7.744889052551343], + [-48.59989133544116, 14.801154224791475], + [-57.599884959761184, 21.21639789994191], + [-63.449880815569244, 24.941363171753835], + [-69.2998766713773, 29.73606949729205], + [-73.34987380232134, 33.565491482352144], + [-75.59987220840135, 35.78566189952613], + [-75.82487204900939, 36.14986678681771], + [-76.05919805488558, 36.755008440642456] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "ellalink", + "name": "EllaLink", + "color": "#c22c75", + "feature_id": "ellalink-0", + "coordinates": [-22.752051804950668, 17.488128542119313] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-38.542964866112186, -3.718736532579186], + [-36.44989994260905, -0.781386636225506], + [-35.09990089896101, 0.568578852526286], + [-31.049903768016975, 3.715978119297972], + [-27.85950075469046, 7.716632622882912], + [-25.649907593424984, 11.294709319565555], + [-24.299908549776944, 14.365653759228536], + [-24.07490870916891, 14.801154224791475], + [-23.39990918734489, 16.10232559580288], + [-21.599910462480864, 19.952622905164304], + [-19.599911879298674, 22.884654113882362], + [-18.449912693968884, 24.941363171753835], + [-17.66241325184083, 27.763588526057674], + [-17.470384579281784, 28.275606244082894], + [-17.099913650320843, 28.951554732193216], + [-17.198548585293963, 29.690264251007818], + [-17.54520361315727, 32.07431422012104], + [-17.32491349092888, 32.81231878328768], + [-17.099913650320843, 33.18971466460036], + [-13.949915881808863, 35.419780517080454], + [-12.149917156944838, 36.51238821239372], + [-9.449919069648843, 37.85673997565843], + [-8.86959721512926, 37.95721527519197] + ], + [ + [-23.521209101414883, 14.923035560171769], + [-23.849908868560874, 14.801154224791475], + [-24.07490870916891, 14.801154224791475] + ], + [ + [-17.099913650320843, 33.18971466460036], + [-16.874913809712808, 32.81231878328768], + [-16.908898160638017, 32.647276965637786] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "gulf2africa-g2a", + "name": "Gulf2Africa (G2A)", + "color": "#d1b32a", + "feature_id": "gulf2africa-g2a-0", + "coordinates": [49.1912406255353, 13.778332750979501] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [49.18792939074925, 11.275556936623303], + [48.600039807215495, 13.492128176464178] + ], + [ + [54.14808587692781, 17.095827186725558], + [54.000035981807684, 16.53419619825962], + [52.650036938159616, 15.452760959322148], + [48.600039807215495, 13.492128176464178], + [45.450042038703714, 12.615395567393307], + [45.123342270140824, 10.81596353465244], + [45.01088234980861, 10.435118748992778] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "nigeria-cameroon-submarine-cable-system-ncscs", + "name": "Nigeria Cameroon Submarine Cable System (NCSCS)", + "color": "#36b449", + "feature_id": "nigeria-cameroon-submarine-cable-system-ncscs-0", + "coordinates": [5.613815221846409, 2.9887897201357703] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [3.423511810692077, 6.439066911484701], + [4.050071366831219, 4.164912849976844], + [5.400070410479259, 3.042156042425745], + [6.300069772911229, 2.817450442654064], + [8.10006849777534, 2.705081160335851], + [9.00006786020731, 2.817450442654064], + [9.91022721544212, 2.933124533518679] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "san-andres-isla-tolu-submarine-cable-sait", + "name": "San Andres Isla Tolu Submarine Cable (SAIT)", + "color": "#c28c2b", + "feature_id": "san-andres-isla-tolu-submarine-cable-sait-0", + "coordinates": [-78.77573743973245, 10.715014824972656] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-81.70055036987333, 12.584703013278954], + [-78.29987029569733, 10.410816505402636], + [-76.4998715708334, 9.96791518697421], + [-75.55866223759489, 9.496381979983852] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "lynn-canal-fiber", + "name": "Lynn Canal Fiber", + "color": "#45bfb2", + "feature_id": "lynn-canal-fiber-0", + "coordinates": [-135.23193605581744, 58.90140007130901] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-135.31389103529196, 59.45834443079909], + [-135.38508098306187, 59.30041545947938], + [-135.44500093910028, 59.2358377826385], + [-135.3499810088137, 59.08261616806959], + [-135.25154108103624, 58.96140764309092], + [-135.2016911176098, 58.808825576745505], + [-135.07029121401413, 58.684515846670934], + [-135.02390124804907, 58.59201827449451], + [-134.74729145098985, 58.55104926823199] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "hifn-hawaii-island-fibre-network", + "name": "HIFN (Hawaii Island Fibre Network)", + "color": "#d2da26", + "feature_id": "hifn-hawaii-island-fibre-network-0", + "coordinates": [-156.8200810094662, 20.603833377097743] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-157.55220471967436, 20.732751122479783], + [-157.16231442880195, 20.901439785237727], + [-157.0238851072874, 21.093359005003947] + ], + [ + [-156.75972530109394, 20.636456177868524], + [-156.8968852004637, 20.746451785321682] + ], + [ + [-157.6960046141724, 21.27755746368038], + [-157.74600457748895, 21.173966491361455], + [-157.74600457748895, 20.893863273745836], + [-157.55220471967436, 20.732751122479783], + [-157.34732486998882, 20.562320024196396], + [-156.8968852004637, 20.562320024196396], + [-156.75972530109394, 20.636456177868524], + [-156.46309551872278, 20.78215184399818], + [-156.487314906978, 20.585819096040467], + [-156.374814986674, 20.48046637597571], + [-156.09356518591372, 20.26954403592967], + [-155.8314059821754, 20.039988105686604] + ], + [ + [-159.36856338706377, 21.974943031077714], + [-159.17960352569816, 21.924671936671842], + [-158.84981323336214, 21.635297384859456], + [-158.45606405653848, 21.4602691988772], + [-158.22066328843272, 21.463446823448095] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "hics-hawaii-inter-island-cable-system", + "name": "HICS (Hawaii Inter-Island Cable System)", + "color": "#c92c40", + "feature_id": "hics-hawaii-inter-island-cable-system-0", + "coordinates": [-156.70771642607986, 20.78215184399818] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-157.6960046141724, 21.27755746368038], + [-157.6960046141724, 21.173966491361455], + [-157.4998141897139, 21.053169495094266], + [-157.16231442880195, 20.953979036598952], + [-157.00733511942968, 21.011512865948674], + [-156.82481466789, 20.953979036598952], + [-156.75357530560603, 20.880185347559603], + [-156.71309533530507, 20.78215184399818], + [-156.46309551872278, 20.78215184399818], + [-156.43106554222229, 20.585819096040467], + [-156.31856562476025, 20.48046637597571], + [-156.03731522576194, 20.26954403592967], + [-155.8314059821754, 20.039988105686604] + ], + [ + [-159.36856338706377, 21.974943031077714], + [-159.26846346050425, 21.8820852936976], + [-158.84981323336214, 21.530685333962452], + [-158.39981355214616, 21.32123529551194], + [-158.11949430347016, 21.339697571515984] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "unisur", + "name": "Unisur", + "color": "#af5b39", + "feature_id": "unisur-0", + "coordinates": [-55.66534984935997, -35.848967439550705] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-54.95018683683219, -34.900416027051364], + [-55.34988655368117, -35.59302880961411], + [-55.79988623489716, -35.95811819864912], + [-56.69544560047457, -36.47095527632115] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "transcan-3", + "name": "TRANSCAN-3", + "color": "#d82729", + "feature_id": "transcan-3-0", + "coordinates": [-14.846845214219456, 28.53159336365468] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-15.699964642057836, 27.99976141196052], + [-15.63741468696486, 28.194108049097963], + [-15.524914766660828, 28.293214058016247], + [-14.399915563620823, 28.68871408880051], + [-13.827315969255693, 28.863419398977413] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "northern-lights", + "name": "Northern Lights", + "color": "#b3c134", + "feature_id": "northern-lights-0", + "coordinates": [-3.599923213840782, 58.881066344862205] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-3.354957518022701, 59.051457394755545], + [-3.599923213840782, 58.99117670269845], + [-3.599923213840782, 58.75856894488285], + [-3.376583372056757, 58.67032899288881] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "swansea-brean", + "name": "Swansea-Brean", + "color": "#c96e2f", + "feature_id": "swansea-brean-0", + "coordinates": [-3.6003394719407993, 51.40042511546443] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-4.169502810345278, 51.55809471609601], + [-4.049922895056767, 51.48186396294838], + [-3.010863631136061, 51.29364574899657] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "jambi-batam-cable-system-jiba", + "name": "Jambi-Batam Cable System (JIBA)", + "color": "#574099", + "feature_id": "jambi-batam-cable-system-jiba-0", + "coordinates": [104.00625055693607, 0.04308486918304766] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [103.95970058991267, 1.133513836518915], + [104.006575556706, 0.906050180868988], + [104.03462553683514, 0.793562652607278], + [104.03437553701198, 0.627825578639062], + [104.00625055693607, 0.118588418888407], + [104.00625055693607, -0.331409329660175], + [103.46670093915824, -0.816543192375462] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "segunda-fos-canal-de-chacao", + "name": "Segunda FOS Canal de Chacao", + "color": "#9fa237", + "feature_id": "segunda-fos-canal-de-chacao-0", + "coordinates": [-73.32529820833415, -41.906663419836406] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-73.15529394016347, -41.80693750006313], + [-73.25265387119285, -41.872416746798734], + [-73.50446369280843, -41.99112728870605] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sistem-kabel-rakyat-1malaysia-skr1m", + "name": "Sistem Kabel Rakyat 1Malaysia (SKR1M)", + "color": "#b64d26", + "feature_id": "sistem-kabel-rakyat-1malaysia-skr1m-0", + "coordinates": [114.35435923146437, 5.220885323200008] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [103.85068066714334, 2.295702456949584], + [104.40000027800002, 2.536507846510915], + [105.74999932164823, 3.210654701478347], + [107.0999983652961, 3.828234303320954], + [107.99999772772824, 4.389285926050889], + [108.44999740894414, 4.389285926050889], + [108.89999709016004, 4.164912849976844], + [109.79999645259218, 2.367912558705314], + [110.24999613380825, 1.918228780215685], + [110.35370606033919, 1.520169126642031], + [110.47499597441615, 1.918228780215685], + [110.69999581502415, 2.367912558705314], + [111.59999517745612, 3.042156042425745], + [112.49999453988826, 3.266814816815753], + [113.06835413725688, 3.197006076977885], + [113.17499406171223, 3.715978119297972], + [113.39999390232023, 4.164912849976844], + [114.00741347201856, 4.425309062538702], + [114.0749934241442, 5.061986954416028], + [115.64999230840024, 5.957818681088611], + [116.07431200780823, 5.981320525191649], + [115.64999230840024, 6.069699469735895], + [110.69999581502415, 5.510071711803135], + [107.99999772772824, 5.398081130463737], + [105.29999964043216, 4.613591578862867], + [103.72500075617612, 4.389285926050889], + [103.39521098980222, 4.116310078259517] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "aqualink", + "name": "Aqualink", + "color": "#25b35d", + "feature_id": "aqualink-0", + "coordinates": [174.7113119849627, -37.88080585940045] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [173.68300119667649, -42.40269875623838], + [174.1499508658848, -42.29250328834095], + [174.71245046740475, -41.62324076294928], + [174.76712042867618, -41.28051296355844] + ], + [ + [173.50613132197256, -42.51606222990878], + [173.6999511846689, -42.78983315675495], + [173.24995150345282, -43.44677235710097], + [172.63622193822457, -43.532054981068285] + ], + [ + [174.99747026549423, -40.919112232059234], + [174.82495038770887, -40.94695905083634], + [174.83800037846405, -41.10579929869007] + ], + [ + [175.04999905640736, -39.93333487547832], + [174.82495038770887, -40.09176946134497], + [174.82495038770887, -40.6061925832843], + [175.051960226893, -40.86278592990223] + ], + [ + [174.08333091307904, -39.066666256623506], + [174.14995086648068, -38.81782397325085], + [174.2624507867848, -38.46634757786356], + [174.59995054769675, -37.93590700435155], + [174.87183035509466, -37.80138208221919], + [174.59995054769675, -37.66923969785131], + [174.4874506273928, -37.40161074814375], + [174.59995054769675, -37.04328040742419], + [174.77046042690606, -36.88418050095055] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bt-highlands-and-islands-submarine-cable-system", + "name": "BT Highlands and Islands Submarine Cable System", + "color": "#48c1c4", + "feature_id": "bt-highlands-and-islands-submarine-cable-system-0", + "coordinates": [-5.759517843572752, 58.04737095177353] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-2.939523681673961, 59.27976821327732], + [-2.959153667767964, 59.3217849002468], + [-2.959153667767964, 59.35045711950005] + ], + [ + [-5.028092202112504, 55.75184157675699], + [-4.985982231943467, 55.74730813687762], + [-4.943872261774544, 55.742774170166626] + ], + [ + [-4.86730231601743, 55.79334124050908], + [-4.883882304272134, 55.78675194417505], + [-4.900462292526612, 55.78016153313595] + ], + [ + [-5.141422121828413, 55.643559473635236], + [-5.000747221483891, 55.65942265518194], + [-4.889372300382831, 55.69304893491429] + ], + [ + [-5.019992207850606, 55.86941398754456], + [-5.0417921924072, 55.864001988519874], + [-5.063592176963908, 55.858589235368186] + ], + [ + [-5.533421844132192, 55.47654965962829], + [-5.420921923828161, 55.47654965962829], + [-5.332101986748995, 55.50194290033235] + ], + [ + [-6.125411424761126, 55.63612077746126], + [-5.96242154022471, 55.58970711313168], + [-5.697581727839776, 55.565501435695694] + ], + [ + [-6.089911449909636, 55.846750945319116], + [-6.098116444097258, 55.84724498115801], + [-6.106321438284681, 55.84773901071773] + ], + [ + [-5.614571786644802, 55.89168249844937], + [-5.858221614040986, 55.833673555351936], + [-5.953831546309999, 55.833673555351936] + ], + [ + [-5.365791962882753, 56.01942001909663], + [-5.343501978673203, 56.01385285953853], + [-5.321211994463596, 56.00828489747781] + ], + [ + [-5.669351747838164, 56.4558441736221], + [-5.556821827555467, 56.4558441736221], + [-5.47580188495067, 56.43776501147141] + ], + [ + [-6.09396144704067, 56.68857026168783], + [-6.070281463815718, 56.65279887225901], + [-6.070281463815718, 56.62185065462566] + ], + [ + [-6.808510940847043, 56.50378880151479], + [-6.715941006424458, 56.4660986568791], + [-6.35617126128875, 56.582124582372074], + [-6.27238132064636, 56.582124582372074] + ], + [ + [-5.24538204818225, 56.722533265758415], + [-5.239522052333541, 56.7220504122194], + [-5.233662056484746, 56.721567552480195] + ], + [ + [-5.906461579867312, 57.05920793730024], + [-5.850171619743605, 57.02861361880741], + [-5.820431640811762, 57.00848292332864] + ], + [ + [-7.328140572736515, 57.1055355392275], + [-7.320160578389704, 57.093533957744626], + [-7.31218058404275, 57.081528490010754], + [-7.307195587574256, 57.07757471896545], + [-7.302210591105592, 57.07362052649796], + [-7.316690580847848, 57.04945954995475], + [-7.331170570590132, 57.02528284471751], + [-7.390325528684144, 57.02528284471751], + [-7.449480486778242, 57.02528284471751] + ], + [ + [-7.274140610990628, 57.36669044941743], + [-7.038200778132733, 57.36669044941743], + [-6.792990951841603, 57.54483225323753], + [-6.69289102275323, 57.54483225323753], + [-6.581661101549599, 57.43632363474572] + ], + [ + [-7.008370799264441, 57.76940715085976], + [-6.91462086567779, 57.67895376061], + [-7.022330789375133, 57.585685134484436], + [-7.163350689475209, 57.59937295262881] + ], + [ + [-6.310761293457659, 58.20906859046727], + [-6.119061429259602, 58.136377321810016], + [-5.475071885467827, 57.976955282546385], + [-5.196212083014672, 57.934079351013565] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "c-lion1", + "name": "C-Lion1", + "color": "#7dc042", + "feature_id": "c-lion1-0", + "coordinates": [18.851062398884636, 56.3743407954166] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [24.93247657353959, 60.171163188940454], + [24.4125569418554, 59.736409384078485], + [23.85005734033541, 59.622821769410336], + [23.175057818511476, 59.451717318905224], + [22.275058456079336, 59.22222391484422], + [21.15005925303933, 58.641677771384906], + [20.25005989060736, 57.571890279005004], + [19.125060687567355, 56.46971137654694], + [17.325061962703415, 55.84318584148099], + [15.30006339723144, 55.58970711313168], + [14.4000640347993, 55.33458061322915], + [13.50006467236733, 54.94878902385568], + [12.60006530993536, 54.68951871778469], + [12.15006562871929, 54.29748595281848], + [12.037565708415343, 54.165971787151676], + [12.132485641173247, 54.079177416570104] + ], + [ + [23.175057818511476, 59.451717318905224], + [22.95005797790344, 59.736409384078485], + [22.966757966073033, 59.82340864139897] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "far-east-submarine-cable-system", + "name": "Far East Submarine Cable System", + "color": "#a8346b", + "feature_id": "far-east-submarine-cable-system-0", + "coordinates": [144.41887892143464, 53.58378795809725] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [151.28336706538326, 59.58333960684476], + [151.1999671244645, 59.33716441962133], + [150.86246736355255, 58.99117670269845], + [147.59996967473646, 56.09502251152725], + [143.5499725437925, 53.768910566668154], + [142.94245297416515, 53.57753961709912], + [143.5499725437925, 53.63571515699499], + [154.79996457419256, 52.963398105593654], + [156.28707352071072, 52.8124095088161] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "isles-of-scilly-cable", + "name": "Isles of Scilly Cable", + "color": "#804399", + "feature_id": "isles-of-scilly-cable-0", + "coordinates": [-5.992594434900553, 50.026881511982594] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-6.30817129529234, 49.919910522553806], + [-6.074921460528742, 50.02292045625484], + [-5.654511758350935, 50.04314791189421] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "new-cross-pacific-ncp-cable-system", + "name": "New Cross Pacific (NCP) Cable System", + "color": "#22ad97", + "feature_id": "new-cross-pacific-ncp-cable-system-0", + "coordinates": [150.18288606612575, 39.04324962041338] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [121.89607788361477, 30.935660541111474], + [121.61248808391636, 30.93356762160542], + [121.27498832300435, 31.126369331761197], + [121.27498832300435, 31.510798430048965], + [121.39529823837174, 31.619800328867854] + ], + [ + [131.39998115096031, 29.1482487910327], + [128.6999830636644, 26.159307970773796], + [127.34998402001636, 25.55188275942578], + [125.99998497636832, 25.348717422116806], + [124.19998625150438, 24.941363171753835], + [122.84998720785634, 25.043329056612095], + [122.17498768603221, 24.992356687673748], + [121.80144795065141, 24.863504112487874] + ], + [ + [140.39997477528036, 33.565491482352144], + [140.1749749346723, 33.93964008831958], + [139.7812252136084, 34.40502275071583], + [139.8169651882899, 35.03751783625896] + ], + [ + [128.24998338244833, 30.514495959759188], + [128.24998338244833, 31.67051304708704], + [128.47498322305617, 32.81231878328768], + [128.92498290427224, 34.31215165223537], + [128.99949285148878, 35.17037876180012] + ], + [ + [125.99998497636832, 30.901396088515583], + [124.19998625150438, 31.67051304708704], + [122.84998720785634, 31.861808602270827], + [121.94998784542437, 31.71837400188724], + [121.39529823837174, 31.619800328867854] + ], + [ + [179.99995828233065, 47.19740739556977], + [172.7999518228328, 47.19740739556977], + [160.19996074878455, 44.051519228735145], + [149.39996839960057, 38.651811712711236], + [143.09997286257644, 34.68301765985788], + [140.39997477528036, 33.565491482352144], + [138.59997605041642, 32.81231878328768], + [136.79997732555248, 31.67051304708704], + [134.99997860068837, 30.901396088515583], + [132.74998019460836, 30.514495959759188], + [131.39998115096031, 29.1482487910327], + [130.49998178852834, 29.34456698948989], + [128.24998338244833, 30.514495959759188], + [125.99998497636832, 30.901396088515583], + [122.17498768603221, 30.85311851188075], + [121.92508786246773, 30.86475026744725], + [121.89393788393855, 30.899508355977588], + [121.89607788361477, 30.935660541111474] + ], + [ + [-123.96253794783513, 45.20223210018429], + [-125.09983714216165, 45.64654149518748], + [-129.59983395432175, 45.96024524125332], + [-138.59982757864196, 46.58235508209589], + [-151.19981865268997, 47.19740739556977], + [-179.99979825051417, 47.19740739556977] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "monet", + "name": "Monet", + "color": "#5bba46", + "feature_id": "monet-0", + "coordinates": [-39.72300237716729, 6.79185635450537] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-34.649901217745025, 0.568578852526286], + [-35.999900261393066, -0.781386636225506], + [-38.54296845985962, -3.718735129291019] + ], + [ + [-46.328062944825774, -23.961842897596995], + [-44.54989420449712, -25.179443898921164], + [-41.399896435985056, -25.337712186601237], + [-36.674899783217, -24.111502734257556], + [-31.049903768016975, -18.026426383713385], + [-29.24990504315295, -13.698987269610853], + [-28.574905521329924, -9.290424301035614], + [-30.824903908753015, -4.152767729405667], + [-34.649901217745025, 0.568578852526286], + [-40.499897073553086, 7.744889052551343], + [-48.59989133544116, 15.669513225155328], + [-57.599884959761184, 20.796306105108954], + [-69.2998766713773, 25.754704263415306], + [-73.34987380232134, 27.763588526057674], + [-76.94987125204939, 27.962503359972544], + [-77.84987061448136, 27.763588526057674], + [-78.74986997691342, 27.26471187783389], + [-79.64986933934539, 26.763586569619832], + [-80.08893155227206, 26.35058457732009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sea-us", + "name": "SEA-US", + "color": "#4eb748", + "feature_id": "sea-us-0", + "coordinates": [-150.15808947955045, 27.02103594577568] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [144.69470173285575, 13.464772962370034], + [144.89997158744055, 13.273238157547667], + [145.34997126865645, 13.492128176464178], + [146.24997063108842, 14.038469666260113], + [147.14996999352056, 14.14758350694865], + [151.1999671244645, 14.365653759228536], + [160.19996074878455, 15.669513225155328], + [179.99992672230294, 18.251816319028308] + ], + [ + [125.0656106382879, 1.378623021535844], + [125.99998497636832, 1.918228780215685], + [126.4499846575844, 3.266814816815753], + [126.4499846575844, 5.061986954416028], + [133.19997987582443, 9.08033076823304], + [137.24997700676838, 10.853089690745378], + [143.9999722250084, 13.054150695298716], + [144.69469829535794, 13.464777824932952] + ], + [ + [125.61287587560011, 7.079988883160723], + [125.99998497636832, 5.957818681088611], + [126.4499846575844, 5.061986954416028] + ], + [ + [133.19997987582443, 9.08033076823304], + [133.64997955704033, 8.190543417795567], + [134.5609408257699, 7.531746239289589] + ], + [ + [137.24997700676838, 10.853089690745378], + [137.69997668798445, 9.96791518697421], + [138.06149986937814, 9.443922836169293] + ], + [ + [-118.39945344493319, 33.8624748689854], + [-120.59984033000163, 33.283811019051], + [-122.39983905486565, 33.00121852265437], + [-127.79983522945773, 32.81231878328768], + [-138.5998275786418, 29.73606949729205], + [-147.59982120296192, 28.161052262220892], + [-152.99981737755388, 25.754704263415306], + [-157.94981387093, 22.67720619658283], + [-158.399813552146, 22.05298561667763], + [-158.45606295953144, 21.73983373091116], + [-158.45606350661404, 21.635297384859456], + [-158.22066328843272, 21.463446823448095], + [-158.39981355214616, 21.268825931479142], + [-158.84981323336194, 21.00649984517682], + [-163.79980972673806, 19.952622905164304], + [-172.79980335105807, 19.952622905164304], + [-179.99979825051417, 18.251816319028308] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "faster", + "name": "FASTER", + "color": "#4bb748", + "feature_id": "faster-0", + "coordinates": [-152.11059071043024, 45.96024524125332] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [138.59997605041642, 32.24321001626265], + [136.79997732555248, 31.094262827639596], + [134.99997860068837, 30.320465424761352], + [131.39998115096031, 29.246454972180487], + [129.59998242609637, 28.951554732193216], + [128.24998338244833, 28.55704546571141], + [122.84998720785634, 26.461843796189072], + [121.94998784542437, 25.754704263415306], + [121.4625881907028, 25.181712818924467] + ], + [ + [-124.40833763202659, 43.1186640985502], + [-125.9998365045937, 43.07331078300331], + [-129.59983395432175, 43.72721479104973], + [-138.5998275786418, 45.01383364395318], + [-151.19981865269014, 45.96024524125332], + [-179.99979825051417, 45.96024524125332] + ], + [ + [140.39997477528036, 33.18971466460036], + [140.0624750143684, 33.93964008831958], + [140.1749749346723, 34.40502275071583], + [139.9548550906076, 34.97657002902224] + ], + [ + [138.59997605041642, 32.24321001626265], + [140.39997477528036, 33.18971466460036], + [143.09997286257644, 34.31215165223537], + [149.39996839960057, 37.58978657360316], + [160.19996074878455, 42.74371346443661], + [172.7999518228328, 45.96024524125332], + [179.99995828233065, 45.96024524125332] + ], + [ + [136.87399727311598, 34.33682825203164], + [137.69997668798445, 33.18971466460036], + [138.59997605041642, 32.24321001626265] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "kerch-strait-cable", + "name": "Kerch Strait Cable", + "color": "#36ada8", + "feature_id": "kerch-strait-cable-0", + "coordinates": [36.63054428182684, 45.368624377764036] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [36.477388395015794, 45.35698507082441], + [36.67504825499154, 45.372006522678475], + [36.770848187126035, 45.42360971041049] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "north-west-cable-system", + "name": "North West Cable System", + "color": "#4f479c", + "feature_id": "north-west-cable-system-0", + "coordinates": [122.92707989390621, -13.957692677548891] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [129.92498219586352, -10.011516755342626], + [130.1624820276164, -9.734235342300764], + [130.27498194792028, -9.734235342300764], + [130.27498194792028, -9.95592161622909], + [130.1624820276164, -10.177457430361159] + ], + [ + [129.20623270503225, -11.778847244506409], + [129.82498226670444, -10.841130095525784], + [130.1624820276164, -10.177457430361159], + [129.92498219586352, -10.011516755342626], + [129.7124823464005, -10.06670853150743], + [129.59998242609637, -10.620064860363328], + [129.0374828245762, -11.723727283361256] + ], + [ + [130.50000678851072, -12.219087219884159], + [130.5001317884223, -11.999142688339674], + [130.63208169494752, -11.762596324883674] + ], + [ + [118.57724023471044, -20.31344226536234], + [118.57499023630416, -18.880139975101287], + [118.12499055508832, -18.240251410711636], + [118.2374904753922, -17.59799899615561], + [120.59998880177616, -15.22403228464728], + [121.61248808451225, -14.898126357061557], + [122.28748760633616, -14.026655889819637], + [123.29998688907224, -13.917484462464614], + [124.42498609211222, -13.589662250511992], + [126.4499846575844, -11.50333384598423], + [127.34998402001636, -11.50333384598423], + [129.0374828245762, -11.723727283361256], + [129.20623270503225, -11.778847244506409], + [129.93758218693742, -11.998971512032199], + [130.50000678851072, -12.219087219884159], + [130.84314154543083, -12.46747433620365] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "terra-sw", + "name": "TERRA SW", + "color": "#63bb45", + "feature_id": "terra-sw-0", + "coordinates": [-155.8770595077482, 59.336668666544625] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-154.89976666569265, 59.718120043251616], + [-154.87637668285322, 59.695436046444314], + [-154.94356663355785, 59.63309075919986], + [-155.04512655904622, 59.59752775931577], + [-155.79356600993754, 59.40085271737078], + [-155.89473593571196, 59.32777430348355], + [-155.7763760225493, 59.387330229698335], + [-155.2649563977633, 59.46236377142185], + [-154.79356674360838, 59.46997939044749], + [-154.75274677355688, 59.44218602760361] + ], + [ + [-154.84668670463589, 59.7080485715488], + [-154.79200674475308, 59.52787100202244], + [-154.75274677355688, 59.44218602760361] + ], + [ + [-154.85884669571448, 59.94918397333103], + [-154.8525657444611, 59.9624117448507], + [-154.84771606848528, 59.972621618602176], + [-154.70811616737907, 60.06032279981204], + [-154.55811627364037, 60.128876021749335], + [-154.51763694605037, 60.14198209826003], + [-154.42950701070876, 60.17915062699825], + [-154.39043703937324, 60.19468724270362], + [-154.33692707863196, 60.20036807902241] + ], + [ + [-153.88047741351613, 59.77610434297918], + [-153.95606735805796, 59.76396060900032], + [-154.0357572995917, 59.73404564131664], + [-154.1232572353955, 59.71198775040105], + [-154.245127145983, 59.70174290294207], + [-154.39200703822144, 59.697802518247215], + [-154.64737685086388, 59.653599109675724], + [-154.69512681583112, 59.61807806397951], + [-154.75450677226564, 59.52153142088008], + [-154.75274677355688, 59.44218602760361] + ], + [ + [-154.84668670463589, 59.7080485715488], + [-154.90611602711408, 59.75471391016691] + ], + [ + [-153.88047741351613, 59.77610434297918], + [-153.9545073592025, 59.771825338743014], + [-154.04356729386168, 59.75687472421299], + [-154.09356725717814, 59.767107730226684], + [-154.10611659384122, 59.787212090872714], + [-154.12012723769186, 59.76631720126949], + [-154.16866720207952, 59.74738423416082], + [-154.31543709439865, 59.76081319116531], + [-154.4732569786106, 59.755303236949885], + [-154.64644685154622, 59.706893461930036], + [-154.82168672297766, 59.71671818723854], + [-154.90611602711408, 59.75471391016691] + ], + [ + [-151.5442491275403, 59.646565622018784], + [-152.09981801512194, 59.622821769410336], + [-152.99981737755388, 59.56588346342974], + [-153.54512765955266, 59.61807806397951], + [-153.5910776258405, 59.63553746032122], + [-153.63213759571602, 59.68237455442966] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "alaska-united-turnagain-arm-auta", + "name": "Alaska United Turnagain Arm (AUTA)", + "color": "#3e4b9f", + "feature_id": "alaska-united-turnagain-arm-auta-0", + "coordinates": [-149.35712107079763, 60.92189594566955] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-149.73219045699616, 61.01569206774266], + [-149.6314105309355, 60.96963910759561], + [-149.4837106392987, 60.95361622164211], + [-149.35138073638532, 60.92045755707332], + [-149.19513085102145, 60.92197391282372], + [-149.08732014920366, 60.88930284264339], + [-148.98981100165878, 60.82829123683615] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "acs-alaska-oregon-network-akorn", + "name": "ACS Alaska-Oregon Network (AKORN)", + "color": "#4c4fa1", + "feature_id": "acs-alaska-oregon-network-akorn-0", + "coordinates": [-137.94389964435564, 54.73163712377132] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-151.29166931285096, 60.68992891270409], + [-151.04161876476013, 60.567312045135765], + [-150.91661885331132, 60.444228327647664], + [-151.04161876476013, 60.258724767959194], + [-151.41919921928587, 60.02342960326277], + [-151.5442491275403, 59.835530750006114], + [-151.5442491275403, 59.646565622018784], + [-152.09981801512194, 59.50884868221257], + [-152.09981801512194, 59.1068949571908], + [-151.19981865268997, 58.8750683108978], + [-146.24982215931388, 58.52439396084483], + [-139.94982662228983, 56.840738642145595], + [-139.04982725985775, 55.84318584148099], + [-137.24982853499384, 54.03403825672413], + [-134.09983076648177, 50.740281893948264], + [-127.79983522945773, 45.33107107332478], + [-125.09983714216165, 44.051519228735145], + [-124.09993785049977, 43.98220183349406] + ], + [ + [-151.29166931285096, 60.68992891270409], + [-151.29166931285096, 60.84842055964978], + [-150.2334100892656, 61.1572910527679], + [-149.85841036439217, 61.217558335568384] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "adria-1", + "name": "Adria-1", + "color": "#65b545", + "feature_id": "adria-1-0", + "coordinates": [19.252270468971318, 41.16624298529169] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [19.91959012471534, 39.61953623629293], + [19.575060368783426, 39.78482855593708], + [19.01256076726341, 40.04369219282995], + [18.90006084695932, 40.387320290775165], + [19.125060687567355, 41.0693404382163], + [19.4500604573345, 41.31691028026597], + [19.125060687567355, 41.40772623743587], + [18.11256140483144, 42.41235450073577], + [18.10651140911733, 42.642077955426515] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "africa-coast-to-europe-ace", + "name": "Africa Coast to Europe (ACE)", + "color": "#8cc63f", + "feature_id": "africa-coast-to-europe-ace-0", + "coordinates": [-15.412392583191377, 7.410105237917236] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-18.449912693968884, 11.735650161405744], + [-16.64991396910486, 11.735650161405744], + [-16.199914287888873, 11.680570534838523], + [-15.791145687384272, 11.774131923775144] + ], + [ + [6.300069772911229, 2.367912558705314], + [8.10006849777534, 2.592701464601845], + [9.00006786020731, 2.705081160335851], + [9.91022721544212, 2.933124533518679] + ], + [ + [18.449961165814358, -33.69332014378628], + [17.55006180331145, -33.55534420877598], + [16.20006275966341, -32.61276000573585], + [14.85006371601537, -30.309953344646914], + [11.70006594750339, -23.493922445897766], + [10.35006690385535, -18.026426383713385], + [10.35006690385535, -10.620064860363328], + [9.00006786020731, -6.616650693475464], + [8.55006817899124, -4.825692499217524], + [6.987569285284223, 0.118588418888407], + [6.733269466028645, 0.333286471885856] + ], + [ + [7.200069135343199, 1.01853421661562], + [8.55006817899124, 0.793562652607278], + [9.454267538448192, 0.394465191855375] + ], + [ + [7.200069135343199, 1.468426767332062], + [9.00006786020731, 1.468426767332062], + [9.768227316036075, 1.860150409321903] + ], + [ + [3.423511810692077, 6.439066911484701], + [2.475072482575314, 4.164912849976844], + [2.250072641967279, 3.828234303320954] + ], + [ + [2.440112507341183, 6.356673335458169], + [1.800072960751208, 5.061986954416028], + [1.800072960751208, 3.828234303320954] + ], + [ + [-0.204315619320994, 5.558285889905761], + [-0.674925285936666, 3.279837005485092], + [-0.674925285936666, 2.830478071896835] + ], + [ + [-10.797188115230767, 6.300378530564558], + [-12.599916838160823, 4.613591578862867] + ], + [ + [-13.238096386068491, 8.485442435793999], + [-14.849915244240833, 6.852191098754417] + ], + [ + [-15.749914606672803, 7.744889052551343], + [-13.70382605614111, 9.513434601362718] + ], + [ + [-17.999913012752813, 13.492128176464178], + [-17.099913650320843, 13.492128176464178], + [-16.58136401766629, 13.456136894896872] + ], + [ + [-15.978284444893546, 18.083868491706937], + [-17.099913650320843, 18.251816319028308], + [-18.449912693968884, 18.251816319028308] + ], + [ + [-4.338542690595716, 47.81102015174923], + [-5.849921619920792, 47.65407102366086], + [-7.649920344784732, 46.89076287862241], + [-10.799918113296798, 43.40114497315386], + [-10.799918113296798, 39.69832335493328], + [-10.349918432080813, 39.00237890905848], + [-9.331559153496016, 38.69016197235561], + [-9.899918750864742, 38.29952060596935], + [-11.249917794512783, 36.51238821239372], + [-11.699917475728853, 35.419780517080454], + [-13.274916359984843, 32.052708023486105], + [-14.174915722416813, 29.73606949729205], + [-14.737415323936801, 28.161052262220892], + [-15.299914925456818, 26.964304734562802] + ], + [ + [2.475072482575314, 4.164912849976844], + [5.400070410479259, 2.592701464601845], + [6.300069772911229, 2.367912558705314], + [7.200069135343199, 1.468426767332062], + [7.200069135343199, 1.01853421661562], + [6.733269466028645, 0.333286471885856] + ], + [ + [-16.51801406254387, 28.059088061264703], + [-16.199914287888873, 27.56430948794184], + [-15.299914925456818, 26.964304734562802], + [-17.099913650320843, 22.884654113882362], + [-18.449912693968884, 19.952622905164304], + [-18.449912693968884, 16.53419619825962], + [-17.999913012752813, 15.23578178303569], + [-17.44571340535299, 14.686594841995088], + [-17.999913012752813, 13.929303843271725], + [-17.999913012752813, 13.492128176464178], + [-18.449912693968884, 11.735650161405744], + [-17.099913650320843, 8.635699417327544], + [-15.749914606672803, 7.744889052551343], + [-14.849915244240833, 6.852191098754417], + [-12.599916838160823, 4.613591578862867], + [-10.799918113296798, 2.817450442654064], + [-5.399921938704722, 2.817450442654064], + [-4.38742265596872, 3.266814816815753], + [-4.026242911831901, 5.323508791824736], + [-3.824923054448732, 3.266814816815753], + [-3.149923532624712, 2.817450442654064], + [-0.674925285936666, 2.830478071896835], + [1.575073120143173, 3.828234303320954], + [2.250072641967279, 3.828234303320954] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "alaska-united-east-au-east", + "name": "Alaska United East (AU-East)", + "color": "#d88227", + "feature_id": "alaska-united-east-au-east-0", + "coordinates": [-135.49971698875999, 55.30699096705496] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-146.35343293589432, 61.130356463051186], + [-146.5655427802754, 61.1211622680666], + [-146.67394270074547, 61.07351149028989], + [-146.8290725869311, 60.97605861690994], + [-146.8992325354567, 60.86794329208297], + [-147.08317240050525, 60.81100723809513], + [-147.52160207884185, 60.7882580984502], + [-147.88996180858683, 60.77965282959889], + [-148.03166170462575, 60.77038115412259], + [-148.2117815724768, 60.793738298603614], + [-148.32843148689415, 60.793738298603614], + [-148.39855143544912, 60.79676347493199], + [-148.5215513452076, 60.781322325047], + [-148.6847312254872, 60.7730276878024] + ], + [ + [-138.1498278974258, 57.08606597586797], + [-136.71804000510775, 58.13797154061908], + [-136.5253201465009, 58.177798548984185], + [-136.42180022245037, 58.23660537239948], + [-136.28035032622824, 58.26160640741634], + [-136.05867048886842, 58.27652705668882], + [-135.84562952974161, 58.31942897687665], + [-135.67214077245427, 58.324969220691486], + [-135.47415091771384, 58.25418318758662], + [-135.42462982798165, 58.22809752908367], + [-135.31174103686925, 58.17195575443668], + [-135.1689711416155, 58.15173586510335], + [-135.04065123576012, 58.16062073819006], + [-134.96702128978032, 58.197824452869355], + [-134.98333014060262, 58.28982779937181], + [-134.99954126592135, 58.35582639992131], + [-135.0003212653491, 58.42899050279709], + [-134.92327132187847, 58.45076363488815], + [-134.84319138063077, 58.41219086765227], + [-134.76047144132008, 58.34616641889022], + [-134.70139148466535, 58.33952725767904], + [-134.60315155674118, 58.356440225770825], + [-134.5422116014511, 58.3484229247305], + [-134.40686170075347, 58.29957675077529] + ], + [ + [-122.3157605716501, 47.82410083595485], + [-122.84983873608172, 48.256798568947545], + [-123.74983809851369, 48.331645382421584], + [-124.64983746094566, 48.55552775661812], + [-125.0998371421619, 48.55552775661812], + [-131.39983267918578, 50.740281893948264], + [-134.54983044769776, 54.03403825672413], + [-135.8998294913458, 55.84318584148099], + [-138.1498278974258, 57.08606597586797], + [-144.8998231156658, 58.52439396084483], + [-147.59982120296192, 59.451717318905224], + [-147.98004174249775, 59.849491839756666], + [-147.86071183004677, 59.95730042115315], + [-147.76134190295164, 60.01588909309447], + [-147.72926192648782, 60.10213978192459], + [-147.61520201017032, 60.237669158236145], + [-147.53332125007122, 60.304476348798715], + [-147.45905212473303, 60.47899019642449], + [-147.47692129002542, 60.590316134898785], + [-147.63376199655337, 60.620197465359496], + [-147.86442101551702, 60.6207763637542], + [-148.03610170136815, 60.665011707179104], + [-148.03610170136815, 60.69939513380339], + [-148.08639166447188, 60.75819549198792], + [-148.19582078075035, 60.78210822700612], + [-148.32580148882366, 60.78094157058311], + [-148.4135414244514, 60.78620827245604], + [-148.51818134768, 60.772241563154324], + [-148.6847312254872, 60.7730276878024] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "alaska-united-west-au-west", + "name": "Alaska United West (AU-West)", + "color": "#30b995", + "feature_id": "alaska-united-west-au-west-0", + "coordinates": [-136.26898871978074, 53.9495084331227] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-131.64788372493703, 55.34196841314818], + [-131.6278637396252, 55.18053443385054], + [-131.74758365179008, 54.99362892777967], + [-131.6248325197938, 54.81936191424907], + [-131.84983236040176, 54.559258765782204], + [-133.19983140404972, 54.559258765782204], + [-134.99983012891383, 54.4285813960183], + [-136.34982917256178, 54.03403825672413] + ], + [ + [-149.44767066574025, 60.11004931326181], + [-148.0498208841779, 59.451717318905224], + [-145.7998224780979, 58.52439396084483], + [-139.49982694107385, 56.840738642145595], + [-138.5998275786418, 55.84318584148099], + [-136.34982917256178, 54.03403825672413], + [-133.19983140404972, 50.740281893948264], + [-127.79983522945773, 47.50228998113275], + [-125.09983714216165, 46.427489586178865], + [-123.92376939189985, 46.16522099122727] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "alba-1", + "name": "ALBA-1", + "color": "#e11e25", + "feature_id": "alba-1-0", + "coordinates": [-71.07810156992376, 15.648402153871956] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-75.82892204614033, 20.029343742363466], + [-76.04987188961734, 19.529070924351004], + [-76.72487141144136, 18.67864702215462], + [-77.1032411434007, 18.398661383088154] + ], + [ + [-75.71237212870537, 19.96373301197181], + [-75.59987220840135, 19.104405475930548], + [-75.14987252718537, 18.251816319028308], + [-71.09987539624133, 15.669513225155328], + [-67.94987762772926, 12.615395567393307], + [-67.0498782652973, 11.294709319565555], + [-66.88962837881978, 10.603529760437084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "aletar", + "name": "Aletar", + "color": "#57b947", + "feature_id": "aletar-0", + "coordinates": [32.773344583317055, 33.178888886080955] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [29.893513059094772, 31.191465077638554], + [30.150052877359542, 31.67051304708704], + [35.55004905195153, 34.77547607575676], + [35.897798805602406, 34.89170328553857] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "alonso-de-ojeda", + "name": "Alonso de Ojeda", + "color": "#95ad3b", + "feature_id": "alonso-de-ojeda-0", + "coordinates": [-69.40457564357698, 12.145180356098109] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-69.87858626141407, 12.414622452999794], + [-69.74987635259329, 12.285833556268273], + [-69.07487683076927, 12.01088236045885], + [-68.89264695986272, 12.090439618305055] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "alpal-2", + "name": "ALPAL-2", + "color": "#b55927", + "feature_id": "alpal-2-0", + "coordinates": [2.7000723231831785, 38.08046938787112] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [2.901442180531063, 36.800219896643256], + [2.700072323183178, 37.232354321556215], + [2.700072323183178, 38.651811712711236], + [2.970972131275403, 39.35484412819346] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "americas-i-north", + "name": "Americas-I North", + "color": "#9b4d9d", + "feature_id": "americas-i-north-0", + "coordinates": [-70.13277581463579, 27.173023594546805] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-64.93708976201644, 18.372992194090983], + [-64.79987985921728, 18.89166158430325], + [-65.02487969982532, 20.796306105108954], + [-66.82487842468926, 23.711258142484382], + [-69.2998766713773, 26.763586569619832], + [-73.34987380232134, 28.75448641587161], + [-76.04987188961734, 28.55704546571141], + [-77.39987093326538, 28.359233526108653], + [-79.64986933934539, 27.763588526057674], + [-80.39425132826774, 27.638731771078767] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "amerigo-vespucci", + "name": "Amerigo Vespucci", + "color": "#b59a30", + "feature_id": "amerigo-vespucci-0", + "coordinates": [-68.57712870433583, 12.0700746294292] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-68.27663739624965, 12.15106719856388], + [-68.51237722924927, 12.06589527357022], + [-68.89264695986272, 12.090439618305055] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "antillas-1", + "name": "Antillas 1", + "color": "#3e60ac", + "feature_id": "antillas-1-0", + "coordinates": [-68.37100291297918, 18.663155774137294] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-69.98327618725065, 18.500285145347476], + [-69.69362639244132, 18.144943564296312], + [-69.2998766713773, 17.931002277731153], + [-68.51237722924927, 17.931002277731153], + [-68.28737738864132, 18.251816319028308], + [-68.43815728182749, 18.621371316104643], + [-68.1748774683373, 18.785187974742087], + [-67.49987794651328, 19.104405475930548], + [-67.0498782652973, 18.998067525949068], + [-66.48737866377729, 18.785187974742087], + [-66.08278895039238, 18.45360240878159] + ], + [ + [-66.08278895039238, 18.45360240878159], + [-66.04982897374158, 18.44772111440747], + [-66.01686899709078, 18.441839618642774] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "seax-1", + "name": "SEAX-1", + "color": "#61a042", + "feature_id": "seax-1-0", + "coordinates": [104.39998912954829, 1.9181839669934675] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [103.8506842608908, 2.295706828435243], + [104.32889093295782, 2.140106066877451], + [104.40000027800002, 1.918228780215685], + [104.28810035727113, 1.468426767332062], + [104.17793012281672, 1.263407170707467], + [104.13781784654563, 1.263407170707467] + ], + [ + [103.94648497427451, 1.327257988673239], + [104.13781784654563, 1.263407170707467] + ], + [ + [103.96259824410978, 1.134724535942212], + [104.0156255502948, 1.223182297279749], + [104.13781784654563, 1.263407170707467] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "apollo", + "name": "Apollo", + "color": "#d36f27", + "feature_id": "apollo-0", + "coordinates": [-38.23670372007902, 40.064635371036644] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-72.87218414072119, 40.80058099504518], + [-71.09987539624133, 40.21572406083388], + [-68.39987730894534, 40.55848045058687], + [-61.199882409489234, 40.72920412488665], + [-50.39989006030518, 42.079235618164205], + [-39.59989771112103, 44.37405751055866], + [-23.39990918734489, 48.40638249553794], + [-16.199914287888873, 49.294684219425534], + [-10.799918113296798, 50.16726116292705], + [-8.099920026000802, 50.45463912589386], + [-5.399921938704722, 50.88245364291035], + [-4.544402544762761, 50.82820142743802] + ], + [ + [-74.0470933084045, 40.123492658236984], + [-71.09987539624133, 39.69832335493328], + [-68.39987730894534, 39.351217571171134], + [-61.199882409489234, 38.29952060596935], + [-50.39989006030518, 38.47588134813884], + [-39.59989771112103, 39.69832335493328], + [-23.39990918734489, 44.051519228735145], + [-16.199914287888873, 45.96024524125332], + [-5.399921938704722, 49.14772788577403], + [-4.499922576272752, 49.00033438946335], + [-3.459883313046362, 48.730552979168635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "arcos", + "name": "ARCOS", + "color": "#51489d", + "feature_id": "arcos-0", + "coordinates": [-74.83250236614192, 11.428559129908393] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-74.19504320359542, 22.629891679112745], + [-74.47487300536135, 22.67720619658283], + [-74.58737292566536, 22.884654113882362], + [-74.47487300536135, 23.298598065875808], + [-74.47487300536135, 23.711258142484382], + [-74.92487268657733, 24.225251377401804], + [-75.52590226080238, 24.403328403350315], + [-75.77889084339488, 24.410331177006384], + [-76.4998715708334, 24.532657566160623], + [-76.94987125204939, 24.941363171753835], + [-77.34020097553618, 25.067217613601912], + [-77.84987061448136, 25.145210227401265], + [-79.1998696581294, 25.754704263415306], + [-80.16222149850142, 25.93320697846923] + ], + [ + [-72.11940467399728, 21.851088325532913], + [-72.44987443988929, 22.469443964829594], + [-73.34987380232134, 22.884654113882362], + [-73.79987348353733, 22.884654113882362], + [-74.19504320359542, 22.629891679112745] + ], + [ + [-66.01686899709078, 18.441839618642774], + [-66.48737866377729, 18.625351394064836], + [-67.0498782652973, 18.67864702215462], + [-67.38737802620926, 18.465364393137207], + [-67.6123778668173, 17.823934412537824], + [-68.39987730894534, 13.929303843271725], + [-68.89264695986272, 12.090439618305055], + [-69.07487683076927, 11.95585820711483], + [-69.74987635259329, 12.17588718550806], + [-70.12819608458811, 12.355002950040102], + [-70.42487587441731, 12.17588718550806], + [-70.2043160306639, 11.708782466419052], + [-70.42487587441731, 11.735650161405744], + [-70.64987571502535, 12.17588718550806], + [-71.32487523684928, 12.615395567393307], + [-71.99987475867339, 12.615395567393307], + [-72.67487428049732, 12.17588718550806], + [-72.89987412110536, 11.735650161405744], + [-72.95270408368008, 11.48311475929384], + [-73.34987380232134, 11.735650161405744], + [-73.79987348353733, 11.735650161405744], + [-74.69987284596938, 11.515266158038685], + [-75.3748723677934, 11.073982781226704], + [-75.50573227509092, 10.386807451633246], + [-76.04987188961734, 10.410816505402636], + [-79.08736973782538, 9.96791518697421], + [-79.75352926591177, 9.437623338483888], + [-80.09986902056127, 9.746236973759864], + [-82.34986742664137, 9.96791518697421], + [-83.03765938887453, 9.988597517410057], + [-83.24986678907334, 11.294709319565555], + [-83.47486662968137, 11.735650161405744], + [-83.7715488504407, 11.991681428073548], + [-83.47486662968137, 12.17588718550806], + [-83.24986678907352, 12.615395567393307], + [-83.24986678907352, 13.492128176464178], + [-83.39644912564066, 14.016107024140126], + [-83.0248669484653, 14.365653759228536], + [-82.91236702816137, 15.018578573757566], + [-83.24986678907334, 15.452760959322148], + [-83.47486662968137, 15.452760959322148], + [-83.77681884657427, 15.2613102139087] + ], + [ + [-72.11940467399728, 21.851088325532913], + [-71.99987475867339, 21.635297384859456], + [-70.76237563532928, 20.375041253465525], + [-70.69118568576094, 19.79943635579707], + [-70.19987603380928, 19.952622905164304], + [-69.2998766713773, 19.74098736552503], + [-68.62487714955328, 19.104405475930548], + [-68.51237722924927, 18.89166158430325], + [-68.43815728182749, 18.621371316104643], + [-68.1748774683373, 18.89166158430325], + [-67.49987794651328, 19.210675111642757], + [-67.0498782652973, 19.104405475930548], + [-66.48737866377729, 18.838433217733098], + [-66.01686899709078, 18.441839618642774] + ], + [ + [-83.77681884657427, 15.2613102139087], + [-83.69986647028932, 15.669513225155328], + [-84.14986615150539, 16.10232559580288], + [-85.04986551393755, 16.10232559580288], + [-85.95469724872686, 15.915243688695739], + [-86.39986455758559, 16.10232559580288], + [-86.84986423880157, 16.10232559580288], + [-87.94615578765044, 15.844981598742493], + [-88.19986328244953, 15.886035719079104], + [-88.59713531004533, 15.72723663872111], + [-88.42486312305738, 16.10232559580288], + [-88.08736336214541, 16.53419619825962], + [-87.97486344184139, 16.965102599435824], + [-88.18218561448214, 17.496385204838987], + [-87.74986360123354, 17.823934412537824], + [-87.52486376062541, 18.251816319028308], + [-87.29986392001756, 19.529070924351004], + [-87.29986392001756, 19.952622905164304], + [-87.46353614173478, 20.212733353176475], + [-87.18736399971336, 20.058334551396143], + [-86.84986423880157, 20.16397503197578], + [-86.62486439819335, 20.375041253465525], + [-86.62486439819335, 20.796306105108954], + [-86.76758665233308, 21.095728792367282], + [-86.51236447788934, 21.32123529551194], + [-86.17486471697737, 21.425997872385494], + [-85.94986487636933, 21.635297384859456], + [-84.82486567332933, 23.298598065875808], + [-83.24986678907334, 24.12261698700334], + [-80.99986838299351, 24.32780311165172], + [-80.3248688611693, 24.73717827217618], + [-79.98736910025744, 25.348717422116806], + [-80.16222149850142, 25.93320697846923] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "asia-america-gateway-aag-cable-system", + "name": "Asia-America Gateway (AAG) Cable System", + "color": "#69479c", + "feature_id": "asia-america-gateway-aag-cable-system-0", + "coordinates": [131.9105341954842, 16.411305853447203] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-179.99979825051417, 19.104405475930548], + [-172.79980335105807, 20.796306105108954], + [-163.79980972673806, 20.796306105108954], + [-158.84981323336194, 21.111485983488905], + [-158.39981355214616, 21.478351011076086], + [-158.24204999203226, 21.54876173571651], + [-158.3435619450625, 21.73983373091116], + [-158.28731363184195, 22.05298561667763], + [-157.94981387093, 22.469443964829594], + [-152.99981737755388, 24.941363171753835], + [-147.59982120296192, 27.364667993860166], + [-138.5998275786418, 28.951554732193216], + [-127.79983522945773, 32.43331330641712], + [-122.39983905486591, 34.867831005273246], + [-120.66254028558446, 35.285572710650115] + ], + [ + [100.93057273577531, 13.174371211662333], + [100.68750290737214, 12.834868817846598], + [100.46250306616818, 12.17588718550806], + [100.35000314646018, 11.294709319565555], + [101.02500266828409, 9.524411345019587], + [103.27500107495999, 7.967776882259614], + [105.29999964043216, 6.628746603597904], + [107.99999772772824, 5.957818681088611] + ], + [ + [179.99992672230294, 19.104405475930548], + [160.19996074878455, 16.53419619825962], + [151.1999671244645, 15.23578178303569], + [147.14996999352056, 14.365653759228536], + [146.24997063108842, 14.14758350694865], + [145.34997126865645, 13.546819477168867], + [144.89997158744055, 13.327979290563633], + [144.78649166783057, 13.446450124309933], + [143.9999722250084, 13.492128176464178], + [143.09997286257644, 13.710817738179543], + [138.59997605041642, 14.801154224791475], + [131.39998115096031, 16.53419619825962], + [125.99998497636832, 18.251816319028308], + [122.39998752664027, 18.89166158430325], + [121.04998848299223, 19.104405475930548], + [120.37498896116833, 18.67864702215462], + [120.14998912056026, 16.965102599435824], + [120.38973895071936, 16.58259233069336], + [119.92498927995226, 16.965102599435824], + [116.99999135204828, 18.251816319028308], + [115.31249254748829, 19.529070924351004], + [114.52499310536027, 20.375041253465525], + [113.79374362338419, 21.635297384859456], + [113.94911351331862, 22.27149389584997], + [113.73749366323219, 21.635297384859456], + [113.51249382262418, 20.796306105108954], + [113.39999390232023, 18.251816319028308], + [111.14999549624022, 12.615395567393307], + [110.69999581502415, 9.96791518697421], + [109.34999677137611, 7.298762754459602], + [107.99999772772824, 5.957818681088611], + [106.64999868408003, 5.061986954416028], + [105.29999964043216, 4.164912849976844], + [103.85068066714334, 2.295702456949584], + [104.40000027800002, 2.255504211923693], + [104.77306230253552, 1.961481175550773], + [104.68115007883117, 1.468426767332062], + [104.28790035741284, 1.215621515287864], + [104.1543904519925, 1.197800481146658], + [103.9870105705659, 1.389451396800126] + ], + [ + [109.34999677137611, 7.298762754459602], + [114.2999932647522, 5.286069860821101], + [114.88563284987973, 4.926762452886777] + ], + [ + [107.0791983800311, 10.342138429682905], + [107.77499788712001, 9.746236973759864], + [108.6749972495522, 9.524411345019587], + [110.24999613380825, 9.746236973759864], + [110.69999581502415, 9.96791518697421] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "atlantic-crossing-1-ac-1", + "name": "Atlantic Crossing-1 (AC-1)", + "color": "#50429a", + "feature_id": "atlantic-crossing-1-ac-1-0", + "coordinates": [-31.533730162850958, 50.79317098436681] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-72.9122741123211, 40.773520734289946], + [-71.09987539624133, 40.64389687373827], + [-68.39987730894534, 41.40772623743587], + [-61.199882409489234, 42.74371346443661], + [-50.39989006030518, 45.172673246984374], + [-39.59989771112103, 48.1067757091962], + [-23.39990918734489, 53.502097882664344], + [-16.199914287888873, 55.58970711313168], + [-8.999919388432772, 59.22222391484422], + [-5.399921938704722, 59.79305890746801], + [-1.799924488976671, 59.56588346342974], + [1.800072960751208, 58.641677771384906], + [5.400070410479259, 56.46971137654694], + [7.650068816559269, 55.07780072164758], + [8.10006849777534, 54.94878902385568], + [8.38336829708311, 54.8984194044711] + ], + [ + [-5.698461727216397, 50.07870033214297], + [-6.299921301136777, 50.16726116292705], + [-8.099920026000802, 50.16726116292705], + [-10.799918113296798, 49.87814473780409], + [-16.199914287888873, 48.70423463096077], + [-23.39990918734489, 47.19740739556977], + [-39.59989771112103, 43.07331078300331], + [-50.39989006030518, 41.0693404382163], + [-61.199882409489234, 40.04369219282995], + [-68.39987730894534, 40.21572406083388], + [-71.09987539624133, 40.04369219282995], + [-72.9122741123211, 40.773520734289946] + ], + [ + [8.38336829708311, 54.8984194044711], + [8.10006849777534, 54.81936191424907], + [7.200069135343199, 54.559258765782204], + [5.400070410479259, 53.768910566668154], + [4.500071048047289, 53.23359531864921], + [4.275071207439254, 52.827662548128615], + [4.387571127743172, 52.623261418527164], + [4.656810937011386, 52.48640042521362], + [4.275071207439254, 52.486461320100375], + [3.600071685615319, 52.35686935757306], + [3.150072004399249, 52.14259270367222], + [2.475072482575314, 51.586833980054195], + [1.46147320061857, 50.981023970649176], + [0.900073598319238, 50.526212361408795], + [0.000074235887269, 50.16726116292705], + [-2.249924170192742, 50.02292045625484], + [-3.599923213840782, 49.87814473780409], + [-4.499922576272752, 49.80559362880811], + [-5.399921938704722, 49.87814473780409], + [-5.698461727216397, 50.07870033214297] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "atlas-offshore", + "name": "Atlas Offshore", + "color": "#5ab946", + "feature_id": "atlas-offshore-0", + "coordinates": [1.2329171927536606, 37.697315870332886] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-6.035761488270055, 35.470615921385786], + [-5.849921619920792, 35.78566189952613], + [-5.624921779312757, 35.83127933955626], + [-4.499922576272752, 36.14986678681771], + [-2.249924170192742, 36.240655233214795], + [2.250072641967279, 38.12273010839229], + [4.050071366831219, 39.00237890905848], + [4.950070729263189, 40.04369219282995], + [5.400070410479259, 41.744358789482135], + [5.372530429989041, 43.29362778902916] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "australia-japan-cable-ajc", + "name": "Australia-Japan Cable (AJC)", + "color": "#46bfb2", + "feature_id": "australia-japan-cable-ajc-0", + "coordinates": [157.22988863687246, 0.568102290543834] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [136.87399727311598, 34.33682825203164], + [137.69997668798445, 34.12610104005762], + [138.59997605041642, 34.219177704953495], + [139.8169651882899, 35.03751783625896] + ], + [ + [151.22848710426095, -33.88203865028561], + [151.24508709250128, -33.808913582018675], + [151.24508709250128, -33.73712305097797], + [152.09996648689648, -33.461541290548496], + [154.79996457419256, -31.851465665577166] + ], + [ + [148.49996903716843, 13.492128176464178], + [147.14996999352056, 13.929303843271725], + [146.24997063108842, 13.929303843271725], + [145.34997126865645, 13.710817738179543], + [144.80954165150203, 13.549094363149067], + [144.8044415972819, 13.529423110453422], + [144.8003616580052, 13.513685339593195], + [145.34997126865645, 13.054150695298716], + [146.24997063108842, 12.615395567393307], + [147.14996999352056, 12.615395567393307], + [148.49996903716843, 13.054150695298716] + ], + [ + [136.87399727311598, 34.33682825203164], + [137.69997668798445, 33.283811019051], + [138.59997605041642, 32.62301664000799], + [140.84997445649643, 31.67051304708704], + [143.5499725437925, 30.901396088515583] + ], + [ + [139.8169651882899, 35.03751783625896], + [139.8374751737605, 34.40502275071583], + [140.2874748549764, 33.93964008831958], + [142.19997350014447, 32.81231878328768], + [143.5499725437925, 30.901396088515583], + [147.59996967473646, 23.298598065875808], + [148.9499687183845, 16.53419619825962], + [148.49996903716843, 13.492128176464178], + [148.49996903716843, 13.054150695298716], + [151.1999671244645, 9.96791518697421], + [153.44996553054452, 8.190543417795567], + [156.1499636178406, 4.164912849976844], + [157.49996266148864, -0.331409329660175], + [158.3999620239206, -3.029995968008762], + [159.97496090817666, -4.825692499217524], + [161.99995947364866, -6.616650693475464], + [162.89995883608063, -8.401139048122928], + [163.3499585172967, -10.177457430361159], + [162.89995883608063, -13.698987269610853], + [160.19996074878455, -18.880139975101287], + [158.3999620239206, -25.5408960762594], + [157.04996298027257, -28.74381028114999], + [154.79996457419256, -31.851465665577166], + [152.09996648689648, -33.55534420877598], + [151.22848710426095, -33.88203865028561] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "apcn-2", + "name": "APCN-2", + "color": "#29b14a", + "feature_id": "apcn-2-0", + "coordinates": [124.30975932571786, 23.340234589565938] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [140.75095452664314, 36.80186137248688], + [141.07497429710443, 35.78566189952613], + [140.96247437680037, 35.419780517080454], + [140.3437248151284, 34.91396962388475], + [139.9548550906076, 34.97657002902224], + [140.0624750143684, 34.40502275071583], + [139.8374751737605, 33.93964008831958], + [139.7249752534564, 32.43331330641712], + [139.0499757316325, 30.901396088515583], + [137.69997668798445, 29.931250704427015], + [134.99997860068837, 29.1482487910327], + [128.6999830636644, 25.95717997876443], + [127.34998402001636, 25.348717422116806], + [125.99998497636832, 25.145210227401265], + [125.09998561393635, 25.145210227401265], + [123.74998657028831, 25.450342946923996], + [122.84998720785634, 25.653336613275968], + [121.94998784542437, 25.55188275942578], + [121.4625881907028, 25.181712818924467], + [121.94998784542437, 25.24700643263671], + [122.28748760633616, 24.941363171753835], + [122.62498736724834, 24.01990020343257], + [122.17498768603221, 22.469443964829594], + [121.02775554672925, 21.771319129164908], + [120.12788799225589, 21.771319129164908], + [118.79999007691222, 22.209302614867], + [118.34999039569615, 22.41745455963195], + [117.28124115280829, 22.884654113882362], + [116.67753158048177, 23.355006811273626], + [116.77499151144028, 22.469443964829594], + [116.54999167083221, 20.796306105108954], + [115.64999230840024, 18.251816319028308], + [114.74999294596827, 14.801154224791475], + [114.2999932647522, 13.054150695298716], + [113.39999390232023, 9.96791518697421], + [111.59999517745612, 7.744889052551343], + [109.12499693076828, 5.957818681088611], + [108.44999740894414, 5.510071711803135], + [107.99999772772824, 5.286069860821101], + [107.0999983652961, 4.725718053703702], + [105.74999932164823, 3.940475772228723], + [104.90624991936826, 2.817450442654064], + [104.48462521805104, 1.468426767332062], + [104.28790035741284, 1.299826156328351], + [104.15918044859936, 1.21107753760117], + [103.89502063573255, 1.309493642625654] + ], + [ + [103.89502063573255, 1.309493642625654], + [104.19697042182847, 1.315741998126299], + [104.28790035741284, 1.369994553366951], + [104.34425031749404, 1.468426767332062], + [104.62500011860826, 2.367912558705314], + [103.95000059678412, 3.491423322320486], + [103.32266104119762, 3.815173420941221], + [103.95000059678412, 4.052702097268195], + [107.99999772772824, 7.075530930004675], + [108.44999740894414, 7.744889052551343], + [109.79999645259218, 9.96791518697421], + [110.69999581502415, 12.615395567393307], + [113.17499406171223, 18.251816319028308], + [113.39999390232023, 20.796306105108954], + [113.68124370308007, 21.635297384859456], + [113.94911351331862, 22.27149389584997], + [114.24379330456495, 21.84429407917378], + [115.19999262718417, 21.32123529551194], + [116.54999167083221, 21.111485983488905], + [118.79999007691222, 21.425997872385494], + [121.02775554672925, 21.24799675992793], + [122.84998720785634, 21.425997872385494], + [123.74998657028831, 22.05298561667763], + [124.64998593272028, 24.12261698700334], + [124.81873581317635, 25.55188275942578], + [124.98748569363224, 26.159307970773796], + [124.64998593272028, 30.514495959759188], + [122.84998720785634, 31.67051304708704], + [121.94998784542437, 31.622627415989484], + [121.39529823837174, 31.619800328867854], + [121.94998784542437, 31.814021800022772], + [122.84998720785634, 32.052708023486105], + [124.19998625150438, 32.052708023486105], + [128.58279314668286, 31.157626347303676], + [129.1499827448803, 30.901396088515583], + [130.49998178852834, 29.73606949729205], + [132.74998019460836, 29.540507745394393], + [134.99997860068837, 29.540507745394393], + [137.69997668798445, 30.320465424761352], + [139.0499757316325, 31.094262827639596], + [140.39997477528036, 32.43331330641712], + [142.42497334015658, 35.05222991093683], + [141.9749736589405, 36.51238821239372], + [140.75095452664314, 36.80186137248688] + ], + [ + [128.58279314668286, 31.157626347303676], + [128.47498322305617, 31.67051304708704], + [128.6999830636644, 32.81231878328768], + [129.0374828245762, 34.31215165223537], + [128.99949285148878, 35.17037876180012], + [129.26248266518442, 34.31215165223537], + [129.1499827448803, 32.81231878328768], + [128.92498290427224, 31.67051304708704], + [129.1499827448803, 30.901396088515583] + ], + [ + [114.74999294596827, 14.801154224791475], + [116.99999135204828, 13.929303843271725], + [118.79999007691222, 13.710817738179543], + [120.14998912056026, 13.601498202276503], + [121.06600847164387, 13.762418337904336], + [120.14998912056026, 13.382708036125592], + [118.79999007691222, 13.273238157547667], + [116.99999135204828, 13.054150695298716], + [115.64999230840024, 12.944533868662859], + [114.74999294596827, 12.944533868662859], + [114.2999932647522, 13.054150695298716] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "australia-singapore-cable-asc", + "name": "Australia-Singapore Cable (ASC)", + "color": "#c82026", + "feature_id": "australia-singapore-cable-asc-0", + "coordinates": [107.56909925038454, -15.172733324076177] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [105.97499916225613, -10.39883957712749], + [105.86249924195218, -10.39883957712749], + [105.697069844276, -10.437358645528604] + ], + [ + [105.74999932164823, -5.945707155070551], + [105.88390920948316, -6.073698909871837] + ], + [ + [103.94648059927786, 1.327258925921086], + [103.78125071632823, 1.01853421661562], + [103.78125071632823, 0.793562652607278], + [104.17500043739219, 0.513331356305002], + [104.84999995921609, 0.40083503392583], + [105.29999964043216, 0.118588418888407], + [105.97499916225613, -0.781386636225506], + [106.87499852468827, -2.130918480960247], + [106.98749844499216, -3.029995968008762], + [106.87499852468827, -4.601453764837203], + [106.53749876377609, -5.161910662112973], + [106.31249892316825, -5.497950688314972], + [105.74999932164823, -5.945707155070551], + [105.29999964043216, -6.169450529574419], + [105.07499979982416, -6.616650693475464], + [105.29999964043216, -7.509810688339655], + [105.97499916225613, -10.39883957712749], + [106.19999900286413, -11.943944931746927], + [109.7999964519963, -20.433922197637315], + [112.04999485867219, -27.153831285391675], + [113.39999390232023, -30.309953344646914], + [113.84999358353613, -30.890946871471897], + [115.85731216153286, -31.95344133032441] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "azores-fiber-optic-system-afos", + "name": "Azores Fiber Optic System (AFOS)", + "color": "#514da0", + "feature_id": "azores-fiber-optic-system-afos-0", + "coordinates": [-25.654950906469026, 37.06633635848618] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-27.963385954535113, 39.01140845880104], + [-28.124905840112945, 38.82731109526628], + [-28.34990568072098, 38.82731109526628], + [-28.34990568072098, 38.739615313825766], + [-28.213135777610034, 38.68429209182298], + [-28.462405601024983, 38.651811712711236], + [-28.647515469891403, 38.52540431175973], + [-28.57490552132893, 38.47588134813884], + [-28.461235601853815, 38.43266966366386], + [-28.34990568072098, 38.29952060596935], + [-25.296927843479097, 36.90250859939607], + [-25.14121795378537, 36.95715362213733], + [-25.07226800263024, 36.87595534218087], + [-24.91860811148439, 36.95684197844173], + [-24.97490807160088, 37.232354321556215], + [-25.537407673120953, 37.58978657360316], + [-25.668707580106883, 37.73960462631459], + [-25.874907434032934, 37.58978657360316], + [-26.77490679646499, 37.94551049545976], + [-26.99990663707294, 38.47588134813884], + [-27.215776484148705, 38.658902437108935], + [-27.449906318288924, 38.651811712711236], + [-27.67490615889696, 38.651811712711236], + [-27.963385954535113, 39.01140845880104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bahamas-2", + "name": "Bahamas 2", + "color": "#85459a", + "feature_id": "bahamas-2-0", + "coordinates": [-78.76969475201558, 26.495264303009378] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-80.39425132826774, 27.638731771078767], + [-79.64986933934539, 27.364667993860166], + [-78.80201993996981, 26.539621981474113], + [-78.52487013630538, 26.159307970773796], + [-77.73737069417734, 25.348717422116806], + [-77.34020097553618, 25.067217613601912] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bahamas-domestic-submarine-network-bdsni", + "name": "Bahamas Domestic Submarine Network (BDSNi)", + "color": "#2aae5d", + "feature_id": "bahamas-domestic-submarine-network-bdsni-0", + "coordinates": [-73.74030475770796, 19.30394855819307] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-75.78014208069646, 23.516551982193818], + [-75.59987220840135, 23.711258142484382], + [-75.14987252718537, 23.814220515025227], + [-74.8404927463529, 23.65223548382565] + ], + [ + [-73.79987348353733, 22.780969584994693], + [-74.02487332652933, 22.884654113882362], + [-74.36237308505733, 23.298598065875808], + [-74.36237308505733, 23.711258142484382], + [-74.5257029693529, 24.05263241523417] + ], + [ + [-77.39953093350621, 26.02529561689903], + [-77.96237053478538, 26.159307970773796], + [-78.73673998621481, 26.51699468577729] + ], + [ + [-77.34020097553618, 25.067217613601912], + [-77.39987093326538, 25.348717422116806], + [-78.18737037539341, 26.159307970773796], + [-78.73673998621481, 26.51699468577729] + ], + [ + [-77.34020097553618, 25.067217613601912], + [-77.39987093326538, 24.941363171753835], + [-77.84460061821471, 24.68971388062542] + ], + [ + [-76.24064175447417, 25.196209451872335], + [-76.24064175447417, 25.294427933466267], + [-76.8311713361375, 25.71204125730199], + [-77.28737101296136, 25.754704263415306], + [-77.39953093350621, 26.02529561689903] + ], + [ + [-76.24064175447417, 25.196209451872335], + [-76.94987125204939, 25.043329056612095], + [-77.34020097553618, 25.067217613601912] + ], + [ + [-75.78014208069646, 23.516551982193818], + [-75.71237212870537, 23.711258142484382], + [-76.04987189021341, 24.259444485784854], + [-76.5744515185962, 24.424991122673873], + [-76.04987189021341, 24.532657566160623], + [-75.9373719693134, 24.941363171753835], + [-76.24064175447417, 25.196209451872335] + ], + [ + [-75.52590226080238, 24.403328403350315], + [-75.82487204900939, 24.532657566160623], + [-75.82487204900939, 24.941363171753835], + [-76.24064175447417, 25.196209451872335] + ], + [ + [-75.73337211382882, 22.183257204025097], + [-75.59987220840135, 22.469443964829594], + [-75.59987220840135, 23.298598065875808], + [-75.14987252718537, 23.711258142484382], + [-74.8404927463529, 23.65223548382565] + ], + [ + [-73.68298356634328, 20.950514348762226], + [-73.79987348353733, 21.21639789994191], + [-75.14987252718537, 21.84429407917378], + [-75.73337211382882, 22.183257204025097] + ], + [ + [-74.96618265731293, 23.098344040477286], + [-74.8666227278422, 23.298598065875808], + [-74.8404927463529, 23.65223548382565] + ], + [ + [-74.5257029693529, 24.05263241523417], + [-74.8123727662734, 23.298598065875808], + [-74.96618265731293, 23.098344040477286] + ], + [ + [-74.5257029693529, 24.05263241523417], + [-74.92487268657733, 24.32780311165172], + [-75.52590226080238, 24.403328403350315] + ], + [ + [-73.06413400474209, 22.401747618851005], + [-73.34987380232134, 22.780969584994693], + [-73.79987348353733, 22.780969584994693] + ], + [ + [-73.68298356634328, 20.950514348762226], + [-73.57487364292938, 21.425997872385494], + [-73.34987380232134, 22.05298561667763], + [-73.06413400474209, 22.401747618851005] + ], + [ + [-73.68298356634328, 20.950514348762226], + [-73.84592345091508, 20.144772979217038], + [-73.91237340384134, 19.952622905164304], + [-73.6873735632334, 19.104405475930548], + [-72.83434416752735, 18.61193247312403], + [-72.51027439710151, 18.61193247312403], + [-72.34313451550491, 18.54287844069512] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bahamas-internet-cable-system-bics", + "name": "Bahamas Internet Cable System (BICS)", + "color": "#209fb8", + "feature_id": "bahamas-internet-cable-system-bics-0", + "coordinates": [-77.80258128290353, 26.832801767612438] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-78.73673998621481, 26.51699468577729], + [-79.1998696581294, 26.361086325391653], + [-79.64986933934539, 26.361086325391653], + [-80.08893155227206, 26.35058457732009] + ], + [ + [-76.78766136696045, 25.407833241806458], + [-77.17487109265734, 25.55188275942578], + [-77.39987093326538, 25.754704263415306], + [-77.39953093350621, 26.02529561689903], + [-77.39987093326538, 26.159307970773796], + [-77.17487109265734, 26.26024097157773], + [-77.17487109265734, 26.562513149236622], + [-77.39987093326538, 26.863990173960673], + [-77.82194063426726, 26.91250005261429], + [-77.76447067497942, 26.675908593101553], + [-77.84987061448136, 26.562513149236622], + [-78.0748704550894, 26.562513149236622], + [-78.24587033395144, 26.61673953582877], + [-78.41237021600136, 26.562513149236622], + [-78.73673998621481, 26.51699468577729], + [-79.1998696581294, 26.461843796189072], + [-79.64986933934539, 26.461843796189072], + [-80.06769156785538, 26.378324328211022] + ], + [ + [-78.73673998621481, 26.51699468577729], + [-78.29987029569733, 26.159307970773796], + [-77.5123708535694, 25.348717422116806], + [-77.45299089563474, 25.06844950998564], + [-77.39987093326538, 25.348717422116806], + [-77.17487109265734, 25.450342946923996], + [-76.78766136696045, 25.407833241806458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "balalink", + "name": "Balalink", + "color": "#3a4ea1", + "feature_id": "balalink-0", + "coordinates": [1.1368861410635418, 39.351217571171134] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-0.376975497007066, 39.459646713436825], + [0.450073917103168, 39.351217571171134], + [2.250072641967279, 39.351217571171134], + [2.605252390354707, 39.55232618527285] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "baltica", + "name": "Baltica", + "color": "#5f459b", + "feature_id": "baltica-0", + "coordinates": [13.460437934167459, 54.8726935060663] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [11.940005777527603, 54.5772362672833], + [12.60006530993536, 54.624440877767114], + [13.50006467236733, 54.88412743786745], + [14.85006371601537, 54.94878902385568], + [14.992153615357665, 55.031146415148356] + ], + [ + [13.828284439853434, 55.43133165094372], + [13.9500643535834, 55.33458061322915], + [14.4000640347993, 55.0133467567922], + [14.85006371601537, 55.0133467567922], + [14.992153615357665, 55.031146415148356], + [15.075063556623405, 54.88412743786745], + [15.412563317535358, 54.559258765782204], + [15.575063202418846, 54.17263354490274] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bass-strait-1", + "name": "Bass Strait-1", + "color": "#66439a", + "feature_id": "bass-strait-1-0", + "coordinates": [145.906182578485, -39.897015711279636] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [146.11970072337314, -38.819880879605506], + [146.02497079048058, -39.16757423638754], + [145.79997094987252, -40.54922829806904], + [145.62380107467308, -40.950501388145966] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bass-strait-2", + "name": "Bass Strait-2", + "color": "#5da344", + "feature_id": "bass-strait-2-0", + "coordinates": [145.48965518221675, -39.69147281699597] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [145.72966099968082, -38.63330288478144], + [145.57497110926445, -39.16757423638754], + [145.34997126865645, -40.54922829806904], + [145.29411130822828, -40.76023099257819] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "basslink", + "name": "Basslink", + "color": "#9dc93b", + "feature_id": "basslink-0", + "coordinates": [146.97751931966715, -39.740482351060706] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [147.0712600492794, -38.443402817441694], + [147.03747007321644, -38.81782397325085], + [146.9249701529125, -40.54922829806904], + [146.85017020590166, -41.033054194589255] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "batam-singapore-cable-system-bscs", + "name": "Batam Singapore Cable System (BSCS)", + "color": "#ac3781", + "feature_id": "batam-singapore-cable-system-bscs-0", + "coordinates": [103.96381189752483, 1.261447307079493] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [103.9870105705659, 1.389451396800126], + [103.9500255967665, 1.185378176915862], + [103.96260058785819, 1.134723598626692] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sweden-latvia", + "name": "Sweden-Latvia", + "color": "#42b985", + "feature_id": "sweden-latvia-0", + "coordinates": [19.342613473857597, 57.75509344512014] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [21.570078955493614, 57.389720408424836], + [21.15005925303933, 57.39045872350093], + [19.35006052817539, 57.752422007042185], + [19.04186074650724, 57.86298070545203], + [18.90006084695932, 58.05131589106017], + [18.56256108604734, 58.641677771384906], + [18.56256108604734, 59.1068949571908], + [18.337561245439304, 59.279742670960275], + [18.062761440110165, 59.332309018187175] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bcs-east-west-interlink", + "name": "BCS East-West Interlink", + "color": "#348bcb", + "feature_id": "bcs-east-west-interlink-0", + "coordinates": [19.948215743265337, 56.717219875603234] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [21.082679300772185, 56.02850685047366], + [20.70005957182343, 56.15772578558838], + [19.125060687567355, 57.32978111682823], + [18.829450896980262, 57.43973589319194] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bcs-north---phase-1", + "name": "BCS North - Phase 1", + "color": "#38b77b", + "feature_id": "bcs-north---phase-1-0", + "coordinates": [21.807959696679802, 59.994076620712605] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [24.93247657353959, 60.171163188940454], + [24.4125569418554, 59.90606992457441], + [23.85005734033541, 59.79305890746801], + [22.966757966073033, 59.82340864139897], + [22.61255821699146, 59.90606992457441], + [22.275058456079336, 60.01869762196867], + [22.298598439403577, 60.305754431168936], + [22.05005861547147, 60.07486799642308], + [21.375059093647366, 59.849612385021544], + [20.25005989060736, 59.736409384078485], + [19.91256012969538, 59.962431634152296], + [19.93776011184346, 60.11403575461435], + [19.687560289087344, 59.962431634152296], + [19.125060687567355, 59.622821769410336], + [18.688360996929788, 59.29276676569168] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bcs-north---phase-2", + "name": "BCS North - Phase 2", + "color": "#b1d235", + "feature_id": "bcs-north---phase-2-0", + "coordinates": [25.961669232482933, 60.130942866098394] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [26.883645191313576, 60.501141253200814], + [27.00005510884756, 60.35428947498107], + [27.168804989303453, 60.130942866098394], + [27.45005479006346, 59.962431634152296], + [28.125054311887567, 59.849612385021544], + [28.49995404630505, 59.799986209492914] + ], + [ + [26.883645191313576, 60.501141253200814], + [26.775055268239356, 60.35428947498107], + [26.10005574641542, 60.130942866098394], + [25.20005638398345, 60.130942866098394], + [24.93247657353959, 60.171163188940454] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "berytar", + "name": "BERYTAR", + "color": "#c02028", + "feature_id": "berytar-0", + "coordinates": [35.54357374187808, 34.27032090775191] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [35.897798805602406, 34.89170328553857], + [35.77504889255957, 34.68301765985788], + [35.85922883292588, 34.43974246013238], + [35.55004905195153, 34.31215165223537], + [35.485109097955785, 33.89263712836993], + [35.3250492113435, 33.565491482352144], + [35.38637916789688, 33.45019231608532] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bharat-lanka-cable-system", + "name": "Bharat Lanka Cable System", + "color": "#26ae4a", + "feature_id": "bharat-lanka-cable-system-0", + "coordinates": [78.76007118215173, 7.506418248635953] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [78.14522887712647, 8.802499062914308], + [78.30001876747187, 8.190543417795567], + [79.20001812990384, 6.852191098754417], + [79.86681765753698, 6.833088156653076] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bicentenario", + "name": "Bicentenario", + "color": "#52b847", + "feature_id": "bicentenario-0", + "coordinates": [-55.765452161876865, -35.747636785049934] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-54.95018683683219, -34.900416027051364], + [-55.57488639428921, -35.59302880961411], + [-56.024886075505194, -35.95811819864912], + [-56.69544560047457, -36.47095527632115] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "botnia", + "name": "Botnia", + "color": "#dba926", + "feature_id": "botnia-0", + "coordinates": [20.810619391542986, 63.23067355549529] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [21.616368922701383, 63.095388681301586], + [21.375059093647366, 63.09669186983908], + [21.15005925303933, 63.09669186983908], + [20.70005957182343, 63.27431307074423], + [20.475059731215396, 63.526173423791136], + [20.394303098455197, 63.70251569426429], + [20.26304988140535, 63.82595266205354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bt-mt-1", + "name": "BT-MT-1", + "color": "#d12c7d", + "feature_id": "bt-mt-1-0", + "coordinates": [-4.25470213580715, 54.40539032874918] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-3.357053385891987, 54.210914913404395], + [-3.599923213840782, 54.165971787151676], + [-4.274922735664717, 54.165971787151676], + [-4.423852630161463, 54.16728900359925], + [-4.209052782327632, 54.25163802974663], + [-4.265272742500855, 54.440993353921044], + [-4.522672560156451, 54.440993353921044], + [-4.635172480460398, 54.37549446567266], + [-4.691422440612428, 54.222445613689786], + [-5.235222055379666, 54.30232935229833], + [-5.559391825734764, 54.30232935229833] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "cadmos", + "name": "CADMOS", + "color": "#5d4a9e", + "feature_id": "cadmos-0", + "coordinates": [34.55627236671248, 34.378799922810714] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [35.485109097955785, 33.89263712836993], + [35.52192407127956, 33.90074250722242], + [35.563039042153434, 33.89189835097628] + ], + [ + [33.61060042587516, 34.82728147271527], + [33.97505016769546, 34.68301765985788], + [35.485109097955785, 33.89263712836993] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "cam-ring", + "name": "CAM Ring", + "color": "#a85137", + "feature_id": "cam-ring-0", + "coordinates": [-21.455193224583468, 34.40442594845223] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-16.908893785641084, 32.64727814971002], + [-16.64991396910486, 32.43331330641712], + [-15.749914606672803, 32.052708023486105], + [-13.724916041200828, 32.052708023486105] + ], + [ + [-16.34766418322141, 33.047315908721146], + [-16.42491412849691, 32.81231878328768], + [-16.64991396910486, 32.62301664000799], + [-16.908893785641084, 32.64727814971002], + [-17.125113632468896, 32.55889959458756], + [-18.449912693968884, 32.81231878328768], + [-24.74990823099293, 36.14986678681771], + [-25.649907593424984, 36.87321951208918], + [-25.762407513728903, 37.58978657360316], + [-25.668707580106883, 37.73960462631459] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "canalink", + "name": "Canalink", + "color": "#5a4a9e", + "feature_id": "canalink-0", + "coordinates": [-11.928272506517743, 32.88482972146167] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-16.412574137834554, 28.310603161410427], + [-16.031164407432783, 28.39196396138891], + [-15.749914606672803, 28.55704546571141], + [-14.962415164544836, 28.951554732193216], + [-13.724916040604825, 29.73606949729205], + [-10.124918591472778, 33.93964008831958], + [-8.324919866608838, 35.419780517080454], + [-6.749920982352762, 36.14986678681771], + [-6.087131451879088, 36.27672346192381] + ], + [ + [-7.199920663568747, 36.51238821239372], + [-6.299921301136777, 35.60293032290622], + [-6.035761488270055, 35.470615921385786] + ], + [ + [-15.524914766064853, 28.359233526108653], + [-15.487704792424722, 28.1343621820335] + ], + [ + [-15.412414845760821, 28.55704546571141], + [-15.749914606672803, 28.50762719638061], + [-16.031164407432783, 28.34246846660676], + [-16.41256413724568, 28.31058555362941] + ], + [ + [-16.51801406254387, 28.059088061264703], + [-16.42491412849691, 27.962503359972544], + [-16.537414048800827, 27.863091576993526], + [-16.76241388940886, 27.863091576993526], + [-16.98121373440904, 28.159242763304235], + [-17.099913650320843, 28.359233526108653], + [-17.364803462670494, 28.663271035325494], + [-17.58982330326421, 28.712616152639697], + [-17.765193179030604, 28.663271035325494] + ], + [ + [-15.412414845760821, 28.55704546571141], + [-15.299914925456818, 28.458185766004647], + [-15.243664965304845, 28.161052262220892], + [-15.299914925456818, 28.061823659710228], + [-15.398744855444761, 27.95939426104593] + ], + [ + [-6.363011256443286, 36.62627284935817], + [-7.199920663568747, 36.51238821239372], + [-8.999919388432772, 35.419780517080454], + [-11.024917953904747, 33.93964008831958], + [-14.624915403632798, 29.73606949729205], + [-15.074915084848868, 28.951554732193216], + [-15.412414845760821, 28.55704546571141], + [-15.524914766064853, 28.359233526108653], + [-16.031164407432783, 28.29295870317665], + [-16.51801406254387, 28.059088061264703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "cantat-3", + "name": "CANTAT-3", + "color": "#a6469a", + "feature_id": "cantat-3-0", + "coordinates": [-4.94796197068905, 62.56349540000835] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [7.199969135414307, 55.58982013593325], + [7.650068816559269, 55.58970711313168], + [8.329168335478954, 55.75165023178093] + ], + [ + [-7.424920504176782, 62.71239189403053], + [-7.199920663568747, 62.50536500000058], + [-7.147190700923147, 62.290125832285554] + ], + [ + [4.500071048047289, 55.96930907315377], + [4.950070729263189, 56.09502251152725] + ], + [ + [4.228491240437108, 56.078513174181296], + [4.500071048047289, 55.96930907315377], + [4.56433100252508, 55.80429094977458], + [4.612570968351207, 55.747268737822395], + [4.748510872050332, 55.715908549840066] + ], + [ + [7.200069135343199, 55.58970711313168], + [7.650068816559269, 55.20639768894037], + [8.10006849777534, 55.0133467567922], + [8.38336829708311, 54.8984194044711] + ], + [ + [7.200069135343199, 55.58970711313168], + [6.300069772911229, 55.84318584148099], + [4.950070729263189, 56.09502251152725], + [3.600071685615319, 58.05131589106017], + [2.700072323183178, 60.35428947498107], + [1.800072960751208, 61.23255301306608], + [0.450073917103168, 61.9814494856501], + [-2.249924170192742, 62.4013092496138], + [-7.424920504176782, 62.71239189403053], + [-10.799918113296798, 62.609058908203394], + [-16.199914287888873, 63.031574219730345], + [-18.449912693968884, 63.12213306123374], + [-19.799911737616924, 63.22367528305821], + [-20.26729140652074, 63.437770648439766] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "caribbean-bermuda-u-s-cbus", + "name": "Caribbean-Bermuda U.S. (CBUS)", + "color": "#b2355e", + "feature_id": "caribbean-bermuda-u-s-cbus-0", + "coordinates": [-64.34988017800121, 25.323244998704865] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-64.80163985797051, 32.2586528368615], + [-64.57488001860925, 31.28673881439167], + [-64.34988017800121, 28.161052262220892], + [-64.34988017800121, 24.941363171753835], + [-64.34988017800121, 20.796306105108954], + [-64.34988017800121, 18.89166158430325], + [-64.597150002833, 18.41441211576617] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "caucasus-cable-system", + "name": "Caucasus Cable System", + "color": "#d02c91", + "feature_id": "caucasus-cable-system-0", + "coordinates": [34.88847264393638, 42.49061443096954] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [41.66752471827439, 42.14675635811534], + [41.40004490775959, 42.079235618164205], + [35.55004905195153, 42.41235450073577], + [28.575053993103467, 43.23744835244082], + [28.1674342818651, 43.41462116994657] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "cayman-jamaica-fiber-system-cjfs", + "name": "Cayman-Jamaica Fiber System (CJFS)", + "color": "#85489c", + "feature_id": "cayman-jamaica-fiber-system-cjfs-0", + "coordinates": [-79.06738928977623, 19.278274980698257] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-76.66662145270622, 17.94977294265982], + [-76.38737165112538, 17.966677204124778], + [-76.16237181051734, 18.180575095602677], + [-76.20409564349079, 18.46288613823782], + [-76.49987157202538, 18.57203905256688] + ], + [ + [-76.44608160953467, 18.17632819876971], + [-76.49987157202538, 18.57203905256688] + ], + [ + [-76.49987157202538, 18.57203905256688], + [-77.0623711729494, 18.607582468591005] + ], + [ + [-77.1032411434007, 18.398661383088154], + [-77.0623711729494, 18.607582468591005] + ], + [ + [-77.0623711729494, 18.607582468591005], + [-77.73737069477342, 18.607582468591005], + [-77.92138056441907, 18.469357593227244], + [-78.1873703759894, 18.660883672360313], + [-79.42486949873734, 19.529070924351004], + [-79.87764917798397, 19.69042598563081], + [-80.09986902056146, 19.529070924351004], + [-80.54986870177753, 19.316876111628602], + [-81.16676076149959, 19.282955912662572] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "ceiba-2", + "name": "Ceiba-2", + "color": "#4fbe9c", + "feature_id": "ceiba-2-0", + "coordinates": [9.2766769981543, 2.945927882878692] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [9.250947682481751, 3.002760948286323], + [9.91022721544212, 2.933124533518679] + ], + [ + [9.768227316036075, 1.860150409321903], + [9.250947682481751, 3.002760948286323], + [9.052797822852995, 3.809525949617012], + [8.832297979057273, 3.809525949617012], + [8.782298014477703, 3.750863902152105] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "ceiba-1", + "name": "Ceiba-1", + "color": "#3366b1", + "feature_id": "ceiba-1-0", + "coordinates": [9.389137995287143, 3.053284809650876] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [9.768227316036075, 1.860150409321903], + [9.425067559133595, 2.967159342638126], + [9.052797822852995, 3.859513756649619], + [8.782298014477703, 3.859513756649619], + [8.782298014477703, 3.750863902152105] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "celtixconnect-1-cc-1", + "name": "CeltixConnect-1 (CC-1)", + "color": "#aa4f9e", + "feature_id": "celtixconnect-1-cc-1-0", + "coordinates": [-5.440452195766142, 53.30189162384994] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-6.248311337697743, 53.348124632595216], + [-5.624921779312757, 53.30087964873988], + [-4.630392483846578, 53.30633550153618] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "challenger-bermuda-1-cb-1", + "name": "Challenger Bermuda-1 (CB-1)", + "color": "#89499c", + "feature_id": "challenger-bermuda-1-cb-1-0", + "coordinates": [-66.27905465789769, 37.325965834785364] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-71.64596500938637, 41.4121212139155], + [-71.09987539624133, 41.0693404382163], + [-68.39987730894534, 39.00237890905848], + [-66.51654530978234, 37.58978657360316], + [-63.899880496785315, 34.68301765985788], + [-63.67488065617728, 33.565491482352144], + [-63.67488065617728, 32.81231878328768], + [-64.23738025769728, 32.33831157801282], + [-64.80163985797051, 32.2586528368615] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "columbus-ii-b", + "name": "Columbus-II b", + "color": "#69c6b6", + "feature_id": "columbus-ii-b-0", + "coordinates": [-70.42061125399958, 26.51210265895338] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-64.93708976201644, 18.372992194090983], + [-64.9123797795213, 18.89166158430325], + [-65.24987954043327, 20.796306105108954], + [-67.27487810590533, 23.711258142484382], + [-69.2998766713773, 25.95717997876443], + [-73.34987380232134, 27.962503359972544], + [-76.94987125204939, 28.061823659710228], + [-77.84987061448136, 27.863091576993526], + [-79.64986933934539, 26.964304734562802], + [-80.05334157838351, 26.715271953494778] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "columbus-iii-azores-portugal", + "name": "Columbus-III Azores-Portugal", + "color": "#c35437", + "feature_id": "columbus-iii-azores-portugal-0", + "coordinates": [-17.422228036962622, 36.993119919861954] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-9.331559153496016, 38.69016197235561], + [-10.349918432080813, 38.21117903702327], + [-13.949915882404753, 36.993119919861954], + [-23.399909187940864, 36.993119919861954], + [-24.74990823099293, 37.232354321556215], + [-25.42490775281695, 37.58978657360316], + [-25.668707580106883, 37.73960462631459] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "comoros-domestic-cable-system", + "name": "Comoros Domestic Cable System", + "color": "#5cc4c1", + "feature_id": "comoros-domestic-cable-system-0", + "coordinates": [44.38348080171153, -12.159732244027708] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [43.4892034277801, -11.923115063020134], + [44.029043045352836, -11.808811027678217], + [44.400042782532864, -12.166271132901954], + [44.029043045352836, -12.019795534362657], + [43.73969325033076, -12.287868671415396], + [43.54749338648705, -12.045379517998498], + [43.4892034277801, -11.923115063020134] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "corse-continent-4-cc4", + "name": "Corse-Continent 4 (CC4)", + "color": "#34bfc8", + "feature_id": "corse-continent-4-cc4-0", + "coordinates": [7.949098709147364, 43.03637757194946] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [7.017449264712866, 43.55300871311741], + [7.200069135343199, 43.40114497315386], + [8.55006817899124, 42.74371346443661], + [8.937177904759153, 42.63668577913154] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "corse-continent-5-cc5", + "name": "Corse-Continent 5 (CC5)", + "color": "#32c0cf", + "feature_id": "corse-continent-5-cc5-0", + "coordinates": [7.182890482100447, 42.303226421928116] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [5.878200071767793, 43.10319473312765], + [6.075069932303194, 42.74371346443661], + [6.300069772911229, 42.57825408607275], + [8.414618274945298, 41.919502734658465], + [8.73873804533585, 41.919502734658465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "danica-north", + "name": "Danica North", + "color": "#3c61ad", + "feature_id": "danica-north-0", + "coordinates": [12.745254304550457, 55.77884269856111] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.955535058117334, 55.77057758158506], + [12.716565227405795, 55.779970327098255], + [12.54557534853663, 55.720775126305966] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "danice", + "name": "DANICE", + "color": "#5bba46", + "feature_id": "danice-0", + "coordinates": [-5.161393410267806, 62.67977190838903] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-20.14185149538352, 63.642367197144665], + [-20.699911101240872, 63.3248621310789], + [-20.69991110064487, 62.98618902459583], + [-19.799911737616924, 62.50536500000058], + [-14.399915563024848, 62.29689073879055], + [-10.799918113296798, 62.71239189403053], + [-7.424920504176782, 62.81536487879316], + [-2.249924170192742, 62.50536500000058], + [0.450073917103168, 62.08696177092739], + [2.025072801359244, 61.23255301306608], + [2.925072163791214, 60.35428947498107], + [3.825071526223184, 58.05131589106017], + [5.175070569871224, 56.22032688484515], + [6.300069772911229, 55.96930907315377], + [7.200069135343199, 55.71665209382169], + [7.650068816559269, 55.65323105219801], + [8.329168335478954, 55.75165023178093] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "denmark-poland-2", + "name": "Denmark-Poland 2", + "color": "#ae4a9b", + "feature_id": "denmark-poland-2-0", + "coordinates": [15.402937762991115, 54.518887586299314] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [14.966663633414868, 55.01278483536163], + [14.962563636319288, 54.88412743786745], + [15.30006339723144, 54.559258765782204], + [16.062272857274962, 54.260143483877215] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "denmark-sweden-15", + "name": "Denmark-Sweden 15", + "color": "#94c83d", + "feature_id": "denmark-sweden-15-0", + "coordinates": [12.643960278839899, 56.03727869909534] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.592155315538946, 56.03063574342079], + [12.643960278839899, 56.03727869909534], + [12.695765242140624, 56.043920511503416] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "denmark-sweden-16", + "name": "Denmark-Sweden 16", + "color": "#cb2026", + "feature_id": "denmark-sweden-16-0", + "coordinates": [12.60675072147248, 55.462350188098384] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.273115541549828, 55.576074176494586], + [12.375065469327325, 55.526080187888624], + [12.543815349783216, 55.462350188098384], + [12.712565230239278, 55.462350188098384], + [12.963935052166732, 55.47137495553801] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "denmark-sweden-17", + "name": "Denmark-Sweden 17", + "color": "#34a89e", + "feature_id": "denmark-sweden-17-0", + "coordinates": [12.562760303895828, 56.10501725400175] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.536885354692657, 56.0750809772897], + [12.562760336362658, 56.105017291564536], + [12.588635318032487, 56.134930342754785] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "denmark-sweden-18", + "name": "Denmark-Sweden 18", + "color": "#373e98", + "feature_id": "denmark-sweden-18-0", + "coordinates": [12.643960278839899, 56.03727869909534] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.592155315538946, 56.03063574342079], + [12.643960278839899, 56.03727869909534], + [12.695765242140624, 56.043920511503416] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "dhiraagu-cable-network", + "name": "Dhiraagu Cable Network", + "color": "#b91f32", + "feature_id": "dhiraagu-cable-network-0", + "coordinates": [73.05517256759464, 3.0898789230642194] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [73.07150247140208, 6.622826415013179], + [72.97150254224294, 6.125830038600412], + [72.97082254272445, 5.601440402765235], + [73.07082247188356, 5.103622553806417], + [73.07082247188356, 4.854566321204942], + [73.29035231636678, 4.461629537081564], + [73.5403521392646, 4.212345781871875], + [73.12502243348774, 3.828234303320954], + [72.95568255344978, 3.608488161798789], + [72.97732253812, 3.276079687360095], + [73.54475213614768, 1.918908398538576], + [73.57502211470381, 1.01853421661562], + [73.45559219930917, 0.28928715351492], + [73.46652219156641, 0.060338533670517], + [73.42688221964778, -0.297909859053817], + [73.35002227409598, -0.443906656918472], + [73.08918245887716, -0.605519711481634] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "dhiraagu-slt-submarine-cable-network", + "name": "Dhiraagu-SLT Submarine Cable Network", + "color": "#a44399", + "feature_id": "dhiraagu-slt-submarine-cable-network-0", + "coordinates": [76.84260880413498, 5.221141038488042] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [79.87208765380373, 6.927036656836265], + [79.20001812990384, 6.181557032537114], + [74.25002163652775, 4.164912849976844], + [73.50002216783449, 4.166668198861885] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "east-west", + "name": "East-West", + "color": "#30ace2", + "feature_id": "east-west-0", + "coordinates": [-70.67175258722082, 17.388055736679462] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-76.71676141718658, 17.949953694577488], + [-76.27487173022537, 17.39502263470061], + [-75.3748723677934, 17.180187287481402], + [-74.69987284596938, 16.965102599435824], + [-71.99987475867339, 16.965102599435824], + [-70.64987571502535, 17.39502263470061], + [-69.86237627289731, 17.823934412537824], + [-69.2998766713773, 17.716802179008738], + [-67.49987794651328, 17.39502263470061], + [-66.14987890286532, 17.609605913225096], + [-64.597150002833, 18.41441211576617] + ], + [ + [-70.16178606079262, 18.699363841238295], + [-69.91862623304927, 18.144943564296312], + [-69.86237627289731, 17.823934412537824] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "eastern-caribbean-fiber-system-ecfs", + "name": "Eastern Caribbean Fiber System (ECFS)", + "color": "#b4d333", + "feature_id": "eastern-caribbean-fiber-system-ecfs-0", + "coordinates": [-61.199882409489234, 14.315637237869822] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-61.65081209004636, 10.686261032786234], + [-61.5373821704012, 11.073982781226704], + [-61.5373821704012, 11.294709319565555], + [-61.5373821704012, 11.625479959569759], + [-61.64988209070522, 11.845776373625682], + [-61.7905819910321, 12.008779421336584], + [-61.873071932595394, 12.19152678955166], + [-61.81853197123205, 12.395734000022884], + [-61.481032210319995, 13.054150695298716], + [-61.20828240353856, 13.145460938850391], + [-61.199882409489234, 13.054150695298716], + [-59.849883365841194, 13.054150695298716], + [-59.60740353761618, 13.084493800663012], + [-59.849883365841194, 13.163718917913684], + [-60.74988272827325, 14.038469666260113], + [-60.9748825688812, 14.14758350694865], + [-61.00681254626171, 13.994508755694056], + [-61.199882409489234, 14.14758350694865], + [-61.199882409489234, 14.365653759228536], + [-61.094172484375164, 14.615455776713844], + [-61.36863228994521, 14.801154224791475], + [-61.5373821704012, 15.018578573757566], + [-61.5373821704012, 15.23578178303569], + [-61.64988209070522, 15.452760959322148], + [-61.60779212052215, 15.676204818171186], + [-61.43915723998468, 15.892797111330793], + [-61.41387225789684, 15.98876894276924], + [-61.53303217348282, 16.24132860028527], + [-61.76238201100924, 16.590029438056348], + [-61.85794194331372, 17.05148171404491], + [-62.099881771921204, 16.965102599435824], + [-62.549881453137274, 16.965102599435824], + [-62.72976132570861, 17.09087600571297], + [-62.72976132570861, 17.298635546518767], + [-62.72976132570861, 17.40237987467563], + [-63.07366108208683, 18.031045075146636], + [-63.05813109308839, 18.144943564296312], + [-63.057161093775605, 18.21768116250081], + [-63.22488097496121, 18.30522807897634], + [-63.449880815569244, 18.358623372153403], + [-64.12488033739326, 18.358623372153403], + [-64.34988017800121, 18.358623372153403], + [-64.597150002833, 18.41441211576617] + ], + [ + [-61.5373821704012, 15.23578178303569], + [-61.3706822884929, 15.252077499919722] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "eclink", + "name": "ECLink", + "color": "#663c97", + "feature_id": "eclink-0", + "coordinates": [-65.19034678537976, 11.278035921850005] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-61.64929209112324, 10.687695708022744], + [-62.099881771921204, 11.294709319565555], + [-63.899880496785315, 11.515266158038685], + [-65.69987922164925, 11.184367066436806], + [-68.39987730894534, 11.735650161405744], + [-68.89264695986272, 12.090439618305055] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "elektra-globalconnect-1-gc1", + "name": "Elektra-GlobalConnect 1 (GC1)", + "color": "#c88129", + "feature_id": "elektra-globalconnect-1-gc1-0", + "coordinates": [11.931558055236366, 54.29065286855922] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [11.940005777527603, 54.5772362672833], + [11.925065788111255, 54.49397229925464], + [11.925065788111255, 54.29748595281848], + [12.132485641173247, 54.079177416570104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "emerald-bridge-fibres", + "name": "Emerald Bridge Fibres", + "color": "#ec1c24", + "feature_id": "emerald-bridge-fibres-0", + "coordinates": [-5.40165067921464, 53.57895910195947] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-6.197971373358996, 53.41013850693267], + [-5.622971780694115, 53.60536470257486], + [-5.090742157730631, 53.54186491531689], + [-4.630392483846578, 53.30633550153618] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "aeconnect-1", + "name": "AEConnect-1", + "color": "#923c96", + "feature_id": "aeconnect-1-0", + "coordinates": [-40.62232040192541, 46.63726305614682] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-9.232149223918952, 54.207113520678774], + [-9.56241898995276, 54.559258765782204], + [-10.799918113296798, 55.07780072164758], + [-12.599916838160823, 55.07780072164758], + [-16.199914287888873, 54.29748595281848], + [-23.39990918734489, 52.4179012603154], + [-39.59989771112103, 46.89076287862241], + [-50.39989006030518, 44.21300917863164], + [-61.199882409489234, 42.079235618164205], + [-68.39987730894534, 41.0693404382163], + [-71.09987539624133, 40.47295490579842], + [-72.87218414072119, 40.80058099504518] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "esat-2", + "name": "ESAT-2", + "color": "#27baad", + "feature_id": "esat-2-0", + "coordinates": [-4.615319758346743, 53.53513602111022] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-6.215401361011459, 53.331711289007416], + [-5.624921779312757, 53.43513085622595], + [-3.599923213840782, 53.63571515699499], + [-3.006373634316702, 53.64793339883286] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "estepona-tetouan", + "name": "Estepona-Tetouan", + "color": "#2ca887", + "feature_id": "estepona-tetouan-0", + "coordinates": [-5.174922098096772, 35.95304731852565] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-5.391811944449927, 35.565918934421404], + [-5.174922098096772, 35.78566189952613], + [-5.174922098096772, 36.240655233214795], + [-5.145872118676039, 36.42741977174609] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "farice-1", + "name": "FARICE-1", + "color": "#62bd60", + "feature_id": "farice-1-0", + "coordinates": [-6.556732613004385, 63.179471746966584] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-6.927950856234673, 62.24411205903692], + [-6.897247538141272, 62.40594616938375], + [-7.199920663568747, 62.71239189403053], + [-7.199920663568747, 63.3248621310789] + ], + [ + [-3.346213393571077, 58.615419520861536], + [-3.824923054448732, 58.75856894488285], + [-3.824923054448732, 59.451717318905224], + [-3.149923532624712, 60.35428947498107], + [-2.699923851408727, 61.875570783571504], + [-2.699923851408727, 62.08696177092739], + [-5.399921938704722, 62.91797878525176], + [-7.199920663568747, 63.3248621310789], + [-10.799918113296798, 64.70468599661166], + [-10.799918113296798, 65.08652060243708], + [-12.149917156944838, 65.27540872550341], + [-13.499916200592793, 65.27540872550341], + [-14.018075833523653, 65.25084981890586] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "fehmarn-blt", + "name": "Fehmarn Bält", + "color": "#af4298", + "feature_id": "fehmarn-blt-0", + "coordinates": [11.260634989711548, 54.599844524432626] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [11.212566292852728, 54.49618504236204], + [11.25006626628732, 54.59302163749791], + [11.35856618942509, 54.66306630403628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "fiber-optic-gulf-fog", + "name": "Fiber Optic Gulf (FOG)", + "color": "#2859a8", + "feature_id": "fiber-optic-gulf-fog-0", + "coordinates": [51.623486567000015, 27.172820502793854] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [51.300037894511576, 27.364667993860166], + [50.850038213295704, 26.562513149236622], + [50.576018407413954, 26.22949483839116] + ], + [ + [52.650036938159616, 26.562513149236622], + [52.08753733663963, 26.058287560298936], + [51.51927773920005, 25.294608758024538] + ], + [ + [47.97484025011303, 29.37410420420028], + [48.600039807215495, 28.951554732193216], + [49.16253940873568, 28.55704546571141], + [51.300037894511576, 27.364667993860166], + [51.97503741633571, 26.964304734562802], + [52.650036938159616, 26.562513149236622], + [53.550036300591586, 25.754704263415306], + [54.900035344239626, 25.55188275942578], + [55.308535054854815, 25.26935399813027] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "fibralink", + "name": "Fibralink", + "color": "#c83a26", + "feature_id": "fibralink-0", + "coordinates": [-74.90047466726729, 18.151229656501897] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-77.92138056441907, 18.469357593227244], + [-77.73737069477342, 18.500930002687937], + [-77.28737101355735, 18.500930002687937], + [-77.1032411434007, 18.398661383088154] + ], + [ + [-73.79987348353733, 19.952622905164304], + [-73.57487364292938, 19.104405475930548], + [-72.80265418997686, 18.86477035965592], + [-72.60866432740099, 18.865044781697776] + ], + [ + [-76.66662145270622, 17.94977294265982], + [-76.27487173022537, 17.609605913225096], + [-75.3748723677934, 17.609605913225096], + [-74.8123727662734, 18.251816319028308], + [-74.36237308505733, 19.316876111628602], + [-73.79987348353733, 19.952622905164304] + ], + [ + [-73.79987348353733, 19.952622905164304], + [-73.34987380232134, 20.375041253465525], + [-71.54987507745732, 20.375041253465525], + [-70.98737547593731, 20.16397503197578], + [-70.69118568576094, 19.79943635579707] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "finland-estonia-2-eesf-2", + "name": "Finland-Estonia 2 (EESF-2)", + "color": "#b91e4e", + "feature_id": "finland-estonia-2-eesf-2-0", + "coordinates": [25.13024862644491, 59.7869702219985] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [24.752496701038922, 59.43639985926242], + [25.087556463679334, 59.6796637072089], + [25.20005638398345, 59.962431634152296], + [25.087556463679334, 60.07486799642308], + [24.93247657353959, 60.171163188940454] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "flag-atlantic-1-fa-1", + "name": "FLAG Atlantic-1 (FA-1)", + "color": "#80479b", + "feature_id": "flag-atlantic-1-fa-1-0", + "coordinates": [-37.73905418674687, 41.55887250444766] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-5.674921743892327, 50.06393817056218], + [-6.299921301136777, 50.09514516168238], + [-8.099920026000802, 49.87814473780409], + [-10.799918113296798, 49.58728674004675], + [-16.199914287888873, 48.1067757091962], + [-23.39990918734489, 45.96024524125332], + [-39.59989771112103, 41.744358789482135], + [-50.39989006030518, 40.04369219282995], + [-61.199882409489234, 39.351217571171134], + [-68.39987730894534, 39.871225135616044], + [-71.67868498620714, 41.097018351055965], + [-72.16564464124035, 41.217596026703234], + [-72.3658444994169, 41.217596026703234], + [-72.82077417714045, 41.14638300214594], + [-73.19440391245772, 41.022498134754784], + [-73.34411380640178, 40.90945238298872] + ], + [ + [-73.65597358547735, 40.60068600870835], + [-71.09987539624133, 39.871225135616044], + [-68.39987730894534, 39.69832335493328], + [-61.199882409489234, 39.00237890905848], + [-50.39989006030518, 39.524987333511575], + [-39.59989771112103, 41.0693404382163], + [-23.39990918734489, 45.33107107332478], + [-16.199914287888873, 46.58235508209589], + [-5.399921938704722, 49.294684219425534], + [-4.499922576272752, 49.294684219425534], + [-3.599923213840782, 49.14772788577403], + [-2.81242377171273, 48.85250340834858], + [-2.767793803328971, 48.534938683234884] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "flag-north-asia-loopreach-north-asia-loop", + "name": "FLAG North Asia Loop/REACH North Asia Loop", + "color": "#c6b12e", + "feature_id": "flag-north-asia-loopreach-north-asia-loop-0", + "coordinates": [139.57757209199988, 30.646416428948015] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [121.02775554672925, 20.933105646773356], + [118.79999007691222, 21.111485983488905], + [116.54999167083221, 20.901439785237727], + [115.19999262718417, 21.111485983488905], + [114.131293384261, 21.84429407917378], + [113.93202352542542, 22.227650940806967], + [114.30004326471689, 21.84429407917378], + [115.19999262718417, 21.425951327903107], + [116.54999167083221, 21.21639789994191], + [118.79999007691222, 21.635297384859456], + [120.12788799225589, 21.666805652999244], + [121.02775554672925, 21.666805652999244], + [121.94998784542437, 22.469443964829594], + [122.39998752664027, 24.01990020343257], + [122.17498768603221, 24.532657566160623], + [121.80144795065141, 24.863504112487874], + [122.17498768603221, 24.941363171753835], + [122.84998720785634, 24.941363171753835], + [125.99998497636832, 24.32780311165172], + [128.6999830636644, 24.12261698700334], + [132.74998019460836, 24.532657566160623], + [137.24997700676838, 27.763588526057674], + [138.82497589102448, 29.34456698948989], + [139.7249752534564, 30.901396088515583], + [140.1749749346723, 32.43331330641712], + [140.62497461588836, 33.93964008831958], + [140.39997477528036, 34.68301765985788], + [140.01677504674288, 35.036003087164914], + [140.3437248151284, 34.68301765985788], + [140.51247469558447, 33.93964008831958], + [139.94997509406446, 32.43331330641712], + [139.0499757316325, 31.478822672736243], + [137.69997668798445, 30.70813999354155], + [134.99997860068837, 29.931250704427015], + [132.74998019460836, 29.931250704427015], + [130.49998178852834, 30.126049846722907], + [129.59998242609637, 30.901396088515583], + [129.37498258548837, 31.67051304708704], + [129.37498258548837, 32.81231878328768], + [129.48748250579226, 34.31215165223537], + [128.99949285148878, 35.17037876180012], + [128.81248298396835, 34.31215165223537], + [128.24998338244833, 32.81231878328768], + [128.02498354184027, 31.67051304708704], + [127.34998402001636, 29.540507745394393], + [127.12498417940836, 28.55704546571141], + [125.99998497636832, 26.159307970773796], + [125.6624852154562, 25.55188275942578], + [125.32498545454442, 24.12261698700334], + [124.42498609211222, 22.05298561667763], + [122.84998720785634, 21.111485983488905], + [121.02775554672925, 20.933105646773356] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "flores-corvo-cable-system", + "name": "Flores-Corvo Cable System", + "color": "#425daa", + "feature_id": "flores-corvo-cable-system-0", + "coordinates": [-30.995581748343454, 39.63909968175773] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-28.647515469891403, 38.52540431175973], + [-28.799905361936965, 38.38775473578434], + [-29.699904724368935, 38.651811712711236], + [-30.59990408680099, 39.351217571171134], + [-31.128423712392788, 39.46251104100091], + [-31.108153726752107, 39.566820275642186], + [-31.110503725087398, 39.67224286345825], + [-30.59990408680099, 39.524987333511575], + [-28.799905361936965, 39.00237890905848], + [-28.124905840112945, 38.91489898424143], + [-27.963385954535113, 39.01140845880104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "gemini-bermuda", + "name": "Gemini Bermuda", + "color": "#d73426", + "feature_id": "gemini-bermuda-0", + "coordinates": [-67.4409395957178, 37.60260352598644] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-74.0470933084045, 40.123492658236984], + [-71.09987539624133, 39.524987333511575], + [-67.4165446722143, 37.58978657360316], + [-64.79987985921728, 34.68301765985788], + [-64.12488033739326, 33.565491482352144], + [-63.899880496785315, 32.81231878328768], + [-64.23738025769728, 32.43331330641712], + [-64.81066985157355, 32.24775179744316] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "geo-eirgrid", + "name": "Geo-Eirgrid", + "color": "#50c3c9", + "feature_id": "geo-eirgrid-0", + "coordinates": [-4.5655466754901965, 53.58672242534149] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-6.165841396120214, 53.52654276893227], + [-5.624921779312757, 53.702365556682366], + [-3.330833404466404, 53.45193909085103], + [-3.027563619305653, 53.20172844509676] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "georgia-russia", + "name": "Georgia-Russia", + "color": "#ee7122", + "feature_id": "georgia-russia-0", + "coordinates": [39.72576960161075, 43.61545611441076] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [37.77279747733587, 44.72369712320864], + [37.80004745803154, 44.37405751055866], + [38.47504697985545, 43.889587736299546], + [39.37504634228762, 43.564400497117504], + [39.726116093586484, 43.61550655407004], + [39.82504602350352, 43.40114497315386], + [40.50004554532762, 42.74371346443661], + [41.40004490775959, 42.24601493182962], + [41.66752471827439, 42.14675635811534] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "germany-denmark-3", + "name": "Germany-Denmark 3", + "color": "#e61d2d", + "feature_id": "germany-denmark-3-0", + "coordinates": [12.037565708415343, 54.38254333816769] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [11.940005777527603, 54.5772362672833], + [12.037565708415343, 54.49397229925464], + [12.037565708415343, 54.29748595281848], + [12.149575629066447, 54.19157680986666] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "glo-1", + "name": "Glo-1", + "color": "#3665b0", + "feature_id": "glo-1-0", + "coordinates": [-18.763594901721206, 20.248687623409523] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-0.204315619320994, 5.558285889905761], + [-0.449925445328716, 3.279837005485092], + [-0.449925445328716, 2.156121468705749] + ], + [ + [-4.544402544762761, 50.82820142743802], + [-6.074881460557094, 50.382957439948456], + [-7.649920344784732, 49.73293362369091], + [-9.899918750864742, 48.70423463096077], + [-14.399915563024848, 44.051519228735145], + [-14.399915563024848, 39.69832335493328], + [-13.499916200592793, 35.78566189952613], + [-12.824916678768858, 33.18971466460036], + [-12.599916838160823, 30.126049846722907], + [-13.499916200592793, 28.161052262220892], + [-14.624915403632798, 26.964304734562802], + [-17.549913331536914, 22.884654113882362], + [-18.89991237518487, 19.952622905164304], + [-18.89991237518487, 14.801154224791475], + [-18.89991237518487, 11.735650161405744], + [-17.549913331536914, 8.635699417327544], + [-13.049916519376808, 4.164912849976844], + [-10.799918113296798, 1.918228780215685], + [-3.599923213840782, 1.918228780215685], + [-0.449925445328716, 2.156121468705749], + [1.575073120143173, 3.266814816815753], + [2.250072641967279, 3.379125568250004], + [2.700072323183178, 4.164912849976844], + [3.423511810692077, 6.439066911484701] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "southern-caribbean-fiber", + "name": "Southern Caribbean Fiber", + "color": "#44c0bb", + "feature_id": "southern-caribbean-fiber-0", + "coordinates": [-63.106187025004886, 16.267778494508377] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-62.2217566861799, 16.770717046677362], + [-62.21233169285668, 16.83045355356245], + [-62.156081732704635, 16.857419758344406], + [-62.043631812365234, 16.803627104178844] + ], + [ + [-62.85054881207171, 17.89791564702213], + [-63.056031094576085, 17.877381240664903], + [-63.168631014809236, 17.93095470636061], + [-63.168631014809236, 18.037957897069617], + [-63.07814455016468, 18.089928806917726] + ], + [ + [-64.81925984548829, 17.773909269375793], + [-64.57488001860925, 17.9845119674776], + [-64.12488033739326, 17.931002277731153], + [-63.9248804790751, 17.180187287481402], + [-62.374881577108795, 15.452760959322148], + [-61.76238201100924, 14.692360031374477], + [-61.31238232979325, 14.14758350694865] + ], + [ + [-61.71594204390779, 16.02893825919861], + [-61.874881931313254, 15.886035719079104], + [-61.98738185161727, 15.94013010690935], + [-63.05613109450532, 17.180187287481402], + [-63.17071434666629, 17.422853263294712], + [-63.11238105465728, 17.770328706497423], + [-63.22488097496121, 17.87742882640819], + [-63.22488097496121, 18.037957897069617], + [-63.07814455016468, 18.089928806917726] + ], + [ + [-66.10666893347562, 18.466104232947515], + [-65.69987922164925, 18.518710038590683], + [-65.36237946073729, 18.465364393137207], + [-65.13737962012925, 18.251816319028308], + [-64.68737993891327, 18.091435124357048], + [-64.12488033739326, 18.144943564296312], + [-63.449880815569244, 18.251816319028308], + [-63.22488097496121, 18.198340634646257], + [-63.07814455016468, 18.089928806917726] + ], + [ + [-61.57168214610279, 16.24447966793278], + [-61.47013221804178, 15.98876894276924], + [-61.495272200232264, 15.892797111330793], + [-61.60779212052215, 15.83866113843132], + [-61.71594204390779, 16.02893825919861] + ], + [ + [-61.20828240353856, 13.145460938850391], + [-61.59343213069488, 13.054150695298716], + [-61.93093189160683, 12.395734000022884], + [-61.93133189132351, 12.19152678955166], + [-61.7905819910321, 12.008779421336584] + ], + [ + [-60.98660256057862, 14.032406258622586], + [-61.199882409489234, 13.929303843271725], + [-61.42488225009727, 13.492128176464178], + [-61.42488225009727, 13.273238157547667], + [-61.20828240353856, 13.145460938850391] + ], + [ + [-64.81925984548829, 17.773909269375793], + [-64.68737993891327, 18.091435124357048] + ], + [ + [-61.31238232979325, 14.14758350694865], + [-61.199882409489234, 14.038469666260113], + [-60.98660256057862, 14.032406258622586] + ], + [ + [-61.31238232979325, 14.14758350694865], + [-60.9748825688812, 14.256644994553568], + [-60.74988272827325, 14.14758350694865], + [-59.849883365841194, 13.273238157547667], + [-59.60740353761618, 13.084493800663012] + ], + [ + [-61.094172484375164, 14.615455776713844], + [-61.31238232979325, 14.801154224791475], + [-61.42488225009727, 15.018578573757566], + [-61.392512273028444, 15.308036758161222], + [-61.5373821704012, 15.452760959322148], + [-61.72028204083327, 15.83866113843132], + [-61.71594204390779, 16.02893825919861] + ], + [ + [-61.71594204390779, 16.02893825919861], + [-61.874881931313254, 15.994221447252016], + [-62.099881771921204, 16.53419619825962], + [-62.043631812365234, 16.803627104178844], + [-61.98738185161727, 16.965102599435824], + [-61.84688195174468, 17.159549933439052] + ], + [ + [-62.72976132570861, 17.298635546518767], + [-63.05613109450532, 17.180187287481402] + ], + [ + [-61.094172484375164, 14.615455776713844], + [-61.143632449337275, 14.365653759228536], + [-61.143632449337275, 14.14758350694865], + [-60.98660256057862, 14.032406258622586] + ], + [ + [-61.7905819910321, 12.008779421336584], + [-61.814831973853245, 11.861435172630735], + [-61.64988209070522, 11.294709319565555], + [-61.593632130553246, 11.073982781226704], + [-61.64929209112324, 10.687695708022744] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "globalconnect-2-gc2", + "name": "GlobalConnect 2 (GC2)", + "color": "#3880c2", + "feature_id": "globalconnect-2-gc2-0", + "coordinates": [11.284722502689306, 57.483603421231265] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [10.516666785834417, 57.33104423288563], + [10.80006658507125, 57.4510360539646], + [11.70006594750339, 57.51151320633309], + [12.076235681021274, 57.48768909927358] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "globalconnect-3-gc3", + "name": "GlobalConnect 3 (GC3)", + "color": "#d13829", + "feature_id": "globalconnect-3-gc3-0", + "coordinates": [10.974669081828239, 55.33230861812649] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [11.149386337610053, 55.32605364145988], + [11.025066425679285, 55.33458061322915], + [10.799576585418407, 55.32441516057577] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "globalconnect-kpn", + "name": "GlobalConnect-KPN", + "color": "#e03225", + "feature_id": "globalconnect-kpn-0", + "coordinates": [11.828189393563662, 54.28682468920536] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [11.940005777527603, 54.5772362672833], + [11.812565867807308, 54.49397229925464], + [11.812565867807308, 54.29748595281848], + [12.132485641173247, 54.079177416570104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "globenet", + "name": "GlobeNet", + "color": "#7b489c", + "feature_id": "globenet-0", + "coordinates": [-39.356356011659614, 2.193155708986552] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-80.08893155227206, 26.35058457732009], + [-79.64986933934539, 26.813799487940685], + [-77.84987061448136, 28.951554732193216], + [-76.4998715708334, 30.901396088515583], + [-75.14987252718537, 33.565491482352144], + [-74.47487300595733, 35.541926812580044], + [-73.91237340443733, 39.00237890905848], + [-74.33781310245585, 39.60388206573748], + [-73.34987380232134, 39.351217571171134], + [-71.09987539624133, 39.00237890905848], + [-68.31654403464637, 37.58978657360316], + [-65.69987922164925, 34.68301765985788], + [-64.57488001860925, 33.565491482385426], + [-64.12488033739326, 32.81231878328768], + [-64.23738025769728, 32.52821504536482], + [-64.77341987796179, 32.31966263149877], + [-64.34988017800121, 31.28673881439167], + [-57.599884959761184, 22.05298561667763], + [-52.19988878516919, 15.669513225155328], + [-46.79989261057713, 10.410816505402636], + [-38.69989834868906, 1.468426767332062], + [-38.02489882686504, -1.231315750217505], + [-38.54296845985962, -3.718735129291019], + [-35.999900261393066, -3.479268678969987], + [-34.199901536528955, -4.15276774801373], + [-32.17490296483794, -5.49795068212461], + [-31.27490360862501, -9.290424301035614], + [-32.849902492881, -13.698987269610853], + [-34.649901217745025, -18.026426383713385], + [-38.02489882686504, -22.87343495354625], + [-40.94989675476907, -23.905969261790176], + [-42.299895798417, -23.700175468198324], + [-43.209565153998795, -22.903486555497864], + [-42.299895798417, -23.597156567259958], + [-40.94989675476907, -23.70010845220321], + [-38.362398587776994, -22.562119511835817], + [-35.549900580176995, -18.026426383713385], + [-33.749901855313055, -13.698987269610853], + [-31.949903130448945, -9.290424301035614], + [-32.51240272885991, -5.833801116332353], + [-34.199901536528955, -4.489307688629395], + [-35.999900261393066, -3.703826470668162], + [-38.54296845985962, -3.718735129291019] + ], + [ + [-80.08893155227206, 26.35058457732009], + [-79.64986933934539, 26.663094151095322], + [-77.84987061448136, 27.364667993860166], + [-76.94987125204939, 27.16466581281361], + [-73.34987380232134, 24.532657566160623], + [-69.2998766713773, 22.469443964829594], + [-67.94987762772926, 20.585819096040467], + [-67.83737770742533, 18.67864702215462], + [-68.1748774683373, 17.823934412537824], + [-68.39987730894534, 15.23578178303569], + [-67.49987794651328, 12.615395567393307], + [-67.27487810590533, 11.294709319565555], + [-66.96042832866442, 10.599588212552732], + [-66.71237850438533, 10.853089690745378], + [-65.69987922164925, 11.405009147532837], + [-63.899880496785315, 11.735650161405744], + [-62.99988113435326, 11.735650161405744], + [-61.199882409489234, 11.735650161405744], + [-59.39988368462521, 11.294709319565555], + [-54.89988687246519, 9.08033076823304], + [-51.29988942273715, 6.852191098754417], + [-46.79989261057713, 5.061986954416028], + [-40.94989675476907, 1.468426767332062], + [-39.149898029905046, -1.231315750217505], + [-38.54296845985962, -3.718735129291019] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "globenet", + "name": "GlobeNet", + "color": "#939597", + "feature_id": "globenet-1", + "coordinates": [-72.33573647214467, 13.765504793167963] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-68.39987730894534, 15.23578178303569], + [-70.19987603380928, 14.801154224791475], + [-71.54987507745732, 14.14758350694865], + [-74.2498731647534, 12.834868817846598], + [-74.92487268657733, 11.735650161405744], + [-74.77975278938158, 10.94044561572673] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "go-1-mediterranean-cable-system", + "name": "GO-1 Mediterranean Cable System", + "color": "#49b751", + "feature_id": "go-1-mediterranean-cable-system-0", + "coordinates": [13.336982061256037, 36.642482372416254] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.591375316091586, 37.650586172786205], + [12.712565230239278, 37.232354321556215], + [13.05006499115126, 36.87321951208918], + [14.062564273887318, 36.05897312258671], + [14.411884026425952, 35.95058770661464] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "gondwana-1", + "name": "Gondwana-1", + "color": "#583c97", + "feature_id": "gondwana-1-0", + "coordinates": [158.58624284592312, -27.92871865477443] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [151.20699711948444, -33.86955173177813], + [152.09996648689648, -33.6490453774241], + [154.79996457419256, -32.042386559187065], + [157.49996266148864, -28.74381028114999], + [165.5999569233767, -22.665969967794723], + [166.43925632880908, -22.30330806462004] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "oteglobe-kokkini-bari", + "name": "OTEGLOBE Kokkini-Bari", + "color": "#eb8d22", + "feature_id": "oteglobe-kokkini-bari-0", + "coordinates": [19.37472434465883, 39.98581587040226] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [16.86881228591494, 41.125709058522546], + [18.00006148452735, 41.15410110990115], + [18.675061006351456, 40.89949091487156], + [19.125060687567355, 40.387320290775165], + [19.237560607871444, 40.04369219282995], + [19.92399012159845, 39.75405284068893], + [19.125060687567355, 40.04369219282995], + [19.01256076726341, 40.387320290775165], + [18.56256108604734, 40.814402154698826], + [18.00006148452735, 41.0693404382163], + [16.86881228591494, 41.125709058522546] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "greenland-connect-north", + "name": "Greenland Connect North", + "color": "#b1542d", + "feature_id": "greenland-connect-north-0", + "coordinates": [-53.99988751003313, 66.40121848608959] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-51.72996911806467, 64.1812188111395], + [-52.19988878516919, 64.12167519439029], + [-52.87488830699313, 64.31739001144422], + [-53.09988814760116, 64.70468599661166], + [-53.09988814760116, 65.08652060243708], + [-52.90572233117308, 65.40767479539323], + [-53.54988782881715, 65.5562256550422], + [-53.99988751003313, 65.83404693088383], + [-53.99988751003313, 66.3808044991722], + [-53.99988751003313, 66.56045213116752], + [-53.67338536157229, 66.93947156321047], + [-54.22488735064117, 67.0039445723607], + [-54.4498871912492, 67.2662194729948], + [-54.4498871912492, 68.12014116880246], + [-53.54988782881715, 68.61776755908173], + [-52.85911591887751, 68.70697594519777] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "greenland-connect", + "name": "Greenland Connect", + "color": "#f47920", + "feature_id": "greenland-connect-0", + "coordinates": [-47.19085085267099, 59.82619186892154] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-53.96590753410493, 48.186402513737875], + [-53.54988782881715, 48.0692013806549], + [-53.09988814760116, 48.256798568947545], + [-52.19988878516919, 48.70423463096077], + [-49.49989069787313, 50.740281893948264], + [-49.04989101665714, 51.8655716555981], + [-50.84988974152117, 60.130942866098394], + [-51.74988910395311, 61.23255301306608], + [-52.64988846638518, 62.71239189403053], + [-52.64988846638518, 63.526173423791136], + [-51.97488894456117, 63.82549832634285], + [-51.72996911806467, 64.1812188111395], + [-51.86238902425714, 63.82549832634285], + [-52.42488862577723, 63.526173423791136], + [-52.19988878516919, 62.71239189403053], + [-50.39989006030518, 61.23255301306608], + [-48.59989133544116, 60.35428947498107], + [-46.79989261057713, 59.6796637072089], + [-45.89989324814505, 59.451717318905224], + [-43.19989516084908, 59.22222391484422], + [-27.899905999504995, 61.01524141470435], + [-22.49990982491292, 62.08696177092739], + [-20.92491094065693, 63.3248621310789], + [-20.14185149538352, 63.642367197144665] + ], + [ + [-46.035393152155706, 60.719028410192635], + [-46.34989292936115, 60.35428947498107], + [-46.79989261057713, 59.6796637072089] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "guam-okinawa-kyushu-incheon-goki", + "name": "Guam Okinawa Kyushu Incheon (GOKI)", + "color": "#48b64e", + "feature_id": "guam-okinawa-kyushu-incheon-goki-0", + "coordinates": [131.44483294188095, 21.9023042791803] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [144.8003616580052, 13.513685339593195], + [144.44997190622448, 13.929303843271725], + [138.59997605041642, 17.39502263470061], + [131.84998083217639, 21.635297384859456], + [128.6999830636644, 23.711258142484382], + [127.57498386062443, 24.941363171753835], + [127.12498417940836, 25.95717997876443], + [127.12498417940836, 26.562513149236622], + [128.02498354184027, 28.55704546571141], + [128.24998338244833, 29.540507745394393], + [128.92498290427224, 30.514495959759188], + [129.0374828245762, 31.67051304708704], + [129.59998242609637, 33.565491482352144], + [130.04998210731227, 33.93964008831958], + [130.45721181882723, 34.03316211713022], + [131.0319114117045, 33.83952016970099] + ], + [ + [127.12498417940836, 25.95717997876443], + [127.46248394032031, 26.159307970773796], + [127.68084378563216, 26.212414126750332] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "guernsey-jersey-4", + "name": "Guernsey-Jersey-4", + "color": "#3d7abe", + "feature_id": "guernsey-jersey-4-0", + "coordinates": [-2.389985809619816, 49.31280629009663] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-2.201384204578886, 49.24804518533196], + [-2.362424090496745, 49.294684219425534], + [-2.558073951896546, 49.42332570943023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "gulf-bridge-international-cable-system-gbicsmiddle-east-north-africa-mena-cable-system", + "name": "Gulf Bridge International Cable System (GBICS)/Middle East North Africa (MENA) Cable System", + "color": "#b8d432", + "feature_id": "gulf-bridge-international-cable-system-gbicsmiddle-east-north-africa-mena-cable-system-0", + "coordinates": [64.34501361776319, 21.844367955443175] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [49.27503932903963, 28.951554732193216], + [49.16253940873568, 28.853067255226364] + ], + [ + [56.333724328601164, 25.121690004958737], + [56.700034069103765, 25.348717422116806], + [56.86878394955983, 26.159307970773796], + [56.700034069103765, 26.562513149236622], + [56.250034387887666, 26.562513149236622], + [55.800034706671596, 26.2097854122473], + [55.350035025455725, 25.95717997876443], + [53.550036300591586, 25.95717997876443], + [52.200037256943745, 25.8559854660721], + [51.45198778686901, 25.53892654713283], + [51.750037575727674, 26.159307970773796], + [51.750037575727674, 26.562513149236622], + [51.52503773511961, 26.964304734562802], + [50.850038213295704, 27.364667993860166], + [50.17503869147157, 28.359233526108653], + [49.16253940873568, 28.853067255226364], + [48.600039807215495, 29.049948644465616], + [47.97484025011303, 29.37410420420028] + ], + [ + [56.333724328601164, 25.121690004958737], + [57.03753383001572, 25.348717422116806], + [57.03753383001572, 26.159307970773796], + [56.86878394955983, 26.562513149236622], + [56.250034387887666, 26.763586569619832], + [55.800034706671596, 26.41147606086841], + [55.350035025455725, 26.361086325391653], + [53.550036300591586, 26.361086325391653], + [53.100036619375715, 26.562513149236622], + [52.42503709755158, 26.964304734562802], + [51.750037575727674, 27.364667993860166], + [50.400038532079606, 28.55704546571141], + [49.27503932903963, 28.951554732193216], + [48.82503964782373, 29.540507745394393], + [48.531779855571585, 29.92363278689706] + ], + [ + [58.17620302337187, 23.684877531684634], + [58.331282913511615, 23.917101290935022], + [58.50003279396768, 24.12261698700334] + ], + [ + [50.656188350620795, 26.241586178580576], + [51.07503805390374, 26.562513149236622], + [51.52503773511961, 26.964304734562802] + ], + [ + [50.21419866373054, 26.285375359318067], + [50.231288651623714, 26.461843796189072], + [50.400038532079606, 26.964304734562802], + [50.850038213295704, 27.364667993860166] + ], + [ + [50.842718218481366, 28.970348642858426], + [50.400038532079606, 28.55704546571141] + ], + [ + [56.333724328601164, 25.121690004958737], + [56.9250339097116, 24.762719791019123], + [58.50003279396768, 24.12261698700334], + [59.85003183761572, 24.53265756616244], + [63.22502944673573, 22.469443964829594], + [66.60002705585575, 20.585819096040467], + [70.2000245055838, 19.846840405431607], + [72.87590260996691, 19.076074257285313] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "hantru1-cable-system", + "name": "HANTRU1 Cable System", + "color": "#45469c", + "feature_id": "hantru1-cable-system-0", + "coordinates": [155.96859490890475, 9.858275424294789] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [159.07026154907427, 7.786404758723677], + [158.84996170513668, 8.635699417327544], + [158.84996170513668, 9.524411345019587] + ], + [ + [167.39995564824065, 8.635699417327544], + [169.64995405432066, 7.744889052551343], + [171.19624295891518, 7.077763788446845] + ], + [ + [144.69470173285575, 13.464772962370034], + [144.84372162728843, 13.273238157547667], + [145.34997126865645, 12.944533868662859], + [146.24997063108842, 12.395734000022884], + [147.14996999352056, 12.17588718550806], + [149.39996839960057, 11.294709319565555], + [151.1999671244645, 10.410816505402636], + [158.84996170513668, 9.524411345019587], + [163.7999581985126, 9.08033076823304], + [167.39995564824065, 8.635699417327544], + [167.40581564408942, 9.1864874758231] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "hawaiki", + "name": "Hawaiki", + "color": "#3851a3", + "feature_id": "hawaiki-0", + "coordinates": [-169.4062918842406, -1.196005655510163] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [179.99994672228874, -23.905969261790176], + [173.69995118526478, -28.150316035846004], + [170.9999530979687, -29.137613161610005], + [166.94995596702458, -32.61276000573585], + [165.5999569233767, -34.11602012163186] + ], + [ + [-173.69980271349004, -11.943944931746927], + [-172.07822386223182, -12.89421363936296], + [-170.99980462619405, -13.698987269610853], + [-170.6957048416213, -14.276544564158712] + ], + [ + [-158.056894349398, 21.335422205733266], + [-157.83731395062597, 21.134806167482367], + [-157.61231411001802, 21.134806167482367], + [-157.4998141897139, 21.16977956388078], + [-152.99981737755388, 25.348717422116806], + [-147.59982120296192, 29.73606949729205], + [-138.5998275786418, 34.31215165223537], + [-128.2498349106737, 42.74371346443661], + [-125.09983714216165, 45.172673246984374], + [-124.19983777972968, 45.80361417369457], + [-123.52483825790574, 45.80361417369457], + [-122.98980067585494, 45.52289882456287] + ], + [ + [-158.056894349398, 21.335422205733266], + [-158.28731363184195, 20.796306105108954], + [-159.07481307397, 18.67864702215462], + [-161.99981100187404, 13.054150695298716], + [-167.3998071764661, 2.367912558705314], + [-171.44980430741003, -4.825692499217524], + [-172.79980335105807, -10.177457430361159], + [-173.69980271349004, -11.943944931746927], + [-176.39980080078612, -18.453813775777263], + [-179.99979825051417, -23.905969261790176] + ], + [ + [174.57446056575415, -36.12614990708741], + [174.59995054769675, -35.59302880961411], + [174.14995086648068, -34.857839362235865], + [172.7999518228328, -34.11602012163186], + [165.5999569233767, -34.11602012163186], + [159.29996138635258, -35.04226072286545], + [155.69996393662453, -34.857839362235865], + [152.09996648689648, -34.022829775550775], + [151.20699711948444, -33.86955173177813] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "hawk", + "name": "Hawk", + "color": "#ad4599", + "feature_id": "hawk-0", + "coordinates": [15.654715239111027, 34.290528015468226] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [32.46665123625965, 34.76657169708608], + [31.500051920411693, 34.157137999942535], + [29.645663234673975, 32.84186407440686], + [28.8000538337115, 32.33831157801282] + ], + [ + [5.372530429989041, 43.29362778902916], + [5.850070091695329, 41.744358789482135], + [6.975069294735334, 38.651811712711236], + [7.650068816559269, 37.94551049545976], + [9.00006786020731, 37.58978657360316], + [10.348617229769246, 37.500588446053314], + [10.912566505375338, 37.32187222983512], + [11.25006626628732, 37.232354321556215], + [12.262565549023208, 36.240655233214795], + [12.60006530993536, 35.78566189952613], + [13.162564911457537, 35.419780517080454], + [14.4000640347993, 34.49779087043359], + [16.65006244087931, 34.12610104005762], + [19.35006052817539, 34.49779087043359], + [25.20005638398345, 33.565491482352144], + [28.8000538337115, 32.33831157801282], + [29.893513059094772, 31.191465077638554] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "exa-north-and-south", + "name": "EXA North and South", + "color": "#4cb96a", + "feature_id": "exa-north-and-south-0", + "coordinates": [-5.766007052697006, 55.06781714328207] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-70.9502755028152, 42.46364601310964], + [-69.2998766713773, 42.57825408607275], + [-65.69987922164925, 42.74371346443661], + [-63.899880496785315, 44.051519228735145], + [-63.5724907287112, 44.653228704914795], + [-61.199882409489234, 44.53466416326725], + [-50.39989006030518, 46.73677946695426], + [-39.59989771112103, 49.87814473780409], + [-23.39990918734489, 54.03403825672413], + [-16.199914287888873, 54.81936191424907], + [-12.599916838160823, 55.33458061322915], + [-8.999919388432772, 55.58970711313168], + [-6.676191034583809, 55.415759313160976], + [-6.074921460528742, 55.33458061322915], + [-4.949922257488737, 54.36308597431912], + [-4.949922257488737, 54.100057482410676], + [-4.837372337220188, 53.96791403087386], + [-3.599923213840782, 53.702365556682366], + [-3.006373634316702, 53.64793339883286], + [-3.599923213840782, 53.56895929103041], + [-5.624921779312757, 53.36805813650224], + [-6.248311337697743, 53.348124632595216], + [-5.624921779312757, 53.23359531864921], + [-5.399921938704722, 52.691501594646866], + [-5.624921779312757, 52.14259270367222], + [-7.199920663568747, 51.44682015166964], + [-10.799918113296798, 50.740281893948264], + [-16.199914287888873, 50.740281893948264], + [-23.39990918734489, 51.30637567738265], + [-39.59989771112103, 49.294684219425534], + [-50.39989006030518, 46.116434772202325], + [-61.199882409489234, 44.37405751055866], + [-63.5724907287112, 44.653228704914795] + ], + [ + [-6.676191034583809, 55.13093005815972], + [-6.676191034583809, 55.415759313160976] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "exa-express", + "name": "EXA Express", + "color": "#b03d2b", + "feature_id": "exa-express-0", + "coordinates": [-33.52371705026684, 49.46790128330392] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-3.010863631136061, 51.29364574899657], + [-4.049922895056767, 51.44682015166964], + [-5.399921938704722, 51.37665177535368], + [-7.199920663568747, 51.30637567738265], + [-10.799918113296798, 50.597677199053464], + [-16.199914287888873, 50.45463912589386], + [-23.39990918734489, 50.740281893948264], + [-39.59989771112103, 48.70423463096077], + [-50.39989006030518, 45.489027144440826], + [-61.199882409489234, 44.21300917863164], + [-63.57581072635929, 44.646178570763] + ], + [ + [-8.472719761905978, 51.89860855381119], + [-7.649920344784732, 51.586833980054195], + [-7.199920663568747, 51.30637567738265] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "high-capacity-undersea-guernsey-optical-fibre-hugo", + "name": "High-capacity Undersea Guernsey Optical-fibre (HUGO)", + "color": "#57bf9b", + "feature_id": "high-capacity-undersea-guernsey-optical-fibre-hugo-0", + "coordinates": [-4.141858113524648, 49.67498805692733] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-2.537573966418904, 49.50954697267542], + [-3.599923213840782, 49.58728674004675], + [-4.499922576272752, 49.73293362369091], + [-5.399921938704722, 49.80559362880811], + [-5.654511758350935, 50.04314791189421] + ], + [ + [-2.558223951790211, 49.42685110088382], + [-2.924923692016677, 49.294684219425534], + [-3.459883313046362, 48.87341683445018], + [-3.459883313046362, 48.730552979168635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "hokkaido-sakhalin-cable-system-hscs", + "name": "Hokkaido-Sakhalin Cable System (HSCS)", + "color": "#adc136", + "feature_id": "hokkaido-sakhalin-cable-system-hscs-0", + "coordinates": [141.2325731513499, 44.947768328778835] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [141.31540412678189, 43.171175265998414], + [141.07497429710443, 43.564400497117504], + [141.07497429710443, 44.051519228735145], + [141.2999741377125, 45.33107107332478], + [141.63747389862445, 46.272182853813746], + [141.8593537414428, 46.68485289093087] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "honotua", + "name": "Honotua", + "color": "#ba8c34", + "feature_id": "honotua-0", + "coordinates": [-153.43373008341504, -0.00949394343183485] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-155.8563559638703, 20.003739828700503], + [-156.374814986674, 19.74098736552503], + [-156.59981482728193, 19.104405475930548], + [-154.79981610241802, 5.957818681088611], + [-150.29981929025791, -13.698987269610853], + [-149.51231984812995, -17.16855309422607], + [-149.4410806705751, -17.51215245847922], + [-149.6248197684339, -17.48691706147673], + [-149.82951038559526, -17.53831879598863], + [-150.07481944964997, -17.383402005942372], + [-150.74981897147407, -16.953454989810012], + [-150.99996952686274, -16.729596913676545], + [-151.19981865269014, -16.6823203057713], + [-151.44297920183917, -16.73053543115003], + [-151.6680575995786, -16.674752663542336], + [-151.74947897696904, -16.50585915193267] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "i2i-cable-network-i2icn", + "name": "i2i Cable Network (i2icn)", + "color": "#d86526", + "feature_id": "i2i-cable-network-i2icn-0", + "coordinates": [92.91613919957425, 8.811687635077135] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [80.2429873910547, 13.063853101883296], + [81.45001653598385, 12.395734000022884], + [83.70001494206386, 11.294709319565555], + [89.10001111665602, 9.96791518697421], + [93.15000824759997, 8.740828945067847], + [95.40000665367998, 7.744889052551343], + [97.42500521915215, 6.740481724921096], + [99.2250039440161, 5.286069860821101], + [99.90000346584, 4.613591578862867], + [100.68750290796802, 3.266814816815753], + [101.25000250948804, 2.705081160335851], + [102.15000187192001, 2.143087178471944], + [102.68279723997185, 1.755006673795577], + [103.34065102845304, 1.355886056053208], + [103.50000091556822, 1.25729927808527], + [103.64609081207684, 1.338585852071589] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "ingrid", + "name": "INGRID", + "color": "#41b549", + "feature_id": "ingrid-0", + "coordinates": [-2.3702775130576867, 49.34057361627839] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-2.021314332142055, 49.22527732021615], + [-1.916424406447106, 49.25668077735244], + [-1.650024595167196, 49.28328299965523] + ], + [ + [-2.529413972199507, 49.451047180325105], + [-2.304174131761641, 49.294684219425534], + [-2.201384204578886, 49.24804518533196] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "interchange-cable-network-1-icn1", + "name": "Interchange Cable Network 1 (ICN1)", + "color": "#cd2b42", + "feature_id": "interchange-cable-network-1-icn1-0", + "coordinates": [173.4144568591635, -18.24880002598107] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [168.32300499434402, -17.730502326180016], + [168.63745477158457, -17.919416202114803], + [169.1999543731046, -18.026426383713385], + [177.29994863499283, -18.453813775777263], + [178.0874480765248, -18.453813775777263], + [178.43744782917761, -18.12381094353711] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "ip-only-denmark-sweden", + "name": "IP-Only Denmark-Sweden", + "color": "#3465b0", + "feature_id": "ip-only-denmark-sweden-0", + "coordinates": [12.642148694188222, 55.526080187888624] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.415005441033458, 55.647554790974624], + [12.487565389631243, 55.55790652931407], + [12.60006530993536, 55.526080187888624], + [12.712565230239278, 55.526080187888624], + [12.916665085653108, 55.53356806062777] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "italy-albania", + "name": "Italy-Albania", + "color": "#a8842d", + "feature_id": "italy-albania-0", + "coordinates": [18.160839301623355, 41.238752328966655] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [16.86881228591494, 41.125709058522546], + [18.00006148452735, 41.23875232896668], + [19.125060687567355, 41.23875232896668], + [19.4500604573345, 41.31691028026597] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "italy-croatia", + "name": "Italy-Croatia", + "color": "#c23f2f", + "feature_id": "italy-croatia-0", + "coordinates": [12.86304544552965, 45.33107107332478] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.257409117404194, 45.496082427884346], + [12.376065468618947, 45.33107107332478], + [13.275064831759295, 45.33107107332478], + [13.533478213424985, 45.433276695186294] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "italy-greece-1", + "name": "Italy-Greece 1", + "color": "#55b847", + "feature_id": "italy-greece-1-0", + "coordinates": [19.282686617727137, 39.95054065921238] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [18.485701140495706, 40.14820187022195], + [18.675061006351456, 40.04369219282995], + [19.80006020939146, 39.871225135616044], + [19.968810089847352, 39.7847901333038], + [19.968810089847352, 39.741589529321175], + [20.01546005680015, 39.68362591227577] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "italy-libya", + "name": "Italy-Libya", + "color": "#2767b2", + "feature_id": "italy-libya-0", + "coordinates": [12.848474053890214, 35.26510367864702] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.591375316091586, 37.650586172786205], + [12.543815349783216, 37.232354321556215], + [12.60006530993536, 36.87321951208918], + [12.825065150547204, 35.419780517080454], + [13.162564911455348, 33.18971466460036], + [13.187364893886866, 32.87762290319543] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "italy-monaco", + "name": "Italy-Monaco", + "color": "#51459c", + "feature_id": "italy-monaco-0", + "coordinates": [8.09860957318611, 43.80787484134072] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [7.426728974775415, 43.73825568793552], + [7.875068657167304, 43.72721479104973], + [8.325068338383204, 43.889587736299546], + [8.483758225965857, 44.305748230542434] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "jaka2ladema", + "name": "JaKa2LaDeMa", + "color": "#4a499e", + "feature_id": "jaka2ladema-0", + "coordinates": [109.57936272970508, -2.5891805154390397] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [117.5510609616654, 0.327276576000315], + [117.89999071448025, 0.118588418888407], + [119.2499897581283, -1.006358951224712], + [119.38846966002788, -1.142074966989412] + ], + [ + [111.14999549624022, -3.479268678969987], + [112.04999485867219, -3.928327304142726], + [112.94999422110416, -3.928327304142726], + [114.0749934241442, -3.703826470668162], + [114.60399304939611, -3.327586828573203] + ], + [ + [109.97196633076723, -1.85872398669315], + [109.57499661198418, -1.906058394384871], + [109.34999677137611, -2.130918480960247] + ], + [ + [109.33554678161275, -0.027021392288191], + [108.89999709016004, -0.331409329660175], + [109.12499693076828, -1.681168935905106], + [109.34999677137611, -2.130918480960247], + [109.79999645259218, -3.029995968008762], + [110.47499597441615, -3.479268678969987], + [111.14999549624022, -3.479268678969987], + [111.59999517745612, -3.254657364797595], + [111.75292506911941, -2.849274293012257] + ], + [ + [114.09716340843894, -8.615167135560483], + [114.41249318505615, -8.846050186819042], + [114.97499278657611, -8.846050186819042], + [115.22152261133627, -8.656661268449483] + ], + [ + [116.08153200269348, -8.585998888200606], + [115.8749921490083, -8.566064314426171], + [115.53749238809613, -8.595852074426745], + [115.33144253346805, -8.536714291275615] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "jakabare", + "name": "JAKABARE", + "color": "#33af85", + "feature_id": "jakabare-0", + "coordinates": [107.0551802698566, -1.496688499548668] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [104.84999995921609, 1.355961034999325], + [104.62500011860826, 1.355961034999325], + [104.20156041857692, 1.328818505780021], + [103.9870105705659, 1.389451396800126] + ], + [ + [104.13320046700372, 1.173685663377114], + [104.28790035741284, 1.201587148227134], + [104.62500011860826, 1.299726182129234], + [104.84999995921609, 1.355961034999325], + [105.29999964043216, 1.243490076978134], + [106.87499852468827, -0.331409329660175], + [107.15324832757338, -2.130918480960247], + [107.26974824504398, -3.029995968008762], + [107.54999804651217, -4.601453764837203], + [107.21249828560005, -5.273944363641391], + [107.12099835041957, -5.981154260263196] + ], + [ + [109.18222689022608, -0.061391357195134], + [108.89999709016004, 0.006088583243098], + [106.87499852468827, -0.331409329660175] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "janna", + "name": "Janna", + "color": "#ba9f39", + "feature_id": "janna-0", + "coordinates": [10.744941686900233, 38.192000756395146] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [9.109447782721531, 39.215608817480586], + [9.45006754142321, 38.82731109526628], + [11.70006594750339, 37.72338353997506], + [12.591375316091586, 37.650586172786205] + ], + [ + [9.486887515339816, 40.92273704364533], + [10.237566983551233, 41.323294052209405], + [11.25006626628732, 41.744358789482135], + [11.796845878943572, 42.09141425047335] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "japan-u-s-cable-network-jus", + "name": "Japan-U.S. Cable Network (JUS)", + "color": "#ae4b9c", + "feature_id": "japan-u-s-cable-network-jus-0", + "coordinates": [-121.19579962219929, 35.213493045719275] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [140.75095452664314, 36.80186137248688], + [141.18747421740838, 35.78566189952613], + [141.07497429710443, 35.419780517080454], + [140.3437248151284, 34.77547607575676], + [139.94997509406446, 34.77547607575676], + [139.8169651882899, 35.03751783625896], + [138.59997605041642, 34.31215165223537], + [137.69997668798445, 34.219177704953495], + [136.87399727311598, 34.33682825203164] + ], + [ + [-179.99979825051417, 24.941363171753835], + [-172.79980335105807, 22.884654113882362], + [-163.79980972673806, 21.635297384859456], + [-158.84981323336194, 21.21639789994191], + [-158.39981355214616, 21.373625954851605], + [-158.22066328843272, 21.463446823448095], + [-158.39981354930399, 21.635297384859456], + [-158.399812452297, 21.73983373091116], + [-158.17481371153804, 22.05298561667763], + [-157.94981387093, 22.261369678340685], + [-152.99981737755388, 24.532657566160623], + [-147.59982120296192, 26.562513149236622], + [-138.5998275786418, 28.161052262220892], + [-127.79983522945773, 32.052708023486105], + [-122.39983905486591, 34.68301765985788], + [-120.84720164908995, 35.367078251717174], + [-121.94983937364967, 35.78566189952613], + [-123.74983809851369, 38.29952060596935], + [-123.68704956557441, 38.969436928873364], + [-124.64983746094566, 39.00237890905848], + [-130.49983331675372, 41.40772623743587], + [-138.59982757864196, 43.40114497315386], + [-151.19983391146812, 44.69487681591917], + [-179.99981350929244, 44.69487681591917] + ], + [ + [179.99992672230294, 24.941363171753835], + [160.19996074878455, 31.28673881439167], + [149.39996839960057, 32.43331330641712], + [138.59997605041642, 32.81231878328768], + [137.69997668798445, 33.37780603565923], + [136.87399727311598, 34.33682825203164] + ], + [ + [140.75095452664314, 36.80186137248688], + [141.9749736589405, 36.69301553274448], + [149.39996839960057, 37.232354321556215], + [160.19996074878455, 42.079235618164205], + [172.79992073307184, 44.694816073296465], + [179.9999271925697, 44.694816073296465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "jerry-newton", + "name": "Jerry Newton", + "color": "#4365af", + "feature_id": "jerry-newton-0", + "coordinates": [-68.59059221921494, 12.158312080067503] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-68.28414739152548, 12.163814736152517], + [-68.51237722924927, 12.17588718550806], + [-68.89264695986272, 12.090439618305055] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "jonah", + "name": "Jonah", + "color": "#43b549", + "feature_id": "jonah-0", + "coordinates": [24.560435160725348, 34.92286639072546] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [34.769679604772676, 32.04501185826473], + [33.75005032708759, 32.43331330641712], + [31.050052239791512, 33.18971466460036], + [25.20005638398345, 34.77547607575676], + [23.40005765911934, 35.190256526051456], + [22.05005861547147, 35.876870570092734], + [19.80006020939146, 37.67887792909195], + [19.18276064669223, 39.48474996079955], + [18.90006084695932, 40.04369219282995], + [18.787560926655374, 40.387320290775165], + [18.00006148452735, 40.98447035812865], + [16.86881228591494, 41.125709058522546] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "kattegat-2", + "name": "Kattegat 2", + "color": "#7fc241", + "feature_id": "kattegat-2-0", + "coordinates": [11.914794736272313, 56.93701515888509] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [10.514616787286627, 57.24491811100583], + [10.687566664767303, 57.23857647500998], + [10.966956466845033, 57.272647240874335] + ], + [ + [11.199286302260361, 57.31375088583721], + [11.70006594750339, 57.02488552657641], + [12.15006562871929, 56.840738642145595], + [12.68336525092488, 56.683369081239334] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "kodiak-kenai-fiber-link-kkfl", + "name": "Kodiak Kenai Fiber Link (KKFL)", + "color": "#36bcac", + "feature_id": "kodiak-kenai-fiber-link-kkfl-0", + "coordinates": [-151.64981833390584, 58.401267347419406] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-149.44767066574025, 60.11004931326181], + [-149.39981992782594, 59.90606992457441], + [-149.39981992782594, 59.6796637072089], + [-149.84981960904193, 59.451717318905224], + [-151.19981865268997, 58.99117670269845], + [-151.42481849329792, 58.52439396084483], + [-151.42481849329792, 58.05131589106017], + [-151.8748181745139, 57.571890279005004], + [-152.32906855174068, 57.42449129028316], + [-152.09981801512194, 57.571890279005004], + [-152.09981801512194, 57.69234458026085], + [-152.39517850323767, 57.79442221787269], + [-152.09981801512194, 57.812399750516676], + [-151.64981833390584, 58.05131589106017], + [-151.64981833390584, 58.52439396084483], + [-152.32481785572998, 59.1068949571908], + [-152.32481785572998, 59.50884868221257], + [-152.09981801512194, 59.56588346342974], + [-151.5442491275403, 59.646565622018784], + [-152.09981801512194, 59.6796637072089], + [-152.09981801512194, 59.90606992457441], + [-151.64981833390584, 60.35428947498107], + [-151.2687186038806, 60.553102538800744], + [-151.59185909261018, 60.70906894445227], + [-151.59185909261018, 60.867466201164945], + [-150.2334100892656, 61.217558335568384], + [-149.85841036439217, 61.217558335568384] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "korea-japan-cable-network-kjcn", + "name": "Korea-Japan Cable Network (KJCN)", + "color": "#b32d25", + "feature_id": "korea-japan-cable-network-kjcn-0", + "coordinates": [129.12059853162665, 35.10111055511703] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [131.0319114117045, 33.83952016970099], + [130.49998178852834, 34.31215165223537], + [128.99949285148878, 35.17037876180012], + [130.04998210731227, 34.31215165223537], + [130.40164185819341, 33.59022724332917] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "kuwait-iran", + "name": "Kuwait-Iran", + "color": "#c72379", + "feature_id": "kuwait-iran-0", + "coordinates": [49.26005253379532, 29.34456698948989] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [49.950038850863734, 29.442584645837485], + [50.31204859441263, 29.246027433733815] + ], + [ + [49.500039169647664, 29.34456698948989], + [49.478069185211325, 29.072736419111635] + ], + [ + [47.97484025011303, 29.37410420420028], + [48.48753988691158, 29.34456698948989], + [49.500039169647664, 29.34456698948989], + [49.950038850863734, 29.442584645837485], + [50.52112844629863, 29.570753352727053] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "lanis-1", + "name": "Lanis-1", + "color": "#53bc84", + "feature_id": "lanis-1-0", + "coordinates": [-3.8299893271552037, 53.89757264331388] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-3.050753602877677, 53.80897597127557], + [-3.599923213840782, 53.868530644567244], + [-4.387222656110339, 53.96791403087386], + [-4.566622529021913, 54.10028616652036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "lanis-2", + "name": "Lanis-2", + "color": "#324ca0", + "feature_id": "lanis-2-0", + "coordinates": [-5.080617264613153, 54.408690786113596] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-4.691422440612428, 54.222445613689786], + [-4.791422369771567, 54.28083898900164], + [-5.384291949777236, 54.54294403514453], + [-5.484341878900892, 54.54294403514453] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "latvia-sweden-1-lv-se-1", + "name": "Latvia-Sweden 1 (LV-SE 1)", + "color": "#43b549", + "feature_id": "latvia-sweden-1-lv-se-1-0", + "coordinates": [19.67056714864438, 58.014915360983906] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [21.570078955493614, 57.389720408424836], + [21.15005925303933, 57.4510360539646], + [19.575060368783426, 58.05131589106017], + [18.45006116574342, 58.40671668748652], + [18.00006148452735, 58.75856894488285], + [17.946541522441493, 58.90309907219313] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "lev-submarine-system", + "name": "Lev Submarine System", + "color": "#c1972d", + "feature_id": "lev-submarine-system-0", + "coordinates": [23.168258410868134, 34.66651612107643] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [31.050052239791512, 33.00121852265437], + [31.500051920411693, 34.06399293012595], + [32.46665123625965, 34.76657169708608] + ], + [ + [12.591375316091586, 37.650586172786205], + [12.656315270087333, 37.232354321556215], + [12.825065150543395, 36.87321951208918], + [13.50006467236733, 35.96797434759347], + [14.4000640347993, 35.419780517080454], + [16.65006244087931, 35.05222991093683], + [19.35006052817539, 35.419780517080454], + [25.20005638398345, 34.2656775265242], + [31.050052239791512, 33.00121852265437], + [33.75005032708759, 32.24321001626265], + [34.769679604772676, 32.04501185826473] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "lfon-libyan-fiber-optic-network", + "name": "LFON (Libyan Fiber Optic Network)", + "color": "#36af8a", + "feature_id": "lfon-libyan-fiber-optic-network-0", + "coordinates": [18.62786938044954, 30.686408759572714] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.083365675970299, 32.93354641183947], + [12.375065469327325, 33.00121852265437], + [12.529855359672894, 32.774885686861666], + [12.642240573027038, 32.96372252942484], + [13.05006499115126, 33.00121852265437], + [13.187364893886866, 32.87762290319543], + [13.50006467236733, 33.00121852265437], + [14.175064194191435, 32.81231878328768], + [14.264514130824125, 32.649989370963], + [14.4000640347993, 32.81231878328768], + [14.85006371601537, 32.81231878328768], + [15.075063556623405, 32.62301664000799], + [15.094983542511955, 32.37460980808484], + [15.30006339723144, 32.33831157801282], + [16.425062600271445, 31.478822672736243], + [16.588442484531726, 31.20558735149686], + [16.875062281487345, 31.28673881439167], + [17.55006180331145, 31.28673881439167], + [18.225061325135385, 30.901396088515583], + [18.411971192726753, 30.586989976235827], + [18.675061006351456, 30.70813999354155], + [19.35006052817539, 30.70813999354155], + [19.57652036774914, 30.378447643853804], + [19.575060368783426, 30.70813999354155], + [19.80006020939146, 31.861808602270827], + [20.066760020458872, 32.11691354443619], + [20.025060049999325, 32.43331330641712], + [20.25005989060736, 32.717717936758305], + [20.70005957182343, 32.81231878328768], + [20.949959394792188, 32.71697755177149], + [21.15005925303933, 33.00121852265437], + [21.6000589342554, 33.00121852265437], + [21.741758833873917, 32.882141080671744], + [22.05005861547147, 33.00121852265437], + [22.50005829668737, 33.00121852265437], + [22.63911819817619, 32.76363502668917], + [22.95005797790344, 32.81231878328768], + [23.85005734033541, 32.43331330641712], + [23.960407262162676, 32.07985133144845] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "libreville-port-gentil-cable", + "name": "Libreville-Port Gentil Cable", + "color": "#48c2c9", + "feature_id": "libreville-port-gentil-cable-0", + "coordinates": [8.90976872924449, -0.003377499758215663] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [8.781608014966395, -0.720651899991594], + [8.775049269612765, -0.331409329660175], + [9.020377845819638, 0.265947444189607], + [9.454267538448192, 0.394465191855375] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "lower-indian-ocean-network-lion", + "name": "Lower Indian Ocean Network (LION)", + "color": "#c64d2b", + "feature_id": "lower-indian-ocean-network-lion-0", + "coordinates": [53.69753767143021, -19.685595665633713] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [57.5100934952502, -20.077536205633123], + [56.700034069103765, -20.15254378601884], + [55.800034706671596, -20.469058485457424], + [55.57503486606376, -20.57441905727606], + [55.54778488536789, -20.89726651520496], + [55.350035025455725, -20.57441905727606], + [52.200037256943745, -18.880139975101287], + [49.40023924034699, -18.146086570227396] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "lower-indian-ocean-network-2-lion2", + "name": "Lower Indian Ocean Network 2 (LION2)", + "color": "#973a95", + "feature_id": "lower-indian-ocean-network-2-lion2-0", + "coordinates": [46.247408018834335, -11.943944931746927] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [45.450042038703714, -11.943944931746927], + [45.16576224009026, -12.81709644553311] + ], + [ + [39.70014611198383, -4.050300939496424], + [42.30004427019156, -5.049857167366866], + [43.200043632623704, -5.721872747834027], + [45.450042038703714, -11.943944931746927], + [47.250040763567654, -11.943944931746927], + [48.600039807215495, -11.50333384598423], + [49.500039169647664, -11.50333384598423], + [50.400038532079606, -12.383840433185668], + [51.750037575727674, -17.16855309422607], + [52.200037256943745, -18.880139975101287] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "mainone", + "name": "MainOne", + "color": "#603f98", + "feature_id": "mainone-0", + "coordinates": [-19.280078359401585, 10.541976821281878] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-3.599923213840782, 0.118588418888407], + [-3.924922983607843, 1.468426767332062], + [-4.049922895056767, 2.367912558705314], + [-4.049922895056767, 3.266814816815753], + [-4.026242911831901, 5.323508791824736] + ], + [ + [-19.803965545293096, 15.23578178303569], + [-18.449912693968884, 15.23578178303569], + [-17.44571340535299, 14.686594841995088] + ], + [ + [-0.204315619320994, 5.558285889905761], + [0.000074235887269, 3.279837005485092], + [0.000074235887269, 0.806604849908751] + ], + [ + [-9.107439312264688, 38.64265833034625], + [-9.449919069648843, 38.21117903702327], + [-9.787418830560796, 37.232354321556215], + [-10.124918591472778, 35.78566189952613], + [-10.574918272688848, 33.93964008831958], + [-13.949915881808863, 29.73606949729205], + [-14.399915563024848, 28.951554732193216], + [-14.624915403632798, 28.161052262220892], + [-15.074915084848868, 26.964304734562802], + [-18.449912693968884, 22.884654113882362], + [-19.799911737616924, 19.952622905164304], + [-19.804120576691247, 15.23578178303569], + [-19.799911737616924, 11.735650161405744], + [-18.449912693968884, 8.635699417327544], + [-13.949915881808863, 3.266814816815753], + [-10.799918113296798, 0.118588418888407], + [-3.599923213840782, 0.118588418888407], + [0.000074235887269, 0.806604849908751], + [1.575073120143173, 1.918228780215685], + [2.250072641967279, 2.480311786858834], + [3.150072004399249, 4.164912849976844], + [3.423511810692077, 6.439066911484701] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "malaysia-cambodia-thailand-mct-cable", + "name": "Malaysia-Cambodia-Thailand (MCT) Cable", + "color": "#b7922e", + "feature_id": "malaysia-cambodia-thailand-mct-cable-0", + "coordinates": [103.6480647779089, 7.308585029265686] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [103.50000091556822, 8.190543417795567], + [101.92500203131218, 9.524411345019587], + [101.25000250948804, 11.294709319565555], + [101.1375025891841, 12.17588718550806], + [101.27734249012033, 12.670662156670659] + ], + [ + [103.50674091079347, 10.630401703210367], + [103.61250083587217, 9.524411345019587], + [103.50000091556822, 8.190543417795567], + [103.95000059678412, 5.510071711803135], + [103.72500075617612, 4.613591578862867], + [103.39521098980222, 4.116310078259517] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "mariana-guam-cable", + "name": "Mariana-Guam Cable", + "color": "#5e479c", + "feature_id": "mariana-guam-cable-0", + "coordinates": [145.40516004909395, 14.362316164146677] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [145.75114098446412, 15.17820120186434], + [145.79997094987252, 15.070969022342098], + [145.63747106498883, 15.011508499399383], + [145.6874710295684, 14.801154224791475], + [145.40822122739164, 14.365653759228536], + [145.21247136606272, 14.152228172439436], + [145.12497142804838, 13.929303843271725], + [145.0124715077445, 13.710817738179543], + [144.80954165150203, 13.549094363149067] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "mataram-kupang-cable-system-mkcs", + "name": "Mataram Kupang Cable System (MKCS)", + "color": "#d4254a", + "feature_id": "mataram-kupang-cable-system-mkcs-0", + "coordinates": [121.44644788312527, -9.06830600387434] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [118.08222058479092, -8.84114915636195], + [117.89999071388436, -8.586582275145616], + [117.56249095297241, -8.364039699657866], + [117.33749111236435, -8.17849027894485], + [117.22499119265612, -7.732822794391694] + ], + [ + [116.65492159590289, -8.537099969976481], + [116.54999167023632, -8.252720521975078], + [116.54999167023632, -8.029988442955243], + [116.77499151084433, -7.807134147543906], + [117.22499119265612, -7.732822794391694], + [118.2374904753922, -7.732822794391694], + [118.57499023630416, -7.955717094334744], + [118.76036010439051, -8.319317925115513], + [118.77186509624042, -8.391864542982574], + [118.74490011534257, -8.464269028556998] + ], + [ + [120.25301904757285, -9.645765890160561], + [120.59998880177616, -9.290424301035614], + [120.59998880177616, -9.06830600387434] + ], + [ + [123.58338668830928, -10.182939736570972], + [123.29998688907224, -10.011319800856569], + [122.84998720726028, -9.918984265715636], + [121.72498800422042, -9.179382545871192], + [121.64273806248687, -8.845694469061982], + [121.4999881642083, -9.06830600387434], + [120.59998880177616, -9.06830600387434], + [119.2499897581283, -9.06830600387434], + [118.71181013937976, -8.79644401019425] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "matrix-cable-system", + "name": "Matrix Cable System", + "color": "#b0c335", + "feature_id": "matrix-cable-system-0", + "coordinates": [107.11364859974103, -2.2527434346415873] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [103.96260058785819, 1.134723598626692], + [104.01992054725221, 1.212637187567935], + [104.16611044369009, 1.230603090362649], + [104.28790035741284, 1.187552709061862], + [104.62500011860826, 1.187252773694183], + [104.84999995921609, 1.131014326431796], + [105.29999964043216, 1.131014326431796] + ], + [ + [105.29999964043216, 1.131014326431796], + [104.84999995921609, 1.243490076978134], + [104.62500011860826, 1.229455855593812], + [104.19443042362789, 1.295159856377438], + [103.9870105705659, 1.389451396800126] + ], + [ + [106.83339855415792, -6.171588071824203], + [106.98749844499216, -5.273944363641391], + [107.32499820590417, -4.601453764837203], + [107.21349828489204, -3.029995968008762], + [107.0979983667132, -2.130918480960247], + [106.76249860438415, -0.331409329660175], + [105.29999964043216, 1.131014326431796] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "maya-1", + "name": "Maya-1", + "color": "#934499", + "feature_id": "maya-1-0", + "coordinates": [-83.49021638494517, 18.259432065261024] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-80.16016897784436, 26.01054866801087], + [-79.7623692596494, 25.348717422116806], + [-79.87486917995342, 24.73717827217618], + [-80.99986838299351, 23.917101290935022], + [-83.24986678907334, 23.711258142484382], + [-84.82486567332933, 22.884654113882362], + [-85.49986519515335, 21.635297384859456], + [-85.72486503576138, 20.375041253465525], + [-84.82486567332933, 19.104405475930548], + [-82.12486758603333, 17.39502263470061], + [-80.77486854238529, 16.10232559580288], + [-80.54986870177734, 13.929303843271725], + [-80.09986902056127, 13.054150695298716], + [-78.29987029569733, 10.632033208117747], + [-76.4998715708334, 10.078698006650882], + [-75.55866223759489, 9.496381979983852] + ], + [ + [-86.76758665233308, 21.095728792367282], + [-86.51236447788934, 21.268825931479142], + [-86.17486471697737, 21.32123529551194], + [-85.49986519515335, 21.635297384859456] + ], + [ + [-83.03765938887453, 9.988597517410057], + [-82.91236702816137, 10.410816505402636], + [-80.77486854238529, 11.95585820711483], + [-80.09986902056127, 13.054150695298716] + ], + [ + [-87.94615578765044, 15.844981598742493], + [-87.29986392001756, 16.53419619825962], + [-85.49986519515353, 18.251816319028308], + [-84.82486567332933, 19.104405475930548] + ], + [ + [-82.12486758603333, 17.39502263470061], + [-81.16676076149959, 19.282955912662572] + ], + [ + [-79.75352926591177, 9.437623338483888], + [-79.1998696581294, 9.96791518697421], + [-78.29987029569733, 10.632033208117747] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "med-cable-network", + "name": "Med Cable Network", + "color": "#3d80bf", + "feature_id": "med-cable-network-0", + "coordinates": [2.922309022542237, 36.90995314592746] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [7.755438741914361, 36.90282046530186], + [7.650068816559269, 37.232354321556215], + [6.300069772911229, 38.651811712711236], + [5.512570330783177, 41.744358789482135], + [5.372530429989041, 43.29362778902916] + ], + [ + [6.300069772911229, 38.651811712711236], + [5.400070410479259, 38.21117903702327], + [3.150072004399249, 37.05299936423356], + [3.035712085412854, 36.76212778210993], + [2.812572243487267, 37.05299936423356], + [1.800072960751208, 37.05299936423356], + [0.000074235887269, 36.33133835588808], + [-0.642015309250468, 35.701641134808256] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "melita-1", + "name": "Melita 1", + "color": "#824c9e", + "feature_id": "melita-1-0", + "coordinates": [14.706025675533994, 36.312829675470994] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [14.458753993222814, 35.93413648626421], + [14.625063875407335, 36.14986678681771], + [14.85006371601537, 36.60275474032986], + [14.853873713316574, 36.733882871591675] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "mid-atlantic-crossing-mac", + "name": "Mid-Atlantic Crossing (MAC)", + "color": "#5bba46", + "feature_id": "mid-atlantic-crossing-mac-0", + "coordinates": [-65.3373952092027, 19.083986111341318] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-74.2498731647534, 33.565491482352144], + [-75.59987220840135, 30.901396088515583], + [-77.39987093326538, 28.951554732193216], + [-79.1998696581294, 26.964304734562802], + [-79.64986933934539, 26.361086325391653], + [-80.16016897784436, 26.01054866801087], + [-79.64986933934539, 26.26024097157773], + [-78.97486981752137, 26.964304734562802], + [-77.84987061448136, 27.663994423746914], + [-76.94987125204939, 27.763588526057674], + [-73.34987380232134, 26.964304734562802], + [-69.2998766713773, 24.941363171753835], + [-67.0498782652973, 22.05298561667763], + [-65.92487906225729, 20.375041253465525], + [-65.24987954043327, 18.89166158430325], + [-65.19362958028121, 18.251816319028308], + [-64.81925984548829, 17.773909269375793], + [-64.57488001860925, 18.144943564296312], + [-64.23738025769728, 18.358623372153403], + [-64.23738025769728, 18.89166158430325], + [-64.59988000089903, 20.91311676631949], + [-65.24987954043327, 24.941363171753835], + [-66.59987858408131, 28.161052262220892], + [-72.44987443988929, 38.651811712711236], + [-72.9122741123211, 40.773520734289946], + [-72.67487428049732, 38.651811712711236], + [-74.2498731647534, 33.565491482352144] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "moratelindo-international-cable-system-1-mic-1", + "name": "Moratelindo International Cable System-1 (MIC-1)", + "color": "#344fa2", + "feature_id": "moratelindo-international-cable-system-1-mic-1-0", + "coordinates": [103.98140354665279, 1.2606675774959228] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [103.9870105705659, 1.389451396800126], + [103.97812557686021, 1.185378176915862], + [103.96260058785819, 1.134723598626692] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tampnet-offshore-foc-network", + "name": "Tampnet Offshore FOC Network", + "color": "#97489b", + "feature_id": "tampnet-offshore-foc-network-0", + "coordinates": [2.790859004752832, 56.74783401585216] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [2.700072323183178, 58.99117670269845], + [3.375071845007284, 59.90606992457441], + [4.500071048047289, 60.57611674038759], + [4.830250814144932, 60.587340230884934] + ], + [ + [3.600071685615319, 56.345222926819986], + [4.500071048047289, 56.59379297841909], + [6.300069772911229, 57.69234458026085], + [6.752799452193415, 58.082771129772794] + ], + [ + [-2.106804271580245, 57.15379590661516], + [-1.799924488976671, 57.08606597586797], + [2.700072323183178, 56.840738642145595] + ], + [ + [1.729273010906667, 52.46882263773057], + [1.912572881055326, 52.623261418527164], + [2.250072641967279, 53.23359531864921], + [2.475072482575314, 54.03403825672413], + [2.812572243487267, 54.81936191424907], + [3.600071685615319, 56.345222926819986], + [2.984972121357828, 56.549192472345595], + [2.700072323183178, 56.840738642145595], + [2.475072482575314, 57.812399750516676], + [2.700072323183178, 58.99117670269845], + [4.050071366831219, 58.8750683108978], + [5.175070569871224, 58.99117670269845], + [5.524480322346278, 59.279267580371936] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "northstar", + "name": "NorthStar", + "color": "#df2e91", + "feature_id": "northstar-0", + "coordinates": [-135.9452309508062, 54.36598433526308] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-148.6847312254872, 60.7730276878024], + [-148.5212613454204, 60.76902362218718], + [-148.4135414244514, 60.78620827245604], + [-148.3139814974957, 60.777128895046644], + [-148.19748158296838, 60.776342870973], + [-148.09962084889906, 60.752420948495455], + [-148.08273166715713, 60.72557180082265], + [-148.0608116832391, 60.69119678436098], + [-148.05646168643068, 60.65876959082513], + [-147.87570181904903, 60.60642348854208], + [-147.63385199648735, 60.60251643847562], + [-147.50573209048525, 60.57448569437847], + [-147.49523209818884, 60.485025728482015], + [-147.56803204477754, 60.31180235217164], + [-147.64054199157908, 60.251238005321085], + [-147.76252108770387, 60.11873415270091], + [-147.78878188281968, 60.02401418328765], + [-147.89425180543947, 59.96228646929305], + [-148.0092917210379, 59.87790332473858], + [-148.08131166819888, 59.839334333097895], + [-147.82482104356984, 59.451717318905224], + [-145.3498227968819, 58.52439396084483], + [-139.04982725985775, 56.840738642145595], + [-138.1498278974258, 55.84318584148099], + [-135.4498298101298, 54.03403825672413], + [-132.29983204161775, 50.740281893948264], + [-127.79983522945773, 47.805412175893], + [-125.09983714216165, 46.58235508209589], + [-124.19983777972968, 46.0383951936513], + [-123.52483825790574, 45.881984904500825], + [-122.98980067585494, 45.52289882456287] + ], + [ + [-146.35343293589432, 61.130356463051186], + [-146.55934278482414, 61.1091536349258], + [-146.65954271131034, 61.06746482894039], + [-146.8010426074959, 60.965892581920855], + [-146.8200825935267, 60.919223034679874], + [-146.8590525649356, 60.858765344213595], + [-147.06984241028505, 60.78766268631912], + [-147.32995221944992, 60.778700885367044], + [-147.53078207210683, 60.76640117651834], + [-147.6833211438099, 60.76501417254232], + [-147.78747188378077, 60.76463322432923], + [-147.88996180858683, 60.765898150319714], + [-148.0282417071348, 60.756524791852456], + [-148.21046157344534, 60.78816537105905], + [-148.32238149133283, 60.78737961765452], + [-148.3868814440111, 60.79100075570173], + [-148.47316138070994, 60.7834700860044], + [-148.51818134768, 60.77741693630949], + [-148.6847312254872, 60.7730276878024] + ], + [ + [-134.74729145098985, 58.55104926823199], + [-134.89544134229646, 58.498125955375684], + [-134.983811277462, 58.49169307012278], + [-135.03889123705144, 58.460243297756676], + [-135.05266122694877, 58.413573683867384], + [-135.02922124414602, 58.365509963813906], + [-135.01477125474756, 58.30573481193784], + [-135.01477125474756, 58.2388425542629], + [-135.06389121870967, 58.186808702747555], + [-135.17493000487144, 58.17919055335861], + [-135.27131106653152, 58.19901015539148], + [-135.35237100706024, 58.22272642917167], + [-135.44749093727344, 58.28756755123473], + [-135.54587086509486, 58.32947954580658], + [-135.6318608020065, 58.357898675160754], + [-135.7696107009433, 58.36023311803251], + [-135.88347061740754, 58.34363161367776], + [-135.98699054145797, 58.3271220669817], + [-136.11301044900068, 58.30106382103432], + [-136.28406032350637, 58.28854000125975], + [-136.39207024426244, 58.27450259262446], + [-136.47756018154095, 58.24090063696545], + [-136.55056012798295, 58.19852006981361], + [-136.87126989268737, 58.14519214129464], + [-139.04982725985775, 56.840738642145595] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "oran-valencia-orval", + "name": "Oran-Valencia (ORVAL)", + "color": "#939597", + "feature_id": "oran-valencia-orval-0", + "coordinates": [0.7108684280158002, 37.75874153644594] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [0.675073757711203, 37.58978657360316], + [2.812572243487267, 37.14273000200086], + [3.035712085412854, 36.76212778210993] + ], + [ + [-0.376975497007066, 39.459646713436825], + [0.450073917103168, 39.17701458492104], + [0.900073598319238, 38.651811712711236], + [0.675073757711203, 37.58978657360316], + [0.000074235887269, 36.51238821239372], + [-0.642015309250468, 35.701641134808256] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pacific-caribbean-cable-system-pccs", + "name": "Pacific Caribbean Cable System (PCCS)", + "color": "#44b97a", + "feature_id": "pacific-caribbean-cable-system-pccs-0", + "coordinates": [-64.74486945319329, 20.4858606454211] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-66.10666893347562, 18.466104232947515], + [-65.69987922164925, 18.57203905256688], + [-64.83573983381382, 18.575280919370726], + [-64.597150002833, 18.41441211576617] + ], + [ + [-76.04987188961734, 10.853089690745378], + [-75.50573227509092, 10.386807451633246] + ], + [ + [-70.04992614003528, 12.616917900441507], + [-69.74987635259329, 13.929303843271725] + ], + [ + [-70.04992614003528, 12.616917900441507], + [-69.2998766713773, 12.615395567393307], + [-68.96237691046534, 12.395734000022884], + [-68.9569769142907, 12.168849063089965] + ], + [ + [-81.65563040282986, 30.332100867462543], + [-80.54986870177734, 30.320465424761352], + [-79.1998696581294, 30.126049846722907], + [-73.34987380232134, 29.540507745394393], + [-69.2998766713773, 27.56430948794184], + [-66.37487874347327, 23.711258142484382], + [-64.79987985921728, 20.796306105108954], + [-64.46238009830532, 18.89166158430325], + [-64.597150002833, 18.41441211576617], + [-64.34988017800121, 18.30522807897634], + [-64.23738025769728, 18.251816319028308], + [-64.23738025769728, 17.823934412537824], + [-66.14987890286532, 16.10232559580288], + [-69.74987635259329, 13.929303843271725], + [-71.54987507745732, 13.929303843271725], + [-74.2498731647534, 12.615395567393307], + [-76.04987188961734, 10.853089690745378], + [-78.29987029569733, 10.853089690745378], + [-79.31236957843342, 9.96791518697421], + [-79.75347926594715, 9.43772198486991] + ], + [ + [-79.56661939832038, 8.950317108800647], + [-79.31236957843342, 8.190543417795567], + [-78.74986997691342, 7.298762754459602], + [-78.74986997691342, 5.061986954416028], + [-80.99986838299333, 2.367912558705314], + [-80.99986838299333, 0.568578852526286], + [-80.88736846268931, -0.331409329660175], + [-80.71613109211359, -0.949727245539691] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pacific-crossing-1-pc-1", + "name": "Pacific Crossing-1 (PC-1)", + "color": "#05a5d7", + "feature_id": "pacific-crossing-1-pc-1-0", + "coordinates": [-126.75299565709342, 40.03014465757684] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-179.99979825051417, 49.00033438946335], + [-151.19981865268997, 49.00033438946335], + [-138.5998275786418, 48.40638249553794], + [-125.0998371421619, 48.40638249553794], + [-124.64983746094566, 48.481009942103015], + [-123.74983809851369, 48.256798568947545], + [-122.84983873608172, 48.2193340142027], + [-122.30218058161336, 47.886323206202945], + [-122.84983873608172, 48.1818420220076], + [-123.74983809851369, 48.1818420220076], + [-124.64983746094566, 48.40638249553794], + [-125.0998371421619, 48.256798568947545], + [-127.34983554824174, 42.74371346443661], + [-126.44983618580969, 38.651811712711236], + [-122.84983873608172, 35.60293032290622], + [-120.62152181466485, 35.12094936772425], + [-122.84983873608172, 35.419780517080454], + [-129.59983395432175, 38.651811712711236], + [-138.59982757864196, 42.74371346443661], + [-151.19983391146837, 44.051567482244394], + [-179.99981350929244, 44.051567482244394] + ], + [ + [179.9999271925697, 44.05150606868031], + [172.79992073307184, 44.05150606868031], + [160.19996074878455, 41.40772623743587], + [143.09997286257644, 33.93964008831958], + [138.59997605041642, 33.00121852265437], + [137.69997668798445, 33.471699570864644], + [136.87399727311598, 34.33682825203164], + [137.69997668798445, 33.75276987113051], + [138.59997605041642, 33.565491482352144], + [140.84997445649643, 34.31215165223537], + [141.52497397832056, 35.05222991093683], + [141.52497397832056, 35.78566189952613], + [140.6124746247436, 36.38348373531238], + [142.19997350014447, 36.14986678681771], + [149.39996839960057, 39.69832335493328], + [160.19996074878455, 45.96024524125332], + [172.7999518228328, 49.00033438946335], + [179.99995828233065, 49.00033438946335] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "palawa-iloilo-cable-system", + "name": "Palawa-Iloilo Cable System", + "color": "#4db74a", + "feature_id": "palawa-iloilo-cable-system-0", + "coordinates": [120.74805537239743, 10.999877242154184] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [119.50037958074992, 10.820000490489491], + [120.14998912056026, 10.853089690745378], + [121.04998848299223, 11.073982781226704], + [121.4999881642083, 10.853089690745378], + [121.9412978515804, 10.749301721782956] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pan-american-pan-am", + "name": "Pan American (PAN-AM)", + "color": "#3b4a9f", + "feature_id": "pan-american-pan-am-0", + "coordinates": [-81.50893875518835, -8.4430306411885] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-64.88249980068858, 17.439838994611762], + [-64.97292973662702, 17.63007818366333], + [-64.97292973662702, 17.773909269375793], + [-64.81925984548829, 17.773909269375793] + ], + [ + [-70.19987603380928, 15.018578573757566], + [-69.81037630973466, 12.506164132917064], + [-69.87858626141407, 12.414622452999794], + [-69.92570622803376, 12.332300205580253], + [-70.10768609911749, 12.274284010110051], + [-70.38966589936034, 12.080221230226954], + [-70.2043160306639, 11.708782466419052] + ], + [ + [-70.3067559580946, -18.473543073651314], + [-72.89987412110536, -18.880139975101287], + [-74.69987284596938, -18.453813775777263], + [-76.94987125204939, -15.441023659568003], + [-77.84987061448136, -13.698987269610853], + [-77.62487077389342, -12.822995625629687], + [-76.87428130559798, -12.278420041799535], + [-79.1998696581294, -11.943944931746927], + [-80.09986902056127, -11.50333384598423], + [-82.34986742664137, -6.616650693475464], + [-82.34986742664147, -3.029995968008762], + [-82.34986742664137, 0.568578852526286], + [-81.4498680642095, 2.367912558705314], + [-79.1998696581294, 5.061986954416028], + [-78.97486981752137, 7.298762754459602], + [-79.42486949873734, 8.190543417795567], + [-79.53668941952313, 8.96478842656748] + ], + [ + [-80.9144209466341, -2.272903429730974], + [-81.44986806420931, -2.805287932308005], + [-82.34986742664147, -3.029995968008762] + ], + [ + [-79.89390916646535, 9.356210743520421], + [-79.7623692596494, 9.96791518697421], + [-78.29987029569733, 11.073982781226704], + [-76.04987188961734, 11.073982781226704], + [-74.77975278938158, 10.94044561572673], + [-75.03737260688135, 11.735650161405744], + [-74.2498731647534, 13.054150695298716], + [-71.54987507745732, 14.365653759228536], + [-70.19987603380928, 15.018578573757566], + [-68.39987730894534, 15.669513225155328], + [-66.14987890286532, 16.749771315644608], + [-64.88249980068858, 17.439838994611762], + [-64.34988017800121, 17.823934412537824], + [-64.34988017800121, 18.19838813366107], + [-64.57488001860925, 18.251816319028308], + [-64.9044197851602, 18.324509241083035] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pan-american-crossing-pac", + "name": "Pan-American Crossing (PAC)", + "color": "#36a9b7", + "feature_id": "pan-american-crossing-pac-0", + "coordinates": [-102.80128879703568, 16.23046473604046] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-85.04986551393736, 7.744889052551343], + [-84.59986583272148, 8.635699417327544], + [-84.45220835106024, 9.525851215144371] + ], + [ + [-118.79984160513769, 31.28673881439167], + [-117.44984256148982, 32.43331330641712], + [-117.03822444362808, 32.53101418059239] + ], + [ + [-106.42187223254342, 23.199717218127375], + [-107.54984957473773, 22.05298561667763], + [-107.99984925595354, 20.375041253465525] + ], + [ + [-79.54654941253825, 8.934106573765888], + [-79.7623692596494, 8.190543417795567], + [-79.64986933934539, 7.298762754459602], + [-80.09986902056146, 6.852191098754417], + [-80.99986838299351, 6.852191098754417], + [-85.04986551393736, 7.744889052551343], + [-87.29986392001737, 9.524411345019587], + [-98.09985626920162, 14.365653759228536], + [-102.59985308136154, 16.10232559580288], + [-106.64985021230558, 18.67864702215462], + [-107.99984925595354, 20.375041253465525], + [-111.59984670568159, 22.469443964829594], + [-116.09984351784178, 27.763588526057674], + [-118.79984160513769, 31.28673881439167], + [-120.5998403300018, 32.81231878328768], + [-121.04984001121787, 34.31215165223537], + [-120.62152181466485, 35.12094936772425] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "penbal-5", + "name": "PENBAL-5", + "color": "#a82990", + "feature_id": "penbal-5-0", + "coordinates": [1.8683599906210873, 39.833527443176905] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [2.00134281816986, 41.30436622489077], + [1.800072960751208, 40.72920412488665], + [1.800072960751208, 40.04369219282995], + [2.025072801359244, 39.351217571171134], + [2.475072482575314, 39.17701458492104], + [2.970972131275403, 39.35484412819346] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pencan-8", + "name": "Pencan-8", + "color": "#a52d5f", + "feature_id": "pencan-8-0", + "coordinates": [-11.862998867675145, 33.22377025645193] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-6.087131451879088, 36.27672346192381], + [-6.749920982352762, 36.240655233214795], + [-8.549919707216787, 35.876870570092734], + [-9.449919069648843, 35.419780517080454], + [-11.249917794512783, 33.93964008831958], + [-14.849915244240833, 29.73606949729205], + [-15.187415005152786, 28.951554732193216], + [-16.031164407432783, 28.441436356005823], + [-16.371744166162927, 28.355537519987053] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "persona", + "name": "Persona", + "color": "#8fac3c", + "feature_id": "persona-0", + "coordinates": [-59.26685070080069, 46.764182420836505] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-60.13538316359052, 46.251455775311484], + [-59.39988368462521, 46.58235508209589], + [-58.949884003409224, 47.19740739556977], + [-58.68650418998989, 47.61768369957326] + ], + [ + [-58.68650418998989, 47.61768369957326], + [-59.17488384401726, 47.19740739556977], + [-59.624883525233244, 46.58235508209589], + [-60.13538316359052, 46.251455775311484] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "picot-1", + "name": "Picot-1", + "color": "#c83994", + "feature_id": "picot-1-0", + "coordinates": [166.2639883897493, -20.98014509134987] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [166.48901629355865, -20.705648050304404], + [166.46636630960435, -20.827183610422736], + [166.16186652531465, -20.977074429932117] + ], + [ + [165.34155710642963, -20.94561398973883], + [165.85776674074188, -21.024574704206998], + [166.16186652531465, -20.977074429932117], + [166.68042615796216, -20.99266679172058], + [166.98120594488674, -20.848996911269097], + [167.15151582423775, -20.780630532391598] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pipe-pacific-cable-1-ppc-1", + "name": "PIPE Pacific Cable-1 (PPC-1)", + "color": "#8ac53f", + "feature_id": "pipe-pacific-cable-1-ppc-1-0", + "coordinates": [153.63402372988574, -9.02685541840637] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [145.78474096066176, -5.23368424614938], + [146.02497079048058, -5.161910662112973], + [146.6749703300147, -5.137011581064712], + [146.90776526532372, -4.838945214956084] + ], + [ + [151.20699711948444, -33.86955173177813], + [152.09996648689648, -33.179523456669244], + [153.8999652117606, -31.851465665577166], + [154.79996457419256, -28.74381028114999], + [154.79996457419256, -25.5408960762594], + [154.3499648929765, -18.880139975101287], + [153.8999652117606, -15.441023659568003], + [154.79996457419256, -11.943944931746927], + [154.79996457419256, -10.177457430361159], + [152.99996584932862, -8.401139048122928], + [149.39996839960057, -7.063446338991156], + [148.04996935595253, -6.225371753845536], + [147.59996967473646, -5.777839699209608], + [147.31871987397645, -5.273944363641391], + [146.90776526532372, -4.838945214956084], + [145.89997087903149, -2.330766659231585], + [146.65530736297208, 1.519276295401426], + [146.24997063108842, 7.744889052551343], + [145.34997126865645, 12.17588718550806], + [145.12497142804838, 12.615395567393307], + [144.78747166713643, 13.273238157547667], + [144.69470173285575, 13.464772962370034] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "poseidon", + "name": "POSEIDON", + "color": "#939597", + "feature_id": "poseidon-0", + "coordinates": [33.05448156025122, 34.49779087043359] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [32.46665123625965, 34.76657169708608], + [32.737551044351505, 34.49779087043359], + [33.30005064587152, 34.49779087043359], + [33.61060042587516, 34.82728147271527] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "qatar-u-a-e-submarine-cable-system", + "name": "Qatar-U.A.E. Submarine Cable System", + "color": "#d01c59", + "feature_id": "qatar-u-a-e-submarine-cable-system-0", + "coordinates": [52.885280159010534, 25.142069263822577] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [51.51927773920005, 25.294608758024538], + [52.200037256943745, 25.653336613275968], + [52.42024710094509, 25.668921307105336], + [52.650036938159616, 25.450342946923996], + [52.8659567852003, 25.152632913545176], + [54.000035981807684, 24.532657566160623], + [54.41907568495611, 24.443964572625504] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "fos-quellon-chacabuco", + "name": "FOS Quellon-Chacabuco", + "color": "#299bb8", + "feature_id": "fos-quellon-chacabuco-0", + "coordinates": [-73.56565434043573, -44.649493139065754] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-73.47946371051864, -43.11747634819616], + [-73.50998368889798, -44.1216190589748], + [-73.5707236458692, -44.697560745039], + [-73.63151360280503, -45.134057886198974], + [-73.56061365303125, -45.33926251743932], + [-73.42174375140809, -45.35326269275848], + [-73.2800938517541, -45.28212252426303], + [-73.19831390968778, -45.28184811337704], + [-73.04762401643788, -45.417940386955564], + [-72.80509418824833, -45.458300941353144] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "russia-japan-cable-network-rjcn", + "name": "Russia-Japan Cable Network (RJCN)", + "color": "#eb8c22", + "feature_id": "russia-japan-cable-network-rjcn-0", + "coordinates": [137.9821123297743, 37.48637670310478] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [132.8740001067516, 42.81267161587229], + [133.64997955704033, 42.329239699665635], + [134.77497876008053, 41.40772623743587], + [137.02497716616054, 38.651811712711236], + [138.24196630403404, 37.169971110143194], + [137.24997700676838, 38.651811712711236], + [134.99997860068837, 41.40772623743587], + [133.64997955704033, 42.41235450073577], + [132.8740001067516, 42.81267161587229] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "safe", + "name": "SAFE", + "color": "#a9499b", + "feature_id": "safe-0", + "coordinates": [76.42232050693005, -4.081482762834213] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [31.757961738301788, -28.95055966653794], + [32.62505112404759, -29.529912966149226], + [33.30005064587152, -30.309953344646914] + ], + [ + [76.26955020587488, 9.938386424893082], + [76.05002036139186, 9.524411345019587], + [76.50002004260776, 4.164912849976844], + [77.4000194050399, 0.568578852526286] + ], + [ + [54.450035663023755, -20.57441905727606], + [54.900035344239626, -20.784921868990978], + [55.279235075611155, -21.000051587769235], + [55.350035025455725, -20.784921868990978], + [55.800034706671596, -20.57441905727606], + [56.700034069103765, -20.784921868990978], + [57.150033750319835, -20.995131543025877], + [57.82503327214377, -20.995131543025877], + [58.27503295335984, -20.57441905727606], + [60.300031518831815, -18.880139975101287], + [63.0000296061277, -14.57172649133264], + [65.70002769342378, -11.943944931746927], + [72.9000225928799, -8.401139048122928], + [75.15002099895989, -6.616650693475464], + [76.95001972382383, -3.029995968008762], + [77.4000194050399, 0.568578852526286], + [81.00001685476795, 1.468426767332062], + [85.50001366692797, 0.793562652607278], + [90.00001047908799, 1.693340822791811], + [92.7000085663839, 4.389285926050889], + [94.27500745064, 5.286069860821101], + [95.40000665367998, 5.957818681088611], + [97.42500521915215, 5.733989114150035], + [99.67500362523216, 5.398081130463737], + [100.36299313785392, 5.35384659465538] + ], + [ + [18.445861168718807, -33.72721819637752], + [18.00006148452735, -34.11602012163186], + [17.775061643919315, -34.857839362235865], + [18.45006116574342, -36.321527759917814], + [19.80006020939146, -37.40161074814375], + [23.40005765911934, -37.40161074814375], + [26.10005574641542, -36.321527759917814], + [33.30005064587152, -30.309953344646914], + [38.70004682046351, -28.74381028114999], + [41.40004490775959, -28.74381028114999], + [45.45004166665507, -28.743810607354476], + [47.250040763567654, -27.951747285219852], + [52.650036938159616, -23.08058350574774], + [54.000035981807684, -20.995131543025877], + [54.450035663023755, -20.57441905727606], + [54.900035344239626, -20.36362554441115], + [55.800034706671596, -20.36362554441115], + [56.700034069103765, -20.57441905727606], + [57.150033750319835, -20.57441905727606], + [57.485483512684, -20.4739956609462], + [57.600033431535735, -20.679706953509026], + [57.82503327214377, -20.995131543025877] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sint-maarten-puerto-rico-network-one-smpr-1", + "name": "Sint Maarten Puerto Rico Network One (SMPR-1)", + "color": "#3fb449", + "feature_id": "sint-maarten-puerto-rico-network-one-smpr-1-0", + "coordinates": [-64.49579046440827, 18.772674867159765] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-66.01686899709078, 18.441839618642774], + [-65.69987922164925, 18.67864702215462], + [-65.24987954043327, 18.89166158430325], + [-63.899880496785315, 18.67864702215462], + [-63.14568103106724, 18.05968349844707], + [-63.11555538455045, 18.04770473193915], + [-63.07366108208683, 18.031045075146636] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "samoa-american-samoa-sas", + "name": "Samoa-American Samoa (SAS)", + "color": "#924d9e", + "feature_id": "samoa-american-samoa-sas-0", + "coordinates": [-171.1504644126999, -13.880916628765306] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-171.76669408292253, -13.833489255757883], + [-171.44980430741003, -13.80826146481482], + [-170.99980462619405, -13.917484462464614], + [-170.6957048416213, -14.276544564158712] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sat-3wasc", + "name": "SAT-3/WASC", + "color": "#04a6c7", + "feature_id": "sat-3wasc-0", + "coordinates": [-19.061011257817853, 11.072258398466374] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-10.349918432080813, 33.93964008831958], + [-8.549919707216787, 35.419780517080454], + [-7.199920663568747, 36.33133835588808], + [-6.428881209780371, 36.73129423644173] + ], + [ + [7.650068816559269, 0.343586284889255], + [8.55006817899124, 0.343586284889255], + [9.454267538448192, 0.394465191855375] + ], + [ + [2.250072641967279, 2.92980888035018], + [2.025072801359244, 3.828234303320954], + [2.025072801359244, 5.061986954416028], + [2.440112507341183, 6.356673335458169] + ], + [ + [-14.849915244240833, 26.964304734562802], + [-15.862464526941437, 27.807911809695895], + [-15.862464526941437, 27.94275199342127], + [-15.699964642057836, 27.99976141196052] + ], + [ + [13.37242476278874, -8.776668856663491], + [12.60006530993536, -9.014619375760589], + [11.70006594750339, -9.512401827330194], + [9.675067382031244, -10.620064860363328] + ], + [ + [9.706417359822666, 4.047345511205606], + [9.225067700815345, 3.266814816815753], + [8.10006849777534, 2.817450442654064], + [6.300069772911229, 2.592701464601845] + ], + [ + [-0.204315619320994, 5.558285889905761], + [-0.224925604720681, 3.279837005485092], + [-0.224925604720681, 1.481465914707456] + ], + [ + [-4.026242911831901, 5.323508791824736], + [-3.937422974752735, 3.266814816815753], + [-3.824923054448732, 2.367912558705314], + [-3.699923142999808, 1.468426767332062], + [-3.599923213840782, 1.01853421661562] + ], + [ + [-17.44571340535299, 14.686594841995088], + [-18.449912693968884, 15.018578573757566], + [-19.349912056400854, 15.018578573757566] + ], + [ + [2.925072163791214, 4.164912849976844], + [5.400070410479259, 2.817450442654064], + [6.300069772911229, 2.592701464601845], + [7.425068975951234, 1.468426767332062], + [7.650068816559269, 0.343586284889255], + [8.10006849777534, -4.825692499217524], + [8.55006817899124, -6.616650693475464], + [9.675067382031244, -10.620064860363328], + [9.45006754142321, -18.026426383713385], + [10.80006658507125, -23.493922445897766], + [14.4000640347993, -30.309953344646914], + [15.975062919055375, -32.61276000573585], + [17.55006180331145, -33.6490453774241], + [18.445861168718807, -33.72721819637752] + ], + [ + [-9.102749315587062, 38.443079483141986], + [-9.224919229040808, 38.12273010839229], + [-9.56241898995276, 37.232354321556215], + [-9.899918750864742, 35.78566189952613], + [-10.349918432080813, 33.93964008831958], + [-12.824916678768858, 30.126049846722907], + [-13.724916041200828, 28.161052262220892], + [-14.849915244240833, 26.964304734562802], + [-17.999913012752813, 22.884654113882362], + [-19.349912056400854, 19.952622905164304], + [-19.349912056400854, 15.018578573757566], + [-19.349912056400854, 11.735650161405744], + [-17.999913012752813, 8.635699417327544], + [-13.499916200592793, 3.715978119297972], + [-10.799918113296798, 1.01853421661562], + [-3.599923213840782, 1.01853421661562], + [-0.224925604720681, 1.481465914707456], + [1.575073120143173, 2.592701464601845], + [2.250072641967279, 2.92980888035018], + [2.925072163791214, 4.164912849976844], + [3.423511810692077, 6.439066911484701] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "scandinavian-ring-north", + "name": "Scandinavian Ring North", + "color": "#79c042", + "feature_id": "scandinavian-ring-north-0", + "coordinates": [12.676008213613358, 56.01418278326781] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.640495281294534, 56.07069401721387], + [12.668130261717408, 56.05730958788601], + [12.695765242140624, 56.043920511503416], + [12.68302025116924, 56.02474048982961], + [12.670275260198025, 56.00555093561886], + [12.64176028039833, 56.01947311565067], + [12.613245300598663, 56.03339027842571], + [12.6268702909465, 56.05204665760559], + [12.640495281294534, 56.07069401721387] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "scandinavian-ring-south", + "name": "Scandinavian Ring South", + "color": "#84489c", + "feature_id": "scandinavian-ring-south-0", + "coordinates": [12.869610233307554, 55.574067478133344] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.670275260198025, 55.5937361749767], + [12.825115150508111, 55.58967885738048], + [12.918815084129932, 55.55680364719609], + [12.768815190391422, 55.55790652931407], + [12.670275260198025, 55.5937361749767] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "scotland-northern-ireland-1", + "name": "Scotland-Northern Ireland 1", + "color": "#c0b230", + "feature_id": "scotland-northern-ireland-1-0", + "coordinates": [-5.295928196395863, 54.68794520830264] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-5.115502140190387, 54.844025368730655], + [-5.174922098096772, 54.75449236881684], + [-5.287422018400775, 54.68951871778469], + [-5.538691840398826, 54.6430377426982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "seabras-1", + "name": "Seabras-1", + "color": "#a9812d", + "feature_id": "seabras-1-0", + "coordinates": [-39.351814325517836, 7.415199313336757] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-46.41249288501473, -24.00886839636476], + [-44.54989420449712, -25.36030508721572], + [-41.399896435985056, -25.5408960762594], + [-36.33740002230502, -24.41918455361531], + [-30.149904405585005, -18.026426383713385], + [-28.34990568072098, -13.698987269610853], + [-27.89990599950599, -9.290424301035614], + [-30.48740414473096, -3.816084200032321], + [-34.199901536528955, 0.568578852526286], + [-39.59989771112103, 7.744889052551343], + [-48.59989133544116, 19.952622905164304], + [-62.99988113435326, 34.68301765985788], + [-65.69987922164925, 37.58978657360316], + [-68.39987730894534, 39.17701458492104], + [-71.09987539624133, 39.611709593477684], + [-74.06286329723287, 40.15283384719578] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "seychelles-to-east-africa-system-seas", + "name": "Seychelles to East Africa System (SEAS)", + "color": "#bb5235", + "feature_id": "seychelles-to-east-africa-system-seas-0", + "coordinates": [47.36066943060575, -5.742847166251124] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [39.2696764169327, -6.823132108349142], + [40.50004554532762, -6.840100757612362], + [42.75004395140763, -6.616650693475464], + [52.200037256943745, -4.825692499217524], + [54.000035981807684, -4.601453764837203], + [55.44505495814283, -4.617611322442229] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "shefa-2", + "name": "SHEFA-2", + "color": "#ca2026", + "feature_id": "shefa-2-0", + "coordinates": [-2.461940352587078, 60.21617965554901] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-4.333322694293685, 60.333364648814836], + [-4.049922895056767, 60.242806526349625], + [-3.599923213840782, 60.242806526349625], + [-2.924923692016677, 60.35428947498107], + [-2.699923851408727, 60.409888455789456], + [-2.294924138314343, 60.44103177964078] + ], + [ + [-2.523653976279945, 57.66686302746419], + [-2.699923851408727, 57.93205658695149], + [-2.699923851408727, 58.52439396084483], + [-2.900023709656125, 58.833370284296706], + [-2.474924010800777, 58.8750683108978], + [-1.349924807760772, 59.6796637072089], + [-1.238544886663306, 59.99607269143408], + [-1.267374866239862, 60.004077667524854], + [-1.323654826370586, 60.004077667524854], + [-1.799924488976671, 60.01869762196867], + [-2.924923692016677, 60.35428947498107], + [-6.299921301136777, 61.875570783571504], + [-6.77184096682447, 62.01764624983275] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "silphium", + "name": "Silphium", + "color": "#ce1e4c", + "feature_id": "silphium-0", + "coordinates": [23.174026939262774, 34.488388112069686] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [22.63911819817619, 32.76363502668917], + [22.95005797790344, 33.565491482352144], + [23.40005765911934, 35.419780517080454], + [23.51255757942343, 35.694348446523605], + [23.737557420031465, 35.694348446523605], + [24.01216722549529, 35.51204255863749] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sirius-south", + "name": "Sirius South", + "color": "#8f4a9c", + "feature_id": "sirius-south-0", + "coordinates": [-4.658602719796363, 53.645278167215224] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-3.050753602877677, 53.80897597127557], + [-3.599923213840782, 53.802143574575354], + [-5.624921779312757, 53.502097882664344], + [-6.248311337697743, 53.348124632595216] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sirius-north", + "name": "Sirius North", + "color": "#208ecb", + "feature_id": "sirius-north-0", + "coordinates": [-5.224192910352656, 55.06951973785311] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-5.808121649532183, 54.71395525212927], + [-5.592111802555621, 54.71395525212927], + [-4.949922257488737, 55.33458061322915], + [-4.783462375410465, 55.63788181039317] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "south-america-1-sam-1", + "name": "South America-1 (SAm-1)", + "color": "#35ad49", + "feature_id": "south-america-1-sam-1-0", + "coordinates": [-44.930800409562124, 6.775101791950533] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-46.328062944825774, -23.961842897596995], + [-44.54989420449712, -24.81691653965538], + [-42.749895479633096, -24.7261180292069], + [-40.94989675476907, -23.287413403488756], + [-39.037398109601014, -21.9373831356925], + [-37.34989930504102, -18.026426383713385], + [-36.44989994260905, -13.698987269610853], + [-33.749901855313055, -8.401139048122928], + [-33.749901855313055, -6.616650693475464], + [-34.649901217745025, -4.825692499217524], + [-35.999900261393066, -4.15276774801373], + [-38.54296845985962, -3.718735129291019], + [-38.474898508081026, -1.231315750217505], + [-39.59989771112103, 1.468426767332062], + [-46.79989261057713, 8.635699417327544], + [-52.19988878516919, 13.929303843271725], + [-57.599884959761184, 16.53419619825962], + [-59.39988368462521, 17.823934412537824], + [-62.099881771921204, 19.104405475930548], + [-65.24987954043327, 18.998067525949068], + [-65.69987922164925, 18.785187974742087], + [-65.98107902244473, 18.67864702215462], + [-66.10666893347562, 18.466104232947515], + [-66.37487874347327, 19.104405475930548], + [-66.37487874347327, 20.375041253465525], + [-67.49987794651328, 22.05298561667763], + [-69.2998766713773, 23.298598065875808], + [-73.34987380232134, 25.348717422116806], + [-76.94987125204939, 27.364667993860166], + [-77.84987061448136, 27.46453393782076], + [-79.64986933934539, 26.713351447732805], + [-80.08893155227206, 26.35058457732009] + ], + [ + [-46.328062944825774, -23.961842897596995], + [-45.44989356692909, -25.13418654706126], + [-43.649894842065066, -27.951747285219852], + [-45.89989324814505, -32.61276000573585], + [-50.84988974152117, -35.22626671976636], + [-53.99988751003313, -36.321527759917814], + [-56.69544560047457, -36.47095527632115] + ], + [ + [-44.54989420449712, -24.81691653965538], + [-43.42489500145712, -23.905969261790176], + [-43.209565153998795, -22.903486555497864] + ], + [ + [-80.9144209466341, -2.272903429730974], + [-81.44986806420931, -2.580536704984041], + [-84.14986615150539, -3.029995968008762] + ], + [ + [-81.0537808443897, -4.15383493726489], + [-81.44986806420931, -3.479268678969987], + [-81.44986806420931, -2.580536704984041] + ], + [ + [-66.10666893347562, 18.466104232947515], + [-66.48737866377729, 18.67864702215462], + [-67.0498782652973, 18.785187974742087], + [-67.49987794651328, 18.465364393137207], + [-67.72487778712132, 17.823934412537824], + [-70.19987603380928, 14.583511645118676], + [-71.54987507745732, 13.710817738179543], + [-74.14709323756362, 12.416907726166698], + [-74.8123727662734, 11.735650161405744], + [-74.77975278938158, 10.94044561572673] + ], + [ + [-38.50448848711929, -12.969972035343062], + [-37.34989930504102, -13.698987269610853], + [-36.44989994260905, -13.698987269610853] + ], + [ + [-80.08893155227206, 26.35058457732009], + [-79.87486917995342, 25.348717422116806], + [-80.09986902056127, 24.73717827217618], + [-80.99986838299351, 24.12261698700334], + [-83.24986678907334, 23.917101290935022], + [-84.82486567332933, 23.091785476922468], + [-85.72486503576138, 21.635297384859456], + [-86.17486471697737, 20.375041253465525], + [-87.07486407940934, 18.251816319028308], + [-87.74986360123336, 16.965102599435824], + [-87.97486344184139, 16.53419619825962], + [-88.31236320275336, 16.10232559580288], + [-88.59713531004533, 15.72723663872111] + ], + [ + [-71.62043502747201, -33.0455412324782], + [-71.99987475867339, -31.851465665577166], + [-73.79987348353733, -27.153831285391675], + [-72.89987412110536, -19.51759387823722], + [-70.3067559580946, -18.473543073651314], + [-72.89987412110536, -19.0928985819682], + [-75.59987220840135, -18.453813775777263], + [-77.84987061448136, -15.441023659568003], + [-78.0748704550894, -13.698987269610853], + [-77.84987061449137, -12.822995625629687], + [-76.87428130559798, -12.278420041799535], + [-79.1998696581294, -12.383840433185668], + [-81.8998677454253, -11.50333384598423], + [-84.14986615150539, -6.616650693475464], + [-84.14986615150539, -3.029995968008762], + [-86.39986455758559, 0.568578852526286], + [-90.44986168852954, 3.715978119297972], + [-91.7998607321774, 9.524411345019587], + [-91.3498610509616, 13.054150695298716], + [-90.82222367756134, 13.934797333208934] + ], + [ + [-67.49987794651328, 18.465364393137207], + [-68.06237754803328, 18.67864702215462], + [-68.43815728182749, 18.621371316104643] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "south-american-crossing-sac", + "name": "South American Crossing (SAC)", + "color": "#276fac", + "feature_id": "south-american-crossing-sac-0", + "coordinates": [-36.766792944679764, -3.3946055747121875] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-77.04030118798802, 3.883678466264286], + [-78.29987029569733, 4.164912849976844], + [-79.64986933934539, 5.061986954416028] + ], + [ + [-56.69544560047457, -36.47095527632115], + [-53.99988751003313, -36.14003339129533], + [-50.84988974152117, -34.857839362235865], + [-46.79989261057713, -32.61276000573585], + [-44.54989420449712, -27.951747285219852], + [-45.67489340753713, -25.13418654706126], + [-46.328062944825774, -23.961842897596995], + [-44.99989388571311, -24.31670674946909], + [-43.649894842065066, -23.70010845220321], + [-43.209565153998795, -22.903486555497864], + [-42.299895798417, -23.803113122349146], + [-40.94989675476907, -24.111502734257556], + [-37.68739906595306, -23.18403842445062], + [-33.749901855313055, -18.026426383713385], + [-31.949903130448945, -13.698987269610853], + [-30.59990408680099, -9.290424301035614], + [-31.837403200816965, -5.161910652822854], + [-34.199901536528955, -3.816084221750117], + [-35.999900261393066, -3.254657364797595], + [-38.54296845985962, -3.718735129291019], + [-38.69989834868906, -1.231315750217505], + [-40.049897392337016, 1.468426767332062], + [-46.79989261057713, 6.852191098754417], + [-51.29988942273715, 8.635699417327544], + [-54.89988687246519, 10.853089690745378], + [-57.1498852785452, 13.054150695298716], + [-60.299883047057264, 16.53419619825962], + [-61.64988209070522, 17.39502263470061], + [-63.449880815569244, 17.823934412537824], + [-64.12488033739326, 18.03800543960884], + [-64.57488001860925, 18.03800543960884], + [-64.81925984548829, 17.773909269375793], + [-64.99142972352159, 17.831274188571825], + [-66.14987890286532, 16.965102599435824], + [-68.39987730894534, 15.886035719079104], + [-70.19987603380928, 15.23578178303569], + [-71.54987507745732, 14.583511645118676], + [-74.2498731647534, 13.273238157547667], + [-78.29987029569733, 11.515266158038685], + [-79.87486917995342, 9.96791518697421], + [-79.90025916196689, 9.353803196949315] + ], + [ + [-67.03390827661055, 10.608129806992565], + [-67.38737802620926, 11.294709319565555], + [-67.72487778712132, 12.615395567393307], + [-68.84987699016132, 13.929303843271725], + [-70.19987603380928, 15.23578178303569] + ], + [ + [-71.62043502747201, -33.0455412324782], + [-72.44987443988929, -31.851465665577166], + [-74.2498731647534, -27.153831285391675], + [-78.29987029569733, -15.441023659568003], + [-78.29987029569733, -13.698987269610853], + [-78.0748704550894, -12.822995625629687], + [-76.87428130559798, -12.278420041799535], + [-79.1998696581294, -12.163983680780518], + [-80.99986838299333, -11.50333384598423], + [-83.24986678907334, -6.616650693475464], + [-83.24986678907334, -3.029995968008762], + [-82.79986710785735, 0.568578852526286], + [-81.89986774542548, 2.367912558705314], + [-79.64986933934539, 5.061986954416028], + [-79.1998696581294, 7.298762754459602], + [-79.53736941904137, 8.190543417795567], + [-79.54654941253825, 8.934106573765888] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "south-atlantic-cable-system-sacs", + "name": "South Atlantic Cable System (SACS)", + "color": "#28ab4a", + "feature_id": "south-atlantic-cable-system-sacs-0", + "coordinates": [-13.018183576553156, -7.457062047705591] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-38.54296845985962, -3.718735129291019], + [-35.999900261393066, -2.805287932308005], + [-34.199901536528955, -2.580536704984041], + [-29.8124046166879, -3.14233268364373], + [-19.799911737616924, -6.616650693475464], + [-5.399921938704722, -8.401139048122928], + [7.200069135343199, -9.06830600387434], + [11.70006594750339, -9.06830600387434], + [12.60006530993536, -9.19851313135834], + [13.20144038206871, -9.490080988806199] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "southern-cross-cable-network-sccn", + "name": "Southern Cross Cable Network (SCCN)", + "color": "#2f85a6", + "feature_id": "southern-cross-cable-network-sccn-0", + "coordinates": [-161.30208071075933, 9.782175329209167] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-155.82203598904985, 20.02329313856839], + [-156.14981514606578, 20.26954403592967], + [-156.8968852004637, 20.456951123759666], + [-157.34732486998882, 20.509644634906977], + [-157.8585139356077, 20.893863273745836], + [-158.13057429534103, 21.35406896575401] + ], + [ + [-122.98980067585494, 45.52289882456287], + [-123.52483825790574, 45.8232172063386], + [-124.19983777972968, 45.86240257160273], + [-125.09983714216165, 45.33107107332478], + [-128.69983459188978, 42.74371346443661], + [-138.5998275786418, 35.05222991093683], + [-147.59982120296192, 30.514495959759188], + [-152.99981737755388, 26.562513149236622], + [-157.94981387093, 22.90768438285798], + [-158.51231347245, 22.05298561667763], + [-158.51231237260103, 21.73983373091116], + [-158.51231346392393, 21.635297384859456], + [-158.13057429534103, 21.35406896575401], + [-158.73731331305802, 20.796306105108954], + [-159.97481243640243, 18.67864702215462], + [-162.8998103643061, 14.801154224791475], + [-166.49980781403406, 10.410816505402636], + [-171.8998039886261, 2.367912558705314], + [-176.39980080078612, -6.616650693475464], + [-179.54979856929822, -16.953454989810012], + [-179.99979825051417, -17.383402005942372] + ], + [ + [-179.99979825051417, -35.59302880961411], + [-175.49980143835418, -34.11602012163186], + [-172.79980335105807, -25.5408960762594], + [-169.19980590133002, -15.441023659568003], + [-168.29980653889805, -10.177457430361159], + [-163.79980972673806, 2.367912558705314], + [-160.19981227700998, 13.054150695298716], + [-157.4998141897139, 18.67864702215462], + [-156.59981482728193, 19.74098736552503], + [-155.8563559638703, 20.003739828700503], + [-155.9248153054582, 20.26954403592967], + [-155.69981546485, 20.585819096040467], + [-152.99981737755388, 23.298598065875808], + [-147.59982120296192, 25.754704263415306], + [-138.5998275786418, 27.364667993860166], + [-127.79983522945773, 31.67051304708704], + [-122.39983905486591, 34.49779087043359], + [-120.84720164908995, 35.367078251717174] + ], + [ + [179.9999603175593, -17.383402005942372], + [178.87496111451927, -18.02880365069919], + [178.43744782917761, -18.12381094353711], + [178.0874480765248, -18.66711083815875], + [177.97494815681674, -18.880139975101287], + [173.69996478053517, -23.905969261790176], + [166.49996988107907, -27.153831285391675], + [160.64997402527118, -31.08383471876715], + [154.80001816943465, -32.4230349944244], + [152.09996648689648, -33.74264465652948], + [151.27398707202818, -33.76116106060903] + ], + [ + [151.1962571270927, -33.9135716055703], + [152.09996648689648, -34.11602012163186], + [155.69996393662453, -35.22626671976636], + [159.29996138635258, -35.775783044315574], + [167.39995564824065, -36.321527759917814], + [172.7999518228328, -36.683250670190546], + [174.62339053109176, -36.78757761230105] + ], + [ + [174.76792042870525, -36.78780986154061], + [175.04990772894305, -36.5929784279503], + [175.04990772894305, -36.14003339129533], + [175.49990741015895, -35.775783044315574], + [178.6499051786711, -36.14003339129533], + [179.99990422231897, -35.59302880961411] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "st-thomas-st-croix-system", + "name": "St. Thomas-St. Croix System", + "color": "#939597", + "feature_id": "st-thomas-st-croix-system-0", + "coordinates": [-64.84149598647822, 17.801341998886954] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-64.84313982857152, 18.322468254678284], + [-64.684549940918, 17.782279507518695], + [-64.70319992770615, 17.74666281144755], + [-64.70319992770615, 17.782279507518695], + [-64.72174991456525, 17.801341998886954], + [-64.9000797882347, 17.801341998886954], + [-64.9000797882347, 17.748053328852308], + [-64.8814698014181, 17.712429822041884], + [-64.9186297750937, 17.748053328852308], + [-64.99386972179308, 18.324604170097132] + ], + [ + [-64.99386972179308, 18.324604170097132], + [-64.98456972838117, 18.333503533793703], + [-64.97526973496936, 18.34240243947238], + [-64.96164474462152, 18.339065996785592], + [-64.9480197542735, 18.335729489696035], + [-64.94592475575759, 18.331975248970792], + [-64.94382975724177, 18.328220926737202], + [-64.95080975229712, 18.320574387618336], + [-64.95778974735238, 18.31292751058436], + [-64.92753976878183, 18.302773872540598], + [-64.89728979021118, 18.292619639280105], + [-64.87021480939134, 18.307544590090146], + [-64.84313982857152, 18.322468254678284] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "subcan-link-1", + "name": "Subcan Link 1", + "color": "#92c83d", + "feature_id": "subcan-link-1-0", + "coordinates": [-15.492297959982977, 28.386459207827585] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-16.362314172843213, 28.377623642828354], + [-15.288094933830251, 28.38853301873357], + [-15.180095010338476, 28.38853301873357], + [-15.180095010338476, 28.06035879952458], + [-15.408754848353567, 28.040969582855354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "subcan-link-2", + "name": "Subcan Link 2", + "color": "#8dc63e", + "feature_id": "subcan-link-2-0", + "coordinates": [-15.338729479097452, 28.47908983132234] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-16.362314172843213, 28.377623642828354], + [-15.288094933830251, 28.484109146622586], + [-15.072085086853605, 28.484109146622586], + [-15.072085086853605, 28.06035879952458], + [-15.408754848353567, 28.040969582855354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "suriname-guyana-submarine-cable-system-sg-scs", + "name": "Suriname-Guyana Submarine Cable System (SG-SCS)", + "color": "#63bb45", + "feature_id": "suriname-guyana-submarine-cable-system-sg-scs-0", + "coordinates": [-58.3801122892734, 9.029604481528224] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-56.37537582721498, 5.886620767353833], + [-56.36238583641716, 6.405200795356109], + [-56.47488575672118, 7.298762754459602], + [-57.37488511915315, 8.190543417795567], + [-60.299883047057264, 10.632033208117747], + [-60.74988272827325, 10.853089690745378], + [-60.9748825688812, 10.963556857789229], + [-61.42488225009727, 10.853089690745378], + [-61.65081209004636, 10.686261032786234] + ], + [ + [-58.15486456660838, 6.804293299288759], + [-57.82488480036922, 7.298762754459602], + [-57.37488511915315, 8.190543417795567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "svalbard-undersea-cable-system", + "name": "Svalbard Undersea Cable System", + "color": "#944c9d", + "feature_id": "svalbard-undersea-cable-system-0", + "coordinates": [16.745715419787643, 69.22582677233493] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [15.557773214667378, 78.2219497310868], + [14.4000640347993, 78.17901554875422], + [13.50006467236733, 78.17901554875422], + [12.60006530993536, 78.0399386484226], + [11.70006594750339, 77.0706895251933], + [12.60006530993536, 73.42211510500309], + [16.20006275966341, 69.73724550802262], + [16.875062281487345, 69.10459505606227], + [16.875062281487345, 68.86251864159411], + [16.512462538356544, 68.7069030402871], + [16.987562201791434, 68.86251864159411], + [17.10006212209538, 69.10459505606227], + [16.65006244087931, 69.73724550802262], + [13.05006499115126, 73.42211510500309], + [12.15006562871929, 77.0706895251933], + [13.05006499115126, 78.0399386484226], + [13.50006467236733, 78.13283461740872], + [14.4000640347993, 78.15594726944346], + [15.557773214667378, 78.2219497310868] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sweden-estonia-ee-s-1", + "name": "Sweden-Estonia (EE-S 1)", + "color": "#e23825", + "feature_id": "sweden-estonia-ee-s-1-0", + "coordinates": [21.781405638457812, 59.132692782618534] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [24.752496701038922, 59.43639985926242], + [24.4125569418554, 59.50884868221257], + [23.85005734033541, 59.50884868221257], + [23.175057818511476, 59.22222391484422], + [22.736388129269216, 59.00008283504653], + [22.05005861547147, 59.1068949571908], + [20.25005989060736, 59.279742670960275], + [18.90006084695932, 59.279742670960275], + [18.688360996929788, 59.29276676569168] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sweden-finland-4-sfs-4", + "name": "Sweden-Finland 4 (SFS-4)", + "color": "#5abc74", + "feature_id": "sweden-finland-4-sfs-4-0", + "coordinates": [20.590523867980266, 59.71398104787093] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [18.701330987741642, 59.75975559219617], + [19.125060687567355, 59.736409384078485], + [20.25005989060736, 59.6796637072089], + [21.375059093647366, 59.79305890746801], + [21.828885165385003, 60.186073480185], + [21.989438792538294, 60.284564842450095], + [22.259238467286707, 60.449407251735124] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "sweden-finland-link-sfl", + "name": "Sweden-Finland Link (SFL)", + "color": "#a13048", + "feature_id": "sweden-finland-link-sfl-0", + "coordinates": [19.382825277762635, 59.994661388742855] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [19.93776011184346, 60.11403575461435], + [19.575060368783426, 60.01869762196867], + [19.125060687567355, 59.962431634152296], + [18.816660906040738, 59.98346880444112] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "taino-carib", + "name": "Taino-Carib", + "color": "#44bb90", + "feature_id": "taino-carib-0", + "coordinates": [-65.50997995744827, 18.44236799169252] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-66.08278895039238, 18.45360240878159], + [-66.03060773901413, 18.44429123321632], + [-66.01686899709078, 18.441839618642774], + [-65.69987922164925, 18.465364393137207], + [-64.93708976201644, 18.372992194090983] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "taiwan-strait-express-1-tse-1", + "name": "Taiwan Strait Express-1 (TSE-1)", + "color": "#63b545", + "feature_id": "taiwan-strait-express-1-tse-1-0", + "coordinates": [120.54844475522137, 25.88216650421532] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [119.29246972803506, 26.071797919874427], + [119.69998943934436, 26.058287560298936], + [121.16248840329618, 25.754704263415306], + [121.4625881907028, 25.181712818924467] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tamares-north", + "name": "Tamares North", + "color": "#d41577", + "feature_id": "tamares-north-0", + "coordinates": [33.560340994034675, 33.5359900108642] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [32.46665123625965, 34.76657169708608], + [32.62505112404759, 34.49779087043359], + [33.52505048647936, 33.565491482352144], + [34.20005000830349, 33.00121852265437], + [34.99877944247609, 32.811579184632706] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tangerine", + "name": "Tangerine", + "color": "#25ae73", + "feature_id": "tangerine-0", + "coordinates": [2.1668424991065365, 51.235991798271044] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [1.440993215126866, 51.35857144425913], + [1.800072960751208, 51.235991798271044], + [2.475072482575314, 51.235991798271044], + [2.912772172504702, 51.231220564626796] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tasman-global-access-tga-cable", + "name": "Tasman Global Access (TGA) Cable", + "color": "#cc3b95", + "feature_id": "tasman-global-access-tga-cable-0", + "coordinates": [162.83053633783075, -36.738268662023586] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [174.87183035509466, -37.80138208221919], + [174.59995054769675, -37.7582357647469], + [172.7999518228328, -37.40161074814375], + [167.39995564824065, -37.04328040742419], + [159.29996138635258, -36.502600461085024], + [155.69996393662453, -35.59302880961411], + [152.09996648689648, -34.30209296887173], + [151.24508709250128, -33.73712305097797] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tata-tgn-atlantic", + "name": "Tata TGN-Atlantic", + "color": "#b86d35", + "feature_id": "tata-tgn-atlantic-0", + "coordinates": [-38.50171053710977, 45.91368217109587] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-2.974873656631701, 51.22244696599773], + [-4.049922895056767, 51.37665177535368], + [-5.399921938704722, 51.235991798271044], + [-7.199920663568747, 51.02419288763869], + [-10.799918113296798, 50.31116725161084], + [-16.199914287888873, 49.58728674004675], + [-23.39990918734489, 49.00033438946335], + [-39.59989771112103, 45.01383364395318], + [-50.39989006030518, 42.57825408607275], + [-61.199882409489234, 41.0693404382163], + [-68.39987730894534, 40.72920412488665], + [-71.09987539624133, 40.30157665795872], + [-74.06286329723287, 40.15283384719578] + ], + [ + [-2.974873656631701, 51.22244696599773], + [-4.049922895056767, 51.41174942497889], + [-5.399921938704722, 51.30637567738265], + [-7.199920663568747, 51.165500079092226], + [-10.799918113296798, 50.45463912589386], + [-16.199914287888873, 49.87814473780409], + [-23.39990918734489, 49.58728674004675], + [-39.59989771112103, 45.64654149518748], + [-50.39989006030518, 43.07331078300331], + [-61.199882409489234, 41.40772623743587], + [-68.39987730894534, 40.89949091487156], + [-71.09987539624133, 40.387320290775165], + [-74.06286329723287, 40.15283384719578] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tata-tgn-gulf", + "name": "Tata TGN-Gulf", + "color": "#63bb45", + "feature_id": "tata-tgn-gulf-0", + "coordinates": [57.03364675392558, 25.148725998561787] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [61.87503040308769, 18.67864702215462], + [61.650030562479856, 22.469443964829594], + [59.85003183761572, 23.814220515026335], + [58.50003279396768, 24.430271928048597], + [57.03753383001572, 25.145210227401265], + [56.81253398940768, 25.348717422116806], + [56.9250339097116, 26.159307970773796], + [56.75628402925571, 26.562513149236622], + [56.250034387887666, 26.61281470860399], + [55.800034706671596, 26.26024097157773], + [55.350035025455725, 26.058287560298936], + [53.550036300591586, 26.058287560298936], + [52.42503709755158, 26.562513149236622], + [51.750037575727674, 26.964304734562802], + [51.07503805390374, 27.364667993860166], + [50.51253845238372, 26.964304734562802], + [50.28753861177569, 26.461843796189072], + [50.21419866373054, 26.285375359318067] + ], + [ + [55.308535054854815, 25.26935399813027], + [55.181285144999634, 25.55188275942578], + [55.23753510515161, 25.8559854660721], + [55.350035025455725, 26.058287560298936] + ], + [ + [56.333724328601164, 25.121690004958737], + [56.81253398940768, 25.348717422116806] + ], + [ + [58.591142729424746, 23.61510487139472], + [58.950032475183775, 23.814220515025227], + [59.85003183761572, 23.814220515026335] + ], + [ + [50.576018407413954, 26.22949483839116], + [51.18753797420766, 26.562513149236622], + [51.750037575727674, 26.964304734562802] + ], + [ + [51.51927773920005, 25.294608758024538], + [51.97503741633571, 26.058287560298936], + [52.42503709755158, 26.562513149236622] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tata-tgn-pacific", + "name": "Tata TGN-Pacific", + "color": "#b86637", + "feature_id": "tata-tgn-pacific-0", + "coordinates": [-142.01420078560162, 47.362165864003515] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-118.24535355799173, 34.053396879397155], + [-118.79984160513769, 34.07952422983641], + [-120.59984033000163, 33.93964008831958], + [-122.39983905486565, 34.31215165223537], + [-125.54983682337772, 38.651811712711236], + [-126.44983618580969, 42.74371346443661], + [-125.09983714216165, 45.01383364395318], + [-124.19983777972968, 45.74476367411535], + [-123.52483825790574, 45.764387407712206], + [-122.98980067585494, 45.52289882456287], + [-123.52483825790574, 45.84281333892898], + [-124.19983777972968, 45.921128871546586], + [-125.09983714216165, 46.0383951936513], + [-129.59983395432175, 46.272182853813746], + [-138.5998275786418, 47.19740739556977], + [-151.19981865269014, 47.805412175893], + [-179.99979825051417, 47.805412175893] + ], + [ + [-122.98980067585494, 45.52289882456287], + [-123.52483825790574, 45.86240257160273], + [-124.19983777972968, 45.97979307748946], + [-125.09983714216165, 46.19436398821867], + [-129.59983395432175, 46.58235508209589], + [-138.5998275786418, 47.805412175893], + [-151.19981865268997, 48.40638249553794], + [-179.99979825051417, 48.40638249553794] + ], + [ + [179.99995828233065, 48.40638249553794], + [172.7999518228328, 48.40638249553794], + [160.19996074878455, 45.33107107332478], + [149.39996839960057, 39.351217571171134], + [141.2999741377125, 35.05222991093683], + [140.3437248151284, 34.96008232454844], + [140.06110501533894, 35.06229841779472] + ], + [ + [179.99995828233065, 47.805412175893], + [172.7999518228328, 47.805412175893], + [160.19996074878455, 44.694829089578064], + [149.39996839960057, 39.00237890905848], + [143.09997286257644, 35.05222991093683], + [138.59997605041642, 34.03292178996395], + [137.69997668798445, 34.31215165223537], + [137.3915769064578, 34.76914289401017], + [137.5874767676805, 34.31215165223537], + [138.59997605041642, 24.12261698700334], + [139.94997509406446, 21.635297384859456], + [142.19997350014447, 16.965102599435824], + [143.32497270318444, 15.23578178303569], + [144.2249720656164, 13.929303843271725], + [144.69470173285575, 13.464772962370034] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tata-tgn-tata-indicom", + "name": "Tata TGN-Tata Indicom", + "color": "#94a139", + "feature_id": "tata-tgn-tata-indicom-0", + "coordinates": [92.80383350264171, 8.566454913148334] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [80.2429873910547, 13.063853101883296], + [81.45001653598385, 12.17588718550806], + [83.70001494206386, 10.410816505402636], + [89.10001111665602, 9.08033076823304], + [93.15000824759997, 8.518425924569556], + [95.40000665367998, 7.521883237406598], + [97.42500521915215, 6.572869518576994], + [99.00000410340803, 5.286069860821101], + [99.67500362523216, 4.613591578862867], + [100.57500298766413, 3.266814816815753], + [101.25000250948804, 2.592701464601845], + [102.15000187192001, 2.086875539277429], + [102.68279723997185, 1.726894676446761], + [103.34065102845304, 1.327793781945104], + [103.50000091556822, 1.243290124212365], + [103.91973061822782, 1.17221597244378] + ], + [ + [103.91973061822782, 1.17221597244378], + [103.9870105705659, 1.389451396800126] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tata-tgn-western-europe", + "name": "Tata TGN-Western Europe", + "color": "#613e98", + "feature_id": "tata-tgn-western-europe-0", + "coordinates": [-9.123172630879708, 49.58613005355488] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-2.94919367482359, 43.27422025200056], + [-4.049922895056767, 44.694829089578064], + [-5.849921619920792, 46.272182853813746], + [-6.974920822960797, 48.1067757091962], + [-6.974920822960797, 50.45463912589386], + [-5.399921938704722, 51.02419288763869], + [-4.049922895056767, 51.27119721416548], + [-2.974873656631701, 51.22244696599773], + [-4.049922895056767, 51.30637567738265], + [-5.399921938704722, 51.09490046148102], + [-7.199920663568747, 50.597677199053464], + [-10.799918113296798, 48.70423463096077], + [-15.299914925456818, 44.694829089578064], + [-15.299914925456818, 39.69832335493328], + [-13.949915881808863, 39.00237890905848], + [-10.799918113296798, 38.651811712711236], + [-9.107439312264688, 38.64265833034625] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "te-northtgn-eurasiaseacomalexandrosmedex", + "name": "TE North/TGN-Eurasia/SEACOM/Alexandros/Medex", + "color": "#3c54a4", + "feature_id": "te-northtgn-eurasiaseacomalexandrosmedex-0", + "coordinates": [15.315732805091983, 33.787375005372326] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [8.10006849777534, 37.94551049545976], + [7.987568577471222, 37.232354321556215], + [7.755438741914361, 36.90282046530186] + ], + [ + [27.900054471279333, 32.24321001626265], + [30.60005255857544, 32.43331330641712], + [32.40005128343955, 33.18971466460036], + [33.41255056617544, 34.49779087043359], + [33.61060042587516, 34.82728147271527] + ], + [ + [5.372530429989041, 43.29362778902916], + [6.075069932303194, 41.744358789482135], + [7.425068975951234, 38.651811712711236], + [8.10006849777534, 37.94551049545976], + [9.00006786020731, 37.76786242517883], + [10.348617229769246, 37.67887792909195], + [10.912566505375338, 37.500588446053314], + [11.475066106895355, 37.232354321556215], + [11.812565867807308, 36.240655233214795], + [12.262565549023208, 35.78566189952613], + [12.65631527009242, 35.419780517080454], + [14.4000640347993, 33.93964008831958], + [16.65006244087931, 33.565491482352144], + [19.35006052817539, 33.93964008831958], + [25.20005638398345, 33.14262853088806], + [27.900054471279333, 32.24321001626265], + [29.700933195520264, 31.072270031660224] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "telstra-endeavour", + "name": "Telstra Endeavour", + "color": "#393d98", + "feature_id": "telstra-endeavour-0", + "coordinates": [168.22122653104097, -24.282160699604987] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [151.22848710426095, -33.88203865028561], + [152.09996648689648, -33.83614190736935], + [154.79996457419256, -32.23291009389612], + [160.64997402527118, -30.697669744492572], + [166.49996988107907, -25.5408960762594], + [170.9999666932391, -22.25009967909017], + [173.69996478053517, -17.16855309422607], + [179.9999603175593, -8.401139048122928] + ], + [ + [-179.99979825051417, -8.401139048122928], + [-176.39980080078612, -3.029995968008762], + [-172.79980335105807, 2.367912558705314], + [-167.3998071764661, 10.410816505402636], + [-163.79980972673806, 14.801154224791475], + [-160.19981227701055, 18.67864702215462], + [-158.84981323336194, 20.796306105108954], + [-158.39981355214616, 21.425997872385494], + [-158.24204999203226, 21.54876173571651] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "thailand-indonesia-singapore-tis", + "name": "Thailand-Indonesia-Singapore (TIS)", + "color": "#79c042", + "feature_id": "thailand-indonesia-singapore-tis-0", + "coordinates": [104.41522488530856, 5.320300446629318] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [103.96260058785819, 1.134723598626692], + [104.03350053763214, 1.290748482962698], + [103.9870105705659, 1.389451396800126], + [104.19209042528556, 1.302655424516928], + [104.28790035741284, 1.355961034999325], + [104.37232529760544, 1.468426767332062], + [104.65208343275523, 2.367912558705314], + [104.40000027800002, 5.510071711803135], + [103.04880123520243, 7.005165564456178], + [101.70000219070411, 7.075530930004675], + [100.59971297015935, 7.075917959575207] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "the-east-african-marine-system-teams", + "name": "The East African Marine System (TEAMS)", + "color": "#73bf43", + "feature_id": "the-east-african-marine-system-teams-0", + "coordinates": [57.118775161953636, 8.093348000686433] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [39.672896131287985, -4.052924364763157], + [42.30004427019156, -4.601453764837203], + [46.57504124174372, -2.355745736646099], + [53.100036619375715, 1.468426767332062], + [56.250034388483755, 5.510071711803135], + [57.600033431535735, 9.524411345019587], + [62.10003024369573, 15.669513225155328], + [63.0000296061277, 20.796306105108954], + [62.55002992491163, 22.469443964829594], + [59.85003183761572, 24.225251377403623], + [58.50003279396768, 24.66052224964892], + [56.9250339097116, 24.915858493558915], + [56.333724328601164, 25.121690004958737] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tobrok-emasaed-cable-system", + "name": "Tobrok-Emasaed Cable System", + "color": "#65ac44", + "feature_id": "tobrok-emasaed-cable-system-0", + "coordinates": [24.606382917057175, 32.15675707571063] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [23.960407262162676, 32.07985133144845], + [24.30005702155148, 32.24321001626265], + [24.975056543375416, 32.052708023486105], + [25.087356463821237, 31.761227937714636] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tonga-cable", + "name": "Tonga Cable", + "color": "#42b549", + "feature_id": "tonga-cable-0", + "coordinates": [-177.62282479346848, -20.29710943833541] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-179.99979825051417, -19.30538407236122], + [-175.94980111957017, -20.995131543025877], + [-175.20000165073517, -21.13346565929308] + ], + [ + [179.9999603175593, -19.30538407236122], + [179.09996095512733, -18.66711083815875], + [178.43744782917761, -18.12381094353711] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "trans-pacific-express-tpe-cable-system", + "name": "Trans-Pacific Express (TPE) Cable System", + "color": "#a2c539", + "feature_id": "trans-pacific-express-tpe-cable-system-0", + "coordinates": [-151.7250789081591, 46.58235508209589] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [134.99997860068837, 30.70813999354155], + [136.79997732555248, 31.478822672736243], + [138.59997605041642, 32.62301664000799], + [140.39997477528036, 33.37780603565923], + [143.09997286257644, 34.49779087043359], + [149.39996839960057, 37.94551049545976], + [160.19996074878455, 43.40114497315386], + [172.7999518228328, 46.58235508209589], + [179.99995828233065, 46.58235508209589] + ], + [ + [132.74998019460836, 30.320465424761352], + [132.74998019460836, 30.70813999354155], + [130.49998178852834, 30.70813999354155], + [128.92498290427224, 31.67051304708704], + [128.02498354184027, 33.18971466460036], + [128.24998338244833, 34.31215165223537], + [128.62078311977027, 34.88072781981958], + [127.79998370123226, 34.31215165223537], + [127.12498417940836, 33.18971466460036], + [125.99998497636832, 32.81231878328768], + [124.19998625150438, 33.18971466460036], + [122.84998720785634, 33.93964008831958], + [120.8249886423844, 35.419780517080454], + [120.34246898420574, 36.087310907419294], + [120.59998880177616, 35.419780517080454], + [122.39998752664027, 33.93964008831958], + [123.74998657028831, 33.00121852265437], + [124.19998625150438, 31.861808602270827] + ], + [ + [139.8169651882899, 35.03751783625896], + [139.5562253730005, 34.40502275071583], + [139.0499757316325, 33.93964008831958], + [136.79997732555248, 31.861808602270827], + [134.99997860068837, 31.094262827639596], + [132.74998019460836, 30.70813999354155] + ], + [ + [121.40818822924032, 31.618965810829565], + [122.17498768603221, 31.19054975154404], + [123.52498672968031, 30.126049846722907], + [123.74998657028831, 28.161052262220892], + [121.94998784542437, 26.562513149236622], + [121.38748824390436, 25.754704263415306], + [121.4625881907028, 25.181712818924467], + [121.4999881642083, 25.754704263415306], + [121.94998784542437, 26.361086325391653], + [125.26189309097956, 27.590347329291063], + [130.49998178852834, 30.70813999354155] + ], + [ + [134.99997860068837, 30.70813999354155], + [132.74998019460836, 30.320465424761352], + [130.49998178852834, 30.514495959759188], + [124.19998625150438, 31.861808602270827], + [122.84998720785634, 31.957307911004875], + [121.94998784542437, 31.766210259726904], + [121.39529823837174, 31.619800328867854] + ], + [ + [-123.94016937986757, 45.64401775142804], + [-125.09983714216165, 44.85455225626717], + [-129.59983395432175, 44.051519228735145], + [-138.5998275786418, 45.64654149518748], + [-151.19981865268997, 46.58235508209589], + [-179.99979825051417, 46.58235508209589] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "transworld-tw1", + "name": "Transworld (TW1)", + "color": "#61bb46", + "feature_id": "transworld-tw1-0", + "coordinates": [61.66320327305013, 24.633379880846405] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [58.17620302337187, 23.684877531684634], + [58.27508295332456, 23.917101290935022], + [58.72503263457574, 24.225251377401804], + [59.85003183761572, 24.839312825594618] + ], + [ + [56.333724328601164, 25.121690004958737], + [56.9250339097116, 25.068807301098985], + [58.72503263457574, 25.145210227401265], + [59.85003183761572, 24.839312825594618], + [62.55002992491163, 24.532657566160623], + [67.02854675228852, 24.889731701235718] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "trapani-kelibia", + "name": "Trapani-Kelibia", + "color": "#3859a8", + "feature_id": "trapani-kelibia-0", + "coordinates": [11.891845950276405, 37.35162473013881] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [11.090886379051994, 36.849936993962615], + [11.427366140686559, 37.02916052566792], + [12.173015612461455, 37.54682622128206], + [12.375065469327325, 37.94551049545976], + [12.513735371092366, 38.018253909057734] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tt-1", + "name": "TT-1", + "color": "#4abb84", + "feature_id": "tt-1-0", + "coordinates": [-60.970520635231395, 11.021638590788513] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-60.94959258679687, 10.831511900511515], + [-60.9748825688812, 11.016811865272018], + [-60.84026266424726, 11.165776379841446] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "turcyos-1", + "name": "Turcyos-1", + "color": "#97b93c", + "feature_id": "turcyos-1-0", + "coordinates": [33.033476586141205, 35.67693164171169] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [32.96670088142375, 36.099997364015536], + [32.96255088436365, 35.90725015614032], + [33.07505080466757, 35.541926812580044], + [33.236280691046744, 35.299121866076945] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "turcyos-2", + "name": "Turcyos-2", + "color": "#81c341", + "feature_id": "turcyos-2-0", + "coordinates": [35.016392666816955, 35.49639512283801] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [35.99936873364928, 36.08234081367351], + [35.55004905195153, 35.78566189952613], + [34.8750495301276, 35.419780517080454], + [34.20005000830349, 35.23621340052833], + [33.91945020708306, 35.28438909238437] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "uae-iran", + "name": "UAE-Iran", + "color": "#d41f26", + "feature_id": "uae-iran-0", + "coordinates": [57.21294433749429, 25.15368101875805] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [56.333724328601164, 25.121690004958737], + [56.9250339097116, 25.094280247013245], + [57.603643428978444, 25.23428882352877], + [57.79730329178804, 25.6813227078824] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "ugarit", + "name": "UGARIT", + "color": "#267cb5", + "feature_id": "ugarit-0", + "coordinates": [34.75274294807667, 34.82107849658101] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [35.897798805602406, 34.89170328553857], + [35.55004905195153, 34.867831005273246], + [33.97505016769546, 34.77547607575676], + [33.61060042587516, 34.82728147271527] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "uk-channel-islands-8", + "name": "UK-Channel Islands-8", + "color": "#8fc73e", + "feature_id": "uk-channel-islands-8-0", + "coordinates": [-3.756824035935381, 49.46667101389008] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-2.225994187144892, 49.21570868235557], + [-2.420674049231877, 49.218648051531005], + [-3.599923213840782, 49.441203723128126], + [-4.499922576272752, 49.58728674004675], + [-5.17297209947813, 50.02254139117184] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "unityeac-pacific", + "name": "Unity/EAC-Pacific", + "color": "#77459a", + "feature_id": "unityeac-pacific-0", + "coordinates": [-148.23784079912673, 43.09042955316144] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-118.388023453319, 33.84463651237681], + [-120.59984033000163, 33.84625607000376], + [-122.39983905486565, 34.12610104005762], + [-129.59983395432175, 37.94551049545976], + [-138.59982757864196, 42.079235618164205], + [-151.19983391146837, 43.40119375343636], + [-179.99981350929244, 43.40119375343636] + ], + [ + [139.9548550906076, 34.97657002902224], + [140.3437248151284, 34.867831005273246], + [141.2999741377125, 34.867831005273246], + [143.09997286257644, 34.867831005273246], + [149.39996839960057, 36.14986678681771], + [160.19996074878455, 40.72920412488665], + [172.79992073307184, 43.40113166943368], + [179.9999271925697, 43.40113166943368] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "west-africa-cable-system-wacs", + "name": "West Africa Cable System (WACS)", + "color": "#394da1", + "feature_id": "west-africa-cable-system-wacs-0", + "coordinates": [-6.06677813221728, -0.7813866362255055] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [14.533463940297622, -22.68542973223063], + [13.05006499115126, -22.87343495354625], + [9.90006722263928, -23.493922445897766] + ], + [ + [12.349965487108477, -5.933373731471249], + [10.80006658507125, -5.945707155070551], + [8.10006849777534, -6.616650693475464] + ], + [ + [9.00006786020731, -10.620064860363328], + [11.70006594750339, -9.290424301035614], + [12.60006530993536, -9.290424301035614], + [13.20144038206871, -9.490080988806199] + ], + [ + [7.650068816559269, -4.825692499217524], + [10.80006658507125, -4.825692499217524], + [11.863635831628983, -4.778787768919273] + ], + [ + [4.500071048047289, 0.118588418888407], + [6.300069772911229, 1.693340822791811], + [8.10006849777534, 2.367912558705314], + [9.00006786020731, 3.266814816815753], + [9.20865771244047, 4.014706479784223] + ], + [ + [3.423511810692077, 6.439066911484701], + [3.375071845007284, 4.164912849976844], + [2.250072641967279, 2.030661890474562] + ], + [ + [1.2278033661525, 6.126307297218631], + [1.575073120143173, 5.061986954416028], + [1.575073120143173, 1.355961034999325] + ], + [ + [-9.107439312264688, 38.64265833034625], + [-9.449919069648843, 38.29952060596935], + [-11.024917953904747, 36.51238821239372], + [-11.924917316336803, 35.419780517080454], + [-13.499916200592793, 32.052708023486105], + [-14.624915403632798, 30.514495959759188], + [-15.299914925456818, 28.951554732193216], + [-16.199914287888873, 27.763588526057674], + [-17.999913012752813, 24.941363171753835], + [-18.89991237518487, 22.884654113882362], + [-20.24991141883291, 19.952622905164304], + [-20.24991141883291, 15.23578178303569], + [-20.24991141883291, 11.735650161405744], + [-18.89991237518487, 8.635699417327544], + [-14.399915563024848, 2.817450442654064], + [-10.799918113296798, -0.781386636225506], + [-3.599923213840782, -0.781386636225506], + [0.225074076495304, 0.131631856785162], + [1.575073120143173, 1.355961034999325], + [2.250072641967279, 2.030661890474562], + [4.500071048047289, 0.118588418888407], + [6.300069772911229, -1.231315750217505], + [7.650068816559269, -4.825692499217524], + [8.10006849777534, -6.616650693475464], + [9.00006786020731, -10.620064860363328], + [8.55006817899124, -18.026426383713385], + [9.90006722263928, -23.493922445897766], + [13.9500643535834, -30.309953344646914], + [15.75006307844734, -32.61276000573585], + [16.65006244087931, -33.273630771422376], + [18.155531374391046, -33.34805845646778] + ], + [ + [-0.204315619320994, 5.558285889905761], + [0.225074076495304, 3.279837005485092], + [0.225074076495304, 0.131631856785162] + ], + [ + [-4.026242911831901, 5.323508791824736], + [-4.16242281536077, 3.266814816815753], + [-4.274922735664717, 2.367912558705314], + [-4.149922824215793, 1.468426767332062], + [-3.599923213840782, -0.781386636225506] + ], + [ + [-23.521209101414883, 14.923035560171769], + [-22.49990982491292, 15.018578573757566], + [-20.24991141883291, 15.018578573757566] + ], + [ + [-16.199914287888873, 27.763588526057674], + [-15.749914606672803, 27.56430948794184], + [-15.468664805912795, 27.56430948794184], + [-15.299914925456818, 27.663994423746914], + [-15.299914925456818, 27.813351446514247], + [-15.398744855444761, 27.95939426104593] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "cross-straits-cable-network", + "name": "Cross Straits Cable Network", + "color": "#1e92d1", + "feature_id": "cross-straits-cable-network-0", + "coordinates": [118.23949047397545, 24.474717526356784] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [118.30692042620748, 24.476050879560063], + [118.30389542835044, 24.51639519463228], + [118.3008704304934, 24.556726557732503] + ], + [ + [118.18905050970758, 24.493915539480668], + [118.23949047397545, 24.474717526356784], + [118.28993043824354, 24.45551658468574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "yellow", + "name": "Yellow", + "color": "#b99633", + "feature_id": "yellow-0", + "coordinates": [-38.58918293813397, 43.98165289376618] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-72.93786409419286, 40.75584308487123], + [-71.09987539624133, 40.129762553931045], + [-68.39987730894534, 40.387320290775165], + [-61.199882409489234, 40.387320290775165], + [-50.39989006030518, 41.57626183009805], + [-39.59989771112103, 43.72721479104973], + [-23.39990918734489, 47.805412175893], + [-16.199914287888873, 49.00033438946335], + [-10.799918113296798, 50.02292045625484], + [-8.099920026000802, 50.31116725161084], + [-5.399921938704722, 50.81142185928286], + [-4.544402544762761, 50.82820142743802] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "baltic-sea-submarine-cable", + "name": "Baltic Sea Submarine Cable", + "color": "#2fbfcc", + "feature_id": "baltic-sea-submarine-cable-0", + "coordinates": [20.74983052488085, 59.55948018659498] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [21.375059093647366, 59.53737813890871], + [20.25005989060736, 59.451717318905224], + [18.90006084695932, 59.33716441962133], + [18.062761440110165, 59.332309018187175], + [18.90006084695932, 59.394489266856795], + [20.25005989060736, 59.50884868221257], + [21.375059093647366, 59.622821769410336], + [23.85005734033541, 59.6796637072089], + [24.4125569418554, 59.79305890746801], + [24.93247657353959, 60.171163188940454], + [24.918806583223443, 60.07486799642308], + [24.86255662307147, 59.962431634152296], + [24.75005670276738, 59.6796637072089], + [24.752496701038922, 59.43639985926242], + [24.4125569418554, 59.56588346342974], + [23.85005734033541, 59.56588346342974], + [21.375059093647366, 59.53737813890871] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "solas", + "name": "Solas", + "color": "#af3143", + "feature_id": "solas-0", + "coordinates": [-5.483009534617139, 51.47267219749361] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-4.169502810345278, 51.55809471609601], + [-5.399921938704722, 51.44682015166964], + [-5.849921620516682, 51.586833980054195], + [-6.585031099162222, 52.17164795778544] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pan-european-crossing-uk-ireland", + "name": "Pan European Crossing (UK-Ireland)", + "color": "#59b947", + "feature_id": "pan-european-crossing-uk-ireland-0", + "coordinates": [-5.44635191162584, 51.64417593731625] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-6.558811117736752, 52.18425556836888], + [-5.962421540820714, 51.586833980054195], + [-5.737421700212764, 50.740281893948264], + [-5.698461727216397, 50.07870033214297] + ], + [ + [-4.544402544762761, 50.82820142743802], + [-5.399921938704722, 51.586833980054195], + [-5.849921619920792, 52.14259270367222], + [-6.364861255132695, 52.40176042819701] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "alaska-united-southeast-au-se", + "name": "Alaska United Southeast (AU-SE)", + "color": "#7e439a", + "feature_id": "alaska-united-southeast-au-se-0", + "coordinates": [-133.7202892105406, 57.597495162258184] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-135.8998294913458, 55.84318584148099], + [-134.4665305067084, 56.033580239111444], + [-134.4154516944513, 56.466474307352456], + [-134.52473046547883, 56.84950003985648], + [-134.45754166357108, 56.942276468370636], + [-134.28528178995325, 56.99931216928479], + [-134.18381186439885, 57.05965926506707], + [-134.1008119252935, 57.14499736767982], + [-133.9163308964749, 57.22010268037346], + [-133.65813107938607, 57.22966820564031] + ], + [ + [-135.33440102024426, 57.05301929960612], + [-135.47615091624644, 57.14285437334877], + [-135.56560085061957, 57.25632706167514], + [-135.62014081060522, 57.29294273759123], + [-135.6847407632099, 57.32790795452425], + [-135.70291074987915, 57.35154490127687], + [-135.6523707869589, 57.37664384009423], + [-135.61692081296758, 57.39764169906019], + [-135.57234084567466, 57.43153840198835], + [-135.5297608769144, 57.465796336984425], + [-135.5324008749775, 57.50700103750668], + [-135.5324008749775, 57.54920559971703], + [-135.5054008947866, 57.56853862106081], + [-135.41858095848391, 57.58377679148188], + [-135.32532102690607, 57.56374387311726], + [-135.16311114591485, 57.4973463454385], + [-135.0597912217176, 57.44987929314735], + [-134.9697512877774, 57.430461772962474], + [-134.85725137031537, 57.41589725419246], + [-134.771701433081, 57.425573478879414], + [-134.58225157207494, 57.50194029871798], + [-134.7527614469767, 57.59460906161556], + [-134.80286141021975, 57.734649479402236], + [-134.8528613735362, 58.01297892893797], + [-134.8972913409392, 58.10720953221971], + [-134.74172145507637, 58.12820451017103], + [-134.6361615325227, 58.2129773863893], + [-134.71174147707183, 58.2916726856476], + [-134.6795215007108, 58.33425177771065], + [-134.59827156032148, 58.3484229247305], + [-134.52922161098152, 58.3484229247305], + [-134.40081170519215, 58.29957675077529], + [-134.29583062763368, 58.237094932490095], + [-134.13655189907206, 58.16513091439583], + [-134.12483074877156, 58.10124945897567], + [-133.9914308432734, 57.98640326883037], + [-133.82473096136502, 57.823712369918354], + [-133.80256214411088, 57.707894171078124], + [-133.6914310557961, 57.558771470979536], + [-133.66477224520335, 57.37303699157914], + [-133.63049227035367, 57.31396150003877], + [-133.65813107938607, 57.22966820564031], + [-133.62948227169068, 57.13766184463276], + [-133.5163311798385, 57.09442219161832], + [-133.2329425620245, 57.051159243807234], + [-133.00823153978095, 57.02097743143682], + [-132.9702427547599, 56.98329605125812], + [-132.90110280548586, 56.91336556277733], + [-132.96985275504602, 56.80779122608294], + [-132.7966128821472, 56.819422713097424], + [-132.69778295465588, 56.77878163109327], + [-132.62932300488296, 56.72968755068871], + [-132.59895302716455, 56.69002009313064], + [-132.5693630488739, 56.626735776412175], + [-132.50208309823532, 56.59782294168332], + [-132.45823192940585, 56.55915171527607], + [-132.38381318500652, 56.470788497078956], + [-132.4590131298345, 56.38622181235951], + [-132.5197530852713, 56.36805414595554], + [-132.59182303239572, 56.35047071868672], + [-132.59719302845582, 56.31317190855842], + [-132.62600300731884, 56.25964372839678], + [-132.72971293122976, 56.23289599183161], + [-132.84104284955018, 56.19050811225165], + [-132.8550128393008, 56.12703903462045], + [-132.74182292234502, 56.06679221717033], + [-132.61350301648972, 56.00634486676583], + [-132.4514931353517, 55.89266381393949], + [-132.3434832145955, 55.7976529155012], + [-132.27600326410362, 55.63377825521394], + [-132.13362336856375, 55.526742438171766], + [-131.9755134845644, 55.45213247504748], + [-131.91331353019882, 55.4661995720777], + [-131.82532359475445, 55.434270637976795], + [-131.64788372493703, 55.34196841314818] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "america-movil-submarine-cable-system-1-amx-1", + "name": "America Movil Submarine Cable System-1 (AMX-1)", + "color": "#3e60ac", + "feature_id": "america-movil-submarine-cable-system-1-amx-1-0", + "coordinates": [-45.682834902323236, 8.348070685535163] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-70.68356569115909, 19.803388017159477], + [-70.19987603380928, 20.058334551396143], + [-69.2998766713773, 19.952622905164304], + [-67.0498782652973, 19.210675111642757], + [-66.48737866377729, 18.89166158430325], + [-66.10666893347562, 18.466104232947515] + ], + [ + [-70.69118568576094, 19.79943635579707], + [-70.64987571502535, 20.375041253465525], + [-70.64987571502535, 21.21639789994191] + ], + [ + [-69.2998766713773, 22.261369678340685], + [-70.64987571502535, 21.21639789994191], + [-73.34987380232134, 20.585819096040467], + [-73.91237340384134, 19.952622905164304], + [-74.47487300536135, 19.316876111628602], + [-74.92487268657733, 18.251816319028308], + [-75.26237244748938, 17.39502263470061], + [-75.26237244748938, 11.735650161405744], + [-74.77975278938158, 10.94044561572673] + ], + [ + [-86.76758665233308, 21.095728792367282], + [-86.51236447788934, 21.21639789994191], + [-86.17486471697737, 21.21639789994191], + [-85.2748653545454, 21.635297384859456] + ], + [ + [-75.50573227509092, 10.386807451633246], + [-76.04987188961734, 11.515266158038685], + [-80.54986870177734, 16.10232559580288], + [-81.8998677454253, 17.39502263470061], + [-84.59986583272129, 19.104405475930548], + [-85.49986519515335, 20.375041253465525], + [-85.2748653545454, 21.635297384859456], + [-84.82486567332933, 22.67720619658283], + [-83.24986678907334, 23.50508968095727], + [-80.99986838299351, 23.711258142484382], + [-79.64986933934539, 24.73717827217618], + [-79.64986933934539, 25.348717422116806], + [-80.16016897784436, 26.01054866801087] + ], + [ + [-88.59713531004533, 15.72723663872111], + [-88.19986328244953, 16.10232559580288], + [-87.86236352153738, 16.53419619825962], + [-87.52486376062541, 16.965102599435824], + [-86.62486439819354, 18.251816319028308], + [-85.49986519515335, 20.375041253465525] + ], + [ + [-38.50448848711929, -12.969972035343062], + [-37.34989930504102, -13.455974309054454], + [-35.999900261393066, -13.504596782343953], + [-35.549900580176995, -13.698987269610853] + ], + [ + [-43.209565153998795, -22.903486555497864], + [-42.299895798417, -23.49405668871546], + [-40.94989675476907, -23.493922445897766], + [-38.69989834868906, -22.25009967909017], + [-36.44989994260905, -18.026426383713385], + [-35.549900580176995, -13.698987269610853], + [-33.299902174096985, -8.401139048122928], + [-33.299902174096985, -6.616650693475464], + [-34.199901536528955, -4.825692499217524], + [-35.999900261393066, -3.928327304142726], + [-38.54296845985962, -3.718735129291019], + [-38.249898667473076, -1.231315750217505], + [-39.149898029905046, 1.468426767332062], + [-46.79989261057713, 9.524411345019587], + [-52.19988878516919, 14.801154224791475], + [-57.599884959761184, 17.39502263470061], + [-59.39988368462521, 18.251816319028308], + [-62.099881771921204, 19.316876111628602], + [-63.899880496785315, 19.316876111628602], + [-65.69987922164925, 19.529070924351004], + [-67.49987794651328, 21.21639789994191], + [-69.2998766713773, 22.261369678340685], + [-73.34987380232134, 24.32780311165172], + [-76.94987125204939, 26.964304734562802], + [-79.1998696581294, 29.1482487910327], + [-80.54986870177734, 30.126049846722907], + [-81.65563040282986, 30.332100867462543] + ], + [ + [-65.69987922164925, 19.529070924351004], + [-66.03737898256131, 19.104405475930548], + [-66.10666893347562, 18.466104232947515] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "atlantis-2", + "name": "Atlantis-2", + "color": "#6f4ea0", + "feature_id": "atlantis-2-0", + "coordinates": [-35.41976309635564, -21.98577296609318] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-6.087131451879088, 36.27672346192381], + [-6.749920982352762, 36.33133835588808], + [-8.549919707216787, 36.05897312258671], + [-9.449919069648843, 35.60293032290622], + [-11.924917316336803, 33.93964008831958] + ], + [ + [-16.538584047971995, 28.04674170420907], + [-15.412414845760821, 28.951554732193216] + ], + [ + [-23.521209101414883, 14.923035560171769], + [-22.49990982491292, 14.801154224791475], + [-18.449912693968884, 14.801154224791475], + [-17.44571340535299, 14.686594841995088] + ], + [ + [-38.54296845985962, -3.718735129291019], + [-35.999900261393066, -3.029995968008762], + [-34.199901536528955, -3.479268678969987], + [-31.16240367277399, -4.489307673130156], + [-29.249905043153944, -9.290424301035614], + [-30.149904405585005, -13.698987269610853], + [-31.949903130448945, -18.026426383713385], + [-37.01239954412904, -23.80307964083599], + [-40.94989675476907, -25.946230718414654], + [-42.749895479633096, -27.951747285219852], + [-44.99989388571311, -32.61276000573585], + [-50.84988974152117, -35.59302880961411], + [-53.99988751003313, -36.502600461085024], + [-56.69544560047457, -36.47095527632115] + ], + [ + [-31.16240367277399, -4.489307673130156], + [-28.799905361936965, 1.468426767332062], + [-25.199907912208914, 7.744889052551343], + [-23.39990918734489, 11.294709319565555], + [-22.049910143696934, 14.801154224791475], + [-20.699911100048894, 19.952622905164304], + [-19.349912056400854, 22.884654113882362], + [-18.22491285336085, 24.941363171753835], + [-16.31241420819279, 27.763588526057674], + [-15.412414845760821, 28.951554732193216], + [-14.849915244240833, 30.514495959759188], + [-13.724916041200828, 32.052708023486105], + [-11.924917316336803, 33.93964008831958], + [-11.474917635120818, 35.419780517080454], + [-10.799918113296798, 36.51238821239372], + [-9.787418830560796, 38.29952060596935], + [-9.331559153496016, 38.69016197235561] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "avassa", + "name": "Avassa", + "color": "#bf6b28", + "feature_id": "avassa-0", + "coordinates": [44.855318309604485, -12.139111568457054] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [44.400042782532864, -12.166274798674806], + [44.400042782532864, -11.92173051164147], + [44.650042605430684, -11.92173051164147], + [45.2332941453748, -12.53937708921714], + [45.2332941453748, -12.783297381732638] + ], + [ + [43.48920358402995, -11.923115980293488], + [43.48920358402995, -12.045379517998498], + [43.31254355292762, -12.053986862571492], + [43.200043632623704, -11.943944931746927], + [43.24330532072665, -11.700586528216121] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "indigo-central", + "name": "INDIGO-Central", + "color": "#a4bb39", + "feature_id": "indigo-central-0", + "coordinates": [132.75575679276588, -36.49825481060529] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [151.1962571270927, -33.9135716055703], + [151.5737949846414, -34.826981990554685], + [150.49996762035082, -37.94245352569678], + [149.39996839960057, -38.81782397325085], + [147.59996967473646, -39.341800653968136], + [146.24997063108842, -39.515593876112206], + [143.9999722250084, -39.515593876112206], + [142.19997350014447, -39.341800653968136], + [140.39997477528036, -38.81782397325085], + [134.85085761257702, -36.67635860580856], + [127.09256232737633, -36.01682861014626], + [119.55018485796725, -36.07920493188047], + [115.44676979611498, -35.91724009701011], + [114.05321609582157, -34.61129978545125], + [114.05321609582157, -33.061828893734884], + [115.85731638027985, -31.953438943980444] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "eastern-africa-submarine-system-eassy", + "name": "Eastern Africa Submarine System (EASSy)", + "color": "#28a27f", + "feature_id": "eastern-africa-submarine-system-eassy-0", + "coordinates": [55.41659361763854, 10.43877447409838] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [51.300037894511576, 1.468426767332062], + [46.800041082351555, 2.255504211923693], + [45.34418211369595, 2.041205223228673] + ], + [ + [43.24330360197786, -11.70058928227246], + [42.75004395140763, -11.943944931746927], + [42.0750444295835, -11.943944931746927] + ], + [ + [43.66314330455961, -23.354724804059884], + [42.75004395140763, -23.597055964074997], + [41.40004490775959, -23.493922445897766] + ], + [ + [32.580621155522095, -25.968268155408055], + [33.75005032708759, -26.450941899317456], + [35.55004905195153, -26.752713396100035] + ], + [ + [39.672896131287985, -4.052924364763157], + [42.30004427019156, -4.15276774801373] + ], + [ + [40.50004554532762, -6.169450529574419], + [41.62504474836763, -9.290424301035614], + [42.0750444295835, -11.943944931746927], + [42.52504411020368, -14.861883917662055], + [42.5250441107996, -15.22403228464728], + [42.5250441107996, -20.57441905727606], + [41.40004490775959, -23.493922445897766], + [35.55004905195153, -26.752713396100035], + [33.75005032708759, -28.546349210475853], + [32.85005096465545, -28.940898806450065], + [31.757961738301788, -28.95055966653794] + ], + [ + [37.21967786917094, 19.615566594546237], + [37.80004745803154, 19.529070924351004], + [39.2625464219835, 18.251816319028308], + [40.27504570472175, 16.53419619825962], + [41.737544668671546, 14.801154224791475], + [42.24379431003959, 13.929303843271725], + [42.86254387171155, 13.054150695298716], + [43.14379367247156, 12.834868817846598], + [43.22816861269959, 12.615395567393307], + [43.453168453307626, 12.395734000022884], + [44.55004267627157, 11.405009147532837], + [45.450042038703714, 11.184367066436806], + [48.600039807215495, 12.06589527357022], + [52.650036938159616, 13.054150695298716], + [54.000035981807684, 13.273238157547667], + [55.57503486606376, 12.615395567393307], + [55.350035025455725, 9.524411345019587], + [54.450035663619815, 5.510071711803135], + [51.300037894511576, 1.468426767332062], + [46.12504156052765, -1.906058394384871], + [42.30004427019156, -4.15276774801373], + [40.95004522654352, -5.497950688314972], + [40.50004554532762, -6.169450529574419], + [39.8250460229076, -6.523516459651859], + [39.2696764169327, -6.823132108349142] + ], + [ + [43.16164365982672, 11.573660387694133], + [43.6500433138396, 11.565447393081172], + [44.55004267627157, 11.405009147532837] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "dumai-melaka-cable-system", + "name": "Dumai-Melaka Cable System", + "color": "#6bbd44", + "feature_id": "dumai-melaka-cable-system-0", + "coordinates": [101.5821093055574, 2.1897261952500457] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [101.44766236946415, 1.665522797277134], + [101.4187523899441, 2.143087178471944], + [101.81250211100806, 2.255504211923693], + [102.22090182169396, 2.273260323566632] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "aden-djibouti", + "name": "Aden-Djibouti", + "color": "#08acdb", + "feature_id": "aden-djibouti-0", + "coordinates": [44.09527107376721, 12.190508822867201] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [43.14799288824679, 11.594881329364313], + [43.6500433138396, 11.900871787261877], + [45.033538427508574, 12.800886250786618] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "chuuk-pohnpei-cable", + "name": "Chuuk-Pohnpei Cable", + "color": "#5abb5d", + "feature_id": "chuuk-pohnpei-cable-0", + "coordinates": [155.44471102712166, 7.744889052551343] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [151.85848716577576, 7.4399935397999], + [152.99996584932862, 7.744889052551343], + [157.94996234270454, 7.744889052551343], + [159.07026154907427, 7.786404758723677] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pacific-light-cable-network-plcn", + "name": "Pacific Light Cable Network (PLCN)", + "color": "#bc3e96", + "feature_id": "pacific-light-cable-network-plcn-0", + "coordinates": [-148.45270914925325, 41.78493307077903] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-118.41596126184774, 33.919920018514716], + [-120.59984033000163, 33.65918162905041], + [-122.39983905486565, 33.75276987113051], + [-129.59983395432175, 37.232354321556215], + [-138.59982757864196, 40.72920412488665], + [-151.19983391146837, 42.07928544969113], + [-179.99981350929244, 42.07928544969113] + ], + [ + [125.99998497636832, 21.00649984517682], + [130.94998146974442, 22.469443964829594], + [132.74998019460836, 23.298598065875808], + [138.59997605041642, 25.754704263415306], + [160.19996074878455, 39.351217571171134], + [172.79992073307184, 42.07922202774088], + [179.9999271925697, 42.07922202774088] + ], + [ + [125.99998497636832, 21.00649984517682], + [124.14876558466457, 23.551705022234756], + [122.84998720785634, 24.63495976683049], + [122.17498768603221, 24.788256058863453], + [121.80145279439776, 24.863504254255304] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pacific-light-cable-network-plcn", + "name": "Pacific Light Cable Network (PLCN)", + "color": "#939597", + "feature_id": "pacific-light-cable-network-plcn-1", + "coordinates": [123.7420762068696, 18.28965084436581] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [125.99998497636832, 21.00649984517682], + [124.6499859321244, 19.246083087004678], + [123.29998688907224, 17.823934412537824], + [122.39998752664027, 16.10232559580288], + [122.17498768603221, 15.886035719079104], + [121.94998784542437, 15.77780337181727], + [121.56018812156228, 15.761539465842048] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "colombia-florida-subsea-fiber-cfx-1", + "name": "Colombia-Florida Subsea Fiber (CFX-1)", + "color": "#ca2e32", + "feature_id": "colombia-florida-subsea-fiber-cfx-1-0", + "coordinates": [-74.14918274409895, 19.81212624538324] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-80.08893152830953, 26.350585697437936], + [-79.42486949873734, 25.95717997876443], + [-79.31236957843342, 25.348717422116806], + [-78.97486981752137, 24.73717827217618], + [-78.97486981752137, 23.711258142484382], + [-78.29987029569733, 22.884654113882362], + [-76.04987188961734, 21.635297384859456], + [-74.69987284596938, 21.00649984517682], + [-73.96862336399339, 20.375041253465525], + [-73.91237340384134, 20.16397503197578], + [-74.02487332414536, 19.952622905164304], + [-74.58737292566536, 19.316876111628602], + [-75.03737260688135, 18.251816319028308], + [-75.59987220840135, 17.39502263470061], + [-75.59987220840135, 11.073982781226704], + [-75.50573165009138, 10.386791448721794] + ], + [ + [-76.68936118269117, 17.94295278588291], + [-76.4998715708334, 17.823934412537824], + [-76.27487173022537, 17.823934412537824], + [-76.18434445060572, 17.918365683338692], + [-76.04987188961734, 17.823934412537824], + [-75.59987220840135, 17.39502263470061] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "imewe", + "name": "IMEWE", + "color": "#2966b1", + "feature_id": "imewe-0", + "coordinates": [48.416921240912586, 12.893456042056073] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [32.529931191431416, 29.972545436050268], + [32.287551363135435, 30.466024503890736], + [31.950051602223482, 30.877238883975252], + [31.387552000703465, 31.094220011720097], + [30.825052399183477, 31.19054975154404], + [29.893513059094772, 31.191465077638554] + ], + [ + [56.333724328601164, 25.121690004958737], + [56.9250339097116, 24.864833316508822], + [58.50003279396768, 24.507068968791344], + [59.85003183761572, 23.91710129093613], + [61.87503040308769, 22.469443964829594], + [62.10003024369573, 19.104405475930548] + ], + [ + [35.85922883292588, 34.43974246013238], + [35.55004905195153, 34.40502275071583], + [32.40005128343955, 33.283811019051], + [30.60005255857544, 32.62301664000799], + [28.8000538337115, 32.62301664000799] + ], + [ + [15.067443562021538, 37.51344748573402], + [15.75006307844734, 37.41128363492314], + [16.256312719815384, 36.87321951208918], + [16.425062600271445, 35.78566189952613], + [16.65006244087931, 34.68301765985788] + ], + [ + [5.372530429989041, 43.29362778902916], + [5.962570011999247, 41.744358789482135], + [7.200069135343199, 38.651811712711236], + [7.875068657167304, 37.94551049545976], + [9.00006786020731, 37.67887792909195], + [10.348617229769246, 37.58978657360316], + [10.912566505375338, 37.41128363492314], + [11.362566186591238, 37.232354321556215], + [12.712565230239278, 35.96797434759347], + [13.668814552822482, 35.419780517080454], + [14.4000640347993, 35.05222991093683], + [16.65006244087931, 34.68301765985788], + [19.35006052817539, 35.05222991093683], + [25.20005638398345, 33.98629373718458], + [28.8000538337115, 32.62301664000799], + [29.893513059094772, 31.191465077638554], + [30.825052399183477, 31.118343723670165], + [31.387552000703465, 30.997835356024154], + [31.950051602223482, 30.780635088989612], + [32.287551363135435, 30.41752891425901], + [32.529931191431416, 29.972545436050268] + ], + [ + [32.529931191431416, 29.972545436050268], + [32.56877616391327, 29.63833609362638], + [32.737551044351505, 29.34456698948989], + [33.018800845111514, 28.951554732193216], + [33.511262996247694, 28.161052262220892], + [34.31254992860758, 27.364667993860166], + [35.18442431096349, 26.562513149236622], + [35.887548812863486, 25.754704263415306], + [36.90004809559866, 24.12261698700334], + [38.25004713924761, 22.05298561667763], + [39.037546581375466, 20.375041253465525], + [40.27504570471959, 18.251816319028308], + [41.287544987456556, 16.53419619825962], + [42.24379431003959, 14.801154224791475], + [42.75004395140763, 13.929303843271725], + [43.11566869239567, 13.054150695298716], + [43.270356082813606, 12.834868817846598], + [43.35473102304164, 12.615395567393307], + [43.734418254067634, 12.395734000022884], + [44.55004267627157, 12.01088236045885], + [45.450042038703714, 12.06589527357022], + [48.600039807215495, 12.944533868662859], + [55.350035025455725, 15.23578178303569], + [58.950032475183775, 16.965102599435824], + [62.10003024369573, 19.104405475930548], + [66.60002705585575, 19.529070924351004], + [70.2000245055838, 19.316876111628602], + [72.87590260996691, 19.076074257285313] + ], + [ + [67.02854675228852, 24.889731701235718], + [66.48752713555183, 23.298598065875808], + [66.15002737463988, 20.375041253465525], + [66.60002705585575, 19.529070924351004] + ], + [ + [38.25004713924761, 22.05298561667763], + [39.182756478507656, 21.481533475503085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "seacomtata-tgn-eurasia", + "name": "SEACOM/Tata TGN-Eurasia", + "color": "#2f95b3", + "feature_id": "seacomtata-tgn-eurasia-0", + "coordinates": [48.74203630999449, 12.880806502007601] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [72.87590260996691, 19.076074257285313], + [70.2000245055838, 19.210675111642757], + [66.60002705585575, 19.316876111628602], + [61.87503040308769, 18.67864702215462], + [58.950032475183775, 16.749771315644608], + [55.350035025455725, 15.018578573757566], + [48.600039807215495, 12.834868817846598], + [45.450042038703714, 11.95585820711483], + [44.55004267627157, 11.95585820711483], + [43.70629327399155, 12.395734000022884], + [43.34066853300351, 12.615395567393307], + [43.25629359277548, 12.834868817846598], + [43.08754371231959, 13.054150695298716], + [42.69379399125549, 13.929303843271725], + [42.18754434988762, 14.801154224791475], + [41.17504506715264, 16.53419619825962], + [40.16254578441547, 18.251816319028308], + [38.92504666107155, 20.375041253465525], + [38.137547218943496, 22.05298561667763], + [36.78754817529472, 24.12261698700334], + [35.77504889255957, 25.754704263415306], + [35.10004937073546, 26.562513149236622], + [34.25629996845544, 27.364667993860166], + [33.44102554600758, 28.161052262220892], + [32.61372113207378, 29.1042306694751] + ], + [ + [32.580621155522095, -25.968268155408055], + [33.75005032708759, -26.55162080165701], + [35.77504889255957, -26.953450834802908] + ], + [ + [42.30004427019156, -4.377144375531941], + [39.672896131287985, -4.052924364763157] + ], + [ + [55.350035025455725, 15.018578573757566], + [55.800034706671596, 12.615395567393307], + [55.800034706671596, 9.524411345019587], + [55.350035026051785, 5.510071711803135], + [52.200037256943745, 1.468426767332062], + [46.350041401135684, -2.130918480960247], + [42.30004427019156, -4.377144375531941], + [40.95004522654352, -5.721872747834027], + [40.61254546563154, -6.169450529574419], + [39.8250460229076, -6.579399093270837], + [39.2696764169327, -6.823132108349142] + ], + [ + [31.757961738301788, -28.95055966653794], + [32.85005096465545, -29.03930285603505], + [33.75005032708759, -28.74381028114999], + [35.77504889255957, -26.953450834802908], + [41.62504474836763, -23.70010845220321], + [42.75004395140763, -20.57441905727606], + [42.75004395140763, -15.22403228464728], + [42.750043950811715, -14.861883917662055], + [42.30004427019156, -11.943944931746927], + [41.850044588975464, -9.290424301035614], + [40.61254546563154, -6.169450529574419] + ], + [ + [43.147993669496344, 11.594869371447714], + [43.6500433138396, 11.790669845561695], + [44.55004267627157, 11.95585820711483] + ], + [ + [38.137547218943496, 22.05298561667763], + [39.182756478507656, 21.481533475503085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "middle-east-north-africa-mena-cable-systemgulf-bridge-international", + "name": "Middle East North Africa (MENA) Cable System/Gulf Bridge International", + "color": "#51b847", + "feature_id": "middle-east-north-africa-mena-cable-systemgulf-bridge-international-0", + "coordinates": [45.791000621026626, 12.49071583668416] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [44.55004267627157, 12.17588718550806], + [43.6500433138396, 11.845776373625682], + [43.35585139948304, 11.721608446415672] + ], + [ + [58.50003279396768, 24.12261698700334], + [58.331282913511615, 23.917101290935022], + [58.17620302337187, 23.684877531684634] + ], + [ + [32.65318110412005, 29.113614162980156], + [33.426988055952876, 28.161052262220892], + [34.0313001278476, 27.364667993860166], + [34.76254960982348, 26.562513149236622], + [35.3250492113435, 25.754704263415306], + [36.337548494079556, 24.12261698700334], + [37.687547537727596, 22.05298561667763], + [38.47504697985545, 20.375041253465525], + [39.71254610319957, 18.251816319028308], + [40.72504538593765, 16.53419619825962], + [41.96254450927958, 14.801154224791475], + [42.468794150647625, 13.929303843271725], + [42.97504379201547, 13.054150695298716], + [43.200043632623704, 12.834868817846598], + [43.284418572851564, 12.615395567393307], + [43.59379335368763, 12.395734000022884], + [44.55004267627157, 12.17588718550806], + [45.450042038703714, 12.395734000022884], + [48.600039807215495, 13.273238157547667], + [55.350035025455725, 15.886035719079104], + [58.950032475183775, 17.609605913225096], + [60.52503135943985, 19.104405475930548], + [60.52503135943985, 22.469443964829594], + [59.85003183761572, 23.298598065875808], + [58.50003279396768, 24.12261698700334] + ], + [ + [29.700933195520264, 31.072270031660224], + [29.98130299690345, 30.61136637963392], + [30.375052717967577, 30.29618450441947], + [31.050052239791512, 29.931250704427015], + [31.725051761615447, 29.687214675557016], + [32.17505144283152, 29.3934133712784], + [32.65318110412005, 29.113614162980156] + ], + [ + [29.700933195520264, 31.072270031660224], + [29.98130299690345, 30.65976529855473], + [30.375052717967577, 30.393272076386182], + [31.050052239791512, 30.028698127877362], + [31.725051761615447, 29.784900534878517], + [32.17505144283152, 29.4423669335807], + [32.65318110412005, 29.113614162980156] + ], + [ + [12.591375316091586, 37.650586172786205], + [12.173015612461455, 37.27875778048957], + [12.037565708415343, 36.87321951208918], + [12.15006562871929, 35.78566189952613], + [12.48756538963653, 35.419780517080454], + [14.4000640347993, 33.75276987113051], + [16.65006244087931, 33.37780603565923], + [19.35006052817539, 33.75276987113051], + [25.20005638398345, 33.00121852265437], + [27.900054471279333, 32.148008778540714], + [29.700933195520264, 31.072270031660224] + ], + [ + [37.687547537727596, 22.05298561667763], + [39.182756478507656, 21.481533475503085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "saudi-arabia-sudan-2-sas-2", + "name": "Saudi Arabia-Sudan-2 (SAS-2)", + "color": "#3c67b1", + "feature_id": "saudi-arabia-sudan-2-sas-2-0", + "coordinates": [38.04009130655564, 20.72143523709383] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [37.21967786917094, 19.615566594546237], + [37.650047564292834, 20.23436232893974], + [38.100047245508904, 20.796306105108954], + [39.182756478507656, 21.481533475503085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "flag-europe-asia-fea", + "name": "FLAG Europe-Asia (FEA)", + "color": "#c52159", + "feature_id": "flag-europe-asia-fea-0", + "coordinates": [25.9634155193325, 33.43612490764161] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [29.893513059094772, 31.191465077638554], + [30.825052399183477, 30.75649044225247], + [31.387552000703465, 30.51445288474386], + [31.950051602223482, 30.296162918703686], + [32.287551363135435, 30.174689758499085], + [32.529931191431416, 29.972545436050268] + ], + [ + [-5.654511758350935, 50.04314791189421], + [-6.074921460528742, 49.950586997728095], + [-6.299921301136777, 49.80559362880811], + [-7.499920451046137, 49.34357257392173], + [-8.549919707216787, 48.70423463096077], + [-12.599916838160823, 44.051519228735145], + [-12.599916838160823, 39.69832335493328], + [-11.024917953904747, 37.94551049545976], + [-9.787418830560796, 36.51238821239372], + [-8.999919388432772, 36.14986678681771], + [-6.299921301136777, 35.96797434759347], + [-5.624921779312757, 35.967933880341064], + [-5.347581975782816, 36.156019514134556], + [-4.499922576272752, 36.05897312258671], + [-2.249924170192742, 36.14986678681771], + [2.250072641967279, 37.94551049545976], + [5.400070410479259, 38.29952060596935], + [9.00006786020731, 38.29952060596935], + [10.348617229769246, 38.21117903702327], + [12.15006562871929, 38.29952060596935], + [12.60006530993536, 38.43179231910082], + [13.05006499115126, 38.34365110568987], + [13.358654772543531, 38.116121616583314], + [13.05006499115126, 38.29948136690871], + [12.60006530993536, 38.34361189050912], + [12.15006562871929, 38.21117903702327], + [12.15006562871929, 36.87321951208918], + [12.375065469327325, 36.240655233214795], + [12.712565230239278, 35.78566189952613], + [13.331314791912519, 35.419780517080454], + [14.4000640347993, 34.68301765985788], + [16.65006244087931, 34.31215165223537], + [19.35006052817539, 34.68301765985788], + [25.20005638398345, 33.70598849685862], + [28.8000538337115, 32.43331330641712], + [29.893513059094772, 31.191465077638554], + [30.825052399183477, 30.6839556754382], + [31.387552000703465, 30.417485796339378], + [31.950051602223482, 30.198979110224087], + [32.287551363135435, 30.126049846722907], + [32.529931191431416, 29.972545436050268], + [32.48440122368541, 29.63833609362638], + [32.65327610405271, 29.34456698948989], + [32.65318110412005, 29.113614162980156], + [33.41295056589729, 28.161052262220892], + [34.14380004815152, 27.364667993860166], + [34.93129949027957, 26.562513149236622], + [35.55004905195153, 25.754704263415306], + [36.56254833468651, 24.12261698700334], + [37.91254737833546, 22.05298561667763], + [38.70004682046351, 20.375041253465525], + [39.937545943807606, 18.251816319028308], + [40.9500452265446, 16.53419619825962], + [42.0750444295835, 14.801154224791475], + [42.58129407095154, 13.929303843271725], + [43.03129375216761, 13.054150695298716], + [43.22816861269959, 12.834868817846598], + [43.31254355292762, 12.615395567393307], + [43.6500433138396, 12.395734000022884], + [44.55004267627157, 11.900822861999615], + [45.450042038703714, 11.845776373625682], + [48.600039807215495, 12.725155923562937], + [55.350035025455725, 14.801154224791475], + [58.950032475183775, 16.53419619825962], + [61.650030562479856, 18.251816319028308], + [66.60002705585575, 19.104405475930548], + [70.2000245055838, 19.104405475930548], + [72.87590260996691, 19.076074257285313] + ], + [ + [-5.145872118676039, 36.42741977174609], + [-4.724922416880787, 36.240655233214795], + [-4.499922576272752, 36.05897312258671] + ], + [ + [56.333724328601164, 25.121690004958737], + [56.9250339097116, 24.8393128255928], + [58.50003279396768, 24.353428099494664], + [59.85003183761572, 23.711258142485292], + [61.42503072187162, 22.469443964829594], + [61.650030562479856, 18.251816319028308] + ], + [ + [100.0661133481664, 6.613518860854185], + [100.29385318683333, 6.908035999527129], + [100.59971297015935, 7.075917959575207], + [101.70000219070411, 7.298762754459602], + [103.04883123518098, 7.340023741610707], + [105.29999964043216, 7.521883237406598], + [107.99999772772824, 8.41318535956026], + [109.34999677137611, 9.96791518697421], + [110.24999613380825, 12.615395567393307], + [112.94999422110416, 18.251816319028308], + [113.28749398201612, 20.796306105108954], + [113.6249937429283, 21.635297384859456], + [113.94911351331862, 22.27149389584997], + [114.187543344413, 21.84429407917378], + [115.19999262718417, 21.21639789994191], + [116.54999167083221, 21.00649984517682], + [118.79999007691222, 21.32123529551194], + [121.02775554672925, 21.143107267679284], + [122.84998720785634, 21.32123529551194], + [123.97498641089615, 22.05298561667763], + [124.87498577332835, 24.12261698700334], + [125.09998561393635, 25.55188275942578], + [125.32498545454442, 26.159307970773796], + [126.22498481697616, 28.55704546571141], + [126.4499846575844, 29.540507745394393], + [127.57498386062443, 32.43331330641712], + [127.57498386062443, 33.18971466460036], + [128.02498354184027, 34.31215165223537], + [128.62078311977027, 34.88072781981958] + ], + [ + [100.36299313785392, 5.35384659465538], + [99.67500362523216, 5.510071711803135], + [97.42500521915215, 6.908035999527129] + ], + [ + [72.87590260996691, 19.076074257285313], + [72.67502275227184, 16.965102599435824], + [73.35002227409598, 13.492128176464178], + [74.70002131774382, 9.524411345019587], + [76.50002004260776, 6.852191098754417], + [78.30001876747187, 5.061986954416028], + [81.00001685476795, 4.389285926050889], + [85.50001366692797, 5.510071711803135], + [90.00001047908799, 6.405200795356109], + [92.7000085663839, 6.405200795356109], + [94.27500745064, 6.628746603597904], + [95.40000665367998, 6.628746603597904], + [97.42500521915215, 6.908035999527129], + [99.00000410340803, 6.852191098754417], + [99.67500362523216, 6.740481724921096], + [100.0661133481664, 6.613518860854185] + ], + [ + [121.92508786246773, 30.86475026744725], + [122.17498768603221, 30.997878215321975], + [122.84998720785634, 31.19054975154404], + [124.64998593272028, 30.80481662242596], + [125.6624852154562, 30.223305674181546], + [126.4499846575844, 29.540507745394393] + ], + [ + [139.6208753272019, 35.144036508332505], + [139.44372545269644, 34.40502275071583], + [139.38747549254444, 33.93964008831958], + [139.49997541284839, 32.43331330641712], + [139.0499757316325, 31.28673881439167], + [137.69997668798445, 30.514495959759188], + [134.99997860068837, 29.73606949729205], + [132.74998019460836, 29.73606949729205], + [130.49998178852834, 29.931250704427015], + [129.37498258548837, 30.901396088515583], + [128.02498354184027, 32.43331330641712], + [127.79998370123226, 33.18971466460036], + [128.1374834621444, 34.31215165223537], + [128.62078311977027, 34.88072781981958] + ], + [ + [35.007079436596456, 29.53192911521984], + [34.767629606224915, 29.089044023022637], + [34.517629783327095, 28.01631543236988], + [34.76254960982348, 26.964304734562802], + [35.55004905195153, 25.754704263415306] + ], + [ + [39.18783647490889, 21.48407381384692], + [37.91254737833546, 22.05298561667763] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "eac-c2c", + "name": "EAC-C2C", + "color": "#3a56a6", + "feature_id": "eac-c2c-0", + "coordinates": [124.28740248364423, 20.758971333708757] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [120.12788799225589, 21.457551614722092], + [118.79999007691222, 21.530685333962452], + [117.44999103326418, 21.84429407917378], + [115.64999230840024, 22.05298561667763], + [114.97499278657611, 22.36544568641881], + [114.25868329401678, 22.318292678971574] + ], + [ + [114.20292333351765, 22.222050419736746], + [114.41249318505615, 20.796306105108954], + [114.97499278657611, 18.251816319028308], + [116.99999135204828, 16.10232559580288], + [119.2499897581283, 14.365653759228536], + [120.14998912056026, 13.820086409698149], + [121.06600847164387, 13.762418337904336] + ], + [ + [121.4625881907028, 25.181712818924467], + [121.2749883236003, 25.754704263415306], + [121.94998784542437, 26.763586569619832], + [123.52498672968031, 28.161052262220892], + [123.29998688907224, 30.126049846722907], + [122.17498768603221, 30.75649044225247], + [121.92508786246773, 30.86475026744725], + [122.17498768603221, 31.046082721692102], + [122.84998720785634, 31.478822672736243], + [128.02498354184027, 32.81231878328768], + [128.6999830636644, 34.31215165223537], + [128.99949285148878, 35.17037876180012], + [129.59998242609637, 34.31215165223537], + [129.59998242609637, 32.81231878328768], + [129.59998242609637, 31.67051304708704], + [130.49998178852834, 30.901396088515583], + [132.74998019460836, 30.901396088515583], + [134.99997860068837, 31.28673881439167], + [136.79997732555248, 32.052708023486105], + [137.02497716616054, 32.81231878328768], + [136.87399727311598, 34.33682825203164], + [137.69997668798445, 33.93964008831958], + [138.59997605041642, 33.93964008831958], + [139.27497557224055, 34.12610104005762], + [140.0062250542164, 34.40502275071583], + [139.9548550906076, 34.97657002902224], + [140.23122489482446, 34.40502275071583], + [140.7374745361923, 33.93964008831958], + [140.62497461588836, 32.43331330641712], + [140.1749749346723, 30.901396088515583], + [138.82497589102448, 28.55704546571141], + [137.24997700676838, 26.964304734562802], + [132.74998019460836, 23.711258142484382], + [130.94998146974442, 22.884654113882362], + [125.99998497636832, 21.21639789994191], + [122.84998720785634, 20.375041253465525], + [121.04998848299223, 19.316876111628602], + [120.14998912056026, 18.67864702215462], + [119.2499897581283, 17.823934412537824], + [119.02498991752029, 15.23578178303569], + [119.58748951904025, 14.583511645118676], + [120.14998912056026, 13.929303843271725], + [121.06600847164387, 13.762418337904336], + [120.14998912056026, 13.273238157547667], + [118.79999007691222, 12.615395567393307], + [116.09999198961614, 9.08033076823304], + [114.0749934241442, 7.744889052551343], + [110.69999581502415, 5.957818681088611], + [110.02499629320002, 5.510071711803135], + [107.99999772772824, 4.613591578862867], + [107.0999983652961, 4.052702097268195], + [105.74999932164823, 3.266814816815753], + [105.24374968028005, 2.817450442654064], + [104.62500011860826, 1.468426767332062], + [104.28790035741284, 1.229655809402772], + [104.16377044534775, 1.224064595412784], + [103.9870105705659, 1.389451396800126], + [104.17793043531677, 1.263405296164478], + [104.28790035741284, 1.313859995093139], + [104.42847525782813, 1.468426767332062], + [104.79374999906415, 2.817450442654064], + [105.74999932164823, 4.164912849976844], + [107.0999983652961, 4.949916167507411], + [107.99999772772824, 5.622041180883144], + [110.47499597441615, 7.744889052551343], + [111.71249509776024, 9.96791518697421], + [112.7249943804961, 12.615395567393307], + [114.52499310536027, 18.251816319028308], + [114.18749334444826, 20.796306105108954], + [114.25868329401678, 22.318292678971574] + ], + [ + [124.64998593272028, 35.419780517080454], + [121.4999881642083, 35.78566189952613], + [120.34246898420574, 36.087310907419294] + ], + [ + [103.9870105705659, 1.389451396800126], + [104.1874004286079, 1.289568782938488], + [104.28790035741284, 1.341927435270179], + [104.40040027771695, 1.468426767332062], + [104.73750003891215, 2.817450442654064], + [105.74999932164823, 4.277107602190398], + [107.0999983652961, 5.061986954416028], + [107.99999772772824, 5.733989114150035], + [110.24999613380825, 7.744889052551343], + [111.48749525715218, 9.96791518697421], + [112.49999453988826, 12.615395567393307], + [114.2999932647522, 18.251816319028308], + [114.0749934241442, 20.796306105108954], + [114.20292333351765, 22.222050419736746] + ], + [ + [121.38328824687974, 25.149980712893893], + [121.61248808451225, 25.754704263415306], + [121.94998784542437, 26.058287560298936], + [122.84998720785634, 26.26024097157773], + [128.6999830636644, 25.754704263415306], + [131.39998115096031, 26.159307970773796], + [132.74998019460836, 26.159307970773796] + ], + [ + [114.25868329401678, 22.318292678971574], + [114.97499278657611, 22.261369678340685], + [115.64999230840024, 21.94867813792706], + [117.44999103326418, 21.635297384859456], + [118.79999007691222, 21.00649984517682], + [121.02775554672925, 20.827994119058957], + [122.84998720785634, 20.796306105108954], + [125.99998497636832, 22.05298561667763], + [128.6999830636644, 23.298598065875808], + [132.74998019460836, 26.159307970773796] + ], + [ + [114.25868329401678, 22.318292678971574], + [114.97499278657611, 22.313417380769238], + [115.64999230840024, 22.00084146791059], + [117.44999103326418, 21.73983373091116], + [118.79999007691222, 21.21639789994191], + [121.02775554672925, 21.038143463338287], + [122.84998720785634, 21.21639789994191], + [124.19998625150438, 22.05298561667763], + [125.09998561393635, 24.12261698700334], + [125.38123541469636, 25.55188275942578], + [125.6624852154562, 26.159307970773796], + [126.67498449819223, 28.55704546571141], + [126.8999843388003, 29.540507745394393], + [127.34998402001636, 30.70813999354155], + [125.09998561393635, 33.18971466460036], + [124.64998593272028, 34.31215165223537], + [124.64998593272028, 35.419780517080454], + [125.54998529515225, 36.14986678681771], + [126.3915846989556, 36.57633045558569], + [125.54998529515225, 35.96797434759347], + [125.09998561393635, 35.419780517080454], + [125.09998561393635, 34.31215165223537], + [125.32498545454442, 33.18971466460036], + [128.24998338244833, 30.70813999354155], + [130.49998178852834, 29.540507745394393], + [132.74998019460836, 29.34456698948989], + [134.99997860068837, 29.34456698948989], + [137.69997668798445, 30.126049846722907], + [139.27497557224055, 30.901396088515583], + [141.2999741377125, 32.052708023486105], + [142.19997350014447, 34.40502275071583], + [142.19997350014447, 35.05222991093683], + [141.9749736595364, 35.78566189952613], + [140.6124746247436, 36.38348373531238], + [141.7499738189284, 35.78566189952613], + [141.7499738189284, 35.05222991093683], + [140.84997445649643, 34.12610104005762], + [138.59997605041642, 33.37780603565923], + [137.69997668798445, 33.65918162905041], + [136.87399727311598, 34.33682825203164], + [137.47497684737638, 32.81231878328768], + [137.69997668798445, 31.28673881439167], + [137.24997700676838, 29.34456698948989], + [132.74998019460836, 26.159307970773796] + ], + [ + [125.09998561393635, 24.12261698700334], + [123.74998657028831, 25.24700643263671], + [122.84998720785634, 25.55188275942578], + [121.94998784542437, 25.450342946923996], + [121.38328824687974, 25.149980712893893], + [121.94998784542437, 25.348717422116806], + [122.39998752664027, 24.941363171753835], + [122.84998720785634, 24.01990020343257], + [122.39998752664027, 22.469443964829594], + [121.04998848299223, 19.74098736552503], + [119.69998943934436, 18.67864702215462], + [118.79999007691222, 17.823934412537824], + [118.79999007691222, 15.23578178303569], + [119.36248967843224, 14.583511645118676], + [120.14998912056026, 14.365653759228536], + [120.82019864577748, 14.28664948043695], + [120.14998912056026, 14.038469666260113], + [118.79999007691222, 13.054150695298716], + [115.64999230840024, 9.08033076823304], + [113.84999358353613, 7.744889052551343], + [110.47499597441615, 5.957818681088611], + [109.79999645259218, 5.510071711803135], + [107.99999772772824, 4.725718053703702], + [107.0999983652961, 4.164912849976844], + [105.74999932164823, 3.379125568250004], + [105.18749972012822, 2.817450442654064], + [104.59692513849686, 1.468426767332062], + [104.28790035741284, 1.243690029729692], + [104.17314043870985, 1.250328452434076], + [103.9870105705659, 1.389451396800126] + ], + [ + [120.12788799225589, 21.457551614722092], + [120.37498896116833, 21.635297384859456], + [120.54373884162422, 22.05298561667763], + [120.66219875770614, 22.249254821356544] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "asia-submarine-cable-express-asecahaya-malaysia", + "name": "Asia Submarine-cable Express (ASE)/Cahaya Malaysia", + "color": "#1ab4dd", + "feature_id": "asia-submarine-cable-express-asecahaya-malaysia-0", + "coordinates": [115.70490394718846, 11.388484380610777] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [130.90187508980645, 23.865759963390786], + [128.6999830636644, 25.55188275942578], + [128.02498354184027, 25.95717997876443], + [127.70078377150665, 26.08774963546199] + ], + [ + [105.07499979982416, 2.817450442654064], + [104.7975192542419, 2.513406917740724], + [104.40000027800002, 2.424113339601092], + [103.85068066714334, 2.295702456949584] + ], + [ + [126.85721436909918, 19.479734448240038], + [125.54998529515225, 19.316876111628602], + [121.04998848299223, 19.952622905164304], + [119.47498959873613, 18.67864702215462], + [118.57499023630416, 17.823934412537824], + [117.56329095300165, 15.453233245173664], + [116.21249190992026, 12.615395567393307], + [114.74999294596827, 9.08033076823304], + [112.94999422110416, 7.744889052551343], + [110.02499629320002, 5.957818681088611], + [109.34999677137611, 5.510071711803135], + [107.99999772772824, 4.949916167507411], + [107.0999983652961, 4.389285926050889], + [105.74999932164823, 3.603707649194774], + [105.07499979982416, 2.817450442654064], + [104.54077517827395, 1.468426767332062], + [104.28790035741284, 1.285792239567854], + [104.19932042016362, 1.322380233862305], + [103.98594057132394, 1.385342604600311] + ], + [ + [139.8169651882899, 35.03751783625896], + [139.7249752534564, 34.40502275071583], + [139.7249752534564, 33.93964008831958], + [139.94997509406446, 32.43331330641712], + [139.49997541284839, 30.901396088515583], + [138.82497589102448, 29.73606949729205], + [137.24997700676838, 28.55704546571141], + [132.74998019460836, 25.348717422116806], + [130.94998146974442, 23.917101290935022], + [126.85721436909918, 19.479734448240038], + [124.19998625150438, 15.23578178303569], + [123.52498672968031, 14.365653759228536], + [122.95008713694452, 14.11652289884887] + ], + [ + [119.47498959873613, 18.67864702215462], + [118.34999039569615, 20.16397503197578], + [116.99999135204828, 21.111485983488905], + [115.64999230840024, 21.79207342302732], + [114.97499278657611, 22.157216226160074], + [114.25868329401678, 22.318292678971574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pldt-domestic-fiber-optic-network-dfon", + "name": "PLDT Domestic Fiber Optic Network (DFON)", + "color": "#57b947", + "feature_id": "pldt-domestic-fiber-optic-network-dfon-0", + "coordinates": [122.8082279224536, 11.655166890459213] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [124.61277595908044, 11.006888020676286], + [124.64998593272028, 10.742581675476316], + [124.64998593272028, 10.410816505402636], + [124.7624858530244, 9.96791518697421], + [125.09998561393635, 9.746236973759864], + [125.43748537484831, 9.302441529883055], + [125.54061530179015, 8.9476104639362], + [125.32498545454442, 9.302441529883055], + [125.09998561393635, 9.524411345019587], + [124.64998593272028, 9.413444258507468], + [124.53748601241617, 9.08033076823304], + [124.53748601241617, 8.635699417327544], + [124.63191594552123, 8.454147535358373], + [124.42498609211222, 8.635699417327544], + [124.19998625150438, 8.635699417327544], + [124.05765681986091, 8.325649123940394], + [123.84998649944745, 8.149939793212269], + [123.97498641089615, 8.41318535956026], + [123.74998657028831, 8.858082310478125], + [123.41248680937619, 9.08033076823304], + [123.28143690221336, 9.295503918748068] + ], + [ + [124.61277595908044, 11.006888020676286], + [124.53748601241617, 10.742581675476316], + [124.42498609211222, 10.52144468555204], + [124.19998625150438, 10.410816505402636], + [123.89461646783141, 10.309948397086572], + [124.08748633120027, 10.410816505402636], + [124.19041625828382, 10.932011625131736], + [124.08748633120027, 11.294709319565555], + [123.74998657028831, 11.294709319565555], + [123.29998688907224, 10.95003788376323] + ], + [ + [120.62298878548287, 14.088232047424441], + [120.48748888147222, 13.929303843271725], + [120.59998880177616, 13.710817738179543], + [121.04998848299223, 13.546819477168867], + [121.38748824390436, 13.492128176464178], + [121.4999881642083, 13.273238157547667], + [121.46453818932153, 13.04578255071101], + [121.61248808451225, 12.834868817846598], + [121.72498800481614, 12.615395567393307], + [121.94998784542437, 12.17588718550806], + [122.06248776572832, 12.06589527357022], + [122.39998752664027, 11.95585820711483], + [122.7499872786972, 11.583202180445141], + [122.96248712816029, 11.845776373625682], + [123.29998688907224, 11.845776373625682], + [123.41248680937619, 11.95585820711483], + [123.64617664382834, 12.366734534391924], + [123.58133668976146, 12.505588131780542], + [123.52498672968031, 12.615395567393307], + [123.52498672968031, 12.834868817846598], + [123.63748664998437, 13.054150695298716], + [123.74373657471571, 13.138994853951147], + [123.97498641089615, 13.163718917913684], + [124.19998625150438, 13.054150695298716], + [124.19871625240401, 12.617971818017423], + [124.19998625150438, 12.17588718550806], + [124.60027596793546, 12.069904662870869] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "tata-tgn-intra-asia-tgn-ia", + "name": "Tata TGN-Intra Asia (TGN-IA)", + "color": "#3eb65c", + "feature_id": "tata-tgn-intra-asia-tgn-ia-0", + "coordinates": [118.508117754489, 16.612778847435266] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [119.92498927995226, 18.67864702215462], + [120.59998880058438, 18.785187974742087], + [121.04998848299223, 18.785187974742087], + [121.51307815493519, 18.418302135034224] + ], + [ + [114.183973346942, 22.24961578335288], + [114.74999294596827, 21.896495662923684], + [115.64999230840024, 21.63525090740862], + [116.99999135204828, 21.32123529551194], + [118.34999039569615, 20.585819096040467], + [120.14998912056026, 19.74098736552503], + [121.04998848299223, 19.529070924351004] + ], + [ + [103.9870105705659, 1.389451396800126], + [104.1826204319942, 1.276392096469493], + [104.28790035741284, 1.257724175427541], + [104.56885015838535, 1.468426767332062], + [105.1312497599761, 2.817450442654064], + [105.74999932164823, 3.491423322320486], + [107.0999983652961, 4.277107602190398], + [107.99999772772824, 4.837826391986653], + [109.57499661198418, 5.510071711803135], + [110.24999613380825, 5.957818681088611], + [113.17499406171223, 7.744889052551343], + [114.97499278657611, 9.08033076823304], + [116.54999167083221, 12.615395567393307], + [118.01327063423193, 15.453233245173664], + [119.02498991752029, 17.823934412537824], + [119.92498927995226, 18.67864702215462], + [121.04998848299223, 19.529070924351004], + [122.84998720785634, 19.74098736552503], + [125.99998497636832, 20.375041253465525], + [130.94998146974442, 21.21639789994191], + [138.59997605041642, 24.12261698700334] + ], + [ + [107.0791983800311, 10.342138429682905], + [107.77499788712001, 9.63534238476447], + [108.6749972495522, 9.302441529883055], + [111.59999517745612, 9.302441529883055], + [113.39999390232023, 9.08033076823304], + [114.97499278657611, 9.08033076823304] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "asia-pacific-gateway-apg", + "name": "Asia Pacific Gateway (APG)", + "color": "#b63894", + "feature_id": "asia-pacific-gateway-apg-0", + "coordinates": [121.29568711604642, 20.6432417395053] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [125.54998529515225, 24.12261698700334], + [122.84998720785634, 24.8393128255928], + [122.17498768603221, 24.89034854048822], + [121.80144795065141, 24.863504112487874] + ], + [ + [121.92508786246773, 30.86475026744725], + [122.17498768603221, 30.80481662242596], + [124.19998625150438, 30.126049846722907], + [125.54998529515225, 29.540507745394393], + [127.57498386062443, 28.55704546571141] + ], + [ + [127.79998370123226, 29.540507745394393], + [125.99998497636832, 30.70813999354155], + [124.19998625150438, 31.478822672736243], + [122.84998720785634, 31.766210259726904], + [121.94998784542437, 31.67051304708704], + [121.39529823837174, 31.619800328867854] + ], + [ + [136.79997732555248, 31.28673881439167], + [137.24997700676838, 32.81231878328768], + [136.87399727311598, 34.33682825203164] + ], + [ + [112.04999485867219, 12.615395567393307], + [111.59999517745612, 13.054150695298716], + [110.69999581502415, 14.801154224791475], + [109.79999645259218, 15.561165635263421], + [108.89999709016004, 15.886035719079104], + [108.19247759137372, 16.04339300520843] + ], + [ + [107.99999772772824, 6.852191098754417], + [105.29999964043216, 7.075530930004675], + [103.04883123518098, 7.116812251931691], + [101.70000219070411, 7.187160551695541], + [100.59971297015935, 7.075917959575207] + ], + [ + [114.0749934241442, 18.251816319028308], + [113.96249350384025, 20.796306105108954], + [114.25868329401678, 22.318292678971574] + ], + [ + [128.6999830636644, 30.514495959759188], + [128.6999830636644, 31.67051304708704], + [128.92498290427224, 32.81231878328768], + [129.1499827448803, 34.31215165223537], + [128.99949285148878, 35.17037876180012] + ], + [ + [103.32266104119762, 3.815173420941221], + [103.95000059678412, 3.940475772228723], + [106.19999900286413, 5.510071711803135], + [107.99999772772824, 6.852191098754417], + [111.14999549624022, 9.96791518697421], + [112.04999485867219, 12.615395567393307], + [114.0749934241442, 18.251816319028308], + [116.99999135204828, 19.74098736552503], + [120.14998912056026, 20.375041253465525], + [121.04998848299223, 20.585819096040467], + [122.84998720785634, 21.00649984517682], + [124.64998593272028, 22.05298561667763], + [125.54998529515225, 24.12261698700334], + [125.94373501621621, 25.55188275942578], + [126.33748473728028, 26.159307970773796], + [127.57498386062443, 28.55704546571141], + [127.79998370123226, 29.540507745394393], + [128.6999830636644, 30.514495959759188], + [130.49998178852834, 30.320465424761352], + [132.74998019460836, 30.126049846722907], + [134.99997860068837, 30.514495959759188], + [136.79997732555248, 31.28673881439167], + [138.59997605041642, 32.43331330641712], + [139.49997541284839, 33.93964008831958], + [139.61247533315233, 34.40502275071583], + [139.8169651882899, 35.03751783625896] + ], + [ + [103.9870105705659, 1.389451396800126], + [104.1874004286079, 1.302655424516928], + [104.48462521805104, 1.468426767332062], + [105.29999964043216, 2.367912558705314], + [106.19999900286413, 4.613591578862867], + [106.19999900286413, 5.510071711803135] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "seamewe-4", + "name": "SeaMeWe-4", + "color": "#187bb6", + "feature_id": "seamewe-4-0", + "coordinates": [80.51803148535029, 12.660720707499621] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [12.15006562871929, 38.38775473578434], + [12.262565549023208, 38.21117903702327], + [12.262565549023208, 36.87321951208918], + [12.487565389631243, 36.240655233214795], + [12.712565230239278, 35.876870570092734], + [13.50006467236733, 35.419780517080454], + [14.4000640347993, 34.867831005273246], + [16.65006244087931, 34.49779087043359], + [19.35006052817539, 34.867831005273246], + [25.20005638398345, 33.84625607000376], + [28.8000538337115, 32.52821504536482], + [29.893513059094772, 31.191465077638554], + [30.825052399183477, 30.828970604876417], + [31.387552000703465, 30.611323347603474], + [31.950051602223482, 30.393250512072086], + [32.287551363135435, 30.223305674181546], + [32.542821182299974, 29.95909144105582], + [32.596876144006984, 29.63833609362638], + [32.76567602442739, 29.34456698948989], + [33.0469258251874, 28.951554732193216], + [33.52527548632111, 28.161052262220892], + [34.48129980906347, 27.364667993860166], + [35.437549131647586, 26.562513149236622], + [36.22504857377547, 25.754704263415306], + [37.23754785650971, 24.12261698700334], + [38.587546900159566, 22.05298561667763], + [39.182756478507656, 21.481533475503085] + ], + [ + [29.893513059094772, 31.191465077638554], + [30.825052399183477, 30.901396088515583], + [31.387552000703465, 30.708097004575848], + [31.950051602223482, 30.490241707091457], + [32.287551363135435, 30.271897570624247], + [32.529931191431416, 29.972545436050268] + ], + [ + [100.0661133481664, 6.613518860854185], + [100.0579133539753, 6.35444710390118], + [99.9924834003265, 6.205536229871427], + [99.67350362629472, 5.956366566270248], + [99.00000410340803, 5.845915088460174], + [97.42500521915215, 6.405200795356109] + ], + [ + [62.55002992491163, 19.952622905164304], + [62.32503008430379, 22.469443964829594], + [59.85003183761572, 24.12261698700445], + [58.50003279396768, 24.583819112323454], + [56.9250339097116, 24.89034854048822], + [56.333724328601164, 25.121690004958737] + ], + [ + [39.182756478507656, 21.481533475503085], + [39.37504634228762, 20.375041253465525], + [40.61254546563154, 18.251816319028308], + [41.62504474836763, 16.53419619825962], + [42.41254419049548, 14.801154224791475], + [42.918793831863695, 13.929303843271725], + [43.200043632623704, 13.054150695298716], + [43.31254355292762, 12.834868817846598], + [43.39691849315565, 12.615395567393307], + [43.818793194295495, 12.395734000022884], + [44.55004267627157, 12.12089689803949], + [45.450042038703714, 12.285833556268273], + [48.600039807215495, 13.163718917913684], + [55.350035025455725, 15.669513225155328], + [58.950032475183775, 17.39502263470061], + [62.55002992491163, 19.952622905164304], + [66.60002705585575, 19.952622905164304], + [70.2000245055838, 19.529070924351004], + [72.87590260996691, 19.076074257285313] + ], + [ + [13.358654772543531, 38.116121616583314], + [13.05006499115126, 38.38775473578434], + [12.60006530993536, 38.519865191519216], + [12.15006562871929, 38.38775473578434], + [10.348617229769246, 38.29952060596935], + [9.00006786020731, 38.38775473578434], + [8.10006849777534, 38.38775473578434], + [7.650068816559269, 38.651811712711236], + [6.187569852607282, 41.744358789482135], + [5.372530429989041, 43.29362778902916] + ], + [ + [9.867357245811377, 37.27681625347506], + [9.675067382031244, 37.58978657360316], + [9.00006786020731, 38.38775473578434] + ], + [ + [7.755438741914361, 36.90282046530186], + [7.875068657167304, 37.232354321556215], + [7.987568577471222, 37.94551049545976], + [8.10006849777534, 38.38775473578434] + ], + [ + [103.64609081207684, 1.338585852071589], + [103.50000091556822, 1.22928089599958], + [103.34065102845304, 1.299701188578837], + [102.68279723997185, 1.698782263242975], + [102.15000187192001, 2.030661890474562], + [101.25000250948804, 2.480311786858834], + [100.46250306736002, 3.266814816815753], + [99.4500037846241, 4.613591578862867], + [98.77500426280002, 5.286069860821101], + [97.42500521915215, 6.405200795356109], + [95.40000665367998, 8.190543417795567], + [93.14492825119876, 9.524411345019587], + [91.8000092039521, 10.410816505402636], + [90.00001047908799, 12.395734000022884], + [88.20001175422405, 13.49207993623881], + [83.70001494206386, 13.929255692764542], + [81.45001653598385, 13.273238157547667], + [80.2429873910547, 13.063853101883296], + [81.45001653598385, 11.294709319565555], + [82.12501605602009, 9.524411345019587], + [82.57501573723616, 7.744852765543044], + [82.35001589841599, 5.510023109330234], + [81.00001685476795, 4.613591578862867], + [78.30001876747187, 4.613591578862867], + [75.60002068017599, 6.852191098754417], + [73.80002195531185, 9.524411345019587], + [72.45002291166381, 13.492128176464178], + [72.22502307105597, 16.965102599435824], + [72.87590260996691, 19.076074257285313] + ], + [ + [79.87208765380373, 6.927036656836265], + [79.4250179705119, 5.957818681088611], + [78.30001876747187, 4.613591578862867] + ], + [ + [91.99482906593991, 21.42927456664907], + [91.8000092039521, 19.952622905164304], + [88.20001175422405, 13.49207993623881] + ], + [ + [66.60002705585575, 19.952622905164304], + [66.37502721524771, 20.375041253465525], + [66.60002705585575, 23.298598065875808], + [67.02854675228852, 24.889731701235718] + ], + [ + [101.25000250948804, 2.480311786858834], + [101.70000219070411, 2.367912558705314], + [102.22090182169396, 2.273260323566632] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "batam-rengit-cable-system-brcs", + "name": "Batam-Rengit Cable System (BRCS)", + "color": "#9f2f87", + "feature_id": "batam-rengit-cable-system-brcs-0", + "coordinates": [103.51644225290156, 1.2521600488194053] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [103.14775116510523, 1.677427721183818], + [103.34065102845304, 1.383978004154756], + [103.50000091556822, 1.27130835678102], + [103.66875079602411, 1.074774789350442], + [103.78125071632823, 1.01853421661562], + [103.9597205893024, 1.133473844374663] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "southeast-asia-japan-cable-sjc", + "name": "Southeast Asia Japan Cable (SJC)", + "color": "#6bbd44", + "feature_id": "southeast-asia-japan-cable-sjc-0", + "coordinates": [120.47234198896908, 20.16397503197578] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [116.67753158048177, 23.355006811273626], + [117.16874123250417, 22.884654113882362], + [118.34999039569615, 22.10511054810837], + [120.14998912056026, 20.16397503197578] + ], + [ + [115.19999262718417, 14.801154224791475], + [116.99999135204828, 14.14758350694865], + [118.79999007691222, 13.929303843271725], + [120.14998912056026, 14.14758350694865], + [120.62298878548287, 14.088232047424441] + ], + [ + [116.09999198961614, 18.251816319028308], + [115.19999262718417, 19.529070924351004], + [114.74999294596827, 20.375041253465525], + [114.2999932647522, 21.635297384859456], + [114.20292333351765, 22.222050419736746] + ], + [ + [103.64609081207684, 1.338585852071589], + [104.16846044202524, 1.237241545901043], + [104.28790035741284, 1.27175824565353], + [104.51270019816243, 1.468426767332062], + [104.96249987952004, 2.817450442654064], + [105.74999932164823, 3.828234303320954], + [107.0999983652961, 4.613591578862867], + [107.99999772772824, 5.174038327225986], + [108.6749972495522, 5.510071711803135], + [109.34999677137611, 5.957818681088611], + [111.82499501806419, 7.744889052551343], + [113.73750165524976, 9.96791518697421], + [114.74999294596827, 13.054150695298716], + [115.19999262718417, 14.801154224791475], + [116.09999198961614, 18.251816319028308], + [120.14998912056026, 20.16397503197578], + [121.04998848299223, 20.16397503197578], + [122.84998720785634, 20.585819096040467], + [125.99998497636832, 21.425997872385494], + [130.94998146974442, 23.298598065875808], + [132.74998019460836, 24.12261698700334], + [137.24997700676838, 27.364667993860166], + [138.82497589102448, 28.951554732193216], + [139.94997509406446, 30.901396088515583], + [140.39997477528036, 32.43331330641712], + [139.94997509406446, 33.93964008831958], + [140.11872497452052, 34.40502275071583], + [139.9548550906076, 34.97657002902224] + ], + [ + [114.57069307298596, 4.703623084487219], + [114.2999932647522, 5.061986954416028], + [111.82499501806419, 7.744889052551343] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "europe-india-gateway-eig", + "name": "Europe India Gateway (EIG)", + "color": "#a35e29", + "feature_id": "europe-india-gateway-eig-0", + "coordinates": [2.478913977711983, 37.79364288618456] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [29.700933195520264, 31.072270031660224], + [29.98130299690345, 30.562943259201205], + [30.375052717967577, 30.199000717300606], + [31.050052239791512, 29.833707764444142], + [31.725051761615447, 29.589433775533877], + [32.17505144283152, 29.344436236246537], + [32.65318110412005, 29.113614162980156] + ], + [ + [-5.624921779312757, 35.922435577344146], + [-5.347581975782816, 36.156019514134556] + ], + [ + [32.65318110412005, 29.113614162980156], + [33.455063036063336, 28.161052262220892], + [34.368799888759554, 27.364667993860166], + [35.268799251191524, 26.562513149236622], + [36.0000487331676, 25.754704263415306], + [37.01254801590258, 24.12261698700334], + [38.36254705955153, 22.05298561667763], + [39.15004650167958, 20.375041253465525], + [40.387545625023506, 18.251816319028308], + [41.40004490776067, 16.53419619825962], + [42.30004427019156, 14.801154224791475], + [42.80629391155958, 13.929303843271725], + [43.14379367247156, 13.054150695298716], + [43.284418572851564, 12.834868817846598], + [43.368793513079595, 12.615395567393307], + [43.76254323414352, 12.395734000022884], + [44.55004267627157, 12.06589527357022], + [45.450042038703714, 12.17588718550806], + [48.600039807215495, 13.054150695298716], + [55.350035025455725, 15.452760959322148], + [58.950032475183775, 17.180187287481402], + [62.32503008430379, 19.529070924351004], + [66.60002705585575, 19.74098736552503], + [70.2000245055838, 19.42300815558187], + [72.87590260996691, 19.076074257285313] + ], + [ + [32.65318110412005, 29.113614162980156], + [32.17505144283152, 29.295435552938898], + [31.725051761615447, 29.491558027403585], + [31.050052239791512, 29.73606949729205], + [30.375052717967577, 30.101720899554863], + [29.98130299690345, 30.514495959759188], + [29.700933195520264, 31.072270031660224], + [27.900054471279333, 32.052708023486105], + [25.20005638398345, 32.859581490460556], + [19.35006052817539, 33.565491482352144], + [16.65006244087931, 33.18971466460036], + [14.4000640347993, 33.565491482352144], + [12.318815509181547, 35.419780517080454], + [12.037565708415343, 35.78566189952613], + [11.925065788111255, 36.240655233214795], + [11.587566027199273, 37.232354321556215], + [10.912566505375338, 37.58978657360316], + [10.348617229769246, 37.94551049545976], + [9.00006786020731, 38.034173900641946], + [5.400070410479259, 38.12273010839229], + [2.250072641967279, 37.76786242517883], + [-2.249924170192742, 36.05897312258671], + [-4.499922576272752, 35.96797434759347], + [-5.624921779312757, 35.922435577344146], + [-6.299921301136777, 35.876870570092734], + [-8.999919388432772, 36.05897312258671], + [-9.899918750864742, 36.42191605012607], + [-11.249917794512783, 37.94551049545976], + [-13.499916200592793, 39.69832335493328], + [-13.499916200592793, 44.051519228735145], + [-9.449919069648843, 48.70423463096077], + [-7.649920344784732, 49.58728674004675], + [-6.074881460557094, 50.31116725161084], + [-4.544402544762761, 50.82820142743802] + ], + [ + [-11.249917794512783, 37.94551049545976], + [-10.349918432080813, 37.94551049545976], + [-9.33741914934481, 38.12273010839229], + [-9.102749315587062, 38.443079483141986] + ], + [ + [14.4000640347993, 33.565491482352144], + [13.50006467236733, 33.09551711711572], + [13.187364893886866, 32.87762290319543] + ], + [ + [7.426728974775415, 43.73825568793552], + [7.312569055647288, 43.40114497315386], + [7.425068975951234, 41.744358789482135], + [7.969108590548586, 39.423519823304105], + [8.325068338383204, 38.651811712711236], + [8.437568258687293, 38.38775473578434], + [9.00006786020731, 38.034173900641946] + ], + [ + [44.55004267627157, 12.06589527357022], + [43.6500433138396, 11.818224495851751], + [43.16164365982672, 11.573660387694133] + ], + [ + [38.36254705955153, 22.05298561667763], + [39.182756478507656, 21.481533475503085] + ], + [ + [56.333724328601164, 25.121690004958737], + [56.9250339097116, 24.66052224964892], + [58.00442314506233, 23.679602601493002], + [58.16253303305572, 23.96851099673472], + [58.72503263457574, 24.32780311165172], + [59.85003183761572, 24.01990020343348], + [62.10003024369573, 22.469443964829594], + [62.32503008430379, 19.529070924351004] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "asia-africa-europe-1-aae-1", + "name": "Asia Africa Europe-1 (AAE-1)", + "color": "#a1489b", + "feature_id": "asia-africa-europe-1-aae-1-0", + "coordinates": [50.64044131478545, 13.067852339045231] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [29.700933195520264, 31.072270031660224], + [29.98130299690345, 30.75649044225247], + [30.375052717967577, 30.587157843201965], + [31.050052239791512, 30.223305674181546], + [31.725051761615447, 29.979986367503585], + [32.17505144283152, 29.491296898779723], + [32.65318110412005, 29.113614162980156] + ], + [ + [107.0791983800311, 10.342138429682905], + [107.77499788712001, 9.85709470870242], + [108.6749972495522, 9.746236973759864], + [110.24999613380825, 9.96791518697421] + ], + [ + [94.39121736831603, 16.858032255708565], + [93.60000792881604, 16.749771315644608], + [92.250008885168, 14.801154224791475], + [90.90000984151996, 9.524411345019587], + [90.45001016030389, 5.061986954416028], + [90.00001047908799, 3.715978119297972] + ], + [ + [100.0661133481664, 6.613518860854185], + [100.35005314702076, 6.908035999527129], + [100.59971297015935, 7.075917959575207] + ], + [ + [19.35006052817539, 34.12610104005762], + [19.35006052817539, 37.67887792909195], + [18.95777080607718, 39.48474996079955], + [18.787560926655374, 40.04369219282995], + [18.675061006351456, 40.387320290775165], + [18.00006148452735, 40.89949091487156], + [16.86881228591494, 41.125709058522546] + ], + [ + [45.03354233375589, 12.800877546853712], + [45.450042038703714, 11.625479959569759] + ], + [ + [22.52515134925946, 33.66997206969839], + [22.95005797790344, 35.419780517080454], + [23.51255757942343, 35.78566189952613], + [23.737557420031465, 35.78566189952613], + [24.01216722549529, 35.51204255863749] + ], + [ + [103.50674091079347, 10.630401703210367], + [103.72500075617612, 9.524411345019587], + [103.72500075617612, 8.190543417795567], + [103.04883123518098, 7.228431783286396] + ], + [ + [97.42500521915215, 5.957818681088611], + [99.00000410340803, 6.069699469735895], + [100.0661133481664, 6.613518860854185], + [100.2376532266459, 6.908035999527129], + [100.59971297015935, 7.075917959575207], + [101.70000219070411, 7.242965106491965], + [103.04883123518098, 7.228431783286396], + [105.29999964043216, 7.298762754459602], + [107.99999772772824, 8.079175518240902], + [110.24999613380825, 9.96791518697421], + [111.59999517745612, 12.615395567393307], + [113.84999358353613, 18.251816319028308], + [113.84999358353613, 20.796306105108954], + [114.26024329291155, 22.208034251394366] + ], + [ + [58.60608271884112, 23.57608486453742], + [58.950032475183775, 23.608214441358456], + [59.85003183761572, 23.50508968095727] + ], + [ + [61.200030881263785, 17.39502263470061], + [60.97503104065572, 22.469443964829594], + [59.85003183761572, 23.50508968095727], + [59.04197976437254, 23.91203783447051], + [58.50003279396768, 24.19960051856532], + [56.9250339097116, 24.788256058863453], + [56.333724328601164, 25.121690004958737], + [56.9250339097116, 25.348717422116806], + [56.981283869863745, 26.159307970773796], + [56.81253398940768, 26.562513149236622], + [56.250034387887666, 26.663094151095322], + [55.800034706671596, 26.310674619140343], + [55.350035025455725, 26.159307970773796], + [53.550036300591586, 26.159307970773796], + [52.200037256943745, 25.95717997876443], + [51.51927773920005, 25.294608758024538] + ], + [ + [72.87590260996691, 19.076074257285313], + [71.7750233898399, 16.965102599435824] + ], + [ + [5.372530429989041, 43.29362778902916], + [6.300069772911229, 41.744358789482135], + [7.875068657167304, 38.651811712711236], + [8.212568418079258, 38.38775473578434], + [9.00006786020731, 38.12273010839229], + [10.348617229769246, 38.034173900641946], + [10.912566505375338, 37.67887792909195], + [11.70006594750339, 37.232354321556215], + [12.037565708415343, 36.240655233214795], + [12.375065469327325, 35.78566189952613], + [12.825065150547204, 35.419780517080454], + [14.4000640347993, 34.12610104005762], + [16.65006244087931, 33.75276987113051], + [19.35006052817539, 34.12610104005762], + [25.20005638398345, 33.283811019051], + [27.900054471279333, 32.33831157801282], + [29.700933195520264, 31.072270031660224], + [29.98130299690345, 30.70813999354155], + [30.375052717967577, 30.490263249963675], + [31.050052239791512, 30.126049846722907], + [31.725051761615447, 29.88249116219714], + [32.17505144283152, 29.491296898779723], + [32.65318110412005, 29.113614162980156], + [33.398913075842444, 28.161052262220892], + [33.97505016769546, 27.364667993860166], + [34.67817466959545, 26.562513149236622], + [35.21254929103955, 25.754704263415306], + [36.22504857377547, 24.12261698700334], + [37.57504761742351, 22.05298561667763], + [38.36254705955153, 20.375041253465525], + [39.600046182895454, 18.251816319028308], + [40.61254546563373, 16.53419619825962], + [41.90629454912761, 14.801154224791475], + [42.41254419049548, 13.929303843271725], + [42.94691881193958, 13.054150695298716], + [43.185981142585575, 12.834868817846598], + [43.270356082813606, 12.615395567393307], + [43.565668373611544, 12.395734000022884], + [44.55004267627157, 11.735650161405744], + [45.450042038703714, 11.625479959569759], + [48.600039807215495, 12.505588131780542], + [55.350035025455725, 14.365653759228536], + [58.950032475183775, 16.10232559580288], + [61.200030881263785, 17.39502263470061], + [66.60002705585575, 18.465364393137207], + [71.7750233898399, 16.965102599435824], + [71.55002354923184, 13.492128176464178], + [72.9000225928799, 9.524411345019587], + [74.70002131774382, 6.852191098754417], + [78.30001876747187, 4.164912849976844], + [79.65001781052402, 3.64113270007644], + [81.00001685476795, 3.266814816815753], + [85.50001366692797, 2.817450442654064], + [90.00001047908799, 3.715978119297972], + [92.7000085663839, 5.061986954416028], + [94.27500745064, 5.957818681088611], + [95.40000665367998, 6.293390948068463], + [97.42500521915215, 5.957818681088611], + [99.67500362523216, 5.733989114150035], + [100.37321313001817, 5.420859215720895] + ], + [ + [43.147993669496344, 11.594869371447714], + [43.6500433138396, 11.735552251813374], + [44.55004267627157, 11.735650161405744] + ], + [ + [39.182756478507656, 21.481533475503085], + [37.57504761742351, 22.05298561667763] + ], + [ + [67.02854675228852, 24.889731701235718], + [60.97503104065572, 22.469443964829594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pishgaman-oman-iran-poi-network", + "name": "Pishgaman Oman Iran (POI) Network", + "color": "#939597", + "feature_id": "pishgaman-oman-iran-poi-network-0", + "coordinates": [57.94912494279393, 24.691134419401862] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [57.79730329178804, 25.6813227078824], + [57.959313177018714, 25.190816399183404], + [57.93753319244769, 24.12261698700334], + [58.00442314506233, 23.679602601493002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pishgaman-oman-iran-poi-network", + "name": "Pishgaman Oman Iran (POI) Network", + "color": "#90499c", + "feature_id": "pishgaman-oman-iran-poi-network-1", + "coordinates": [59.02428730966156, 24.856138290059135] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [60.63284128306631, 25.295928769129716], + [60.300031518831815, 25.145210227401265], + [58.950032475183775, 24.8393128255928], + [58.050033112751606, 24.12261698700334], + [58.00442314506233, 23.679602601493002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "omranepeg-cable-system", + "name": "OMRAN/EPEG Cable System", + "color": "#3e67b1", + "feature_id": "omranepeg-cable-system-0", + "coordinates": [59.08830105766842, 24.773753100947744] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [56.257944538534105, 25.616974601949437], + [56.58753414879965, 25.348717422116806], + [57.32386175217832, 24.420846844473175], + [58.004427676309035, 23.679602315303896] + ], + [ + [56.24681173392068, 26.181306905191207], + [56.36253430819161, 26.41147606086841], + [56.58753414879965, 26.41147606086841], + [56.75628402925571, 26.159307970773796], + [56.57083494187961, 25.79084837431668], + [56.257944538534105, 25.616974601949437] + ], + [ + [57.79729891679102, 25.681326932340312], + [57.79729891679102, 25.190816964742595], + [57.32386175217832, 24.420846844473175] + ], + [ + [58.004427676309035, 23.679602315303896], + [58.10628307290375, 24.12261698700334], + [58.950032475183775, 24.73717827217618], + [60.300031518831815, 25.094280247013245], + [60.632843783064516, 25.295930181805318] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bay-of-bengal-gateway-bbg", + "name": "Bay of Bengal Gateway (BBG)", + "color": "#a4332b", + "feature_id": "bay-of-bengal-gateway-bbg-0", + "coordinates": [73.69286277757396, 9.015441354108674] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [79.88937764155523, 6.820776084597128], + [79.53751789081602, 5.957818681088611], + [78.30001876747187, 4.389285926050889] + ], + [ + [80.2429873910547, 13.063853101883296], + [81.45001653598385, 12.615395567393307], + [83.70001494206386, 12.17588718550806], + [89.10001111665602, 10.853089690745378], + [93.15000824759997, 9.296323017976874], + [95.40000665367998, 7.967776882259614], + [97.42500521915215, 7.131299528983504], + [99.67500362523216, 5.622041180883144], + [100.36299313785392, 5.35384659465538] + ], + [ + [72.00002323044774, 16.965102599435824], + [72.87590260996691, 19.076074257285313] + ], + [ + [97.42500521915215, 7.131299528983504], + [95.40000665367998, 6.405200795356109], + [94.27500745064, 6.181557032537114], + [92.7000085663839, 5.510071711803135], + [90.00001047908799, 4.613591578862867], + [85.50001366692797, 3.715978119297972], + [81.00001685476795, 3.491423322320486], + [79.65001781052402, 3.865649782481938], + [78.30001876747187, 4.389285926050889], + [75.15002099895989, 6.852191098754417], + [73.35002227409598, 9.524411345019587], + [72.00002323044774, 13.492128176464178], + [72.00002323044774, 16.965102599435824], + [66.82502689646378, 20.585819096040467], + [62.662529845215744, 23.917101290935022], + [59.85003183761572, 24.63495976683231], + [58.72503263457574, 24.941363171753835], + [56.9250339097116, 24.96686257111105], + [56.333724328601164, 25.121690004958737] + ], + [ + [58.72503263457574, 24.941363171753835], + [58.2187829932077, 23.917101290935022], + [58.2294229856702, 23.679602601493002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "jasuka", + "name": "JASUKA", + "color": "#32499f", + "feature_id": "jasuka-0", + "coordinates": [103.6785372835117, 1.1591045972119218] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [101.45000236780632, 0.533330507769705], + [101.25000250948804, 0.118588418888407], + [100.80000282827214, -0.556402272850676], + [100.36162313882446, -0.943868049760795], + [100.23750322675212, -0.556402272850676], + [99.00000410340803, 1.468426767332062], + [98.78662425456835, 1.747806214969586], + [98.66250434249608, 2.367912558705314], + [98.66250434249608, 3.266814816815753], + [98.67598433294691, 3.752031394331624] + ], + [ + [104.17500043739219, -2.580536704984041], + [104.84999995921609, -2.018492325403201], + [105.07499979982416, -1.849838648212568], + [105.36713267556544, -1.810228623655547], + [106.16308902901145, -2.00716932420525], + [107.43790812591797, -2.517708985005584], + [107.6628879665399, -2.767442755874555] + ], + [ + [101.44766236946415, 1.665522797277134], + [101.30635246956925, 2.143087178471944], + [101.1937525493361, 2.367912558705314], + [101.25000250948804, 2.817450442654064], + [101.43672237721412, 3.009291944776294] + ], + [ + [98.67598433294691, 3.752031394331624], + [99.00000410340803, 3.545571022727103], + [99.20820395591741, 3.380583027720917], + [99.4500037846241, 3.042156042425745], + [99.67500362523216, 2.367912558705314], + [99.8278335169662, 2.105123309418701], + [100.12500330644806, 2.367912558705314], + [101.25000250948804, 2.92980888035018], + [101.43672237721412, 3.009291944776294] + ], + [ + [106.83339855415792, -6.171588071824203], + [106.98749844499216, -5.945707155070551], + [107.12099835041957, -5.981154260263196], + [107.32499820590417, -5.273944363641391], + [107.66249796681612, -4.601453764837203], + [107.32599820519593, -3.029995968008762], + [107.30493637508945, -2.783713633979005], + [107.41104629497707, -2.628238536322556], + [107.6628879665399, -2.767442755874555], + [107.6628879665399, -2.517708985005584], + [107.7605478973567, -2.237970538313903], + [108.22499756833614, -1.231315750217505], + [108.89999709016004, -0.218910724747275], + [109.33554678161275, -0.027021392288191], + [108.89999709016004, 0.118588418888407], + [104.84999995921609, 0.68107206531252], + [104.40000027800002, 0.793562652607278], + [104.28750035769608, 0.906050180868988], + [104.17500043739219, 0.962292662396749], + [103.91621062072133, 1.055828078274914], + [103.90000063220455, 1.134723598626692], + [103.96260058785819, 1.134723598626692], + [103.88438064327008, 1.159128690702147], + [103.50000091556822, 1.159083699942101], + [103.34065102845304, 1.159233669139525], + [102.68279723997185, 1.473918781768162], + [102.15000187192001, 1.637114620371079], + [101.7281271707802, 1.693340822791811], + [101.44766236946415, 1.665522797277134], + [101.4790023472626, 1.01853421661562], + [101.45000236780632, 0.533330507769705], + [101.70000219070411, 0.118588418888407], + [103.05000123435215, -1.231315750217505], + [103.60996083767171, -1.589996170721179], + [103.72500075617612, -2.130918480960247], + [104.17500043739219, -2.580536704984041], + [104.51250019830414, -2.805287932308005], + [104.75732002487146, -2.990989901799765], + [104.62500011860826, -3.479268678969987], + [104.17500043739219, -4.377144375531941], + [103.83896067544592, -5.040324250228537], + [104.40000027800002, -5.161910662112973], + [104.84999995921609, -5.273944363641391], + [105.25409967294817, -5.409293894311929], + [105.3562496005841, -5.721872747834027], + [105.88026922936368, -5.868190997616892], + [106.4249988434722, -5.721872747834027], + [106.83339855415792, -6.171588071824203] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "indonesia-global-gateway-igg-system", + "name": "Indonesia Global Gateway (IGG) System", + "color": "#5a9f43", + "feature_id": "indonesia-global-gateway-igg-system-0", + "coordinates": [113.21202391911041, -5.13774471107746] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [116.83129147155691, -1.265389667587925], + [117.08124129449001, -1.402870227222166], + [117.85190631946367, -1.515333651974942] + ], + [ + [120.59998880177616, 1.918228780215685], + [118.79999007691222, 2.817450442654064], + [117.89999071448025, 3.154491498099929], + [117.67499087387225, 3.154491498099929], + [117.57851094221976, 3.327354396392252] + ], + [ + [117.44999103326418, -4.377144375531941], + [118.79999007691222, -4.937784304559415], + [119.41238964308272, -5.152180217334632] + ], + [ + [116.54999167083221, -5.273944363641391], + [116.54999167083221, -6.616650693475464], + [115.8749921490083, -8.17849027894485], + [115.8749921490083, -8.401139048122928], + [115.76249222870419, -8.512415748196815], + [115.59696234596723, -8.463932731980094] + ], + [ + [113.84999358353613, -5.273944363641391], + [113.39999390232023, -6.616650693475464], + [113.28349007860268, -6.902248768835818] + ], + [ + [103.96260058785819, 1.134723598626692], + [103.89883584657085, 1.191468968816821] + ], + [ + [103.64609081207684, 1.338585852071589], + [103.89883584657085, 1.191468968816821] + ], + [ + [107.21249828560005, -4.601453764837203], + [106.87499852468827, -5.273944363641391], + [106.83339855415792, -6.128964849210604] + ], + [ + [101.44766236946415, 1.665522797277134], + [101.7281271707802, 1.749465440761298], + [102.15000187192001, 1.749565394075489], + [102.68279723997185, 1.530149411894001], + [103.34065102845304, 1.215421560433896], + [103.50000091556822, 1.187252773694183], + [103.89883584657085, 1.191468968816821], + [104.13781046373808, 1.238391276726333], + [104.28790035741284, 1.173518198634099], + [104.62500011860826, 1.131014326431796], + [104.84999995921609, 1.01853421661562], + [105.29999964043216, 1.01853421661562], + [106.64999868408003, -0.331409329660175], + [107.03664841017385, -2.130918480960247], + [107.1530983276796, -3.029995968008762], + [107.21249828560005, -4.601453764837203], + [110.69999581502415, -4.601453764837203], + [113.84999358353613, -5.273944363641391], + [116.54999167083221, -5.273944363641391], + [117.44999103326418, -4.377144375531941], + [117.59999092700289, -2.730375485267956], + [117.85190631946367, -1.515333651974942], + [118.54128832686715, -0.810555324740847], + [119.47498959873613, 0.568578852526286], + [119.69998943934436, 1.01853421661562], + [120.59998880177616, 1.918228780215685], + [124.19998625150438, 1.918228780215685], + [124.83963579837055, 1.490779296094786] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "global-caribbean-network-gcn", + "name": "Global Caribbean Network (GCN)", + "color": "#5dba46", + "feature_id": "global-caribbean-network-gcn-0", + "coordinates": [-62.606044160666414, 16.788528736061778] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-64.81925984548829, 17.773909269375793], + [-64.57488001860925, 18.0914826524251], + [-64.12488033739326, 18.251816319028308], + [-63.449880815569244, 18.144943564296312], + [-63.050081098791026, 18.09287046633233], + [-62.99988113435326, 17.986414235906807], + [-62.833381252303354, 17.900059160559834] + ], + [ + [-63.050081098791026, 18.09287046633233], + [-63.46419080602789, 17.71178205639049], + [-63.46419080602789, 17.616496978706607], + [-63.28321093423578, 17.422853263294712], + [-62.943581174236684, 17.180187287481402], + [-61.874881931313254, 15.94013010690935], + [-61.71594204390779, 16.02893825919861], + [-61.60779212052215, 15.892797111330793], + [-61.52639217818664, 15.98876894276924], + [-61.55481215805365, 16.243008753257953] + ], + [ + [-64.81925984548829, 17.773909269375793], + [-65.30612950058533, 18.251816319028308], + [-65.53112934119326, 18.57203905256688], + [-65.69987922164925, 18.67864702215462], + [-65.86862910210533, 18.67864702215462], + [-66.10666893347562, 18.466104232947515] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "americas-ii", + "name": "Americas-II", + "color": "#398eb1", + "feature_id": "americas-ii-0", + "coordinates": [-46.8483424432562, 5.977059419270773] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-58.049884640977254, 13.054150695298716], + [-58.49988432219324, 12.615395567393307], + [-60.74988272827325, 11.735650161405744], + [-61.08738248918522, 11.294709319565555], + [-61.31238232979325, 10.853089690745378], + [-61.516682185065264, 10.649792459143697] + ], + [ + [-38.54296845985962, -3.718735129291019], + [-38.92489818929701, -1.231315750217505], + [-40.499897073553086, 1.468426767332062], + [-46.79989261057713, 5.957818681088611], + [-51.29988942273715, 7.744889052551343], + [-54.89988687246519, 9.96791518697421], + [-58.049884640977254, 13.054150695298716] + ], + [ + [-80.16016897784436, 26.01054866801087], + [-79.64986933934539, 26.2097854122473], + [-78.86236989721743, 26.964304734562802], + [-77.84987061448136, 27.56430948794184], + [-76.94987125204939, 27.56430948794184], + [-73.34987380232134, 26.159307970773796], + [-69.2998766713773, 24.12261698700334], + [-67.27487810590533, 22.05298561667763], + [-66.14987890286532, 20.375041253465525], + [-66.26237882316926, 19.104405475930548], + [-66.10666893347562, 18.466104232947515] + ], + [ + [-66.10666893347562, 18.466104232947515], + [-65.92482906229267, 18.67864702215462], + [-65.69987922164925, 18.731925895976644], + [-65.4748793810413, 18.57203905256688], + [-65.24987954043327, 18.251816319028308], + [-64.81662984735141, 17.773909269375793], + [-64.57488001860925, 17.931002277731153], + [-63.449880815569244, 17.180187287481402], + [-62.099881771921204, 15.94013010690935], + [-61.874881931313254, 15.831926792594288], + [-61.60779212052215, 15.73035531673716], + [-61.25613236964119, 15.669513225155328], + [-60.74988272827325, 15.23578178303569], + [-60.74988272827325, 15.018578573757566], + [-59.849883365841194, 14.365653759228536], + [-58.049884640977254, 13.054150695298716] + ], + [ + [-61.094172484375164, 14.615455776713844], + [-61.199882409489234, 14.801154224791475], + [-61.199882409489234, 14.9098938602896], + [-60.74988272827325, 15.018578573757566] + ], + [ + [-52.32092869942332, 4.941547448310331], + [-51.29988942273715, 7.744889052551343] + ], + [ + [-68.89264695986272, 12.090439618305055], + [-68.39987730894534, 11.845776373625682], + [-65.69987922164925, 11.294709319565555], + [-64.79987985921728, 12.17588718550806], + [-62.99988113435326, 13.054150695298716], + [-61.199882409489234, 13.492128176464178], + [-60.299883047057264, 13.929303843271725], + [-59.849883365841194, 14.365653759228536] + ], + [ + [-66.87829838684605, 10.606498174462416], + [-66.59987858408131, 10.853089690745378], + [-65.69987922164925, 11.294709319565555] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "jakarta-bangka-bintan-batam-singapore-b3js", + "name": "Jakarta-Bangka-Bintan-Batam-Singapore (B3JS)", + "color": "#1ebab0", + "feature_id": "jakarta-bangka-bintan-batam-singapore-b3js-0", + "coordinates": [105.62769083463289, -1.6485746097934282] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [106.82782855810385, -6.171876390816408], + [106.64999868408003, -5.273944363641391], + [106.64999868408003, -4.601453764837203], + [106.64999868408003, -3.479268678969987], + [106.54745875672049, -3.079924874677914], + [106.19999900286413, -2.580536704984041], + [105.74999932164823, -1.906058394384871], + [105.58270944015786, -1.55387979369155], + [105.41249956133217, -1.231315750217505], + [105.07499980042022, 0.118588418888407], + [104.84999995921609, 0.290337139338931], + [104.17500043739219, 0.398835084041281], + [103.66875079602411, 0.793562652607278], + [103.66875079602411, 1.01853421661562], + [103.87813064769747, 1.190951974272878], + [103.96260058785819, 1.134723598626692], + [103.97815057624663, 1.185378176915862], + [103.94648059927786, 1.327258925921086], + [104.0113305533375, 1.233727365552483], + [104.14960045538581, 1.184523360363414], + [104.34415031696889, 1.201587148227134], + [104.42580025912721, 1.136713206281769] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "seamewe-5", + "name": "SeaMeWe-5", + "color": "#c71f8e", + "feature_id": "seamewe-5-0", + "coordinates": [41.512335990126104, 16.5345504743064] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [38.10697724059963, 24.070648010417926], + [37.80004745803154, 24.01990020343257], + [37.34051417738746, 24.035381460187438], + [37.12504793620579, 24.12261698700334] + ], + [ + [43.008543768284085, 14.68565653336259], + [42.75004395140763, 14.692360031374477], + [42.5250441107996, 14.692360031374477], + [42.35629423034351, 14.801154224791475] + ], + [ + [101.25000250948804, 2.367912558705314], + [101.36255242975685, 2.143087178471944], + [101.44766236946415, 1.665522797277134] + ], + [ + [99.2250039440161, 4.613591578862867], + [98.67598433294691, 3.752031394331624] + ], + [ + [27.900054471279333, 32.43331330641712], + [28.8000538337115, 34.31215165223537], + [28.575053993103467, 36.14986678681771], + [28.46255407279935, 36.51238821239372], + [28.25357422084295, 36.85525019317086] + ], + [ + [16.65006244087931, 33.93964008831958], + [16.425062600271445, 34.68301765985788], + [16.20006275966341, 35.78566189952613], + [16.087562839359293, 36.87321951208918], + [15.75006307844734, 37.32187222983512], + [15.067443562021538, 37.51344748573402] + ], + [ + [94.39121736831603, 16.858032255708565], + [93.60000792881604, 16.965102599435824], + [91.8000092039521, 17.823934412537824] + ], + [ + [102.22090182169396, 2.273260323566632], + [102.15000187192001, 1.974446286104069] + ], + [ + [90.11661039648769, 21.820818029820288], + [90.90000984151996, 20.375041253465525], + [91.8000092039521, 17.823934412537824], + [91.8000092039521, 14.801154224791475], + [90.45001016030389, 9.524411345019587], + [90.22501031969605, 7.967776882259614], + [90.00001047908799, 7.298762754459602] + ], + [ + [67.02854675228852, 24.889731701235718], + [62.77502976551986, 22.469443964829594] + ], + [ + [65.75491565746177, 16.886337034233264], + [63.45836261477359, 20.880771168805865], + [62.77502976551986, 22.469443964829594], + [59.85003183761572, 24.327803111653537], + [58.50003279396768, 24.73717827217618], + [56.9250339097116, 24.941363171753835], + [56.333724328601164, 25.121690004958737] + ], + [ + [29.700933195520264, 31.072270031660224], + [29.98130299690345, 30.417485796339378], + [30.375052717967577, 29.90687391673123], + [31.050052239791512, 29.540507745394393], + [31.725051761615447, 29.295522763665588], + [32.17505144283152, 29.197363639715576], + [32.65318110412005, 29.113614162980156] + ], + [ + [5.930340034831232, 43.125291587015084], + [6.300069772911229, 42.74371346443661], + [6.525069613519264, 41.744358789482135], + [8.10006849777534, 38.651811712711236], + [8.325068338383204, 38.38775473578434], + [9.00006786020731, 38.21117903702327], + [10.348617229769246, 38.12273010839229], + [10.912566505375338, 37.76786242517883], + [11.812565867807308, 37.232354321556215], + [12.15006562871929, 36.240655233214795], + [12.487565389631243, 35.78566189952613], + [12.993815031002384, 35.419780517080454], + [14.4000640347993, 34.31215165223537], + [16.65006244087931, 33.93964008831958], + [19.35006052817539, 34.31215165223537], + [25.20005638398345, 33.42476549736131], + [27.900054471279333, 32.43331330641712], + [29.700933195520264, 31.072270031660224], + [29.98130299690345, 30.466024503890736], + [30.375052717967577, 30.00434523699687], + [31.050052239791512, 29.63833609362638], + [31.725051761615447, 29.393587625053613], + [32.17505144283152, 29.246411345890152], + [32.65318110412005, 29.113614162980156], + [33.46910052611801, 28.161052262220892], + [34.42504984891153, 27.364667993860166], + [35.353174191419555, 26.562513149236622], + [36.11254865347152, 25.754704263415306], + [37.12504793620579, 24.12261698700334], + [38.47504697985545, 22.05298561667763], + [39.2625464219835, 20.375041253465525], + [40.50004554532762, 18.251816319028308], + [41.51254482806351, 16.53419619825962], + [42.35629423034351, 14.801154224791475], + [42.86254387171155, 13.929303843271725], + [43.17191865254762, 13.054150695298716], + [43.29848106288949, 12.834868817846598], + [43.382856003117524, 12.615395567393307], + [43.537543393535486, 12.395734000022884], + [44.55004267627157, 11.680570534838523], + [45.450042038703714, 11.515266158038685], + [48.600039807215495, 12.395734000022884], + [55.350035025455725, 14.14758350694865], + [58.950032475183775, 15.886035719079104], + [65.75491565746177, 16.886337034233264], + [70.25491246962179, 13.412055032890692], + [71.71468744134648, 9.280734132427938], + [73.5146861662106, 6.606897166243414], + [76.95001972382383, 5.510071711803135], + [79.65001781111991, 5.510071711803135], + [80.53985718074958, 5.940820740520053] + ], + [ + [80.53985718074958, 5.940820740520053], + [81.00001685476795, 5.510071711803135], + [82.80001557963189, 5.510071711803135], + [85.50001366692797, 6.405200795356109], + [90.00001047908799, 7.298762754459602], + [92.7000085663839, 6.852191098754417], + [94.27500745064, 6.852191098754417], + [95.40000665367998, 6.740481724921096], + [97.42500521915215, 6.237476972533045], + [98.55000442219213, 5.286069860821101], + [99.2250039440161, 4.613591578862867], + [100.35000314705607, 3.266814816815753], + [101.25000250948804, 2.367912558705314], + [102.15000187192001, 1.974446286104069], + [102.68279723997185, 1.670619462234868], + [103.34065102845304, 1.271608282704705], + [103.50000091556822, 1.21527159428436], + [103.64609081207684, 1.338585852071589] + ], + [ + [43.16164365982672, 11.573660387694133], + [43.6500433138396, 11.707989320553992], + [44.55004267627157, 11.680570534838523] + ], + [ + [58.591142729424746, 23.61510487139472], + [58.950032475183775, 23.865671119262572], + [59.85003183761572, 24.327803111653537] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "italy-malta", + "name": "Italy-Malta", + "color": "#a7732a", + "feature_id": "italy-malta-0", + "coordinates": [15.732272649578704, 36.53052862520212] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [15.067443562021538, 37.51344748573402], + [15.75006307844734, 37.232354321556215], + [15.918812958903402, 36.87321951208918], + [15.525063237839305, 36.14986678681771], + [15.075063556623405, 35.922435577344146], + [14.488053972466645, 35.89189979559495] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "epic-malta-sicily-cable-system-emscs", + "name": "Epic Malta-Sicily Cable System (EMSCS)", + "color": "#48b648", + "feature_id": "epic-malta-sicily-cable-system-emscs-0", + "coordinates": [15.538157320636543, 36.53259125431131] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [15.067443562021538, 37.51344748573402], + [15.637563158143394, 37.232354321556215], + [15.75006307844734, 36.87321951208918], + [15.30006339723144, 36.14986678681771], + [15.075063556623405, 36.01348686719726], + [14.380044048981688, 35.93406361398968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "hannibal-system", + "name": "HANNIBAL System", + "color": "#5ab946", + "feature_id": "hannibal-system-0", + "coordinates": [11.869247045735108, 37.15682288531826] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [11.090886379051994, 36.849936993962615], + [11.427366140686559, 36.849310578248605], + [12.173015612461455, 37.36822050784963], + [12.591375316091586, 37.650586172786205] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "didon", + "name": "Didon", + "color": "#37b44d", + "feature_id": "didon-0", + "coordinates": [11.846552497834153, 37.230660817970914] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [11.090886379051994, 36.849936993962615], + [11.427366140686559, 36.939295480359135], + [12.173015612461455, 37.45757668483847], + [12.591375316091586, 37.650586172786205] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "mednautilus-submarine-system", + "name": "MedNautilus Submarine System", + "color": "#53b847", + "feature_id": "mednautilus-submarine-system-0", + "coordinates": [25.330560551349066, 34.647603030235956] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [28.9882337004031, 41.04061756347724], + [28.283554199604737, 40.74451752713381], + [27.67066463378157, 40.571463184887904], + [27.20435496411966, 40.51728976261825], + [26.755425282145524, 40.45564648003207], + [26.644005361076495, 40.375490343336395], + [26.592925397262036, 40.31736166816421], + [26.516555451363246, 40.27677072796641], + [26.447805500066295, 40.22370340243219], + [26.37222555360802, 40.19439284484727], + [26.376225550774166, 40.146787754907734], + [26.344195573464617, 40.10459536589312], + [26.246055642987784, 40.055649089877534], + [25.31255630428737, 39.524987333511575], + [25.31255630428737, 38.651811712711236], + [25.65005606519935, 37.41128363492314], + [25.20005638398345, 37.232354321556215], + [24.637556782463435, 37.27712658287683], + [24.075057180943446, 37.232354321556215], + [23.85005734033541, 37.58978657360316], + [23.73618742100203, 37.9760779757319] + ], + [ + [25.875055905807386, 36.60275474032986], + [25.425056224591486, 36.60275474032986], + [24.975056543375416, 36.33133835588808], + [24.525056862159346, 36.33133835588808], + [24.075057180943446, 36.51238821239372], + [23.737557420031465, 37.58978657360316], + [23.73618742100203, 37.9760779757319] + ], + [ + [28.9882337004031, 41.04061756347724], + [28.305814183835423, 40.72743084616869], + [27.6788646279727, 40.552318658169696], + [27.18003498134803, 40.49568113006444], + [26.75493528249268, 40.43735937424697], + [26.677105337628177, 40.37980969563341], + [26.60562538826511, 40.30783009842784], + [26.53169544063789, 40.26268557434719], + [26.48169547605832, 40.221389871891915], + [26.38862554198991, 40.191704009093456], + [26.390775540466933, 40.132453843941306], + [26.348195570630935, 40.08674097664061], + [26.260015633098476, 40.04234480534558], + [26.098195747733115, 39.97772318814779], + [25.425056224591486, 39.524987333511575], + [25.425056224591486, 38.651811712711236], + [25.875055905807386, 37.41128363492314], + [26.21255566671934, 37.232354321556215], + [26.325055587023456, 36.87321951208918], + [25.875055905807386, 36.60275474032986], + [26.10005574641542, 35.78566189952613] + ], + [ + [34.20005000830349, 33.09551711711572], + [33.75005032708759, 33.565491482352144], + [33.75005032708759, 34.49779087043359], + [33.61060042587516, 34.82728147271527] + ], + [ + [24.01216722549529, 35.51204255863749], + [23.96255726063933, 35.78566189952613], + [23.85005734033541, 36.51238821239372], + [23.625057499727376, 37.58978657360316], + [23.73618742100203, 37.9760779757319] + ], + [ + [15.067443562021538, 37.51344748573402], + [15.75006307844734, 37.500588446053314], + [18.00006148452735, 36.51238821239372], + [19.342345691678787, 35.967658196632755], + [25.20005638398345, 34.68301765985788], + [31.050052239791512, 33.09551711711572], + [33.75005032708759, 32.33831157801282], + [34.769679604772676, 32.04501185826473], + [34.65004968951936, 32.24321001626265], + [34.76254960982348, 32.62301664000799], + [34.99877944247609, 32.811579184632706] + ], + [ + [34.99877944247609, 32.811579184632706], + [34.20005000830349, 33.09551711711572], + [31.050052239791512, 33.565491482352144], + [28.8000538337115, 34.31215165223537], + [27.225054949455426, 35.05222991093683], + [26.55005542763149, 35.419780517080454], + [26.10005574641542, 35.78566189952613], + [24.01216722549529, 35.51204255863749], + [23.737557420031465, 35.83127933955626], + [22.95005797790344, 35.96797434759347], + [18.00006148452735, 36.87321951208918], + [15.75006307844734, 37.58978657360316], + [15.067443562021538, 37.51344748573402] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "esat-1", + "name": "ESAT-1", + "color": "#df7a26", + "feature_id": "esat-1-0", + "coordinates": [-5.974654339392941, 51.209583310293795] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-6.585031099162222, 52.17164795778544], + [-6.074921460528742, 51.586833980054195], + [-5.849921619920792, 50.740281893948264], + [-5.698751727010944, 50.07615899686118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "channel-islands-9-liberty-submarine-cable", + "name": "Channel Islands-9 Liberty Submarine Cable", + "color": "#3a499e", + "feature_id": "channel-islands-9-liberty-submarine-cable-0", + "coordinates": [-2.8686519662639682, 50.119156425037886] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-3.610863206090812, 50.31911737342912], + [-3.149923532624712, 50.23926850952162], + [-2.81242377171273, 50.09514516168238], + [-2.474924010800777, 49.58728674004675], + [-2.53337396939429, 49.503391023483346] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "circe-south", + "name": "Circe South", + "color": "#cb218e", + "feature_id": "circe-south-0", + "coordinates": [0.9178745154388253, 50.47986575279057] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [0.366673976184586, 50.81931962098224], + [0.450073917103168, 50.740281893948264], + [1.350073279535309, 50.23926850952162], + [1.493433177977636, 50.17917387330175] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "uk-channel-islands-7", + "name": "UK-Channel Islands-7", + "color": "#923e97", + "feature_id": "uk-channel-islands-7-0", + "coordinates": [-2.756140759980269, 50.191231418220184] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-2.53337396939429, 49.503391023483346], + [-2.418674050648718, 49.58728674004675], + [-2.699923851408727, 50.16726116292705], + [-3.03742361232068, 50.31116725161084], + [-3.578393229092768, 50.35174683018397] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pan-european-crossing-uk-belgium", + "name": "Pan European Crossing (UK-Belgium)", + "color": "#60b446", + "feature_id": "pan-european-crossing-uk-belgium-0", + "coordinates": [2.2013985551098756, 51.30637567738265] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [1.440993215126866, 51.35857144425913], + [1.800072960751208, 51.30637567738265], + [2.475072482575314, 51.30637567738265], + [2.96189213770765, 51.24665953842634] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "concerto", + "name": "Concerto", + "color": "#33c0cc", + "feature_id": "concerto-0", + "coordinates": [3.9684503358368772, 52.14682788318984] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [1.620283088116054, 52.20721112411934], + [1.617138202068077, 52.19545715213883], + [1.613253093096262, 52.180932313611464], + [2.025072801359244, 52.14259270367222], + [3.150072004399249, 51.586833980054195], + [3.206911964133269, 51.33094395542096], + [3.262571924703167, 51.586833980054195], + [4.050071366831219, 52.2115802243913], + [4.527221028814097, 52.37070658109482], + [3.825071526223184, 52.29575305025401], + [3.375071845007284, 52.219238900455935], + [2.025072801359244, 52.2115802243913], + [1.620283088116054, 52.20721112411934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "farland-north", + "name": "Farland North", + "color": "#52bb77", + "feature_id": "farland-north-0", + "coordinates": [2.5254728496129815, 51.77218715330889] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [1.590603109141597, 52.157840488057786], + [2.025072801359244, 52.00429650272403], + [2.925072163791214, 51.586833980054195], + [3.496161759226112, 51.56395094476625] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "circe-north", + "name": "Circe North", + "color": "#3cb54e", + "feature_id": "circe-north-0", + "coordinates": [3.1268354377585013, 52.4179012603154] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [1.729273010906667, 52.46882263773057], + [2.250072641967279, 52.4179012603154], + [3.825071526223184, 52.4179012603154], + [4.524191030960452, 52.3636663818082] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "e-llan", + "name": "E-LLAN", + "color": "#44b549", + "feature_id": "e-llan-0", + "coordinates": [-3.7714668107178966, 53.95209894866878] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-4.480882589760824, 54.15047817510964], + [-4.274922735664717, 54.100057482410676], + [-3.599923213840782, 53.901684726074365], + [-3.050753602877677, 53.80897597127557] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "lanis-3", + "name": "Lanis-3", + "color": "#2d8cb2", + "feature_id": "lanis-3-0", + "coordinates": [-5.219973632599675, 55.20510575766687] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-4.659932462920153, 55.54133175647158], + [-4.949922257488737, 55.462350188098384], + [-5.624921779312757, 54.81936191424907], + [-5.71872171286401, 54.75370176047079] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "scotland-northern-ireland-2", + "name": "Scotland-Northern Ireland 2", + "color": "#48b648", + "feature_id": "scotland-northern-ireland-2-0", + "coordinates": [-5.362699194716868, 55.125840868454134] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [-4.854172325318928, 55.240403607445785], + [-5.174922098096772, 55.20639768894037], + [-5.624921779312757, 55.0133467567922], + [-5.809831648320881, 54.85780200253134] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "finland-estonia-connection-fec", + "name": "Finland Estonia Connection (FEC)", + "color": "#57a344", + "feature_id": "finland-estonia-connection-fec-0", + "coordinates": [24.758527110884444, 59.437734752712885] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [24.93247657353959, 60.171163188940454], + [24.975056543375416, 60.07486799642308], + [24.975056543375416, 59.962431634152296], + [24.86255662307147, 59.6796637072089], + [24.752496701038922, 59.42371055209489], + [24.975056543375416, 59.6796637072089], + [25.087556463679334, 59.962431634152296], + [25.03130650352736, 60.07486799642308], + [24.93247657353959, 60.171163188940454] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "finland-estonia-3-eesf-3", + "name": "Finland-Estonia 3 (EESF-3)", + "color": "#41b769", + "feature_id": "finland-estonia-3-eesf-3-0", + "coordinates": [24.568446825338384, 59.81027316027874] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [24.276617038156644, 59.40095452286678], + [24.4125569418554, 59.6796637072089], + [24.75005670276738, 59.962431634152296], + [24.93247657353959, 60.171163188940454] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "bcs-east", + "name": "BCS East", + "color": "#bc6f29", + "feature_id": "bcs-east-0", + "coordinates": [20.81255949212735, 56.24404101569351] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [21.011189351416164, 56.508369140884156], + [20.81255949212735, 56.407518054313044], + [20.81255949212735, 56.15772578558838], + [21.082679300772185, 56.02850685047366] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "batam-dumai-melaka-bdm-cable-system", + "name": "Batam Dumai Melaka (BDM) Cable System", + "color": "#3cbba0", + "feature_id": "batam-dumai-melaka-bdm-cable-system-0", + "coordinates": [102.7178772742557, 1.4852525616055914] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [101.44766236946415, 1.665522797277134], + [101.7281271707802, 1.777527123428371], + [101.92500203131218, 1.918228780215685], + [102.22090182169396, 2.273260323566632] + ], + [ + [103.96260058785819, 1.134723598626692], + [103.50000091556822, 1.173168272269322], + [103.34065102845304, 1.187327757538839], + [102.68279723997185, 1.502034277710749], + [102.15000187192001, 1.693340822791811], + [101.7281271707802, 1.72140333830734], + [101.44766236946415, 1.665522797277134] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "pgascom", + "name": "PGASCOM", + "color": "#7c9e3e", + "feature_id": "pgascom-0", + "coordinates": [103.84975898407251, 0.22416442959573146] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [103.70596076966436, 1.259306292565526], + [103.86557565659174, 1.185378176915862], + [103.96260058785819, 1.134723598626692] + ], + [ + [103.46670093915824, -0.816543192375462], + [103.89375063663218, -0.331409329660175], + [103.89375063663218, 0.118588418888407], + [103.61250083587217, 0.793562652607278], + [103.61250083587217, 1.01853421661562], + [103.96260058785819, 1.134723598626692] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "boracay-palawan-submarine-cable-system", + "name": "Boracay-Palawan Submarine Cable System", + "color": "#2b51a3", + "feature_id": "boracay-palawan-submarine-cable-system-0", + "coordinates": [120.40542620577972, 11.407132406675657] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [120.20076908458739, 12.005434247136094], + [120.37498896116833, 11.845776373625682], + [120.59998880177616, 11.735650161405744] + ], + [ + [119.50037958074992, 10.820000490489491], + [120.14998912056026, 10.975828448783346], + [120.59998880177616, 11.735650161405744], + [120.8249886423844, 12.17588718550806], + [121.0501884828507, 12.363012914770593] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "saudi-arabia-sudan-1-sas-1", + "name": "Saudi Arabia-Sudan-1 (SAS-1)", + "color": "#68bc45", + "feature_id": "saudi-arabia-sudan-1-sas-1-0", + "coordinates": [38.09967158986893, 20.655540276436398] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [37.21967786917094, 19.615566594546237], + [37.61964256914817, 20.05036463062541], + [38.100047245508904, 20.656013867895894], + [39.182756478507656, 21.481533475503085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "falcon", + "name": "FALCON", + "color": "#c62026", + "feature_id": "falcon-0", + "coordinates": [57.733362268838334, 24.28913244872743] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [43.008543768284085, 14.68565653336259], + [42.75004395140763, 14.583511645118676], + [42.5250441107996, 14.583511645118676], + [42.13129438973547, 14.801154224791475] + ], + [ + [48.531779855571585, 29.92363278689706], + [48.71253972751961, 29.540507745394393], + [48.600039807215495, 29.1482487910327] + ], + [ + [48.531779855571585, 29.92363278689706], + [48.600039807215495, 29.540507745394393], + [48.48753988691158, 29.246454972180487] + ], + [ + [60.6273712869413, 25.25866457904604], + [59.85003183761572, 24.430271928050416] + ], + [ + [52.18245726939753, 16.21300386243118], + [52.650036938159616, 15.669513225155328], + [52.650036938159616, 15.23578178303569] + ], + [ + [75.15002099895989, 6.628746603597904], + [79.20001812990384, 6.628746603597904], + [79.87208765380373, 6.927036656836265] + ], + [ + [76.97022970950692, 8.798160747261278], + [76.50002004260776, 8.190543417795567], + [75.15002099895989, 6.628746603597904], + [74.25002163652775, 5.398081130463737], + [73.50002216783449, 4.166668198861885] + ], + [ + [72.87590260996691, 19.076074257285313], + [70.2000245055838, 19.74098736552503], + [66.60002705585575, 20.375041253465525], + [63.0000296061277, 22.469443964829594], + [59.85003183761572, 24.430271928050416], + [58.38753287366376, 23.917101290935022], + [58.17620302337187, 23.684877531684634], + [57.881283232295715, 24.12261698700334], + [57.26253367062375, 25.348717422116806], + [57.09378379016769, 26.159307970773796], + [56.9250339097116, 26.562513149236622], + [56.74300403866354, 26.973181618689154], + [56.27415437080103, 27.187252945938212], + [56.250034387887666, 26.713351447732805], + [55.800034706671596, 26.361086325391653], + [55.350035025455725, 26.26024097157773], + [53.550036300591586, 26.26024097157773], + [52.87503677876768, 26.562513149236622], + [52.200037256943745, 26.964304734562802], + [51.52503773511961, 27.364667993860166], + [49.16253940873568, 28.65581241773313], + [48.600039807215495, 29.1482487910327], + [48.48753988691158, 29.246454972180487], + [47.97484025011303, 29.37410420420028], + [48.600039807215495, 28.853067255226364], + [49.16253940873568, 28.458185766004647], + [50.28753861177569, 26.964304734562802], + [50.17503869147157, 26.461843796189072], + [50.21419866373054, 26.285375359318067], + [50.34378857192766, 26.461843796189072], + [50.51253845238372, 26.461843796189072], + [50.576018407413954, 26.22949483839116], + [51.18753797420766, 26.461843796189072], + [51.63753765542373, 26.361086325391653], + [51.86253749603159, 26.058287560298936], + [51.51927773920005, 25.294608758024538], + [52.200037256943745, 25.754704263415306], + [53.550036300591586, 25.8559854660721], + [55.12503518484766, 25.8559854660721], + [55.12503518484766, 25.55188275942578], + [55.308535054854815, 25.26935399813027], + [55.237585105116494, 25.55188275942578], + [55.350035025455725, 25.8559854660721], + [55.800034706671596, 26.159307970773796], + [56.24681439016874, 26.18130536278207], + [56.36253430819161, 26.461843796189072], + [56.58753414879965, 26.461843796189072], + [56.81253398940768, 26.159307970773796], + [57.150033750319835, 25.348717422116806], + [57.82503327214377, 24.12261698700334], + [58.17620302337187, 23.684877531684634], + [58.50003279396768, 23.814220515025227], + [58.950032475183775, 23.659746441192254], + [59.85003183761572, 23.19523175611701], + [60.300031518831815, 22.469443964829594], + [60.300031518831815, 19.104405475930548], + [58.950032475183775, 17.823934412537824], + [55.350035025455725, 16.10232559580288], + [52.650036938159616, 15.23578178303569], + [48.600039807215495, 13.382708036125592], + [45.450042038703714, 12.505588131780542], + [44.55004267627157, 12.230866087669114], + [43.67816829391566, 12.395734000022884], + [43.32660604296558, 12.615395567393307], + [43.24223110273755, 12.834868817846598], + [43.05941873224353, 13.054150695298716], + [42.637544031103516, 13.929303843271725], + [42.13129438973547, 14.801154224791475], + [41.06254514684872, 16.53419619825962], + [40.05004586411155, 18.251816319028308], + [38.8125467407676, 20.375041253465525], + [38.02504729863958, 22.05298561667763], + [36.67504825499063, 24.12261698700334], + [35.66254897225545, 25.754704263415306], + [35.0156744305074, 26.562513149236622], + [34.20005000830349, 27.364667993860166], + [33.49725050617553, 28.161052262220892], + [32.99067586503543, 28.951554732193216], + [32.70942606427545, 29.34456698948989], + [32.54067268382204, 29.63833609362638], + [32.540681183815934, 29.974234637029554] + ], + [ + [39.182756478507656, 21.481533475503085], + [38.8125467407676, 20.375041253465525], + [37.79284668516374, 19.94585421276065], + [37.21967786917094, 19.615566594546237] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "seamewe-3", + "name": "SeaMeWe-3", + "color": "#6fbc44", + "feature_id": "seamewe-3-0", + "coordinates": [77.21674263266132, 5.8076551739758315] + }, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [106.83339855415792, -6.128964849210604], + [106.31249892316825, -5.385957847172989] + ], + [ + [32.542821182299974, 29.95909144105582], + [32.287551363135435, 30.36900921360788], + [31.950051602223482, 30.68393417557087], + [31.387552000703465, 30.901353185916747], + [30.825052399183477, 31.046082721692102], + [29.893513059094772, 31.191465077638554], + [28.8000538337115, 32.717717936758305], + [25.20005638398345, 34.12610104005762], + [19.35006052817539, 35.23621340052833], + [16.65006244087931, 34.867831005273246], + [14.4000640347993, 35.23621340052833], + [13.33131479191124, 35.96797434759347], + [12.712565230239278, 36.87321951208918], + [12.60006530993536, 37.232354321556215], + [12.591375316091586, 37.650586172786205], + [11.70006594750339, 37.67887792909195], + [10.348617229769246, 37.85673997565843], + [9.00006786020731, 37.94551049545976], + [5.400070410479259, 37.94551049545976], + [2.250072641967279, 37.58978657360316], + [-2.249924170192742, 35.96797434759347], + [-4.499922576272752, 35.876870570092734], + [-5.624921779312757, 35.967933880341064], + [-6.299921301136777, 36.05897312258671], + [-8.999919388432772, 36.240655233214795], + [-9.449919069648843, 36.69301553274448], + [-9.449919069648843, 37.232354321556215], + [-9.112419308736776, 38.12273010839229], + [-9.102749315587062, 38.443079483141986] + ], + [ + [114.74999294596827, 21.21639789994191], + [114.41249318505615, 21.635297384859456], + [114.183973346942, 22.24961578335288] + ], + [ + [100.0661133481664, 6.613518860854185], + [99.00000410340803, 6.181557032537114], + [97.42500521915215, 6.069699469735895] + ], + [ + [125.99998497636832, 29.540507745394393], + [125.54998529515225, 30.126049846722907], + [124.64998593272028, 30.70813999354155], + [122.84998720785634, 31.094262827639596], + [122.17498768603221, 31.238656526340208], + [121.47258699999978, 31.247573900928387] + ], + [ + [-9.102749315587062, 38.443079483141986], + [-10.799918113296798, 38.82731109526628], + [-11.699917475728853, 39.69832335493328], + [-11.699917475728853, 43.40114497315386], + [-8.099920026000802, 46.89076287862241], + [-5.849921619920792, 47.72979657245895], + [-4.338542690595716, 47.81102015174923], + [-5.174922098096772, 47.95631365986799], + [-5.399921938704722, 48.40638249553794], + [-4.949922257488737, 49.441203723128126], + [-5.17297209947813, 50.02254139117184], + [-4.499922576272752, 49.950586997728095], + [-3.599923213840782, 50.02292045625484], + [-2.249924170192742, 50.16726116292705], + [0.000074235887269, 50.31116725161084], + [0.900073598319238, 50.669033691984], + [1.348973280314624, 50.981023970649176], + [1.800072960751208, 51.09490046148102], + [2.475072482575314, 51.165500079092226], + [2.912772172504702, 51.231220564626796] + ], + [ + [58.591142729424746, 23.61510487139472], + [58.950032475183775, 23.762749511610537], + [59.85003183761572, 23.608214441359365] + ], + [ + [32.46665123625965, 34.76657169708608], + [31.500051920411693, 34.34312011914997], + [28.8000538337115, 32.717717936758305], + [29.025053674319537, 34.31215165223537], + [28.687553913407385, 36.14986678681771], + [28.575053993103467, 36.51238821239372], + [28.25357422084295, 36.85525019317086] + ], + [ + [-5.391811944449927, 35.565918934421404], + [-4.724922416880787, 35.694348446523605], + [-4.499922576272752, 35.876870570092734] + ], + [ + [22.963293328466392, 34.552312183911084], + [23.175057818511476, 35.419780517080454], + [23.51255757942343, 35.74001826386845], + [23.737557420031465, 35.74001826386845], + [24.01216722549529, 35.51204255863749] + ], + [ + [56.333724328601164, 25.121690004958737], + [56.9250339097116, 24.81378707171703], + [58.50003279396768, 24.276537592931618], + [59.85003183761572, 23.608214441359365], + [61.200030881263785, 22.469443964829594], + [61.42503072187162, 17.823934412537824] + ], + [ + [121.02775554672925, 21.457551614722092], + [120.71248872208028, 21.635297384859456], + [120.59998880177616, 22.05298561667763], + [120.66219875770614, 22.249254821356544] + ], + [ + [113.56112378817429, 22.156493825893108], + [113.6249937429283, 21.84429407917378], + [113.84999358353613, 21.635297384859456], + [114.74999294596827, 21.21639789994191], + [115.19999262718417, 20.796306105108954], + [116.3249918302242, 20.16397503197578], + [116.99999135204828, 19.952622905164304] + ], + [ + [115.85731216153286, -31.95344133032441], + [113.84999358353613, -31.276331888746853], + [112.49999453988826, -30.309953344646914], + [110.24999613380825, -27.153831285391675], + [107.99999772713235, -20.433922197637315], + [104.40000027800002, -11.943944931746927], + [104.40000027800002, -7.509810688339655], + [104.62500011860826, -6.616650693475464], + [105.29999964043216, -5.945707155070551], + [105.74999932164823, -5.889756955647925], + [106.31249892316825, -5.385957847172989], + [106.64999868408003, -5.161910662112973], + [106.98749844499216, -4.601453764837203], + [107.04374840514416, -3.029995968008762], + [106.93024848554879, -2.130918480960247], + [106.08749908256002, -0.781386636225506], + [105.41249956073611, 0.118588418888407], + [104.84999995921609, 0.456083447840484], + [104.17500043739219, 0.570578752286423], + [103.55625087572, 0.793562652607278], + [103.55625087572, 1.01853421661562], + [103.64609081207684, 1.338585852071589], + [103.50000091556822, 1.201262219903469], + [103.34065102845304, 1.243515071072778], + [102.68279723997185, 1.642556216317956], + [102.15000187192001, 1.918228780215685], + [101.25000250948804, 2.255504211923693], + [100.23750322675212, 3.266814816815753], + [99.00000410340803, 4.613591578862867], + [98.32500458158412, 5.286069860821101], + [97.42500521915215, 6.069699469735895], + [95.40000665367998, 6.516986153883067], + [94.27500745064, 6.405200795356109], + [92.7000085663839, 5.957818681088611], + [90.00001047908799, 5.510071711803135], + [85.50001366692797, 4.613591578862867], + [81.00001685476795, 4.164912849976844], + [78.30001876747187, 4.837826391986653], + [76.05002036139186, 6.852191098754417], + [74.25002163652775, 9.524411345019587], + [72.9000225928799, 13.492128176464178], + [72.45002291166381, 16.965102599435824], + [72.87590260996691, 19.076074257285313], + [70.2000245055838, 18.998067525949068], + [66.60002705585575, 18.89166158430325], + [61.42503072187162, 17.823934412537824], + [58.950032475183775, 16.31838002635962], + [55.350035025455725, 14.583511645118676], + [48.600039807215495, 12.615395567393307], + [45.450042038703714, 11.735650161405744], + [44.55004267627157, 11.845776373625682], + [43.62191833376352, 12.395734000022884], + [43.29848106288949, 12.615395567393307], + [43.21410612266146, 12.834868817846598], + [43.003168772091556, 13.054150695298716], + [42.5250441107996, 13.929303843271725], + [42.018794469431555, 14.801154224791475], + [40.837545306240685, 16.53419619825962], + [39.82504602350352, 18.251816319028308], + [38.587546900159566, 20.375041253465525], + [37.80004745803154, 22.05298561667763], + [36.45004841438259, 24.12261698700334], + [35.437549131647586, 25.754704263415306], + [34.84692455005151, 26.562513149236622], + [34.087550087999546, 27.364667993860166], + [33.48321301611958, 28.161052262220892], + [32.96260088492426, 28.951554732193216], + [32.68135108416425, 29.34456698948989], + [32.51257620372584, 29.63833609362638], + [32.529931191431416, 29.972545436050268], + [32.287551363135435, 30.320465424761352], + [31.950051602223482, 30.587136321812352], + [31.387552000703465, 30.804773676604498], + [30.825052399183477, 30.97376681878157], + [29.893513059094772, 31.191465077638554] + ], + [ + [127.68084378563216, 26.212414126750332], + [126.8999843388003, 26.562513149236622], + [125.54998529515225, 26.562513149236622], + [124.64998593272028, 26.159307970773796] + ], + [ + [124.19998625150438, 24.12261698700334], + [122.84998720785634, 24.73717827217618], + [122.17498768603221, 24.8393128255928], + [121.80144795065141, 24.863504112487874] + ], + [ + [121.06600847164387, 13.762418337904336], + [120.14998912056026, 13.710817738179543], + [118.79999007691222, 14.14758350694865], + [116.99999135204828, 14.365653759228536], + [115.64999230840024, 14.801154224791475] + ], + [ + [115.19999262718417, 13.054150695298716], + [114.2999932647522, 13.929303843271725], + [110.69999581502415, 15.23578178303569], + [109.79999645259218, 15.77780337181727], + [108.89999709016004, 15.994209911785873], + [108.19247759137372, 16.04339300520843] + ], + [ + [98.67598433294691, 3.752031394331624], + [99.00000410340803, 4.613591578862867] + ], + [ + [76.26955020587488, 9.938386424893082], + [75.60002068017599, 9.746236973759864], + [74.25002163652775, 9.524411345019587] + ], + [ + [110.92499565563222, 5.957818681088611], + [114.2999932647522, 5.174038327225986], + [114.88563284987973, 4.926762452886777] + ], + [ + [100.36299313785392, 5.35384659465538], + [99.67500362523216, 5.286069860821101], + [98.32500458158412, 5.286069860821101] + ], + [ + [79.86681765753698, 6.833088156653076], + [79.31251805020796, 5.957818681088611], + [78.30001876747187, 4.837826391986653] + ], + [ + [95.68213645381681, 16.282761781662003], + [95.85000633489605, 14.801154224791475], + [96.07500617490817, 11.294709319565555], + [95.85000633430016, 8.33898542602023], + [95.40000665367998, 6.516986153883067] + ], + [ + [116.99999135204828, 19.952622905164304], + [116.54999167083221, 18.251816319028308], + [115.64999230840024, 14.801154224791475], + [115.19999262718417, 13.054150695298716], + [114.18748535243108, 9.96791518697421], + [112.49999453988826, 7.744889052551343], + [110.92499565563222, 5.957818681088611], + [110.24999613380825, 5.510071711803135], + [107.99999772772824, 4.501447394015287], + [107.0999983652961, 3.940475772228723], + [105.74999932164823, 3.154491498099929], + [105.29999964043216, 2.817450442654064], + [104.96229987966191, 1.468426767332062], + [105.41249956073611, 0.118588418888407] + ], + [ + [116.99999135204828, 19.952622905164304], + [116.99999135204828, 20.796306105108954], + [116.88749143174417, 22.469443964829594], + [116.67753158048177, 23.355006811273626], + [117.22499119265612, 22.884654113882362], + [118.34999039569615, 22.261369678340685], + [118.79999007691222, 22.05298561667763], + [120.12788799225589, 21.562216383585792], + [121.02775554672925, 21.457551614722092] + ], + [ + [128.62078311977027, 34.88072781981958], + [127.91248362153638, 34.31215165223537], + [127.34998402001636, 33.18971466460036], + [127.34998402001636, 32.43331330641712], + [125.99998497636832, 29.540507745394393], + [125.77498513576032, 28.55704546571141], + [124.64998593272028, 26.159307970773796], + [124.53748601241617, 25.55188275942578], + [124.19998625150438, 24.12261698700334], + [123.29998688907224, 22.05298561667763], + [122.84998720785634, 21.635297384859456], + [121.02775554672925, 21.457551614722092] + ], + [ + [43.147993669496344, 11.594869371447714], + [43.6500433138396, 11.763112428849638], + [44.55004267627157, 11.845776373625682] + ], + [ + [66.60002705585575, 18.89166158430325], + [65.92502753403164, 20.375041253465525], + [66.37502721524771, 23.298598065875808], + [67.02854675228852, 24.889731701235718] + ], + [ + [37.80004745803154, 22.05298561667763], + [39.182756478507656, 21.481533475503085] + ], + [ + [114.183973346942, 22.24961578335288], + [114.2999932647522, 22.05298561667763], + [115.64999230840024, 22.10511054810837], + [117.44999103326418, 21.94867813792706], + [118.34999039569615, 22.261369678340685] + ], + [ + [105.29999964043216, 2.817450442654064], + [104.40000027800002, 2.367912558705314], + [103.85068066714334, 2.295702456949584] + ] + ] + } + } + ] +} diff --git a/docs/static/data/examples/geo/timezones.json b/docs/static/data/examples/geo/timezones.json new file mode 100644 index 000000000..84ac9c711 --- /dev/null +++ b/docs/static/data/examples/geo/timezones.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"timezones":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0,1,2]],"properties":{"objectid":2,"scalerank":6,"featurecla":"Timezone","name":"-10","map_color6":4,"map_color8":4,"note":null,"zone":-10,"utc_format":"UTC-10:00","time_zone":"UTC-10:00","iso_8601":"2012-05-30T18:33:50-10:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[3,4,5,6]],"properties":{"objectid":2,"scalerank":6,"featurecla":"Timezone","name":"-10","map_color6":4,"map_color8":4,"note":null,"zone":-10,"utc_format":"UTC-10:00","time_zone":"UTC-10:00","iso_8601":"2012-05-30T18:33:50-10:00","places":"United States (Aleutian Islands)","dst_places":"United States (Aleutian Islands)","tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-3,7,8,9,10,11,12,13,14]],"properties":{"objectid":1,"scalerank":6,"featurecla":"Timezone","name":"-11","map_color6":5,"map_color8":3,"note":null,"zone":-11,"utc_format":"UTC-11:00","time_zone":"UTC-11:00","iso_8601":"2012-05-30T17:33:50-11:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[15,16,17,18,19,20,21,22,23,24]],"properties":{"objectid":1,"scalerank":6,"featurecla":"Timezone","name":"-11","map_color6":5,"map_color8":3,"note":null,"zone":-11,"utc_format":"UTC-11:00","time_zone":"UTC-11:00","iso_8601":"2012-05-30T17:33:50-11:00","places":"American Samoa, Niue","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[25,26,27,28,29]],"properties":{"objectid":1,"scalerank":6,"featurecla":"Timezone","name":"-11","map_color6":5,"map_color8":3,"note":null,"zone":-11,"utc_format":"UTC-11:00","time_zone":"UTC-11:00","iso_8601":"2012-05-30T17:33:50-11:00","places":"American Samoa, Niue","dst_places":null,"tz_name1st":"Pacific/Midway","tz_namesum":1}},{"type":"Polygon","arcs":[[30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58]],"properties":{"objectid":1,"scalerank":6,"featurecla":"Timezone","name":"-11","map_color6":5,"map_color8":3,"note":null,"zone":-11,"utc_format":"UTC-11:00","time_zone":"UTC-11:00","iso_8601":"2012-05-30T17:33:50-11:00","places":"American Samoa, Niue","dst_places":null,"tz_name1st":"Pacific/Pago_Pago","tz_namesum":2}},{"type":"Polygon","arcs":[[-29,59,60],[61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,-37,78,-35,79,80,-32,81,-59,82,83,84,85,86,87,88,89,90,91,-17,92,93,94,95]],"properties":{"objectid":2,"scalerank":6,"featurecla":"Timezone","name":"-10","map_color6":4,"map_color8":4,"note":null,"zone":-10,"utc_format":"UTC-10:00","time_zone":"UTC-10:00","iso_8601":"2012-05-30T18:33:50-10:00","places":"United States (Hawaii)","dst_places":"Most of French Polynesia, United States (Aleutian Islands)","tz_name1st":"Pacific/Honolulu","tz_namesum":6}},{"type":"Polygon","arcs":[[96,97,98,-39,99,100]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"-12","map_color6":1,"map_color8":8,"note":null,"zone":-12,"utc_format":"UTC-12:00","time_zone":"UTC-12:00","iso_8601":"2012-05-30T16:33:50-12:00","places":"Southern Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-15,101,102,103]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"-12","map_color6":1,"map_color8":8,"note":null,"zone":-12,"utc_format":"UTC-12:00","time_zone":"UTC-12:00","iso_8601":"2012-05-30T16:33:50-12:00","places":"Siberia","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[104,105,106,107,108,109,110,111,112,113,114,115,116]],"properties":{"objectid":7,"scalerank":6,"featurecla":"Timezone","name":"-7","map_color6":1,"map_color8":1,"note":null,"zone":-7,"utc_format":"UTC-07:00","time_zone":"UTC-07:00","iso_8601":"2012-05-30T21:33:50-07:00","places":"Canada (northeastern British Columbia), Mexico (Sonora), United States (Arizona)","dst_places":"Canada (Alberta), Mexico (Chihuahua), United States (Colorado)","tz_name1st":"America/Denver","tz_namesum":14}},{"type":"Polygon","arcs":[[-74,117,-72,118,119,120]],"properties":{"objectid":3,"scalerank":6,"featurecla":"Timezone","name":"-9.5","map_color6":6,"map_color8":6,"note":null,"zone":-9.5,"utc_format":"UTC-09:30","time_zone":"UTC-09:30","iso_8601":"2012-05-30T19:03:50-09:30","places":"Marquesas Islands","dst_places":null,"tz_name1st":"Pacific/Marquesas","tz_namesum":1}},{"type":"Polygon","arcs":[[121,122,123,124,-111,125,-109,126,-107,127,-105]],"properties":{"objectid":8,"scalerank":6,"featurecla":"Timezone","name":"-6","map_color6":6,"map_color8":2,"note":null,"zone":-6,"utc_format":"UTC-06:00","time_zone":"UTC-06:00","iso_8601":"2012-05-30T22:33:50-06:00","places":"Canada (almost all of Saskatchewan), Costa Rica, El Salvador, Ecuador (Galapagos Islands), Guatemala, Honduras, Mexico (most), Nicaragua,","dst_places":"Canada (Manitoba), United States (Illinois, most of Texas)","tz_name1st":"America/Chicago","tz_namesum":25}},{"type":"Polygon","arcs":[[128,129,130,131,132,133,134,135,136,137,138,139,-124,140,-122]],"properties":{"objectid":9,"scalerank":6,"featurecla":"Timezone","name":"-5","map_color6":5,"map_color8":3,"note":null,"zone":-5,"utc_format":"UTC-05:00","time_zone":"UTC-05:00","iso_8601":"2012-05-30T23:33:50-05:00","places":"Colombia, Cuba, Ecuador (continental), Jamaica, Panama, Peru","dst_places":"Canada (most of Ontario, most of Quebec), Haiti, United States (most of Florida, Georgia, Massachusetts, most of Michigan, New York, North Carolina, Ohio, Washington D.C.)","tz_name1st":"America/New_York","tz_namesum":26}},{"type":"Polygon","arcs":[[141,142,143,144,145]],"properties":{"objectid":11,"scalerank":6,"featurecla":"Timezone","name":"-3.5","map_color6":6,"map_color8":5,"note":null,"zone":-3.5,"utc_format":"UTC-03:30","time_zone":"UTC-03:30","iso_8601":"2012-05-31T01:03:50-03:30","places":"Canada (island of Newfoundland and southern Labrador)","dst_places":"Canada (island of Newfoundland and southern Labrador)","tz_name1st":"America/St_Johns","tz_namesum":2}},{"type":"Polygon","arcs":[[146,-129,147]],"properties":{"objectid":10,"scalerank":6,"featurecla":"Timezone","name":"-4","map_color6":4,"map_color8":4,"note":null,"zone":-4,"utc_format":"UTC-04:00","time_zone":"UTC-04:00","iso_8601":"2012-05-31T00:33:50-04:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[148,149,150,151,152,153,154,155,156,157,158,159,160]],"properties":{"objectid":14,"scalerank":6,"featurecla":"Timezone","name":"-1","map_color6":1,"map_color8":8,"note":null,"zone":-1,"utc_format":"UTC-01:00","time_zone":"UTC-01:00","iso_8601":"2012-05-31T03:33:50-01:00","places":"Greenland (south eastern part)","dst_places":null,"tz_name1st":"America/Scoresbysund","tz_namesum":1}},{"type":"MultiPolygon","arcs":[[[-143,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,-137,441,-133,442,443,-146,444]],[[445,-144]]],"properties":{"objectid":10,"scalerank":6,"featurecla":"Timezone","name":"-4","map_color6":4,"map_color8":4,"note":null,"zone":-4,"utc_format":"UTC-04:00","time_zone":"UTC-04:00","iso_8601":"2012-05-31T00:33:50-04:00","places":"Bolivia, Brazil (Amazonas), Chile (continental), Dominican Republic, Canada (Nova Scotia), Puerto Rico, Trinidad and Tobago","dst_places":"Falkland Islands","tz_name1st":"America/La_Paz","tz_namesum":39}},{"type":"Polygon","arcs":[[-160,446,447,448,449]],"properties":{"objectid":13,"scalerank":6,"featurecla":"Timezone","name":"-2","map_color6":2,"map_color8":7,"note":null,"zone":-2,"utc_format":"UTC-02:00","time_zone":"UTC-02:00","iso_8601":"2012-05-31T02:33:50-02:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-150,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471]],"properties":{"objectid":13,"scalerank":6,"featurecla":"Timezone","name":"-2","map_color6":2,"map_color8":7,"note":null,"zone":-2,"utc_format":"UTC-02:00","time_zone":"UTC-02:00","iso_8601":"2012-05-31T02:33:50-02:00","places":"Brazil (Fernando de Noronha), South Georgia and the South Sandwich Islands","dst_places":null,"tz_name1st":"Atlantic/South_Georgia","tz_namesum":3}},{"type":"Polygon","arcs":[[472,473,474,475,-454,476]],"properties":{"objectid":14,"scalerank":6,"featurecla":"Timezone","name":"-1","map_color6":1,"map_color8":8,"note":null,"zone":-1,"utc_format":"UTC-01:00","time_zone":"UTC-01:00","iso_8601":"2012-05-31T03:33:50-01:00","places":"Portugal (Azores), Cape Verde","dst_places":null,"tz_name1st":"Atlantic/Cape_Verde","tz_namesum":2}},{"type":"Polygon","arcs":[[-115,477,-113,478,479,-76,480]],"properties":{"objectid":6,"scalerank":6,"featurecla":"Timezone","name":"-8","map_color6":2,"map_color8":7,"note":null,"zone":-8,"utc_format":"UTC-08:00","time_zone":"UTC-08:00","iso_8601":"2012-05-30T20:33:50-08:00","places":"Canada (most of British Columbia), Mexico (Baja California), United States (California, most of Nevada, most of Oregon, Washington (state))","dst_places":"Canada (most of British Columbia), Mexico (Baja California), United States (California, most of Nevada, most of Oregon, Washington (state))","tz_name1st":"America/Los_Angeles","tz_namesum":8}},{"type":"Polygon","arcs":[[-117,481]],"properties":{"objectid":6,"scalerank":6,"featurecla":"Timezone","name":"-8","map_color6":2,"map_color8":7,"note":null,"zone":-8,"utc_format":"UTC-08:00","time_zone":"UTC-08:00","iso_8601":"2012-05-30T20:33:50-08:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[482,-84,483,-57,484,485,-54,486,-52,487,488,-49,489,490,491,492,493,494]],"properties":{"objectid":37,"scalerank":6,"featurecla":"Timezone","name":"+13","map_color6":2,"map_color8":6,"note":"Reflects 2012 International Date Line switch for Western Samoa and Kiribati","zone":13,"utc_format":"UTC+13:00","time_zone":"UTC+13:00","iso_8601":"2012-05-31T17:33:50+13:00","places":"Kiribati (Phoenix Islands), Tonga, Samoa","dst_places":"Samoa","tz_name1st":"Pacific/Enderbury","tz_namesum":3}},{"type":"Polygon","arcs":[[-483,495,496,497,-20,498,499,-91,500,-89,501,502,-86,503]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+14","map_color6":1,"map_color8":1,"note":"Reflects 2012 International Date Line switch for Western Samoa and Kiribati","zone":14,"utc_format":"UTC+14:00","time_zone":"UTC+14:00","iso_8601":"2012-05-31T18:33:50+14:00","places":"Kiribati (Line Islands), Tokelau","dst_places":null,"tz_name1st":"Pacific/Kiritimati","tz_namesum":2}},{"type":"Polygon","arcs":[[504,505,506,507,508,509,510,511,512]],"properties":{"objectid":31,"scalerank":6,"featurecla":"Timezone","name":"+10","map_color6":2,"map_color8":5,"note":null,"zone":10,"utc_format":"UTC+10:00","time_zone":"UTC+10:00","iso_8601":"2012-05-31T14:33:50+10:00","places":"Papua New Guinea, Australia (Queensland, New South Wales, Tasmania, Victoria)","dst_places":"Australia (New South Wales, Tasmania, Victoria)","tz_name1st":"Australia/Sydney","tz_namesum":10}},{"type":"Polygon","arcs":[[513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781]],"properties":{"objectid":31,"scalerank":6,"featurecla":"Timezone","name":"+10","map_color6":2,"map_color8":5,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":10,"utc_format":"UTC+10:00","time_zone":"UTC+10:00","iso_8601":"2012-05-31T14:33:50+10:00","places":"Russia (Zabaykalsky Krai)","dst_places":null,"tz_name1st":"Asia/Yakutsk","tz_namesum":1}},{"type":"Polygon","arcs":[[782,783,784,785,786,787,788,789,-513,790,791,792,-5],[793],[794]],"properties":{"objectid":33,"scalerank":6,"featurecla":"Timezone","name":"+11","map_color6":1,"map_color8":6,"note":null,"zone":11,"utc_format":"UTC+11:00","time_zone":"UTC+11:00","iso_8601":"2012-05-31T15:33:50+11:00","places":"New Caledonia, Solomon Islands","dst_places":null,"tz_name1st":"Pacific/Guadalcanal","tz_namesum":6}},{"type":"Polygon","arcs":[[-511,795,796,-797,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,-552,849,850,-549,851]],"properties":{"objectid":33,"scalerank":6,"featurecla":"Timezone","name":"+11","map_color6":1,"map_color8":6,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":11,"utc_format":"UTC+11:00","time_zone":"UTC+11:00","iso_8601":"2012-05-31T15:33:50+11:00","places":"Russia (Primorsky Krai)","dst_places":null,"tz_name1st":"Asia/Vladivostok","tz_namesum":2}},{"type":"Polygon","arcs":[[852,-547,853,-545,854,-543,855,-541,856,-539,857,-537,858,-535,859,-533,860,861,-530,862,-528,863,-526,864,-524,865,-522,866,-520,867,-518,868,-516,869,870]],"properties":{"objectid":33,"scalerank":6,"featurecla":"Timezone","name":"+11","map_color6":1,"map_color8":6,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":11,"utc_format":"UTC+11:00","time_zone":"UTC+11:00","iso_8601":"2012-05-31T15:33:50+11:00","places":"Russia (Primorsky Krai)","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"MultiPolygon","arcs":[[[-544,-855]],[[-546,-854]],[[515,-869,-517,-516]],[[-515,871,-870]],[[-6,-793,872,-791,-512,-852,-548,-853,873]]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+12","map_color6":6,"map_color8":2,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":12,"utc_format":"UTC+12:00","time_zone":"UTC+12:00","iso_8601":"2012-05-31T16:33:50+12:00","places":"Russia (Kamchatka Krai)","dst_places":null,"tz_name1st":"Asia/Kamchatka","tz_namesum":3}},{"type":"Polygon","arcs":[[874,875,876,877,878,879,880,881,882,883,884]],"properties":{"objectid":20,"scalerank":6,"featurecla":"Timezone","name":"+4","map_color6":2,"map_color8":5,"note":null,"zone":4,"utc_format":"UTC+04:00","time_zone":"UTC+04:00","iso_8601":"2012-05-31T08:33:50+04:00","places":"Mauritius, Oman, Seychelles, United Arab Emirates","dst_places":null,"tz_name1st":"Asia/Dubai","tz_namesum":6}},{"type":"Polygon","arcs":[[885,886,887]],"properties":{"objectid":25,"scalerank":6,"featurecla":"Timezone","name":"+6","map_color6":6,"map_color8":8,"note":null,"zone":6,"utc_format":"UTC+06:00","time_zone":"UTC+06:00","iso_8601":"2012-05-31T10:33:50+06:00","places":"British Indian Ocean Territory","dst_places":null,"tz_name1st":"Indian/Chagos","tz_namesum":1}},{"type":"Polygon","arcs":[[888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914]],"properties":{"objectid":25,"scalerank":6,"featurecla":"Timezone","name":"+6","map_color6":6,"map_color8":8,"note":null,"zone":6,"utc_format":"UTC+06:00","time_zone":"UTC+06:00","iso_8601":"2012-05-31T10:33:50+06:00","places":"Bhutan","dst_places":null,"tz_name1st":"Asia/Thimphu","tz_namesum":1}},{"type":"Polygon","arcs":[[915,-881]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"French Southern and Antarctic Lands","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[916],[917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934]],"properties":{"objectid":20,"scalerank":6,"featurecla":"Timezone","name":"+4","map_color6":2,"map_color8":5,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":4,"utc_format":"UTC+04:00","time_zone":"UTC+04:00","iso_8601":"2012-05-31T08:33:50+04:00","places":"Armenia, Azerbaijan, Georgia, Russia (European)","dst_places":null,"tz_name1st":"Europe/Moscow","tz_namesum":6}},{"type":"Polygon","arcs":[[935],[936],[937],[938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,-919,1558,1559,1560]],"properties":{"objectid":25,"scalerank":6,"featurecla":"Timezone","name":"+6","map_color6":6,"map_color8":8,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":6,"utc_format":"UTC+06:00","time_zone":"UTC+06:00","iso_8601":"2012-05-31T10:33:50+06:00","places":"Kazakhstan (most), Russia (Ural: Sverdlovsk Oblast, Chelyabinsk Oblast)","dst_places":null,"tz_name1st":"Asia/Almaty","tz_namesum":4}},{"type":"Polygon","arcs":[[1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,-724]],"properties":{"objectid":29,"scalerank":6,"featurecla":"Timezone","name":"+9","map_color6":3,"map_color8":3,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":9,"utc_format":"UTC+09:00","time_zone":"UTC+09:00","iso_8601":"2012-05-31T13:33:50+09:00","places":"Russia (Irkutsk Oblast)","dst_places":null,"tz_name1st":"Asia/Irkutsk","tz_namesum":1}},{"type":"Polygon","arcs":[[1765,1766,1767,-885,1768,1769,-922,-921]],"properties":{"objectid":19,"scalerank":6,"featurecla":"Timezone","name":"+3.5","map_color6":5,"map_color8":6,"note":null,"zone":3.5,"utc_format":"UTC+03:30","time_zone":"UTC+03:30","iso_8601":"2012-05-31T08:03:50+03:30","places":"Iran","dst_places":"Iran","tz_name1st":"Asia/Tehran","tz_namesum":2}},{"type":"Polygon","arcs":[[1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,-1767,1804]],"properties":{"objectid":21,"scalerank":6,"featurecla":"Timezone","name":"+4.5","map_color6":3,"map_color8":2,"note":null,"zone":4.5,"utc_format":"UTC+04:30","time_zone":"UTC+04:30","iso_8601":"2012-05-31T09:03:50+04:30","places":"Afghanistan","dst_places":null,"tz_name1st":"Asia/Kabul","tz_namesum":1}},{"type":"Polygon","arcs":[[1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942]],"properties":{"objectid":24,"scalerank":6,"featurecla":"Timezone","name":"+5.75","map_color6":1,"map_color8":4,"note":null,"zone":5.75,"utc_format":"UTC+05:45","time_zone":"UTC+05:45","iso_8601":"2012-05-31T10:18:50+05:45","places":"Nepal","dst_places":null,"tz_name1st":"Asia/Kathmandu","tz_namesum":1}},{"type":"Polygon","arcs":[[1943,1944,-781,1945,1946,-778,1947,-776,1948,-774,1949,-772,1950,1951,-769,1952,-767,1953,-765,1954,-763,1955,-761,1956,-759,1957,-757,1958,-755,1959,-753,1960,1961,-750,1962,-748,1963,1964,1965,1966,-743,1967,-741,1968,1969,-738,1970,1971,-735,1972,-733,1973,-731,1974,-729,1975,-727,1976,-725,-1765,1977,-1763,1978,1979,-1760,1980,-1758,1981,-1756,1982,-1754,1983,1984,1985,1986,-1749,1987,1988,-1746,1989,-1744,1990,-1742,1991,-1740,1992,-1738,1993,1994,-1735,1995,1996,-1732,1997,-1730,1998,-1728,1999,-1726,2000,-1724,2001,-1722,2002,-1720,2003,-1718,2004,-1716,2005,-1714,2006,-1712,2007,2008,2009,-1708,2010,2011,2012,-1704,2013,2014,-1701,2015,-1699,2016,-1697,2017,2018,-1694,2019,-1692,2020,-1690,2021,-1688,2022,-1686,2023,-1684,2024,2025,-1681,2026,-1679,2027,-1677,2028,-1675,2029,-1673,2030,-1671,2031,-1669,2032,-1667,2033,-1665,2034,-1663,2035,-1661,2036,-1659,2037,-1657,2038,-1655,2039,-1653,2040,-1651,2041,-1649,2042,-1647,2043,-1645,2044,-1643,2045,-1641,2046,-1639,2047,2048,-1636,2049,-1634,2050,-1632,2051,-1630,2052,2053,-1627,2054,-1625,2055,-1623,2056,-1620,2057,2058,-1617,2059,-1615,2060,-1613,2061,-1611,2062,-1609,2063,-1607,2064,-1605,2065,-1603,2066,-1601,2067,2068,-1598,2069,-1596,2070,-1594,2071,-1592,2072,-1590,2073,-1588,2074,-1586,2075,-1584,2076,-1582,2077,-1580,2078,-1578,2079,-1576,2080,-1574,2081,-1572,2082,2083,-1569,2084,2085,-1566,2086,-1564,2087,-1562,-723,2088,-721,2089,-719,2090,-717,2091,-715,2092,-713,2093,-711,2094,-709,2095,-707,2096,-705,2097,-703,2098,-701,2099,-699,2100,-697,2101,-695,2102,-693,2103,-691,2104,-689,2105,-687,2106,-685,2107,-683,2108,2109,-680,2110,-678,2111,-676,2112,-674,2113,-672,2114,-670,2115,-668,2116,2117,2118,-664,2119,-662,2120,-660,2121,2122,2123,2124,-655,2125,-653,2126,2127,2128,2129,-648,2130,2131,-645,2132,-643,2133,-641,2134,-639,2135,-637,2136,-635,2137,2138,-632,2139,-630,2140,-628,2141,-626,2142,-624,2143,-622,2144,2145,-619,2146,-617,2147,-615,2148,-613,2149,2150,2151,-609,2152,-607,2153,-605,2154,2155,-602,2156,-600,2157,-598,2158,-596,2159,-594,2160,-592,2161,-590,2162,-588,2163,2164,-585,2165,-583,2166,-581,2167,-579,2168,-577,2169,-575,2170,-573,2171,-571,2172,-569,2173,-567,2174,-565,2175,-563,2176,2177,-560,2178,-558,2179,-556,2180,-554,2181,2182,-848,2183,-846,2184,-844,2185,-842,2186,-840,2187,-838,2188,-836,2189,-834,2190,2191,-831,2192,2193,2194,-827,2195,-825,2196,-823,2197,-821,2198,-819,2199,-817,2200,2201,-814,2202,-812,2203,-810,2204,-808,2205,-806,2206,-804,2207,-802,2208,-800,2209,-798,796,2210,2211,2212,2213,-2214,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,-2246,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,-2293,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,-910,2864,-908,2865,-906,2866,-904,2867,-902,2868,-900,2869,-898,2870,-896,2871,-894,-892,2872,-890,2873,2874,-914,2875,-912,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,-1932,2894,-1930,2895,-1928,2896,-1926,2897,2898,-1923,2899,2900,2901,-1919,2902,2903,-1916,2904,-1914,2905,-1912,2906,-1910,2907,-1908,2908,-1905,2909,2910,-1902,2911,-1900,2912,-1898,2913,2914,-1895,2915,-1893,2916,-1891,2917,-1889,2918,-1887,2919,2920,-1884,2921,-1882,2922,-1880,2923,-1878,-1876,2924,-1874,2925,-1872,2926,-1870,2927,-1868,2928,2929,-1865,2930,-1863,2931,-1861,2932,-1859,2933,-1857,2934,-1855,2935,-1853,2936,-1851,-1849,2937,-1847,2938,-1845,2939,-1843,2940,-1841,2941,-1839,2942,-1837,2943,-1835,2944,-1833,2945,-1831,2946,-1829,2947,-1827,2948,-1825,2949,2950,-1822,2951,-1820,2952,-1818,2953,-1816,2954,-1814,2955,-1812,2956,-1810,2957,-1808,2958,2959,-1943,2960,-1941,2961,-1939,2962,-1937,2963,-1935,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,-1783,3078,-1781,3079,-1779,3080,-1777,3081,3082,-1774,3083,-1772,3084,3085,-3086,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,-1557,3128,-1555,3129,3130,3131,-1551,3132,-1549,3133,3134,-1546,3135,-1544,3136,-1542,3137,-1540,3138,-1538,3139,-1536,3140,-1534,3141,-1532,3142,-1530,3143,-1528,3144,-1526,3145,-1524,3146,-1522,3147,3148,-1519,3149,-1517,3150,-1515,3151,3152,-1512,3153,3154,-1509,3155,-1507,3156,-1505,3157,-1503,3158,-1501,3159,-1499,3160,-1497,3161,-1495,3162,-1493,3163,-1491,3164,-1489,3165,-1487,3166,-1485,3167,-1483,3168,-1481,3169,-1479,3170,3171,-1476,3172,-1474,3173,-1472,3174,-1470,3175,3176,-1467,3177,-1465,3178,-1463,3179,3180,-1460,3181,3182,-1457,3183,3184,3185,-1453,3186,-1451,3187,-1449,3188,3189,3190,-1445,3191,-1443,3192,-1441,3193,-1439,3194,-1437,3195,-1435,3196,-1433,3197,-1431,3198,-1429,3199,-1427,3200,-1425,3201,-1423,3202,-1421,3203,-1419,3204,-1417,3205,-1415,3206,3207,3208,-1411,3209,-1409,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,-1407,3697,-1405,3698,-1403,3699,-1401,3700,-1399,3701,-1397,3702,-1395,3703,-1393,3704,-1391,3705,-1389,3706,-1387,3707,-1385,3708,-1383,3709,-1381,3710,-1379,3711,-1377,3712,3713,-1374,3714,-1372,3715,3716,3717,-1368,3718,3719,-1365,3720,3721,-1362,3722,-1360,3723,-1358,3724,-1356,3725,-1354,3726,-1352,3727,3728,3729,3730,-1347,3731,3732,3733,-1343,3734,-1341,3735,-1339,3736,-1337,3737,-1335,3738,3739,-1332,3740,-1330,3741,3742,-1327,3743,3744,-1324,3745,-1322,3746,-1320,3747,-1318,3748,-1316,3749,3750,-1313,3751,-1311,3752,-1309,3753,3754,-1306,3755,-1304,3756,-1302,3757,-1300,3758,-1298,3759,-1296,3760,-1294,3761,-1292,3762,-1290,3763,-1288,3764,-1286,3765,-1284,3766,-1282,3767,-1280,3768,-1278,3769,-1276,3770,3771,-1273,3772,-1271,3773,3774,-1268,3775,-1266,3776,3777,-1263,3778,3779,3780,-1259,3781,-1257,3782,3783,-1254,3784,3785,-1251,3786,3787,3788,-1247,3789,-1245,3790,3791,-1242,3792,3793,-1239,3794,-1237,3795,-1235,3796,-1233,3797,-1231,3798,3799,-1228,3800,3801,-1225,3802,3803,3804,-1221,3805,-1219,3806,3807,-1216,3808,-1214,3809,3810,3811,-1210,3812,-1208,3813,-1206,3814,-1204,3815,-1202,3816,-1200,3817,3818,-1197,3819,-1195,3820,-1193,3821,-1191,3822,-1189,3823,-1187,3824,-1185,3825,-1183,3826,3827,3828,3829,-1178,3830,-1176,3831,-1174,3832,-1172,3833,-1170,3834,-1168,3835,-1166,3836,-1164,3837,-1162,3838,3839,-1159,3840,3841,-1156,3842,-1154,3843,-1152,3844,-1150,3845,-1148,3846,-1146,3847,-1144,3848,-1142,3849,3850,-1139,3851,-1137,3852,-1135,3853,-1133,3854,-1131,3855,-1129,3856,-1127,3857,3858,3859,-1123,3860,3861,3862,-1119,3863,-1117,3864,3865,-1114,3866,3867,-1111,3868,3869,-1108,3870,3871,3872,-1104,3873,-1102,3874,3875,-1099,3876,-1097,3877,-1095,3878,-1093,3879,3880,-1090,3881,-1088,3882,-1086,3883,-1084,3884,-1082,3885,-1080,3886,-1078,3887,3888,-1075,3889,3890,-1072,3891,3892,-1069,3893,-1067,3894,-1065,3895,3896,-1062,3897,-1060,3898,3899,3900,3901,-1055,3902,-1053,3903,-1051,3904,-1049,3905,3906,-1046,3907,3908,-1043,3909,3910,3911,3912,-1038,3913,-1036,3914,-1034,3915,-1032,3916,3917,-1029,3918,-1027,3919,3920,-1024,3921,3922,-1021,3923,3924,-1018,3925,-1016,3926,-1014,3927,3928,-1011,3929,-1009,3930,-1007,3931,3932,-1004,3933,-1002,3934,-1000,3935,-998,3936,-996,3937,-994,3938,-992,3939,-990,3940,3941,-987,3942,-985,3943,-983,3944,3945,3946,3947,-978,3948,3949,-975,3950,-973,3951,-971,3952,-969,3953,-967,3954,-965,3955,-963,3956,3957,3958,-959,3959,3960,-956,3961,-954,3962,-952,3963,-950,3964,-948,3965,-946,3966,-944,3967,-942,3968,-940,3969,3970,3971,3972,3973,3974,3975,3976]],"properties":{"objectid":28,"scalerank":6,"featurecla":"Timezone","name":"+8","map_color6":4,"map_color8":2,"note":null,"zone":8,"utc_format":"UTC+08:00","time_zone":"UTC+08:00","iso_8601":"2012-05-31T12:33:50+08:00","places":"China, Hong Kong, Russia (Krasnoyarsk Krai), Malaysia, Philippines, Singapore, Taiwan, most of Mongolia, Western Australia","dst_places":null,"tz_name1st":"Australia/Perth","tz_namesum":19}},{"type":"Polygon","arcs":[[-507,3977,3978,3979,3980,-2305,3981]],"properties":{"objectid":30,"scalerank":6,"featurecla":"Timezone","name":"+9.5","map_color6":1,"map_color8":4,"note":null,"zone":9.5,"utc_format":"UTC+09:30","time_zone":"UTC+09:30","iso_8601":"2012-05-31T14:03:50+09:30","places":"Australia (Northern Territory)","dst_places":"Australia (South Australia)","tz_name1st":"Australia/Adelaide","tz_namesum":3}},{"type":"Polygon","arcs":[[-795]],"properties":{"objectid":32,"scalerank":6,"featurecla":"Timezone","name":"+10.5","map_color6":3,"map_color8":8,"note":null,"zone":10.5,"utc_format":"UTC+10:30","time_zone":"UTC+10:30","iso_8601":"2012-05-31T15:03:50+10:30","places":"Lord Howe Island","dst_places":"Lord Howe Island","tz_name1st":"Australia/Lord_Howe","tz_namesum":1}},{"type":"Polygon","arcs":[[-794]],"properties":{"objectid":34,"scalerank":6,"featurecla":"Timezone","name":"+11.5","map_color6":5,"map_color8":1,"note":null,"zone":11.5,"utc_format":"UTC+11:30","time_zone":"UTC+11:30","iso_8601":"2012-05-31T16:03:50+11:30","places":"Norfolk Island","dst_places":null,"tz_name1st":"Pacific/Norfolk","tz_namesum":1}},{"type":"Polygon","arcs":[[-136,-134,-442]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"-4.5","map_color6":2,"map_color8":8,"note":null,"zone":-4.5,"utc_format":"UTC-04:30","time_zone":"UTC-04:30","iso_8601":"2012-05-31T09:03:50-04:30","places":"Venezuela","dst_places":null,"tz_name1st":"America/Caracas","tz_namesum":1}},{"type":"Polygon","arcs":[[-506,3982,3983,-2308,3984,3985,-3978]],"properties":{"objectid":29,"scalerank":6,"featurecla":"Timezone","name":"+9","map_color6":3,"map_color8":3,"note":null,"zone":9,"utc_format":"UTC+09:00","time_zone":"UTC+09:00","iso_8601":"2012-05-31T13:33:50+09:00","places":"Southern Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":1}},{"type":"Polygon","arcs":[[-510,3986,-508,-3982,-2304,3987,-2302,3988,-2300,3989,-2298,3990,-2296,3991,-2294,2292,3992,-2291,3993,3994,-2288,3995,3996,-2285,3997,-2283,3998,-2281,3999,-2279,4000,-2277,4001,4002,-2274,4003,-2272,4004,-2270,4005,-2268,4006,-2266,4007,-2264,4008,-2262,4009,4010,-2259,4011,-2257,4012,-2255,4013,-2253,4014,-2251,4015,-2249,4016,-2247,2245,4017,4018,-2243,4019,-2241,4020,-2239,4021,-2237,4022,-2235,4023,-2233,4024,4025,-2230,4026,-2228,4027,-2226,4028,-2224,4029,4030,4031,-2220,4032,-2218,4033,4034,-2215,2213,4035,-2212,4036,-796]],"properties":{"objectid":29,"scalerank":6,"featurecla":"Timezone","name":"+9","map_color6":3,"map_color8":3,"note":null,"zone":9,"utc_format":"UTC+09:00","time_zone":"UTC+09:00","iso_8601":"2012-05-31T13:33:50+09:00","places":"East Timor, Japan, North Korea, South Korea","dst_places":null,"tz_name1st":"Asia/Tokyo","tz_namesum":6}},{"type":"Polygon","arcs":[[4037,-934,4038]],"properties":{"objectid":17,"scalerank":6,"featurecla":"Timezone","name":"+2","map_color6":4,"map_color8":3,"note":null,"zone":2,"utc_format":"UTC+02:00","time_zone":"UTC+02:00","iso_8601":"2012-05-31T06:33:50+02:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[4039,4040,4041,4042]],"properties":{"objectid":17,"scalerank":6,"featurecla":"Timezone","name":"+2","map_color6":4,"map_color8":3,"note":null,"zone":2,"utc_format":"UTC+02:00","time_zone":"UTC+02:00","iso_8601":"2012-05-31T06:33:50+02:00","places":"Libya, Egypt, Malawi, Mozambique, South Africa, Swaziland, Zambia, Zimbabwe","dst_places":"Bulgaria, Cyprus, Estonia, Finland, Greece, Israel, Jordan, Latvia, Lebanon, Lithuania, Moldova, Palestine, Romania, Syria, Turkey, Ukraine","tz_name1st":"Africa/Johannesburg","tz_namesum":11}},{"type":"Polygon","arcs":[[4043,-3076,4044,4045,-3073,4046,-3071,4047,-3069,4048,-3067,4049,-3065,4050,-3063,4051,-3061,4052,-3059,4053,4054,-3056,4055,-3054,4056,4057,-3051,4058,-3049,4059,4060,-3046,-3045,3044,4061,4062,4063,4064,4065,-877,4066,-875,-1768,-1804,4067,-1802,4068,-1800,4069,-1798,4070,-1796,4071,-1794,4072,-1792,4073,-1790,4074,-1788,4075,-1786,4076,-1784,-3078],[4077],[4078,4079,-887]],"properties":{"objectid":22,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"Maldives, Pakistan","dst_places":null,"tz_name1st":"Asia/Karachi","tz_namesum":5}},{"type":"Polygon","arcs":[[4080,4081]],"properties":{"objectid":36,"scalerank":6,"featurecla":"Timezone","name":"+12.75","map_color6":2,"map_color8":1,"note":null,"zone":12.75,"utc_format":"UTC+12:45","time_zone":"UTC+12:45","iso_8601":"2012-05-31T17:18:50+12:45","places":"Chatham Islands","dst_places":"Chatham Islands","tz_name1st":"Pacific/Chatham","tz_namesum":1}},{"type":"Polygon","arcs":[[4082,4083,4084,4085,4086,-4063,4087],[4088,4089,4090,4091]],"properties":{"objectid":25,"scalerank":6,"featurecla":"Timezone","name":"+6","map_color6":6,"map_color8":8,"note":null,"zone":6,"utc_format":"UTC+06:00","time_zone":"UTC+06:00","iso_8601":"2012-05-31T10:33:50+06:00","places":"Bangladesh","dst_places":null,"tz_name1st":"Asia/Dhaka","tz_namesum":1}},{"type":"Polygon","arcs":[[-782,-1945,4092,-3977]],"properties":{"objectid":29,"scalerank":6,"featurecla":"Timezone","name":"+9","map_color6":3,"map_color8":3,"note":null,"zone":9,"utc_format":"UTC+09:00","time_zone":"UTC+09:00","iso_8601":"2012-05-31T13:33:50+09:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-4078]],"properties":{"objectid":23,"scalerank":6,"featurecla":"Timezone","name":"+5.5","map_color6":3,"map_color8":3,"note":null,"zone":5.5,"utc_format":"UTC+05:30","time_zone":"UTC+05:30","iso_8601":"2012-05-31T10:03:50+05:30","places":"India (Laccadive Is.)","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-2564,4093,4094,-2561,4095,-2559,4096,-2557,4097,-2555,4098,4099,-2552,4100,-2550,4101,-2548,4102,-2546,4103,-2544,4104,-2542,4105,-2540,4106,-2538,4107,-2536,4108,4109,4110,-2532,4111,4112,-2529,4113,-2527,4114,-2525,4115,-2523,4116,-2521,4117,-2519,4118,-2517,4119,4120,-2514,4121,-2512,4122,4123,4124,-2508,4125,-2506,4126,-2504,4127,-2502,4128,-2500,4129,-2498,4130,-2496,4131,-2494,4132,-2492,4133,-2490,4134,-2488,4135,-2486,4136,-2484,4137,4138,-2481,4139,4140,4141,-2477,4142,-2475,4143,-2473,4144,-2471,4145,-2469,4146,4147,-2466,4148,4149,-2463,4150,2460,-2461,-2460,4151,-2458,4152,-2456,4153,-2454,4154,-2452,4155,-2450,4156,-2448,4157,-2446,4158,-2444,4159,-2442,4160,-2440,4161,-2438,4162,-2436,4163,2433,-2434,-2433,4164,-2431,4165,-2429,4166,4167,-2426,4168,-2424,4169,-2422,4170,4171,-2419,4172,-2417,4173,-2415,4174,-2413,4175,2410,-2411,-2410,4176,-2408,4177,-2406,4178,-2404,4179,-2402,4180,-2400,4181,4182,4183,-2396,4184,4185,-2393,4186,-2391,4187,4188,4189,-2387,4190,-2385,4191,-2383,4192,-2381,4193,-2379,4194,-2377,4195,4196,-2374,4197,-2372,4198,-2370,4199,-2368,4200,-2366,4201,-2364,4202,-2362,4203,4204,4205,-2358,4206,4207,-2355,4208,4209,4210,-2351,4211,-2349,4212,-2347,4213,-2345,4214,-2343,4215,-2341,4216,4217,4218,-2337,4219,4220,4221,-2333,4222,-2331,4223,4224,-2328,4225,4226,4227,-2324,4228,-2322,4229,-2320,4230,4231,4232,-2316,4233,-2314,4234,-2312,4235,-2310,4236,4237,-4086,4238,-4084,4239,4240,-2619,4241,-2617,4242,-2615,4243,-2613,4244,-2611,4245,-2609,4246,-2607,4247,-2605,4248,4249,4250,-2601,4251,-2599,4252,-2597,4253,-2595,4254,4255,-2592,4256,4257,4258,4259,-2587,4260,-2585,4261,-2583,4262,-2581,4263,-2579,4264,-2577,4265,2574,-2575,-2574,4266,-2572,4267,-2570,4268,-2568,4269,-2566,4270]],"properties":{"objectid":27,"scalerank":6,"featurecla":"Timezone","name":"+7","map_color6":5,"map_color8":1,"note":null,"zone":7,"utc_format":"UTC+07:00","time_zone":"UTC+07:00","iso_8601":"2012-05-31T11:33:50+07:00","places":"Jakarta, Thailand, Vietnam","dst_places":null,"tz_name1st":"Asia/Jakarta","tz_namesum":9}},{"type":"Polygon","arcs":[[4271,-4092,4272,-4090]],"properties":{"objectid":23,"scalerank":6,"featurecla":"Timezone","name":"+5.5","map_color6":3,"map_color8":3,"note":null,"zone":5.5,"utc_format":"UTC+05:30","time_zone":"UTC+05:30","iso_8601":"2012-05-31T10:03:50+05:30","places":"India (Andaman Is.)","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-3042,4273,-3040,4274,-3038,4275,-3036,4276,4277,-3033,4278,-3031,4279,-3029,4280,-3027,4281,-3026,4282,4283,-3023,4284,4285,-3020,4286,-3018,4287,-3016,4288,-3014,4289,-3012,4290,-3010,4291,-3008,4292,-3006,4293,-3004,4294,4295,-3001,4296,-2999,4297,-2997,4298,4299,-2994,4300,4301,4302,4303,-2989,4304,-2987,4305,-2985,4306,4307,-2982,4308,-2980,4309,4310,4311,-2976,4312,-2974,4313,-2972,4314,4315,-2969,4316,-2967,4317,4318,-1934,-2893,4319,-2891,4320,-2889,4321,-2887,4322,4323,-2884,4324,-2882,4325,-2880,4326,4327,-2877,-911,-2864,4328,4329,-2861,4330,4331,-2858,4332,-2856,4333,4334,-2853,4335,-2851,4336,-2849,4337,-2847,4338,-2845,4339,-2843,4340,-2841,4341,4342,-2838,4343,-2836,4344,4345,4346,4347,-2831,4348,-2829,4349,-2827,4350,-2825,4351,-2823,4352,4353,-2820,4354,-2818,4355,-2816,4356,-2814,4357,-2812,4358,-2810,4359,-2808,4360,-2806,4361,4362,4363,-2802,4364,-2800,4365,-2798,4366,-4088,-4062,-3045,-3044,4367]],"properties":{"objectid":23,"scalerank":6,"featurecla":"Timezone","name":"+5.5","map_color6":3,"map_color8":3,"note":null,"zone":5.5,"utc_format":"UTC+05:30","time_zone":"UTC+05:30","iso_8601":"2012-05-31T10:03:50+05:30","places":"India, Sri Lanka","dst_places":null,"tz_name1st":"Asia/Kolkata","tz_namesum":1}},{"type":"Polygon","arcs":[[-938]],"properties":{"objectid":22,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"Tajikistan","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-937]],"properties":{"objectid":22,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"Uzbekistan","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-936]],"properties":{"objectid":22,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"Uzbekistan","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-3128,4368,4369,-3125,4370,4371,-3122,4372,-3120,4373,4374,4375,-3116,4376,-3114,4377,-3112,4378,-3110,4379,4380,-3107,4381,4382,-3104,4383,-3102,4384,4385,-3099,4386,4387,-3096,4388,-3094,4389,-3092,4390,-3090,4391,-3088,4392,3085,-3086,-3085,-1771,-1805,-1766,-920,-1558]],"properties":{"objectid":22,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"Kazakhstan (West), Uzbekistan","dst_places":null,"tz_name1st":"Asia/Tashkent","tz_namesum":6}},{"type":"Polygon","arcs":[[-1561,4393,-1559,-918]],"properties":{"objectid":22,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-928,4394,4395,4396]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+3","map_color6":3,"map_color8":4,"note":null,"zone":3,"utc_format":"UTC+03:00","time_zone":"UTC+03:00","iso_8601":"2012-05-31T07:33:50+03:00","places":"Belarus","dst_places":null,"tz_name1st":"Europe/Minsk","tz_namesum":1}},{"type":"Polygon","arcs":[[4397,4398]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+3","map_color6":3,"map_color8":4,"note":null,"zone":3,"utc_format":"UTC+03:00","time_zone":"UTC+03:00","iso_8601":"2012-05-31T07:33:50+03:00","places":"Russia (Kaliningrad Oblast)","dst_places":null,"tz_name1st":"Europe/Kaliningrad","tz_namesum":1}},{"type":"Polygon","arcs":[[-932,4399,-931,4400,-929,-4397,4401,-4399,4402],[4403]],"properties":{"objectid":17,"scalerank":6,"featurecla":"Timezone","name":"+2","map_color6":4,"map_color8":3,"note":null,"zone":2,"utc_format":"UTC+02:00","time_zone":"UTC+02:00","iso_8601":"2012-05-31T06:33:50+02:00","places":"Estonia, Finland, Latvia, Lithuania","dst_places":"Estonia, Finland, Latvia, Lithuania","tz_name1st":"Europe/Helsinki","tz_namesum":5}},{"type":"Polygon","arcs":[[4404,-925,4405,-923,-922,921,-1770,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,-4395,-927]],"properties":{"objectid":17,"scalerank":6,"featurecla":"Timezone","name":"+2","map_color6":4,"map_color8":3,"note":null,"zone":2,"utc_format":"UTC+02:00","time_zone":"UTC+02:00","iso_8601":"2012-05-31T06:33:50+02:00","places":"Libya, Egypt, Bulgaria, Cyprus, Greece, Israel, Jordan, Lebanon, Moldova, Palestine, Romania, Syria, Turkey, Ukraine","dst_places":"Bulgaria, Cyprus, Greece, Israel, Jordan, Lebanon, Moldova, Palestine, Romania, Syria, Turkey, Ukraine","tz_name1st":"Europe/Mariehamn","tz_namesum":16}},{"type":"Polygon","arcs":[[4433,-474,4434]],"properties":{"objectid":15,"scalerank":6,"featurecla":"Timezone","name":"0","map_color6":6,"map_color8":1,"note":null,"zone":0,"utc_format":"UTC±00:00","time_zone":"UTC±00:00","iso_8601":"2012-05-31T09:03:50±00:00","places":"Côte d'Ivoire, Ghana, Senegal, Morocco, Portugal (continental and Madeira), Spain (Canary Islands)","dst_places":"Morocco, Portugal (continental and Madeira), Spain (Canary Islands)","tz_name1st":"Europe/Lisbon","tz_namesum":21}},{"type":"Polygon","arcs":[[4435,-156,4436,4437,4438]],"properties":{"objectid":12,"scalerank":6,"featurecla":"Timezone","name":"0","map_color6":6,"map_color8":1,"note":null,"zone":0,"utc_format":"UTC±00:00","time_zone":"UTC±00:00","iso_8601":"2012-05-31T09:03:50±00:00","places":"Greenland (north eastern part)","dst_places":null,"tz_name1st":"America/Danmarkshavn","tz_namesum":1}},{"type":"Polygon","arcs":[[4439,4440,-477,-453,4441,-451,-149]],"properties":{"objectid":15,"scalerank":6,"featurecla":"Timezone","name":"0","map_color6":6,"map_color8":1,"note":null,"zone":0,"utc_format":"UTC±00:00","time_zone":"UTC±00:00","iso_8601":"2012-05-31T09:03:50±00:00","places":"Iceland, United Kingdom, Ireland","dst_places":"Ireland, United Kingdom","tz_name1st":"Europe/London","tz_namesum":5}},{"type":"Polygon","arcs":[[-2307,4442,4443,-3979,-3986,4444]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+8.75","map_color6":2,"map_color8":2,"note":null,"zone":8.75,"utc_format":"UTC+08:45","time_zone":"UTC+08:45","iso_8601":"2012-05-31T09:33:50+08:45","places":"Australia (Eucla)","dst_places":null,"tz_name1st":"Australia/Eucla","tz_namesum":0}},{"type":"Polygon","arcs":[[-935,-4038]],"properties":{"objectid":18,"scalerank":6,"featurecla":"Timezone","name":"+3","map_color6":3,"map_color8":4,"note":null,"zone":3,"utc_format":"UTC+03:00","time_zone":"UTC+03:00","iso_8601":"2012-05-31T07:33:50+03:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[4445,-3974,4446,-3972,4447,-3970,-939,4448]],"properties":{"objectid":27,"scalerank":6,"featurecla":"Timezone","name":"+7","map_color6":5,"map_color8":1,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":7,"utc_format":"UTC+07:00","time_zone":"UTC+07:00","iso_8601":"2012-05-31T11:33:50+07:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-4039,-933,-4403,-4398,-4402,-4396,-4433,4449,4039,-4040,-4043,4450,4451,-4435,-473,-4441,4452]],"properties":{"objectid":16,"scalerank":6,"featurecla":"Timezone","name":"+1","map_color6":5,"map_color8":2,"note":null,"zone":1,"utc_format":"UTC+01:00","time_zone":"UTC+01:00","iso_8601":"2012-05-31T05:33:50+01:00","places":"Angola, Cameroon, Nigeria, Tunisia","dst_places":"Albania, Algeria, Austria, Belgium, Bosnia & Herz., Spain (continental), Croatia, Czech Republic, Denmark, Germany, Hungary, Italy, Kinshasa, Kosovo, Macedonia, France (metropolitan), Netherlands,Norway,Poland,Serbia,Slovakia,Slovenia,Sweden,Switzerland","tz_name1st":"Europe/Paris","tz_namesum":48}},{"type":"Polygon","arcs":[[-4239,-4085]],"properties":{"objectid":26,"scalerank":6,"featurecla":"Timezone","name":"+6.5","map_color6":2,"map_color8":6,"note":null,"zone":6.5,"utc_format":"UTC+06:30","time_zone":"UTC+06:30","iso_8601":"2012-05-31T11:03:50+06:30","places":"Cocos Islands","dst_places":null,"tz_name1st":"Indian/Cocos","tz_namesum":1}},{"type":"Polygon","arcs":[[-2793,4453,4454,-2790,4455,-2788,4456,-2786,4457,-2784,4458,-2782,4459,4460,4461,4462,-2777,4463,-2775,4464,-2773,4465,-2771,4466,4467,-2768,4468,-2766,4469,4470,-2763,4471,-2761,4472,-2759,4473,-2757,4474,-2755,4475,-2753,4476,-2751,4477,-2749,4478,-2747,4479,4480,-2744,4481,4482,-2741,4483,-2739,4484,-2737,4485,4486,-2734,4487,4488,4489,4490,-2729,4491,-2727,4492,-2725,4493,4494,-2722,4495,4496,-2720,4497,-2718,4498,-2716,4499,-2714,4500,-2712,4501,-2710,4502,-2708,4503,4504,-2705,4505,4506,4507,-2701,4508,-2699,4509,-2697,4510,4511,-2694,4512,-2692,4513,4514,-2689,4515,-2687,4516,4517,-2684,4518,-2682,4519,-2680,4520,-2678,4521,4522,-2675,4523,-2673,4524,4525,-2670,4526,-2668,4527,4528,-2665,4529,4530,-2662,4531,-2660,4532,-2658,4533,4534,-2655,4535,4536,-2652,4537,-2650,4538,4539,-2647,4540,-2645,4541,4542,-2642,4543,4544,4545,-2638,4546,-2636,4547,4548,-2633,4549,-2631,4550,-2629,4551,4552,-2626,4553,4554,-2623,4555,-2621,-4240,-4083,-4367,-2797,4556,-2795,4557]],"properties":{"objectid":26,"scalerank":6,"featurecla":"Timezone","name":"+6.5","map_color6":2,"map_color8":6,"note":null,"zone":6.5,"utc_format":"UTC+06:30","time_zone":"UTC+06:30","iso_8601":"2012-05-31T11:03:50+06:30","places":"Myanmar","dst_places":null,"tz_name1st":"Asia/Rangoon","tz_namesum":1}},{"type":"Polygon","arcs":[[-60,-28,4558,-26,4559]],"properties":{"objectid":1,"scalerank":6,"featurecla":"Timezone","name":"-12","map_color6":1,"map_color8":8,"note":null,"zone":-12,"utc_format":"UTC-12:00","time_zone":"UTC-12:00","iso_8601":"2012-05-30T16:33:50-12:00","places":"Baker Island, Howland Island (both uninhabited)","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[4560,-94,4561,-25,4562,-494,4563,4564]],"properties":{"objectid":1,"scalerank":6,"featurecla":"Timezone","name":"-12","map_color6":1,"map_color8":8,"note":null,"zone":-12,"utc_format":"UTC-12:00","time_zone":"UTC-12:00","iso_8601":"2012-05-30T16:33:50-12:00","places":"Pacific Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[71,-72]],"properties":{"objectid":4,"scalerank":6,"featurecla":"Timezone","name":"-9","map_color6":3,"map_color8":5,"note":null,"zone":-9,"utc_format":"UTC-09:00","time_zone":"UTC-09:00","iso_8601":"2012-05-30T19:33:50-09:00","places":"Gambier Islands","dst_places":"United States (most of Alaska)","tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-482,-116,-481,-75,-121,4565,-119,-71,4566,4567,4568,4569,4570,4571,-9,4572,-1]],"properties":{"objectid":4,"scalerank":6,"featurecla":"Timezone","name":"-9","map_color6":3,"map_color8":5,"note":null,"zone":-9,"utc_format":"UTC-09:00","time_zone":"UTC-09:00","iso_8601":"2012-05-30T19:33:50-09:00","places":"United States (most of Alaska)","dst_places":"United States (most of Alaska)","tz_name1st":"America/Anchorage","tz_namesum":4}},{"type":"Polygon","arcs":[[-77,-480,4573]],"properties":{"objectid":4,"scalerank":6,"featurecla":"Timezone","name":"-9","map_color6":3,"map_color8":5,"note":null,"zone":-9,"utc_format":"UTC-09:00","time_zone":"UTC-09:00","iso_8601":"2012-05-30T19:33:50-09:00","places":"Gambier Islands","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-1769,-884,4574,-882,-916,-880,4575,-4041,-4040,-4450,-4432,4576,-4430,4577,-4428,4578,-4426,4579,-4424,4580,-4422,4581,-4420,4582,-4418,4583,-4416,4584,-4414,4585,-4412,4586,-4410,4587,4588,-4407]],"properties":{"objectid":18,"scalerank":6,"featurecla":"Timezone","name":"+3","map_color6":3,"map_color8":4,"note":null,"zone":3,"utc_format":"UTC+03:00","time_zone":"UTC+03:00","iso_8601":"2012-05-31T07:33:50+03:00","places":"Djibouti, Eritrea, Ethiopia, Iraq, Kenya, Madagasca, Saudi Arabia, South Sudan, Sudan, Somalia, South Sudan, Tanzania, Uganda, Yemen","dst_places":null,"tz_name1st":"Asia/Riyadh","tz_namesum":19}},{"type":"Polygon","arcs":[[-3697,4589,-3695,4590,-3693,4591,4592,4593,-3689,4594,-3687,4595,-3685,4596,-3683,4597,-3681,4598,4599,4600,4601,-3676,4602,-3674,4603,-3672,4604,-3670,4605,-3668,4606,-3666,4607,-3664,4608,-3662,4609,-3660,4610,-3658,4611,-3656,4612,-3654,4613,-3652,4614,-3650,4615,-3648,4616,-3646,4617,4618,4619,-3642,4620,-3640,4621,-3638,4622,-3636,4623,-3634,4624,-3632,4625,4626,4627,-3628,4628,-3626,4629,4630,-3623,4631,-3621,4632,-3619,4633,4634,-3616,4635,-3614,4636,4637,4638,-3610,4639,-3608,4640,4641,-3605,4642,-3603,4643,-3601,4644,-3599,4645,-3597,4646,4647,-3594,4648,-3592,4649,-3590,4650,4651,-3587,4652,-3585,4653,4654,-3582,4655,-3580,4656,4657,-3577,4658,-3575,4659,-3573,4660,-3571,4661,-3569,4662,-3567,4663,-3565,4664,-3563,4665,4666,-3560,4667,-3558,4668,-3556,4669,-3554,4670,-3552,4671,-3550,4672,4673,-3547,4674,-3545,4675,-3543,4676,-3541,4677,-3539,4678,4679,-3536,4680,-3534,4681,-3532,4682,-3530,4683,-3528,4684,-3526,4685,-3524,4686,4687,-3521,4688,-3519,4689,4690,-3516,4691,-3514,4692,-3512,4693,-3510,4694,-3508,4695,4696,-3505,4697,-3503,4698,-3501,4699,4700,-3498,4701,-3496,4702,-3494,4703,-3492,4704,4705,4706,-3488,4707,-3486,4708,-3484,4709,-3482,4710,4711,-3479,4712,4713,-3476,4714,4715,-3473,4716,-3471,4717,4718,-3468,4719,-3466,4720,-3464,4721,4722,-3461,4723,-3459,4724,-3457,4725,-3455,4726,-3453,4727,-3451,4728,4729,4730,4731,-3446,4732,4733,-3443,4734,-3441,4735,-3439,4736,-3437,4737,-3435,4738,-3433,4739,-3431,4740,-3429,4741,-3427,4742,-3425,4743,4744,-3422,4745,-3420,4746,-3418,4747,4748,4749,-3414,4750,-3412,4751,-3410,4752,-3408,4753,-3406,4754,4755,-3403,4756,4757,-3400,4758,4759,-3397,4760,-3395,4761,-3393,4762,4763,-3390,4764,-3388,4765,-3386,4766,-3384,4767,-3382,4768,4769,4770,-3378,4771,-3376,4772,-3374,4773,-3372,4774,-3370,4775,-3368,4776,-3366,4777,-3364,4778,4779,4780,-3360,4781,-3358,4782,-3356,4783,4784,4785,4786,-3351,4787,-3349,4788,-3347,4789,-3345,4790,-3343,4791,-3341,4792,4793,-3338,4794,-3336,4795,-3334,4796,-3332,4797,4798,-3329,4799,-3327,4800,-3325,4801,-3323,4802,-3321,4803,-3319,4804,-3317,4805,-3315,4806,-3313,4807,-3311,4808,-3309,4809,-3307,4810,-3305,4811,4812,-3302,4813,-3300,4814,4815,-3297,4816,-3295,4817,-3293,4818,4819,-3290,4820,-3288,4821,-3286,4822,-3284,4823,-3282,4824,4825,-3279,4826,-3277,4827,-3275,4828,4829,4830,-3271,4831,-3269,4832,4833,-3266,4834,-3264,4835,-3262,4836,4837,-3259,4838,-3257,4839,4840,4841,-3253,4842,-3251,4843,-3249,4844,4845,-3246,4846,4847,-3243,4848,-3241,4849,-3239,4850,-3237,4851,-3235,4852,4853,4854,4855,-3230,4856,-3228,4857,-3226,4858,-3224,4859,-3222,4860,-3220,4861,-3218,4862,-3217,4863,-3215,4864,-3213,4865,-3211,-1408]],"properties":{"objectid":27,"scalerank":6,"featurecla":"Timezone","name":"+7","map_color6":5,"map_color8":1,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":7,"utc_format":"UTC+07:00","time_zone":"UTC+07:00","iso_8601":"2012-05-31T11:33:50+07:00","places":"Russia (Novosibirsk Oblast), Mongolia (western part)","dst_places":null,"tz_name1st":"Asia/Omsk","tz_namesum":4}},{"type":"Polygon","arcs":[[-145,-446,-445]],"properties":{"objectid":12,"scalerank":6,"featurecla":"Timezone","name":"-3","map_color6":3,"map_color8":6,"note":null,"zone":-3,"utc_format":"UTC-03:00","time_zone":"UTC-03:00","iso_8601":"2012-05-31T01:33:50-03:00","places":"St. Pierre et Miquelon","dst_places":null,"tz_name1st":"America/Miquelon","tz_namesum":1}},{"type":"Polygon","arcs":[[4866,-448,4867,-158,4868,-4439,4869,4870,-155,4871,-153,4872,-151,-472,4873,-470,4874,-468,4875,4876,4877,-464,4878,-462,4879,4880,-438,4881,-436,4882,-434,4883,-432,4884,-430,4885,-428,4886,-426,4887,-424,4888,-422,4889,-420,4890,-418,4891,-416,4892,-414,4893,-412,4894,-410,4895,-408,4896,-406,4897,-404,4898,-402,4899,-400,4900,-398,4901,-396,4902,-394,4903,-392,4904,-390,4905,-388,4906,-386,4907,-384,4908,-382,4909,-380,4910,-378,4911,-376,4912,-374,4913,-372,4914,-370,4915,-368,4916,-366,4917,-364,4918,-362,4919,-360,4920,-358,4921,-356,4922,-354,4923,-352,4924,-350,4925,-348,4926,-346,4927,-344,4928,-342,4929,-340,4930,-338,4931,-336,4932,-334,4933,-332,4934,-330,4935,-328,4936,-326,4937,-324,4938,-322,4939,-320,4940,-318,4941,-316,4942,-314,4943,-312,4944,-310,4945,-308,4946,-306,4947,-304,4948,-302,4949,-300,4950,-298,4951,-296,4952,-294,4953,-292,4954,-290,4955,-288,4956,-286,4957,-284,4958,-282,4959,-280,4960,-278,4961,-276,4962,-274,4963,-272,4964,-270,4965,-268,4966,-266,4967,-264,4968,-262,4969,-260,4970,-258,4971,-256,4972,-254,4973,-252,4974,-250,4975,-248,4976,-246,4977,-244,4978,-242,4979,-240,4980,-238,4981,-236,4982,-234,4983,-232,4984,-230,4985,-228,4986,-226,4987,-224,4988,-222,4989,-220,4990,-218,4991,-216,4992,-214,4993,-212,4994,-210,4995,-208,4996,-206,4997,-204,4998,-202,4999,-200,5000,-198,5001,-196,5002,-194,5003,-192,5004,-190,5005,-188,5006,-186,5007,-184,5008,-182,5009,-180,5010,-178,5011,-176,5012,-174,5013,-172,5014,-170,5015,-168,5016,-166,5017,-164,5018,-162,-142,-444,5019,5020,-130,-147,5021]],"properties":{"objectid":12,"scalerank":6,"featurecla":"Timezone","name":"-3","map_color6":3,"map_color8":6,"note":null,"zone":-3,"utc_format":"UTC-03:00","time_zone":"UTC-03:00","iso_8601":"2012-05-31T01:33:50-03:00","places":"Greenland (central part)","dst_places":null,"tz_name1st":"America/Sao_Paulo","tz_namesum":23}},{"type":"Polygon","arcs":[[-4082,5022],[-4564,5023,-492,5024,-490,-48,5025,-46,5026,-44,5027,-42,5028,-97,5029]],"properties":{"objectid":35,"scalerank":6,"featurecla":"Timezone","name":"+12","map_color6":6,"map_color8":2,"note":null,"zone":12,"utc_format":"UTC+12:00","time_zone":"UTC+12:00","iso_8601":"2012-05-31T16:33:50+12:00","places":"New Zealand, Kiribati (Gilbert Islands), Fiji","dst_places":"New Zealand","tz_name1st":"Pacific/Auckland","tz_namesum":9}},{"type":"MultiPolygon","arcs":[[[5030,5031,5032]],[[5033],[5034,-787,5035,5036,-784,5037,-4,5038]]],"properties":{"objectid":35,"scalerank":6,"featurecla":"Timezone","name":"+12","map_color6":6,"map_color8":2,"note":null,"zone":12,"utc_format":"UTC+12:00","time_zone":"UTC+12:00","iso_8601":"2012-05-31T16:33:50+12:00","places":"New Zealand","dst_places":"New Zealand","tz_name1st":"Pacific/Auckland","tz_namesum":9}},{"type":"Polygon","arcs":[[5039,-38,5040]],"properties":{"objectid":1,"scalerank":6,"featurecla":"Timezone","name":"-11","map_color6":5,"map_color8":3,"note":null,"zone":-11,"utc_format":"UTC-11:00","time_zone":"UTC-11:00","iso_8601":"2012-05-30T17:33:50-11:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"Polygon","arcs":[[-5041,-78,5041]],"properties":{"objectid":2,"scalerank":6,"featurecla":"Timezone","name":"-10","map_color6":4,"map_color8":4,"note":null,"zone":-10,"utc_format":"UTC-10:00","time_zone":"UTC-10:00","iso_8601":"2012-05-30T18:33:50-10:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"Polygon","arcs":[[-100,-5040,5042]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"-12","map_color6":1,"map_color8":8,"note":null,"zone":-12,"utc_format":"UTC-12:00","time_zone":"UTC-12:00","iso_8601":"2012-05-30T16:33:50-12:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"Polygon","arcs":[[5043,-112,5044]],"properties":{"objectid":7,"scalerank":6,"featurecla":"Timezone","name":"-7","map_color6":1,"map_color8":1,"note":null,"zone":-7,"utc_format":"UTC-07:00","time_zone":"UTC-07:00","iso_8601":"2012-05-30T21:33:50-07:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"Polygon","arcs":[[-5045,-125,5045]],"properties":{"objectid":8,"scalerank":6,"featurecla":"Timezone","name":"-6","map_color6":6,"map_color8":2,"note":null,"zone":-6,"utc_format":"UTC-06:00","time_zone":"UTC-06:00","iso_8601":"2012-05-30T22:33:50-06:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"MultiPolygon","arcs":[[[5046,-138,5047,5048]],[[-5046,-140,5049,5050,5051,5052]]],"properties":{"objectid":9,"scalerank":6,"featurecla":"Timezone","name":"-5","map_color6":5,"map_color8":3,"note":null,"zone":-5,"utc_format":"UTC-05:00","time_zone":"UTC-05:00","iso_8601":"2012-05-30T23:33:50-05:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"Polygon","arcs":[[5053],[5054,-5051,5055,5056,5057,-5048,-441,5058,-439,5059]],"properties":{"objectid":10,"scalerank":6,"featurecla":"Timezone","name":"-4","map_color6":4,"map_color8":4,"note":null,"zone":-4,"utc_format":"UTC-04:00","time_zone":"UTC-04:00","iso_8601":"2012-05-31T00:33:50-04:00","places":"Palmer, Escudero, Great Wall, Gen. Bernado O'Higgins Stations","dst_places":"Falkland Islands, Palmer Station, Capitan Arturo Prat Station, Escudero Base, Gen. Bernado O'Higgons Station,","tz_name1st":"Antarctica/Palmer","tz_namesum":1}},{"type":"Polygon","arcs":[[5060,5061,5062,-459,5063,5064,5065,5066,-455,5067,5052]],"properties":{"objectid":13,"scalerank":6,"featurecla":"Timezone","name":"-2","map_color6":2,"map_color8":7,"note":null,"zone":-2,"utc_format":"UTC-02:00","time_zone":"UTC-02:00","iso_8601":"2012-05-31T02:33:50-02:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"Polygon","arcs":[[-5068,-476,5068,5069]],"properties":{"objectid":14,"scalerank":6,"featurecla":"Timezone","name":"-1","map_color6":1,"map_color8":8,"note":null,"zone":-1,"utc_format":"UTC-01:00","time_zone":"UTC-01:00","iso_8601":"2012-05-31T03:33:50-01:00","places":"Aboa, Svea, Wasa, Novolazarevskaya Stations","dst_places":null,"tz_name1st":"Antarctica/Central","tz_namesum":1}},{"type":"Polygon","arcs":[[5070,-479,-5044]],"properties":{"objectid":6,"scalerank":6,"featurecla":"Timezone","name":"-8","map_color6":2,"map_color8":7,"note":null,"zone":-8,"utc_format":"UTC-08:00","time_zone":"UTC-08:00","iso_8601":"2012-05-30T20:33:50-08:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"Polygon","arcs":[[5071,-3983,-505,5072,-5053]],"properties":{"objectid":31,"scalerank":6,"featurecla":"Timezone","name":"+10","map_color6":2,"map_color8":5,"note":null,"zone":10,"utc_format":"UTC+10:00","time_zone":"UTC+10:00","iso_8601":"2012-05-31T14:33:50+10:00","places":"Dumont d'Urville Station","dst_places":null,"tz_name1st":"Antarctica/DumontDUrville","tz_namesum":1}},{"type":"Polygon","arcs":[[-5073,-790,5073,5074,5075,5076,5077,5078,5079,5080,5081]],"properties":{"objectid":33,"scalerank":6,"featurecla":"Timezone","name":"+11","map_color6":1,"map_color8":6,"note":null,"zone":11,"utc_format":"UTC+11:00","time_zone":"UTC+11:00","iso_8601":"2012-05-31T15:33:50+11:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"Polygon","arcs":[[5082,-879,5083]],"properties":{"objectid":20,"scalerank":6,"featurecla":"Timezone","name":"+4","map_color6":2,"map_color8":5,"note":null,"zone":4,"utc_format":"UTC+04:00","time_zone":"UTC+04:00","iso_8601":"2012-05-31T08:33:50+04:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"Polygon","arcs":[[5084],[5085,5086,-4237,-2309,5087]],"properties":{"objectid":28,"scalerank":6,"featurecla":"Timezone","name":"+8","map_color6":4,"map_color8":2,"note":null,"zone":8,"utc_format":"UTC+08:00","time_zone":"UTC+08:00","iso_8601":"2012-05-31T12:33:50+08:00","places":"Casety Station","dst_places":null,"tz_name1st":"Antarctica/Casey","tz_namesum":1}},{"type":"Polygon","arcs":[[-5088,-3984,-5072]],"properties":{"objectid":29,"scalerank":6,"featurecla":"Timezone","name":"+9","map_color6":3,"map_color8":3,"note":null,"zone":9,"utc_format":"UTC+09:00","time_zone":"UTC+09:00","iso_8601":"2012-05-31T13:33:50+09:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"Polygon","arcs":[[5088,5089,5090,-4042]],"properties":{"objectid":17,"scalerank":6,"featurecla":"Timezone","name":"+2","map_color6":4,"map_color8":3,"note":null,"zone":2,"utc_format":"UTC+02:00","time_zone":"UTC+02:00","iso_8601":"2012-05-31T06:33:50+02:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"Polygon","arcs":[[-5084,-878,-4066,5091,-4064,5092]],"properties":{"objectid":22,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"Mawson Station, Zhongshan Station","dst_places":null,"tz_name1st":"Antarctica/Mawson","tz_namesum":1}},{"type":"Polygon","arcs":[[-5093,-4087,5093]],"properties":{"objectid":25,"scalerank":6,"featurecla":"Timezone","name":"+6","map_color6":6,"map_color8":8,"note":null,"zone":6,"utc_format":"UTC+06:00","time_zone":"UTC+06:00","iso_8601":"2012-05-31T10:33:50+06:00","places":"Mirny Station","dst_places":null,"tz_name1st":"Antarctica/Mirny","tz_namesum":1}},{"type":"Polygon","arcs":[[5094],[-5094,-4238,-5087,5095]],"properties":{"objectid":27,"scalerank":6,"featurecla":"Timezone","name":"+7","map_color6":5,"map_color8":1,"note":null,"zone":7,"utc_format":"UTC+07:00","time_zone":"UTC+07:00","iso_8601":"2012-05-31T11:33:50+07:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"Polygon","arcs":[[-5070,5096,-4434,-4452,5097,5098]],"properties":{"objectid":15,"scalerank":6,"featurecla":"Timezone","name":"0","map_color6":6,"map_color8":1,"note":null,"zone":0,"utc_format":"UTC±00:00","time_zone":"UTC±00:00","iso_8601":"2012-05-31T09:03:50±00:00","places":"Troll Station, Maitri Station","dst_places":null,"tz_name1st":"Antarctica/Troll","tz_namesum":1}},{"type":"Polygon","arcs":[[5099,-5098,-4451,-5091,5100]],"properties":{"objectid":16,"scalerank":6,"featurecla":"Timezone","name":"+1","map_color6":5,"map_color8":2,"note":null,"zone":1,"utc_format":"UTC+01:00","time_zone":"UTC+01:00","iso_8601":"2012-05-31T05:33:50+01:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"Polygon","arcs":[[-5042,-4574,-5071]],"properties":{"objectid":4,"scalerank":6,"featurecla":"Timezone","name":"-9","map_color6":3,"map_color8":5,"note":null,"zone":-9,"utc_format":"UTC-09:00","time_zone":"UTC-09:00","iso_8601":"2012-05-30T19:33:50-09:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"Polygon","arcs":[[5101,-5089,-4576,-5083]],"properties":{"objectid":18,"scalerank":6,"featurecla":"Timezone","name":"+3","map_color6":3,"map_color8":4,"note":null,"zone":3,"utc_format":"UTC+03:00","time_zone":"UTC+03:00","iso_8601":"2012-05-31T07:33:50+03:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0}},{"type":"Polygon","arcs":[[-461,5102,-5062,5103,-4880]],"properties":{"objectid":12,"scalerank":6,"featurecla":"Timezone","name":"-3","map_color6":3,"map_color8":6,"note":null,"zone":-3,"utc_format":"UTC-03:00","time_zone":"UTC-03:00","iso_8601":"2012-05-31T01:33:50-03:00","places":"General Belgrano, Doctor Sobral Stations","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":23}},{"type":"Polygon","arcs":[[-5082,5104,5105,-5079,5106,-5077,5107,-5075,5108,-788,-5035,-5031,5109]],"properties":{"objectid":35,"scalerank":6,"featurecla":"Timezone","name":"+12","map_color6":6,"map_color8":2,"note":null,"zone":12,"utc_format":"UTC+12:00","time_zone":"UTC+12:00","iso_8601":"2012-05-31T16:33:50+12:00","places":"McMurdo Station, Scott Base, Zucchelli Station","dst_places":"McMurdo Station, Scott Base, Zucchelli Station","tz_name1st":"Antarctica/South_Pole","tz_namesum":1}},{"type":"Polygon","arcs":[[-5085]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+10","map_color6":2,"map_color8":5,"note":null,"zone":10,"utc_format":"UTC+10:00","time_zone":"UTC+10:00","iso_8601":"2012-05-30T18:33:50+10:00","places":"Concordia Research Station","dst_places":null,"tz_name1st":"Antarctica/DumontDUrville","tz_namesum":1}},{"type":"Polygon","arcs":[[-5095]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+6","map_color6":6,"map_color8":8,"note":null,"zone":6,"utc_format":"UTC+06:00","time_zone":"UTC+06:00","iso_8601":"2012-05-30T16:33:50+06:00","places":"Vostok Station","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-4065,-5092]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+7","map_color6":5,"map_color8":1,"note":null,"zone":7,"utc_format":"UTC+07:00","time_zone":"UTC+07:00","iso_8601":"2012-05-30T16:33:50+07:00","places":"Davis Station","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-475,-5097,-5069]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+1","map_color6":5,"map_color8":2,"note":null,"zone":6,"utc_format":"UTC+01:00","time_zone":"UTC+01:00","iso_8601":"ccccc","places":"Neumayer Station","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-457,5110,5111,-5065,5112]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"0","map_color6":6,"map_color8":1,"note":"DST is -3","zone":0,"utc_format":"UTC±00:00","time_zone":"UTC±00:00","iso_8601":"2012-05-30T16:33:50±00:00","places":"Halley Station","dst_places":"Halley Station","tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-5047,5113,-5057,5114,-139]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"-3","map_color6":3,"map_color8":6,"note":null,"zone":-3,"utc_format":"UTC-03:00","time_zone":"UTC-03:00","iso_8601":"2012-05-30T16:33:50-03:00","places":"Rothera, San Martín Stations","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-5054]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"-3","map_color6":3,"map_color8":6,"note":null,"zone":-3,"utc_format":"UTC-03:00","time_zone":"UTC-03:00","iso_8601":"2012-05-30T16:33:50-03:00","places":"Teniente Jubany Station","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[-440,-5059]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"-3","map_color6":3,"map_color8":6,"note":null,"zone":-3,"utc_format":"UTC-03:00","time_zone":"UTC-03:00","iso_8601":"2012-05-30T16:33:50-03:00","places":"Esperanza, Vicecomodoro Marambio Stations","dst_places":null,"tz_name1st":null,"tz_namesum":0}},{"type":"Polygon","arcs":[[5115,-13,5116,-11,5117,-4572,5118,-4570,5119,5120,-68,5121,5122,5123,-64,5124,-62,5125,-103]],"properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+12","map_color6":6,"map_color8":2,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":12,"utc_format":"UTC-12:00","time_zone":"UTC-12:00","iso_8601":"2012-05-30T16:33:50+12:00","places":"Russia (Kamchatka Krai)","dst_places":null,"tz_name1st":"Asia/Kamchatka","tz_namesum":3}}]}},"arcs":[[[0,99999],[10409,-258],[0,-257],[1,-258],[0,-257],[1,-258],[0,-257],[1,-258],[1,-258],[0,-257],[1,-258],[0,-257],[1,-253],[0,-252],[1,-253],[0,-252],[1,-253],[1,-252],[0,-253],[1,-252],[0,-253],[1,-252],[0,-253],[1,-253],[0,-252],[1,-253],[0,-252],[1,-253],[1,-252],[0,-253],[1,-252],[0,-253],[1,-252],[0,-253],[1,-252],[0,-252],[1,-252],[0,-252],[1,-253],[1,-252],[0,-252],[1,-252],[0,-252],[1,-252],[1,-75],[-13,6],[-53,18],[-134,31],[-106,4],[-38,-2],[-68,-14],[-88,-11],[-54,-17],[-45,-8],[-44,-16],[-16,-3],[-44,16],[-40,8],[-60,25],[-58,30],[-58,16],[-29,3],[-43,0],[-49,6],[-81,2],[-82,2],[-37,0],[-47,-5],[-28,2],[-31,10],[-38,26],[-35,17],[-55,14],[-53,20],[-67,7],[-21,5],[-18,9],[-42,32],[-22,12],[-119,41],[-39,8],[-35,2],[-35,-2],[-83,-17],[-75,-4],[-68,-12],[-94,11],[-80,-3],[-48,-7],[-49,-16],[-10,-1],[-54,36],[-26,10],[-31,9],[-2,48],[-18,36],[-42,37],[-27,16],[-29,13],[-60,18],[-43,9],[-100,10],[-120,17],[-32,1],[-33,-2],[-75,-18],[-93,1],[-32,31],[-63,47],[-22,12],[-43,15],[-39,21],[-33,10],[-37,6],[-33,1],[-45,-3],[-32,11],[-82,20],[-17,7],[-14,26],[-26,26],[-23,18],[-27,14],[-35,13],[-33,7],[-36,4],[-36,-1],[-38,-7],[-42,-15],[-44,-23],[-53,-34],[-40,-30],[-36,-33],[-12,-16]],[[6243,89627],[0,27],[0,138],[0,260],[0,260],[0,259],[0,260],[0,260],[0,259],[0,260]],[[6243,91610],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,257],[0,258],[0,257],[0,258],[0,258],[0,257],[0,258],[0,257],[0,258],[0,257],[-6243,258]],[[0,76666],[99875,123],[-123,123],[-127,141],[-121,124],[-124,127],[-121,124],[-118,119],[-120,121],[-134,136],[-114,114],[-122,122],[-126,127],[-120,119],[-124,124],[-128,126],[-107,106],[-124,122]],[[97922,78764],[-128,125],[-91,89],[-110,107],[-149,145],[-87,83],[-136,131]],[[97221,79444],[76,106],[76,106],[76,105],[75,105],[76,103],[74,103],[75,101],[74,101],[74,101],[110,147],[110,148],[73,97],[73,97],[72,95],[72,95],[71,93],[112,147],[100,130],[84,108],[56,72],[74,94],[65,82],[58,75],[78,99],[71,89],[65,81],[76,95],[57,72],[78,97],[54,67],[77,95],[121,148],[132,161],[88,106],[75,91]],[[99999,83056],[-99999,-113],[0,-6277]],[[6243,91610],[0,-248],[0,-248],[0,-248],[0,-247],[0,-248],[-1,-248],[0,-248],[0,-248]],[[6242,89627],[-43,-55],[-26,-26],[-46,-35],[-64,-39],[-26,-4],[-70,7],[-65,-6],[-59,19],[-51,5],[-60,-7],[-84,-20],[-68,-23],[-50,-25],[-21,-16],[-43,-40],[-71,-48],[-63,-58],[-86,-47],[-48,-32],[-17,-1],[-134,20],[-31,1],[-27,-4],[-50,-16],[-68,-40],[-83,-40],[-37,-28],[-29,-28],[-65,-91],[-77,-87],[-20,-31],[-46,-119],[-3,-32],[1,-82],[-5,-25],[-12,-22],[-69,-79],[-86,-56],[-34,-13],[-106,-8],[-87,-19],[-49,-1],[-60,-6],[-129,14],[-80,-6],[-38,-9],[-32,-16],[-25,-20],[-20,-25],[-7,-25],[-124,-101],[-123,-102],[-124,-101],[-123,-101],[-123,-101]],[[3056,87777],[-109,138],[-85,149]],[[2862,88064],[-120,178],[-113,164],[-98,140]],[[2531,88546],[-125,174],[-104,144]],[[2302,88864],[-110,149],[-111,148]],[[2081,89161],[0,116],[0,259],[0,259],[0,260],[0,259],[0,259],[0,259],[0,260]],[[2081,91092],[0,259],[0,259],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,257],[0,258],[0,257],[0,258],[0,258],[0,257],[0,258],[0,257],[0,258],[0,257],[-2081,258]],[[2088,58344],[0,-11]],[[2088,58333],[130,0],[129,0],[130,0],[130,0],[129,0],[130,0],[135,0],[135,0],[136,0],[135,0],[135,0],[135,0],[136,0],[135,0],[135,0],[135,0],[135,0],[136,0],[135,0],[135,0],[135,0],[135,0],[136,0],[135,0],[135,0],[135,0],[135,0],[136,0],[135,0],[135,0],[0,-1],[134,0],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278]],[[6245,53055],[1,-313]],[[6246,52742],[-143,0],[-131,0],[-143,0],[-143,0],[-132,0],[-176,0]],[[5378,52742],[0,-223],[0,-263]],[[5378,52256],[0,-309],[0,-274],[0,-275],[0,-285],[0,-281]],[[5378,50832],[109,-175],[93,-149],[95,-153],[91,-146],[79,-127],[131,-209]],[[5976,49873],[0,-212],[0,-219],[0,-269],[0,-272],[0,-296]],[[5976,48605],[-155,0],[-146,0],[-126,0],[-147,0],[-136,0],[-137,0],[-136,0],[-136,0],[-147,0],[-136,0],[-137,0],[-136,0],[-136,0],[-147,0],[-137,0],[-126,0],[-146,0],[-126,0],[-199,0],[-147,0],[-158,0],[-167,0],[-147,0],[-126,0],[-168,0],[-168,0],[-120,0],[0,210],[0,199],[0,222],[0,207]],[[2083,49443],[0,278],[0,278],[0,278],[0,278],[0,277],[0,278],[0,278],[0,278],[0,277],[0,278],[0,278],[0,278],[0,278],[0,277],[0,278],[0,278],[0,278],[0,277],[0,278],[0,278],[0,278],[0,278],[0,277],[0,278],[0,278],[0,278],[0,277],[0,278],[0,278],[0,278],[0,277],[0,278],[5,12]],[[0,69443],[139,0],[139,0],[139,0],[139,0],[138,0],[139,0],[139,0],[139,0],[139,0],[139,0],[139,0],[139,0],[139,0],[138,0],[139,0],[0,268],[0,267],[0,268],[0,267],[0,268],[-1,267],[0,268],[0,267],[0,268],[0,267],[0,268]],[[2082,72386],[0,267],[0,268]],[[2082,72921],[-1,268],[0,267],[0,268],[0,267],[0,268],[0,267],[0,268],[-1,267],[0,268],[0,267],[0,268],[0,267],[0,268],[0,267]],[[2080,76666],[134,0],[135,0],[134,0],[134,0],[135,0],[134,0],[135,0],[134,0],[135,0],[134,0],[135,1],[134,0],[135,0],[134,0],[135,0],[134,0],[135,0],[134,0],[135,0],[134,0],[134,0],[135,0],[134,0],[135,0],[134,0],[135,0],[134,0],[135,0],[134,0],[135,0],[134,0],[0,-276],[0,-275],[0,-276],[0,-275],[0,-275],[0,-276],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-16],[-138,0],[-137,0],[-138,1],[-138,0],[-137,0],[-138,0],[-138,0],[-138,0],[-137,0],[-138,0],[-138,0],[-137,0],[-138,0],[-138,0],[-138,0],[-137,0],[-138,0],[-138,0],[-138,0],[-137,0],[-138,0],[-138,1],[-137,0],[-138,0],[-138,0],[-138,0],[-137,0],[-138,0],[-138,0],[-137,0],[-138,0],[-138,0],[-138,0],[-137,0],[-138,0],[-138,0],[-137,0],[-138,0],[0,-2],[0,-267],[0,-268],[0,-267],[0,-268],[0,-267],[-118,0],[-118,0],[-118,0],[-118,0],[0,268],[0,268],[0,268],[0,268],[0,267],[-136,0],[-136,-1],[-135,0],[-136,-1]],[[0,66665],[0,2778]],[[3333,45555],[0,-222],[0,-223],[0,-222],[0,-222],[0,-222],[0,-188],[0,-188]],[[3333,44068],[0,-258],[0,-258],[0,-258],[0,-259],[0,-258],[138,0]],[[3471,42777],[137,0],[0,-278],[0,-278],[0,-277],[0,-278],[1,-278]],[[3609,41388],[0,-278],[0,-277],[0,-278],[0,-278],[1,-278]],[[3610,39999],[0,-278],[0,-277],[0,-278]],[[3610,39166],[0,-278],[1,-278]],[[3611,38610],[0,-277],[0,-278],[0,-278],[139,0],[139,0],[139,0],[139,0],[138,0],[139,0],[139,0],[139,0],[0,-238],[0,-238],[0,-238],[0,-238],[0,-238],[0,-238],[0,-239],[139,0],[139,0],[138,0],[139,0],[139,0],[139,0],[138,0],[139,0],[139,0],[138,0],[139,0],[0,-233],[0,-233],[0,-233],[0,-233],[0,-233],[0,-233],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-248],[0,-248],[0,-249],[0,-248],[0,-248],[0,-249],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-139],[0,-139],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-220],[0,-220],[0,-220]],[[6248,7284],[-8,2],[-39,7],[-42,4],[-40,1],[-40,-2],[-90,-11],[-47,-8],[-35,-10],[-39,-16],[-36,-22],[-26,-23],[-14,-22],[-8,-39],[12,-39],[-18,-36],[-4,-28],[5,-31],[20,-34],[-15,-35],[0,-13],[6,-18],[-14,-19],[-15,-30],[-37,-30],[-32,-44],[-13,-32],[3,-31],[9,-16],[15,-16],[39,-25],[-112,-29],[-125,-32],[-124,-32],[-125,-32],[-125,-33],[-124,-32],[-125,-32],[-124,-32],[-125,-33],[-125,-32],[-124,-32],[-137,8],[-136,9],[-136,9],[-136,8],[-136,9],[-136,8],[-136,9],[-136,8],[-136,9],[-137,9],[-136,8],[-136,9],[-136,8],[-136,9],[-136,8],[-136,9],[-136,9]],[[2073,6463],[0,267],[0,267],[0,267],[0,268],[0,267],[0,267],[0,267],[0,253],[0,252],[0,253],[0,252],[0,253],[-1,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253]],[[2072,22222],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,233]],[[2072,24980],[11,20]],[[2083,25000],[0,251],[0,270],[0,270],[0,250],[0,291],[0,230],[0,311],[0,210],[0,343],[0,288],[0,242],[0,299],[0,288],[0,253],[0,265],[0,282],[0,344],[0,197],[0,324],[0,241],[0,280],[0,261]],[[2083,30990],[0,268],[0,250]],[[2083,31508],[0,263],[0,289]],[[2083,32060],[0,369],[0,383]],[[2083,32812],[0,325],[0,288],[0,332],[0,232]],[[2083,33989],[0,455]],[[2083,34444],[0,339],[0,217],[0,348],[0,207]],[[2083,35555],[0,311],[0,245],[0,296],[0,259],[0,278],[0,295],[0,295]],[[2083,37534],[0,243],[0,225]],[[2083,38002],[0,264],[0,254],[0,195]],[[2083,38715],[0,295],[0,295],[0,295],[0,295],[0,296],[0,206],[0,241],[0,254],[0,184],[0,295],[0,295],[137,123],[114,103],[100,90],[65,258],[-13,257],[-14,282],[-14,276],[-13,261]],[[2445,43316],[-9,184],[-9,174]],[[2427,43674],[-9,183]],[[2418,43857],[20,208],[14,157],[20,218],[15,163],[15,159]],[[2502,44762],[40,178],[33,149]],[[2575,45089],[48,214],[63,284],[56,252],[65,291],[57,259],[82,365]],[[2946,46754],[112,0],[134,0],[142,0]],[[3334,46754],[0,-1198],[0,-1],[-1,0]],[[2080,76666],[-139,0],[-139,0],[-138,0],[-139,0],[-139,0],[-138,0],[-139,0],[-139,0],[-138,0],[-139,0],[-138,0],[-139,0],[-139,0],[-138,0],[-139,0]],[[0,76666],[0,-10001]],[[85,83158],[89,106]],[[174,83264],[157,186]],[[331,83450],[112,131],[91,106],[80,94],[113,130]],[[727,83911],[111,128]],[[838,84039],[109,124]],[[947,84163],[174,196]],[[1121,84359],[138,155],[101,112],[95,105],[93,101]],[[1548,84832],[117,127]],[[1665,84959],[0,-355]],[[1665,84604],[-1,-255],[0,-254],[0,-254],[0,-255],[0,-254],[81,-209],[81,-208],[82,-208],[81,-209],[81,-208],[81,-208],[81,-209],[82,-208],[81,-208],[81,-209],[81,-208],[82,-208],[81,-209],[81,-208],[81,-208],[82,-209],[-3,-265],[-2,-265],[-2,-265],[73,31],[134,53],[133,54],[133,54],[134,53],[133,54],[133,54],[134,53],[133,54],[133,54],[133,53],[134,54],[133,54],[133,53],[134,54],[133,54],[133,53],[134,54],[133,54],[133,53],[134,54],[123,64],[124,63],[124,64],[124,63],[124,64],[123,63],[124,64],[124,63],[124,64],[129,101],[129,101],[129,101],[129,100],[129,101],[129,101],[129,101],[129,101],[129,101],[129,101],[129,101],[129,101],[129,100],[129,101],[129,101],[129,101],[130,101],[129,101],[129,101],[129,101],[126,45],[127,45],[127,45],[127,45],[127,46],[126,45],[127,45],[127,45],[0,-272],[0,-273],[0,-273],[1,-273],[0,-272],[0,-273],[0,-273],[0,-273],[0,-273],[0,-272],[0,-273],[0,-273],[1,-273],[0,-272],[0,-273],[0,-273],[0,-273],[0,-272],[0,-273],[0,-273],[0,-36],[0,-275],[0,-274],[0,-274],[0,-274],[0,-274],[0,-274],[0,-274],[0,-274],[0,-274],[0,-275],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-236],[0,-237],[0,-236],[0,-236],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-238],[0,-238],[0,-238],[0,-239],[0,-238],[0,-238],[0,-238],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-249],[0,-250],[0,-249]],[[10408,46666],[0,-185],[0,-186],[0,-185]],[[10408,46110],[0,-245],[0,-246],[0,-246],[0,-245],[0,-246],[0,-245],[0,-266],[0,-266],[0,-265],[0,-266],[0,-265],[1,-266],[0,-266]],[[10409,42777],[8,0],[127,0],[127,0],[126,0],[127,0],[127,0],[127,0],[128,0],[128,0],[127,0],[128,0],[128,0],[127,0]],[[11944,42777],[56,-250],[55,-250],[56,-250],[55,-250],[56,-250],[56,-250],[55,-250],[56,-250],[55,-250],[56,-250],[55,-250],[56,-250],[56,-250],[55,-250],[56,-250],[55,-250],[56,-250],[55,-250],[56,-250],[55,-250]],[[13055,37777],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278]],[[13055,35555],[0,-185],[0,-186],[0,-185],[-138,0],[-139,0],[-139,0],[-139,0],[-139,0],[-139,0],[-139,0],[-139,0],[-139,0],[-138,0],[-139,0],[-139,0],[-139,0],[-139,0],[0,-277],[0,-278],[0,-278],[0,-277],[-117,0],[-117,0],[-117,-1],[-117,0],[-117,0],[-118,0],[0,-259],[0,-260],[0,-260],[0,-260],[0,-259],[0,-260],[0,-260],[0,-260],[0,-259],[0,-260],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-254],[0,-254],[0,-254],[0,-254],[0,-254],[0,-254],[0,-254],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-222],[0,-223],[0,-222],[0,-222],[0,-245],[0,-244],[0,-245],[0,-244]],[[10408,8202],[-21,-1],[-35,-4],[-19,-3],[-44,-12],[-42,-18],[-35,-22],[-54,2],[-52,-5],[-85,-18],[-86,-18],[-99,-9],[-60,-17],[-46,23],[-83,35],[-43,12],[-52,10],[-58,5],[-53,-1],[-56,-8],[-52,-14],[-52,-20],[-41,-21],[-29,-23],[-20,-25],[-10,-24],[2,-24],[11,-23],[29,-34],[5,-24],[-11,-23],[-57,-50],[-19,-1],[-60,5],[-29,0],[-58,-6],[-69,-16],[-56,7],[-62,1],[-70,-3],[-57,-7],[-66,-19],[-60,-25],[-42,-27],[-31,-33],[-64,-4],[-58,-11],[-54,-18],[-46,-23],[-36,-27],[-27,-33],[-12,-32],[-3,-47],[-7,-13],[-11,-10],[-25,-9],[-107,-11],[-55,-12],[-52,-22],[-22,-13],[-22,-18],[-20,-27],[-7,-28],[3,-16],[8,-16],[39,-42],[-24,-33],[-7,-16],[-2,-23],[8,-27],[-7,-4],[-80,-19],[-35,-12],[-73,6],[-62,28],[-59,15],[-54,7],[-81,4],[-61,32],[-50,20],[-69,15],[-71,8],[-48,1],[-46,-3],[-65,-8],[-44,-10],[-82,-6],[-12,1],[-78,20],[-54,7],[-52,2],[-130,-4],[-64,-5],[-38,-8],[-53,-14],[-40,-3],[-30,1],[-30,5],[-62,15]],[[3611,38610],[0,278],[-1,278]],[[3610,39999],[0,278],[0,278],[0,278],[0,277],[-1,278]],[[3609,41388],[0,278],[0,278],[0,277],[0,278],[0,278],[-138,0]],[[3333,44068],[0,248],[0,248],[0,248],[0,247],[0,248],[0,248]],[[3334,46754],[3,0],[154,0],[144,0],[116,0],[125,0],[154,0],[144,0],[125,0],[135,0],[154,0],[125,0],[145,0],[144,0],[125,0],[135,0],[144,0],[154,0],[145,0],[125,0]],[[5830,46754],[148,0]],[[5978,46754],[123,0],[147,0],[150,0],[129,0],[117,0]],[[6644,46754],[42,-323],[41,-312],[37,-282],[36,-275],[42,-320],[35,-271],[42,-321],[30,-230],[30,-231],[35,-271],[51,-388]],[[7065,43530],[158,0],[132,0],[140,0],[140,0],[140,0]],[[7775,43530],[148,0],[140,0],[132,0]],[[8195,43530],[138,0]],[[8333,43530],[0,81],[0,277]],[[8333,43888],[0,278],[0,278],[-37,251],[-51,273],[-52,278],[-41,224],[-48,255],[-47,253],[-50,269],[-47,249],[-43,232],[-40,218],[-49,264],[-39,210],[-59,312],[-49,266],[-49,262],[-48,258],[-47,255],[-52,275],[-46,249],[-45,244],[-53,280],[-45,242],[-50,269],[-42,230],[-49,258],[-49,266],[-44,238],[-48,255],[-49,264],[-42,224],[-55,298],[-70,377],[-135,0]],[[6663,52742],[-107,0],[-99,0],[-115,0],[-99,0],[2,313]],[[2088,58333],[0,236],[0,236],[0,236],[0,237],[0,236],[0,236]],[[2088,59750],[0,278],[0,277],[0,278],[0,278],[0,278],[0,278],[0,277],[0,278],[0,278],[0,278],[0,272],[0,272],[0,272],[0,272],[0,272]],[[2088,63888],[-131,0],[-130,0],[-131,0],[-130,0],[-131,0],[-130,0],[-131,0],[-130,0],[-131,0],[-130,0],[-131,0],[-130,0],[-131,0],[-130,0],[-131,0],[-130,0]],[[0,63888],[0,13891],[0,272],[0,272],[0,272],[1,272],[0,272],[0,272],[0,272],[0,272],[0,271],[0,272],[0,272],[1,272],[0,272],[0,272],[0,272],[0,272],[0,272],[0,272],[1,272],[-2,110],[84,102]],[[0,21672],[74,111],[120,191],[105,168],[92,147],[99,159],[99,158],[107,172],[85,137],[130,208],[131,209],[97,156],[104,166],[97,156],[92,147],[130,209],[99,157],[94,152],[111,176],[87,140]],[[1953,24791],[119,189]],[[2072,24980],[0,-276],[0,-275],[0,-276],[0,-276],[0,-276],[0,-276],[0,-276],[0,-275],[0,-276],[0,-276]],[[2073,6463],[-132,8],[-131,8],[-131,8],[-131,9],[-132,8],[-131,8],[-131,8],[-131,9],[-131,8],[-128,21],[-127,21],[-128,22],[-127,21],[-127,21],[-128,21],[-127,21]],[[0,6685],[0,14987]],[[2081,91092],[0,-259],[0,-259],[0,-258],[0,-259],[0,-259],[0,-259],[0,-259],[0,-114]],[[2081,89166],[-2,-2],[-25,33],[-34,44],[-36,48],[-34,45],[-58,76],[-70,91],[-61,77],[-67,86],[-64,81],[-63,79],[-66,82],[-59,74],[-54,67],[-69,85],[-53,65],[-67,81],[-65,79],[-52,63],[-54,65],[-60,71],[-51,61],[-58,70],[-47,55],[-58,68],[-50,58],[-51,59],[-49,58],[-48,55],[-46,53],[-45,51],[-64,73],[-48,55],[-73,82],[-124,139],[-156,173]],[[0,91666],[0,8333]],[[0,99999],[22912,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-258],[0,-257],[0,-258],[0,-257]],[[22912,97166],[0,-264],[0,-263],[0,-263],[0,-263],[0,-263],[0,-264],[0,-263],[0,-263],[0,-263]],[[22912,94797],[0,-71],[-6,-1],[-42,-18],[-27,-18],[-22,-20],[-13,-21],[-1,-20],[9,-20],[24,-25],[-20,-17],[-11,0],[-20,5],[-75,27],[-37,11],[-34,8],[-38,7],[-84,7],[-80,2],[-112,8],[-59,1],[-49,-2],[-47,-5],[-49,-7],[-41,-9],[-46,-15],[-80,-31],[-28,-13],[-19,-12],[-32,-24],[-21,-23],[-13,-23],[-2,-21],[13,-33],[-6,-28],[10,-26],[11,-15],[1,-157],[0,-157],[-37,4],[-110,10],[-49,32],[-4,1],[0,-258],[0,-259],[0,-259],[0,-258],[0,-259],[0,-259],[0,-259],[0,-258],[0,-252],[0,-251],[0,-252],[0,-251],[0,-252],[113,-41],[112,-42],[66,-10],[124,-2],[116,-32],[117,-32],[116,-31],[116,-32],[117,-32],[105,-30],[106,-30],[106,-31],[106,-30],[42,-22],[78,-23],[28,-8],[104,-30],[104,-31],[103,-30],[123,-35],[122,-36],[122,-35],[89,-26],[89,-26],[-19,-24],[0,-43],[-4,-41],[5,-7],[45,-30],[20,-22],[15,-35],[8,-46],[94,-61],[33,-39],[38,-32],[16,-22],[22,-76],[17,-43],[7,-31],[1,-66],[-13,-48],[6,-16],[43,-43],[81,-43],[21,-15],[24,-26],[17,-25],[9,-23],[2,-28],[43,-17],[24,-13],[24,-21],[18,-23],[10,-23],[6,-30],[30,-36],[16,-34],[4,-22],[-2,-21],[-23,-52],[29,-28],[14,-22],[7,-24],[-1,-32],[3,-8],[39,-24],[26,-21],[59,-16],[121,-49],[29,-14],[21,-16],[15,-17],[28,-52],[75,19],[30,1],[14,-1],[22,-2],[15,-2],[-1,-53],[0,-73],[2,-262],[2,-262],[2,-262],[2,-262],[2,-262],[-139,1],[-139,0],[-139,1],[-139,1],[-139,0],[-138,1],[-139,1],[-139,1],[-139,0],[-139,1],[-115,1],[-115,0],[-115,1],[-115,0],[-116,1],[-44,0],[-139,0],[-139,1],[-139,0],[-139,1],[-139,0],[-139,0],[-138,1],[-139,0],[-139,0],[-139,1],[-109,0],[-110,0],[0,-249],[0,-249],[0,-249],[0,-249],[0,-250],[0,-249],[1,-1],[2,-29],[1,-26],[0,-27],[-1,-29],[-1,-25],[-1,-25],[-2,-25],[0,-25],[0,-20],[0,-21],[0,-21],[0,-21],[0,-144],[0,-143],[0,-144],[0,-144],[0,-144],[0,-144],[0,-144],[1,-144],[0,-226],[0,-225],[0,-226],[0,-225],[0,-1],[-139,0],[-139,0],[-139,0],[-138,0],[-139,0],[-62,0],[-77,0],[-139,0],[-100,0],[-1,0],[-24,0],[-14,0],[-14,0],[-12,0],[-45,0],[-68,0],[-139,0],[-138,0],[-55,0],[-84,0],[-139,0],[-99,0],[-40,0],[-139,0],[-85,0],[-54,0],[0,-191],[0,-57],[0,-130],[0,-4],[0,-189],[0,-2],[0,-191],[0,-131],[0,-60],[0,-191],[0,-110],[0,-81],[0,-119],[0,-72],[0,-191],[0,-114],[0,-77],[0,-184],[0,-6],[0,-1],[0,-191],[0,-73],[0,-118],[0,-191],[0,-191],[0,-7],[0,-31],[0,-39],[0,-41],[0,-24],[0,-49],[0,-10],[0,-16],[0,-165],[0,-191],[0,-113],[2,-1],[19,-17],[23,-13],[17,24],[25,8],[25,-31],[4,-31],[22,-41],[14,-8],[23,7],[17,-6],[15,-16],[19,-23],[18,-4],[10,-22],[5,-19],[17,-33],[38,-52],[6,-24],[-8,-31],[-1,-56],[-12,-32],[-24,7],[-19,25],[-21,11],[-28,-3],[-9,-31],[-18,-58],[-12,-24],[-30,-7],[-137,0],[0,-150],[0,-191],[0,-191],[0,-191],[0,-191],[0,-50],[0,-141],[0,-158],[0,-178],[0,-179],[0,-222],[0,-222],[27,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[62,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[40,0],[0,-105],[0,-93],[0,-93],[0,-92],[0,-93],[0,-93],[23,-2],[0,-44],[8,-12],[25,-5],[13,-28],[11,-78],[17,-31],[15,-8],[15,-31],[22,-3],[6,0],[4,2],[5,5],[4,6],[2,7],[1,7],[2,7],[4,6],[4,5],[5,3],[5,1],[17,-1],[33,-8],[16,-2],[6,-1],[5,2],[4,6],[3,7],[1,7],[-1,15],[1,5],[1,2],[4,7],[4,2],[5,-2],[5,-5],[5,-4],[32,-31],[17,-3],[4,0],[6,-5],[5,-6],[11,-1],[2,-8],[-1,-9],[2,-6],[5,0],[8,3],[3,4],[4,0],[22,-16],[7,-2],[16,0],[5,0],[3,29],[7,7],[10,7],[14,5],[10,4],[3,0],[0,-1],[12,-20],[8,-8],[10,-3],[33,4],[40,-38],[20,-6],[35,25],[16,-7],[56,21],[19,-22],[0,-10],[3,-99],[4,-21],[24,-14],[16,-10],[31,27],[34,-78],[23,-64],[0,-14],[-15,-18],[30,-92],[11,-56],[3,-17],[32,-29],[14,0],[12,0],[0,-5],[-5,-97],[-1,-12],[-3,-1],[-5,-1],[-1,-2],[-33,-9],[-5,0],[-5,2],[-1,1],[-5,1],[-16,0],[-12,1],[-5,0],[-4,-4],[-3,-6],[-4,-15],[-3,-6],[-9,-9],[-9,-17],[0,-1],[-4,-6],[-14,-13],[-2,-6],[-2,-6],[-1,-5],[-1,-3],[-2,-3],[-2,-2],[-1,-3],[-17,-15],[-2,-6],[2,-9],[-2,-5],[-10,-5],[-20,-7],[-2,-9],[-2,-6],[-4,-6],[-5,-4],[-4,-3],[-11,-2],[-16,-15],[-1,0],[23,-65],[130,0],[131,0],[19,0],[21,-130],[-21,-25],[-6,-8],[-3,-12],[-3,-7],[-1,-12],[-14,-23],[0,-17],[0,-27],[30,0],[9,0],[19,-51],[-12,-35],[16,-40],[-5,-48],[-20,-45],[-6,-14],[-14,-33],[5,-54],[-4,-30],[-36,-46],[-28,15],[-10,6],[-11,5],[2,-20],[26,-28],[3,-16],[-8,-60],[32,-20],[-2,-24],[0,-11],[-2,-22],[4,0],[20,4],[13,3],[2,-12],[10,-45],[-43,-104],[-70,0],[-64,0],[-13,0],[0,-49],[0,-44],[-5,-3],[0,-85],[-17,1],[-16,-22],[-13,-11],[1,-74],[0,-146],[0,-48],[0,-168],[109,0],[-2,-253],[-1,-253],[0,-45],[1,-149],[-46,1],[-111,1],[0,-193],[38,-1],[0,-193],[6,-24],[0,-170],[-27,0],[1,-193],[5,0],[0,-96],[0,-51],[0,-6],[0,-41],[-101,0],[-101,0],[0,-53],[0,-52],[1,-52],[0,-52],[0,-31],[67,0],[109,0],[7,0],[-1,-193],[0,-48],[-24,0],[-1,-242],[-23,0],[0,-242],[7,0],[0,-198],[4,-95],[-72,1],[-71,0],[0,-5],[0,-41],[0,-52],[0,-52],[0,-52],[0,-52],[0,-52],[0,-52],[0,-52],[-26,0],[-35,0],[-34,0],[-34,0],[-35,0],[-34,0],[-34,0],[-35,0],[1,-70],[0,-69],[0,-69],[0,-70],[-12,0],[0,-10],[0,-18],[0,-77],[0,-77],[-1,-77],[0,-77],[0,-78],[0,-77],[0,-77],[-1,-77],[0,-78],[0,-77],[0,-77],[0,-77],[-1,-78],[0,-77],[0,-77],[0,-77],[0,-77],[-1,-78],[0,-77],[0,-77],[0,-77],[0,-78],[-1,-77],[0,-274],[0,-35],[-1,-77],[0,-77],[0,-77],[0,-78],[-1,-77],[-61,0],[-62,0],[-62,0],[-52,0],[-9,0],[-5,0],[-57,0],[-62,0],[-61,0],[-62,0],[-21,0],[0,-1],[1,-216],[1,-217],[-1,-154],[-1,-155],[-18,-24],[3,-2],[9,-2],[1,-2],[2,-6],[8,-17],[4,-9],[0,-6],[1,-12],[1,-5],[4,-5],[1,-3],[0,-3],[-1,-6],[-1,-4],[1,-6],[3,-8],[0,-5],[0,-8],[-1,-4],[1,-3],[2,-6],[2,-4],[4,-4],[2,-4],[0,-4],[1,-7],[0,-5],[2,-3],[5,-5],[4,-14],[3,-15],[4,-11],[2,-3],[5,-4],[2,-4],[6,-20],[4,-9],[0,-12],[0,-20],[-1,-13],[-4,-20],[-1,-11],[1,-14],[5,-30],[0,-5],[-1,-9],[1,-5],[1,-3],[4,-8],[0,-2],[2,-6],[5,-11],[4,-26],[1,-5],[5,-10],[5,-7],[4,-8],[2,-23],[5,-17],[2,-7],[0,-8],[0,-6],[1,-5],[4,-8],[14,-16],[3,-7],[1,-3],[1,-6],[2,-4],[1,-2],[2,-2],[23,-25],[3,-7],[5,4],[8,0],[7,-3],[4,-10],[7,-9],[2,-1],[2,-3],[5,-20],[9,-18],[6,-9],[10,-8],[13,-26],[11,-11],[25,-15],[18,-6],[19,-2],[3,-2],[3,-4],[1,-5],[-2,-13],[2,-3],[3,-2],[3,-2],[13,-19],[8,-8],[24,-11],[8,1],[2,-1],[2,-3],[1,-3],[1,-4],[2,-5],[14,-25],[12,-12],[3,-1],[3,-3],[7,-14],[4,-2],[4,3],[2,5],[3,1],[3,-9],[1,1],[4,-1],[-11,-37],[-11,-41],[-23,-78],[-23,-77],[-23,-78],[-8,-29],[-9,-29],[-8,-30],[-9,-29],[-11,-40],[-12,-39],[-12,-40],[-12,-39],[-9,-28],[2,-18],[2,-12],[1,-12],[2,-12],[3,-26],[3,-25],[4,-25],[3,-25],[14,-107],[15,-107],[14,-107],[14,-107],[4,-32],[4,-31],[4,-31],[4,-31],[-21,16],[-22,16],[-22,16],[-22,16],[-7,5],[-6,3],[-6,1],[-7,0],[-11,-1],[-11,-1],[-11,-3],[-10,-7],[-12,-17],[-11,-23],[-9,-26],[-9,-25],[-13,-30],[-12,-31],[-13,-30],[-12,-31],[-11,-17],[-11,6],[-11,17],[-10,16],[-14,19],[-15,14],[-16,9],[-16,5],[-7,2],[-7,3],[-6,1],[-7,-1],[-3,-7],[-4,-11],[-3,-7],[-5,5],[-4,10],[-6,16],[-7,15],[-3,6],[-8,-7],[-8,-7],[-8,-7],[-8,-8],[-5,-5],[-8,-9],[-9,-7],[-5,-2],[-8,8],[-8,8],[-8,8],[-8,8],[-8,8],[-8,7],[-7,8],[-8,8],[-6,8],[-6,9],[-5,10],[-5,11],[-4,12],[-4,12],[-5,8],[-7,-1],[-7,-3],[-7,0],[-7,0],[-7,1],[-12,12],[-11,15],[-11,16],[-10,15],[-5,5],[-4,6],[-4,6],[-4,6],[-2,-4],[-2,-4],[-1,-4],[-2,-4],[-2,-11],[-3,-10],[-3,-10],[-3,-11],[-3,7],[-3,8],[-4,3],[-5,-3],[-3,-11],[-1,-16],[0,-16],[0,-14],[-1,-6],[0,-8],[-1,-7],[-1,-5],[-4,-6],[-6,-7],[-4,-8],[-1,-8],[2,-11],[2,-12],[2,-11],[2,-11],[1,-12],[-1,-7],[-3,-5],[-6,-4],[-12,-6],[-12,-7],[-12,-7],[-12,-7],[-9,-10],[-1,-16],[3,-18],[4,-17],[4,-18],[4,-19],[3,-20],[-2,-20],[-1,-11],[-2,-13],[-3,-11],[-3,-10],[-4,-6],[-5,-2],[-5,1],[-5,0],[-9,-9],[-3,-16],[-1,-20],[0,-21],[0,-16],[-1,-15],[0,-15],[-1,-15],[-1,-10],[-2,-6],[-3,-6],[-5,-7],[-1,-2],[-1,-2],[-1,-2],[-2,-2],[-5,-8],[-5,-9],[-5,-8],[-5,-8],[-5,-9],[-5,-10],[-6,-9],[-5,-6],[-6,-1],[-6,1],[-6,3],[-5,1],[-8,2],[-8,1],[-8,2],[-8,2],[-4,-9],[-5,-9],[-4,-9],[-3,-11],[-4,-12],[-5,-9],[-5,-9],[-5,-10],[-5,-20],[-4,-25],[-2,-26],[-2,-24],[-2,-25],[-2,-27],[0,-26],[3,-25],[4,-24],[3,-24],[4,-23],[5,-23],[2,-9],[1,-12],[2,-10],[3,-8],[4,-5],[5,-3],[5,-3],[4,-4],[2,-7],[1,-7],[0,-8],[0,-7],[2,-10],[3,-5],[4,-3],[6,-1],[4,0],[4,0],[4,-2],[3,-5],[4,-10],[2,-9],[3,-8],[6,-4],[9,-11],[6,-19],[4,-20],[6,-19],[4,-7],[3,-5],[3,-7],[2,-10],[2,-7],[1,-6],[2,-7],[2,-7],[3,-10],[1,-8],[2,-10],[0,-11],[0,-9],[0,-9],[1,-8],[3,-8],[5,-9],[4,-8],[5,-9],[5,-8],[6,-7],[4,-4],[4,-1],[6,1],[5,1],[4,0],[5,1],[4,3],[4,6],[3,8],[3,8],[3,8],[9,14],[10,9],[11,3],[11,-4],[3,-2],[3,-4],[3,-3],[3,-4],[7,-12],[7,-11],[7,-12],[7,-11],[5,-12],[4,-16],[3,-17],[3,-15],[3,-15],[3,-14],[3,-14],[5,-14],[5,-9],[6,-3],[6,3],[7,5],[-3,-19],[-4,-17],[-5,-16],[-3,-18],[-2,-21],[1,-22],[2,-23],[1,-21],[1,-10],[1,-9],[0,-10],[1,-9],[1,-10],[3,-9],[3,-9],[2,-10],[1,-12],[2,-13],[3,-11],[5,-8],[4,-4],[4,-2],[4,-2],[4,-1],[2,-12],[5,-12],[5,-11],[2,-13],[0,-5],[-1,-5],[-1,-4],[2,-5],[3,-4],[0,-5],[0,-6],[-1,-6],[-1,-8],[1,-6],[3,-6],[2,-7],[1,-7],[0,-6],[0,-7],[0,-6],[3,-8],[4,-5],[4,-5],[4,-6],[1,-5],[1,-5],[1,-4],[3,-4],[4,-6],[4,-9],[5,-9],[4,-8],[10,-10],[11,-2],[12,2],[11,2],[0,-16],[1,-16],[0,-16],[0,-16],[15,0],[14,2],[15,0],[14,-3],[14,-8],[13,-12],[13,-14],[13,-12],[6,-6],[3,-6],[3,-7],[3,-11],[3,-15],[4,-14],[3,-15],[3,-14],[-2,-7],[-7,-12],[-6,-12],[-4,-6],[-6,-10],[-3,-8],[-1,-9],[-1,-15],[-1,-13],[0,-18],[-1,-17],[2,-10],[7,-1],[8,8],[8,11],[6,10],[8,11],[8,11],[8,12],[9,11],[6,-1],[9,-9],[9,-10],[5,-8],[3,-5],[1,-7],[1,-7],[1,-7],[3,-19],[2,-19],[4,-16],[8,-12],[7,-8],[8,-10],[8,-7],[7,1],[10,8],[10,8],[10,8],[10,8],[2,-21],[1,-22],[2,-22],[1,-21],[0,-8],[-2,-7],[-1,-8],[-2,-8],[-3,-18],[-4,-18],[-3,-19],[-4,-18],[-3,-16],[-2,-10],[2,-9],[6,-11],[11,-18],[11,-18],[10,-18],[11,-20],[9,-17],[8,-18],[8,-19],[8,-19],[-2,-8],[-3,-15],[-3,-17],[-2,-10],[-2,-9],[-1,-9],[-1,-9],[-1,-9],[-2,-18],[-3,-15],[-5,-14],[-6,-15],[18,-20],[18,-21],[19,-20],[16,-17],[2,-2],[-3,-5],[-2,-10],[0,-24],[-1,-9],[-4,-10],[-16,-28],[-6,-6],[-6,-2],[-22,-1],[-10,-2],[-1,-1],[-4,-9],[-2,-7],[0,-10],[2,-13],[2,-10],[0,-11],[1,-11],[0,-10],[0,-2],[0,-2],[0,-3],[0,-2],[0,-12],[-1,-12],[-1,-11],[-3,-10],[-1,-6],[-2,-5],[-1,-5],[-2,-5],[-4,-16],[-3,-15],[-2,-16],[-2,-18],[0,-9],[0,-9],[0,-9],[1,-9],[0,-4],[0,-4],[-1,-4],[0,-3],[-6,7],[-7,6],[-6,7],[-4,8],[-3,12],[-6,8],[-6,7],[-6,6],[-6,7],[-4,7],[-3,9],[-4,12],[-5,14],[-6,6],[-7,2],[-8,-1],[-7,2],[-5,6],[-4,8],[-5,9],[-2,4],[-2,4],[-2,4],[-3,3],[-4,7],[-2,3],[-3,3],[-6,3],[-2,0],[-3,1],[-3,-1],[-3,-1],[-11,-15],[-12,-18],[-12,-15],[-14,-5],[-2,1],[-3,1],[-3,0],[-2,-1],[-2,-1],[-1,-2],[-1,-1],[-2,0],[-1,3],[-1,5],[-1,3],[-4,0],[-10,-10],[-9,-16],[-7,-18],[-6,-19],[-7,-18],[-19,-51],[-58,-19],[-89,-5],[-14,-58],[-14,-62],[0,-37],[5,-40],[32,-95],[16,-114],[46,-132],[65,-145],[30,-93],[24,-48],[44,-52],[106,-86],[48,-58],[65,-41],[22,-21],[49,-94],[18,-56],[28,-50],[28,-77],[18,-30],[44,-37],[86,-51],[93,-72],[48,-14],[109,-58],[65,6],[20,-31],[45,-109],[55,-78],[65,-61],[30,-66],[16,-22],[96,-65],[96,-65],[58,-49],[30,-10],[59,-84],[45,-40],[77,-28],[78,-29],[64,-42],[36,-12],[14,-17],[47,-93],[70,-46],[69,-46],[19,-22],[29,-51],[23,-24],[34,-15],[64,-10],[0,-267],[0,-266],[0,-267],[0,-266],[0,-266],[0,-267],[0,-266],[0,-267],[0,-266],[0,-267],[-1,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[-1,-253],[0,-252],[0,-253],[0,-277],[0,-278],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-243],[0,-244],[0,-243],[0,-243],[0,-243],[0,-243],[0,-243],[0,-243],[0,-276],[0,-275],[0,-276],[0,-276],[0,-276],[0,-275],[0,-276],[0,-276],[0,-276],[0,-275],[0,-276],[0,-276],[0,-276],[0,-275],[0,-276]],[[22910,36111],[-115,0],[-115,0],[-114,0],[-115,0],[-115,0]],[[22336,36111],[-135,0],[-134,0],[-135,0],[-135,-1],[-135,0],[-134,0],[-127,0],[-126,0],[-126,0],[-126,0],[-127,0],[-126,0],[-126,0],[-127,0],[-126,0],[-126,0],[-126,0],[-139,0],[-139,0],[-139,0],[-139,0],[-139,0],[-139,0],[-139,0],[0,-222],[0,-222],[0,-222],[0,-222],[0,-223],[0,-277],[0,-278],[0,-278],[0,-278],[139,0],[139,0],[139,0],[139,0],[139,0],[139,0],[139,0],[138,0],[139,0],[139,0],[139,0],[139,0],[139,0],[139,0],[139,0],[139,0],[138,0],[139,0],[139,0],[139,0],[138,0]],[[22082,33888],[138,0],[138,0],[138,0],[138,0],[137,1],[138,0]],[[22909,33889],[0,-1],[0,-266],[0,-267],[0,-266],[0,-267],[0,-266],[0,-266],[0,-267],[0,-266],[0,-267],[0,-266],[0,-267],[0,-266],[0,-267],[0,-266],[0,-267],[0,-266],[0,-266],[0,-267],[0,-266],[0,-267],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[-1,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[-1,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-264],[-1,-264],[0,-264],[0,-231],[0,-231],[0,-231],[0,-230]],[[22906,10178],[-24,1],[-16,3],[-79,29],[-78,29],[-35,8],[-41,3],[-101,-2],[-55,-9],[-45,-16],[-69,-40],[-23,-8],[-7,0],[-50,21],[-2,1],[-44,11],[-50,6],[-52,-2],[-59,-12],[-58,-25],[-16,-4],[-130,-14],[-131,-15],[-130,-14],[-49,-11],[-52,-19],[-44,-22],[-27,-18],[-22,-21],[-18,-28],[-9,-29],[-1,-31],[6,-30],[14,-29],[25,-30],[34,-25],[22,-12],[-18,-108],[-55,5],[-52,1],[-55,-7],[-58,-18],[-73,-30],[-41,-29],[-33,-39],[-29,-52],[-2,-30],[15,-46],[-1,-5],[-9,3],[-14,11],[-55,59],[-41,26],[-30,12],[-38,10],[-40,5],[-38,1],[-39,-3],[-39,-9],[-36,-13],[-32,-16],[-31,-23],[-27,-27],[-17,-26],[-9,-25],[1,-35],[9,-34],[16,-34],[23,-32],[30,-30],[30,-23],[36,-20],[46,-18],[43,-10],[50,-6],[43,-1],[49,5],[35,7],[38,12],[91,43],[18,6],[6,-1],[67,-36],[37,-41],[-34,-26],[-19,-20],[-14,-22],[-6,-24],[3,-62],[22,-41],[-10,-32],[1,-28],[5,-20],[13,-23],[24,-26],[26,-20],[37,-21],[36,-13],[31,-8],[34,-6],[83,-4],[45,-5],[41,-8],[36,-12],[4,-15],[-5,-25],[1,-35],[-15,-81],[7,-32],[28,-34],[47,-33],[45,-18],[83,-23],[20,-9],[14,-10],[12,-19],[-2,-20],[-15,-19],[-23,-9],[-20,-1],[-60,3],[-40,-1],[-45,-6],[-48,-11],[-47,4],[-87,-4],[-121,15],[-59,2],[-59,-7],[-74,-18],[-69,5],[-108,-4],[-49,9],[-39,3],[-98,-2],[-49,-6],[-48,-13],[-38,-17],[-45,-26],[-41,-6],[-32,-8],[-55,-22],[-87,-16],[-23,-2],[-52,5],[-68,1],[-53,-3],[-73,0],[-45,16],[-40,9],[-113,16],[-113,16],[-113,16],[-113,15],[-29,6],[-16,7],[-5,6],[2,7],[27,28],[15,24],[8,24],[2,35],[25,40],[7,16],[4,42],[-9,42],[-10,22],[-23,30],[-18,35],[-66,65],[-31,24],[-33,19],[-35,15],[-39,11],[-57,8],[-76,3],[-64,17],[-112,17],[-64,3],[-58,-6],[-39,-8],[-40,-13],[-50,-21],[-45,-23],[-14,-10]],[[18749,8827],[0,254],[0,253],[0,253],[0,254],[0,253],[0,253],[0,254],[0,253],[0,253],[0,254],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,278],[0,278],[0,278],[0,277],[0,278],[0,278],[0,278],[0,278],[0,277],[0,278],[0,264],[0,264],[0,264],[0,264],[0,264],[0,263],[0,264],[0,264],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,278],[0,278],[0,277],[0,278],[0,278],[0,278],[0,278],[0,277],[0,278],[0,278],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,244],[0,245],[0,244],[0,244],[0,245],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,241],[0,241],[0,240],[0,241],[0,241],[0,241],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,275],[0,275],[0,274],[0,275],[0,275],[0,274],[0,275],[0,275],[0,275],[128,0],[127,0],[128,0],[127,0],[127,0],[128,0],[127,0],[127,0],[128,0],[127,0],[127,0],[128,0],[0,238],[0,238],[0,238],[0,238],[0,238],[0,238],[0,238],[-128,0],[-127,0],[-127,0],[-128,0],[-127,0],[-127,0],[-128,0],[-127,0],[-127,0],[-128,0],[-127,0],[-127,0],[0,236],[0,236],[0,236],[0,236],[0,237],[0,236],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[-136,0],[-136,0],[-136,1],[-136,0],[-136,0],[-136,0],[-136,1],[-136,0],[-136,0],[0,250],[1,250],[0,251],[0,250],[0,250],[0,251],[1,250],[0,250],[0,250],[0,251],[124,0],[123,0],[124,0],[124,0],[83,-103],[83,-104],[83,-103],[3,0],[13,0],[133,0],[134,0],[133,0],[77,0],[77,0],[-78,218],[-79,218],[-79,218],[-78,218],[-79,218],[-78,219],[-79,218],[-79,218],[-78,218],[0,18],[-9,36],[-15,53],[-5,42],[-9,19],[-12,15],[-11,25],[-1,13],[0,13],[1,14],[0,14],[0,8],[-1,7],[-2,6],[-2,7],[-2,3],[-2,2],[-3,3],[-1,2],[0,9],[3,8],[3,9],[1,12],[-3,21],[-5,18],[-7,16],[-7,17],[-2,3],[1,8],[5,10],[5,8],[5,10],[3,12],[1,10],[0,9],[0,10],[2,13],[5,13],[5,11],[6,5],[14,-2],[4,2],[2,0],[4,4],[-1,1],[3,6],[4,23],[1,12],[-3,11],[5,15],[1,4],[6,9],[3,4],[3,10],[2,10],[2,13],[0,1],[1,7],[10,13],[30,-10],[11,4],[3,9],[0,9],[0,11],[1,10],[4,7],[10,12],[3,7],[1,12],[-4,36],[0,7],[1,5],[0,5],[-1,7],[-8,19],[-10,9],[-25,3],[-11,8],[-8,19],[1,20],[4,20],[1,25],[-3,32],[-2,7],[-8,17],[-1,8],[3,16],[3,6],[1,4],[-1,6],[-3,5],[-2,7],[-2,6],[3,3],[14,2],[6,3],[5,7],[11,32],[2,14],[3,5],[6,10],[3,8],[1,4],[1,7],[-1,12],[0,7],[2,4],[1,2],[0,7],[0,11],[1,14],[4,8],[3,6],[2,8],[-3,11],[-2,6],[2,2],[1,3],[0,7],[0,6],[-1,3],[-4,6],[-1,14],[0,14],[0,8],[5,7],[2,5],[0,5],[-6,11],[-2,6],[-1,7],[2,12],[4,8],[11,12],[5,7],[4,9],[3,11],[3,24],[3,10],[4,8],[10,5],[28,34],[6,2],[9,19],[9,15],[9,12],[2,7],[-2,12],[0,1],[0,6],[-8,10],[-4,6],[-2,4],[-5,4],[-23,28],[-4,8],[-2,2],[-5,6],[-2,2],[-2,4],[-1,2],[-1,0],[-1,1],[-4,0],[-2,1],[-1,2],[-1,4],[-1,6],[-1,6],[2,9],[1,8],[-2,5],[-1,0],[0,1],[-1,11],[-3,5],[-4,5],[-3,9],[-1,4],[1,13],[-1,5],[-1,2],[-1,2],[-18,62],[-8,2],[-5,6],[-4,10],[-1,16],[-1,7],[-2,9],[-3,7],[-4,4],[-4,2],[-2,7],[-3,65],[0,4],[-1,6],[-2,18],[6,14],[1,6],[-1,7],[-5,10],[-1,5],[1,8],[2,2],[4,0],[4,1],[3,3],[2,2],[2,22],[0,12],[-1,22],[-4,27],[0,14],[0,15],[-3,13],[-8,29],[-6,27],[-4,22],[6,27],[-2,24],[2,12],[-2,9],[-10,40],[-1,12],[-1,15],[1,31],[1,8],[5,14],[1,6],[-1,7],[-1,5],[-11,23],[-4,13],[-3,14],[-1,16],[5,8],[1,6],[0,6],[-1,13],[0,6],[1,5],[1,2],[2,5],[1,2],[1,2],[9,7],[9,9],[16,7],[5,3],[2,0],[3,0],[15,-7],[1,-1],[1,-1],[2,-3],[3,-3],[4,-2],[2,-1],[2,0],[2,1],[2,1],[7,7],[1,1],[2,1],[2,0],[2,0],[2,0],[2,-2],[3,-2],[3,-5],[2,-6],[2,-5],[5,-16],[2,-7],[2,-6],[4,-7],[5,-8],[6,-4],[7,-1],[14,4],[10,9],[4,24],[4,21],[3,17],[5,11],[6,13],[0,5],[0,1],[0,3],[0,1],[1,24],[0,5],[0,13],[0,20],[0,26],[0,31],[0,35],[0,37],[0,39],[0,38],[0,37],[0,35],[0,31],[0,27],[0,20],[0,13],[0,5],[0,86],[0,87],[0,87],[0,87],[0,86],[0,87],[0,87],[0,87],[0,86],[0,87],[0,87],[0,87],[0,86],[0,87],[0,87],[0,87],[0,86],[0,87],[0,87],[0,87],[0,86],[0,87],[0,87],[0,87],[-1,86],[0,87],[0,87],[0,87],[0,86],[0,87],[0,87],[0,87],[-51,0],[-52,0],[-52,0],[-51,0],[-52,0],[-51,0],[-52,0],[-52,-1],[-51,0],[-52,0],[-52,0],[-51,0],[-52,0],[-52,0],[-41,0],[-62,0],[0,144],[0,143],[-111,1],[-111,1],[-111,2],[-2,167],[-1,167],[0,254],[0,255],[-1,120],[12,5],[10,3],[26,56],[5,10],[2,14],[17,16],[106,1],[29,-32],[0,-48],[22,0],[52,0],[3,10],[2,-2],[0,6],[1,7],[1,6],[-1,7],[-4,12],[-1,6],[1,13],[3,11],[2,10],[-3,15],[2,4],[3,3],[1,3],[1,7],[2,3],[3,1],[3,2],[4,7],[4,10],[3,10],[2,22],[3,11],[7,20],[8,28],[3,8],[5,9],[17,16],[5,7],[4,7],[15,35],[6,19],[2,11],[3,26],[1,11],[-1,2],[-1,3],[-2,4],[0,6],[1,6],[2,6],[29,64],[6,22],[5,34],[4,9],[2,9],[1,24],[1,11],[4,10],[10,16],[4,19],[13,24],[1,5],[1,12],[5,19],[2,4],[8,13],[4,9],[2,10],[0,12],[-2,11],[-10,27],[-5,23],[-4,11],[-3,6],[-4,5],[-12,3],[-16,15],[-6,9],[-2,4],[-17,5],[-12,21],[45,108],[91,-85],[2,-248],[137,13],[41,-13],[42,-33],[38,39],[49,73],[33,-17],[60,-56],[33,-20],[29,24],[24,50],[3,7],[1,3],[0,3],[0,3],[-1,3],[-2,5],[0,3],[0,3],[1,2],[6,7],[4,6],[0,2],[1,1],[0,3],[1,3],[0,3],[-1,6],[0,3],[1,5],[0,4],[-2,4],[-7,10],[-2,3],[-1,3],[-1,7],[-2,6],[-1,4],[0,3],[2,2],[3,3],[1,2],[1,3],[1,3],[2,5],[3,7],[1,5],[1,2],[1,2],[2,3],[2,1],[2,0],[10,1],[2,1],[2,1],[1,2],[7,9],[1,2],[1,4],[-1,4],[-6,13],[-1,3],[0,3],[0,3],[0,3],[0,3],[1,3],[3,8],[0,4],[0,3],[-1,4],[-2,1],[-7,3],[-7,4],[-3,4],[0,3],[0,3],[1,4],[-1,4],[-2,5],[-1,4],[0,4],[1,3],[0,3],[6,12],[1,2],[1,3],[0,3],[0,3],[-1,3],[-1,3],[-11,16],[-1,4],[-1,3],[1,3],[0,2],[1,1],[1,2],[2,1],[9,1],[2,1],[2,1],[1,3],[1,2],[0,3],[0,3],[-1,7],[0,9],[-1,3],[0,3],[-2,6],[-1,4],[-1,3],[0,3],[0,3],[1,2],[3,5],[1,2],[0,3],[0,7],[1,3],[1,3],[5,12],[1,2],[1,3],[0,4],[-1,6],[1,8],[0,6],[1,7],[7,19],[1,3],[0,4],[0,3],[0,4],[0,3],[-1,2],[-2,3],[-4,7],[-1,2],[0,1],[0,1],[1,2],[1,2],[1,1],[8,4],[2,2],[1,1],[2,2],[1,3],[0,2],[0,3],[-1,3],[-1,2],[0,3],[0,3],[1,3],[2,5],[0,2],[1,4],[-1,3],[0,2],[0,3],[0,4],[1,3],[1,5],[1,7],[0,10],[0,4],[0,3],[-1,4],[-2,2],[-2,1],[-3,1],[-2,-1],[-19,-6],[-1,-1],[-5,-5],[-3,-3],[-2,-1],[-2,0],[-3,0],[-4,3],[-2,0],[-2,0],[-6,-4],[-4,-1],[-4,0],[-4,1],[-4,2],[-6,6],[-3,4],[-2,3],[-1,3],[-1,3],[1,3],[1,3],[3,7],[1,3],[-1,4],[-2,5],[-2,3],[-7,8],[-2,1],[-2,0],[-2,0],[-2,-1],[-2,-1],[-4,-5],[-7,-11],[-1,-2],[-3,0],[-2,1],[-2,2],[-1,2],[0,3],[2,14],[1,3],[-1,4],[-1,4],[-1,2],[-2,2],[-8,3],[-5,3],[-3,4],[-4,6],[-3,4],[-8,8],[-3,3],[-1,2],[-3,8],[-1,6],[-1,6],[0,10],[0,3],[0,3],[1,4],[0,3],[0,2],[-1,3],[-7,6],[-3,2],[-2,3],[-7,15],[-2,2],[-2,2],[-6,2],[-4,2],[-2,2],[-1,2],[0,2],[-1,1],[-1,10],[-1,3],[-24,38],[-4,13],[-3,5],[-16,21],[-2,4],[-3,5],[-2,3],[-2,2],[-3,2],[-1,2],[-1,3],[-1,6],[-1,2],[-1,3],[-2,3],[-1,3],[-3,8],[-3,7],[-2,3],[-3,3],[-25,13],[-14,4],[-4,2],[-2,3],[-1,2],[-3,7],[-2,8],[-5,9],[-9,15],[-2,3],[-21,19],[-11,5],[-5,3],[-2,3],[0,3],[0,2],[1,2],[1,1],[1,2],[2,1],[12,1],[2,1],[1,1],[2,1],[1,3],[1,3],[-1,3],[-3,3],[-4,3],[-3,2],[0,1],[-2,11],[-2,6],[-2,4],[-8,6],[-1,3],[0,3],[1,2],[1,2],[7,5],[2,2],[1,2],[1,2],[2,6],[0,3],[0,5],[-2,6],[-8,16],[-1,5],[1,13],[-1,4],[0,4],[-2,5],[-2,2],[-8,8],[-2,3],[0,4],[-1,3],[-2,5],[-2,3],[-8,6],[-2,4],[-1,3],[-5,26],[-1,4],[-2,4],[-2,3],[-7,5],[-2,4],[-4,5],[-3,5],[-3,3],[-2,3],[-1,3],[-2,6],[-7,13],[-3,8],[-8,14],[-7,8],[-2,5],[-1,4],[0,27],[0,66],[0,65],[0,65],[0,65],[0,66],[0,65],[0,65],[0,65],[-3,0],[-61,0],[-61,0],[-11,0],[-84,4],[-17,18],[-28,30],[-1,50],[16,19],[27,7],[28,10],[24,25],[-5,9],[-8,18],[-6,12],[-7,23],[-6,31],[-4,12],[0,24],[-3,23],[-2,16],[-4,7],[-6,4],[-7,12],[-7,10],[-4,10],[7,23],[2,38],[5,30],[32,3],[22,7],[8,46],[25,23],[16,47],[5,46],[0,30],[-23,59],[-18,40],[-12,53],[-3,53],[12,39],[6,23],[-21,14],[-27,19],[-36,57],[-51,82],[-27,53],[-20,60],[-6,46],[-3,46],[-19,30],[-10,23],[-26,23],[-18,-16],[-30,-24],[-31,24],[-17,26],[-21,3],[-13,14],[-4,59],[5,46],[-16,17],[-28,10],[-15,23],[-4,36],[-1,40],[-12,20],[-26,0],[-23,10],[-19,26],[-24,13],[-14,14],[-13,42],[17,14],[9,32],[12,34],[13,13],[25,13],[23,0],[26,-1],[-4,2],[-1,3],[0,4],[0,5],[-1,4],[-2,6],[-3,5],[-2,6],[0,9],[3,5],[4,3],[4,1],[3,5],[0,6],[-3,3],[-4,2],[-3,1],[-2,3],[-3,4],[-4,6],[-1,4],[-1,6],[1,4],[1,5],[0,5],[-3,5],[-3,4],[-5,3],[-3,4],[-2,4],[-1,4],[-1,4],[-2,4],[-1,6],[3,6],[4,5],[3,3],[3,8],[0,5],[-2,5],[-3,6],[-4,10],[-2,10],[-3,9],[-5,7],[-4,3],[-5,2],[-4,5],[-3,6],[0,5],[2,4],[1,5],[1,6],[-1,8],[-2,4],[-4,3],[-5,2],[-3,3],[-1,6],[0,6],[-2,5],[-4,4],[-5,0],[-5,-2],[-5,-2],[-3,-2],[-4,-3],[-5,-2],[-3,-1],[-5,5],[-2,11],[-2,13],[-4,10],[-6,10],[0,7],[2,9],[1,11],[-3,11],[-3,2],[-4,-1],[-4,1],[-1,4],[-1,5],[-2,4],[-3,0],[-4,-3],[-4,-3],[-3,1],[-1,8],[2,6],[2,5],[3,4],[1,5],[0,7],[-1,3],[-3,3],[-3,3],[-7,9],[-6,10],[-7,9],[-8,8],[-4,3],[-4,2],[-3,2],[-4,4],[-4,5],[-4,4],[-5,3],[-5,-1],[-3,-3],[0,-4],[0,-6],[0,-5],[-1,-6],[-1,-3],[-2,-3],[-1,-4],[1,-5],[1,-4],[1,-5],[0,-4],[-4,-5],[-4,2],[-5,5],[-4,4],[-4,2],[-3,1],[-3,0],[-4,1],[-3,3],[-3,5],[-2,4],[-4,1],[-5,0],[-3,2],[-3,2],[-3,2],[-5,0],[-4,0],[-3,2],[-4,5],[-5,10],[-6,11],[-5,11],[-5,10],[-1,4],[-2,6],[-2,7],[-1,5],[-1,8],[0,6],[-1,4],[-3,5],[-4,2],[-5,-1],[-5,-1],[-4,-3],[-5,-1],[-5,1],[-6,2],[-5,2],[-5,2],[-5,3],[-5,2],[-5,0],[-2,-4],[-3,-5],[-2,-4],[-3,-1],[-7,6],[-7,5],[-7,7],[-7,8],[-4,8],[-3,10],[-3,11],[-3,10],[-5,13],[-6,8],[-5,3],[-7,-3],[-3,-1],[-3,4],[-3,5],[-1,5],[1,6],[3,4],[2,4],[0,5],[-3,6],[-3,5],[-4,5],[-2,6],[1,5],[6,2],[7,-1],[4,-1],[8,-3],[12,-4],[11,2],[6,10],[-1,10],[-5,9],[-6,7],[-4,6],[-2,5],[-1,4],[-2,4],[-3,3],[-3,-1],[-4,-4],[-3,-2],[-3,3],[-3,4],[-4,1],[-4,0],[-3,2],[-2,5],[0,3],[1,4],[1,5],[1,3],[1,4],[1,5],[0,4],[-4,5],[-6,1],[-6,0],[-5,3],[-4,8],[-15,5],[-1,23],[0,47],[-10,29],[-15,7],[-9,26],[-6,40],[-30,10],[-33,7],[-31,3],[-15,43],[-7,36],[-20,17],[-18,33],[-15,20],[-6,29],[-25,-3],[-18,0],[-22,0],[-15,10],[-11,30],[-27,0],[-29,0],[-19,6],[-26,43],[-8,57],[-8,56],[-25,20],[-28,6],[-25,7],[-8,46],[-45,53],[-53,43],[-33,46],[-35,53],[2,7],[-20,23],[-11,26],[-27,-23],[-20,-7],[-28,20],[-25,17],[-14,53],[1,39],[-23,14],[-18,36],[-13,23],[-25,-7],[-17,33],[0,30],[-21,37],[-15,39],[-5,22],[-7,51],[5,36],[-8,43],[-8,33],[-12,27],[0,33],[4,49],[-22,23],[-8,17],[-2,43],[-15,33],[-11,33],[-2,33],[0,7],[-3,36],[13,33],[27,13],[29,17],[23,10],[20,33],[22,20],[28,3],[31,10],[30,6],[23,-9],[12,-20],[26,-5],[9,-2],[36,-10],[13,-1],[11,1],[12,5],[4,2],[9,11],[2,4],[1,4],[3,9],[8,10],[11,3],[8,-1],[12,-11],[14,-18],[13,-18],[24,-18],[11,-2],[14,2],[24,13],[16,10],[9,11],[3,15],[12,16],[8,27],[1,19],[1,12],[9,10],[14,0],[15,-3],[15,1],[20,-4],[9,-6],[14,-14],[25,0],[31,14],[40,19],[11,34],[19,29],[29,4],[35,0],[25,0],[35,19],[21,-13],[12,-13],[1,-5],[-1,-28],[-4,-27],[12,-22],[4,-10],[19,-10],[22,-14],[9,-3],[22,7],[22,26],[0,3],[0,92],[0,151],[0,151],[0,151],[0,151],[0,151],[0,151],[0,151],[0,46],[0,46],[0,46],[0,46],[0,46],[0,46],[0,46],[0,46],[-133,0],[-133,0],[-132,0],[-133,0],[-133,0],[-132,0],[-133,0],[-132,0],[-6,13],[-7,8],[-9,1],[-8,-5],[-8,-5],[-11,-3],[-9,2],[0,12],[7,15],[5,8],[1,8],[-6,16],[-1,4],[-1,5],[-1,5],[-3,5],[-4,5],[-4,6],[-5,5],[-4,6],[-5,9],[-4,11],[-4,12],[-4,11],[-4,11],[-5,8],[-5,10],[-3,12],[-2,12],[0,10],[1,10],[1,12],[-3,17],[-8,9],[-10,3],[-10,-1],[-7,-1],[-7,0],[-6,0],[-7,0],[-2,3],[-1,6],[0,7],[-1,6],[-1,10],[-3,9],[-4,9],[-4,6],[-12,12],[-17,21],[-12,23],[5,21],[9,7],[10,7],[8,10],[7,14],[-1,7],[-5,10],[-6,10],[-3,10],[-3,24],[-6,23],[-9,14],[-13,-3],[-5,-3],[-4,1],[-5,1],[-5,1],[-5,-1],[-4,-1],[-4,0],[-5,4],[-7,3],[-7,-4],[-5,-8],[-6,-11],[-2,-12],[2,-13],[0,-10],[-6,-4],[-8,0],[-7,0],[-7,1],[-8,2],[-6,-1],[-7,-2],[-7,-2],[-6,-1],[-6,1],[-6,0],[-6,0],[-6,-1],[-5,-4],[-4,-5],[-4,-5],[-4,-5],[-11,-9],[-12,-7],[-12,-3],[-12,2],[-12,7],[-13,7],[-13,6],[-13,3],[-12,0],[-11,0],[-11,4],[-11,8],[-10,10],[-10,9],[-10,6],[-11,1],[-10,-6],[-6,-9],[-5,-13],[-4,-18],[-6,-5],[-11,1],[-11,5],[-6,7],[0,4],[1,5],[1,4],[0,5],[-4,3],[-6,1],[-7,-1],[-5,0],[-4,-1],[-5,0],[-5,-3],[-2,-7],[2,-6],[3,-3],[2,-4],[-1,-9],[-6,-9],[-12,-5],[-13,-2],[-9,0],[-6,0],[-7,1],[-6,3],[-6,5],[-3,3],[-4,4],[-4,3],[-4,2],[-9,-2],[-8,-6],[-8,-10],[-8,-9],[-4,-5],[-4,-4],[-5,-2],[-5,1],[-4,5],[-4,5],[-4,6],[-4,3],[-6,1],[-4,-1],[-4,-2],[-4,-5],[-1,-2],[0,-2],[0,-2],[-2,-2],[-2,0],[-2,1],[-3,2],[-2,3],[-4,4],[-3,5],[-2,6],[-1,8],[2,5],[2,5],[0,4],[-3,4],[-7,7],[-1,7],[1,9],[0,11],[-1,7],[1,5],[2,4],[3,5],[0,4],[-2,5],[-1,5],[-2,3],[-3,10],[-2,7],[0,8],[-1,11],[1,6],[0,4],[0,4],[-3,3],[-6,2],[-6,-1],[-7,-4],[-5,-5],[-4,-3],[-3,-1],[-3,1],[-4,5],[-2,4],[-3,5],[0,6],[2,5],[5,3],[4,2],[5,2],[4,4],[5,10],[-1,4],[-3,4],[-1,6],[1,5],[2,4],[2,5],[1,5],[0,6],[-1,5],[-1,5],[-1,5],[-1,11],[-2,11],[-2,11],[-3,10],[-1,4],[-2,4],[-2,4],[-1,5],[0,6],[1,5],[1,4],[0,6],[-3,5],[-5,2],[-5,3],[-3,5],[-2,6],[0,6],[-1,6],[0,7],[-4,12],[-7,6],[-7,2],[-7,5],[-9,9],[-8,7],[-9,3],[-10,-4],[-11,-5],[-12,0],[-13,1],[-11,1],[-4,0],[-4,2],[-4,2],[-3,5],[-5,5],[-6,2],[-7,1],[-5,3],[-4,3],[-2,3],[-1,5],[-2,6],[-4,8],[-6,3],[-7,2],[-6,1],[-10,5],[-9,9],[-9,12],[-7,12],[-5,5],[-5,2],[-6,1],[-5,3],[-3,3],[-1,3],[-2,4],[-2,4],[-1,7],[0,7],[1,7],[-1,7],[-1,5],[-3,6],[-2,6],[-3,4],[-4,9],[-4,9],[-5,8],[-6,5],[-9,0],[-8,-5],[-9,-2],[-7,7],[-2,7],[-1,6],[0,7],[-1,7],[-2,6],[-3,6],[-3,5],[-3,5],[-2,4],[-4,4],[-5,4],[-3,4],[-4,2],[-6,3],[-5,3],[-2,5],[0,6],[1,3],[2,3],[-1,6],[-4,6],[-7,4],[-7,4],[-5,4],[-4,3],[-3,4],[-4,4],[-3,5],[-3,6],[-3,6],[-3,4],[-4,1],[-12,0],[-11,0],[-11,-2],[-11,-8],[-3,-6],[-3,-6],[-2,-7],[-2,-6],[-5,-2],[-7,2],[-7,3],[-5,2],[-3,2],[-1,5],[0,6],[-1,6],[-3,6],[-5,2],[-5,0],[-4,-1],[-5,2],[-5,4],[-4,3],[-6,2],[-4,0],[-6,0],[-5,-1],[-5,-1],[-6,-4],[-5,-3],[-6,-2],[-6,3],[-6,5],[-6,5],[-6,4],[-6,3],[-4,0],[-5,0],[-4,1],[-2,5],[3,6],[7,4],[7,4],[5,4],[3,9],[0,3],[-4,1],[-4,4],[-1,2],[-5,12],[-7,4],[4,0],[-3,4],[-2,4],[0,5],[-1,7],[-2,3],[-2,5],[-2,4],[0,3],[3,10],[7,9],[9,8],[7,4],[-6,5],[-6,3],[-7,3],[-4,6],[-2,9],[2,2],[4,2],[1,5],[0,7],[3,3],[3,0],[5,0],[5,1],[6,2],[6,3],[2,6],[-7,15],[-14,9],[-14,5],[-10,3],[-9,6],[-7,9],[-8,9],[-9,6],[-6,-4],[-11,-7],[-11,-3],[-4,8],[4,7],[8,3],[8,5],[0,12],[-1,2],[-2,1],[-2,1],[-1,2],[-1,2],[0,2],[0,3],[-1,1],[0,2],[1,2],[1,3],[0,3],[-2,3],[-3,1],[-3,1],[-2,2],[-1,2],[-1,2],[-1,3],[-2,2],[-3,1],[-3,0],[-3,-1],[-2,0],[-3,1],[-1,1],[0,3],[0,5],[0,5],[-1,3],[-2,2],[0,2],[-1,0],[-1,2],[-1,1],[-1,2],[1,1],[1,1],[2,1],[1,1],[-1,3],[-1,2],[-2,2],[-2,3],[-4,6],[-4,8],[-3,8],[-3,5],[-5,4],[-6,5],[-6,7],[-2,9],[2,9],[6,2],[6,0],[5,2],[-4,6],[-1,4],[1,4],[3,8],[0,1],[0,3],[0,4],[0,2],[2,4],[3,3],[3,4],[2,4],[1,6],[0,4],[1,5],[4,6],[3,3],[5,5],[4,5],[2,5],[-4,14],[-12,2],[-13,-3],[-9,-3],[-6,1],[-5,4],[-4,4],[-6,3],[-5,1],[-4,2],[-1,4],[4,9],[-5,6],[-4,10],[-4,12],[-3,10],[-4,8],[-3,4],[-4,1],[-6,-1],[-4,0],[-3,1],[-2,3],[-2,6],[-6,13],[-6,8],[-6,5],[-10,0],[-3,-1],[-4,-2],[-4,-1],[-3,0],[-2,3],[0,1],[1,1],[0,3],[0,4],[2,8],[1,6],[2,4],[6,5],[5,4],[7,4],[5,3],[7,1],[7,1],[7,2],[7,4],[3,3],[4,5],[4,5],[0,7],[-2,9],[0,8],[1,7],[4,9],[7,5],[8,3],[5,5],[-4,11],[-4,9],[-3,9],[-3,10],[-4,8],[-4,5],[-5,1],[-5,1],[-5,4],[0,3],[1,5],[0,5],[-1,6],[-5,4],[-8,2],[-9,-1],[-5,-1],[-3,1],[-2,0],[-3,1],[-2,1],[-1,2],[1,3],[1,3],[0,2],[-3,5],[-3,3],[0,2],[3,5],[3,7],[-2,6],[-5,3],[-5,-1],[-8,-5],[-9,-7],[-9,-6],[-8,-1],[-5,2],[-1,4],[-1,3],[-3,3],[-6,3],[-3,5],[1,6],[5,9],[5,4],[6,1],[5,0],[6,1],[1,1],[1,2],[0,3],[1,2],[3,2],[4,0],[4,-1],[3,-1],[7,1],[7,5],[3,9],[-5,12],[-4,3],[-3,0],[-3,-2],[-4,-2],[-5,-1],[-5,0],[-6,3],[-5,3],[-11,6],[-12,4],[-11,7],[-10,10],[-3,4],[-2,4],[-2,5],[-3,4],[-4,5],[-5,3],[-5,3],[-5,4],[-3,4],[-2,3],[-2,2],[-4,0],[-2,-1],[-2,-2],[-1,-2],[-2,-1],[-4,1],[-3,3],[-3,3],[-3,3],[-10,5],[-13,5],[-12,8],[-8,12],[-2,9],[2,4],[3,3],[2,6],[-1,7],[-5,2],[-6,1],[-5,-1],[-3,-2],[-6,-3],[-5,0],[0,5],[2,9],[-1,6],[-3,4],[-4,4],[-6,5],[-6,7],[-4,8],[1,12],[7,11],[9,6],[2,6],[-12,6],[-5,3],[-2,6],[-2,7],[-2,9],[-5,10],[-8,4],[-9,2],[-7,2],[6,10],[7,8],[3,7],[-8,10],[-2,1],[-3,2],[-3,3],[-3,3],[0,2],[1,3],[0,3],[0,1],[-3,5],[-3,3],[-4,3],[-3,5],[-8,11],[-10,3],[-10,0],[-10,2],[-6,3],[-5,2],[-6,2],[-5,3],[-5,4],[-5,4],[-5,2],[-5,-3],[-2,-4],[-1,-4],[0,-5],[-1,-5],[-3,-8],[-4,-3],[-6,-1],[-4,-1],[-3,-2],[-1,-4],[-2,-2],[-2,-3],[-3,0],[-3,0],[-3,1],[-3,0],[-5,-3],[-4,-4],[-4,-4],[-6,0],[-4,2],[-5,5],[-4,3],[-5,3],[-6,0],[-6,-1],[-7,-2],[-6,-2],[-4,-2],[-4,-2],[-4,0],[-2,6],[0,3],[2,6],[2,7],[1,6],[10,17],[16,18],[9,17],[-16,15],[-5,2],[-5,1],[-6,0],[-5,-1],[-5,0],[-5,2],[-4,4],[-4,6],[-4,3],[-4,3],[-4,4],[-4,3],[-4,4],[-2,6],[-2,6],[-3,5],[-3,5],[-4,4],[-4,5],[-3,6],[-2,7],[-3,5],[-3,3],[-3,1],[-14,1],[-12,3],[-11,7],[-12,12],[-11,10],[-11,6],[-11,3],[-12,0],[-5,1],[-6,2],[-5,2],[-6,0],[-5,-2],[-5,-3],[-5,-2],[-5,0],[-4,2],[-2,4],[-1,6],[-2,5],[-4,5],[-4,3],[-1,3],[3,8],[8,7],[11,4],[11,5],[6,9],[-1,13],[-4,11],[-4,11],[1,12],[5,4],[5,2],[6,1],[5,2],[2,4],[1,5],[1,5],[3,4],[4,2],[7,0],[6,2],[3,6],[0,3],[-2,7],[-2,7],[-1,4],[-5,6],[-5,2],[-6,0],[-5,-1],[-7,-1],[-7,1],[-7,3],[-6,2],[-7,7],[1,8],[4,10],[2,12],[-2,6],[-6,7],[-5,4],[-5,1],[-3,-2],[-3,-4],[-4,-4],[-5,-2],[-4,1],[-5,0],[-4,-2],[0,-6],[-7,0],[-8,4],[-7,7],[-5,7],[5,0],[7,1],[6,0],[3,3],[-2,7],[-5,3],[-5,1],[-3,1],[-4,5],[3,2],[6,0],[4,-1],[6,0],[4,3],[3,5],[3,7],[4,6],[5,5],[4,2],[5,1],[4,-1],[7,0],[5,3],[1,7],[-1,17],[7,14],[9,11],[8,6],[4,3],[3,3],[4,3],[3,3],[3,2],[3,1],[3,2],[3,2],[2,2],[1,3],[1,3],[1,2],[3,1],[2,-1],[2,0],[3,3],[0,2],[0,3],[0,4],[0,3],[2,7],[1,5],[2,4],[3,4],[2,3],[2,5],[1,6],[-1,5],[1,7],[3,4],[6,3],[3,1],[4,3],[3,3],[3,3],[4,4],[2,7],[-1,5],[-2,4],[-3,5],[-3,5],[-1,5],[-1,6],[-2,5],[-3,6],[-5,3],[-4,3],[-4,5],[-1,4],[-1,5],[-1,4],[-1,4],[-3,4],[-3,4],[-3,3],[-3,4],[-10,14],[-12,11],[-12,9],[-12,6],[-5,2],[-5,3],[-5,3],[-4,6],[-1,6],[2,7],[4,6],[2,5],[9,9],[10,5],[10,5],[10,5],[4,2],[6,2],[6,2],[3,3],[1,5],[-1,7],[-2,6],[-2,5],[-11,5],[-13,-6],[-13,-5],[-10,6],[-2,4],[-1,5],[-1,5],[-2,5],[-6,4],[-6,1],[-6,0],[-5,-1],[-6,-3],[-6,-4],[-5,-6],[-5,-7],[-7,-6],[-7,-4],[-8,-3],[-6,-10],[0,-4],[0,-5],[-1,-4],[-2,-3],[-3,-3],[-5,-2],[-4,-1],[-4,-1],[-8,-1],[-10,-1],[-9,3],[-7,6],[6,9],[8,11],[7,12],[3,13],[-3,12],[-10,2],[-12,-2],[-8,-1],[-15,1],[-13,-1],[-13,-4],[-14,-6],[-5,-4],[-5,-4],[-6,-3],[-5,-1],[-3,1],[-3,1],[-2,0],[-3,-2],[-1,-3],[-1,-3],[0,-3],[-1,-3],[-10,-9],[-11,-1],[-10,3],[-10,4],[-10,0],[-11,-1],[-11,4],[-5,13],[2,16],[4,12],[0,8],[-9,3],[-4,0],[-6,0],[-5,3],[-2,6],[1,7],[3,8],[4,7],[3,5],[8,5],[10,5],[9,8],[2,15],[-1,6],[-2,4],[-1,5],[-1,8],[1,5],[1,5],[1,6],[1,6],[-6,17],[-14,6],[-15,-1],[-10,-1],[-10,-1],[-10,1],[-6,6],[5,16],[3,5],[3,6],[2,5],[2,8],[1,8],[-1,7],[0,8],[1,8],[8,8],[11,-4],[11,-5],[7,5],[-2,9],[-7,10],[-6,10],[-3,13],[5,8],[11,8],[10,6],[2,5],[-5,5],[-6,3],[-7,2],[-6,2],[-4,4],[-2,4],[-1,5],[-2,6],[-4,6],[-5,1],[-5,2],[-4,3],[-2,6],[2,3],[4,4],[2,6],[-5,8],[-10,9],[-7,8],[1,8],[5,4],[5,4],[4,6],[3,9],[1,9],[-1,6],[-4,4],[-5,3],[-5,5],[-2,5],[-1,5],[-3,8],[-3,3],[-2,2],[-3,1],[-2,1],[-2,2],[-1,3],[0,4],[-1,2],[-9,10],[-11,5],[-11,4],[-10,4],[-4,2],[-5,2],[-5,5],[-1,6],[3,6],[5,4],[5,2],[4,1],[13,-1],[16,-1],[15,2],[12,9],[-27,0],[-26,0],[-26,0],[-26,0],[-25,0],[-33,0],[-32,0],[-33,0],[-32,0],[-33,0],[-32,0],[-33,0],[-32,0],[-17,0],[-36,0],[-36,0],[-16,0],[-25,0],[-27,0],[-27,0],[-27,0],[-27,0],[-5,0],[-5,0],[-5,0],[-5,0],[-1,2],[-2,3],[-1,3],[-1,3],[-2,7],[-1,4],[-3,3],[-4,5],[-1,4],[0,5],[1,5],[0,5],[0,3],[-1,2],[-1,3],[0,2],[0,5],[2,2],[2,2],[1,3],[1,8],[-2,3],[-3,2],[-4,7],[-1,6],[2,6],[3,3],[3,3],[5,4],[5,3],[5,3],[5,4],[2,5],[1,8],[1,8],[1,8],[2,5],[3,3],[2,3],[-1,7],[-2,5],[-2,4],[-2,4],[-2,4],[-3,11],[1,2],[3,1],[2,7],[-2,3],[-5,4],[-6,3],[-3,2],[-5,3],[-3,2],[0,3],[3,7],[3,11],[1,8],[0,8],[1,10],[1,2],[2,2],[1,2],[-1,4],[-1,1],[-2,1],[-1,2],[-1,2],[-1,8],[-1,8],[0,8],[-3,8],[-6,13],[-7,10],[-8,7],[-10,3],[-6,0],[-5,1],[-5,2],[-5,2],[-3,1],[-2,0],[-3,2],[-2,3],[-1,3],[0,2],[0,3],[0,3],[0,1],[0,2],[0,3],[0,3],[-1,1],[-1,2],[-1,2],[-1,2],[-1,10],[-1,12],[1,11],[0,11],[0,49],[-1,48],[0,49],[1,49],[0,55],[0,55],[0,54],[0,55],[0,27],[0,28],[0,27],[0,28],[0,98]],[[12099,88280],[-1,2]],[[12098,88282],[-3,43],[-1,10],[-14,156],[0,5]],[[12080,88496],[12,27],[48,54],[43,32],[-12,34],[-2,21],[4,28],[11,26],[14,20],[23,22],[28,19],[25,12],[50,16],[54,6],[49,-4],[62,-17],[48,34],[35,15],[49,10],[64,1],[37,-3],[35,-8],[37,-16],[43,-29],[39,-9],[41,-16],[26,0],[18,7],[40,22],[41,13],[34,23],[30,13],[97,25],[34,4],[37,1],[21,7],[36,22],[63,51],[27,12],[52,15],[37,36],[25,16],[121,49],[34,10],[37,5],[72,-5],[20,1],[39,25],[25,12],[32,11],[34,6],[34,2],[34,-2],[33,-8],[27,-10],[40,-26],[40,-50],[27,-23],[13,-7],[13,0],[26,22],[-17,35],[-6,30],[-32,43],[-6,27],[7,38],[25,63],[26,33],[42,28],[52,18],[58,5],[37,-2],[37,-8],[29,-10],[33,-16],[58,-38]],[[14579,89296],[77,-51],[80,-60],[47,-40],[44,-52],[76,-129],[41,-49],[11,-33],[1,-50],[5,-19],[20,-29],[28,-18],[13,0],[8,14],[15,62],[9,70],[20,42],[7,50],[20,30],[28,25],[25,15],[27,11],[29,7],[39,6],[53,1],[51,-8],[51,3],[56,-4],[50,-10],[40,-16],[41,186],[41,186],[-39,36],[-23,26],[-19,28],[-55,119],[-49,45],[-24,40],[-13,13],[-79,29],[-79,29],[-45,21],[-49,28],[-20,8],[-16,2],[-59,-6],[-38,2],[-64,13],[-52,15],[-30,12],[-25,17],[-21,21],[-12,20],[-8,35],[11,37],[14,18],[28,29],[27,55],[19,47],[46,50],[22,53],[51,54],[23,20],[6,28],[18,25],[0,10],[-19,26],[-10,25],[0,24],[8,24],[14,21],[41,39],[7,45],[6,20],[33,47],[30,27],[11,14],[23,47],[22,59],[22,24],[59,49],[15,50],[-4,12],[-33,32],[-17,29],[-26,33],[-33,52],[-18,65],[-44,41],[-33,50],[-8,21],[0,9],[25,51],[21,19],[34,20],[37,14],[47,11],[123,17],[64,14],[75,6],[69,9],[33,2],[52,10],[88,4],[89,4],[76,7],[37,6],[114,28],[83,12],[41,1],[24,213],[24,214],[-53,10],[-52,16],[-38,19],[-49,31],[-47,18],[-48,9],[-69,6],[-48,7],[-46,10],[-43,14],[-38,16],[-27,17],[-23,18],[-21,23],[-56,31],[-27,27],[-11,22],[-1,23],[3,9],[29,63],[9,10],[47,50],[50,53],[119,70],[29,10],[64,14],[96,13],[16,3],[33,29],[28,46],[32,25],[25,13],[33,12],[32,9],[50,10],[16,6],[31,37],[26,20],[35,21],[30,34],[45,28],[50,39],[84,39],[9,8],[10,23],[16,17],[24,17],[36,21],[16,7],[35,13],[32,11],[69,14],[69,14],[76,6],[91,0],[67,9],[106,8],[13,4],[60,35],[49,19],[37,9],[39,8],[92,12],[104,7],[40,0],[37,-3],[69,-11],[96,-29],[15,-3],[0,5],[-15,15],[-38,25],[-71,55],[-19,20],[-10,17],[-3,21],[12,26],[21,23],[32,20],[37,16],[72,21],[59,23],[42,10],[60,19],[81,16],[36,13],[19,10],[14,12],[42,64],[15,15],[22,16],[2,1],[24,13],[34,15],[92,29],[54,20],[76,20],[76,19],[65,11],[13,2],[3,-3],[0,3],[0,213],[0,212],[0,213],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,257],[0,258],[0,257],[0,258],[0,258],[0,257],[0,258],[0,257],[0,258],[0,257],[-18749,258]],[[10409,42777],[0,278],[0,278],[-1,278],[0,277],[0,278],[0,278],[0,277],[0,278],[0,278],[0,278],[0,277],[0,278]],[[10408,46666],[128,0],[129,0],[128,0],[128,0],[128,0],[128,0],[128,0],[128,0],[128,0],[128,0],[128,0],[128,0],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[-1,-277],[0,-277],[0,-278]],[[11944,44448],[0,-239],[0,-238]],[[11944,43971],[0,-239],[0,-239],[0,-238],[0,-239],[0,-239]],[[0,99999],[27080,-258],[1,-257],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-258],[0,-257],[1,-258],[0,-257],[0,-231],[0,-231],[0,-231],[0,-251],[-2,0],[0,-117],[-36,-8],[-22,-5],[-49,-15],[-42,-19],[-27,-19],[-19,-22],[-81,-18],[-58,-19],[-32,-16],[-41,-31],[-14,-6],[-85,6],[-70,3],[-92,0],[-23,0],[0,-261],[0,-262],[0,-261],[0,-262],[0,-261],[0,-262],[0,-261],[0,-261],[0,-262],[0,-261],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-239],[0,-240],[0,-239],[0,-240],[-89,-57],[-89,-57],[-66,-58],[-66,-58],[-89,-205],[-89,-205],[-89,-204],[-89,-205],[-89,-205],[-88,-205],[-89,-205],[-89,-205],[-89,-205],[1,-262],[1,-263],[1,-262],[1,-263],[2,-262],[1,-263],[1,-262],[1,-263],[1,-262],[1,-263],[1,-262],[1,-263],[-1,-1],[-99,-122],[-98,-122],[-99,-122],[1,-242],[1,-241],[1,-242],[1,-241],[1,-242],[137,4],[137,3],[71,-99],[71,-99],[0,-172],[-71,-99],[-71,-99],[0,-126],[-94,-2],[-93,-2],[-94,-3],[5,-211],[5,-212],[-71,-59],[-71,-60],[-79,-158],[3,-119],[73,-152],[71,-70],[71,-69],[0,-227],[0,-227],[0,-227],[-94,-55],[-94,-55],[-93,-55],[1,-205],[2,-205],[94,-42],[93,-41],[94,-42],[-13,-124],[11,-24],[4,-4],[17,-13],[5,-1],[27,16],[7,1],[5,1],[4,-2],[6,-5],[4,-1],[9,3],[6,-1],[18,-6],[26,-1],[-8,-24],[-8,-25],[-8,-25],[-8,-24],[-8,-25],[-8,-24],[-8,-25],[-8,-25],[-8,-24],[-8,-25],[-8,-25],[-8,-24],[-8,-25],[-8,-24],[-7,-25],[-8,-25],[-3,-7],[15,-141],[14,-141],[-1,-96],[35,0],[0,-49],[104,1],[0,-96],[104,0],[0,48],[87,0],[17,0],[139,0],[0,-96],[69,0],[70,0],[0,-145],[69,0],[0,-48],[12,-1],[-1,-193],[18,0],[-2,-7],[43,-48],[95,0],[9,-8],[9,-8],[8,-7],[9,-8],[9,-8],[9,-8],[9,-8],[9,-8],[8,-7],[9,-8],[9,-8],[9,-8],[9,-8],[9,-8],[9,-7],[8,-8],[-17,-23],[-9,-13],[-20,-27],[-20,-28],[-9,-12],[-12,-27],[-13,-28],[-12,-27],[-13,-27],[-9,-42],[-13,-63],[-11,-51],[-11,-53],[-11,-56],[-11,-49],[-13,-62],[-9,-43],[-7,-60],[-8,-61],[-8,-60],[-7,-60],[-1,-46],[-1,-46],[-1,-46],[-1,-46],[4,-53],[4,-63],[5,-69],[3,-47],[4,-61],[4,-54],[3,-40],[5,-76],[-7,-58],[-12,-95],[-4,-32],[-5,-45],[-11,-82],[-7,-58],[-4,-37],[5,0],[22,0],[21,0],[21,0],[115,0],[9,0],[0,-61],[10,0],[1,-24],[-4,-48],[-7,-1],[0,-47],[-20,-1],[-13,0],[-16,-16],[-10,-41],[-13,-24],[-40,-23],[0,-9],[-1,-31],[0,-145],[-15,0],[0,-41],[-32,0],[1,-56],[-47,0],[-72,0],[0,-5],[0,-66],[0,36],[0,-101],[0,-8],[0,-39],[-1,-77],[0,-68],[-1,1],[0,-75],[0,-72],[0,-10],[0,-144],[0,-44],[0,-28],[0,-43],[0,-21],[-1,-3],[-17,-12],[-5,-8],[-3,-12],[2,-9],[6,-19],[0,-24],[-12,-18],[-6,-9],[-1,-21],[1,-5],[3,-3],[4,-4],[8,-13],[3,-10],[2,-21],[2,-9],[3,-6],[8,-12],[2,-7],[-1,-29],[-4,-8],[-1,-7],[3,-20],[6,-22],[4,-22],[-9,-40],[-1,-4],[-3,-1],[-4,0],[-3,-1],[-5,-6],[-4,-10],[-2,-11],[1,-11],[-1,-3],[0,-2],[-1,-1],[-1,-2],[1,0],[-3,-3],[-4,-5],[-3,-6],[-1,-8],[1,-9],[5,-12],[0,-6],[-2,-6],[-2,0],[-1,3],[-3,-1],[-2,-2],[-3,-6],[-2,-3],[-9,-7],[-9,-5],[0,-4],[5,-6],[-2,-11],[-1,-3],[6,0],[66,44],[10,18],[15,1],[14,7],[15,-18],[17,19],[39,-6],[8,-17],[0,-150],[0,-16],[15,-1],[63,1],[6,-113],[-7,-1],[-7,-2],[5,-10],[2,-15],[6,-15],[9,-11],[9,-3],[13,4],[5,-2],[-3,-12],[-2,-9],[4,-6],[6,0],[6,6],[2,11],[0,11],[2,9],[15,5],[4,5],[0,9],[-1,36],[2,12],[4,5],[2,0],[2,-2],[53,-78],[41,-59],[-35,-114],[10,2],[36,-18],[18,-64],[43,-6],[65,-10],[5,18],[15,7],[6,-27],[23,-30],[25,-69],[-5,-4],[10,-6],[6,-16],[7,13],[10,18],[25,11],[10,23],[15,-16],[15,-13],[1,-34],[3,-6],[24,-47],[15,8],[-1,-38],[7,-12],[10,-19],[17,-7],[3,-12],[26,13],[16,-46],[12,-17],[-1,-23],[-52,-117],[-2,-4],[-1,-3],[-2,1],[11,-31],[4,-13],[20,-72],[-11,-14],[-44,-43],[-16,-47],[2,-13],[0,-16],[52,-90],[11,-48],[-8,-13],[-5,-14],[-15,-18],[0,-1],[-37,-35],[-53,-106],[-11,-44],[3,-18],[-9,-2],[-5,-18],[-11,-38],[-5,-17],[-39,-95],[-2,-19],[8,-17],[-31,-58],[0,-1],[-37,2],[1,-4],[1,-9],[0,-7],[2,-20],[2,-26],[3,-30],[3,-34],[4,-37],[5,-41],[5,-44],[5,-46],[5,-49],[5,-50],[5,-51],[5,-54],[5,-50],[5,-53],[6,-58],[4,-45],[5,-50],[5,-48],[5,-47],[4,-43],[4,-41],[3,-38],[4,-34],[3,-30],[2,-25],[2,-21],[2,-15],[1,-9],[0,-3],[2,-22],[0,-5],[9,-40],[-1,-16],[0,-5],[1,-5],[1,-3],[2,-4],[6,-10],[1,-4],[-2,-5],[1,-6],[3,-5],[2,-7],[2,-19],[2,-12],[1,-7],[-1,-9],[2,-6],[3,-3],[2,-5],[-2,-7],[20,-42],[3,-9],[1,-7],[1,-18],[2,-9],[3,-8],[3,-8],[0,-7],[0,-8],[-2,-6],[-1,-5],[1,-6],[-6,-12],[1,-10],[5,-9],[14,-13],[2,-4],[2,-6],[1,0],[1,-1],[1,-4],[-1,-5],[-2,-3],[-2,-2],[-3,0],[2,-7],[-1,-5],[-2,-4],[-2,-3],[-5,4],[-5,-2],[0,-5],[4,-5],[-3,-4],[-5,-4],[-5,-2],[-3,-1],[-2,-2],[-2,-5],[-5,-18],[0,-5],[0,-14],[-1,-7],[-2,-10],[-1,-12],[2,-13],[-1,-14],[-1,-2],[-2,-8],[-1,-3],[-8,-21],[-5,-22],[-2,-18],[-2,-8],[0,-2],[-1,-4],[-1,-12],[2,-11],[7,-62],[3,-9],[9,-23],[3,-10],[0,-7],[0,-15],[1,-4],[2,-11],[1,-8],[-2,-13],[-3,-11],[-2,-11],[3,-16],[-6,-13],[-2,-21],[-1,-42],[-2,-5],[-3,-9],[-1,-6],[1,-4],[2,-11],[1,-5],[-2,-20],[1,-9],[3,-7],[5,-5],[8,-18],[7,-23],[3,-26],[3,-6],[0,-6],[-1,-5],[-1,-3],[-1,-2],[-1,-2],[0,-7],[2,-3],[5,-6],[1,-3],[2,-6],[2,-16],[2,-5],[4,-13],[2,-13],[1,-23],[4,-37],[12,-22],[5,-13],[-21,-50],[-4,-15],[-19,-81],[-15,-102],[-14,-28],[-5,-21],[3,-24],[-11,-4],[6,-52],[35,-21],[0,-17],[-9,-27],[5,-31],[1,-26],[-5,-10],[-17,-2],[-21,-33],[-8,-11],[-2,-145],[17,-9],[6,-4],[31,-9],[30,5],[32,21],[116,120],[36,26],[35,56],[9,30],[6,7],[67,-71],[27,-78],[25,-45],[6,-43],[9,-26],[52,-87],[28,-58],[8,-51],[13,-33],[24,-29],[39,-7],[12,-14],[6,-32],[1,-64],[12,-83],[-8,-58],[-24,-125],[-4,-96],[-17,-67],[-3,-39],[7,-64],[27,-81],[2,-76],[7,-39],[44,-130],[21,-62],[13,-49],[43,-163],[0,-263],[0,-262],[0,-263],[0,-262],[0,-262],[0,-263],[0,-144],[0,-143],[-34,-38],[-20,-12],[-97,-8],[-65,-18],[-69,-56],[-70,-55],[-2,-1],[-29,-14],[-66,-33],[-22,-24],[-16,-40],[-27,-33],[-22,-47],[-13,-34],[-8,-4],[-19,-27],[-13,-43],[-3,-39],[5,-31],[-7,-38],[-13,-38],[-21,-20],[-65,-27],[-28,-39],[-11,-33],[-6,-37],[0,-38],[5,-38],[18,-49],[29,-33],[38,-11],[42,16],[25,-34],[27,-12],[42,16],[57,68],[38,0],[22,11],[23,27],[16,40],[16,-30],[20,-19],[25,-8],[24,5],[2,2],[24,-2],[3,-13],[-2,-5],[-8,-55],[7,-63],[19,-57],[27,-48],[34,-33],[62,-15],[49,15],[57,53],[0,-261],[0,-262],[0,-261],[0,-262],[0,-262],[0,-261]],[[27082,60296],[0,-135],[0,-57],[0,-208]],[[27082,59896],[0,-256],[0,-257],[0,-256],[0,-257],[0,-256],[0,-62],[27,-37],[12,-32],[1,-2],[0,-1],[14,-19],[1,-1],[12,-36],[4,-37],[-3,-44],[-8,-31],[0,-1],[-1,0],[-15,-27],[-1,-1],[-1,-1],[-17,-11],[-1,-1],[-1,0],[-17,2],[-2,-2],[-4,-3],[0,-14],[3,-52],[26,-41],[11,-57],[-3,-50],[-12,-38],[14,-55],[2,-62],[-5,-34],[-10,-30],[-22,-30],[-4,-1],[0,-249],[0,-250],[0,-249],[0,-250],[0,-274],[1,-274],[0,-275],[0,-274],[0,-275],[0,-77],[-18,-39],[-2,2],[0,-4],[2,-9],[1,-7],[-3,-1],[-4,5],[-4,1],[-2,-6],[-1,-21],[-2,-7],[-4,-1],[-5,1],[-5,3],[-2,3],[-3,6],[-4,14],[-3,6],[-2,-2],[-3,2],[-11,20],[-16,12],[-5,-1],[-6,-9],[-3,-8],[0,-5],[3,-12],[2,-16],[1,-3],[2,-1],[1,-1],[0,-5],[-4,-5],[-15,-4],[-5,-3],[-3,-8],[0,-11],[0,-46],[0,-66],[1,-97],[8,6],[3,0],[2,-2],[1,-5],[1,-4],[1,-3],[1,-2],[7,-6],[12,-18],[13,-9],[4,-5],[7,-24],[1,-5],[0,-1],[-4,-12],[-8,-10],[-29,-24],[-3,-4],[-3,-7],[2,-3],[2,-2],[0,-8],[-3,-6],[-8,-10],[-2,-5],[-1,-8],[2,-8],[2,-7],[9,-20],[4,-13],[4,-14],[2,-17],[2,-39],[-1,-19],[-3,-17],[-6,-15],[-7,-7],[-8,-5],[-8,-8],[-12,-23],[-13,-14],[-2,-4],[-1,-7],[3,-5],[8,-10],[1,-3],[3,-8],[1,-2],[2,0],[4,2],[2,0],[5,-5],[2,-6],[1,-18],[15,-63],[-2,-25],[-1,-13],[-23,-101],[4,-2],[33,6],[30,16],[13,27],[14,74],[8,15],[13,-14],[8,-43],[10,-26],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[1,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[1,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278]],[[27085,9145],[-37,11],[-22,4],[-94,9],[-21,24],[-27,21],[-33,16],[-37,10],[-68,11],[-6,1],[-47,5],[-31,-1],[-51,-1],[-55,-6],[-17,2],[-18,5],[-26,13],[-15,8],[-49,35],[-9,50],[-13,21],[-18,19],[-22,16],[-26,13],[-28,12],[-39,11],[-41,7],[-44,4],[-43,0],[-43,-4],[-56,-12],[-27,-9],[-46,-22],[-59,-14],[-33,25],[-32,16],[-40,13],[-70,14],[-23,11],[-5,11],[7,24],[1,20],[-6,40],[-8,27],[-15,25],[-18,22],[-24,21],[-25,17],[-38,16],[-38,10],[-99,14],[-99,14],[-100,14],[-69,5],[-58,-4],[-60,-15],[-64,-29],[-26,-3],[-13,2],[-15,7],[-45,36],[-38,22],[-39,16],[-44,12],[-48,7],[-46,1],[-99,-5],[-52,-9],[-79,-28],[-39,-18],[-102,-25],[-3,6],[-21,22],[-26,17],[-32,16],[-30,10],[-37,8],[-39,5],[-39,0],[-33,-3],[-62,-10],[-42,0],[-45,9],[-64,29],[-45,13],[-58,5],[-30,-1],[-27,-4],[-8,2],[-23,23],[9,34],[-5,29],[-34,58],[-18,23],[-27,24],[-22,14],[-25,13],[-36,12],[-26,30],[-48,36],[-37,21],[-36,16],[-42,12],[-46,8],[-37,1],[-57,-5],[-76,6],[-41,-3],[-34,-5],[-76,-25],[-32,2]],[[22909,33889],[-3,0],[-137,0],[-138,-1],[-137,0],[-138,0],[-137,0],[-137,0]],[[22336,36111],[114,0],[114,0],[114,0],[114,0],[114,0],[4,0]],[[22912,94797],[0,61],[0,256],[0,256],[0,257],[0,256],[0,257],[0,256],[0,257],[0,256],[0,257]],[[0,99999],[31249,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-258],[0,-257],[0,-258],[0,-257],[0,-238],[0,-238],[0,-238],[0,-238],[85,-10],[94,-2],[94,-3],[75,-4],[73,-6],[72,-6],[111,-15],[108,4],[73,1],[81,-2],[69,-4],[58,-6],[55,-8],[31,-6],[32,-7],[43,-12],[85,-4],[66,-5],[58,-7],[57,-10],[47,-11],[40,-14],[38,-17],[28,-18],[16,-16],[11,-19],[1,-20],[-10,-22],[4,-4],[15,-3],[72,-8],[81,-14],[98,-11],[51,-8],[46,-11],[51,-14],[44,-15],[36,-15],[61,-37],[36,-30],[17,-28],[5,-37],[4,-7]],[[33461,95723],[-128,-48],[-134,-43],[-117,-38],[-117,-38],[-117,-38],[-117,-37],[-117,-66],[-117,-66],[-43,-24],[-94,-53],[-95,-53],[-94,-53],[-116,-52],[-115,-51],[-116,-52],[-116,-52],[-116,-52],[-60,-9],[-88,-19],[-88,-19],[-112,-62],[-113,-61],[-113,-62]],[[31018,94675],[-59,-74],[-46,-57]],[[30913,94544],[1,0]],[[30914,94544],[-34,-43],[-46,-57],[-24,-49],[-23,-49],[-23,-48],[-23,-49],[-127,-59],[-128,-59],[-127,-58],[-127,-59],[-128,-59],[-127,-59],[-127,-59],[-46,-21],[-82,-38],[-26,-27],[-4,-4],[-23,-23],[-27,-26],[-11,-12],[-15,-15],[-27,-27],[-26,-27],[-27,-26],[-27,-27],[-6,-11],[-25,-46],[-3,-7],[-7,-12],[-28,-51],[-14,-25],[0,-3],[17,-29],[22,-19],[30,-17],[75,-28],[85,-37],[12,-9],[24,-28],[38,-22],[41,-15],[103,-31],[38,-9],[15,-8],[-4,-3],[-12,-2],[-98,-11],[-44,-8],[-96,-33],[-47,-21],[-30,-24],[-19,-33],[0,-30],[18,-30],[29,-25],[40,-23],[43,-16],[135,-45],[39,-19],[16,-14],[11,-14],[11,-40],[14,-25],[21,-22],[28,-19],[77,-38],[48,-34],[63,-33],[60,-24],[69,-16],[-1,-32],[18,-31],[33,-29],[57,-28],[20,-43],[17,-17],[19,-15],[104,-52],[87,-28],[53,-41],[51,-22],[30,-19],[64,-26],[63,-17],[88,-12],[88,-12],[122,-16],[38,-8],[0,-250],[0,-251],[0,-250],[0,-250],[0,-250],[0,-236],[0,-236],[0,-237],[0,-236],[0,-236],[0,-236],[0,-151],[0,-151],[43,-23],[52,-49],[37,-29],[102,-130],[12,-29],[4,-36],[15,-39],[10,-62],[-9,-41],[-31,-42],[77,-50],[27,-25],[42,-52],[13,-28],[7,-25],[0,-44],[-17,-44],[-31,-41],[-38,-30],[-38,-17],[-45,-10],[-44,-2],[-75,10],[-19,-3],[-12,-8],[-6,-14],[1,-18],[32,-51],[12,-40],[9,-4],[30,-5],[58,-5],[30,-5],[38,-12],[43,-19],[35,-26],[28,-40],[52,-19],[28,-14],[20,-18],[19,-23],[49,-32],[31,-34],[1,0],[10,-1],[33,11],[32,6],[29,1],[32,-3],[52,-14],[84,-41],[28,-22],[22,-25],[21,-60],[0,-1],[40,-24],[23,-21],[13,-12],[54,-17],[32,-20],[68,-79],[21,-45],[10,-15],[50,-5],[48,-15],[50,-29],[35,-31],[64,-4],[36,-11],[56,-36],[28,-32],[17,-9],[23,-11],[105,-71],[57,-61],[78,-100],[23,-41],[12,-40],[1,-29],[-5,-31],[-14,-26],[-37,-39],[-1,-51],[-16,-39],[-21,-23],[-30,-21],[-34,-17],[-48,-17],[12,-55],[-7,-42],[-24,-37],[-49,-38],[24,-42],[7,-37],[-7,-41],[-20,-39],[-18,-22],[-25,-23],[-22,-13],[-25,-10],[-42,-7],[-57,3],[-46,-13],[-56,-1],[-9,-4],[-8,-11],[-3,-5],[-3,-19],[8,-67],[-16,-81],[-6,-18],[-18,-38],[-17,-25],[-12,-38],[-16,-26],[-31,-27],[-38,-18],[-26,-5],[-30,-2],[-31,3],[-26,7],[-34,16],[-77,53],[-78,28],[-48,-181],[10,-38],[1,-31],[-5,-28],[-11,-26],[-19,-26],[-1,-10],[10,-8],[47,-7],[23,-11],[28,-20],[22,-26],[48,-112],[37,-71],[21,-66],[7,-54],[8,-29],[12,-23],[31,-43],[14,-37],[4,-39],[-10,-46],[-8,-20],[-23,-26],[-30,-19],[-33,-10],[-35,-2],[-46,8],[-9,-4],[21,-40],[9,-26],[5,-75],[8,-37],[15,-32],[39,-57],[8,-27],[-12,-81],[-24,-39],[-44,-45],[-48,-32],[-40,-13],[-50,1],[8,-67],[32,-39],[78,-146],[14,-36],[4,-30],[-21,-114],[-20,-40],[-39,-59],[-20,-21],[-24,-15],[4,-137],[31,-1],[30,-10],[24,-14],[20,-20],[17,-27],[8,-30],[2,-28],[-9,-48],[-58,-98],[2,-10],[0,-1],[-9,-5],[-8,-2],[-8,-5],[-6,-10],[-2,-13],[-4,-9],[-7,0],[-7,-1],[-6,-2],[-7,-2],[-3,0],[-4,-1],[-6,1],[-7,0],[-7,0],[-10,-3],[-13,-5],[-10,-9],[-3,-15],[4,-10],[9,-12],[10,-9],[7,-4],[11,3],[11,2],[9,-5],[8,-18],[2,-7],[0,-6],[-1,-5],[-4,-1],[-7,0],[-7,0],[-8,-1],[-7,0],[-5,-2],[2,-6],[5,-5],[3,-3],[0,-7],[-3,-3],[-5,-1],[-4,-2],[-4,-2],[-5,-3],[-5,-2],[-5,-1],[-5,3],[-6,5],[-6,4],[-5,-2],[-2,-5],[1,-5],[3,-4],[3,-5],[2,-6],[1,-6],[2,-6],[1,-6],[3,-6],[3,-3],[3,1],[5,3],[4,1],[4,-2],[4,-4],[3,-3],[8,-3],[9,-1],[8,-5],[2,-13],[-4,-18],[-9,0],[-10,4],[-8,-6],[0,-6],[3,-5],[3,-5],[-1,-5],[-4,-3],[-5,-2],[-5,-3],[-4,-5],[2,-4],[1,-4],[0,-3],[0,-4],[0,-1],[-1,-2],[-1,-3],[-1,-2],[1,-1],[0,-2],[1,-4],[1,-3],[1,-3],[1,-5],[1,-6],[1,-4],[1,-5],[1,-5],[1,-3],[1,-3],[-14,-10],[-11,-5],[-6,-4],[-5,-13],[0,-21],[3,-21],[11,-11],[7,-5],[0,-2],[7,-7],[2,-1],[2,0],[3,0],[2,-2],[0,-3],[-1,-3],[0,-2],[0,-2],[2,-7],[3,-5],[3,-6],[4,-5],[8,-5],[8,2],[9,5],[8,5],[9,5],[9,7],[9,8],[8,8],[9,4],[11,2],[10,-3],[8,-10],[1,-8],[-3,-4],[-5,-3],[-5,-3],[-6,-4],[-6,-4],[-6,-4],[-6,-5],[-4,-4],[-3,-3],[-1,-5],[3,-6],[3,-6],[-2,-4],[-4,-3],[-4,-2],[-4,-6],[4,-8],[5,-9],[-2,-11],[-2,-4],[-3,-4],[-2,-6],[-1,-6],[2,-6],[3,-4],[3,-4],[1,-6],[-1,-8],[-3,-6],[-3,-8],[0,-9],[1,-5],[3,-4],[3,-3],[3,-4],[2,-11],[-1,-11],[1,-11],[6,-10],[6,-4],[8,-1],[7,-1],[8,-2],[4,-4],[4,-5],[4,-6],[4,-7],[4,-15],[-7,-8],[-12,-4],[-8,-1],[-7,-1],[-7,0],[-6,3],[-7,5],[-5,3],[-5,0],[-5,0],[-5,4],[-5,5],[-6,2],[-6,0],[-6,2],[-4,3],[-3,3],[-2,5],[-3,5],[-9,6],[-11,0],[-10,-6],[-9,-10],[-2,-4],[-4,-8],[-3,-8],[-2,-4],[1,-4],[2,-3],[2,-4],[2,-3],[0,-6],[-5,-5],[-4,-4],[-3,-3],[2,-6],[5,-4],[6,-2],[3,-1],[9,1],[8,8],[8,7],[9,1],[10,-8],[8,-9],[9,-9],[10,-5],[7,0],[7,2],[6,3],[7,0],[7,-2],[6,-2],[6,-3],[7,0],[9,1],[10,0],[9,-5],[5,-14],[0,-9],[-2,-7],[-1,-8],[0,-8],[2,-6],[4,-4],[3,-3],[4,-2],[10,-5],[8,-4],[9,1],[10,9],[9,12],[10,11],[11,8],[11,2],[7,-1],[7,-1],[7,1],[7,2],[4,5],[3,5],[3,6],[3,5],[9,7],[10,-1],[9,-4],[9,-7],[7,-3],[6,-2],[6,-3],[6,-5],[4,-5],[5,-7],[4,-6],[4,-7],[7,-17],[-4,-12],[-10,-8],[-11,-4],[-15,-3],[-16,-3],[-16,-2],[-16,-2],[-5,0],[-6,1],[-5,2],[-6,1],[-5,-1],[-5,-5],[-5,-4],[-5,-2],[-11,1],[-10,-2],[-9,-7],[-7,-17],[-3,-13],[-1,-13],[2,-11],[4,-11],[7,-10],[6,-4],[7,1],[9,2],[7,6],[8,10],[8,3],[8,-10],[2,-6],[0,-7],[1,-6],[3,-4],[4,-6],[2,-6],[0,-6],[-3,-8],[-9,-12],[-11,-2],[-10,1],[-11,-2],[-7,-7],[-4,-10],[-3,-11],[-6,-6],[-7,-2],[-8,-2],[-8,-3],[-7,-6],[-2,-5],[-2,-6],[-1,-5],[-1,-7],[-2,-7],[0,-9],[-1,-8],[-2,-8],[-3,-6],[-4,-6],[-5,-4],[-5,-3],[-13,-1],[-13,-4],[-10,-10],[-6,-22],[-2,-14],[-3,-15],[0,-12],[7,-6],[5,0],[5,1],[6,0],[5,-2],[5,-3],[5,-3],[4,-2],[6,0],[9,-1],[3,-10],[-1,-14],[0,-14],[4,-12],[5,-10],[5,-11],[4,-12],[6,-20],[10,-30],[11,-22],[10,6],[0,7],[1,8],[1,5],[5,-1],[5,-3],[5,-1],[5,-2],[4,-3],[4,-7],[1,-10],[1,-11],[3,-8],[4,-3],[4,0],[4,-1],[3,-4],[2,-7],[1,-6],[3,-3],[4,2],[4,8],[2,10],[3,4],[6,-9],[3,-11],[6,-13],[5,-7],[6,8],[2,6],[0,7],[1,6],[1,7],[3,6],[6,4],[5,1],[4,-3],[3,-15],[-3,-15],[-6,-13],[-6,-10],[-8,-8],[-9,-6],[-9,-6],[-6,-9],[-3,-13],[1,-14],[0,-15],[0,-15],[-1,-12],[2,-12],[4,-11],[5,-8],[5,-12],[-3,-8],[-7,-5],[-8,-3],[-4,-3],[-3,-4],[-4,-4],[-4,-3],[-3,-3],[-1,-5],[0,-6],[-1,-6],[-3,-13],[-4,-12],[-2,-13],[2,-15],[6,-5],[4,15],[2,21],[2,10],[5,1],[8,-7],[6,-11],[2,-9],[-2,-9],[-4,-8],[-4,-7],[-3,-8],[0,-6],[1,-5],[1,-6],[1,-6],[-4,-15],[-8,-6],[-7,-3],[-6,-9],[-2,-5],[-1,-9],[-1,-8],[0,-5],[2,-7],[3,-5],[0,-4],[-4,-3],[-5,-6],[-4,-10],[-1,-11],[2,-11],[3,-5],[4,-4],[4,-6],[0,-7],[-4,-3],[-6,1],[-6,1],[-4,0],[-8,-5],[-7,-7],[-4,-10],[3,-14],[2,-13],[-8,-6],[-10,-3],[-7,-3],[-5,-8],[-4,-11],[-3,-13],[0,-11],[5,-11],[7,-7],[7,-7],[6,-9],[2,-9],[2,-7],[2,-5],[4,-7],[5,-3],[4,-3],[4,-5],[3,-7],[0,-11],[-2,-12],[1,-11],[6,-7],[9,-4],[5,-7],[-1,-7],[-9,-6],[-14,-5],[-14,0],[-14,3],[-15,4],[-3,1],[-5,2],[-5,-1],[-2,-5],[1,-6],[4,-4],[4,-3],[4,-2],[4,-13],[1,-15],[-3,-15],[-6,-10],[2,-3],[2,-2],[2,-3],[2,-2],[1,-3],[2,-4],[1,-3],[1,-3],[5,-3],[5,-1],[5,2],[5,3],[8,-1],[13,-5],[12,-9],[6,-11],[-3,-13],[-9,-6],[-12,-3],[-8,-4],[-5,-8],[-2,-11],[-1,-12],[0,-14],[3,-11],[9,4],[11,11],[6,7],[4,3],[6,3],[5,2],[4,-2],[2,-4],[-1,-4],[-3,-3],[-3,-3],[-3,-5],[0,-4],[2,-2],[3,-1],[4,-1],[1,-2],[1,-4],[1,-4],[8,-6],[10,0],[9,2],[9,1],[6,-3],[5,-4],[5,-4],[5,-4],[6,-1],[6,-1],[5,1],[6,1],[5,2],[9,3],[10,0],[4,-4],[-1,-6],[-5,-4],[-5,-3],[-3,-1],[-6,-1],[-5,0],[-6,0],[-5,-2],[-4,-4],[-5,-4],[-5,-4],[-4,-5],[-8,-5],[-6,-6],[-1,0],[-10,-3],[-9,-2],[-8,-1],[-7,-6],[-7,-4],[0,-11],[4,-13],[12,-12],[5,-10],[0,-15],[1,-6],[5,-2],[9,-3],[4,-4],[1,-13],[-3,-12],[-2,-9],[-4,-14],[-4,-8],[-2,-12],[6,-1],[7,1],[5,-2],[4,-15],[-2,-15],[0,-22],[-3,-20],[-7,-12],[-9,-5],[-7,-4],[1,-12],[8,-12],[26,-8],[18,-1],[19,0],[15,-4],[18,-6],[8,4],[7,0],[2,-13],[-4,-16],[-9,-2],[-22,-8],[-10,2],[-10,0],[-7,0],[-7,-4],[1,-7],[5,-1],[6,-1],[-2,-8],[-8,-4],[-8,0],[-13,-8],[-4,-9],[4,-14],[15,-6],[12,-4],[15,7],[10,5],[14,2],[-2,-14],[-1,-1],[-9,-12],[-13,-1],[-10,-5],[-4,-5],[-4,-15],[-7,-20],[-3,-27],[4,-13],[1,-16],[1,-10],[1,-13],[-6,-10],[0,-9],[1,-14],[-3,-10],[-16,0],[-8,9],[-13,9],[-10,5],[-12,-1],[-1,-12],[-7,-22],[2,-19],[4,-9],[-4,-9],[-13,-9],[-5,-8],[2,-11],[7,-9],[22,-20],[9,-17],[8,-18],[-3,-13],[-17,10],[-16,-7],[-6,-9],[-5,-7],[-19,3],[-23,0],[-18,14],[-8,20],[-5,12],[-5,12],[-18,12],[-19,19],[-22,13],[-18,3],[-13,-18],[-10,-13],[-10,-7],[-15,4],[-1,0],[-11,1],[-5,0],[-7,-4],[-14,5],[-1,7],[-2,10],[3,12],[2,15],[-6,10],[-8,3],[-11,5],[-2,13],[-4,9],[-19,23],[-18,5],[-14,6],[-13,4],[-17,-15],[-9,-28],[-7,-16],[-15,-8],[-6,-6],[-6,6],[-10,-6],[-7,-1],[-6,0],[-7,5],[-13,5],[-3,-14],[7,-11],[3,-9],[0,-20],[-9,-8],[-18,-3],[-2,2],[-6,6],[-15,5],[-7,-10],[-3,-6],[-4,-3],[-1,0],[-5,5],[-4,8],[-6,12],[-7,11],[-9,10],[-7,11],[-6,14],[-2,8],[-1,7],[0,7],[0,9],[-2,5],[-5,4],[-5,1],[-3,1],[-7,2],[-6,3],[-6,1],[-6,-2],[-3,-2],[-3,-3],[-4,-2],[-3,-1],[-5,5],[-6,6],[-5,8],[-5,7],[-5,5],[-6,2],[-6,2],[-5,2],[-16,12],[-13,19],[-12,23],[-13,21],[-3,4],[-3,5],[-3,5],[-3,4],[-5,3],[-4,3],[-4,3],[-4,6],[-6,13],[-5,13],[-7,12],[-8,9],[-8,1],[-9,-2],[-8,2],[-2,12],[-4,15],[-9,12],[-11,6],[-9,0],[-4,-1],[-4,-1],[-1,-3],[0,-7],[2,-6],[5,-7],[5,-7],[4,-5],[6,-7],[8,-10],[8,-12],[3,-10],[-1,-5],[-4,-2],[-4,-1],[-4,-3],[-2,-6],[-1,-6],[-1,-8],[-1,-7],[-1,-7],[-1,-4],[0,-5],[1,-7],[1,-4],[2,-4],[3,-5],[1,-4],[2,-6],[2,-4],[2,-5],[3,-5],[3,-4],[4,-6],[3,-6],[1,-7],[-4,-5],[-8,-3],[-7,-6],[0,-11],[10,-20],[15,-29],[9,-26],[-10,-13],[-5,1],[-6,1],[-6,0],[-5,-5],[0,-5],[3,-5],[3,-5],[0,-5],[-10,-3],[-14,7],[-13,10],[-10,8],[-10,5],[-9,6],[-8,9],[-8,12],[-2,8],[-2,10],[-2,9],[-2,6],[-6,5],[-6,3],[-5,2],[-6,4],[-9,10],[-8,10],[-8,10],[-9,8],[-5,2],[-7,3],[-7,4],[-3,5],[0,7],[2,4],[3,3],[3,3],[2,5],[1,4],[-2,2],[-4,3],[-6,4],[-6,3],[-6,3],[-7,0],[-8,-4],[-7,-10],[-3,-7],[0,-9],[6,-21],[13,-27],[17,-30],[14,-33],[26,-30],[24,-27],[0,-29],[-1,-2],[-6,-10],[-4,-7],[-8,-17],[-10,-2],[-1,0],[-12,-13],[-7,-10],[2,-13],[6,-17],[-10,-18],[-14,11],[-6,5],[-16,23],[-8,9],[-20,14],[-3,-7],[-2,-5],[6,-19],[-4,-29],[-10,-2],[-16,-7],[-8,7],[-10,-13],[-9,-6],[-14,-13],[0,-25],[1,-21],[16,-21],[4,-23],[10,-19],[0,-23],[-10,-11],[-8,-8],[-11,0],[-8,-15],[-5,-16],[-3,-19],[-2,-17],[8,-15],[9,-14],[10,-5],[11,-16],[16,-11],[3,-21],[2,-15],[4,-2],[6,-4],[10,-6],[1,-3],[2,-10],[-9,-6],[-9,-4],[-5,-7],[6,-10],[13,-4],[4,-15],[17,-12],[1,-1],[10,-8],[4,-33],[15,-26],[5,-11],[1,-1],[38,-13],[15,-7],[5,-3],[23,-5],[15,-21],[16,-23],[8,-12],[-12,-9],[-8,-5],[-7,-3],[-6,-17],[4,-16],[9,-17],[-1,-26],[0,-4],[-1,-29],[0,-2],[-2,-2],[-4,-7],[2,-14],[0,-21],[-3,-13],[-15,-4],[-3,10],[2,17],[-11,0],[-8,0],[-13,17],[-12,0],[-8,8],[-16,-6],[-8,-14],[-9,-1],[-7,-14],[4,-49],[8,-21],[2,-20],[-4,-15],[13,-27],[11,-3],[16,-20],[11,-3],[8,21],[10,7],[9,2],[1,0],[3,-36],[3,-19],[14,-9],[1,-1],[11,-11],[11,-23],[7,-11],[5,-8],[3,15],[1,21],[0,2],[7,-4],[3,-17],[6,-8],[7,0],[2,14],[1,2],[-3,32],[5,6],[12,-2],[14,13],[3,17],[0,35],[6,27],[8,0],[13,1],[10,9],[1,1],[13,21],[2,19],[0,1],[8,3],[17,-19],[14,-36],[6,-20],[1,-1],[0,-19],[0,-10],[-6,-2],[-5,5],[0,1],[-6,4],[-11,5],[-3,-15],[7,-25],[12,-34],[11,-56],[1,-15],[-6,0],[-17,33],[-9,-12],[-1,-32],[4,-13],[3,-6],[3,-8],[-1,-21],[-2,-19],[5,-16],[4,-32],[0,-13],[-10,5],[-14,4],[-11,-21],[-1,-2],[0,-2],[4,-13],[1,-13],[2,-10],[2,-8],[4,-13],[7,-6],[7,-25],[1,-7],[2,-10],[6,-6],[14,0],[10,14],[-4,36],[-4,17],[-2,19],[4,12],[8,-6],[2,-4],[10,-20],[0,-1],[5,-17],[9,-4],[11,-7],[13,-18],[-2,-26],[-1,-17],[17,-6],[10,-12],[5,6],[6,6],[3,7],[10,-7],[9,9],[13,6],[8,-4],[11,-5],[7,-2],[9,8],[1,1],[11,2],[0,-8],[-2,-17],[-5,-21],[5,-21],[8,15],[6,10],[17,0],[7,13],[7,23],[5,-17],[7,-23],[6,-11],[6,-12],[6,-4],[5,4],[4,-19],[-3,-17],[-6,-11],[9,-27],[6,-17],[6,19],[11,7],[7,-11],[9,-12],[10,-2],[2,-17],[-2,-9],[14,-10],[15,-4],[13,6],[12,-13],[9,-8],[10,4],[1,17],[17,8],[24,-6],[17,-17],[6,-6],[9,-17],[11,-22],[4,-8],[6,-14],[11,-9],[3,-3],[0,1],[8,5],[6,4],[11,17],[9,8],[17,8],[6,15],[1,2],[1,1],[10,22],[-2,14],[-1,10],[-12,20],[-1,28],[0,2],[-7,52],[7,25],[9,-12],[2,-3],[6,-10],[12,7],[-5,18],[-6,15],[4,25],[2,17],[11,8],[11,-8],[5,9],[0,1],[-7,17],[-9,32],[-2,25],[3,21],[12,10],[7,19],[3,17],[0,23],[-2,20],[-1,14],[-6,23],[-6,12],[-2,11],[8,13],[1,23],[-2,21],[11,12],[5,13],[13,4],[16,4],[58,21],[21,4],[14,19],[4,13],[12,14],[3,-23],[-1,-19],[3,-6],[-1,-3],[6,-1],[6,-4],[5,-6],[5,-5],[6,-4],[5,-3],[6,-3],[5,-4],[8,-10],[7,-14],[1,-12],[-9,-7],[-6,0],[-6,2],[-7,2],[-6,0],[-7,-1],[-8,-1],[-8,-1],[-7,-2],[-14,-2],[-15,-3],[-14,-2],[-13,-2],[-1,0],[-5,-2],[-3,-1],[-9,-4],[-9,-5],[-7,-6],[-5,-5],[-4,-3],[-8,-9],[-5,-8],[-6,-9],[-2,-4],[-3,-7],[-3,-5],[-1,-2],[-4,-12],[2,-11],[5,-6],[2,-3],[1,-5],[2,-6],[3,-11],[6,-13],[2,-3],[8,-8],[17,-9],[6,-2],[1,0],[1,1],[7,0],[14,0],[9,-1],[7,-7],[-1,-5],[-3,-2],[-4,-1],[-2,-3],[0,-6],[3,-6],[4,-6],[6,-10],[6,-13],[6,-22],[4,-25],[2,-26],[2,-8],[4,-9],[3,-9],[-1,-7],[-8,-1],[-12,6],[-12,9],[-8,5],[-9,-2],[3,-14],[10,-16],[10,-8],[9,0],[9,0],[9,0],[9,0],[59,0],[27,0],[27,0],[56,0],[20,0],[37,0],[56,0],[57,0],[56,0],[15,0],[2,-5],[3,-26],[3,-9],[6,-7],[12,-10],[4,-6],[1,-8],[1,-25],[2,-12],[2,-12],[3,-9],[7,-5],[17,-7],[3,-9],[1,-13],[3,-11],[13,-35],[1,-11],[-2,-10],[-2,-9],[0,-9],[17,-42],[1,-1],[1,-2],[-2,-44],[1,-13],[5,-12],[6,-3],[6,1],[6,-3],[7,-8],[1,-8],[-2,-10],[-4,-14],[-4,-10],[-1,-5],[2,-6],[22,-33],[5,-3],[4,-4],[6,-22],[2,-8],[9,-11],[1,-5],[0,-13],[-2,-6],[-14,-24],[-4,-8],[-3,-9],[0,-3],[0,-6],[0,-2],[-1,-2],[-2,-1],[-3,-4],[-3,-1],[-2,-3],[0,-7],[-1,-7],[0,-4],[-2,-2],[-4,0],[-6,4],[-4,1],[-2,-5],[7,-19],[-2,-11],[2,-8],[4,-7],[2,-13],[5,-11],[8,-15],[1,-5],[-2,-2],[-6,-11],[-4,-26],[-7,-112],[1,-19],[10,-38],[0,-7],[0,-4],[1,-4],[2,-4],[3,-2],[7,1],[4,-3],[-7,-7],[-5,-10],[0,-9],[15,-9],[4,-10],[-1,-13],[-5,-12],[43,-234],[43,-234],[33,-249],[33,-250],[33,-249],[-47,-192],[-46,-191],[-47,-191],[-119,-13],[-120,-12],[-53,220],[-53,220],[-53,219],[-54,220],[-110,-27],[-111,-27],[-117,-27],[-6,-9],[-88,-37],[-37,-81],[-39,-20],[-22,-28],[-87,-66],[-51,-5],[-50,41],[-30,15],[-88,19],[-88,20],[-131,-50],[-28,-19],[-1,-35],[-28,17],[-39,-26],[-37,7],[-9,-30],[-69,52],[-2,35],[-70,1],[-70,1],[-2,-42],[-70,-1],[-2,-203],[-54,-75],[-133,-72],[-3,-1],[2,-13],[5,-11],[37,-33],[5,0],[35,26],[12,5],[14,-1],[7,1],[5,5],[5,8],[6,7],[13,10],[6,3],[7,1],[7,-1],[9,-8],[3,1],[4,3],[7,2],[0,3],[0,5],[1,6],[9,18],[14,5],[14,-4],[14,-11],[4,-5],[7,-14],[4,-3],[8,-5],[4,-4],[17,-22],[13,-13],[8,-14],[3,-6],[1,-8],[2,-4],[12,-15],[8,-17],[4,-5],[12,-9],[1,-4],[1,-22],[1,-75],[0,-74],[1,-75],[1,-75],[1,-74],[0,-75],[1,-75],[1,-74],[0,-6],[2,-4],[2,-4],[3,-4],[0,-5],[-3,-9],[-5,-7],[-3,-8],[1,-10],[5,-10],[1,-7],[-2,-7],[-4,-9],[-3,-9],[-2,-9],[1,-30],[2,-7],[4,-5],[7,-6],[4,-1],[2,3],[1,4],[2,1],[3,-4],[2,-6],[2,-6],[4,-6],[8,-9],[15,-9],[15,-6],[13,0],[8,2],[8,-1],[5,-8],[2,-16],[-1,-19],[-4,-7],[-7,-7],[-7,-9],[3,-21],[14,-38],[-1,-20],[-7,-18],[-3,-9],[-1,-11],[1,-9],[12,-16],[10,-24],[10,-16],[10,-6],[10,9],[1,5],[0,4],[1,5],[2,4],[4,1],[3,-1],[7,-6],[4,-3],[2,-1],[2,-1],[2,-1],[8,-5],[6,-9],[6,-15],[1,-3],[7,-21],[7,-25],[6,-18],[3,-13],[3,-10],[4,-8],[9,-14],[-4,-24],[1,-10],[4,-10],[9,-5],[1,-1],[11,-14],[3,-3],[-8,-17],[-6,-11],[-3,-7],[-1,-6],[-2,-14],[-3,-30],[-6,-10],[-8,-11],[-3,-10],[-8,-23],[1,-26],[-5,-14],[5,-26],[2,-8],[-1,-34],[-9,-22],[-10,-26],[-10,-22],[-11,-9],[-13,-9],[-13,-9],[0,-1],[-3,-16],[-30,-166],[-29,-167],[0,-263],[0,-263],[0,-263],[0,-264],[0,-263],[0,-263],[0,-263],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[-132,0],[-131,0],[-131,0],[-131,0],[-131,0],[-132,-1],[-131,0],[-131,0],[-131,0],[0,-148],[0,-149],[17,-122],[-2,-48],[-18,-38],[19,-50],[19,-12],[-2,-34],[-32,-77],[-29,-40],[18,8],[20,-44],[1,-74],[-33,-71],[-47,-12],[33,-68],[-7,-22],[60,-65],[-21,-66],[7,-38],[-7,-53],[0,-267],[0,-272],[0,-273],[0,-272],[0,-272],[0,-272],[-1,-273],[0,-272],[0,-272],[0,-273],[0,-272],[16,8],[28,-1],[52,-17],[81,-72],[16,-29],[14,-44],[18,-68]],[[30288,56808],[9,-34],[9,-59],[-2,-41],[-10,-40],[-39,-75],[-6,-12],[-62,36],[-1,1],[-1,-1],[-7,0],[-5,-5],[-5,-9],[-4,-7],[-11,-10],[-8,-3],[-16,-9],[-16,-8],[-17,-8],[-16,-9],[-16,-8],[-17,-8],[-16,-9],[-16,-8],[-7,-4],[-3,-3],[-1,-1],[-2,-3],[-4,-13],[-3,-11],[-9,-30],[-8,-31],[-8,-30],[-8,-30],[-9,-31],[-8,-30],[-8,-31],[-9,-30],[-2,-7],[-5,-3],[-11,5],[-5,2],[-6,-3],[-15,-11],[-5,0],[-1,-1]],[[29878,56186],[0,1],[0,-1]],[[29878,56186],[-6,0],[-6,-2],[-5,-6],[-1,-5],[0,-10],[0,-1],[-1,-5],[-2,-6],[-6,-11],[-2,-7],[-9,-46],[-1,-1],[-4,-13],[-6,-10],[-7,-10],[-5,-6],[-7,-17],[-6,-24],[-14,-76],[-7,-24],[-17,-40],[-4,-20],[-2,-9],[-3,-10],[-5,-9],[-4,-12],[-2,-10],[-1,-11],[0,-11],[-1,-26],[-4,-96],[-7,-43],[-8,-54],[0,-22],[-2,-22],[0,-11],[2,-14],[2,-11],[1,-10],[-2,-14],[-9,-36],[-15,-47],[-7,-37],[-3,-10],[-1,-4],[-3,-6],[-12,-14],[-2,-4],[-2,-3],[-4,-21],[-1,-4],[-1,-2],[-21,-63],[-10,-47],[-3,-11],[-5,-10],[-10,-14],[-4,-10],[0,-13],[4,-4],[34,2],[7,1],[4,1],[1,1],[10,10],[6,12],[4,5],[4,7],[4,1],[4,3],[6,7],[6,11],[6,11],[3,0],[3,1],[2,-5],[3,-20],[0,-2],[-1,-5],[0,-2],[1,-3],[3,-5],[0,-2],[2,-14],[-1,-23],[1,-12],[5,-14],[6,-2],[5,4],[5,6],[5,6],[2,3],[3,2],[4,-1],[1,0],[1,-1],[2,0],[2,4],[5,-10],[5,-5],[2,-7],[-4,-12],[4,-11],[2,-11],[1,-7],[2,-17],[3,-24],[3,-25],[3,-24],[4,-24],[3,-24],[3,-25],[3,-24],[3,-22],[6,-19],[5,-11],[5,-12],[6,-11],[5,-12],[6,-12],[5,-11],[6,-12],[5,-12],[5,-12],[7,-14],[3,-5],[3,-2],[3,-2],[2,-3],[4,-6],[2,-9],[2,-9],[1,-7],[0,-2],[0,-4],[0,-5],[-3,-19],[0,-9],[1,-12],[9,-34],[6,-38],[1,-22],[-3,-9],[-2,-3],[-4,0],[-3,1],[-3,1],[-5,-2],[-3,-10],[-1,-11],[-3,-8],[-3,-8],[-4,-7],[-3,-3],[-3,-2],[-3,-3],[-1,-7],[2,-5],[5,-11],[0,-2],[2,-6],[1,-10],[1,-9],[0,-15],[0,-10],[-6,-34],[-3,-58],[1,-11],[4,-22],[1,-7],[0,-4],[-1,-9],[0,-3],[-2,-11],[-2,-11],[1,-14],[7,-24],[11,-15],[3,-2],[4,-3],[5,-3],[13,-5],[18,1],[5,0],[4,-2],[5,-3],[10,-25],[2,-2],[0,-3],[-2,-23],[-1,-4],[1,-17],[2,-16],[3,-16],[15,-58],[5,-12],[3,-4],[8,-7],[4,-4],[6,-11],[3,-4],[32,-14],[9,-2],[4,2],[1,1],[2,2],[3,5],[3,4],[3,1],[3,-1],[2,2],[-1,9],[3,0],[5,1],[7,2],[7,1],[8,-4],[-2,9],[2,2],[0,2],[4,1],[2,0],[7,-1],[2,-3],[2,-4],[3,-5],[2,0],[2,1],[4,4],[2,1],[2,-2],[0,-3],[1,-1],[0,-1],[6,-1],[0,1],[0,1],[3,2],[2,1],[6,-4],[2,-3],[4,-6],[3,2],[7,7],[5,2],[4,-1],[5,-3],[4,-2],[4,-1],[12,5],[4,-1],[1,-2],[2,-2],[0,-3],[0,-4],[1,-7],[1,-5],[4,-3],[7,-1],[6,0],[4,-3],[2,-4],[2,-1],[5,3],[4,5],[2,5],[3,3],[19,-4],[6,1],[8,2],[1,0],[14,11],[12,16],[3,8],[1,5],[3,3],[5,1],[11,7],[12,2],[17,8],[8,0],[2,-2],[4,-7],[2,-2],[10,-4],[4,1],[1,0],[7,4],[5,2],[0,-1],[2,-3],[14,-35],[2,-3],[5,-3],[3,0],[6,2],[3,0],[1,-2],[2,-5],[1,-2],[4,-2],[11,-11],[18,-17],[8,-1],[4,5],[12,13],[10,5],[10,1],[8,-4],[9,-16],[5,-12],[21,-53],[21,-53],[21,-53],[22,-53],[21,-53],[21,-53],[21,-53],[21,-53],[8,-20],[3,0],[7,4],[14,12],[7,3],[2,-2],[4,-4],[5,-13],[6,-14],[7,-9],[16,17],[9,19],[7,13],[6,7],[8,15],[5,5],[7,0],[6,-2],[6,-6],[4,-4],[2,2],[3,1],[6,-3],[7,-4],[6,-3],[18,2],[5,-2],[18,-11],[6,-1],[6,-2],[12,-11],[6,-2],[4,4],[7,12],[3,3],[18,2],[20,12],[6,1],[6,-1],[18,-10],[10,0],[32,23],[10,3],[1,0],[1,0],[36,-7],[11,4],[10,6],[2,1],[3,2],[2,4],[2,6],[0,3],[0,3],[1,7],[4,1],[3,0],[2,1],[1,0],[3,5],[1,1],[5,10],[3,3],[2,0],[5,-3],[20,-3],[43,-20],[0,-1],[8,-9],[8,-15],[7,-11],[8,-2],[4,0],[-2,-3],[-6,-8],[-3,-7],[-1,-7],[0,-18],[0,-2],[0,-2],[10,-32],[1,0],[7,-10],[2,-11],[0,-9],[0,-4],[0,-6],[-1,-3],[-3,-6],[-2,-1],[-8,-7],[-4,-5],[-13,-29],[-3,-9],[-16,-31],[-7,-20],[-4,-22],[-3,-24],[0,-8],[0,-12],[0,-5],[3,-33],[1,-11],[1,-2],[4,-8],[1,-3],[0,-3],[-1,-4],[-1,-4],[-2,-4],[-2,-4],[-3,-20],[-2,-3],[-3,-2],[-3,-4],[-3,-6],[-2,-5],[-2,-4],[-7,-4],[-2,-2],[-1,-2],[0,-1],[-3,-6],[-1,-2],[-2,-1],[-1,1],[-2,0],[-1,0],[-7,-12],[-2,-3],[-1,-2],[-7,-22],[-1,-9],[-2,-15],[2,-13],[1,-8],[2,-9],[2,-8],[1,-10],[0,-5],[1,-8],[-1,-5],[-1,-6],[-1,-7],[-1,-7],[0,-6],[0,-4],[0,-2],[1,-5],[1,-6],[1,-5],[1,-1],[4,-11],[1,-4],[0,-2],[0,-3],[-2,-4],[-1,-3],[0,-3],[0,-25],[0,-10],[-4,-22],[-2,-21],[0,-13],[0,-4],[1,-3],[2,-7],[1,-3],[0,-7],[-1,-4],[-1,-3],[2,-5],[-2,-11],[-1,-24],[-2,-9],[-3,-9],[-1,-12],[-1,-31],[-2,-15],[0,-17],[0,-6],[-1,-4],[-2,-3],[-2,-4],[0,-7],[0,-3],[0,-4],[2,-5],[3,-4],[1,-2],[1,-2],[0,4],[5,-7],[2,-8],[2,-11],[1,-8],[1,-2],[3,-2],[0,-1],[1,-3],[0,-5],[-1,-7],[-1,-5],[1,-7],[1,-1],[3,-11],[1,-7],[-1,-7],[-5,-18],[0,-3],[-1,-18],[0,-5],[2,-14],[2,-17],[0,-3],[1,-14],[3,-11],[5,-8],[1,-2],[4,-9],[2,-14],[0,-4],[2,-3],[1,-4],[2,-9],[0,-1],[-1,-9],[2,-2],[3,-14],[1,-34],[1,-12],[11,-38],[3,-14],[1,-28],[2,-13],[5,-11],[5,-6],[5,0],[6,2],[5,1],[11,-10],[8,-21],[18,-98],[4,-10],[4,-6],[11,-8],[9,-19],[-1,-24],[-8,-23],[-16,-42],[-4,-5],[-3,-2],[-6,-2],[-3,-3],[-5,-10],[-12,-22],[-12,-22],[-12,-22],[-12,-22],[-12,-22],[-12,-22],[-11,-22],[-12,-22],[-7,-13],[-5,-16],[0,-38],[0,1],[4,6],[2,8],[3,6],[5,3],[7,0],[3,0],[5,5],[2,-2],[1,-1],[2,-5],[12,-11],[7,-3],[5,3],[0,1],[6,2],[5,-8],[4,-12],[2,-10],[1,-17],[0,-8],[2,-12],[2,-4],[1,-1],[0,-1],[4,0],[8,0],[4,-2],[1,-1],[1,0],[4,-8],[1,-4],[0,-2],[2,-9],[1,-4],[2,-4],[4,-4],[2,-2],[1,-3],[1,-3],[0,-2],[5,-11],[1,-2],[1,0],[2,-2],[2,-5],[2,-6],[1,-5],[1,-1],[2,-4],[6,-6],[3,-5],[1,-5],[2,-8],[1,-7],[3,-3],[3,-1],[3,-5],[3,-7],[2,-3],[3,-3],[2,-2],[7,-5],[10,-11],[2,-4],[1,-6],[0,-5],[0,-5],[2,-5],[1,-10],[0,-1],[0,-3],[-3,-9],[-6,-10],[-3,-7],[0,-11],[3,-11],[2,-10],[1,-10],[1,-7],[4,-24],[3,-7],[0,-1],[4,-4],[5,-3],[4,-4],[2,-9],[0,-3],[0,-11],[1,-16],[-1,-10],[-1,-4],[-3,-6],[-2,-6],[1,-6],[0,-1],[2,-5],[2,-5],[2,-7],[5,-7],[1,-4],[1,-6],[5,-19],[20,-108],[1,-5],[3,-14],[1,-12],[0,-1],[0,-24],[1,-11],[2,-12],[4,-12],[2,-7],[3,-12],[1,-13],[-1,-8],[-1,-14],[1,-8],[3,-6],[1,-2],[2,-3],[3,-6],[3,-11],[2,-14],[0,-13],[-2,-11],[-3,-9],[2,-14],[4,-18],[4,-11]],[[31426,50673],[-10,3],[-3,-2],[-18,-10],[-25,-13],[-5,2],[-3,14],[-1,29],[7,160],[-2,35],[-10,58],[-11,44],[-30,80],[-7,24],[-8,43],[-6,21],[-7,13],[-4,5],[-12,8],[-5,1],[-2,-3],[-5,-10],[-2,-2],[-10,-3],[-5,-6],[-7,-13],[-11,-10],[-21,-45],[-34,-90],[-8,-15],[-11,-13],[-10,-6],[-9,-5],[-10,-1],[-10,6],[-9,15],[-7,22],[-6,24],[-6,35],[-3,11],[-4,7],[-7,5],[-5,3],[-2,2],[-3,4],[0,4],[0,11],[-2,4],[-2,-4],[-17,-83],[-5,-16],[2,-2],[7,-2],[2,-7],[0,-12],[0,-10],[11,-1],[2,-3],[1,-5],[0,-6],[0,-4],[3,-4],[4,-4],[-20,0],[-14,0],[-35,0],[-49,0],[-57,-1],[-57,0],[-49,0],[-36,0],[-13,0],[-11,3],[-21,18],[-20,8],[-11,-1],[-19,-17],[-12,-2],[-6,1],[-4,1],[-5,-3],[-12,-12],[-5,-3],[-14,0],[2,-21],[0,-39],[0,-38],[0,-38],[0,-38],[0,-38],[0,-38],[0,-39],[-1,-38],[0,-33],[7,-1],[11,15],[7,4],[4,-1],[3,-1],[3,-3],[0,-12],[3,-1],[27,7],[6,0],[12,-8],[3,-1],[9,0],[9,3],[3,-1],[2,-2],[2,-3],[0,-2],[2,-3],[5,-6],[3,-1],[13,19],[4,2],[5,-1],[14,-15],[4,-5],[5,-12],[4,-6],[2,-4],[1,-6],[0,-6],[1,-6],[6,-7],[-1,-20],[4,-9],[7,-5],[3,-4],[2,-4],[0,-8],[-2,-2],[-3,-1],[-2,-2],[0,-12],[2,-25],[0,-12],[-1,-6],[-3,-5],[-2,-5],[0,-7],[3,-4],[6,-6],[2,-4],[3,-12],[1,-10],[-2,-7],[-5,-4],[-3,1],[-5,4],[-3,0],[-2,-3],[-3,-8],[-2,-3],[-4,-1],[-10,4],[-5,-1],[1,15],[-3,6],[-5,0],[-6,-3],[-6,-5],[-1,1],[-20,40],[-5,7],[-6,3],[-7,-2],[-5,-5],[-9,-12],[-5,-1],[-6,-5],[-3,-12],[-4,-9],[-9,4],[-8,7],[-4,-1],[-11,-17],[-9,-10],[-11,-7],[-11,-5],[-19,-2],[-5,-3],[-6,-2],[-6,2],[-7,0],[-5,-5],[-6,-3],[-4,7],[0,-38],[-1,-15],[0,-37],[-1,-53],[-1,-60],[0,-61],[-1,-52],[-1,-38],[0,-14],[0,-28],[1,-19],[4,-12],[10,-25],[15,-26],[6,-18],[3,-5],[5,-4],[11,-5],[5,-6],[1,-5],[3,-13],[2,-5],[3,-4],[6,-6],[3,-4],[9,-18],[4,-7],[22,-17],[5,-5],[4,-8],[4,-10],[2,-11],[1,-12],[1,-17],[0,-5],[2,-6],[1,-4],[2,-5],[1,-7],[-2,-13],[-9,-26],[-1,-10],[2,-13],[11,-24],[2,-7],[-1,-10],[0,-5],[1,-5],[2,-8],[7,-32],[2,-7],[2,-4],[6,-5],[3,-4],[6,-17],[2,-3],[3,-1],[1,-1],[1,-3],[1,-4],[-1,-1],[2,-21],[-1,-6],[-1,-12],[0,-6],[10,-34],[3,-17],[-6,-31],[1,-25],[-5,-51],[1,-26],[-6,-38],[1,-11],[-5,-28],[-3,-34],[-8,-89],[-8,-90],[-8,-89],[-8,-90],[-8,-90],[-9,-89],[-8,-90],[-8,-89],[-8,-90],[-8,-89],[-8,-90],[-8,-89],[-9,-90],[-8,-89],[-8,-90],[-8,-89],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[1,-16],[-3,-14],[-5,-13],[-9,-14],[-4,-1],[-4,2],[-3,5],[-4,7],[-1,4],[-2,14],[-3,10],[-5,4],[-6,-1],[-5,-6],[-4,-10],[-5,-21],[-5,-9],[-3,8],[-2,8],[-2,6],[-2,1],[-3,-1],[-2,2],[-14,22],[-3,7],[0,10],[2,21],[0,11],[-2,8],[-4,8],[-3,2],[-5,-16],[-4,2],[-6,12],[-5,4],[-4,1],[-4,-2],[-5,-4],[-11,-18],[-4,-3],[-3,4],[-1,8],[-1,8],[-4,3],[-5,-4],[-2,-10],[-1,-10],[-2,-6],[-13,16],[-1,8],[1,10],[0,8],[-4,2],[-5,-4],[-2,-6],[-3,-17],[-4,-4],[-5,0],[-17,9],[-3,-1],[-13,-12],[-3,-7],[-1,-7],[2,-14],[-1,-5],[-4,-3],[-4,-4],[-2,-8],[-2,-10],[-3,-9],[-8,-16],[-4,-9],[-2,-11],[-6,-12],[-6,11],[-4,10],[-1,-12],[-6,-9],[-14,12],[-7,-5],[-4,-13],[-2,-3],[-5,1],[-2,5],[-3,12],[-2,4],[-4,-5],[-4,-14],[-4,-8],[-8,17],[-6,3],[-7,-3],[-4,-8],[-1,-7],[1,-5],[0,-6],[-3,-7],[-1,0],[-2,2],[-1,1],[-2,-2],[-3,-7],[-1,-2],[-3,-3],[-3,4],[-1,5],[-3,5],[-4,1],[-13,-4],[-8,0],[-4,-2],[-4,-3],[-2,-5],[-2,-12],[-1,-3],[-2,0],[-7,3],[-4,-1],[-13,-11],[1,12],[-3,-2],[-5,-11],[-4,-2],[-2,-1],[-2,2],[-3,6],[-5,7],[-3,-2],[-3,-4],[-5,-2],[-3,2],[-7,6],[-3,0],[-2,-2],[-1,-4],[0,-3],[-1,-3],[-2,-1],[-23,-5],[-4,-3],[-8,-10],[-13,-25],[-8,-5],[-5,-8],[-2,-4],[-2,-1],[-3,2],[-3,3],[-2,0],[-2,-4],[-5,-21],[-3,-8],[-6,-9],[-15,-17],[-14,-20],[-5,-6],[-5,-4],[-4,0],[-10,3],[-3,-2],[-2,-3],[-1,-5],[-1,-2],[-12,-7],[-3,-6],[-2,-31],[-2,-9],[-5,-6],[-6,-6],[-1,-1],[-4,0],[-2,-1],[0,-3],[-1,-4],[0,-3],[0,-2],[-1,-5],[-1,-5],[-2,-3],[-4,0],[-5,-2],[-5,-4],[-4,-7],[-7,-14],[-8,-8],[-4,-7],[-1,-6],[0,-5],[-1,-5],[-2,-5],[-3,-1],[-15,0],[-6,3],[-5,1],[-3,-5],[-4,-9],[-5,-5],[-11,-4],[-2,0],[-3,3],[-1,-1],[-1,-2],[-1,-9],[0,-2],[-4,-4],[-2,-1],[-4,0],[-6,-4],[-1,-8],[2,-10],[2,-8],[2,-8],[1,-34],[0,-9],[-3,-8],[-3,-7],[-2,-8],[-2,-24],[-1,-9],[-8,-34],[-3,-18],[2,-19],[2,-17],[0,-16],[-5,-51],[-2,-17],[-4,-15],[-29,-77],[-10,-17],[-16,-71],[-6,-19],[-4,-21],[0,-25],[2,-14],[14,-30],[1,-10],[3,-44],[2,-13],[6,-25],[2,-13],[0,-12],[-2,-13],[-4,-22],[-7,-23],[-7,-16],[-10,-10],[-12,-7],[-20,0],[-6,-4],[-10,-18],[-11,-13],[-19,-32],[-22,-26],[-14,-22],[-8,-10],[-3,-6],[-4,-14],[-2,-7],[-12,-14],[-3,-7],[-2,-9],[0,-31],[-7,-50],[-4,-16],[-2,-14],[3,-13],[19,-54],[3,-24],[2,-10],[1,-11],[-3,-11],[-5,-5],[-5,-2],[-11,1],[-7,-1],[-5,-3],[-10,-12],[-7,-5],[-5,1],[-11,9],[-6,0],[1,-10],[8,-27],[2,-15],[-2,-9],[-2,-8],[0,-12],[-4,-12],[-13,-11],[2,-10],[12,-13],[36,-76],[8,-10],[8,-8],[11,-6],[8,-13],[3,-22],[-3,-22],[-9,-11],[-10,7],[-4,0],[0,-10],[3,-27],[2,-7],[8,-13],[12,-9],[10,-12],[5,-17],[2,-13],[9,-24],[3,-14],[0,-10],[-1,-21],[0,-10],[4,-13],[8,-21],[2,-15],[2,-23],[2,-10],[4,-8],[22,-24],[3,-5],[4,-12],[3,-5],[3,-2],[6,-2],[2,-1],[4,-8],[2,-11],[0,-11],[-2,-25],[0,-10],[2,-9],[11,-31],[5,-9],[6,-7],[16,-6],[6,-6],[4,-9],[4,-11],[4,-23],[22,-62],[4,-7],[10,-14],[4,-7],[8,-23],[1,-10],[3,-46],[-1,-17],[-2,-10],[-3,-7],[-13,-20],[0,-15],[-2,-7],[-3,-4],[-5,-3],[-4,-1],[-3,-4],[-3,-9],[-5,-18],[-6,-17],[-15,-29],[-6,-19],[112,-1],[34,-13],[1,-1],[2,-5],[2,-1],[1,1],[2,3],[2,1],[5,-3],[11,-7],[12,-11],[5,-3],[12,-3],[17,3],[6,-3],[5,-5],[8,-14],[5,-6],[3,-1],[3,1],[3,0],[2,-5],[0,-5],[-1,-17],[1,-11],[3,-10],[7,-17],[2,-10],[-1,-11],[-3,-21],[3,-21],[20,-24],[5,-22],[1,-6],[2,-12],[1,-6],[0,-6],[-5,-11],[-1,-6],[-1,-11],[1,-10],[-1,-9],[-3,-12],[15,0],[50,0],[49,0],[50,-1],[49,0],[11,0],[5,3],[2,4],[2,4],[1,3],[4,1],[3,-2],[2,-3],[2,-3],[4,1],[6,5],[9,15],[14,9],[4,11],[2,13],[4,12],[4,7],[19,16],[17,9],[5,8],[2,7],[4,14],[2,6],[3,5],[8,9],[3,5],[8,24],[4,10],[14,15],[6,8],[10,21],[6,9],[18,20],[5,11],[10,23],[6,10],[5,5],[6,3],[11,2],[1,-7],[-1,-2],[-3,-9],[0,-10],[-2,-7],[-5,-4],[1,-2],[1,-4],[0,-2],[-3,-2],[-3,-5],[0,-7],[3,-14],[-2,-1],[-4,1],[-1,1],[-8,0],[-1,-1],[3,-10],[2,-18],[1,-10],[3,-9],[9,-13],[3,-7],[2,-12],[-1,-10],[-2,-10],[-3,-9],[-1,-4],[-1,-6],[-1,-4],[-2,0],[-3,4],[-1,0],[-3,-4],[-3,-4],[-2,-4],[-1,-6],[-3,-23],[0,-33],[0,-71],[0,-70],[0,-71],[0,-71],[-1,-70],[0,-71],[0,-71],[0,-71],[0,-45],[24,38],[6,3],[7,-13],[13,-29],[7,-13],[13,-12],[14,-5],[14,1],[14,6],[11,8],[67,67],[12,-1],[5,-3],[6,-1],[11,2],[8,-1],[4,-4],[11,-13],[9,-4],[34,7],[6,0],[1,-3],[1,-4],[1,-3],[1,-4],[1,-3],[1,-4],[1,-3],[1,-3],[29,-101],[29,-101],[29,-100],[29,-101],[28,-100],[29,-101],[29,-101],[29,-100],[7,-24],[2,-5],[-3,-3],[-2,-5],[-1,-11],[-3,-8],[-3,-9],[-4,-7],[-8,-8],[-4,-7],[-3,-8],[0,-9],[3,-5],[9,-5],[2,-6],[-6,-25],[-2,-5],[-23,-12],[-6,-8],[-4,-11],[-3,-16],[-7,2],[-3,-10],[-3,-14],[-9,-13],[-1,-13],[0,-24],[4,-62],[-2,-66],[0,-22],[4,-44],[-3,-109],[1,-12],[-2,-14],[-2,-13],[-2,-7],[-6,-13],[-2,-6],[-1,-8],[0,-7],[0,-6],[-2,-6],[-3,-2],[-9,3],[-3,0],[-4,-13],[6,-16],[15,-24],[3,-8],[0,-6],[-2,-7],[-1,-9],[1,-7],[3,-22],[5,-14],[1,-19],[0,-20],[2,-18],[3,-10],[15,-19],[3,-8],[2,-9],[2,-19],[6,-37],[2,-19],[-6,-12],[-18,-4],[-10,-5],[-7,-10],[-1,-9],[-1,-11],[1,-22],[2,-10],[4,-11],[1,-11],[-6,-10],[-18,-19],[-5,-8],[-11,-25],[-2,-2],[-5,-2],[-2,-3],[0,-9],[0,-26],[-1,-6],[-6,0],[-7,3],[-5,-1],[-4,-11],[-1,-71],[-4,-16],[-5,-5],[-15,-9],[-6,-7],[-3,-7],[0,-10],[1,-45],[-1,-5],[-4,-21],[-1,-10],[1,-10],[6,-10],[5,-9],[16,-47],[4,-9],[17,-24],[4,-9],[7,-19],[7,-12],[-1,-11],[-4,-6],[-7,0],[-5,0],[-4,-22],[-9,-6],[-5,-9],[-5,-12],[-1,-9],[3,-16],[0,-5],[-2,-2],[-8,-5],[-3,-3],[-3,-10],[-2,-11],[0,-11],[-2,-11],[-18,-53],[-2,-17],[1,-16],[4,-17],[11,-57],[12,-57],[12,-58],[12,-57],[6,-30],[10,-24],[5,-8],[6,-7],[6,-5],[8,0],[3,3],[5,8],[3,2],[3,-1],[9,-5],[8,5],[6,-7],[12,-24],[14,-12],[6,-8],[3,-15],[-4,-13],[-19,-19],[-14,-11],[-9,-9],[-8,-18],[-2,-9],[-1,-12],[1,-32],[-1,-17],[1,-10],[8,-20],[-4,-8],[-4,-12],[-5,-6],[-16,-17],[-5,-2],[-10,-2],[-5,-5],[-2,-8],[-5,-30],[-4,-12],[-28,-58],[-8,-30],[-3,-8],[-12,-14],[-2,-3],[-1,-6],[1,-3],[2,-2],[2,-3],[-2,-9],[-6,-13],[-7,-6],[-8,-2],[-8,-6],[-8,-11],[-15,-27],[-2,-1],[-5,-1],[-1,-1],[-3,-12],[-4,-31],[-5,-14],[15,-4],[4,-3],[11,-17],[6,-11],[4,-10],[3,-16],[1,-20],[-1,-40],[-35,-67],[-13,-16],[-12,-4],[-13,3],[-12,-1],[-9,-18],[-2,-24],[3,-19],[5,-19],[2,-24],[1,-14],[1,-9],[6,-21],[3,-10],[0,-11],[0,-10],[-17,-73],[-6,-18],[-5,-10],[-11,-19],[-13,-30],[-5,-7],[-7,-5],[-8,0],[-6,-4],[-20,-22],[-7,-3],[-14,-3],[-30,5],[-14,-2],[-11,-11],[-11,-8],[-15,-12],[-34,-39],[15,-29],[-1,-165],[19,-177],[4,-124],[16,-89],[8,-107],[7,-28],[7,-133],[-17,-250],[-3,-165],[17,-215],[17,-125],[1,-52],[-20,-115],[-22,-256],[-11,-176],[-10,-176],[-9,-30],[-28,-39],[-13,-28],[-23,-86],[-8,-62],[-3,-145],[27,-140],[5,-29],[-8,-93],[1,-122],[-11,-92],[-9,-209],[1,-18],[-121,0],[-121,0],[-121,0],[-126,0],[-126,0],[-126,0],[-127,0],[-126,0],[-126,0],[-126,0],[-127,0],[-126,0],[-126,0],[-126,0],[-136,0],[-135,0],[-135,0],[-135,0],[-135,0],[-136,0],[-135,0],[-135,0],[-135,0],[0,-251],[0,-251],[0,-251],[0,-252],[0,-251],[0,-251],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[133,0],[134,0],[133,0],[134,0],[133,0],[134,0],[130,0],[130,0],[130,0],[130,0],[130,0],[130,0],[129,0],[130,0],[130,0],[130,0],[0,-41],[-6,-66],[2,-51],[13,-67],[41,-107],[7,-33],[0,-24],[-5,-14],[-9,-6],[-30,26],[-14,-2],[-71,-83],[-8,-28],[0,-36],[12,-59],[23,-43],[24,-23],[57,-30],[16,-21],[12,-73],[23,-82],[21,-112],[7,-65],[0,-68],[-10,-43],[-26,-59],[-14,-59],[-50,-57],[-25,-58],[-1,-73],[-26,-223],[-14,-89],[-31,-142],[-10,-83],[3,-83],[27,-113],[7,-105],[-4,-14],[-32,-45],[-10,-28],[-11,-61],[0,-105],[-30,-94],[0,-81],[-12,-89],[1,-22],[6,-76],[-6,-72],[-10,-64],[-21,-60],[-15,-66],[-11,-61],[0,-37],[-10,-10],[-36,-9],[-22,-5],[-23,-20],[-27,-66],[-9,-57],[3,-13],[-28,-216],[-28,-215],[-28,-216],[-39,-253],[-38,-253],[-39,-253],[-38,-253],[2,-265],[2,-265],[2,-265],[2,-265],[2,-84],[2,-91],[-5,-57],[14,-71],[-11,-112],[22,-45],[3,-21],[-13,-168],[1,-49],[15,-68],[35,-62],[6,-46],[-15,-142],[-15,-142],[1,-61],[9,-28],[52,-97],[18,-12],[52,-14],[9,-8],[4,-13],[-8,-32],[-35,-46],[-24,-62],[-1,-52],[-26,-75],[1,-73],[7,-29],[14,-32],[29,-35],[6,-67],[28,-118],[23,-71],[28,-53],[30,-32],[33,-21],[8,-60],[-13,-8],[-12,-16],[-8,-22],[-10,-108],[26,-42],[28,-72],[41,-42],[29,-44],[5,-19],[4,-60],[17,-46],[24,-29],[46,-29],[34,-88],[55,-50],[38,-63],[17,-50],[16,-116],[7,-21],[61,-39],[19,-7],[29,-2],[66,7],[26,-7],[10,-15],[15,-55],[20,-44],[11,-13],[72,-45],[21,-72],[29,-51],[26,-30],[23,-15],[24,-7],[19,-1],[30,9],[9,-2],[44,-75],[17,-18],[73,-27],[51,-37],[85,-49],[72,-53],[13,-4],[27,4],[12,-3],[33,-34],[78,-58],[25,-11],[41,-9],[59,-36],[24,-8],[79,-9],[44,7],[51,-6],[55,17],[37,-50],[79,-79],[29,-40],[35,-35],[97,-29],[24,1],[16,5],[0,-21],[0,-89],[0,-9],[0,-250],[0,-250],[0,-251],[0,-250],[0,-250],[0,-250],[0,-251],[0,-250],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-222],[0,-222],[0,-222]],[[31252,13278],[-7,-5],[-22,-33],[-26,-98],[-8,-12],[-27,-14],[-78,-27],[-41,-23],[-19,-12]],[[31024,13054],[-99,-69],[-30,-27],[-22,-27],[-82,-138],[-48,-105],[-60,-69],[-29,-46],[-14,-35],[-9,-35],[-1,-33],[4,-29],[24,-51],[75,-100],[24,-22],[33,-17],[44,-12],[48,-2],[102,13],[59,16],[29,2],[21,-4],[63,-31],[17,-46],[-12,-33],[0,-25],[23,-62],[3,-40],[7,-27],[-13,-64],[1,-23],[8,-30],[-6,-9]],[[31184,11874],[-44,-26],[-26,-26],[-16,-31],[-5,-35],[6,-32],[18,-34],[28,-34],[53,-52],[4,-6],[-3,-3],[-8,-6],[-7,0],[-77,27],[-36,8],[-32,4],[-31,-2],[-34,-6],[-35,-12],[-74,-45],[-53,-16],[-20,2],[-14,8],[-55,45],[-4,32],[-17,38],[-17,82],[-14,26],[-22,26],[-31,24],[-104,61],[-45,12],[-53,1],[-73,-10],[-73,-11],[-66,-21],[-66,-2],[-26,-5],[-82,-25],[-82,-25],[-49,-20],[-23,-14],[-18,-18],[-19,-29],[-31,-34],[-14,-23],[-9,-23],[-3,-24],[9,-62],[-70,-14],[-49,-18],[-44,-30],[-37,-35],[-22,-35],[-9,-39],[4,-34],[9,-17],[-119,-102],[-18,20],[-29,24],[-23,31],[-26,22],[-32,19],[-32,13],[-40,12],[-41,8],[-35,2],[-72,-8],[-123,-29],[-36,-14],[-29,-18],[-18,-16],[-16,-24],[-36,-19],[-27,-22],[-30,-38],[-24,-73],[-3,-32],[22,-65],[13,-20],[16,-18],[43,-28],[53,-20],[59,-15],[124,-22],[26,-7],[-52,-18],[-43,-27],[-29,-32],[-16,-39],[-77,-9],[-76,-10],[-60,-15],[-80,-31],[-40,-22],[-29,-21],[-40,-42],[-14,-25],[-5,-22],[3,-33],[26,-73],[31,-42],[23,-19],[26,-16],[29,-12],[35,-11],[83,-13],[44,-1],[31,2],[20,-97],[-14,-13],[-21,-31],[-10,-31],[2,-22],[8,-26],[-15,-36],[-3,-27],[5,-31],[11,-30],[23,-32],[33,-27],[34,-19],[-12,-152],[-12,-153],[-36,-17],[-38,-12],[-32,-12],[-46,-29],[-17,-17],[-11,-19],[-9,-44],[-46,-32],[-28,-32],[-16,-36],[-13,-59],[-6,-13],[-10,-8],[-11,-3],[-59,-3],[-38,-4],[-40,3],[-36,-1],[-67,-9],[-30,-1],[-25,3],[-18,8],[-31,27],[-51,33],[-52,25],[-28,24],[-62,42],[-53,44],[-42,22],[-67,21],[-90,20],[-89,20],[-66,8],[-66,-2],[-40,-7],[-41,-11],[-38,-15],[-30,-17],[-28,-22],[-21,-26],[-9,-17],[-8,-37],[-6,-12],[-50,-13],[-42,-17],[-36,-21],[-28,-25],[-22,-34],[-12,-37],[6,-48],[-2,-49],[14,-62],[-4,-10],[-11,-2],[-16,4],[-74,30],[-27,7]],[[27082,59896],[0,200],[0,200]],[[35406,76614],[15,-19],[13,-30],[11,-53],[14,-128],[-9,-56],[-44,-120]],[[35406,76208],[-1,-3],[-5,-14],[-10,-102],[-20,-119],[-54,-113],[-23,-31],[-2,-4],[-38,-22],[-35,-3],[-41,14],[-53,-18],[-35,9],[-33,25],[-59,45],[-78,41],[-18,15],[-15,21],[-14,38],[-5,51],[4,43],[19,101],[1,28],[-4,12],[-38,-19],[-51,-2],[-46,-131],[-51,-82],[-45,-44],[-30,-13],[-59,3],[-48,-12],[-43,8],[-7,-7]],[[34469,75923],[-4,20],[-16,58]],[[34449,76001],[-27,26],[-4,3],[-2,2],[-8,40],[7,94],[-14,38],[-28,76],[-34,17]],[[34339,76297],[1,0],[-5,26],[-14,17],[-22,-2],[-55,-37],[-43,-2],[-47,22],[-78,5],[-48,15],[-57,0],[-83,31],[-27,5],[-96,-21],[-96,-21],[-96,-21],[-31,6],[-27,12],[-25,18],[-20,25],[-7,15],[-13,31],[-5,82],[-21,67],[-6,40],[4,36],[13,37],[20,33],[9,12],[32,40],[10,27],[-5,27],[-31,52],[-6,15],[1,85],[0,5],[19,50],[26,39],[108,113],[45,32],[11,53],[30,77],[38,51],[5,65],[11,42],[19,39],[41,63],[20,79],[78,223],[28,120],[27,86],[2,66],[6,34],[12,25],[28,32],[16,27],[43,127],[14,14],[46,36],[2,271],[2,271],[2,271],[-59,96],[-59,96],[0,183],[80,124],[79,125],[51,71],[18,2],[45,15],[17,-2],[75,-42],[26,-50],[12,-13],[41,-18],[27,-19],[24,-33],[26,-76],[45,-87],[12,-42],[3,-53],[-3,-22],[-3,-21],[-18,-57],[-3,-23],[11,-54],[15,-113],[8,-62],[22,-78],[3,-92],[9,-26],[10,-32],[67,-107],[3,-13],[-3,-22],[-18,-47],[-35,-63],[1,-15],[16,-44],[3,-20],[-22,-112],[-15,-42],[-39,-77],[3,-15],[26,-32],[7,-21],[18,-174],[-13,-35],[-18,-31],[-24,-27],[-24,-17],[-21,-7],[-21,0],[-19,7],[-29,21],[-16,-1],[-41,-77],[-6,-23],[2,-20],[31,-44],[57,-53],[6,-2],[15,10],[118,-76],[5,-23],[2,-50],[-7,-24],[-25,-47],[-2,-18],[7,-10],[41,3],[47,20],[43,9],[73,35],[73,35],[32,9],[26,-1],[24,-9],[21,-17],[21,-26],[20,-40],[10,-79],[7,-22],[62,-47],[48,-49],[19,-29],[12,-42],[1,-30],[-14,-57],[-19,-45],[-10,-48],[-30,-40],[-2,-19],[28,-23],[10,3],[24,22],[20,5],[26,-3],[55,-18],[15,-17],[16,-39],[13,-53],[3,-32],[-21,-99],[-2,-34],[35,-44],[8,-22],[14,-84],[-15,-58],[24,-31],[1,-1]],[[35404,99741],[0,-257],[0,-258],[-1,-257],[0,-258],[0,-257],[0,-258],[-1,-258],[0,-257],[0,-258],[0,-257],[-1,-257],[0,-257],[0,-257],[-1,-257],[0,-257],[-29,-15],[-27,-8],[-30,-4],[-26,-2],[-131,-2],[-67,11],[-49,6],[-57,5],[-58,3],[-87,0],[-90,-5],[-69,-6],[-79,-10],[-80,-11],[-81,-11],[-82,-15],[-79,-7],[-109,-16],[-108,-11],[-134,-21],[-80,-5],[-65,-6],[-81,-11],[-82,-10],[-88,-14],[-25,-2],[-14,0],[-14,2],[-11,3],[-7,4]],[[0,99999],[35404,0],[0,-258]],[[0,99999],[47913,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-258],[0,-257],[0,-258],[0,-257],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-248],[0,-249],[0,-249],[0,-248],[0,-249],[0,-249],[0,-248],[0,-249],[27,-20],[23,-33],[9,-29],[-2,-28],[-21,-72],[-10,-21],[-15,-19],[-11,-9],[0,-90],[0,-234],[0,-234],[0,-271],[0,-271],[0,-272],[0,-271],[0,-272],[0,-193],[0,-193],[-136,0],[-136,-1],[-136,0],[-136,0],[-136,0],[-136,0],[-136,-1],[-136,0],[-136,0],[-136,0],[-136,0],[-136,0],[-136,-1],[-136,0],[-136,0],[-136,0],[-135,0],[-136,-1],[-136,0],[-136,0],[-136,0],[-46,9],[-49,-2],[-41,-13],[-32,-21],[-26,-33],[-13,-39],[2,-35],[16,-40],[27,-30],[-36,-7],[-70,20],[-33,2],[-31,-4],[-89,-30],[-52,-32],[-52,-21],[-33,25],[-41,16],[-45,6],[-50,-3],[-34,-10],[-94,-41],[-30,-26],[-19,-32],[-67,54],[-29,19],[-26,30],[-40,27],[-31,29],[-52,27],[-73,78],[-21,14],[-23,9],[-29,7],[-31,3],[-23,-1]],[[43742,87040],[2,228],[2,229],[0,238],[0,238],[0,238],[0,238],[0,239]],[[43746,88688],[21,17],[35,44],[18,9],[55,17],[45,27],[66,62],[24,29],[16,27],[8,21],[3,21],[-11,52],[-60,-10]],[[43966,89004],[-6,2],[-97,25],[-115,14],[-114,14],[-126,29],[-126,29],[-104,46]],[[43278,89163],[-103,46],[12,269],[13,269],[12,269],[12,269],[122,-85],[111,-49],[112,-48],[25,-11],[14,-18],[99,-45],[92,-49],[1,1]],[[43800,89981],[0,-1],[75,41],[75,41],[72,122],[0,2]],[[44022,90186],[64,108],[-5,22],[6,16],[23,34],[6,16],[-1,33],[-16,35],[11,21],[6,26],[99,26],[11,5],[2,1],[16,7],[23,14],[28,27],[18,31],[4,24],[-11,29],[7,11],[18,10],[84,29],[37,17],[38,27],[28,31],[15,30],[5,31],[-4,26],[-17,45],[24,22],[16,21],[15,34],[6,28],[-2,24],[-8,21],[-9,11],[32,52],[36,5],[82,19],[27,9],[26,11],[30,19],[23,22],[40,32],[56,73],[20,18],[19,9],[41,8],[36,11],[29,13],[25,15],[24,21],[13,20],[15,79],[6,2],[70,12],[54,20],[34,19],[78,62],[14,17],[8,16],[5,42],[9,28],[0,17],[-5,17],[-26,35],[-43,29],[-55,24],[-29,44],[-4,4],[-9,10],[-6,8],[-27,21],[-2,1],[-18,14],[-40,23],[-27,11],[-30,9],[-63,11],[-64,2],[-114,-9],[-13,1],[-4,5],[2,13],[18,24],[53,8],[43,10],[41,16],[3,2]],[[44992,92083],[2,1],[22,13],[5,3],[21,18],[8,9],[8,9],[12,22],[8,25],[3,68],[-6,34],[-12,27],[7,26],[-1,21],[-23,72],[-1,76],[20,61],[74,83],[23,44],[11,20],[5,21],[-1,44],[5,53],[-8,53],[-20,41],[-6,6],[-12,13],[-77,53],[-4,7],[8,6],[18,6],[61,14],[23,5],[42,12],[38,15],[31,18],[23,18],[23,26],[15,28],[24,32],[9,28],[-1,30],[-15,31],[-29,37],[-32,24],[-32,15],[-38,12],[-49,9],[-30,4],[-64,9],[-25,6],[-15,9],[-5,6],[-5,38],[2,25],[-12,26],[9,33],[8,8],[47,20],[46,25],[30,19],[10,6],[25,21],[21,28],[7,26],[37,28],[23,27],[6,23],[-7,32],[2,7],[31,19],[74,29],[32,20],[14,15],[12,20],[16,49],[-5,30],[-20,27],[-60,42],[-29,15],[-29,12],[-33,11],[-39,9],[-41,6],[-9,1],[-34,4],[-45,1],[-45,0],[-27,-2],[-46,-6],[-16,-1],[-14,6],[-14,10],[-16,28],[12,8],[25,6],[107,15],[53,11]],[[45138,94183],[37,11]],[[45175,94194],[75,21],[32,12],[25,11],[19,11],[38,30],[112,93],[45,50],[7,16],[1,20],[48,7],[43,8],[36,10],[35,13],[51,27],[34,29],[108,50],[41,24],[23,21],[12,22],[-2,22],[-15,23],[5,7],[33,11],[36,16],[71,9],[51,10],[109,25],[59,19],[39,20],[34,24],[25,24],[17,26],[86,16],[35,10],[31,11],[35,16],[32,22],[132,43],[53,20],[26,15],[32,28],[41,21],[22,8],[64,16],[46,14],[39,17],[48,27],[44,28],[23,25],[8,24],[-9,23],[-16,16],[-25,16],[-37,17],[-46,16],[-51,37],[-29,15],[-33,14],[-38,12],[-53,14],[-90,19],[-90,19],[-99,16],[-96,10],[-128,28],[-55,11],[-56,7],[-64,5],[-61,1],[-100,1],[-100,1],[-40,5],[-39,3],[-89,5],[-74,-1],[-76,-2],[-75,-2],[-81,-6],[-72,-11],[-44,-9],[-68,-19],[-42,-11],[-13,-2],[-44,6],[-61,53],[-27,19],[-17,23],[-37,24],[-40,22],[-39,18],[-39,13],[-45,13],[-50,10],[-55,9],[-60,6],[-62,3],[-65,0],[-96,-3],[-78,-7],[-67,-10],[-73,-15],[-14,0],[-52,7],[-6,4],[3,7],[44,32],[61,22],[77,23],[31,11],[29,14],[25,18],[34,37],[7,19],[-7,25],[-25,25],[-21,12],[-26,11],[-121,41],[-64,19],[-99,24],[-40,9],[-34,11],[-33,9],[-47,10],[-48,8],[-43,6],[-77,8],[-67,11],[-14,3]],[[43748,96124],[-6,1]],[[43742,96125],[0,277],[0,276],[0,277],[0,277],[0,277],[0,276],[0,277],[-1,277],[0,276],[0,277],[0,277],[0,277],[0,276]],[[43741,99722],[-43741,277]],[[35406,76208],[0,-191],[0,-190],[0,-215],[0,-214],[0,-215],[0,-214],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-58],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-255],[0,-256],[0,-255],[0,-256],[0,-255],[0,-256],[0,-255],[0,-256],[0,-256],[0,-255],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-260],[0,-260],[0,-259],[0,-260],[0,-260],[0,-260],[0,-260],[0,-260],[0,-259],[0,-260],[0,-110],[-13,23],[-46,103],[-16,24],[-114,64],[-42,9],[-107,110],[-102,59],[-83,33],[-83,33],[-88,16],[-71,-28],[-87,11],[-69,-9],[-24,-13],[-28,-42],[-13,-6],[-74,40],[-85,23],[-84,23],[-29,-85]],[[34148,53368],[-1,-1],[-1,-5]],[[34146,53362],[-7,-61],[-1,-7],[-16,-87],[0,-11],[-2,-61],[-9,-59],[-3,-10],[-8,-8],[-4,-11],[-3,-12],[0,-9],[-1,-12],[-1,-13],[-3,-9],[-13,-27],[-2,-6],[-1,-6],[1,-5],[1,0],[1,0]],[[34075,52948],[2,0],[3,3]],[[34080,52951],[2,-1],[1,0],[1,0],[1,-1],[0,-39],[1,-5],[1,-3],[2,-1],[1,0]],[[34090,52901],[1,0],[2,1],[2,2],[1,4],[-3,6],[-1,6],[0,5],[2,3],[2,0]],[[34096,52928],[3,-1],[1,-4],[0,-1],[2,-9],[9,-23],[2,-11],[-1,-8],[-3,-6],[-5,-5],[-3,-3]],[[34101,52857],[-1,10],[-2,6],[-4,2],[-5,1],[0,-1]],[[34089,52875],[-1,1],[-3,-4],[-2,-7],[-2,-16],[-4,-19],[-1,-6],[0,-8],[1,-6],[10,-18],[-3,-3]],[[34084,52789],[-1,0],[-2,2],[-2,1],[-1,0]],[[34078,52792],[-1,0],[-4,-1],[-2,-2],[-2,-3],[-3,-2],[-7,-4],[-22,-4],[-5,-3],[-2,0]],[[34030,52773],[-2,1],[-4,8],[-1,2],[-2,0]],[[34021,52784],[-7,-1],[-6,-2],[-12,-8]],[[33996,52773],[-10,9],[-1,0]],[[33985,52782],[-1,0],[-10,-1],[-9,-9],[-8,-15],[-4,-16],[-3,-5],[-6,-1]],[[33944,52735],[-3,1],[-3,3],[-2,1],[-1,0]],[[33935,52740],[-1,0],[-3,-2],[-2,-4],[-6,-18],[-4,-10],[-5,-11],[-4,-12],[-2,-19],[2,-8],[5,-4],[4,-6],[4,-23],[7,-19],[3,-10],[-1,-11],[-2,-9],[-5,-15],[-4,-28],[-5,-16],[-5,-24],[-2,-19],[-3,-7],[-3,-7],[-3,-9],[-1,-10],[1,-9],[1,-8],[1,-9],[0,-14],[-2,-11],[-3,-10],[-24,-49],[-4,-12],[-1,-11],[4,-24],[3,-48],[3,-19],[7,-17],[18,-29],[5,-10],[14,-42],[6,-25],[1,-11],[1,-25],[1,-12],[3,-10],[5,-6],[14,-11],[10,-14],[1,-4],[2,-9],[2,-8],[0,-2],[0,-2],[2,-3],[1,-1],[3,-1],[1,-2],[1,-1],[5,-7],[5,-10],[0,-10],[-5,-16],[0,-4],[1,-7],[0,-3],[-2,-10],[0,-5],[1,-6],[1,-6],[1,-3],[1,-2],[3,-2],[7,-4],[5,-5],[9,-10],[3,-1],[1,0]],[[34012,51859],[3,1],[3,10]],[[34018,51870],[2,-1],[3,-4],[2,-3],[2,0],[2,-1],[2,-1],[1,-3],[1,-3],[1,2]],[[34034,51856],[0,-2],[2,3],[2,4],[1,1],[8,4],[2,5],[-1,9]],[[34048,51880],[8,-6],[7,-5],[1,1]],[[34064,51870],[0,-1],[8,3],[8,12]],[[34080,51884],[6,-27],[1,-8],[-1,-19],[0,-3],[-2,-7],[0,-5],[2,-5],[1,-6],[0,-7],[-2,-11],[0,-7],[0,-6],[3,-13],[0,-7],[-2,-4],[-1,-4],[3,-4],[3,-1],[1,0]],[[34092,51740],[1,0],[3,2],[2,3],[1,1]],[[34099,51746],[1,-1],[-4,-16],[2,-11],[5,-8],[3,-13],[0,-4],[1,-7],[1,-4],[-1,-2],[-3,0],[-1,0],[-1,-2],[0,-7],[1,-5],[0,-4],[-1,-5],[-2,-7],[3,-4],[9,-2],[2,-9],[-3,-7],[-5,-7],[-2,-6],[4,-29],[1,-5],[2,-3],[1,-5],[1,-5],[3,-2],[1,0]],[[34117,51566],[1,0],[2,1],[6,5],[2,1]],[[34128,51573],[2,-3],[-5,-21],[2,-10],[1,1]],[[34128,51540],[0,-1],[1,1],[9,3]],[[34138,51543],[2,-2],[-1,-6],[-2,-8],[-1,-5],[2,-7],[7,-15],[3,-11],[1,-22],[2,-3],[1,1]],[[34152,51465],[1,-1],[5,5]],[[34158,51469],[1,-5],[-1,-7],[-1,-7],[0,-10],[2,-5],[7,-16],[0,-4],[-1,-19],[1,-5],[2,1]],[[34168,51392],[0,-1],[4,3],[5,7]],[[34177,51401],[1,-4],[0,-6],[-1,-6],[-1,-6],[1,-7],[1,-5],[5,-9],[1,-5],[0,-6],[-2,-8],[2,-10],[10,-17],[3,-13],[0,-20],[1,-5],[3,-2],[6,-3],[3,-2],[3,-11],[3,-25],[2,-12],[2,-16],[27,-76],[7,-6],[28,-1],[10,-11],[2,-5],[2,-4],[2,-2],[6,-4],[2,-4],[2,-5],[0,-1],[1,-5],[0,-1],[-1,0],[-12,-9],[-9,-10],[-3,-1]],[[34284,51058],[-4,4],[-4,7],[-4,5],[-3,1],[-3,1],[0,-1]],[[34266,51075],[-1,1],[-5,-4],[-4,-6],[-3,-4]],[[34253,51062],[-5,0],[-5,2],[-1,0]],[[34242,51064],[-1,0],[-3,-2],[-12,-18],[-4,-4]],[[34222,51040],[-2,0],[-20,7],[-3,3],[-5,7],[-2,5],[-2,3],[-6,0]],[[34182,51065],[-2,0],[-9,-2]],[[34171,51063],[-3,0],[-5,2],[-7,8],[-5,9],[-4,11],[-1,16],[-9,14],[-1,-1]],[[34136,51122],[0,1],[-14,-11],[-23,-29]],[[34099,51083],[-5,1],[-10,13],[-7,1]],[[34077,51098],[-1,0],[-6,-5],[-4,-7],[-4,-9],[-2,-4],[-2,-4],[-6,-6],[-2,-1],[-2,-2],[-3,-5],[-7,-37],[-2,-10],[-19,-46],[-8,-13],[-13,-7],[-7,0]],[[33989,50942],[-24,9],[-10,1],[0,-1]],[[33955,50951],[-1,1],[-9,-5],[-22,-20],[-10,-12],[-2,-1],[-2,-2]],[[33909,50912],[-4,1],[-8,6],[-4,2],[-1,-1]],[[33892,50920],[-1,1],[-1,-2],[-1,-2],[1,-9],[1,-17],[0,-10],[-2,-10],[-5,-18],[-5,-11],[-11,-4]],[[33868,50838],[-12,1],[-9,5],[-2,4],[-2,12],[-2,6],[-5,4],[-1,0]],[[33835,50870],[-2,0],[-1,0],[-3,-4],[-3,-2]],[[33826,50864],[-4,0],[-6,2],[-6,4],[-5,5],[-2,4],[-2,9],[-1,1],[-1,0],[0,-1]],[[33799,50888],[-1,1],[-3,-4],[-2,-8],[-2,-8],[-2,-6],[-1,-2],[-1,-2],[-7,-5],[-2,-4],[0,-5],[2,-12],[0,-6],[-8,-10],[-24,-8],[0,-1],[-4,-9],[2,-11],[5,-22],[2,-12],[0,-13],[-2,-10],[-8,-27],[-1,0]],[[33742,50704],[-2,2],[-2,2],[0,1],[-1,1],[0,1],[-2,2],[-1,2],[-1,-1]],[[33733,50714],[-1,1],[-1,-1],[-4,-6],[-1,-1]],[[33726,50707],[-27,5],[-1,0]],[[33698,50712],[-1,0],[-4,-1],[-2,-2],[-1,-3],[-8,-22],[-4,-9],[-6,-8],[-6,-5],[-6,-3],[-4,0]],[[33656,50659],[-2,0],[-2,1],[-6,5],[-7,11],[-2,12],[-2,12],[-4,13],[-5,8],[-6,6],[-1,2],[0,-2]],[[33619,50727],[-1,0],[-1,2],[9,-202],[10,-201],[9,-201],[6,-171],[-1,-14],[-1,-6],[-2,-31],[0,-63],[1,-19],[2,-17],[1,-6],[2,-5],[2,-5],[3,-4],[3,-3],[14,-12],[3,-4],[3,-5],[3,-9],[0,-7],[-1,-7],[-1,-8],[-1,-10],[0,-24],[-2,-26],[0,-15],[1,-9],[2,-8],[10,-23],[21,-40],[3,-3],[3,-1],[1,1]],[[33720,49571],[1,-1],[6,4],[2,0]],[[33729,49574],[3,-1],[3,-4],[13,-24],[2,-2],[5,-4],[4,-3],[4,-7],[2,-8],[3,-21],[1,-11],[2,-11],[1,-8],[0,-7],[0,-15],[1,-11],[1,-8],[2,-7],[3,-5],[20,-38],[3,-4],[2,-3],[3,0],[1,0]],[[33808,49372],[1,0],[5,0]],[[33814,49372],[2,0],[3,-3],[3,-6],[10,-32],[4,-9],[3,-6],[3,-3],[3,-1],[1,0]],[[33846,49312],[1,0],[4,0]],[[33851,49312],[2,-3],[2,-7],[3,-12],[3,-7],[3,-5],[22,-22],[6,-5],[4,-6],[4,-8],[6,-15],[5,-8],[3,-5],[21,-11],[4,-6],[5,-9],[8,-19],[5,-9],[4,-6],[5,-1],[3,-2],[2,-4],[3,-6],[3,-11],[3,-5],[3,-4],[25,-18],[6,-6],[9,-11],[7,-7],[7,-10],[3,-4],[12,-10],[3,-2],[6,-1],[2,-2],[5,-5],[3,-1],[3,0],[1,0]],[[34075,49039],[1,0],[3,0],[6,4],[6,4],[1,0]],[[34092,49047],[2,-1],[1,-4],[0,-12],[1,-8],[2,-3],[2,-2],[1,0]],[[34101,49017],[1,0],[9,2]],[[34111,49019],[3,0],[4,-3],[9,-12],[3,-3],[7,-4],[3,-4],[2,-5],[3,-19],[6,-17],[12,-27],[4,-6],[5,-5],[11,-8],[5,-5],[18,-25],[2,-3],[3,-2],[3,-2],[3,-1],[1,0]],[[34218,48868],[4,0],[6,2],[2,1]],[[34230,48871],[3,-3],[2,-4],[1,-6],[0,-6],[0,-6],[-4,-29],[-1,-7],[0,-6],[1,-9],[3,-4],[2,-3],[3,-2],[2,-3],[5,-6],[3,-2],[2,-2],[6,-3],[6,-4],[2,-1],[1,0]],[[34267,48765],[1,0],[2,1],[1,2],[13,17],[1,2],[14,10],[3,1],[2,1]],[[34304,48799],[2,-2],[1,-2],[1,-3],[1,-5],[0,-4],[0,-3],[0,-3],[-1,-16],[-1,-3],[0,-4],[1,-4],[1,-2],[1,-2],[3,-2],[6,-2],[5,-1],[6,-3],[1,-1],[1,0],[1,1]],[[34333,48738],[0,-1],[1,0],[1,1],[2,4],[2,3],[2,3],[15,8]],[[34356,48756],[0,-1],[-1,-1],[-2,-4],[-6,-8],[-10,-10],[-2,-4],[-2,-4],[-1,-2],[0,-2],[-1,-3],[1,-5],[2,-5],[3,-7],[0,-12],[-3,-17],[-51,-221],[-51,-221],[-53,-229],[-53,-230],[-54,-230],[-53,-230],[-54,-230],[-53,-230],[-53,-230],[-54,-230],[-10,-35],[-3,-6],[-22,-35],[-3,-8],[-5,-14],[-4,-16],[-2,-11],[0,-12],[0,-11],[1,-11],[10,-58],[3,-14],[3,-10],[5,-14],[5,-7],[10,-14],[6,-10],[15,-32],[8,-13],[5,-9],[7,-24],[2,-8],[3,-30],[0,-11],[-1,-11],[0,-6],[0,-7],[2,-9],[4,-12],[5,-10],[22,-40],[22,-66],[5,-24],[4,-25],[2,-7],[2,-8],[6,-10],[3,-8],[2,-8],[3,-43],[5,-27],[7,-27],[1,-6],[1,-19],[1,-11],[2,-12],[5,-17],[2,-18],[0,-5],[2,-6],[2,-6],[13,-26],[2,-7],[2,-6],[1,-10],[2,-6],[3,-7],[12,-23],[3,-9],[1,-7],[-4,-17],[0,-17],[-1,-5],[-2,-11],[-1,-5],[0,-11],[0,-25],[0,-7],[-1,-6],[-1,-5],[-1,-6],[0,-6],[1,-5],[6,-16],[1,-5],[0,-3],[0,-6],[0,-4],[0,-6],[2,-17],[0,-6],[-1,-12],[1,-7],[1,-5],[2,-6],[3,-5],[2,-6],[2,-6],[2,-12],[1,-13],[1,-6],[-1,-13],[2,-7],[3,-6],[19,-11],[3,-3],[5,-6],[10,-19],[5,-8],[12,-14],[3,-4],[1,-5],[2,-12],[1,-5],[14,-21],[3,-4],[20,-16],[7,-8],[4,-6],[3,-4],[20,-18],[3,-3],[2,-5],[1,-7],[3,-25],[-1,-36],[1,-5],[1,-6],[2,-6],[4,-6],[9,-7],[4,-2],[1,0]],[[34166,44863],[4,1],[3,2],[2,1]],[[34175,44867],[4,-1],[7,-2],[19,-11],[5,-5],[3,-5],[2,-6],[1,-6],[2,-6],[0,-18],[3,-16],[2,-5],[2,-5],[4,-2],[1,0]],[[34230,44779],[6,0],[4,3],[7,6],[3,2],[2,1]],[[34252,44791],[2,-1],[3,-3],[4,-5],[3,-3],[13,-6],[4,-4],[9,-15],[17,-15],[6,-4],[0,1]],[[34313,44736],[1,-1],[2,5]],[[34316,44740],[126,-18],[126,-18],[127,-18],[131,-16],[132,-16],[132,-15],[132,-16],[131,-15],[132,-16],[132,-15],[132,-16],[38,-4],[125,-13],[126,-13],[-6,-42],[-5,-36],[-1,-12],[-1,-9],[-3,-9],[-16,-32],[-2,-5],[-2,-12],[-1,-5],[-2,-10],[0,-13],[2,-21],[-1,-22],[-4,-25],[-5,-23],[-7,-18],[-9,-16],[-3,-9],[-1,-11],[0,-19],[0,-6],[-2,-6],[-4,-10],[-2,-6],[2,-13],[0,-7],[-2,-3],[-2,-3],[-4,-19],[-2,-2],[-3,-1],[-2,-2],[-1,-4],[-1,-7],[-2,-4],[-3,-10],[0,-3],[0,-8],[3,-14],[0,-5],[0,-23],[-1,-11],[-2,-10],[-1,-1],[-1,-4],[-2,-2],[-1,-4],[-3,-7],[0,-3],[0,-4],[1,-9],[3,-11],[0,-3],[0,-4],[-1,-6],[-1,-4],[0,-3],[-4,-8],[0,-4],[0,-4],[2,-15],[3,-28],[1,-6],[0,-4],[0,-17],[0,-8],[-1,-4],[-1,-3],[-2,-1],[-1,-1],[-2,-4],[-1,-1],[-1,-3],[-4,-14],[-1,-6],[-1,-46],[-1,-19],[-1,-2],[-2,-12],[-1,-5],[-1,-2],[-2,-5],[-8,-53],[-1,-13],[-1,-7],[-2,-9],[-1,-9],[0,-17],[1,-7],[2,-9],[3,-7],[1,-2],[1,-5],[1,-2],[2,-1],[11,-13],[1,-1],[1,-2],[1,-2],[1,-4],[0,-4],[-2,-25],[0,-3],[-1,-3],[0,-2],[-1,-2],[-2,-4],[-3,-6],[-2,-3],[-2,-4],[-3,-6],[-1,-2],[0,-4],[-1,-9],[0,-4],[1,-3],[1,-4],[2,-5],[1,-3],[1,-5],[0,-8],[2,-11],[1,-3],[0,-4],[1,-13],[0,-6],[2,-4],[1,-2],[3,-1],[2,-2],[1,-2],[0,-4],[0,-6],[0,-5],[-2,-3],[-1,-1],[-1,-2],[-1,-2],[0,-2],[0,-4],[0,-4],[1,-5],[1,-5],[0,-7],[-1,-3],[-1,-3],[-3,-5],[-1,-1],[-1,-3],[0,-11],[-1,-12],[3,-84],[1,-5],[3,-9],[5,-8],[1,-2],[4,-21],[0,-5],[0,-6],[-1,-5],[-1,-3],[5,-69],[0,-3],[0,-3],[-1,-2],[-1,-2],[-2,0],[-1,-1],[-1,-3],[0,-5],[1,-10],[0,-8],[-2,-9],[0,-6],[-1,-3],[-2,-11],[0,-3],[-1,-3],[0,-5],[1,-12],[0,-4],[-1,-3]],[[35928,42997],[-1,1],[-1,2],[-1,-1]],[[35925,42999],[0,1],[-2,-1],[-1,-1],[0,-3],[0,-4],[1,-4],[1,-5],[5,-6],[4,-5],[1,-2],[1,-2],[1,-13],[0,-3],[3,-9],[0,-3],[1,-6],[0,-10],[0,-7],[0,-7],[0,-4],[0,-3],[2,-6],[0,-7],[1,-3],[1,-2],[1,1]],[[35945,42885],[0,-1],[2,1],[3,2]],[[35950,42887],[1,0],[1,0],[1,-1],[-1,-2],[-1,-2],[0,-3],[0,-3],[1,-2],[1,-2],[2,-2],[4,-3],[3,-1],[2,0],[7,0],[4,-2],[1,-5],[0,-6],[0,-8],[-4,-40],[-1,-5],[-2,-5],[-2,-7],[-1,-1],[-10,-12],[-2,-3],[-1,-3],[0,-2],[0,-3],[2,-4],[1,-2],[1,-3],[0,-2],[-1,-3],[-1,-3],[-1,-2],[-5,-3],[-1,-2],[-1,-1],[-1,-2],[0,-3],[0,-4],[3,-8],[1,-6],[0,-7],[-2,-22],[0,-7],[0,-10],[0,-3],[3,-10],[0,-3],[0,-4],[0,-3],[-1,-7],[-7,-31],[-4,-15],[-5,-11],[-3,-8],[-4,-9],[0,-3],[-1,-4],[-1,-17],[-1,-4],[-1,-4],[-2,-5],[-3,-7],[-3,-7],[0,-3],[-1,-2],[-3,-8],[-1,-2],[-1,-1],[-3,-3],[-1,-2],[-1,-2],[-5,-11],[0,-4],[-3,-35],[-6,-33],[-1,-4],[-1,-3],[-1,-2],[-2,-4],[-4,-7],[-1,-1],[-2,-1],[-3,-1],[-4,-3],[-2,-1],[0,-2],[-1,-4],[1,-5],[2,-9],[0,-3],[0,-4],[0,-30],[0,-5],[1,-9],[2,-11],[1,-5],[0,-7],[-2,-22],[-4,-19],[0,-5],[0,-7],[0,-5],[2,-8],[0,-2],[-1,-14],[1,-7],[0,-3],[1,-2],[2,-7],[1,-3],[0,-4],[-1,-5],[0,-4],[-1,-2],[-1,-3],[-1,-2],[-3,-4],[-8,-4]],[[35860,42156],[-3,1],[-1,1],[-1,-1]],[[35855,42157],[-1,1],[-1,-1],[-1,-3],[1,-4],[0,-2],[1,-5],[0,-3],[0,-4],[-1,-7],[-10,-38],[-4,-28],[0,-4],[0,-4],[0,-8],[0,-5],[-1,-7],[-3,-11],[-1,-12],[-1,-3],[-1,-9],[0,-3],[0,-3],[2,-5],[1,-8],[1,-7],[0,-2],[2,-9],[1,-7],[1,-5],[0,-8],[0,-9],[-2,-8],[-2,-6],[-1,-6],[1,-7],[-1,-2],[-1,-2],[-1,-8],[-2,-11],[-1,-5],[-1,-6],[-7,-11],[-1,-6],[-1,-14],[-5,-21],[-2,-12],[0,-24],[-1,-10],[-4,-4],[-2,-6],[-2,-36],[-2,-4],[-6,-6],[-3,-4],[-1,-5],[-2,-13],[-1,-3],[0,-2],[-2,-5],[-4,-8],[-10,-8],[-8,-9],[-4,-4],[-5,-2]],[[35756,41656],[-6,4],[-1,11],[-1,11],[-4,9],[-1,-2]],[[35743,41689],[0,2],[-9,-14],[-5,-4],[-6,-2],[-6,-2],[-4,-6],[-7,-16],[-6,-8],[-11,-8],[-5,-9],[-12,-34],[-5,-4],[-4,-3],[-5,-7],[-4,-7],[-3,-6],[-2,-11],[1,-9],[1,-10],[0,-12],[-1,-4],[-5,-5],[-1,-4],[-1,-5],[-1,-8],[0,-6],[0,-6],[2,-12],[0,-7],[-1,-6],[-4,-11],[-1,-6],[-2,-26],[-2,-10],[-5,-12],[-5,-19],[-4,-4]],[[35620,41368],[-5,6],[-1,-1]],[[35614,41373],[-1,1],[-2,-7],[3,-12],[2,-14],[1,-14],[-3,-12],[-4,-11],[-8,-36],[-10,-24],[-3,-18],[-3,-7],[-3,-3],[-1,-1],[-4,0]],[[35578,41215],[-2,1],[-4,5],[-4,1],[-1,0]],[[35567,41222],[-4,-1],[-1,-2],[0,-4],[-1,-6],[-10,-18],[-6,-7],[-6,-4],[-29,-3],[-14,-5],[-6,-5],[-3,-4],[-3,-4],[-1,-4],[-2,-10],[-13,-27],[-6,-28],[-1,-5],[-2,-2],[-1,0],[-2,0],[-3,0],[-7,-10],[-12,-8],[-4,-7],[-1,-9],[-4,-4],[-14,-12],[-3,-3],[-2,-4],[-1,-4],[-1,-5],[1,-25],[0,-4],[0,-3],[-1,-4],[-2,-4],[-3,-3],[-3,-3],[-15,-7],[-6,-6],[-6,-7],[-1,-2],[-2,-5],[-1,-8],[-1,-14],[0,-12],[0,-4],[2,-8],[1,-4],[1,-2],[2,-3],[2,-3],[5,-5],[1,-1],[0,-1],[5,-5],[-3,-21],[-1,-25],[-1,-11],[-3,-8],[-7,-9],[-5,-8],[-3,-8],[-1,-11],[-1,-14],[-2,-10],[-5,-11],[-12,-18],[-10,-23],[-6,-5],[-4,-8],[-3,-2],[-11,-8],[-19,-18],[-8,-11],[-7,-16],[1,-10],[-4,-36],[-3,-12],[0,-6],[0,-5],[2,-11],[0,-5],[-2,-10],[-2,-11],[-3,-9],[-4,-4],[-2,-4],[-10,-30],[-5,-9],[-1,-3],[-2,-13],[-2,-9],[-2,-12],[-2,-6],[-7,-11],[-2,-5],[-2,-10],[2,-27],[1,-5],[1,-6],[0,-6],[-1,-6],[-2,-4],[-1,-5],[-2,-11],[-2,-23],[-1,-22],[0,-6],[-3,-8],[-3,-27],[0,-16],[1,-16],[3,-17],[15,-50],[8,-20],[1,-5],[1,-6],[2,-17],[7,-38],[11,-44],[4,-23],[1,-16],[2,-11],[1,-17],[-5,-109],[1,-12],[1,-7],[2,-9],[3,-8],[6,-12],[3,-4],[3,-1],[1,0]],[[35280,39784],[1,0],[3,2],[3,3],[11,16],[3,2]],[[35301,39807],[2,0],[2,-1],[6,-3],[25,-21],[3,-5],[1,-6],[-1,-13],[-1,-8],[-3,-7],[-16,-41],[-3,-12],[-10,-45],[-1,-9],[-1,-3],[1,-3],[7,-8],[31,-17],[1,0],[18,0],[13,-5],[8,-2]],[[35383,39598],[1,0],[33,10]],[[35417,39608],[3,-1],[3,-4],[8,-10],[21,-40],[3,-3],[3,-3],[6,-1],[1,0]],[[35465,39546],[1,0],[13,2]],[[35479,39548],[3,-1],[7,-4],[16,-15],[21,-26],[4,-7],[2,-5],[1,-5],[1,-5],[3,-5],[5,-5],[10,-7],[15,-5],[11,-7],[10,-14],[6,-15],[4,-5],[55,-45],[3,-1],[13,-4],[1,1]],[[35670,39368],[1,-1],[10,2]],[[35681,39369],[3,-1],[17,-9],[11,-3],[3,-2],[4,-4],[18,-30],[5,-12],[3,-4],[4,-4],[4,-3],[4,-1],[11,-1],[3,-2],[9,-8],[3,-1],[1,0]],[[35784,39284],[1,0],[6,2]],[[35791,39286],[2,0],[4,-2],[3,-3],[4,-5],[4,-7],[14,-30],[20,-58],[0,-13],[2,-10],[3,-10],[2,-9],[-4,-11],[-2,-2],[-5,0],[-2,-2],[-1,-4],[-1,-5],[0,-30],[-2,-12],[-6,-17],[-2,-15],[0,-16],[6,-84],[0,-68],[3,-41],[-10,-49],[-7,-21],[-9,-20],[-7,-11],[-7,-8],[-36,-20],[-16,-16],[-5,-8],[-11,-23],[-4,-13],[-12,-27],[-6,-18],[-14,-29],[-14,-5],[-5,-7],[-2,-11],[-3,-25],[-6,-21],[0,-13],[0,-25],[-3,-61],[-3,-9],[-19,-40],[-6,-10],[-1,-2],[-3,-5],[-7,-33],[-4,-16],[-2,-3],[-2,-2],[-4,-4],[-7,-11],[-5,-5],[-3,-8],[-2,-15],[6,-48],[1,-23],[-4,-25],[-17,-32],[-3,-12],[-8,-24],[-4,-7],[-5,-3]],[[35554,38064],[-3,0],[-4,2],[-6,2],[-1,0]],[[35540,38068],[-3,-1],[-3,-1],[-2,-3],[-1,-6],[-1,-3],[0,-2],[0,-3],[-1,-3],[-1,-1],[-2,-2],[-1,-1],[-1,-15],[12,-38],[4,-3],[2,-7],[0,-4],[0,-12],[-5,-10],[-5,-9],[-7,-9],[-10,-8],[-4,-5],[-9,-27],[-1,-6],[0,-11],[-1,-7],[-2,-6],[-2,-6],[-3,-5],[-2,-3],[-6,-4],[-1,-3],[-15,-25],[-2,-8],[-1,-8],[-1,-17],[-2,-8],[-8,-32],[-1,-5],[-2,-15],[-1,-4],[-19,-31],[-5,-12],[-2,-3],[-7,-7],[-2,-2],[-6,-14],[-3,-3],[-3,-2],[-6,-1],[-3,-2],[-5,-6],[-9,-14],[-15,-11],[-4,-5],[-9,-14],[-26,-29],[-2,-2],[-1,-4],[-3,-13],[-1,-3],[-22,-20],[-4,-3]],[[35294,37521],[-3,0],[-3,4],[0,-1]],[[35288,37524],[-1,1],[-2,-3],[-6,-14],[-4,-19],[-3,-5],[-2,-2],[-4,-2],[-3,-2],[-2,-4],[-15,-55],[-8,-17],[-9,-14],[-86,-72],[-21,-23],[-9,-17],[-3,-10],[-7,-34],[-2,-11],[-3,-58],[-5,-22],[-5,-20],[-8,-43],[-5,-21],[-8,-17],[-31,-36],[-23,-18],[-6,-11],[-1,-5],[0,-20],[-13,-82],[-2,-34],[-9,-43],[-3,-23],[0,-49],[-2,-24],[-6,-11],[-22,-21],[-2,-6],[-6,-8],[-11,-11],[-6,-8],[-9,-14],[-7,-15],[-3,-17],[1,-9],[4,-18],[1,-21],[2,-7],[7,-16],[2,-12],[4,-18],[-1,-16],[-2,-17],[-4,-12],[-11,-30],[-3,-18],[0,-17],[4,-38],[0,-18],[-14,-77],[-8,-21],[-2,-9],[-13,-101],[-2,-19],[-1,-10],[0,-10],[3,-10],[7,-22],[1,-10],[-3,-10],[-9,-16],[-4,-10],[-6,-36],[-7,-20],[-5,-12],[-8,-13],[-6,-21],[-3,-20],[-1,-6],[0,-12],[1,-12],[3,-10],[2,-11],[-1,-13],[-1,-13],[-1,-2],[0,-9],[4,-18],[1,-11],[-4,-5],[-8,0],[-2,0],[-2,-5],[0,-14],[5,-29],[0,-11],[2,-8],[6,-14],[2,-7],[-1,-12],[-2,-10],[-3,-9],[-2,-9],[2,-25],[1,-10],[-3,-9],[-2,-1],[-7,-1],[-2,-2],[-2,-6],[0,-5],[1,-6],[2,-17],[3,-18],[0,-12],[-6,-36],[1,-8],[5,-11],[1,-7],[-2,-6],[-3,-9],[-2,-7],[-1,-4],[1,-11],[0,-25],[-4,-18],[-1,-3],[-1,-3],[-2,-34],[-2,-9],[-2,-7],[-9,-18],[-7,-11],[-5,-9],[-2,-10],[0,-8],[2,-8],[0,-10],[0,-13],[-1,-14],[-2,-12],[-4,-9],[-2,-2]],[[34772,35186],[-1,1],[-1,3],[-2,2],[-2,0]],[[34766,35192],[-11,0],[-1,0],[-7,-3],[-4,-8],[-3,-11],[-4,-26],[-2,-10],[-3,-8],[-4,-8],[-4,-4],[-14,-2],[-6,-4],[-18,-33],[-1,-9],[3,-22],[-1,-12],[-4,-7],[-6,-2]],[[34676,35023],[-10,1],[-4,3],[-5,5],[-6,4],[-7,0]],[[34644,35036],[-2,0],[-13,-13],[-13,-3],[-6,-3],[-5,-6],[-4,-9],[-4,-11],[-1,-11],[-1,-26],[-3,-9],[-6,-1]],[[34586,34944],[-7,2],[-1,-1]],[[34578,34945],[0,1],[-6,-2],[-3,-8],[-1,-12],[-2,-10],[-4,-4],[-8,-3],[0,-9],[7,-23],[1,-6],[0,-6],[0,-6],[-4,-11],[0,-4],[1,-4],[0,-8],[-3,-13],[-4,-9],[-6,-6],[-7,-2],[-8,-11],[-10,-21],[-10,-14]],[[34511,34754],[-16,16],[-7,3],[-3,4],[-3,5],[-4,21],[-4,11],[-6,4],[-1,-1]],[[34467,34817],[0,1],[-7,-1],[-6,-2],[-2,0],[-4,0]],[[34448,34815],[-6,2],[-18,13],[-7,3],[-7,1],[-1,-1]],[[34409,34833],[-1,1],[-7,-8],[-5,-7],[-10,-21],[-7,-5],[-8,-4],[-6,-6],[-2,-12],[1,-15],[-1,-12],[-3,-12],[-5,-10],[-6,-14],[-4,-17],[-4,-14],[-8,-3]],[[34333,34674],[-9,6],[-8,12],[-7,15],[-6,15],[-11,25],[-18,5],[-1,-1]],[[34273,34751],[-1,1],[-19,-11],[-14,-19],[-10,-3]],[[34229,34719],[-9,10],[-17,31],[-10,7],[-1,0]],[[34192,34767],[-1,0],[-10,-2],[-10,-7],[-27,-27],[-9,-4]],[[34135,34727],[-10,1],[-2,1],[-7,0],[-3,2],[-2,3],[-8,11],[-3,2],[-12,7],[-3,1],[-3,3],[-2,3],[-4,8],[-3,3],[-6,3],[-1,1],[-1,0]],[[34065,34776],[-8,0],[-27,-7]],[[34030,34769],[-6,1],[-2,1],[-5,3],[-45,40],[-3,2],[-28,11],[-12,7],[-13,5],[-4,2],[-8,6],[-16,6],[-6,2],[-8,1]],[[33874,34856],[-2,0],[-17,-6],[-3,0]],[[33852,34850],[-30,7]],[[33822,34857],[-1,0],[-76,-12],[-24,-19]],[[33721,34826],[1,26],[-1,11],[-3,11],[-7,9],[-4,7],[-1,7],[1,16],[4,11],[6,7],[15,4],[1,6],[-1,9],[0,10],[1,4],[1,5],[1,4],[2,4],[2,2]],[[33739,34979],[1,-2],[0,-4],[0,-2],[1,-1],[2,-3],[2,-1],[0,1]],[[33745,34967],[1,-1],[1,3],[1,9],[0,4],[1,5],[3,7],[5,11],[2,8],[-4,7],[-1,7],[2,7],[5,6],[12,6],[6,4],[3,7],[2,5],[7,1],[6,1],[4,6],[-2,9],[-5,7],[-3,8],[3,12],[4,2]],[[33798,35108],[4,-2],[5,-2],[0,1]],[[33807,35105],[1,-1],[4,8],[-1,4],[-2,7],[0,5],[4,3]],[[33813,35131],[2,0],[2,0]],[[33817,35131],[2,0],[1,3],[0,43],[2,11],[1,6]],[[33823,35194],[1,-1],[9,-3],[1,0]],[[33834,35190],[4,0],[1,4],[-1,5],[-1,4],[-2,5],[0,7],[1,1],[5,7],[2,3],[-2,3],[-2,8],[-2,4],[-6,9],[-2,3],[-1,9],[1,9],[2,8],[0,10],[1,4],[4,6],[1,5],[-7,12],[-1,7],[2,8],[10,30],[1,8],[1,9],[-2,18],[0,9],[3,4],[4,2],[6,4],[5,7],[0,8],[-4,5],[-5,4],[-3,5],[0,9]],[[33847,35453],[1,0],[2,-3],[2,-3],[1,-4],[1,2]],[[33854,35445],[0,-2],[3,6],[2,12],[3,18],[3,6],[18,11],[9,10],[32,43],[4,9],[0,8],[-13,7],[2,8],[10,14],[1,5],[2,6],[0,6],[-7,4],[-1,4],[1,4],[6,4],[6,6],[4,5],[2,2],[3,8],[-5,19],[-1,10],[5,5],[5,3],[5,8],[5,8],[3,8],[-3,1],[-3,2],[-2,3],[-2,5],[6,16],[3,6],[6,5],[3,0]],[[33969,35748],[2,0],[1,0]],[[33972,35748],[3,0],[3,3],[1,5],[1,12],[1,2]],[[33981,35770],[6,-1],[2,0]],[[33989,35769],[4,0],[2,3],[1,13],[3,4],[4,2],[4,6],[1,10],[4,48],[-1,9],[-2,8],[-3,7],[-18,25],[0,6],[-8,40],[-9,10],[-5,14],[-9,36],[-3,7],[-9,8],[-4,6],[-13,26],[-4,6],[-5,4],[-22,0],[-4,3],[-2,5],[-1,6],[-2,5],[-2,1],[-1,0]],[[33885,36087],[-1,0],[-5,-1]],[[33879,36086],[-2,0],[-19,18],[-2,0]],[[33856,36104],[-2,0]],[[33854,36104],[-3,8],[-25,31],[-1,0]],[[33825,36143],[-5,0],[-5,-6],[-8,-15],[-3,-4],[-4,-4],[-2,0]],[[33798,36114],[-3,1],[-1,3],[-1,5],[-2,5],[-18,37],[-6,16],[-4,7],[-6,5],[-61,22],[-2,3],[0,4],[-2,3],[-2,1],[-2,3],[-4,2],[-14,1],[-6,3],[-53,73],[-9,4],[-3,4],[-6,10],[-2,3],[-2,1],[-5,0],[-6,4],[-10,12],[-7,4],[-8,11],[-11,7],[-3,4],[-1,3],[-2,3],[-5,2],[-2,1],[-4,8],[-9,6],[-4,11],[-6,19],[-3,6],[-11,17],[-6,6],[-1,4],[-1,5],[-1,4],[-2,3],[-6,5],[-6,6],[-3,5],[-3,6],[-2,3],[-5,2],[-5,5],[-7,2],[-3,1],[-2,4],[-5,12],[-10,20],[-100,121],[-5,3],[-1,-1]],[[33318,36664],[-1,1],[-6,-1],[-13,-9],[-6,-3],[-20,-1]],[[33272,36651],[-21,6],[-1,0]],[[33250,36657],[-1,0],[-7,-1]],[[33242,36656],[-3,1],[-3,3],[-5,9],[-3,4],[-3,0],[-1,0]],[[33224,36673],[-9,0]],[[33215,36673],[-17,6],[-9,12],[-5,4],[-10,1],[-1,1],[-5,18],[0,3],[-3,1],[-5,5],[-3,2],[-3,1],[-1,0]],[[33153,36727],[-12,-1]],[[33141,36726],[-2,1],[-6,9],[-3,1],[-1,0]],[[33129,36737],[-23,-1]],[[33106,36736],[-6,2],[-8,8],[-9,14],[-10,10],[-1,-1]],[[33072,36769],[-1,1],[-9,-5]],[[33062,36765],[-9,9],[-2,5],[-4,13],[-2,3],[0,7],[-4,12],[-4,10],[-7,8],[-5,15],[-3,5],[3,9],[1,12],[-1,12],[-4,5],[-4,3],[-5,6],[-3,8],[-4,5],[-2,1],[-1,0]],[[33002,36913],[-5,-1],[-1,0]],[[32996,36912],[-3,4],[-5,10],[-3,2],[-5,3],[-3,8],[-2,8],[-2,7],[-18,15],[-7,1],[-3,2],[-3,3],[-4,6],[-4,5],[-4,4],[-5,2],[-6,0],[-3,3],[-3,13],[-4,6],[0,5],[2,7],[1,4],[-5,0],[-3,2],[-3,2],[-14,27],[-4,4],[-1,0]],[[32882,37065],[-12,0]],[[32870,37065],[-4,2],[-2,2],[-4,9],[-4,5],[-4,4],[-3,4],[-2,10],[0,10],[-1,7],[-1,5],[-3,7],[-3,5],[-7,6],[-3,6],[-6,17],[-2,4],[-31,35],[-10,20],[-4,11],[0,2],[-1,3],[1,13],[0,5],[-3,8],[-5,21],[-5,11],[-5,12],[-3,6],[-1,7],[-1,0],[-3,3],[-2,4],[-1,2],[-2,2],[-1,4],[-1,5],[-1,4],[-7,16],[-2,6],[-1,6],[-2,5],[-4,2],[-1,3],[4,13],[-6,6],[0,7],[2,13],[-1,5],[-1,1],[-1,0]],[[32722,37429],[-1,0]],[[32721,37429],[-3,2],[-7,5],[-4,6],[0,7],[4,10],[2,9],[-3,10],[-6,14],[-1,0]],[[32703,37492],[-1,0],[-1,0]],[[32701,37492],[-2,1],[0,4],[0,6],[-1,3],[0,3],[-2,2],[-3,2],[-10,2],[-2,1],[-6,3],[-19,25],[-5,9],[-2,8],[-2,4],[-11,7],[-4,3],[-7,16],[-4,8],[-7,3],[-3,0],[-4,2],[-3,4],[-2,5],[0,5],[2,4],[1,6],[-2,8]],[[32603,37636],[1,0]],[[32604,37636],[1,0],[-1,4],[-2,4],[-2,2],[-3,1],[-3,2],[0,4],[-1,5],[-1,5],[-3,6],[-12,16],[-13,12],[-4,8],[-2,9],[0,18],[-2,7],[1,4],[0,6],[-2,21],[-1,5],[-4,2],[-12,4],[-1,0]],[[32537,37781],[-42,-4],[-86,1],[-87,1],[-1,0],[-11,-4],[-5,-4],[-12,-21]],[[32293,37750],[-2,2],[-12,19],[-5,5],[-26,3]],[[32248,37779],[-2,0],[-7,-3],[-4,-3],[-1,-2],[0,-3],[-3,-12],[-1,-11],[-1,-5],[-2,-4],[-2,-2],[-2,-1],[-1,-2],[-3,-9],[-4,-31],[-9,-41],[-2,-6],[-6,-6],[-2,-4],[-20,-100],[-7,-18],[-14,-26],[-4,-13],[-12,-83],[0,-40],[-3,-11],[-6,-43],[0,-2]],[[32130,37298],[-4,9],[-1,17],[-3,7],[2,14],[-1,15],[-4,12],[-6,5],[-3,5],[-7,29],[-3,4],[-2,2],[-2,3],[-1,9],[0,6],[2,11],[0,5],[1,6],[2,5],[3,6],[0,8],[-15,29],[-4,10],[-2,12],[-1,4],[-5,6],[-2,4],[0,6],[3,10],[-1,6],[-3,6],[-6,8],[-4,10],[3,13],[3,8],[2,7],[0,9],[-2,12],[-3,6],[-7,17],[-3,4],[-5,2],[-6,6],[-6,7],[-6,2],[-2,1],[-1,0]],[[32030,37681],[-1,0],[-2,0],[-5,-5],[-2,0]],[[32020,37676],[-10,5],[-19,20],[-53,23],[-1,0]],[[31937,37724],[-47,-1],[-73,-2]],[[31817,37721],[-15,3],[-19,5],[-1,0]],[[31782,37729],[-3,0],[-1,-2],[-1,-3],[-3,-2],[-37,-8]],[[31737,37714],[-8,5],[-8,11],[-36,78],[-6,7],[-26,8],[-1,3],[-3,27],[-9,17],[-12,12],[-23,14],[-1,-1]],[[31604,37895],[-1,1],[-5,-3],[-13,-92],[-3,-52],[-1,-8],[-2,-6]],[[31579,37735],[-1,0]],[[31578,37735],[-4,-1],[-2,-2],[-2,-5],[-2,-5],[-1,-5],[-7,-10],[-37,-20],[-32,-17],[-1,-2],[-1,-4],[-1,-4]],[[31488,37660],[-4,2],[-6,1],[-3,2],[-3,1]],[[31472,37666],[-1,0],[-4,-3],[-7,-11],[-3,-11],[-2,-13],[-3,-41],[-2,-12],[-4,-9],[-1,-4],[2,-16],[0,-6],[-3,-4],[-32,-18],[-7,-8],[-6,-11],[-2,-7],[-4,-5],[-4,-2]],[[31389,37485],[-5,1],[-1,0]],[[31383,37486],[-5,0],[2,-52],[0,-12],[-3,-8],[-21,-31],[-9,-18],[-14,-44],[50,-100],[-1,-17],[-5,-30],[-20,-118],[-19,-118],[-20,-118],[-1,-5],[-18,-113],[-6,-36],[-7,-17],[-13,-14],[-12,-7],[-2,-2],[-6,-4],[-5,-4],[-3,-2],[-34,-28],[-35,-29],[-35,-28],[-35,-29],[-13,-10],[-14,-11],[-14,-11],[-14,-11],[-10,-7],[-5,-6],[-1,-4],[-3,-16],[-10,-30],[-3,-7],[-4,0]],[[31015,36389],[-5,3],[-5,1]],[[31005,36393],[-1,0],[-5,-5],[-11,-44],[-2,-17],[-2,-9]],[[30984,36318],[-2,2],[-5,14],[-1,-1]],[[30976,36333],[-1,1],[-3,-2],[-3,-6],[-1,-8],[0,-8],[-4,-19],[-14,-52],[-1,-13],[0,-9],[6,-30],[1,-3],[3,-5],[7,-7],[2,-3],[5,0],[3,-2],[2,-5],[2,-8],[0,-1],[-1,-2],[0,-2],[0,-3],[1,-3],[3,-4],[1,-3],[2,-4],[1,-3],[1,-4],[-1,-5],[-1,-21],[7,-17],[8,-14],[6,-15],[0,-11],[-3,-7],[-6,-5],[-5,-2]],[[30993,36028],[-5,0],[-4,2],[-2,0]],[[30982,36030],[-4,0],[-6,-6],[-1,-2],[-5,-13],[-25,-141],[-1,-21],[0,-10],[2,-10],[10,-23],[3,-11],[-4,-9],[3,-11],[-1,-15],[1,-16],[5,-13],[5,-10],[4,-13],[3,-15],[3,-45],[19,-143],[3,-28],[-3,-19],[-35,-50],[-8,-19],[-4,-20],[-2,-22],[0,-44],[2,-28],[5,-24],[7,-21],[10,-22],[52,-134],[4,-16],[1,-16],[-1,-10],[-5,-20],[-1,-10],[-1,-7],[1,-14],[0,-4],[-2,-1]],[[31016,34974],[-7,1],[-1,0]],[[31008,34975],[-4,0],[-12,-10],[-6,-2],[-14,-1],[-7,-5],[-6,-8],[-5,-9],[-3,-12],[-2,-11],[-2,-8],[-6,-1]],[[30941,34908],[-11,8],[-9,13],[-10,11],[-12,2],[-1,-1]],[[30898,34941],[-1,1],[-10,-5],[-4,-4],[-4,-9],[-12,-35],[-2,-12],[-1,-10],[1,-22],[-1,-9],[-13,-56],[-4,-7],[-4,-7],[-10,-10],[-4,-6],[-2,-6],[-1,-7],[0,-8],[1,-7],[-1,-14],[-2,-15],[-7,-26],[-3,-6],[-6,-11],[-2,-6],[0,-9],[1,-7],[2,-7],[1,-8],[-1,-4],[-8,-7],[-2,-4],[-2,-6],[-3,-21],[-11,-85],[-4,-15],[-7,-9],[-17,-8],[-4,-4],[-4,-6],[-2,-8],[-1,-5],[1,-3],[0,-4],[-5,-9],[-10,-43],[-7,-18],[-6,-22],[-2,-5]],[[30715,34327],[-3,1],[-6,7],[-5,5],[-1,-1]],[[30700,34339],[-1,1],[-4,-6],[-3,-29],[-2,-10],[-12,-27],[-15,-22],[-13,-23],[0,-2],[-5,-31],[-1,-59],[-1,-6],[-2,-2],[-2,-1],[-2,-3],[-6,-14],[-5,-17],[-4,-18],[0,-19],[1,-12],[4,-24],[1,-12],[-1,-10],[-8,-26],[0,-5],[0,-4],[-1,-5],[-1,-5],[-4,-7],[-2,-8],[-2,-11],[-2,-11],[1,-11],[1,-11],[1,-28],[0,-15],[-2,-12],[-5,-12],[-6,-5],[-14,-5],[-5,-3],[-1,-3],[0,-4],[-2,-7],[-3,-5],[-7,-8],[-4,-7],[-2,-1],[-1,-1],[-1,-4],[0,-3],[3,-7],[1,-4],[-2,-5],[-2,-4],[-3,-4],[-3,-1],[-6,-6],[-3,-12],[-1,-27],[1,-9],[2,-8],[2,-7],[2,-8],[3,-29],[2,-5],[2,-6],[1,-7],[7,-53],[-1,-16],[-1,-17],[0,-12],[3,-11],[7,-11],[2,-7],[4,-49],[-2,-74],[-1,-21],[-4,-20],[-9,-26],[-2,-7],[2,-10],[5,-2],[0,1]],[[30566,33282],[1,-1],[10,3]],[[30577,33284],[10,-6],[8,-15],[4,-20],[-3,-21],[-3,-3],[-5,-4],[-3,-5],[-1,-4],[-1,-5],[-1,-11],[0,-21],[-1,-10],[-3,-9],[-7,-15],[-7,-10],[-9,-8],[-9,-4]],[[30546,33113],[-9,4],[-23,19]],[[30514,33136],[-1,0],[-7,-6],[-1,-9],[7,-21],[2,-11],[-2,-11],[-4,-6],[-4,-4],[-5,-5],[-6,-16],[-5,-43],[-4,-19],[-5,-17],[-2,-9],[-1,-11],[0,-7],[1,-6],[0,-5],[-2,-7],[-5,-11],[-1,-4],[-4,-20],[-5,-76],[1,-10],[2,-9],[5,-9],[8,-12],[3,-8],[1,-7],[-3,-1]],[[30477,32756],[-11,3],[0,-1]],[[30466,32758],[-1,1],[-6,-5],[-6,-17],[-3,-11],[-2,-16],[-3,-9],[-5,-7],[-3,-1]],[[30437,32693],[-3,6],[-1,12],[-2,12],[-6,5],[0,-1]],[[30425,32727],[-1,1],[-4,-4],[-15,-42],[-2,-9],[0,-11],[0,-22],[-1,-10],[-6,-22],[0,-10],[2,-10],[2,-12],[-1,-11],[-5,-17],[-1,-11],[0,-20],[-1,-20],[-3,-25],[1,-10],[3,-14],[14,-51],[9,-17],[3,-9],[-1,-23],[1,-14],[3,-12],[3,-10],[10,-18],[9,-4],[2,0]],[[30446,32290],[9,0]],[[30455,32290],[12,-3],[4,-5],[6,-8],[6,-11],[3,-9],[1,-11],[-2,-7],[-3,-6],[-2,-9],[-3,-20],[-2,-5],[-6,-1]],[[30469,32195],[-12,8],[-5,2],[-1,0]],[[30451,32205],[-1,0],[-4,-6],[0,-7],[1,-5],[5,-8],[1,-5],[1,-4],[0,-11],[1,-5],[5,-6],[1,-4],[-1,-5],[-2,-9],[0,-5],[0,-7],[4,-12],[1,-6],[0,-5],[-1,-10],[0,-5],[2,-14],[4,-4],[5,-2],[6,-4],[4,-9],[3,-9],[0,-41],[5,-17],[10,-10],[5,-6],[3,-12],[1,-11],[-1,-11],[1,-9],[5,-15],[-2,-2],[-7,0],[-1,-5],[-1,-4],[-1,-11],[1,-12],[6,-60],[5,-17],[15,-30],[9,-16],[5,-5],[6,-4],[4,-5],[0,-7],[-5,-15],[-2,-10],[-3,-24],[-2,-9],[-4,-4],[-9,-4],[-4,-6],[-2,-11],[2,-9],[2,-9],[1,-12],[-5,-32],[0,-11],[3,-9],[4,-8],[9,-14],[3,-7],[9,-34],[1,1]],[[30552,31501],[0,-1],[8,3],[12,28],[9,3]],[[30581,31534],[9,-6],[9,-9],[6,-13],[3,-31],[5,-19],[0,-11],[-2,-9],[-7,-16],[-3,-8],[-1,-9],[-1,-26],[-1,-7],[-2,-2],[-6,-3],[-2,-3],[-1,-6],[1,-5],[1,-4],[0,-6],[-6,-32],[0,-11],[2,-9],[8,-18],[0,-8],[-4,-6],[-9,-13],[-2,-7],[-1,-12],[5,-43],[0,-9],[-3,-22],[0,-16],[2,-1],[1,0]],[[30582,31134],[1,0],[4,2]],[[30587,31136],[4,-2],[3,-15],[0,-26],[-2,-42],[-2,-8],[-1,-5],[0,-5],[1,-9],[2,-8],[7,-21],[2,-14],[-1,-5],[-19,-14],[-1,-3],[0,-4],[-1,-2]],[[30579,30953],[-9,6],[-6,2],[-6,0]],[[30558,30961],[-1,0],[-14,-4],[-5,-8],[-2,-12],[0,-17],[1,-16],[0,-13],[-2,-11],[-13,-18],[-4,-12],[-6,-27],[-5,-11],[-11,-17],[-6,-9],[-4,-19],[-2,-43],[-6,-17],[-6,-5],[-4,-2],[-2,-3],[2,-10],[4,-8],[4,-5],[1,-7],[-21,-86],[-6,-39],[1,-41],[-5,-38],[-43,-24],[-10,-28],[5,-22],[11,-6],[13,-2],[10,-10],[3,-14],[-4,-6],[-5,-2],[-3,-5],[0,-8],[7,-37],[4,-9],[4,-8],[2,-8],[-2,-23],[1,-22],[0,-11],[-3,-20],[1,-9],[12,-57],[4,-12],[1,-18],[-17,-29],[0,-20],[2,-2],[1,0]],[[30440,30051],[1,0],[4,1]],[[30445,30052],[2,-4],[0,-5],[-2,-3],[-2,-3],[-2,-3],[-2,-11],[0,-6],[8,-34],[1,-9],[-2,-7],[-5,-9],[-1,-5],[-4,-18],[-2,-7],[-1,-4],[-5,-9],[-5,-6],[-6,0]],[[30417,29909],[-13,11],[-7,2]],[[30397,29922],[-1,0],[-4,-2],[-2,-4],[-2,-11],[-1,-3],[0,-7],[-1,-3],[-1,-2],[-3,-3],[-2,-1],[-10,-22],[-4,-5],[-5,-2],[-3,-2],[-2,-3],[-1,-5],[0,-5],[1,-4],[0,-5],[-5,-14],[-1,-5],[1,-7],[5,-12],[1,-6],[0,-13],[-3,-7],[-23,-10]],[[30331,29759],[-2,2],[-2,3],[-2,2],[-11,9],[-6,2],[-1,0]],[[30307,29777],[-1,0],[-4,-2],[-3,-8],[-2,-21],[-3,-9],[-5,-5],[-4,-2]],[[30285,29730],[-5,1],[-5,3],[-1,0]],[[30274,29734],[-1,0],[-9,-3],[-5,-20],[-2,-26],[0,-21],[4,-37],[-1,-9],[-4,-5]],[[30256,29613],[-4,4],[-5,6],[-6,1],[0,-1]],[[30241,29623],[-1,1],[-4,-7],[-1,-8],[0,-21],[-1,-11],[-7,-30],[-2,-4],[-2,-5],[-1,-4],[-1,-6],[2,-5],[2,-3],[3,-1],[2,-4],[2,-6],[0,-2],[-1,-2],[0,-5],[0,-4],[-2,-4],[0,-4],[8,-9],[1,-8],[-2,-8],[-5,-5]],[[30231,29458],[-4,0],[-5,2],[-1,0]],[[30221,29460],[-1,0],[-2,0],[6,-9],[9,-8],[2,-6],[2,-27],[4,-9],[10,-14],[-10,-10],[-4,-7],[-2,-12],[0,-12],[1,-10],[-1,-11],[-3,-12],[-11,-22],[-2,-9],[0,-13],[3,-16],[7,-26],[9,-19],[4,-10],[1,-13],[-1,-11],[-4,-21],[-1,-11],[0,-6],[4,-10],[-1,-7],[-1,-3],[-7,-7],[-4,-6],[-3,-7],[-2,-7],[0,-12],[2,-25],[14,-74],[11,-32],[2,-24],[7,-21],[3,-12],[1,-12],[3,-9],[7,-16],[1,-3],[0,-3],[0,-3],[-1,-3],[-4,-10],[1,-10],[3,-22],[0,-1],[1,-2],[-1,-1],[-2,-19],[-1,-17],[1,-16],[12,-89],[7,-20],[9,-13],[10,-11],[9,-14],[4,-20],[-1,-11],[-3,-9],[-7,-15],[-3,-9],[0,-3],[0,-6],[0,-5],[2,-3],[1,-4],[0,-6],[-2,-1],[-8,-7],[-2,-3],[-3,-13],[-5,-7],[-5,-1]],[[30286,28472],[-11,2],[-2,0]],[[30273,28474],[-10,0],[-9,-6],[-16,-20],[-4,-3],[-21,-6],[-3,-1],[-1,-4],[-4,-8],[-7,-10],[-25,-21],[-8,-12],[-5,-14],[-4,-35],[0,-15],[5,-42],[3,-75],[-2,-46],[-3,-13],[-5,-8],[-6,-6],[-4,-9],[-1,-10],[5,-18],[-3,-8],[-3,-7],[-5,-15],[-4,-7],[-8,-18],[13,-18],[-2,-20],[-4,-8],[-4,0]],[[30128,27991],[-5,2],[-1,-1]],[[30122,27992],[0,1],[-6,-1],[-6,-3]],[[30110,27989],[-4,1],[-4,6],[-3,4],[-10,17],[-3,0]],[[30086,28017],[-2,0],[-4,-8],[-2,-10],[-2,-12],[1,-12],[6,-16],[-1,-9],[-3,-11],[-1,-9],[1,-12],[5,-24],[1,-12],[1,-12],[1,-8],[3,-6],[10,-14],[3,-6],[2,-8],[-3,-12],[-10,-36],[-1,-3],[-2,-2],[-2,-3],[-1,-5],[1,-6],[2,-11],[1,-6],[-4,-21]],[[30086,27723],[-9,2],[-12,10],[-2,0]],[[30063,27735],[-9,-2],[-4,-7],[0,-4],[2,-5],[1,-4],[-1,-5],[-1,-5],[-2,-17],[0,-5],[1,-6],[0,-2],[-2,-8],[-1,-4],[2,-10],[4,-8],[9,-14],[6,-13],[2,-3],[3,-1]],[[30073,27612],[2,0],[1,1],[0,3],[2,2],[3,3]],[[30081,27621],[1,-1],[3,-3],[2,-4],[1,-4],[1,-6],[0,-6],[-1,-9],[-12,-40],[-3,-4]],[[30073,27544],[-2,0],[-11,5],[-1,0]],[[30059,27549],[-1,0],[-3,-2],[-2,-6],[-11,-50],[-5,-15],[0,-4],[0,-5],[3,-6],[1,-5],[-2,-21],[-6,-17],[-21,-35],[-1,-6],[9,-59],[3,-13],[11,-25],[3,-10],[2,-14],[0,-11],[-4,-22],[0,-7],[0,-5],[4,-21],[0,-12],[-3,-20],[-1,-20],[-1,-9],[-3,-3],[-2,-4],[0,-11],[4,-19],[0,-8],[-1,-12],[-7,-37],[0,-17],[3,-21],[2,-10],[2,-8],[0,-8],[-1,-10],[-2,-17],[0,-7],[2,-9],[4,-9],[3,-6],[1,-6],[-3,-10],[-4,-6],[-9,-8],[-4,-7],[0,-17],[16,-35],[2,-18],[1,-21],[5,-15],[7,-13],[5,-17],[6,-40],[0,-9],[-2,-9],[0,-8],[3,-7],[2,-5],[5,-9],[2,-4],[0,-29],[-3,-12],[-7,-8],[-8,-6],[-19,-5],[-4,-3],[-2,-4],[-2,-6],[-3,-5],[-3,-2]],[[30020,26569],[-6,4],[-4,13],[-4,11],[-9,0]],[[29997,26597],[-2,0],[-8,-11],[-3,-14],[-2,-15],[-5,-14],[-7,-10],[-6,-13],[-3,-13],[3,-15],[15,-20],[2,-11],[-4,-30],[0,-6],[8,-20],[2,-6],[0,-5],[-15,-11],[-8,-11],[-6,-15],[-1,-20],[1,-4],[3,-8],[1,-5],[-1,-5],[-2,-13],[0,-8],[4,-19],[2,-8],[2,-81],[-2,-19],[-6,-36],[-2,-19],[5,-25],[10,-20],[11,-15],[12,-8],[42,-7],[25,-16],[6,-6],[2,-10],[-1,-5],[-3,-9],[0,-5],[0,-6],[1,-9],[1,-4],[0,-10],[-1,-10],[-2,-6]],[[30065,25941],[-11,3],[-1,0]],[[30053,25944],[-1,0],[-5,-2],[-11,-8],[-7,0],[-4,-2],[-1,-4],[-1,-17],[0,-4],[-2,-4],[-3,-2],[-2,-3],[-1,-5],[0,-3],[1,-16],[-2,-4],[-2,-3],[-1,-3],[2,-5],[3,-2],[1,0]],[[30017,25857],[3,1],[3,2],[2,1]],[[30025,25861],[5,-2],[5,-5],[3,-8],[-1,-12],[0,-1],[-5,-11],[-1,-3],[2,-8],[7,-2],[1,0],[6,1],[7,-1],[3,-3],[1,-4],[2,-3],[1,-3],[2,-3],[12,-13],[3,-4],[1,-6],[2,-32],[-2,-7],[-5,-8],[-5,-4],[-11,-7],[-5,-4],[-3,-8],[-2,-10],[1,-9],[6,-4],[0,1]],[[30055,25678],[1,-1],[6,3],[3,3]],[[30065,25683],[1,-1],[1,-12],[-1,-5],[-1,-4],[-1,-4],[0,-6],[2,-4],[5,-4],[3,-2],[3,-7],[16,-38],[0,-7],[-3,-11],[-26,-58],[-9,-12],[-11,-5],[-7,-8],[5,-20],[8,-24],[2,-10],[0,-9],[-6,-17],[-1,-10],[2,-9],[4,-8],[2,-8],[-2,-10],[-4,-4],[-6,-4],[-5,-6],[1,-10],[11,-15],[1,0]],[[30049,25331],[12,1],[12,5]],[[30073,25337],[10,0],[14,-5],[2,0],[55,0],[42,-12],[15,0],[7,-2],[6,-6],[4,-8],[2,-8],[10,-30],[2,-5],[0,-11],[-3,-12],[-4,-5],[-5,-2],[-6,-1],[-3,-3],[-4,-9],[-6,-18],[-2,-10],[1,-9],[2,-20],[-2,-21],[-7,-16],[-10,-11],[-9,-3]],[[30184,25110],[-12,5],[-21,22],[-12,6],[0,-1]],[[30139,25142],[-1,1],[-12,-5],[-25,-16]],[[30101,25122],[-10,1],[-19,11],[-6,2],[-1,0]],[[30065,25136],[-1,0],[-7,-1],[-4,-6],[-3,-6],[-5,-6],[-6,-1]],[[30039,25116],[-36,10],[-6,4],[-11,6]],[[29986,25136],[-1,0],[-8,-3],[-3,-13],[4,-30],[-1,-9],[-1,-18],[2,-9],[5,-2],[2,0]],[[29985,25052],[11,1]],[[29996,25053],[11,-6],[11,-10],[11,-8],[1,0]],[[30030,25029],[11,2],[6,5],[7,3],[5,1]],[[30059,25040],[6,-2],[4,-5],[7,-13],[5,-6],[11,-3],[1,1]],[[30093,25012],[1,-1],[9,3]],[[30103,25014],[9,-2],[10,-15],[11,-34],[5,-25],[3,-7],[10,-20],[15,-15],[9,-12],[7,-14],[6,-19],[1,-18],[-6,-13],[-4,-5],[-7,-15],[-4,-6],[-5,-5],[-28,-16],[-1,-6],[3,-11],[5,-16],[1,-8],[-3,-9],[-10,-12],[-10,-2]],[[30120,24709],[-20,2],[-1,0]],[[30099,24711],[-1,0],[-9,-2],[-11,-5],[-10,-9],[-5,-13],[1,-2],[5,-7],[1,-3],[-1,-4],[-2,-3],[-2,-3],[-1,-3],[-5,-14],[-1,-6],[-1,-9],[1,-4],[1,-4],[0,-3],[-1,-5],[-4,-11],[-1,-3],[1,-9],[3,-6],[7,-10],[4,-10],[-1,-9],[-2,-8],[-1,-8],[1,-9],[5,-6],[11,-6],[10,-8],[7,-12],[5,-16],[3,-20],[-10,-16],[-21,-33],[-3,-7],[-6,-17],[-4,-6],[-6,-6],[-7,-2],[-20,-4],[-4,-2],[-3,-3],[0,-5],[1,-3],[3,-1],[2,-2],[14,-19],[17,-16],[5,-11],[1,-15],[-1,-26],[0,-22],[3,-19],[19,-70],[1,-11],[-2,-8],[-2,-9],[0,-10],[4,-40],[-2,-17],[-9,-14],[-16,-13],[-4,-7],[-8,-16],[-4,-5],[-6,-3],[-14,0],[-8,-3],[-4,-8],[0,-5],[1,-5],[2,-4],[1,-4],[0,-4],[-2,-4],[-2,-4],[-1,-4],[-4,-33],[-1,-8],[3,-7],[10,-12],[3,-9],[-6,-8],[-18,-16],[-1,-11],[6,-10],[17,-15],[8,-8],[5,-12],[3,-14],[0,-16],[-5,-14],[-8,-6]],[[30023,23759],[-8,3],[-18,17],[-6,0]],[[29991,23779],[-1,0],[-3,-4],[-1,-6],[0,-10],[2,-9],[2,-6],[0,-5],[-2,-10],[-6,-14],[-24,-38],[-7,-15],[-5,-5],[-5,-2]],[[29941,23655],[-14,4],[-1,0]],[[29926,23659],[-1,0],[-7,-1],[-11,-6],[-5,-6],[-4,-8],[-3,-13],[4,-5],[5,-2],[5,-6],[0,-8],[-5,-30],[0,-10],[-1,-10],[-2,-9],[-4,-9],[-26,-64],[-5,-18],[-7,-39],[-6,-17],[-6,-18],[3,-17],[7,-15],[9,-11],[6,-5],[5,-1],[5,-3],[4,-8],[1,-5],[1,-5],[0,-5],[2,-4],[3,-2],[10,-5],[3,-11],[6,-67],[0,-11],[-4,-21],[0,-10],[2,-7],[4,-9],[2,-10],[-2,-8],[-3,-1]],[[29911,23139],[-7,3],[-4,1],[0,-1]],[[29900,23142],[-1,1],[-4,-2],[-2,-3],[-3,-7],[-8,-15],[-4,-5],[-18,-9],[-11,-8],[-11,-12],[-11,-32],[3,-29],[6,-30],[2,-59],[-2,-21],[-2,-17],[-8,-16],[-14,-24],[-20,-29],[-11,-11],[-12,-6],[-27,-4],[-13,-7],[-11,-14],[-2,-4],[-17,-34],[-4,-12],[-1,-9],[0,-7],[-1,-7],[-2,-7],[-18,-31],[-4,-13],[1,-14],[5,-11],[18,-5],[0,-3],[-9,-3],[-3,-4],[-1,-10],[-87,-2],[-3,-6],[0,-14],[2,-18],[-1,-7],[-5,-7],[-11,-9],[-5,-6],[-3,-9],[0,-11],[2,-8],[1,-7],[-4,-10],[-9,-12],[0,-6],[4,-10],[3,-7],[8,-12],[4,-9],[0,-11],[-2,-8],[-4,-9],[-1,-9],[2,-9],[4,-8],[9,-12],[7,-18],[1,-15],[-5,-13],[-15,-20],[-1,-8],[0,-9],[-1,-9],[-3,-8],[-4,-7],[-2,-6],[5,-9],[15,-17],[4,-7],[2,-10],[0,-8],[-14,-33],[-3,-17],[3,-15],[35,-43],[11,-8],[5,-6],[7,-14],[6,-17],[4,-19],[3,-17],[1,-12],[-1,-22],[0,-11],[4,-30],[0,-32],[1,-9],[3,-9],[12,-21],[3,-8],[2,-21],[0,-21],[2,-18],[11,-12],[12,0]],[[29694,21794],[1,0],[13,7],[11,12],[20,28],[10,11],[35,26],[5,1]],[[29789,21879],[5,-4],[15,-19],[5,-5],[2,0]],[[29816,21851],[12,1],[19,28],[12,8]],[[29859,21888],[33,-11],[10,-9],[7,-2],[5,-4],[0,-9],[-11,-28],[-1,-8],[0,-8],[2,-10],[8,-15],[7,-12],[6,-15],[2,-21],[-3,-48],[-3,-26],[-4,-12],[-8,-2],[-5,-2],[-3,-5],[-5,-12],[-8,-14],[-2,-7],[0,-12],[6,-19],[9,-13],[21,-18],[5,-8],[-1,-8],[-3,-8],[-12,-21],[-2,-8],[-1,-12],[0,-32],[-1,-10],[-2,-4],[-2,-4],[-2,-4],[0,-5],[0,-5],[0,-6],[0,-5],[0,-4],[-20,-26],[-8,-17],[6,-13],[8,-2],[1,0],[6,0],[7,-2],[5,-9],[3,-9],[2,-31],[4,-11],[5,-5],[26,-11],[13,-10],[19,-22],[17,-27],[8,-10],[7,-13],[3,-15],[-4,-18],[-1,-24],[13,-11],[22,0],[63,-1],[63,-1],[62,-1],[63,-1],[62,-1],[63,-2],[63,-1],[62,-1],[23,0],[33,-18],[47,-25],[50,-27],[76,-3],[56,-23],[42,-30],[10,-5],[56,-12],[5,-2],[8,-7],[5,-2],[22,-6],[6,-3],[2,-6],[0,-29],[-50,-153],[-1,-149],[0,-149],[-1,-149],[0,-122],[0,-129],[-1,-46],[0,-149],[-1,-149],[0,-149],[0,-9],[0,-30],[-3,-19],[-3,-15],[1,1]],[[30926,19493],[0,-1],[23,5],[90,16]],[[31039,19513],[55,-1],[91,-12],[89,-2],[57,-9],[97,-42],[92,-63],[26,-7],[19,-2],[75,-70],[2,19],[2,11],[14,18],[36,10],[60,-9],[29,1],[86,33],[87,33],[13,-2],[47,-25],[48,-2],[28,9],[37,26],[39,1],[87,16],[27,12],[29,20],[25,26],[17,28],[11,30],[3,27],[-2,31],[-9,31],[-16,26],[-19,19],[-20,10],[-22,5],[-74,2],[-75,2],[-79,-5],[-40,-19],[-60,45],[-34,14],[-74,6],[-88,-7],[-57,21],[-114,79],[-56,79],[-67,47],[-125,111],[-17,23],[-13,38],[-14,26],[-44,52],[-1,1]],[[31247,20224],[-47,56],[-14,31],[-22,91],[-22,58],[-6,86],[-19,77],[-17,41],[-45,73],[-23,48],[3,17],[33,40],[19,40],[7,44],[-5,48],[-26,72],[-80,144],[-34,95],[-12,48],[-11,90],[-37,150],[-12,107],[10,158],[17,59],[24,48],[31,32],[64,33],[124,86],[63,72],[35,57],[5,16]],[[31250,22241],[18,91],[16,164],[21,114],[-1,77],[13,38],[27,42],[35,28],[36,75],[15,21],[46,33],[60,72],[39,18],[51,37],[18,25],[17,44],[11,17],[82,64],[13,21],[15,47],[21,42],[6,22],[0,43],[-18,66],[-1,20],[26,118],[7,124],[-13,90],[-18,58],[-46,70],[-43,36],[-32,7],[-77,-2],[-97,22],[-88,142],[-66,70],[-15,26],[-15,51],[-11,76],[1,35],[9,36],[14,32],[35,50],[10,35],[8,63],[25,42],[41,104],[14,25],[15,4],[42,-5],[30,11],[23,21],[48,69],[15,14],[49,-12],[86,-9],[40,20],[30,34],[14,31],[24,98],[-1,35],[-12,51],[10,15],[29,23],[19,27],[18,34],[8,32],[14,105],[-7,76],[12,101],[-4,73],[-24,65],[1,26],[8,27],[52,88],[19,64],[13,22],[27,20],[81,43],[83,86],[94,38],[42,26],[28,40],[21,66],[7,55],[2,63],[-8,174],[-10,45],[-29,83],[-14,32],[-16,23],[-35,24],[-40,1],[-42,-20],[-60,-46],[-65,-20],[-56,11],[-21,11],[-12,14],[-2,12],[17,81],[-4,77],[2,87],[-6,46],[-21,64],[-9,45],[-4,54],[5,41],[8,12],[26,-4],[82,-54],[82,-55],[53,-51],[56,-21],[42,-1],[74,6],[74,5],[47,20],[74,48],[105,88],[31,35],[20,41],[35,112],[9,51],[-4,46],[-12,33],[-39,65],[-9,36],[17,71],[4,73],[38,44],[18,49],[10,130],[15,107],[32,53],[18,55],[10,17],[15,12],[42,15],[67,-10],[36,13],[50,5],[129,33],[100,34],[54,6],[72,36],[74,24],[74,24],[80,51],[61,26],[110,67],[97,85],[90,100],[21,38],[13,40],[6,37],[4,76],[6,27],[99,187],[62,177],[55,127],[13,83],[-1,141],[-8,86],[-2,70],[-11,48],[-15,39],[-22,33],[-26,17],[-61,-14],[-25,42],[-28,81],[-1,26],[55,138],[14,53],[1,63],[-15,70],[-24,65],[-29,62],[-109,157],[-17,31],[-3,16],[54,8],[32,-12],[28,-26],[49,-69],[90,-56],[62,-74],[33,-18],[34,-9],[43,8],[77,60],[36,12],[46,-18],[53,-47],[34,-10],[50,-26],[27,-3],[28,17],[78,64],[77,64],[54,31],[15,16],[49,100],[54,57],[18,28],[12,63],[7,34],[49,100],[16,102],[9,28],[47,64],[95,153],[39,80],[0,-274],[0,-274],[1,-273],[0,-274],[0,-274],[0,-274],[0,-274],[0,-274],[1,-273],[0,-274],[0,-274],[0,-274],[0,-274],[0,-274],[1,-274],[0,-273],[0,-274],[0,-274],[0,-274],[0,-274],[1,-274],[0,-273],[0,-274],[0,-274],[0,-274],[0,-274],[1,-274],[0,-274],[0,-273],[0,-274],[0,-274],[0,-274],[1,-274],[0,-274],[0,-273],[0,-274],[0,-274],[0,-274],[0,-274],[1,-274],[0,-273],[0,-274],[0,-274],[0,-274],[0,-274],[1,-274],[0,-274],[0,-273],[0,-274],[0,-197],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-214],[0,-213],[0,-214],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-276],[0,-276],[0,-275],[0,-276],[0,-276],[0,-276]],[[35407,7212],[-132,61],[-133,62],[-133,62],[-133,62],[-133,61],[-132,62],[-133,62],[-133,61],[-133,62],[-132,62],[-133,61],[-133,62],[-133,62],[-132,61],[-133,62],[-133,62],[-133,61],[-131,61],[-61,-4],[35,27],[38,40],[23,46],[4,23],[-1,20],[3,8],[7,3],[47,7],[39,10],[37,14],[31,17],[40,33],[38,56],[33,30],[16,18],[17,28],[7,24],[-1,28],[-8,26],[-14,21],[-23,21],[-29,20],[-38,16],[-6,8],[4,14],[25,35],[16,48],[30,53],[8,21],[-1,33],[-18,37],[1,24],[-5,25],[7,3],[81,20],[34,13],[48,27],[31,29],[17,26],[10,24],[1,31],[-14,38],[24,43],[8,42],[-20,82],[-17,30],[-23,21],[-33,21],[-37,16],[-44,12],[-21,45],[-33,38],[7,17],[10,15],[48,15],[28,12],[28,18],[20,21],[12,23],[8,30],[0,27],[-7,25],[-16,26],[-25,25],[-49,30],[-59,21],[-16,23],[-30,31],[-3,12],[15,29],[3,19],[-12,79],[-9,18],[-12,16],[-58,42],[28,32],[13,27],[4,23],[-8,32],[2,15],[6,5],[43,18],[28,19],[21,24],[14,29],[5,37],[-6,38],[-14,34],[-29,44],[38,39],[21,35],[8,45],[-7,45],[-17,34],[-27,30],[-37,25],[-40,16],[-2,0],[-49,11],[-57,4],[-78,-5],[-45,-8],[-51,19],[11,37],[87,24],[30,11],[36,20],[27,22],[16,23],[8,27],[2,33],[-5,34],[-21,39],[-38,37],[-36,22],[-81,34],[-18,12],[-1,7],[19,33],[3,26],[-6,29],[-22,62],[-25,39],[-81,85],[-44,36],[-54,29],[-61,21],[-85,16],[-19,9],[-11,11],[-6,16],[-2,23],[8,44],[17,32],[48,59],[14,29],[7,28],[1,27],[-6,26],[-11,23],[-18,21],[-36,26],[-45,15],[-55,6],[-120,3],[-59,-8],[-85,-23],[-81,-17],[-73,-23],[-7,0],[29,26],[20,23],[11,21],[6,27],[-2,44],[-10,26],[-25,45],[-3,18],[2,19],[16,29],[53,61],[12,24],[6,25],[-1,24],[-6,22],[-41,76],[-7,20],[5,33],[-1,35],[11,31],[14,9],[22,9],[116,31],[53,25],[21,16],[18,19],[30,58],[14,13],[23,-1],[60,-24],[38,-8],[44,0],[45,9],[30,11],[27,14],[70,59],[58,34],[81,33],[89,47],[67,7],[35,14],[28,18],[22,22],[24,37],[20,46],[29,27],[15,22],[45,94],[10,37],[0,23],[-6,23],[-11,23],[-15,18],[-18,16],[-25,14],[-64,22],[-86,15],[-100,0],[-14,7],[0,17],[15,45],[1,26],[-4,20],[-25,50],[33,37],[28,62],[60,11],[23,11],[24,16],[28,30],[27,43],[56,-12],[-11,-28],[-1,-21],[6,-28],[12,-27],[22,-32],[24,-24],[34,-26],[39,-20],[32,-12],[33,-7],[33,-2],[31,4],[35,10],[31,17],[26,21],[19,25],[10,23],[3,29],[-4,26],[-13,25],[-33,43],[-35,34],[-11,8],[-13,122],[33,20],[66,-19],[29,-2],[30,4],[33,9],[29,14],[30,20],[43,37],[13,6],[29,-3],[61,-15],[34,-35],[25,-19],[33,-17],[36,-10],[35,-3],[40,5],[38,12],[37,18],[35,22],[29,25],[32,37],[20,43],[42,29],[26,24],[24,36],[12,36],[1,29],[-6,26],[-12,23],[-20,22],[-27,18],[-20,10]],[[34330,14424],[-12,5],[-29,7],[-38,3],[-10,6],[0,13],[26,38],[8,39],[56,17]],[[34331,14552],[7,2],[42,25],[42,-15],[27,-4],[38,3],[36,11],[21,13],[30,28],[41,25],[30,42],[63,7],[31,11],[27,16],[34,31],[27,44],[12,50],[-4,50],[-11,27],[-13,19],[-39,35],[-35,19],[-67,17],[-64,30],[-24,5],[-35,3],[-37,36],[-46,24],[-31,7],[-51,1],[-44,13],[-31,2],[-38,-7],[-35,-16],[-33,-25],[-47,-47],[-37,-24],[-32,-10],[-68,-12],[-65,-31],[-67,-17],[-51,-30],[-38,-10],[-25,-12],[-22,-15],[-27,-29],[-115,-32],[-72,-30],[-22,-4],[-19,1],[-78,30],[-28,5],[-27,-1],[-29,-6],[-26,-13],[-70,-57],[-19,-11],[-89,19],[-24,2],[-44,-9],[-53,-29],[-29,-9],[-37,0],[-33,12],[-8,10],[-2,13],[21,77],[1,26],[-5,23],[-16,31],[-21,30],[-73,63],[-5,11],[4,9],[21,0],[136,-40],[55,-27],[68,-44],[34,-14],[52,-7],[50,9],[39,22],[32,35],[21,41],[14,54],[132,84],[64,47],[30,29],[58,46],[23,12],[67,22],[124,62],[38,9],[34,13],[31,18],[47,40],[18,7],[42,6],[24,8],[29,19],[20,23],[17,41],[0,42],[-29,89],[-20,28],[-28,22],[-26,11],[-24,6],[-56,0],[-57,6],[-29,-3],[-43,-15],[-46,2],[-37,-7],[-111,-60],[-16,-18],[-29,-43],[-39,-34],[-20,-29],[-51,-35],[-53,-7],[-34,-10],[-29,-15],[-34,-29],[-66,-14],[-45,-29],[-40,24],[-27,7],[-38,2],[-35,-9],[-36,-21],[-31,-35],[-45,-14],[-34,-21],[-20,-22],[-21,-34],[-52,-40],[-31,-40],[-20,-2],[-76,13],[-43,-3],[-27,-8],[-40,-18],[-47,-34],[-24,-33],[-55,-101],[-9,-37],[5,-35],[23,-40],[55,-47],[23,-26],[29,-56],[20,-24],[32,-22],[53,-15],[15,-10],[5,-19],[-9,-37],[-13,-29],[-19,-22],[-23,-12],[-56,-15],[-28,-15],[-35,-30],[-37,-44],[-20,-15],[-30,-10],[-61,-5],[-62,-14],[-38,-12],[-26,-13],[-25,-23],[-43,-62],[-47,-35],[-31,-41],[-42,-31],[-17,-19],[-44,-89],[-4,-31],[6,-32],[15,-30],[23,-25],[18,-12],[57,-25],[13,-12],[-50,-56],[-16,-32],[-15,-82],[1,-22],[7,-36],[-9,-33],[-11,-9],[-37,-17],[-16,-12],[-17,-18],[-19,-28],[-35,-35],[-10,-5],[-5,4],[-1,5],[30,43],[6,22],[2,25],[-5,25],[-9,20],[-13,19],[-18,16],[-25,16],[-26,9],[-32,5],[-31,5],[-35,-1],[-34,-5],[-27,-8],[-24,-12],[-36,-31],[-45,-25],[-29,-34],[-72,-153],[-8,-34],[3,-32],[-53,-14],[-45,-23],[-34,-27],[-25,-34],[-42,-20],[-21,-16]],[[31426,50673],[64,-114],[63,-114],[17,-24],[17,-7],[16,9],[5,0],[6,-4],[4,-7],[5,-5],[6,-1],[7,6],[8,19],[6,6],[13,1],[5,3],[6,7],[6,11],[10,26],[6,12],[6,7],[24,23],[11,14],[7,4],[5,1],[21,-1],[5,2],[4,-1],[3,-3],[4,-5],[3,-6],[6,-17],[3,-11],[2,-12],[1,-13],[-5,-26],[-8,-21],[-7,-22],[1,-26],[3,-12],[3,-8],[5,-4],[7,1],[6,4],[7,8],[6,10],[5,17],[5,12],[1,7],[0,16],[0,5],[3,13],[3,11],[17,41],[5,5],[7,0],[12,-3],[5,0],[6,6],[6,17],[3,23],[3,47],[6,26],[10,5],[12,-2],[10,4],[0,2],[1,8],[0,3],[1,1],[3,2],[1,2],[9,15],[3,4],[7,3],[5,1],[5,3],[5,9],[6,13],[5,7],[5,-1],[14,-13],[5,-2],[6,3],[35,46],[4,11],[6,25],[5,13],[6,9],[15,15],[12,18],[6,7],[7,2],[6,-8],[0,-11],[-6,-23],[-2,-10],[-1,-14],[2,-13],[5,-6],[5,4],[3,10],[6,23],[5,12],[19,28],[16,30],[13,15],[6,12],[4,13],[3,14],[2,10],[1,10],[-1,34],[4,35],[2,48],[5,18],[11,17],[11,7],[10,2],[33,-1],[5,2],[6,6],[40,64],[16,14],[3,1],[8,-2],[3,0],[19,7],[8,7],[3,11],[0,10],[0,9],[8,35],[1,8],[-1,38],[1,8],[2,20],[-1,7],[-5,4],[-35,3],[-18,5],[-36,2],[-17,-5],[-18,0],[-34,18],[-16,4],[-6,-3],[-4,4],[-3,10],[0,12],[2,14],[11,38],[1,11],[1,31],[2,15],[0,5],[-1,6],[-3,10],[-5,30],[-22,83],[-8,22],[-10,36],[-9,21],[-5,19],[-1,23],[3,48],[-1,23],[-7,70],[1,13],[2,10],[8,20],[2,10],[1,10],[0,21],[-2,14],[-6,11],[-12,20],[-16,40],[-7,8],[-13,10],[-11,13],[-27,41],[-12,34],[-6,12],[-13,21],[-5,13],[-13,48],[-3,22],[-2,10],[-4,9],[-6,7],[-6,4],[-5,6],[-3,13],[-1,11],[1,12],[2,11],[4,7],[13,1],[13,-13],[10,-20],[7,-20],[4,-25],[4,-11],[5,-4],[63,18],[34,-5],[19,-11],[7,-7],[6,-12],[5,-17],[3,-19],[5,-39],[4,-23],[7,-17],[12,-1],[11,12],[11,15],[12,12],[12,0],[11,-9],[6,-3],[7,1],[15,8],[5,1],[14,-6],[19,-34],[12,-11],[11,7],[4,18],[2,22],[7,16],[9,2],[11,-7],[18,-21],[10,-19],[16,-45],[17,-24],[30,-70],[4,-12],[4,-9],[6,-9],[6,-7],[6,-4],[6,-1],[5,0],[5,2],[6,7],[5,10],[3,2],[4,-1],[3,0],[3,4],[4,10],[6,21],[3,22],[0,23],[-3,23],[-5,22],[0,14],[-2,4],[-1,4],[-2,6],[-1,15],[2,11],[3,11],[2,14],[-1,13],[-1,10],[2,8],[6,8],[4,2],[16,3],[23,-7],[8,4],[3,22],[0,11],[1,9],[2,6],[6,5],[9,3],[2,3],[2,4],[1,9],[1,4],[10,4],[12,-5],[53,-44],[11,-2],[12,8],[21,31],[12,3],[6,-3],[5,-5],[6,-3],[6,0],[6,2],[5,4],[6,5],[4,6],[15,31],[6,8],[5,3],[6,1],[10,-1],[9,-5],[2,-1],[4,1],[5,4],[3,2],[4,-1],[2,-2],[3,0],[4,3],[3,5],[2,6],[2,6],[1,7],[2,43],[4,15],[12,10],[5,1],[16,-2],[6,0],[8,3],[7,5],[4,9],[-1,11],[-7,22],[2,7],[5,2],[16,-5],[5,-3],[10,-9],[4,-2],[5,1],[16,9],[23,6],[10,9],[8,21],[2,12],[2,24],[8,34],[2,5],[2,2],[6,0],[2,0],[27,24],[13,16],[10,19],[19,46],[6,27],[-2,27],[-18,96],[-6,10],[-7,5],[-9,2],[-21,47],[-21,46],[-21,46],[-21,47],[-21,46],[-21,47],[-21,46],[-21,46],[-9,20],[-5,23],[3,6],[9,10],[4,6],[13,42],[4,17],[2,8],[4,4],[9,4],[5,3],[3,4],[3,7],[3,14],[3,6],[4,2],[4,-1],[3,1],[1,9],[0,8],[2,21],[-1,5],[-1,2],[0,2],[-1,3],[-2,4],[-4,6],[-2,5],[-2,16],[0,6],[1,27],[2,7],[2,7],[1,5],[0,4],[-1,5],[0,4],[-3,9],[-3,16],[-2,9],[-4,8],[-4,4],[-3,5],[-1,12],[2,19],[4,20],[6,20],[9,20],[2,6],[5,3],[7,-2],[5,-3],[2,10],[6,-1],[6,-4],[5,8],[13,-3],[6,1],[1,3],[8,15],[0,3],[0,4],[0,5],[-3,8],[-1,6],[2,3],[4,-1],[6,-3],[2,-3],[2,-4],[2,-3],[3,-2],[3,0],[6,3],[4,1],[5,-3],[10,-13],[5,-3],[5,4],[5,9],[8,23],[4,7],[6,5],[20,9],[35,44],[8,4],[4,-6],[3,28],[2,9],[4,7],[5,6],[4,7],[3,7],[2,10],[1,9],[0,10],[-2,9],[-4,6],[-10,11],[-3,7],[-3,4],[-4,1],[-4,-2],[-4,1],[-4,3],[-2,3],[-4,3],[-7,0],[-6,-4],[-4,-9],[-7,-22],[-3,0],[-20,31],[-3,6],[-4,16],[0,17],[4,15],[6,12],[2,4],[0,4],[0,4],[0,5],[-3,7],[-3,16],[-2,7],[-2,3],[-2,2],[-2,3],[-2,5],[1,5],[0,3],[0,4],[-1,4],[-4,5],[-4,2],[-4,2],[-6,24],[-2,8],[0,8],[4,15],[13,8],[4,10],[4,15],[3,7],[1,3],[4,-1],[3,3],[1,8],[-1,8],[5,15],[0,6],[-1,10],[0,5],[1,5],[7,15],[5,21],[4,7],[6,4],[24,0],[12,2],[7,10],[2,13],[6,11],[14,18],[5,10],[3,8],[3,8],[13,10],[5,8],[4,9],[6,9],[6,4],[11,-2],[6,0],[5,6],[3,9],[2,23],[3,8],[1,6],[-1,7],[0,8],[2,9],[7,11],[3,6],[5,5],[14,6],[5,1],[6,3],[5,10],[4,12],[0,12],[-11,36],[-29,64],[-17,50],[-22,133],[-3,10],[-19,9],[-39,5],[-32,-9],[-37,-24],[-27,21],[-1,31],[12,67],[17,141],[1,57],[-6,42],[-33,88],[-35,63],[-26,31],[-53,24],[-10,16],[7,17],[4,5],[-32,5],[-77,53],[-18,4],[-18,4],[-62,0],[-33,12],[-31,22],[31,150],[31,151],[16,0],[0,70],[20,109],[0,55],[0,19],[0,18],[0,18],[0,18],[0,19],[-71,110],[-72,110],[-19,24],[-125,55],[-125,54],[-124,55],[-125,54],[-125,55],[-138,-5],[-139,-6],[-138,-5],[-77,23],[-78,23],[-27,6],[-130,28],[-129,28],[-25,2],[-69,-85],[-2,-12],[0,-13],[0,-70],[0,-56],[0,-36],[0,-67],[-85,0],[-85,0],[-23,15],[-41,28],[-34,9],[-35,67],[-61,71],[-61,71],[-61,71],[-112,57],[-6,-9],[-48,0],[-23,0],[-75,-26],[-76,-26]],[[30914,94544],[4,-11]],[[30918,94533],[12,-14],[19,-17],[38,-22],[55,-23],[27,-24],[24,-16],[24,-12],[27,-10],[58,-16],[66,-11],[40,-3],[40,-2],[96,1],[73,-14],[69,-9],[21,-26],[14,-35],[-1,-28],[5,-17],[26,-32],[-22,-22],[-17,-23],[-47,-21],[-79,-53],[58,-117],[93,-205],[93,-205],[92,-205],[93,-205],[92,-205],[93,-205],[93,-205],[92,-205],[46,-132],[55,12],[60,19],[66,-9],[55,-2],[51,3],[63,11],[21,1],[30,-4],[65,-14],[70,-8],[12,-5],[17,-19],[40,-29],[22,-12],[29,-12],[34,-10],[36,-7],[91,-7],[15,-25],[18,-19],[26,-19],[33,-17],[35,-12],[34,-8],[87,-11],[79,-36],[8,-8],[3,-12],[-21,-66],[1,-21],[9,-22],[15,-20],[23,-18],[33,-18],[44,-15],[19,-18],[10,-15],[1,-29],[6,-20],[24,-33],[31,-24],[43,-18],[52,-15],[97,-21],[17,-8],[4,-8],[-1,-24],[14,-32],[-7,-5],[-42,-16],[-34,-24],[-22,-27],[-9,-30],[3,-23],[13,-23],[17,-18],[40,-29],[17,-26],[2,-29],[-16,-41],[-4,-20],[2,-23],[8,-22],[19,-25],[29,-22],[32,-15],[48,-15],[11,-6],[5,-8],[6,-26],[10,-18],[38,-38],[29,-25],[46,-25],[60,-16],[2,-8],[-4,-20],[1,-14],[6,-19],[10,-17],[30,-26],[56,-33],[21,-37],[40,-32],[-29,-35],[-16,-36],[7,-97],[-44,-25],[-47,-22],[-18,-12],[-26,-30],[-12,-35],[7,-38],[30,-43],[23,-21],[27,-18],[28,-12],[45,-13],[14,-49],[-18,-105],[8,-28],[23,-29],[2,-9],[-6,-9],[-33,-28],[-21,-37],[-5,-27],[6,-35],[-21,-36],[-8,-28],[0,-22],[6,-20],[9,-17],[16,-17],[53,-38],[30,-57],[19,-26],[25,-24],[34,-24],[52,-27],[54,-16],[37,-5],[67,-3],[68,-12],[59,-5],[7,-6],[7,-34],[19,-31],[-5,-7],[-39,-16],[-48,-26],[-50,-34],[-29,-33],[-29,-62],[-43,-20],[-25,-17],[-23,-23],[-12,-23],[-6,-39],[8,-45],[19,-39],[29,-32],[5,-10],[-6,-48],[7,-72],[-28,-72],[0,-52],[-12,-26],[-5,-22],[1,-26],[9,-24],[30,-42],[46,-41],[53,-33],[59,-23],[41,-66],[21,-21],[26,-19],[31,-17],[43,-14],[27,-19],[23,-10],[130,-29],[39,0],[2,-143],[-24,-27],[-14,-27],[-29,-82],[-44,-56],[-12,-24],[-3,-24],[2,-37],[-17,-39],[-3,-28],[5,-29],[22,-44],[-9,-10],[-50,-35],[-18,-23],[-11,-25],[-5,-33],[8,-41],[-16,-33],[-4,-24],[6,-47],[-18,-36],[-12,-36],[-8,-42],[0,-49],[-19,-42],[-6,-29],[1,-29],[9,-28],[32,-45],[19,-32],[21,-22],[68,-47],[8,-9],[-16,-36],[-34,-42],[-11,-32],[-17,-95],[3,-28],[12,-52],[-4,-51],[5,-25],[12,-24],[35,-38],[19,-52],[41,-48],[11,-101],[36,-86],[40,-33],[38,-17],[61,-13],[8,-5],[14,-57],[0,-37],[9,-27],[23,-30],[46,-33],[9,-13],[0,-97],[19,-47],[1,-33],[14,-54],[-2,-93],[17,-65],[2,-6],[0,-7],[0,-71],[0,-161],[0,-160],[0,-250],[0,-250],[0,-250],[-1,-250],[0,-250],[0,-249],[0,-250],[0,-250],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-250],[0,-251],[0,-250],[0,-251],[0,-250],[0,-250],[0,-255],[0,-255],[0,-256],[0,-255],[0,-255],[0,-226],[0,-227],[0,-226],[0,-227],[0,-226]],[[34339,76297],[-32,16],[-47,-83],[-57,-48],[-64,-81],[55,-208],[17,-30],[42,-54],[79,-50],[0,-34],[70,0],[0,138],[20,8],[35,26],[12,26]],[[34469,75923],[-20,78]],[[43742,96125],[-43,12]],[[43699,96137],[-10,3],[-37,9],[-37,7],[-50,7],[2,16],[-6,13],[-13,13],[-22,14],[-47,24],[-35,15],[-41,13],[-48,12],[-11,17],[-24,19],[-36,16],[-49,15],[-71,15],[-103,16],[-74,9],[-74,10],[-127,16],[-128,16],[-128,16],[-32,6],[-53,16],[-54,12],[-75,13],[-62,8],[-90,6],[-111,4],[-28,2],[-102,10],[-102,10],[-103,10],[-101,8],[-58,3],[-58,1],[-54,-1],[-92,-2],[-74,4],[-49,2],[-91,9],[-86,4],[-88,2],[-89,-2],[-74,-4],[-96,-6],[-95,-7],[-38,-1],[-70,2],[-136,2],[-61,-1],[-56,-1],[-75,-5],[-74,-8],[-60,-9],[-67,-13],[-93,0],[-93,0],[-87,-2],[-89,-6],[-42,-4],[-2,15]],[[39570,96525],[0,213],[0,214],[0,214],[0,257],[0,258],[0,257],[0,258],[0,258],[0,257],[0,258],[0,257],[0,258],[0,257],[-39570,258]],[[0,99999],[43741,0],[0,-277]],[[43742,87040],[-11,0],[-41,-2],[-38,4],[-45,-3],[-41,-8],[-50,-16],[-30,-15],[-25,-19],[-19,-26],[-30,-70],[-63,-42],[-30,-33],[-35,-27],[-19,-21],[-19,-41],[-7,-57],[-40,-30],[-21,-20],[-15,-24],[-14,-38],[-34,-32],[-23,-35],[-33,-40],[-13,-27],[-3,-33],[6,-27],[14,-27],[21,-25],[26,-19],[24,-11],[29,-8]],[[43163,86268],[26,-1],[41,-2]],[[43230,86265],[42,-27],[-1,-73],[-20,-9],[-31,-20],[-21,-23],[-14,-29],[-5,-33],[3,-28],[8,-27],[36,-69],[37,-41],[50,-30],[50,-13],[57,1],[47,11],[53,28],[20,4],[21,-2],[63,-6],[16,-7],[12,-14],[16,-41],[36,-56],[19,-22],[3,-21],[-30,4],[-27,-2],[-24,-6],[-21,-10],[-19,-13],[-19,-22],[-8,-17],[-18,-34],[-9,-63],[8,-112],[18,-46],[21,-21],[13,-14],[41,-22],[46,-8],[27,4],[16,3]],[[43742,85339],[-2,-208],[-2,-207],[0,-248],[0,-247],[0,-248],[0,-247],[0,-248],[0,-248],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[-129,0],[-130,0],[-130,0],[-130,0],[-130,0],[-130,0],[-129,0],[-130,0],[-130,0],[-126,0],[-127,0],[-126,0],[-126,0],[-126,0],[-127,0],[-126,0],[-126,0],[-126,0],[-127,0],[-126,0],[0,-256],[0,-256],[0,-257],[0,-256],[0,-256],[0,-257],[0,-256],[0,-256],[130,0],[130,0],[130,0],[129,0],[130,0],[130,0],[130,0],[130,0],[130,0],[126,0],[126,0],[127,0],[126,0],[126,0],[126,0],[127,0],[126,0],[126,0],[126,0],[127,0],[0,-247],[0,-246],[0,-246],[0,-247],[0,-246],[0,-246],[0,-247],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[1,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[-139,0],[-138,0],[-138,0],[-138,0],[-139,0],[-138,0],[-138,0],[-138,0],[-139,0],[-138,0],[0,-277],[0,-278],[0,-277],[0,-278],[0,-277],[0,-278],[0,-277],[0,-278],[0,-277],[0,-278],[138,0],[139,0],[138,0],[138,0],[139,0],[138,0],[138,0],[138,0],[139,0],[138,0],[0,-253],[0,-254],[0,-254],[0,-254],[0,-254],[0,-254],[0,-254],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[1,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[1,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-222],[0,-222],[0,-222],[0,-223],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-278],[1,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-264],[0,-264],[0,-264],[0,-263],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[1,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[1,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-237],[0,-237],[0,-237],[0,-237],[0,-237]],[[43745,8093],[-37,-1],[-40,-4],[-37,-7],[-66,-23],[-56,-5],[-72,-16],[-83,-3],[-82,-3],[-83,-9]],[[43189,8022],[-7,-2],[-81,-22],[-105,-20]],[[42996,7978],[-105,-20],[-105,-20],[-105,-20],[-30,-9],[-43,-17],[-62,-22],[-53,-29],[-70,-17],[-61,-25],[-56,-11],[-70,-22]],[[42236,7766],[-78,-11],[-48,-12]],[[42110,7743],[-97,-22],[-97,-23],[-55,-15],[-40,-14],[-51,-23],[-58,-15],[-42,-17],[-68,-37],[-33,-28],[-14,-9],[-71,-19],[-39,-14],[-89,-51],[-66,-56],[-24,-14],[-25,-7],[-84,-21],[-84,-20],[-39,-12],[-46,-21],[-49,-36],[-76,-11],[-75,-19],[-102,-30],[-27,-11]],[[40659,7198],[0,7]],[[40659,7205],[-35,-15],[-75,-17],[-39,-10],[-60,-23],[-44,-25],[-33,-31],[-88,-29],[-45,-23],[-30,-24],[-36,-39],[-45,-27],[-16,-13],[-21,-26],[-21,-38],[-10,-4],[-35,-9],[-38,-14],[-29,-16],[-24,-19],[-24,-28],[-36,-66],[-17,-24],[-30,-26],[-62,-35],[-33,-26],[-17,-20],[-7,-16],[-59,3],[-81,3]],[[39569,6568],[0,261],[0,260],[0,260],[0,260],[0,260],[0,260],[0,260],[0,252]],[[39569,8641],[1,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[1,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,276],[0,276],[0,276],[0,276],[0,276],[0,275],[0,276],[0,276],[0,276],[0,276],[-2,0]],[[39569,19481],[-5,0],[-137,0],[-138,0],[-137,0],[-138,0],[-138,0],[-137,0],[-138,0],[-137,0],[-138,0],[-137,0],[-7,0],[-2,0],[-138,0],[-138,0],[-138,0],[-139,0],[-138,0]],[[37489,19481],[0,263],[0,264]],[[37489,20008],[0,263],[0,264]],[[37489,20535],[0,263],[0,264]],[[37489,21062],[139,0],[138,0],[139,0],[139,0],[139,0],[138,0],[139,0],[139,0],[138,0],[139,0],[2,0],[6,0],[137,0],[137,0],[137,0],[137,0],[137,0]],[[39569,21062],[2,0],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,273],[0,273],[0,273],[0,273],[0,273],[0,273],[0,273],[0,273],[0,273],[0,273],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,273],[0,273],[0,273],[0,273],[0,274],[0,273],[0,273],[0,273],[0,273],[0,273]],[[39571,43190],[29,104],[51,214],[29,85],[18,67],[42,100],[37,139],[22,45],[33,47],[73,64],[23,30],[57,157],[44,89],[66,172],[33,49],[14,48],[25,48],[80,201],[26,92],[24,112],[32,179],[32,179],[24,158],[2,45],[-6,60],[9,80],[0,235],[-8,145],[-32,158],[-13,169],[-30,172],[-5,70],[-17,95],[-23,168],[-36,152],[-17,47],[-17,33],[-24,32],[-25,22],[-108,50],[-38,5],[-61,-24],[-108,3],[-20,12],[-38,62],[-60,14],[-38,96],[-29,33],[-65,47],[-7,19]],[[39571,47569],[0,264],[0,263],[0,263],[0,264],[0,263],[0,263],[0,264],[0,263],[0,264],[0,263],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,1],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,255],[0,256],[0,256],[0,255],[0,256],[0,255],[0,256],[0,255],[0,256],[0,255],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,111],[0,1]],[[39571,86205],[3,109],[38,-12],[27,-9],[25,-4],[56,1],[48,12],[35,18],[25,22],[14,20],[31,63],[18,23],[56,7],[44,18],[53,35],[59,63],[31,24],[19,19],[51,21],[42,39],[20,8],[68,19],[43,27],[62,32],[32,24],[23,23],[46,70],[48,30],[49,68],[45,33],[47,49],[16,36],[3,44],[5,14],[50,43],[43,48],[20,28],[25,49],[14,35],[9,35],[1,29],[-3,45],[13,25],[23,20],[92,66],[17,5],[63,4],[28,10],[26,14],[31,29],[45,67],[31,1],[61,-16],[50,-4],[41,2],[54,9],[58,-1],[38,6],[80,20],[79,21],[37,12],[40,18],[46,3],[35,7],[28,12],[79,46],[109,35],[52,25],[63,10],[45,12],[43,3],[60,12],[56,21],[74,17],[101,45],[97,13],[32,9],[29,14],[72,50],[42,14],[44,28],[61,30],[6,3],[43,46],[82,58],[41,35],[32,34],[50,21],[36,23],[43,48],[50,13],[26,11],[27,17],[26,24],[72,35],[41,31],[51,14],[39,18],[14,11],[15,11],[23,32],[39,23],[3,3]],[[47816,74442],[-32,-8],[-24,-13],[-20,-23],[-36,-26],[-25,-45],[-28,-15],[-18,-19],[-16,-34],[-9,-54],[-7,-13],[-18,-5],[-45,14],[-30,-13],[-51,-39],[-22,-33],[-34,-29],[-19,-25],[-15,-30],[-12,-39],[-8,-47],[-7,-75],[1,-41],[14,-49],[41,-71],[6,-71],[10,-38],[46,-93],[1,-50],[-10,-63],[5,-119],[-1,-18]],[[47453,73258],[-4,-71],[13,-56],[-101,-185],[-100,-185],[-101,-185],[-101,-185],[-100,-185],[-101,-185],[-101,-185],[-101,-185],[-100,-185],[-101,-185],[-101,-185],[-100,-185],[-101,-185],[-101,-185],[-100,-185],[-101,-185],[-101,-185],[-100,-185],[-101,-185],[-101,-185],[-100,-185],[-101,-185],[-101,-185],[-100,-185],[-101,-185],[-101,-185],[1,-267],[0,-266],[1,-267],[1,-267],[0,-266],[1,-267],[0,-267],[1,-237],[0,-238],[1,-237],[0,-238],[1,-238],[0,-237],[135,0],[135,0],[135,-1],[134,0],[135,0],[135,0],[135,0],[134,0],[135,0],[135,0],[-6,-41],[-18,-59],[-77,-105],[-20,-15],[-35,-13],[-19,-18],[-33,-65],[-33,-29],[-27,-53],[-20,-81],[-4,-98],[-33,-99],[-17,-91],[-24,-82],[-11,-55],[-10,-101],[-1,-163],[-10,-66],[-21,-49],[-59,-95],[-34,-75],[-65,-119],[-66,-98],[-33,-73],[-23,-70],[-10,-48],[-1,-25],[10,-53],[-1,-23],[-61,-189],[-33,-183],[-11,-101],[-14,-35],[-9,-45],[-42,-35],[-18,-28],[-34,-88],[-23,-80],[-26,-140],[-5,-103],[-16,-170],[-17,-247],[-1,-51],[5,-47],[11,-41],[15,-34],[21,-24],[24,-6],[24,10],[20,27],[11,-42],[21,-42],[23,-36],[36,-35],[6,-19],[0,-172],[-28,-59],[-19,-67],[-2,-44],[10,-78],[-18,-53],[-3,-51],[9,-62],[19,-62],[15,-28],[35,-38],[15,-45],[13,-157],[27,-172],[7,-160],[-1,-104],[-9,-128],[-17,-126],[-59,-247],[-31,-159],[-8,-100],[-16,-111],[1,-207],[-12,-90],[-62,-196],[-66,-168],[-40,-53],[-56,-37],[-18,-19],[-18,-46],[-4,-54],[15,-77],[17,-39],[17,-26],[35,-23],[20,4],[15,14],[12,-45],[36,-84],[24,-98],[17,-48],[5,-112],[26,-68],[4,-22],[-3,-16],[-30,-56],[-14,-71],[2,-61],[15,-152],[-9,-91],[6,-110],[-6,-79],[1,-35],[12,-64],[22,-58],[17,-27],[35,-29],[31,-44],[27,-78],[30,-57],[-54,-54],[-12,-32],[-4,-42],[1,-41],[7,-39],[32,-65],[3,-62],[17,-100],[18,-45],[26,-33],[26,-13],[38,1],[62,22],[30,53],[29,26],[11,20],[41,-96],[35,-47],[16,-50],[16,-31],[26,-28],[49,-27],[19,-98],[9,-21],[32,-39],[12,-77],[13,-32],[18,-21],[33,-17],[30,-46],[58,-60],[41,-63],[7,-33],[-4,-82],[11,-50],[26,-41],[42,-17],[33,-96],[4,-70],[14,-60],[5,-49],[-1,-72],[-12,-78],[2,-69],[28,-101],[21,-101],[19,-29],[23,-8],[1,-64],[21,-62],[-17,-47],[-4,-61],[7,-44],[14,-32],[23,-24],[59,-32],[42,-59],[64,-31],[75,-60],[76,-59],[39,-65],[33,-40],[15,-70],[23,-47],[124,-111],[8,-65],[24,-52],[34,-36],[77,-51],[53,-64],[72,-138],[71,-137],[71,-138],[105,-152],[53,-45],[39,-51],[52,-43],[96,-110],[74,-34],[64,-79],[49,-21],[34,-2],[0,-275],[0,-276],[0,-276],[0,-276],[0,-276],[0,-276],[0,-276],[0,-276],[0,-275],[0,-276],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[-128,0],[-128,0],[-128,0],[-128,0],[-128,0],[-127,0],[-128,0],[-128,0],[-126,0],[-127,0],[-126,0],[-126,0],[-126,0],[-127,0],[-126,0],[-126,0],[-126,0],[-127,0],[-126,0],[2,-246],[1,-245],[2,-246],[1,-245],[2,-246],[1,-245],[2,-246],[1,-245],[127,0],[126,0],[126,0],[126,0],[127,0],[126,0],[126,0],[127,0],[139,0],[138,0],[139,0],[139,0],[139,0],[139,0],[139,0],[139,0],[139,0],[139,0],[-1,-240],[0,-240],[0,-240],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[-1,-278],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[-1,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-127,0],[-126,0],[-126,0],[-126,0],[-127,0],[-126,0],[-126,0],[-127,0],[-126,0],[-126,0],[-126,0],[0,-195],[0,-195],[0,-196],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[118,0],[118,0],[118,0],[118,0],[118,0],[126,0],[126,0],[126,0],[127,0],[126,0],[126,0],[126,0],[127,0],[126,0],[126,0],[126,0],[0,-268],[0,-269],[0,-268],[0,-269],[0,-268],[0,-269],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-278],[-1,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[-1,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[-1,-252],[0,-267],[0,-267]],[[47908,10792],[-40,-4],[-105,-24],[-39,-12],[-42,-23],[-37,-30],[-17,-20],[-12,-22],[-6,-19],[0,-22],[7,-22],[-25,-56],[-96,51],[-37,15],[-44,12],[-37,43],[-47,32],[-11,3],[-34,13]],[[47286,10707],[-9,3],[-59,9],[-69,-3],[-68,-14],[-67,-27],[-53,-34],[-29,-32],[-14,-35],[-1,-21],[6,-23],[7,-18],[18,-26],[-17,-13],[-13,3],[-64,27],[-48,15],[-53,9],[-53,2],[-47,-5],[-64,-18],[-53,-11],[-35,-13],[-36,-21],[-40,-31],[-29,-38],[-18,-42],[-2,-37],[16,-56],[44,-78],[29,-36],[41,-33],[-41,6],[-42,2],[-40,-4],[-45,-10],[-34,-14],[-35,-21],[-28,-25],[-18,-23],[-13,-31],[-3,-29],[6,-32],[15,-32],[20,-26],[26,-25],[27,-19],[66,-39],[12,-10],[4,-8],[-6,-7],[-97,-49],[-19,-15],[-19,-22],[-78,26],[-44,10],[-46,7],[-38,3],[-39,0],[-33,-3],[-35,-7],[-32,-10],[-32,-15],[-27,-19],[-20,-20],[-17,-32],[-3,-59],[-10,-18],[-11,-4],[-53,-4],[-55,-14],[-38,-2],[46,27],[24,21],[16,28],[4,30],[-6,36],[-18,42],[-43,75],[-23,26],[-30,22],[-43,21],[-47,14],[-45,6],[-46,-1],[-47,-7],[-31,-9],[-47,-22],[-29,-20],[-22,-23],[-16,-25],[-10,-26],[-5,-27],[2,-37],[7,-27],[18,-35],[18,-25],[23,-23],[27,-20],[31,-18],[59,-22],[41,-7],[62,-7],[10,-4],[-62,-29],[-36,-26],[-40,-45],[-23,-49],[-62,-34],[-29,-21],[-43,-45],[-18,-33],[-18,-107],[6,-42],[19,-39],[-13,-35],[3,-35],[17,-28],[33,-30],[30,-18],[49,-17],[5,-5],[-11,-5],[-27,-5],[-88,-7],[-88,-7],[-52,-9],[-36,-11],[-36,-15],[-29,-16],[-26,-20],[-24,-27],[-17,-30],[-1,-40],[-4,-13],[-10,-7],[-33,-15],[-16,-10],[-20,-19],[-14,-19],[-9,-34],[10,-40],[-3,-15],[-31,-27],[-21,-27],[-58,-28],[-22,-17],[-17,-20],[-28,-46],[-58,-51],[-18,-20],[-10,-19],[-4,-21],[6,-44],[-10,-1],[-19,2],[-52,13],[-15,4],[-55,9],[-51,3],[-47,-2],[-37,-5],[-31,-8],[-117,-42],[-42,-23],[-36,-32],[-34,2],[-60,0],[-59,11],[-48,4],[-56,2],[-20,-1]],[[43742,85339],[81,14],[46,-6],[56,5],[66,-7],[84,13],[36,-1],[75,-43],[42,-38],[3,-8],[0,-49],[15,-42],[30,-38],[40,-24],[47,-9],[50,9],[40,22],[36,38],[27,-7],[74,-30],[48,-14],[131,-20],[49,1],[135,1],[134,0],[135,1],[134,1],[135,1],[134,0],[135,1],[134,1],[135,0],[134,1],[135,1],[134,0],[135,1],[134,1],[135,1],[134,0],[135,1],[134,1],[135,0],[134,1],[135,1],[134,1],[135,0],[0,-210],[0,-211],[-16,-17],[-25,-56],[-54,-21],[-35,-27],[-19,-28],[-10,-33],[-1,-28],[8,-30],[14,-25],[19,-21],[42,-22],[67,-16],[10,-5],[0,-239],[0,-238],[0,-239],[0,-238],[0,-239],[0,-238],[0,-238],[0,-185],[0,-185],[-107,-29],[-106,-29],[-107,-29],[-44,-15],[-31,-29],[-16,-38],[-2,-50],[14,-49],[29,-40],[36,-22],[45,-6],[102,-42],[102,-41],[4,-31],[-10,-75],[4,-57],[-26,-66],[-5,-31],[1,-31],[12,-39],[24,-33],[36,-23],[41,-11],[4,1],[0,-213],[0,-213],[0,-212],[-18,-10],[-49,-47],[-27,-9],[-81,-28],[-31,-22],[-34,-6],[-24,-12],[-24,-24],[-25,-41],[-39,-27],[-21,-28],[-19,-50],[-2,-66],[-43,-53],[-13,-25],[-8,-41],[3,-42],[12,-40],[20,-29],[-72,14],[-75,-1],[-65,11],[-65,-15],[-39,-16],[-40,-35],[-29,-45],[-12,-38],[-7,-64],[-25,-46],[-10,-31],[0,-50],[17,-46],[21,-24],[52,-29],[-22,-13],[-21,-20],[-16,-26],[-10,-26],[-4,-43],[9,-41],[-1,-35],[7,-33],[14,-27],[19,-22],[21,-14],[37,-14],[4,-12],[3,-48],[14,-36],[30,-34],[47,-30],[-47,-62],[-46,-37],[-18,-24],[-15,-45],[-1,-61],[-44,-20],[-36,-29],[-34,-37],[-22,-36],[-10,-36],[-3,-36],[4,-43],[13,-45],[-2,-51],[5,-44],[13,-38],[18,-36],[36,-43],[5,-45],[19,-41],[32,-31],[44,-14],[20,-35],[21,-22],[24,-13],[25,-4],[31,6],[46,21],[39,-11],[32,2],[46,11],[34,20],[32,3],[44,19],[37,8],[56,24],[18,17],[34,46],[28,27],[22,14],[45,20],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-267],[0,-268],[0,-268],[0,-268],[0,-268],[0,-268]],[[12098,88282],[0,-2],[1,0]],[[18749,8827],[-7,-5],[-18,-18],[-30,-53],[9,37],[-3,50],[-15,33],[-30,36],[-42,36],[-28,16],[-45,19],[-49,39],[-39,19],[-66,25],[-43,12],[-46,5],[-42,1],[-44,-5],[-59,-12],[-58,-20],[-58,-11],[-40,-14],[-38,-18],[-17,-3],[-21,5],[-54,31],[-72,28],[-56,13],[-58,5],[-43,-3],[-41,-6],[-37,-10],[-44,-17],[-95,-41],[-94,-40],[-70,-33],[-22,-13],[-18,-15],[-29,-40],[-10,-4],[-32,-6],[-3,2],[1,7],[36,64],[5,20],[-2,31],[-16,40],[-28,34],[-39,27],[-41,19],[-73,22],[-65,9],[-126,3],[-55,-6],[-66,-17],[-69,23],[-54,10],[-47,1],[-49,-5],[-42,3],[-123,10],[-124,9],[-69,17],[-31,4],[-113,3],[-113,3],[-65,-3],[-55,-11],[-47,-17],[-75,-40],[-15,-4],[-12,-1],[-35,20],[-40,15],[-48,9],[-52,3],[-10,3],[-33,27],[-30,17],[-20,41],[-36,34],[-41,22],[-69,23],[-37,33],[-24,13],[-26,10],[-71,17],[-122,13],[-47,0],[-69,-8],[-62,4],[-46,-1],[-39,-6],[-32,-9]],[[14581,9387],[0,256],[0,256],[0,256],[0,256],[0,256],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,250],[0,250],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,270],[0,271],[0,271],[0,271],[0,271],[0,271],[0,270],[0,271],[-139,0],[-138,0],[-139,0],[-139,0],[-138,0],[-139,0],[-139,0],[-138,0],[-139,0],[-139,0],[-139,0]],[[13055,37777],[139,0],[139,0],[138,0],[139,0],[139,0],[138,0],[139,0],[138,0],[139,0],[139,0],[138,0],[0,250],[0,250],[1,250],[0,250],[0,250],[0,250],[0,250],[0,250],[0,250],[0,250],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,232],[0,233],[0,232],[0,232],[0,233],[0,232],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,254],[0,254],[0,254],[0,253],[0,254],[0,254],[0,254],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,222],[0,222],[0,223],[0,222],[-104,125],[-105,124],[-10,17],[-53,67],[-31,51],[-27,63],[-13,61],[-1,30],[5,30],[9,26],[13,22],[36,34],[83,46],[22,24],[5,18],[-4,58],[-37,34],[-17,22],[-16,34],[-14,46],[-13,64],[3,55],[-22,42],[-7,28],[0,70],[-4,22],[-18,29],[-41,16],[-22,17],[-20,26],[-24,46],[-33,24],[-18,19],[-72,122],[-28,63],[-16,54],[-11,9],[-33,14],[-16,14],[-16,26],[-18,48],[-54,42],[-52,80],[-51,45],[-34,61],[-41,50],[-14,48],[-1,73],[-35,43],[-17,46],[-4,47],[6,59],[-22,48],[-6,31],[-44,-29],[-2,-39],[-17,-76],[-40,-87],[-3,-37],[-13,-54],[5,-78],[3,-14],[66,-131],[12,-32],[7,-59],[-6,-55],[39,-69],[5,-32],[0,-49],[36,-37],[13,-25],[10,-38],[51,-73],[10,-29],[4,-41],[12,-33],[2,-30],[-3,-32],[-31,-98],[-18,-35],[-4,-3],[-21,-18],[-32,-9],[-14,2],[-19,3],[-31,20],[-29,33],[-27,57],[-25,26],[-83,119],[-27,66],[-52,53],[-46,74],[-43,49],[-60,106],[-38,49],[-32,90],[-38,63],[-20,68],[-34,52],[-19,42],[-8,32],[-4,45],[-29,59],[-12,83],[17,113],[4,101],[8,39],[13,26],[21,22],[25,15],[21,5],[10,2],[11,-1],[25,-4],[31,-5],[2,0],[7,-3],[21,-9],[21,-9],[17,1],[17,1],[17,0],[17,1],[24,-7],[24,-7],[24,-7],[24,-7],[28,20],[29,20],[29,20],[29,21],[19,-6],[34,33],[14,13],[19,19],[7,10],[2,3],[16,24],[5,12],[18,18],[20,19],[23,-19],[12,-15],[7,-5],[9,-5],[42,-7],[25,-14],[5,4],[1,7],[2,9],[1,11],[-5,19],[0,10],[4,5],[27,23],[38,39],[21,31],[26,50],[22,65],[22,41],[24,31],[1,7],[-2,8],[-5,9],[-6,16],[-4,40],[-4,23],[-13,30],[-5,15],[-3,19],[2,13],[3,23],[0,8],[-3,16],[-4,13],[-3,10],[-1,23],[8,19],[17,25],[8,18],[2,17],[1,6],[1,25],[-2,22],[-2,12],[-3,12],[-9,21],[-6,10],[-7,2],[-26,-9],[-9,2],[-13,4],[-31,12],[-4,4],[-3,8],[-8,37],[-4,8],[-7,4],[-30,9],[-12,8],[-31,46],[-22,15],[-50,8],[-23,12],[-32,25],[-36,28],[-41,32],[-12,13],[-7,5],[-7,1],[-29,-6],[-30,2],[-7,3],[-2,6],[1,22],[-1,12],[-2,9],[-7,18],[-5,8],[-1,5],[-1,6],[2,6],[3,8],[1,7],[-1,4],[-66,36],[21,95],[-36,12],[-50,17],[18,38],[13,26],[-20,47],[-16,36],[-26,42],[-27,43],[-22,45],[-22,46],[-34,72],[-24,49],[-21,34],[-22,37],[-6,14],[-13,48],[-7,15],[-25,35],[-33,45],[-11,22],[-4,23],[10,18],[-19,32],[-24,24],[-22,23],[-20,29],[-27,53],[-9,13],[-12,10],[-31,19],[-35,21],[-31,20],[-26,34],[-3,7],[-2,9],[1,7],[2,2],[1,2],[-3,5],[-4,4],[-15,3],[4,24],[-1,10],[-3,9],[-15,25],[-7,10],[-9,4],[-13,0],[-7,4],[-8,8],[-14,21],[-3,7],[-3,16],[-3,7],[-3,2],[-11,3],[-27,7],[-25,7],[-7,6],[-7,9],[-10,22],[1,8],[3,9],[3,8],[-29,21],[5,10],[11,13],[4,9],[1,9],[1,28],[0,9],[-4,7],[-16,19],[-5,4],[-14,5],[-9,13],[-9,16],[-10,13],[-24,18],[-16,12],[-17,21],[-5,1],[-44,-25],[-53,-30],[-26,-15],[-28,-7],[-33,-9],[-32,-9],[-25,-16],[14,-9],[11,-11],[4,-16],[-8,-23],[-13,-15],[-13,-5],[-13,1],[-15,5],[0,-42],[1,-54],[-5,-17],[-1,-2],[-3,-7],[-12,-22],[-8,-16],[-12,-10],[-17,-2],[-31,3],[-15,-5],[-29,-20],[-29,-21],[-4,-4],[-31,-22],[-30,-22],[-16,-18],[-23,-26],[-9,-5],[-9,0],[-6,9],[0,14],[7,28],[-10,45],[-8,35],[-9,40],[-4,10],[-4,8],[-41,42],[-43,44],[-43,46],[-42,44],[-40,42],[-35,36],[-31,32],[-11,17],[-4,11],[-11,46],[-1,3],[-2,3],[-11,8],[-27,14],[-45,22],[-14,10],[-16,20],[-20,23],[0,15],[9,34],[10,37],[11,40],[2,12],[-3,11],[-6,3],[-45,-2],[-42,-2],[-29,-1],[-31,-2],[-14,-4],[-14,-10],[-27,-29],[-25,-27],[-14,-11],[-13,0],[-43,22],[-43,22],[-28,14],[-6,1],[-5,-3],[-3,-7],[-9,-22],[-3,-7],[-4,-3],[-35,12],[-30,11],[-40,13],[-19,7],[-4,5],[-2,9],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[-1,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,80],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,81],[0,4],[1,50],[3,72],[15,-5],[25,-8],[115,-23],[67,8],[78,1],[37,-3],[51,-11],[54,20],[48,10],[48,1],[51,-8],[36,-12],[37,-16],[29,-17],[26,-21],[25,-30],[29,-62],[14,-22],[14,-12],[39,-20],[25,-19],[19,-23],[17,-35],[12,-12],[82,-36],[69,-21],[44,-19],[58,-12],[40,-14],[16,1],[5,5],[13,78],[6,13]],[[14579,89296],[0,257],[0,257],[0,257],[0,257],[0,258],[0,257],[0,257],[0,257],[0,257],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,257],[0,258],[0,257],[0,258],[0,258],[0,257],[0,258],[0,257],[0,258],[0,257],[-14579,258]],[[5976,48605],[0,-281],[1,-297],[1,-296],[0,-313],[1,-313],[-1,-351]],[[5830,46754],[-154,0],[-164,0],[-134,0],[-135,0],[-135,0],[-125,0],[-145,0],[-173,0],[-154,0],[-144,0],[-145,0],[-134,0],[-135,0],[-135,0],[-135,0],[-144,0],[-144,0],[-135,0],[-173,0],[-141,0]],[[2575,45089],[-73,-327]],[[2502,44762],[-30,-320],[-27,-293],[-27,-292]],[[2427,43674],[18,-358]],[[2083,38715],[2,-363],[-2,-350]],[[2083,38002],[0,-468]],[[2083,35555],[-146,0],[-138,0],[-139,0],[-138,0],[-138,0],[-139,0],[-138,0],[-138,0],[-139,0],[-138,0],[-139,0],[-138,0],[-138,0],[-139,0],[-138,0],[59,237],[60,237],[59,238],[59,237],[59,237],[60,237],[59,237],[59,238],[60,237],[59,237],[59,237],[60,237],[59,238],[59,237],[0,249],[0,249],[0,248],[0,249],[0,249],[0,249],[0,249],[0,249],[0,248],[0,276],[0,275]],[[830,41666],[120,0],[120,0],[120,0],[121,0],[120,0]],[[1431,41666],[120,0],[0,234],[0,234],[1,234],[0,234],[0,233],[1,234],[-82,215],[-81,214],[-82,215],[-81,214],[-82,215],[-81,214],[-82,215],[-81,214],[-82,215],[-69,185],[-70,185],[-69,185],[-70,185]],[[541,45740],[0,265],[0,264],[0,265],[0,264],[0,265],[0,264],[0,265],[0,264],[0,265],[0,264],[0,220]],[[541,48605],[116,0],[143,0],[132,0],[149,0],[138,0],[149,0],[126,0],[143,0],[138,0],[146,0],[167,0]],[[2088,48605],[80,0],[123,0],[152,0],[132,0],[138,0],[138,0],[131,0],[138,0],[138,0],[132,0],[137,0],[138,0],[132,0],[137,0],[132,0],[138,0],[138,0],[126,0],[143,0],[138,0],[132,0],[160,0],[155,0],[155,0],[161,0],[160,0],[161,0],[143,0]],[[5976,48605],[0,301],[0,343],[0,206],[0,172],[0,246]],[[5976,49873],[-155,248],[-107,172],[-92,148],[-80,127],[-83,133],[-81,131]],[[5378,50832],[0,304],[0,308],[0,275],[0,285],[0,252]],[[5378,52742],[165,0],[103,0],[131,0],[120,0],[120,0],[126,0],[103,0]],[[6246,52742],[154,0],[131,0],[132,0]],[[8333,43888],[0,-189],[0,-169]],[[8195,43530],[-140,0],[-156,0],[-124,0]],[[7775,43530],[-173,0],[-132,0],[-132,0],[-123,0],[-150,0]],[[6644,46754],[-78,0],[-93,0],[-129,0],[-111,0],[-148,0],[-107,0]],[[93754,11648],[-13,-2],[-72,26],[-47,7],[-33,-3],[-46,-13],[-50,0],[-7,0],[-13,2],[-31,17],[-39,50],[-26,21],[-26,15],[-43,16],[-75,8],[-80,31],[-36,44],[-3,27],[-23,70],[-40,46],[-28,20],[-62,25],[-109,68],[-63,27],[-53,11],[-49,-3],[-50,-17],[-36,-27],[-23,-34],[-11,-43],[-1,-29],[12,-52],[-9,-37],[3,-26],[-16,-15],[-33,-11],[-37,16],[-37,10],[-39,18],[-42,11],[-23,2],[-58,-5],[-32,14],[-29,8],[-31,1],[-44,-4],[-17,4],[-11,8],[-10,13],[-30,72],[-27,38],[-20,16],[-22,14],[-26,10],[-27,6],[-40,3],[-37,-4],[-38,-11],[-63,-30],[-62,-3],[-24,3],[-29,20],[-23,10],[-45,9],[-34,-2],[-48,-14],[-42,-3],[-39,-9],[-36,0],[-36,-8],[-47,8],[-23,0],[-29,-4],[-35,-11],[-41,9],[-37,0],[-40,18],[-31,7],[-80,6],[-36,-3],[-3,9],[11,39],[0,30],[-8,35],[-13,23],[-11,12],[-28,18],[-13,23],[-18,18],[-28,20],[-33,15],[-13,35],[-30,37],[-19,13],[-36,18],[-32,38],[-51,30],[-44,14],[-52,5],[-53,5],[-30,20],[-39,13],[-36,4],[-37,-2],[-42,-9],[-32,-16],[-33,-29],[-48,-57],[-16,-8],[-12,1],[-3,20],[37,37],[26,33],[21,55],[38,62],[9,36],[-6,37],[-23,41],[-41,43],[-39,21],[-57,15],[-68,-3],[-32,33],[-45,27],[-82,25],[-41,5],[-37,-4],[-38,-13],[-113,-55],[-41,-25],[-7,-2],[-13,10],[-8,12],[-17,27],[-4,3]],[[89583,12904],[0,269],[0,270],[0,270],[0,269],[0,270],[0,269],[0,270],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,265],[0,265],[0,265],[0,266],[0,265],[0,265],[0,266],[0,265],[0,265],[0,265],[-15,18],[-23,9],[-42,-7],[-25,6],[-31,20],[-37,41],[-9,-3],[-10,-30],[-10,-14],[-42,-32],[-30,-3],[-51,20],[-18,15],[-14,21],[-11,29],[-9,52],[-38,53],[-8,5]],[[89160,28754],[-2,46],[-2,25],[2,30],[-4,2],[3,10],[0,95],[0,169],[0,277],[0,278],[0,110],[0,167],[0,278],[0,278],[0,229],[0,48],[0,278],[0,44],[5,-8],[4,-10],[0,171],[0,175],[0,174],[0,175],[0,174],[0,175],[0,92],[89,0],[89,0],[0,148],[1,149],[-90,0],[-89,0],[0,134],[0,175],[0,174],[0,175],[0,174],[0,175],[0,174],[0,175],[0,208],[0,208],[0,209],[0,208],[0,208],[0,209],[0,208],[0,208],[-104,0],[-105,0],[-104,0],[-104,0],[-104,0],[-104,0],[-104,0],[-104,0],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,164],[0,96],[0,68],[0,164],[0,164],[0,164],[0,164],[0,20],[0,154],[0,153],[-1,68],[0,14],[0,78]],[[88332,40962],[4,-11],[25,-50],[32,-55],[26,-29],[61,-26],[50,-7],[43,-43],[16,-8],[6,14],[9,71],[5,17],[9,30],[24,52],[25,34],[104,51],[21,-6],[55,-41],[15,-29],[10,-46],[1,-52],[-6,-45],[-23,-49],[-27,-22],[-22,-18],[-21,-32],[19,-26],[10,-22],[6,-13],[11,-46],[7,-33],[0,-37],[-5,-35],[-13,-30],[-16,-21],[29,-35],[65,-50],[5,-4],[29,-41],[40,12],[51,31],[49,64],[13,24],[19,100],[4,55],[3,44],[27,71],[14,58],[24,45],[7,12],[22,140],[23,139],[-2,46],[-2,53],[18,165],[26,146],[25,146],[1,46],[1,4],[-17,106],[-14,177],[2,35],[17,92],[2,39],[-27,90],[-2,12],[-7,80],[2,64],[9,76],[38,188],[-3,56],[-13,80],[1,12],[0,39],[11,57],[20,49],[-13,21],[-11,30],[-5,35],[-1,40],[5,41],[54,244],[5,23],[43,111],[37,233],[8,91],[1,97],[0,9],[6,70],[-14,84],[0,42],[4,15],[13,54],[35,55],[-42,73],[-14,54],[-1,41],[5,42],[11,43],[2,3],[4,47],[5,14],[12,28],[8,8],[0,10],[0,84],[-3,18],[3,35],[0,29],[-23,21],[-99,-11],[-31,8],[-40,28],[-20,-23],[-25,-13],[-24,1],[-22,14],[-16,25],[-1,145],[1,64],[0,70],[0,37],[0,104],[0,97],[-1,148],[0,5],[0,88],[0,22],[0,105],[0,103],[0,147],[0,23],[0,69],[0,85],[1,60],[-5,-1],[-5,6],[-1,17],[-6,-3],[-3,7],[0,12],[-1,9],[-6,8],[-2,5],[-1,6],[1,2],[2,8],[1,3],[-2,7],[-6,10],[-2,6],[0,6],[1,5],[1,6],[3,19],[-1,10],[-4,4],[3,8],[4,3],[4,2],[4,6],[0,4],[-2,5],[-1,4],[3,2],[2,0],[1,2],[1,3],[0,14],[1,6],[2,4],[4,1],[2,5],[1,10],[-1,9],[-5,-1],[0,7],[-1,5],[-1,3],[-3,1],[2,2],[3,2],[3,0],[3,-1],[-1,7],[2,5],[2,4],[1,5],[-1,4],[-3,4],[0,4],[0,2],[1,1],[2,11],[2,6],[1,1],[0,59],[0,126],[0,109],[0,103],[0,143],[0,22],[0,70],[0,108],[0,2],[0,6],[0,119],[0,99],[0,235],[0,95],[0,112],[-1,122],[0,184],[0,137],[1,93],[0,129],[0,1],[0,1],[0,184],[71,232],[71,233],[71,232],[71,232],[71,232],[72,233],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[-130,0],[-129,0],[-129,1],[-129,0],[-130,0],[-129,0],[-129,0],[-129,0],[-130,0],[-129,0],[-129,0],[-129,0],[-130,0],[-129,0],[0,268],[0,269],[0,269],[0,269],[0,268],[0,269],[0,269],[0,268],[0,269],[0,269],[0,269],[0,268],[0,269],[0,269],[0,268],[0,269],[0,269],[0,269],[0,268],[0,269],[0,269],[0,269],[0,268],[0,269],[0,269],[0,268],[0,269],[129,0],[130,0],[129,0],[129,0],[130,0],[129,0],[129,0],[129,0],[130,0],[129,0],[129,0],[129,1],[130,0],[129,0]],[[89586,59478],[0,275],[0,276],[0,276],[0,276],[0,276],[0,275],[0,276],[0,276],[0,276],[0,276],[0,275],[0,276],[0,276],[0,276],[0,276],[0,275],[0,276],[0,276],[0,276],[0,276],[0,275],[0,276],[0,276],[0,276],[0,276],[0,275],[0,276],[0,276],[0,276],[0,276],[0,275],[0,276],[0,276],[0,276],[0,276],[0,275],[0,276],[0,276],[0,276],[1,276],[0,275],[0,276],[0,276],[0,276],[0,276],[0,275],[0,276]],[[89587,72440],[0,232],[0,231],[0,232],[0,231],[22,-17],[79,-52],[66,-85],[31,-13],[33,11],[16,18],[12,22],[23,88],[7,46],[0,84],[14,50],[51,111],[84,120],[25,27],[20,8],[54,-25],[41,5],[49,-10],[25,10],[26,23],[43,12],[43,47],[31,47],[12,2],[35,-6],[26,13],[37,72],[39,36]],[[90531,74010],[124,99],[124,98],[124,99],[124,98],[125,99],[124,98],[116,146],[116,145],[115,146],[116,145],[116,146],[116,145],[116,146],[116,145],[116,146],[116,145],[115,146],[116,145],[116,146]],[[92782,76493],[108,141],[108,142],[107,141],[108,142],[108,142],[107,141],[108,142],[108,142],[107,141]],[[93751,77767],[0,-220],[0,-220],[0,-221],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-249],[0,-249],[0,-249],[0,-249],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[-121,0],[-122,0],[-122,0],[-122,0],[-122,0],[-122,0],[-122,0],[-122,0],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-268],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[111,-1],[112,0],[111,0],[111,-1],[111,0],[106,0],[105,-1],[106,0],[105,0],[0,-248],[0,-248],[0,-247],[0,-248],[0,-248],[0,-248],[0,-247],[0,-248],[117,0],[117,0],[118,0],[117,0],[117,0],[117,0],[1,-219],[1,-219],[1,-220],[-127,-13],[-126,-14],[-127,-13],[-127,-14],[-99,-152],[-100,-152],[-103,-157],[-103,-157],[-103,-157],[-103,-157],[1,-57],[1,-4],[-33,-104],[-64,-44],[-26,0],[-24,-31],[-111,-147],[-1,-5],[-4,-13],[-11,-35],[-65,-221],[-65,-220],[64,-163],[65,-163],[65,-164],[75,-187],[74,-187],[74,-187],[75,-187],[74,-187],[75,-187],[74,-187],[50,-240],[49,-239],[0,-46],[0,-262],[0,-262],[0,-262],[0,-262],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-56],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-261],[0,-262],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-16]],[[0,99999],[93751,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-258],[0,-257],[0,-258],[0,-257]],[[93751,97166],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-258],[0,-257],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257]],[[93751,92586],[-119,-132],[-120,-132]],[[93512,92322],[-120,-133],[-120,-132],[-120,-132],[-119,-132],[-120,-132],[-120,-132],[-120,-132],[-120,-132],[-119,-132],[-120,-132],[-120,-132],[-120,-132],[0,-22],[-127,-2],[-128,-1],[-128,-2],[-127,-2],[-128,-1],[-128,-2],[-127,-2],[-128,-1],[-128,-2],[-127,-1],[0,-145]],[[90798,90554],[-135,0],[-134,0],[-135,0],[-134,0],[-135,0],[-134,0],[-134,0],[-135,0],[-134,0],[-135,0],[-134,0],[-135,0],[-134,0],[-134,0],[-135,0],[-134,0],[-135,0],[-134,0],[-135,0],[-134,0],[-134,0],[-135,0],[-134,0],[-135,0],[-134,0],[-135,0],[-134,0],[-134,0],[-135,0],[-134,0],[-135,0]],[[86630,90554],[-2,0],[0,-224],[0,-223],[0,-224],[0,-223],[8,-214],[8,-4],[30,-21],[23,-16],[28,-28],[-10,-30],[-43,-43],[18,-39],[6,-49],[0,-20],[-33,-44],[12,-22],[79,-47],[60,-9],[2,0]],[[86816,89074],[53,2],[31,1]],[[86900,89077],[65,-22],[32,-45],[-9,-48],[-17,-38],[-17,-22],[-41,-35],[-6,-35],[17,-14],[27,-6],[1,1]],[[86952,88813],[14,5],[16,5],[2,0]],[[86984,88823],[11,-3],[11,-24],[-13,-17],[4,-20],[39,-13],[3,0]],[[87039,88746],[53,0]],[[87092,88746],[34,-3],[-8,-25],[-43,-24]],[[87075,88694],[-1,0],[-44,4]],[[87030,88698],[-3,0],[-10,-36],[-14,-10],[-12,-8]],[[86991,88644],[-36,1]],[[86955,88645],[-3,0],[-25,-14],[2,-24],[-24,-17],[-17,-10],[3,-20],[-8,-37],[-18,-29],[-11,-34],[26,-42],[-22,-17]],[[86858,88401],[0,-1],[-48,9]],[[86810,88409],[-1,0],[-44,-8],[31,-83]],[[86796,88318],[70,-51],[68,-99],[67,-100],[-31,-78],[-40,-97],[-85,-29],[-84,-29],[-103,-90],[-35,-121],[-52,-37]],[[86571,87587],[-1,0],[-74,10]],[[86496,87597],[-2,0],[-106,-66],[-106,-66],[-47,-143],[-58,-21],[-45,-106],[5,-121],[10,-96],[-43,-24],[-1,-34],[16,-21],[22,-28],[5,-54],[48,-69],[52,-48],[58,-29],[36,-14],[15,-15],[3,-25],[16,-23],[31,-15],[15,-5],[-1,-24],[12,-13],[49,-9],[43,-2],[34,-18],[9,-11],[14,-16],[-2,-25],[-39,-42],[-21,-19],[-11,-35],[8,-31],[34,-6],[36,-27],[19,-47],[34,-37],[12,-36],[9,-39],[25,-45],[43,-50],[25,-30],[7,-35],[-13,-31],[-17,-21],[-2,-24],[10,-20],[14,-15],[26,-4],[6,0],[37,-3],[40,-25],[14,-16],[2,-34],[6,-26],[22,-19],[7,-20],[3,0]],[[86914,85719],[29,4],[1,-1]],[[86944,85722],[31,-6],[21,-7],[17,-7],[35,-7],[3,0]],[[87051,85695],[33,0],[35,35],[17,56],[0,84],[7,50],[14,42],[21,42],[11,84],[14,43],[28,21],[3,0],[29,0]],[[87263,86152],[21,-43],[32,-28],[31,-14],[3,0]],[[87350,86067],[29,0],[81,7],[53,14],[38,36],[35,35],[39,70],[39,91],[60,50],[63,35],[2,-1]],[[87789,86404],[61,-20],[53,-28],[56,-43],[53,-28],[28,-42],[32,-7],[0,1]],[[88072,86237],[24,20],[28,49],[29,7]],[[88153,86313],[38,-49],[39,-21],[3,0]],[[88233,86243],[50,0],[56,35],[77,85],[50,42],[66,42],[32,70],[39,22],[2,-1]],[[88605,86538],[50,-14],[2,1]],[[88657,86525],[58,14],[2,-1]],[[88717,86538],[40,-7],[1,1]],[[88758,86532],[84,28],[21,28],[14,21],[16,17]],[[88893,86626],[25,-24],[38,-29],[20,-4],[15,-4],[-9,-22],[-20,-22],[-23,-15],[-23,-23],[8,-20],[23,-19],[32,-22]],[[88979,86422],[-32,-17],[-43,-14],[-36,-29],[-41,-52],[-34,-57],[-31,-88],[-29,-63],[-11,-38],[14,-27],[46,-10],[47,-23],[57,-26],[12,-29],[16,-25],[43,-24],[24,-17],[19,-27],[0,-30],[-31,-32],[-8,-34],[9,-29],[-10,-21],[-11,-27],[14,-20],[22,-7],[35,-12],[34,-17],[22,-21],[2,-31],[-19,-41],[-23,-34],[-11,-26],[-4,-33],[18,-32],[21,-24],[8,-20],[-2,-40],[-19,-29],[-21,-11],[-23,-5],[-38,-16],[-38,-22],[-20,-30],[-16,-25],[-21,-2],[-20,-7],[-19,-13],[-18,-41],[-1,-41],[-7,-44],[-15,-34],[6,-19],[8,-38],[-4,-39],[29,-66],[27,-53],[63,-16],[34,-40],[32,-75],[-2,-4],[-6,-20],[-2,-7],[-1,-7],[-1,-14],[-1,-6],[-2,-5],[0,-4],[0,-3],[1,-3],[3,-8],[1,-3],[0,-4],[-1,-3],[-3,-10],[0,-4],[1,-2],[2,-3],[1,-3],[0,-3],[0,-4],[-3,-9],[0,-4],[1,-10],[0,-3],[-2,-3],[-11,-11],[-1,-3],[0,-3],[1,-3],[2,-2],[2,-1],[3,-2],[1,-3],[0,-4],[-2,-5],[-7,-8],[-4,-4],[-4,-2],[-11,-1],[-2,-1],[-2,-2],[-1,-4],[1,-7],[-1,-1],[0,-1],[-1,-3],[-2,-4],[-5,-5],[-4,-2],[-3,-1],[-4,0],[-2,1],[-8,5],[-7,1],[-7,1],[-2,-1],[-2,-1],[-2,-2],[-1,-3],[-5,-13],[-2,-6],[-2,-6],[-1,-7],[0,-3],[0,-4],[1,-2],[1,-3],[4,-4],[1,-3],[1,-3],[0,-3],[-1,-3],[-7,-17],[-5,-11],[-2,-3],[-2,-3],[-10,-8],[-2,-3],[-2,-3],[-2,-6],[-2,-5],[-3,-5],[-13,-17],[-5,-5],[-11,-4],[-2,-2],[-1,-4],[0,-4],[-1,-4],[-1,-3],[-3,-3],[-6,-3],[-3,-2],[-2,-3],[-1,-6],[-2,-13],[-1,-3],[-1,-6],[-1,-4],[0,-3],[-1,-7],[0,-4],[-2,-4],[-10,-12],[-2,-5],[-10,-22],[-1,-3],[-2,-2],[-4,-3],[-6,-2],[-3,-1],[-2,1],[-17,10],[-3,0],[-4,0],[-2,-1],[-3,-2],[-1,-4],[-1,-3],[-3,-2],[-8,-5],[-11,-9],[-10,-5],[-3,-1],[-3,0],[-35,9],[-4,0],[-3,-1],[-7,-5],[-4,-3],[-2,-3],[-1,-2],[0,-4],[2,-3],[3,-4],[0,-3],[-1,-4],[-4,-3],[-6,-4],[-4,-4],[-12,-20],[-4,-5],[-3,-4],[-6,-2],[-3,1],[-3,1],[-1,2],[-1,3],[-2,2],[-3,1],[-3,1],[-6,0],[-3,-1],[-18,-12],[-2,-1],[-3,1],[0,2],[0,4],[2,6],[0,4],[-2,1],[-3,0],[-3,-2],[-2,-2],[-10,-14],[-9,-16],[-2,-7],[0,-5],[1,-4],[0,-2],[1,-4],[0,-8],[-1,-5],[2,-3],[3,-1],[7,-1],[3,-1],[2,-3],[0,-3],[-1,-3],[-3,-2],[-12,-5],[-4,-3],[-18,-18],[-3,-1],[-3,-1],[-18,0],[-3,-1],[-2,-1],[-6,-5],[-9,-11],[-2,-2],[-3,-1],[-3,-1],[-24,7],[-1,-1],[0,-2],[1,-2],[2,-5],[1,-3],[0,-4],[0,-3],[0,-3],[0,-4],[1,-3],[1,-2],[2,-2],[4,-4],[2,-2],[1,-3],[0,-3],[0,-4],[0,-11],[0,-1],[-3,-4],[-4,-6],[-3,-2],[-4,-1],[-13,-2],[-6,-2],[-2,-2],[-2,-2],[-1,-2],[-1,-4],[-1,-5],[0,-3],[1,-7],[0,-3],[-1,-4],[-1,-3],[-2,-3],[-2,-3],[-1,-3],[1,-4],[3,-5],[1,-3],[1,-7],[1,-2],[7,-5],[1,-3],[1,-3],[0,-7],[1,-2],[1,-3],[2,-2],[7,-9],[1,-2],[1,-3],[-1,-4],[-1,-6],[0,-3],[2,-2],[2,-2],[12,-3],[3,-1],[2,-3],[1,-2],[0,-3],[2,-2],[2,-2],[7,-4],[5,-3],[2,-2],[2,-2],[1,-3],[1,-3],[0,-3],[0,-4],[-1,-4],[-4,-15],[-1,-6],[0,-5],[-1,-4],[-2,-4],[-5,-6],[-5,-2],[-4,-1],[-6,0],[-3,-2],[-2,-2],[-1,-4],[1,-7],[2,-5],[2,-5],[1,-4],[0,-3],[-1,-4],[-6,-8],[-3,-2],[-12,-6],[-2,-2],[-1,-3],[1,-3],[1,-3],[5,-3],[2,-3],[0,-3],[-1,-4],[0,-3],[2,-2],[5,-4],[2,-2],[2,-2],[1,-2],[3,-14],[1,-3],[0,-3],[0,-2],[0,-4],[-1,-3],[-4,-14],[-1,-4],[0,-3],[0,-2],[3,-5],[0,-3],[-1,-3],[-7,-7],[-5,-4],[-8,-8],[-5,-7],[-4,-7],[-1,-5],[-1,-4],[-1,-3],[0,-3],[1,-3],[1,-2],[2,-5],[2,-5],[1,-3],[2,-5],[1,-2],[0,-4],[-1,-4],[-7,-17],[0,-3],[-1,-3],[0,-4],[0,-3],[1,-2],[1,-3],[10,-12],[2,-3],[1,-2],[0,-3],[-1,-5],[-4,-10],[-1,-4],[0,-3],[-1,-3],[0,-3],[0,-3],[2,-9],[0,-3],[1,-5],[1,-3],[1,-3],[5,-9],[1,-2],[0,-4],[-3,-6],[-10,-12],[-8,-11],[-1,-7],[-1,-3],[-2,-13],[-2,-7],[0,-3],[0,-3],[1,-3],[1,-2],[2,-2],[1,-2],[1,-3],[-1,-22],[0,-3],[1,-3],[2,-4],[2,-2],[3,-2],[9,-4],[3,-1],[2,-2],[0,-3],[-1,-4],[-4,-4],[-9,-7],[-10,-10],[-3,-1],[-25,3],[-11,-1],[-3,1],[-1,2],[-1,2],[0,3],[0,3],[3,7],[1,7],[1,3],[0,3],[0,3],[-1,3],[-3,10],[-3,8],[-2,5],[-2,2],[-2,1],[-1,0],[-2,-2],[-3,-5],[0,-3],[-1,-4],[0,-3],[-1,-3],[-2,-3],[-4,-2],[-13,-4],[-3,1],[-3,1],[-7,5],[-3,1],[-3,1],[-60,-12],[-5,-4],[-6,-6],[-33,-41],[-3,-7],[-1,-4],[0,-6],[2,-5],[2,-5],[3,-8],[2,-2],[0,-3],[0,-3],[0,-3],[-1,-3],[-2,-3],[-3,-2],[-5,-1],[-4,0],[-13,2],[-4,-1],[-3,-1],[-5,-6],[-2,-3],[-6,-14],[-3,-3],[-1,-1],[-14,-12],[-6,-8],[-2,-7],[-8,-4],[-23,3],[-8,-6],[-4,-5],[-3,-2],[-3,-1],[-11,3],[-4,0],[-4,-1],[-36,-17],[-2,-2],[-3,-2],[-1,-3],[-6,-11],[-2,-3],[-3,-2],[-4,-1],[-28,0],[-3,1],[-2,3],[-1,2],[-1,3],[-1,2],[-2,2],[-2,2],[-4,1],[-18,-1],[-10,1],[-3,2],[-9,4],[-3,1],[-20,-2],[-3,1],[-3,1],[-2,2],[-1,3],[-5,12],[-1,2],[-2,2],[-3,0],[-4,0],[-6,-4],[-8,-6],[-2,-2],[-3,-1],[-5,2],[-4,1],[-5,4],[-6,3],[-4,0],[-12,-1],[-4,0],[-3,2],[-3,4],[-9,20],[-1,2],[-4,4],[-1,1],[-18,0],[-4,2],[-3,2],[-1,4],[-3,5],[-4,5],[-4,3],[-5,4],[-3,1],[-6,1],[-7,0],[-9,-3],[-14,-9],[-4,-2],[-11,-2],[-5,-2],[-5,-4],[-2,-3],[-2,-4],[-2,-3],[-2,-7],[-2,-2],[-1,-3],[-2,-2],[-14,-8],[-28,-28],[-1,-3],[-2,-2],[-7,-20],[-2,-3],[-1,-2],[-5,-5],[-3,-3],[0,-3],[0,-3],[0,-3],[-1,-3],[-2,-5],[-2,-7],[-2,-3],[-2,-3],[-3,-2],[-2,-3],[-7,-14],[-2,-3],[-1,-3],[1,-3],[1,-2],[3,-4],[1,-3],[0,-2],[0,-3],[-2,-3],[-2,-2],[-8,-6],[-2,-2],[-1,-3],[0,-2],[0,-4],[0,-3],[-1,-3],[-1,-4],[-1,-3],[-2,-2],[-2,-2],[-4,-1],[-18,-1],[-5,1],[-4,2],[-4,7],[-1,2],[-4,2],[-14,1],[-14,5],[-3,0],[-4,0],[-3,-1],[-15,-12],[-3,0],[-3,1],[-7,5],[-5,3],[-9,2],[-3,1],[-2,2],[0,2],[1,3],[1,3],[5,8],[1,3],[0,3],[-1,2],[-3,1],[-3,1],[-2,2],[-4,3],[-2,1],[-3,0],[-7,-7],[-3,-2],[-5,-1],[-19,-1],[-4,-2],[-6,-3],[-3,-4],[-2,-3],[-2,-7],[-1,-3],[-2,-2],[-2,0],[-6,4],[-15,5],[-3,2],[-2,2],[-1,2],[-2,2],[-1,3],[-2,4],[-2,2],[-2,2],[-27,-1],[-14,4],[-5,3],[-13,11],[-22,12],[-13,3],[-30,-5],[-13,0],[-4,-1],[-21,-11],[-9,-1],[-40,5],[-3,1],[-2,2],[-1,2],[0,3],[0,3],[0,6],[1,7],[-1,3],[-1,2],[-3,1],[-5,3],[-3,1],[-4,0],[-18,-8],[-12,-1],[-2,-1],[-3,-2],[-3,-3],[-3,-5],[-2,-8],[-2,-2],[-10,-2],[-6,-5],[-5,-3],[-4,-1],[-9,-1],[-3,0],[-1,2],[-2,2],[-1,2],[-3,0],[-2,-2],[-2,-5],[-2,-4],[-1,-4],[-2,-2],[-4,-2],[-3,1],[-11,5],[-4,-1],[-3,-2],[-4,-8],[-2,-3],[-13,-8],[-4,-5],[-21,-33],[-2,-2],[-4,-2],[-3,0],[-2,2],[-12,8],[-3,0],[-2,-1],[-2,-2],[-1,-4],[0,-3],[2,-3],[1,-2],[5,-9],[1,-3],[0,-3],[-1,-3],[-2,-3],[-7,-6],[-2,-3],[-2,-4],[1,-3],[0,-3],[8,-8],[7,-4],[0,-2],[-1,-4],[-11,-18],[-2,-3],[-1,-4],[-1,-3],[-1,-7],[0,-13],[0,-3],[-1,-3],[-2,-2],[-7,-1],[-6,1],[-8,3],[-4,3],[-6,4],[-20,-1]],[[86837,82717],[-3,0]],[[86834,82717],[-2,-1],[0,-1]],[[86832,82715],[-13,-39],[-2,-5],[-3,-6],[-2,-4],[-1,-4],[1,-2],[7,-5],[2,-1],[2,-2],[1,-3],[1,-3],[0,-3],[0,-3],[-2,-10],[-8,-30],[1,-6],[2,-3],[2,-2],[3,-1],[0,-3],[0,-3],[-6,-6],[-18,-12],[-4,-4],[-4,-4],[-10,-20],[-1,-5],[-2,-3],[-2,-4],[-7,-7],[-1,-2],[1,-4],[2,-2],[1,-3],[9,-7],[1,-2],[0,-3],[-4,-3],[-3,-1],[-3,0],[-20,5],[-3,1],[-4,4],[-2,2],[-2,0],[-3,0],[-12,-5],[-24,1],[-2,-1],[1,-2],[1,-3],[9,-13],[2,-5],[0,-3],[0,-3],[0,-7],[-1,-6],[1,-6],[0,-3],[1,-3],[2,-11],[1,-2],[2,-3],[3,-4],[1,-2],[1,-3],[0,-4],[-1,-6],[-1,-4],[0,-3],[0,-4],[0,-3],[0,-4],[-2,-13],[0,-13],[0,-3],[-1,-3],[-4,-3],[-2,0],[-3,1],[-7,8],[-2,2],[-2,0],[-3,0],[-2,-2],[-2,-3],[-12,-19],[-2,-2],[-4,-3],[-2,-2],[-1,-3],[-1,-5],[1,-3],[3,-8],[1,-3],[-1,-4],[-1,-4],[-3,-8],[-2,-7],[0,-4],[2,-3],[2,-2],[25,-12],[4,-4],[2,-2],[0,-3],[0,-3],[-4,-5],[-9,-6],[-2,-6],[-3,-3],[-3,-2],[-3,1],[-2,1],[-11,10],[-1,2],[-3,4],[-5,6],[-4,4],[-9,7],[-13,17],[-8,7],[-5,3],[-3,0],[-11,-1],[-3,1],[-3,1],[-2,2],[-2,2],[-1,2],[-1,3],[-1,2],[-2,9],[-1,3],[-1,1],[-3,1],[-8,-2],[-9,2],[-2,0],[-11,-3],[-2,0],[-11,5],[-3,0],[-2,0],[-7,-4],[-3,-1],[-5,-1],[-3,-1],[-1,-3],[0,-5],[1,-3],[2,-2],[7,-6],[4,-3],[2,-5],[3,-8],[1,-5],[1,-3],[2,-2],[1,-2],[20,-8],[2,-2],[1,-2],[1,-3],[0,-3],[2,-8],[1,-3],[-1,-3],[-2,-3],[-2,-1],[-5,-2],[-2,-2],[0,-4],[0,-1],[2,-2],[35,-37],[2,-2],[3,0],[8,0],[2,-1],[2,-2],[1,-2],[1,-3],[0,-3],[-1,-5],[-2,-5],[-11,-19],[0,-4],[1,-2],[3,-2],[2,0],[6,0],[6,-1],[3,-1],[1,-2],[4,-4],[11,-9],[1,-2],[2,-5],[2,-5],[0,-3],[1,-3],[1,-3],[1,-2],[2,-2],[8,-4],[4,-4],[9,-14],[10,-18],[1,-3],[0,-2],[1,-3],[0,-3],[1,-6],[-1,-4],[-2,-3],[-10,-7],[-3,-1],[-2,-1],[-3,0],[-2,-2],[-1,-4],[0,-4],[1,-3],[2,-8],[1,-3],[0,-2],[-1,-1],[-4,0],[-19,5],[-6,0],[-5,-1],[-5,-2],[-4,-3],[-13,-11],[-4,-2],[-4,0],[-5,3],[-3,1],[-3,0],[-2,-3],[-3,-6],[0,-4],[0,-3],[2,-1],[11,-6],[1,-3],[1,-2],[0,-3],[-2,-4],[0,-1],[-17,-15],[-6,-4],[-8,-8],[-6,-9],[-3,-6],[-4,-14],[-1,-6],[-1,-7],[0,-7],[0,-3],[1,-3],[4,-13],[2,-11],[2,-8],[0,-3],[-3,-2],[-5,-2],[-4,0],[-4,0],[-3,1],[-3,1],[-2,-1],[-2,-3],[0,-4],[0,-3],[1,-9],[0,-3],[-2,-1],[-6,1],[-10,4],[-4,1],[-6,-1],[-7,-1],[-7,-1],[-3,1],[-3,2],[-3,3],[-3,7],[-3,7],[-2,3],[-3,3],[-3,3],[-3,2],[-3,0],[-3,-2],[-3,-5],[-3,-6],[-5,-15],[-3,-6],[-2,-4],[-5,-2],[-2,-1],[-3,0],[-10,2],[-2,0],[-1,-2],[2,-4],[6,-7],[6,-12],[5,-11],[1,-10],[2,-8],[1,-2],[3,-2],[2,0],[2,2],[2,2],[2,6],[1,3],[2,2],[2,3],[2,1],[2,1],[3,0],[3,-1],[2,-2],[2,-2],[1,-3],[0,-4],[1,-7],[1,-3],[2,-1],[2,0],[3,-1],[41,-24],[2,-2],[1,-2],[0,-3],[-2,-2],[-6,-2],[-2,-1],[-2,-2],[-1,-3],[0,-4],[2,-3],[2,-2],[5,-4],[2,-1],[1,-3],[1,-3],[0,-5],[1,-2],[1,-2],[6,-2],[2,-2],[1,-3],[0,-5],[4,-8],[1,-3],[2,-2],[1,-1],[2,0],[4,3],[2,0],[2,-2],[2,-2],[1,-3],[0,-5],[1,-3],[1,-2],[8,-5],[2,-2],[1,-3],[1,-11],[1,-3],[1,-2],[2,-2],[8,-2],[2,-2],[1,-3],[1,-3],[0,-2],[2,-2],[2,-2],[5,0],[3,-1],[1,-3],[1,-4],[-1,-8],[1,-4],[1,-3],[2,-2],[2,-2],[2,-3],[1,-4],[-1,-7],[1,-4],[1,-3],[1,-2],[1,-1],[0,-3],[0,-4],[0,-7],[0,-3],[0,-3],[-3,-1],[-3,1],[-2,-1],[-2,-2],[-2,-4],[-6,-5],[-2,-2],[-1,-4],[-1,-4],[-3,-4],[-2,-3],[-5,-3],[-2,-1],[-1,-3],[1,-2],[2,-3],[4,-3],[0,-3],[0,-2],[-3,-3],[-2,-2],[-2,-2],[-1,-3],[0,-4],[1,-3],[1,-3],[0,-4],[0,-5],[-2,-7],[0,-5],[0,-3],[-1,-4],[-3,-6],[-1,-4],[0,-6],[1,-2],[2,-3],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-3],[1,-2],[7,-8],[1,-2],[0,-3],[-1,-3],[-3,-1],[-2,0],[-2,2],[-1,3],[-1,2],[-2,1],[-2,-1],[-3,-2],[-6,-8],[-3,0],[-2,1],[-1,2],[0,3],[0,3],[5,12],[0,3],[0,2],[0,1],[-1,1],[-1,1],[-2,1],[-5,-1],[-2,0],[-3,1],[-2,2],[-1,2],[-1,3],[1,2],[0,4],[0,3],[-1,2],[-2,2],[-2,2],[-5,2],[-5,1],[-2,0],[-4,-2],[-4,-3],[-4,-3],[-3,-4],[-2,-3],[-10,-21],[-2,-4],[1,-4],[2,-3],[4,-4],[2,-2],[1,-2],[0,-4],[-1,-4],[-4,-5],[-2,-3],[-3,-2],[-3,0],[-2,0],[-3,2],[-1,2],[-1,2],[-1,3],[1,3],[0,7],[1,4],[-1,3],[-1,2],[-1,3],[-4,3],[-2,2],[-2,5],[-1,2],[-3,1],[-13,-2],[-5,-2],[-4,-2],[-12,-11],[-6,-9],[-3,-7],[-6,-13],[-1,-3],[-3,-8],[-6,-20],[-1,-4],[-1,-4],[1,-4],[0,-4],[2,-6],[4,-15],[2,-9],[0,-2],[0,-5],[-1,-7],[-6,-25],[-3,-6],[-1,-2],[-4,-4],[-20,-16],[-3,-4],[-5,-11],[-1,-4],[0,-5],[1,-7],[1,-5],[1,-3],[0,-4],[0,-4],[-1,-8],[-1,-5],[-2,-4],[-2,-6],[-9,-17],[0,-8],[2,-24],[-1,-4],[-1,-3],[-1,-3],[-2,-2],[-2,-2],[-8,-6],[-2,-4],[0,-5],[1,-31],[0,-4],[0,-4],[1,-3],[6,-11],[1,-2],[7,-11],[2,-5],[1,-7],[1,-7],[0,-8],[0,-11],[-3,-13],[7,-5],[4,-3],[7,-11],[2,-2],[14,-5],[11,-8],[3,-1],[3,0],[4,1],[12,11],[3,1],[4,1],[7,-2],[24,-11],[4,-1],[6,1],[10,2],[5,3],[3,3],[1,3],[2,2],[1,2],[3,1],[3,0],[3,-1],[4,-2],[3,-3],[1,-3],[1,-2],[23,-8],[2,0],[3,3],[1,3],[0,7],[1,3],[1,3],[1,3],[6,1],[8,-2],[29,-10],[5,-3],[1,-3],[2,-2],[3,-1],[3,-1],[25,7],[2,1],[2,2],[2,3],[1,2],[3,5],[4,3],[3,1],[2,0],[33,-8],[8,0],[5,1],[1,3],[1,3],[2,3],[1,2],[2,2],[12,4],[2,1],[2,3],[1,3],[1,6],[2,2],[4,1],[19,-5],[22,5],[4,-1],[18,-12],[3,-1],[13,1],[2,-1],[2,-2],[2,-7],[0,-3],[1,-6],[7,-11],[25,-37],[-11,-16],[-2,-4],[0,-4],[1,-3],[2,-5],[1,-1],[4,-6],[21,-20],[3,-4],[3,-8],[2,-4],[2,-2],[2,-2],[2,-1],[3,0],[16,1],[3,0],[4,-2],[2,-1],[6,-6],[9,-7],[4,-3],[1,-3],[1,-2],[-2,-3],[-3,-3],[-3,-2],[-3,-1],[-25,0],[-11,-6],[-5,-1],[-5,0],[-3,1],[-2,2],[-1,2],[-4,4],[-4,3],[-3,0],[-2,-2],[-1,-3],[-2,-6],[-1,-4],[-1,-4],[0,-3],[1,-3],[0,-3],[1,-2],[3,-5],[3,-11],[1,-2],[0,-3],[0,-3],[-1,-3],[-13,-25],[-3,-4],[-6,-6],[-3,-2],[-4,-1],[-15,1],[-13,-2],[-5,0],[-14,5],[-3,1],[-3,-1],[-8,-5],[-2,-2],[1,-2],[1,-5],[0,-3],[-1,-4],[-3,-4],[-2,-4],[1,-4],[5,-1],[2,-1],[1,-3],[0,-3],[-1,-4],[0,-4],[1,-3],[8,-10],[1,-4],[-1,-3],[-1,-4],[-3,-5],[-3,-2],[-2,-2],[-11,-5],[-20,-4],[-47,5],[-3,0],[-2,-1],[-2,-1],[-2,-2],[-11,-15],[-12,-9],[-2,-2],[-1,-3],[0,-3],[0,-3],[4,-11],[4,-13],[1,-2],[0,-3],[0,-3],[0,-3],[0,-4],[-1,-3],[-1,-3],[-3,-3],[-2,-2],[-15,-9],[-7,-8],[-3,-1],[-2,-1],[-9,1],[-3,-1],[-3,-2],[-8,-7],[-2,-4],[-2,-6],[0,-4],[-1,-4],[0,-3],[-2,-2],[-16,-5],[-2,-2],[-6,-7],[-2,-2],[-3,-1],[-2,0],[-3,1],[-2,1],[0,2],[-1,3],[0,2],[-1,2],[-2,-1],[-2,-2],[-14,-25],[-4,-5],[-4,-2],[-9,0],[-20,-4],[-8,2],[-3,-2],[-3,-3],[-4,-7],[-3,-4],[-2,-2],[-4,-2],[-5,-4],[-6,-11],[-4,-8],[-3,-3],[-3,-2],[-4,-1],[-3,-2],[-5,-5],[-3,-3],[-2,-3],[-1,-3],[0,-5],[1,-3],[1,-3],[2,-3],[5,-15],[0,-3],[0,-3],[-1,-7],[-14,-56],[-2,-12],[-13,-45],[-2,-4],[-3,-3],[-7,-6],[-2,-2],[-2,-6],[-2,-2],[-2,0],[-2,0],[-13,9],[-12,14],[-3,1],[-2,0],[-2,0],[-16,-11],[-2,-3],[-4,-7],[-1,-2],[-2,-1],[-3,0],[-8,3],[-5,0],[-5,-1],[-2,-1],[-2,-2],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-2],[-2,-2],[-8,-4],[-2,-2],[-2,-3],[0,-6],[-2,-4],[-1,-3],[-19,-19],[-6,-9],[-6,-6],[-12,-17],[-1,-3],[-1,-4],[-3,-14],[-1,-7],[0,-3],[0,-13],[-1,-14],[1,-12],[-1,-3],[-1,-4],[-2,-5],[-1,-3],[-2,-2],[-1,-1],[-13,-8],[-1,-2],[-2,-2],[-1,-3],[0,-4],[-1,-3],[1,-4],[1,-3],[8,-12],[3,-2],[2,-1],[5,-1],[3,1],[3,1],[3,2],[4,5],[2,0],[3,-1],[4,-4],[5,-3],[4,-2],[5,-1],[3,1],[9,4],[5,-2],[8,-4],[17,-13],[13,-7],[9,0],[2,-2],[3,-4],[1,-8],[1,-5],[0,-4],[1,-4],[1,-2],[8,-6],[10,-5],[5,4],[8,12],[3,4],[2,1],[5,3],[26,1],[22,-9],[8,-1],[4,-1],[12,-7],[5,0],[6,1],[8,-2],[10,-6],[2,-1],[13,-8],[3,-4],[1,-3],[-2,-6],[0,-4],[-1,-3],[1,-6],[2,-11],[1,-3],[2,-5],[1,-2],[0,-3],[0,-3],[0,-4],[-2,-6],[0,-3],[0,-3],[2,-2],[5,-6],[3,-4],[2,-5],[0,-3],[3,-9],[1,-2],[0,-1],[0,-4],[0,-2],[0,-1],[-1,-1],[-8,-23],[-2,-6],[0,-1],[0,-1],[1,-2],[1,-2],[3,-4],[1,-2],[0,-3],[1,-3],[-1,-3],[0,-4],[-1,-3],[0,-3],[1,-3],[1,-3],[1,-2],[1,-2],[2,-1],[0,-2],[1,-2],[5,-34],[0,-2],[0,-6],[1,-6],[1,-2],[1,-6],[0,-3],[0,-3],[0,-3],[-1,-2],[-2,-3],[-1,-3],[0,-3],[0,-7],[0,-3],[0,-2],[-1,-3],[-2,-1],[-1,-2],[-9,-4],[-4,-3],[-1,-2],[-2,-3],[0,-3],[0,-3],[1,-2],[4,-1],[45,1],[13,5],[19,2],[3,1],[2,1],[3,4],[3,2],[5,0],[15,-5],[3,-2],[0,-3],[0,-3],[-1,-4],[-4,-17],[-2,-5],[-1,-3],[1,-2],[1,-3],[11,-14],[1,-2],[2,0],[4,1],[2,2],[6,5],[3,1],[3,0],[9,-6],[3,0],[2,0],[3,3],[2,2],[2,3],[3,5],[8,29],[2,3],[2,2],[1,1],[3,1],[3,1],[14,-2],[14,1],[14,6],[18,1],[7,3],[2,1],[4,2],[3,0],[4,-1],[5,-3],[6,-4],[2,-1],[41,0],[4,2],[7,11],[2,2],[3,0],[7,-3],[4,-4],[3,-1],[4,-1],[20,3],[4,-1],[14,-6],[3,-1],[3,0],[5,2],[2,3],[2,3],[5,17],[1,3],[2,2],[2,1],[2,1],[3,0],[2,-1],[4,-2],[3,-1],[8,1],[19,11],[2,1],[2,-1],[8,-5],[2,-1],[3,-1],[3,2],[2,2],[1,4],[1,3],[0,3],[-1,3],[0,2],[-3,5],[0,3],[0,2],[1,3],[3,4],[1,2],[0,6],[0,3],[1,4],[0,3],[1,4],[5,12],[1,3],[1,2],[2,2],[7,7],[12,8],[3,4],[4,3],[2,2],[5,1],[14,1],[3,1],[2,1],[3,5],[2,2],[9,8],[2,1],[2,0],[2,-3],[0,-1],[1,-1],[0,-2],[0,-2],[3,0],[2,0],[8,3],[1,1],[0,1],[1,7],[1,3],[2,7],[2,3],[1,2],[2,2],[2,1],[13,0],[3,-1],[3,-3],[4,-4],[2,-4],[13,-26],[1,-3],[1,-1],[3,-2],[3,0],[3,0],[2,1],[3,1],[6,8],[2,1],[1,0],[2,-4],[0,-3],[1,-2],[2,-3],[2,-1],[5,-1],[10,3],[2,-1],[31,-17],[2,-1],[1,0],[18,7],[5,0],[2,1],[2,1],[4,4],[6,9],[1,3],[2,1],[4,0],[6,-4],[4,-1],[3,1],[1,2],[1,3],[0,11],[0,5],[0,3],[1,2],[2,0],[5,-2],[3,0],[2,1],[6,4],[2,1],[3,0],[5,-2],[2,0],[2,1],[2,1],[2,2],[2,1],[3,-1],[6,-5],[3,-2],[3,0],[2,1],[2,1],[2,2],[2,2],[1,2],[1,3],[0,3],[-1,3],[-1,5],[-2,11],[0,3],[0,3],[1,2],[2,2],[16,0],[2,1],[2,1],[2,2],[4,8],[2,2],[2,1],[2,-1],[6,-5],[14,-9],[2,-1],[6,-8],[6,-9],[17,-13],[2,-2],[1,-3],[0,-3],[-3,-11],[-1,-3],[0,-1],[0,-2],[1,-4],[2,-4],[2,-2],[3,-2],[2,0],[2,1],[7,4],[2,0],[2,-1],[2,-2],[0,-3],[0,-5],[0,-3],[1,-3],[18,-9],[2,-2],[2,-2],[2,-6],[1,-4],[-1,-6],[-2,-9],[-1,-5],[-2,-1],[-19,7],[-2,-1],[-1,-3],[-3,-17],[0,-3],[1,-5],[2,-2],[3,-2],[13,-3],[2,-1],[2,-1],[1,-3],[0,-4],[1,-7],[1,-4],[2,-2],[7,-3],[3,-2],[1,-4],[0,-5],[-2,-12],[-2,-6],[-3,-5],[-11,-7],[-4,-2],[-3,-3],[-2,-4],[-6,-25],[0,-4],[0,-4],[1,-5],[1,-4],[2,-2],[4,-6],[1,-3],[1,-3],[-2,-4],[-1,-2],[-6,-3],[-4,1],[-2,-1],[-2,-1],[-2,-1],[-2,-2],[-1,-2],[-1,-3],[-2,-6],[-2,-3],[-1,-2],[-2,-2],[-3,-4],[-6,-11],[-1,-3],[-13,-22],[-4,-5],[-1,-2],[-2,-2],[0,-4],[-1,-4],[1,-6],[1,-4],[2,-4],[2,-5],[4,-7],[1,-2],[0,-2],[-2,-1],[-2,-1],[-8,0],[-2,0],[-2,-2],[-1,-4],[-1,-8],[0,-16],[1,-7],[1,-5],[1,-3],[1,-2],[2,-2],[16,-7],[1,-1],[0,-2],[-1,-2],[-13,-9],[-1,-3],[0,-3],[0,-3],[1,-3],[2,-2],[2,-2],[3,0],[17,0],[2,-1],[1,-3],[0,-6],[1,-7],[1,-3],[1,-2],[1,-2],[3,-5],[0,-3],[0,-4],[-4,-8],[-2,-4],[-6,-8],[-1,-1],[-3,0],[-2,0],[-3,-1],[-3,-3],[-4,-8],[-5,-6],[-2,-1],[-2,-4],[-2,-5],[-6,-22],[0,-4],[0,-7],[1,-4],[2,-3],[7,-4],[1,-3],[0,-2],[0,-4],[0,-4],[-4,-11],[-3,-6],[-8,-5],[-7,2],[-10,-1],[-3,1],[-4,4],[-4,6],[-3,2],[-3,3],[-6,2],[-42,4],[-5,2],[-19,15],[-6,1],[-5,0],[-15,-4],[-4,0],[-3,1],[-2,2],[-2,2],[-7,2],[-2,1],[-1,1],[-13,20],[-2,2],[-30,-12],[-5,1],[-3,1],[-2,2],[-1,2],[0,3],[-2,5],[0,3],[-2,2],[-2,1],[-2,0],[-7,-1],[-39,11],[-2,1],[-1,1],[-6,11],[-6,6],[-11,7],[-11,4],[-5,3],[-1,1],[-1,2],[-1,2],[0,2],[-1,2],[-2,2],[-2,0],[-13,0],[-3,1],[-2,1],[-1,2],[-4,7],[-1,2],[-2,2],[-5,3],[-2,0],[-3,1],[-5,-1],[-3,-1],[-5,-3],[-7,-7],[-7,-10],[-3,-6],[-1,-4],[1,-6],[1,-2],[1,-3],[0,-3],[0,-3],[0,-3],[-1,-4],[-2,-7],[0,-3],[0,-3],[1,-2],[2,-2],[5,-3],[1,-2],[2,-2],[1,-2],[0,-3],[1,-3],[0,-3],[0,-3],[0,-10],[-1,-3],[-1,-3],[-4,-8],[-3,-6],[-2,-4],[0,-3],[1,-2],[3,-5],[3,-3],[14,-11],[1,-2],[0,-3],[-4,-18],[0,-3],[0,-3],[1,-3],[0,-2],[2,-3],[1,-2],[1,-2],[2,-2],[20,-13],[4,-4],[2,-5],[1,-2],[1,-3],[0,-3],[0,-6],[-1,-3],[-1,-3],[-1,-2],[-2,-2],[-14,-14],[-3,-5],[-2,-4],[-3,-4],[-5,-3],[-29,-9],[-4,-3],[-2,-3],[-2,-2],[-2,-1],[-4,1],[-6,4],[-3,-1],[-3,-1],[-5,-4],[-4,0],[-3,0],[-2,2],[-3,1],[-4,-1],[-7,-5],[-4,-2],[-5,0],[-5,3],[-3,0],[-9,-2],[-3,0],[-3,1],[-20,12],[-2,-1],[0,-2],[0,-3],[-1,-3],[-1,-2],[-1,-2],[-4,-4],[-3,-4],[-1,-2],[-3,-3],[-31,-17],[-3,-5],[-2,-4],[-2,-2],[-3,0],[-6,1],[-3,0],[-2,-2],[-3,-4],[-4,-6],[-4,-6],[-2,-3],[-1,-2],[0,-4],[-1,-7],[-1,-14],[-2,-19],[-1,-4],[-2,-2],[-2,-1],[-3,1],[-2,2],[-4,3],[-4,3],[-3,1],[-7,0],[-3,-1],[-3,-2],[-1,-4],[-1,-3],[1,-4],[3,-16],[0,-3],[0,-3],[4,-13],[1,-5],[0,-3],[0,-2],[-1,-2],[-25,-19],[-5,-5],[-4,-6],[-3,-4],[-2,-2],[-2,-1],[-2,1],[-4,3],[-5,7],[-2,1],[-2,1],[-2,0],[-22,-11],[-3,-4],[-3,-3],[-1,-3],[-1,-3],[-2,-2],[-2,-1],[-4,2],[-2,2],[-1,3],[0,6],[-1,3],[-1,2],[-1,1],[-2,0],[-8,-9],[-6,-6],[-2,-2],[-2,-3],[-3,-13],[-2,-2],[-2,-1],[-11,1],[-2,1],[-2,2],[-3,4],[-2,2],[-1,1],[-3,0],[-3,-1],[-3,-4],[-2,-3],[-2,-7],[-1,-2],[-2,-2],[-8,-5],[-5,-5],[-10,-11],[-5,-2],[-43,-6],[-39,10],[-6,-4],[2,-5],[3,-4],[0,-3],[0,-3],[-1,-5],[-2,-6],[-4,-8],[-1,-3],[-1,-4],[-1,-7],[1,-5],[1,-3],[1,-2],[1,-3],[0,-3],[0,-6],[1,-3],[0,-3],[1,-2],[1,-2],[2,-2],[6,-4],[1,-2],[0,-2],[0,-2],[0,-2],[0,-7],[0,-2],[1,-2],[1,-2],[1,-2],[5,-3],[1,-2],[1,-2],[3,-15],[3,-35],[0,-3],[0,-4],[-1,-3],[-1,-4],[-1,-2],[-1,-3],[-1,-2],[-2,-2],[-3,-1],[-5,0],[-2,1],[-3,2],[-2,1],[-11,14],[-2,1],[-2,2],[-6,0],[-6,-1],[-11,-6],[-6,-8],[-9,-17],[-8,-27],[-5,-8],[-1,-2],[-3,-2],[-2,0],[-9,4],[-6,1],[-4,-1],[-10,-6],[-1,-1],[-1,-3],[-2,-3],[-1,-5],[0,-7],[-1,-12],[-1,-3],[-1,-3],[-4,-4],[-6,-8],[-1,-3],[-1,-4],[-1,-3],[-1,-6],[1,-4],[-1,-4],[-1,-4],[-4,-12],[-8,-24],[-1,-5],[-2,-3],[-2,-2],[-14,-4],[-5,0],[-8,2],[-2,-1],[-2,-1],[-2,-2],[-2,-4],[-1,-3],[-1,0],[-1,-4],[-4,-14],[0,-4],[-1,-3],[1,-4],[1,-3],[2,-2],[7,-1],[1,-2],[1,-2],[4,-13],[2,-7],[1,-5],[1,-3],[0,-2],[-2,-3],[-2,-2],[-2,-1],[-3,0],[-2,-1],[-2,-1],[-1,-3],[-2,-2],[-10,-24],[-1,-4],[-1,-4],[0,-6],[-1,-3],[-1,-2],[-5,-2],[-1,-3],[-2,-2],[-4,-10],[-1,-3],[-1,-3],[0,-5],[2,-3],[3,-5],[0,-3],[-1,-4],[-1,-3],[-2,-1],[-6,-4],[-1,-2],[-2,-2],[-1,-2],[-1,-3],[-1,-3],[1,-3],[2,-5],[2,-4],[19,-24],[2,3],[1,3],[1,3],[0,7],[1,10],[0,3],[0,4],[1,3],[2,2],[2,0],[3,-1],[7,-5],[3,-1],[3,0],[2,1],[5,0],[10,-1],[2,1],[2,2],[0,2],[0,3],[1,2],[2,1],[2,-1],[2,-1],[2,-2],[6,-9],[15,-36],[1,-5],[0,-4],[-1,-3],[-2,-5],[0,-1],[-4,-6],[-3,-5],[-4,-11],[-1,-3],[-2,-1],[-18,-10],[-2,-2],[-1,-2],[-1,-3],[-1,-3],[0,-4],[0,-3],[1,-4],[3,-4],[11,-9],[1,-3],[0,-3],[-1,-4],[-1,-2],[0,-4],[1,-3],[2,-2],[10,-4],[3,-1],[3,1],[1,0],[3,3],[2,3],[2,3],[1,3],[1,3],[2,3],[1,2],[3,2],[1,0],[2,0],[7,-1],[3,0],[3,3],[4,3],[1,0],[2,0],[1,-3],[1,-3],[3,-14],[2,-8],[1,-3],[0,-2],[1,-14],[1,-3],[1,-2],[2,-2],[3,0],[2,2],[2,2],[2,2],[1,2],[2,1],[2,1],[8,0],[2,0],[2,2],[2,1],[5,5],[2,0],[2,-3],[2,-8],[1,-6],[0,-10],[1,-9],[1,-12],[0,-6],[1,-2],[2,-3],[4,-4],[6,-3],[2,-3],[1,-5],[0,-8],[2,-6],[8,-8],[5,-2],[2,-2],[1,-2],[1,-6],[1,-5],[2,-4],[1,-3],[0,-2],[-1,-3],[-2,-1],[-2,0],[-6,0],[-2,0],[-2,-1],[-1,-2],[-2,-3],[-3,-12],[-5,-11],[-3,-4],[-3,-4],[-2,-1],[-8,-4],[-2,-1],[0,-3],[1,-10],[1,-3],[0,-3],[0,-4],[0,-4],[-1,-4],[-2,-3],[0,-1],[-1,-2],[-1,-3],[0,-4],[2,-4],[2,-2],[3,0],[12,5],[2,0],[2,0],[2,-2],[2,-2],[1,-2],[2,-1],[2,-2],[3,0],[2,0],[3,0],[2,0],[2,-1],[1,-1],[6,-7],[1,-4],[1,-4],[2,-9],[1,-4],[1,-3],[0,-2],[-3,-10],[-1,-3],[0,-5],[0,-20],[0,-6],[-2,-11],[-1,-4],[0,-5],[1,-5],[2,-10],[0,-3],[0,-3],[0,-4],[-2,-4],[-3,-2],[-13,-3],[-12,0],[-2,0],[-2,-1],[-1,-2],[-1,-4],[0,-5],[1,-8],[0,-4],[1,-4],[2,-5],[2,-2],[2,-1],[2,-1],[7,0],[2,-1],[7,-6],[12,-16],[1,-1],[1,-2],[0,-4],[0,-6],[0,-14],[0,-12],[0,-3],[0,-7],[0,-1],[0,-6],[-4,-30],[0,-6],[0,-4],[3,-7],[1,-1],[0,-4],[-2,-6],[-27,-93],[-2,2],[-2,1],[-8,1],[-4,-2],[-8,-6],[-2,1],[-2,1],[-1,3],[-1,1],[-4,1],[-2,1],[-1,2],[-1,2],[-1,2],[-2,0],[-2,-1],[-5,-4],[-2,0],[-9,-2],[-3,-1],[-2,-4],[-4,-7],[-3,-9],[-2,-14],[-1,-3],[-2,-6],[-14,-25],[-1,-3],[-4,-12],[-3,-6],[-1,-2],[-3,-2],[-3,-3],[-2,-5],[-1,-5],[0,-3],[1,-3],[1,-2],[1,-3],[0,-2],[0,-4],[0,-3],[-1,-3],[-7,-21],[-2,-3],[-2,-2],[-2,-1],[-6,0],[-7,1],[-5,2],[-8,6],[-2,1],[-3,1],[-2,0],[-2,0],[-3,-2],[-10,-7],[-26,-18],[-7,-8],[-10,-12],[-2,-5],[-1,-6],[-1,-4]],[[86284,77152],[-17,-11],[-6,-1]],[[86261,77140],[-8,1],[-7,5],[-3,9],[-3,6],[-7,3],[-1,0],[-14,0]],[[86218,77164],[-14,-6],[-12,-9]],[[86192,77149],[-12,-3],[-13,10],[-25,27],[-21,23],[-11,17],[-7,7],[-13,6],[-3,7],[-1,11],[3,13],[-11,10],[-6,4],[-5,1],[1,25],[-1,7],[-5,4],[-14,2],[-5,4],[-4,6],[-1,6],[-1,18],[-7,20],[-11,3]],[[86019,77377],[-1,0],[-13,-3]],[[86005,77374],[-13,3],[-6,6],[-3,7],[-2,10],[-1,27],[-1,8],[-2,7],[-5,8],[-6,5],[-7,4],[-14,2],[-7,-3],[-2,-8],[0,-23],[-3,-11]],[[85933,77416],[-6,-5]],[[85927,77411],[-6,2],[-13,17],[-7,6],[-8,3]],[[85893,77439],[-7,-1],[-6,-5]],[[85880,77433],[-10,-15],[-5,-3]],[[85865,77415],[-8,2],[-6,5],[-4,9],[-10,30],[-5,6],[-14,4],[-12,13],[-7,4],[-7,0],[-12,-6]],[[85780,77482],[-7,-2]],[[85773,77480],[-7,3],[-3,8],[2,10],[4,10],[2,2],[4,1],[2,3],[1,7],[0,6],[0,5],[-2,4],[-2,2],[-8,1],[-7,4],[-13,11],[-4,4]],[[85742,77561],[-1,0],[-1,-1]],[[85740,77560],[-9,-17]],[[85731,77543],[-2,-2]],[[85729,77541],[-21,7]],[[85708,77548],[-47,-5],[-3,-2]],[[85658,77541],[-2,-3],[-3,-8],[-2,-4],[-7,-2],[-15,8],[-6,-4]],[[85623,77528],[-6,-6],[-7,-1]],[[85610,77521],[-29,1],[-7,3],[-6,7],[-9,16],[-6,6],[-7,3]],[[85546,77557],[-4,-1],[-2,-1],[-2,-3],[-3,-5],[-2,-3]],[[85533,77544],[-4,0],[-14,2],[-7,5],[-6,8],[-5,9],[-6,6],[-13,8],[-5,6],[-4,12],[-1,10],[0,10],[-2,12],[-10,16],[-29,12],[-9,18],[0,12],[1,14],[3,13],[3,9],[1,8],[-4,10],[-7,18],[-3,29],[6,21],[18,37],[3,11],[1,10],[1,11],[0,12],[-3,7],[-48,30],[-14,13],[-7,16],[0,7],[2,7],[2,6],[3,5],[1,5],[0,6],[0,13],[-3,6],[-12,14],[-4,8],[3,6],[2,6],[4,14],[3,7],[6,11],[3,5],[0,13],[-2,15],[-4,13],[-5,5],[-9,16],[-1,5],[-1,4],[-1,3],[0,4],[1,4],[1,4],[1,3],[0,5],[1,4],[-3,11],[-6,7],[-7,6],[-5,8],[-22,64],[-9,16],[-18,19],[-4,3],[-14,31],[-10,11],[-4,9],[-1,12],[-1,13],[-4,21],[-1,10],[0,16],[0,8],[1,8],[2,6],[9,14],[5,13],[3,8],[1,7],[-2,9],[-5,3],[-1,0],[-5,-1],[-5,-2],[-2,-2],[-3,-3],[-2,-3],[-2,-4],[0,-4],[1,-4]],[[85246,78493],[1,-4],[0,-6]],[[85247,78483],[-6,-11],[-7,0],[-6,8],[-4,13],[0,11],[2,9],[3,8],[5,6],[5,2],[5,1],[5,4],[3,8],[0,8],[-2,5],[-3,4],[-4,1],[-14,1],[-7,4],[-3,10],[1,13],[2,10],[8,17],[-6,14],[-9,7],[-21,9],[-6,8],[-1,6],[8,14],[6,13],[0,7],[-3,8],[-2,12],[1,1],[2,2],[2,4],[1,3],[-1,3],[-3,5],[0,3],[-15,6],[-4,4],[-56,134],[-1,9],[2,12],[5,7],[7,4],[6,2],[0,3],[2,7],[9,29],[1,10],[-7,12],[-10,5],[-12,2],[-28,15],[-5,1],[-5,3],[-2,8],[1,8],[22,20],[14,6],[-6,7],[-21,8],[-8,8],[8,23],[2,10],[-2,9],[-9,14],[-4,10],[-2,8],[-4,7],[-8,2],[-8,-1],[-5,2],[0,10],[3,14],[0,12],[-11,8],[-25,26],[-3,1]],[[85019,79219],[-1,0],[-1,-5]],[[85017,79214],[-1,-6]],[[85016,79208],[-3,-3],[-3,0]],[[85010,79205],[-3,-2],[-5,1],[-5,10],[-4,13],[-1,12],[3,12],[5,7],[7,3],[7,1],[5,4],[-2,9],[-8,17],[4,6],[5,4],[10,5],[-4,12],[-6,4],[-14,0]],[[85004,79323],[-3,-2],[-6,-8]],[[84995,79313],[-2,0],[-30,47],[-2,4],[-1,4],[0,6],[1,4],[1,4],[-2,6],[-6,4],[-28,-6],[-12,-8],[-7,-2],[-6,4],[0,9],[4,10],[5,8],[3,1],[6,3],[3,3],[1,3],[2,16],[-15,14],[-8,10],[-3,12],[-5,9],[-10,-2]],[[84884,79476],[-18,-9]],[[84866,79467],[-6,5],[-6,18],[-6,4],[-7,2],[-84,62],[-15,4],[-15,-1],[-28,-10],[-6,-4],[-5,-8],[0,-10]],[[84688,79529],[3,-11],[2,-9]],[[84693,79509],[-8,-5]],[[84685,79504],[-5,3],[-8,18],[-5,5],[-1,0]],[[84666,79530],[-15,-4]],[[84651,79526],[-7,0],[-6,8],[-1,4],[1,4],[-1,4],[-2,5],[-3,3],[-7,6],[-3,1],[-31,0],[-8,1],[-13,8],[-13,5],[-6,5],[-7,8],[-5,7],[-5,19],[-1,2],[-4,10],[-4,13],[-5,7],[-6,6],[-5,4],[-7,0]],[[84502,79656],[-8,-2],[-6,-5]],[[84488,79649],[-5,-7],[-5,-2],[-6,6],[-9,14],[-4,3],[-7,3],[-3,4],[-2,4],[-6,15],[-5,8],[-26,18],[-8,4],[-32,5],[-9,3],[-7,6],[-10,17],[-7,7]],[[84337,79757],[-7,-3],[-8,-19]],[[84322,79735],[-5,-6],[-7,4],[4,6],[2,3],[2,2],[-3,8],[-6,4]],[[84309,79756],[-6,-1],[-2,-9]],[[84301,79746],[0,-10]],[[84301,79736],[-1,-4]],[[84300,79732],[-3,0],[-11,9],[-3,2],[-11,2],[-4,2],[-7,9],[-9,3],[-9,1],[-7,-1],[-5,-4]],[[84231,79755],[-9,-12],[-6,-5]],[[84216,79738],[-4,-7],[-3,-2],[-42,-4],[-40,-18],[-108,-5],[-13,-7],[-6,-1],[-6,6],[-6,10],[-6,7],[-6,2],[-6,-2],[-19,-10],[-16,-3],[-6,-4],[-11,-13],[-7,-5],[-53,1]],[[83858,79683],[-1,0],[-69,-26],[-35,-30]],[[83753,79627],[-15,-5],[-13,-2],[-2,0],[-13,4],[-5,-1],[-3,-2],[-8,-9],[-13,-9],[-14,-6],[-14,-1],[-27,9]],[[83626,79605],[-51,-6],[-8,-3],[-5,-7]],[[83562,79589],[1,-9],[-2,-6],[-20,-15],[-10,-13]],[[83531,79546],[-17,-34]],[[83514,79512],[-11,-14],[-24,-23]],[[83479,79475],[-21,-27]],[[83458,79448],[-17,-28],[-8,-10]],[[83433,79410],[-2,-3],[-2,-6],[-1,-4]],[[83428,79397],[-2,-5],[-3,-4],[-6,-5]],[[83417,79383],[-4,-3],[-1,-6]],[[83412,79374],[-2,-5],[-3,-4]],[[83407,79365],[-4,-3],[-9,-5],[-12,-15],[-6,-4],[-25,-15],[-9,-12]],[[83342,79311],[3,-15],[0,-6]],[[83345,79290],[2,-10]],[[83347,79280],[0,-7],[-4,-14]],[[83343,79259],[-1,-5],[-1,-11],[1,-7]],[[83342,79236],[2,-7],[4,-7],[7,-6]],[[83355,79216],[9,-3],[17,-1],[1,0],[6,3],[12,10],[5,3],[30,3],[6,3],[11,7],[7,2],[3,-2],[7,-10]],[[83469,79231],[13,-8],[20,-16]],[[83502,79207],[12,-4],[15,-9]],[[83529,79194],[5,-5]],[[83534,79189],[-5,-13],[-1,-5],[0,-6]],[[83528,79165],[0,-5],[-3,-8]],[[83525,79152],[-1,-3],[0,-17],[-2,-9]],[[83522,79123],[-6,-13],[-1,-10],[-1,-5],[-3,-3],[-2,-3],[-2,-2],[0,-6]],[[83507,79081],[0,-4],[2,-3]],[[83509,79074],[0,-5],[6,-15],[23,-23],[5,-11],[0,-5],[-1,-9]],[[83542,79006],[-1,-5],[1,-5]],[[83542,78996],[4,-8],[1,-5],[2,-3],[1,-2]],[[83550,78978],[0,-2],[-2,-5]],[[83548,78971],[-1,-5],[0,-4],[1,-5],[1,-4],[-3,-5],[-4,-12],[-2,-5],[-4,-4],[-4,-2],[-3,-3]],[[83529,78922],[-3,-7],[0,-8]],[[83526,78907],[1,-6],[2,-6]],[[83529,78895],[1,-6],[0,-7],[-1,-5]],[[83529,78877],[-7,-12],[-6,-19],[-4,-7],[-6,-3]],[[83506,78836],[-12,1]],[[83494,78837],[-1,0],[-3,-1]],[[83490,78836],[-3,-4],[-2,-5],[-2,-4],[-4,-3],[-4,-1],[-3,1],[-2,-1],[-4,-5],[-1,-4],[-1,-6],[-2,-5],[-3,-2]],[[83459,78797],[-8,-1],[-5,-5]],[[83446,78791],[-9,-13]],[[83437,78778],[-16,-14],[-38,-52]],[[83383,78712],[-4,-8]],[[83379,78704],[-4,-3]],[[83375,78701],[-8,2],[-4,-1]],[[83363,78702],[-3,-3],[-4,-8],[-5,-17]],[[83351,78674],[-3,-10],[-1,-11],[0,-14],[-3,-7],[-14,-20],[-4,-9],[-1,-13],[2,-6]],[[83327,78584],[1,-6]],[[83328,78578],[-5,-11],[-2,-5],[0,-5]],[[83321,78557],[-2,-4],[-2,-3]],[[83317,78550],[-14,-4],[2,-8]],[[83305,78538],[3,-11],[1,-11]],[[83309,78516],[-6,-4],[-3,-3],[-6,-16],[-3,-2],[-6,-3]],[[83285,78488],[-3,-3],[0,-3]],[[83282,78482],[-3,-14],[1,-6],[1,-6],[0,-4],[-3,-1],[-8,3]],[[83270,78454],[-1,0],[-2,-2]],[[83267,78452],[-2,-9],[8,-15]],[[83273,78428],[-4,-5],[-1,-2]],[[83268,78421],[-3,-1],[2,-8],[-1,-8],[-2,-8],[-1,-8],[0,-9]],[[83263,78379],[-2,-7],[-4,-4],[-5,-1],[0,-13],[-7,-13],[-22,-21],[-3,-4],[-6,-14],[-15,-22],[3,-10]],[[83202,78270],[-1,-11],[-3,-11]],[[83198,78248],[-5,-7],[5,-12],[0,-12],[-3,-23],[-2,-8],[-11,-22],[-4,-6],[-7,-5],[-4,-2],[-3,-1],[-3,-3],[-2,-13],[-3,-3],[-4,-1],[-2,-4],[-2,-5]],[[83148,78121],[-3,-5],[-3,-3]],[[83142,78113],[-3,-1]],[[83139,78112],[-3,-2],[-2,-6]],[[83134,78104],[0,-6],[-6,-32],[-1,-3]],[[83127,78063],[-2,-3],[-1,-3],[1,-4],[2,-2]],[[83127,78051],[1,-1],[0,-1]],[[83128,78049],[0,-4],[-1,-2],[-5,-19],[-7,-11]],[[83115,78013],[-3,-5]],[[83112,78008],[-2,-1]],[[83110,78007],[-8,0]],[[83102,78007],[-1,0],[-3,-1]],[[83098,78006],[-2,-4],[-3,-7],[-1,-6],[2,-3],[9,0],[2,-4],[-1,-7],[3,-1],[7,1],[3,0],[3,-2]],[[83120,77973],[3,-5],[1,-1],[1,0]],[[83125,77967],[17,5]],[[83142,77972],[5,-1],[6,-2]],[[83153,77969],[1,-3],[2,-12]],[[83156,77954],[0,-4],[-1,-4],[-3,-2]],[[83152,77944],[-3,-4],[-1,-10],[-1,-32],[1,-4]],[[83148,77894],[2,-5],[1,-4],[1,-5]],[[83152,77880],[-2,-24],[-1,-10]],[[83149,77846],[-3,-9],[-3,-9],[-4,-7],[-14,-17],[-8,-13],[-4,-6]],[[83113,77785],[-6,-4],[-27,-11],[-28,-4]],[[83052,77766],[-7,1],[-4,2],[-4,2],[-3,1],[-3,-2],[-3,-3],[-3,-1],[-28,-8],[-14,-7],[-8,-2],[-11,7],[-1,0],[-7,-4],[-12,-13],[-8,-6],[-5,-6],[-9,-9]],[[82922,77718],[-7,-9],[-2,-4],[-1,-5]],[[82912,77700],[-1,-11],[-1,-3],[-6,-4]],[[82904,77682],[-18,-5],[-3,-5]],[[82883,77672],[-2,-14]],[[82881,77658],[-6,-5],[-7,-2],[-6,-3]],[[82862,77648],[-18,-21],[-3,0],[-2,-10],[-4,-9]],[[82835,77608],[-6,-8],[-5,-6]],[[82824,77594],[-17,-10],[-5,-7],[-5,-8]],[[82797,77569],[-5,-6],[-10,-11]],[[82782,77552],[-24,-15],[-7,-8],[-3,-4],[-6,-18],[-9,-2],[-1,-1],[-1,1],[-3,0],[-2,1],[-3,4],[-3,0],[-5,-4],[-2,-1],[-3,1],[-79,57],[-61,4],[-54,28],[-2,2],[-92,70],[-10,12],[-9,22],[-10,19],[-11,14],[-77,39],[-23,12],[-23,0]],[[82259,77785],[-23,-9],[-84,-63],[-9,-4]],[[82143,77709],[-9,0],[-29,9],[-1,0],[-19,-4],[-10,0],[-6,3],[-17,-1],[-6,3],[-44,42],[-40,59],[-4,7],[-6,17],[-4,7],[-5,6],[-67,51],[-27,9]],[[81849,77917],[-52,-10]],[[81797,77907],[-13,4],[-25,17],[-13,3]],[[81746,77931],[-1,0],[-23,-12]],[[81722,77919],[-23,-17]],[[81699,77902],[-18,-23],[-5,-4]],[[81676,77875],[-12,-4]],[[81664,77871],[-6,-5],[-34,-44]],[[81624,77822],[-3,-2],[-6,0],[-12,2],[-6,-1],[-48,-33],[-14,-15],[-5,-7],[-14,-13],[-5,-6],[-7,-13],[-57,-56],[-8,-11],[-7,-14]],[[81432,77653],[-20,-50],[-2,-10]],[[81410,77593],[-1,-9],[-1,-19],[-3,-12]],[[81405,77553],[-5,-5],[-14,0]],[[81386,77548],[-6,-3],[-6,-3],[-6,-6],[-16,-19]],[[81352,77517],[-26,-17],[-12,-5]],[[81314,77495],[-9,-1],[-8,3],[-24,17],[-31,4]],[[81242,77518],[-12,-3],[-85,-49],[-26,-16]],[[81119,77450],[-103,-8],[-12,-6]],[[81004,77436],[-32,-22],[-6,-2]],[[80966,77412],[-7,0],[-7,2],[-12,9],[-6,3],[-1,0],[-6,-2],[-5,-5],[-8,-14],[-5,-4],[-38,-18],[-48,-46]],[[80823,77337],[-35,-25],[-30,-14]],[[80758,77298],[-12,-2],[-12,1],[-11,5],[-27,22],[-16,6],[-5,4],[-14,21],[-3,1],[-3,-4],[-4,-8],[-10,-14]],[[80641,77330],[-12,-10],[-12,-7],[-12,-2]],[[80605,77311],[-74,29],[-23,7],[-4,1],[-9,13],[-15,8],[-1,0],[-58,-5],[-7,3],[-5,4],[-1,4],[-1,10],[-1,3],[-3,3],[-1,0]],[[80402,77391],[-11,-1]],[[80391,77390],[-5,3],[-15,8],[-7,5],[-7,4],[-35,4],[-29,-10],[-7,0],[-28,11],[-20,-4],[-30,0]],[[80208,77411],[-40,-10]],[[80168,77401],[-10,1],[-9,1],[-18,16],[-38,45],[-16,26],[-3,7],[-2,8],[-3,7],[-4,5],[-7,5],[-23,3],[-6,4],[-20,20],[-5,7],[-3,9],[1,8],[2,13],[-4,4],[-11,-1],[-6,1],[-4,4],[0,7],[6,21],[2,7],[0,7],[-1,20],[-5,27],[-1,11],[2,9],[2,8],[2,9],[1,14],[-2,6],[-14,1],[-13,6],[-3,0],[-9,-1],[-6,2],[-7,8],[-4,3],[-1,0]],[[79928,77759],[3,7],[10,22],[1,3],[1,5],[0,3],[0,4],[0,3],[0,3],[1,13],[0,3],[0,2],[-2,2],[-7,5],[-1,2],[-1,2],[0,3],[2,18],[1,2],[1,3],[7,5],[2,2],[1,3],[1,4],[0,4],[0,3],[0,2],[2,3],[5,3],[3,1],[2,0],[2,0],[2,-2],[4,-6],[2,-1],[1,1],[2,2],[6,8],[1,4],[1,4],[1,14],[3,13],[9,11],[2,8],[0,3],[0,6],[0,2],[1,2],[6,0],[2,1],[10,5],[4,0],[1,-2],[1,-3],[0,-2],[2,-2],[8,-6],[3,-1],[2,1],[2,3],[1,4],[1,3],[1,4],[1,4],[2,4],[5,6],[2,4],[0,3],[-1,3],[0,2],[0,3],[1,3],[2,2],[2,2],[4,1],[6,1],[8,0],[14,-5],[4,1],[6,3],[14,12],[3,4],[1,3],[1,3],[2,3],[1,1],[2,1],[3,-1],[5,-3],[2,-1],[3,0],[19,8],[5,1],[3,0],[3,-4],[1,-2],[2,-1],[3,1],[7,3],[3,3],[3,5],[4,11],[2,12],[-6,9],[-5,1],[-4,-2],[-4,-2],[-8,1],[-2,0],[-5,-1],[-2,0],[-2,1],[-2,1],[-2,2],[-4,6],[-6,14],[-7,11],[-2,2],[-3,1],[-2,0],[-3,2],[-2,2],[-3,4],[-2,1],[-3,1],[-7,-1],[-5,1],[-5,3],[-25,19],[-2,1],[-3,1],[-12,0],[-2,1],[-10,11],[-6,9],[-5,8],[-7,15],[-2,6],[-1,2],[0,2],[0,3],[2,3],[3,6],[13,13],[16,10],[6,6],[4,3],[2,1],[3,2],[2,3],[3,25],[0,6],[2,6],[8,29],[1,9],[2,18],[8,19],[4,5],[37,1],[3,1],[2,1],[1,1],[1,2],[6,10],[9,12],[2,3],[0,4],[0,6],[-2,8],[-1,5],[-2,3],[-3,4],[-22,18],[-2,3],[-2,4],[-2,7],[-2,2],[-2,2],[-5,0],[-3,1],[-4,3],[-3,4],[-3,5],[-1,2],[-1,3],[0,3],[0,5],[1,4],[2,4],[4,4],[13,9],[4,3],[3,4],[4,7],[5,13],[2,8],[2,15],[6,6],[1,1],[2,3],[1,4],[0,3],[0,3],[0,6],[-1,2],[1,3],[1,3],[1,3],[1,2],[10,14],[1,2],[2,2],[1,1],[3,1],[3,0],[5,-3],[4,-2],[0,-1],[1,-2],[1,-2],[1,-2],[2,-2],[8,-7],[8,-5],[2,-2],[1,-3],[1,-2],[2,-1],[3,0],[8,5],[3,0],[4,-1],[7,-5],[6,-2],[23,-2],[5,2],[12,7],[2,2],[3,4],[3,8],[3,8],[1,3],[1,0],[1,1],[6,2],[6,-5],[4,-3],[1,-3],[1,-2],[1,-2],[1,-3],[0,-6],[1,-3],[1,-2],[1,-2],[5,-6],[5,-9],[9,-15],[12,-17],[2,-1],[4,1],[7,4],[6,6],[2,2],[2,1],[3,-1],[1,-3],[1,-2],[1,-3],[1,-5],[0,-3],[1,-2],[2,-1],[2,0],[2,4],[1,4],[1,4],[0,3],[1,3],[1,3],[1,3],[5,6],[9,7],[24,11],[26,5],[19,15],[6,7],[23,17],[3,3],[4,7],[2,2],[16,9],[10,9],[5,7],[8,9],[2,2],[8,-1],[3,2],[5,3],[2,2],[4,-1],[4,-4],[5,-3],[32,-6],[19,1],[10,-1],[5,-3],[7,-5],[2,0],[7,0],[2,-1],[1,-3],[1,-2],[1,-14],[2,-5],[1,-3],[1,-2],[20,-5],[4,-2],[7,-6],[3,-2],[2,0],[19,7],[5,0],[11,-2],[4,2],[6,4],[10,13],[4,6],[2,5],[1,3],[1,4],[3,2],[7,5],[9,3],[3,1],[1,2],[2,4],[0,3],[-1,3],[0,5],[-1,6],[-1,3],[-1,5],[-3,7],[1,3],[1,2],[11,7],[15,21],[2,1],[2,2],[9,-1],[2,0],[1,1],[2,4],[2,10],[1,4],[0,6],[0,3],[3,5],[7,6],[19,14],[9,4],[6,1],[3,-1],[2,0],[3,0],[37,20],[10,3],[2,0],[5,1],[8,4],[7,1],[3,2],[5,4],[9,9],[9,6],[10,4],[3,2],[2,3],[6,11],[3,3],[7,3],[2,2],[6,8],[10,14],[6,12],[14,35],[5,6],[18,15],[1,3],[1,3],[-1,2],[1,3],[2,2],[3,3],[4,5],[1,3],[1,3],[1,3],[0,6],[0,3],[3,3],[4,3],[12,4],[1,1],[2,2],[3,5],[1,2],[5,6],[2,3],[0,3],[2,9],[2,3],[2,2],[3,1],[13,-1],[2,1],[1,1],[1,5],[1,3],[2,1],[4,0],[3,-4],[2,-3],[1,-5],[1,-3],[1,-5],[1,-6],[0,-3],[2,-2],[2,-1],[9,1],[9,3],[3,0],[4,-2],[19,-19],[9,-2],[8,11],[3,3],[8,4],[2,3],[3,4],[1,4],[1,3],[0,2],[1,8],[0,9],[0,3],[1,4],[7,10],[2,7],[2,2],[6,1],[10,3],[3,0],[3,-1],[15,-12],[3,0],[2,0],[18,5],[10,-1],[5,0],[9,3],[9,0],[7,-4],[2,-1],[2,1],[3,0],[5,4],[39,35],[11,16],[5,2],[3,1],[22,16],[8,3],[2,1],[7,-3],[38,-2],[16,3],[11,7],[2,0],[2,-2],[4,-12],[2,-2],[1,-2],[2,1],[3,3],[8,18],[5,4],[1,0],[1,2],[1,2],[2,8],[2,3],[3,4],[10,9],[10,13],[4,3],[3,1],[3,0],[2,1],[3,3],[4,6],[4,2],[7,1],[3,2],[10,11],[4,2],[4,0],[5,-2],[2,0],[3,3],[13,18],[2,1],[8,6],[4,3],[7,6],[5,6],[7,14],[12,26],[12,20],[2,2],[2,1],[1,2],[1,2],[-1,3],[-3,11],[-1,5],[-1,5],[0,6],[0,4],[1,4],[5,9],[1,4],[0,4],[-1,4],[-2,7],[-1,3],[0,3],[2,3],[3,2],[3,1],[13,-1],[2,1],[1,3],[-1,6],[-1,4],[-1,3],[-3,5],[-2,4],[0,4],[1,4],[3,8],[4,7],[3,8],[-15,9],[-4,4],[-1,2],[-2,2],[-1,2],[-3,0],[-1,-1],[-2,-3],[-5,-7],[-1,-2],[-2,-1],[-2,0],[-2,1],[-1,2],[-1,2],[-2,1],[-2,-1],[-1,-2],[-2,-3],[-2,-2],[-1,0],[-1,2],[0,5],[0,4],[1,4],[2,6],[2,3],[5,5],[1,3],[4,9],[4,10],[1,3],[0,4],[0,3],[0,3],[-1,3],[-2,3],[-3,2],[-3,1],[-2,0],[-14,-1],[-3,0],[-2,2],[-6,5],[-6,5],[-1,3],[0,2],[1,4],[1,3],[-1,2],[-1,1],[-2,0],[-14,-8],[-2,0],[-1,2],[-4,11],[-4,6],[-1,3],[0,4],[0,6],[1,4],[2,4],[1,3],[0,4],[-2,9],[-1,6],[-1,2],[-1,2],[-2,2],[-7,0],[-2,1],[-15,10],[-2,2],[-1,4],[-1,7],[1,14],[-1,7],[-1,4],[0,4],[1,6],[3,9],[3,4],[2,2],[2,1],[2,2],[2,1],[0,1],[1,8],[0,11],[0,6],[-1,4],[-2,5],[-14,22],[-1,4],[-5,4],[-3,5],[-1,2],[4,8],[2,3],[4,3],[4,3],[3,0],[9,-2],[4,2],[0,2],[0,2],[1,2],[1,2],[2,3],[2,0],[2,1],[10,-2],[5,2],[4,11],[-6,7],[-1,9],[3,8],[7,3],[24,4],[7,4],[2,3],[4,10],[1,2],[4,-2],[8,-11],[3,0],[7,4],[15,3],[13,6],[6,4],[4,8],[1,13],[4,4],[8,1],[13,-3],[8,0],[5,3],[4,5],[14,24],[6,16],[3,5],[2,2],[2,1],[2,0],[1,-3],[7,5],[7,4],[14,2],[3,1],[3,3],[3,3],[2,3],[1,5],[4,0],[8,-3],[6,0],[8,2],[7,5],[5,6],[11,10],[4,1],[2,2],[5,8],[0,2],[1,4],[0,2],[2,1],[3,2],[6,6],[2,5],[-2,7],[-1,5],[2,4],[4,3],[7,2],[3,3],[5,7],[13,9],[5,7],[3,13],[1,14],[5,5],[6,2],[7,3],[2,3],[3,9],[2,4],[4,2],[8,1],[3,3],[6,9],[41,25],[3,4],[1,5],[2,5],[2,6],[-3,13],[2,5],[3,3],[3,3],[3,1],[7,1],[3,1],[9,14],[4,2],[46,17],[7,5],[11,2],[13,8],[7,2],[14,-2],[7,1],[7,7],[3,2],[13,-1],[4,1],[9,7],[14,4],[75,-12],[3,-1],[3,-4],[2,-4],[1,-2],[5,1],[2,1],[2,4],[2,5],[-1,4],[0,4],[1,4],[2,2],[2,0],[1,-2],[3,0],[7,3],[24,3],[9,3],[5,6],[1,5],[0,5],[-1,4],[3,7],[2,3],[10,10],[-1,3],[-1,2],[0,1],[-2,2],[2,10],[0,10],[1,8],[11,6],[9,13],[6,3],[5,4],[-1,10],[-4,20],[2,6],[5,6],[10,7],[-3,8],[2,25],[-11,11],[-1,13],[1,15],[2,12],[-4,0],[-1,4],[1,6],[-1,5],[-4,0],[-4,0],[-4,0],[-2,6],[2,5],[2,6],[2,6],[-1,5],[-7,11],[-1,3],[0,3],[0,4],[2,4],[-1,3],[-2,2],[-5,14],[-2,6],[-3,2],[-12,-3],[-4,1],[-13,13],[-10,5],[-4,3],[-1,3],[-1,5],[-2,5],[-2,2],[-6,2],[-18,17],[-9,5],[-2,3],[-1,7],[0,13],[0,4],[-3,5],[0,3],[1,3],[1,4],[-1,7],[-2,2],[-4,2],[-3,3],[-3,8],[-3,11],[-3,8],[-5,4],[-55,-10],[-13,-9],[-6,6],[-11,16],[-6,1],[-14,-10],[-7,-2],[-3,2],[-5,9],[-1,2],[-1,6],[-1,2],[0,3],[2,7],[2,3],[3,2],[2,3],[1,6],[-2,4],[-3,5],[-3,5],[-8,5],[-5,9],[-2,11],[0,11],[1,6],[4,11],[0,6],[0,6],[-2,2],[-1,4],[0,7],[1,3],[2,4],[2,5],[0,7],[-1,5],[-4,4],[-3,2],[-4,0],[-7,5],[1,12],[5,25],[-1,11],[-4,24],[-1,13],[3,11],[10,16],[3,11],[-1,12],[-2,10],[-4,7],[-5,7],[-12,9],[-5,7],[-3,19],[-5,8],[-2,4],[1,6],[2,4],[5,8],[-4,6],[-1,10],[2,10],[6,4],[3,1],[3,2],[3,3],[1,4],[-1,5],[-3,3],[-7,1],[-6,6],[-4,7],[-12,28],[-6,22],[-2,10],[0,6],[1,11],[0,6],[0,5],[-3,9],[0,2],[1,15],[3,8],[5,3],[8,-1],[6,-3],[4,-2],[3,2],[2,4],[1,6],[0,6],[-4,5],[-5,7],[-18,11],[-2,3],[-3,4],[-1,3],[-2,8],[0,4],[1,3],[3,18],[0,6],[-3,3],[-5,1],[-13,6],[-34,4],[-15,11],[-1,28],[5,5],[7,5],[21,7],[5,6],[5,8],[3,10],[2,12],[0,12],[0,20],[-2,13],[-2,10],[-1,9],[5,12],[4,6],[14,11],[6,2],[5,4],[42,-18],[2,-2],[2,-2],[23,-33],[2,-2],[2,-2],[3,-1],[5,0],[2,0],[9,3],[2,-1],[2,-1],[1,-2],[4,-4],[8,-14],[3,-4],[2,-1],[6,-2],[6,0],[3,0],[7,4],[13,1],[3,1],[3,2],[5,5],[3,3],[5,3],[7,2],[3,0],[3,0],[2,-1],[1,-3],[0,-3],[1,-2],[2,-2],[2,-2],[9,-1],[5,-3],[6,-5],[11,-3],[2,-2],[3,-3],[2,-2],[1,-3],[3,-8],[2,-2],[1,-2],[2,-2],[2,-1],[17,-5],[13,1],[11,5],[3,1],[3,-1],[2,-1],[2,-2],[7,-12],[1,-2],[2,-1],[3,-1],[2,0],[3,1],[40,29],[2,1],[3,0],[5,-1],[8,-3],[2,1],[1,2],[0,3],[-1,2],[-6,5],[-1,2],[2,3],[5,4],[4,1],[13,0],[3,-1],[2,-1],[3,-4],[3,0],[2,2],[4,8],[2,5],[2,4],[0,3],[3,12],[1,3],[2,3],[2,2],[7,6],[5,6],[4,5],[7,5],[6,2],[2,2],[2,2],[2,4],[1,3],[3,1],[1,-2],[1,-3],[0,-3],[0,-3],[1,-2],[2,-2],[1,-1],[0,-3],[-1,-9],[-1,-7],[-1,-6],[0,-2],[2,-1],[14,-4],[1,-1],[0,-2],[-1,-3],[-1,-2],[-1,-3],[1,-3],[1,-2],[2,-1],[2,-2],[2,0],[4,-3],[3,0],[2,2],[1,5],[0,4],[0,4],[2,4],[5,7],[3,2],[3,2],[2,-1],[2,-1],[9,-9],[2,-1],[2,0],[1,4],[1,7],[1,10],[-1,7],[-2,13],[0,3],[1,3],[13,7],[8,7],[3,4],[2,2],[1,3],[1,5],[0,4],[0,4],[3,7],[0,4],[-1,3],[-2,4],[-1,3],[0,3],[1,6],[0,3],[0,3],[-1,3],[-1,3],[-11,11],[-2,5],[-1,2],[-1,3],[1,11],[-1,3],[-1,2],[-2,2],[-1,2],[1,3],[6,5],[27,13],[3,2],[3,3],[3,6],[1,4],[1,4],[3,12],[6,25],[0,2],[-1,3],[-2,1],[-3,2],[-33,2],[-5,2],[-9,6],[-2,0],[-2,-1],[-1,-3],[-9,-24],[-1,-3],[-2,-2],[-10,-4],[-9,-8],[-3,0],[-2,1],[-4,3],[-3,4],[-1,3],[0,2],[0,3],[4,11],[2,9],[-1,11],[-1,3],[0,2],[-2,2],[-2,0],[-11,-7],[-2,0],[-2,0],[-2,2],[-3,5],[-1,3],[-1,6],[-2,5],[-1,3],[1,4],[2,5],[0,4],[-1,3],[-2,5],[-1,3],[0,3],[1,5],[0,4],[-1,3],[-2,9],[-2,2],[-8,1],[-1,3],[-1,2],[-1,7],[0,3],[-1,3],[-2,5],[-3,5],[-1,2],[0,3],[1,7],[0,3],[4,10],[6,8],[1,5],[0,4],[-1,3],[0,3],[-1,6],[-1,3],[-1,3],[-2,2],[-2,1],[-25,11],[-2,0],[-4,-2],[-3,0],[-1,1],[-1,3],[1,3],[0,3],[-1,6],[1,4],[1,3],[3,5],[2,8],[0,3],[1,7],[0,3],[1,5],[0,3],[-1,2],[-2,3],[-1,2],[-2,6],[-1,2],[-2,2],[-11,8],[-1,2],[-2,2],[0,3],[-1,3],[0,3],[1,3],[1,3],[2,3],[3,6],[2,1],[3,1],[15,-1],[4,1],[16,7],[6,-1],[3,-1],[2,-2],[3,0],[2,0],[8,8],[2,2],[1,3],[0,3],[1,4],[3,4],[9,5],[3,4],[1,3],[-2,2],[-7,4],[-2,2],[-1,2],[-1,3],[1,3],[1,3],[1,6],[0,4],[0,3],[0,3],[-3,9],[0,2],[0,2],[1,1],[3,5],[3,4],[1,3],[0,3],[-1,3],[-4,10],[-1,3],[0,3],[1,3],[1,2],[6,6],[1,2],[1,2],[1,3],[-1,3],[-1,6],[0,3],[0,4],[1,3],[1,3],[3,7],[2,2],[2,2],[3,-1],[12,-7],[4,-1],[13,0],[4,3],[2,3],[3,16],[0,2],[1,3],[-7,13],[-1,3],[0,3],[-1,3],[-1,3],[-5,6],[-2,3],[-1,6],[-1,2],[-2,2],[-7,5],[-3,3],[-2,3],[-1,2],[0,3],[0,3],[1,3],[1,3],[2,3],[2,3],[2,2],[11,9],[17,8],[9,7],[8,4],[1,3],[1,3],[0,3],[1,3],[4,2],[30,-2],[5,0],[2,2],[1,2],[2,2],[2,1],[4,-2],[2,-3],[3,-2],[2,-1],[5,1],[6,3],[3,1],[5,-2],[5,0],[10,-2],[5,-4],[3,-4],[2,-3],[2,-12],[1,-3],[2,-2],[2,-2],[3,-1],[6,1],[3,2],[2,1],[2,3],[1,2],[1,3],[2,6],[0,3],[2,4],[1,1],[5,0],[7,-2],[37,-17],[4,-3],[2,-2],[3,-8],[1,-3],[1,-10],[2,-6],[2,-5],[1,-2],[7,-9],[2,-2],[14,-8],[4,-3],[2,-3],[1,-2],[0,-3],[1,-4],[1,-2],[4,-2],[9,0],[10,-3],[3,-2],[6,-9],[7,-7],[4,-1],[5,1],[9,3],[4,3],[13,11],[8,4],[57,9],[6,2],[8,0],[19,-6],[5,32],[-1,5],[-1,5],[-10,13],[-2,4],[-2,7],[0,9],[1,5],[1,3],[7,9],[2,4],[2,5],[2,7],[2,16],[1,8],[0,7],[-1,4],[-2,3],[-2,2],[-2,1],[-18,5],[-3,2],[-2,2],[-2,2],[-6,12],[-5,6],[-2,2],[-2,1],[-3,1],[-3,0],[-5,-1],[-3,0],[-3,1],[-3,2],[-3,4],[-2,3],[-2,2],[-13,2],[-3,3],[-4,4],[-5,10],[-1,4],[2,2],[10,0],[2,1],[1,2],[0,4],[0,3],[1,4],[0,3],[2,5],[0,3],[1,2],[2,2],[6,9],[1,3],[1,4],[-1,18],[1,15],[1,6],[3,17],[0,5],[0,6],[-1,4],[-1,3],[-1,3],[-3,4],[-16,14],[-4,6],[-2,5],[-1,4],[-1,3],[1,11],[2,9],[3,1],[7,0],[3,3],[2,5],[1,28],[-1,4],[-1,2],[-2,2],[-11,3],[-10,1],[-4,1],[-3,2],[-9,19],[-3,34],[0,12],[-2,19],[0,3],[0,3],[4,12],[3,5],[1,3],[4,3],[4,4],[13,5],[3,1],[0,2],[0,3],[-1,4],[0,4],[1,2],[2,1],[6,2],[3,1],[1,4],[0,2],[-2,3],[-2,2],[-2,1],[-12,7],[-3,2],[-2,2],[-1,4],[-1,3],[-1,4],[0,3],[0,4],[1,3],[0,3],[1,4],[0,5],[0,8],[-1,5],[-2,3],[-2,2],[-2,1],[-21,6],[-20,14],[-10,14],[-5,3],[-35,15],[-3,2],[-2,3],[-4,7],[-6,23],[-2,7],[-3,4],[-9,6],[-5,1],[-3,0],[-12,-2],[-7,0],[-12,3],[-3,-1],[-2,-1],[-10,-9],[-3,-1],[-6,-1],[-3,-1],[-2,-1],[-3,-5],[-7,-11],[-4,-4],[-4,-4],[-2,-2],[-1,-3],[-2,-5],[-1,-3],[-1,-3],[-1,-6],[-5,-20],[-1,-3],[-1,-2],[-2,-2],[-2,-2],[-5,-2],[-6,-2],[-8,1],[-4,0],[-4,3],[-2,4],[-2,3],[-1,6],[-2,6],[0,3],[-1,7],[-2,7],[-3,8],[-3,5],[-3,2],[-3,-1],[-9,-5],[-16,-14],[-14,-17],[-3,-1],[-12,3],[-5,2],[-14,9],[-8,2],[-29,-2],[-4,2],[-13,12],[-3,1],[-11,3],[-2,1],[-1,1],[-1,2],[-4,12],[-2,4],[-2,2],[-12,7],[-6,2],[-12,2],[-1,1],[1,2],[1,3],[8,8],[19,18],[2,2],[0,3],[0,3],[0,3],[-1,7],[0,3],[1,4],[0,3],[4,11],[2,6],[0,3],[0,3],[0,4],[-1,3],[0,7],[1,7],[1,6],[1,3],[1,3],[0,4],[0,4],[-1,5],[-2,7],[-2,4],[-2,3],[-2,1],[-9,3],[-3,1],[-2,2],[-23,27],[0,3],[0,3],[2,6],[2,6],[1,3],[2,2],[1,3],[2,2],[2,1],[2,2],[3,1],[6,0],[3,-1],[13,-6],[3,0],[3,1],[2,2],[18,16],[1,3],[1,4],[0,5],[-1,3],[-1,3],[-3,2],[-2,1],[-3,0],[-12,-2],[-3,1],[-12,7],[-3,1],[-3,-1],[-8,-3],[-6,-1],[-6,1],[-4,1],[-3,2],[-3,4],[-1,3],[0,4],[1,5],[0,4],[0,5],[-1,3],[-2,3],[-5,7],[-4,7],[-2,4],[0,3],[-1,4],[0,4],[-2,4],[-1,2],[-6,8],[-17,14],[-6,6],[-2,5],[-7,13],[-3,3],[-2,3],[-23,6],[-3,2],[-2,2],[-22,37],[-5,7],[-7,6],[-5,2],[-65,18],[-6,-1],[-13,-7],[-4,0],[-4,0],[-4,2],[-14,10],[-31,5],[-3,1],[-2,2],[-2,3],[-1,3],[0,3],[-1,3],[-2,3],[-7,8],[-3,2],[-43,5],[-7,5],[-23,23],[-4,3],[-3,1],[-7,1],[-81,-22],[-43,-22],[-35,-29],[-4,-5],[-2,-2],[-3,-7],[-3,-6],[-4,-14],[-2,-12],[-3,-10],[-2,-4],[-3,-6],[-3,-4],[-30,-22],[-18,-22],[-3,-2],[-5,-1],[-3,0],[-2,2],[-7,11],[-2,3],[-2,2],[-3,2],[-6,2],[-3,-1],[-2,-2],[-4,-5],[-12,-27],[-7,-11],[-4,-5],[-2,-2],[-12,-6],[-1,-3],[-1,-3],[-1,-3],[-5,-28],[0,-3],[1,-3],[2,-2],[8,-8],[2,-2],[1,-3],[0,-3],[0,-2],[-1,-1],[0,-1],[-1,-2],[-6,-7],[-65,-59],[-2,-3],[-2,-3],[-2,-6],[-2,-7],[-2,-3],[-2,-4],[-4,-2],[-2,-3],[-2,-3],[0,-6],[-2,-4],[-1,-3],[-7,-10],[-5,-9],[-3,-3],[-3,-4],[-30,-4],[-3,-2],[-1,-2],[1,-20],[-1,-6],[-1,-2],[-2,-1],[-27,5],[-4,-2],[-7,-2],[-4,-1],[-3,1],[-3,1],[-2,-1],[-1,-3],[0,-3],[0,-3],[-1,-3],[-1,-4],[-1,-3],[-2,-2],[-4,-5],[-9,-15],[-42,-16],[-10,-8],[-1,-3],[0,-3],[0,-3],[1,-2],[1,-3],[-1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[1,-3],[1,-2],[1,-2],[0,-1],[-4,-8],[-18,-23],[-2,-2],[-5,-1],[-3,-2],[-7,-5],[-5,-7],[-3,-6],[-1,-4],[-2,-6],[-1,-4],[1,-3],[0,-2],[2,-2],[10,-11],[1,-3],[1,-4],[-5,-18],[0,-3],[0,-3],[0,-3],[2,-5],[0,-4],[-1,-3],[-8,-7],[-9,-12],[-11,-9],[-8,-9],[-10,-12],[-8,-9],[-11,-3],[-2,0],[-19,7],[-2,0],[-3,-1],[-11,-7],[-5,-2],[-15,1],[-4,-2],[-5,-3],[-3,-1],[-2,0],[-2,1],[-7,6],[-2,1],[-4,0],[-2,-2],[-7,-14],[-3,-3],[-2,-2],[-23,-7],[-16,-10],[-3,-3],[-3,-4],[-4,-6],[-7,-10],[-3,-3],[-3,-1],[-2,0],[-3,1],[-4,4],[-6,9],[-3,4],[-1,1],[-2,-1],[-1,-3],[-2,-3],[0,-4],[-1,-8],[1,-4],[1,-4],[7,-16],[8,-12],[1,-4],[-1,-4],[-17,-24],[-9,-20],[-3,-2],[-2,-1],[-1,0],[-2,1],[-2,2],[-1,2],[-3,7],[-1,3],[-1,3],[1,2],[1,3],[1,2],[-2,1],[-4,4],[-1,2],[0,3],[0,9],[0,18],[0,6],[1,2],[0,2],[3,6],[1,3],[0,3],[0,3],[0,2],[-3,13],[0,3],[0,3],[0,5],[0,3],[-1,5],[-1,14],[0,3],[1,4],[1,3],[2,6],[1,3],[0,3],[-1,2],[0,3],[1,3],[10,22],[7,11],[2,3],[3,3],[3,1],[4,1],[2,2],[1,3],[1,3],[2,3],[3,2],[4,0],[3,1],[2,2],[1,3],[0,3],[-1,5],[-1,11],[-2,2],[-4,2],[-18,-2],[-31,7],[-27,-15],[-4,-1],[-6,1],[-2,1],[-2,2],[1,3],[3,9],[1,3],[0,3],[0,3],[-1,2],[-2,2],[-5,7],[0,2],[0,2],[4,6],[7,9],[3,5],[1,3],[1,3],[-1,3],[0,3],[-2,2],[-9,11],[-5,9],[-1,3],[0,3],[0,3],[1,6],[1,3],[-1,1],[-10,1],[-5,-1],[-7,-12],[-21,-30],[-3,-6],[-2,-7],[-2,-3],[-1,-3],[-27,-26],[-1,-2],[-2,-3],[-1,-4],[-4,-20],[-1,-3],[-2,-4],[-3,-3],[-2,-1],[-14,3],[-30,-1],[-3,-1],[-3,-2],[-3,-6],[-15,-18],[-11,-9],[-3,-2],[-4,0],[-10,6],[-5,1],[-2,1],[-11,9],[-2,2],[-1,2],[-1,3],[-1,2],[-1,2],[-2,1],[-7,4],[-15,1],[-28,-6],[-5,-2],[-2,-3],[-1,-3],[-3,-3],[-2,-3],[-6,-4],[-3,-2],[-2,-4],[0,-3],[-2,-3],[-2,-4],[-7,-4],[-4,-1],[-3,1],[-10,10],[-1,2],[-4,10],[-2,3],[-3,1],[-4,1],[-3,0],[-3,-1],[-6,-9],[-4,-4],[-3,-2],[-2,0],[-2,0],[-2,1],[-2,2],[-3,4],[-5,4],[-5,3],[-3,2],[-9,1],[-18,8],[-31,3],[-5,-1],[-3,-2],[-8,-7],[-2,-2],[-1,-3],[-1,-3],[-1,-6],[-1,-3],[-2,-2],[-9,-5],[-2,-2],[-2,-2],[-1,-3],[-1,-3],[0,-3],[0,-3],[0,-3],[1,-2],[3,-11],[1,-2],[0,-3],[-2,-3],[-1,-2],[-7,-5],[-1,-2],[-2,-3],[-1,-2],[0,-3],[0,-3],[1,-3],[0,-3],[0,-3],[-1,-3],[-1,-3],[-2,-2],[-10,-12],[-3,-2],[-3,0],[-30,1],[-4,-2],[-3,-2],[-2,-2],[-4,-5],[-1,-3],[-2,-7],[-6,-7],[-2,-1],[-18,0],[-10,-3],[-16,1],[-23,6],[-2,2],[-1,2],[-3,1],[-28,4],[-11,-4],[-1,-1],[-8,-8],[-3,-2],[-3,1],[-2,1],[-2,5],[-2,3],[-1,1],[-5,10],[-4,13],[-2,8],[-1,3],[-3,3],[-5,4],[-3,1],[-3,-1],[-2,-1],[-7,-7],[-3,-1],[-2,1],[-3,1],[-1,3],[-1,2],[-1,3],[-1,8],[3,20],[-1,9],[-2,5],[-2,4],[-1,3],[-2,2],[-5,3],[-9,2],[-4,1],[-3,3],[-1,3],[0,4],[3,6],[1,4],[-1,3],[-2,3],[-3,3],[-4,6],[-1,3],[-1,3],[0,3],[0,1],[0,3],[1,3],[1,6],[1,4],[-2,2],[-1,1],[-5,1],[-11,-2],[-6,0],[-12,4],[-19,3],[-7,3],[-5,3],[-1,3],[-1,3],[0,4],[0,4],[-2,7],[-1,5],[1,3],[16,15],[5,3],[2,1],[2,2],[2,2],[0,5],[-2,3],[-2,2],[-10,5],[-4,3],[-4,4],[-1,4],[1,3],[1,3],[4,4],[7,5],[2,2],[1,3],[2,7],[1,4],[2,3],[4,4],[6,4],[4,4],[4,5],[6,18],[2,2],[12,11],[6,8],[5,7],[1,3],[2,4],[1,6],[-1,3],[-3,3],[-4,3],[-2,2],[-1,3],[-2,8],[-1,5],[0,4],[1,6],[1,7],[1,9],[2,6],[1,2],[5,12],[7,11],[17,20],[6,5],[2,3],[2,3],[2,6],[0,3],[-1,3],[-2,2],[-4,4],[-1,3],[0,3],[1,3],[1,3],[2,2],[2,1],[5,2],[2,2],[2,3],[1,3],[4,14],[1,3],[2,3],[2,3],[5,7],[3,5],[5,10],[1,4],[0,3],[-2,3],[-7,5],[-2,3],[-1,3],[-1,7],[0,5],[-1,3],[-2,5],[-2,7],[-1,5],[0,4],[0,4],[1,6],[1,4],[1,3],[3,15],[2,18],[2,8],[3,4],[10,4],[4,3],[2,3],[2,3],[2,4],[1,6],[0,5],[0,3],[-1,3],[0,4],[-1,5],[1,2],[2,2],[10,6],[4,3],[1,2],[-1,3],[-2,5],[-1,3],[0,5],[1,3],[2,2],[10,4],[5,3],[2,1],[2,3],[2,4],[2,6],[0,3],[-1,3],[-6,7],[-2,3],[-1,5],[0,4],[1,3],[7,11],[8,9],[2,2],[7,4],[2,3],[2,5],[5,16],[2,4],[2,2],[13,6],[2,2],[2,5],[1,5],[0,9],[0,4],[-2,4],[-3,2],[-2,7],[-2,3],[-2,2],[-6,3],[-2,2],[-1,3],[1,3],[2,1],[5,1],[16,-1],[3,0],[5,3],[2,1],[3,-1],[5,-3],[3,0],[3,0],[2,1],[5,3],[4,5],[2,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[2,16],[1,3],[2,2],[1,1],[-1,2],[-9,7],[-3,3],[-2,3],[-1,7],[0,5],[1,4],[1,3],[4,6],[3,5],[6,7],[3,5],[1,4],[3,6],[1,3],[2,3],[4,5],[10,10],[3,3],[4,9],[2,3],[5,3],[2,2],[2,2],[3,5],[3,7],[2,9],[0,9],[-1,6],[1,5],[1,3],[7,7],[2,4],[4,6],[0,4],[0,4],[-1,2],[-1,3],[0,3],[-1,4],[0,14],[0,3],[-1,2],[-1,2],[-2,3],[-2,2],[-17,9],[-3,2],[-4,0],[-3,0],[-2,-1],[-3,-2],[-4,-4],[-7,-9],[-2,-1],[-9,2],[-3,1],[-3,-1],[-5,-2],[-3,-1],[-13,4],[-4,3],[-2,2],[-2,3],[-1,3],[-4,9],[-4,5],[-1,4],[-1,3],[0,9],[-1,5],[-2,5],[-5,9],[-4,4],[-4,3],[-27,10],[-5,3],[-7,2],[-6,-1],[-6,-2],[-3,0],[-3,0],[-14,8],[-3,3],[-2,5],[0,3],[2,3],[3,5],[1,2],[-1,3],[-1,5],[-1,3],[0,3],[2,3],[6,11],[1,4],[2,3],[1,7],[1,3],[0,3],[0,3],[-1,3],[-2,8],[-2,4],[-1,3],[0,2],[1,3],[2,1],[5,3],[2,3],[1,3],[1,3],[0,3],[1,3],[0,4],[-1,5],[-3,8],[-2,6],[-28,41],[-5,5],[-3,1],[-3,3],[-1,3],[0,3],[1,4],[0,5],[-2,2],[-6,3],[-3,2],[-8,10],[-5,4],[-2,3],[1,6],[0,6],[-1,8],[-5,21],[-2,13],[0,19],[1,12],[2,7],[2,6],[5,2],[4,4],[2,2],[26,39],[3,3],[3,2],[7,8],[3,2],[5,1],[2,5],[7,16],[1,4],[3,3],[2,5],[3,12],[1,2],[1,4],[0,1],[2,3],[1,3],[2,3],[20,18],[3,4],[2,3],[0,2],[0,2],[0,5],[0,3],[0,2],[-1,1],[-11,13],[-3,6],[-2,5],[-1,3],[1,3],[12,13],[2,3],[2,3],[0,4],[0,2],[-1,2],[-5,5],[-3,5],[-1,4],[-1,7],[-1,3],[-2,3],[-13,6],[-1,1],[-1,3],[7,20],[1,4],[-1,2],[-2,3],[-2,1],[-7,3],[-14,1],[-23,-5],[-27,3],[-25,8],[-4,0],[-2,-1],[-3,-1],[-8,-9],[-3,0],[-3,2],[-10,18],[-3,4],[-2,2],[-6,3],[-17,4],[-4,1],[-2,3],[-3,3],[-1,4],[-2,6],[-2,3],[-5,6],[-1,3],[0,4],[1,4],[-1,4],[-1,4],[-4,8],[0,2],[2,2],[32,2],[2,3],[1,4],[-1,14],[0,14],[1,4],[3,2],[11,3],[3,1],[2,2],[1,3],[2,3],[0,4],[1,3],[0,3],[0,3],[1,16],[0,3],[0,3],[0,3],[1,3],[2,3],[6,7],[2,5],[1,2],[6,1],[2,1],[4,5],[5,2],[14,5],[3,2],[2,2],[1,4],[1,6],[-1,3],[-1,3],[-3,8],[-3,8],[-1,4],[-3,3],[-2,2],[-19,9],[-10,8],[-2,2],[-2,3],[-2,5],[-1,4],[0,3],[-1,3],[0,3],[1,3],[0,4],[2,9],[0,5],[-2,2],[-3,2],[0,1],[3,4],[2,4],[0,5],[-1,2],[-4,3],[-2,2],[1,2],[2,6],[1,5],[0,7],[-1,3],[-2,3],[-3,1],[-2,2],[0,2],[1,3],[1,3],[1,4],[1,5],[-1,3],[-2,4],[1,3],[1,3],[2,3],[-1,2],[-3,2],[-3,2],[-3,4],[-2,3],[-1,5],[0,3],[1,3],[2,3],[2,2],[4,4],[2,2],[2,3],[0,3],[-1,3],[-2,2],[-2,5],[-1,3],[-2,2],[-3,1],[-7,2],[-2,1],[0,3],[0,7],[0,6],[-1,10],[0,3],[0,4],[1,3],[1,5],[-2,5],[-4,8],[-3,3],[-3,0],[-9,-7],[-3,-2],[-3,1],[-3,2],[-3,6],[-1,5],[-1,6],[0,4],[-1,3],[-2,3],[-1,2],[-3,6],[-2,5],[-1,4],[0,5],[-2,3],[-12,7],[-4,4],[-2,2],[-2,4],[-1,3],[-1,3],[0,4],[0,7],[-2,3],[-2,1],[-3,1],[-4,2],[-4,5],[-2,6],[-6,7],[-3,2],[-3,1],[-3,-1],[-5,-2],[-2,0],[-13,1],[-3,0],[-17,-7],[-3,-1],[-3,0],[-3,2],[-10,7],[-14,3],[-6,4],[-6,6],[-3,1],[-3,1],[-15,-2],[-3,0],[-4,1],[-6,8],[-3,3],[-3,1],[-7,0],[-107,-20],[-4,0],[-3,4],[-3,5],[-3,11],[-1,5],[0,5],[2,2],[2,3],[2,1],[3,1],[7,0],[3,1],[3,1],[9,7],[8,9],[2,3],[2,3],[1,3],[1,4],[0,6],[1,16],[0,3],[0,15],[0,3],[1,3],[0,4],[-1,5],[0,3],[1,4],[1,3],[2,2],[2,2],[16,8],[2,0],[2,-1],[0,-3],[2,-3],[10,-6],[3,-1],[4,1],[2,0],[4,-4],[2,-1],[3,-1],[33,9],[2,-1],[3,-2],[2,-4],[1,-3],[3,-1],[3,0],[11,5],[2,2],[3,2],[2,2],[1,3],[3,7],[1,3],[1,4],[4,5],[4,5],[1,3],[0,4],[0,3],[-2,3],[-2,2],[-14,12],[-3,3],[-1,3],[1,3],[10,18],[1,4],[1,4],[0,6],[-1,4],[-1,2],[-4,5],[-1,2],[-2,3],[-27,17],[-3,3],[-3,5],[-5,9],[-4,15],[-2,3],[-2,2],[-11,7],[-1,2],[1,3],[10,18],[1,4],[1,3],[0,4],[-1,3],[-2,2],[-10,5],[-2,3],[1,2],[2,2],[5,3],[2,2],[2,3],[1,3],[1,4],[-2,3],[-6,5],[-3,4],[-8,14],[-2,2],[-2,2],[-3,1],[-13,0],[-3,2],[-2,1],[-2,2],[-3,0],[-3,-1],[-2,-1],[0,-3],[0,-5],[-1,-4],[-1,-3],[-1,-3],[-2,-3],[-2,-2],[-3,-2],[-3,-1],[-21,1]],[[80060,85694],[-7,0],[-3,1],[-9,4],[-2,0]],[[80039,85699],[-1,0],[-13,-6],[-14,-5]],[[80011,85688],[-2,-2],[-1,-2],[-1,-5],[-9,-25]],[[79998,85654],[-8,-5]],[[79990,85649],[-14,5],[-3,0],[-14,2],[-3,1],[-2,2],[-5,7],[-4,4],[-33,18],[-2,2],[-2,2],[-1,3],[-1,3],[0,6],[0,2],[-2,4],[-4,3],[-10,5],[-10,3]],[[79880,85721],[-7,-1],[-5,-2]],[[79868,85718],[-20,-13],[-24,-11],[-7,-2],[-4,1],[-3,1],[-18,16],[-2,2],[-2,2],[-1,3],[0,3],[1,7],[0,4],[-1,3],[-4,4],[-3,2],[-31,4],[-4,1],[-2,2],[-2,3],[-1,2],[-2,3],[-4,3],[-19,9],[-7,6],[-2,2],[-7,5],[-7,4],[-4,1],[-1,0],[-31,-1],[-4,1],[-1,4],[0,-2]],[[79651,85787],[0,2],[0,-3]],[[79651,85786],[-3,1],[-2,2],[-1,3],[-2,5],[-1,3],[-2,5],[-4,7],[-1,3],[-1,3],[-1,5],[-1,4],[-3,4],[-7,5],[-5,2],[-5,2],[-4,-1]],[[79608,85839],[-3,-1],[-2,-2]],[[79603,85836],[-1,-3]],[[79602,85833],[-1,-3],[1,-3]],[[79602,85827],[0,-2],[3,-8],[2,-3]],[[79607,85814],[2,-5],[0,-3],[-1,-2],[-2,-2]],[[79606,85802],[-3,-1],[-2,0]],[[79601,85801],[-48,0],[-3,-1],[-5,-3]],[[79545,85797],[-5,-3],[-3,-1],[-16,-1],[-4,-1],[-2,-2],[-2,-2],[-4,-5]],[[79509,85782],[-4,-2],[-5,-2],[-9,0]],[[79491,85778],[-10,1],[-13,6],[-3,2],[-2,2],[0,3],[0,3],[1,3],[2,3],[2,2],[3,1],[7,1],[3,1],[1,2],[2,3],[0,4],[-1,3],[-2,4],[-18,12],[-2,3],[-5,3],[-4,0],[-4,0],[-4,-2],[-10,-9],[-3,-2],[-3,-1],[-14,1],[-3,-1],[-9,-4],[-4,-1],[-8,0],[-3,2],[-1,3],[1,7],[1,3],[1,4],[1,3],[0,3],[-1,3],[-1,3],[-1,2],[-5,7],[-12,11],[-2,3],[-1,3],[0,3],[1,3],[5,9],[1,3],[-1,3],[0,2],[-8,13],[-2,3],[0,3],[1,3],[2,2],[2,1]],[[79368,85926],[3,-1]],[[79371,85925],[2,-1],[4,-5]],[[79377,85919],[2,-2],[3,-1]],[[79382,85916],[7,-3],[8,0]],[[79397,85913],[3,0],[3,1],[3,2],[2,2],[1,3],[1,3],[0,3],[0,3],[-1,2],[-7,11],[-2,4],[-1,4],[-1,7],[-1,9],[0,10],[1,3],[3,11],[1,3],[1,3],[4,6],[4,5],[2,1],[3,2],[3,0],[3,-1],[7,-5],[3,-1],[7,1],[4,2],[2,1],[1,2],[0,2],[-1,2],[0,2],[-10,12],[-2,4],[-1,4],[-1,3],[-2,7],[0,3],[1,2],[3,2],[10,4],[8,1]],[[79451,86058],[3,-1],[3,-2]],[[79457,86055],[2,-2]],[[79459,86053],[5,-10],[6,-8]],[[79470,86035],[3,-2],[25,-6]],[[79498,86027],[3,0],[3,1],[1,3],[0,3],[-2,3],[-3,5],[-3,2],[-14,8],[-3,3],[-2,2],[-1,6],[-3,8],[-1,3],[-2,5],[-32,33],[-3,5],[1,3],[1,3],[1,3],[2,3],[2,2],[8,7],[36,20],[3,3],[2,3],[1,3],[2,9],[2,3],[1,2],[3,2],[5,1],[13,1],[3,1],[2,2],[2,2],[2,6],[2,4],[8,12],[10,12],[5,3],[6,3],[3,0]],[[79562,86230],[3,0],[14,-6],[3,0]],[[79582,86224],[2,2],[-2,2],[-6,5],[-6,7],[-2,3],[-3,6],[-2,5],[-1,4],[0,3],[0,3],[1,6],[0,3],[1,3],[1,3],[2,3],[2,2],[23,20],[2,3],[2,2],[0,3],[1,3],[0,3],[2,2],[11,2],[2,1],[3,5],[2,1],[3,0]],[[79620,86329],[29,-9],[1,0]],[[79650,86320],[5,0]],[[79655,86320],[3,-1]],[[79658,86319],[5,-3]],[[79663,86316],[2,0],[1,0]],[[79666,86316],[3,0],[3,1],[2,2],[2,1],[0,6],[1,3],[4,3],[2,3],[1,3],[0,3],[0,2],[1,3],[0,3],[1,3],[2,3],[18,23],[2,3],[2,4],[0,4],[-2,3],[-3,2],[-63,21],[-3,2],[-1,2],[0,3],[1,3],[1,3],[1,3],[1,4],[0,4],[-2,3],[-2,2],[-17,5],[-3,1],[1,2],[3,3],[1,4],[-1,2],[-3,2],[-17,3],[-14,6],[-22,6],[-4,3],[-1,2],[-1,3],[-1,8],[0,3],[1,3],[1,3],[2,2],[7,8],[2,3],[1,4],[0,5],[-3,9],[-1,5],[0,4],[1,3],[3,5],[1,4],[0,5],[-3,5],[-1,4],[0,3],[2,3],[3,2],[2,3],[1,3],[0,2],[0,3],[-1,5],[-1,3],[1,9],[-2,14],[-1,4],[0,2],[0,3],[1,3],[3,9],[0,3],[0,3],[-2,8],[0,2],[0,6],[-1,8],[-5,16],[-8,15],[-1,3],[-1,4],[-2,3],[-7,10],[-5,7],[-1,4],[-1,4],[-1,3],[0,4],[-2,5],[-2,2],[-3,2]],[[79536,86752],[-1,0],[-26,-3]],[[79509,86749],[-6,1],[-11,4],[-4,3],[-4,4],[-5,7],[-2,4],[-1,4],[1,6],[1,6],[1,6],[2,5],[1,4],[1,4],[0,5],[-3,6],[-3,10],[0,4],[0,6],[0,3],[-1,3],[-3,3],[-1,3],[0,3],[0,6],[0,6],[0,5],[0,3],[1,3],[1,3],[7,9],[1,3],[1,3],[10,11],[3,2],[13,2],[3,1],[16,12],[3,3],[2,3],[0,4],[0,3],[-2,3],[-2,3],[-2,3],[-1,3],[1,4],[1,3],[2,4],[0,5],[-2,8],[-1,5],[-4,6],[-10,7],[-1,6],[0,5],[0,5],[-3,19],[-1,7],[1,5],[1,3],[3,7],[1,3],[1,4],[-2,3],[-23,10],[-4,3],[-1,4],[-1,4],[-1,7],[1,3],[2,3],[5,4],[3,3],[2,4],[1,6],[-2,4],[-3,2],[-3,1],[-4,1],[-28,-11],[-3,0],[-4,0],[-4,2],[-3,3],[-1,3],[0,3],[1,2],[1,2],[17,19],[2,3],[1,4],[0,5],[-2,9],[-2,5],[-4,2],[-25,2],[-11,3],[-11,7],[-9,9],[-5,3],[-5,2],[-12,-4],[-14,-2],[-7,2],[-7,5],[-9,8],[-19,20],[-5,8],[-1,5],[98,12],[21,11],[5,5],[2,3],[2,2],[0,2],[5,14],[2,6],[2,9],[2,10],[2,4],[2,2],[25,9],[21,0],[3,1],[24,14],[19,24],[5,5],[25,12],[3,1],[7,-1],[15,-5],[3,-3],[11,-12],[3,-1],[3,-1],[3,1],[3,2],[2,2],[15,26],[14,19],[3,4],[1,4],[0,3],[0,3],[0,7],[0,11],[0,5],[4,30],[1,20],[0,7],[0,3],[0,3],[0,3],[0,2],[1,6],[1,47],[1,7],[0,6],[0,8],[0,9],[12,93],[0,4],[0,2],[0,6],[1,6],[0,3],[0,2],[0,3],[0,3],[0,6],[0,2],[0,3],[0,3],[0,5],[1,48],[0,3],[0,3],[0,6],[0,2],[1,3],[0,3],[2,34],[1,18],[-5,95],[0,15],[0,10],[0,4],[0,6],[4,37],[0,229],[-1,3],[-1,3],[-88,126],[-88,126],[-28,40],[-3,7],[0,7],[1,4],[3,2],[33,15],[3,2],[2,3],[2,3],[0,3],[2,8],[1,3],[2,4],[18,21],[13,14],[7,4],[8,-1],[8,-4],[8,-6],[2,-3],[2,-2],[2,-5]],[[79600,88629],[1,-3],[3,-3]],[[79604,88623],[4,-2],[4,-1],[65,0],[6,4],[24,7],[49,28],[92,27],[92,27],[7,0]],[[79947,88713],[22,-4],[1,0]],[[79970,88709],[9,2],[23,13],[2,2],[0,2],[0,2],[0,3],[-1,3],[0,2],[0,3],[0,3],[1,3],[1,3],[1,3],[4,6],[5,7],[26,25],[29,15],[10,2],[51,-1]],[[80131,88807],[34,-10],[1,0]],[[80166,88797],[75,2],[3,-1]],[[80244,88798],[2,-2],[10,-20]],[[80256,88776],[2,-3],[3,-2]],[[80261,88771],[29,-9],[23,-3],[24,2],[6,2],[6,6],[6,6],[7,9],[6,7],[9,7],[2,3],[1,3],[1,3],[3,6],[8,12],[1,3],[-2,3],[-5,4],[-2,3],[-1,2],[0,3],[1,3],[0,3],[3,6],[6,9],[4,9],[1,3],[3,3],[4,4],[6,3],[2,3],[2,2],[3,10],[0,3],[1,3],[0,2],[-1,2],[-3,1],[-15,0],[-8,3],[-4,2],[-11,9],[-2,3],[-1,2],[-1,3],[-1,3],[0,2],[0,3],[2,6],[0,3],[-1,2],[-6,10],[-7,10],[-6,10],[-1,3],[-1,3],[0,2],[0,3],[2,9],[2,3],[2,3],[3,4],[4,1],[12,2],[49,19],[6,6],[2,3],[8,15],[1,3],[1,3],[-1,5],[-1,3],[-2,2],[-8,7],[-1,3],[2,3],[4,4],[7,6],[6,2],[4,1],[16,1],[35,11],[5,0],[12,-1],[32,8],[1,0],[17,-3],[23,5],[26,-2],[1,0],[3,3],[3,2],[2,4],[1,2],[0,3],[0,3],[-3,2],[-7,4],[-33,11],[-2,2],[0,3],[0,3],[1,5],[1,3],[0,3],[0,3],[0,2],[-1,3],[-2,2],[-10,7],[-2,3],[0,3],[2,0],[15,-1],[2,2],[1,2],[-1,3],[-3,7],[0,3],[-1,3],[0,5],[0,3],[-1,3],[-1,2],[-2,5],[-1,3],[1,3],[24,19],[14,4],[5,2],[3,3],[2,3],[2,3],[4,4],[3,1],[33,3],[13,5],[2,2],[2,3],[0,3],[-1,3],[0,2],[-1,9],[-1,5],[0,3],[1,3],[3,4],[5,5],[4,3],[4,2],[7,0],[8,1]],[[80720,89334],[10,-1],[1,0]],[[80731,89333],[6,0],[7,2],[6,4],[7,1],[6,0],[5,-1]],[[80768,89339],[2,-2],[3,-2]],[[80773,89335],[4,-2],[17,0],[12,4],[22,14],[25,8],[73,4],[5,2],[3,3],[2,3],[2,6],[4,6],[7,7],[17,13],[12,6],[120,25],[7,3],[5,5],[2,1],[0,2],[2,5],[0,3],[3,11],[1,3],[2,3],[4,4],[4,3],[4,1],[8,-1],[4,-1]],[[81144,89476],[3,-2],[3,-2]],[[81150,89472],[2,-3],[1,-3],[3,-5],[2,-2]],[[81158,89459],[1,-5],[1,-3],[2,-3],[3,-2]],[[81165,89446],[4,-2],[2,-1]],[[81171,89443],[9,2],[4,3],[3,3],[18,20],[7,5],[5,3],[5,0],[14,0],[1,0],[6,3],[22,15],[5,6],[2,4],[-16,17],[-2,2],[0,4],[1,3],[5,6],[4,3],[30,14],[6,5],[4,3],[3,12],[1,2],[-1,3],[-3,2],[-8,4],[-3,2],[-2,2],[-1,3],[0,3],[-1,2],[-2,3],[-2,1],[-3,1],[-4,-1],[-25,-11],[-3,0],[-3,1],[-1,2],[-1,2],[-2,3],[-3,2],[-13,6],[-3,2],[-8,10],[-11,9],[-93,40],[-1,1],[-1,3],[0,200],[0,200],[-1,0],[-49,-1],[-10,4],[-5,3],[-3,3],[-2,2],[-1,3],[-1,3],[-1,5],[-2,3],[0,2],[-1,3],[0,5],[-1,3],[-2,3],[-22,1],[-4,2],[-1,3],[4,9],[3,6],[2,6],[0,3],[0,2],[-1,3],[-1,3],[-18,19],[-6,4],[-5,1],[-33,-2],[-23,3],[-3,3],[-3,3],[-3,2],[-60,19],[-5,4],[-3,3],[-1,2],[0,3],[0,3],[0,2],[1,3],[2,3],[14,8],[11,5],[3,2],[2,3],[3,5],[2,3],[25,12],[2,2],[1,3],[1,3],[0,3],[0,3],[-2,4],[-9,7],[-5,6],[-8,6],[-55,16],[-6,1],[-9,-2],[-8,-1],[-9,3],[-4,2],[0,3],[1,3],[-2,6],[0,2],[6,5],[3,3],[0,3],[-3,3],[-4,1],[-37,4],[-6,2],[-8,4],[-4,4],[-2,3],[-3,5],[-2,5],[-1,3],[0,2],[-1,3],[0,3],[-1,3],[0,2],[0,3],[-1,3],[-5,16],[0,2],[-5,16],[-1,3],[1,2],[1,3],[3,2],[15,8],[3,3],[1,4],[-1,5],[-3,4],[-10,5],[-3,3],[-1,3],[0,3],[1,3],[-1,6],[-1,3],[0,3],[3,2],[3,2],[25,6],[28,18],[1,3],[-3,1],[-4,0],[-4,1],[-5,7],[-3,7],[-4,5],[-2,3],[0,2],[0,1],[1,1],[1,1],[6,3],[28,8],[3,2],[3,4],[1,6],[-2,4],[-2,3],[-11,7],[-4,4],[-1,3],[-1,3],[-1,3],[0,3],[-1,5],[-3,8],[-8,11],[0,3],[0,4],[0,3],[-1,4],[-3,3],[-4,2],[-92,5],[-5,2],[-3,3],[0,3],[1,3],[3,2],[45,25],[3,3],[3,3],[1,4],[-1,5],[-2,4],[-8,6],[-6,11],[-8,5],[-29,4],[-61,27],[-7,7],[0,2],[3,1],[98,2],[4,1],[8,4],[14,11],[11,13],[7,12],[8,9],[3,3],[15,6],[3,10],[9,17],[3,3],[8,2],[36,-1],[1,0],[8,2],[15,7],[3,3],[3,3],[2,3],[1,3],[1,2],[4,7],[0,5],[-1,4],[-2,3],[-15,8],[-35,18],[-5,1],[-2,1],[5,7],[-2,6],[-9,6],[-2,3],[0,2],[1,6],[3,5],[4,4],[3,2],[-11,1],[14,11],[23,13],[75,27],[5,4],[94,38],[12,75],[-95,116],[13,82],[117,64],[117,63],[117,64],[129,32],[128,32],[129,32],[128,32],[0,278],[0,277],[0,278],[0,278],[0,278],[0,277],[139,0],[139,0],[139,0],[139,0],[138,0],[139,0],[139,0],[139,0],[139,0],[139,0],[139,0],[138,0],[1,0],[130,74],[130,74],[130,74],[130,74],[130,74],[130,75],[131,74],[130,74],[130,74],[130,74],[130,74],[130,74],[130,74],[130,74],[131,74]],[[85424,94443],[138,0],[139,0],[139,0],[139,0],[139,0],[138,0],[139,0],[139,0],[139,0],[139,0],[138,0],[139,0],[139,0],[139,0],[139,0],[139,0],[138,0],[139,0],[139,0],[139,0],[139,0],[138,0],[139,0],[139,0],[139,0],[139,0],[138,0],[139,0],[139,0],[139,0],[0,272],[0,272],[0,273],[0,272],[0,272],[0,272],[0,273],[0,272],[0,272],[0,273],[0,257],[0,258],[0,257],[0,258],[0,258],[0,257],[0,258],[0,257],[0,258],[0,257],[-89588,258]],[[97922,78764],[-4,-215],[0,-200],[0,-199]],[[97918,78150],[1,0],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[-1,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[-1,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[-1,-252],[0,-253],[0,-252],[0,-268],[0,-267],[0,-267],[0,-268],[0,-267],[0,-267],[0,-268],[0,-267],[0,-267],[0,-268],[-126,0],[-127,0],[-126,0],[-126,0],[-126,0],[-127,0],[-126,0],[-126,0],[-127,0],[-126,0],[-126,0],[-126,0],[-127,0],[-126,0],[-126,0],[-126,0],[-127,0],[-126,0],[-126,0],[-126,0],[-127,0],[-126,0],[-134,0],[-134,0],[-133,0],[-134,0],[0,-278],[0,-277],[-1,-278],[0,-278],[0,-278],[0,-278],[0,-277],[-1,-278],[0,-278],[0,-278],[0,-252],[0,-253],[0,-252],[-1,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[-1,-252],[0,-260],[0,-261],[0,-260],[0,-260],[0,-260],[0,-260],[136,0],[136,0],[136,0],[136,0],[136,0],[136,0],[136,0],[1,-275],[0,-276],[0,-275],[0,-275],[0,-275],[0,-276],[0,-275],[0,-275],[1,-275],[0,-276],[0,-275],[0,-275],[0,-275],[0,-276],[0,-275],[0,-275],[0,-275],[1,-276],[0,-275],[0,-275],[0,-275],[107,0],[108,0],[107,0],[108,0],[126,0],[126,-1],[126,0],[127,0],[126,0],[126,0],[127,0],[126,0],[126,0],[126,0],[127,0],[135,0],[136,0],[136,0],[136,0],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-171],[0,-170],[0,-261],[0,-260],[0,-260],[0,-261],[0,-260],[0,-261],[0,-271],[0,-272],[0,-271],[-68,-213],[-68,-213],[-67,-213],[-68,-213],[-68,-213],[-68,-213],[-68,-213],[-68,-213],[-68,-213],[-68,-213],[-67,-213],[-75,-234],[-75,-234],[-74,-234],[-75,-235],[-75,-234],[-74,-234],[-75,-234],[-75,-235],[-74,-234],[-75,-234],[-72,-225],[-71,-224],[-72,-224],[-71,-225],[-72,-224],[-71,-225],[-72,-224],[-71,-225],[-1,-277],[0,-278],[0,-278],[0,-278],[0,-277],[-1,-278],[0,-278],[0,-278],[0,-278],[-1,-277],[0,-278],[0,-278],[0,-278],[-1,-277],[0,-278],[0,-278],[0,-278],[0,-277],[-1,-278],[0,-278],[0,-169],[0,-168]],[[95846,19711],[126,0],[126,0],[127,0],[126,0],[126,0],[126,0],[127,0],[126,0],[126,0],[126,0],[127,0]],[[97235,19711],[137,0],[137,0],[137,0],[138,0],[137,0]],[[97921,19711],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[-1,-253],[0,-252],[0,-253],[0,-252],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-252],[-1,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[-1,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-244],[0,-243],[0,-243],[0,-244],[0,-243],[0,-243],[0,-243]],[[97918,6897],[-117,8],[-116,9],[-116,8],[-117,9],[-116,9],[-52,3],[-11,31],[-14,17],[-19,17],[-23,16],[-33,17],[-64,25],[-55,12],[-123,16],[-123,16],[-133,10],[-30,5],[-22,6],[-16,8],[-53,43],[19,15],[13,15],[8,16],[3,16],[-2,16],[-9,19],[-12,15],[-20,16],[-25,15],[-26,11],[-34,11],[-35,8],[-36,6],[-37,2],[-37,0],[-35,-3],[-51,-8],[-38,-11],[-32,-14],[-27,-16],[-19,-20],[-10,-25],[1,-25],[11,-34],[-48,-18],[-29,-17],[-29,-24],[-23,-30],[-13,-30],[-2,-22],[8,-20],[22,-23],[1,-6],[-8,-8],[-47,-24],[-26,-20],[-17,-22],[-5,-22],[8,-21],[17,-24],[19,-18],[31,-20],[11,-39],[13,-14],[19,-15],[2,-7],[-9,-4],[-22,-2],[-42,0],[-24,4],[-22,24],[-27,21],[-47,22],[-32,21],[-69,32],[-20,12],[14,26],[4,22],[-3,45],[-10,25],[-19,20],[-39,25],[-17,15],[-28,47],[-33,43],[-15,14],[-31,20],[-5,25],[-13,17],[-20,16],[-39,22],[-5,5],[1,10],[21,32],[0,30],[-17,57],[-18,22],[-29,28],[18,22],[13,30],[4,30],[-8,20],[-24,34],[4,32],[-7,28],[-8,17],[-19,24],[11,20],[4,16],[-9,50],[33,49],[18,38],[-5,28],[-22,31],[13,19],[24,48],[5,18],[1,18],[-9,23],[-20,22],[-30,19],[-50,21],[-35,35],[25,26],[16,25],[7,24],[-3,40],[17,20],[72,-5],[60,5],[38,9],[41,16],[40,10],[32,12],[35,20],[25,24],[40,88],[38,-2],[43,-16],[42,-9],[37,-4],[32,0],[41,4],[42,10],[34,15],[27,18],[24,27],[12,30],[7,45],[-5,41],[-9,22],[-15,16],[-68,46],[-34,77],[41,25],[38,39],[41,17]],[[96139,8866],[50,28]],[[96189,8894],[64,18],[34,17],[24,21],[54,66],[52,10],[78,23],[68,14],[28,8],[53,29],[49,18],[23,12],[91,77],[8,4],[12,2],[34,-5],[38,-13],[16,-7],[1,-4],[-14,-22],[-6,-22],[3,-21],[10,-21],[20,-21],[63,-45],[23,-14],[25,-10],[28,-8],[36,-5],[36,0],[40,4],[47,8],[43,13],[27,12],[22,15],[23,26],[32,54],[9,25],[-1,22],[-27,49],[-20,55],[-13,24],[-27,25],[-40,18],[-4,4],[19,22],[14,27],[4,20],[-2,28],[80,124],[7,7],[37,19],[20,15],[16,18],[12,26],[10,58],[10,33],[1,21],[-15,59],[-29,54],[1,15],[8,9],[46,18],[55,33],[25,20],[28,29],[28,34],[16,29],[5,26],[-7,27],[-18,26],[-11,25],[-23,38],[-46,41],[-63,116],[-20,32],[-44,51],[-22,17],[-23,12],[-28,8],[-29,4],[-33,0],[-34,-4],[-47,-16],[-73,-44],[-15,-3],[-35,21],[-61,21],[-38,44],[-40,25],[-63,19],[-74,12],[-18,7],[-7,9],[1,29],[-20,58],[-35,43],[-41,31],[-41,18],[-95,21],[-15,3],[-10,1],[-49,1],[-25,27],[-24,19],[-30,16],[-33,10],[-52,6],[-52,14],[-42,4],[-40,-4],[-97,-21],[-48,22],[-44,10],[-42,4],[-95,1],[-44,10],[-62,7],[-89,20],[-30,2],[-45,-2],[-12,10],[-18,26],[-17,13],[-30,18],[-33,11],[-41,7],[-84,3],[-41,4],[-24,6],[-48,18],[-40,8],[-34,1],[-79,-4],[-53,24],[-34,7],[-31,2],[-33,-4],[-30,-8],[-53,-20],[-14,-3],[-10,2],[-7,5],[-28,37],[-56,50],[-24,16],[-34,13],[4,60],[-5,18],[-11,19],[-19,20],[-32,28],[-37,46],[-39,28],[-28,38],[-41,30],[-34,13],[-70,11],[-49,24],[-55,14],[-40,32],[-29,16],[-44,12],[-55,3],[-50,34],[-110,40],[-33,4],[-36,2],[-65,-13],[-36,-4]],[[93751,77767],[138,3],[137,2],[137,3],[137,3],[137,2],[137,3],[137,3],[137,2],[138,3],[137,3],[124,0],[125,0],[125,0],[124,0],[125,0],[125,0],[124,0],[98,131],[99,132],[98,131],[98,132],[99,144],[104,150],[74,108],[108,140],[108,140]],[[96881,79002],[170,221]],[[97051,79223],[85,110],[85,111]],[[96388,34444],[0,-278],[0,-277],[0,-278],[0,-278],[116,0],[115,0],[116,0],[116,0],[116,0],[115,0],[0,278],[0,278],[0,277],[0,278],[-115,0],[-116,0],[-116,0],[-116,0],[-115,0],[-116,0]],[[94027,32777],[0,-278],[0,-277],[93,0],[92,0],[93,0],[0,185],[0,185],[0,185],[-93,0],[-92,0],[-93,0]],[[90531,74010],[-3,24],[-3,13],[-13,47],[-1,26],[-17,20],[-20,39],[-1,2],[-5,10],[-7,-3],[-16,-7],[-18,-8],[-17,36],[-5,12],[-16,28],[-20,18],[-19,28],[-6,28],[1,19],[2,29],[6,20],[18,32],[6,10],[12,20],[11,26],[16,24],[9,20],[13,42],[5,18],[-2,28],[-3,35],[-21,53],[-14,15],[-18,10],[-19,2],[-18,-5],[-25,-23],[-47,-81],[-39,-53],[-42,-73],[-12,-2],[-29,6],[-14,9],[-15,53],[-25,28],[-120,40],[-61,33],[-39,29],[-17,34],[-84,95],[-67,98],[-50,95],[-30,77],[-45,84],[0,175],[-39,10],[-113,43],[-97,38],[-36,34],[-39,-21],[-67,20],[-25,177],[-5,38],[1,42],[6,23],[14,23],[23,14],[63,64],[64,64],[7,50],[40,137],[11,52],[-1,36],[-19,69],[-8,177],[9,58],[46,159],[3,48],[-3,81],[-7,50],[-64,169],[-11,48],[-2,42],[7,40],[23,54],[12,49],[9,72],[9,43],[-2,57],[21,135],[6,98],[-9,89],[9,114],[-8,126],[-22,85],[-4,43],[25,192],[10,31],[24,48],[5,20],[-22,60],[-19,72],[-19,45],[-55,92],[-25,26],[-16,4],[-11,-10],[-23,-42],[-35,-37],[-4,-56],[-9,-39],[-14,-33],[-29,-45],[2,-75],[-11,-70],[-11,-31],[-27,-52],[-8,-25],[2,-59],[-4,-45],[12,-84],[-2,-46],[23,-34],[11,-24],[7,-34],[1,-35],[-5,-26],[-11,-26],[-35,-45],[12,-193],[-41,-145],[-31,-58],[-3,-43],[1,-101],[-8,-28],[-29,-58],[-9,-29],[-3,-33],[1,-90],[-10,-47],[-50,-97],[-69,-74],[-38,-72],[-92,-129],[-24,-80],[-30,-76],[-13,-63],[-21,-54],[-12,-18],[-37,-39],[-61,-96],[-15,-79],[-34,-86],[-4,-63],[-6,-30],[-20,-43],[-26,-32],[-21,-95],[-11,-34],[-26,-55],[-48,-83],[-37,-89],[-53,-81],[-37,-41],[-68,-133],[-79,-85],[-23,-67],[-37,-50],[-19,-50],[-40,-79],[-36,-51],[-19,-65],[-15,-32],[-19,-24],[-49,-40],[-12,-15],[-16,-40],[-29,-45],[-58,-192],[-22,-52],[-55,-69],[-26,-72],[-15,-25],[-66,-51],[-38,-59],[-87,-84],[-61,-44],[-85,-110],[-75,-50],[-53,-2],[-100,-68],[-30,-6],[-33,7],[-75,36],[-35,32],[-26,-11],[-16,-20],[-27,-12],[-27,6],[-19,18],[-20,35],[-7,44],[0,6],[-11,31],[-49,-21],[-2,1],[-33,-34],[-22,-12],[1,-17],[-5,-46],[-9,-26],[-17,-23],[-21,-12],[-19,2],[-17,-33],[-14,-14],[-16,-8],[-38,7],[-18,3],[-19,-52],[-2,-7],[-78,-2],[0,1],[-8,8],[-3,6],[0,7],[0,14],[-1,14],[-3,9],[-5,8],[-6,3],[-6,7],[-3,7],[-4,21],[-2,2],[-1,2],[-1,3],[0,6],[-1,2],[-3,11]],[[86258,73627],[0,1]],[[86258,73627],[10,13],[5,9],[0,16],[-4,13],[-5,13],[-7,11],[-6,7],[-9,1],[-10,-2],[-9,1],[-7,11],[8,21],[23,25],[27,21],[17,6]],[[86291,73793],[22,-2],[1,0]],[[86314,73791],[1,0],[3,7],[3,9],[3,7],[7,1],[6,-2],[11,-8],[38,-1],[2,6],[1,8],[2,7],[4,6],[4,0],[10,0],[8,7],[-1,14],[-5,17],[-2,15],[0,15],[1,7],[2,6],[2,2],[6,3],[2,4],[1,5],[0,4],[1,4],[2,4],[9,10],[4,7],[2,10],[-1,10],[-3,7],[-2,7],[0,11],[3,9],[4,7],[9,12],[3,8],[2,10],[0,21],[1,12],[3,7],[3,5],[3,8],[1,8],[-1,25],[-1,7],[-4,7],[-2,3],[-24,29],[-2,6],[1,9],[6,14],[2,8],[-1,4],[-2,10],[-1,5],[1,4],[1,10],[1,5],[-1,5],[-2,10],[-1,6],[0,4],[1,13],[-2,31],[0,10],[6,34],[7,27],[0,10],[-3,18],[0,9],[2,10],[0,8],[1,5],[5,8],[4,6],[3,2],[1,5],[-28,174],[-27,175],[-13,36],[-4,5],[-10,11],[-11,27],[1,9],[10,7],[6,0],[5,1],[4,4],[4,7],[1,4],[0,8],[1,5],[2,2],[12,5],[4,1]],[[86419,74955],[3,-3],[5,-5]],[[86427,74947],[5,-2],[5,1],[19,10],[4,3],[12,16],[3,4],[5,2],[5,0]],[[86485,74981],[20,-5]],[[86505,74976],[4,2],[2,5],[3,7],[4,5],[1,2],[39,52],[3,8],[0,11],[-5,13],[0,10],[3,11],[4,8],[4,4],[7,2],[12,-1],[3,4],[17,50],[10,15],[9,3],[5,-6],[3,-10],[2,-10],[3,-10],[4,-7],[5,-7],[5,-5],[5,-3]],[[86657,75129],[121,-48],[121,-49]],[[86899,75032],[23,-17],[9,-2],[4,2],[7,11],[9,6],[7,13],[6,5],[7,9],[5,9],[2,4],[1,6],[0,8],[-2,15],[-3,18],[-3,16],[3,11],[-2,13],[7,54],[1,10],[1,9],[2,9],[11,33],[2,5],[4,4],[11,7],[8,3],[8,7],[9,4],[9,11],[3,3],[11,0],[3,4],[-3,11],[4,8],[4,3],[4,1],[5,3],[-1,3],[-3,6],[-1,3],[7,8],[2,5],[-1,8],[-3,4],[-7,3],[-2,6],[8,10],[4,22],[7,6],[-2,5],[-6,5],[-2,5],[0,8],[3,4],[2,3],[1,2],[2,14],[3,10],[5,5],[5,0],[2,-2]],[[87099,75491],[1,-3],[2,-2]],[[87102,75486],[3,-1],[2,1],[0,2],[-1,2],[1,3],[4,5],[1,4],[1,8],[0,6],[2,3],[3,1],[6,-5],[3,3],[10,49],[7,23],[0,9],[-7,20],[-2,15],[3,4],[6,0],[6,5],[7,11],[2,5],[2,5],[1,6],[2,4],[4,1]],[[87168,75675],[1,-1],[3,-8]],[[87172,75666],[2,-2],[1,0],[1,2],[5,10],[2,3],[-1,7],[3,5],[6,3],[4,5],[-1,10],[-2,8],[0,6],[6,6],[-2,5],[-3,3],[-3,-1]],[[87190,75736],[-3,-3]],[[87187,75733],[-3,10],[5,8],[12,10],[2,11],[-3,11],[-6,9],[-5,6],[-3,2],[-3,0],[-2,2],[-2,7],[0,7],[1,6],[12,27],[1,5],[1,14],[1,5],[5,10],[13,11],[5,8],[3,7],[2,5],[3,10],[3,26],[4,23],[1,11],[-2,9],[-4,10],[-2,7],[1,8],[12,41],[1,11],[0,22],[1,8],[1,4],[2,2],[2,4],[7,31],[3,9],[6,5],[14,3],[6,5],[3,13],[-3,11],[-5,10],[-3,9],[2,12],[0,6],[-1,3],[-2,2],[-5,9],[-1,5],[-2,11],[1,7],[3,9],[1,13],[3,9],[5,6],[12,10],[3,6],[6,17],[4,7],[6,6],[5,3],[6,2],[7,0],[3,2],[3,2],[4,1],[6,-5],[10,-1],[3,1],[5,5],[9,15],[6,3],[1,6],[13,26],[3,4],[2,8],[12,13],[4,8],[1,12],[0,12],[2,10],[6,4],[3,4],[13,26],[-2,4],[2,13],[-21,30],[-5,16],[-1,9],[-2,14],[-3,12],[-3,5],[-6,2],[-7,6],[-3,9],[4,10],[-10,23],[-2,13],[2,17],[6,12],[17,23],[4,3],[5,15],[2,47],[4,18],[4,6],[-5,-1],[-11,3],[-13,10],[-12,17],[-8,23],[-4,-4],[-5,-4],[-5,-2],[-5,1],[-5,2],[-14,15],[-5,6]],[[87329,76878],[-6,-3],[-44,-9]],[[87279,76866],[-25,-14]],[[87254,76852],[-17,-4],[-4,-3]],[[87233,76845],[-5,-4],[-11,-17]],[[87217,76824],[-5,-3],[-8,-3],[-16,1]],[[87188,76819],[-1,0],[-2,-1]],[[87185,76818],[-5,-2],[-10,-8],[-5,-3],[-16,0],[-5,-3]],[[87144,76802],[-4,-7],[-6,-17]],[[87134,76778],[-4,-7]],[[87130,76771],[-5,-3],[-9,-4],[-4,-3]],[[87112,76761],[-3,-4],[-3,-5],[-2,-6],[-1,-6],[-4,-11],[-4,-7]],[[87095,76722],[-6,-3],[-16,-3]],[[87073,76716],[-4,1],[-10,6],[-5,2],[-5,0],[-15,-3],[-6,0],[-3,2],[-5,6],[-3,2],[-11,4],[-11,-1],[-26,-10],[-4,-3],[-4,-5],[-3,-7],[-1,-4],[-1,-3],[-1,-3],[-2,-3],[-2,-2],[-24,-14],[0,-3],[-21,-20],[-3,-5]],[[86903,76653],[-6,-14],[-3,-5]],[[86894,76634],[-4,-4],[-5,-1],[-4,0],[-3,3],[-7,8],[-4,3],[-5,1]],[[86862,76644],[-5,-2],[-4,-4],[-2,-3],[-1,-3]],[[86850,76632],[-1,-4],[0,-5],[1,-4],[1,-3],[1,-4],[1,-5]],[[86853,76607],[-2,-7],[-2,-6]],[[86849,76594],[-14,-24]],[[86835,76570],[-8,-15],[-1,-3]],[[86826,76552],[-1,-4],[0,-3]],[[86825,76545],[2,-10],[1,-5],[-1,-4]],[[86827,76526],[-2,-5],[-4,-9]],[[86821,76512],[-3,-3],[-3,-4],[-3,-2],[-14,0],[-6,2],[-15,11],[-9,3],[-10,1]],[[86758,76520],[-19,-5],[-3,-2]],[[86736,76513],[-14,-13]],[[86722,76500],[-4,-3],[-7,-3]],[[86711,76494],[-12,-1],[-8,3],[-18,2],[-16,-4],[-3,-2]],[[86654,76492],[-7,-8],[-2,-2]],[[86645,76482],[-3,-1],[-3,1],[-2,1],[-8,6],[-3,1],[-5,1]],[[86621,76491],[-1,0],[-10,-3]],[[86610,76488],[-5,0],[-21,9],[-1,0],[-5,-1]],[[86578,76496],[-15,-15],[-2,-2]],[[86561,76479],[-3,-1],[-2,0],[-3,0],[-2,2],[-2,2],[-11,19],[-9,10],[-9,7],[-9,4],[-6,1]],[[86505,76523],[-1,0],[-58,-19],[-11,-6]],[[86435,76498],[-11,-9],[-7,-3],[-5,-1],[-11,2],[-6,2],[-11,10],[-5,2],[-7,8],[-1,19],[1,21],[0,17],[-9,36],[-14,24],[-49,68],[-2,7],[-1,13],[-2,9],[0,8],[3,10],[9,16],[6,8],[5,3],[2,3],[3,20],[1,6],[2,5],[12,21],[1,6],[1,13],[-1,9],[-2,4],[-3,1],[-4,3],[-3,5],[-1,4],[-3,11],[-6,16],[-1,10],[2,10],[4,11],[-1,10],[-4,6],[-8,1],[-21,-12],[-3,3],[-1,3],[-2,11],[-1,6],[0,6],[2,11],[0,6],[-4,9],[-6,4],[-6,3],[-6,5],[-3,10],[1,11],[26,89],[11,25],[3,9],[-1,8],[-7,3]],[[86291,77153],[-7,-1]],[[86832,82715],[2,2]],[[86834,82717],[5,-3],[-2,3]],[[88979,86422],[74,-10],[74,-7],[49,-14],[25,-56],[35,-50],[38,0],[36,57],[56,49],[42,-14],[53,-64],[56,-91],[60,21],[42,70],[53,22],[42,-29],[21,-77],[14,-56],[39,7],[46,42],[42,-7],[49,-56],[63,-28],[53,14],[39,14],[49,-64],[39,-84],[38,-49],[34,-96],[48,-16],[63,-21],[56,-29],[66,-34],[47,-58],[58,-37],[52,-86],[-16,-8],[-2,-4],[-2,-4],[-1,-8],[-3,-14],[-1,-4],[-1,-3],[-19,-18],[-11,-5],[-33,-11],[-9,-7],[-28,-7],[-6,-3],[-4,-3],[-7,-8],[-5,-3],[-46,-11],[-3,-3],[-2,-2],[0,-2],[1,-3],[5,-6],[2,-2],[7,-6],[2,-2],[1,-3],[1,-3],[1,-5],[0,-4],[0,-3],[-1,-14],[0,-3],[1,-3],[1,-3],[1,-2],[1,-3],[1,-3],[0,-3],[0,-3],[0,-4],[0,-3],[1,-3],[-1,-3],[-2,-4],[-3,-2],[-2,-2],[-9,-3],[-2,-2],[-2,-2],[-3,-6],[-5,-12],[-3,-9],[-2,-4],[-1,-3],[-16,-23],[-3,-6],[-1,-3],[-1,-4],[0,-12],[0,-14],[-1,-3],[-4,-16],[-10,-28],[-3,-9],[-2,-4],[-1,-5],[0,-6],[-1,-5],[-3,-6],[-2,-3],[-18,-25],[-1,-2],[-2,-6],[-2,-9],[-2,-18],[-1,-9],[0,-6],[1,-3],[2,-5],[10,-31],[0,-3],[0,-4],[-2,-6],[-1,-4],[0,-3],[1,-3],[2,-2],[1,-3],[1,-2],[-1,-3],[-2,-1],[-5,-4],[-1,-2],[-1,-4],[0,-4],[1,-3],[2,-2],[6,-3],[2,-2],[1,-2],[1,0],[0,-1],[0,-1],[0,-2],[0,-3],[2,-2],[1,-2],[1,-4],[1,-4],[-1,-6],[0,-5],[1,-3],[1,-3],[5,-7],[1,-2],[1,-3],[1,-3],[-2,-10],[-1,-9],[0,-5],[0,-4],[1,-3],[0,-3],[-1,-7],[-8,-30],[-1,-9],[1,-6],[3,-5],[7,-9],[6,-5],[2,-2],[1,-4],[0,-4],[-1,-7],[0,-4],[1,-4],[2,-2],[6,-9],[1,-3],[-1,-3],[-3,-4],[-3,-2],[-2,-3],[-2,-3],[0,-6],[1,-3],[3,-3],[7,-4],[2,-2],[2,-2],[6,-13],[4,-4],[1,-2],[-1,-3],[-11,-7],[-10,-11],[-4,-3],[-5,-2],[-7,2],[-6,3],[-9,7],[-2,1],[-3,1],[-5,-2],[-5,-5],[-11,-13],[-5,-3],[-3,0],[-2,2],[-3,1],[-3,0],[-3,-1],[-2,-2],[0,-3],[1,-3],[2,-3],[9,-10],[1,-2],[1,-3],[1,-3],[0,-3],[-1,-5],[-4,-15],[-2,-6],[0,-5],[0,-3],[0,-3],[1,-2],[2,-3],[3,-5],[1,-2],[1,-3],[0,-3],[-1,-4],[-2,-3],[-5,-4],[-6,-3],[-1,-2],[1,-2],[1,-2],[8,-5],[2,-1],[2,-3],[0,-2],[-1,-3],[-5,-2],[-7,-2],[-1,-4],[-1,-6],[-2,-3],[-15,-6],[-3,-1],[-4,1],[-12,5],[-2,1],[-2,-1],[0,-1],[1,-3],[3,-4],[1,-3],[0,-3],[-1,-7],[0,-3],[1,-3],[2,-6],[-1,-3],[-3,-4],[-9,-7],[-5,-1],[-4,0],[-3,1],[-3,1],[-3,-1],[-3,-3],[-3,-5],[-7,-9],[-5,-4],[-3,-1],[-3,-1],[-3,0],[-6,1],[-3,0],[-2,-2],[-6,-7],[-2,-2],[-1,-2],[-1,-4],[0,-4],[7,-19],[15,4],[9,6],[5,1],[6,1],[21,-3],[6,-4],[4,-5],[10,-17],[2,-2],[2,-2],[22,-12],[12,-11],[4,-2],[4,0],[7,2],[4,2],[3,2],[8,7],[2,2],[7,0],[27,-6],[6,-4],[4,-4],[1,-2],[3,-2],[3,-2],[4,0],[4,0],[6,2],[3,3],[5,7],[5,3],[14,4],[5,3],[3,3],[2,1],[1,2],[1,3],[1,3],[2,11],[1,4],[1,2],[2,3],[3,1],[11,3],[4,0],[2,-1],[2,-3],[4,-9],[4,-10],[2,-2],[2,-2],[2,-1],[4,0],[6,3],[8,6],[3,1],[5,-1],[18,-11],[7,-8],[4,-4],[1,-3],[0,-2],[0,-2],[3,-5],[2,-5],[2,-2],[3,-1],[9,2],[7,-1],[11,-6],[4,-5],[1,-8],[1,-2],[2,-1],[6,1],[3,0],[2,-2],[3,-1],[2,-2],[3,-6],[1,-4],[3,-3],[2,-3],[1,-4],[1,-2],[3,-2],[6,-1],[2,-2],[14,-13],[1,-3],[2,-3],[1,-6],[0,-5],[-2,-7],[0,-3],[1,-4],[1,-3],[2,-3],[3,-2],[8,-5],[2,-2],[5,-6],[1,-3],[1,-3],[0,-8],[0,-4],[3,-5],[14,-19],[3,-2],[7,-1],[5,-3],[4,-4],[2,-2],[1,-3],[0,-3],[-1,-5],[-2,-2],[-1,-4],[0,-4],[3,-11],[0,-6],[1,-7],[-2,-14],[1,-4],[1,-3],[9,-15],[1,-3],[1,-2],[1,-4],[0,-4],[0,-6],[-2,-3],[-1,-4],[-1,-3],[0,-5],[3,-5],[4,-4],[3,-3],[4,-2],[4,-1],[22,3],[2,-2],[1,-3],[-1,-4],[-1,-3],[-3,-6],[-3,-7],[-1,-7],[-2,-3],[-1,-2],[-9,-12],[-1,-3],[-1,-3],[-1,-5],[1,-6],[2,-11],[2,-5],[2,-4],[9,-14],[2,-5],[1,-4],[0,-4],[-1,-8],[-3,-12],[-1,-4],[1,-9],[3,-19],[-1,-10],[-4,-4],[-11,-3],[-3,-2],[-2,-2],[-1,-3],[0,-3],[0,-3],[2,-2],[4,-3],[2,-2],[2,-3],[1,-2],[0,-3],[1,-3],[1,-3],[1,-2],[2,-2],[1,-3],[1,-2],[0,-2],[-1,-1],[-3,0],[-1,-1],[-1,-3],[-1,-13],[0,-4],[-2,-3],[-1,-2],[-2,-2],[-3,-1],[-3,-1],[-7,0],[-14,2],[-13,4],[-3,0],[-2,-1],[-3,-2],[-2,-2],[-3,-4],[-2,-3],[-1,-2],[-3,-6],[0,-5],[0,-7],[2,-12],[2,-6],[2,-5],[1,-4],[0,-6],[0,-4],[-1,-4],[-3,-5],[-4,-5],[-1,-2],[0,-3],[4,-4],[0,-3],[-1,-3],[-2,-2],[-5,-3],[-1,-2],[-1,-3],[0,-3],[1,-3],[1,-2],[5,-4],[1,-3],[0,-5],[-1,-4],[-1,-4],[-1,-3],[-6,-10],[-7,-10],[-4,-3],[-2,-2],[-3,-1],[-6,-2],[-12,0],[-3,2],[-3,1],[-10,13],[-2,2],[-3,1],[-10,3],[-3,1],[-2,2],[-2,2],[-1,3],[-1,5],[-2,3],[-1,2],[-2,2],[-3,1],[-2,1],[-6,-1],[-14,2],[-3,-1],[-1,-2],[-1,-3],[-1,-8],[-1,-3],[-2,-3],[-2,-2],[-28,-21],[-9,-1],[-2,-3],[-1,-5],[0,-10],[-1,-4],[-2,-3],[-8,-3],[-4,-4],[-2,-1],[-3,-1],[-2,0],[-6,5],[-3,1],[-3,0],[-3,-1],[-3,-1],[-2,-1],[-7,-9],[-12,-11],[-5,-3],[-5,-2],[-3,-1],[-1,-3],[-1,-3],[1,-8],[-1,-3],[-1,-3],[-1,-2],[-10,-5],[-5,-3],[-2,-2],[-8,-12],[-1,-3],[0,-5],[2,-8],[0,-5],[1,-4],[0,-3],[1,-4],[1,-3],[4,-3],[4,-2],[15,-3],[3,-2],[2,-3],[2,-5],[1,-4],[0,-3],[-2,-3],[-2,-2],[-2,-1],[-11,-4],[-2,-1],[-1,-3],[0,-3],[1,-2],[1,-6],[5,-10],[5,-8],[28,-32],[4,-4],[5,-3],[4,-4],[2,-2],[7,-7],[4,-2],[3,1],[2,2],[1,2],[2,3],[3,4],[2,2],[3,1],[66,1],[20,9],[13,9],[3,1],[13,-1],[3,1],[15,7],[3,1],[3,0],[3,-1],[2,-2],[2,-4],[2,-16],[1,-4],[5,-7],[10,-11],[2,-2],[0,-4],[1,-6],[-1,-5],[-1,-4],[-1,-3],[-1,-3],[0,-4],[1,-2],[3,-1],[2,0],[5,3],[2,1],[2,0],[2,-3],[1,-4],[1,-3],[2,-4],[3,0],[3,0],[2,2],[1,3],[4,4],[3,1],[3,0],[3,0],[5,-2],[5,-4],[8,-7],[2,-3],[1,-3],[1,-23],[0,-4],[-2,-11],[0,-4],[-1,-3],[-2,-2],[-5,-7],[0,-1],[-1,-2],[0,-2],[1,-2],[2,-2],[21,-12],[2,-4],[3,-6],[4,-15],[3,-5],[3,-3],[3,0],[2,2],[19,15],[33,9],[2,0],[2,-1],[4,-2],[3,-3],[1,-4],[2,-12],[0,-3],[2,-2],[15,-6],[2,-2],[2,-3],[1,-4],[1,-4],[1,-3],[3,-4],[1,-3],[-1,-3],[-1,-4],[-3,-5],[-4,-6],[-1,-2],[-1,-3],[1,-2],[2,-2],[2,-2],[3,-4],[3,-5],[1,-3],[0,-2],[1,-7],[0,-3],[-1,-4],[-2,-6],[-4,-7],[-4,-8],[-4,-4],[-2,-2],[0,-3],[1,-4],[1,-2],[16,-16],[2,-2],[0,-4],[-2,-5],[-4,-8],[-2,-6],[0,-4],[1,-3],[0,-3],[1,-3],[-1,-3],[0,-3],[-1,-1],[-2,-10],[-1,-4],[0,-3],[0,-3],[0,-3],[2,-6],[0,-2],[1,-4],[-1,-3],[-1,-5],[-5,-8],[-1,-3],[-1,-3],[-1,-3],[0,-3],[0,-7],[0,-3],[2,-9],[-3,-3],[-5,-4],[-20,-5],[-1,0],[0,-275],[0,-276],[0,-275],[0,-275],[0,-275],[0,-275],[0,-275],[0,-275],[0,-275],[0,-275],[97,-188],[98,-188],[97,-188],[98,-187],[97,-188],[98,-188],[97,-188],[98,-188],[97,-188],[98,-187],[97,-188],[98,-188],[97,-188],[98,-188],[98,-187],[97,-188],[98,-188],[97,-188],[98,-188],[97,-187]],[[0,99999],[97925,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-258],[0,-257],[0,-258],[0,-257],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[1,-262],[1,-262],[1,-262],[1,-262],[1,-262],[1,-262],[1,-262],[1,-262],[1,-262],[1,-262],[-97,6],[-121,20],[-89,24],[-131,13],[-29,6],[-61,18],[-56,4],[-1,0],[-1,0],[-44,-5],[-43,-13],[-37,-19],[-28,-25],[-21,-31],[-9,-31],[3,-30],[17,-28],[-49,22],[-43,15],[-43,11],[-75,13],[-57,23],[-43,11],[-88,17],[-38,5],[-2,0],[-42,-2],[-43,-10],[-69,-32],[-71,-45],[-45,-40],[-56,-70],[-64,-53],[-26,-18],[-12,-4],[-39,2],[-1,0],[-2,0],[-92,-4],[-83,27],[-71,10],[-131,3],[-131,3],[-20,8],[-36,37],[-37,23],[-47,17],[-56,9],[-2,0],[-34,-1],[-36,-6],[-19,-7],[-41,-19],[-16,-4],[-49,7],[-64,0],[-3,0],[-36,-5],[-56,-15],[-16,-2],[-32,2],[-58,10],[-3,0],[-53,-2],[-31,-7],[-28,-10],[-47,-31],[-36,11],[-50,5],[-2,0],[-1,0],[-34,-1],[-34,-8],[-13,-3],[-33,11],[-138,26],[-31,12],[-7,16],[12,51],[50,84],[11,35],[1,29],[-4,30],[-32,92],[2,21],[11,15],[22,11],[47,9],[41,11],[7,1],[17,-6],[44,-25],[29,-11],[27,-7],[63,-8],[53,-34],[49,-15],[40,-8],[37,-2],[2,0],[1,0],[31,2],[46,9],[50,15],[36,20],[28,28],[14,31],[1,32],[-13,31],[-27,30],[-37,25],[-38,16],[-38,9],[-30,4],[-2,0],[-1,0],[-50,-1],[-19,23],[-19,14],[-57,31],[-35,13],[-41,7],[-43,2],[-1,0],[-2,0],[-43,-4],[-45,-10],[-46,30],[-37,19],[-37,12],[-41,6],[-36,0],[-2,0],[-35,-3],[-34,-8],[-30,-12],[-24,-12],[-24,-17],[-49,-50],[-52,28],[-109,42],[-110,42],[-79,23],[-78,23],[-80,10],[-80,11],[-87,0],[-85,5],[-85,5],[-2,0],[-1,0],[-106,-3],[-90,7],[-1,0],[-1,0],[-51,-2],[-120,-19],[-120,-19],[-120,-20],[-120,-19],[-36,-10],[-47,-23],[-22,-7],[-123,-3],[-34,-7],[-57,-18],[-28,0],[-11,6],[-15,34],[-19,25],[-45,40],[-72,84],[-54,43],[-62,31],[-83,17],[-55,19],[-19,11],[-35,31],[-38,20],[-39,11],[-54,8],[-8,3],[-1,11],[24,33],[11,37],[-1,36],[-14,36],[-29,39],[-84,92],[-41,26],[-58,25],[-93,29],[-93,30],[-100,23],[-80,15],[-68,8],[-76,6],[-76,6],[-2,0],[-1,0],[-52,-2],[-42,2],[-1,0],[-2,0],[-62,-2],[-45,4],[-37,10],[-16,7],[0,-1],[-2,1],[0,-135],[-20,-7],[-69,-1],[-71,-1],[-70,-1],[-129,0],[-3,0],[-72,-3],[-72,-4],[-112,-20],[-40,-39],[-37,21],[-36,10],[-36,12],[-1,0],[-1,0],[-97,-69],[-1,0],[-28,-17],[-12,-7],[-56,-22],[-56,-39],[0,-1],[-23,-39],[-8,-58],[-10,-39],[-17,-25],[-4,-6],[-51,-25],[-46,-34],[-19,-63],[-9,-54],[8,-61],[19,-44],[-5,-44],[-33,-45],[-24,-18],[-28,-21],[-67,-36],[-19,-16],[-25,-22],[-23,-34],[-6,-39],[-18,-44],[-55,-51],[-88,-89],[-63,-46],[-14,-10],[-23,-43],[-7,-57],[-6,-48],[-1,-3],[2,-26],[38,-10],[1,0],[1,0],[12,6],[26,15],[28,-5],[37,-29],[15,-28],[7,-16],[54,-1],[3,0],[63,28],[29,-1],[13,-4],[15,-5],[3,0],[30,0],[21,-12],[4,-22],[-39,-17],[-9,-11],[9,-28],[-8,-20],[-26,-22],[0,-7],[3,-16],[36,-13],[2,0],[1,0],[48,2],[20,3],[-26,-19],[14,-27],[42,-11],[12,-28],[-11,-19],[36,-33],[25,-21],[-15,-35],[-33,-8],[-69,-9],[-38,4],[-32,14],[-13,2],[-25,3],[-2,0],[-1,0],[-56,-3],[-37,-16],[-18,-24],[0,-39],[2,-38],[1,-6],[2,-21],[-1,-30],[25,-36],[24,-33],[18,-30],[16,-22],[6,-21],[-26,-37],[-44,-39],[-34,-30],[-26,-17],[-35,-3],[-21,1],[0,-1],[-2,1],[-28,-15],[-17,-41],[-1,-2],[-15,-32],[15,-26],[2,-3],[22,-21],[1,-23],[-26,-33],[-17,-36],[4,-38],[23,-41],[26,-29],[13,-19],[2,-13],[-34,1],[-45,4],[-26,7],[-23,15],[-8,6],[-30,9],[-2,-1],[-1,1],[-31,-7],[-33,-17],[-40,-8],[-41,-16],[-37,-22],[-27,-18],[-29,-30],[-29,-24],[-26,-20],[-39,-12],[-37,-4],[-34,9],[-32,3],[-1,0],[-1,0],[-27,-1],[-38,-9],[26,-24],[22,-25],[26,-38],[0,-32],[-25,-26],[-19,-24],[-9,-25],[14,-34],[32,-22],[48,-11],[35,-13],[34,-41],[8,-35],[5,-26],[25,-17],[31,-3],[28,-1],[22,-12],[15,-26],[14,-30],[20,-17],[32,-14],[22,-10],[14,-22],[20,-1],[22,-1],[18,-7],[1,-16],[-18,-44],[-24,-14],[-29,4],[-1,0],[-2,0],[-28,-5],[-31,-15],[-55,-27],[-42,-25],[-15,-29],[8,-32],[46,-28],[48,-31],[29,-31],[-10,-39],[-8,-13]],[[88758,86532],[-40,7],[-1,-1]],[[88657,86525],[-52,14],[0,-1]],[[88233,86243],[-39,21],[-39,49],[-2,0]],[[88072,86237],[-29,6],[-28,42],[-53,28],[-56,43],[-53,28],[-63,21],[-1,-1]],[[87350,86067],[-32,14],[-31,28],[-21,43],[-3,0]],[[87051,85695],[-35,7],[-18,7],[-21,7],[-31,7],[-2,-1]],[[86914,85719],[-7,20],[-22,19],[-6,26],[-3,34],[-13,16],[-40,25],[-37,3],[-7,0],[-25,4],[-14,15],[-11,20],[3,24],[17,21],[13,31],[-7,35],[-25,30],[-43,50],[-25,45],[-9,39],[-13,36],[-34,37],[-18,47],[-37,27],[-33,6],[-9,31],[11,35],[22,19],[39,42],[2,25],[-14,16],[-10,11],[-33,18],[-43,2],[-49,9],[-12,13],[1,24],[-15,5],[-32,15],[-15,23],[-3,25],[-16,15],[-35,14],[-58,29],[-53,48],[-47,69],[-6,54],[-22,28],[-15,21],[1,34],[43,24],[-10,96],[-6,121],[45,106],[58,21],[48,143],[105,66],[106,66]],[[86571,87587],[2,0],[53,37],[34,121],[103,90],[85,29],[85,29],[39,97],[32,78],[-67,100],[-68,99],[-73,51]],[[86796,88318],[-28,83],[42,8]],[[86858,88401],[3,-1],[21,18],[-25,42],[11,34],[18,29],[7,37],[-2,20],[17,10],[24,17],[-2,24],[25,14]],[[86991,88644],[3,0],[12,8],[14,10],[10,36]],[[87075,88694],[2,0],[44,24],[8,25],[-35,3],[-2,0]],[[87039,88746],[-40,13],[-3,20],[12,17],[-10,24],[-13,3],[-1,0]],[[86952,88813],[-25,5],[-18,14],[6,35],[42,35],[16,22],[17,38],[9,48],[-31,45],[-66,22],[-2,0]],[[86816,89074],[-59,9],[-79,47],[-12,22],[32,44],[1,20],[-6,49],[-19,39],[43,43],[10,30],[-27,28],[-24,16],[-30,21],[-7,4],[-9,214],[0,223],[0,224],[0,223],[0,224]],[[90798,90554],[2,0],[0,145],[128,1],[128,2],[127,1],[128,2],[128,2],[127,1],[128,2],[128,2],[127,1],[128,2],[0,22],[120,132],[119,132],[120,132],[119,132],[120,132],[120,132],[119,132],[120,132],[119,132],[120,132],[120,132],[119,133]],[[93751,92586],[1,257],[0,258],[0,257],[1,258],[0,257],[0,257],[1,258],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253]],[[93754,97166],[0,257],[0,258],[0,257],[0,258],[0,258],[0,257],[0,258],[0,257],[0,258],[0,257],[-93754,258]],[[93751,97166],[0,225],[0,226],[0,225],[3,2],[0,-226],[0,-226],[0,-226]],[[97051,79223],[-86,-112],[-84,-109]],[[0,99999],[0,-16509],[99999,-434]],[[67101,63826],[29,-27],[24,-7],[37,11],[52,36],[65,-17],[33,12],[23,18],[29,53],[16,12],[27,-2],[62,-18],[58,9],[72,-18],[23,0],[32,25],[34,63],[31,-16],[80,-15],[98,-73],[30,-7],[25,13],[42,51],[17,11],[68,-3],[48,39],[84,-10],[63,34],[90,29],[22,0],[39,-45],[9,-24],[0,-32],[-12,-125],[2,-33],[7,-32],[13,-29],[15,-17],[20,-8],[53,-4],[17,-14],[13,-22],[29,-109],[14,-130],[13,-68],[52,-149],[33,-46],[21,-18]],[[68753,63124],[0,-153],[0,-154],[0,-259],[0,-259],[0,-259],[0,-259],[0,-259],[0,-259],[0,-259],[0,-259],[0,-258]],[[68753,60487],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-240],[0,-239],[0,-240],[0,-239],[0,-267],[0,-268],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-267],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-268],[0,-268],[0,-268],[0,-268],[0,-268],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-256],[0,-255],[0,-256],[0,-256],[0,-255],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-202],[0,-202]],[[68753,12436],[-26,9],[-27,9],[-32,7],[-43,1],[-89,-10],[-43,-1],[-113,16],[-114,16],[-113,16],[-114,16],[-97,36],[-98,26],[-47,11],[-102,16],[-32,1],[-86,-11],[-85,-10],[-44,-15],[-52,-31],[-36,14],[-87,20],[-44,4]],[[67229,12576],[-102,9],[-51,-2],[-69,34],[-65,14],[-82,37],[-32,9],[-56,1],[-111,-14],[-110,3],[-10,22],[-19,19],[-73,56],[-29,17],[-28,9],[-35,7],[-89,2],[-22,3],[-39,21],[-41,11],[-31,18],[-68,29],[-13,13],[-6,18],[-1,96],[-5,30],[-15,32],[-27,32],[-53,40],[-103,61],[-36,12],[-95,14],[-48,38],[-53,75],[-17,13],[-29,15],[-24,25],[-20,14],[-130,59],[-31,10],[-132,16],[-133,16],[-70,0],[-51,16],[-41,3],[-46,-5],[-76,-23],[-68,-11],[-90,-23],[-35,-4],[-30,-1]],[[64589,13462],[0,265],[0,265],[0,265],[0,265],[0,265],[0,265],[0,265],[0,265],[0,266],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,251],[0,250],[0,251],[0,250],[0,251],[0,251],[0,250],[0,251],[0,250],[0,251]],[[64589,23909],[0,277],[0,276],[0,277],[0,276]],[[64589,25015],[0,278],[0,277],[0,278],[0,278],[0,277],[0,278],[0,278],[0,255],[0,256],[0,255],[0,256],[0,255],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,277],[0,278],[0,278],[0,278],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,201],[0,202],[0,201],[-129,0],[-129,1],[-129,0],[-129,1],[-129,0],[-71,148],[-71,148],[-71,148],[-99,-154],[-99,-154],[-105,5],[-104,5],[-105,6],[-94,44],[-95,45],[-90,-78],[-90,-77],[-104,4],[-103,3],[-93,129],[-93,130],[1,232],[0,233],[0,232],[0,232],[0,232],[0,232],[133,0],[133,0],[134,-1],[133,0],[133,0],[133,0],[133,-1],[133,0],[133,0],[134,0],[133,-1],[133,0],[133,0],[133,0],[133,-1],[134,0],[0,215],[0,216],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[-1,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,259],[0,260],[0,259],[0,259],[0,259],[0,260],[133,0],[133,0],[132,0],[133,1],[132,0],[133,0],[133,0],[0,277],[0,276],[0,276],[0,276],[0,277],[0,276],[-133,0],[-133,0],[-132,0],[-133,0],[-132,0],[-133,0],[-132,0],[0,237],[0,237],[0,238],[0,237],[0,237],[0,237],[31,48],[68,49],[69,49],[13,10],[-13,62],[-10,42],[-18,75],[-17,75],[-17,76],[-18,75],[-10,46],[-3,8],[-5,3],[-11,2],[-4,4],[1,1],[1,0],[1,0],[-9,40],[-12,54],[-12,53],[-12,54],[-6,27],[-6,27],[-12,53],[-11,54],[-12,54],[-12,53],[-12,54],[-12,54],[-12,53],[-12,54],[-12,53],[-11,54],[-12,54],[-12,53],[-10,45],[78,52],[48,31],[47,32],[48,32],[48,32],[47,31],[48,32],[47,32],[48,31],[47,32],[48,32],[47,31],[48,32],[47,32],[48,31],[47,32],[42,28],[9,54],[2,11],[5,31],[8,48],[10,62],[13,74],[13,83],[15,88],[15,91],[15,91],[15,89],[14,82],[12,74],[3,17],[0,3],[8,43],[8,48],[5,31],[2,11],[11,71],[0,13],[-3,12],[-14,45],[-23,70],[-22,69],[-23,70],[-22,69],[-18,54],[-18,-44],[-5,-1],[-38,9],[-38,9],[-39,10],[-38,9],[-39,10],[-39,9],[-38,10],[-39,9],[-39,10],[-38,9],[-39,10],[-38,9],[-39,10],[-39,9],[-38,10],[-39,9],[-39,10],[-44,11],[-7,4],[-6,9],[-14,35],[-15,35],[-14,34],[-15,35],[-14,34],[-15,35],[-14,34],[-15,35],[-14,34],[-15,34],[-14,35],[-15,34],[-14,35],[-15,34],[-14,35],[-15,34],[-14,35],[-16,37],[-4,13],[-2,15],[1,35],[0,15],[-2,21],[6,16],[1,24],[-5,20],[5,11],[0,-1],[0,46],[74,58],[73,57],[15,26],[20,14],[18,1],[21,-11],[25,-30],[12,-24],[0,173],[0,271],[0,270],[0,271],[0,270],[0,12],[0,78]],[[64589,65027],[0,10],[-1,1]],[[64588,65038],[-2,54]],[[64586,65092],[48,-49],[61,-84],[5,-18],[2,-56],[5,-25],[15,-34],[23,-32],[23,-15],[60,-15],[39,-56],[46,-18],[1,-2],[24,-53],[32,-28],[46,-2],[23,14],[35,22],[-1,-70],[16,-75],[-2,-20],[-9,-64],[1,-44],[16,-54],[26,-34],[26,-11],[21,7],[21,25],[18,41],[8,36],[0,31],[-18,74],[-3,15],[16,82],[11,23],[3,2],[33,21],[29,37],[18,12],[12,-5],[27,-33],[16,-6],[5,1],[19,6],[86,52],[41,-19],[26,5],[26,27],[55,90],[8,4],[36,-7],[34,28],[17,34],[26,88],[13,-8],[11,-18],[21,-74],[11,-78],[-3,-95],[17,-91],[14,-139],[7,-34],[22,-63],[11,-63],[8,-26],[15,-23],[20,-17],[80,-32],[41,-46],[22,-7],[26,4],[28,-31],[38,-19],[26,-3],[58,21],[76,-8],[22,-13],[37,-61],[32,-20],[40,-2],[52,23],[21,3],[48,-23],[36,-4],[38,-22],[44,1],[45,-21],[26,7],[33,-30],[56,2],[36,-9],[77,-31],[37,-36],[23,-14],[62,-23],[5,1],[31,8]],[[70277,45555],[-116,0],[-117,0],[-116,0],[-116,0],[-117,0]],[[69695,45555],[0,264],[0,263],[0,264],[0,264],[0,263],[0,264],[0,264],[0,263],[0,264],[0,264],[0,263],[129,0],[130,1],[106,-57],[106,-56],[111,-44],[0,-246],[0,-247]],[[70277,47806],[0,-250],[0,-250],[0,-250],[0,-250],[0,-250],[0,-251],[0,-250],[0,-250],[0,-250]],[[75061,65712],[19,-12],[11,-3]],[[75091,65697],[5,-3],[7,-18],[-3,-22],[-7,-23],[-3,-22],[6,-11]],[[75096,65598],[12,-5],[5,0]],[[75113,65593],[7,-1],[2,0],[10,3],[4,1],[5,0],[18,-5]],[[75159,65591],[0,1],[0,-1]],[[75159,65591],[7,3],[6,1],[8,8],[5,2]],[[75185,65605],[4,-2],[12,-14]],[[75201,65589],[8,-3]],[[75209,65586],[9,-5],[18,-2]],[[75236,65579],[16,-6],[14,-21],[4,-7],[10,-9],[12,-2],[11,5],[8,13],[4,11],[11,24],[5,7],[8,2]],[[75339,65596],[6,-1],[1,0]],[[75346,65595],[6,0]],[[75352,65595],[6,10],[5,-19]],[[75363,65586],[9,-14]],[[75372,65572],[21,-20],[5,-3],[3,-2]],[[75401,65547],[4,-1]],[[75405,65546],[10,0],[11,-8],[12,-3]],[[75438,65535],[6,-3],[6,-4]],[[75450,65528],[4,-7],[4,-12],[-1,-11],[-3,-11]],[[75454,65487],[-2,-14]],[[75452,65473],[-1,-13],[1,-12]],[[75452,65448],[1,-27]],[[75453,65421],[-2,-24],[-13,-32],[-2,-21],[6,-41],[3,-8],[8,-11],[2,-10],[5,-8],[6,-4],[7,-2],[6,-5],[5,-12],[0,-8],[1,-4],[9,1],[21,14],[8,2],[6,-1],[4,0],[3,2],[9,11],[3,2],[6,-13],[24,-81],[2,-6],[-2,-10],[-9,-13],[-4,-8],[-1,-5],[-1,-11],[-1,-5],[-1,-4],[-4,-7],[-1,-4],[-2,-8],[-2,-9],[0,-11],[-1,-10],[3,-13],[1,-5],[14,-25],[4,-17],[0,-1],[5,-31],[-1,-9],[-2,-19],[-10,-18],[-17,-5],[-5,4],[-9,14],[-5,4],[-4,-3],[1,-7],[0,-8],[-6,-5],[3,-8],[0,-9],[-2,-6],[-4,1],[-3,8],[-1,9],[-1,8],[-6,5],[-8,-3],[-18,-21],[-8,-7],[-13,-3],[-5,1],[-12,6],[-5,0],[-10,-6],[-5,-1],[-4,6],[-6,25],[-3,7],[-4,2],[-11,1],[-4,-1],[-5,-6],[-3,-9],[-2,-10],[-3,-10],[-4,-7],[-4,-5],[-5,-4],[-5,-2],[-5,0],[-4,3],[-8,9],[-10,4],[-20,-1],[-9,2],[-9,0],[-15,-13],[-80,-8],[-26,5],[-10,2],[-32,29],[-25,33],[-10,3],[-5,-3],[-4,-6],[-4,-7],[-5,-6],[-5,-3],[-10,1],[-5,-1],[-9,-11],[-7,-33],[-7,-12],[-11,-5],[-32,-6],[-17,-8],[-6,-1],[-3,1],[-6,3],[-2,1],[-1,0],[-2,4],[-2,0],[-1,-2],[-1,-3],[0,-2],[0,-2],[0,-1],[0,-3],[-1,-4],[-1,-2],[-1,0],[-3,2],[-1,0],[-11,0],[-6,2],[-15,11],[-6,1],[-10,-7],[-5,-1],[-3,5],[4,16],[-1,9],[-7,10],[-11,8],[-11,3],[-17,-3],[-10,9],[-19,22],[-11,-5],[-4,0],[-3,0],[-3,-5],[-3,-5],[-4,-4],[-7,-4],[-8,-1],[-16,2],[-9,4],[-4,8],[-2,12],[-4,13],[-4,9],[-6,9],[-7,5],[-6,0],[-3,-4],[-3,-1],[-3,0],[-3,3],[-2,6],[0,5],[0,6],[0,7],[-5,11],[-6,-1],[-5,-9],[-5,-10],[-1,27],[0,1],[0,30],[-2,14],[-3,13],[-7,8],[-13,13],[-4,4],[-3,4],[2,16],[4,18],[6,16],[7,9],[15,7],[2,1],[4,5],[2,3],[3,17]],[[74692,65175],[2,14],[6,26],[4,28],[2,12],[4,10],[5,9],[0,1],[9,8],[11,8],[10,10],[6,15],[1,5],[-2,13],[0,6],[1,3],[0,3],[11,28],[10,42],[5,17],[7,15],[10,11],[11,9],[10,14],[10,23],[13,44],[1,3],[6,20],[4,9],[5,8],[5,4],[6,7],[13,30],[5,5],[5,3],[33,11],[11,8],[5,16],[2,9],[4,6],[9,11],[3,5],[4,10],[3,5],[2,3]],[[74964,65722],[2,-2],[2,-3],[3,-2]],[[74971,65715],[7,1],[4,4],[4,6],[6,6],[5,1]],[[74997,65733],[16,-6],[48,-15]],[[64589,23909],[-125,0],[-124,0],[-124,0],[-125,0],[-124,0],[-124,0],[-124,0],[-125,0],[0,277],[0,276],[0,277],[0,276],[125,0],[124,0],[124,0],[124,0],[125,0],[124,0],[124,0],[125,0]],[[61100,74106],[2,0],[-2,0]],[[0,99999],[68760,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-258],[0,-257],[0,-258],[0,-257],[0,-224],[0,-223],[0,-223],[0,-224],[0,-223],[0,-248],[0,-248],[116,1],[116,0],[117,0],[116,0],[116,0],[117,0]],[[69458,95554],[-1,-274],[0,-274],[0,-275],[-1,-274],[0,-274],[-1,-274],[0,-274],[-1,-274],[0,-274],[0,-274],[-1,-274],[0,-275],[-1,-274],[0,-274],[-99,-158],[-99,-158],[-100,-158],[-99,-158],[-82,-131],[-82,-130],[-82,-131],[-49,-79],[-100,-166],[-99,-166],[-99,-166],[-99,-166],[-99,-166],[-99,-166],[-99,-167],[0,-241],[0,-242],[0,-242],[-1,-242],[0,-6],[-1,-6],[-8,-18],[-1,-2],[-1,-2],[-2,-3],[-8,-6],[-14,-3],[-1,0],[-21,-20],[-5,-7],[-5,-2],[-6,1],[-4,-2],[-3,-2],[-2,-3],[-15,-25],[-23,-20],[-16,-7],[-3,-2],[-2,-3],[-2,-3],[-1,-3],[-1,-2],[-1,-3],[0,-1],[0,-1],[1,-4],[2,-3],[3,-4],[11,-10],[2,-5],[1,-3],[-1,-4],[-1,-2],[-2,-3],[-11,-10],[-1,-3],[1,-4],[4,-11],[3,-5],[7,-4],[8,-1],[14,0],[20,-3],[4,0],[2,2],[1,3],[0,2],[0,3],[0,3],[1,3],[2,2],[3,1],[4,1],[3,-1],[12,-8],[5,-2],[4,0],[3,0],[4,-1],[5,-3],[7,-7],[10,-6],[6,-2],[3,-2],[14,-12],[4,-2],[4,-1],[8,-1],[19,8],[4,0],[12,-7],[4,-1],[7,0],[4,0],[3,-2],[8,-6],[0,-3],[1,-3],[-4,-20],[-1,-3],[-1,-3],[1,-3],[1,-2],[2,-1],[3,0],[13,4],[2,0],[1,-2],[1,-2],[4,-11],[0,-2],[-1,-2],[-9,-4],[-2,-3],[0,-2],[2,-3],[3,-3],[2,-5],[3,-3],[3,-2],[6,-3],[3,-2],[7,-12],[5,-13],[2,-3],[1,-2],[3,-3],[3,-2],[3,-1],[15,-2],[4,-1],[7,-4],[2,-3],[2,-2],[0,-3],[-2,-4],[-5,-6],[-3,-4],[-2,-5],[0,-9],[0,-3],[-2,-4],[-4,-4],[-15,-12],[-7,-9],[-9,-7],[-2,-3],[-3,-6],[-11,-15],[-1,-4],[0,-3],[-1,-6],[-1,-5],[-2,-7],[-14,-20],[-2,-4],[-3,-9],[-1,-4],[-2,-3],[-6,-2],[-2,-3],[-1,-2],[-4,-12],[-1,-3],[0,-4],[0,-4],[1,-6],[3,-7],[1,-3],[0,-3],[0,-8],[1,-11],[0,-3],[0,-3],[9,-23],[1,-3],[0,-3],[-11,-35],[-1,-2],[0,-3],[2,-3],[7,-4],[6,-7],[8,-10],[2,-5],[1,-3],[3,-5],[6,-7],[4,-7],[2,-1],[36,8],[45,-6],[15,1],[19,7],[14,12],[3,1],[3,-1],[18,-13],[4,-1],[3,-1],[14,3],[3,-1],[3,-1],[2,-2],[1,-3],[0,-6],[0,-5],[-2,-5],[-8,-9],[-1,-4],[0,-3],[0,-6],[-1,-3],[0,-3],[-1,-3],[-7,-18],[-1,-3],[0,-2],[1,-2],[2,-2],[7,-2],[2,-2],[2,-2],[2,-2],[3,-1],[10,-2],[4,-2],[3,-2],[14,-14],[1,-2],[1,-3],[0,-3],[1,-11],[0,-3],[-1,-4],[-3,-6],[-3,-5],[-9,-9],[-7,-4],[-6,-1],[-4,0],[-3,1],[-20,15],[-2,1],[-3,0],[-3,-2],[-10,-6],[-19,-3],[-7,-2],[-3,-3],[-2,-4],[-2,-6],[0,-4],[3,-4],[3,-2],[3,-2],[0,-2],[-2,-3],[-10,-6],[-2,-3],[-2,-4],[-1,-5],[1,-4],[3,-2],[4,-1],[3,0],[53,11],[3,0],[1,-2],[1,-2],[1,-3],[11,-17],[3,-5],[1,-3],[1,-5],[1,-6],[0,-2],[0,-3],[-2,-5],[-4,-7],[-22,-29],[-10,-7],[-10,-5],[-36,-6],[-19,4],[-7,0],[-3,-1],[-3,-2],[-2,-3],[-2,-6],[1,-3],[2,-3],[6,-7],[1,-3],[-1,-3],[-13,-13],[-4,-2],[-14,-4],[-3,-2],[-2,-3],[-3,-4],[-4,-9],[-4,-3],[-9,-6],[-24,-20],[-3,-2],[-10,-2],[-13,-5],[-3,-3],[-20,-23],[-3,-2],[-3,-1],[-7,0],[-2,-1],[1,-5],[4,-6],[0,-4],[-1,-4],[0,-5],[1,-3],[1,-3],[2,-3],[0,-2],[-1,-4],[-3,-3],[-3,-3],[-6,-2],[-11,0],[-6,-1],[-6,-3],[-2,-3],[-1,-4],[0,-6],[1,-2],[1,-3],[2,-2],[2,-3],[1,-2],[0,-2],[0,-2],[1,-22],[1,-10],[1,-16],[0,-4],[-1,-4],[-2,-3],[-11,-8],[-18,-8],[-3,-1],[-10,4],[-5,-2],[-5,-3],[-14,-12],[-5,-2],[-10,-1],[-14,-7],[-49,-12],[-3,-2],[-2,-2],[-2,-4],[-1,-4],[0,-3],[-1,-2],[-1,-4],[-2,-3],[-1,-4],[0,-3],[1,-2],[0,-3],[-1,-3],[-1,-2],[-8,-3],[-7,-1],[-3,1],[-7,3],[-3,0],[-6,-2],[-8,-7],[-9,-11],[-4,-7],[-3,-3],[-3,-3],[-6,-3],[-4,-1],[-22,1],[-32,-8],[-21,4],[-5,-1],[-3,-1],[-3,-3],[-11,-14],[-4,-6],[-4,-9],[-2,-1],[-6,-1],[-3,-2],[-3,-3],[-3,-5],[-2,-4],[-2,-4],[-2,-3],[-3,-3],[-25,-13],[-3,-1],[-7,1],[-4,-1],[-4,-2],[-8,-11],[-5,-4],[-18,-12],[-7,-1],[-5,0],[-16,9],[-4,0],[-3,-2],[-2,-4],[0,-3],[0,-3],[0,-3],[-1,-3],[-12,-17],[-3,-3],[-13,-9],[-2,-3],[-2,-4],[0,-3],[0,-6],[-1,-3],[-1,-3],[-12,-18],[0,-5],[0,-3],[11,-12],[4,-5],[2,-5],[1,-2],[0,-3],[0,-3],[1,-3],[-1,-3],[-1,-3],[-2,-2],[-2,-2],[-3,-1],[-3,1],[-15,6],[-11,8],[-3,2],[-3,0],[-12,-8],[-11,-10],[-13,-16],[-2,-5],[-3,-5],[-1,-2],[-3,-5],[-1,-3],[-1,-3],[-1,-3],[0,-3],[-1,-5],[-1,-6],[-1,-6],[-1,-3],[-3,-4],[-4,-4],[-19,-12],[-2,-3],[-2,-4],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[-2,-3],[-6,-9],[-1,-3],[1,-3],[1,-2],[12,-9],[2,-2],[1,-2],[-1,-4],[-20,-20],[-1,-3],[0,-3],[2,-2],[6,-7],[3,-5],[3,-5],[1,-3],[0,-2],[0,-3],[-2,-3],[-3,-2],[-32,-5],[-12,1],[-44,-13],[-5,-4],[-99,-53],[-5,-4],[-8,-4],[-23,-2],[-38,-9],[-3,-1],[-3,-4],[-1,-3],[-3,-7],[-2,-3],[-13,-18],[-3,-2],[-4,-2],[-4,-2],[-4,-5],[-11,-18],[-2,-3],[-3,-3],[-22,-9],[-5,-5],[-6,-11],[-14,-16],[-5,-6],[-1,-3],[-1,-3],[-1,-3],[0,-3],[-1,-3],[-12,-18],[-1,-3],[-4,-13],[-1,-2],[-2,-3],[-5,-6],[-29,-24],[-9,-10],[0,-3],[1,-2],[2,-2],[15,-7],[2,-2],[2,-2],[0,-3],[-1,-3],[-1,-3],[-1,-3],[-15,-14],[-3,-6],[-2,-3],[-1,-4],[0,-3],[-1,-11],[-4,-3],[-7,-3],[-15,-4],[-8,-4],[-4,-3],[0,-4],[-1,-3],[-1,-4],[-1,-3],[-2,-5],[-23,-37],[-7,-7],[-5,-1],[-36,3],[-4,-2],[-2,-2],[-2,-3],[-3,-6],[-1,-6],[-1,-7],[-1,-2],[0,-1],[-2,-3],[-12,-16],[-5,-7],[-10,-22],[-3,-6],[-6,-6],[-2,-1],[-3,0],[-3,5],[-2,4],[-1,4],[0,3],[0,4],[0,3],[-1,3],[-36,31],[-8,8],[-4,7],[2,6],[0,3],[0,4],[-1,3],[-3,2],[-9,5],[-4,1],[-19,5],[-24,-1],[-20,-3],[-5,-3],[-10,-7],[-18,-22],[-36,-55],[-3,-4],[-38,-23],[-7,-9],[-14,-23],[-6,-10],[-1,-3],[-1,-3],[0,-3],[-3,-14],[0,-4],[1,-5],[0,-4],[1,-3],[6,-9],[5,-6],[6,-10],[-5,-11],[-6,-4],[-8,-4],[-3,-2],[-1,-2],[-2,-3],[-2,-2],[-1,-3],[-5,-22],[-2,-3],[-1,-2],[-14,-15],[-3,-5],[-5,-8],[-2,-5],[-1,-4],[-1,-3],[0,-3],[2,-4],[2,-2],[3,-1],[23,-4],[2,-2],[2,-2],[1,-3],[0,-3],[1,-4],[0,-6],[0,-23],[0,-5],[1,-4],[3,-9],[2,-7],[0,-4],[0,-5],[-2,-5],[-2,-4],[-2,-3],[-2,-2],[-3,-5],[-2,-2],[-1,-5],[-1,-5],[0,-10],[0,-5],[1,-4],[2,-3],[40,-44],[6,-3],[7,-1],[16,3],[3,0],[2,-2],[1,-4],[-1,-5],[-3,-21],[-1,-4],[-1,-4],[-9,-15],[-1,-4],[-2,-5],[-2,-9],[-4,-10],[-1,-2],[-2,-2],[-49,-32],[-2,-2],[-2,-4],[-1,-5],[0,-10],[0,-10],[1,-14],[0,-4],[0,-4],[-1,-4],[-2,-6],[-2,-3],[-5,-8],[-4,-8],[-1,-4],[-1,-5],[-1,-8],[-1,-63],[-4,-20],[-14,-53],[-6,-14],[-27,-48],[-1,-3],[0,-3],[1,-3],[2,-3],[3,-2],[2,-2],[0,-3],[0,-3],[-1,-2],[-2,-2],[-13,-8],[-1,-3],[0,-3],[0,-4],[2,-3],[2,-3],[8,-8],[1,-2],[0,-5],[-1,-7],[-4,-12],[-5,-11],[-3,-5],[-5,-7],[-1,-3],[-1,-3],[1,-4],[0,-4],[6,-18],[3,-8],[-2,-8],[-14,-15],[-2,-4],[-1,-3],[-1,-3],[-1,-4],[0,-5],[1,-9],[0,-5],[3,-12],[12,-25],[1,-3],[3,-2],[3,-2],[6,-2],[22,-3],[5,-3],[4,-4],[11,-17],[1,-3],[0,-5],[0,-7],[-1,-5],[-3,-11],[0,-3],[-1,-7],[-1,-3],[-1,-4],[0,-5],[0,-8],[0,-6],[0,-5],[-2,-3],[-12,-12],[-2,-2],[-1,-4],[0,-4],[1,-7],[1,-5],[5,-12],[2,-6],[0,-4],[2,-13],[1,-5],[1,-4],[5,-7],[1,-2],[11,-32],[1,-3],[1,-2],[2,-2],[3,-2],[30,-10],[1,-3],[1,-4],[-2,-8],[-4,-15],[-8,-20],[-1,-4],[0,-4],[1,-6],[2,-7],[1,-3],[0,-3],[0,-5],[-2,-5],[-9,-17],[-2,-2],[-2,-2],[-5,-3],[-3,-1],[-1,-3],[-3,-5],[-2,-12],[-2,-13],[-2,-7],[-1,-5],[-20,-52],[-1,-3],[-1,-5],[-1,-4],[1,-4],[1,-5],[8,-25],[5,-14],[9,-25],[-2,-12],[-5,-10],[-4,-5],[-4,-5],[-11,-15],[-13,-29],[-2,-7],[-1,-10],[0,-4],[0,-3],[1,-3],[1,-3],[1,-3],[1,-2],[8,-8],[2,-3],[1,-4],[1,-5],[0,-4],[-1,-4],[-11,-34],[-14,-6],[-20,-14],[-18,-6],[-4,-2],[-9,-9],[-25,-35],[-2,-2],[-3,-1],[-5,1],[-3,1],[-5,4],[-3,0],[-5,-2],[-8,-5],[-7,-6],[-8,-11],[-10,-3],[-33,-4],[-138,2],[-138,1],[-137,2],[-5,-1],[-23,-11],[-5,-1],[-107,21],[-4,-1],[-3,-1],[-4,-5],[-3,-6],[-1,-1],[-1,0],[-7,0],[-3,0],[-3,-2],[-3,-7],[-12,-27],[-2,-2],[-4,-1],[-17,2],[-19,-7],[-20,-49],[1,-9],[4,-10],[-1,-8],[-1,-9],[-6,-18],[-3,-8],[-3,-7],[-5,-1],[-4,0],[-115,24],[-3,-1],[-3,-2],[-1,-5],[-4,-16],[-16,-52],[-4,-8],[-4,-6],[-7,-1],[-104,20],[-8,-1],[-4,-6],[-2,-5],[-4,-16],[-1,-4],[-9,-25],[-2,-3],[-3,-3],[-3,-1],[-8,0],[-21,5],[-3,-1],[-3,-3],[-6,-31],[-11,-39],[-6,-11],[-104,22],[-104,22],[-104,21],[-1,-10],[0,-6],[-10,-50],[-1,-4],[-2,-2],[-4,-2],[-121,26],[-3,2],[-1,3],[0,4],[1,7],[10,51],[1,4],[-3,4],[-7,5],[-131,31],[-2,-6],[0,-3],[-14,-41],[-5,-24],[-1,-3],[-2,-3],[-96,17],[-4,-1],[-2,-4],[-2,-3],[-1,-4],[-13,-57],[-3,-7],[-12,0],[-110,22],[-4,0],[-1,-2],[-2,-2],[0,-3],[-2,-14],[-1,-4],[-9,-34],[-20,-95],[1,-3],[2,-2],[97,-28],[3,-3],[1,-7],[-4,-21],[0,-5],[1,-5],[7,-3],[27,-5],[8,-5],[10,-9],[3,-19],[3,-8],[-2,-18],[-11,-61],[43,-23],[126,-10],[125,-9],[6,3],[11,14],[11,4],[7,-5],[15,-14],[15,-9],[4,-6],[27,-73],[1,-6],[0,-1],[-2,-10],[-5,-26],[-6,-54],[-1,-7],[-9,-39],[-9,-25],[-16,-7],[-28,-4],[-3,-3],[-1,-3],[-8,-56],[-7,-33],[-3,-10],[-12,-28],[-2,-4],[-20,-27],[-5,-9],[-2,-8],[3,-25],[3,-12],[30,-62],[3,-5],[8,-8],[7,-7],[6,-3],[3,0],[16,2],[2,0],[61,-30],[1,0],[-1,2],[-7,12],[0,2],[2,0],[5,2],[8,6],[2,2],[14,-14],[6,-1],[3,1],[2,1],[2,-2],[2,-2],[3,-5],[2,-4],[0,-3],[-2,-3],[-3,-3],[-4,-5],[-1,-4],[0,-4],[0,-8],[0,-4],[-2,-1],[-14,-3],[-2,-1],[-2,-1],[-2,-3],[-1,-2],[-1,-3],[-1,-4],[-2,-7],[-2,-5],[-1,-8],[-2,-14],[0,-7],[0,-5],[3,-8],[2,-5],[2,-8],[1,-3],[5,-10],[1,-1],[3,-5],[4,-5],[2,-4],[2,-2],[2,-2],[17,-8],[2,-2],[2,-2],[5,-7],[2,-3],[-1,-2],[-1,-2],[-10,-9],[-3,-3],[-18,-11],[-8,-8],[-1,-2],[-6,-11],[-1,-3],[0,-5],[2,-13],[-1,-5],[-1,-3],[-11,-17],[-1,-4],[0,-6],[15,-49],[2,-5],[2,-8],[4,-24],[0,-18],[0,-3],[3,-6],[22,-32],[3,-8],[-12,-21],[-6,-18],[-3,-12],[6,-9],[5,-5],[8,-5],[2,-2],[2,-3],[2,-10],[1,-4],[5,-7],[2,-4],[1,-6],[0,-11],[1,-2],[1,-4],[14,-25],[7,-10],[20,-23],[1,-2],[2,-10],[-3,-26],[0,-9],[3,-12],[10,-32],[0,-15],[-1,-7],[2,-11],[2,-10],[2,-15],[1,-7],[0,-4],[0,-1],[-1,-2],[-3,-2],[-8,-1],[-3,-1],[-2,-2],[-2,-2],[-2,-2],[-1,-4],[0,-5],[1,-10],[1,-4],[2,-4],[2,-2],[5,-4],[0,-2],[0,-2],[-3,-3],[-3,-2],[-11,-2],[-2,-1],[-2,-2],[-2,-3],[-1,-1],[-3,-1],[-6,-1],[-2,-1],[-1,-3],[1,-4],[1,-2],[3,-2],[6,0],[2,-1],[2,-3],[0,-6],[-1,-4],[0,-3],[0,-2],[7,-3],[3,-1],[5,-1],[2,-1],[1,3],[1,3],[1,10],[1,3],[2,2],[2,1],[3,1],[5,-1],[3,-1],[2,-1],[2,-2],[3,-5],[1,-2],[1,-3],[0,-3],[-2,-3],[-1,-2],[-3,-1],[-1,-3],[-2,-3],[0,-5],[0,-4],[1,-6],[1,-3],[1,-3],[1,-2],[2,-2],[3,-1],[3,0],[2,0],[2,2],[2,2],[2,1],[3,0],[2,-1],[2,-2],[1,-3],[0,-3],[1,-8],[0,-4],[0,-3],[-2,-3],[-6,-5],[-24,-11],[-4,-10],[-6,-36],[10,2],[3,1],[6,-2],[5,-3],[3,-1],[11,0],[7,-1],[5,-3],[2,-2],[2,-2],[1,-2],[1,-2],[1,-4],[0,-4],[-2,-6],[-1,-4],[-1,-4],[1,-4],[2,-7],[1,-7],[-1,-8],[0,-6],[1,-14],[0,-7],[-1,-5],[-1,-6],[-2,-3],[-2,-1],[-5,-2],[-2,-1],[-1,-3],[0,-4],[1,-5],[2,-3],[2,-3],[4,-1],[13,-2],[3,-1],[2,-1],[2,-2],[2,-2],[1,-3],[1,-2],[1,-8],[-1,-3],[-6,-11],[-9,-4],[-37,-1],[-9,-3],[-12,-15],[-5,-2],[-4,-4],[-3,-10],[0,-7],[2,-21],[-1,-16],[-1,-12],[0,-12],[2,-15],[-2,-7],[0,-8],[-12,-10],[-14,-10],[-13,2],[-9,21],[-2,1],[-1,2],[-3,6],[-3,5],[-3,3],[-4,1],[-3,0],[-7,-6],[-1,-9],[7,-16],[5,-12],[2,-11],[1,-4],[0,-4],[0,-4],[0,-6],[-1,-5],[-2,-4],[-2,-4],[-2,-5],[-1,-5],[2,-6],[3,-4],[6,-1],[8,4],[4,0],[3,-1],[3,1],[2,1],[1,2],[11,24],[2,2],[3,3],[3,1],[3,-2],[2,-4],[3,-2],[5,-1],[3,-3],[1,-8],[0,-8],[-1,-6],[-3,-4],[-8,-9],[-1,-3],[0,-2],[2,-1],[5,0],[2,-2],[2,-3],[2,-11],[1,-3],[3,-4],[5,-5],[4,-2],[3,-1],[6,0],[3,-4],[3,-8],[9,-30],[6,-15],[6,3],[11,12],[4,-4],[3,-5],[6,-47],[-3,-2],[-4,-3],[-2,-2],[0,-3],[3,-8],[1,-3],[1,-1],[2,-1],[5,-3],[2,-2],[1,-4],[-1,-9],[-1,-5],[-6,-12],[-7,-5],[-15,-7],[-3,-3],[-17,-18],[-2,-3],[-19,-17],[-5,-8],[-5,-11],[-10,-36],[-11,-17],[-16,-3],[-17,5],[-8,6],[-3,-1],[-3,-1],[-4,-8],[-6,-14],[-1,-2],[-1,-9],[-2,-3],[-2,-2],[-23,-3],[-5,-2],[-2,-2],[-3,-3],[-1,-2],[-3,-7],[-4,-17],[6,-2],[12,-10],[8,-4],[6,-6],[4,0],[1,2],[1,3],[1,4],[2,2],[6,0],[7,-2],[6,-2],[6,4],[4,-3],[-1,-4],[3,-5],[6,-8],[2,-1],[3,-1],[13,3],[2,0],[3,-2],[1,-4],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-3],[-3,-13],[-1,-4],[1,-5],[5,2],[10,11],[6,-2],[2,-6],[-2,-7],[-4,-8],[6,-3],[8,4],[5,4],[2,-3],[2,-5],[2,-5],[10,-12],[1,-2],[2,-5],[2,-3],[2,-1],[4,-4],[9,-2],[2,-3],[-1,-3],[-10,-14],[-1,-3],[-1,-5],[0,-7],[-1,-3],[-2,-3],[-3,-2],[-6,-1],[-2,-2],[-2,-1],[-3,-4],[-8,-7],[-10,-12],[-2,-2],[-10,-6],[-2,-1],[-1,-3],[0,-3],[-1,-7],[1,-11],[-1,-4],[-1,-4],[-3,-5],[-3,-4],[-7,-8],[-2,-3],[0,-5],[-1,-13],[-3,-9],[-4,-11],[-5,-6],[-12,-8],[-35,-17],[-2,-2],[-3,-5],[-1,-3],[-4,-10],[-1,-3],[-2,-2],[-9,-9],[-11,-9],[-1,-3],[-1,-3],[0,-3],[1,-9],[0,-3],[-1,-3],[-1,-3],[-3,-2],[-5,-1],[-14,-2],[-3,0],[-2,1],[-2,2],[-6,7],[-2,1],[-11,0],[-4,-2],[-5,-3],[-9,-10],[-3,-5],[-1,-4],[1,-2],[-1,-3],[-4,-2],[-16,-1],[-30,-7],[-4,-3],[0,-8],[0,-5],[0,-3],[-1,-7],[0,-3],[2,-3],[18,-8],[1,-1],[7,-10],[3,-3],[2,-2],[1,-4],[0,-3],[-1,-2],[0,-1],[-1,-3],[0,-2],[1,-3],[1,-2],[1,-2],[3,1],[1,0],[2,1],[1,1],[1,0],[1,-4],[1,-2],[2,-2],[4,0],[8,2],[5,0],[3,-1],[4,-3],[4,-6],[3,-3],[1,-3],[1,-3],[10,-22],[4,-7],[1,-2],[1,-3],[0,-3],[1,-3],[1,-2],[1,-3],[5,-1],[5,0],[17,7],[13,-1],[-18,-43],[1,-4],[2,-1],[2,-2],[2,-1],[0,-14],[-3,0],[-1,-2],[-2,-4],[0,-7],[0,-4],[1,-3],[3,-4],[2,-1],[0,-3],[1,-2],[0,-4],[0,-4],[-2,-7],[-2,-4],[-2,-4],[-6,-9],[-3,-5],[-10,-26],[-3,-4],[-12,-14],[-3,-5],[-2,-2],[-2,-1],[-4,-2],[-2,-3],[0,-4],[0,-9],[2,-8],[0,-3],[1,-6],[0,-2],[0,-2],[-2,-8],[-2,-3],[-1,-3],[-3,-4],[-2,-2],[-1,-3],[-2,-17],[-2,-4],[-1,-4],[-3,-4],[-1,-3],[-1,-4],[-1,-6],[2,-18],[0,-4],[2,-5],[3,-8],[10,-17],[5,-6],[1,-3],[0,-3],[-3,-15],[-1,-7],[1,-4],[3,-15],[1,-4],[-1,-6],[0,-5],[0,-5],[1,-5],[4,-11],[1,-4],[1,-3],[1,-5],[0,-8],[-1,-9],[1,-5],[3,-11],[-17,-18],[-4,-7],[0,-1],[-1,-8],[0,-3],[-2,-3],[-1,-2],[-2,-1],[-3,2],[-1,2],[-5,14],[-13,13],[-2,2],[-1,3],[0,5],[0,4],[-1,4],[-2,3],[-4,5],[-3,2],[-3,1],[-6,0],[-2,2],[-2,2],[-2,4],[-2,1],[-2,0],[-10,-9],[-7,-4],[-4,-1],[-6,0],[-2,1],[-2,2],[1,4],[1,4],[3,5],[1,3],[0,4],[0,3],[-2,3],[-2,1],[-6,1],[-3,1],[-2,1],[-1,3],[-1,2],[-1,2],[-5,9],[-15,22],[-2,5],[-1,2],[0,3],[0,3],[2,3],[4,2],[2,0],[3,0],[2,-1],[8,-3],[2,-1],[2,2],[1,5],[1,3],[2,3],[3,0],[9,-1],[2,0],[2,1],[1,2],[1,3],[-1,4],[-1,4],[1,4],[0,7],[-4,13],[-1,3],[-8,11],[-2,1],[-2,1],[-2,-1],[-2,-2],[-4,-4],[-1,-2],[-1,-3],[-1,-2],[0,-2],[0,-1],[4,-6],[1,-2],[1,-2],[-1,-3],[0,-3],[-3,-2],[-3,-2],[-18,-2],[-4,1],[-7,3],[-2,4],[0,3],[1,2],[9,0],[2,2],[0,3],[0,3],[-2,3],[-19,5],[-24,15],[-5,2],[-21,1],[-6,-1],[-4,-2],[-1,-2],[-2,0],[-3,1],[-7,7],[-16,11],[-2,-11],[-2,-8],[0,-4],[-1,-3],[-1,-3],[-3,-2],[-2,0],[-2,0],[-8,3],[-12,2],[-10,-1],[-10,-4],[-2,0],[-3,0],[-11,3],[-2,0],[-3,0],[-4,-3],[-5,-5],[-8,-6],[-2,-2],[1,-3],[3,-6],[4,-2],[23,-13],[2,-2],[2,-2],[3,-7],[2,-6],[1,-4],[1,-9],[0,-3],[0,-4],[-4,-8],[-10,-6],[-3,-1],[-6,-3],[-1,-2],[-2,-2],[0,-3],[0,-3],[1,-6],[1,-2],[1,-3],[3,-2],[2,0],[3,0],[19,9],[5,-1],[3,-1],[2,-1],[2,-2],[1,-3],[5,-12],[1,-2],[2,-2],[9,-6],[1,-3],[1,-3],[0,-4],[0,-4],[-2,-4],[-12,-11],[-6,-7],[-9,-15],[-1,-3],[0,-3],[1,-5],[3,-4],[1,-2],[2,-1],[3,-5],[0,-9],[-9,-25],[-7,-31],[-3,-18],[-1,-4],[-2,-4],[-11,-21],[-1,-3],[-2,-4],[-6,-25],[0,-2],[0,-2],[0,-2],[0,-3],[0,-4],[-2,-4],[-2,-4],[-2,-2],[-3,-3],[-1,-1],[-1,-3],[-2,-6],[-3,-10],[-2,-11],[-1,-4],[-1,-4],[-1,-4],[-3,-3],[-3,-2],[-3,-1],[-11,0],[-3,-1],[-2,-4],[-2,-9],[-2,-6],[-1,-4],[1,-3],[2,-4],[1,-1],[1,-15],[9,-7],[2,-4],[1,-6],[2,-13],[2,-5],[3,-4],[6,-5],[2,-2],[0,-4],[0,-7],[-5,-22],[-2,-7],[-6,-7],[-1,-5],[1,-1],[4,-9],[1,-6],[0,-2],[-1,-4],[-1,-4],[-3,-4],[-4,-4],[-1,-3],[0,-5],[0,-3],[0,-6],[1,-6],[0,-3],[0,-4],[-3,-4],[-3,-2],[-11,-5],[-2,-2],[-1,-2],[0,-4],[1,-3],[2,-2],[2,-1],[15,-2],[5,-2],[2,-2],[1,-2],[0,-3],[0,-3],[-2,-4],[-3,-2],[-3,-2],[-15,-3],[-2,-1],[-1,-3],[-1,-5],[-1,-4],[2,-26],[-1,-3],[0,-5],[-3,-3],[-5,-5],[-3,-1],[-11,-4],[-3,-2],[-8,-11],[-3,-3],[-3,-2],[-4,-1],[-7,-4],[-4,-3],[-1,-1],[-12,-23],[-3,-5],[-4,-2],[-12,2],[-3,0],[-2,-1],[-2,-3],[-1,-4],[-1,-4],[-1,-8],[0,-4],[0,-4],[3,-4],[2,-3],[9,-6],[2,-4],[-1,-7],[-2,-12],[-3,-22],[0,-4],[0,-6],[-3,-10],[-1,-7],[-2,-3],[-1,-2],[-2,-1],[-3,-2],[-13,-3],[-3,1],[-3,2],[-11,14],[-7,2],[-7,-2],[-1,-1],[-2,-3],[-1,-3],[-1,-6],[0,-4],[-2,-4],[-4,-5],[0,-3],[0,-4],[2,-6],[4,-10],[4,-7],[0,-2],[0,-3],[-2,-2],[-3,-1],[-3,1],[-2,1],[-4,4],[-2,0],[-2,0],[-2,-2],[-1,-4],[0,-7],[0,-16],[1,-6],[1,-2],[1,-3],[1,-2],[2,-2],[8,-6],[2,-2],[3,-4],[1,-2],[2,-5],[2,-5],[1,-5],[0,-4],[-2,-3],[-4,-4],[-17,-6],[-2,-1],[-1,-3],[-1,-3],[1,-3],[1,-6],[1,-3],[0,-3],[-1,-4],[-3,-3],[-13,-8],[-1,-7],[1,-8],[0,-11],[-2,-26],[3,-6],[2,-2],[5,-2],[1,-2],[2,-5],[0,-4],[-4,-28],[-7,-37],[-4,-7],[-8,-10],[-63,-62],[-6,-11],[-3,-3],[-19,-8],[-2,-2],[-2,-2],[-7,-14],[-2,-2],[-27,-18],[-29,-41],[-8,-11],[-6,-9]],[[64095,78745],[1,-19],[13,-46],[-1,-16],[-7,-10],[-13,-6],[-6,-1],[-7,1],[-4,5],[5,10],[5,9],[-2,3],[-13,0],[-11,10],[-5,0],[-1,-12],[-1,-14],[-4,-4],[-5,-2],[-5,-6],[-1,-8],[3,-33],[-1,-12],[-3,-6],[-4,-2],[-7,-1],[-2,-10],[-4,-5],[-5,-2],[-16,-1],[-4,-2],[-2,-3],[2,-3],[2,-4],[1,-2],[-4,-5],[-4,-4],[-3,-5],[1,-10],[2,-10],[0,-7],[-2,-6],[-4,-5],[-33,-21],[-50,-12],[-11,-8],[-40,-44],[-13,-23],[-5,-4],[-67,0],[-22,8],[-6,-2],[-4,-6],[-3,-9],[-3,-10],[-2,-18],[-3,-9],[-7,-15],[-3,-15],[7,-14],[9,-14],[5,-18],[-4,-19],[-11,-12],[-24,-12],[-38,-13],[-12,-13],[-25,-41],[-51,-49],[-12,-3],[-13,4],[-36,28],[-7,1],[-4,-7],[1,-11],[7,-5],[14,-4],[7,-12],[1,-17],[-1,-39],[8,-80],[7,-39],[12,-30],[5,-21],[-2,-20],[0,-14],[19,-8],[4,-6],[3,-9],[3,-22],[0,-6],[-2,-5],[-5,-10],[-21,-33],[-28,-21],[-57,-29],[-4,-4],[-6,-12],[-4,-3],[-3,1],[-16,13],[-14,16],[-2,2],[-8,-2],[-10,1],[-3,8],[-2,12],[-6,13],[-11,12],[-3,5],[-2,5],[-3,11],[-1,5],[-4,16],[-2,16],[-2,16],[-7,14],[-13,15],[-4,6],[-2,8],[-1,7],[-2,7],[-11,13],[-11,21],[-11,13],[-6,10],[-13,20],[-3,2],[-5,3],[-3,4],[-2,6],[-3,7],[-4,6],[-12,9],[-19,30],[-7,6],[-11,0],[-13,-8],[-12,-14],[-8,-16],[-9,-27],[-4,-6],[-19,-11],[-5,-5],[-3,-11],[2,-7],[4,-5],[2,-9],[-3,-8],[-10,-13],[-3,-7],[2,-16],[15,-27],[0,-20],[-5,-16],[-18,-29],[-19,-25],[-61,-35],[-10,-13],[-6,-23],[-17,-135],[-17,-136],[15,-8],[41,-41],[14,-24],[3,-28],[-5,-30],[-12,-27],[-13,-24],[-6,-7],[-6,-6],[-21,-15],[-10,-10],[-6,-12],[-39,-140],[-38,-139],[0,-1],[70,-32],[69,-33],[28,-10],[5,-6],[4,-8],[0,-5],[-4,-10],[-1,-3],[-3,-3],[-2,-4],[1,-5],[6,-9],[2,-3],[2,-12],[-1,-9],[-2,-10],[0,-10],[4,-7],[15,-2],[5,-7],[-4,-11],[-11,-14],[-22,-18],[-4,-5],[2,-6],[20,-33],[9,-21],[1,-3],[0,-5],[-2,-2],[-2,-2],[-2,-4],[-3,-9],[-2,-7],[1,-7],[5,-8],[9,-13],[52,-48],[4,1],[2,11],[2,26],[0,33],[1,9],[5,5],[7,-1],[59,-38],[110,2],[19,-12],[17,-20],[52,-122],[14,-26],[7,-9],[10,-5],[11,-2],[4,-4],[3,-9],[2,-13],[42,-150],[85,-182],[1,-2],[-16,-27],[-9,-10],[-42,-11],[-7,4],[-7,22],[-5,9],[-5,7],[-17,7],[-17,-5],[-14,-16],[-7,-28],[-7,-12],[5,-1],[6,-3],[10,-9],[3,-5],[0,-9],[2,-7],[4,-5],[-6,-13],[9,-5],[26,-1],[11,-3],[7,-10],[7,-11],[17,-19],[7,0],[7,2],[8,0],[6,-5],[11,-16],[21,-22],[54,-43],[10,-19],[9,-11],[3,-6],[16,-9],[8,-4],[9,-6],[22,-20],[11,-7],[15,-2],[6,1],[22,5],[3,-6],[4,-8],[2,-3],[13,-21],[14,-19],[6,-8],[28,-38],[18,-10],[-64,-136],[-50,-106],[-50,-106],[-3,-2],[-17,-37],[-16,-35],[-5,-11],[-29,-59],[0,-33],[-3,-67],[0,-47],[-2,-87],[-6,-141],[-13,-50],[71,0],[71,0],[0,-148],[-83,0],[-83,0],[0,-208],[0,-207],[93,-20],[2,-5],[4,-7],[26,-38],[4,-12],[7,-20],[2,-4],[70,-105],[69,-106],[-31,-105],[33,-73],[6,-12],[10,-20],[7,-13],[5,-6],[2,-5],[15,-25],[3,-6],[31,-49],[5,-6],[24,-36],[8,-12],[49,-68],[4,-4],[5,-8],[3,-7],[12,-24],[3,-18],[2,-6],[4,-26],[34,-81],[28,-62],[29,-226],[28,-226],[28,-225],[29,-226],[28,-226],[28,-226]],[[64320,71722],[-112,-62],[-113,-63],[-113,-62],[-112,-63],[-113,-63],[-113,-62],[-42,-6],[-2,5],[-1,2],[-23,-5],[0,1],[-5,9],[-5,2],[-8,2],[-9,1],[-6,-6],[-6,-9],[-7,-6],[-7,-5],[-7,-3],[-13,1],[-1,0],[-9,14],[-8,20],[-3,7],[-7,14],[-4,9],[-5,8],[-5,11],[-4,7],[-4,7],[-2,15],[-3,12],[-6,0],[-15,-11],[-8,1],[-5,7],[-4,10],[-14,17],[0,10],[1,11],[-2,8],[0,4],[-4,5],[-37,28],[-18,23],[-5,16],[-1,23],[3,6],[14,14],[1,3],[0,5],[1,3],[51,14],[12,11],[0,1],[2,6],[2,7],[1,0],[1,7],[0,8],[-2,7],[-8,28],[-4,6],[-16,11],[-16,24],[-7,15],[-3,14],[0,19],[5,16],[8,12],[10,8],[17,5],[15,15],[7,4],[3,1],[-6,21],[-8,16],[-19,27],[-47,87],[-17,25],[-5,5],[-4,2],[-3,-8],[-3,-4],[-4,-1],[-21,1],[-6,-3],[-6,-6],[-16,-26],[-38,-33],[-15,-23],[-4,-4],[-6,-1],[-1,0],[-18,-10],[-12,-10],[-9,-12],[-14,-28],[-9,-14],[-12,-10],[-6,-4],[-21,-13],[-14,-13],[-2,-4],[-1,-6],[-10,-25],[-5,-21],[-1,-4],[-3,-6],[-2,-1],[-17,-15],[-3,-1],[-4,2],[-8,5],[-5,0],[-4,-3],[-4,-6],[-4,-6],[-7,-20],[-2,-3],[-2,-3],[-5,-4],[-2,-3],[-3,-8],[-5,-17],[-4,-7],[-17,-12],[-5,-7],[-3,-7],[-8,-26],[-3,-8],[-4,-6],[-5,-6],[-4,-4],[-6,-4],[-5,-1],[-5,3],[-29,20],[-4,1],[-3,0],[-6,-4],[-11,-1],[-4,-1],[-5,-4],[-15,-16],[-5,-4],[-18,-4],[-3,0],[-16,6],[-18,13],[-59,19],[-20,13],[-25,0],[-16,6],[-8,1],[-3,1],[-6,5],[-4,2],[-4,1],[-6,5],[-6,6],[-3,6],[0,6],[0,5],[2,5],[0,5],[-1,4],[-7,5],[-2,3],[-2,4],[-2,12],[-1,5],[-3,4],[-2,2],[-3,3],[-2,6],[3,8],[-2,6],[-4,4],[-3,1],[-3,2],[0,5],[1,5],[-1,3],[-3,1],[-2,-2],[-2,-2],[-1,-1],[-29,15],[-7,-3],[-2,8],[-3,28],[-2,6],[-2,5],[-2,6],[-5,17],[-2,6],[-3,2],[-2,5],[-3,6],[-1,4],[-1,3],[-10,10],[-1,2],[-1,3],[-1,2],[-2,1],[-3,0],[-1,0],[-8,8],[-1,4],[3,7],[-6,8],[-3,11],[-9,54],[-3,12],[-6,6],[1,2],[1,2],[-6,0],[-6,2],[-5,5]],[[62447,72020],[-1,1]],[[62446,72021],[-3,7],[-3,21],[-3,7],[-4,12],[-18,34],[-1,5],[-1,1],[-2,1],[-3,-1],[-1,0],[-5,5],[-10,18],[-4,-3],[-1,3],[0,6],[-1,6],[-4,4],[-3,4],[-1,5],[-1,8],[-3,8],[-7,13],[-16,21],[-39,35],[-10,5],[-9,0],[-11,-5],[-6,-2],[-8,-2],[-6,-3],[-3,0],[-2,1],[-4,5],[-2,1],[-6,-2],[-10,-10],[-4,-3],[-34,9],[-30,26],[-2,1],[-24,10],[-12,11],[-4,16],[4,5],[13,4],[2,8],[-2,6],[-8,16],[-3,10],[5,6],[0,1],[-4,14],[-13,25],[-7,11],[-3,8],[2,10],[2,6],[4,21],[1,1],[0,4],[-12,15],[-6,10],[-1,7],[10,17],[6,7],[6,1],[0,4],[-1,1],[-1,3],[2,-1],[1,-1],[1,0],[2,-2],[0,13],[4,11],[11,21],[-2,13],[2,3],[6,16],[0,5],[-1,38],[-1,9],[-3,11],[-5,13],[-6,15],[-3,11],[-1,12],[-1,12],[-1,10],[-3,11],[-9,17],[-11,13],[-12,10],[-12,2],[-5,8],[-5,16],[-2,17],[1,13],[3,15],[-4,13],[-7,10],[-8,7],[-8,4],[-9,-1],[-25,-11],[-4,4],[-7,25],[-5,10],[-6,1],[-6,-1],[-7,3],[15,12],[4,5],[3,8],[0,3],[-8,2],[-9,6],[-13,18],[-21,21],[-4,6],[-8,24],[-2,4],[-2,1],[-2,2],[-1,3],[-2,2],[-8,4],[-2,2],[-2,6],[-2,7],[-2,4],[-4,-4],[-6,-11],[-6,2],[-5,9],[-7,6],[2,6],[6,7],[2,4],[1,5],[1,5],[1,6],[2,5],[-5,4],[-39,5],[-14,-2],[-7,-3],[-6,-7],[-3,-9],[-2,-23],[-3,-9],[-6,-9],[-8,-19],[-6,-6],[-4,0],[-3,-1],[-49,29],[-14,-1],[-6,1],[-5,6],[-4,4],[-4,0],[-9,-4],[-4,3],[-4,1],[-4,-1],[-4,-3],[-9,-4],[-20,11],[-12,-7],[-3,-4],[-9,-19],[-11,-14],[-3,-3],[-3,3],[-11,15],[-4,2],[-8,1],[-3,2],[-2,4],[1,4],[0,5],[-1,2],[-2,0],[-7,-5],[-8,-1],[-3,1],[-26,16],[-4,4],[-20,23],[-36,52],[44,86],[7,25],[3,23],[-5,34],[-23,64],[-9,68],[-22,86],[-16,131],[-52,18],[-16,13],[-23,39],[-18,51],[-23,19],[-22,30],[-43,6],[-36,25],[-42,9],[-21,15],[-17,27],[-34,78],[-64,46],[-32,56],[-29,37],[-60,95],[-59,94],[-79,106],[-40,41],[-39,52],[-19,13],[-70,19],[-36,18],[-24,26],[-40,67],[-26,25],[-90,27],[-35,22],[-42,56],[-16,35],[-23,73],[-24,27],[-43,23],[-35,7],[-12,-3]],[[60172,74948],[-2,14]],[[60170,74962],[-2,30],[-16,73],[-2,3],[-7,20],[-3,22],[8,4],[7,2],[2,1],[15,7],[7,20],[-13,11],[-1,0],[-2,5],[-4,11],[5,6],[6,-1],[2,2],[4,5],[8,20],[6,19],[2,18],[0,5],[-1,36],[0,64],[27,6],[14,2],[17,-1],[80,-56],[35,-6],[0,68],[12,55],[21,39],[29,24],[16,13],[21,112],[16,35],[22,30],[-37,50],[-28,59],[-10,36],[-12,44],[-2,6],[43,100]],[[60455,75961],[0,1],[81,102],[80,101],[-1,2]],[[60615,76167],[1,-1],[1,0],[0,4],[-6,13],[-1,18],[2,16],[5,13],[5,5],[6,4],[6,5],[4,9],[1,11],[-3,6],[-4,2],[-5,1],[-11,-2],[-5,1],[-4,6],[1,8],[3,10],[9,16],[7,17],[1,16],[-1,39],[4,20],[6,19],[7,16],[9,9],[58,10],[7,5],[5,6],[11,16],[5,5],[4,1],[10,-5],[6,1],[3,8],[2,24],[5,25],[7,22],[10,16],[13,7],[45,-3],[15,-13],[5,-2],[6,0],[11,4],[41,5],[5,-1],[10,-8],[5,-4],[6,1],[12,4],[6,-3],[8,-2],[17,5],[9,-1],[27,-10],[10,3],[7,9],[4,14],[2,16],[0,3],[-1,8],[0,4],[0,5],[3,8],[1,5],[1,8],[-1,6],[-3,12],[-3,6],[-3,3],[0,3],[2,5],[3,3],[15,4],[2,-1],[1,1],[0,5],[-4,18],[1,12],[3,11],[14,36],[5,8],[14,13],[4,8],[4,10],[1,11],[-4,9],[-6,2],[-15,-7],[-5,-1],[-20,16],[19,21],[5,9],[6,8],[-2,5],[-2,7],[-3,14],[-9,26],[-3,3],[-3,5],[0,8],[1,1],[3,-1],[2,2],[1,4],[0,2],[-1,2],[0,3],[-1,4],[-2,15],[-5,9],[-7,6],[-34,6],[-5,-3],[-11,-1],[3,14],[17,75],[2,4],[7,4],[3,5],[1,6],[3,6],[5,9],[6,4],[7,0],[30,-16],[12,2],[12,13],[5,9],[4,11],[1,11],[-6,9],[-7,1],[-5,-7],[-5,-8],[-6,-4],[-4,2],[-5,9],[-3,3],[-3,1],[-10,-2],[-22,6],[-6,4],[-4,6],[-2,7],[-4,10],[-5,7],[-5,5],[-4,7],[2,28],[5,4],[14,-1],[23,11],[8,0],[8,-2],[5,0],[3,3],[1,6],[1,16],[1,7],[6,14],[8,9],[16,15],[6,8],[9,19],[5,6],[7,5],[2,5],[0,20],[4,19],[1,10],[-3,9],[-13,20],[-11,22],[-6,16],[-2,18],[6,18],[5,6],[10,8],[5,8],[1,12],[-4,6],[-28,9],[-5,0],[-7,-3],[-16,-22],[-7,-5],[-8,-4],[-9,-3],[-8,1],[-5,3],[-15,18],[-11,7],[-10,4],[-8,7],[-7,19],[-5,24],[-3,13],[-3,6],[-17,2],[-5,3],[-10,9],[-10,-3],[-11,-7],[-11,-3],[-11,3],[-8,7],[-6,12],[-15,51],[-8,9],[-11,-5],[-4,-7],[-9,-17],[-6,-6],[-4,-2],[-27,-2],[-7,9],[-7,14],[-9,11],[-29,11],[-17,16],[-2,3],[-1,4],[-1,9],[-2,11],[0,2],[-1,-2],[-7,-3],[-2,-2],[-3,-1],[-14,3],[-20,-5],[-10,5],[-6,6],[-5,2],[-12,2],[-6,3],[-3,7],[-9,32],[-4,6],[-5,1],[-7,-2],[-18,2],[-5,-2],[-2,-16],[2,-26],[-2,-24],[-13,-12],[-3,1],[-5,4],[-3,1],[-4,-1],[-18,-16],[-1,4],[0,8],[-5,10],[0,1],[-9,21],[-8,14],[-10,11],[-11,9],[-22,13],[-10,9],[-26,53],[-10,12],[-2,4],[0,6],[1,6],[2,13],[0,24],[-9,12],[-24,15],[-5,15],[-4,18],[-4,14],[-5,4],[-28,-5],[-9,-4],[-16,-22],[-8,-8],[-40,-15],[-20,4],[-19,-2],[-18,-8],[-46,-35],[-3,-4],[-3,-6],[-5,-12],[-2,-4],[-5,-4],[-6,-1],[-7,1],[-6,3],[-4,4],[-1,5],[1,6],[0,12],[1,2],[-1,2],[-4,3],[-2,2],[-9,2],[-8,7],[-6,2],[-6,4],[-2,1],[-4,0],[-2,-1],[-5,-7],[-6,-6],[-7,-3],[-6,-1],[-7,4],[-28,57],[-7,5],[-3,11],[-7,5],[-48,5],[-27,-4],[-5,-2],[-4,-4],[-5,-10],[-3,-4],[-3,-1],[-5,-1],[-2,-1],[-5,-7],[-3,-7],[-4,-6],[-6,-3],[-6,1],[-6,2],[-5,3],[-6,5],[-6,9],[-2,9],[0,10],[-2,13],[-4,9],[-5,5],[-6,3],[-6,1],[-9,5],[-6,14],[-13,67],[-1,8],[4,6],[22,12],[-7,11],[0,12],[1,14],[-3,16],[-2,5],[-3,4],[-7,5],[-4,5],[0,6],[0,6],[0,8],[-3,7],[-5,10],[-2,7],[-1,8],[1,7],[0,7],[-4,7],[-3,3],[-7,2],[-2,4],[-1,5],[0,15],[-1,6],[15,5],[4,4],[2,10],[-2,6],[-5,4],[-6,2],[-9,1],[-19,-6],[-9,1],[-8,10],[-6,18],[-7,51],[-2,8],[-3,6],[-6,3],[-6,-2],[-5,-3],[-5,-1],[-6,4],[-5,3],[-4,0],[-13,-10],[-23,-12],[-19,-6],[-21,2],[-4,2],[-5,5],[-2,8],[-2,9],[-1,7],[-4,6],[-8,1],[-18,-4],[-10,4],[-19,9],[-11,2],[-9,-3],[-11,-11],[-5,-3],[-6,2],[-20,11],[16,14],[11,15],[7,18],[-3,19],[-5,-4],[-5,0],[-4,1],[-5,3],[-4,3],[-6,7],[-2,5],[-2,4],[2,3],[6,2],[2,3],[1,6],[-1,5],[-1,5],[0,5],[1,6],[2,10],[1,5],[-1,13],[-2,9],[-4,8],[-12,17],[-2,4],[-1,5],[-1,12],[-1,4],[-4,3],[-10,3],[-3,6],[3,13],[10,8],[48,14],[16,0],[5,1],[11,16],[0,23],[-8,22],[-11,13],[-5,5],[-9,13],[-5,4],[-4,0],[-5,-3],[-3,1],[0,2],[-1,8],[-1,2],[-1,2],[-4,3],[-2,2],[-10,17],[-5,5],[-14,0],[0,5],[2,8],[-1,10],[-6,12],[-3,9],[-2,11],[0,18],[-1,10],[0,3],[4,12],[0,7],[0,5],[-2,5],[-3,7],[-4,9],[-5,6],[-18,15],[-4,6],[-6,19],[-6,9],[-11,9],[-6,6],[-4,10],[-2,8],[-4,5],[-6,3],[-13,1],[-13,-3],[-24,-14],[-19,-23],[-6,-1],[-5,9],[2,21],[-5,9],[-5,-3],[-3,-4],[-4,-3],[-5,-1],[-5,3],[-7,6],[-5,2],[-18,0],[-27,6],[-4,-1],[-5,-4],[-7,-11],[-3,-4],[-6,-2],[-2,-2],[-4,-8],[-2,-3],[-2,-1],[-4,3],[-2,0],[-6,-3],[-28,-32],[-5,-3],[-5,1],[-8,8],[-5,3],[-8,0],[-17,-6],[-8,0],[-55,36],[-13,-5],[-24,11],[-11,-3],[-4,-19],[1,-6],[5,-12],[1,-5],[-1,-6],[-3,-3],[-4,-3],[-2,-3],[-3,-10],[-3,-33],[-9,-22],[-12,-12],[-38,-22],[-5,-1],[-17,6],[-10,-1],[-15,-10],[-5,-1],[-5,4],[-1,9],[0,10],[-1,9],[-7,8],[-9,2],[-17,-2]],[[58823,78944],[1,16],[-2,11],[-3,8],[-14,12],[-3,4],[-2,5],[-1,8],[1,8],[2,7],[3,5],[-5,3],[-9,2],[-5,2],[-5,5],[-5,6],[-8,15],[4,4],[3,6],[3,6],[2,8],[-1,10],[-2,6],[-2,5],[-3,6],[1,14],[1,17],[0,13],[-6,6],[-4,5],[0,5],[2,5],[5,3],[-4,6],[-1,2],[4,1],[10,-3],[4,1],[1,6],[-4,5],[-10,11],[-3,7],[-8,22],[-13,21],[-3,8],[19,13],[6,11],[0,23],[-3,11],[-2,5],[-4,2],[-4,7],[-2,9],[-1,7],[-2,5],[-7,1],[-8,3],[-9,8],[-9,9],[-6,12],[-7,27],[-5,11],[-21,21],[6,7],[14,27],[3,2],[7,1],[3,4],[1,6],[-1,6],[-1,6],[0,7],[5,27],[10,10],[13,0],[14,-4],[6,1],[11,7],[5,2],[6,-1],[17,-8],[5,-1],[13,0],[5,-4],[3,-9],[3,-23],[5,-9],[3,-1],[10,1],[3,-1],[15,-10],[6,-2],[7,1],[7,4],[8,1],[20,-10],[10,0],[3,1],[7,7],[10,2],[2,-1],[1,0],[2,1],[0,3],[0,3],[0,1],[0,2],[1,3],[1,2],[15,0],[7,9],[7,12],[9,10],[10,4],[5,3],[5,6],[9,18],[4,11],[2,10],[-6,2],[-2,6],[2,7],[7,2],[7,-4],[9,-1],[8,2],[8,5],[-1,2],[-3,5],[-1,2],[20,5],[5,-1],[4,-3],[4,0],[6,5],[-4,17],[4,41],[-5,12],[-3,0],[-9,-3],[-3,1],[-1,6],[1,6],[1,5],[-4,2],[-5,1],[-5,-1],[-2,-3],[-2,-1],[-2,1],[-2,3],[-5,10],[-6,6],[-14,8],[-8,6],[-6,9],[-5,11],[-3,15],[-1,10],[0,5],[2,2],[21,13],[2,4],[1,4],[-1,4],[-2,4],[-5,8],[-6,4],[-6,1],[-13,0],[-4,2],[-9,15],[-10,8],[-35,12],[-16,14],[-6,1],[-59,-18],[-24,10],[-12,0],[3,14],[11,21],[5,14],[4,32],[3,12],[1,4],[0,5],[0,4],[2,4],[-7,29],[0,3],[0,2],[-2,2],[-2,-1],[-7,-5],[-3,1],[-3,7],[-1,8],[-3,6],[-3,5],[-3,1],[-8,1],[-8,2],[-23,15],[-15,5],[-7,3],[-7,7],[-43,41],[-4,8],[-3,16],[-2,32],[-2,9],[-3,5],[-4,5],[-3,7],[-7,28],[-4,11],[-9,3],[-3,8],[-20,7],[-8,7],[6,24],[14,26],[8,22],[-11,10],[-6,15],[-24,3],[-6,-1],[-1,10],[-4,9],[-42,37],[-12,4],[-4,4],[-2,9],[1,15],[6,10],[6,8],[4,9],[1,14],[-3,8],[-1,6],[7,6],[17,4],[5,4],[5,11],[-1,7],[-4,6],[-3,9],[1,6],[6,1],[13,-4],[7,3],[0,10],[-3,14],[-4,11],[-2,4],[-1,4],[1,4],[2,4],[2,6],[-1,2],[-1,2],[-1,3],[-1,1],[-3,1],[-1,1],[0,3],[1,5],[-1,2],[-3,5],[-13,11],[-4,7],[-5,21],[-3,7],[-10,6],[-5,4],[-3,7],[1,11],[4,10],[10,16],[16,14],[4,6],[0,11],[-4,8],[-4,7],[-2,10],[1,9],[7,6],[2,7],[-1,1],[-4,3],[5,20],[-2,20],[-7,16],[-11,6],[-12,-5],[-9,-6],[-8,2],[-8,18],[-3,9],[-3,5],[-3,2],[-12,-1],[-6,2],[-6,4],[-3,8],[0,5],[1,5],[1,5],[-1,7],[-2,3],[-3,3],[-25,14],[-3,4],[1,5],[2,5],[-1,4],[-2,4],[-55,20],[-5,4],[-10,10],[-5,1],[-6,-3],[-12,-14],[-8,-3],[-32,14],[-12,1],[-11,-3],[-10,-7],[-7,-10],[-11,-23],[-7,-4],[-20,6],[-7,-2],[-27,-18],[-22,-29],[-7,-3],[-6,4],[-13,22],[-14,13],[-4,8],[-2,12],[2,9],[6,18],[1,6],[2,14],[1,5],[2,4],[2,2],[2,1],[3,3],[2,1],[3,-1],[1,1],[1,4],[0,4],[-3,5],[-5,8],[-5,5],[-5,4],[-43,13],[-8,8],[-14,11],[-15,6],[-16,1],[-14,-6],[-17,-12],[-17,-9],[-7,-8],[-1,-13],[-6,-2],[-21,7],[-8,7],[-3,11],[-1,13],[-3,14],[-2,5],[-10,16],[-4,9],[-3,3],[-5,3],[-15,3],[-41,-5],[-7,-6],[-9,-16],[-6,-4],[-6,2],[-6,7],[-9,13],[-19,24],[-5,9]],[[57819,81189],[5,11],[3,12],[1,14],[3,13],[2,6],[2,3],[2,5],[1,8],[-1,6],[-11,38],[-2,11],[-1,13],[1,19],[-1,6],[-2,4],[-15,21],[-2,5],[-1,5],[2,7],[7,7],[2,5],[-2,7],[-5,4],[-22,12],[-5,6],[-3,9],[-2,12],[0,25],[-3,9],[-27,21],[-5,10],[3,9],[6,13],[6,13],[-2,8],[-6,5],[-11,14],[-6,5],[-12,4],[-12,-3],[-23,-14],[-9,2],[6,20],[18,43],[1,6],[1,12],[0,5],[2,6],[5,12],[1,6],[-1,15],[-7,5],[-7,4],[-4,10],[5,9],[26,14],[8,8],[3,12],[2,17],[2,31],[-2,13],[-4,8],[-5,5],[-28,19],[-19,23],[-29,15],[-6,8],[0,10],[3,11],[0,13],[1,20],[-48,0],[-3,6],[-2,9],[-2,9],[0,7],[2,5],[3,1],[4,0],[4,2],[2,3],[0,2],[1,12],[-1,2],[0,1],[-1,8],[-1,2],[0,3],[1,5],[1,5],[2,3],[5,5],[23,8],[5,6],[0,7],[-3,16],[1,9],[3,5],[4,3],[7,4],[-6,6],[-2,1],[4,3],[45,7],[18,8],[6,5],[4,7],[-3,11],[-4,6],[-29,12],[-2,3],[-1,8],[1,6],[2,6],[1,8],[-2,13],[-5,4],[-5,3],[0,16],[1,14],[-1,16],[-14,21],[-12,26],[-12,27],[-3,27],[3,28],[17,42],[-16,77],[-14,69],[-10,54],[18,67],[36,33],[24,23],[6,8],[3,13],[12,23],[4,12],[16,47],[9,41],[5,12],[-2,10],[2,3],[4,5],[15,9],[33,0],[5,7],[-6,0],[-21,8],[9,5],[23,2],[12,10],[7,-4],[1,10],[-3,4],[-7,6],[-3,4],[-3,5],[-7,17],[-6,6]],[[57800,83027],[-15,13]],[[57785,83040],[-3,3],[-16,4],[-41,33],[-118,59],[-93,-18],[-65,24],[-53,89],[-81,96],[58,62],[26,3],[77,34],[76,2],[31,16],[45,12],[14,18],[78,130],[-3,25]],[[57717,83632],[0,2],[7,6],[24,28],[17,19],[7,6],[46,60],[27,19],[26,38],[40,41],[12,9],[25,7],[11,16],[0,1],[5,11],[5,8],[17,19],[8,14],[5,6],[16,9],[20,19],[15,11],[41,26],[20,18],[17,24],[7,15],[8,12],[41,42],[5,12],[5,13],[5,9],[6,5],[18,8],[8,7],[37,41],[3,5],[6,9],[6,19],[6,9],[38,38],[100,146],[39,42],[35,47],[8,18],[4,5],[5,4],[10,5],[25,24],[32,22],[5,5],[4,7],[7,19],[4,6],[40,42],[5,12],[3,6],[4,5],[15,9],[6,6],[5,12],[6,27],[6,13],[12,18],[5,13],[13,52],[8,24],[11,21],[25,44],[-10,7],[-4,14],[-4,13],[-7,11],[-3,2],[-7,6],[-18,26],[-8,8],[-17,12],[-7,9],[-4,8],[-3,12],[-1,11],[-1,11],[-2,11],[-6,9],[-7,7],[-56,36],[-43,48],[-92,48],[-8,6],[-6,10],[-17,23],[-38,27],[-67,75],[-6,14],[20,12],[42,17],[18,21],[17,36],[50,53],[12,17],[8,16],[2,19],[-7,23],[-5,11],[-3,9],[0,9],[5,11],[2,12],[-6,8],[-9,5],[-16,4],[-7,8],[-6,10],[-8,10],[-14,9],[-44,14],[-19,10],[-11,10],[-6,10],[2,15],[6,14],[2,13],[-9,11],[-13,7],[1,3],[-1,2],[-3,1],[0,2],[0,1],[0,2],[0,1],[-2,6],[-1,5],[0,9],[-1,1],[-2,1],[-1,2],[1,3],[2,2],[48,21],[6,6],[6,9],[2,11],[-5,10],[-11,11],[-3,5],[-3,6],[-1,3],[1,3],[1,7],[1,6],[1,4],[0,3],[-5,5],[-11,4],[-51,1],[-27,6],[-23,24],[-18,38],[-13,46],[3,24],[8,16],[12,9],[42,8],[7,8],[1,8],[-3,2],[-5,1],[-3,4],[0,6],[2,4],[3,3],[3,5],[-2,21],[-18,7],[-39,-1],[-13,11],[10,19],[29,33],[3,20],[-3,50],[2,20],[5,11],[22,23],[4,7],[-9,11],[-21,13],[-8,12],[17,10],[67,17],[17,-9],[9,-3],[4,5],[1,12],[-1,14],[-8,51],[-2,10],[-10,24],[-8,28],[-4,9],[-11,23],[-2,10],[-8,43],[-6,22],[-7,14],[-23,26],[-39,60],[-16,32],[-7,18],[-5,19],[-5,34],[-2,10],[-32,43],[-2,4],[-2,6],[0,5],[-1,5],[-8,11],[-11,31],[-65,87],[-11,39],[14,46],[91,135],[15,13],[2,3],[2,4],[3,10],[3,6],[111,117],[4,10],[8,25],[1,7],[2,36],[2,7],[2,6],[6,7],[-82,60],[-17,17],[-47,76],[-11,17],[-23,36],[-8,9],[-9,5],[-79,26],[-80,25],[-10,6],[-7,11],[-51,144],[-6,16],[-3,13],[0,8],[3,7],[71,103],[9,18],[15,42],[-20,16],[-23,4],[-56,-3],[-5,3],[-4,5],[-1,10],[13,1],[71,38],[34,9],[33,24]],[[58042,88348],[3,2],[3,1],[9,2],[16,-1],[15,6],[15,13],[13,16],[6,9],[3,9],[5,20],[2,5],[5,9],[2,5],[1,5],[0,5],[0,4],[3,5],[3,15],[2,9],[12,13],[16,6],[47,2],[16,5],[18,15],[7,3],[41,0],[13,5],[6,4],[9,12],[34,26],[4,6],[1,6],[0,7],[1,8],[3,9],[2,3],[8,4],[5,5],[4,7],[2,10],[-1,13],[-2,10],[-3,5],[-17,5],[-6,4],[-2,5],[6,3],[13,1],[12,-2],[18,-10],[51,-42],[9,-5],[27,-3],[41,-5],[27,3],[12,10],[8,19],[1,9],[-1,43],[-7,9],[-5,8],[0,4],[0,5],[-2,10],[-2,7],[-7,9],[0,22],[15,127],[15,0],[79,-1],[3,1],[12,7],[16,8],[25,13],[30,22],[31,16],[25,7]],[[58818,88980],[18,5],[36,4],[16,-1],[26,-1],[40,-6],[35,-11],[32,-17],[28,-21],[43,-15],[55,-29],[3,-1],[16,-3],[41,-10],[64,-21],[28,-12],[24,-14],[27,-27],[17,-32],[5,-23],[-4,-47],[2,-11],[5,-5],[36,-14],[32,3],[54,5],[54,-5],[36,-11],[34,-15],[39,-24],[36,-26],[25,4],[44,6],[40,0],[45,-5],[35,-8],[114,-35],[59,-19],[60,-31],[57,-23],[51,-34],[51,-25],[32,-16],[73,-43],[45,-23],[0,278],[0,277],[0,277],[0,278],[0,277],[0,277],[0,278],[0,277],[0,278],[0,277],[0,277],[0,278],[0,277],[0,277],[-1,278],[0,277],[0,278],[0,277],[0,277],[0,278],[-136,0],[-137,1],[-137,0],[-137,0],[0,227],[0,227],[0,227],[1,227],[0,227],[136,0],[137,-1],[137,0],[136,0],[0,271],[0,270],[0,271],[0,271]],[[60426,96109],[138,0],[138,0],[137,0],[138,0],[138,0],[137,0],[138,0],[138,0],[138,0],[132,0],[133,0],[132,0],[133,0],[133,0],[132,0],[133,0],[132,0],[133,0],[133,0],[132,0],[133,0],[132,0],[133,0],[133,0],[132,0],[133,0],[132,0],[133,0],[133,0],[132,0],[133,0],[0,260],[0,259],[0,259],[0,260],[0,259],[0,259],[0,260],[0,259],[0,259],[0,259],[0,260],[0,259],[0,259],[0,260],[-64583,259]],[[69730,72303],[-6,6],[-9,-7],[-5,-17],[-1,-10],[0,-9],[0,-5],[2,-8],[3,-10],[3,-10],[3,-7],[4,-3],[7,-2],[3,-4],[2,-16],[-12,-29],[0,-14],[4,-3],[4,4],[3,6],[4,3],[5,0],[1,-5],[1,-6],[3,-5],[4,0],[13,5],[10,1],[3,2],[3,6],[1,18],[-12,20],[-1,14],[5,7],[12,14],[2,8],[-2,6],[-3,1],[-7,-3],[-2,-2],[-3,-3],[-1,-1],[-2,0],[-1,1],[-1,2],[-16,10],[-8,7],[-4,9],[-4,16],[-5,13]],[[69921,72170],[7,-4],[4,2],[3,7],[6,35],[-1,6],[-7,-4],[-6,-7],[-1,-1],[-3,-3],[-5,-4],[-7,0],[-5,-9],[3,-8],[6,-6],[6,-4]],[[69601,72146],[-19,10],[-4,0],[0,-9],[2,-9],[4,-8],[9,-10],[3,-5],[8,-21],[1,-2],[15,18],[8,6],[9,3],[3,4],[0,10],[-2,10],[-3,1],[-9,-6],[-10,1],[-14,7],[-1,0]],[[0,99999],[77089,-276],[0,-277],[-1,-276],[0,-276],[-1,-277],[0,-276],[0,-276],[-1,-277],[0,-276],[0,-276],[-1,-277],[0,-276],[-1,-276],[0,-277],[0,-276],[-1,-276],[0,-277]],[[77083,95301],[-132,0],[-132,-1]],[[76819,95300],[-133,-1],[-132,-1]],[[76554,95298],[-132,0],[-132,-1]],[[76290,95297],[-133,-1],[-132,-1]],[[76025,95295],[-132,-1],[-132,0]],[[75761,95294],[-133,-1],[-132,-1]],[[75496,95292],[-132,-1],[-132,-1]],[[75232,95290],[-133,0],[-132,-1]],[[74967,95289],[-132,-1],[-132,-1],[0,-121],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[-138,0],[0,-223],[0,-222],[138,0],[138,0],[138,0]],[[72219,94721],[138,0],[139,0]],[[72496,94721],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0]],[[73876,94721],[138,0],[138,0],[139,0]],[[74291,94721],[138,0],[138,0],[138,0],[1,-242]],[[74706,94479],[0,-243],[1,-243],[1,-242]],[[74708,93751],[1,-243],[1,-243]],[[74710,93265],[-123,-104],[-122,-104]],[[74465,93057],[-123,-104],[-122,-104],[-123,-104]],[[74097,92745],[-123,-105],[-122,-104]],[[73852,92536],[-123,-104],[-122,-104]],[[73607,92328],[-123,-104]],[[73484,92224],[-123,-104],[-122,-105]],[[73239,92015],[-66,-55],[-118,-101],[-118,-100],[-118,-100],[-118,-100],[-118,-101],[-118,-100],[-118,-100],[-118,-100],[-107,-8]],[[72122,91150],[-108,-7],[-107,-7]],[[71907,91136],[-108,-7],[1,-57]],[[71800,91072],[7,-174],[8,-174]],[[71815,90724],[-11,-18],[0,-240],[0,-240],[1,-4],[1,-7]],[[71806,90215],[0,-4]],[[71806,90211],[-1,-2],[-9,-5],[-3,-2],[-2,-3],[-1,-3]],[[71790,90196],[0,-4],[2,-3]],[[71792,90189],[18,-17],[3,-2],[19,-4]],[[71832,90166],[3,-2],[2,-5]],[[71837,90159],[2,-3],[2,-4]],[[71841,90152],[4,-5],[3,-4]],[[71848,90143],[2,-6]],[[71850,90137],[-1,-4],[-1,-3],[1,-2]],[[71849,90128],[2,-2],[1,-2],[-1,-3],[-3,-2],[-11,-3]],[[71837,90116],[-2,-1],[4,-2]],[[71839,90113],[12,-5],[3,-2]],[[71854,90106],[1,-3],[1,-3],[4,-1],[22,3]],[[71882,90102],[3,0],[3,-2]],[[71888,90100],[-2,-2],[-2,-2]],[[71884,90096],[-2,-1],[3,-2],[31,-12]],[[71916,90081],[2,-2],[2,-2]],[[71920,90077],[-1,-3],[-1,-3],[-1,-3]],[[71917,90068],[0,-3],[3,-1]],[[71920,90064],[4,-1],[16,4],[3,0],[6,-2]],[[71949,90065],[14,-6],[3,-2]],[[71966,90057],[2,-2]],[[71968,90055],[0,-4],[0,-4]],[[71968,90047],[0,-3],[2,-3]],[[71970,90041],[4,-1],[4,0]],[[71978,90040],[7,2],[21,-1]],[[72006,90041],[32,-10],[12,2]],[[72050,90033],[3,-2],[4,-3]],[[72057,90028],[3,-5],[5,-2],[4,0],[7,3],[4,1],[25,-3],[9,1],[19,8],[4,0],[44,-18],[3,-2],[2,-4],[1,-5],[0,-2],[0,-1]],[[72187,89999],[0,-1],[2,-2]],[[72189,89996],[5,-3],[3,-2],[6,1],[23,-2]],[[72226,89990],[7,-4],[4,-3],[4,-2]],[[72241,89981],[6,-4],[1,-3],[4,-3],[11,-3],[10,-3],[3,0],[3,2],[3,0],[3,-1]],[[72285,89966],[2,-3],[3,-6]],[[72290,89957],[2,-4],[4,-4]],[[72296,89949],[9,-3],[3,-2],[8,-6]],[[72316,89938],[1,-3],[0,-2],[-2,-3],[-3,-2],[-4,0],[-7,1]],[[72301,89929],[-3,0],[0,-2]],[[72298,89927],[0,-5],[-2,-3],[-3,-1],[-21,7]],[[72272,89925],[-1,0],[-2,-1]],[[72269,89924],[-4,-4],[-2,-2]],[[72263,89918],[-21,-4],[-6,-4],[-2,-2],[-2,-3],[-1,-3],[0,-3],[1,-3]],[[72232,89896],[3,-1],[8,-2]],[[72243,89893],[2,-2],[2,-2],[1,-3]],[[72248,89886],[5,-7],[2,-3]],[[72255,89876],[0,-2],[-2,-3],[-7,-1],[-3,-2],[0,-4],[10,-32],[1,-7],[1,-7],[-2,-3],[-3,-2],[-3,-2]],[[72247,89811],[-4,-1],[-13,0]],[[72230,89810],[-3,-1],[0,-3]],[[72227,89806],[-1,-3],[-1,-3]],[[72225,89800],[-4,-5],[-2,-4],[-1,-2]],[[72218,89789],[-3,-2],[-30,-9],[-88,3],[-11,-4],[-4,0],[-9,2],[-15,6],[-4,1],[-4,-1],[-3,-1],[-8,-6],[-1,-2]],[[72038,89776],[5,-8],[3,-3]],[[72046,89765],[2,-4],[2,-7]],[[72050,89754],[1,-4],[1,-5]],[[72052,89745],[-1,-3],[0,-4]],[[72051,89738],[-6,-17],[-2,-3]],[[72043,89718],[-2,-3],[-2,-2]],[[72039,89713],[-3,-2],[-42,-20]],[[71994,89691],[-7,-8],[-3,-5],[0,-4],[1,-4]],[[71985,89670],[5,-17],[1,-8]],[[71991,89645],[1,-4],[3,-6]],[[71995,89635],[7,-9],[5,-4],[5,-2],[25,-1]],[[72037,89619],[36,-8],[28,-13]],[[72101,89598],[108,-80],[125,-24],[34,-15],[3,-2]],[[72371,89477],[2,-3],[1,-6],[-1,-20],[0,-3],[1,-5]],[[72374,89440],[1,-15],[0,-10],[0,-20]],[[72375,89395],[0,-7],[1,-6],[1,-7]],[[72377,89375],[0,-3],[1,-6],[2,-3]],[[72380,89363],[2,-4],[4,-4],[14,-9],[1,-3]],[[72401,89343],[9,-8],[2,-2]],[[72412,89333],[0,-3],[-1,-3]],[[72411,89327],[-2,-3],[-6,-7]],[[72403,89317],[-11,-8],[-2,-3]],[[72390,89306],[-2,-3],[-1,-3]],[[72387,89300],[-1,-4],[0,-3]],[[72386,89293],[0,-4],[1,-3],[3,-3],[15,-10]],[[72405,89273],[2,-1],[8,0]],[[72415,89272],[3,-1],[3,-2],[7,-7],[2,-2],[1,-3],[1,-5],[0,-4],[0,-4],[-1,-3],[-2,-3]],[[72429,89238],[-2,-3],[-1,-3]],[[72426,89232],[-2,-3],[0,-4]],[[72424,89225],[-1,-3]],[[72423,89222],[-2,-4],[-1,-2]],[[72420,89216],[-3,-3],[-9,-4]],[[72408,89209],[-2,-2]],[[72406,89207],[-1,-4],[1,-5]],[[72406,89198],[2,-7],[-1,-4],[-1,-3],[-1,-3]],[[72405,89181],[-1,-5],[-3,-2],[-8,-2],[-2,-2],[0,-4]],[[72391,89166],[1,-3]],[[72392,89163],[3,-3],[7,-4]],[[72402,89156],[2,-3]],[[72404,89153],[1,-2],[0,-3],[0,-4]],[[72405,89144],[0,-3],[2,-3],[5,-2]],[[72412,89136],[4,-1],[13,-1],[9,-2]],[[72438,89132],[2,0],[2,0],[1,-3]],[[72443,89129],[0,-3],[-1,-3],[-1,-3],[-3,0],[-3,1],[-3,1]],[[72432,89122],[-4,-1],[-2,-2],[0,-3]],[[72426,89116],[3,-2],[2,-3],[1,-2],[-3,-2],[-3,-1],[-4,-1],[-3,2],[-2,3],[-1,5],[-2,4],[-1,3],[-4,0],[-7,-1],[-3,1],[-3,2],[-3,4],[-5,9],[-2,3],[-3,3],[-3,1],[-61,-1],[-7,-3]],[[72312,89140],[-3,-2],[-2,-2]],[[72307,89136],[-4,-5],[-2,-3],[-3,-2],[-3,-1]],[[72295,89125],[-4,1],[-16,4],[-3,-1],[-1,-2],[0,-4],[2,-6],[1,-4],[0,-3]],[[72274,89110],[-2,-4],[-2,-1]],[[72270,89105],[-3,-1],[-11,4],[-4,0],[-4,0],[-2,-2]],[[72246,89106],[0,-4],[4,-6]],[[72250,89096],[1,-5],[-1,-4],[-2,-3]],[[72248,89084],[-38,-22],[-1,-2]],[[72209,89060],[-21,-18],[-13,-5]],[[72175,89037],[-4,0],[-3,1],[-4,1],[-2,2],[-7,3],[-9,1],[-3,-2],[-2,-2],[0,-4],[1,-5]],[[72142,89032],[2,-6],[-1,-3]],[[72143,89023],[-3,-2],[-12,-2],[-2,-1]],[[72126,89018],[-7,-7],[-2,-3],[-1,-3],[-1,-3]],[[72115,89002],[-1,-4],[0,-3]],[[72114,88995],[-2,-3],[-6,-7]],[[72106,88985],[-22,-33],[-2,-2]],[[72082,88950],[-4,-1],[-8,1]],[[72070,88950],[-7,3],[-6,3],[-3,3],[-1,2],[1,4],[4,3],[-1,2],[-4,1],[-10,1]],[[72043,88972],[-4,-1],[-3,-1],[0,-2]],[[72036,88968],[0,-3],[2,-12],[0,-3],[-1,-4],[-1,-3],[0,-4],[1,-6],[5,-8],[1,-5],[0,-4]],[[72043,88916],[-3,-2],[-2,-1]],[[72038,88913],[-3,1],[-3,3],[-3,3],[-3,1],[-24,-4]],[[72002,88917],[-4,-1],[-2,-2]],[[71996,88914],[-1,-3],[0,-4],[1,-4]],[[71996,88903],[2,-7],[-1,-2],[-1,0]],[[71996,88894],[-7,2],[-4,1],[-3,-1],[-1,-3],[2,-6]],[[71983,88887],[8,-11],[2,-5]],[[71993,88871],[-1,-3],[-8,-3],[-2,-2],[-2,-2],[-4,-6],[-2,-2],[-3,-2],[-12,-2]],[[71959,88849],[-2,-2],[-1,-3],[-1,-2]],[[71955,88842],[-2,-3],[-9,-11]],[[71944,88828],[-10,-6],[-3,-2],[-4,0],[-15,2]],[[71912,88822],[-2,-1],[1,-2]],[[71911,88819],[3,-4],[6,-4]],[[71920,88811],[25,-14],[2,-2]],[[71947,88795],[0,-3]],[[71947,88792],[-2,-2],[-4,-2],[-2,-2],[-1,-3]],[[71938,88783],[2,-3],[4,-2],[14,-8],[4,-5],[1,-4]],[[71963,88761],[-1,-4],[0,-3]],[[71962,88754],[0,-3],[3,-2]],[[71965,88749],[14,-3],[1,-3],[-1,-2],[-3,-2],[-28,-13],[-1,-3]],[[71947,88723],[1,-2],[15,-3]],[[71963,88718],[3,-3],[4,-2],[5,-1],[9,-1],[76,-18],[4,0],[4,2],[3,1],[3,2],[3,0],[3,-2],[2,-3]],[[72082,88693],[0,-3],[2,-3]],[[72084,88687],[4,-3],[3,-2]],[[72091,88682],[0,-2],[-1,-2]],[[72090,88678],[-5,-4],[0,-3]],[[72085,88671],[2,-3],[15,-6]],[[72102,88662],[4,-3],[3,-5]],[[72109,88654],[2,-7]],[[72111,88647],[5,-11],[6,-14]],[[72122,88622],[0,-3],[1,-3]],[[72123,88616],[0,-3]],[[72123,88613],[-1,-4],[1,-4]],[[72123,88605],[1,-4],[5,-5]],[[72129,88596],[4,-8],[3,-2],[7,-3]],[[72143,88583],[3,-2],[1,-4]],[[72147,88577],[-2,-2]],[[72145,88575],[-1,-2],[3,-2]],[[72147,88571],[19,-2],[4,-1]],[[72170,88568],[1,-4],[0,-6]],[[72171,88558],[1,-4],[1,-2]],[[72173,88552],[1,-3],[11,-9],[1,-3]],[[72186,88537],[-2,-3],[-2,-2],[-1,-3]],[[72181,88529],[0,-2],[3,-1]],[[72184,88526],[13,2],[4,-1]],[[72201,88527],[4,-1],[5,-4],[5,0],[1,0]],[[72216,88522],[3,1],[6,4],[7,2],[17,0],[6,4],[3,0],[2,0],[0,-2],[1,-2],[2,-1],[22,3],[9,-1],[58,-20],[74,-6]],[[72426,88504],[7,-4],[3,-3]],[[72436,88497],[1,-3],[1,-4],[2,-5],[2,-3],[4,-4],[26,-15],[7,-5],[2,-4],[2,-3]],[[72483,88451],[2,-2],[5,0]],[[72490,88449],[56,17],[18,14],[26,11],[4,0],[5,-1]],[[72599,88490],[23,-15],[1,0]],[[72623,88475],[8,0],[15,4],[12,5],[11,8],[2,2],[3,2],[1,3],[1,3],[1,3],[-1,2],[-1,2],[-3,4],[-1,2],[0,3],[1,3],[2,7],[2,7],[0,3],[0,4],[0,6],[-1,6],[-1,3],[-1,3],[1,3],[1,3],[7,10],[2,3],[3,1]],[[72687,88580],[3,0],[20,-5]],[[72710,88575],[7,-4],[37,-39],[2,-2],[2,-3],[0,-5],[-1,-4]],[[72757,88518],[-2,-3],[-3,-6]],[[72752,88509],[-2,-2]],[[72750,88507],[-14,-10],[-9,-4]],[[72727,88493],[-3,-2],[-12,-16]],[[72712,88475],[-1,-2]],[[72711,88473],[-1,-3],[1,-3]],[[72711,88467],[3,-5],[19,-20],[8,-5]],[[72741,88437],[6,-3],[101,-14],[1,0]],[[72849,88420],[4,0],[28,8]],[[72881,88428],[7,0],[9,-1]],[[72897,88427],[3,-2],[3,-3],[2,-3],[1,-13],[1,-4],[3,-4],[3,-2],[2,-2]],[[72915,88394],[-1,-3],[-2,-2],[-4,-5]],[[72908,88384],[-2,-2],[-1,-3],[-1,-2],[-2,-2],[-23,-4]],[[72879,88371],[-7,-2],[-2,-2]],[[72870,88367],[-2,-4]],[[72868,88363],[0,-5],[5,-9],[4,-5]],[[72877,88344],[5,-3]],[[72882,88341],[13,-3],[4,-1]],[[72899,88337],[3,-3],[2,-1],[7,-3],[3,-5]],[[72914,88325],[3,-7],[8,-26],[2,-10]],[[72927,88282],[2,-21],[1,-3]],[[72930,88258],[-1,-14],[0,-4]],[[72929,88240],[1,-4],[4,-4]],[[72934,88232],[7,-5],[39,-12]],[[72980,88215],[3,1],[9,3],[2,1],[2,-1]],[[72996,88219],[1,-2],[2,-3]],[[72999,88214],[2,-5]],[[73001,88209],[0,-3],[0,-3]],[[73001,88203],[-2,-4],[-1,-3]],[[72998,88196],[0,-4],[2,-3],[59,-32]],[[73059,88157],[5,-4],[1,-3],[1,-2],[-3,-4],[-25,-9]],[[73038,88135],[-5,-3],[-2,-3],[-13,-3]],[[73018,88126],[-51,1],[-11,-8],[-12,-5],[-3,-1],[-3,0],[-8,5],[-3,0],[-1,-2],[-1,-7],[-1,-4]],[[72924,88105],[-3,-2],[-10,-3]],[[72911,88100],[-3,-1]],[[72908,88099],[-1,-2],[4,-2]],[[72911,88095],[15,-7],[23,-14],[13,-17]],[[72962,88057],[2,-4],[2,-3]],[[72966,88050],[3,-11],[5,-32],[-1,-15],[-2,-9]],[[72971,87983],[-2,-3],[0,-4]],[[72969,87976],[-1,-3],[0,-4]],[[72968,87969],[1,-8],[2,-6]],[[72971,87955],[1,-9],[0,-4],[0,-3]],[[72972,87939],[-3,-3],[-3,-2]],[[72966,87934],[-11,-3],[-11,-6]],[[72944,87925],[-5,-4],[-2,-2],[-9,-14],[-3,-6],[-1,-4],[0,-4],[2,-6]],[[72926,87885],[3,-6],[1,-3]],[[72930,87876],[-2,-2]],[[72928,87874],[-3,-2],[-3,-2],[-2,0]],[[72920,87870],[-3,0],[-11,7],[-7,3],[-4,0]],[[72895,87880],[-4,-1],[-2,-1]],[[72889,87878],[-2,-3],[-1,-3],[-1,-5]],[[72885,87867],[-1,-15],[-1,-5],[-1,-5]],[[72882,87842],[-3,-6],[-1,-3],[0,-4],[2,-5],[1,-4],[4,-5],[1,-3],[0,-3],[-1,-5],[-1,-4],[-1,-4],[0,-4]],[[72883,87792],[1,-14],[0,-2],[0,-2],[0,-3]],[[72884,87771],[-2,-11]],[[72882,87760],[-1,-6],[-1,-4],[-2,-3],[-3,-1],[-81,2]],[[72794,87748],[-11,7],[-3,1],[-6,0],[-3,-1]],[[72771,87755],[-3,-2],[-8,-9]],[[72760,87744],[-10,-4],[-7,0],[-7,1],[-13,7],[-7,2]],[[72716,87750],[-1,0],[-3,0]],[[72712,87750],[-3,-2],[-4,-5],[-3,-5]],[[72702,87738],[-1,-3],[0,-5]],[[72701,87730],[1,-4],[8,-11]],[[72710,87715],[3,-3]],[[72713,87712],[4,-4],[5,-5]],[[72722,87703],[13,-18]],[[72735,87685],[9,-20],[4,-5]],[[72748,87660],[5,-4],[8,-1],[3,-3]],[[72764,87652],[3,-3],[5,-7]],[[72772,87642],[3,-3],[2,-2],[2,-1],[5,3],[3,0],[2,0]],[[72789,87639],[2,-2],[14,-13]],[[72805,87624],[1,-5],[-1,-4],[-1,-4],[-2,-2],[-1,-3]],[[72801,87606],[0,-1],[6,-1]],[[72807,87604],[1,-1],[-1,-2],[-2,-2]],[[72805,87599],[-11,-6],[-2,-2]],[[72792,87591],[-1,-3],[0,-3],[3,-4]],[[72794,87581],[4,-6],[5,-8],[5,-7]],[[72808,87560],[4,-5],[5,-3]],[[72817,87552],[8,-3],[4,-3]],[[72829,87546],[4,-5],[14,-12]],[[72847,87529],[3,-1]],[[72850,87528],[3,0],[1,0]],[[72854,87528],[3,0],[11,6],[3,0],[3,-1],[2,-2],[0,-5],[-1,-7],[0,-1],[2,0],[6,1],[2,-1],[1,-3],[-1,-3],[-4,-5],[-2,-2],[-2,-3],[-1,-3],[0,-3],[2,-3],[2,-3],[1,-2],[-1,0],[-9,1]],[[72871,87489],[-1,0],[-1,-1]],[[72869,87488],[-10,-10],[-3,-6]],[[72856,87472],[-2,-3],[-2,-6]],[[72852,87463],[-2,-3],[-2,-2],[-1,-4]],[[72847,87454],[1,-5],[9,-13]],[[72857,87436],[11,-12],[1,-3],[-1,-2]],[[72868,87419],[-3,-1],[-4,-1]],[[72861,87417],[-3,-1],[0,-1]],[[72858,87415],[3,-2],[12,-5]],[[72873,87408],[3,-1],[1,-2],[-2,-1]],[[72875,87404],[-20,-11],[-3,0]],[[72852,87393],[-3,0],[-7,1],[-2,-1],[1,-2],[7,-6],[2,-2],[0,-3]],[[72850,87380],[-2,-2],[-2,-1]],[[72846,87377],[-3,0],[-9,4],[-3,1],[-2,-2]],[[72829,87380],[0,-4],[2,-6]],[[72831,87370],[0,-3]],[[72831,87367],[-3,-2],[-15,-2],[-2,-2]],[[72811,87361],[-1,-2],[0,-2],[94,-74],[94,-75]],[[72998,87208],[68,-47],[3,-3],[1,-3],[-1,-3]],[[73069,87152],[-5,-5],[-1,-2]],[[73063,87145],[2,-3]],[[73065,87142],[1,-3],[5,-4]],[[73071,87135],[2,-1],[3,-1],[1,0]],[[73077,87133],[9,2],[3,-1],[2,-2],[9,-12]],[[73100,87120],[1,-3],[2,-4]],[[73103,87113],[1,-8]],[[73104,87105],[0,-15],[1,-3]],[[73105,87087],[0,-3],[2,-3]],[[73107,87081],[2,-4],[14,-11],[4,-5]],[[73127,87061],[7,-10]],[[73134,87051],[1,-4],[2,-3]],[[73137,87044],[0,-4],[-1,-6]],[[73136,87034],[-2,-3],[-3,-2],[-14,-7],[-5,-4],[-2,-2]],[[73110,87016],[-5,-4],[-21,-3]],[[73084,87009],[-3,-2],[-1,-2]],[[73080,87005],[-1,-4],[-2,-14],[0,-3],[0,-3],[0,-3],[1,-3],[0,-6],[0,-4]],[[73078,86965],[-1,-13],[0,-7]],[[73077,86945],[1,-9],[2,-15]],[[73080,86921],[1,-4],[2,-4]],[[73083,86913],[6,-12],[3,-3]],[[73092,86898],[2,-2],[28,-10]],[[73122,86886],[6,-4],[2,-2],[5,-7]],[[73135,86873],[15,-17],[4,-6]],[[73154,86850],[10,-26],[6,-10]],[[73170,86814],[2,-3],[9,-10],[21,-25],[2,-3],[0,-5]],[[73204,86768],[-2,-3],[-1,-3]],[[73201,86762],[-5,-4]],[[73196,86758],[-11,-7],[-24,-8]],[[73161,86743],[-3,-2],[-1,-3]],[[73157,86738],[-1,-3],[-1,-3],[-1,-4],[-1,-3],[-2,-3],[-13,-13],[-1,-3],[-1,-4],[1,-4],[12,-26],[4,-7],[6,-8],[41,-42],[1,-3]],[[73201,86612],[-1,-3],[-1,-7],[0,-5]],[[73199,86597],[0,-4],[2,-7],[0,-4]],[[73201,86582],[-2,-3],[-1,-3]],[[73198,86576],[-2,-2],[1,-3]],[[73197,86571],[2,-4],[17,-24]],[[73216,86543],[1,-1],[2,-1],[1,0]],[[73220,86541],[16,8],[26,6],[61,1],[13,-2]],[[73336,86554],[5,-3],[2,-3],[2,-3]],[[73345,86545],[5,-12]],[[73350,86533],[3,-4],[15,-15],[5,-7]],[[73373,86507],[2,-2]],[[73375,86505],[4,-4],[6,-4]],[[73385,86497],[6,-2],[24,-2]],[[73415,86493],[3,-1],[3,-2],[1,-4]],[[73422,86486],[-1,-3],[-3,-10],[-1,-4],[0,-9],[-1,-4]],[[73416,86456],[-1,-3],[-2,-2],[-8,-4]],[[73405,86447],[-14,-1]],[[73391,86446],[-3,-1],[-1,-2]],[[73387,86443],[0,-2],[3,-2],[62,-22]],[[73452,86417],[3,-3],[4,-5]],[[73459,86409],[4,-8],[3,-4],[5,-7],[2,-5],[5,-15],[7,-14],[1,-5],[-1,-5],[-2,-4],[-7,-6],[-2,-3]],[[73474,86333],[-1,-4],[3,-8]],[[73476,86321],[1,-3],[1,-3],[4,-4],[2,-3],[2,-5],[2,-7],[2,-4]],[[73490,86292],[4,-6],[1,-3],[0,-8]],[[73495,86275],[0,-3],[-1,-3],[-4,-13],[-1,-4],[-1,-3],[-1,-4],[-9,-16],[-2,-3]],[[73476,86226],[-3,-1],[-3,-2],[-16,-2],[-5,-3]],[[73449,86218],[-2,-2]],[[73447,86216],[-3,-3],[-4,-5],[-8,-17]],[[73432,86191],[-6,-14],[-6,-12],[-1,-3],[-1,-3],[1,-5],[1,-5],[5,-9],[4,-5]],[[73429,86135],[3,-3],[3,-2]],[[73435,86130],[3,-2],[1,-2],[1,-3]],[[73440,86123],[0,-4],[1,-4]],[[73441,86115],[-1,-8]],[[73440,86107],[-2,-4],[-2,-4],[-15,-9]],[[73421,86090],[-5,-4],[-2,-3],[-2,-3],[-2,-3],[-1,-3]],[[73409,86074],[-1,-4],[1,-4]],[[73409,86066],[2,-6],[3,-4]],[[73414,86056],[3,-2],[4,-2]],[[73421,86052],[42,-3],[1,0]],[[73464,86049],[97,23]],[[73561,86072],[27,-2],[7,-3]],[[73595,86067],[2,-2],[2,-3]],[[73599,86062],[1,-4],[1,-4]],[[73601,86054],[0,-4],[-1,-7]],[[73600,86043],[-2,-4],[-5,-5]],[[73593,86034],[-2,-3],[-1,-3],[0,-4]],[[73590,86024],[0,-4],[2,-5],[2,-3],[2,-2]],[[73596,86010],[6,-4],[7,-2]],[[73609,86004],[12,-1],[12,3],[3,-1],[3,-3],[2,-4],[2,-15],[1,-3],[1,-3],[2,-2]],[[73647,85975],[2,-2],[3,-1]],[[73652,85972],[3,0],[7,0],[45,18],[25,5],[3,2],[9,9],[10,7],[6,2],[6,1],[14,-1],[58,-25],[5,-3],[2,-3],[2,-2],[1,-3],[1,-4]],[[73849,85975],[0,-3],[0,-7]],[[73849,85965],[-2,-9],[-11,-37]],[[73836,85919],[-1,-4],[1,-3],[2,-2]],[[73838,85910],[1,-3],[2,-2],[20,-16]],[[73861,85889],[2,-2],[1,-3],[1,-2],[-1,-5],[-2,-6],[-13,-25],[-2,-5],[-2,-8],[-1,-5],[0,-3],[0,-12],[0,-3],[1,-3],[2,-2],[20,-19],[1,-2],[1,-3],[0,-2]],[[73869,85779],[-2,-15],[1,-3]],[[73868,85761],[0,-3],[4,-7]],[[73872,85751],[1,-3],[0,-3]],[[73873,85745],[0,-2],[1,-3]],[[73874,85740],[1,-3],[1,-2],[2,-2]],[[73878,85733],[10,-9],[5,-6]],[[73893,85718],[1,-3],[2,-5]],[[73896,85710],[1,-3],[0,-2],[0,-3],[-1,-6],[-1,-4],[-1,-6]],[[73894,85686],[-2,-4],[-8,-16],[-2,-6],[-1,-4],[1,-3]],[[73882,85653],[-1,-4],[-2,-6],[-6,-10],[-2,-6],[-1,-4],[1,-3],[1,-2],[2,-2],[2,-2],[2,-3],[1,-2],[0,-3],[0,-6],[0,-6],[-1,-3],[-1,-3],[-3,-4],[-77,-34],[-4,-4],[-16,-16],[-10,-7],[-8,-3],[-3,-3],[-3,-4],[-6,-13],[-3,-4],[-12,-12]],[[73732,85484],[-3,-3],[-2,-6]],[[73727,85475],[-3,-8],[-10,-19],[-1,-5]],[[73713,85443],[-1,-4],[0,-4],[-1,-5]],[[73711,85430],[-4,-9]],[[73707,85421],[-2,-5],[0,-4]],[[73705,85412],[1,-2],[1,-3],[0,-3],[0,-3],[-1,-3]],[[73706,85398],[-2,-6],[-1,-4]],[[73703,85388],[-18,-27],[-3,-4]],[[73682,85357],[-11,-10],[-2,-4]],[[73669,85343],[-5,-10],[-3,-2],[-4,-1],[-7,1],[-11,5],[-4,1],[-3,-1],[-5,-1],[-2,-2]],[[73625,85333],[-6,-8],[1,-2],[1,0]],[[73621,85323],[3,-6]],[[73624,85317],[3,-9],[5,-7]],[[73632,85301],[5,-5],[1,0]],[[73638,85296],[16,0],[8,-2],[4,-11],[4,0],[17,6],[7,-2],[5,-11],[5,-6]],[[73704,85270],[11,-12],[-1,-7]],[[73714,85251],[1,-5],[4,-11],[-8,-5],[1,-6]],[[73712,85224],[4,-6],[3,-8]],[[73719,85210],[1,-5],[2,-5]],[[73722,85200],[2,-5],[3,-2]],[[73727,85193],[4,0],[2,4],[1,4],[3,4],[11,2]],[[73748,85207],[40,0],[9,-8]],[[73797,85199],[-1,-8],[-3,-6],[-11,-11],[-16,-23],[-6,-3],[-2,-3],[0,-6],[1,-6],[0,-5]],[[73759,85128],[-2,-4],[-5,-4]],[[73752,85120],[-2,-3],[-3,-8],[-6,-27],[0,-3],[0,-3],[1,-2],[6,-7],[2,-2],[4,-10],[2,-2],[2,-2]],[[73758,85051],[13,-6],[2,-2]],[[73773,85043],[0,-3],[0,-3],[0,-8]],[[73773,85029],[-2,-5],[-3,-6],[-15,-18]],[[73753,85000],[-2,-1],[-2,-4]],[[73749,84995],[-1,-3],[0,-4],[1,-3]],[[73749,84985],[1,-2],[2,-8]],[[73752,84975],[2,-8],[1,-2]],[[73755,84965],[-1,-3],[-5,-9],[-10,-14],[-5,-4]],[[73734,84935],[-29,-5],[-2,-2]],[[73703,84928],[-2,-1],[-28,-38],[-16,-30]],[[73657,84859],[-3,-6],[0,-3]],[[73654,84850],[0,-3],[0,-3],[-1,-4],[-2,-3],[-3,-3],[-10,-10],[-2,-3],[-2,-3],[-1,-6],[1,-3],[1,-3]],[[73635,84806],[1,-2],[1,-3]],[[73637,84801],[-2,-3],[-4,-3],[-9,-5],[-3,-2],[-9,-10]],[[73610,84778],[-3,-2],[-8,-3],[-3,-2],[-2,-4],[-2,-5],[-2,-5]],[[73590,84757],[-3,-4],[-4,-5],[-2,-4]],[[73581,84744],[-1,-4]],[[73580,84740],[0,-3],[1,-3],[4,-8]],[[73585,84726],[1,-2],[0,-3],[-1,-3],[-3,-7],[-7,-13],[-3,-4]],[[73572,84694],[-13,-13],[-8,-6]],[[73551,84675],[-11,-3],[-82,-118],[-4,-12],[32,-98],[0,-1]],[[73486,84443],[0,-1],[0,-2]],[[73486,84440],[0,-3],[-9,-24],[0,-3]],[[73477,84410],[0,-3],[1,-2]],[[73478,84405],[3,-8],[1,-2]],[[73482,84395],[2,-5],[3,-3],[20,-11]],[[73507,84376],[4,-4]],[[73511,84372],[1,-2],[3,-6]],[[73515,84364],[3,-10]],[[73518,84354],[2,-8],[1,-2]],[[73521,84344],[1,-3]],[[73522,84341],[2,-3],[4,-3],[35,-10]],[[73563,84325],[25,6],[6,-1],[17,-6],[24,-17],[9,-9]],[[73644,84298],[10,-16],[4,-3]],[[73658,84279],[28,-12],[6,1],[6,1],[12,8],[2,1],[3,0],[3,-2]],[[73718,84276],[4,-7],[8,-15],[8,-12]],[[73738,84242],[2,-3],[4,-2],[67,-30],[3,0],[19,5],[10,6],[2,1],[3,0],[28,-25],[2,-3],[2,-4],[1,-6],[0,-11],[0,-4]],[[73881,84166],[-2,-14],[-5,-6],[-49,-12]],[[73825,84134],[-5,-3]],[[73820,84131],[-31,-28],[-1,-3]],[[73788,84100],[-1,-3],[0,-3],[0,-2],[2,-5],[3,-8]],[[73792,84079],[13,-21],[-2,-4]],[[73803,84054],[-6,-5],[-83,-47]],[[73714,84002],[-101,-57],[-100,-57]],[[73513,83888],[-7,0],[-101,-80]],[[73405,83808],[-73,-17],[-2,1],[-12,8],[-15,17],[-77,61],[-26,33],[-2,2],[-3,1],[-100,-10],[-102,-85],[-103,-85],[-4,-6],[-2,-7],[0,-8],[1,-25],[0,-8],[-2,-8],[-5,-6],[-48,-39],[-7,-2],[-7,3],[-65,54],[-9,5],[-12,4],[-79,-8],[-13,-9],[-100,12],[-7,3],[-6,6],[-5,7],[-4,8],[-2,8],[-3,24],[-2,7],[-2,3],[-3,1],[-44,12],[-37,10],[-5,0],[-5,-1],[-15,-13],[-3,-1],[-51,-1],[-3,-2],[-4,-2],[-57,-50],[-7,-3],[-5,-1],[-87,16],[-98,-3],[-29,-13],[-6,-1],[-4,1],[-15,23],[-5,6],[-1,3],[0,3],[1,24],[1,3],[1,3],[5,7],[0,2],[-1,2],[-1,2],[-3,2],[-2,1],[-9,0],[-2,1],[-3,1],[-9,11],[-3,2],[-3,1],[-4,-1],[-17,-6],[-5,-1],[-8,1],[-11,-3],[-4,0],[-2,1],[-1,1],[-2,2],[-4,-1],[-4,-3],[-15,-18],[-4,-1],[-24,-3],[-3,1],[-3,1],[-24,24],[-3,1],[-4,-1],[-50,-26],[-5,-2],[-86,15],[-13,-1],[-11,-4],[-38,-25],[-3,-1],[-3,0],[-3,0],[-3,1],[-3,2],[-2,2],[-10,13],[-6,6],[-21,14],[-13,5],[-39,2],[-43,-10],[-3,1],[-17,9],[-6,2],[-17,1],[-32,12],[-5,0],[-4,-2],[-2,-2],[-1,-3],[-2,-6],[-5,-39],[0,-3],[1,-6],[1,-3],[-2,-8],[-9,0],[-5,2],[-6,3],[-3,-8],[-2,0],[-1,-3],[-1,-3],[0,-34],[2,-4],[3,-2],[9,-2],[2,-2],[2,-2],[1,-2],[0,-3],[3,-11],[1,-12],[0,-4],[-2,-6],[-4,-10],[-3,-5],[-2,-3],[-37,-21],[-13,-3],[-8,-7],[-7,-10],[-7,-42],[-1,-11],[0,-6],[1,-2],[3,-2],[10,-2],[3,-1],[2,-2],[1,-3],[1,-2],[2,-5],[4,-19],[0,-3],[0,-4],[-19,-51],[-4,-9],[-18,-22],[-2,-3],[0,-3],[2,-3],[2,-3],[8,-5],[2,-2],[1,-2],[2,-2],[0,-3],[1,-3],[0,-5],[-5,-67],[0,-99],[-1,-8],[-2,-8],[-20,-20],[-3,-15],[0,-32],[0,-13],[-4,-5],[-53,-18],[-75,-1],[-5,-4],[-41,-59],[-1,-2],[-2,-1],[-1,-2],[-6,-1],[-2,0],[-3,2],[-10,6],[-3,0],[-3,-3],[-6,-19],[-8,-38],[-3,-9],[-4,-7],[-9,-9],[-6,-5],[-32,-14],[-6,-4],[-1,-7],[1,-8],[15,-81],[1,-14],[-4,-13],[-8,-19],[-75,-109],[-49,-47],[-10,-13],[0,-15],[0,-13],[-1,-5],[-14,-21],[-44,-41],[-5,-9],[-2,-4],[-7,-5],[-2,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[-1,-3],[-1,-3],[-3,-2],[-4,-1],[-10,1],[-7,-5],[-35,-36],[-8,-11],[-5,-8],[0,-3],[0,-3],[1,-3],[-1,-3],[-3,-2],[-19,-6],[-17,-8],[-77,-75],[-103,2],[-104,2],[-104,3],[-5,-3],[-23,-19],[-5,-6],[-3,-7],[0,-10],[-2,-7],[-4,-7],[-6,-6],[-7,-6],[-7,-5],[-60,2],[-34,1],[-14,7],[-90,-1],[-7,3],[-5,9],[-8,18],[-6,8],[-9,9],[-10,7],[-7,-1],[-105,-15],[-20,-7],[-9,-1],[-6,1],[-11,6],[-5,0],[-37,-9],[-5,0],[-2,4],[0,3],[1,11],[0,4],[-1,4],[-3,5],[-1,4],[-2,6],[0,4],[0,4],[7,98],[0,6],[2,2],[2,2],[4,3],[4,3],[2,2],[1,3],[0,3],[-2,6],[-5,7],[-23,18],[-8,3],[-7,0],[-3,1],[-2,3],[-1,3],[-1,3],[-1,6],[0,3],[-3,8],[-4,13],[-2,3],[-3,1],[-14,-3],[-4,1],[-7,3],[-3,3],[-3,3],[-1,3],[-2,2],[-4,0],[-11,-1],[-7,-6],[-55,-153],[-55,-154],[-8,-12],[-1,-3],[-1,-8],[1,-3],[-15,-7],[1,-8],[5,-10],[6,-9],[-1,-4],[-1,-4],[0,-4],[2,-3],[1,-5],[2,-4],[1,-8],[-1,-5],[0,-5],[-2,-7],[1,-3],[2,-4],[8,-3],[3,-4],[3,-6],[1,-14],[2,-6],[2,-2],[10,-1],[6,-1],[2,-5],[1,-10],[1,-53],[1,-2],[2,-1],[2,1],[2,0],[7,4],[4,2],[4,1],[2,0],[3,-1],[1,-2],[1,-3],[1,-3],[1,-5],[0,-10],[0,-4],[0,-3],[0,-3],[0,-3],[-2,-4],[-3,-4],[-66,-57],[-2,-2],[-1,-3],[2,-9],[1,-6],[15,-38],[2,-3],[15,-16],[3,-1],[3,-1],[17,-1],[4,-1],[2,-3],[0,-3],[0,-2],[-1,-2],[-1,-1],[-6,-5],[-4,-4],[-1,-3],[-1,-3],[0,-4],[0,-3],[2,-2],[32,-4],[5,2],[4,2],[5,5],[1,4],[1,4],[0,4],[0,3],[-1,2],[-5,3],[-2,2],[0,3],[-1,3],[0,7],[1,3],[1,2],[11,21],[14,5],[30,5],[7,3],[4,4],[2,1],[3,0],[18,-4],[5,-3],[1,-7],[-2,-13],[0,-3],[1,-3],[3,-2],[3,-1],[3,-2],[1,-3],[2,-7],[1,-4],[0,-3],[-2,-2],[-2,0],[-6,-1],[-2,-1],[-2,-2],[-2,-2],[0,-4],[1,-4],[3,-4],[3,-2],[3,-2],[25,-3],[3,-1],[2,-3],[1,-6],[38,-68],[5,-6],[50,-39],[13,-16],[10,-17],[1,-4],[1,-7],[3,-24],[1,-12],[-1,-3],[-1,-4],[-15,-10],[-3,-2],[-2,-3],[-2,-7],[-3,-15],[-6,-15],[-5,-5],[-14,-3],[-8,2],[-5,4],[-2,2],[-2,1],[-3,-1],[-4,-4],[-2,-3],[0,-4],[0,-6],[1,-3],[-1,-3],[0,-3],[-2,-2],[-2,-2],[-2,-2],[-4,-2],[-3,0],[-4,0],[-20,8],[-25,-5],[-7,2],[-19,11],[-5,1],[-4,-4],[2,-7],[12,-13],[3,-11],[-1,-13],[-7,-26],[-7,-13],[-6,-10],[-16,-15],[-6,-3],[-25,4],[-5,-1],[-9,-4],[-4,-5],[-4,-7],[-2,-6],[4,-7],[5,0],[13,5],[5,-4],[3,-6],[3,-6],[3,-3],[3,-2],[3,-1],[2,-3],[2,-4],[0,-9],[0,-10],[0,-4],[-1,-4],[-3,-5],[-2,-2],[-3,-2],[-18,-4],[-2,-1],[-2,-2],[-16,-17],[-1,-4],[1,-5],[4,-10],[3,-2],[3,-1],[2,0],[3,1],[2,0],[2,-1],[1,-3],[1,-2],[1,-3],[0,-3],[-1,-5],[-1,-3],[-2,-3],[-5,-5],[-1,-4],[-1,-5],[2,-9],[1,-5],[2,-4],[1,-2],[3,-1],[6,-2],[6,-3],[2,-1],[2,-2],[1,-2],[2,-2],[0,-5],[-1,-7],[-9,-39],[-2,-11],[-1,-16],[-1,-5],[-2,-5],[-2,-6],[-11,-21],[-1,-3],[-11,-9],[-12,-3],[-58,-2],[-8,-3],[-2,-7],[3,-13],[5,-4],[23,-5],[7,1],[26,9],[7,0],[6,-1],[3,-9],[-3,-5],[-6,-5],[-15,-7],[-2,0],[-2,1],[-5,3],[-2,1],[-2,0],[-2,-1],[-8,-7],[-2,-2],[0,-2],[0,-7],[1,-4],[-1,-3],[-2,-8],[-9,-16],[-1,-4],[0,-5],[0,-7],[1,-9],[0,-3],[2,-3],[16,-16],[6,-5],[5,-1],[11,1],[4,-2],[5,-5],[4,-7],[2,-9],[-3,-14],[-8,-24],[-1,-3],[-3,-5],[-5,-2],[-32,-7],[-2,-1],[-2,-2],[-16,-28],[-3,-7],[-1,-3],[-1,-4],[0,-5],[1,-8],[1,-4],[1,-3],[2,-5],[4,-9],[0,-1],[0,-8],[-9,-20],[0,-7],[-2,1],[-6,-2],[34,-7],[36,23],[8,1],[16,-4],[12,-7],[-5,-7],[-4,-9],[-2,-9],[3,-9],[19,-29],[28,-42],[4,-15],[0,-7],[0,-7],[0,-1],[0,-2],[0,-1],[-1,-15],[-1,-7],[-2,-8],[-1,-10],[4,-15],[-2,-6],[-3,-7],[-2,-9],[0,-11],[2,-8],[10,-13],[2,-8],[-1,-15],[3,-19],[12,-14],[14,-9],[11,-3],[12,0],[5,-2],[5,-5],[10,-18],[3,-11],[0,-13],[-3,-7],[-6,-5],[-15,-5],[-8,-9],[-2,-16],[2,-39],[-1,-4],[0,-3],[0,-2],[6,-8],[1,-6],[-1,-19],[0,-4],[3,-1],[4,-2],[2,-3],[0,-4],[-1,-10],[0,-7],[-1,-24],[-16,-4],[-5,0],[-6,3],[-10,6],[-5,3],[-10,0],[-7,-4],[-3,-11],[2,-20],[17,-1],[4,-3],[1,-9],[0,-13],[-1,-13],[-2,-7],[10,-7],[5,-5],[4,-8],[9,-21],[4,-6],[6,0],[10,8],[8,11],[14,29],[7,7],[8,-2],[9,-5],[8,-2],[9,0],[2,-2],[3,-6],[2,-7],[2,-27],[6,1],[14,9],[7,1],[3,-2],[6,-7],[2,-2],[5,-1],[4,1],[10,5],[7,8],[3,8],[-2,24],[1,11],[3,10],[5,8],[5,3],[55,-7],[7,-2],[5,-3],[5,-6],[16,-37],[6,-10],[8,-3],[7,2],[7,4],[3,9],[-1,15],[-4,10],[-8,3],[-9,2],[-7,4],[-5,5],[0,3],[0,7],[0,6],[1,6],[2,6],[6,15],[1,6],[-2,5],[-7,7],[-9,7],[-3,6],[-1,8],[5,4],[31,-5],[9,-7],[10,-13],[9,-16],[4,-17],[3,-6],[12,-5],[4,-9],[-1,-7],[-10,-26],[25,-11],[27,-12],[0,-2],[-1,-3],[-1,-2],[-3,-8],[-3,-1],[-4,1],[-5,0],[-1,-2],[-2,-7],[-1,-2],[-3,0],[-8,4],[-3,-2],[-1,-6],[1,-8],[1,-5],[5,-9],[7,-7],[4,-8],[-3,-13],[-7,-20],[-3,-11],[0,-9],[5,-7],[9,-2],[9,1],[6,4],[11,17],[7,15],[4,4],[4,-1],[29,-14],[7,4],[-2,19],[-5,16],[-5,12],[-7,6],[-10,1],[-24,-7],[-2,4],[2,10],[3,11],[2,7],[13,16],[14,3],[37,-5],[35,-5],[16,3],[4,-3],[3,-7],[2,-10],[1,-21],[13,-8],[3,-7],[2,-16],[6,-7],[35,-10],[47,-13],[4,1],[2,5],[0,6],[1,6],[2,2],[9,-1],[3,-1],[3,-4],[6,-9],[4,-1],[7,2],[3,4],[1,7],[0,13],[2,10],[16,5],[5,8],[-1,7],[-2,6],[-1,5],[3,3],[15,4],[4,-2],[1,-2],[1,-11],[2,-2],[16,5],[-12,-87],[-4,-15],[-6,-7],[-8,-2],[-41,10],[-8,-1],[-7,-5],[-6,-8],[-5,-12],[13,-11],[-25,-12],[-5,-7],[-7,-49],[-12,-3],[-5,-3],[-4,-7],[-3,-11],[2,-7],[9,-14],[-8,-18],[45,-29],[-12,-34],[17,-16],[4,1],[28,33],[6,8],[2,5],[3,6],[2,9],[1,6],[2,3],[5,2],[2,1],[7,-2],[2,2],[1,3],[0,5],[2,9],[0,5],[0,3],[2,1],[22,-1],[4,-1],[10,-7],[4,2],[20,19],[8,4],[9,0],[11,-2],[19,-3],[4,-3],[1,-9],[0,-11],[0,-9],[4,-4],[9,0],[3,2],[5,14],[3,2],[18,-1],[3,-1],[3,-7],[2,-8],[2,-6],[6,-2],[-2,-13],[2,-8],[10,-13],[15,-14],[8,-3],[6,9],[13,51],[-1,4],[-3,5],[-5,6],[-1,4],[2,28],[3,11],[4,6],[45,-2],[3,3],[5,27],[3,7],[2,4],[3,1],[14,1],[3,4],[2,8],[3,16],[3,8],[2,4],[10,4],[23,-1],[10,-3],[21,-13],[7,0],[36,32],[34,29],[43,39],[-20,40],[19,17],[10,6],[10,1],[28,-4],[11,2],[31,18],[31,17],[49,28],[40,22],[-4,13],[0,9],[2,9],[4,10],[6,9],[6,3],[55,-17],[12,4],[17,15],[7,3],[4,0],[8,-1],[5,1],[5,6],[1,9],[0,11],[2,11],[5,8],[8,2],[16,-2],[7,1],[19,12],[6,2],[6,0],[4,-5],[-2,-12],[-5,-6],[-22,-7],[-5,-4],[-6,-7],[-3,-8],[3,-6],[14,-5],[5,-6],[3,-13],[-2,-14],[-5,-11],[-5,-9],[-5,-10],[-4,-16],[-2,-6],[-3,-5],[-7,-8],[-3,-5],[-14,-20],[-17,0],[-35,16],[-18,1],[-5,-2],[-5,-4],[-1,-4],[29,-58],[2,-7],[3,-21],[8,-17],[24,-23],[34,-32],[52,-50],[51,-49],[52,-49],[51,-49],[38,-36],[34,-46],[37,-49],[30,-58],[19,-40],[30,-63],[30,-64],[30,-64],[30,-64],[40,-89],[39,-90],[39,-89],[40,-90],[29,-69],[30,-70],[30,-69],[29,-70],[25,-67],[25,-66],[25,-67],[25,-67],[12,-34],[15,-40],[8,-29],[3,-9],[7,-12],[8,-12],[10,-8],[8,0],[-15,31],[-4,17],[9,8],[5,-4],[10,-14],[5,-3],[6,1],[3,6],[4,18],[4,8],[4,4],[11,6],[2,3],[4,7],[3,3],[3,1],[12,-2],[11,3],[11,8],[11,13],[5,19],[1,9],[1,10],[0,10],[-1,8],[-3,8],[-8,11],[-3,7],[-1,7],[0,10],[1,18],[3,11],[3,7],[5,4],[7,1],[23,-4],[11,3],[4,14],[0,9],[2,9],[3,7],[4,6],[5,6],[5,1],[37,-22],[8,-2],[3,4],[3,6],[5,5],[6,-1],[3,-7],[0,-20],[2,-10],[4,-6],[11,-8],[12,-8],[7,-2],[7,-1],[8,11],[4,2],[5,0],[6,-5],[1,-7],[0,-9],[-3,-12],[-18,-58],[-8,-34],[0,-8],[2,-5],[5,-3],[7,-3],[15,1],[33,14],[35,-2],[0,-20],[4,-19],[6,-16],[8,-15],[-6,-11],[-5,-14],[-2,-14],[3,-12],[8,-6],[60,3],[6,5],[8,16],[5,6],[5,0],[11,-9],[6,-2],[20,5],[14,-3],[12,-5],[7,-5],[16,-19],[7,-5],[14,-3],[7,1],[7,3],[5,6],[6,8],[5,6],[5,-1],[4,-3],[4,2],[3,3],[4,3],[4,-1],[3,-3],[3,-2],[13,4],[6,-4],[12,-15],[36,30],[19,12],[7,12],[1,38],[7,11],[10,4],[23,-9],[36,-5],[13,5],[10,15],[8,19],[6,22],[2,2],[3,0],[3,0],[7,-4],[5,-1],[4,1],[5,2],[31,6],[30,-6],[8,-15],[4,-6],[6,-5],[31,-7],[7,-4],[16,-19],[6,-5],[5,-1],[13,0],[6,-3],[6,-4],[5,-6],[8,-20],[4,-5],[11,-6],[8,-11],[0,-35],[7,-18],[35,-32],[9,-15],[2,-11],[1,-9],[2,-7],[9,-14],[3,-9],[1,-10],[-6,-30],[4,-17],[7,-17],[6,-19],[1,-12],[-1,-13],[0,-11],[3,-11],[3,-3],[9,-3],[3,-3],[2,-4],[4,-9],[2,-3],[10,-1],[10,10],[10,8],[10,-10],[8,-12],[8,-8],[10,-3],[10,1],[10,-1],[7,-9],[6,-10],[9,-8],[5,-1],[9,2],[5,-3],[3,-5],[7,-21],[4,-3],[4,2],[5,4],[4,3],[7,-1],[18,-11],[3,-5],[9,-19],[2,-7],[0,-9],[-5,-3],[-12,-3],[-1,-1],[-2,0],[-1,-32],[1,-15],[6,-7],[16,-5],[6,-6],[4,-13],[2,-20],[1,-8],[5,-10],[18,-27],[6,-16],[3,-44],[8,-17],[11,-7],[11,4],[4,5],[6,5],[7,4],[5,0],[7,-3],[12,-12],[7,-3],[10,2],[5,2],[5,3],[9,10],[4,4],[5,-2],[4,-6],[4,-16],[4,-7],[4,-2],[5,1],[10,6],[6,0],[5,-4],[4,-6],[4,-8],[4,-2],[5,2],[10,9],[5,3],[5,1],[12,-3],[0,-4],[-3,-23],[0,-10],[4,-6],[5,-2],[5,3],[4,5],[9,13],[12,6],[11,-4],[7,-15],[11,-16],[11,18],[9,30],[7,19],[16,14],[17,9],[19,22],[4,3],[2,4],[0,5],[-1,6],[-1,6],[13,10],[1,2],[4,5],[2,2],[2,0],[1,-1],[2,1],[6,10],[3,11],[4,8],[9,-1],[11,-8],[5,0],[8,2],[5,0],[3,-2],[0,-6],[-2,-7],[-2,-6],[-2,-5],[1,-7],[3,-6],[7,-9],[-6,-8],[-5,-5],[-6,-3],[-13,-2],[-6,-5],[-10,-19],[-4,-10],[-1,-8],[2,-8],[5,-9],[7,-5],[6,0],[12,4],[7,-3],[19,-15],[6,-8],[0,-9],[-3,-11],[0,-13],[4,-9],[8,-7],[14,-9],[7,-8],[0,-5],[-4,-6],[-3,-10],[2,-7],[5,-8],[19,-20],[3,-5],[2,-4],[0,-8],[2,-5],[3,-4],[4,-2],[7,-1],[24,3],[8,-2],[8,-5],[14,-14],[5,-11],[6,-39],[4,-16]],[[74256,77269],[-34,13],[-11,8],[-12,4]],[[74199,77294],[-1,-1],[0,1],[-39,-21]],[[74159,77273],[-8,1],[-16,7],[-8,-1],[-6,-6],[-6,-20],[-5,-9]],[[74110,77245],[-11,-12],[-4,-7]],[[74095,77226],[-5,-10],[-3,-11]],[[74087,77205],[-2,-9],[1,-10]],[[74086,77186],[2,-13]],[[74088,77173],[6,-19],[9,-11]],[[74103,77143],[5,-11],[-7,-17]],[[74101,77115],[-6,-9],[-1,-5]],[[74094,77101],[0,-6],[3,-24],[0,-8],[-2,-6],[-21,-39],[-13,-17]],[[74061,77001],[-5,-7],[-3,-9]],[[74053,76985],[-5,-19],[-3,-7],[-5,-6],[-32,-17],[-27,2],[-7,-4],[-6,-7],[-11,-18],[-15,-11],[-52,7],[-62,-13],[-10,-9],[-8,-18]],[[73810,76865],[-37,-121],[-7,-61],[-4,-21],[-5,-15],[-3,-12],[0,-13]],[[73754,76622],[22,-165],[0,-18],[-4,-38],[1,-17],[4,-16],[20,-44],[2,-12],[-1,-10],[-2,-11],[1,-9],[2,-10],[0,-9],[-3,-18],[-1,-12],[-1,-8]],[[73794,76225],[-4,-5],[-12,-2]],[[73778,76218],[-7,-3],[-6,-5]],[[73765,76210],[-3,-10],[0,-10]],[[73762,76190],[-2,-9],[-2,-7],[-4,-8],[-2,-10],[-1,-10],[-2,-7],[-18,1]],[[73731,76140],[-1,0],[-35,-8]],[[73695,76132],[-16,3],[-6,-2]],[[73673,76133],[-6,-4],[-3,-6]],[[73664,76123],[-7,-17],[-6,-8],[-19,-19],[-8,-13]],[[73624,76066],[-4,-3],[-12,-4]],[[73608,76059],[-4,-3],[-5,-6],[-6,-17],[-6,-6],[-21,-6],[-20,-12],[-8,-2],[-5,4],[-1,8],[2,8],[4,9],[3,9],[1,20],[-6,16],[-9,13],[-10,7],[-13,2],[-26,-9],[-13,3],[-15,10],[-4,0]],[[73446,76107],[-1,0],[-4,0]],[[73441,76107],[0,-1],[-34,4],[-30,-3],[0,-1],[-18,-14],[-7,-1],[-19,5]],[[73333,76096],[-1,0],[-25,0]],[[73307,76096],[-106,52],[-48,43],[-11,7],[-25,8],[-6,5],[-14,17],[-7,3],[-7,1]],[[73083,76232],[-1,0],[-7,0]],[[73075,76232],[-7,-2],[-7,-5],[-2,-7],[0,-22]],[[73059,76196],[-1,-6],[-3,-12],[-1,-6],[1,-6]],[[73055,76166],[2,-11]],[[73057,76155],[-1,-6],[-4,-21]],[[73052,76128],[-1,-11],[1,-11],[1,-9],[0,-10],[-2,-9],[-41,-116],[-25,-133],[-7,-20],[-4,-13],[-2,-10],[-3,-30]],[[72969,75756],[-5,-17],[-18,-42]],[[72946,75697],[-11,-33],[-7,-36]],[[72928,75628],[-8,-77],[-7,-51]],[[72913,75500],[-4,-16],[-8,-26],[-20,-51]],[[72881,75407],[-11,-55],[-8,-29]],[[72862,75323],[-4,-28],[10,-22],[10,-6],[42,-9],[28,-17],[5,-11],[1,-20],[-1,-22],[-5,-51],[-8,-40],[-13,-29]],[[72927,75068],[-18,-4],[-13,11]],[[72896,75075],[-24,38],[-13,13],[-13,2]],[[72846,75128],[-1,0],[-15,-5],[-53,-38],[-14,-5],[-11,7]],[[72752,75087],[-5,9],[-4,4],[-19,4],[-4,4],[-1,7],[-1,13],[-1,19],[-5,23],[-7,17],[-10,1],[-11,5]],[[72684,75193],[-12,-8],[-22,-23]],[[72650,75162],[-111,-49],[-22,-18]],[[72517,75095],[-12,-6],[-12,0]],[[72493,75089],[-34,-19],[-7,-1],[-23,10],[-14,0],[-44,-24],[-19,3]],[[72352,75058],[-1,0],[-6,-1],[-5,-7]],[[72340,75050],[-6,-19],[-4,-6]],[[72330,75025],[-7,-2],[-20,2]],[[72303,75025],[-1,0],[-20,-11],[-19,4]],[[72263,75018],[-13,-1],[-11,-7]],[[72239,75010],[-11,-14],[0,-1],[-27,-34],[-13,-9],[-6,-6],[-4,-17],[7,-13]],[[72185,74916],[34,-31],[14,-2]],[[72233,74883],[49,15],[8,-1],[5,-4],[14,-16],[45,-25]],[[72354,74852],[4,-4],[2,-7]],[[72360,74841],[-2,-7],[-4,-5],[-18,-6],[-10,-6]],[[72326,74817],[-6,-11],[0,-6]],[[72320,74800],[1,-5],[5,-9],[2,-7]],[[72328,74779],[-1,-7],[-4,-12]],[[72323,74760],[-8,-42],[-2,-23],[1,-19]],[[72314,74676],[11,-82],[0,-22],[-7,-40],[-2,-21]],[[72316,74511],[1,-10],[5,-8]],[[72322,74493],[9,-13],[3,-9]],[[72334,74471],[1,-10],[1,-10]],[[72336,74451],[0,-11],[3,-12],[5,-13],[10,-21],[33,-126],[33,-125],[-1,-18]],[[72419,74125],[-5,-18],[-14,-38]],[[72400,74069],[4,-8],[11,-4]],[[72415,74057],[11,-8]],[[72426,74049],[3,-8],[1,-3]],[[72430,74038],[2,-7]],[[72432,74031],[0,-10],[1,-11]],[[72433,74010],[1,-11],[7,-17],[1,-11]],[[72442,73971],[-2,-12],[-4,-8],[-5,-5]],[[72431,73946],[-6,-2],[-6,2],[-14,16],[-11,1]],[[72394,73963],[-1,0],[-11,-9]],[[72382,73954],[-22,-24],[-24,-15],[-12,-11],[-4,-16]],[[72320,73888],[5,-14],[10,-11]],[[72335,73863],[19,-14],[13,-2]],[[72367,73847],[5,-5],[4,-10]],[[72376,73832],[-2,-11],[-6,-6],[-14,-2],[-21,-12],[-5,-7]],[[72328,73794],[-14,-7],[-4,-1]],[[72310,73786],[-10,4],[-5,0],[-4,-4],[-6,-14],[-6,-33],[-5,-17],[-10,-23],[-2,-8]],[[72262,73691],[-2,-12],[2,-9]],[[72262,73670],[2,-9],[3,-22],[3,-8],[7,-16],[3,-10]],[[72280,73605],[0,-6],[-1,-8]],[[72279,73591],[-3,-10],[0,-7]],[[72276,73574],[6,-44],[2,-9]],[[72284,73521],[3,-8],[4,-8],[5,-40],[-2,-12],[-3,-7],[-11,-8],[2,-9],[1,-18],[1,-9],[3,-8]],[[72287,73394],[3,-7],[3,-8]],[[72293,73379],[0,-10],[-7,-18],[-14,-7],[-69,2]],[[72203,73346],[-1,0],[-14,-6]],[[72188,73340],[-10,-6]],[[72178,73334],[-5,-6],[-3,-8]],[[72170,73320],[-3,-10],[-3,-20]],[[72164,73290],[-3,-10],[-10,-14],[-12,-3]],[[72139,73263],[-13,1],[-12,-5],[-16,-17],[-18,-10],[-22,-22]],[[72058,73210],[-6,-4],[-6,0]],[[72046,73206],[-17,9]],[[72029,73215],[-1,0],[-6,-3]],[[72022,73212],[-5,-5],[-13,-18]],[[72004,73189],[-6,-7]],[[71998,73182],[-6,-3],[-13,-5],[-11,-7],[-31,-33]],[[71937,73134],[-17,-5],[-5,-4],[-25,-27],[-37,-22]],[[71853,73076],[-4,-3],[-4,-5],[-2,-6],[-2,-14],[-3,-5],[-10,-7],[-20,-6],[-26,-30],[-11,-8],[-5,-5],[-4,-8]],[[71762,72979],[-1,-1],[-1,-10],[5,-21]],[[71765,72947],[1,-10],[-3,-10],[-5,-6],[-11,-10],[-4,-7],[-7,-16],[-13,-37],[-4,-9],[-4,-6],[-28,-37],[-5,-3],[-6,1],[-10,8],[-37,8],[-10,-1],[-9,-5],[-37,-29],[-4,-3],[-5,0],[-14,1],[-22,-9],[-8,0],[-8,7],[-15,10],[-16,5],[-9,-1],[-16,-8],[-34,4],[-9,4],[-15,11],[-7,3]],[[71391,72802],[-1,0],[-29,-11]],[[71361,72791],[-11,-7]],[[71350,72784],[-8,-11],[-4,-8],[-10,-12]],[[71328,72753],[-5,-7],[-2,-10]],[[71321,72736],[1,-11],[2,-11],[1,-11]],[[71325,72703],[-3,-11],[-4,-7]],[[71318,72685],[-11,-9],[-9,-13]],[[71298,72663],[-8,-17],[-4,-20]],[[71286,72626],[-2,-56],[-1,-9],[-3,-8],[-15,-17],[-7,-17],[-9,-39],[-6,-16],[-8,-12],[-24,-24],[-9,-13],[-4,-3],[-4,7],[-5,34],[-2,10],[-8,4]],[[71179,72467],[-1,0],[-8,-14],[-8,-18]],[[71162,72435],[-9,-9],[-5,2],[-11,9],[-5,2],[-7,-1],[-25,-18]],[[71100,72420],[-4,-8],[-3,-9],[-4,-10]],[[71089,72393],[-6,-5]],[[71083,72388],[-6,-2],[-6,0]],[[71071,72386],[-18,7],[-6,1],[-6,-1]],[[71041,72393],[-13,-9],[-6,0]],[[71022,72384],[-4,7],[-3,10],[-4,25],[-1,10],[2,11],[4,7],[3,8],[-1,10],[-2,6],[-8,11],[-3,7],[-2,10],[-2,32],[-5,23],[-8,12],[-10,0],[-11,-10],[-61,-75],[-3,-2],[-3,-1]],[[70900,72485],[-4,-2],[-1,-5]],[[70895,72478],[-1,-5],[-2,-4],[-5,-2],[-5,3],[-6,6],[-5,3],[-7,-2],[-13,-9],[-7,-1],[-10,3],[-10,7],[-25,25],[-6,5],[-6,-1],[-4,-10],[-1,-6]],[[70782,72490],[-1,-2],[-2,-10]],[[70779,72478],[-3,-12],[-2,-11],[2,-8],[13,-19],[3,-7]],[[70792,72421],[2,-18],[-8,-4]],[[70786,72399],[-23,9],[-7,1],[-5,-3],[-14,-23],[-5,-5],[-11,-9],[-9,-10]],[[70712,72359],[-25,-42],[-29,-37]],[[70658,72280],[-10,-6],[-9,-2],[-8,2],[-10,5],[-9,4]],[[70612,72283],[-1,-1],[0,1],[-10,-2],[-9,-7]],[[70592,72274],[-9,-9],[-9,-6],[-18,-4]],[[70556,72255],[-8,-9],[-2,-6]],[[70546,72240],[-3,-7],[-1,-7],[-1,-8]],[[70541,72218],[-2,-13],[-4,-9]],[[70535,72196],[-6,-9],[-4,-11],[-2,-23]],[[70523,72153],[-1,-6],[-2,-5],[-8,-10]],[[70512,72132],[-4,-8],[-2,-10]],[[70506,72114],[-1,-11],[0,-11],[3,-11]],[[70508,72081],[3,-4],[5,-2]],[[70516,72075],[5,-5],[4,-9],[2,-12]],[[70527,72049],[1,-24],[7,-30]],[[70535,71995],[-2,-6],[-6,-6]],[[70527,71983],[-5,-5],[-3,-8]],[[70519,71970],[-3,-13],[-3,-19],[-3,-8],[-5,-4],[-52,-11]],[[70453,71915],[-8,6],[-26,5],[-9,-2],[-31,-11],[-7,-8],[-2,-8],[0,-8],[-2,-6],[-16,-5],[-28,-15],[-9,-1],[-10,5],[-5,3],[-3,2],[-4,-1],[-13,-11],[-4,-1],[-5,3],[-18,5],[-5,1],[-12,-4],[-5,0],[-51,21],[-5,0],[-4,-2],[-3,-4],[-6,-10],[-3,-3],[-4,0],[-7,7],[-4,2],[-4,-2],[-8,-15],[-5,-1],[-4,0],[-10,4],[-4,0],[-11,-8],[-6,-2],[-5,-2],[-3,-9],[-6,-30],[-12,-39],[-3,0],[-3,7],[-3,9],[0,5],[0,4],[-1,4],[-6,4],[-4,6],[-3,2],[-12,3],[-5,4],[-3,8],[0,12],[-2,14],[-3,12],[-5,6],[-5,-1],[-10,-9],[-10,-3],[-5,-4],[-27,-30],[-10,-6],[-10,-2],[-6,2],[-5,6],[-4,9],[-2,11],[1,12],[2,7],[4,5],[3,9],[1,11],[0,14],[-3,13],[-4,6],[-6,0],[-28,-9],[-13,1],[-12,8],[-6,19],[3,9],[7,16],[1,8],[-1,9],[-4,8],[-5,7],[-10,9],[-5,-1],[-9,-7],[-8,-2],[-3,-1],[-2,-3],[-4,-6],[-2,-2],[-9,-9],[-4,-4],[-9,-16],[-3,-3],[-4,0],[-15,5],[-12,-2],[-12,-4],[-9,-10],[-6,-15],[-4,-18],[-5,-16],[-9,-7],[-7,4],[-7,6],[-6,5],[-5,-4],[-4,-6],[-2,-2],[-3,1],[-4,0],[-3,-2],[-9,-7],[-7,-2],[-9,3],[-7,6],[-4,12],[0,7],[1,7],[1,8],[-2,7],[-2,4],[-7,4],[-3,4],[-6,27],[-3,12],[-7,8],[-5,1],[-10,-3],[-5,1],[-4,3],[-6,9],[-4,2],[-4,-1],[-9,-5],[-5,-2],[-3,-1],[-1,-3],[-2,-3],[-1,-2],[-3,0],[-6,3],[-3,0],[-3,-2],[-25,-28],[-5,-2],[-5,3],[0,8],[3,20],[-1,9],[-1,11],[-2,5],[-5,-5],[-7,-26],[-3,-5],[-4,-2],[-5,2],[-9,8],[-6,3],[-6,0],[-6,-3],[-4,-7],[-5,-9],[-2,-3],[-8,6],[-12,2],[-21,-7],[-11,5],[-12,10],[-11,6],[-11,2],[-24,-2],[-5,-3],[-9,-13],[-5,-4],[-5,-3],[-5,-1],[-6,0],[-12,-3],[-6,3],[-7,10],[-2,2],[-2,-2],[-1,-3],[-1,-5],[-2,-4],[-11,-7],[-3,14],[1,66],[-1,10],[-2,10],[-4,7],[-5,7],[-4,7],[-2,10],[1,22],[3,21],[13,60],[5,18],[1,6],[0,3],[1,1],[4,-1],[8,-14],[14,-35],[26,14],[0,8],[-6,18],[0,4],[0,3],[-1,4],[-1,3],[-2,18],[1,14],[5,12],[6,13],[0,4],[2,10],[1,2],[2,-1],[3,-9],[2,-2],[4,-1],[5,1],[109,60],[10,-2],[40,-39],[6,-3],[14,1],[6,-1],[6,-4],[4,-7],[3,-8],[5,-7],[5,-4],[10,-2],[10,-7],[22,-6],[7,-3],[7,-7],[3,-10],[-4,-12],[-5,-5],[-4,-3],[-5,-5],[-3,-8],[-3,-10],[-1,-10],[2,-7],[6,-4],[3,5],[2,13],[2,4],[3,3],[12,1],[6,3],[6,5],[4,8],[4,10],[2,19],[0,17],[1,15],[8,10],[18,10],[3,3],[11,14],[2,4],[1,1],[1,0],[2,-1],[1,-1],[0,-1],[5,4],[2,3],[4,2],[14,-5],[9,4],[9,11],[5,13],[-6,14],[10,16],[16,4],[33,-7],[8,1],[4,9],[3,13],[4,10],[4,2],[3,-4],[2,-6],[3,-5],[4,-2],[5,-1],[8,2],[6,-1],[9,-13],[12,-6],[3,-6],[2,-8],[5,-8],[6,-6],[6,-3],[13,-4],[7,1],[3,6],[0,10],[2,10],[5,7],[5,-6],[4,-13],[2,-11],[0,-23],[2,-8],[5,-4],[4,2],[15,13],[4,6],[3,8],[5,18],[9,13],[10,1],[11,-4],[11,-2],[3,2],[2,0],[2,0],[3,-3],[5,-1],[4,2],[1,6],[-1,4],[-4,4],[-8,6],[-5,6],[-2,8],[1,8],[24,19],[8,11],[4,15],[1,11],[3,5],[18,16],[5,2],[15,1],[5,-1],[3,-3],[-2,-6],[-4,-2],[-4,0],[-3,-2],[-2,-5],[4,-2],[12,1],[4,-2],[17,-15],[7,-4],[7,2],[5,12],[3,14],[1,13],[-3,11],[-12,13],[-3,5],[0,6],[2,9],[0,10],[-6,16],[1,9],[8,6],[10,-13],[9,-16],[8,-6],[10,-2],[20,-21],[11,1],[4,5],[3,7],[1,8],[1,8],[2,9],[5,0],[10,-7],[8,6],[3,37],[7,16],[10,6],[20,8],[24,22],[26,15],[13,11],[8,18],[-1,11],[-9,3],[-16,-2],[-6,6],[-3,8],[-5,5],[-20,-15],[-13,-13],[-4,-1],[1,9],[-1,17],[-11,4],[-36,-5],[-12,2],[-11,7],[-8,15],[-12,28],[-5,3],[-7,1],[-5,4],[0,12],[0,4],[0,3],[-1,2],[-1,2],[-15,2],[-8,3],[-6,6],[-8,19],[-3,4],[-5,-7],[-2,-4],[-3,-14],[-2,-3],[-10,-2],[-25,-11],[4,13],[2,10],[0,11],[-3,29],[0,16],[-1,15],[-4,10],[-7,7],[-6,-2],[-7,-6],[-6,-8],[-8,-8],[-5,4],[-4,9],[-7,9],[-22,-6],[-7,5],[-2,23],[1,24],[-2,18],[-4,17],[-26,59],[-2,3],[-3,1],[-2,-2],[0,-12],[-2,-3],[-3,2],[-1,9],[-3,2],[-1,-3],[-1,-7],[-2,-4],[-3,1],[0,7],[5,31],[0,12],[-1,11],[-4,7],[-6,2],[-6,-4],[-3,-6],[-3,-11],[4,-28],[4,-7],[1,-10],[-2,-11],[-4,-19],[-9,-30],[-7,-12],[-10,-3],[-12,8],[-13,19],[-4,1],[-2,-7],[3,-96],[-2,-19],[-6,-8],[-19,24],[-7,-13],[-3,-11],[-4,0],[-3,6],[-3,7],[-3,21],[-3,7],[-7,1],[-6,-5],[-1,-8],[2,-9],[0,-12],[-2,-11],[-5,5],[-7,17],[-4,6],[-11,2],[-5,4],[-5,7],[-7,4],[-13,4],[-12,-3],[-5,1],[-5,8],[-4,8],[-5,7],[-5,5],[-5,3],[-6,0],[-6,-4],[-4,-1],[-4,7],[0,10],[4,34],[-1,12],[-2,11],[-16,41],[-4,9],[-6,5],[-9,-2],[-34,-30],[-10,-5],[-6,0],[-5,6],[-6,19],[-4,8],[-5,7],[-10,9],[-1,0],[-39,7],[-10,8],[-5,18],[6,14],[45,40],[16,20],[9,6],[9,9],[6,14],[8,26],[13,22],[27,35],[9,8],[27,4],[10,6],[3,9],[1,32],[5,20],[11,5],[14,-1],[11,4],[39,44],[23,10],[11,11],[4,20],[-10,5],[-39,42],[-9,5],[-9,-2],[-3,-3],[-15,-19],[-9,-11],[-10,-11],[-5,-4],[-5,-4],[-5,-2],[-6,-1],[-6,3],[-7,3],[-3,-1],[-3,0],[-2,-4],[-2,-4],[-1,-5],[-1,-5],[-2,-4],[-1,-4],[-4,-6],[-4,-7],[-3,-9],[-4,-10],[-2,-10],[-3,-10],[-3,-8],[-3,-8],[-4,-3],[-4,-3],[-4,0],[-3,1],[-3,2],[-3,1],[-2,4],[-2,3],[-1,5],[-1,5],[-1,4],[-1,4],[-2,3],[-2,4],[-3,3],[-3,2],[-2,1],[-2,1],[-13,-9],[-14,-9],[-6,-8],[-6,-7],[-3,-12],[-4,-11],[-1,-5],[-1,-5],[-1,-3],[-2,-3],[-2,-1],[-3,-2],[-2,-1],[-3,-2],[-2,-2],[-2,-2],[-2,-3],[-2,-3],[-10,-24],[-9,-25],[-4,-6],[-3,-6],[-12,-13],[-11,-13],[-8,-4],[-8,-4],[-2,-3],[-2,-2],[-2,-5],[-2,-4],[-4,-7],[-5,-8],[-5,-4],[-6,-3],[-16,-1],[-15,-1],[-19,-8],[-18,-8],[-3,-2],[-2,-3],[-4,-7],[-4,-7],[-14,-17],[-14,-17],[-8,-3],[-8,-4],[-4,-4],[-4,-4],[-1,-7],[-2,-8],[0,-3],[1,-3],[2,-6],[2,-6],[1,-3],[0,-3],[-2,-2],[-1,-1],[-9,2],[-8,3],[-2,-1],[-2,-1],[-6,-5],[-5,-6],[-2,0],[-2,0],[-4,2],[-4,2],[-2,-1],[-3,0],[-7,-8],[-8,-7],[-3,-5],[-4,-5],[-1,-6],[-1,-5],[-3,1],[-3,2],[-2,-2],[-3,-1],[-6,-5],[-7,-4],[-1,-2],[-1,-1],[-1,-2],[0,-2],[0,-2],[1,-3],[1,-2],[1,-3],[1,0],[0,-1],[1,-1],[0,-1],[1,-3],[0,-4],[0,-4],[0,-5],[-2,-26],[-2,-27],[-1,-3],[-1,-3],[-3,-4],[-2,-3],[-5,-5],[-5,-5],[-5,-4],[-5,-3],[-6,-2],[-6,-1],[-2,-1],[-3,-2],[-2,-3],[-2,-4],[-3,-9],[-4,-9],[-9,-6],[-10,-6],[-4,-7],[-3,-7],[-6,-22],[-5,-22],[-2,-5],[-3,-5],[-9,-6],[-2,-2],[-6,-4],[-4,-4],[-4,-4],[-2,-6],[-1,-7],[-1,1],[-2,1],[-1,1],[-1,0],[0,1],[0,-3],[0,-3],[0,-6],[0,-7],[0,-2],[0,-3],[-1,-3],[-1,-3],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,-4],[0,-5],[1,-23],[2,-23],[1,-5],[1,-6],[1,-2],[1,-2],[1,-1],[2,-1],[3,-2],[4,-1],[-1,-3],[0,-4],[1,-3],[0,-4],[1,-3],[1,-4],[1,-3],[2,-3],[-1,-2],[0,-2],[-3,-8],[-4,-8],[3,-3],[3,-2],[-1,-3],[-1,-4],[-3,-3],[-3,-2],[-4,0],[-3,1],[-6,4],[-6,5],[-1,0],[-2,0],[-1,-1],[-1,-1],[-1,-3],[-1,-2],[-1,-2],[-1,-2],[-2,0],[-2,0],[-2,-2],[-2,-3],[0,-1],[0,-2],[-33,26],[-22,18],[-11,9],[-9,11],[-10,11],[-12,19],[-13,19],[-4,4],[-4,4],[-6,1],[-5,2],[-1,1],[-1,1],[0,2],[1,2],[1,2],[1,2],[5,3],[5,4],[2,2],[2,3],[3,4],[2,3],[1,4],[2,3],[2,8],[2,7],[2,9],[2,9],[1,9],[2,10],[0,8],[0,8],[-1,3],[-1,3],[-1,1],[-1,2],[-1,1],[-1,1],[1,1],[1,0],[4,4],[3,4],[-1,0],[0,1],[-1,0],[-2,1],[1,3],[0,2],[0,1],[-1,6],[0,6],[-3,0],[-3,-1],[-2,-6],[-2,-6],[-1,3],[-2,3],[-2,0],[-1,0],[-2,-1],[-2,-1],[-2,-2],[-1,-2],[-2,4],[-2,5],[-1,11],[-1,10],[-1,5],[-2,5],[-6,12],[-6,13],[-1,3],[-1,3],[-1,1],[-1,7],[-2,8],[-4,-3],[-3,-4],[-8,-8],[-8,-8],[-3,0],[-3,-1],[-3,2],[-3,1],[-6,5],[-5,5],[-4,1],[-3,1],[-35,-3],[-36,-3],[-23,-2],[-35,-3],[-30,-3],[-40,-4],[-28,-2],[-32,-3],[-11,4],[-5,2],[-7,3],[-6,11],[-6,12],[-12,82],[-12,81],[-9,69],[-9,69],[-4,70],[-5,70],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-33,0],[-2,0],[-29,0],[-30,0],[-33,0],[-2,2],[-1,1],[0,3],[0,3],[1,108],[0,92],[1,16],[0,4],[1,4],[3,2],[4,2],[1,5],[1,5],[1,14],[1,15],[6,138],[6,138],[-40,-32],[-40,-32],[-3,1],[-2,0],[-18,54],[-21,63],[-15,45],[-23,71],[-6,7],[-5,7],[-29,27],[-29,26],[-13,21],[-14,21],[-30,57],[-30,57],[-5,6],[-4,6],[-5,1],[-4,1],[-5,-3],[-5,-3],[-27,-22],[-28,-22],[-27,-21],[-28,-23],[-4,-2],[-5,-2],[-16,2],[-38,5],[-39,5],[-38,5],[-39,5],[-42,6],[-42,6],[-43,5],[-42,6],[-25,-6],[-26,-6],[-25,-6],[-25,-6],[-26,-6],[-25,-6],[-25,-6],[-26,-6],[-15,-4],[-16,-5],[-16,-4],[-15,-4],[-10,-3],[-10,-2],[-10,-3],[-10,-3],[-23,-6],[-6,4],[-5,3],[-21,35],[-16,26],[-15,26],[-16,26],[-16,26],[-16,27],[-16,26],[-16,27],[-15,27],[-20,32],[-15,24],[-15,24],[-30,46],[-2,3],[-17,38],[-2,13],[-2,29],[-2,13],[-5,15],[-7,11],[-17,17],[-25,23],[-33,31],[-40,39],[-47,44],[-51,48],[-54,52],[-55,52],[-56,53],[-55,52],[-51,50],[-48,45],[-18,17],[-8,275],[24,137],[77,143],[77,143],[70,100],[69,69],[67,22],[8,68],[27,37],[63,-7],[70,145],[26,93],[61,114],[68,23],[79,1],[53,-115],[34,-14],[41,-55],[41,-86],[-4,-24],[25,-10],[27,-6],[32,-21],[25,1],[117,116],[117,115],[117,115],[27,40],[-12,33],[-53,119],[-86,177],[-88,62],[-87,61],[7,54],[-7,41],[-35,12],[-12,-9],[-13,-9],[-42,15],[-60,96],[-21,64],[-26,11],[29,18],[28,5],[-53,120],[-4,25],[12,20],[36,-2],[-11,44],[13,48],[28,36],[14,58],[29,29],[29,-19],[26,13],[-6,70],[-55,111],[-44,120],[-25,131],[-27,-1],[-9,13],[-3,32],[20,54],[-38,52],[6,37],[9,16],[-39,39],[-34,-25],[-8,13],[-12,22],[-6,32],[-3,30],[-15,31],[-16,-15],[-40,-3],[-2,0],[-5,0],[5,-3],[-14,-5],[-13,-9],[-9,-15],[-6,-26],[-13,-93],[-2,-15],[-4,-50],[-5,-23],[-6,-17],[-9,-11],[-77,-34],[-77,-33],[-27,-5],[-116,17],[-16,10],[-10,10],[-9,12],[-6,16],[-1,21],[-4,20],[-15,7],[-17,-2],[-12,-5],[-3,-4],[-1,-4],[-12,-37],[-2,-10],[0,-11],[2,-19],[-2,-10],[-3,-7],[-8,-14],[-4,-7],[-12,-33],[-12,-16],[-13,-4],[-15,1],[-14,-3],[-9,-10],[-10,-12],[-8,-5],[-16,18],[-5,8],[1,8],[7,9],[16,-3],[7,4],[1,14],[-4,4],[-14,7],[-6,8],[-11,10],[-14,-1],[-27,-8],[-5,0],[-4,3],[-3,5],[-3,8],[-5,8],[-6,2],[-75,9],[-11,6],[-21,20],[-5,7],[-2,7],[-5,18],[-6,7],[-8,-1],[-8,-3],[-7,1],[-5,6],[-1,8],[2,21],[-2,6],[-14,-2],[-6,2],[-3,6],[-3,10],[-1,11],[3,7],[4,6],[4,7],[3,8],[2,10],[-2,24],[-9,14],[-12,7],[-34,1],[-6,4],[-1,6],[-1,7],[-1,8],[-3,7],[-9,11],[-4,5],[-11,-9],[-6,-2],[-6,-4],[-4,-10],[-2,-12],[-4,-10],[-6,-6],[-7,1],[-8,5],[-6,6],[-1,2],[0,3],[0,4],[-1,2],[-2,1],[-21,-5],[-4,-1],[-8,-5],[-2,1],[-5,8],[-2,3],[-4,2],[-15,0],[-4,1],[-13,10],[-8,-2],[-4,-12],[-5,-13],[-2,-21],[3,-37],[0,-18],[-5,-16],[-9,-7],[-26,11],[-11,1],[-6,-4],[-4,-8],[-3,-8],[-5,-8],[-6,-5],[-7,0],[-7,2],[-18,13],[-5,7],[-5,8],[-2,9],[-4,20],[-2,9],[-4,9],[-5,5],[-5,2],[-7,0],[-4,4],[-3,10],[-2,21],[-4,12],[-3,3],[-5,-2],[-18,-15],[-13,-4],[-24,4],[-7,-3],[-6,-4],[-8,-3],[-7,0],[-7,3],[-10,11],[-5,2],[-7,-1],[-5,-3],[-6,-5],[-4,-8],[1,-10],[5,-18],[2,-10],[-1,-6],[-5,-1],[-20,6],[-5,3],[-25,45],[-8,4],[-9,-9],[-4,-6],[-3,-7],[0,-8],[3,-16],[0,-8],[-5,-7],[-14,-3],[-4,-5],[-2,-21],[-2,-8],[-5,-7],[-8,-2],[-8,2],[-23,14],[-5,-2],[-3,-7],[-3,-13],[-10,-68],[-6,-12],[-41,-44],[-46,-33],[-20,-27],[-9,-5],[-12,12],[-9,15],[-4,6],[-13,7],[-3,7],[-2,9],[-4,9],[-7,6],[-7,3],[-7,-1],[-14,-5],[-5,0],[-5,2],[-7,5],[-61,74],[-7,14],[1,22],[-5,12],[-42,16],[-9,12],[-9,14],[-5,7],[-18,12],[-11,13],[-6,4],[-7,2],[-6,0],[-24,-10],[-5,-4],[-3,-6],[6,-21],[-3,-6],[-5,-3],[-4,-5],[7,-7],[16,-6],[15,-11],[3,-22],[-1,-5],[-5,-9],[0,-5],[0,-5],[5,-6],[1,-3],[0,-12],[-3,-21],[0,-11],[10,-41],[0,-17],[-8,-17],[-15,-17],[-12,-6],[-14,-4],[-6,1],[-6,6],[-6,6],[-10,17],[-4,12],[-1,11],[1,11],[7,25],[1,11],[1,25],[2,11],[15,26],[2,6],[1,5],[-1,6],[-2,4],[-4,3],[-12,3],[-3,3],[-5,6],[-3,3],[-22,5],[-7,5],[-4,8],[-4,7],[-4,7],[-11,8],[-5,6],[-8,13],[1,10],[-1,5],[-2,5],[-2,8],[-3,22],[-3,8],[-5,5],[-15,3],[-6,5],[-6,19],[-6,7],[-10,11],[-8,2],[-14,-3],[-51,20],[-7,9],[-2,10],[-4,7],[-9,12],[-2,9],[1,10],[0,9],[-5,8],[10,6],[2,4],[-2,9],[-3,5],[-12,10],[-28,15],[-4,5],[-6,13],[-3,6],[-11,5],[-6,5],[-7,-4],[-4,-1],[-21,4],[-2,-1],[-1,-2],[-2,-1],[-2,2],[-2,3],[-1,3],[-1,2],[-3,1],[-4,0],[-4,-1],[-1,-4],[2,-10],[-33,2],[-11,-6],[-3,-4],[-4,-5],[-4,-4],[-4,-2],[-4,2],[-7,5],[-6,1],[4,10],[-6,3],[-15,-2],[-3,2],[-6,8],[-3,2],[-4,-2],[-2,-4],[-1,-4],[-2,-2],[-7,-1],[-3,-2],[-2,-3],[-3,-4],[-3,-5],[-3,-3],[-2,5],[-24,2],[-6,-5],[-3,1],[-5,4],[-6,7],[-4,7],[-3,7],[-2,6],[-8,36],[-18,44],[-4,17],[-3,22],[-5,19],[-8,6],[-4,-5],[-3,-17],[-6,-6],[-8,-1],[-16,1],[-7,-5],[-4,-7],[-6,-18],[-6,-7],[-7,-2],[-8,-1],[-9,1],[-7,3],[-7,6],[-8,4],[-8,1],[-7,-4],[-6,-6],[-8,-16],[-15,-22],[0,-17],[5,-18],[-1,-21],[-10,-10],[-14,-11],[-13,-2],[-6,17],[-1,13],[-1,8],[-2,5],[-8,4],[-6,0],[-5,-6],[-3,-9],[-5,-9],[-15,-9],[-23,-5],[-20,3],[-9,11],[-3,7],[-4,9],[-3,8],[1,5],[27,6],[6,3],[4,6],[2,9],[0,12],[-3,11],[-5,4],[-12,0],[-6,4],[-3,5],[-7,15],[-5,3],[-6,-2],[-6,-4],[-6,-3],[-68,6],[-6,4],[-5,11],[-3,9],[-4,7],[-6,6],[-26,-2]],[[69458,95554],[137,0],[138,0],[137,0],[137,0],[138,0],[137,0],[138,0],[137,0],[138,0],[137,0]],[[70832,95554],[1,0],[14,0]],[[70847,95554],[130,0],[130,0],[130,0],[131,0],[130,0],[130,0],[130,0],[131,0],[130,0],[130,0],[130,0],[130,0],[131,0],[130,0],[130,0],[130,0],[0,275],[-1,275],[0,276],[-1,275],[-1,275],[0,276],[-1,275],[0,275],[-1,276],[0,275],[-1,275],[0,275],[0,229],[0,228],[0,228],[0,229],[-72924,228]],[[79928,77759],[-4,2],[-101,3],[-17,19]],[[79806,77783],[-7,-2],[-7,-5],[-8,-1]],[[79784,77775],[-9,5],[-8,7],[-13,18],[-4,4],[-9,5],[-3,4],[-3,6],[-2,13],[-2,6],[-2,4],[-6,8],[-2,5],[-4,21],[-3,5],[-10,7],[-41,46],[-12,9],[-25,11],[-30,5],[-30,-5],[-54,-21],[-6,1],[-6,5],[-11,11],[-7,4],[-22,3],[-3,3],[-1,4],[0,6],[0,5],[-1,3],[-15,16],[-8,2],[-15,0],[-13,4],[-14,8],[-7,2]],[[79383,78015],[-1,0],[-38,-4]],[[79344,78011],[-87,31]],[[79257,78042],[-14,-2],[-10,-9]],[[79233,78031],[-31,-33],[-7,-4],[-7,-3]],[[79188,77991],[-8,-1],[-32,5],[-9,-1]],[[79139,77994],[-7,-4],[-16,-14]],[[79116,77976],[-9,-3],[-25,0]],[[79082,77973],[-7,-3],[-11,-13],[-6,-5]],[[79058,77952],[-10,-3],[-28,2]],[[79020,77951],[-19,-7],[-8,-6]],[[78993,77938],[-8,-10],[-8,-10],[-14,-14]],[[78963,77904],[-6,-12],[-14,-21],[-21,-12],[-23,-4],[-18,5],[-36,20],[-16,0],[-33,-30],[-18,1],[-19,11],[-17,16],[-9,6],[-9,3]],[[78724,77887],[-1,0],[-27,-4]],[[78696,77883],[-8,4],[-7,9],[-4,17],[-10,29],[-20,7],[-44,-8],[-13,4],[-11,7],[-34,33],[-40,14],[-1,0],[-8,9],[-21,49],[-11,12],[-28,4],[-12,7],[-7,10],[-6,15],[-3,17],[2,16],[5,14],[7,12],[2,12],[-6,17],[-17,17],[-8,11],[-4,17],[3,15],[5,16],[2,15],[-6,14],[3,7],[1,8],[0,8],[-3,7],[-8,16],[-7,21],[-5,22],[-2,20],[2,19],[1,10],[-1,9],[-2,10],[-2,6],[0,5],[13,26],[4,11],[-3,9],[-26,23],[-4,6],[-7,5],[-21,2],[-5,3],[-10,11],[-5,2]],[[78306,78564],[-1,0],[-22,-2]],[[78283,78562],[-7,4],[-15,14],[-5,3],[-7,1]],[[78249,78584],[-1,0],[-14,-1]],[[78234,78583],[-21,11],[-12,3],[-12,-2],[-26,-12],[-11,0],[-9,7],[-10,16],[-11,13],[-11,3],[-12,0],[-11,4],[-14,14],[-119,77],[-19,7],[-17,12],[-83,0],[-31,7]],[[77805,78743],[-1,0],[-25,-4]],[[77779,78739],[-24,10],[-20,22],[-18,27],[-20,24],[-9,4],[-34,2],[-27,10],[-37,14],[-8,5],[-6,9],[-5,10],[-7,9],[-9,7],[-48,21],[-9,7],[-6,13],[-3,18],[-4,3],[-3,3],[1,9],[2,3],[0,4],[-2,14],[-1,4],[-1,4],[-2,2],[-2,1],[-2,1],[-2,0]],[[77473,78999],[-1,0],[-2,0]],[[77470,78999],[-2,-1],[-7,-6],[-3,-1],[-3,0],[-5,1],[-2,3],[-1,2],[-1,3],[1,2],[2,17],[0,7],[0,3],[-1,3],[-2,6],[-2,2],[-2,1],[-4,1],[-4,1],[-6,6],[-4,2],[-4,0],[-2,-1],[-2,-1],[-3,-4],[-1,-3]],[[77412,79042],[-3,-5],[-1,-3],[-3,-3]],[[77405,79031],[-4,3],[-1,5],[0,10],[1,7],[0,4],[4,11],[3,9],[2,9],[0,4],[0,4],[-12,20],[-1,5],[0,2],[1,1],[7,2],[4,2],[12,14],[1,3],[1,3],[0,2],[-1,3],[-1,5],[0,3],[1,2],[2,5],[1,1],[2,0],[2,-2],[5,0],[8,2],[1,1],[3,3],[4,9],[1,4],[0,2],[-1,2],[-1,2],[-5,5],[-1,4],[-1,4],[0,10],[1,5],[1,4],[1,3],[2,2],[2,1],[6,4],[2,2],[3,3],[3,7],[3,4]],[[77466,79251],[1,1],[2,-1]],[[77469,79251],[1,-2],[1,-2],[2,0],[3,1],[4,5],[1,5],[1,4],[0,10],[1,8],[0,7],[0,3],[-3,10],[0,5],[0,6],[2,12],[1,5],[-1,3],[-1,1],[-3,0]],[[77478,79332],[-3,0],[-8,-4]],[[77467,79328],[-2,0],[-3,1],[-1,2],[-1,3],[0,5],[0,4],[0,2],[-1,3],[-1,4],[1,3],[1,3],[20,40],[2,4],[3,2],[3,0],[3,-1],[2,-1],[2,-1],[3,-4],[3,-5],[3,-4],[4,-3],[4,-3],[10,-4],[19,-5]],[[77541,79373],[2,-1],[9,-9]],[[77552,79363],[2,-1],[3,0],[3,2],[1,3],[0,2],[-2,13],[0,4],[0,4],[1,5],[2,4],[4,8],[2,3],[1,8],[-72,45],[-2,2],[0,3],[0,4],[1,2],[2,6],[1,1],[2,1],[2,0],[3,3],[9,8],[2,2],[0,3],[-2,3],[-26,18],[-2,5],[-2,1],[-3,2],[-3,1],[-6,-1],[-3,-1],[-2,-3],[-1,-7],[-1,-3],[-5,0],[-45,17],[-3,0]],[[77413,79530],[-1,0],[-2,-1]],[[77410,79529],[-2,-1],[-1,-2]],[[77407,79526],[-15,-23],[-2,-1],[-2,-1]],[[77388,79501],[-14,4]],[[77374,79505],[-1,0],[-42,-4]],[[77331,79501],[-3,-2],[-5,-4]],[[77323,79495],[-2,-1],[-3,1],[-4,3],[-5,2],[-3,1],[-2,4],[-2,8],[-1,3],[0,3],[2,10],[0,3],[0,4],[-1,2],[-2,6],[0,2],[0,3],[1,3],[1,3],[2,4],[1,2],[0,2],[-1,3],[-2,2],[-3,1],[-16,0],[-2,1],[-2,3],[-2,2],[-2,3],[-3,2],[-27,4],[-10,-2],[-2,0],[-3,2],[-5,8],[-1,2],[-6,5],[-2,4],[-2,3],[0,2],[-1,3],[0,3],[0,4],[1,15],[0,3],[0,3],[-2,2],[-2,1]],[[77210,79642],[-5,0],[-7,-3]],[[77198,79639],[-3,0],[-7,3],[-6,4],[-13,1],[-22,7],[-9,0]],[[77138,79654],[-14,-5],[-5,-1]],[[77119,79648],[-3,1],[-4,2],[-4,5],[-1,3],[0,4],[1,15],[0,3],[0,3],[-1,3],[-2,2],[-2,2],[-3,2],[-21,5]],[[77079,79698],[-1,0],[-5,0]],[[77073,79698],[-2,1],[-3,1],[-2,4],[-1,4],[0,3],[0,4],[0,5],[-1,1],[-6,7],[-2,2],[-2,2],[-1,3],[0,3],[-2,8],[0,3],[-2,3],[-7,7],[-2,3],[-1,4],[-1,6],[-1,2],[-2,1],[-3,-1],[-4,-1],[-5,0],[-12,4],[-4,4],[-3,3],[-1,2],[-2,2],[-2,2],[-3,0],[-4,0],[-5,-2],[-3,-2]],[[76984,79786],[-3,-2],[-2,0]],[[76979,79784],[-2,3],[-5,7],[-11,10],[-3,2],[-10,3],[-3,2],[-1,1],[-1,2],[-1,3],[0,3],[-1,2],[-1,2],[-12,4],[-2,2],[-10,15],[-2,1],[-2,2],[-3,1]],[[76909,79849],[-19,-3],[-18,-7],[-4,-4]],[[76868,79835],[-2,-3],[-2,-5]],[[76864,79827],[-3,-19],[0,-4]],[[76861,79804],[-1,-2],[-4,-4],[-7,0],[-4,3],[-1,2],[-3,5],[-2,4],[-3,4],[-2,1],[-2,-2]],[[76832,79815],[-2,-6],[-1,-3]],[[76829,79806],[-3,-2],[-2,1],[-3,3],[-3,5],[-11,11],[-3,3],[0,6],[-2,4],[-4,6],[-10,14],[-2,4],[-2,6],[-3,7],[-2,5],[-40,52],[-16,27],[-5,7],[-5,4],[-12,15],[-3,2],[-15,10],[-3,3],[1,5],[1,7],[1,7],[2,5],[2,3],[1,2],[0,3],[0,3],[-1,4],[-2,4],[-4,6],[-3,2],[-3,1]],[[76675,80051],[-3,0],[-4,-2]],[[76668,80049],[-3,1],[-3,1],[-8,7],[-3,4],[-2,3],[-1,3],[0,4],[-1,4],[-1,4],[-2,6],[-3,3],[-2,1],[-6,1],[-4,0],[-3,3],[-7,11],[-2,3],[-3,3],[-37,18],[-2,3],[-2,3],[0,3],[-2,5],[-1,13],[4,30],[1,3],[3,4],[2,1],[3,3],[1,5],[1,6],[1,4],[2,3],[3,3],[2,2],[6,2],[11,9],[6,1],[2,-2],[2,-2],[3,-5]],[[76623,80223],[2,-3],[5,-3],[4,-1]],[[76634,80216],[3,-1],[0,1],[1,-1]],[[76638,80215],[2,2],[3,2],[2,2],[4,7],[3,5],[1,3],[4,6],[3,5],[1,3],[0,3],[-1,2],[0,4],[2,5],[9,13],[1,1],[0,3],[-1,3],[0,3],[1,4],[2,2],[1,2],[0,3],[0,3],[0,4],[2,4],[4,7],[3,2],[3,0],[2,-2]],[[76689,80316],[7,-6],[2,-2],[22,-7],[4,-1]],[[76724,80300],[0,1],[0,-1]],[[76724,80300],[4,1],[16,4],[6,2],[3,5],[2,2],[2,1],[2,-1],[5,-3],[23,-20]],[[76787,80291],[16,-8],[16,0]],[[76819,80283],[4,2],[2,2],[1,3],[0,4],[-1,2],[-3,8],[-2,9],[0,3],[-1,3],[1,3],[0,3],[1,2],[3,5],[1,3],[1,3],[1,3],[1,11],[1,10],[0,3],[-1,3],[-1,2],[-2,5],[-1,2],[-1,3],[0,3],[0,3],[7,14],[10,17],[1,3],[1,2],[0,4],[2,4],[2,5],[5,7],[2,5],[1,4],[0,3],[1,3],[4,7],[1,3],[1,3],[1,3],[1,7],[-1,6],[0,6],[-1,4],[1,3],[0,3],[1,3],[1,2],[1,3],[0,2],[-1,2],[-6,14],[-2,4],[-16,22],[-11,11],[0,3],[1,1],[9,5],[2,1],[1,2],[3,4],[2,3],[7,11],[2,3],[0,4],[0,3],[-2,2],[-4,1],[-2,2],[1,2],[1,3],[1,2],[2,3],[1,4],[1,12],[1,4],[1,3],[2,10],[2,11],[0,6],[-1,20],[1,5],[2,3],[3,4],[17,10],[29,10],[3,2],[2,4],[3,5],[1,5],[0,4],[0,3],[-1,3],[0,2],[-4,7],[-1,3],[-2,5],[-1,6],[0,10],[-1,3],[-1,2],[-2,2],[-5,5],[-2,3],[-1,4],[1,7],[0,5],[2,6],[-1,4],[-1,3],[-1,2],[-2,3],[0,6],[1,10],[-1,4],[0,2],[-3,5],[-1,3],[0,5],[1,3],[1,2],[6,6],[2,3],[0,3],[0,3],[-3,4],[-6,8],[-14,12],[-6,7],[1,2],[1,3],[11,11],[2,3],[3,6],[0,3],[0,3],[-10,9],[-1,2],[-2,2],[-1,3],[-2,6],[1,5],[1,8],[2,4],[2,3],[2,2],[9,4],[3,3],[4,12],[10,3],[5,6],[4,6],[13,8],[2,7],[1,9],[2,63],[1,4],[1,4],[4,2],[11,3],[5,3],[4,6],[8,20],[7,13],[8,2],[8,-1],[22,-9],[2,-1],[2,-2]],[[77021,81156],[0,-2],[2,-2]],[[77023,81152],[2,-2]],[[77025,81150],[9,-5],[6,-5]],[[77040,81140],[1,-1],[1,0]],[[77042,81139],[3,3],[14,17],[3,6],[2,8],[0,5],[0,6],[2,8],[12,14],[5,4],[5,3],[13,3],[4,3],[2,7],[0,27],[0,8],[-2,6],[-3,6],[-2,8],[-1,9],[0,19],[1,8],[2,6],[6,2],[70,4],[7,3],[3,7],[1,8],[0,58],[-1,8],[-3,6],[-6,2],[-23,0],[-3,1],[0,2],[4,12],[1,4],[1,4],[0,4],[-1,2],[0,3],[-3,5],[-1,3],[0,4],[1,3],[5,7],[1,4],[0,3],[-1,2],[-1,3],[-2,2],[-1,2],[-1,2],[-1,3],[-1,6],[0,3],[0,3],[0,4],[1,5],[5,19],[1,5],[-1,3],[-1,2],[-1,2],[-18,9],[-6,2]],[[77133,81559],[-1,0],[-11,0]],[[77121,81559],[-8,-2],[-12,-6]],[[77101,81551],[-3,0],[-2,0]],[[77096,81551],[-14,7],[-3,3],[-1,2],[-2,2],[-2,5],[2,23],[1,7],[2,6],[1,3],[2,1],[19,10],[6,5],[5,5],[3,4],[1,2],[0,4],[-1,3],[-2,1],[-33,2],[-2,1],[-2,1],[-1,2],[-2,2],[-7,16],[-1,2],[-4,4],[-1,2],[-2,3],[-2,1],[-12,7],[-2,2],[-1,4],[2,6],[14,41],[73,188],[73,189],[15,5],[78,-8],[77,-9]],[[77373,82105],[23,-7],[1,0]],[[77397,82098],[14,1],[14,7],[4,0],[6,-1],[2,-1],[1,-3],[0,-6]],[[77438,82095],[0,-4],[1,-2],[2,-3]],[[77441,82086],[1,-2],[17,-14]],[[77459,82070],[5,-2]],[[77464,82068],[4,-1],[1,0]],[[77469,82067],[20,1],[8,5],[3,4],[22,17],[3,2],[4,0]],[[77529,82096],[2,-1],[5,-3],[8,-2]],[[77544,82090],[7,0],[4,0],[3,2],[12,8],[16,8],[5,1]],[[77591,82109],[22,-1],[1,0]],[[77614,82108],[3,2],[2,2],[0,7],[1,3],[1,3],[6,10],[2,6],[1,3],[3,18],[2,6],[1,3],[1,7],[1,4],[3,4],[3,2],[3,1],[2,2],[1,3],[2,2],[3,6],[16,20],[1,1],[1,3],[2,6],[0,3],[0,3],[2,5],[0,4],[18,22],[9,-2],[16,-11]],[[77720,82256],[3,-1],[1,0]],[[77724,82255],[3,1],[8,5],[47,6],[7,-2],[3,-2],[3,-2],[2,-3],[1,-3]],[[77798,82255],[0,-3],[1,-6]],[[77799,82246],[-1,-24],[0,-13],[0,-6]],[[77798,82203],[0,-3],[1,-3]],[[77799,82197],[1,-3],[1,-2]],[[77801,82192],[6,-12],[2,-5],[1,-3]],[[77810,82172],[1,-6]],[[77811,82166],[0,-10],[1,-3]],[[77812,82153],[1,-6],[7,-8]],[[77820,82139],[15,-11],[6,-6]],[[77841,82122],[10,-6],[3,-3],[1,-3]],[[77855,82110],[-1,-3],[-2,-11],[0,-3]],[[77852,82093],[0,-3],[2,-1]],[[77854,82089],[5,-1],[4,-2],[13,-10]],[[77876,82076],[3,-3],[0,-3],[-6,-10]],[[77873,82060],[-3,-5],[-1,-3],[0,-3]],[[77869,82049],[1,-3],[7,-5],[1,-3],[0,-3],[-1,-3],[0,-4],[0,-6],[9,-21],[1,-3],[1,-2],[0,-3],[1,-3],[0,-3]],[[77889,81987],[-1,-7],[1,-4]],[[77889,81976],[1,-4]],[[77890,81972],[1,-3],[2,-2],[61,-36]],[[77954,81931],[5,-5],[3,-3]],[[77962,81923],[1,-3],[6,-13]],[[77969,81907],[4,-8],[3,-4],[3,-3]],[[77979,81892],[1,-1],[5,-1]],[[77985,81890],[6,6],[7,3],[3,3],[2,4],[2,9],[2,3],[3,3],[4,2],[3,1],[2,-1],[6,-5],[3,-1],[2,0],[3,2],[2,2],[2,3],[5,11],[1,4],[0,4],[-1,2],[-1,3],[-2,2],[0,3],[0,3],[2,6],[1,4],[1,5],[0,3],[-1,3],[-1,3],[-4,3],[-17,14],[-8,8],[-4,6],[-1,3],[-1,3],[0,4],[-1,6],[0,4],[-2,3],[-2,3],[-1,3],[0,2],[5,9],[7,21],[3,6],[1,2],[2,2],[2,3],[1,3],[2,5],[-1,3],[-1,2],[-3,2],[-3,4],[-2,3],[-1,5],[0,10],[1,9],[-1,5],[-1,2],[-3,5],[-4,8],[-1,2],[0,4],[2,1],[11,0]],[[78016,82158],[2,-1],[2,-2],[4,-4]],[[78024,82151],[2,-1],[2,-2],[3,0],[11,0],[3,0],[2,1],[8,6],[6,7],[3,3],[0,3],[0,3],[0,6],[1,3],[1,3],[2,2],[7,3],[2,2],[6,10],[7,8],[3,5],[2,7],[3,11],[2,11],[0,7],[0,3],[-1,3],[-1,2],[-7,5],[-2,2],[-1,2],[-1,3],[-1,3],[0,4],[0,7],[1,3],[1,2],[8,5],[12,5],[5,2],[3,5],[4,8],[9,19],[5,7],[4,4],[23,2]],[[78161,82345],[26,-3],[1,0]],[[78188,82342],[9,1],[3,1],[3,3],[1,3],[1,3],[1,8],[1,5],[2,8],[1,4],[2,3],[10,15],[11,20],[2,5],[3,13],[6,13],[3,6],[3,4],[4,2],[6,5],[8,7],[2,2],[2,1]],[[78272,82474],[1,-1],[1,0]],[[78274,82473],[37,7],[5,3],[2,1],[7,8],[5,3],[3,2],[45,11],[7,4],[3,3],[12,14],[6,11],[2,4],[1,3],[5,12],[2,6],[2,8],[1,5],[2,3],[2,2],[22,6],[3,1],[5,5],[3,4],[3,7],[3,3],[11,10],[2,3],[2,4],[4,11],[8,21],[0,3],[1,3],[0,3],[-1,3],[0,3],[-5,12],[-1,6],[-1,6],[-1,6],[0,3],[1,10],[0,3],[-1,3],[-6,5],[-5,6],[-2,2],[-10,6],[-2,2],[-1,3],[-1,3],[1,6],[0,3],[-1,3],[0,4],[4,11],[0,1],[0,1],[-1,2],[-2,5],[-1,3],[-1,2],[0,3],[-1,9],[-1,3],[-1,2],[-3,5],[-1,2],[0,3],[0,3],[2,11],[3,11],[4,11],[2,5],[2,4],[4,4],[9,8],[6,6],[18,10],[8,0],[10,-2],[30,0],[9,3],[11,5],[2,3],[1,3],[0,3],[0,3],[1,3],[2,6],[3,5],[2,2],[23,16],[12,12]],[[78610,82952],[3,2],[2,-1]],[[78615,82953],[2,-9],[1,-2],[6,-12],[2,-2],[2,-1]],[[78628,82927],[5,-3],[8,-2]],[[78641,82922],[12,0],[4,2],[6,6],[6,4],[4,1],[4,0]],[[78677,82935],[23,-14],[2,-2]],[[78702,82919],[1,-2],[1,-3]],[[78704,82914],[1,-3],[0,-3],[0,-2]],[[78705,82906],[-2,-2],[-2,0]],[[78701,82904],[-13,2]],[[78688,82906],[-1,0],[-6,0],[-2,-1]],[[78679,82905],[-2,-2],[0,-2],[2,-11],[0,-3],[0,-7],[0,-3]],[[78679,82877],[0,-3],[2,-2]],[[78681,82872],[6,-8],[1,-2],[4,-8]],[[78692,82854],[7,-27],[4,-10],[12,-21]],[[78715,82796],[6,-7],[8,-5],[5,-2],[9,-2],[2,-1],[1,-1],[1,-2]],[[78747,82776],[5,-5],[6,-2]],[[78758,82769],[5,-4]],[[78763,82765],[1,-2],[8,-8]],[[78772,82755],[1,-2],[1,-3]],[[78774,82750],[0,-3],[-1,-8],[0,-4]],[[78773,82735],[2,-4],[3,-2]],[[78778,82729],[3,-1],[10,5],[6,2],[6,-1],[28,-14]],[[78831,82720],[6,-1],[7,-1]],[[78844,82718],[5,2],[6,2],[3,1]],[[78858,82723],[1,-1],[2,-2]],[[78861,82720],[0,-3],[1,-2]],[[78862,82715],[2,-8],[1,-4],[2,-3],[5,-4],[2,-3],[1,-4],[0,-3],[-1,-7],[0,-3],[0,-3],[1,-6],[0,-3],[0,-7],[-1,-6]],[[78874,82651],[-1,-2],[0,-2]],[[78873,82647],[-2,-2],[-2,-2],[-2,-2]],[[78867,82641],[-15,-6],[-1,-2]],[[78851,82633],[1,-3],[2,-2],[3,-1],[13,0],[11,1],[5,2],[7,5],[2,2],[1,2],[3,9],[1,1],[1,1],[37,-3]],[[78938,82647],[11,-5],[3,-3]],[[78952,82639],[2,-3],[1,-5],[4,-3]],[[78959,82628],[3,-2],[4,-5]],[[78966,82621],[5,-3],[15,1],[6,-1]],[[78992,82618],[5,-6],[2,-3]],[[78999,82609],[-1,-18],[4,-13],[8,-9]],[[79010,82569],[3,-10],[2,-3],[1,0]],[[79016,82556],[2,1],[2,1],[8,13],[2,2],[3,1],[3,0],[2,-1]],[[79038,82573],[8,-8],[3,-1],[1,0]],[[79050,82564],[2,0],[2,3],[3,5],[3,5],[2,2],[2,2],[43,11],[2,1],[7,9],[8,8],[5,6],[2,5],[-2,9],[-3,5],[-5,5],[-1,2],[-1,4],[-2,6],[-2,3],[-2,3],[-6,6],[-5,6],[-2,4],[-1,3],[1,2],[2,5],[8,17],[12,17],[2,2],[2,1],[8,2],[2,1],[2,2],[1,3],[4,9],[5,11],[4,5],[4,3],[5,3],[18,5],[5,3],[6,5],[2,3],[12,22],[2,4],[3,1],[11,1],[12,6],[15,1],[4,2],[4,5],[8,10],[1,5],[0,4],[-8,11],[-5,9],[-1,3],[1,3],[1,5],[5,13],[1,5],[-1,3],[-1,3],[-4,7],[-1,2],[-1,3],[-1,3],[0,3],[0,8],[-1,3],[-2,3],[-2,1],[-6,2],[-3,2],[-2,2],[-12,14],[-2,3],[0,4],[0,3],[2,3],[2,3],[6,5],[2,3],[2,4],[1,6],[-2,4],[-5,4],[-2,4],[0,7],[1,5],[1,4],[2,3],[1,3],[-1,2],[-8,15],[-2,5],[-1,2],[-1,2],[-3,2],[-3,0],[-2,-1]],[[79209,83040],[-3,-2],[-8,-7],[-2,-1],[-2,0]],[[79194,83030],[-6,5],[-3,0],[-2,-1],[-2,-2]],[[79181,83032],[-3,-1],[-2,-1]],[[79176,83030],[-14,3],[-2,2],[-1,2],[-4,7],[-2,5],[-19,20],[-5,7],[-1,3],[-1,4],[0,3],[1,4],[1,3],[1,4],[1,4],[-1,3],[-1,3],[-16,19],[-1,4],[-1,3],[1,4],[2,9],[0,3],[-3,7],[-1,5],[1,3],[1,3],[9,7],[3,4],[10,14],[2,2],[20,9],[8,-2],[2,1],[2,0],[2,3],[2,3],[2,8],[1,4],[0,4],[-1,3],[-1,2],[-1,2],[0,1],[1,2],[0,2],[-1,2],[1,3],[3,0],[12,1],[3,1],[5,6],[3,2],[19,3],[4,-1]],[[79222,83253],[6,-3],[4,-1]],[[79232,83249],[4,-1],[7,1],[4,0]],[[79247,83249],[2,-2],[2,-2]],[[79251,83245],[1,-1],[0,-1],[1,-2]],[[79253,83241],[0,-1],[8,-4]],[[79261,83236],[10,-3],[12,2],[10,4],[5,2],[2,2],[2,4],[1,3],[0,2],[-1,3],[-2,2],[-3,4],[-7,6],[-2,2],[-1,2],[-1,4],[1,5],[2,13],[1,12],[1,4],[1,4],[6,9],[2,6],[2,4],[0,1],[0,6],[-1,3],[0,3],[-3,7],[-10,23],[-2,5],[-1,5],[-1,8],[0,8],[1,4],[1,4],[5,8],[2,4],[2,5],[3,10],[1,7],[1,6],[0,9],[0,6],[0,4],[-1,3],[-1,3],[-1,2],[-1,2],[-2,2],[-2,2],[-3,0],[-3,0],[-3,-1],[-2,-1],[-6,-7],[-2,-1],[-2,0],[-1,2],[-1,2],[-2,8],[-1,3],[-3,4],[-2,2],[-3,2],[-3,2],[-6,1]],[[79249,83498],[-1,0],[-6,0]],[[79242,83498],[-2,-1]],[[79240,83497],[-3,-2],[-5,-7]],[[79232,83488],[-2,-1],[-3,-1],[-19,1],[-6,1],[-11,6],[-3,1],[-6,0],[-13,-5],[-4,0],[-30,10],[-2,2],[-3,4],[-2,6],[-1,4],[-2,2],[-9,7],[-6,9],[-7,9],[-5,3],[-5,4],[-17,5],[-3,1],[-2,4],[0,2],[1,3],[2,1],[1,3],[-1,2],[-1,2],[-2,5],[-2,7],[-2,15],[-1,7],[-2,5],[-1,2],[-12,12],[-2,3],[-2,3],[-1,5],[-1,5],[0,4],[0,7],[0,4],[-2,8],[0,4],[0,5],[-1,3],[-3,3],[-2,2],[-3,2],[-1,3],[1,4],[10,35],[1,3],[1,2],[8,10],[1,4],[0,3],[-1,3],[-1,2],[-1,3],[-3,2],[-2,1],[-11,3],[-3,2],[-2,2],[-2,2],[-3,4],[-5,10],[-3,7],[-2,6],[0,3],[1,4],[2,2],[4,4],[5,2],[22,6],[5,2],[5,3],[2,3],[1,3],[1,4],[0,4],[-1,2],[-2,3],[-3,4],[-9,7],[-2,3],[-2,3],[1,3],[1,3],[9,7],[1,2],[1,3],[0,3],[-1,3],[-1,3],[-1,4],[0,1],[1,3],[3,6],[4,5],[1,2],[1,3],[-2,2],[-4,5],[-2,5],[-1,4],[2,3],[1,2],[5,4],[5,1],[10,0],[2,1],[3,1],[2,2],[1,3],[2,2],[3,6],[1,3],[2,3],[4,4],[2,2],[2,2],[2,2],[3,5],[4,4],[2,2],[2,3],[1,3],[2,2],[2,2],[43,-1],[2,1],[2,3],[1,3],[-1,3],[-1,3],[-2,8],[-1,3],[-3,7],[-2,11],[-1,3],[-1,3],[-4,5],[-3,4],[-2,16],[-1,5],[-1,2],[-2,2],[-2,2],[-3,2],[-20,1],[-7,2],[-5,3],[1,5],[23,5],[5,3],[4,2],[5,9],[5,5],[4,3],[41,11],[22,-1],[20,2],[5,3],[2,3],[0,3],[0,3],[-1,6],[-1,3],[0,2],[0,4],[3,4],[18,16],[1,3],[2,7],[2,4],[3,3],[12,4],[16,8],[20,6],[3,2],[2,3],[1,3],[1,4],[4,5],[6,8],[16,13],[8,6]],[[79360,84247],[5,2],[4,-1]],[[79369,84248],[5,-2],[2,-2]],[[79376,84244],[2,-3]],[[79378,84241],[2,-5],[2,-2]],[[79382,84234],[2,-1],[4,-1]],[[79388,84232],[3,2],[2,2],[2,3],[5,12],[2,4],[3,4],[5,5],[3,2],[4,2],[11,1],[1,2],[0,2],[-1,6],[0,6],[-1,15],[0,3],[-1,3],[-2,5],[-2,5],[-7,11],[-1,3],[-1,3],[-1,3],[0,3],[1,3],[1,3],[1,3],[2,4],[37,35],[2,3],[1,3],[2,8],[2,5],[2,2],[3,2],[17,7],[3,3],[2,3],[10,16],[4,5],[3,1],[51,16],[1,2],[0,2],[-4,7],[-1,3],[0,3],[3,5],[1,4],[1,3],[-2,2],[-4,4],[-2,2],[-1,3],[1,4],[3,5],[5,8],[2,5],[1,4],[0,3],[1,4],[1,4],[3,5],[2,3],[0,3],[-2,5],[0,3],[0,4],[3,10],[0,3],[-1,3],[-2,0],[-8,-1],[-3,0],[-15,7],[-3,2],[-1,3],[0,3],[2,4],[11,10],[3,5],[3,8],[3,2],[14,0],[4,1],[2,2],[0,3],[-1,3],[-2,2],[-7,5],[-2,2],[-2,3],[-1,2],[-1,3],[0,3],[1,4],[1,3],[2,2],[3,2],[3,0],[3,-1],[3,-1],[7,-6],[3,0],[5,1],[3,2],[24,31],[20,21],[3,4],[0,3],[-2,5],[-1,3],[-2,5],[-4,4],[-5,7],[0,4],[2,6],[7,13],[5,6],[4,3],[17,5],[2,1],[0,2],[-57,27],[-3,3],[-2,2],[-3,5],[-3,1],[-3,2],[-10,1],[-2,3],[-1,6],[6,15],[3,12],[0,3],[-1,3],[-1,3],[-1,2],[-2,2],[-3,2],[-5,4],[-2,2],[-2,2],[-1,5],[-3,24],[-1,2],[-1,3],[-2,2],[-20,8],[-6,3],[-6,6],[-3,2],[-23,7],[-3,2],[-1,2],[0,3],[0,3],[2,7],[0,4],[0,3],[-1,2],[-2,3],[-9,4],[-3,2],[0,4],[1,3],[4,6],[0,3],[-1,2],[-2,3],[-3,4],[-2,2],[-2,5],[-6,19],[-1,3],[0,3],[1,4],[3,1],[43,2],[6,2],[12,8],[10,9],[3,4],[1,3],[-1,3],[-3,4],[-1,4],[1,5],[2,9],[5,12],[2,6],[-1,4],[-12,6],[-3,2],[-2,2],[0,3],[1,10],[0,10],[1,5],[2,4],[4,4],[14,19],[4,3],[4,1],[3,-2],[3,-1],[1,-3],[1,-2],[1,-3]],[[79583,85170],[1,-2],[43,-4],[1,0]],[[79628,85164],[3,0],[2,2],[2,3],[0,3],[2,11],[2,7],[1,4],[2,4],[5,5],[0,3],[-2,1],[-20,15],[-4,4],[-7,9],[-1,2],[-7,15],[-1,3],[-2,2],[-15,10],[-2,3],[0,4],[0,6],[1,5],[2,4],[1,3],[2,2],[3,0],[14,3],[2,6],[1,6],[2,3],[16,24],[4,8],[2,5],[0,4],[-1,2],[-3,5],[-10,10],[-2,3],[-1,2],[0,3],[-1,4],[1,4],[1,4],[2,3],[6,8],[3,5],[6,18],[2,4],[19,26],[5,9],[1,4],[0,3],[0,3],[-3,4],[-22,26],[-3,5],[-3,5],[0,3],[0,3],[1,4],[2,10],[3,10],[2,4],[3,3],[6,2],[6,0]],[[79656,85552],[3,-1],[3,-1]],[[79662,85550],[2,-3],[3,-4],[2,-2]],[[79669,85541],[2,-1],[1,0]],[[79672,85540],[8,2]],[[79680,85542],[2,-1],[3,-1]],[[79685,85540],[7,-6],[13,-6],[10,-7],[4,-4],[1,-2],[2,-3],[3,-4]],[[79725,85508],[6,-6],[5,-7]],[[79736,85495],[2,-2],[3,-1]],[[79741,85492],[3,0],[11,6],[3,2],[3,5],[6,15],[3,5],[2,3],[3,2],[1,1],[2,0],[24,-4],[3,-2],[2,-2],[1,-2],[1,-3],[1,-8],[1,-3],[1,-3]],[[79812,85504],[7,-11],[2,-3]],[[79821,85490],[0,-3],[1,-3]],[[79822,85484],[0,-2],[3,-2]],[[79825,85480],[11,-3],[1,0]],[[79837,85477],[3,0],[10,6],[3,0],[4,0],[3,-1],[8,-5],[3,-1]],[[79871,85476],[3,-1],[1,0]],[[79875,85475],[3,1],[3,2],[4,5],[2,4],[6,16],[1,3],[0,4],[0,3],[-1,6],[0,3],[1,4],[1,6],[2,4],[2,3],[7,6],[5,4],[15,3],[10,6]],[[79936,85558],[3,0],[3,0]],[[79942,85558],[3,-1],[2,-1],[1,-1]],[[79948,85555],[3,-4]],[[79951,85551],[2,-2],[3,-2],[3,-1],[3,0],[3,1],[5,4],[6,2],[9,2]],[[79985,85555],[3,0],[13,-6],[3,-1],[1,0]],[[80005,85548],[12,1],[15,-4]],[[80032,85545],[3,1],[3,1],[8,8],[1,0],[9,0],[2,0]],[[80058,85555],[8,-4],[3,-1],[1,0]],[[80070,85550],[3,2],[6,10],[7,8],[2,3],[0,3],[0,3],[-1,3],[-3,7],[-1,3],[0,3],[-1,3],[0,3],[-16,53],[-6,40]],[[64320,71722],[98,-162],[97,-162],[98,-163],[98,-162],[97,-162],[98,-162],[44,3],[30,-7],[21,-3],[50,-7],[6,0],[5,4],[5,7],[5,6],[6,0],[7,-1],[6,0],[10,5],[47,44],[6,1],[17,-6],[6,1],[4,3],[7,11],[5,4],[4,5],[13,14],[7,9],[1,4],[1,9],[4,14],[1,8],[0,13],[0,4],[-1,4],[-4,4],[-1,3],[0,12],[5,17],[1,11],[1,9],[4,9],[8,15],[42,45],[13,23],[2,6],[2,8],[3,2],[4,1],[3,2],[2,5],[3,10],[2,4],[6,3],[16,5],[3,2],[3,9],[6,5],[12,7],[4,0],[5,8],[6,4],[21,26],[6,4],[18,1],[55,18],[8,0],[18,-6],[10,-10],[4,-2],[15,0],[4,-2],[8,-7],[4,-2],[4,0],[40,11],[11,-2],[1,-1],[9,-5],[4,-1],[24,6],[5,5],[2,9],[1,10],[-1,10],[-8,14],[2,7],[18,26],[9,10],[10,6],[26,1],[4,-1],[4,-4],[4,-5],[4,-2],[4,1],[22,15],[14,4],[2,-1],[11,-14],[10,-8],[4,-3],[42,-12],[11,-7],[5,-2],[5,5],[4,5],[9,10],[4,5],[5,16],[3,5],[5,4],[3,1],[3,-1],[6,-3],[3,-3],[1,-4],[0,-4],[1,-5],[7,-17],[5,-19],[3,-8],[9,-16],[3,-16],[6,-14],[2,-9],[-1,-10],[-5,-29],[7,-15],[40,-25],[4,1],[4,2],[5,2],[5,-1],[14,-7],[13,1],[5,1],[4,0],[3,-4],[4,-4],[3,-4],[2,0],[1,0],[4,1],[3,0],[2,-4],[2,-8],[2,-3],[4,-3],[5,0],[4,2],[5,1],[9,-4],[44,-34],[18,-6],[10,-2],[4,-1],[5,-4],[2,-4],[0,-4],[-1,-4],[0,-4],[5,-13],[1,-4],[1,-10],[0,-8],[1,-6],[5,-6],[4,-3],[22,-5],[4,-3],[7,-8],[4,-2],[25,4],[5,4],[3,9],[3,9],[3,8],[5,5],[5,1],[5,-4],[14,-20],[12,-8],[6,-1],[6,1],[3,2],[1,4],[2,2],[3,0],[6,-2],[3,1],[3,1],[4,8],[1,8],[1,4],[17,-15],[21,-8],[11,-8],[4,-4],[4,-2],[8,-2],[3,-3],[9,-15],[37,-42],[6,-1],[16,11],[6,-3],[6,-8],[5,-12],[1,-7],[-1,-12],[2,-7],[1,-4],[-1,-5],[-2,-6],[-1,-6],[1,-11],[5,-39],[3,-7],[18,-23],[5,-10],[2,-3],[-1,-3],[-1,-2],[0,-2],[0,-3],[-1,-5],[1,-4],[4,-2],[2,-3],[2,-3],[3,-1],[2,-1],[9,6],[4,-1],[4,-8],[2,-9],[2,-10],[2,-10],[3,-4],[3,1],[2,3],[3,8],[3,2],[3,0],[40,-21],[18,-24],[10,-10],[23,-7],[10,-7],[9,-17],[10,-36],[13,-31],[29,-58],[6,-15],[8,-34],[6,-16],[9,-9],[44,2],[39,1],[59,1],[33,1],[29,1],[14,-4],[11,-2],[2,-19],[2,-9],[1,-5],[1,-7],[0,-7],[-2,-6],[-1,-5],[-2,-4],[-1,-6],[0,-7],[2,-8],[-6,-45],[-1,-27],[4,-16],[-1,-2],[-1,-2],[-1,-4],[3,-2],[2,-2],[2,-4],[1,-3],[1,-6],[1,-6],[0,-13],[1,-5],[4,-11],[4,-34],[1,-17],[0,-3],[0,-3],[-3,-7],[-2,-3],[0,-5],[-1,-6],[0,-5],[-1,-6],[-2,-3],[-3,-1],[-2,-3],[-1,-7],[1,-11],[0,-5],[-3,-6],[-6,-8],[-3,-6],[4,-3],[7,-2],[5,-4],[5,-8],[4,-9],[3,-7],[3,-10],[2,-9],[1,-20],[1,-9],[0,-9],[-2,-12],[2,-4],[0,-6],[-2,-13],[0,-3],[0,-10],[-1,-4],[-3,-6],[-2,-3],[1,-15],[4,-13],[7,-17]],[[67019,69787],[2,-5],[3,-23],[0,-11],[-1,-11],[-4,-11],[-7,-13],[-3,-10],[-2,-18],[-2,-6],[-5,-12],[-2,-7],[-1,-11],[1,-29],[-2,-9],[-6,-5],[-6,-2],[-2,0],[-4,0],[-4,-6],[-2,-12],[0,-12],[0,-5],[2,-2],[1,-6],[0,-5],[-3,-2],[-1,-3],[1,-5],[8,-18],[2,-4],[1,-3],[-1,-6],[-1,-5],[1,-4],[3,-6],[-7,-15],[-2,-8],[-2,-23],[-4,-21],[-1,-11],[0,-5],[-4,-10],[-1,-7],[0,-6],[1,-10],[0,-5],[-1,-20],[-2,-18],[-9,-5],[-1,-9],[-5,-16],[-9,-11],[-5,-10],[-1,-13],[1,-14],[-1,-14],[-3,-6],[-3,-2],[-4,1],[-3,-1],[-4,-4],[-2,-3],[-1,-5],[-13,-24],[-5,-6],[-7,-3],[-16,-3],[-7,-6],[-4,-12],[3,-1],[3,-2],[2,-4],[2,-13],[2,-4],[7,-5],[4,-5],[2,-6],[5,-15],[20,-44],[3,-11],[-20,-2],[-29,-3],[-19,-1],[2,-12],[-5,-8],[-13,-12],[-9,-17],[-9,-18],[-8,-27],[-2,-24],[4,-56],[8,-85],[-1,-22],[-8,-32],[-3,-18],[7,-41],[18,-28],[22,-15],[22,-3],[20,2],[11,-2],[9,-4],[5,-4],[4,-7],[3,-8],[0,-1],[-3,-6],[-4,-2],[-13,-2],[-5,-5],[-1,-8],[1,-9],[1,-10],[-2,-11],[-3,-6],[-9,-10],[-8,-12],[-10,-24],[-14,-31],[-15,-34],[-13,-30],[-2,-8],[0,-44],[4,-35],[8,-46],[10,-54],[10,-55],[10,-59],[11,-64],[12,-77],[10,-60],[-1,-45],[-4,-44],[-1,-9],[-8,-16],[-2,-9],[1,-3],[3,-3],[1,-3],[-2,-12],[0,-6],[2,-5],[1,-6],[0,-12],[-2,-34],[1,-27],[4,-52],[-4,-41],[1,-13],[4,-27],[3,-52],[10,-6],[28,-7],[46,-12],[1,0],[47,-12],[54,-14],[47,-11],[8,-5],[5,-8],[10,-21],[2,-10],[-2,-24],[0,-11],[3,-12],[7,-21],[3,-12],[0,-17],[1,-5],[5,-18],[3,-18],[1,-11],[0,-11],[-2,-12],[-5,-18],[1,-6],[1,-38],[-1,-2],[-1,-4],[0,-10],[1,-3],[-5,-9],[-23,-48],[-35,-73],[-32,-66],[-23,-47],[-30,-62],[-3,-8],[-12,-25],[-4,-8],[-19,-39],[-43,-89],[-21,-43],[-16,-33]],[[66901,66587],[22,-46],[15,-30],[18,-38],[21,-44],[22,-45],[22,-48],[6,-7],[6,-4],[5,-7],[2,-14],[0,-10],[-4,-20],[0,-11],[3,-11],[9,-17],[3,-10],[1,-6],[1,-14],[1,-6],[3,-6],[3,-2],[2,0],[3,-3],[3,-8],[2,-9],[2,-8],[5,-4],[2,-4],[1,-5],[-1,-5],[-2,-4],[-2,-4],[-1,-3],[0,-4],[3,-3],[3,-2],[3,-5],[3,-5],[11,-48],[2,-11],[1,-9],[1,-8],[8,-16],[8,-31],[8,-17],[29,-46],[11,-26],[18,-29],[9,-18],[5,-5],[17,-8],[13,-13],[8,-5],[19,-3],[9,-3],[23,-18],[36,-13],[8,-7],[3,-7],[3,-8],[3,-6],[4,-5],[5,-2],[3,-4],[1,-5],[2,-10],[4,-12],[18,-34],[6,-6],[45,16],[6,-6],[1,-20],[-4,-57],[-4,-63],[5,-38],[7,-54],[2,-33],[2,-45],[2,-28],[2,-51],[2,-29],[-2,-23],[-14,-58],[5,-12],[1,-6],[0,-9],[-1,-8],[-2,-6],[-3,-4],[-4,0],[12,-19],[4,-5],[2,1],[4,4],[2,0],[2,-1],[7,-7],[9,-3],[7,1],[16,5],[7,2],[15,8],[7,1],[5,-1],[4,0],[15,9],[3,0],[3,-2],[7,-12],[3,-4],[7,-4],[3,-3],[3,-6],[4,-10],[9,-37],[-5,3],[-6,0],[-5,-4],[-3,-9],[-1,-6],[-3,-8],[-1,-5],[-1,-7],[2,-62],[2,-11],[4,-9],[2,-9],[-1,-10],[-4,-7],[-11,-3],[-5,-4],[-2,-9],[-2,-81],[-3,-22],[-6,-11],[-3,0],[-2,2],[-2,3],[-3,2],[-2,0],[-8,-3],[-11,1],[-11,3],[-25,1],[-22,1],[-19,1],[-3,-2],[-2,-5],[-3,-9],[-2,-3],[-2,-2],[-2,-2],[-9,-3],[-2,0],[-3,3],[-3,1],[-3,-3],[-2,-4],[-2,-3],[-6,-4],[-47,-8],[-2,-2],[-2,-3],[-3,-7],[-1,-3],[-3,-1],[-6,0],[-3,0],[-2,-2],[-3,-5],[-3,-2],[-5,-4],[-3,-3],[-1,-4],[-1,-5],[1,-3],[1,-3],[0,-4],[-3,-10],[-8,-15],[-2,-7],[1,-13],[3,-10],[0,-8],[-6,-5],[-10,2],[-13,8],[-10,3],[-5,-14],[-1,-14],[-2,-5],[-12,-4],[-5,-3],[-6,-5],[-10,-11],[-33,-18],[-7,-9],[-4,-15],[-2,-17],[-3,-34],[-2,-30],[-3,-34],[-3,-47],[-3,-38],[-2,-10],[-2,-6],[-2,-3],[-5,-2],[-5,0],[-6,-3],[-6,-14],[2,-21],[3,-22],[-1,-19],[-2,-4],[-4,-8],[-2,-5],[-1,-8],[-1,-32],[-1,-48],[-2,-55],[-2,-47],[-8,-45],[0,-2],[0,-74],[-7,-100]],[[64586,65092],[-7,7],[-22,33],[-12,38],[-6,63],[-5,17],[-58,30],[-48,63],[-100,12],[-26,15],[-22,25],[-89,155],[-20,116],[-42,132],[-10,98],[-26,30],[-15,28],[-17,44],[-27,99],[-22,26],[-38,-10],[-17,6],[-21,21],[-14,32],[-15,64],[1,60],[15,48],[30,39],[-12,49],[-17,40],[-43,75],[-34,36],[-23,5],[-42,-24],[-28,0],[-31,19],[-33,49],[-36,8],[-43,-59],[-58,-25],[-32,-27],[-20,61],[-9,47],[-3,5],[-1,0],[-8,2],[0,1],[-2,1],[-8,4],[-2,2],[-2,3],[-4,5],[-2,3],[-1,4],[-3,11],[0,7],[-5,27],[-1,1],[-2,6],[-5,11],[-4,13],[0,4],[0,6],[2,5],[3,4],[2,4],[1,6],[-1,6],[-1,6],[-2,5],[-11,17],[-9,17],[-5,17],[-3,4],[-3,2],[-4,0],[-10,-3],[-3,0],[-4,1],[-3,2],[-2,4],[-1,5],[-2,25],[-3,12],[-3,11],[-5,9],[-3,3],[-3,1],[-29,8],[-1,17],[1,267],[-1,7],[-3,4],[-91,0],[2,229],[42,197],[2,12],[-1,12],[-4,10],[-11,14],[-4,9],[-1,4],[-2,10],[-1,5],[-3,3],[-5,6],[-1,4],[-10,30],[-2,10],[-2,10],[-10,8],[-4,8],[-7,25],[-4,11],[-6,4],[-4,1],[-2,5],[-3,5],[-3,4],[-5,2],[-2,3],[0,4],[1,8],[1,6],[2,5],[1,5],[0,8],[-1,7],[-5,7],[-2,7],[-3,2],[-1,4],[-5,11],[-1,3],[-2,3],[-8,14],[-1,3],[-2,7],[0,3],[1,2],[3,11],[1,3],[1,3],[0,7],[-2,4],[-7,9],[-5,10],[-3,9],[-4,7],[-6,5],[-15,9],[-4,1],[-13,-12],[-5,-3],[-10,-2],[-8,3],[-9,8],[-9,11],[-83,123],[-12,22],[-18,19],[-13,17],[-27,26],[-8,14],[-27,22],[-30,15],[-33,-6],[-16,3],[-6,23],[4,6],[4,7],[4,7],[2,9],[-1,8],[-4,6],[-6,4],[-12,2],[-4,6],[1,6],[5,6],[6,1],[5,-1],[4,1],[6,8],[8,12],[4,8],[2,7],[-1,5],[-3,4],[-1,5],[0,4],[2,11],[0,6],[-3,9],[-4,7],[-8,12],[-11,26],[-10,15],[-1,8],[0,9],[-1,12],[-2,10],[-4,10],[-9,19],[-1,1],[-1,1],[-1,2],[-1,0],[-2,0],[-1,-2],[-5,-8],[-9,-2],[-8,3],[-5,7],[5,10],[13,13],[3,9],[-2,12],[-6,7],[-5,8],[2,17],[-6,-2],[-14,-1],[-5,-3],[-8,-13],[-5,-5],[-5,-2],[-1,3],[0,20],[-2,9],[-13,15],[-5,7],[-3,9],[-3,9],[-2,10],[-1,11],[-2,10],[-4,6],[-4,6],[-4,7],[-25,75],[0,1],[-1,0],[0,1],[-9,-3],[-7,1],[-6,6],[-6,14],[6,4],[3,3],[2,4],[4,15],[3,15],[3,12],[7,10],[4,7],[11,15],[3,7],[0,6],[-2,5],[-2,4],[-1,7],[0,5],[4,10],[2,5],[3,27],[1,14],[-2,13],[-4,10],[-6,6],[-6,0],[-5,-7],[-6,6],[-3,12],[-9,46],[3,7],[15,6],[2,3],[1,3],[2,4],[1,5],[1,16],[-3,23],[2,15],[10,-5],[10,-9],[8,-3],[20,-3],[6,-3],[1,0],[1,4],[1,6],[0,6],[-1,4],[-3,7],[-1,9],[0,11],[-1,10],[-1,4],[-1,3],[-1,3],[-1,6],[-1,5],[-2,4],[-3,3],[-2,2],[-4,8],[2,9],[8,14],[0,7],[0,11],[1,6],[2,7],[4,2],[8,2],[7,8],[2,14],[-1,14],[2,11],[7,0],[8,-7],[7,-4],[5,9],[2,14],[2,10],[1,10],[-3,15],[-1,7],[0,8],[2,6],[3,5],[2,1],[4,0],[1,2],[1,2],[-1,7],[0,3],[4,10],[2,2],[4,-3],[6,-6],[3,-2],[3,1],[9,-6],[4,1],[4,7],[8,7],[2,1],[5,-3],[8,4],[3,1],[3,3],[2,7],[-6,11],[4,15],[6,17],[1,15],[-4,6],[-11,-1],[-4,5],[0,9],[2,7],[4,6],[2,8],[-2,17],[-7,12],[-15,23],[-18,46],[-4,16],[0,5],[1,5],[1,4],[2,2],[2,3],[0,2],[0,2],[-2,2],[-3,11],[-2,11],[1,1],[2,0],[8,-4],[1,7],[-3,22],[0,9],[1,10],[2,8],[4,7],[6,3],[19,-1],[6,2],[14,12],[10,-1],[6,1],[5,7],[3,9],[9,9],[4,6],[4,9],[0,9],[-2,8],[-5,5],[-6,1],[-5,-4],[-4,-5],[-6,-4],[-11,-4],[-6,0],[-6,4],[-2,3],[-2,3],[-1,4],[-2,11],[-1,2],[-2,1],[-8,5],[-5,0],[-4,-3],[-6,-5],[-5,-3],[-18,2],[-9,-5],[-3,0],[-3,2],[-3,0],[-6,-10],[-6,-4],[-5,-1],[-5,5],[-3,1],[-11,-5],[-5,3],[-3,7],[-7,29],[-13,29],[-8,13],[-8,2],[-3,4],[-11,15],[-16,10],[-8,0],[-9,-8],[-5,-2],[-6,-6],[-6,-4],[-6,2],[-5,8],[-1,9],[1,12],[4,11],[3,9],[1,11],[-3,11],[-9,18],[-1,12],[0,26],[-1,10],[-4,7],[-5,6],[-2,7],[7,7],[-5,11],[-2,9],[-1,24],[-1,13],[-3,14],[-5,10],[-7,1],[-16,-10],[-8,-1],[-7,6],[-3,6],[-2,5],[0,5],[-1,7],[-3,6],[-2,3],[-2,5],[0,8],[-4,6],[-5,7],[-4,9],[1,9],[1,1],[3,2],[1,1],[0,12],[3,19],[6,20],[0,10],[-3,12],[-7,20],[-4,9],[-4,4],[-4,1],[-3,1],[-3,4],[-3,4],[-3,5],[-4,1],[-9,0],[-7,2],[-5,6],[-3,10],[3,14],[10,19],[4,10],[2,13],[-2,13],[-2,9],[-2,10],[2,15],[3,6],[0,6],[-2,5],[-6,5],[-3,5],[-2,2],[-3,0],[-5,-3],[-3,1],[-1,3],[-1,8],[-1,4],[-2,2],[-2,1],[-2,2],[-2,3],[-2,10],[0,6],[3,16]],[[62434,70634],[2,10],[-2,10],[-2,9],[-1,11],[2,10],[3,5],[4,4],[3,6],[1,18],[-6,12],[-16,17],[-2,7],[-2,8],[-2,5],[-11,-2],[-2,4],[-4,16],[-4,5],[-11,2],[-3,3],[-2,9],[3,12],[1,5],[-2,9],[-1,12],[0,13],[2,14],[3,11],[-1,10],[-7,7],[-5,10],[1,17],[2,5],[10,12],[3,8],[-1,5],[-10,20],[-7,9],[-8,6],[-7,-2],[-4,-3],[-4,-2],[-4,0],[-2,7],[0,3],[1,9],[0,3],[-2,2],[-2,0],[-2,-1],[-2,1],[-3,6],[-2,7],[-1,6],[-1,5],[-3,4],[-10,7],[-4,2],[-18,-3],[-9,2],[-5,12],[1,6],[3,6],[2,6],[0,7],[-1,8],[0,7],[2,7],[2,7],[3,8],[7,12],[2,9],[2,11],[3,7],[3,5],[6,4],[1,3],[-2,11],[1,5],[2,3],[5,3],[2,5],[2,8],[1,11],[1,10],[-1,27],[8,14],[10,12],[6,15],[0,8],[-2,9],[-3,8],[-4,5],[-5,3],[-3,-2],[-9,-8],[-14,4],[-4,3],[-3,3],[-1,5],[1,9],[0,5],[-1,14],[1,6],[3,23],[0,9],[-2,29],[1,22],[0,11],[-2,9],[-2,4],[-2,2],[-5,3],[-3,2],[0,4],[3,4],[1,4],[-1,10],[-2,6],[0,7],[1,12],[7,40],[-1,16],[-15,11],[-4,7],[-4,8],[-3,13],[-1,4],[-1,4],[0,5],[0,5],[-2,3],[-2,3],[-2,4],[-1,9],[-1,4],[-2,3],[0,1],[4,10],[5,6],[2,6],[-2,22],[1,9],[6,17],[-3,14],[-10,11],[-13,11],[-7,8],[0,5],[2,10],[0,5],[-4,11],[-1,5],[0,5],[1,3],[0,4],[-3,11],[-2,12],[-1,6],[-8,13],[-1,7],[3,6],[6,6],[4,2],[4,0],[6,-1],[7,1],[15,7],[6,-2],[20,-14],[7,-1],[6,2],[14,10],[5,6],[5,11],[0,10],[-1,11],[2,12],[2,7],[1,6],[-1,8],[-1,7],[1,10],[1,7],[9,29],[2,7],[0,9],[-1,18],[1,6],[30,37],[7,4],[4,-5],[7,-18],[4,-6],[17,-12],[5,-7],[23,-26]],[[70795,70691],[6,-6]],[[70801,70685],[0,-1],[2,-1],[-22,-8],[-5,-1],[-3,3],[-11,38],[-2,4],[-4,1]],[[70756,70720],[-1,0],[-3,-4]],[[70752,70716],[-3,-5],[-6,-10]],[[70743,70701],[-2,-1],[-5,-1]],[[70736,70699],[-2,-3],[0,-3]],[[70734,70693],[-4,-6],[-1,-2],[-1,-2],[-2,-1],[-2,1],[-3,6],[-2,1],[-4,-1],[-9,-4],[-3,-1],[-9,0]],[[70694,70684],[-4,-4],[-3,-8],[-2,-12]],[[70685,70660],[-3,-7],[-4,-3],[-6,-2],[-11,2],[-4,-2],[0,-10],[0,-1],[4,-12],[9,-10]],[[70670,70615],[17,-14],[5,-9]],[[70692,70592],[2,-5]],[[70694,70587],[1,-6],[4,-9]],[[70699,70572],[7,-5]],[[70706,70567],[1,-3]],[[70707,70564],[0,-2],[0,-2]],[[70707,70560],[0,-4],[-1,-4]],[[70706,70552],[-1,-13],[-1,-5]],[[70704,70534],[-4,-2],[-6,8],[-5,12],[-1,1],[-1,1],[-5,3],[-6,0]],[[70676,70557],[-6,-3],[-6,-2]],[[70664,70552],[-7,-10]],[[70657,70542],[-22,-23],[-1,-1]],[[70634,70518],[-14,-18],[-6,-3],[-19,3],[-4,-2],[-4,-5],[-2,-7],[-1,-19],[-3,-6],[-16,-9],[-8,0],[-9,6],[-8,3],[-23,23],[-8,6],[-17,5]],[[70492,70495],[-18,1],[-19,1]],[[70455,70497],[-36,-10],[-9,3],[-9,2],[-18,-4],[-14,1],[-14,-7],[-4,-1],[-4,1],[-8,3],[-9,2],[-41,-8],[-5,-2],[-6,-8],[-3,-2],[-4,0],[-9,6],[-7,-3],[-7,-6],[-8,-3],[-24,-2],[-23,5],[-19,-2],[-18,-7],[-13,-11],[-17,-24],[-6,-2],[-13,1],[-11,-6],[-13,-1],[-24,-9],[-13,-9],[-4,-5],[-1,-7],[4,-10],[2,-10],[-5,-4],[-16,-4],[-7,-3],[-3,-3],[-3,-5],[1,-5],[1,-4],[0,-5],[-5,-7],[-11,-5],[-6,-5],[-4,-7],[-14,-13],[-3,-5],[-4,-5],[-3,-5],[-5,-3],[-18,-2],[-6,-6],[1,-18],[4,-15],[1,-7],[-3,-6],[-4,-3],[-5,0],[-4,2],[-8,14],[-16,18],[-6,4],[-5,-1],[-3,-5],[-3,-17],[-2,-9],[-2,-6],[-7,-11],[-2,-9],[3,-8],[2,-8],[-6,-4],[-6,-3],[-6,-3],[-4,-5],[-22,-38],[-5,-7],[-18,-10],[-1,-4],[-2,-12],[-1,-5],[-3,-3],[-9,-7],[-10,-11],[-2,-4],[-1,-12],[-2,-5],[-9,-15],[-2,-8],[1,-11],[3,-4],[10,-9],[4,-5],[7,-13],[8,-5],[7,-2],[8,-6],[5,-8],[1,-18],[3,-9],[12,-14],[4,-9],[10,-27],[1,-8],[1,-5],[-1,-5],[0,-5],[2,-7],[1,-3],[4,-6],[2,-3],[4,-10],[1,-9],[-2,-10],[-5,-11],[-3,-11],[2,-10],[6,-7],[15,-12],[5,-6],[2,-8],[0,-11],[-2,-10],[-1,-10],[2,-13]],[[69885,69705],[1,-3],[2,-5]],[[69888,69697],[4,-7],[2,-8],[0,-10],[-3,-9],[-13,-19],[-9,-18],[0,-15],[5,-14],[15,-29],[9,-11],[1,-8],[-3,-11],[-7,-17],[-19,-22],[-7,-15],[0,-25],[1,-5],[0,-5],[-2,-5],[-3,-3],[0,-1],[-3,-5],[-2,-13],[-2,-6],[-3,-4]],[[69849,69412],[-4,-3],[-33,-22]],[[69812,69387],[-10,-13],[-5,-17],[-4,-19],[-15,-34],[-4,-6],[-10,-10],[-20,-26],[-3,-6],[0,-9],[2,-12],[1,-12],[-1,-13],[-3,-12],[-5,-4],[-11,3],[-6,0],[-5,-3],[-3,-10],[-1,-12],[2,-13],[2,-10],[6,-15],[8,-16],[9,-13],[19,-19],[2,-13],[-8,-39],[-1,-10],[3,-19],[1,-12],[0,-13],[-2,-7],[-8,-15],[-3,-11],[0,-9],[1,-9],[-1,-11],[-4,-7],[-14,-4],[-6,-4],[-3,-7],[-3,-5],[-4,-2],[-5,0],[-8,4],[-3,-1],[-1,-7],[-5,-16],[-19,-7],[-38,1],[-37,-9],[-9,1],[-23,8],[-22,1],[-5,3],[-10,8],[-15,2],[-60,36],[-10,1],[-15,-4],[-7,-4],[-5,-8],[0,-9],[1,-8],[-1,-9],[-5,-8],[-3,-8],[1,-8],[9,-14],[2,-7],[4,-21],[2,-9],[7,-16],[2,-9],[2,-10],[3,-11],[4,-5]],[[69436,68746],[7,-1],[4,-1]],[[69447,68744],[15,-11],[12,4],[3,-6],[2,-22],[2,-9],[1,-3],[2,-3],[5,-4],[2,-3],[1,-3],[0,-14],[-6,-35],[0,-10],[1,-11],[2,-10],[4,-8],[2,-3],[8,-4],[2,-3],[2,-9],[2,-4],[14,-28],[5,-17],[-2,-18],[-48,-67],[-5,-5],[-6,1],[-7,4],[-3,-3],[-9,-29],[-2,-5],[-4,-3],[-8,2],[-2,-1],[-21,-22],[-12,-1],[-19,15],[-10,-3],[-13,-15],[-5,-3],[-3,1],[-2,2],[-3,1],[-9,-2],[-6,0],[-11,-3],[-9,-10],[-7,-16],[-6,-19],[5,-60],[-2,-16],[-2,-2],[-7,-10],[-7,-16],[-9,-12],[-3,-7],[0,-11],[1,-4],[2,-4],[3,-3],[2,-1],[2,-3],[1,-4],[0,-10],[3,-18],[-1,-7],[-3,-11],[-15,-37],[-5,-7],[-11,-7],[-6,-6],[-8,-18],[-5,-21],[-2,-23],[3,-24],[7,-31],[2,-11],[-1,-13],[-2,-23],[0,-24],[-2,-23],[0,-12],[5,-53],[9,-42],[1,-7]],[[69251,67748],[-1,-4],[-1,-2]],[[69249,67742],[-13,-17],[-8,-13],[-30,-81],[-4,-7],[-4,-5],[-4,-10],[-9,-14],[-10,-12],[-7,-5],[-10,1],[-10,-5],[-17,-16],[-11,-2],[-8,9],[-13,32],[-7,14],[-2,8],[-1,23],[-2,7],[-3,3],[-16,5],[-16,16],[-9,6],[-6,0],[-7,-4],[-12,-11],[-5,-7],[1,-6],[4,-4],[6,-1],[17,0],[5,-1],[3,-5],[-4,-7],[-6,-6],[-4,-3],[-11,3],[-29,18],[-11,2],[-11,-1],[-6,1],[-3,6],[-3,8],[-7,9],[-6,6],[-8,4],[-5,0],[-4,-8],[-6,-23],[-3,-10],[-9,-14],[-1,-5],[-1,-12],[-2,-4],[-14,-14],[-5,-6],[-3,-8],[-3,-3],[-11,-1],[-9,3],[-4,-1],[-7,-6],[-18,-33],[-15,-18],[-8,-6],[-9,-2],[-18,7],[-8,0],[-4,-10],[2,-8],[4,-9],[4,-9],[1,-22],[4,-8],[6,-6],[5,-3],[23,5],[10,-5],[2,-23],[-3,-11],[-4,-3],[-12,0],[-4,-2],[-4,-5],[-4,-5],[-17,-20],[-5,-3],[-15,-5],[-10,-7],[-17,-4],[-19,-14],[-5,-2],[-18,3],[-15,-1],[-4,0],[-6,4],[-10,10],[-6,2],[-5,0],[-11,-5],[-5,1],[-7,2],[-3,2],[-2,2],[-1,5],[1,3],[2,4],[1,4],[-1,13],[-2,7],[-4,4],[-16,-1],[-11,-5],[-18,-16],[-9,-12],[-6,-13],[-7,-9],[-11,-3],[-7,-8],[-9,-62],[-5,-13],[-27,-46],[-6,-5],[-37,-13],[-5,-5],[-3,-7],[-27,-179],[-1,-24],[5,-22],[7,-15],[2,-7],[1,-12],[1,-11],[-5,-73],[1,-34],[-2,-11],[-18,-63],[-4,-21],[0,-9],[1,-7],[10,-12],[11,-20],[9,-12],[2,-5],[-1,-3],[-2,-1],[-2,-2],[-5,-17],[-8,-17],[-22,-27],[-24,-13],[-16,-8],[-16,-8],[-16,-8],[-16,-8],[-16,-9],[-16,-8],[-17,-8],[-16,-8],[-16,-8],[-16,-9],[-16,-8],[-16,-8],[-16,-8],[-16,-9],[-17,-8],[-16,-8],[-40,-20],[-14,0],[-46,15],[-38,0],[-57,1],[-75,-39],[-10,-8],[-6,-15],[-10,-34],[-8,-6],[-32,24],[-51,17],[-61,21],[-42,-7],[-14,-2],[-13,-3],[-14,-2],[-14,-2],[-13,-2],[-14,-3],[-13,-2]],[[67520,66364],[-3,0],[-11,-2]],[[67506,66362],[-14,-2],[-13,-3],[-14,-2],[-14,-2],[-13,-2],[-14,-3],[-13,-2],[-14,-2],[-43,-7],[-28,9],[-27,15],[-23,13],[-23,13],[-23,13],[-23,13],[-23,13],[-24,13],[-23,13],[-23,13],[-23,13],[-23,13],[-23,13],[-23,13],[-23,13],[-23,13],[-24,13],[-23,13],[-20,11],[-8,7]],[[67019,69787],[4,3],[14,4],[2,0],[2,-1],[3,-4],[0,-2],[-3,-6],[4,-5],[1,0],[4,-6],[0,-3],[-1,-6],[0,-2],[2,-4],[2,-4],[2,-2],[3,-1],[5,-3],[18,-27],[12,-23],[19,-12],[37,-9],[17,2],[33,19],[16,-1],[9,-6],[7,-9],[28,-46],[8,-8],[15,-11],[5,-7],[2,-9],[2,-10],[1,-9],[-1,-23],[2,-8],[5,-20],[3,-6],[5,4],[27,60],[9,14],[7,0],[18,-27],[3,-3],[3,0],[3,2],[3,0],[8,-6],[3,0],[4,1],[20,15],[4,4],[4,6],[4,8],[7,12],[17,14],[1,1],[26,32],[18,15],[6,2],[9,1],[2,1],[6,2],[4,7],[1,10],[2,21],[2,17],[-1,6],[-4,6],[-1,7],[-1,29],[1,8],[7,12],[21,11],[8,9],[2,5],[0,4],[-1,3],[-8,4],[-1,3],[-4,9],[-14,20],[-2,8],[-1,9],[-3,6],[0,2],[-2,7],[1,9],[3,6],[1,2],[6,2],[61,-3],[24,9],[22,17],[4,6],[7,14],[4,7],[5,5],[6,2],[34,3],[11,5],[26,25],[9,4],[4,1],[4,1],[8,-3],[27,-16],[0,7],[-3,26],[0,10],[3,9],[3,7],[18,22],[10,8],[11,3],[11,-3],[5,-3],[3,-1],[3,4],[4,22],[4,7],[4,4],[5,4],[20,8],[10,5],[9,12],[6,11],[21,55],[5,19],[3,20],[2,23],[-1,11],[-4,21],[-1,12],[0,11],[1,11],[3,22],[5,18],[40,118],[3,19],[-1,21],[-5,43],[1,21],[5,14],[9,10],[50,44],[20,10],[28,2],[90,3],[4,0],[10,9],[13,28],[8,13],[3,8],[2,11],[0,12],[-3,24],[2,12],[3,12],[3,11],[3,9],[3,6],[3,3],[5,2],[11,0],[4,5],[2,14],[0,8],[5,-3],[5,-2],[2,-2],[5,-17],[2,-5],[2,-4],[5,-6],[63,-37],[5,-7],[8,-17],[4,-7],[6,-5],[3,-1],[9,1],[3,-1],[4,-5],[3,-1],[2,-2],[2,-2],[5,-7],[5,-7],[8,-1],[19,10],[7,1],[2,-2],[5,-10],[3,-3],[3,1],[2,3],[4,8],[5,6],[5,5],[5,3],[8,1],[6,-1],[19,-13],[3,-1],[8,0],[2,1],[6,8],[3,2],[36,2],[26,10],[13,-1],[5,-3],[11,-13],[6,-3],[4,-5],[4,-24],[3,-9],[5,-5],[13,-8],[5,-8],[3,-9],[2,-11],[3,-8],[6,-4],[7,2],[10,11],[7,2],[7,1],[6,3],[6,4],[5,7],[9,15],[5,6],[6,2],[7,-5],[5,-23],[4,-6],[3,2],[3,5],[1,6],[2,2],[3,1],[5,2],[3,1],[4,-2],[6,-7],[3,-2],[3,-1],[10,1],[6,-3],[5,-4],[3,-8],[1,-10],[-2,-36],[0,-8],[4,-8],[6,-7],[7,-6],[12,-4],[4,-7],[3,-10],[5,-11],[3,-5],[6,-5],[3,-4],[9,-19],[2,-4],[1,-5],[1,-5],[3,-2],[1,-1],[2,0],[4,3],[3,3],[18,25],[3,3],[5,4],[5,7],[5,7],[7,2],[12,-6],[6,-1],[3,8],[-2,24],[0,11],[2,9],[6,6],[5,0],[5,-4],[6,-2],[7,1],[6,5],[1,8],[-4,13],[18,2],[13,5],[3,0],[2,3],[4,10],[1,3],[6,1],[10,5],[5,1],[1,5],[2,9],[3,8],[7,1],[-2,7],[-1,2],[-1,3],[3,5],[5,1],[11,-3],[6,1],[3,0],[4,-3],[10,-10],[3,-1],[1,6],[0,11],[-4,17],[1,7],[6,3],[6,-3],[3,-7],[3,-9],[4,-8],[4,-2],[3,1],[1,5],[-1,8],[-1,2],[-5,6],[-1,3],[-2,7],[1,2],[1,-1],[1,-1],[19,-3],[6,-5],[6,-8],[4,-10],[4,-20],[5,-8],[7,-7],[5,-7],[5,-20],[2,-4],[7,-7],[1,-1],[26,-28],[6,0],[5,5],[7,2],[1,0],[3,2],[3,5],[4,8],[12,11],[4,7],[10,26],[1,7],[-5,2],[-5,3],[2,13],[-2,5],[-2,19],[-2,8],[-2,4],[-1,5],[0,5],[0,5],[0,2],[1,0],[1,1],[0,3],[-1,2],[-3,1],[0,2],[0,22],[0,10],[2,9],[1,3],[4,4],[2,3],[1,3],[2,7],[1,2],[13,15],[6,9],[4,23],[6,4],[38,-5],[6,2],[12,8],[7,1],[2,0],[6,-3],[2,-3],[3,-2],[3,2],[3,4],[2,2],[6,3],[12,9],[6,0],[5,-7],[2,-9],[3,-7],[6,-4],[4,-1],[1,-3],[1,-3],[2,-3],[1,-1],[3,-2],[8,-2],[-2,4],[8,-2],[8,-5],[9,-2],[8,5],[9,19],[2,2],[1,5],[4,16],[6,0],[1,0],[1,2],[1,1],[1,4],[1,4],[-1,5],[0,4],[1,2],[2,2],[3,8],[1,7],[1,5],[0,4],[0,9],[-3,16],[0,8],[1,6],[-2,4],[-3,6],[-2,7],[-1,8],[-1,5],[-10,4],[-3,2],[-4,12],[-4,16],[-2,17],[4,14],[5,-7],[6,-2],[7,2],[6,4],[-2,4],[-1,5],[0,4],[1,6],[2,1],[4,1],[3,2],[1,5],[1,3],[7,6],[2,3],[13,26],[12,20],[3,3],[10,7],[2,4],[4,10],[7,30],[8,26],[3,13],[3,3],[4,2],[3,2],[4,19],[0,5],[-1,6],[0,5],[1,5],[3,3],[6,-1],[3,2],[10,12],[2,6],[-6,7],[0,4],[6,5],[16,2],[3,10],[2,4],[5,1],[9,0],[2,0],[5,-3],[2,0],[2,1],[1,3],[2,2],[3,1],[11,-8],[7,-3],[3,6],[-1,12],[2,4],[6,1],[4,-2],[3,-3],[3,-4],[3,-5],[1,-4],[3,-10],[2,-5],[2,-4],[2,1],[3,1],[3,0],[3,-1],[8,-6],[11,-13],[17,-28],[23,-15],[9,-10],[7,-16],[2,-25],[-2,-12],[-5,-24],[-1,-17],[-6,-15],[-3,-23],[-9,-25],[-2,-14],[-2,-12],[-1,-6],[1,-7],[2,-2],[2,1],[3,0],[10,-14],[6,-4],[6,5],[5,6],[34,19],[10,-1],[8,-10],[9,-16],[-2,-4],[0,-7],[1,-12],[0,-13],[-1,-10],[-5,-10],[-10,-10],[-2,-10],[0,-6],[3,-11],[0,-6],[0,-6],[-3,-17],[-2,-17],[0,-6],[-2,-5],[-3,-7],[-1,-3],[-1,-24],[4,-45],[-3,-22],[-3,-13],[-1,-8],[2,-21],[1,-24],[-1,-11],[-2,-7],[0,-16],[-10,-28],[0,-3],[1,-10],[-2,-5],[-2,-9],[-2,-22],[-1,-34],[1,-7],[2,-6],[4,-12],[1,-6],[0,-23],[1,-12],[3,-10],[15,-41],[3,-11],[2,-26],[2,-11],[3,-11],[4,-9],[9,-16],[12,-10],[13,-5],[14,0],[13,4],[11,8],[81,96],[7,13],[9,9],[3,4],[4,10],[3,5],[11,12],[28,18],[12,4],[19,-6],[10,8],[41,10],[3,5],[1,11],[12,29],[13,43],[8,18],[11,11],[13,4],[7,4],[6,12],[20,19],[20,3],[6,6],[2,6],[1,2],[4,16],[5,8],[10,14],[3,1],[6,-4],[3,3],[13,23],[5,5],[5,3],[7,1],[7,-1],[5,-5],[4,-2],[18,15],[12,1],[25,-15],[8,-4],[19,-9],[13,1],[9,-2],[-1,-14],[-1,-5],[0,-23],[-2,-8],[0,-2],[-4,-7],[-5,-6],[-4,-4],[-11,-1],[-6,-4],[-5,-8],[-4,-11],[1,-11],[5,-5],[11,6],[6,0],[2,-4],[4,-8],[2,-3],[3,1],[5,5],[2,2],[7,-1],[4,-2],[4,2],[10,15],[2,1],[4,2],[12,2],[16,12],[5,2],[21,12],[31,10],[7,5],[5,9],[1,19],[4,8],[7,0],[9,-3],[6,1],[4,15],[1,-7],[3,3],[3,1],[3,-3],[4,-11],[3,-1],[3,-1],[8,-2],[5,2],[5,1],[6,-5],[10,-5],[3,0],[2,0],[28,3],[8,7],[36,-35],[8,-14],[10,-27],[2,-5],[1,-2]],[[72746,66863],[9,2],[6,-2]],[[72761,66863],[2,-3],[4,-9]],[[72767,66851],[2,-3]],[[72769,66848],[2,0],[1,0]],[[72772,66848],[2,1],[3,3],[3,1],[11,1]],[[72791,66854],[6,-1],[5,-4]],[[72802,66849],[1,-8],[-3,-32],[1,-15],[3,-9],[5,-7],[7,-4]],[[72816,66774],[4,-7],[-1,-11]],[[72819,66756],[-6,-21],[0,-7],[2,-12]],[[72815,66716],[2,-11],[3,-7]],[[72820,66698],[6,-1],[5,3],[5,2],[12,-14],[6,-1]],[[72854,66687],[5,-1],[7,-2]],[[72866,66684],[2,-4]],[[72868,66680],[3,-9],[3,-3]],[[72874,66668],[4,-1],[5,1],[4,0],[4,-5],[4,-8],[4,-8],[5,-7]],[[72904,66640],[5,-4],[14,-8]],[[72923,66628],[5,-5],[21,-46],[5,-6],[3,0],[6,3]],[[72963,66574],[2,0],[3,-4],[1,-4]],[[72969,66566],[-2,-6],[-1,-6],[3,-10]],[[72969,66544],[17,-23],[5,-14],[3,-5]],[[72994,66502],[3,-3],[4,-2]],[[73001,66497],[3,-3],[2,-7]],[[73006,66487],[3,-10],[1,0]],[[73010,66477],[6,4],[6,8],[5,4],[3,-2],[4,-9],[2,-3],[3,0],[6,1],[3,-1],[16,-24]],[[73064,66455],[2,-6],[4,-13]],[[73070,66436],[3,-4],[4,0],[2,6],[1,8],[1,6],[2,2],[7,3],[7,1],[3,0],[3,-2],[4,-6],[1,-2],[1,-8],[1,-2],[2,-3],[5,-2],[2,-3],[6,-11]],[[73125,66419],[2,-7],[1,-9]],[[73128,66403],[-1,-4]],[[73127,66399],[-2,-3],[-1,-4]],[[73124,66392],[0,-7],[4,-12],[18,7],[8,-14]],[[73154,66366],[0,-10],[0,-8]],[[73154,66348],[0,-7]],[[73154,66341],[8,-12],[1,-6]],[[73163,66323],[0,-7],[1,-8]],[[73164,66308],[3,-5],[4,-3]],[[73171,66300],[3,-4]],[[73174,66296],[2,-16],[3,-5],[8,-5]],[[73187,66270],[5,-6],[3,-9]],[[73195,66255],[2,-20],[1,-12]],[[73198,66223],[1,-6]],[[73199,66217],[1,-5],[4,-2]],[[73204,66210],[7,-2],[3,-4],[3,-3]],[[73217,66201],[11,-4],[4,-1],[1,0]],[[73233,66196],[4,4],[2,8],[2,9],[2,9],[5,10],[7,4],[7,1],[7,-2]],[[73269,66239],[0,1],[0,-1]],[[73269,66239],[6,2],[13,11],[6,3],[3,2],[2,7],[2,3],[8,4],[5,2],[4,0],[3,-2],[3,-2]],[[73324,66269],[1,-5],[1,-7]],[[73326,66257],[4,3],[3,2],[3,-1],[3,-6]],[[73339,66255],[3,-7],[1,0]],[[73343,66248],[5,2],[5,3],[5,0],[2,-5],[2,-15],[2,-6],[4,-2],[4,1],[4,-1],[2,-8],[-2,-9],[-4,-9]],[[73372,66199],[-3,-9],[2,-10]],[[73371,66180],[6,-11],[2,-4],[1,-5]],[[73380,66160],[1,-18],[7,-6]],[[73388,66136],[6,-4],[3,-7],[-7,-48]],[[73390,66077],[5,-14],[3,-8]],[[73398,66055],[14,-15],[19,-7]],[[73431,66033],[3,-2],[3,-5],[5,-13]],[[73442,66013],[6,-9],[2,-5]],[[73450,65999],[4,-26],[4,-10]],[[73458,65963],[7,-4],[6,0],[5,-3]],[[73476,65956],[4,-5],[6,-4]],[[73486,65947],[15,-4],[3,-3]],[[73504,65940],[3,-10]],[[73507,65930],[1,-4],[6,-3]],[[73514,65923],[5,-2]],[[73519,65921],[3,-5],[-1,-25]],[[73521,65891],[4,-5]],[[73525,65886],[12,-1],[6,-5]],[[73543,65880],[7,-15],[5,-6],[3,-3],[4,-1],[15,2]],[[73577,65857],[3,-1],[5,-3]],[[73585,65853],[3,-1]],[[73588,65852],[0,1],[0,-1]],[[73588,65852],[3,2],[2,4],[4,13],[1,3],[8,8],[3,1],[2,2],[2,5],[3,9],[2,5],[2,3],[6,3]],[[73626,65910],[5,-4],[11,-13]],[[73642,65893],[13,-8],[2,-6],[-3,-28],[-1,-4]],[[73653,65847],[-2,-6],[-2,-2],[-4,-4]],[[73645,65835],[-2,-4],[0,-3],[0,-10],[-2,-8],[-7,-8],[-2,-5]],[[73632,65797],[2,-30],[0,-11],[-1,-24]],[[73633,65732],[2,-8],[6,-7],[7,0],[6,5],[5,2],[9,-15],[5,-3],[5,-2],[5,-1],[4,2],[7,6]],[[73694,65711],[3,1],[4,-3]],[[73701,65709],[2,-5],[3,-4],[5,-1]],[[73711,65699],[5,4],[6,12],[4,5]],[[73726,65720],[4,0],[5,-3]],[[73735,65717],[8,-7],[6,2],[6,0]],[[73755,65712],[6,-1],[6,-3],[6,-7]],[[73773,65701],[4,-7],[4,0],[7,21],[2,3],[6,4],[2,3],[1,5],[-1,5],[1,5],[4,1]],[[73803,65741],[1,-12],[1,-25]],[[73805,65704],[4,-14]],[[73809,65690],[5,-12],[7,-10]],[[73821,65668],[4,-5],[3,-4],[12,-9],[6,-7]],[[73846,65643],[4,-8],[1,-6],[2,-12]],[[73853,65617],[4,-12],[1,-5]],[[73858,65600],[0,-6],[0,-6],[2,-13],[3,-8],[10,-15],[3,-10],[0,-11],[-1,-11],[0,-12],[3,-13],[5,-4],[13,3]],[[73896,65494],[6,-2],[1,0]],[[73903,65492],[1,1],[2,0],[3,3],[9,16],[2,2],[0,6],[-2,4],[-2,3],[-1,4],[0,7],[1,4],[0,5],[-3,5],[-3,4],[0,3],[1,3],[0,5],[1,9],[0,3],[-1,5],[-3,8],[0,6],[24,44],[5,-2],[3,-11],[0,-14]],[[73940,65615],[-2,-11],[-2,-9]],[[73936,65595],[1,-5],[2,-5],[2,-6],[2,-16],[2,-7],[4,-4]],[[73949,65552],[5,-3],[6,-1]],[[73960,65548],[5,-2],[5,-6]],[[73970,65540],[7,-15]],[[73977,65525],[2,-4],[3,-1]],[[73982,65520],[0,1],[0,-1]],[[73982,65520],[2,2],[3,2],[2,1],[3,-2],[9,-14]],[[74001,65509],[5,-4],[1,0]],[[74007,65505],[3,0],[11,10],[6,5],[3,8],[2,11],[0,13],[0,10],[2,6],[2,6],[2,7],[1,8],[0,9],[1,9],[2,6]],[[74042,65613],[4,1],[4,-5]],[[74050,65609],[4,-6]],[[74054,65603],[4,-4],[0,1],[1,-1]],[[74059,65599],[4,2],[6,10],[3,3],[5,0],[6,-4],[5,-6]],[[74088,65604],[3,-6],[2,-7]],[[74093,65591],[-1,-17],[2,-7],[8,-5],[20,1]],[[74122,65563],[7,-11],[3,-13]],[[74132,65539],[4,-10],[6,-5],[7,-1],[1,0]],[[74150,65523],[8,3],[3,1]],[[74161,65527],[2,1],[5,0]],[[74168,65528],[6,-7],[9,-17]],[[74183,65504],[15,-35],[11,-11],[8,-1]],[[74217,65457],[14,3],[16,-7],[6,7],[7,10],[7,4],[6,-3],[-1,-7],[-3,-10],[0,-8],[5,0],[24,13],[11,4],[5,1],[5,-2]],[[74319,65462],[1,-3],[1,-5],[2,-4]],[[74323,65450],[2,-3],[5,-1]],[[74330,65446],[9,9],[4,2]],[[74343,65457],[6,-2],[5,-4],[7,-4]],[[74361,65447],[7,1],[8,7],[7,11],[5,13],[4,15],[4,9]],[[74396,65503],[2,1],[6,-5]],[[74404,65499],[22,-2],[3,-2]],[[74429,65495],[5,-5],[4,-1]],[[74438,65489],[4,1],[7,5],[3,1]],[[74452,65496],[6,-4],[12,-12],[7,-2]],[[74477,65478],[6,-3],[4,-3],[2,-3],[1,-7],[-3,-10],[1,-23],[-3,-14],[-4,-14],[-6,-46],[-18,-53],[-7,-28],[0,-6],[0,-5],[2,-11],[0,-2],[3,-5],[0,-2],[0,-5],[-2,-3],[-1,-3],[-1,-4],[-2,-12],[-1,-7],[0,-7],[1,-6],[1,-3],[3,-8],[1,-6],[-2,-14],[-7,-27],[-4,-17],[-1,-39],[-4,-16],[-1,-5],[1,-5],[1,-4],[4,-7],[5,-20],[5,-6],[5,-4],[3,-6],[6,-14],[6,-18],[4,-20],[2,-8],[6,-17],[3,-9],[1,-9],[1,-24],[2,-22],[1,-11],[-1,-10],[-1,-11],[-4,-25],[-9,-28],[-4,-16],[-4,-24],[-2,-12],[0,-5],[1,-7],[-3,-23],[-8,-27],[-10,-20],[-9,-2],[-4,7],[-9,10],[-4,7],[-2,5],[-1,10],[-2,4],[-7,10],[0,2],[-5,-2],[-9,-13],[-5,0],[-5,5],[-4,3],[-4,-3],[-2,-12],[-2,-8],[-4,-4],[-5,1],[-3,6],[-5,4],[-6,-3],[-10,-14],[-10,-8],[-10,5],[-20,20],[-8,3],[-9,-1],[-9,-5],[-8,-8],[-3,-8],[-5,-20],[-4,-5],[-4,1],[-11,9],[-4,4],[-2,8],[-2,8],[-3,6],[-9,-5],[-15,-3],[-7,6],[-7,15],[-4,18],[-3,17],[-4,27],[0,10],[-1,10],[-3,0],[-4,-6],[-8,-16],[-4,-5],[-18,-11],[-8,-9],[-3,-13],[-6,-11],[-6,-8],[-8,-3],[-2,0],[-10,7],[-4,-1],[-2,-5],[-2,-7],[-3,-4],[-5,2],[-19,21],[-19,16],[-5,6],[-4,8],[-4,6],[-4,4],[-6,2],[-8,7],[-17,16],[-9,5],[-2,0],[-6,-1],[-2,1],[-2,3],[0,8],[-2,4],[-5,2],[-6,-2],[-10,-6],[-6,-7],[-2,-1],[-3,0],[-2,3],[-1,2],[-2,2],[-4,2],[-3,1],[-6,-1],[-2,2],[-1,2],[-19,21],[-9,5],[-10,-5],[-6,-2],[-5,-5],[-19,-29],[-6,-6],[-4,-2],[-2,3],[-1,5],[0,5],[0,4],[-3,4],[-2,-1],[-3,-3],[-3,2],[-15,21],[-4,9],[-2,19],[2,41],[-3,19],[-4,9],[-21,22],[-3,1],[-22,-15],[-12,-12],[-10,-10],[-5,-2],[-6,2],[-4,1],[-5,-8],[-4,-9],[-5,-6],[-10,-6],[-4,0],[-25,12],[-9,16],[0,19],[-1,17],[-10,8],[-7,-1],[-15,-11],[-7,1],[-1,7],[0,9],[-4,4],[-4,1],[-3,2],[-7,5],[-2,11],[-2,11],[-4,11],[-6,6],[-14,8],[-6,7],[0,1],[-3,8],[-5,2],[-4,-3],[-4,-5],[-3,0],[-33,16],[-4,5],[-2,12],[3,12],[4,13],[2,12],[2,22],[-1,21],[-2,21],[-5,20],[-7,19],[-8,10],[-80,26],[-6,7],[-5,13],[-3,11],[-4,5],[-8,-2],[-3,1],[-3,14],[-2,5],[-7,4],[-3,4],[-3,4],[-1,11],[-5,1],[-5,-4],[-14,-31],[-6,-7],[-9,0],[-11,3],[-4,2],[-6,-3],[-13,-2],[-5,-4],[2,-8],[8,-16],[1,-5],[1,-6],[0,-5],[-3,-2],[-2,-2],[-2,-5],[-2,3],[-12,9],[-39,37],[-20,13],[-31,7],[-26,1],[-7,-5],[-1,-5],[-1,-7],[1,-7],[4,-10],[0,-6],[-2,-7],[-6,-16],[-5,-9],[-5,-5],[-7,-1],[-6,4],[-3,6],[-2,8],[-3,10],[-3,7],[-14,21],[-10,7],[-34,0],[-18,7],[-13,13],[-6,4],[-35,4],[-6,13],[-3,21],[-3,42],[-3,21],[-5,14],[-8,6],[-35,-17],[-17,-3],[-6,-1],[-11,6],[-7,12],[-8,15],[-22,19],[-33,49],[-12,8],[-5,5],[-5,10],[-6,8],[-6,4],[-15,3],[-8,-7],[-11,-23],[-6,-8],[-8,1],[-8,8],[-7,11],[-14,14],[-11,21],[-6,8],[-7,5],[-14,5],[-5,8],[-4,10],[-6,7],[-24,23],[-4,6],[-2,5],[0,6],[-1,8],[-4,10],[-5,10],[-6,7],[-6,4],[-4,-1],[-2,-5],[-1,-7],[-3,-6],[-4,-4],[-4,-1],[-3,2],[1,8],[-5,2],[-2,4],[1,5],[5,3],[-4,13],[-16,33],[-4,16],[-6,33],[-6,13],[-6,6],[-41,13],[-2,6],[0,7],[-1,6],[-3,4],[-5,-3],[-5,0],[-6,2],[-4,3],[-5,6],[-1,8],[-1,9],[-2,8],[-4,3],[-11,0],[-6,2],[-4,5],[-11,19],[-4,6],[-9,4],[-5,4],[-3,7],[-5,18],[-4,5],[-10,3],[-5,3],[-5,4],[-2,5],[0,5],[1,5],[-1,3],[-11,1],[-5,-6],[-3,-7],[-1,-10],[3,-35],[-2,-8],[-5,6],[-12,25],[-5,5],[-6,0],[-5,-2],[-5,-2],[-6,4],[-3,8],[-8,27],[-2,3],[-5,2],[-2,2],[-2,4],[-3,9],[-2,4],[-4,5],[-10,3],[-5,3],[-4,6],[-10,22],[-9,9],[-2,1],[-5,2],[-5,7],[-2,22],[0,12],[1,10],[2,9],[3,9],[5,6],[4,4],[4,6],[3,9],[0,1],[-1,18],[2,25],[5,21],[9,7],[5,-1],[6,0],[5,2],[3,8],[0,8],[-5,24],[1,8],[5,1],[4,-5],[2,-1],[6,36],[1,13],[-1,11],[-2,3],[-2,0],[-3,0],[-1,6],[-2,23],[-6,18],[-2,9],[1,10],[3,4],[8,4],[2,6],[1,7],[1,3],[3,4],[2,5],[1,0],[5,8],[2,4],[2,5],[1,3],[-1,3],[-1,3],[1,4],[2,2],[3,4],[2,2],[6,12],[4,11],[0,13],[-3,14],[-3,15],[-3,14],[0,14],[4,16],[7,10],[17,8],[6,8],[14,32],[6,17],[4,20],[2,9],[4,5],[10,2],[6,3],[3,4],[8,12],[9,11],[3,6],[8,23],[4,7],[17,22],[6,15],[-4,14],[4,7],[5,10],[4,6],[3,-7],[2,-10],[5,-2],[19,11],[2,0],[3,-4]],[[72501,66771],[4,-9],[3,-11]],[[72508,66751],[3,-18],[7,-19]],[[72518,66714],[2,-8],[3,-25]],[[72523,66681],[3,-6],[1,0]],[[72527,66675],[7,4]],[[72534,66679],[6,0],[13,-11],[1,1],[0,-1]],[[72554,66668],[6,3],[3,7],[-1,16],[4,5],[5,2],[3,4],[0,1],[1,4],[1,9],[0,4],[-2,8],[0,4],[3,4],[4,1]],[[72581,66740],[4,-1],[1,0]],[[72586,66739],[3,1],[5,6],[3,7],[2,9],[1,18],[4,10],[1,5],[-1,5],[-1,9],[-1,5],[0,19],[1,9],[3,8],[1,8],[0,9],[0,7],[6,3],[5,-4],[10,-17],[6,-6],[7,-2],[3,2],[3,22],[2,4],[2,3],[5,1],[4,3],[1,5],[1,5],[2,3],[6,2],[6,-4],[4,-3],[30,-23],[6,-3],[6,2],[6,4],[6,1],[12,-9]],[[85422,97166],[0,-273],[0,-272],[1,-272],[0,-272],[0,-272],[1,-273],[0,-272],[0,-272],[1,-272],[0,-273]],[[85425,94443],[-1,0]],[[81171,89443],[-1,1],[-5,2]],[[81165,89446],[-2,2],[-2,3],[-1,3],[-2,5]],[[81150,89472],[-2,2],[-4,2]],[[80773,89335],[-2,2],[-3,2]],[[80731,89333],[-10,1],[-1,0]],[[80261,88771],[-2,2],[-3,3]],[[80256,88776],[-9,20],[-3,2]],[[80166,88797],[-35,10]],[[79970,88709],[-23,4]],[[79604,88623],[-2,3],[-2,3]],[[79509,86749],[1,0],[26,3]],[[79666,86316],[-3,0]],[[79658,86319],[-2,1],[-1,0]],[[79650,86320],[-30,9]],[[79582,86224],[-2,0],[-14,6],[-4,0]],[[79498,86027],[-24,6],[-4,2]],[[79470,86035],[-5,8],[-6,10]],[[79457,86055],[-2,2],[-4,1]],[[79397,85913],[-7,0],[-8,3]],[[79382,85916],[-2,1],[-3,2]],[[79377,85919],[-3,5],[-3,1]],[[79371,85925],[-2,1],[-1,0]],[[79491,85778],[10,0],[5,2],[3,2]],[[79545,85797],[6,3],[3,1],[47,0]],[[79601,85801],[1,0],[2,0],[2,1]],[[79607,85814],[-1,3],[-3,8],[-1,2]],[[79602,85827],[0,3],[0,3]],[[79603,85836],[3,2],[2,1]],[[79651,85786],[1,0],[-1,1]],[[79868,85718],[6,2],[6,1]],[[79990,85649],[1,0],[7,5]],[[80011,85688],[15,5],[13,6]],[[80070,85550],[-3,1],[-9,4]],[[80032,85545],[-14,4],[-13,-1]],[[80005,85548],[-3,1],[-13,6],[-4,0]],[[79951,85551],[-2,4],[-1,0]],[[79942,85558],[-3,1],[-3,-1]],[[79875,85475],[-4,1]],[[79837,85477],[-12,3]],[[79825,85480],[-2,2],[-1,2]],[[79822,85484],[0,3],[-1,3]],[[79821,85490],[-1,3],[-8,11]],[[79741,85492],[-2,1],[-3,2]],[[79736,85495],[-4,7],[-7,6]],[[79685,85540],[-2,1],[-3,1]],[[79672,85540],[-3,1]],[[79662,85550],[-2,1],[-4,1]],[[79628,85164],[-43,4],[-2,2]],[[79388,84232],[-3,1],[-3,1]],[[79382,84234],[-1,2],[-3,5]],[[79376,84244],[-1,2],[-6,2]],[[79369,84248],[-3,1],[-6,-2]],[[79232,83488],[6,7],[2,2]],[[79242,83498],[7,0]],[[79261,83236],[-7,4],[-1,1]],[[79251,83245],[-1,2],[-3,2]],[[79232,83249],[-3,1],[-7,3]],[[79176,83030],[3,1],[2,1]],[[79194,83030],[3,0],[2,1],[8,7],[2,2]],[[79050,82564],[-3,1],[-9,8]],[[79016,82556],[-2,3],[-4,10]],[[78999,82609],[-1,3],[-6,6]],[[78966,82621],[-3,5],[-4,2]],[[78959,82628],[-3,3],[-1,5],[-3,3]],[[78952,82639],[-2,3],[-12,5]],[[78851,82633],[2,2],[14,6]],[[78867,82641],[3,2],[2,2],[1,2]],[[78873,82647],[1,2],[0,2]],[[78862,82715],[0,2],[-1,3]],[[78861,82720],[-1,2],[-2,1]],[[78844,82718],[-6,1],[-7,1]],[[78778,82729],[-2,2],[-3,4]],[[78774,82750],[0,3],[-2,2]],[[78772,82755],[-7,8],[-2,2]],[[78758,82769],[-5,2],[-6,5]],[[78715,82796],[-11,21],[-4,10],[-8,27]],[[78681,82872],[-1,2],[-1,3]],[[78679,82905],[3,1],[6,0]],[[78701,82904],[3,0],[1,2]],[[78704,82914],[0,3],[-2,2]],[[78702,82919],[-1,2],[-24,14]],[[78641,82922],[-7,2],[-6,3]],[[78615,82953],[-1,1],[-4,-2]],[[78274,82473],[-2,1]],[[78188,82342],[-27,3]],[[78024,82151],[-3,4],[-2,2],[-3,1]],[[77985,81890],[-4,1],[-2,1]],[[77969,81907],[-5,13],[-2,3]],[[77954,81931],[-60,36],[-2,2],[-2,3]],[[77889,81976],[0,4],[0,7]],[[77869,82049],[1,3],[1,3],[2,5]],[[77876,82076],[-12,10],[-4,2],[-6,1]],[[77852,82093],[1,3],[2,11],[0,3]],[[77841,82122],[-5,6],[-16,11]],[[77812,82153],[0,3],[-1,10]],[[77810,82172],[0,3],[-2,5],[-7,12]],[[77799,82197],[0,3],[-1,3]],[[77799,82246],[0,6],[-1,3]],[[77724,82255],[-4,1]],[[77614,82108],[-23,1]],[[77544,82090],[-7,2],[-5,3],[-3,1]],[[77469,82067],[-5,1]],[[77459,82070],[-16,14],[-2,2]],[[77441,82086],[-1,3],[-1,2],[-1,4]],[[77397,82098],[-24,7]],[[77096,81551],[3,0],[2,0]],[[77121,81559],[12,0]],[[77042,81139],[-2,1]],[[77040,81140],[-5,5],[-10,5]],[[77023,81152],[-1,2],[-1,2]],[[76819,80283],[-15,0],[-17,8]],[[76724,80300],[-3,1],[-22,7],[-2,2],[-8,6]],[[76638,80215],[-4,1]],[[76634,80216],[-3,1],[-5,3],[-3,3]],[[76668,80049],[5,2],[2,0]],[[76829,79806],[2,3],[1,6]],[[76861,79804],[1,4],[2,19]],[[76868,79835],[5,4],[18,7],[18,3]],[[76979,79784],[3,0],[2,2]],[[77073,79698],[6,0]],[[77119,79648],[6,1],[13,5]],[[77198,79639],[8,3],[4,0]],[[77323,79495],[6,4],[2,2]],[[77331,79501],[43,4]],[[77388,79501],[3,1],[2,1],[14,23]],[[77410,79529],[3,1]],[[77552,79363],[-8,9],[-3,1]],[[77467,79328],[9,4],[2,0]],[[77469,79251],[-1,1],[-2,-1]],[[77405,79031],[4,3],[1,3],[2,5]],[[77470,78999],[3,0]],[[77779,78739],[26,4]],[[78234,78583],[15,1]],[[78283,78562],[23,2]],[[78696,77883],[28,4]],[[78963,77904],[15,14],[8,10],[7,10]],[[79020,77951],[29,-2],[9,3]],[[79082,77973],[26,0],[8,3]],[[79116,77976],[17,14],[6,4]],[[79188,77991],[8,3],[7,4],[30,33]],[[79233,78031],[11,9],[13,2]],[[79344,78011],[39,4]],[[79784,77775],[9,1],[7,5],[6,2]],[[80168,77401],[1,0],[39,10]],[[80391,77390],[1,0],[10,1]],[[80605,77311],[13,2],[12,7],[11,10]],[[80758,77298],[31,14],[34,25]],[[80966,77412],[7,2],[31,22]],[[81119,77450],[27,16],[85,49],[11,3]],[[81314,77495],[13,5],[25,17]],[[81386,77548],[15,0],[4,5]],[[81410,77593],[3,10],[19,50]],[[81624,77822],[35,44],[5,5]],[[81676,77875],[6,4],[17,23]],[[81722,77919],[24,12]],[[81797,77907],[1,0],[51,10]],[[82143,77709],[10,4],[84,63],[22,9]],[[82782,77552],[11,11],[4,6]],[[82824,77594],[6,6],[5,8]],[[82862,77648],[7,3],[7,2],[5,5]],[[82883,77672],[4,5],[17,5]],[[82912,77700],[2,5],[2,4],[6,9]],[[83052,77766],[29,4],[27,11],[5,4]],[[83149,77846],[2,10],[1,24]],[[83152,77880],[0,5],[-1,4],[-3,5]],[[83152,77944],[4,2],[1,4],[-1,4]],[[83153,77969],[-5,2],[-6,1]],[[83125,77967],[-1,1],[-4,5]],[[83098,78006],[4,1]],[[83110,78007],[0,-1],[2,2]],[[83115,78013],[8,11],[5,19],[1,2],[-1,4]],[[83127,78051],[-1,2],[-1,4],[1,3],[1,3]],[[83127,78063],[2,3],[6,32],[-1,6]],[[83134,78104],[3,6],[2,2]],[[83142,78113],[4,3],[2,5]],[[83198,78248],[4,11],[0,11]],[[83263,78379],[1,9],[1,8],[2,8],[1,8],[-2,8],[2,1]],[[83268,78421],[2,2],[3,5]],[[83273,78428],[-7,15],[1,9]],[[83267,78452],[3,2]],[[83282,78482],[1,3],[2,3]],[[83309,78516],[0,11],[-4,11]],[[83305,78538],[-1,8],[13,4]],[[83317,78550],[3,3],[1,4]],[[83321,78557],[1,5],[2,5],[4,11]],[[83327,78584],[-1,6],[1,13],[4,9],[14,20],[3,7],[0,14],[1,11],[2,10]],[[83351,78674],[6,17],[4,8],[2,3]],[[83375,78701],[1,0],[3,3]],[[83383,78712],[39,52],[15,14]],[[83446,78791],[6,5],[7,1]],[[83490,78836],[4,1]],[[83506,78836],[7,3],[4,7],[6,19],[6,12]],[[83529,78895],[-1,6],[-2,6]],[[83526,78907],[1,8],[2,7]],[[83548,78971],[3,5],[-1,2]],[[83542,78996],[0,5],[0,5]],[[83509,79074],[-1,3],[-1,4]],[[83522,79123],[3,9],[0,17],[0,3]],[[83528,79165],[1,6],[1,5],[4,13]],[[83529,79194],[-14,9],[-13,4]],[[83502,79207],[-19,16],[-14,8]],[[83355,79216],[-6,6],[-4,7],[-3,7]],[[83343,79259],[5,14],[-1,7]],[[83345,79290],[1,6],[-4,15]],[[83407,79365],[4,4],[1,5]],[[83412,79374],[2,6],[3,3]],[[83417,79383],[7,5],[3,4],[1,5]],[[83433,79410],[9,10],[16,28]],[[83479,79475],[25,23],[10,14]],[[83531,79546],[11,13],[20,15],[2,6],[-2,9]],[[83562,79589],[6,7],[8,3],[50,6]],[[83753,79627],[36,30],[69,26]],[[84216,79738],[7,5],[8,12]],[[84300,79732],[0,-1],[1,5]],[[84301,79746],[3,9],[5,1]],[[84322,79735],[9,19],[6,3]],[[84488,79649],[7,5],[7,2]],[[84651,79526],[1,0],[14,4]],[[84685,79504],[1,0],[7,5]],[[84693,79509],[-1,9],[-4,11]],[[84866,79467],[1,0],[17,9]],[[84995,79313],[7,8],[2,2]],[[85010,79205],[4,0],[2,3]],[[85017,79214],[2,5]],[[85247,78483],[1,6],[-2,4]],[[85533,77544],[3,3],[3,5],[2,3],[2,1],[3,1]],[[85610,77521],[8,1],[5,6]],[[85658,77541],[4,2],[46,5]],[[85729,77541],[1,0],[1,2]],[[85740,77560],[2,1]],[[85773,77480],[1,0],[6,2]],[[85865,77415],[6,3],[9,15]],[[85880,77433],[7,5],[6,1]],[[85927,77411],[1,0],[5,5]],[[86005,77374],[14,3]],[[86192,77149],[13,9],[13,6]],[[86261,77140],[7,1],[16,11]],[[86284,77152],[1,0],[6,1]],[[86435,76498],[12,6],[58,19]],[[86561,76479],[3,2],[14,15]],[[86610,76488],[11,3]],[[86645,76482],[3,2],[6,8]],[[86711,76494],[8,3],[3,3]],[[86736,76513],[4,2],[18,5]],[[86821,76512],[5,9],[1,5]],[[86825,76545],[1,3],[0,4]],[[86826,76552],[2,3],[7,15]],[[86849,76594],[3,6],[1,7]],[[86853,76607],[0,5],[-1,4],[-1,3],[-1,4],[0,5],[0,4]],[[86850,76632],[2,3],[2,3],[4,4],[4,2]],[[86894,76634],[4,5],[5,14]],[[87073,76716],[17,3],[5,3]],[[87112,76761],[5,3],[9,4],[4,3]],[[87134,76778],[7,17],[3,7]],[[87185,76818],[3,1]],[[87217,76824],[12,17],[4,4]],[[87233,76845],[5,3],[16,4]],[[87279,76866],[45,9],[5,3]],[[87187,75733],[0,-1],[3,4]],[[87172,75666],[-2,8],[-2,2],[0,-1]],[[87102,75486],[-1,2],[-2,3]],[[86899,75032],[-120,49],[-121,48],[-1,0]],[[86505,74976],[-19,5],[-1,0]],[[86427,74947],[-4,5],[-4,3]],[[86314,73791],[-23,2]],[[86258,73628],[-2,10]],[[86256,73638],[-1,22],[-1,6],[-4,6],[-5,-1],[-5,-5],[-3,-8],[4,-9],[-1,-8],[-4,-3],[-6,7],[-1,5],[1,11],[-1,5],[-2,2]],[[86227,73668],[-2,1]],[[86225,73669],[0,-1]],[[86225,73669],[-2,-1]],[[86223,73668],[-3,1],[-19,25]],[[86201,73694],[-2,9],[-15,23],[-6,20]],[[86178,73746],[0,21],[4,47],[-5,20]],[[86177,73834],[-1,0],[-12,3]],[[86164,73837],[-14,0]],[[86150,73837],[-12,8]],[[86138,73845],[4,4],[3,8],[2,9]],[[86147,73866],[1,7],[-4,5]],[[86144,73878],[-7,-3],[-14,-8],[-10,-1],[-4,1],[-4,3]],[[86105,73870],[-2,4],[-9,16]],[[86094,73890],[-2,3]],[[86092,73893],[-3,1],[-1,0]],[[86088,73894],[-3,-1],[-5,-5],[-3,-2],[1,-4],[2,-3],[2,-3],[3,-1],[-4,-3],[-9,-1],[-3,-4],[-1,-6],[0,-13],[-2,-6],[-2,-5],[-9,-40],[-2,-16],[-1,-8],[-5,-14],[-3,-12],[-1,-6],[-1,-7],[1,-10],[2,-4],[3,-2],[3,-5],[0,-4],[-2,-4],[-2,-5],[1,-8],[-7,-2],[-2,-8],[1,-7],[5,-2],[0,-4],[-8,-11],[-1,-19],[0,-22],[-1,-20],[-7,-19],[-9,-2],[-10,4],[-12,1],[1,-6],[0,-8],[-2,-6],[-7,-4],[-1,-4],[0,-5],[-2,-6],[-2,-3],[-3,-1],[-2,2],[-1,6],[-2,4]],[[85976,73550],[-7,6],[-2,5]],[[85967,73561],[-14,17],[-4,0],[-4,-3],[-3,-3],[-2,-1]],[[85940,73571],[-4,2]],[[85936,73573],[-2,7],[-3,1],[-1,0]],[[85930,73581],[-3,-1],[0,-4],[1,-5],[2,-5],[-3,-3]],[[85927,73563],[-3,7],[-1,0]],[[85923,73570],[-3,-3],[-2,-8],[-1,-10],[-2,-1],[-15,-5],[-2,-2],[-1,-4],[-1,-5],[0,-5],[2,-2],[1,-1],[1,-3],[-2,-8],[-3,-4],[-8,0],[-1,0],[0,-4],[3,0],[3,-1],[2,-3],[2,-3],[-3,-4],[-1,-4],[0,-4],[-1,-5],[-2,-2],[-3,-2],[-3,-3],[0,-6],[1,-4],[7,-1],[1,-5],[-1,-3],[-2,-3],[-2,-3],[-5,-9],[-8,-11],[-8,-13],[-4,-4],[-5,0],[-6,6],[-1,-10],[-3,-7],[-7,-12],[-5,-4],[-7,-1],[-5,-2],[-3,-8],[-4,-22],[-10,-5],[-6,2],[-18,8],[-27,2],[-3,-10],[-8,-2],[-20,2],[-3,-1],[-3,-4],[-4,-9],[-2,-2]],[[85712,73333],[-3,3],[-3,1]],[[85706,73337],[-12,-7]],[[85694,73330],[-3,1],[-10,7]],[[85681,73338],[-13,-1]],[[85668,73337],[-5,7],[-7,3]],[[85656,73347],[-28,4],[-45,-19],[-13,0],[-6,-3],[-3,-8],[-1,-8],[6,-47],[2,-9],[3,-8],[9,-4],[2,-11],[13,-38],[3,-11],[1,-12],[7,-11],[11,-13],[7,-5],[5,-10],[4,-11],[0,-10],[6,-12],[-4,-21],[-29,-78],[-11,-16],[-11,2],[4,8],[-4,3],[-5,-6],[-6,0],[-5,6],[1,12],[-5,-4],[-2,-1]],[[85562,73006],[-3,1]],[[85559,73007],[-1,6]],[[85558,73013],[1,10],[-1,10]],[[85558,73033],[-3,6]],[[85555,73039],[0,-1]],[[85555,73039],[-2,-6],[-3,-4],[-2,-2]],[[85548,73027],[-8,12],[-1,0]],[[85539,73039],[-11,-3],[-6,-3],[-3,-4],[-2,-9],[-4,-3]],[[85513,73017],[-5,1],[-6,5]],[[85502,73023],[-7,-3],[-26,1],[-8,4],[-1,0],[-3,-7],[-3,-2],[-2,2],[-9,9],[-11,5]],[[85432,73032],[-3,6],[-1,12]],[[85428,73050],[-5,-4]],[[85423,73046],[-4,2],[-5,4],[-5,2]],[[85409,73054],[-5,-2],[-4,-4],[-4,-3],[-6,1]],[[85390,73046],[-1,2],[-2,2]],[[85387,73050],[-2,3]],[[85385,73053],[-2,1],[-1,0]],[[85382,73054],[-2,0],[-5,-3],[-2,-1],[-11,2],[-5,2],[-5,4]],[[85352,73058],[2,1],[2,3]],[[85356,73062],[2,3],[0,4],[-3,3]],[[85355,73072],[-2,0],[-2,-2],[-2,-1],[-4,1],[-6,7],[-4,3],[-2,-2],[-4,-11],[-2,-3]],[[85327,73064],[-1,2],[-1,2],[-2,3]],[[85323,73071],[-2,1],[-1,0],[-3,-4],[-2,-1]],[[85315,73067],[-2,5]],[[85313,73072],[-2,2],[-3,1],[-2,1],[4,10],[5,7],[6,5],[6,4],[-4,6],[-14,8],[-5,1]],[[85304,73117],[2,6],[0,2]],[[85306,73125],[-8,5]],[[85298,73130],[-4,4],[-3,6]],[[85291,73140],[-1,8],[1,6],[3,2],[4,-1]],[[85298,73155],[1,0],[-3,7]],[[85296,73162],[-6,15],[-1,7],[-3,0]],[[85286,73184],[-14,17]],[[85272,73201],[-6,2],[-1,0],[-3,0],[-1,3],[-1,12],[-2,4],[-6,-3],[-6,-6],[-3,-6],[-4,-15],[-15,-9],[-4,-14],[-2,-5]],[[85218,73164],[-4,4],[-9,14]],[[85205,73182],[-3,4],[-5,3]],[[85197,73189],[-4,0],[-5,-3],[2,-7],[4,-4],[4,-4],[3,-4],[-4,-4],[-9,-13],[-3,-2]],[[85185,73148],[-9,1],[0,-1]],[[85176,73148],[-1,1],[-4,-2],[-5,-13],[-9,-16],[0,-7],[3,-7],[1,-7],[-1,-8],[-6,-15],[-4,-25],[-10,-23],[-2,-8],[2,-14],[4,-17],[0,-14],[-9,-5],[0,4]],[[85135,72972],[2,2],[0,2]],[[85137,72976],[1,2]],[[85138,72978],[1,2],[-8,1]],[[85131,72981],[-1,0],[-8,-10],[-14,-25],[-3,-7],[-7,-23],[-3,-7],[-7,-10],[-3,-6],[-7,-25],[-2,-6],[-4,-5],[-32,-29],[-6,-9],[4,-10],[-4,-8],[-4,-6],[-3,-6],[1,-7],[-3,-1],[-3,-3],[-2,-3],[-2,-4],[1,-5],[-1,-6],[-6,-14],[-5,-5],[-5,-1],[-5,-3],[-3,-8],[4,1],[4,-1],[1,-2],[-2,-6],[-3,-3],[-9,-1],[-4,-5],[-3,-3]],[[84982,72709],[-4,4]],[[84978,72713],[-3,5],[-3,3],[-5,-1],[-3,-3],[-12,-12],[-2,0],[-12,8],[-2,1],[-3,0],[-2,-3],[-1,-4],[-1,-3],[-3,-2],[-8,-2],[-7,-7],[-10,-21],[7,-15],[3,-8],[-4,-4],[-16,-1]],[[84891,72644],[0,2],[-3,5]],[[84888,72651],[-3,5],[-4,2],[-1,-1]],[[84880,72657],[0,1],[-3,-4],[-1,-11],[-1,-12],[-2,-6],[-3,-3],[-12,0],[-4,-1],[-2,-3],[-3,-7],[-1,-4],[0,-8],[-1,-3],[-2,-3],[-5,1],[-2,-2],[-1,-8],[0,-7],[-1,-4]],[[84836,72573],[-6,0]],[[84830,72573],[-1,1],[-4,5]],[[84825,72579],[-2,2],[-1,0],[-2,-1],[-5,-2],[-4,2]],[[84811,72580],[-4,3]],[[84807,72583],[0,-1]],[[84807,72583],[-4,-1],[-5,-3],[-1,-6],[-2,-6],[-2,-4],[-4,-2],[-7,-5],[-10,-5],[-8,-5],[-6,-6],[-5,-5],[-7,-5],[-4,-4],[-7,-3],[-7,-5],[-2,-7],[0,-7],[3,-7],[3,-7],[2,-7],[-1,-5],[-4,-2],[-6,-1],[-5,1],[-8,-2]],[[84710,72474],[-6,1],[-3,1]],[[84701,72476],[-2,2],[-1,2]],[[84698,72480],[-2,6],[-3,4]],[[84693,72490],[-1,0],[-1,-3],[-2,-7],[-9,-19],[-14,-21],[-6,-5],[-6,-3],[-4,-5],[-3,-11],[-3,-13],[-2,-9],[-6,-4],[-14,-5],[-4,-5],[-5,-7],[-11,-11],[-4,-6],[-1,-3],[0,-7],[-1,-2],[-1,-2],[-3,-1],[-2,-1],[-22,-32],[-17,-25],[-4,-7],[0,-1],[0,-51],[-17,-44],[-30,-145],[8,4],[0,-11],[7,-29],[18,-30],[11,-9],[5,-36],[-2,-17],[8,-45],[12,-25],[18,-19],[51,-20],[23,3],[24,19],[21,33],[11,17],[8,-4],[26,-15],[10,3],[0,-15],[-18,-47],[-31,-123],[-15,-99],[-15,-11],[-15,-28],[-3,-16],[-33,-21],[-16,-23],[-10,-28],[-5,-31],[2,-31],[20,-78],[-36,-44],[-15,-37],[-10,-66],[-9,-56],[2,-53],[28,-107],[17,-26],[7,-5],[1,-3],[35,-26],[24,4],[21,15],[7,5],[2,3],[20,-11],[46,-49],[53,-20],[49,12],[6,-3],[3,-7],[6,-10],[8,-11],[22,-14],[28,3],[22,18],[17,32],[8,40],[16,-30],[31,-25],[4,-11],[-51,-49],[-13,-25],[-8,-32],[0,-22],[-17,-15],[-14,-29],[-7,-38],[3,-47],[22,-55],[20,-28],[10,-5],[-6,-31],[-1,-6],[-7,-10],[-11,-47],[7,-55],[23,-39],[25,-15],[11,2],[6,-8],[7,-44],[-30,-1],[-26,-27],[-16,-45],[-24,-45],[-5,-30],[3,-38],[12,-38],[23,-29],[27,-8],[27,11],[21,27],[12,41],[16,28],[5,-40],[11,-22],[-16,-4],[-18,-24],[-11,-30],[-3,-32],[3,-37],[3,-5],[-3,-2],[-16,-19],[-12,-27],[-10,-42],[1,-44],[0,-1],[-7,3],[-22,-12],[-19,-24],[-12,-32],[-5,-38],[4,-37],[13,-36],[-14,-45],[0,-49],[4,-14],[-2,-15],[-22,-55],[-10,-13],[-13,-6],[-66,14],[-24,-12],[-17,13],[-30,0],[-22,-17],[-16,-30],[-13,-41],[0,-18],[-1,-27],[9,-42],[23,-37],[-4,-43],[6,-60],[8,-21],[-13,2],[-25,-15],[-21,-33],[-10,-40],[-1,-43],[10,-46],[17,-34],[23,-23],[28,-7],[25,11],[20,25],[14,42],[2,47],[-10,50],[-12,22],[17,-1],[33,28],[12,26],[6,31],[-5,56],[8,7],[5,8],[18,16],[18,-35],[31,-19],[-21,-35],[-9,-32],[-2,-39],[7,-38],[15,-30],[29,-26],[46,-7],[26,7],[-10,-38],[1,-45],[14,-46],[11,-16],[-2,-111],[-40,-51],[-17,-39],[-8,-45],[0,-47],[8,-54],[14,-40],[21,-31],[25,-19],[26,-4],[126,38],[47,29],[31,36],[29,65],[13,62],[-1,14],[1,2],[1,46],[-8,42],[42,116],[25,5],[16,18],[17,35],[0,-258],[0,-257],[0,-257],[0,-258],[0,-257],[0,-257],[0,-258],[0,-257],[0,-257],[0,-258],[0,-257],[0,-224],[0,-224],[0,-224],[0,-224],[0,-224],[-78,-2],[-24,-10],[-21,-25],[-16,-50],[-3,-59],[-26,4],[-29,20],[-32,-1],[-27,-20],[-19,-33],[-10,-44],[1,-46],[-126,-1],[-126,0],[-126,0],[-126,0],[-126,-1],[-126,0],[-126,0],[0,-201],[0,-200],[0,-201],[-113,-6],[-43,-60],[-59,-171],[-33,-132],[-6,-91],[-3,-146],[11,-146],[28,-132],[52,-46],[133,-1],[134,-1],[133,-1],[133,-1],[134,-1],[133,-1],[133,-1],[133,-1],[134,-1],[133,-1],[0,-61],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[-51,-146],[-50,-147],[-79,-228],[-79,-229],[-79,-228],[-79,-229],[-79,-229],[-79,-228],[-79,-229],[-78,-228],[-79,-229],[-79,-228],[0,-259],[0,-260],[0,-259],[0,-259],[26,-253],[26,-253],[26,-253],[26,-253],[25,-253],[26,-253],[26,-253],[26,-254],[26,-253],[26,-253],[26,-253],[2,-81],[-7,-103],[-82,-70],[-35,-51],[-3,-8],[-17,-37],[-61,-57],[-37,-43],[-84,-36],[-75,-76],[10,-39],[28,-100],[9,-31],[8,-14],[8,-3],[4,5],[5,15],[4,6],[5,4],[4,0],[3,-3],[4,-7],[4,-8],[2,-9],[2,-9],[1,-9],[0,-5],[-1,-7],[0,-2],[0,-4],[1,-7],[0,-1],[1,2],[4,2],[5,1],[5,2],[4,5],[2,7],[0,6],[-1,9],[0,4],[0,2],[1,2],[3,8],[1,4],[0,16],[2,6],[1,1],[1,0],[3,3],[8,14],[6,14],[1,2],[1,2],[1,5],[1,19],[4,31],[0,11],[-3,115],[13,6],[37,49],[50,45],[10,19],[17,-54],[8,-36],[-2,-22],[1,-14],[-2,-8],[-2,-11],[0,-9],[1,-9],[3,-7],[3,-5],[4,-2],[5,1],[4,3],[5,6],[2,3],[13,11],[4,7]],[[84740,44987],[1,4],[1,8],[0,3]],[[84742,45002],[1,3],[3,2],[1,-1],[1,-4],[2,-3],[5,-6],[5,-7],[3,-5],[1,-4],[3,-11],[-1,-12],[-4,-35],[0,-5],[1,-6],[1,-3],[0,-3],[-1,-5],[-2,-2]],[[84761,44895],[-7,0]],[[84754,44895],[-3,0],[-4,-5],[-3,-5],[-2,-3],[-4,1]],[[84738,44883],[-1,2],[-4,7]],[[84733,44892],[-2,3],[-2,1],[-5,0],[-1,0],[-2,-1],[-7,-2],[-4,-11],[-1,-17],[1,-19],[2,-9],[1,-5],[8,-14],[5,-7],[2,-3],[0,-4],[0,-9],[0,-4],[6,-19],[2,-9],[1,-14],[2,-20],[37,-92],[107,-125],[107,-125],[107,-125],[107,-124],[107,-125],[107,-125],[0,-278],[0,-277],[0,-245],[0,-245],[0,-245],[0,-245],[9,-10],[33,-81],[27,-41],[16,-22],[51,-122],[30,-72],[27,-44],[47,-58],[11,-5],[41,15],[70,-43],[42,-7],[2,-2],[8,-4],[1,-1]],[[85833,41856],[-1,-65],[-1,-2],[2,-50],[0,-5],[0,-209],[0,-209],[0,-208],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[1,-278],[0,-278],[0,-278],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-191],[0,-191]],[[85834,35170],[0,-253],[0,-254],[0,-254],[0,-254],[0,-254],[0,-254],[-1,-254],[0,-253],[0,-254],[0,-254]],[[85833,32632],[-73,-52],[-63,-43],[-110,-100],[-80,-25],[-89,-52],[0,-177],[0,-176]],[[85418,32007],[0,-193],[0,-192],[0,-193],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-267],[0,-267],[0,-266],[0,-267],[0,-267],[0,-266],[0,-267]],[[85418,12896],[-28,11],[-48,46],[-22,42],[-1,17],[21,41],[6,36],[-12,34],[-27,27],[-58,34],[-37,10],[-47,22],[-42,7],[-47,-4],[-44,24],[-27,7],[-26,2],[-29,-2],[-25,-8],[-25,-14],[-43,-31],[-65,-16],[-38,-20],[-22,-19],[-16,-20],[-30,-80],[-7,-8],[-52,-4],[-38,39],[-24,12],[-27,8],[-54,7],[-55,-3],[-32,-9],[-73,-32],[-10,-4],[-25,-16],[-25,-22],[-50,4],[-35,-3],[-71,-20],[-71,-20],[-35,-3],[-35,-13],[-47,-8],[-23,-7],[-47,-26],[-54,-23],[-9,5],[-28,51],[-24,22],[-38,16],[-48,4],[-66,-12],[-67,-39],[-75,-12],[-59,-32],[-122,-45],[-68,-17],[-46,-21],[-24,-5],[-45,-5],[-34,-8],[-18,1],[-16,5],[-39,29],[-21,11],[-44,10],[-30,-1],[-39,-12],[-132,-23],[-53,8],[-33,-3],[-38,39],[-26,19],[-34,15],[-35,5],[-39,-5],[-38,-16],[-38,-23],[-46,-39],[-43,1],[-30,-3],[-4,1],[0,6],[23,53],[3,34],[-41,113],[-25,35],[-41,28],[-88,35],[-38,24],[-21,10],[-38,7],[-53,3],[-40,-2],[-2,12],[9,46],[-5,19],[-16,26],[-54,56],[-63,45],[-39,20],[-28,34],[-26,21],[-31,18],[-66,27],[-15,11],[-33,36],[-20,11],[-21,7],[-37,3],[-39,-3],[-117,-30],[-36,-9]],[[81249,13508],[0,231]],[[81249,13739],[1,232],[0,231],[0,278],[0,277],[0,278],[0,278],[0,278],[0,277],[0,278],[0,278],[0,278],[0,278],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,262],[0,261],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,55],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253]],[[81250,44646],[122,0],[122,0],[122,0],[122,0],[122,0]],[[81860,44646],[1,0],[0,196],[0,196],[0,196],[-70,130]],[[81791,45364],[-4,128],[17,88]],[[81804,45580],[51,109],[51,108],[125,2]],[[82031,45799],[126,2],[0,5],[77,0],[77,0],[0,260],[0,261],[0,260],[0,260],[0,261],[-122,0],[-122,0],[-122,0],[-122,0],[-122,0],[-122,0]],[[81579,47108],[43,246]],[[81622,47354],[44,246],[43,246]],[[81709,47846],[44,246],[44,239]],[[81797,48331],[6,54]],[[81803,48385],[2,7],[1,7]],[[81806,48399],[7,17],[1,2],[2,2],[20,8]],[[81836,48428],[6,4],[1,2]],[[81843,48434],[2,3],[3,7],[1,5],[1,4]],[[81850,48453],[0,7],[1,3]],[[81851,48463],[3,4],[19,13],[1,3]],[[81874,48483],[3,4],[5,10],[2,9]],[[81884,48506],[1,12],[1,13],[1,12],[2,12],[2,11]],[[81891,48566],[4,10],[12,26]],[[81907,48602],[2,4],[3,21]],[[81912,48627],[5,17],[1,6],[0,6],[0,19],[-1,6],[-1,3],[-1,3]],[[81915,48687],[-1,6],[-3,9]],[[81911,48702],[-1,5],[0,19],[0,4],[0,3]],[[81910,48733],[1,3],[2,3]],[[81913,48739],[5,4],[33,15]],[[81951,48758],[17,8],[12,7]],[[81980,48773],[7,7],[9,13]],[[81996,48793],[40,75],[-6,25],[0,7]],[[82030,48900],[4,11],[4,11]],[[82038,48922],[6,20],[0,13]],[[82044,48955],[-2,14],[-3,15],[-2,16],[1,19],[18,161],[2,12],[2,6],[2,5]],[[82062,49203],[14,9],[1,1]],[[82077,49213],[8,2]],[[82085,49215],[13,4],[24,21]],[[82122,49240],[7,4],[4,-1],[2,-4],[0,-7],[-3,-25],[5,-2],[3,0],[4,2],[4,8],[4,14]],[[82152,49229],[15,51],[1,13]],[[82168,49293],[1,28],[2,8]],[[82171,49329],[-3,68],[-1,-1]],[[82167,49396],[-5,-3],[-4,-3],[-3,-5],[-2,-1],[-2,1],[-2,1]],[[82149,49386],[-1,4],[-3,6]],[[82145,49396],[-2,8],[-7,11],[-1,4],[-2,11],[-2,7],[-5,10],[-4,5]],[[82122,49452],[-3,4],[-3,1]],[[82116,49457],[-2,1],[-2,1]],[[82112,49459],[-8,8],[-10,5]],[[82094,49472],[-3,3],[-3,3]],[[82088,49478],[-14,23],[-2,6],[-1,8]],[[82071,49515],[1,7],[-1,9]],[[82071,49531],[-1,8],[-9,24],[-2,7]],[[82059,49570],[-6,66],[-1,22]],[[82052,49658],[0,9],[-2,9]],[[82050,49676],[-14,40],[-5,21],[-4,19]],[[82027,49756],[-1,12]],[[82026,49768],[-1,28],[-1,9]],[[82024,49805],[-4,22],[0,9],[1,41],[2,20],[2,9],[7,26],[1,6],[1,7]],[[82034,49945],[4,38],[1,11]],[[82039,49994],[1,7]],[[82040,50001],[1,2],[-1,2]],[[82040,50005],[-1,2]],[[82039,50007],[-1,2],[-10,4]],[[82028,50013],[-8,4],[-2,0],[-5,-2],[-6,-2],[-4,0],[-7,-11],[-22,-51],[-3,-9],[-1,-4],[-2,-4],[-3,-3],[-8,-8],[-3,-3],[-9,-19],[-2,-1],[-3,0],[-2,7],[-1,6],[0,8],[1,7],[0,5],[-1,4]],[[81937,49937],[-1,3],[-1,5]],[[81935,49945],[0,7]],[[81935,49952],[1,10],[4,28]],[[81940,49990],[9,42],[0,6],[0,6],[-1,8],[-1,8],[-3,12],[-6,20]],[[81938,50092],[-1,5],[-1,6]],[[81936,50103],[1,14],[-1,8]],[[81936,50125],[-1,6]],[[81935,50131],[-2,12],[-1,7],[-1,7]],[[81931,50157],[0,16]],[[81931,50173],[1,9],[3,20]],[[81935,50202],[16,64],[2,5],[7,11],[3,7],[2,7]],[[81965,50296],[1,8],[-1,5]],[[81965,50309],[-1,6],[-2,7],[-1,7],[-1,24]],[[81960,50353],[-1,5],[-3,7],[-2,5]],[[81954,50370],[-1,6],[-2,5],[-2,5]],[[81949,50386],[-2,2],[-2,2],[-2,2]],[[81943,50392],[-2,3],[-2,9],[-2,4],[-3,2],[-5,1],[-16,-2],[-2,-1],[-1,-1],[-1,-3],[-2,-9],[-3,-3],[-6,-5],[-14,-4],[-14,-10],[-8,-10],[-6,-11],[-6,-7],[-79,-18],[-5,1],[-5,3],[-21,7],[-4,3],[-4,4],[-7,10],[-4,4],[-4,2],[-13,1],[-11,-2],[-1,0],[-11,0],[-5,-1],[-5,-5],[-3,-4],[-4,-9],[-2,-4],[-4,-2],[-12,-3],[-4,-1],[-12,-11],[-4,-2],[-14,-3],[-8,-5],[3,18],[2,7]],[[81609,50335],[4,9],[3,4],[6,6]],[[81622,50354],[3,4],[6,19]],[[81631,50377],[10,22],[2,10]],[[81643,50409],[2,14],[0,11],[1,11]],[[81646,50445],[2,10],[2,12]],[[81650,50467],[2,12]],[[81652,50479],[0,9],[-2,7]],[[81650,50495],[-2,5],[-3,3]],[[81645,50503],[-3,0],[-3,-1],[-5,-4],[-3,-1],[-2,1],[-1,3],[-1,4]],[[81627,50505],[1,6],[1,12],[0,6],[-1,6]],[[81628,50535],[1,7],[1,6]],[[81630,50548],[5,9],[3,4]],[[81638,50561],[14,13],[8,14],[3,3],[5,4],[3,4],[26,45],[3,4],[7,6],[7,13],[3,4]],[[81717,50671],[3,3],[2,6]],[[81722,50680],[1,9],[1,11],[0,9],[-1,10]],[[81723,50719],[-3,11],[-1,8]],[[81719,50738],[0,8],[4,45]],[[81723,50791],[-1,5],[-1,0]],[[81721,50796],[-4,-6],[-3,-1]],[[81714,50789],[-3,2],[-3,5]],[[81708,50796],[-3,6]],[[81705,50802],[-2,5],[-11,7]],[[81692,50814],[-11,-1],[-40,-12],[-5,-4],[-6,-11],[-17,-42],[-44,-59],[-7,-4]],[[81562,50681],[0,1]],[[81562,50682],[-8,7]],[[81554,50689],[-14,34],[-6,6],[-6,1],[-6,-3],[-11,-10],[-12,1],[-21,32],[-13,10],[-16,7],[-13,1],[-4,3],[-9,14],[-10,10],[-11,2],[-10,-4],[-11,-7],[-4,0],[-1,4]],[[81376,50790],[2,6],[8,13]],[[81386,50809],[4,9]],[[81390,50818],[4,11],[1,12]],[[81395,50841],[0,12],[-3,8]],[[81392,50861],[-4,5],[-7,6]],[[81381,50872],[-5,1],[-13,-1]],[[81363,50872],[-6,2]],[[81357,50874],[-4,4],[-5,1]],[[81348,50879],[-5,-4],[-3,-5],[-1,-5],[-2,-5],[-4,-3],[-2,0],[-7,5],[-83,8],[-7,-3],[-4,-6],[-4,-8],[-5,-7],[-5,-3],[-17,-4],[-6,-4],[-32,-30],[-5,-9],[-3,-13],[2,-5],[6,-1],[2,-4],[0,-7],[-1,-6],[-9,-35],[-15,-84],[-2,-6],[-3,-4],[-7,-2],[-1,0],[-22,1],[-17,-12],[-25,-58],[-16,-9]],[[81045,50551],[-8,5]],[[81037,50556],[-15,12],[-7,4],[-5,1],[-4,-1],[-23,-18],[-7,-19],[-3,-3]],[[80973,50532],[-3,12],[-2,10]],[[80968,50554],[-1,8],[-3,5],[-5,1],[-11,-7],[-5,-2]],[[80943,50559],[-6,0]],[[80937,50559],[-6,4],[-38,33]],[[80893,50596],[-5,1],[-63,-32],[-17,-1],[-8,-3],[-8,-8],[-16,-26],[-2,-9],[-1,-9],[0,-5],[-2,-3],[-2,1]],[[80769,50502],[-2,5],[-1,1],[0,-1]],[[80766,50507],[-4,-3],[0,-2],[-6,-4],[-1,0],[-3,2],[-1,0],[-3,-3],[-6,-10],[-3,-3],[-4,1]],[[80735,50485],[-2,4],[-2,4],[-2,3],[-4,0]],[[80725,50496],[-1,-2],[-1,-4],[-2,-7],[-12,-11]],[[80709,50472],[0,1]],[[80709,50473],[-13,3],[-13,12]],[[80683,50488],[-11,17],[-11,31],[-5,9],[-3,3]],[[80653,50548],[-14,6],[-1,0]],[[80638,50554],[-3,-2],[-4,-2],[-3,2],[0,11],[-2,14]],[[80626,50577],[-13,40],[-6,24],[-5,11]],[[80602,50652],[-5,5],[-16,4],[-5,4],[-7,10]],[[80569,50675],[-5,21],[-6,9]],[[80558,50705],[-10,10],[-3,6]],[[80545,50721],[-3,12],[-6,32]],[[80536,50765],[-3,9],[-5,5],[-5,0],[-6,-1],[-6,1]],[[80511,50779],[-4,8],[-5,24],[-2,3]],[[80500,50814],[-6,-5]],[[80494,50809],[-1,0],[-1,16]],[[80492,50825],[-2,6],[-25,42],[-5,14],[-3,11]],[[80457,50898],[-1,11],[-1,26]],[[80455,50935],[2,43]],[[80457,50978],[-1,11],[-5,4],[-13,0]],[[80438,50993],[-3,2]],[[80435,50995],[-3,6],[-3,6]],[[80429,51007],[-2,7],[-1,7]],[[80426,51021],[0,4],[0,4]],[[80426,51029],[-2,20],[0,9]],[[80424,51058],[3,7],[10,17]],[[80437,51082],[3,7],[4,12],[7,26]],[[80451,51127],[6,30],[0,2],[36,253],[36,254]],[[80529,51666],[0,223],[0,224],[0,223],[0,224],[0,223],[-129,0],[-128,0],[-129,0],[-128,0],[-129,0],[-129,0],[-128,0],[-129,0],[-128,0],[-129,0],[-129,0],[0,-220],[0,-221],[0,-221],[0,-221],[6,-139],[6,-140],[23,-151],[22,-151],[-1,-269],[-81,-153],[-82,-154],[-40,-45],[-28,-1],[-34,9],[-8,-1],[-42,-35],[-39,-43],[-20,27],[-5,10],[-11,9],[-23,-43],[-22,44],[-19,20],[-13,6],[-8,6],[-17,16],[1,25],[-9,20],[-104,101],[-22,35],[-48,32],[-61,124],[-79,71],[-54,83],[0,-2]],[[78302,51211],[0,1]],[[78302,51212],[-64,96],[-12,31]],[[78226,51339],[-54,45],[-19,30]],[[78153,51414],[-18,43],[-34,32]],[[78101,51489],[-11,21],[-10,37]],[[78080,51547],[-17,129],[14,97],[-33,75],[-25,84]],[[78019,51932],[-76,121],[-23,62]],[[77920,52115],[-8,97],[-24,103],[-9,64],[-1,43]],[[77878,52422],[9,126],[-1,51],[-33,69]],[[77853,52668],[-34,128],[-40,67]],[[77779,52863],[-9,47]],[[77770,52910],[-3,91],[5,71]],[[77772,53072],[14,43],[26,33],[10,65],[-6,86],[-12,64],[-16,26],[-21,-49],[-21,-24],[-20,-11],[-21,6],[-29,41]],[[77676,53352],[-37,112],[-15,38]],[[77624,53502],[2,1],[15,98],[13,11],[26,-15],[16,-4],[8,3],[13,30],[5,4],[24,-18],[19,-16],[6,-9],[10,-34],[9,-7],[7,0],[6,5],[5,11],[4,16]],[[77812,53578],[1,0],[2,9]],[[77815,53587],[2,12]],[[77817,53599],[2,14],[-1,5]],[[77818,53618],[0,10],[0,5]],[[77818,53633],[2,5],[2,4]],[[77822,53642],[2,5],[-1,8],[-2,13]],[[77821,53668],[0,10],[2,22],[0,13]],[[77823,53713],[1,6],[1,5]],[[77825,53724],[4,2],[3,-3],[2,-5],[2,-2],[4,0]],[[77840,53716],[1,0],[0,1],[4,5],[2,0]],[[77847,53722],[3,0],[3,-2],[2,-4],[11,-63],[3,-10],[5,-10],[11,-10],[6,-4],[5,-1],[7,2],[4,-2],[9,-13],[5,-4],[17,-10],[10,-9],[4,-2]],[[77952,53580],[1,0],[4,1]],[[77957,53581],[18,26],[5,0],[1,-4],[-1,-12],[1,-5],[3,-3],[2,-1],[3,0],[3,-1],[7,-7],[2,-11],[1,-26],[1,-7],[1,-6],[3,-11],[1,-5],[-1,-5],[-1,-5],[0,-5],[0,-16],[0,-4],[3,-9],[1,1],[1,3]],[[78011,53468],[4,2]],[[78015,53470],[0,1],[4,-1],[11,-6],[5,2]],[[78035,53466],[8,16],[5,2]],[[78048,53484],[9,-14],[4,-3]],[[78061,53467],[1,0],[12,5]],[[78074,53472],[4,-2],[2,-7],[0,-12],[0,-13],[-3,-5],[-3,-3],[-4,-10],[0,-12],[4,-9],[5,-8],[2,-11],[-1,-21],[-1,-32],[-2,-18],[0,-11],[-2,-10],[-5,-3],[-6,-3],[-5,-6],[-11,-46],[-2,-6],[-1,-7],[1,-6],[4,-11],[3,-13],[2,-4],[2,-3]],[[78057,53180],[6,1]],[[78063,53181],[2,-1],[7,-9],[5,-12],[4,-14],[3,-14],[5,-4],[8,5],[13,16],[4,8]],[[78114,53156],[4,10],[2,11]],[[78120,53177],[1,12],[3,25],[9,9]],[[78133,53223],[11,4],[10,10]],[[78154,53237],[10,13]],[[78164,53250],[40,31],[6,2]],[[78210,53283],[0,1],[6,-3],[4,-12],[2,-6],[1,-5],[2,-2],[4,-1],[2,-2],[0,-5],[-1,-6],[0,-5],[6,-25],[4,-9],[6,-3]],[[78246,53200],[3,3],[5,9],[3,2]],[[78257,53214],[4,-2],[2,-6],[2,-6],[2,-6],[6,-7],[4,1]],[[78277,53188],[4,7],[2,12]],[[78283,53207],[1,3]],[[78284,53210],[9,10],[1,5]],[[78294,53225],[1,5]],[[78295,53230],[2,5],[3,4],[9,16],[1,21]],[[78310,53276],[1,24],[4,23],[7,16],[20,32]],[[78342,53371],[8,14],[3,18],[-2,44]],[[78351,53447],[1,7],[1,22],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,-1],[138,0],[138,0],[138,0],[137,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0]],[[81250,53475],[1,274],[0,275]],[[81251,54024],[0,274],[0,274],[0,274],[0,275]],[[81251,55121],[1,274],[0,252]],[[81252,55647],[0,252],[0,252],[0,252],[0,251],[1,252],[0,252],[0,252],[0,252],[0,252],[0,259]],[[81253,58173],[-4,0],[0,254],[0,255],[0,255],[0,255],[0,140],[0,139],[0,268],[0,268],[0,268],[0,268],[0,268],[0,268],[0,268],[0,268],[0,268],[-3,0],[-16,12],[-35,43],[-22,6],[-15,-9],[-28,-36],[-49,-32],[-120,-34],[-51,-39],[-46,13],[-72,-58],[-6,-17],[-4,-27],[9,-51],[-2,-66],[-12,-41],[-28,-59],[11,-89],[-1,-72],[47,-85],[46,-46],[13,-20],[18,-89],[12,-89],[3,-35],[-3,-30],[-33,-127],[-54,-98],[-16,-42],[-32,-159],[4,-50],[-44,-155],[-26,-39],[-51,-22],[-34,-116],[-26,-25],[-39,-12],[-28,-58],[-21,-26],[-48,-24],[-46,8],[-17,13],[-32,47],[-28,-6],[-23,7],[-71,67],[-72,68],[-18,32],[-11,44],[-4,48],[5,66],[-14,47],[-5,37],[3,67],[-6,100],[2,77],[8,60],[21,63],[20,35],[52,61],[31,49],[17,37],[18,73],[39,74],[34,28],[40,0],[28,31],[50,28],[-18,112],[-25,74],[-2,66],[-22,87],[0,150],[6,54],[-3,16],[-30,0],[-14,-12],[-1,-30],[9,-97],[-4,-34],[-10,-26],[-17,-22],[-37,-17],[-16,6],[-16,16],[-22,51],[-6,40],[2,41],[8,39],[14,36],[-29,65],[-9,30],[-52,3],[-41,-26],[-36,-12],[-40,-28],[-3,-3],[-10,-14],[-7,13],[-11,98],[-1,3],[1,2],[1,2],[0,2],[0,1],[-5,13],[-6,2],[-3,-2],[-4,-3],[-3,-1],[-3,4],[-6,-4],[-13,25],[-4,2]],[[79980,61963],[-9,19],[-8,11]],[[79963,61993],[-4,7],[-3,9],[-1,7],[-2,5],[-6,5],[-9,4],[-5,2],[-4,-1],[-5,-3],[-11,-15],[-5,-4],[-16,-7],[-6,0],[-11,3],[-5,-1],[-2,-3],[-2,-9],[-3,-3],[-2,0],[-3,2],[-5,3],[-3,3]],[[79850,61997],[-1,20],[-3,8],[-6,3]],[[79840,62028],[-4,-3],[-8,-15],[-10,-11],[-4,7],[-1,2],[-7,41],[-9,16],[-7,-2],[-9,-5]],[[79781,62058],[-11,5],[-22,36]],[[79748,62099],[-8,9],[-12,5]],[[79728,62113],[-5,3],[-4,8],[-1,11]],[[79718,62135],[3,9],[4,8]],[[79725,62152],[3,10],[-1,11]],[[79727,62173],[-3,8]],[[79724,62181],[-4,5],[-6,0]],[[79714,62186],[-5,-4],[-5,-5],[-4,-2],[0,1]],[[79700,62176],[-6,5],[-4,9]],[[79690,62190],[-2,8],[-4,6]],[[79684,62204],[-7,3],[-11,-1],[-5,2],[-6,5],[-1,3],[-2,6],[-2,2],[-4,2],[-1,-1],[-9,-18],[-5,-6],[-4,0],[-2,3],[-1,5],[0,5],[0,5]],[[79624,62219],[6,26],[1,13]],[[79631,62258],[0,15],[-1,2]],[[79630,62275],[-2,6],[-1,3]],[[79627,62284],[0,4]],[[79627,62288],[1,9],[0,4],[-2,7]],[[79626,62308],[-2,5],[-2,6]],[[79622,62319],[0,9],[3,8]],[[79625,62336],[2,4],[1,6]],[[79628,62346],[-6,40],[-2,8]],[[79620,62394],[-5,7],[-11,1],[-6,4],[-4,7],[-1,9],[-1,20],[-2,17],[0,6],[1,6],[3,9]],[[79594,62480],[2,4],[6,57]],[[79602,62541],[2,11],[3,7],[6,1],[3,-7],[3,-9],[5,-6]],[[79624,62538],[6,0],[3,6]],[[79633,62544],[5,28],[2,9],[6,17],[2,10],[1,17],[2,10]],[[79651,62635],[4,6],[9,10]],[[79664,62651],[2,6],[-3,7],[-6,2],[-6,-2],[-4,1],[0,1]],[[79647,62666],[-4,15],[-9,12]],[[79634,62693],[-3,7],[-2,4],[-3,1],[-2,-2],[-2,-7],[-2,-2]],[[79620,62694],[-6,1],[-4,7]],[[79610,62702],[-2,9]],[[79608,62711],[-2,8],[-5,5]],[[79601,62724],[-13,6],[-5,4]],[[79583,62734],[-4,2],[-2,-4],[-1,-12],[-5,-5],[-39,-19],[-6,-2],[-5,0],[-6,2],[-6,6],[-2,6],[-1,20],[-6,20],[-9,10]],[[79491,62758],[-10,5],[-15,4],[-1,0]],[[79465,62767],[-21,-4],[-3,-2],[-4,-17],[-4,-4],[-4,-3],[-9,-2],[-3,1],[-5,2],[-2,-1],[-2,-3],[-1,-4],[-1,-4],[-3,-2],[-5,7]],[[79398,62731],[-15,33],[-4,10]],[[79379,62774],[0,1],[-3,5]],[[79376,62780],[-3,3],[-4,2]],[[79369,62785],[-3,3],[-5,10],[-3,4],[-7,-1],[-8,5],[-20,1],[-4,3],[-3,9],[-1,10],[0,24],[-2,11],[-3,6],[-12,15],[-3,7]],[[79295,62892],[-5,21],[-4,13]],[[79286,62926],[-1,3],[-4,3]],[[79281,62932],[-2,-1],[-2,-1],[-3,0]],[[79274,62930],[-3,4],[-5,5]],[[79266,62939],[-4,7]],[[79262,62946],[-3,8],[-3,10]],[[79256,62964],[-1,10],[-2,6],[-5,1],[-4,-5],[-10,-15],[-2,-6],[-3,-11],[-1,-10],[-1,-9],[-5,-7],[-3,-1],[-2,1],[-2,2],[-2,1],[-1,1],[-2,3],[-1,0],[-1,-1],[-1,-2],[0,-2],[-1,-2],[-23,-12],[-4,-3],[-8,-11],[-10,-9],[-10,-17],[-3,-3],[-4,1],[-7,8]],[[79137,62872],[-4,1],[0,-1]],[[79133,62872],[-3,-4],[-1,-8],[0,-9],[-1,-7],[-7,-11],[-7,-2],[-4,-6],[8,-73],[0,-11],[-1,-6],[-14,-16],[-3,-6],[-9,-25],[-4,-7],[-4,-5],[-5,-3],[-5,-1],[-1,0],[-4,3],[-5,3],[-5,1],[-2,-2],[-2,-6],[-2,-1],[-3,1],[-1,2],[-1,2],[-2,2],[-1,3]],[[79044,62680],[1,3],[0,2],[-3,1]],[[79042,62686],[0,-2],[-5,-10],[-18,-27],[-6,-11],[-24,-30],[-2,-2],[-4,-1],[-4,3],[-6,7]],[[78973,62613],[-15,13],[-4,8]],[[78954,62634],[-2,11],[0,12],[1,12],[2,11],[-7,0],[-24,-16],[-8,-1],[-3,-2],[-4,-5],[-2,-4],[-4,-12],[-2,-4],[-6,-15],[-3,-16],[-1,-33],[-2,-9],[-3,-16],[-2,-9],[0,-8],[1,-8],[-1,-8],[-3,-6],[-4,-5]],[[78877,62503],[0,1]],[[78877,62504],[-2,5]],[[78875,62509],[-3,4]],[[78872,62513],[-4,2],[-3,3]],[[78865,62518],[-4,14],[-2,6]],[[78859,62538],[-1,1],[-5,1]],[[78853,62540],[-2,1],[-6,14],[-2,1],[-2,4]],[[78841,62560],[-5,16],[-2,5]],[[78834,62581],[-3,7],[-19,32]],[[78812,62620],[-18,42],[-4,4],[0,-1]],[[78790,62665],[-12,-12],[-3,-5],[-3,-7],[-1,-8],[-2,-9],[-6,-13],[-1,-6],[1,-23],[1,-4],[-2,-6],[-8,-24],[-3,-3],[-1,0]],[[78750,62545],[-4,1],[-4,4]],[[78742,62550],[-7,15],[-10,31],[-2,8],[-1,10],[1,10],[-1,8],[-4,4],[-2,6],[-3,6],[-3,5],[-4,4],[-6,4],[-3,-2],[-11,-36],[-5,-24],[-2,-6],[-5,-7],[-17,-16],[-7,-11],[-3,-16],[0,-5],[4,-8],[0,-5],[-1,-5],[-14,-18],[-5,-4],[-4,-1],[-4,-5],[0,-8],[1,-9],[-1,-9],[-4,-5],[-1,0],[-5,0]],[[78613,62461],[-5,4],[-9,12],[-11,5]],[[78588,62482],[-4,5],[-3,5]],[[78581,62492],[-9,35],[-2,10]],[[78570,62537],[-2,10],[-4,8]],[[78564,62555],[-5,5],[-12,5]],[[78547,62565],[-5,4],[-17,25]],[[78525,62594],[-5,4],[-11,4],[-6,4]],[[78503,62606],[-2,3],[-4,8],[-1,2],[-3,-1],[-2,-4],[-1,-4],[-2,-2]],[[78488,62608],[-6,0],[-2,7]],[[78480,62615],[-1,10],[-3,11],[-6,8],[-7,5],[-7,-2],[-5,-11],[-3,-20],[-2,-9],[-3,-7],[-3,-2]],[[78440,62598],[-3,0],[-1,0]],[[78436,62598],[-2,0],[-2,-4],[0,-6],[2,-4],[2,-4],[2,-3],[1,-5],[1,-1],[-2,-7],[-35,-67],[-3,-10],[-1,-19],[-2,-10],[-4,-8],[-4,1]],[[78389,62451],[-4,5],[-6,2],[-1,0]],[[78378,62458],[-4,-2],[-5,-6],[-3,-8],[-4,0]],[[78362,62442],[-1,5]],[[78361,62447],[0,5],[-2,5]],[[78359,62457],[-2,3],[-3,2]],[[78354,62462],[-17,7],[-6,1],[-5,-1],[-6,-5],[-12,0],[-5,-4],[-3,-9],[-1,-12],[-3,-7],[-7,3],[-7,12],[-9,37],[-8,13]],[[78265,62497],[-1,0],[-1,0]],[[78263,62497],[-2,0],[-8,-2],[-6,-7],[-6,-10],[-4,-9],[-3,-12],[0,-11],[0,-11],[0,-11],[-1,-1],[-5,-9],[0,-2],[-1,-9],[-4,-23],[-1,-5],[-4,-3],[-3,1]],[[78215,62373],[-3,2],[-1,0]],[[78211,62375],[-3,0],[-3,-3],[-2,-4],[-5,-10],[1,-10],[9,-19],[3,-10],[2,-14],[-2,-11],[-2,-10],[0,-12],[3,-12],[8,-23],[2,-11],[2,-22],[2,-8],[6,-7],[10,-6],[2,-4],[1,-5],[0,-4],[1,-5],[6,-16],[3,-14],[2,-4],[7,-12],[0,-5],[-6,-31],[-1,-10],[0,-8],[2,-4],[4,-7],[2,-5],[0,-5],[-1,-12],[1,-6],[4,-5],[5,-3],[4,-4],[1,-11],[-3,-10],[-6,-3],[-6,-2],[-4,-5],[-1,-9],[4,-22],[-1,-11],[-4,-11],[-1,-55],[-3,-21],[0,-10],[2,-9],[4,-7],[14,-10],[4,-4],[3,-5],[2,-6],[1,-7],[0,-5],[-1,-2],[0,-3],[-2,-4],[-2,-2],[-3,-1],[-6,2],[-4,-6],[1,-6],[2,-8],[0,-6],[-1,-5],[-3,-4],[-5,-4],[-5,-1],[-1,0]],[[78254,61741],[-3,0],[-5,6]],[[78246,61747],[-5,17],[-4,7],[-5,0],[-11,-9]],[[78221,61762],[-4,2],[-2,5]],[[78215,61769],[1,5],[2,6],[0,5],[-1,6],[-1,1],[-2,1],[-9,6],[-6,2],[-6,0],[-32,-11],[-3,-2],[-2,-2],[-14,-17],[-6,-5],[-4,-1]],[[78132,61763],[-5,3]],[[78127,61766],[-4,7],[-3,8],[-4,15],[-3,6],[3,21],[0,8],[0,2],[-3,5]],[[78113,61838],[0,3],[4,11]],[[78117,61852],[3,16],[0,5],[-1,0],[-1,-1],[-5,7],[-8,8]],[[78105,61887],[-2,3],[-1,12]],[[78102,61902],[5,45],[0,16]],[[78107,61963],[-3,10],[-5,0]],[[78099,61973],[-1,9],[1,10]],[[78099,61992],[3,7],[1,7]],[[78103,62006],[-2,6],[1,8],[-2,12]],[[78100,62032],[-3,10],[-4,4]],[[78093,62046],[-2,6],[-1,27]],[[78090,62079],[-2,9],[-10,4],[-4,-3],[-4,-4],[-3,-5],[-14,-19],[-5,-4],[-27,-15],[-12,-11],[-10,-17],[-11,-31],[-15,-30],[-12,-12],[-4,-8],[-7,-6],[-14,-8],[-7,-1],[-14,5],[-6,-3],[-5,-1]],[[77904,61919],[-3,5],[-3,8]],[[77898,61932],[-1,9],[-9,13]],[[77888,61954],[-4,5],[-6,2],[-6,0],[-4,-4],[-3,-6],[-4,-10],[-3,-7],[-4,-4],[-9,-6],[-4,-4],[-9,-13],[-3,-3],[-7,4]],[[77822,61908],[-3,11],[-6,15]],[[77813,61934],[-6,7],[-3,7],[-2,12],[-1,12],[0,9],[1,8]],[[77802,61989],[2,10],[2,9]],[[77806,62008],[3,8],[3,3],[3,1],[2,2],[1,5],[-1,3],[-2,4],[-4,6],[-11,6],[-24,1],[-10,11]],[[77766,62058],[-2,9],[-4,31]],[[77760,62098],[-4,19],[-1,10],[0,12]],[[77755,62139],[10,41],[3,21]],[[77768,62201],[-4,18],[-3,6],[-2,7]],[[77759,62232],[0,8],[2,7],[-21,7],[-5,-2],[-1,-4],[-1,-11],[-2,-5],[-3,-1]],[[77728,62231],[-2,3],[-2,5]],[[77724,62239],[-2,3],[-17,17]],[[77705,62259],[-4,2],[-6,-5]],[[77695,62256],[-3,-8],[-2,-5]],[[77690,62243],[-6,6]],[[77684,62249],[-1,3],[-3,10]],[[77680,62262],[-2,4]],[[77678,62266],[-2,3],[-27,12]],[[77649,62281],[-9,-2],[-4,1],[-15,11],[-3,-1],[-17,-13],[-10,-2],[-21,4]],[[77570,62279],[-11,5],[-13,11]],[[77546,62295],[-6,12],[8,8]],[[77548,62315],[-4,9],[2,11],[9,23],[2,9],[3,27],[2,6],[5,11]],[[77567,62411],[2,7],[-1,7]],[[77568,62425],[-2,4],[-1,4],[2,7],[11,10],[17,34]],[[77595,62484],[3,7],[1,6]],[[77599,62497],[0,6],[-3,9]],[[77596,62512],[-1,6],[1,11],[3,19],[-1,12],[-13,61],[0,15]],[[77585,62636],[3,5],[2,3]],[[77590,62644],[4,3],[3,1]],[[77597,62648],[2,4],[6,21]],[[77605,62673],[7,16],[3,9],[0,9]],[[77615,62707],[-1,25],[0,7],[5,3],[15,-15]],[[77634,62727],[9,-1],[6,10]],[[77649,62736],[-1,13],[-10,25],[-2,10],[0,9],[1,8]],[[77637,62801],[0,8],[-5,5]],[[77632,62814],[-20,1],[-7,8]],[[77605,62823],[-8,20],[-5,6],[-5,-2],[-4,-7],[-2,-9],[-2,-5],[-5,-2],[-3,-3],[-6,-9],[-3,-3]],[[77562,62809],[-2,0],[-2,2]],[[77558,62811],[-2,4],[-1,3]],[[77555,62818],[0,10],[-2,2],[-2,0],[-1,0],[-1,1],[-4,0],[-7,5],[-2,0],[-11,-2],[-5,0],[-5,4],[-5,10],[-1,10],[-2,8],[-5,1],[-5,-1],[-6,1],[-10,6],[-21,4]],[[77460,62877],[1,18],[14,47],[-4,15]],[[77471,62957],[-10,-1],[-2,2],[0,5],[2,3]],[[77461,62966],[4,3],[2,2],[2,11]],[[77469,62982],[1,10],[-1,11]],[[77469,63003],[-4,22],[-3,11]],[[77462,63036],[-4,8],[-6,0]],[[77452,63044],[-5,-3]],[[77447,63041],[-3,3]],[[77444,63044],[-5,29],[1,8],[3,6]],[[77443,63087],[13,15],[2,3],[2,8]],[[77460,63113],[0,3],[-2,3]],[[77458,63119],[-12,34],[-2,9]],[[77444,63162],[0,28],[-2,9]],[[77442,63199],[-4,6],[-11,3]],[[77427,63208],[-8,5],[-7,0]],[[77412,63213],[-3,2],[-3,5],[0,3],[1,3],[1,5],[-2,41],[0,7]],[[77406,63279],[3,14],[0,5]],[[77409,63298],[-2,9],[-2,4]],[[77405,63311],[1,5]],[[77406,63316],[5,4],[5,2]],[[77416,63322],[5,4],[13,22]],[[77434,63348],[26,31],[4,17]],[[77464,63396],[-1,16],[-1,2],[-3,-4]],[[77459,63410],[-10,-6],[-28,-4],[-10,-8],[-11,-3],[-8,-8],[-4,-2],[-4,-4],[-4,3]],[[77380,63378],[-7,7],[-11,15],[-8,4],[-11,1],[-11,-1]],[[77332,63404],[-5,-3],[-9,-10],[-4,-3]],[[77314,63388],[-11,0]],[[77303,63388],[-20,10],[-11,1]],[[77272,63399],[-21,-10],[-60,-44],[-3,-4],[-12,-24],[-5,-8],[-4,-2],[-4,0],[-6,-4],[-5,-7],[-14,-26],[-6,-5],[-6,-3],[-2,-2],[-3,-3],[-3,-9]],[[77118,63248],[-2,10]],[[77116,63258],[-1,5],[-2,5],[-10,13],[-11,9],[-5,11]],[[77087,63301],[54,101],[3,13]],[[77144,63415],[1,13]],[[77145,63428],[-1,6],[-4,9],[-1,7]],[[77139,63450],[1,6],[2,4],[2,3],[1,4]],[[77145,63467],[-1,20],[-21,14]],[[77123,63501],[-2,14]],[[77121,63515],[5,6],[5,1]],[[77131,63522],[5,3],[-1,12]],[[77135,63537],[-2,6],[-5,6]],[[77128,63549],[-1,7],[-1,6]],[[77126,63562],[-1,6],[-1,5]],[[77124,63573],[-2,4],[-5,1]],[[77117,63578],[-6,0],[-23,-6]],[[77088,63572],[-1,4],[0,13],[7,76],[-2,70]],[[77092,63735],[1,12],[19,23],[10,16],[6,8]],[[77128,63794],[7,2]],[[77135,63796],[11,-4],[6,0]],[[77152,63792],[5,4],[2,12],[-4,8]],[[77155,63816],[-10,15]],[[77145,63831],[-4,17],[-2,18]],[[77139,63866],[0,3],[1,35],[-2,20],[1,5],[5,3],[5,7],[4,12],[7,25]],[[77160,63976],[7,44],[6,14]],[[77173,64034],[10,-10],[3,-9],[2,-8]],[[77188,64007],[3,-5],[6,2],[6,6],[12,30]],[[77215,64040],[5,5],[11,11]],[[77231,64056],[3,6],[5,23],[4,12],[4,6],[5,1],[1,4],[-1,8],[1,21],[-1,6],[-1,5],[-2,14]],[[77249,64162],[1,4],[1,4]],[[77251,64170],[5,8],[3,7],[1,9],[0,27]],[[77260,64221],[1,7],[3,1]],[[77264,64229],[22,-15],[4,-4],[9,-15],[3,-1],[6,4],[6,5],[4,6],[3,9]],[[77321,64218],[4,24],[1,7]],[[77326,64249],[11,24],[0,4]],[[77337,64277],[1,7],[0,7]],[[77338,64291],[2,3],[2,3]],[[77342,64297],[2,4]],[[77344,64301],[4,19],[2,10]],[[77350,64330],[4,6],[6,14]],[[77360,64350],[3,4],[5,0],[4,-3],[6,-9],[8,-6],[3,-2],[2,-1]],[[77391,64333],[5,3],[14,21]],[[77410,64357],[2,5]],[[77412,64362],[2,7],[0,8]],[[77414,64377],[-1,7],[-1,3]],[[77412,64387],[-3,2],[-2,2]],[[77407,64391],[-2,11],[-10,25]],[[77395,64427],[-2,5]],[[77393,64432],[-3,2],[-4,-1]],[[77386,64433],[-2,1],[-2,7],[0,12]],[[77382,64453],[-1,11]],[[77381,64464],[-5,19],[-2,10]],[[77374,64493],[-1,9]],[[77373,64502],[2,9],[3,6]],[[77378,64517],[11,5],[5,3],[2,-1],[-1,-20],[2,-6],[4,0],[10,15]],[[77411,64513],[2,5],[-1,11]],[[77412,64529],[2,4],[2,3]],[[77416,64536],[2,5],[-1,9],[-7,27]],[[77410,64577],[-3,5],[-5,-2],[-2,5],[1,10],[1,10],[2,12]],[[77404,64617],[12,23],[2,10]],[[77418,64650],[2,10],[1,11],[1,72],[2,19]],[[77424,64762],[6,18],[2,11],[-2,12]],[[77430,64803],[-1,5],[0,5],[0,5],[0,4],[-4,18],[1,12],[4,20],[0,12],[-2,10],[-7,18],[-1,11],[1,6],[4,8],[1,6],[0,5]],[[77426,64948],[-6,49],[2,10]],[[77422,65007],[3,10]],[[77425,65017],[2,9],[-2,12]],[[77425,65038],[-4,7],[-4,3],[-3,3],[-3,10]],[[77411,65061],[-2,36],[0,18]],[[77409,65115],[2,16],[6,37]],[[77417,65168],[1,19],[-3,17]],[[77415,65204],[-1,3],[-2,0],[-2,1]],[[77410,65208],[-1,6],[-2,49],[1,23],[3,23],[-1,11],[-1,5]],[[77409,65325],[-2,6],[-3,5]],[[77404,65336],[-2,3],[-4,0]],[[77398,65339],[-2,-3],[-3,-4],[-3,-3],[-8,-1]],[[77382,65328],[-3,7],[-6,21],[-6,8]],[[77367,65364],[-8,-7]],[[77359,65357],[-5,7],[-15,14]],[[77339,65378],[-3,1],[-3,-4],[-1,-11],[0,-20],[-1,-18],[-3,-18],[-5,-13],[-10,-5]],[[77313,65290],[-9,7],[-6,19]],[[77298,65316],[-6,43],[-4,18]],[[77288,65377],[-9,26],[-1,6]],[[77278,65409],[3,13],[-1,3],[-2,3]],[[77278,65428],[-1,5],[0,11]],[[77277,65444],[1,7],[-2,6]],[[77276,65457],[-9,11],[-5,10]],[[77262,65478],[-1,9],[4,6]],[[77265,65493],[6,5],[0,9],[-3,9],[-5,8],[-10,10]],[[77253,65534],[-1,6],[3,12],[1,11]],[[77256,65563],[1,50],[0,11]],[[77257,65624],[-2,9],[-20,33]],[[77235,65666],[-5,5],[-11,3]],[[77219,65674],[-1,5],[2,16]],[[77220,65695],[0,9],[-4,7],[-10,10],[-13,31]],[[77193,65752],[-10,9],[-18,-15]],[[77165,65746],[-8,5],[-7,16],[-12,59]],[[77138,65826],[-8,13],[-8,-7],[-8,-9],[-6,7]],[[77108,65830],[-6,17],[-6,7]],[[77096,65854],[-5,-5],[-4,-19],[-3,-10],[-4,-20],[-4,-8],[-1,-7],[-2,-4],[-4,-8],[-1,-5],[0,-5],[1,-5],[1,-6],[0,-21],[-2,-11],[-3,-6],[-5,0]],[[77060,65714],[-4,1]],[[77056,65715],[-1,0],[-4,-2],[-2,-12],[-2,-5],[-10,-10],[-3,-10]],[[77034,65676],[-11,10],[-15,21],[-3,5],[-3,14],[-2,2],[-2,0]],[[76998,65728],[-3,2]],[[76995,65730],[-19,29],[-10,4],[-13,-10],[-10,-11],[-8,-4]],[[76935,65738],[-9,4],[-10,10],[-11,6]],[[76905,65758],[-20,-2],[-1,-1],[-11,9],[-10,23],[-19,23],[-4,2],[-12,-1],[-5,-2],[-5,-4],[-9,-12],[-5,-4],[-12,0],[-5,-3],[-4,-7],[-4,-9],[-4,-18],[-3,-2]],[[76772,65750],[-5,5],[-2,3],[-3,9]],[[76762,65767],[-2,3],[-3,1],[-8,-4]],[[76749,65767],[-4,3],[-4,6]],[[76741,65776],[-3,4],[-6,0]],[[76732,65780],[8,11],[10,11]],[[76750,65802],[9,13],[1,15]],[[76760,65830],[-6,20],[5,10]],[[76759,65860],[8,8],[2,14],[6,-2]],[[76775,65880],[7,5],[5,9]],[[76787,65894],[4,11],[1,13],[-1,9]],[[76791,65927],[1,6],[31,26]],[[76823,65959],[8,17],[-5,28]],[[76826,66004],[-14,31],[-4,12]],[[76808,66047],[-3,24],[-2,11],[-5,7],[-4,1],[-2,4]],[[76792,66094],[0,6],[1,7]],[[76793,66107],[5,24],[1,4],[1,3],[1,4],[0,4],[-3,0],[-43,-22],[-11,-16],[-1,0],[0,-1],[-20,-42],[-12,-11]],[[76711,66054],[-9,13]],[[76702,66067],[1,13],[6,20],[-1,12],[-6,24],[-4,10],[-6,5]],[[76692,66151],[15,8],[4,4]],[[76711,66163],[4,8],[2,8]],[[76717,66179],[3,8]],[[76720,66187],[5,4],[29,15]],[[76754,66206],[3,5],[4,16],[7,19],[0,7],[-5,10],[-3,3],[-4,-3],[-5,-7],[-10,-11],[-9,-1]],[[76732,66244],[-9,9]],[[76723,66253],[-8,17],[-3,9],[-4,28]],[[76708,66307],[-2,8],[-8,18]],[[76698,66333],[-4,6]],[[76694,66339],[-3,8],[-4,11]],[[76687,66358],[-4,8],[-5,1],[-5,-5],[-14,-19],[-14,-14],[-5,-1],[-10,0],[-6,-2],[-14,-20],[-6,-4],[-9,-2],[-4,-4],[-3,-5],[-4,-10],[-2,-5],[-3,-1],[-3,1],[-3,-1],[-5,-12],[-5,-6],[-10,-8],[-3,-1],[-2,0],[-3,-1],[-3,-4],[-1,-5],[1,-5],[-1,-5],[-9,-1],[-1,-7],[3,-20],[-1,-13],[-3,-3],[-10,2],[-2,-7],[-2,-22],[-2,-9],[-4,-10],[-5,-6],[-5,-3],[-7,-1]],[[76493,66128],[-10,2],[-6,2]],[[76477,66132],[-10,8],[-16,3]],[[76451,66143],[-2,4],[-1,4]],[[76448,66151],[0,5],[-2,4]],[[76446,66160],[-2,3]],[[76444,66163],[-2,1],[-21,7]],[[76421,66171],[-5,3]],[[76416,66174],[-14,15],[-17,7]],[[76385,66196],[-4,3],[-5,5]],[[76376,66204],[3,-10],[4,-10],[2,-4],[-6,3],[-21,17],[-10,5],[-11,-1],[-4,-1]],[[76333,66203],[-7,0]],[[76326,66203],[-4,5],[2,21],[-3,10],[-15,30],[-10,12],[-10,7],[-9,-2],[-4,-7],[-15,-40],[-4,-6],[-5,-3],[-6,-2],[-15,-1],[-7,-2],[-7,-5],[-3,-7],[-4,-14],[-3,-5],[-3,-2]],[[76201,66192],[-10,1]],[[76191,66193],[-13,-13],[-28,-72],[-9,-14],[-4,-3]],[[76137,66091],[-6,2],[-11,4]],[[76120,66097],[-5,-2],[-2,-9],[0,-10],[5,-21],[1,-10],[-1,-10],[-4,-6],[-6,-5],[-4,-5]],[[76104,66019],[-4,1],[-6,0]],[[76094,66020],[-6,-2],[-3,-5],[0,-4],[1,-3],[0,-3],[-1,-5],[-2,-1],[-4,0],[-2,-2],[-1,-6],[-3,-3],[-16,-9],[-4,-5],[-19,-30],[-5,-3],[-5,4],[-4,2],[-4,-5],[-4,-7],[-5,-5],[-5,0]],[[76002,65928],[-16,4]],[[75986,65932],[-29,-4],[-22,-10],[-4,-1]],[[75931,65917],[-3,1],[-8,3]],[[75920,65921],[-4,0],[-2,-2],[-2,-4],[-3,-4],[-4,-1],[-8,-1],[-3,-1],[-3,-5],[-2,-4],[0,-5],[-1,-8],[-10,-41],[-2,-15],[-2,-19],[-3,-20],[-6,-19],[-6,-13],[-26,-33],[-7,-14],[-4,-7],[-11,-6],[-5,-5],[-4,-8],[-6,-17],[-5,-7],[-4,-5],[-4,-3],[-4,0]],[[75779,65654],[-4,0],[-2,3]],[[75773,65657],[0,4],[-1,3],[-3,-2]],[[75769,65662],[-17,-21],[-8,-12],[-7,-15],[-5,-19],[1,-8],[4,-3],[10,-2],[3,-6],[0,-7],[-3,-17],[-1,-15],[-7,-16],[-9,-13],[-8,-6],[-7,-2],[-3,-3],[-7,-15],[-4,-5],[-14,-7],[-10,-13],[-3,-1],[-3,4],[-4,14],[-3,1],[-3,-8],[-2,-11],[-2,-10],[-5,-1]],[[75652,65445],[-2,7],[-2,9]],[[75648,65461],[-1,1],[-4,-16],[-3,-10]],[[75640,65436],[-5,4]],[[75635,65440],[-3,10],[-5,21]],[[75627,65471],[-3,8],[-2,1],[-3,-9],[0,-5],[1,-5],[0,-5],[-1,-6],[-2,-2],[-4,-1],[-23,4],[-5,-1],[-11,-10],[-15,-29],[-11,-8],[-6,-1],[-12,4],[-1,0],[-6,-1],[-5,0]],[[75518,65405],[-5,3]],[[75513,65408],[-9,11],[-12,5]],[[75492,65424],[-39,-3]],[[75452,65448],[0,12],[0,13]],[[75454,65487],[4,11],[1,11],[-4,12],[-5,7]],[[75438,65535],[-11,3],[-11,8],[-11,0]],[[75401,65547],[-2,2],[-5,3],[-22,20]],[[75363,65586],[-5,20],[-6,-11]],[[75346,65595],[-7,1]],[[75236,65579],[-17,2],[-10,5]],[[75201,65589],[-11,14],[-5,2]],[[75113,65593],[-4,0],[-13,5]],[[75091,65697],[-10,3],[-20,12]],[[75061,65712],[-47,15],[-17,6]],[[74971,65715],[-2,2],[-2,3],[-3,2]],[[74692,65175],[-8,9]],[[74684,65184],[-3,6],[-6,13]],[[74675,65203],[-3,4],[-3,3],[-4,4]],[[74665,65214],[-6,12],[-4,15]],[[74655,65241],[-1,16],[0,17]],[[74654,65274],[0,9],[-4,12],[0,8],[2,8],[5,14]],[[74657,65325],[5,20],[6,18]],[[74668,65363],[13,105]],[[74681,65468],[1,9],[-1,10],[-3,8]],[[74678,65495],[-6,13],[-3,7]],[[74669,65515],[0,9]],[[74669,65524],[3,18],[-1,10]],[[74671,65552],[-4,9]],[[74667,65561],[-6,10],[-13,15]],[[74648,65586],[-7,3],[-16,4],[-6,8]],[[74619,65601],[-5,13],[-5,0]],[[74609,65614],[-11,-16],[-7,-10],[-3,-11],[-5,-6],[-7,4],[-5,-3],[-16,-20],[-6,-7],[-50,-13],[-6,-5],[-4,-2],[-3,1],[-7,1],[-3,-1],[-4,-11],[-1,-13],[2,-14],[4,-10]],[[74477,65478],[-6,2],[-12,12],[-7,4]],[[74438,65489],[-3,1],[-6,5]],[[74404,65499],[-5,5],[-3,-1]],[[74361,65447],[-6,4],[-5,4],[-7,2]],[[74330,65446],[-4,1],[-3,3]],[[74323,65450],[-1,4],[-1,5],[-2,3]],[[74217,65457],[-7,1],[-11,11],[-16,35]],[[74183,65504],[-8,17],[-7,7]],[[74168,65528],[-5,1],[-2,-2]],[[74150,65523],[-7,1],[-6,5],[-5,10]],[[74132,65539],[-2,13],[-8,11]],[[74093,65591],[-1,7],[-4,6]],[[74059,65599],[-5,4]],[[74050,65609],[-3,5],[-5,-1]],[[74007,65505],[-6,4]],[[73982,65520],[-2,1],[-3,4]],[[73970,65540],[-4,6],[-6,2]],[[73960,65548],[-5,1],[-6,3]],[[73936,65595],[3,9],[1,11]],[[73903,65492],[-7,2]],[[73858,65600],[0,5],[-5,12]],[[73853,65617],[-1,12],[-1,6],[-5,8]],[[73821,65668],[-6,10],[-6,12]],[[73805,65704],[0,25],[-2,12]],[[73773,65701],[-5,7],[-6,3],[-7,1]],[[73735,65717],[-4,3],[-5,0]],[[73711,65699],[-4,1],[-3,4],[-3,5]],[[73701,65709],[-3,3],[-4,-1]],[[73633,65732],[2,24],[0,11],[-3,30]],[[73645,65835],[5,4],[2,2],[1,6]],[[73642,65893],[-10,13],[-6,4]],[[73585,65853],[-4,3],[-4,1]],[[73543,65880],[-5,5],[-13,1]],[[73521,65891],[2,25],[-4,5]],[[73514,65923],[-5,3],[-2,4]],[[73504,65940],[-2,3],[-16,4]],[[73486,65947],[-5,4],[-5,5]],[[73458,65963],[-3,10],[-5,26]],[[73442,66013],[-4,13],[-3,5],[-4,2]],[[73398,66055],[-2,8],[-6,14]],[[73388,66136],[-6,6],[-2,18]],[[73371,66180],[-1,10],[2,9]],[[73343,66248],[-4,7]],[[73326,66257],[0,7],[-2,5]],[[73233,66196],[-4,1],[-12,4]],[[73204,66210],[-3,2],[-2,5]],[[73198,66223],[0,12],[-3,20]],[[73187,66270],[-7,5],[-3,5],[-3,16]],[[73171,66300],[-3,3],[-4,5]],[[73163,66323],[0,6],[-9,12]],[[73154,66348],[1,8],[-1,10]],[[73124,66392],[2,4],[1,3]],[[73128,66403],[0,9],[-3,7]],[[73070,66436],[-3,13],[-3,6]],[[73010,66477],[-4,10]],[[73001,66497],[-3,2],[-4,3]],[[72969,66544],[-2,10],[1,6],[1,6]],[[72969,66566],[0,4],[-3,4],[-3,0]],[[72923,66628],[-13,8],[-6,4]],[[72874,66668],[-2,3],[-4,9]],[[72866,66684],[-6,2],[-6,1]],[[72820,66698],[-2,7],[-3,11]],[[72819,66756],[2,11],[-5,7]],[[72802,66849],[-4,4],[-7,1]],[[72772,66848],[-3,0]],[[72767,66851],[-3,9],[-3,3]],[[72761,66863],[-5,2],[-10,-2]],[[72586,66739],[-5,1]],[[72554,66668],[-13,11],[-7,0]],[[72527,66675],[-4,6]],[[72518,66714],[-6,19],[-4,18]],[[72501,66771],[-1,3],[0,3]],[[72500,66777],[1,7],[-2,8],[-6,16]],[[72493,66808],[-9,8]],[[72484,66816],[-21,10],[-24,18]],[[72439,66844],[-4,6]],[[72435,66850],[-3,8],[-6,18]],[[72426,66876],[-3,8],[-8,11]],[[72415,66895],[-28,26]],[[72387,66921],[-5,4],[-5,-1]],[[72377,66924],[-4,-2],[-5,-1]],[[72368,66921],[-5,2]],[[72363,66923],[-9,10],[-14,10],[-28,27],[-20,10],[-10,1],[-10,-4],[2,10],[3,8],[1,8],[-1,11],[-2,6],[-4,7],[-3,7],[0,7],[2,2],[2,1],[3,0],[2,0],[2,3],[7,22],[-2,5],[-8,8],[-7,20],[-4,5],[-4,0],[-9,-9],[-5,-2],[-8,6],[-5,12],[-4,14],[-7,9]],[[72223,67137],[-19,14],[-9,10]],[[72195,67161],[-6,12],[-5,16],[-4,7]],[[72180,67196],[-4,4],[-21,9]],[[72155,67209],[-6,1],[-14,-7],[-11,0],[-5,-2],[-11,-13],[-3,-1]],[[72105,67187],[-4,3]],[[72101,67190],[-6,2],[-4,4],[-5,7],[-4,8]],[[72082,67211],[-2,7],[-1,4]],[[72079,67222],[0,3],[-1,2],[-2,2]],[[72076,67229],[-4,4],[-4,2],[-4,-1],[-5,-1]],[[72059,67233],[-3,2],[-2,7]],[[72054,67242],[-2,18],[-5,14],[-6,6],[-8,4],[-7,7],[-4,7],[-2,9]],[[72020,67307],[0,10],[0,11],[-2,11]],[[72018,67339],[-4,5],[-5,2],[-4,5],[-1,6],[0,5],[1,4],[0,5],[-2,4],[-4,6],[-1,5],[0,6],[1,5],[0,5],[-1,6],[-2,2]],[[71996,67410],[-5,1],[-3,2]],[[71988,67413],[-2,8],[-2,9]],[[71984,67430],[-1,7],[-10,10]],[[71973,67447],[-7,12],[-4,3],[-14,-4]],[[71948,67458],[-5,-22],[-2,-24],[-4,-13],[-4,3],[-7,13],[-5,3],[-4,-17],[-3,-7],[-4,-7],[-4,-4],[-4,0],[-7,2],[-8,-3],[-3,0],[-9,7],[-2,4],[-1,5],[-1,10],[2,21],[4,21],[1,19],[-8,12],[-11,12]],[[71859,67493],[2,12],[27,38],[4,9]],[[71892,67552],[2,7],[-7,15]],[[71887,67574],[-10,18],[-5,0],[-3,1],[-2,3],[-1,4]],[[71866,67600],[-2,9],[-4,8]],[[71860,67617],[-1,4]],[[71859,67621],[0,5],[0,6]],[[71859,67632],[0,4]],[[71859,67636],[-6,14],[1,9],[7,19]],[[71861,67678],[2,11],[2,23],[1,11]],[[71866,67723],[6,24],[1,10],[-3,12],[-3,5]],[[71867,67774],[-12,12],[-8,11],[-27,64],[-5,17]],[[71815,67878],[-6,14]],[[71809,67892],[-10,10],[-6,3]],[[71793,67905],[0,7],[1,10],[1,12],[-7,50],[-1,3],[0,3],[0,7],[2,5],[2,3],[1,4],[-1,5],[-11,28],[-8,28],[1,11]],[[71773,68081],[7,6],[11,5],[39,2]],[[71830,68094],[11,4],[5,5],[5,7],[8,17],[5,4],[7,-4],[4,-9],[-1,-10],[-2,-9],[-2,-10],[1,-9],[5,-29],[5,-17],[23,-34],[7,-14],[8,-12],[9,-4],[9,8],[4,1],[7,6],[4,2],[3,-1],[7,-3],[3,0]],[[71965,67983],[5,11],[3,33],[2,13]],[[71975,68040],[6,7],[8,6],[8,4],[7,2],[6,-2],[5,-4],[6,-4],[5,3]],[[72026,68052],[12,23],[27,37]],[[72065,68112],[11,24]],[[72076,68136],[6,18],[2,20]],[[72084,68174],[-1,18],[-7,13]],[[72076,68205],[-7,14],[-3,16]],[[72066,68235],[-2,17]],[[72064,68252],[-5,18],[-17,24]],[[72042,68294],[-5,15]],[[72037,68309],[0,20],[1,11]],[[72038,68340],[2,29],[2,11],[6,15],[2,8]],[[72050,68403],[-1,21],[-9,8]],[[72040,68432],[-22,2],[-10,5]],[[72008,68439],[-21,20],[-9,1]],[[71978,68460],[-10,-8]],[[71968,68452],[-2,4],[-1,13],[-1,10],[-3,7],[-5,5],[-5,4],[-10,5]],[[71941,68500],[-4,5],[-16,42]],[[71921,68547],[-26,42]],[[71895,68589],[-6,18],[-6,33]],[[71883,68640],[4,106],[-2,36],[-5,35]],[[71880,68817],[-13,68],[2,47]],[[71869,68932],[21,25],[27,19],[20,33],[3,12],[1,13],[-1,13],[-3,13],[-7,22],[-8,13],[-10,8],[-13,6],[-10,10],[-14,31],[-24,31],[-16,11]],[[71835,69192],[-9,2],[-54,16],[-13,8]],[[71759,69218],[-10,17],[-7,19]],[[71742,69254],[-17,105]],[[71725,69359],[-2,10],[-12,24]],[[71711,69393],[-4,19],[-2,42],[-3,21],[-26,77]],[[71676,69552],[-9,41],[2,44]],[[71669,69637],[8,28]],[[71677,69665],[5,30],[-3,22],[-17,1]],[[71662,69718],[-7,-6],[-13,-23],[-8,-6]],[[71634,69683],[-7,3],[-7,9]],[[71620,69695],[-5,12]],[[71615,69707],[-4,12]],[[71611,69719],[-8,2],[-3,-1],[-4,-2],[-8,-10],[-8,-7],[-8,-3],[-41,12],[-10,-1],[-18,-4],[-8,1],[-9,8]],[[71486,69714],[-13,18],[-6,5],[-9,2]],[[71458,69739],[-20,-4],[-10,1],[-10,7],[-4,5]],[[71414,69748],[-6,13]],[[71408,69761],[-3,5],[-6,3]],[[71399,69769],[-6,0],[-11,-4]],[[71382,69765],[-11,1],[-6,2]],[[71365,69768],[-5,3],[-5,7],[-6,15]],[[71349,69793],[-4,7],[-5,4]],[[71340,69804],[-12,-1],[-1,0],[-4,0]],[[71323,69803],[-5,5],[-4,6]],[[71314,69814],[-6,15],[-9,11],[-19,12]],[[71280,69852],[-1,0],[-10,9]],[[71269,69861],[-5,18]],[[71264,69879],[4,46],[-3,18]],[[71265,69943],[-5,2],[-10,-17],[-7,-4],[-6,0],[-3,-1],[-3,-1],[-3,-4],[-3,-9],[-2,-4],[-6,-1]],[[71217,69904],[-4,1],[-5,0]],[[71208,69905],[-11,-11],[-4,-1]],[[71193,69893],[-4,3],[-6,2]],[[71183,69898],[-6,-1],[-14,-6],[-6,1],[-8,11],[-3,20],[-1,23]],[[71145,69946],[-2,21],[-7,20],[-8,8]],[[71128,69995],[-22,2]],[[71106,69997],[-8,6],[-9,14]],[[71089,70017],[-6,18],[-2,18],[2,9],[4,6],[14,15],[2,2],[1,5],[0,6],[-2,10],[0,6],[4,7],[5,4]],[[71111,70123],[4,4],[-1,10]],[[71114,70137],[-3,8],[-7,14],[-2,8],[0,22],[5,44],[-3,23],[-28,87],[-7,14]],[[71069,70357],[-16,24],[-18,20]],[[71035,70401],[-22,17],[-22,7],[-17,-10],[-2,-6],[0,-5],[-2,-4],[-17,1],[-6,13],[-2,21],[-1,23]],[[70944,70458],[-1,21],[-5,17]],[[70938,70496],[-7,12],[-11,7]],[[70920,70515],[-33,11]],[[70887,70526],[-9,9],[-8,11]],[[70870,70546],[-4,4],[-5,2],[-24,-6],[-10,0],[-10,-4],[-5,-3],[-4,-5],[-3,-7],[-2,-16],[-2,-5],[-4,-3],[-1,5],[-2,17],[-2,7],[-8,20],[-9,11],[-20,1],[-8,11],[-4,9],[-4,1],[-10,-6],[-18,-8],[-5,-4]],[[70699,70572],[-3,9],[-2,6]],[[70692,70592],[-4,9],[-18,14]],[[70685,70660],[3,12],[3,8],[3,4]],[[70734,70693],[1,3],[1,3]],[[70736,70699],[6,1],[1,1]],[[70752,70716],[4,4]],[[70801,70685],[1,0]],[[70802,70685],[-7,6]],[[70802,70685],[7,3],[3,9]],[[70812,70697],[2,9],[5,5],[7,2],[26,15],[2,7],[1,21],[3,9],[7,5]],[[70865,70770],[14,7],[-9,10],[-8,13]],[[70862,70800],[-14,29],[-5,7]],[[70843,70836],[-25,24],[-9,12]],[[70809,70872],[-6,16]],[[70803,70888],[-2,16],[-1,3]],[[70800,70907],[1,11],[3,8],[4,7]],[[70808,70933],[4,8],[1,5],[0,5]],[[70813,70951],[1,5],[2,5],[4,9],[2,6],[1,5],[-1,10],[-3,6]],[[70819,70997],[-14,12],[-2,3],[-2,4]],[[70801,71016],[0,8],[1,2],[2,2],[4,12]],[[70808,71040],[1,4]],[[70809,71044],[-2,4],[-4,3]],[[70803,71051],[0,3],[0,3],[-1,15]],[[70802,71072],[1,35]],[[70803,71107],[-3,15],[-20,18]],[[70780,71140],[-5,16],[-6,63],[0,53],[1,10],[3,9],[12,21],[3,9]],[[70788,71321],[2,10],[0,11],[-2,16],[-1,5]],[[70787,71363],[0,5],[-2,3],[-5,5],[-2,3],[-3,6]],[[70775,71385],[-4,9],[-5,5],[-5,2],[-6,-1]],[[70755,71400],[-6,1],[-5,7]],[[70744,71408],[-4,7],[-5,7],[-47,28],[-40,31]],[[70648,71481],[-6,1],[-19,-10],[-6,-1]],[[70617,71471],[-6,2]],[[70611,71473],[-17,9],[-5,0],[-4,-4],[-3,-9],[-1,-4],[0,-5],[0,-5],[-2,-3],[-11,-6],[-2,-3],[0,-11],[3,-9],[3,-9],[-4,-9],[-5,-2]],[[70563,71403],[-26,2],[-5,4]],[[70532,71409],[-8,12],[-5,4],[-10,6],[-5,5],[-5,9],[-3,9],[-2,23],[-2,8],[-10,26],[-1,9]],[[70481,71520],[2,24],[-1,11]],[[70482,71555],[-3,8]],[[70479,71563],[-8,14],[-4,8]],[[70467,71585],[0,10],[2,10]],[[70469,71605],[4,9],[4,7],[6,4]],[[70483,71625],[13,0],[6,4],[4,6]],[[70506,71635],[2,9],[-1,9]],[[70507,71653],[-3,9],[-4,5],[-9,16],[-17,19],[-3,8]],[[70471,71710],[-1,8],[-3,19]],[[70467,71737],[-2,8],[-12,18]],[[70453,71763],[-7,18]],[[70446,71781],[-1,16],[2,16]],[[70447,71813],[9,39],[0,9]],[[70456,71861],[0,11],[-3,32],[0,11]],[[70519,71970],[4,8],[4,5]],[[70535,71995],[-6,30],[-2,24]],[[70527,72049],[-1,12],[-4,9],[-6,5]],[[70516,72075],[-4,2],[-4,4]],[[70506,72114],[3,10],[3,8]],[[70523,72153],[3,23],[4,11],[5,9]],[[70535,72196],[5,9],[1,13]],[[70546,72240],[3,6],[7,9]],[[70592,72274],[10,7],[10,2]],[[70658,72280],[30,37],[24,42]],[[70786,72399],[9,4],[-3,18]],[[70779,72478],[3,10],[0,2]],[[70895,72478],[2,5],[3,2]],[[71022,72384],[7,0],[12,9]],[[71071,72386],[7,0],[5,2]],[[71089,72393],[5,10],[3,9],[3,8]],[[71162,72435],[9,18],[8,14]],[[71286,72626],[5,20],[7,17]],[[71318,72685],[5,7],[2,11]],[[71321,72736],[3,10],[4,7]],[[71328,72753],[11,12],[4,8],[7,11]],[[71361,72791],[30,11]],[[71765,72947],[-4,21],[1,10],[0,1]],[[71853,73076],[38,22],[25,27],[5,4],[16,5]],[[71937,73134],[32,33],[11,7],[13,5],[5,3]],[[72004,73189],[14,18],[4,5]],[[72022,73212],[7,3]],[[72046,73206],[7,0],[5,4]],[[72139,73263],[13,3],[10,14],[2,10]],[[72170,73320],[4,8],[4,6]],[[72188,73340],[15,6]],[[72293,73379],[-2,8],[-4,7]],[[72284,73521],[-1,9],[-7,44]],[[72279,73591],[2,8],[-1,6]],[[72262,73670],[-1,9],[1,12]],[[72310,73786],[5,1],[13,7]],[[72376,73832],[-3,10],[-6,5]],[[72335,73863],[-9,11],[-6,14]],[[72382,73954],[12,9]],[[72431,73946],[6,5],[4,8],[1,12]],[[72433,74010],[0,11],[-1,10]],[[72430,74038],[0,3],[-4,8]],[[72415,74057],[-10,4],[-5,8]],[[72400,74069],[15,38],[4,18]],[[72336,74451],[0,10],[-2,10]],[[72322,74493],[-4,8],[-2,10]],[[72314,74676],[0,19],[2,23],[7,42]],[[72328,74779],[-1,7],[-5,9],[-2,5]],[[72320,74800],[1,6],[5,11]],[[72360,74841],[-1,7],[-5,4]],[[72233,74883],[-13,2],[-35,31]],[[72239,75010],[12,7],[12,1]],[[72263,75018],[20,-4],[20,11]],[[72330,75025],[5,6],[5,19]],[[72340,75050],[6,7],[6,1]],[[72493,75089],[13,0],[11,6]],[[72517,75095],[23,18],[110,49]],[[72650,75162],[23,23],[11,8]],[[72752,75087],[12,-7],[14,5],[53,38],[15,5]],[[72896,75075],[14,-11],[17,4]],[[72862,75323],[9,29],[10,55]],[[72881,75407],[21,51],[8,26],[3,16]],[[72913,75500],[8,51],[7,77]],[[72946,75697],[19,42],[4,17]],[[73052,76128],[5,21],[0,6]],[[73055,76166],[0,6],[1,6],[3,12],[0,6]],[[73075,76232],[8,0]],[[73307,76096],[26,0]],[[73441,76107],[5,0]],[[73608,76059],[13,4],[3,3]],[[73664,76123],[4,6],[5,4]],[[73695,76132],[36,8]],[[73762,76190],[1,10],[2,10]],[[73778,76218],[13,2],[3,5]],[[73754,76622],[1,13],[3,12],[5,15],[4,21],[7,61],[36,121]],[[74053,76985],[4,9],[4,7]],[[74094,77101],[2,5],[5,9]],[[74103,77143],[-8,11],[-7,19]],[[74086,77186],[0,10],[1,9]],[[74087,77205],[4,11],[4,10]],[[74095,77226],[5,7],[10,12]],[[74159,77273],[40,21]],[[74256,77269],[11,-6],[10,-2],[11,2],[10,7],[2,2]],[[74300,77272],[2,3],[1,4]],[[74303,77279],[2,9],[2,1],[2,-1],[3,0],[53,22],[28,4],[0,-7],[4,-17],[1,-13],[-1,-8],[-3,-8],[-1,-11],[2,-13],[4,-4],[5,-3],[5,-6],[0,-20],[-11,-13],[-21,-14],[-4,-8],[-2,-10],[0,-10],[5,-7],[6,-3],[3,-3],[2,-4],[2,-5],[0,-11],[1,-5],[4,-7],[6,-5],[18,-12],[13,2],[6,-3],[16,-15],[8,-12],[1,-14],[-3,-5],[-12,-11],[-2,-4],[-2,-6],[-2,-6],[-4,-5],[-9,-9],[3,-14],[8,-12],[10,-7],[3,0],[6,2],[3,-1],[3,-2],[5,-7],[7,-5],[9,-10],[5,-3],[5,0]],[[74495,76940],[10,1]],[[74505,76941],[4,-1],[20,-14],[7,-8],[15,-25],[9,-8],[6,0]],[[74566,76885],[6,2],[5,1]],[[74577,76888],[7,-4],[17,-28],[2,-9],[-4,-21],[1,-11],[2,-11],[1,-10],[2,-10],[5,-8],[11,-12],[5,-3],[7,1],[8,-4],[18,-25],[9,-8],[7,-1],[16,4]],[[74691,76728],[8,-3],[4,-5],[31,-58],[1,0],[8,-5],[25,0]],[[74768,76657],[15,-4],[7,2],[6,7]],[[74796,76662],[5,7]],[[74801,76669],[14,15],[5,3]],[[74820,76687],[4,0],[11,-8],[5,-1],[14,1]],[[74854,76679],[8,4],[10,0]],[[74872,76683],[9,-6],[1,-15],[0,-9],[2,-8],[4,-5],[4,-2],[4,-3],[3,-8],[2,-10],[3,-7],[4,-3],[10,-3],[5,-6],[2,-7],[2,-16],[3,-7],[9,-3],[30,3]],[[74969,76568],[9,5],[3,6]],[[74981,76579],[1,8]],[[74982,76587],[1,7],[2,7]],[[74985,76601],[4,3],[11,-5],[12,0],[4,-6],[1,-10],[-2,-12],[-1,-10],[2,-12],[3,-11],[4,-8],[10,-14],[12,-11],[13,-8],[26,-10],[5,-4],[6,-7],[2,-6],[-4,-6],[-2,-8],[3,-11],[3,-8],[9,-28],[3,-7],[9,-10],[4,-8],[1,-17],[-1,-17],[2,-15],[8,-7],[3,-8],[1,-9],[-2,-9],[-2,-8],[-2,-4],[-1,-4],[1,-4],[67,-163],[9,-13],[11,-3],[6,0],[7,-2],[6,-6],[5,-7],[4,-8],[3,-10],[2,-9],[2,-10],[2,-4],[3,-3],[2,-3],[1,-6],[-1,-4],[-3,-9],[-1,-4],[2,-11],[4,-8],[9,-14],[9,-19],[3,-21],[-1,-7],[0,-15],[-4,-24],[-1,-14],[5,-5],[5,-3],[5,-8],[-1,-8],[-3,-12],[-6,-20],[-3,-10],[-5,-22],[-3,-11],[-10,-40],[-9,-15],[-2,-8],[0,-12],[14,-63],[7,-15],[6,-15],[3,-25],[-1,-26],[-4,-16],[-4,-3],[-15,-21],[-58,-110],[-4,-12],[-13,-132],[6,-9],[19,-19],[4,-12],[2,-16],[5,-15],[3,-15],[0,-19],[2,-6],[11,-7],[5,-5],[3,-10],[0,-6],[-1,-6],[-1,-9],[4,-16],[9,0],[19,16]],[[75270,75119],[11,2]],[[75281,75121],[12,-1],[13,-4],[9,-7],[3,-6],[7,-13],[4,-5],[18,-14],[27,-9],[5,1],[5,5],[4,7],[5,5],[6,0],[5,-4],[18,-34],[4,-3],[2,0],[3,2],[3,1]],[[75434,75042],[28,-10],[5,1]],[[75467,75033],[12,6],[6,0]],[[75485,75039],[48,-3],[15,4]],[[75548,75040],[10,2]],[[75558,75042],[9,-1],[9,-3],[9,-6],[24,-25],[7,-2]],[[75616,75005],[14,5]],[[75630,75010],[4,0],[13,-6]],[[75647,75004],[5,-1],[13,4]],[[75665,75007],[5,-1],[13,-8],[4,0],[27,8],[18,2],[32,12],[13,-2],[4,0]],[[75781,75018],[10,3]],[[75791,75021],[3,-1],[16,-13],[8,-5],[8,0],[5,2],[6,0],[5,-1],[5,-2]],[[75847,75001],[6,1],[1,0]],[[75854,75002],[0,3],[15,176]],[[75869,75181],[2,67],[-8,122]],[[75863,75370],[3,19],[5,13]],[[75871,75402],[7,10],[32,27],[6,8],[6,11],[10,31]],[[75932,75489],[4,8],[7,6]],[[75943,75503],[4,9],[0,11],[-3,28]],[[75944,75551],[1,10]],[[75945,75561],[27,93],[32,80],[4,15]],[[76008,75749],[1,18],[-2,18]],[[76007,75785],[-4,17],[-18,49]],[[75985,75851],[-3,9],[-1,12],[4,5],[6,0],[7,-2],[29,-4],[8,2],[15,7],[31,40]],[[76081,75920],[25,22],[57,35],[11,13]],[[76174,75990],[8,15],[2,10]],[[76184,76015],[1,20],[-10,28],[-25,51],[-16,40]],[[76134,76154],[-6,20],[-3,21],[0,15]],[[76125,76210],[1,15],[-2,11]],[[76124,76236],[-4,9],[-19,12],[-39,35],[-58,72],[-21,27],[-11,21],[-2,11],[-1,8],[-1,30]],[[75968,76461],[-24,59],[-34,62]],[[75910,76582],[-2,10],[0,16],[-1,15],[-3,20],[-7,21]],[[75897,76664],[-11,51],[20,17],[14,17],[33,47],[9,17]],[[75962,76813],[5,13],[1,4],[0,5]],[[75968,76835],[0,10],[0,5]],[[75968,76850],[1,4],[1,5]],[[75970,76859],[1,3]],[[75971,76862],[1,1],[0,2]],[[75972,76865],[1,3],[-1,3]],[[75972,76871],[-1,2],[-3,5]],[[75968,76878],[-8,9],[16,59]],[[75976,76946],[15,23],[11,10]],[[76002,76979],[10,12],[12,28]],[[76024,77019],[8,12],[115,81]],[[76147,77112],[12,0]],[[76159,77112],[79,-43]],[[76238,77069],[12,-3],[33,1]],[[76283,77067],[8,-3],[13,-11],[1,-1],[26,-5],[47,8],[37,13]],[[76415,77068],[34,25],[19,14]],[[76468,77107],[22,26],[12,4]],[[76502,77137],[23,0],[8,6]],[[76533,77143],[11,26],[4,21],[0,6]],[[76548,77196],[-1,18],[1,12]],[[76548,77226],[3,12],[4,14],[1,13]],[[76556,77265],[-1,14]],[[76555,77279],[-2,16],[-1,18]],[[76552,77313],[3,16],[24,63],[1,31]],[[76580,77423],[-2,16],[-4,9]],[[76574,77448],[-5,11]],[[76569,77459],[-6,8],[-18,12]],[[76545,77479],[-8,8],[-5,9],[-2,7],[-3,22]],[[76527,77525],[-3,12],[-7,21]],[[76517,77558],[-3,17],[0,15],[2,12]],[[76516,77602],[5,19],[1,5],[0,2],[1,9]],[[76523,77637],[-2,30],[-4,24]],[[76517,77691],[-1,18],[3,5]],[[76519,77714],[3,4],[-1,0]],[[76521,77718],[-1,1]],[[76520,77719],[-3,4],[-5,6]],[[76512,77729],[-12,14],[-5,2]],[[76495,77745],[-8,3],[-77,-1]],[[76410,77747],[-14,10]],[[76396,77757],[-2,3]],[[76394,77760],[-4,13],[-7,18]],[[76383,77791],[-7,9],[-9,2],[-49,-3]],[[76318,77799],[-26,-12],[-8,-2],[-6,3],[-3,6],[-5,16],[-3,6],[-12,15],[-3,7],[-2,8],[-1,9],[-2,7]],[[76247,77862],[-4,5],[-23,13],[-7,10]],[[76213,77890],[-4,11],[-3,14],[-3,29]],[[76203,77944],[-1,58],[-2,13],[-12,36]],[[76188,78051],[0,20]],[[76188,78071],[-1,9],[-4,7],[-6,4],[-98,5]],[[76079,78096],[-97,6],[-32,14],[-65,-6],[-13,0],[-10,0]],[[75862,78110],[-17,6],[-6,3]],[[75839,78119],[-3,4]],[[75836,78123],[-2,7],[-3,11],[-5,22],[0,26],[-4,20]],[[75822,78209],[-11,8],[-18,2],[-17,-4],[-10,-10],[-2,-9],[-1,-18],[-4,-9],[-5,-7],[-6,-6],[-6,-4],[-6,-1]],[[75736,78151],[-11,8]],[[75725,78159],[-16,31]],[[75709,78190],[-10,10],[-12,5]],[[75687,78205],[-9,9]],[[75678,78214],[-6,14],[-6,22]],[[75666,78250],[-4,8],[-7,1],[-7,-2],[-5,-5],[-4,-6],[-1,-9],[0,-10],[-1,-10],[-14,-40],[-24,-17],[-26,-2]],[[75573,78158],[-46,12]],[[75527,78170],[-21,-3],[-20,-10],[-20,-15],[-7,-9],[-14,-34],[-8,-10],[-28,-14],[-7,-10],[-2,-11],[-3,-11],[-4,-10],[-9,-3]],[[75384,78030],[-24,6]],[[75360,78036],[-10,0],[-27,-19],[-10,-3],[-32,-1],[-11,-6],[-7,-9],[-20,-32],[-10,-11],[-22,-8],[-10,-8],[-2,-6],[0,-16],[-1,-8],[-4,-7],[-4,-5],[-5,-3],[-5,-2],[-12,-1]],[[75168,77891],[-24,7]],[[75144,77898],[-12,-2],[-14,-15],[-6,-3],[-11,-1],[-6,-3],[-33,-33],[-12,-7],[-36,-10],[-9,-8],[-4,-11],[-2,-14],[0,-12],[0,-6],[-8,-14],[-14,-9],[-15,-5],[-40,-1],[-15,-7],[-1,-2],[-8,-9]],[[74898,77726],[-10,7]],[[74888,77733],[-2,3],[-2,4],[0,3],[1,3],[1,4],[3,6],[1,4],[0,6],[-1,10]],[[74889,77776],[-1,5],[-2,2],[-3,1]],[[74883,77784],[-3,3],[-4,7]],[[74876,77794],[-2,5],[0,4],[1,3],[6,11],[2,2],[1,3],[1,4],[1,4],[-1,3]],[[74885,77833],[-1,1],[-2,1],[-7,1],[-3,2]],[[74872,77838],[-3,3]],[[74869,77841],[-2,5],[-2,4]],[[74865,77850],[0,3],[0,3],[0,21],[0,4],[-1,7]],[[74864,77888],[-1,3],[-2,1]],[[74861,77892],[-15,2],[-2,0],[-2,-2],[-1,-2],[-2,-6],[-1,-2],[-1,-1],[-2,-1]],[[74835,77880],[-2,0],[-3,1]],[[74830,77881],[-12,10],[-3,2]],[[74815,77893],[0,3],[1,3]],[[74816,77899],[2,3],[1,3]],[[74819,77905],[0,3]],[[74819,77908],[1,3],[0,2],[-1,6]],[[74819,77919],[0,5],[2,4],[7,4],[1,2]],[[74829,77934],[1,3],[-1,3]],[[74829,77940],[0,4],[0,4],[1,6]],[[74830,77954],[2,4],[1,3]],[[74833,77961],[4,3],[4,2],[8,2]],[[74849,77968],[4,1],[10,9]],[[74863,77978],[2,4],[1,4]],[[74866,77986],[0,2],[-2,5],[-3,4]],[[74861,77997],[0,2],[-1,1]],[[74860,78000],[0,3],[0,3],[0,3]],[[74860,78009],[1,5],[0,4]],[[74861,78018],[0,9]],[[74861,78027],[1,4],[1,5],[2,2],[2,0]],[[74867,78038],[5,-3],[18,-21],[2,-2],[1,-2],[0,-3],[0,-3],[-1,-6],[-1,-2],[1,-2],[0,-2],[2,-1]],[[74894,77991],[4,0],[36,18]],[[74934,78009],[16,3]],[[74950,78012],[4,2],[2,2]],[[74956,78016],[2,2],[1,3]],[[74959,78021],[3,10],[0,3]],[[74962,78034],[1,7],[0,3],[0,2],[0,3]],[[74963,78049],[0,5],[-1,2]],[[74962,78056],[-2,6],[-1,3],[-7,14],[-5,6],[-9,7]],[[74938,78092],[-5,3],[-8,3]],[[74925,78098],[-9,-1],[-7,2],[-2,2]],[[74907,78101],[-1,2],[0,6],[0,3],[-1,2]],[[74905,78114],[-1,3]],[[74904,78117],[-2,5],[-15,22],[-3,5]],[[74884,78149],[-2,4]],[[74882,78153],[-1,5],[-4,7]],[[74877,78165],[-17,30],[-7,14],[-1,3],[-3,8],[-3,3]],[[74846,78223],[-7,6],[-3,3]],[[74836,78232],[-1,2],[-1,3],[-1,5]],[[74833,78242],[0,4],[-2,5]],[[74831,78251],[-3,2],[-14,13]],[[74814,78266],[-4,7],[-2,5],[-31,36]],[[74777,78314],[-7,14],[-3,5]],[[74767,78333],[-7,5],[-15,16]],[[74745,78354],[-4,5],[-3,5],[-2,4],[-1,6],[-1,2],[-1,6],[0,2],[0,9],[0,2],[1,3],[1,7]],[[74735,78405],[1,3],[0,3]],[[74736,78411],[0,3]],[[74736,78414],[0,3],[-2,8]],[[74734,78425],[-1,4]],[[74733,78429],[-2,6],[-2,3],[-3,2]],[[74726,78440],[-4,2],[-6,5],[-5,5],[-3,4]],[[74708,78456],[-1,3],[-1,3]],[[74706,78462],[0,3],[0,3],[0,3],[2,12]],[[74708,78483],[1,6],[0,6],[-2,22],[0,6],[0,3]],[[74707,78526],[1,6],[2,10],[3,10]],[[74713,78552],[1,6],[0,3],[0,4]],[[74714,78565],[-1,5],[-2,3]],[[74711,78573],[-2,3],[-20,14],[-6,7],[-2,3],[-1,3]],[[74680,78603],[-3,10],[-2,4]],[[74675,78617],[-2,2],[-25,24],[-21,-13],[-1,-2],[-1,-2],[0,-3],[0,-2],[1,-6],[1,-5],[2,-8],[1,-2],[0,-6],[-1,-12],[0,-9],[0,-2],[0,-3],[-1,-3],[-2,-2],[-5,-5],[-8,-6],[-2,-2],[-1,-2],[-2,-3],[-7,-20],[-2,-3],[-1,-3],[-9,-9],[-2,-1],[-2,-1],[-40,2],[-4,3],[-14,13],[-10,7],[-22,2]],[[74495,78535],[-3,2],[-11,10],[-4,5]],[[74477,78552],[-1,4],[-1,3]],[[74475,78559],[-1,8],[-1,6],[-3,4],[-6,6],[-27,20],[-2,0],[-2,0],[-8,-6],[-2,2],[-4,6]],[[74419,78605],[-5,15],[-8,18],[29,27]],[[74435,78665],[2,2],[1,3]],[[74438,78670],[1,6],[0,4],[0,3]],[[74439,78683],[0,3],[0,3]],[[74439,78689],[1,4],[4,7]],[[74444,78700],[24,29],[2,4],[1,5],[2,9],[0,5],[0,4],[0,2],[-1,3],[-1,2]],[[74471,78763],[-1,1],[-2,0]],[[74468,78764],[-27,-12],[-2,0]],[[74439,78752],[-1,2],[-10,12]],[[74428,78766],[-4,4]],[[74424,78770],[-2,1],[-3,1]],[[74419,78772],[-2,0],[-2,-1],[-2,-1],[-7,-8],[-2,-1],[-2,1]],[[74402,78762],[-1,1],[-1,2],[-1,3]],[[74399,78768],[-1,3],[0,3],[0,3]],[[74398,78777],[1,3],[0,3]],[[74399,78783],[3,4],[3,6]],[[74405,78793],[13,16],[18,36]],[[74436,78845],[1,3],[0,3],[1,3],[1,15],[1,3]],[[74440,78872],[3,3],[9,7]],[[74452,78882],[2,2],[1,6],[5,10],[0,3]],[[74460,78903],[0,3],[-1,2],[0,3],[0,3]],[[74459,78914],[1,4]],[[74460,78918],[3,6],[1,3]],[[74464,78927],[2,3],[4,6]],[[74470,78936],[5,5],[3,2],[3,-1],[2,-2],[13,-17],[2,-2],[2,-2],[2,0],[3,0],[8,4],[3,2],[1,2],[0,2]],[[74517,78929],[-1,3],[-5,7]],[[74511,78939],[-1,2],[0,3],[0,3],[1,3],[2,3],[5,2]],[[74518,78955],[18,2],[4,5]],[[74540,78962],[5,19]],[[74545,78981],[26,3],[3,2]],[[74574,78986],[4,3],[1,3],[2,4]],[[74581,78996],[4,5],[7,7]],[[74592,79008],[4,3],[4,0]],[[74600,79011],[6,-1],[5,1],[2,3]],[[74613,79014],[2,3]],[[74615,79017],[2,4],[2,2],[2,1]],[[74621,79024],[6,0],[4,1],[2,3],[2,3],[5,16],[4,9]],[[74644,79056],[1,3],[0,3],[-2,2]],[[74643,79064],[-2,2],[-11,5],[-2,2]],[[74628,79073],[0,3],[1,3],[1,3]],[[74630,79082],[2,2],[11,10]],[[74643,79094],[3,4],[2,4],[1,4]],[[74649,79106],[2,5],[2,3],[29,22],[4,6],[6,7],[14,10]],[[74706,79159],[3,3],[1,2]],[[74710,79164],[2,6],[1,5]],[[74713,79175],[2,3],[2,2],[4,2],[7,5],[2,3],[2,3]],[[74732,79193],[7,15],[3,5],[2,3]],[[74744,79216],[3,1],[7,3]],[[74754,79220],[1,2],[0,3]],[[74755,79225],[0,3],[0,3],[-1,2]],[[74754,79233],[0,3],[-1,3],[-3,4],[-9,14],[-6,6],[-1,2],[-1,2],[-1,3],[0,3]],[[74732,79273],[1,4],[1,4],[1,2]],[[74735,79283],[2,2],[25,9]],[[74762,79294],[2,3],[3,9]],[[74767,79306],[4,7],[14,18],[2,4],[0,3],[-15,31],[-1,1],[-2,1],[-5,-1],[-6,-3],[-2,0],[-2,1]],[[74754,79368],[-1,2],[-1,2]],[[74752,79372],[1,3],[2,10],[1,3],[0,3],[0,3]],[[74756,79394],[0,3],[-1,2],[-14,17]],[[74741,79416],[-1,2],[-2,1],[-2,0],[-14,-3]],[[74722,79416],[-4,0]],[[74718,79416],[-11,6],[-12,9]],[[74695,79431],[-1,3],[-1,3],[0,2]],[[74693,79439],[1,2],[4,8],[0,3]],[[74698,79452],[0,3]],[[74698,79455],[-1,2],[-1,3],[0,2]],[[74696,79462],[7,9],[11,10],[2,2],[6,3]],[[74722,79486],[2,2],[1,2],[2,12],[1,3]],[[74728,79505],[1,3],[6,8],[1,3]],[[74736,79519],[0,3],[-1,2],[-5,7]],[[74730,79531],[-6,15],[-1,4]],[[74723,79550],[1,5]],[[74724,79555],[7,9],[3,6]],[[74734,79570],[2,6],[0,3],[0,3],[-13,29],[-5,8],[-2,4],[-1,4]],[[74715,79627],[0,5],[-2,4]],[[74713,79636],[-1,2],[-19,20],[-2,1]],[[74691,79659],[-2,-1],[-14,-8],[-2,-2],[-2,-8],[-1,-2],[-2,-1],[-2,0],[-3,0]],[[74663,79637],[-2,1],[-4,3]],[[74657,79641],[-1,2],[-1,3]],[[74655,79646],[3,7],[5,11],[1,6],[0,5],[0,5]],[[74664,79680],[1,3],[1,3]],[[74666,79686],[13,13],[3,4]],[[74682,79703],[1,4]],[[74683,79707],[1,3],[0,11]],[[74684,79721],[3,23],[0,5],[-1,3],[-8,11]],[[74678,79763],[-1,2],[-1,3],[1,2],[1,3]],[[74678,79773],[4,2],[2,0],[3,0],[2,0]],[[74689,79775],[3,2],[2,7]],[[74694,79784],[3,7],[23,20],[3,4],[1,3],[1,3],[0,7],[0,13],[0,4]],[[74725,79845],[1,4],[1,7]],[[74727,79856],[2,4],[2,2],[8,5]],[[74739,79867],[4,3],[5,7]],[[74748,79877],[2,1]],[[74750,79878],[18,-2],[4,1]],[[74772,79877],[6,14],[16,16],[3,5],[1,3],[-1,3],[-1,2],[-2,2]],[[74794,79922],[-1,1],[-3,1]],[[74790,79924],[-13,-2],[-2,1]],[[74775,79923],[-1,2],[-2,3]],[[74772,79928],[-1,4]],[[74771,79932],[0,5],[0,4]],[[74771,79941],[2,3],[10,18]],[[74783,79962],[0,2],[-2,3]],[[74781,79967],[-4,3],[-15,6]],[[74762,79976],[-6,1],[-14,-4],[-2,1],[-1,2],[0,3],[-1,6],[-2,5]],[[74736,79990],[-1,5],[-15,28]],[[74720,80023],[-2,6],[-1,3]],[[74717,80032],[0,3],[0,4]],[[74717,80039],[1,3],[1,4],[2,5]],[[74721,80051],[2,4]],[[74723,80055],[4,4],[8,5]],[[74735,80064],[39,17],[1,1]],[[74775,80082],[1,2],[-1,3]],[[74775,80087],[-4,17],[0,3],[1,4]],[[74772,80111],[11,23],[1,4],[-1,3],[-2,2],[-6,4]],[[74775,80147],[-2,3],[-2,3]],[[74771,80153],[0,3],[0,4]],[[74771,80160],[1,3]],[[74772,80163],[2,4],[1,3],[0,5]],[[74775,80175],[0,3],[-2,3]],[[74773,80181],[-3,4],[-3,4]],[[74767,80189],[-4,4],[-3,1]],[[74760,80194],[-2,0],[-18,-9],[-1,-1],[-2,-2],[-2,-3],[-7,-17],[-1,-2],[-2,0],[-2,0],[-11,11],[-2,3]],[[74710,80174],[-1,3],[-1,3]],[[74708,80180],[1,4],[2,10]],[[74711,80194],[0,5],[0,3],[-2,2],[-5,5],[-18,18]],[[74686,80227],[-7,3],[-8,-1]],[[74671,80229],[-3,-2],[-2,-2],[-2,-3],[-2,-6],[-3,-3],[-3,-4],[-10,-4],[-4,-3],[-3,-4],[-2,-6],[-1,-4],[-2,-4],[-4,-4],[-3,-1],[-3,-1],[-4,0],[-2,-2],[-2,-3],[-1,-4],[-3,-4],[-6,-5],[-3,-1]],[[74603,80159],[-3,0]],[[74600,80159],[-2,2]],[[74598,80161],[0,3],[-1,3]],[[74597,80167],[-1,17]],[[74596,80184],[0,2],[-2,3]],[[74594,80189],[-2,1],[-38,20],[-4,2],[-1,3]],[[74549,80215],[0,2],[1,2]],[[74550,80219],[2,1]],[[74552,80220],[19,3],[17,7]],[[74588,80230],[2,2],[1,2],[1,3]],[[74592,80237],[2,6],[1,4]],[[74595,80247],[5,7],[1,2]],[[74601,80256],[0,3],[0,6]],[[74601,80265],[0,5],[0,3],[0,2]],[[74601,80275],[1,1],[0,1],[6,7],[2,2]],[[74610,80286],[2,3],[0,3]],[[74612,80292],[0,3]],[[74612,80295],[0,2],[-6,17],[-1,3]],[[74605,80317],[0,3],[7,14],[1,3]],[[74613,80337],[1,3],[0,40]],[[74614,80380],[0,6],[6,9],[0,2],[0,3],[-1,6],[0,4],[0,4],[2,4],[2,3],[2,2],[13,-1]],[[74638,80422],[3,0],[2,2]],[[74643,80424],[4,5],[3,7],[3,10]],[[74653,80446],[1,7],[0,9]],[[74654,80462],[-2,32],[-1,3],[-2,1],[-2,0]],[[74647,80498],[-3,-2],[-9,-10],[-2,-1],[-2,0]],[[74631,80485],[-1,1],[-1,3],[-1,3]],[[74628,80492],[-1,3],[0,6],[1,5],[4,10]],[[74632,80516],[1,5],[0,4],[-1,6]],[[74632,80531],[-1,3],[-1,2],[-2,1],[-10,-1]],[[74618,80536],[-2,1],[-3,2]],[[74613,80539],[-2,3],[-2,8],[-2,5],[-6,2]],[[74601,80557],[-2,3],[-3,4]],[[74596,80564],[0,4],[0,3]],[[74596,80571],[1,3],[0,6]],[[74597,80580],[1,14],[-1,4]],[[74597,80598],[0,3],[-3,4]],[[74594,80605],[-6,9],[-2,4]],[[74586,80618],[-2,4]],[[74584,80622],[0,5],[-1,5]],[[74583,80632],[0,6]],[[74583,80638],[0,5],[-1,4]],[[74582,80647],[-3,11],[-1,4],[-3,5],[-18,22],[-1,3],[-2,5],[-1,3],[0,4]],[[74553,80704],[1,3],[0,3]],[[74554,80710],[1,3],[1,3]],[[74556,80716],[4,6],[1,3]],[[74561,80725],[4,4]],[[74565,80729],[18,14],[1,1],[16,26]],[[74600,80770],[3,7],[3,10]],[[74606,80787],[8,16],[3,6],[1,2]],[[74618,80811],[2,3],[8,11],[2,6],[0,2]],[[74630,80833],[1,3],[0,2]],[[74631,80838],[3,3],[48,50]],[[74682,80891],[6,9],[51,40],[8,3],[17,0],[5,3]],[[74769,80946],[7,12],[6,9]],[[74782,80967],[6,7],[10,6]],[[74798,80980],[25,4],[2,1],[1,3]],[[74826,80988],[2,3],[2,6],[0,3]],[[74830,81000],[-1,3],[-2,4],[-1,3]],[[74826,81010],[1,5],[1,3]],[[74828,81018],[2,1]],[[74830,81019],[10,2],[2,1]],[[74842,81022],[2,2],[1,3]],[[74845,81027],[1,3]],[[74846,81030],[1,4],[-1,3]],[[74846,81037],[-1,4]],[[74845,81041],[-4,3],[-4,2]],[[74837,81046],[-14,3],[-5,3],[-5,4]],[[74813,81056],[-3,4],[-2,3]],[[74808,81063],[0,3],[-1,3]],[[74807,81069],[3,14]],[[74810,81083],[0,6],[-8,10],[-5,10]],[[74797,81109],[-4,16],[-4,10],[9,5],[0,6],[-1,3],[-1,3],[-2,3],[-11,8],[-1,2],[-1,2],[-1,5],[0,4]],[[74780,81176],[0,3],[-1,3]],[[74779,81182],[-2,3]],[[74777,81185],[-4,3],[-4,1]],[[74769,81189],[-3,0],[-7,0],[-3,1],[-2,2],[-1,5],[0,4],[0,4],[1,6]],[[74754,81211],[1,3],[0,3],[-1,3]],[[74754,81220],[-3,2],[-3,1],[-6,1]],[[74742,81224],[-2,1],[-3,2]],[[74737,81227],[0,4],[0,3],[3,13]],[[74740,81247],[0,3],[0,3]],[[74740,81253],[0,3],[-3,5]],[[74737,81261],[0,2],[0,3],[0,3],[1,3]],[[74738,81272],[1,3],[-1,3],[-5,2]],[[74733,81280],[-35,2],[-3,2]],[[74695,81284],[-1,2],[0,5]],[[74694,81291],[1,3],[2,2],[2,2]],[[74699,81298],[1,2],[-2,2]],[[74698,81302],[-10,5],[-5,7],[-35,5],[-4,2],[-4,4]],[[74640,81325],[-12,18],[-3,3]],[[74625,81346],[-16,11],[-2,7]],[[74607,81364],[3,4],[4,4],[2,4],[1,6]],[[74617,81382],[1,15],[-2,7],[-3,4]],[[74613,81408],[-20,5]],[[74593,81413],[-2,2],[-2,2]],[[74589,81417],[-1,2],[-2,5],[-2,11]],[[74584,81435],[0,3],[0,4],[0,10]],[[74584,81452],[1,3],[1,2],[2,1],[40,6],[2,1]],[[74630,81465],[2,2],[1,4],[0,16],[1,2]],[[74634,81489],[3,2],[9,4],[2,2]],[[74648,81497],[1,2]],[[74649,81499],[1,4],[0,4]],[[74650,81507],[0,3],[-1,3]],[[74649,81513],[-1,2],[-4,2]],[[74644,81517],[-17,3],[-2,2]],[[74625,81522],[-1,5],[-2,23]],[[74622,81550],[0,7],[1,6]],[[74623,81563],[0,3],[-1,3]],[[74622,81569],[-5,4],[4,30],[23,94],[1,11]],[[74645,81708],[0,6],[-3,1]],[[74642,81715],[-2,0],[-9,-4],[-11,0],[-29,8],[-2,2]],[[74589,81721],[0,2],[0,3]],[[74589,81726],[0,3],[1,5]],[[74590,81734],[2,3],[26,39]],[[74618,81776],[2,3],[4,4],[2,2],[2,1],[13,1]],[[74641,81787],[3,1],[2,2]],[[74646,81790],[2,2],[1,3]],[[74649,81795],[3,7],[5,16]],[[74657,81818],[6,14]],[[74663,81832],[5,14],[15,60]],[[74683,81906],[3,7],[5,2],[15,3],[3,2],[3,4]],[[74712,81924],[10,17],[1,1]],[[74723,81942],[1,1]],[[74724,81943],[3,1]],[[74727,81944],[8,-1],[1,1],[2,1],[3,4],[2,3],[10,20],[4,12],[4,19]],[[74761,82003],[2,4],[2,2]],[[74765,82009],[3,-1],[12,-6],[12,-3]],[[74792,81999],[3,0],[27,15]],[[74822,82014],[5,6],[2,7]],[[74829,82027],[0,9],[-9,72]],[[74820,82108],[10,45]],[[74830,82153],[-3,22],[-8,15]],[[74819,82190],[-3,2],[-3,2],[-124,3],[-9,3],[-3,2],[-2,2],[-3,4]],[[74672,82208],[-29,29],[-8,5]],[[74635,82242],[-74,19],[-74,20],[-4,2],[-3,2]],[[74480,82285],[-1,2],[-2,2]],[[74477,82289],[-6,15]],[[74471,82304],[-4,16],[-1,3]],[[74466,82323],[0,2],[-1,3],[0,3],[0,3],[-1,2],[-2,4],[-3,3],[-6,6],[-3,4],[-1,3],[-1,14],[-27,129],[0,2],[1,3]],[[74422,82504],[1,3],[1,3],[1,4]],[[74425,82514],[63,106],[62,106],[3,3],[2,2],[110,52]],[[74665,82783],[6,4],[3,4],[0,2]],[[74674,82793],[-1,3],[-57,91],[-3,9],[-2,10]],[[74611,82906],[5,24],[1,10],[-4,2]],[[74613,82942],[-6,1]],[[74607,82943],[-90,-9],[-91,-9]],[[74426,82925],[-7,1]],[[74419,82926],[-4,4],[-5,7]],[[74410,82937],[-90,196],[-9,15]],[[74311,83148],[-4,2],[-4,1]],[[74303,83151],[-77,7],[-7,2]],[[74219,83160],[-3,6],[-3,8]],[[74213,83174],[-18,85],[-2,5],[-3,3],[-128,38]],[[74062,83305],[-91,1],[-91,2],[-131,-36]],[[73749,83272],[-112,4]],[[73637,83276],[-112,4],[-7,6],[-12,16]],[[73506,83302],[-19,11],[-6,6],[-1,2]],[[73480,83321],[0,3]],[[73480,83324],[2,3],[3,6]],[[73485,83333],[15,20],[1,5],[1,6]],[[73502,83364],[1,1],[3,64],[1,11]],[[73507,83440],[1,7],[2,2],[10,11],[3,5]],[[73523,83465],[3,7],[2,10]],[[73528,83482],[6,21],[2,6]],[[73536,83509],[4,6],[8,11],[2,4]],[[73550,83530],[1,4]],[[73551,83534],[0,4],[-1,3],[-1,3],[-11,20]],[[73538,83564],[-2,5],[-4,12]],[[73532,83581],[-2,6],[-98,185],[-7,8]],[[73425,83780],[-20,28]],[[73513,83888],[101,57],[100,57]],[[73803,84054],[3,4],[-14,21]],[[73788,84100],[2,3],[30,28]],[[73825,84134],[50,12],[5,6],[1,14]],[[73738,84242],[-7,12],[-8,15],[-5,7]],[[73658,84279],[-3,3],[-11,16]],[[73563,84325],[-34,10],[-4,3],[-3,3]],[[73521,84344],[0,2],[-3,8]],[[73515,84364],[-2,6],[-2,2]],[[73507,84376],[-19,11],[-3,3],[-3,5]],[[73478,84405],[0,2],[-1,3]],[[73486,84440],[1,2],[-1,1]],[[73551,84675],[9,6],[12,13]],[[73585,84726],[-3,8],[-1,3],[-1,3]],[[73581,84744],[3,4],[4,5],[2,4]],[[73610,84778],[10,10],[3,2],[9,5],[4,3],[1,3]],[[73637,84801],[0,3],[-2,2]],[[73654,84850],[1,3],[2,6]],[[73703,84928],[3,2],[28,5]],[[73734,84935],[6,4],[10,14],[5,9],[0,3]],[[73755,84965],[0,2],[-3,8]],[[73749,84985],[0,3],[0,4],[0,3]],[[73749,84995],[3,4],[1,1]],[[73773,85029],[1,8],[0,3],[-1,3]],[[73773,85043],[-1,2],[-14,6]],[[73752,85120],[6,4],[1,4]],[[73797,85199],[-8,8],[-41,0]],[[73727,85193],[-2,2],[-3,5]],[[73719,85210],[-2,8],[-5,6]],[[73714,85251],[2,7],[-12,12]],[[73638,85296],[-6,5]],[[73632,85301],[-4,7],[-4,9]],[[73624,85317],[-2,6],[-1,0]],[[73621,85323],[-1,2],[5,8]],[[73669,85343],[3,4],[10,10]],[[73682,85357],[4,4],[17,27]],[[73703,85388],[2,4],[1,6]],[[73705,85412],[1,4],[1,5]],[[73711,85430],[2,5],[0,4],[0,4]],[[73727,85475],[3,6],[2,3]],[[73882,85653],[0,3],[1,4],[2,6],[8,16],[1,4]],[[73896,85710],[-1,5],[-2,3]],[[73893,85718],[-4,6],[-11,9]],[[73874,85740],[0,3],[-1,2]],[[73872,85751],[-3,7],[-1,3]],[[73868,85761],[0,3],[1,15]],[[73861,85889],[-19,16],[-2,2],[-2,3]],[[73838,85910],[-1,2],[-1,3],[0,4]],[[73849,85965],[1,7],[-1,3]],[[73652,85972],[-2,1],[-3,2]],[[73609,86004],[-6,2],[-7,4]],[[73590,86024],[1,4],[1,3],[1,3]],[[73600,86043],[2,7],[-1,4]],[[73601,86054],[0,4],[-2,4]],[[73595,86067],[-6,3],[-28,2]],[[73464,86049],[-43,3]],[[73414,86056],[-2,4],[-3,6]],[[73409,86066],[0,4],[0,4]],[[73421,86090],[16,9],[2,4],[1,4]],[[73441,86115],[0,4],[-1,4]],[[73435,86130],[-2,2],[-4,3]],[[73432,86191],[9,17],[4,5],[2,3]],[[73449,86218],[6,3],[16,2],[3,2],[2,1]],[[73495,86275],[1,8],[-1,3],[-5,6]],[[73476,86321],[-2,8],[0,4]],[[73459,86409],[-3,5],[-4,3]],[[73387,86443],[2,2],[2,1]],[[73405,86447],[9,4],[2,2],[0,3]],[[73422,86486],[0,4],[-3,2],[-4,1]],[[73385,86497],[-5,4],[-5,4]],[[73373,86507],[-4,7],[-15,15],[-4,4]],[[73345,86545],[-1,3],[-2,3],[-6,3]],[[73220,86541],[-2,1],[-2,1]],[[73197,86571],[0,3],[1,2]],[[73198,86576],[2,3],[1,3]],[[73199,86597],[1,5],[1,7],[0,3]],[[73157,86738],[2,3],[2,2]],[[73161,86743],[25,8],[10,7]],[[73201,86762],[2,3],[1,3]],[[73170,86814],[-5,10],[-11,26]],[[73154,86850],[-3,6],[-16,17]],[[73122,86886],[-27,10],[-3,2]],[[73092,86898],[-2,3],[-7,12]],[[73083,86913],[-1,4],[-2,4]],[[73077,86945],[1,7],[0,13]],[[73080,87005],[2,2],[2,2]],[[73084,87009],[22,3],[4,4]],[[73136,87034],[2,6],[-1,4]],[[73137,87044],[-1,3],[-2,4]],[[73127,87061],[-3,5],[-14,11],[-3,4]],[[73107,87081],[-1,3],[-1,3]],[[73105,87087],[0,3],[-1,15]],[[73103,87113],[-1,4],[-2,3]],[[73077,87133],[-3,1],[-3,1]],[[73071,87135],[-4,4],[-2,3]],[[73063,87145],[2,2],[4,5]],[[73069,87152],[2,3],[-1,3],[-3,3],[-69,47]],[[72811,87361],[3,2],[15,2],[2,2]],[[72831,87370],[-1,6],[-1,4]],[[72846,87377],[3,1],[1,2]],[[72852,87393],[4,0],[19,11]],[[72873,87408],[-11,5],[-4,2]],[[72858,87415],[1,1],[2,1]],[[72868,87419],[2,2],[-1,3],[-12,12]],[[72857,87436],[-8,13],[-2,5]],[[72852,87463],[3,6],[1,3]],[[72856,87472],[4,6],[9,10]],[[72869,87488],[2,1]],[[72854,87528],[-4,0]],[[72847,87529],[-13,12],[-5,5]],[[72829,87546],[-3,3],[-9,3]],[[72808,87560],[-4,7],[-5,8],[-5,6]],[[72792,87591],[3,2],[10,6]],[[72805,87599],[3,2],[1,2],[-2,1]],[[72807,87604],[-5,1],[-1,1]],[[72805,87624],[-13,13],[-3,2]],[[72772,87642],[-4,7],[-4,3]],[[72748,87660],[-3,5],[-10,20]],[[72722,87703],[-4,5],[-5,4]],[[72710,87715],[-7,11],[-2,4]],[[72702,87738],[4,5],[4,5],[2,2]],[[72712,87750],[4,0]],[[72760,87744],[9,9],[2,2]],[[72794,87748],[82,-2],[3,1],[2,3],[1,4],[0,6]],[[72884,87771],[1,3],[0,2],[0,2],[-2,14]],[[72882,87842],[2,5],[1,5],[0,15]],[[72889,87878],[3,1],[3,1]],[[72920,87870],[3,0],[3,2],[2,2]],[[72930,87876],[0,3],[-4,6]],[[72944,87925],[12,6],[10,3]],[[72966,87934],[4,2],[2,3]],[[72972,87939],[1,3],[0,4],[-2,9]],[[72971,87955],[-1,6],[-2,8]],[[72969,87976],[1,4],[1,3]],[[72966,88050],[-1,3],[-3,4]],[[72911,88095],[-3,2],[0,2]],[[72911,88100],[11,3],[2,2]],[[73018,88126],[14,3],[2,3],[4,3]],[[73059,88157],[-58,32],[-2,3],[-1,4]],[[73001,88203],[1,3],[-1,3]],[[72999,88214],[-1,3],[-2,2]],[[72980,88215],[-38,12],[-8,5]],[[72934,88232],[-3,4],[-2,4]],[[72930,88258],[0,3],[-3,21]],[[72927,88282],[-1,10],[-8,26],[-4,7]],[[72899,88337],[-3,1],[-14,3]],[[72877,88344],[-3,5],[-5,9],[-1,5]],[[72870,88367],[3,2],[6,2]],[[72908,88384],[5,5],[2,2],[0,3]],[[72897,88427],[-8,1],[-8,0]],[[72849,88420],[-101,14],[-7,3]],[[72711,88467],[0,3],[0,3]],[[72712,88475],[13,16],[2,2]],[[72727,88493],[10,4],[13,10]],[[72752,88509],[4,6],[1,3]],[[72710,88575],[-20,6],[-3,-1]],[[72623,88475],[-24,15]],[[72490,88449],[-4,0],[-3,2]],[[72436,88497],[-2,3],[-8,4]],[[72216,88522],[-5,0],[-5,4],[-5,1]],[[72184,88526],[-2,1],[-1,2]],[[72181,88529],[2,3],[2,2],[1,3]],[[72186,88537],[0,3],[-11,9],[-2,3]],[[72171,88558],[1,6],[-2,4]],[[72170,88568],[-3,1],[-20,2]],[[72147,88571],[-2,2],[0,2]],[[72147,88577],[0,4],[-4,2]],[[72129,88596],[-4,5],[-2,4]],[[72123,88605],[0,4],[0,4]],[[72123,88616],[0,3],[-1,3]],[[72122,88622],[-5,14],[-6,11]],[[72109,88654],[-2,5],[-5,3]],[[72102,88662],[-14,6],[-3,3]],[[72090,88678],[2,2],[-1,2]],[[72091,88682],[-2,2],[-5,3]],[[72084,88687],[-1,3],[-1,3]],[[71963,88718],[-14,3],[-2,2]],[[71965,88749],[-2,2],[-1,3]],[[71962,88754],[1,3],[0,4]],[[71938,88783],[2,3],[2,2],[4,2],[1,2]],[[71947,88795],[-1,2],[-26,14]],[[71911,88819],[0,2],[1,1]],[[71944,88828],[10,11],[1,3]],[[71955,88842],[2,2],[1,3],[1,2]],[[71993,88871],[-1,5],[-9,11]],[[71996,88894],[2,0],[1,2],[-3,7]],[[71996,88914],[3,2],[3,1]],[[72038,88913],[3,1],[2,2]],[[72036,88968],[1,2],[3,1],[3,1]],[[72070,88950],[9,-1],[3,1]],[[72106,88985],[7,7],[1,3]],[[72114,88995],[1,3],[0,4]],[[72126,89018],[3,1],[12,2],[2,2]],[[72143,89023],[2,3],[-3,6]],[[72175,89037],[14,5],[20,18]],[[72209,89060],[2,2],[37,22]],[[72250,89096],[-3,6],[-1,4]],[[72270,89105],[3,1],[1,4]],[[72295,89125],[4,1],[3,2],[2,3],[3,5]],[[72307,89136],[3,2],[2,2]],[[72426,89116],[1,3],[2,2],[3,1]],[[72443,89129],[0,3],[-2,0],[-3,0]],[[72438,89132],[-8,2],[-13,1],[-5,1]],[[72412,89136],[-4,2],[-2,3],[-1,3]],[[72405,89144],[1,4],[0,3],[-2,2]],[[72402,89156],[-6,4],[-4,3]],[[72391,89166],[1,4],[2,2],[8,2],[3,2],[0,5]],[[72406,89198],[0,5],[0,4]],[[72408,89209],[10,4],[2,3]],[[72420,89216],[2,2],[1,4]],[[72424,89225],[1,4],[1,3]],[[72426,89232],[2,3],[1,3]],[[72415,89272],[-7,0],[-3,1]],[[72405,89273],[-14,10],[-3,3],[-1,3],[-1,4]],[[72386,89293],[1,3],[0,4]],[[72387,89300],[2,3],[1,3]],[[72403,89317],[7,7],[1,3]],[[72412,89333],[-1,2],[-10,8]],[[72380,89363],[-1,3],[-1,6],[-1,3]],[[72375,89395],[1,20],[0,10],[-2,15]],[[72374,89440],[0,5],[0,3],[1,20],[-1,6],[-3,3]],[[72101,89598],[-27,13],[-37,8]],[[71995,89635],[-2,6],[-2,4]],[[71991,89645],[0,8],[-6,17]],[[71994,89691],[43,20],[2,2]],[[72039,89713],[3,2],[1,3]],[[72051,89738],[1,4],[0,3]],[[72052,89745],[0,5],[-2,4]],[[72046,89765],[-2,3],[-6,8]],[[72218,89789],[2,2],[2,4],[3,5]],[[72227,89806],[1,3],[2,1]],[[72230,89810],[14,0],[3,1]],[[72255,89876],[-1,3],[-6,7]],[[72243,89893],[-7,2],[-4,1]],[[72263,89918],[3,2],[3,4]],[[72269,89924],[3,1]],[[72298,89927],[1,2],[2,0]],[[72316,89938],[-7,6],[-3,2],[-10,3]],[[72290,89957],[-2,6],[-3,3]],[[72241,89981],[-3,2],[-4,3],[-8,4]],[[72189,89996],[-1,2],[-1,1]],[[72057,90028],[-3,3],[-4,2]],[[72006,90041],[-20,1],[-8,-2]],[[71970,90041],[-1,3],[-1,3]],[[71968,90047],[1,4],[-1,4]],[[71966,90057],[-2,2],[-15,6]],[[71920,90064],[-2,1],[-1,3]],[[71920,90077],[-1,2],[-3,2]],[[71916,90081],[-30,12],[-3,2],[1,1]],[[71884,90096],[3,2],[1,2]],[[71888,90100],[-2,2],[-4,0]],[[71854,90106],[-2,2],[-13,5]],[[71839,90113],[-3,2],[1,1]],[[71849,90128],[0,2],[1,3],[0,4]],[[71848,90143],[-2,4],[-5,5]],[[71837,90159],[-1,5],[-4,2]],[[71792,90189],[-1,3],[-1,4]],[[71806,90211],[1,0],[-1,4]],[[71815,90724],[-7,174],[-8,174]],[[71907,91136],[108,7],[107,7]],[[72122,91150],[108,8],[118,100],[118,100],[118,100],[118,101],[118,100],[118,100],[118,100],[118,101],[65,55]],[[73239,92015],[123,105],[122,104]],[[73607,92328],[123,104],[122,104]],[[73852,92536],[123,104],[122,105]],[[74465,93057],[123,104],[122,104]],[[74708,93751],[0,242],[-1,243],[-1,243]],[[74291,94721],[-138,0],[-138,0],[-139,0]],[[72496,94721],[-138,0],[-139,0]],[[74967,95289],[133,1],[132,0]],[[75496,95292],[133,1],[132,1]],[[76025,95295],[133,1],[132,1]],[[76554,95298],[133,1],[132,1]],[[77083,95301],[135,0],[134,-1],[135,-1],[134,-1],[134,0],[135,-1],[134,-1],[135,-1],[134,-1],[135,0],[134,-1],[135,-1],[134,-1]],[[78831,95291],[135,-1],[134,0]],[[79100,95290],[134,-1],[135,-1],[134,-1],[135,-1],[134,0],[135,-1],[134,-1]],[[80041,95284],[135,-1],[134,-1]],[[80310,95282],[134,0],[135,-1],[134,-1],[135,-1],[134,-1]],[[80982,95278],[135,0],[134,-1]],[[81251,95277],[0,262],[0,263],[0,262],[0,262],[0,263],[0,262],[0,262],[-1,263],[0,262],[0,262],[0,263],[0,262],[0,262],[0,263],[0,262],[0,262],[0,263],[-81250,262]],[[0,99999],[85417,0],[1,-258],[0,-257],[0,-258],[1,-257],[0,-258],[1,-257],[0,-258],[0,-258],[1,-257],[0,-258],[1,-257]],[[89160,28754],[-17,12],[-55,-7],[-31,8],[-31,26],[-63,71],[-21,39],[-38,117],[-61,92],[-44,88],[-33,95],[-6,38],[-1,52],[-14,44],[-5,33],[2,32],[9,29],[13,21],[23,22],[5,12],[-2,50],[-11,54],[-51,189],[-44,113],[-32,52],[-87,111],[-20,7],[-52,-48],[-67,-11],[-12,-73],[-36,-52],[-18,-14],[-18,-3],[-60,27],[-9,-35],[-16,-29],[-43,-40],[-25,-13],[-23,3],[-35,33],[-38,-14],[-114,-11],[-19,3],[-23,21],[-20,46],[-39,54],[-76,167],[-77,168],[-76,167],[-20,25],[-15,55],[-26,53],[-24,14],[-25,34],[-36,16],[-15,21],[-57,148],[-57,148],[-56,148],[-11,22],[-5,19],[-14,142],[-14,143],[-14,21],[-17,45],[-19,30],[-36,90],[-5,31],[7,59],[-6,54],[-5,9],[-29,16],[-14,24],[-9,39],[0,53],[-20,-9],[-20,2],[-16,12],[-31,42],[-75,18],[-31,41],[-33,26],[-29,48],[-16,14],[-10,0],[-37,-40],[-30,2],[-37,-9],[-34,11],[-24,23],[-41,67],[-84,103],[-51,49],[-69,52],[-34,-31],[-66,-34],[-123,11],[-123,-2],[-130,-29],[-52,-3],[-38,-12],[-41,-18]],[[85832,32293],[0,31],[0,18]],[[85832,32342],[1,16],[0,37]],[[85833,32395],[0,277],[0,278],[0,277],[0,278],[1,278],[0,277],[0,278],[0,277],[0,278],[0,277]],[[85833,41856],[16,-9],[45,16],[34,-10],[-39,69],[-10,37],[-4,35],[4,54],[29,116],[10,88],[12,26],[35,34],[15,30],[35,190],[22,75],[24,34],[30,5],[-6,57],[0,69],[6,66],[12,45],[19,34],[27,27],[3,38],[0,1],[0,18],[8,43],[24,62],[24,24],[8,1],[3,27],[17,40],[35,32],[48,-3],[8,11],[4,15],[-3,45],[-26,23],[-62,-4],[-43,17],[-50,-18],[-35,6],[-30,33],[-20,59],[-4,40],[3,42],[28,105],[21,97],[19,52],[25,49],[21,74],[17,27],[19,14],[19,1],[17,-11],[12,-15],[16,-39],[21,-15],[23,-28],[29,19],[37,8],[51,51],[28,11],[22,-9],[51,-44],[21,-42],[13,39],[14,26],[57,54],[21,9],[76,1],[28,40],[34,34],[22,13],[22,-1],[17,-14],[15,17],[19,5],[19,-7],[28,-39],[34,-25],[19,-34],[10,-42],[1,-54],[-12,-50],[-17,-32],[29,-58],[14,29],[20,22],[23,10],[26,-5],[24,-20],[18,-34],[10,-41],[1,-50],[30,10],[7,2],[41,-15],[14,-18],[27,-52],[91,-106],[12,1],[24,37],[25,19],[27,3],[32,-18],[10,9],[-3,26],[3,51],[12,40],[18,28],[25,14],[24,-6],[20,-23],[17,-42],[6,-45],[-3,-45],[-12,-45],[2,-26],[18,9],[26,51],[42,29],[24,67],[42,66],[7,5],[2,14],[13,36],[19,25],[25,10],[23,-9],[8,-12],[22,17],[54,150],[17,85],[17,32],[17,17],[20,7],[18,-4],[18,-15],[14,-24],[9,-33],[4,-39],[-2,-41],[-19,-114],[-32,-85],[14,4],[26,-15],[22,-43],[9,-57],[-3,-46],[-10,-37],[-14,-26],[-17,-18],[9,-6],[20,-34],[20,-94],[30,-84],[3,-60],[-11,-49],[-59,-118],[-28,-91],[6,-97],[-9,-59],[-32,-57],[-4,-12],[-27,-83],[-44,-49],[-4,-8],[11,9],[20,1],[14,11],[44,10],[15,-10],[1,4],[26,23],[28,2],[18,-13],[16,-25],[10,-32],[4,-34],[-5,-66],[-9,-22],[3,-23],[-6,-50],[-13,-40],[19,-29],[11,-41],[4,-57],[-5,-59],[-11,-47],[-13,-32],[-14,-19],[-21,-11],[-85,4],[-60,37],[-43,-5],[-26,28],[-15,45],[-3,39],[-2,-1],[-9,-46],[-14,-27],[-34,-36],[-45,-117],[32,-18],[25,-50],[9,-68],[-9,-64],[31,-50],[81,-94],[14,-25],[9,-31],[42,22],[43,-17],[40,27],[17,-6],[17,-17],[17,-32],[28,-36],[18,-42],[13,-67],[7,-77],[8,-24],[43,-58],[73,-51],[22,-24],[18,-31],[28,-74]],[[89583,12904],[-27,26],[-42,26],[-43,16],[-96,13],[-52,2],[-33,-5],[-39,-15],[-56,24],[-36,10],[-61,3],[-55,13],[-86,-3],[-31,3],[-21,7],[-31,23],[-23,12],[-56,17]],[[88795,13076],[-60,19],[-76,8],[-77,7],[-32,14],[-27,5],[-26,0],[-37,-7],[-17,3],[-53,20],[-89,62],[-19,5],[-39,4],[-39,11],[-84,5],[-83,5],[-103,-17],[-31,30],[-89,38],[-13,0],[-56,-10],[-16,34],[-25,25],[-29,15],[-48,10],[-29,1],[-29,-3],[-23,-7],[-21,-11],[-25,-26],[-18,-48],[-10,-18],[-16,-15],[-21,-4],[-10,1],[-22,0],[-50,18],[-25,22],[-34,19],[-55,45],[-31,17],[-25,7],[-126,15],[-51,-1],[-67,-15],[-34,-15],[-34,-28],[-44,17],[-46,1],[-104,-17],[-56,-24],[-25,-6],[-70,11],[-71,11],[-58,4],[-42,18],[-26,6],[-26,1],[-29,-6],[-39,-17],[-43,-37],[-63,-9],[-48,-16],[-87,-64],[-54,-55],[-9,-18],[-10,-43],[-32,-33],[-14,-21],[-19,-53],[-2,-52],[-31,-56],[-9,-7],[-10,-3],[-37,3],[-25,-2],[-64,-26],[-15,2],[-36,19],[-31,7],[-80,4],[-34,-4],[-18,21],[-18,14],[-28,10]],[[85418,32007],[66,42],[122,54]],[[85606,32103],[66,50],[67,49],[71,75],[21,16],[1,0]],[[89587,72440],[0,-104],[0,-273],[0,-274],[0,-273],[0,-274],[0,-274],[0,-273],[0,-274],[-1,-273],[0,-274],[0,-274],[0,-273],[0,-274],[0,-273],[0,-274],[0,-274],[0,-273],[0,-274],[0,-273],[0,-274],[0,-273],[0,-274],[0,-274],[0,-273],[0,-274],[0,-273],[0,-274],[0,-274],[0,-273],[0,-274],[0,-273],[0,-274],[0,-274],[0,-273],[0,-274],[0,-273],[0,-274],[0,-274],[0,-273],[0,-274],[0,-273],[0,-274],[0,-273],[0,-274],[0,-274],[0,-273],[0,-274],[0,-273]],[[84733,44892],[3,-7],[2,-2]],[[84754,44895],[7,-1],[0,1]],[[84742,45002],[-1,-3],[-1,-8],[0,-4]],[[84693,72490],[2,-4],[3,-6]],[[84701,72476],[2,-1],[7,-1]],[[84807,72582],[4,-2]],[[84825,72579],[3,-5],[2,-1]],[[84830,72573],[6,-1],[0,1]],[[84880,72657],[4,-1],[4,-5]],[[84888,72651],[2,-5],[1,-2]],[[84978,72713],[3,-4],[1,0]],[[85131,72981],[7,-1],[0,-2]],[[85137,72976],[-1,-2],[-1,-2]],[[85176,73148],[9,0]],[[85197,73189],[4,-3],[4,-4]],[[85205,73182],[8,-14],[5,-4]],[[85272,73201],[14,-18],[0,1]],[[85296,73162],[2,-7]],[[85291,73140],[2,-6],[5,-4]],[[85306,73125],[-1,-2],[-1,-6]],[[85313,73072],[1,-5],[1,0]],[[85323,73071],[1,-3],[1,-2],[2,-2]],[[85355,73072],[2,-3],[0,-4],[-1,-3]],[[85356,73062],[-3,-3],[-1,-1]],[[85382,73054],[3,-1]],[[85387,73050],[1,-2],[2,-2]],[[85409,73054],[4,-2],[5,-4],[5,-2]],[[85428,73050],[0,-12],[4,-6]],[[85502,73023],[5,-5],[6,-1]],[[85539,73039],[9,-12]],[[85555,73038],[3,-5]],[[85558,73033],[0,-10],[0,-10]],[[85559,73007],[2,-1],[1,0]],[[85656,73347],[6,-3],[6,-7]],[[85681,73338],[9,-7],[4,-1]],[[85706,73337],[2,-1],[4,-3]],[[85923,73570],[3,-7],[1,0]],[[85930,73581],[3,-1],[3,-7]],[[85936,73573],[4,-3],[0,1]],[[85967,73561],[1,-5],[8,-6]],[[86088,73894],[4,-1]],[[86094,73890],[8,-16],[3,-4]],[[86144,73878],[3,-5],[0,-7]],[[86147,73866],[-3,-9],[-3,-8],[-3,-4]],[[86138,73845],[11,-8],[1,0]],[[86164,73837],[11,-3],[2,0]],[[86178,73746],[5,-20],[15,-23],[3,-9]],[[86201,73694],[18,-25],[4,-1]],[[86225,73668],[2,0]],[[86256,73638],[2,-11]],[[0,99999],[60426,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-264],[0,-264],[0,-265],[0,-264]],[[58818,88980],[-27,21],[4,5],[9,35],[-4,70],[-17,37],[-41,54],[-38,29],[-58,24],[-41,26],[-41,18],[-18,25],[-19,17],[-61,36],[-50,18],[-64,9],[-73,14],[-41,31],[-64,27],[-38,12],[-58,12],[-43,30],[-30,14],[-6,3],[-37,28],[-43,19],[-30,8],[-33,5],[-65,-1],[-39,16],[-36,7],[-36,2],[-31,-1],[-33,-7],[-30,-10],[-67,-39],[-52,-19],[-37,-19],[-76,58],[-23,13],[-95,31],[-55,11],[-55,3],[-53,-5],[-56,-15],[-52,-22],[-79,11],[-35,-1],[-34,-4],[-50,-14],[-51,-27],[-22,-2],[-67,2],[-52,-10],[-30,-13],[-27,-16],[-54,-48],[-67,-15],[-111,-48],[-24,-7],[0,277],[0,278],[0,277],[0,277],[0,278],[0,277],[0,277],[0,278],[0,277],[139,0],[138,-1],[138,0],[138,-1],[139,0],[138,-1],[138,0],[138,-1],[139,0],[138,0],[138,-1],[138,0],[139,-1],[138,0],[138,-1],[138,0],[139,0],[138,-1],[138,0],[138,-1],[139,0],[122,1],[122,1],[122,1],[122,1],[0,267],[0,267],[0,267],[0,266],[0,267],[0,267],[0,267],[0,267],[0,266],[0,267],[0,267],[1,190],[-136,0],[-136,0],[-136,1],[-135,0],[-136,0],[-136,0],[-135,0],[-136,1],[-136,0],[-135,0],[-136,0],[-136,0],[-135,1],[-136,0],[-136,0],[-135,0],[-136,0],[-136,0],[-135,1],[-136,0],[-136,0],[-136,0],[-135,0],[-136,1],[-136,0],[0,241],[0,7],[0,267],[0,268],[0,267],[0,268],[0,267],[0,268],[0,267],[0,1],[0,6],[0,257],[0,257],[0,257],[0,257],[0,257],[0,257],[0,257],[0,257],[0,257],[0,256],[0,257],[0,1],[-56262,6]],[[57622,52817],[1,-8]],[[57623,52809],[-2,-24],[1,-3],[2,-3],[2,-2],[2,-1],[8,-14],[3,-5],[1,-5],[1,-12],[1,-6],[5,-8],[4,-2],[2,-2],[25,-5],[4,-7],[4,-13],[2,-23],[2,-9],[4,-6],[2,0],[5,3],[3,0],[2,-3],[3,-5],[1,-7],[1,-5],[1,-12],[-2,-32],[1,-23],[1,-13],[2,-9],[1,0],[4,-2],[3,-1],[2,-2],[3,-4],[5,-11],[3,-4],[3,0],[7,2],[2,0],[5,-4],[1,0],[1,2],[0,3],[0,1],[0,1],[1,2],[3,2],[1,-1],[3,-6],[2,0],[3,0],[14,-4],[1,-6],[-1,-9],[-1,-13],[0,-6],[0,-5],[1,-4],[2,-5],[8,-24],[3,0],[4,10],[3,3],[2,0],[3,-1],[1,-4],[1,-11],[8,-20],[5,-10],[6,-7],[11,-3],[12,4],[11,1],[10,-13],[2,-12],[1,-8],[3,-5],[6,-4],[7,1],[5,7],[6,10],[10,28],[4,6],[6,3],[3,-1],[3,-1],[3,0],[2,1],[2,5],[1,7],[1,6],[3,4],[11,5],[5,6],[4,11],[11,45],[3,0],[6,0],[3,4],[3,5],[2,2],[2,-1],[2,-1],[4,-11],[0,-12],[2,-11],[7,-6],[1,0],[2,0],[8,3],[13,-2],[6,1],[17,8],[1,-2],[1,-2],[14,-18],[3,-3],[1,-8],[0,1],[11,-10],[4,-4],[17,-36],[7,-6],[6,2],[3,9],[0,10],[3,7],[7,0],[6,-2],[4,2],[5,13],[2,13],[3,8],[14,25],[4,10],[2,11],[2,13],[2,6],[5,10],[1,6],[-1,6],[1,9],[1,20],[2,7],[4,1],[6,-2],[1,-1],[3,-6],[2,-2],[4,4],[2,1],[2,-1],[1,-1],[8,-7],[9,-1],[3,-1],[11,-11],[4,-4],[8,-14],[4,-5],[2,-1],[6,3],[2,-1],[6,-8],[3,-2],[3,-4],[-1,-6],[-2,-7],[-2,-5],[0,-5],[2,-9],[1,-5],[-1,-6],[-2,-17],[0,-24],[3,-20],[7,-13],[13,1],[6,-2],[7,-8],[6,-12],[3,-11],[-1,-6],[-2,-5],[-2,-6],[1,-7],[2,-5],[3,-1],[3,0],[3,-2],[7,-7],[4,-11],[7,-24],[4,-12],[4,-6],[12,-4],[6,-7],[3,-11],[1,-13],[3,-13],[6,-16],[2,-6],[1,-6],[0,-6],[0,-5],[2,-6],[5,-3],[18,0],[19,-12],[11,-14],[11,-13],[11,-7],[2,-1],[6,0],[2,1],[3,1],[3,1],[3,-2],[2,-7],[1,-7],[7,-82],[0,-11],[-2,-21],[-2,-7],[-1,-4],[0,-2],[3,-5],[2,-2],[3,0],[5,1],[4,2],[9,10],[4,3],[4,1],[7,0],[6,7],[5,11],[4,6],[5,-7],[1,-3],[0,-3],[1,-19],[2,-8],[4,-6],[8,-6],[4,-10],[-2,-29],[3,-12],[6,5],[5,9],[5,3],[3,-13],[0,-5],[-1,-16],[0,-6],[3,-12],[0,-6],[-1,-12],[-4,-11],[-8,-17],[-5,-19],[-1,-3],[0,-6],[-1,-2],[-1,-2],[-4,-1],[-1,-2],[-5,-19],[-15,-94],[-2,-12],[1,-11],[3,-8],[13,-18],[5,-9],[6,-22],[3,-22],[0,-22],[-7,-38],[-2,-5],[-1,-1],[-3,-2],[-2,-1],[0,-3],[0,-6],[-1,-3],[-9,-50],[-1,-9],[0,-4],[-6,-17],[-1,-6],[0,-10],[1,-21],[0,-10],[-3,-9],[-3,-11],[-3,-12],[1,-9],[4,-3],[20,0],[2,-3],[1,-7],[0,-8],[1,-8],[3,-10],[4,-10],[5,-10],[5,-4],[8,8],[4,18],[4,15],[11,0],[4,-6],[16,-35],[1,-3],[0,-4],[0,-3],[-2,-2],[-1,-2],[2,-5],[4,-4],[12,-4],[4,-1],[4,2],[14,10],[0,-24],[1,-12],[2,-9],[6,-9],[16,-18],[3,-11],[-2,-28],[-8,-29],[-17,-42],[-17,-45],[-26,-65],[-20,-32],[-38,-61],[-38,-61],[-23,-60],[-33,-85],[-6,-10],[-3,-5],[-4,-3],[-6,-3],[-3,-1],[-7,2],[-3,-1],[-4,-7],[-4,-11],[-3,-7],[-5,4],[-3,5],[-3,1],[-2,-2],[-2,-2],[-9,-17],[-1,-4],[0,-12],[-1,-6],[-1,-4],[-3,-7],[0,-11],[1,-22],[-2,-11],[-6,-13],[-1,-9],[-1,-2],[-5,-19],[-3,-7],[-3,-3],[-30,-13],[-11,-11],[-10,-15],[-4,-4],[-5,-22],[-1,-6],[2,-29],[-3,-47],[-1,-11],[6,-45],[0,-22],[-5,-21],[-20,-46],[-3,-10],[-2,-12],[-9,-92],[-1,-4],[-2,-3],[-2,1],[-2,4],[-4,2],[-1,-6],[-12,-34],[-3,-15],[0,-10],[3,-24],[0,-11],[-1,-10],[-4,-21],[-5,-56],[-6,-75],[-7,-79],[1,-11],[3,-15],[2,-9],[0,-34],[0,-7],[-2,-4],[-3,0],[-3,-1],[-1,-6],[0,-4],[3,-6],[0,-3],[0,-4],[-2,-3],[-1,-2],[-1,-3],[-3,-44],[-1,-12],[3,-21],[0,-12],[0,-33],[-1,-9],[-3,-7],[-8,-6],[-4,-9],[0,-5],[0,-6],[1,-10],[1,-9],[-1,-5],[-2,-5],[-1,-6],[1,-10],[4,-22],[1,-10],[0,-10],[-3,-35],[0,-13],[2,-9],[3,-8],[2,-12],[-1,-5],[-2,-14],[0,-6],[3,-11],[1,-7],[0,-10],[-2,-33],[11,-1],[6,1],[5,3],[5,6],[5,6],[4,5],[7,3],[3,-2],[6,-7],[2,-2],[3,3],[1,11],[3,6],[2,3],[3,2],[2,-1],[3,-3],[8,-23],[1,-11],[1,-23],[3,-12],[4,-9],[6,-3],[6,1],[6,5],[19,21],[3,1],[2,12],[4,7],[9,11],[12,9],[3,5],[1,9],[2,21],[2,8],[2,2],[2,1],[2,0],[2,2],[5,5],[12,23],[4,10],[3,10],[0,3],[1,8],[1,4],[2,3],[4,4],[2,3],[1,8],[2,23],[3,8],[4,3],[4,-1],[5,-3],[5,-1],[4,2],[4,3],[4,1],[7,-4],[-2,-5],[-2,-6],[-1,-6],[1,-6],[4,-6],[1,-7],[-1,-4],[-1,-3],[-1,-3],[1,-3],[2,-4],[2,1],[2,2],[1,1],[4,-5],[1,-4],[1,-14],[2,-8],[5,-17],[1,-11],[3,-7],[0,-5],[0,-1],[0,-3],[-1,-3],[0,-4],[1,-9],[4,-5],[8,-7],[3,-4],[4,-8],[2,-3],[19,-14],[5,-1],[6,-7],[1,-15],[0,-14],[-1,-7],[-2,-3],[2,-7],[5,-12],[3,-8],[1,-4],[3,-20],[3,-12],[4,-7],[7,5],[2,-12],[-1,-14],[-3,-44],[0,-6],[0,-3],[3,-7],[1,-6],[-4,-15],[1,-6],[3,-22],[-2,-9],[-3,-9],[-1,-8],[2,-10],[-5,-7],[-1,-4],[-2,-4],[9,-3],[0,-15],[-3,-32],[5,2],[5,-5],[4,-8],[3,-8],[2,-16],[-9,-62],[-3,-25],[2,-38],[-2,-11],[-2,-10],[-4,-6],[-5,-4],[-4,-5],[-4,-2],[-2,-2],[-2,-1],[-3,1],[-14,14],[-3,2],[-4,-1],[-3,-5],[-4,-15],[-3,-5],[-6,-1],[-6,4],[-6,1],[-5,-6],[-9,-23],[-4,-12],[-11,-51],[-2,-18],[-1,-6],[-3,-7],[-6,-12],[-3,-7],[-1,-14],[3,-6],[6,0],[6,4],[10,9],[6,5],[-2,-11],[-16,-33],[-2,-8],[-1,-8],[0,-14],[-6,-17],[-3,-12],[0,-10],[7,-18],[4,-8],[6,-2],[-2,-6],[2,-5],[2,-5],[1,-7],[2,1],[5,16],[4,5],[3,3],[3,-1],[18,-21],[3,-3],[2,-2],[0,-3],[1,-10],[1,-2],[4,-2],[3,2],[2,2],[4,1],[3,-3],[6,-8],[4,-3],[7,2],[6,3],[7,4],[6,0],[-3,-10],[-8,-20],[-2,-8],[1,-9],[7,-13],[3,-7],[0,-3],[-1,-8],[-1,-3],[1,-4],[4,-5],[1,-4],[0,-7],[0,-7],[-2,-13],[-4,-12],[0,-4],[1,-10],[0,-3],[-4,-15],[-7,-9],[-7,-2],[-8,8],[-1,-7],[-1,-5],[-3,-3],[-4,-1],[-7,-5],[-6,-8],[-6,-10],[-5,-12],[11,-11],[-1,-15],[-7,-14],[-13,-12],[-4,-9],[-2,-4],[-2,-1],[-7,-4],[-1,-1],[0,-5],[0,-1],[-6,-1],[0,1],[-5,-1],[-1,-2],[-1,-6],[0,-3],[-8,-11],[-2,-6],[1,-12],[0,-10],[-2,-10],[-12,-36],[-2,-10],[0,-11],[1,-9],[2,-9],[1,-8],[-1,-10],[-13,8],[-7,-9],[-10,-37],[-15,-30],[-3,-11],[-5,-40],[-5,-24],[-7,-23],[-8,-20],[-19,-32],[-3,-8],[-7,-34],[-3,-9],[-7,-7],[-2,-4],[-10,-11],[-10,-19],[-15,-14],[-2,-1],[-5,1],[-3,3],[-3,1],[-4,-5],[-1,-2],[0,-9],[-2,-5],[-4,-5],[-2,-3],[-1,-8],[0,-7],[-1,-6],[-3,-5],[-2,1],[-11,2],[-14,6],[-65,-2],[1,-7],[1,-22],[-2,-47],[-17,-91],[-6,-47],[1,-47],[6,-48],[9,-45],[22,-79],[11,-90],[27,-127],[5,-47],[-2,-43],[-9,-31],[-21,-56],[-6,-35],[1,-22],[8,-62],[5,-67],[3,-21],[8,-27],[19,-48],[14,-75],[6,-21],[9,-18],[38,-57],[38,-39],[22,-36],[40,-93],[17,-51],[20,-90],[10,-70],[3,-36],[7,-53],[60,-184],[20,-98],[7,-50],[7,-53],[14,-55],[18,-50],[18,-40],[9,-14],[12,-13],[12,-9],[12,0],[6,5],[5,8],[6,6],[7,0],[3,-4],[6,-14],[2,-4],[4,-2],[2,2],[3,3],[14,10],[3,1],[2,2],[1,2],[1,1],[2,-3],[1,-3],[1,-11],[1,-3],[4,-5],[3,-1],[4,1],[4,-1],[5,-4],[6,-14],[4,-6],[11,-6],[5,-9],[2,-14],[0,-21],[2,-23],[7,-17],[26,-41],[5,-4],[6,0],[5,4],[10,10],[6,1],[42,-22],[-5,-23],[-1,-27],[6,-22],[12,-5],[6,4],[4,6],[4,4],[7,-2],[8,-9],[3,-2],[3,1],[5,2],[3,0],[5,-6],[11,-21],[5,-8],[6,-4],[6,-1],[36,1],[11,-5],[10,-14],[3,-7],[5,-26],[4,-12],[4,-5],[11,-2],[24,-10],[19,-3],[4,-4],[4,-8],[1,-4],[1,-9],[1,-4],[2,-1],[5,1],[2,-1],[13,-17],[21,-16],[4,-5],[4,9],[6,5],[5,1],[5,-6],[14,-27],[17,-27],[3,-2],[7,-3],[8,-6],[1,-1],[3,1],[4,7],[1,1],[4,0],[6,-3],[3,-1],[3,2],[4,6],[3,1],[5,-4],[15,-22],[5,-9],[5,-21],[3,-10],[5,-6],[5,-4],[12,-1],[8,4],[7,7],[7,6],[9,-2],[8,-5],[8,-3],[7,2],[7,8],[9,5],[8,-9],[7,-14],[7,-10],[7,-5],[7,-9],[7,-12],[3,-11],[3,-4],[5,10],[0,3],[4,6],[2,5],[1,8],[1,10],[2,16],[0,10],[-5,25],[4,14],[7,11],[3,7],[4,8],[10,-7],[9,-11],[3,-7],[4,-4],[9,-22],[2,-3],[5,-10],[8,-8],[27,-56],[8,-6],[2,-7],[1,-10],[1,-11],[2,-4],[6,-13],[1,-1],[5,-10],[0,-2],[28,-68],[3,-12],[9,-23],[3,-19],[0,-6],[0,-6],[-3,-11],[0,-6],[2,-19],[9,-41],[3,-29],[2,-12],[1,-7],[-1,-6],[-5,-61],[1,-12],[5,-17],[2,-11],[-1,-5],[-3,-12],[0,-7],[0,-8],[2,-8],[1,-7],[3,-6],[2,-2],[2,0],[2,-1],[1,-7],[0,-10],[1,-4],[6,-14],[2,-11],[0,-12],[-3,-12],[2,-5],[0,-2],[1,-3],[2,-3],[2,-4],[0,-7],[-3,-5],[-2,-5],[1,-14],[-3,-35],[0,-25],[-1,-5],[-5,-23],[-8,-21],[-1,-14],[1,-11],[4,-23],[0,-13],[2,-10],[14,-23],[1,-5],[1,-5],[1,-3],[5,-3],[3,-3],[1,-4],[1,-5],[1,-13],[2,-11],[4,-8],[4,-5],[0,-3],[-1,-2],[-3,-4],[-1,-1],[6,-23],[2,-4],[1,0],[4,6],[2,2],[2,-1],[12,-8],[7,-7],[5,-9],[2,-12],[1,-4],[6,-8],[2,-15],[3,-6],[2,-5],[1,-4],[1,-3],[1,-5],[2,-7],[0,-8],[0,-28],[1,-5],[116,-2],[11,0],[1,-3],[2,-3],[2,-2],[7,-1],[1,0],[4,3],[0,1],[2,1],[1,1],[1,0],[3,-4],[1,-4],[1,-4],[1,-3],[3,-2],[1,10],[3,0],[4,-3],[5,-3],[6,7],[1,0],[15,8],[2,4],[2,11],[3,8],[3,7],[3,5],[-2,12],[5,6],[14,5],[5,7],[9,22],[3,5],[12,-4],[7,-7],[2,-1],[11,0],[3,-3],[5,-12],[-2,-12],[2,-11],[5,-5],[6,3],[4,1],[5,-6],[11,-12],[2,-2],[6,-3],[3,-2],[2,-4],[2,-4],[2,-3],[3,-1],[4,-4],[2,-10],[0,-13],[2,-11],[-2,-8],[1,-12],[3,-10],[3,-4],[11,4],[4,-2],[4,-5],[3,-1],[4,1],[10,5],[9,3],[2,2],[1,3],[1,1],[33,0],[2,-3],[2,-13],[2,-3],[1,-1],[7,-7],[5,-1],[17,6],[4,3],[8,1],[2,3],[1,3],[3,5],[10,7],[3,4],[3,4],[8,23],[12,29],[5,3],[3,-3],[5,-1],[7,-8],[4,-2],[26,5],[2,2],[3,4],[4,5],[4,-17],[7,-19],[10,-16],[10,-9],[23,-11],[12,-3],[10,3],[3,2],[2,3],[2,2],[3,0],[3,-3],[5,-10],[2,-2],[14,-8],[6,0],[6,2],[2,2],[2,4],[1,5],[2,8],[2,7],[4,3],[5,2],[10,11],[6,2],[9,0],[6,2],[5,6],[13,19],[20,18],[6,8],[3,6],[2,7],[0,7],[-2,7],[-1,8],[2,12],[6,23],[0,10],[2,7],[5,25],[0,8],[2,5],[18,20],[4,2],[12,1],[2,2],[3,5],[16,5],[8,0],[0,1],[1,1],[1,2],[2,0],[1,-2],[1,-5],[1,-1],[3,-2],[5,-7],[3,-2],[4,1],[6,5],[2,1],[13,-4],[10,-13],[16,-32],[9,-10],[22,-11],[9,-9],[7,17],[27,36],[6,16],[5,7],[8,5],[6,5],[3,1],[3,-1],[6,-3],[3,0],[5,6],[11,20],[4,5],[6,3],[5,6],[7,13],[9,5],[37,-1],[9,4],[9,8],[6,-3],[12,-12],[6,-4],[7,0],[7,4],[6,7],[55,86],[4,5],[5,3],[21,3],[47,20],[7,6],[28,38],[29,24],[5,5],[35,54],[7,6],[4,6],[5,13],[16,33],[11,15],[18,13],[10,14],[9,17],[4,16],[37,47],[21,33],[24,-90],[23,-50],[6,-25],[-2,-70],[-20,-167],[-29,-146],[2,-49],[-4,-111],[21,-212],[2,-204],[29,-228],[-1,-33],[-11,-55],[-9,-115],[6,-244],[-4,-91],[16,-97],[7,-75],[45,-213],[7,-168],[-3,-64],[-20,-107],[-19,-70],[-12,-112],[-27,-125],[-43,-78],[-26,-64],[-41,-81],[-34,-134],[-23,-50],[-29,-48],[-24,-79],[-14,-32],[-52,-74],[-101,-109],[-13,-26],[-17,-60],[-15,-23],[-76,-47],[-70,-30],[-124,-103],[-76,-51],[-74,-73],[-41,-50],[0,-239],[0,-240],[0,-240],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-1],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-1],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-1],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-1],[0,-240],[0,-239],[0,-240],[0,-239],[0,-240],[0,-240],[-19,-17],[-30,-51],[-15,-36],[-4,-37],[3,-33],[9,-34],[16,-30],[18,-21],[22,-12],[0,-267],[0,-267],[0,-267],[0,-267],[0,-1],[0,-262],[0,-261],[0,-262],[0,-262],[0,-262],[0,-262],[0,-262],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-1],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-1],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-235],[0,-235],[0,-235],[0,-235],[0,-235]],[[60424,11400],[-20,-1],[-26,-4],[-39,-12],[-38,23],[-42,15],[-28,7],[-39,3],[-54,11],[-54,1],[-80,-18],[-31,-4],[-14,2],[-15,10],[-11,18],[-2,17],[3,58],[-7,19],[-15,21],[-24,23],[-44,33],[-48,41],[-100,64],[11,61],[-6,52],[-10,22],[-16,21],[-45,40],[-26,15],[-26,10],[-33,8],[-32,4],[-97,1],[-97,2],[-96,2],[-37,-5],[-36,-10],[-124,-55],[-96,-69],[-30,-33],[-18,-32],[-10,-25],[-4,-26],[3,-49],[-7,-46],[5,-24],[14,-28],[50,-77],[18,-21],[38,-35],[9,-14],[3,-46],[-3,-44],[-38,-68],[-4,-20],[0,-31],[-9,-13],[-63,-24],[-38,-18],[-67,-17],[-59,-22],[-46,-13],[-11,-1],[-50,7],[-52,-2],[-39,-8],[-44,-18],[-132,-6],[-132,-31],[-36,-15],[-31,-19],[-44,-12],[-32,-14],[-23,-17],[-23,-18],[-46,-29],[-29,-24],[-47,-14],[-58,-28],[-48,-9],[-59,-19],[-30,-5],[-46,-4],[-25,91],[2,25],[-9,35],[-32,59],[-30,70],[-24,29],[-31,23],[-52,25],[-68,18],[-56,4],[-61,-6],[-52,-15],[-49,-24],[-30,-23],[-28,-29],[-27,-18],[-26,-25],[-21,-33],[-13,-40],[-1,-42],[10,-40],[0,-1],[-95,-51],[-14,25],[-31,39],[-36,31],[-41,26],[-40,17],[-50,12],[-71,6],[-67,1],[-48,-6],[-34,-9],[-29,-14],[-25,-19],[-41,-42],[-12,-7],[-12,-1],[-10,4],[-31,21],[-36,20],[-65,58]],[[56251,11008],[0,257],[0,258],[0,257],[0,257],[0,258],[0,257],[0,258],[0,257],[0,258],[0,257],[0,1],[0,6],[0,277],[0,277],[0,277],[0,278],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,7],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,278],[0,277],[0,277],[0,7],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,1],[0,7],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,1],[0,6],[0,277],[0,277],[0,277],[0,278],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,7],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,278],[0,277],[0,277],[0,7],[0,253],[0,253],[0,253],[-9,-6],[-46,-7],[-23,-52],[-41,-19],[-30,-65],[-20,-22],[-21,-13],[-31,-6],[-51,11],[-37,-24],[-27,-5],[-22,6],[-54,29],[-26,-41],[-12,-10],[-85,0],[-34,-56],[-53,-58],[-43,-69],[-28,-21],[-20,4],[-42,32],[-43,-7],[-17,6],[-50,70],[-44,16],[-11,11],[-9,21],[-12,61],[-12,23],[-31,19],[-32,-12],[-30,12],[-13,21],[-7,26],[1,92],[-10,-23],[-20,-75],[-15,-26],[-11,-2],[-25,10],[-24,32],[-32,102],[-6,65],[5,55],[19,67],[15,34],[0,25],[-7,24],[-23,48],[-10,59],[-35,50],[-16,70],[-54,111],[-12,53],[-9,89],[7,63],[26,65],[20,15],[61,9],[11,10],[5,16],[5,43],[-6,64],[6,49],[-30,252],[-11,36],[-51,119],[-42,112],[-41,111],[-24,76],[-21,91],[-21,57],[-14,58],[-32,100],[-41,234],[-41,233],[-31,125],[-30,124],[-43,112],[-5,18],[-10,33],[-13,44],[12,27],[-5,6],[22,74],[5,4],[8,9],[7,7],[11,6],[21,37],[3,2],[2,-3],[2,-6],[0,-7],[1,-6],[5,0],[6,8],[5,12],[3,9],[0,10],[1,12],[1,11],[4,5],[3,5],[-2,10],[-6,16],[-2,8],[-1,12],[1,10],[5,4],[3,-2],[3,-4],[2,-1],[3,3],[1,7],[-2,7],[-2,5],[-1,4],[1,6],[2,2],[6,0],[4,1],[0,4],[-5,11],[-1,3],[1,4],[1,2],[1,-1],[2,-1],[4,0],[2,-2],[1,0],[2,5],[2,44],[1,2],[5,9],[1,3],[3,-1],[2,-6],[3,-1],[3,2],[4,8],[4,1],[7,-3],[9,12],[3,3],[6,2],[3,0],[3,-2],[4,-8],[3,-12],[4,-10],[5,-4],[7,-4],[2,-10],[0,-12],[0,-13],[1,-26],[6,-13],[9,-3],[17,8],[8,0],[3,-2],[1,-7],[0,-7],[1,-5],[3,-7],[1,-5],[0,-6],[1,-7],[2,-6],[4,-10],[2,-6],[0,-12],[0,-15],[-3,-14],[-4,-5],[-5,-2],[-5,-6],[-3,-7],[-1,-8],[2,-10],[8,-18],[1,-12],[2,-10],[11,-6],[3,-13],[-2,-21],[-4,-23],[1,-17],[10,-3],[12,5],[12,3],[6,2],[5,4],[5,2],[4,-5],[1,-12],[0,-13],[1,-12],[6,-4],[9,-5],[4,0],[3,3],[5,6],[3,3],[9,1],[46,-18],[10,-7],[10,-11],[17,-25],[10,-10],[24,-14],[5,0],[10,6],[24,6],[6,-1],[12,-7],[7,-2],[5,4],[2,2],[4,2],[5,1],[1,1],[3,3],[1,1],[2,-2],[3,-5],[1,-1],[6,3],[10,10],[54,13],[58,-14],[4,-8],[7,-20],[3,-6],[2,-1],[10,-2],[3,-2],[1,-2],[5,-11],[11,1],[11,7],[16,15],[2,4],[3,9],[2,2],[9,1],[3,3],[1,7],[-11,32],[-2,12],[1,11],[5,17],[3,7],[4,5],[4,1],[6,-10],[3,-1],[4,3],[23,11],[6,4],[5,7],[2,8],[8,45],[2,5],[3,2],[2,2],[2,10],[1,4],[3,6],[1,4],[2,4],[3,3],[3,2],[27,3],[5,5],[6,8],[6,3],[13,2],[9,4],[12,20],[7,7],[3,1],[9,-2],[3,1],[9,3],[0,17],[0,22],[0,31],[0,31],[0,31],[0,31],[0,32],[0,31],[0,31],[0,31],[0,31],[0,31],[0,31],[0,32],[0,31],[0,9],[0,22],[0,31],[0,31],[0,31],[0,32],[0,31],[0,31],[0,31],[0,31],[0,31],[0,31],[0,32],[0,31],[0,31],[0,31],[0,31],[0,31],[0,31],[0,32],[0,31],[0,31],[0,31],[0,31],[0,31],[0,31],[0,32],[0,31],[0,31],[0,31],[0,31],[0,31],[0,32],[0,31],[0,31],[0,31],[0,31],[0,31],[0,31],[0,32],[0,31],[0,31],[0,31],[0,31],[0,31],[0,31],[0,32],[0,31],[0,31],[0,31],[0,31],[0,31],[0,7],[0,96],[0,95],[0,96],[0,95],[0,96],[0,96],[0,95],[-1,96],[0,37],[0,58],[0,96],[0,95],[0,96],[0,83],[0,84],[0,84],[0,83],[0,48],[65,0],[65,0],[65,0],[65,0],[16,0],[4,20],[0,23],[0,32],[-1,32],[0,32],[0,32],[0,32],[0,32],[0,32],[0,32],[0,32],[0,32],[0,32],[0,33],[0,31],[0,32],[0,33],[0,32],[0,69],[-1,69],[0,70],[0,69],[0,70],[0,69],[0,70],[0,69],[0,69],[0,70],[-1,69],[0,70],[0,69],[0,70],[0,69],[0,70],[0,22],[0,23],[0,23],[0,22],[0,23],[0,23],[0,22],[0,23],[0,23],[0,22],[0,23],[0,23],[0,22],[0,23],[0,23],[0,22],[0,16],[14,1],[15,1],[16,2],[16,1],[15,1],[13,1],[13,1],[13,1],[13,1],[6,1],[5,0],[5,2],[4,2],[5,1],[5,2],[23,9],[24,9],[23,8],[24,9],[23,9],[24,8],[23,9],[23,9],[24,9],[23,8],[24,9],[23,9],[24,8],[23,9],[24,9],[23,9],[24,8],[33,6],[24,4],[19,3],[11,-1],[3,-3],[2,-3],[0,-4],[0,-7],[1,-4],[2,-1],[2,-1],[1,-1],[0,-14],[0,-4],[1,-2],[3,-9],[3,-14],[9,-19],[1,-5],[0,-3],[0,-10],[0,-3],[2,-1],[2,-2],[3,-1],[3,6],[4,-7],[4,-9],[1,-5],[4,-3],[4,-1],[3,-2],[1,-7],[1,-6],[3,-4],[2,-6],[-3,-9],[10,-18],[2,-12],[-4,-12],[3,-7],[4,-24],[2,-23],[4,-6],[5,0],[10,7],[1,1],[2,3],[6,15],[6,2],[4,5],[26,54],[5,2],[3,7],[5,14],[3,6],[9,11],[4,8],[1,19],[9,13],[2,0],[2,0],[1,-2],[1,-2],[1,4],[1,3],[4,5],[8,6],[2,4],[8,14],[2,3],[10,3],[10,13],[13,31],[10,10],[5,1],[6,-1],[3,-2],[5,-5],[2,-1],[3,4],[8,26],[5,9],[4,3],[9,-1],[6,-2],[4,-6],[4,-18],[3,-4],[1,-1],[2,-3],[0,-9],[10,-17],[3,2],[13,2],[3,2],[1,3],[4,9],[0,3],[1,1],[14,32],[5,7],[9,12],[8,18],[1,3],[2,2],[3,2],[2,1],[3,1],[1,8],[2,2],[6,2],[6,11],[5,2],[5,1],[21,13],[2,2],[2,4],[1,3],[1,3],[3,1],[-2,-8],[3,-4],[2,-4],[2,-3],[5,4],[2,-7],[3,2],[8,9],[3,-12],[8,1],[10,7],[9,18],[11,0],[18,-7],[-2,7],[-3,6],[-3,5],[-4,1],[-5,1],[-2,2],[-4,9],[-1,2],[-3,3],[-2,2],[0,3],[0,8],[0,3],[-5,8],[-2,0],[-2,-7],[-1,4],[-1,4],[-2,3],[-3,1],[0,3],[-2,16],[-1,1],[-5,9],[-1,2],[-3,0],[-2,1],[-2,2],[-2,4],[0,4],[2,9],[-1,2],[-3,-1],[-5,-3],[-2,0],[-5,7],[-3,9],[-4,5],[-5,-5],[-4,10],[-7,6],[-19,8],[-9,-1],[-3,1],[-2,3],[-2,2],[-1,1],[-24,8],[-12,0],[-3,-2],[-2,-4],[-1,-4],[-3,-3],[-5,-7],[-3,-3],[-2,0],[-3,0],[-4,4],[-2,3],[-2,4],[-2,3],[-7,2],[-6,5],[-8,3],[-12,9],[-5,1],[-5,-1],[-11,-6],[-3,-2],[-3,3],[-14,1],[-6,2],[-5,-1],[-8,-3],[-12,-5],[-12,-5],[-11,-5],[-12,-4],[-12,-5],[-12,-5],[-12,-4],[-12,-5],[-12,-5],[-12,-4],[-12,-5],[-12,-5],[-11,-4],[-12,-5],[-12,-5],[-12,-5],[-8,-3],[-6,0],[-9,-4],[-12,-4],[-1,7],[0,7],[2,8],[-7,10],[-5,13],[-6,8],[-4,3],[-4,3],[-9,1],[-5,-1],[-4,-2],[-5,-2],[-5,3],[-3,7],[0,8],[0,9],[-1,9],[-3,5],[-12,10],[-7,10],[-6,15],[-6,17],[-2,15],[-1,6],[-12,24],[-4,4],[-13,7],[-17,14],[-8,10],[-11,19],[-8,9],[-4,6],[-2,8],[-4,26],[-3,15],[-6,14],[-13,26],[-3,6],[-17,13],[-3,0],[-2,2],[-1,5],[0,10],[-1,4],[-3,7],[-9,6],[-4,4],[-3,7],[-3,16],[-20,62],[-2,4],[-2,3],[-5,2],[-1,1],[-2,4],[-2,6],[-4,12],[-2,7],[-3,5],[-7,3],[-1,1],[-2,4],[-2,2],[-1,-1],[-1,-2],[-2,-1],[-4,-3],[-3,-1],[-3,3],[-24,38],[-2,7],[-1,10],[-1,8],[-3,3],[-5,2],[-2,4],[1,5],[0,8],[-1,8],[-5,16],[-1,6],[0,10],[1,10],[3,10],[2,7],[1,7],[-5,4],[-9,4],[0,3],[0,13],[-1,5],[-1,3],[-3,5],[-1,4],[-2,8],[0,7],[-1,7],[-3,8],[2,-1],[7,1],[-10,30],[-7,18],[-1,12],[0,8],[0,34],[0,35],[0,2],[0,25],[0,57],[0,57],[0,56],[0,57],[0,24],[0,17],[0,12],[0,22],[0,84],[0,83],[0,84],[0,84],[0,84],[0,83],[0,84],[0,84],[0,83],[0,84],[0,84],[0,33],[0,51],[0,83],[0,84],[0,84],[0,84],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[9,0],[-3,20],[-5,17],[-6,16],[-15,31],[-6,15],[-2,18],[2,22],[5,25],[5,41],[5,39],[4,16],[12,36],[10,27],[2,9],[1,10],[-3,25],[-1,34],[-3,14],[-7,14],[-6,18],[-2,25],[2,77],[2,72],[6,27],[0,6],[-1,13],[-1,42],[-2,13],[-3,11],[-2,11],[0,14],[1,11],[5,22],[8,23],[1,7],[0,9],[-1,13],[0,7],[1,6],[3,8],[9,14],[2,7],[0,7],[-12,54],[-2,14],[1,79],[-5,2],[-2,7],[2,22],[-1,31],[1,10],[2,10],[-1,8],[-5,17],[-2,9],[-2,27],[-5,-5],[-2,-11],[-2,-13],[-2,-11],[-2,-5],[-6,-7],[-3,-4],[-2,-6],[-2,-12],[-2,-6],[-9,-6],[-11,4],[-12,7],[-10,2],[-11,-1],[-9,1],[-24,13],[-17,9],[-11,2],[-11,-1],[-12,-7],[-18,-20],[-31,-33],[-23,-8],[-28,-9],[-12,0],[-11,3],[-5,4],[-11,14],[-5,6],[-7,0],[-6,-6],[-6,-8],[-6,-7],[-10,-3],[-11,2],[-11,6],[-10,8],[-21,17],[-10,-3],[-9,-45],[-8,-13],[-28,-19],[-4,-5],[-12,-26],[-5,-6],[-7,-1],[4,23],[1,23],[-4,49],[-1,10],[-5,17],[-1,9],[-1,3],[-4,6],[-1,3],[0,21],[-6,39],[-2,8],[0,9],[4,13],[7,11],[5,7],[11,10],[7,4],[6,1],[2,5],[1,11],[-1,21],[1,2],[1,3],[-4,14],[-1,20],[1,23],[-1,23],[-3,12],[-3,7],[-3,8],[-1,11],[2,12],[6,20],[2,8],[0,6],[1,11],[1,6],[-1,7],[-4,9],[-3,17],[-6,23],[-5,26],[-7,25],[-5,25],[2,18],[-1,7],[-3,24],[-6,30],[-2,20],[-2,12],[-4,9],[-11,13],[-4,8],[-3,3],[-2,-4],[-2,-1],[-3,3],[-16,37],[-3,16],[-1,18],[-1,-2],[-5,-4],[-1,-2],[-4,22],[-18,37],[-7,21],[-3,23],[-3,49],[-3,23],[-2,6],[-5,11],[-1,6],[0,7],[3,11],[2,20],[8,34],[3,24],[0,22],[-3,56],[4,64],[-1,29],[3,44],[3,13],[2,19],[2,3],[2,36],[4,41],[3,16],[5,18],[-2,0],[-1,1],[-1,2],[-2,1],[7,42],[1,25],[-2,24],[-7,21],[-3,14],[1,7],[5,4],[-3,11],[-8,15],[-3,10],[-3,27],[0,24],[-1,9],[-2,7],[-7,17],[-3,9],[-2,11],[0,14],[-2,6],[-9,10],[-2,5],[-2,10],[-1,37],[1,6],[4,11],[1,6],[0,7],[-2,14],[2,24],[1,10],[3,17],[3,13],[3,20],[3,19],[2,11],[2,7],[0,10],[1,4],[4,8],[1,4],[0,21],[-1,6],[-1,3],[0,3],[0,7],[1,6],[2,12],[1,7],[-1,3],[-2,5],[-1,3],[0,3],[2,5],[0,3],[-1,7],[-1,4],[-2,4],[-2,7],[1,3],[1,4],[1,4],[-2,5],[-1,4],[-7,26],[-1,5],[-2,2],[-2,2],[-1,2],[-29,2],[-6,0],[-21,0],[-20,0],[-20,0],[-20,0],[-20,0],[-21,0],[-20,0],[-20,-1],[-20,0],[-20,0],[-21,0],[-20,0],[-20,0],[-20,0],[-20,0],[-13,0],[-1,27],[0,26],[2,26],[6,30],[4,23],[7,40],[7,33],[-16,0],[-24,0],[-23,0],[-15,0],[-3,-1],[-2,-4],[-3,-8],[-1,-8],[-1,-18],[0,-8],[-14,0],[-11,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-3,0],[-5,0],[-1,18],[-2,35],[-3,23],[-3,10],[-4,15],[-31,75],[-16,52],[-5,23],[-11,195],[0,5],[0,3],[1,6],[1,9],[1,3],[1,2],[3,5],[5,9],[1,2],[0,3],[1,2],[1,2],[3,2],[4,4],[2,3],[2,1],[1,4],[1,2],[1,2],[3,2],[1,1],[4,7],[4,12],[1,1],[1,1],[5,2],[2,1],[1,2],[0,2],[2,7],[1,1],[1,1],[2,0],[2,-3],[2,0],[1,1],[0,1],[3,7],[0,1],[1,1],[2,1],[1,0],[5,-2],[1,1],[2,1],[2,3],[2,3],[1,3],[3,2],[1,2],[1,2],[0,2],[1,1],[0,2],[3,4],[1,2],[0,2],[3,16],[0,1],[1,4],[1,4],[1,8],[1,3],[2,3],[0,1],[1,1],[7,2],[1,2],[5,6],[1,3],[3,20],[0,4],[1,2],[2,3],[3,4],[3,6],[1,2],[2,8],[1,8],[1,5],[0,17],[1,3],[1,6],[1,6],[0,11],[0,10],[0,3],[-1,3],[0,3],[0,3],[-2,5],[-1,9],[-1,5],[-1,2],[-1,5],[-1,3],[0,3],[-1,105],[1,7],[0,4],[1,2],[1,3],[1,4],[1,3],[1,5],[2,14],[0,1],[1,1],[2,2],[1,1],[1,3],[0,3],[-1,63],[0,4],[-4,20],[0,6],[0,3],[-2,5],[-1,9],[0,3],[-1,2],[-3,6],[-1,3],[-1,4],[-1,7],[1,5],[0,4],[1,5],[0,4],[0,3],[-8,19],[-1,2],[-1,5],[-1,6],[-3,40],[-1,3],[-1,5],[0,2],[-2,16],[-1,6],[-2,4],[-3,6],[0,2],[-1,3],[-1,4],[0,20],[0,22],[0,3],[1,2],[1,3],[1,6],[0,19],[0,11],[0,7],[0,4],[4,22],[1,2],[0,1],[1,1],[4,4],[0,1],[1,2],[4,15],[0,2],[0,2],[0,2],[-1,2],[-1,2],[-1,2],[-2,3],[-1,2],[-1,2],[-1,3],[0,5],[0,12],[-1,4],[0,2],[-3,10],[-3,13],[-1,3],[-1,2],[-3,7],[-1,4],[-1,4],[-1,23],[0,5],[0,3],[1,3],[2,5],[3,0],[14,1],[7,-3],[9,-20],[5,-8],[5,5],[6,-7],[3,-7],[5,-17],[4,-8],[4,0],[4,3],[6,2],[3,-2],[3,-3],[1,1],[3,7],[1,6],[1,17],[2,13],[3,11],[4,8],[7,3],[1,-1],[2,-3],[2,-1],[2,1],[1,2],[0,4],[0,4],[1,1],[3,4],[4,0],[12,5],[12,8],[10,12],[8,13],[2,6],[1,6],[2,5],[4,2],[1,2],[2,9],[2,11],[0,9],[-2,96],[-2,31],[1,67],[-6,131],[3,101],[3,26],[49,252],[10,28],[13,27],[4,9],[4,14],[1,9],[1,8],[-1,22],[1,12],[1,9],[1,9],[11,41],[48,-12],[21,-1],[9,2],[6,3],[3,2],[27,11],[6,6],[4,7],[3,56],[1,7],[2,2],[1,0],[9,-9],[3,-2],[6,-2],[2,-1],[1,-2],[2,-3],[2,-7],[7,-11],[2,-3],[1,-1],[10,-4],[1,-1],[1,-2],[3,-7],[2,-3],[4,-6],[2,-2],[10,-9],[5,-2],[2,-2],[3,-3],[3,-7],[2,-2],[9,-8],[1,-2],[2,-1],[2,0],[17,14],[3,4],[4,6],[1,3],[11,29],[3,6],[15,14],[6,8],[8,13],[2,5],[8,22],[4,6],[4,4],[5,-1],[3,-2],[3,-5],[1,-6],[2,-9],[1,-9],[-2,-40],[1,-9],[1,-7],[2,-6],[3,-6],[3,-4],[4,-1],[5,2],[7,9],[3,8],[1,10],[0,8],[-18,124],[-3,58],[-3,22],[-9,45],[-1,8],[-1,6],[1,3],[0,2],[0,3],[2,1],[2,1],[27,-16],[13,-5],[42,-5],[5,0],[3,2],[5,5],[3,5],[3,7],[16,54],[5,11],[2,0],[1,-1],[2,-2],[1,0],[4,2],[2,1],[2,0],[1,0],[1,0],[3,-2],[5,-7],[9,-8],[2,-3],[1,-2],[2,-2],[1,-1],[2,0],[10,-2],[2,0],[1,-1],[2,-1],[2,-4],[1,-1],[3,-2],[6,-6],[9,-13],[1,-2],[1,-2],[7,-24],[1,-1],[2,1],[16,13],[3,1],[5,1],[9,-1],[5,-2],[4,-2],[4,-4],[3,-4],[4,-6],[5,-12],[3,-8],[10,-35],[3,-5],[4,-3],[4,3],[4,3],[3,4],[77,30],[7,0],[7,0],[20,-7],[4,0],[3,2],[1,4],[0,3],[0,20],[2,9],[5,11],[11,11],[4,8],[3,7],[0,36],[1,7],[1,7],[3,6],[3,4],[4,4],[7,1],[9,1],[12,-1],[16,1],[4,2],[3,4],[8,3],[12,1],[94,-22],[-9,108],[-5,34],[-2,10],[-7,21],[-9,41],[-3,7],[-4,3],[-4,1],[-35,-4],[-6,1],[-7,3],[-6,5],[-24,26],[-41,68],[-4,4],[-13,10],[-2,6],[-2,6],[-4,23],[-4,13],[-4,7],[-4,6],[-14,17],[-24,21],[-45,75],[-6,16],[-5,12],[0,9],[2,6],[34,52],[4,4],[14,8],[8,3],[3,2],[4,4],[2,5],[1,6],[-2,6],[-12,22],[-26,68],[-6,10],[-4,4],[-3,-1],[-39,-28],[-4,-1],[-4,1],[-4,4],[-3,8],[-6,19],[-4,5],[-3,2],[-55,7],[-3,1],[-1,2],[1,4],[30,51],[7,9],[3,4],[4,2],[3,0],[4,0],[6,-4],[18,-14],[3,-2],[4,-1],[4,1],[3,4],[3,5],[2,6],[3,5],[4,3],[7,2],[3,2],[3,3],[3,7],[1,8],[-1,10],[-2,14],[-42,123],[-29,68],[-5,17],[-10,41],[-1,7],[-4,10],[-20,48],[-7,21],[-8,37],[-2,17],[-2,31],[-3,19],[-2,4],[-4,10],[-7,19],[-4,10],[-1,11],[-1,6],[1,31],[1,17],[-1,8],[-5,19],[-2,11],[-3,16],[0,3],[0,2],[0,3],[0,4],[-2,14],[0,4],[0,3],[2,9],[0,4],[-1,6],[-1,8],[-1,4],[-7,19],[-1,5],[-1,6],[-1,5],[-1,7],[-1,3],[-2,3],[-1,3],[-1,2],[-1,11],[-3,11],[-2,12],[-7,25],[-1,3],[-3,6],[-3,6],[-4,19],[-2,8],[-7,35],[-3,6],[-2,3],[-2,2],[-2,4],[-3,8],[-2,3],[-2,3],[-2,3],[-2,2],[-5,12],[-2,3],[-8,8],[-1,1],[-3,6],[-1,1],[-1,1],[-4,0],[-1,1],[-1,1],[-3,2],[-1,3],[-2,3],[-2,2],[-2,1],[-3,1],[-4,2],[-1,1],[-1,0],[-2,0],[-1,0],[-2,0],[-3,4],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,-1],[-1,0],[-4,3],[-1,0],[-1,0],[-7,-2],[-1,0],[0,1],[-1,2],[0,4],[1,6],[2,6],[1,6],[3,7],[6,12],[20,26],[7,11],[6,13],[3,7],[2,7],[1,7],[3,15],[7,90],[1,11],[18,65],[0,6],[0,9],[-2,14],[0,7],[1,7],[2,3],[3,1],[4,-2],[12,-10],[1,-2],[2,-3],[2,-5],[6,-18],[2,-4],[1,-3],[1,-1],[1,0],[1,0],[1,1],[2,-1],[1,-1],[2,-1],[1,-2],[2,-3],[1,-2],[1,-1],[1,-1],[1,0],[3,2],[5,2],[3,3],[2,3],[1,1],[2,0],[5,0],[1,1],[0,1],[2,4],[1,1],[1,1],[1,0],[1,1],[0,2],[1,3],[0,2],[0,2],[1,1],[3,1],[1,0],[0,1],[1,2],[0,2],[0,8],[0,3],[0,1],[1,1],[2,1],[1,-1],[2,0],[1,-1],[2,1],[1,1],[1,2],[2,6],[1,2],[0,3],[-1,8],[1,3],[0,3],[2,2],[1,1],[0,1],[2,0],[2,0],[2,0],[0,2],[1,2],[0,5],[0,3],[0,2],[1,1],[2,0],[1,-2],[1,-2],[18,-37],[3,-5],[3,-2],[4,-1],[4,1],[6,6],[27,31],[29,44],[4,3],[3,1],[43,-15],[7,-4],[16,-15],[3,-2],[4,-1],[3,0],[3,1],[2,5],[0,10],[-2,40],[-2,14],[-2,11],[-3,5],[-20,30],[-26,25],[-7,9],[-4,6],[-5,13],[-2,7],[-1,3],[-3,4],[-3,5],[-3,3],[-2,2],[-3,1],[-5,1],[-5,-1],[-40,-17],[-3,0],[-3,0],[-3,1],[-5,4],[-3,2],[-3,4],[-4,5],[-7,15],[-15,39],[-4,13],[-2,10],[1,7],[1,7],[7,20],[0,10],[-3,49],[0,11],[2,6],[1,6],[5,14],[2,7],[1,6],[1,20],[1,7],[1,7],[8,32],[3,17],[1,10],[1,10],[-1,14],[-2,9],[-3,6],[-3,3],[-3,1],[-3,-1],[-4,-2],[-2,-2],[-2,-3],[-6,-9],[-6,-11],[-23,-55],[-5,-10],[-1,-2],[-1,-2],[-3,-1],[-2,-1],[-3,1],[-2,2],[-1,2],[-2,5],[-3,11],[-2,9],[-1,8],[0,15],[5,64],[0,11],[-1,15],[-2,9],[-3,7],[-3,4],[-3,3],[-7,4],[-14,5],[-3,2],[-3,4],[-4,6],[-3,9],[-1,10],[0,12],[2,9],[2,8],[2,5],[2,6],[3,5],[3,4],[27,18],[21,10],[3,3],[8,8],[4,6],[3,3],[4,2],[11,-4],[5,0],[3,0],[2,1],[3,1],[6,5],[3,5],[25,52],[6,10],[3,3],[3,0],[3,-1],[4,-5],[3,-5],[3,-5],[4,-2],[3,-1],[6,1],[4,-1],[3,-1],[3,-3],[6,-10],[3,-2],[4,0],[3,3],[3,5],[3,6],[11,29],[3,6],[9,15],[3,6],[2,6],[2,5],[1,9],[2,15],[1,9],[-1,3],[-2,0],[-3,-1],[-3,-1],[-3,1],[-11,5],[-1,1],[-5,3],[-5,-3],[-5,-7],[-6,-3],[-2,1],[-1,3],[-2,2],[-5,2],[-4,3],[-3,0],[-5,3],[-8,13],[-8,5],[-3,8],[-3,2],[-4,0],[-2,0],[-3,3],[-3,4],[-4,-4],[-5,-2],[-9,-1],[-4,-2],[-9,-14],[-9,12],[-6,4],[-2,-6],[-19,-13],[-6,0],[-13,6],[-1,4],[-9,7],[-4,3],[-3,6],[-3,9],[-4,36],[-2,3],[-3,1],[-6,0],[-4,2],[-2,2],[-2,2],[-34,55],[-5,5],[-2,3],[-12,5],[-6,5],[-5,7],[-1,1],[2,2],[9,13],[5,10],[3,9],[1,2],[5,9],[1,5],[0,5],[-1,12],[-1,6],[9,30],[2,5],[3,2],[3,5],[3,6],[1,6],[-1,4],[-4,11],[-2,11],[0,15],[1,14],[5,6],[12,-1],[6,1],[4,4],[2,5],[0,6],[0,13],[1,3],[4,6],[1,3],[0,3],[3,10],[1,4],[-1,5],[-1,11],[0,7],[4,5],[3,6],[2,7],[2,8],[3,19],[3,8],[5,4],[4,-4],[5,-6],[5,-1],[3,15],[6,9],[2,6],[-2,6],[-1,7],[0,7],[1,6],[3,6],[2,1],[3,-2],[4,0],[3,2],[3,3],[4,3],[3,-1],[2,-4],[3,-15],[3,-12],[1,-8],[2,-7],[4,-3],[3,-2],[4,-2],[3,-5],[3,-5],[6,-5],[7,2],[12,13],[4,-7],[7,-20],[4,-4],[1,-1],[7,-10],[4,-15],[2,-2],[6,-3],[2,-1],[0,-2],[3,-6],[1,-2],[6,0],[5,-2],[4,-3],[5,-6],[2,2],[6,0],[2,2],[1,4],[0,4],[0,5],[1,6],[2,10],[3,7],[5,4],[6,2],[5,3],[17,27],[6,5],[12,7],[11,12],[6,3],[12,4],[6,4],[11,15],[5,4],[3,-1],[6,-3],[2,-1],[2,2],[3,5],[2,1],[12,-5],[7,0],[0,7],[-2,6],[0,6],[1,5],[1,4],[2,1],[2,-1],[4,-8],[5,6],[14,14],[7,11],[5,6],[5,2],[3,-3],[6,-7],[4,-2],[2,3],[8,20],[5,7],[6,3],[5,-4],[1,-14],[2,0],[3,4],[0,4],[0,5],[1,6],[3,16],[1,2],[3,4],[20,5],[4,6],[4,7],[-1,7],[-7,3],[-3,5],[2,12],[4,13],[4,8],[2,-6],[2,-16],[2,-5],[4,-3],[1,4],[-1,8],[1,6],[7,4],[7,-4],[8,-7],[5,-8],[2,-4],[2,-11],[2,-4],[3,-2],[7,-2],[3,-3],[3,-5],[0,-12],[1,-6],[3,-5],[9,-5],[3,-6],[-3,-9],[-1,-6],[3,-3],[18,-4],[5,1],[5,6],[3,-6],[3,1],[3,5],[3,6],[3,2],[2,-1],[3,-2],[3,-1],[5,4],[10,13],[7,2],[1,2],[5,7],[2,2],[3,0],[11,-5],[9,-11],[10,-6],[2,2],[2,11],[3,11],[1,3],[3,1],[2,4],[2,6],[3,-1],[2,-2],[2,-3],[2,-2],[18,3],[3,3],[3,5],[12,2],[4,2],[3,6],[1,5],[0,14],[1,6],[4,10],[1,3],[0,6],[2,11],[0,4],[-2,4],[-6,2],[-2,2],[-2,12],[3,10],[3,7],[2,7],[1,13],[1,11],[4,8],[5,4],[-3,10],[2,3],[4,3],[3,7],[5,-6],[6,3],[6,6],[6,7],[1,3],[1,-1],[3,-6],[2,-2],[7,6],[3,1],[-2,10],[3,2],[5,-2],[4,2],[1,0],[3,-7],[0,-8],[3,-5],[6,1],[-1,-2],[-1,-2],[0,-2],[-2,-2],[0,-4],[4,-6],[2,1],[2,4],[4,1],[1,-1],[2,-5],[1,-1],[1,-1],[6,-3],[4,-6],[7,-17],[4,-5],[3,-3],[4,1],[3,7],[-3,4],[2,2],[4,-4],[1,-13],[1,1],[3,1],[1,1],[-1,-7],[1,-6],[1,-4],[2,-11],[3,3],[3,7],[1,3],[6,0],[3,-8],[3,-10],[5,-8],[0,11],[4,6],[5,2],[4,-4],[0,10],[1,5],[3,2],[4,-2],[3,-3],[5,-11],[3,-5],[3,4],[4,1],[3,0],[2,1],[0,6],[2,2],[3,0],[2,-2],[-1,4],[-1,14],[2,-2],[1,-1],[2,0],[2,0],[2,1],[1,4],[2,6],[4,-4],[2,-6],[1,-5],[4,4],[1,-3],[2,-2],[1,-3],[3,6],[1,2],[2,-17],[2,-5],[4,3],[-1,-3],[1,-9],[1,1],[3,2],[1,1],[2,-10],[5,-7],[6,-5],[7,-2],[5,1],[5,-1],[2,-6],[2,2],[6,5],[3,-9],[4,-6],[4,-5],[3,-5],[6,-21],[0,-4],[4,-1],[7,-5],[5,-1],[2,1],[4,3],[4,3],[2,5],[2,-5],[3,9],[5,3],[5,-1],[2,-6],[2,0],[1,5],[3,1],[3,-3],[3,3],[4,6],[3,3],[13,0],[4,-1],[2,-3],[11,-24],[2,-3],[2,1],[3,5],[2,2],[2,-1],[1,-3],[1,-3],[1,-1],[5,-1],[1,2],[3,7],[2,5],[2,13],[2,5],[8,18],[8,13],[8,11],[10,11],[13,7],[12,-1],[11,-9],[23,-22],[6,-4],[6,-1],[5,-2],[4,-6],[4,-6],[4,-6],[2,-2],[3,-1],[5,0],[3,-2],[4,-5],[3,-1],[7,-5]],[[70870,70546],[7,-11],[10,-9]],[[70920,70515],[10,-7],[8,-12]],[[70938,70496],[4,-17],[2,-21]],[[71035,70401],[17,-20],[17,-24]],[[71114,70137],[0,-10],[-3,-4]],[[71089,70017],[8,-14],[9,-6]],[[71128,69995],[7,-8],[7,-20],[3,-21]],[[71183,69898],[5,-2],[5,-3]],[[71208,69905],[4,0],[5,-1]],[[71265,69943],[2,-18],[-3,-46]],[[71269,69861],[9,-9],[2,0]],[[71280,69852],[18,-12],[9,-11],[7,-15]],[[71323,69803],[3,0],[2,-1],[12,2]],[[71349,69793],[6,-16],[4,-6],[6,-3]],[[71365,69768],[5,-2],[12,-1]],[[71399,69769],[5,-3],[4,-5]],[[71414,69748],[3,-5],[10,-7],[11,-2],[20,5]],[[71458,69739],[8,-2],[7,-6],[13,-17]],[[71611,69719],[-105,-107],[-104,-107],[-2,-2],[-5,-11],[1,-14],[1,-9],[1,-6],[-2,-17],[-4,-10],[-17,-22],[-5,-10],[-4,-4],[-4,1],[-7,8],[-8,3],[-10,-1],[-9,-6],[-7,-8],[-2,-13],[1,-30],[-3,-11],[-25,-40],[-4,-3],[-24,-9],[-5,1],[-4,2],[-12,15],[-11,3],[-10,-7],[-39,-36],[-29,-13],[-10,-1],[-17,13],[-10,-4],[-4,-6],[-6,-16],[-4,-8],[-2,-2],[-7,-4],[-19,-22],[-16,-28],[-5,-8],[-5,-2],[-12,3],[-6,0],[-16,-7],[-12,1],[-74,33],[-11,9],[-11,14],[-4,8],[-5,10],[-6,8],[-10,0],[-18,-7],[-26,-2],[-98,33],[-71,42],[-17,5],[-18,-3],[-17,-11],[-21,-26],[-8,-6],[-44,-13],[-3,-3],[-8,-11],[-1,-13],[2,-14],[0,-16],[-4,-11],[-13,-16],[-5,-12],[0,-21],[-1,-7],[-3,-4],[-7,-7],[-3,-3],[-4,-13],[-2,-14],[3,-13],[6,-11],[6,-7],[7,-4],[7,-2],[8,2],[9,-2],[4,-9],[6,-28],[4,-10],[2,-12],[0,-12],[-6,-8],[-16,-15],[-7,-11],[-2,-17],[2,-17],[7,-14],[8,-10],[8,-3],[19,8],[6,-1],[15,-8],[10,0],[10,5],[10,0],[9,-10],[4,-18],[-3,-18],[-7,-16],[-7,-12],[-10,-12],[-10,-7],[-29,-9],[-7,-10],[-10,-29],[-1,-6],[-1,-7],[-1,-7],[-1,-17],[1,-8],[1,-9],[2,-7],[14,-19],[17,-16],[15,-20],[5,-31],[-6,-42],[-9,-41],[-2,-9],[-3,-8],[-4,-6],[-5,-6],[-10,-7],[-5,-5],[-2,-10],[-1,-24],[4,-18],[7,-13],[10,-12],[9,-15],[16,-36],[10,-10],[26,-7],[7,-9],[3,-12],[1,-28],[3,-28],[0,-12],[-3,-10],[-5,-12],[3,-10],[3,-9],[5,-5],[6,-2],[5,3],[9,9],[6,1],[4,-4],[8,-14],[5,-4],[6,-1],[14,4],[6,3],[5,7],[3,8],[1,10],[3,11],[4,8],[6,2],[3,-5],[1,-13],[-2,-11],[-7,-24],[-2,-12],[1,-12],[1,-23],[0,-11],[-2,-9],[-3,-10],[-2,-10],[1,-11],[8,-39],[7,-15],[10,-6],[11,1],[10,6],[11,1],[19,-17],[11,2],[12,9],[9,1],[9,-6],[10,-14],[10,-10],[19,-8],[10,-10],[26,-37],[8,-16],[1,-13],[-2,-10],[-9,-18],[-3,-9],[-3,-19],[0,-6],[-9,1],[-4,-1],[-6,-4],[-9,-7],[-6,-11],[0,-13],[-3,1],[-7,3],[-2,-2],[-3,-5],[-3,-2],[-2,0],[-17,12],[-5,-2],[2,-16],[-3,0],[-7,1],[-2,-3],[-2,-5],[-2,-5],[-1,-4],[-4,-3],[-6,-1],[-7,1],[-5,-2],[-5,-9],[-12,7],[-5,-12],[-2,-19],[-5,-15],[-6,-2],[-18,6],[-8,-25],[-4,-5],[-4,-3],[-21,-27],[-4,-8],[-3,-9],[-1,-12],[0,-7],[0,-3],[-2,-2],[-2,-5],[0,-3],[-1,-6],[-1,-3],[-1,-1],[-2,-2],[0,-1],[-3,-8],[-1,-2],[3,-7],[15,-48],[8,-53],[9,-22],[0,-11],[-1,-10],[-3,-9],[-5,-10],[-3,-9],[-11,-48],[-2,-13],[0,-25],[-5,-22],[0,-11],[0,-11],[2,-8],[2,-7],[4,-7],[5,-4],[12,4],[5,0],[4,-5],[6,-8],[2,-5],[-16,-15],[-6,-8],[-4,-10],[0,-11],[-5,-7],[-4,-9],[-4,-7],[-5,-4],[-7,0],[-5,-1],[-4,-4],[-5,-8],[-3,-10],[-1,-7],[-3,-5],[-6,1],[-7,4],[-3,0],[-3,-1],[-3,-4],[-3,-5],[-2,-5],[2,-10],[-3,-10],[-5,-8],[-6,-3],[-1,-2],[3,-11],[0,-4],[-2,-4],[-4,-6],[-3,-3],[-5,-15],[-5,-7],[-2,-5],[-2,-11],[-4,-5],[-1,-5],[-1,-8],[-2,-3],[-6,-2],[-6,-5],[-4,-5],[-4,-6],[-4,-9],[-3,-10],[0,-10],[1,-10],[-1,-14],[-4,-7],[-11,-5],[-2,-5],[-2,-7],[-14,-34],[-3,-4],[-3,-1],[-5,3],[1,-4],[0,-8],[1,-4],[-5,1],[-6,-5],[-4,-8],[-2,-9],[-1,-2],[14,-13],[5,-14],[7,-24],[4,-24],[-2,-16],[-46,-68],[-10,-10],[-51,-20],[-48,-39],[-4,-8],[-12,-68],[-12,-68],[-14,-81],[-15,-52],[-14,-46],[-22,-74],[-17,-41],[-7,-21],[-9,-38],[-4,-8],[-4,-6],[-36,-33],[-32,-29],[-37,-34],[-39,-37],[-8,-9],[-21,-44],[-6,-23],[-17,-112],[-5,-27],[-8,-24],[-11,-20],[-34,-49],[-22,-52],[-3,-11],[-2,-10],[-3,-68],[-2,-8],[-3,-6],[-45,-24],[-39,-21],[-23,-4],[-22,4],[-24,-4],[-24,-9],[-21,-13],[-34,-30],[-31,-28],[-23,-9],[-20,5],[-14,17],[-11,28],[-8,35],[-1,11],[1,21],[-2,11],[-4,7],[-7,11],[-10,19],[-7,10],[-7,7],[-9,5],[-5,1],[-6,-2],[-11,-8],[-10,-3],[-5,-3],[-5,-6],[-16,-31],[-19,-24],[-27,-50],[-3,-10],[-20,-107],[-7,-16],[-24,-41],[-16,-49],[-33,-55],[-18,-23],[-25,-45],[-12,-35],[-7,-42],[-6,-68],[-6,-66],[2,-23],[9,-18],[43,-32],[12,-13],[20,-33],[12,-8],[66,5],[11,-5],[10,-10],[8,-18],[1,-20],[-2,-46],[1,-22],[-1,-10],[-2,-11],[-2,-11],[1,-11],[2,-22],[-1,-20],[-5,-21],[-14,-45],[-2,-9],[0,-20],[-2,-29],[0,-8],[5,-28],[9,-27],[11,-23],[11,-18],[5,-12],[6,-31],[4,-13],[4,-5],[11,-7],[16,-7],[32,2],[11,4],[11,8],[10,6],[11,-4],[6,-15],[1,-23],[-1,-48],[-2,-64],[3,-19],[4,-12],[11,-22],[2,-14],[2,-13],[3,-11],[9,-19],[18,-28],[5,-11],[3,-13],[9,-77],[6,-30],[8,-30],[16,-47],[10,-49],[7,-21],[-5,-8],[-19,-16],[-4,-13],[-2,-18],[1,-15],[5,-9],[1,-3],[1,-4],[-1,-3],[-1,-4],[0,-11],[-1,-5],[0,-4],[0,-4],[1,-4],[7,-7],[11,-3],[9,-6],[3,-14],[-3,-5],[-13,-9],[-3,-6],[-2,-6],[-3,-4],[-6,0],[-6,5],[-5,1],[-5,-3],[-17,-21],[-5,-10],[1,-10],[4,-9],[-2,-4],[-4,-2],[-6,-4],[-11,-10],[-5,-3],[-38,6],[-10,9],[-5,8],[-2,8],[-1,22],[-3,20],[1,6],[1,3],[5,6],[2,6],[-4,13],[-11,1],[-30,-13],[-12,-16],[-5,-4],[-15,-1],[-6,-5],[-10,-14],[-5,-2],[-6,0],[-16,-10],[-10,-2],[-3,-3],[-3,-9],[-7,-35],[-3,-10],[-10,-16],[-12,-5],[-56,-1],[-15,3],[-13,12],[-21,42],[-9,6],[-78,4],[-21,-14],[-11,-3],[-5,2],[-15,14],[-7,4],[-5,-2],[-12,-11],[-7,-5],[-5,1],[-4,7],[-6,18],[-2,4],[-2,4],[-3,2],[-3,-1],[-2,-3],[0,-5],[-1,-4],[-9,-30],[-3,-4],[-5,8],[-2,32],[-4,12],[-14,1],[-6,-24],[0,-44],[0,-58],[0,-78],[-22,1],[-28,0],[-32,0],[-13,-3],[-9,-12],[1,4],[-1,6],[-1,4],[-2,2],[-3,-1],[0,-5],[1,-5],[0,-4],[-2,-7],[-4,-7],[-3,-3],[-4,3],[-2,5],[-1,5],[-1,2],[-2,-1],[-3,-4],[-1,-5],[1,-5],[-1,-3],[1,-1],[1,-2],[1,-2],[-1,-2],[-1,0],[-3,0],[-1,0],[-2,-2],[-5,-4],[-2,-3],[-5,-12],[-2,-8],[-3,-14],[-2,-12],[-2,-9],[-1,-13],[4,-28],[-1,-11],[-5,-12],[-9,-10],[-15,-28],[-27,-52],[17,-40],[54,-39],[26,-62],[24,-77],[37,-68],[44,-60],[65,-61],[24,-31],[1,-16],[-40,-40],[-12,-21],[-23,-75],[-6,-49],[-1,-42],[6,-39],[13,-49],[30,-78],[58,-115],[43,-65],[43,-85],[41,-61],[46,-111],[53,-109],[90,-140],[64,-66],[64,-66],[40,-10],[51,14],[46,28],[112,92],[42,45],[33,21],[36,38],[41,31],[33,54],[25,97],[5,6],[11,-133],[20,-49],[35,-35],[3,-48],[12,-49],[-2,-60],[-27,-99],[-13,-111],[-19,-112],[-5,-56],[0,-51],[15,-141],[16,-140],[8,-123],[-5,-92],[6,-36],[17,-46],[0,-50],[12,-81],[-1,-73],[11,-129],[24,-135],[24,-136],[24,-229],[15,-91],[11,-187],[10,-186],[24,-136],[24,-137],[40,-110],[10,-59],[17,-56],[20,-124],[30,-74],[2,-79],[4,-29],[29,-67],[27,-107],[37,-69],[17,-69],[21,-63],[10,-77],[24,-127],[33,-143],[15,-184],[19,-160],[18,-159],[34,-154],[33,-153],[24,-86],[18,-87],[86,-175],[29,-124],[30,-72],[14,-57],[19,-101],[22,-167],[31,-145],[32,-145],[33,-221],[8,-157],[13,-103],[29,-128],[30,-128],[55,-138],[56,-137],[45,-88],[82,-123],[47,-33],[39,-12],[24,9],[101,107],[38,49],[26,46],[18,49],[11,45],[31,213],[-1,26],[25,36],[51,23],[64,52],[49,10],[32,-10],[40,-46],[45,-12],[48,-42],[5,-15],[3,-73],[-10,-35],[-11,-67],[-36,-105],[-8,-49],[-3,-47],[4,-67],[21,-165],[12,-255],[-3,-70],[15,-198],[25,-173],[26,-172],[18,-75],[28,-65],[27,-47],[35,-33],[39,-23],[56,-10],[44,15],[82,74],[105,71],[63,80],[55,91],[33,86],[40,250],[4,72],[-5,192],[-17,123],[-17,80],[-42,113],[-45,158],[-20,144],[-11,49],[-35,84],[-38,118],[-41,108],[-53,172],[-21,42],[-76,113],[-55,130],[-20,25],[-23,11],[-23,0],[-34,85],[11,44],[-1,156],[-1,156],[3,173],[-9,135],[-18,120],[9,80],[15,80],[69,230],[24,113],[12,75],[17,182],[17,183],[-4,85],[-25,128],[1,92],[-27,140],[-1,45],[10,108],[-1,134],[-6,56],[-19,74],[-7,98],[10,116],[20,74],[18,100],[15,30],[22,22],[29,-60],[19,-14],[36,1],[47,26],[28,41],[45,121],[23,117],[15,35],[16,7],[45,-20],[28,4],[92,66],[55,59],[46,82],[10,26]],[[72918,59182],[0,-252],[0,-251],[0,-252],[0,-251],[0,-252],[0,-252],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-241],[0,-241],[0,-240],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-222],[0,-222],[0,-222],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-260],[0,-259],[0,-260],[0,-260],[0,-259],[0,-260],[0,-260],[0,-259]],[[72918,12540],[-16,-2],[-35,-11],[-33,-21],[-52,-1],[-85,-21],[-87,-38],[-62,-20],[-75,-29],[-26,-6],[-71,-10],[-85,-31],[-86,-30],[-117,-29],[-76,-27],[-76,-27]],[[71936,12237],[-29,-10],[-115,-69],[-39,-32],[-48,-52],[-16,-23],[-33,-84],[-2,-28],[8,-30],[-3,-8],[-12,-9],[-41,-17],[-21,-15],[-35,-31],[-21,-26],[-4,-5],[-16,-38],[-3,-63],[-11,-23],[-10,-5]],[[71485,11669],[-30,-2],[-39,-9],[-65,-9],[-36,-11],[-28,-16],[-88,-73],[-16,-6],[-61,-12],[-28,-9],[-126,-67],[-28,-21],[-20,-25],[-14,-33],[-7,-25],[-9,-30],[-33,-6],[-8,-3],[-6,-2],[-4,-2],[-8,-3],[-14,-5],[-10,0],[-7,0],[-15,2],[-32,6],[-19,16],[-7,6],[-20,12],[-32,13],[-23,7],[-39,102],[-97,125],[-96,125],[-117,74],[-118,73],[-111,-6],[-111,-6],[-110,-6],[-111,-6],[-105,104],[0,3],[-3,25],[-11,23],[-113,133],[-29,53],[-8,34],[20,65],[1,27],[-15,74],[-12,23],[-18,21],[-37,26],[-49,19],[-55,10],[-57,0],[-42,-7],[-38,-15],[-39,-24],[-38,-32],[-92,-9],[-66,20],[-77,8],[-77,9],[-29,9]],[[68753,60487],[0,263],[0,264],[0,264],[0,264],[0,263],[0,264],[0,264],[0,263],[0,264],[0,264]],[[67506,66362],[14,2]],[[69249,67742],[2,6]],[[69447,68744],[-11,2]],[[69812,69387],[37,25]],[[69888,69697],[-3,8]],[[70455,70497],[37,-2]],[[70634,70518],[23,24]],[[70664,70552],[12,5]],[[70704,70534],[2,18]],[[70707,70560],[0,4]],[[70199,54285],[85,-18],[84,-17],[94,25],[94,25],[0,251],[-1,251],[0,251],[0,251],[0,251],[0,231],[0,232],[0,231],[0,232],[0,231],[0,232],[-116,0],[-116,0],[-115,0],[-116,0],[-116,0],[-116,0],[0,-232],[0,-231],[0,-232],[0,-231],[0,-232],[0,-231],[1,-233],[0,-233],[0,-233],[0,-233],[0,-233],[113,-35],[112,-35],[113,-35]],[[69695,45555],[83,0],[82,0],[139,0],[139,0],[139,0]],[[70277,45555],[0,208],[0,209],[0,208],[0,208],[0,237],[0,236],[0,236],[0,236],[0,237],[0,236]],[[694,25000],[0,278],[0,277],[0,278],[0,278]],[[694,26111],[139,0],[139,0],[139,0],[139,0],[139,0],[0,-223],[0,-222],[0,-222],[0,-222],[0,-222],[-139,0],[-139,0],[-139,0],[-139,0],[-139,0]],[[75715,62209],[4,-33],[1,-17],[-5,-85],[3,-96],[1,-37],[1,-14],[2,-28],[10,-56],[1,-11],[-2,-9],[-5,-11],[-7,-8],[-6,-1],[-3,7],[-2,12],[-2,22],[-5,23],[-8,3],[-9,-4],[-12,2],[-6,4],[-3,3],[-2,5],[-2,10],[-1,9],[-1,9],[-4,9],[-9,6],[-10,-24],[-9,0],[-5,-1],[-3,-11],[-3,-24],[-8,-21],[-2,-9],[0,-11],[2,-22],[0,-11],[-2,-17],[-1,-8],[2,-10],[2,-8],[7,-11],[2,-9],[1,-8],[12,-18],[0,-24],[1,-32],[8,-40],[9,-46],[4,-27],[1,-17],[-10,-1],[-10,-23],[-34,-37],[7,-16],[49,-88],[62,-182],[39,-82],[18,-82],[8,-36],[14,-38],[16,-20],[17,-10],[55,-11],[37,5],[9,-7],[-19,-68],[-5,-51],[5,-71],[29,-89],[-4,-20],[-23,-49],[-6,-33],[2,-52],[13,-58],[22,-54],[28,-52],[15,-20],[20,-12],[25,0],[26,13],[11,12],[27,54],[9,1],[8,-23],[10,-62],[19,-62],[3,-90],[29,-71],[4,-83],[24,-143],[3,-110],[-5,-38],[-22,-80],[0,-81],[-20,-78],[-4,-104],[-24,-81],[-11,-88],[-11,-239],[6,-52],[16,-44],[55,-102],[24,-22],[14,-2],[41,20],[44,-38],[47,-21],[18,-2],[43,12],[55,-37],[41,5],[38,30],[38,56],[26,56],[28,93],[13,25],[36,30],[37,51],[88,97],[64,55],[66,123],[18,2],[13,-34],[16,-96],[21,-56],[8,-46],[20,-57],[9,-107],[29,-76],[0,-21],[-14,-71],[-1,-38],[19,-124],[5,-31],[0,-255],[0,-255],[0,-255],[0,-255],[0,-255],[0,-254],[0,-255],[-14,-22],[-26,-9],[-20,-23],[-15,-40],[-6,-47],[3,-37],[10,-37],[15,-30],[18,-19],[26,-3],[9,5],[0,-268],[0,-269],[0,-268],[0,-268],[0,-17]],[[77088,55346],[0,-175],[0,-264],[-14,-22],[-12,-40],[-3,-46],[7,-52],[16,-45],[6,-8],[0,-261],[0,-260],[0,-260],[0,-261],[0,-207],[0,-208],[0,-207],[-8,4],[-67,-20],[-53,29],[-49,9],[-31,-6],[-38,-29],[-18,-5],[-107,37],[-13,16],[-31,69],[-24,41],[-83,74],[-43,109],[-41,35],[-35,8],[-29,-18],[-30,-67],[-36,-40],[-15,-44],[-3,-46],[5,-42],[13,-49],[39,-85],[-6,-65],[4,-47],[17,-52],[11,-63],[57,-211],[28,-70],[55,-89],[73,-152],[65,-101],[63,-144],[37,-39],[66,-23],[24,-32],[19,-48],[48,-144],[48,-145],[21,-42],[38,-44],[9,-43],[2,-59],[-6,-29],[-13,-14],[-58,3],[-39,-16],[-17,-21],[-26,-61],[-10,-9],[-2,15],[-15,35],[-22,25],[-6,2],[-6,63],[-26,88],[-52,60],[-38,77],[-32,37],[-37,65],[-51,32],[-20,-2],[-18,-17],[-42,-93],[-11,-71],[7,-68],[22,-73],[27,-51],[50,-43],[34,-12],[61,-102],[46,-37],[19,-94],[13,-25],[19,-21],[18,-5],[71,-200],[-6,-61],[4,-37],[8,-30],[35,-51],[29,-72],[9,-44],[-3,-6],[-10,-41],[-2,-52],[7,-43],[15,-35],[23,-26],[26,-5],[22,14],[3,6],[9,-61],[9,-30],[0,-193],[0,-192],[0,-193],[-1,-192],[-1,-191],[0,-80],[0,-270],[0,-270],[0,-269],[0,-270],[0,-270],[0,-270],[0,-270],[0,-269],[0,-270],[0,-270],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253]],[[77086,43744],[-120,0],[-120,0],[-120,0],[0,-216],[0,-217],[0,-216],[0,-217],[120,-1],[120,0],[120,-1]],[[77086,42876],[0,-206],[0,-206],[0,-206],[0,-222],[0,-223],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-247],[0,-247],[0,-247],[0,-247],[0,-247],[0,-247],[0,-247],[0,-247],[0,-246],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-215],[0,-216],[0,-216],[0,-241],[0,-241],[0,-241]],[[77086,13221],[-19,12],[-2,37],[-13,42],[-17,30],[-26,25],[-28,17],[-24,8],[-132,15],[-34,-3],[-35,-10],[-31,-14],[-28,-20],[-22,-23],[-21,-31],[-14,-34],[-6,-30],[2,-27],[8,-24],[13,-19],[-8,-70],[-16,-5],[-44,-31],[-36,39],[-38,25],[-31,11],[-107,23],[-27,0],[-26,-5],[-113,-41],[-40,-23],[-31,-34],[-7,-4],[-2,1],[-41,26],[-37,13],[-32,8],[-119,2],[-41,9],[-32,1],[-18,-2],[-51,-21],[-17,-4],[-23,9],[-34,23],[-29,13],[-91,17],[-29,1],[-31,-5],[-78,-23],[-48,-21],[-64,8],[-31,-3],[-28,-6],[-32,-15],[-80,-52],[-81,-33],[-58,-1],[-73,-9],[-27,-5],[-38,-13],[-122,18],[-55,-2],[-39,4],[-87,-14],[-63,20],[-32,4],[-37,0],[-50,-10],[-44,-21],[-109,-36],[-12,3],[-11,8],[-25,36],[-19,20],[-50,34],[-35,16],[-25,5],[-31,2],[-70,-9],[-37,-12],[-19,-10],[-26,-20],[-16,-2],[-23,9],[-29,42],[-60,55],[-27,17],[-32,10],[-35,3],[-34,-3],[-33,-11],[-30,-19],[-21,-23],[-19,-36],[-9,-38],[-1,-31],[8,-25],[15,-21],[32,-31],[8,-53],[-7,-15],[-13,-11],[-41,-11],[-73,-5],[-48,-16],[-29,-20],[-38,-39],[-16,-13],[-97,-31],[-43,-21],[-20,-17],[-17,-21],[-28,-13],[-8,-5],[-13,-9],[-36,-44],[-20,-13],[-19,-4],[-80,-6]],[[72918,59182],[8,25],[13,109],[-1,120],[6,21],[44,54],[78,68],[89,105],[39,68],[45,127],[20,42],[37,47],[76,71],[27,39],[52,105],[51,105],[56,145],[55,145],[29,58],[69,108],[31,35],[87,78],[74,43],[74,43],[32,30],[28,39],[20,41],[26,75],[67,95],[14,41],[14,82],[30,41],[12,25],[2,165],[-30,120],[-6,46],[3,21],[10,28],[29,53],[51,21],[63,41],[39,14],[28,28],[21,-32],[34,-18],[43,-41],[39,-2],[34,-11],[55,11],[41,-11],[22,3],[67,48],[33,14],[-28,75],[-11,40],[-4,15],[-4,13],[-9,24],[-9,28],[-4,52],[0,18],[8,6],[4,5],[1,12],[1,19],[-1,14],[-3,9],[-2,12],[-2,13],[1,13],[1,9],[1,7],[5,11],[0,14],[-2,11],[-2,9],[-12,30],[-3,11],[4,5],[-5,15],[-1,7],[-3,30],[0,5],[0,6],[3,7],[0,4],[-1,13],[-5,22],[-3,21],[-3,5],[-8,6],[6,8],[1,13],[-1,15],[-2,14],[-4,11],[-1,13],[-1,7],[-3,16],[-1,10],[2,8],[3,7],[3,8],[1,8],[1,10],[1,11],[-1,8],[-3,5],[-8,5],[-3,7],[-6,26],[-3,9],[-5,12],[-1,7],[0,11],[3,15],[0,29],[4,14],[15,30],[8,11],[2,5],[1,6],[0,5],[-1,2],[-8,0],[-2,1],[-3,2],[-19,13],[-5,1],[-3,-1],[-3,-3],[-2,-3],[-2,-2],[-3,0],[-18,11],[-4,6],[-3,11],[0,12],[3,11],[7,20],[9,47],[4,19],[1,12],[-4,5],[-4,-5],[-3,-9],[-3,-3],[-5,15],[-3,3],[-8,10],[-4,9],[-7,22],[-4,8],[-2,1],[-6,-1],[-3,2],[-2,6],[0,3],[1,4],[0,7],[-1,3],[-3,1],[-3,2],[0,6],[6,51],[-1,5],[-2,8],[0,6],[2,6],[4,11],[1,7],[0,5],[0,5],[-1,5],[1,5],[5,7],[5,0],[6,-1],[5,2],[4,6],[10,19],[3,6],[1,10],[-1,12],[-1,11],[-2,6],[3,11],[3,8],[0,5],[-7,3],[0,7],[-6,8],[-1,7],[0,5],[2,11],[0,7],[-1,11],[0,5],[2,7],[2,5],[7,4],[4,4],[1,5],[3,9],[1,5],[-1,2],[0,9],[-1,2],[-1,22],[-7,16],[-9,10],[-6,3],[-3,-13],[-4,-12],[-6,-1],[-14,9],[-18,1],[-6,3],[-21,30],[-73,70],[-8,3],[0,4],[-3,8],[-2,6],[-1,2],[-1,3],[0,29],[-1,3],[-4,8],[-2,11],[-5,3],[-5,3],[1,17],[3,10],[3,10],[2,24],[3,2],[3,2],[2,5],[0,7],[1,7],[2,4],[4,-1],[2,10],[4,7],[3,7],[-1,10],[-4,20],[-1,4],[-1,3],[0,3],[13,14],[6,3],[5,-1],[5,-6],[3,-9],[3,-11],[0,-10],[4,0],[11,-6],[5,-1],[2,4],[5,16],[10,23],[4,13],[0,15],[7,14],[3,17],[2,36],[0,31],[2,10],[10,3],[4,-3],[9,-6],[8,-4],[1,-1],[1,0],[3,1],[2,3],[4,7],[2,2],[10,-1],[8,-3],[17,-11],[17,-3],[2,3],[3,12],[2,4],[2,1],[2,-2],[1,-1],[19,-13],[7,0],[-4,11],[6,2],[0,6],[0,7],[0,8],[2,6],[11,14],[2,5],[0,6],[0,5],[-2,4],[-14,-1],[-6,2],[-5,9],[-2,2],[-6,1],[-2,1],[-2,3],[-7,15],[-1,6],[0,5],[-1,5],[-3,4],[0,3],[5,20],[-1,12],[-2,7],[-4,6],[-3,7],[-3,4],[-8,6],[0,-10],[-3,-2],[-2,0],[-3,1],[-2,-1],[-3,-4],[-2,-5],[-3,-5],[-3,-2],[-6,3],[-9,10],[-5,5],[-12,1],[-6,2],[-3,5],[-2,8],[-7,11],[-3,11],[-11,9],[-4,7],[-1,34],[-7,15],[-20,25],[-17,36],[-9,8],[-12,-7],[-5,-4],[-6,-5],[-5,0],[-3,7],[-2,10],[-2,5],[-4,9],[0,5],[0,5],[-1,8],[-3,25],[1,2],[2,2],[1,4],[5,32],[6,18],[7,10],[2,11],[-1,6],[-1,3],[-2,2],[-1,3],[0,5],[0,3],[1,3],[3,18],[2,7],[9,10],[3,4],[2,4],[2,4],[3,2],[5,2],[17,10],[4,6],[3,8],[-1,20],[1,8],[4,11],[5,7],[13,15],[2,5],[1,5],[2,2],[3,-3],[1,-2],[3,0],[3,0],[2,1],[6,-1],[-1,14],[-5,30],[-4,12],[-8,6],[-16,6],[-6,5],[-2,0],[-1,-4],[-1,-13],[-1,-3],[-4,2],[-2,7],[0,9],[1,8],[4,11],[6,35],[2,8],[3,11],[4,6],[2,-3],[1,-10],[-1,-12],[1,-11],[4,-7],[10,-6],[4,-3],[4,-8],[3,-5],[3,-6],[3,-4],[5,-7],[6,-5],[3,0],[6,0],[3,-3],[2,-5],[1,-7],[3,-5],[3,-3],[3,-3],[6,-3],[-1,-4],[-1,-5],[1,-4],[2,-1],[2,-2],[0,-10],[2,-4],[6,-6],[4,-5],[1,-7],[-3,-10],[-4,-6],[-10,-9],[-2,-4],[5,-6],[24,15],[10,-7],[2,-8],[2,-10],[2,-8],[5,-3],[4,3],[4,18],[6,7],[8,-3],[12,-22],[8,-5],[12,6],[6,7],[-2,10],[-3,2],[-3,0],[-2,4],[1,12],[-3,-3],[-2,-1],[-3,1],[-1,4],[-3,16],[-7,7],[-8,5],[-5,11],[-1,9],[3,11],[3,9],[4,6],[4,4],[3,-1],[2,-5],[5,-6],[3,-3],[4,-9],[3,-3],[3,-3],[6,-2],[2,-4],[1,-7],[0,-5],[0,-3],[5,-4],[6,-3],[2,-4],[0,-8],[-2,-2],[-4,3],[-3,-1],[0,-15],[2,-9],[5,-16],[2,-9],[3,-34],[2,-10],[3,-7],[18,-14],[5,-5],[3,-7],[1,-11],[3,-5],[9,-8],[7,-14],[5,-6],[6,-5],[4,-1],[5,5],[3,5],[3,0],[4,-11],[2,-1],[1,0],[2,0],[1,1],[15,2],[1,0],[2,-1],[1,-1],[4,-12],[2,-6],[3,-3],[4,1],[2,5],[1,8],[0,7],[2,15],[12,18],[2,10],[-2,7],[-3,0],[-4,-1],[-3,2],[0,7],[3,4],[4,4],[3,4],[-5,1],[-4,4],[-2,7],[3,10],[2,3],[2,2],[2,0],[5,-3],[0,3],[-1,6],[-1,17],[2,5],[6,3],[5,-1],[1,-9],[0,-23],[0,-3],[0,-1],[4,-3],[2,0],[5,1],[3,-1],[3,-4],[2,-9],[1,-9],[2,-7],[4,-10],[0,-6],[0,-7],[0,-10],[1,-5],[6,-14],[2,-7],[2,-4],[2,-1],[1,1],[2,4],[1,1],[1,0],[0,-1],[4,-9],[-1,-7],[-4,-6],[-5,-3],[5,-6],[4,-1],[2,-3],[-1,-13],[-12,-39],[-1,-13],[5,-50],[6,-28],[3,-22],[-2,-39],[-1,-42],[-6,-42],[-2,-22],[1,-19],[3,-20],[3,-10],[4,-2],[10,7],[11,1],[61,-47],[44,-18],[22,-16],[9,-1],[29,11],[22,-4],[11,5],[4,0],[4,-2],[6,-5],[10,-3],[2,1],[2,1],[3,6],[1,1],[5,-1],[3,-4],[4,-4],[4,-4],[8,-2],[33,9],[9,5],[45,13],[15,0],[4,1],[6,5],[3,0],[13,-12],[41,-23],[11,-2],[3,0],[5,4],[3,0],[3,2],[5,7],[3,2],[4,-1],[2,-4],[2,-6],[5,-7],[4,-2],[8,-1],[6,2],[3,5],[1,9],[3,0],[4,-3],[3,-1],[1,2],[2,7],[2,3],[4,1],[14,-2],[29,7],[16,-4],[5,3],[7,4],[9,-1],[9,-4],[8,-5],[2,-3],[3,-8],[1,-3],[2,-2],[4,0],[2,-3],[2,-1],[4,2],[2,0],[2,-3],[4,-10],[4,-6],[3,-5],[4,-3],[5,-2],[14,-3],[3,-4],[4,-11],[8,-6],[7,-8],[1,-15],[3,-2],[4,-3],[0,-2],[9,-12],[3,-2],[1,-3],[-2,-4],[7,-5],[2,-5],[2,-8],[1,-10],[-1,-6],[-3,-11],[-10,-5],[-17,-10],[-3,0],[-2,2],[-1,3],[-1,4],[-18,21],[-11,6],[-8,-6],[-2,-9],[1,-10],[4,-18],[1,-9],[0,-9],[-1,-8],[-14,-73],[-3,-21],[-1,-19],[-2,-9],[-3,-8],[-4,-6],[-4,-4],[-3,-7],[-2,-10],[2,-34],[-1,-16],[-6,-13],[-7,-6],[-8,-1],[-23,3],[0,-6],[6,-19],[0,-8],[-5,4],[-6,8],[-3,4],[-6,-3],[-1,-10],[3,-23],[0,-11],[-6,-47],[-2,-10],[-4,-4],[-5,3],[-9,15],[-1,5],[0,13],[-1,4],[-3,0],[-17,7],[-3,-8],[1,-10],[1,-11],[1,-10],[-4,-9],[-4,-3],[-6,2],[-5,5],[-2,9],[-5,22],[-3,2],[-1,-6],[-3,-35],[-3,-12],[-2,-8],[-4,-5],[-7,-3],[-11,-3],[-10,2],[-22,8],[-11,-2],[-3,-14],[-1,-21],[-3,-23],[-3,-4],[-3,1],[-3,2],[-4,1],[-5,-4],[-3,-6],[-3,-7],[-10,-31],[-1,-8],[0,-8],[3,-12],[1,-7],[0,-11],[-6,-30],[-3,-9],[-5,-5],[-5,-1],[-5,-3],[-2,-10],[1,-13],[4,-4],[5,-3],[2,-8],[-3,-9],[-4,0],[-3,-1],[-1,-13],[1,-10],[8,-28],[2,-9],[3,-19],[2,-9],[3,-4],[4,-5],[2,-5],[1,-5],[1,-13],[4,-24],[3,-11],[3,-5],[4,-2],[1,-3],[-1,-5],[-3,-5],[-2,-5],[0,-4],[2,-5],[1,-5],[7,-90],[3,-23],[7,-16],[9,-5],[1,18],[-5,47],[0,25],[1,13],[3,8],[7,0],[5,-8],[4,-10],[2,-8],[1,4],[2,-4],[0,-4],[0,-3],[0,-3],[4,-7],[1,-1],[2,-17],[1,-5],[6,-41],[2,-14],[1,-2],[2,-1],[1,-2],[0,-17],[2,-6],[3,-7],[4,-3],[4,-1],[3,-3],[2,-6],[0,-6],[1,-2],[4,5],[2,4],[1,5],[1,5],[3,2],[2,-1],[2,-1],[2,-1],[2,1],[4,2],[7,4],[3,4],[3,4],[4,8],[2,4],[5,13],[0,2],[0,3],[0,2],[1,3],[1,0],[3,-1],[1,0],[4,9],[1,5],[-1,6],[-4,17],[-4,39],[-4,17],[-1,22],[5,28],[8,26],[7,18],[5,7],[15,12],[5,6],[3,8],[6,19],[1,22],[-7,64],[-1,22],[1,12],[1,7],[4,0],[4,-8],[3,-10],[12,-24],[4,-4],[7,3],[4,8],[9,23],[5,9],[12,8],[5,-16],[3,-21],[4,-10],[4,8],[4,25],[4,5],[6,-5],[1,-12],[-4,-24],[1,-18],[11,-64],[1,-27],[2,-8],[1,-4],[4,-7],[1,-5],[1,-4],[-1,-8],[1,-3],[1,-4],[4,-5],[1,-3],[0,-5],[-1,-11],[0,-6],[2,-9],[1,-5],[0,-6],[-2,-10],[-5,-19],[-1,-9],[0,-22],[7,-78],[0,-39],[2,-19],[5,-14],[9,-7],[4,-9],[3,-44],[2,-17],[3,-8],[7,-12],[3,-8],[2,-9],[2,-43],[-1,-32],[1,-9],[4,-18],[0,-9],[2,-27],[14,-155],[0,-14],[-3,-3],[-5,1],[-3,-6],[6,-37],[4,-37],[1,-5],[0,-5]],[[75756,52393],[81,189],[81,189],[80,187],[80,188],[80,187]],[[76158,53333],[48,112],[24,63],[56,181],[1,274],[0,274],[0,274],[0,273],[1,274],[0,274],[0,274],[1,273],[0,274],[0,274],[1,274],[0,273],[0,274],[-1,209],[-2,209]],[[76287,57666],[-31,0],[-96,0],[-96,0]],[[76064,57666],[-42,-127],[-76,69],[-76,69],[-101,132],[-102,132],[-111,163],[0,-257],[-1,-257],[0,-257],[0,-257],[-1,-257],[0,-257],[0,-268],[0,-269],[0,-268],[0,-268],[0,-269],[0,-268],[0,-268],[0,-268],[0,-269],[0,-268],[0,-268],[0,-276],[-1,-276],[0,-276],[-1,-276],[-1,-276],[115,6],[90,156]],[[85425,94443],[0,215],[0,215],[-1,215],[1,0],[-1,266],[0,265],[-1,266],[0,265],[0,266],[-1,250],[0,250],[0,250]],[[79281,62932],[3,-3],[2,-3]],[[79286,62926],[3,-13],[6,-21]],[[79369,62785],[3,-2],[4,-3]],[[79379,62774],[3,-10],[16,-33]],[[79465,62767],[15,-4],[11,-5]],[[79583,62734],[4,-4],[14,-6]],[[79601,62724],[4,-5],[3,-8]],[[79610,62702],[3,-7],[6,-1],[1,0]],[[79634,62693],[8,-12],[5,-15]],[[79664,62651],[-10,-10],[-3,-6]],[[79633,62544],[-4,-6],[-5,0]],[[79602,62541],[-7,-57],[-1,-4]],[[79620,62394],[1,-8],[7,-40]],[[79625,62336],[-4,-8],[1,-9]],[[79626,62308],[1,-7],[0,-4],[0,-9]],[[79627,62284],[0,-3],[3,-6]],[[79630,62275],[0,-2],[1,-15]],[[79631,62258],[-2,-13],[-5,-26]],[[79684,62204],[3,-6],[3,-8]],[[79690,62190],[3,-9],[6,-6],[1,1]],[[79714,62186],[5,0],[5,-5]],[[79727,62173],[0,-11],[-2,-10]],[[79718,62135],[0,-11],[4,-8],[6,-3]],[[79748,62099],[21,-36],[11,-5],[1,0]],[[79840,62028],[5,-3],[3,-8],[2,-20]],[[79963,61993],[7,-11],[10,-19]],[[81253,58173],[0,-253],[0,-252],[0,-253],[-1,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253]],[[81252,55647],[-1,-252],[0,-274]],[[81251,54024],[-1,-275],[0,-274]],[[78351,53447],[1,-44],[-3,-18],[-7,-14]],[[78342,53371],[-21,-32],[-7,-16],[-4,-23],[0,-24]],[[78310,53276],[-2,-21],[-9,-16],[-3,-4],[-1,-5]],[[78294,53225],[-2,-5],[-8,-10]],[[78283,53207],[-3,-12],[-3,-7]],[[78257,53214],[-4,-2],[-5,-9],[-2,-3]],[[78210,53283],[0,1],[-7,-3],[-39,-31]],[[78154,53237],[-11,-10],[-10,-4]],[[78120,53177],[-3,-11],[-3,-10]],[[78063,53181],[-1,0],[-5,-1]],[[78074,53472],[-13,-5]],[[78048,53484],[-6,-2],[-7,-16]],[[78015,53470],[0,1],[-4,-3]],[[77957,53581],[-5,-1]],[[77847,53722],[-3,0],[-4,-5],[0,-1]],[[77825,53724],[-2,-5],[0,-6]],[[77823,53713],[-1,-13],[-2,-22],[1,-10]],[[77822,53642],[-3,-4],[-1,-5]],[[77818,53633],[-1,-5],[1,-10]],[[77818,53618],[0,-5],[-1,-14]],[[77815,53587],[-3,-9]],[[77624,53502],[14,-38],[38,-112]],[[77772,53072],[-6,-71],[4,-91]],[[77779,52863],[39,-67],[35,-128]],[[77878,52422],[0,-43],[9,-64],[24,-103],[9,-97]],[[77920,52115],[22,-62],[77,-121]],[[78080,51547],[9,-37],[12,-21]],[[78101,51489],[33,-32],[19,-43]],[[78226,51339],[11,-31],[65,-97]],[[80529,51666],[-36,-255],[-37,-254],[-5,-30]],[[80437,51082],[-11,-17],[-2,-7]],[[80426,51029],[-1,-4],[1,-4]],[[80429,51007],[2,-6],[4,-6]],[[80438,50993],[12,0],[5,-4],[2,-11]],[[80455,50935],[0,-26],[2,-11]],[[80492,50825],[0,-16],[2,0]],[[80500,50814],[1,-3],[5,-24],[5,-8]],[[80536,50765],[5,-32],[4,-12]],[[80558,50705],[5,-9],[6,-21]],[[80602,50652],[4,-11],[6,-24],[14,-40]],[[80638,50554],[15,-6]],[[80683,50488],[12,-12],[14,-4]],[[80725,50496],[3,0],[2,-3],[2,-4],[3,-4]],[[80766,50507],[3,-5]],[[80893,50596],[37,-33],[7,-4]],[[80937,50559],[5,0],[1,0]],[[80968,50554],[1,-10],[3,-12],[1,0]],[[81037,50556],[7,-5],[1,0]],[[81348,50879],[4,-1],[5,-4]],[[81357,50874],[5,-2],[1,0]],[[81381,50872],[6,-6],[5,-5]],[[81395,50841],[-2,-12],[-3,-11]],[[81386,50809],[-9,-13],[-1,-6]],[[81554,50689],[8,-8]],[[81692,50814],[10,-7],[3,-5]],[[81708,50796],[2,-5],[4,-2]],[[81721,50796],[2,-5]],[[81719,50738],[0,-8],[4,-11]],[[81722,50680],[-3,-6],[-2,-3]],[[81638,50561],[-4,-4],[-4,-9]],[[81630,50548],[-2,-6],[0,-7]],[[81628,50535],[0,-6],[0,-6],[-1,-12],[0,-6]],[[81645,50503],[2,-3],[3,-5]],[[81650,50495],[1,-7],[1,-9]],[[81650,50467],[-3,-12],[-1,-10]],[[81643,50409],[-3,-10],[-9,-22]],[[81631,50377],[-7,-19],[-2,-4]],[[81622,50354],[-7,-6],[-3,-4],[-3,-9]],[[81943,50392],[1,-2],[2,-2],[3,-2]],[[81954,50370],[1,-5],[3,-7],[2,-5]],[[81965,50309],[0,-5],[0,-8]],[[81935,50202],[-4,-20],[0,-9]],[[81931,50157],[0,-7],[1,-7],[3,-12]],[[81936,50125],[0,-8],[0,-14]],[[81936,50103],[0,-6],[2,-5]],[[81940,49990],[-5,-28],[0,-10]],[[81935,49945],[0,-5],[2,-3]],[[82028,50013],[9,-4],[2,-2]],[[82040,50005],[0,-2],[0,-2]],[[82039,49994],[-2,-11],[-3,-38]],[[82024,49805],[0,-9],[2,-28]],[[82027,49756],[3,-19],[5,-21],[15,-40]],[[82050,49676],[1,-9],[1,-9]],[[82052,49658],[0,-22],[7,-66]],[[82071,49531],[0,-9],[0,-7]],[[82071,49515],[0,-8],[2,-6],[15,-23]],[[82094,49472],[9,-5],[9,-8]],[[82112,49459],[1,-1],[3,-1]],[[82116,49457],[2,-1],[4,-4]],[[82145,49396],[2,-6],[2,-4]],[[82167,49396],[4,-67]],[[82168,49293],[-2,-13],[-14,-51]],[[82122,49240],[-25,-21],[-12,-4]],[[82077,49213],[-2,-1],[-13,-9]],[[82044,48955],[-1,-13],[-5,-20]],[[82038,48922],[-5,-11],[-3,-11]],[[82030,48900],[-1,-7],[6,-25],[-39,-75]],[[81980,48773],[-13,-7],[-16,-8]],[[81951,48758],[-34,-15],[-4,-4]],[[81913,48739],[-3,-3],[0,-3]],[[81911,48702],[2,-9],[2,-6]],[[81912,48627],[-4,-21],[-1,-4]],[[81907,48602],[-13,-26],[-3,-10]],[[81884,48506],[-3,-9],[-5,-10],[-2,-4]],[[81874,48483],[-2,-3],[-19,-13],[-2,-4]],[[81851,48463],[-2,-3],[1,-7]],[[81843,48434],[-2,-2],[-5,-4]],[[81806,48399],[-2,-7],[-1,-7]],[[81797,48331],[-45,-239],[-43,-246]],[[81709,47846],[-44,-246],[-43,-246]],[[81622,47354],[-44,-246],[1,0]],[[82031,45799],[-126,-2],[-51,-108],[-50,-109]],[[81791,45364],[69,-130],[0,-196],[0,-196],[0,-196]],[[81250,44646],[-1,0],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-55],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-261],[0,-262],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-278],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-231],[0,-232]],[[81249,13508],[-37,-10],[-75,-19],[-74,-18],[-62,-1],[-29,-4],[-109,-38],[-110,-39],[-32,-21],[-33,-32],[-79,-96],[-22,-37],[-8,-28],[3,-27],[14,-34],[22,-25],[-11,-34],[-20,-11]],[[80587,13034],[-31,-16],[-40,-31],[-48,-18],[-65,-40],[-24,-4],[-65,8],[-39,-4],[-35,23],[-57,27],[-10,11],[-12,33],[-10,15],[-22,18],[-27,13],[-25,7],[-42,3],[-29,21],[-23,11],[-89,15],[-102,37],[-35,5],[-68,3],[-54,21],[-61,13],[-98,30],[-98,30],[-64,34],[-59,11],[-89,31],[-60,8],[-15,11],[-20,14],[-24,11],[-70,22],[-70,22],[-52,8],[-69,-1],[-42,20],[-20,6],[-1,75],[14,2],[29,10],[25,15],[23,23],[16,26],[6,24],[-1,29],[-10,24],[-18,23],[-31,25],[-7,46],[-19,38],[-21,23],[-29,22],[-47,25],[-45,13],[-53,2],[-47,-10],[-24,-12],[-17,-15],[-15,-18],[-10,-22],[-7,-27],[-2,-28],[4,-27],[9,-23],[15,-21],[19,-17],[24,-16],[29,-11],[19,-63],[29,-30],[16,-10],[-14,-62],[-48,8],[-37,-4],[-46,-11],[-34,-14],[-38,-23],[-107,-5],[-45,8],[-54,2],[-7,16],[2,5],[47,45],[12,21],[9,26],[1,50],[-7,23],[-11,23],[-47,56],[-34,22],[-84,26],[-38,4],[-39,-3],[-78,-17],[-50,-24],[-50,-46],[-47,-65],[-12,-38],[-1,-39],[13,-48],[27,-42],[-6,-33],[3,-33],[-10,-20],[-58,-71],[-19,-33],[-8,-27],[-1,-28],[19,-67],[-17,-10],[-16,-5],[-44,-6],[-11,2],[-11,8],[-29,37],[-38,27],[-58,24],[-58,10],[-32,-2],[-28,-6],[-64,-36],[-60,-15],[-40,-24],[-16,0],[-15,10],[-21,29],[-19,18],[-37,21]],[[77086,42876],[0,217],[0,217],[0,217],[0,217]],[[77088,55346],[30,0],[36,-17],[27,-6],[23,-25],[17,-14],[18,-13],[18,3],[10,3],[11,19],[8,47],[6,35],[4,21],[15,68],[19,51],[12,17],[15,-7],[7,10],[16,4],[3,7],[14,48],[14,56],[7,29],[3,23],[4,27],[4,18],[5,33],[3,29],[4,21],[0,11],[-4,35],[-1,6],[-6,9],[-1,7],[3,24],[2,13],[13,32],[5,9],[3,2],[6,0],[2,2],[2,5],[2,11],[2,5],[4,3],[3,-1],[2,-2],[3,0],[10,8],[1,1],[2,4],[1,5],[1,11],[0,8],[-2,11],[0,7],[0,6],[0,6],[2,6],[1,5],[3,5],[1,1],[1,-2],[4,-1],[3,-2],[3,-3],[3,0],[2,7],[2,17],[2,5],[4,9],[11,11],[5,8],[2,5],[3,12],[2,5],[3,3],[6,4],[1,5],[9,49],[3,13],[9,21],[4,12],[4,23],[3,8],[10,23],[2,9],[1,10],[1,13],[3,9],[8,16],[3,10],[3,11],[1,9],[-1,22],[1,13],[2,10],[5,5],[6,3],[12,1],[3,5],[18,48],[2,13],[4,37],[0,5],[-5,3],[-5,6],[-5,9],[-4,9],[-2,12],[1,11],[4,23],[1,11],[-2,9],[-4,7],[-5,4],[-5,8],[1,15],[5,26],[0,6],[1,6],[1,5],[-1,5],[-3,2],[-3,0],[-15,-10],[-4,2],[-1,10],[1,5],[3,5],[2,5],[1,7],[-1,6],[-3,11],[-1,6],[0,5],[0,11],[0,6],[-2,6],[-1,1],[-4,9],[-1,7],[-1,10],[-1,31],[-2,12],[-6,23],[-1,11],[0,6],[3,11],[2,6],[0,13],[0,11],[-1,14],[-2,8],[-14,15],[-3,5],[-3,5],[-2,6],[-2,4],[-6,4],[-3,3],[-1,4],[0,12],[-2,5],[-3,3],[-6,2],[-2,3],[-3,9],[0,10],[0,11],[-1,11],[-2,7],[-6,10],[-2,6],[-1,6],[-1,17],[-4,17],[0,5],[0,7],[1,5],[2,5],[1,6],[-1,11],[-4,11],[-5,9],[-5,6],[-6,9],[-1,11],[1,12],[3,14],[1,14],[-1,12],[0,11],[3,9],[5,4],[11,2],[4,8],[1,9],[-1,12],[-4,20],[0,8],[1,5],[2,5],[1,6],[0,5],[-1,11],[2,27],[-1,11],[-9,86],[-1,47],[1,12],[0,15],[-3,9],[-9,17],[-3,9],[-3,27],[0,9],[1,7],[0,4],[-1,4],[-1,5],[-1,1],[-4,2],[-2,2],[-1,3],[-1,9],[-1,3],[-9,13],[-3,6],[-3,12],[-3,11],[-9,21],[-1,10],[-1,13],[-3,9],[-5,6],[-6,4],[-6,5],[-33,48],[-6,13],[-7,26],[-3,1],[-3,-2],[-4,0],[-2,3],[-4,9],[-2,3],[-2,2],[-4,2],[-2,2],[-3,4],[-3,5],[-12,31],[-20,77],[-3,4],[-4,3],[-2,7],[-1,14],[-3,12],[-3,11],[-34,63],[-15,46],[-2,11],[1,8],[0,3],[-1,4],[-3,4],[-1,3],[0,12],[0,20],[-2,12],[-5,19],[-1,6],[0,7],[1,6],[1,4],[1,6],[-1,12],[-9,18],[-2,13],[1,11],[6,19],[1,10],[-3,17],[0,6],[10,-1],[5,5],[4,8],[10,27],[3,1],[7,-2],[5,-3],[9,-12],[5,-3],[1,1],[1,4],[0,8],[-1,4],[-1,2],[-2,2],[-1,1],[1,3],[0,3],[1,2],[0,1],[3,2],[1,4],[1,4],[-1,10],[0,4],[2,3],[10,4],[4,3],[5,6],[6,-5],[6,-6],[4,-9],[1,-12],[7,16],[3,26],[-1,28],[-6,83],[0,32],[0,11],[-1,18],[0,13],[9,56],[1,10],[-2,24],[-1,13],[4,22],[1,9],[-2,12],[-8,20],[-1,8],[3,4],[3,-1],[4,-3],[2,-1],[4,0],[2,0],[2,3],[4,5],[3,11],[2,11],[2,9],[6,5],[5,1],[17,-4],[3,-3],[2,-4],[2,-3],[4,1],[3,4],[6,14],[2,5],[-1,12],[1,12],[2,11],[3,10],[8,18],[1,9],[2,25],[2,24],[0,10],[-5,14],[-6,8],[-5,10],[-1,19],[-6,-10],[-2,-8],[-3,-23],[-3,-14],[-17,-25],[-8,-24],[-5,-7],[-5,8],[-2,8],[-4,40],[-4,16],[0,6],[3,12],[0,6],[-2,10],[-17,43],[-2,6],[0,6],[1,6],[0,5],[0,5],[-1,6],[-5,10],[-9,13],[-4,10],[-2,15],[-1,7],[-9,12],[0,10],[2,11],[3,9],[4,2],[5,6],[3,6],[1,7],[-2,4],[-3,2],[-2,3],[-1,7],[0,8],[3,2],[3,-1],[3,-5],[-2,16],[-2,7],[-3,4],[-4,4],[-1,8],[0,9],[-2,7],[-3,8],[-4,18],[-3,8],[-5,10],[-5,6],[-6,3],[-14,1],[-4,3],[-4,7],[-4,12],[1,2],[2,5],[-1,5],[-7,0],[-1,5],[2,6],[2,5],[-6,8],[-10,27],[-5,9],[-5,4],[-24,44],[-2,5],[0,8],[1,11],[0,7],[-2,8],[-3,4],[-4,3],[-4,3],[-4,8],[-2,8],[-2,15],[-7,19],[-1,8],[-2,6],[-3,3],[-7,6],[-4,5],[-46,82],[-2,7],[-2,8],[0,7],[0,6],[-1,6],[-2,6],[-7,10],[-2,7],[-1,7],[-3,7],[-3,5],[-2,8],[6,2],[-4,26],[2,8],[8,27],[7,10],[1,1],[1,3],[0,7],[-2,6],[-1,3],[-1,3],[-4,19],[-1,7],[0,2],[-4,3],[-1,2],[-1,-1],[-1,1],[-1,4],[0,3],[2,5],[0,4],[-1,6],[-2,10],[-1,7],[0,4],[0,4],[-1,3],[-15,38],[-3,12],[1,5],[4,4],[2,8],[1,10],[-2,9],[-4,4],[-14,10],[-3,-1],[-1,-1],[-5,-27],[-1,-4],[-2,-4],[-6,6],[-6,9],[-6,10],[-4,13],[-1,13],[0,13],[-1,11],[0,1],[-7,21],[-7,26],[-1,8],[-3,11],[-6,10],[-2,7],[8,-2],[3,-3],[5,-18],[1,-4],[1,-4],[3,-4],[3,0],[7,2],[13,-1],[11,10],[19,25],[6,3],[14,-1],[14,7],[1,0],[1,1],[2,6],[2,22],[-2,23],[-3,22],[-2,21],[0,12],[-1,10],[-3,21],[0,4],[1,15],[-1,7],[-3,6],[-7,9],[-6,12],[-2,7],[3,5],[6,8],[4,8],[2,9],[2,21],[3,11],[17,25],[4,8],[2,8],[1,44],[-1,10],[-2,10],[-2,5],[-7,12],[-2,5],[1,6],[3,1],[3,-1],[2,2],[3,11],[-3,10],[-4,10],[-2,14],[0,5],[-2,11],[0,4],[9,24],[9,15],[3,6],[2,8],[-1,3],[-1,3],[-1,7],[0,11],[0,10],[2,7],[11,3],[17,17],[2,3],[4,10],[3,4],[3,2],[3,-1],[2,2],[1,7],[0,10],[-2,20],[0,10],[3,36],[2,8],[6,3],[4,-8],[4,-9],[3,-3],[7,3],[6,-6],[11,-20],[10,-5],[2,-2],[1,-6],[0,-11],[0,-6],[6,-7],[7,3],[12,11],[11,1],[13,-3],[13,1],[9,10],[4,1],[3,-4],[2,-5],[3,-4],[4,-5],[2,1],[0,4],[3,5],[5,4],[7,2],[2,3],[4,11],[3,5],[5,4],[24,7],[6,3],[16,24],[8,-7],[4,-5],[4,-6],[5,-16],[4,2],[10,14],[11,8],[4,6],[4,12],[2,14],[-1,10],[-1,11],[-1,13],[1,6],[1,4],[1,3],[1,2],[0,6],[-2,10],[0,5],[3,38],[5,19],[11,15],[12,9],[11,3],[6,-1],[11,-6],[5,-4],[11,-17],[5,-6],[8,2],[33,20],[9,15],[4,7],[3,3],[3,4],[3,9],[1,14],[-2,9],[-9,19],[-3,32],[-2,10],[-10,21],[-3,9],[6,4],[3,-3],[14,-18],[21,-13],[3,0],[5,1],[3,0],[2,-2],[5,-6],[2,-1],[6,2],[10,8],[6,2],[11,0],[5,3],[5,8],[2,9],[4,20],[3,9],[5,6],[6,4],[15,4],[2,2],[1,-1],[3,-4],[2,-5],[0,-5],[1,-5],[3,-5],[3,-7],[3,-2],[3,0],[4,-2],[4,-4],[2,-5],[1,-5],[2,-6],[13,-15],[-1,10],[0,7],[1,8],[3,7],[3,7],[1,10],[0,12],[3,18],[4,49],[3,19],[3,15],[0,7],[2,9],[6,17],[2,7],[1,9],[3,7],[7,12],[7,17],[5,7],[11,6],[3,8],[3,8],[3,8],[6,2],[24,-8],[12,-6],[6,0],[9,6],[8,9],[8,11],[7,12],[0,4],[-8,3],[-25,-8],[-5,7],[1,11],[2,23],[1,12],[1,2],[5,7],[2,4],[-1,4],[-3,15],[5,5],[13,4],[5,6],[3,9],[15,50],[8,67],[1,7],[0,6],[1,4],[3,2],[2,0],[1,0],[2,-1],[3,-2],[2,-3],[5,-4],[6,2],[11,8],[3,5],[9,18],[4,2],[26,26],[39,59],[3,4],[2,8],[-1,6],[0,4]],[[78099,61973],[4,0],[4,-10]],[[78102,61902],[0,-12],[3,-3]],[[78117,61852],[-5,-11],[1,-3]],[[78127,61766],[4,-3],[1,0]],[[78215,61769],[1,-5],[5,-2]],[[78246,61747],[4,-6],[4,0]],[[78211,62375],[4,-2]],[[78263,62497],[2,0]],[[78354,62462],[2,-2],[3,-3]],[[78359,62457],[1,-5],[1,-5]],[[78361,62447],[0,-5],[1,0]],[[78378,62458],[6,-2],[5,-5]],[[78436,62598],[3,0],[1,0]],[[78480,62615],[1,-7],[7,0]],[[78503,62606],[5,-4],[11,-4],[6,-4]],[[78525,62594],[16,-25],[6,-4]],[[78564,62555],[3,-8],[3,-10]],[[78570,62537],[1,-10],[10,-35]],[[78581,62492],[2,-5],[5,-5]],[[78588,62482],[10,-5],[9,-12],[6,-4]],[[78742,62550],[3,-4],[5,-1]],[[78790,62665],[3,-3],[19,-42]],[[78834,62581],[1,-5],[6,-16]],[[78853,62540],[4,-1],[2,-1]],[[78865,62518],[2,-3],[5,-2]],[[78875,62509],[2,-6]],[[78954,62634],[3,-8],[16,-13]],[[79042,62686],[2,-1],[0,-2],[0,-3]],[[79133,62872],[4,0]],[[79256,62964],[2,-10],[4,-8]],[[79266,62939],[4,-5],[4,-4]],[[76158,53333],[-80,-188],[-81,-188],[-80,-188],[-80,-188],[-81,-188]],[[76064,57666],[112,0],[111,0]],[[71662,69718],[16,-1],[3,-22],[-4,-30]],[[71669,69637],[-3,-44],[10,-41]],[[71711,69393],[11,-24],[3,-10]],[[71742,69254],[6,-19],[11,-17]],[[71759,69218],[12,-8],[54,-16],[10,-2]],[[71869,68932],[-3,-47],[14,-68]],[[71883,68640],[5,-33],[7,-18]],[[71921,68547],[15,-42],[5,-5]],[[71968,68452],[0,1],[0,-1]],[[71978,68460],[8,-1],[22,-20]],[[72008,68439],[9,-5],[23,-2]],[[72050,68403],[-3,-8],[-6,-15],[-2,-11],[-1,-29]],[[72038,68340],[-2,-11],[1,-20]],[[72042,68294],[16,-24],[6,-18]],[[72066,68235],[2,-16],[8,-14]],[[72084,68174],[-3,-20],[-5,-18]],[[72065,68112],[-28,-37],[-11,-23]],[[71975,68040],[-3,-13],[-3,-33],[-4,-11]],[[71830,68094],[-40,-2],[-11,-5],[-6,-6]],[[71793,67905],[5,-3],[11,-10]],[[71815,67878],[4,-17],[27,-64],[8,-11],[13,-12]],[[71866,67723],[-2,-11],[-2,-23],[-1,-11]],[[71861,67678],[-8,-19],[-1,-9],[7,-14]],[[71859,67632],[-1,-6],[1,-5]],[[71860,67617],[3,-8],[3,-9]],[[71887,67574],[6,-15],[-1,-7]],[[71892,67552],[-5,-9],[-27,-38],[-1,-12]],[[71948,67458],[13,4],[4,-3],[8,-12]],[[71973,67447],[9,-10],[2,-7]],[[71984,67430],[1,-9],[3,-8]],[[71988,67413],[2,-2],[6,-1]],[[72018,67339],[1,-11],[0,-11],[1,-10]],[[72054,67242],[1,-7],[4,-2]],[[72076,67229],[1,-2],[1,-2],[1,-3]],[[72079,67222],[0,-4],[3,-7]],[[72101,67190],[3,-3],[1,0]],[[72155,67209],[20,-9],[5,-4]],[[72180,67196],[3,-7],[5,-16],[7,-12]],[[72195,67161],[8,-10],[20,-14]],[[72363,66923],[4,-2],[1,0]],[[72377,66924],[4,1],[6,-4]],[[72415,66895],[7,-11],[4,-8]],[[72426,66876],[5,-18],[4,-8]],[[72439,66844],[23,-18],[22,-10]],[[72493,66808],[5,-16],[2,-8],[0,-7]],[[72500,66777],[-1,-3],[2,-3]],[[74609,65614],[4,0],[6,-13]],[[74648,65586],[12,-15],[7,-10]],[[74671,65552],[0,-10],[-2,-18]],[[74669,65515],[2,-7],[7,-13]],[[74678,65495],[2,-8],[1,-10],[0,-9]],[[74668,65363],[-7,-18],[-4,-20]],[[74654,65274],[-1,-17],[2,-16]],[[74665,65214],[3,-4],[3,-3],[4,-4]],[[74675,65203],[5,-13],[4,-6]],[[75492,65424],[11,-5],[10,-11]],[[75513,65408],[4,-3],[1,0]],[[75627,65471],[4,-21],[4,-10]],[[75635,65440],[4,-4],[1,0]],[[75648,65461],[1,-9],[3,-7]],[[75769,65662],[2,2],[1,-3],[1,-4]],[[75773,65657],[1,-3],[5,0]],[[75920,65921],[7,-3],[4,-1]],[[75986,65932],[15,-4],[1,0]],[[76094,66020],[5,0],[4,-1],[1,0]],[[76120,66097],[10,-4],[7,-2]],[[76191,66193],[9,-1],[1,0]],[[76326,66203],[6,0],[1,0]],[[76376,66204],[4,-5],[5,-3]],[[76385,66196],[16,-7],[15,-15]],[[76421,66171],[20,-7],[3,-1]],[[76446,66160],[1,-4],[1,-5]],[[76448,66151],[0,-4],[3,-4]],[[76451,66143],[15,-3],[11,-8]],[[76477,66132],[5,-2],[11,-2]],[[76687,66358],[3,-11],[4,-8]],[[76698,66333],[7,-18],[3,-8]],[[76723,66253],[8,-9],[1,0]],[[76754,66206],[-30,-15],[-4,-4]],[[76717,66179],[-3,-8],[-3,-8]],[[76711,66163],[-5,-4],[-14,-8]],[[76702,66067],[8,-13],[1,0]],[[76793,66107],[-2,-7],[1,-6]],[[76808,66047],[3,-12],[15,-31]],[[76823,65959],[-32,-26],[0,-6]],[[76787,65894],[-6,-9],[-6,-5]],[[76759,65860],[-6,-10],[7,-20]],[[76750,65802],[-11,-11],[-7,-11]],[[76741,65776],[3,-6],[5,-3]],[[76749,65767],[8,3],[2,0],[3,-3]],[[76762,65767],[2,-9],[2,-3],[6,-5]],[[76905,65758],[10,-6],[10,-10],[9,-4],[0,1],[1,-1]],[[76995,65730],[2,-2],[1,0]],[[77034,65676],[1,-16],[-8,-33],[-2,-19],[4,-14],[13,-26],[2,-16],[-1,-8],[-5,-16],[-1,-9],[0,-12],[1,-7],[-2,-4],[-5,-5],[-6,-4],[-1,4],[0,7],[-3,7],[-5,1],[-5,-2],[-5,-5],[-4,-5],[-3,-10],[-5,-8],[-14,-23],[-2,-2],[-3,-2],[-2,-2],[-2,-8],[-2,-3],[-5,-4],[-2,-3],[-1,-6],[0,-7],[-1,-2],[-2,0],[-13,-7],[-4,-4],[-9,-21],[-5,-8],[-11,-14],[-5,-7],[-3,-10],[-3,-11],[0,-11],[2,-6],[3,-8],[1,-6],[0,-5],[1,-10],[1,-5],[0,-8],[-3,-16],[1,-11],[6,-20],[46,-106],[7,-14],[2,-5],[0,-10],[1,-5],[2,-4],[2,-3],[3,-3],[1,-6],[0,-4],[-3,-15],[-1,-3],[-4,-3],[-2,2],[-2,4],[-4,2],[-3,-1],[-5,-4],[-3,0],[-3,2],[-2,4],[-2,5],[-2,4],[-39,32],[-6,9],[0,9],[2,9],[3,11],[-2,5],[-9,13],[-3,7],[-6,18],[-3,7],[-5,6],[-10,8],[-5,3],[-5,0],[-3,-2],[-5,-9],[-3,-3],[-3,0],[-2,2],[-2,2],[-2,3],[-8,3],[-3,-5],[-2,-9],[-6,-12],[-4,-5],[-6,-3],[-6,-1],[-4,2],[-19,2],[-73,-23],[-19,-15],[-17,-22],[-11,-26],[-10,-35],[-6,-16],[-8,-14],[-8,-7],[-15,-5],[-8,-5],[-12,-27],[-7,-22],[-3,-6],[-3,-3],[-13,-3],[-4,-3],[-3,-7],[-3,-13],[-4,-12],[-4,-4],[-6,0],[-6,3],[-12,-6],[-7,-18],[-7,-24],[-8,-18],[-5,-6],[-21,-12],[-10,-9],[-5,-3],[-6,1],[-5,11],[-5,-1],[-2,-4],[-4,-11],[-3,-4],[-2,-2],[-7,-3],[-2,-2],[-3,-5],[-1,-5],[-1,-15],[0,-4],[0,-4],[-1,-6],[-3,-8],[-8,-17],[-5,-6],[-4,-11],[1,-9],[5,-18],[2,-11],[-1,-8],[-4,-19],[-2,-17],[0,-22],[1,-22],[4,-17],[2,-4],[2,-1],[2,-1],[2,-3],[1,-4],[-1,-4],[-2,-4],[-1,-5],[3,-37],[3,-6],[10,-6],[4,-7],[0,-11],[-3,-12],[-9,-19],[-12,-23],[-4,-5],[-10,-7],[-4,-6],[-1,-12],[-1,-10],[6,-58],[0,-12],[-1,-10],[-3,-3],[-6,-2],[-2,-2],[-3,-4],[-24,-67],[-1,-1],[-3,-3],[-2,-2],[0,-3],[3,-5],[-1,-3],[-2,-2],[-6,0],[-2,-2],[-4,-9],[-7,-21],[-5,-8],[-5,-2],[-10,-3],[-5,-3],[-9,-12],[-8,-15],[-7,-19],[-16,-82],[1,-23],[7,-17],[10,-7],[11,-4],[10,-9],[5,-16],[2,-23],[-2,-23],[-5,-17],[-4,-12],[-6,-47],[-4,-15],[-11,-27],[-2,-17],[0,-10],[-1,-10],[-2,-10],[-3,-7],[-4,-4],[-4,-1],[-3,0],[-4,-2],[-2,-9],[-6,-38],[-4,-12],[-12,-15],[-3,-6],[-2,-8],[-4,-28],[-5,-5],[-3,-5],[-2,-7],[0,-22],[-3,-6],[-3,-5],[-3,-6],[0,-3],[1,-10],[-1,-5],[-2,-4],[-5,-8],[-3,-5],[-1,-8],[-1,-19],[-1,-9],[-14,-59],[-3,-21],[-1,-20],[-1,-10],[-3,-6],[-1,-6],[-2,-21],[-1,-8],[-12,-31],[-3,-11],[0,-11],[0,-12],[-1,-12],[-4,-8],[-5,0],[-4,9],[-4,10],[-4,6],[-16,17],[-7,2],[-9,4],[-8,6],[-8,3],[-22,-5],[-6,5],[-11,28],[-9,6],[-14,3],[-13,-1],[-7,-8],[-1,-4],[-1,-5],[-1,-3],[-2,-3],[-2,-1],[-2,3],[-2,3],[-1,2],[-5,-3],[-9,-9],[-5,-1],[-6,1],[-2,5],[-1,7],[-1,8],[-9,17],[-3,7],[-8,22],[-6,6],[-7,-5],[-3,-9],[-2,-12],[-1,-14],[1,-12],[1,-10],[2,-9],[6,-18],[3,-5],[1,-3],[2,-4],[0,-9],[0,-20],[5,-64],[9,-11],[1,-6],[4,-10],[1,-6],[1,-18],[-9,-108],[0,-15],[1,-33],[1,-6],[0,-5],[-1,-5],[-6,-14],[-1,-9],[-1,-10],[1,-23],[-2,-38],[0,-8],[1,-7],[0,-7],[-12,-43],[-4,-10],[-5,-9],[-8,-7],[-7,0],[-6,8],[-3,11],[-5,8],[-5,3],[-7,-5],[-3,-10],[-1,-15],[1,-15],[3,-12],[5,-20],[2,-11],[-1,-11],[-4,-11],[-10,-22],[-2,-13],[-1,1],[-9,-15],[-3,-44],[1,-12],[2,-11],[7,-20],[1,-11],[0,-12],[-3,-22],[0,-13],[3,-18],[2,-9],[10,-20],[4,-23],[2,-65],[0,-5],[-1,-7],[-3,-3],[-2,-1],[-6,-5],[-2,1],[0,-1],[0,-7],[5,-17],[-6,-4],[-4,4],[-4,5],[-5,3],[-8,3],[-2,-1],[-4,-2],[0,-3],[0,-4],[0,-38],[1,-5],[-5,-4],[-4,-1],[-2,-4],[-5,-19],[-1,-7],[1,-7],[2,-7],[1,-4],[0,-4],[0,-4],[0,-4],[-1,-1],[0,-1],[-2,-2],[-2,-1],[-2,2],[-1,3],[-4,10],[-4,5],[-4,-3],[-3,-12],[-2,-16],[-3,-5],[-3,5],[-2,16],[-2,16],[-5,12],[-18,32],[-17,25],[-7,3],[-3,-4],[-1,-7],[1,-16],[0,-5],[-1,-2],[-2,1],[-2,-11],[0,-8],[1,-8],[0,-7],[-2,-8],[-3,-3],[-4,-1],[-3,-2],[-3,-7],[-2,-3],[-2,-3],[-2,-2],[-2,-2]],[[71620,69695],[6,-9],[8,-3]],[[70456,71861],[-1,-9],[-8,-39]],[[70447,71813],[-3,-16],[2,-16]],[[70453,71763],[11,-18],[3,-8]],[[70467,71737],[2,-19],[2,-8]],[[70507,71653],[0,-9],[-1,-9]],[[70483,71625],[-7,-4],[-4,-7],[-3,-9]],[[70469,71605],[-3,-10],[1,-10]],[[70467,71585],[3,-8],[9,-14]],[[70482,71555],[0,-11],[-1,-24]],[[70532,71409],[4,-4],[27,-2]],[[70611,71473],[5,-2],[1,0]],[[70648,71481],[39,-31],[47,-28],[5,-7],[5,-7]],[[70744,71408],[4,-7],[7,-1]],[[70775,71385],[2,-6],[2,-3],[5,-5],[2,-3],[1,-5]],[[70787,71363],[0,-5],[2,-16],[0,-11],[-1,-10]],[[70780,71140],[19,-18],[4,-15]],[[70802,71072],[0,-15],[0,-3],[1,-3]],[[70803,71051],[3,-3],[3,-4]],[[70808,71040],[-5,-12],[-2,-2],[-1,-2],[1,-8]],[[70801,71016],[1,-4],[2,-3],[15,-12]],[[70813,70951],[-1,-5],[-1,-5],[-3,-8]],[[70800,70907],[0,-3],[3,-16]],[[70809,70872],[8,-12],[26,-24]],[[70862,70800],[7,-13],[9,-10],[-13,-7]],[[70812,70697],[-4,-9],[-6,-3]],[[70847,95554],[-15,0]],[[58823,78944],[-32,-2],[-49,12],[-25,-1],[-22,-11],[-5,-9],[-5,-11],[-4,-9],[-7,-4],[-7,4],[-12,13],[-7,5],[-11,1],[-38,-2],[-7,-3],[-4,-6],[2,-9],[-2,-3],[-1,-3],[0,-3],[-1,-2],[8,-2],[3,-7],[-3,-7],[-7,-1],[-2,3],[-1,1],[-2,-1],[-2,-2],[-3,-3],[0,-4],[0,-3],[0,-2],[-3,-4],[-3,-4],[-3,-4],[-4,-3],[-8,-4],[0,-2],[0,-3],[2,-2],[0,-4],[-4,-7],[-2,-3],[-3,-2],[-8,1],[-2,-1],[-1,-3],[0,-5],[-1,-5],[-6,-4],[-2,-3],[-1,-4],[-1,-2],[-1,-2],[-6,-10],[-2,-4],[-1,-1],[0,-2],[2,-6],[0,-8],[-5,-7],[-6,-5],[-3,-4],[5,-4],[2,0],[0,-4],[-3,-5],[-1,-6],[0,-7],[-2,-5],[-3,-2],[-8,0],[-4,-2],[2,-7],[-3,-12],[1,-8],[-2,-2],[-2,-4],[-1,-1],[0,-3],[1,-5],[-3,-2],[-8,-9],[0,-4],[5,-6],[3,-2],[0,-3],[-3,-1],[-1,-1],[-1,-1],[-1,-1],[0,-4],[3,-5],[9,-3],[5,-3],[-2,-6],[-1,-3],[-3,-3],[4,-3],[2,-3],[2,-5],[-2,-4],[1,-7],[3,-4],[3,-2],[3,-2],[0,-4],[-4,1],[-3,-2],[-2,-3],[-1,-7],[1,-7],[2,-1],[3,-1],[4,-3],[1,-4],[2,-15],[2,-3],[2,-3],[0,-3],[-4,-2],[2,-16],[-8,-10],[-8,-8],[-1,-8],[-5,-11],[-1,-1],[0,-13],[-1,-4],[-3,-1],[-2,5],[-4,5],[-3,3],[-4,1],[-4,-1],[-4,2],[-6,12],[-4,5],[-4,1],[-9,0],[-4,2],[-4,4],[-8,14],[-2,6],[1,0],[2,12],[0,4],[1,6],[-1,4],[-1,4],[-1,4],[-4,4],[-14,9],[-4,5],[-10,18],[-8,7],[-8,3],[-39,-2],[-6,-2],[-17,-11],[-3,0],[-5,3],[-3,1],[-3,-3],[-5,-11],[-3,-4],[-5,-2],[-25,6],[-4,6],[-2,8],[-5,10],[-4,4],[-6,2],[-7,-2],[-5,-3],[-6,-6],[-4,-7],[-4,-7],[-7,-3],[-7,-1],[-4,-2],[-2,-7],[-4,-14],[-4,-9],[-6,0],[-12,7],[-7,-3],[-10,-12],[-6,-2],[-6,4],[-4,10],[-2,12],[-3,11],[-6,8],[-5,5],[-2,6],[3,14],[-1,15],[-3,9],[-10,18],[-5,20],[-4,7],[-7,5],[-11,3],[-5,0],[-6,-3],[-5,-6],[-7,-18],[-5,-7],[-8,-4],[-17,0],[-8,-2],[-9,-6],[-9,-9],[-7,-11],[-6,-16],[-1,-9],[1,-21],[-1,-8],[-5,-8],[-3,6],[-2,11],[-2,6],[-4,1],[-3,-3],[-4,-2],[-5,2],[-3,6],[-2,8],[-4,31],[-1,12],[-2,7],[-7,4],[-25,6],[-8,0],[-7,-3],[-14,-12],[-7,-8],[-3,-3],[-4,2],[-2,5],[-3,15],[-1,6],[-4,4],[-8,7],[-3,4],[-2,6],[-1,5],[0,5],[-1,5],[-4,6],[-5,1],[-7,-4],[-6,-7],[-5,-10],[-9,-22],[-7,-7],[-5,-3],[-27,0],[-5,2],[-6,4],[-16,22],[-6,4],[-7,-1],[-5,-6],[-3,-9],[-2,-12],[0,-7],[1,-6],[0,-6],[-1,-7],[-2,-4],[-13,-22],[-3,-3],[-4,-1],[-4,2],[-5,5],[-3,5],[-2,4],[9,28],[2,14],[-3,12],[-5,3],[-15,1],[-30,15],[-10,0],[-5,-3],[-8,-11],[-6,-4],[-6,0],[-16,3],[-11,-4],[-6,-1],[-4,4],[2,10],[4,12],[1,9],[-9,3],[-6,-1],[-6,1],[-4,4],[-2,11],[0,15],[1,12],[-2,9],[-8,5],[-1,0],[-10,3],[-25,1],[-28,-12],[-18,4],[-52,29],[-62,2],[-3,3],[-4,6],[0,5],[0,5],[0,4],[-3,2],[-65,3],[-8,5],[-18,20],[-8,2],[-20,-1],[-59,14],[-23,-5],[-89,1],[-3,0],[-47,16],[-13,0],[-12,-5],[-25,-17],[-58,-11],[-20,-4],[-6,0],[-17,5],[-69,-7],[-6,-2],[-6,-8],[-3,-6],[-7,-13],[-5,-10],[-6,-37],[-8,-13],[-32,-27],[-41,-47],[-11,-2],[-1,1],[-7,8],[-8,12],[-11,5],[-7,1],[-19,8],[-7,0],[-9,-3],[-18,-6],[-3,-2],[-3,-4],[-4,-7],[0,-5],[2,-4],[7,-27],[1,-5],[-1,-9],[-3,-1],[-2,2]],[[56557,78620],[-1,7],[-4,3],[-5,2],[-3,9],[2,0],[2,0],[-6,13],[-3,8],[-1,8],[2,15],[-1,5],[-3,4],[0,5],[3,0],[1,1],[4,6],[-1,2],[-2,4],[-1,4],[1,1],[3,2],[-1,3],[-2,4],[-1,3],[2,13],[1,6],[1,4],[5,6],[6,5],[5,6],[3,13],[-5,9],[-4,10],[3,5],[1,12],[3,2],[0,3],[-1,0],[-1,1],[2,6],[0,18],[2,10],[5,16],[4,7],[4,4],[-3,9],[-4,21],[-2,7],[0,7],[-2,6],[-3,3],[-3,1],[-1,4],[-2,4],[-1,5],[-6,4],[-13,-1],[-5,2],[-8,19],[1,2],[1,7],[-1,4],[-5,-6],[-2,3],[-2,3],[-1,2],[-4,-5],[-3,0],[-2,3],[-4,2],[-4,-2],[-1,1],[2,6],[0,3],[-6,1],[-17,8],[-3,4],[-5,-2],[-20,7],[-6,5],[2,10],[-1,7],[-3,5],[-4,5],[-1,0],[13,32],[5,10],[12,17],[33,63],[25,25],[24,18],[47,16],[37,30],[11,17],[4,24],[-3,84],[-1,4],[-1,3],[-1,3],[0,6],[0,4],[4,8],[0,3],[0,5],[-2,15],[0,4],[1,6],[-1,5],[-3,8],[-9,13],[-2,9],[0,11],[3,8],[3,7],[3,8],[1,13],[-3,7],[-5,4],[-5,7],[-3,8],[-3,8],[-2,8],[-5,8],[-5,16],[-11,53],[-6,17],[-13,33],[-23,86],[-7,39],[-1,34],[-7,12],[-2,11],[-3,30],[-3,14],[-4,13],[-2,13],[-1,16]],[[56523,79965],[10,-2],[25,-18],[5,-2],[4,0],[14,7],[17,3],[5,4],[4,2],[2,0],[5,-4],[2,-1],[2,1],[22,14],[4,1],[35,-9],[8,2],[17,11],[9,2],[9,-3],[8,-11],[5,-16],[3,-6],[5,-1],[9,1],[9,-4],[10,0],[10,6],[32,34],[14,10],[18,4],[6,6],[1,0],[1,0],[1,-1],[4,-11],[4,-5],[5,0],[18,3],[5,3],[4,10],[0,15],[-2,11],[-4,9],[-3,12],[-1,9],[0,2],[2,0],[2,4],[5,3],[1,3],[-1,3],[0,4],[1,4],[10,7],[13,1],[13,-2],[21,-10],[13,3],[12,9],[11,15],[5,11],[6,27],[3,7],[5,1],[18,-8],[23,2],[6,5],[12,19],[7,4],[3,-1],[2,-2],[1,-3],[20,-31],[-3,-2],[-6,0],[-6,-4],[0,-5],[6,-4],[2,-5],[-2,-4],[-8,-3],[-2,-4],[2,-10],[6,-7],[8,-5],[24,-5],[6,1],[3,2],[5,7],[3,2],[10,-2],[3,0],[7,6],[2,9],[0,25],[1,3],[3,5],[1,2],[-1,4],[-1,1],[-1,1],[-2,1],[-1,7],[-3,5],[-2,4],[-3,3],[-1,1],[-3,-2],[-1,1],[-1,2],[-3,10],[-1,5],[-2,5],[-4,2],[-4,-1],[-16,-10],[-12,-1],[-6,2],[-4,8],[0,13],[5,12],[13,18],[5,13],[1,10],[0,12],[1,14],[3,12],[4,6],[17,12],[6,6],[4,9],[1,11],[-2,11],[-6,20],[-2,11],[0,7],[1,5],[2,5],[1,6],[0,6],[-1,28],[1,8],[3,5],[6,6],[3,1],[2,1],[1,1],[1,4],[0,5],[-2,11],[-1,5],[3,10],[6,7],[6,6],[6,8],[2,5],[0,5],[1,5],[4,3],[10,5],[5,0],[10,-3],[5,0],[34,8],[10,6],[4,6],[10,17],[10,25],[1,5],[1,7],[0,13],[0,7],[9,16],[13,2],[30,-9],[3,0],[3,1],[1,2],[2,3],[2,3],[4,1],[30,-15],[6,1],[4,8],[3,16],[2,16],[2,5],[4,7],[8,9],[4,3],[18,6],[7,6],[3,9],[-2,9],[-7,6],[-46,9],[-17,-5],[-4,0],[-17,7],[-4,3],[-2,6],[3,11],[7,14],[2,5],[3,21],[3,6],[10,11],[0,7],[-5,11],[2,14],[5,10],[7,9],[5,9],[3,13],[0,14],[-1,15],[-2,13],[6,12],[7,4],[7,-1],[15,-6],[6,0],[22,13],[6,7],[16,33],[16,23],[6,4],[36,5],[12,-2],[6,-4],[17,-16],[8,-5],[5,3],[13,14],[6,8],[7,-10],[8,-5],[9,-4],[35,-3],[8,1],[3,9],[2,11],[2,27],[8,24],[27,21],[9,18],[1,13],[9,10],[19,17],[3,7],[3,7],[3,6],[4,5],[3,2],[12,3],[12,6],[12,10],[12,5],[11,-8]],[[56324,80197],[-19,-7],[-53,3],[-64,4],[-78,5],[-77,5],[-120,7],[-100,6],[-80,5],[-80,5],[-33,2],[-53,4],[-22,1],[-73,4],[-6,1],[-14,5],[-4,4],[-1,2],[0,1],[-1,11],[-62,81]],[[55384,80346],[9,6],[26,32],[15,34],[4,29],[-4,52],[2,26],[12,45],[20,36],[25,26],[30,14],[32,4],[11,0],[6,-1],[61,-1],[16,6],[22,26],[44,69],[21,43],[76,-80],[18,-6],[61,-17],[10,2],[6,2],[23,22],[7,1],[8,-10],[18,-34],[10,-9],[28,-1],[8,-5],[3,-2],[20,-17],[5,-8],[4,-4],[20,-5],[9,-9],[5,-5],[10,-2],[7,-6],[3,-1],[2,1],[7,7],[8,1],[3,-3],[1,-6],[0,-9],[2,-10],[6,-6],[8,-2],[6,0],[6,5],[3,5],[3,4],[30,9],[52,-7],[29,10],[7,-5],[4,-5],[3,-11],[5,-25],[3,-13],[4,-7],[4,-2],[16,0],[2,-1],[2,-3],[2,-3],[3,-4],[4,-2],[-4,-7],[3,-4],[16,-9],[4,-5],[2,-7],[4,-22],[1,-11],[0,-10],[-4,-9],[-4,-5],[-9,-8],[-4,-7],[-2,-3],[-5,-3],[-3,-3],[-2,-1],[-1,-1],[-1,-3],[1,-2],[1,-3],[0,-2],[-7,-10],[-1,-4],[0,-6],[2,-13],[0,-6],[-1,-10],[-6,-26],[-2,-43],[2,-22],[7,-19],[17,-35]],[[57717,83632],[0,1],[0,-1]],[[57785,83040],[3,-6],[12,-7]],[[56523,79965],[1,4],[1,3],[-1,3],[-2,2],[-3,3],[-2,4],[-1,5],[0,6],[1,2],[2,3],[3,3],[4,8],[0,13],[-4,26],[-2,12],[-3,12],[-4,11],[-4,8],[-3,2],[-6,2],[-3,2],[-2,5],[-5,11],[-3,5],[-11,10],[-22,10],[-11,8],[-17,17],[-5,3],[-6,-2],[-6,-3],[-7,0],[-5,8],[0,6],[2,6],[1,6],[-2,3],[-9,1],[-3,3],[-2,3],[-1,4],[-2,5],[-3,3],[-3,1],[-6,-2],[-3,1],[-17,10],[-6,1],[-7,-4],[-7,-16],[-5,-5]],[[55384,80346],[-19,25],[8,81],[-39,148],[-39,147],[-17,152],[-16,151],[28,18],[14,67],[71,226],[18,74],[24,72],[47,141],[61,150],[40,116],[8,65],[97,194],[-12,159],[20,158],[11,201],[-45,166],[-45,167],[-113,157],[-113,156],[0,1],[-73,100],[20,99],[22,172],[17,225],[16,224],[16,225],[16,225],[16,224],[81,118],[81,117],[81,117],[83,85],[92,33],[131,67],[96,135],[96,136],[97,135],[103,144],[103,144],[103,145],[102,144],[27,39],[15,39],[7,23],[0,17],[-4,12],[0,4],[3,8],[0,3],[-22,32],[11,21],[3,4],[0,1],[-1,4],[3,-2],[-2,6],[0,4],[0,10],[-11,16],[-6,22],[-8,11],[-6,11],[1,12],[0,9],[-8,27],[-2,8],[-3,4],[-7,6],[-3,3],[-2,5],[-15,37],[-7,7],[-28,9],[-10,7],[-7,10],[-10,28],[-3,14],[-4,12],[-1,7],[1,5],[2,7],[1,6],[0,8],[-1,10],[0,7],[-2,6],[-5,10],[-1,7],[3,13],[6,8],[9,5],[6,2],[0,9],[7,5],[9,4],[5,5],[1,6],[15,9],[5,5],[3,8],[0,10],[-1,10],[-2,10],[3,9],[2,10],[1,11],[0,12],[-3,20],[0,4],[9,12],[4,10],[6,2],[7,-1],[4,2],[1,5],[-1,4],[-11,28],[-7,15],[-6,8],[-11,11],[-16,29],[-7,7],[-8,3],[-5,4],[-7,9],[-10,18],[-2,5],[-1,4],[0,5],[0,7],[-1,6],[-3,3],[-3,3],[-7,11],[-6,6],[-5,7],[-2,11],[3,5],[3,5],[3,6],[2,7],[-5,2],[-1,4],[1,11],[2,9],[5,5],[32,11],[7,10],[7,17],[-10,5],[0,13],[3,15],[1,13],[-4,4],[-6,2],[-19,3],[-18,9],[-12,-1],[-11,-4],[-10,0],[-9,9],[-4,14],[4,11],[6,10],[5,11],[-3,7],[7,6],[10,6],[5,5],[-1,14],[-2,8],[-7,15],[-2,9],[-3,22],[-3,9],[-1,7],[0,33],[-1,11],[-1,14],[1,13],[5,9],[9,7],[20,5],[9,6],[7,11],[0,9],[-5,7],[-19,6],[-25,24],[-8,4],[-20,15],[-3,5],[-1,5],[-11,33],[-3,6],[-3,4],[-10,-1],[-24,-12],[-6,0],[-2,3],[-1,0],[0,1],[-1,5],[0,3],[1,5],[2,14],[-1,5],[-2,4],[1,13],[-4,9],[-12,12],[-4,5],[-1,5],[-1,5],[-2,4],[-4,5],[-41,21],[-8,8],[-12,19],[-7,5],[-16,-5],[-9,7],[-8,10],[-7,6],[-6,0],[-5,-1],[-5,0],[-11,6],[-13,1],[-17,8],[-22,1],[-2,1],[1,6],[-1,1],[-19,4],[-64,1],[-10,6],[0,3],[0,4],[0,3],[-2,2],[-2,0],[-3,4],[-4,5],[-8,8],[-1,4],[-13,12],[-50,11],[-6,17],[-15,8],[-25,19],[-21,4],[-9,6],[-4,6],[-8,17],[-2,6],[-2,6],[-6,3],[-20,0],[-2,1],[-2,2],[-2,5],[-1,1],[-4,3],[-16,23],[-18,14],[-22,15],[-46,14],[-6,7],[1,11],[8,3],[5,9],[0,10],[-7,8],[-13,3],[-19,14],[-33,4],[-15,10],[26,34],[8,3],[80,-35],[11,-2],[7,4],[16,24],[-34,52],[8,19],[5,8],[5,6],[60,28],[90,-11],[7,-4],[100,-140],[38,-31],[4,-7],[4,-14],[3,-5],[22,-29],[22,-13],[4,-6],[7,-51],[3,-10],[6,-2],[31,9],[8,1],[7,-2],[71,-27],[47,6],[14,-3],[8,-6],[21,-27],[6,-2],[79,38],[45,5],[25,11],[10,23],[5,24],[18,10],[21,-1],[57,-22],[9,-12],[6,-5],[41,-20],[41,-11],[50,-13],[26,-16],[21,-24],[8,-17],[5,-5],[8,1],[6,8],[3,10],[4,9],[8,6],[7,-1],[18,10],[7,1],[6,2],[4,6],[3,11],[-3,5],[0,3],[1,3],[2,5],[0,25],[1,13],[4,11],[11,15],[51,35],[13,5],[14,2],[33,-9],[7,2],[7,5],[4,7],[3,9],[5,7],[9,9],[3,6],[1,7],[3,7],[12,9],[2,7],[-1,4],[-2,3],[-5,4],[-2,2],[-1,3],[1,2],[-1,3],[-4,8],[0,4],[2,5],[1,4],[0,18],[1,3],[1,2],[1,2],[0,5],[-1,3],[-3,10],[-2,3],[-4,15],[1,15],[10,44],[3,8],[26,32],[-2,5],[-8,22],[6,12],[4,4],[2,4],[0,14],[2,6],[4,6],[-2,4],[-3,3],[-1,4],[4,6],[17,9],[7,10],[5,12],[0,13],[-7,12],[-4,5],[-1,6],[2,6],[4,6],[6,8],[8,4],[41,9],[5,2],[3,4],[4,5],[12,15],[14,20],[28,23],[8,11],[-3,10],[3,4],[9,10],[6,11],[9,3],[48,6],[18,-4],[26,6],[9,-2],[15,-8],[8,1],[8,0],[20,-11],[5,-1],[59,16],[11,11],[-2,1],[-4,3],[-2,2],[3,5],[4,1],[5,0],[4,2],[18,16],[33,11],[2,10],[12,11],[14,4],[36,-5],[20,9],[9,-3],[8,-9],[15,-25],[52,-64],[6,-4],[53,-17],[0,-19],[7,-11],[10,-6],[11,-3],[90,-31],[90,-31],[5,-6],[15,-43],[40,-68],[-32,-48],[-102,-89],[-3,-7],[-2,-13],[-5,-41],[0,-9],[3,-6],[32,-29]],[[56732,86567],[1,0],[-1,0]],[[60615,76167],[0,1],[-1,-5],[-80,-100],[-79,-100],[0,-2]],[[60170,74962],[-5,-15],[7,1]],[[62434,70634],[-3,9],[-6,5],[-29,6],[-5,0],[-9,-7],[-11,-12],[-10,-15],[-6,-14],[-7,-9],[-7,-6],[-24,-13],[-2,-6],[-1,-9],[-5,-11],[-2,-10],[-3,-4],[-3,0],[-12,5],[-2,3],[-2,6],[-11,40],[-2,12],[0,11],[2,12],[5,9],[3,4],[4,1],[2,2],[3,6],[0,6],[0,6],[-2,13],[-2,12],[-3,10],[-5,7],[-6,7],[-27,18],[-14,4],[-13,-4],[-10,-13],[-8,-20],[-9,-15],[-15,-5],[-5,-8],[-3,-1],[-2,2],[-6,9],[-3,3],[-7,3],[-7,1],[-20,-2],[-8,-1],[-7,1],[-7,5],[-5,6],[-2,2],[-4,1],[-3,-1],[-7,-4],[-4,-1],[-4,3],[-13,17],[-12,9],[-11,14],[-3,1],[-5,-1],[-3,-2],[-2,-4],[-3,-1],[-2,0],[-2,1],[-36,32],[-5,2],[-9,-1],[-11,-5],[-11,-7],[-7,-9],[-12,-6],[-11,2],[-23,13],[-2,2],[-1,10],[-3,3],[-3,0],[-3,0],[-13,-9],[-2,-2],[-2,-4],[0,-4],[-1,-4],[-1,-4],[-35,-82],[-3,-15],[-1,-3],[-4,-3],[-24,-6],[-16,-9],[-13,-2],[2,-7],[2,-5],[2,-7],[0,-8],[-9,-10],[-18,-27],[-28,-50],[-56,-95],[-37,-64],[-8,-11],[-7,-5],[-86,-30],[-18,-5],[-9,-6],[-5,-12],[-25,-78],[-2,-14],[-9,-140],[0,-9],[1,-10],[7,-27],[22,-76],[3,-18],[1,-18],[1,-76],[-1,-18],[-5,-16],[-22,-56],[-3,-16],[-2,-55],[-12,-68],[-2,-34],[1,-105],[3,-97],[-1,-14],[-2,-14],[-48,-152],[-10,-37],[-6,-15],[-8,-8],[-69,-31],[-40,-40],[-31,-31],[-31,-31],[-31,-31],[-30,-31],[-31,-30],[-31,-31],[-30,-31],[-31,-31],[-31,-30],[-31,-31],[-30,-31],[-31,-31],[-31,-31],[-30,-30],[-31,-31],[-31,-31],[22,-134],[12,-75],[22,-139],[23,-138],[-22,-11],[0,-1],[0,-1],[0,-1],[14,-79],[2,-9],[3,-3],[52,25],[6,-6],[4,-17],[6,-37],[-7,-18],[-34,-48],[0,-4],[-2,-2],[-6,-7],[-33,-53],[-9,-7],[-32,-16],[-62,-30],[-3,-2],[-60,-29],[-62,-31],[-63,-31],[-69,-35],[-68,-35],[-69,-35],[-69,-36],[36,-67],[36,-67],[36,-67],[37,-67],[0,-2],[1,-2],[1,-2],[1,-2],[31,-61],[30,-62],[31,-62],[30,-62],[14,-28],[-1,0],[-1,-2],[-21,-20],[-33,-33],[-30,-29],[-7,-9],[-4,-10],[-8,-35],[-10,-42],[-9,-39],[-12,-52],[-6,-9],[-33,-12],[-37,-13],[-40,-15],[-40,-14],[-24,-9],[-24,-9],[-8,-6],[-7,-13],[-15,-45],[-13,-38],[-17,-51],[-18,-53],[-21,-31],[-33,-46],[-29,-43],[-30,-43],[-7,-6],[-8,0],[-29,9],[-32,9],[-49,15],[-41,13],[-38,11],[-44,13],[-33,10],[-24,8],[-20,8],[-14,-62],[-20,-85],[-25,-242],[-42,-246],[-24,-167],[1,-26],[24,-24],[26,1],[13,12],[8,28],[-3,38],[10,21],[13,-14],[18,-2],[27,6],[15,14],[15,-3],[18,-46],[20,-22],[16,-36],[9,-43],[16,-24],[8,-35],[14,-34],[3,-38],[17,-61],[62,-122],[1,-33],[13,-47],[56,-116],[18,-72],[36,-70],[40,-144],[39,-143],[15,-30],[33,-16],[-5,-13],[-17,-10],[-16,-32],[-6,-30],[-1,-44],[-14,-44],[7,-52],[22,-35],[16,-2],[36,-27],[12,-39],[36,-58],[14,-3],[20,25],[6,-4],[12,-39],[30,-60],[0,-51],[6,-37],[-4,-19],[-14,-2],[-11,-17],[-5,-24],[1,-26],[9,-32],[43,-95],[31,-94],[2,-42],[20,-54],[4,-7],[16,-23],[0,-2],[0,-248],[0,-248],[0,-247],[0,-248],[0,-247]],[[60420,62199],[-93,2],[-94,2]],[[60233,62203],[5,4]],[[60238,62207],[4,1],[1,1],[1,2],[1,8],[-65,0],[-65,1]],[[60115,62220],[-64,0],[-65,0],[-65,0],[-64,0],[-65,0],[-64,0],[-65,0],[-65,0],[-64,0],[-65,0],[-65,0],[-64,0],[-65,0],[-64,0],[-29,0],[-28,0],[-29,0],[-28,0],[-29,0],[-28,0],[-29,0],[-28,0],[-28,0],[-29,0],[-28,0],[-29,0],[-28,0],[-29,0],[-28,0],[-28,0],[-24,0]],[[58732,62220],[8,49],[7,36],[0,13]],[[58747,62318],[-2,13],[-6,11],[-6,5],[-5,1]],[[58728,62348],[-5,-2],[-5,-5]],[[58718,62341],[-8,-14],[-13,-52]],[[58697,62275],[-14,-52]],[[58683,62223],[-3,-4],[-11,0],[-27,0],[-27,0]],[[58615,62219],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-28,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-28,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0]],[[57236,62219],[-27,1],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[-27,0],[0,-1]],[[56939,62219],[0,-69],[0,-69],[0,-69],[0,-1],[0,-68],[0,-1],[0,-68]],[[56939,61874],[0,-70]],[[56939,61804],[0,-69],[0,-69],[0,-1],[0,-68]],[[56939,61597],[0,-70]],[[56939,61527],[0,-69],[0,-69]],[[56939,61389],[0,-53]],[[56939,61336],[0,-53],[0,-52]],[[56939,61231],[0,-53],[0,-1]],[[56939,61177],[0,-65],[-1,-1],[0,-1]],[[56938,61110],[-1,-1],[-1,0],[0,-1]],[[56936,61108],[-1,0],[-28,0],[-40,0],[-34,0],[-35,0],[-37,0],[-32,0]],[[56729,61108],[-23,1],[-45,0],[0,-1]],[[56661,61108],[0,-69],[0,-69],[0,-1],[0,-68],[0,-1],[0,-69]],[[56661,60831],[-34,33],[-35,34],[-34,34],[-34,34],[-35,34],[-34,34],[-34,34],[-35,34],[-34,34],[-34,33],[-34,34],[-35,34],[-34,34],[-34,34],[-35,34],[-34,34],[-34,34],[-35,33],[-34,34],[-34,34],[-35,34],[-34,34],[-34,34],[-34,34],[-35,34],[-34,34],[-34,33],[-35,34],[-34,34],[-34,34],[-35,34],[-34,34],[-34,34],[-35,34],[-34,34],[-34,33],[-35,34],[-34,34],[-34,34],[-34,34],[-35,34],[-34,34],[-34,34],[-35,34],[-34,33],[-34,34],[-35,34],[-34,34],[-34,34],[-14,13],[-21,21],[-34,34],[-34,34],[-34,33],[-35,34],[-34,34],[-34,34],[-35,34],[-34,34],[-34,34],[-35,34],[-34,34],[-34,33],[-35,34],[-34,34],[-25,25],[-6,-1],[-12,-11],[-16,-15],[-16,-14],[-16,-15],[-16,-14],[-16,-15],[-16,-15],[-16,-14],[-16,-15],[-16,-14],[-16,-15],[-16,-14],[-16,-15],[-17,-14],[-15,-15],[-16,-14],[-17,-15],[-4,-4],[-1,0],[-47,-48],[-48,-48],[-47,-48],[-48,-48],[-17,-18],[-5,-1],[-4,4],[-12,21],[-35,57],[-35,57],[-34,57],[-35,57],[-16,26],[-32,34],[-29,13],[-24,11],[-25,10],[-24,11],[-25,11],[-24,11],[-25,11],[-24,11],[-25,11],[-24,11],[-25,11],[-24,11],[-25,11],[-24,11],[-25,11],[-24,11],[-25,11],[-21,79],[-20,72],[-31,118],[-20,75],[-19,72],[-8,17],[-9,9],[-99,60],[-67,40],[-53,33],[-6,2],[-6,-2],[-30,-20],[-33,-22],[-11,-2],[-5,3],[-36,54],[-5,10],[-4,20],[-5,51],[-5,15],[-41,45],[-4,14],[0,78],[-2,78],[-1,73],[-3,35],[-11,36],[-43,107],[-34,86],[-3,10],[-39,97],[-39,99],[-7,31],[7,26],[4,9],[5,22],[10,16],[2,8],[1,10],[1,11],[98,84],[5,11],[11,71],[0,12],[-3,16],[0,19],[7,59],[-1,8],[-4,7],[-12,12],[-3,5],[-3,11],[-6,58],[-23,149],[0,9],[1,9],[5,22],[4,32],[4,12],[12,24],[2,10],[-3,12],[-4,12],[-1,12],[7,9],[8,7],[4,11],[20,116],[0,22],[-40,190],[-4,33],[11,144],[10,144],[-1,105],[-6,85],[-22,133],[-22,133],[-33,108],[-35,93],[-31,64],[-7,18],[65,62],[62,57],[8,4],[20,2],[8,7],[34,78],[29,81],[26,50],[17,62],[4,22],[0,19],[-7,39],[-1,19],[2,22],[-1,10],[-8,32],[-9,58],[-21,95],[0,10],[3,36],[4,13],[18,34],[19,57],[14,19],[31,0],[15,10],[5,6],[4,7],[3,8],[5,20],[12,18],[3,19],[3,44],[6,12],[5,-1],[5,-5],[5,-4],[6,3],[9,13],[10,11],[9,15],[11,44],[8,14],[79,64],[79,65],[20,22],[9,14],[5,18],[-1,23],[-7,20],[-18,31],[-6,22],[0,30],[4,59],[-2,57],[5,38],[0,31],[1,9],[8,52],[-1,25],[6,-2],[6,48],[14,64],[3,-2],[85,-53],[63,-64],[63,-64],[49,-20],[64,-1],[31,12],[68,49],[26,5],[29,-5],[35,-18],[52,-43],[63,-6],[111,-50],[34,-33],[56,-79],[31,-8],[28,-22],[74,-12],[57,-28],[37,-42],[27,-58],[28,-104],[3,-123],[14,-95],[24,-81],[31,-54],[61,-45],[67,-30],[35,-8],[77,2],[55,-17],[71,-33],[71,-33],[42,-38],[95,-54],[40,-43],[73,-53],[58,-90],[59,-89],[78,-77],[24,-6],[25,9],[86,81],[46,80],[53,127],[6,46],[-1,42],[-28,81],[-21,99],[-10,72],[-4,81],[4,81],[12,79],[21,84],[24,64],[77,138],[84,103],[70,60],[71,59],[22,8],[48,-7],[18,4],[59,76],[22,16],[24,8],[25,-3],[44,-21],[54,21],[22,-2],[39,-32],[27,-14],[0,248],[0,248],[0,248],[0,248],[1,248],[0,248],[0,248],[-5,1],[-18,16],[-47,68],[-16,38],[-7,41],[2,74],[-46,-52],[-24,-13],[-22,-5],[-21,5],[-21,14],[-22,23],[-16,27],[-13,43],[-4,96],[-24,70],[-8,55],[1,72],[7,32],[17,43],[-4,24],[-14,14],[-39,15],[-28,31],[-80,-33],[-21,4],[-20,16],[-43,62],[-31,67],[-10,46],[0,76],[-39,29],[-27,48],[-10,62],[7,83],[18,74],[29,44],[12,131],[14,52],[19,44],[-22,36],[-21,-18],[-24,-7],[-26,4],[-22,14],[-18,23],[-15,31],[-9,29],[-4,37],[-28,20],[-22,33],[-36,89],[-37,75],[-15,53],[0,35],[6,34],[16,40],[58,-18],[2,-1],[85,-30],[-3,-42],[-2,-26],[8,-21],[4,18],[1,0],[5,5],[9,-5],[11,-6],[13,-10],[8,-11],[5,-4],[5,2],[1,2],[-1,5],[1,4],[2,4],[2,1],[3,0],[2,-1],[2,-3],[1,12],[4,7],[6,4],[3,7],[1,7],[-1,2],[-1,3],[-1,5],[-1,1],[-2,4],[0,2],[0,2],[2,7],[0,2],[-1,5],[-1,2],[-1,2],[2,5],[2,1],[3,-1],[11,-6],[5,-5],[4,0],[5,7],[2,11],[-1,10],[-13,33],[-6,10],[-2,3],[-4,34],[-1,4],[3,2],[14,1],[5,1],[1,10],[2,10],[3,9],[4,6],[5,4],[9,-2],[5,4],[5,2],[15,-3],[7,1],[17,13],[2,2],[1,4],[4,18],[1,2],[-2,11],[0,2],[-1,6],[0,4],[2,3],[4,2],[1,2],[4,13],[0,11],[-1,11],[1,13],[2,6],[3,3],[3,2],[3,3],[5,20],[3,8],[1,5],[1,7],[0,6],[-1,15],[0,5],[3,4],[5,2],[3,2],[2,6],[1,5],[2,5],[3,4],[8,0],[6,-5],[6,-2],[7,7],[3,6],[1,3],[1,3],[-1,7],[2,5],[3,3],[4,1],[2,6],[2,3],[3,2],[2,3],[1,6],[0,4],[1,5],[0,6],[3,20],[1,10],[0,11],[-2,10],[-3,7],[-7,14],[-8,11],[-2,5],[0,4],[-1,4],[-3,4],[5,8],[2,12],[-1,26],[41,3],[20,9],[7,-1],[14,-4],[10,0],[9,3],[5,4],[10,15],[6,4],[7,0],[22,-4],[13,-17],[7,-2],[3,2],[6,10],[3,3],[2,1],[4,-1],[1,1],[1,3],[1,7],[0,3],[8,5],[15,-5],[7,3],[4,5],[1,7],[0,6],[1,4],[2,5],[11,11],[0,1],[4,10],[9,14],[4,9],[1,4],[0,11],[1,5],[2,4],[7,8],[9,7],[18,8],[1,2],[3,4],[1,1],[2,-1],[1,-2],[0,-3],[1,-2],[9,-7],[2,-1],[6,3],[10,13],[6,5],[7,1],[5,-1],[11,-5],[8,-2],[3,-1],[0,-2],[1,-8],[2,-2],[2,2],[6,1],[7,2],[3,-1],[3,-2],[6,-5],[3,-2],[8,-1],[4,1],[4,1],[6,3],[4,0],[9,-2],[6,0],[6,4],[4,6],[5,9],[1,4],[-1,5],[1,4],[5,2],[3,-1],[1,-3],[2,-5],[2,-4],[5,-7],[3,-2],[3,3],[4,11],[2,22],[1,44],[3,17],[9,11],[12,3],[25,-2],[7,7],[1,11],[-1,11],[-1,12],[1,4],[3,6],[1,2],[-1,3],[-1,6],[-1,3],[0,47],[1,9],[0,4],[-1,3],[-2,7],[-1,3],[0,7],[0,8],[1,8],[1,6],[1,2],[5,2],[1,2],[1,2],[2,8],[6,15],[3,13],[0,13],[-5,12],[-3,2],[-7,0],[-3,2],[-1,5],[-6,20],[-3,19],[-2,7],[-1,2],[-4,3],[-1,2],[0,4],[0,8],[-1,4],[-3,13],[-2,13],[0,13],[-1,6],[-2,6],[0,7],[-1,5],[-2,2],[-3,4],[-1,0],[-5,-3],[-1,0],[-3,3],[-1,4],[0,3],[-1,3],[-3,0],[-13,-1],[-2,1],[-1,3],[-1,2],[-1,2],[-9,2],[-16,13],[-24,25],[-6,9],[-4,11],[-4,16],[-10,12],[-28,55],[1,0],[5,4],[11,0],[5,3],[1,1],[3,7],[5,20],[4,8],[1,1],[3,2],[2,1],[2,0],[3,4],[3,8],[4,21],[1,11],[-1,7],[0,2],[-1,3],[-2,5],[-3,6],[-9,9],[-14,20],[-1,1],[1,9],[0,2],[0,3],[4,25],[1,14],[-2,7],[2,5],[6,16],[3,5],[1,2],[0,1],[0,2],[-1,2],[-2,2],[-2,2],[-4,9],[-6,23],[-1,2],[0,1],[0,2],[3,6],[2,3],[7,5],[3,4],[5,10],[1,1],[1,2],[3,0],[1,0],[4,-1],[1,0],[2,2],[1,2],[0,1],[4,4],[8,1],[6,-2],[15,-6],[6,2],[2,1],[5,3],[3,2],[3,5],[1,1],[0,3],[2,4],[4,23],[1,4],[0,1],[1,6],[2,5],[4,3],[7,2],[4,2],[0,1],[4,7],[11,17],[2,4],[2,9],[0,1],[0,1],[1,3],[2,3],[5,3],[1,1],[1,2],[5,9],[1,3],[5,19],[3,18],[-1,14],[-1,1],[-4,2],[-12,4],[-1,0],[-5,5],[-1,1],[-3,4],[-3,7],[-4,8],[-6,8],[-1,2],[-2,4],[-1,4],[0,10],[-1,3],[0,1],[-2,4],[-2,4],[-20,29],[-4,4],[-4,3],[-3,1],[-5,-1],[-1,1],[-2,1],[-2,3],[-1,2],[-2,8],[-2,3],[-3,1],[-6,-1],[-2,1],[-1,1],[-2,3],[-1,1],[-3,6],[-2,3],[-7,5],[-2,1],[-4,6],[-3,10],[-5,27],[-2,5],[-1,5],[-1,2],[0,1],[1,2],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,2],[0,2],[1,2],[0,1],[-2,6],[0,1],[0,5],[0,8],[0,1],[-2,6],[-1,1],[-2,3],[-4,3],[-4,3],[-1,2],[-2,3],[-2,4],[-1,2],[-2,7],[-1,4],[-1,3],[-1,7],[0,5],[1,9],[-1,4],[-7,13],[-3,15],[1,8],[0,4],[1,4],[3,9],[2,17],[0,3],[1,14],[1,3],[2,7],[1,2],[1,9],[0,16],[0,3],[1,4],[3,7],[0,1],[6,3],[4,1],[9,2],[6,1],[2,3],[2,3],[1,6],[1,2],[3,6],[6,3],[5,0],[3,1],[2,0],[1,2],[3,7],[0,5],[-2,8],[0,3],[-1,6],[1,0],[0,6],[3,17],[-1,0],[0,1],[0,3],[0,3],[0,1],[1,0],[1,2],[3,6],[3,7],[1,3],[1,1],[2,3],[6,4],[6,4],[-1,0],[-1,8],[0,11],[1,16],[-2,7],[-2,2],[-3,2],[-7,1],[-5,1],[-8,6],[-2,1],[-10,12],[-7,14],[-5,16],[0,2],[0,2],[0,2],[0,7],[0,2],[0,2],[-1,4],[-6,8],[-1,4],[0,1],[0,7],[1,7],[1,5],[2,2],[0,1],[3,1],[5,0],[4,1],[4,2],[1,2],[1,3],[1,6],[0,4],[2,9],[4,6],[5,2],[6,0],[3,-2],[3,-1],[4,-4],[6,-6],[6,-2],[5,1],[7,4],[1,2],[4,5],[0,6],[1,5],[-11,17],[-3,5],[-4,4],[-22,4],[-4,2],[-5,5],[-8,8],[-2,2],[-19,31],[-1,0],[-3,3],[-3,1],[-2,1],[-7,0],[-3,-3],[-10,-15],[-5,-5],[-6,-2],[-6,-2],[-4,-4],[-1,-9],[-16,-39],[-16,-42],[-4,-5],[-4,-2],[-2,-1],[-1,0],[-5,1],[-6,4],[-5,7],[-3,16],[-1,1],[-2,2],[-3,3],[-1,2],[-2,2],[0,1],[-1,3],[-1,8],[-2,7],[-2,7],[-5,20],[-3,4],[-9,2],[-11,8],[-14,10],[-2,1],[-3,1],[-4,-2],[-10,-6],[-1,-1],[-12,-3],[-14,0],[-14,6],[-10,14],[-3,10],[0,1],[-1,9],[-3,9],[-5,7],[-2,1],[-3,1],[-17,-2],[-24,4],[-4,3],[-4,11],[-1,3],[-1,2],[-4,4],[-3,2],[-2,1],[1,8],[1,3],[2,2],[2,4],[1,1],[8,4],[16,-1],[8,1],[11,5],[4,4],[0,1],[1,10],[-3,9],[0,1],[-4,5],[-9,5],[-4,3],[-3,2],[-5,1],[-9,2],[-6,6],[0,3],[0,4],[-1,3],[-4,0],[-4,1],[0,1],[-1,4],[2,6],[1,2],[1,2],[2,2],[4,1],[4,0],[3,2],[3,4],[1,2],[0,4],[1,8],[1,2],[2,4],[1,3],[0,1],[0,2],[0,4],[0,1],[0,2],[0,1],[2,4],[1,2],[1,2],[3,2],[4,0],[1,2],[2,3],[1,7],[-1,7],[-10,16],[-7,8],[-4,3],[-4,3],[-19,9],[-10,4],[-4,0],[-8,1],[-5,3],[-6,6],[-3,3],[-4,7],[-8,17],[-2,3],[-4,5],[-2,-1],[-1,0],[-5,-7],[-2,-2],[-4,1],[-1,2],[-1,1],[-3,4],[-3,3],[-22,15],[-1,1],[-4,4],[-10,20],[-18,23],[-4,7],[-5,12],[-4,5],[-5,4],[-2,1],[-3,1],[-4,4],[-2,7],[7,7],[2,4],[2,2],[0,8],[-1,3],[-2,10],[-4,10],[-4,10],[-1,5],[0,4],[0,5],[2,9],[3,10],[1,4],[0,1],[1,7],[0,8],[-1,21],[1,6],[0,1],[1,4],[0,5],[-1,4],[-1,2],[-3,2],[-3,-2],[-1,-1],[-2,-3],[-2,-7],[-3,-4],[-4,-1],[-3,1],[-1,0],[-3,4],[-2,8],[-7,11],[-3,6],[0,4],[-1,2],[0,3],[0,8],[-1,5],[-2,3],[-5,5],[-2,2],[-9,23],[-1,2],[-3,4],[-5,3],[-2,1],[-9,1],[-4,2],[-1,1],[-15,19],[-5,5],[-11,7],[-3,3],[-2,2],[-1,2],[-3,7],[-6,25],[-2,5],[-1,4],[-2,4],[-15,26],[11,20],[44,1],[7,16],[12,-4],[11,-6],[8,-11],[2,-2],[4,-2],[2,0],[15,4],[6,4],[4,7],[2,5],[0,8],[1,4],[2,1],[3,-1],[3,0],[2,3],[0,4],[-3,12],[0,6],[1,3],[11,12],[6,4],[6,3],[5,-1],[3,-1],[5,-6],[2,-2],[3,0],[4,4],[2,0],[5,-1],[10,-6],[6,0],[2,2],[3,0],[2,-2],[2,-3],[5,-7],[5,3],[13,22],[2,2],[8,0],[3,2],[3,9],[3,11],[1,24],[2,12],[5,8],[6,3],[11,0],[7,7],[-2,12],[-8,22],[1,11],[4,9],[4,8],[4,11],[1,21],[1,10],[5,7],[6,2],[10,-1],[6,5],[6,10],[2,10],[3,6],[8,2],[5,4],[5,11],[1,11],[-7,7],[-1,1],[-1,1],[0,2],[0,3],[0,3],[1,3],[2,3],[6,22],[3,9],[6,8],[10,3],[3,4],[2,7],[0,6],[-1,6],[0,7],[0,6],[1,2],[1,0],[13,15],[2,4],[5,27],[1,1],[-2,7],[-2,2],[-3,1],[-2,1],[-1,5],[10,18],[7,8],[13,12],[6,8],[2,5],[1,10],[1,5],[3,5],[6,8],[3,4],[1,7],[0,5],[0,5],[0,7],[1,6],[3,8],[1,5],[4,20],[1,7],[11,21],[5,8],[5,4],[12,5],[6,15],[0,19],[-3,19],[0,17],[5,14],[8,12],[17,18],[14,4],[4,4],[1,4],[1,4],[0,5],[1,3],[7,14],[0,4],[1,11],[1,4],[2,3],[5,5],[2,3],[6,12],[3,4],[6,4],[5,3],[3,0],[13,-2],[4,0],[4,2],[3,4],[4,22],[9,3],[20,-15],[10,-2],[11,2],[10,6],[8,10],[7,12],[3,3],[6,4],[6,1],[1,1],[3,6],[-1,4],[-1,4],[0,5],[3,7],[4,5],[11,5],[5,6],[7,17],[4,7],[-10,11],[-2,7],[5,8],[0,9],[2,5],[1,6],[-2,10],[-3,8],[-4,6],[-8,10],[-10,8],[-1,3],[-4,4],[-5,-2],[-5,-4],[-5,-3],[-20,0],[-3,-2],[-1,0],[-2,2],[-4,13],[-4,18],[-4,11],[-21,37],[-1,0],[-1,1],[-1,0],[-5,-4],[-5,-1],[-4,2],[-6,3],[-1,0],[-1,0],[-1,-1],[-2,-2],[-2,-1],[-2,1],[-2,2],[-14,28],[-3,11],[0,8],[1,6],[0,6],[-2,5],[-2,0],[-8,-1],[0,9],[4,17],[-10,7],[-9,1],[-9,-5],[-3,-4],[-1,0],[-6,2],[0,40],[3,9],[1,9],[-3,22],[0,11],[4,9],[18,20],[2,4],[3,9],[2,4],[4,3],[7,3],[3,3],[5,8],[3,10],[2,12],[0,12],[0,7],[3,4],[2,2],[3,5],[2,6],[0,4],[0,19],[-1,5],[0,4],[2,7],[3,5],[6,7],[3,5],[1,3],[0,8],[0,2],[3,10],[2,7],[4,17],[5,5],[11,2],[4,5],[0,9],[1,13],[2,12],[2,10],[6,7],[6,-2],[10,-15],[7,-7],[6,-1],[6,1],[10,-1],[6,3],[3,-1],[3,-3],[5,-10],[3,-1],[5,-3],[7,-8],[5,-3],[3,9],[0,3],[-5,10],[-1,5],[0,8],[3,11],[0,5],[-4,5],[-12,9],[-5,5],[-8,14],[-9,9],[1,0],[-4,4],[-4,-6],[-1,-1],[-2,3],[1,7],[5,12],[4,19],[4,17],[2,8],[-4,51],[-1,9],[-2,4],[-6,9],[-4,7],[0,3],[-1,7],[-2,23],[-2,8],[-5,20],[7,22],[21,36],[4,18],[2,5],[4,3],[6,2],[3,2],[4,6],[17,40],[3,4],[2,2],[5,3],[3,3],[1,4],[2,11],[2,5],[11,15],[31,57],[11,16],[10,10],[8,17],[64,88],[12,13],[15,15],[8,8],[22,31],[4,7],[4,15],[3,9],[4,4],[4,3],[10,4],[50,1],[15,8],[6,18],[1,6],[1,7],[-1,11],[1,7],[18,12],[5,7],[4,6],[0,1],[-1,2],[-2,7],[-3,27],[6,14],[-7,22],[-2,11],[2,13],[-8,2],[-7,6],[-4,9],[3,10],[0,3],[-7,1],[-7,4],[-4,7],[-1,11],[4,9],[6,7],[8,1],[7,-5],[6,3],[9,0],[9,2],[3,10],[-4,7],[-23,16],[-19,22],[-4,9],[-1,7],[-1,5],[0,4],[-3,6],[-4,3],[-3,2],[-2,2],[1,5],[0,3],[-3,23],[-3,8],[-7,14],[-4,11],[1,5],[4,3],[-3,7],[-13,17],[-14,11],[-6,10],[-16,42],[-4,4],[-6,0],[-4,3],[-2,12],[1,7],[4,8],[5,7],[5,2],[-1,8],[0,5],[2,4],[3,2],[-2,7],[-11,21],[-1,3],[4,11],[-3,4],[-5,2],[-5,4],[-2,8],[0,3]],[[52094,11129],[-42,-6],[-29,-5],[-57,0],[-57,9],[-98,28],[-34,5],[-33,1],[-42,-4],[-39,-10],[-33,-16],[-40,-27],[-87,-7],[-30,-7],[-38,-14],[-22,-4],[-31,-1],[-33,3],[-115,22],[-36,1],[-34,-2],[-74,-17],[-74,-32],[-46,-14],[-57,-9],[-86,-7],[-52,-12],[-32,-13],[-81,-42],[-45,-27],[-29,-22],[-12,-5],[-41,2],[-9,7],[-3,11],[6,19],[35,46],[12,27],[2,42],[-8,44],[-13,29],[-19,27],[-26,23],[-34,19],[-46,16],[-51,8],[-61,-2],[-64,-10],[-50,-15],[-38,-20],[-33,-25],[-27,-34],[-12,-27],[-7,-27],[-2,-28],[4,-28],[18,-49],[33,-50],[8,-40],[14,-29],[22,-25],[31,-20],[29,-12],[69,-19],[43,-23],[19,-17],[15,-20],[11,-22],[2,-17],[-3,-10],[-8,-7],[-61,-26],[-45,-25],[-27,-8],[-74,-17],[-46,-16],[-109,-48],[-3,-2],[-41,-39],[-4,4],[-7,1],[-26,-11],[-22,-12],[-8,-1],[-20,9],[-73,44],[-44,20],[-54,15],[-56,4],[-57,-7],[-52,-16],[-45,-26],[-45,-39],[51,60],[13,26],[3,23],[24,23],[26,42],[8,31],[-7,34],[-19,29],[-32,29],[-38,19],[-64,21],[-21,16],[-2,9],[9,24],[5,34],[-2,54],[-15,49],[-29,39],[-38,29],[-45,20],[-51,13],[-54,5],[-56,-3],[-54,-9],[-48,-15],[-45,-21],[-30,-21],[-27,-25],[-72,-98],[-11,-23],[-5,-22],[1,-21],[6,-26],[-23,-40],[-7,-50],[3,-19],[9,-20],[41,-52],[12,-22],[0,-13],[-17,-37],[-1,-27],[-26,-4],[-44,-11],[-34,0],[-121,-9],[-47,3],[-12,11],[-1,24],[9,35],[31,66],[4,26],[-3,25],[-10,29],[-20,32],[-24,29],[-33,30],[-3,24],[-14,39],[-3,37],[-10,25],[-14,19],[-21,19],[-26,16],[-32,15],[-32,9],[-33,6],[-30,1],[-31,-3],[-134,-24],[-28,-8],[-41,-18],[-32,-25],[-21,-34],[-4,-38],[13,-38],[32,-43],[-12,1],[-49,12],[-52,5],[-55,1],[-2,0]],[[47453,73258],[8,0],[25,0],[1,0],[21,0],[23,0],[6,7],[0,-1],[4,5],[2,2],[11,13],[1,0],[8,12],[4,12],[2,6],[0,1],[3,4],[6,5],[7,3],[2,2],[4,3],[2,6],[3,12],[2,6],[5,5],[5,1],[10,1],[5,3],[10,10],[5,3],[43,10],[5,4],[7,10],[2,2],[2,1],[5,0],[5,3],[9,9],[2,-5],[3,-9],[-1,-24],[1,-9],[3,-4],[4,2],[5,3],[6,1],[5,-3],[5,-6],[2,-9],[-1,-9],[-3,-7],[-4,-6],[-8,-8],[-8,-12],[-11,-23],[-3,-10],[0,-11],[3,-10],[10,-5],[2,-5],[1,-7],[-2,-15],[24,-2],[13,6],[9,14],[3,6],[3,6],[4,3],[5,-1],[5,0],[2,7],[2,9],[1,7],[5,3],[1,-15],[2,-16],[9,0],[2,3],[1,4],[1,3],[3,1],[8,-1],[17,7],[8,6],[4,-2],[8,-8],[4,-3],[0,-1],[15,-1],[-4,-17],[0,-6],[5,-3],[5,-1],[6,1],[5,3],[4,5],[2,4],[0,4],[1,3],[2,3],[2,0],[4,-5],[3,0],[4,-2],[3,-8],[3,-9],[1,-9],[4,5],[7,11],[3,4],[4,1],[11,-1],[5,2],[19,10],[9,8],[6,13],[1,9],[-2,18],[1,7],[2,4],[4,5],[5,4],[4,1],[9,-9],[8,-11],[9,-6],[10,7],[6,7],[7,-5],[6,-8],[8,-2],[17,2],[7,6],[2,17],[8,-3],[10,-23],[9,-4],[19,1],[10,5],[4,12],[6,-5],[4,-6],[1,-9],[-2,-24],[2,-4],[5,-1],[7,-4],[-3,-11],[-7,-45],[-1,-5],[-2,-5],[-1,-5],[0,-5],[2,-5],[1,-5],[1,-10],[2,-11],[3,-9],[8,-4],[3,1],[4,3],[4,4],[2,3],[2,3],[4,0],[22,-7],[14,-8],[12,-12],[12,-18],[4,-9],[3,-5],[-14,-29],[-7,-12],[-2,-5],[1,-5],[0,-4],[0,-3],[-10,-26],[0,-5],[-9,-1],[-4,-2],[-3,-4],[1,-4],[-1,-4],[0,-3],[-2,-1],[-3,1],[-1,0],[-9,-22],[-9,-13],[-9,-11],[-16,-11],[-3,-3],[-18,0],[-5,-1],[-3,-6],[-10,-22],[-2,-8],[-1,-5],[-10,-13],[-4,-7],[-1,-4],[1,-13],[-3,-10],[-11,-25],[-3,-6],[-8,-1],[-17,2],[-6,-4],[-1,-11],[-3,-7],[1,-7],[2,-6],[9,-14],[4,-10],[6,-23],[2,-12],[3,-4],[4,-2],[3,-3],[1,-7],[-1,-7],[-5,-3],[0,-14],[0,-3],[1,-6],[0,-3],[-1,-3],[0,-6],[0,-11],[0,-8],[4,-18],[2,-18],[1,-10],[0,-7],[-2,-9],[-7,-18],[-1,-9],[0,-10],[3,-5],[3,-5],[3,-8],[1,-10],[-1,-6],[-6,-14],[-5,-20],[1,-18],[7,-16],[9,-14],[-5,-13],[-2,-4],[-12,-13],[-2,-3],[-1,-5],[0,-9],[-1,-3],[-5,-6],[-6,0],[-5,1],[-5,-2],[-12,-12],[-5,-3],[-3,-5],[-2,-13],[-3,-7],[2,-8],[2,-19],[4,-7],[3,-2],[7,-1],[3,-2],[3,-4],[4,-10],[6,-11],[12,-31],[-5,-13],[-2,-6],[1,-6],[-1,-5],[-2,-13],[-1,-2],[-2,-4],[-1,-2],[0,-3],[1,-6],[0,-3],[-1,-5],[0,-9],[-1,-5],[-7,-16],[-2,-3],[-7,-4],[-2,-3],[-2,-7],[0,-6],[2,-5],[0,-5],[-1,-5],[-3,-9],[-2,-6],[0,-5],[1,-4],[0,-4],[-3,-11],[-4,-3],[-41,-8],[-8,1],[-6,5],[-5,-2],[-11,1],[-5,-2],[-5,-3],[-4,-2],[-60,5],[3,-10],[9,-38],[5,-7],[8,-17],[5,-7],[9,-8],[3,-5],[2,-12],[4,-5],[6,-5],[12,-4],[2,-6],[0,-12],[-1,-12],[-3,-8],[-1,-8],[0,-13],[1,-11],[2,-7],[6,-6],[13,-27],[-3,-10],[-1,-12],[2,-11],[4,-8],[7,-6],[8,-4],[6,-4],[4,-11],[-1,-6],[-3,-10],[1,-5],[2,-4],[5,-4],[4,-1],[3,2],[7,6],[7,2],[7,-3],[7,-7],[4,-7],[4,-10],[2,-11],[-2,-9],[3,-4],[1,-5],[-2,-6],[-3,-6],[-9,-28],[-6,-13],[-6,-8],[4,-11],[-2,-9],[1,-8],[-3,-2],[-3,-4],[-4,-6],[-4,-3],[-13,-4],[-2,-4],[-2,-5],[-4,-7],[-4,-6],[-5,-3],[-16,-21],[0,-2],[-3,-7],[-1,-4],[-2,-19],[0,-13],[0,-6],[0,-4],[2,-4],[2,-1],[1,-2],[1,-4],[-2,-8],[-11,-27],[-5,-28],[-3,-6],[3,-7],[0,-7],[-3,-6],[-4,-7],[4,-3],[8,-9],[29,-59],[2,-3],[1,-8],[2,-3],[1,-3],[5,-6],[2,-2],[11,-46],[6,-9],[5,0],[7,2],[6,5],[4,7],[1,0],[1,-1],[7,4],[8,1],[5,-5],[-3,-16],[-2,-8],[-4,-19],[-5,-17],[-3,-17],[-2,-7],[-3,-13],[-7,-1],[-15,10],[-5,1],[-3,-5],[-2,-11],[-3,-6],[-2,-2],[-4,-2],[-3,-3],[-4,1],[-3,2],[-4,0],[-3,-3],[-9,-3],[-2,-3],[1,-5],[0,-5],[1,-6],[-2,-10],[-6,-26],[-3,-19],[-8,-21],[-25,-34],[-5,-12],[-4,-16],[-2,-27],[-2,-8],[-2,-5],[-7,-12],[-3,-3],[1,-3],[0,-3],[-1,-3],[0,-2],[-3,-6],[-1,-2],[0,-6],[1,-1],[1,1],[1,-8],[0,-4],[1,-3],[2,-6],[3,-4],[4,-6],[2,-4],[2,-10],[2,-14],[0,-12],[0,-6],[5,-17],[1,-38],[1,-6],[2,-19],[-2,-8],[2,-13],[4,-24],[6,-9],[4,-46],[6,-76],[16,6],[12,4],[27,9],[39,-11],[43,-35],[46,-54],[0,-58],[7,-42],[36,-109],[24,-58],[20,-74],[49,-93],[21,-22],[24,-11],[-1,-2],[112,-23],[74,50],[14,-4],[2,-1],[19,-5],[57,-22],[4,-25],[-6,-72],[15,-58],[29,-49],[63,-80],[32,-28],[33,-13],[40,5],[84,48],[39,3],[40,13],[32,-8],[41,-35],[24,-1],[26,25],[23,57],[17,26],[21,17],[23,6],[29,-12],[25,-31],[12,-32],[8,-69],[25,-45],[31,18],[24,5],[53,-20],[-1,-82],[-1,-46],[1,-16],[0,-5],[2,-15],[5,-11],[9,-6],[10,-12],[9,-13],[9,-10],[12,-2],[4,-5],[1,-6],[0,-8],[2,-8],[4,-7],[14,-15],[10,-15],[29,-30],[5,-9],[-1,-4],[-4,-5],[-6,-25],[-15,-37],[-2,-9],[20,-35],[13,-22],[10,-5],[4,-3],[-30,-60],[11,-21],[7,-25],[19,-102],[2,-15],[-1,-11],[-13,-89],[-1,-26],[3,-28],[3,-16],[-1,-6],[-2,-8],[-2,-6],[-4,-5],[-2,-6],[-2,-8],[2,-9],[4,-5],[10,-6],[5,-6],[3,-6],[12,-50],[2,-19],[-4,-15],[-4,-10],[-5,-31],[-4,-14],[-3,-14],[0,-55],[2,-18],[15,-23],[5,-16],[3,-17],[6,-14],[7,-11],[8,-10],[5,-8],[2,-11],[0,-13],[-1,-13],[-1,-5],[-1,-5],[-2,-5],[-2,-4],[-11,-14],[37,-106],[9,-14],[18,-11],[78,-101],[4,-12],[-16,-31],[-9,-12],[-11,-7],[-11,-3],[-5,-4],[-4,-10],[-3,-10],[-4,-20],[-5,-57],[0,-5],[0,-4],[-2,-6],[-2,-3],[-4,-6],[-1,-4],[1,-9],[4,0],[11,7],[5,0],[6,-3],[4,-7],[2,-11],[-6,-20],[-11,-5],[-20,2],[-3,0],[-7,1],[-10,1],[-14,1],[-17,1],[-19,2],[-21,1],[-23,2],[-24,2],[-24,2],[-25,2],[-24,2],[-23,2],[-22,2],[-20,1],[-17,2],[-38,3],[-50,-24],[-52,-8],[-16,-15],[-6,-30],[-1,-53],[-4,-23],[-10,-17],[-28,-15],[-46,-26],[-36,-20],[-28,-25],[-10,-1],[-12,4],[-23,15],[-12,3],[-11,0],[-11,-4],[-10,-9],[-5,-18],[-1,-67],[-2,-22],[1,-16],[5,-11],[6,-7],[14,-8],[3,-3],[2,-4],[1,-8],[0,-3],[-16,-20],[-3,-7],[-1,-10],[1,-42],[0,-13],[-6,-17],[-2,-11],[1,-10],[3,-5],[5,0],[5,4],[8,13],[4,4],[5,-2],[4,-8],[8,-21],[5,-8],[10,-8],[3,-5],[3,-11],[1,-10],[0,-10],[0,-11],[-2,-9],[-8,-20],[-15,-10],[-16,-4],[-28,1],[-44,-15],[-9,-7],[-39,-75],[-9,-11],[-28,-22],[-34,-35],[-20,-8],[-17,-2],[-97,-63],[-6,-7],[-5,-12],[-17,-48],[-20,-75],[-14,-34],[-47,-90],[-18,-25],[-28,-24],[-9,-12],[-16,-14],[-53,-10],[-70,-29],[-12,3],[-11,6],[-12,3],[-11,-7],[-5,-7],[-3,-7],[-4,-5],[-6,-3],[-6,1],[-16,9],[-5,0],[-17,-7],[-5,2],[-10,10],[-5,3],[-4,-3],[-3,-6],[-1,-10],[2,-23],[0,-10],[-4,-20],[0,-14],[-1,-12],[-3,-12],[-4,-11],[-19,-24],[-23,1],[-46,23],[-35,-1],[-33,13],[-10,-3],[-45,-45],[-4,-7],[-20,-45],[-21,-33],[-5,-4],[-6,-1],[-7,0],[-12,4],[-13,1],[-9,-8],[-17,-30],[-5,-6],[-13,-12],[-17,-28],[-29,-35],[-26,-42],[-9,-11],[-31,-25],[-19,-22],[-19,-31],[-4,-5],[-10,-8],[-4,-6],[-10,-30],[-3,-6],[-13,-12],[-12,-18],[-36,-34],[-5,-8],[-3,-10],[-1,-15],[0,-26],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-52],[0,-53],[0,-52],[0,-52],[55,-65],[55,-64],[55,-65],[55,-65],[55,-64],[55,-65],[55,-65],[55,-64],[55,-65],[55,-65],[55,-64],[54,-65],[35,-41],[12,-14],[47,-55],[46,-54],[47,-55],[33,-40],[49,-59],[48,-60],[48,-59],[48,-59],[0,-1],[22,-26],[21,-27],[21,-26],[21,-27],[31,-40],[22,-29],[22,-29],[22,-29],[23,-29],[22,-29],[22,-29],[22,-29],[22,-29],[22,-29],[22,-29],[22,-28],[23,-29],[22,-29],[22,-29],[22,-29],[22,-29],[24,-32],[24,-31],[24,-32],[24,-31],[25,-32],[24,-31],[24,-32],[24,-31],[24,-31],[24,-32],[24,-31],[24,-32],[24,-31],[24,-32],[24,-31],[24,-32],[24,-31],[24,-32],[24,-31],[25,-32],[24,-31],[24,-32],[24,-31],[24,-32],[24,-31],[24,-31],[24,-32],[24,-31],[24,-32],[24,-31],[24,-32],[24,-31],[24,-32],[25,-31],[24,-32],[24,-31],[3,-4],[21,-28],[24,-31],[24,-32],[24,-31],[24,-32],[24,-31],[24,-32],[24,-31],[24,-31],[24,-32],[24,-31],[24,-32],[33,-42],[4,-12],[5,-35],[0,-13],[-3,-60],[-6,-50],[-1,-11],[1,-14],[2,-7],[4,-3],[6,-2],[6,1],[11,4],[6,0],[7,-3],[4,-6],[5,-19],[5,-11],[4,-6],[12,-7],[12,-4],[5,-3],[5,-6],[10,-3],[11,-11],[18,-25],[5,-16],[2,-20],[0,-42],[2,-8],[33,-51],[6,-6],[6,0],[5,1],[5,-1],[4,-6],[3,-11],[1,-11],[2,-7],[6,0],[3,3],[5,8],[4,2],[3,-1],[2,-2],[2,-4],[3,-3],[18,-12],[4,-1],[7,6],[11,20],[7,8],[6,2],[5,-2],[5,-6],[17,-25],[10,-21],[9,-24],[11,-39],[3,-6],[5,-3],[6,-3],[6,-4],[10,-10],[5,-3],[3,0],[25,-9],[16,-2],[76,-30],[35,-29],[16,-24],[5,-5],[10,-5],[4,-4],[4,-7],[1,-8],[-5,-112],[0,-21],[4,-21],[1,-3],[2,-2],[1,-2],[1,-5],[0,-3],[-1,-11],[0,-6],[2,-10],[4,-8],[3,-9],[0,-12],[-2,-13],[-5,-8],[-6,-6],[-6,-8],[-2,-10],[-1,-22],[-2,-9],[-6,-12],[-3,-5],[-2,-5],[-2,-11],[-4,-12],[-3,-10],[1,-10],[4,-12],[5,-10],[6,-8],[6,-6],[13,-11],[16,-30],[7,-8],[2,-2],[4,-2],[8,1],[22,11],[29,10],[48,18],[47,18],[48,17],[47,18],[0,-69],[0,-68],[0,-69],[1,-69],[0,-68],[0,-69],[0,-69],[0,-69],[0,-68],[0,-69],[0,-69],[0,-68],[1,-69],[0,-69],[0,-68],[0,-69],[0,-35],[0,-58],[-4,-6],[-3,0],[-2,-2],[-1,-9],[-1,-11],[2,-54],[-1,-6],[-4,-11],[-1,-5],[0,-35],[0,-74],[1,-48],[0,-62],[-2,-13],[-4,-7],[-13,-12],[-6,-9],[-5,-11],[-5,-13],[-24,-118],[-2,-15],[2,-16],[3,-16],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-2],[-16,-31],[-4,-13],[-2,-10],[-3,-54],[-2,-22],[-4,-19],[-7,-17],[-11,-10],[-22,-9],[-10,-10],[-22,-47],[-24,-29],[-3,-15],[-2,-64],[-5,2],[-2,1],[-28,10],[-53,17],[-33,11],[-11,0],[-4,-2],[-2,-3],[-1,-6],[-1,-10],[0,-21],[-1,-7],[-14,-1],[-27,-2],[-26,-1],[-27,-2],[-27,-2],[-27,-2],[-27,-1],[-27,-2],[-26,-2],[-27,-2],[-27,-2],[-27,-1],[-27,-2],[-27,-2],[-26,-2],[-27,-2],[-27,-1],[-21,-2],[-9,-4],[-7,-9],[-19,-34],[-22,-40],[-19,-33],[-23,-42],[-7,-7],[-7,-3],[-43,-2],[-8,-6],[-8,-6],[-8,-4],[-3,-1],[-43,30],[-9,-1],[-18,-12],[-9,-4],[-9,0],[-37,18],[-2,-5],[0,-14],[1,-28],[1,-12],[-3,-8],[-3,-6],[-4,-9],[0,-15],[8,-33],[2,-17],[-19,-102],[2,-28],[8,-27],[44,-78],[12,-31],[0,-3],[0,-5],[-3,-6],[-1,-5],[-1,-18],[-1,-6],[-7,-20],[-1,-7],[1,-6],[4,-11],[1,-3],[2,-3],[1,-3],[2,-5],[-1,-3],[-2,-9],[0,-5],[3,-6],[3,-3],[3,-5],[1,-10],[2,-10],[5,-6],[4,-5],[3,-6],[0,-5],[-2,-10],[0,-6],[2,-4],[6,-7],[2,-5],[2,-11],[4,-9],[4,-7],[9,-12],[3,-8],[3,-6],[5,-4],[2,-5],[-1,-11],[-3,-11],[-1,-9],[4,-14],[7,-5],[37,3],[3,-1],[0,-4],[0,-5],[1,-3],[-1,-2],[-1,-3],[1,-3],[3,-6],[5,-6],[5,0],[11,2],[13,-8],[15,-17],[11,-24],[1,-25],[6,-17],[9,-13],[30,-27],[5,-3],[12,-3],[4,-3],[5,-5],[5,-12],[-8,-6],[-5,5],[-5,8],[-5,3],[-1,-3],[-1,-6],[-3,-19],[-2,-1],[-6,5],[-15,7],[-22,17],[-6,2],[-4,-22],[0,-47],[0,-52],[0,-46],[1,-11],[3,-8],[8,-9],[20,-3],[8,-8],[16,-27],[16,-27],[28,-46],[23,-37],[15,-26],[19,-31],[8,-9],[9,-4],[29,-5],[35,-6],[5,1],[4,6],[4,9],[3,11],[4,14],[2,7],[1,3],[3,1],[2,-2],[2,-1],[3,4],[5,11],[2,2],[27,-4],[11,-6],[8,-17],[1,-10],[1,-3],[3,-6],[3,-5],[5,-6],[3,-6],[2,-8],[1,-7],[2,-33],[1,-7],[2,-9],[2,-4],[3,-8],[2,-4],[0,-2],[-1,-6],[0,-3],[0,-12],[-2,-6],[-4,-2],[-16,-3],[-2,0],[-3,3],[-1,1],[-1,-2],[-2,-6],[-2,-1],[-16,-7],[-4,-7],[-1,-16],[6,-19],[12,-33],[20,-57],[20,-54],[22,-60],[14,-24],[-2,-3],[-8,-51],[-3,-15],[-11,-23],[-3,-16],[0,-9],[0,-7],[-1,-5],[-4,-7],[-15,-17],[-20,-32],[-38,-76],[-8,-7],[-9,1],[-12,9],[-7,7],[-4,1],[-2,-4],[-5,3],[-5,-2],[-11,-9],[-6,-1],[-12,2],[-4,-2],[-6,-6],[-12,-5],[-5,-5],[-6,-4],[-5,22],[-5,-1],[0,4],[1,8],[0,3],[-26,5],[-5,2],[-5,5],[-1,-8],[-3,-3],[-3,-3],[-4,-5],[-2,-6],[-1,-5],[3,-12],[-5,-6],[-6,-5],[-5,-7],[-3,-11],[2,-9],[2,-8],[1,-7],[-5,-8],[-2,5],[-2,1],[-2,-1],[-2,-5],[-1,6],[-4,7],[-3,3],[-1,-6],[0,-5],[3,-5],[1,-6],[-1,-4],[-3,-13],[-9,9],[-5,2],[-5,1],[-3,-1],[-1,-2],[-1,-1],[-3,0],[1,3],[-3,6],[-2,4],[-3,-9],[-3,-5],[-1,-7],[5,-17],[1,-19],[1,-9],[-3,2],[-5,5],[-3,0],[-1,-3],[-2,-10],[-2,-2],[-9,-4],[-1,-2],[0,-8],[1,1],[2,3],[2,-1],[1,-2],[-1,-7],[0,-3],[1,-1],[3,-2],[1,-7],[0,-6],[0,-6],[2,-6],[3,-7],[0,-9],[-1,-2],[-2,4],[-2,5],[-1,3],[-3,2],[-8,2],[-1,-1],[-3,-3],[-2,0],[0,1],[-2,6],[-1,1],[-1,1],[-2,3],[-1,2],[-7,2],[-1,1],[-1,-1],[-2,-5],[-2,-7],[-2,-7],[-1,-1],[0,-6],[0,-6],[1,-5],[2,-2],[2,-3],[0,-6],[-1,-7],[-1,-3],[-5,0],[-4,1],[-8,10],[-7,-35],[-1,-11],[1,-6],[2,-11],[0,-6],[-4,-16],[0,-6],[-1,-13],[-1,-6],[-3,-10],[-15,-28],[-4,-19],[2,-50],[0,-22],[-5,-31],[-3,-57],[0,-13],[2,-8],[21,-28],[27,-35],[39,-52],[40,-52],[29,-39],[4,-19],[0,-45],[1,-61],[0,-16],[0,-1],[0,-26],[2,-26],[0,-7],[-1,-5],[0,-11],[0,-6],[-2,-7],[-5,-15],[-1,-7],[1,-12],[3,-13],[4,-8],[5,4],[3,-16],[2,-56],[4,-22],[6,-20],[23,-47],[17,-36],[6,-19],[2,-14],[1,-15],[1,-70],[0,-60],[1,-52],[0,-91],[0,-6],[2,-6],[7,-19],[1,-5],[-1,-10],[-9,-30],[0,-4],[0,-10],[-2,-14],[1,-2],[2,-1],[1,-5],[3,-48],[0,-63],[-1,-89],[0,-88],[0,-110],[1,-112],[0,-83],[0,-81],[0,-81],[-5,-3],[-21,0],[5,-40],[4,-9],[4,-7],[3,-6],[0,-7],[-2,-24],[0,-9],[2,-10],[2,-11],[1,-14],[-1,-8],[-6,-17],[-2,-12],[1,-7],[4,-6],[3,-11],[0,-4],[0,-5],[-1,-5],[1,-5],[2,-5],[2,-4],[2,-4],[3,-3],[2,0],[3,0],[2,-1],[0,-7],[1,-3],[5,-8],[1,-5],[1,-5],[-1,-12],[1,-5],[2,-3],[5,-6],[3,-4],[7,-23],[5,-41],[1,-5],[5,-36],[4,-19],[9,-39],[9,-61],[109,24],[110,23],[109,23],[79,1],[77,8],[77,9],[55,-7],[51,-19],[36,-29],[38,-48],[37,-64],[31,-70],[34,-98],[38,-131],[32,-73],[10,-99],[23,-132],[33,-132],[26,-70],[35,-72],[31,-54],[35,-46],[48,-38],[44,-9],[101,22],[101,22],[101,22],[76,29],[-1,-254],[-1,-255],[0,-254],[-1,-254],[0,-255],[-1,-50],[20,-27],[13,-40],[5,-51],[-6,-64],[-16,-59],[-16,-28],[1,-271],[1,-270],[1,-270],[1,-271],[0,-7],[0,-61],[-136,0],[-136,1],[-135,1],[-136,1],[-135,1],[-136,1],[-136,0],[-135,1],[-136,1],[-136,1],[0,-7],[0,-259],[0,-259],[0,-259],[0,-259],[0,-259],[0,-259],[0,-258],[0,-7],[136,0],[136,0],[135,0],[136,0],[136,0],[135,0],[136,0],[135,0],[136,0],[136,0],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-7],[0,-259],[0,-258],[0,-259],[0,-259],[0,-248],[0,-248],[0,-248],[0,-248],[0,-248],[0,-248],[0,-248],[0,-7],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-277],[0,-6],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-7],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-7],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[0,-277],[0,-7],[0,-152],[0,-151],[0,-7],[0,-277],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-7],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[0,-7],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-6],[0,-258],[0,-259],[0,-258],[0,-258],[0,-258],[0,-258],[0,-259],[0,-258],[0,-258],[-128,0],[-127,0],[-127,0],[-127,0],[-128,0],[-127,0],[-127,0],[-127,0],[-128,0],[-127,0],[-127,0],[0,-208],[0,-209],[0,-208],[0,-208],[127,0],[127,0],[128,0],[127,0],[127,0],[127,0],[128,0],[127,0],[127,0],[127,0],[128,0],[0,-244],[0,-243],[0,-244],[0,-243],[0,-243],[0,-244],[0,-243],[0,-244],[0,-6],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-7],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-7],[0,-231],[0,-232],[0,-232]],[[45155,94193],[1,0],[1,0],[14,0],[-33,-10]],[[44992,92083],[-101,15],[-130,10],[-125,10],[-126,9],[-125,10],[-126,9]],[[44259,92146],[-125,10],[-125,10],[-126,9]],[[43883,92175],[-125,10],[-125,9],[6,256],[7,257],[7,256],[6,256],[7,256],[6,256],[7,256],[7,256],[133,-4],[134,-5],[133,-5],[134,-4],[134,-5],[133,-4],[134,-5],[134,-4],[133,-5],[134,-4],[133,-5]],[[0,99999],[52087,-7],[0,-257],[0,-257],[0,-257],[0,-256],[0,-257],[0,-257],[0,-257],[0,-257],[0,-257],[0,-257],[0,-257]],[[52087,97166],[0,-7],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[0,-277],[0,-7],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-277],[0,-6],[0,-278],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-278],[0,-6],[0,-277],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-7],[0,-241],[0,-242],[0,-241],[-7,-4],[-21,-19],[-17,-22],[-12,-37],[9,-67],[-2,-10],[-6,-9],[-24,-16],[-50,-26],[-63,-26],[-68,-47],[-30,-31],[-25,-35],[-26,-68],[-12,-9],[-45,-15],[-29,-19],[-26,-26],[-23,-40],[-61,-30],[-46,-5],[-37,-15],[-36,-30],[-23,-40],[-40,-17],[-34,-21],[-19,-18],[-20,-31],[-13,-58],[-17,-40],[-8,-30],[-32,-54],[-12,-29],[-2,-31],[11,-45],[-3,-33],[3,-29],[13,-34],[26,-39],[-7,-31],[2,-51],[-4,-15],[-71,-102],[-10,-34],[-2,-35],[13,-47],[47,-81],[-17,-55],[-3,-61],[14,-48],[30,-37],[5,-12],[2,-21],[-7,-49],[5,-36],[19,-45],[35,-42],[9,-21],[-1,-17],[-13,-36],[-14,-79],[15,-109],[20,-66],[-15,-113],[1,-60],[13,-48],[22,-38],[32,-25],[40,-11],[6,-5],[-1,-22],[-22,-57],[2,-46],[12,-37],[41,-90],[28,-44],[40,-41],[46,-26],[26,-32],[101,-70],[34,-70],[27,-30],[29,-20],[71,-19],[47,-26],[29,-8],[27,1],[57,14],[63,-4],[0,-265],[0,-266],[0,-266],[0,-265],[0,-266],[0,-266],[0,-266],[0,-265],[-30,-7],[-29,-14],[-43,-3],[-94,-28],[-27,-15],[-42,-36],[-55,-18],[-6,-3],[-93,-40],[-107,-3],[-126,-37],[-47,-27],[-31,-38],[-40,-32],[-37,-49],[-19,-42],[-28,-48],[-11,-30],[-8,-50],[4,-65],[-13,-54],[-23,-171],[-14,-55],[-36,-82],[-25,-37],[-45,-29],[-16,-17],[-25,-74],[-27,-36],[-34,-30],[-28,-59],[-44,-47],[-14,-29],[-10,-44],[-3,-1],[-50,-30],[-72,-59],[-73,-58],[-1,-1],[-90,-30],[-42,-9],[-5,-7],[-46,-56],[-49,-33],[-53,-50],[-21,-29],[-4,-40],[-2,-16],[-11,-23],[-27,-62],[-96,-141],[-48,-34],[-79,-26],[-78,-25],[-83,-9],[-67,-53],[-69,4],[-70,5],[-69,3],[-70,4],[-77,0],[-77,0],[-104,-53],[-104,-53],[-38,-105],[-113,-74],[-64,-49],[-37,-4],[-60,-6],[-103,-41],[-18,-3],[-50,-38],[-89,-41],[-89,-40],[-32,-10],[-12,-4],[-20,-1],[-5,-211],[-5,-210],[10,-50],[27,-44],[23,-19],[50,-12],[16,-14],[3,-20],[-12,-41],[-4,-25],[2,-29],[7,-25],[12,-25],[18,-20],[57,-36],[15,-58],[25,-37],[24,-17],[32,-9],[49,2],[40,19],[30,-18],[61,-11],[25,-29],[26,-13],[-15,-48],[1,-55],[17,-49],[35,-47],[45,-28],[47,-6],[6,3],[107,-143],[-1,-2],[-10,-38],[1,-45],[12,-39],[28,-39],[37,-24],[40,-5],[40,16],[10,-49],[16,-37],[19,-24],[26,-15],[10,-76],[31,-58],[16,-84],[30,-64],[7,-84],[25,-53],[-14,-209],[-15,-209],[-8,-231],[-25,-193],[-25,-193],[-15,-22],[-7,-3],[-24,-8],[-49,-33],[-28,-7],[-24,5],[-37,26],[-94,48],[-74,-15],[-39,-20],[-75,58],[-38,14],[-104,-19],[-93,-41],[-80,-1],[-35,6],[-75,30],[-40,10],[-75,37],[-49,-1],[-47,48],[-28,12],[-36,-6],[-44,-35],[-43,3],[-39,-16],[-63,6],[-73,-7],[-59,4],[-52,54],[-50,29],[-37,31],[-27,6],[-45,-11]],[[43230,86265],[-67,3]],[[85833,32632],[0,-237]],[[85833,32395],[-1,-53]],[[85606,32103],[-121,-54],[-67,-42]],[[81251,95277],[-135,1],[-134,0]],[[80310,95282],[-135,1],[-134,1]],[[79100,95290],[-135,0],[-134,1]],[[0,99999],[81249,0],[0,-278],[0,-278],[1,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-278],[0,-277],[1,-278],[0,-278],[0,-278],[0,-277],[0,-278]],[[56661,60831],[0,-7],[0,-122],[0,-130],[0,-129],[0,-129],[0,-129],[0,-129],[0,-129],[0,-129],[0,-129],[1,-129],[0,-129],[0,-129],[0,-129],[0,-129],[0,-129],[0,-129],[0,-32],[0,-1],[-3,-16],[-8,0],[-32,22],[-34,10],[-32,0],[-18,-8],[-37,-26],[-21,-4],[-42,18],[-20,-5],[-8,-10],[-17,-42],[-22,-26],[-6,-12],[-2,-18],[3,-16],[4,-14],[6,-13],[6,-15],[3,-18],[0,-18],[-3,-65],[-2,-12],[-13,-45],[-2,-5],[-9,-7],[-7,-7],[-5,-8],[-25,-51],[-3,-12],[-2,-14],[0,-10],[-2,-9],[-5,-10],[-10,-13],[-3,-9],[0,-14],[3,-31],[1,-10],[4,-17],[1,-5],[-1,-8],[-3,-4],[-56,-29],[-12,-11],[-11,-17],[-5,-20],[6,-20],[8,-13],[3,-7],[4,-60],[0,-4],[2,-2],[1,-4],[0,-4],[-2,-3],[-4,-3],[-1,-2],[-2,-10],[-1,-4],[1,-7],[3,-12],[3,-8],[5,-5],[15,-5],[5,-6],[3,-11],[2,-18],[-1,-16],[-4,-10],[-6,-5],[-8,-2],[-6,-7],[-10,-19],[-6,-7],[-44,-41],[-8,-11],[-6,-13],[-26,-63],[-7,-22],[0,-5],[7,-12],[4,-11],[1,-8],[-1,-9],[0,-12],[5,-22],[18,-32],[4,-21],[0,-32],[1,-11],[4,-13],[10,-24],[3,-12],[-2,-23],[-10,-26],[-26,-53],[-4,-6],[-30,-23],[-5,-6],[-9,-18],[-8,-21],[-23,-86],[-7,-41],[-5,-17],[0,-4],[1,-6],[7,-19],[11,-40],[6,-11],[10,-10],[11,-4],[12,0],[11,3],[13,7],[11,12],[9,17],[8,23],[34,-45],[29,-21],[3,-7],[-13,-64],[-7,-19],[1,-6],[9,-29],[20,-124],[1,-6],[0,-7],[0,-7],[-7,-61],[2,1],[1,2],[3,5],[18,11],[11,4],[4,-5],[2,8],[2,-2],[0,-9],[-1,-10],[-5,-28],[-15,-171],[1,-27],[6,-26],[8,-23],[10,-19],[10,-10],[22,-15],[7,-13],[1,-5],[0,-16],[3,-3],[26,6],[7,-1],[4,-6],[3,-40],[8,-41],[0,-7],[0,-16],[-1,-10],[-5,-20],[-1,-10],[-1,-11],[0,-11],[-1,-6],[-5,-10],[-1,-5],[-11,-78],[0,-16],[40,-113],[29,-41],[50,-97],[46,-147],[47,-148],[5,-25],[9,-96],[-2,-21],[-4,-17],[-10,-31],[-3,-16],[0,-6],[3,-14],[0,-7],[0,-18],[1,-5],[2,-7],[2,0],[1,-1],[2,-4],[0,-4],[-7,-43],[0,-10],[3,-17],[0,-8],[-2,-7],[-4,-6],[-11,-26],[-6,-13],[-3,-4],[-5,-1],[-9,1],[-4,-4],[-4,-13],[-7,-71],[1,-14],[4,-11],[7,-8],[8,1],[10,20],[5,-1],[2,-12],[0,-19],[-4,-31],[-5,-16],[-11,-25],[-4,-15],[0,-13],[3,-15],[4,-12],[5,-5],[5,1],[6,10],[4,5],[5,2],[5,-1],[4,-4],[4,-6],[4,-3],[9,1],[9,-5],[4,3],[9,8],[10,0],[17,-8],[16,3],[11,-9],[5,-1],[8,2],[29,-9],[15,4],[3,1],[11,0],[5,-5],[-1,-8],[-5,-15],[-1,-8],[2,-8],[7,-11],[2,-7],[-2,-5],[-11,-15],[-3,-6],[-16,-52],[-3,-19],[-1,-18],[3,-17],[6,-13],[7,-12],[8,-8],[4,-3],[10,-5],[1,0],[5,-1],[4,0],[2,-1],[2,-2],[5,-7],[1,-2],[18,13],[10,2],[7,-13],[1,-5],[1,-4],[2,-2],[3,-1],[9,-11],[8,-1],[20,7],[16,-6],[5,0],[6,-2],[8,-9],[16,-4],[9,-8],[24,-44],[3,-9],[1,-19],[5,-12],[1,-10],[1,-4],[2,-4],[2,-3],[3,-2],[13,-30],[8,-13],[9,-6],[4,0],[8,4],[4,0],[7,-2],[2,-3],[1,-3],[2,-3],[7,-5],[4,-7],[2,-8],[3,-18],[4,-15],[2,-9],[0,-8],[-1,-24],[1,-8],[2,-8],[1,-8],[-2,-10],[-6,-11],[-18,-12],[-6,-11],[0,-7],[1,-9],[6,-28],[16,-18],[4,-5],[2,-3],[2,-9],[2,-4],[2,-2],[5,-3],[2,-3],[2,-8],[2,-16],[1,-8],[3,-8],[4,-5],[16,-16],[10,-16],[8,-7],[5,4],[4,-2],[5,-5],[12,-23],[4,-4],[18,-9],[5,-4],[7,-11],[2,-1],[5,0],[3,-2],[4,-9],[3,-2],[7,0],[2,-5],[0,-7],[2,-9],[5,-3],[12,-3],[5,-4],[1,-4],[1,-11],[1,-5],[9,-10],[2,-1],[6,-2],[3,-2],[1,-4],[0,-4],[1,-4],[3,-1],[13,-2],[2,-13],[1,-29],[2,-12],[2,-2],[2,0],[1,1],[2,0],[1,-2],[0,-3],[-1,-3],[1,-4],[1,-7],[0,-6],[1,-6],[3,-7],[6,-8],[5,-2],[5,-4],[8,-22],[12,-15],[4,-10],[10,-10],[16,-12],[14,-15],[0,-12],[0,-7],[-2,-5],[-4,-17],[-5,-12],[-4,-12],[-4,-16],[-2,-6],[-2,-4],[-3,-3],[-2,-4],[-2,-7],[5,-3],[0,-8],[-1,-11],[-1,-10],[2,-11],[3,-5],[4,-4],[6,-6],[4,-9],[7,-18],[4,-4],[1,-2],[12,-5],[4,-6],[1,-15],[0,-13],[3,-4],[4,1],[4,-2],[4,-9],[0,-11],[-1,-5],[-1,-5],[-5,-7],[-3,-3],[-2,-3],[-6,-8],[-4,-9],[-2,-11],[0,-6],[1,-6],[4,3],[11,15],[5,-3],[3,-9],[3,-12],[2,-10],[5,-7],[16,-11],[9,-3],[20,2],[19,-15],[5,-7],[3,-7],[2,-25],[2,-10],[7,-5],[6,0],[5,4],[3,-1],[3,-13],[3,-10],[6,0],[12,6],[3,-7],[3,-16],[6,-7],[2,-9],[1,-3],[3,0],[5,4],[3,0],[11,-9],[3,-4],[2,-9],[0,-6],[1,-4],[6,-4],[4,-4],[3,-7],[2,-8],[1,-9],[0,-5],[1,-3],[1,-3],[5,-6],[0,-3],[0,-4],[-1,-9],[-1,-9],[0,-3],[2,-6],[1,0],[2,1],[1,1],[1,0],[1,2],[2,1],[3,-4],[1,-5],[-1,-10],[1,-5],[-1,-5],[-10,-56],[-1,-8],[1,-7],[2,-14],[1,-28],[2,-8],[7,-35],[5,-17],[5,-14],[16,-21],[8,-13],[4,-22],[4,-5],[4,-6],[3,-7]],[[56251,11008],[-23,19],[-49,34],[-32,16],[-36,13],[-32,7],[-33,4],[-54,-4],[-48,-14],[-44,-24],[-37,-32],[-20,-26],[-37,-67],[-43,-46],[-22,-33],[-30,-64],[-12,-56],[-37,-10],[-86,-5],[-44,8],[-82,3],[-4,8],[4,14],[69,108],[13,39],[-7,44],[4,30],[-4,24],[-18,31],[-33,28],[-60,38],[-62,23],[-39,9],[-35,4],[-33,1],[-33,-3],[-38,-8],[-32,-11],[-25,-14],[-37,-27],[-13,-9],[-83,-30],[-27,-13],[-34,-27],[-20,-33],[-21,0],[-70,11],[-6,9],[-17,67],[-30,54],[-8,29],[4,38],[25,49],[7,26],[0,30],[-11,28],[-13,17],[-20,19],[-49,29],[-57,17],[-72,7],[-102,2],[-44,-5],[-42,-7],[-44,-13],[-43,-17],[-36,-19],[-30,-22],[-26,-26],[-19,-27],[-16,-32],[-9,-29],[1,-48],[29,-69],[0,-6],[-5,-3],[-73,-6],[-57,9],[-53,0],[-74,-8],[-46,-12],[-16,-1],[-20,7],[-20,14],[-36,54],[-32,32],[-36,22],[-39,15],[-33,7],[-33,3],[-32,-1]],[[53579,11201],[-41,-6],[-63,2],[-50,-6],[-46,-14],[-50,-28],[-4,-3],[-10,-10],[-5,-4],[-2,-2],[-11,-15],[-2,-2],[-1,-2],[-11,-25],[-15,-3],[-13,-2],[-29,-4],[-1,12],[-1,8],[-14,30],[-28,32],[-37,27],[-39,18],[-42,11],[-55,7],[-75,2],[-65,-10],[-49,-19],[-51,-36],[-26,-7],[-35,3],[-67,22],[-43,9],[-46,3],[-44,-4],[-33,-8],[-29,-10],[-26,-15],[-50,-28],[-28,-7],[-14,-3],[-1,0],[-36,1],[-52,13],[-16,4],[-46,5],[-70,-5],[-13,-3]],[[52087,97166],[0,255],[0,255],[0,255],[0,255],[0,256],[0,255],[0,255],[0,255],[0,255],[0,255],[0,256],[1,26],[-52088,0]],[[77138,65826],[11,-59],[7,-16],[9,-5]],[[77165,65746],[18,14],[10,-8]],[[77220,65695],[-3,-16],[2,-5]],[[77235,65666],[19,-33],[3,-9]],[[77256,65563],[-2,-11],[-3,-12],[2,-6]],[[77265,65493],[-5,-6],[2,-9]],[[77276,65457],[1,-6],[0,-7]],[[77277,65444],[-1,-11],[2,-5]],[[77278,65428],[1,-3],[1,-3],[-2,-13]],[[77278,65409],[0,-6],[10,-26]],[[77298,65316],[5,-19],[10,-7]],[[77339,65378],[14,-14],[5,-7],[1,0]],[[77367,65364],[5,-8],[6,-21],[4,-7]],[[77398,65339],[3,0],[3,-3]],[[77404,65336],[2,-5],[3,-6]],[[77410,65208],[1,-1],[2,0],[2,-3]],[[77417,65168],[-7,-37],[-1,-16]],[[77409,65115],[-1,-18],[3,-36]],[[77425,65038],[1,-12],[-1,-9]],[[77422,65007],[-3,-10],[7,-49]],[[77430,64803],[1,-12],[-2,-11],[-5,-18]],[[77418,64650],[-3,-10],[-11,-23]],[[77410,64577],[6,-27],[1,-9],[-1,-5]],[[77412,64529],[0,-11],[-1,-5]],[[77378,64517],[-4,-6],[-1,-9]],[[77374,64493],[1,-10],[6,-19]],[[77382,64453],[-1,-12],[2,-7],[3,-1]],[[77386,64433],[3,1],[4,-2]],[[77395,64427],[9,-25],[3,-11]],[[77407,64391],[1,-2],[4,-2]],[[77414,64377],[-1,-8],[-1,-7]],[[77410,64357],[-15,-21],[-4,-3]],[[77360,64350],[-7,-14],[-3,-6]],[[77350,64330],[-3,-10],[-3,-19]],[[77342,64297],[-3,-3],[-1,-3]],[[77338,64291],[-1,-7],[0,-7]],[[77337,64277],[-1,-4],[-10,-24]],[[77326,64249],[-2,-7],[-3,-24]],[[77264,64229],[-1,0],[-3,-1],[0,-7]],[[77251,64170],[-2,-4],[0,-4]],[[77231,64056],[-12,-11],[-4,-5]],[[77215,64040],[-13,-30],[-6,-6],[-5,-1],[-3,4]],[[77173,64034],[0,-1],[0,1]],[[77173,64034],[-7,-14],[-6,-44]],[[77139,63866],[1,-18],[5,-17]],[[77155,63816],[3,-8],[-2,-12],[-4,-4]],[[77135,63796],[-1,0],[-6,-2]],[[77092,63735],[1,-70],[-7,-76],[0,-13],[2,-4]],[[77117,63578],[4,-1],[3,-4]],[[77126,63562],[0,-6],[2,-7]],[[77135,63537],[0,-12],[-4,-3]],[[77131,63522],[-6,-1],[-4,-6]],[[77123,63501],[20,-14],[2,-20]],[[77145,63467],[-2,-4],[-2,-3],[-2,-4],[0,-6]],[[77139,63450],[0,-7],[4,-9],[2,-6]],[[77144,63415],[-4,-13],[-53,-101]],[[77116,63258],[1,-10],[1,0]],[[77272,63399],[10,-1],[21,-10]],[[77303,63388],[10,0],[1,0]],[[77332,63404],[10,1],[11,-1],[8,-4],[11,-15],[8,-7]],[[77459,63410],[3,3],[0,-1],[2,-16]],[[77464,63396],[-5,-17],[-25,-31]],[[77416,63322],[-6,-2],[-4,-4]],[[77405,63311],[1,-4],[3,-9]],[[77409,63298],[-1,-5],[-2,-14]],[[77412,63213],[6,0],[9,-5]],[[77442,63199],[1,-9],[1,-28]],[[77458,63119],[1,-3],[1,-3]],[[77443,63087],[-4,-6],[-1,-8],[6,-29]],[[77444,63044],[2,-3],[1,0]],[[77452,63044],[5,0],[5,-8]],[[77469,63003],[0,-11],[0,-10]],[[77469,62982],[-3,-11],[-2,-2],[-3,-3]],[[77471,62957],[3,-15],[-14,-47],[0,-18]],[[77555,62818],[0,-3],[3,-4]],[[77558,62811],[1,-2],[3,0]],[[77605,62823],[6,-8],[21,-1]],[[77632,62814],[4,-5],[1,-8]],[[77649,62736],[-7,-9],[-8,0]],[[77615,62707],[-1,-9],[-3,-9],[-6,-16]],[[77597,62648],[-4,-1],[-3,-3]],[[77590,62644],[-3,-3],[-2,-5]],[[77596,62512],[2,-9],[1,-6]],[[77599,62497],[-2,-6],[-2,-7]],[[77568,62425],[0,-7],[-1,-7]],[[77548,62315],[-9,-8],[7,-12]],[[77546,62295],[12,-11],[12,-5]],[[77649,62281],[26,-12],[3,-3]],[[77680,62262],[2,-10],[2,-3]],[[77684,62249],[5,-6],[1,0]],[[77695,62256],[5,5],[5,-2]],[[77705,62259],[16,-17],[3,-3]],[[77724,62239],[1,-5],[2,-3],[1,1],[0,-1]],[[77759,62232],[1,-7],[3,-6],[5,-18]],[[77755,62139],[-1,-12],[1,-10],[5,-19]],[[77760,62098],[3,-31],[3,-9]],[[77806,62008],[-3,-9],[-1,-10]],[[77813,61934],[5,-15],[4,-11]],[[77888,61954],[8,-13],[2,-9]],[[77898,61932],[2,-8],[4,-5]],[[78090,62079],[0,-27],[3,-6]],[[78093,62046],[3,-4],[4,-10]],[[78103,62006],[-2,-7],[-2,-7]],[[77056,65715],[3,-1],[1,0]],[[77096,65854],[5,-7],[7,-17]],[[2082,72921],[0,-267],[0,-268]],[[0,69443],[0,7223]],[[0,63888],[17,0],[138,0],[138,0],[138,0],[139,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0],[138,0]],[[2088,59750],[0,-234],[0,-235],[0,-234],[0,-234],[0,-235],[0,-234]],[[2083,49443],[2,-239],[1,-264],[2,-335]],[[541,48605],[-136,0],[-132,0],[-140,0],[-133,0]],[[0,48605],[0,15283]],[[11944,43971],[0,239],[0,238]],[[1665,84604],[0,254],[0,101]],[[1665,84959],[145,157]],[[1810,85116],[123,132],[121,127]],[[2054,85375],[76,80],[140,147]],[[2270,85602],[82,84],[131,134]],[[2483,85820],[119,120],[106,105],[116,130],[116,107],[116,106],[0,232],[0,231],[0,231],[0,232],[0,231],[0,232]],[[6242,89627],[1,0]],[[14581,9387],[-5,-1],[-37,-15],[-32,-19],[-31,-22],[-24,-23],[-45,-51],[-15,-27],[-5,-30],[9,-37],[-4,-22],[5,-27],[16,-25],[34,-30],[1,-27],[7,-20],[15,-21],[24,-21],[34,-18],[2,-136],[-71,14],[-34,3],[-37,0],[-60,-7],[-53,-15],[-45,-23],[-30,-29],[-10,-21],[-3,-23],[23,-124],[0,-18],[-6,-10],[-53,-17],[-68,0],[-47,-6],[-39,-9],[-53,-18],[-42,-9],[-18,0],[-68,14],[-16,5],[-5,5],[1,5],[21,24],[10,19],[14,75],[-6,21],[-13,22],[-20,21],[-25,18],[-27,15],[-31,11],[-41,10],[-57,7],[-55,24],[-57,14],[-6,5],[-14,29],[-22,24],[-32,21],[-44,19],[-45,12],[-45,6],[-47,2],[-45,-4],[-35,-8],[-32,-10],[-28,-12],[-24,-15],[-29,-29],[-23,-47],[-25,-29],[-32,-24],[-63,-33],[-32,-28],[-12,-26],[-1,-31],[10,-30],[38,-55],[0,-12],[-11,-7],[-18,0],[-17,5],[-18,13],[-40,37],[-20,14],[-36,17],[-45,16],[-78,17],[-78,17],[-77,14],[-70,6],[-64,-2],[-53,-10],[-54,-18],[-38,-19],[-27,-23],[-10,-5],[-70,-5],[-88,-22],[-47,-2],[-39,-5],[-53,-16],[-32,-17],[-28,-23],[-20,-26],[-20,-39],[-16,-18],[-23,-16],[-27,-11],[-59,-11],[-57,-17],[-16,-3],[-77,-5],[-77,-5],[-70,5],[-45,-1],[-71,-11],[-70,-7],[-60,-14],[-46,-21],[-53,-43],[-104,-63],[-30,-24],[-23,-26],[-49,5],[-39,1],[-38,-3],[-52,-8],[-61,19],[-107,19],[-58,6],[-34,-1]],[[64588,65038],[1,-11]],[[64589,13462],[-90,-3],[-69,-13],[-86,-27],[-32,-13],[-104,-58],[-32,-27],[-56,-26],[-112,-23],[-64,-24],[-37,-25],[-33,-35],[-25,-34],[-25,-48],[-21,-83],[3,-92],[-22,21],[-28,17],[-37,14],[-48,10],[-52,39],[-23,11],[-26,7],[-92,7],[-54,-1],[-43,-8],[-39,-18],[-32,-25],[-24,-30],[-12,-31],[-4,-36],[9,-45],[23,-44],[-14,-38],[-5,-26],[-1,-30],[6,-33],[12,-31],[18,-28],[23,-24],[33,-24],[0,-9],[-8,-7],[-14,0],[-30,11],[-28,36],[-31,25],[-52,29],[-44,14],[-42,32],[-43,18],[-31,7],[-28,1],[-55,-5],[-65,-1],[-57,-11],[-31,-12],[-29,-17],[-30,-23],[-21,-23],[-23,-43],[-16,-79],[-8,-8],[-44,-17],[-50,-1],[-69,-14],[-77,-10],[-70,-24],[-42,-19],[-31,-22],[-26,-28],[-21,-34],[-51,1],[-21,-3],[-37,-11],[-48,-25],[-46,3],[-39,-4],[-76,-16],[-46,-13],[-43,-7],[-24,-7],[-34,-18],[-24,-24],[-38,-27],[-31,-33],[-24,-41],[-15,-14],[-59,-11],[-91,-28],[-83,-34],[-82,-33],[-60,-33],[-22,-19],[-14,-19],[-30,-2],[-36,-9],[-29,-11],[-48,-29],[-72,-12],[-52,-18],[-35,-24],[-23,-27],[-50,-135],[-4,-37],[8,-48],[0,-39],[-10,-32],[-2,-19],[5,-25],[13,-28],[-2,-16],[-10,-16],[-23,-22],[-49,-17],[-48,-28],[-17,-1],[-20,3],[-78,28],[-94,25],[-25,4],[-45,2],[-50,-2]],[[56661,61108],[45,0],[23,0]],[[56936,61108],[1,0],[1,1],[0,1]],[[56939,61177],[0,53],[0,1]],[[56939,61336],[0,52],[0,1]],[[56939,61527],[0,69],[0,1]],[[56939,61804],[0,69],[0,1]],[[56939,62219],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0]],[[58615,62219],[27,-1],[27,0],[11,0],[3,5]],[[58697,62275],[13,51],[8,15]],[[58728,62348],[5,-2],[6,-5],[6,-11],[2,-12]],[[58732,62220],[0,-1],[24,0],[28,0],[28,0],[29,0],[28,0],[29,0],[28,0],[29,0],[28,0],[28,0],[29,0],[28,0],[29,0],[28,0],[29,0],[28,0],[29,0],[64,0],[65,0],[64,0],[65,0],[65,0],[64,0],[65,0],[65,0],[64,0],[65,0],[64,0],[65,0],[65,0],[64,1]],[[60238,62207],[-4,-4],[-1,0]],[[60233,62203],[94,-3],[93,-2],[0,1]],[[73425,83780],[6,-8],[98,-185],[3,-6]],[[73538,83564],[10,-20],[1,-3],[1,-3],[1,-4]],[[73550,83530],[-3,-4],[-8,-11],[-3,-6]],[[73536,83509],[-3,-6],[-5,-21]],[[73528,83482],[-3,-10],[-2,-7]],[[73507,83440],[-2,-11],[-3,-64],[0,-1]],[[73485,83333],[-4,-6],[-1,-3]],[[73480,83321],[0,-2],[6,-6],[20,-11]],[[73637,83276],[111,-4],[1,0]],[[74062,83305],[127,-38],[3,-3],[2,-5],[19,-85]],[[74213,83174],[2,-8],[4,-6]],[[74219,83160],[6,-2],[78,-7]],[[74303,83151],[3,-1],[5,-2]],[[74410,82937],[4,-7],[5,-4]],[[74426,82925],[90,9],[91,9]],[[74613,82942],[3,-2],[-1,-10],[-4,-24]],[[74674,82793],[-1,-2],[-3,-4],[-5,-4]],[[74425,82514],[-2,-4],[-1,-3],[0,-3]],[[74466,82323],[0,-3],[5,-16]],[[74477,82289],[1,-2],[2,-2]],[[74635,82242],[7,-5],[30,-29]],[[74819,82190],[7,-15],[4,-22]],[[74820,82108],[8,-72],[1,-9]],[[74822,82014],[-28,-15],[-2,0]],[[74765,82009],[-3,-2],[-1,-4]],[[74727,81944],[-1,0],[-2,-1]],[[74723,81942],[-2,-1],[-9,-17]],[[74683,81906],[-16,-60],[-4,-14]],[[74657,81818],[-6,-16],[-2,-7]],[[74649,81795],[-2,-3],[-1,-2]],[[74646,81790],[-3,-2],[-2,-1]],[[74618,81776],[-27,-39],[-1,-3]],[[74589,81726],[-1,-3],[1,-2]],[[74642,81715],[2,-1],[1,-6]],[[74622,81569],[0,-3],[1,-3]],[[74622,81550],[1,-23],[2,-5]],[[74644,81517],[3,-2],[2,-2]],[[74649,81513],[0,-3],[1,-3]],[[74650,81507],[-1,-4],[0,-4]],[[74648,81497],[-3,-2],[-9,-4],[-2,-2]],[[74630,81465],[-3,-1],[-40,-6],[-2,-1],[-1,-2],[0,-3]],[[74584,81452],[-1,-10],[0,-4],[1,-3]],[[74589,81417],[1,-2],[3,-2]],[[74613,81408],[2,-4],[2,-7],[0,-15]],[[74607,81364],[1,-7],[17,-11]],[[74625,81346],[2,-3],[13,-18]],[[74698,81302],[1,-2],[0,-2]],[[74694,81291],[-1,-5],[2,-2]],[[74695,81284],[2,-2],[36,-2]],[[74733,81280],[4,-2],[1,-3],[0,-3]],[[74737,81261],[2,-5],[1,-3]],[[74740,81247],[-4,-13],[0,-3],[1,-4]],[[74737,81227],[2,-2],[3,-1]],[[74754,81220],[0,-3],[0,-3],[0,-3]],[[74769,81189],[3,-1],[5,-3]],[[74779,81182],[0,-3],[1,-3]],[[74797,81109],[4,-10],[8,-10],[1,-6]],[[74807,81069],[0,-3],[1,-3]],[[74808,81063],[1,-3],[4,-4]],[[74837,81046],[3,-2],[5,-3]],[[74846,81037],[0,-3],[0,-4]],[[74845,81027],[-2,-3],[-1,-2]],[[74842,81022],[-3,-1],[-9,-2]],[[74828,81018],[-2,-3],[0,-5]],[[74830,81000],[-1,-3],[-2,-6],[-1,-3]],[[74826,80988],[-2,-3],[-2,-1],[-24,-4]],[[74782,80967],[-7,-9],[-6,-12]],[[74682,80891],[-49,-50],[-2,-3]],[[74631,80838],[-1,-2],[0,-3]],[[74618,80811],[-2,-2],[-3,-6],[-7,-16]],[[74600,80770],[-17,-26],[-1,-1],[-17,-14]],[[74561,80725],[-2,-3],[-3,-6]],[[74554,80710],[-1,-3],[0,-3]],[[74582,80647],[0,-4],[1,-5]],[[74583,80632],[0,-5],[1,-5]],[[74586,80618],[1,-4],[7,-9]],[[74597,80598],[0,-4],[0,-14]],[[74597,80580],[-1,-6],[0,-3]],[[74596,80564],[2,-4],[3,-3]],[[74613,80539],[2,-2],[3,-1]],[[74632,80531],[0,-6],[0,-4],[0,-5]],[[74628,80492],[0,-3],[1,-3],[2,-1]],[[74647,80498],[1,0],[2,-1],[1,-3],[3,-32]],[[74653,80446],[-4,-10],[-3,-7],[-3,-5]],[[74643,80424],[-3,-2],[-2,0]],[[74614,80380],[-1,-40],[0,-3]],[[74605,80317],[0,-3],[6,-17],[1,-2]],[[74612,80292],[-1,-3],[-1,-3]],[[74601,80275],[-1,-2],[0,-3],[1,-5]],[[74601,80256],[-2,-2],[-4,-7]],[[74595,80247],[-2,-4],[-1,-6]],[[74588,80230],[-18,-7],[-18,-3]],[[74550,80219],[-2,-2],[1,-2]],[[74594,80189],[1,-3],[1,-2]],[[74597,80167],[0,-3],[1,-3]],[[74600,80159],[2,0],[1,0]],[[74671,80229],[7,1],[8,-3]],[[74711,80194],[-3,-10],[0,-4]],[[74708,80180],[0,-3],[2,-3]],[[74760,80194],[2,-1],[5,-4]],[[74773,80181],[1,-3],[1,-3]],[[74775,80175],[-1,-5],[-1,-3],[-1,-4]],[[74771,80160],[-1,-4],[1,-3]],[[74775,80147],[5,-4],[2,-2],[1,-3],[-1,-4],[-10,-23]],[[74775,80087],[0,-3],[0,-2]],[[74735,80064],[-9,-5],[-3,-4]],[[74721,80051],[-3,-5],[-1,-4],[0,-3]],[[74717,80039],[-1,-4],[1,-3]],[[74720,80023],[14,-28],[2,-5]],[[74762,79976],[14,-6],[5,-3]],[[74783,79962],[-11,-18],[-1,-3]],[[74771,79941],[-1,-4],[1,-5]],[[74772,79928],[1,-3],[2,-2]],[[74790,79924],[2,-1],[2,-1]],[[74772,79877],[-5,-1],[-17,2]],[[74748,79877],[-6,-7],[-3,-3]],[[74739,79867],[-9,-5],[-2,-2],[-1,-4]],[[74727,79856],[-2,-7],[0,-4]],[[74694,79784],[-3,-7],[-2,-2]],[[74678,79773],[-2,-3],[-1,-2],[1,-3],[2,-2]],[[74684,79721],[-1,-11],[0,-3]],[[74682,79703],[-4,-4],[-12,-13]],[[74666,79686],[-2,-3],[0,-3]],[[74655,79646],[0,-3],[2,-2]],[[74657,79641],[3,-3],[3,-1]],[[74691,79659],[1,-1],[19,-20],[2,-2]],[[74713,79636],[1,-4],[1,-5]],[[74734,79570],[-4,-6],[-6,-9]],[[74723,79550],[0,-4],[7,-15]],[[74730,79531],[4,-7],[1,-2],[1,-3]],[[74728,79505],[-2,-3],[-2,-12],[-1,-2],[-1,-2]],[[74696,79462],[-1,-2],[1,-3],[2,-2]],[[74698,79452],[-1,-3],[-4,-8],[0,-2]],[[74693,79439],[-1,-2],[1,-3],[2,-3]],[[74718,79416],[3,0],[1,0]],[[74741,79416],[13,-17],[1,-2],[1,-3]],[[74752,79372],[0,-2],[2,-2]],[[74767,79306],[-4,-9],[-1,-3]],[[74735,79283],[-2,-2],[-1,-4],[0,-4]],[[74754,79233],[0,-2],[0,-3],[1,-3]],[[74755,79225],[-1,-3],[0,-2]],[[74754,79220],[-8,-3],[-2,-1]],[[74744,79216],[-3,-3],[-3,-5],[-6,-15]],[[74713,79175],[-2,-5],[-1,-6]],[[74710,79164],[-2,-2],[-2,-3]],[[74649,79106],[-2,-4],[-2,-4],[-2,-4]],[[74630,79082],[-2,-3],[-1,-3],[1,-3]],[[74643,79064],[1,-2],[0,-3],[0,-3]],[[74621,79024],[-3,-1],[-2,-2],[-1,-4]],[[74613,79014],[-3,-3],[-4,0],[-6,0]],[[74592,79008],[-8,-7],[-3,-5]],[[74574,78986],[-4,-2],[-25,-3]],[[74540,78962],[-5,-5],[-17,-2]],[[74511,78939],[4,-7],[2,-3]],[[74470,78936],[-5,-6],[-1,-3]],[[74464,78927],[-2,-3],[-2,-6]],[[74459,78914],[-1,-3],[0,-3],[1,-2],[1,-3]],[[74452,78882],[-10,-7],[-2,-3]],[[74436,78845],[-19,-36],[-12,-16]],[[74405,78793],[-4,-6],[-2,-4]],[[74399,78783],[-1,-3],[0,-3]],[[74399,78768],[0,-3],[1,-2],[2,-1]],[[74419,78772],[2,-1],[3,-1]],[[74428,78766],[9,-12],[2,-2]],[[74468,78764],[1,0],[2,-1]],[[74444,78700],[-5,-7],[0,-4]],[[74439,78689],[-1,-3],[1,-3]],[[74438,78670],[-2,-3],[-1,-2]],[[74435,78665],[-30,-27],[8,-18],[6,-15]],[[74475,78559],[0,-3],[2,-4]],[[74477,78552],[3,-5],[11,-10],[4,-2]],[[74675,78617],[1,-4],[4,-10]],[[74711,78573],[1,-3],[2,-5]],[[74713,78552],[-4,-10],[-2,-10],[0,-6]],[[74707,78526],[-1,-3],[0,-6],[2,-22],[0,-6],[0,-6]],[[74706,78462],[0,-3],[2,-3]],[[74726,78440],[2,-2],[2,-3],[3,-6]],[[74734,78425],[1,-8],[1,-3]],[[74736,78411],[-1,-3],[0,-3]],[[74745,78354],[14,-16],[8,-5]],[[74767,78333],[2,-5],[8,-14]],[[74777,78314],[30,-36],[2,-5],[5,-7]],[[74831,78251],[1,-5],[1,-4]],[[74836,78232],[2,-3],[8,-6]],[[74877,78165],[3,-7],[2,-5]],[[74884,78149],[2,-5],[15,-22],[3,-5]],[[74905,78114],[0,-2],[0,-3],[0,-6],[2,-2]],[[74925,78098],[7,-3],[6,-3]],[[74962,78056],[0,-2],[1,-5]],[[74962,78034],[-1,-3],[-2,-10]],[[74959,78021],[-2,-3],[-1,-2]],[[74956,78016],[-3,-2],[-3,-2]],[[74934,78009],[-37,-18],[-3,0]],[[74867,78038],[-3,0],[-2,-2],[-1,-5],[0,-4]],[[74861,78018],[-1,-4],[0,-5]],[[74860,78009],[-1,-3],[0,-3],[1,-3]],[[74860,78000],[0,-1],[1,-2]],[[74861,77997],[2,-4],[2,-5],[1,-2]],[[74863,77978],[-11,-9],[-3,-1]],[[74833,77961],[-2,-3],[-1,-4]],[[74829,77940],[0,-3],[0,-3]],[[74819,77919],[0,-6],[0,-2],[0,-3]],[[74819,77905],[-2,-3],[-1,-3]],[[74815,77893],[2,-2],[13,-10]],[[74830,77881],[2,-1],[3,0]],[[74861,77892],[1,-1],[2,-3]],[[74865,77850],[1,-4],[3,-5]],[[74872,77838],[2,-2],[7,-1],[2,-1],[2,-1]],[[74876,77794],[3,-7],[4,-3]],[[74883,77784],[2,-1],[2,-2],[2,-5]],[[74888,77733],[9,-7],[1,0]],[[75144,77898],[23,-7],[1,0]],[[75360,78036],[23,-6],[1,0]],[[75527,78170],[45,-12],[1,0]],[[75666,78250],[5,-22],[7,-14]],[[75687,78205],[11,-5],[11,-10]],[[75725,78159],[10,-8],[1,1],[0,-1]],[[75822,78209],[3,-20],[0,-26],[5,-22],[3,-11],[3,-7]],[[75839,78119],[5,-3],[18,-6]],[[76079,78096],[97,-5],[6,-4],[4,-7],[2,-9]],[[76188,78051],[11,-36],[2,-13],[2,-58]],[[76213,77890],[6,-10],[23,-13],[5,-5]],[[76318,77799],[48,3],[9,-2],[8,-9]],[[76383,77791],[6,-18],[5,-13]],[[76396,77757],[13,-10],[1,0]],[[76495,77745],[4,-2],[13,-14]],[[76512,77729],[4,-6],[4,-4]],[[76521,77718],[-2,-4]],[[76517,77691],[3,-24],[3,-30]],[[76516,77602],[-3,-12],[0,-15],[4,-17]],[[76517,77558],[6,-21],[4,-12]],[[76545,77479],[17,-12],[7,-8]],[[76574,77448],[3,-9],[3,-16]],[[76552,77313],[0,-18],[3,-16]],[[76556,77265],[-2,-13],[-4,-14],[-2,-12]],[[76548,77196],[-1,-6],[-4,-21],[-10,-26]],[[76533,77143],[-9,-6],[-22,0]],[[76468,77107],[-20,-14],[-33,-25]],[[76283,77067],[-34,-1],[-11,3]],[[76159,77112],[-1,0],[-11,0]],[[76147,77112],[-116,-81],[-7,-12]],[[76024,77019],[-13,-28],[-9,-12]],[[75976,76946],[-17,-59],[9,-9]],[[75972,76871],[0,-3],[0,-3]],[[75972,76865],[-1,-2],[0,-1]],[[75970,76859],[-2,-5],[0,-4]],[[75968,76835],[-1,-5],[-1,-4],[-4,-13]],[[75897,76664],[6,-21],[3,-20],[1,-15],[0,-16],[3,-10]],[[75910,76582],[33,-62],[25,-59]],[[76124,76236],[1,-11],[0,-15]],[[76134,76154],[15,-40],[25,-51],[10,-28],[0,-20]],[[76184,76015],[-3,-10],[-7,-15]],[[76174,75990],[-12,-13],[-57,-35],[-24,-22]],[[75985,75851],[17,-49],[5,-17]],[[76008,75749],[-5,-15],[-32,-80],[-26,-93]],[[75944,75551],[2,-28],[0,-11],[-3,-9]],[[75943,75503],[-8,-6],[-3,-8]],[[75871,75402],[-6,-13],[-2,-19]],[[75863,75370],[7,-122],[-1,-67]],[[75854,75002],[-2,0],[-5,-1]],[[75791,75021],[-1,0],[-9,-3]],[[75665,75007],[-14,-3],[-4,0]],[[75630,75010],[-1,0],[-13,-5]],[[75558,75042],[-1,0],[-9,-2]],[[75548,75040],[-16,-4],[-47,3]],[[75485,75039],[-7,0],[-11,-6]],[[75467,75033],[-6,-1],[-27,10]],[[75281,75121],[-1,0],[-10,-2]],[[74985,76601],[-3,-7],[0,-7]],[[74981,76579],[-4,-6],[-8,-5]],[[74872,76683],[-11,0],[-7,-4]],[[74820,76687],[-6,-3],[-13,-15]],[[74796,76662],[-7,-7],[-7,-2],[-14,4]],[[74691,76728],[0,-1],[0,1]],[[74577,76888],[-6,-1],[-5,-2]],[[74505,76941],[-1,0],[-9,-1]],[[74303,77279],[-2,-4],[-1,-3]],[[0,99999],[39569,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-258],[0,-257],[0,-258],[0,-257],[0,-214],[0,-214],[0,-213],[1,0]],[[43699,96137],[39,-11],[10,-2]],[[45175,94194],[-20,-1]],[[43883,92175],[125,-9],[125,-10],[126,-10]],[[44259,92146],[125,-9],[125,-10],[125,-9],[125,-10],[130,-10],[103,-15]],[[44022,90186],[-13,-22],[-61,-102],[-74,-41],[-74,-40]],[[43278,89163],[102,-46],[126,-29],[126,-29],[115,-14],[115,-14],[96,-25],[-3,-5],[11,3]],[[39571,86205],[-2,-1],[0,-111],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-255],[0,-256],[0,-255],[0,-256],[0,-255],[0,-256],[0,-255],[0,-256],[0,-256],[0,-255],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-1],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-263],[0,-263],[0,-263],[0,-263],[0,-263],[0,-263],[0,-263],[0,-263],[0,-263],[0,-263],[2,-4]],[[39571,43190],[-2,-5],[0,-273],[0,-272],[0,-273],[0,-273],[0,-272],[0,-273],[0,-273],[0,-272],[0,-273],[0,-272],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-273],[0,-273],[0,-273],[0,-273],[0,-273],[0,-273],[0,-273],[0,-273],[0,-273],[0,-273],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252]],[[37489,21062],[0,-263],[0,-264]],[[37489,20535],[0,-263],[0,-264]],[[37489,20008],[0,-263],[0,-264]],[[39569,19481],[0,-276],[0,-276],[0,-276],[0,-276],[0,-275],[0,-276],[0,-276],[0,-276],[0,-276],[0,-276],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253]],[[39569,6568],[-83,4],[-117,6],[-117,5],[-116,6],[-117,5],[-117,6],[-133,36],[-133,37],[-116,-16],[-116,-17],[-117,-16],[-116,-16],[-102,-14],[-4,3],[-48,32],[-71,40],[-70,40],[-46,22],[-47,17],[-93,29],[-94,29],[-94,28],[-91,32],[-43,11],[-47,9],[-60,6],[-71,4],[-70,5],[-77,6],[-77,6],[-74,2],[-46,0],[-45,-5],[-53,-9],[-59,-18],[-11,0],[-7,3],[-26,12],[-36,13],[-40,10],[-42,8],[-45,4],[-38,1],[-46,-1],[-38,-4],[-41,-7],[-38,-10],[-44,-15],[-32,-16],[-67,-19],[-14,23],[-121,56],[-119,55],[-119,56],[-119,55],[-120,56],[-119,55]],[[35407,7218],[0,-6]],[[31250,22241],[-1,1],[0,-1],[-6,-16],[-34,-57],[-63,-72],[-125,-86],[-63,-33],[-31,-32],[-24,-48],[-17,-59],[-10,-158],[12,-107],[36,-150],[12,-90],[11,-48],[34,-95],[80,-144],[27,-72],[4,-48],[-7,-44],[-18,-40],[-34,-40],[-3,-17],[24,-48],[44,-73],[18,-41],[18,-77],[6,-86],[23,-58],[22,-91],[14,-31],[47,-56],[1,0]],[[31039,19513],[-2,0],[-89,-16],[-22,-4]],[[29859,21888],[-1,0],[-12,-8],[-19,-28],[-11,-1]],[[29789,21879],[-1,1],[-6,-2],[-35,-26],[-9,-11],[-20,-28],[-12,-12],[-12,-7]],[[29900,23142],[2,0],[9,-4],[0,1]],[[29926,23659],[14,-4],[1,0]],[[29991,23779],[4,0],[18,-17],[9,-4],[1,1]],[[30099,24711],[21,-2]],[[30103,25014],[-10,-2]],[[30059,25040],[-7,-1],[-6,-3],[-6,-5],[-10,-2]],[[29996,25053],[-1,0],[-10,-1]],[[29986,25136],[9,-6],[7,-4],[37,-10]],[[30065,25136],[5,-2],[19,-11],[12,-1]],[[30139,25142],[10,-5],[22,-22],[12,-5],[1,0]],[[30073,25337],[-2,0],[-12,-5],[-10,-1]],[[30065,25683],[-1,1],[-3,-4],[-6,-2]],[[30025,25861],[-1,0],[-3,-1],[-3,-2],[-1,-1]],[[30053,25944],[12,-4],[0,1]],[[29997,26597],[7,0],[5,-11],[4,-13],[6,-5],[1,1]],[[30059,27549],[11,-5],[3,-1],[0,1]],[[30081,27621],[-1,0],[-4,-3],[-1,-2],[-1,-3],[-1,-1]],[[30063,27735],[13,-10],[10,-2]],[[30086,28017],[2,0],[10,-17],[2,-4],[4,-6],[5,-1],[1,0]],[[30122,27992],[5,-1],[1,0]],[[30273,28474],[12,-2],[1,0]],[[30221,29460],[5,-2],[5,0]],[[30241,29623],[4,0],[6,-6],[5,-4]],[[30274,29734],[5,-3],[5,-1],[1,0]],[[30307,29777],[5,-2],[12,-9],[2,-2],[2,-3],[2,-2],[1,0]],[[30397,29922],[5,-2],[13,-11],[2,0]],[[30445,30052],[-5,-1]],[[30558,30961],[5,0],[5,-2],[10,-6],[1,0]],[[30587,31136],[-1,0],[-4,-2]],[[30581,31534],[-1,0],[-10,-3],[-12,-28],[-6,-2]],[[30451,32205],[5,-2],[12,-8],[1,0]],[[30455,32290],[0,1],[-9,-1]],[[30425,32727],[4,-4],[2,-12],[2,-12],[3,-7],[1,1]],[[30466,32758],[10,-2],[1,0]],[[30514,33136],[22,-19],[9,-5],[1,1]],[[30577,33284],[-1,0],[-10,-2]],[[30700,34339],[5,-4],[6,-7],[4,-2],[0,1]],[[30898,34941],[12,-1],[10,-11],[9,-13],[11,-8],[1,0]],[[31008,34975],[7,-1],[1,0]],[[30982,36030],[5,-2],[5,0],[1,0]],[[30976,36333],[5,-13],[3,-3],[0,1]],[[31005,36393],[4,-1],[5,-3],[1,0]],[[31383,37486],[6,-1]],[[31472,37666],[2,-1],[3,-2],[5,-1],[5,-3],[1,1]],[[31578,37735],[1,-1],[0,1]],[[31604,37895],[23,-13],[12,-12],[8,-17],[3,-27],[2,-3],[25,-8],[7,-7],[35,-78],[8,-11],[9,-5],[1,0]],[[31782,37729],[19,-5],[15,-3],[1,0]],[[31937,37724],[52,-23],[20,-20],[11,-5]],[[32030,37681],[2,-1],[6,-2],[5,-7],[6,-6],[6,-2],[2,-4],[8,-17],[2,-6],[3,-12],[0,-9],[-2,-7],[-4,-8],[-2,-13],[3,-10],[6,-8],[4,-6],[0,-6],[-2,-10],[0,-6],[1,-4],[5,-6],[1,-4],[2,-12],[4,-10],[15,-29],[0,-8],[-2,-6],[-2,-5],[-1,-6],[-1,-5],[-1,-11],[0,-6],[0,-9],[2,-3],[3,-2],[2,-4],[8,-29],[3,-5],[6,-5],[4,-12],[1,-15],[-3,-14],[4,-7],[0,-17],[6,-14],[0,5]],[[32248,37779],[24,-3],[6,-5],[11,-19],[4,-3],[0,1]],[[32537,37781],[12,-4],[4,-2],[0,-5],[2,-21],[0,-6],[-1,-4],[2,-7],[0,-18],[2,-9],[4,-8],[13,-12],[12,-16],[4,-6],[1,-5],[0,-5],[1,-4],[2,-2],[3,-1],[2,-2],[2,-4],[2,-4]],[[32603,37636],[-1,0],[2,-8],[-1,-6],[-2,-4],[-1,-5],[2,-5],[4,-4],[3,-2],[4,0],[6,-3],[5,-8],[7,-16],[3,-3],[11,-7],[3,-4],[2,-8],[4,-9],[20,-25],[5,-3],[2,-1],[10,-2],[3,-2],[2,-2],[1,-3],[0,-3],[0,-6],[1,-4],[1,-1],[2,0]],[[32703,37492],[6,-14],[2,-10],[-1,-9],[-4,-10],[0,-7],[3,-6],[7,-5],[4,-2],[1,0]],[[32722,37429],[0,-1],[2,-5],[-2,-13],[0,-7],[5,-6],[-3,-13],[1,-3],[4,-2],[1,-5],[2,-6],[1,-6],[8,-16],[1,-4],[1,-5],[1,-4],[2,-2],[0,-2],[2,-4],[3,-3],[1,0],[2,-7],[2,-6],[6,-12],[4,-11],[5,-21],[3,-8],[1,-5],[-2,-13],[1,-3],[0,-2],[4,-11],[10,-20],[31,-35],[2,-4],[7,-17],[3,-6],[6,-6],[3,-5],[3,-7],[2,-5],[1,-7],[0,-10],[1,-10],[3,-4],[4,-4],[4,-5],[4,-9],[3,-2],[3,-2],[2,0]],[[32882,37065],[4,-4],[14,-27],[2,-2],[3,-2],[5,0],[-1,-4],[-1,-7],[0,-5],[4,-6],[3,-13],[2,-3],[6,0],[5,-2],[5,-4],[4,-5],[3,-6],[3,-3],[4,-2],[6,-1],[18,-15],[2,-7],[2,-8],[3,-8],[6,-3],[2,-2],[6,-10],[2,-4],[2,0]],[[33002,36913],[2,-1],[3,-5],[4,-8],[4,-6],[5,-3],[3,-5],[1,-12],[-1,-12],[-2,-9],[2,-5],[5,-15],[7,-8],[5,-10],[3,-12],[1,-7],[1,-3],[4,-13],[3,-5],[9,-10],[1,1]],[[33072,36769],[10,-9],[9,-14],[8,-8],[6,-2],[1,0]],[[33129,36737],[3,-1],[5,-9],[3,-2],[1,1]],[[33153,36727],[3,-1],[3,-2],[5,-5],[2,-1],[1,-3],[4,-18],[2,-1],[10,-1],[5,-4],[9,-12],[17,-6],[1,0]],[[33224,36673],[2,0],[3,-4],[6,-9],[3,-3],[2,-1],[2,0]],[[33250,36657],[21,-6],[1,0]],[[33318,36664],[4,-2],[100,-121],[11,-20],[5,-12],[2,-4],[2,-1],[7,-2],[5,-5],[5,-2],[2,-3],[4,-6],[2,-5],[7,-6],[6,-5],[2,-3],[1,-4],[0,-5],[1,-4],[7,-6],[11,-17],[2,-6],[6,-19],[5,-11],[9,-6],[3,-8],[3,-1],[4,-2],[2,-3],[2,-3],[2,-4],[12,-7],[8,-11],[6,-4],[11,-12],[5,-4],[6,0],[1,-1],[3,-3],[6,-10],[2,-4],[9,-4],[53,-73],[6,-3],[14,-1],[4,-2],[2,-3],[2,-1],[2,-3],[1,-4],[1,-3],[62,-22],[6,-5],[3,-7],[7,-16],[18,-37],[1,-5],[1,-5],[2,-3],[3,-2],[1,1]],[[33825,36143],[25,-31],[3,-8],[1,0]],[[33856,36104],[19,-18],[3,0],[1,0]],[[33885,36087],[2,-1],[2,-5],[1,-6],[2,-5],[3,-3],[22,0],[6,-4],[4,-6],[12,-26],[4,-6],[9,-8],[3,-7],[9,-36],[6,-14],[8,-10],[9,-40],[0,-6],[17,-25],[4,-7],[2,-8],[0,-9],[-4,-48],[-1,-10],[-3,-6],[-4,-2],[-3,-4],[-1,-13],[-2,-3],[-3,0]],[[33981,35770],[-2,1],[0,-3],[-2,-12],[-1,-5],[-2,-3],[-2,0]],[[33969,35748],[-1,0],[-3,0],[-6,-5],[-4,-6],[-5,-16],[1,-5],[3,-3],[2,-2],[3,-1],[-3,-8],[-4,-8],[-6,-8],[-5,-3],[-4,-5],[1,-10],[4,-19],[-3,-8],[-2,-2],[-4,-5],[-5,-6],[-6,-4],[-1,-4],[1,-4],[6,-4],[0,-6],[-1,-6],[-2,-5],[-10,-14],[-2,-8],[13,-7],[0,-8],[-4,-9],[-32,-43],[-9,-10],[-18,-11],[-3,-6],[-2,-18],[-3,-12],[-1,-4]],[[33847,35453],[-2,1],[1,-10],[3,-5],[4,-4],[4,-5],[1,-8],[-5,-7],[-6,-4],[-5,-2],[-2,-4],[0,-9],[1,-18],[-1,-9],[-1,-8],[-9,-30],[-2,-8],[1,-7],[7,-12],[-1,-5],[-4,-6],[-1,-4],[-1,-10],[-1,-8],[-1,-9],[1,-9],[1,-3],[7,-9],[1,-4],[3,-8],[1,-3],[-2,-3],[-4,-7],[-1,-1],[0,-7],[1,-5],[2,-4],[0,-5],[-1,-4],[-2,0]],[[33823,35194],[0,1],[-1,-1],[-2,-6],[-1,-11],[-1,-43],[-1,-3]],[[33813,35131],[-1,0],[-5,-3],[0,-5],[3,-7],[1,-4],[-4,-7]],[[33798,35108],[-1,1],[-4,-3],[-4,-12],[4,-8],[5,-7],[1,-9],[-3,-6],[-7,-1],[-6,-1],[-3,-5],[-3,-7],[-6,-4],[-12,-6],[-4,-6],[-2,-7],[0,-7],[4,-7],[-2,-8],[-5,-11],[-2,-7],[-1,-5],[-1,-4],[0,-9],[-1,-2]],[[33739,34979],[-1,1],[0,-1],[-2,-2],[-2,-4],[-1,-4],[-1,-5],[-1,-4],[0,-10],[0,-9],[-1,-6],[-14,-4],[-6,-7],[-4,-11],[-2,-16],[2,-7],[4,-7],[6,-9],[4,-11],[0,-11],[-1,-28],[1,2],[1,0]],[[33822,34857],[29,-7],[1,0]],[[33874,34856],[7,-1],[5,-2],[17,-6],[8,-6],[4,-2],[12,-5],[12,-7],[29,-11],[3,-2],[45,-40],[4,-3],[2,-1],[7,-2],[1,1]],[[34065,34776],[1,-1],[6,-3],[2,-3],[5,-8],[1,-3],[3,-3],[3,-1],[13,-7],[3,-2],[7,-11],[3,-3],[3,-2],[6,0],[3,-1],[11,-1]],[[34192,34767],[9,-7],[17,-31],[10,-11],[1,1]],[[34273,34751],[18,-4],[11,-25],[5,-15],[7,-15],[9,-12],[8,-6],[1,0],[1,0]],[[34409,34833],[6,0],[7,-3],[19,-13],[6,-2],[1,0]],[[34467,34817],[5,-3],[5,-11],[4,-21],[2,-5],[3,-4],[8,-3],[17,-17],[0,1]],[[34578,34945],[7,-1],[1,0]],[[34644,35036],[5,0],[6,-4],[5,-5],[4,-3],[12,-1]],[[34766,35192],[2,-2],[2,-3],[1,-2],[1,1]],[[35288,37524],[1,-3],[4,0],[1,0]],[[35540,38068],[5,-2],[5,-2],[4,-1],[0,1]],[[35791,39286],[-1,0],[-6,-2]],[[35681,39369],[-11,-1]],[[35479,39548],[-14,-2]],[[35417,39608],[-1,0],[-33,-10]],[[35301,39807],[-2,0],[-2,-2],[-12,-16],[-3,-3],[-2,-2]],[[35567,41222],[3,-1],[4,-5],[3,-1],[1,0]],[[35614,41373],[6,-6],[0,1]],[[35743,41689],[3,-7],[1,-11],[2,-11],[6,-4],[1,0]],[[35855,42157],[1,0],[4,-1]],[[35950,42887],[-1,0],[-3,-2],[-1,0]],[[35925,42999],[1,-1],[1,-1],[1,-1],[0,1]],[[34316,44740],[-2,0],[-1,-4]],[[34252,44791],[-1,0],[-3,-1],[-3,-2],[-6,-6],[-4,-3],[-5,0]],[[34175,44867],[-1,0],[-3,-1],[-2,-2],[-3,-1]],[[34356,48756],[0,1],[-16,-9],[-3,-3],[-2,-3],[-2,-4]],[[34304,48799],[-2,0],[-1,-1],[-3,-1],[-15,-10],[-1,-2],[-12,-17],[-2,-2],[-1,-1]],[[34230,48871],[-3,-1],[-7,-2],[-2,0]],[[34111,49019],[-1,1],[-9,-3]],[[34092,49047],[-3,0],[-5,-4],[-6,-4],[-3,0]],[[33851,49312],[-5,0]],[[33814,49372],[-1,0],[-5,0]],[[33729,49574],[-1,1],[-3,-1],[-5,-3]],[[33619,50727],[5,-6],[5,-8],[5,-13],[1,-12],[2,-12],[8,-11],[5,-5],[3,-1],[2,-1],[1,1]],[[33698,50712],[28,-5]],[[33733,50714],[0,-1],[2,-2],[1,-1],[0,-1],[0,-1],[2,-2],[2,-3],[2,1]],[[33799,50888],[3,-9],[2,-4],[5,-5],[6,-4],[6,-2],[5,0]],[[33835,50870],[4,-4],[3,-6],[2,-12],[2,-4],[9,-5],[13,-1]],[[33892,50920],[3,-1],[9,-6],[4,-1],[1,0]],[[33955,50951],[9,0],[23,-9],[2,0]],[[34077,51098],[6,-1],[10,-13],[5,-2],[1,1]],[[34136,51122],[8,-13],[2,-16],[3,-11],[5,-9],[8,-8],[5,-2],[4,0]],[[34182,51065],[4,0],[3,-3],[2,-5],[4,-7],[4,-3],[19,-7],[4,0]],[[34242,51064],[5,-2],[5,0],[1,0]],[[34266,51075],[1,0],[3,-1],[5,-5],[4,-7],[4,-4],[1,0]],[[34177,51401],[-1,1],[-6,-8],[-2,-2]],[[34158,51469],[-1,2],[-5,-6]],[[34138,51543],[-1,0],[-9,-3]],[[34128,51573],[-4,-1],[-5,-5],[-2,-1]],[[34099,51746],[0,1],[-1,1],[-2,-3],[-2,-3],[-2,-2]],[[34080,51884],[-1,2],[-9,-14],[-6,-2]],[[34048,51880],[-1,1],[0,-10],[-2,-5],[-8,-4],[0,-1],[-2,-4],[-1,-1]],[[34018,51870],[-2,0],[-3,-10],[-1,-1]],[[33935,52740],[2,-1],[3,-3],[3,-1],[1,0]],[[33985,52782],[10,-10],[1,1]],[[34021,52784],[2,-2],[4,-8],[2,-2],[1,1]],[[34078,52792],[2,-1],[2,-2],[2,0]],[[34089,52875],[4,0],[3,-2],[3,-6],[1,-11],[1,1]],[[34096,52928],[-3,0],[-2,-3],[-1,-5],[1,-6],[3,-6],[0,-4],[-2,-2],[-2,-1]],[[34080,52951],[-1,0],[-4,-3]],[[34146,53362],[2,6]],[[30918,94533],[-5,11]],[[30913,94544],[105,131]],[[35404,99741],[-35404,258]],[[694,26111],[0,-222],[0,-223],[0,-222],[0,-222],[0,-222]],[[541,48605],[0,-211],[0,-263],[0,-262],[0,-262],[0,-263],[0,-262],[0,-263],[0,-262],[0,-262],[0,-263],[0,-262],[0,-2],[0,-28]],[[1431,41666],[-119,0],[-120,0],[-119,0],[-120,0],[-120,0],[-3,0]],[[2083,34444],[0,-236],[0,-219]],[[2083,32812],[0,-210],[0,-311],[0,-231]],[[2083,31508],[0,-243],[0,-275]],[[2083,25000],[-130,-209]],[[0,21672],[0,26933]],[[99996,265],[0,265],[0,265],[0,265],[0,265],[0,265],[0,265],[0,265],[0,265],[0,265],[0,265]],[[99996,2915],[0,-82],[0,-55],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-185],[0,-278],[-99996,-278]],[[0,0],[99996,0],[0,265]],[[99996,26110],[0,-243],[0,-243],[0,-244],[0,-243],[0,-243],[0,-243],[0,-244],[0,-243],[0,243],[0,244],[0,243],[0,243],[0,243],[0,244],[0,243],[0,243]],[[99996,2915],[0,273],[0,274],[-1,273],[0,274],[0,273],[0,273],[0,274],[0,273],[-1,274],[0,273],[0,274],[0,273],[0,273],[-1,274],[-138,10],[-138,10],[-139,11],[-138,10],[-138,10],[-139,10],[-138,11],[-139,10],[-138,10],[-138,10],[-139,11],[-138,10],[-138,10],[-139,10],[-138,11]],[[97921,19711],[-3,0],[-137,0],[-136,0],[-137,0],[-137,0],[-136,0]],[[97235,19711],[-4,0],[-138,0],[-139,0],[-138,0],[-139,0],[-138,0],[-139,0],[-138,0],[-139,0],[-139,0],[-138,0]],[[97918,78150],[0,198],[0,198],[4,218]],[[0,76666],[0,-55272],[99996,-5],[0,-223],[0,-185],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-185],[0,-186],[0,-185],[0,-185],[0,-185],[0,-237],[0,-237]],[[0,0],[2073,236],[0,236],[0,236],[0,236],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,262],[0,262],[0,262],[0,262],[0,262],[0,262],[0,262],[0,226],[0,227],[0,227],[0,227]],[[6248,7284],[0,-265],[0,-264],[0,-265],[0,-265],[0,-264],[0,-265],[0,-265],[0,-264],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-266],[0,-265],[0,-265],[0,-266],[0,-265],[0,-266],[0,-265],[0,-266],[-6248,-265]],[[10408,8202],[0,-257],[0,-257],[0,-257],[0,-257],[0,-258],[0,-257],[0,-257],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-212],[0,-212],[0,-211],[-10408,-212]],[[0,0],[0,6685]],[[0,0],[18749,275],[0,274],[0,275],[0,275],[0,274],[0,275],[0,274],[0,275],[0,275],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,185],[0,186],[0,185],[0,244]],[[22906,10178],[0,-265],[0,-265],[0,-265],[0,-265],[0,-265],[0,-265],[0,-265],[0,-253],[-1,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-262],[0,-262],[0,-261],[-1,-262],[0,-262],[0,-262],[0,-262],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[-1,-253],[0,-252],[0,-253],[0,-233],[0,-234],[0,-233],[-22903,-234]],[[27085,9145],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-277],[-27085,-277]],[[31071,13054],[-47,0]],[[31252,13278],[0,-224]],[[31252,13054],[-91,0],[-90,0]],[[31184,11874],[68,0]],[[31252,11874],[0,-236],[0,-236],[0,-235],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-257],[0,-258],[0,-257],[0,-258],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257]],[[31252,258],[18748,-258]],[[50000,0],[-50000,0]],[[33690,15633],[0,-144],[0,-144],[118,0],[0,144],[0,144],[-118,0]],[[0,0],[31252,258]],[[31252,11874],[120,0],[120,0],[121,0]],[[31613,11874],[0,236],[0,236],[0,236],[0,236],[0,236]],[[31613,13054],[-121,0],[-120,0],[-120,0]],[[34331,14552],[0,183],[1,183],[-133,0],[-133,0],[-1,-235],[0,-235],[-1,-236],[133,0],[133,0],[0,212]],[[35407,7212],[0,-225],[0,-224],[0,-225],[0,-224],[0,-225],[0,-243],[0,-243],[0,-243],[0,-243],[0,-243],[0,-243],[0,-243],[0,-243],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-273],[0,-274],[0,-273],[0,-274],[-35407,-273]],[[0,0],[39569,258],[0,257],[0,258],[0,257],[0,258],[0,257],[0,258],[0,258],[0,257],[0,258],[0,257],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,78]],[[39569,5689],[137,0],[136,0],[136,0],[136,0],[137,0],[136,0],[136,0],[136,0]],[[40659,5689],[0,251],[0,252],[0,251],[0,252],[0,252],[0,251]],[[42110,7743],[53,13],[59,7],[0,-122],[0,-164],[0,-160],[0,-181]],[[42222,7136],[156,1],[134,0],[134,0],[134,0],[134,0],[141,0]],[[43055,7137],[0,196],[0,278],[0,222],[0,156]],[[43055,7989],[43,8],[91,25]],[[43745,8093],[0,-213],[0,-213],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[1,-253],[0,-252],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[6254,-264]],[[47286,10707],[0,-227],[0,-227],[0,-226],[124,0],[125,0],[124,0],[125,0],[124,0]],[[47908,10027],[0,-247],[0,-246],[0,-247],[0,-246],[0,-247],[0,-246],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[-1,-252],[0,-253],[0,-159],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-257],[0,-258],[0,-257],[0,-258],[0,-258],[0,-257],[0,-258],[0,-257],[-1,-258],[0,-257],[2094,-258]],[[0,0],[14581,258],[0,257],[0,258],[0,257],[0,258],[0,257],[0,258],[0,258],[0,257],[0,258],[0,257],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,253],[0,253],[0,253],[0,253],[0,254],[0,253],[0,253],[0,253],[0,250],[0,249],[0,250],[0,250],[0,249],[0,250]],[[50000,0],[39583,253],[0,254],[0,253],[0,253],[0,241],[0,241],[0,240],[0,241],[0,241],[0,240],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,244],[0,245],[0,244],[0,245],[0,244],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,211],[0,144],[-131,0],[-132,0],[-131,0],[-132,0],[-131,0],[-131,0],[0,236],[0,236],[0,236]],[[93754,11648],[0,-276],[0,-276],[0,-277],[0,-276],[0,-276],[0,-276],[0,-276],[0,-276],[0,-276],[0,-277],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-276],[-93754,-277]],[[96189,8894],[-37,-21]],[[96152,8873],[0,206],[0,206],[-133,0],[-132,0],[-132,0],[-133,0],[-132,0],[-133,0],[-132,0],[-132,0],[-133,0],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261],[0,-261]],[[94960,5631],[134,1],[135,1],[134,0],[135,1]],[[95498,5634],[134,0],[135,1],[134,0],[135,1],[134,0]],[[96170,5636],[135,1],[134,1],[134,0]],[[96573,5638],[135,1],[134,0],[135,1],[134,0]],[[97111,5640],[135,1],[134,1],[135,0],[134,1],[134,0]],[[97783,5643],[135,1],[0,-260],[0,-260],[0,-260],[-1,-260]],[[97917,4604],[0,-260],[0,-260],[0,-260],[0,-260],[0,-260],[0,-260],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[-1,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[-97916,-266]],[[50000,0],[14589,190],[0,190],[0,190],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,232],[0,231],[0,232],[0,231],[0,232],[0,231],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,196],[0,196]],[[67229,12576],[0,-237],[0,-238],[1,-237],[0,-237],[0,-238],[138,0],[139,0],[138,0],[139,0],[138,0],[139,0],[138,0],[138,0],[139,0],[138,0],[139,0],[0,-170],[0,-171],[0,-95],[0,-223],[0,-222],[0,-223],[0,-223],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-256],[0,-256],[0,-255],[0,-256],[0,-255],[0,-256],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[-18753,-195]],[[83788,9001],[0,-236],[0,-236],[0,-236],[0,-235],[0,-236],[134,0],[134,0],[134,0],[134,0],[134,0],[134,0],[134,0],[134,0],[0,236],[0,235],[0,236],[0,236],[0,236],[-134,0],[-134,0],[-134,0],[-134,0],[-134,0],[-134,0],[-134,0],[-134,0]],[[50000,0],[31250,157],[0,156],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,225],[0,224],[0,225],[0,224],[-1,225],[0,42]],[[81249,12589],[-132,1],[-132,0],[-132,0],[-132,1],[-132,0],[-1,222],[-1,221]],[[85418,12896],[0,-228],[0,-227],[0,-228],[0,-228],[0,-250],[0,-250],[0,-250],[0,-250],[0,-250],[0,-250],[0,-250],[0,-250],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-266],[0,-267],[0,-266],[0,-266],[0,-266],[0,-266],[0,-257],[0,-258],[0,-257],[0,-258],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[-35418,-258]],[[60424,11400],[0,-233],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-1],[0,-278],[0,-277],[0,-278],[0,-278],[0,-278],[0,-277],[0,-278],[0,-278],[0,-277],[0,-278],[0,-1],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257]],[[60424,1],[-7,0],[-92,0],[-93,0],[-93,0],[-92,0],[-93,0],[-92,0],[-93,0],[-93,0],[-92,0],[-93,0],[-92,0],[-93,0],[-93,0],[-92,0],[-93,0],[-92,0],[-93,0],[-92,0],[-93,0],[-93,0],[-92,0],[-93,0],[-92,0],[-93,0],[-93,0],[-92,0],[-93,0],[-92,0],[-93,0],[-93,0],[-92,0],[-93,0],[-92,0],[-93,0],[-93,0],[-92,0],[-93,0],[-92,0],[-93,0],[-92,0],[-93,0],[-93,0],[-92,0],[-93,0],[-92,0]],[[56251,1],[0,257],[0,256],[0,257],[0,257],[0,257],[0,257],[0,257],[0,257],[0,257],[0,257],[0,257],[0,7],[0,194],[0,194],[0,194],[0,7],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,1],[0,7],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,277],[0,1],[0,6],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,260],[0,1],[0,7],[0,196]],[[71485,11669],[1,-110],[9,0],[111,0],[111,0],[111,0],[111,0],[0,226],[0,226],[0,226],[-3,0]],[[72918,12540],[0,-234],[0,-233],[0,-234],[0,-250],[0,-250],[0,-250],[0,-250],[0,-250],[0,-250],[0,-250],[0,-250],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-242],[0,-242],[0,-241],[0,-242],[0,-242],[0,-242],[0,-257],[0,-258],[0,-257],[0,-258],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[-22918,-258]],[[77086,13221],[0,-256],[0,-257],[0,-257],[0,-257],[0,-257],[0,-257],[0,-257],[0,-256],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-257],[0,-258],[0,-257],[0,-258],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[-27086,-258]],[[79130,6997],[0,-236],[0,-236],[0,-235],[0,-236],[0,-236],[134,0],[134,0],[134,0],[134,0],[134,0],[134,0],[134,0],[134,0],[0,236],[0,236],[0,235],[0,236],[0,236],[-134,0],[-134,0],[-134,0],[-134,0],[-134,0],[-134,0],[-134,0],[-134,0]],[[81249,12589],[0,-233],[0,-233],[0,-233],[0,-233],[0,-233],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-156],[-31249,-157]],[[47908,10027],[0,215],[0,215],[0,216],[0,119]],[[53579,11201],[1,-227],[0,-226],[0,-227],[0,-227],[0,-226],[-135,0],[-135,0],[-135,1],[-136,0],[-135,0],[-135,1],[-135,0],[-135,0],[-135,1],[-135,0],[-135,0],[0,-128],[0,-222],[0,-223],[0,-222],[0,-223],[0,-7],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-6],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-7],[0,-277],[0,-277],[0,-277],[0,-278],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-277],[0,-7],[0,-238],[0,-237]],[[52094,238],[-2094,-238]],[[0,0],[52094,238]],[[56251,1],[-56251,-1]],[[50000,0],[10424,1]],[[40659,7205],[0,-253],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252]],[[39569,5689],[0,-72],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-252],[0,-253],[0,-253],[0,-252],[0,-253],[0,-257],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[0,-258],[0,-257],[0,-258],[0,-257],[0,-258],[-122,0],[-123,0],[-122,0],[-122,0],[-123,0],[-122,0],[-123,0],[-122,0],[-122,0],[-123,0],[-122,0],[-123,0],[-122,0],[-122,0],[-123,0],[-122,0],[-123,0],[-122,0],[-122,0],[-123,0],[-122,0],[-123,0],[-122,0],[-123,0],[-122,0],[-122,0],[-123,0],[-122,0],[-123,0],[-122,0],[-122,0],[-123,0],[-122,0],[-123,0],[0,274],[0,273],[0,273],[0,274],[0,273],[0,253],[0,252],[0,253],[0,252],[0,253],[0,253],[0,252],[0,253],[0,252],[0,253],[0,252],[0,243],[0,243],[0,243],[0,243],[0,243],[0,243],[0,244],[0,243],[0,224],[0,225],[0,224],[0,224],[0,225]],[[97917,4604],[0,260],[0,260],[0,260],[0,260],[-134,-1]],[[97783,5643],[-134,-1],[-135,0],[-134,-1],[-135,0],[-134,-1]],[[96573,5638],[-134,-1],[-135,0],[-134,-1]],[[95498,5634],[-134,-1],[-135,-1],[-134,0],[-135,-1]],[[96152,8873],[-13,-7]],[[99996,265],[-99996,-265]],[[42996,7978],[59,11]],[[43055,7989],[0,-124],[0,-87],[0,-200],[0,-221],[0,-220]],[[42222,7136],[0,197],[0,207],[0,99],[0,126],[14,1]],[[31071,13054],[135,0],[136,0],[135,0],[136,0]],[[31613,11874],[-107,0],[-108,0],[-107,0],[-107,0]],[[2081,89166],[0,-5]],[[2302,88864],[129,-179],[100,-139]],[[2862,88064],[87,-148],[108,-138],[-1,-1]],[[2483,85820],[-96,-99],[-117,-119]],[[2054,85375],[-115,-121],[-129,-138]],[[1810,85116],[-129,-139],[-56,-60],[-77,-85]],[[1121,84359],[-58,-64],[-116,-132]],[[947,84163],[-43,-49],[-66,-75]],[[838,84039],[-38,-44],[-73,-84]],[[331,83450],[-69,-82],[-88,-104]],[[85,83158],[-85,-102],[3,250],[0,185],[0,185],[0,186],[0,185],[0,185],[0,185],[0,185],[0,186],[0,185],[0,185],[0,185],[0,185],[0,278],[0,278],[0,185],[0,185],[0,185],[0,186],[0,185],[0,185],[0,185],[0,185],[0,185],[0,186],[0,185],[0,185],[0,185],[0,185],[0,186],[0,185],[0,185],[0,185],[0,185],[0,185],[0,186],[0,185],[0,185],[0,185],[0,185],[0,186],[0,185],[0,185],[0,185],[0,185],[0,23],[-3,4]]],"bbox":[-180,-90,179.9996735489134,90],"transform":{"scale":[0.003600032735816492,0.0018000180001800019],"translate":[-180,-90]}} diff --git a/docs/static/data/examples/geo/us-airports.csv b/docs/static/data/examples/geo/us-airports.csv new file mode 100644 index 000000000..608ba6d51 --- /dev/null +++ b/docs/static/data/examples/geo/us-airports.csv @@ -0,0 +1,3377 @@ +iata,name,city,state,country,latitude,longitude +00M,Thigpen,Bay Springs,MS,USA,31.95376472,-89.23450472 +00R,Livingston Municipal,Livingston,TX,USA,30.68586111,-95.01792778 +00V,Meadow Lake,Colorado Springs,CO,USA,38.94574889,-104.5698933 +01G,Perry-Warsaw,Perry,NY,USA,42.74134667,-78.05208056 +01J,Hilliard Airpark,Hilliard,FL,USA,30.6880125,-81.90594389 +01M,Tishomingo County,Belmont,MS,USA,34.49166667,-88.20111111 +02A,Gragg-Wade,Clanton,AL,USA,32.85048667,-86.61145333 +02C,Capitol,Brookfield,WI,USA,43.08751,-88.17786917 +02G,Columbiana County,East Liverpool,OH,USA,40.67331278,-80.64140639 +03D,Memphis Memorial,Memphis,MO,USA,40.44725889,-92.22696056 +04M,Calhoun County,Pittsboro,MS,USA,33.93011222,-89.34285194 +04Y,Hawley Municipal,Hawley,MN,USA,46.88384889,-96.35089861 +05C,Griffith-Merrillville,Griffith,IN,USA,41.51961917,-87.40109333 +05F,Gatesville - City/County,Gatesville,TX,USA,31.42127556,-97.79696778 +05U,Eureka,Eureka,NV,USA,39.60416667,-116.0050597 +06A,Moton Municipal,Tuskegee,AL,USA,32.46047167,-85.68003611 +06C,Schaumburg,Chicago/Schaumburg,IL,USA,41.98934083,-88.10124278 +06D,Rolla Municipal,Rolla,ND,USA,48.88434111,-99.62087694 +06M,Eupora Municipal,Eupora,MS,USA,33.53456583,-89.31256917 +06N,Randall,Middletown,NY,USA,41.43156583,-74.39191722 +06U,Jackpot/Hayden,Jackpot,NV,USA,41.97602222,-114.6580911 +07C,Dekalb County,Auburn,IN,USA,41.30716667,-85.06433333 +07F,Gladewater Municipal,Gladewater,TX,USA,32.52883861,-94.97174556 +07G,Fitch H Beach,Charlotte,MI,USA,42.57450861,-84.81143139 +07K,Central City Municipal,Central City,NE,USA,41.11668056,-98.05033639 +08A,Wetumpka Municipal,Wetumpka,AL,USA,32.52943944,-86.32822139 +08D,Stanley Municipal,Stanley,ND,USA,48.30079861,-102.4063514 +08K,Harvard State,Harvard,NE,USA,40.65138528,-98.07978667 +08M,Carthage-Leake County,Carthage,MS,USA,32.76124611,-89.53007139 +09A,Butler-Choctaw County,Butler,AL,USA,32.11931306,-88.1274625 +09J,Jekyll Island,Jekyll Island,GA,USA,31.07447222,-81.42777778 +09K,Sargent Municipal,Sargent,NE,USA,41.63695083,-99.34038139 +09M,Charleston Municipal,Charleston,MS,USA,33.99150222,-90.078145 +09W,South Capitol Street,Washington,DC,USA,38.86872333,-77.00747583 +0A3,Smithville Municipal,Smithville,TN,USA,35.98531194,-85.80931806 +0A8,Bibb County,Centreville,AL,USA,32.93679056,-87.08888306 +0A9,Elizabethton Municipal,Elizabethton,TN,USA,36.37094306,-82.17374111 +0AK,Pilot Station,Pilot Station,AK,USA,61.93396417,-162.8929358 +0B1,Col. Dyke,Bethel,ME,USA,44.42506444,-70.80784778 +0B4,Hartington Municipal,Hartington,NE,USA,42.60355556,-97.25263889 +0B5,Turners Falls,Montague,MA,USA,42.59136361,-72.52275472 +0B7,Warren-Sugar Bush,Warren,VT,USA,44.11672722,-72.82705806 +0B8,Elizabeth,Fishers Island,NY,USA,41.25130806,-72.03161139 +0C0,Dacy,Chicago/Harvard,IL,USA,42.40418556,-88.63343222 +0C4,Pender Municipal,Pender,NE,USA,42.11388722,-96.72892556 +0D1,South Haven Municipal,South Haven,MI,USA,42.35083333,-86.25613889 +0D8,Gettysburg Municipal,Gettysburg,SD,USA,44.98730556,-99.9535 +0E0,Moriarty,Moriarty,NM,USA,34.98560639,-106.0094661 +0E8,Crownpoint,Crownpoint,NM,USA,35.71765889,-108.2015961 +0F2,Bowie Municipal,Bowie,TX,USA,33.60166667,-97.77556 +0F4,Loup City Municipal,Loup City,NE,USA,41.29028694,-98.99064278 +0F7,Fountainhead Lodge Airpark,Eufaula,OK,USA,35.38898833,-95.60165111 +0F8,William R Pogue Municipal,Sand Springs,OK,USA,36.17528,-96.15181028 +0F9,Tishomingo Airpark,Tishomingo,OK,USA,34.19592833,-96.67555694 +0G0,North Buffalo Suburban,Lockport,NY,USA,43.10318389,-78.70334583 +0G3,Tecumseh Municipal,Tecumseh,NE,USA,40.39944417,-96.17139694 +0G6,Williams County,Bryan,OH,USA,41.46736111,-84.50655556 +0G7,Finger Lakes Regional,Seneca Falls,NY,USA,42.88062278,-76.78162028 +0H1,Trego Wakeeney,Wakeeney,KS,USA,39.0044525,-99.89289917 +0I8,Cynthiana-Harrison County,Cynthiana,KY,USA,38.36674167,-84.28410056 +0J0,Abbeville Municipal,Abbeville,AL,USA,31.60016778,-85.23882222 +0J4,Florala Municipal,Florala,AL,USA,31.04247361,-86.31156111 +0J6,Headland Municipal,Headland,AL,USA,31.364895,-85.30965556 +0K7,Humboldt Municipal,Humboldt,IA,USA,42.7360825,-94.24524167 +0L5,Goldfield,Goldfield,NV,USA,37.71798833,-117.2384119 +0L7,Jean,Jean,NV,USA,35.76827222,-115.3296378 +0L9,Echo Bay,Overton,NV,USA,36.31108972,-114.4638672 +0M0,Dumas Municipal,Dumas,AR,USA,33.8845475,-91.53429111 +0M1,Scott,Parsons,TN,USA,35.63778,-88.127995 +0M4,Benton County,Camden,TN,USA,36.01122694,-88.12328833 +0M5,Humphreys County,Waverly,TN,USA,36.11659972,-87.73815889 +0M6,Panola County,Batesville,MS,USA,34.36677444,-89.90008917 +0M8,Byerley,Lake Providence,LA,USA,32.82587917,-91.187665 +0O3,Calaveras Co-Maury Rasmussen,San Andreas,CA,USA,38.14611639,-120.6481733 +0O4,Corning Municipal,Corning,CA,USA,39.94376806,-122.1713781 +0O5,University,Davis,CA,USA,38.53146222,-121.7864906 +0Q5,Shelter Cove,Shelter Cove,CA,USA,40.02764333,-124.0733639 +0Q6,Shingletown,Shingletown,CA,USA,40.52210111,-121.8177683 +0R0,Columbia-Marion County,Columbia,MS,USA,31.29700806,-89.81282944 +0R1,Atmore Municipal,Atmore,AL,USA,31.01621528,-87.44675972 +0R3,Abbeville Chris Crusta Memorial,Abbeville,LA,USA,29.97576083,-92.08415167 +0R4,Concordia Parish,Vidalia,LA,USA,31.56683278,-91.50011889 +0R5,David G Joyce,Winnfield,LA,USA,31.96366222,-92.66026056 +0R7,Red River,Coushatta,LA,USA,31.99071694,-93.30739306 +0S7,Dorothy Scott,Oroville,WA,USA,48.958965,-119.4119622 +0S9,Jefferson County International,Port Townsend,WA,USA,48.04981361,-122.8012792 +0V2,Harriet Alexander,Salida,CO,USA,38.53916389,-106.0458483 +0V3,Pioneer Village,Minden,NE,USA,40.5149125,-98.94565083 +0V4,Brookneal/Campbell County,Brookneal,VA,USA,37.14172222,-79.01638889 +0V6,Mission Sioux,Mission,SD,USA,43.30694778,-100.6281936 +0V7,Kayenta,Kayenta,AZ,USA,36.70972139,-110.2367978 +10C,Galt,Chicago/Greenwood/Wonderlake,IL,USA,42.40266472,-88.37588917 +10D,Winsted Municipal,Winsted,MN,USA,44.94996278,-94.0669175 +10G,Holmes County,Millersburg,OH,USA,40.53716667,-81.95436111 +10N,Wallkill,Wallkill,NY,USA,41.62787111,-74.13375583 +10U,Owyhee,Owyhee,NV,USA,41.95323306,-116.1876014 +11A,Clayton Municipal,Clayton,AL,USA,31.88329917,-85.48491361 +11D,Clarion Cty,Clarion,PA,USA,41.22581222,-79.44098972 +11IS,Schaumburg Heliport,Chicago/Schaumburg,IL,USA,42.04808278,-88.05257194 +11J,Early County,Blakely,GA,USA,31.39698611,-84.89525694 +11R,Brenham Municipal,Brenham,TX,USA,30.219,-96.37427778 +12C,Rochelle Municipal,Rochelle,IL,USA,41.89300139,-89.07829 +12D,Tower Municipal,Tower,MN,USA,47.81833333,-92.29166667 +12J,Brewton Municipal,Brewton,AL,USA,31.05126306,-87.06796833 +12K,Superior Municipal,Superior,NE,USA,40.04636111,-98.06011111 +12Y,Le Sueur Municipal,Le Sueur,MN,USA,44.43746472,-93.91274083 +13C,Lakeview,Lakeview,MI,USA,43.45213722,-85.26480333 +13K,Eureka Municipal,Eureka,KS,USA,37.8515825,-96.29169806 +13N,Trinca,Andover,NJ,USA,40.96676444,-74.78016556 +14J,Carl Folsom,Elba,AL,USA,31.40988861,-86.08883583 +14M,Hollandale Municipal,Hollandale,MS,USA,33.18262167,-90.83065444 +14Y,Todd Field,Long Prairie,MN,USA,45.89857556,-94.87391 +15F,Haskell Municipal,Haskell,TX,USA,33.19155556,-99.71793056 +15J,Cook County,Adel,GA,USA,31.13780556,-83.45308333 +15M,Luka,Luka,MS,USA,34.7723125,-88.16587444 +15Z,McCarthy 2,McCarthy,AK,USA,61.43706083,-142.9037372 +16A,Nunapitchuk,Nunapitchuk,AK,USA,60.90582833,-162.4391158 +16G,Seneca County,Tiffin,OH,USA,41.09405556,-83.2125 +16J,Dawson Municipal,Dawson,GA,USA,31.74328472,-84.419285 +16S,Myrtle Creek Municipal,Myrtle Creek,OR,USA,42.99845056,-123.3095092 +17G,Port Bucyrus-Crawford County,Bucyrus,OH,USA,40.78141667,-82.97469444 +17J,Donalsonville Municipal,Donalsonville,GA,USA,31.00694444,-84.87761111 +17K,Boise City,Boise City,OK,USA,36.77430028,-102.5104364 +17M,Magee Municipal,Magee,MS,USA,31.86127139,-89.80285361 +17N,Cross Keys,Cross Keys,NJ,USA,39.70547583,-75.03300306 +17Z,Manokotak,Manokotak,AK,USA,58.98896583,-159.0499739 +18A,Franklin County,Canon,GA,USA,34.34010472,-83.13348333 +18I,McCreary County,Pine Knot,KY,USA,36.69591306,-84.39160389 +19A,Jackson County,Jefferson,GA,USA,34.17402472,-83.56066528 +19M,C A Moore,Lexington,MS,USA,33.12546111,-90.02555694 +19N,Camden,Berlin,NJ,USA,39.77842056,-74.94780389 +19P,Port Protection SPB,Port Protection,AK,USA,56.32880417,-133.6100844 +1A3,Martin Campbell,Copperhill,TN,USA,35.01619111,-84.34631083 +1A5,Macon County,Franklin,NC,USA,35.222595,-83.41904389 +1A6,Middlesboro-Bell County,Middlesboro,KY,USA,36.6106375,-83.73741611 +1A7,Jackson County,Gainesboro,TN,USA,36.39728139,-85.64164278 +1A9,Autauga County,Prattville,AL,USA,32.438775,-86.51044778 +1B0,Dexter Regional,Dexter,ME,USA,45.00839444,-69.23976722 +1B1,Columbia Cty,Hudson,NY,USA,42.29130028,-73.71031944 +1B3,Fair Haven,Fair Haven,VT,USA,43.61534389,-73.27455556 +1B9,Mansfield Municipal,Mansfield,MA,USA,42.00013306,-71.19677139 +1C5,Clow,Chicago/Plainfield,IL,USA,41.69597444,-88.12923056 +1D1,Milbank Municipal,Milbank,SD,USA,45.23053806,-96.56596556 +1D2,Canton -Plymouth - Mettetal,Plymouth,MI,USA,42.35003667,-83.45826833 +1D3,Platte Municipal,Platte,SD,USA,43.40332833,-98.82952972 +1D6,Hector Municipal,Hector,MN,USA,44.73107278,-94.71471333 +1D7,Webster Municipal,Webster,SD,USA,45.29329111,-97.51369889 +1D8,Redfield Municipal,Redfield,SD,USA,44.86247611,-98.52953972 +1F0,Downtown Ardmore,Ardmore,OK,USA,34.14698917,-97.12265194 +1F1,Lake Murray State Park,Overbrook,OK,USA,34.07509694,-97.10667917 +1F4,Madill Municipal,Madill,OK,USA,34.14040194,-96.81203222 +1F9,Bridgeport Municipal,Bridgeport,TX,USA,33.17533333,-97.82838889 +1G0,Wood County,Bowling Green,OH,USA,41.391,-83.63013889 +1G3,Kent State University,Kent,OH,USA,41.15186167,-81.41658306 +1G4,Grand Canyon West,Peach Springs,AZ,USA,35.99221,-113.8166164 +1G5,Freedom,Medina,OH,USA,41.13144444,-81.76491667 +1G6,Michael,Cicero,NY,USA,43.18166667,-76.12777778 +1H0,Creve Coeur,St Louis,MO,USA,38.72752,-90.50830417 +1H2,Effingham County Memorial,Effingham,IL,USA,39.07045083,-88.53351972 +1H3,Linn State Tech. College,Linn,MO,USA,38.47149444,-91.81531667 +1H8,Casey Municipal,Casey,IL,USA,39.30250917,-88.00406194 +1I5,Freehold,Freehold,NY,USA,42.36425,-74.06596806 +1I9,Delphi Municipal,Delphi,IN,USA,40.54281417,-86.68167194 +1J0,Tri-County,Bonifay,FL,USA,30.84577778,-85.60138889 +1K2,Lindsay Municipal,Lindsay,OK,USA,34.85007333,-97.58642028 +1K4,David J. Perry,Goldsby,OK,USA,35.1550675,-97.47039389 +1K5,Waynoka Municipal,Waynoka,OK,USA,36.56670028,-98.85231333 +1K9,Satanta Municipal,Satanta,KS,USA,37.45419111,-100.9921119 +1L0,St. John the Baptist Parish,Reserve,LA,USA,30.08720833,-90.58266528 +1L1,Lincoln Co,Panaca,NV,USA,37.78746444,-114.4216567 +1L7,Escalante Municipal,Escalante,UT,USA,37.74532639,-111.5701653 +1L9,Parowan,Parowan,UT,USA,37.85969694,-112.816055 +1M1,North Little Rock Municipal,No Lit Rock,AR,USA,34.83398056,-92.25792778 +1M2,Belzoni Municipal,Belzoni,MS,USA,33.14518056,-90.51528472 +1M4,Posey,Haleyville,AL,USA,34.28034806,-87.60044139 +1M5,Portland Municipal,Portland,TN,USA,36.59287528,-86.47691028 +1M7,Fulton,Fulton,KY,USA,36.52589417,-88.91561611 +1MO,Mountain Grove Memorial,Mountain Grove,MO,USA,37.12071889,-92.311245 +1N2,Spadaro,East Moriches,NY,USA,40.82787639,-72.74871083 +1N4,Woodbine Muni,Woodbine,NJ,USA,39.21915,-74.794765 +1N7,Blairstown,Blairstown,NJ,USA,40.97114556,-74.99747556 +1N9,Allentown Queen City Muni,Allentown,PA,USA,40.57027778,-75.48830556 +1ND3,Hamry,Kindred,ND,USA,46.6485775,-97.00564306 +1O1,Grandfield Municipal,Grandfield,OK,USA,34.23758944,-98.74200917 +1O2,Lampson,Lakeport,CA,USA,38.99017472,-122.8997175 +1O3,Lodi,Lodi,CA,USA,38.20241667,-121.2684167 +1O4,Thomas Municipal,Thomas,OK,USA,35.73338222,-98.73063833 +1O6,Dunsmuir Municipal-Mott,Dunsmuir,CA,USA,41.26320889,-122.2719528 +1R1,Jena,Jena,LA,USA,31.671005,-92.15846722 +1R7,Brookhaven-Lincoln County,Brookhaven,MS,USA,31.6058475,-90.40931583 +1R8,Bay Minette Municipal,Bay Minette,AL,USA,30.87046278,-87.81738167 +1S0,Pierce County,Puyallup,WA,USA,47.10391667,-122.2871944 +1S3,Tillitt,Forsyth,MT,USA,46.27110639,-106.6239206 +1S5,Sunnyside Municipal,Sunnyside,WA,USA,46.32763139,-119.9705964 +1S6,Priest River Muni,Priest River,ID,USA,48.19018611,-116.9093644 +1U7,Bear Lake County,Paris,ID,USA,42.24714972,-111.33826 +1V0,Navajo State Park,Navajo Dam,NM,USA,36.80833833,-107.6514444 +1V2,Grant County,Hyannis,NE,USA,42.00942944,-101.7693439 +1V5,Boulder Muni,Boulder,CO,USA,40.03942972,-105.2258217 +1V6,Fremont County,Canon City,CO,USA,38.42838111,-105.1054994 +1V9,Blake,Delta,CO,USA,38.78539722,-108.0636611 +20A,Robbins,Oneonta,AL,USA,33.97231972,-86.37942722 +20M,Macon Municipal,Macon,MS,USA,33.13345889,-88.53559806 +20N,Kingston-Ulster,Kingston,NY,USA,41.9852525,-73.96409722 +20U,Beach,Beach,ND,USA,46.92362444,-103.9785389 +20V,McElroy Airfield,Kremmling,CO,USA,40.05367972,-106.3689467 +21D,Lake Elmo,St Paul,MN,USA,44.99748861,-92.85568111 +21F,Jacksboro Municipal,Jacksboro,TX,USA,33.228725,-98.14671083 +22B,Mountain Meadow Airstrip,Burlington,CT,USA,41.77287528,-73.01121667 +22I,Vinton County,McArthur,OH,USA,39.328125,-82.44182167 +22M,Pontotoc County,Pontotoc,MS,USA,34.27593833,-89.03839694 +22N,Carbon Cty-Jake Arner Memorial,Lehighton,PA,USA,40.80950889,-75.76149639 +23J,Herlong,Jacksonville,FL,USA,30.27778889,-81.80594722 +23M,Clarke County,Quitman,MS,USA,32.08487111,-88.73893389 +23N,Bayport Aerodrome,Bayport,NY,USA,40.75843139,-73.05372083 +23R,Devine Municipal,Devine,TX,USA,29.1384075,-98.94189028 +24A,Jackson County,Sylva,NC,USA,35.3168625,-83.20936806 +24J,Suwannee County,Live Oak,FL,USA,30.30105583,-83.02318778 +24N,Jicarilla Apache Nation,Dulce,NM,USA,36.828535,-106.8841914 +25J,Cuthbert-Randolph,Cuthbert,GA,USA,31.70016583,-84.82492194 +25M,Ripley,Ripley,MS,USA,34.72226778,-89.01504944 +25R,International,Edinburg,TX,USA,26.44201083,-98.12945306 +26A,Ashland/Lineville,Ashland/Lineville,AL,USA,33.28761417,-85.80412861 +26N,Ocean City Muni cipal,Ocean City,NJ,USA,39.26347222,-74.60747222 +26R,Jackson County,Edna/Ganado,TX,USA,29.00101,-96.58194667 +26U,McDermitt State,McDermitt,OR,USA,42.00211083,-117.7231972 +27A,Elbert County-Patz,Elberton,GA,USA,34.09519722,-82.81586417 +27D,Myers,Canby,MN,USA,44.72801889,-96.26309972 +27J,Newberry Municipal,Newberry,SC,USA,34.30927778,-81.63972222 +27K,Georgetown-Scott County,Georgetown,KY,USA,38.23442528,-84.43468667 +28J,Kay Larkin,Palatka,FL,USA,29.65863889,-81.68855556 +29D,Grove City,Grove City,PA,USA,41.14597611,-80.16592194 +29G,Portage County,Ravenna,OH,USA,41.210195,-81.25163083 +29S,Gardiner,Gardiner,MT,USA,45.04993556,-110.7466008 +2A0,Mark Anton,Dayton,TN,USA,35.48624611,-84.93109722 +2A1,Jamestown Municipal,Jamestown,TN,USA,36.34970833,-84.94664472 +2A3,Larsen Bay,Larsen Bay,AK,USA,57.53510667,-153.9784169 +2A9,Kotlik,Kotlik,AK,USA,63.03116111,-163.5299278 +2AK,Lime Village,Lime Village,AK,USA,61.35848528,-155.4403508 +2B3,Parlin,Newport,NH,USA,43.38812944,-72.18925417 +2B7,Pittsfield Municipal,Pittsfield,ME,USA,44.76852778,-69.37441667 +2B9,Post Mills,Post Mills,VT,USA,43.884235,-72.25370333 +2D1,Barber,Alliance,OH,USA,40.97089139,-81.09981889 +2D5,Oakes Municipal,Oakes,ND,USA,46.17301972,-98.07987556 +2F5,Lamesa Municipal,Lamesa,TX,USA,32.75627778,-101.9194722 +2F6,Skiatook Municipal,Skiatook,OK,USA,36.357035,-96.01138556 +2F7,Commerce Municipal,Commerce,TX,USA,33.29288889,-95.89641806 +2F8,Morehouse Memorial,Bastrop,LA,USA,32.75607944,-91.88057194 +2G2,Jefferson County Airpark,Steubenville,OH,USA,40.35944306,-80.70007806 +2G3,Connellsville,Connellsville,PA,USA,39.95893667,-79.65713306 +2G4,Garrett County,Oakland,MD,USA,39.58027778,-79.33941667 +2G9,Somerset County,Somerset,PA,USA,40.03911111,-79.01455556 +2H0,Shelby County,Shelbyville,IL,USA,39.41042861,-88.8454325 +2H2,Aurora Memorial Municipal,Aurora,MO,USA,36.96230778,-93.69531111 +2I0,Madisonville Municipal,Madisonville,KY,USA,37.35502778,-87.39963889 +2I5,Chanute,Rantoul,IL,USA,40.29355556,-88.14236111 +2IS,Airglades,Clewiston,FL,USA,26.74200972,-81.04978917 +2J2,Liberty County,Hinesville,GA,USA,31.78461111,-81.64116667 +2J3,Louisville Municipal,Louisville,GA,USA,32.98654083,-82.38568139 +2J5,Millen,Millen,GA,USA,32.89376972,-81.96511583 +2J9,Quincy Municipal,Quincy,FL,USA,30.59786111,-84.55741667 +2K3,Stanton County Municipal,Johnson,KS,USA,37.58271111,-101.73281 +2K4,Scott,Mangum,OK,USA,34.89172583,-99.52675667 +2K5,Telida,Telida,AK,USA,63.39387278,-153.2689733 +2M0,Princeton-Caldwell County,Princeton,KY,USA,37.11560444,-87.85556944 +2M2,Lawrenceburg Municipal,Lawrenceburg,TN,USA,35.2343025,-87.25793222 +2M3,Sallisaw Municipal,Sallisaw,OK,USA,35.43816667,-94.80277778 +2M4,G. V. Montgomery,Forest,MS,USA,32.35347778,-89.48867944 +2M8,Charles W. Baker,Millington,TN,USA,35.27897583,-89.93147611 +2O1,Gansner,Quincy,CA,USA,39.94378056,-120.9468983 +2O3,Angwin-Parrett,Angwin,CA,USA,38.57851778,-122.4352572 +2O6,Chowchilla,Chowchilla,CA,USA,37.11244417,-120.2468406 +2O7,Independence,Independence,CA,USA,36.81382111,-118.2050956 +2O8,Hinton Municipal,Hinton,OK,USA,35.50592472,-98.34236111 +2P2,Washington Island,Washington Island,WI,USA,45.38620833,-86.92448056 +2Q3,Yolo Co-Davis/Woodland/Winters,Davis/Woodland/Winters,CA,USA,38.5790725,-121.8566322 +2R0,Waynesboro Municipal,Waynesboro,MS,USA,31.64599472,-88.63475667 +2R4,Peter Prince,Milton,FL,USA,30.63762083,-86.99365278 +2R5,St Elmo,St Elmo,AL,USA,30.50190833,-88.27511667 +2R9,Karnes County,Kenedy,TX,USA,28.8250075,-97.86558333 +2S1,Vashon Municipal,Vashon,WA,USA,47.45815333,-122.4773506 +2S6,Sportsman Airpark,Newberg,OR,USA,45.29567333,-122.9553783 +2S7,Chiloquin State,Chiloquin,OR,USA,42.58319167,-121.8761261 +2S8,Wilbur,Wilbur,WA,USA,47.75320639,-118.7438936 +2T1,Muleshoe Municipal,Muleshoe,TX,USA,34.18513639,-102.6410981 +2V1,Stevens,Pagosa Springs,CO,USA,37.277505,-107.0558742 +2V2,Vance Brand,Longmont,CO,USA,40.16367139,-105.1630369 +2V5,Wray Municipal,Wray,CO,USA,40.10032333,-102.24096 +2V6,Yuma Municipal,Yuma,CO,USA,40.10415306,-102.7129869 +2W5,Maryland,Indian Head,MD,USA,38.60053667,-77.07296917 +2W6,Captain Walter Francis Duke Regional,Leonardtown,MD,USA,38.31536111,-76.55011111 +2Y3,Yakutat SPB,Yakutat,AK,USA,59.5624775,-139.7410994 +2Y4,Rockwell City Municipal,Rockwell City,IA,USA,42.38748056,-94.61803333 +31F,Gaines County,Seminole,TX,USA,32.67535389,-102.652685 +32M,Norfolk,Norfolk,MA,USA,42.12787528,-71.37033556 +32S,Stevensville,Stevensville,MT,USA,46.52511111,-114.0528056 +33J,Geneva Municipal,Geneva,AL,USA,31.05527778,-85.88033333 +33M,Water Valley,Water Valley,MS,USA,34.16677639,-89.68619722 +33N,Delaware Airpark,Dover,DE,USA,39.21837556,-75.59642667 +33S,Pru,Ritzville,WA,USA,47.12487194,-118.3927539 +34A,Laurens County,Laurens,SC,USA,34.50705556,-81.94719444 +35A,"Union County, Troy Shelton",Union,SC,USA,34.68680111,-81.64121167 +35D,Padgham,Allegan,MI,USA,42.53098278,-85.82513556 +35S,Wasco State,Wasco,OR,USA,45.58944444,-120.6741667 +36K,Lakin,Lakin,KS,USA,37.96946389,-101.2554472 +36S,Happy Camp,Happy Camp,CA,USA,41.79067944,-123.3889444 +36U,Heber City Municipal/Russ McDonald,Heber,UT,USA,40.48180556,-111.4288056 +37T,Calico Rock-Izard County,Calico Rock,AR,USA,36.16565278,-92.14523611 +37W,Harnett County,Erwin,NC,USA,35.37880028,-78.73362917 +38A,Shaktoolik,Shaktoolik,AK,USA,64.36263194,-161.2025369 +38S,Deer Lodge-City-County,Deer Lodge,MT,USA,46.38881583,-112.7669842 +38U,Wayne Wonderland,Loa,UT,USA,38.36247972,-111.5960164 +39N,Princeton,Princeton,NJ,USA,40.39834833,-74.65760361 +3A0,Grove Hill Municipal,Grove Hill,AL,USA,31.68932389,-87.7613875 +3A1,Folsom,Cullman,AL,USA,34.26870833,-86.85833611 +3A2,New Tazewell Municipal,Tazewell,TN,USA,36.41008417,-83.55546167 +3A3,Anson County,Wadesboro,NC,USA,35.02397611,-80.08127333 +3AU,Augusta Municipal,Augusta,KS,USA,37.67162778,-97.07787222 +3B0,Southbridge Municipal,Southbridge,MA,USA,42.10092806,-72.03840833 +3B1,Greenville Municipal,Greenville,ME,USA,45.46302778,-69.55161111 +3B2,Marshfield,Marshfield,MA,USA,42.09824111,-70.67212083 +3B9,Chester,Chester,CT,USA,41.38390472,-72.50589444 +3BS,Jack Barstow,Midland,MI,USA,43.66291528,-84.261325 +3CK,Lake In The Hills,Lake In The Hills,IL,USA,42.20680306,-88.32304028 +3CM,James Clements Municipal,Bay City,MI,USA,43.54691667,-83.89550222 +3CU,Cable Union,Cable,WI,USA,46.19424889,-91.24640972 +3D2,Ephraim/Gibraltar,Ephraim,WI,USA,45.13535778,-87.18586556 +3D4,Frankfort Dow Memorial,Frankfort,MI,USA,44.62506389,-86.20061944 +3F3,De Soto Parish,Mansfield,LA,USA,32.07345972,-93.76551889 +3F4,Vivian,Vivian,LA,USA,32.86133333,-94.01015361 +3F7,Jones Memorial,Bristow,OK,USA,35.80685278,-96.42185556 +3FM,Fremont Municipal,Fremont,MI,USA,43.43890528,-85.99478 +3FU,Faulkton Municipal,Faulkton,SD,USA,45.03191861,-99.11566417 +3G3,Wadsworth Municipal,Wadsworth,OH,USA,41.00158222,-81.75513111 +3G4,Ashland County,Ashland,OH,USA,40.90297222,-82.25563889 +3G7,Williamson/Sodus,Williamson,NY,USA,43.23472222,-77.12097222 +3GM,Grand Haven Memorial Airpark,Grand Haven,MI,USA,43.03404639,-86.1981625 +3I2,Mason County,Point Pleasant,WV,USA,38.91463889,-82.09858333 +3I7,Phillipsburg,Phillipsburg,OH,USA,39.91344194,-84.40030889 +3J1,Ridgeland,Ridgeland,SC,USA,32.49268694,-80.99233028 +3J7,Greene County Airpark,Greensboro,GA,USA,33.59766667,-83.139 +3JC,Freeman,Junction City,KS,USA,39.04327556,-96.84328694 +3K3,Syracuse-Hamilton County Municipal,Syracuse,KS,USA,37.99167972,-101.7462822 +3K6,St Louis-Metro East,Troy/Marine/St. Louis,IL,USA,38.73290861,-89.80656722 +3K7,Mark Hoard Memorial,Leoti,KS,USA,38.45696333,-101.3532161 +3LC,Logan County,Lincoln,IL,USA,40.15847222,-89.33497222 +3LF,Litchfield Municipal,Litchfield,IL,USA,39.16635306,-89.67489694 +3M7,Lafayette Municipal,Lafayette,TN,USA,36.518375,-86.05828083 +3M8,North Pickens,Reform,AL,USA,33.38900611,-88.00557806 +3M9,Warren Municipal,Warren,AR,USA,33.56044333,-92.08538861 +3MY,Mt. Hawley Auxiliary,Peoria,IL,USA,40.79525917,-89.6134025 +3N6,Old Bridge,Old Bridge,NJ,USA,40.32988667,-74.34678694 +3N8,Mahnomen County,Mahnomen,MN,USA,47.25996056,-95.92809778 +3ND0,Northwood Municipal,Northwood,ND,USA,47.72423333,-97.59042222 +3O1,Gustine,Gustine,CA,USA,37.26271722,-120.9632586 +3O3,Municipal,Purcell,OK,USA,34.97979444,-97.38586167 +3O4,Sayre Municipal,Sayre,OK,USA,35.16755222,-99.65787361 +3O5,Walters Municipal,Walters,OK,USA,34.37258444,-98.40588583 +3O7,Hollister Municipal,Hollister,CA,USA,36.89334528,-121.4102706 +3O9,Grand Lake Regional,Afton,OK,USA,36.5775775,-94.86190028 +3R0,Beeville Municipal,Beeville,TX,USA,28.36455528,-97.79208194 +3R1,Bay City Municipal,Bay City,TX,USA,28.973255,-95.86345528 +3R2,Le Gros Memorial,Crowley,LA,USA,30.16173611,-92.48396111 +3R4,Hart,Many,LA,USA,31.54489667,-93.48645306 +3R7,Jennings,Jennings,LA,USA,30.24269333,-92.67344778 +3S4,Illinois Valley,Illinois Valley (Cave Junction),OR,USA,42.10372417,-123.6822911 +3S8,Grants Pass,Grants Pass,OR,USA,42.51011722,-123.3879894 +3S9,Condon State-Pauling,Condon,OR,USA,45.24651889,-120.1664233 +3SG,Harry W Browne,Saginaw - H.Browne,MI,USA,43.43341028,-83.86245833 +3SQ,St Charles,St Charles,MO,USA,38.84866139,-90.50011833 +3T3,Boyceville Municipal,Boyceville,WI,USA,45.042185,-92.0293475 +3T5,Fayette Regional Air Center,La Grange,TX,USA,29.90930556,-96.9505 +3TR,Jerry Tyler Memorial,Niles,MI,USA,41.83590806,-86.22517611 +3U3,Bowman,Anaconda,MT,USA,46.15313278,-112.86784 +3U7,Benchmark,Benchmark,MT,USA,47.48133194,-112.8697678 +3U8,Big Sandy,Big Sandy,MT,USA,48.16247972,-110.1132631 +3V4,Fort Morgan Municipal,Fort Morgan,CO,USA,40.33423194,-103.8039508 +3WO,Shawano Municipal,Shawano,WI,USA,44.78777778,-88.56152444 +3Y2,George L Scott Municipal,West Union,IA,USA,42.98508917,-91.79060417 +3Y3,Winterset Madison County,Winterset,IA,USA,41.36276778,-94.02106194 +3Z9,Haines SPB,Haines,AK,USA,59.23495111,-135.4407181 +40J,Perry-Foley,Perry,FL,USA,30.06927778,-83.58058333 +40N,Chester Cty-G O Carlson,Coatesville,PA,USA,39.97897222,-75.86547222 +40U,Manila,Manila,UT,USA,40.98607,-109.6784811 +41U,Manti-Ephraim,Manti,UT,USA,39.32912833,-111.6146397 +42A,Melbourne Municipal,Melbourne,AR,USA,36.07079222,-91.82914667 +42C,White Cloud,White Cloud,MI,USA,43.55974139,-85.77421944 +42J,Keystone Airpark,Keystone Heights,FL,USA,29.84475,-82.04752778 +42S,Poplar,Poplar,MT,USA,48.11595861,-105.1821928 +43A,Montgomery County,Star,NC,USA,35.38819528,-79.79281667 +44B,Dover/Foxcroft,Dover-Foxcroft,ME,USA,45.18338806,-69.2328225 +44N,Sky Acres,Millbrook,NY,USA,41.70742861,-73.73802889 +45J,Rockingham-Hamlet,Rockingham,NC,USA,34.89107083,-79.75905806 +45OH,North Bass Island,North Bass Island,OH,USA,41.71932528,-82.82196917 +45R,Kountz - Hawthorne,Kountze/Silsbee,TX,USA,30.33633806,-94.25754361 +46A,Blairsville,Blairsville,GA,USA,34.85508722,-83.996855 +46D,Carrington Municipal,Carrington,ND,USA,47.45111111,-99.15111111 +46N,Sky Park,Red Hook,NY,USA,41.98458333,-73.83596556 +47A,Cherokee County,Canton,GA,USA,34.31058333,-84.42391667 +47J,Cheraw Municipal,Cheraw,SC,USA,34.71258333,-79.95794444 +47N,Central Jersey Regional,Manville,NJ,USA,40.52438417,-74.59839194 +47V,Curtis Municipal,Curtis,NE,USA,40.63750778,-100.4712539 +48A,Cochran,Cochran,GA,USA,32.39936111,-83.27591667 +48D,Clare Municipal,Clare,MI,USA,43.83111111,-84.74133333 +48I,Braxton County,Sutton,WV,USA,38.68704444,-80.65176083 +48K,Ness City Municipal,Ness City,KS,USA,38.47110278,-99.90806667 +48S,Harlem,Harlem,MT,USA,48.56666472,-108.7729339 +48V,Tri-County,Erie,CO,USA,40.010225,-105.047975 +49A,Gilmer County,Ellijay,GA,USA,34.62786417,-84.52492889 +49T,Downtown Heliport,Dallas,TX,USA,32.77333333,-96.80027778 +49X,Chemehuevi Valley,Chemehuevi Valley,CA,USA,34.52751083,-114.4310697 +49Y,Fillmore County,Preston,MN,USA,43.67676,-92.17973444 +4A2,Atmautluak,Atmautluak,AK,USA,60.86674556,-162.2731389 +4A4,Cornelius-Moore,Cedartown,GA,USA,34.01869444,-85.14647222 +4A5,Marshall-Searcy County,Marshall,AR,USA,35.89893667,-92.65588611 +4A6,Scottsboro Municipal,Scottsboro,AL,USA,34.68897278,-86.0058125 +4A7,Clayton County,Hampton,GA,USA,33.38911111,-84.33236111 +4A9,Isbell,Fort Payne,AL,USA,34.4728925,-85.72221722 +4B0,South Albany,South Bethlehem,NY,USA,42.56072611,-73.83395639 +4B1,Duanesburg,Duanesburg,NY,USA,42.75840889,-74.13290472 +4B6,Ticonderoga Muni,Ticonderoga,NY,USA,43.87700278,-73.41317639 +4B7,Schroon Lake,Schroon Lake,NY,USA,43.86256083,-73.74262972 +4B8,Robertson,Plainville,CT,USA,41.69037667,-72.8648225 +4B9,Simsbury Tri-Town,Simsbury,CT,USA,41.91676389,-72.77731778 +4C8,Albia Municipal,Albia,IA,USA,40.99445361,-92.76297194 +4D0,Abrams Municipal,Grandledge,MI,USA,42.77420167,-84.73309806 +4D9,Alma Municipal,Alma,NE,USA,40.11389972,-99.34565306 +4F2,Panola County-Sharpe,Carthage,TX,USA,32.17608333,-94.29880556 +4F4,Gilmer-Upshur County,Gilmer,TX,USA,32.699,-94.94886111 +4G1,Greenville Muni,Greenville,PA,USA,41.44683167,-80.39126167 +4G2,Hamburg Inc.,Hamburg,NY,USA,42.7008925,-78.91475694 +4G5,Monroe County,Woodsfield,OH,USA,39.77904472,-81.10277222 +4G6,Hornell Muni,Hornell,NY,USA,42.38214444,-77.6821125 +4G7,Fairmont Muni,Fairmont,WV,USA,39.44816667,-80.16702778 +4I0,Mingo County,Williamson,WV,USA,37.68760139,-82.26097306 +4I3,Knox County,Mount Vernon,OH,USA,40.32872222,-82.52377778 +4I7,Putnam County,Greencastle,IN,USA,39.63359556,-86.8138325 +4I9,Morrow County,Mt. Gilead,OH,USA,40.52452778,-82.85005556 +4J1,Brantley County,Nahunta,GA,USA,31.21272417,-81.90539083 +4J2,Berrien County,Nashville,GA,USA,31.21255556,-83.22627778 +4J5,Quitman-Brooks County,Quitman,GA,USA,30.80575139,-83.58654889 +4J6,St Marys,St Marys,GA,USA,30.75468028,-81.55731917 +4K0,Pedro Bay,Pedro Bay,AK,USA,59.78960972,-154.1238331 +4K5,Ouzinkie,Ouzinkie,AK,USA,57.92287611,-152.5005111 +4K6,Bloomfield Municipal,Bloomfield,IA,USA,40.73210556,-92.42826889 +4KA,Tununak,Tununak,AK,USA,60.57559667,-165.2731272 +4M1,Carroll County,Berryville,AR,USA,36.38340333,-93.61685667 +4M3,Carlisle Municipal,Carlisle,AR,USA,34.80823,-91.71205083 +4M4,Clinton Municipal,Clinton,AR,USA,35.59785528,-92.45182472 +4M7,Russellville-Logan County,Russellville,KY,USA,36.79991667,-86.81016667 +4M8,Clarendon Municipal,Clarendon,AR,USA,34.64870694,-91.39457111 +4M9,Corning Municipal,Corning,AR,USA,36.40423139,-90.64792639 +4N1,Greenwood Lake,West Milford,NJ,USA,41.12854806,-74.34584611 +4O3,Blackwell-Tonkawa Municipal,Blackwell-Tonkawa,OK,USA,36.74511583,-97.34959972 +4O4,McCurtain County Regional,Idabel,OK,USA,33.909325,-94.85835278 +4O5,Cherokee Municipal,Cherokee,OK,USA,36.78336306,-98.35035083 +4PH,Polacca,Polacca,AZ,USA,35.79167222,-110.4234653 +4R1,I H Bass Jr Memorial,Lumberton,MS,USA,31.01546028,-89.48256556 +4R3,Jackson Municipal,Jackson,AL,USA,31.47210861,-87.89472083 +4R4,Fairhope Municipal,Fairhope,AL,USA,30.4621125,-87.87801972 +4R5,Madeline Island,La Pointe,WI,USA,46.78865556,-90.75866944 +4R7,Eunice,Eunice,LA,USA,30.46628389,-92.42379917 +4R9,Dauphin Island,Dauphin Island,AL,USA,30.26048083,-88.12749972 +4S1,Gold Beach Muni,Gold Beach,OR,USA,42.41344444,-124.4242742 +4S2,Hood River,Hood River,OR,USA,45.67261833,-121.5364625 +4S3,Joseph State,Joseph,OR,USA,45.35709583,-117.2532244 +4S9,Portland-Mulino,Mulino (Portland),OR,USA,45.21632417,-122.5900839 +4SD,Reno/Stead,Reno,NV,USA,39.66738111,-119.8754169 +4T6,Mid-Way,Midlothian-Waxahachie,TX,USA,32.45609722,-96.91240972 +4U3,Liberty County,Chester,MT,USA,48.51072222,-110.9908639 +4U6,Circle Town County,Circle,MT,USA,47.41861972,-105.5619431 +4V0,Rangely,Rangely,CO,USA,40.09469917,-108.7612172 +4V1,Johnson,Walsenburg,CO,USA,37.69640056,-104.7838747 +4V9,Antelope County,Neligh,NE,USA,42.11222889,-98.0386775 +4W1,Elizabethtown Municipal,Elizabethtown,NC,USA,34.60183722,-78.57973306 +4Z4,Holy Cross,Holy Cross,AK,USA,62.18829583,-159.7749503 +4Z7,Hyder SPB,Hyder,AK,USA,55.90331972,-130.0067031 +50I,Kentland Municipal,Kentland,IN,USA,40.75873222,-87.42821917 +50J,Berkeley County,Moncks Corner,SC,USA,33.18605556,-80.03563889 +50K,Pawnee City Municipal,Pawnee City,NE,USA,40.11611111,-96.19445278 +50R,Lockhart Municipal,Lockhart,TX,USA,29.85033333,-97.67241667 +51D,Edgeley Municipal,Edgeley,ND,USA,46.34858333,-98.73555556 +51Z,Minto (New),Minto,AK,USA,65.14370889,-149.3699647 +52A,Madison Municipal,Madison,GA,USA,33.61212528,-83.46044333 +52E,Timberon,Timberon,NM,USA,32.63388889,-105.6863889 +52J,Lee County,Bishopville,SC,USA,34.24459889,-80.23729333 +53A,"Dr. C.P. Savage, Sr.",Montezuma,GA,USA,32.302,-84.00747222 +53K,Osage City Municipal,Osage City,KS,USA,38.63334222,-95.80859806 +54J,Defuniak Springs,Defuniak Springs,FL,USA,30.7313,-86.15160833 +55D,Grayling Army Airfield,Grayling,MI,USA,44.68032028,-84.72886278 +55J,Fernandina Beach Municipal,Fernandina Beach,FL,USA,30.61170083,-81.462345 +55S,Packwood,Packwood,WA,USA,46.60400083,-121.6778664 +56D,Wyandot County,Upper Sandusky,OH,USA,40.88336139,-83.3145325 +56M,Warsaw Municipal,Warsaw,MO,USA,38.34688889,-93.345425 +56S,Seaside Municipal,Seaside,OR,USA,46.01649694,-123.9054167 +57B,Islesboro,Islesboro,ME,USA,44.30285556,-68.91058722 +57C,East Troy Municipal,East Troy,WI,USA,42.79711111,-88.3725 +59B,Newton,Jackman,ME,USA,45.63199111,-70.24728944 +5A4,Okolona Mun.-Richard M. Stovall,Okolona,MS,USA,34.01580528,-88.72618944 +5A6,Winona-Montgomery County,Winona,MS,USA,33.46540139,-89.72924806 +5A8,Aleknagik,Aleknagik,AK,USA,59.28256167,-158.6176725 +5A9,Roosevelt Memorial,Warm Springs,GA,USA,32.93346222,-84.68881639 +5B2,Saratoga Cty,Saratoga Springs,NY,USA,43.05126111,-73.86119444 +5B3,Danielson,Danielson,CT,USA,41.81974056,-71.90096306 +5B7,Rensselaer Air Park,Troy,NY,USA,42.69091194,-73.57956 +5CD,Chandalar Shelf,Chandalar Camp,AK,USA,68.06543944,-149.5797392 +5D3,Owosso Community,Owosso,MI,USA,42.99297222,-84.1389125 +5F1,Post-Garza County Municipal,Post,TX,USA,33.20370556,-101.340415 +5F4,Homer Municipal,Homer,LA,USA,32.78850806,-93.00366083 +5G0,Leroy,Le Roy,NY,USA,42.98136667,-77.93751389 +5G7,Bluffton,Bluffton,OH,USA,40.88544444,-83.86863889 +5G8,Pittsburgh Boquet Airpark,Jeanette,PA,USA,40.37645722,-79.60837583 +5G9,Toledo Suburban,Lambertville,MI,USA,41.7358775,-83.65541056 +5HO,Hope,Hope,AK,USA,60.90415028,-149.6238389 +5I4,Sheridan,Sheridan,IN,USA,40.17792583,-86.21729889 +5J0,John Day State,John Day,OR,USA,44.40416667,-118.9625 +5J9,Twin City,Loris,SC,USA,34.08848361,-78.86462028 +5K2,Tribune Municipal,Tribune,KS,USA,38.45418222,-101.7462828 +5M0,Rountree,Hartselle,AL,USA,34.40823444,-86.93295056 +5M1,De Witt Municipal,De Witt,AR,USA,34.2626,-91.30984194 +5M4,Fordyce Municipal,Fordyce,AR,USA,33.84593722,-92.36542861 +5M9,Marion-Crittenden County,Marion,KY,USA,37.33616222,-88.11113611 +5N8,Casselton Regional,Casselton,ND,USA,46.85469528,-97.20870028 +5ND6,Hillsboro Municipal,Hillsboro,ND,USA,47.35940778,-97.06041639 +5NI,Nikolai,Nikolai,AK,USA,63.0174475,-154.3639608 +5NK,Naknek,Naknek,AK,USA,58.73288056,-157.0199197 +5NN,Nondalton,Nondalton,AK,USA,59.97904306,-154.8396944 +5R3,Rusty Allen,Lago Vista,TX,USA,30.498585,-97.96947222 +5R4,Foley Municipal,Foley,AL,USA,30.42769722,-87.70082 +5R5,Wharton Municipal,Wharton,TX,USA,29.25427778,-96.15438889 +5R8,De Quincy Industrial Airpark,De Quincy,LA,USA,30.44117222,-93.47349722 +5S8,St. Michael,St. Michael,AK,USA,63.49005056,-162.1103692 +5T5,Hillsboro Municipal,Hillsboro,TX,USA,32.08348611,-97.09722722 +5T6,Dona Ana County At Santa Teresa,Santa Teresa,NM,USA,31.88098556,-106.7048131 +5T9,Maverick County Meml Intl,Eagle Pass,TX,USA,28.85719361,-100.5122997 +5TE,Tetlin,Tetlin,AK,USA,63.13382361,-142.5219339 +5U3,Ennis - Big Sky,Ennis,MT,USA,45.27175833,-111.6486389 +5U8,Geraldine,Geraldine,MT,USA,47.59664,-110.2660367 +5V5,Shiprock Airstrip,Shiprock,NM,USA,36.6977775,-108.7011986 +5V8,Kadoka Municipal,Kadoka,SD,USA,43.83332611,-101.4970881 +5W8,Siler City Municipal,Siler City,NC,USA,35.7029175,-79.50529972 +5Z1,Juneau Harbor,Juneau,AK,USA,58.29888889,-134.4077778 +5Z5,Kantishna,Kantishna,AK,USA,63.54171472,-150.9939547 +60F,Seymour Municipal,Seymour,TX,USA,33.64870417,-99.26063056 +60J,Ocean Isle,Ocean Isle Beach,NC,USA,33.90850556,-78.43667222 +61A,Camden Municipal,Camden,AL,USA,31.97987056,-87.33888056 +61B,Boulder City Municipal,Boulder City,NV,USA,35.94748028,-114.8610967 +61C,Fort Atkinson Municipal,Fort Atkinson,WI,USA,42.96320278,-88.81762806 +61J,Portland Downtown Heliport,Portland,OR,USA,45.52527778,-122.6709289 +61S,Cottage Grove State,Cottage Grove,OR,USA,43.79984528,-123.0289678 +62D,Warren,Warren,OH,USA,41.26672278,-80.92897778 +62H,Giddings-Lee County,Giddings,TX,USA,30.16927167,-96.98001083 +62S,Christmas Valley,Christmas Valley,OR,USA,43.23653139,-120.6660967 +63A,Lloyd R. Roundtree Seaplane Facility,Petersburg,AK,USA,56.81131972,-132.9600567 +63C,Adams County Legion,Adams/Friendship,WI,USA,43.96117222,-89.78804889 +63S,Colville Municipal,Colville,WA,USA,48.54156944,-117.8844247 +65J,Wrens Memorial,Wrens,GA,USA,33.222645,-82.38373611 +65S,Boundary County,Bonners Ferry,ID,USA,48.72632639,-116.2954761 +66D,Sturgis Municipal,Sturgis,SD,USA,44.41761111,-103.3747778 +67L,Mesquite,Mesquite,NV,USA,36.83497556,-114.0552453 +68A,Wrangell SPB,Wrangell,AK,USA,56.466325,-132.3800181 +68S,Davenport,Davenport,WA,USA,47.65404528,-118.1677519 +6A1,Butler Municipal,Butler,GA,USA,32.56736694,-84.25074833 +6A2,Griffin-Spaulding County,Griffin,GA,USA,33.22697222,-84.27494444 +6A3,Andrews-Murphy,Andrews,NC,USA,35.19453167,-83.86490194 +6A4,Johnson County,Mountain City,TN,USA,36.41789833,-81.82511528 +6A8,Allakaket,Allakaket,AK,USA,66.55194444,-152.6222222 +6B0,Middlebury State,Middlebury,VT,USA,43.98478278,-73.09594889 +6B4,Frankfort-Highland,Utica/Frankfort,NY,USA,43.02090306,-75.17043861 +6B6,Minute Man Airfield,Stow,MA,USA,42.46045361,-71.51791444 +6B8,Caledonia County State,Lyndonville,VT,USA,44.56911417,-72.01797889 +6B9,Skaneateles Aero Drome,Skaneateles,NY,USA,42.91395583,-76.44076889 +6D6,Greenville Municipal,Greenville,MI,USA,43.14228139,-85.25380722 +6D8,Barnes County Municipal,Valley City,ND,USA,46.94100778,-98.01762611 +6F1,Talihina Municipal,Talihina,OK,USA,34.70777139,-95.07378583 +6G1,Titusville,Titusville,PA,USA,41.60880861,-79.74133111 +6G5,Barnesville - Bradfield,Barnesville,OH,USA,40.00243139,-81.19183 +6I2,Lebanon-Springfield,Springfield,KY,USA,37.63355556,-85.24216667 +6J0,Corporate,Pelion,SC,USA,33.79463889,-81.24586111 +6J2,St George,St George,SC,USA,33.1955,-80.50847222 +6J4,Saluda County,Saluda,SC,USA,33.92680111,-81.79455306 +6K3,Creighton Municipal,Creighton,NE,USA,42.47083694,-97.88367778 +6K4,Fairview Municipal,Fairview,OK,USA,36.29014667,-98.47582833 +6K8,Tok Junction,Tok,AK,USA,63.32881806,-142.9536194 +6L4,Logan County,Logan,WV,USA,37.85567778,-81.91589722 +6M2,Horseshoe Bend,Horseshoe Bend,AR,USA,36.21673389,-91.75014556 +6M6,Lewis County Regional,Monticello,MO,USA,40.12916667,-91.67833333 +6M7,Lee County-Marianna,Marianna,AR,USA,34.78027778,-90.81055556 +6M8,Marked Tree Municipal,Marked Tree,AR,USA,35.53341472,-90.40149028 +6N5,E 34th St Heliport,New York,NY,USA,40.74260167,-73.97208306 +6N7,New York Skyports Inc. SPB,New York,NY,USA,40.73399083,-73.97291639 +6N8,Thomas County,Thedford,NE,USA,41.96217028,-100.5690139 +6R3,Cleveland Municipal,Cleveland,TX,USA,30.35643,-95.00801472 +6R7,Old Harbor (New),Old Harbor,AK,USA,57.21810306,-153.2697494 +6R9,Llano Municipal,Llano,TX,USA,30.78450278,-98.66025083 +6S0,Big Timber,Big Timber,MT,USA,45.80638889,-109.9811111 +6S2,Florence Muni,Florence,OR,USA,43.97901,-124.1095631 +6S3,Columbus,Columbus,MT,USA,45.6291075,-109.2507167 +6S5,Ravalli County,Hamilton,MT,USA,46.25149444,-114.1255403 +6S8,Laurel Municipal,Laurel,MT,USA,45.70308833,-108.7610886 +6V0,Edgemont Municipal,Edgemont,SD,USA,43.29525056,-103.8435325 +6V3,Tazewell County,Richlands,VA,USA,37.06374667,-81.79826944 +6V4,Wall Municipal,Wall,SD,USA,43.99498861,-102.2504367 +6V6,Hopkins,Nucla,CO,USA,38.23879833,-108.5632597 +70J,Cairo-Grady County,Cairo,GA,USA,30.88797667,-84.15473528 +71J,Blackwell,Ozark,AL,USA,31.43113889,-85.61922222 +72S,Rosalia Municipal,Rosalia,WA,USA,47.23683778,-117.4210244 +73C,Lancaster,Lancaster,WI,USA,42.78054722,-90.68096028 +73J,Beaufort County,Beaufort,SC,USA,32.4121375,-80.63455083 +74D,Marshall Cty,Moundsville,WV,USA,39.88083333,-80.73577778 +74S,Anacortes,Anacortes,WA,USA,48.4989925,-122.6623956 +74V,Roosevelt Municipal,Roosevelt,UT,USA,40.27829167,-110.0512619 +75J,Turner County,Ashburn,GA,USA,31.68545833,-83.63211194 +76G,Marine City,Marine City,MI,USA,42.72086583,-82.59574694 +77G,Marlette Township,Marlette,MI,USA,43.31183,-83.09091444 +77S,Hobby,Creswell,OR,USA,43.93206889,-123.0067483 +78D,Caro Municipal,Caro,MI,USA,43.45908333,-83.44522222 +79D,Philippi-Barbour County Regional,Philippi,WV,USA,39.16620778,-80.06258056 +79J,Andalusia,Andalusia,AL,USA,31.30875278,-86.39376083 +79S,Fort Benton,Fort Benton,MT,USA,47.84583333,-110.6336111 +7A0,Greensboro Municipal,Greensboro,AL,USA,32.68147222,-87.66208333 +7A2,Demopolis Municipal,Demopolis,AL,USA,32.46381944,-87.95406389 +7A3,Lanett Municipal,Lanett,AL,USA,32.81204611,-85.22958111 +7A5,Roanoke Municipal,Roanoke,AL,USA,33.12928722,-85.366615 +7A8,Avery County/Morrison,Spruce Pine,NC,USA,35.94457028,-81.99566944 +7B2,La Fleur,Northampton,MA,USA,42.32816806,-72.61151667 +7D2,Troy-Oakland,Troy,MI,USA,42.54294389,-83.17790861 +7F3,Caddo Mills Municipal,Caddo Mills,TX,USA,33.03622222,-96.24313889 +7F6,Clarksville-Red River County,Clarksville,TX,USA,33.59316472,-95.06355528 +7F7,Clifton Municipal,Clifton,TX,USA,31.81682333,-97.56696361 +7F9,Comanche County-City,Comanche,TX,USA,31.91681306,-98.600325 +7G0,Ledgedale Airpark,Brockport,NY,USA,43.18118194,-77.91362333 +7G8,Geauga County,Middlefield,OH,USA,41.44960972,-81.06292972 +7I7,Bellefontaine Municipal,Bellefontaine,OH,USA,40.41208333,-83.73686111 +7K0,Pike County-Hatcher,Pikeville,KY,USA,37.56173889,-82.56660694 +7K2,Skagway SPB,Skagway,AK,USA,59.44689528,-135.3226633 +7K4,Ohio County,Hartford,KY,USA,37.45832417,-86.84995194 +7K8,Martin,South Sioux City,NE,USA,42.45416111,-96.47253111 +7KA,Tatitlek,Tatitlek,AK,USA,60.86890528,-146.6864653 +7M1,McGehee Municipal,McGehee,AR,USA,33.62022111,-91.36484056 +7M3,Bearce,Mount Ida,AR,USA,34.52926056,-93.52713472 +7M4,Osceola Municipal,Osceola,AR,USA,35.69114639,-90.01012028 +7M5,Ozark-Franklin County,Ozark,AR,USA,35.51069583,-93.8393075 +7M7,Piggott Municipal,Piggott,AR,USA,36.37820556,-90.16624167 +7N0,New Orleans Downtown Heliport,New Orleans,LA,USA,29.95194444,-90.08166667 +7N1,Corning-Painted Post,Corning,NY,USA,42.17590722,-77.11219278 +7N7,Spitfire Aerodrome,Pedrictown,NJ,USA,39.73556333,-75.39772111 +7S0,Ronan,Ronan,MT,USA,47.57076861,-114.0967783 +7S1,Twin Bridges,Twin Bridges,MT,USA,45.53325917,-112.3091656 +7S5,Independence State,Independence,OR,USA,44.86676444,-123.1982475 +7S6,White Sulphur Springs,White Sulphur Springs,MT,USA,46.50410722,-110.9132667 +7S7,Valier,Valier,MT,USA,48.29997583,-112.2508711 +7V1,Buena Vista Muni,Buena Vista,CO,USA,38.81416194,-106.1206939 +7V7,Red Cloud Municipal,Red Cloud,NE,USA,40.08473556,-98.54061694 +7W6,Hyde County,Englehard,NC,USA,35.5623925,-75.95518417 +80F,Antlers Municipal,Antlers,OK,USA,34.19260083,-95.64985889 +81B,Oxford County Regional,Norway,ME,USA,44.15742611,-70.48129583 +82C,Mauston-New Lisbon Union,New Lisbon,WI,USA,43.83872167,-90.13768389 +82V,Pine Bluffs Municipal,Pine Bluffs,WY,USA,41.15331528,-104.1302292 +83D,Mackinac County,St Ignace,MI,USA,45.89029056,-84.73755083 +84D,Cheyenne Eagle Butte,Eagle Butte,SD,USA,44.984375,-101.2510417 +84K,Meyers Chuck SPB,Meyers Chuck,AK,USA,55.73963611,-132.2550183 +84R,Smithville Municipal,Smithville,TX,USA,30.03048028,-97.16687194 +85V,Ganado,Ganado,AZ,USA,35.70140278,-109.5103814 +86F,Carnegie Municipal,Carnegie,OK,USA,35.12061417,-98.5806175 +87I,Yazoo County,Yazoo City,MS,USA,32.883215,-90.4636475 +87Y,Blackhawk Airfield,Madison,WI,USA,43.10491444,-89.18553833 +88C,Palmyra Municipal,Palmyra,WI,USA,42.88355556,-88.59743056 +88J,Allendale County,Allendale,SC,USA,32.99512944,-81.27024583 +88M,Eureka,Eureka,MT,USA,48.96885444,-115.0704464 +89D,Kelleys Island Land,Kelleys Island,OH,USA,41.60282583,-82.684625 +8A0,Albertville Municipal,Albertville,AL,USA,34.22910972,-86.25575806 +8A1,Guntersville Municipal,Guntersville,AL,USA,34.39944167,-86.27016111 +8A3,Livingston Municipal,Livingston,TN,USA,36.41217389,-85.31154861 +8B0,Rangeley Municipal,Rangeley,ME,USA,44.991895,-70.66462472 +8D1,New Holstein Municipal,New Holstein,WI,USA,43.94424111,-88.1134775 +8D3,Sisseton Municipal,Sisseton,SD,USA,45.67079278,-96.99619167 +8D4,Sparta,Sparta,MI,USA,43.12860833,-85.67689778 +8D7,Clark County,Clark,SD,USA,44.89570278,-97.71191361 +8D9,Howard Municipal,Howard,SD,USA,44.02914056,-97.53784778 +8F7,Decatur Municipal,Decatur,TX,USA,33.25463889,-97.58055556 +8G2,Lawrence,Corry,PA,USA,41.90755611,-79.64105083 +8G6,Harrison County,Cadiz,OH,USA,40.23820667,-81.01256917 +8G7,Zelienople,Zelienople,PA,USA,40.80161944,-80.16072889 +8K8,Cimarron Municipal,Cimarron,KS,USA,37.83057667,-100.3504222 +8K9,Murphys Pullout SPB,Ketchikan,AK,USA,55.38965028,-131.7380742 +8M1,Booneville-Baldwyn,Booneville,MS,USA,34.58981806,-88.64699861 +8S1,Polson,Polson,MT,USA,47.69543861,-114.1851178 +8S2,Cashmere-Dryden,Cashmere,WA,USA,47.51484611,-120.4848025 +8S5,East Cooper,Mt Pleasant,SC,USA,32.89783333,-79.78286111 +8U6,Terry,Terry,MT,USA,46.77917333,-105.3047083 +8U8,Townsend,Townsend,MT,USA,46.33111111,-111.4813889 +8V2,Stuart-Atkinson Municipal,Atkinson,NE,USA,42.56250167,-99.03787611 +8Y2,Buffalo Municipal,Buffalo,MN,USA,45.15904694,-93.84330361 +91C,Sauk - Prairie,Prairie Du Sac,WI,USA,43.2969325,-89.75595639 +91F,Arrowhead,Canadian,OK,USA,35.15426444,-95.62026389 +93B,Stonington,Stonington,ME,USA,44.17508056,-68.67863722 +93C,Richland,Richland Center,WI,USA,43.28333333,-90.29827778 +93F,Mignon Laird Municipal,Cheyenne,OK,USA,35.60393694,-99.70343889 +93Y,David City Municipal,David City,NE,USA,41.23334583,-97.11698111 +94K,Cassville Municipal,Cassville,MO,USA,36.69741667,-93.90052778 +95F,Cleveland Municipal,Cleveland,OK,USA,36.28340306,-96.46418833 +96D,Walhalla Municipal,Walhalla,ND,USA,48.94057222,-97.902775 +96Z,North Whale SPB,North Whale Pass,AK,USA,56.11631056,-133.1217153 +97M,Ekalaka,Ekalaka,MT,USA,45.87791444,-104.5375072 +98D,Onida Municipal,Onida,SD,USA,44.70414917,-100.1087353 +99N,Bamburg County,Bamburg,SC,USA,33.30515528,-81.10898917 +99Y,Greeley Municipal,Greeley,NE,USA,41.55834528,-98.54618528 +9A1,Covington Municipal,Covington,GA,USA,33.6324825,-83.84955806 +9A3,Chuathbaluk,Chuathbaluk,AK,USA,61.58317306,-159.2359667 +9A4,Lawrence County,Courtland,AL,USA,34.65938889,-87.34883333 +9A5,Barwick-LaFayette,LaFayette,GA,USA,34.68896917,-85.29023333 +9A6,Chester Municipal,Chester,SC,USA,34.78933333,-81.19577778 +9A8,Ugashik,Ugashik,AK,USA,57.5278675,-157.3993056 +9C8,Evart Municipal,Evart,MI,USA,43.8958525,-85.27920861 +9D0,Highmore Municipal,Highmore,SD,USA,44.54165056,-99.44622306 +9D1,Gregory Municipal,Gregory,SD,USA,43.22174722,-99.4033 +9D2,Harding County,Buffalo,SD,USA,45.58055222,-103.5296356 +9D7,Cando Municipal,Cando,ND,USA,48.4841675,-99.23680389 +9D9,Hastings Municipal,Hastings,MI,USA,42.66361778,-85.34625944 +9G0,Buffalo Airfield,Buffalo,NY,USA,42.86200306,-78.71658528 +9G1,West Penn,Tarentum,PA,USA,40.60423333,-79.82060611 +9G3,Akron,Akron,NY,USA,43.02108667,-78.48296778 +9G5,Royalton,Gasport,NY,USA,43.18200222,-78.55780528 +9G8,Ebensburg,Ebensburg,PA,USA,40.46121083,-78.77524389 +9I0,Havana Regional,Havana,IL,USA,40.221155,-90.02289361 +9I3,West Liberty,West Liberty,KY,USA,37.91453139,-83.25212111 +9K2,Kokhanok,Kokhanok,AK,USA,59.43264556,-154.8027058 +9K4,Skyhaven,Warrensburg,MO,USA,38.7842425,-93.80285417 +9K7,Ellsworth Municipal,Ellsworth,KS,USA,38.74750889,-98.23061222 +9K8,Kingman Municipal,Kingman,KS,USA,37.66660278,-98.12264722 +9M4,Ackerman-Choctaw County,Ackerman,MS,USA,33.3034575,-89.22840028 +9M6,Kelly,Oak Grove,LA,USA,32.84921361,-91.40390611 +9M8,Sheridan-Grant County Regional,Sheridan,AR,USA,34.32842917,-92.35098583 +9S2,Scobey,Scobey,MT,USA,48.80772722,-105.43947 +9S4,Mineral County,Superior,MT,USA,47.16825944,-114.8537411 +9S5,Three Forks,Three Forks,MT,USA,45.87852778,-111.5691389 +9S7,Winifred,Winifred,MT,USA,47.55164778,-109.3776792 +9S9,Lexington,Lexington,OR,USA,45.45263139,-119.6886361 +9U0,Turner,Turner,MT,USA,48.85417361,-108.4090214 +9U3,Austin,Austin,NV,USA,39.46798056,-117.1953703 +9U4,Dixon,Dixon,WY,USA,41.03829806,-107.4972869 +9V5,Modisett,Rushville,NE,USA,42.73748639,-102.4448947 +9V6,Martin Municipal,Martin,SD,USA,43.16564083,-101.7126953 +9V9,Chamberlain Municipal,Chamberlain,SD,USA,43.76612222,-99.32134 +9W7,Currituck County,Currituck,NC,USA,36.39893194,-76.01631111 +A04,Centre Municipal,Centre,AL,USA,34.15987361,-85.63512944 +A14,Portage Creek,Portage Creek,AK,USA,58.906485,-157.7141078 +A29,Sitka SPB,Sitka,AK,USA,57.05213778,-135.3462086 +A30,Scott Valley,Fort Jones,CA,USA,41.55819444,-122.8553103 +A32,Butte Valley,Dorris,CA,USA,41.88709222,-121.9755614 +A61,Tuntutuliak,Tuntutuliak,AK,USA,60.33534556,-162.6670094 +A63,Twin Hills,Twin Hills,AK,USA,59.07562167,-160.2730436 +A79,Chignik Lake,Chignik Lake,AK,USA,56.25504722,-158.7753614 +A85,Kwigillingok,Kwigillingok,AK,USA,59.87644778,-163.1675583 +AAF,Apalachicola Municipal,Apalachicola,FL,USA,29.72754583,-85.02744778 +AAO,Colonel James Jabara,Wichita,KS,USA,37.74755556,-97.22113889 +AAS,Taylor County,Cambellsville,KY,USA,37.35827778,-85.30941667 +AAT,Alturas Municipal,Alturas,CA,USA,41.483,-120.5653611 +ABE,Lehigh Valley International,Allentown,PA,USA,40.65236278,-75.44040167 +ABI,Abilene Regional,Abilene,TX,USA,32.41132,-99.68189722 +ABO,Antonio (Nery) Juarbe Pol,Arecibo,PR,USA,18.45111111,-66.67555556 +ABQ,Albuquerque International,Albuquerque,NM,USA,35.04022222,-106.6091944 +ABR,Aberdeen Regional,Aberdeen,SD,USA,45.44905556,-98.42183333 +ABY,Southwest Georgia Regional,Albany,GA,USA,31.535515,-84.19447333 +ACB,Antrim County,Bellaire,MI,USA,44.98857611,-85.198355 +ACJ,Souther,Americus,GA,USA,32.11079917,-84.18884806 +ACK,Nantucket Memorial,Nantucket,MA,USA,41.25305194,-70.06018139 +ACQ,Waseca Municipal,Waseca,MN,USA,44.07346389,-93.55294361 +ACT,Waco Regional,Waco,TX,USA,31.61128833,-97.23051917 +ACV,Arcata,Arcata/Eureka,CA,USA,40.97811528,-124.1086189 +ACY,Atlantic City International,Atlantic City,NJ,USA,39.45758333,-74.57716667 +ACZ,Henderson,Wallace,NC,USA,34.71789028,-78.00362444 +ADC,Wadena Municipal,Wadena,MN,USA,46.45026972,-95.21095472 +ADG,Lenawee County,Adrian,MI,USA,41.86943667,-84.07480528 +ADH,Ada Municipal,Ada,OK,USA,34.80434056,-96.6712775 +ADK,Adak,Adak,AK,USA,51.87796389,-176.6460306 +ADM,Ardmore Municipal,Ardmore,OK,USA,34.30320667,-97.01952167 +ADQ,Kodiak,Kodiak,AK,USA,57.74996778,-152.4938553 +ADS,Addison,Dallas/Addison,TX,USA,32.96855944,-96.83644778 +ADT,Atwood-Rawlins County City-County,Atwood,KS,USA,39.84013889,-101.0420278 +ADU,Audubon Municipal,Audubon,IA,USA,41.70137556,-94.92054167 +AEG,Double Eagle II,Albuquerque,NM,USA,35.14515278,-106.7951617 +AEL,Albert Lea Municipal,Albert Lea,MN,USA,43.68151278,-93.36723778 +AEX,Alexandria International,Alexandria,LA,USA,31.32737167,-92.54855611 +AFE,Kake,Kake,AK,USA,56.96048139,-133.9082694 +AFJ,Washington County,Washington,PA,USA,40.13648833,-80.29020083 +AFK,Nebraska City Municipal,Nebraska City,NE,USA,40.60688889,-95.86569444 +AFM,Ambler,Ambler,AK,USA,67.10610472,-157.8536203 +AFN,Jaffrey Municipal Silver Ranch,Jaffrey,NH,USA,42.80513417,-72.00302194 +AFO,Afton Municipal,Afton,WY,USA,42.71124583,-110.9421639 +AFW,Fort Worth Alliance,Fort Worth,TX,USA,32.98763889,-97.31880556 +AGC,Allegheny Cty,Pittsburgh,PA,USA,40.35440139,-79.93016889 +AGN,Angoon SPB,Angoon,AK,USA,57.50355528,-134.5850939 +AGO,Magnolia Municipal,Magnolia,AR,USA,33.22802111,-93.21696861 +AGS,Bush,Augusta,GA,USA,33.369955,-81.96449611 +AGZ,Wagner Municipal,Wagner,SD,USA,43.06332694,-98.29618972 +AHH,Amery Municipal,Amery,WI,USA,45.28114833,-92.37539222 +AHN,Athens Municipal,Athens,GA,USA,33.94859528,-83.32634694 +AHP,Port Alexander SPB,Port Alexander,AK,USA,56.24684222,-134.6481539 +AHQ,Wahoo Municipal,Wahoo,NE,USA,41.24133333,-96.59402778 +AIA,Alliance Municipal,Alliance,NE,USA,42.05325,-102.8037222 +AID,Anderson Municipal,Anderson,IN,USA,40.10862139,-85.61299472 +AIG,Langlade County,Antigo,WI,USA,45.15419444,-89.11072222 +AIK,Aiken Municipal,Aiken,SC,USA,33.64955556,-81.68447222 +AIO,Atlantic Municipal,Atlantic,IA,USA,41.40726722,-95.04690639 +AIT,Aitkin Municipal,Aitkin,MN,USA,46.5484225,-93.6768 +AIV,George Downer,Aliceville,AL,USA,33.10706889,-88.19725167 +AIY,Atlantic City Municipal,Atlantic City,NJ,USA,39.36002778,-74.45608333 +AIZ,Lee C Fine Memorial,Kaiser/Lake Ozark,MO,USA,38.096035,-92.5494875 +AJC,Chignik (Anchorage Bay),Chignik,AK,USA,56.3114625,-158.3732369 +AJG,Mt Carmel Municipal,Mt Carmel,IL,USA,38.60654722,-87.72669417 +AJO,Corona Municipal,Corona,CA,USA,33.89765389,-117.60244 +AJR,Habersham County,Cornelia,GA,USA,34.50081944,-83.55487 +AK5,Perryville,Perryville,AK,USA,55.90806056,-159.1585781 +AKA,Atka,Atka,AK,USA,52.22034833,-174.2063503 +AKH,Gastonia Municipal,Gastonia,NC,USA,35.20265944,-81.1498675 +AKI,Akiak,Akiak,AK,USA,60.90481194,-161.2270189 +AKK,Akhiok,Akhiok,AK,USA,56.93869083,-154.1825556 +AKN,King Salmon,King Salmon,AK,USA,58.67680167,-156.6492175 +AKO,Akron-Washington Co,Akron,CO,USA,40.17563333,-103.2220278 +AKP,Anaktuvuk Pass,Anaktuvuk Pass,AK,USA,68.1343225,-151.74168 +AKR,Akron Fulton Intl.,Akron,OH,USA,41.0375,-81.46693944 +AKW,Klawock,Klawock,AK,USA,55.57923333,-133.0759972 +AL08,Vaiden,Marion,AL,USA,32.51235611,-87.38555472 +ALB,Albany Cty,Albany,NY,USA,42.74811944,-73.80297861 +ALI,Alice International,Alice,TX,USA,27.74088889,-98.02694444 +ALM,Alamogordo-White Sands Regional,Alamogordo,NM,USA,32.83994444,-105.9905833 +ALN,St. Louis Regional,Alton/St. Louis,IL,USA,38.89029083,-90.04604306 +ALO,Waterloo Municipal,Waterloo,IA,USA,42.55708139,-92.40034361 +ALS,San Luis Valley Regional/Bergman,Alamosa,CO,USA,37.43491667,-105.8665556 +ALW,Walla Walla Regional,Walla Walla,WA,USA,46.09456167,-118.2880367 +ALX,Thomas C Russell,Alexander City,AL,USA,32.91475167,-85.96295611 +AMA,Amarillo International,Amarillo,TX,USA,35.2193725,-101.7059272 +AMG,Bacon County,Alma,GA,USA,31.53605556,-82.50655556 +AMN,Gratiot Community,Alma,MI,USA,43.3221425,-84.68794917 +AMT,Alexander Salamon,West Union,OH,USA,38.85148778,-83.56627778 +AMW,Ames Municipal,Ames,IA,USA,41.99206972,-93.62180139 +ANB,Anniston Metropolitan,Anniston,AL,USA,33.58816667,-85.85811111 +ANC,Ted Stevens Anchorage International,Anchorage,AK,USA,61.17432028,-149.9961856 +AND,Anderson County,Anderson,SC,USA,34.49494444,-82.70902778 +ANE,Anoka County,Minneapolis,MN,USA,45.145,-93.21138889 +ANI,Aniak,Aniak,AK,USA,61.58159694,-159.5430428 +ANQ,Steuben County-Tri State,Angola,IN,USA,41.63969833,-85.08349333 +ANV,Anvik,Anvik,AK,USA,62.64858333,-160.1898889 +ANW,Ainsworth Municipal,Ainsworth,NE,USA,42.57922222,-99.99297222 +ANY,Anthony Municipal,Anthony,KS,USA,37.15852194,-98.07964667 +AOC,Arco-Butte County,Arco,ID,USA,43.60343056,-113.3340972 +AOH,Allen County,Lima,OH,USA,40.70694444,-84.02666667 +AOO,Altoona-Blair Cty,Altoona,PA,USA,40.29637222,-78.32002306 +APA,Centennial,Denver,CO,USA,39.57012833,-104.8492942 +APC,Napa County,Napa,CA,USA,38.21319444,-122.2806944 +APF,Naples Municipal,Naples,FL,USA,26.15247222,-81.77544444 +APN,Alpena County Regional,Alpena,MI,USA,45.0780675,-83.56028583 +APT,Marion County-Brown,Jasper,TN,USA,35.06067778,-85.58531667 +APV,Apple Valley,Apple Valley,CA,USA,34.57528944,-117.1861792 +AQC,Klawock SPB,Klawock,AK,USA,55.5546575,-133.1016928 +AQH,Kwinhagak,Quinhagak,AK,USA,59.75700722,-161.8794789 +AQT,Nuiqsut,Nuiqsut,AK,USA,70.20995278,-151.0055611 +AQW,Harriman And West,North Adams,MA,USA,42.69591417,-73.17038306 +AQY,Girdwood,Girdwood,AK,USA,60.96609583,-149.1257892 +ARA,Acadiana Regional,New Iberia,LA,USA,30.03775833,-91.88389611 +ARB,Ann Arbor Municipal,Ann Arbor,MI,USA,42.22298361,-83.74560722 +ARC,Arctic Village,Arctic Village,AK,USA,68.11608083,-145.5761114 +ARG,Walnut Ridge Regional,Walnut Ridge,AR,USA,36.12534667,-90.92461944 +ARR,Aurora Municipal,Chicago/Aurora,IL,USA,41.77192944,-88.47565917 +ART,Watertown Intl,Watertown,NY,USA,43.99192222,-76.02173861 +ARV,Lakeland,Minocqua-Woodruff,WI,USA,45.92792556,-89.73094278 +ASD,Slidell,Slidell,LA,USA,30.345055,-89.82078833 +ASE,Aspen-Pitkin Co/Sardy,Aspen,CO,USA,39.22316,-106.868845 +ASG,Springdale Municipal,Springdale,AR,USA,36.17641056,-94.11925833 +ASH,Boire,Nashua,NH,USA,42.78176306,-71.51477944 +ASJ,Tri-County,Ahoskie,NC,USA,36.29752583,-77.17085556 +ASL,Marshall - Harrison County,Marshall,TX,USA,32.5205,-94.30777778 +ASN,Talladega Municipal,Talladega,AL,USA,33.56991111,-86.05085833 +AST,Astoria Regional,Astoria,OR,USA,46.15797222,-123.8786944 +ASW,Warsaw Municipal,Warsaw,IN,USA,41.2747,-85.84005556 +ASX,John F Kennedy Memorial,Ashland,WI,USA,46.54852806,-90.91896639 +ATA,Hall-Miller Municipal,Atlanta,TX,USA,33.101805,-94.19532694 +ATK,Atqasuk,Atqasuk,AK,USA,70.46727611,-157.4357361 +ATL,William B Hartsfield-Atlanta Intl,Atlanta,GA,USA,33.64044444,-84.42694444 +ATS,Artesia Municipal,Artesia,NM,USA,32.85252806,-104.4676864 +ATW,Outagamie County Regional,Appleton,WI,USA,44.25740806,-88.51947556 +ATY,Watertown Municipal,Watertown,SD,USA,44.91398056,-97.15471944 +AUG,Augusta State,Augusta,ME,USA,44.32064972,-69.79731806 +AUH,Aurora Municipal,Aurora,NE,USA,40.89413889,-97.99455556 +AUK,Alakanuk,Alakanuk,AK,USA,62.68004417,-164.6599253 +AUM,Austin Municipal,Austin,MN,USA,43.66499083,-92.933385 +AUN,Auburn Municipal,Auburn,CA,USA,38.95476944,-121.0820806 +AUO,Auburn-Opelik,Auburn,AL,USA,32.61635417,-85.43355944 +AUS,Austin-Bergstrom International,Austin,TX,USA,30.19453278,-97.66987194 +AUW,Wausau Municipal,Wausau,WI,USA,44.92847222,-89.62661111 +AVC,Mecklenburg-Brunswick Regional,South Hill,VA,USA,36.68827778,-78.05447222 +AVK,Alva Regional,Alva,OK,USA,36.77317,-98.66994611 +AVL,Asheville Regional,Asheville,NC,USA,35.43619444,-82.54180556 +AVO,Avon Park Municipal,Avon Park,FL,USA,27.591145,-81.52785333 +AVP,Wilkes-Barre/Scranton Intl,Wilkes-Barre/Scranton,PA,USA,41.33814944,-75.7242675 +AVQ,Marana Northwest Regional,Marana,AZ,USA,32.40939028,-111.2185086 +AVX,Catalina,Avalon,CA,USA,33.40494444,-118.4158611 +AWG,Washington Municipal,Washington,IA,USA,41.27610083,-91.67344389 +AWI,Wainwright,Wainwright,AK,USA,70.638,-159.99475 +AWM,West Memphis Municipal,West Memphis,AR,USA,35.13505861,-90.23444639 +AWO,Arlington Municipal,Arlington,WA,USA,48.16074833,-122.1590208 +AXA,Algona Municipal,Algona,IA,USA,43.07791056,-94.27199278 +AXN,Chandler,Alexandria,MN,USA,45.86629833,-95.39466806 +AXS,Altus Municipal,Altus,OK,USA,34.69878194,-99.3381 +AXV,Neil Armstrong,Wapakoneta,OH,USA,40.49338889,-84.29894444 +AXX,Angel Fire,Angel Fire,NM,USA,36.42240972,-105.2892967 +AYS,Waycross-Ware County,Waycross,GA,USA,31.24905556,-82.39530556 +AZC,Colorado City Municipal,Colorado City,AZ,USA,36.95994444,-113.0138889 +AZE,Hazelhurst,Hazelhurst,GA,USA,31.88465639,-82.64738778 +AZO,Kalamazoo County,Kalamazoo,MI,USA,42.234875,-85.5520575 +B01,Granville,Granville,NY,USA,43.42507111,-73.26205306 +B08,Silver Springs,Silver Springs,NV,USA,39.40324917,-119.2518292 +B16,Whitford,Weedsport,NY,USA,43.08027611,-76.53837556 +B19,Biddeford Municipal,Biddeford,ME,USA,43.46411111,-70.47238889 +B21,Sugarloaf Regional,Carrabasset,ME,USA,45.08616639,-70.21617778 +BAF,Barnes Municipal,Westfield,MA,USA,42.15773111,-72.71562028 +BAK,Columbus Municipal,Columbus,IN,USA,39.26191861,-85.89634556 +BAM,Battle Mountain,Battle Mountain,NV,USA,40.59904583,-116.8743358 +BAX,Huron County Memorial,Bad Axe,MI,USA,43.78091667,-82.98566667 +BAZ,New Braunfels Municipal,New Braunfels,TX,USA,29.7045,-98.04222222 +BBB,Benson Municipal,Benson,MN,USA,45.3319325,-95.650565 +BBD,Curtis,Brady,TX,USA,31.17816667,-99.32463889 +BBP,Marlboro County,Bennettsville,SC,USA,34.62170861,-79.73435944 +BBW,Broken Bow Municipal,Broken Bow,NE,USA,41.43645056,-99.64216861 +BCB,Virginia Tech,Blacksburg,VA,USA,37.20782361,-80.40832778 +BCE,Bryce Canyon,Bryce Canyon,UT,USA,37.70637111,-112.1454725 +BCK,Black River Falls Area,Black River Falls,WI,USA,44.25073861,-90.85528028 +BCT,Boca Raton,Boca Raton,FL,USA,26.37848667,-80.10769667 +BCV,Birchwood,Birchwood,AK,USA,61.41612444,-149.50888 +BDE,Baudette International,Baudette,MN,USA,48.72741667,-94.61030556 +BDG,Blanding Muni,Blanding,UT,USA,37.58303472,-109.4832889 +BDL,Bradley International,Windsor Locks,CT,USA,41.93887417,-72.68322833 +BDQ,Morrilton Municipal,Morrilton,AR,USA,35.13619528,-92.71349722 +BDR,Igor I Sikorsky Memorial,Bridgeport,CT,USA,41.16348417,-73.12617861 +BDX,Broadus,Broadus,MT,USA,45.433325,-105.4172133 +BED,Laurence G Hanscom,Bedford,MA,USA,42.46995306,-71.28903 +BEH,Southwest Michigan Regional,Benton Harbor,MI,USA,42.12858333,-86.4285 +BET,Bethel,Bethel,AK,USA,60.77977639,-161.8379975 +BFD,Bradford Reg,Bradford,PA,USA,41.80306778,-78.64012083 +BFF,Scotts Bluff County,Scottsbluff,NE,USA,41.87402778,-103.5956389 +BFI,Boeing Field/King County Intl,Seattle,WA,USA,47.52998917,-122.3019561 +BFK,Buffalo Municipal,Buffalo,OK,USA,36.86330139,-99.61873056 +BFL,Meadows,Bakersfield,CA,USA,35.43359806,-119.0567681 +BFM,Mobile Downtown,Mobile,AL,USA,30.62646944,-88.06799861 +BFR,Virgil I Grissom Municipal,Bedford,IN,USA,38.84003306,-86.44536361 +BFW,Silver Bay Municipal,Silver Bay,MN,USA,47.24902778,-91.41558333 +BGD,Hutchinson County,Borger,TX,USA,35.70004194,-101.3940536 +BGE,Decatur County Industrial Airpark,Bainbridge,GA,USA,30.97152778,-84.63744444 +BGF,Winchester Municipal,Winchester,TN,USA,35.17753417,-86.06616722 +BGM,Binghamton Regional,Binghamton,NY,USA,42.20848278,-75.97961361 +BGQ,Big Lake Strip Nr 2,Big Lake,AK,USA,61.53556806,-149.8138975 +BGR,Bangor International,Bangor,ME,USA,44.80744444,-68.82813889 +BHB,Hancock Co-Bar Harbor,Bar Harbor,ME,USA,44.44969444,-68.3615 +BHC,Baxley Municipal,Baxley,GA,USA,31.71383333,-82.39377778 +BHK,Baker Muni,Baker City,MT,USA,46.34763639,-104.2594475 +BHM,Birmingham International,Birmingham,AL,USA,33.56294306,-86.75354972 +BID,Block Island State,Block Island,RI,USA,41.16811889,-71.57784167 +BIE,Beatrice Municipal,Beatrice,NE,USA,40.30127778,-96.75411111 +BIG,Allen AAF,Delta Junction,AK,USA,63.99454722,-145.7216417 +BIH,Bishop,Bishop,CA,USA,37.37309556,-118.3636089 +BIL,Billings Logan Intl,Billings,MT,USA,45.8076625,-108.5428611 +BIS,Bismarck Municipal,Bismarck,ND,USA,46.77411111,-100.7467222 +BIV,Tulip City,Holland,MI,USA,42.74316667,-86.10502778 +BJC,Jeffco,Denver,CO,USA,39.90878667,-105.1172158 +BJI,Bemidji-Beltrami County,Bemidji,MN,USA,47.50942417,-94.93372333 +BJJ,Wayne County,Wooster,OH,USA,40.87480556,-81.88825 +BKD,Breckenridge Stephens County,Breckenridge,TX,USA,32.71904694,-98.89099972 +BKE,Baker City Municipal,Baker City,OR,USA,44.83733333,-117.8090833 +BKL,Burke Lakefront,Cleveland,OH,USA,41.5175,-81.68333333 +BKV,Hernando County,Brooksville,FL,USA,28.47359722,-82.45542139 +BKW,Raleigh Cty Memorial,Beckley,WV,USA,37.78732833,-81.12416417 +BKX,Brookings Municipal,Brookings,SD,USA,44.30483333,-96.81694444 +BLF,Mercer Cty,Bluefield,WV,USA,37.29579944,-81.20769056 +BLH,Blythe,Blythe,CA,USA,33.61916278,-114.7168764 +BLI,Bellingham Intl,Bellingham,WA,USA,48.79275,-122.5375278 +BLM,Allaire Arpt,Belmar/Farmingdale,NJ,USA,40.18691806,-74.12488694 +BLV,Scott AFB/MidAmerica,Belleville/St. Louis,IL,USA,38.54517861,-89.83518444 +BMC,Brigham City,Brigham City,UT,USA,41.55239139,-112.0622625 +BMG,Monroe County,Bloomington,IN,USA,39.14602139,-86.61668278 +BMI,Central Illinois Regional,Bloomington,IL,USA,40.47798556,-88.91595278 +BML,Berlin Municipal,Berlin,NH,USA,44.57537278,-71.17593167 +BMQ,Burnet Muni-Kate Craddock,Burnet,TX,USA,30.73894444,-98.23858333 +BMT,Beaumont Municipal,Beaumont,TX,USA,30.07044111,-94.21553806 +BNA,Nashville International,Nashville,TN,USA,36.12447667,-86.67818222 +BNF,Baranof Warm Springs SPB,Baranof Warm Springs,AK,USA,57.08882583,-134.8331414 +BNG,Banning Municipal,Banning,CA,USA,33.92307111,-116.8505756 +BNL,Barnwell County,Barnwell,SC,USA,33.25777778,-81.38833333 +BNO,Burns Muni,Burns,OR,USA,43.59212778,-118.9549789 +BNW,Boone Municipal,Boone,IA,USA,42.04956944,-93.84757222 +BOI,Boise Air Terminal,Boise,ID,USA,43.56444444,-116.2227778 +BOK,Brookings,Brookings,OR,USA,42.07455556,-124.2900939 +BOS,Gen Edw L Logan Intl,Boston,MA,USA,42.3643475,-71.00517917 +BOW,Bartow Municipal,Bartow,FL,USA,27.9433575,-81.78344167 +BPI,Big Piney-Marbleton,Big Piney,WY,USA,42.58506972,-110.1111531 +BPK,Baxter County Regional,Mountain Home,AR,USA,36.36894194,-92.47052806 +BPT,Southeast Texas Regional,Beaumont/Port Arthur,TX,USA,29.95083333,-94.02069444 +BQK,Glynco Jetport,Brunswick,GA,USA,31.25902778,-81.46630556 +BQN,Rafael Hernandez,Aguadilla,PR,USA,18.49486111,-67.12944444 +BRD,Brainerd-Crow Wing County Regional,Brainerd,MN,USA,46.39785806,-94.1372275 +BRL,Burlington Municipal,Burlington,IA,USA,40.783225,-91.12550556 +BRO,Brownsville/S.Padre Island International,Brownsville,TX,USA,25.90683333,-97.42586111 +BRW,Wiley Post Will Rogers Memorial,Barrow,AK,USA,71.2854475,-156.7660019 +BRY,Samuels,Bardstown,KY,USA,37.81432167,-85.49963806 +BST,Belfast Municipal,Belfast,ME,USA,44.40966667,-69.01225 +BTI,Barter Island,Kaktovik,AK,USA,70.13390278,-143.5770444 +BTL,W K Kellogg Regional,Battle Creek,MI,USA,42.30727806,-85.25147972 +BTM,Bert Mooney,Butte,MT,USA,45.95479528,-112.49746 +BTN,Britton Municipal,Britton,SD,USA,45.81522222,-97.74313889 +BTP,Butler Cty,Butler,PA,USA,40.77692611,-79.94972417 +BTR,"Baton Rouge Metropolitan, Ryan",Baton Rouge,LA,USA,30.53316083,-91.14963444 +BTT,Bettles,Bettles,AK,USA,66.91528667,-151.5280556 +BTV,Burlington International,Burlington,VT,USA,44.47300361,-73.1503125 +BTY,Beatty,Beatty,NV,USA,36.86105722,-116.7870036 +BUB,Cram,Burwell,NE,USA,41.77669444,-99.14975 +BUF,Buffalo Niagara Intl,Buffalo,NY,USA,42.94052472,-78.73216667 +BUM,Butler Memorial,Butler,MO,USA,38.28977028,-94.34012694 +BUR,Burbank-Glendale-Pasadena,Burbank,CA,USA,34.20061917,-118.3584969 +BUY,Burlington Municipal,Burlington,NC,USA,36.04854333,-79.47488694 +BVI,Beaver County,Beaver Falls,PA,USA,40.77248083,-80.39142556 +BVK,Buckland,Buckland,AK,USA,65.98228611,-161.1519778 +BVN,Albion Municipal,Albion,NE,USA,41.72857778,-98.05575972 +BVO,Bartlesville Municipal,Bartlesville,OK,USA,36.76247611,-96.01115167 +BVS,Skagit Regional/Bay View,Burlington/Mount Vernon,WA,USA,48.47088889,-122.4208611 +BVX,Batesville Regional,Batesville,AR,USA,35.726105,-91.64736083 +BVY,Beverly Municipal,Beverly,MA,USA,42.58417111,-70.91651833 +BWC,Brawley Municipal,Brawley,CA,USA,32.9931,-115.5169325 +BWD,Brownwood Municipal,Brownwood,TX,USA,31.79362222,-98.95649528 +BWG,Bowling Green-Warren County,Bowling Green,KY,USA,36.96451667,-86.41967917 +BWI,Baltimore-Washington International,Baltimore,MD,USA,39.17540167,-76.66819833 +BWP,Harry Stern,Wahpeton,ND,USA,46.24640083,-96.6056825 +BXA,George R Carr Memorial,Bogalusa,LA,USA,30.81368639,-89.86496444 +BXG,Burke County,Waynesboro,GA,USA,33.04093056,-82.00397917 +BXK,Buckeye Municipal,Buckeye,AZ,USA,33.42088556,-112.6863 +BYA,Boundary,Boundary,AK,USA,64.07830278,-141.113375 +BYG,Johnson County,Buffalo,WY,USA,44.38108528,-106.7217897 +BYI,Burley Municipal,Burley,ID,USA,42.54260361,-113.7715442 +BZN,Gallatin,Bozeman,MT,USA,45.77690139,-111.1530072 +C00,Mercer County,Aledo,IL,USA,41.248645,-90.73708361 +C05,Chenega Bay,Chenega,AK,USA,60.07730556,-147.9918889 +C09,Morris Municipal,Morris,IL,USA,41.42541667,-88.41869444 +C15,Pekin Municipal,Pekin,IL,USA,40.48820611,-89.67591083 +C17,Marion,Marion,IA,USA,42.03111083,-91.52934222 +C18,Frankfort,Chicago/Frankfort,IL,USA,41.4775,-87.84047222 +C25,Waverly Municipal,Waverly,IA,USA,42.7419525,-92.50793528 +C29,Morey,Middleton,WI,USA,43.11424444,-89.53073222 +C34,Gibson City Municipal,Gibson City,IL,USA,40.48578389,-88.2672725 +C35,Reedsburg Municipal,Reedsburg,WI,USA,43.52589944,-89.98322194 +C47,Portage Municipal,Portage,WI,USA,43.5600925,-89.48309278 +C52,Burlington Municipal,Burlington,WI,USA,42.69056389,-88.30464 +C56,Sanger,Chicago/Monee,IL,USA,41.37756167,-87.68137528 +C62,Kendallville Municipal,Kendallville,IN,USA,41.47271639,-85.26080833 +C65,Plymouth Municipal,Plymouth,IN,USA,41.36513333,-86.30050417 +C66,Monmouth Municipal,Monmouth,IL,USA,40.92970444,-90.63110722 +C71,Crosby Municipal,Crosby,MS,USA,31.29600472,-91.05288167 +C73,Dixon Muni-Charles R Walgreen,Dixon,IL,USA,41.83369889,-89.44621333 +C75,Marshall County,Lacon,IL,USA,41.01928583,-89.38642222 +C77,Poplar Grove,Poplar Grove,IL,USA,42.32268639,-88.83651833 +C80,New Coalinga Municipal,Coalinga,CA,USA,36.16313889,-120.2938139 +C81,Campbell,Chicago/Round Lake Park,IL,USA,42.32461111,-88.07408806 +C83,Byron,Byron,CA,USA,37.8284525,-121.6258219 +C91,Dowagiac Municipal,Dowagiac,MI,USA,41.99293417,-86.1280125 +CAD,Wexford County,Cadillac,MI,USA,44.27531333,-85.41892694 +CAE,Columbia Metropolitan,Columbia,SC,USA,33.93884,-81.11953944 +CAG,Craig-Moffat,Craig,CO,USA,40.49522139,-107.5216467 +CAK,Akron-Canton Regional,Akron,OH,USA,40.91631194,-81.44246556 +CAO,Clayton Municipal Airpark,Clayton,NM,USA,36.44585972,-103.1546583 +CAR,Caribou Municipal,Caribou,ME,USA,46.8715,-68.01791667 +CAV,Clarion Municipal,Clarion,IA,USA,42.74194389,-93.75890944 +CBE,Cumberland Regional,Cumberland,MD,USA,39.61541667,-78.76086361 +CBF,Council Bluffs Municipal,Council Bluffs,IA,USA,41.25947222,-95.75997222 +CBG,Cambridge Municipal,Cambridge,MN,USA,45.55854639,-93.26464361 +CBK,Shaltz,Colby,KS,USA,39.42753083,-101.0465719 +CCB,Cable,Upland,CA,USA,34.11154056,-117.6875897 +CCO,Newnan-Coweta County,Newnan,GA,USA,33.31208333,-84.77027778 +CCR,Buchanan,Concord,CA,USA,37.98965639,-122.0568972 +CCY,Charles City Municipal,Charles City,IA,USA,43.07260861,-92.61077833 +CDB,Cold Bay,Cold Bay,AK,USA,55.20559972,-162.7242628 +CDC,Cedar City Muni,Cedar City,UT,USA,37.70097028,-113.098575 +CDH,Harrell,Camden,AR,USA,33.62279917,-92.76339528 +CDI,Cambridge Municipal,Cambridge,OH,USA,39.97504417,-81.57759528 +CDK,George T Lewis,Cedar Key,FL,USA,29.137745,-83.04984361 +CDN,Woodward,Camden,SC,USA,34.28358333,-80.56486111 +CDR,Chadron Municipal,Chadron,NE,USA,42.83755556,-103.0954167 +CDV,Merle K (Mudhole) Smith,Cordova,AK,USA,60.49183389,-145.4776503 +CDW,Essex Cty Arpt,Caldwell,NJ,USA,40.87522278,-74.28135667 +CEC,Jack McNamara,Crescent City,CA,USA,41.78015722,-124.2365333 +CEF,Westover AFB,Chicopee,MA,USA,42.19826389,-72.53425833 +CEK,Crete Municipal,Crete,NE,USA,40.61791667,-96.92488889 +CEM,Central,Central,AK,USA,65.57380667,-144.7832908 +CEU,Oconee County Regional,Clemson,SC,USA,34.67205556,-82.88644444 +CEV,Mettel,Connersville,IN,USA,39.69803139,-85.13124528 +CEW,Bob Sikes,Crestview,FL,USA,30.77883333,-86.52211111 +CEY,Kyle-Oakley,Murray,KY,USA,36.66458333,-88.37277722 +CEZ,Cortez Muni,Cortez,CO,USA,37.30299778,-108.6280658 +CFD,Coulter,Bryan,TX,USA,30.71569444,-96.33136111 +CFJ,Crawfordsville Municipal,Crawfordsville,IN,USA,39.97562861,-86.91986361 +CFK,Chefornak,Chefornak,AK,USA,60.14922556,-164.2856325 +CFT,Greenlee County,Clifton-Morenci,AZ,USA,32.95284306,-109.2103453 +CFV,Coffeyville Municipal,Coffeyville,KS,USA,37.0940475,-95.57189417 +CGA,Craig SPB,Craig,AK,USA,55.47883139,-133.1478011 +CGC,Crystal River,Crystal River,FL,USA,28.86727778,-82.57130556 +CGE,Cambridge-Dorchester,Cambridge,MD,USA,38.53930556,-76.03036111 +CGF,Cuyahoga County,Cleveland,OH,USA,41.56512389,-81.48635389 +CGI,Cape Girardeau Municipal,Cape Girardeau,MO,USA,37.22531694,-89.57075167 +CGS,College Park,College Park,MD,USA,38.98058333,-76.92230556 +CGX,Chicago Meigs,Chicago,IL,USA,41.85884389,-87.60791167 +CGZ,Casa Grande Municipal,Casa Grande,AZ,USA,32.95488889,-111.7668333 +CHA,Lovell,Chattanooga,TN,USA,35.03526833,-85.20378778 +CHD,Chandler Municipal,Chandler,AZ,USA,33.26908333,-111.8111389 +CHK,Chickasha Municipal,Chickasha,OK,USA,35.09614694,-97.96618361 +CHO,Charlottesville-Albermarle,Charlottesville,VA,USA,38.13863889,-78.45286111 +CHP,Circle Hot Springs,Circle Hot Springs,AK,USA,65.48547222,-144.6107836 +CHS,Charleston AFB/International,Charleston,SC,USA,32.89864639,-80.04050583 +CHT,Chillicothe Municipal,Chillicothe,MO,USA,39.78215278,-93.49568056 +CHU,Houston County,Caledonia,MN,USA,43.59635861,-91.50394639 +CIC,Chico Municipal,Chico,CA,USA,39.79538278,-121.8584231 +CID,Eastern Iowa,Cedar Rapids,IA,USA,41.88458833,-91.71087222 +CII,Choteau,Choteau,MT,USA,47.82528056,-112.1662136 +CIK,Chalkyitsik,Chalkyitsik,AK,USA,66.64969083,-143.7359492 +CIN,Arthur N Neu,Carroll,IA,USA,42.04619444,-94.789 +CIR,Cairo,Cairo,IL,USA,37.06447222,-89.21961111 +CIU,Chippewa County International,Sault Ste. Marie,MI,USA,46.25075194,-84.47238528 +CJR,Culpeper Regional,Culpeper,VA,USA,38.5267075,-77.85885528 +CJX,Crooked Creek,Crooked Creek,AK,USA,61.86902194,-158.1371178 +CKB,Benedum,Clarksburg,WV,USA,39.29663889,-80.22808333 +CKC,Grand Marais/Cook County,Grand Marais,MN,USA,47.83830556,-90.38313889 +CKF,Crisp County - Cordele,Cordele,GA,USA,31.98883333,-83.77391667 +CKI,Williamsburg County,Kingstree,SC,USA,33.71722222,-79.85697222 +CKM,Fletcher,Clarksdale,MS,USA,34.29971,-90.51231611 +CKN,Crookston Muni Kirkwood,Crookston,MN,USA,47.84169417,-96.62162028 +CKP,Cherokee Municipal,Cherokee,IA,USA,42.73147222,-95.55613889 +CKU,Cordova Muni,Cordova,AK,USA,60.54390333,-145.7267042 +CKV,Outlaw,Clarksville,TN,USA,36.62188083,-87.41495361 +CKX,Chicken,Chicken,AK,USA,64.07133833,-141.9522792 +CLD,MC Clellan-Palomar Airport,NA,NA,USA,33.127231,-117.278727 +CLE,Cleveland-Hopkins Intl,Cleveland,OH,USA,41.41089417,-81.84939667 +CLI,Clintonville Municipal,Clintonville,WI,USA,44.61381306,-88.73126667 +CLK,Clinton Municipal,Clinton,OK,USA,35.53832778,-98.932695 +CLL,Easterwood,College Station,TX,USA,30.58858944,-96.36382417 +CLM,William R Fairchild Intl,Port Angeles,WA,USA,48.12019444,-123.4996944 +CLP,Clarks Point,Clarks Point,AK,USA,58.84230472,-158.5452331 +CLS,Chehalis-Centralia,Chehalis,WA,USA,46.67649194,-122.9792967 +CLT,Charlotte/Douglas International,Charlotte,NC,USA,35.21401111,-80.94312583 +CLW,Clearwater Air Park,Clearwater,FL,USA,27.97668639,-82.75874028 +CMA,Camarillo,Camarillo,CA,USA,34.21375472,-119.0943264 +CMH,Port Columbus Intl,Columbus,OH,USA,39.99798528,-82.89188278 +CMI,University of Illinois-Willard,Champaign/Urbana,IL,USA,40.03925,-88.27805556 +CMX,Houghton County Memorial,Hancock,MI,USA,47.16841722,-88.48906083 +CMY,Sparta/Fort McCoy,Sparta,WI,USA,43.95834806,-90.7378975 +CNC,Chariton Municipal,Chariton,IA,USA,41.01962389,-93.35968028 +CNH,Claremont Municipal,Claremont,NH,USA,43.37043194,-72.36867667 +CNK,Blosser Municipal,Concordia,KS,USA,39.54925139,-97.65231667 +CNM,Cavern City Air Terminal,Carlsbad,NM,USA,32.33747222,-104.2632778 +CNO,Chino,Chino,CA,USA,33.97469444,-117.6366111 +CNP,Billy G Ray,Chappell,NE,USA,41.07747222,-102.4640556 +CNU,Chanute Martin Johnson,Chanute,KS,USA,37.66879722,-95.48506444 +CNW,TSTC-Waco,Waco,TX,USA,31.63783139,-97.07413889 +CNY,Canyonlands,Moab,UT,USA,38.75495611,-109.7548439 +COD,Yellowstone Regional,Cody,WY,USA,44.52019417,-109.0237961 +COE,Coeur D'Alene Air Terminal,Coeur D'Alene,ID,USA,47.77429167,-116.8196231 +COI,Merritt Island,Merritt Island,FL,USA,28.34158944,-80.6854975 +COM,Coleman Municipal,Coleman,TX,USA,31.84113889,-99.40361111 +CON,Concord Municipal,Concord,NH,USA,43.20273278,-71.50228556 +COQ,Cloquet-Carlton County,Cloquet,MN,USA,46.70016833,-92.50552861 +COS,City of Colorado Springs Muni,Colorado Springs,CO,USA,38.80580556,-104.70025 +COT,Cotulla-Lasalle County,Cotulla,TX,USA,28.45825583,-99.22016389 +COU,Columbia Regional,Columbia,MO,USA,38.81809306,-92.21962917 +CPC,Columbus County Municipal,Whiteville,NC,USA,34.27287278,-78.71499278 +CPK,Chesapeake Municipal,Norfolk,VA,USA,36.66561833,-76.32066389 +CPM,Compton/Woodley,Compton,CA,USA,33.89001611,-118.2436831 +CPR,Natrona County Intl,Casper,WY,USA,42.90835556,-106.4644661 +CPS,St. Louis Downtown,Cahokia/St. Louis,IL,USA,38.57072444,-90.15622111 +CPX,Benjamin Rivera Noriega,Isla De Culebra,PR,USA,18.31328917,-65.30432444 +CQA,Lakefield,Celina,OH,USA,40.48408333,-84.56011111 +CQB,Chandler Municipal,Chandler,OK,USA,35.72381556,-96.82027306 +CQX,Chatham Municipal,Chatham,MA,USA,41.68840028,-69.98952417 +CRC,Circle City,Circle,AK,USA,65.83049389,-144.0758128 +CRE,Grand Strand,North Myrtle Beach,SC,USA,33.81175,-78.72394444 +CRG,Craig Municipal,Jacksonville,FL,USA,30.33633333,-81.51444444 +CRO,Corcoran,Corcoran,CA,USA,36.10245111,-119.5948469 +CRP,Corpus Christi International,Corpus Christi,TX,USA,27.77036083,-97.50121528 +CRQ,McClellan-Palomar,Carlsbad,CA,USA,33.12822222,-117.2802222 +CRS,C Davis Campbell -Corsicana Muni,Corsicana,TX,USA,32.02748861,-96.39803611 +CRT,Crossett Municipal,Crossett,AR,USA,33.17833278,-91.88018806 +CRW,Yeager,Charleston,WV,USA,38.37315083,-81.59318972 +CRX,Roscoe Turner,Corinth,MS,USA,34.91496778,-88.60348361 +CSB,Cambridge Municipal,Cambridge,NE,USA,40.30658333,-100.1620833 +CSG,Columbus Metropolitan,Columbus,GA,USA,32.51633333,-84.93886111 +CSM,Clinton-Sherman,Clinton,OK,USA,35.33983917,-99.20049944 +CSQ,Creston Municipal,Creston,IA,USA,41.02146139,-94.36331917 +CSV,Crossville Memorial,Crossville,TN,USA,35.95129194,-85.08497806 +CTB,Cut Bank Muni,Cut Bank,MT,USA,48.60835444,-112.3761464 +CTJ,West Georgia Regional,Carrollton,GA,USA,33.63102778,-85.15202778 +CTK,Ingersoll,Canton,IL,USA,40.56909444,-90.07484 +CTY,Cross City,Cross City,FL,USA,29.63552778,-83.10475 +CTZ,Sampson County,Clinton,NC,USA,34.97561194,-78.36461528 +CUB,Columbia Owens Downtown,Columbia,SC,USA,33.97047222,-80.99525 +CUH,Cushing Municipal,Cushing,OK,USA,35.949925,-96.77305278 +CUL,Carmi Municipal,Carmi,IL,USA,38.08947917,-88.12306111 +CUT,Custer County,Custer,SD,USA,43.73331611,-103.6176947 +CVG,Cincinnati Northern Kentucky Intl,Covington,KY,USA,39.04614278,-84.6621725 +CVK,Sharp County Regional,Ash Flat,AR,USA,36.26487139,-91.56264111 +CVN,Clovis Municipal,Clovis,NM,USA,34.42513889,-103.0792778 +CVO,Corvallis Muni,Corvallis,OR,USA,44.49719361,-123.2898297 +CVX,Charlevoix Municipal,Charlevoix,MI,USA,45.30477778,-85.27477778 +CWA,Central Wisconsin,Mosinee,WI,USA,44.77761917,-89.66677944 +CWF,Chennault International,Lake Charles,LA,USA,30.21059167,-93.14318944 +CWI,Clinton Municipal,Clinton,IA,USA,41.8311125,-90.32913056 +CWV,Claxton-Evans County,Claxton,GA,USA,32.19505556,-81.86955556 +CXC,Chitina,Chitina,AK,USA,61.58285917,-144.4270969 +CXE,Chase City Municipal,Chase City,VA,USA,36.78833556,-78.50155361 +CXF,Coldfoot,Coldfoot,AK,USA,67.25163417,-150.2065672 +CXL,Calexico International,Calexico,CA,USA,32.66950333,-115.5133281 +CXO,Montgomery County,Conroe,TX,USA,30.35183333,-95.4144675 +CXP,Carson,Carson City,NV,USA,39.19222972,-119.7343611 +CXU,Camilla-Mitchell County,Camilla,GA,USA,31.21291667,-84.23680556 +CXY,Capital City,Harrisburg,PA,USA,40.21713889,-76.85147222 +CYO,Pickaway County Memorial,Circleville,OH,USA,39.51600611,-82.98215361 +CYS,Cheyenne,Cheyenne,WY,USA,41.1557225,-104.8118381 +CYW,Clay Center Municipal,Clay Center,KS,USA,39.38713889,-97.15721417 +CZD,Cozad Municipal,Cozad,NE,USA,40.86911111,-100.0042222 +CZG,Tri-Cities,Endicott,NY,USA,42.07853583,-76.09633306 +CZL,Tom B David,Calhoun,GA,USA,34.45678278,-84.93949944 +CZN,Chisana,Chisana,AK,USA,62.07118972,-142.0483742 +CZT,Dimmit County,Carrizo Springs,TX,USA,28.52225111,-99.82363444 +D04,Bowman Municipal,Bowman,ND,USA,46.18699111,-103.4280806 +D05,Garrison Municipal,Garrison,ND,USA,47.65594444,-101.4372222 +D07,Faith Municipal,Faith,SD,USA,45.03609417,-102.0198803 +D09,Bottineau Municipal,Bottineau,ND,USA,48.83039167,-100.4171361 +D19,Quentin Aanenson,Luverne,MN,USA,43.62080278,-96.21864028 +D22,Angola,Angola,NY,USA,42.66010111,-78.99115556 +D25,Manitowish Waters,Manitowish Waters,WI,USA,46.12197222,-89.88233333 +D38,Canandaiga,Canandaiga,NY,USA,42.90718611,-77.32162639 +D42,Springfield Municipal,Springfield,MN,USA,44.23107,-94.99893444 +D50,Crosby Municipal,Crosby,ND,USA,48.92851556,-103.2972514 +D55,Robertson,Langdon,ND,USA,48.75301778,-98.39333694 +D57,Glen Ullin Municipal,Glen Ullin,ND,USA,46.81278306,-101.8601556 +D60,Tioga Municipal,Tioga,ND,USA,48.3805325,-102.8979853 +D73,Monroe-Walton County,Monroe,GA,USA,33.78149889,-83.69355389 +D77,Lancaster,Lancaster,NY,USA,42.92228111,-78.61224889 +D87,Harbor Springs,Harbor Springs,MI,USA,45.42556528,-84.91338389 +D95,Dupont-Lapeer,Lapeer,MI,USA,43.06703333,-83.27244444 +D98,Romeo,Romeo,MI,USA,42.79699083,-82.97526583 +DAB,Daytona Beach International,Daytona Beach,FL,USA,29.17991667,-81.05805556 +DAG,Barstow-Daggett,Daggett,CA,USA,34.85371333,-116.7866875 +DAL,Dallas Love,Dallas,TX,USA,32.84711389,-96.85177222 +DAN,Danville Regional,Danville,VA,USA,36.57286111,-79.33611111 +DAW,Skyhaven,Rochester,NH,USA,43.28406194,-70.92925472 +DAY,James M Cox Dayton Intl,Dayton,OH,USA,39.90237583,-84.219375 +DBN,"W. H. ""Bud"" Barron",Dublin,GA,USA,32.56445806,-82.98525556 +DBQ,Dubuque Municipal,Dubuque,IA,USA,42.40295944,-90.70916722 +DCA,Ronald Reagan Washington National,Arlington,VA,USA,38.85208333,-77.03772222 +DCK,Dahl Creek,Dahl Creek,AK,USA,66.94333806,-156.9046739 +DCU,Pryor Regional,Decatur,AL,USA,34.65264667,-86.94536778 +DCY,Daviess County,Washington,IN,USA,38.70042333,-87.12973222 +DDC,Dodge City Regional,Dodge City,KS,USA,37.76312194,-99.96542389 +DDH,William H. Morse State,Bennington,VT,USA,42.8913325,-73.2464075 +DEC,Decatur,Decatur,IL,USA,39.8345625,-88.86568917 +DED,Deland Municipal-Taylor,Deland,FL,USA,29.06698056,-81.28394167 +DEE,Deering,Deering,AK,USA,66.06820583,-162.7666028 +DEH,Decorah Municipal,Decorah,IA,USA,43.27550139,-91.73937389 +DEN,Denver Intl,Denver,CO,USA,39.85840806,-104.6670019 +DEQ,J Lynn Helms Sevier County,De Queen,AR,USA,34.04699556,-94.39936556 +DET,Detroit City,Detroit,MI,USA,42.40919444,-83.00986111 +DEW,Deer Park,Deer Park,WA,USA,47.96663889,-117.4266667 +DFI,Defiance Memorial,Defiance,OH,USA,41.3375,-84.42880556 +DFW,Dallas-Fort Worth International,Dallas-Fort Worth,TX,USA,32.89595056,-97.0372 +DGW,Converse County,Douglas,WY,USA,42.79725,-105.3857361 +DHN,Dothan,Dothan,AL,USA,31.32133917,-85.44962889 +DHT,Dalhart Municipal,Dalhart,TX,USA,36.022585,-102.5472775 +DIK,Dickinson Municipal,Dickinson,ND,USA,46.79738889,-102.8019528 +DKB,Dekalb-Taylor Municipal,Dekalb,IL,USA,41.93188111,-88.70829861 +DKK,Dunkirk Municipal,Dunkirk,NY,USA,42.49333528,-79.27204167 +DKX,Knoxville Downtown Island,Knoxville,TN,USA,35.96383361,-83.87365389 +DLG,Dillingham,Dillingham,AK,USA,59.0454125,-158.5033389 +DLH,Duluth International,Duluth,MN,USA,46.84209028,-92.19364861 +DLL,Baraboo - Wisconsin Dells,Baraboo,WI,USA,43.52195389,-89.77090222 +DLN,Dillon,Dillon,MT,USA,45.25536056,-112.5525067 +DLO,Delano Municipal,Delano,CA,USA,35.74558056,-119.2365039 +DLS,Columbia Gorge Regional,The Dalles,OR,USA,45.61854556,-121.1673439 +DLZ,Delaware Municipal,Delaware,OH,USA,40.27970139,-83.11480167 +DM2,Diomede Heliport,Diomede,AK,USA,65.75861111,-168.9530556 +DMN,Deming Municipal,Deming,NM,USA,32.26230917,-107.7206397 +DMO,Sedalia Memorial,Sedalia,MO,USA,38.70688889,-93.17611111 +DMW,Carroll County,Westminster,MD,USA,39.60827778,-77.00766667 +DNL,Daniel,Augusta,GA,USA,33.46663667,-82.03933917 +DNN,Dalton Municipal,Dalton,GA,USA,34.72174833,-84.86910806 +DNS,Denison Municipal,Denison,IA,USA,41.9864325,-95.38072083 +DNV,Vermilion County,Danville,IL,USA,40.19946861,-87.59553528 +DOV,Dover Air Force Base,Dover,DE,USA,39.1301125,-75.46631028 +DPA,Du Page,Chicago/West Chicago,IL,USA,41.90688333,-88.24841722 +DPL,P B Raiford,Kenansville,NC,USA,35.00006444,-77.981695 +DQH,Douglas Municipal,Douglas,GA,USA,31.47780833,-82.85961556 +DRI,Beauregard Parish,De Ridder,LA,USA,30.83152778,-93.33963889 +DRO,Durango-La Plata County,Durango,CO,USA,37.15151667,-107.7537692 +DRT,Del Rio International,Del Rio,TX,USA,29.37181222,-100.9232339 +DSM,Des Moines International,Des Moines,IA,USA,41.53493306,-93.66068222 +DSV,Dansville Muni,Dansville,NY,USA,42.57089972,-77.71305083 +DTA,Delta Municipal,Delta,UT,USA,39.38328861,-112.5096683 +DTL,Detroit Lakes -Wething,Detroit Lakes,MN,USA,46.82520861,-95.8856875 +DTN,Shreveport Downtown,Shreveport,LA,USA,32.54021889,-93.7450225 +DTO,Denton Municipal,Denton,TX,USA,33.20072167,-97.19797722 +DTS,Destin-Ft. Walton Beach,Destin,FL,USA,30.40006111,-86.47147722 +DTW,Detroit Metropolitan-Wayne County,Detroit,MI,USA,42.21205889,-83.34883583 +DUA,Eaker,Durant,OK,USA,33.942265,-96.39451806 +DUC,Halliburton,Duncan,OK,USA,34.470875,-97.95986111 +DUG,Bisbee Douglas International,Douglas Bisbee,AZ,USA,31.46902778,-109.6036667 +DUJ,Du Bois-Jefferson Cty,Du Bois,PA,USA,41.17826611,-78.89869778 +DUT,Unalaska,Unalaska,AK,USA,53.90013889,-166.5435 +DUX,Moore County,Dumas,TX,USA,35.85792833,-102.0130978 +DUY,Kongiganak,Kongiganak,AK,USA,59.95950583,-162.8817231 +DVK,Stuart Powell,Danville,KY,USA,37.57791667,-84.76969444 +DVL,Devils Lake Municipal-Knoke,Devils Lake,ND,USA,48.11424528,-98.90877833 +DVN,Davenport Municipal,Davenport,IA,USA,41.6102775,-90.58832528 +DVO,Gnoss,Novato,CA,USA,38.14351944,-122.5572167 +DVT,Phoenix-Deer Valley,Phoenix,AZ,USA,33.68831667,-112.0825614 +DWH,David Wayne Hooks Memorial,Houston,TX,USA,30.06186111,-95.55277778 +DWU,Ashland-Boyd County,Ashland,KY,USA,38.5545,-82.738 +DXE,Dexter Municipal,Dexter,MO,USA,36.77747,-89.94117333 +DXR,Danbury Municipal,Danbury,CT,USA,41.37153528,-73.48219056 +DXX,Madison-Lac Qui Parle County,Madison,MN,USA,44.98624,-96.17773611 +DYB,Summerville,Summerville,SC,USA,33.06344444,-80.27933333 +DYL,Doylestown,Doylestown,PA,USA,40.33305028,-75.12233833 +DYR,Dyersburg Municipal,Dyersburg,TN,USA,35.99850694,-89.40608333 +DYT,Sky Harbor,Duluth,MN,USA,46.72186083,-92.04343889 +E01,Monahans-Roy Hurd Memorial,Monahans,TX,USA,31.58246583,-102.9090428 +E04,Eunice,Eunice,NM,USA,32.45679139,-103.2404708 +E05,Hatch Muni,Hatch,NM,USA,32.66106083,-107.1979339 +E06,Lea County-Zip Franklin Memorial,Lovington,NM,USA,32.95394444,-103.4087778 +E07,Lea County/Tatum,Tatum,NM,USA,33.26122278,-103.2768939 +E11,Andrews County,Andrews,TX,USA,32.33111111,-102.5295278 +E15,Graham Municipal,Graham,TX,USA,33.11022222,-98.55527861 +E19,Gruver Municipal,Gruver,TX,USA,36.23372611,-101.4321894 +E24,Whiteriver,Whiteriver,AZ,USA,33.81255056,-109.9867658 +E25,Wickenburg Municipal,Wickenburg,AZ,USA,33.96891833,-112.7985128 +E26,Lea County,Jal,NM,USA,32.13107833,-103.1548506 +E35,Fabens,Fabens,TX,USA,31.51567306,-106.1471978 +E38,Alpine-Casparis Municipal,Alpine,TX,USA,30.38422222,-103.6835833 +E42,Spearman Municipal,Spearman,TX,USA,36.221,-101.1945 +E51,Bagdad,Bagdad,AZ,USA,34.59585278,-113.170195 +E52,Oldham County,Vega,TX,USA,35.23199833,-102.3990931 +E60,Eloy Municipal,Eloy,AZ,USA,32.80700583,-111.58679 +E63,Gila Bend Municipal,Gila Bend,AZ,USA,32.95810083,-112.6782181 +E80,Alexander Municipal,Belen,NM,USA,34.64519778,-106.8336958 +E89,Conchas State Park,Conchas Dam,NM,USA,35.36671583,-104.1880314 +E91,Chinle Municipal,Chinle,AZ,USA,36.11088056,-109.5754222 +E94,Glenwood-Catron County,Glenwood,NM,USA,33.35283972,-108.8672858 +E95,Benson Municipal,Benson,AZ,USA,31.99972222,-110.3572222 +EAA,Eagle,Eagle,AK,USA,64.77639306,-141.1509206 +EAN,Phifer Airfield,Wheatland,WY,USA,42.05552528,-104.9327492 +EAR,Kearney Municipal,Kearney,NE,USA,40.72702778,-99.00677778 +EAT,Pangborn Memorial,Wenatchee,WA,USA,47.39886111,-120.2068333 +EAU,Chippewa Valley Regional,Eau Claire,WI,USA,44.86525722,-91.48507194 +EBS,Webster City Municipal,Webster City,IA,USA,42.43663889,-93.86886111 +ECG,Elizabeth City CG Air Station/Municipal,Elizabeth City,NC,USA,36.26057417,-76.17459778 +ECS,Mondell,Newcastle,WY,USA,43.88545056,-104.3179178 +EDE,Edenton Municipal,Edenton,NC,USA,36.027735,-76.56709333 +EDN,Enterprise Municipal,Enterprise,AL,USA,31.29972222,-85.89986111 +EED,Needles,Needles,CA,USA,34.76619444,-114.6232931 +EEK,Eek,Eek,AK,USA,60.21590417,-162.0056092 +EEN,Dillant-Hopkins,Keene,NH,USA,42.89839944,-72.27078111 +EEO,Meeker,Meeker,CO,USA,40.04886222,-107.8859067 +EET,Shelby County,Alabaster,AL,USA,33.17781083,-86.78323722 +EFC,Belle Fourche Municipal,Belle Fourche,SD,USA,44.7342075,-103.8619925 +EFD,Ellington,Houston,TX,USA,29.60733333,-95.15875 +EFK,Newport State,Newport,VT,USA,44.88879722,-72.22915833 +EFT,Monroe Municipal,Monroe,WI,USA,42.61493972,-89.59075583 +EFW,Jefferson Municipal,Jefferson,IA,USA,42.01016667,-94.34258333 +EGE,Eagle County Regional,Eagle,CO,USA,39.64256778,-106.9176953 +EGQ,Emmetsburg Municipal,Emmetsburg,IA,USA,43.10202056,-94.704675 +EGT,Wellington Municipal,Wellington,KS,USA,37.32441028,-97.38732333 +EGV,Eagle River Union,Eagle River,WI,USA,45.93179639,-89.26906778 +EHA,Elkhart-Morton County,Elkhart,KS,USA,37.00188194,-101.8821258 +EHO,Shelby Municipal,Shelby,NC,USA,35.25555556,-81.60099722 +EHR,Henderson City-County,Henderson,KY,USA,37.8078425,-87.68569 +EII,Egegik,Egegik,AK,USA,58.18837472,-157.3809872 +EIW,County Memorial,New Madrid,MO,USA,36.53531083,-89.59971722 +EKA,Murray,Eureka,CA,USA,40.80338889,-124.1127917 +EKM,Elkhart Municipal,Elkhart,IN,USA,41.71935833,-86.00168361 +EKN,Elkins-Randolph Co-Jennings Randolph,Elkins,WV,USA,38.88944444,-79.85713889 +EKO,Elko Regional,Elko,NV,USA,40.82492611,-115.7916964 +EKQ,Wayne County,Monticello,KY,USA,36.85527778,-84.85613889 +EKX,Elizabethtown,Elizabethtown,KY,USA,37.68694444,-85.92377778 +EKY,Bessemer Municipal,Bessemer,AL,USA,33.31288444,-86.92591889 +ELA,Eagle Lake Municipal,Eagle Lake,TX,USA,29.60301389,-96.32248444 +ELD,South Arkansas Regional At Goodwin,El Dorado,AR,USA,33.2208625,-92.81325167 +ELI,Elim,Elim,AK,USA,64.61400972,-162.2700681 +ELK,Elk City Municipal,Elk City,OK,USA,35.42941083,-99.39425917 +ELM,Elmira/Corning Regional,Elmira,NY,USA,42.15991361,-76.89144333 +ELN,Bowers,Ellensburg,WA,USA,47.03302778,-120.5306944 +ELO,Ely Municipal,Ely,MN,USA,47.82454639,-91.83073056 +ELP,El Paso International,El Paso,TX,USA,31.80666667,-106.3778056 +ELV,Elfin Cove SPB,Elfin Cove,AK,USA,58.19518417,-136.3473928 +ELY,Ely Arpt (Yelland),Ely,NV,USA,39.29969444,-114.8418889 +ELZ,Wellsville Muni Tarantine,Wellsville,NY,USA,42.10951194,-77.99194806 +EMM,Kemmerer Municipal,Kemmerer,WY,USA,41.82494611,-110.5590586 +EMP,Emporia Municipal,Emporia,KS,USA,38.33211111,-96.19116667 +EMT,El Monte,El Monte,CA,USA,34.08600889,-118.0348453 +EMV,Emporia-Greensville Regional,Emporia,VA,USA,36.68691667,-77.48280556 +ENA,Kenai Municipal,Kenai,AK,USA,60.572,-151.2475278 +ENL,Centralia Municipal,Centralia,IL,USA,38.51479889,-89.09217944 +ENM,Emmonak,Emmonak,AK,USA,62.78518639,-164.4910461 +ENN,Nenana Municipal,Nenana,AK,USA,64.54898167,-149.0735053 +ENV,Wendover,Wendover,UT,USA,40.71869528,-114.03089 +ENW,Kenosha Regional,Kenosha,WI,USA,42.5957075,-87.92780333 +EOK,Keokuk Municipal,Keokuk,IA,USA,40.45990778,-91.42850111 +EOS,Neosho Memorial,Neosho,MO,USA,36.81080556,-94.39169444 +EPH,Ephrata Muni,Ephrata,WA,USA,47.30758333,-119.5158889 +EPM,Eastport Municipal,Eastport,ME,USA,44.91011111,-67.01269444 +EQA,Captain Jack Thomas,El Dorado,KS,USA,37.77410833,-96.81762778 +EQY,Monroe,Monroe,NC,USA,35.01884306,-80.62023444 +ERI,Erie Intl,Erie,PA,USA,42.08202139,-80.17621556 +ERV,Kerrville Muni/Louis Schreiner,Kerrville,TX,USA,29.976735,-99.08567972 +ERY,Luce County Hale,Newberry,MI,USA,46.31118694,-85.45731639 +ESC,Delta County,Escanaba,MI,USA,45.72266972,-87.09373139 +ESF,Esler Regional,Alexandria,LA,USA,31.3949025,-92.29577194 +ESN,Easton /Newnam,Easton,MD,USA,38.80416667,-76.069 +EST,Estherville Municipal,Estherville,IA,USA,43.40744444,-94.74641667 +ETB,West Bend Municipal,West Bend,WI,USA,43.42219444,-88.12792667 +ETC,Edgecombe County,Tarboro,NC,USA,35.93710083,-77.54663833 +ETH,Wheaton Municipal,Wheaton,MN,USA,45.78046056,-96.54353972 +ETN,Eastland Municipal,Eastland,TX,USA,32.41349167,-98.80975667 +EUF,Weedon,Eufaula,AL,USA,31.95131917,-85.128925 +EUG,Mahlon Sweet,Eugene,OR,USA,44.12326,-123.2186856 +EUL,Caldwell Industrial,Caldwell (Boise),ID,USA,43.64186111,-116.6357778 +EVB,New Smyrna Beach Municipal,New Smyrna Beach,FL,USA,29.05580556,-80.94836111 +EVM,Eveleth-Virginia Muni,Eveleth,MN,USA,47.42507778,-92.49846944 +EVU,Maryville Memorial,Maryville,MO,USA,40.35260167,-94.91552722 +EVV,Evansville Regional,Evansville,IN,USA,38.03799139,-87.53062667 +EVW,Evanston-Uinta County Burns,Evanston,WY,USA,41.27494528,-111.0321286 +EVY,Summit Airpark,Middletown,DE,USA,39.52038889,-75.72044444 +EWB,New Bedford Municipal,New Bedford,MA,USA,41.67614167,-70.95694167 +EWK,Newton-City-County,Newton,KS,USA,38.05710528,-97.27522861 +EWN,Craven County Regional,New Bern,NC,USA,35.07297222,-77.04294444 +EWR,Newark Intl,Newark,NJ,USA,40.69249722,-74.16866056 +EWU,Newtok,Newtok,AK,USA,60.93865417,-164.6412147 +EXI,Excursion Inlet SPB,Excursion Inlet,AK,USA,58.42049861,-135.4490328 +EXX,Davidson County,Lexington,NC,USA,35.78114028,-80.30378194 +EYE,Eagle Creek Airpark,Indianapolis,IN,USA,39.83070944,-86.29438056 +EYW,Key West International,Key West,FL,USA,24.55611111,-81.75955556 +EZI,Kewanee Municipal,Kewanee,IL,USA,41.20520361,-89.96386 +EZM,Eastman-Dodge County,Eastman,GA,USA,32.21425,-83.12802778 +EZZ,Cameron Memorial,Cameron,MO,USA,39.72755972,-94.276375 +F00,Jones,Bonham,TX,USA,33.61172222,-96.17938889 +F01,Quanah Municipal,Quanah,TX,USA,34.27708306,-99.75926861 +F05,Vernon - Wilbarger County,Vernon,TX,USA,34.22566806,-99.28375 +F06,Marian Airpark,Wellington,TX,USA,34.84561083,-100.1959481 +F08,Eufaula Municipal,Eufaula,OK,USA,35.29593194,-95.62526417 +F10,Henryetta Municipal,Henryetta,OK,USA,35.40687972,-96.01583278 +F12,Rusk County,Henderson,TX,USA,32.14172222,-94.85172222 +F17,Center Municipal,Center,TX,USA,31.83158333,-94.15641667 +F18,Cleburne Municipal,Cleburne,TX,USA,32.35376389,-97.43375 +F21,Memphis Municipal,Memphis,TX,USA,34.73958944,-100.5297008 +F22,Perry Municipal,Perry,OK,USA,36.38559583,-97.27721083 +F24,Minden-Webster,Minden,LA,USA,32.64601,-93.29808556 +F28,El Reno Municipal,El Reno,OK,USA,35.47163639,-98.00599444 +F29,Clarence E. Page Municipal,Oklahoma City,OK,USA,35.4880825,-97.82354556 +F30,Sulphur Municipal,Sulphur,OK,USA,34.52453278,-96.98973944 +F31,Lake Texoma State Park,Kingston,OK,USA,33.99287639,-96.64249722 +F32,Healdton Municipal,Healdton,OK,USA,34.24925806,-97.47391306 +F36,Cordell Municipal,Cordell,OK,USA,35.30421917,-98.96702167 +F37,Wauchula Municipal,Wauchula,FL,USA,27.51364889,-81.88063917 +F39,Grayson County,Sherman/Denison,TX,USA,33.71411111,-96.67366667 +F41,Ennis Municipal,Ennis,TX,USA,32.32969444,-96.66388889 +F44,Athens Jones Municipal,Athens,TX,USA,32.16384778,-95.82835306 +F45,North Palm Beach County General Aviation,West Palm Beach,FL,USA,26.84537306,-80.22148111 +F46,Rockwall Municipal,Rockwall,TX,USA,32.93059444,-96.43548556 +F49,Slaton Municipal,Slaton,TX,USA,33.48481,-101.6607158 +F51,Winnsboro Municipal,Winnsboro,TX,USA,32.93884556,-95.27886083 +F53,Franklin County,Mount Vernon,TX,USA,33.21530583,-95.2374925 +F55,Granbury Municipal,Granbury,TX,USA,32.44441583,-97.8169475 +F56,Arledge,Stamford,TX,USA,32.91019472,-99.73422972 +F70,French Valley,Murieta/Temecula,CA,USA,33.57605556,-117.1279722 +F80,Atoka Municipal,Atoka,OK,USA,34.39833889,-96.14805972 +F81,Okemah Flying,Okemah,OK,USA,35.42925306,-96.28778361 +F84,Stigler Municipal,Stigler,OK,USA,35.28910556,-95.09389722 +F85,Morton-Cochran County,Morton,TX,USA,33.72926389,-102.7338183 +F87,Farmerville,Farmerville,LA,USA,32.72495583,-92.33716583 +F88,Jonesboro,Jonesboro,LA,USA,32.20199028,-92.73293028 +F89,Winnsboro Municipal,Winnsboro,LA,USA,32.15431917,-91.70012472 +F91,Thomas P Stafford,Weatherford,OK,USA,35.54482944,-98.66849028 +F99,Holdenville Municipal,Holdenville,OK,USA,35.085875,-96.41666667 +FAI,Fairbanks International,Fairbanks,AK,USA,64.8136775,-147.8596694 +FAM,Farmington Regional,Farmington,MO,USA,37.76107917,-90.42859722 +FAQ,Fitiuta,Fitiuta Village,AS,USA,14.21577583,-169.4239058 +FAR,Hector International,Fargo,ND,USA,46.91934889,-96.81498889 +FAT,Fresno Yosemite International,Fresno,CA,USA,36.77619444,-119.7181389 +FAY,Fayetteville Municipal,Fayetteville,NC,USA,34.99147222,-78.88 +FBL,Faribault Municipal,Faribault,MN,USA,44.32468556,-93.31082889 +FBR,Fort Bridger,Fort Bridger,WY,USA,41.39193583,-110.4067961 +FBY,Fairbury Municipal,Fairbury,NE,USA,40.18297222,-97.16927778 +FCA,Glacier Park Intl,Kalispell,MT,USA,48.31140472,-114.2550694 +FCH,Fresno-Chandler Downtown,Fresno,CA,USA,36.732365,-119.8198961 +FCI,Chesterfield County,Richmond,VA,USA,37.4065375,-77.52498667 +FCM,Flying Cloud,Minneapolis,MN,USA,44.82724111,-93.45714639 +FCY,Forrest City Municipal,Forrest City,AR,USA,34.94199806,-90.77496611 +FDK,Frederick Municipal,Frederick,MD,USA,39.41758333,-77.37430556 +FDR,Frederick Municipal,Frederick,OK,USA,34.35219472,-98.98460222 +FDW,Fairfield County,Winnsboro,SC,USA,34.31547222,-81.10880556 +FDY,Findlay,Findlay,OH,USA,41.01352778,-83.66869444 +FEP,Albertus,Freeport,IL,USA,42.24626722,-89.58223944 +FET,Fremont Municipal,Fremont,NE,USA,41.44913889,-96.52019444 +FFA,First Flight,Kill Devil Hills,NC,USA,36.01822278,-75.67128694 +FFC,Peachtree City - Falcon,Atlanta,GA,USA,33.35725,-84.57183333 +FFL,Fairfield Municipal,Fairfield,IA,USA,41.05332417,-91.97892333 +FFM,Fergus Falls Muni-Einar Mickelson,Fergus Falls,MN,USA,46.28439389,-96.15668556 +FFT,Capital City,Frankfort,KY,USA,38.18248861,-84.90470083 +FFZ,Falcon,Mesa,AZ,USA,33.46083333,-111.7283333 +FGX,Fleming-Mason,Flemingsburg,KY,USA,38.54180556,-83.74338889 +FHR,Friday Harbor,Friday Harbor,WA,USA,48.52197222,-123.0243611 +FHU,Libby AAF-Sierra Vista Municipal,Fort Huachuca-Sierra Vista,AZ,USA,31.58847222,-110.3443889 +FIG,Clearfield-Lawrence,Clearfield,PA,USA,41.04861306,-78.41310306 +FIT,Fitchburg Municipal,Fitchburg,MA,USA,42.55412194,-71.75895639 +FKL,Chess-Lamberton,Franklin,PA,USA,41.37787361,-79.86036167 +FKN,Franklin Municipal-John Beverly Rose,Franklin,VA,USA,36.69817806,-76.90312694 +FKR,Frankfort Municipal,Frankfort,IN,USA,40.27343083,-86.56217028 +FLD,Fond Du Lac County,Fond Du Lac,WI,USA,43.77117417,-88.48842917 +FLG,Flagstaff Pulliam,Flagstaff,AZ,USA,35.13845472,-111.6712183 +FLL,Fort Lauderdale-Hollywood Int'l,Ft. Lauderdale,FL,USA,26.07258333,-80.15275 +FLO,Florence Regional,Florence,SC,USA,34.18536111,-79.72388889 +FLP,Marion County Regional,Flippin,AR,USA,36.29087528,-92.59023417 +FLT,Flat,Flat,AK,USA,62.45264889,-157.98907 +FLX,Fallon Municipal,Fallon,NV,USA,39.499545,-118.7490197 +FME,Tipton,Odenton,MD,USA,39.08538667,-76.75941444 +FMN,Four Corners Regional,Farmington,NM,USA,36.74125,-108.2299444 +FMY,Page,Ft. Myers,FL,USA,26.58661111,-81.86325 +FMZ,Fairmont State,Fairmont,NE,USA,40.58569444,-97.57305556 +FNB,Brenner,Falls City,NE,USA,40.07878611,-95.59199167 +FNL,Fort Collins-Loveland,Fort Collins/Loveland,CO,USA,40.45182722,-105.0113356 +FNR,Funter Bay SPB,Funter Bay,AK,USA,58.25438583,-134.8979067 +FNT,Bishop,Flint,MI,USA,42.96550333,-83.74345639 +FOA,Flora,Flora,IL,USA,38.66494528,-88.45299556 +FOD,Fort Dodge Municipal,Fort Dodge,IA,USA,42.55145611,-94.19255111 +FOE,Forbes,Topeka,KS,USA,38.95095194,-95.66361444 +FOK,Francis Gabreski,Westhampton Beach,NY,USA,40.84365472,-72.63178917 +FOT,Rohnerville,Fortuna,CA,USA,40.55393583,-124.1326589 +FPR,St. Lucie County International,Ft. Pierce,FL,USA,27.49505556,-80.36827778 +FQD,Rutherford County-Marchman,Rutherfordton,NC,USA,35.42822222,-81.93507778 +FRG,Republic,Farmingdale,NY,USA,40.72878111,-73.41340722 +FRH,French Lick Municipal,French Lick,IN,USA,38.50622139,-86.63693528 +FRM,Fairmont Municipal,Fairmont,MN,USA,43.64394111,-94.41561556 +FRR,Front Royal-Warren County,Front Royal,VA,USA,38.9175325,-78.25351472 +FSD,Joe Foss,Sioux Falls,SD,USA,43.58135111,-96.74170028 +FSE,Fosston Municipal,Fosston,MN,USA,47.59282028,-95.77349889 +FSK,Fort Scott Municipal,Fort Scott,KS,USA,37.79843056,-94.76938111 +FSM,Fort Smith Regional,Fort Smith,AR,USA,35.33659028,-94.36744111 +FSO,Franklin County State,Highgate,VT,USA,44.94028083,-73.09746 +FST,Fort Stockton - Pecos County,Fort Stockton,TX,USA,30.91566667,-102.9161389 +FSU,Fort Sumner Municipal,Fort Sumner,NM,USA,34.48339944,-104.2171967 +FSW,Fort Madison Municipal,Fort Madison,IA,USA,40.6592625,-91.3268175 +FTG,Front Range,Denver,CO,USA,39.78525,-104.5431389 +FTT,Elton Hensley Memorial,Fulton,MO,USA,38.83987472,-92.00421056 +FTW,Fort Worth Meacham International,Fort Worth,TX,USA,32.81977778,-97.36244444 +FTY,Fulton County - Brown,Atlanta,GA,USA,33.77913889,-84.52136111 +FUL,Fullerton Municipal,Fullerton,CA,USA,33.87201417,-117.9797842 +FVE,Northern Aroostook Regional,Frenchville,ME,USA,47.28550417,-68.31275 +FVX,Farmville Municipal,Farmville,VA,USA,37.35752861,-78.43779806 +FWA,Fort Wayne International,Fort Wayne,IN,USA,40.97846583,-85.19514639 +FWC,Fairfield Municipal,Fairfield,IL,USA,38.37863306,-88.41265222 +FWN,Sussex,Sussex,NJ,USA,41.20020667,-74.62305056 +FWS,Spinks,Fort Worth,TX,USA,32.56522778,-97.30807778 +FXE,Fort Lauderdale Executive,Ft. Lauderdale,FL,USA,26.19728,-80.17070833 +FXY,Forest City Municipal,Forest City,IA,USA,43.23473417,-93.6241025 +FYE,Fayette County,Somerville,TN,USA,35.20592,-89.39441667 +FYM,Fayetteville Municipal,Fayetteville,TN,USA,35.05836278,-86.56441139 +FYU,Fort Yukon,Fort Yukon,AK,USA,66.57149028,-145.2504169 +FYV,Fayetteville Municipal,Fayetteville,AR,USA,36.00509472,-94.17005694 +FZG,Fitzgerald Municipal,Fitzgerald,GA,USA,31.68368667,-83.27046056 +FZI,Fostoria Metropolitan,Fostoria,OH,USA,41.19083111,-83.39453639 +FZY,Oswego Cty,Fulton,NY,USA,43.35077528,-76.38805361 +GAB,Gabbs,Gabbs,NV,USA,38.92409111,-117.9590072 +GAD,Gadsden Municipal,Gadsden,AL,USA,33.97262528,-86.08900139 +GAF,Grafton Municipal,Grafton,ND,USA,48.40469444,-97.37094444 +GAG,Gage,Gage,OK,USA,36.29553889,-99.77642361 +GAI,Montgomery Co Airpark,Gaithersburg,MD,USA,39.16833611,-77.166 +GAL,Edward G. Pitka Sr.,Galena,AK,USA,64.73617806,-156.9374164 +GAM,Gambell,Gambell,AK,USA,63.76676556,-171.7328236 +GAS,Gallia - Meigs Regional,Gallipolis,OH,USA,38.83410833,-82.16342306 +GBD,Great Bend Municipal,Great Bend,KS,USA,38.34441861,-98.85917028 +GBG,Galesburg Municipal,Galesburg,IL,USA,40.93800194,-90.43112556 +GBH,Galbraith Lake,Galbraith Lake,AK,USA,68.47906306,-149.4900214 +GBR,Great Barrington,Great Barrington,MA,USA,42.18421417,-73.40324056 +GCC,Gillette-Campbell County,Gillette,WY,USA,44.34889806,-105.5393614 +GCK,Garden City Regional,Garden City,KS,USA,37.92751556,-100.7244147 +GCM,Claremore Regional,Claremore,OK,USA,36.29441667,-95.47966667 +GCN,Grand Canyon National Park,Grand Canyon,AZ,USA,35.95235389,-112.1469647 +GCT,Guthrie County Regional,Guthrie Center,IA,USA,41.68776417,-94.43524611 +GCY,Greeneville Municipal,Greeneville,TN,USA,36.19299083,-82.81507028 +GDM,Gardner Municipal,Gardner,MA,USA,42.54986639,-72.01602194 +GDV,Dawson Community,Glendive,MT,USA,47.13871861,-104.8071994 +GDW,Gladwin,Gladwin,MI,USA,43.97063278,-84.47503861 +GDY,Grundy Municipal,Grundy,VA,USA,37.23240111,-82.12499083 +GED,Sussex Cty Arpt,Georgetown,DE,USA,38.68919444,-75.35888889 +GEG,Spokane Intl,Spokane,WA,USA,47.61985556,-117.5338425 +GEO,Brown County,Georgetown,OH,USA,38.88195778,-83.88273278 +GEU,Glendale Municipal,Glendale,AZ,USA,33.52726278,-112.2951564 +GEY,South Big Horn County,Greybull,WY,USA,44.51644444,-108.0831944 +GEZ,Shelbyville Municipal,Shelbyville,IN,USA,39.58316583,-85.80481 +GFK,Grand Forks International,Grand Forks,ND,USA,47.949255,-97.17611111 +GFL,Floyd D. Bennett,Glens Falls,NY,USA,43.34121,-73.6103075 +GFZ,Greenfield Municipal,Greenfield,IA,USA,41.32702778,-94.44572222 +GGE,Georgetown County,Georgetown,SC,USA,33.31169444,-79.31958333 +GGF,Grant Municipal,Grant,NE,USA,40.86952778,-101.7328611 +GGG,Gregg County,Longview,TX,USA,32.38486111,-94.71171 +GGI,Grinnell Municipal,Grinnell,IA,USA,41.70916083,-92.73491278 +GGP,Logansport Municipal,Logansport,IN,USA,40.71126139,-86.37449917 +GGW,Wokal Field/Glasgow Intl,Glasgow,MT,USA,48.21246417,-106.6148231 +GHM,Centerville Municipal,Centerville,TN,USA,35.83742722,-87.445375 +GHW,Glenwood Municipal,Glenwood,MN,USA,45.64389167,-95.32043056 +GIF,Winter Havens Gilbert,Winter Haven,FL,USA,28.06291667,-81.75330556 +GJT,Walker,Grand Junction,CO,USA,39.1224125,-108.5267347 +GKJ,Port Meadville,Meadville,PA,USA,41.62652667,-80.2147275 +GKN,Gulkana,Gulkana,AK,USA,62.15488889,-145.4566389 +GKT,Gatlinburg-Pigeon Forge,Sevierville,TN,USA,35.85775889,-83.52870472 +GKY,Arlington Municipal,Arlington,TX,USA,32.66241528,-97.09391139 +GLD,Renner Field/Goodland Municipal,Goodland,KS,USA,39.37062194,-101.6989919 +GLE,Gainesville Municipal,Gainesville,TX,USA,33.65136111,-97.19702778 +GLH,Mid Delta Regional,Greenville,MS,USA,33.48288111,-90.98561389 +GLR,Otsego County,Gaylord,MI,USA,45.01354806,-84.70318944 +GLS,Galveston-Scholes,Galveston,TX,USA,29.26532333,-94.86040667 +GLW,Glasgow Municipal,Glasgow,KY,USA,37.03205556,-85.95261111 +GLY,Clinton Memorial,Clinton,MO,USA,38.35657306,-93.68417694 +GMJ,Grove Municipal,Grove,OK,USA,36.60527056,-94.73856667 +GMU,Greenville Downtown,Greenville,SC,USA,34.84794444,-82.35 +GNB,Granby-Grand County,Granby,CO,USA,40.08970806,-105.9172367 +GNF,Grenada Municipal,Grenada,MS,USA,33.83253,-89.79822806 +GNG,Gooding Municipal,Gooding,ID,USA,42.91716639,-114.7651575 +GNT,Grants-Milan Municipal,Grants,NM,USA,35.16531472,-107.9006142 +GNU,Goodnews,Goodnews,AK,USA,59.11727556,-161.5813967 +GNV,Gainesville Regional,Gainesville,FL,USA,29.69005556,-82.27177778 +GOK,Guthrie Municipal,Guthrie,OK,USA,35.84980556,-97.41560833 +GON,Groton-New London,Groton,CT,USA,41.33005778,-72.04513556 +GPH,Clay County Regional,Mosby,MO,USA,39.33046528,-94.30997361 +GPM,Grand Prairie Municipal,Grand Prairie,TX,USA,32.69858333,-97.04652778 +GPT,Gulfport-Biloxi Regional,Gulfport-Biloxi,MS,USA,30.40728028,-89.07009278 +GPZ,Grand Rapids-Itasca County,Grand Rapids,MN,USA,47.21110333,-93.50984472 +GQQ,Galion Municipal,Galion,OH,USA,40.75338889,-82.72380556 +GRB,Austin Straubel International,Green Bay,WI,USA,44.48507333,-88.12959 +GRD,Greenwood County,Greenwood,SC,USA,34.24872222,-82.15908333 +GRE,Greenville,Greenville,IL,USA,38.83615778,-89.37841111 +GRI,Central Nebraska Regional,Grand Island,NE,USA,40.96747222,-98.30861111 +GRK,Robert Gray AAF,Killeen,TX,USA,31.06489778,-97.82779778 +GRN,Gordon Municipal,Gordon,NE,USA,42.80597222,-102.17525 +GRO,Rota International,Rota Island,CQ,USA,14.1743075,-145.2425353 +GRR,Kent County International,Grand Rapids,MI,USA,42.88081972,-85.52276778 +GSH,Goshen Municipal,Goshen,IN,USA,41.52716028,-85.79210278 +GSN,Saipan International,Obyan,CQ,USA,15.11900139,-145.7293561 +GSO,Piedmont Triad International,Greensboro,NC,USA,36.09774694,-79.9372975 +GSP,Greenville-Spartanburg,Greer,SC,USA,34.89566722,-82.21885833 +GST,Gustavus,Gustavus,AK,USA,58.42438139,-135.7073814 +GTF,Great Falls Intl,Great Falls,MT,USA,47.48200194,-111.3706853 +GTR,Golden Triangle Regional,Columbus-Starkville-West Point,MS,USA,33.45033444,-88.59136861 +GTU,Georgetown Municipal,Georgetown,TX,USA,30.67880889,-97.67938389 +GUC,Gunnison County,Gunnison,CO,USA,38.53396333,-106.9331817 +GUM,Guam International,Agana,GU,USA,13.48345,-144.7959825 +GUP,Gallup Municipal,Gallup,NM,USA,35.51105833,-108.7893094 +GUY,Guymon Municipal,Guymon,OK,USA,36.68507194,-101.5077817 +GVL,Lee Gilmer Memorial,Gainesville,GA,USA,34.27290389,-83.82681333 +GVQ,Genesee Cty,Batavia,NY,USA,43.03172639,-78.16759972 +GVT,Majors,Greenville,TX,USA,33.06783889,-96.0653325 +GWO,Greenwood-Leflore,Greenwood,MS,USA,33.49432667,-90.084705 +GWR,Gwinner-Roger Melroe,Gwinner,ND,USA,46.21872222,-97.64325 +GWW,Goldsboro-Wayne Municipal,Goldsboro,NC,USA,35.46055444,-77.96493306 +GXY,Greeley-Weld County,Greeley,CO,USA,40.43561833,-104.6321156 +GYH,Donaldson Center,Greenville,SC,USA,34.75831917,-82.376415 +GYR,Phoenix Goodyear,Goodyear,AZ,USA,33.42281972,-112.3759919 +GYY,Gary/Chicago,Gary,IN,USA,41.61627306,-87.41278806 +GZH,Middleton,Evergreen,AL,USA,31.41580111,-87.04404333 +GZS,Abernathy,Pulaski,TN,USA,35.15371972,-87.05681444 +H04,Vinita Municipal,Vinita,OK,USA,36.63301806,-95.15136111 +H05,Wilburton Municipal,Wilburton,OK,USA,34.91954278,-95.39469722 +H19,Bowling Green Municipal,Bowling Green,MO,USA,39.36993361,-91.21925556 +H21,Camdenton Memorial,Camdenton,MO,USA,37.97468528,-92.69161528 +H30,Hamilton Municipal,Hamilton,NY,USA,42.84381889,-75.56140194 +H35,Clarksville Municipal,Clarksville,AR,USA,35.47069417,-93.427155 +H41,Memorial,Mexico,MO,USA,39.15751389,-91.81826667 +H45,Seminole Municipal,Seminole,OK,USA,35.27467806,-96.67516194 +H66,Nowata Municipal,Nowata,OK,USA,36.72092222,-95.62525583 +H71,Mid-America Industrial,Pryor,OK,USA,36.22539389,-95.33006333 +H79,Eldon Model Airpark,Eldon,MO,USA,38.36062611,-92.57157139 +H88,Municipal,Fredericktown,MO,USA,37.605825,-90.28731389 +H92,Hominy,Hominy,OK,USA,36.43340222,-96.38362861 +H96,Benton Municipal,Benton,IL,USA,38.00675111,-88.93441528 +H97,Pawnee Municipal,Pawnee,OK,USA,36.38338556,-96.8103125 +HAB,Marion County,Hamilton,AL,USA,34.11757222,-87.99819583 +HAE,Hannibal Municipal,Hannibal,MO,USA,39.72448944,-91.44367944 +HAF,Half Moon Bay,Half Moon Bay,CA,USA,37.51382944,-122.5010892 +HAI,Three Rivers Municipal,Three Rivers,MI,USA,41.95975,-85.59338889 +HAO,Hamilton-Fairfield,Hamilton,OH,USA,39.36448861,-84.52457722 +HAY,Haycock,Haycock,AK,USA,65.20098944,-161.1567792 +HBC,Mohall Municipal,Mohall,ND,USA,48.76838333,-101.5369953 +HBG,Bobby L. Chain Municipal,Hattiesburg,MS,USA,31.26506556,-89.2530325 +HBR,Hobart Municipal,Hobart,OK,USA,34.9913075,-99.0513525 +HBV,Jim Hogg County,Hebbronville,TX,USA,27.34955556,-98.73697222 +HBZ,Heber Springs Municipal,Heber Springs,AR,USA,35.51169389,-92.01300944 +HCD,Hutchinson Municipal,Hutchinson,MN,USA,44.85890667,-94.38178917 +HCO,Hallock Municipal,Hallock,MN,USA,48.75273139,-96.94300306 +HDC,Hammond Municipal,Hammond,LA,USA,30.52096889,-90.41762056 +HDE,Brewster,Holdredge,NE,USA,40.45269444,-99.33733333 +HDH,Dillingham Airfield,Mokuleia,HI,USA,21.57947361,-158.1972814 +HDI,Hardwick,Cleveland,TN,USA,35.22007306,-84.83244333 +HDN,Yampa Valley,Hayden,CO,USA,40.48118028,-107.2176597 +HDO,Hondo Municipal,Hondo,TX,USA,29.35952778,-99.17666667 +HEE,Thompson-Robbins,Helena-West Helena,AR,USA,34.57648972,-90.67588639 +HEF,Manassas Reg./Harry P Davis,Manassas,VA,USA,38.72141667,-77.51544444 +HEI,Hettinger Municipal,Hettinger,ND,USA,46.01494444,-102.6559722 +HEQ,Holyoke,Holyoke,CO,USA,40.56943056,-102.2726875 +HEZ,Natchez-Adams County,Natchez,MS,USA,31.61366111,-91.29733639 +HFD,Hartford Brainard,Hartford,CT,USA,41.73626861,-72.65021389 +HFY,Greenwood Municipal,Indianapolis/Greenwood,IN,USA,39.62841667,-86.08788889 +HGR,Hagerstown Regional-Richard Henson,Hagerstown,MD,USA,39.70794444,-77.7295 +HHF,Hemphill County,Canadian,TX,USA,35.89530778,-100.4036397 +HHG,Huntington Municipal,Huntington,IN,USA,40.85299,-85.45941917 +HHH,Hilton Head,NA,NA,USA,32.224384,-80.697629 +HHR,Jack Northrop Field/Hawthorne Municipal,Hawthorne,CA,USA,33.92283972,-118.3351872 +HHW,Stan Stamper Municipal,Hugo,OK,USA,34.03482556,-95.54190611 +HI01,Princeville,Hanalei,HI,USA,22.20919,-159.4455339 +HIB,Chisholm-Hibbing,Hibbing,MN,USA,47.38659917,-92.83899333 +HIE,Mt Washington Regional,Whitefield,NH,USA,44.36761639,-71.54447111 +HIG,Higginsville Industrial Municipal,Higginsville,MO,USA,39.07334639,-93.67716083 +HII,Lake Havasu City,Lake Havasu City,AZ,USA,34.56816056,-114.3561783 +HIO,Portland-Hillsboro,Hillsboro (Portland),OR,USA,45.54039389,-122.9498258 +HJH,Hebron Municipal,Hebron,NE,USA,40.15225,-97.58697222 +HJO,Hanford Municipal,Hanford,CA,USA,36.31852194,-119.6288675 +HKA,Blytheville Municipal,Blytheville,AR,USA,35.94040667,-89.83080583 +HKS,Hawkins,Jackson,MS,USA,32.3347725,-90.22253167 +HKY,Hickory Municipal,Hickory,NC,USA,35.74114639,-81.38954889 +HLC,Hill City Municipal,Hill City,KS,USA,39.37883611,-99.83149444 +HLG,Wheeling-Ohio Cty,Wheeling,WV,USA,40.175,-80.64627778 +HLN,Helena Regional,Helena,MT,USA,46.60681806,-111.9827503 +HLX,Twin County,Galax,VA,USA,36.76611472,-80.82356556 +HMT,Hemet-Ryan,Hemet,CA,USA,33.73398167,-117.0225258 +HMZ,Bedford County,Bedford,PA,USA,40.08536861,-78.51221778 +HNB,Huntingburg,Huntingburg,IN,USA,38.24902583,-86.95371833 +HNH,Hoonah,Hoonah,AK,USA,58.09609139,-135.4096975 +HNL,Honolulu International,Honolulu,HI,USA,21.31869111,-157.9224072 +HNM,Hana,Hana,HI,USA,20.79563722,-156.0144378 +HNR,Harlan Municipal,Harlan,IA,USA,41.58438889,-95.33963889 +HNS,Haines,Haines,AK,USA,59.24522806,-135.5221086 +HNZ,Henderson-Oxford,Oxford,NC,USA,36.36156111,-78.52916639 +HOB,Lea County Regional,Hobbs,NM,USA,32.68752778,-103.2170278 +HOC,Highland County,Hillsboro,OH,USA,39.18875944,-83.53880694 +HOE,Homerville,Homerville,GA,USA,31.05591667,-82.77413889 +HOM,Homer,Homer,AK,USA,59.64555556,-151.4765833 +HON,Huron Regional,Huron,SD,USA,44.38520056,-98.2285425 +HOT,Memorial,Hot Springs,AR,USA,34.47803389,-93.09620833 +HOU,William P Hobby,Houston,TX,USA,29.64541861,-95.27888889 +HPB,Hooper Bay,Hooper Bay,AK,USA,61.52418306,-166.1467797 +HPN,Westchester Cty,White Plains,NY,USA,41.06695778,-73.70757444 +HPT,Hampton Municipal,Hampton,IA,USA,42.72372361,-93.22634056 +HQG,Hugoton Municipal,Hugoton,KS,USA,37.16308056,-101.3705267 +HQM,Bowerman,Hoquiam,WA,USA,46.97120167,-123.9365581 +HQU,Thomson-McDuffie County,Thomson,GA,USA,33.52972639,-82.51678556 +HQZ,Mesquite Metro,Mesquite,TX,USA,32.74696278,-96.53041722 +HRI,Hermiston Muni,Hermiston,OR,USA,45.82822222,-119.2591667 +HRL,Valley International,Harlingen,TX,USA,26.22850611,-97.65439389 +HRO,Boone County,Harrison,AR,USA,36.26152056,-93.15472889 +HRR,Healy River,Healy,AK,USA,63.86620806,-148.9689842 +HRU,Herington Municipal,Herington,KS,USA,38.68322389,-96.80800639 +HRX,Hereford Municipal,Hereford,TX,USA,34.85761639,-102.3272017 +HSA,Stennis International,Bay St Louis,MS,USA,30.36780778,-89.45461083 +HSB,Harrisburg-Raleigh,Harrisburg,IL,USA,37.8115,-88.54913889 +HSE,Billy Mitchell,Hatteras,NC,USA,35.2327875,-75.617795 +HSI,Hastings Municipal,Hastings,NE,USA,40.60525,-98.42788889 +HSL,Huslia,Huslia,AK,USA,65.70055556,-156.3875 +HSP,Ingalls,Hot Springs,VA,USA,37.95144444,-79.83389444 +HSR,Hot Springs Municipal,Hot Springs,SD,USA,43.36824528,-103.3881378 +HSV,Huntsville International,Huntsville,AL,USA,34.6404475,-86.77310944 +HTH,Hawthorne Municipal,Hawthorne,NV,USA,38.54436583,-118.6343003 +HTL,Roscommon County,Houghton Lake,MI,USA,44.35980556,-84.67111111 +HTO,East Hampton,East Hampton,NY,USA,40.95957778,-72.25185056 +HTS,Tri-State/Walker-Long,Huntington,WV,USA,38.36666667,-82.55802778 +HTW,"Lawrence County Airpark,Inc",Chesapeake,OH,USA,38.41924861,-82.4943225 +HUF,Terre Haute International-Hulman,Terre Haute,IN,USA,39.45146361,-87.30756111 +HUL,Houlton International,Houlton,ME,USA,46.12308333,-67.79205556 +HUM,Houma-Terrebonne,Houma,LA,USA,29.5665,-90.66041667 +HUS,Hughes,Hughes,AK,USA,66.04112167,-154.2631903 +HUT,Hutchinson Municipal,Hutchinson,KS,USA,38.06548306,-97.86063361 +HVC,Hopkinsville-Christian County,Hopkinsville,KY,USA,36.85658333,-87.45725 +HVE,Hanksville,Hanksville,UT,USA,38.41803722,-110.7040378 +HVN,Tweed-New Haven,New Haven,CT,USA,41.26389889,-72.8871 +HVR,Havre City-County,Havre,MT,USA,48.542985,-109.7623419 +HVS,Hartsville Municipal,Hartsville,SC,USA,34.40308333,-80.11922222 +HWD,Hayward Executive,Hayward,CA,USA,37.65926528,-122.1224083 +HWI,Hawk Inlet SPB,Hawk Inlet,AK,USA,58.12744139,-134.7559531 +HWO,North Perry,Hollywood,FL,USA,26.00142417,-80.24052056 +HWQ,Wheatland County At Harlowton,Harlowton,MT,USA,46.4541225,-109.8549061 +HWV,Brookhaven,Shirley,NY,USA,40.81676528,-72.86204722 +HXD,Hilton Head,Hilton Head Island,SC,USA,32.22436111,-80.69747222 +HXF,Hartford Municipal,Hartford,WI,USA,43.34927806,-88.39112528 +HYA,Barnstable Mun Boardman/Polando,Hyannis,MA,USA,41.66933639,-70.28035583 +HYG,Hydaburg SPB,Hydaburg,AK,USA,55.20631611,-132.8283131 +HYI,San Marcos Municipal,San Marcos,TX,USA,29.89361111,-97.86469444 +HYL,Hollis SPB,Hollis,AK,USA,55.48158833,-132.6460942 +HYR,Sawyer County,Hayward,WI,USA,46.02585722,-91.44424278 +HYS,Hays Municipal,Hays,KS,USA,38.84494167,-99.27403361 +HYW,Conway-Horry County,Conway,SC,USA,33.8285,-79.12216667 +HZD,Carroll County,Huntingdon,TN,USA,36.08930722,-88.46329778 +HZE,Mercer County Regional,Hazen,ND,USA,47.28986111,-101.5809444 +HZL,Hazleton Muni,Hazleton,PA,USA,40.98677778,-75.99488889 +HZR,False River Air Park,New Roads,LA,USA,30.71832333,-91.47866972 +HZY,Ashtabula County,Ashtabula,OH,USA,41.77797528,-80.69551333 +I05,Sturgis Municipal,Sturgis,KY,USA,37.54083333,-87.95183333 +I12,Sidney Municipal,Sidney,OH,USA,40.24127944,-84.15101167 +I16,Kee,Pineville,WV,USA,37.60044444,-81.55927778 +I18,Jackson County,Ravenswood,WV,USA,38.92977778,-81.81947222 +I19,Greene County,Dayton,OH,USA,39.69172639,-83.99023806 +I22,Randolph County,Winchester,IN,USA,40.16885083,-84.92585333 +I23,Fayette County,Washington Court House,OH,USA,39.57040167,-83.42052444 +I25,Welch Muni,Welch,WV,USA,37.41678056,-81.52899417 +I32,Morehead-Rowan County,Morehead,KY,USA,38.13341472,-83.53796528 +I34,Greensburg-Decatur County,Greensburg,IN,USA,39.32691111,-85.52252694 +I35,Tucker-Guthrie Memorial,Harlan,KY,USA,36.85981028,-83.36101639 +I39,Madison County,Richmond,KY,USA,37.63152778,-84.33244444 +I40,Richard Downing,Coshocton,OH,USA,40.30918056,-81.85338194 +I42,Paoli Municipal,Paoli,IN,USA,38.58338806,-86.46248778 +I43,James A Rhodes,Jackson,OH,USA,38.98135194,-82.57785667 +I50,Stanton,Stanton,KY,USA,37.85008167,-83.84575194 +I57,Pike County,Waverly,OH,USA,39.16693333,-82.928175 +I63,Mt. Sterling Municipal,Mt. Sterling,IL,USA,39.9875,-90.80416667 +I66,Clinton,Wilmington,OH,USA,39.50286111,-83.86305556 +I67,Cincinnati West,Harrison,OH,USA,39.25894444,-84.77430556 +I68,Lebanon-Warren County,Lebanon,OH,USA,39.46217306,-84.25184722 +I69,Clermont County,Batavia,OH,USA,39.07839722,-84.21020722 +I74,Grimes,Urbana,OH,USA,40.12928306,-83.7548775 +I75,Osceola Municipal,Osceola,IA,USA,41.05221889,-93.68966222 +I76,Peru Municipal,Peru,IN,USA,40.78631889,-86.14638306 +I78,Union County,Marysville,OH,USA,40.22469444,-83.35161111 +I83,Salem Municipal,Salem,IN,USA,38.60200167,-86.13997889 +I86,Perry County,New Lexington,OH,USA,39.69159667,-82.19778583 +I88,Pontiac Municipal,Pontiac,IL,USA,40.92372222,-88.6255 +I93,Breckinridge County,Hardinsburg,KY,USA,37.78505944,-86.44192194 +I95,Hardin County,Kenton,OH,USA,40.61072,-83.64359694 +IAD,Washington Dulles International,Chantilly,VA,USA,38.94453194,-77.45580972 +IAG,Niagara Falls Intl,Niagara Falls,NY,USA,43.10725861,-78.94538139 +IAH,George Bush Intercontinental,Houston,TX,USA,29.98047222,-95.33972222 +IAN,Bob Baker Memorial,Kiana,AK,USA,66.97937611,-160.4358597 +IBM,Robert E. Arraj,Kimball,NE,USA,41.18805556,-103.6773889 +ICL,Schenck,Clarinda,IA,USA,40.72178361,-95.02642667 +ICT,Wichita Mid-Continent,Wichita,KS,USA,37.64995889,-97.43304583 +IDA,Idaho Falls Regional,Idaho Falls,ID,USA,43.51455556,-112.0701667 +IDI,Indiana Cty/Jimmy Stewart,Indiana,PA,USA,40.63222222,-79.10552778 +IDL,Indianola Municipal,Indianola,MS,USA,33.48574611,-90.67887611 +IDP,Independence Municipal,Independence,KS,USA,37.15837222,-95.77838333 +IEM,Whittier,Whittier,AK,USA,60.7772125,-148.7215775 +IEN,Pine Ridge,Pine Ridge,SD,USA,43.02257694,-102.5110728 +IER,Natchitoches Municipal,Natchitoches,LA,USA,31.73572,-93.09913639 +IFA,Iowa Falls Municipal,Iowa Falls,IA,USA,42.47078639,-93.26995361 +IFP,Laughlin/Bullhead International,Bullhead City,AZ,USA,35.15738889,-114.5595278 +IGG,Igiugig,Igiugig,AK,USA,59.32373528,-155.9032733 +IGM,Kingman,Kingman,AZ,USA,35.25947222,-113.9380556 +IGQ,Lansing Municipal,Chicago/Lansing,IL,USA,41.53988889,-87.53216667 +IGT,Nightmute,Nightmute,AK,USA,60.47032722,-164.6856414 +IIB,Independence Municipal,Independence,IA,USA,42.45359833,-91.94761833 +IIK,Kipnuk,Kipnuk,AK,USA,59.93295111,-164.0305131 +IIY,Washington-Wilkes County,Washington,GA,USA,33.77987528,-82.81661639 +IJD,Windham,Willimantic,CT,USA,41.74404028,-72.18023583 +IJX,Jacksonville Municipal,Jacksonville,IL,USA,39.77429694,-90.23856583 +IKK,Greater Kankakee,Kankakee,IL,USA,41.07140417,-87.84626861 +IKV,Ankeny Regional,Ankeny,IA,USA,41.69128556,-93.56630333 +ILE,Killeen Municipal,Killeen,TX,USA,31.08583333,-97.6865 +ILG,New Castle County,Wilmington,DE,USA,39.67872222,-75.60652778 +ILI,Iliamna,Iliamna,AK,USA,59.75380028,-154.9109597 +ILM,Wilmington International,Wilmington,NC,USA,34.27061111,-77.90255556 +IML,Imperial Municipal,Imperial,NE,USA,40.50930556,-101.6205278 +IMM,Immokalee,Immokalee,FL,USA,26.43316667,-81.40102778 +IMS,Madison Municipal,Madison,IN,USA,38.75888889,-85.46552778 +IMT,Ford,Iron Mountain/Kingsford,MI,USA,45.81835417,-88.1145425 +IN03,Indianapolis Downtown,Indianapolis,IN,USA,39.76587639,-86.148875 +IND,Indianapolis International,Indianapolis,IN,USA,39.71732917,-86.29438417 +INK,Winkler County,Wink,TX,USA,31.77962833,-103.2013619 +INL,Falls International,International Falls,MN,USA,48.56618722,-93.40306667 +INT,Smith Reynolds,Winston-Salem,NC,USA,36.13372222,-80.222 +INW,Winslow-Lindbergh Regional,Winslow,AZ,USA,35.02191667,-110.7225278 +IOB,Mt Sterling-Montgomery County,Mount Sterling,KY,USA,38.05813889,-83.97958333 +IOW,Iowa City Municipal,Iowa City,IA,USA,41.63924389,-91.54650333 +IPJ,Lincoln County,Lincolnton,NC,USA,35.48332889,-81.16125833 +IPL,Imperial County,Imperial,CA,USA,32.83422028,-115.5787456 +IPT,Williamsport-Lycoming Cty,Williamsport,PA,USA,41.24183583,-76.92109556 +IRK,Kirksville Regional,Kirksville,MO,USA,40.09364444,-92.54496917 +IRS,Kirsch Municipal,Sturgis,MI,USA,41.8128725,-85.43906111 +ISM,Kissimmee Municipal,Orlando,FL,USA,28.28980556,-81.43708333 +ISN,Sloulin Field International,Williston,ND,USA,48.17793861,-103.6423467 +ISO,Kinston Regional Jetport At Stallin,Kinston,NC,USA,35.32807944,-77.61552611 +ISP,Long Island - MacArthur,Islip,NY,USA,40.7952425,-73.10021194 +ISQ,Schoolcraft County,Manistique,MI,USA,45.97464056,-86.17183056 +ISW,Alexander,Wisconsin Rapids,WI,USA,44.36033833,-89.83897056 +ISZ,Cincinnati-Blue Ash,Cincinnati,OH,USA,39.24669444,-84.38897222 +ITH,Tompkins Cty,Ithaca,NY,USA,42.49102778,-76.45844444 +ITO,Hilo International,Hilo,HI,USA,19.72026306,-155.0484703 +ITR,Kit Carson County,Burlington,CO,USA,39.2425,-102.2853889 +IWA,Williams Gateway,Phoenix,AZ,USA,33.30783333,-111.6554722 +IWD,Gogebic County,Ironwood,MI,USA,46.52747472,-90.13139667 +IWH,Wabash Municipal,Wabash,IN,USA,40.76195972,-85.79873417 +IWI,Wiscasset,Wiscasset,ME,USA,43.96141667,-69.71255556 +IWK,Wales,Wales,AK,USA,65.62394028,-168.0991719 +IWS,West Houston,Houston,TX,USA,29.81819444,-95.67261111 +IXD,New Century Aircenter,Olathe,KS,USA,38.83090472,-94.89030333 +IYK,Inyokern,Inyokern,CA,USA,35.65884306,-117.8295122 +IYS,Wasilla,Wasilla,AK,USA,61.57196083,-149.5405556 +IZA,Santa Ynez,Santa Ynez,CA,USA,34.60682028,-120.0755617 +IZG,Eastern Slopes Regional,Fryeburg,ME,USA,43.99114472,-70.94787444 +JAC,Jackson Hole,Jackson,WY,USA,43.60732417,-110.7377389 +JAN,Jackson International,Jackson,MS,USA,32.31116667,-90.07588889 +JAS,Jasper County -Bell,Jasper,TX,USA,30.89058333,-94.03483333 +JAU,Campbell County,Jacksboro,TN,USA,36.33457556,-84.16234472 +JAX,Jacksonville International,Jacksonville,FL,USA,30.49405556,-81.68786111 +JBR,Jonesboro Municipal,Jonesboro,AR,USA,35.83186111,-90.64616667 +JCT,Kimble County,Junction,TX,USA,30.51126,-99.76345528 +JDN,Jordan,Jordan,MT,USA,47.33333417,-106.9339564 +JEF,Jefferson City Memorial,Jefferson City,MO,USA,38.59117917,-92.15614389 +JER,Jerome County,Jerome,ID,USA,42.72663639,-114.4571506 +JES,Jesup-Wayne County,Jesup,GA,USA,31.55408333,-81.88344444 +JFK,John F Kennedy Intl,New York,NY,USA,40.63975111,-73.77892556 +JFX,Walker County,Jasper,AL,USA,33.90199528,-87.31416639 +JHM,Kapalua,Lahaina,HI,USA,20.96293639,-156.6730317 +JHW,Chautauqua Cty,Jamestown,NY,USA,42.15336861,-79.258035 +JKA,Jack Edwards,Gulf Shores,AL,USA,30.28951667,-87.67371472 +JKJ,Moorhead Municipal,Moorhead,MN,USA,46.83919194,-96.66313028 +JKL,Julian Carroll,Jackson,KY,USA,37.59386111,-83.31725 +JLN,Joplin Regional,Joplin,MO,USA,37.15181361,-94.49826833 +JMR,Mora Municipal,Mora,MN,USA,45.88609722,-93.27177833 +JMS,Jamestown Municipal,Jamestown,ND,USA,46.92971944,-98.67819528 +JNU,Juneau International,Juneau,AK,USA,58.35496194,-134.5762764 +JNX,Johnston County,Smithfield,NC,USA,35.54094139,-78.39032944 +JOT,Joliet Park District,Chicago/Joliet,IL,USA,41.51805833,-88.17525583 +JQF,Concord Regional,Concord,NC,USA,35.38520694,-80.70971389 +JRA,Port Authority-W 30th St Midtown Heliport,New York,NY,USA,40.75454583,-74.00708389 +JRB,Downtown Manhattan/Wall St. Heliport,New York,NY,USA,40.70121361,-74.00902833 +JRF,Kalaeloa (John Rodgers),Kapolei,HI,USA,21.30735389,-158.0703017 +JSO,Jacksonville-Cherokee County,Jacksonville,TX,USA,31.86933667,-95.21739028 +JST,Johnstown-Cambria Cty,Johnstown,PA,USA,40.31611111,-78.83394444 +JVL,Rock County,Janesville,WI,USA,42.61958222,-89.04034028 +JVY,Clark County,Jeffersonville,IN,USA,38.36562278,-85.73829639 +JWG,Watonga,Watonga,OK,USA,35.86469444,-98.42075 +JWN,John C. Tune,Nashville,TN,USA,36.18236194,-86.88672278 +JXN,Jackson County Reynolds,Jackson,MI,USA,42.25978556,-84.45940361 +JYG,St James Municipal,St James,MN,USA,43.98631833,-94.55793722 +JYL,Plantation Airpark,Sylvania,GA,USA,32.64544861,-81.59649722 +JYM,Hillsdale Municipal,Hillsdale,MI,USA,41.92126083,-84.5857625 +JYO,Leesburg Executive,Leesburg,VA,USA,39.07797222,-77.5575 +JYR,Municipal,York,NE,USA,40.89675,-97.62277778 +JZI,Charleston Executive,Charleston,SC,USA,32.70086111,-80.00291667 +JZP,Pickens County,Jasper,GA,USA,34.45147972,-84.45659278 +JZZ,Koliganek,Koliganek,AK,USA,59.72664194,-157.2594722 +K01,Farington,Auburn,NE,USA,40.38750167,-95.78916167 +K02,Perryville Municipal,Perryville,MO,USA,37.86866667,-89.86213889 +K06,Greater Beardstown,Beardstown,IL,USA,39.97338139,-90.40373556 +K09,Piseco Muni,Piseco,NY,USA,43.45340222,-74.51765083 +K15,Linn Creek-Grand Glaize Memorial,Osage Beach,MO,USA,38.11045,-92.68054583 +K20,Wendell H. Ford,Hazard,KY,USA,37.38783833,-83.26205889 +K22,Big Sandy Regional,Prestonburg,KY,USA,37.75102778,-82.63669444 +K24,Russell County,Jamestown,KY,USA,37.00888889,-85.10277778 +K29,Council,Council,AK,USA,64.89788278,-163.7034472 +K33,Salem Memorial,Salem,MO,USA,37.61523333,-91.60444167 +K34,Municipal,Gardner,KS,USA,38.80708333,-94.95602778 +K39,St Clair Memorial,St Clair,MO,USA,38.37594333,-90.97073944 +K46,Blair Municipal,Blair,NE,USA,41.41805139,-96.1136275 +K54,Teller,Teller,AK,USA,65.24089806,-166.3360067 +K57,Gould Peterson Municipal,Tarkio,MO,USA,40.44583139,-95.36275806 +K59,Amelia Earhart,Atchison,KS,USA,39.57052472,-95.18033139 +K61,Moritz Memorial,Beloit,KS,USA,39.47115222,-98.12878389 +K62,Falmouth Pendleton County,Falmouth,KY,USA,38.70423611,-84.39160417 +K67,Oswego Municipal,Oswego,KS,USA,37.15978667,-95.04246222 +K68,Garnett Municipal,Garnett,KS,USA,38.27918833,-95.21691833 +K78,Abilene Municipal,Abilene.,KS,USA,38.90405583,-97.23585389 +K81,Miami County,Paola,KS,USA,38.53751389,-94.92524194 +K82,Smith Center Municipal,Smith Center,KS,USA,39.76112278,-98.79343639 +K83,Sabetha Municipal,Sabetha,KS,USA,39.90416667,-95.7794325 +K88,Allen County,Iola,KS,USA,37.87008333,-95.38638889 +K89,Macon-Fower Memorial,Macon,MO,USA,39.72870694,-92.464455 +K96,Tuscola,Tuscola,IL,USA,39.78086528,-88.30616 +KAE,Kake SPB,Kake,AK,USA,56.97299639,-133.9456147 +KAL,Kaltag,Kaltag,AK,USA,64.32571917,-158.7441475 +KCC,Coffman Cove SPB,Coffman Cove,AK,USA,56.00324444,-132.8419689 +KCL,Chignik Lagoon,Chignik Flats,AK,USA,56.31116306,-158.5359264 +KEB,English Bay,English Bay,AK,USA,59.35214833,-151.9251558 +KEK,Ekwok,Ekwok,AK,USA,59.35399444,-157.4744092 +KFP,False Pass,False Pass,AK,USA,54.84744583,-163.4103222 +KGX,Grayling,Grayling,AK,USA,62.89456056,-160.0649042 +KIB,Ivanof Bay SPB,Ivanof Bay,AK,USA,55.89753333,-159.4886689 +KIC,Mesa Del Rey,King City,CA,USA,36.22802139,-121.1218614 +KKA,Koyuk,Koyuk,AK,USA,64.93404056,-161.158145 +KKB,Kitoi Bay SPB,Kitoi Bay,AK,USA,58.19094611,-152.3704875 +KLG,Kalskag,Kalskag,AK,USA,61.53627389,-160.3413306 +KLL,Levelock,Levelock,AK,USA,59.11816472,-156.8652169 +KLS,Kelso-Longview,Kelso,WA,USA,46.118,-122.8983889 +KNB,Kanab Muni,Kanab,UT,USA,37.01110583,-112.5311936 +KNW,Stuyahok,New Stuyahok,AK,USA,59.44955333,-157.3271908 +KOA,Kona International At Keahole,Kailua/Kona,HI,USA,19.73876583,-156.0456314 +KPB,Point Baker SPB,Point Baker,AK,USA,56.35185972,-133.6225864 +KPH,Pauloff Harbor SPB,Pauloff Harbor,AK,USA,54.45912028,-162.6936406 +KQA,Akutan SPB,Akutan,AK,USA,54.13246694,-165.7853111 +KSM,St. Mary's,St. Mary's,AK,USA,62.06048639,-163.3021108 +KTB,Thorne Bay,Thorne Bay,AK,USA,55.68796194,-132.5366758 +KTN,Ketchikan International,Ketchikan,AK,USA,55.35556861,-131.71374 +KTS,Brevig Mission,Brevig Mission,AK,USA,65.33136111,-166.4631667 +KVC,King Cove,King Cove,AK,USA,55.1163475,-162.2662272 +KVL,Kivalina,Kivalina,AK,USA,67.73125333,-164.5518019 +KWT,Kwethluk,Kwethluk,AK,USA,60.80425194,-161.44535 +KXA,Kasaan SPB,Kasaan,AK,USA,55.53741389,-132.3975144 +KYK,Karluk,Karluk,AK,USA,57.56706389,-154.4503714 +KYU,Koyukuk,Koyukuk,AK,USA,64.87714278,-157.7158358 +L04,Holtville,Holtville,CA,USA,32.84032361,-115.2674806 +L05,Kern Valley,Kernville,CA,USA,35.72828472,-118.4198069 +L06,Furnace Creek,Death Valley National Park,CA,USA,36.46383694,-116.8814425 +L08,Borrego Valley,Borrego Springs,CA,USA,33.25902778,-116.3209722 +L12,Redlands Municipal,Redlands,CA,USA,34.08526167,-117.1463789 +L15,Henderson,Las Vegas,NV,USA,35.97636444,-115.1327708 +L17,Taft-Kern County,Taft,CA,USA,35.14107806,-119.4412294 +L18,Fallbrook Community Airpark,Fallbrook,CA,USA,33.35419806,-117.2508686 +L19,Wasco-Kern County,Wasco,CA,USA,35.61967889,-119.3537242 +L26,Hesperia,Hesperia,CA,USA,34.37722333,-117.3158783 +L31,Greater St. Tammany Parish,Covington,LA,USA,30.44505417,-89.98887889 +L35,Big Bear City,Big Bear,CA,USA,34.26361944,-116.854475 +L38,Louisiana Regional,Gonzales,LA,USA,30.17135306,-90.94039583 +L39,Leesville,Leesville,LA,USA,31.16819444,-93.34245833 +L42,Allen Parish,Oakdale,LA,USA,30.75016667,-92.68847222 +L45,Bakersfield Municipal,Bakersfield,CA,USA,35.32483333,-118.9958333 +L49,South Lafourche,Galliano,LA,USA,29.44482222,-90.26111667 +L52,Oceano County,Oceano,CA,USA,35.10136472,-120.6221153 +L67,Rialto Municipal,Rialto,CA,USA,34.12934361,-117.4016303 +L70,Agua Dulce Airpark,Agua Dulce,CA,USA,34.50415889,-118.3128561 +L71,California City Municipal,California City,CA,USA,35.15125306,-118.0166667 +L72,Trona,Trona,CA,USA,35.81245333,-117.3272783 +L75,Southland,Sulphur,LA,USA,30.13138889,-93.37611111 +L83,Thibodaux Municipal,Thibodaux,LA,USA,29.74779194,-90.83289889 +L84,Lost Hills-Kern County,Lost Hills,CA,USA,35.62357083,-119.6862383 +L92,Alamo Landing,Alamo,NV,USA,37.36246083,-115.1944622 +LAA,Lamar Muni,Lamar,CO,USA,38.06969444,-102.6885 +LAF,Purdue University,Lafayette,IN,USA,40.41231694,-86.93689889 +LAL,Lakeland Linder Regional,Lakeland,FL,USA,27.98891667,-82.01855556 +LAM,Los Alamos,Los Alamos,NM,USA,35.87980194,-106.2694153 +LAN,Capital City,Lansing,MI,USA,42.7787,-84.58735806 +LAR,Laramie Regional,Laramie,WY,USA,41.31205,-105.6749864 +LAS,McCarran International,Las Vegas,NV,USA,36.08036111,-115.1523333 +LAW,Lawton-Ft Sill Regional,Lawton,OK,USA,34.56771444,-98.41663667 +LAX,Los Angeles International,Los Angeles,CA,USA,33.94253611,-118.4080744 +LBB,Lubbock International,Lubbock,TX,USA,33.66363889,-101.8227778 +LBE,Arnold Palmer Regional,Latrobe,PA,USA,40.27594,-79.40479722 +LBF,North Platte Regional,North Platte,NE,USA,41.12621194,-100.6836542 +LBL,Liberal Municipal,Liberal,KS,USA,37.04420944,-100.9598611 +LBO,Floyd W Jones Lebanon,Lebanon,MO,USA,37.64718056,-92.65375778 +LBT,Lumberton Municipal,Lumberton,NC,USA,34.60991667,-79.05944444 +LBX,Brazoria County,Angleton,TX,USA,29.10863889,-95.46208056 +LCG,Wayne Municipal,Wayne,NE,USA,42.24188889,-96.98141667 +LCH,Lake Charles Regional,Lake Charles,LA,USA,30.1260975,-93.22340361 +LCI,Laconia Municipal,Laconia,NH,USA,43.57272806,-71.41890028 +LCK,Rickenbacker International,Columbus,OH,USA,39.81375917,-82.92786472 +LCQ,Lake City Municipal,Lake City,FL,USA,30.18205556,-82.57686111 +LDJ,Linden,Linden,NJ,USA,40.61744722,-74.24459417 +LDM,Mason County,Ludington,MI,USA,43.96253278,-86.40791528 +LEB,Lebanon Municipal,Lebanon,NH,USA,43.62637222,-72.30426722 +LEE,Leesburg Regional,Leesburg,FL,USA,28.82274417,-81.80900722 +LEM,Lemmon Municipal,Lemmon,SD,USA,45.91869722,-102.1061778 +LEW,Auburn-Lewiston Municipal,Auburn-Lewiston,ME,USA,44.04847278,-70.2835075 +LEX,Blue Grass,Lexington,KY,USA,38.03697222,-84.60538889 +LFK,Lufkin-Angelina County,Lufkin,TX,USA,31.23401389,-94.75 +LFT,Lafayette Regional,Lafayette,LA,USA,30.20527972,-91.987655 +LGA,LaGuardia,New York,NY,USA,40.77724306,-73.87260917 +LGB,Long Beach (Daugherty),Long Beach,CA,USA,33.81772222,-118.1516111 +LGC,LaGrange-Callaway,Lagrange,GA,USA,33.00884694,-85.07260556 +LGD,La Grande/Union County,La Grande,OR,USA,45.29020944,-118.0071108 +LGU,Logan-Cache,Logan,UT,USA,41.78773083,-111.8526822 +LHD,Lake Hood SPB,Anchorage,AK,USA,61.18000361,-149.9719322 +LHM,Lincoln Regional,Lincoln,CA,USA,38.90916111,-121.3513361 +LHQ,Fairfield County,Lancaster,OH,USA,39.75564722,-82.65711 +LHV,Wm T Piper Memorial,Lock Haven,PA,USA,41.13618028,-77.42053556 +LHX,La Junta Muni,La Junta,CO,USA,38.05134111,-103.5106908 +LHZ,Franklin County,Louisburg,NC,USA,36.02334528,-78.33027139 +LIC,Limon Municipal,Limon,CO,USA,39.272765,-103.6663392 +LIH,Lihue,Lihue,HI,USA,21.97598306,-159.3389581 +LIT,Adams,Little Rock,AR,USA,34.72939611,-92.22424556 +LJF,Litchfield Municipal,Litchfield,MN,USA,45.09712889,-94.50726833 +LKP,Lake Placid,Lake Placid,NY,USA,44.26447361,-73.96186639 +LKR,Lancaster County,Lancaster,SC,USA,34.72291667,-80.85458333 +LKU,Louisa County / Freeman,Louisa,VA,USA,38.00983333,-77.97013889 +LKV,Lake County,Lakeview,OR,USA,42.16111111,-120.3990703 +LLJ,Challis,Challis,ID,USA,44.52297806,-114.2175642 +LLQ,Monticello Municipal,Monticello,AR,USA,33.6385525,-91.75101833 +LLU,Lamar Municipal,Lamar,MO,USA,37.4894925,-94.31150444 +LMS,Louisville-Winston County,Louisville,MS,USA,33.14620944,-89.06247917 +LMT,Klamath Falls International,Klamath Falls,OR,USA,42.15614361,-121.7332081 +LNA,Palm Beach County Park,Lantana,FL,USA,26.593,-80.08505556 +LNC,Lancaster,Lancaster,TX,USA,32.57919111,-96.71905111 +LND,Hunt,Lander,WY,USA,42.81523611,-108.7298392 +LNK,Lincoln Municipal,Lincoln,NE,USA,40.85097222,-96.75925 +LNL,Kings Land O' Lakes,Land O' Lakes,WI,USA,46.15387722,-89.21194417 +LNN,Lost Nation,Willoughby,OH,USA,41.68391667,-81.39030556 +LNP,Lonesome Pine,Wise,VA,USA,36.98743194,-82.53017361 +LNS,Lancaster,Lancaster,PA,USA,40.12171528,-76.29609778 +LNY,Lanai,Lanai City,HI,USA,20.78561111,-156.9514181 +LOL,Derby,Lovelock,NV,USA,40.066405,-118.5651664 +LOT,Lewis University,Chicago/Romeoville,IL,USA,41.60844444,-88.09094444 +LOU,Bowman,Louisville,KY,USA,38.228,-85.66372222 +LOZ,London-Corbin Magee,London,KY,USA,37.08727778,-84.07677778 +LPC,Lompoc,Lompoc,CA,USA,34.66561028,-120.4667883 +LPR,Lorain Co Regional,Lorain/Elyria,OH,USA,41.34427778,-82.17763889 +LQK,Pickens County,Pickens,SC,USA,34.80997222,-82.70288889 +LQR,Larned-Pawnee County,Larned,KS,USA,38.20809667,-99.08607306 +LRD,Laredo International,Laredo,TX,USA,27.54373861,-99.46154361 +LRG,Lincoln Regional,Lincoln,ME,USA,45.36216083,-68.53474694 +LRJ,Le Mars Municipal,Le Mars,IA,USA,42.77801778,-96.19368944 +LRU,Las Cruces International,Las Cruces,NM,USA,32.28941667,-106.9219722 +LSB,Lordsburg Municipal,Lordsburg,NM,USA,32.33278083,-108.6909742 +LSE,La Crosse Municipal,La Crosse,WI,USA,43.87937972,-91.25653778 +LSK,Lusk Muni,Lusk,WY,USA,42.75380806,-104.4045536 +LSN,Los Banos Municipal,Los Banos,CA,USA,37.06290556,-120.8692511 +LUG,Ellington,Lewisburg,TN,USA,35.506975,-86.80388611 +LUK,Cincinnati Muni-Lunken,Cincinnati,OH,USA,39.10334417,-84.41861417 +LUL,Hesler-Noble,Laurel,MS,USA,31.67255139,-89.17222417 +LUP,Kalaupapa,Kalaupapa,HI,USA,21.21104028,-156.9735972 +LVJ,Clover,Houston,TX,USA,29.52130556,-95.24216667 +LVK,Livermore Municipal,Livermore,CA,USA,37.69339944,-121.8203519 +LVM,Mission,Livingston,MT,USA,45.69938889,-110.4483056 +LVN,Airlake,Minneapolis,MN,USA,44.62785361,-93.22810806 +LVS,Las Vegas Municipal,Las Vegas,NM,USA,35.65422222,-105.1423889 +LWB,Greenbrier Valley,Lewisburg,WV,USA,37.85830556,-80.39947222 +LWC,Lawrence Municipal,Lawrence,KS,USA,39.01115222,-95.21657694 +LWD,Lamoni Municipal,Lamoni,IA,USA,40.63333306,-93.90217028 +LWL,Wells Municipal/Harriet,Wells,NV,USA,41.11853306,-114.9222661 +LWM,Lawrence Municipal,Lawrence,MA,USA,42.71720944,-71.12343 +LWS,Lewiston-Nez Perce County,Lewiston,ID,USA,46.37449806,-117.0153944 +LWT,Lewistown Muni,Lewistown,MT,USA,47.04913944,-109.4666006 +LWV,Lawrenceville-Vincennes Municipal,Lawrenceville,IL,USA,38.76429639,-87.60549556 +LXL,Little Falls - Morrison County,Little Falls,MN,USA,45.94943778,-94.34708472 +LXN,Lexington (Jim Kelly),Lexington,NE,USA,40.791,-99.77727778 +LXT,Lee's Summit Municipal,Lee's Summit,MO,USA,38.95975,-94.37158333 +LXV,Lake County,Leadville,CO,USA,39.2202675,-106.3166906 +LXY,Mexia-Limestone County,Mexia,TX,USA,31.63983472,-96.51472222 +LYH,Lynchburg Municipal-Preston Glenn,Lynchburg,VA,USA,37.32668528,-79.20043056 +LYO,Lyons-Rice County Municipal,Lyons,KS,USA,38.34261472,-98.22709639 +LZU,Gwinnett County,Lawrenceville,GA,USA,33.97807611,-83.96237722 +M01,General Dewitt Spain,Memphis,TN,USA,35.20069278,-90.05397694 +M02,Dickson Municipal,Dickson,TN,USA,36.12931722,-87.43007056 +M03,Dennis F Cantrell,Conway,AR,USA,35.08080778,-92.42496167 +M04,Covington Municipal,Covington,TN,USA,35.583365,-89.58722167 +M05,Caruthersville Memorial,Caruthersville,MO,USA,36.17506917,-89.67508 +M08,William L. Whitehurst,Bolivar,TN,USA,35.21445944,-89.04336222 +M09,Piedmont Municipal,Piedmont,MO,USA,37.12671694,-90.7128975 +M11,Copiah County,Crystal Springs,MS,USA,31.90293639,-90.36870222 +M13,Poplarville-Pearl River County,Poplarville,MS,USA,30.78602056,-89.50450694 +M15,Perry County,Linden,TN,USA,35.59590306,-87.87669361 +M16,John Bell Williams,Raymond,MS,USA,32.30334111,-90.40848333 +M17,Bolivar Municipal,Bolivar,MO,USA,37.59693194,-93.34765 +M18,Hope Municipal,Hope,AR,USA,33.72008889,-93.65884556 +M19,Newport Municipal,Newport,AR,USA,35.63771778,-91.17637556 +M21,Muhlenberg County,Greenville,KY,USA,37.22561111,-87.15752778 +M22,Russellville Municipal,Russellville,AL,USA,34.44953972,-87.71030833 +M23,James H. Easom,Newton,MS,USA,32.31181111,-89.13589194 +M24,Dean Griffin Memorial,Wiggins,MS,USA,30.84324389,-89.15977333 +M25,Mayfield-Graves County,Mayfield,KY,USA,36.76911111,-88.58472222 +M27,Waldron Municipal,Waldron,AR,USA,34.87509944,-94.10993056 +M29,Hassel,Clifton,TN,USA,35.38507528,-87.96752833 +M30,Metropolis Municipal,Metropolis,IL,USA,37.18588722,-88.75061 +M32,Lake Village Municipal,Lake Village,AR,USA,33.3459775,-91.31569833 +M33,Sumner County Regional,Gallatin,TN,USA,36.37684472,-86.40875861 +M34,Kentucky Dam State Park,Gilbertsville,KY,USA,37.00950028,-88.29586639 +M36,Frank Federer Memorial,Brinkley,AR,USA,34.88000194,-91.1764375 +M37,Ruleville-Drew,Drew,MS,USA,33.77639167,-90.52500833 +M39,Mena Intermountain Municipal,Mena,AR,USA,34.54539444,-94.20265278 +M40,Monroe County,Aberdeen-Amory,MS,USA,33.87374861,-88.48967833 +M41,Holly Springs-Marshall County,Holly Springs,MS,USA,34.80434611,-89.5211075 +M43,Prentiss-Jefferson Davis County,Prentiss,MS,USA,31.59544583,-89.90619056 +M44,Houston Municipal,Houston,MS,USA,33.89177944,-89.02367194 +M46,Colstrip,Colstrip,MT,USA,45.85285,-106.7092722 +M48,Houston Memorial,Houston,MO,USA,37.33009167,-91.97316944 +M52,Franklin-Wilkins,Lexington,TN,USA,35.65131944,-88.37893444 +M53,Humboldt Municipal,Humboldt,TN,USA,35.80218,-88.87494944 +M54,Lebanon Municipal,Lebanon,TN,USA,36.19041667,-86.31569444 +M58,Monett Municipal,Monett,MO,USA,36.90621528,-94.01275833 +M59,Richton-Perry County,Richton,MS,USA,31.31739944,-88.93504778 +M60,Woodruff County,Augusta,AR,USA,35.27175278,-91.27040417 +M65,Wynne Municipal,Wynne,AR,USA,35.23160167,-90.76155111 +M70,Pocahontas Municipal,Pocahontas,AR,USA,36.24551111,-90.95520444 +M72,New Albany-Union County,New Albany,MS,USA,34.54722222,-89.02416667 +M73,Almyra Municipal,Almyra,AR,USA,34.41232833,-91.46634722 +M75,Malta,Malta,MT,USA,48.36694167,-107.9193444 +M76,Picayune Municipal,Picayune,MS,USA,30.48748472,-89.65119306 +M77,Howard County,Nashville,AR,USA,33.99673833,-93.83813583 +M78,Malvern Municipal,Malvern,AR,USA,34.33331583,-92.76149944 +M79,John H Hooks Jr Memorial,Rayville,LA,USA,32.48633611,-91.77087528 +M82,Madison County Executive,Huntsville,AL,USA,34.85645028,-86.55621472 +M83,McCharen,West Point,MS,USA,33.58403556,-88.66668694 +M89,Dexter B. Florence Memorial,Arkadelphia,AR,USA,34.09984639,-93.06611694 +M91,Springfield-Robertson County,Springfield,TN,USA,36.53726194,-86.92068917 +M95,Richard Arthur,Fayette,AL,USA,33.71221972,-87.81504639 +M97,Tunica Municipal,Tunica,MS,USA,34.69232306,-90.35065389 +M99,Saline County/Watts,Benton,AR,USA,34.55656472,-92.60693972 +MAC,Herbert Smart Downtown,Macon,GA,USA,32.82213889,-83.56202778 +MAE,Madera Municipal,Madera,CA,USA,36.9857175,-120.1119844 +MAF,Midland International,Midland,TX,USA,31.94252778,-102.2019139 +MAI,Marianna Municipal,Marianna,FL,USA,30.83780556,-85.18188889 +MAL,Malone-Dufort,Malone,NY,USA,44.85365722,-74.32894972 +MAO,Marion County,Marion,SC,USA,34.18116667,-79.33472222 +MAW,Malden Municipal,Malden,MO,USA,36.60055694,-89.99220278 +MAZ,Eugenio Maria De Hostos,Mayaguez,PR,USA,18.25569444,-67.14847222 +MBG,Mobridge Municipal,Mobridge,SD,USA,45.54650361,-100.4079192 +MBL,Manistee County Blacker,Manistee,MI,USA,44.27319722,-86.2490025 +MBO,Bruce Campbell,Madison,MS,USA,32.43866444,-90.10309222 +MBS,Mbs International,Saginaw,MI,USA,43.53291472,-84.07964722 +MBT,Murfreesboro Municipal,Murfreesboro,TN,USA,35.87748444,-86.37753222 +MBY,Omar N Bradley,Moberly,MO,USA,39.46392583,-92.42759778 +MCB,McComb-Pike County,McComb,MS,USA,31.17845444,-90.47187528 +MCD,Mackinac Island,Mackinac Island,MI,USA,45.86493444,-84.63734444 +MCE,Merced Municipal/MacReady,Merced,CA,USA,37.28472861,-120.5138858 +MCG,McGrath,McGrath,AK,USA,62.95287361,-155.6057625 +MCI,Kansas City International,Kansas City,MO,USA,39.29760528,-94.71390556 +MCK,McCook Municipal,McCook,NE,USA,40.20638889,-100.5918056 +MCN,Middle Georgia Regional,Macon,GA,USA,32.69284944,-83.64921083 +MCO,Orlando International,Orlando,FL,USA,28.42888889,-81.31602778 +MCW,Mason City Municipal,Mason City,IA,USA,43.1577925,-93.33126056 +MCX,White County,Monticello,IN,USA,40.70881639,-86.76676139 +MCZ,Martin County,Williamston,NC,USA,35.86219306,-77.17820278 +MDD,Midland Airpark,Midland,TX,USA,32.03652444,-102.1010278 +MDF,Mooreland Municipal,Mooreland,OK,USA,36.48475778,-99.19415778 +MDH,Southern Illinois,Carbondale,IL,USA,37.77809583,-89.25203111 +MDR,Medfra,Medfra,AK,USA,63.10577694,-154.7189806 +MDS,Madison Municipal,Madison,SD,USA,44.01597222,-97.08593333 +MDT,Harrisburg Intl,Harrisburg,PA,USA,40.19349528,-76.76340361 +MDW,Chicago Midway,Chicago,IL,USA,41.7859825,-87.75242444 +MDZ,Taylor County,Medford,WI,USA,45.10097556,-90.30341 +MEB,Laurinburg-Maxton,Maxton,NC,USA,34.79193917,-79.36584778 +MEI,Key,Meridian,MS,USA,32.33313333,-88.75120556 +MEJ,Meade Municipal,Meade,KS,USA,37.27938889,-100.3563056 +MEM,Memphis International,Memphis,TN,USA,35.04241667,-89.97666667 +MER,Castle,Atwater,CA,USA,37.38048056,-120.5681889 +MEV,Minden-Tahoe,Minden,NV,USA,39.00030889,-119.7508064 +MEY,Mapleton Municipal,Mapleton,IA,USA,42.178295,-95.79364528 +MFD,Mansfield Lahm Municipal,Mansfield,OH,USA,40.82141667,-82.51663889 +MFE,McAllen Miller International,McAllen,TX,USA,26.17583333,-98.23861111 +MFI,Marshfield Municipal,Marshfield,WI,USA,44.63687972,-90.18932667 +MFR,Rogue Valley International,Medford,OR,USA,42.37422778,-122.8734978 +MFV,Accomack County,Melfa,VA,USA,37.64688889,-75.76105556 +MGC,Michigan City Municipal,Michigan City,IN,USA,41.70331694,-86.82124167 +MGJ,Orange Cty,Montgomery,NY,USA,41.50998278,-74.26465056 +MGM,Montgomery Regional Apt,Montgomery,AL,USA,32.30064417,-86.39397611 +MGR,Moultrie Municipal,Moultrie,GA,USA,31.08490917,-83.80325528 +MGW,Morgantown Muni-Walter L. Bill Hart Fld.,Morgantown,WV,USA,39.6429075,-79.91631417 +MGY,Dayton Wright Brothers,Dayton,OH,USA,39.58897222,-84.22486111 +MHE,Mitchell Municipal,Mitchell,SD,USA,43.77483333,-98.03861111 +MHK,Manhattan Regional,Manhattan,KS,USA,39.14096722,-96.67083278 +MHL,Marshall Memorial Municipal,Marshall,MO,USA,39.09575472,-93.20287889 +MHM,Minchumina,Minchumina,AK,USA,63.880565,-152.3006756 +MHP,Metter Municipal,Metter,GA,USA,32.37388889,-82.07919444 +MHR,Sacramento Mather,Sacramento,CA,USA,38.55389694,-121.2975908 +MHT,Manchester,Manchester,NH,USA,42.93451639,-71.43705583 +MHV,Mojave,Mojave,CA,USA,35.05936472,-118.1518561 +MIA,Miami International,Miami,FL,USA,25.79325,-80.29055556 +MIB,Minot AFB,NA,NA,USA,48.415769,-101.358039 +MIC,Crystal,Minneapolis,MN,USA,45.06198611,-93.3539375 +MIE,Delaware County,Muncie,IN,USA,40.24234806,-85.39586 +MIO,Miami Municipal,Miami,OK,USA,36.90922083,-94.88750028 +MIT,Shafter-Minter,Shafter,CA,USA,35.50592944,-119.1915236 +MIV,Millville Muni,Millville,NJ,USA,39.36780556,-75.07222222 +MIW,Marshalltown Municipal,Marshalltown,IA,USA,42.11272639,-92.91778778 +MJQ,Jackson Municipal,Jackson,MN,USA,43.65004111,-94.98654611 +MJX,Robert J. Miller Airpark,Toms River,NJ,USA,39.92749806,-74.29237917 +MKA,Miller Municipal,Miller,SD,USA,44.52524444,-98.95811444 +MKC,Downtown,Kansas City,MO,USA,39.12324111,-94.592735 +MKE,General Mitchell International,Milwaukee,WI,USA,42.94722222,-87.89658333 +MKG,Muskegon County,Muskegon,MI,USA,43.16948806,-86.23822306 +MKJ,Mountain Empire,Marion,VA,USA,36.8948525,-81.349955 +MKK,Molokai,Kaunakakai,HI,USA,21.15288583,-157.0962561 +MKL,McKellar-Sipes Regional,Jackson,TN,USA,35.59987944,-88.91561611 +MKO,Davis,Muskogee,OK,USA,35.65773028,-95.36164889 +MKT,Mankato Regional,Mankato,MN,USA,44.22164528,-93.91874333 +MKV,Marksville Municipal,Marksville,LA,USA,31.09466,-92.06906861 +MKY,Marco Island,Marco Island,FL,USA,25.99502778,-81.67252778 +MLB,Melbourne International,Melbourne,FL,USA,28.10275,-80.64580556 +MLC,McAlester Regional,McAlester,OK,USA,34.88240194,-95.78346278 +MLE,Millard,Omaha,NE,USA,41.196,-96.11227778 +MLF,Milford Municipal,Milford,UT,USA,38.4266325,-113.0124564 +MLI,Quad City,Moline,IL,USA,41.44852639,-90.50753917 +MLJ,Baldwin County,Milledgeville,GA,USA,33.15419444,-83.24061111 +MLL,Marshall,Marshall,AK,USA,61.8659225,-162.0690456 +MLS,Frank Wiley,Miles City,MT,USA,46.42795972,-105.8862397 +MLT,Millinocket Municipal,Millinocket,ME,USA,45.64783611,-68.68556194 +MLU,Monroe Regional,Monroe,LA,USA,32.51086556,-92.03768778 +MLY,Manley Hot Springs,Manley Hot Springs,AK,USA,64.99756472,-150.6441297 +MMH,Mammoth Yosemite,Mammoth Lakes,CA,USA,37.62404861,-118.8377722 +MMI,McMinn County,Athens,TN,USA,35.39730333,-84.56256861 +MMK,Meriden-Markham Municipal,Meriden,CT,USA,41.50871472,-72.82947833 +MML,Marshall Muni - Ryan,Marshall,MN,USA,44.45006611,-95.82234028 +MMU,Morristown Municipal,Morristown,NJ,USA,40.79935,-74.41487472 +MMV,McMinnville Muni,McMinnville,OR,USA,45.19444444,-123.1359444 +MNF,Mountain View,Mountain View,MO,USA,36.99282694,-91.71445611 +MNI,Clarendon County,Manning,SC,USA,33.58711111,-80.20866667 +MNM,Menominee-Marinette Twin County,Menominee,MI,USA,45.12665028,-87.63844056 +MNN,Marion Municipal,Marion,OH,USA,40.61625,-83.06347222 +MNV,Monroe County,Madisonville,TN,USA,35.54537222,-84.380235 +MNZ,Hamilton Municipal,Hamilton,TX,USA,31.66592639,-98.1486375 +MO6,Washington Memorial,Washington,MO,USA,38.59163472,-90.99761444 +MO85,Lawrence Smith Memorial,Harrisonville,MO,USA,38.61102222,-94.34213056 +MOB,Mobile Regional,Mobile,AL,USA,30.69141667,-88.24283333 +MOD,Modesto City-County-Harry Sham,Modesto,CA,USA,37.62581722,-120.9544214 +MOP,Mount Pleasant Municipal,Mount Pleasant,MI,USA,43.62166833,-84.737485 +MOR,Moore-Murrell,Morristown,TN,USA,36.17939639,-83.37544944 +MOT,Minot International,Minot,ND,USA,48.25937778,-101.2803339 +MOU,Mountain Village,Mountain Village,AK,USA,62.09536222,-163.6820594 +MOX,Morris Municipal,Morris,MN,USA,45.56651667,-95.96763611 +MPE,Philadelphia Municipal,Philadelphia,MS,USA,32.7995775,-89.12589472 +MPJ,Petit Jean Park,Morrilton,AR,USA,35.13886306,-92.90919694 +MPO,Pocono Mountains Muni,Mount Pocono,PA,USA,41.1374775,-75.37887833 +MPR,McPherson,McPherson,KS,USA,38.35243722,-97.69133028 +MPV,Edward F Knapp State,Barre-Montpelier,VT,USA,44.203505,-72.56232944 +MPZ,Mount Pleasant Municipal,Mount Pleasant,IA,USA,40.94661389,-91.511075 +MQB,Macomb Municipal,Macomb,IL,USA,40.52034556,-90.65246389 +MQI,Dare County Regional,Manteo,NC,USA,35.91898806,-75.69553944 +MQJ,Mount Comfort,Indianapolis,IN,USA,39.84348556,-85.89706389 +MQT,Marquette County Airport,NA,NA,USA,46.353639,-87.395361 +MQW,Telfair-Wheeler,McRae,GA,USA,32.09577778,-82.88002778 +MQY,Smyrna,Smyrna,TN,USA,36.00897944,-86.52007667 +MRB,Eastern Wv Reg/Shephard,Martinsburg,WV,USA,39.40193278,-77.98458139 +MRC,Maury County,Columbia-Mt Pleasant,TN,USA,35.55413889,-87.17891667 +MRF,Marfa Municipal,Marfa,TX,USA,30.37147222,-104.0166944 +MRH,Michael J. Smith,Beaufort,NC,USA,34.73355028,-76.66059611 +MRI,Merrill,Anchorage,AK,USA,61.21437861,-149.8461614 +MRJ,Iowa County,Mineral Point,WI,USA,42.88532917,-90.23198583 +MRN,Morganton-Lenoir,Morganton,NC,USA,35.82149222,-81.61073639 +MRY,Monterey Peninsula,Monterey,CA,USA,36.5869825,-121.8429478 +MSA,Mount Pleasant Municipal,Mount Pleasant,TX,USA,33.12936111,-94.97563889 +MSL,Northwest Alabama Regional,Muscle Shoals,AL,USA,34.74532028,-87.61023222 +MSN,Dane County Regional,Madison,WI,USA,43.13985778,-89.33751361 +MSO,Missoula International,Missoula,MT,USA,46.91630556,-114.0905556 +MSP,Minneapolis-St Paul Intl,Minneapolis,MN,USA,44.88054694,-93.2169225 +MSS,Massena Int'l-Richards,Massena,NY,USA,44.93582722,-74.84554583 +MSV,Sullivan Cty Intl,Monticello,NY,USA,41.70164917,-74.79501389 +MSY,New Orleans International,New Orleans,LA,USA,29.99338889,-90.25802778 +MTH,Florida Keys Marathon,Marathon,FL,USA,24.72614083,-81.05137806 +MTJ,Montrose Regional,Montrose,CO,USA,38.50886722,-107.8938333 +MTM,Metlakatla SPB,Metlakatla,AK,USA,55.13104528,-131.5780675 +MTN,Martin State,Baltimore,MD,USA,39.32566333,-76.41376556 +MTO,Coles County Memorial,Mattoon-Charleston,IL,USA,39.47793722,-88.27923833 +MTP,Montauk,Montauk,NY,USA,41.07694333,-71.92039972 +MTV,Blue Ridge,Martinsville,VA,USA,36.63074861,-80.01834917 +MTW,Manitowoc County,Manitowoc,WI,USA,44.1287725,-87.68058472 +MUE,Waimea-Kohala,Kamuela,HI,USA,20.00132694,-155.6681072 +MUT,Muscatine Municipal,Muscatine,IA,USA,41.36786333,-91.14821639 +MVC,Monroe County,Monroeville,AL,USA,31.45805306,-87.35104028 +MVE,Montevideo-Chippewa County,Montevideo,MN,USA,44.96905556,-95.71025 +MVI,Monte Vista Muni,Monte Vista,CO,USA,37.52855833,-106.0460533 +MVL,Morrisville-Stowe State,Morrisville,VT,USA,44.53460806,-72.61400444 +MVM,Machias Valley,Machias,ME,USA,44.70311111,-67.47861111 +MVN,Mt Vernon-Outland,Mt. Vernon,IL,USA,38.32335444,-88.85847917 +MVY,Marthas Vineyard,Marthas Vineyard,MA,USA,41.39302583,-70.6143325 +MWA,Williamson County,Marion,IL,USA,37.75313528,-89.01159694 +MWC,Lawrence J Timmerman,Milwaukee,WI,USA,43.11092694,-88.03442194 +MWH,Grant County,Moses Lake,WA,USA,47.20770806,-119.3201897 +MWK,Mount Airy-Surry County,Mount Airy,NC,USA,36.459735,-80.55295722 +MWL,Mineral Wells Municipal,Mineral Wells,TX,USA,32.78160556,-98.060175 +MWM,Windom Municipal,Windom,MN,USA,43.91340167,-95.10940833 +MWO,Hook Field Municipal,Middletown,OH,USA,39.53102778,-84.39527778 +MXA,Manila Municipal,Manila,AR,USA,35.89444444,-90.15456944 +MXO,Monticello Municipal,Monticello,IA,USA,42.22611111,-91.16708333 +MYF,Montgomery,San Diego,CA,USA,32.81573306,-117.1395664 +MYK,May Creek,May Creek,AK,USA,61.33567417,-142.686775 +MYL,McCall,McCall,ID,USA,44.88879556,-116.1017497 +MYR,Myrtle Beach International,Myrtle Beach,SC,USA,33.67975,-78.92833333 +MYU,Mekoryuk,Mekoryuk,AK,USA,60.37142,-166.2706083 +MYV,Yuba County,Marysville,CA,USA,39.09777278,-121.569825 +MYZ,Marysville Municipal,Marysville,KS,USA,39.85416833,-96.63021389 +MZJ,Pinal Airpark,Marana,AZ,USA,32.50984389,-111.3253339 +MZZ,Marion Municipal,Marion,IN,USA,40.49037278,-85.67914389 +N00,Maben,Lexington,NY,USA,42.27230778,-74.39403667 +N03,Cortland Cty-Chase,Cortland,NY,USA,42.59264528,-76.2148825 +N04,Griswold,Madison,CT,USA,41.27118222,-72.54972972 +N07,Lincoln Park,Lincoln Park,NJ,USA,40.94752444,-74.31450139 +N10,Perkiomen Valley,Collegeville,PA,USA,40.20404833,-75.43026306 +N12,Lakewood,Lakewood,NJ,USA,40.0667825,-74.17764167 +N13,Bloomsburg Muni,Bloomsburg,PA,USA,40.99778111,-76.43605583 +N14,Flying W,Lumbrerton,NJ,USA,39.93427778,-74.80725 +N23,Sidney Muni,Sidney,NY,USA,42.30258,-75.41595639 +N24,Questa Municipal Nr 2,Questa,NM,USA,36.80030556,-105.5975 +N25,Westport,"Westport, NY",NY,USA,44.15838611,-73.43290444 +N27,Bradford County,Towanda,PA,USA,41.74324028,-76.44457083 +N29,Magdalena,Magdalena,NM,USA,34.09450778,-107.2978142 +N30,Cherry Ridge,Honesdale,PA,USA,41.51533861,-75.25148139 +N35,Punxsutawney Muni,Punxsutawney,PA,USA,40.96667472,-78.93000528 +N37,Monticello,Monticello,NY,USA,41.62249167,-74.70141111 +N38,Grand Canyon State,Wellsboro,PA,USA,41.72790028,-77.39651139 +N40,Sky Manor,Pittstown,NJ,USA,40.56626889,-74.97864139 +N47,Pottstown Muni,Pottstown,PA,USA,40.26040083,-75.67085306 +N51,Solberg-Hunterdon,Readington,NJ,USA,40.58286278,-74.73656222 +N53,Stroudsburg-Pocono,East Stroudsburg,PA,USA,41.03587167,-75.16067889 +N57,New Garden Flying,Toughkenamon,PA,USA,39.83052639,-75.76974472 +N66,Oneonta Muni,Oneonta,NY,USA,42.52476694,-75.06446167 +N67,Wings,Ambler,PA,USA,40.13647333,-75.26702972 +N68,Chambersburg Muni,Chambersburg,PA,USA,39.97295167,-77.64326778 +N69,Stormville,Stormville,NY,USA,41.57698222,-73.73235278 +N72,Warwick Muni,Warwick,NY,USA,41.28759361,-74.28709472 +N73,Red Lion,Vincentown,NJ,USA,39.90415167,-74.74954917 +N79,Northumberland Cty,Shamokin,PA,USA,40.83692306,-76.55245611 +N81,Hammonton Muni,Hammonton,NJ,USA,39.66746889,-74.75773444 +N82,Wurtsboro-Sullivan Cty,Wurtsboro,NY,USA,41.59720444,-74.45840722 +N85,Alexandria,Pittstown,NJ,USA,40.58757389,-75.01942056 +N87,Trenton-Robbinsville,Robbinsville,NJ,USA,40.21394333,-74.60179472 +N89,Joseph Y. Resnick,Ellenville,NY,USA,41.72787111,-74.37737583 +N93,New Golovin,Golovin,AK,USA,64.55305556,-163.0088889 +N99,Brandywine,West Chester,PA,USA,39.99472222,-75.58333333 +NC14,Rockingham County NC Shiloh,Reidsville,NC,USA,36.43722083,-79.85101 +NC67,Ashe County,West Jefferson,NC,USA,36.43243111,-81.41968472 +ND06,Cavalier Municipal,Cavalier,ND,USA,48.78388139,-97.62981028 +ND12,Ellendale Municipal,Ellendale,ND,USA,46.01247194,-98.51287889 +ND17,Harvey Municipal,Harvey,ND,USA,47.79123306,-99.93174222 +ND26,Kenmare Municipal,Kenmare,ND,USA,48.66758278,-102.0475944 +ND28,Lakota Municipal,Lakota,ND,USA,48.0313875,-98.32788111 +ND29,La Moure Rott Municipal,La Moure (New Site),ND,USA,46.34663556,-98.28371 +ND33,Linton Municipal,Linton,ND,USA,46.21830472,-100.2450028 +ND44,Mott Municipal,Mott,ND,USA,46.359725,-102.3229389 +ND66,Washburn Municipal,Washburn,ND,USA,47.35305,-101.0273681 +NEW,Lakefront,New Orleans,LA,USA,30.04242056,-90.02825694 +NH12,Plymouth Municipal,Plymouth,NH,USA,43.77923806,-71.75369056 +NK03,Kamp,Durhamville,NY,USA,43.13472111,-75.64890417 +NQA,Millington Municipal,Millington,TN,USA,35.35666667,-89.87027778 +NRN,Norton Municipal,Norton,KS,USA,39.84914444,-99.89320583 +NUL,Nulato,Nulato,AK,USA,64.72981944,-158.0731889 +NVD,Nevada Municipal,Nevada,MO,USA,37.85206528,-94.30486472 +NY0,Fulton Cty,Johnstown,NY,USA,42.99821222,-74.32955111 +O02,Nervino,Beckwourth,CA,USA,39.82073556,-120.3543767 +O05,Rogers,Chester,CA,USA,40.28235278,-121.2411683 +O08,Colusa County,Colusa,CA,USA,39.17903,-121.9933611 +O09,Round Valley,Covelo,CA,USA,39.79015444,-123.2664025 +O11,Cherokee Nation,Stilwell,OK,USA,35.75703083,-94.64994417 +O15,Turlock Municipal,Turlock,CA,USA,37.48743556,-120.6968669 +O16,Garberville,Garberville,CA,USA,40.08597806,-123.8136397 +O17,Nevada County Air Park,Grass Valley,CA,USA,39.22402778,-121.0030833 +O19,Kneeland,Eureka,CA,USA,40.7193,-123.9275531 +O21,Hoopa,Hoopa,CA,USA,41.04290778,-123.6683894 +O22,Columbia,Columbia,CA,USA,38.03042306,-120.4145556 +O24,Lee Vining,Lee Vining,CA,USA,37.95825861,-119.1065375 +O26,Lone Pine,Lone Pine,CA,USA,36.58826667,-118.0520314 +O27,Oakdale,Oakdale,CA,USA,37.75634472,-120.8002089 +O28,Ells Field-Willits Municipal,Willits,CA,USA,39.45129778,-123.3722844 +O31,Healdsburg Municipal,Healdsburg,CA,USA,38.65352083,-122.8994397 +O32,Reedley Municipal,Reedley,CA,USA,36.66633917,-119.4498483 +O35,Hollis Municipal,Hollis,OK,USA,34.70839417,-99.90871194 +O37,Haigh,Orland,CA,USA,39.72124194,-122.1466508 +O41,Watts-Woodland,Woodland,CA,USA,38.67387639,-121.8720772 +O42,Woodlake,Woodlake,CA,USA,36.39883833,-119.1073289 +O43,Yerington Municipal,Yerington,NV,USA,39.00408444,-119.1579303 +O45,Hooker Municipal,Hooker,OK,USA,36.85708306,-101.2270903 +O46,Weed,Weed,CA,USA,41.47487,-122.4530739 +O47,Prague Municipal,Prague,OK,USA,35.48201417,-96.71862944 +O48,Little River,Little River,CA,USA,39.26203778,-123.7537347 +O52,Sutter County,Yuba City,CA,USA,39.12655889,-121.6091328 +O53,Medford Municipal,Medford,OK,USA,36.79058417,-97.74899722 +O54,Lonnie Pool /Weaverville,Weaverville,CA,USA,40.7457,-122.92197 +O57,Bryant,Bridgeport,CA,USA,38.26241917,-119.2257094 +O59,Cedarville,Cedarville,CA,USA,41.55267139,-120.1663339 +O60,Cloverdale Municipal,Cloverdale,CA,USA,38.7743525,-122.9922217 +O61,Cameron Airpark,Cameron Park,CA,USA,38.68407028,-120.9871642 +O65,Okeene Municipal,Okeene,OK,USA,36.11253667,-98.3086825 +O68,Mariposa-Yosemite,Mariposa,CA,USA,37.51077,-120.0418439 +O69,Petaluma Municipal,Petaluma,CA,USA,38.2578325,-122.6055406 +O70,Westover Field Amador County,Jackson,CA,USA,38.37680111,-120.7939075 +O81,Tulelake Municipal,Tulelake,CA,USA,41.88738,-121.3594331 +O85,Benton,Redding,CA,USA,40.57487278,-122.4080642 +O86,Trinity Center,Trinity Center,CA,USA,40.98320111,-122.6941889 +O88,Rio Vista Municipal,Rio Vista,CA,USA,38.1935,-121.7023889 +O89,Fall River Mills,Fall River Mills,CA,USA,41.01877417,-121.4333136 +OAJ,Albert J Ellis,Jacksonville,NC,USA,34.82916444,-77.61213778 +OAK,Metropolitan Oakland International,Oakland,CA,USA,37.72129083,-122.2207167 +OAR,Marina Municipal,Marina,CA,USA,36.68190278,-121.7624492 +OBE,Okeechobee County,Okeechobee,FL,USA,27.26282306,-80.84978306 +OBU,Kobuk,Kobuk,AK,USA,66.90917056,-156.8610575 +OCF,Ocala Regional/Jim Taylor,Ocala,FL,USA,29.17261111,-82.22416667 +OCH,Nacogdoches-A.L. Mangham Jr. Regional,Nacogdoches,TX,USA,31.57802778,-94.70954167 +OCQ,Oconto Municipal,Oconto,WI,USA,44.8735825,-87.9090525 +OCW,Warren,Washington,NC,USA,35.57046806,-77.04981306 +ODO,Odessa-Schlemeyer,Odessa,TX,USA,31.92056722,-102.3870892 +ODX,Evelyn Sharp,Ord,NE,USA,41.62425,-98.95236111 +OEB,Branch County Memorial,Coldwater,MI,USA,41.93344861,-85.052585 +OEL,Oakley Municipal,Oakley,KS,USA,39.10994444,-100.8164444 +OEO,L. O. Simenstad Municipal,Osceola,WI,USA,45.30858944,-92.69008056 +OFK,Karl Stefan Memorial,Norfolk,NE,USA,41.98546389,-97.43511111 +OFP,Hanover County Municipal,Richmond,VA,USA,37.7080325,-77.43601028 +OGA,Searle,Ogallala,NE,USA,41.11961111,-101.7689444 +OGB,Orangeburg Municipal,Orangeburg,SC,USA,33.46094444,-80.85891667 +OGD,Ogden-Hinckley,Ogden,UT,USA,41.19594417,-112.012175 +OGG,Kahului,Kahului,HI,USA,20.89864972,-156.4304578 +OGM,Ontonagon County,Ontonagon,MI,USA,46.84547028,-89.36708806 +OGS,Ogdensburg Intl,Ogdensburg,NY,USA,44.68185361,-75.46549917 +OH17,Henry County,Napoleon,OH,USA,41.37427778,-84.06791667 +OH21,Huron County,Norwalk,OH,USA,41.24476583,-82.55122722 +OH30,Put In Bay,Put In Bay,OH,USA,41.63674333,-82.82833333 +OIC,Lt Warren Eaton,Norwich,NY,USA,42.56655417,-75.52411167 +OIN,Oberlin Municipal,Oberlin,KS,USA,39.83378278,-100.5394236 +OJC,Johnson County Executive,Olathe,KS,USA,38.84760194,-94.73758583 +OKB,Oceanside Municipal,Oceanside,CA,USA,33.21797639,-117.3515075 +OKC,Will Rogers World,Oklahoma City,OK,USA,35.39308833,-97.60073389 +OKK,Kokomo Municipal,Kokomo,IN,USA,40.5281775,-86.05899 +OKM,Okmulgee Municipal,Okmulgee,OK,USA,35.66813889,-95.94869444 +OKS,Garden County,Oshkosh,NE,USA,41.40097222,-102.3550278 +OKV,Winchester Regional,Winchester,VA,USA,39.14352139,-78.14444444 +OKZ,Kaolin,Sandersville,GA,USA,32.96672222,-82.83816667 +OLD,Dewitt Field-Old Town Municipal,Old Town,ME,USA,44.9525,-68.67433333 +OLE,Olean Muni,Olean,NY,USA,42.24006611,-78.371685 +OLF,L M Clayton,Wolf Point,MT,USA,48.09451778,-105.5750536 +OLM,Olympia,Olympia,WA,USA,46.9705,-122.9022083 +OLS,Nogales International,Nogales,AZ,USA,31.41772222,-110.8478889 +OLU,Columbus Municipal,Columbus,NE,USA,41.448,-97.34263889 +OLV,Olive Branch,Olive Branch,MS,USA,34.97875,-89.78683333 +OLY,Olney-Noble,Olney-Noble,IL,USA,38.72182722,-88.17643278 +OLZ,Oelwein Municipal,Oelwein,IA,USA,42.68084472,-91.97447833 +OMA,Eppley Airfield,Omaha,NE,USA,41.30251861,-95.89417306 +OME,Nome,Nome,AK,USA,64.51220222,-165.4452458 +OMH,Orange County,Orange,VA,USA,38.24721639,-78.04561028 +OMK,Omak,Omak,WA,USA,48.46440222,-119.5180503 +OMN,Ormond Beach Municipal,Ormond Beach,FL,USA,29.30113889,-81.11380556 +ONA,Winona Muni-Max Conrad,Winona,MN,USA,44.07721306,-91.70831694 +ONL,O Neill Municipal,O Neill,NE,USA,42.46988889,-98.68805556 +ONM,Socorro Municipal,Socorro,NM,USA,34.02247222,-106.9031389 +ONO,Ontario Muni,Ontario,OR,USA,44.02052417,-117.013635 +ONP,Newport Muni,Newport,OR,USA,44.58036111,-124.0579167 +ONT,Ontario International,Ontario,CA,USA,34.056,-117.6011944 +ONY,Olney Municipal,Olney,TX,USA,33.35088056,-98.81916667 +ONZ,Grosse Ile Municipal,Detroit - Grosse Ile,MI,USA,42.09860472,-83.16105861 +OOA,Oskaloosa Municipal,Oskaloosa,IA,USA,41.22614944,-92.49388278 +OOH,Hoonah SPB,Hoonah,AK,USA,58.11215944,-135.451805 +OOK,Toksook Bay,Toksook Bay,AK,USA,60.53337639,-165.1139636 +OPF,Opa-Locka,Miami,FL,USA,25.907,-80.27838889 +OPL,St Landry Parish - Ahart,Opelousas,LA,USA,30.55840556,-92.099375 +OPN,Thomaston-Upton County,Thomaston,GA,USA,32.95458861,-84.26315222 +OQU,Quonset State,North Kingstown,RI,USA,41.5971525,-71.41215333 +OQW,Maquoketa Municipal,Maquoketa,IA,USA,42.050075,-90.73880472 +OR33,Boardman,Boardman,OR,USA,45.814825,-119.8205006 +ORB,Orr Regional,Orr,MN,USA,48.01592194,-92.85605139 +ORC,Orange City Municipal,Orange City,IA,USA,42.99026444,-96.06279667 +ORD,Chicago O'Hare International,Chicago,IL,USA,41.979595,-87.90446417 +ORE,Orange Municipal,Orange,MA,USA,42.57011889,-72.28860667 +ORF,Norfolk International,Norfolk,VA,USA,36.89461111,-76.20122222 +ORG,Orange County,Orange,TX,USA,30.06916667,-93.80091667 +ORH,Worcester Regional,Worcester,MA,USA,42.26733944,-71.87570944 +ORI,Port Lions,Port Lions,AK,USA,57.8853775,-152.8461011 +ORL,Executive,Orlando,FL,USA,28.54547222,-81.33294444 +ORS,Orcas Island,Eastsound,WA,USA,48.70816,-122.9137961 +ORT,Northway,Northway,AK,USA,62.96133361,-141.9291369 +ORV,Robert(Bob) Curtis Memorial,Noorvik,AK,USA,66.82852667,-161.0277908 +OSC,Oscoda - Wurtsmith,Oscoda,MI,USA,44.45260972,-83.38036389 +OSH,Wittman Regional,Oshkosh,WI,USA,43.98436639,-88.55705944 +OSU,Ohio State University,Columbus,OH,USA,40.07977778,-83.07302778 +OSX,Kosciusko-Attala County,Kosciusko,MS,USA,33.09025889,-89.54201722 +OTG,Worthington Municipal,Worthington,MN,USA,43.65506611,-95.57920917 +OTH,North Bend Muni,North Bend,OR,USA,43.41713889,-124.2460278 +OTM,Ottumwa Industrial,Ottumwa,IA,USA,41.10659611,-92.44793972 +OTZ,Ralph Wien Memorial,Kotzebue,AK,USA,66.88467694,-162.5985497 +OUN,University of Oklahoma Westheimer,Norman,OK,USA,35.24556444,-97.47212861 +OVE,Oroville Municipal,Oroville,CA,USA,39.48775,-121.622 +OVO,North Vernon,North Vernon,IN,USA,39.04563667,-85.60533 +OVS,Boscobel,Boscobel,WI,USA,43.16063056,-90.67421833 +OWA,Owatonna Degner Regional,Owatonna,MN,USA,44.12339722,-93.26061667 +OWB,Owensboro-Daviess County,Owensboro,KY,USA,37.74011111,-87.16683333 +OWD,Norwood Memorial,Norwood,MA,USA,42.19079694,-71.17310389 +OWI,Ottawa Municipal,Ottawa,KS,USA,38.53866667,-95.25297222 +OWK,Central Maine,Norridgewock,ME,USA,44.7155,-69.86647222 +OWX,Putnam County,Ottawa,OH,USA,41.0355825,-83.98202444 +OXB,Ocean City,Ocean City,MD,USA,38.31044444,-75.12397222 +OXC,Waterbury-Oxford,Oxford,CT,USA,41.47855556,-73.13525 +OXD,Miami University,Oxford,OH,USA,39.50203917,-84.7841425 +OXI,Starke County,Knox,IN,USA,41.3301875,-86.66473194 +OXR,Oxnard,Oxnard,CA,USA,34.20080083,-119.2072164 +OXV,Knoxville Municipal,Knoxville,IA,USA,41.29888556,-93.11381556 +OYM,St Marys Muni,St Marys,PA,USA,41.41247778,-78.50263139 +OZA,Ozona Municipal,Ozona,TX,USA,30.73528028,-101.2029719 +OZW,Livingston County,Howell,MI,USA,42.62950694,-83.98417361 +P01,Ajo Municipal,Ajo,AZ,USA,32.45005694,-112.8673778 +P04,Bisbee Municipal,Bisbee,AZ,USA,31.36399028,-109.8831286 +P08,Coolidge Municipal,Coolidge,AZ,USA,32.93594444,-111.4265278 +P13,San Carlos Apache,Globe,AZ,USA,33.35314722,-110.6673611 +P14,Holbrook Municipal,Holbrook,AZ,USA,34.93891389,-110.1395656 +P20,Avi Suquilla,Parker,AZ,USA,34.15063889,-114.2712222 +P32,H.A. Clark Memorial,Williams,AZ,USA,35.30223222,-112.1940575 +P33,Cochise County,Willcox,AZ,USA,32.24540278,-109.8946319 +P45,Mount Pleasant-Scottdale,Mount Pleasant,PA,USA,40.10840556,-79.54142694 +P52,Cottonwood,Cottonwood,AZ,USA,34.73002111,-112.0351569 +P53,Rostraver,Monongahela,PA,USA,40.20972222,-79.83144444 +PAE,Snohomish County,Everett,WA,USA,47.90762861,-122.2815892 +PAH,Barkley Regional,Paducah,KY,USA,37.06083333,-88.77375 +PAK,Port Allen,Hanapepe,HI,USA,21.89686833,-159.6033217 +PAN,Payson,Payson,AZ,USA,34.25683639,-111.3392558 +PAO,Palo Alto Arpt of Santa Clara Co,Palo Alto,CA,USA,37.46111944,-122.1150444 +PAQ,Palmer Municipal,Palmer,AK,USA,61.59474194,-149.0888242 +PBF,Grider,Pine Bluff,AR,USA,34.17498722,-91.93472028 +PBH,Price County,Phillips,WI,USA,45.70895028,-90.40248472 +PBI,Palm Beach International,West Palm Beach,FL,USA,26.68316194,-80.09559417 +PBV,St. George,St. George,AK,USA,56.57735278,-169.6637361 +PCK,Porcupine Creek,Porcupine Creek,AK,USA,67.23789833,-150.2860608 +PCM,Plant City Municipal,Plant City,FL,USA,28.00021667,-82.16424167 +PCW,Carl R. Keller,Port Clinton,OH,USA,41.51627778,-82.86869444 +PCZ,Waupaca Municipal,Waupaca,WI,USA,44.33368778,-89.01549861 +PDC,Prairie Du Chien Municipal,Prairie Du Chien,WI,USA,43.01928889,-91.12374722 +PDK,Dekalb-Peachtree,Atlanta,GA,USA,33.87560444,-84.30196778 +PDT,Eastern Oregon Regional At Pendleton,Pendleton,OR,USA,45.69505556,-118.8414444 +PDX,Portland Intl,Portland,OR,USA,45.58872222,-122.5975 +PEA,Pella Municipal,Pella,IA,USA,41.40006667,-92.94588333 +PEC,Pelican SPB,Pelican,AK,USA,57.95517222,-136.2362733 +PEO,Penn Yan,Penn Yan,NY,USA,42.63813556,-77.05306083 +PEQ,Pecos Municipal,Pecos City,TX,USA,31.3823575,-103.5107017 +PEZ,Pleasanton Municipal,Pleasanton,TX,USA,28.95419444,-98.51998917 +PFN,Panama City-Bay County International,Panama City,FL,USA,30.21208333,-85.68280556 +PGA,Page Municipal,Page,AZ,USA,36.92611111,-111.4483611 +PGD,Charlotte County,Punta Gorda,FL,USA,26.92019444,-81.99052778 +PGM,Port Graham,Port Graham,AK,USA,59.34825944,-151.8315389 +PGR,Kirk,Paragould,AR,USA,36.06352944,-90.50986028 +PGV,Pitt-Greenville,Greenville,NC,USA,35.63523944,-77.38532028 +PHD,Harry Clever,New Philadelphia,OH,USA,40.47091667,-81.41975 +PHF,Newport News/Williamsburg International,Newport News,VA,USA,37.13189556,-76.4929875 +PHG,Phillipsburg Municipal,Phillipsburg,KS,USA,39.73530556,-99.31741667 +PHH,Andrews Municipal,Andrews,SC,USA,33.45169472,-79.52620111 +PHK,Palm Beach County Glades,Pahokee,FL,USA,26.78503861,-80.69335528 +PHL,Philadelphia Intl,Philadelphia,PA,USA,39.87195278,-75.24114083 +PHN,St Clair County International,Port Huron,MI,USA,42.91095778,-82.52886139 +PHO,Point Hope,Point Hope,AK,USA,68.34877417,-166.7993086 +PHP,Philip,Philip,SD,USA,44.04862722,-101.5990603 +PHT,Henry County,Paris,TN,USA,36.33822472,-88.38287861 +PHX,Phoenix Sky Harbor International,Phoenix,AZ,USA,33.43416667,-112.0080556 +PIA,Greater Peoria Regional,Peoria,IL,USA,40.66424333,-89.69330556 +PIB,Hattiesburg-Laurel Regional,Hattiesburg-Laurel,MS,USA,31.46714944,-89.33705778 +PIE,St. Petersburg-Clearwater International,St. Petersburg,FL,USA,27.91076333,-82.68743944 +PIH,Pocatello Regional,Pocatello,ID,USA,42.91130556,-112.5958611 +PIL,Port Isabel-Cameron County,Port Isabel,TX,USA,26.16621,-97.34588611 +PIM,Callaway Gardens-Harris County,Pine Mountain,GA,USA,32.84069444,-84.88244444 +PIR,Pierre Regional,Pierre,SD,USA,44.38267694,-100.285965 +PIT,Pittsburgh International,Pittsburgh,PA,USA,40.49146583,-80.23287083 +PIZ,Point Lay Dew Station,Point Lay,AK,USA,69.732875,-163.0053417 +PJY,Pinckneyville-Duquoin,Pinckneyville-Duquoin,IL,USA,37.97788417,-89.36044889 +PKA,Napaskiak,Napaskiak,AK,USA,60.70369056,-161.7767367 +PKB,Wood Cty/Gill Robb Wilson,Parkersburg,WV,USA,39.34510333,-81.43920194 +PKD,Park Rapids Municipal,Park Rapids,MN,USA,46.90062583,-95.07313278 +PKF,Park Falls Municipal,Park Falls,WI,USA,45.95502361,-90.42441806 +PLB,Clinton Cty,Plattsburgh,NY,USA,44.68751861,-73.52452306 +PLD,Portland Municipal,Portland,IN,USA,40.45076167,-84.99007917 +PLN,Pellston Regional of Emmet County,Pellston,MI,USA,45.5709275,-84.796715 +PLR,St Clair County,Pell City,AL,USA,33.55883333,-86.24905556 +PMB,Pembina Municipal,Pembina,ND,USA,48.9425,-97.24083333 +PMD,Palmdale Production Flight,Palmdale,CA,USA,34.62938889,-118.0845528 +PMH,Greater Portsmouth Regional,Portsmouth,OH,USA,38.84047,-82.84731361 +PMP,Pompano Beach Airpark,Pompano Beach,FL,USA,26.24713889,-80.11105556 +PMV,Plattsmouth Municipal,Plattsmouth,NE,USA,40.95025,-95.91788889 +PMX,Metropolitan,Palmer,MA,USA,42.22328722,-72.31138694 +PMZ,Plymouth Municipal,Plymouth,NC,USA,35.80843944,-76.75927694 +PNA,Ralph Wenz,Pinedale,WY,USA,42.79549917,-109.8070944 +PNC,Ponca City Municipal,Ponca City,OK,USA,36.73058417,-97.09976833 +PNE,Northeast Philadelphia,Philadelphia,PA,USA,40.08194417,-75.01058667 +PNM,Princeton Municipal,Princeton,MN,USA,45.55986778,-93.60821611 +PNN,Princeton Municipal,Princeton,ME,USA,45.20066667,-67.56438889 +PNP,Pilot Point,Pilot Point,AK,USA,57.58038056,-157.5674444 +PNS,Pensacola Regional,Pensacola,FL,USA,30.47330556,-87.18744444 +POC,Brackett,La Verne,CA,USA,34.09164833,-117.7817803 +POF,Poplar Bluff Municipal,Poplar Bluff,MO,USA,36.77394444,-90.32484722 +POH,Pocahontas Municipal,Pocahontas,IA,USA,42.74280556,-94.64730556 +POU,Dutchess Cty,Poughkeepsie,NY,USA,41.62661111,-73.88411111 +POY,Powell Muni,Powell,WY,USA,44.86797222,-108.793 +PPA,Perry Lefors,Pampa,TX,USA,35.61298806,-100.9962608 +PPC,Prospect Creek,Prospect Creek,AK,USA,66.81288139,-150.6437925 +PPF,Tri City,Parsons,KS,USA,37.33125778,-95.50900667 +PPG,Pago Pago International,Pago Pago,AS,USA,14.33102278,-170.7105258 +PPO,La Porte Municipal,La Porte,IN,USA,41.57276194,-86.73413139 +PPQ,Pittsfield Penstone Municipal,Pittsfield,IL,USA,39.63885556,-90.77843111 +PQI,Northern Maine Regional,Presque Isle,ME,USA,46.68896,-68.04479972 +PQL,Trent Lott International,Pascagoula,MS,USA,30.46278111,-88.52922778 +PQN,Pipestone Municipal,Pipestone,MN,USA,43.98330333,-96.30031083 +PR03,Fajardo Harbor Seaplane Base,Fajardo,PR,USA,18.339675,-65.62460583 +PRB,Paso Robles Municipal,Paso Robles,CA,USA,35.67288611,-120.6270558 +PRC,Ernest A. Love,Prescott,AZ,USA,34.65447222,-112.4195833 +PRG,Edgar County,Paris,IL,USA,39.70015944,-87.66961861 +PRN,Greenville Municipal,Greenville,AL,USA,31.84540222,-86.61044583 +PRO,Perry Municipal,Perry,IA,USA,41.82801306,-94.15990361 +PRX,Cox,Paris,TX,USA,33.63660667,-95.45073194 +PSB,Mid-State,Philipsburg,PA,USA,40.88439139,-78.08734167 +PSC,Tri-Cities,Pasco,WA,USA,46.26468028,-119.1190292 +PSE,Mercedita,Ponce,PR,USA,18.00830278,-66.56301194 +PSF,Pittsfield Municipal,Pittsfield,MA,USA,42.42684667,-73.29292806 +PSG,James C. Johnson Petersburg,Petersburg,AK,USA,56.80165194,-132.9452781 +PSK,New River Valley,Dublin,VA,USA,37.13734528,-80.67848167 +PSM,Pease International Tradeport,Portsmouth,NH,USA,43.07795889,-70.82327333 +PSN,Palestine Municipal,Palestine,TX,USA,31.77969444,-95.70630556 +PSP,Palm Springs International,Palm Springs,CA,USA,33.82921556,-116.5062531 +PSX,Palacios Municipal,Palacios,TX,USA,28.72751778,-96.2509675 +PTB,Dinwiddie County,Petersburg,VA,USA,37.18375833,-77.50738889 +PTD,Potsdam Muni-Damon,Potsdam,NY,USA,44.67666917,-74.94844639 +PTH,Port Heiden,Port Heiden,AK,USA,56.95943333,-158.6318208 +PTK,Oakland-Pontiac,Pontiac,MI,USA,42.66520389,-83.41870917 +PTN,Harry P. Williams Memorial,Patterson,LA,USA,29.71081917,-91.33971778 +PTS,Atkinson Municipal,Pittsburg,KS,USA,37.44855556,-94.73133333 +PTT,Pratt Industrial,Pratt,KS,USA,37.7000175,-98.7462025 +PTU,Platinum,Platinum,AK,USA,59.01135611,-161.8196661 +PTV,Porterville Municipal,Porterville,CA,USA,36.02960778,-119.0627311 +PTW,Pottstown Limerick,Pottstown,PA,USA,40.23957167,-75.55662528 +PUB,Pueblo Memorial,Pueblo,CO,USA,38.28908722,-104.4965722 +PUC,Carbon County,Price,UT,USA,39.61391556,-110.7514183 +PUW,Pullman/Moscow Regional,"Pullman/Moscow,ID",WA,USA,46.74386111,-117.1095833 +PVB,Platteville Municipal,Platteville,WI,USA,42.68935583,-90.44439278 +PVC,Provincetown Municipal,Provincetown,MA,USA,42.07199833,-70.22137667 +PVD,Theodore F Green State,Providence,RI,USA,41.72399917,-71.42822111 +PVF,Placerville,Placerville,CA,USA,38.72421806,-120.753325 +PVG,Hampton Roads Executive,Portsmouth,VA,USA,36.78014889,-76.44883472 +PVJ,Pauls Valley Municipal,Pauls Valley,OK,USA,34.71105361,-97.22321694 +PVU,Provo Muni,Provo,UT,USA,40.21919444,-111.7233611 +PVW,Hale County,Plainview,TX,USA,34.16814722,-101.7173361 +PWA,Wiley Post,Oklahoma City,OK,USA,35.53455,-97.64721556 +PWC,Pine River Regional,Pine River,MN,USA,46.7247875,-94.3817 +PWD,Sher-Wood,Plentywood,MT,USA,48.79030583,-104.533845 +PWG,McGregor Exectuive,Waco,TX,USA,31.48491667,-97.31652778 +PWK,Palwaukee,Chicago/Wheeling/Prospect Heights,IL,USA,42.11418083,-87.90148083 +PWM,Portland International Jetport,Portland,ME,USA,43.64616667,-70.30875 +PWT,Bremerton National,Bremerton,WA,USA,47.49275361,-122.7624286 +PXE,Perry-Houston Couty,Perry,GA,USA,32.51058333,-83.76733333 +PYG,Pageland,Pageland,SC,USA,34.74213889,-80.34519444 +PYM,Plymouth Municipal,Plymouth,MA,USA,41.90902444,-70.72878778 +PYX,Perryton Ochiltree County,Perryton,TX,USA,36.41200333,-100.7517883 +PZQ,Presque Isle County,Rogers City,MI,USA,45.40709667,-83.81288556 +Q00,Littlefield Municipal,Littlefield,TX,USA,33.92395306,-102.3866831 +Q06,City of Tulia/Swisher County Municipal,Tulia,TX,USA,34.56682472,-101.7814611 +Q14,San Juan Pueblo,Espanola,NM,USA,36.02502306,-106.0464114 +Q16,Reserve,Reserve,NM,USA,33.70005472,-108.8506214 +Q17,Boonville,Boonville,CA,USA,39.0126775,-123.3827864 +Q21,Brownsville,Brownsville,CA,USA,39.45544417,-121.2913511 +Q24,Levelland Municipal,Levelland,TX,USA,33.54980833,-102.3727333 +Q25,Dinsmore,Dinsmore,CA,USA,40.49291944,-123.5997589 +Q26,Terry County,Brownfield,TX,USA,33.173675,-102.1926208 +Q31,Sequoia,Visalia,CA,USA,36.44856139,-119.3190056 +Q34,Portales Municipal,Portales,NM,USA,34.14547222,-103.4103333 +Q35,Springerville Babbitt,Springerville,AZ,USA,34.1286575,-109.3114756 +Q37,Carrizozo Municipal,Carrizozo,NM,USA,33.64886139,-105.895685 +Q41,Floydada Municipal,Floydada,TX,USA,34.00230056,-101.330435 +Q42,Springer Municipal,Springer,NM,USA,36.32697806,-104.6197117 +Q44,Beaver Municipal,Beaver,OK,USA,36.79891472,-100.5298708 +Q49,Firebaugh,Firebaugh,CA,USA,36.85998861,-120.4644675 +Q53,Franklin,Franklin,CA,USA,38.30491306,-121.4296736 +Q55,Dimmitt Municipal,Dimmitt,TX,USA,34.56673556,-102.3226947 +Q58,Santa Rosa Municipal,Santa Rosa,NM,USA,34.93442472,-104.643065 +Q61,Georgetown,Georgetown,CA,USA,38.92111389,-120.8647944 +Q68,Pine Mountain Lake,Groveland,CA,USA,37.86166667,-120.1778889 +Q72,Hayfork,Hayfork,CA,USA,40.54708833,-123.1816953 +Q84,Mendota,Mendota,CA,USA,36.75800528,-120.3712794 +Q88,Paradise Skypark,Paradise,CA,USA,39.70960639,-121.6163617 +Q94,Rio Linda,Rio Linda,CA,USA,38.67601389,-121.4455092 +Q95,Ruth,Ruth,CA,USA,40.21125917,-123.2975231 +Q99,South County of Santa Clara Co,San Martin,CA,USA,37.08158611,-121.5968056 +RAC,John H Batten,Racine,WI,USA,42.76119139,-87.81389806 +RAL,Riverside Municipal,Riverside,CA,USA,33.95187528,-117.4451017 +RAP,Rapid City Regional,Rapid City,SD,USA,44.04532139,-103.0573708 +RBD,Redbird,Dallas,TX,USA,32.68086111,-96.86819444 +RBE,Bassett Municipal,Bassett,NE,USA,42.56966667,-99.56836111 +RBG,Roseburg Regional,Roseburg,OR,USA,43.23878306,-123.3558617 +RBL,Red Bluff Municipal,Red Bluff,CA,USA,40.15065667,-122.2522903 +RBW,Walterboro Municipal,Walterboro,SC,USA,32.92052778,-80.64125 +RBY,Ruby,Ruby,AK,USA,64.72721556,-155.4698886 +RCA,Ellsworth AFB,NA,NA,USA,44.145094,-103.103567 +RCR,Fulton County,Rochester,IN,USA,41.06554833,-86.18170444 +RCX,Rusk County,Ladysmith,WI,USA,45.49825694,-91.00186361 +RDD,Redding Municipal,Redding,CA,USA,40.50898361,-122.2934019 +RDG,"Reading Muni,Gen Carl A Spaatz",Reading,PA,USA,40.3785,-75.96525 +RDK,Red Oak Municipal,Red Oak,IA,USA,41.01052778,-95.25986111 +RDM,Roberts,Redmond,OR,USA,44.25406722,-121.1499633 +RDR,Grand Forks AFB,NA,NA,USA,47.961167,-97.401167 +RDU,Raleigh-Durham International,Raleigh,NC,USA,35.87763889,-78.78747222 +RDV,Red Devil,Red Devil,AK,USA,61.78764333,-157.3479344 +RED,Red Lodge,Red Lodge,MT,USA,45.18744472,-109.2673778 +RFD,Greater Rockford,Rockford,IL,USA,42.19536389,-89.09721111 +RFG,Refugio-Rooke,Refugio,TX,USA,28.29361694,-97.32304833 +RGK,Red Wing Municipal,Red Wing,MN,USA,44.58935611,-92.48496889 +RHI,Rhinelander-Oneida County,Rhinelander,WI,USA,45.63119306,-89.46745361 +RHV,Reid-Hillview of Santa Clara Co,San Jose,CA,USA,37.33287306,-121.8197947 +RIC,Richmond International,Richmond,VA,USA,37.50516667,-77.31966667 +RID,Richmond Municipal,Richmond,IN,USA,39.75721528,-84.84282 +RIF,Richfield Muni,Richfield,UT,USA,38.73643611,-112.0989444 +RIL,Garfield County Regional,Rifle,CO,USA,39.526315,-107.7269403 +RIU,Rancho Murieta,Rancho Murieta,CA,USA,38.4887975,-121.1024447 +RIV,March,Riverside,CA,USA,33.88057333,-117.2594836 +RIW,Riverton Regional,Riverton,WY,USA,43.064235,-108.4598411 +RKD,Knox County Regional,Rockland,ME,USA,44.06008333,-69.09925 +RKP,Aransas County,Rockport,TX,USA,28.08677778,-97.04461111 +RKR,Robert S Kerr,Poteau,OK,USA,35.02162639,-94.6212525 +RKS,Rock Springs-Sweetwater County,Rock Springs,WY,USA,41.5942175,-109.0651928 +RKW,Rockwood Municipal,Rockwood,TN,USA,35.922295,-84.68966278 +RLD,Richland,Richland,WA,USA,46.305635,-119.3041853 +RME,Griffis Airpark,Rome,NY,USA,43.23379861,-75.40703333 +RMG,Richard B Russell,Rome,GA,USA,34.35060111,-85.15801389 +RMP,Rampart,Rampart,AK,USA,65.50786222,-150.1428047 +RMY,Brooks,Marshall,MI,USA,42.25118111,-84.9554525 +RNC,Warren County Memorial,McMinnville,TN,USA,35.69870944,-85.84381722 +RNH,New Richmond Municipal,New Richmond,WI,USA,45.14831139,-92.53806139 +RNM,Ramona,Ramona,CA,USA,33.038905,-116.9136392 +RNO,Reno/Tahoe International,Reno,NV,USA,39.49857611,-119.7680647 +RNT,Renton Municipal,Renton,WA,USA,47.49313889,-122.21575 +RNV,Cleveland Municipal,Cleveland,MS,USA,33.76114056,-90.75787528 +ROA,Roanoke Regional/ Woodrum,Roanoke,VA,USA,37.32546833,-79.97542833 +ROC,Greater Rochester Int'l,Rochester,NY,USA,43.11886611,-77.67238389 +ROG,Rogers Municipal-Carter,Rogers,AR,USA,36.37229667,-94.10686972 +ROP,Prachinburi,NA,NA,Thailand,14.078333,101.378334 +ROR,Babelthoup/Koror,NA,NA,Palau,7.367222,134.544167 +ROS,Rush City Regional,Rush City,MN,USA,45.69801389,-92.95298972 +ROW,Roswell Industrial Air Center,Roswell,NM,USA,33.30155556,-104.5305556 +ROX,Roseau Municipal,Roseau,MN,USA,48.85603806,-95.69703861 +RPB,Belleville Municipal,Belleville,KS,USA,39.81790861,-97.659625 +RPD,Rice Lake Regional-Carl's,Rice Lake,WI,USA,45.41809056,-91.77365194 +RPX,Roundup,Roundup,MT,USA,46.47357528,-108.5576333 +RQB,Roben-Hood,Big Rapids,MI,USA,43.72263278,-85.50407333 +RQE,Window Rock,Window Rock,AZ,USA,35.65205556,-109.0673889 +RRL,Merrill Municipal,Merrill,WI,USA,45.19927083,-89.71143389 +RRT,Warroad Intl Swede Carlson,Warroad,MN,USA,48.94138889,-95.34838889 +RSH,Russian Mission,Russian Mission,AK,USA,61.77967583,-161.3194772 +RSL,Russell Municipal,Russell,KS,USA,38.87212222,-98.81177611 +RSN,Ruston Regional,Ruston,LA,USA,32.51444444,-92.58833333 +RST,Rochester International,Rochester,MN,USA,43.90882639,-92.49798722 +RSV,Robinson Municipal,Robinson,IL,USA,39.01604222,-87.649775 +RSW,Southwest Florida International,Ft. Myers,FL,USA,26.53616667,-81.75516667 +RTN,Raton Municipal/Crews,Raton,NM,USA,36.74152778,-104.5021833 +RUE,Russellville Municipal,Russellville,AR,USA,35.25914667,-93.09326611 +RUG,Rugby Municipal,Rugby,ND,USA,48.39035917,-100.0242739 +RUQ,Rowan County,Salisbury,NC,USA,35.64588583,-80.52029306 +RUT,Rutland State,Rutland,VT,USA,43.52990694,-72.949615 +RVJ,Reidsville,Reidsville,GA,USA,32.05897222,-82.15172222 +RVL,Mifflin Cty,Reedsville,PA,USA,40.67737417,-77.62682833 +RVN,Hawkins County,Rogersville,TN,USA,36.45757917,-82.88503722 +RVS,"Richard Lloyd Jones, Jr.",Tulsa,OK,USA,36.0396275,-95.984635 +RWF,Redwood Falls Muni,Redwood Falls,MN,USA,44.54720389,-95.082255 +RWI,Rocky Mount Wilson,Rocky Mount,NC,USA,35.85498861,-77.89295611 +RWL,Rawlins Muni,Rawlins,WY,USA,41.8055975,-107.19994 +RWN,Arens,Winamac,IN,USA,41.09226306,-86.61287111 +RXE,Rexburg-Madison County,Rexburg,ID,USA,43.83391139,-111.805105 +RYN,Ryan,Tucson,AZ,USA,32.14308333,-111.1728611 +RYV,Watertown Municipal,Watertown,WI,USA,43.16963222,-88.72321222 +RYY,Cobb County-McCollum,Marietta,GA,USA,34.01315611,-84.59854472 +RZL,Jasper County,Rensselaer,IN,USA,40.94789861,-87.18257944 +RZN,Burnett County,Siren,WI,USA,45.8227275,-92.37250083 +RZT,Ross County,Chillicothe,OH,USA,39.44136778,-83.02251556 +RZZ,Halifax County,Roanoke Rapids,NC,USA,36.43945583,-77.70934139 +S01,Conrad,Conrad,MT,USA,48.16863889,-111.9764722 +S03,Ashland Muni-Sumner Parker,Ashland,OR,USA,42.19028361,-122.6606283 +S05,Bandon State,Bandon,OR,USA,43.08733083,-124.4095578 +S07,Bend Muni,Bend,OR,USA,44.09483333,-121.2006389 +S10,Chelan Muni,Chelan,WA,USA,47.86597139,-119.9427053 +S12,Albany Municipal,Albany,OR,USA,44.63781639,-123.0594486 +S18,Forks,Forks,WA,USA,47.94146583,-124.3929867 +S21,Sunriver,Sunriver,OR,USA,43.87633333,-121.4530556 +S23,Ione Municipal,Ione,WA,USA,48.70727528,-117.4126036 +S24,Sandusky Co,Fremont,OH,USA,41.29570556,-83.03723056 +S25,Watford City Municipal,Watford City,ND,USA,47.79569972,-103.2536992 +S27,Kalispell City,Kalispell,MT,USA,48.17856944,-114.3037408 +S28,International Peace Garden,Dunseith,ND,USA,48.99778194,-100.0434589 +S30,Lebanon State,Lebanon,OR,USA,44.529845,-122.9295336 +S31,Lopez Island,Lopez,WA,USA,48.48259944,-122.9368444 +S32,Cooperstown Municipal,Cooperstown,ND,USA,47.42277361,-98.10587139 +S33,City-County,Madras,OR,USA,44.66623139,-121.1631 +S34,Plains,Plains,MT,USA,47.47243611,-114.900135 +S39,Prineville,Prineville,OR,USA,44.28699389,-120.9038328 +S40,Prosser,Prosser,WA,USA,46.212355,-119.7928122 +S43,Harvey,Snohomish,WA,USA,47.90815306,-122.1054072 +S45,Siletz Bay State,Siletz Bay (Gleneden Beach),OR,USA,44.87761139,-124.0284472 +S47,Tillamook,Tillamook,OR,USA,45.41824194,-123.8143839 +S50,Auburn Municipal,Auburn,WA,USA,47.32815583,-122.2265092 +S52,Methow Valley State,Winthrop,WA,USA,48.42070056,-120.1470264 +S59,Libby,Libby,MT,USA,48.28384528,-115.4902453 +S60,Kenmore Air Harbor Inc,Kenmore,WA,USA,47.75482,-122.2592931 +S64,Stanford,Stanford,MT,USA,47.14718944,-110.2299289 +S66,Homedale Municipal,Homedale,ID,USA,43.61488056,-116.9215372 +S67,Nampa Muni,Nampa,ID,USA,43.58133333,-116.5230556 +S68,Orofino Municipal,Orofino,ID,USA,46.49129139,-116.2768061 +S69,Lincoln,Lincoln,MT,USA,46.97494083,-112.6447606 +S70,Othello Muni,Othello,WA,USA,46.79486278,-119.0802875 +S71,Edgar G Obie,Chinook,MT,USA,48.59194444,-109.2488889 +S72,St Maries Municipal,St Maries,ID,USA,47.32768722,-116.5773906 +S73,Kamiah Municipal,Kamiah,ID,USA,46.21934028,-116.0134736 +S80,Idaho County,Grangeville,ID,USA,45.94255806,-116.1234158 +S83,Shoshone County,Kellogg,ID,USA,47.54769889,-116.1885008 +S85,Big Sky,Culbertson,MT,USA,48.15333333,-104.5038889 +S87,Weiser Municipal,Weiser,ID,USA,44.20683056,-116.9623869 +S89,Craigmont Municipal,Craigmont,ID,USA,46.24710917,-116.4801447 +S93,Cle Elum Municipal,Cle Elum,WA,USA,47.18317583,-120.884525 +S94,Whitman County Memorial,Colfax,WA,USA,46.8584975,-117.4137964 +S97,Anderson,Brewster,WA,USA,48.10486806,-119.7206128 +SAA,Shively,Saratoga,WY,USA,41.44485944,-106.8235264 +SAC,Sacramento Executive,Sacramento,CA,USA,38.51252389,-121.4934689 +SAD,Safford Regional,Safford,AZ,USA,32.85331278,-109.6349708 +SAF,Santa Fe Municipal,Santa Fe,NM,USA,35.61677778,-106.0881389 +SAN,San Diego International-Lindbergh,San Diego,CA,USA,32.73355611,-117.1896567 +SAR,Sparta Community-Hunter,Sparta,IL,USA,38.14893833,-89.69870972 +SAT,San Antonio International,San Antonio,TX,USA,29.53369444,-98.46977778 +SAV,Savannah International,Savannah,GA,USA,32.12758333,-81.20213889 +SAW,Sawyer,Gwinn,MI,USA,46.35361111,-87.39583222 +SAZ,Staples Municipal,Staples,MN,USA,46.38087944,-94.80660167 +SBA,Santa Barbara Municipal,Santa Barbara,CA,USA,34.42621194,-119.8403733 +SBD,San Bernardino International,San Bernardino,CA,USA,34.09535361,-117.2348742 +SBM,Sheboygan County Memorial,Sheboygan,WI,USA,43.76949444,-87.85158944 +SBN,South Bend Regional,South Bend,IN,USA,41.70895361,-86.31847417 +SBO,Emanuel County,Swainsboro,GA,USA,32.60825,-82.36869444 +SBP,San Luis Obispo Co-McChesney,San Luis Obispo,CA,USA,35.23705806,-120.6423931 +SBS,Steamboat Springs,Steamboat Springs,CO,USA,40.51625944,-106.8663006 +SBU,Blue Earth Municipal,Blue Earth,MN,USA,43.59534389,-94.09284833 +SBX,Shelby,Shelby,MT,USA,48.54125278,-111.8720722 +SBY,Salisbury-Ocean City: Wicomico Regional,Salisbury,MD,USA,38.34052611,-75.51028806 +SCB,Scribner State,Scribner,NE,USA,41.61033333,-96.62986111 +SCC,Deadhorse,Deadhorse,AK,USA,70.19475583,-148.4651608 +SCD,Merkel Field Sylacauga Municipal,Sylacauga,AL,USA,33.17183583,-86.30553778 +SCE,University Park,NA,NA,USA,40.851206,-77.846302 +SCH,Schenectady Cty,Schenectady,NY,USA,42.85245556,-73.9288675 +SCK,Stockton Metro,Stockton,CA,USA,37.89426694,-121.2386203 +SCM,Scammon Bay,Scammon Bay,AK,USA,61.84454111,-165.5737492 +SCX,Scott Municipal,Oneida,TN,USA,36.45569444,-84.58575 +SD07,Bison Municipal,Bison,SD,USA,45.51859778,-102.4671042 +SD10,Canton Municipal,Canton,SD,USA,43.30888889,-96.571 +SD12,Wilder,De Smet,SD,USA,44.43080278,-97.56118861 +SD16,Eureka Municipal,Eureka,SD,USA,45.79998111,-99.6420625 +SD18,Flandreau Municipal,Flandreau,SD,USA,44.00386056,-96.59310139 +SD22,Hoven Municipal,Hoven,SD,USA,45.25755861,-99.79783944 +SD28,McLaughlin Municipal,McLaughlin,SD,USA,45.79680833,-100.7842503 +SD32,Murdo Municipal,Murdo,SD,USA,43.85165639,-100.7120811 +SD33,Parkston Municipal,Parkston,SD,USA,43.37915361,-97.97118278 +SD34,Presho Municipal,Presho,SD,USA,43.90637833,-100.0370669 +SDA,Shenandoah Municipal,Shenandoah,IA,USA,40.75148167,-95.41347222 +SDF,Louisville International-Standiford,Louisville,KY,USA,38.17438889,-85.736 +SDL,Scottsdale,Scottsdale,AZ,USA,33.622875,-111.9105333 +SDM,Brown Municipal,San Diego,CA,USA,32.57230556,-116.98025 +SDP,Sand Point Municipal,Sand Point,AK,USA,55.31502778,-160.5176944 +SDY,Sidney-Richland Municipal,Sidney,MT,USA,47.70685778,-104.1925544 +SEA,Seattle-Tacoma Intl,Seattle,WA,USA,47.44898194,-122.3093131 +SEE,Gillespie,San Diego (El Cajon),CA,USA,32.82623111,-116.9724497 +SEF,Sebring And Industrial Park,Sebring,FL,USA,27.45640278,-81.3424 +SEG,Penn Valley,Selinsgrove,PA,USA,40.82052917,-76.86377611 +SEM,Craig,Selma,AL,USA,32.34394667,-86.98780333 +SEP,Clark Field Municipal,Stephenville,TX,USA,32.21532333,-98.17766722 +SER,Freeman Municipal,Seymour,IN,USA,38.92355361,-85.90736556 +SET,St Charles County Smart,St Charles,MO,USA,38.92969444,-90.42996111 +SEZ,Sedona,Sedona,AZ,USA,34.84862889,-111.7884614 +SFB,Orlando Sanford,Orlando,FL,USA,28.77764,-81.23748944 +SFD,Bob Wiley,Winner,SD,USA,43.39058278,-99.84256194 +SFF,Felts,Spokane,WA,USA,47.68281806,-117.3225583 +SFM,Sanford Regional,Sanford,ME,USA,43.39386111,-70.70800028 +SFO,San Francisco International,San Francisco,CA,USA,37.61900194,-122.3748433 +SFQ,Suffolk Municipal,Suffolk,VA,USA,36.68235361,-76.60187333 +SFY,Tri-Township,Savanna,IL,USA,42.04581972,-90.10760056 +SFZ,North Central State,Pawtucket,RI,USA,41.92076333,-71.49138139 +SGF,Springfield-Branson Regional,Springfield,MO,USA,37.24432611,-93.38685806 +SGH,Springfield-Beckley Municipal,Springfield,OH,USA,39.84028194,-83.84015056 +SGJ,St. Augustine,St. Augustine,FL,USA,29.95925,-81.33975 +SGR,Sugar Land Municipal/Hull,Houston,TX,USA,29.62225306,-95.65652889 +SGS,South St.Paul Municipal,South St Paul,MN,USA,44.85713278,-93.03285389 +SGT,Stuttgart Municipal,Stuttgart,AR,USA,34.60054,-91.57457417 +SGU,St George Muni,St George,UT,USA,37.09058333,-113.5930556 +SGY,Skagway,Skagway,AK,USA,59.46006194,-135.3156636 +SHD,Shenandoah Valley Regional,Staunton/Harrisonburg,VA,USA,38.26384333,-78.89643806 +SHG,Shungnak,Shungnak,AK,USA,66.88916556,-157.1505119 +SHH,Shishmaref,Shishmaref,AK,USA,66.24956861,-166.0895589 +SHL,Sheldon Municipal,Sheldon,IA,USA,43.20839361,-95.83343306 +SHN,Sanderson,Shelton,WA,USA,47.23355556,-123.1475556 +SHR,Sheridan County,Sheridan,WY,USA,44.76919556,-106.9802794 +SHV,Shreveport Regional,Shreveport,LA,USA,32.4466275,-93.82559833 +SHX,Shageluk,Shageluk,AK,USA,62.69511944,-159.5690614 +SIG,Fernando Luis Ribas Dominicci,San Juan,PR,USA,18.45675,-66.09883333 +SIK,Sikeston Memorial Municipal,Sikeston,MO,USA,36.89888889,-89.56175 +SIT,Sitka,Sitka,AK,USA,57.04713806,-135.3615983 +SIV,Sullivan County,Sullivan,IN,USA,39.1147125,-87.44832917 +SIY,Siskiyou County,Montague,CA,USA,41.78144167,-122.4681094 +SJC,San Jose International,San Jose,CA,USA,37.36186194,-121.9290089 +SJN,St Johns Industrial Air Park,St Johns,AZ,USA,34.51855556,-109.37875 +SJT,San Angelo Regional /Mathis,San Angelo,TX,USA,31.35775,-100.4963056 +SJU,Luis Munoz Marin International,San Juan,PR,USA,18.43941667,-66.00183333 +SJX,Beaver Island,St James,MI,USA,45.69227778,-85.56630556 +SKA,Fairchild AFB,NA,NA,USA,47.615058,-117.655803 +SKI,Sac City Municipal,Sac City,IA,USA,42.37908333,-94.97958333 +SKW,Skwentna,Skwentna,AK,USA,61.965295,-151.1913661 +SKX,Taos Municipal,Taos,NM,USA,36.45819,-105.6724289 +SLB,Storm Lake Municipal,Storm Lake,IA,USA,42.59719444,-95.24066667 +SLC,Salt Lake City Intl,Salt Lake City,UT,USA,40.78838778,-111.9777731 +SLE,McNary Fld,Salem,OR,USA,44.90952778,-123.0025 +SLG,Smith,Siloam Springs,AR,USA,36.19060778,-94.49088306 +SLK,Adirondack,Saranac Lake,NY,USA,44.38531,-74.20618472 +SLN,Salina Municipal,Salina,KS,USA,38.7914825,-97.65060333 +SLO,Salem-Leckrone,Salem,IL,USA,38.64287222,-88.96418528 +SLQ,Sleetmute,Sleetmute,AK,USA,61.70931139,-157.1557008 +SLR,Sulphur Springs Municipal,Sulphur Springs,TX,USA,33.15983333,-95.62113889 +SMD,Smith,Fort Wayne,IN,USA,41.14335389,-85.15277694 +SME,Somerset-Pulaski County,Somerset,KY,USA,37.05419722,-84.61494139 +SMF,Sacramento International,Sacramento,CA,USA,38.69542167,-121.5907669 +SMN,Lemhi County,Salmon,ID,USA,45.12047778,-113.8820103 +SMO,Santa Monica Municipal,Santa Monica,CA,USA,34.01582194,-118.4512961 +SMQ,Somerset,Somerville,NJ,USA,40.62599083,-74.67024333 +SMS,Sumter Municipal,Sumter,SC,USA,33.99569444,-80.3615 +SMX,Santa Maria Pub/Capt G Allan Hancock,Santa Maria,CA,USA,34.89924833,-120.4575825 +SNA,John Wayne /Orange Co,Santa Ana,CA,USA,33.67565861,-117.8682225 +SNH,Savannah Hardin County,Savannah,TN,USA,35.17036,-88.21587 +SNK,Winston,Snyder,TX,USA,32.69338667,-100.9504525 +SNL,Shawnee Municipal,Shawnee,OK,USA,35.35730333,-96.94282833 +SNP,St. Paul,St. Paul,AK,USA,57.16733333,-170.2204444 +SNS,Salinas Municipal,Salinas,CA,USA,36.66279222,-121.6063603 +SNY,Sidney Municipal,Sidney,NE,USA,41.10133333,-102.9852778 +SOP,Moore County,Pinehurst/Southern Pines,NC,USA,35.23735278,-79.39116944 +SOV,Seldovia,Seldovia,AK,USA,59.44243917,-151.7040503 +SOW,Show Low Municipal,Show Low,AZ,USA,34.26527194,-110.0054075 +SPA,Spartanburg Downtown Memorial,Spartanburg,SC,USA,34.91572222,-81.9565 +SPB,Scappoose Industrial Airpark,Scappoose,OR,USA,45.77250444,-122.8623611 +SPF,Black Hills-Clyde Ice,Spearfish,SD,USA,44.48022222,-103.7768889 +SPG,Albert Whitted Municipal,St. Petersburg,FL,USA,27.76511111,-82.62697222 +SPH,Springhill,Springhill,LA,USA,32.98316472,-93.41081028 +SPI,Capital,Springfield,IL,USA,39.84395194,-89.67761861 +SPN,Tinian International Airport,NA,NA,N Mariana Islands,14.996111,145.621384 +SPS,Sheppard AFB/Wichita Falls Municipal,Wichita Falls,TX,USA,33.98879611,-98.49189333 +SPW,Spencer Municipal,Spencer,IA,USA,43.16552778,-95.20280556 +SPX,Houston-Gulf,Houston,TX,USA,29.50836111,-95.05133333 +SQI,Whiteside Co,Sterling Rockfalls,IL,USA,41.74284139,-89.67629028 +SQL,San Carlos,San Carlos,CA,USA,37.511855,-122.2495236 +SRB,Upper Cumberland Regional,Sparta,TN,USA,36.05593278,-85.5307475 +SRC,Searcy Municipal,Searcy,AR,USA,35.21194639,-91.737165 +SRQ,Sarasota Bradenton International,Sarasota,FL,USA,27.39533333,-82.55411111 +SRR,Sierra Blanca Regional,Ruidoso,NM,USA,33.46285,-105.5347508 +SRV,Stony River 2,Stony River,AK,USA,61.789875,-156.5881861 +SSF,Stinson Municipal,San Antonio,TX,USA,29.3370075,-98.47114056 +SSI,Malcolm McKinnon,Brunswick,GA,USA,31.1515925,-81.39134667 +SSQ,Shell Lake Municipal,Shell Lake,WI,USA,45.73138139,-91.92066194 +STC,St Cloud Regional,St Cloud,MN,USA,45.54532417,-94.05833667 +STE,Stevens Point Municipal,Stevens Point,WI,USA,44.54513556,-89.53028444 +STF,George M Bryan,Starkville,MS,USA,33.43381667,-88.84863806 +STJ,Rosecrans Memorial,St Joseph,MO,USA,39.77194444,-94.90970556 +STK,Crosson,Sterling,CO,USA,40.6152625,-103.2646556 +STL,Lambert-St Louis International,St Louis,MO,USA,38.74768694,-90.35998972 +STP,St Paul Downtown Holman,St Paul,MN,USA,44.9344725,-93.05999861 +STS,Sonoma Co,Santa Rosa,CA,USA,38.50897694,-122.8128803 +STT,Cyril E. King,Charlotte Amalie,VI,USA,18.33730556,-64.97336111 +STX,Henry E. Rohlsen,Christiansted,VI,USA,17.70188889,-64.79855556 +SUA,Witham,Stuart,FL,USA,27.18169444,-80.22108333 +SUD,Stroud Municipal,Stroud,OK,USA,35.78756833,-96.65862861 +SUE,Door County Cherryland,Sturgeon Bay,WI,USA,44.84366222,-87.42154111 +SUN,Friedman Memorial,Hailey,ID,USA,43.50484139,-114.2965903 +SUS,Spirit of St Louis,St Louis,MO,USA,38.66187028,-90.65123 +SUT,Brunswick County,Southport,NC,USA,33.92925694,-78.07499167 +SUW,Richard I Bong,Superior,WI,USA,46.6897175,-92.094655 +SUX,Sioux Gateway,Sioux City,IA,USA,42.40260333,-96.38436694 +SVA,Savoonga,Savoonga,AK,USA,63.68639444,-170.4926361 +SVC,Grant County,Silver City,NM,USA,32.63654694,-108.1563853 +SVE,Susanville Municipal,Susanville,CA,USA,40.37684111,-120.5730033 +SVH,Statesville Municipal,Statesville,NC,USA,35.76526389,-80.95673611 +SVS,Stevens Village,Stevens Village,AK,USA,66.00900528,-149.0959153 +SWD,Seward,Seward,AK,USA,60.12693833,-149.4188122 +SWF,Stewart,Newburgh,NY,USA,41.50409361,-74.10483833 +SWO,Stillwater Regional,Stillwater,OK,USA,36.16025194,-97.08577028 +SWT,Seward Municipal,Seward,NE,USA,40.86525806,-97.10931306 +SWW,Avenger,Sweetwater,TX,USA,32.46736806,-100.4665508 +SXL,Summersville,Summersville,WV,USA,38.23163889,-80.87080556 +SXP,Sheldon Point,Sheldon Point,AK,USA,62.52055556,-164.8477778 +SXQ,Soldotna,Soldotna,AK,USA,60.47613889,-151.0324444 +SYF,Cheyenne County Municipal,St Francis,KS,USA,39.76104833,-101.7958414 +SYI,Bomar Field-Shelbyville Municipal,Shelbyville,TN,USA,35.56009889,-86.44249333 +SYR,Syracuse-Hancock Intl,Syracuse,NY,USA,43.11118694,-76.10631056 +SYV,Sylvester,Sylvester,GA,USA,31.55851111,-83.89573389 +SZP,Santa Paula,Santa Paula,CA,USA,34.34722167,-119.061215 +SZT,Sandpoint,Sandpoint,ID,USA,48.29965139,-116.5597681 +SZY,Robert Sibley,Selmer,TN,USA,35.20295,-88.49836139 +T00,Chambers County,Anahauac,TX,USA,29.77,-94.66361194 +T03,Tuba City,Tuba City,AZ,USA,36.09276972,-111.3826419 +T08,Tomahawk Regional,Tomahawk,WI,USA,45.46913889,-89.80569444 +T18,Brooks County,Falfurrias,TX,USA,27.20683333,-98.12117083 +T28,Lampasas Municipal,Lampasas,TX,USA,31.10672694,-98.19600194 +T35,Cameron Municipal Airpark,Cameron,TX,USA,30.87935556,-96.97109694 +T36,Paul Pittman Memorial,Tylertown,MS,USA,31.14601111,-90.168145 +T41,La Porte Municipal,La Porte,TX,USA,29.66925,-95.06419444 +T44,Trident Basin,Kodiak,AK,USA,57.78083333,-152.3913889 +T47,Kickapoo Downtown Airpark,Wichita Falls,TX,USA,33.86122222,-98.4904425 +T49,Big Spring McMahon-Wrinkle,Big Spring,TX,USA,32.21261111,-101.5216389 +T53,Robstown-Nueces County,Robstown,TX,USA,27.77854306,-97.69052389 +T56,Crockett-Houston County,Crockett,TX,USA,31.30696111,-95.40383056 +T57,Garland Heliport,Garland,TX,USA,32.887625,-96.6836075 +T60,Stonewall County,Aspermont,TX,USA,33.17231861,-100.1976044 +T65,Mid Valley,Weslaco,TX,USA,26.17763889,-97.97305556 +T69,Sinton-San Patricio County,Sinton,TX,USA,28.03925,-97.54244444 +T71,Cuero Municipal,Cuero,TX,USA,29.08358806,-97.26693417 +T72,Hearne Municipal,Hearne,TX,USA,30.87182917,-96.62222639 +T74,Taylor Municipal,Taylor,TX,USA,30.57194444,-97.44316667 +T78,Liberty Municipal,Liberty,TX,USA,30.07780556,-94.69855556 +T80,Kleberg County,Kingsville,TX,USA,27.55086111,-98.03091833 +T82,Gillespie County,Fredericksburg,TX,USA,30.24369444,-98.90952778 +T89,Castroville Municipal,Castroville,TX,USA,29.34192083,-98.85090056 +T90,Chambers County,Winnie/Stowell,TX,USA,29.80411,-94.43102306 +T97,Calhoun County,Port Lavaca,TX,USA,28.65405111,-96.6813125 +TAD,Perry Stokes,Trinidad,CO,USA,37.25937778,-104.340675 +TAL,Ralph M Calhoun Memorial,Tanana,AK,USA,65.17439528,-152.1093886 +TAN,Taunton Municipal,Taunton,MA,USA,41.87460139,-71.01687583 +TAZ,Taylorville Municipal,Taylorville,IL,USA,39.53418583,-89.32781222 +TBN,Forney AAF,Fort Leonard Wood,MO,USA,37.74163111,-92.14073611 +TBR,Statesboro Municipal,Statesboro,GA,USA,32.48316667,-81.73727778 +TCC,Tucumcari Municipal,Tucumcari,NM,USA,35.18277806,-103.6031853 +TCL,Tuscaloosa Municipal,Tuscaloosa,AL,USA,33.2206275,-87.61140139 +TCS,Truth Or Consequences Municipal,Truth Or Consequences,NM,USA,33.23694444,-107.27175 +TCT,Takotna,Takotna,AK,USA,62.99270417,-156.0681903 +TCY,Tracy Municipal,Tracy,CA,USA,37.68910778,-121.4418172 +TDF,Person County,Roxboro,NC,USA,36.28489194,-78.98422694 +TDO,Toledo-Winlock Ed Carlson Memorial,Toledo,WA,USA,46.47709083,-122.80686 +TDZ,Toledo Metcalf,Toledo,OH,USA,41.56487194,-83.48226139 +TEB,Teterboro,Teterboro,NJ,USA,40.85010139,-74.06083611 +TEL,Perry County Municipal,Tell City,IN,USA,38.01769694,-86.69093 +TEW,Mason Jewett,Mason,MI,USA,42.56576833,-84.42321861 +TEX,Telluride Regional,Telluride,CO,USA,37.95375861,-107.90848 +TGC,Gibson County,Trenton,TN,USA,35.93245472,-88.84894028 +TGI,Tangier Island,Tangier,VA,USA,37.82513889,-75.99777778 +THA,Tullahoma Regional,Tullahoma,TN,USA,35.38015694,-86.24602333 +THM,Thompson Falls,Thompson Falls,MT,USA,47.57493556,-115.2843164 +THP,Hot Springs County-Thermopolis Municipal,Thermopolis,WY,USA,43.65828917,-108.2131542 +THV,York,York,PA,USA,39.916995,-76.87302611 +TIW,Tacoma Narrows,Tacoma,WA,USA,47.26793111,-122.5780997 +TIX,Space Cost Regional,Titusville,FL,USA,28.51479944,-80.7992275 +TKA,Talkeetna,Talkeetna,AK,USA,62.3205,-150.0936944 +TKE,Tenakee SPB,Tenakee Springs,AK,USA,57.77965833,-135.2184439 +TKI,McKinney Municipal,McKinney,TX,USA,33.17794778,-96.5905275 +TKX,Kennett Memorial,Kennett,MO,USA,36.23087083,-90.03466806 +TLH,Tallahassee Regional,Tallahassee,FL,USA,30.39652778,-84.35033333 +TLR,Mefford,Tulare,CA,USA,36.15630556,-119.3261667 +TLT,Tuluksak,Tuluksak,AK,USA,61.09676222,-160.9684167 +TMA,Henry Tift Myers,Tifton,GA,USA,31.42879528,-83.48787167 +TMB,Kendall-Tamiami Executive,Miami,FL,USA,25.64788889,-80.43277778 +TNI,West Tinian,Peipeinimaru,CQ,USA,14.99685028,-145.6180383 +TNP,Twentynine Palms,Twentynine Palms,CA,USA,34.13208528,-115.9458319 +TNT,Dade Collier T And T,Miami,FL,USA,25.86180556,-80.897 +TNU,Newton Municipal,Newton,IA,USA,41.67442972,-93.02172917 +TOA,Zamperini,Torrance,CA,USA,33.8033775,-118.3396 +TOB,Dodge Center,Dodge Center,MN,USA,44.018,-92.8315 +TOC,"Toccoa, R G Le Tourneau",Toccoa,GA,USA,34.59376444,-83.2958 +TOG,Togiak Village,Togiak,AK,USA,59.05284222,-160.3969339 +TOI,Troy Municipal,Troy,AL,USA,31.86041667,-86.01213889 +TOL,Toledo Express,Toledo,OH,USA,41.58680556,-83.80783333 +TOP,Philip Billard Municipal,Topeka,KS,USA,39.0686575,-95.62248361 +TOR,Torrington Muni,Torrington,WY,USA,42.0645475,-104.1526986 +TPA,Tampa International,Tampa,FL,USA,27.97547222,-82.53325 +TPF,Peter O. Knight,Tampa,FL,USA,27.91557833,-82.44926083 +TPH,Tonopah,Tonopah,NV,USA,38.06020222,-117.0871536 +TPL,Draughon-Miller Central Texas Regional,Temple,TX,USA,31.1525,-97.40777778 +TPO,Port Alsworth,Port Alsworth,AK,USA,60.20433333,-154.3188728 +TQE,Municipal,Tekamah,NE,USA,41.76352778,-96.17794444 +TQH,Tahlequah Municipal,Tahlequah,OK,USA,35.92891667,-95.00452778 +TQK,Scott City Municipal,Scott City,KS,USA,38.47427778,-100.8849444 +TRI,Tri-Cities Regional,Bristol,TN,USA,36.47521417,-82.40742056 +TRK,Truckee-Tahoe,Truckee,CA,USA,39.32004222,-120.1395628 +TRL,Terrell Municipal,Terrell,TX,USA,32.71004667,-96.26742306 +TRM,Desert Resorts Regional,Palm Springs,CA,USA,33.62789944,-116.1601194 +TRX,Trenton Municipal,Trenton,MO,USA,40.08351333,-93.59063472 +TSO,Carroll County-Tolson,Carrollton,OH,USA,40.56186833,-81.07748611 +TSP,Tehachapi Municipal,Tehachapi,CA,USA,35.13497222,-118.43925 +TT01,Pagan Airstrip,Shomu-Shon,CQ,USA,18.12444444,-145.7686111 +TTA,Sanford-Lee County Regional,Sanford,NC,USA,35.58247222,-79.10136111 +TTD,Portland-Troutdale,Portland,OR,USA,45.54936889,-122.4012519 +TTF,Monroe Custer,Monroe,MI,USA,41.93990639,-83.43468306 +TTN,Trenton-Mercer County,Trenton,NJ,USA,40.27669111,-74.81346833 +TUL,Tulsa International,Tulsa,OK,USA,36.19837222,-95.88824167 +TUP,Tupelo Municipal,Tupelo,MS,USA,34.26810833,-88.769895 +TUS,Tucson International,Tucson,AZ,USA,32.11608333,-110.9410278 +TVB,Cabool Memorial,Cabool,MO,USA,37.13244083,-92.08396167 +TVC,Cherry Capital,Traverse City,MI,USA,44.74144472,-85.582235 +TVF,Thief River Falls Regional,Thief River Falls,MN,USA,48.06550028,-96.18336083 +TVI,Thomasville Municipal,Thomasville,GA,USA,30.90155194,-83.88133556 +TVK,Centerville Municipal,Centerville,IA,USA,40.68390306,-92.90103333 +TVL,Lake Tahoe,South Lake Tahoe,CA,USA,38.89388167,-119.9953347 +TVR,Vicksburg Tallulah Regional,Tallulah,LA,USA,32.35160639,-91.02768917 +TVY,Tooele Valley,Tooele,UT,USA,40.6122725,-112.3507719 +TWF,Joslin Field - Magic Valley,Twin Falls,ID,USA,42.48180389,-114.4877356 +TWM,Richard B. Helgeson,Two Harbors,MN,USA,47.049225,-91.74514167 +TXK,Texarkana Regional-Webb,Texarkana,AR,USA,33.45370806,-93.99102 +TYL,Taylor,Taylor,AZ,USA,34.45283333,-110.1148056 +TYQ,Indianapolis Terry,Indianapolis,IN,USA,40.03064972,-86.2514375 +TYR,Tyler Pounds,Tyler,TX,USA,32.35413889,-95.40238611 +TYS,McGhee-Tyson,Knoxville,TN,USA,35.81248722,-83.99285583 +TZR,Bolton,Columbus,OH,USA,39.90081778,-83.13719361 +TZT,Belle Plaine Municipal,Belle Plaine,IA,USA,41.87877778,-92.28456944 +TZV,Tompkinsville-Monroe County,Tompkinsville,KY,USA,36.72978,-85.65191556 +U02,McCarley,Blackfoot,ID,USA,43.20925,-112.3495861 +U03,Buhl Municipal,Buhl,ID,USA,42.59157139,-114.7967178 +U05,Riddick,Philipsburg,MT,USA,46.31936972,-113.3050642 +U08,Perkins,Overton,NV,USA,36.56803,-114.4433133 +U10,Preston,Preston,ID,USA,42.10690806,-111.9125389 +U14,Nephi Municipal,Nephi,UT,USA,39.73884333,-111.8716011 +U25,Dubois Municipal,Dubois,WY,USA,43.54834722,-109.6902611 +U30,Temple Bar,Temple Bar,AZ,USA,36.02054056,-114.3352461 +U34,Green River Muni,Green River,UT,USA,38.96136167,-110.2273619 +U36,Aberdeen Municipal,Aberdeen,ID,USA,42.92102222,-112.8811053 +U42,Salt Lake City Municipal 2,Salt Lake City,UT,USA,40.61954,-111.9928858 +U43,Monticello,Monticello,UT,USA,37.937215,-109.3465053 +U52,Beaver Municipal,Beaver,UT,USA,38.23071,-112.6753497 +U55,Panguitch Municipal,Panguitch,UT,USA,37.84523333,-112.3918731 +U59,Driggs-Reed Memorial,Driggs,ID,USA,43.74193056,-111.0978608 +U68,North Big Horn County,Cowley/Lovell/Byron,WY,USA,44.91167028,-108.4455092 +U69,Duchesne Municipal,Duchesne,UT,USA,40.19190167,-110.3809886 +U70,Cascade,Cascade,ID,USA,44.4937825,-116.0162422 +U76,Mountain Home Municipal,Mountain Home,ID,USA,43.13125278,-115.7295944 +U77,Spanish Fork-Springville,Spanish Fork,UT,USA,40.14162139,-111.6613125 +U82,Council Municipal,Council,ID,USA,44.7498875,-116.4468092 +U96,Cal Black Memorial,Halls Crossing,UT,USA,37.44221444,-110.5695836 +UAO,Aurora State,Aurora,OR,USA,45.24713889,-122.7700556 +UBE,Cumberland Municipal,Cumberland,WI,USA,45.50597028,-91.98108694 +UBS,Columbus-Lowndes County,Columbus,MS,USA,33.46539667,-88.38031639 +UBX,Cuba Municipal,Cuba,MO,USA,38.06877667,-91.42885694 +UCA,Oneida Cty,Utica,NY,USA,43.14511944,-75.38385889 +UCP,New Castle Muni,New Castle,PA,USA,41.02533778,-80.41337194 +UCY,Everett-Stewart,Union City,TN,USA,36.38025,-88.98547778 +UDD,Bermuda Dunes,Palm Springs,CA,USA,33.7484375,-116.2748133 +UDG,Darlington County,Darlington,SC,USA,34.44919444,-79.89036111 +UES,Waukesha County,Waukesha,WI,USA,43.04102778,-88.23705556 +UGN,Waukegan Regional,Chicago/Waukegan,IL,USA,42.42216,-87.86790694 +UIL,Quillayute,Forks,WA,USA,47.93714444,-124.5612497 +UIN,Quincy Municipal-Baldwin,Quincy,IL,USA,39.94262417,-91.19445611 +UIZ,Berz-Macomb,Utica,MI,USA,42.66389361,-82.96542583 +UKF,Wilkes County,North Wilkesboro,NC,USA,36.22284028,-81.0983375 +UKI,Ukiah Municipal,Ukiah,CA,USA,39.12595722,-123.200855 +UKL,Coffey County,Burlington,KS,USA,38.30248472,-95.7249575 +UKT,Quakertown,Quakertown,PA,USA,40.43521194,-75.38192861 +ULM,New Ulm Municipal,New Ulm,MN,USA,44.31957306,-94.50230778 +ULS,Ulysses,Ulysses,KS,USA,37.60375278,-101.3733889 +UMP,Indianapolis Metropolitan,Indianapolis,IN,USA,39.9352025,-86.04495333 +UNI,Ohio University,Athens/Albany,OH,USA,39.21096222,-82.23142583 +UNK,Unalakleet,Unalakleet,AK,USA,63.88835917,-160.7989517 +UNO,West Plains Municipal,West Plains,MO,USA,36.87813889,-91.90269444 +UNU,Dodge County,Juneau,WI,USA,43.42658333,-88.70322222 +UNV,University Park,State College,PA,USA,40.84927778,-77.84869444 +UOS,Franklin County,Sewanee,TN,USA,35.20397028,-85.89858889 +UOX,University-Oxford,Oxford,MS,USA,34.38431528,-89.53530972 +UPP,Upolu,Hawi,HI,USA,20.26525583,-155.8599875 +USE,Fulton County,Wauseon,OH,USA,41.61033333,-84.12552778 +UTS,Huntsville Municipal,Huntsville,TX,USA,30.74688667,-95.58716667 +UUO,Willow,Willow,AK,USA,61.75441667,-150.0516639 +UUU,Newport State,Newport,RI,USA,41.53243972,-71.28154389 +UUV,Sullivan Regional,Sullivan,MO,USA,38.23343056,-91.16433333 +UVA,Garner,Uvalde,TX,USA,29.21135028,-99.74358306 +UWL,New Castle-Henry Co,New Castle,IN,USA,39.87585167,-85.32646806 +UYF,Madison County,London,OH,USA,39.93272694,-83.46200361 +UZA,Rock Hill Municipal/Bryant,Rock Hill,SC,USA,34.98783333,-81.05716667 +VAK,Chevak,Chevak,AK,USA,61.53363583,-165.5837322 +VAY,South Jersey Reg,Mount Holly,NJ,USA,39.94289056,-74.84571944 +VBT,Bentonville Municipal,Bentonville,AR,USA,36.34571528,-94.219345 +VCB,Nut Tree,Vacaville,CA,USA,38.37675167,-121.962455 +VCT,Victoria Regional,Victoria,TX,USA,28.85255556,-96.91848722 +VCV,Southern California Logistic,Victorville,CA,USA,34.593225,-117.3794667 +VDI,Vidalia Municipal,Vidalia,GA,USA,32.19255556,-82.37194444 +VDZ,Valdez,Valdez,AK,USA,61.13395028,-146.24836 +VEE,Venetie,Venetie,AK,USA,67.02269444,-146.4137753 +VEL,Vernal,Vernal,UT,USA,40.44090167,-109.5099203 +VER,Jesse Viertel Memorial,Boonville,MO,USA,38.94577556,-92.68277139 +VES,Darke County,Versailles,OH,USA,40.20441667,-84.53191667 +VGT,North Las Vegas,Las Vegas,NV,USA,36.21166667,-115.19575 +VHN,Culberson County,Van Horn,TX,USA,31.05784417,-104.7838056 +VIH,Rolla National,Rolla/Vichy,MO,USA,38.12743222,-91.7695225 +VIQ,Neillsville Municipal,Neillsville,WI,USA,44.55812861,-90.51224694 +VIS,Visalia Municipal,Visalia,CA,USA,36.31866667,-119.3928889 +VJI,Virginia Highlands,Abingdon,VA,USA,36.68711028,-82.03333583 +VLA,Vandalia Municipal,Vandalia,IL,USA,38.99130556,-89.16622222 +VLD,Valdosta Regional,Valdosta,GA,USA,30.7825,-83.27672222 +VMR,Harold Davidson,Vermillion,SD,USA,42.76528917,-96.93425472 +VNC,Venice Municipal,Venice,FL,USA,27.07161111,-82.44033333 +VNW,Van Wert County,Van Wert,OH,USA,40.86472222,-84.60944444 +VNY,Van Nuys,Van Nuys,CA,USA,34.20980972,-118.4899733 +VPC,Cartersville,Cartersville,GA,USA,34.12313889,-84.84869444 +VPS,Eglin Air Force Base,Valparaiso,FL,USA,30.48325,-86.5254 +VPZ,Porter County Municipal,Valparaiso,IN,USA,41.45396667,-87.00707139 +VQQ,Cecil,Jacksonville,FL,USA,30.21867306,-81.87666444 +VQS,Antonio Rivera Rodriguez,Isla De Vieques,PR,USA,18.13551806,-65.49182583 +VRB,Vero Beach Municipal,Vero Beach,FL,USA,27.65555556,-80.41794444 +VSF,Springfield State/Hartness,Springfield,VT,USA,43.34362889,-72.5173125 +VTA,Newark-Heath,Newark,OH,USA,40.024675,-82.46182194 +VTI,Vinton Veterans Memorial Airpark,Vinton,IA,USA,42.21862611,-92.02592806 +VTN,Miller,Valentine,NE,USA,42.85767194,-100.547355 +VUJ,Stanly County,Albemarle,NC,USA,35.41669472,-80.15079556 +VUO,Pearson Airpark,Vancouver,WA,USA,45.6204525,-122.6564883 +VVV,Ortonville Municipal,Ortonville,MN,USA,45.30566472,-96.42442278 +VYS,Illinois Valley Regional,Peru/Lasalle,IL,USA,41.35186806,-89.15308417 +W04,Ocean Shores Municipal,Ocean Shores,WA,USA,47.00369806,-124.143785 +W05,Gettysburg & Travel Center,Gettysburg,PA,USA,39.84092833,-77.27415139 +W11,Menomonie Municipal - Score,Menomonie,WI,USA,44.89234639,-91.86777944 +W22,Upshur County Regional,Buckhannon,WV,USA,39.00035833,-80.27392778 +W29,Bay Bridge Industrial,Stevensville,MD,USA,38.97638889,-76.32963889 +W31,Lunenburg County,Kenbridge,VA,USA,36.96015,-78.18499861 +W33,Friday Harbor,Friday Harbor,WA,USA,48.53732194,-123.0096236 +W40,Mt Olive Municipal,Mt Olive,NC,USA,35.22224722,-78.03779444 +W41,Crisfield Municipal,Crisfield,MD,USA,38.01679028,-75.82882056 +W44,Asheboro Municipal,Asheboro,NC,USA,35.6538825,-79.8950425 +W45,Luray Caverns,Luray,VA,USA,38.66705556,-78.50058333 +W66,Warrenton-Fauquier,Warrenton,VA,USA,38.58704667,-77.71138389 +W78,William M Tuck,South Boston,VA,USA,36.710045,-78.84802028 +W95,Ocracoke Island,Ocracoke,NC,USA,35.10117083,-75.96595278 +W96,New Kent County,Quinton,VA,USA,37.50320139,-77.12552694 +W97,Middle Peninsula Regional,West Point,VA,USA,37.52122778,-76.7646825 +W99,Grant County,Petersburg,WV,USA,38.99419444,-79.14438889 +WA10,Grove,Camas/Washougal,WA,USA,45.62777778,-122.4041667 +WA21,Grand Coulee Dam,Electric City,WA,USA,47.92348361,-119.0805789 +WA31,Whidbey Air Park,Langley,WA,USA,48.01814917,-122.4384789 +WA43,Odessa Municipal,Odessa,WA,USA,47.3582025,-118.6733264 +WAY,Greene Cty,Waynesburg,PA,USA,39.900075,-80.13311667 +WBB,Stebbins,Stebbins,AK,USA,63.51591972,-162.2827394 +WBQ,Beaver,Beaver,AK,USA,66.36155056,-147.4012186 +WBW,Wilkes-Barre Wyoming Valley,Wilkes-Barre,PA,USA,41.29717222,-75.85120556 +WCR,Chandalar Lake,Chandalar Lake,AK,USA,67.50451667,-148.4832222 +WDG,Enid Woodring Municipal,Enid,OK,USA,36.37920333,-97.79111222 +WDR,Winder,Winder,GA,USA,33.98227778,-83.66808333 +WHP,Whiteman,Los Angeles,CA,USA,34.25932528,-118.4134331 +WJF,General Wm. J. Fox Airfield,Lancaster,CA,USA,34.74095944,-118.2189489 +WLD,Strother,Winfield/Arkansas City,KS,USA,37.16861556,-97.03752194 +WLK,Selawik,Selawik,AK,USA,66.60002778,-159.9861944 +WLW,Willows-Glenn County,Willows,CA,USA,39.51635389,-122.2175106 +WMC,Winnemucca Municipal,Winnemucca,NV,USA,40.89661111,-117.8058889 +WMO,White Mountain,White Mountain,AK,USA,64.68919444,-163.4125556 +WNA,Napakiak,Napakiak,AK,USA,60.69118917,-161.9695161 +WRG,Wrangell,Wrangell,AK,USA,56.48432583,-132.3698242 +WRL,Worland Muni,Worland,WY,USA,43.96571306,-107.9508308 +WSM,Wiseman,Wiseman,AK,USA,67.40457333,-150.1227417 +WSN,South Naknek 2,South Naknek,AK,USA,58.70343611,-157.0082511 +WST,Westerly State,Westerly,RI,USA,41.34961694,-71.80337778 +WTK,Noatak,Noatak,AK,USA,67.56208333,-162.9752778 +WVI,Watsonville Municipal,Watsonville,CA,USA,36.93573,-121.7896178 +WVL,Waterville-Robert Lafleur,Waterville,ME,USA,44.53325,-69.67552778 +WWD,Cape May Cty,Wildwood,NJ,USA,39.00850694,-74.90827389 +WWR,West Woodward,Woodward,OK,USA,36.4367025,-99.5209975 +WYS,Yellowstone,West Yellowstone,MT,USA,44.68839917,-111.1176375 +X01,Everglades,Everglades,FL,USA,25.84871167,-81.39007944 +X06,Arcadia Municipal,Arcadia,FL,USA,27.19199444,-81.83730472 +X07,Lake Wales Municipal,Lake Wales,FL,USA,27.89380556,-81.62038889 +X10,Belle Glade Municipal,Belle Glade,FL,USA,26.70089833,-80.66227972 +X14,Labelle Municipal,Labelle,FL,USA,26.74423278,-81.43257556 +X16,Vandenberg,Tampa,FL,USA,28.01398389,-82.34527917 +X21,Arthur Dunn Airpark,Titusville,FL,USA,28.62234556,-80.835695 +X23,Umatilla Municipal,Umatilla,FL,USA,28.922765,-81.65174111 +X26,Sebastian Municipal,Sebastian,FL,USA,27.81280389,-80.49560833 +X35,Dunnellon/Marion Co.,Dunellon,FL,USA,29.06177778,-82.37658333 +X40,Inverness,Inverness,FL,USA,28.80859639,-82.31648167 +X44,Watson Island Base,Miami,FL,USA,25.77833333,-80.17027778 +X46,Opa-Locka West,Miami,FL,USA,25.94898194,-80.42338694 +X47,Flagler County,Bunnell,FL,USA,29.46738889,-81.20633333 +X51,Homestead General Aviation,Homestead,FL,USA,25.49872139,-80.55422528 +X59,Valkaria,Valkaria,FL,USA,27.96196472,-80.55977556 +X60,Williston Municipal,Williston,FL,USA,29.35422,-82.47288194 +X63,Humacao,Humacao,PR,USA,18.13801667,-65.8007175 +X66,Charlotte Amalie Harbor Seaplane Base,Charlotte Amalie,VI,USA,18.33856722,-64.94070111 +X67,Christiansted Harbor Seaplane Base,Christiansted,VI,USA,17.74719528,-64.70486444 +X95,Diego Jimenez Torres,Fajardo,PR,USA,18.30800972,-65.66182806 +X96,Cruz Bay Harbor Seaplane Base,Cruz Bay,VI,USA,18.33689833,-64.79958306 +XNA,Northwest Arkansas Regional,Fayetteville/Springdale/Rogers,AR,USA,36.28186944,-94.30681111 +XVG,Longville Municipal,Longville,MN,USA,46.99016361,-94.20400222 +Y03,Springfield Municipal,Springfield,SD,USA,42.87999833,-97.90117972 +Y14,Marv Skie-Lincoln County,Tea,SD,USA,43.45747694,-96.80199528 +Y15,Cheboygan City-County,Cheboygan,MI,USA,45.65371028,-84.51927306 +Y19,Mandan Municipal,Mandan,ND,USA,46.76823667,-100.8943433 +Y27,Standing Rock,Fort Yates,ND,USA,46.06638556,-100.6348492 +Y31,West Branch Community,West Branch,MI,USA,44.244825,-84.17980472 +Y37,Park River Municipal,Park River,ND,USA,48.39443778,-97.78147889 +Y47,New Hudson,New Hudson,MI,USA,42.50311694,-83.62371667 +Y50,Wautoma Municipal,Wautoma,WI,USA,44.04162556,-89.30448694 +Y51,Viroqua Municipal,Viroqua,WI,USA,43.57913917,-90.90096333 +Y55,Crandon Municipal,Crandon,WI,USA,45.51662972,-88.93344694 +Y63,Elbow Lake Municipal,Elbow Lake,MN,USA,45.98607111,-95.99199861 +Y66,Drummond Island,Drummond Island,MI,USA,46.00931139,-83.74393417 +Y68,Tracy Municipal,Tracy,MN,USA,44.24995694,-95.60445389 +Y70,Ionia County,Ionia,MI,USA,42.93769972,-85.06066722 +Y74,Hankins,Parshall,ND,USA,47.93640083,-102.1421142 +Y83,Sandusky City,Sandusky,MI,USA,43.45418694,-82.84938028 +Y93,Atlanta Municipal,Atlanta,MI,USA,45.00000833,-84.13333667 +YAK,Yakutat,Yakutat,AK,USA,59.50336056,-139.6602261 +YAP,Yap International,NA,NA,Federated States of Micronesia,9.5167,138.1 +YIP,Willow Run,Detroit,MI,USA,42.2379275,-83.53040889 +YKM,Yakima Air Terminal,Yakima,WA,USA,46.56816972,-120.5440594 +YKN,Chan Gurney Municipal,Yankton,SD,USA,42.91669444,-97.38594444 +YNG,Youngstown-Warren Regional,Youngstown,OH,USA,41.26073556,-80.67909667 +YUM,Yuma MCAS-Yuma International,Yuma,AZ,USA,32.65658333,-114.6059722 +Z08,Ofu,Ofu Village,AS,USA,14.18435056,-169.6700236 +Z09,Kasigluk,Kasigluk,AK,USA,60.87202194,-162.5248094 +Z13,Akiachak,Akiachak,AK,USA,60.90453167,-161.42091 +Z17,Ophir,Ophir,AK,USA,63.1460375,-156.529865 +Z40,Goose Bay,Goose Bay,AK,USA,61.39445139,-149.8455556 +Z55,Lake Louise,Lake Louise,AK,USA,62.29368944,-146.5794219 +Z73,Nelson Lagoon,Nelson Lagoon,AK,USA,56.00753611,-161.1603672 +Z84,Clear,Clear A.F.B.,AK,USA,64.30120361,-149.1201436 +Z91,Birch Creek,Birch Creek,AK,USA,66.27399583,-145.8240381 +Z95,Cibecue,Cibecue,AZ,USA,34.00333333,-110.4441667 +ZEF,Elkin Municipal,Elkin,NC,USA,36.28002361,-80.78606861 +ZER,Schuylkill Cty/Joe Zerbey,Pottsville,PA,USA,40.70644889,-76.37314667 +ZPH,Zephyrhills Municipal,Zephyrhills,FL,USA,28.22806472,-82.15591639 +ZUN,Black Rock,Zuni,NM,USA,35.08322694,-108.7917769 +ZZV,Zanesville Municipal,Zanesville,OH,USA,39.94445833,-81.89210528 diff --git a/docs/static/data/examples/geo/us-airports.d.ts b/docs/static/data/examples/geo/us-airports.d.ts new file mode 100644 index 000000000..10ec5c032 --- /dev/null +++ b/docs/static/data/examples/geo/us-airports.d.ts @@ -0,0 +1,9 @@ +export type USAirportsData = { + iata: string; + name: string; + city: string; + state: string; + country: string; + latitude: number; + longitude: number; +}[]; diff --git a/docs/static/data/examples/geo/us-county-population-2020.d.ts b/docs/static/data/examples/geo/us-county-population-2020.d.ts new file mode 100644 index 000000000..1cf5abcb8 --- /dev/null +++ b/docs/static/data/examples/geo/us-county-population-2020.d.ts @@ -0,0 +1,7 @@ +export type USCountyPopulationData = { + DP05_0001E: string; + DP05_0019E: string; + DP05_0019PE: string; + state: string; + county: string; +}[]; diff --git a/docs/static/data/examples/geo/us-county-population-2020.json b/docs/static/data/examples/geo/us-county-population-2020.json new file mode 100644 index 000000000..f68c1a0f7 --- /dev/null +++ b/docs/static/data/examples/geo/us-county-population-2020.json @@ -0,0 +1,21997 @@ +[ + { + "DP05_0001E": "55639", + "DP05_0019E": "13143", + "DP05_0019PE": "23.6", + "state": "01", + "county": "001" + }, + { + "DP05_0001E": "218289", + "DP05_0019E": "46993", + "DP05_0019PE": "21.5", + "state": "01", + "county": "003" + }, + { + "DP05_0001E": "25026", + "DP05_0019E": "5222", + "DP05_0019PE": "20.9", + "state": "01", + "county": "005" + }, + { + "DP05_0001E": "22374", + "DP05_0019E": "4584", + "DP05_0019PE": "20.5", + "state": "01", + "county": "007" + }, + { + "DP05_0001E": "57755", + "DP05_0019E": "13372", + "DP05_0019PE": "23.2", + "state": "01", + "county": "009" + }, + { + "DP05_0001E": "10173", + "DP05_0019E": "2279", + "DP05_0019PE": "22.4", + "state": "01", + "county": "011" + }, + { + "DP05_0001E": "19726", + "DP05_0019E": "4401", + "DP05_0019PE": "22.3", + "state": "01", + "county": "013" + }, + { + "DP05_0001E": "114324", + "DP05_0019E": "24769", + "DP05_0019PE": "21.7", + "state": "01", + "county": "015" + }, + { + "DP05_0001E": "13345", + "DP05_0019E": "2985", + "DP05_0019PE": "22.4", + "state": "21", + "county": "135" + }, + { + "DP05_0001E": "24493", + "DP05_0019E": "5790", + "DP05_0019PE": "23.6", + "state": "21", + "county": "137" + }, + { + "DP05_0001E": "9172", + "DP05_0019E": "1991", + "DP05_0019PE": "21.7", + "state": "21", + "county": "139" + }, + { + "DP05_0001E": "27049", + "DP05_0019E": "6375", + "DP05_0019PE": "23.6", + "state": "21", + "county": "141" + }, + { + "DP05_0001E": "8226", + "DP05_0019E": "1126", + "DP05_0019PE": "13.7", + "state": "21", + "county": "143" + }, + { + "DP05_0001E": "65485", + "DP05_0019E": "14512", + "DP05_0019PE": "22.2", + "state": "21", + "county": "145" + }, + { + "DP05_0001E": "17333", + "DP05_0019E": "3775", + "DP05_0019PE": "21.8", + "state": "21", + "county": "147" + }, + { + "DP05_0001E": "92090", + "DP05_0019E": "19064", + "DP05_0019PE": "20.7", + "state": "21", + "county": "151" + }, + { + "DP05_0001E": "19257", + "DP05_0019E": "4647", + "DP05_0019PE": "24.1", + "state": "21", + "county": "155" + }, + { + "DP05_0001E": "31225", + "DP05_0019E": "6351", + "DP05_0019PE": "20.3", + "state": "21", + "county": "157" + }, + { + "DP05_0001E": "17122", + "DP05_0019E": "3870", + "DP05_0019PE": "22.6", + "state": "21", + "county": "161" + }, + { + "DP05_0001E": "28379", + "DP05_0019E": "6370", + "DP05_0019PE": "22.4", + "state": "21", + "county": "163" + }, + { + "DP05_0001E": "21690", + "DP05_0019E": "4779", + "DP05_0019PE": "22.0", + "state": "21", + "county": "167" + }, + { + "DP05_0001E": "10062", + "DP05_0019E": "2370", + "DP05_0019PE": "23.6", + "state": "21", + "county": "169" + }, + { + "DP05_0001E": "28042", + "DP05_0019E": "6593", + "DP05_0019PE": "23.5", + "state": "21", + "county": "173" + }, + { + "DP05_0001E": "13270", + "DP05_0019E": "2443", + "DP05_0019PE": "18.4", + "state": "21", + "county": "175" + }, + { + "DP05_0001E": "45915", + "DP05_0019E": "10870", + "DP05_0019PE": "23.7", + "state": "21", + "county": "179" + }, + { + "DP05_0001E": "7189", + "DP05_0019E": "1647", + "DP05_0019PE": "22.9", + "state": "21", + "county": "181" + }, + { + "DP05_0001E": "66508", + "DP05_0019E": "16923", + "DP05_0019PE": "25.4", + "state": "21", + "county": "185" + }, + { + "DP05_0001E": "10847", + "DP05_0019E": "2414", + "DP05_0019PE": "22.3", + "state": "21", + "county": "187" + }, + { + "DP05_0001E": "14587", + "DP05_0019E": "3394", + "DP05_0019PE": "23.3", + "state": "21", + "county": "191" + }, + { + "DP05_0001E": "58595", + "DP05_0019E": "12089", + "DP05_0019PE": "20.6", + "state": "21", + "county": "195" + }, + { + "DP05_0001E": "12283", + "DP05_0019E": "3043", + "DP05_0019PE": "24.8", + "state": "21", + "county": "197" + }, + { + "DP05_0001E": "2139", + "DP05_0019E": "526", + "DP05_0019PE": "24.6", + "state": "21", + "county": "201" + }, + { + "DP05_0001E": "16795", + "DP05_0019E": "3696", + "DP05_0019PE": "22.0", + "state": "21", + "county": "203" + }, + { + "DP05_0001E": "17846", + "DP05_0019E": "4051", + "DP05_0019PE": "22.7", + "state": "21", + "county": "207" + }, + { + "DP05_0001E": "55961", + "DP05_0019E": "14059", + "DP05_0019PE": "25.1", + "state": "21", + "county": "209" + }, + { + "DP05_0001E": "18319", + "DP05_0019E": "4451", + "DP05_0019PE": "24.3", + "state": "21", + "county": "213" + }, + { + "DP05_0001E": "18945", + "DP05_0019E": "4338", + "DP05_0019PE": "22.9", + "state": "21", + "county": "215" + }, + { + "DP05_0001E": "12334", + "DP05_0019E": "3285", + "DP05_0019PE": "26.6", + "state": "21", + "county": "219" + }, + { + "DP05_0001E": "8528", + "DP05_0019E": "1850", + "DP05_0019PE": "21.7", + "state": "21", + "county": "223" + }, + { + "DP05_0001E": "14582", + "DP05_0019E": "2671", + "DP05_0019PE": "18.3", + "state": "21", + "county": "225" + }, + { + "DP05_0001E": "12044", + "DP05_0019E": "2812", + "DP05_0019PE": "23.3", + "state": "21", + "county": "229" + }, + { + "DP05_0001E": "20447", + "DP05_0019E": "4276", + "DP05_0019PE": "20.9", + "state": "21", + "county": "231" + }, + { + "DP05_0001E": "36252", + "DP05_0019E": "9066", + "DP05_0019PE": "25.0", + "state": "21", + "county": "235" + }, + { + "DP05_0001E": "7188", + "DP05_0019E": "1666", + "DP05_0019PE": "23.2", + "state": "21", + "county": "237" + }, + { + "DP05_0001E": "107958", + "DP05_0019E": "23388", + "DP05_0019PE": "21.7", + "state": "23", + "county": "001" + }, + { + "DP05_0001E": "67431", + "DP05_0019E": "12380", + "DP05_0019PE": "18.4", + "state": "23", + "county": "003" + }, + { + "DP05_0001E": "29933", + "DP05_0019E": "5323", + "DP05_0019PE": "17.8", + "state": "23", + "county": "007" + }, + { + "DP05_0001E": "54832", + "DP05_0019E": "9240", + "DP05_0019PE": "16.9", + "state": "23", + "county": "009" + }, + { + "DP05_0001E": "39809", + "DP05_0019E": "7036", + "DP05_0019PE": "17.7", + "state": "23", + "county": "013" + }, + { + "DP05_0001E": "34415", + "DP05_0019E": "5800", + "DP05_0019PE": "16.9", + "state": "23", + "county": "015" + }, + { + "DP05_0001E": "151696", + "DP05_0019E": "27515", + "DP05_0019PE": "18.1", + "state": "23", + "county": "019" + }, + { + "DP05_0001E": "16864", + "DP05_0019E": "2880", + "DP05_0019PE": "17.1", + "state": "23", + "county": "021" + }, + { + "DP05_0001E": "50573", + "DP05_0019E": "9615", + "DP05_0019PE": "19.0", + "state": "23", + "county": "025" + }, + { + "DP05_0001E": "31378", + "DP05_0019E": "5994", + "DP05_0019PE": "19.1", + "state": "23", + "county": "029" + }, + { + "DP05_0001E": "206074", + "DP05_0019E": "38650", + "DP05_0019PE": "18.8", + "state": "23", + "county": "031" + }, + { + "DP05_0001E": "353775", + "DP05_0019E": "84515", + "DP05_0019PE": "23.9", + "state": "27", + "county": "003" + }, + { + "DP05_0001E": "34227", + "DP05_0019E": "8312", + "DP05_0019PE": "24.3", + "state": "27", + "county": "005" + }, + { + "DP05_0001E": "46784", + "DP05_0019E": "11778", + "DP05_0019PE": "25.2", + "state": "27", + "county": "007" + }, + { + "DP05_0001E": "40476", + "DP05_0019E": "10302", + "DP05_0019PE": "25.5", + "state": "27", + "county": "009" + }, + { + "DP05_0001E": "4974", + "DP05_0019E": "1066", + "DP05_0019PE": "21.4", + "state": "27", + "county": "011" + }, + { + "DP05_0001E": "67368", + "DP05_0019E": "13302", + "DP05_0019PE": "19.7", + "state": "27", + "county": "013" + }, + { + "DP05_0001E": "25076", + "DP05_0019E": "5468", + "DP05_0019PE": "21.8", + "state": "27", + "county": "015" + }, + { + "DP05_0001E": "35709", + "DP05_0019E": "8014", + "DP05_0019PE": "22.4", + "state": "27", + "county": "017" + }, + { + "DP05_0001E": "103561", + "DP05_0019E": "27612", + "DP05_0019PE": "26.7", + "state": "27", + "county": "019" + }, + { + "DP05_0001E": "29462", + "DP05_0019E": "6195", + "DP05_0019PE": "21.0", + "state": "27", + "county": "021" + }, + { + "DP05_0001E": "11876", + "DP05_0019E": "2759", + "DP05_0019PE": "23.2", + "state": "27", + "county": "023" + }, + { + "DP05_0001E": "55844", + "DP05_0019E": "12724", + "DP05_0019PE": "22.8", + "state": "27", + "county": "025" + }, + { + "DP05_0001E": "12237", + "DP05_0019E": "2482", + "DP05_0019PE": "20.3", + "state": "47", + "county": "121" + }, + { + "DP05_0001E": "204992", + "DP05_0019E": "54939", + "DP05_0019PE": "26.8", + "state": "47", + "county": "125" + }, + { + "DP05_0001E": "6396", + "DP05_0019E": "1236", + "DP05_0019PE": "19.3", + "state": "47", + "county": "127" + }, + { + "DP05_0001E": "30343", + "DP05_0019E": "6611", + "DP05_0019PE": "21.8", + "state": "47", + "county": "131" + }, + { + "DP05_0001E": "22171", + "DP05_0019E": "4763", + "DP05_0019PE": "21.5", + "state": "47", + "county": "133" + }, + { + "DP05_0001E": "5068", + "DP05_0019E": "949", + "DP05_0019PE": "18.7", + "state": "47", + "county": "137" + }, + { + "DP05_0001E": "16807", + "DP05_0019E": "3184", + "DP05_0019PE": "18.9", + "state": "47", + "county": "139" + }, + { + "DP05_0001E": "32964", + "DP05_0019E": "7498", + "DP05_0019PE": "22.7", + "state": "47", + "county": "143" + }, + { + "DP05_0001E": "53331", + "DP05_0019E": "9975", + "DP05_0019PE": "18.7", + "state": "47", + "county": "145" + }, + { + "DP05_0001E": "324139", + "DP05_0019E": "79877", + "DP05_0019PE": "24.6", + "state": "47", + "county": "149" + }, + { + "DP05_0001E": "22020", + "DP05_0019E": "5228", + "DP05_0019PE": "23.7", + "state": "47", + "county": "151" + }, + { + "DP05_0001E": "14936", + "DP05_0019E": "2885", + "DP05_0019PE": "19.3", + "state": "47", + "county": "153" + }, + { + "DP05_0001E": "936611", + "DP05_0019E": "234172", + "DP05_0019PE": "25.0", + "state": "47", + "county": "157" + }, + { + "DP05_0001E": "19926", + "DP05_0019E": "4502", + "DP05_0019PE": "22.6", + "state": "47", + "county": "159" + }, + { + "DP05_0001E": "157707", + "DP05_0019E": "30462", + "DP05_0019PE": "19.3", + "state": "47", + "county": "163" + }, + { + "DP05_0001E": "187680", + "DP05_0019E": "44194", + "DP05_0019PE": "23.5", + "state": "47", + "county": "165" + }, + { + "DP05_0001E": "10910", + "DP05_0019E": "1993", + "DP05_0019PE": "18.3", + "state": "47", + "county": "169" + }, + { + "DP05_0001E": "17821", + "DP05_0019E": "2935", + "DP05_0019PE": "16.5", + "state": "47", + "county": "171" + }, + { + "DP05_0001E": "5813", + "DP05_0019E": "1113", + "DP05_0019PE": "19.1", + "state": "47", + "county": "175" + }, + { + "DP05_0001E": "40971", + "DP05_0019E": "9660", + "DP05_0019PE": "23.6", + "state": "47", + "county": "177" + }, + { + "DP05_0001E": "16638", + "DP05_0019E": "2893", + "DP05_0019PE": "17.4", + "state": "47", + "county": "181" + }, + { + "DP05_0001E": "33377", + "DP05_0019E": "6428", + "DP05_0019PE": "19.3", + "state": "47", + "county": "183" + }, + { + "DP05_0001E": "232380", + "DP05_0019E": "63015", + "DP05_0019PE": "27.1", + "state": "47", + "county": "187" + }, + { + "DP05_0001E": "140604", + "DP05_0019E": "33211", + "DP05_0019PE": "23.6", + "state": "47", + "county": "189" + }, + { + "DP05_0001E": "54953", + "DP05_0019E": "17324", + "DP05_0019PE": "31.5", + "state": "49", + "county": "003" + }, + { + "DP05_0001E": "126336", + "DP05_0019E": "38226", + "DP05_0019PE": "30.3", + "state": "49", + "county": "005" + }, + { + "DP05_0001E": "590", + "DP05_0019E": "150", + "DP05_0019PE": "25.4", + "state": "49", + "county": "009" + }, + { + "DP05_0001E": "350761", + "DP05_0019E": "112479", + "DP05_0019PE": "32.1", + "state": "49", + "county": "011" + }, + { + "DP05_0001E": "10099", + "DP05_0019E": "2956", + "DP05_0019PE": "29.3", + "state": "49", + "county": "015" + }, + { + "DP05_0001E": "5000", + "DP05_0019E": "1182", + "DP05_0019PE": "23.6", + "state": "49", + "county": "017" + }, + { + "DP05_0001E": "9698", + "DP05_0019E": "1995", + "DP05_0019PE": "20.6", + "state": "49", + "county": "019" + }, + { + "DP05_0001E": "53148", + "DP05_0019E": "15191", + "DP05_0019PE": "28.6", + "state": "49", + "county": "021" + }, + { + "DP05_0001E": "11623", + "DP05_0019E": "3983", + "DP05_0019PE": "34.3", + "state": "49", + "county": "023" + }, + { + "DP05_0001E": "7658", + "DP05_0019E": "1688", + "DP05_0019PE": "22.0", + "state": "49", + "county": "025" + }, + { + "DP05_0001E": "12963", + "DP05_0019E": "4040", + "DP05_0019PE": "31.2", + "state": "49", + "county": "027" + }, + { + "DP05_0001E": "11950", + "DP05_0019E": "4238", + "DP05_0019PE": "35.5", + "state": "49", + "county": "029" + }, + { + "DP05_0001E": "1870", + "DP05_0019E": "392", + "DP05_0019PE": "21.0", + "state": "49", + "county": "031" + }, + { + "DP05_0001E": "2415", + "DP05_0019E": "773", + "DP05_0019PE": "32.0", + "state": "49", + "county": "033" + }, + { + "DP05_0001E": "1146215", + "DP05_0019E": "310571", + "DP05_0019PE": "27.1", + "state": "49", + "county": "035" + }, + { + "DP05_0001E": "15295", + "DP05_0019E": "4627", + "DP05_0019PE": "30.3", + "state": "49", + "county": "037" + }, + { + "DP05_0001E": "30421", + "DP05_0019E": "7723", + "DP05_0019PE": "25.4", + "state": "49", + "county": "039" + }, + { + "DP05_0001E": "21475", + "DP05_0019E": "6284", + "DP05_0019PE": "29.3", + "state": "49", + "county": "041" + }, + { + "DP05_0001E": "41680", + "DP05_0019E": "10154", + "DP05_0019PE": "24.4", + "state": "49", + "county": "043" + }, + { + "DP05_0001E": "69740", + "DP05_0019E": "22728", + "DP05_0019PE": "32.6", + "state": "49", + "county": "045" + }, + { + "DP05_0001E": "35736", + "DP05_0019E": "11775", + "DP05_0019PE": "32.9", + "state": "49", + "county": "047" + }, + { + "DP05_0001E": "621506", + "DP05_0019E": "207116", + "DP05_0019PE": "33.3", + "state": "49", + "county": "049" + }, + { + "DP05_0001E": "33053", + "DP05_0019E": "10373", + "DP05_0019PE": "31.4", + "state": "49", + "county": "051" + }, + { + "DP05_0001E": "172127", + "DP05_0019E": "44823", + "DP05_0019PE": "26.0", + "state": "49", + "county": "053" + }, + { + "DP05_0001E": "2698", + "DP05_0019E": "704", + "DP05_0019PE": "26.1", + "state": "49", + "county": "055" + }, + { + "DP05_0001E": "255284", + "DP05_0019E": "71853", + "DP05_0019PE": "28.1", + "state": "49", + "county": "057" + }, + { + "DP05_0001E": "35649", + "DP05_0019E": "6723", + "DP05_0019PE": "18.9", + "state": "50", + "county": "003" + }, + { + "DP05_0001E": "30027", + "DP05_0019E": "5791", + "DP05_0019PE": "19.3", + "state": "50", + "county": "005" + }, + { + "DP05_0001E": "6179", + "DP05_0019E": "1067", + "DP05_0019PE": "17.3", + "state": "50", + "county": "009" + }, + { + "DP05_0001E": "49275", + "DP05_0019E": "10948", + "DP05_0019PE": "22.2", + "state": "50", + "county": "011" + }, + { + "DP05_0001E": "25376", + "DP05_0019E": "5175", + "DP05_0019PE": "20.4", + "state": "50", + "county": "015" + }, + { + "DP05_0001E": "28873", + "DP05_0019E": "5313", + "DP05_0019PE": "18.4", + "state": "50", + "county": "017" + }, + { + "DP05_0001E": "58527", + "DP05_0019E": "10351", + "DP05_0019PE": "17.7", + "state": "50", + "county": "021" + }, + { + "DP05_0001E": "58336", + "DP05_0019E": "10926", + "DP05_0019PE": "18.7", + "state": "50", + "county": "023" + }, + { + "DP05_0001E": "55191", + "DP05_0019E": "9994", + "DP05_0019PE": "18.1", + "state": "50", + "county": "027" + }, + { + "DP05_0001E": "32560", + "DP05_0019E": "6764", + "DP05_0019PE": "20.8", + "state": "51", + "county": "001" + }, + { + "DP05_0001E": "10903", + "DP05_0019E": "2635", + "DP05_0019PE": "24.2", + "state": "27", + "county": "165" + }, + { + "DP05_0001E": "104687", + "DP05_0019E": "25224", + "DP05_0019PE": "24.1", + "state": "29", + "county": "037" + }, + { + "DP05_0001E": "87324", + "DP05_0019E": "22163", + "DP05_0019PE": "25.4", + "state": "29", + "county": "043" + }, + { + "DP05_0001E": "20503", + "DP05_0019E": "4823", + "DP05_0019PE": "23.5", + "state": "29", + "county": "049" + }, + { + "DP05_0001E": "23984", + "DP05_0019E": "5471", + "DP05_0019PE": "22.8", + "state": "29", + "county": "055" + }, + { + "DP05_0001E": "8294", + "DP05_0019E": "2131", + "DP05_0019PE": "25.7", + "state": "29", + "county": "061" + }, + { + "DP05_0001E": "13335", + "DP05_0019E": "2925", + "DP05_0019PE": "21.9", + "state": "29", + "county": "067" + }, + { + "DP05_0001E": "14673", + "DP05_0019E": "3034", + "DP05_0019PE": "20.7", + "state": "29", + "county": "073" + }, + { + "DP05_0001E": "9885", + "DP05_0019E": "2418", + "DP05_0019PE": "24.5", + "state": "29", + "county": "079" + }, + { + "DP05_0001E": "9452", + "DP05_0019E": "1575", + "DP05_0019PE": "16.7", + "state": "29", + "county": "085" + }, + { + "DP05_0001E": "40130", + "DP05_0019E": "9617", + "DP05_0019PE": "24.0", + "state": "29", + "county": "091" + }, + { + "DP05_0001E": "120528", + "DP05_0019E": "30031", + "DP05_0019PE": "24.9", + "state": "29", + "county": "097" + }, + { + "DP05_0001E": "53948", + "DP05_0019E": "11590", + "DP05_0019PE": "21.5", + "state": "29", + "county": "101" + }, + { + "DP05_0001E": "32697", + "DP05_0019E": "7441", + "DP05_0019PE": "22.8", + "state": "29", + "county": "107" + }, + { + "DP05_0001E": "57590", + "DP05_0019E": "14652", + "DP05_0019PE": "25.4", + "state": "29", + "county": "113" + }, + { + "DP05_0001E": "22882", + "DP05_0019E": "5901", + "DP05_0019PE": "25.8", + "state": "29", + "county": "119" + }, + { + "DP05_0001E": "8791", + "DP05_0019E": "1802", + "DP05_0019PE": "20.5", + "state": "29", + "county": "125" + }, + { + "DP05_0001E": "25369", + "DP05_0019E": "5981", + "DP05_0019PE": "23.6", + "state": "29", + "county": "131" + }, + { + "DP05_0001E": "8630", + "DP05_0019E": "1869", + "DP05_0019PE": "21.7", + "state": "29", + "county": "137" + }, + { + "DP05_0001E": "17275", + "DP05_0019E": "4013", + "DP05_0019PE": "23.2", + "state": "29", + "county": "143" + }, + { + "DP05_0001E": "10561", + "DP05_0019E": "2383", + "DP05_0019PE": "22.6", + "state": "29", + "county": "149" + }, + { + "DP05_0001E": "16330", + "DP05_0019E": "4211", + "DP05_0019PE": "25.8", + "state": "29", + "county": "155" + }, + { + "DP05_0001E": "8207", + "DP05_0019E": "1771", + "DP05_0019PE": "21.6", + "state": "29", + "county": "203" + }, + { + "DP05_0001E": "31875", + "DP05_0019E": "5267", + "DP05_0019PE": "16.5", + "state": "29", + "county": "209" + }, + { + "DP05_0001E": "25518", + "DP05_0019E": "5507", + "DP05_0019PE": "21.6", + "state": "29", + "county": "215" + }, + { + "DP05_0001E": "24819", + "DP05_0019E": "5776", + "DP05_0019PE": "23.3", + "state": "29", + "county": "221" + }, + { + "DP05_0001E": "2001", + "DP05_0019E": "420", + "DP05_0019PE": "21.0", + "state": "29", + "county": "227" + }, + { + "DP05_0001E": "304709", + "DP05_0019E": "58226", + "DP05_0019PE": "19.1", + "state": "29", + "county": "510" + }, + { + "DP05_0001E": "180076", + "DP05_0019E": "38057", + "DP05_0019PE": "21.1", + "state": "12", + "county": "005" + }, + { + "DP05_0001E": "1942273", + "DP05_0019E": "410987", + "DP05_0019PE": "21.2", + "state": "12", + "county": "011" + }, + { + "DP05_0001E": "147938", + "DP05_0019E": "21799", + "DP05_0019PE": "14.7", + "state": "12", + "county": "017" + }, + { + "DP05_0001E": "70898", + "DP05_0019E": "15349", + "DP05_0019PE": "21.6", + "state": "12", + "county": "023" + }, + { + "DP05_0001E": "948651", + "DP05_0019E": "214225", + "DP05_0019PE": "22.6", + "state": "12", + "county": "031" + }, + { + "DP05_0001E": "11914", + "DP05_0019E": "1881", + "DP05_0019PE": "15.8", + "state": "12", + "county": "037" + }, + { + "DP05_0001E": "13777", + "DP05_0019E": "2064", + "DP05_0019PE": "15.0", + "state": "12", + "county": "043" + }, + { + "DP05_0001E": "27027", + "DP05_0019E": "7077", + "DP05_0019PE": "26.2", + "state": "12", + "county": "049" + }, + { + "DP05_0001E": "104574", + "DP05_0019E": "17680", + "DP05_0019PE": "16.9", + "state": "12", + "county": "055" + }, + { + "DP05_0001E": "156964", + "DP05_0019E": "25154", + "DP05_0019PE": "16.0", + "state": "12", + "county": "061" + }, + { + "DP05_0001E": "8576", + "DP05_0019E": "1697", + "DP05_0019PE": "19.8", + "state": "12", + "county": "067" + }, + { + "DP05_0001E": "291863", + "DP05_0019E": "54420", + "DP05_0019PE": "18.6", + "state": "12", + "county": "073" + }, + { + "DP05_0001E": "8333", + "DP05_0019E": "1524", + "DP05_0019PE": "18.3", + "state": "12", + "county": "077" + }, + { + "DP05_0001E": "360210", + "DP05_0019E": "67205", + "DP05_0019PE": "18.7", + "state": "12", + "county": "083" + }, + { + "DP05_0001E": "75137", + "DP05_0019E": "11521", + "DP05_0019PE": "15.3", + "state": "12", + "county": "087" + }, + { + "DP05_0001E": "41611", + "DP05_0019E": "8861", + "DP05_0019PE": "21.3", + "state": "12", + "county": "093" + }, + { + "DP05_0001E": "439", + "DP05_0019E": "114", + "DP05_0019PE": "26.0", + "state": "31", + "county": "005" + }, + { + "DP05_0001E": "5228", + "DP05_0019E": "1226", + "DP05_0019PE": "23.5", + "state": "31", + "county": "011" + }, + { + "DP05_0001E": "2887", + "DP05_0019E": "600", + "DP05_0019PE": "20.8", + "state": "31", + "county": "017" + }, + { + "DP05_0001E": "7997", + "DP05_0019E": "1857", + "DP05_0019PE": "23.2", + "state": "31", + "county": "023" + }, + { + "DP05_0001E": "13681", + "DP05_0019E": "3493", + "DP05_0019PE": "25.5", + "state": "27", + "county": "159" + }, + { + "DP05_0001E": "3707", + "DP05_0019E": "844", + "DP05_0019PE": "22.8", + "state": "31", + "county": "029" + }, + { + "DP05_0001E": "6193", + "DP05_0019E": "1501", + "DP05_0019PE": "24.2", + "state": "31", + "county": "035" + }, + { + "DP05_0001E": "8882", + "DP05_0019E": "2168", + "DP05_0019PE": "24.4", + "state": "31", + "county": "039" + }, + { + "DP05_0001E": "8685", + "DP05_0019E": "1584", + "DP05_0019PE": "18.2", + "state": "31", + "county": "045" + }, + { + "DP05_0001E": "5682", + "DP05_0019E": "1438", + "DP05_0019PE": "25.3", + "state": "31", + "county": "051" + }, + { + "DP05_0001E": "1928", + "DP05_0019E": "465", + "DP05_0019PE": "24.1", + "state": "31", + "county": "057" + }, + { + "DP05_0001E": "2636", + "DP05_0019E": "523", + "DP05_0019PE": "19.8", + "state": "31", + "county": "063" + }, + { + "DP05_0001E": "1916", + "DP05_0019E": "414", + "DP05_0019PE": "21.6", + "state": "31", + "county": "069" + }, + { + "DP05_0001E": "691", + "DP05_0019E": "166", + "DP05_0019PE": "24.0", + "state": "31", + "county": "075" + }, + { + "DP05_0001E": "9219", + "DP05_0019E": "2181", + "DP05_0019PE": "23.7", + "state": "31", + "county": "081" + }, + { + "DP05_0001E": "26035", + "DP05_0019E": "5003", + "DP05_0019PE": "19.2", + "state": "01", + "county": "019" + }, + { + "DP05_0001E": "44147", + "DP05_0019E": "10560", + "DP05_0019PE": "23.9", + "state": "01", + "county": "021" + }, + { + "DP05_0001E": "12755", + "DP05_0019E": "2548", + "DP05_0019PE": "20.0", + "state": "01", + "county": "023" + }, + { + "DP05_0001E": "23866", + "DP05_0019E": "5162", + "DP05_0019PE": "21.6", + "state": "01", + "county": "025" + }, + { + "DP05_0001E": "13285", + "DP05_0019E": "2735", + "DP05_0019PE": "20.6", + "state": "01", + "county": "027" + }, + { + "DP05_0001E": "14952", + "DP05_0019E": "3370", + "DP05_0019PE": "22.5", + "state": "01", + "county": "029" + }, + { + "DP05_0001E": "52238", + "DP05_0019E": "12352", + "DP05_0019PE": "23.6", + "state": "01", + "county": "031" + }, + { + "DP05_0001E": "54957", + "DP05_0019E": "11500", + "DP05_0019PE": "20.9", + "state": "01", + "county": "033" + }, + { + "DP05_0001E": "12219", + "DP05_0019E": "2547", + "DP05_0019PE": "20.8", + "state": "01", + "county": "035" + }, + { + "DP05_0001E": "10696", + "DP05_0019E": "1763", + "DP05_0019PE": "16.5", + "state": "01", + "county": "037" + }, + { + "DP05_0001E": "13826", + "DP05_0019E": "3084", + "DP05_0019PE": "22.3", + "state": "01", + "county": "041" + }, + { + "DP05_0001E": "83345", + "DP05_0019E": "18707", + "DP05_0019PE": "22.4", + "state": "01", + "county": "043" + }, + { + "DP05_0001E": "38184", + "DP05_0019E": "9214", + "DP05_0019PE": "24.1", + "state": "01", + "county": "047" + }, + { + "DP05_0001E": "71430", + "DP05_0019E": "17366", + "DP05_0019PE": "24.3", + "state": "01", + "county": "049" + }, + { + "DP05_0001E": "36775", + "DP05_0019E": "8239", + "DP05_0019PE": "22.4", + "state": "01", + "county": "053" + }, + { + "DP05_0001E": "102721", + "DP05_0019E": "22106", + "DP05_0019PE": "21.5", + "state": "01", + "county": "055" + }, + { + "DP05_0001E": "31587", + "DP05_0019E": "7885", + "DP05_0019PE": "25.0", + "state": "01", + "county": "059" + }, + { + "DP05_0001E": "8221", + "DP05_0019E": "1766", + "DP05_0019PE": "21.5", + "state": "01", + "county": "063" + }, + { + "DP05_0001E": "14754", + "DP05_0019E": "3423", + "DP05_0019PE": "23.2", + "state": "01", + "county": "065" + }, + { + "DP05_0001E": "105319", + "DP05_0019E": "24310", + "DP05_0019PE": "23.1", + "state": "01", + "county": "069" + }, + { + "DP05_0001E": "51765", + "DP05_0019E": "10865", + "DP05_0019PE": "21.0", + "state": "01", + "county": "071" + }, + { + "DP05_0001E": "13854", + "DP05_0019E": "3041", + "DP05_0019PE": "22.0", + "state": "01", + "county": "075" + }, + { + "DP05_0001E": "92870", + "DP05_0019E": "18320", + "DP05_0019PE": "19.7", + "state": "01", + "county": "077" + }, + { + "DP05_0001E": "163461", + "DP05_0019E": "34530", + "DP05_0019PE": "21.1", + "state": "01", + "county": "081" + }, + { + "DP05_0001E": "9936", + "DP05_0019E": "2217", + "DP05_0019PE": "22.3", + "state": "01", + "county": "085" + }, + { + "DP05_0001E": "18437", + "DP05_0019E": "3189", + "DP05_0019PE": "17.3", + "state": "01", + "county": "087" + }, + { + "DP05_0001E": "19138", + "DP05_0019E": "4447", + "DP05_0019PE": "23.2", + "state": "01", + "county": "091" + }, + { + "DP05_0001E": "29818", + "DP05_0019E": "6214", + "DP05_0019PE": "20.8", + "state": "01", + "county": "093" + }, + { + "DP05_0001E": "413977", + "DP05_0019E": "97183", + "DP05_0019PE": "23.5", + "state": "01", + "county": "097" + }, + { + "DP05_0001E": "21006", + "DP05_0019E": "4561", + "DP05_0019PE": "21.7", + "state": "01", + "county": "099" + }, + { + "DP05_0001E": "119352", + "DP05_0019E": "27385", + "DP05_0019PE": "22.9", + "state": "01", + "county": "103" + }, + { + "DP05_0001E": "20049", + "DP05_0019E": "3947", + "DP05_0019PE": "19.7", + "state": "01", + "county": "107" + }, + { + "DP05_0001E": "33274", + "DP05_0019E": "6285", + "DP05_0019PE": "18.9", + "state": "01", + "county": "109" + }, + { + "DP05_0001E": "57938", + "DP05_0019E": "13981", + "DP05_0019PE": "24.1", + "state": "01", + "county": "113" + }, + { + "DP05_0001E": "88929", + "DP05_0019E": "20129", + "DP05_0019PE": "22.6", + "state": "01", + "county": "115" + }, + { + "DP05_0001E": "12595", + "DP05_0019E": "2425", + "DP05_0019PE": "19.3", + "state": "01", + "county": "119" + }, + { + "DP05_0001E": "40450", + "DP05_0019E": "8382", + "DP05_0019PE": "20.7", + "state": "01", + "county": "123" + }, + { + "DP05_0001E": "208854", + "DP05_0019E": "43767", + "DP05_0019PE": "21.0", + "state": "01", + "county": "125" + }, + { + "DP05_0001E": "16336", + "DP05_0019E": "3479", + "DP05_0019PE": "21.3", + "state": "01", + "county": "129" + }, + { + "DP05_0001E": "10552", + "DP05_0019E": "2512", + "DP05_0019PE": "23.8", + "state": "01", + "county": "131" + }, + { + "DP05_0001E": "1661584", + "DP05_0019E": "341591", + "DP05_0019PE": "20.6", + "state": "06", + "county": "001" + }, + { + "DP05_0001E": "1159", + "DP05_0019E": "252", + "DP05_0019PE": "21.7", + "state": "06", + "county": "003" + }, + { + "DP05_0001E": "223344", + "DP05_0019E": "44865", + "DP05_0019PE": "20.1", + "state": "06", + "county": "007" + }, + { + "DP05_0001E": "21491", + "DP05_0019E": "5863", + "DP05_0019PE": "27.3", + "state": "06", + "county": "011" + }, + { + "DP05_0001E": "1147788", + "DP05_0019E": "260191", + "DP05_0019PE": "22.7", + "state": "06", + "county": "013" + }, + { + "DP05_0001E": "190345", + "DP05_0019E": "37911", + "DP05_0019PE": "19.9", + "state": "06", + "county": "017" + }, + { + "DP05_0001E": "990204", + "DP05_0019E": "281391", + "DP05_0019PE": "28.4", + "state": "06", + "county": "019" + }, + { + "DP05_0001E": "33427", + "DP05_0019E": "6946", + "DP05_0019PE": "20.8", + "state": "01", + "county": "017" + }, + { + "DP05_0001E": "136101", + "DP05_0019E": "25945", + "DP05_0019PE": "19.1", + "state": "06", + "county": "023" + }, + { + "DP05_0001E": "180580", + "DP05_0019E": "51772", + "DP05_0019PE": "28.7", + "state": "06", + "county": "025" + }, + { + "DP05_0001E": "892458", + "DP05_0019E": "258159", + "DP05_0019PE": "28.9", + "state": "06", + "county": "029" + }, + { + "DP05_0001E": "151090", + "DP05_0019E": "40923", + "DP05_0019PE": "27.1", + "state": "06", + "county": "031" + }, + { + "DP05_0001E": "30600", + "DP05_0019E": "4937", + "DP05_0019PE": "16.1", + "state": "06", + "county": "035" + }, + { + "DP05_0001E": "155925", + "DP05_0019E": "42781", + "DP05_0019PE": "27.4", + "state": "06", + "county": "039" + }, + { + "DP05_0001E": "259441", + "DP05_0019E": "51974", + "DP05_0019PE": "20.0", + "state": "06", + "county": "041" + }, + { + "DP05_0001E": "17319", + "DP05_0019E": "2844", + "DP05_0019PE": "16.4", + "state": "06", + "county": "043" + }, + { + "DP05_0001E": "87110", + "DP05_0019E": "18592", + "DP05_0019PE": "21.3", + "state": "06", + "county": "045" + }, + { + "DP05_0001E": "273661", + "DP05_0019E": "80729", + "DP05_0019PE": "29.5", + "state": "06", + "county": "047" + }, + { + "DP05_0001E": "8853", + "DP05_0019E": "1743", + "DP05_0019PE": "19.7", + "state": "06", + "county": "049" + }, + { + "DP05_0001E": "64029", + "DP05_0019E": "15727", + "DP05_0019PE": "24.6", + "state": "27", + "county": "027" + }, + { + "DP05_0001E": "8872", + "DP05_0019E": "2200", + "DP05_0019PE": "24.8", + "state": "27", + "county": "029" + }, + { + "DP05_0001E": "5402", + "DP05_0019E": "836", + "DP05_0019PE": "15.5", + "state": "27", + "county": "031" + }, + { + "DP05_0001E": "11279", + "DP05_0019E": "2756", + "DP05_0019PE": "24.4", + "state": "27", + "county": "033" + }, + { + "DP05_0001E": "64775", + "DP05_0019E": "13953", + "DP05_0019PE": "21.5", + "state": "27", + "county": "035" + }, + { + "DP05_0001E": "425271", + "DP05_0019E": "103782", + "DP05_0019PE": "24.4", + "state": "27", + "county": "037" + }, + { + "DP05_0001E": "20807", + "DP05_0019E": "5445", + "DP05_0019PE": "26.2", + "state": "27", + "county": "039" + }, + { + "DP05_0001E": "37820", + "DP05_0019E": "8107", + "DP05_0019PE": "21.4", + "state": "27", + "county": "041" + }, + { + "DP05_0001E": "13727", + "DP05_0019E": "3029", + "DP05_0019PE": "22.1", + "state": "27", + "county": "043" + }, + { + "DP05_0001E": "21031", + "DP05_0019E": "5154", + "DP05_0019PE": "24.5", + "state": "27", + "county": "045" + }, + { + "DP05_0001E": "46330", + "DP05_0019E": "10245", + "DP05_0019PE": "22.1", + "state": "27", + "county": "049" + }, + { + "DP05_0001E": "5962", + "DP05_0019E": "1370", + "DP05_0019PE": "23.0", + "state": "27", + "county": "051" + }, + { + "DP05_0001E": "18670", + "DP05_0019E": "4093", + "DP05_0019PE": "21.9", + "state": "27", + "county": "055" + }, + { + "DP05_0001E": "21287", + "DP05_0019E": "4454", + "DP05_0019PE": "20.9", + "state": "27", + "county": "057" + }, + { + "DP05_0001E": "45180", + "DP05_0019E": "9398", + "DP05_0019PE": "20.8", + "state": "27", + "county": "061" + }, + { + "DP05_0001E": "16205", + "DP05_0019E": "3462", + "DP05_0019PE": "21.4", + "state": "27", + "county": "065" + }, + { + "DP05_0001E": "42909", + "DP05_0019E": "10453", + "DP05_0019PE": "24.4", + "state": "27", + "county": "067" + }, + { + "DP05_0001E": "12355", + "DP05_0019E": "2225", + "DP05_0019PE": "18.0", + "state": "27", + "county": "071" + }, + { + "DP05_0001E": "6645", + "DP05_0019E": "1313", + "DP05_0019PE": "19.8", + "state": "27", + "county": "073" + }, + { + "DP05_0001E": "3747", + "DP05_0019E": "746", + "DP05_0019PE": "19.9", + "state": "27", + "county": "077" + }, + { + "DP05_0001E": "28425", + "DP05_0019E": "6757", + "DP05_0019PE": "23.8", + "state": "27", + "county": "079" + }, + { + "DP05_0001E": "25696", + "DP05_0019E": "6601", + "DP05_0019PE": "25.7", + "state": "27", + "county": "083" + }, + { + "DP05_0001E": "35788", + "DP05_0019E": "8227", + "DP05_0019PE": "23.0", + "state": "27", + "county": "085" + }, + { + "DP05_0001E": "9353", + "DP05_0019E": "2150", + "DP05_0019PE": "23.0", + "state": "27", + "county": "089" + }, + { + "DP05_0001E": "19737", + "DP05_0019E": "4289", + "DP05_0019PE": "21.7", + "state": "27", + "county": "091" + }, + { + "DP05_0001E": "25963", + "DP05_0019E": "6208", + "DP05_0019PE": "23.9", + "state": "27", + "county": "095" + }, + { + "DP05_0001E": "33119", + "DP05_0019E": "7851", + "DP05_0019PE": "23.7", + "state": "27", + "county": "097" + }, + { + "DP05_0001E": "8247", + "DP05_0019E": "1770", + "DP05_0019PE": "21.5", + "state": "27", + "county": "101" + }, + { + "DP05_0001E": "34176", + "DP05_0019E": "7529", + "DP05_0019PE": "22.0", + "state": "27", + "county": "103" + }, + { + "DP05_0001E": "6466", + "DP05_0019E": "1532", + "DP05_0019PE": "23.7", + "state": "27", + "county": "107" + }, + { + "DP05_0001E": "156446", + "DP05_0019E": "38372", + "DP05_0019PE": "24.5", + "state": "27", + "county": "109" + }, + { + "DP05_0001E": "14110", + "DP05_0019E": "3278", + "DP05_0019PE": "23.2", + "state": "27", + "county": "113" + }, + { + "DP05_0001E": "29254", + "DP05_0019E": "5737", + "DP05_0019PE": "19.6", + "state": "27", + "county": "115" + }, + { + "DP05_0001E": "31384", + "DP05_0019E": "7631", + "DP05_0019PE": "24.3", + "state": "27", + "county": "119" + }, + { + "DP05_0001E": "11107", + "DP05_0019E": "2275", + "DP05_0019PE": "20.5", + "state": "27", + "county": "121" + }, + { + "DP05_0001E": "4005", + "DP05_0019E": "981", + "DP05_0019PE": "24.5", + "state": "27", + "county": "125" + }, + { + "DP05_0001E": "15193", + "DP05_0019E": "3771", + "DP05_0019PE": "24.8", + "state": "27", + "county": "127" + }, + { + "DP05_0001E": "66549", + "DP05_0019E": "14487", + "DP05_0019PE": "21.8", + "state": "27", + "county": "131" + }, + { + "DP05_0001E": "9386", + "DP05_0019E": "2290", + "DP05_0019PE": "24.4", + "state": "27", + "county": "133" + }, + { + "DP05_0001E": "199499", + "DP05_0019E": "37883", + "DP05_0019PE": "19.0", + "state": "27", + "county": "137" + }, + { + "DP05_0001E": "147201", + "DP05_0019E": "40383", + "DP05_0019PE": "27.4", + "state": "27", + "county": "139" + }, + { + "DP05_0001E": "14871", + "DP05_0019E": "3487", + "DP05_0019PE": "23.4", + "state": "27", + "county": "143" + }, + { + "DP05_0001E": "159788", + "DP05_0019E": "37056", + "DP05_0019PE": "23.2", + "state": "27", + "county": "145" + }, + { + "DP05_0001E": "9770", + "DP05_0019E": "2072", + "DP05_0019PE": "21.2", + "state": "27", + "county": "149" + }, + { + "DP05_0001E": "9329", + "DP05_0019E": "2119", + "DP05_0019PE": "22.7", + "state": "27", + "county": "151" + }, + { + "DP05_0001E": "3282", + "DP05_0019E": "654", + "DP05_0019PE": "19.9", + "state": "27", + "county": "155" + }, + { + "DP05_0001E": "21564", + "DP05_0019E": "4643", + "DP05_0019PE": "21.5", + "state": "27", + "county": "157" + }, + { + "DP05_0001E": "18658", + "DP05_0019E": "4362", + "DP05_0019PE": "23.4", + "state": "27", + "county": "161" + }, + { + "DP05_0001E": "259072", + "DP05_0019E": "63411", + "DP05_0019PE": "24.5", + "state": "27", + "county": "163" + }, + { + "DP05_0001E": "6264", + "DP05_0019E": "1365", + "DP05_0019PE": "21.8", + "state": "27", + "county": "167" + }, + { + "DP05_0001E": "50744", + "DP05_0019E": "9100", + "DP05_0019PE": "17.9", + "state": "27", + "county": "169" + }, + { + "DP05_0001E": "136387", + "DP05_0019E": "38061", + "DP05_0019PE": "27.9", + "state": "27", + "county": "171" + }, + { + "DP05_0001E": "9775", + "DP05_0019E": "2263", + "DP05_0019PE": "23.2", + "state": "27", + "county": "173" + }, + { + "DP05_0001E": "25468", + "DP05_0019E": "4768", + "DP05_0019PE": "18.7", + "state": "29", + "county": "001" + }, + { + "DP05_0001E": "17554", + "DP05_0019E": "4034", + "DP05_0019PE": "23.0", + "state": "29", + "county": "003" + }, + { + "DP05_0001E": "5180", + "DP05_0019E": "1027", + "DP05_0019PE": "19.8", + "state": "29", + "county": "005" + }, + { + "DP05_0001E": "25336", + "DP05_0019E": "5794", + "DP05_0019PE": "22.9", + "state": "29", + "county": "007" + }, + { + "DP05_0001E": "35615", + "DP05_0019E": "8070", + "DP05_0019PE": "22.7", + "state": "29", + "county": "009" + }, + { + "DP05_0001E": "11732", + "DP05_0019E": "2756", + "DP05_0019PE": "23.5", + "state": "29", + "county": "011" + }, + { + "DP05_0001E": "15030", + "DP05_0019E": "2855", + "DP05_0019PE": "19.0", + "state": "51", + "county": "005" + }, + { + "DP05_0001E": "12970", + "DP05_0019E": "2757", + "DP05_0019PE": "21.3", + "state": "51", + "county": "007" + }, + { + "DP05_0001E": "15814", + "DP05_0019E": "3370", + "DP05_0019PE": "21.3", + "state": "51", + "county": "011" + }, + { + "DP05_0001E": "236434", + "DP05_0019E": "42470", + "DP05_0019PE": "18.0", + "state": "51", + "county": "013" + }, + { + "DP05_0001E": "4248", + "DP05_0019E": "630", + "DP05_0019PE": "14.8", + "state": "51", + "county": "017" + }, + { + "DP05_0001E": "78965", + "DP05_0019E": "15760", + "DP05_0019PE": "20.0", + "state": "51", + "county": "019" + }, + { + "DP05_0001E": "33440", + "DP05_0019E": "6460", + "DP05_0019PE": "19.3", + "state": "51", + "county": "023" + }, + { + "DP05_0001E": "16336", + "DP05_0019E": "2602", + "DP05_0019PE": "15.9", + "state": "51", + "county": "025" + }, + { + "DP05_0001E": "17087", + "DP05_0019E": "3167", + "DP05_0019PE": "18.5", + "state": "51", + "county": "029" + }, + { + "DP05_0001E": "55406", + "DP05_0019E": "11078", + "DP05_0019PE": "20.0", + "state": "51", + "county": "031" + }, + { + "DP05_0001E": "29911", + "DP05_0019E": "5449", + "DP05_0019PE": "18.2", + "state": "51", + "county": "035" + }, + { + "DP05_0001E": "6965", + "DP05_0019E": "1053", + "DP05_0019PE": "15.1", + "state": "51", + "county": "036" + }, + { + "DP05_0001E": "11953", + "DP05_0019E": "2641", + "DP05_0019PE": "22.1", + "state": "51", + "county": "037" + }, + { + "DP05_0001E": "14498", + "DP05_0019E": "2833", + "DP05_0019PE": "19.5", + "state": "51", + "county": "043" + }, + { + "DP05_0001E": "5103", + "DP05_0019E": "901", + "DP05_0019PE": "17.7", + "state": "51", + "county": "045" + }, + { + "DP05_0001E": "9869", + "DP05_0019E": "1949", + "DP05_0019PE": "19.7", + "state": "51", + "county": "049" + }, + { + "DP05_0001E": "14524", + "DP05_0019E": "2794", + "DP05_0019PE": "19.2", + "state": "51", + "county": "051" + }, + { + "DP05_0001E": "10960", + "DP05_0019E": "2036", + "DP05_0019PE": "18.6", + "state": "51", + "county": "057" + }, + { + "DP05_0001E": "1149439", + "DP05_0019E": "270227", + "DP05_0019PE": "23.5", + "state": "51", + "county": "059" + }, + { + "DP05_0001E": "15766", + "DP05_0019E": "3010", + "DP05_0019PE": "19.1", + "state": "51", + "county": "063" + }, + { + "DP05_0001E": "26873", + "DP05_0019E": "5388", + "DP05_0019PE": "20.0", + "state": "51", + "county": "065" + }, + { + "DP05_0001E": "88054", + "DP05_0019E": "20183", + "DP05_0019PE": "22.9", + "state": "51", + "county": "069" + }, + { + "DP05_0001E": "16760", + "DP05_0019E": "3432", + "DP05_0019PE": "20.5", + "state": "51", + "county": "071" + }, + { + "DP05_0001E": "23472", + "DP05_0019E": "4163", + "DP05_0019PE": "17.7", + "state": "51", + "county": "075" + }, + { + "DP05_0001E": "15651", + "DP05_0019E": "2612", + "DP05_0019PE": "16.7", + "state": "51", + "county": "077" + }, + { + "DP05_0001E": "11403", + "DP05_0019E": "1759", + "DP05_0019PE": "15.4", + "state": "51", + "county": "081" + }, + { + "DP05_0001E": "34295", + "DP05_0019E": "6996", + "DP05_0019PE": "20.4", + "state": "51", + "county": "083" + }, + { + "DP05_0001E": "330076", + "DP05_0019E": "75113", + "DP05_0019PE": "22.8", + "state": "51", + "county": "087" + }, + { + "DP05_0001E": "51032", + "DP05_0019E": "9953", + "DP05_0019PE": "19.5", + "state": "51", + "county": "089" + }, + { + "DP05_0001E": "37107", + "DP05_0019E": "7803", + "DP05_0019PE": "21.0", + "state": "51", + "county": "093" + }, + { + "DP05_0001E": "76032", + "DP05_0019E": "15028", + "DP05_0019PE": "19.8", + "state": "51", + "county": "095" + }, + { + "DP05_0001E": "7011", + "DP05_0019E": "1329", + "DP05_0019PE": "19.0", + "state": "51", + "county": "097" + }, + { + "DP05_0001E": "26679", + "DP05_0019E": "6673", + "DP05_0019PE": "25.0", + "state": "51", + "county": "099" + }, + { + "DP05_0001E": "16985", + "DP05_0019E": "3822", + "DP05_0019PE": "22.5", + "state": "51", + "county": "101" + }, + { + "DP05_0001E": "10686", + "DP05_0019E": "1678", + "DP05_0019PE": "15.7", + "state": "51", + "county": "103" + }, + { + "DP05_0001E": "23723", + "DP05_0019E": "4332", + "DP05_0019PE": "18.3", + "state": "51", + "county": "105" + }, + { + "DP05_0001E": "405312", + "DP05_0019E": "114090", + "DP05_0019PE": "28.1", + "state": "51", + "county": "107" + }, + { + "DP05_0001E": "36654", + "DP05_0019E": "7418", + "DP05_0019PE": "20.2", + "state": "51", + "county": "109" + }, + { + "DP05_0001E": "12294", + "DP05_0019E": "2431", + "DP05_0019PE": "19.8", + "state": "51", + "county": "111" + }, + { + "DP05_0001E": "13208", + "DP05_0019E": "2742", + "DP05_0019PE": "20.8", + "state": "51", + "county": "113" + }, + { + "DP05_0001E": "8760", + "DP05_0019E": "1319", + "DP05_0019PE": "15.1", + "state": "51", + "county": "115" + }, + { + "DP05_0001E": "30726", + "DP05_0019E": "5724", + "DP05_0019PE": "18.6", + "state": "51", + "county": "117" + }, + { + "DP05_0001E": "10642", + "DP05_0019E": "1710", + "DP05_0019PE": "16.1", + "state": "51", + "county": "119" + }, + { + "DP05_0001E": "98495", + "DP05_0019E": "15221", + "DP05_0019PE": "15.5", + "state": "51", + "county": "121" + }, + { + "DP05_0001E": "14812", + "DP05_0019E": "2609", + "DP05_0019PE": "17.6", + "state": "51", + "county": "125" + }, + { + "DP05_0001E": "22310", + "DP05_0019E": "4403", + "DP05_0019PE": "19.7", + "state": "51", + "county": "127" + }, + { + "DP05_0001E": "11826", + "DP05_0019E": "2322", + "DP05_0019PE": "19.6", + "state": "51", + "county": "131" + }, + { + "DP05_0001E": "12151", + "DP05_0019E": "1778", + "DP05_0019PE": "14.6", + "state": "51", + "county": "133" + }, + { + "DP05_0001E": "15338", + "DP05_0019E": "2946", + "DP05_0019PE": "19.2", + "state": "51", + "county": "135" + }, + { + "DP05_0001E": "36501", + "DP05_0019E": "7660", + "DP05_0019PE": "21.0", + "state": "51", + "county": "137" + }, + { + "DP05_0001E": "23862", + "DP05_0019E": "4771", + "DP05_0019PE": "20.0", + "state": "51", + "county": "139" + }, + { + "DP05_0001E": "17660", + "DP05_0019E": "3098", + "DP05_0019PE": "17.5", + "state": "51", + "county": "141" + }, + { + "DP05_0001E": "29253", + "DP05_0019E": "5323", + "DP05_0019PE": "18.2", + "state": "51", + "county": "145" + }, + { + "DP05_0001E": "22892", + "DP05_0019E": "3532", + "DP05_0019PE": "15.4", + "state": "51", + "county": "147" + }, + { + "DP05_0001E": "38292", + "DP05_0019E": "8424", + "DP05_0019PE": "22.0", + "state": "51", + "county": "149" + }, + { + "DP05_0001E": "34113", + "DP05_0019E": "6059", + "DP05_0019PE": "17.8", + "state": "51", + "county": "155" + }, + { + "DP05_0001E": "7360", + "DP05_0019E": "1381", + "DP05_0019PE": "18.8", + "state": "51", + "county": "157" + }, + { + "DP05_0001E": "94103", + "DP05_0019E": "18952", + "DP05_0019PE": "20.1", + "state": "51", + "county": "161" + }, + { + "DP05_0001E": "2788", + "DP05_0019E": "678", + "DP05_0019PE": "24.3", + "state": "31", + "county": "087" + }, + { + "DP05_0001E": "6428", + "DP05_0019E": "1564", + "DP05_0019PE": "24.3", + "state": "31", + "county": "093" + }, + { + "DP05_0001E": "6588", + "DP05_0019E": "1669", + "DP05_0019PE": "25.3", + "state": "31", + "county": "099" + }, + { + "DP05_0001E": "3576", + "DP05_0019E": "679", + "DP05_0019PE": "19.0", + "state": "31", + "county": "105" + }, + { + "DP05_0001E": "35042", + "DP05_0019E": "8355", + "DP05_0019PE": "23.8", + "state": "31", + "county": "111" + }, + { + "DP05_0001E": "420", + "DP05_0019E": "49", + "DP05_0019PE": "11.7", + "state": "31", + "county": "117" + }, + { + "DP05_0001E": "4711", + "DP05_0019E": "1103", + "DP05_0019PE": "23.4", + "state": "31", + "county": "123" + }, + { + "DP05_0001E": "6978", + "DP05_0019E": "1484", + "DP05_0019PE": "21.3", + "state": "31", + "county": "127" + }, + { + "DP05_0001E": "4100", + "DP05_0019E": "895", + "DP05_0019PE": "21.8", + "state": "31", + "county": "175" + }, + { + "DP05_0001E": "9388", + "DP05_0019E": "1841", + "DP05_0019PE": "19.6", + "state": "31", + "county": "179" + }, + { + "DP05_0001E": "13671", + "DP05_0019E": "3168", + "DP05_0019PE": "23.2", + "state": "31", + "county": "185" + }, + { + "DP05_0001E": "48486", + "DP05_0019E": "7984", + "DP05_0019PE": "16.5", + "state": "32", + "county": "005" + }, + { + "DP05_0001E": "1839", + "DP05_0019E": "511", + "DP05_0019PE": "27.8", + "state": "32", + "county": "011" + }, + { + "DP05_0001E": "5177", + "DP05_0019E": "983", + "DP05_0019PE": "19.0", + "state": "32", + "county": "017" + }, + { + "DP05_0001E": "45514", + "DP05_0019E": "7722", + "DP05_0019PE": "17.0", + "state": "32", + "county": "023" + }, + { + "DP05_0001E": "464182", + "DP05_0019E": "100439", + "DP05_0019PE": "21.6", + "state": "32", + "county": "031" + }, + { + "DP05_0001E": "61174", + "DP05_0019E": "11277", + "DP05_0019PE": "18.4", + "state": "33", + "county": "001" + }, + { + "DP05_0001E": "31486", + "DP05_0019E": "5119", + "DP05_0019PE": "16.3", + "state": "33", + "county": "007" + }, + { + "DP05_0001E": "150902", + "DP05_0019E": "28876", + "DP05_0019PE": "19.1", + "state": "33", + "county": "013" + }, + { + "DP05_0001E": "43173", + "DP05_0019E": "8056", + "DP05_0019PE": "18.7", + "state": "33", + "county": "019" + }, + { + "DP05_0001E": "125061", + "DP05_0019E": "33551", + "DP05_0019PE": "26.8", + "state": "22", + "county": "005" + }, + { + "DP05_0001E": "37387", + "DP05_0019E": "9240", + "DP05_0019PE": "24.7", + "state": "22", + "county": "011" + }, + { + "DP05_0001E": "243243", + "DP05_0019E": "57800", + "DP05_0019PE": "23.8", + "state": "22", + "county": "017" + }, + { + "DP05_0001E": "6963", + "DP05_0019E": "1510", + "DP05_0019PE": "21.7", + "state": "22", + "county": "023" + }, + { + "DP05_0001E": "19533", + "DP05_0019E": "4651", + "DP05_0019PE": "23.8", + "state": "22", + "county": "029" + }, + { + "DP05_0001E": "6947", + "DP05_0019E": "1714", + "DP05_0019PE": "24.7", + "state": "22", + "county": "035" + }, + { + "DP05_0001E": "20109", + "DP05_0019E": "5097", + "DP05_0019PE": "25.3", + "state": "22", + "county": "041" + }, + { + "DP05_0001E": "32626", + "DP05_0019E": "6711", + "DP05_0019PE": "20.6", + "state": "22", + "county": "047" + }, + { + "DP05_0001E": "31425", + "DP05_0019E": "7999", + "DP05_0019PE": "25.5", + "state": "22", + "county": "053" + }, + { + "DP05_0001E": "50020", + "DP05_0019E": "12015", + "DP05_0019PE": "24.0", + "state": "22", + "county": "101" + }, + { + "DP05_0001E": "4435", + "DP05_0019E": "1036", + "DP05_0019PE": "23.4", + "state": "22", + "county": "107" + }, + { + "DP05_0001E": "22270", + "DP05_0019E": "4891", + "DP05_0019PE": "22.0", + "state": "22", + "county": "111" + }, + { + "DP05_0001E": "46325", + "DP05_0019E": "11030", + "DP05_0019PE": "23.8", + "state": "22", + "county": "117" + }, + { + "DP05_0001E": "10934", + "DP05_0019E": "2471", + "DP05_0019PE": "22.6", + "state": "22", + "county": "123" + }, + { + "DP05_0001E": "46304", + "DP05_0019E": "9216", + "DP05_0019PE": "19.9", + "state": "36", + "county": "003" + }, + { + "DP05_0001E": "76750", + "DP05_0019E": "17059", + "DP05_0019PE": "22.2", + "state": "36", + "county": "009" + }, + { + "DP05_0001E": "84115", + "DP05_0019E": "17990", + "DP05_0019PE": "21.4", + "state": "36", + "county": "015" + }, + { + "DP05_0001E": "60016", + "DP05_0019E": "10370", + "DP05_0019PE": "17.3", + "state": "36", + "county": "021" + }, + { + "DP05_0001E": "293524", + "DP05_0019E": "55351", + "DP05_0019PE": "18.9", + "state": "36", + "county": "027" + }, + { + "DP05_0001E": "37281", + "DP05_0019E": "5995", + "DP05_0019PE": "16.1", + "state": "36", + "county": "031" + }, + { + "DP05_0001E": "57554", + "DP05_0019E": "11671", + "DP05_0019PE": "20.3", + "state": "36", + "county": "037" + }, + { + "DP05_0001E": "61738", + "DP05_0019E": "12710", + "DP05_0019PE": "20.6", + "state": "36", + "county": "043" + }, + { + "DP05_0001E": "26456", + "DP05_0019E": "6059", + "DP05_0019PE": "22.9", + "state": "36", + "county": "049" + }, + { + "DP05_0001E": "743084", + "DP05_0019E": "154685", + "DP05_0019PE": "20.8", + "state": "36", + "county": "055" + }, + { + "DP05_0001E": "1629153", + "DP05_0019E": "233239", + "DP05_0019PE": "14.3", + "state": "36", + "county": "061" + }, + { + "DP05_0001E": "461591", + "DP05_0019E": "98353", + "DP05_0019PE": "21.3", + "state": "36", + "county": "067" + }, + { + "DP05_0001E": "40624", + "DP05_0019E": "7851", + "DP05_0019PE": "19.3", + "state": "36", + "county": "073" + }, + { + "DP05_0001E": "98714", + "DP05_0019E": "19591", + "DP05_0019PE": "19.8", + "state": "36", + "county": "079" + }, + { + "DP05_0001E": "475596", + "DP05_0019E": "103981", + "DP05_0019PE": "21.9", + "state": "36", + "county": "085" + }, + { + "DP05_0001E": "24430", + "DP05_0019E": "4876", + "DP05_0019PE": "20.0", + "state": "37", + "county": "007" + }, + { + "DP05_0001E": "47160", + "DP05_0019E": "9469", + "DP05_0019PE": "20.1", + "state": "37", + "county": "013" + }, + { + "DP05_0001E": "137303", + "DP05_0019E": "20949", + "DP05_0019PE": "15.3", + "state": "37", + "county": "019" + }, + { + "DP05_0001E": "211605", + "DP05_0019E": "54189", + "DP05_0019PE": "25.6", + "state": "37", + "county": "025" + }, + { + "DP05_0001E": "69301", + "DP05_0019E": "12106", + "DP05_0019PE": "17.5", + "state": "37", + "county": "031" + }, + { + "DP05_0001E": "72853", + "DP05_0019E": "14673", + "DP05_0019PE": "20.1", + "state": "37", + "county": "037" + }, + { + "DP05_0001E": "97765", + "DP05_0019E": "21483", + "DP05_0019PE": "22.0", + "state": "37", + "county": "045" + }, + { + "DP05_0001E": "334562", + "DP05_0019E": "82782", + "DP05_0019PE": "24.7", + "state": "37", + "county": "051" + }, + { + "DP05_0001E": "166837", + "DP05_0019E": "36729", + "DP05_0019PE": "22.0", + "state": "37", + "county": "057" + }, + { + "DP05_0001E": "432977", + "DP05_0019E": "113350", + "DP05_0019PE": "26.2", + "state": "06", + "county": "053" + }, + { + "DP05_0001E": "138572", + "DP05_0019E": "28555", + "DP05_0019PE": "20.6", + "state": "06", + "county": "055" + }, + { + "DP05_0001E": "99417", + "DP05_0019E": "17000", + "DP05_0019PE": "17.1", + "state": "06", + "county": "057" + }, + { + "DP05_0001E": "3170345", + "DP05_0019E": "697715", + "DP05_0019PE": "22.0", + "state": "06", + "county": "059" + }, + { + "DP05_0001E": "391799", + "DP05_0019E": "87116", + "DP05_0019PE": "22.2", + "state": "06", + "county": "061" + }, + { + "DP05_0001E": "18844", + "DP05_0019E": "3172", + "DP05_0019PE": "16.8", + "state": "06", + "county": "063" + }, + { + "DP05_0001E": "2437864", + "DP05_0019E": "613823", + "DP05_0019PE": "25.2", + "state": "06", + "county": "065" + }, + { + "DP05_0001E": "1537948", + "DP05_0019E": "363852", + "DP05_0019PE": "23.7", + "state": "06", + "county": "067" + }, + { + "DP05_0001E": "61547", + "DP05_0019E": "15844", + "DP05_0019PE": "25.7", + "state": "06", + "county": "069" + }, + { + "DP05_0001E": "2162532", + "DP05_0019E": "570845", + "DP05_0019PE": "26.4", + "state": "06", + "county": "071" + }, + { + "DP05_0001E": "3323970", + "DP05_0019E": "718250", + "DP05_0019PE": "21.6", + "state": "06", + "county": "073" + }, + { + "DP05_0001E": "874784", + "DP05_0019E": "117363", + "DP05_0019PE": "13.4", + "state": "06", + "county": "075" + }, + { + "DP05_0001E": "751615", + "DP05_0019E": "203670", + "DP05_0019PE": "27.1", + "state": "06", + "county": "077" + }, + { + "DP05_0001E": "282517", + "DP05_0019E": "49949", + "DP05_0019PE": "17.7", + "state": "06", + "county": "079" + }, + { + "DP05_0001E": "765623", + "DP05_0019E": "156769", + "DP05_0019PE": "20.5", + "state": "06", + "county": "081" + }, + { + "DP05_0001E": "1924379", + "DP05_0019E": "421988", + "DP05_0019PE": "21.9", + "state": "06", + "county": "085" + }, + { + "DP05_0001E": "273170", + "DP05_0019E": "52286", + "DP05_0019PE": "19.1", + "state": "06", + "county": "087" + }, + { + "DP05_0001E": "2898", + "DP05_0019E": "444", + "DP05_0019PE": "15.3", + "state": "06", + "county": "091" + }, + { + "DP05_0001E": "444538", + "DP05_0019E": "98625", + "DP05_0019PE": "22.2", + "state": "06", + "county": "095" + }, + { + "DP05_0001E": "496801", + "DP05_0019E": "97601", + "DP05_0019PE": "19.6", + "state": "06", + "county": "097" + }, + { + "DP05_0001E": "96315", + "DP05_0019E": "24979", + "DP05_0019PE": "25.9", + "state": "06", + "county": "101" + }, + { + "DP05_0001E": "64176", + "DP05_0019E": "15329", + "DP05_0019PE": "23.9", + "state": "06", + "county": "103" + }, + { + "DP05_0001E": "463955", + "DP05_0019E": "142777", + "DP05_0019PE": "30.8", + "state": "06", + "county": "107" + }, + { + "DP05_0001E": "54147", + "DP05_0019E": "8986", + "DP05_0019PE": "16.6", + "state": "06", + "county": "109" + }, + { + "DP05_0001E": "218774", + "DP05_0019E": "45977", + "DP05_0019PE": "21.0", + "state": "06", + "county": "113" + }, + { + "DP05_0001E": "77524", + "DP05_0019E": "21355", + "DP05_0019PE": "27.5", + "state": "06", + "county": "115" + }, + { + "DP05_0001E": "20000", + "DP05_0019E": "4568", + "DP05_0019PE": "22.8", + "state": "05", + "county": "003" + }, + { + "DP05_0001E": "41673", + "DP05_0019E": "7266", + "DP05_0019PE": "17.4", + "state": "05", + "county": "005" + }, + { + "DP05_0001E": "37525", + "DP05_0019E": "8523", + "DP05_0019PE": "22.7", + "state": "05", + "county": "009" + }, + { + "DP05_0001E": "5160", + "DP05_0019E": "966", + "DP05_0019PE": "18.7", + "state": "05", + "county": "013" + }, + { + "DP05_0001E": "28062", + "DP05_0019E": "6144", + "DP05_0019PE": "21.9", + "state": "05", + "county": "015" + }, + { + "DP05_0001E": "22341", + "DP05_0019E": "4240", + "DP05_0019PE": "19.0", + "state": "05", + "county": "019" + }, + { + "DP05_0001E": "14710", + "DP05_0019E": "3156", + "DP05_0019PE": "21.5", + "state": "05", + "county": "021" + }, + { + "DP05_0001E": "8063", + "DP05_0019E": "1825", + "DP05_0019PE": "22.6", + "state": "05", + "county": "025" + }, + { + "DP05_0001E": "23620", + "DP05_0019E": "4893", + "DP05_0019PE": "20.7", + "state": "05", + "county": "027" + }, + { + "DP05_0001E": "109081", + "DP05_0019E": "26962", + "DP05_0019PE": "24.7", + "state": "05", + "county": "031" + }, + { + "DP05_0001E": "48381", + "DP05_0019E": "13177", + "DP05_0019PE": "27.2", + "state": "05", + "county": "035" + }, + { + "DP05_0001E": "16576", + "DP05_0019E": "3950", + "DP05_0019PE": "23.8", + "state": "05", + "county": "037" + }, + { + "DP05_0001E": "11538", + "DP05_0019E": "2962", + "DP05_0019PE": "25.7", + "state": "05", + "county": "041" + }, + { + "DP05_0001E": "18263", + "DP05_0019E": "3972", + "DP05_0019PE": "21.7", + "state": "05", + "county": "043" + }, + { + "DP05_0001E": "17785", + "DP05_0019E": "4072", + "DP05_0019PE": "22.9", + "state": "05", + "county": "047" + }, + { + "DP05_0001E": "12301", + "DP05_0019E": "2553", + "DP05_0019PE": "20.8", + "state": "05", + "county": "049" + }, + { + "DP05_0001E": "18229", + "DP05_0019E": "4094", + "DP05_0019PE": "22.5", + "state": "05", + "county": "053" + }, + { + "DP05_0001E": "21695", + "DP05_0019E": "5511", + "DP05_0019PE": "25.4", + "state": "05", + "county": "057" + }, + { + "DP05_0001E": "33667", + "DP05_0019E": "7177", + "DP05_0019PE": "21.3", + "state": "05", + "county": "059" + }, + { + "DP05_0001E": "37585", + "DP05_0019E": "9008", + "DP05_0019PE": "24.0", + "state": "05", + "county": "063" + }, + { + "DP05_0001E": "13596", + "DP05_0019E": "2370", + "DP05_0019PE": "17.4", + "state": "05", + "county": "065" + }, + { + "DP05_0001E": "14395", + "DP05_0019E": "2983", + "DP05_0019PE": "20.7", + "state": "06", + "county": "051" + }, + { + "DP05_0001E": "68123", + "DP05_0019E": "14968", + "DP05_0019PE": "22.0", + "state": "05", + "county": "069" + }, + { + "DP05_0001E": "26475", + "DP05_0019E": "6438", + "DP05_0019PE": "24.3", + "state": "05", + "county": "071" + }, + { + "DP05_0001E": "16511", + "DP05_0019E": "3626", + "DP05_0019PE": "22.0", + "state": "05", + "county": "075" + }, + { + "DP05_0001E": "13278", + "DP05_0019E": "2228", + "DP05_0019PE": "16.8", + "state": "05", + "county": "079" + }, + { + "DP05_0001E": "12345", + "DP05_0019E": "2745", + "DP05_0019PE": "22.2", + "state": "05", + "county": "081" + }, + { + "DP05_0001E": "73163", + "DP05_0019E": "18762", + "DP05_0019PE": "25.6", + "state": "05", + "county": "085" + }, + { + "DP05_0001E": "16393", + "DP05_0019E": "3789", + "DP05_0019PE": "23.1", + "state": "05", + "county": "087" + }, + { + "DP05_0001E": "43515", + "DP05_0019E": "10325", + "DP05_0019PE": "23.7", + "state": "05", + "county": "091" + }, + { + "DP05_0001E": "6879", + "DP05_0019E": "1443", + "DP05_0019PE": "21.0", + "state": "05", + "county": "095" + }, + { + "DP05_0001E": "8964", + "DP05_0019E": "1662", + "DP05_0019PE": "18.5", + "state": "05", + "county": "097" + }, + { + "DP05_0001E": "16282", + "DP05_0019E": "3828", + "DP05_0019PE": "23.5", + "state": "29", + "county": "013" + }, + { + "DP05_0001E": "19305", + "DP05_0019E": "3344", + "DP05_0019PE": "17.3", + "state": "29", + "county": "015" + }, + { + "DP05_0001E": "12181", + "DP05_0019E": "2642", + "DP05_0019PE": "21.7", + "state": "29", + "county": "017" + }, + { + "DP05_0001E": "179704", + "DP05_0019E": "36546", + "DP05_0019PE": "20.3", + "state": "29", + "county": "019" + }, + { + "DP05_0001E": "87904", + "DP05_0019E": "19798", + "DP05_0019PE": "22.5", + "state": "29", + "county": "021" + }, + { + "DP05_0001E": "42570", + "DP05_0019E": "10071", + "DP05_0019PE": "23.7", + "state": "29", + "county": "023" + }, + { + "DP05_0001E": "9052", + "DP05_0019E": "2132", + "DP05_0019PE": "23.6", + "state": "29", + "county": "025" + }, + { + "DP05_0001E": "44944", + "DP05_0019E": "9540", + "DP05_0019PE": "21.2", + "state": "29", + "county": "027" + }, + { + "DP05_0001E": "45823", + "DP05_0019E": "8096", + "DP05_0019PE": "17.7", + "state": "29", + "county": "029" + }, + { + "DP05_0001E": "78834", + "DP05_0019E": "16782", + "DP05_0019PE": "21.3", + "state": "29", + "county": "031" + }, + { + "DP05_0001E": "8723", + "DP05_0019E": "1937", + "DP05_0019PE": "22.2", + "state": "29", + "county": "033" + }, + { + "DP05_0001E": "6085", + "DP05_0019E": "1481", + "DP05_0019PE": "24.3", + "state": "29", + "county": "035" + }, + { + "DP05_0001E": "14144", + "DP05_0019E": "3440", + "DP05_0019PE": "24.3", + "state": "29", + "county": "039" + }, + { + "DP05_0001E": "7449", + "DP05_0019E": "1693", + "DP05_0019PE": "22.7", + "state": "29", + "county": "041" + }, + { + "DP05_0001E": "6783", + "DP05_0019E": "1550", + "DP05_0019PE": "22.9", + "state": "29", + "county": "045" + }, + { + "DP05_0001E": "246480", + "DP05_0019E": "59453", + "DP05_0019PE": "24.1", + "state": "29", + "county": "047" + }, + { + "DP05_0001E": "76630", + "DP05_0019E": "17155", + "DP05_0019PE": "22.4", + "state": "29", + "county": "051" + }, + { + "DP05_0001E": "17522", + "DP05_0019E": "3839", + "DP05_0019PE": "21.9", + "state": "29", + "county": "053" + }, + { + "DP05_0001E": "7571", + "DP05_0019E": "1554", + "DP05_0019PE": "20.5", + "state": "29", + "county": "057" + }, + { + "DP05_0001E": "16841", + "DP05_0019E": "3992", + "DP05_0019PE": "23.7", + "state": "29", + "county": "059" + }, + { + "DP05_0001E": "11872", + "DP05_0019E": "2048", + "DP05_0019PE": "17.3", + "state": "29", + "county": "063" + }, + { + "DP05_0001E": "15518", + "DP05_0019E": "3466", + "DP05_0019PE": "22.3", + "state": "29", + "county": "065" + }, + { + "DP05_0001E": "29657", + "DP05_0019E": "7600", + "DP05_0019PE": "25.6", + "state": "29", + "county": "069" + }, + { + "DP05_0001E": "103629", + "DP05_0019E": "23769", + "DP05_0019PE": "22.9", + "state": "29", + "county": "071" + }, + { + "DP05_0001E": "6576", + "DP05_0019E": "1672", + "DP05_0019PE": "25.4", + "state": "29", + "county": "075" + }, + { + "DP05_0001E": "291574", + "DP05_0019E": "60637", + "DP05_0019PE": "20.8", + "state": "29", + "county": "077" + }, + { + "DP05_0001E": "8427", + "DP05_0019E": "2062", + "DP05_0019PE": "24.5", + "state": "29", + "county": "081" + }, + { + "DP05_0001E": "21854", + "DP05_0019E": "4822", + "DP05_0019PE": "22.1", + "state": "29", + "county": "083" + }, + { + "DP05_0001E": "4374", + "DP05_0019E": "889", + "DP05_0019PE": "20.3", + "state": "29", + "county": "087" + }, + { + "DP05_0001E": "10022", + "DP05_0019E": "2153", + "DP05_0019PE": "21.5", + "state": "29", + "county": "089" + }, + { + "DP05_0001E": "10150", + "DP05_0019E": "2111", + "DP05_0019PE": "20.8", + "state": "29", + "county": "093" + }, + { + "DP05_0001E": "700733", + "DP05_0019E": "165211", + "DP05_0019PE": "23.6", + "state": "29", + "county": "095" + }, + { + "DP05_0001E": "224777", + "DP05_0019E": "52094", + "DP05_0019PE": "23.2", + "state": "29", + "county": "099" + }, + { + "DP05_0001E": "3948", + "DP05_0019E": "941", + "DP05_0019PE": "23.8", + "state": "29", + "county": "103" + }, + { + "DP05_0001E": "35680", + "DP05_0019E": "8824", + "DP05_0019PE": "24.7", + "state": "29", + "county": "105" + }, + { + "DP05_0001E": "38241", + "DP05_0019E": "9716", + "DP05_0019PE": "25.4", + "state": "29", + "county": "109" + }, + { + "DP05_0001E": "9898", + "DP05_0019E": "2239", + "DP05_0019PE": "22.6", + "state": "29", + "county": "111" + }, + { + "DP05_0001E": "12004", + "DP05_0019E": "2829", + "DP05_0019PE": "23.6", + "state": "29", + "county": "115" + }, + { + "DP05_0001E": "14969", + "DP05_0019E": "3170", + "DP05_0019PE": "21.2", + "state": "29", + "county": "117" + }, + { + "DP05_0001E": "15154", + "DP05_0019E": "3551", + "DP05_0019PE": "23.4", + "state": "29", + "county": "121" + }, + { + "DP05_0001E": "12176", + "DP05_0019E": "2840", + "DP05_0019PE": "23.3", + "state": "29", + "county": "123" + }, + { + "DP05_0001E": "28572", + "DP05_0019E": "6740", + "DP05_0019PE": "23.6", + "state": "29", + "county": "127" + }, + { + "DP05_0001E": "3623", + "DP05_0019E": "877", + "DP05_0019PE": "24.2", + "state": "29", + "county": "129" + }, + { + "DP05_0001E": "13328", + "DP05_0019E": "2792", + "DP05_0019PE": "20.9", + "state": "29", + "county": "133" + }, + { + "DP05_0001E": "15907", + "DP05_0019E": "3967", + "DP05_0019PE": "24.9", + "state": "29", + "county": "135" + }, + { + "DP05_0001E": "11414", + "DP05_0019E": "2512", + "DP05_0019PE": "22.0", + "state": "29", + "county": "139" + }, + { + "DP05_0001E": "20438", + "DP05_0019E": "4670", + "DP05_0019PE": "22.8", + "state": "29", + "county": "141" + }, + { + "DP05_0001E": "58288", + "DP05_0019E": "13930", + "DP05_0019PE": "23.9", + "state": "29", + "county": "145" + }, + { + "DP05_0001E": "22199", + "DP05_0019E": "3525", + "DP05_0019PE": "15.9", + "state": "29", + "county": "147" + }, + { + "DP05_0001E": "13613", + "DP05_0019E": "3127", + "DP05_0019PE": "23.0", + "state": "29", + "county": "151" + }, + { + "DP05_0001E": "9138", + "DP05_0019E": "1744", + "DP05_0019PE": "19.1", + "state": "29", + "county": "153" + }, + { + "DP05_0001E": "19227", + "DP05_0019E": "4508", + "DP05_0019PE": "23.4", + "state": "29", + "county": "157" + }, + { + "DP05_0001E": "42421", + "DP05_0019E": "10518", + "DP05_0019PE": "24.8", + "state": "29", + "county": "159" + }, + { + "DP05_0001E": "44587", + "DP05_0019E": "9381", + "DP05_0019PE": "21.0", + "state": "29", + "county": "161" + }, + { + "DP05_0001E": "18158", + "DP05_0019E": "4095", + "DP05_0019PE": "22.6", + "state": "29", + "county": "163" + }, + { + "DP05_0001E": "102848", + "DP05_0019E": "24404", + "DP05_0019PE": "23.7", + "state": "29", + "county": "165" + }, + { + "DP05_0001E": "32031", + "DP05_0019E": "7373", + "DP05_0019PE": "23.0", + "state": "29", + "county": "167" + }, + { + "DP05_0001E": "52359", + "DP05_0019E": "11473", + "DP05_0019PE": "21.9", + "state": "29", + "county": "169" + }, + { + "DP05_0001E": "4746", + "DP05_0019E": "1089", + "DP05_0019PE": "22.9", + "state": "29", + "county": "171" + }, + { + "DP05_0001E": "22728", + "DP05_0019E": "4098", + "DP05_0019PE": "18.0", + "state": "51", + "county": "163" + }, + { + "DP05_0001E": "26937", + "DP05_0019E": "5181", + "DP05_0019PE": "19.2", + "state": "51", + "county": "167" + }, + { + "DP05_0001E": "21761", + "DP05_0019E": "3986", + "DP05_0019PE": "18.3", + "state": "51", + "county": "169" + }, + { + "DP05_0001E": "30539", + "DP05_0019E": "5891", + "DP05_0019PE": "19.3", + "state": "51", + "county": "173" + }, + { + "DP05_0001E": "17829", + "DP05_0019E": "3472", + "DP05_0019PE": "19.5", + "state": "51", + "county": "175" + }, + { + "DP05_0001E": "150185", + "DP05_0019E": "39083", + "DP05_0019PE": "26.0", + "state": "51", + "county": "179" + }, + { + "DP05_0001E": "6459", + "DP05_0019E": "1146", + "DP05_0019PE": "17.7", + "state": "51", + "county": "181" + }, + { + "DP05_0001E": "41201", + "DP05_0019E": "7992", + "DP05_0019PE": "19.4", + "state": "51", + "county": "185" + }, + { + "DP05_0001E": "39888", + "DP05_0019E": "8701", + "DP05_0019PE": "21.8", + "state": "51", + "county": "187" + }, + { + "DP05_0001E": "17873", + "DP05_0019E": "3368", + "DP05_0019PE": "18.8", + "state": "51", + "county": "193" + }, + { + "DP05_0001E": "38032", + "DP05_0019E": "7270", + "DP05_0019PE": "19.1", + "state": "51", + "county": "195" + }, + { + "DP05_0001E": "68389", + "DP05_0019E": "16176", + "DP05_0019PE": "23.7", + "state": "51", + "county": "199" + }, + { + "DP05_0001E": "158309", + "DP05_0019E": "29051", + "DP05_0019PE": "18.4", + "state": "51", + "county": "510" + }, + { + "DP05_0001E": "6477", + "DP05_0019E": "1338", + "DP05_0019PE": "20.7", + "state": "51", + "county": "530" + }, + { + "DP05_0001E": "47217", + "DP05_0019E": "7321", + "DP05_0019PE": "15.5", + "state": "51", + "county": "540" + }, + { + "DP05_0001E": "17283", + "DP05_0019E": "3935", + "DP05_0019PE": "22.8", + "state": "51", + "county": "570" + }, + { + "DP05_0001E": "5653", + "DP05_0019E": "1246", + "DP05_0019PE": "22.0", + "state": "51", + "county": "580" + }, + { + "DP05_0001E": "40668", + "DP05_0019E": "8899", + "DP05_0019PE": "21.9", + "state": "51", + "county": "590" + }, + { + "DP05_0001E": "23312", + "DP05_0019E": "5056", + "DP05_0019PE": "21.7", + "state": "51", + "county": "600" + }, + { + "DP05_0001E": "14309", + "DP05_0019E": "3501", + "DP05_0019PE": "24.5", + "state": "51", + "county": "610" + }, + { + "DP05_0001E": "29059", + "DP05_0019E": "6047", + "DP05_0019PE": "20.8", + "state": "51", + "county": "630" + }, + { + "DP05_0001E": "6402", + "DP05_0019E": "1639", + "DP05_0019PE": "25.6", + "state": "51", + "county": "640" + }, + { + "DP05_0001E": "53558", + "DP05_0019E": "8758", + "DP05_0019PE": "16.4", + "state": "51", + "county": "660" + }, + { + "DP05_0001E": "22500", + "DP05_0019E": "5777", + "DP05_0019PE": "25.7", + "state": "51", + "county": "670" + }, + { + "DP05_0001E": "80970", + "DP05_0019E": "15365", + "DP05_0019PE": "19.0", + "state": "51", + "county": "680" + }, + { + "DP05_0001E": "41038", + "DP05_0019E": "10940", + "DP05_0019PE": "26.7", + "state": "51", + "county": "683" + }, + { + "DP05_0001E": "12646", + "DP05_0019E": "3063", + "DP05_0019PE": "24.2", + "state": "51", + "county": "690" + }, + { + "DP05_0001E": "179582", + "DP05_0019E": "41668", + "DP05_0019PE": "23.2", + "state": "51", + "county": "700" + }, + { + "DP05_0001E": "3969", + "DP05_0019E": "634", + "DP05_0019PE": "16.0", + "state": "51", + "county": "720" + }, + { + "DP05_0001E": "30791", + "DP05_0019E": "6466", + "DP05_0019PE": "21.0", + "state": "51", + "county": "730" + }, + { + "DP05_0001E": "94961", + "DP05_0019E": "22160", + "DP05_0019PE": "23.3", + "state": "51", + "county": "740" + }, + { + "DP05_0001E": "17833", + "DP05_0019E": "1991", + "DP05_0019PE": "11.2", + "state": "51", + "county": "750" + }, + { + "DP05_0001E": "99122", + "DP05_0019E": "21988", + "DP05_0019PE": "22.2", + "state": "51", + "county": "770" + }, + { + "DP05_0001E": "25290", + "DP05_0019E": "4714", + "DP05_0019PE": "18.6", + "state": "51", + "county": "775" + }, + { + "DP05_0001E": "24660", + "DP05_0019E": "4683", + "DP05_0019PE": "19.0", + "state": "51", + "county": "790" + }, + { + "DP05_0001E": "91383", + "DP05_0019E": "22025", + "DP05_0019PE": "24.1", + "state": "51", + "county": "800" + }, + { + "DP05_0001E": "450882", + "DP05_0019E": "99896", + "DP05_0019PE": "22.2", + "state": "51", + "county": "810" + }, + { + "DP05_0001E": "22300", + "DP05_0019E": "5107", + "DP05_0019PE": "22.9", + "state": "51", + "county": "820" + }, + { + "DP05_0001E": "15034", + "DP05_0019E": "1661", + "DP05_0019PE": "11.0", + "state": "51", + "county": "830" + }, + { + "DP05_0001E": "27912", + "DP05_0019E": "6358", + "DP05_0019PE": "22.8", + "state": "51", + "county": "840" + }, + { + "DP05_0001E": "19702", + "DP05_0019E": "6943", + "DP05_0019PE": "35.2", + "state": "53", + "county": "001" + }, + { + "DP05_0001E": "22636", + "DP05_0019E": "4619", + "DP05_0019PE": "20.4", + "state": "53", + "county": "003" + }, + { + "DP05_0001E": "200715", + "DP05_0019E": "53388", + "DP05_0019PE": "26.6", + "state": "53", + "county": "005" + }, + { + "DP05_0001E": "76653", + "DP05_0019E": "18004", + "DP05_0019PE": "23.5", + "state": "53", + "county": "007" + }, + { + "DP05_0001E": "76482", + "DP05_0019E": "12970", + "DP05_0019PE": "17.0", + "state": "53", + "county": "009" + }, + { + "DP05_0001E": "481950", + "DP05_0019E": "115360", + "DP05_0019PE": "23.9", + "state": "53", + "county": "011" + }, + { + "DP05_0001E": "4024", + "DP05_0019E": "691", + "DP05_0019PE": "17.2", + "state": "53", + "county": "013" + }, + { + "DP05_0001E": "108399", + "DP05_0019E": "24675", + "DP05_0019PE": "22.8", + "state": "53", + "county": "015" + }, + { + "DP05_0001E": "42520", + "DP05_0019E": "10964", + "DP05_0019PE": "25.8", + "state": "53", + "county": "017" + }, + { + "DP05_0001E": "7643", + "DP05_0019E": "1240", + "DP05_0019PE": "16.2", + "state": "53", + "county": "019" + }, + { + "DP05_0001E": "93681", + "DP05_0019E": "30430", + "DP05_0019PE": "32.5", + "state": "53", + "county": "021" + }, + { + "DP05_0001E": "2258", + "DP05_0019E": "452", + "DP05_0019PE": "20.0", + "state": "53", + "county": "023" + }, + { + "DP05_0001E": "96648", + "DP05_0019E": "28520", + "DP05_0019PE": "29.5", + "state": "53", + "county": "025" + }, + { + "DP05_0001E": "73769", + "DP05_0019E": "14957", + "DP05_0019PE": "20.3", + "state": "53", + "county": "027" + }, + { + "DP05_0001E": "84187", + "DP05_0019E": "15275", + "DP05_0019PE": "18.1", + "state": "53", + "county": "029" + }, + { + "DP05_0001E": "2225064", + "DP05_0019E": "449242", + "DP05_0019PE": "20.2", + "state": "53", + "county": "033" + }, + { + "DP05_0001E": "268945", + "DP05_0019E": "54803", + "DP05_0019PE": "20.4", + "state": "53", + "county": "035" + }, + { + "DP05_0001E": "47097", + "DP05_0019E": "7970", + "DP05_0019PE": "16.9", + "state": "53", + "county": "037" + }, + { + "DP05_0001E": "79430", + "DP05_0019E": "17124", + "DP05_0019PE": "21.6", + "state": "53", + "county": "041" + }, + { + "DP05_0001E": "317665", + "DP05_0019E": "66028", + "DP05_0019PE": "20.8", + "state": "37", + "county": "063" + }, + { + "DP05_0001E": "68027", + "DP05_0019E": "14957", + "DP05_0019PE": "22.0", + "state": "37", + "county": "069" + }, + { + "DP05_0001E": "8501", + "DP05_0019E": "1703", + "DP05_0019PE": "20.0", + "state": "37", + "county": "075" + }, + { + "DP05_0001E": "532956", + "DP05_0019E": "118602", + "DP05_0019PE": "22.3", + "state": "37", + "county": "081" + }, + { + "DP05_0001E": "61862", + "DP05_0019E": "11204", + "DP05_0019PE": "18.1", + "state": "37", + "county": "087" + }, + { + "DP05_0001E": "5089", + "DP05_0019E": "1082", + "DP05_0019PE": "21.3", + "state": "37", + "county": "095" + }, + { + "DP05_0001E": "203308", + "DP05_0019E": "51779", + "DP05_0019PE": "25.5", + "state": "37", + "county": "101" + }, + { + "DP05_0001E": "56350", + "DP05_0019E": "12760", + "DP05_0019PE": "22.6", + "state": "37", + "county": "107" + }, + { + "DP05_0001E": "35172", + "DP05_0019E": "6301", + "DP05_0019PE": "17.9", + "state": "37", + "county": "113" + }, + { + "DP05_0001E": "1095170", + "DP05_0019E": "257739", + "DP05_0019PE": "23.5", + "state": "37", + "county": "119" + }, + { + "DP05_0001E": "62050", + "DP05_0019E": "13464", + "DP05_0019PE": "21.7", + "state": "37", + "county": "167" + }, + { + "DP05_0001E": "14241", + "DP05_0019E": "3265", + "DP05_0019PE": "22.9", + "state": "37", + "county": "173" + }, + { + "DP05_0001E": "235767", + "DP05_0019E": "63318", + "DP05_0019PE": "26.9", + "state": "37", + "county": "179" + }, + { + "DP05_0001E": "19746", + "DP05_0019E": "3570", + "DP05_0019PE": "18.1", + "state": "37", + "county": "185" + }, + { + "DP05_0001E": "123785", + "DP05_0019E": "29377", + "DP05_0019PE": "23.7", + "state": "37", + "county": "191" + }, + { + "DP05_0001E": "37589", + "DP05_0019E": "7873", + "DP05_0019PE": "20.9", + "state": "37", + "county": "197" + }, + { + "DP05_0001E": "931275", + "DP05_0019E": "197484", + "DP05_0019PE": "21.2", + "state": "34", + "county": "003" + }, + { + "DP05_0001E": "92701", + "DP05_0019E": "16255", + "DP05_0019PE": "17.5", + "state": "34", + "county": "009" + }, + { + "DP05_0001E": "291745", + "DP05_0019E": "63832", + "DP05_0019PE": "21.9", + "state": "34", + "county": "015" + }, + { + "DP05_0001E": "368085", + "DP05_0019E": "78499", + "DP05_0019PE": "21.3", + "state": "34", + "county": "021" + }, + { + "DP05_0001E": "492715", + "DP05_0019E": "104116", + "DP05_0019PE": "21.1", + "state": "34", + "county": "027" + }, + { + "DP05_0001E": "62754", + "DP05_0019E": "13494", + "DP05_0019PE": "21.5", + "state": "34", + "county": "033" + }, + { + "DP05_0001E": "555208", + "DP05_0019E": "130376", + "DP05_0019PE": "23.5", + "state": "34", + "county": "039" + }, + { + "DP05_0001E": "375520", + "DP05_0019E": "96482", + "DP05_0019PE": "25.7", + "state": "18", + "county": "003" + }, + { + "DP05_0001E": "11926", + "DP05_0019E": "2618", + "DP05_0019PE": "22.0", + "state": "18", + "county": "009" + }, + { + "DP05_0001E": "20137", + "DP05_0019E": "4475", + "DP05_0019PE": "22.2", + "state": "18", + "county": "015" + }, + { + "DP05_0001E": "26231", + "DP05_0019E": "6097", + "DP05_0019PE": "23.2", + "state": "18", + "county": "021" + }, + { + "DP05_0001E": "33277", + "DP05_0019E": "9758", + "DP05_0019PE": "29.3", + "state": "18", + "county": "027" + }, + { + "DP05_0001E": "43193", + "DP05_0019E": "10473", + "DP05_0019PE": "24.2", + "state": "18", + "county": "033" + }, + { + "DP05_0001E": "205184", + "DP05_0019E": "56611", + "DP05_0019PE": "27.6", + "state": "18", + "county": "039" + }, + { + "DP05_0001E": "79156", + "DP05_0019E": "18951", + "DP05_0019PE": "23.9", + "state": "18", + "county": "085" + }, + { + "DP05_0001E": "110026", + "DP05_0019E": "23666", + "DP05_0019PE": "21.5", + "state": "18", + "county": "091" + }, + { + "DP05_0001E": "957337", + "DP05_0019E": "236265", + "DP05_0019PE": "24.7", + "state": "18", + "county": "097" + }, + { + "DP05_0001E": "35684", + "DP05_0019E": "7563", + "DP05_0019PE": "21.2", + "state": "18", + "county": "103" + }, + { + "DP05_0001E": "70141", + "DP05_0019E": "15847", + "DP05_0019PE": "22.6", + "state": "18", + "county": "109" + }, + { + "DP05_0001E": "5890", + "DP05_0019E": "1129", + "DP05_0019PE": "19.2", + "state": "18", + "county": "115" + }, + { + "DP05_0001E": "16912", + "DP05_0019E": "3756", + "DP05_0019PE": "22.2", + "state": "18", + "county": "121" + }, + { + "DP05_0001E": "169482", + "DP05_0019E": "37370", + "DP05_0019PE": "22.0", + "state": "18", + "county": "127" + }, + { + "DP05_0001E": "37419", + "DP05_0019E": "7212", + "DP05_0019PE": "19.3", + "state": "18", + "county": "133" + }, + { + "DP05_0001E": "16632", + "DP05_0019E": "3695", + "DP05_0019PE": "22.2", + "state": "18", + "county": "139" + }, + { + "DP05_0001E": "23785", + "DP05_0019E": "5249", + "DP05_0019PE": "22.1", + "state": "18", + "county": "143" + }, + { + "DP05_0001E": "22996", + "DP05_0019E": "5435", + "DP05_0019PE": "23.6", + "state": "18", + "county": "149" + }, + { + "DP05_0001E": "10727", + "DP05_0019E": "2656", + "DP05_0019PE": "24.8", + "state": "18", + "county": "155" + }, + { + "DP05_0001E": "7140", + "DP05_0019E": "1494", + "DP05_0019PE": "20.9", + "state": "18", + "county": "161" + }, + { + "DP05_0001E": "107305", + "DP05_0019E": "21890", + "DP05_0019PE": "20.4", + "state": "18", + "county": "167" + }, + { + "DP05_0001E": "62608", + "DP05_0019E": "14940", + "DP05_0019PE": "23.9", + "state": "18", + "county": "173" + }, + { + "DP05_0001E": "28010", + "DP05_0019E": "6955", + "DP05_0019PE": "24.8", + "state": "18", + "county": "179" + }, + { + "DP05_0001E": "213505", + "DP05_0019E": "32099", + "DP05_0019PE": "15.0", + "state": "25", + "county": "001" + }, + { + "DP05_0001E": "17430", + "DP05_0019E": "2926", + "DP05_0019PE": "16.8", + "state": "25", + "county": "007" + }, + { + "DP05_0001E": "466647", + "DP05_0019E": "100446", + "DP05_0019PE": "21.5", + "state": "25", + "county": "013" + }, + { + "DP05_0001E": "11212", + "DP05_0019E": "1781", + "DP05_0019PE": "15.9", + "state": "25", + "county": "019" + }, + { + "DP05_0001E": "51387", + "DP05_0019E": "12185", + "DP05_0019PE": "23.7", + "state": "39", + "county": "037" + }, + { + "DP05_0001E": "74419", + "DP05_0019E": "15131", + "DP05_0019PE": "20.3", + "state": "39", + "county": "043" + }, + { + "DP05_0001E": "1304715", + "DP05_0019E": "303936", + "DP05_0019PE": "23.3", + "state": "39", + "county": "049" + }, + { + "DP05_0001E": "93657", + "DP05_0019E": "21440", + "DP05_0019PE": "22.9", + "state": "39", + "county": "055" + }, + { + "DP05_0001E": "815790", + "DP05_0019E": "187494", + "DP05_0019PE": "23.0", + "state": "39", + "county": "061" + }, + { + "DP05_0001E": "15132", + "DP05_0019E": "3151", + "DP05_0019PE": "20.8", + "state": "39", + "county": "067" + }, + { + "DP05_0001E": "43080", + "DP05_0019E": "10281", + "DP05_0019PE": "23.9", + "state": "39", + "county": "071" + }, + { + "DP05_0001E": "58271", + "DP05_0019E": "14019", + "DP05_0019PE": "24.1", + "state": "39", + "county": "077" + }, + { + "DP05_0001E": "8249", + "DP05_0019E": "1867", + "DP05_0019PE": "22.6", + "state": "05", + "county": "099" + }, + { + "DP05_0001E": "7753", + "DP05_0019E": "1531", + "DP05_0019PE": "19.7", + "state": "05", + "county": "101" + }, + { + "DP05_0001E": "23597", + "DP05_0019E": "5299", + "DP05_0019PE": "22.5", + "state": "05", + "county": "103" + }, + { + "DP05_0001E": "10342", + "DP05_0019E": "2282", + "DP05_0019PE": "22.1", + "state": "05", + "county": "105" + }, + { + "DP05_0001E": "18151", + "DP05_0019E": "4656", + "DP05_0019PE": "25.7", + "state": "05", + "county": "107" + }, + { + "DP05_0001E": "10714", + "DP05_0019E": "2304", + "DP05_0019PE": "21.5", + "state": "05", + "county": "109" + }, + { + "DP05_0001E": "23747", + "DP05_0019E": "5668", + "DP05_0019PE": "23.9", + "state": "05", + "county": "111" + }, + { + "DP05_0001E": "19999", + "DP05_0019E": "4590", + "DP05_0019PE": "23.0", + "state": "05", + "county": "113" + }, + { + "DP05_0001E": "63926", + "DP05_0019E": "14531", + "DP05_0019PE": "22.7", + "state": "05", + "county": "115" + }, + { + "DP05_0001E": "8138", + "DP05_0019E": "1674", + "DP05_0019PE": "20.6", + "state": "05", + "county": "117" + }, + { + "DP05_0001E": "393078", + "DP05_0019E": "91326", + "DP05_0019PE": "23.2", + "state": "05", + "county": "119" + }, + { + "DP05_0001E": "17934", + "DP05_0019E": "4230", + "DP05_0019PE": "23.6", + "state": "05", + "county": "121" + }, + { + "DP05_0001E": "25477", + "DP05_0019E": "5478", + "DP05_0019PE": "21.5", + "state": "05", + "county": "123" + }, + { + "DP05_0001E": "120990", + "DP05_0019E": "28163", + "DP05_0019PE": "23.3", + "state": "05", + "county": "125" + }, + { + "DP05_0001E": "10269", + "DP05_0019E": "2430", + "DP05_0019PE": "23.7", + "state": "05", + "county": "127" + }, + { + "DP05_0001E": "7898", + "DP05_0019E": "1555", + "DP05_0019PE": "19.7", + "state": "05", + "county": "129" + }, + { + "DP05_0001E": "127670", + "DP05_0019E": "30604", + "DP05_0019PE": "24.0", + "state": "05", + "county": "131" + }, + { + "DP05_0001E": "16947", + "DP05_0019E": "4835", + "DP05_0019PE": "28.5", + "state": "05", + "county": "133" + }, + { + "DP05_0001E": "17217", + "DP05_0019E": "3560", + "DP05_0019PE": "20.7", + "state": "05", + "county": "135" + }, + { + "DP05_0001E": "12582", + "DP05_0019E": "2482", + "DP05_0019PE": "19.7", + "state": "05", + "county": "137" + }, + { + "DP05_0001E": "39089", + "DP05_0019E": "9410", + "DP05_0019PE": "24.1", + "state": "05", + "county": "139" + }, + { + "DP05_0001E": "236198", + "DP05_0019E": "57464", + "DP05_0019PE": "24.3", + "state": "05", + "county": "143" + }, + { + "DP05_0001E": "78725", + "DP05_0019E": "18389", + "DP05_0019PE": "23.4", + "state": "05", + "county": "145" + }, + { + "DP05_0001E": "21425", + "DP05_0019E": "5145", + "DP05_0019PE": "24.0", + "state": "05", + "county": "149" + }, + { + "DP05_0001E": "892153", + "DP05_0019E": "187444", + "DP05_0019PE": "21.0", + "state": "09", + "county": "003" + }, + { + "DP05_0001E": "181143", + "DP05_0019E": "32925", + "DP05_0019PE": "18.2", + "state": "09", + "county": "005" + }, + { + "DP05_0001E": "855733", + "DP05_0019E": "173017", + "DP05_0019PE": "20.2", + "state": "09", + "county": "009" + }, + { + "DP05_0001E": "266868", + "DP05_0019E": "52007", + "DP05_0019PE": "19.5", + "state": "09", + "county": "011" + }, + { + "DP05_0001E": "116657", + "DP05_0019E": "23130", + "DP05_0019PE": "19.8", + "state": "09", + "county": "015" + }, + { + "DP05_0001E": "701974", + "DP05_0019E": "126048", + "DP05_0019PE": "18.0", + "state": "11", + "county": "001" + }, + { + "DP05_0001E": "5708", + "DP05_0019E": "1017", + "DP05_0019PE": "17.8", + "state": "02", + "county": "016" + }, + { + "DP05_0001E": "292090", + "DP05_0019E": "70908", + "DP05_0019PE": "24.3", + "state": "02", + "county": "020" + }, + { + "DP05_0001E": "739", + "DP05_0019E": "143", + "DP05_0019PE": "19.4", + "state": "02", + "county": "060" + }, + { + "DP05_0001E": "6495", + "DP05_0019E": "1387", + "DP05_0019PE": "21.4", + "state": "02", + "county": "063" + }, + { + "DP05_0001E": "2502", + "DP05_0019E": "260", + "DP05_0019PE": "10.4", + "state": "02", + "county": "068" + }, + { + "DP05_0001E": "4934", + "DP05_0019E": "1542", + "DP05_0019PE": "31.3", + "state": "02", + "county": "070" + }, + { + "DP05_0001E": "2547", + "DP05_0019E": "859", + "DP05_0019PE": "33.7", + "state": "02", + "county": "100" + }, + { + "DP05_0001E": "2135", + "DP05_0019E": "277", + "DP05_0019PE": "13.0", + "state": "02", + "county": "105" + }, + { + "DP05_0001E": "58809", + "DP05_0019E": "13224", + "DP05_0019PE": "22.5", + "state": "02", + "county": "122" + }, + { + "DP05_0001E": "13833", + "DP05_0019E": "3000", + "DP05_0019PE": "21.7", + "state": "02", + "county": "130" + }, + { + "DP05_0001E": "8298", + "DP05_0019E": "3362", + "DP05_0019PE": "40.5", + "state": "02", + "county": "158" + }, + { + "DP05_0001E": "107360", + "DP05_0019E": "28706", + "DP05_0019PE": "26.7", + "state": "02", + "county": "170" + }, + { + "DP05_0001E": "10009", + "DP05_0019E": "3462", + "DP05_0019PE": "34.6", + "state": "02", + "county": "180" + }, + { + "DP05_0001E": "7709", + "DP05_0019E": "2745", + "DP05_0019PE": "35.6", + "state": "02", + "county": "188" + }, + { + "DP05_0001E": "3278", + "DP05_0019E": "559", + "DP05_0019PE": "17.1", + "state": "02", + "county": "195" + }, + { + "DP05_0001E": "8569", + "DP05_0019E": "1825", + "DP05_0019PE": "21.3", + "state": "02", + "county": "220" + }, + { + "DP05_0001E": "1300", + "DP05_0019E": "180", + "DP05_0019PE": "13.8", + "state": "02", + "county": "230" + }, + { + "DP05_0001E": "2510", + "DP05_0019E": "525", + "DP05_0019PE": "20.9", + "state": "02", + "county": "275" + }, + { + "DP05_0001E": "597", + "DP05_0019E": "136", + "DP05_0019PE": "22.8", + "state": "02", + "county": "282" + }, + { + "DP05_0001E": "5305", + "DP05_0019E": "1478", + "DP05_0019PE": "27.9", + "state": "02", + "county": "290" + }, + { + "DP05_0001E": "16153", + "DP05_0019E": "3913", + "DP05_0019PE": "24.2", + "state": "08", + "county": "003" + }, + { + "DP05_0001E": "13588", + "DP05_0019E": "2378", + "DP05_0019PE": "17.5", + "state": "08", + "county": "007" + }, + { + "DP05_0001E": "3570", + "DP05_0019E": "746", + "DP05_0019PE": "20.9", + "state": "08", + "county": "009" + }, + { + "DP05_0001E": "324682", + "DP05_0019E": "61788", + "DP05_0019PE": "19.0", + "state": "08", + "county": "013" + }, + { + "DP05_0001E": "69444", + "DP05_0019E": "15762", + "DP05_0019PE": "22.7", + "state": "08", + "county": "014" + }, + { + "DP05_0001E": "1999", + "DP05_0019E": "607", + "DP05_0019PE": "30.4", + "state": "08", + "county": "017" + }, + { + "DP05_0001E": "8130", + "DP05_0019E": "2103", + "DP05_0019PE": "25.9", + "state": "08", + "county": "021" + }, + { + "DP05_0001E": "3810", + "DP05_0019E": "643", + "DP05_0019PE": "16.9", + "state": "08", + "county": "023" + }, + { + "DP05_0001E": "10258", + "DP05_0019E": "2203", + "DP05_0019PE": "21.5", + "state": "29", + "county": "173" + }, + { + "DP05_0001E": "24769", + "DP05_0019E": "5372", + "DP05_0019PE": "21.7", + "state": "29", + "county": "175" + }, + { + "DP05_0001E": "22900", + "DP05_0019E": "5203", + "DP05_0019PE": "22.7", + "state": "29", + "county": "177" + }, + { + "DP05_0001E": "6274", + "DP05_0019E": "1170", + "DP05_0019PE": "18.6", + "state": "29", + "county": "179" + }, + { + "DP05_0001E": "13484", + "DP05_0019E": "3054", + "DP05_0019PE": "22.6", + "state": "29", + "county": "181" + }, + { + "DP05_0001E": "398472", + "DP05_0019E": "92888", + "DP05_0019PE": "23.3", + "state": "29", + "county": "183" + }, + { + "DP05_0001E": "9455", + "DP05_0019E": "1875", + "DP05_0019PE": "19.8", + "state": "29", + "county": "185" + }, + { + "DP05_0001E": "17887", + "DP05_0019E": "3826", + "DP05_0019PE": "21.4", + "state": "29", + "county": "186" + }, + { + "DP05_0001E": "66653", + "DP05_0019E": "14030", + "DP05_0019PE": "21.0", + "state": "29", + "county": "187" + }, + { + "DP05_0001E": "996179", + "DP05_0019E": "219678", + "DP05_0019PE": "22.1", + "state": "29", + "county": "189" + }, + { + "DP05_0001E": "22932", + "DP05_0019E": "5250", + "DP05_0019PE": "22.9", + "state": "29", + "county": "195" + }, + { + "DP05_0001E": "4550", + "DP05_0019E": "1166", + "DP05_0019PE": "25.6", + "state": "29", + "county": "197" + }, + { + "DP05_0001E": "4923", + "DP05_0019E": "1434", + "DP05_0019PE": "29.1", + "state": "29", + "county": "199" + }, + { + "DP05_0001E": "38538", + "DP05_0019E": "9222", + "DP05_0019PE": "23.9", + "state": "29", + "county": "201" + }, + { + "DP05_0001E": "5975", + "DP05_0019E": "1432", + "DP05_0019PE": "24.0", + "state": "29", + "county": "205" + }, + { + "DP05_0001E": "29255", + "DP05_0019E": "6383", + "DP05_0019PE": "21.8", + "state": "29", + "county": "207" + }, + { + "DP05_0001E": "6163", + "DP05_0019E": "1386", + "DP05_0019PE": "22.5", + "state": "29", + "county": "211" + }, + { + "DP05_0001E": "55563", + "DP05_0019E": "11717", + "DP05_0019PE": "21.1", + "state": "29", + "county": "213" + }, + { + "DP05_0001E": "20560", + "DP05_0019E": "4991", + "DP05_0019PE": "24.3", + "state": "29", + "county": "217" + }, + { + "DP05_0001E": "35090", + "DP05_0019E": "8289", + "DP05_0019PE": "23.6", + "state": "29", + "county": "219" + }, + { + "DP05_0001E": "13058", + "DP05_0019E": "2640", + "DP05_0019PE": "20.2", + "state": "29", + "county": "223" + }, + { + "DP05_0001E": "39127", + "DP05_0019E": "10610", + "DP05_0019PE": "27.1", + "state": "29", + "county": "225" + }, + { + "DP05_0001E": "18256", + "DP05_0019E": "4691", + "DP05_0019PE": "25.7", + "state": "29", + "county": "229" + }, + { + "DP05_0001E": "268105", + "DP05_0019E": "48184", + "DP05_0019PE": "18.0", + "state": "12", + "county": "001" + }, + { + "DP05_0001E": "28679", + "DP05_0019E": "6683", + "DP05_0019PE": "23.3", + "state": "12", + "county": "003" + }, + { + "DP05_0001E": "27723", + "DP05_0019E": "5407", + "DP05_0019PE": "19.5", + "state": "12", + "county": "007" + }, + { + "DP05_0001E": "594001", + "DP05_0019E": "108664", + "DP05_0019PE": "18.3", + "state": "12", + "county": "009" + }, + { + "DP05_0001E": "14324", + "DP05_0019E": "2878", + "DP05_0019PE": "20.1", + "state": "12", + "county": "013" + }, + { + "DP05_0001E": "185926", + "DP05_0019E": "22363", + "DP05_0019PE": "12.0", + "state": "12", + "county": "015" + }, + { + "DP05_0001E": "215294", + "DP05_0019E": "50261", + "DP05_0019PE": "23.3", + "state": "12", + "county": "019" + }, + { + "DP05_0001E": "379345", + "DP05_0019E": "65016", + "DP05_0019PE": "17.1", + "state": "12", + "county": "021" + }, + { + "DP05_0001E": "37371", + "DP05_0019E": "7213", + "DP05_0019PE": "19.3", + "state": "12", + "county": "027" + }, + { + "DP05_0001E": "16740", + "DP05_0019E": "3034", + "DP05_0019PE": "18.1", + "state": "12", + "county": "029" + }, + { + "DP05_0001E": "316691", + "DP05_0019E": "66245", + "DP05_0019PE": "20.9", + "state": "12", + "county": "033" + }, + { + "DP05_0001E": "112854", + "DP05_0019E": "19074", + "DP05_0019PE": "16.9", + "state": "12", + "county": "035" + }, + { + "DP05_0001E": "45787", + "DP05_0019E": "9947", + "DP05_0019PE": "21.7", + "state": "12", + "county": "039" + }, + { + "DP05_0001E": "18245", + "DP05_0019E": "3910", + "DP05_0019PE": "21.4", + "state": "12", + "county": "041" + }, + { + "DP05_0001E": "15073", + "DP05_0019E": "2184", + "DP05_0019PE": "14.5", + "state": "12", + "county": "045" + }, + { + "DP05_0001E": "14397", + "DP05_0019E": "2749", + "DP05_0019PE": "19.1", + "state": "12", + "county": "047" + }, + { + "DP05_0001E": "41472", + "DP05_0019E": "11117", + "DP05_0019PE": "26.8", + "state": "12", + "county": "051" + }, + { + "DP05_0001E": "190700", + "DP05_0019E": "35063", + "DP05_0019PE": "18.4", + "state": "12", + "county": "053" + }, + { + "DP05_0001E": "1451358", + "DP05_0019E": "323648", + "DP05_0019PE": "22.3", + "state": "12", + "county": "057" + }, + { + "DP05_0001E": "19530", + "DP05_0019E": "3914", + "DP05_0019PE": "20.0", + "state": "12", + "county": "059" + }, + { + "DP05_0001E": "47409", + "DP05_0019E": "8771", + "DP05_0019PE": "18.5", + "state": "12", + "county": "063" + }, + { + "DP05_0001E": "14278", + "DP05_0019E": "2317", + "DP05_0019PE": "16.2", + "state": "12", + "county": "065" + }, + { + "DP05_0001E": "356115", + "DP05_0019E": "68284", + "DP05_0019PE": "19.2", + "state": "12", + "county": "069" + }, + { + "DP05_0001E": "756570", + "DP05_0019E": "133226", + "DP05_0019PE": "17.6", + "state": "12", + "county": "071" + }, + { + "DP05_0001E": "40979", + "DP05_0019E": "8003", + "DP05_0019PE": "19.5", + "state": "12", + "county": "075" + }, + { + "DP05_0001E": "18557", + "DP05_0019E": "3398", + "DP05_0019PE": "18.3", + "state": "12", + "county": "079" + }, + { + "DP05_0001E": "393847", + "DP05_0019E": "71955", + "DP05_0019PE": "18.3", + "state": "12", + "county": "081" + }, + { + "DP05_0001E": "160420", + "DP05_0019E": "26132", + "DP05_0019PE": "16.3", + "state": "12", + "county": "085" + }, + { + "DP05_0001E": "2705528", + "DP05_0019E": "552057", + "DP05_0019PE": "20.4", + "state": "12", + "county": "086" + }, + { + "DP05_0001E": "85762", + "DP05_0019E": "17000", + "DP05_0019PE": "19.8", + "state": "12", + "county": "089" + }, + { + "DP05_0001E": "207430", + "DP05_0019E": "46014", + "DP05_0019PE": "22.2", + "state": "12", + "county": "091" + }, + { + "DP05_0001E": "1373784", + "DP05_0019E": "304105", + "DP05_0019PE": "22.1", + "state": "12", + "county": "095" + }, + { + "DP05_0001E": "363666", + "DP05_0019E": "88829", + "DP05_0019PE": "24.4", + "state": "12", + "county": "097" + }, + { + "DP05_0001E": "1482057", + "DP05_0019E": "282694", + "DP05_0019PE": "19.1", + "state": "12", + "county": "099" + }, + { + "DP05_0001E": "539885", + "DP05_0019E": "109509", + "DP05_0019PE": "20.3", + "state": "12", + "county": "101" + }, + { + "DP05_0001E": "970985", + "DP05_0019E": "156932", + "DP05_0019PE": "16.2", + "state": "12", + "county": "103" + }, + { + "DP05_0001E": "10732", + "DP05_0019E": "2286", + "DP05_0019PE": "21.3", + "state": "53", + "county": "043" + }, + { + "DP05_0001E": "42080", + "DP05_0019E": "9677", + "DP05_0019PE": "23.0", + "state": "53", + "county": "047" + }, + { + "DP05_0001E": "22121", + "DP05_0019E": "3483", + "DP05_0019PE": "15.7", + "state": "53", + "county": "049" + }, + { + "DP05_0001E": "891862", + "DP05_0019E": "208576", + "DP05_0019PE": "23.4", + "state": "53", + "county": "053" + }, + { + "DP05_0001E": "16953", + "DP05_0019E": "2204", + "DP05_0019PE": "13.0", + "state": "53", + "county": "055" + }, + { + "DP05_0001E": "11906", + "DP05_0019E": "2223", + "DP05_0019PE": "18.7", + "state": "53", + "county": "059" + }, + { + "DP05_0001E": "811572", + "DP05_0019E": "183517", + "DP05_0019PE": "22.6", + "state": "53", + "county": "061" + }, + { + "DP05_0001E": "45233", + "DP05_0019E": "9660", + "DP05_0019PE": "21.4", + "state": "53", + "county": "065" + }, + { + "DP05_0001E": "284698", + "DP05_0019E": "60983", + "DP05_0019PE": "21.4", + "state": "53", + "county": "067" + }, + { + "DP05_0001E": "60785", + "DP05_0019E": "12831", + "DP05_0019PE": "21.1", + "state": "53", + "county": "071" + }, + { + "DP05_0001E": "224538", + "DP05_0019E": "43496", + "DP05_0019PE": "19.4", + "state": "53", + "county": "073" + }, + { + "DP05_0001E": "250649", + "DP05_0019E": "74417", + "DP05_0019PE": "29.7", + "state": "53", + "county": "077" + }, + { + "DP05_0001E": "16543", + "DP05_0019E": "3247", + "DP05_0019PE": "19.6", + "state": "54", + "county": "001" + }, + { + "DP05_0001E": "21897", + "DP05_0019E": "4674", + "DP05_0019PE": "21.3", + "state": "54", + "county": "005" + }, + { + "DP05_0001E": "14032", + "DP05_0019E": "2780", + "DP05_0019PE": "19.8", + "state": "54", + "county": "007" + }, + { + "DP05_0001E": "93328", + "DP05_0019E": "18467", + "DP05_0019PE": "19.8", + "state": "54", + "county": "011" + }, + { + "DP05_0001E": "7185", + "DP05_0019E": "1335", + "DP05_0019PE": "18.6", + "state": "54", + "county": "013" + }, + { + "DP05_0001E": "8599", + "DP05_0019E": "1924", + "DP05_0019PE": "22.4", + "state": "54", + "county": "015" + }, + { + "DP05_0001E": "43087", + "DP05_0019E": "8881", + "DP05_0019PE": "20.6", + "state": "54", + "county": "019" + }, + { + "DP05_0001E": "7970", + "DP05_0019E": "1194", + "DP05_0019PE": "15.0", + "state": "54", + "county": "021" + }, + { + "DP05_0001E": "34893", + "DP05_0019E": "6769", + "DP05_0019PE": "19.4", + "state": "54", + "county": "025" + }, + { + "DP05_0001E": "23304", + "DP05_0019E": "4397", + "DP05_0019PE": "18.9", + "state": "54", + "county": "027" + }, + { + "DP05_0001E": "13789", + "DP05_0019E": "2834", + "DP05_0019PE": "20.6", + "state": "54", + "county": "031" + }, + { + "DP05_0001E": "67620", + "DP05_0019E": "14477", + "DP05_0019PE": "21.4", + "state": "54", + "county": "033" + }, + { + "DP05_0001E": "56922", + "DP05_0019E": "12639", + "DP05_0019PE": "22.2", + "state": "54", + "county": "037" + }, + { + "DP05_0001E": "181014", + "DP05_0019E": "36205", + "DP05_0019PE": "20.0", + "state": "54", + "county": "039" + }, + { + "DP05_0001E": "20617", + "DP05_0019E": "4633", + "DP05_0019PE": "22.5", + "state": "54", + "county": "043" + }, + { + "DP05_0001E": "32593", + "DP05_0019E": "6726", + "DP05_0019PE": "20.6", + "state": "54", + "county": "045" + }, + { + "DP05_0001E": "56233", + "DP05_0019E": "11235", + "DP05_0019PE": "20.0", + "state": "54", + "county": "049" + }, + { + "DP05_0001E": "30900", + "DP05_0019E": "6009", + "DP05_0019PE": "19.4", + "state": "54", + "county": "051" + }, + { + "DP05_0001E": "59370", + "DP05_0019E": "12164", + "DP05_0019PE": "20.5", + "state": "54", + "county": "055" + }, + { + "DP05_0001E": "27047", + "DP05_0019E": "5391", + "DP05_0019PE": "19.9", + "state": "54", + "county": "057" + }, + { + "DP05_0001E": "106196", + "DP05_0019E": "17285", + "DP05_0019PE": "16.3", + "state": "54", + "county": "061" + }, + { + "DP05_0001E": "13344", + "DP05_0019E": "2676", + "DP05_0019PE": "20.1", + "state": "54", + "county": "063" + }, + { + "DP05_0001E": "24857", + "DP05_0019E": "5086", + "DP05_0019PE": "20.5", + "state": "54", + "county": "067" + }, + { + "DP05_0001E": "41875", + "DP05_0019E": "8056", + "DP05_0019PE": "19.2", + "state": "54", + "county": "069" + }, + { + "DP05_0001E": "6968", + "DP05_0019E": "1189", + "DP05_0019PE": "17.1", + "state": "54", + "county": "071" + }, + { + "DP05_0001E": "7457", + "DP05_0019E": "1470", + "DP05_0019PE": "19.7", + "state": "54", + "county": "073" + }, + { + "DP05_0001E": "8382", + "DP05_0019E": "1450", + "DP05_0019PE": "17.3", + "state": "54", + "county": "075" + }, + { + "DP05_0001E": "33610", + "DP05_0019E": "6328", + "DP05_0019PE": "18.8", + "state": "54", + "county": "077" + }, + { + "DP05_0001E": "56604", + "DP05_0019E": "12658", + "DP05_0019PE": "22.4", + "state": "54", + "county": "079" + }, + { + "DP05_0001E": "74452", + "DP05_0019E": "15396", + "DP05_0019PE": "20.7", + "state": "54", + "county": "081" + }, + { + "DP05_0001E": "28763", + "DP05_0019E": "5601", + "DP05_0019PE": "19.5", + "state": "54", + "county": "083" + }, + { + "DP05_0001E": "9747", + "DP05_0019E": "1970", + "DP05_0019PE": "20.2", + "state": "54", + "county": "085" + }, + { + "DP05_0001E": "13831", + "DP05_0019E": "2974", + "DP05_0019PE": "21.5", + "state": "54", + "county": "087" + }, + { + "DP05_0001E": "12710", + "DP05_0019E": "2089", + "DP05_0019PE": "16.4", + "state": "54", + "county": "089" + }, + { + "DP05_0001E": "16817", + "DP05_0019E": "3359", + "DP05_0019PE": "20.0", + "state": "54", + "county": "091" + }, + { + "DP05_0001E": "6943", + "DP05_0019E": "1083", + "DP05_0019PE": "15.6", + "state": "54", + "county": "093" + }, + { + "DP05_0001E": "8736", + "DP05_0019E": "1710", + "DP05_0019PE": "19.6", + "state": "54", + "county": "095" + }, + { + "DP05_0001E": "24451", + "DP05_0019E": "4919", + "DP05_0019PE": "20.1", + "state": "54", + "county": "097" + }, + { + "DP05_0001E": "39952", + "DP05_0019E": "8202", + "DP05_0019PE": "20.5", + "state": "54", + "county": "099" + }, + { + "DP05_0001E": "8289", + "DP05_0019E": "1658", + "DP05_0019PE": "20.0", + "state": "54", + "county": "101" + }, + { + "DP05_0001E": "15291", + "DP05_0019E": "3103", + "DP05_0019PE": "20.3", + "state": "54", + "county": "103" + }, + { + "DP05_0001E": "5764", + "DP05_0019E": "1205", + "DP05_0019PE": "20.9", + "state": "54", + "county": "105" + }, + { + "DP05_0001E": "84387", + "DP05_0019E": "17741", + "DP05_0019PE": "21.0", + "state": "54", + "county": "107" + }, + { + "DP05_0001E": "20890", + "DP05_0019E": "4310", + "DP05_0019PE": "20.6", + "state": "54", + "county": "109" + }, + { + "DP05_0001E": "15524", + "DP05_0019E": "3417", + "DP05_0019PE": "22.0", + "state": "55", + "county": "003" + }, + { + "DP05_0001E": "4941", + "DP05_0019E": "733", + "DP05_0019PE": "14.8", + "state": "08", + "county": "027" + }, + { + "DP05_0001E": "30758", + "DP05_0019E": "6010", + "DP05_0019PE": "19.5", + "state": "08", + "county": "029" + }, + { + "DP05_0001E": "1896", + "DP05_0019E": "283", + "DP05_0019PE": "14.9", + "state": "08", + "county": "033" + }, + { + "DP05_0001E": "344280", + "DP05_0019E": "89083", + "DP05_0019PE": "25.9", + "state": "08", + "county": "035" + }, + { + "DP05_0001E": "54960", + "DP05_0019E": "11884", + "DP05_0019PE": "21.6", + "state": "08", + "county": "037" + }, + { + "DP05_0001E": "26230", + "DP05_0019E": "5580", + "DP05_0019PE": "21.3", + "state": "08", + "county": "039" + }, + { + "DP05_0001E": "710499", + "DP05_0019E": "170755", + "DP05_0019PE": "24.0", + "state": "08", + "county": "041" + }, + { + "DP05_0001E": "47725", + "DP05_0019E": "7546", + "DP05_0019PE": "15.8", + "state": "08", + "county": "043" + }, + { + "DP05_0001E": "59605", + "DP05_0019E": "15067", + "DP05_0019PE": "25.3", + "state": "08", + "county": "045" + }, + { + "DP05_0001E": "6108", + "DP05_0019E": "989", + "DP05_0019PE": "16.2", + "state": "08", + "county": "047" + }, + { + "DP05_0001E": "15536", + "DP05_0019E": "2687", + "DP05_0019PE": "17.3", + "state": "08", + "county": "049" + }, + { + "DP05_0001E": "17119", + "DP05_0019E": "2930", + "DP05_0019PE": "17.1", + "state": "08", + "county": "051" + }, + { + "DP05_0001E": "781", + "DP05_0019E": "114", + "DP05_0019PE": "14.6", + "state": "08", + "county": "053" + }, + { + "DP05_0001E": "6769", + "DP05_0019E": "1055", + "DP05_0019PE": "15.6", + "state": "08", + "county": "055" + }, + { + "DP05_0001E": "1316", + "DP05_0019E": "179", + "DP05_0019PE": "13.6", + "state": "08", + "county": "057" + }, + { + "DP05_0001E": "578795", + "DP05_0019E": "114014", + "DP05_0019PE": "19.7", + "state": "08", + "county": "059" + }, + { + "DP05_0001E": "1463", + "DP05_0019E": "412", + "DP05_0019PE": "28.2", + "state": "08", + "county": "061" + }, + { + "DP05_0001E": "7246", + "DP05_0019E": "1821", + "DP05_0019PE": "25.1", + "state": "08", + "county": "063" + }, + { + "DP05_0001E": "7845", + "DP05_0019E": "1267", + "DP05_0019PE": "16.2", + "state": "08", + "county": "065" + }, + { + "DP05_0001E": "56138", + "DP05_0019E": "10499", + "DP05_0019PE": "18.7", + "state": "08", + "county": "067" + }, + { + "DP05_0001E": "350523", + "DP05_0019E": "68416", + "DP05_0019PE": "19.5", + "state": "08", + "county": "069" + }, + { + "DP05_0001E": "14323", + "DP05_0019E": "2619", + "DP05_0019PE": "18.3", + "state": "08", + "county": "071" + }, + { + "DP05_0001E": "5608", + "DP05_0019E": "1130", + "DP05_0019PE": "20.1", + "state": "08", + "county": "073" + }, + { + "DP05_0001E": "22282", + "DP05_0019E": "4005", + "DP05_0019PE": "18.0", + "state": "08", + "county": "075" + }, + { + "DP05_0001E": "152962", + "DP05_0019E": "32973", + "DP05_0019PE": "21.6", + "state": "08", + "county": "077" + }, + { + "DP05_0001E": "13150", + "DP05_0019E": "3394", + "DP05_0019PE": "25.8", + "state": "08", + "county": "081" + }, + { + "DP05_0001E": "26266", + "DP05_0019E": "5690", + "DP05_0019PE": "21.7", + "state": "08", + "county": "083" + }, + { + "DP05_0001E": "28617", + "DP05_0019E": "7402", + "DP05_0019PE": "25.9", + "state": "08", + "county": "087" + }, + { + "DP05_0001E": "4890", + "DP05_0019E": "719", + "DP05_0019PE": "14.7", + "state": "08", + "county": "091" + }, + { + "DP05_0001E": "18345", + "DP05_0019E": "2832", + "DP05_0019PE": "15.4", + "state": "08", + "county": "093" + }, + { + "DP05_0001E": "17980", + "DP05_0019E": "2952", + "DP05_0019PE": "16.4", + "state": "08", + "county": "097" + }, + { + "DP05_0001E": "12035", + "DP05_0019E": "3063", + "DP05_0019PE": "25.5", + "state": "08", + "county": "099" + }, + { + "DP05_0001E": "6369", + "DP05_0019E": "1516", + "DP05_0019PE": "23.8", + "state": "08", + "county": "103" + }, + { + "DP05_0001E": "11300", + "DP05_0019E": "2576", + "DP05_0019PE": "22.8", + "state": "08", + "county": "105" + }, + { + "DP05_0001E": "6730", + "DP05_0019E": "1457", + "DP05_0019PE": "21.6", + "state": "08", + "county": "109" + }, + { + "DP05_0001E": "8110", + "DP05_0019E": "1391", + "DP05_0019PE": "17.2", + "state": "08", + "county": "113" + }, + { + "DP05_0001E": "2306", + "DP05_0019E": "609", + "DP05_0019PE": "26.4", + "state": "08", + "county": "115" + }, + { + "DP05_0001E": "24981", + "DP05_0019E": "4294", + "DP05_0019PE": "17.2", + "state": "08", + "county": "119" + }, + { + "DP05_0001E": "4869", + "DP05_0019E": "1070", + "DP05_0019PE": "22.0", + "state": "08", + "county": "121" + }, + { + "DP05_0001E": "10013", + "DP05_0019E": "2659", + "DP05_0019PE": "26.6", + "state": "08", + "county": "125" + }, + { + "DP05_0001E": "558306", + "DP05_0019E": "120246", + "DP05_0019PE": "21.5", + "state": "10", + "county": "003" + }, + { + "DP05_0001E": "230249", + "DP05_0019E": "42836", + "DP05_0019PE": "18.6", + "state": "10", + "county": "005" + }, + { + "DP05_0001E": "13302", + "DP05_0019E": "4481", + "DP05_0019PE": "33.7", + "state": "30", + "county": "003" + }, + { + "DP05_0001E": "6698", + "DP05_0019E": "2002", + "DP05_0019PE": "29.9", + "state": "30", + "county": "005" + }, + { + "DP05_0001E": "10689", + "DP05_0019E": "1903", + "DP05_0019PE": "17.8", + "state": "30", + "county": "009" + }, + { + "DP05_0001E": "1305", + "DP05_0019E": "251", + "DP05_0019PE": "19.2", + "state": "30", + "county": "011" + }, + { + "DP05_0001E": "5731", + "DP05_0019E": "1310", + "DP05_0019PE": "22.9", + "state": "30", + "county": "015" + }, + { + "DP05_0001E": "1705", + "DP05_0019E": "358", + "DP05_0019PE": "21.0", + "state": "30", + "county": "019" + }, + { + "DP05_0001E": "8824", + "DP05_0019E": "1845", + "DP05_0019PE": "20.9", + "state": "30", + "county": "021" + }, + { + "DP05_0001E": "2975", + "DP05_0019E": "780", + "DP05_0019PE": "26.2", + "state": "30", + "county": "025" + }, + { + "DP05_0001E": "11167", + "DP05_0019E": "2342", + "DP05_0019PE": "21.0", + "state": "30", + "county": "027" + }, + { + "DP05_0001E": "111401", + "DP05_0019E": "22091", + "DP05_0019PE": "19.8", + "state": "30", + "county": "031" + }, + { + "DP05_0001E": "1051", + "DP05_0019E": "237", + "DP05_0019PE": "22.5", + "state": "30", + "county": "033" + }, + { + "DP05_0001E": "814", + "DP05_0019E": "142", + "DP05_0019PE": "17.4", + "state": "30", + "county": "037" + }, + { + "DP05_0001E": "16422", + "DP05_0019E": "4560", + "DP05_0019PE": "27.8", + "state": "30", + "county": "041" + }, + { + "DP05_0001E": "12069", + "DP05_0019E": "2534", + "DP05_0019PE": "21.0", + "state": "30", + "county": "043" + }, + { + "DP05_0001E": "30383", + "DP05_0019E": "7132", + "DP05_0019PE": "23.5", + "state": "30", + "county": "047" + }, + { + "DP05_0001E": "68714", + "DP05_0019E": "14752", + "DP05_0019PE": "21.5", + "state": "30", + "county": "049" + }, + { + "DP05_0001E": "19845", + "DP05_0019E": "3660", + "DP05_0019PE": "18.4", + "state": "30", + "county": "053" + }, + { + "DP05_0001E": "73784", + "DP05_0019E": "15760", + "DP05_0019PE": "21.4", + "state": "12", + "county": "107" + }, + { + "DP05_0001E": "255410", + "DP05_0019E": "55568", + "DP05_0019PE": "21.8", + "state": "12", + "county": "109" + }, + { + "DP05_0001E": "320914", + "DP05_0019E": "63668", + "DP05_0019PE": "19.8", + "state": "12", + "county": "111" + }, + { + "DP05_0001E": "179587", + "DP05_0019E": "39530", + "DP05_0019PE": "22.0", + "state": "12", + "county": "113" + }, + { + "DP05_0001E": "427766", + "DP05_0019E": "60894", + "DP05_0019PE": "14.2", + "state": "12", + "county": "115" + }, + { + "DP05_0001E": "466695", + "DP05_0019E": "98092", + "DP05_0019PE": "21.0", + "state": "12", + "county": "117" + }, + { + "DP05_0001E": "129938", + "DP05_0019E": "9422", + "DP05_0019PE": "7.3", + "state": "12", + "county": "119" + }, + { + "DP05_0001E": "44290", + "DP05_0019E": "9501", + "DP05_0019PE": "21.5", + "state": "12", + "county": "121" + }, + { + "DP05_0001E": "21709", + "DP05_0019E": "4196", + "DP05_0019PE": "19.3", + "state": "12", + "county": "123" + }, + { + "DP05_0001E": "15282", + "DP05_0019E": "2830", + "DP05_0019PE": "18.5", + "state": "12", + "county": "125" + }, + { + "DP05_0001E": "546107", + "DP05_0019E": "96360", + "DP05_0019PE": "17.6", + "state": "12", + "county": "127" + }, + { + "DP05_0001E": "32855", + "DP05_0019E": "6872", + "DP05_0019PE": "20.9", + "state": "12", + "county": "129" + }, + { + "DP05_0001E": "71049", + "DP05_0019E": "14492", + "DP05_0019PE": "20.4", + "state": "12", + "county": "131" + }, + { + "DP05_0001E": "25094", + "DP05_0019E": "4863", + "DP05_0019PE": "19.4", + "state": "12", + "county": "133" + }, + { + "DP05_0001E": "31541", + "DP05_0019E": "7537", + "DP05_0019PE": "23.9", + "state": "31", + "county": "001" + }, + { + "DP05_0001E": "6315", + "DP05_0019E": "1498", + "DP05_0019PE": "23.7", + "state": "31", + "county": "003" + }, + { + "DP05_0001E": "645", + "DP05_0019E": "160", + "DP05_0019PE": "24.8", + "state": "31", + "county": "007" + }, + { + "DP05_0001E": "467", + "DP05_0019E": "88", + "DP05_0019PE": "18.8", + "state": "31", + "county": "009" + }, + { + "DP05_0001E": "10845", + "DP05_0019E": "2701", + "DP05_0019PE": "24.9", + "state": "31", + "county": "013" + }, + { + "DP05_0001E": "1882", + "DP05_0019E": "333", + "DP05_0019PE": "17.7", + "state": "31", + "county": "015" + }, + { + "DP05_0001E": "49594", + "DP05_0019E": "11605", + "DP05_0019PE": "23.4", + "state": "31", + "county": "019" + }, + { + "DP05_0001E": "6503", + "DP05_0019E": "1453", + "DP05_0019PE": "22.3", + "state": "31", + "county": "021" + }, + { + "DP05_0001E": "26022", + "DP05_0019E": "6223", + "DP05_0019PE": "23.9", + "state": "31", + "county": "025" + }, + { + "DP05_0001E": "8483", + "DP05_0019E": "2157", + "DP05_0019PE": "25.4", + "state": "31", + "county": "027" + }, + { + "DP05_0001E": "5801", + "DP05_0019E": "1351", + "DP05_0019PE": "23.3", + "state": "31", + "county": "031" + }, + { + "DP05_0001E": "9428", + "DP05_0019E": "2168", + "DP05_0019PE": "23.0", + "state": "31", + "county": "033" + }, + { + "DP05_0001E": "10681", + "DP05_0019E": "3221", + "DP05_0019PE": "30.2", + "state": "31", + "county": "037" + }, + { + "DP05_0001E": "10788", + "DP05_0019E": "2578", + "DP05_0019PE": "23.9", + "state": "31", + "county": "041" + }, + { + "DP05_0001E": "20124", + "DP05_0019E": "5841", + "DP05_0019PE": "29.0", + "state": "31", + "county": "043" + }, + { + "DP05_0001E": "23638", + "DP05_0019E": "6471", + "DP05_0019PE": "27.4", + "state": "31", + "county": "047" + }, + { + "DP05_0001E": "1770", + "DP05_0019E": "339", + "DP05_0019PE": "19.2", + "state": "31", + "county": "049" + }, + { + "DP05_0001E": "36565", + "DP05_0019E": "8851", + "DP05_0019PE": "24.2", + "state": "31", + "county": "053" + }, + { + "DP05_0001E": "565739", + "DP05_0019E": "144917", + "DP05_0019PE": "25.6", + "state": "31", + "county": "055" + }, + { + "DP05_0001E": "5542", + "DP05_0019E": "1108", + "DP05_0019PE": "20.0", + "state": "31", + "county": "059" + }, + { + "DP05_0001E": "2970", + "DP05_0019E": "553", + "DP05_0019PE": "18.6", + "state": "31", + "county": "061" + }, + { + "DP05_0001E": "4712", + "DP05_0019E": "1047", + "DP05_0019PE": "22.2", + "state": "31", + "county": "065" + }, + { + "DP05_0001E": "21548", + "DP05_0019E": "4896", + "DP05_0019PE": "22.7", + "state": "31", + "county": "067" + }, + { + "DP05_0001E": "2081", + "DP05_0019E": "451", + "DP05_0019PE": "21.7", + "state": "31", + "county": "071" + }, + { + "DP05_0001E": "2001", + "DP05_0019E": "373", + "DP05_0019PE": "18.6", + "state": "31", + "county": "073" + }, + { + "DP05_0001E": "2361", + "DP05_0019E": "537", + "DP05_0019PE": "22.7", + "state": "31", + "county": "077" + }, + { + "DP05_0001E": "61338", + "DP05_0019E": "16854", + "DP05_0019PE": "27.5", + "state": "31", + "county": "079" + }, + { + "DP05_0001E": "3380", + "DP05_0019E": "757", + "DP05_0019PE": "22.4", + "state": "31", + "county": "083" + }, + { + "DP05_0001E": "889", + "DP05_0019E": "189", + "DP05_0019PE": "21.3", + "state": "31", + "county": "085" + }, + { + "DP05_0001E": "10123", + "DP05_0019E": "2492", + "DP05_0019PE": "24.6", + "state": "31", + "county": "089" + }, + { + "DP05_0001E": "741", + "DP05_0019E": "147", + "DP05_0019PE": "19.8", + "state": "31", + "county": "091" + }, + { + "DP05_0001E": "7102", + "DP05_0019E": "1500", + "DP05_0019PE": "21.1", + "state": "31", + "county": "095" + }, + { + "DP05_0001E": "5118", + "DP05_0019E": "962", + "DP05_0019PE": "18.8", + "state": "31", + "county": "097" + }, + { + "DP05_0001E": "8048", + "DP05_0019E": "1625", + "DP05_0019PE": "20.2", + "state": "31", + "county": "101" + }, + { + "DP05_0001E": "875", + "DP05_0019E": "207", + "DP05_0019PE": "23.7", + "state": "31", + "county": "103" + }, + { + "DP05_0001E": "705735", + "DP05_0019E": "156115", + "DP05_0019PE": "22.1", + "state": "12", + "county": "105" + }, + { + "DP05_0001E": "8400", + "DP05_0019E": "2028", + "DP05_0019PE": "24.1", + "state": "31", + "county": "107" + }, + { + "DP05_0001E": "315976", + "DP05_0019E": "72001", + "DP05_0019PE": "22.8", + "state": "31", + "county": "109" + }, + { + "DP05_0001E": "896", + "DP05_0019E": "256", + "DP05_0019PE": "28.6", + "state": "31", + "county": "113" + }, + { + "DP05_0001E": "690", + "DP05_0019E": "130", + "DP05_0019PE": "18.8", + "state": "31", + "county": "115" + }, + { + "DP05_0001E": "35023", + "DP05_0019E": "8862", + "DP05_0019PE": "25.3", + "state": "31", + "county": "119" + }, + { + "DP05_0001E": "7826", + "DP05_0019E": "1734", + "DP05_0019PE": "22.2", + "state": "31", + "county": "121" + }, + { + "DP05_0001E": "3525", + "DP05_0019E": "779", + "DP05_0019PE": "22.1", + "state": "31", + "county": "125" + }, + { + "DP05_0001E": "4204", + "DP05_0019E": "855", + "DP05_0019PE": "20.3", + "state": "31", + "county": "129" + }, + { + "DP05_0001E": "15965", + "DP05_0019E": "3860", + "DP05_0019PE": "24.2", + "state": "31", + "county": "131" + }, + { + "DP05_0001E": "45182", + "DP05_0019E": "9792", + "DP05_0019PE": "21.7", + "state": "55", + "county": "005" + }, + { + "DP05_0001E": "262559", + "DP05_0019E": "62379", + "DP05_0019PE": "23.8", + "state": "55", + "county": "009" + }, + { + "DP05_0001E": "13087", + "DP05_0019E": "2668", + "DP05_0019PE": "20.4", + "state": "55", + "county": "011" + }, + { + "DP05_0001E": "50005", + "DP05_0019E": "11886", + "DP05_0019PE": "23.8", + "state": "55", + "county": "015" + }, + { + "DP05_0001E": "64175", + "DP05_0019E": "14190", + "DP05_0019PE": "22.1", + "state": "55", + "county": "017" + }, + { + "DP05_0001E": "57331", + "DP05_0019E": "12227", + "DP05_0019PE": "21.3", + "state": "55", + "county": "021" + }, + { + "DP05_0001E": "16155", + "DP05_0019E": "3207", + "DP05_0019PE": "19.9", + "state": "55", + "county": "023" + }, + { + "DP05_0001E": "87569", + "DP05_0019E": "17378", + "DP05_0019PE": "19.8", + "state": "55", + "county": "027" + }, + { + "DP05_0001E": "27621", + "DP05_0019E": "4510", + "DP05_0019PE": "16.3", + "state": "55", + "county": "029" + }, + { + "DP05_0001E": "45029", + "DP05_0019E": "8814", + "DP05_0019PE": "19.6", + "state": "55", + "county": "033" + }, + { + "DP05_0001E": "104132", + "DP05_0019E": "21108", + "DP05_0019PE": "20.3", + "state": "55", + "county": "035" + }, + { + "DP05_0001E": "102654", + "DP05_0019E": "21949", + "DP05_0019PE": "21.4", + "state": "55", + "county": "039" + }, + { + "DP05_0001E": "9003", + "DP05_0019E": "1784", + "DP05_0019PE": "19.8", + "state": "55", + "county": "041" + }, + { + "DP05_0001E": "36790", + "DP05_0019E": "8146", + "DP05_0019PE": "22.1", + "state": "55", + "county": "045" + }, + { + "DP05_0001E": "18807", + "DP05_0019E": "4174", + "DP05_0019PE": "22.2", + "state": "55", + "county": "047" + }, + { + "DP05_0001E": "5679", + "DP05_0019E": "834", + "DP05_0019PE": "14.7", + "state": "55", + "county": "051" + }, + { + "DP05_0001E": "20556", + "DP05_0019E": "4488", + "DP05_0019PE": "21.8", + "state": "55", + "county": "053" + }, + { + "DP05_0001E": "26603", + "DP05_0019E": "5343", + "DP05_0019PE": "20.1", + "state": "55", + "county": "057" + }, + { + "DP05_0001E": "168998", + "DP05_0019E": "38600", + "DP05_0019PE": "22.8", + "state": "55", + "county": "059" + }, + { + "DP05_0001E": "118168", + "DP05_0019E": "23367", + "DP05_0019PE": "19.8", + "state": "55", + "county": "063" + }, + { + "DP05_0001E": "16682", + "DP05_0019E": "4041", + "DP05_0019PE": "24.2", + "state": "55", + "county": "065" + }, + { + "DP05_0001E": "27687", + "DP05_0019E": "5087", + "DP05_0019PE": "18.4", + "state": "55", + "county": "069" + }, + { + "DP05_0001E": "78977", + "DP05_0019E": "16280", + "DP05_0019PE": "20.6", + "state": "55", + "county": "071" + }, + { + "DP05_0001E": "40312", + "DP05_0019E": "7622", + "DP05_0019PE": "18.9", + "state": "55", + "county": "075" + }, + { + "DP05_0001E": "15380", + "DP05_0019E": "2986", + "DP05_0019PE": "19.4", + "state": "55", + "county": "077" + }, + { + "DP05_0001E": "949180", + "DP05_0019E": "227662", + "DP05_0019PE": "24.0", + "state": "55", + "county": "079" + }, + { + "DP05_0001E": "46155", + "DP05_0019E": "11661", + "DP05_0019PE": "25.3", + "state": "55", + "county": "081" + }, + { + "DP05_0001E": "37870", + "DP05_0019E": "7616", + "DP05_0019PE": "20.1", + "state": "55", + "county": "083" + }, + { + "DP05_0001E": "186829", + "DP05_0019E": "43951", + "DP05_0019PE": "23.5", + "state": "55", + "county": "087" + }, + { + "DP05_0001E": "89179", + "DP05_0019E": "19034", + "DP05_0019PE": "21.3", + "state": "55", + "county": "089" + }, + { + "DP05_0001E": "42336", + "DP05_0019E": "8753", + "DP05_0019PE": "20.7", + "state": "55", + "county": "093" + }, + { + "DP05_0001E": "43549", + "DP05_0019E": "9092", + "DP05_0019PE": "20.9", + "state": "55", + "county": "095" + }, + { + "DP05_0001E": "13351", + "DP05_0019E": "2272", + "DP05_0019PE": "17.0", + "state": "55", + "county": "099" + }, + { + "DP05_0001E": "195859", + "DP05_0019E": "45358", + "DP05_0019PE": "23.2", + "state": "55", + "county": "101" + }, + { + "DP05_0001E": "162532", + "DP05_0019E": "37677", + "DP05_0019PE": "23.2", + "state": "55", + "county": "105" + }, + { + "DP05_0001E": "14074", + "DP05_0019E": "2875", + "DP05_0019PE": "20.4", + "state": "55", + "county": "107" + }, + { + "DP05_0001E": "64152", + "DP05_0019E": "14608", + "DP05_0019PE": "22.8", + "state": "55", + "county": "111" + }, + { + "DP05_0001E": "16477", + "DP05_0019E": "3093", + "DP05_0019PE": "18.8", + "state": "55", + "county": "113" + }, + { + "DP05_0001E": "40813", + "DP05_0019E": "8759", + "DP05_0019PE": "21.5", + "state": "55", + "county": "115" + }, + { + "DP05_0001E": "115152", + "DP05_0019E": "25491", + "DP05_0019PE": "22.1", + "state": "55", + "county": "117" + }, + { + "DP05_0001E": "20320", + "DP05_0019E": "4770", + "DP05_0019PE": "23.5", + "state": "55", + "county": "119" + }, + { + "DP05_0001E": "29525", + "DP05_0019E": "7387", + "DP05_0019PE": "25.0", + "state": "55", + "county": "121" + }, + { + "DP05_0001E": "30759", + "DP05_0019E": "8007", + "DP05_0019PE": "26.0", + "state": "55", + "county": "123" + }, + { + "DP05_0001E": "21923", + "DP05_0019E": "3627", + "DP05_0019PE": "16.5", + "state": "55", + "county": "125" + }, + { + "DP05_0001E": "103391", + "DP05_0019E": "21442", + "DP05_0019PE": "20.7", + "state": "55", + "county": "127" + }, + { + "DP05_0001E": "15726", + "DP05_0019E": "2954", + "DP05_0019PE": "18.8", + "state": "55", + "county": "129" + }, + { + "DP05_0001E": "135529", + "DP05_0019E": "29722", + "DP05_0019PE": "21.9", + "state": "55", + "county": "131" + }, + { + "DP05_0001E": "402637", + "DP05_0019E": "86534", + "DP05_0019PE": "21.5", + "state": "55", + "county": "133" + }, + { + "DP05_0001E": "50997", + "DP05_0019E": "10426", + "DP05_0019PE": "20.4", + "state": "55", + "county": "135" + }, + { + "DP05_0001E": "24256", + "DP05_0019E": "4440", + "DP05_0019PE": "18.3", + "state": "55", + "county": "137" + }, + { + "DP05_0001E": "170924", + "DP05_0019E": "35080", + "DP05_0019PE": "20.5", + "state": "55", + "county": "139" + }, + { + "DP05_0001E": "72892", + "DP05_0019E": "15758", + "DP05_0019PE": "21.6", + "state": "55", + "county": "141" + }, + { + "DP05_0001E": "38664", + "DP05_0019E": "6175", + "DP05_0019PE": "16.0", + "state": "56", + "county": "001" + }, + { + "DP05_0001E": "11809", + "DP05_0019E": "3009", + "DP05_0019PE": "25.5", + "state": "56", + "county": "003" + }, + { + "DP05_0001E": "46958", + "DP05_0019E": "12854", + "DP05_0019PE": "27.4", + "state": "56", + "county": "005" + }, + { + "DP05_0001E": "15073", + "DP05_0019E": "3483", + "DP05_0019PE": "23.1", + "state": "56", + "county": "007" + }, + { + "DP05_0001E": "13842", + "DP05_0019E": "3442", + "DP05_0019PE": "24.9", + "state": "56", + "county": "009" + }, + { + "DP05_0001E": "7502", + "DP05_0019E": "1836", + "DP05_0019PE": "24.5", + "state": "56", + "county": "011" + }, + { + "DP05_0001E": "39711", + "DP05_0019E": "9988", + "DP05_0019PE": "25.2", + "state": "56", + "county": "013" + }, + { + "DP05_0001E": "1826", + "DP05_0019E": "379", + "DP05_0019PE": "20.8", + "state": "30", + "county": "055" + }, + { + "DP05_0001E": "1795", + "DP05_0019E": "330", + "DP05_0019PE": "18.4", + "state": "30", + "county": "059" + }, + { + "DP05_0001E": "4330", + "DP05_0019E": "822", + "DP05_0019PE": "19.0", + "state": "30", + "county": "061" + }, + { + "DP05_0001E": "4682", + "DP05_0019E": "901", + "DP05_0019PE": "19.2", + "state": "30", + "county": "065" + }, + { + "DP05_0001E": "464", + "DP05_0019E": "85", + "DP05_0019PE": "18.3", + "state": "30", + "county": "069" + }, + { + "DP05_0001E": "4032", + "DP05_0019E": "945", + "DP05_0019PE": "23.4", + "state": "30", + "county": "071" + }, + { + "DP05_0001E": "1634", + "DP05_0019E": "251", + "DP05_0019PE": "15.4", + "state": "30", + "county": "075" + }, + { + "DP05_0001E": "6843", + "DP05_0019E": "924", + "DP05_0019PE": "13.5", + "state": "30", + "county": "077" + }, + { + "DP05_0001E": "1162", + "DP05_0019E": "269", + "DP05_0019PE": "23.1", + "state": "30", + "county": "079" + }, + { + "DP05_0001E": "43424", + "DP05_0019E": "8282", + "DP05_0019PE": "19.1", + "state": "30", + "county": "081" + }, + { + "DP05_0001E": "11097", + "DP05_0019E": "2845", + "DP05_0019PE": "25.6", + "state": "30", + "county": "083" + }, + { + "DP05_0001E": "11091", + "DP05_0019E": "3725", + "DP05_0019PE": "33.6", + "state": "30", + "county": "085" + }, + { + "DP05_0001E": "9065", + "DP05_0019E": "2494", + "DP05_0019PE": "27.5", + "state": "30", + "county": "087" + }, + { + "DP05_0001E": "11804", + "DP05_0019E": "2074", + "DP05_0019PE": "17.6", + "state": "30", + "county": "089" + }, + { + "DP05_0001E": "3389", + "DP05_0019E": "716", + "DP05_0019PE": "21.1", + "state": "30", + "county": "091" + }, + { + "DP05_0001E": "34895", + "DP05_0019E": "7107", + "DP05_0019PE": "20.4", + "state": "30", + "county": "093" + }, + { + "DP05_0001E": "9562", + "DP05_0019E": "2047", + "DP05_0019PE": "21.4", + "state": "30", + "county": "095" + }, + { + "DP05_0001E": "3676", + "DP05_0019E": "763", + "DP05_0019PE": "20.8", + "state": "30", + "county": "097" + }, + { + "DP05_0001E": "6127", + "DP05_0019E": "1495", + "DP05_0019PE": "24.4", + "state": "30", + "county": "099" + }, + { + "DP05_0001E": "4812", + "DP05_0019E": "919", + "DP05_0019PE": "19.1", + "state": "30", + "county": "101" + }, + { + "DP05_0001E": "614", + "DP05_0019E": "71", + "DP05_0019PE": "11.6", + "state": "30", + "county": "103" + }, + { + "DP05_0001E": "7424", + "DP05_0019E": "1686", + "DP05_0019PE": "22.7", + "state": "30", + "county": "105" + }, + { + "DP05_0001E": "2138", + "DP05_0019E": "443", + "DP05_0019PE": "20.7", + "state": "30", + "county": "107" + }, + { + "DP05_0001E": "1037", + "DP05_0019E": "262", + "DP05_0019PE": "25.3", + "state": "30", + "county": "109" + }, + { + "DP05_0001E": "160390", + "DP05_0019E": "37561", + "DP05_0019PE": "23.4", + "state": "30", + "county": "111" + }, + { + "DP05_0001E": "18428", + "DP05_0019E": "4565", + "DP05_0019PE": "24.8", + "state": "13", + "county": "001" + }, + { + "DP05_0001E": "8311", + "DP05_0019E": "2223", + "DP05_0019PE": "26.7", + "state": "13", + "county": "003" + }, + { + "DP05_0001E": "11140", + "DP05_0019E": "2847", + "DP05_0019PE": "25.6", + "state": "13", + "county": "005" + }, + { + "DP05_0001E": "3090", + "DP05_0019E": "525", + "DP05_0019PE": "17.0", + "state": "13", + "county": "007" + }, + { + "DP05_0001E": "18900", + "DP05_0019E": "4323", + "DP05_0019PE": "22.9", + "state": "13", + "county": "011" + }, + { + "DP05_0001E": "81294", + "DP05_0019E": "21133", + "DP05_0019PE": "26.0", + "state": "13", + "county": "013" + }, + { + "DP05_0001E": "16889", + "DP05_0019E": "4196", + "DP05_0019PE": "24.8", + "state": "13", + "county": "017" + }, + { + "DP05_0001E": "153026", + "DP05_0019E": "37227", + "DP05_0019PE": "24.3", + "state": "13", + "county": "021" + }, + { + "DP05_0001E": "12870", + "DP05_0019E": "2530", + "DP05_0019PE": "19.7", + "state": "13", + "county": "023" + }, + { + "DP05_0001E": "15548", + "DP05_0019E": "3428", + "DP05_0019PE": "22.0", + "state": "13", + "county": "027" + }, + { + "DP05_0001E": "38321", + "DP05_0019E": "11258", + "DP05_0019PE": "29.4", + "state": "13", + "county": "029" + }, + { + "DP05_0001E": "22567", + "DP05_0019E": "5868", + "DP05_0019PE": "26.0", + "state": "13", + "county": "033" + }, + { + "DP05_0001E": "24463", + "DP05_0019E": "4917", + "DP05_0019PE": "20.1", + "state": "13", + "county": "035" + }, + { + "DP05_0001E": "53960", + "DP05_0019E": "13083", + "DP05_0019PE": "24.2", + "state": "13", + "county": "039" + }, + { + "DP05_0001E": "118692", + "DP05_0019E": "28196", + "DP05_0019PE": "23.8", + "state": "13", + "county": "045" + }, + { + "DP05_0001E": "67181", + "DP05_0019E": "15278", + "DP05_0019PE": "22.7", + "state": "13", + "county": "047" + }, + { + "DP05_0001E": "289649", + "DP05_0019E": "61546", + "DP05_0019PE": "21.2", + "state": "13", + "county": "051" + }, + { + "DP05_0001E": "10470", + "DP05_0019E": "2193", + "DP05_0019PE": "20.9", + "state": "13", + "county": "053" + }, + { + "DP05_0001E": "253780", + "DP05_0019E": "62028", + "DP05_0019PE": "24.4", + "state": "13", + "county": "057" + }, + { + "DP05_0001E": "126952", + "DP05_0019E": "21912", + "DP05_0019PE": "17.3", + "state": "13", + "county": "059" + }, + { + "DP05_0001E": "287560", + "DP05_0019E": "80180", + "DP05_0019PE": "27.9", + "state": "13", + "county": "063" + }, + { + "DP05_0001E": "756653", + "DP05_0019E": "178327", + "DP05_0019PE": "23.6", + "state": "13", + "county": "067" + }, + { + "DP05_0001E": "43070", + "DP05_0019E": "10548", + "DP05_0019PE": "24.5", + "state": "13", + "county": "069" + }, + { + "DP05_0001E": "154257", + "DP05_0019E": "39103", + "DP05_0019PE": "25.3", + "state": "13", + "county": "073" + }, + { + "DP05_0001E": "17217", + "DP05_0019E": "4383", + "DP05_0019PE": "25.5", + "state": "13", + "county": "075" + }, + { + "DP05_0001E": "12267", + "DP05_0019E": "2517", + "DP05_0019PE": "20.5", + "state": "13", + "county": "079" + }, + { + "DP05_0001E": "22509", + "DP05_0019E": "5399", + "DP05_0019PE": "24.0", + "state": "13", + "county": "081" + }, + { + "DP05_0001E": "25277", + "DP05_0019E": "5044", + "DP05_0019PE": "20.0", + "state": "13", + "county": "085" + }, + { + "DP05_0001E": "755287", + "DP05_0019E": "174934", + "DP05_0019PE": "23.2", + "state": "13", + "county": "089" + }, + { + "DP05_0001E": "20725", + "DP05_0019E": "4002", + "DP05_0019PE": "19.3", + "state": "13", + "county": "091" + }, + { + "DP05_0001E": "88696", + "DP05_0019E": "21149", + "DP05_0019PE": "23.8", + "state": "13", + "county": "095" + }, + { + "DP05_0001E": "145063", + "DP05_0019E": "37593", + "DP05_0019PE": "25.9", + "state": "13", + "county": "097" + }, + { + "DP05_0001E": "3944", + "DP05_0019E": "946", + "DP05_0019PE": "24.0", + "state": "13", + "county": "101" + }, + { + "DP05_0001E": "19164", + "DP05_0019E": "4174", + "DP05_0019PE": "21.8", + "state": "13", + "county": "105" + }, + { + "DP05_0001E": "2640", + "DP05_0019E": "570", + "DP05_0019PE": "21.6", + "state": "31", + "county": "133" + }, + { + "DP05_0001E": "2889", + "DP05_0019E": "717", + "DP05_0019PE": "24.8", + "state": "31", + "county": "135" + }, + { + "DP05_0001E": "9050", + "DP05_0019E": "2161", + "DP05_0019PE": "23.9", + "state": "31", + "county": "137" + }, + { + "DP05_0001E": "7132", + "DP05_0019E": "1751", + "DP05_0019PE": "24.6", + "state": "31", + "county": "139" + }, + { + "DP05_0001E": "33250", + "DP05_0019E": "8701", + "DP05_0019PE": "26.2", + "state": "31", + "county": "141" + }, + { + "DP05_0001E": "5208", + "DP05_0019E": "1181", + "DP05_0019PE": "22.7", + "state": "31", + "county": "143" + }, + { + "DP05_0001E": "10725", + "DP05_0019E": "2555", + "DP05_0019PE": "23.8", + "state": "31", + "county": "145" + }, + { + "DP05_0001E": "7913", + "DP05_0019E": "1679", + "DP05_0019PE": "21.2", + "state": "31", + "county": "147" + }, + { + "DP05_0001E": "1430", + "DP05_0019E": "310", + "DP05_0019PE": "21.7", + "state": "31", + "county": "149" + }, + { + "DP05_0001E": "14221", + "DP05_0019E": "3493", + "DP05_0019PE": "24.6", + "state": "31", + "county": "151" + }, + { + "DP05_0001E": "183956", + "DP05_0019E": "50327", + "DP05_0019PE": "27.4", + "state": "31", + "county": "153" + }, + { + "DP05_0001E": "21356", + "DP05_0019E": "5175", + "DP05_0019PE": "24.2", + "state": "31", + "county": "155" + }, + { + "DP05_0001E": "35884", + "DP05_0019E": "8914", + "DP05_0019PE": "24.8", + "state": "31", + "county": "157" + }, + { + "DP05_0001E": "17217", + "DP05_0019E": "4008", + "DP05_0019PE": "23.3", + "state": "31", + "county": "159" + }, + { + "DP05_0001E": "5215", + "DP05_0019E": "1167", + "DP05_0019PE": "22.4", + "state": "31", + "county": "161" + }, + { + "DP05_0001E": "3015", + "DP05_0019E": "609", + "DP05_0019PE": "20.2", + "state": "31", + "county": "163" + }, + { + "DP05_0001E": "1298", + "DP05_0019E": "311", + "DP05_0019PE": "24.0", + "state": "31", + "county": "165" + }, + { + "DP05_0001E": "5946", + "DP05_0019E": "1493", + "DP05_0019PE": "25.1", + "state": "31", + "county": "167" + }, + { + "DP05_0001E": "5000", + "DP05_0019E": "1131", + "DP05_0019PE": "22.6", + "state": "31", + "county": "169" + }, + { + "DP05_0001E": "586", + "DP05_0019E": "126", + "DP05_0019PE": "21.5", + "state": "31", + "county": "171" + }, + { + "DP05_0001E": "7218", + "DP05_0019E": "2584", + "DP05_0019PE": "35.8", + "state": "31", + "county": "173" + }, + { + "DP05_0001E": "20546", + "DP05_0019E": "5017", + "DP05_0019PE": "24.4", + "state": "31", + "county": "177" + }, + { + "DP05_0001E": "3497", + "DP05_0019E": "771", + "DP05_0019PE": "22.0", + "state": "31", + "county": "181" + }, + { + "DP05_0001E": "689", + "DP05_0019E": "91", + "DP05_0019PE": "13.2", + "state": "31", + "county": "183" + }, + { + "DP05_0001E": "24606", + "DP05_0019E": "5586", + "DP05_0019PE": "22.7", + "state": "32", + "county": "001" + }, + { + "DP05_0001E": "2228866", + "DP05_0019E": "516696", + "DP05_0019PE": "23.2", + "state": "32", + "county": "003" + }, + { + "DP05_0001E": "52537", + "DP05_0019E": "14111", + "DP05_0019PE": "26.9", + "state": "32", + "county": "007" + }, + { + "DP05_0001E": "1030", + "DP05_0019E": "138", + "DP05_0019PE": "13.4", + "state": "32", + "county": "009" + }, + { + "DP05_0001E": "16834", + "DP05_0019E": "4455", + "DP05_0019PE": "26.5", + "state": "32", + "county": "013" + }, + { + "DP05_0001E": "5565", + "DP05_0019E": "1502", + "DP05_0019PE": "27.0", + "state": "32", + "county": "015" + }, + { + "DP05_0001E": "55667", + "DP05_0019E": "11796", + "DP05_0019PE": "21.2", + "state": "32", + "county": "019" + }, + { + "DP05_0001E": "4487", + "DP05_0019E": "702", + "DP05_0019PE": "15.6", + "state": "32", + "county": "021" + }, + { + "DP05_0001E": "6591", + "DP05_0019E": "1101", + "DP05_0019PE": "16.7", + "state": "32", + "county": "027" + }, + { + "DP05_0001E": "4086", + "DP05_0019E": "679", + "DP05_0019PE": "16.6", + "state": "32", + "county": "029" + }, + { + "DP05_0001E": "9570", + "DP05_0019E": "1828", + "DP05_0019PE": "19.1", + "state": "32", + "county": "033" + }, + { + "DP05_0001E": "55244", + "DP05_0019E": "11280", + "DP05_0019PE": "20.4", + "state": "32", + "county": "510" + }, + { + "DP05_0001E": "48461", + "DP05_0019E": "7534", + "DP05_0019PE": "15.5", + "state": "33", + "county": "003" + }, + { + "DP05_0001E": "76040", + "DP05_0019E": "13598", + "DP05_0019PE": "17.9", + "state": "33", + "county": "005" + }, + { + "DP05_0001E": "90331", + "DP05_0019E": "14554", + "DP05_0019PE": "16.1", + "state": "33", + "county": "009" + }, + { + "DP05_0001E": "415305", + "DP05_0019E": "84974", + "DP05_0019PE": "20.5", + "state": "33", + "county": "011" + }, + { + "DP05_0001E": "308211", + "DP05_0019E": "59772", + "DP05_0019PE": "19.4", + "state": "33", + "county": "015" + }, + { + "DP05_0001E": "130161", + "DP05_0019E": "23971", + "DP05_0019PE": "18.4", + "state": "33", + "county": "017" + }, + { + "DP05_0001E": "62371", + "DP05_0019E": "16120", + "DP05_0019PE": "25.8", + "state": "22", + "county": "001" + }, + { + "DP05_0001E": "25572", + "DP05_0019E": "5672", + "DP05_0019PE": "22.2", + "state": "22", + "county": "003" + }, + { + "DP05_0001E": "22236", + "DP05_0019E": "4814", + "DP05_0019PE": "21.6", + "state": "22", + "county": "007" + }, + { + "DP05_0001E": "40465", + "DP05_0019E": "9524", + "DP05_0019PE": "23.5", + "state": "22", + "county": "009" + }, + { + "DP05_0001E": "13391", + "DP05_0019E": "3033", + "DP05_0019PE": "22.6", + "state": "22", + "county": "013" + }, + { + "DP05_0001E": "126952", + "DP05_0019E": "31484", + "DP05_0019PE": "24.8", + "state": "22", + "county": "015" + }, + { + "DP05_0001E": "202858", + "DP05_0019E": "50698", + "DP05_0019PE": "25.0", + "state": "22", + "county": "019" + }, + { + "DP05_0001E": "9959", + "DP05_0019E": "2297", + "DP05_0019PE": "23.1", + "state": "22", + "county": "021" + }, + { + "DP05_0001E": "9586", + "DP05_0019E": "2068", + "DP05_0019PE": "21.6", + "state": "22", + "county": "025" + }, + { + "DP05_0001E": "15854", + "DP05_0019E": "2803", + "DP05_0019PE": "17.7", + "state": "22", + "county": "027" + }, + { + "DP05_0001E": "27395", + "DP05_0019E": "6572", + "DP05_0019PE": "24.0", + "state": "22", + "county": "031" + }, + { + "DP05_0001E": "443158", + "DP05_0019E": "100775", + "DP05_0019PE": "22.7", + "state": "22", + "county": "033" + }, + { + "DP05_0001E": "19228", + "DP05_0019E": "3399", + "DP05_0019PE": "17.7", + "state": "22", + "county": "037" + }, + { + "DP05_0001E": "33491", + "DP05_0019E": "8200", + "DP05_0019PE": "24.5", + "state": "22", + "county": "039" + }, + { + "DP05_0001E": "22339", + "DP05_0019E": "4584", + "DP05_0019PE": "20.5", + "state": "22", + "county": "043" + }, + { + "DP05_0001E": "70763", + "DP05_0019E": "18350", + "DP05_0019PE": "25.9", + "state": "22", + "county": "045" + }, + { + "DP05_0001E": "15822", + "DP05_0019E": "3302", + "DP05_0019PE": "20.9", + "state": "22", + "county": "049" + }, + { + "DP05_0001E": "13301", + "DP05_0019E": "2710", + "DP05_0019PE": "20.4", + "state": "56", + "county": "015" + }, + { + "DP05_0001E": "8518", + "DP05_0019E": "1687", + "DP05_0019PE": "19.8", + "state": "56", + "county": "019" + }, + { + "DP05_0001E": "99272", + "DP05_0019E": "22824", + "DP05_0019PE": "23.0", + "state": "56", + "county": "021" + }, + { + "DP05_0001E": "19640", + "DP05_0019E": "5290", + "DP05_0019PE": "26.9", + "state": "56", + "county": "023" + }, + { + "DP05_0001E": "2377", + "DP05_0019E": "509", + "DP05_0019PE": "21.4", + "state": "56", + "county": "027" + }, + { + "DP05_0001E": "29273", + "DP05_0019E": "5999", + "DP05_0019PE": "20.5", + "state": "56", + "county": "029" + }, + { + "DP05_0001E": "30397", + "DP05_0019E": "6464", + "DP05_0019PE": "21.3", + "state": "56", + "county": "033" + }, + { + "DP05_0001E": "9865", + "DP05_0019E": "2268", + "DP05_0019PE": "23.0", + "state": "56", + "county": "035" + }, + { + "DP05_0001E": "23356", + "DP05_0019E": "4192", + "DP05_0019PE": "17.9", + "state": "56", + "county": "039" + }, + { + "DP05_0001E": "20374", + "DP05_0019E": "5858", + "DP05_0019PE": "28.8", + "state": "56", + "county": "041" + }, + { + "DP05_0001E": "6942", + "DP05_0019E": "1341", + "DP05_0019PE": "19.3", + "state": "56", + "county": "045" + }, + { + "DP05_0001E": "22525", + "DP05_0019E": "5603", + "DP05_0019PE": "24.9", + "state": "13", + "county": "107" + }, + { + "DP05_0001E": "25797", + "DP05_0019E": "4240", + "DP05_0019PE": "16.4", + "state": "13", + "county": "111" + }, + { + "DP05_0001E": "113544", + "DP05_0019E": "26211", + "DP05_0019PE": "23.1", + "state": "13", + "county": "113" + }, + { + "DP05_0001E": "236605", + "DP05_0019E": "64891", + "DP05_0019PE": "27.4", + "state": "13", + "county": "117" + }, + { + "DP05_0001E": "1051550", + "DP05_0019E": "229192", + "DP05_0019PE": "21.8", + "state": "13", + "county": "121" + }, + { + "DP05_0001E": "30986", + "DP05_0019E": "5929", + "DP05_0019PE": "19.1", + "state": "13", + "county": "123" + }, + { + "DP05_0001E": "85008", + "DP05_0019E": "18529", + "DP05_0019PE": "21.8", + "state": "13", + "county": "127" + }, + { + "DP05_0001E": "57756", + "DP05_0019E": "14052", + "DP05_0019PE": "24.3", + "state": "13", + "county": "129" + }, + { + "DP05_0001E": "17808", + "DP05_0019E": "3316", + "DP05_0019PE": "18.6", + "state": "13", + "county": "133" + }, + { + "DP05_0001E": "926414", + "DP05_0019E": "249807", + "DP05_0019PE": "27.0", + "state": "13", + "county": "135" + }, + { + "DP05_0001E": "201434", + "DP05_0019E": "50868", + "DP05_0019PE": "25.3", + "state": "13", + "county": "139" + }, + { + "DP05_0001E": "29608", + "DP05_0019E": "7059", + "DP05_0019PE": "23.8", + "state": "13", + "county": "143" + }, + { + "DP05_0001E": "34676", + "DP05_0019E": "7422", + "DP05_0019PE": "21.4", + "state": "13", + "county": "145" + }, + { + "DP05_0001E": "25981", + "DP05_0019E": "5349", + "DP05_0019PE": "20.6", + "state": "13", + "county": "147" + }, + { + "DP05_0001E": "11785", + "DP05_0019E": "2683", + "DP05_0019PE": "22.8", + "state": "13", + "county": "149" + }, + { + "DP05_0001E": "229994", + "DP05_0019E": "59078", + "DP05_0019PE": "25.7", + "state": "13", + "county": "151" + }, + { + "DP05_0001E": "155317", + "DP05_0019E": "39658", + "DP05_0019PE": "25.5", + "state": "13", + "county": "153" + }, + { + "DP05_0001E": "9379", + "DP05_0019E": "1995", + "DP05_0019PE": "21.3", + "state": "13", + "county": "155" + }, + { + "DP05_0001E": "70467", + "DP05_0019E": "17852", + "DP05_0019PE": "25.3", + "state": "13", + "county": "157" + }, + { + "DP05_0001E": "14074", + "DP05_0019E": "3322", + "DP05_0019PE": "23.6", + "state": "13", + "county": "159" + }, + { + "DP05_0001E": "15063", + "DP05_0019E": "3978", + "DP05_0019PE": "26.4", + "state": "13", + "county": "161" + }, + { + "DP05_0001E": "15489", + "DP05_0019E": "3651", + "DP05_0019PE": "23.6", + "state": "13", + "county": "163" + }, + { + "DP05_0001E": "8787", + "DP05_0019E": "1867", + "DP05_0019PE": "21.2", + "state": "13", + "county": "165" + }, + { + "DP05_0001E": "9717", + "DP05_0019E": "1842", + "DP05_0019PE": "19.0", + "state": "13", + "county": "167" + }, + { + "DP05_0001E": "28622", + "DP05_0019E": "6614", + "DP05_0019PE": "23.1", + "state": "13", + "county": "169" + }, + { + "DP05_0001E": "18834", + "DP05_0019E": "3936", + "DP05_0019PE": "20.9", + "state": "13", + "county": "171" + }, + { + "DP05_0001E": "10534", + "DP05_0019E": "2357", + "DP05_0019PE": "22.4", + "state": "13", + "county": "173" + }, + { + "DP05_0001E": "47404", + "DP05_0019E": "11683", + "DP05_0019PE": "24.6", + "state": "13", + "county": "175" + }, + { + "DP05_0001E": "29735", + "DP05_0019E": "7837", + "DP05_0019PE": "26.4", + "state": "13", + "county": "177" + }, + { + "DP05_0001E": "62039", + "DP05_0019E": "17401", + "DP05_0019PE": "28.0", + "state": "13", + "county": "179" + }, + { + "DP05_0001E": "7929", + "DP05_0019E": "1520", + "DP05_0019PE": "19.2", + "state": "13", + "county": "181" + }, + { + "DP05_0001E": "19236", + "DP05_0019E": "5370", + "DP05_0019PE": "27.9", + "state": "13", + "county": "183" + }, + { + "DP05_0001E": "33009", + "DP05_0019E": "5931", + "DP05_0019PE": "18.0", + "state": "13", + "county": "187" + }, + { + "DP05_0001E": "14217", + "DP05_0019E": "2316", + "DP05_0019PE": "16.3", + "state": "13", + "county": "191" + }, + { + "DP05_0001E": "13107", + "DP05_0019E": "2481", + "DP05_0019PE": "18.9", + "state": "13", + "county": "193" + }, + { + "DP05_0001E": "8450", + "DP05_0019E": "1915", + "DP05_0019PE": "22.7", + "state": "13", + "county": "197" + }, + { + "DP05_0001E": "21080", + "DP05_0019E": "4504", + "DP05_0019PE": "21.4", + "state": "13", + "county": "199" + }, + { + "DP05_0001E": "22072", + "DP05_0019E": "4866", + "DP05_0019PE": "22.0", + "state": "13", + "county": "205" + }, + { + "DP05_0001E": "9069", + "DP05_0019E": "1846", + "DP05_0019PE": "20.4", + "state": "13", + "county": "209" + }, + { + "DP05_0001E": "18832", + "DP05_0019E": "4248", + "DP05_0019PE": "22.6", + "state": "13", + "county": "211" + }, + { + "DP05_0001E": "195418", + "DP05_0019E": "48358", + "DP05_0019PE": "24.7", + "state": "13", + "county": "215" + }, + { + "DP05_0001E": "109835", + "DP05_0019E": "28675", + "DP05_0019PE": "26.1", + "state": "13", + "county": "217" + }, + { + "DP05_0001E": "15040", + "DP05_0019E": "3312", + "DP05_0019PE": "22.0", + "state": "13", + "county": "221" + }, + { + "DP05_0001E": "164440", + "DP05_0019E": "43159", + "DP05_0019PE": "26.2", + "state": "13", + "county": "223" + }, + { + "DP05_0001E": "32002", + "DP05_0019E": "6385", + "DP05_0019PE": "20.0", + "state": "13", + "county": "227" + }, + { + "DP05_0001E": "18565", + "DP05_0019E": "4328", + "DP05_0019PE": "23.3", + "state": "13", + "county": "231" + }, + { + "DP05_0001E": "42251", + "DP05_0019E": "10776", + "DP05_0019PE": "25.5", + "state": "13", + "county": "233" + }, + { + "DP05_0001E": "21906", + "DP05_0019E": "4396", + "DP05_0019PE": "20.1", + "state": "13", + "county": "237" + }, + { + "DP05_0001E": "2290", + "DP05_0019E": "296", + "DP05_0019PE": "12.9", + "state": "13", + "county": "239" + }, + { + "DP05_0001E": "6888", + "DP05_0019E": "1811", + "DP05_0019PE": "26.3", + "state": "13", + "county": "243" + }, + { + "DP05_0001E": "90155", + "DP05_0019E": "22222", + "DP05_0019PE": "24.6", + "state": "13", + "county": "247" + }, + { + "DP05_0001E": "5215", + "DP05_0019E": "1187", + "DP05_0019PE": "22.8", + "state": "13", + "county": "249" + }, + { + "DP05_0001E": "8218", + "DP05_0019E": "1712", + "DP05_0019PE": "20.8", + "state": "13", + "county": "253" + }, + { + "DP05_0001E": "66043", + "DP05_0019E": "15577", + "DP05_0019PE": "23.6", + "state": "13", + "county": "255" + }, + { + "DP05_0001E": "6446", + "DP05_0019E": "744", + "DP05_0019PE": "11.5", + "state": "13", + "county": "259" + }, + { + "DP05_0001E": "29714", + "DP05_0019E": "6724", + "DP05_0019PE": "22.6", + "state": "13", + "county": "261" + }, + { + "DP05_0001E": "1596", + "DP05_0019E": "228", + "DP05_0019PE": "14.3", + "state": "13", + "county": "265" + }, + { + "DP05_0001E": "8126", + "DP05_0019E": "1636", + "DP05_0019PE": "20.1", + "state": "13", + "county": "269" + }, + { + "DP05_0001E": "15871", + "DP05_0019E": "2606", + "DP05_0019PE": "16.4", + "state": "13", + "county": "271" + }, + { + "DP05_0001E": "44545", + "DP05_0019E": "10592", + "DP05_0019PE": "23.8", + "state": "13", + "county": "275" + }, + { + "DP05_0001E": "434903", + "DP05_0019E": "96068", + "DP05_0019PE": "22.1", + "state": "22", + "county": "051" + }, + { + "DP05_0001E": "243692", + "DP05_0019E": "57708", + "DP05_0019PE": "23.7", + "state": "22", + "county": "055" + }, + { + "DP05_0001E": "97980", + "DP05_0019E": "22773", + "DP05_0019PE": "23.2", + "state": "22", + "county": "057" + }, + { + "DP05_0001E": "14950", + "DP05_0019E": "3540", + "DP05_0019PE": "23.7", + "state": "22", + "county": "059" + }, + { + "DP05_0001E": "47118", + "DP05_0019E": "9426", + "DP05_0019PE": "20.0", + "state": "22", + "county": "061" + }, + { + "DP05_0001E": "140524", + "DP05_0019E": "36018", + "DP05_0019PE": "25.6", + "state": "22", + "county": "063" + }, + { + "DP05_0001E": "11137", + "DP05_0019E": "2661", + "DP05_0019PE": "23.9", + "state": "22", + "county": "065" + }, + { + "DP05_0001E": "25189", + "DP05_0019E": "6080", + "DP05_0019PE": "24.1", + "state": "22", + "county": "067" + }, + { + "DP05_0001E": "38505", + "DP05_0019E": "8966", + "DP05_0019PE": "23.3", + "state": "22", + "county": "069" + }, + { + "DP05_0001E": "391249", + "DP05_0019E": "78059", + "DP05_0019PE": "20.0", + "state": "22", + "county": "071" + }, + { + "DP05_0001E": "154679", + "DP05_0019E": "38490", + "DP05_0019PE": "24.9", + "state": "22", + "county": "073" + }, + { + "DP05_0001E": "23305", + "DP05_0019E": "6040", + "DP05_0019PE": "25.9", + "state": "22", + "county": "075" + }, + { + "DP05_0001E": "21883", + "DP05_0019E": "4828", + "DP05_0019PE": "22.1", + "state": "22", + "county": "077" + }, + { + "DP05_0001E": "130376", + "DP05_0019E": "32330", + "DP05_0019PE": "24.8", + "state": "22", + "county": "079" + }, + { + "DP05_0001E": "8462", + "DP05_0019E": "1997", + "DP05_0019PE": "23.6", + "state": "22", + "county": "081" + }, + { + "DP05_0001E": "20251", + "DP05_0019E": "4695", + "DP05_0019PE": "23.2", + "state": "22", + "county": "083" + }, + { + "DP05_0001E": "23915", + "DP05_0019E": "5609", + "DP05_0019PE": "23.5", + "state": "22", + "county": "085" + }, + { + "DP05_0001E": "46694", + "DP05_0019E": "12387", + "DP05_0019PE": "26.5", + "state": "22", + "county": "087" + }, + { + "DP05_0001E": "52856", + "DP05_0019E": "12892", + "DP05_0019PE": "24.4", + "state": "22", + "county": "089" + }, + { + "DP05_0001E": "10227", + "DP05_0019E": "2147", + "DP05_0019PE": "21.0", + "state": "22", + "county": "091" + }, + { + "DP05_0001E": "21142", + "DP05_0019E": "4772", + "DP05_0019PE": "22.6", + "state": "22", + "county": "093" + }, + { + "DP05_0001E": "43055", + "DP05_0019E": "10721", + "DP05_0019PE": "24.9", + "state": "22", + "county": "095" + }, + { + "DP05_0001E": "82786", + "DP05_0019E": "22172", + "DP05_0019PE": "26.8", + "state": "22", + "county": "097" + }, + { + "DP05_0001E": "53607", + "DP05_0019E": "12918", + "DP05_0019PE": "24.1", + "state": "22", + "county": "099" + }, + { + "DP05_0001E": "258447", + "DP05_0019E": "61842", + "DP05_0019PE": "23.9", + "state": "22", + "county": "103" + }, + { + "DP05_0001E": "133753", + "DP05_0019E": "32779", + "DP05_0019PE": "24.5", + "state": "22", + "county": "105" + }, + { + "DP05_0001E": "111297", + "DP05_0019E": "28226", + "DP05_0019PE": "25.4", + "state": "22", + "county": "109" + }, + { + "DP05_0001E": "59787", + "DP05_0019E": "15217", + "DP05_0019PE": "25.5", + "state": "22", + "county": "113" + }, + { + "DP05_0001E": "49315", + "DP05_0019E": "12242", + "DP05_0019PE": "24.8", + "state": "22", + "county": "115" + }, + { + "DP05_0001E": "38813", + "DP05_0019E": "8769", + "DP05_0019PE": "22.6", + "state": "22", + "county": "119" + }, + { + "DP05_0001E": "26395", + "DP05_0019E": "6333", + "DP05_0019PE": "24.0", + "state": "22", + "county": "121" + }, + { + "DP05_0001E": "15441", + "DP05_0019E": "2526", + "DP05_0019PE": "16.4", + "state": "22", + "county": "125" + }, + { + "DP05_0001E": "14165", + "DP05_0019E": "2917", + "DP05_0019PE": "20.6", + "state": "22", + "county": "127" + }, + { + "DP05_0001E": "306165", + "DP05_0019E": "56475", + "DP05_0019PE": "18.4", + "state": "36", + "county": "001" + }, + { + "DP05_0001E": "1427056", + "DP05_0019E": "354681", + "DP05_0019PE": "24.9", + "state": "36", + "county": "005" + }, + { + "DP05_0001E": "192042", + "DP05_0019E": "37179", + "DP05_0019PE": "19.4", + "state": "36", + "county": "007" + }, + { + "DP05_0001E": "76958", + "DP05_0019E": "15144", + "DP05_0019PE": "19.7", + "state": "36", + "county": "011" + }, + { + "DP05_0001E": "127584", + "DP05_0019E": "25990", + "DP05_0019PE": "20.4", + "state": "36", + "county": "013" + }, + { + "DP05_0001E": "47527", + "DP05_0019E": "9855", + "DP05_0019PE": "20.7", + "state": "36", + "county": "017" + }, + { + "DP05_0001E": "80320", + "DP05_0019E": "14419", + "DP05_0019PE": "18.0", + "state": "36", + "county": "019" + }, + { + "DP05_0001E": "47618", + "DP05_0019E": "8998", + "DP05_0019PE": "18.9", + "state": "36", + "county": "023" + }, + { + "DP05_0001E": "44676", + "DP05_0019E": "7476", + "DP05_0019PE": "16.7", + "state": "36", + "county": "025" + }, + { + "DP05_0001E": "918873", + "DP05_0019E": "186552", + "DP05_0019PE": "20.3", + "state": "36", + "county": "029" + }, + { + "DP05_0001E": "50389", + "DP05_0019E": "9748", + "DP05_0019PE": "19.3", + "state": "36", + "county": "033" + }, + { + "DP05_0001E": "53452", + "DP05_0019E": "10797", + "DP05_0019PE": "20.2", + "state": "36", + "county": "035" + }, + { + "DP05_0001E": "47335", + "DP05_0019E": "7807", + "DP05_0019PE": "16.5", + "state": "36", + "county": "039" + }, + { + "DP05_0001E": "4454", + "DP05_0019E": "600", + "DP05_0019PE": "13.5", + "state": "36", + "county": "041" + }, + { + "DP05_0001E": "111454", + "DP05_0019E": "26810", + "DP05_0019PE": "24.1", + "state": "36", + "county": "045" + }, + { + "DP05_0001E": "2576771", + "DP05_0019E": "588281", + "DP05_0019PE": "22.8", + "state": "36", + "county": "047" + }, + { + "DP05_0001E": "63218", + "DP05_0019E": "11200", + "DP05_0019PE": "17.7", + "state": "36", + "county": "051" + }, + { + "DP05_0001E": "70990", + "DP05_0019E": "13597", + "DP05_0019PE": "19.2", + "state": "36", + "county": "053" + }, + { + "DP05_0001E": "49294", + "DP05_0019E": "11309", + "DP05_0019PE": "22.9", + "state": "36", + "county": "057" + }, + { + "DP05_0001E": "1355683", + "DP05_0019E": "292536", + "DP05_0019PE": "21.6", + "state": "36", + "county": "059" + }, + { + "DP05_0001E": "210145", + "DP05_0019E": "42103", + "DP05_0019PE": "20.0", + "state": "36", + "county": "063" + }, + { + "DP05_0001E": "229074", + "DP05_0019E": "48676", + "DP05_0019PE": "21.2", + "state": "36", + "county": "065" + }, + { + "DP05_0001E": "109774", + "DP05_0019E": "22088", + "DP05_0019PE": "20.1", + "state": "36", + "county": "069" + }, + { + "DP05_0001E": "382077", + "DP05_0019E": "97529", + "DP05_0019PE": "25.5", + "state": "36", + "county": "071" + }, + { + "DP05_0001E": "117630", + "DP05_0019E": "24812", + "DP05_0019PE": "21.1", + "state": "36", + "county": "075" + }, + { + "DP05_0001E": "57917", + "DP05_0019E": "11105", + "DP05_0019PE": "19.2", + "state": "48", + "county": "001" + }, + { + "DP05_0001E": "87119", + "DP05_0019E": "22197", + "DP05_0019PE": "25.5", + "state": "48", + "county": "005" + }, + { + "DP05_0001E": "24220", + "DP05_0019E": "4866", + "DP05_0019PE": "20.1", + "state": "48", + "county": "007" + }, + { + "DP05_0001E": "1950", + "DP05_0019E": "456", + "DP05_0019PE": "23.4", + "state": "48", + "county": "011" + }, + { + "DP05_0001E": "50194", + "DP05_0019E": "13588", + "DP05_0019PE": "27.1", + "state": "48", + "county": "013" + }, + { + "DP05_0001E": "6916", + "DP05_0019E": "1967", + "DP05_0019PE": "28.4", + "state": "48", + "county": "017" + }, + { + "DP05_0001E": "22770", + "DP05_0019E": "3805", + "DP05_0019PE": "16.7", + "state": "48", + "county": "019" + }, + { + "DP05_0001E": "3560", + "DP05_0019E": "796", + "DP05_0019PE": "22.4", + "state": "48", + "county": "023" + }, + { + "DP05_0001E": "32609", + "DP05_0019E": "6937", + "DP05_0019PE": "21.3", + "state": "48", + "county": "025" + }, + { + "DP05_0001E": "1978826", + "DP05_0019E": "505237", + "DP05_0019PE": "25.5", + "state": "48", + "county": "029" + }, + { + "DP05_0001E": "11733", + "DP05_0019E": "2079", + "DP05_0019PE": "17.7", + "state": "48", + "county": "031" + }, + { + "DP05_0001E": "18428", + "DP05_0019E": "3892", + "DP05_0019PE": "21.1", + "state": "48", + "county": "035" + }, + { + "DP05_0001E": "368062", + "DP05_0019E": "96889", + "DP05_0019PE": "26.3", + "state": "48", + "county": "039" + }, + { + "DP05_0001E": "226370", + "DP05_0019E": "46638", + "DP05_0019PE": "20.6", + "state": "48", + "county": "041" + }, + { + "DP05_0001E": "1348", + "DP05_0019E": "225", + "DP05_0019PE": "16.7", + "state": "48", + "county": "045" + }, + { + "DP05_0001E": "7100", + "DP05_0019E": "1662", + "DP05_0019PE": "23.4", + "state": "48", + "county": "047" + }, + { + "DP05_0001E": "18237", + "DP05_0019E": "4002", + "DP05_0019PE": "21.9", + "state": "48", + "county": "051" + }, + { + "DP05_0001E": "47548", + "DP05_0019E": "9988", + "DP05_0019PE": "21.0", + "state": "48", + "county": "053" + }, + { + "DP05_0001E": "21470", + "DP05_0019E": "5209", + "DP05_0019PE": "24.3", + "state": "48", + "county": "057" + }, + { + "DP05_0001E": "13959", + "DP05_0019E": "3062", + "DP05_0019PE": "21.9", + "state": "48", + "county": "059" + }, + { + "DP05_0001E": "12938", + "DP05_0019E": "3398", + "DP05_0019PE": "26.3", + "state": "48", + "county": "063" + }, + { + "DP05_0001E": "5957", + "DP05_0019E": "1388", + "DP05_0019PE": "23.3", + "state": "48", + "county": "065" + }, + { + "DP05_0001E": "7561", + "DP05_0019E": "2190", + "DP05_0019PE": "29.0", + "state": "48", + "county": "069" + }, + { + "DP05_0001E": "42571", + "DP05_0019E": "12015", + "DP05_0019PE": "28.2", + "state": "48", + "county": "071" + }, + { + "DP05_0001E": "7219", + "DP05_0019E": "1348", + "DP05_0019PE": "18.7", + "state": "48", + "county": "075" + }, + { + "DP05_0001E": "10444", + "DP05_0019E": "2105", + "DP05_0019PE": "20.2", + "state": "48", + "county": "077" + }, + { + "DP05_0001E": "3298", + "DP05_0019E": "706", + "DP05_0019PE": "21.4", + "state": "48", + "county": "081" + }, + { + "DP05_0001E": "8281", + "DP05_0019E": "1796", + "DP05_0019PE": "21.7", + "state": "48", + "county": "083" + }, + { + "DP05_0001E": "2939", + "DP05_0019E": "747", + "DP05_0019PE": "25.4", + "state": "48", + "county": "087" + }, + { + "DP05_0001E": "21357", + "DP05_0019E": "5030", + "DP05_0019PE": "23.6", + "state": "48", + "county": "089" + }, + { + "DP05_0001E": "148921", + "DP05_0019E": "33601", + "DP05_0019PE": "22.6", + "state": "48", + "county": "091" + }, + { + "DP05_0001E": "13597", + "DP05_0019E": "3035", + "DP05_0019PE": "22.3", + "state": "48", + "county": "093" + }, + { + "DP05_0001E": "3018", + "DP05_0019E": "529", + "DP05_0019PE": "17.5", + "state": "48", + "county": "095" + }, + { + "DP05_0001E": "40428", + "DP05_0019E": "9634", + "DP05_0019PE": "23.8", + "state": "48", + "county": "097" + }, + { + "DP05_0001E": "75576", + "DP05_0019E": "17218", + "DP05_0019PE": "22.8", + "state": "48", + "county": "099" + }, + { + "DP05_0001E": "1624", + "DP05_0019E": "462", + "DP05_0019PE": "28.4", + "state": "48", + "county": "101" + }, + { + "DP05_0001E": "4739", + "DP05_0019E": "1483", + "DP05_0019PE": "31.3", + "state": "48", + "county": "103" + }, + { + "DP05_0001E": "3393", + "DP05_0019E": "792", + "DP05_0019PE": "23.3", + "state": "48", + "county": "105" + }, + { + "DP05_0001E": "5753", + "DP05_0019E": "1499", + "DP05_0019PE": "26.1", + "state": "48", + "county": "107" + }, + { + "DP05_0001E": "2183", + "DP05_0019E": "591", + "DP05_0019PE": "27.1", + "state": "48", + "county": "109" + }, + { + "DP05_0001E": "7272", + "DP05_0019E": "2358", + "DP05_0019PE": "32.4", + "state": "48", + "county": "111" + }, + { + "DP05_0001E": "2622634", + "DP05_0019E": "685818", + "DP05_0019PE": "26.1", + "state": "48", + "county": "113" + }, + { + "DP05_0001E": "12849", + "DP05_0019E": "3320", + "DP05_0019PE": "25.8", + "state": "48", + "county": "115" + }, + { + "DP05_0001E": "18617", + "DP05_0019E": "5798", + "DP05_0019PE": "31.1", + "state": "48", + "county": "117" + }, + { + "DP05_0001E": "5277", + "DP05_0019E": "1220", + "DP05_0019PE": "23.1", + "state": "48", + "county": "119" + }, + { + "DP05_0001E": "61776", + "DP05_0019E": "14076", + "DP05_0019PE": "22.8", + "state": "39", + "county": "083" + }, + { + "DP05_0001E": "175409", + "DP05_0019E": "40629", + "DP05_0019PE": "23.2", + "state": "39", + "county": "089" + }, + { + "DP05_0001E": "430319", + "DP05_0019E": "99028", + "DP05_0019PE": "23.0", + "state": "39", + "county": "095" + }, + { + "DP05_0001E": "228452", + "DP05_0019E": "45945", + "DP05_0019PE": "20.1", + "state": "39", + "county": "099" + }, + { + "DP05_0001E": "22974", + "DP05_0019E": "5134", + "DP05_0019PE": "22.3", + "state": "39", + "county": "105" + }, + { + "DP05_0001E": "13827", + "DP05_0019E": "2849", + "DP05_0019PE": "20.6", + "state": "39", + "county": "111" + }, + { + "DP05_0001E": "35148", + "DP05_0019E": "7960", + "DP05_0019PE": "22.6", + "state": "39", + "county": "117" + }, + { + "DP05_0001E": "40557", + "DP05_0019E": "7494", + "DP05_0019PE": "18.5", + "state": "39", + "county": "123" + }, + { + "DP05_0001E": "58112", + "DP05_0019E": "12475", + "DP05_0019PE": "21.5", + "state": "39", + "county": "129" + }, + { + "DP05_0001E": "11815", + "DP05_0019E": "1449", + "DP05_0019PE": "12.3", + "state": "13", + "county": "281" + }, + { + "DP05_0001E": "6787", + "DP05_0019E": "1614", + "DP05_0019PE": "23.8", + "state": "13", + "county": "283" + }, + { + "DP05_0001E": "7920", + "DP05_0019E": "1931", + "DP05_0019PE": "24.4", + "state": "13", + "county": "287" + }, + { + "DP05_0001E": "23999", + "DP05_0019E": "3826", + "DP05_0019PE": "15.9", + "state": "13", + "county": "291" + }, + { + "DP05_0001E": "26329", + "DP05_0019E": "5923", + "DP05_0019PE": "22.5", + "state": "13", + "county": "293" + }, + { + "DP05_0001E": "93284", + "DP05_0019E": "22929", + "DP05_0019PE": "24.6", + "state": "13", + "county": "297" + }, + { + "DP05_0001E": "35745", + "DP05_0019E": "8614", + "DP05_0019PE": "24.1", + "state": "13", + "county": "299" + }, + { + "DP05_0001E": "20316", + "DP05_0019E": "4355", + "DP05_0019PE": "21.4", + "state": "13", + "county": "303" + }, + { + "DP05_0001E": "2587", + "DP05_0019E": "576", + "DP05_0019PE": "22.3", + "state": "13", + "county": "307" + }, + { + "DP05_0001E": "7897", + "DP05_0019E": "1326", + "DP05_0019PE": "16.8", + "state": "13", + "county": "309" + }, + { + "DP05_0001E": "104122", + "DP05_0019E": "27000", + "DP05_0019PE": "25.9", + "state": "13", + "county": "313" + }, + { + "DP05_0001E": "8701", + "DP05_0019E": "1624", + "DP05_0019PE": "18.7", + "state": "13", + "county": "315" + }, + { + "DP05_0001E": "8945", + "DP05_0019E": "2030", + "DP05_0019PE": "22.7", + "state": "13", + "county": "319" + }, + { + "DP05_0001E": "201350", + "DP05_0019E": "43256", + "DP05_0019PE": "21.5", + "state": "15", + "county": "001" + }, + { + "DP05_0001E": "979682", + "DP05_0019E": "207048", + "DP05_0019PE": "21.1", + "state": "15", + "county": "003" + }, + { "DP05_0001E": "436", "DP05_0019E": "1", "DP05_0019PE": "0.2", "state": "15", "county": "005" }, + { + "DP05_0001E": "71949", + "DP05_0019E": "15643", + "DP05_0019PE": "21.7", + "state": "15", + "county": "007" + }, + { + "DP05_0001E": "166657", + "DP05_0019E": "36299", + "DP05_0019PE": "21.8", + "state": "15", + "county": "009" + }, + { + "DP05_0001E": "469473", + "DP05_0019E": "110686", + "DP05_0019PE": "23.6", + "state": "16", + "county": "001" + }, + { + "DP05_0001E": "4200", + "DP05_0019E": "686", + "DP05_0019PE": "16.3", + "state": "16", + "county": "003" + }, + { + "DP05_0001E": "86742", + "DP05_0019E": "22625", + "DP05_0019PE": "26.1", + "state": "16", + "county": "005" + }, + { + "DP05_0001E": "6054", + "DP05_0019E": "1604", + "DP05_0019PE": "26.5", + "state": "16", + "county": "007" + }, + { + "DP05_0001E": "9231", + "DP05_0019E": "2091", + "DP05_0019PE": "22.7", + "state": "16", + "county": "009" + }, + { + "DP05_0001E": "46246", + "DP05_0019E": "14202", + "DP05_0019PE": "30.7", + "state": "16", + "county": "011" + }, + { + "DP05_0001E": "22729", + "DP05_0019E": "4911", + "DP05_0019PE": "21.6", + "state": "16", + "county": "013" + }, + { + "DP05_0001E": "7625", + "DP05_0019E": "1203", + "DP05_0019PE": "15.8", + "state": "16", + "county": "015" + }, + { + "DP05_0001E": "44688", + "DP05_0019E": "8814", + "DP05_0019PE": "19.7", + "state": "16", + "county": "017" + }, + { + "DP05_0001E": "116970", + "DP05_0019E": "35957", + "DP05_0019PE": "30.7", + "state": "16", + "county": "019" + }, + { + "DP05_0001E": "12156", + "DP05_0019E": "2838", + "DP05_0019PE": "23.3", + "state": "16", + "county": "021" + }, + { + "DP05_0001E": "2603", + "DP05_0019E": "559", + "DP05_0019PE": "21.5", + "state": "16", + "county": "023" + }, + { + "DP05_0001E": "1069", + "DP05_0019E": "241", + "DP05_0019PE": "22.5", + "state": "16", + "county": "025" + }, + { + "DP05_0001E": "223890", + "DP05_0019E": "63420", + "DP05_0019PE": "28.3", + "state": "16", + "county": "027" + }, + { + "DP05_0001E": "7028", + "DP05_0019E": "1996", + "DP05_0019PE": "28.4", + "state": "16", + "county": "029" + }, + { + "DP05_0001E": "23847", + "DP05_0019E": "7570", + "DP05_0019PE": "31.7", + "state": "16", + "county": "031" + }, + { + "DP05_0001E": "885", + "DP05_0019E": "228", + "DP05_0019PE": "25.8", + "state": "16", + "county": "033" + }, + { + "DP05_0001E": "4193", + "DP05_0019E": "760", + "DP05_0019PE": "18.1", + "state": "16", + "county": "037" + }, + { + "DP05_0001E": "13736", + "DP05_0019E": "4395", + "DP05_0019PE": "32.0", + "state": "16", + "county": "041" + }, + { + "DP05_0001E": "13111", + "DP05_0019E": "3347", + "DP05_0019PE": "25.5", + "state": "16", + "county": "043" + }, + { + "DP05_0001E": "15280", + "DP05_0019E": "4164", + "DP05_0019PE": "27.3", + "state": "16", + "county": "047" + }, + { + "DP05_0001E": "16511", + "DP05_0019E": "3205", + "DP05_0019PE": "19.4", + "state": "16", + "county": "049" + }, + { + "DP05_0001E": "24074", + "DP05_0019E": "7377", + "DP05_0019PE": "30.6", + "state": "16", + "county": "053" + }, + { + "DP05_0001E": "40052", + "DP05_0019E": "7386", + "DP05_0019PE": "18.4", + "state": "16", + "county": "057" + }, + { + "DP05_0001E": "7929", + "DP05_0019E": "1422", + "DP05_0019PE": "17.9", + "state": "16", + "county": "059" + }, + { + "DP05_0001E": "5342", + "DP05_0019E": "1566", + "DP05_0019PE": "29.3", + "state": "16", + "county": "063" + }, + { + "DP05_0001E": "39725", + "DP05_0019E": "10700", + "DP05_0019PE": "26.9", + "state": "16", + "county": "065" + }, + { + "DP05_0001E": "40468", + "DP05_0019E": "8586", + "DP05_0019PE": "21.2", + "state": "16", + "county": "069" + }, + { + "DP05_0001E": "11724", + "DP05_0019E": "3030", + "DP05_0019PE": "25.8", + "state": "16", + "county": "073" + }, + { + "DP05_0001E": "40590", + "DP05_0019E": "10036", + "DP05_0019PE": "24.7", + "state": "13", + "county": "277" + }, + { + "DP05_0001E": "23705", + "DP05_0019E": "6213", + "DP05_0019PE": "26.2", + "state": "16", + "county": "075" + }, + { + "DP05_0001E": "12700", + "DP05_0019E": "2562", + "DP05_0019PE": "20.2", + "state": "16", + "county": "079" + }, + { + "DP05_0001E": "11776", + "DP05_0019E": "2891", + "DP05_0019PE": "24.5", + "state": "16", + "county": "081" + }, + { + "DP05_0001E": "11085", + "DP05_0019E": "1877", + "DP05_0019PE": "16.9", + "state": "16", + "county": "085" + }, + { + "DP05_0001E": "10128", + "DP05_0019E": "2325", + "DP05_0019PE": "23.0", + "state": "16", + "county": "087" + }, + { + "DP05_0001E": "6011", + "DP05_0019E": "1359", + "DP05_0019PE": "22.6", + "state": "17", + "county": "003" + }, + { + "DP05_0001E": "53293", + "DP05_0019E": "13178", + "DP05_0019PE": "24.7", + "state": "17", + "county": "007" + }, + { + "DP05_0001E": "6599", + "DP05_0019E": "1183", + "DP05_0019PE": "17.9", + "state": "17", + "county": "009" + }, + { + "DP05_0001E": "4782", + "DP05_0019E": "984", + "DP05_0019PE": "20.6", + "state": "17", + "county": "013" + }, + { + "DP05_0001E": "14398", + "DP05_0019E": "2721", + "DP05_0019PE": "18.9", + "state": "17", + "county": "015" + }, + { + "DP05_0001E": "210006", + "DP05_0019E": "39634", + "DP05_0019PE": "18.9", + "state": "17", + "county": "019" + }, + { + "DP05_0001E": "15602", + "DP05_0019E": "3509", + "DP05_0019PE": "22.5", + "state": "17", + "county": "023" + }, + { + "DP05_0001E": "59593", + "DP05_0019E": "9498", + "DP05_0019PE": "15.9", + "state": "36", + "county": "077" + }, + { + "DP05_0001E": "2270976", + "DP05_0019E": "457287", + "DP05_0019PE": "20.1", + "state": "36", + "county": "081" + }, + { + "DP05_0001E": "159013", + "DP05_0019E": "31058", + "DP05_0019PE": "19.5", + "state": "36", + "county": "083" + }, + { + "DP05_0001E": "325213", + "DP05_0019E": "91903", + "DP05_0019PE": "28.3", + "state": "36", + "county": "087" + }, + { + "DP05_0001E": "108352", + "DP05_0019E": "21765", + "DP05_0019PE": "20.1", + "state": "36", + "county": "089" + }, + { + "DP05_0001E": "229313", + "DP05_0019E": "45771", + "DP05_0019PE": "20.0", + "state": "36", + "county": "091" + }, + { + "DP05_0001E": "155086", + "DP05_0019E": "33529", + "DP05_0019PE": "21.6", + "state": "36", + "county": "093" + }, + { + "DP05_0001E": "31189", + "DP05_0019E": "5518", + "DP05_0019PE": "17.7", + "state": "36", + "county": "095" + }, + { + "DP05_0001E": "17845", + "DP05_0019E": "3406", + "DP05_0019PE": "19.1", + "state": "36", + "county": "097" + }, + { + "DP05_0001E": "34295", + "DP05_0019E": "6858", + "DP05_0019PE": "20.0", + "state": "36", + "county": "099" + }, + { + "DP05_0001E": "95843", + "DP05_0019E": "20696", + "DP05_0019PE": "21.6", + "state": "36", + "county": "101" + }, + { + "DP05_0001E": "1481364", + "DP05_0019E": "313746", + "DP05_0019PE": "21.2", + "state": "36", + "county": "103" + }, + { + "DP05_0001E": "75329", + "DP05_0019E": "16012", + "DP05_0019PE": "21.3", + "state": "36", + "county": "105" + }, + { + "DP05_0001E": "48431", + "DP05_0019E": "10095", + "DP05_0019PE": "20.8", + "state": "36", + "county": "107" + }, + { + "DP05_0001E": "102237", + "DP05_0019E": "15069", + "DP05_0019PE": "14.7", + "state": "36", + "county": "109" + }, + { + "DP05_0001E": "178371", + "DP05_0019E": "31538", + "DP05_0019PE": "17.7", + "state": "36", + "county": "111" + }, + { + "DP05_0001E": "64187", + "DP05_0019E": "11640", + "DP05_0019PE": "18.1", + "state": "36", + "county": "113" + }, + { + "DP05_0001E": "61304", + "DP05_0019E": "11535", + "DP05_0019PE": "18.8", + "state": "36", + "county": "115" + }, + { + "DP05_0001E": "90103", + "DP05_0019E": "19299", + "DP05_0019PE": "21.4", + "state": "36", + "county": "117" + }, + { + "DP05_0001E": "968738", + "DP05_0019E": "212908", + "DP05_0019PE": "22.0", + "state": "36", + "county": "119" + }, + { + "DP05_0001E": "40027", + "DP05_0019E": "7603", + "DP05_0019PE": "19.0", + "state": "36", + "county": "121" + }, + { + "DP05_0001E": "24981", + "DP05_0019E": "5625", + "DP05_0019PE": "22.5", + "state": "36", + "county": "123" + }, + { + "DP05_0001E": "166144", + "DP05_0019E": "36877", + "DP05_0019PE": "22.2", + "state": "37", + "county": "001" + }, + { + "DP05_0001E": "37271", + "DP05_0019E": "7518", + "DP05_0019PE": "20.2", + "state": "37", + "county": "003" + }, + { + "DP05_0001E": "11085", + "DP05_0019E": "1906", + "DP05_0019PE": "17.2", + "state": "37", + "county": "005" + }, + { + "DP05_0001E": "27009", + "DP05_0019E": "4763", + "DP05_0019PE": "17.6", + "state": "37", + "county": "009" + }, + { + "DP05_0001E": "17510", + "DP05_0019E": "2522", + "DP05_0019PE": "14.4", + "state": "37", + "county": "011" + }, + { + "DP05_0001E": "19081", + "DP05_0019E": "3249", + "DP05_0019PE": "17.0", + "state": "37", + "county": "015" + }, + { + "DP05_0001E": "33209", + "DP05_0019E": "6849", + "DP05_0019PE": "20.6", + "state": "37", + "county": "017" + }, + { + "DP05_0001E": "259576", + "DP05_0019E": "48038", + "DP05_0019PE": "18.5", + "state": "37", + "county": "021" + }, + { + "DP05_0001E": "90148", + "DP05_0019E": "16853", + "DP05_0019PE": "18.7", + "state": "37", + "county": "023" + }, + { + "DP05_0001E": "82056", + "DP05_0019E": "16632", + "DP05_0019PE": "20.3", + "state": "37", + "county": "027" + }, + { + "DP05_0001E": "10654", + "DP05_0019E": "2420", + "DP05_0019PE": "22.7", + "state": "37", + "county": "029" + }, + { + "DP05_0001E": "22619", + "DP05_0019E": "4220", + "DP05_0019PE": "18.7", + "state": "37", + "county": "033" + }, + { + "DP05_0001E": "158507", + "DP05_0019E": "35114", + "DP05_0019PE": "22.2", + "state": "37", + "county": "035" + }, + { + "DP05_0001E": "28413", + "DP05_0019E": "4640", + "DP05_0019PE": "16.3", + "state": "37", + "county": "039" + }, + { + "DP05_0001E": "13995", + "DP05_0019E": "2799", + "DP05_0019PE": "20.0", + "state": "37", + "county": "041" + }, + { + "DP05_0001E": "11150", + "DP05_0019E": "1866", + "DP05_0019PE": "16.7", + "state": "37", + "county": "043" + }, + { + "DP05_0001E": "55659", + "DP05_0019E": "11681", + "DP05_0019PE": "21.0", + "state": "37", + "county": "047" + }, + { + "DP05_0001E": "102290", + "DP05_0019E": "22127", + "DP05_0019PE": "21.6", + "state": "37", + "county": "049" + }, + { + "DP05_0001E": "27210", + "DP05_0019E": "6045", + "DP05_0019PE": "22.2", + "state": "37", + "county": "053" + }, + { + "DP05_0001E": "36698", + "DP05_0019E": "6900", + "DP05_0019PE": "18.8", + "state": "37", + "county": "055" + }, + { + "DP05_0001E": "42543", + "DP05_0019E": "9021", + "DP05_0019PE": "21.2", + "state": "37", + "county": "059" + }, + { + "DP05_0001E": "58965", + "DP05_0019E": "14165", + "DP05_0019PE": "24.0", + "state": "37", + "county": "061" + }, + { + "DP05_0001E": "52069", + "DP05_0019E": "11748", + "DP05_0019PE": "22.6", + "state": "37", + "county": "065" + }, + { + "DP05_0001E": "378499", + "DP05_0019E": "87191", + "DP05_0019PE": "23.0", + "state": "37", + "county": "067" + }, + { + "DP05_0001E": "222119", + "DP05_0019E": "50147", + "DP05_0019PE": "22.6", + "state": "37", + "county": "071" + }, + { + "DP05_0001E": "11519", + "DP05_0019E": "2324", + "DP05_0019PE": "20.2", + "state": "37", + "county": "073" + }, + { + "DP05_0001E": "59823", + "DP05_0019E": "12301", + "DP05_0019PE": "20.6", + "state": "37", + "county": "077" + }, + { + "DP05_0001E": "20987", + "DP05_0019E": "4251", + "DP05_0019PE": "20.3", + "state": "37", + "county": "079" + }, + { + "DP05_0001E": "50678", + "DP05_0019E": "10829", + "DP05_0019PE": "21.4", + "state": "37", + "county": "083" + }, + { + "DP05_0001E": "134328", + "DP05_0019E": "35003", + "DP05_0019PE": "26.1", + "state": "37", + "county": "085" + }, + { + "DP05_0001E": "116298", + "DP05_0019E": "22109", + "DP05_0019PE": "19.0", + "state": "37", + "county": "089" + }, + { + "DP05_0001E": "23752", + "DP05_0019E": "4455", + "DP05_0019PE": "18.8", + "state": "37", + "county": "091" + }, + { + "DP05_0001E": "54590", + "DP05_0019E": "14923", + "DP05_0019PE": "27.3", + "state": "37", + "county": "093" + }, + { + "DP05_0001E": "178853", + "DP05_0019E": "41053", + "DP05_0019PE": "23.0", + "state": "37", + "county": "097" + }, + { + "DP05_0001E": "43435", + "DP05_0019E": "7238", + "DP05_0019PE": "16.7", + "state": "37", + "county": "099" + }, + { + "DP05_0001E": "861690", + "DP05_0019E": "212492", + "DP05_0019PE": "24.7", + "state": "48", + "county": "121" + }, + { + "DP05_0001E": "20217", + "DP05_0019E": "4562", + "DP05_0019PE": "22.6", + "state": "48", + "county": "123" + }, + { + "DP05_0001E": "2182", + "DP05_0019E": "453", + "DP05_0019PE": "20.8", + "state": "48", + "county": "125" + }, + { + "DP05_0001E": "10232", + "DP05_0019E": "2912", + "DP05_0019PE": "28.5", + "state": "48", + "county": "127" + }, + { + "DP05_0001E": "3317", + "DP05_0019E": "667", + "DP05_0019PE": "20.1", + "state": "48", + "county": "129" + }, + { + "DP05_0001E": "11194", + "DP05_0019E": "2872", + "DP05_0019PE": "25.7", + "state": "48", + "county": "131" + }, + { + "DP05_0001E": "162067", + "DP05_0019E": "49111", + "DP05_0019PE": "30.3", + "state": "48", + "county": "135" + }, + { + "DP05_0001E": "1944", + "DP05_0019E": "414", + "DP05_0019PE": "21.3", + "state": "48", + "county": "137" + }, + { + "DP05_0001E": "836915", + "DP05_0019E": "227515", + "DP05_0019PE": "27.2", + "state": "48", + "county": "141" + }, + { + "DP05_0001E": "42226", + "DP05_0019E": "8751", + "DP05_0019PE": "20.7", + "state": "48", + "county": "143" + }, + { + "DP05_0001E": "35046", + "DP05_0019E": "7419", + "DP05_0019PE": "21.2", + "state": "48", + "county": "147" + }, + { + "DP05_0001E": "25247", + "DP05_0019E": "5117", + "DP05_0019PE": "20.3", + "state": "48", + "county": "149" + }, + { + "DP05_0001E": "5782", + "DP05_0019E": "1554", + "DP05_0019PE": "26.9", + "state": "48", + "county": "153" + }, + { + "DP05_0001E": "1207", + "DP05_0019E": "215", + "DP05_0019PE": "17.8", + "state": "48", + "county": "155" + }, + { + "DP05_0001E": "10767", + "DP05_0019E": "2569", + "DP05_0019PE": "23.9", + "state": "48", + "county": "159" + }, + { + "DP05_0001E": "19744", + "DP05_0019E": "4476", + "DP05_0019PE": "22.7", + "state": "48", + "county": "161" + }, + { + "DP05_0001E": "21077", + "DP05_0019E": "7539", + "DP05_0019PE": "35.8", + "state": "48", + "county": "165" + }, + { + "DP05_0001E": "6028", + "DP05_0019E": "834", + "DP05_0019PE": "13.8", + "state": "48", + "county": "169" + }, + { + "DP05_0001E": "26668", + "DP05_0019E": "5328", + "DP05_0019PE": "20.0", + "state": "48", + "county": "171" + }, + { + "DP05_0001E": "7578", + "DP05_0019E": "1606", + "DP05_0019PE": "21.2", + "state": "48", + "county": "175" + }, + { + "DP05_0001E": "20828", + "DP05_0019E": "5621", + "DP05_0019PE": "27.0", + "state": "48", + "county": "177" + }, + { + "DP05_0001E": "133527", + "DP05_0019E": "31692", + "DP05_0019PE": "23.7", + "state": "48", + "county": "181" + }, + { + "DP05_0001E": "123633", + "DP05_0019E": "31877", + "DP05_0019PE": "25.8", + "state": "48", + "county": "183" + }, + { + "DP05_0001E": "163030", + "DP05_0019E": "40854", + "DP05_0019PE": "25.1", + "state": "48", + "county": "187" + }, + { + "DP05_0001E": "33463", + "DP05_0019E": "9088", + "DP05_0019PE": "27.2", + "state": "48", + "county": "189" + }, + { + "DP05_0001E": "8434", + "DP05_0019E": "1760", + "DP05_0019PE": "20.9", + "state": "48", + "county": "193" + }, + { + "DP05_0001E": "5431", + "DP05_0019E": "1607", + "DP05_0019PE": "29.6", + "state": "48", + "county": "195" + }, + { + "DP05_0001E": "57356", + "DP05_0019E": "14126", + "DP05_0019PE": "24.6", + "state": "48", + "county": "199" + }, + { + "DP05_0001E": "4680609", + "DP05_0019E": "1248951", + "DP05_0019PE": "26.7", + "state": "48", + "county": "201" + }, + { + "DP05_0001E": "5588", + "DP05_0019E": "1200", + "DP05_0019PE": "21.5", + "state": "48", + "county": "205" + }, + { + "DP05_0001E": "5711", + "DP05_0019E": "1056", + "DP05_0019PE": "18.5", + "state": "48", + "county": "207" + }, + { + "DP05_0001E": "3901", + "DP05_0019E": "1133", + "DP05_0019PE": "29.0", + "state": "48", + "county": "211" + }, + { + "DP05_0001E": "81969", + "DP05_0019E": "17491", + "DP05_0019PE": "21.3", + "state": "48", + "county": "213" + }, + { + "DP05_0001E": "36109", + "DP05_0019E": "8396", + "DP05_0019PE": "23.3", + "state": "48", + "county": "217" + }, + { + "DP05_0001E": "22986", + "DP05_0019E": "6024", + "DP05_0019PE": "26.2", + "state": "48", + "county": "219" + }, + { + "DP05_0001E": "36708", + "DP05_0019E": "9028", + "DP05_0019PE": "24.6", + "state": "48", + "county": "223" + }, + { + "DP05_0001E": "22942", + "DP05_0019E": "4476", + "DP05_0019PE": "19.5", + "state": "48", + "county": "225" + }, + { + "DP05_0001E": "4687", + "DP05_0019E": "1115", + "DP05_0019PE": "23.8", + "state": "48", + "county": "229" + }, + { + "DP05_0001E": "96202", + "DP05_0019E": "22937", + "DP05_0019PE": "23.8", + "state": "48", + "county": "231" + }, + { + "DP05_0001E": "1553", + "DP05_0019E": "351", + "DP05_0019PE": "22.6", + "state": "48", + "county": "235" + }, + { + "DP05_0001E": "8888", + "DP05_0019E": "1854", + "DP05_0019PE": "20.9", + "state": "48", + "county": "237" + }, + { + "DP05_0001E": "35562", + "DP05_0019E": "8477", + "DP05_0019PE": "23.8", + "state": "48", + "county": "241" + }, + { + "DP05_0001E": "2245", + "DP05_0019E": "328", + "DP05_0019PE": "14.6", + "state": "48", + "county": "243" + }, + { + "DP05_0001E": "5187", + "DP05_0019E": "1794", + "DP05_0019PE": "34.6", + "state": "48", + "county": "247" + }, + { + "DP05_0001E": "40796", + "DP05_0019E": "11387", + "DP05_0019PE": "27.9", + "state": "48", + "county": "249" + }, + { + "DP05_0001E": "19874", + "DP05_0019E": "3478", + "DP05_0019PE": "17.5", + "state": "48", + "county": "253" + }, + { + "DP05_0001E": "15547", + "DP05_0019E": "3370", + "DP05_0019PE": "21.7", + "state": "48", + "county": "255" + }, + { + "DP05_0001E": "129792", + "DP05_0019E": "36143", + "DP05_0019PE": "27.8", + "state": "48", + "county": "257" + }, + { + "DP05_0001E": "45491", + "DP05_0019E": "10635", + "DP05_0019PE": "23.4", + "state": "48", + "county": "259" + }, + { + "DP05_0001E": "391", + "DP05_0019E": "121", + "DP05_0019PE": "30.9", + "state": "48", + "county": "261" + }, + { + "DP05_0001E": "704", + "DP05_0019E": "207", + "DP05_0019PE": "29.4", + "state": "48", + "county": "263" + }, + { + "DP05_0001E": "52195", + "DP05_0019E": "10009", + "DP05_0019PE": "19.2", + "state": "48", + "county": "265" + }, + { + "DP05_0001E": "4375", + "DP05_0019E": "793", + "DP05_0019PE": "18.1", + "state": "48", + "county": "267" + }, + { + "DP05_0001E": "279", + "DP05_0019E": "52", + "DP05_0019PE": "18.6", + "state": "48", + "county": "269" + }, + { + "DP05_0001E": "3674", + "DP05_0019E": "462", + "DP05_0019PE": "12.6", + "state": "48", + "county": "271" + }, + { + "DP05_0001E": "30725", + "DP05_0019E": "7495", + "DP05_0019PE": "24.4", + "state": "48", + "county": "273" + }, + { + "DP05_0001E": "3679", + "DP05_0019E": "938", + "DP05_0019PE": "25.5", + "state": "48", + "county": "275" + }, + { + "DP05_0001E": "49705", + "DP05_0019E": "11833", + "DP05_0019PE": "23.8", + "state": "48", + "county": "277" + }, + { + "DP05_0001E": "13018", + "DP05_0019E": "3603", + "DP05_0019PE": "27.7", + "state": "48", + "county": "279" + }, + { + "DP05_0001E": "21152", + "DP05_0019E": "4451", + "DP05_0019PE": "21.0", + "state": "48", + "county": "281" + }, + { + "DP05_0001E": "7551", + "DP05_0019E": "1573", + "DP05_0019PE": "20.8", + "state": "48", + "county": "283" + }, + { + "DP05_0001E": "162476", + "DP05_0019E": "30309", + "DP05_0019PE": "18.7", + "state": "39", + "county": "133" + }, + { + "DP05_0001E": "121043", + "DP05_0019E": "26271", + "DP05_0019PE": "21.7", + "state": "39", + "county": "139" + }, + { + "DP05_0001E": "75441", + "DP05_0019E": "16389", + "DP05_0019PE": "21.7", + "state": "39", + "county": "145" + }, + { + "DP05_0001E": "371516", + "DP05_0019E": "79829", + "DP05_0019PE": "21.5", + "state": "39", + "county": "151" + }, + { + "DP05_0001E": "92165", + "DP05_0019E": "21180", + "DP05_0019PE": "23.0", + "state": "39", + "county": "157" + }, + { + "DP05_0001E": "13045", + "DP05_0019E": "2907", + "DP05_0019PE": "22.3", + "state": "39", + "county": "163" + }, + { + "DP05_0001E": "5783", + "DP05_0019E": "1308", + "DP05_0019PE": "22.6", + "state": "40", + "county": "033" + }, + { + "DP05_0001E": "28929", + "DP05_0019E": "7179", + "DP05_0019PE": "24.8", + "state": "40", + "county": "039" + }, + { + "DP05_0001E": "3936", + "DP05_0019E": "898", + "DP05_0019PE": "22.8", + "state": "40", + "county": "045" + }, + { + "DP05_0001E": "55315", + "DP05_0019E": "13212", + "DP05_0019PE": "23.9", + "state": "40", + "county": "051" + }, + { + "DP05_0001E": "2663", + "DP05_0019E": "662", + "DP05_0019PE": "24.9", + "state": "40", + "county": "057" + }, + { + "DP05_0001E": "13265", + "DP05_0019E": "3184", + "DP05_0019PE": "24.0", + "state": "40", + "county": "063" + }, + { + "DP05_0001E": "11028", + "DP05_0019E": "2613", + "DP05_0019PE": "23.7", + "state": "40", + "county": "069" + }, + { + "DP05_0001E": "8816", + "DP05_0019E": "2090", + "DP05_0019PE": "23.7", + "state": "40", + "county": "075" + }, + { + "DP05_0001E": "34936", + "DP05_0019E": "8334", + "DP05_0019PE": "23.9", + "state": "40", + "county": "081" + }, + { + "DP05_0001E": "39921", + "DP05_0019E": "10207", + "DP05_0019PE": "25.6", + "state": "40", + "county": "087" + }, + { + "DP05_0001E": "7654", + "DP05_0019E": "1993", + "DP05_0019PE": "26.0", + "state": "40", + "county": "093" + }, + { + "DP05_0001E": "13972", + "DP05_0019E": "3242", + "DP05_0019PE": "23.2", + "state": "40", + "county": "099" + }, + { + "DP05_0001E": "10243", + "DP05_0019E": "2329", + "DP05_0019PE": "22.7", + "state": "40", + "county": "105" + }, + { + "DP05_0001E": "792668", + "DP05_0019E": "202179", + "DP05_0019PE": "25.5", + "state": "40", + "county": "109" + }, + { + "DP05_0001E": "31283", + "DP05_0019E": "7797", + "DP05_0019PE": "24.9", + "state": "40", + "county": "115" + }, + { + "DP05_0001E": "43955", + "DP05_0019E": "9829", + "DP05_0019PE": "22.4", + "state": "40", + "county": "121" + }, + { + "DP05_0001E": "11055", + "DP05_0019E": "2430", + "DP05_0019PE": "22.0", + "state": "40", + "county": "127" + }, + { + "DP05_0001E": "24624", + "DP05_0019E": "6104", + "DP05_0019PE": "24.8", + "state": "40", + "county": "133" + }, + { + "DP05_0001E": "20633", + "DP05_0019E": "6022", + "DP05_0019PE": "29.2", + "state": "40", + "county": "139" + }, + { + "DP05_0001E": "80264", + "DP05_0019E": "19446", + "DP05_0019PE": "24.2", + "state": "40", + "county": "145" + }, + { + "DP05_0001E": "8914", + "DP05_0019E": "1980", + "DP05_0019PE": "22.2", + "state": "40", + "county": "151" + }, + { + "DP05_0001E": "92168", + "DP05_0019E": "14935", + "DP05_0019PE": "16.2", + "state": "41", + "county": "003" + }, + { + "DP05_0001E": "11425", + "DP05_0019E": "3159", + "DP05_0019PE": "27.6", + "state": "41", + "county": "049" + }, + { + "DP05_0001E": "84730", + "DP05_0019E": "19150", + "DP05_0019PE": "22.6", + "state": "41", + "county": "053" + }, + { + "DP05_0001E": "77319", + "DP05_0019E": "19548", + "DP05_0019PE": "25.3", + "state": "41", + "county": "059" + }, + { + "DP05_0001E": "26274", + "DP05_0019E": "5882", + "DP05_0019PE": "22.4", + "state": "41", + "county": "065" + }, + { + "DP05_0001E": "106087", + "DP05_0019E": "23498", + "DP05_0019PE": "22.1", + "state": "41", + "county": "071" + }, + { + "DP05_0001E": "82731", + "DP05_0019E": "13852", + "DP05_0019PE": "16.7", + "state": "44", + "county": "005" + }, + { + "DP05_0001E": "102627", + "DP05_0019E": "20663", + "DP05_0019PE": "20.1", + "state": "42", + "county": "001" + }, + { + "DP05_0001E": "164781", + "DP05_0019E": "31915", + "DP05_0019PE": "19.4", + "state": "42", + "county": "007" + }, + { + "DP05_0001E": "122495", + "DP05_0019E": "24920", + "DP05_0019PE": "20.3", + "state": "42", + "county": "013" + }, + { + "DP05_0001E": "187798", + "DP05_0019E": "37577", + "DP05_0019PE": "20.0", + "state": "42", + "county": "019" + }, + { + "DP05_0001E": "63964", + "DP05_0019E": "12258", + "DP05_0019PE": "19.2", + "state": "42", + "county": "025" + }, + { + "DP05_0001E": "38633", + "DP05_0019E": "7281", + "DP05_0019PE": "18.8", + "state": "42", + "county": "031" + }, + { + "DP05_0001E": "65390", + "DP05_0019E": "11552", + "DP05_0019PE": "17.7", + "state": "42", + "county": "037" + }, + { + "DP05_0001E": "277071", + "DP05_0019E": "62309", + "DP05_0019PE": "22.5", + "state": "42", + "county": "043" + }, + { + "DP05_0001E": "272046", + "DP05_0019E": "57995", + "DP05_0019PE": "21.3", + "state": "42", + "county": "049" + }, + { + "DP05_0001E": "154954", + "DP05_0019E": "34597", + "DP05_0019PE": "22.3", + "state": "42", + "county": "055" + }, + { + "DP05_0001E": "45145", + "DP05_0019E": "8161", + "DP05_0019PE": "18.1", + "state": "42", + "county": "061" + }, + { + "DP05_0001E": "24657", + "DP05_0019E": "5538", + "DP05_0019PE": "22.5", + "state": "42", + "county": "067" + }, + { + "DP05_0001E": "86148", + "DP05_0019E": "17182", + "DP05_0019PE": "19.9", + "state": "42", + "county": "073" + }, + { + "DP05_0001E": "317547", + "DP05_0019E": "62857", + "DP05_0019PE": "19.8", + "state": "42", + "county": "079" + }, + { + "DP05_0001E": "46179", + "DP05_0019E": "10315", + "DP05_0019PE": "22.3", + "state": "42", + "county": "087" + }, + { + "DP05_0001E": "350722", + "DP05_0019E": "64297", + "DP05_0019PE": "18.3", + "state": "42", + "county": "129" + }, + { + "DP05_0001E": "169947", + "DP05_0019E": "36816", + "DP05_0019PE": "21.7", + "state": "45", + "county": "003" + }, + { + "DP05_0001E": "14236", + "DP05_0019E": "2807", + "DP05_0019PE": "19.7", + "state": "45", + "county": "009" + }, + { + "DP05_0001E": "222103", + "DP05_0019E": "52956", + "DP05_0019PE": "23.8", + "state": "45", + "county": "015" + }, + { + "DP05_0001E": "57110", + "DP05_0019E": "13163", + "DP05_0019PE": "23.0", + "state": "45", + "county": "021" + }, + { + "DP05_0001E": "33865", + "DP05_0019E": "6500", + "DP05_0019PE": "19.2", + "state": "45", + "county": "027" + }, + { + "DP05_0001E": "161309", + "DP05_0019E": "39588", + "DP05_0019PE": "24.5", + "state": "45", + "county": "035" + }, + { + "DP05_0001E": "138237", + "DP05_0019E": "32728", + "DP05_0019PE": "23.7", + "state": "45", + "county": "041" + }, + { + "DP05_0001E": "70672", + "DP05_0019E": "15995", + "DP05_0019PE": "22.6", + "state": "45", + "county": "047" + }, + { + "DP05_0001E": "13217", + "DP05_0019E": "3016", + "DP05_0019PE": "22.8", + "state": "17", + "county": "025" + }, + { + "DP05_0001E": "51065", + "DP05_0019E": "9173", + "DP05_0019PE": "18.0", + "state": "17", + "county": "029" + }, + { + "DP05_0001E": "5169517", + "DP05_0019E": "1128625", + "DP05_0019PE": "21.8", + "state": "17", + "county": "031" + }, + { + "DP05_0001E": "10787", + "DP05_0019E": "2430", + "DP05_0019PE": "22.5", + "state": "17", + "county": "035" + }, + { + "DP05_0001E": "104588", + "DP05_0019E": "22464", + "DP05_0019PE": "21.5", + "state": "17", + "county": "037" + }, + { + "DP05_0001E": "19551", + "DP05_0019E": "4857", + "DP05_0019PE": "24.8", + "state": "17", + "county": "041" + }, + { + "DP05_0001E": "17272", + "DP05_0019E": "3421", + "DP05_0019PE": "19.8", + "state": "17", + "county": "045" + }, + { + "DP05_0001E": "6431", + "DP05_0019E": "1474", + "DP05_0019PE": "22.9", + "state": "17", + "county": "047" + }, + { + "DP05_0001E": "21418", + "DP05_0019E": "4427", + "DP05_0019PE": "20.7", + "state": "17", + "county": "051" + }, + { + "DP05_0001E": "13155", + "DP05_0019E": "2975", + "DP05_0019PE": "22.6", + "state": "17", + "county": "053" + }, + { + "DP05_0001E": "34654", + "DP05_0019E": "6815", + "DP05_0019PE": "19.7", + "state": "17", + "county": "057" + }, + { + "DP05_0001E": "4983", + "DP05_0019E": "1046", + "DP05_0019PE": "21.0", + "state": "17", + "county": "059" + }, + { + "DP05_0001E": "50798", + "DP05_0019E": "12818", + "DP05_0019PE": "25.2", + "state": "17", + "county": "063" + }, + { + "DP05_0001E": "17820", + "DP05_0019E": "3736", + "DP05_0019PE": "21.0", + "state": "17", + "county": "067" + }, + { + "DP05_0001E": "3890", + "DP05_0019E": "551", + "DP05_0019PE": "14.2", + "state": "17", + "county": "069" + }, + { + "DP05_0001E": "49032", + "DP05_0019E": "10922", + "DP05_0019PE": "22.3", + "state": "17", + "county": "073" + }, + { + "DP05_0001E": "27437", + "DP05_0019E": "5954", + "DP05_0019PE": "21.7", + "state": "17", + "county": "075" + }, + { + "DP05_0001E": "9547", + "DP05_0019E": "2167", + "DP05_0019PE": "22.7", + "state": "17", + "county": "079" + }, + { + "DP05_0001E": "37774", + "DP05_0019E": "8381", + "DP05_0019PE": "22.2", + "state": "17", + "county": "081" + }, + { + "DP05_0001E": "21776", + "DP05_0019E": "4414", + "DP05_0019PE": "20.3", + "state": "17", + "county": "083" + }, + { + "DP05_0001E": "21429", + "DP05_0019E": "4065", + "DP05_0019PE": "19.0", + "state": "17", + "county": "085" + }, + { + "DP05_0001E": "12391", + "DP05_0019E": "2253", + "DP05_0019PE": "18.2", + "state": "17", + "county": "087" + }, + { + "DP05_0001E": "531756", + "DP05_0019E": "135653", + "DP05_0019PE": "25.5", + "state": "17", + "county": "089" + }, + { + "DP05_0001E": "109924", + "DP05_0019E": "25096", + "DP05_0019PE": "22.8", + "state": "17", + "county": "091" + }, + { + "DP05_0001E": "127583", + "DP05_0019E": "36354", + "DP05_0019PE": "28.5", + "state": "17", + "county": "093" + }, + { + "DP05_0001E": "50052", + "DP05_0019E": "9930", + "DP05_0019PE": "19.8", + "state": "17", + "county": "095" + }, + { + "DP05_0001E": "699682", + "DP05_0019E": "169210", + "DP05_0019PE": "24.2", + "state": "17", + "county": "097" + }, + { + "DP05_0001E": "108998", + "DP05_0019E": "23387", + "DP05_0019PE": "21.5", + "state": "17", + "county": "099" + }, + { + "DP05_0001E": "15830", + "DP05_0019E": "2985", + "DP05_0019PE": "18.9", + "state": "17", + "county": "101" + }, + { + "DP05_0001E": "34204", + "DP05_0019E": "6725", + "DP05_0019PE": "19.7", + "state": "17", + "county": "103" + }, + { + "DP05_0001E": "35757", + "DP05_0019E": "7728", + "DP05_0019PE": "21.6", + "state": "17", + "county": "105" + }, + { + "DP05_0001E": "28818", + "DP05_0019E": "5527", + "DP05_0019PE": "19.2", + "state": "17", + "county": "107" + }, + { + "DP05_0001E": "30107", + "DP05_0019E": "5144", + "DP05_0019PE": "17.1", + "state": "17", + "county": "109" + }, + { + "DP05_0001E": "307291", + "DP05_0019E": "72227", + "DP05_0019PE": "23.5", + "state": "17", + "county": "111" + }, + { + "DP05_0001E": "172164", + "DP05_0019E": "37051", + "DP05_0019PE": "21.5", + "state": "17", + "county": "113" + }, + { + "DP05_0001E": "104688", + "DP05_0019E": "23319", + "DP05_0019PE": "22.3", + "state": "17", + "county": "115" + }, + { + "DP05_0001E": "45243", + "DP05_0019E": "9600", + "DP05_0019PE": "21.2", + "state": "17", + "county": "117" + }, + { + "DP05_0001E": "264403", + "DP05_0019E": "57737", + "DP05_0019PE": "21.8", + "state": "17", + "county": "119" + }, + { + "DP05_0001E": "11562", + "DP05_0019E": "2372", + "DP05_0019PE": "20.5", + "state": "17", + "county": "123" + }, + { + "DP05_0001E": "13486", + "DP05_0019E": "2781", + "DP05_0019PE": "20.6", + "state": "17", + "county": "125" + }, + { + "DP05_0001E": "12261", + "DP05_0019E": "2742", + "DP05_0019PE": "22.4", + "state": "17", + "county": "129" + }, + { + "DP05_0001E": "15503", + "DP05_0019E": "3324", + "DP05_0019PE": "21.4", + "state": "17", + "county": "131" + }, + { + "DP05_0001E": "28598", + "DP05_0019E": "5736", + "DP05_0019PE": "20.1", + "state": "17", + "county": "135" + }, + { + "DP05_0001E": "34012", + "DP05_0019E": "6486", + "DP05_0019PE": "19.1", + "state": "17", + "county": "137" + }, + { + "DP05_0001E": "50793", + "DP05_0019E": "11449", + "DP05_0019PE": "22.5", + "state": "17", + "county": "141" + }, + { + "DP05_0001E": "21092", + "DP05_0019E": "4060", + "DP05_0019PE": "19.2", + "state": "17", + "county": "145" + }, + { + "DP05_0001E": "16412", + "DP05_0019E": "3669", + "DP05_0019PE": "22.4", + "state": "17", + "county": "147" + }, + { + "DP05_0001E": "4177", + "DP05_0019E": "614", + "DP05_0019PE": "14.7", + "state": "17", + "county": "151" + }, + { + "DP05_0001E": "5414", + "DP05_0019E": "1156", + "DP05_0019PE": "21.4", + "state": "17", + "county": "153" + }, + { + "DP05_0001E": "31973", + "DP05_0019E": "6125", + "DP05_0019PE": "19.2", + "state": "17", + "county": "157" + }, + { + "DP05_0001E": "15677", + "DP05_0019E": "3615", + "DP05_0019PE": "23.1", + "state": "17", + "county": "159" + }, + { + "DP05_0001E": "261186", + "DP05_0019E": "61324", + "DP05_0019PE": "23.5", + "state": "17", + "county": "163" + }, + { + "DP05_0001E": "195963", + "DP05_0019E": "43628", + "DP05_0019PE": "22.3", + "state": "17", + "county": "167" + }, + { + "DP05_0001E": "6897", + "DP05_0019E": "1184", + "DP05_0019PE": "17.2", + "state": "17", + "county": "169" + }, + { + "DP05_0001E": "21623", + "DP05_0019E": "4654", + "DP05_0019PE": "21.5", + "state": "17", + "county": "173" + }, + { + "DP05_0001E": "5393", + "DP05_0019E": "1154", + "DP05_0019PE": "21.4", + "state": "17", + "county": "175" + }, + { + "DP05_0001E": "132524", + "DP05_0019E": "30032", + "DP05_0019PE": "22.7", + "state": "17", + "county": "179" + }, + { + "DP05_0001E": "16829", + "DP05_0019E": "3577", + "DP05_0019PE": "21.3", + "state": "17", + "county": "181" + }, + { + "DP05_0001E": "11390", + "DP05_0019E": "2490", + "DP05_0019PE": "21.9", + "state": "17", + "county": "185" + }, + { + "DP05_0001E": "9453", + "DP05_0019E": "1763", + "DP05_0019PE": "18.7", + "state": "37", + "county": "103" + }, + { + "DP05_0001E": "61083", + "DP05_0019E": "14751", + "DP05_0019PE": "24.1", + "state": "37", + "county": "105" + }, + { + "DP05_0001E": "84580", + "DP05_0019E": "17861", + "DP05_0019PE": "21.1", + "state": "37", + "county": "109" + }, + { + "DP05_0001E": "45402", + "DP05_0019E": "9087", + "DP05_0019PE": "20.0", + "state": "37", + "county": "111" + }, + { + "DP05_0001E": "21608", + "DP05_0019E": "3861", + "DP05_0019PE": "17.9", + "state": "37", + "county": "115" + }, + { + "DP05_0001E": "22644", + "DP05_0019E": "4622", + "DP05_0019PE": "20.4", + "state": "37", + "county": "117" + }, + { + "DP05_0001E": "14959", + "DP05_0019E": "2744", + "DP05_0019PE": "18.3", + "state": "37", + "county": "121" + }, + { + "DP05_0001E": "27223", + "DP05_0019E": "5926", + "DP05_0019PE": "21.8", + "state": "37", + "county": "123" + }, + { + "DP05_0001E": "99263", + "DP05_0019E": "21180", + "DP05_0019PE": "21.3", + "state": "37", + "county": "125" + }, + { + "DP05_0001E": "94287", + "DP05_0019E": "20680", + "DP05_0019PE": "21.9", + "state": "37", + "county": "127" + }, + { + "DP05_0001E": "231448", + "DP05_0019E": "42710", + "DP05_0019PE": "18.5", + "state": "37", + "county": "129" + }, + { + "DP05_0001E": "19672", + "DP05_0019E": "3450", + "DP05_0019PE": "17.5", + "state": "37", + "county": "131" + }, + { + "DP05_0001E": "198377", + "DP05_0019E": "48123", + "DP05_0019PE": "24.3", + "state": "37", + "county": "133" + }, + { + "DP05_0001E": "146354", + "DP05_0019E": "28501", + "DP05_0019PE": "19.5", + "state": "37", + "county": "135" + }, + { + "DP05_0001E": "12673", + "DP05_0019E": "1899", + "DP05_0019PE": "15.0", + "state": "37", + "county": "137" + }, + { + "DP05_0001E": "39775", + "DP05_0019E": "8770", + "DP05_0019PE": "22.0", + "state": "37", + "county": "139" + }, + { + "DP05_0001E": "61891", + "DP05_0019E": "13763", + "DP05_0019PE": "22.2", + "state": "37", + "county": "141" + }, + { + "DP05_0001E": "13513", + "DP05_0019E": "2553", + "DP05_0019PE": "18.9", + "state": "37", + "county": "143" + }, + { + "DP05_0001E": "39561", + "DP05_0019E": "8288", + "DP05_0019PE": "20.9", + "state": "37", + "county": "145" + }, + { + "DP05_0001E": "179961", + "DP05_0019E": "38418", + "DP05_0019PE": "21.3", + "state": "37", + "county": "147" + }, + { + "DP05_0001E": "20682", + "DP05_0019E": "3355", + "DP05_0019PE": "16.2", + "state": "37", + "county": "149" + }, + { + "DP05_0001E": "143460", + "DP05_0019E": "32412", + "DP05_0019PE": "22.6", + "state": "37", + "county": "151" + }, + { + "DP05_0001E": "44759", + "DP05_0019E": "10160", + "DP05_0019PE": "22.7", + "state": "37", + "county": "153" + }, + { + "DP05_0001E": "131656", + "DP05_0019E": "32927", + "DP05_0019PE": "25.0", + "state": "37", + "county": "155" + }, + { + "DP05_0001E": "91051", + "DP05_0019E": "18480", + "DP05_0019PE": "20.3", + "state": "37", + "county": "157" + }, + { + "DP05_0001E": "140978", + "DP05_0019E": "31420", + "DP05_0019PE": "22.3", + "state": "37", + "county": "159" + }, + { + "DP05_0001E": "66741", + "DP05_0019E": "13671", + "DP05_0019PE": "20.5", + "state": "37", + "county": "161" + }, + { + "DP05_0001E": "63284", + "DP05_0019E": "15490", + "DP05_0019PE": "24.5", + "state": "37", + "county": "163" + }, + { + "DP05_0001E": "34921", + "DP05_0019E": "7938", + "DP05_0019PE": "22.7", + "state": "37", + "county": "165" + }, + { + "DP05_0001E": "45688", + "DP05_0019E": "8600", + "DP05_0019PE": "18.8", + "state": "37", + "county": "169" + }, + { + "DP05_0001E": "71904", + "DP05_0019E": "15277", + "DP05_0019PE": "21.2", + "state": "37", + "county": "171" + }, + { + "DP05_0001E": "34039", + "DP05_0019E": "5332", + "DP05_0019PE": "15.7", + "state": "37", + "county": "175" + }, + { + "DP05_0001E": "3978", + "DP05_0019E": "537", + "DP05_0019PE": "13.5", + "state": "37", + "county": "177" + }, + { + "DP05_0001E": "44614", + "DP05_0019E": "10578", + "DP05_0019PE": "23.7", + "state": "37", + "county": "181" + }, + { + "DP05_0001E": "1091662", + "DP05_0019E": "260902", + "DP05_0019PE": "23.9", + "state": "37", + "county": "183" + }, + { + "DP05_0001E": "11788", + "DP05_0019E": "2374", + "DP05_0019PE": "20.1", + "state": "37", + "county": "187" + }, + { + "DP05_0001E": "55669", + "DP05_0019E": "7163", + "DP05_0019PE": "12.9", + "state": "37", + "county": "189" + }, + { + "DP05_0001E": "68341", + "DP05_0019E": "13943", + "DP05_0019PE": "20.4", + "state": "37", + "county": "193" + }, + { + "DP05_0001E": "81579", + "DP05_0019E": "18749", + "DP05_0019PE": "23.0", + "state": "37", + "county": "195" + }, + { + "DP05_0001E": "17870", + "DP05_0019E": "3283", + "DP05_0019PE": "18.4", + "state": "37", + "county": "199" + }, + { + "DP05_0001E": "264650", + "DP05_0019E": "56260", + "DP05_0019PE": "21.3", + "state": "34", + "county": "001" + }, + { + "DP05_0001E": "446301", + "DP05_0019E": "93041", + "DP05_0019PE": "20.8", + "state": "34", + "county": "005" + }, + { + "DP05_0001E": "506721", + "DP05_0019E": "115406", + "DP05_0019PE": "22.8", + "state": "34", + "county": "007" + }, + { + "DP05_0001E": "150085", + "DP05_0019E": "36038", + "DP05_0019PE": "24.0", + "state": "34", + "county": "011" + }, + { + "DP05_0001E": "798698", + "DP05_0019E": "190028", + "DP05_0019PE": "23.8", + "state": "34", + "county": "013" + }, + { + "DP05_0001E": "671923", + "DP05_0019E": "137365", + "DP05_0019PE": "20.4", + "state": "34", + "county": "017" + }, + { + "DP05_0001E": "125063", + "DP05_0019E": "24155", + "DP05_0019PE": "19.3", + "state": "34", + "county": "019" + }, + { + "DP05_0001E": "825015", + "DP05_0019E": "179636", + "DP05_0019PE": "21.8", + "state": "34", + "county": "023" + }, + { + "DP05_0001E": "620821", + "DP05_0019E": "131589", + "DP05_0019PE": "21.2", + "state": "34", + "county": "025" + }, + { + "DP05_0001E": "602018", + "DP05_0019E": "144960", + "DP05_0019PE": "24.1", + "state": "34", + "county": "029" + }, + { + "DP05_0001E": "502763", + "DP05_0019E": "119891", + "DP05_0019PE": "23.8", + "state": "34", + "county": "031" + }, + { + "DP05_0001E": "330151", + "DP05_0019E": "72347", + "DP05_0019PE": "21.9", + "state": "34", + "county": "035" + }, + { + "DP05_0001E": "140996", + "DP05_0019E": "27830", + "DP05_0019PE": "19.7", + "state": "34", + "county": "037" + }, + { + "DP05_0001E": "105730", + "DP05_0019E": "20851", + "DP05_0019PE": "19.7", + "state": "34", + "county": "041" + }, + { + "DP05_0001E": "35544", + "DP05_0019E": "11176", + "DP05_0019PE": "31.4", + "state": "18", + "county": "001" + }, + { + "DP05_0001E": "83280", + "DP05_0019E": "19937", + "DP05_0019PE": "23.9", + "state": "18", + "county": "005" + }, + { + "DP05_0001E": "8695", + "DP05_0019E": "2173", + "DP05_0019PE": "25.0", + "state": "18", + "county": "007" + }, + { + "DP05_0001E": "17174", + "DP05_0019E": "3769", + "DP05_0019PE": "21.9", + "state": "48", + "county": "287" + }, + { + "DP05_0001E": "17325", + "DP05_0019E": "3913", + "DP05_0019PE": "22.6", + "state": "48", + "county": "289" + }, + { + "DP05_0001E": "86173", + "DP05_0019E": "22897", + "DP05_0019PE": "26.6", + "state": "48", + "county": "291" + }, + { + "DP05_0001E": "23364", + "DP05_0019E": "5235", + "DP05_0019PE": "22.4", + "state": "48", + "county": "293" + }, + { + "DP05_0001E": "3301", + "DP05_0019E": "945", + "DP05_0019PE": "28.6", + "state": "48", + "county": "295" + }, + { + "DP05_0001E": "12175", + "DP05_0019E": "2436", + "DP05_0019PE": "20.0", + "state": "48", + "county": "297" + }, + { + "DP05_0001E": "21452", + "DP05_0019E": "3197", + "DP05_0019PE": "14.9", + "state": "48", + "county": "299" + }, + { + "DP05_0001E": "308392", + "DP05_0019E": "73527", + "DP05_0019PE": "23.8", + "state": "48", + "county": "303" + }, + { + "DP05_0001E": "7970", + "DP05_0019E": "1755", + "DP05_0019PE": "22.0", + "state": "48", + "county": "307" + }, + { + "DP05_0001E": "254045", + "DP05_0019E": "62472", + "DP05_0019PE": "24.6", + "state": "48", + "county": "309" + }, + { + "DP05_0001E": "14329", + "DP05_0019E": "3078", + "DP05_0019PE": "21.5", + "state": "48", + "county": "313" + }, + { + "DP05_0001E": "9987", + "DP05_0019E": "1813", + "DP05_0019PE": "18.2", + "state": "48", + "county": "315" + }, + { + "DP05_0001E": "4248", + "DP05_0019E": "1016", + "DP05_0019PE": "23.9", + "state": "48", + "county": "319" + }, + { + "DP05_0001E": "36791", + "DP05_0019E": "9534", + "DP05_0019PE": "25.9", + "state": "48", + "county": "321" + }, + { + "DP05_0001E": "50869", + "DP05_0019E": "11716", + "DP05_0019PE": "23.0", + "state": "48", + "county": "325" + }, + { + "DP05_0001E": "2108", + "DP05_0019E": "378", + "DP05_0019PE": "17.9", + "state": "48", + "county": "327" + }, + { + "DP05_0001E": "24797", + "DP05_0019E": "5990", + "DP05_0019PE": "24.2", + "state": "48", + "county": "331" + }, + { + "DP05_0001E": "4877", + "DP05_0019E": "874", + "DP05_0019PE": "17.9", + "state": "48", + "county": "333" + }, + { + "DP05_0001E": "19640", + "DP05_0019E": "4418", + "DP05_0019PE": "22.5", + "state": "48", + "county": "337" + }, + { + "DP05_0001E": "590188", + "DP05_0019E": "155264", + "DP05_0019PE": "26.3", + "state": "48", + "county": "339" + }, + { + "DP05_0001E": "12357", + "DP05_0019E": "2853", + "DP05_0019PE": "23.1", + "state": "48", + "county": "343" + }, + { + "DP05_0001E": "1362", + "DP05_0019E": "287", + "DP05_0019PE": "21.1", + "state": "48", + "county": "345" + }, + { + "DP05_0001E": "49475", + "DP05_0019E": "13108", + "DP05_0019PE": "26.5", + "state": "48", + "county": "349" + }, + { + "DP05_0001E": "13788", + "DP05_0019E": "2743", + "DP05_0019PE": "19.9", + "state": "48", + "county": "351" + }, + { + "DP05_0001E": "362151", + "DP05_0019E": "88993", + "DP05_0019PE": "24.6", + "state": "48", + "county": "355" + }, + { + "DP05_0001E": "9907", + "DP05_0019E": "3105", + "DP05_0019PE": "31.3", + "state": "48", + "county": "357" + }, + { + "DP05_0001E": "83776", + "DP05_0019E": "20876", + "DP05_0019PE": "24.9", + "state": "48", + "county": "361" + }, + { + "DP05_0001E": "28792", + "DP05_0019E": "6697", + "DP05_0019PE": "23.3", + "state": "48", + "county": "363" + }, + { + "DP05_0001E": "138447", + "DP05_0019E": "34198", + "DP05_0019PE": "24.7", + "state": "48", + "county": "367" + }, + { + "DP05_0001E": "9639", + "DP05_0019E": "2763", + "DP05_0019PE": "28.7", + "state": "48", + "county": "369" + }, + { + "DP05_0001E": "50155", + "DP05_0019E": "10128", + "DP05_0019PE": "20.2", + "state": "48", + "county": "373" + }, + { + "DP05_0001E": "118323", + "DP05_0019E": "32397", + "DP05_0019PE": "27.4", + "state": "48", + "county": "375" + }, + { + "DP05_0001E": "12001", + "DP05_0019E": "2305", + "DP05_0019PE": "19.2", + "state": "48", + "county": "379" + }, + { + "DP05_0001E": "136005", + "DP05_0019E": "32671", + "DP05_0019PE": "24.0", + "state": "48", + "county": "381" + }, + { + "DP05_0001E": "3429", + "DP05_0019E": "774", + "DP05_0019PE": "22.6", + "state": "48", + "county": "385" + }, + { + "DP05_0001E": "12115", + "DP05_0019E": "2408", + "DP05_0019PE": "19.9", + "state": "48", + "county": "387" + }, + { + "DP05_0001E": "7015", + "DP05_0019E": "1629", + "DP05_0019PE": "23.2", + "state": "48", + "county": "391" + }, + { + "DP05_0001E": "784", + "DP05_0019E": "184", + "DP05_0019PE": "23.5", + "state": "48", + "county": "393" + }, + { + "DP05_0001E": "101175", + "DP05_0019E": "27310", + "DP05_0019PE": "27.0", + "state": "48", + "county": "397" + }, + { + "DP05_0001E": "10280", + "DP05_0019E": "2459", + "DP05_0019PE": "23.9", + "state": "48", + "county": "399" + }, + { + "DP05_0001E": "10470", + "DP05_0019E": "1934", + "DP05_0019PE": "18.5", + "state": "48", + "county": "403" + }, + { + "DP05_0001E": "8260", + "DP05_0019E": "1625", + "DP05_0019PE": "19.7", + "state": "48", + "county": "405" + }, + { + "DP05_0001E": "66969", + "DP05_0019E": "18001", + "DP05_0019PE": "26.9", + "state": "48", + "county": "409" + }, + { + "DP05_0001E": "6004", + "DP05_0019E": "1189", + "DP05_0019PE": "19.8", + "state": "48", + "county": "411" + }, + { + "DP05_0001E": "16918", + "DP05_0019E": "4185", + "DP05_0019PE": "24.7", + "state": "48", + "county": "415" + }, + { + "DP05_0001E": "3291", + "DP05_0019E": "769", + "DP05_0019PE": "23.4", + "state": "48", + "county": "417" + }, + { + "DP05_0001E": "3046", + "DP05_0019E": "703", + "DP05_0019PE": "23.1", + "state": "48", + "county": "421" + }, + { + "DP05_0001E": "230184", + "DP05_0019E": "56410", + "DP05_0019PE": "24.5", + "state": "48", + "county": "423" + }, + { + "DP05_0001E": "20072", + "DP05_0019E": "4741", + "DP05_0019PE": "23.6", + "state": "48", + "county": "285" + }, + { + "DP05_0001E": "8958", + "DP05_0019E": "1999", + "DP05_0019PE": "22.3", + "state": "48", + "county": "425" + }, + { + "DP05_0001E": "64032", + "DP05_0019E": "21074", + "DP05_0019PE": "32.9", + "state": "48", + "county": "427" + }, + { + "DP05_0001E": "9358", + "DP05_0019E": "2111", + "DP05_0019PE": "22.6", + "state": "48", + "county": "429" + }, + { + "DP05_0001E": "1274", + "DP05_0019E": "390", + "DP05_0019PE": "30.6", + "state": "48", + "county": "431" + }, + { + "DP05_0001E": "1412", + "DP05_0019E": "382", + "DP05_0019PE": "27.1", + "state": "48", + "county": "433" + }, + { + "DP05_0001E": "3793", + "DP05_0019E": "1052", + "DP05_0019PE": "27.7", + "state": "48", + "county": "435" + }, + { + "DP05_0001E": "7403", + "DP05_0019E": "1840", + "DP05_0019PE": "24.9", + "state": "48", + "county": "437" + }, + { + "DP05_0001E": "2077153", + "DP05_0019E": "546125", + "DP05_0019PE": "26.3", + "state": "48", + "county": "439" + }, + { + "DP05_0001E": "137521", + "DP05_0019E": "34034", + "DP05_0019PE": "24.7", + "state": "48", + "county": "441" + }, + { + "DP05_0001E": "903", + "DP05_0019E": "117", + "DP05_0019PE": "13.0", + "state": "48", + "county": "443" + }, + { + "DP05_0001E": "12408", + "DP05_0019E": "3411", + "DP05_0019PE": "27.5", + "state": "48", + "county": "445" + }, + { + "DP05_0001E": "1500", + "DP05_0019E": "305", + "DP05_0019PE": "20.3", + "state": "48", + "county": "447" + }, + { + "DP05_0001E": "29558", + "DP05_0019E": "5938", + "DP05_0019PE": "20.1", + "state": "45", + "county": "053" + }, + { + "DP05_0001E": "17144", + "DP05_0019E": "3300", + "DP05_0019PE": "19.2", + "state": "45", + "county": "061" + }, + { + "DP05_0001E": "30954", + "DP05_0019E": "7140", + "DP05_0019PE": "23.1", + "state": "45", + "county": "067" + }, + { + "DP05_0001E": "78314", + "DP05_0019E": "15613", + "DP05_0019PE": "19.9", + "state": "45", + "county": "073" + }, + { + "DP05_0001E": "414660", + "DP05_0019E": "88982", + "DP05_0019PE": "21.5", + "state": "45", + "county": "079" + }, + { + "DP05_0001E": "106675", + "DP05_0019E": "25625", + "DP05_0019PE": "24.0", + "state": "45", + "county": "085" + }, + { + "DP05_0001E": "2757", + "DP05_0019E": "749", + "DP05_0019PE": "27.2", + "state": "46", + "county": "003" + }, + { + "DP05_0001E": "6914", + "DP05_0019E": "1322", + "DP05_0019PE": "19.1", + "state": "46", + "county": "009" + }, + { + "DP05_0001E": "5233", + "DP05_0019E": "1329", + "DP05_0019PE": "25.4", + "state": "46", + "county": "015" + }, + { + "DP05_0001E": "3423", + "DP05_0019E": "1049", + "DP05_0019PE": "30.6", + "state": "46", + "county": "061" + }, + { + "DP05_0001E": "7308", + "DP05_0019E": "1817", + "DP05_0019PE": "24.9", + "state": "46", + "county": "067" + }, + { + "DP05_0001E": "2009", + "DP05_0019E": "427", + "DP05_0019PE": "21.3", + "state": "46", + "county": "073" + }, + { + "DP05_0001E": "25806", + "DP05_0019E": "4539", + "DP05_0019PE": "17.6", + "state": "46", + "county": "081" + }, + { + "DP05_0001E": "5543", + "DP05_0019E": "1531", + "DP05_0019PE": "27.6", + "state": "46", + "county": "087" + }, + { + "DP05_0001E": "28149", + "DP05_0019E": "6429", + "DP05_0019PE": "22.8", + "state": "46", + "county": "093" + }, + { + "DP05_0001E": "191682", + "DP05_0019E": "48453", + "DP05_0019PE": "25.3", + "state": "46", + "county": "099" + }, + { + "DP05_0001E": "112504", + "DP05_0019E": "25936", + "DP05_0019PE": "23.1", + "state": "46", + "county": "103" + }, + { + "DP05_0001E": "2372", + "DP05_0019E": "581", + "DP05_0019PE": "24.5", + "state": "46", + "county": "111" + }, + { + "DP05_0001E": "1278", + "DP05_0019E": "245", + "DP05_0019PE": "19.2", + "state": "46", + "county": "119" + }, + { + "DP05_0001E": "8325", + "DP05_0019E": "2035", + "DP05_0019PE": "24.4", + "state": "46", + "county": "125" + }, + { + "DP05_0001E": "22746", + "DP05_0019E": "4813", + "DP05_0019PE": "21.2", + "state": "46", + "county": "135" + }, + { + "DP05_0001E": "48937", + "DP05_0019E": "12477", + "DP05_0019PE": "25.5", + "state": "47", + "county": "003" + }, + { + "DP05_0001E": "131641", + "DP05_0019E": "26550", + "DP05_0019PE": "20.2", + "state": "47", + "county": "009" + }, + { + "DP05_0001E": "14374", + "DP05_0019E": "3070", + "DP05_0019PE": "21.4", + "state": "47", + "county": "015" + }, + { + "DP05_0001E": "40539", + "DP05_0019E": "8914", + "DP05_0019PE": "22.0", + "state": "47", + "county": "021" + }, + { + "DP05_0001E": "7640", + "DP05_0019E": "1576", + "DP05_0019PE": "20.6", + "state": "47", + "county": "027" + }, + { + "DP05_0001E": "14310", + "DP05_0019E": "3394", + "DP05_0019PE": "23.7", + "state": "47", + "county": "033" + }, + { + "DP05_0001E": "11663", + "DP05_0019E": "2432", + "DP05_0019PE": "20.9", + "state": "47", + "county": "039" + }, + { + "DP05_0001E": "11767", + "DP05_0019E": "2140", + "DP05_0019PE": "18.2", + "state": "47", + "county": "087" + }, + { + "DP05_0001E": "466184", + "DP05_0019E": "98068", + "DP05_0019PE": "21.0", + "state": "47", + "county": "093" + }, + { + "DP05_0001E": "43780", + "DP05_0019E": "10933", + "DP05_0019PE": "25.0", + "state": "47", + "county": "099" + }, + { + "DP05_0001E": "53169", + "DP05_0019E": "10307", + "DP05_0019PE": "19.4", + "state": "47", + "county": "105" + }, + { + "DP05_0001E": "24208", + "DP05_0019E": "6046", + "DP05_0019PE": "25.0", + "state": "47", + "county": "111" + }, + { + "DP05_0001E": "33708", + "DP05_0019E": "7851", + "DP05_0019PE": "23.3", + "state": "47", + "county": "117" + }, + { + "DP05_0001E": "46413", + "DP05_0019E": "9916", + "DP05_0019PE": "21.4", + "state": "47", + "county": "123" + }, + { + "DP05_0001E": "21538", + "DP05_0019E": "4146", + "DP05_0019PE": "19.2", + "state": "47", + "county": "129" + }, + { + "DP05_0001E": "8020", + "DP05_0019E": "1854", + "DP05_0019PE": "23.1", + "state": "47", + "county": "135" + }, + { + "DP05_0001E": "78542", + "DP05_0019E": "16399", + "DP05_0019PE": "20.9", + "state": "47", + "county": "141" + }, + { + "DP05_0001E": "70982", + "DP05_0019E": "16982", + "DP05_0019PE": "23.9", + "state": "47", + "county": "147" + }, + { + "DP05_0001E": "98007", + "DP05_0019E": "20209", + "DP05_0019PE": "20.6", + "state": "47", + "county": "155" + }, + { + "DP05_0001E": "13553", + "DP05_0019E": "2880", + "DP05_0019PE": "21.2", + "state": "47", + "county": "161" + }, + { + "DP05_0001E": "61562", + "DP05_0019E": "15014", + "DP05_0019PE": "24.4", + "state": "47", + "county": "167" + }, + { + "DP05_0001E": "19678", + "DP05_0019E": "4276", + "DP05_0019PE": "21.7", + "state": "47", + "county": "173" + }, + { + "DP05_0001E": "128874", + "DP05_0019E": "24638", + "DP05_0019PE": "19.1", + "state": "47", + "county": "179" + }, + { + "DP05_0001E": "27087", + "DP05_0019E": "5944", + "DP05_0019PE": "21.9", + "state": "47", + "county": "185" + }, + { + "DP05_0001E": "6594", + "DP05_0019E": "2141", + "DP05_0019PE": "32.5", + "state": "49", + "county": "001" + }, + { + "DP05_0001E": "20401", + "DP05_0019E": "5349", + "DP05_0019PE": "26.2", + "state": "49", + "county": "007" + }, + { + "DP05_0001E": "19950", + "DP05_0019E": "6731", + "DP05_0019PE": "33.7", + "state": "49", + "county": "013" + }, + { + "DP05_0001E": "36947", + "DP05_0019E": "6161", + "DP05_0019PE": "16.7", + "state": "50", + "county": "001" + }, + { + "DP05_0001E": "163414", + "DP05_0019E": "29054", + "DP05_0019PE": "17.8", + "state": "50", + "county": "007" + }, + { + "DP05_0001E": "7075", + "DP05_0019E": "1218", + "DP05_0019PE": "17.2", + "state": "50", + "county": "013" + }, + { + "DP05_0001E": "26843", + "DP05_0019E": "5281", + "DP05_0019PE": "19.7", + "state": "50", + "county": "019" + }, + { + "DP05_0001E": "42628", + "DP05_0019E": "7630", + "DP05_0019PE": "17.9", + "state": "50", + "county": "025" + }, + { + "DP05_0001E": "108819", + "DP05_0019E": "21863", + "DP05_0019PE": "20.1", + "state": "51", + "county": "003" + }, + { + "DP05_0001E": "31782", + "DP05_0019E": "6213", + "DP05_0019PE": "19.5", + "state": "51", + "county": "009" + }, + { + "DP05_0001E": "75754", + "DP05_0019E": "14500", + "DP05_0019PE": "19.1", + "state": "51", + "county": "015" + }, + { + "DP05_0001E": "6334", + "DP05_0019E": "1025", + "DP05_0019PE": "16.2", + "state": "51", + "county": "021" + }, + { + "DP05_0001E": "21374", + "DP05_0019E": "3647", + "DP05_0019PE": "17.1", + "state": "51", + "county": "027" + }, + { + "DP05_0001E": "16981", + "DP05_0019E": "3700", + "DP05_0019PE": "21.8", + "state": "17", + "county": "187" + }, + { + "DP05_0001E": "16309", + "DP05_0019E": "3683", + "DP05_0019PE": "22.6", + "state": "17", + "county": "191" + }, + { + "DP05_0001E": "55583", + "DP05_0019E": "12249", + "DP05_0019PE": "22.0", + "state": "17", + "county": "195" + }, + { + "DP05_0001E": "689704", + "DP05_0019E": "171799", + "DP05_0019PE": "24.9", + "state": "17", + "county": "197" + }, + { + "DP05_0001E": "283635", + "DP05_0019E": "66491", + "DP05_0019PE": "23.4", + "state": "17", + "county": "201" + }, + { + "DP05_0001E": "38503", + "DP05_0019E": "9303", + "DP05_0019PE": "24.2", + "state": "17", + "county": "203" + }, + { + "DP05_0001E": "3633", + "DP05_0019E": "747", + "DP05_0019PE": "20.6", + "state": "19", + "county": "003" + }, + { + "DP05_0001E": "13761", + "DP05_0019E": "3182", + "DP05_0019PE": "23.1", + "state": "19", + "county": "005" + }, + { + "DP05_0001E": "5528", + "DP05_0019E": "1148", + "DP05_0019PE": "20.8", + "state": "19", + "county": "009" + }, + { + "DP05_0001E": "131813", + "DP05_0019E": "28562", + "DP05_0019PE": "21.7", + "state": "19", + "county": "013" + }, + { + "DP05_0001E": "26381", + "DP05_0019E": "5665", + "DP05_0019PE": "21.5", + "state": "19", + "county": "015" + }, + { + "DP05_0001E": "21141", + "DP05_0019E": "5625", + "DP05_0019PE": "26.6", + "state": "19", + "county": "019" + }, + { + "DP05_0001E": "14508", + "DP05_0019E": "3275", + "DP05_0019PE": "22.6", + "state": "19", + "county": "023" + }, + { + "DP05_0001E": "9656", + "DP05_0019E": "2058", + "DP05_0019PE": "21.3", + "state": "19", + "county": "025" + }, + { + "DP05_0001E": "12990", + "DP05_0019E": "2852", + "DP05_0019PE": "22.0", + "state": "19", + "county": "029" + }, + { + "DP05_0001E": "18475", + "DP05_0019E": "4115", + "DP05_0019PE": "22.3", + "state": "19", + "county": "031" + }, + { + "DP05_0001E": "11281", + "DP05_0019E": "2438", + "DP05_0019PE": "21.6", + "state": "19", + "county": "035" + }, + { + "DP05_0001E": "11970", + "DP05_0019E": "2771", + "DP05_0019PE": "23.1", + "state": "19", + "county": "037" + }, + { + "DP05_0001E": "16138", + "DP05_0019E": "3629", + "DP05_0019PE": "22.5", + "state": "19", + "county": "041" + }, + { + "DP05_0001E": "46734", + "DP05_0019E": "10537", + "DP05_0019PE": "22.5", + "state": "19", + "county": "045" + }, + { + "DP05_0001E": "16998", + "DP05_0019E": "4203", + "DP05_0019PE": "24.7", + "state": "19", + "county": "047" + }, + { + "DP05_0001E": "8977", + "DP05_0019E": "2630", + "DP05_0019PE": "29.3", + "state": "19", + "county": "051" + }, + { + "DP05_0001E": "7908", + "DP05_0019E": "1712", + "DP05_0019PE": "21.6", + "state": "19", + "county": "053" + }, + { + "DP05_0001E": "39227", + "DP05_0019E": "8886", + "DP05_0019PE": "22.7", + "state": "19", + "county": "057" + }, + { + "DP05_0001E": "17260", + "DP05_0019E": "3277", + "DP05_0019PE": "19.0", + "state": "19", + "county": "059" + }, + { + "DP05_0001E": "97193", + "DP05_0019E": "22166", + "DP05_0019PE": "22.8", + "state": "19", + "county": "061" + }, + { + "DP05_0001E": "9322", + "DP05_0019E": "1925", + "DP05_0019PE": "20.7", + "state": "19", + "county": "063" + }, + { + "DP05_0001E": "19604", + "DP05_0019E": "4171", + "DP05_0019PE": "21.3", + "state": "19", + "county": "065" + }, + { + "DP05_0001E": "15713", + "DP05_0019E": "3541", + "DP05_0019PE": "22.5", + "state": "19", + "county": "067" + }, + { + "DP05_0001E": "10091", + "DP05_0019E": "2337", + "DP05_0019PE": "23.2", + "state": "19", + "county": "069" + }, + { + "DP05_0001E": "6895", + "DP05_0019E": "1471", + "DP05_0019PE": "21.3", + "state": "19", + "county": "071" + }, + { + "DP05_0001E": "8923", + "DP05_0019E": "1983", + "DP05_0019PE": "22.2", + "state": "19", + "county": "073" + }, + { + "DP05_0001E": "12262", + "DP05_0019E": "2815", + "DP05_0019PE": "23.0", + "state": "19", + "county": "075" + }, + { + "DP05_0001E": "10702", + "DP05_0019E": "2422", + "DP05_0019PE": "22.6", + "state": "19", + "county": "077" + }, + { + "DP05_0001E": "14905", + "DP05_0019E": "3364", + "DP05_0019PE": "22.6", + "state": "19", + "county": "079" + }, + { + "DP05_0001E": "10709", + "DP05_0019E": "2315", + "DP05_0019PE": "21.6", + "state": "19", + "county": "081" + }, + { + "DP05_0001E": "16924", + "DP05_0019E": "3603", + "DP05_0019PE": "21.3", + "state": "19", + "county": "083" + }, + { + "DP05_0001E": "14043", + "DP05_0019E": "3180", + "DP05_0019PE": "22.6", + "state": "19", + "county": "085" + }, + { + "DP05_0001E": "19889", + "DP05_0019E": "4310", + "DP05_0019PE": "21.7", + "state": "19", + "county": "087" + }, + { + "DP05_0001E": "9201", + "DP05_0019E": "2294", + "DP05_0019PE": "24.9", + "state": "19", + "county": "089" + }, + { + "DP05_0001E": "9518", + "DP05_0019E": "2247", + "DP05_0019PE": "23.6", + "state": "19", + "county": "091" + }, + { + "DP05_0001E": "6862", + "DP05_0019E": "1656", + "DP05_0019PE": "24.1", + "state": "19", + "county": "093" + }, + { + "DP05_0001E": "16155", + "DP05_0019E": "3702", + "DP05_0019PE": "22.9", + "state": "19", + "county": "095" + }, + { + "DP05_0001E": "19348", + "DP05_0019E": "4283", + "DP05_0019PE": "22.1", + "state": "19", + "county": "097" + }, + { + "DP05_0001E": "18153", + "DP05_0019E": "3579", + "DP05_0019PE": "19.7", + "state": "19", + "county": "101" + }, + { + "DP05_0001E": "150819", + "DP05_0019E": "30054", + "DP05_0019PE": "19.9", + "state": "19", + "county": "103" + }, + { + "DP05_0001E": "10163", + "DP05_0019E": "2319", + "DP05_0019PE": "22.8", + "state": "19", + "county": "107" + }, + { + "DP05_0001E": "33946", + "DP05_0019E": "7339", + "DP05_0019PE": "21.6", + "state": "19", + "county": "111" + }, + { + "DP05_0001E": "225601", + "DP05_0019E": "52490", + "DP05_0019PE": "23.3", + "state": "19", + "county": "113" + }, + { + "DP05_0001E": "8556", + "DP05_0019E": "1952", + "DP05_0019PE": "22.8", + "state": "19", + "county": "117" + }, + { + "DP05_0001E": "11800", + "DP05_0019E": "3330", + "DP05_0019PE": "28.2", + "state": "19", + "county": "119" + }, + { + "DP05_0001E": "22351", + "DP05_0019E": "5323", + "DP05_0019PE": "23.8", + "state": "19", + "county": "123" + }, + { + "DP05_0001E": "39804", + "DP05_0019E": "10026", + "DP05_0019PE": "25.2", + "state": "19", + "county": "127" + }, + { + "DP05_0001E": "15023", + "DP05_0019E": "3504", + "DP05_0019PE": "23.3", + "state": "19", + "county": "129" + }, + { + "DP05_0001E": "8675", + "DP05_0019E": "1808", + "DP05_0019PE": "20.8", + "state": "19", + "county": "133" + }, + { + "DP05_0001E": "7761", + "DP05_0019E": "1811", + "DP05_0019PE": "23.3", + "state": "19", + "county": "135" + }, + { + "DP05_0001E": "42703", + "DP05_0019E": "10630", + "DP05_0019PE": "24.9", + "state": "19", + "county": "139" + }, + { + "DP05_0001E": "6016", + "DP05_0019E": "1413", + "DP05_0019PE": "23.5", + "state": "19", + "county": "143" + }, + { + "DP05_0001E": "15205", + "DP05_0019E": "2960", + "DP05_0019PE": "19.5", + "state": "19", + "county": "145" + }, + { + "DP05_0001E": "25141", + "DP05_0019E": "6252", + "DP05_0019PE": "24.9", + "state": "19", + "county": "149" + }, + { + "DP05_0001E": "6725", + "DP05_0019E": "1461", + "DP05_0019PE": "21.7", + "state": "19", + "county": "151" + }, + { + "DP05_0001E": "66875", + "DP05_0019E": "17618", + "DP05_0019PE": "26.3", + "state": "18", + "county": "011" + }, + { + "DP05_0001E": "15093", + "DP05_0019E": "2668", + "DP05_0019PE": "17.7", + "state": "18", + "county": "013" + }, + { + "DP05_0001E": "37727", + "DP05_0019E": "8697", + "DP05_0019PE": "23.1", + "state": "18", + "county": "017" + }, + { + "DP05_0001E": "117410", + "DP05_0019E": "26446", + "DP05_0019PE": "22.5", + "state": "18", + "county": "019" + }, + { + "DP05_0001E": "32186", + "DP05_0019E": "8439", + "DP05_0019PE": "26.2", + "state": "18", + "county": "023" + }, + { + "DP05_0001E": "10582", + "DP05_0019E": "2360", + "DP05_0019PE": "22.3", + "state": "18", + "county": "025" + }, + { + "DP05_0001E": "49612", + "DP05_0019E": "11170", + "DP05_0019PE": "22.5", + "state": "18", + "county": "029" + }, + { + "DP05_0001E": "26587", + "DP05_0019E": "6379", + "DP05_0019PE": "24.0", + "state": "18", + "county": "031" + }, + { + "DP05_0001E": "114461", + "DP05_0019E": "20904", + "DP05_0019PE": "18.3", + "state": "18", + "county": "035" + }, + { + "DP05_0001E": "42534", + "DP05_0019E": "10363", + "DP05_0019PE": "24.4", + "state": "18", + "county": "037" + }, + { + "DP05_0001E": "23068", + "DP05_0019E": "5079", + "DP05_0019PE": "22.0", + "state": "18", + "county": "041" + }, + { + "DP05_0001E": "77879", + "DP05_0019E": "17594", + "DP05_0019PE": "22.6", + "state": "18", + "county": "043" + }, + { + "DP05_0001E": "16456", + "DP05_0019E": "3606", + "DP05_0019PE": "21.9", + "state": "18", + "county": "045" + }, + { + "DP05_0001E": "22750", + "DP05_0019E": "5392", + "DP05_0019PE": "23.7", + "state": "18", + "county": "047" + }, + { + "DP05_0001E": "20069", + "DP05_0019E": "4765", + "DP05_0019PE": "23.7", + "state": "18", + "county": "049" + }, + { + "DP05_0001E": "33711", + "DP05_0019E": "8028", + "DP05_0019PE": "23.8", + "state": "18", + "county": "051" + }, + { + "DP05_0001E": "66055", + "DP05_0019E": "13774", + "DP05_0019PE": "20.9", + "state": "18", + "county": "053" + }, + { + "DP05_0001E": "32174", + "DP05_0019E": "6982", + "DP05_0019PE": "21.7", + "state": "18", + "county": "055" + }, + { + "DP05_0001E": "330455", + "DP05_0019E": "89010", + "DP05_0019PE": "26.9", + "state": "18", + "county": "057" + }, + { + "DP05_0001E": "76614", + "DP05_0019E": "17899", + "DP05_0019PE": "23.4", + "state": "18", + "county": "059" + }, + { + "DP05_0001E": "40164", + "DP05_0019E": "8991", + "DP05_0019PE": "22.4", + "state": "18", + "county": "061" + }, + { + "DP05_0001E": "166806", + "DP05_0019E": "41726", + "DP05_0019PE": "25.0", + "state": "18", + "county": "063" + }, + { + "DP05_0001E": "48158", + "DP05_0019E": "9963", + "DP05_0019PE": "20.7", + "state": "18", + "county": "065" + }, + { + "DP05_0001E": "82486", + "DP05_0019E": "18749", + "DP05_0019PE": "22.7", + "state": "18", + "county": "067" + }, + { + "DP05_0001E": "36351", + "DP05_0019E": "7815", + "DP05_0019PE": "21.5", + "state": "18", + "county": "069" + }, + { + "DP05_0001E": "44077", + "DP05_0019E": "10682", + "DP05_0019PE": "24.2", + "state": "18", + "county": "071" + }, + { + "DP05_0001E": "33433", + "DP05_0019E": "7747", + "DP05_0019PE": "23.2", + "state": "18", + "county": "073" + }, + { + "DP05_0001E": "20697", + "DP05_0019E": "5184", + "DP05_0019PE": "25.0", + "state": "18", + "county": "075" + }, + { + "DP05_0001E": "32167", + "DP05_0019E": "6582", + "DP05_0019PE": "20.5", + "state": "18", + "county": "077" + }, + { + "DP05_0001E": "27639", + "DP05_0019E": "6452", + "DP05_0019PE": "23.3", + "state": "18", + "county": "079" + }, + { + "DP05_0001E": "156148", + "DP05_0019E": "38642", + "DP05_0019PE": "24.7", + "state": "18", + "county": "081" + }, + { + "DP05_0001E": "36833", + "DP05_0019E": "7882", + "DP05_0019PE": "21.4", + "state": "18", + "county": "083" + }, + { + "DP05_0001E": "39537", + "DP05_0019E": "12894", + "DP05_0019PE": "32.6", + "state": "18", + "county": "087" + }, + { + "DP05_0001E": "485983", + "DP05_0019E": "114286", + "DP05_0019PE": "23.5", + "state": "18", + "county": "089" + }, + { + "DP05_0001E": "45552", + "DP05_0019E": "9908", + "DP05_0019PE": "21.8", + "state": "18", + "county": "093" + }, + { + "DP05_0001E": "129486", + "DP05_0019E": "28038", + "DP05_0019PE": "21.7", + "state": "18", + "county": "095" + }, + { + "DP05_0001E": "46336", + "DP05_0019E": "11687", + "DP05_0019PE": "25.2", + "state": "18", + "county": "099" + }, + { + "DP05_0001E": "10169", + "DP05_0019E": "2257", + "DP05_0019PE": "22.2", + "state": "18", + "county": "101" + }, + { + "DP05_0001E": "147318", + "DP05_0019E": "23192", + "DP05_0019PE": "15.7", + "state": "18", + "county": "105" + }, + { + "DP05_0001E": "38295", + "DP05_0019E": "8583", + "DP05_0019PE": "22.4", + "state": "18", + "county": "107" + }, + { + "DP05_0001E": "13981", + "DP05_0019E": "3000", + "DP05_0019PE": "21.5", + "state": "18", + "county": "111" + }, + { + "DP05_0001E": "47640", + "DP05_0019E": "11773", + "DP05_0019PE": "24.7", + "state": "18", + "county": "113" + }, + { + "DP05_0001E": "19552", + "DP05_0019E": "4446", + "DP05_0019PE": "22.7", + "state": "18", + "county": "117" + }, + { + "DP05_0001E": "20854", + "DP05_0019E": "4355", + "DP05_0019PE": "20.9", + "state": "18", + "county": "119" + }, + { + "DP05_0001E": "19091", + "DP05_0019E": "4024", + "DP05_0019PE": "21.1", + "state": "18", + "county": "123" + }, + { + "DP05_0001E": "12364", + "DP05_0019E": "2689", + "DP05_0019PE": "21.7", + "state": "18", + "county": "125" + }, + { + "DP05_0001E": "25480", + "DP05_0019E": "5628", + "DP05_0019PE": "22.1", + "state": "18", + "county": "129" + }, + { + "DP05_0001E": "12482", + "DP05_0019E": "2757", + "DP05_0019PE": "22.1", + "state": "18", + "county": "131" + }, + { + "DP05_0001E": "24694", + "DP05_0019E": "5629", + "DP05_0019PE": "22.8", + "state": "18", + "county": "135" + }, + { + "DP05_0001E": "28457", + "DP05_0019E": "6777", + "DP05_0019PE": "23.8", + "state": "18", + "county": "137" + }, + { + "DP05_0001E": "270881", + "DP05_0019E": "63866", + "DP05_0019PE": "23.6", + "state": "18", + "county": "141" + }, + { + "DP05_0001E": "44559", + "DP05_0019E": "10178", + "DP05_0019PE": "22.8", + "state": "18", + "county": "145" + }, + { + "DP05_0001E": "20364", + "DP05_0019E": "4428", + "DP05_0019PE": "21.7", + "state": "18", + "county": "147" + }, + { + "DP05_0001E": "34591", + "DP05_0019E": "7057", + "DP05_0019PE": "20.4", + "state": "18", + "county": "151" + }, + { + "DP05_0001E": "20647", + "DP05_0019E": "4017", + "DP05_0019PE": "19.5", + "state": "18", + "county": "153" + }, + { + "DP05_0001E": "193302", + "DP05_0019E": "39609", + "DP05_0019PE": "20.5", + "state": "18", + "county": "157" + }, + { + "DP05_0001E": "15154", + "DP05_0019E": "3176", + "DP05_0019PE": "21.0", + "state": "18", + "county": "159" + }, + { + "DP05_0001E": "181548", + "DP05_0019E": "39248", + "DP05_0019PE": "21.6", + "state": "18", + "county": "163" + }, + { + "DP05_0001E": "15485", + "DP05_0019E": "3382", + "DP05_0019PE": "21.8", + "state": "18", + "county": "165" + }, + { + "DP05_0001E": "31198", + "DP05_0019E": "6441", + "DP05_0019PE": "20.6", + "state": "18", + "county": "169" + }, + { + "DP05_0001E": "32709", + "DP05_0019E": "9489", + "DP05_0019PE": "29.0", + "state": "48", + "county": "449" + }, + { + "DP05_0001E": "118645", + "DP05_0019E": "28192", + "DP05_0019PE": "23.8", + "state": "48", + "county": "451" + }, + { + "DP05_0001E": "1250884", + "DP05_0019E": "270643", + "DP05_0019PE": "21.6", + "state": "48", + "county": "453" + }, + { + "DP05_0001E": "14689", + "DP05_0019E": "2951", + "DP05_0019PE": "20.1", + "state": "48", + "county": "455" + }, + { + "DP05_0001E": "21524", + "DP05_0019E": "4137", + "DP05_0019PE": "19.2", + "state": "48", + "county": "457" + }, + { + "DP05_0001E": "41386", + "DP05_0019E": "9902", + "DP05_0019PE": "23.9", + "state": "48", + "county": "459" + }, + { + "DP05_0001E": "3651", + "DP05_0019E": "1060", + "DP05_0019PE": "29.0", + "state": "48", + "county": "461" + }, + { + "DP05_0001E": "26899", + "DP05_0019E": "7182", + "DP05_0019PE": "26.7", + "state": "48", + "county": "463" + }, + { + "DP05_0001E": "55970", + "DP05_0019E": "12940", + "DP05_0019PE": "23.1", + "state": "48", + "county": "467" + }, + { + "DP05_0001E": "92044", + "DP05_0019E": "23353", + "DP05_0019PE": "25.4", + "state": "48", + "county": "469" + }, + { + "DP05_0001E": "53626", + "DP05_0019E": "12913", + "DP05_0019PE": "24.1", + "state": "48", + "county": "473" + }, + { + "DP05_0001E": "11745", + "DP05_0019E": "3347", + "DP05_0019PE": "28.5", + "state": "48", + "county": "475" + }, + { + "DP05_0001E": "274847", + "DP05_0019E": "90377", + "DP05_0019PE": "32.9", + "state": "48", + "county": "479" + }, + { + "DP05_0001E": "41672", + "DP05_0019E": "10871", + "DP05_0019PE": "26.1", + "state": "48", + "county": "481" + }, + { + "DP05_0001E": "132154", + "DP05_0019E": "29786", + "DP05_0019PE": "22.5", + "state": "48", + "county": "485" + }, + { + "DP05_0001E": "12717", + "DP05_0019E": "2840", + "DP05_0019PE": "22.3", + "state": "48", + "county": "487" + }, + { + "DP05_0001E": "570437", + "DP05_0019E": "145945", + "DP05_0019PE": "25.6", + "state": "48", + "county": "491" + }, + { + "DP05_0001E": "50110", + "DP05_0019E": "12069", + "DP05_0019PE": "24.1", + "state": "48", + "county": "493" + }, + { + "DP05_0001E": "67884", + "DP05_0019E": "16754", + "DP05_0019PE": "24.7", + "state": "48", + "county": "497" + }, + { + "DP05_0001E": "45054", + "DP05_0019E": "8649", + "DP05_0019PE": "19.2", + "state": "48", + "county": "499" + }, + { + "DP05_0001E": "17961", + "DP05_0019E": "4354", + "DP05_0019PE": "24.2", + "state": "48", + "county": "503" + }, + { + "DP05_0001E": "14243", + "DP05_0019E": "4756", + "DP05_0019PE": "33.4", + "state": "48", + "county": "505" + }, + { + "DP05_0001E": "37096", + "DP05_0019E": "8068", + "DP05_0019PE": "21.7", + "state": "01", + "county": "039" + }, + { + "DP05_0001E": "49293", + "DP05_0019E": "11329", + "DP05_0019PE": "23.0", + "state": "01", + "county": "045" + }, + { + "DP05_0001E": "81526", + "DP05_0019E": "18171", + "DP05_0019PE": "22.3", + "state": "01", + "county": "051" + }, + { + "DP05_0001E": "16406", + "DP05_0019E": "3471", + "DP05_0019PE": "21.2", + "state": "01", + "county": "057" + }, + { + "DP05_0001E": "26383", + "DP05_0019E": "5795", + "DP05_0019PE": "22.0", + "state": "01", + "county": "061" + }, + { + "DP05_0001E": "17123", + "DP05_0019E": "3555", + "DP05_0019PE": "20.8", + "state": "01", + "county": "067" + }, + { + "DP05_0001E": "658615", + "DP05_0019E": "150353", + "DP05_0019PE": "22.8", + "state": "01", + "county": "073" + }, + { + "DP05_0001E": "32969", + "DP05_0019E": "7137", + "DP05_0019PE": "21.6", + "state": "01", + "county": "079" + }, + { + "DP05_0001E": "96921", + "DP05_0019E": "21811", + "DP05_0019PE": "22.5", + "state": "01", + "county": "083" + }, + { + "DP05_0001E": "367686", + "DP05_0019E": "80316", + "DP05_0019PE": "21.8", + "state": "01", + "county": "089" + }, + { + "DP05_0001E": "96137", + "DP05_0019E": "24023", + "DP05_0019PE": "25.0", + "state": "01", + "county": "095" + }, + { + "DP05_0001E": "226451", + "DP05_0019E": "53224", + "DP05_0019PE": "23.5", + "state": "01", + "county": "101" + }, + { + "DP05_0001E": "9104", + "DP05_0019E": "1929", + "DP05_0019PE": "21.2", + "state": "01", + "county": "105" + }, + { + "DP05_0001E": "22732", + "DP05_0019E": "4814", + "DP05_0019PE": "21.2", + "state": "01", + "county": "111" + }, + { + "DP05_0001E": "216350", + "DP05_0019E": "50734", + "DP05_0019PE": "23.4", + "state": "01", + "county": "117" + }, + { + "DP05_0001E": "80244", + "DP05_0019E": "16991", + "DP05_0019PE": "21.2", + "state": "01", + "county": "121" + }, + { + "DP05_0001E": "63802", + "DP05_0019E": "14145", + "DP05_0019PE": "22.2", + "state": "01", + "county": "127" + }, + { + "DP05_0001E": "23712", + "DP05_0019E": "4838", + "DP05_0019PE": "20.4", + "state": "01", + "county": "133" + }, + { + "DP05_0001E": "39023", + "DP05_0019E": "5962", + "DP05_0019PE": "15.3", + "state": "06", + "county": "005" + }, + { + "DP05_0001E": "45828", + "DP05_0019E": "7618", + "DP05_0019PE": "16.6", + "state": "06", + "county": "009" + }, + { + "DP05_0001E": "27692", + "DP05_0019E": "6003", + "DP05_0019PE": "21.7", + "state": "06", + "county": "015" + }, + { + "DP05_0001E": "28060", + "DP05_0019E": "7491", + "DP05_0019PE": "26.7", + "state": "06", + "county": "021" + }, + { + "DP05_0001E": "17930", + "DP05_0019E": "3722", + "DP05_0019PE": "20.8", + "state": "06", + "county": "027" + }, + { + "DP05_0001E": "64276", + "DP05_0019E": "13528", + "DP05_0019PE": "21.0", + "state": "06", + "county": "033" + }, + { + "DP05_0001E": "10040682", + "DP05_0019E": "2178559", + "DP05_0019PE": "21.7", + "state": "06", + "county": "037" + }, + { + "DP05_0001E": "444895", + "DP05_0019E": "99039", + "DP05_0019PE": "22.3", + "state": "06", + "county": "083" + }, + { + "DP05_0001E": "179267", + "DP05_0019E": "38668", + "DP05_0019PE": "21.6", + "state": "06", + "county": "089" + }, + { + "DP05_0001E": "30581", + "DP05_0019E": "7081", + "DP05_0019PE": "23.2", + "state": "51", + "county": "033" + }, + { + "DP05_0001E": "348500", + "DP05_0019E": "82987", + "DP05_0019PE": "23.8", + "state": "51", + "county": "041" + }, + { + "DP05_0001E": "51935", + "DP05_0019E": "12679", + "DP05_0019PE": "24.4", + "state": "51", + "county": "047" + }, + { + "DP05_0001E": "28686", + "DP05_0019E": "5964", + "DP05_0019PE": "20.8", + "state": "51", + "county": "053" + }, + { + "DP05_0001E": "70353", + "DP05_0019E": "16357", + "DP05_0019PE": "23.2", + "state": "51", + "county": "061" + }, + { + "DP05_0001E": "56231", + "DP05_0019E": "10656", + "DP05_0019PE": "19.0", + "state": "51", + "county": "067" + }, + { + "DP05_0001E": "37362", + "DP05_0019E": "7424", + "DP05_0019PE": "19.9", + "state": "51", + "county": "073" + }, + { + "DP05_0001E": "19734", + "DP05_0019E": "4702", + "DP05_0019PE": "23.8", + "state": "51", + "county": "079" + }, + { + "DP05_0001E": "106538", + "DP05_0019E": "23393", + "DP05_0019PE": "22.0", + "state": "51", + "county": "085" + }, + { + "DP05_0001E": "2202", + "DP05_0019E": "309", + "DP05_0019PE": "14.0", + "state": "51", + "county": "091" + }, + { + "DP05_0001E": "60867", + "DP05_0019E": "11445", + "DP05_0019PE": "18.8", + "state": "51", + "county": "143" + }, + { + "DP05_0001E": "466834", + "DP05_0019E": "126298", + "DP05_0019PE": "27.1", + "state": "51", + "county": "153" + }, + { + "DP05_0001E": "8951", + "DP05_0019E": "1528", + "DP05_0019PE": "17.1", + "state": "51", + "county": "159" + }, + { + "DP05_0001E": "81138", + "DP05_0019E": "17989", + "DP05_0019PE": "22.2", + "state": "51", + "county": "165" + }, + { + "DP05_0001E": "43441", + "DP05_0019E": "9178", + "DP05_0019PE": "21.1", + "state": "51", + "county": "171" + }, + { + "DP05_0001E": "134683", + "DP05_0019E": "33443", + "DP05_0019PE": "24.8", + "state": "51", + "county": "177" + }, + { + "DP05_0001E": "11202", + "DP05_0019E": "1725", + "DP05_0019PE": "15.4", + "state": "51", + "county": "183" + }, + { + "DP05_0001E": "54005", + "DP05_0019E": "9756", + "DP05_0019PE": "18.1", + "state": "51", + "county": "191" + }, + { + "DP05_0001E": "28725", + "DP05_0019E": "5672", + "DP05_0019PE": "19.7", + "state": "51", + "county": "197" + }, + { + "DP05_0001E": "17059", + "DP05_0019E": "3556", + "DP05_0019PE": "20.8", + "state": "51", + "county": "520" + }, + { + "DP05_0001E": "242647", + "DP05_0019E": "58883", + "DP05_0019PE": "24.3", + "state": "51", + "county": "550" + }, + { + "DP05_0001E": "5408", + "DP05_0019E": "1654", + "DP05_0019PE": "30.6", + "state": "51", + "county": "595" + }, + { + "DP05_0001E": "8015", + "DP05_0019E": "2009", + "DP05_0019PE": "25.1", + "state": "51", + "county": "620" + }, + { + "DP05_0001E": "135169", + "DP05_0019E": "28544", + "DP05_0019PE": "21.1", + "state": "51", + "county": "650" + }, + { + "DP05_0001E": "7205", + "DP05_0019E": "581", + "DP05_0019PE": "8.1", + "state": "51", + "county": "678" + }, + { + "DP05_0001E": "17548", + "DP05_0019E": "4541", + "DP05_0019PE": "25.9", + "state": "51", + "county": "685" + }, + { + "DP05_0001E": "244300", + "DP05_0019E": "47911", + "DP05_0019PE": "19.6", + "state": "51", + "county": "710" + }, + { + "DP05_0001E": "12121", + "DP05_0019E": "2597", + "DP05_0019PE": "21.4", + "state": "51", + "county": "735" + }, + { + "DP05_0001E": "229233", + "DP05_0019E": "39853", + "DP05_0019PE": "17.4", + "state": "51", + "county": "760" + }, + { + "DP05_0001E": "31825", + "DP05_0019E": "3828", + "DP05_0019PE": "12.0", + "state": "53", + "county": "031" + }, + { + "DP05_0001E": "22055", + "DP05_0019E": "4250", + "DP05_0019PE": "19.3", + "state": "53", + "county": "039" + }, + { + "DP05_0001E": "65326", + "DP05_0019E": "12613", + "DP05_0019PE": "19.3", + "state": "53", + "county": "045" + }, + { + "DP05_0001E": "13588", + "DP05_0019E": "2577", + "DP05_0019PE": "19.0", + "state": "53", + "county": "051" + }, + { + "DP05_0001E": "127442", + "DP05_0019E": "27742", + "DP05_0019PE": "21.8", + "state": "53", + "county": "057" + }, + { + "DP05_0001E": "513402", + "DP05_0019E": "113309", + "DP05_0019PE": "22.1", + "state": "53", + "county": "063" + }, + { + "DP05_0001E": "4318", + "DP05_0019E": "754", + "DP05_0019PE": "17.5", + "state": "53", + "county": "069" + }, + { + "DP05_0001E": "49577", + "DP05_0019E": "7416", + "DP05_0019PE": "15.0", + "state": "53", + "county": "075" + }, + { + "DP05_0001E": "117615", + "DP05_0019E": "27441", + "DP05_0019PE": "23.3", + "state": "54", + "county": "003" + }, + { + "DP05_0001E": "22162", + "DP05_0019E": "3891", + "DP05_0019PE": "17.6", + "state": "54", + "county": "009" + }, + { + "DP05_0001E": "8499", + "DP05_0019E": "1330", + "DP05_0019PE": "15.6", + "state": "54", + "county": "017" + }, + { + "DP05_0001E": "11565", + "DP05_0019E": "2134", + "DP05_0019PE": "18.5", + "state": "54", + "county": "023" + }, + { + "DP05_0001E": "29118", + "DP05_0019E": "5529", + "DP05_0019PE": "19.0", + "state": "54", + "county": "029" + }, + { + "DP05_0001E": "28793", + "DP05_0019E": "6258", + "DP05_0019PE": "21.7", + "state": "54", + "county": "035" + }, + { + "DP05_0001E": "16024", + "DP05_0019E": "3442", + "DP05_0019PE": "21.5", + "state": "54", + "county": "041" + }, + { + "DP05_0001E": "18083", + "DP05_0019E": "3714", + "DP05_0019PE": "20.5", + "state": "54", + "county": "047" + }, + { + "DP05_0001E": "26700", + "DP05_0019E": "5513", + "DP05_0019PE": "20.6", + "state": "54", + "county": "053" + }, + { + "DP05_0001E": "23808", + "DP05_0019E": "5297", + "DP05_0019PE": "22.2", + "state": "54", + "county": "059" + }, + { + "DP05_0001E": "17800", + "DP05_0019E": "3169", + "DP05_0019PE": "17.8", + "state": "54", + "county": "065" + }, + { + "DP05_0001E": "20208", + "DP05_0019E": "2962", + "DP05_0019PE": "14.7", + "state": "55", + "county": "001" + }, + { + "DP05_0001E": "15088", + "DP05_0019E": "2610", + "DP05_0019PE": "17.3", + "state": "55", + "county": "007" + }, + { + "DP05_0001E": "15363", + "DP05_0019E": "2698", + "DP05_0019PE": "17.6", + "state": "55", + "county": "013" + }, + { + "DP05_0001E": "34668", + "DP05_0019E": "10245", + "DP05_0019PE": "29.6", + "state": "55", + "county": "019" + }, + { + "DP05_0001E": "542459", + "DP05_0019E": "110477", + "DP05_0019PE": "20.4", + "state": "55", + "county": "025" + }, + { + "DP05_0001E": "43497", + "DP05_0019E": "8587", + "DP05_0019PE": "19.7", + "state": "55", + "county": "031" + }, + { + "DP05_0001E": "4312", + "DP05_0019E": "666", + "DP05_0019PE": "15.4", + "state": "55", + "county": "037" + }, + { + "DP05_0001E": "51570", + "DP05_0019E": "10700", + "DP05_0019PE": "20.7", + "state": "55", + "county": "043" + }, + { + "DP05_0001E": "23632", + "DP05_0019E": "5358", + "DP05_0019PE": "22.7", + "state": "55", + "county": "049" + }, + { + "DP05_0001E": "84837", + "DP05_0019E": "17886", + "DP05_0019PE": "21.1", + "state": "55", + "county": "055" + }, + { + "DP05_0001E": "93478", + "DP05_0019E": "21866", + "DP05_0019PE": "23.4", + "state": "19", + "county": "155" + }, + { + "DP05_0001E": "4922", + "DP05_0019E": "1200", + "DP05_0019PE": "24.4", + "state": "19", + "county": "159" + }, + { + "DP05_0001E": "9711", + "DP05_0019E": "2164", + "DP05_0019PE": "22.3", + "state": "19", + "county": "161" + }, + { + "DP05_0001E": "11544", + "DP05_0019E": "2534", + "DP05_0019PE": "22.0", + "state": "19", + "county": "165" + }, + { + "DP05_0001E": "34900", + "DP05_0019E": "9469", + "DP05_0019PE": "27.1", + "state": "19", + "county": "167" + }, + { + "DP05_0001E": "16962", + "DP05_0019E": "4152", + "DP05_0019PE": "24.5", + "state": "19", + "county": "171" + }, + { + "DP05_0001E": "12303", + "DP05_0019E": "2759", + "DP05_0019PE": "22.4", + "state": "19", + "county": "175" + }, + { + "DP05_0001E": "7104", + "DP05_0019E": "1637", + "DP05_0019PE": "23.0", + "state": "19", + "county": "177" + }, + { + "DP05_0001E": "50867", + "DP05_0019E": "12534", + "DP05_0019PE": "24.6", + "state": "19", + "county": "181" + }, + { + "DP05_0001E": "22100", + "DP05_0019E": "5470", + "DP05_0019PE": "24.8", + "state": "19", + "county": "183" + }, + { + "DP05_0001E": "36348", + "DP05_0019E": "7709", + "DP05_0019PE": "21.2", + "state": "19", + "county": "187" + }, + { + "DP05_0001E": "20090", + "DP05_0019E": "3705", + "DP05_0019PE": "18.4", + "state": "19", + "county": "191" + }, + { + "DP05_0001E": "102687", + "DP05_0019E": "26767", + "DP05_0019PE": "26.1", + "state": "19", + "county": "193" + }, + { + "DP05_0001E": "12644", + "DP05_0019E": "3052", + "DP05_0019PE": "24.1", + "state": "19", + "county": "197" + }, + { + "DP05_0001E": "71002", + "DP05_0019E": "12305", + "DP05_0019PE": "17.3", + "state": "24", + "county": "001" + }, + { + "DP05_0001E": "828193", + "DP05_0019E": "179086", + "DP05_0019PE": "21.6", + "state": "24", + "county": "005" + }, + { + "DP05_0001E": "33260", + "DP05_0019E": "7850", + "DP05_0019PE": "23.6", + "state": "24", + "county": "011" + }, + { + "DP05_0001E": "168233", + "DP05_0019E": "36622", + "DP05_0019PE": "21.8", + "state": "24", + "county": "013" + }, + { + "DP05_0001E": "161448", + "DP05_0019E": "38747", + "DP05_0019PE": "24.0", + "state": "24", + "county": "017" + }, + { + "DP05_0001E": "31994", + "DP05_0019E": "6734", + "DP05_0019PE": "21.0", + "state": "24", + "county": "019" + }, + { + "DP05_0001E": "29155", + "DP05_0019E": "5411", + "DP05_0019PE": "18.6", + "state": "24", + "county": "023" + }, + { + "DP05_0001E": "253736", + "DP05_0019E": "56569", + "DP05_0019PE": "22.3", + "state": "24", + "county": "025" + }, + { + "DP05_0001E": "19456", + "DP05_0019E": "3045", + "DP05_0019PE": "15.7", + "state": "24", + "county": "029" + }, + { + "DP05_0001E": "910551", + "DP05_0019E": "202908", + "DP05_0019PE": "22.3", + "state": "24", + "county": "033" + }, + { + "DP05_0001E": "50163", + "DP05_0019E": "10753", + "DP05_0019PE": "21.4", + "state": "24", + "county": "035" + }, + { + "DP05_0001E": "25699", + "DP05_0019E": "4390", + "DP05_0019PE": "17.1", + "state": "24", + "county": "039" + }, + { + "DP05_0001E": "37087", + "DP05_0019E": "6796", + "DP05_0019PE": "18.3", + "state": "24", + "county": "041" + }, + { + "DP05_0001E": "150575", + "DP05_0019E": "32813", + "DP05_0019PE": "21.8", + "state": "24", + "county": "043" + }, + { + "DP05_0001E": "103222", + "DP05_0019E": "22612", + "DP05_0019PE": "21.9", + "state": "24", + "county": "045" + }, + { + "DP05_0001E": "51967", + "DP05_0019E": "8935", + "DP05_0019PE": "17.2", + "state": "24", + "county": "047" + }, + { + "DP05_0001E": "602274", + "DP05_0019E": "123241", + "DP05_0019PE": "20.5", + "state": "24", + "county": "510" + }, + { + "DP05_0001E": "10396", + "DP05_0019E": "1328", + "DP05_0019PE": "12.8", + "state": "26", + "county": "001" + }, + { + "DP05_0001E": "9098", + "DP05_0019E": "1379", + "DP05_0019PE": "15.2", + "state": "26", + "county": "003" + }, + { + "DP05_0001E": "117104", + "DP05_0019E": "28307", + "DP05_0019PE": "24.2", + "state": "26", + "county": "005" + }, + { + "DP05_0001E": "28431", + "DP05_0019E": "5326", + "DP05_0019PE": "18.7", + "state": "26", + "county": "007" + }, + { + "DP05_0001E": "23301", + "DP05_0019E": "4205", + "DP05_0019PE": "18.0", + "state": "26", + "county": "009" + }, + { + "DP05_0001E": "15013", + "DP05_0019E": "2718", + "DP05_0019PE": "18.1", + "state": "26", + "county": "011" + }, + { + "DP05_0001E": "8337", + "DP05_0019E": "1472", + "DP05_0019PE": "17.7", + "state": "26", + "county": "013" + }, + { + "DP05_0001E": "61045", + "DP05_0019E": "13490", + "DP05_0019PE": "22.1", + "state": "26", + "county": "015" + }, + { + "DP05_0001E": "103506", + "DP05_0019E": "20903", + "DP05_0019PE": "20.2", + "state": "26", + "county": "017" + }, + { + "DP05_0001E": "17703", + "DP05_0019E": "3206", + "DP05_0019PE": "18.1", + "state": "26", + "county": "019" + }, + { + "DP05_0001E": "153797", + "DP05_0019E": "33497", + "DP05_0019PE": "21.8", + "state": "26", + "county": "021" + }, + { + "DP05_0001E": "43428", + "DP05_0019E": "10113", + "DP05_0019PE": "23.3", + "state": "26", + "county": "023" + }, + { + "DP05_0001E": "133943", + "DP05_0019E": "30611", + "DP05_0019PE": "22.9", + "state": "26", + "county": "025" + }, + { + "DP05_0001E": "51613", + "DP05_0019E": "10697", + "DP05_0019PE": "20.7", + "state": "26", + "county": "027" + }, + { + "DP05_0001E": "26197", + "DP05_0019E": "4959", + "DP05_0019PE": "18.9", + "state": "26", + "county": "029" + }, + { + "DP05_0001E": "37418", + "DP05_0019E": "6801", + "DP05_0019PE": "18.2", + "state": "26", + "county": "033" + }, + { + "DP05_0001E": "30655", + "DP05_0019E": "6081", + "DP05_0019PE": "19.8", + "state": "26", + "county": "035" + }, + { + "DP05_0001E": "13904", + "DP05_0019E": "2562", + "DP05_0019PE": "18.4", + "state": "26", + "county": "039" + }, + { + "DP05_0001E": "35874", + "DP05_0019E": "7093", + "DP05_0019PE": "19.8", + "state": "26", + "county": "041" + }, + { + "DP05_0001E": "109730", + "DP05_0019E": "22904", + "DP05_0019PE": "20.9", + "state": "26", + "county": "045" + }, + { + "DP05_0001E": "406770", + "DP05_0019E": "91812", + "DP05_0019PE": "22.6", + "state": "26", + "county": "049" + }, + { + "DP05_0001E": "25312", + "DP05_0019E": "4808", + "DP05_0019PE": "19.0", + "state": "26", + "county": "051" + }, + { + "DP05_0001E": "92640", + "DP05_0019E": "18688", + "DP05_0019PE": "20.2", + "state": "26", + "county": "055" + }, + { + "DP05_0001E": "40692", + "DP05_0019E": "8035", + "DP05_0019PE": "19.7", + "state": "26", + "county": "057" + }, + { + "DP05_0001E": "35890", + "DP05_0019E": "7246", + "DP05_0019PE": "20.2", + "state": "26", + "county": "061" + }, + { + "DP05_0001E": "31105", + "DP05_0019E": "5959", + "DP05_0019PE": "19.2", + "state": "26", + "county": "063" + }, + { + "DP05_0001E": "64401", + "DP05_0019E": "14358", + "DP05_0019PE": "22.3", + "state": "26", + "county": "067" + }, + { + "DP05_0001E": "11099", + "DP05_0019E": "1817", + "DP05_0019PE": "16.4", + "state": "26", + "county": "071" + }, + { + "DP05_0001E": "8219", + "DP05_0019E": "1768", + "DP05_0019PE": "21.5", + "state": "18", + "county": "171" + }, + { + "DP05_0001E": "27942", + "DP05_0019E": "6399", + "DP05_0019PE": "22.9", + "state": "18", + "county": "175" + }, + { + "DP05_0001E": "66176", + "DP05_0019E": "14616", + "DP05_0019PE": "22.1", + "state": "18", + "county": "177" + }, + { + "DP05_0001E": "24163", + "DP05_0019E": "5636", + "DP05_0019PE": "23.3", + "state": "18", + "county": "181" + }, + { + "DP05_0001E": "33899", + "DP05_0019E": "7808", + "DP05_0019PE": "23.0", + "state": "18", + "county": "183" + }, + { + "DP05_0001E": "125927", + "DP05_0019E": "21289", + "DP05_0019PE": "16.9", + "state": "25", + "county": "003" + }, + { + "DP05_0001E": "563301", + "DP05_0019E": "116553", + "DP05_0019PE": "20.7", + "state": "25", + "county": "005" + }, + { + "DP05_0001E": "787038", + "DP05_0019E": "167490", + "DP05_0019PE": "21.3", + "state": "25", + "county": "009" + }, + { + "DP05_0001E": "70529", + "DP05_0019E": "12230", + "DP05_0019PE": "17.3", + "state": "25", + "county": "011" + }, + { + "DP05_0001E": "161361", + "DP05_0019E": "23439", + "DP05_0019PE": "14.5", + "state": "25", + "county": "015" + }, + { + "DP05_0001E": "1605899", + "DP05_0019E": "317941", + "DP05_0019PE": "19.8", + "state": "25", + "county": "017" + }, + { + "DP05_0001E": "703740", + "DP05_0019E": "147302", + "DP05_0019PE": "20.9", + "state": "25", + "county": "021" + }, + { + "DP05_0001E": "518597", + "DP05_0019E": "111332", + "DP05_0019PE": "21.5", + "state": "25", + "county": "023" + }, + { + "DP05_0001E": "801162", + "DP05_0019E": "132639", + "DP05_0019PE": "16.6", + "state": "25", + "county": "025" + }, + { + "DP05_0001E": "826655", + "DP05_0019E": "174503", + "DP05_0019PE": "21.1", + "state": "25", + "county": "027" + }, + { + "DP05_0001E": "27685", + "DP05_0019E": "6630", + "DP05_0019PE": "23.9", + "state": "39", + "county": "001" + }, + { + "DP05_0001E": "102808", + "DP05_0019E": "23764", + "DP05_0019PE": "23.1", + "state": "39", + "county": "003" + }, + { + "DP05_0001E": "53533", + "DP05_0019E": "12009", + "DP05_0019PE": "22.4", + "state": "39", + "county": "005" + }, + { + "DP05_0001E": "97416", + "DP05_0019E": "21516", + "DP05_0019PE": "22.1", + "state": "39", + "county": "007" + }, + { + "DP05_0001E": "65945", + "DP05_0019E": "9575", + "DP05_0019PE": "14.5", + "state": "39", + "county": "009" + }, + { + "DP05_0001E": "45709", + "DP05_0019E": "11024", + "DP05_0019PE": "24.1", + "state": "39", + "county": "011" + }, + { + "DP05_0001E": "67424", + "DP05_0019E": "12700", + "DP05_0019PE": "18.8", + "state": "39", + "county": "013" + }, + { + "DP05_0001E": "43508", + "DP05_0019E": "9923", + "DP05_0019PE": "22.8", + "state": "39", + "county": "015" + }, + { + "DP05_0001E": "382129", + "DP05_0019E": "89687", + "DP05_0019PE": "23.5", + "state": "39", + "county": "017" + }, + { + "DP05_0001E": "27195", + "DP05_0019E": "5592", + "DP05_0019PE": "20.6", + "state": "39", + "county": "019" + }, + { + "DP05_0001E": "38861", + "DP05_0019E": "8670", + "DP05_0019PE": "22.3", + "state": "39", + "county": "021" + }, + { + "DP05_0001E": "134409", + "DP05_0019E": "30212", + "DP05_0019PE": "22.5", + "state": "39", + "county": "023" + }, + { + "DP05_0001E": "205616", + "DP05_0019E": "47361", + "DP05_0019PE": "23.0", + "state": "39", + "county": "025" + }, + { + "DP05_0001E": "42000", + "DP05_0019E": "9706", + "DP05_0019PE": "23.1", + "state": "39", + "county": "027" + }, + { + "DP05_0001E": "102514", + "DP05_0019E": "20819", + "DP05_0019PE": "20.3", + "state": "39", + "county": "029" + }, + { + "DP05_0001E": "36558", + "DP05_0019E": "8565", + "DP05_0019PE": "23.4", + "state": "39", + "county": "031" + }, + { + "DP05_0001E": "41603", + "DP05_0019E": "9079", + "DP05_0019PE": "21.8", + "state": "39", + "county": "033" + }, + { + "DP05_0001E": "1241475", + "DP05_0019E": "257707", + "DP05_0019PE": "20.8", + "state": "39", + "county": "035" + }, + { + "DP05_0001E": "38024", + "DP05_0019E": "8711", + "DP05_0019PE": "22.9", + "state": "39", + "county": "039" + }, + { + "DP05_0001E": "205454", + "DP05_0019E": "54078", + "DP05_0019PE": "26.3", + "state": "39", + "county": "041" + }, + { + "DP05_0001E": "156204", + "DP05_0019E": "37471", + "DP05_0019PE": "24.0", + "state": "39", + "county": "045" + }, + { + "DP05_0001E": "28609", + "DP05_0019E": "6745", + "DP05_0019PE": "23.6", + "state": "39", + "county": "047" + }, + { + "DP05_0001E": "42186", + "DP05_0019E": "9949", + "DP05_0019PE": "23.6", + "state": "39", + "county": "051" + }, + { + "DP05_0001E": "29995", + "DP05_0019E": "6891", + "DP05_0019PE": "23.0", + "state": "39", + "county": "053" + }, + { + "DP05_0001E": "167867", + "DP05_0019E": "34584", + "DP05_0019PE": "20.6", + "state": "39", + "county": "057" + }, + { + "DP05_0001E": "38996", + "DP05_0019E": "8586", + "DP05_0019PE": "22.0", + "state": "39", + "county": "059" + }, + { + "DP05_0001E": "75765", + "DP05_0019E": "16806", + "DP05_0019PE": "22.2", + "state": "39", + "county": "063" + }, + { + "DP05_0001E": "31393", + "DP05_0019E": "7047", + "DP05_0019PE": "22.4", + "state": "39", + "county": "065" + }, + { + "DP05_0001E": "27068", + "DP05_0019E": "6296", + "DP05_0019PE": "23.3", + "state": "39", + "county": "069" + }, + { + "DP05_0001E": "28306", + "DP05_0019E": "6163", + "DP05_0019PE": "21.8", + "state": "39", + "county": "073" + }, + { + "DP05_0001E": "43954", + "DP05_0019E": "13731", + "DP05_0019PE": "31.2", + "state": "39", + "county": "075" + }, + { + "DP05_0001E": "32440", + "DP05_0019E": "7679", + "DP05_0019PE": "23.7", + "state": "39", + "county": "079" + }, + { + "DP05_0001E": "65943", + "DP05_0019E": "12664", + "DP05_0019PE": "19.2", + "state": "39", + "county": "081" + }, + { + "DP05_0001E": "229755", + "DP05_0019E": "46016", + "DP05_0019PE": "20.0", + "state": "39", + "county": "085" + }, + { + "DP05_0001E": "59901", + "DP05_0019E": "13187", + "DP05_0019PE": "22.0", + "state": "39", + "county": "087" + }, + { + "DP05_0001E": "45315", + "DP05_0019E": "10475", + "DP05_0019PE": "23.1", + "state": "39", + "county": "091" + }, + { + "DP05_0001E": "309134", + "DP05_0019E": "68027", + "DP05_0019PE": "22.0", + "state": "39", + "county": "093" + }, + { + "DP05_0001E": "44248", + "DP05_0019E": "9052", + "DP05_0019PE": "20.5", + "state": "39", + "county": "097" + }, + { + "DP05_0001E": "65179", + "DP05_0019E": "13721", + "DP05_0019PE": "21.1", + "state": "39", + "county": "101" + }, + { + "DP05_0001E": "179116", + "DP05_0019E": "39989", + "DP05_0019PE": "22.3", + "state": "39", + "county": "103" + }, + { + "DP05_0001E": "41034", + "DP05_0019E": "10552", + "DP05_0019PE": "25.7", + "state": "39", + "county": "107" + }, + { + "DP05_0001E": "106074", + "DP05_0019E": "24469", + "DP05_0019PE": "23.1", + "state": "39", + "county": "109" + }, + { + "DP05_0001E": "531988", + "DP05_0019E": "117747", + "DP05_0019PE": "22.1", + "state": "39", + "county": "113" + }, + { + "DP05_0001E": "14557", + "DP05_0019E": "3040", + "DP05_0019PE": "20.9", + "state": "39", + "county": "115" + }, + { + "DP05_0001E": "86033", + "DP05_0019E": "19534", + "DP05_0019PE": "22.7", + "state": "39", + "county": "119" + }, + { + "DP05_0001E": "43516", + "DP05_0019E": "8800", + "DP05_0019PE": "20.2", + "state": "06", + "county": "093" + }, + { + "DP05_0001E": "546235", + "DP05_0019E": "148177", + "DP05_0019PE": "27.1", + "state": "06", + "county": "099" + }, + { + "DP05_0001E": "12541", + "DP05_0019E": "2161", + "DP05_0019PE": "17.2", + "state": "06", + "county": "105" + }, + { + "DP05_0001E": "845599", + "DP05_0019E": "193847", + "DP05_0019PE": "22.9", + "state": "06", + "county": "111" + }, + { + "DP05_0001E": "17761", + "DP05_0019E": "4066", + "DP05_0019PE": "22.9", + "state": "05", + "county": "001" + }, + { + "DP05_0001E": "273510", + "DP05_0019E": "71869", + "DP05_0019PE": "26.3", + "state": "05", + "county": "007" + }, + { + "DP05_0001E": "10805", + "DP05_0019E": "2616", + "DP05_0019PE": "24.2", + "state": "05", + "county": "011" + }, + { + "DP05_0001E": "10433", + "DP05_0019E": "2304", + "DP05_0019PE": "22.1", + "state": "05", + "county": "017" + }, + { + "DP05_0001E": "25063", + "DP05_0019E": "4760", + "DP05_0019PE": "19.0", + "state": "05", + "county": "023" + }, + { + "DP05_0001E": "20895", + "DP05_0019E": "4767", + "DP05_0019PE": "22.8", + "state": "05", + "county": "029" + }, + { + "DP05_0001E": "63118", + "DP05_0019E": "15460", + "DP05_0019PE": "24.5", + "state": "05", + "county": "033" + }, + { + "DP05_0001E": "7114", + "DP05_0019E": "1516", + "DP05_0019PE": "21.3", + "state": "05", + "county": "039" + }, + { + "DP05_0001E": "124800", + "DP05_0019E": "28824", + "DP05_0019PE": "23.1", + "state": "05", + "county": "045" + }, + { + "DP05_0001E": "99043", + "DP05_0019E": "19893", + "DP05_0019PE": "20.1", + "state": "05", + "county": "051" + }, + { + "DP05_0001E": "45197", + "DP05_0019E": "11031", + "DP05_0019PE": "24.4", + "state": "05", + "county": "055" + }, + { + "DP05_0001E": "13267", + "DP05_0019E": "3454", + "DP05_0019PE": "26.0", + "state": "05", + "county": "061" + }, + { + "DP05_0001E": "16908", + "DP05_0019E": "3372", + "DP05_0019PE": "19.9", + "state": "05", + "county": "067" + }, + { + "DP05_0001E": "6728", + "DP05_0019E": "1279", + "DP05_0019PE": "19.0", + "state": "05", + "county": "073" + }, + { + "DP05_0001E": "8963", + "DP05_0019E": "1636", + "DP05_0019PE": "18.3", + "state": "05", + "county": "077" + }, + { + "DP05_0001E": "21619", + "DP05_0019E": "4687", + "DP05_0019PE": "21.7", + "state": "05", + "county": "083" + }, + { + "DP05_0001E": "16586", + "DP05_0019E": "3006", + "DP05_0019PE": "18.1", + "state": "05", + "county": "089" + }, + { + "DP05_0001E": "41396", + "DP05_0019E": "10856", + "DP05_0019PE": "26.2", + "state": "05", + "county": "093" + }, + { + "DP05_0001E": "16578", + "DP05_0019E": "3199", + "DP05_0019PE": "19.3", + "state": "05", + "county": "141" + }, + { + "DP05_0001E": "6477", + "DP05_0019E": "1389", + "DP05_0019PE": "21.4", + "state": "05", + "county": "147" + }, + { + "DP05_0001E": "944306", + "DP05_0019E": "212144", + "DP05_0019PE": "22.5", + "state": "09", + "county": "001" + }, + { + "DP05_0001E": "162742", + "DP05_0019E": "28742", + "DP05_0019PE": "17.7", + "state": "09", + "county": "007" + }, + { + "DP05_0001E": "150947", + "DP05_0019E": "26175", + "DP05_0019PE": "17.3", + "state": "09", + "county": "013" + }, + { + "DP05_0001E": "3389", + "DP05_0019E": "443", + "DP05_0019PE": "13.1", + "state": "02", + "county": "013" + }, + { + "DP05_0001E": "18263", + "DP05_0019E": "6508", + "DP05_0019PE": "35.6", + "state": "02", + "county": "050" + }, + { + "DP05_0001E": "2894", + "DP05_0019E": "805", + "DP05_0019PE": "27.8", + "state": "02", + "county": "066" + }, + { + "DP05_0001E": "98455", + "DP05_0019E": "23708", + "DP05_0019PE": "24.1", + "state": "02", + "county": "090" + }, + { + "DP05_0001E": "32099", + "DP05_0019E": "6855", + "DP05_0019PE": "21.4", + "state": "02", + "county": "110" + }, + { + "DP05_0001E": "13383", + "DP05_0019E": "3374", + "DP05_0019PE": "25.2", + "state": "02", + "county": "150" + }, + { + "DP05_0001E": "1156", + "DP05_0019E": "296", + "DP05_0019PE": "25.6", + "state": "02", + "county": "164" + }, + { + "DP05_0001E": "9375", + "DP05_0019E": "2484", + "DP05_0019PE": "26.5", + "state": "02", + "county": "185" + }, + { + "DP05_0001E": "6338", + "DP05_0019E": "1454", + "DP05_0019PE": "22.9", + "state": "02", + "county": "198" + }, + { + "DP05_0001E": "6911", + "DP05_0019E": "1837", + "DP05_0019PE": "26.6", + "state": "02", + "county": "240" + }, + { + "DP05_0001E": "509844", + "DP05_0019E": "135307", + "DP05_0019PE": "26.5", + "state": "08", + "county": "001" + }, + { + "DP05_0001E": "649980", + "DP05_0019E": "152820", + "DP05_0019PE": "23.5", + "state": "08", + "county": "005" + }, + { + "DP05_0001E": "5677", + "DP05_0019E": "861", + "DP05_0019PE": "15.2", + "state": "08", + "county": "011" + }, + { + "DP05_0001E": "19977", + "DP05_0019E": "3004", + "DP05_0019PE": "15.0", + "state": "08", + "county": "015" + }, + { + "DP05_0001E": "9533", + "DP05_0019E": "1526", + "DP05_0019PE": "16.0", + "state": "08", + "county": "019" + }, + { + "DP05_0001E": "5733", + "DP05_0019E": "821", + "DP05_0019PE": "14.3", + "state": "08", + "county": "025" + }, + { + "DP05_0001E": "715878", + "DP05_0019E": "138830", + "DP05_0019PE": "19.4", + "state": "08", + "county": "031" + }, + { + "DP05_0001E": "853", + "DP05_0019E": "129", + "DP05_0019PE": "15.1", + "state": "08", + "county": "079" + }, + { + "DP05_0001E": "42280", + "DP05_0019E": "9014", + "DP05_0019PE": "21.3", + "state": "08", + "county": "085" + }, + { + "DP05_0001E": "18284", + "DP05_0019E": "4381", + "DP05_0019PE": "24.0", + "state": "08", + "county": "089" + }, + { + "DP05_0001E": "4343", + "DP05_0019E": "1181", + "DP05_0019PE": "27.2", + "state": "08", + "county": "095" + }, + { + "DP05_0001E": "167412", + "DP05_0019E": "37585", + "DP05_0019PE": "22.5", + "state": "08", + "county": "101" + }, + { + "DP05_0001E": "25317", + "DP05_0019E": "4492", + "DP05_0019PE": "17.7", + "state": "08", + "county": "107" + }, + { + "DP05_0001E": "646", + "DP05_0019E": "119", + "DP05_0019PE": "18.4", + "state": "08", + "county": "111" + }, + { + "DP05_0001E": "30735", + "DP05_0019E": "5112", + "DP05_0019PE": "16.6", + "state": "08", + "county": "117" + }, + { + "DP05_0001E": "315389", + "DP05_0019E": "82234", + "DP05_0019PE": "26.1", + "state": "08", + "county": "123" + }, + { + "DP05_0001E": "179124", + "DP05_0019E": "41125", + "DP05_0019PE": "23.0", + "state": "10", + "county": "001" + }, + { + "DP05_0001E": "9454", + "DP05_0019E": "1628", + "DP05_0019PE": "17.2", + "state": "30", + "county": "001" + }, + { + "DP05_0001E": "6080", + "DP05_0019E": "1164", + "DP05_0019PE": "19.1", + "state": "30", + "county": "007" + }, + { + "DP05_0001E": "81576", + "DP05_0019E": "18359", + "DP05_0019PE": "22.5", + "state": "30", + "county": "013" + }, + { + "DP05_0001E": "11563", + "DP05_0019E": "2434", + "DP05_0019PE": "21.0", + "state": "30", + "county": "017" + }, + { + "DP05_0001E": "20398", + "DP05_0019E": "4324", + "DP05_0019PE": "21.2", + "state": "55", + "county": "061" + }, + { + "DP05_0001E": "19167", + "DP05_0019E": "3717", + "DP05_0019PE": "19.4", + "state": "55", + "county": "067" + }, + { + "DP05_0001E": "135485", + "DP05_0019E": "30987", + "DP05_0019PE": "22.9", + "state": "55", + "county": "073" + }, + { + "DP05_0001E": "4566", + "DP05_0019E": "1487", + "DP05_0019PE": "32.6", + "state": "55", + "county": "078" + }, + { + "DP05_0001E": "35480", + "DP05_0019E": "6150", + "DP05_0019PE": "17.3", + "state": "55", + "county": "085" + }, + { + "DP05_0001E": "7261", + "DP05_0019E": "1507", + "DP05_0019PE": "20.8", + "state": "55", + "county": "091" + }, + { + "DP05_0001E": "70822", + "DP05_0019E": "13610", + "DP05_0019PE": "19.2", + "state": "55", + "county": "097" + }, + { + "DP05_0001E": "17408", + "DP05_0019E": "3753", + "DP05_0019PE": "21.6", + "state": "55", + "county": "103" + }, + { + "DP05_0001E": "89702", + "DP05_0019E": "22271", + "DP05_0019PE": "24.8", + "state": "55", + "county": "109" + }, + { + "DP05_0001E": "4550", + "DP05_0019E": "884", + "DP05_0019PE": "19.4", + "state": "56", + "county": "017" + }, + { + "DP05_0001E": "80067", + "DP05_0019E": "19258", + "DP05_0019PE": "24.1", + "state": "56", + "county": "025" + }, + { + "DP05_0001E": "8572", + "DP05_0019E": "1538", + "DP05_0019PE": "17.9", + "state": "56", + "county": "031" + }, + { + "DP05_0001E": "43352", + "DP05_0019E": "11303", + "DP05_0019PE": "26.1", + "state": "56", + "county": "037" + }, + { + "DP05_0001E": "7933", + "DP05_0019E": "1888", + "DP05_0019PE": "23.8", + "state": "56", + "county": "043" + }, + { + "DP05_0001E": "18227", + "DP05_0019E": "5592", + "DP05_0019PE": "30.7", + "state": "48", + "county": "003" + }, + { + "DP05_0001E": "8754", + "DP05_0019E": "1912", + "DP05_0019PE": "21.8", + "state": "48", + "county": "009" + }, + { + "DP05_0001E": "29892", + "DP05_0019E": "7134", + "DP05_0019PE": "23.9", + "state": "48", + "county": "015" + }, + { + "DP05_0001E": "86839", + "DP05_0019E": "22133", + "DP05_0019PE": "25.5", + "state": "48", + "county": "021" + }, + { + "DP05_0001E": "355700", + "DP05_0019E": "98454", + "DP05_0019PE": "27.7", + "state": "48", + "county": "027" + }, + { + "DP05_0001E": "653", + "DP05_0019E": "213", + "DP05_0019PE": "32.6", + "state": "48", + "county": "033" + }, + { + "DP05_0001E": "93622", + "DP05_0019E": "22151", + "DP05_0019PE": "23.7", + "state": "48", + "county": "037" + }, + { + "DP05_0001E": "9231", + "DP05_0019E": "1775", + "DP05_0019PE": "19.2", + "state": "48", + "county": "043" + }, + { + "DP05_0001E": "37805", + "DP05_0019E": "8227", + "DP05_0019PE": "21.8", + "state": "48", + "county": "049" + }, + { + "DP05_0001E": "42817", + "DP05_0019E": "10206", + "DP05_0019PE": "23.8", + "state": "48", + "county": "055" + }, + { + "DP05_0001E": "422135", + "DP05_0019E": "128418", + "DP05_0019PE": "30.4", + "state": "48", + "county": "061" + }, + { + "DP05_0001E": "30002", + "DP05_0019E": "6718", + "DP05_0019PE": "22.4", + "state": "48", + "county": "067" + }, + { + "DP05_0001E": "52341", + "DP05_0019E": "13246", + "DP05_0019PE": "25.3", + "state": "48", + "county": "073" + }, + { + "DP05_0001E": "2860", + "DP05_0019E": "765", + "DP05_0019PE": "26.7", + "state": "48", + "county": "079" + }, + { + "DP05_0001E": "1006038", + "DP05_0019E": "261302", + "DP05_0019PE": "26.0", + "state": "48", + "county": "085" + }, + { + "DP05_0001E": "18289", + "DP05_0019E": "3869", + "DP05_0019PE": "21.2", + "state": "48", + "county": "133" + }, + { + "DP05_0001E": "179484", + "DP05_0019E": "47833", + "DP05_0019PE": "26.7", + "state": "48", + "county": "139" + }, + { + "DP05_0001E": "17281", + "DP05_0019E": "3670", + "DP05_0019PE": "21.2", + "state": "48", + "county": "145" + }, + { + "DP05_0001E": "3827", + "DP05_0019E": "821", + "DP05_0019PE": "21.5", + "state": "48", + "county": "151" + }, + { + "DP05_0001E": "790892", + "DP05_0019E": "217306", + "DP05_0019PE": "27.5", + "state": "48", + "county": "157" + }, + { + "DP05_0001E": "20013", + "DP05_0019E": "4690", + "DP05_0019PE": "23.4", + "state": "48", + "county": "163" + }, + { + "DP05_0001E": "337600", + "DP05_0019E": "81926", + "DP05_0019PE": "24.3", + "state": "48", + "county": "167" + }, + { + "DP05_0001E": "1447", + "DP05_0019E": "279", + "DP05_0019PE": "19.3", + "state": "48", + "county": "173" + }, + { + "DP05_0001E": "22063", + "DP05_0019E": "5604", + "DP05_0019PE": "25.4", + "state": "48", + "county": "179" + }, + { + "DP05_0001E": "28447", + "DP05_0019E": "6340", + "DP05_0019PE": "22.3", + "state": "48", + "county": "185" + }, + { + "DP05_0001E": "3025", + "DP05_0019E": "683", + "DP05_0019PE": "22.6", + "state": "48", + "county": "191" + }, + { + "DP05_0001E": "3958", + "DP05_0019E": "790", + "DP05_0019PE": "20.0", + "state": "48", + "county": "197" + }, + { + "DP05_0001E": "70363", + "DP05_0019E": "12217", + "DP05_0019PE": "17.4", + "state": "26", + "county": "073" + }, + { + "DP05_0001E": "264322", + "DP05_0019E": "57104", + "DP05_0019PE": "21.6", + "state": "26", + "county": "077" + }, + { + "DP05_0001E": "17725", + "DP05_0019E": "3704", + "DP05_0019PE": "20.9", + "state": "26", + "county": "079" + }, + { + "DP05_0001E": "2102", + "DP05_0019E": "306", + "DP05_0019PE": "14.6", + "state": "26", + "county": "083" + }, + { + "DP05_0001E": "11805", + "DP05_0019E": "1917", + "DP05_0019PE": "16.2", + "state": "26", + "county": "085" + }, + { + "DP05_0001E": "21649", + "DP05_0019E": "3495", + "DP05_0019PE": "16.1", + "state": "26", + "county": "089" + }, + { + "DP05_0001E": "190832", + "DP05_0019E": "40632", + "DP05_0019PE": "21.3", + "state": "26", + "county": "093" + }, + { + "DP05_0001E": "6286", + "DP05_0019E": "1031", + "DP05_0019PE": "16.4", + "state": "26", + "county": "095" + }, + { + "DP05_0001E": "870893", + "DP05_0019E": "183599", + "DP05_0019PE": "21.1", + "state": "26", + "county": "099" + }, + { + "DP05_0001E": "24539", + "DP05_0019E": "4254", + "DP05_0019PE": "17.3", + "state": "26", + "county": "101" + }, + { + "DP05_0001E": "29062", + "DP05_0019E": "5896", + "DP05_0019PE": "20.3", + "state": "26", + "county": "105" + }, + { + "DP05_0001E": "43481", + "DP05_0019E": "8060", + "DP05_0019PE": "18.5", + "state": "26", + "county": "107" + }, + { + "DP05_0001E": "83445", + "DP05_0019E": "17841", + "DP05_0019PE": "21.4", + "state": "26", + "county": "111" + }, + { + "DP05_0001E": "150000", + "DP05_0019E": "32047", + "DP05_0019PE": "21.4", + "state": "26", + "county": "115" + }, + { + "DP05_0001E": "63516", + "DP05_0019E": "14148", + "DP05_0019PE": "22.3", + "state": "26", + "county": "117" + }, + { + "DP05_0001E": "173679", + "DP05_0019E": "40078", + "DP05_0019PE": "23.1", + "state": "26", + "county": "121" + }, + { + "DP05_0001E": "48687", + "DP05_0019E": "10938", + "DP05_0019PE": "22.5", + "state": "26", + "county": "123" + }, + { + "DP05_0001E": "26545", + "DP05_0019E": "5991", + "DP05_0019PE": "22.6", + "state": "26", + "county": "127" + }, + { + "DP05_0001E": "20895", + "DP05_0019E": "3838", + "DP05_0019PE": "18.4", + "state": "26", + "county": "129" + }, + { + "DP05_0001E": "23323", + "DP05_0019E": "5215", + "DP05_0019PE": "22.4", + "state": "26", + "county": "133" + }, + { + "DP05_0001E": "8282", + "DP05_0019E": "1591", + "DP05_0019PE": "19.2", + "state": "26", + "county": "135" + }, + { + "DP05_0001E": "289162", + "DP05_0019E": "69142", + "DP05_0019PE": "23.9", + "state": "26", + "county": "139" + }, + { + "DP05_0001E": "23863", + "DP05_0019E": "3532", + "DP05_0019PE": "14.8", + "state": "26", + "county": "143" + }, + { + "DP05_0001E": "191166", + "DP05_0019E": "41042", + "DP05_0019PE": "21.5", + "state": "26", + "county": "145" + }, + { + "DP05_0001E": "60789", + "DP05_0019E": "14892", + "DP05_0019PE": "24.5", + "state": "26", + "county": "149" + }, + { + "DP05_0001E": "41179", + "DP05_0019E": "8814", + "DP05_0019PE": "21.4", + "state": "26", + "county": "151" + }, + { + "DP05_0001E": "68176", + "DP05_0019E": "14397", + "DP05_0019PE": "21.1", + "state": "26", + "county": "155" + }, + { + "DP05_0001E": "52683", + "DP05_0019E": "10784", + "DP05_0019PE": "20.5", + "state": "26", + "county": "157" + }, + { + "DP05_0001E": "368385", + "DP05_0019E": "68622", + "DP05_0019PE": "18.6", + "state": "26", + "county": "161" + }, + { + "DP05_0001E": "1753059", + "DP05_0019E": "415111", + "DP05_0019PE": "23.7", + "state": "26", + "county": "163" + }, + { + "DP05_0001E": "33433", + "DP05_0019E": "7772", + "DP05_0019PE": "23.2", + "state": "26", + "county": "165" + }, + { + "DP05_0001E": "31103", + "DP05_0019E": "6645", + "DP05_0019PE": "21.4", + "state": "28", + "county": "001" + }, + { + "DP05_0001E": "37058", + "DP05_0019E": "8569", + "DP05_0019PE": "23.1", + "state": "28", + "county": "003" + }, + { + "DP05_0001E": "12341", + "DP05_0019E": "2532", + "DP05_0019PE": "20.5", + "state": "28", + "county": "005" + }, + { + "DP05_0001E": "18308", + "DP05_0019E": "4617", + "DP05_0019PE": "25.2", + "state": "28", + "county": "007" + }, + { + "DP05_0001E": "8275", + "DP05_0019E": "1747", + "DP05_0019PE": "21.1", + "state": "28", + "county": "009" + }, + { + "DP05_0001E": "31253", + "DP05_0019E": "7733", + "DP05_0019PE": "24.7", + "state": "28", + "county": "011" + }, + { + "DP05_0001E": "14417", + "DP05_0019E": "3383", + "DP05_0019PE": "23.5", + "state": "28", + "county": "013" + }, + { + "DP05_0001E": "9972", + "DP05_0019E": "1885", + "DP05_0019PE": "18.9", + "state": "28", + "county": "015" + }, + { + "DP05_0001E": "17060", + "DP05_0019E": "4229", + "DP05_0019PE": "24.8", + "state": "28", + "county": "017" + }, + { + "DP05_0001E": "8206", + "DP05_0019E": "1783", + "DP05_0019PE": "21.7", + "state": "28", + "county": "019" + }, + { + "DP05_0001E": "9042", + "DP05_0019E": "2005", + "DP05_0019PE": "22.2", + "state": "28", + "county": "021" + }, + { + "DP05_0001E": "15612", + "DP05_0019E": "3475", + "DP05_0019PE": "22.3", + "state": "28", + "county": "023" + }, + { + "DP05_0001E": "19515", + "DP05_0019E": "4448", + "DP05_0019PE": "22.8", + "state": "28", + "county": "025" + }, + { + "DP05_0001E": "22685", + "DP05_0019E": "6112", + "DP05_0019PE": "26.9", + "state": "28", + "county": "027" + }, + { + "DP05_0001E": "28339", + "DP05_0019E": "6544", + "DP05_0019PE": "23.1", + "state": "28", + "county": "029" + }, + { + "DP05_0001E": "18810", + "DP05_0019E": "4591", + "DP05_0019PE": "24.4", + "state": "28", + "county": "031" + }, + { + "DP05_0001E": "182256", + "DP05_0019E": "46689", + "DP05_0019PE": "25.6", + "state": "28", + "county": "033" + }, + { + "DP05_0001E": "75162", + "DP05_0019E": "17430", + "DP05_0019PE": "23.2", + "state": "28", + "county": "035" + }, + { + "DP05_0001E": "7716", + "DP05_0019E": "1803", + "DP05_0019PE": "23.4", + "state": "28", + "county": "037" + }, + { + "DP05_0001E": "13619", + "DP05_0019E": "2640", + "DP05_0019PE": "19.4", + "state": "28", + "county": "041" + }, + { + "DP05_0001E": "20927", + "DP05_0019E": "4998", + "DP05_0019PE": "23.9", + "state": "28", + "county": "043" + }, + { + "DP05_0001E": "206169", + "DP05_0019E": "49239", + "DP05_0019PE": "23.9", + "state": "28", + "county": "047" + }, + { + "DP05_0001E": "235604", + "DP05_0019E": "57025", + "DP05_0019PE": "24.2", + "state": "28", + "county": "049" + }, + { + "DP05_0001E": "8198", + "DP05_0019E": "2156", + "DP05_0019PE": "26.3", + "state": "28", + "county": "053" + }, + { + "DP05_0001E": "1223", + "DP05_0019E": "166", + "DP05_0019PE": "13.6", + "state": "28", + "county": "055" + }, + { + "DP05_0001E": "142872", + "DP05_0019E": "33371", + "DP05_0019PE": "23.4", + "state": "28", + "county": "059" + }, + { + "DP05_0001E": "16454", + "DP05_0019E": "3719", + "DP05_0019PE": "22.6", + "state": "28", + "county": "061" + }, + { + "DP05_0001E": "14410", + "DP05_0019E": "2684", + "DP05_0019PE": "18.6", + "state": "39", + "county": "121" + }, + { + "DP05_0001E": "18742", + "DP05_0019E": "4412", + "DP05_0019PE": "23.5", + "state": "39", + "county": "125" + }, + { + "DP05_0001E": "36076", + "DP05_0019E": "8494", + "DP05_0019PE": "23.5", + "state": "39", + "county": "127" + }, + { + "DP05_0001E": "27914", + "DP05_0019E": "6567", + "DP05_0019PE": "23.5", + "state": "39", + "county": "131" + }, + { + "DP05_0001E": "40995", + "DP05_0019E": "9196", + "DP05_0019PE": "22.4", + "state": "39", + "county": "135" + }, + { + "DP05_0001E": "33836", + "DP05_0019E": "8648", + "DP05_0019PE": "25.6", + "state": "39", + "county": "137" + }, + { + "DP05_0001E": "76816", + "DP05_0019E": "16331", + "DP05_0019PE": "21.3", + "state": "39", + "county": "141" + }, + { + "DP05_0001E": "58801", + "DP05_0019E": "13286", + "DP05_0019PE": "22.6", + "state": "39", + "county": "143" + }, + { + "DP05_0001E": "55251", + "DP05_0019E": "12051", + "DP05_0019PE": "21.8", + "state": "39", + "county": "147" + }, + { + "DP05_0001E": "48610", + "DP05_0019E": "12113", + "DP05_0019PE": "24.9", + "state": "39", + "county": "149" + }, + { + "DP05_0001E": "540810", + "DP05_0019E": "113436", + "DP05_0019PE": "21.0", + "state": "39", + "county": "153" + }, + { + "DP05_0001E": "199144", + "DP05_0019E": "40842", + "DP05_0019PE": "20.5", + "state": "39", + "county": "155" + }, + { + "DP05_0001E": "57871", + "DP05_0019E": "14305", + "DP05_0019PE": "24.7", + "state": "39", + "county": "159" + }, + { + "DP05_0001E": "28213", + "DP05_0019E": "6606", + "DP05_0019PE": "23.4", + "state": "39", + "county": "161" + }, + { + "DP05_0001E": "232540", + "DP05_0019E": "57263", + "DP05_0019PE": "24.6", + "state": "39", + "county": "165" + }, + { + "DP05_0001E": "60217", + "DP05_0019E": "11854", + "DP05_0019PE": "19.7", + "state": "39", + "county": "167" + }, + { + "DP05_0001E": "116063", + "DP05_0019E": "28263", + "DP05_0019PE": "24.4", + "state": "39", + "county": "169" + }, + { + "DP05_0001E": "36760", + "DP05_0019E": "8369", + "DP05_0019PE": "22.8", + "state": "39", + "county": "171" + }, + { + "DP05_0001E": "130662", + "DP05_0019E": "26555", + "DP05_0019PE": "20.3", + "state": "39", + "county": "173" + }, + { + "DP05_0001E": "21907", + "DP05_0019E": "4852", + "DP05_0019PE": "22.1", + "state": "39", + "county": "175" + }, + { + "DP05_0001E": "22171", + "DP05_0019E": "5966", + "DP05_0019PE": "26.9", + "state": "40", + "county": "001" + }, + { + "DP05_0001E": "5791", + "DP05_0019E": "1147", + "DP05_0019PE": "19.8", + "state": "40", + "county": "003" + }, + { + "DP05_0001E": "13815", + "DP05_0019E": "3072", + "DP05_0019PE": "22.2", + "state": "40", + "county": "005" + }, + { + "DP05_0001E": "5326", + "DP05_0019E": "1391", + "DP05_0019PE": "26.1", + "state": "40", + "county": "007" + }, + { + "DP05_0001E": "21860", + "DP05_0019E": "5441", + "DP05_0019PE": "24.9", + "state": "40", + "county": "009" + }, + { + "DP05_0001E": "9521", + "DP05_0019E": "1988", + "DP05_0019PE": "20.9", + "state": "40", + "county": "011" + }, + { + "DP05_0001E": "47325", + "DP05_0019E": "11091", + "DP05_0019PE": "23.4", + "state": "40", + "county": "013" + }, + { + "DP05_0001E": "29179", + "DP05_0019E": "7259", + "DP05_0019PE": "24.9", + "state": "40", + "county": "015" + }, + { + "DP05_0001E": "144610", + "DP05_0019E": "37616", + "DP05_0019PE": "26.0", + "state": "40", + "county": "017" + }, + { + "DP05_0001E": "48380", + "DP05_0019E": "12060", + "DP05_0019PE": "24.9", + "state": "40", + "county": "019" + }, + { + "DP05_0001E": "48871", + "DP05_0019E": "10751", + "DP05_0019PE": "22.0", + "state": "40", + "county": "021" + }, + { + "DP05_0001E": "14727", + "DP05_0019E": "3573", + "DP05_0019PE": "24.3", + "state": "40", + "county": "023" + }, + { + "DP05_0001E": "2159", + "DP05_0019E": "563", + "DP05_0019PE": "26.1", + "state": "40", + "county": "025" + }, + { + "DP05_0001E": "282189", + "DP05_0019E": "60574", + "DP05_0019PE": "21.5", + "state": "40", + "county": "027" + }, + { + "DP05_0001E": "5577", + "DP05_0019E": "1366", + "DP05_0019PE": "24.5", + "state": "40", + "county": "029" + }, + { + "DP05_0001E": "121374", + "DP05_0019E": "28691", + "DP05_0019PE": "23.6", + "state": "40", + "county": "031" + }, + { + "DP05_0001E": "14274", + "DP05_0019E": "3084", + "DP05_0019PE": "21.6", + "state": "40", + "county": "035" + }, + { + "DP05_0001E": "71505", + "DP05_0019E": "16881", + "DP05_0019PE": "23.6", + "state": "40", + "county": "037" + }, + { + "DP05_0001E": "42741", + "DP05_0019E": "8690", + "DP05_0019PE": "20.3", + "state": "40", + "county": "041" + }, + { + "DP05_0001E": "4885", + "DP05_0019E": "1326", + "DP05_0019PE": "27.1", + "state": "40", + "county": "043" + }, + { + "DP05_0001E": "61555", + "DP05_0019E": "15481", + "DP05_0019PE": "25.1", + "state": "40", + "county": "047" + }, + { + "DP05_0001E": "27789", + "DP05_0019E": "6922", + "DP05_0019PE": "24.9", + "state": "40", + "county": "049" + }, + { + "DP05_0001E": "4369", + "DP05_0019E": "1047", + "DP05_0019PE": "24.0", + "state": "40", + "county": "053" + }, + { + "DP05_0001E": "5790", + "DP05_0019E": "1274", + "DP05_0019PE": "22.0", + "state": "40", + "county": "055" + }, + { + "DP05_0001E": "3730", + "DP05_0019E": "950", + "DP05_0019PE": "25.5", + "state": "40", + "county": "059" + }, + { + "DP05_0001E": "12688", + "DP05_0019E": "3003", + "DP05_0019PE": "23.7", + "state": "40", + "county": "061" + }, + { + "DP05_0001E": "24808", + "DP05_0019E": "6279", + "DP05_0019PE": "25.3", + "state": "40", + "county": "065" + }, + { + "DP05_0001E": "6084", + "DP05_0019E": "1505", + "DP05_0019PE": "24.7", + "state": "40", + "county": "067" + }, + { + "DP05_0001E": "44074", + "DP05_0019E": "10949", + "DP05_0019PE": "24.8", + "state": "40", + "county": "071" + }, + { + "DP05_0001E": "15811", + "DP05_0019E": "4248", + "DP05_0019PE": "26.9", + "state": "40", + "county": "073" + }, + { + "DP05_0001E": "10239", + "DP05_0019E": "2216", + "DP05_0019PE": "21.6", + "state": "40", + "county": "077" + }, + { + "DP05_0001E": "49999", + "DP05_0019E": "12196", + "DP05_0019PE": "24.4", + "state": "40", + "county": "079" + }, + { + "DP05_0001E": "47401", + "DP05_0019E": "10884", + "DP05_0019PE": "23.0", + "state": "40", + "county": "083" + }, + { + "DP05_0001E": "10128", + "DP05_0019E": "2502", + "DP05_0019PE": "24.7", + "state": "40", + "county": "085" + }, + { + "DP05_0001E": "32913", + "DP05_0019E": "8392", + "DP05_0019PE": "25.5", + "state": "40", + "county": "089" + }, + { + "DP05_0001E": "19677", + "DP05_0019E": "3923", + "DP05_0019PE": "19.9", + "state": "40", + "county": "091" + }, + { + "DP05_0001E": "16688", + "DP05_0019E": "3833", + "DP05_0019PE": "23.0", + "state": "40", + "county": "095" + }, + { + "DP05_0001E": "41098", + "DP05_0019E": "9607", + "DP05_0019PE": "23.4", + "state": "40", + "county": "097" + }, + { + "DP05_0001E": "68451", + "DP05_0019E": "16686", + "DP05_0019PE": "24.4", + "state": "40", + "county": "101" + }, + { + "DP05_0001E": "11263", + "DP05_0019E": "2660", + "DP05_0019PE": "23.6", + "state": "40", + "county": "103" + }, + { + "DP05_0001E": "9153", + "DP05_0019E": "1266", + "DP05_0019PE": "13.8", + "state": "30", + "county": "023" + }, + { + "DP05_0001E": "102001", + "DP05_0019E": "22255", + "DP05_0019PE": "21.8", + "state": "30", + "county": "029" + }, + { + "DP05_0001E": "13706", + "DP05_0019E": "4249", + "DP05_0019PE": "31.0", + "state": "30", + "county": "035" + }, + { + "DP05_0001E": "3325", + "DP05_0019E": "574", + "DP05_0019PE": "17.3", + "state": "30", + "county": "039" + }, + { + "DP05_0001E": "1968", + "DP05_0019E": "414", + "DP05_0019PE": "21.0", + "state": "30", + "county": "045" + }, + { + "DP05_0001E": "2455", + "DP05_0019E": "551", + "DP05_0019PE": "22.4", + "state": "30", + "county": "051" + }, + { + "DP05_0001E": "8530", + "DP05_0019E": "1324", + "DP05_0019PE": "15.5", + "state": "30", + "county": "057" + }, + { + "DP05_0001E": "119062", + "DP05_0019E": "22304", + "DP05_0019PE": "18.7", + "state": "30", + "county": "063" + }, + { + "DP05_0001E": "16513", + "DP05_0019E": "2869", + "DP05_0019PE": "17.4", + "state": "30", + "county": "067" + }, + { + "DP05_0001E": "5911", + "DP05_0019E": "1422", + "DP05_0019PE": "24.1", + "state": "30", + "county": "073" + }, + { + "DP05_0001E": "45072", + "DP05_0019E": "8450", + "DP05_0019PE": "18.7", + "state": "13", + "county": "009" + }, + { + "DP05_0001E": "106456", + "DP05_0019E": "25703", + "DP05_0019PE": "24.1", + "state": "13", + "county": "015" + }, + { + "DP05_0001E": "19206", + "DP05_0019E": "4633", + "DP05_0019PE": "24.1", + "state": "13", + "county": "019" + }, + { + "DP05_0001E": "18924", + "DP05_0019E": "4556", + "DP05_0019PE": "24.1", + "state": "13", + "county": "025" + }, + { + "DP05_0001E": "77719", + "DP05_0019E": "15434", + "DP05_0019PE": "19.9", + "state": "13", + "county": "031" + }, + { + "DP05_0001E": "6301", + "DP05_0019E": "1103", + "DP05_0019PE": "17.5", + "state": "13", + "county": "037" + }, + { + "DP05_0001E": "10834", + "DP05_0019E": "2707", + "DP05_0019PE": "25.0", + "state": "13", + "county": "043" + }, + { + "DP05_0001E": "13032", + "DP05_0019E": "2441", + "DP05_0019PE": "18.7", + "state": "13", + "county": "049" + }, + { + "DP05_0001E": "24826", + "DP05_0019E": "5606", + "DP05_0019PE": "22.6", + "state": "13", + "county": "055" + }, + { + "DP05_0001E": "2931", + "DP05_0019E": "578", + "DP05_0019PE": "19.7", + "state": "13", + "county": "061" + }, + { + "DP05_0001E": "6648", + "DP05_0019E": "1696", + "DP05_0019PE": "25.5", + "state": "13", + "county": "065" + }, + { + "DP05_0001E": "45510", + "DP05_0019E": "11761", + "DP05_0019PE": "25.8", + "state": "13", + "county": "071" + }, + { + "DP05_0001E": "145839", + "DP05_0019E": "35521", + "DP05_0019PE": "24.4", + "state": "13", + "county": "077" + }, + { + "DP05_0001E": "16183", + "DP05_0019E": "3087", + "DP05_0019PE": "19.1", + "state": "13", + "county": "083" + }, + { + "DP05_0001E": "26595", + "DP05_0019E": "6448", + "DP05_0019PE": "24.2", + "state": "13", + "county": "087" + }, + { + "DP05_0001E": "13571", + "DP05_0019E": "2347", + "DP05_0019PE": "17.3", + "state": "13", + "county": "093" + }, + { + "DP05_0001E": "10218", + "DP05_0019E": "2540", + "DP05_0019PE": "24.9", + "state": "13", + "county": "099" + }, + { + "DP05_0001E": "62241", + "DP05_0019E": "16518", + "DP05_0019PE": "26.5", + "state": "13", + "county": "103" + }, + { + "DP05_0001E": "10671", + "DP05_0019E": "2842", + "DP05_0019PE": "26.6", + "state": "13", + "county": "109" + }, + { + "DP05_0001E": "97805", + "DP05_0019E": "22581", + "DP05_0019PE": "23.1", + "state": "13", + "county": "115" + }, + { + "DP05_0001E": "23015", + "DP05_0019E": "5048", + "DP05_0019PE": "21.9", + "state": "13", + "county": "119" + }, + { + "DP05_0001E": "2984", + "DP05_0019E": "661", + "DP05_0019PE": "22.2", + "state": "13", + "county": "125" + }, + { + "DP05_0001E": "24693", + "DP05_0019E": "6080", + "DP05_0019PE": "24.6", + "state": "13", + "county": "131" + }, + { + "DP05_0001E": "45204", + "DP05_0019E": "10184", + "DP05_0019PE": "22.5", + "state": "13", + "county": "137" + }, + { + "DP05_0001E": "8500", + "DP05_0019E": "925", + "DP05_0019PE": "10.9", + "state": "13", + "county": "141" + }, + { + "DP05_0001E": "116436", + "DP05_0019E": "27948", + "DP05_0019PE": "24.0", + "state": "13", + "county": "185" + }, + { + "DP05_0001E": "21404", + "DP05_0019E": "5323", + "DP05_0019PE": "24.9", + "state": "13", + "county": "189" + }, + { + "DP05_0001E": "29624", + "DP05_0019E": "6805", + "DP05_0019PE": "23.0", + "state": "13", + "county": "195" + }, + { + "DP05_0001E": "5725", + "DP05_0019E": "1320", + "DP05_0019PE": "23.1", + "state": "13", + "county": "201" + }, + { + "DP05_0001E": "27455", + "DP05_0019E": "5809", + "DP05_0019PE": "21.2", + "state": "13", + "county": "207" + }, + { + "DP05_0001E": "39789", + "DP05_0019E": "9823", + "DP05_0019PE": "24.7", + "state": "13", + "county": "213" + }, + { + "DP05_0001E": "39194", + "DP05_0019E": "10387", + "DP05_0019PE": "26.5", + "state": "13", + "county": "219" + }, + { + "DP05_0001E": "27502", + "DP05_0019E": "5707", + "DP05_0019PE": "20.8", + "state": "13", + "county": "225" + }, + { + "DP05_0001E": "19336", + "DP05_0019E": "4807", + "DP05_0019PE": "24.9", + "state": "13", + "county": "229" + }, + { + "DP05_0001E": "11185", + "DP05_0019E": "1968", + "DP05_0019PE": "17.6", + "state": "13", + "county": "235" + }, + { + "DP05_0001E": "16859", + "DP05_0019E": "2672", + "DP05_0019PE": "15.8", + "state": "13", + "county": "241" + }, + { + "DP05_0001E": "202178", + "DP05_0019E": "46219", + "DP05_0019PE": "22.9", + "state": "13", + "county": "245" + }, + { + "DP05_0001E": "13977", + "DP05_0019E": "2936", + "DP05_0019PE": "21.0", + "state": "13", + "county": "251" + }, + { + "DP05_0001E": "25934", + "DP05_0019E": "5610", + "DP05_0019PE": "21.6", + "state": "13", + "county": "257" + }, + { + "DP05_0001E": "6245", + "DP05_0019E": "1043", + "DP05_0019PE": "16.7", + "state": "13", + "county": "263" + }, + { + "DP05_0001E": "25392", + "DP05_0019E": "5199", + "DP05_0019PE": "20.5", + "state": "13", + "county": "267" + }, + { + "DP05_0001E": "8654", + "DP05_0019E": "2001", + "DP05_0019PE": "23.1", + "state": "13", + "county": "273" + }, + { + "DP05_0001E": "26947", + "DP05_0019E": "7078", + "DP05_0019PE": "26.3", + "state": "13", + "county": "279" + }, + { + "DP05_0001E": "70095", + "DP05_0019E": "17223", + "DP05_0019PE": "24.6", + "state": "13", + "county": "285" + }, + { + "DP05_0001E": "8195", + "DP05_0019E": "1585", + "DP05_0019PE": "19.3", + "state": "13", + "county": "289" + }, + { + "DP05_0001E": "69398", + "DP05_0019E": "15095", + "DP05_0019PE": "21.8", + "state": "13", + "county": "295" + }, + { + "DP05_0001E": "5259", + "DP05_0019E": "1080", + "DP05_0019PE": "20.5", + "state": "13", + "county": "301" + }, + { + "DP05_0001E": "29959", + "DP05_0019E": "7332", + "DP05_0019PE": "24.5", + "state": "13", + "county": "305" + }, + { + "DP05_0001E": "29962", + "DP05_0019E": "5558", + "DP05_0019PE": "18.6", + "state": "13", + "county": "311" + }, + { + "DP05_0001E": "9797", + "DP05_0019E": "2067", + "DP05_0019PE": "21.1", + "state": "13", + "county": "317" + }, + { + "DP05_0001E": "66547", + "DP05_0019E": "16758", + "DP05_0019PE": "25.2", + "state": "48", + "county": "203" + }, + { + "DP05_0001E": "222827", + "DP05_0019E": "51314", + "DP05_0019PE": "23.0", + "state": "48", + "county": "209" + }, + { + "DP05_0001E": "861137", + "DP05_0019E": "280998", + "DP05_0019PE": "32.6", + "state": "48", + "county": "215" + }, + { + "DP05_0001E": "60025", + "DP05_0019E": "12614", + "DP05_0019PE": "21.0", + "state": "48", + "county": "221" + }, + { + "DP05_0001E": "36213", + "DP05_0019E": "7969", + "DP05_0019PE": "22.0", + "state": "48", + "county": "227" + }, + { + "DP05_0001E": "21105", + "DP05_0019E": "5303", + "DP05_0019PE": "25.1", + "state": "48", + "county": "233" + }, + { + "DP05_0001E": "14822", + "DP05_0019E": "3780", + "DP05_0019PE": "25.5", + "state": "48", + "county": "239" + }, + { + "DP05_0001E": "253136", + "DP05_0019E": "60934", + "DP05_0019PE": "24.1", + "state": "48", + "county": "245" + }, + { + "DP05_0001E": "171359", + "DP05_0019E": "44448", + "DP05_0019PE": "25.9", + "state": "48", + "county": "251" + }, + { + "DP05_0001E": "117", + "DP05_0019E": "26", + "DP05_0019PE": "22.2", + "state": "48", + "county": "301" + }, + { + "DP05_0001E": "5886", + "DP05_0019E": "1574", + "DP05_0019PE": "26.7", + "state": "48", + "county": "305" + }, + { + "DP05_0001E": "724", + "DP05_0019E": "215", + "DP05_0019PE": "29.7", + "state": "48", + "county": "311" + }, + { + "DP05_0001E": "5676", + "DP05_0019E": "1807", + "DP05_0019PE": "31.8", + "state": "48", + "county": "317" + }, + { + "DP05_0001E": "58098", + "DP05_0019E": "18148", + "DP05_0019PE": "31.2", + "state": "48", + "county": "323" + }, + { + "DP05_0001E": "171238", + "DP05_0019E": "48985", + "DP05_0019PE": "28.6", + "state": "48", + "county": "329" + }, + { + "DP05_0001E": "8256", + "DP05_0019E": "1700", + "DP05_0019PE": "20.6", + "state": "48", + "county": "335" + }, + { + "DP05_0001E": "21169", + "DP05_0019E": "6751", + "DP05_0019PE": "31.9", + "state": "48", + "county": "341" + }, + { + "DP05_0001E": "65080", + "DP05_0019E": "15067", + "DP05_0019PE": "23.2", + "state": "48", + "county": "347" + }, + { + "DP05_0001E": "14901", + "DP05_0019E": "3853", + "DP05_0019PE": "25.9", + "state": "48", + "county": "353" + }, + { + "DP05_0001E": "2110", + "DP05_0019E": "771", + "DP05_0019PE": "36.5", + "state": "48", + "county": "359" + }, + { + "DP05_0001E": "23186", + "DP05_0019E": "5390", + "DP05_0019PE": "23.2", + "state": "48", + "county": "365" + }, + { + "DP05_0001E": "15725", + "DP05_0019E": "3877", + "DP05_0019PE": "24.7", + "state": "48", + "county": "371" + }, + { + "DP05_0001E": "6808", + "DP05_0019E": "1812", + "DP05_0019PE": "26.6", + "state": "48", + "county": "377" + }, + { + "DP05_0001E": "3766", + "DP05_0019E": "1140", + "DP05_0019PE": "30.3", + "state": "48", + "county": "383" + }, + { + "DP05_0001E": "15546", + "DP05_0019E": "3476", + "DP05_0019PE": "22.4", + "state": "48", + "county": "389" + }, + { + "DP05_0001E": "17094", + "DP05_0019E": "4053", + "DP05_0019PE": "23.7", + "state": "48", + "county": "395" + }, + { + "DP05_0001E": "53988", + "DP05_0019E": "12017", + "DP05_0019PE": "22.3", + "state": "48", + "county": "401" + }, + { + "DP05_0001E": "28574", + "DP05_0019E": "6196", + "DP05_0019PE": "21.7", + "state": "48", + "county": "407" + }, + { + "DP05_0001E": "2898", + "DP05_0019E": "745", + "DP05_0019PE": "25.7", + "state": "48", + "county": "413" + }, + { + "DP05_0001E": "25263", + "DP05_0019E": "6608", + "DP05_0019PE": "26.2", + "state": "48", + "county": "419" + }, + { + "DP05_0001E": "49018", + "DP05_0019E": "13885", + "DP05_0019PE": "28.3", + "state": "48", + "county": "465" + }, + { + "DP05_0001E": "72295", + "DP05_0019E": "10680", + "DP05_0019PE": "14.8", + "state": "48", + "county": "471" + }, + { + "DP05_0001E": "35275", + "DP05_0019E": "7613", + "DP05_0019PE": "21.6", + "state": "48", + "county": "477" + }, + { + "DP05_0001E": "5187", + "DP05_0019E": "1321", + "DP05_0019PE": "25.5", + "state": "48", + "county": "483" + }, + { + "DP05_0001E": "21419", + "DP05_0019E": "5096", + "DP05_0019PE": "23.8", + "state": "48", + "county": "489" + }, + { + "DP05_0001E": "7822", + "DP05_0019E": "2305", + "DP05_0019PE": "29.5", + "state": "48", + "county": "495" + }, + { + "DP05_0001E": "8612", + "DP05_0019E": "2837", + "DP05_0019PE": "32.9", + "state": "48", + "county": "501" + }, + { + "DP05_0001E": "11930", + "DP05_0019E": "3464", + "DP05_0019PE": "29.0", + "state": "48", + "county": "507" + }, + { + "DP05_0001E": "11182", + "DP05_0019E": "2235", + "DP05_0019PE": "20.0", + "state": "28", + "county": "065" + }, + { + "DP05_0001E": "68307", + "DP05_0019E": "17156", + "DP05_0019PE": "25.1", + "state": "28", + "county": "067" + }, + { + "DP05_0001E": "54059", + "DP05_0019E": "10026", + "DP05_0019PE": "18.5", + "state": "28", + "county": "071" + }, + { + "DP05_0001E": "75557", + "DP05_0019E": "17786", + "DP05_0019PE": "23.5", + "state": "28", + "county": "075" + }, + { + "DP05_0001E": "12595", + "DP05_0019E": "3077", + "DP05_0019PE": "24.4", + "state": "28", + "county": "077" + }, + { + "DP05_0001E": "85304", + "DP05_0019E": "21581", + "DP05_0019PE": "25.3", + "state": "28", + "county": "081" + }, + { + "DP05_0001E": "28764", + "DP05_0019E": "7966", + "DP05_0019PE": "27.7", + "state": "28", + "county": "083" + }, + { + "DP05_0001E": "58896", + "DP05_0019E": "13970", + "DP05_0019PE": "23.7", + "state": "28", + "county": "087" + }, + { + "DP05_0001E": "105482", + "DP05_0019E": "26355", + "DP05_0019PE": "25.0", + "state": "28", + "county": "089" + }, + { + "DP05_0001E": "35502", + "DP05_0019E": "7476", + "DP05_0019PE": "21.1", + "state": "28", + "county": "093" + }, + { + "DP05_0001E": "35559", + "DP05_0019E": "7992", + "DP05_0019PE": "22.5", + "state": "28", + "county": "095" + }, + { + "DP05_0001E": "29250", + "DP05_0019E": "7995", + "DP05_0019PE": "27.3", + "state": "28", + "county": "099" + }, + { + "DP05_0001E": "10566", + "DP05_0019E": "2613", + "DP05_0019PE": "24.7", + "state": "28", + "county": "103" + }, + { + "DP05_0001E": "49593", + "DP05_0019E": "8679", + "DP05_0019PE": "17.5", + "state": "28", + "county": "105" + }, + { + "DP05_0001E": "55512", + "DP05_0019E": "12433", + "DP05_0019PE": "22.4", + "state": "28", + "county": "109" + }, + { + "DP05_0001E": "11981", + "DP05_0019E": "2733", + "DP05_0019PE": "22.8", + "state": "28", + "county": "111" + }, + { + "DP05_0001E": "31996", + "DP05_0019E": "8499", + "DP05_0019PE": "26.6", + "state": "28", + "county": "115" + }, + { + "DP05_0001E": "25155", + "DP05_0019E": "5683", + "DP05_0019PE": "22.6", + "state": "28", + "county": "117" + }, + { + "DP05_0001E": "154119", + "DP05_0019E": "35569", + "DP05_0019PE": "23.1", + "state": "28", + "county": "121" + }, + { + "DP05_0001E": "28288", + "DP05_0019E": "7600", + "DP05_0019PE": "26.9", + "state": "28", + "county": "123" + }, + { + "DP05_0001E": "26818", + "DP05_0019E": "6371", + "DP05_0019PE": "23.8", + "state": "28", + "county": "127" + }, + { + "DP05_0001E": "18282", + "DP05_0019E": "3977", + "DP05_0019PE": "21.8", + "state": "28", + "county": "131" + }, + { + "DP05_0001E": "25759", + "DP05_0019E": "5683", + "DP05_0019PE": "22.1", + "state": "28", + "county": "133" + }, + { + "DP05_0001E": "28419", + "DP05_0019E": "6596", + "DP05_0019PE": "23.2", + "state": "28", + "county": "137" + }, + { + "DP05_0001E": "21976", + "DP05_0019E": "5341", + "DP05_0019PE": "24.3", + "state": "28", + "county": "139" + }, + { + "DP05_0001E": "9807", + "DP05_0019E": "2852", + "DP05_0019PE": "29.1", + "state": "28", + "county": "143" + }, + { + "DP05_0001E": "28578", + "DP05_0019E": "7155", + "DP05_0019PE": "25.0", + "state": "28", + "county": "145" + }, + { + "DP05_0001E": "46030", + "DP05_0019E": "10984", + "DP05_0019PE": "23.9", + "state": "28", + "county": "149" + }, + { + "DP05_0001E": "45072", + "DP05_0019E": "11601", + "DP05_0019PE": "25.7", + "state": "28", + "county": "151" + }, + { + "DP05_0001E": "9727", + "DP05_0019E": "2300", + "DP05_0019PE": "23.6", + "state": "28", + "county": "155" + }, + { + "DP05_0001E": "8727", + "DP05_0019E": "1852", + "DP05_0019PE": "21.2", + "state": "28", + "county": "157" + }, + { + "DP05_0001E": "12276", + "DP05_0019E": "2741", + "DP05_0019PE": "22.3", + "state": "28", + "county": "161" + }, + { + "DP05_0001E": "28511", + "DP05_0019E": "6725", + "DP05_0019PE": "23.6", + "state": "28", + "county": "163" + }, + { + "DP05_0001E": "3547", + "DP05_0019E": "510", + "DP05_0019PE": "14.4", + "state": "35", + "county": "003" + }, + { + "DP05_0001E": "64912", + "DP05_0019E": "17122", + "DP05_0019PE": "26.4", + "state": "35", + "county": "005" + }, + { + "DP05_0001E": "26763", + "DP05_0019E": "6262", + "DP05_0019PE": "23.4", + "state": "35", + "county": "006" + }, + { + "DP05_0001E": "12106", + "DP05_0019E": "2194", + "DP05_0019PE": "18.1", + "state": "35", + "county": "007" + }, + { + "DP05_0001E": "49502", + "DP05_0019E": "13079", + "DP05_0019PE": "26.4", + "state": "35", + "county": "009" + }, + { + "DP05_0001E": "1995", + "DP05_0019E": "851", + "DP05_0019PE": "42.7", + "state": "35", + "county": "011" + }, + { + "DP05_0001E": "217696", + "DP05_0019E": "53464", + "DP05_0019PE": "24.6", + "state": "35", + "county": "013" + }, + { + "DP05_0001E": "57865", + "DP05_0019E": "15297", + "DP05_0019PE": "26.4", + "state": "35", + "county": "015" + }, + { + "DP05_0001E": "27391", + "DP05_0019E": "5393", + "DP05_0019PE": "19.7", + "state": "35", + "county": "017" + }, + { + "DP05_0001E": "4336", + "DP05_0019E": "758", + "DP05_0019PE": "17.5", + "state": "35", + "county": "019" + }, + { + "DP05_0001E": "432", + "DP05_0019E": "59", + "DP05_0019PE": "13.7", + "state": "35", + "county": "021" + }, + { + "DP05_0001E": "4234", + "DP05_0019E": "930", + "DP05_0019PE": "22.0", + "state": "35", + "county": "023" + }, + { + "DP05_0001E": "70359", + "DP05_0019E": "21216", + "DP05_0019PE": "30.2", + "state": "35", + "county": "025" + }, + { + "DP05_0001E": "19640", + "DP05_0019E": "3465", + "DP05_0019PE": "17.6", + "state": "35", + "county": "027" + }, + { + "DP05_0001E": "18976", + "DP05_0019E": "4288", + "DP05_0019PE": "22.6", + "state": "35", + "county": "028" + }, + { + "DP05_0001E": "24022", + "DP05_0019E": "6315", + "DP05_0019PE": "26.3", + "state": "35", + "county": "029" + }, + { + "DP05_0001E": "71956", + "DP05_0019E": "20668", + "DP05_0019PE": "28.7", + "state": "35", + "county": "031" + }, + { + "DP05_0001E": "4500", + "DP05_0019E": "590", + "DP05_0019PE": "13.1", + "state": "35", + "county": "033" + }, + { + "DP05_0001E": "66804", + "DP05_0019E": "15444", + "DP05_0019PE": "23.1", + "state": "35", + "county": "035" + }, + { + "DP05_0001E": "8265", + "DP05_0019E": "1879", + "DP05_0019PE": "22.7", + "state": "35", + "county": "037" + }, + { + "DP05_0001E": "38962", + "DP05_0019E": "8997", + "DP05_0019PE": "23.1", + "state": "35", + "county": "039" + }, + { + "DP05_0001E": "144954", + "DP05_0019E": "33691", + "DP05_0019PE": "23.2", + "state": "35", + "county": "043" + }, + { + "DP05_0001E": "125608", + "DP05_0019E": "33315", + "DP05_0019PE": "26.5", + "state": "35", + "county": "045" + }, + { + "DP05_0001E": "150319", + "DP05_0019E": "27056", + "DP05_0019PE": "18.0", + "state": "35", + "county": "049" + }, + { + "DP05_0001E": "16723", + "DP05_0019E": "3776", + "DP05_0019PE": "22.6", + "state": "35", + "county": "053" + }, + { + "DP05_0001E": "11987", + "DP05_0019E": "2744", + "DP05_0019PE": "22.9", + "state": "40", + "county": "107" + }, + { + "DP05_0001E": "38553", + "DP05_0019E": "9095", + "DP05_0019PE": "23.6", + "state": "40", + "county": "111" + }, + { + "DP05_0001E": "47074", + "DP05_0019E": "10229", + "DP05_0019PE": "21.7", + "state": "40", + "county": "113" + }, + { + "DP05_0001E": "16402", + "DP05_0019E": "3871", + "DP05_0019PE": "23.6", + "state": "40", + "county": "117" + }, + { + "DP05_0001E": "81912", + "DP05_0019E": "15610", + "DP05_0019PE": "19.1", + "state": "40", + "county": "119" + }, + { + "DP05_0001E": "38385", + "DP05_0019E": "9172", + "DP05_0019PE": "23.9", + "state": "40", + "county": "123" + }, + { + "DP05_0001E": "72511", + "DP05_0019E": "17175", + "DP05_0019PE": "23.7", + "state": "40", + "county": "125" + }, + { + "DP05_0001E": "3635", + "DP05_0019E": "918", + "DP05_0019PE": "25.3", + "state": "40", + "county": "129" + }, + { + "DP05_0001E": "92052", + "DP05_0019E": "21611", + "DP05_0019PE": "23.5", + "state": "40", + "county": "131" + }, + { + "DP05_0001E": "41687", + "DP05_0019E": "9903", + "DP05_0019PE": "23.8", + "state": "40", + "county": "135" + }, + { + "DP05_0001E": "43401", + "DP05_0019E": "10051", + "DP05_0019PE": "23.2", + "state": "40", + "county": "137" + }, + { + "DP05_0001E": "7347", + "DP05_0019E": "1747", + "DP05_0019PE": "23.8", + "state": "40", + "county": "141" + }, + { + "DP05_0001E": "650291", + "DP05_0019E": "163921", + "DP05_0019PE": "25.2", + "state": "40", + "county": "143" + }, + { + "DP05_0001E": "51995", + "DP05_0019E": "12384", + "DP05_0019PE": "23.8", + "state": "40", + "county": "147" + }, + { + "DP05_0001E": "11066", + "DP05_0019E": "2745", + "DP05_0019PE": "24.8", + "state": "40", + "county": "149" + }, + { + "DP05_0001E": "20352", + "DP05_0019E": "5069", + "DP05_0019PE": "24.9", + "state": "40", + "county": "153" + }, + { + "DP05_0001E": "16090", + "DP05_0019E": "3155", + "DP05_0019PE": "19.6", + "state": "41", + "county": "001" + }, + { + "DP05_0001E": "415084", + "DP05_0019E": "89258", + "DP05_0019PE": "21.5", + "state": "41", + "county": "005" + }, + { + "DP05_0001E": "39656", + "DP05_0019E": "7491", + "DP05_0019PE": "18.9", + "state": "41", + "county": "007" + }, + { + "DP05_0001E": "52117", + "DP05_0019E": "10940", + "DP05_0019PE": "21.0", + "state": "41", + "county": "009" + }, + { + "DP05_0001E": "64175", + "DP05_0019E": "11784", + "DP05_0019PE": "18.4", + "state": "41", + "county": "011" + }, + { + "DP05_0001E": "23733", + "DP05_0019E": "4697", + "DP05_0019PE": "19.8", + "state": "41", + "county": "013" + }, + { + "DP05_0001E": "22889", + "DP05_0019E": "3220", + "DP05_0019PE": "14.1", + "state": "41", + "county": "015" + }, + { + "DP05_0001E": "191749", + "DP05_0019E": "38375", + "DP05_0019PE": "20.0", + "state": "41", + "county": "017" + }, + { + "DP05_0001E": "110015", + "DP05_0019E": "21240", + "DP05_0019PE": "19.3", + "state": "41", + "county": "019" + }, + { + "DP05_0001E": "1896", + "DP05_0019E": "330", + "DP05_0019PE": "17.4", + "state": "41", + "county": "021" + }, + { + "DP05_0001E": "7174", + "DP05_0019E": "1232", + "DP05_0019PE": "17.2", + "state": "41", + "county": "023" + }, + { + "DP05_0001E": "7310", + "DP05_0019E": "1485", + "DP05_0019PE": "20.3", + "state": "41", + "county": "025" + }, + { + "DP05_0001E": "23270", + "DP05_0019E": "5517", + "DP05_0019PE": "23.7", + "state": "41", + "county": "027" + }, + { + "DP05_0001E": "218781", + "DP05_0019E": "44937", + "DP05_0019PE": "20.5", + "state": "41", + "county": "029" + }, + { + "DP05_0001E": "24048", + "DP05_0019E": "5620", + "DP05_0019PE": "23.4", + "state": "41", + "county": "031" + }, + { + "DP05_0001E": "87097", + "DP05_0019E": "16960", + "DP05_0019PE": "19.5", + "state": "41", + "county": "033" + }, + { + "DP05_0001E": "67606", + "DP05_0019E": "14644", + "DP05_0019PE": "21.7", + "state": "41", + "county": "035" + }, + { + "DP05_0001E": "7896", + "DP05_0019E": "1482", + "DP05_0019PE": "18.8", + "state": "41", + "county": "037" + }, + { + "DP05_0001E": "377749", + "DP05_0019E": "69406", + "DP05_0019PE": "18.4", + "state": "41", + "county": "039" + }, + { + "DP05_0001E": "49336", + "DP05_0019E": "8336", + "DP05_0019PE": "16.9", + "state": "41", + "county": "041" + }, + { + "DP05_0001E": "127216", + "DP05_0019E": "28581", + "DP05_0019PE": "22.5", + "state": "41", + "county": "043" + }, + { + "DP05_0001E": "30632", + "DP05_0019E": "7652", + "DP05_0019PE": "25.0", + "state": "41", + "county": "045" + }, + { + "DP05_0001E": "343742", + "DP05_0019E": "84364", + "DP05_0019PE": "24.5", + "state": "41", + "county": "047" + }, + { + "DP05_0001E": "809869", + "DP05_0019E": "151312", + "DP05_0019PE": "18.7", + "state": "41", + "county": "051" + }, + { + "DP05_0001E": "1686", + "DP05_0019E": "327", + "DP05_0019PE": "19.4", + "state": "41", + "county": "055" + }, + { + "DP05_0001E": "26782", + "DP05_0019E": "5040", + "DP05_0019PE": "18.8", + "state": "41", + "county": "057" + }, + { + "DP05_0001E": "26502", + "DP05_0019E": "5855", + "DP05_0019PE": "22.1", + "state": "41", + "county": "061" + }, + { + "DP05_0001E": "7065", + "DP05_0019E": "1299", + "DP05_0019PE": "18.4", + "state": "41", + "county": "063" + }, + { + "DP05_0001E": "595761", + "DP05_0019E": "136108", + "DP05_0019PE": "22.8", + "state": "41", + "county": "067" + }, + { + "DP05_0001E": "1417", + "DP05_0019E": "257", + "DP05_0019PE": "18.1", + "state": "41", + "county": "069" + }, + { + "DP05_0001E": "48645", + "DP05_0019E": "9074", + "DP05_0019PE": "18.7", + "state": "44", + "county": "001" + }, + { + "DP05_0001E": "164122", + "DP05_0019E": "30775", + "DP05_0019PE": "18.8", + "state": "44", + "county": "003" + }, + { + "DP05_0001E": "636161", + "DP05_0019E": "130930", + "DP05_0019PE": "20.6", + "state": "44", + "county": "007" + }, + { + "DP05_0001E": "126139", + "DP05_0019E": "20813", + "DP05_0019PE": "16.5", + "state": "44", + "county": "009" + }, + { + "DP05_0001E": "1218380", + "DP05_0019E": "228296", + "DP05_0019PE": "18.7", + "state": "42", + "county": "003" + }, + { + "DP05_0001E": "65356", + "DP05_0019E": "12516", + "DP05_0019PE": "19.2", + "state": "42", + "county": "005" + }, + { + "DP05_0001E": "48154", + "DP05_0019E": "9386", + "DP05_0019PE": "19.5", + "state": "42", + "county": "009" + }, + { + "DP05_0001E": "419062", + "DP05_0019E": "93714", + "DP05_0019PE": "22.4", + "state": "42", + "county": "011" + }, + { + "DP05_0001E": "60721", + "DP05_0019E": "13358", + "DP05_0019PE": "22.0", + "state": "42", + "county": "015" + }, + { + "DP05_0001E": "627668", + "DP05_0019E": "128008", + "DP05_0019PE": "20.4", + "state": "42", + "county": "017" + }, + { + "DP05_0001E": "131611", + "DP05_0019E": "25312", + "DP05_0019PE": "19.2", + "state": "42", + "county": "021" + }, + { + "DP05_0001E": "4512", + "DP05_0019E": "732", + "DP05_0019PE": "16.2", + "state": "42", + "county": "023" + }, + { + "DP05_0001E": "162264", + "DP05_0019E": "24309", + "DP05_0019PE": "15.0", + "state": "42", + "county": "027" + }, + { + "DP05_0001E": "20346", + "DP05_0019E": "4518", + "DP05_0019PE": "22.2", + "state": "13", + "county": "321" + }, + { + "DP05_0001E": "8735", + "DP05_0019E": "1423", + "DP05_0019PE": "16.3", + "state": "16", + "county": "035" + }, + { + "DP05_0001E": "27043", + "DP05_0019E": "6795", + "DP05_0019PE": "25.1", + "state": "16", + "county": "039" + }, + { + "DP05_0001E": "17771", + "DP05_0019E": "4080", + "DP05_0019PE": "23.0", + "state": "16", + "county": "045" + }, + { + "DP05_0001E": "29238", + "DP05_0019E": "9782", + "DP05_0019PE": "33.5", + "state": "16", + "county": "051" + }, + { + "DP05_0001E": "161676", + "DP05_0019E": "36920", + "DP05_0019PE": "22.8", + "state": "16", + "county": "055" + }, + { + "DP05_0001E": "3850", + "DP05_0019E": "862", + "DP05_0019PE": "22.4", + "state": "16", + "county": "061" + }, + { + "DP05_0001E": "20817", + "DP05_0019E": "5969", + "DP05_0019PE": "28.7", + "state": "16", + "county": "067" + }, + { + "DP05_0001E": "4429", + "DP05_0019E": "1259", + "DP05_0019PE": "28.4", + "state": "16", + "county": "071" + }, + { + "DP05_0001E": "7635", + "DP05_0019E": "2362", + "DP05_0019PE": "30.9", + "state": "16", + "county": "077" + }, + { + "DP05_0001E": "86198", + "DP05_0019E": "23709", + "DP05_0019PE": "27.5", + "state": "16", + "county": "083" + }, + { + "DP05_0001E": "65670", + "DP05_0019E": "14877", + "DP05_0019PE": "22.7", + "state": "17", + "county": "001" + }, + { + "DP05_0001E": "16520", + "DP05_0019E": "3152", + "DP05_0019PE": "19.1", + "state": "17", + "county": "005" + }, + { + "DP05_0001E": "32878", + "DP05_0019E": "7040", + "DP05_0019PE": "21.4", + "state": "17", + "county": "011" + }, + { + "DP05_0001E": "12324", + "DP05_0019E": "3008", + "DP05_0019PE": "24.4", + "state": "17", + "county": "017" + }, + { + "DP05_0001E": "32705", + "DP05_0019E": "6550", + "DP05_0019PE": "20.0", + "state": "17", + "county": "021" + }, + { + "DP05_0001E": "37549", + "DP05_0019E": "7940", + "DP05_0019PE": "21.1", + "state": "17", + "county": "027" + }, + { + "DP05_0001E": "18833", + "DP05_0019E": "3628", + "DP05_0019PE": "19.3", + "state": "17", + "county": "033" + }, + { + "DP05_0001E": "15764", + "DP05_0019E": "3478", + "DP05_0019PE": "22.1", + "state": "17", + "county": "039" + }, + { + "DP05_0001E": "926005", + "DP05_0019E": "210237", + "DP05_0019PE": "22.7", + "state": "17", + "county": "043" + }, + { + "DP05_0001E": "34151", + "DP05_0019E": "8044", + "DP05_0019PE": "23.6", + "state": "17", + "county": "049" + }, + { + "DP05_0001E": "38688", + "DP05_0019E": "8534", + "DP05_0019PE": "22.1", + "state": "17", + "county": "055" + }, + { + "DP05_0001E": "12988", + "DP05_0019E": "2723", + "DP05_0019PE": "21.0", + "state": "17", + "county": "061" + }, + { + "DP05_0001E": "8151", + "DP05_0019E": "1762", + "DP05_0019PE": "21.6", + "state": "17", + "county": "065" + }, + { + "DP05_0001E": "6737", + "DP05_0019E": "1235", + "DP05_0019PE": "18.3", + "state": "17", + "county": "071" + }, + { + "DP05_0001E": "57517", + "DP05_0019E": "10630", + "DP05_0019PE": "18.5", + "state": "17", + "county": "077" + }, + { + "DP05_0001E": "37524", + "DP05_0019E": "8646", + "DP05_0019PE": "23.0", + "state": "17", + "county": "121" + }, + { + "DP05_0001E": "14041", + "DP05_0019E": "3087", + "DP05_0019PE": "22.0", + "state": "17", + "county": "127" + }, + { + "DP05_0001E": "34444", + "DP05_0019E": "7663", + "DP05_0019PE": "22.2", + "state": "17", + "county": "133" + }, + { + "DP05_0001E": "14557", + "DP05_0019E": "3687", + "DP05_0019PE": "25.3", + "state": "17", + "county": "139" + }, + { + "DP05_0001E": "181111", + "DP05_0019E": "43065", + "DP05_0019PE": "23.8", + "state": "17", + "county": "143" + }, + { + "DP05_0001E": "15571", + "DP05_0019E": "3489", + "DP05_0019PE": "22.4", + "state": "17", + "county": "149" + }, + { + "DP05_0001E": "5720", + "DP05_0019E": "1129", + "DP05_0019PE": "19.7", + "state": "17", + "county": "155" + }, + { + "DP05_0001E": "142801", + "DP05_0019E": "31834", + "DP05_0019PE": "22.3", + "state": "17", + "county": "161" + }, + { + "DP05_0001E": "23735", + "DP05_0019E": "5126", + "DP05_0019PE": "21.6", + "state": "17", + "county": "165" + }, + { + "DP05_0001E": "4982", + "DP05_0019E": "1061", + "DP05_0019PE": "21.3", + "state": "17", + "county": "171" + }, + { + "DP05_0001E": "44683", + "DP05_0019E": "9600", + "DP05_0019PE": "21.5", + "state": "17", + "county": "177" + }, + { + "DP05_0001E": "76704", + "DP05_0019E": "18103", + "DP05_0019PE": "23.6", + "state": "17", + "county": "183" + }, + { + "DP05_0001E": "13967", + "DP05_0019E": "2970", + "DP05_0019PE": "21.3", + "state": "17", + "county": "189" + }, + { + "DP05_0001E": "13712", + "DP05_0019E": "2923", + "DP05_0019PE": "21.3", + "state": "17", + "county": "193" + }, + { + "DP05_0001E": "66929", + "DP05_0019E": "14590", + "DP05_0019PE": "21.8", + "state": "17", + "county": "199" + }, + { + "DP05_0001E": "7048", + "DP05_0019E": "1507", + "DP05_0019PE": "21.4", + "state": "19", + "county": "001" + }, + { + "DP05_0001E": "12462", + "DP05_0019E": "2783", + "DP05_0019PE": "22.3", + "state": "19", + "county": "007" + }, + { + "DP05_0001E": "25558", + "DP05_0019E": "5971", + "DP05_0019PE": "23.4", + "state": "19", + "county": "011" + }, + { + "DP05_0001E": "25032", + "DP05_0019E": "5611", + "DP05_0019PE": "22.4", + "state": "19", + "county": "017" + }, + { + "DP05_0001E": "19950", + "DP05_0019E": "5160", + "DP05_0019PE": "25.9", + "state": "19", + "county": "021" + }, + { + "DP05_0001E": "20150", + "DP05_0019E": "4721", + "DP05_0019PE": "23.4", + "state": "19", + "county": "027" + }, + { + "DP05_0001E": "42672", + "DP05_0019E": "8836", + "DP05_0019PE": "20.7", + "state": "19", + "county": "033" + }, + { + "DP05_0001E": "9383", + "DP05_0019E": "2326", + "DP05_0019PE": "24.8", + "state": "19", + "county": "039" + }, + { + "DP05_0001E": "17527", + "DP05_0019E": "3708", + "DP05_0019PE": "21.2", + "state": "19", + "county": "043" + }, + { + "DP05_0001E": "90418", + "DP05_0019E": "24973", + "DP05_0019PE": "27.6", + "state": "19", + "county": "049" + }, + { + "DP05_0001E": "17107", + "DP05_0019E": "4058", + "DP05_0019PE": "23.7", + "state": "19", + "county": "055" + }, + { + "DP05_0001E": "37032", + "DP05_0019E": "8238", + "DP05_0019PE": "22.2", + "state": "19", + "county": "099" + }, + { + "DP05_0001E": "20575", + "DP05_0019E": "4388", + "DP05_0019PE": "21.3", + "state": "19", + "county": "105" + }, + { + "DP05_0001E": "14864", + "DP05_0019E": "3205", + "DP05_0019PE": "21.6", + "state": "19", + "county": "109" + }, + { + "DP05_0001E": "11125", + "DP05_0019E": "2508", + "DP05_0019PE": "22.5", + "state": "19", + "county": "115" + }, + { + "DP05_0001E": "16148", + "DP05_0019E": "3984", + "DP05_0019PE": "24.7", + "state": "19", + "county": "121" + }, + { + "DP05_0001E": "33193", + "DP05_0019E": "7717", + "DP05_0019PE": "23.2", + "state": "19", + "county": "125" + }, + { + "DP05_0001E": "10588", + "DP05_0019E": "2496", + "DP05_0019PE": "23.6", + "state": "19", + "county": "131" + }, + { + "DP05_0001E": "10016", + "DP05_0019E": "2322", + "DP05_0019PE": "23.2", + "state": "19", + "county": "137" + }, + { + "DP05_0001E": "32759", + "DP05_0019E": "5778", + "DP05_0019PE": "17.6", + "state": "35", + "county": "055" + }, + { + "DP05_0001E": "4106", + "DP05_0019E": "834", + "DP05_0019PE": "20.3", + "state": "35", + "county": "059" + }, + { + "DP05_0001E": "76518", + "DP05_0019E": "17907", + "DP05_0019PE": "23.4", + "state": "35", + "county": "061" + }, + { + "DP05_0001E": "10592", + "DP05_0019E": "2082", + "DP05_0019PE": "19.7", + "state": "38", + "county": "003" + }, + { + "DP05_0001E": "6860", + "DP05_0019E": "2336", + "DP05_0019PE": "34.1", + "state": "38", + "county": "005" + }, + { + "DP05_0001E": "6418", + "DP05_0019E": "1377", + "DP05_0019PE": "21.5", + "state": "38", + "county": "009" + }, + { + "DP05_0001E": "3091", + "DP05_0019E": "761", + "DP05_0019PE": "24.6", + "state": "38", + "county": "011" + }, + { + "DP05_0001E": "95509", + "DP05_0019E": "22224", + "DP05_0019PE": "23.3", + "state": "38", + "county": "015" + }, + { + "DP05_0001E": "179937", + "DP05_0019E": "40295", + "DP05_0019PE": "22.4", + "state": "38", + "county": "017" + }, + { + "DP05_0001E": "4857", + "DP05_0019E": "1149", + "DP05_0019PE": "23.7", + "state": "38", + "county": "021" + }, + { + "DP05_0001E": "4362", + "DP05_0019E": "1058", + "DP05_0019PE": "24.3", + "state": "38", + "county": "025" + }, + { + "DP05_0001E": "2262", + "DP05_0019E": "502", + "DP05_0019PE": "22.2", + "state": "38", + "county": "027" + }, + { + "DP05_0001E": "3231", + "DP05_0019E": "703", + "DP05_0019PE": "21.8", + "state": "38", + "county": "031" + }, + { + "DP05_0001E": "1796", + "DP05_0019E": "362", + "DP05_0019PE": "20.2", + "state": "38", + "county": "033" + }, + { + "DP05_0001E": "2318", + "DP05_0019E": "510", + "DP05_0019PE": "22.0", + "state": "38", + "county": "037" + }, + { + "DP05_0001E": "2314", + "DP05_0019E": "457", + "DP05_0019PE": "19.7", + "state": "38", + "county": "039" + }, + { + "DP05_0001E": "2468", + "DP05_0019E": "556", + "DP05_0019PE": "22.5", + "state": "38", + "county": "043" + }, + { + "DP05_0001E": "4225", + "DP05_0019E": "969", + "DP05_0019PE": "22.9", + "state": "38", + "county": "045" + }, + { + "DP05_0001E": "5825", + "DP05_0019E": "1383", + "DP05_0019PE": "23.7", + "state": "38", + "county": "049" + }, + { + "DP05_0001E": "2535", + "DP05_0019E": "435", + "DP05_0019PE": "17.2", + "state": "38", + "county": "051" + }, + { + "DP05_0001E": "9531", + "DP05_0019E": "2061", + "DP05_0019PE": "21.6", + "state": "38", + "county": "055" + }, + { + "DP05_0001E": "8359", + "DP05_0019E": "1882", + "DP05_0019PE": "22.5", + "state": "38", + "county": "057" + }, + { + "DP05_0001E": "10348", + "DP05_0019E": "2859", + "DP05_0019PE": "27.6", + "state": "38", + "county": "061" + }, + { + "DP05_0001E": "1962", + "DP05_0019E": "496", + "DP05_0019PE": "25.3", + "state": "38", + "county": "065" + }, + { + "DP05_0001E": "6850", + "DP05_0019E": "1423", + "DP05_0019PE": "20.8", + "state": "38", + "county": "067" + }, + { + "DP05_0001E": "11521", + "DP05_0019E": "2706", + "DP05_0019PE": "23.5", + "state": "38", + "county": "071" + }, + { + "DP05_0001E": "5258", + "DP05_0019E": "1101", + "DP05_0019PE": "20.9", + "state": "38", + "county": "073" + }, + { + "DP05_0001E": "16245", + "DP05_0019E": "3550", + "DP05_0019PE": "21.9", + "state": "38", + "county": "077" + }, + { + "DP05_0001E": "14437", + "DP05_0019E": "4908", + "DP05_0019PE": "34.0", + "state": "38", + "county": "079" + }, + { + "DP05_0001E": "1289", + "DP05_0019E": "205", + "DP05_0019PE": "15.9", + "state": "38", + "county": "083" + }, + { + "DP05_0001E": "4339", + "DP05_0019E": "1514", + "DP05_0019PE": "34.9", + "state": "38", + "county": "085" + }, + { + "DP05_0001E": "31164", + "DP05_0019E": "8310", + "DP05_0019PE": "26.7", + "state": "38", + "county": "089" + }, + { + "DP05_0001E": "1817", + "DP05_0019E": "407", + "DP05_0019PE": "22.4", + "state": "38", + "county": "091" + }, + { + "DP05_0001E": "2191", + "DP05_0019E": "460", + "DP05_0019PE": "21.0", + "state": "38", + "county": "095" + }, + { + "DP05_0001E": "7999", + "DP05_0019E": "1787", + "DP05_0019PE": "22.3", + "state": "38", + "county": "097" + }, + { + "DP05_0001E": "68962", + "DP05_0019E": "16244", + "DP05_0019PE": "23.6", + "state": "38", + "county": "101" + }, + { + "DP05_0001E": "36044", + "DP05_0019E": "10378", + "DP05_0019PE": "28.8", + "state": "38", + "county": "105" + }, + { + "DP05_0001E": "71714", + "DP05_0019E": "19235", + "DP05_0019PE": "26.8", + "state": "04", + "county": "001" + }, + { + "DP05_0001E": "126442", + "DP05_0019E": "27159", + "DP05_0019PE": "21.5", + "state": "04", + "county": "003" + }, + { + "DP05_0001E": "142254", + "DP05_0019E": "29040", + "DP05_0019PE": "20.4", + "state": "04", + "county": "005" + }, + { + "DP05_0001E": "53846", + "DP05_0019E": "10688", + "DP05_0019PE": "19.8", + "state": "04", + "county": "007" + }, + { + "DP05_0001E": "38304", + "DP05_0019E": "10267", + "DP05_0019PE": "26.8", + "state": "04", + "county": "009" + }, + { + "DP05_0001E": "9465", + "DP05_0019E": "2585", + "DP05_0019PE": "27.3", + "state": "04", + "county": "011" + }, + { + "DP05_0001E": "21035", + "DP05_0019E": "3374", + "DP05_0019PE": "16.0", + "state": "04", + "county": "012" + }, + { + "DP05_0001E": "4412779", + "DP05_0019E": "1051018", + "DP05_0019PE": "23.8", + "state": "04", + "county": "013" + }, + { + "DP05_0001E": "210998", + "DP05_0019E": "36006", + "DP05_0019PE": "17.1", + "state": "04", + "county": "015" + }, + { + "DP05_0001E": "110271", + "DP05_0019E": "29180", + "DP05_0019PE": "26.5", + "state": "04", + "county": "017" + }, + { + "DP05_0001E": "1038476", + "DP05_0019E": "216362", + "DP05_0019PE": "20.8", + "state": "04", + "county": "019" + }, + { + "DP05_0001E": "447559", + "DP05_0019E": "101172", + "DP05_0019PE": "22.6", + "state": "04", + "county": "021" + }, + { + "DP05_0001E": "46594", + "DP05_0019E": "12629", + "DP05_0019PE": "27.1", + "state": "04", + "county": "023" + }, + { + "DP05_0001E": "232396", + "DP05_0019E": "37584", + "DP05_0019PE": "16.2", + "state": "04", + "county": "025" + }, + { + "DP05_0001E": "211931", + "DP05_0019E": "53346", + "DP05_0019PE": "25.2", + "state": "04", + "county": "027" + }, + { + "DP05_0001E": "12503", + "DP05_0019E": "2802", + "DP05_0019PE": "22.4", + "state": "20", + "county": "001" + }, + { + "DP05_0001E": "7877", + "DP05_0019E": "2028", + "DP05_0019PE": "25.7", + "state": "20", + "county": "003" + }, + { + "DP05_0001E": "16210", + "DP05_0019E": "3781", + "DP05_0019PE": "23.3", + "state": "20", + "county": "005" + }, + { + "DP05_0001E": "4493", + "DP05_0019E": "1117", + "DP05_0019PE": "24.9", + "state": "20", + "county": "007" + }, + { + "DP05_0001E": "26209", + "DP05_0019E": "6220", + "DP05_0019PE": "23.7", + "state": "20", + "county": "009" + }, + { + "DP05_0001E": "14539", + "DP05_0019E": "3691", + "DP05_0019PE": "25.4", + "state": "20", + "county": "011" + }, + { + "DP05_0001E": "521980", + "DP05_0019E": "118549", + "DP05_0019PE": "22.7", + "state": "42", + "county": "029" + }, + { + "DP05_0001E": "79466", + "DP05_0019E": "14444", + "DP05_0019PE": "18.2", + "state": "42", + "county": "033" + }, + { + "DP05_0001E": "38549", + "DP05_0019E": "7794", + "DP05_0019PE": "20.2", + "state": "42", + "county": "035" + }, + { + "DP05_0001E": "85074", + "DP05_0019E": "17661", + "DP05_0019PE": "20.8", + "state": "42", + "county": "039" + }, + { + "DP05_0001E": "251487", + "DP05_0019E": "51036", + "DP05_0019PE": "20.3", + "state": "42", + "county": "041" + }, + { + "DP05_0001E": "565328", + "DP05_0019E": "124495", + "DP05_0019PE": "22.0", + "state": "42", + "county": "045" + }, + { + "DP05_0001E": "30077", + "DP05_0019E": "5741", + "DP05_0019PE": "19.1", + "state": "42", + "county": "047" + }, + { + "DP05_0001E": "130329", + "DP05_0019E": "25096", + "DP05_0019PE": "19.3", + "state": "42", + "county": "051" + }, + { + "DP05_0001E": "7190", + "DP05_0019E": "377", + "DP05_0019PE": "5.2", + "state": "42", + "county": "053" + }, + { + "DP05_0001E": "14492", + "DP05_0019E": "2882", + "DP05_0019PE": "19.9", + "state": "42", + "county": "057" + }, + { + "DP05_0001E": "36484", + "DP05_0019E": "7082", + "DP05_0019PE": "19.4", + "state": "42", + "county": "059" + }, + { + "DP05_0001E": "84463", + "DP05_0019E": "15199", + "DP05_0019PE": "18.0", + "state": "42", + "county": "063" + }, + { + "DP05_0001E": "43570", + "DP05_0019E": "9284", + "DP05_0019PE": "21.3", + "state": "42", + "county": "065" + }, + { + "DP05_0001E": "210162", + "DP05_0019E": "42875", + "DP05_0019PE": "20.4", + "state": "42", + "county": "069" + }, + { + "DP05_0001E": "543050", + "DP05_0019E": "127835", + "DP05_0019PE": "23.5", + "state": "42", + "county": "071" + }, + { + "DP05_0001E": "140410", + "DP05_0019E": "31967", + "DP05_0019PE": "22.8", + "state": "42", + "county": "075" + }, + { + "DP05_0001E": "367338", + "DP05_0019E": "83396", + "DP05_0019PE": "22.7", + "state": "42", + "county": "077" + }, + { + "DP05_0001E": "114014", + "DP05_0019E": "23345", + "DP05_0019PE": "20.5", + "state": "42", + "county": "081" + }, + { + "DP05_0001E": "41021", + "DP05_0019E": "8134", + "DP05_0019PE": "19.8", + "state": "42", + "county": "083" + }, + { + "DP05_0001E": "110519", + "DP05_0019E": "21454", + "DP05_0019PE": "19.4", + "state": "42", + "county": "085" + }, + { + "DP05_0001E": "168824", + "DP05_0019E": "33149", + "DP05_0019PE": "19.6", + "state": "42", + "county": "089" + }, + { + "DP05_0001E": "827180", + "DP05_0019E": "178562", + "DP05_0019PE": "21.6", + "state": "42", + "county": "091" + }, + { + "DP05_0001E": "18178", + "DP05_0019E": "3715", + "DP05_0019PE": "20.4", + "state": "42", + "county": "093" + }, + { + "DP05_0001E": "304233", + "DP05_0019E": "60669", + "DP05_0019PE": "19.9", + "state": "42", + "county": "095" + }, + { + "DP05_0001E": "91234", + "DP05_0019E": "17913", + "DP05_0019PE": "19.6", + "state": "42", + "county": "097" + }, + { + "DP05_0001E": "46133", + "DP05_0019E": "9904", + "DP05_0019PE": "21.5", + "state": "42", + "county": "099" + }, + { + "DP05_0001E": "1581531", + "DP05_0019E": "343874", + "DP05_0019PE": "21.7", + "state": "42", + "county": "101" + }, + { + "DP05_0001E": "55660", + "DP05_0019E": "9909", + "DP05_0019PE": "17.8", + "state": "42", + "county": "103" + }, + { + "DP05_0001E": "16685", + "DP05_0019E": "3409", + "DP05_0019PE": "20.4", + "state": "42", + "county": "105" + }, + { + "DP05_0001E": "141935", + "DP05_0019E": "28029", + "DP05_0019PE": "19.7", + "state": "42", + "county": "107" + }, + { + "DP05_0001E": "40452", + "DP05_0019E": "8413", + "DP05_0019PE": "20.8", + "state": "42", + "county": "109" + }, + { + "DP05_0001E": "73844", + "DP05_0019E": "13377", + "DP05_0019PE": "18.1", + "state": "42", + "county": "111" + }, + { + "DP05_0001E": "6038", + "DP05_0019E": "646", + "DP05_0019PE": "10.7", + "state": "42", + "county": "113" + }, + { + "DP05_0001E": "40604", + "DP05_0019E": "7610", + "DP05_0019PE": "18.7", + "state": "42", + "county": "115" + }, + { + "DP05_0001E": "40759", + "DP05_0019E": "8118", + "DP05_0019PE": "19.9", + "state": "42", + "county": "117" + }, + { + "DP05_0001E": "44831", + "DP05_0019E": "7997", + "DP05_0019PE": "17.8", + "state": "42", + "county": "119" + }, + { + "DP05_0001E": "51355", + "DP05_0019E": "9933", + "DP05_0019PE": "19.3", + "state": "42", + "county": "121" + }, + { + "DP05_0001E": "39466", + "DP05_0019E": "7663", + "DP05_0019PE": "19.4", + "state": "42", + "county": "123" + }, + { + "DP05_0001E": "207081", + "DP05_0019E": "40463", + "DP05_0019PE": "19.5", + "state": "42", + "county": "125" + }, + { + "DP05_0001E": "51268", + "DP05_0019E": "8503", + "DP05_0019PE": "16.6", + "state": "42", + "county": "127" + }, + { + "DP05_0001E": "27078", + "DP05_0019E": "5295", + "DP05_0019PE": "19.6", + "state": "42", + "county": "131" + }, + { + "DP05_0001E": "447628", + "DP05_0019E": "98737", + "DP05_0019PE": "22.1", + "state": "42", + "county": "133" + }, + { + "DP05_0001E": "24582", + "DP05_0019E": "4974", + "DP05_0019PE": "20.2", + "state": "45", + "county": "001" + }, + { + "DP05_0001E": "8789", + "DP05_0019E": "1670", + "DP05_0019PE": "19.0", + "state": "45", + "county": "005" + }, + { + "DP05_0001E": "200183", + "DP05_0019E": "45689", + "DP05_0019PE": "22.8", + "state": "45", + "county": "007" + }, + { + "DP05_0001E": "21170", + "DP05_0019E": "4967", + "DP05_0019PE": "23.5", + "state": "45", + "county": "011" + }, + { + "DP05_0001E": "189732", + "DP05_0019E": "35377", + "DP05_0019PE": "18.6", + "state": "45", + "county": "013" + }, + { + "DP05_0001E": "14608", + "DP05_0019E": "2791", + "DP05_0019PE": "19.1", + "state": "45", + "county": "017" + }, + { + "DP05_0001E": "407543", + "DP05_0019E": "80003", + "DP05_0019PE": "19.6", + "state": "45", + "county": "019" + }, + { + "DP05_0001E": "32260", + "DP05_0019E": "7219", + "DP05_0019PE": "22.4", + "state": "45", + "county": "023" + }, + { + "DP05_0001E": "45833", + "DP05_0019E": "10180", + "DP05_0019PE": "22.2", + "state": "45", + "county": "025" + }, + { + "DP05_0001E": "37624", + "DP05_0019E": "8458", + "DP05_0019PE": "22.5", + "state": "45", + "county": "029" + }, + { + "DP05_0001E": "66858", + "DP05_0019E": "14867", + "DP05_0019PE": "22.2", + "state": "45", + "county": "031" + }, + { + "DP05_0001E": "30473", + "DP05_0019E": "7681", + "DP05_0019PE": "25.2", + "state": "45", + "county": "033" + }, + { + "DP05_0001E": "27021", + "DP05_0019E": "4888", + "DP05_0019PE": "18.1", + "state": "45", + "county": "037" + }, + { + "DP05_0001E": "22406", + "DP05_0019E": "4284", + "DP05_0019PE": "19.1", + "state": "45", + "county": "039" + }, + { + "DP05_0001E": "62150", + "DP05_0019E": "11285", + "DP05_0019PE": "18.2", + "state": "45", + "county": "043" + }, + { + "DP05_0001E": "13796", + "DP05_0019E": "3254", + "DP05_0019PE": "23.6", + "state": "19", + "county": "141" + }, + { + "DP05_0001E": "8941", + "DP05_0019E": "2069", + "DP05_0019PE": "23.1", + "state": "19", + "county": "147" + }, + { + "DP05_0001E": "485418", + "DP05_0019E": "120710", + "DP05_0019PE": "24.9", + "state": "19", + "county": "153" + }, + { + "DP05_0001E": "18391", + "DP05_0019E": "3588", + "DP05_0019PE": "19.5", + "state": "19", + "county": "157" + }, + { + "DP05_0001E": "172938", + "DP05_0019E": "41083", + "DP05_0019PE": "23.8", + "state": "19", + "county": "163" + }, + { + "DP05_0001E": "97355", + "DP05_0019E": "16064", + "DP05_0019PE": "16.5", + "state": "19", + "county": "169" + }, + { + "DP05_0001E": "6160", + "DP05_0019E": "1430", + "DP05_0019PE": "23.2", + "state": "19", + "county": "173" + }, + { + "DP05_0001E": "35102", + "DP05_0019E": "7972", + "DP05_0019PE": "22.7", + "state": "19", + "county": "179" + }, + { + "DP05_0001E": "6426", + "DP05_0019E": "1638", + "DP05_0019PE": "25.5", + "state": "19", + "county": "185" + }, + { + "DP05_0001E": "10474", + "DP05_0019E": "2281", + "DP05_0019PE": "21.8", + "state": "19", + "county": "189" + }, + { + "DP05_0001E": "7422", + "DP05_0019E": "1520", + "DP05_0019PE": "20.5", + "state": "19", + "county": "195" + }, + { + "DP05_0001E": "575421", + "DP05_0019E": "128406", + "DP05_0019PE": "22.3", + "state": "24", + "county": "003" + }, + { + "DP05_0001E": "92094", + "DP05_0019E": "21370", + "DP05_0019PE": "23.2", + "state": "24", + "county": "009" + }, + { + "DP05_0001E": "102889", + "DP05_0019E": "23299", + "DP05_0019PE": "22.6", + "state": "24", + "county": "015" + }, + { + "DP05_0001E": "255955", + "DP05_0019E": "59421", + "DP05_0019PE": "23.2", + "state": "24", + "county": "021" + }, + { + "DP05_0001E": "322407", + "DP05_0019E": "78553", + "DP05_0019PE": "24.4", + "state": "24", + "county": "027" + }, + { + "DP05_0001E": "1047661", + "DP05_0019E": "243489", + "DP05_0019PE": "23.2", + "state": "24", + "county": "031" + }, + { + "DP05_0001E": "113182", + "DP05_0019E": "27411", + "DP05_0019PE": "24.2", + "state": "24", + "county": "037" + }, + { + "DP05_0001E": "25435", + "DP05_0019E": "4196", + "DP05_0019PE": "16.5", + "state": "26", + "county": "031" + }, + { + "DP05_0001E": "78957", + "DP05_0019E": "17636", + "DP05_0019PE": "22.3", + "state": "26", + "county": "037" + }, + { + "DP05_0001E": "25373", + "DP05_0019E": "5012", + "DP05_0019PE": "19.8", + "state": "26", + "county": "043" + }, + { + "DP05_0001E": "33175", + "DP05_0019E": "6366", + "DP05_0019PE": "19.2", + "state": "26", + "county": "047" + }, + { + "DP05_0001E": "14715", + "DP05_0019E": "2308", + "DP05_0019PE": "15.7", + "state": "26", + "county": "053" + }, + { + "DP05_0001E": "45707", + "DP05_0019E": "9951", + "DP05_0019PE": "21.8", + "state": "26", + "county": "059" + }, + { + "DP05_0001E": "290923", + "DP05_0019E": "57415", + "DP05_0019PE": "19.7", + "state": "26", + "county": "065" + }, + { + "DP05_0001E": "25213", + "DP05_0019E": "4144", + "DP05_0019PE": "16.4", + "state": "26", + "county": "069" + }, + { + "DP05_0001E": "158174", + "DP05_0019E": "34092", + "DP05_0019PE": "21.6", + "state": "26", + "county": "075" + }, + { + "DP05_0001E": "652617", + "DP05_0019E": "157738", + "DP05_0019PE": "24.2", + "state": "26", + "county": "081" + }, + { + "DP05_0001E": "87975", + "DP05_0019E": "18174", + "DP05_0019PE": "20.7", + "state": "26", + "county": "087" + }, + { + "DP05_0001E": "98310", + "DP05_0019E": "20739", + "DP05_0019PE": "21.1", + "state": "26", + "county": "091" + }, + { + "DP05_0001E": "10781", + "DP05_0019E": "1690", + "DP05_0019PE": "15.7", + "state": "26", + "county": "097" + }, + { + "DP05_0001E": "66403", + "DP05_0019E": "11891", + "DP05_0019PE": "17.9", + "state": "26", + "county": "103" + }, + { + "DP05_0001E": "22902", + "DP05_0019E": "4182", + "DP05_0019PE": "18.3", + "state": "26", + "county": "109" + }, + { + "DP05_0001E": "15075", + "DP05_0019E": "3446", + "DP05_0019PE": "22.9", + "state": "26", + "county": "113" + }, + { + "DP05_0001E": "9270", + "DP05_0019E": "1357", + "DP05_0019PE": "14.6", + "state": "26", + "county": "119" + }, + { + "DP05_0001E": "1255340", + "DP05_0019E": "263007", + "DP05_0019PE": "21.0", + "state": "26", + "county": "125" + }, + { + "DP05_0001E": "5802", + "DP05_0019E": "682", + "DP05_0019PE": "11.8", + "state": "26", + "county": "131" + }, + { + "DP05_0001E": "24613", + "DP05_0019E": "5161", + "DP05_0019PE": "21.0", + "state": "26", + "county": "137" + }, + { + "DP05_0001E": "12687", + "DP05_0019E": "2010", + "DP05_0019PE": "15.8", + "state": "26", + "county": "141" + }, + { + "DP05_0001E": "159285", + "DP05_0019E": "33237", + "DP05_0019PE": "20.9", + "state": "26", + "county": "147" + }, + { + "DP05_0001E": "8031", + "DP05_0019E": "1362", + "DP05_0019PE": "17.0", + "state": "26", + "county": "153" + }, + { + "DP05_0001E": "75416", + "DP05_0019E": "17582", + "DP05_0019PE": "23.3", + "state": "26", + "county": "159" + }, + { + "DP05_0001E": "24098", + "DP05_0019E": "6365", + "DP05_0019PE": "26.4", + "state": "28", + "county": "039" + }, + { + "DP05_0001E": "47339", + "DP05_0019E": "9604", + "DP05_0019PE": "20.3", + "state": "28", + "county": "045" + }, + { + "DP05_0001E": "17414", + "DP05_0019E": "4443", + "DP05_0019PE": "25.5", + "state": "28", + "county": "051" + }, + { + "DP05_0001E": "23396", + "DP05_0019E": "5088", + "DP05_0019PE": "21.7", + "state": "28", + "county": "057" + }, + { + "DP05_0001E": "7129", + "DP05_0019E": "1573", + "DP05_0019PE": "22.1", + "state": "28", + "county": "063" + }, + { + "DP05_0001E": "9829", + "DP05_0019E": "1830", + "DP05_0019PE": "18.6", + "state": "28", + "county": "069" + }, + { + "DP05_0001E": "62693", + "DP05_0019E": "15524", + "DP05_0019PE": "24.8", + "state": "28", + "county": "073" + }, + { + "DP05_0001E": "22791", + "DP05_0019E": "5894", + "DP05_0019PE": "25.9", + "state": "28", + "county": "079" + }, + { + "DP05_0001E": "34197", + "DP05_0019E": "7999", + "DP05_0019PE": "23.4", + "state": "28", + "county": "085" + }, + { + "DP05_0001E": "24785", + "DP05_0019E": "5783", + "DP05_0019PE": "23.3", + "state": "28", + "county": "091" + }, + { + "DP05_0001E": "9956", + "DP05_0019E": "2262", + "DP05_0019PE": "22.7", + "state": "28", + "county": "097" + }, + { + "DP05_0001E": "21215", + "DP05_0019E": "5244", + "DP05_0019PE": "24.7", + "state": "28", + "county": "101" + }, + { + "DP05_0001E": "34079", + "DP05_0019E": "8533", + "DP05_0019PE": "25.0", + "state": "28", + "county": "107" + }, + { + "DP05_0001E": "39365", + "DP05_0019E": "10191", + "DP05_0019PE": "25.9", + "state": "28", + "county": "113" + }, + { + "DP05_0001E": "7038", + "DP05_0019E": "1635", + "DP05_0019PE": "23.2", + "state": "28", + "county": "119" + }, + { + "DP05_0001E": "4427", + "DP05_0019E": "1060", + "DP05_0019PE": "23.9", + "state": "28", + "county": "125" + }, + { + "DP05_0001E": "15919", + "DP05_0019E": "3682", + "DP05_0019PE": "23.1", + "state": "28", + "county": "129" + }, + { + "DP05_0001E": "66890", + "DP05_0019E": "17054", + "DP05_0019PE": "25.5", + "state": "20", + "county": "015" + }, + { + "DP05_0001E": "3280", + "DP05_0019E": "682", + "DP05_0019PE": "20.8", + "state": "20", + "county": "019" + }, + { + "DP05_0001E": "20017", + "DP05_0019E": "4754", + "DP05_0019PE": "23.7", + "state": "20", + "county": "021" + }, + { + "DP05_0001E": "2006", + "DP05_0019E": "469", + "DP05_0019PE": "23.4", + "state": "20", + "county": "025" + }, + { + "DP05_0001E": "8030", + "DP05_0019E": "1844", + "DP05_0019PE": "23.0", + "state": "20", + "county": "027" + }, + { + "DP05_0001E": "8218", + "DP05_0019E": "1736", + "DP05_0019PE": "21.1", + "state": "20", + "county": "031" + }, + { + "DP05_0001E": "1759", + "DP05_0019E": "345", + "DP05_0019PE": "19.6", + "state": "20", + "county": "033" + }, + { + "DP05_0001E": "38874", + "DP05_0019E": "8463", + "DP05_0019PE": "21.8", + "state": "20", + "county": "037" + }, + { + "DP05_0001E": "18614", + "DP05_0019E": "4346", + "DP05_0019PE": "23.3", + "state": "20", + "county": "041" + }, + { + "DP05_0001E": "7616", + "DP05_0019E": "1467", + "DP05_0019PE": "19.3", + "state": "20", + "county": "043" + }, + { + "DP05_0001E": "2822", + "DP05_0019E": "639", + "DP05_0019PE": "22.6", + "state": "20", + "county": "047" + }, + { + "DP05_0001E": "2502", + "DP05_0019E": "549", + "DP05_0019PE": "21.9", + "state": "20", + "county": "049" + }, + { + "DP05_0001E": "6176", + "DP05_0019E": "1140", + "DP05_0019PE": "18.5", + "state": "20", + "county": "053" + }, + { + "DP05_0001E": "36451", + "DP05_0019E": "11067", + "DP05_0019PE": "30.4", + "state": "20", + "county": "055" + }, + { + "DP05_0001E": "25643", + "DP05_0019E": "6129", + "DP05_0019PE": "23.9", + "state": "20", + "county": "059" + }, + { + "DP05_0001E": "33309", + "DP05_0019E": "10349", + "DP05_0019PE": "31.1", + "state": "20", + "county": "061" + }, + { + "DP05_0001E": "2464", + "DP05_0019E": "514", + "DP05_0019PE": "20.9", + "state": "20", + "county": "065" + }, + { + "DP05_0001E": "6020", + "DP05_0019E": "1756", + "DP05_0019PE": "29.2", + "state": "20", + "county": "069" + }, + { + "DP05_0001E": "1156", + "DP05_0019E": "316", + "DP05_0019PE": "27.3", + "state": "20", + "county": "071" + }, + { + "DP05_0001E": "2552", + "DP05_0019E": "742", + "DP05_0019PE": "29.1", + "state": "20", + "county": "075" + }, + { + "DP05_0001E": "5506", + "DP05_0019E": "1369", + "DP05_0019PE": "24.9", + "state": "20", + "county": "077" + }, + { + "DP05_0001E": "3990", + "DP05_0019E": "1128", + "DP05_0019PE": "28.3", + "state": "20", + "county": "081" + }, + { + "DP05_0001E": "1872", + "DP05_0019E": "399", + "DP05_0019PE": "21.3", + "state": "20", + "county": "083" + }, + { + "DP05_0001E": "18974", + "DP05_0019E": "4333", + "DP05_0019PE": "22.8", + "state": "20", + "county": "087" + }, + { + "DP05_0001E": "597574", + "DP05_0019E": "145364", + "DP05_0019PE": "24.3", + "state": "20", + "county": "091" + }, + { + "DP05_0001E": "3863", + "DP05_0019E": "1122", + "DP05_0019PE": "29.0", + "state": "20", + "county": "093" + }, + { + "DP05_0001E": "2483", + "DP05_0019E": "595", + "DP05_0019PE": "24.0", + "state": "20", + "county": "097" + }, + { + "DP05_0001E": "19938", + "DP05_0019E": "4780", + "DP05_0019PE": "24.0", + "state": "20", + "county": "099" + }, + { + "DP05_0001E": "81499", + "DP05_0019E": "19323", + "DP05_0019PE": "23.7", + "state": "20", + "county": "103" + }, + { + "DP05_0001E": "3013", + "DP05_0019E": "713", + "DP05_0019PE": "23.7", + "state": "20", + "county": "105" + }, + { + "DP05_0001E": "2789", + "DP05_0019E": "682", + "DP05_0019PE": "24.5", + "state": "20", + "county": "109" + }, + { + "DP05_0001E": "28557", + "DP05_0019E": "6298", + "DP05_0019PE": "22.1", + "state": "20", + "county": "113" + }, + { + "DP05_0001E": "11865", + "DP05_0019E": "2514", + "DP05_0019PE": "21.2", + "state": "20", + "county": "115" + }, + { + "DP05_0001E": "4120", + "DP05_0019E": "1049", + "DP05_0019PE": "25.5", + "state": "20", + "county": "119" + }, + { + "DP05_0001E": "33740", + "DP05_0019E": "8220", + "DP05_0019PE": "24.4", + "state": "20", + "county": "121" + }, + { + "DP05_0001E": "32114", + "DP05_0019E": "7593", + "DP05_0019PE": "23.6", + "state": "20", + "county": "125" + }, + { + "DP05_0001E": "5551", + "DP05_0019E": "1155", + "DP05_0019PE": "20.8", + "state": "20", + "county": "127" + }, + { + "DP05_0001E": "10109", + "DP05_0019E": "2684", + "DP05_0019PE": "26.6", + "state": "20", + "county": "131" + }, + { + "DP05_0001E": "16008", + "DP05_0019E": "3933", + "DP05_0019PE": "24.6", + "state": "20", + "county": "133" + }, + { + "DP05_0001E": "5416", + "DP05_0019E": "1027", + "DP05_0019PE": "19.0", + "state": "20", + "county": "137" + }, + { + "DP05_0001E": "3494", + "DP05_0019E": "733", + "DP05_0019PE": "21.0", + "state": "20", + "county": "141" + }, + { + "DP05_0001E": "5776", + "DP05_0019E": "1299", + "DP05_0019PE": "22.5", + "state": "20", + "county": "143" + }, + { + "DP05_0001E": "6539", + "DP05_0019E": "1070", + "DP05_0019PE": "16.4", + "state": "20", + "county": "145" + }, + { + "DP05_0001E": "5297", + "DP05_0019E": "1185", + "DP05_0019PE": "22.4", + "state": "20", + "county": "147" + }, + { + "DP05_0001E": "24203", + "DP05_0019E": "7090", + "DP05_0019PE": "29.3", + "state": "20", + "county": "149" + }, + { + "DP05_0001E": "9324", + "DP05_0019E": "2360", + "DP05_0019PE": "25.3", + "state": "20", + "county": "151" + }, + { + "DP05_0001E": "2490", + "DP05_0019E": "528", + "DP05_0019PE": "21.2", + "state": "20", + "county": "153" + }, + { + "DP05_0001E": "62421", + "DP05_0019E": "14039", + "DP05_0019PE": "22.5", + "state": "20", + "county": "155" + }, + { + "DP05_0001E": "4607", + "DP05_0019E": "996", + "DP05_0019PE": "21.6", + "state": "20", + "county": "157" + }, + { + "DP05_0001E": "9532", + "DP05_0019E": "2133", + "DP05_0019PE": "22.4", + "state": "20", + "county": "159" + }, + { + "DP05_0001E": "74059", + "DP05_0019E": "12184", + "DP05_0019PE": "16.5", + "state": "20", + "county": "161" + }, + { + "DP05_0001E": "4985", + "DP05_0019E": "1123", + "DP05_0019PE": "22.5", + "state": "20", + "county": "163" + }, + { + "DP05_0001E": "2953", + "DP05_0019E": "632", + "DP05_0019PE": "21.4", + "state": "20", + "county": "165" + }, + { + "DP05_0001E": "6896", + "DP05_0019E": "1530", + "DP05_0019PE": "22.2", + "state": "20", + "county": "167" + }, + { + "DP05_0001E": "54384", + "DP05_0019E": "12668", + "DP05_0019PE": "23.3", + "state": "20", + "county": "169" + }, + { + "DP05_0001E": "4893", + "DP05_0019E": "1339", + "DP05_0019PE": "27.4", + "state": "20", + "county": "171" + }, + { + "DP05_0001E": "515416", + "DP05_0019E": "132524", + "DP05_0019PE": "25.7", + "state": "20", + "county": "173" + }, + { + "DP05_0001E": "21902", + "DP05_0019E": "6795", + "DP05_0019PE": "31.0", + "state": "20", + "county": "175" + }, + { + "DP05_0001E": "177293", + "DP05_0019E": "41934", + "DP05_0019PE": "23.7", + "state": "20", + "county": "177" + }, + { + "DP05_0001E": "2515", + "DP05_0019E": "607", + "DP05_0019PE": "24.1", + "state": "20", + "county": "179" + }, + { + "DP05_0001E": "19223", + "DP05_0019E": "4151", + "DP05_0019PE": "21.6", + "state": "45", + "county": "049" + }, + { + "DP05_0001E": "344186", + "DP05_0019E": "62018", + "DP05_0019PE": "18.0", + "state": "45", + "county": "051" + }, + { + "DP05_0001E": "65926", + "DP05_0019E": "15176", + "DP05_0019PE": "23.0", + "state": "45", + "county": "055" + }, + { + "DP05_0001E": "95378", + "DP05_0019E": "20574", + "DP05_0019PE": "21.6", + "state": "45", + "county": "057" + }, + { + "DP05_0001E": "66990", + "DP05_0019E": "14683", + "DP05_0019PE": "21.9", + "state": "45", + "county": "059" + }, + { + "DP05_0001E": "295033", + "DP05_0019E": "68278", + "DP05_0019PE": "23.1", + "state": "45", + "county": "063" + }, + { + "DP05_0001E": "9495", + "DP05_0019E": "1129", + "DP05_0019PE": "11.9", + "state": "45", + "county": "065" + }, + { + "DP05_0001E": "26376", + "DP05_0019E": "5292", + "DP05_0019PE": "20.1", + "state": "45", + "county": "069" + }, + { + "DP05_0001E": "38329", + "DP05_0019E": "8320", + "DP05_0019PE": "21.7", + "state": "45", + "county": "071" + }, + { + "DP05_0001E": "86953", + "DP05_0019E": "19127", + "DP05_0019PE": "22.0", + "state": "45", + "county": "075" + }, + { + "DP05_0001E": "125381", + "DP05_0019E": "23665", + "DP05_0019PE": "18.9", + "state": "45", + "county": "077" + }, + { + "DP05_0001E": "20292", + "DP05_0019E": "4423", + "DP05_0019PE": "21.8", + "state": "45", + "county": "081" + }, + { + "DP05_0001E": "313791", + "DP05_0019E": "72755", + "DP05_0019PE": "23.2", + "state": "45", + "county": "083" + }, + { + "DP05_0001E": "27325", + "DP05_0019E": "5833", + "DP05_0019PE": "21.3", + "state": "45", + "county": "087" + }, + { + "DP05_0001E": "30810", + "DP05_0019E": "6402", + "DP05_0019PE": "20.8", + "state": "45", + "county": "089" + }, + { + "DP05_0001E": "273887", + "DP05_0019E": "66275", + "DP05_0019PE": "24.2", + "state": "45", + "county": "091" + }, + { + "DP05_0001E": "18338", + "DP05_0019E": "4945", + "DP05_0019PE": "27.0", + "state": "46", + "county": "005" + }, + { + "DP05_0001E": "3430", + "DP05_0019E": "1221", + "DP05_0019PE": "35.6", + "state": "46", + "county": "007" + }, + { + "DP05_0001E": "35115", + "DP05_0019E": "7271", + "DP05_0019PE": "20.7", + "state": "46", + "county": "011" + }, + { + "DP05_0001E": "38988", + "DP05_0019E": "9268", + "DP05_0019PE": "23.8", + "state": "46", + "county": "013" + }, + { + "DP05_0001E": "2005", + "DP05_0019E": "769", + "DP05_0019PE": "38.4", + "state": "46", + "county": "017" + }, + { + "DP05_0001E": "10295", + "DP05_0019E": "2544", + "DP05_0019PE": "24.7", + "state": "46", + "county": "019" + }, + { + "DP05_0001E": "1458", + "DP05_0019E": "302", + "DP05_0019PE": "20.7", + "state": "46", + "county": "021" + }, + { + "DP05_0001E": "9324", + "DP05_0019E": "2756", + "DP05_0019PE": "29.6", + "state": "46", + "county": "023" + }, + { + "DP05_0001E": "3715", + "DP05_0019E": "1001", + "DP05_0019PE": "26.9", + "state": "46", + "county": "025" + }, + { + "DP05_0001E": "14076", + "DP05_0019E": "2373", + "DP05_0019PE": "16.9", + "state": "46", + "county": "027" + }, + { + "DP05_0001E": "28133", + "DP05_0019E": "6774", + "DP05_0019PE": "24.1", + "state": "46", + "county": "029" + }, + { + "DP05_0001E": "4106", + "DP05_0019E": "1505", + "DP05_0019PE": "36.7", + "state": "46", + "county": "031" + }, + { + "DP05_0001E": "8826", + "DP05_0019E": "1295", + "DP05_0019PE": "14.7", + "state": "46", + "county": "033" + }, + { + "DP05_0001E": "19890", + "DP05_0019E": "4594", + "DP05_0019PE": "23.1", + "state": "46", + "county": "035" + }, + { + "DP05_0001E": "5452", + "DP05_0019E": "1186", + "DP05_0019PE": "21.8", + "state": "46", + "county": "037" + }, + { + "DP05_0001E": "4309", + "DP05_0019E": "1016", + "DP05_0019PE": "23.6", + "state": "46", + "county": "039" + }, + { + "DP05_0001E": "5841", + "DP05_0019E": "2158", + "DP05_0019PE": "36.9", + "state": "46", + "county": "041" + }, + { + "DP05_0001E": "2913", + "DP05_0019E": "708", + "DP05_0019PE": "24.3", + "state": "46", + "county": "043" + }, + { + "DP05_0001E": "3876", + "DP05_0019E": "983", + "DP05_0019PE": "25.4", + "state": "46", + "county": "045" + }, + { + "DP05_0001E": "6721", + "DP05_0019E": "1161", + "DP05_0019PE": "17.3", + "state": "46", + "county": "047" + }, + { + "DP05_0001E": "2315", + "DP05_0019E": "490", + "DP05_0019PE": "21.2", + "state": "46", + "county": "049" + }, + { + "DP05_0001E": "7125", + "DP05_0019E": "1569", + "DP05_0019PE": "22.0", + "state": "46", + "county": "051" + }, + { + "DP05_0001E": "4193", + "DP05_0019E": "999", + "DP05_0019PE": "23.8", + "state": "46", + "county": "053" + }, + { + "DP05_0001E": "1935", + "DP05_0019E": "557", + "DP05_0019PE": "28.8", + "state": "46", + "county": "055" + }, + { + "DP05_0001E": "6104", + "DP05_0019E": "1944", + "DP05_0019PE": "31.8", + "state": "46", + "county": "057" + }, + { + "DP05_0001E": "3064", + "DP05_0019E": "654", + "DP05_0019PE": "21.3", + "state": "46", + "county": "059" + }, + { + "DP05_0001E": "1178", + "DP05_0019E": "243", + "DP05_0019PE": "20.6", + "state": "46", + "county": "063" + }, + { + "DP05_0001E": "17560", + "DP05_0019E": "4215", + "DP05_0019PE": "24.0", + "state": "46", + "county": "065" + }, + { + "DP05_0001E": "1446", + "DP05_0019E": "294", + "DP05_0019PE": "20.3", + "state": "46", + "county": "069" + }, + { + "DP05_0001E": "3296", + "DP05_0019E": "1053", + "DP05_0019PE": "31.9", + "state": "46", + "county": "071" + }, + { + "DP05_0001E": "873", + "DP05_0019E": "218", + "DP05_0019PE": "25.0", + "state": "46", + "county": "075" + }, + { + "DP05_0001E": "4936", + "DP05_0019E": "1116", + "DP05_0019PE": "22.6", + "state": "46", + "county": "077" + }, + { + "DP05_0001E": "516126", + "DP05_0019E": "119020", + "DP05_0019PE": "23.1", + "state": "45", + "county": "045" + }, + { + "DP05_0001E": "12747", + "DP05_0019E": "2616", + "DP05_0019PE": "20.5", + "state": "46", + "county": "079" + }, + { + "DP05_0001E": "58887", + "DP05_0019E": "16394", + "DP05_0019PE": "27.8", + "state": "46", + "county": "083" + }, + { + "DP05_0001E": "3831", + "DP05_0019E": "1098", + "DP05_0019PE": "28.7", + "state": "46", + "county": "085" + }, + { + "DP05_0001E": "2316", + "DP05_0019E": "502", + "DP05_0019PE": "21.7", + "state": "46", + "county": "089" + }, + { + "DP05_0001E": "4881", + "DP05_0019E": "1130", + "DP05_0019PE": "23.2", + "state": "46", + "county": "091" + }, + { + "DP05_0001E": "2065", + "DP05_0019E": "588", + "DP05_0019PE": "28.5", + "state": "46", + "county": "095" + }, + { + "DP05_0001E": "2213", + "DP05_0019E": "540", + "DP05_0019PE": "24.4", + "state": "46", + "county": "097" + }, + { + "DP05_0001E": "6508", + "DP05_0019E": "1650", + "DP05_0019PE": "25.4", + "state": "46", + "county": "101" + }, + { + "DP05_0001E": "14041", + "DP05_0019E": "2747", + "DP05_0019PE": "19.6", + "state": "28", + "county": "135" + }, + { + "DP05_0001E": "19396", + "DP05_0019E": "4177", + "DP05_0019PE": "21.5", + "state": "28", + "county": "141" + }, + { + "DP05_0001E": "14423", + "DP05_0019E": "3330", + "DP05_0019PE": "23.1", + "state": "28", + "county": "147" + }, + { + "DP05_0001E": "20344", + "DP05_0019E": "5056", + "DP05_0019PE": "24.9", + "state": "28", + "county": "153" + }, + { + "DP05_0001E": "18116", + "DP05_0019E": "4065", + "DP05_0019PE": "22.4", + "state": "28", + "county": "159" + }, + { + "DP05_0001E": "679037", + "DP05_0019E": "147706", + "DP05_0019PE": "21.8", + "state": "35", + "county": "001" + }, + { + "DP05_0001E": "18723", + "DP05_0019E": "4502", + "DP05_0019PE": "24.0", + "state": "35", + "county": "041" + }, + { + "DP05_0001E": "27546", + "DP05_0019E": "5085", + "DP05_0019PE": "18.5", + "state": "35", + "county": "047" + }, + { + "DP05_0001E": "10988", + "DP05_0019E": "1721", + "DP05_0019PE": "15.7", + "state": "35", + "county": "051" + }, + { + "DP05_0001E": "15477", + "DP05_0019E": "3302", + "DP05_0019PE": "21.3", + "state": "35", + "county": "057" + }, + { + "DP05_0001E": "2271", + "DP05_0019E": "523", + "DP05_0019PE": "23.0", + "state": "38", + "county": "001" + }, + { + "DP05_0001E": "886", + "DP05_0019E": "200", + "DP05_0019PE": "22.6", + "state": "38", + "county": "007" + }, + { + "DP05_0001E": "2142", + "DP05_0019E": "530", + "DP05_0019PE": "24.7", + "state": "38", + "county": "013" + }, + { + "DP05_0001E": "3769", + "DP05_0019E": "771", + "DP05_0019PE": "20.5", + "state": "38", + "county": "019" + }, + { + "DP05_0001E": "2289", + "DP05_0019E": "497", + "DP05_0019PE": "21.7", + "state": "38", + "county": "023" + }, + { + "DP05_0001E": "3262", + "DP05_0019E": "641", + "DP05_0019PE": "19.7", + "state": "38", + "county": "029" + }, + { + "DP05_0001E": "70243", + "DP05_0019E": "14716", + "DP05_0019PE": "21.0", + "state": "38", + "county": "035" + }, + { + "DP05_0001E": "2510", + "DP05_0019E": "475", + "DP05_0019PE": "18.9", + "state": "38", + "county": "041" + }, + { + "DP05_0001E": "1743", + "DP05_0019E": "334", + "DP05_0019PE": "19.2", + "state": "38", + "county": "047" + }, + { + "DP05_0001E": "13836", + "DP05_0019E": "4450", + "DP05_0019PE": "32.2", + "state": "38", + "county": "053" + }, + { + "DP05_0001E": "31118", + "DP05_0019E": "7065", + "DP05_0019PE": "22.7", + "state": "38", + "county": "059" + }, + { + "DP05_0001E": "2864", + "DP05_0019E": "507", + "DP05_0019PE": "17.7", + "state": "38", + "county": "063" + }, + { + "DP05_0001E": "4061", + "DP05_0019E": "905", + "DP05_0019PE": "22.3", + "state": "38", + "county": "069" + }, + { + "DP05_0001E": "2387", + "DP05_0019E": "583", + "DP05_0019PE": "24.4", + "state": "38", + "county": "075" + }, + { + "DP05_0001E": "3899", + "DP05_0019E": "758", + "DP05_0019PE": "19.4", + "state": "38", + "county": "081" + }, + { + "DP05_0001E": "788", + "DP05_0019E": "175", + "DP05_0019PE": "22.2", + "state": "38", + "county": "087" + }, + { + "DP05_0001E": "20879", + "DP05_0019E": "4216", + "DP05_0019PE": "20.2", + "state": "38", + "county": "093" + }, + { + "DP05_0001E": "10642", + "DP05_0019E": "2442", + "DP05_0019PE": "22.9", + "state": "38", + "county": "099" + }, + { + "DP05_0001E": "3889", + "DP05_0019E": "791", + "DP05_0019PE": "20.3", + "state": "38", + "county": "103" + }, + { + "DP05_0001E": "9575", + "DP05_0019E": "2448", + "DP05_0019PE": "25.6", + "state": "20", + "county": "013" + }, + { + "DP05_0001E": "2604", + "DP05_0019E": "562", + "DP05_0019PE": "21.6", + "state": "20", + "county": "017" + }, + { + "DP05_0001E": "2639", + "DP05_0019E": "556", + "DP05_0019PE": "21.1", + "state": "20", + "county": "023" + }, + { + "DP05_0001E": "8831", + "DP05_0019E": "2132", + "DP05_0019PE": "24.1", + "state": "20", + "county": "029" + }, + { + "DP05_0001E": "35090", + "DP05_0019E": "8292", + "DP05_0019PE": "23.6", + "state": "20", + "county": "035" + }, + { + "DP05_0001E": "2826", + "DP05_0019E": "549", + "DP05_0019PE": "19.4", + "state": "20", + "county": "039" + }, + { + "DP05_0001E": "121304", + "DP05_0019E": "22130", + "DP05_0019PE": "18.2", + "state": "20", + "county": "045" + }, + { + "DP05_0001E": "28747", + "DP05_0019E": "6192", + "DP05_0019PE": "21.5", + "state": "20", + "county": "051" + }, + { + "DP05_0001E": "33718", + "DP05_0019E": "10164", + "DP05_0019PE": "30.1", + "state": "20", + "county": "057" + }, + { + "DP05_0001E": "2650", + "DP05_0019E": "617", + "DP05_0019PE": "23.3", + "state": "20", + "county": "063" + }, + { + "DP05_0001E": "7324", + "DP05_0019E": "2262", + "DP05_0019PE": "30.9", + "state": "20", + "county": "067" + }, + { + "DP05_0001E": "6010", + "DP05_0019E": "1287", + "DP05_0019PE": "21.4", + "state": "20", + "county": "073" + }, + { + "DP05_0001E": "34434", + "DP05_0019E": "8271", + "DP05_0019PE": "24.0", + "state": "20", + "county": "079" + }, + { + "DP05_0001E": "13249", + "DP05_0019E": "3312", + "DP05_0019PE": "25.0", + "state": "20", + "county": "085" + }, + { + "DP05_0001E": "2854", + "DP05_0019E": "550", + "DP05_0019PE": "19.3", + "state": "20", + "county": "089" + }, + { + "DP05_0001E": "7173", + "DP05_0019E": "1601", + "DP05_0019PE": "22.3", + "state": "20", + "county": "095" + }, + { + "DP05_0001E": "1523", + "DP05_0019E": "354", + "DP05_0019PE": "23.2", + "state": "20", + "county": "101" + }, + { + "DP05_0001E": "9687", + "DP05_0019E": "2169", + "DP05_0019PE": "22.4", + "state": "20", + "county": "107" + }, + { + "DP05_0001E": "33237", + "DP05_0019E": "7414", + "DP05_0019PE": "22.3", + "state": "20", + "county": "111" + }, + { + "DP05_0001E": "9713", + "DP05_0019E": "2322", + "DP05_0019PE": "23.9", + "state": "20", + "county": "117" + }, + { + "DP05_0001E": "6053", + "DP05_0019E": "1353", + "DP05_0019PE": "22.4", + "state": "20", + "county": "123" + }, + { + "DP05_0001E": "2656", + "DP05_0019E": "642", + "DP05_0019PE": "24.2", + "state": "20", + "county": "129" + }, + { + "DP05_0001E": "2838", + "DP05_0019E": "622", + "DP05_0019PE": "21.9", + "state": "20", + "county": "135" + }, + { + "DP05_0001E": "15855", + "DP05_0019E": "3688", + "DP05_0019PE": "23.3", + "state": "20", + "county": "139" + }, + { + "DP05_0001E": "4125", + "DP05_0019E": "998", + "DP05_0019PE": "24.2", + "state": "20", + "county": "185" + }, + { + "DP05_0001E": "22928", + "DP05_0019E": "5589", + "DP05_0019PE": "24.4", + "state": "20", + "county": "191" + }, + { + "DP05_0001E": "6877", + "DP05_0019E": "1626", + "DP05_0019PE": "23.6", + "state": "20", + "county": "197" + }, + { + "DP05_0001E": "2112", + "DP05_0019E": "505", + "DP05_0019PE": "23.9", + "state": "20", + "county": "203" + }, + { + "DP05_0001E": "3117", + "DP05_0019E": "602", + "DP05_0019PE": "19.3", + "state": "20", + "county": "207" + }, + { + "DP05_0001E": "21065", + "DP05_0019E": "4960", + "DP05_0019PE": "23.5", + "state": "21", + "county": "003" + }, + { + "DP05_0001E": "5904", + "DP05_0019E": "1382", + "DP05_0019PE": "23.4", + "state": "20", + "county": "181" + }, + { + "DP05_0001E": "3594", + "DP05_0019E": "703", + "DP05_0019PE": "19.6", + "state": "20", + "county": "183" + }, + { + "DP05_0001E": "2030", + "DP05_0019E": "569", + "DP05_0019PE": "28.0", + "state": "20", + "county": "187" + }, + { + "DP05_0001E": "5498", + "DP05_0019E": "1600", + "DP05_0019PE": "29.1", + "state": "20", + "county": "189" + }, + { + "DP05_0001E": "7748", + "DP05_0019E": "1761", + "DP05_0019PE": "22.7", + "state": "20", + "county": "193" + }, + { + "DP05_0001E": "2802", + "DP05_0019E": "514", + "DP05_0019PE": "18.3", + "state": "20", + "county": "195" + }, + { + "DP05_0001E": "1583", + "DP05_0019E": "398", + "DP05_0019PE": "25.1", + "state": "20", + "county": "199" + }, + { + "DP05_0001E": "5474", + "DP05_0019E": "1198", + "DP05_0019PE": "21.9", + "state": "20", + "county": "201" + }, + { + "DP05_0001E": "8600", + "DP05_0019E": "2028", + "DP05_0019PE": "23.6", + "state": "20", + "county": "205" + }, + { + "DP05_0001E": "165447", + "DP05_0019E": "45960", + "DP05_0019PE": "27.8", + "state": "20", + "county": "209" + }, + { + "DP05_0001E": "19366", + "DP05_0019E": "3781", + "DP05_0019PE": "19.5", + "state": "21", + "county": "001" + }, + { + "DP05_0001E": "22580", + "DP05_0019E": "5358", + "DP05_0019PE": "23.7", + "state": "21", + "county": "005" + }, + { + "DP05_0001E": "7914", + "DP05_0019E": "1658", + "DP05_0019PE": "21.0", + "state": "21", + "county": "007" + }, + { + "DP05_0001E": "12421", + "DP05_0019E": "3153", + "DP05_0019PE": "25.4", + "state": "21", + "county": "011" + }, + { + "DP05_0001E": "26426", + "DP05_0019E": "5587", + "DP05_0019PE": "21.1", + "state": "21", + "county": "013" + }, + { + "DP05_0001E": "19998", + "DP05_0019E": "4492", + "DP05_0019PE": "22.5", + "state": "21", + "county": "017" + }, + { + "DP05_0001E": "47361", + "DP05_0019E": "10128", + "DP05_0019PE": "21.4", + "state": "21", + "county": "019" + }, + { + "DP05_0001E": "8308", + "DP05_0019E": "1978", + "DP05_0019PE": "23.8", + "state": "21", + "county": "023" + }, + { + "DP05_0001E": "20283", + "DP05_0019E": "4642", + "DP05_0019PE": "22.9", + "state": "21", + "county": "027" + }, + { + "DP05_0001E": "80921", + "DP05_0019E": "17694", + "DP05_0019PE": "21.9", + "state": "21", + "county": "029" + }, + { + "DP05_0001E": "12679", + "DP05_0019E": "2837", + "DP05_0019PE": "22.4", + "state": "21", + "county": "033" + }, + { + "DP05_0001E": "38991", + "DP05_0019E": "7030", + "DP05_0019PE": "18.0", + "state": "21", + "county": "035" + }, + { + "DP05_0001E": "4738", + "DP05_0019E": "1086", + "DP05_0019PE": "22.9", + "state": "21", + "county": "039" + }, + { + "DP05_0001E": "10691", + "DP05_0019E": "2772", + "DP05_0019PE": "25.9", + "state": "21", + "county": "041" + }, + { + "DP05_0001E": "15968", + "DP05_0019E": "3639", + "DP05_0019PE": "22.8", + "state": "21", + "county": "045" + }, + { + "DP05_0001E": "71470", + "DP05_0019E": "19352", + "DP05_0019PE": "27.1", + "state": "21", + "county": "047" + }, + { + "DP05_0001E": "20110", + "DP05_0019E": "4264", + "DP05_0019PE": "21.2", + "state": "21", + "county": "051" + }, + { + "DP05_0001E": "10175", + "DP05_0019E": "2203", + "DP05_0019PE": "21.7", + "state": "21", + "county": "053" + }, + { + "DP05_0001E": "6660", + "DP05_0019E": "1438", + "DP05_0019PE": "21.6", + "state": "21", + "county": "057" + }, + { + "DP05_0001E": "101001", + "DP05_0019E": "24655", + "DP05_0019PE": "24.4", + "state": "21", + "county": "059" + }, + { + "DP05_0001E": "7461", + "DP05_0019E": "1341", + "DP05_0019PE": "18.0", + "state": "21", + "county": "063" + }, + { + "DP05_0001E": "322200", + "DP05_0019E": "67314", + "DP05_0019PE": "20.9", + "state": "21", + "county": "067" + }, + { + "DP05_0001E": "14519", + "DP05_0019E": "3527", + "DP05_0019PE": "24.3", + "state": "21", + "county": "069" + }, + { + "DP05_0001E": "50744", + "DP05_0019E": "10631", + "DP05_0019PE": "21.0", + "state": "21", + "county": "073" + }, + { + "DP05_0001E": "6064", + "DP05_0019E": "1284", + "DP05_0019PE": "21.2", + "state": "21", + "county": "075" + }, + { + "DP05_0001E": "17554", + "DP05_0019E": "3808", + "DP05_0019PE": "21.7", + "state": "21", + "county": "079" + }, + { + "DP05_0001E": "25107", + "DP05_0019E": "6791", + "DP05_0019PE": "27.0", + "state": "21", + "county": "081" + }, + { + "DP05_0001E": "26313", + "DP05_0019E": "6298", + "DP05_0019PE": "23.9", + "state": "21", + "county": "085" + }, + { + "DP05_0001E": "11000", + "DP05_0019E": "2308", + "DP05_0019PE": "21.0", + "state": "21", + "county": "087" + }, + { + "DP05_0001E": "8748", + "DP05_0019E": "2136", + "DP05_0019PE": "24.4", + "state": "21", + "county": "091" + }, + { + "DP05_0001E": "109627", + "DP05_0019E": "26850", + "DP05_0019PE": "24.5", + "state": "21", + "county": "093" + }, + { + "DP05_0001E": "18763", + "DP05_0019E": "4208", + "DP05_0019PE": "22.4", + "state": "21", + "county": "097" + }, + { + "DP05_0001E": "45550", + "DP05_0019E": "10417", + "DP05_0019PE": "22.9", + "state": "21", + "county": "101" + }, + { + "DP05_0001E": "15999", + "DP05_0019E": "3758", + "DP05_0019PE": "23.5", + "state": "21", + "county": "103" + }, + { + "DP05_0001E": "4461", + "DP05_0019E": "884", + "DP05_0019PE": "19.8", + "state": "21", + "county": "105" + }, + { + "DP05_0001E": "45044", + "DP05_0019E": "10293", + "DP05_0019PE": "22.9", + "state": "21", + "county": "107" + }, + { + "DP05_0001E": "13368", + "DP05_0019E": "2997", + "DP05_0019PE": "22.4", + "state": "21", + "county": "109" + }, + { + "DP05_0001E": "768419", + "DP05_0019E": "170065", + "DP05_0019PE": "22.1", + "state": "21", + "county": "111" + }, + { + "DP05_0001E": "53476", + "DP05_0019E": "12882", + "DP05_0019PE": "24.1", + "state": "21", + "county": "113" + }, + { + "DP05_0001E": "22427", + "DP05_0019E": "4943", + "DP05_0019PE": "22.0", + "state": "21", + "county": "115" + }, + { + "DP05_0001E": "166552", + "DP05_0019E": "39670", + "DP05_0019PE": "23.8", + "state": "21", + "county": "117" + }, + { + "DP05_0001E": "15041", + "DP05_0019E": "3012", + "DP05_0019PE": "20.0", + "state": "21", + "county": "119" + }, + { + "DP05_0001E": "31288", + "DP05_0019E": "7304", + "DP05_0019PE": "23.3", + "state": "21", + "county": "121" + }, + { + "DP05_0001E": "14269", + "DP05_0019E": "3187", + "DP05_0019PE": "22.3", + "state": "21", + "county": "123" + }, + { + "DP05_0001E": "60631", + "DP05_0019E": "14005", + "DP05_0019PE": "23.1", + "state": "21", + "county": "125" + }, + { + "DP05_0001E": "15604", + "DP05_0019E": "3763", + "DP05_0019PE": "24.1", + "state": "21", + "county": "127" + }, + { + "DP05_0001E": "7088", + "DP05_0019E": "1432", + "DP05_0019PE": "20.2", + "state": "21", + "county": "129" + }, + { + "DP05_0001E": "10081", + "DP05_0019E": "2116", + "DP05_0019PE": "21.0", + "state": "21", + "county": "131" + }, + { + "DP05_0001E": "21936", + "DP05_0019E": "4744", + "DP05_0019PE": "21.6", + "state": "21", + "county": "133" + }, + { + "DP05_0001E": "14277", + "DP05_0019E": "5244", + "DP05_0019PE": "36.7", + "state": "46", + "county": "102" + }, + { + "DP05_0001E": "2996", + "DP05_0019E": "671", + "DP05_0019PE": "22.4", + "state": "46", + "county": "105" + }, + { + "DP05_0001E": "2311", + "DP05_0019E": "516", + "DP05_0019PE": "22.3", + "state": "46", + "county": "107" + }, + { + "DP05_0001E": "10310", + "DP05_0019E": "2770", + "DP05_0019PE": "26.9", + "state": "46", + "county": "109" + }, + { + "DP05_0001E": "6438", + "DP05_0019E": "1540", + "DP05_0019PE": "23.9", + "state": "46", + "county": "115" + }, + { + "DP05_0001E": "3058", + "DP05_0019E": "618", + "DP05_0019PE": "20.2", + "state": "46", + "county": "117" + }, + { + "DP05_0001E": "10308", + "DP05_0019E": "4318", + "DP05_0019PE": "41.9", + "state": "46", + "county": "121" + }, + { + "DP05_0001E": "5448", + "DP05_0019E": "1268", + "DP05_0019PE": "23.3", + "state": "46", + "county": "123" + }, + { + "DP05_0001E": "15659", + "DP05_0019E": "3810", + "DP05_0019PE": "24.3", + "state": "46", + "county": "127" + }, + { + "DP05_0001E": "5431", + "DP05_0019E": "1242", + "DP05_0019PE": "22.9", + "state": "46", + "county": "129" + }, + { + "DP05_0001E": "2767", + "DP05_0019E": "795", + "DP05_0019PE": "28.7", + "state": "46", + "county": "137" + }, + { + "DP05_0001E": "76513", + "DP05_0019E": "16179", + "DP05_0019PE": "21.1", + "state": "47", + "county": "001" + }, + { + "DP05_0001E": "16133", + "DP05_0019E": "3201", + "DP05_0019PE": "19.8", + "state": "47", + "county": "005" + }, + { + "DP05_0001E": "14961", + "DP05_0019E": "2266", + "DP05_0019PE": "15.1", + "state": "47", + "county": "007" + }, + { + "DP05_0001E": "106924", + "DP05_0019E": "23369", + "DP05_0019PE": "21.9", + "state": "47", + "county": "011" + }, + { + "DP05_0001E": "39818", + "DP05_0019E": "8167", + "DP05_0019PE": "20.5", + "state": "47", + "county": "013" + }, + { + "DP05_0001E": "27841", + "DP05_0019E": "5988", + "DP05_0019PE": "21.5", + "state": "47", + "county": "017" + }, + { + "DP05_0001E": "56452", + "DP05_0019E": "10350", + "DP05_0019PE": "18.3", + "state": "47", + "county": "019" + }, + { + "DP05_0001E": "17260", + "DP05_0019E": "3804", + "DP05_0019PE": "22.0", + "state": "47", + "county": "023" + }, + { + "DP05_0001E": "31827", + "DP05_0019E": "5966", + "DP05_0019PE": "18.7", + "state": "47", + "county": "025" + }, + { + "DP05_0001E": "35797", + "DP05_0019E": "7303", + "DP05_0019PE": "20.4", + "state": "47", + "county": "029" + }, + { + "DP05_0001E": "56024", + "DP05_0019E": "13411", + "DP05_0019PE": "23.9", + "state": "47", + "county": "031" + }, + { + "DP05_0001E": "60016", + "DP05_0019E": "10483", + "DP05_0019PE": "17.5", + "state": "47", + "county": "035" + }, + { + "DP05_0001E": "690540", + "DP05_0019E": "143847", + "DP05_0019PE": "20.8", + "state": "47", + "county": "037" + }, + { + "DP05_0001E": "20104", + "DP05_0019E": "4379", + "DP05_0019PE": "21.8", + "state": "47", + "county": "041" + }, + { + "DP05_0001E": "53289", + "DP05_0019E": "12279", + "DP05_0019PE": "23.0", + "state": "47", + "county": "043" + }, + { + "DP05_0001E": "37201", + "DP05_0019E": "8839", + "DP05_0019PE": "23.8", + "state": "47", + "county": "045" + }, + { + "DP05_0001E": "40612", + "DP05_0019E": "7742", + "DP05_0019PE": "19.1", + "state": "47", + "county": "047" + }, + { + "DP05_0001E": "18405", + "DP05_0019E": "3842", + "DP05_0019PE": "20.9", + "state": "47", + "county": "049" + }, + { + "DP05_0001E": "41999", + "DP05_0019E": "8414", + "DP05_0019PE": "20.0", + "state": "47", + "county": "051" + }, + { + "DP05_0001E": "49193", + "DP05_0019E": "11891", + "DP05_0019PE": "24.2", + "state": "47", + "county": "053" + }, + { + "DP05_0001E": "29403", + "DP05_0019E": "6109", + "DP05_0019PE": "20.8", + "state": "47", + "county": "055" + }, + { + "DP05_0001E": "23268", + "DP05_0019E": "4621", + "DP05_0019PE": "19.9", + "state": "47", + "county": "057" + }, + { + "DP05_0001E": "69077", + "DP05_0019E": "13399", + "DP05_0019PE": "19.4", + "state": "47", + "county": "059" + }, + { + "DP05_0001E": "13371", + "DP05_0019E": "2931", + "DP05_0019PE": "21.9", + "state": "47", + "county": "061" + }, + { + "DP05_0001E": "64479", + "DP05_0019E": "14960", + "DP05_0019PE": "23.2", + "state": "47", + "county": "063" + }, + { + "DP05_0001E": "364718", + "DP05_0019E": "75901", + "DP05_0019PE": "20.8", + "state": "47", + "county": "065" + }, + { + "DP05_0001E": "6568", + "DP05_0019E": "1400", + "DP05_0019PE": "21.3", + "state": "47", + "county": "067" + }, + { + "DP05_0001E": "25247", + "DP05_0019E": "4747", + "DP05_0019PE": "18.8", + "state": "47", + "county": "069" + }, + { + "DP05_0001E": "25665", + "DP05_0019E": "5195", + "DP05_0019PE": "20.2", + "state": "47", + "county": "071" + }, + { + "DP05_0001E": "56735", + "DP05_0019E": "11255", + "DP05_0019PE": "19.8", + "state": "47", + "county": "073" + }, + { + "DP05_0001E": "17391", + "DP05_0019E": "3916", + "DP05_0019PE": "22.5", + "state": "47", + "county": "075" + }, + { + "DP05_0001E": "27956", + "DP05_0019E": "6359", + "DP05_0019PE": "22.7", + "state": "47", + "county": "077" + }, + { + "DP05_0001E": "32251", + "DP05_0019E": "6623", + "DP05_0019PE": "20.5", + "state": "47", + "county": "079" + }, + { + "DP05_0001E": "25017", + "DP05_0019E": "5246", + "DP05_0019PE": "21.0", + "state": "47", + "county": "081" + }, + { + "DP05_0001E": "8201", + "DP05_0019E": "1781", + "DP05_0019PE": "21.7", + "state": "47", + "county": "083" + }, + { + "DP05_0001E": "18528", + "DP05_0019E": "4004", + "DP05_0019PE": "21.6", + "state": "47", + "county": "085" + }, + { + "DP05_0001E": "54162", + "DP05_0019E": "10595", + "DP05_0019PE": "19.6", + "state": "47", + "county": "089" + }, + { + "DP05_0001E": "17755", + "DP05_0019E": "3006", + "DP05_0019PE": "16.9", + "state": "47", + "county": "091" + }, + { + "DP05_0001E": "7273", + "DP05_0019E": "1044", + "DP05_0019PE": "14.4", + "state": "47", + "county": "095" + }, + { + "DP05_0001E": "25689", + "DP05_0019E": "5843", + "DP05_0019PE": "22.7", + "state": "47", + "county": "097" + }, + { + "DP05_0001E": "12131", + "DP05_0019E": "2594", + "DP05_0019PE": "21.4", + "state": "47", + "county": "101" + }, + { + "DP05_0001E": "34158", + "DP05_0019E": "7625", + "DP05_0019PE": "22.3", + "state": "47", + "county": "103" + }, + { + "DP05_0001E": "53392", + "DP05_0019E": "11241", + "DP05_0019PE": "21.1", + "state": "47", + "county": "107" + }, + { + "DP05_0001E": "25814", + "DP05_0019E": "5596", + "DP05_0019PE": "21.7", + "state": "47", + "county": "109" + }, + { + "DP05_0001E": "97838", + "DP05_0019E": "21937", + "DP05_0019PE": "22.4", + "state": "47", + "county": "113" + }, + { + "DP05_0001E": "28639", + "DP05_0019E": "6011", + "DP05_0019PE": "21.0", + "state": "47", + "county": "115" + }, + { + "DP05_0001E": "94615", + "DP05_0019E": "22010", + "DP05_0019PE": "23.3", + "state": "47", + "county": "119" + }, + { + "DP05_0001E": "132368", + "DP05_0019E": "34655", + "DP05_0019PE": "26.2", + "state": "21", + "county": "015" + }, + { + "DP05_0001E": "30090", + "DP05_0019E": "6020", + "DP05_0019PE": "20.0", + "state": "21", + "county": "021" + }, + { + "DP05_0001E": "12802", + "DP05_0019E": "2634", + "DP05_0019PE": "20.6", + "state": "21", + "county": "025" + }, + { + "DP05_0001E": "12756", + "DP05_0019E": "2906", + "DP05_0019PE": "22.8", + "state": "21", + "county": "031" + }, + { + "DP05_0001E": "93608", + "DP05_0019E": "19539", + "DP05_0019PE": "20.9", + "state": "21", + "county": "037" + }, + { + "DP05_0001E": "26976", + "DP05_0019E": "6221", + "DP05_0019PE": "23.1", + "state": "21", + "county": "043" + }, + { + "DP05_0001E": "36152", + "DP05_0019E": "8038", + "DP05_0019PE": "22.2", + "state": "21", + "county": "049" + }, + { + "DP05_0001E": "8940", + "DP05_0019E": "2005", + "DP05_0019PE": "22.4", + "state": "21", + "county": "055" + }, + { + "DP05_0001E": "12195", + "DP05_0019E": "2292", + "DP05_0019PE": "18.8", + "state": "21", + "county": "061" + }, + { + "DP05_0001E": "14187", + "DP05_0019E": "2954", + "DP05_0019PE": "20.8", + "state": "21", + "county": "065" + }, + { + "DP05_0001E": "35931", + "DP05_0019E": "7796", + "DP05_0019PE": "21.7", + "state": "21", + "county": "071" + }, + { + "DP05_0001E": "8760", + "DP05_0019E": "2131", + "DP05_0019PE": "24.3", + "state": "21", + "county": "077" + }, + { + "DP05_0001E": "37125", + "DP05_0019E": "8918", + "DP05_0019PE": "24.0", + "state": "21", + "county": "083" + }, + { + "DP05_0001E": "35359", + "DP05_0019E": "7604", + "DP05_0019PE": "21.5", + "state": "21", + "county": "089" + }, + { + "DP05_0001E": "26307", + "DP05_0019E": "6022", + "DP05_0019PE": "22.9", + "state": "21", + "county": "095" + }, + { + "DP05_0001E": "18833", + "DP05_0019E": "4643", + "DP05_0019PE": "24.7", + "state": "21", + "county": "099" + }, + { + "DP05_0001E": "9202", + "DP05_0019E": "2182", + "DP05_0019PE": "23.7", + "state": "21", + "county": "149" + }, + { + "DP05_0001E": "12346", + "DP05_0019E": "2851", + "DP05_0019PE": "23.1", + "state": "21", + "county": "153" + }, + { + "DP05_0001E": "11421", + "DP05_0019E": "2250", + "DP05_0019PE": "19.7", + "state": "21", + "county": "159" + }, + { + "DP05_0001E": "6463", + "DP05_0019E": "1363", + "DP05_0019PE": "21.1", + "state": "21", + "county": "165" + }, + { + "DP05_0001E": "10616", + "DP05_0019E": "2394", + "DP05_0019PE": "22.6", + "state": "21", + "county": "171" + }, + { + "DP05_0001E": "30815", + "DP05_0019E": "6309", + "DP05_0019PE": "20.5", + "state": "21", + "county": "177" + }, + { + "DP05_0001E": "24081", + "DP05_0019E": "5874", + "DP05_0019PE": "24.4", + "state": "21", + "county": "183" + }, + { + "DP05_0001E": "4416", + "DP05_0019E": "845", + "DP05_0019PE": "19.1", + "state": "21", + "county": "189" + }, + { + "DP05_0001E": "26266", + "DP05_0019E": "5997", + "DP05_0019PE": "22.8", + "state": "21", + "county": "193" + }, + { + "DP05_0001E": "64789", + "DP05_0019E": "14421", + "DP05_0019PE": "22.3", + "state": "21", + "county": "199" + }, + { + "DP05_0001E": "24534", + "DP05_0019E": "4839", + "DP05_0019PE": "19.7", + "state": "21", + "county": "205" + }, + { + "DP05_0001E": "48100", + "DP05_0019E": "11000", + "DP05_0019PE": "22.9", + "state": "21", + "county": "211" + }, + { + "DP05_0001E": "25572", + "DP05_0019E": "5744", + "DP05_0019PE": "22.5", + "state": "21", + "county": "217" + }, + { + "DP05_0001E": "14569", + "DP05_0019E": "3219", + "DP05_0019PE": "22.1", + "state": "21", + "county": "221" + }, + { + "DP05_0001E": "130836", + "DP05_0019E": "29788", + "DP05_0019PE": "22.8", + "state": "21", + "county": "227" + }, + { + "DP05_0001E": "13021", + "DP05_0019E": "3025", + "DP05_0019PE": "23.2", + "state": "21", + "county": "233" + }, + { + "DP05_0001E": "26486", + "DP05_0019E": "5867", + "DP05_0019PE": "22.2", + "state": "21", + "county": "239" + }, + { + "DP05_0001E": "294520", + "DP05_0019E": "54904", + "DP05_0019PE": "18.6", + "state": "23", + "county": "005" + }, + { + "DP05_0001E": "122158", + "DP05_0019E": "23550", + "DP05_0019PE": "19.3", + "state": "23", + "county": "011" + }, + { + "DP05_0001E": "57741", + "DP05_0019E": "10604", + "DP05_0019PE": "18.4", + "state": "23", + "county": "017" + }, + { + "DP05_0001E": "35720", + "DP05_0019E": "6718", + "DP05_0019PE": "18.8", + "state": "23", + "county": "023" + }, + { + "DP05_0001E": "39723", + "DP05_0019E": "7370", + "DP05_0019PE": "18.6", + "state": "23", + "county": "027" + }, + { + "DP05_0001E": "15826", + "DP05_0019E": "2605", + "DP05_0019PE": "16.5", + "state": "27", + "county": "001" + }, + { + "DP05_0001E": "30465", + "DP05_0019E": "6681", + "DP05_0019PE": "21.9", + "state": "27", + "county": "047" + }, + { + "DP05_0001E": "1255296", + "DP05_0019E": "275588", + "DP05_0019PE": "22.0", + "state": "27", + "county": "053" + }, + { + "DP05_0001E": "40004", + "DP05_0019E": "9475", + "DP05_0019PE": "23.7", + "state": "27", + "county": "059" + }, + { + "DP05_0001E": "9873", + "DP05_0019E": "2139", + "DP05_0019PE": "21.7", + "state": "27", + "county": "063" + }, + { + "DP05_0001E": "4272", + "DP05_0019E": "908", + "DP05_0019PE": "21.3", + "state": "27", + "county": "069" + }, + { + "DP05_0001E": "10571", + "DP05_0019E": "1858", + "DP05_0019PE": "17.6", + "state": "27", + "county": "075" + }, + { + "DP05_0001E": "5641", + "DP05_0019E": "1333", + "DP05_0019PE": "23.6", + "state": "27", + "county": "081" + }, + { + "DP05_0001E": "5508", + "DP05_0019E": "1724", + "DP05_0019PE": "31.3", + "state": "27", + "county": "087" + }, + { + "DP05_0001E": "23149", + "DP05_0019E": "5620", + "DP05_0019PE": "24.3", + "state": "27", + "county": "093" + }, + { + "DP05_0001E": "39931", + "DP05_0019E": "10055", + "DP05_0019PE": "25.2", + "state": "27", + "county": "099" + }, + { + "DP05_0001E": "44026", + "DP05_0019E": "10430", + "DP05_0019PE": "23.7", + "state": "21", + "county": "009" + }, + { + "DP05_0001E": "21667", + "DP05_0019E": "5971", + "DP05_0019PE": "27.6", + "state": "27", + "county": "105" + }, + { + "DP05_0001E": "58416", + "DP05_0019E": "12686", + "DP05_0019PE": "21.7", + "state": "27", + "county": "111" + }, + { + "DP05_0001E": "9163", + "DP05_0019E": "2354", + "DP05_0019PE": "25.7", + "state": "27", + "county": "117" + }, + { + "DP05_0001E": "546598", + "DP05_0019E": "127318", + "DP05_0019PE": "23.3", + "state": "27", + "county": "123" + }, + { + "DP05_0001E": "14572", + "DP05_0019E": "3353", + "DP05_0019PE": "23.0", + "state": "27", + "county": "129" + }, + { + "DP05_0001E": "15259", + "DP05_0019E": "3683", + "DP05_0019PE": "24.1", + "state": "27", + "county": "135" + }, + { + "DP05_0001E": "96015", + "DP05_0019E": "25340", + "DP05_0019PE": "26.4", + "state": "27", + "county": "141" + }, + { + "DP05_0001E": "36710", + "DP05_0019E": "9217", + "DP05_0019PE": "25.1", + "state": "27", + "county": "147" + }, + { + "DP05_0001E": "24603", + "DP05_0019E": "5858", + "DP05_0019PE": "23.8", + "state": "27", + "county": "153" + } +] diff --git a/docs/static/data/examples/geo/us-state-capitals.csv b/docs/static/data/examples/geo/us-state-capitals.csv new file mode 100644 index 000000000..ff3a60478 --- /dev/null +++ b/docs/static/data/examples/geo/us-state-capitals.csv @@ -0,0 +1,51 @@ +name,description,latitude,longitude +Alabama,Montgomery,32.377716,-86.300568 +Alaska,Juneau,58.301598,-134.420212 +Arizona,Phoenix,33.448143,-112.096962 +Arkansas,Little Rock,34.746613,-92.288986 +California,Sacramento,38.576668,-121.493629 +Colorado,Denver,39.739227,-104.984856 +Connecticut,Hartford,41.764046,-72.682198 +Delaware,Dover,39.157307,-75.519722 +Hawaii,Honolulu,21.307442,-157.857376 +Florida,Tallahassee,30.438118,-84.281296 +Georgia,Atlanta,33.749027,-84.388229 +Idaho,Boise,43.617775,-116.199722 +Illinois,Springfield,39.798363,-89.654961 +Indiana,Indianapolis,39.768623,-86.162643 +Iowa,Des Moines,41.591087,-93.603729 +Kansas,Topeka,39.048191,-95.677956 +Kentucky,Frankfort,38.186722,-84.875374 +Louisiana,Baton Rouge,30.457069,-91.187393 +Maine,Augusta,44.307167,-69.781693 +Maryland,Annapolis,38.978764,-76.490936 +Massachusetts,Boston,42.358162,-71.063698 +Michigan,Lansing,42.733635,-84.555328 +Minnesota,St. Paul,44.955097,-93.102211 +Mississippi,Jackson,32.303848,-90.182106 +Missouri,Jefferson City,38.579201,-92.172935 +Montana,Helena,46.585709,-112.018417 +Nebraska,Lincoln,40.808075,-96.699654 +Nevada,Carson City,39.163914,-119.766121 +New Hampshire,Concord,43.206898,-71.537994 +New Jersey,Trenton,40.220596,-74.769913 +New Mexico,Santa Fe,35.68224,-105.939728 +North Carolina,Raleigh,35.78043,-78.639099 +North Dakota,Bismarck,46.82085,-100.783318 +New York,Albany,42.652843,-73.757874 +Ohio,Columbus,39.961346,-82.999069 +Oklahoma,Oklahoma City,35.492207,-97.503342 +Oregon,Salem,44.938461,-123.030403 +Pennsylvania,Harrisburg,40.264378,-76.883598 +Rhode Island,Providence,41.830914,-71.414963 +South Carolina,Columbia,34.000343,-81.033211 +South Dakota,Pierre,44.367031,-100.346405 +Tennessee,Nashville,36.16581,-86.784241 +Texas,Austin,30.27467,-97.740349 +Utah,Salt Lake City,40.777477,-111.888237 +Vermont,Montpelier,44.262436,-72.580536 +Virginia,Richmond,37.538857,-77.43364 +Washington,Olympia,47.035805,-122.905014 +West Virginia,Charleston,38.336246,-81.612328 +Wisconsin,Madison,43.074684,-89.384445 +Wyoming,Cheyenne,41.140259,-104.820236 \ No newline at end of file diff --git a/docs/static/data/examples/geo/us-state-capitals.d.ts b/docs/static/data/examples/geo/us-state-capitals.d.ts new file mode 100644 index 000000000..dbfa3c808 --- /dev/null +++ b/docs/static/data/examples/geo/us-state-capitals.d.ts @@ -0,0 +1,6 @@ +export type USStateCapitalsData = { + name: string; + description: string; + latitude: number; + longitude: number; +}[]; diff --git a/docs/static/data/examples/geo/us-unemployment-2016.csv b/docs/static/data/examples/geo/us-unemployment-2016.csv new file mode 100644 index 000000000..59a0eb152 --- /dev/null +++ b/docs/static/data/examples/geo/us-unemployment-2016.csv @@ -0,0 +1,3220 @@ +id,state,county,rate +01001,Alabama,Autauga County,5.1 +01003,Alabama,Baldwin County,4.9 +01005,Alabama,Barbour County,8.6 +01007,Alabama,Bibb County,6.2 +01009,Alabama,Blount County,5.1 +01011,Alabama,Bullock County,7.1 +01013,Alabama,Butler County,6.7 +01015,Alabama,Calhoun County,6.1 +01017,Alabama,Chambers County,5 +01019,Alabama,Cherokee County,5 +01021,Alabama,Chilton County,5.2 +01023,Alabama,Choctaw County,7.9 +01025,Alabama,Clarke County,11.1 +01027,Alabama,Clay County,5.9 +01029,Alabama,Cleburne County,5.5 +01031,Alabama,Coffee County,5.6 +01033,Alabama,Colbert County,6.5 +01035,Alabama,Conecuh County,7.7 +01037,Alabama,Coosa County,5.7 +01039,Alabama,Covington County,6.7 +01041,Alabama,Crenshaw County,5.7 +01043,Alabama,Cullman County,4.8 +01045,Alabama,Dale County,5.6 +01047,Alabama,Dallas County,9.5 +01049,Alabama,DeKalb County,5.7 +01051,Alabama,Elmore County,4.7 +01053,Alabama,Escambia County,6.3 +01055,Alabama,Etowah County,5.7 +01057,Alabama,Fayette County,6.6 +01059,Alabama,Franklin County,5.5 +01061,Alabama,Geneva County,5.4 +01063,Alabama,Greene County,9.3 +01065,Alabama,Hale County,7.6 +01067,Alabama,Henry County,6.3 +01069,Alabama,Houston County,5.6 +01071,Alabama,Jackson County,5.9 +01073,Alabama,Jefferson County,5.5 +01075,Alabama,Lamar County,5.2 +01077,Alabama,Lauderdale County,6 +01079,Alabama,Lawrence County,6.4 +01081,Alabama,Lee County,4.9 +01083,Alabama,Limestone County,5 +01085,Alabama,Lowndes County,10.3 +01087,Alabama,Macon County,7.2 +01089,Alabama,Madison County,4.9 +01091,Alabama,Marengo County,6.9 +01093,Alabama,Marion County,6.1 +01095,Alabama,Marshall County,5.1 +01097,Alabama,Mobile County,6.5 +01099,Alabama,Monroe County,8.6 +01101,Alabama,Montgomery County,5.6 +01103,Alabama,Morgan County,5.2 +01105,Alabama,Perry County,10.9 +01107,Alabama,Pickens County,6.7 +01109,Alabama,Pike County,6.4 +01111,Alabama,Randolph County,5.7 +01113,Alabama,Russell County,5.3 +01115,Alabama,St. Clair County,5 +01117,Alabama,Shelby County,4.2 +01119,Alabama,Sumter County,7.3 +01121,Alabama,Talladega County,6.4 +01123,Alabama,Tallapoosa County,5.1 +01125,Alabama,Tuscaloosa County,5.5 +01127,Alabama,Walker County,7.2 +01129,Alabama,Washington County,8.3 +01131,Alabama,Wilcox County,13.9 +01133,Alabama,Winston County,7 +02013,Alaska,Aleutians East Borough,1.9 +02016,Alaska,Aleutians West Census Area,2.2 +02020,Alaska,Anchorage Municipality,5 +02050,Alaska,Bethel Census Area,14.1 +02060,Alaska,Bristol Bay Borough,5.6 +02068,Alaska,Denali Borough,3.2 +02070,Alaska,Dillingham Census Area,8.1 +02090,Alaska,Fairbanks North Star Borough,4.9 +02100,Alaska,Haines Borough,5.9 +02105,Alaska,Hoonah-Angoon Census Area,7.3 +02110,Alaska,Juneau City and Borough,3.6 +02122,Alaska,Kenai Peninsula Borough,6.9 +02130,Alaska,Ketchikan Gateway Borough,4.4 +02150,Alaska,Kodiak Island Borough,4.8 +02158,Alaska,Kusilvak Census Area,21.7 +02164,Alaska,Lake and Peninsula Borough,9.2 +02170,Alaska,Matanuska-Susitna Borough,7.4 +02180,Alaska,Nome Census Area,13.6 +02185,Alaska,North Slope Borough,6.9 +02188,Alaska,Northwest Arctic Borough,16.5 +02195,Alaska,Petersburg Census Area,5.7 +02198,Alaska,Prince of Wales-Hyder Census Area,9.4 +02220,Alaska,Sitka City and Borough,3 +02230,Alaska,Skagway Municipality,3 +02240,Alaska,Southeast Fairbanks Census Area,8.7 +02261,Alaska,Valdez-Cordova Census Area,5.4 +02275,Alaska,Wrangell City and Borough,5.4 +02282,Alaska,Yakutat City and Borough,5.8 +02290,Alaska,Yukon-Koyukuk Census Area,16.4 +04001,Arizona,Apache County,11.8 +04003,Arizona,Cochise County,6.5 +04005,Arizona,Coconino County,6.4 +04007,Arizona,Gila County,7.6 +04009,Arizona,Graham County,7.3 +04011,Arizona,Greenlee County,7.7 +04012,Arizona,La Paz County,6.6 +04013,Arizona,Maricopa County,4.9 +04015,Arizona,Mohave County,7 +04017,Arizona,Navajo County,8.5 +04019,Arizona,Pima County,5.4 +04021,Arizona,Pinal County,5.9 +04023,Arizona,Santa Cruz County,13 +04025,Arizona,Yavapai County,5 +04027,Arizona,Yuma County,24.4 +05001,Arkansas,Arkansas County,3.2 +05003,Arkansas,Ashley County,6.3 +05005,Arkansas,Baxter County,4.1 +05007,Arkansas,Benton County,2.7 +05009,Arkansas,Boone County,3.3 +05011,Arkansas,Bradley County,5.9 +05013,Arkansas,Calhoun County,5.1 +05015,Arkansas,Carroll County,2.8 +05017,Arkansas,Chicot County,6 +05019,Arkansas,Clark County,4.5 +05021,Arkansas,Clay County,5 +05023,Arkansas,Cleburne County,5.7 +05025,Arkansas,Cleveland County,4.4 +05027,Arkansas,Columbia County,5.7 +05029,Arkansas,Conway County,5.9 +05031,Arkansas,Craighead County,3.1 +05033,Arkansas,Crawford County,3.7 +05035,Arkansas,Crittenden County,4.4 +05037,Arkansas,Cross County,3.9 +05039,Arkansas,Dallas County,5 +05041,Arkansas,Desha County,5.1 +05043,Arkansas,Drew County,5.7 +05045,Arkansas,Faulkner County,3.7 +05047,Arkansas,Franklin County,3.9 +05049,Arkansas,Fulton County,3.9 +05051,Arkansas,Garland County,4 +05053,Arkansas,Grant County,3.2 +05055,Arkansas,Greene County,4 +05057,Arkansas,Hempstead County,3.7 +05059,Arkansas,Hot Spring County,3.6 +05061,Arkansas,Howard County,3.4 +05063,Arkansas,Independence County,5 +05065,Arkansas,Izard County,5.3 +05067,Arkansas,Jackson County,5.9 +05069,Arkansas,Jefferson County,5.9 +05071,Arkansas,Johnson County,4.8 +05073,Arkansas,Lafayette County,6.2 +05075,Arkansas,Lawrence County,4.5 +05077,Arkansas,Lee County,4.5 +05079,Arkansas,Lincoln County,4.9 +05081,Arkansas,Little River County,5.1 +05083,Arkansas,Logan County,4.4 +05085,Arkansas,Lonoke County,3.2 +05087,Arkansas,Madison County,3 +05089,Arkansas,Marion County,3.8 +05091,Arkansas,Miller County,4.3 +05093,Arkansas,Mississippi County,7.1 +05095,Arkansas,Monroe County,4.5 +05097,Arkansas,Montgomery County,4.6 +05099,Arkansas,Nevada County,3.7 +05101,Arkansas,Newton County,3.6 +05103,Arkansas,Ouachita County,5.6 +05105,Arkansas,Perry County,4.4 +05107,Arkansas,Phillips County,5.5 +05109,Arkansas,Pike County,3.8 +05111,Arkansas,Poinsett County,4.1 +05113,Arkansas,Polk County,4.7 +05115,Arkansas,Pope County,4.7 +05117,Arkansas,Prairie County,3.7 +05119,Arkansas,Pulaski County,3.5 +05121,Arkansas,Randolph County,4.6 +05123,Arkansas,St. Francis County,5 +05125,Arkansas,Saline County,3 +05127,Arkansas,Scott County,3.7 +05129,Arkansas,Searcy County,4.3 +05131,Arkansas,Sebastian County,3.5 +05133,Arkansas,Sevier County,4.8 +05135,Arkansas,Sharp County,5.2 +05137,Arkansas,Stone County,4.8 +05139,Arkansas,Union County,5.6 +05141,Arkansas,Van Buren County,6.4 +05143,Arkansas,Washington County,2.6 +05145,Arkansas,White County,4.8 +05147,Arkansas,Woodruff County,5.3 +05149,Arkansas,Yell County,4.4 +06001,California,Alameda County,4.6 +06003,California,Alpine County,7.3 +06005,California,Amador County,5.7 +06007,California,Butte County,6.6 +06009,California,Calaveras County,5.7 +06011,California,Colusa County,10 +06013,California,Contra Costa County,4.7 +06015,California,Del Norte County,7.3 +06017,California,El Dorado County,5.1 +06019,California,Fresno County,8.7 +06021,California,Glenn County,7.9 +06023,California,Humboldt County,5.1 +06025,California,Imperial County,26.4 +06027,California,Inyo County,4.9 +06029,California,Kern County,9.7 +06031,California,Kings County,8.9 +06033,California,Lake County,6.3 +06035,California,Lassen County,6.1 +06037,California,Los Angeles County,5.3 +06039,California,Madera County,8.2 +06041,California,Marin County,3.5 +06043,California,Mariposa County,5.4 +06045,California,Mendocino County,5 +06047,California,Merced County,9.2 +06049,California,Modoc County,6.6 +06051,California,Mono County,5.2 +06053,California,Monterey County,5.6 +06055,California,Napa County,4 +06057,California,Nevada County,4.8 +06059,California,Orange County,4.3 +06061,California,Placer County,4.7 +06063,California,Plumas County,7.1 +06065,California,Riverside County,6.9 +06067,California,Sacramento County,5.7 +06069,California,San Benito County,6.2 +06071,California,San Bernardino County,6.2 +06073,California,San Diego County,5 +06075,California,San Francisco County,3.5 +06077,California,San Joaquin County,7.7 +06079,California,San Luis Obispo County,4.5 +06081,California,San Mateo County,3.2 +06083,California,Santa Barbara County,4.8 +06085,California,Santa Clara County,4 +06087,California,Santa Cruz County,5.7 +06089,California,Shasta County,6.8 +06091,California,Sierra County,6.6 +06093,California,Siskiyou County,7.1 +06095,California,Solano County,5.7 +06097,California,Sonoma County,4.1 +06099,California,Stanislaus County,7.9 +06101,California,Sutter County,7.9 +06103,California,Tehama County,7.4 +06105,California,Trinity County,5.9 +06107,California,Tulare County,10.6 +06109,California,Tuolumne County,6.1 +06111,California,Ventura County,5.7 +06113,California,Yolo County,5.5 +06115,California,Yuba County,8 +08001,Colorado,Adams County,3.6 +08003,Colorado,Alamosa County,4.3 +08005,Colorado,Arapahoe County,3.2 +08007,Colorado,Archuleta County,3.1 +08009,Colorado,Baca County,1.8 +08011,Colorado,Bent County,3.1 +08013,Colorado,Boulder County,2.9 +08014,Colorado,Broomfield County,3.1 +08015,Colorado,Chaffee County,2.4 +08017,Colorado,Cheyenne County,2.7 +08019,Colorado,Clear Creek County,3.3 +08021,Colorado,Conejos County,4.9 +08023,Colorado,Costilla County,4.8 +08025,Colorado,Crowley County,3.6 +08027,Colorado,Custer County,3 +08029,Colorado,Delta County,4.7 +08031,Colorado,Denver County,3.2 +08033,Colorado,Dolores County,4.1 +08035,Colorado,Douglas County,2.8 +08037,Colorado,Eagle County,2.5 +08039,Colorado,Elbert County,2.6 +08041,Colorado,El Paso County,3.9 +08043,Colorado,Fremont County,5.1 +08045,Colorado,Garfield County,3.3 +08047,Colorado,Gilpin County,2.6 +08049,Colorado,Grand County,2.3 +08051,Colorado,Gunnison County,2.1 +08053,Colorado,Hinsdale County,2 +08055,Colorado,Huerfano County,6.2 +08057,Colorado,Jackson County,2.3 +08059,Colorado,Jefferson County,3.1 +08061,Colorado,Kiowa County,2.1 +08063,Colorado,Kit Carson County,1.8 +08065,Colorado,Lake County,2.6 +08067,Colorado,La Plata County,2.9 +08069,Colorado,Larimer County,2.9 +08071,Colorado,Las Animas County,5 +08073,Colorado,Lincoln County,2.5 +08075,Colorado,Logan County,3.3 +08077,Colorado,Mesa County,5.3 +08079,Colorado,Mineral County,1.7 +08081,Colorado,Moffat County,3.6 +08083,Colorado,Montezuma County,4.5 +08085,Colorado,Montrose County,3.9 +08087,Colorado,Morgan County,3.5 +08089,Colorado,Otero County,4.6 +08091,Colorado,Ouray County,3.2 +08093,Colorado,Park County,2.7 +08095,Colorado,Phillips County,2.3 +08097,Colorado,Pitkin County,2.7 +08099,Colorado,Prowers County,3.5 +08101,Colorado,Pueblo County,4.9 +08103,Colorado,Rio Blanco County,5.1 +08105,Colorado,Rio Grande County,5.1 +08107,Colorado,Routt County,2.6 +08109,Colorado,Saguache County,5.9 +08111,Colorado,San Juan County,2.4 +08113,Colorado,San Miguel County,2.4 +08115,Colorado,Sedgwick County,2.2 +08117,Colorado,Summit County,2.1 +08119,Colorado,Teller County,3.7 +08121,Colorado,Washington County,2.1 +08123,Colorado,Weld County,3.5 +08125,Colorado,Yuma County,2.2 +09001,Connecticut,Fairfield County,5.2 +09003,Connecticut,Hartford County,6 +09005,Connecticut,Litchfield County,4.8 +09007,Connecticut,Middlesex County,4.8 +09009,Connecticut,New Haven County,6.1 +09011,Connecticut,New London County,5.4 +09013,Connecticut,Tolland County,4.8 +09015,Connecticut,Windham County,5.8 +10001,Delaware,Kent County,5.1 +10003,Delaware,New Castle County,4.5 +10005,Delaware,Sussex County,3.7 +11001,District of Columbia,District of Columbia,6.5 +12001,Florida,Alachua County,4.4 +12003,Florida,Baker County,4.7 +12005,Florida,Bay County,4.6 +12007,Florida,Bradford County,4.2 +12009,Florida,Brevard County,5.2 +12011,Florida,Broward County,4.6 +12013,Florida,Calhoun County,5.9 +12015,Florida,Charlotte County,5.3 +12017,Florida,Citrus County,6.8 +12019,Florida,Clay County,4.4 +12021,Florida,Collier County,5.3 +12023,Florida,Columbia County,4.8 +12027,Florida,DeSoto County,6.1 +12029,Florida,Dixie County,5.3 +12031,Florida,Duval County,5.1 +12033,Florida,Escambia County,5 +12035,Florida,Flagler County,5.4 +12037,Florida,Franklin County,4.1 +12039,Florida,Gadsden County,6.3 +12041,Florida,Gilchrist County,5.1 +12043,Florida,Glades County,6.9 +12045,Florida,Gulf County,4.3 +12047,Florida,Hamilton County,4.4 +12049,Florida,Hardee County,7.2 +12051,Florida,Hendry County,11.5 +12053,Florida,Hernando County,6 +12055,Florida,Highlands County,6.9 +12057,Florida,Hillsborough County,4.5 +12059,Florida,Holmes County,5.6 +12061,Florida,Indian River County,6.6 +12063,Florida,Jackson County,5.4 +12065,Florida,Jefferson County,5.3 +12067,Florida,Lafayette County,3.8 +12069,Florida,Lake County,4.7 +12071,Florida,Lee County,4.7 +12073,Florida,Leon County,4.7 +12075,Florida,Levy County,5.2 +12077,Florida,Liberty County,5.4 +12079,Florida,Madison County,5.3 +12081,Florida,Manatee County,4.6 +12083,Florida,Marion County,5.9 +12085,Florida,Martin County,5 +12086,Florida,Miami-Dade County,5.6 +12087,Florida,Monroe County,3.1 +12089,Florida,Nassau County,4.6 +12091,Florida,Okaloosa County,3.9 +12093,Florida,Okeechobee County,5.8 +12095,Florida,Orange County,4.3 +12097,Florida,Osceola County,5 +12099,Florida,Palm Beach County,5.1 +12101,Florida,Pasco County,5.1 +12103,Florida,Pinellas County,4.3 +12105,Florida,Polk County,5.8 +12107,Florida,Putnam County,6 +12109,Florida,St. Johns County,3.6 +12111,Florida,St. Lucie County,6 +12113,Florida,Santa Rosa County,4.6 +12115,Florida,Sarasota County,4.5 +12117,Florida,Seminole County,4.2 +12119,Florida,Sumter County,6.7 +12121,Florida,Suwannee County,5.1 +12123,Florida,Taylor County,5.5 +12125,Florida,Union County,4.6 +12127,Florida,Volusia County,5 +12129,Florida,Wakulla County,4.1 +12131,Florida,Walton County,4.1 +12133,Florida,Washington County,5 +13001,Georgia,Appling County,6.9 +13003,Georgia,Atkinson County,4.6 +13005,Georgia,Bacon County,5.2 +13007,Georgia,Baker County,8.3 +13009,Georgia,Baldwin County,7.2 +13011,Georgia,Banks County,4.8 +13013,Georgia,Barrow County,4.6 +13015,Georgia,Bartow County,5 +13017,Georgia,Ben Hill County,8.1 +13019,Georgia,Berrien County,6.1 +13021,Georgia,Bibb County,5.7 +13023,Georgia,Bleckley County,7.6 +13025,Georgia,Brantley County,6.6 +13027,Georgia,Brooks County,4.8 +13029,Georgia,Bryan County,4.8 +13031,Georgia,Bulloch County,5.6 +13033,Georgia,Burke County,7.5 +13035,Georgia,Butts County,5.2 +13037,Georgia,Calhoun County,6 +13039,Georgia,Camden County,5.7 +13043,Georgia,Candler County,4.7 +13045,Georgia,Carroll County,5.9 +13047,Georgia,Catoosa County,4.8 +13049,Georgia,Charlton County,5.8 +13051,Georgia,Chatham County,5 +13053,Georgia,Chattahoochee County,8.6 +13055,Georgia,Chattooga County,6.1 +13057,Georgia,Cherokee County,4.1 +13059,Georgia,Clarke County,5.4 +13061,Georgia,Clay County,9.6 +13063,Georgia,Clayton County,6.4 +13065,Georgia,Clinch County,6 +13067,Georgia,Cobb County,4.4 +13069,Georgia,Coffee County,5.6 +13071,Georgia,Colquitt County,5.3 +13073,Georgia,Columbia County,4.8 +13075,Georgia,Cook County,5.2 +13077,Georgia,Coweta County,4.9 +13079,Georgia,Crawford County,5.5 +13081,Georgia,Crisp County,5.9 +13083,Georgia,Dade County,5.1 +13085,Georgia,Dawson County,4.5 +13087,Georgia,Decatur County,6.5 +13089,Georgia,DeKalb County,5.2 +13091,Georgia,Dodge County,7 +13093,Georgia,Dooly County,5.5 +13095,Georgia,Dougherty County,6.8 +13097,Georgia,Douglas County,5.3 +13099,Georgia,Early County,6.7 +13101,Georgia,Echols County,4.5 +13103,Georgia,Effingham County,4.7 +13105,Georgia,Elbert County,6.2 +13107,Georgia,Emanuel County,7.4 +13109,Georgia,Evans County,4.8 +13111,Georgia,Fannin County,5 +13113,Georgia,Fayette County,4.7 +13115,Georgia,Floyd County,5.9 +13117,Georgia,Forsyth County,4.1 +13119,Georgia,Franklin County,5.5 +13121,Georgia,Fulton County,5.2 +13123,Georgia,Gilmer County,5.4 +13125,Georgia,Glascock County,6.3 +13127,Georgia,Glynn County,5 +13129,Georgia,Gordon County,5.3 +13131,Georgia,Grady County,5.4 +13133,Georgia,Greene County,5.9 +13135,Georgia,Gwinnett County,4.6 +13137,Georgia,Habersham County,5 +13139,Georgia,Hall County,4.4 +13141,Georgia,Hancock County,8.9 +13143,Georgia,Haralson County,5.6 +13145,Georgia,Harris County,4.7 +13147,Georgia,Hart County,5.3 +13149,Georgia,Heard County,5.8 +13151,Georgia,Henry County,5.4 +13153,Georgia,Houston County,5.3 +13155,Georgia,Irwin County,7.3 +13157,Georgia,Jackson County,4.1 +13159,Georgia,Jasper County,4.7 +13161,Georgia,Jeff Davis County,6.3 +13163,Georgia,Jefferson County,7 +13165,Georgia,Jenkins County,7.1 +13167,Georgia,Johnson County,6 +13169,Georgia,Jones County,4.6 +13171,Georgia,Lamar County,6.4 +13173,Georgia,Lanier County,5.3 +13175,Georgia,Laurens County,6.4 +13177,Georgia,Lee County,4.8 +13179,Georgia,Liberty County,5.7 +13181,Georgia,Lincoln County,5.7 +13183,Georgia,Long County,5.6 +13185,Georgia,Lowndes County,5.2 +13187,Georgia,Lumpkin County,5 +13189,Georgia,McDuffie County,7.2 +13191,Georgia,McIntosh County,5.5 +13193,Georgia,Macon County,7.6 +13195,Georgia,Madison County,4.7 +13197,Georgia,Marion County,6.9 +13199,Georgia,Meriwether County,6.8 +13201,Georgia,Miller County,5.5 +13205,Georgia,Mitchell County,6.3 +13207,Georgia,Monroe County,4.9 +13209,Georgia,Montgomery County,7.1 +13211,Georgia,Morgan County,4.8 +13213,Georgia,Murray County,6.6 +13215,Georgia,Muscogee County,6.6 +13217,Georgia,Newton County,5.8 +13219,Georgia,Oconee County,4 +13221,Georgia,Oglethorpe County,4.5 +13223,Georgia,Paulding County,4.5 +13225,Georgia,Peach County,6.4 +13227,Georgia,Pickens County,4.8 +13229,Georgia,Pierce County,5.3 +13231,Georgia,Pike County,5.1 +13233,Georgia,Polk County,5.7 +13235,Georgia,Pulaski County,5.6 +13237,Georgia,Putnam County,6.8 +13239,Georgia,Quitman County,7.7 +13241,Georgia,Rabun County,5.4 +13243,Georgia,Randolph County,8.6 +13245,Georgia,Richmond County,6.5 +13247,Georgia,Rockdale County,5.5 +13249,Georgia,Schley County,6.4 +13251,Georgia,Screven County,6.9 +13253,Georgia,Seminole County,7.5 +13255,Georgia,Spalding County,6.5 +13257,Georgia,Stephens County,5.9 +13259,Georgia,Stewart County,5.8 +13261,Georgia,Sumter County,7.4 +13263,Georgia,Talbot County,6.6 +13265,Georgia,Taliaferro County,6.6 +13267,Georgia,Tattnall County,5.4 +13269,Georgia,Taylor County,7 +13271,Georgia,Telfair County,7.7 +13273,Georgia,Terrell County,6 +13275,Georgia,Thomas County,6.3 +13277,Georgia,Tift County,5.6 +13279,Georgia,Toombs County,7.3 +13281,Georgia,Towns County,6.3 +13283,Georgia,Treutlen County,7.3 +13285,Georgia,Troup County,5 +13287,Georgia,Turner County,6.4 +13289,Georgia,Twiggs County,8.2 +13291,Georgia,Union County,4.5 +13293,Georgia,Upson County,6.2 +13295,Georgia,Walker County,5.3 +13297,Georgia,Walton County,4.7 +13299,Georgia,Ware County,5.4 +13301,Georgia,Warren County,7 +13303,Georgia,Washington County,6.3 +13305,Georgia,Wayne County,6.6 +13307,Georgia,Webster County,8.6 +13309,Georgia,Wheeler County,8.5 +13311,Georgia,White County,4.4 +13313,Georgia,Whitfield County,5.7 +13315,Georgia,Wilcox County,6.8 +13317,Georgia,Wilkes County,6.7 +13319,Georgia,Wilkinson County,6 +13321,Georgia,Worth County,5.8 +15001,Hawaii,Hawaii County,4.1 +15003,Hawaii,Honolulu County,3 +15007,Hawaii,Kauai County,3.4 +15009,Hawaii,Maui County,3.4 +16001,Idaho,Ada County,3.5 +16003,Idaho,Adams County,4.9 +16005,Idaho,Bannock County,3.6 +16007,Idaho,Bear Lake County,3.4 +16009,Idaho,Benewah County,4.6 +16011,Idaho,Bingham County,3.7 +16013,Idaho,Blaine County,2.8 +16015,Idaho,Boise County,4.9 +16017,Idaho,Bonner County,4.3 +16019,Idaho,Bonneville County,3.2 +16021,Idaho,Boundary County,4.1 +16023,Idaho,Butte County,3.7 +16025,Idaho,Camas County,2.6 +16027,Idaho,Canyon County,4.4 +16029,Idaho,Caribou County,3.2 +16031,Idaho,Cassia County,2.9 +16033,Idaho,Clark County,3.3 +16035,Idaho,Clearwater County,5.9 +16037,Idaho,Custer County,4.1 +16039,Idaho,Elmore County,4.2 +16041,Idaho,Franklin County,2.9 +16043,Idaho,Fremont County,3.2 +16045,Idaho,Gem County,4.3 +16047,Idaho,Gooding County,3 +16049,Idaho,Idaho County,4.8 +16051,Idaho,Jefferson County,3.1 +16053,Idaho,Jerome County,2.8 +16055,Idaho,Kootenai County,4 +16057,Idaho,Latah County,3.2 +16059,Idaho,Lemhi County,4.8 +16061,Idaho,Lewis County,6.9 +16063,Idaho,Lincoln County,3.6 +16065,Idaho,Madison County,2.9 +16067,Idaho,Minidoka County,3.1 +16069,Idaho,Nez Perce County,3.1 +16071,Idaho,Oneida County,3.1 +16073,Idaho,Owyhee County,3.7 +16075,Idaho,Payette County,4.1 +16077,Idaho,Power County,4.2 +16079,Idaho,Shoshone County,5.9 +16081,Idaho,Teton County,2 +16083,Idaho,Twin Falls County,3.4 +16085,Idaho,Valley County,4.2 +16087,Idaho,Washington County,5.3 +17001,Illinois,Adams County,4.7 +17003,Illinois,Alexander County,9.5 +17005,Illinois,Bond County,4.7 +17007,Illinois,Boone County,5.8 +17009,Illinois,Brown County,3.2 +17011,Illinois,Bureau County,5.8 +17013,Illinois,Calhoun County,5.7 +17015,Illinois,Carroll County,4.8 +17017,Illinois,Cass County,4.8 +17019,Illinois,Champaign County,5 +17021,Illinois,Christian County,5.8 +17023,Illinois,Clark County,5.5 +17025,Illinois,Clay County,6.4 +17027,Illinois,Clinton County,4.1 +17029,Illinois,Coles County,6 +17031,Illinois,Cook County,5.7 +17033,Illinois,Crawford County,5.6 +17035,Illinois,Cumberland County,5 +17037,Illinois,DeKalb County,5 +17039,Illinois,De Witt County,5.6 +17041,Illinois,Douglas County,4.6 +17043,Illinois,DuPage County,4.4 +17045,Illinois,Edgar County,6.1 +17047,Illinois,Edwards County,5.2 +17049,Illinois,Effingham County,4.5 +17051,Illinois,Fayette County,6 +17053,Illinois,Ford County,5.3 +17055,Illinois,Franklin County,8 +17057,Illinois,Fulton County,6.9 +17059,Illinois,Gallatin County,7.6 +17061,Illinois,Greene County,5.3 +17063,Illinois,Grundy County,5.9 +17065,Illinois,Hamilton County,6.1 +17067,Illinois,Hancock County,6.9 +17069,Illinois,Hardin County,8.1 +17071,Illinois,Henderson County,5.8 +17073,Illinois,Henry County,5.4 +17075,Illinois,Iroquois County,4.9 +17077,Illinois,Jackson County,5.5 +17079,Illinois,Jasper County,6.2 +17081,Illinois,Jefferson County,6.5 +17083,Illinois,Jersey County,5.5 +17085,Illinois,Jo Daviess County,4.4 +17087,Illinois,Johnson County,8.3 +17089,Illinois,Kane County,5.1 +17091,Illinois,Kankakee County,6.1 +17093,Illinois,Kendall County,4.7 +17095,Illinois,Knox County,5.6 +17097,Illinois,Lake County,4.8 +17099,Illinois,LaSalle County,6.2 +17101,Illinois,Lawrence County,7.6 +17103,Illinois,Lee County,4.8 +17105,Illinois,Livingston County,5.2 +17107,Illinois,Logan County,5.1 +17109,Illinois,McDonough County,6.8 +17111,Illinois,McHenry County,4.6 +17113,Illinois,McLean County,5.1 +17115,Illinois,Macon County,6.6 +17117,Illinois,Macoupin County,5.5 +17119,Illinois,Madison County,6 +17121,Illinois,Marion County,6.2 +17123,Illinois,Marshall County,5.9 +17125,Illinois,Mason County,7.1 +17127,Illinois,Massac County,7.4 +17129,Illinois,Menard County,3.9 +17131,Illinois,Mercer County,5.3 +17133,Illinois,Monroe County,3.9 +17135,Illinois,Montgomery County,6.3 +17137,Illinois,Morgan County,4.6 +17139,Illinois,Moultrie County,4.5 +17141,Illinois,Ogle County,5.3 +17143,Illinois,Peoria County,6.6 +17145,Illinois,Perry County,6.9 +17147,Illinois,Piatt County,4.8 +17149,Illinois,Pike County,4.4 +17151,Illinois,Pope County,6.8 +17153,Illinois,Pulaski County,8.6 +17155,Illinois,Putnam County,5.2 +17157,Illinois,Randolph County,4.8 +17159,Illinois,Richland County,5.8 +17161,Illinois,Rock Island County,6 +17163,Illinois,St. Clair County,6.2 +17165,Illinois,Saline County,8.1 +17167,Illinois,Sangamon County,4.6 +17169,Illinois,Schuyler County,4.9 +17171,Illinois,Scott County,4.3 +17173,Illinois,Shelby County,5.6 +17175,Illinois,Stark County,6.7 +17177,Illinois,Stephenson County,5.6 +17179,Illinois,Tazewell County,6 +17181,Illinois,Union County,7.1 +17183,Illinois,Vermilion County,7.1 +17185,Illinois,Wabash County,6.5 +17187,Illinois,Warren County,5.2 +17189,Illinois,Washington County,3.8 +17191,Illinois,Wayne County,8.4 +17193,Illinois,White County,6.2 +17195,Illinois,Whiteside County,5.8 +17197,Illinois,Will County,5.4 +17199,Illinois,Williamson County,6.2 +17201,Illinois,Winnebago County,6.4 +17203,Illinois,Woodford County,4.9 +18001,Indiana,Adams County,3.8 +18003,Indiana,Allen County,4.3 +18005,Indiana,Bartholomew County,3.6 +18007,Indiana,Benton County,4.3 +18009,Indiana,Blackford County,5.7 +18011,Indiana,Boone County,3.6 +18013,Indiana,Brown County,3.8 +18015,Indiana,Carroll County,4.4 +18017,Indiana,Cass County,4.7 +18019,Indiana,Clark County,4.4 +18021,Indiana,Clay County,5 +18023,Indiana,Clinton County,4 +18025,Indiana,Crawford County,5.6 +18027,Indiana,Daviess County,3.6 +18029,Indiana,Dearborn County,4.7 +18031,Indiana,Decatur County,3.6 +18033,Indiana,DeKalb County,4.2 +18035,Indiana,Delaware County,5.5 +18037,Indiana,Dubois County,3.3 +18039,Indiana,Elkhart County,4 +18041,Indiana,Fayette County,5.9 +18043,Indiana,Floyd County,4.4 +18045,Indiana,Fountain County,5.9 +18047,Indiana,Franklin County,4.2 +18049,Indiana,Fulton County,4.8 +18051,Indiana,Gibson County,3.8 +18053,Indiana,Grant County,5.1 +18055,Indiana,Greene County,6.6 +18057,Indiana,Hamilton County,3.4 +18059,Indiana,Hancock County,4 +18061,Indiana,Harrison County,4.4 +18063,Indiana,Hendricks County,3.6 +18065,Indiana,Henry County,4.7 +18067,Indiana,Howard County,4.8 +18069,Indiana,Huntington County,4.2 +18071,Indiana,Jackson County,4 +18073,Indiana,Jasper County,5.1 +18075,Indiana,Jay County,4.7 +18077,Indiana,Jefferson County,5 +18079,Indiana,Jennings County,4.8 +18081,Indiana,Johnson County,3.8 +18083,Indiana,Knox County,4.5 +18085,Indiana,Kosciusko County,4 +18087,Indiana,LaGrange County,3.7 +18089,Indiana,Lake County,6.6 +18091,Indiana,LaPorte County,6 +18093,Indiana,Lawrence County,5.6 +18095,Indiana,Madison County,4.9 +18097,Indiana,Marion County,4.7 +18099,Indiana,Marshall County,3.9 +18101,Indiana,Martin County,4.1 +18103,Indiana,Miami County,4.8 +18105,Indiana,Monroe County,5.1 +18107,Indiana,Montgomery County,4.1 +18109,Indiana,Morgan County,4.2 +18111,Indiana,Newton County,5.3 +18113,Indiana,Noble County,4.2 +18115,Indiana,Ohio County,4.9 +18117,Indiana,Orange County,5.2 +18119,Indiana,Owen County,5.4 +18121,Indiana,Parke County,5.1 +18123,Indiana,Perry County,4.9 +18125,Indiana,Pike County,4.6 +18127,Indiana,Porter County,5.3 +18129,Indiana,Posey County,4.3 +18131,Indiana,Pulaski County,4.6 +18133,Indiana,Putnam County,4.5 +18135,Indiana,Randolph County,4.5 +18137,Indiana,Ripley County,4.5 +18139,Indiana,Rush County,4 +18141,Indiana,St. Joseph County,5 +18143,Indiana,Scott County,4.9 +18145,Indiana,Shelby County,4 +18147,Indiana,Spencer County,4.2 +18149,Indiana,Starke County,5.2 +18151,Indiana,Steuben County,3.8 +18153,Indiana,Sullivan County,6.1 +18155,Indiana,Switzerland County,5.3 +18157,Indiana,Tippecanoe County,4.3 +18159,Indiana,Tipton County,3.8 +18161,Indiana,Union County,4.2 +18163,Indiana,Vanderburgh County,4.4 +18165,Indiana,Vermillion County,6.5 +18167,Indiana,Vigo County,5.7 +18169,Indiana,Wabash County,4.5 +18171,Indiana,Warren County,5 +18173,Indiana,Warrick County,4.4 +18175,Indiana,Washington County,4.6 +18177,Indiana,Wayne County,4.9 +18179,Indiana,Wells County,3.6 +18181,Indiana,White County,3.9 +18183,Indiana,Whitley County,4 +19001,Iowa,Adair County,3.4 +19003,Iowa,Adams County,2.9 +19005,Iowa,Allamakee County,4.9 +19007,Iowa,Appanoose County,5.7 +19009,Iowa,Audubon County,3.7 +19011,Iowa,Benton County,4 +19013,Iowa,Black Hawk County,5.8 +19015,Iowa,Boone County,3.4 +19017,Iowa,Bremer County,4.2 +19019,Iowa,Buchanan County,4.6 +19021,Iowa,Buena Vista County,4.4 +19023,Iowa,Butler County,4.5 +19025,Iowa,Calhoun County,4.7 +19027,Iowa,Carroll County,3.1 +19029,Iowa,Cass County,3 +19031,Iowa,Cedar County,3.8 +19033,Iowa,Cerro Gordo County,4.4 +19035,Iowa,Cherokee County,4.1 +19037,Iowa,Chickasaw County,4.6 +19039,Iowa,Clarke County,3.4 +19041,Iowa,Clay County,4.1 +19043,Iowa,Clayton County,4.2 +19045,Iowa,Clinton County,6.1 +19047,Iowa,Crawford County,5.2 +19049,Iowa,Dallas County,3.2 +19051,Iowa,Davis County,5.3 +19053,Iowa,Decatur County,3.5 +19055,Iowa,Delaware County,3.7 +19057,Iowa,Des Moines County,5.9 +19059,Iowa,Dickinson County,3.5 +19061,Iowa,Dubuque County,4 +19063,Iowa,Emmet County,4.2 +19065,Iowa,Fayette County,5 +19067,Iowa,Floyd County,3.9 +19069,Iowa,Franklin County,3.8 +19071,Iowa,Fremont County,4.1 +19073,Iowa,Greene County,4.3 +19075,Iowa,Grundy County,3.7 +19077,Iowa,Guthrie County,3.6 +19079,Iowa,Hamilton County,4 +19081,Iowa,Hancock County,3 +19083,Iowa,Hardin County,4.2 +19085,Iowa,Harrison County,3.7 +19087,Iowa,Henry County,4.4 +19089,Iowa,Howard County,3.6 +19091,Iowa,Humboldt County,3.2 +19093,Iowa,Ida County,2.8 +19095,Iowa,Iowa County,3.2 +19097,Iowa,Jackson County,4.5 +19099,Iowa,Jasper County,4 +19101,Iowa,Jefferson County,4.6 +19103,Iowa,Johnson County,3.2 +19105,Iowa,Jones County,4.4 +19107,Iowa,Keokuk County,5.1 +19109,Iowa,Kossuth County,3 +19111,Iowa,Lee County,8.1 +19113,Iowa,Linn County,4.3 +19115,Iowa,Louisa County,4.5 +19117,Iowa,Lucas County,3.8 +19119,Iowa,Lyon County,2.3 +19121,Iowa,Madison County,3.7 +19123,Iowa,Mahaska County,4.3 +19125,Iowa,Marion County,3.4 +19127,Iowa,Marshall County,4.9 +19129,Iowa,Mills County,4 +19131,Iowa,Mitchell County,3 +19133,Iowa,Monona County,4.6 +19135,Iowa,Monroe County,5.4 +19137,Iowa,Montgomery County,4.2 +19139,Iowa,Muscatine County,4.4 +19141,Iowa,O'Brien County,3 +19143,Iowa,Osceola County,3.1 +19145,Iowa,Page County,6.4 +19147,Iowa,Palo Alto County,3.9 +19149,Iowa,Plymouth County,2.9 +19151,Iowa,Pocahontas County,3.4 +19153,Iowa,Polk County,4.1 +19155,Iowa,Pottawattamie County,3.8 +19157,Iowa,Poweshiek County,4 +19159,Iowa,Ringgold County,3.7 +19161,Iowa,Sac County,3 +19163,Iowa,Scott County,5.4 +19165,Iowa,Shelby County,3.2 +19167,Iowa,Sioux County,2.4 +19169,Iowa,Story County,2.9 +19171,Iowa,Tama County,4.2 +19173,Iowa,Taylor County,3.9 +19175,Iowa,Union County,4.4 +19177,Iowa,Van Buren County,4.9 +19179,Iowa,Wapello County,7.4 +19181,Iowa,Warren County,3.8 +19183,Iowa,Washington County,3.5 +19185,Iowa,Wayne County,4.6 +19187,Iowa,Webster County,4.7 +19189,Iowa,Winnebago County,4.1 +19191,Iowa,Winneshiek County,3.6 +19193,Iowa,Woodbury County,4.2 +19195,Iowa,Worth County,3.5 +19197,Iowa,Wright County,4.5 +20001,Kansas,Allen County,6.9 +20003,Kansas,Anderson County,4.6 +20005,Kansas,Atchison County,7.4 +20007,Kansas,Barber County,4.4 +20009,Kansas,Barton County,5 +20011,Kansas,Bourbon County,5.7 +20013,Kansas,Brown County,4.2 +20015,Kansas,Butler County,4.6 +20017,Kansas,Chase County,4.6 +20019,Kansas,Chautauqua County,5.9 +20021,Kansas,Cherokee County,5.2 +20023,Kansas,Cheyenne County,3.3 +20025,Kansas,Clark County,3 +20027,Kansas,Clay County,4.8 +20029,Kansas,Cloud County,5.1 +20031,Kansas,Coffey County,8.2 +20033,Kansas,Comanche County,3.2 +20035,Kansas,Cowley County,5.1 +20037,Kansas,Crawford County,5.4 +20039,Kansas,Decatur County,4.7 +20041,Kansas,Dickinson County,4.7 +20043,Kansas,Doniphan County,4.7 +20045,Kansas,Douglas County,4.1 +20047,Kansas,Edwards County,3.3 +20049,Kansas,Elk County,6.8 +20051,Kansas,Ellis County,3.4 +20053,Kansas,Ellsworth County,4.3 +20055,Kansas,Finney County,3.5 +20057,Kansas,Ford County,3.6 +20059,Kansas,Franklin County,4.8 +20061,Kansas,Geary County,6.4 +20063,Kansas,Gove County,3 +20065,Kansas,Graham County,5 +20067,Kansas,Grant County,3.9 +20069,Kansas,Gray County,2.6 +20071,Kansas,Greeley County,2.7 +20073,Kansas,Greenwood County,5.7 +20075,Kansas,Hamilton County,3.2 +20077,Kansas,Harper County,4 +20079,Kansas,Harvey County,6.3 +20081,Kansas,Haskell County,2.8 +20083,Kansas,Hodgeman County,2.7 +20085,Kansas,Jackson County,4 +20087,Kansas,Jefferson County,4.1 +20089,Kansas,Jewell County,4.5 +20091,Kansas,Johnson County,3.7 +20093,Kansas,Kearny County,3.7 +20095,Kansas,Kingman County,4.8 +20097,Kansas,Kiowa County,3.5 +20099,Kansas,Labette County,6.2 +20101,Kansas,Lane County,3.9 +20103,Kansas,Leavenworth County,4.5 +20105,Kansas,Lincoln County,4 +20107,Kansas,Linn County,7 +20109,Kansas,Logan County,3.2 +20111,Kansas,Lyon County,4.3 +20113,Kansas,McPherson County,3.9 +20115,Kansas,Marion County,5.9 +20117,Kansas,Marshall County,3.6 +20119,Kansas,Meade County,2.9 +20121,Kansas,Miami County,4.3 +20123,Kansas,Mitchell County,3.1 +20125,Kansas,Montgomery County,6.9 +20127,Kansas,Morris County,4.3 +20129,Kansas,Morton County,4.6 +20131,Kansas,Nemaha County,3 +20133,Kansas,Neosho County,8.1 +20135,Kansas,Ness County,4.1 +20137,Kansas,Norton County,2.9 +20139,Kansas,Osage County,4.6 +20141,Kansas,Osborne County,4.1 +20143,Kansas,Ottawa County,4.5 +20145,Kansas,Pawnee County,3.6 +20147,Kansas,Phillips County,3.6 +20149,Kansas,Pottawatomie County,4.1 +20151,Kansas,Pratt County,5 +20153,Kansas,Rawlins County,2.6 +20155,Kansas,Reno County,5.2 +20157,Kansas,Republic County,3.2 +20159,Kansas,Rice County,4.8 +20161,Kansas,Riley County,3.7 +20163,Kansas,Rooks County,5.5 +20165,Kansas,Rush County,4.7 +20167,Kansas,Russell County,4.6 +20169,Kansas,Saline County,4 +20171,Kansas,Scott County,2.7 +20173,Kansas,Sedgwick County,5.2 +20175,Kansas,Seward County,4.9 +20177,Kansas,Shawnee County,4.5 +20179,Kansas,Sheridan County,2.9 +20181,Kansas,Sherman County,3.8 +20183,Kansas,Smith County,3.7 +20185,Kansas,Stafford County,5 +20187,Kansas,Stanton County,3.3 +20189,Kansas,Stevens County,4.7 +20191,Kansas,Sumner County,4.9 +20193,Kansas,Thomas County,3.2 +20195,Kansas,Trego County,4.2 +20197,Kansas,Wabaunsee County,3.8 +20199,Kansas,Wallace County,3.3 +20201,Kansas,Washington County,3.9 +20203,Kansas,Wichita County,2.6 +20205,Kansas,Wilson County,6.9 +20207,Kansas,Woodson County,6.9 +20209,Kansas,Wyandotte County,6.1 +21001,Kentucky,Adair County,6.1 +21003,Kentucky,Allen County,3.9 +21005,Kentucky,Anderson County,3.6 +21007,Kentucky,Ballard County,9 +21009,Kentucky,Barren County,4.3 +21011,Kentucky,Bath County,6.5 +21013,Kentucky,Bell County,8.3 +21015,Kentucky,Boone County,3.5 +21017,Kentucky,Bourbon County,4.6 +21019,Kentucky,Boyd County,8.3 +21021,Kentucky,Boyle County,4.5 +21023,Kentucky,Bracken County,5.4 +21025,Kentucky,Breathitt County,8.3 +21027,Kentucky,Breckinridge County,5.7 +21029,Kentucky,Bullitt County,3.8 +21031,Kentucky,Butler County,4.8 +21033,Kentucky,Caldwell County,5 +21035,Kentucky,Calloway County,4.1 +21037,Kentucky,Campbell County,3.5 +21039,Kentucky,Carlisle County,6.8 +21041,Kentucky,Carroll County,5 +21043,Kentucky,Carter County,10.6 +21045,Kentucky,Casey County,4.4 +21047,Kentucky,Christian County,6 +21049,Kentucky,Clark County,4.5 +21051,Kentucky,Clay County,9.7 +21053,Kentucky,Clinton County,6.4 +21055,Kentucky,Crittenden County,5.2 +21057,Kentucky,Cumberland County,4.6 +21059,Kentucky,Daviess County,4 +21061,Kentucky,Edmonson County,5.4 +21063,Kentucky,Elliott County,11.7 +21065,Kentucky,Estill County,5.2 +21067,Kentucky,Fayette County,3.3 +21069,Kentucky,Fleming County,5.5 +21071,Kentucky,Floyd County,10.4 +21073,Kentucky,Franklin County,3.6 +21075,Kentucky,Fulton County,6.6 +21077,Kentucky,Gallatin County,4.4 +21079,Kentucky,Garrard County,4.3 +21081,Kentucky,Grant County,4.2 +21083,Kentucky,Graves County,6.4 +21085,Kentucky,Grayson County,6.2 +21087,Kentucky,Green County,4 +21089,Kentucky,Greenup County,8.8 +21091,Kentucky,Hancock County,4.7 +21093,Kentucky,Hardin County,4.1 +21095,Kentucky,Harlan County,11.6 +21097,Kentucky,Harrison County,4.4 +21099,Kentucky,Hart County,4.4 +21101,Kentucky,Henderson County,4.5 +21103,Kentucky,Henry County,3.9 +21105,Kentucky,Hickman County,5.1 +21107,Kentucky,Hopkins County,5.5 +21109,Kentucky,Jackson County,6.9 +21111,Kentucky,Jefferson County,4.2 +21113,Kentucky,Jessamine County,3.6 +21115,Kentucky,Johnson County,9.2 +21117,Kentucky,Kenton County,3.8 +21119,Kentucky,Knott County,10.5 +21121,Kentucky,Knox County,7.5 +21123,Kentucky,Larue County,3.9 +21125,Kentucky,Laurel County,5.8 +21127,Kentucky,Lawrence County,10.6 +21129,Kentucky,Lee County,8.3 +21131,Kentucky,Leslie County,13.2 +21133,Kentucky,Letcher County,11.8 +21135,Kentucky,Lewis County,8.4 +21137,Kentucky,Lincoln County,5.6 +21139,Kentucky,Livingston County,6.7 +21141,Kentucky,Logan County,4.2 +21143,Kentucky,Lyon County,5.6 +21145,Kentucky,McCracken County,5.7 +21147,Kentucky,McCreary County,7.3 +21149,Kentucky,McLean County,4.5 +21151,Kentucky,Madison County,3.8 +21153,Kentucky,Magoffin County,16.3 +21155,Kentucky,Marion County,4.3 +21157,Kentucky,Marshall County,5.5 +21159,Kentucky,Martin County,9 +21161,Kentucky,Mason County,6 +21163,Kentucky,Meade County,4.7 +21165,Kentucky,Menifee County,7.1 +21167,Kentucky,Mercer County,4.4 +21169,Kentucky,Metcalfe County,3.8 +21171,Kentucky,Monroe County,3.6 +21173,Kentucky,Montgomery County,6 +21175,Kentucky,Morgan County,6.8 +21177,Kentucky,Muhlenberg County,6.7 +21179,Kentucky,Nelson County,4.3 +21181,Kentucky,Nicholas County,4.9 +21183,Kentucky,Ohio County,6.3 +21185,Kentucky,Oldham County,3.1 +21187,Kentucky,Owen County,3.8 +21189,Kentucky,Owsley County,8.7 +21191,Kentucky,Pendleton County,4.3 +21193,Kentucky,Perry County,10.4 +21195,Kentucky,Pike County,10.3 +21197,Kentucky,Powell County,6.9 +21199,Kentucky,Pulaski County,5 +21201,Kentucky,Robertson County,6.1 +21203,Kentucky,Rockcastle County,5.3 +21205,Kentucky,Rowan County,5.3 +21207,Kentucky,Russell County,7.6 +21209,Kentucky,Scott County,3.6 +21211,Kentucky,Shelby County,3.3 +21213,Kentucky,Simpson County,4.2 +21215,Kentucky,Spencer County,3.5 +21217,Kentucky,Taylor County,4.8 +21219,Kentucky,Todd County,3.9 +21221,Kentucky,Trigg County,5 +21223,Kentucky,Trimble County,5.4 +21225,Kentucky,Union County,6.4 +21227,Kentucky,Warren County,3.5 +21229,Kentucky,Washington County,4 +21231,Kentucky,Wayne County,6.8 +21233,Kentucky,Webster County,5.5 +21235,Kentucky,Whitley County,6.4 +21237,Kentucky,Wolfe County,9.5 +21239,Kentucky,Woodford County,3 +22001,Louisiana,Acadia Parish,7.9 +22003,Louisiana,Allen Parish,7.5 +22005,Louisiana,Ascension Parish,5.3 +22007,Louisiana,Assumption Parish,9 +22009,Louisiana,Avoyelles Parish,7.8 +22011,Louisiana,Beauregard Parish,6.7 +22013,Louisiana,Bienville Parish,8 +22015,Louisiana,Bossier Parish,5.9 +22017,Louisiana,Caddo Parish,7.4 +22019,Louisiana,Calcasieu Parish,5.5 +22021,Louisiana,Caldwell Parish,8.4 +22023,Louisiana,Cameron Parish,4.8 +22025,Louisiana,Catahoula Parish,9.6 +22027,Louisiana,Claiborne Parish,7.5 +22029,Louisiana,Concordia Parish,9.2 +22031,Louisiana,De Soto Parish,8 +22033,Louisiana,East Baton Rouge Parish,5.7 +22035,Louisiana,East Carroll Parish,11.8 +22037,Louisiana,East Feliciana Parish,6.2 +22039,Louisiana,Evangeline Parish,8.5 +22041,Louisiana,Franklin Parish,9.6 +22043,Louisiana,Grant Parish,7.8 +22045,Louisiana,Iberia Parish,9.7 +22047,Louisiana,Iberville Parish,7.4 +22049,Louisiana,Jackson Parish,6.3 +22051,Louisiana,Jefferson Parish,5.9 +22053,Louisiana,Jefferson Davis Parish,6.7 +22055,Louisiana,Lafayette Parish,6.7 +22057,Louisiana,Lafourche Parish,6.7 +22059,Louisiana,La Salle Parish,6.7 +22061,Louisiana,Lincoln Parish,7.5 +22063,Louisiana,Livingston Parish,5.3 +22065,Louisiana,Madison Parish,9.4 +22067,Louisiana,Morehouse Parish,10.4 +22069,Louisiana,Natchitoches Parish,8.1 +22071,Louisiana,Orleans Parish,6.7 +22073,Louisiana,Ouachita Parish,6.7 +22075,Louisiana,Plaquemines Parish,5.9 +22077,Louisiana,Pointe Coupee Parish,7.2 +22079,Louisiana,Rapides Parish,6.9 +22081,Louisiana,Red River Parish,6.8 +22083,Louisiana,Richland Parish,7.7 +22085,Louisiana,Sabine Parish,7.3 +22087,Louisiana,St. Bernard Parish,6.9 +22089,Louisiana,St. Charles Parish,6 +22091,Louisiana,St. Helena Parish,8.5 +22093,Louisiana,St. James Parish,8.1 +22095,Louisiana,St. John the Baptist Parish,7.5 +22097,Louisiana,St. Landry Parish,8.9 +22099,Louisiana,St. Martin Parish,8.3 +22101,Louisiana,St. Mary Parish,10.1 +22103,Louisiana,St. Tammany Parish,5.7 +22105,Louisiana,Tangipahoa Parish,7.5 +22107,Louisiana,Tensas Parish,10.5 +22109,Louisiana,Terrebonne Parish,7.3 +22111,Louisiana,Union Parish,6.9 +22113,Louisiana,Vermilion Parish,7.9 +22115,Louisiana,Vernon Parish,8.1 +22117,Louisiana,Washington Parish,7.9 +22119,Louisiana,Webster Parish,9.4 +22121,Louisiana,West Baton Rouge Parish,6.1 +22123,Louisiana,West Carroll Parish,12 +22125,Louisiana,West Feliciana Parish,5.5 +22127,Louisiana,Winn Parish,8.5 +23001,Maine,Androscoggin County,3.2 +23003,Maine,Aroostook County,4.8 +23005,Maine,Cumberland County,2.6 +23007,Maine,Franklin County,4 +23009,Maine,Hancock County,3.2 +23011,Maine,Kennebec County,3.2 +23013,Maine,Knox County,2.7 +23015,Maine,Lincoln County,2.9 +23017,Maine,Oxford County,4.2 +23019,Maine,Penobscot County,4 +23021,Maine,Piscataquis County,4.8 +23023,Maine,Sagadahoc County,2.6 +23025,Maine,Somerset County,4.9 +23027,Maine,Waldo County,3.6 +23029,Maine,Washington County,4.6 +23031,Maine,York County,2.9 +24001,Maryland,Allegany County,6.4 +24003,Maryland,Anne Arundel County,4 +24005,Maryland,Baltimore County,4.7 +24009,Maryland,Calvert County,4.1 +24011,Maryland,Caroline County,4.8 +24013,Maryland,Carroll County,3.8 +24015,Maryland,Cecil County,5.3 +24017,Maryland,Charles County,4.7 +24019,Maryland,Dorchester County,6.2 +24021,Maryland,Frederick County,3.9 +24023,Maryland,Garrett County,5.2 +24025,Maryland,Harford County,4.3 +24027,Maryland,Howard County,3.4 +24029,Maryland,Kent County,4.7 +24031,Maryland,Montgomery County,3.4 +24033,Maryland,Prince George's County,4.6 +24035,Maryland,Queen Anne's County,3.8 +24037,Maryland,St. Mary's County,4.5 +24039,Maryland,Somerset County,6.5 +24041,Maryland,Talbot County,4 +24043,Maryland,Washington County,5.2 +24045,Maryland,Wicomico County,5.5 +24047,Maryland,Worcester County,5.8 +24510,Maryland,Baltimore city,6.9 +25001,Massachusetts,Barnstable County,3.4 +25003,Massachusetts,Berkshire County,3.9 +25005,Massachusetts,Bristol County,4.7 +25007,Massachusetts,Dukes County,2.7 +25009,Massachusetts,Essex County,3.9 +25011,Massachusetts,Franklin County,3.3 +25013,Massachusetts,Hampden County,5.3 +25015,Massachusetts,Hampshire County,3.6 +25017,Massachusetts,Middlesex County,3.2 +25019,Massachusetts,Nantucket County,1.8 +25021,Massachusetts,Norfolk County,3.4 +25023,Massachusetts,Plymouth County,4 +25025,Massachusetts,Suffolk County,3.7 +25027,Massachusetts,Worcester County,4.1 +26001,Michigan,Alcona County,5.8 +26003,Michigan,Alger County,6.1 +26005,Michigan,Allegan County,3.3 +26007,Michigan,Alpena County,5 +26009,Michigan,Antrim County,5 +26011,Michigan,Arenac County,6.3 +26013,Michigan,Baraga County,6.8 +26015,Michigan,Barry County,3.5 +26017,Michigan,Bay County,4.7 +26019,Michigan,Benzie County,4.6 +26021,Michigan,Berrien County,4.4 +26023,Michigan,Branch County,4.4 +26025,Michigan,Calhoun County,4.4 +26027,Michigan,Cass County,4.2 +26029,Michigan,Charlevoix County,3.7 +26031,Michigan,Cheboygan County,4 +26033,Michigan,Chippewa County,6 +26035,Michigan,Clare County,6 +26037,Michigan,Clinton County,3.4 +26039,Michigan,Crawford County,6.2 +26041,Michigan,Delta County,5.5 +26043,Michigan,Dickinson County,4.5 +26045,Michigan,Eaton County,3.6 +26047,Michigan,Emmet County,4.1 +26049,Michigan,Genesee County,5 +26051,Michigan,Gladwin County,5.8 +26053,Michigan,Gogebic County,5.5 +26055,Michigan,Grand Traverse County,3.4 +26057,Michigan,Gratiot County,4.5 +26059,Michigan,Hillsdale County,4.9 +26061,Michigan,Houghton County,5.2 +26063,Michigan,Huron County,4.3 +26065,Michigan,Ingham County,4 +26067,Michigan,Ionia County,3.6 +26069,Michigan,Iosco County,5.8 +26071,Michigan,Iron County,4.7 +26073,Michigan,Isabella County,4.2 +26075,Michigan,Jackson County,4.6 +26077,Michigan,Kalamazoo County,3.7 +26079,Michigan,Kalkaska County,5.4 +26081,Michigan,Kent County,3.2 +26083,Michigan,Keweenaw County,6.4 +26085,Michigan,Lake County,6 +26087,Michigan,Lapeer County,6.4 +26089,Michigan,Leelanau County,3.5 +26091,Michigan,Lenawee County,4.4 +26093,Michigan,Livingston County,4.6 +26095,Michigan,Luce County,4.4 +26097,Michigan,Mackinac County,3.1 +26099,Michigan,Macomb County,5.9 +26101,Michigan,Manistee County,4.9 +26103,Michigan,Marquette County,4.9 +26105,Michigan,Mason County,4.2 +26107,Michigan,Mecosta County,4.9 +26109,Michigan,Menominee County,5.1 +26111,Michigan,Midland County,4.1 +26113,Michigan,Missaukee County,4.8 +26115,Michigan,Monroe County,4.3 +26117,Michigan,Montcalm County,4.5 +26119,Michigan,Montmorency County,7.6 +26121,Michigan,Muskegon County,4.8 +26123,Michigan,Newaygo County,4.2 +26125,Michigan,Oakland County,4.7 +26127,Michigan,Oceana County,5 +26129,Michigan,Ogemaw County,6.3 +26131,Michigan,Ontonagon County,6.6 +26133,Michigan,Osceola County,4.9 +26135,Michigan,Oscoda County,5.6 +26137,Michigan,Otsego County,4.9 +26139,Michigan,Ottawa County,3 +26141,Michigan,Presque Isle County,6.6 +26143,Michigan,Roscommon County,6.8 +26145,Michigan,Saginaw County,4.6 +26147,Michigan,St. Clair County,6.5 +26149,Michigan,St. Joseph County,3.7 +26151,Michigan,Sanilac County,5.2 +26153,Michigan,Schoolcraft County,7 +26155,Michigan,Shiawassee County,4.6 +26157,Michigan,Tuscola County,5.3 +26159,Michigan,Van Buren County,4.6 +26161,Michigan,Washtenaw County,3.5 +26163,Michigan,Wayne County,7.3 +26165,Michigan,Wexford County,5.1 +27001,Minnesota,Aitkin County,5.1 +27003,Minnesota,Anoka County,3.8 +27005,Minnesota,Becker County,3.8 +27007,Minnesota,Beltrami County,4.8 +27009,Minnesota,Benton County,3.7 +27011,Minnesota,Big Stone County,4 +27013,Minnesota,Blue Earth County,3.3 +27015,Minnesota,Brown County,3.9 +27017,Minnesota,Carlton County,4.9 +27019,Minnesota,Carver County,3.4 +27021,Minnesota,Cass County,5.6 +27023,Minnesota,Chippewa County,4 +27025,Minnesota,Chisago County,3.9 +27027,Minnesota,Clay County,3.2 +27029,Minnesota,Clearwater County,7.6 +27031,Minnesota,Cook County,3.1 +27033,Minnesota,Cottonwood County,7.9 +27035,Minnesota,Crow Wing County,4.3 +27037,Minnesota,Dakota County,3.5 +27039,Minnesota,Dodge County,3.6 +27041,Minnesota,Douglas County,3 +27043,Minnesota,Faribault County,3.9 +27045,Minnesota,Fillmore County,3.7 +27047,Minnesota,Freeborn County,3.7 +27049,Minnesota,Goodhue County,3.7 +27051,Minnesota,Grant County,4.1 +27053,Minnesota,Hennepin County,3.5 +27055,Minnesota,Houston County,3.4 +27057,Minnesota,Hubbard County,5.5 +27059,Minnesota,Isanti County,4.2 +27061,Minnesota,Itasca County,7.7 +27063,Minnesota,Jackson County,4 +27065,Minnesota,Kanabec County,5.1 +27067,Minnesota,Kandiyohi County,3.5 +27069,Minnesota,Kittson County,4.2 +27071,Minnesota,Koochiching County,7.7 +27073,Minnesota,Lac qui Parle County,3.9 +27075,Minnesota,Lake County,4.3 +27077,Minnesota,Lake of the Woods County,4.5 +27079,Minnesota,Le Sueur County,3.7 +27081,Minnesota,Lincoln County,3.2 +27083,Minnesota,Lyon County,3.4 +27085,Minnesota,McLeod County,4.1 +27087,Minnesota,Mahnomen County,5.2 +27089,Minnesota,Marshall County,5.6 +27091,Minnesota,Martin County,3.9 +27093,Minnesota,Meeker County,4 +27095,Minnesota,Mille Lacs County,4.8 +27097,Minnesota,Morrison County,4.5 +27099,Minnesota,Mower County,3 +27101,Minnesota,Murray County,3.3 +27103,Minnesota,Nicollet County,2.9 +27105,Minnesota,Nobles County,3.6 +27107,Minnesota,Norman County,4.6 +27109,Minnesota,Olmsted County,3 +27111,Minnesota,Otter Tail County,3.6 +27113,Minnesota,Pennington County,4.3 +27115,Minnesota,Pine County,4.8 +27117,Minnesota,Pipestone County,3 +27119,Minnesota,Polk County,4.4 +27121,Minnesota,Pope County,2.8 +27123,Minnesota,Ramsey County,3.8 +27125,Minnesota,Red Lake County,6.3 +27127,Minnesota,Redwood County,4 +27129,Minnesota,Renville County,5.2 +27131,Minnesota,Rice County,3.6 +27133,Minnesota,Rock County,2.2 +27135,Minnesota,Roseau County,4.3 +27137,Minnesota,St. Louis County,5.7 +27139,Minnesota,Scott County,3.2 +27141,Minnesota,Sherburne County,3.6 +27143,Minnesota,Sibley County,3.7 +27145,Minnesota,Stearns County,3.5 +27147,Minnesota,Steele County,3.8 +27149,Minnesota,Stevens County,2.7 +27151,Minnesota,Swift County,4.8 +27153,Minnesota,Todd County,3.9 +27155,Minnesota,Traverse County,3 +27157,Minnesota,Wabasha County,3.2 +27159,Minnesota,Wadena County,5.1 +27161,Minnesota,Waseca County,4 +27163,Minnesota,Washington County,3.4 +27165,Minnesota,Watonwan County,5.1 +27167,Minnesota,Wilkin County,3.4 +27169,Minnesota,Winona County,3.7 +27171,Minnesota,Wright County,3.5 +27173,Minnesota,Yellow Medicine County,3.7 +28001,Mississippi,Adams County,8.2 +28003,Mississippi,Alcorn County,5 +28005,Mississippi,Amite County,7.1 +28007,Mississippi,Attala County,6.5 +28009,Mississippi,Benton County,6.5 +28011,Mississippi,Bolivar County,7.4 +28013,Mississippi,Calhoun County,5.2 +28015,Mississippi,Carroll County,7.3 +28017,Mississippi,Chickasaw County,6.3 +28019,Mississippi,Choctaw County,5.3 +28021,Mississippi,Claiborne County,12.3 +28023,Mississippi,Clarke County,6.4 +28025,Mississippi,Clay County,7.8 +28027,Mississippi,Coahoma County,8.1 +28029,Mississippi,Copiah County,6.4 +28031,Mississippi,Covington County,5.6 +28033,Mississippi,DeSoto County,4.1 +28035,Mississippi,Forrest County,5.8 +28037,Mississippi,Franklin County,6.8 +28039,Mississippi,George County,7.7 +28041,Mississippi,Greene County,8 +28043,Mississippi,Grenada County,4.9 +28045,Mississippi,Hancock County,5.9 +28047,Mississippi,Harrison County,5.3 +28049,Mississippi,Hinds County,5.2 +28051,Mississippi,Holmes County,10.9 +28053,Mississippi,Humphreys County,11.2 +28055,Mississippi,Issaquena County,9.9 +28057,Mississippi,Itawamba County,4.8 +28059,Mississippi,Jackson County,6.4 +28061,Mississippi,Jasper County,7.8 +28063,Mississippi,Jefferson County,15.4 +28065,Mississippi,Jefferson Davis County,9.3 +28067,Mississippi,Jones County,5.9 +28069,Mississippi,Kemper County,8.2 +28071,Mississippi,Lafayette County,4.9 +28073,Mississippi,Lamar County,4.5 +28075,Mississippi,Lauderdale County,5.8 +28077,Mississippi,Lawrence County,7.4 +28079,Mississippi,Leake County,5.6 +28081,Mississippi,Lee County,4.8 +28083,Mississippi,Leflore County,9 +28085,Mississippi,Lincoln County,5.8 +28087,Mississippi,Lowndes County,5.9 +28089,Mississippi,Madison County,4.2 +28091,Mississippi,Marion County,6.8 +28093,Mississippi,Marshall County,5.7 +28095,Mississippi,Monroe County,6.3 +28097,Mississippi,Montgomery County,6.3 +28099,Mississippi,Neshoba County,5.4 +28101,Mississippi,Newton County,5.9 +28103,Mississippi,Noxubee County,8 +28105,Mississippi,Oktibbeha County,5.6 +28107,Mississippi,Panola County,6.7 +28109,Mississippi,Pearl River County,5.9 +28111,Mississippi,Perry County,7 +28113,Mississippi,Pike County,6.7 +28115,Mississippi,Pontotoc County,4.5 +28117,Mississippi,Prentiss County,5.3 +28119,Mississippi,Quitman County,8.3 +28121,Mississippi,Rankin County,3.8 +28123,Mississippi,Scott County,4.5 +28125,Mississippi,Sharkey County,8 +28127,Mississippi,Simpson County,5.5 +28129,Mississippi,Smith County,5.1 +28131,Mississippi,Stone County,6.8 +28133,Mississippi,Sunflower County,8.4 +28135,Mississippi,Tallahatchie County,5.7 +28137,Mississippi,Tate County,5.4 +28139,Mississippi,Tippah County,5.2 +28141,Mississippi,Tishomingo County,5.1 +28143,Mississippi,Tunica County,6.1 +28145,Mississippi,Union County,4.2 +28147,Mississippi,Walthall County,7.9 +28149,Mississippi,Warren County,6.4 +28151,Mississippi,Washington County,9.2 +28153,Mississippi,Wayne County,7.6 +28155,Mississippi,Webster County,6.1 +28157,Mississippi,Wilkinson County,10.1 +28159,Mississippi,Winston County,7.4 +28161,Mississippi,Yalobusha County,6 +28163,Mississippi,Yazoo County,7 +29001,Missouri,Adair County,6.7 +29003,Missouri,Andrew County,4.5 +29005,Missouri,Atchison County,5.9 +29007,Missouri,Audrain County,5.1 +29009,Missouri,Barry County,5.3 +29011,Missouri,Barton County,6 +29013,Missouri,Bates County,6 +29015,Missouri,Benton County,7.3 +29017,Missouri,Bollinger County,6.2 +29019,Missouri,Boone County,4.1 +29021,Missouri,Buchanan County,4.9 +29023,Missouri,Butler County,6.9 +29025,Missouri,Caldwell County,5.6 +29027,Missouri,Callaway County,5.2 +29029,Missouri,Camden County,5.5 +29031,Missouri,Cape Girardeau County,5.3 +29033,Missouri,Carroll County,5.9 +29035,Missouri,Carter County,7.8 +29037,Missouri,Cass County,5 +29039,Missouri,Cedar County,6.4 +29041,Missouri,Chariton County,5.1 +29043,Missouri,Christian County,4.5 +29045,Missouri,Clark County,8.7 +29047,Missouri,Clay County,4.5 +29049,Missouri,Clinton County,5 +29051,Missouri,Cole County,4.6 +29053,Missouri,Cooper County,5.7 +29055,Missouri,Crawford County,5.9 +29057,Missouri,Dade County,5.6 +29059,Missouri,Dallas County,6.5 +29061,Missouri,Daviess County,4.6 +29063,Missouri,DeKalb County,5.1 +29065,Missouri,Dent County,6.6 +29067,Missouri,Douglas County,7.3 +29069,Missouri,Dunklin County,9.1 +29071,Missouri,Franklin County,4.9 +29073,Missouri,Gasconade County,5 +29075,Missouri,Gentry County,4.7 +29077,Missouri,Greene County,4.6 +29079,Missouri,Grundy County,5.6 +29081,Missouri,Harrison County,4.7 +29083,Missouri,Henry County,5.9 +29085,Missouri,Hickory County,6.6 +29087,Missouri,Holt County,4 +29089,Missouri,Howard County,5.4 +29091,Missouri,Howell County,7.2 +29093,Missouri,Iron County,8.4 +29095,Missouri,Jackson County,6 +29097,Missouri,Jasper County,5.2 +29099,Missouri,Jefferson County,4.9 +29101,Missouri,Johnson County,6.1 +29103,Missouri,Knox County,4.1 +29105,Missouri,Laclede County,6.2 +29107,Missouri,Lafayette County,4.9 +29109,Missouri,Lawrence County,5.4 +29111,Missouri,Lewis County,4.9 +29113,Missouri,Lincoln County,4.8 +29115,Missouri,Linn County,9 +29117,Missouri,Livingston County,4.5 +29119,Missouri,McDonald County,4.9 +29121,Missouri,Macon County,6 +29123,Missouri,Madison County,6.9 +29125,Missouri,Maries County,6.8 +29127,Missouri,Marion County,5 +29129,Missouri,Mercer County,5 +29131,Missouri,Miller County,5.4 +29133,Missouri,Mississippi County,7.7 +29135,Missouri,Moniteau County,4.9 +29137,Missouri,Monroe County,5.5 +29139,Missouri,Montgomery County,5.1 +29141,Missouri,Morgan County,6.4 +29143,Missouri,New Madrid County,9.9 +29145,Missouri,Newton County,5.5 +29147,Missouri,Nodaway County,6 +29149,Missouri,Oregon County,7 +29151,Missouri,Osage County,4.2 +29153,Missouri,Ozark County,8.8 +29155,Missouri,Pemiscot County,9.9 +29157,Missouri,Perry County,4.3 +29159,Missouri,Pettis County,6.1 +29161,Missouri,Phelps County,5.6 +29163,Missouri,Pike County,5.4 +29165,Missouri,Platte County,4.4 +29167,Missouri,Polk County,6.4 +29169,Missouri,Pulaski County,6.8 +29171,Missouri,Putnam County,5.1 +29173,Missouri,Ralls County,4.4 +29175,Missouri,Randolph County,6.6 +29177,Missouri,Ray County,5.5 +29179,Missouri,Reynolds County,8.1 +29181,Missouri,Ripley County,8.4 +29183,Missouri,St. Charles County,4.1 +29185,Missouri,St. Clair County,7.3 +29186,Missouri,Ste. Genevieve County,5.8 +29187,Missouri,St. Francois County,6.7 +29189,Missouri,St. Louis County,5.1 +29195,Missouri,Saline County,5.8 +29197,Missouri,Schuyler County,7.6 +29199,Missouri,Scotland County,4.6 +29201,Missouri,Scott County,6.9 +29203,Missouri,Shannon County,8 +29205,Missouri,Shelby County,4.8 +29207,Missouri,Stoddard County,7.1 +29209,Missouri,Stone County,6 +29211,Missouri,Sullivan County,7.4 +29213,Missouri,Taney County,6.1 +29215,Missouri,Texas County,7.6 +29217,Missouri,Vernon County,5.8 +29219,Missouri,Warren County,4.6 +29221,Missouri,Washington County,7.2 +29223,Missouri,Wayne County,6.1 +29225,Missouri,Webster County,5.9 +29227,Missouri,Worth County,3.6 +29229,Missouri,Wright County,7.3 +29510,Missouri,St. Louis city,6.6 +30001,Montana,Beaverhead County,2.9 +30003,Montana,Big Horn County,7.7 +30005,Montana,Blaine County,4.4 +30007,Montana,Broadwater County,4.3 +30009,Montana,Carbon County,3.5 +30011,Montana,Carter County,2.4 +30013,Montana,Cascade County,3.8 +30015,Montana,Chouteau County,3.6 +30017,Montana,Custer County,3.7 +30019,Montana,Daniels County,2.3 +30021,Montana,Dawson County,4 +30023,Montana,Deer Lodge County,4.2 +30025,Montana,Fallon County,3.1 +30027,Montana,Fergus County,3.3 +30029,Montana,Flathead County,4.8 +30031,Montana,Gallatin County,2.3 +30033,Montana,Garfield County,2.4 +30035,Montana,Glacier County,9 +30037,Montana,Golden Valley County,3.2 +30039,Montana,Granite County,5.5 +30041,Montana,Hill County,4.9 +30043,Montana,Jefferson County,4.5 +30045,Montana,Judith Basin County,2.7 +30047,Montana,Lake County,4.8 +30049,Montana,Lewis and Clark County,3.3 +30051,Montana,Liberty County,3.1 +30053,Montana,Lincoln County,7.9 +30055,Montana,McCone County,2.1 +30057,Montana,Madison County,3.1 +30059,Montana,Meagher County,4.2 +30061,Montana,Mineral County,7.1 +30063,Montana,Missoula County,3.5 +30065,Montana,Musselshell County,4.3 +30067,Montana,Park County,3.3 +30069,Montana,Petroleum County,3.1 +30071,Montana,Phillips County,4.6 +30073,Montana,Pondera County,4.7 +30075,Montana,Powder River County,2.5 +30077,Montana,Powell County,4.5 +30079,Montana,Prairie County,3 +30081,Montana,Ravalli County,4.5 +30083,Montana,Richland County,4.9 +30085,Montana,Roosevelt County,6.2 +30087,Montana,Rosebud County,6.8 +30089,Montana,Sanders County,7 +30091,Montana,Sheridan County,3.2 +30093,Montana,Silver Bow County,4.3 +30095,Montana,Stillwater County,3.9 +30097,Montana,Sweet Grass County,2.9 +30099,Montana,Teton County,3.5 +30101,Montana,Toole County,3.3 +30103,Montana,Treasure County,4.1 +30105,Montana,Valley County,3 +30107,Montana,Wheatland County,4.9 +30109,Montana,Wibaux County,4.6 +30111,Montana,Yellowstone County,3.7 +31001,Nebraska,Adams County,3.3 +31003,Nebraska,Antelope County,2.5 +31005,Nebraska,Arthur County,5.4 +31007,Nebraska,Banner County,4.2 +31009,Nebraska,Blaine County,4.1 +31011,Nebraska,Boone County,2.8 +31013,Nebraska,Box Butte County,3.6 +31015,Nebraska,Boyd County,2.8 +31017,Nebraska,Brown County,3.5 +31019,Nebraska,Buffalo County,2.8 +31021,Nebraska,Burt County,3.6 +31023,Nebraska,Butler County,3.2 +31025,Nebraska,Cass County,3.5 +31027,Nebraska,Cedar County,2.8 +31029,Nebraska,Chase County,2.5 +31031,Nebraska,Cherry County,2.5 +31033,Nebraska,Cheyenne County,3.3 +31035,Nebraska,Clay County,3 +31037,Nebraska,Colfax County,3.2 +31039,Nebraska,Cuming County,3.2 +31041,Nebraska,Custer County,2.6 +31043,Nebraska,Dakota County,4.5 +31045,Nebraska,Dawes County,3.4 +31047,Nebraska,Dawson County,3 +31049,Nebraska,Deuel County,3.4 +31051,Nebraska,Dixon County,3.4 +31053,Nebraska,Dodge County,3.3 +31055,Nebraska,Douglas County,3.5 +31057,Nebraska,Dundy County,2.5 +31059,Nebraska,Fillmore County,2.8 +31061,Nebraska,Franklin County,3.3 +31063,Nebraska,Frontier County,2.8 +31065,Nebraska,Furnas County,3.3 +31067,Nebraska,Gage County,3.5 +31069,Nebraska,Garden County,3.2 +31071,Nebraska,Garfield County,2.7 +31073,Nebraska,Gosper County,2.7 +31075,Nebraska,Grant County,2.6 +31077,Nebraska,Greeley County,3.7 +31079,Nebraska,Hall County,3.4 +31081,Nebraska,Hamilton County,2.9 +31083,Nebraska,Harlan County,2.9 +31085,Nebraska,Hayes County,2.8 +31087,Nebraska,Hitchcock County,4.1 +31089,Nebraska,Holt County,3.1 +31091,Nebraska,Hooker County,2.7 +31093,Nebraska,Howard County,2.9 +31095,Nebraska,Jefferson County,2.7 +31097,Nebraska,Johnson County,3.1 +31099,Nebraska,Kearney County,2.4 +31101,Nebraska,Keith County,3 +31103,Nebraska,Keya Paha County,2.3 +31105,Nebraska,Kimball County,4.3 +31107,Nebraska,Knox County,2.8 +31109,Nebraska,Lancaster County,3 +31111,Nebraska,Lincoln County,3.2 +31113,Nebraska,Logan County,3 +31115,Nebraska,Loup County,3.7 +31117,Nebraska,McPherson County,2.5 +31119,Nebraska,Madison County,3 +31121,Nebraska,Merrick County,3.7 +31123,Nebraska,Morrill County,3.5 +31125,Nebraska,Nance County,2.9 +31127,Nebraska,Nemaha County,4.3 +31129,Nebraska,Nuckolls County,3 +31131,Nebraska,Otoe County,3.6 +31133,Nebraska,Pawnee County,2.4 +31135,Nebraska,Perkins County,2.5 +31137,Nebraska,Phelps County,2.8 +31139,Nebraska,Pierce County,2.5 +31141,Nebraska,Platte County,3.5 +31143,Nebraska,Polk County,2.7 +31145,Nebraska,Red Willow County,3.2 +31147,Nebraska,Richardson County,3.3 +31149,Nebraska,Rock County,2.6 +31151,Nebraska,Saline County,3.1 +31153,Nebraska,Sarpy County,3.1 +31155,Nebraska,Saunders County,3.2 +31157,Nebraska,Scotts Bluff County,3.8 +31159,Nebraska,Seward County,3.1 +31161,Nebraska,Sheridan County,3.4 +31163,Nebraska,Sherman County,3.3 +31165,Nebraska,Sioux County,2.6 +31167,Nebraska,Stanton County,2.7 +31169,Nebraska,Thayer County,2.8 +31171,Nebraska,Thomas County,3.2 +31173,Nebraska,Thurston County,4.6 +31175,Nebraska,Valley County,2.9 +31177,Nebraska,Washington County,3.2 +31179,Nebraska,Wayne County,3.4 +31181,Nebraska,Webster County,3.7 +31183,Nebraska,Wheeler County,2.7 +31185,Nebraska,York County,2.9 +32001,Nevada,Churchill County,5.8 +32003,Nevada,Clark County,6 +32005,Nevada,Douglas County,5.3 +32007,Nevada,Elko County,4.4 +32009,Nevada,Esmeralda County,4.7 +32011,Nevada,Eureka County,5.1 +32013,Nevada,Humboldt County,5.5 +32015,Nevada,Lander County,5.9 +32017,Nevada,Lincoln County,5.3 +32019,Nevada,Lyon County,7.3 +32021,Nevada,Mineral County,8.6 +32023,Nevada,Nye County,7.5 +32027,Nevada,Pershing County,6 +32029,Nevada,Storey County,5.8 +32031,Nevada,Washoe County,4.9 +32033,Nevada,White Pine County,4.6 +32510,Nevada,Carson City,6 +33001,New Hampshire,Belknap County,2.6 +33003,New Hampshire,Carroll County,2.8 +33005,New Hampshire,Cheshire County,2.9 +33007,New Hampshire,Coos County,3.5 +33009,New Hampshire,Grafton County,2.4 +33011,New Hampshire,Hillsborough County,3.2 +33013,New Hampshire,Merrimack County,2.6 +33015,New Hampshire,Rockingham County,3.1 +33017,New Hampshire,Strafford County,2.7 +33019,New Hampshire,Sullivan County,2.5 +34001,New Jersey,Atlantic County,7.1 +34003,New Jersey,Bergen County,4.7 +34005,New Jersey,Burlington County,5 +34007,New Jersey,Camden County,6 +34009,New Jersey,Cape May County,5.7 +34011,New Jersey,Cumberland County,7.9 +34013,New Jersey,Essex County,6.6 +34015,New Jersey,Gloucester County,5.6 +34017,New Jersey,Hudson County,5.2 +34019,New Jersey,Hunterdon County,4.1 +34021,New Jersey,Mercer County,4.9 +34023,New Jersey,Middlesex County,4.9 +34025,New Jersey,Monmouth County,4.8 +34027,New Jersey,Morris County,4.2 +34029,New Jersey,Ocean County,5.4 +34031,New Jersey,Passaic County,6.8 +34033,New Jersey,Salem County,6.8 +34035,New Jersey,Somerset County,4.4 +34037,New Jersey,Sussex County,5 +34039,New Jersey,Union County,5.6 +34041,New Jersey,Warren County,5.1 +35001,New Mexico,Bernalillo County,6.2 +35003,New Mexico,Catron County,6.9 +35005,New Mexico,Chaves County,6.9 +35006,New Mexico,Cibola County,9.1 +35007,New Mexico,Colfax County,5.6 +35009,New Mexico,Curry County,5.4 +35011,New Mexico,De Baca County,5 +35013,New Mexico,Dona Ana County,7.1 +35015,New Mexico,Eddy County,7.2 +35017,New Mexico,Grant County,6.6 +35019,New Mexico,Guadalupe County,6.4 +35021,New Mexico,Harding County,7.3 +35023,New Mexico,Hidalgo County,5.4 +35025,New Mexico,Lea County,9.8 +35027,New Mexico,Lincoln County,6 +35028,New Mexico,Los Alamos County,4.5 +35029,New Mexico,Luna County,10 +35031,New Mexico,McKinley County,9.8 +35033,New Mexico,Mora County,8 +35035,New Mexico,Otero County,6.4 +35037,New Mexico,Quay County,7 +35039,New Mexico,Rio Arriba County,7.3 +35041,New Mexico,Roosevelt County,6.1 +35043,New Mexico,Sandoval County,7.1 +35045,New Mexico,San Juan County,9.4 +35047,New Mexico,San Miguel County,8.1 +35049,New Mexico,Santa Fe County,5.5 +35051,New Mexico,Sierra County,7.8 +35053,New Mexico,Socorro County,8 +35055,New Mexico,Taos County,8.3 +35057,New Mexico,Torrance County,9.3 +35059,New Mexico,Union County,4.5 +35061,New Mexico,Valencia County,7.6 +36001,New York,Albany County,4 +36003,New York,Allegany County,4.9 +36005,New York,Bronx County,7.8 +36007,New York,Broome County,5 +36009,New York,Cattaraugus County,5.2 +36011,New York,Cayuga County,4.4 +36013,New York,Chautauqua County,5.1 +36015,New York,Chemung County,5.2 +36017,New York,Chenango County,4.4 +36019,New York,Clinton County,5.1 +36021,New York,Columbia County,3.3 +36023,New York,Cortland County,4.6 +36025,New York,Delaware County,4.9 +36027,New York,Dutchess County,4 +36029,New York,Erie County,4.6 +36031,New York,Essex County,4.1 +36033,New York,Franklin County,4.8 +36035,New York,Fulton County,5.2 +36037,New York,Genesee County,3.8 +36039,New York,Greene County,4.5 +36041,New York,Hamilton County,2.9 +36043,New York,Herkimer County,4.4 +36045,New York,Jefferson County,5.1 +36047,New York,Kings County,5.9 +36049,New York,Lewis County,5.4 +36051,New York,Livingston County,4.2 +36053,New York,Madison County,4.6 +36055,New York,Monroe County,4.6 +36057,New York,Montgomery County,5.2 +36059,New York,Nassau County,3.8 +36061,New York,New York County,4.9 +36063,New York,Niagara County,5.2 +36065,New York,Oneida County,4.3 +36067,New York,Onondaga County,4.2 +36069,New York,Ontario County,3.7 +36071,New York,Orange County,4.2 +36073,New York,Orleans County,5.2 +36075,New York,Oswego County,5.7 +36077,New York,Otsego County,4.3 +36079,New York,Putnam County,3.9 +36081,New York,Queens County,5 +36083,New York,Rensselaer County,4.1 +36085,New York,Richmond County,5.9 +36087,New York,Rockland County,4.1 +36089,New York,St. Lawrence County,5.8 +36091,New York,Saratoga County,3.5 +36093,New York,Schenectady County,4.2 +36095,New York,Schoharie County,4.7 +36097,New York,Schuyler County,4.6 +36099,New York,Seneca County,3.8 +36101,New York,Steuben County,5 +36103,New York,Suffolk County,4.3 +36105,New York,Sullivan County,4.1 +36107,New York,Tioga County,4.5 +36109,New York,Tompkins County,3.7 +36111,New York,Ulster County,4.3 +36113,New York,Warren County,4.1 +36115,New York,Washington County,3.8 +36117,New York,Wayne County,4.5 +36119,New York,Westchester County,4.2 +36121,New York,Wyoming County,4.1 +36123,New York,Yates County,3.7 +37001,North Carolina,Alamance County,4.8 +37003,North Carolina,Alexander County,4.5 +37005,North Carolina,Alleghany County,5.1 +37007,North Carolina,Anson County,5.9 +37009,North Carolina,Ashe County,4.5 +37011,North Carolina,Avery County,4.8 +37013,North Carolina,Beaufort County,5.6 +37015,North Carolina,Bertie County,6.4 +37017,North Carolina,Bladen County,6.7 +37019,North Carolina,Brunswick County,5.7 +37021,North Carolina,Buncombe County,3.9 +37023,North Carolina,Burke County,5.1 +37025,North Carolina,Cabarrus County,4.6 +37027,North Carolina,Caldwell County,5.3 +37029,North Carolina,Camden County,5.3 +37031,North Carolina,Carteret County,4.7 +37033,North Carolina,Caswell County,5.5 +37035,North Carolina,Catawba County,4.9 +37037,North Carolina,Chatham County,4.3 +37039,North Carolina,Cherokee County,5.4 +37041,North Carolina,Chowan County,6.5 +37043,North Carolina,Clay County,5.1 +37045,North Carolina,Cleveland County,5.6 +37047,North Carolina,Columbus County,6.1 +37049,North Carolina,Craven County,5.1 +37051,North Carolina,Cumberland County,6.3 +37053,North Carolina,Currituck County,4.6 +37055,North Carolina,Dare County,4.2 +37057,North Carolina,Davidson County,4.9 +37059,North Carolina,Davie County,4.6 +37061,North Carolina,Duplin County,5.4 +37063,North Carolina,Durham County,4.5 +37065,North Carolina,Edgecombe County,8.5 +37067,North Carolina,Forsyth County,4.9 +37069,North Carolina,Franklin County,5.1 +37071,North Carolina,Gaston County,5.3 +37073,North Carolina,Gates County,5.2 +37075,North Carolina,Graham County,7.1 +37077,North Carolina,Granville County,4.4 +37079,North Carolina,Greene County,5 +37081,North Carolina,Guilford County,5.3 +37083,North Carolina,Halifax County,7.8 +37085,North Carolina,Harnett County,5.8 +37087,North Carolina,Haywood County,4.4 +37089,North Carolina,Henderson County,4.3 +37091,North Carolina,Hertford County,6.5 +37093,North Carolina,Hoke County,6.5 +37095,North Carolina,Hyde County,6.4 +37097,North Carolina,Iredell County,4.7 +37099,North Carolina,Jackson County,5.1 +37101,North Carolina,Johnston County,4.5 +37103,North Carolina,Jones County,5.1 +37105,North Carolina,Lee County,5.7 +37107,North Carolina,Lenoir County,5.4 +37109,North Carolina,Lincoln County,4.6 +37111,North Carolina,McDowell County,4.6 +37113,North Carolina,Macon County,5.1 +37115,North Carolina,Madison County,4.9 +37117,North Carolina,Martin County,6.8 +37119,North Carolina,Mecklenburg County,4.7 +37121,North Carolina,Mitchell County,6 +37123,North Carolina,Montgomery County,5.2 +37125,North Carolina,Moore County,5 +37127,North Carolina,Nash County,6.8 +37129,North Carolina,New Hanover County,4.7 +37131,North Carolina,Northampton County,7.3 +37133,North Carolina,Onslow County,5.4 +37135,North Carolina,Orange County,4.5 +37137,North Carolina,Pamlico County,5.1 +37139,North Carolina,Pasquotank County,6.2 +37141,North Carolina,Pender County,5.2 +37143,North Carolina,Perquimans County,6.3 +37145,North Carolina,Person County,5.4 +37147,North Carolina,Pitt County,5.7 +37149,North Carolina,Polk County,4.9 +37151,North Carolina,Randolph County,4.8 +37153,North Carolina,Richmond County,6.9 +37155,North Carolina,Robeson County,7.3 +37157,North Carolina,Rockingham County,5.5 +37159,North Carolina,Rowan County,5.5 +37161,North Carolina,Rutherford County,6.6 +37163,North Carolina,Sampson County,5.6 +37165,North Carolina,Scotland County,8.9 +37167,North Carolina,Stanly County,4.7 +37169,North Carolina,Stokes County,4.9 +37171,North Carolina,Surry County,4.8 +37173,North Carolina,Swain County,4.9 +37175,North Carolina,Transylvania County,4.8 +37177,North Carolina,Tyrrell County,6.2 +37179,North Carolina,Union County,4.4 +37181,North Carolina,Vance County,7.3 +37183,North Carolina,Wake County,4.2 +37185,North Carolina,Warren County,7 +37187,North Carolina,Washington County,6.9 +37189,North Carolina,Watauga County,4.7 +37191,North Carolina,Wayne County,5.6 +37193,North Carolina,Wilkes County,4.7 +37195,North Carolina,Wilson County,8.1 +37197,North Carolina,Yadkin County,4.4 +37199,North Carolina,Yancey County,5.1 +38001,North Dakota,Adams County,2.3 +38003,North Dakota,Barnes County,3.2 +38005,North Dakota,Benson County,3.1 +38007,North Dakota,Billings County,2.5 +38009,North Dakota,Bottineau County,3.2 +38011,North Dakota,Bowman County,1.8 +38013,North Dakota,Burke County,3.8 +38015,North Dakota,Burleigh County,2.3 +38017,North Dakota,Cass County,2 +38019,North Dakota,Cavalier County,1.9 +38021,North Dakota,Dickey County,1.8 +38023,North Dakota,Divide County,2 +38025,North Dakota,Dunn County,2.2 +38027,North Dakota,Eddy County,2.8 +38029,North Dakota,Emmons County,3.1 +38031,North Dakota,Foster County,2.5 +38033,North Dakota,Golden Valley County,2.4 +38035,North Dakota,Grand Forks County,2.3 +38037,North Dakota,Grant County,2.1 +38039,North Dakota,Griggs County,2.3 +38041,North Dakota,Hettinger County,2.9 +38043,North Dakota,Kidder County,2.6 +38045,North Dakota,LaMoure County,2 +38047,North Dakota,Logan County,2.9 +38049,North Dakota,McHenry County,4.1 +38051,North Dakota,McIntosh County,2.4 +38053,North Dakota,McKenzie County,3.1 +38055,North Dakota,McLean County,3.1 +38057,North Dakota,Mercer County,4.5 +38059,North Dakota,Morton County,2.9 +38061,North Dakota,Mountrail County,2.9 +38063,North Dakota,Nelson County,2.9 +38065,North Dakota,Oliver County,5.3 +38067,North Dakota,Pembina County,4.5 +38069,North Dakota,Pierce County,3 +38071,North Dakota,Ramsey County,2.5 +38073,North Dakota,Ransom County,1.9 +38075,North Dakota,Renville County,3.5 +38077,North Dakota,Richland County,2.7 +38079,North Dakota,Rolette County,14.2 +38081,North Dakota,Sargent County,1.6 +38083,North Dakota,Sheridan County,3.7 +38085,North Dakota,Sioux County,5.3 +38087,North Dakota,Slope County,2.3 +38089,North Dakota,Stark County,3.3 +38091,North Dakota,Steele County,1.7 +38093,North Dakota,Stutsman County,2.1 +38095,North Dakota,Towner County,2 +38097,North Dakota,Traill County,2.7 +38099,North Dakota,Walsh County,3.6 +38101,North Dakota,Ward County,3.5 +38103,North Dakota,Wells County,2.7 +38105,North Dakota,Williams County,3.7 +39001,Ohio,Adams County,6.8 +39003,Ohio,Allen County,4.6 +39005,Ohio,Ashland County,4.3 +39007,Ohio,Ashtabula County,5.3 +39009,Ohio,Athens County,6 +39011,Ohio,Auglaize County,3.5 +39013,Ohio,Belmont County,6.3 +39015,Ohio,Brown County,5 +39017,Ohio,Butler County,4.2 +39019,Ohio,Carroll County,6 +39021,Ohio,Champaign County,4.1 +39023,Ohio,Clark County,4.7 +39025,Ohio,Clermont County,4.1 +39027,Ohio,Clinton County,5.4 +39029,Ohio,Columbiana County,6 +39031,Ohio,Coshocton County,6.2 +39033,Ohio,Crawford County,5.5 +39035,Ohio,Cuyahoga County,5.5 +39037,Ohio,Darke County,3.7 +39039,Ohio,Defiance County,4.3 +39041,Ohio,Delaware County,3.4 +39043,Ohio,Erie County,4.6 +39045,Ohio,Fairfield County,3.9 +39047,Ohio,Fayette County,3.9 +39049,Ohio,Franklin County,3.9 +39051,Ohio,Fulton County,4 +39053,Ohio,Gallia County,6.4 +39055,Ohio,Geauga County,4.4 +39057,Ohio,Greene County,4.2 +39059,Ohio,Guernsey County,5.8 +39061,Ohio,Hamilton County,4.2 +39063,Ohio,Hancock County,3.5 +39065,Ohio,Hardin County,4.9 +39067,Ohio,Harrison County,6.4 +39069,Ohio,Henry County,4.2 +39071,Ohio,Highland County,5.5 +39073,Ohio,Hocking County,4.5 +39075,Ohio,Holmes County,3.3 +39077,Ohio,Huron County,5 +39079,Ohio,Jackson County,7 +39081,Ohio,Jefferson County,7.4 +39083,Ohio,Knox County,4.1 +39085,Ohio,Lake County,4.8 +39087,Ohio,Lawrence County,6.1 +39089,Ohio,Licking County,4.1 +39091,Ohio,Logan County,3.9 +39093,Ohio,Lorain County,5.9 +39095,Ohio,Lucas County,4.9 +39097,Ohio,Madison County,3.5 +39099,Ohio,Mahoning County,5.8 +39101,Ohio,Marion County,4.7 +39103,Ohio,Medina County,4.3 +39105,Ohio,Meigs County,7.6 +39107,Ohio,Mercer County,3 +39109,Ohio,Miami County,4 +39111,Ohio,Monroe County,9.1 +39113,Ohio,Montgomery County,4.6 +39115,Ohio,Morgan County,6.8 +39117,Ohio,Morrow County,4.4 +39119,Ohio,Muskingum County,5.3 +39121,Ohio,Noble County,7.3 +39123,Ohio,Ottawa County,4.6 +39125,Ohio,Paulding County,4.2 +39127,Ohio,Perry County,5.5 +39129,Ohio,Pickaway County,4.2 +39131,Ohio,Pike County,6.8 +39133,Ohio,Portage County,4.5 +39135,Ohio,Preble County,4.3 +39137,Ohio,Putnam County,3.2 +39139,Ohio,Richland County,4.9 +39141,Ohio,Ross County,4.8 +39143,Ohio,Sandusky County,4.1 +39145,Ohio,Scioto County,7 +39147,Ohio,Seneca County,4.4 +39149,Ohio,Shelby County,3.7 +39151,Ohio,Stark County,4.9 +39153,Ohio,Summit County,4.7 +39155,Ohio,Trumbull County,6 +39157,Ohio,Tuscarawas County,5 +39159,Ohio,Union County,3.5 +39161,Ohio,Van Wert County,3.7 +39163,Ohio,Vinton County,5.9 +39165,Ohio,Warren County,3.9 +39167,Ohio,Washington County,6.4 +39169,Ohio,Wayne County,3.6 +39171,Ohio,Williams County,4.1 +39173,Ohio,Wood County,4 +39175,Ohio,Wyandot County,3.4 +40001,Oklahoma,Adair County,5.8 +40003,Oklahoma,Alfalfa County,3.6 +40005,Oklahoma,Atoka County,7.1 +40007,Oklahoma,Beaver County,3.2 +40009,Oklahoma,Beckham County,7.7 +40011,Oklahoma,Blaine County,3.7 +40013,Oklahoma,Bryan County,4.3 +40015,Oklahoma,Caddo County,5.6 +40017,Oklahoma,Canadian County,4.3 +40019,Oklahoma,Carter County,5.4 +40021,Oklahoma,Cherokee County,5.6 +40023,Oklahoma,Choctaw County,8.3 +40025,Oklahoma,Cimarron County,2.7 +40027,Oklahoma,Cleveland County,4 +40029,Oklahoma,Coal County,7.5 +40031,Oklahoma,Comanche County,4.8 +40033,Oklahoma,Cotton County,5.2 +40035,Oklahoma,Craig County,4.9 +40037,Oklahoma,Creek County,6.3 +40039,Oklahoma,Custer County,4.9 +40041,Oklahoma,Delaware County,5.2 +40043,Oklahoma,Dewey County,4.1 +40045,Oklahoma,Ellis County,3.7 +40047,Oklahoma,Garfield County,4.5 +40049,Oklahoma,Garvin County,5.7 +40051,Oklahoma,Grady County,5.2 +40053,Oklahoma,Grant County,3.1 +40055,Oklahoma,Greer County,7.9 +40057,Oklahoma,Harmon County,3.6 +40059,Oklahoma,Harper County,4.3 +40061,Oklahoma,Haskell County,8.8 +40063,Oklahoma,Hughes County,7.5 +40065,Oklahoma,Jackson County,4.9 +40067,Oklahoma,Jefferson County,8 +40069,Oklahoma,Johnston County,6.5 +40071,Oklahoma,Kay County,6.7 +40073,Oklahoma,Kingfisher County,3.6 +40075,Oklahoma,Kiowa County,5.6 +40077,Oklahoma,Latimer County,9.7 +40079,Oklahoma,Le Flore County,7.4 +40081,Oklahoma,Lincoln County,5.5 +40083,Oklahoma,Logan County,4.3 +40085,Oklahoma,Love County,3.3 +40087,Oklahoma,McClain County,4.3 +40089,Oklahoma,McCurtain County,7.7 +40091,Oklahoma,McIntosh County,9.5 +40093,Oklahoma,Major County,4.3 +40095,Oklahoma,Marshall County,5.1 +40097,Oklahoma,Mayes County,5.5 +40099,Oklahoma,Murray County,4.3 +40101,Oklahoma,Muskogee County,6 +40103,Oklahoma,Noble County,4 +40105,Oklahoma,Nowata County,6.5 +40107,Oklahoma,Okfuskee County,6.1 +40109,Oklahoma,Oklahoma County,4.5 +40111,Oklahoma,Okmulgee County,7.4 +40113,Oklahoma,Osage County,6.1 +40115,Oklahoma,Ottawa County,5.3 +40117,Oklahoma,Pawnee County,7.1 +40119,Oklahoma,Payne County,3.9 +40121,Oklahoma,Pittsburg County,6.5 +40123,Oklahoma,Pontotoc County,4.2 +40125,Oklahoma,Pottawatomie County,5 +40127,Oklahoma,Pushmataha County,7.7 +40129,Oklahoma,Roger Mills County,5.4 +40131,Oklahoma,Rogers County,5.6 +40133,Oklahoma,Seminole County,7.3 +40135,Oklahoma,Sequoyah County,6.5 +40137,Oklahoma,Stephens County,10.4 +40139,Oklahoma,Texas County,3.5 +40141,Oklahoma,Tillman County,4.5 +40143,Oklahoma,Tulsa County,5.2 +40145,Oklahoma,Wagoner County,5.2 +40147,Oklahoma,Washington County,5 +40149,Oklahoma,Washita County,7.2 +40151,Oklahoma,Woods County,3.3 +40153,Oklahoma,Woodward County,6.4 +41001,Oregon,Baker County,6.7 +41003,Oregon,Benton County,5 +41005,Oregon,Clackamas County,5.2 +41007,Oregon,Clatsop County,5.1 +41009,Oregon,Columbia County,7.1 +41011,Oregon,Coos County,7.3 +41013,Oregon,Crook County,6.9 +41015,Oregon,Curry County,7 +41017,Oregon,Deschutes County,5.1 +41019,Oregon,Douglas County,7.3 +41021,Oregon,Gilliam County,7.1 +41023,Oregon,Grant County,6.1 +41025,Oregon,Harney County,5.9 +41027,Oregon,Hood River County,4 +41029,Oregon,Jackson County,6.8 +41031,Oregon,Jefferson County,6.6 +41033,Oregon,Josephine County,7.4 +41035,Oregon,Klamath County,7.2 +41037,Oregon,Lake County,5.7 +41039,Oregon,Lane County,6.2 +41041,Oregon,Lincoln County,5.9 +41043,Oregon,Linn County,6.7 +41045,Oregon,Malheur County,6.1 +41047,Oregon,Marion County,5.9 +41049,Oregon,Morrow County,5.8 +41051,Oregon,Multnomah County,5 +41053,Oregon,Polk County,6 +41055,Oregon,Sherman County,4.3 +41057,Oregon,Tillamook County,5.2 +41059,Oregon,Umatilla County,5.9 +41061,Oregon,Union County,6.3 +41063,Oregon,Wallowa County,5 +41065,Oregon,Wasco County,5.9 +41067,Oregon,Washington County,5 +41069,Oregon,Wheeler County,4.9 +41071,Oregon,Yamhill County,5.4 +42001,Pennsylvania,Adams County,4.5 +42003,Pennsylvania,Allegheny County,5.9 +42005,Pennsylvania,Armstrong County,8 +42007,Pennsylvania,Beaver County,6.8 +42009,Pennsylvania,Bedford County,5.8 +42011,Pennsylvania,Berks County,5.6 +42013,Pennsylvania,Blair County,5.7 +42015,Pennsylvania,Bradford County,6.5 +42017,Pennsylvania,Bucks County,5.2 +42019,Pennsylvania,Butler County,5.7 +42021,Pennsylvania,Cambria County,7.7 +42023,Pennsylvania,Cameron County,8.2 +42025,Pennsylvania,Carbon County,6.7 +42027,Pennsylvania,Centre County,4.8 +42029,Pennsylvania,Chester County,4.6 +42031,Pennsylvania,Clarion County,7.2 +42033,Pennsylvania,Clearfield County,7.5 +42035,Pennsylvania,Clinton County,7.3 +42037,Pennsylvania,Columbia County,6.2 +42039,Pennsylvania,Crawford County,6.7 +42041,Pennsylvania,Cumberland County,4.7 +42043,Pennsylvania,Dauphin County,5.3 +42045,Pennsylvania,Delaware County,5.6 +42047,Pennsylvania,Elk County,6.7 +42049,Pennsylvania,Erie County,7.1 +42051,Pennsylvania,Fayette County,8.5 +42053,Pennsylvania,Forest County,8.5 +42055,Pennsylvania,Franklin County,5.7 +42057,Pennsylvania,Fulton County,6.3 +42059,Pennsylvania,Greene County,8.1 +42061,Pennsylvania,Huntingdon County,7.1 +42063,Pennsylvania,Indiana County,8.3 +42065,Pennsylvania,Jefferson County,7.3 +42067,Pennsylvania,Juniata County,5.8 +42069,Pennsylvania,Lackawanna County,6.4 +42071,Pennsylvania,Lancaster County,4.8 +42073,Pennsylvania,Lawrence County,7 +42075,Pennsylvania,Lebanon County,5.1 +42077,Pennsylvania,Lehigh County,6.3 +42079,Pennsylvania,Luzerne County,6.9 +42081,Pennsylvania,Lycoming County,7 +42083,Pennsylvania,McKean County,7.2 +42085,Pennsylvania,Mercer County,6.8 +42087,Pennsylvania,Mifflin County,6 +42089,Pennsylvania,Monroe County,6.9 +42091,Pennsylvania,Montgomery County,4.7 +42093,Pennsylvania,Montour County,4.9 +42095,Pennsylvania,Northampton County,5.9 +42097,Pennsylvania,Northumberland County,6.6 +42099,Pennsylvania,Perry County,5.1 +42101,Pennsylvania,Philadelphia County,7.7 +42103,Pennsylvania,Pike County,6.8 +42105,Pennsylvania,Potter County,7.8 +42107,Pennsylvania,Schuylkill County,6.7 +42109,Pennsylvania,Snyder County,5.1 +42111,Pennsylvania,Somerset County,7.5 +42113,Pennsylvania,Sullivan County,7 +42115,Pennsylvania,Susquehanna County,5.4 +42117,Pennsylvania,Tioga County,7.4 +42119,Pennsylvania,Union County,5.4 +42121,Pennsylvania,Venango County,8 +42123,Pennsylvania,Warren County,5.9 +42125,Pennsylvania,Washington County,6.6 +42127,Pennsylvania,Wayne County,5.6 +42129,Pennsylvania,Westmoreland County,6.6 +42131,Pennsylvania,Wyoming County,6.2 +42133,Pennsylvania,York County,5.2 +44001,Rhode Island,Bristol County,5 +44003,Rhode Island,Kent County,5.3 +44005,Rhode Island,Newport County,4.8 +44007,Rhode Island,Providence County,6.3 +44009,Rhode Island,Washington County,5 +45001,South Carolina,Abbeville County,6.1 +45003,South Carolina,Aiken County,5.6 +45005,South Carolina,Allendale County,9.1 +45007,South Carolina,Anderson County,5.2 +45009,South Carolina,Bamberg County,11.4 +45011,South Carolina,Barnwell County,8 +45013,South Carolina,Beaufort County,5.1 +45015,South Carolina,Berkeley County,5 +45017,South Carolina,Calhoun County,7.4 +45019,South Carolina,Charleston County,4.5 +45021,South Carolina,Cherokee County,6.6 +45023,South Carolina,Chester County,8.4 +45025,South Carolina,Chesterfield County,5.7 +45027,South Carolina,Clarendon County,7.1 +45029,South Carolina,Colleton County,5.8 +45031,South Carolina,Darlington County,6.8 +45033,South Carolina,Dillon County,7.1 +45035,South Carolina,Dorchester County,4.9 +45037,South Carolina,Edgefield County,6.1 +45039,South Carolina,Fairfield County,7.7 +45041,South Carolina,Florence County,5.8 +45043,South Carolina,Georgetown County,6.6 +45045,South Carolina,Greenville County,4.7 +45047,South Carolina,Greenwood County,5.8 +45049,South Carolina,Hampton County,6.2 +45051,South Carolina,Horry County,5.4 +45053,South Carolina,Jasper County,4.7 +45055,South Carolina,Kershaw County,5.8 +45057,South Carolina,Lancaster County,6 +45059,South Carolina,Laurens County,5.6 +45061,South Carolina,Lee County,8.2 +45063,South Carolina,Lexington County,4.5 +45065,South Carolina,McCormick County,5.8 +45067,South Carolina,Marion County,8.6 +45069,South Carolina,Marlboro County,9.1 +45071,South Carolina,Newberry County,4.8 +45073,South Carolina,Oconee County,5.5 +45075,South Carolina,Orangeburg County,11.3 +45077,South Carolina,Pickens County,5.6 +45079,South Carolina,Richland County,5.4 +45081,South Carolina,Saluda County,4.8 +45083,South Carolina,Spartanburg County,5.3 +45085,South Carolina,Sumter County,6.5 +45087,South Carolina,Union County,6.5 +45089,South Carolina,Williamsburg County,7.9 +45091,South Carolina,York County,5.2 +46003,South Dakota,Aurora County,1.9 +46005,South Dakota,Beadle County,2.3 +46007,South Dakota,Bennett County,4 +46009,South Dakota,Bon Homme County,2.4 +46011,South Dakota,Brookings County,2.5 +46013,South Dakota,Brown County,2.4 +46015,South Dakota,Brule County,2.5 +46017,South Dakota,Buffalo County,9.8 +46019,South Dakota,Butte County,2.9 +46021,South Dakota,Campbell County,2.5 +46023,South Dakota,Charles Mix County,3 +46025,South Dakota,Clark County,2.9 +46027,South Dakota,Clay County,2.7 +46029,South Dakota,Codington County,2.6 +46031,South Dakota,Corson County,5.5 +46033,South Dakota,Custer County,3.1 +46035,South Dakota,Davison County,1.9 +46037,South Dakota,Day County,3.6 +46039,South Dakota,Deuel County,3.2 +46041,South Dakota,Dewey County,14.1 +46043,South Dakota,Douglas County,2.2 +46045,South Dakota,Edmunds County,2.1 +46047,South Dakota,Fall River County,3.8 +46049,South Dakota,Faulk County,2.5 +46051,South Dakota,Grant County,2.5 +46053,South Dakota,Gregory County,2.6 +46055,South Dakota,Haakon County,2.1 +46057,South Dakota,Hamlin County,2.4 +46059,South Dakota,Hand County,1.9 +46061,South Dakota,Hanson County,3.2 +46063,South Dakota,Harding County,2.1 +46065,South Dakota,Hughes County,2 +46067,South Dakota,Hutchinson County,2 +46069,South Dakota,Hyde County,2.8 +46071,South Dakota,Jackson County,2.8 +46073,South Dakota,Jerauld County,2.4 +46075,South Dakota,Jones County,2.4 +46077,South Dakota,Kingsbury County,2.1 +46079,South Dakota,Lake County,3 +46081,South Dakota,Lawrence County,2.9 +46083,South Dakota,Lincoln County,1.8 +46085,South Dakota,Lyman County,5 +46087,South Dakota,McCook County,2.1 +46089,South Dakota,McPherson County,3.6 +46091,South Dakota,Marshall County,2.8 +46093,South Dakota,Meade County,2.7 +46095,South Dakota,Mellette County,3.8 +46097,South Dakota,Miner County,2.4 +46099,South Dakota,Minnehaha County,2.2 +46101,South Dakota,Moody County,3.6 +46102,South Dakota,Oglala Lakota County,13.2 +46103,South Dakota,Pennington County,2.6 +46105,South Dakota,Perkins County,2.8 +46107,South Dakota,Potter County,2.3 +46109,South Dakota,Roberts County,3.3 +46111,South Dakota,Sanborn County,2.5 +46115,South Dakota,Spink County,2.6 +46117,South Dakota,Stanley County,2 +46119,South Dakota,Sully County,1.9 +46121,South Dakota,Todd County,6.8 +46123,South Dakota,Tripp County,1.9 +46125,South Dakota,Turner County,2.4 +46127,South Dakota,Union County,2.9 +46129,South Dakota,Walworth County,4.3 +46135,South Dakota,Yankton County,2.3 +46137,South Dakota,Ziebach County,5.6 +47001,Tennessee,Anderson County,5.1 +47003,Tennessee,Bedford County,5.3 +47005,Tennessee,Benton County,7.4 +47007,Tennessee,Bledsoe County,6.6 +47009,Tennessee,Blount County,4.5 +47011,Tennessee,Bradley County,4.7 +47013,Tennessee,Campbell County,6.7 +47015,Tennessee,Cannon County,4.9 +47017,Tennessee,Carroll County,7.1 +47019,Tennessee,Carter County,5.9 +47021,Tennessee,Cheatham County,4 +47023,Tennessee,Chester County,5.7 +47025,Tennessee,Claiborne County,6.4 +47027,Tennessee,Clay County,6.4 +47029,Tennessee,Cocke County,6 +47031,Tennessee,Coffee County,4.9 +47033,Tennessee,Crockett County,5.2 +47035,Tennessee,Cumberland County,5.9 +47037,Tennessee,Davidson County,3.8 +47039,Tennessee,Decatur County,7.3 +47041,Tennessee,DeKalb County,5.8 +47043,Tennessee,Dickson County,4.4 +47045,Tennessee,Dyer County,6.1 +47047,Tennessee,Fayette County,5.3 +47049,Tennessee,Fentress County,6 +47051,Tennessee,Franklin County,5.7 +47053,Tennessee,Gibson County,6.2 +47055,Tennessee,Giles County,4.3 +47057,Tennessee,Grainger County,5.4 +47059,Tennessee,Greene County,5.8 +47061,Tennessee,Grundy County,6.6 +47063,Tennessee,Hamblen County,5.3 +47065,Tennessee,Hamilton County,5 +47067,Tennessee,Hancock County,8 +47069,Tennessee,Hardeman County,6.2 +47071,Tennessee,Hardin County,6.2 +47073,Tennessee,Hawkins County,5.5 +47075,Tennessee,Haywood County,6.5 +47077,Tennessee,Henderson County,7 +47079,Tennessee,Henry County,6 +47081,Tennessee,Hickman County,4.6 +47083,Tennessee,Houston County,7.7 +47085,Tennessee,Humphreys County,6.2 +47087,Tennessee,Jackson County,7.3 +47089,Tennessee,Jefferson County,5.4 +47091,Tennessee,Johnson County,4.9 +47093,Tennessee,Knox County,4.3 +47095,Tennessee,Lake County,7.3 +47097,Tennessee,Lauderdale County,7.8 +47099,Tennessee,Lawrence County,5.9 +47101,Tennessee,Lewis County,5.8 +47103,Tennessee,Lincoln County,4.4 +47105,Tennessee,Loudon County,4.8 +47107,Tennessee,McMinn County,5.8 +47109,Tennessee,McNairy County,7.4 +47111,Tennessee,Macon County,4.5 +47113,Tennessee,Madison County,5.3 +47115,Tennessee,Marion County,6.7 +47117,Tennessee,Marshall County,4.8 +47119,Tennessee,Maury County,4.2 +47121,Tennessee,Meigs County,7.2 +47123,Tennessee,Monroe County,5.5 +47125,Tennessee,Montgomery County,5.5 +47127,Tennessee,Moore County,4.2 +47129,Tennessee,Morgan County,6.6 +47131,Tennessee,Obion County,7.5 +47133,Tennessee,Overton County,5.6 +47135,Tennessee,Perry County,6.2 +47137,Tennessee,Pickett County,5.7 +47139,Tennessee,Polk County,5.8 +47141,Tennessee,Putnam County,5.2 +47143,Tennessee,Rhea County,7.5 +47145,Tennessee,Roane County,5.8 +47147,Tennessee,Robertson County,4.4 +47149,Tennessee,Rutherford County,4 +47151,Tennessee,Scott County,7.4 +47153,Tennessee,Sequatchie County,6.1 +47155,Tennessee,Sevier County,4.2 +47157,Tennessee,Shelby County,5.8 +47159,Tennessee,Smith County,4.6 +47161,Tennessee,Stewart County,6.8 +47163,Tennessee,Sullivan County,5.5 +47165,Tennessee,Sumner County,4.1 +47167,Tennessee,Tipton County,5.9 +47169,Tennessee,Trousdale County,4.9 +47171,Tennessee,Unicoi County,6.9 +47173,Tennessee,Union County,5.9 +47175,Tennessee,Van Buren County,5.8 +47177,Tennessee,Warren County,4.8 +47179,Tennessee,Washington County,5.1 +47181,Tennessee,Wayne County,6.2 +47183,Tennessee,Weakley County,7.3 +47185,Tennessee,White County,5.4 +47187,Tennessee,Williamson County,3.7 +47189,Tennessee,Wilson County,4 +48001,Texas,Anderson County,4.8 +48003,Texas,Andrews County,4.9 +48005,Texas,Angelina County,6.6 +48007,Texas,Aransas County,5.9 +48009,Texas,Archer County,4.5 +48011,Texas,Armstrong County,3.5 +48013,Texas,Atascosa County,5.7 +48015,Texas,Austin County,5.9 +48017,Texas,Bailey County,4.6 +48019,Texas,Bandera County,4.3 +48021,Texas,Bastrop County,4.1 +48023,Texas,Baylor County,3.5 +48025,Texas,Bee County,8.5 +48027,Texas,Bell County,4.8 +48029,Texas,Bexar County,4.1 +48031,Texas,Blanco County,3.3 +48033,Texas,Borden County,3.4 +48035,Texas,Bosque County,4.7 +48037,Texas,Bowie County,5.4 +48039,Texas,Brazoria County,5.7 +48041,Texas,Brazos County,3.9 +48043,Texas,Brewster County,4.3 +48045,Texas,Briscoe County,4.8 +48047,Texas,Brooks County,12.5 +48049,Texas,Brown County,4.8 +48051,Texas,Burleson County,5.2 +48053,Texas,Burnet County,3.8 +48055,Texas,Caldwell County,4.5 +48057,Texas,Calhoun County,5.5 +48059,Texas,Callahan County,4.6 +48061,Texas,Cameron County,7.6 +48063,Texas,Camp County,7.8 +48065,Texas,Carson County,3.5 +48067,Texas,Cass County,8.2 +48069,Texas,Castro County,3.5 +48071,Texas,Chambers County,6.8 +48073,Texas,Cherokee County,5.5 +48075,Texas,Childress County,3.5 +48077,Texas,Clay County,4.5 +48079,Texas,Cochran County,6 +48081,Texas,Coke County,3.9 +48083,Texas,Coleman County,6.4 +48085,Texas,Collin County,3.8 +48087,Texas,Collingsworth County,3.6 +48089,Texas,Colorado County,5.3 +48091,Texas,Comal County,4.2 +48093,Texas,Comanche County,4.6 +48095,Texas,Concho County,3.2 +48097,Texas,Cooke County,4.2 +48099,Texas,Coryell County,4.9 +48101,Texas,Cottle County,5 +48103,Texas,Crane County,9.1 +48105,Texas,Crockett County,6.7 +48107,Texas,Crosby County,5.1 +48109,Texas,Culberson County,4.1 +48111,Texas,Dallam County,2.5 +48113,Texas,Dallas County,4.2 +48115,Texas,Dawson County,6 +48117,Texas,Deaf Smith County,3.5 +48119,Texas,Delta County,4.3 +48121,Texas,Denton County,3.7 +48123,Texas,DeWitt County,6 +48125,Texas,Dickens County,5.7 +48127,Texas,Dimmit County,7.4 +48129,Texas,Donley County,5.3 +48131,Texas,Duval County,12.1 +48133,Texas,Eastland County,5.7 +48135,Texas,Ector County,6.8 +48137,Texas,Edwards County,5.2 +48139,Texas,Ellis County,4.1 +48141,Texas,El Paso County,5.4 +48143,Texas,Erath County,4.7 +48145,Texas,Falls County,4.6 +48147,Texas,Fannin County,4.1 +48149,Texas,Fayette County,4.1 +48151,Texas,Fisher County,4.7 +48153,Texas,Floyd County,5.5 +48155,Texas,Foard County,4.6 +48157,Texas,Fort Bend County,5.7 +48159,Texas,Franklin County,5.5 +48161,Texas,Freestone County,7.2 +48163,Texas,Frio County,5.4 +48165,Texas,Gaines County,3.7 +48167,Texas,Galveston County,5.9 +48169,Texas,Garza County,3.8 +48171,Texas,Gillespie County,3.1 +48173,Texas,Glasscock County,4.3 +48175,Texas,Goliad County,5.7 +48177,Texas,Gonzales County,4.6 +48179,Texas,Gray County,7.3 +48181,Texas,Grayson County,4 +48183,Texas,Gregg County,6.8 +48185,Texas,Grimes County,7.6 +48187,Texas,Guadalupe County,4 +48189,Texas,Hale County,6.4 +48191,Texas,Hall County,8.2 +48193,Texas,Hamilton County,5.3 +48195,Texas,Hansford County,3.2 +48197,Texas,Hardeman County,4.2 +48199,Texas,Hardin County,6.8 +48201,Texas,Harris County,5.8 +48203,Texas,Harrison County,6.7 +48205,Texas,Hartley County,2.1 +48207,Texas,Haskell County,5.1 +48209,Texas,Hays County,3.7 +48211,Texas,Hemphill County,3.8 +48213,Texas,Henderson County,5.3 +48215,Texas,Hidalgo County,8.4 +48217,Texas,Hill County,4.8 +48219,Texas,Hockley County,5.1 +48221,Texas,Hood County,5 +48223,Texas,Hopkins County,4.5 +48225,Texas,Houston County,5 +48227,Texas,Howard County,6.1 +48229,Texas,Hudspeth County,7 +48231,Texas,Hunt County,4.5 +48233,Texas,Hutchinson County,6.7 +48235,Texas,Irion County,3.3 +48237,Texas,Jack County,5.2 +48239,Texas,Jackson County,5.3 +48241,Texas,Jasper County,8.8 +48243,Texas,Jeff Davis County,2.9 +48245,Texas,Jefferson County,7.6 +48247,Texas,Jim Hogg County,9.9 +48249,Texas,Jim Wells County,11.3 +48251,Texas,Johnson County,4.7 +48253,Texas,Jones County,6.2 +48255,Texas,Karnes County,5.3 +48257,Texas,Kaufman County,4 +48259,Texas,Kendall County,3.6 +48261,Texas,Kenedy County,5.4 +48263,Texas,Kent County,2.9 +48265,Texas,Kerr County,3.9 +48267,Texas,Kimble County,3.9 +48269,Texas,King County,3.6 +48271,Texas,Kinney County,6.6 +48273,Texas,Kleberg County,7.9 +48275,Texas,Knox County,5.3 +48277,Texas,Lamar County,5.4 +48279,Texas,Lamb County,7.1 +48281,Texas,Lampasas County,4.6 +48283,Texas,La Salle County,5.7 +48285,Texas,Lavaca County,4.7 +48287,Texas,Lee County,4.2 +48289,Texas,Leon County,7.3 +48291,Texas,Liberty County,8.5 +48293,Texas,Limestone County,6.2 +48295,Texas,Lipscomb County,5.1 +48297,Texas,Live Oak County,5.5 +48299,Texas,Llano County,4.3 +48301,Texas,Loving County,4.4 +48303,Texas,Lubbock County,3.7 +48305,Texas,Lynn County,4.5 +48307,Texas,McCulloch County,5.1 +48309,Texas,McLennan County,4.4 +48311,Texas,McMullen County,2.2 +48313,Texas,Madison County,4.8 +48315,Texas,Marion County,7.7 +48317,Texas,Martin County,4.8 +48319,Texas,Mason County,3.7 +48321,Texas,Matagorda County,7.6 +48323,Texas,Maverick County,11.4 +48325,Texas,Medina County,4.8 +48327,Texas,Menard County,5 +48329,Texas,Midland County,4.6 +48331,Texas,Milam County,5.6 +48333,Texas,Mills County,4.6 +48335,Texas,Mitchell County,7.3 +48337,Texas,Montague County,5.1 +48339,Texas,Montgomery County,5.5 +48341,Texas,Moore County,3.2 +48343,Texas,Morris County,13.1 +48345,Texas,Motley County,3.9 +48347,Texas,Nacogdoches County,5.5 +48349,Texas,Navarro County,4.6 +48351,Texas,Newton County,7.9 +48353,Texas,Nolan County,5.1 +48355,Texas,Nueces County,5.9 +48357,Texas,Ochiltree County,5.4 +48359,Texas,Oldham County,3.4 +48361,Texas,Orange County,7.5 +48363,Texas,Palo Pinto County,5.9 +48365,Texas,Panola County,7.5 +48367,Texas,Parker County,4.3 +48369,Texas,Parmer County,2.8 +48371,Texas,Pecos County,5.9 +48373,Texas,Polk County,7.1 +48375,Texas,Potter County,3.6 +48377,Texas,Presidio County,11.9 +48379,Texas,Rains County,4.5 +48381,Texas,Randall County,3.2 +48383,Texas,Reagan County,7.7 +48385,Texas,Real County,5.3 +48387,Texas,Red River County,6.6 +48389,Texas,Reeves County,6.1 +48391,Texas,Refugio County,7.4 +48393,Texas,Roberts County,4.9 +48395,Texas,Robertson County,5.5 +48397,Texas,Rockwall County,3.9 +48399,Texas,Runnels County,4.8 +48401,Texas,Rusk County,6.4 +48403,Texas,Sabine County,9.8 +48405,Texas,San Augustine County,9.6 +48407,Texas,San Jacinto County,6.9 +48409,Texas,San Patricio County,7.8 +48411,Texas,San Saba County,3.9 +48413,Texas,Schleicher County,5.9 +48415,Texas,Scurry County,6.3 +48417,Texas,Shackelford County,4 +48419,Texas,Shelby County,6.5 +48421,Texas,Sherman County,3.4 +48423,Texas,Smith County,5.1 +48425,Texas,Somervell County,5.1 +48427,Texas,Starr County,14.1 +48429,Texas,Stephens County,5.9 +48431,Texas,Sterling County,3.8 +48433,Texas,Stonewall County,4.9 +48435,Texas,Sutton County,8.5 +48437,Texas,Swisher County,4.7 +48439,Texas,Tarrant County,4.2 +48441,Texas,Taylor County,4 +48443,Texas,Terrell County,4.1 +48445,Texas,Terry County,5.5 +48447,Texas,Throckmorton County,4 +48449,Texas,Titus County,7.2 +48451,Texas,Tom Green County,4.7 +48453,Texas,Travis County,3.4 +48455,Texas,Trinity County,6.7 +48457,Texas,Tyler County,8.2 +48459,Texas,Upshur County,7.3 +48461,Texas,Upton County,5 +48463,Texas,Uvalde County,5.6 +48465,Texas,Val Verde County,6.7 +48467,Texas,Van Zandt County,4.6 +48469,Texas,Victoria County,5.7 +48471,Texas,Walker County,6.2 +48473,Texas,Waller County,6.4 +48475,Texas,Ward County,5.8 +48477,Texas,Washington County,5.6 +48479,Texas,Webb County,5.2 +48481,Texas,Wharton County,5.4 +48483,Texas,Wheeler County,4.4 +48485,Texas,Wichita County,4.6 +48487,Texas,Wilbarger County,5.4 +48489,Texas,Willacy County,13.3 +48491,Texas,Williamson County,3.6 +48493,Texas,Wilson County,4.2 +48495,Texas,Winkler County,8.5 +48497,Texas,Wise County,5.1 +48499,Texas,Wood County,5.8 +48501,Texas,Yoakum County,5 +48503,Texas,Young County,4.8 +48505,Texas,Zapata County,11.2 +48507,Texas,Zavala County,17.3 +49001,Utah,Beaver County,6.1 +49003,Utah,Box Elder County,3.3 +49005,Utah,Cache County,3 +49007,Utah,Carbon County,6.1 +49009,Utah,Daggett County,3.4 +49011,Utah,Davis County,3.1 +49013,Utah,Duchesne County,8.6 +49015,Utah,Emery County,5.9 +49017,Utah,Garfield County,5.3 +49019,Utah,Grand County,3.5 +49021,Utah,Iron County,4.6 +49023,Utah,Juab County,3.4 +49025,Utah,Kane County,2.8 +49027,Utah,Millard County,3.2 +49029,Utah,Morgan County,2.8 +49031,Utah,Piute County,4.8 +49033,Utah,Rich County,2.2 +49035,Utah,Salt Lake County,3.2 +49037,Utah,San Juan County,7.3 +49039,Utah,Sanpete County,4 +49041,Utah,Sevier County,4.2 +49043,Utah,Summit County,2.9 +49045,Utah,Tooele County,3.9 +49047,Utah,Uintah County,9.8 +49049,Utah,Utah County,3.1 +49051,Utah,Wasatch County,3 +49053,Utah,Washington County,3.5 +49055,Utah,Wayne County,5.3 +49057,Utah,Weber County,3.7 +50001,Vermont,Addison County,3.1 +50003,Vermont,Bennington County,4 +50005,Vermont,Caledonia County,4.2 +50007,Vermont,Chittenden County,2.7 +50009,Vermont,Essex County,5.2 +50011,Vermont,Franklin County,3.2 +50013,Vermont,Grand Isle County,3.7 +50015,Vermont,Lamoille County,3.7 +50017,Vermont,Orange County,2.9 +50019,Vermont,Orleans County,4.5 +50021,Vermont,Rutland County,4 +50023,Vermont,Washington County,3.1 +50025,Vermont,Windham County,3.3 +50027,Vermont,Windsor County,3.1 +51001,Virginia,Accomack County,4.3 +51003,Virginia,Albemarle County,3.6 +51005,Virginia,Alleghany County,4.9 +51007,Virginia,Amelia County,4.3 +51009,Virginia,Amherst County,4.6 +51011,Virginia,Appomattox County,4.7 +51013,Virginia,Arlington County,2.6 +51015,Virginia,Augusta County,3.6 +51017,Virginia,Bath County,3.6 +51019,Virginia,Bedford County,4.1 +51021,Virginia,Bland County,6.4 +51023,Virginia,Botetourt County,3.5 +51025,Virginia,Brunswick County,5.9 +51027,Virginia,Buchanan County,10.9 +51029,Virginia,Buckingham County,5.1 +51031,Virginia,Campbell County,4.5 +51033,Virginia,Caroline County,4.3 +51035,Virginia,Carroll County,5.9 +51036,Virginia,Charles City County,4.4 +51037,Virginia,Charlotte County,5.2 +51041,Virginia,Chesterfield County,3.8 +51043,Virginia,Clarke County,3.3 +51045,Virginia,Craig County,4.4 +51047,Virginia,Culpeper County,3.8 +51049,Virginia,Cumberland County,4.6 +51051,Virginia,Dickenson County,10 +51053,Virginia,Dinwiddie County,4.8 +51057,Virginia,Essex County,4.7 +51059,Virginia,Fairfax County,3.2 +51061,Virginia,Fauquier County,3.4 +51063,Virginia,Floyd County,4.4 +51065,Virginia,Fluvanna County,3.4 +51067,Virginia,Franklin County,4.3 +51069,Virginia,Frederick County,3.4 +51071,Virginia,Giles County,6.9 +51073,Virginia,Gloucester County,3.6 +51075,Virginia,Goochland County,3.6 +51077,Virginia,Grayson County,5.2 +51079,Virginia,Greene County,3.2 +51081,Virginia,Greensville County,5.1 +51083,Virginia,Halifax County,6.2 +51085,Virginia,Hanover County,3.5 +51087,Virginia,Henrico County,3.9 +51089,Virginia,Henry County,5.4 +51091,Virginia,Highland County,3 +51093,Virginia,Isle of Wight County,4.4 +51095,Virginia,James City County,3.8 +51097,Virginia,King and Queen County,4.2 +51099,Virginia,King George County,4.1 +51101,Virginia,King William County,3.7 +51103,Virginia,Lancaster County,4.4 +51105,Virginia,Lee County,6.9 +51107,Virginia,Loudoun County,3.2 +51109,Virginia,Louisa County,3.7 +51111,Virginia,Lunenburg County,4.6 +51113,Virginia,Madison County,3.1 +51115,Virginia,Mathews County,3.8 +51117,Virginia,Mecklenburg County,5.6 +51119,Virginia,Middlesex County,3.7 +51121,Virginia,Montgomery County,4.5 +51125,Virginia,Nelson County,3.5 +51127,Virginia,New Kent County,3.3 +51131,Virginia,Northampton County,5 +51133,Virginia,Northumberland County,4.4 +51135,Virginia,Nottoway County,4 +51137,Virginia,Orange County,3.9 +51139,Virginia,Page County,4.5 +51141,Virginia,Patrick County,4.5 +51143,Virginia,Pittsylvania County,4.9 +51145,Virginia,Powhatan County,3.6 +51147,Virginia,Prince Edward County,5.6 +51149,Virginia,Prince George County,4.9 +51153,Virginia,Prince William County,3.6 +51155,Virginia,Pulaski County,10 +51157,Virginia,Rappahannock County,3.5 +51159,Virginia,Richmond County,3.3 +51161,Virginia,Roanoke County,3.6 +51163,Virginia,Rockbridge County,4.3 +51165,Virginia,Rockingham County,3.6 +51167,Virginia,Russell County,6.5 +51169,Virginia,Scott County,4.6 +51171,Virginia,Shenandoah County,3.6 +51173,Virginia,Smyth County,5.6 +51175,Virginia,Southampton County,3.8 +51177,Virginia,Spotsylvania County,4.1 +51179,Virginia,Stafford County,4 +51181,Virginia,Surry County,5.6 +51183,Virginia,Sussex County,5.9 +51185,Virginia,Tazewell County,8.1 +51187,Virginia,Warren County,3.9 +51191,Virginia,Washington County,4.6 +51193,Virginia,Westmoreland County,4.2 +51195,Virginia,Wise County,8.7 +51197,Virginia,Wythe County,7 +51199,Virginia,York County,4 +51510,Virginia,Alexandria city,2.9 +51520,Virginia,Bristol city,5.2 +51530,Virginia,Buena Vista city,5.1 +51540,Virginia,Charlottesville city,3.5 +51550,Virginia,Chesapeake city,4.4 +51570,Virginia,Colonial Heights city,4.5 +51580,Virginia,Covington city,5.8 +51590,Virginia,Danville city,6.6 +51595,Virginia,Emporia city,6.4 +51600,Virginia,Fairfax city,3.1 +51610,Virginia,Falls Church city,2.7 +51620,Virginia,Franklin city,5.9 +51630,Virginia,Fredericksburg city,4.7 +51640,Virginia,Galax city,5.1 +51650,Virginia,Hampton city,5.7 +51660,Virginia,Harrisonburg city,5.2 +51670,Virginia,Hopewell city,6.5 +51678,Virginia,Lexington city,7.4 +51680,Virginia,Lynchburg city,5.5 +51683,Virginia,Manassas city,3.5 +51685,Virginia,Manassas Park city,3.5 +51690,Virginia,Martinsville city,6.8 +51700,Virginia,Newport News city,5.1 +51710,Virginia,Norfolk city,5.4 +51720,Virginia,Norton city,7.2 +51730,Virginia,Petersburg city,7.4 +51735,Virginia,Poquoson city,3.6 +51740,Virginia,Portsmouth city,6.2 +51750,Virginia,Radford city,6.7 +51760,Virginia,Richmond city,4.7 +51770,Virginia,Roanoke city,4.4 +51775,Virginia,Salem city,4 +51790,Virginia,Staunton city,3.9 +51800,Virginia,Suffolk city,4.7 +51810,Virginia,Virginia Beach city,4 +51820,Virginia,Waynesboro city,4.1 +51830,Virginia,Williamsburg city,5.9 +51840,Virginia,Winchester city,3.9 +53001,Washington,Adams County,4.8 +53003,Washington,Asotin County,4.7 +53005,Washington,Benton County,6.5 +53007,Washington,Chelan County,5.1 +53009,Washington,Clallam County,7.6 +53011,Washington,Clark County,6.6 +53013,Washington,Columbia County,5.9 +53015,Washington,Cowlitz County,7.6 +53017,Washington,Douglas County,6.6 +53019,Washington,Ferry County,9.8 +53021,Washington,Franklin County,6.5 +53023,Washington,Garfield County,5.3 +53025,Washington,Grant County,6.6 +53027,Washington,Grays Harbor County,8.7 +53029,Washington,Island County,6 +53031,Washington,Jefferson County,7.2 +53033,Washington,King County,3.9 +53035,Washington,Kitsap County,5.9 +53037,Washington,Kittitas County,5.8 +53039,Washington,Klickitat County,6.5 +53041,Washington,Lewis County,8.1 +53043,Washington,Lincoln County,4.1 +53045,Washington,Mason County,8.3 +53047,Washington,Okanogan County,6.1 +53049,Washington,Pacific County,7.7 +53051,Washington,Pend Oreille County,8.9 +53053,Washington,Pierce County,6.5 +53055,Washington,San Juan County,3.9 +53057,Washington,Skagit County,6.7 +53059,Washington,Skamania County,6.7 +53061,Washington,Snohomish County,4.3 +53063,Washington,Spokane County,6.3 +53065,Washington,Stevens County,7.9 +53067,Washington,Thurston County,5.9 +53069,Washington,Wahkiakum County,8.4 +53071,Washington,Walla Walla County,5.6 +53073,Washington,Whatcom County,6.3 +53075,Washington,Whitman County,5.5 +53077,Washington,Yakima County,7.3 +54001,West Virginia,Barbour County,5.8 +54003,West Virginia,Berkeley County,4 +54005,West Virginia,Boone County,8.5 +54007,West Virginia,Braxton County,6.9 +54009,West Virginia,Brooke County,6.5 +54011,West Virginia,Cabell County,4.8 +54013,West Virginia,Calhoun County,8.5 +54015,West Virginia,Clay County,9.1 +54017,West Virginia,Doddridge County,4.9 +54019,West Virginia,Fayette County,6.8 +54021,West Virginia,Gilmer County,6.8 +54023,West Virginia,Grant County,6.1 +54025,West Virginia,Greenbrier County,4.5 +54027,West Virginia,Hampshire County,4.1 +54029,West Virginia,Hancock County,6.5 +54031,West Virginia,Hardy County,5.3 +54033,West Virginia,Harrison County,5.4 +54035,West Virginia,Jackson County,5.9 +54037,West Virginia,Jefferson County,3.4 +54039,West Virginia,Kanawha County,5.2 +54041,West Virginia,Lewis County,7.1 +54043,West Virginia,Lincoln County,7.4 +54045,West Virginia,Logan County,10 +54047,West Virginia,McDowell County,13.1 +54049,West Virginia,Marion County,6 +54051,West Virginia,Marshall County,7 +54053,West Virginia,Mason County,7 +54055,West Virginia,Mercer County,6.7 +54057,West Virginia,Mineral County,6 +54059,West Virginia,Mingo County,11.7 +54061,West Virginia,Monongalia County,4.5 +54063,West Virginia,Monroe County,4.5 +54065,West Virginia,Morgan County,4.5 +54067,West Virginia,Nicholas County,8.5 +54069,West Virginia,Ohio County,5.3 +54071,West Virginia,Pendleton County,3.5 +54073,West Virginia,Pleasants County,7.5 +54075,West Virginia,Pocahontas County,5.1 +54077,West Virginia,Preston County,5.2 +54079,West Virginia,Putnam County,4.6 +54081,West Virginia,Raleigh County,6.3 +54083,West Virginia,Randolph County,5.3 +54085,West Virginia,Ritchie County,5.9 +54087,West Virginia,Roane County,8.5 +54089,West Virginia,Summers County,5.5 +54091,West Virginia,Taylor County,5.2 +54093,West Virginia,Tucker County,4.8 +54095,West Virginia,Tyler County,8.1 +54097,West Virginia,Upshur County,7 +54099,West Virginia,Wayne County,6.3 +54101,West Virginia,Webster County,8.2 +54103,West Virginia,Wetzel County,8.1 +54105,West Virginia,Wirt County,8.1 +54107,West Virginia,Wood County,5.7 +54109,West Virginia,Wyoming County,9.4 +55001,Wisconsin,Adams County,5.6 +55003,Wisconsin,Ashland County,5.1 +55005,Wisconsin,Barron County,3.9 +55007,Wisconsin,Bayfield County,5.8 +55009,Wisconsin,Brown County,3.6 +55011,Wisconsin,Buffalo County,4.2 +55013,Wisconsin,Burnett County,4.9 +55015,Wisconsin,Calumet County,3.4 +55017,Wisconsin,Chippewa County,3.6 +55019,Wisconsin,Clark County,3.2 +55021,Wisconsin,Columbia County,3.3 +55023,Wisconsin,Crawford County,4.3 +55025,Wisconsin,Dane County,2.8 +55027,Wisconsin,Dodge County,3.7 +55029,Wisconsin,Door County,3.4 +55031,Wisconsin,Douglas County,5.2 +55033,Wisconsin,Dunn County,3.8 +55035,Wisconsin,Eau Claire County,3.4 +55037,Wisconsin,Florence County,5.5 +55039,Wisconsin,Fond du Lac County,3.6 +55041,Wisconsin,Forest County,6.2 +55043,Wisconsin,Grant County,3.7 +55045,Wisconsin,Green County,3.1 +55047,Wisconsin,Green Lake County,3.9 +55049,Wisconsin,Iowa County,3 +55051,Wisconsin,Iron County,7 +55053,Wisconsin,Jackson County,3.7 +55055,Wisconsin,Jefferson County,3.9 +55057,Wisconsin,Juneau County,4 +55059,Wisconsin,Kenosha County,4.8 +55061,Wisconsin,Kewaunee County,3.1 +55063,Wisconsin,La Crosse County,3.7 +55065,Wisconsin,Lafayette County,2.9 +55067,Wisconsin,Langlade County,5.4 +55069,Wisconsin,Lincoln County,4.3 +55071,Wisconsin,Manitowoc County,4.3 +55073,Wisconsin,Marathon County,3.4 +55075,Wisconsin,Marinette County,5.2 +55077,Wisconsin,Marquette County,4.7 +55078,Wisconsin,Menominee County,8.6 +55079,Wisconsin,Milwaukee County,5.5 +55081,Wisconsin,Monroe County,3.5 +55083,Wisconsin,Oconto County,3.9 +55085,Wisconsin,Oneida County,4.3 +55087,Wisconsin,Outagamie County,3.5 +55089,Wisconsin,Ozaukee County,3.4 +55091,Wisconsin,Pepin County,3.2 +55093,Wisconsin,Pierce County,3.8 +55095,Wisconsin,Polk County,3.8 +55097,Wisconsin,Portage County,3.5 +55099,Wisconsin,Price County,3.8 +55101,Wisconsin,Racine County,5.3 +55103,Wisconsin,Richland County,3.4 +55105,Wisconsin,Rock County,4.3 +55107,Wisconsin,Rusk County,4.5 +55109,Wisconsin,St. Croix County,3.5 +55111,Wisconsin,Sauk County,3.1 +55113,Wisconsin,Sawyer County,5.6 +55115,Wisconsin,Shawano County,3.9 +55117,Wisconsin,Sheboygan County,3.3 +55119,Wisconsin,Taylor County,3.5 +55121,Wisconsin,Trempealeau County,3.4 +55123,Wisconsin,Vernon County,3.1 +55125,Wisconsin,Vilas County,4.5 +55127,Wisconsin,Walworth County,4 +55129,Wisconsin,Washburn County,4.6 +55131,Wisconsin,Washington County,3.4 +55133,Wisconsin,Waukesha County,3.6 +55135,Wisconsin,Waupaca County,3.7 +55137,Wisconsin,Waushara County,4.6 +55139,Wisconsin,Winnebago County,3.7 +55141,Wisconsin,Wood County,4.7 +56001,Wyoming,Albany County,3.3 +56003,Wyoming,Big Horn County,4.4 +56005,Wyoming,Campbell County,6.8 +56007,Wyoming,Carbon County,4.1 +56009,Wyoming,Converse County,6 +56011,Wyoming,Crook County,4 +56013,Wyoming,Fremont County,6.6 +56015,Wyoming,Goshen County,3.3 +56017,Wyoming,Hot Springs County,4.3 +56019,Wyoming,Johnson County,4.4 +56021,Wyoming,Laramie County,4 +56023,Wyoming,Lincoln County,3.8 +56025,Wyoming,Natrona County,6.8 +56027,Wyoming,Niobrara County,3.3 +56029,Wyoming,Park County,3.7 +56031,Wyoming,Platte County,4.6 +56033,Wyoming,Sheridan County,4 +56035,Wyoming,Sublette County,5.4 +56037,Wyoming,Sweetwater County,5.7 +56039,Wyoming,Teton County,2 +56041,Wyoming,Uinta County,5.3 +56043,Wyoming,Washakie County,4.5 +56045,Wyoming,Weston County,4.9 +72001,Puerto Rico,Adjuntas Municipio,15.7 +72003,Puerto Rico,Aguada Municipio,14.5 +72005,Puerto Rico,Aguadilla Municipio,14.9 +72007,Puerto Rico,Aguas Buenas Municipio,14.5 +72009,Puerto Rico,Aibonito Municipio,15.1 +72011,Puerto Rico,Anasco Municipio,13 +72013,Puerto Rico,Arecibo Municipio,13.7 +72015,Puerto Rico,Arroyo Municipio,18.7 +72017,Puerto Rico,Barceloneta Municipio,15 +72019,Puerto Rico,Barranquitas Municipio,14.1 +72021,Puerto Rico,Bayamon Municipio,9.2 +72023,Puerto Rico,Cabo Rojo Municipio,12.9 +72025,Puerto Rico,Caguas Municipio,10.7 +72027,Puerto Rico,Camuy Municipio,12.8 +72029,Puerto Rico,Canovanas Municipio,12.4 +72031,Puerto Rico,Carolina Municipio,8.8 +72033,Puerto Rico,Catano Municipio,9.9 +72035,Puerto Rico,Cayey Municipio,11.2 +72037,Puerto Rico,Ceiba Municipio,13.4 +72039,Puerto Rico,Ciales Municipio,16.9 +72041,Puerto Rico,Cidra Municipio,10.6 +72043,Puerto Rico,Coamo Municipio,19.5 +72045,Puerto Rico,Comerio Municipio,13.7 +72047,Puerto Rico,Corozal Municipio,12.6 +72049,Puerto Rico,Culebra Municipio,3.8 +72051,Puerto Rico,Dorado Municipio,8.5 +72053,Puerto Rico,Fajardo Municipio,13.8 +72054,Puerto Rico,Florida Municipio,15.4 +72055,Puerto Rico,Guanica Municipio,17.9 +72057,Puerto Rico,Guayama Municipio,17.3 +72059,Puerto Rico,Guayanilla Municipio,18.1 +72061,Puerto Rico,Guaynabo Municipio,6.3 +72063,Puerto Rico,Gurabo Municipio,9.2 +72065,Puerto Rico,Hatillo Municipio,14.1 +72067,Puerto Rico,Hormigueros Municipio,12.7 +72069,Puerto Rico,Humacao Municipio,14.2 +72071,Puerto Rico,Isabela Municipio,14.3 +72073,Puerto Rico,Jayuya Municipio,12.5 +72075,Puerto Rico,Juana Diaz Municipio,15.8 +72077,Puerto Rico,Juncos Municipio,13.4 +72079,Puerto Rico,Lajas Municipio,18.8 +72081,Puerto Rico,Lares Municipio,17.8 +72083,Puerto Rico,Las Marias Municipio,13.7 +72085,Puerto Rico,Las Piedras Municipio,14.7 +72087,Puerto Rico,Loiza Municipio,12.7 +72089,Puerto Rico,Luquillo Municipio,15 +72091,Puerto Rico,Manati Municipio,12.2 +72093,Puerto Rico,Maricao Municipio,13.7 +72095,Puerto Rico,Maunabo Municipio,17.7 +72097,Puerto Rico,Mayaguez Municipio,14.5 +72099,Puerto Rico,Moca Municipio,15.6 +72101,Puerto Rico,Morovis Municipio,14.3 +72103,Puerto Rico,Naguabo Municipio,12.8 +72105,Puerto Rico,Naranjito Municipio,13.6 +72107,Puerto Rico,Orocovis Municipio,15.4 +72109,Puerto Rico,Patillas Municipio,20.6 +72111,Puerto Rico,Penuelas Municipio,16.9 +72113,Puerto Rico,Ponce Municipio,13.8 +72115,Puerto Rico,Quebradillas Municipio,16.1 +72117,Puerto Rico,Rincon Municipio,13.3 +72119,Puerto Rico,Rio Grande Municipio,11.5 +72121,Puerto Rico,Sabana Grande Municipio,16.5 +72123,Puerto Rico,Salinas Municipio,23.4 +72125,Puerto Rico,San German Municipio,15.4 +72127,Puerto Rico,San Juan Municipio,8.2 +72129,Puerto Rico,San Lorenzo Municipio,13.2 +72131,Puerto Rico,San Sebastian Municipio,18.1 +72133,Puerto Rico,Santa Isabel Municipio,20.6 +72135,Puerto Rico,Toa Alta Municipio,8.9 +72137,Puerto Rico,Toa Baja Municipio,9.1 +72139,Puerto Rico,Trujillo Alto Municipio,7.6 +72141,Puerto Rico,Utuado Municipio,15.3 +72143,Puerto Rico,Vega Alta Municipio,12 +72145,Puerto Rico,Vega Baja Municipio,14.3 +72147,Puerto Rico,Vieques Municipio,11.3 +72149,Puerto Rico,Villalba Municipio,19.6 +72151,Puerto Rico,Yabucoa Municipio,16.6 +72153,Puerto Rico,Yauco Municipio,18 diff --git a/docs/static/data/examples/geo/walmarts.csv b/docs/static/data/examples/geo/walmarts.csv new file mode 100644 index 000000000..9e70d5e29 --- /dev/null +++ b/docs/static/data/examples/geo/walmarts.csv @@ -0,0 +1,3110 @@ +longitude,latitude,date +-94.148036,36.334145,1962-07-01 +-92.966037,36.203334,1964-08-01 +-83.459929,34.24863,1988-04-12 +-94.513179,36.181117,1965-08-01 +-92.439708,35.110687,1972-05-01 +-92.275897,34.790476,1967-10-01 +-92.72818,35.131691,1967-10-01 +-89.579482,36.86933,1968-03-01 +-94.977187,35.890855,1968-07-01 +-92.465717,36.452566,1968-03-01 +-95.60734,36.32548,1968-07-01 +-94.310477,37.141918,1968-11-01 +-92.649472,37.658495,1969-04-01 +-91.860475,36.727714,1969-05-01 +-94.356251,35.469947,1969-04-01 +-94.394421,36.841485,1969-05-01 +-91.21215,35.71028,1969-11-01 +-90.408144,36.755411,1990-04-03 +-93.749461,38.366172,1970-10-01 +-92.146829,37.82642,1970-03-01 +-95.319049,36.3062,1970-10-01 +-92.0807,32.516689,1970-11-01 +-92.11035,34.883828,1971-04-01 +-91.884766,39.170871,1971-02-01 +-94.914155,39.319931,1970-11-01 +-91.546032,37.636087,1971-02-01 +-94.85117,36.976639,1971-05-01 +-92.185145,38.564489,1971-08-01 +-89.953355,36.79946,1971-11-01 +-94.632948,35.045605,1971-06-01 +-93.259842,36.640851,1971-06-01 +-93.788686,34.045389,1971-06-01 +-94.099869,37.391323,1971-11-01 +-96.558692,39.186668,1971-10-01 +-90.524918,36.059925,1971-11-01 +-90.435012,37.787944,1971-09-01 +-94.800283,33.89552,1971-12-09 +-94.705373,37.810235,1972-03-01 +-92.454,39.43233,1971-11-01 +-95.932435,36.739207,1972-05-01 +-95.643001,37.033267,1973-02-01 +-96.825073,39.021883,1972-05-01 +-92.565568,38.333763,1972-02-01 +-90.685164,35.821221,1972-08-01 +-93.396757,37.594649,1972-08-01 +-94.812222,35.44892,1972-07-01 +-93.947829,36.915901,1972-11-01 +-95.510044,34.010795,1972-10-01 +-95.143509,36.63598,1973-09-01 +-91.943907,38.86403,1973-05-01 +-93.089517,34.493086,1972-07-01 +-94.143611,36.167274,1972-06-01 +-93.902379,35.141897,1972-10-01 +-92.676769,36.962221,1973-08-01 +-90.971722,36.07489,1972-10-01 +-93.106773,35.278174,1973-05-01 +-94.477694,37.07405,1972-05-01 +-90.980646,38.97841,1975-03-01 +-93.737229,38.779135,1972-11-01 +-89.856079,35.928492,1972-11-01 +-95.395139,35.957489,1973-09-01 +-89.240636,35.592466,1973-02-01 +-91.15795,38.221185,1973-07-03 +-93.456641,35.44847,1973-08-01 +-94.225727,34.58631,1973-07-01 +-90.751552,35.244479,1973-08-01 +-90.391083,38.212753,1973-12-01 +-90.148524,35.154948,1974-07-01 +-90.95828,36.248073,1973-11-01 +-94.704909,37.433371,1974-01-01 +-96.160018,35.98849,1974-10-01 +-89.984357,35.697714,1973-11-01 +-92.410009,31.366854,1984-11-13 +-93.585117,36.377735,1973-11-01 +-97.41592,30.599448,1979-10-30 +-92.921458,37.336332,1973-09-01 +-94.546108,37.084652,1974-04-01 +-92.33425,38.937799,1973-06-01 +-94.63366,35.817263,1973-06-01 +-89.885699,37.722972,1974-04-01 +-93.225167,33.226519,1974-08-01 +-92.413473,35.127358,1974-05-01 +-92.577651,34.581553,1974-04-01 +-93.310875,37.24721,1973-12-01 +-93.248095,32.627691,1974-07-01 +-92.26275,37.149916,1974-02-01 +-92.845464,37.935869,1974-02-01 +-94.769081,36.57897,1974-04-01 +-90.790971,35.029877,1974-09-01 +-93.718573,36.947616,1974-04-01 +-89.640142,35.583664,1974-10-01 +-89.855783,35.390412,1974-07-01 +-90.511653,37.872662,1974-10-01 +-94.349423,38.588583,1974-10-01 +-89.553434,35.747529,1974-11-01 +-91.887364,32.777717,1975-02-01 +-90.972254,38.433333,1976-02-01 +-94.221623,36.368584,1974-10-01 +-91.777317,37.939184,1976-02-01 +-91.548729,34.479278,1974-09-01 +-96.920932,35.384301,1975-08-01 +-88.745002,35.872336,1974-07-01 +-88.535216,34.908824,1974-08-01 +-88.895748,36.514801,1974-08-01 +-88.782561,36.324103,1974-10-01 +-97.425418,35.854994,1975-02-01 +-94.234316,39.75388,1975-02-01 +-95.452631,37.653335,1975-11-01 +-88.851806,33.441823,1975-04-01 +-97.933058,35.051213,1975-07-01 +-88.562734,34.676487,1975-04-01 +-88.659436,33.631959,1976-09-01 +-93.984754,32.857636,1975-08-01 +-94.739572,34.022301,1975-06-01 +-88.459403,33.967824,1976-04-01 +-91.613941,35.764825,1976-03-01 +-88.91491,35.841499,1976-03-01 +-95.96181,35.608125,1975-09-01 +-89.632978,37.364007,1975-11-01 +-96.652692,35.246473,1975-06-01 +-92.375747,34.670081,1975-03-01 +-94.410748,35.327836,1975-04-01 +-92.407155,34.747626,1976-03-01 +-92.828072,34.385231,1976-02-01 +-90.675056,35.806744,1978-08-01 +-97.143036,34.153414,1975-07-01 +-95.322847,35.770263,1975-07-01 +-94.968192,33.136035,1975-11-01 +-97.932608,35.848903,1976-02-01 +-94.117647,33.659928,1976-05-01 +-99.443183,35.411701,1976-08-01 +-93.554045,39.777542,1976-04-01 +-97.29936,36.81142,1976-04-01 +-97.051458,36.123412,1976-10-01 +-93.258547,37.239942,1977-11-01 +-97.366159,35.029998,1976-07-01 +-94.71564,31.358708,1976-09-01 +-94.341961,35.348672,1976-05-01 +-95.071379,33.611759,1976-05-01 +-88.359032,36.866705,1976-06-01 +-94.200566,36.052306,1976-09-01 +-91.07074,39.433396,1976-10-01 +-94.940109,32.746034,1976-03-01 +-96.589689,33.707891,1976-07-01 +-95.509797,33.661538,1976-06-01 +-92.708368,32.227875,1977-03-01 +-99.381687,36.414557,1976-10-01 +-95.745164,34.913535,1977-03-01 +-90.574939,38.154223,1976-12-01 +-89.980849,34.832285,1976-10-01 +-89.968554,34.624603,1977-08-01 +-89.664318,36.19748,1977-01-01 +-91.694259,35.250431,1977-01-01 +-96.192354,33.592867,1977-05-01 +-92.294135,38.956096,1977-03-01 +-91.618789,36.25054,1977-01-01 +-88.446906,36.001984,1977-05-01 +-98.244438,35.057896,1977-06-01 +-94.655301,31.649003,1977-02-01 +-89.02213,34.250798,1977-02-01 +-94.784436,32.159326,1977-05-01 +-91.894033,37.259569,1977-03-01 +-91.952974,33.136169,1977-04-01 +-95.884116,36.293026,1978-02-07 +-91.895726,34.795082,1977-09-01 +-93.067716,31.752704,1977-10-01 +-92.853593,33.585066,1977-11-01 +-91.030836,38.546345,1977-07-01 +-90.046548,37.985054,1977-10-01 +-80.755079,28.394482,1985-10-15 +-89.680555,35.0459,1977-11-01 +-88.949519,34.722679,1977-07-01 +-88.307303,36.283453,1977-11-01 +-98.648058,36.797537,1977-11-01 +-93.350579,37.182903,1977-02-01 +-95.264717,31.953321,1978-03-14 +-94.42351,33.448665,1978-08-08 +-91.037917,33.405817,1979-06-01 +-89.114342,33.175272,1977-10-01 +-94.255951,39.038534,1978-02-01 +-97.137213,33.641145,1993-07-21 +-96.849791,37.882633,1977-11-01 +-89.884439,37.831215,1977-07-01 +-92.582368,40.214976,1977-07-01 +-90.040789,36.236614,1977-07-01 +-87.053601,35.596441,1981-09-15 +-94.977095,29.749644,1985-01-22 +-94.2633,39.331554,1977-07-01 +-89.186425,37.73534,1977-07-01 +-90.641222,40.458596,1977-07-01 +-88.987588,38.622524,1977-07-01 +-89.397723,40.157926,1977-07-01 +-90.244319,39.723223,1977-07-01 +-89.954797,38.514528,1977-07-01 +-93.070888,39.790852,1978-08-29 +-87.885889,37.110323,1978-02-14 +-89.103355,32.771188,1978-03-28 +-96.627313,33.222766,1978-03-28 +-96.464213,36.317854,1978-03-21 +-94.739412,37.006126,1978-04-04 +-93.844736,35.502268,1978-06-01 +-96.247637,35.072406,1978-07-18 +-97.0988,32.007636,1978-09-12 +-97.48443,35.220425,1977-11-01 +-89.667248,39.182687,1978-05-16 +-94.015091,30.905547,1978-10-10 +-89.735503,33.471565,1979-05-15 +-88.969827,37.74193,1979-03-27 +-97.012005,33.045681,1978-09-05 +-88.571497,35.139496,1979-04-10 +-93.267125,38.709207,1978-10-03 +-97.339667,32.529497,1978-10-17 +-97.760235,35.49673,1978-10-31 +-89.703527,38.140855,1978-12-05 +-88.960256,38.312227,1978-06-13 +-96.994754,34.506304,1978-10-24 +-94.182678,33.113989,1978-10-17 +-97.972644,35.510946,1978-10-10 +-97.360422,32.360272,1978-09-19 +-90.536864,35.690659,1978-10-31 +-93.71448,35.291909,1978-12-05 +-96.645828,34.781583,1978-09-19 +-96.137671,34.370641,1978-09-19 +-89.222618,37.463057,1978-11-21 +-94.471038,39.22342,1978-12-05 +-90.595304,36.411387,1978-11-28 +-95.436583,31.316108,1979-02-01 +-89.167463,37.354718,1978-11-14 +-87.060804,35.204108,1979-02-13 +-89.380071,32.97513,1979-07-31 +-95.90001,33.257922,1979-06-19 +-94.843616,38.694721,1979-09-18 +-90.875475,38.813636,1980-10-15 +-92.653644,31.936231,1979-07-31 +-96.010725,36.368576,1979-09-18 +-95.974971,35.439822,1979-03-13 +-96.457597,31.685669,1979-08-28 +-95.099342,30.335157,1979-03-06 +-93.384076,38.242914,1979-03-27 +-95.482294,32.688034,1979-07-10 +-89.238858,38.02354,1980-03-18 +-90.315406,39.104947,1986-12-30 +-88.094511,38.739478,1979-11-13 +-89.958252,38.777707,1979-08-21 +-87.91782,37.682787,1979-10-30 +-88.706773,34.314085,1980-02-12 +-96.562685,32.853534,1979-08-28 +-96.848818,32.386291,1979-07-17 +-93.063281,34.455934,1981-12-01 +-88.935069,37.993939,1979-07-31 +-87.380157,36.062288,1979-06-26 +-96.303092,32.737185,1979-09-25 +-97.095407,32.931013,1980-06-24 +-94.475182,37.13358,1980-05-01 +-88.235245,35.202992,1979-10-23 +-98.422383,34.619294,1979-10-29 +-93.05554,32.800239,1981-08-04 +-97.78748,33.470038,1979-08-07 +-86.819722,35.947623,1979-08-21 +-88.351989,34.186772,1979-07-03 +-88.20244,34.804522,1979-08-21 +-94.951247,30.711104,1979-10-23 +-95.124472,35.253884,1981-02-18 +-97.493206,35.31996,1980-03-04 +-93.691677,32.52245,1981-06-30 +-94.413202,34.047941,1980-02-12 +-97.008993,30.652157,1979-10-30 +-92.029373,35.507387,1979-10-30 +-86.57136,36.696825,1980-09-30 +-93.838805,30.022938,1980-02-26 +-97.132479,32.579046,1979-09-25 +-94.942365,30.722199,1979-09-25 +-96.620744,32.330973,1979-12-04 +-87.568571,33.904134,1979-11-27 +-94.426614,30.766353,1979-10-30 +-91.38329,33.61007,1979-10-30 +-97.460945,29.515445,1980-07-01 +-97.668555,29.863313,1980-08-12 +-96.070721,30.397168,1980-05-28 +-87.105483,37.288826,1980-07-29 +-90.656645,38.506004,1980-04-01 +-93.16404,35.230807,1980-08-28 +-95.235631,30.105493,1981-09-01 +-86.156364,34.214275,1980-08-12 +-86.43503,36.951395,1980-09-30 +-85.761648,33.782651,1980-10-14 +-85.988924,34.009877,1980-08-12 +-89.313314,37.789031,1980-09-30 +-89.958081,34.622123,1980-09-03 +-86.886783,36.482569,1979-10-23 +-89.546376,32.7286,1979-11-20 +-86.565334,34.3158,1980-02-26 +-92.150163,32.501848,1982-11-16 +-86.045845,35.455293,1981-02-10 +-92.096269,29.97034,1980-10-28 +-92.364425,30.2307,1980-09-30 +-91.513567,29.812711,1980-10-13 +-92.277124,30.69783,1980-11-18 +-90.570608,38.410447,1981-04-07 +-86.567999,35.140415,1979-11-20 +-86.45029,33.971239,1980-10-14 +-86.091264,33.997147,1980-11-18 +-88.740381,39.06167,1981-09-15 +-94.446312,34.64201,1980-04-15 +-94.492649,38.81278,1980-06-24 +-96.899313,31.306295,1980-10-14 +-96.411065,30.150335,1980-11-11 +-96.332769,30.658718,1982-06-29 +-93.710773,32.031006,1980-09-03 +-96.391073,35.828294,1981-11-03 +-94.074012,38.99639,1980-10-14 +-93.718329,39.076045,1980-10-21 +-94.805651,36.418203,1980-08-05 +-90.153926,38.360853,1981-04-21 +-85.818398,33.7183,1980-04-15 +-96.997161,28.877441,1980-11-11 +-93.325516,30.232566,1981-02-10 +-86.706386,34.769813,1981-10-13 +-86.877488,37.414584,1981-02-03 +-89.901694,39.279782,1980-11-11 +-88.854223,35.667654,1980-11-11 +-92.398912,34.289155,1980-08-04 +-90.433984,37.78946,1980-11-18 +-94.296861,37.508334,1980-09-09 +-92.396949,33.833459,1980-11-18 +-95.529621,35.471623,1981-06-30 +-96.605302,39.84182,1980-11-18 +-95.508326,39.848765,1980-11-18 +-89.298183,39.558586,1981-06-02 +-96.288709,29.217384,1981-10-20 +-95.612415,31.73453,1982-08-03 +-97.109203,37.788982,1980-12-02 +-90.659502,33.457907,1982-02-02 +-91.802762,33.62415,1980-11-18 +-91.38306,33.601099,1980-11-18 +-97.597771,40.826699,1984-10-30 +-89.807025,37.924822,1980-11-18 +-98.5831,33.082052,1981-06-02 +-91.526961,38.332654,1981-06-30 +-85.420469,32.635618,1980-11-18 +-85.484816,32.588862,1981-09-01 +-92.8431,38.43165,1981-07-21 +-94.22097,35.485448,1981-06-02 +-94.149785,36.123675,1981-11-17 +-96.738535,35.985615,1981-06-30 +-89.977267,38.690981,1981-07-08 +-87.823281,33.856473,1981-08-18 +-93.213377,39.112976,1981-12-01 +-94.191628,31.806006,1981-03-31 +-90.047346,32.283711,1981-03-31 +-84.379288,35.505072,1983-02-01 +-95.237915,37.340299,1980-11-11 +-96.995748,37.226692,1980-11-18 +-97.411838,37.267309,1980-11-18 +-97.794721,32.433889,1981-09-29 +-100.032825,37.767305,1981-03-10 +-93.738632,36.08544,1981-03-10 +-95.632288,35.951831,1981-07-21 +-86.569876,34.705239,1981-08-11 +-93.708091,32.539454,1981-04-21 +-88.182856,32.592301,1981-12-01 +-95.747914,39.45899,1981-09-29 +-93.230183,36.96811,1981-10-20 +-94.106811,34.900424,1982-02-02 +-97.871911,31.120622,1981-08-04 +-95.267769,38.583198,1981-03-03 +-94.178879,30.348039,1981-07-08 +-94.221722,30.264329,1981-12-01 +-97.270427,29.087744,1981-07-28 +-92.655425,30.244353,1983-07-01 +-96.861279,35.70978,1982-09-21 +-94.399057,35.405139,1982-08-31 +-97.485904,35.624061,1981-11-17 +-86.387259,35.833563,1981-03-10 +-88.740315,34.255924,1981-06-02 +-98.698625,35.526036,1981-06-02 +-88.807537,35.550885,1981-09-01 +-87.274311,34.493092,1981-12-01 +-98.295955,26.196499,1981-11-03 +-82.682347,34.556328,1984-03-06 +-98.205526,26.190704,1981-11-17 +-94.730693,32.540684,1982-05-04 +-94.788633,32.532145,1981-12-01 +-95.489077,30.330806,1983-10-18 +-91.236667,30.27436,1981-09-29 +-91.906075,30.284979,1981-12-01 +-87.723038,34.496537,1981-11-03 +-97.91561,29.881646,1982-03-02 +-93.268628,31.121821,1982-08-17 +-86.51354,35.975342,1981-11-03 +-97.728272,31.09129,1981-12-01 +-93.95115,29.915132,1982-07-13 +-87.584828,34.245079,1981-10-13 +-88.314628,36.625678,1981-10-06 +-88.989636,33.896097,1982-08-03 +-95.830723,32.209545,1983-05-24 +-97.222158,26.071566,1982-05-18 +-98.557289,34.093185,1982-06-29 +-91.831899,30.214556,1982-03-02 +-95.596241,33.119489,1983-05-03 +-97.171163,40.147655,1982-08-03 +-98.717807,37.645751,1982-08-17 +-98.520468,33.939447,1982-05-31 +-97.597075,33.236029,1982-06-29 +-87.725656,39.005983,1982-08-03 +-86.833945,33.255131,1981-12-01 +-86.608861,32.818873,1982-08-03 +-86.592746,34.080187,1982-08-03 +-96.876843,33.071763,1982-11-30 +-96.151878,33.065629,1982-10-05 +-91.143552,30.648448,1983-10-04 +-98.180103,26.303988,1981-11-03 +-88.628286,36.724478,1981-09-01 +-88.569262,37.053191,1981-08-18 +-86.081362,33.435023,1981-08-18 +-86.593406,34.763019,1981-08-11 +-86.567313,34.61721,1981-08-11 +-89.686235,38.759139,1982-09-21 +-89.389294,38.610049,1982-09-21 +-96.161913,29.806195,1982-09-21 +-98.945702,32.759305,1984-02-01 +-97.042436,28.047316,1982-08-31 +-97.874347,27.531722,1982-04-20 +-99.128055,29.348251,1982-10-05 +-93.295618,37.155281,1982-07-13 +-86.264718,37.488179,1982-10-05 +-95.896767,30.956287,1984-04-03 +-100.774543,29.917987,1982-11-16 +-93.866701,32.449005,1982-08-03 +-93.940506,29.94126,1983-05-03 +-93.815733,32.388247,1982-11-16 +-92.334783,38.91019,1982-02-02 +-98.230656,26.288406,1982-04-20 +-89.970629,36.570079,1982-03-16 +-88.186146,38.076863,1982-03-02 +-97.538814,25.968336,1982-10-05 +-94.016113,30.143463,1983-03-01 +-97.176606,27.92463,1982-11-02 +-83.833218,33.599281,1983-11-29 +-89.085665,39.389765,1983-11-29 +-100.483477,28.700617,1982-08-17 +-95.232976,29.409478,1982-10-05 +-97.735385,28.391192,1982-08-31 +-97.630858,27.853599,1982-10-05 +-98.164182,29.151735,1982-11-16 +-89.011575,35.265482,1982-11-16 +-97.08993,33.228239,1982-11-16 +-94.042591,33.460491,1982-11-16 +-93.157503,30.158227,1982-11-02 +-97.440219,27.74147,1982-10-05 +-96.82203,32.591803,1982-10-05 +-95.820382,36.060865,1986-04-29 +-96.921694,30.180111,1983-04-05 +-96.650283,28.984983,1982-11-02 +-97.691933,30.540148,1982-11-30 +-97.705979,31.433179,1983-07-01 +-85.203953,35.23384,1982-11-16 +-99.093112,28.898901,1984-03-06 +-99.334036,34.665383,1982-09-21 +-90.824102,39.60442,1982-11-30 +-88.334949,39.476713,1982-11-02 +-95.659639,29.1498,1984-07-17 +-86.418075,32.460489,1982-10-05 +-95.260463,38.924551,1983-02-01 +-90.945194,30.086295,1983-08-02 +-94.879553,39.087077,1983-10-04 +-88.975299,40.148567,1983-03-01 +-84.592851,30.557574,1982-11-16 +-90.491604,30.502339,1983-08-02 +-97.28379,27.668997,1983-03-29 +-88.687963,37.076278,1983-03-01 +-87.495984,38.667744,1983-10-18 +-84.174401,38.013307,1983-04-05 +-84.760821,33.395714,1982-10-05 +-88.43677,33.528639,1983-08-02 +-85.276062,38.189188,1983-03-01 +-92.106343,31.674041,1983-08-02 +-97.907266,36.381571,1983-07-01 +-106.439181,31.89846,1984-08-02 +-89.14864,31.709182,1985-05-14 +-90.31335,29.446818,1983-07-01 +-96.540284,29.694746,1983-08-02 +-94.831348,29.263653,1983-08-02 +-93.285729,30.864985,1983-11-01 +-88.573152,38.650807,1983-04-05 +-84.899215,38.022265,1983-08-02 +-99.168143,30.060845,1983-04-05 +-83.847351,34.292711,1983-08-16 +-80.388897,33.956907,1981-07-04 +-106.341143,31.750407,1984-08-02 +-101.471059,32.229209,1983-08-16 +-81.715023,33.51502,1981-07-04 +-84.08839,35.039986,1983-08-16 +-96.129007,32.330886,1983-10-04 +-97.743945,35.391724,1983-08-02 +-84.464221,34.257931,1983-11-01 +-84.841483,37.745066,1983-11-01 +-83.804245,34.002518,1984-02-01 +-93.184715,30.231258,1984-03-20 +-95.063361,29.893088,1984-03-20 +-94.79262,32.012645,1983-11-29 +-97.856529,28.826352,1983-08-16 +-85.542865,38.299554,1983-05-24 +-95.433791,29.194918,1983-05-03 +-82.531243,27.447422,1983-05-17 +-95.034303,29.403463,1983-07-01 +-92.157314,33.058821,1983-07-01 +-92.075017,30.187424,1985-03-05 +-90.910032,30.234462,1983-07-01 +-91.814929,29.982547,1983-05-17 +-92.006586,30.219494,1983-05-17 +-99.779479,32.409405,1983-05-03 +-99.698151,32.478166,1983-05-03 +-102.334183,31.893937,1983-06-07 +-82.339114,29.676986,1983-05-17 +-92.452948,31.277148,1983-05-19 +-91.268275,29.681437,1983-05-17 +-90.082389,30.443048,1983-10-04 +-90.751615,29.610503,1983-05-17 +-92.070439,30.518942,1983-06-07 +-97.39406,35.464057,1983-07-01 +-83.89083,36.871607,1983-11-15 +-95.759419,29.480238,1983-10-04 +-82.55324,28.18167,1983-10-04 +-83.993228,33.97314,1983-10-18 +-103.161193,32.740598,1983-10-16 +-87.699188,38.727794,1984-02-01 +-81.65351,29.63082,1984-10-23 +-82.851271,37.119542,1984-10-16 +-89.746259,30.281329,1983-05-17 +-99.504215,27.553054,1983-06-07 +-82.959954,32.54338,1983-07-01 +-82.333624,31.20355,1983-07-01 +-96.217062,38.425862,1983-06-07 +-97.612864,38.785894,1983-06-07 +-91.0861,41.392696,1983-07-01 +-94.814994,39.802308,1983-07-01 +-98.816396,32.401764,1983-10-04 +-86.523268,33.557955,1983-11-01 +-81.281504,28.913389,1983-10-18 +-97.622242,35.464166,1983-11-01 +-96.506518,32.069187,1983-10-18 +-87.305445,38.051493,1984-03-06 +-96.687323,30.531067,1984-04-03 +-85.95489,36.262909,1984-05-01 +-85.302253,37.096866,1984-11-29 +-84.536161,38.231379,1984-04-03 +-94.866577,32.391981,1984-06-05 +-94.362485,38.931145,1984-04-03 +-78.983347,33.644416,1984-06-29 +-84.481259,34.087324,1984-05-22 +-95.886698,36.159688,1983-10-04 +-94.757144,38.919328,1984-08-02 +-83.570793,35.839894,1983-10-18 +-81.325172,29.881176,1983-11-29 +-81.832692,27.902644,1983-11-29 +-92.912278,42.013131,1983-10-04 +-81.02436,29.115246,1983-11-29 +-84.486699,36.534016,1984-05-22 +-84.596609,38.732567,1984-10-16 +-80.961787,34.94168,1984-02-01 +-79.08906,33.859839,1988-06-02 +-85.79877,36.178932,1984-05-22 +-84.218859,31.62256,1984-03-06 +-85.667819,38.089533,1984-02-01 +-97.394131,32.679435,1984-08-31 +-84.297613,38.389095,1984-09-18 +-97.500756,37.604015,1984-08-02 +-82.877349,31.527836,1984-10-16 +-84.439328,33.48031,1984-04-17 +-97.759918,26.223224,1984-10-02 +-89.02751,37.787277,1984-10-16 +-95.534165,29.96808,1984-09-18 +-99.085918,40.669404,1984-10-16 +-82.516054,36.509681,1984-08-31 +-100.966337,35.544869,1984-07-17 +-100.511042,31.428215,1984-08-31 +-95.451852,30.126704,1984-04-03 +-89.59527,40.541464,1985-10-08 +-85.440708,31.264171,1983-11-15 +-81.121658,31.998215,1983-11-25 +-81.009469,32.043349,1983-11-25 +-99.093809,35.015646,1984-06-29 +-102.145789,32.029465,1984-06-29 +-91.392187,39.7228,1984-09-18 +-98.233022,32.206039,1984-04-03 +-104.554009,33.62722,1984-04-03 +-88.160688,39.485147,1984-02-04 +-81.113508,29.25763,1984-04-03 +-85.028376,33.066495,1984-05-22 +-84.790607,34.203382,1984-11-13 +-80.930858,33.553351,1984-08-31 +-87.423001,39.102934,1985-11-12 +-84.758296,33.892429,1984-08-02 +-85.046286,35.460147,1984-10-16 +-82.400393,36.467699,1984-11-13 +-79.756106,33.877233,1981-07-04 +-97.536521,35.521948,1984-11-13 +-81.898675,26.681991,1984-08-21 +-81.590175,34.28268,1981-07-04 +-79.288983,33.387651,1981-07-04 +-102.805355,32.671912,1984-10-02 +-79.369733,34.435917,1981-07-04 +-80.123561,32.923752,1981-07-04 +-81.634898,34.707343,1981-07-04 +-79.823448,34.187924,1982-03-01 +-82.602127,34.813032,1981-07-04 +-79.854014,32.813224,1982-07-13 +-89.926293,41.222206,1984-10-23 +-80.647433,34.249183,1981-07-04 +-81.257133,31.997565,1981-07-04 +-89.473361,41.394746,1985-03-05 +-99.718408,40.873227,1985-02-05 +-82.027465,34.960603,1981-07-04 +-81.480436,31.214688,1981-07-04 +-82.281086,34.820794,1981-07-04 +-82.457108,34.85575,1981-07-04 +-79.909697,34.693166,1981-07-04 +-78.790067,33.764983,1981-07-04 +-82.649407,34.499762,1981-07-04 +-97.443413,42.023651,1984-08-02 +-91.265282,42.103519,1984-10-16 +-92.727286,41.733175,1985-02-05 +-90.57835,38.778301,1984-11-29 +-94.164167,30.12181,1984-06-29 +-87.470671,36.831327,1981-07-04 +-87.474035,37.326283,1987-04-28 +-86.455623,35.513778,1981-07-04 +-85.500953,36.144455,1981-07-04 +-85.228016,34.274618,1981-07-04 +-87.694946,34.745215,1981-07-04 +-86.968498,34.789771,1981-07-04 +-87.000151,34.557584,1981-07-04 +-84.626852,35.452684,1981-07-04 +-99.317811,38.898261,1984-10-30 +-85.371455,37.346188,1981-07-04 +-81.437188,27.466829,1984-11-29 +-86.239488,35.39175,1981-07-04 +-85.774544,35.680512,1981-07-04 +-84.923698,34.770894,1981-07-04 +-86.83404,34.15151,1981-07-04 +-86.29456,36.191873,1981-07-04 +-84.137882,35.798514,1981-07-04 +-87.290151,36.592302,1987-06-02 +-86.46892,36.377775,1981-08-12 +-89.077604,36.412606,1981-07-04 +-84.684002,35.867889,1981-07-04 +-89.395806,36.063421,1981-07-04 +-83.209443,35.942189,1981-07-04 +-82.76181,36.185767,1981-07-04 +-86.292442,34.359465,1981-07-04 +-86.427338,35.846252,1981-07-04 +-87.330182,35.2414,1981-07-04 +-88.407925,35.656506,1981-07-04 +-83.257458,36.216156,1981-07-04 +-83.263577,31.713502,1985-02-05 +-85.038579,35.982151,1981-07-04 +-86.71378,36.049308,1981-07-04 +-84.518445,37.131938,1981-07-04 +-82.225994,36.380523,1981-07-04 +-85.758957,34.438506,1981-07-04 +-84.772962,37.613944,1981-07-04 +-83.378637,37.554735,1985-07-16 +-87.569792,37.87191,1981-07-04 +-86.686504,36.306389,1981-07-04 +-82.652656,37.635654,1985-09-10 +-82.156669,29.172714,1984-10-16 +-84.857362,35.19438,1981-07-04 +-89.571109,34.361253,1981-07-04 +-87.010711,32.431475,1981-07-04 +-87.124443,37.719909,1981-07-04 +-84.209341,37.988757,1981-07-04 +-95.625259,30.070881,1984-10-16 +-81.676332,28.82107,1984-09-18 +-82.183832,28.20918,1984-08-31 +-90.570869,34.192355,1981-07-04 +-90.891844,32.306432,1985-05-14 +-85.885464,37.731244,1981-07-04 +-86.610512,36.208968,1981-07-04 +-85.933994,37.022278,1981-07-04 +-86.00753,34.671991,1981-07-04 +-82.187565,28.341526,1984-10-23 +-90.148769,35.506313,1981-07-04 +-87.516711,33.16847,1981-07-04 +-90.230223,33.529739,1981-07-04 +-81.821183,28.056651,1984-11-13 +-84.274684,37.733307,1981-07-04 +-84.900117,38.159391,1981-07-04 +-82.141655,27.014357,1985-01-22 +-85.073298,33.561112,1981-07-04 +-85.947451,31.780796,1981-07-04 +-83.467489,36.127334,1984-11-13 +-81.636881,28.060048,1984-10-16 +-85.971831,32.934204,1981-07-04 +-85.228152,34.043932,1981-07-04 +-80.723944,32.209078,1985-01-22 +-85.458379,37.825448,1981-07-04 +-86.344988,33.256696,1981-07-04 +-87.823794,32.503315,1981-07-04 +-85.156651,32.787582,1981-07-04 +-85.86491,31.33345,1981-07-04 +-86.100605,35.218471,1981-07-04 +-86.756304,36.982378,1981-07-04 +-86.77713,35.451803,1981-07-04 +-88.115125,36.063932,1981-07-04 +-83.701883,36.609598,1981-07-04 +-85.637269,31.436409,1981-07-04 +-84.28293,35.830661,1981-07-04 +-82.599458,36.555527,1984-08-31 +-97.506789,35.392054,1984-08-31 +-95.160827,29.999025,1984-10-16 +-84.195875,33.525234,1984-10-02 +-97.367657,31.074282,1984-05-22 +-90.167758,38.555376,1985-02-05 +-93.014482,41.697338,1985-02-05 +-91.899273,42.450635,1984-10-02 +-92.900837,41.397245,1984-10-16 +-95.162848,29.6496,1984-03-20 +-92.438952,42.485104,1984-06-05 +-81.755819,32.434062,1984-04-03 +-101.920175,35.161416,1984-05-01 +-85.314675,34.519829,1984-04-17 +-98.513495,28.939655,1984-10-02 +-84.211337,32.071174,1984-11-13 +-81.81595,27.569388,1984-10-16 +-86.438313,37.760211,1985-02-05 +-91.0278,29.944816,1985-04-30 +-86.700028,33.587473,1984-11-13 +-86.917763,33.467986,1984-11-13 +-87.002726,33.36711,1984-11-13 +-98.355244,29.590106,1984-11-29 +-87.625678,34.836123,1984-11-13 +-82.65833,30.181999,1985-01-22 +-95.718906,29.787293,1984-10-23 +-82.398849,27.049892,1985-06-04 +-98.785795,38.361799,1985-04-30 +-80.669938,28.357318,1985-05-21 +-95.644052,29.766322,1985-10-22 +-92.415191,30.494909,1985-08-30 +-97.335275,41.438394,1985-04-30 +-90.38243,40.973143,1985-10-01 +-96.445008,41.451308,1985-06-04 +-93.766695,30.093007,1985-07-02 +-82.030143,26.897965,1985-05-21 +-81.957075,27.999994,1985-04-30 +-83.738719,33.791765,1985-05-21 +-98.284862,30.528091,1985-07-16 +-99.755926,29.229993,1985-08-20 +-92.464337,39.752124,1985-07-02 +-91.539256,40.964528,1985-04-30 +-88.632646,31.685818,1985-06-04 +-88.726171,41.951901,1985-12-31 +-84.411854,33.578944,1985-07-30 +-92.463168,35.597905,1985-09-10 +-96.596584,32.790225,1985-10-29 +-100.642146,40.199023,1985-07-16 +-98.040833,27.767767,1985-07-16 +-90.727977,41.197614,1985-07-02 +-101.919464,34.970475,1985-10-01 +-97.888,38.072269,1985-07-16 +-81.391125,33.240378,1985-05-14 +-89.128426,41.358221,1986-04-01 +-91.159164,40.812974,1985-09-10 +-88.054678,38.731919,1985-08-30 +-100.796101,37.068206,1985-07-02 +-81.896965,28.843305,1985-09-10 +-94.873872,40.330534,1985-10-08 +-89.662927,42.603531,1985-07-16 +-89.86413,30.789718,1985-08-30 +-98.082921,32.813761,1985-08-30 +-90.440171,38.508079,1983-09-02 +-106.75364,32.300289,1985-08-30 +-97.249918,32.840649,1985-10-29 +-95.45712,29.047464,1985-11-12 +-85.831604,33.600442,1985-08-30 +-93.262574,43.148346,1985-06-04 +-81.84722,27.210839,1985-07-16 +-101.973451,35.842866,1985-07-16 +-98.982824,31.728623,1985-10-08 +-80.829876,27.221784,1985-07-16 +-92.620587,38.148015,1985-08-30 +-90.46472,31.578971,1985-10-08 +-81.46003,28.303964,1985-10-08 +-85.805595,30.177957,1985-12-31 +-81.940701,26.622066,1985-07-30 +-92.740711,38.957415,1985-08-30 +-103.196483,34.43615,1985-10-16 +-101.794377,35.221924,1986-01-21 +-97.071113,36.738557,1985-11-12 +-106.553852,35.146124,1985-07-02 +-84.650325,37.543251,1986-08-19 +-108.152909,36.764769,1985-07-02 +-95.876187,32.543228,1985-08-30 +-86.370236,39.712772,1985-10-22 +-105.985311,35.658525,1985-07-02 +-89.689464,41.76369,1986-01-21 +-106.586238,35.075706,1985-07-02 +-88.177801,38.090322,1985-10-08 +-94.966004,40.129338,1985-11-12 +-106.532327,35.078253,1985-07-02 +-81.591788,30.755437,1985-07-30 +-91.54063,36.523399,1985-10-01 +-96.101183,36.136843,1986-01-21 +-91.090842,30.460601,1985-11-12 +-91.128397,41.777435,1985-10-01 +-104.606895,38.307176,1985-10-01 +-84.197803,31.233138,1985-09-10 +-88.415712,41.306802,1986-09-02 +-93.086149,37.640088,1985-10-01 +-96.908488,29.903939,1985-10-15 +-90.136839,42.972854,1985-09-17 +-89.994489,34.962973,1985-11-12 +-95.739917,30.218086,1986-02-04 +-106.604189,35.111084,1985-07-02 +-105.612315,33.325956,1986-03-04 +-88.836073,41.371577,1985-12-31 +-88.225461,30.670152,1985-08-20 +-86.480694,40.278847,1986-01-21 +-84.533129,33.566986,1986-01-21 +-85.176914,33.771718,1985-10-01 +-81.285697,28.759509,1985-10-01 +-84.20354,30.885569,1985-11-12 +-81.554593,27.894178,1985-11-12 +-81.303446,29.028975,1985-12-31 +-101.900827,33.529164,1985-11-12 +-81.599724,31.821608,1985-12-31 +-85.395546,33.178275,1985-10-15 +-82.403806,32.162321,1985-10-29 +-98.170843,29.665781,1986-01-21 +-88.147577,30.6433,1988-06-30 +-103.675246,41.856223,1986-03-05 +-104.228969,32.42151,1986-03-05 +-105.893671,37.480201,1986-01-21 +-86.937938,38.428204,1985-10-22 +-91.702391,37.00161,1985-10-01 +-95.286164,29.570863,1986-04-01 +-105.584679,36.38711,1986-03-04 +-91.383879,31.57559,1985-11-12 +-90.132128,32.422311,1986-04-29 +-93.490726,31.566293,1986-04-29 +-80.564546,35.010727,1986-03-04 +-84.130642,34.18401,1985-10-29 +-86.036453,36.520788,1985-12-31 +-96.955873,32.836697,1986-11-11 +-81.223628,33.995801,1985-11-12 +-91.151091,43.048959,1986-02-04 +-97.618877,26.455624,1986-02-04 +-85.742663,39.523578,1986-03-18 +-97.101632,40.876239,1986-04-01 +-94.126925,42.446058,1986-03-11 +-89.235132,31.349247,1987-02-03 +-94.346123,38.25693,1986-06-17 +-83.911003,30.754288,1986-03-11 +-81.275669,28.568367,1986-05-20 +-89.653021,41.812719,1987-02-03 +-93.582537,41.704854,1986-03-11 +-97.6046,34.849973,1986-06-03 +-95.890785,36.101775,1986-08-05 +-91.402688,38.07381,1986-07-01 +-97.03667,32.675913,1986-09-02 +-102.896744,30.893925,1986-03-05 +-103.486503,31.408993,1986-05-20 +-83.318745,30.828561,1986-06-03 +-100.232881,34.437014,1986-06-03 +-97.949301,29.551237,1986-03-18 +-86.820036,39.64618,1986-03-04 +-90.266577,32.290755,1986-04-29 +-87.683161,30.379647,1986-01-21 +-105.130679,40.153433,1986-06-10 +-108.759967,35.530271,1986-07-15 +-83.938435,33.037099,1986-04-29 +-81.427674,28.452324,1986-07-15 +-89.96473,29.942926,1986-06-10 +-88.414104,42.593056,1986-03-04 +-90.091807,29.874633,1986-06-10 +-89.985988,30.035044,1986-06-10 +-91.755455,43.288427,1986-03-18 +-93.883535,36.675692,1986-07-08 +-95.572585,29.641819,1986-08-05 +-89.382146,31.321602,1986-08-12 +-99.332852,31.107129,1986-07-08 +-94.351081,32.53042,1986-04-01 +-86.616286,30.424132,1986-06-17 +-106.023766,38.522664,1986-03-05 +-86.127899,38.23503,1986-06-17 +-85.997986,40.037709,1986-04-29 +-103.233949,40.625061,1986-03-11 +-82.294119,27.981543,1986-03-11 +-98.144313,27.226112,1986-09-16 +-101.749136,34.160959,1986-08-05 +-80.313322,27.312492,1986-08-19 +-86.23494,32.328324,1986-07-01 +-80.443548,27.638695,1986-09-02 +-84.288028,33.255931,1986-07-15 +-89.068155,41.937222,1986-09-30 +-87.908156,30.625383,1986-07-15 +-90.956768,30.473562,1986-09-30 +-88.557141,39.140009,1986-11-18 +-84.546922,34.035019,1986-09-02 +-86.186031,32.382347,1986-07-01 +-97.166926,31.524137,1986-09-02 +-97.451763,32.745588,1986-07-15 +-82.270216,27.893618,1986-09-30 +-81.533324,28.551688,1986-07-15 +-81.341471,28.660587,1986-09-30 +-86.56858,30.725954,1986-06-17 +-101.936832,33.588168,1986-07-01 +-90.707898,37.075051,1987-02-03 +-96.606247,33.670282,1986-08-19 +-81.402475,35.724135,1987-05-12 +-96.863931,32.647579,1986-09-02 +-89.783594,35.204443,1986-09-02 +-96.07842,30.098339,1986-09-02 +-83.761721,31.188796,1986-09-09 +-105.044586,40.405701,1986-08-12 +-81.509517,28.661943,1986-09-02 +-80.582577,28.138661,1986-08-19 +-90.157592,41.431191,1986-09-16 +-82.14107,28.66866,1986-09-09 +-82.45391,29.062286,1986-09-09 +-90.496509,30.072713,1987-02-03 +-104.52247,37.138711,1986-09-16 +-97.797277,32.760557,1987-01-13 +-106.315139,31.682956,1987-02-03 +-90.495806,44.01918,1986-09-16 +-108.56326,37.348912,1986-09-09 +-89.092335,30.422517,1986-11-18 +-89.665678,30.509763,1986-11-18 +-90.88896,43.567009,1986-10-28 +-97.467863,32.817009,1987-02-03 +-80.376079,27.420192,1987-08-18 +-80.651566,28.035265,1986-11-11 +-96.416668,33.997972,1986-11-11 +-91.726477,32.180695,1986-11-18 +-97.040117,37.09263,1987-01-13 +-90.83239,43.938935,1986-11-18 +-104.715874,40.386162,1986-11-18 +-88.694559,32.365519,1986-11-18 +-93.241193,44.09559,1986-11-18 +-104.863626,39.406288,1986-11-18 +-106.092421,39.592472,1987-02-03 +-81.862277,26.528135,1987-03-31 +-82.475397,28.261003,1987-01-13 +-90.208678,30.00529,1986-11-11 +-87.117648,30.603297,1986-09-16 +-88.124947,30.68726,1986-11-11 +-97.629879,38.368181,1986-11-18 +-82.67598,28.20647,1987-02-03 +-86.067761,39.500161,1987-02-03 +-86.771515,39.286987,1987-02-03 +-97.480008,25.921519,1987-02-03 +-87.166125,39.034976,1987-03-03 +-88.481816,41.661417,1987-02-03 +-82.614855,27.462454,1987-03-31 +-92.475665,42.725521,1987-03-03 +-83.760594,31.961499,1986-10-28 +-105.078812,40.52262,1987-03-03 +-93.460031,37.129429,1987-03-31 +-79.820402,34.956578,1986-11-18 +-81.231698,32.280037,1986-11-11 +-88.810313,43.485626,1987-05-12 +-87.431132,39.657485,1987-03-03 +-94.372645,39.052102,1986-11-18 +-106.507436,31.790205,1987-03-31 +-90.816236,29.805868,1987-04-28 +-80.224356,33.697117,1987-03-03 +-93.35521,43.701624,1987-06-02 +-91.136266,38.805917,1987-05-12 +-95.351221,32.355401,1987-06-16 +-80.878921,36.692182,1987-03-31 +-82.336412,32.596106,1987-04-28 +-90.471909,31.26065,1987-04-28 +-86.507375,38.861016,1987-03-31 +-80.608527,35.399801,1987-06-30 +-89.587469,40.682138,1987-05-12 +-82.576402,28.803717,1987-06-30 +-80.796404,34.733475,1987-03-03 +-89.891967,35.076782,1987-08-04 +-85.668294,30.189716,1987-04-28 +-85.86253,38.958104,1987-06-16 +-81.531857,35.275438,1987-06-30 +-81.948285,34.95444,1987-08-04 +-81.834064,35.239359,1987-03-03 +-80.154073,33.037002,1987-04-28 +-93.507358,44.078508,1987-03-03 +-80.621111,36.473262,1987-06-02 +-95.650383,29.879146,1987-08-04 +-97.99098,26.173408,1987-05-12 +-97.337895,30.108125,1987-05-12 +-97.227753,34.735654,1987-09-01 +-95.271647,32.307169,1987-06-16 +-99.857177,28.521258,1987-05-12 +-84.337241,33.591247,1987-09-01 +-84.162354,36.726324,1987-07-14 +-101.948137,32.756018,1987-01-13 +-102.359177,33.593923,1987-01-13 +-87.837913,33.64552,1987-02-03 +-85.371422,38.397682,1987-02-03 +-96.640943,32.983852,1987-09-01 +-97.279563,35.548567,1987-02-03 +-85.912539,32.547735,1987-02-03 +-107.866381,38.447911,1987-07-14 +-89.481035,32.355893,1987-10-01 +-82.589131,31.865579,1987-09-01 +-95.155878,29.552155,1987-10-01 +-85.879629,31.036624,1987-09-01 +-81.526117,35.925187,1987-08-04 +-93.612239,33.683168,1987-08-18 +-88.527354,30.377932,1987-10-01 +-96.939882,29.461416,1987-06-30 +-80.483098,27.799123,1987-10-20 +-89.08728,32.300145,1987-08-04 +-84.493207,34.658482,1987-04-28 +-90.073819,38.866233,1987-10-01 +-83.434702,31.431396,1987-08-18 +-98.161657,31.063839,1987-04-28 +-89.820169,33.771253,1987-11-17 +-87.410626,36.581569,1987-06-02 +-83.613281,32.862333,1987-04-28 +-84.215648,30.428121,1987-08-18 +-99.963883,31.718399,1987-06-30 +-81.032,29.214181,1987-10-01 +-82.396046,36.359146,1987-10-20 +-82.387263,29.616668,1987-09-01 +-81.627866,30.175529,1987-11-17 +-81.759439,30.302996,1988-06-30 +-81.310249,28.505092,1987-12-31 +-82.715732,28.283122,1987-09-01 +-81.316621,28.253382,1987-10-20 +-80.218903,27.152828,1987-11-17 +-88.974661,30.401959,1987-12-31 +-85.676009,35.045702,1987-08-04 +-81.755434,30.248367,1987-10-01 +-86.26691,31.285368,1987-10-01 +-102.256832,33.181049,1987-11-03 +-88.129339,40.312446,1988-03-08 +-94.482273,39.002371,1987-10-01 +-80.586678,35.926433,1987-10-20 +-79.421762,35.159951,1987-08-18 +-96.6905,28.64339,1987-11-17 +-97.332883,37.649723,1987-08-04 +-87.989725,34.124334,1987-12-31 +-86.214624,32.507029,1987-10-20 +-91.12751,30.577837,1987-12-31 +-95.477402,29.999485,1987-10-20 +-82.387964,28.853645,1987-10-20 +-92.218443,34.789263,1987-12-31 +-91.558798,31.617641,1987-06-30 +-92.68802,30.767135,1987-06-30 +-91.383031,32.860999,1987-06-30 +-91.759108,32.473295,1987-06-30 +-92.398229,32.772026,1987-09-01 +-82.87653,34.4429,1987-11-17 +-84.328263,32.898112,1987-08-18 +-84.133433,37.081952,1987-11-03 +-92.106046,35.86721,1988-02-02 +-87.528674,35.560503,1987-11-03 +-97.966809,34.526544,1987-11-17 +-96.694588,33.057085,1987-12-31 +-96.616019,32.734107,1987-11-17 +-81.762511,26.123173,1987-11-03 +-94.580728,39.227834,1987-11-03 +-83.233763,33.07989,1987-08-04 +-83.217353,34.51031,1987-10-01 +-83.003419,34.684647,1987-11-03 +-86.943139,34.444765,1987-10-01 +-88.951906,40.514044,1987-11-17 +-98.751162,29.817793,1987-11-17 +-80.07427,34.96821,1988-11-17 +-92.06158,31.102515,1988-03-01 +-97.785946,30.471648,1988-11-17 +-81.984669,34.493712,1988-02-02 +-81.191223,35.933935,1988-02-02 +-79.792197,35.695567,1988-06-14 +-80.178221,35.34695,1988-03-01 +-80.058599,34.355955,1988-03-01 +-91.242301,30.451138,1988-06-02 +-95.237063,29.691053,1988-04-12 +-89.506982,43.050487,1988-02-02 +-83.478557,38.188855,1988-02-02 +-83.952557,38.07306,1988-02-02 +-85.769738,39.813432,1988-06-30 +-85.799146,38.685061,1988-03-01 +-82.811056,32.979537,1988-04-12 +-81.212883,34.985509,1988-05-03 +-79.996172,33.192502,1988-06-30 +-92.541274,36.221181,1988-02-02 +-98.539898,33.877425,1988-11-01 +-109.737448,32.839778,1988-05-03 +-96.300135,30.595716,1988-05-03 +-94.730035,39.11676,1987-11-17 +-96.175305,43.056959,1988-03-08 +-83.722157,32.810237,1987-11-17 +-98.853189,30.258167,1988-04-12 +-79.00132,34.665323,1988-06-30 +-80.857017,35.588962,1988-08-16 +-85.627726,39.004464,1988-05-03 +-86.922671,33.580917,1988-03-01 +-83.600649,36.442124,1988-06-02 +-84.892837,39.074556,1988-06-30 +-90.613166,38.798892,1988-06-30 +-87.153191,38.652967,1988-05-03 +-90.017876,29.91305,1988-03-01 +-81.154297,34.075938,1988-05-03 +-85.934685,37.832012,1988-09-01 +-78.620677,34.632544,1988-06-02 +-87.861915,42.58844,1988-08-16 +-89.808853,31.242931,1988-03-01 +-93.459595,32.984858,1988-05-03 +-85.869157,38.103769,1988-05-03 +-82.505676,27.392502,1988-06-30 +-81.43874,30.287922,1988-08-16 +-81.565265,30.287078,1988-02-02 +-87.738637,31.946759,1988-04-12 +-111.668196,35.176646,1988-11-01 +-89.234982,42.917852,1988-04-12 +-90.486926,38.596596,1988-10-03 +-97.105075,32.860413,1988-03-01 +-82.526957,35.51265,1988-05-03 +-85.480849,39.358548,1988-03-01 +-84.493811,33.909893,1988-06-02 +-81.226482,29.552936,1988-03-01 +-81.097876,33.983075,1988-03-01 +-84.12279,33.825188,1988-05-03 +-97.692529,30.338447,1988-06-02 +-94.779464,30.076212,1988-06-30 +-95.408954,37.940424,1989-04-03 +-90.377297,38.725688,1988-08-16 +-83.722124,36.599573,1988-09-01 +-84.310404,37.567288,1988-05-03 +-79.101137,36.043814,1989-06-29 +-89.828701,31.830886,1988-08-16 +-92.093178,32.524721,1988-11-17 +-84.2532,36.006049,1988-08-16 +-89.384427,30.30405,1988-11-01 +-91.459259,30.683533,1989-02-02 +-77.807998,35.979832,1988-09-01 +-98.474104,29.219759,1988-10-03 +-106.510843,39.631349,1988-04-07 +-86.826193,33.648243,1988-08-16 +-89.816915,44.391048,1988-08-16 +-82.355696,27.712303,1988-06-02 +-93.249437,30.194488,1988-09-01 +-82.122399,30.274749,1988-11-01 +-91.141813,30.418521,1988-05-03 +-85.591254,30.126448,1988-05-03 +-105.14253,39.766118,1988-05-03 +-81.245914,35.436801,1989-02-02 +-84.564929,37.899343,1988-10-03 +-88.613256,42.399606,1988-08-16 +-88.100424,30.802088,1988-09-01 +-82.505179,28.533727,1988-10-03 +-101.054974,39.357537,1989-02-02 +-84.94353,34.480646,1988-11-01 +-96.861147,32.95331,1988-10-03 +-83.326145,35.206952,1988-11-01 +-111.731375,32.87956,1988-10-11 +-81.705537,30.454316,1988-11-01 +-81.458197,28.541517,1989-04-03 +-97.413327,37.673205,1988-10-03 +-87.275034,30.527016,1988-11-17 +-84.227507,30.54345,1988-11-17 +-87.192532,30.495159,1988-06-02 +-81.753822,30.150295,1988-06-30 +-86.971707,36.211374,1988-11-17 +-82.094243,33.509409,1988-11-10 +-88.064573,42.379367,1988-12-31 +-86.827309,33.570983,1989-04-03 +-110.018531,34.200464,1988-11-01 +-97.457606,31.080821,1988-10-03 +-82.788771,37.822039,1988-09-01 +-84.821359,36.868632,1988-10-11 +-98.33469,29.269288,1988-10-03 +-77.947489,35.386479,1988-08-16 +-78.648844,35.324524,1988-08-16 +-78.955791,35.080055,1988-12-31 +-83.718843,40.105996,1989-02-02 +-110.257285,31.56119,1988-10-03 +-90.52857,41.577483,1989-06-29 +-82.438569,35.348299,1988-11-01 +-79.897961,36.695814,1989-02-02 +-82.330919,34.906048,1988-11-01 +-81.971875,28.086565,1989-02-02 +-85.671364,38.137806,1988-11-17 +-83.185216,37.255658,1989-04-03 +-89.812981,35.050428,1989-04-03 +-100.466312,31.487291,1989-02-02 +-97.75659,30.219507,1988-12-31 +-97.109645,31.595804,1988-12-31 +-79.454058,34.786232,1989-05-02 +-88.124505,41.517082,1989-04-03 +-99.802918,32.958456,1989-02-02 +-84.106084,36.972314,1989-02-02 +-88.597836,30.902315,1989-02-02 +-78.879287,35.110945,1988-12-31 +-85.444903,39.629712,1988-11-17 +-87.47404,37.980505,1988-11-17 +-83.761406,40.330017,1988-11-17 +-90.315626,38.770847,1989-06-29 +-91.127482,30.563706,1988-11-01 +-89.245032,43.176767,1989-02-02 +-78.72323,34.301671,1989-02-02 +-85.592357,38.21628,1988-11-17 +-81.959665,33.500641,1988-11-01 +-88.741302,32.371364,1989-02-02 +-100.919169,32.697359,1989-04-03 +-88.759737,42.834711,1989-04-03 +-86.472556,40.065072,1989-04-03 +-87.748421,43.750283,1989-08-01 +-90.809007,44.308727,1989-02-02 +-97.301108,36.289667,1988-11-01 +-95.412712,29.915896,1989-05-02 +-108.519331,39.077336,1989-06-01 +-81.884693,34.972299,1989-02-02 +-97.050511,39.820755,1988-11-01 +-82.12792,29.920969,1989-02-02 +-85.054388,32.507045,1989-04-03 +-92.464355,41.373962,1989-04-03 +-80.941509,33.962376,1989-02-02 +-79.499616,36.069131,1989-04-03 +-78.985502,36.38191,1989-04-03 +-83.782894,39.451879,1989-02-02 +-81.189998,36.151443,1989-05-02 +-110.84003,32.235564,1989-06-01 +-80.407733,37.129021,1989-04-03 +-82.062881,33.421829,1989-04-03 +-85.655301,40.409026,1989-04-03 +-96.771418,34.089324,1989-02-02 +-97.628088,26.1206,1989-02-02 +-82.854477,29.481907,1989-05-02 +-77.391579,34.778272,1989-08-01 +-111.972124,34.702587,1989-02-02 +-77.03692,35.042382,1989-02-02 +-79.955081,37.208655,1989-06-29 +-82.192656,36.604542,1989-08-01 +-97.688309,30.639526,1989-08-01 +-85.856637,41.270299,1990-11-27 +-88.998007,42.718571,1989-06-29 +-105.959542,32.887696,1989-02-02 +-87.85106,41.162185,1989-05-02 +-80.088213,37.288548,1989-06-01 +-87.382242,39.362261,1989-05-02 +-84.951034,32.519738,1989-10-31 +-78.96998,35.173415,1989-06-29 +-98.490966,29.35671,1989-08-31 +-83.990785,34.085243,1989-06-01 +-104.795691,41.160256,1989-12-30 +-87.366683,44.845456,1989-06-01 +-82.471512,35.592892,1990-10-01 +-84.026748,36.007088,1989-08-31 +-83.927956,36.08198,1989-08-31 +-83.843969,35.90835,1990-01-31 +-78.308707,35.520564,1989-08-31 +-80.259837,35.791304,1989-12-30 +-89.612751,40.727759,1992-09-01 +-110.941468,31.334163,1989-06-01 +-110.964739,32.286581,1989-06-01 +-98.384258,40.917068,1989-06-01 +-85.375798,38.782063,1989-04-03 +-110.701367,35.040802,1989-06-01 +-86.328834,40.758513,1989-11-16 +-84.147126,40.753522,1989-04-03 +-84.207458,40.287467,1989-04-03 +-96.426966,42.463789,1989-08-31 +-84.586301,40.874125,1989-08-01 +-110.814833,33.412555,1989-08-31 +-79.378711,37.832104,1989-08-01 +-81.499959,36.844759,1989-08-01 +-80.852671,36.287033,1989-04-03 +-84.914431,32.466979,1989-06-29 +-80.949238,34.07222,1989-06-29 +-84.168165,33.703045,1989-06-29 +-87.636753,37.981343,1989-10-31 +-90.269438,30.022844,1989-06-01 +-79.047649,38.138311,1989-12-30 +-78.910646,36.733835,1989-10-02 +-88.755581,30.408381,1989-10-31 +-98.437325,29.492176,1989-08-31 +-77.899465,34.14611,1990-04-30 +-80.256426,26.167052,1989-08-31 +-79.184428,37.35125,1991-11-05 +-81.168285,37.78236,1989-09-16 +-77.995684,34.743301,1989-11-16 +-90.178711,29.953684,1989-10-02 +-77.009596,35.53222,1989-11-16 +-76.810855,34.734058,1989-10-02 +-86.412955,39.430371,1989-10-02 +-108.254635,32.78725,1989-10-31 +-80.702762,32.932065,1989-06-29 +-80.038463,32.935431,1989-08-31 +-81.133037,37.992732,1990-01-31 +-96.364553,42.436082,1989-10-31 +-86.455797,30.387372,1989-11-16 +-83.47762,33.580339,1989-10-31 +-114.349401,34.503014,1990-01-31 +-92.725946,44.961066,1989-10-31 +-89.655571,45.177947,1989-08-01 +-83.670089,32.618309,1989-10-02 +-83.564278,38.781268,1989-10-02 +-111.323008,34.240652,1989-11-16 +-114.597209,35.082802,1990-01-31 +-85.645855,38.995108,1989-06-29 +-78.654226,35.724834,1990-01-31 +-84.115283,33.90398,1990-01-31 +-81.419083,28.669124,1989-10-31 +-85.185419,30.727988,1989-11-16 +-86.593257,36.306402,1990-01-31 +-88.267322,42.351653,1989-12-30 +-85.803025,41.566163,1989-10-31 +-77.387431,35.574413,1990-01-31 +-105.225561,35.621497,1989-12-30 +-111.573308,33.415057,1991-07-02 +-82.102533,34.242563,1989-10-02 +-80.735366,32.422364,1989-11-16 +-103.532661,38.004822,1990-01-31 +-81.13197,35.26061,1990-01-31 +-88.640855,40.873665,1990-12-31 +-80.206447,26.276007,1990-04-02 +-85.266904,41.452299,1989-12-30 +-93.879694,42.037386,1989-12-30 +-82.687955,27.845205,1990-06-27 +-81.02859,29.175314,1990-02-24 +-78.052872,34.04081,1989-08-01 +-92.669637,41.296205,1989-10-31 +-88.047822,42.963921,1989-12-30 +-89.155825,38.532973,1990-10-01 +-89.784039,43.586625,1989-12-30 +-106.658895,35.206571,1990-01-31 +-80.114015,26.572005,1990-01-31 +-79.555858,37.338515,1989-10-31 +-83.4428,33.918034,1990-06-27 +-88.205866,41.764204,1990-10-29 +-83.962036,34.44887,1990-01-31 +-88.084077,42.182522,1990-01-31 +-95.930989,28.988286,1990-08-01 +-78.15587,39.177177,1990-01-31 +-84.176881,39.528671,1989-12-30 +-84.359891,30.459042,1990-01-31 +-95.562281,29.790801,1990-04-02 +-84.237507,40.054446,1990-04-02 +-110.981961,31.908755,1990-01-31 +-105.539498,41.304128,1990-04-02 +-88.300031,42.226183,1990-04-30 +-106.768666,34.694902,1990-01-31 +-95.121512,43.422903,1990-01-31 +-84.132023,41.400551,1990-01-31 +-112.408926,34.551383,1991-11-04 +-89.953702,38.592589,1990-01-31 +-85.135667,41.127296,1990-01-31 +-88.14475,42.012885,1990-01-31 +-89.783974,40.41141,1990-01-31 +-84.666764,43.406959,1990-01-31 +-85.237614,43.184442,1990-04-02 +-77.389577,37.246442,1994-03-01 +-85.493428,41.170417,1990-01-31 +-82.630676,38.444854,1989-11-16 +-82.945613,39.600842,1989-10-31 +-84.766749,43.575388,1989-12-30 +-83.171563,41.287146,1990-01-31 +-88.582617,44.016083,1989-12-30 +-91.46341,40.410076,1990-01-31 +-85.559466,44.280663,1990-04-02 +-84.536412,40.556563,1990-01-31 +-94.371259,41.048007,1990-01-31 +-80.142493,26.651389,1990-05-30 +-101.485526,36.706371,1990-04-02 +-113.063424,37.677319,1990-08-01 +-113.519965,37.128468,1990-05-30 +-112.295464,40.556526,1990-05-30 +-84.307003,39.292076,1990-04-02 +-111.462504,36.902193,1991-01-30 +-84.269136,39.094617,1990-04-02 +-81.531024,30.166494,1990-02-24 +-91.239669,43.897003,1990-08-01 +-92.104103,46.695376,1991-10-01 +-82.349131,40.845423,1990-05-30 +-87.698842,44.077075,1990-08-01 +-81.721941,38.820828,1990-06-27 +-90.438882,40.002855,1990-01-31 +-80.782615,35.098797,1990-01-31 +-88.089919,44.524015,1990-01-31 +-91.332439,39.935265,1990-02-24 +-97.171391,32.762471,1990-05-30 +-110.957267,41.262526,1990-08-01 +-108.38059,43.035571,1990-06-27 +-85.254061,34.954443,1990-12-03 +-86.145329,39.661467,1990-05-30 +-98.38277,40.626275,1990-05-30 +-109.24969,41.57864,1990-08-01 +-86.647564,31.84826,1990-04-30 +-83.917876,39.690211,1990-08-01 +-80.93041,35.142541,1990-08-01 +-79.427971,36.594637,1990-10-29 +-84.132733,36.369531,1990-10-01 +-84.934857,36.43371,1990-10-01 +-89.919482,34.304572,1990-08-01 +-85.15461,35.032032,1990-06-27 +-95.04249,45.09618,1990-06-27 +-88.743448,44.402267,1990-08-01 +-92.886164,44.738657,1990-11-14 +-93.950659,44.166887,1991-11-05 +-114.598826,32.674933,1990-12-31 +-91.707978,41.295979,1990-05-30 +-85.764463,38.310958,1990-06-27 +-80.949823,38.285941,1990-10-29 +-82.523061,38.40944,1991-09-11 +-87.026369,41.453694,1990-09-04 +-84.958789,40.161794,1991-10-01 +-86.823999,33.447245,1990-10-29 +-82.558353,28.025731,1990-09-04 +-97.397636,42.906768,1990-08-01 +-94.51979,38.96107,1990-02-20 +-105.494,44.273579,1991-01-30 +-78.39828,37.277952,1990-06-27 +-86.893959,41.676051,1990-09-04 +-84.761992,33.730284,1990-01-31 +-87.950518,42.240446,1990-08-01 +-88.976992,42.267818,1990-08-01 +-93.558435,41.374822,1990-08-01 +-87.317915,31.512203,1990-08-01 +-97.384102,27.714185,1990-10-01 +-84.102964,39.863623,1990-08-01 +-92.330632,42.460243,1990-08-01 +-87.732358,41.500491,1990-10-01 +-79.792417,36.076819,1991-07-02 +-80.42825,37.816371,1995-08-16 +-97.067959,44.886323,1990-08-01 +-82.504896,28.085076,1990-11-14 +-77.634025,36.430203,1990-10-29 +-84.1104,39.633713,1990-04-02 +-84.226208,39.62659,1990-04-02 +-82.537989,37.505119,1990-10-01 +-91.475314,42.483861,1990-08-01 +-97.244651,37.738428,1990-08-01 +-106.94254,44.773659,1990-10-29 +-90.687813,42.067955,1990-08-01 +-84.640524,39.013306,1990-09-04 +-80.247553,25.993839,1990-10-01 +-111.862295,33.335099,1990-09-04 +-82.73961,28.09361,1991-01-30 +-90.380564,38.435904,1990-10-29 +-88.064298,43.161681,1990-10-01 +-101.406783,35.660578,1990-08-01 +-80.127401,26.260676,1991-01-30 +-86.215436,39.911764,1990-10-01 +-82.522919,38.409032,1990-08-01 +-98.483561,45.45903,1990-10-01 +-84.602404,39.259558,1990-12-03 +-79.932508,39.020633,1990-10-29 +-77.610111,37.651103,1990-12-03 +-77.482359,37.352791,1993-02-02 +-77.354771,37.611532,1990-12-03 +-95.200817,42.647473,1990-04-02 +-76.251596,36.289693,1990-06-27 +-91.677926,42.034751,1990-10-29 +-76.671757,39.975478,1990-10-01 +-90.715717,33.755281,1990-12-31 +-88.259666,42.074345,1991-02-27 +-112.185179,33.638753,1990-09-04 +-112.235138,33.581272,1990-12-03 +-100.794448,46.798413,1990-12-03 +-96.771102,43.516008,1990-10-29 +-82.752678,27.808204,1990-10-29 +-77.20164,39.843879,1991-01-30 +-96.766832,44.311351,1990-10-29 +-82.537324,40.777635,1990-12-03 +-86.251683,42.411972,1990-10-29 +-80.201552,26.691523,1991-02-27 +-84.670887,44.94385,1990-08-01 +-103.812878,44.480466,1990-10-01 +-80.281122,39.279534,1990-12-03 +-97.063467,47.889451,1990-12-31 +-93.262379,42.507007,1990-10-29 +-86.913341,40.301426,1991-01-30 +-87.709214,40.775614,1990-12-03 +-112.220675,33.469613,1991-09-11 +-87.949626,42.924241,1991-01-30 +-80.460321,35.661072,1990-12-03 +-88.106631,41.939167,1991-01-30 +-121.276256,38.021082,1991-01-30 +-115.574184,32.801422,1990-12-03 +-87.846147,41.601471,1991-10-01 +-86.019578,39.927275,1990-12-03 +-79.737506,36.489637,1990-12-31 +-115.062206,36.16211,1990-10-29 +-115.108453,36.099989,1991-01-30 +-89.896226,35.234204,1991-12-31 +-93.35914,45.20749,1990-11-14 +-118.17178,34.695807,1990-08-01 +-82.934085,38.753169,1990-08-01 +-103.622026,48.168714,1990-12-03 +-85.837683,41.586418,1990-10-29 +-102.789724,46.904442,1990-11-14 +-80.449641,41.233395,1991-11-05 +-83.668807,38.622853,1991-01-30 +-85.078598,41.362742,1991-01-30 +-88.322358,42.846505,1990-12-31 +-109.563623,40.440261,1990-12-03 +-110.805434,39.599571,1990-12-31 +-119.027732,35.317669,1991-01-30 +-121.572309,39.49804,1991-01-30 +-87.470929,41.494853,1991-01-30 +-93.876006,45.188577,1990-12-31 +-84.332815,34.042791,1990-09-04 +-78.584869,36.300207,1991-01-30 +-86.008203,39.773997,1991-10-01 +-96.86559,46.861953,1990-12-03 +-120.079932,36.974606,1991-01-30 +-115.242965,36.123188,1991-01-30 +-100.762917,41.121631,1990-12-31 +-84.579324,33.856488,1990-10-29 +-121.034879,37.671678,1990-10-29 +-117.320177,34.470659,1991-01-30 +-80.122729,26.487785,1991-01-30 +-80.293947,25.934884,1992-03-03 +-76.771795,40.262444,1991-11-05 +-83.001041,43.821799,1991-01-30 +-84.966718,41.935058,1990-12-31 +-82.443981,40.027845,1991-01-30 +-83.341458,40.239988,1990-11-14 +-88.068209,41.696085,1990-12-03 +-95.886225,36.038362,1990-09-04 +-111.981712,33.640598,1991-04-02 +-94.668472,38.915174,1991-02-27 +-117.670303,35.609457,1991-01-30 +-86.127392,40.007435,1991-01-30 +-89.707837,39.753091,1991-01-30 +-81.190785,34.707884,1990-12-31 +-103.201178,44.075058,1991-01-30 +-87.269146,30.427652,1990-10-01 +-85.248558,35.157512,1990-11-14 +-77.641682,40.569554,1991-07-02 +-122.225053,40.159046,1991-01-30 +-93.528745,47.216538,1991-01-30 +-77.73165,43.215229,1991-07-02 +-82.456694,43.038848,1991-06-04 +-111.000254,32.133804,1991-11-05 +-80.030136,35.99303,1991-09-11 +-78.893573,36.035731,1990-12-31 +-121.868807,38.011123,1991-07-31 +-120.636979,40.410987,1991-11-05 +-87.300104,41.47451,1991-09-11 +-77.624657,43.081247,1991-04-02 +-87.068741,31.136996,1990-11-14 +-92.868049,40.742846,1991-01-30 +-83.214732,41.109878,1991-06-04 +-75.884746,41.219415,1992-02-04 +-118.961498,35.390398,1991-07-31 +-96.226135,42.793046,1991-01-30 +-97.546635,35.609722,1991-04-02 +-96.69031,46.876379,1991-04-02 +-82.652801,41.396974,1991-01-30 +-87.100666,39.529517,1991-04-02 +-76.380721,37.04203,1991-04-02 +-95.383684,45.84564,1991-04-02 +-94.196898,45.544917,1991-04-30 +-94.337432,45.97557,1991-07-31 +-88.210858,43.041311,1991-07-31 +-101.322454,48.210477,1991-04-02 +-96.066941,41.314838,1991-04-02 +-85.150067,31.87722,1990-11-14 +-86.219289,41.052986,1991-01-30 +-77.892988,40.807653,1991-01-30 +-77.046697,35.852301,1991-01-30 +-84.804507,42.582054,1991-01-30 +-88.492553,43.799102,1991-09-11 +-76.901356,40.952029,1991-12-31 +-119.670785,36.327993,1991-07-02 +-111.700457,33.393892,1991-07-31 +-84.937612,40.824839,1991-04-02 +-119.773244,39.113186,1991-07-02 +-98.721266,46.882048,1991-04-02 +-87.923052,43.384911,1991-01-30 +-122.25418,38.15218,1991-10-01 +-80.760723,37.063055,1991-04-02 +-80.509259,39.047871,1991-07-31 +-94.25899,46.343119,1991-07-02 +-86.903999,40.020438,1991-12-31 +-80.209938,41.621256,1991-10-01 +-93.302878,44.288818,1991-07-02 +-82.482588,33.47376,1991-06-04 +-118.199702,34.617789,1991-07-31 +-77.615971,35.269171,1991-02-27 +-80.875012,35.81136,1991-07-02 +-82.955451,35.525077,1991-02-27 +-77.952131,35.734126,1993-07-27 +-85.44192,40.21812,1991-06-04 +-80.781126,35.213436,1991-06-04 +-85.837644,40.814756,1991-10-01 +-87.964758,42.3854,1991-10-01 +-91.431804,44.775996,1991-07-31 +-75.974691,40.344093,1991-09-11 +-96.042015,41.179983,1991-07-31 +-90.85323,46.605892,1991-07-31 +-77.401192,42.835958,1992-06-02 +-77.74776,39.656184,1991-12-31 +-84.949655,38.294954,1991-07-02 +-86.75535,37.927925,1991-09-11 +-75.311827,43.089491,2002-09-18 +-88.370939,43.049219,1991-09-11 +-91.180566,43.879755,1991-09-11 +-80.450087,25.684281,1992-02-04 +-87.922373,42.068283,1991-11-05 +-76.41442,36.829328,1991-07-31 +-95.385114,40.762024,1991-10-01 +-78.463204,40.018961,1991-11-05 +-100.316606,44.364965,1991-12-31 +-111.93879,40.651866,1991-10-01 +-76.583306,36.749975,1991-10-01 +-76.068452,36.824937,1991-07-02 +-88.953958,39.899207,1991-11-05 +-94.700233,38.989625,1992-09-30 +-117.29943,34.048418,1992-02-04 +-117.168797,34.047264,1991-11-05 +-82.064222,35.650924,1991-10-01 +-98.865197,48.109763,1992-03-03 +-96.122109,46.289593,1991-04-02 +-121.389422,38.408912,1991-11-05 +-71.440659,43.056257,1991-07-02 +-111.979633,41.103446,1991-10-01 +-117.040633,32.959049,1992-08-04 +-82.846785,34.093604,1991-10-01 +-80.671581,28.122627,1992-03-03 +-77.987628,39.45782,1991-07-02 +-121.958333,38.362838,1992-02-04 +-76.852749,42.90506,1991-11-05 +-80.587261,40.656913,1991-06-04 +-111.966873,41.224796,1991-06-04 +-84.999531,41.655792,1991-11-05 +-90.29754,32.32535,1991-07-02 +-86.696665,33.530616,1991-07-02 +-82.787735,27.917593,1992-02-04 +-90.035517,40.592536,1991-11-05 +-80.194891,39.425283,1991-12-31 +-76.056466,38.77659,1991-11-05 +-76.589295,38.540133,1991-11-05 +-76.896721,38.637794,1992-04-01 +-83.594754,41.055541,1991-07-02 +-85.516903,43.687438,1991-12-31 +-84.009171,33.888298,1991-12-31 +-91.540157,41.649359,1991-11-05 +-95.770985,44.433575,1991-11-05 +-93.596742,41.538038,1991-12-31 +-81.91712,40.544911,1991-11-05 +-84.285264,39.820729,1991-12-31 +-78.848942,38.433778,1991-11-05 +-88.97442,43.968284,1991-11-05 +-85.652711,40.06974,1991-07-31 +-85.129217,39.657589,1991-09-11 +-76.867184,37.902733,1991-11-05 +-76.982713,42.861374,1991-12-31 +-95.375405,42.017711,1991-11-05 +-84.140762,42.997838,1992-02-04 +-88.257983,40.147107,1991-12-31 +-87.941594,42.153148,1992-02-04 +-75.544428,39.191886,1991-12-31 +-87.961362,41.870048,1992-08-04 +-94.375571,44.871235,1992-02-04 +-80.248132,40.161352,1992-08-04 +-89.631604,42.278721,1992-02-04 +-75.443393,38.910537,1991-11-05 +-75.033571,39.73012,1991-09-11 +-83.320738,36.768698,1991-12-31 +-77.502038,43.193537,1991-11-05 +-84.853074,39.830973,1992-02-04 +-111.970922,33.349095,1992-02-04 +-117.226107,33.818517,1992-02-04 +-80.037775,32.81393,1991-11-05 +-70.881552,43.234894,1992-02-04 +-83.088164,40.581086,1991-10-01 +-78.70746,35.85977,1991-11-05 +-83.901977,43.623738,1992-02-04 +-71.337782,42.89921,1992-02-04 +-84.528054,43.204621,1991-11-05 +-122.713398,38.366693,1992-02-04 +-117.428587,34.10665,1992-06-02 +-92.180044,46.813875,1992-03-03 +-85.385859,39.885601,1992-09-30 +-77.391534,37.704064,1992-02-04 +-121.169166,38.671036,1992-04-01 +-90.141172,38.73441,1992-02-04 +-70.867562,42.881782,1992-02-04 +-81.245849,37.243622,1992-06-02 +-93.718595,41.596416,1992-02-04 +-79.0749,40.051726,1992-04-01 +-84.424275,34.025709,1992-04-01 +-77.373945,34.533853,1992-05-05 +-111.714393,40.280368,1992-03-03 +-78.736499,41.130881,1993-02-02 +-80.102139,40.688081,1992-05-05 +-85.428238,41.784343,1992-05-05 +-121.757138,42.193231,1992-03-03 +-76.504921,37.11915,1992-04-01 +-79.145757,35.459624,1991-12-31 +-122.898738,44.517257,1992-03-03 +-88.71555,43.192589,1992-06-30 +-75.840892,40.2967,1992-06-02 +-109.093019,44.516014,1992-04-01 +-87.79808,41.705098,1992-05-05 +-78.465263,38.097563,1992-11-02 +-76.217936,42.573037,1992-06-02 +-81.550819,39.305597,1992-08-04 +-87.592928,38.355521,1992-06-02 +-122.983526,44.964543,1992-05-05 +-71.423808,42.72595,1993-04-30 +-93.164623,44.83013,1992-08-04 +-94.871945,42.066948,1992-06-02 +-70.349217,43.623281,1992-08-04 +-121.30349,38.11542,1992-09-01 +-83.402526,41.946041,1992-09-30 +-85.975519,43.467213,1992-06-30 +-78.558187,41.390347,1992-09-01 +-122.539146,45.416238,1992-09-30 +-76.477142,41.015292,1992-08-04 +-82.451607,35.278788,1992-08-04 +-71.580573,42.811598,1992-06-30 +-69.098352,44.125439,1992-11-02 +-83.384652,43.497839,1992-06-30 +-89.469461,43.570335,1992-08-04 +-96.660898,32.877895,1987-12-26 +-97.134255,32.669032,1988-08-15 +-95.761659,39.062142,1988-01-01 +-85.194109,41.07326,1992-09-01 +-116.279395,33.707414,1992-11-02 +-74.375233,42.995497,1992-08-04 +-74.917487,39.792113,1992-08-04 +-106.820117,40.4624,1992-09-30 +-84.67052,41.966779,1992-09-30 +-73.90142,41.550309,1993-08-31 +-76.210087,36.862138,1992-06-30 +-81.944555,40.846972,1992-08-04 +-77.054856,43.055741,1992-08-04 +-88.3399,42.052703,1992-08-04 +-119.840968,36.809228,1992-11-02 +-78.437105,35.787015,1992-06-30 +-119.290149,45.850357,1992-06-30 +-88.370959,41.76486,1992-03-03 +-91.932759,44.911747,1992-08-04 +-79.549514,40.826064,1992-08-04 +-80.689522,35.211655,1992-08-04 +-76.972851,39.825172,1992-08-04 +-83.65102,42.230455,1992-08-04 +-77.523635,38.797722,1992-04-01 +-119.272816,36.326119,1992-08-04 +-111.54596,40.72765,1992-08-04 +-89.647343,44.436079,1992-08-04 +-79.458936,34.177048,1992-06-30 +-76.534714,42.970017,1993-01-05 +-76.232924,43.185533,1992-09-30 +-116.537535,33.815908,1992-11-02 +-77.50947,38.305187,1992-08-04 +-123.302855,42.440082,1992-08-04 +-76.014212,42.094212,1992-09-30 +-84.03132,41.875069,1993-02-02 +-95.162274,29.998583,1992-11-25 +-115.242287,36.216069,1992-08-04 +-82.117649,41.398551,1992-09-01 +-121.216026,37.786457,1992-08-04 +-76.250346,36.769027,1992-09-30 +-79.89314,36.055999,1992-11-02 +-123.173074,45.228723,1992-11-02 +-74.240967,39.974265,1993-03-02 +-80.313612,26.063223,1992-11-25 +-109.558884,31.339254,1992-09-01 +-82.066569,29.210633,1992-09-30 +-88.052665,41.859401,1993-09-28 +-80.274327,36.189772,1992-09-01 +-77.722771,39.888981,1992-11-02 +-80.224024,26.20844,1993-02-02 +-77.294579,38.646608,1993-02-02 +-117.006509,33.750994,1992-11-02 +-93.432893,44.857313,1993-02-02 +-68.739622,44.836166,1993-01-05 +-81.310267,41.676902,1992-11-02 +-95.665641,44.877762,1992-11-02 +-115.496264,32.694106,1993-01-05 +-75.79401,39.604074,1993-01-05 +-92.834459,45.032838,1992-11-02 +-117.370316,34.072101,1993-02-02 +-81.443283,41.642537,1993-02-02 +-93.388443,45.10107,1992-11-02 +-95.091958,44.541382,1992-11-02 +-70.111735,44.594481,1993-03-02 +-76.985594,39.584723,1992-11-02 +-70.236207,44.120695,1993-02-02 +-74.914375,39.894024,1993-02-02 +-117.034737,46.732465,1993-01-05 +-75.925146,44.047426,1992-11-02 +-111.99348,46.59132,1993-01-05 +-71.506599,41.788971,1993-08-31 +-82.312249,26.934541,1993-02-02 +-76.639361,39.13062,1992-08-04 +-121.539036,45.710919,1992-11-02 +-119.044027,36.080473,1992-11-02 +-111.778083,43.835659,1992-11-02 +-116.993775,34.881641,1992-11-25 +-124.251637,43.391503,1993-01-05 +-121.391705,38.712171,1993-01-05 +-119.630952,36.576378,1992-11-02 +-80.308787,40.395199,1992-08-04 +-75.637672,41.465794,1997-01-10 +-79.938778,40.849358,1992-09-30 +-76.960946,40.237635,1992-11-02 +-76.915851,41.260906,1993-01-05 +-111.834324,41.76018,1992-09-30 +-118.058124,45.338022,1992-09-30 +-75.59543,38.366367,1993-04-30 +-72.55088,41.798784,1993-01-05 +-87.857821,41.783147,1992-11-02 +-76.717731,38.934159,1993-09-28 +-81.862348,41.161615,1992-11-25 +-81.633191,41.135822,1993-01-05 +-88.045946,42.000225,1993-02-02 +-88.18799,41.941565,1993-03-02 +-117.283723,33.941571,1993-03-02 +-113.793143,42.557461,1992-11-02 +-112.507855,45.963855,1992-11-02 +-111.983898,43.404618,1993-01-05 +-121.655491,39.144118,1993-01-05 +-77.541138,39.113651,1993-06-01 +-112.357591,43.198266,1992-11-02 +-70.886033,41.644261,1992-09-01 +-72.546861,42.851062,1993-02-02 +-87.967149,44.473051,1992-11-02 +-78.998955,43.107247,1993-02-02 +-124.195659,41.772692,1993-01-05 +-81.492308,40.99177,1993-03-02 +-117.520644,33.88981,1993-03-31 +-83.650227,41.353847,1993-03-02 +-117.195549,34.135766,1993-02-02 +-116.24167,33.636787,1993-02-02 +-80.203253,26.347905,1993-11-02 +-116.987603,32.842331,1993-04-30 +-71.46732,42.114154,1993-02-02 +-68.501269,45.363074,1993-02-02 +-74.26563,39.698639,1993-06-30 +-117.533124,34.106311,1993-03-31 +-85.689645,43.037514,1993-06-30 +-68.011306,46.697903,1993-02-02 +-124.054963,44.654553,1993-01-05 +-76.594761,43.39304,1993-02-02 +-81.514522,41.313223,1993-09-21 +-83.770354,43.002046,1993-03-31 +-92.456896,46.690758,1993-02-02 +-71.107187,42.828031,1993-02-02 +-89.387303,45.633164,1992-11-02 +-68.407369,44.532171,1993-08-31 +-87.91058,41.907057,1993-07-27 +-78.106335,36.709914,1993-02-02 +-78.724955,40.485624,1993-03-02 +-84.677171,44.99391,1992-11-02 +-81.857334,40.275037,1992-11-25 +-87.741927,41.765893,1993-03-02 +-70.579994,43.496669,1993-04-30 +-73.700668,42.625475,1993-03-02 +-117.825884,34.117486,1994-05-17 +-86.089904,42.811288,1993-03-02 +-96.681963,40.857887,1993-04-30 +-77.069634,41.782816,1993-03-31 +-74.848858,44.950033,1993-03-31 +-119.508067,48.416757,1993-04-30 +-80.58124,40.402895,1993-10-26 +-79.308162,42.451125,1993-03-31 +-76.985001,36.279336,1993-02-02 +-116.939976,44.024749,1993-03-31 +-93.263699,45.123165,1993-04-30 +-78.303694,36.100775,1993-03-31 +-70.751007,43.416061,1993-04-30 +-89.091343,42.312075,1993-04-30 +-108.566597,45.755157,1993-04-30 +-81.801631,26.272378,1993-06-01 +-98.765509,26.352186,1993-04-30 +-74.450295,41.465643,1993-03-02 +-82.505696,27.944824,1993-06-30 +-84.403987,38.986544,1993-06-01 +-86.131236,40.476471,1993-08-31 +-120.872483,37.507269,1993-06-01 +-71.767906,41.351614,1993-06-01 +-95.850827,41.216336,1993-10-26 +-77.717222,42.800063,1993-02-02 +-72.526705,42.124943,1993-06-01 +-76.170026,39.499874,1993-08-31 +-77.628416,37.504829,1994-01-25 +-71.562374,42.372855,1993-07-27 +-92.514457,44.079512,1993-03-02 +-121.762535,37.699604,1993-10-26 +-79.326073,42.097871,1993-06-01 +-67.840565,46.141641,1993-08-31 +-72.329084,43.375654,1993-08-31 +-76.86889,42.156225,1993-07-27 +-74.123617,40.07062,1993-08-31 +-86.328932,41.363916,1993-10-26 +-122.615383,38.929884,1994-01-04 +-71.886236,41.924263,1995-09-19 +-76.502461,38.294072,1993-10-26 +-88.477485,44.268167,1993-04-30 +-120.93874,37.608159,1993-08-31 +-73.106495,42.679867,1993-09-28 +-76.802433,39.101927,1994-09-27 +-82.541006,41.154498,1993-09-28 +-83.312501,43.050811,1993-10-26 +-121.29828,38.753841,1993-07-27 +-120.468593,34.660966,1993-10-26 +-83.070505,40.268011,1993-08-31 +-86.573661,39.147187,1994-01-25 +-117.655088,34.106996,1993-07-27 +-77.943816,43.196042,1993-03-31 +-73.485358,44.693849,1994-01-04 +-112.466317,42.909953,1993-08-31 +-80.123922,25.986386,1994-01-04 +-73.782653,42.734778,1993-08-31 +-75.68676,36.055944,1993-06-01 +-119.722262,36.735872,1993-08-31 +-121.55991,37.01848,1993-10-26 +-74.518622,40.432473,1993-10-26 +-90.734881,42.489613,1994-01-04 +-80.571498,35.476586,1993-10-26 +-117.000759,46.399391,1993-07-27 +-119.278399,47.134053,1993-07-27 +-80.113603,41.169535,1993-08-31 +-76.316304,39.464292,1993-08-31 +-86.250396,41.789945,1993-07-27 +-71.882822,42.169144,1993-08-31 +-69.782526,44.71119,1993-09-28 +-84.770608,44.326554,1993-09-28 +-77.395958,38.858706,1993-08-31 +-117.905636,48.537019,1993-08-31 +-79.754378,39.905152,1993-06-01 +-87.156111,40.933031,1993-10-19 +-71.035558,41.904897,1993-09-28 +-72.168341,41.745672,1994-01-04 +-76.38718,40.34934,1994-01-04 +-75.936228,41.572607,1994-01-04 +-121.470523,37.753931,1993-09-28 +-78.739042,39.657569,1993-10-26 +-117.453967,33.938117,1994-01-04 +-122.855944,42.369148,1993-09-28 +-120.366475,37.974059,1993-10-26 +-122.080862,37.577771,1993-10-26 +-119.158279,34.220519,1993-10-26 +-84.677736,40.178381,1993-10-26 +-81.630462,38.363954,1993-08-31 +-123.824818,46.983598,1994-05-17 +-77.425136,39.024522,1994-01-25 +-120.499781,37.318692,1993-10-26 +-74.836929,40.047277,1994-01-04 +-75.508653,39.62554,1993-10-26 +-78.134119,42.749618,1994-01-25 +-121.80154,39.722355,1994-03-30 +-76.507252,39.378691,1995-01-03 +-69.793161,44.343336,1993-10-26 +-69.322124,44.8427,1994-01-04 +-122.083922,38.237656,1993-10-19 +-78.406072,40.472643,1993-09-28 +-114.976741,36.043656,1994-01-25 +-114.032721,35.195142,1994-01-04 +-123.200558,39.132681,1994-01-04 +-122.449991,39.58988,1993-10-26 +-120.803736,38.35853,1994-01-04 +-71.478975,43.231193,1993-11-02 +-73.751435,43.105586,1994-01-04 +-72.033734,42.792142,1994-01-25 +-78.610989,35.835987,1993-09-28 +-79.583119,40.308568,1993-10-26 +-84.446484,38.001441,1993-09-28 +-85.668798,42.449709,1993-10-19 +-86.423684,42.07957,1994-01-04 +-80.774662,41.099593,1994-01-04 +-74.80649,41.324245,1994-01-04 +-84.061498,35.925137,1994-01-25 +-95.514187,29.736876,1994-07-26 +-74.849612,40.168683,1993-11-02 +-122.963009,42.318473,1993-11-02 +-81.755634,41.418498,1994-03-22 +-121.318926,44.021381,1994-10-26 +-117.297239,33.662676,1994-09-27 +-81.421595,39.408107,1994-03-30 +-87.461104,46.549394,1994-03-30 +-85.178752,42.261048,1994-03-30 +-82.729701,27.983355,1994-03-30 +-118.063176,33.870347,1994-07-26 +-79.963364,39.608351,1994-01-04 +-111.046156,45.694271,1994-01-25 +-96.795115,33.025783,1994-04-26 +-93.123044,45.086427,1994-07-26 +-78.203911,43.017101,1995-07-25 +-82.10696,36.639623,1995-03-15 +-74.152014,41.108323,1999-10-13 +-80.258696,25.78501,1994-06-29 +-75.455933,44.705425,1995-01-03 +-75.227049,43.126014,1995-03-21 +-117.216367,33.170513,1994-05-17 +-70.678871,41.762786,1994-06-29 +-75.084847,40.198162,1996-02-20 +-73.761095,42.270203,1994-03-30 +-82.91407,40.0577,1994-10-26 +-120.685543,35.615178,1994-09-27 +-84.477769,45.626883,1994-08-31 +-119.174485,46.176587,1994-03-30 +-86.399853,43.955481,1994-03-22 +-71.23012,42.124623,1994-04-26 +-73.984028,41.558427,1994-08-31 +-96.839013,32.925954,1994-01-04 +-119.782338,39.555304,1994-07-26 +-78.69684,43.185016,1995-10-17 +-75.039939,39.426448,1995-01-03 +-118.142734,33.902454,1994-05-17 +-86.664493,33.408549,1994-07-26 +-111.891599,33.507968,1994-10-18 +-112.093436,33.523974,1995-01-03 +-85.550728,30.75164,1994-08-30 +-81.472974,40.493387,1994-08-31 +-73.623115,43.397435,1995-09-19 +-120.870451,37.056766,1994-10-26 +-71.758226,42.592519,1994-10-22 +-121.919666,37.431512,1994-09-27 +-75.52573,42.553048,1994-10-26 +-123.127661,47.231314,1994-10-18 +-71.033375,42.121844,1994-07-26 +-94.100167,33.443467,1995-01-25 +-84.055811,39.77076,1994-03-22 +-105.079826,39.740302,1994-01-25 +-89.649781,44.917952,1994-07-26 +-70.844203,41.9959,1998-05-20 +-78.403481,41.033992,1995-01-25 +-95.69288,39.00058,1995-01-03 +-91.065872,30.379171,1994-09-27 +-97.82608,30.235825,1994-04-26 +-80.753098,35.310202,1995-01-03 +-73.892404,42.922937,1995-08-16 +-77.973733,38.482749,1995-01-25 +-78.995793,35.95361,1995-10-17 +-72.326245,43.608853,1999-01-27 +-70.947467,42.459334,1995-05-31 +-70.780185,42.958486,1999-10-27 +-75.145012,39.927396,1995-01-04 +-71.239352,42.798664,1995-01-31 +-69.008502,44.42622,1994-09-27 +-73.081105,41.820274,1996-08-28 +-75.492624,40.644858,1995-01-31 +-74.174405,42.945057,1994-09-27 +-114.046792,46.833891,1994-10-26 +-82.440305,40.402459,1994-08-31 +-117.032341,32.583079,1995-01-03 +-80.317531,26.145543,1995-06-20 +-73.849432,42.695345,1994-05-17 +-70.505093,43.476739,1995-09-19 +-84.146424,33.969892,1994-08-31 +-72.951718,40.88134,1995-01-03 +-71.007149,41.641042,1994-08-31 +-71.655708,42.289436,1995-08-22 +-78.468525,42.079724,1995-07-25 +-77.365256,37.18077,1999-06-16 +-121.884371,37.700197,1995-11-01 +-73.111851,41.290452,1996-06-26 +-78.693286,42.483835,1995-04-26 +-76.059206,43.063073,1994-09-27 +-75.630852,40.022858,2002-08-14 +-75.727551,40.818293,1994-10-26 +-72.119363,41.508421,1994-10-26 +-74.673867,40.301924,1995-05-31 +-84.485221,39.287002,1994-06-29 +-72.705758,42.108412,1994-08-31 +-93.369776,36.701869,1994-10-26 +-80.128527,26.93448,1995-10-17 +-117.113964,32.804631,1995-11-01 +-70.970231,42.598612,1999-01-27 +-70.43755,44.108005,1994-10-18 +-71.326276,41.792985,1995-01-31 +-76.839107,40.831599,1995-01-31 +-120.334819,47.453296,1994-10-26 +-119.791518,39.482269,1995-12-30 +-121.74089,38.677167,1997-07-16 +-84.550889,41.461061,1994-07-26 +-88.586661,47.113009,1994-03-30 +-80.670007,40.371168,2002-08-14 +-77.135166,38.771771,1995-11-01 +-74.19678,40.258361,1995-10-17 +-124.391053,47.95913,1995-12-30 +-80.780512,41.272853,1994-09-27 +-93.266073,44.861803,1995-01-03 +-80.769772,39.9183,1996-10-01 +-72.067544,41.366506,1994-10-26 +-106.387896,31.776772,1994-04-26 +-70.52006,43.382462,1994-10-26 +-87.81895,41.863466,1994-10-26 +-76.749443,39.964665,1994-10-26 +-117.715643,33.563037,1995-11-01 +-111.856564,40.619777,1995-05-02 +-76.547271,41.989321,1994-10-26 +-82.012818,39.974902,1994-08-31 +-78.822297,43.010357,1994-08-31 +-80.631309,41.028137,1997-01-29 +-90.302267,38.494201,1995-01-31 +-80.952935,34.023504,1995-10-11 +-87.961208,41.752126,1994-07-26 +-117.6715,33.68355,1995-05-02 +-93.25811,37.141371,1995-03-15 +-71.261554,42.621126,1995-12-30 +-73.120538,44.442948,1997-01-29 +-70.967164,42.094811,1995-01-03 +-73.19104,42.452366,1995-05-02 +-77.805324,40.829638,1995-09-19 +-90.480881,41.46912,1996-04-24 +-72.829293,41.277293,1997-08-13 +-77.413253,39.394484,1995-09-19 +-75.493483,43.22943,1995-01-25 +-75.399532,40.289021,1996-06-26 +-81.66403,26.614723,1995-03-15 +-98.589136,29.365575,1995-01-31 +-119.984214,46.316908,1994-09-27 +-117.941505,33.836307,1995-01-31 +-121.185526,44.248912,1994-10-26 +-82.387005,38.411836,1995-05-31 +-117.289591,33.241603,1995-01-31 +-71.481744,42.963545,1995-01-31 +-78.781176,35.743704,1995-11-01 +-76.751257,39.283463,1995-03-22 +-122.967627,46.62816,1995-05-31 +-84.421646,39.170531,1995-01-03 +-117.932022,34.000305,1995-12-30 +-116.900134,32.827584,1996-05-29 +-74.856648,39.718197,1995-12-30 +-76.011432,40.988676,1995-03-15 +-78.437699,36.330449,1995-05-31 +-95.510116,29.851932,1995-01-31 +-77.084953,38.742969,1995-12-30 +-114.290704,48.209909,1995-06-28 +-71.492949,41.580882,1997-06-18 +-75.036961,42.448624,1995-08-16 +-75.663933,40.255185,1995-08-22 +-73.942814,42.786241,1997-01-29 +-82.245767,34.709702,1995-01-03 +-71.784607,42.355686,1995-09-19 +-120.482916,46.603151,1995-01-03 +-107.864869,37.228811,1998-07-15 +-88.588526,44.782151,1995-01-03 +-76.056466,38.554364,1995-08-22 +-83.60955,43.019801,1995-07-25 +-92.998747,45.2795,1995-08-22 +-84.767458,39.526261,1995-01-03 +-86.692785,41.619243,1995-01-03 +-119.716066,36.808474,1995-11-01 +-80.088723,42.055873,1995-03-21 +-76.608851,39.193357,1995-03-21 +-122.10866,37.400539,1995-11-01 +-79.944757,40.347463,1995-01-31 +-72.608994,41.919889,1997-07-16 +-71.586023,41.678741,1995-07-25 +-73.027193,41.468984,1997-09-10 +-74.99373,43.023854,1999-10-13 +-73.374752,40.893963,1995-08-22 +-80.388583,41.009858,1995-12-28 +-117.753382,34.033411,1995-12-30 +-73.20982,42.899403,1995-09-19 +-76.519672,39.100345,2002-06-19 +-117.095158,32.645595,1995-11-21 +-117.907633,34.099388,1997-10-29 +-105.328625,39.699608,1995-12-30 +-77.458513,37.630116,1997-01-29 +-118.570869,34.382075,1996-10-29 +-72.712443,41.607141,1997-07-16 +-79.8633,40.495871,1996-10-29 +-87.611402,33.235626,1995-05-31 +-111.898635,40.546194,1995-06-28 +-84.395915,39.343572,1995-05-31 +-83.867387,36.029922,1995-08-22 +-85.512807,40.898205,1995-07-25 +-79.947813,37.295287,1996-01-24 +-81.717391,41.276644,1995-07-25 +-123.305884,44.933216,1995-05-31 +-81.896746,41.418877,1995-12-30 +-122.634155,47.649558,1996-07-23 +-79.193333,40.600827,1995-06-21 +-122.663888,48.293609,1999-01-27 +-123.069959,43.790495,1996-05-29 +-89.795548,35.141123,1995-07-25 +-81.476946,41.165001,2000-03-15 +-122.631192,47.516784,1996-02-20 +-77.660478,42.319185,1995-11-01 +-72.283991,42.586534,1995-10-17 +-71.016473,43.339778,1997-01-29 +-72.160604,41.36827,1996-06-26 +-117.220164,34.525701,1996-08-28 +-76.242062,40.032451,1996-09-25 +-89.311672,43.109672,1997-01-29 +-70.554039,41.916931,1996-05-29 +-79.872489,37.00957,1996-07-17 +-85.634355,44.726761,1997-01-29 +-86.930907,40.457031,1996-04-24 +-76.153019,40.163875,1999-07-21 +-70.986013,42.238171,1998-01-26 +-79.966406,32.720079,1995-05-02 +-84.136645,41.57349,1995-07-25 +-93.204678,45.571132,1995-12-30 +-83.249766,42.641451,1996-05-29 +-78.637296,42.980118,1996-01-03 +-77.245253,39.200192,1996-08-28 +-84.979085,45.095329,1995-12-30 +-80.749746,41.880533,1995-11-01 +-84.333731,33.938808,1995-11-01 +-81.434223,40.872499,1996-10-29 +-81.555706,41.520394,1999-01-27 +-75.343372,41.127378,2000-01-26 +-71.35239,41.932328,1996-05-29 +-92.976747,45.819277,1997-08-13 +-75.182117,40.990556,1997-01-29 +-71.572011,43.452479,1995-07-25 +-73.640333,42.746519,1996-05-29 +-72.824092,41.456694,1996-01-23 +-71.416589,41.752048,1996-06-26 +-122.252157,47.297574,1995-11-01 +-72.280779,42.239498,1995-10-17 +-82.326731,27.923116,1995-11-01 +-84.978197,40.447725,1995-11-01 +-70.80497,43.100563,2001-01-24 +-71.441116,42.954392,2001-03-14 +-83.006284,39.317382,1996-02-20 +-117.986324,34.135016,1996-01-02 +-115.794573,40.839418,1995-11-01 +-122.25277,47.163461,1995-09-19 +-98.483211,29.515729,1995-12-30 +-78.811509,42.76926,1995-11-01 +-76.819858,39.283837,1997-05-21 +-84.970891,45.353514,1997-01-29 +-120.828614,38.705159,2003-01-22 +-75.100944,38.712709,2001-10-24 +-79.84277,40.13746,1996-10-23 +-92.595942,44.866329,1995-07-25 +-122.830717,45.84815,2000-01-26 +-73.435101,43.848687,1998-08-19 +-83.121434,40.060826,1995-11-01 +-96.75209,32.935632,1995-11-01 +-97.336589,38.023425,1995-11-01 +-83.835559,39.943064,1995-11-01 +-87.836799,46.001341,1995-12-28 +-76.505186,39.288075,1999-05-19 +-76.951546,39.404385,1996-02-20 +-77.787712,38.697265,1999-09-15 +-77.415997,38.473296,1995-12-28 +-83.259593,35.309266,1996-03-27 +-84.597195,39.426817,1995-12-28 +-75.70321,43.07557,1996-07-17 +-75.264423,40.287002,1996-05-29 +-75.351028,40.431349,1998-08-19 +-84.600891,39.128257,1997-01-29 +-122.414735,48.767792,1996-08-28 +-87.915291,43.089297,2001-03-14 +-118.806492,39.477731,1996-06-26 +-111.309711,47.524563,1996-04-02 +-121.291685,38.594827,2001-04-18 +-121.66684,36.702077,1997-01-29 +-82.452084,27.290629,1997-04-23 +-75.592875,38.635057,1997-01-29 +-122.981317,46.154579,1996-04-02 +-83.140034,40.074786,1996-04-24 +-80.335694,36.069184,1997-08-13 +-78.811131,39.543701,1996-07-17 +-84.002035,33.653621,1996-08-28 +-118.315802,46.056744,2001-01-24 +-123.375457,43.217639,1996-10-29 +-117.052115,32.74334,2000-03-15 +-75.224836,41.555039,1998-06-17 +-76.495068,40.790152,1997-09-10 +-80.949316,26.754095,1997-08-13 +-116.546133,48.307645,1996-07-23 +-94.639779,39.035185,1996-08-28 +-87.629571,40.196225,1996-08-28 +-118.867327,45.661995,1996-10-29 +-85.524508,42.913057,1996-10-29 +-117.339249,33.183391,1998-06-17 +-117.991787,33.76988,1998-05-20 +-81.667614,36.218585,1997-01-29 +-75.147705,40.681389,1997-10-29 +-79.69704,40.3211,2004-01-21 +-74.841805,40.814693,2000-01-26 +-73.981482,41.958318,1999-01-27 +-95.572503,29.573418,1996-08-28 +-81.298297,41.158,1997-01-29 +-120.418523,34.909214,1999-03-31 +-116.285921,43.590254,1997-01-29 +-88.149342,44.016499,1996-10-29 +-89.720353,45.888757,1996-10-29 +-111.945046,40.529157,1997-01-29 +-112.078753,33.640228,1997-01-28 +-83.973208,34.538185,1997-01-29 +-75.556808,38.075009,1997-04-23 +-112.001746,33.480446,2000-06-14 +-122.218282,47.449163,1996-10-29 +-117.917048,33.738352,1998-01-26 +-74.650713,40.205943,2003-03-19 +-76.687931,39.799799,1997-09-10 +-77.436448,38.28579,1998-01-26 +-87.077756,45.752269,1996-10-01 +-117.864911,33.910953,1998-01-26 +-121.797151,37.252479,1997-01-29 +-118.565325,34.274832,2000-01-26 +-117.61352,33.44449,1999-09-15 +-77.474384,41.118057,1998-10-14 +-76.12007,36.792195,1997-07-16 +-72.962959,43.6128,1997-01-29 +-73.84993,41.325644,1998-07-15 +-88.98628,42.523529,1997-07-16 +-87.060898,30.390615,1998-01-26 +-85.401751,31.17885,1997-05-21 +-76.388353,40.724679,2001-04-18 +-119.330711,36.225746,1997-01-29 +-122.343542,40.585608,1997-01-29 +-123.094234,44.093316,1997-06-18 +-117.19419,47.664273,1997-06-18 +-79.390777,41.203869,1997-10-15 +-81.158893,40.902028,1997-10-29 +-84.035234,41.036589,1997-05-21 +-75.766778,41.30695,1998-08-19 +-87.188287,41.550513,1997-10-29 +-87.658519,45.059058,1998-01-26 +-117.836046,33.825543,1998-01-26 +-74.681555,41.704378,1999-04-21 +-82.621678,37.240477,2000-07-19 +-117.406103,47.74157,2002-03-20 +-122.565473,45.624635,1998-10-14 +-77.165253,39.36533,2001-05-16 +-122.57878,45.492081,1997-10-29 +-122.789428,38.526339,1999-03-20 +-112.32806,33.478677,1998-01-26 +-75.628636,39.656756,1999-04-21 +-120.596842,35.126412,1999-01-27 +-119.094579,35.383421,1998-10-14 +-83.052129,42.621705,1999-01-27 +-83.028386,42.508361,1998-10-14 +-75.156775,38.341283,1999-05-19 +-80.185263,42.072272,1999-01-27 +-101.223408,39.27968,1997-08-13 +-86.466147,38.56398,1997-08-13 +-78.495398,38.660447,2000-01-26 +-79.118276,37.460904,1997-08-13 +-77.829579,39.298151,1997-10-29 +-85.782269,42.850913,1998-01-26 +-118.448771,34.222047,1998-05-20 +-74.65084,40.882321,1999-03-17 +-72.791177,41.695646,1997-09-10 +-122.3092,47.318746,1999-03-24 +-82.99089,39.123233,1998-01-26 +-77.191208,40.19087,2002-08-14 +-92.496783,35.070954,2000-01-26 +-81.616124,38.323042,1998-08-19 +-76.655966,39.495782,1999-01-27 +-103.0232,42.828737,1998-01-26 +-78.342381,34.993018,1999-01-27 +-76.237241,43.047307,1997-07-16 +-74.91993,40.63069,1997-03-26 +-73.578002,40.694117,1997-10-29 +-84.207611,33.857039,1998-10-28 +-73.125002,41.198612,2002-04-17 +-78.76749,42.928595,1998-01-26 +-92.037537,34.979357,1997-10-29 +-79.822758,40.386445,1999-01-27 +-80.392727,26.006368,1998-08-19 +-115.166646,36.239423,1998-01-26 +-115.119629,36.020506,1998-01-26 +-122.238241,47.849419,1999-10-27 +-122.166247,48.097225,2001-04-18 +-122.337859,48.436305,1998-01-26 +-79.13969,41.852669,1999-07-21 +-121.497899,38.62742,1998-08-19 +-98.591217,29.563169,1998-03-18 +-90.650024,38.637002,1999-10-27 +-79.945296,40.620729,2000-01-26 +-74.731433,41.087332,2000-01-26 +-82.172965,38.82332,1998-05-20 +-81.098597,34.360082,1998-01-26 +-114.121228,47.685744,1998-01-26 +-105.813829,46.403009,1998-01-26 +-118.159068,33.832403,2000-03-15 +-81.992674,37.850142,1997-10-29 +-79.540039,40.14656,1999-10-27 +-106.271618,31.758394,1998-05-20 +-82.949309,40.812471,1998-01-26 +-75.921704,40.414211,1999-10-13 +-83.291665,30.882267,1998-09-16 +-90.69856,38.792718,1998-01-26 +-117.744493,40.954085,1998-01-26 +-83.363063,42.578708,1999-01-27 +-84.237058,43.660042,1999-01-27 +-85.307667,42.648611,1999-01-27 +-118.796904,34.282112,1999-04-21 +-82.98252,30.29959,1998-08-19 +-82.429516,28.069249,2000-01-26 +-84.529409,37.977946,1999-01-27 +-71.645809,42.124739,1997-10-29 +-81.876954,31.614632,1998-09-16 +-83.33357,42.380527,1999-01-27 +-74.447814,40.552306,1998-10-28 +-71.194333,44.421793,1998-04-15 +-117.982736,33.701181,2002-01-30 +-74.150145,41.320616,2000-10-11 +-82.717284,38.421818,1998-10-14 +-71.43994,43.563735,1998-01-26 +-70.934223,42.493263,1998-03-18 +-75.552963,40.566764,2001-07-18 +-93.22756,44.731896,1999-01-27 +-92.898595,44.944901,2005-09-14 +-84.03067,43.43524,1999-01-27 +-78.005202,37.065255,1998-07-15 +-80.708975,37.32792,1998-09-16 +-78.529371,38.872345,1999-01-27 +-122.181145,37.717941,1999-03-17 +-96.968433,32.919378,2000-01-26 +-74.966073,40.082578,1998-03-18 +-74.58693,40.544514,1998-10-28 +-106.17382,35.07933,1999-03-17 +-103.331487,34.200641,1998-07-15 +-85.687456,36.726773,1999-01-27 +-106.061062,35.987625,1999-01-27 +-88.190835,43.397773,1998-10-14 +-70.243309,43.694524,1998-08-19 +-71.109926,42.572259,1998-09-23 +-80.237839,37.644847,1998-09-16 +-78.749006,40.473987,1999-01-27 +-78.813004,40.934295,2002-06-19 +-89.825791,30.30551,1999-08-18 +-83.003132,39.975105,1999-03-17 +-96.691226,32.792525,1998-10-28 +-87.958414,42.69863,1998-10-28 +-111.841444,33.284042,2005-08-24 +-102.60328,38.088494,1998-10-14 +-80.353712,41.417735,1999-10-13 +-86.184655,41.712767,1999-03-17 +-86.018101,41.696723,1999-03-17 +-86.303827,41.760397,1999-03-17 +-71.800995,44.307896,1998-10-14 +-72.562804,44.220711,1999-01-27 +-72.553061,42.356645,2000-01-26 +-80.858045,39.655669,1999-01-27 +-82.224724,34.948158,1998-09-16 +-95.30671,32.274788,1998-10-28 +-86.741048,34.680973,1998-10-28 +-85.820722,38.316077,2002-06-19 +-83.297164,42.879474,2002-03-20 +-83.747062,42.789581,2002-01-23 +-90.406381,38.580826,2000-05-17 +-81.719242,28.52507,2006-01-27 +-78.95725,39.051497,1999-01-27 +-121.769643,37.96315,2000-01-26 +-83.468608,42.656741,1999-08-18 +-93.303354,37.060152,1999-01-27 +-79.776422,34.12823,1999-01-27 +-79.822931,35.822437,1999-03-17 +-76.951501,36.668358,1999-01-27 +-90.058838,29.892375,2000-01-26 +-117.097351,33.481442,2003-10-28 +-78.910305,33.706789,2000-01-26 +-86.704085,33.620581,2000-05-17 +-95.146656,43.148762,1999-08-18 +-88.896925,30.458887,1999-05-19 +-91.708694,41.959529,1999-06-16 +-89.377805,31.390234,1999-08-18 +-95.460332,29.673399,1999-10-27 +-72.896253,41.699029,2001-01-24 +-90.351933,32.280755,2003-07-16 +-86.31048,33.588625,1999-09-15 +-95.211402,29.693704,1999-09-15 +-83.019767,40.164279,2000-01-26 +-82.765459,40.017611,2000-01-26 +-80.47516,25.450481,1999-10-27 +-88.884513,39.819933,1999-08-18 +-105.053273,40.583336,2001-10-24 +-77.547754,35.883016,2000-01-26 +-84.918802,33.744136,2000-01-26 +-83.928466,32.228296,1999-07-21 +-97.423622,35.218374,1999-06-16 +-121.455261,38.496043,2001-10-24 +-87.814159,30.807965,1999-08-18 +-82.563242,28.057387,2000-10-11 +-71.483483,41.72084,2002-01-23 +-87.688532,30.264523,2004-07-21 +-82.044541,35.868868,2000-01-26 +-83.391305,34.904778,2000-05-17 +-82.02615,33.106246,1999-10-27 +-90.012341,32.357872,1999-09-15 +-77.382271,39.443743,2002-03-20 +-71.754322,43.744,2002-10-30 +-87.887991,31.536689,1999-09-15 +-81.498246,37.123055,2000-06-14 +-80.583103,37.149769,1999-08-18 +-93.465806,41.644089,2000-03-15 +-111.895352,33.624063,2000-01-26 +-111.734201,33.451836,2004-01-21 +-111.805323,33.410193,1999-10-27 +-86.774937,40.744977,2000-03-15 +-78.029213,33.943446,2000-01-26 +-112.356463,33.638723,2000-05-17 +-111.523995,32.978671,2001-01-24 +-116.642601,43.631995,2000-08-16 +-116.572638,43.549198,2000-08-16 +-115.666018,43.135713,2000-08-16 +-84.480109,38.072158,2000-01-26 +-96.746862,40.303336,2000-01-26 +-86.34983,39.763672,2004-01-21 +-86.122,39.888516,2000-03-15 +-86.402259,39.860508,2000-01-26 +-80.093387,26.531798,2001-01-24 +-75.38143,38.68446,2000-08-16 +-82.437374,38.208697,1999-09-15 +-80.098987,36.107417,2000-01-26 +-111.439502,39.62103,2000-08-16 +-77.462473,37.750343,2003-06-18 +-82.674007,28.042271,2001-10-24 +-72.056109,42.12479,1999-09-15 +-76.886976,38.773845,2000-10-25 +-97.512722,35.667508,2000-05-17 +-97.538523,35.52417,2000-07-19 +-77.543914,36.702867,2000-01-26 +-81.933086,35.08659,1999-10-13 +-78.910366,38.430356,2000-01-26 +-77.66258,37.454138,2000-05-17 +-80.223971,38.963433,2000-08-16 +-81.720838,38.818577,2000-01-26 +-92.461559,43.985499,2000-03-15 +-90.160002,44.68601,2000-04-19 +-80.323479,25.868962,2000-09-20 +-88.026871,42.074226,2000-05-17 +-87.768245,42.011935,2000-04-19 +-87.558839,41.589293,2001-01-24 +-87.485348,41.595697,2000-06-14 +-85.201507,40.791181,2000-01-26 +-95.94771,43.93084,2000-01-26 +-77.532938,37.536404,2000-03-15 +-90.862335,30.490214,2000-03-15 +-81.541069,39.227197,2000-01-26 +-74.2971,40.453762,2001-09-19 +-91.608948,41.695954,2000-11-01 +-87.94831,42.983942,2001-01-24 +-75.342547,39.865925,2001-01-24 +-114.51846,42.697177,2000-08-16 +-81.050469,32.76513,2000-05-17 +-80.025355,39.337036,2000-01-26 +-78.785572,35.592216,2002-03-20 +-115.062133,36.239389,2000-08-16 +-74.836396,39.97604,2000-10-25 +-117.541162,33.8474,2001-03-14 +-82.006205,29.007538,2000-06-14 +-73.773076,42.868196,2001-07-18 +-79.468122,35.733477,2000-07-19 +-89.847893,34.964169,2000-04-19 +-95.935367,41.158666,2001-01-24 +-82.016935,39.011467,2000-01-26 +-76.840603,39.575597,2000-08-16 +-80.751635,39.929804,2006-01-31 +-76.984171,38.549017,2001-01-24 +-71.994979,41.584182,2001-08-22 +-94.772579,39.009504,2000-10-25 +-94.123942,39.014539,2000-01-26 +-94.655071,39.246943,2001-02-28 +-77.689942,43.130721,2001-08-22 +-81.24175,32.141014,2000-01-26 +-116.27929,43.668485,2002-08-14 +-116.343719,43.61947,2001-02-28 +-98.705473,29.494349,2000-06-14 +-117.444383,47.700739,2000-04-19 +-84.425136,42.719534,2003-07-16 +-84.555467,42.721958,2004-08-25 +-84.620815,42.739202,2001-01-24 +-74.975869,40.006226,2003-01-22 +-83.48514,42.220707,2001-01-24 +-83.172376,42.547766,2001-01-24 +-74.009571,42.851187,2002-04-17 +-81.380813,28.340685,2001-07-18 +-93.491633,45.125351,2001-01-24 +-96.797302,33.099596,2000-07-12 +-115.271121,36.27023,2001-01-24 +-71.317697,41.50842,2000-01-26 +-118.093781,33.981355,2002-09-18 +-76.565989,40.319316,2001-03-14 +-90.244317,41.815547,2000-05-17 +-83.764825,32.87994,2004-03-17 +-102.40865,31.8437,2000-06-14 +-95.710019,37.228998,2000-07-19 +-79.392994,39.425051,2001-02-28 +-73.056555,41.312167,2000-10-11 +-72.873145,41.624127,2000-04-19 +-72.379147,41.295476,2001-08-22 +-72.830472,41.809559,2001-01-24 +-72.658141,41.6822,2000-07-19 +-72.641443,42.34252,2001-01-24 +-71.399491,42.298625,2002-06-19 +-71.359792,42.620999,2000-05-17 +-71.05763,42.101133,2000-07-19 +-74.136472,41.11239,2001-01-24 +-72.667641,40.934459,2001-01-24 +-79.79801,35.358286,2000-09-20 +-79.611087,41.932369,2002-04-17 +-80.821923,40.900935,2003-03-19 +-76.126728,43.286597,2002-08-14 +-83.270153,42.251613,2001-01-24 +-90.388046,29.90089,2001-01-24 +-81.914892,40.556141,2000-07-19 +-73.080362,40.899432,2003-01-22 +-73.544496,40.724608,2002-01-23 +-73.083665,40.950969,2003-01-22 +-83.558849,30.15889,2001-04-18 +-111.969644,41.259181,2001-02-28 +-110.789752,32.223145,2000-10-25 +-108.470847,45.829168,2001-01-24 +-106.672469,35.173905,2002-05-15 +-122.284516,38.310229,2001-01-24 +-96.770384,33.054232,2000-10-25 +-122.384266,45.530837,2001-01-24 +-80.03453,33.034338,2000-10-11 +-78.964498,34.984157,2001-02-28 +-75.553287,38.307348,2000-07-19 +-84.132821,35.907149,2001-01-24 +-81.051698,37.354904,2000-08-16 +-92.90024,42.023879,2000-08-16 +-88.010509,43.175898,2002-01-23 +-92.962458,47.400121,2001-02-28 +-92.005336,30.181331,2000-09-20 +-90.158421,32.239037,2001-01-24 +-84.272179,34.088385,2002-01-23 +-75.932155,39.981722,2002-05-15 +-122.665132,45.661899,2001-03-14 +-118.048386,33.94147,2002-09-18 +-118.191753,33.772938,2002-10-30 +-118.045253,34.558062,2002-01-23 +-118.100052,34.689568,2002-01-23 +-117.19399,33.554176,2001-01-24 +-71.215558,41.755849,2001-10-24 +-73.422693,41.156726,2000-10-25 +-94.589729,38.886094,2002-09-18 +-88.198163,41.508126,2004-09-15 +-95.873622,46.828111,2001-02-28 +-88.353552,44.243707,2001-05-16 +-118.335096,34.011683,2003-01-22 +-80.153724,26.231392,2002-08-14 +-80.278886,26.306343,2001-10-24 +-72.72173,41.662355,2001-09-19 +-81.733792,41.052332,2004-10-27 +-84.532961,39.046983,2004-09-15 +-85.123029,38.667699,2001-01-24 +-97.369866,32.635413,2001-02-28 +-97.289677,32.890752,2004-05-19 +-119.801871,36.838634,2002-01-23 +-88.492232,44.175062,2004-03-17 +-85.272826,34.736649,2000-10-11 +-121.942137,37.512902,2005-08-24 +-97.628724,30.494032,2001-10-24 +-77.127331,42.14984,2001-09-19 +-95.639051,29.606341,2001-02-28 +-94.801165,39.739523,2001-03-14 +-96.855651,32.99696,2001-03-14 +-70.945978,42.200423,2001-01-24 +-84.178732,33.431715,2001-03-14 +-84.606816,33.779325,2001-03-14 +-84.061336,40.730752,2002-08-14 +-81.335481,28.795115,2004-01-21 +-111.642306,40.161287,2001-04-18 +-93.552105,45.286746,2001-01-24 +-89.60597,39.802666,2001-10-24 +-95.457997,30.207459,2001-01-24 +-76.425322,36.881486,2001-01-24 +-76.090274,36.811838,2001-05-16 +-119.153005,46.826222,2001-05-16 +-122.420626,47.072614,2002-01-23 +-76.736188,37.349994,2003-01-22 +-113.589148,37.051282,2002-01-23 +-76.867053,42.382457,2003-03-19 +-82.760587,34.708321,2004-08-25 +-80.347335,40.763003,2002-07-17 +-96.596879,32.839928,2001-02-28 +-96.526192,32.9133,2001-03-14 +-95.806137,29.782111,2001-03-14 +-79.670186,40.434173,2003-09-17 +-99.308734,34.161291,2001-01-24 +-92.49609,34.622347,2001-03-14 +-94.341831,35.463612,2003-03-19 +-111.981428,40.609444,2002-01-23 +-94.870206,47.464286,2002-02-20 +-83.02226,36.40123,2002-02-20 +-80.172626,25.925547,2005-09-14 +-96.701161,43.509414,2002-10-16 +-122.98929,44.059658,2002-01-23 +-112.237676,33.652637,2003-01-22 +-79.873471,37.321137,2002-09-18 +-91.436106,46.013951,2002-02-20 +-88.625632,42.627629,2003-01-22 +-117.969808,33.915066,2002-05-15 +-81.339272,41.688078,2003-01-22 +-83.460011,39.52373,2001-07-18 +-75.448168,39.849971,2001-01-24 +-80.139771,41.87827,2001-08-22 +-119.869789,39.538218,2004-01-21 +-88.2516,40.053121,2001-08-15 +-123.173912,44.048138,2002-05-15 +-114.044655,46.885645,2001-08-22 +-119.543115,47.321607,2001-08-22 +-119.304452,46.265971,2001-10-24 +-81.573945,39.987715,2001-10-24 +-76.341152,37.027952,2002-07-17 +-74.551385,40.256615,2005-05-04 +-96.198933,41.233118,2001-04-18 +-89.139534,45.16223,2001-07-18 +-70.516659,44.539549,2002-06-19 +-80.847461,36.708259,2001-09-19 +-86.749182,33.147504,2001-06-20 +-94.667726,38.844076,2003-09-17 +-97.188744,32.904002,2002-08-14 +-117.334029,34.162107,2003-08-20 +-119.75424,39.419831,2001-09-19 +-96.600921,40.734364,2003-03-19 +-98.391741,29.414183,2002-09-18 +-77.600027,43.194301,2002-08-14 +-79.969631,42.161907,2004-01-21 +-82.439019,39.541072,2001-10-24 +-97.464476,37.722669,2001-08-22 +-96.777626,32.767268,2002-09-18 +-97.128632,33.147123,2001-10-24 +-91.02822,30.541133,2002-03-20 +-81.482204,36.388563,2001-10-24 +-74.699784,40.883734,2002-01-23 +-74.298775,40.688431,2001-09-19 +-85.590119,38.148373,2002-07-17 +-95.797371,35.997678,2003-01-22 +-95.588617,29.736397,2002-01-23 +-95.615453,29.916802,2001-09-19 +-95.193967,29.523545,2002-03-02 +-84.178072,40.564731,2005-04-13 +-95.559963,29.678621,2005-11-02 +-79.089409,35.306394,2005-10-26 +-79.942536,36.415097,2006-01-31 +-97.671411,31.067603,2005-04-13 +-98.319686,26.243802,2005-04-13 +-88.225074,43.072171,2005-07-20 +-85.2876,43.17709,2005-05-18 +-92.006606,34.170179,2004-01-21 +-83.225942,42.134972,2005-11-09 +-84.198629,39.018382,2006-01-27 +-78.198932,39.263975,2005-11-09 +-81.648681,27.97859,2006-01-23 +-111.961377,33.277298,2005-11-02 +-87.443588,36.6668,2005-10-26 +-87.061408,37.754132,2005-05-25 +-93.080605,44.896412,2005-01-26 +-79.849122,32.792842,2005-05-18 +-80.893171,35.224379,2005-10-26 +-119.227642,46.331172,2006-01-23 +-100.396676,32.45086,2005-01-26 +-101.86443,35.170752,2005-10-26 +-102.409045,34.83674,2005-01-26 +-86.508112,33.73676,2006-01-25 +-84.028121,33.9384,2005-05-18 +-84.042993,33.803362,2006-01-25 +-98.280386,29.605922,2005-03-23 +-94.986451,41.403853,2005-04-13 +-98.339689,40.884771,2005-07-20 +-84.74507,33.92745,2006-01-27 +-93.218268,45.037365,2005-03-23 +-96.820861,32.953998,2006-01-27 +-119.752626,39.202517,2005-10-26 +-73.554405,40.755742,2005-01-26 +-95.234339,29.63224,2006-01-27 +-104.429762,32.930382,2005-09-14 +-97.654046,32.740107,2005-08-24 +-112.032446,41.464937,2002-05-15 +-89.022821,40.484032,2002-09-18 +-89.631031,40.795358,2003-08-20 +-84.594389,33.396735,2002-10-16 +-84.047787,34.029668,2002-05-15 +-82.266426,27.93777,2002-08-14 +-117.698611,34.016115,2002-05-15 +-112.263936,33.50871,2003-03-19 +-74.254589,40.614399,2001-10-24 +-84.66854,34.032863,2002-03-20 +-116.907371,47.715891,2002-01-23 +-115.20134,36.159054,2002-03-20 +-82.48516,27.493707,2004-07-21 +-75.406305,40.125856,2001-09-19 +-83.428863,42.323448,2002-10-16 +-118.088714,33.828354,2002-10-30 +-82.084989,36.901416,2002-06-19 +-76.399801,39.337877,2003-09-17 +-96.76783,33.004164,2002-05-15 +-90.695064,29.582749,2002-09-18 +-87.301814,30.348428,2002-04-17 +-82.069782,39.336954,2002-08-14 +-83.006984,42.656566,2002-10-30 +-88.253948,42.701313,2004-01-21 +-76.685524,39.278774,2002-07-17 +-76.456115,39.056311,2002-06-19 +-71.158789,42.741823,2001-10-24 +-97.205964,37.678991,2002-04-17 +-122.110409,37.996063,2002-01-23 +-117.124256,33.136015,2004-01-28 +-87.272289,36.508382,2002-03-20 +-87.986845,43.093616,2002-08-14 +-88.79712,43.209682,2002-08-14 +-93.185227,45.180873,2002-03-20 +-95.163229,29.804965,2002-09-18 +-75.78548,40.183707,2004-10-27 +-84.529946,39.441168,2002-03-20 +-80.095857,35.783049,2002-07-17 +-89.107232,43.540286,2002-05-15 +-76.60642,39.268708,2002-04-17 +-95.347763,29.559079,2002-09-18 +-93.512181,44.762774,2003-03-19 +-78.616795,41.979478,2002-03-20 +-83.624246,39.225105,2002-10-16 +-116.967254,32.633485,2004-05-19 +-99.494123,27.607875,2002-07-17 +-74.051408,40.795877,2004-10-27 +-117.963479,34.072928,2004-05-19 +-118.548277,34.407883,2006-01-27 +-116.969129,32.807676,2004-10-20 +-82.405766,28.536679,2002-10-30 +-80.892479,27.12453,2004-01-21 +-89.15254,30.84716,2002-07-17 +-85.978364,39.860173,2003-03-19 +-122.972051,46.630662,2002-10-16 +-92.585163,44.566661,2003-03-03 +-71.067049,43.050165,2004-01-21 +-80.725681,28.229848,2002-09-18 +-75.691667,39.861724,2003-09-17 +-73.418846,41.40594,2002-10-30 +-72.679321,41.288503,2002-10-16 +-72.916807,41.37305,2002-07-17 +-73.41708,41.552303,2002-10-30 +-73.449757,41.094621,2003-05-21 +-73.008078,41.566074,2002-09-18 +-72.290115,42.923638,2002-06-19 +-71.171646,41.698713,2002-05-15 +-70.596161,41.564365,2002-08-14 +-74.091779,40.886933,2002-06-19 +-75.319356,40.644704,2002-05-15 +-75.119458,40.179624,2002-05-15 +-75.315355,40.143678,2002-07-17 +-112.024878,40.702113,2002-10-16 +-97.689576,30.355089,2003-10-03 +-82.144622,33.545429,2002-02-20 +-84.328421,39.496762,2003-03-19 +-95.383727,29.555968,2003-03-19 +-77.450195,38.753282,2003-08-20 +-82.427747,40.083173,2003-01-22 +-82.045083,39.892154,2003-08-20 +-73.784657,42.614726,2004-01-21 +-121.262751,38.750523,2003-08-20 +-77.310761,38.581254,2004-03-17 +-111.900901,40.738895,2004-08-25 +-96.370904,42.533184,2003-07-16 +-95.651046,30.382126,2003-04-16 +-79.052561,35.030654,2002-07-17 +-88.891877,42.274265,2004-08-25 +-74.455938,40.812615,2003-01-22 +-81.075095,41.80067,2006-01-31 +-93.802813,45.290347,2005-07-20 +-91.55587,42.033919,2006-01-23 +-82.854993,43.420773,2005-08-24 +-102.074195,31.973035,2005-10-26 +-85.373049,35.019141,2006-01-31 +-83.646947,42.941146,2006-01-27 +-119.701808,39.672905,2006-01-23 +-96.938997,42.788488,2006-01-27 +-95.431703,32.512887,2005-10-26 +-84.208782,40.150566,2006-01-27 +-81.508716,37.439559,2005-10-26 +-79.763926,40.60364,2006-01-31 +-117.097315,32.674501,2003-08-20 +-85.009466,41.131538,2003-07-16 +-83.613266,41.612215,2004-01-28 +-83.459541,41.637214,2003-03-19 +-83.673856,41.676576,2003-10-29 +-111.092747,32.356055,2003-03-19 +-118.054629,33.983574,2003-04-16 +-103.772698,40.26385,2003-01-22 +-81.827567,26.60417,2003-06-18 +-81.973685,27.904705,2003-10-29 +-82.551279,28.064158,2003-10-29 +-81.60761,30.630679,2003-10-29 +-88.203533,41.651621,2004-08-25 +-75.558814,39.118168,2003-03-19 +-80.093076,40.384651,2004-10-27 +-122.040151,47.233658,2002-10-16 +-89.215924,42.114171,2005-01-26 +-95.616175,30.05434,2003-06-18 +-78.494694,35.662637,2003-07-16 +-75.092708,39.896854,2005-10-26 +-83.594055,41.758466,2003-08-20 +-105.148165,39.600992,2004-01-21 +-104.756359,40.421551,2003-05-21 +-81.475981,30.317611,2003-01-22 +-81.687112,26.109655,2004-10-20 +-90.984183,30.331106,2005-08-24 +-86.368098,35.812128,2003-03-19 +-86.631345,36.062373,2003-10-29 +-88.335415,42.175706,2003-10-29 +-80.734003,35.137696,2004-09-15 +-85.510764,42.32888,2003-03-19 +-85.682258,42.292368,2004-01-21 +-82.010537,41.467638,2003-09-17 +-73.434721,40.681288,2003-05-28 +-74.737511,40.615248,2004-01-28 +-115.297371,36.092542,2003-05-21 +-98.474693,34.631071,2003-03-19 +-118.299217,33.854215,2005-06-15 +-122.086881,47.359379,2005-01-26 +-117.26061,33.170685,2004-04-14 +-68.80502,44.765791,2003-06-18 +-74.402255,40.909533,2004-07-21 +-89.187304,30.331932,2003-06-18 +-97.186177,32.845576,2003-06-18 +-81.742182,41.38453,2004-01-28 +-81.442055,41.520086,2004-01-28 +-78.662654,33.842307,2004-01-21 +-93.04218,44.86345,2004-01-28 +-88.099622,44.438113,2003-08-20 +-95.699731,29.973809,2004-05-19 +-96.990092,33.003471,2003-10-29 +-72.712364,41.74255,2005-01-26 +-83.974127,43.48961,2003-09-24 +-108.635279,39.047312,2003-10-29 +-115.987731,36.21095,2003-05-21 +-75.112734,40.0269,2003-06-18 +-84.201066,39.708712,2003-08-20 +-74.415795,40.641127,2004-01-28 +-86.276852,33.608105,2003-07-16 +-90.62426,41.560129,2003-10-29 +-95.098299,29.664136,2003-08-20 +-78.460326,38.319424,2004-01-21 +-78.780121,35.911429,2003-10-29 +-112.179344,33.553131,2004-04-14 +-85.697774,34.156416,2003-08-20 +-91.210823,43.765947,2003-10-29 +-75.034737,40.0742,2004-10-27 +-74.901032,40.157764,2006-01-25 +-121.574983,39.12967,2003-08-20 +-121.82425,38.469719,2003-10-29 +-117.007351,32.778703,2004-05-19 +-96.177388,41.292139,2005-09-14 +-74.081324,40.224155,2004-01-28 +-98.323927,29.496704,2003-10-29 +-98.534981,29.489067,2003-10-29 +-98.634599,29.515679,2004-01-21 +-96.891495,32.726486,2003-08-20 +-90.329636,38.617799,2004-10-27 +-85.093902,34.209574,2004-04-14 +-118.62336,34.187119,2004-01-28 +-106.782906,32.289534,2003-08-20 +-89.455033,40.628623,2004-10-27 +-84.22495,44.254708,2004-01-21 +-84.434429,42.247397,2004-07-21 +-118.574203,34.444837,2005-01-26 +-118.083405,33.91705,2004-01-28 +-98.125787,26.192099,2004-01-21 +-107.748855,32.268986,2003-08-20 +-111.754571,40.027366,2004-01-21 +-112.095629,38.749759,2004-01-21 +-102.946843,41.116748,2004-01-21 +-83.582709,30.10308,2004-03-17 +-84.996461,34.786206,2004-01-21 +-85.592755,36.246448,2004-01-21 +-74.873776,40.106222,2003-07-16 +-74.474322,40.987043,2005-06-15 +-82.821302,39.86311,2004-03-17 +-83.116828,39.927882,2004-05-19 +-111.88408,33.276725,2005-01-26 +-112.172066,33.495008,2004-08-25 +-112.113139,33.712894,2005-01-26 +-96.372442,32.739382,2005-05-18 +-117.178179,33.935203,2006-01-31 +-90.025302,35.00495,2005-01-26 +-86.487692,34.660026,2005-01-26 +-88.098888,42.472295,2004-10-27 +-76.325269,40.076462,2003-08-20 +-83.443034,39.893083,2004-01-21 +-96.515065,33.022905,2004-08-25 +-96.608873,33.212783,2004-04-14 +-101.900218,35.216711,2004-01-21 +-82.679293,27.737475,2005-01-26 +-82.504945,28.022087,2004-01-21 +-77.299069,38.788326,2003-10-29 +-76.820608,39.19699,2004-01-28 +-75.116019,40.144424,2004-01-28 +-121.384692,38.610467,2004-07-21 +-107.763891,39.523787,2003-10-29 +-112.026261,40.638549,2004-07-21 +-112.064465,41.137403,2004-01-21 +-86.482541,36.98887,2004-10-27 +-75.627339,40.377761,2005-10-26 +-76.86526,42.369077,2005-01-26 +-76.120936,43.159766,2005-07-20 +-92.48323,34.810773,2004-08-18 +-96.098685,29.32151,2004-01-21 +-96.92762,33.438729,2005-03-23 +-81.447986,28.147012,2004-08-20 +-85.177545,35.025355,2004-05-19 +-83.908464,33.842845,2004-03-17 +-76.321716,36.717127,2006-01-31 +-78.586534,35.858041,2004-07-21 +-94.151536,36.281833,2005-05-18 +-94.187618,36.944683,2005-01-26 +-86.791447,33.33608,2004-03-17 +-86.574051,35.087004,2004-01-21 +-82.490276,27.218317,2005-10-26 +-111.728194,40.349274,2004-08-25 +-122.637368,47.707317,2006-01-27 +-123.134396,48.077603,2004-10-27 +-84.58254,34.114198,2005-01-26 +-88.020826,42.13844,2004-08-25 +-72.57639,42.173573,2004-10-27 +-85.596008,42.195117,2005-01-26 +-74.295399,40.537865,2004-10-27 +-81.328736,40.83672,2004-10-27 +-95.513421,30.074102,2004-04-14 +-96.535915,32.647827,2004-04-14 +-83.777608,38.941843,2004-08-25 +-73.717241,40.660508,2003-10-29 +-82.258667,38.425754,2004-09-15 +-81.223166,35.2609,2004-05-19 +-81.751992,28.586572,2004-10-27 +-80.108521,26.692275,2004-08-25 +-112.487882,34.562917,2005-01-26 +-117.080743,32.608502,2005-10-26 +-97.290887,32.77402,2004-08-25 +-90.78155,38.77849,2006-01-23 +-97.381694,32.880863,2004-10-27 +-97.848688,30.162566,2005-05-18 +-81.228175,37.742179,2005-05-25 +-79.776419,36.016524,2005-10-26 +-80.201458,26.235485,2004-07-21 +-82.256527,29.079992,2004-10-20 +-112.152233,33.871128,2005-06-15 +-112.134261,33.526916,2005-04-13 +-112.222488,33.422979,2004-10-27 +-104.772438,39.657126,2005-11-09 +-117.163797,32.829905,2004-05-19 +-79.853085,40.499364,2003-10-29 +-75.052286,39.935915,2005-01-26 +-105.136939,39.927864,2004-08-25 +-114.650441,32.724091,2004-11-03 +-77.499507,38.232735,2005-03-23 +-76.585777,39.392897,2005-05-11 +-79.269745,36.067952,2006-01-23 +-111.865531,40.671411,2004-07-21 +-88.296821,41.83733,2005-10-26 +-82.862493,40.560418,2005-05-18 +-79.227033,40.443285,2004-01-21 +-97.543519,32.905219,2006-01-25 +-96.098829,41.212139,2004-08-25 +-84.321394,33.440084,2005-01-26 +-123.000369,44.915526,2005-05-18 +-112.392488,33.457223,2005-11-02 +-105.102317,40.20324,2006-01-31 +-91.437659,45.006628,2005-01-26 +-84.638015,39.76612,2005-03-23 +-83.50553,44.275144,2005-05-18 +-79.603954,40.00231,2005-07-20 +-70.845207,42.147153,2004-11-03 +-80.02581,40.341114,2004-08-25 +-81.084921,41.465156,2005-05-18 +-97.208131,31.491915,2004-07-21 +-84.516987,33.944041,2005-10-26 +-81.706538,26.062603,2005-08-24 +-82.361606,31.782862,2005-01-26 +-119.402638,36.546028,2005-08-24 +-91.620146,43.933297,2004-10-27 +-89.114316,42.315406,2005-04-13 +-89.4749,41.8256,2005-05-18 +-88.162747,40.113319,2006-01-27 +-87.629447,41.538709,2005-09-14 +-84.330571,39.858372,2005-03-23 +-81.420793,40.796998,2005-04-13 +-85.074752,42.941084,2005-06-15 +-97.094594,32.749918,2005-10-26 +-85.781381,38.12663,2005-07-20 +-85.668586,38.200835,2005-01-26 +-89.972047,34.820921,2005-01-26 +-81.487366,28.346425,2005-05-25 +-84.572021,30.891517,2005-01-26 +-111.736917,33.385095,2005-07-20 +-106.706236,34.939675,2005-05-25 +-92.46714,45.17302,2005-10-26 +-93.063069,34.692109,2004-10-27 +-121.859194,37.329013,2004-08-25 +-75.619561,39.731651,2006-01-31 +-93.160918,44.955691,2004-05-19 +-88.104921,42.978649,2004-07-21 +-72.87845,41.322551,2004-07-21 +-122.578994,45.44601,2005-04-13 +-88.031874,41.946063,2005-05-25 +-86.0825,39.699871,2005-05-25 +-80.043138,42.121937,2004-09-15 +-75.955665,39.605516,2005-07-20 +-80.667028,27.998877,2005-08-24 +-122.199482,37.73757,2005-08-24 +-108.050679,38.747943,2004-09-15 +-97.307537,27.897361,2005-01-26 +-122.475969,45.618826,2006-01-27 +-83.042055,39.878903,2004-10-27 +-78.023879,40.502207,2006-01-31 +-82.511288,40.686047,2006-01-31 +-80.946228,35.328109,2005-01-26 +-83.483777,33.307354,2005-08-24 +-87.684551,41.720918,2006-01-27 +-82.457901,34.547681,2006-01-23 +-79.185611,34.674266,2005-10-26 +-106.900366,34.052386,2005-01-26 +-97.428277,25.943256,2005-01-26 +-112.050886,43.491073,2005-01-26 +-75.29115,39.905559,2005-05-11 +-75.840381,44.040697,2006-01-31 +-75.485665,43.778785,2006-01-23 diff --git a/docs/static/data/examples/geo/world-airports.csv b/docs/static/data/examples/geo/world-airports.csv new file mode 100644 index 000000000..503727d6d --- /dev/null +++ b/docs/static/data/examples/geo/world-airports.csv @@ -0,0 +1,2981 @@ +name,longitude,latitude +Aleknagik / New Airport,-158.617996216,59.2826004028 +Honiara International Airport,160.054992675781,-9.42800045013428 +Munda Airport,157.263000488281,-8.32796955108643 +Mar de Cortés International Airport,-113.305864334,31.351621252 +Nauru International Airport,166.919006,-0.547458 +Buka Airport,154.673004150391,-5.4223198890686 +Chimbu Airport,144.970993041992,-6.02429008483887 +Daru Airport,143.207992554,-9.08675956726 +Goroka Airport,145.391998291,-6.08168983459 +Gurney Airport,150.333999634,-10.3114995956 +Girua Airport,148.309005737,-8.80453968048 +Kimbe Airport,150.404998779297,-5.46217012405396 +Kerema Airport,145.770996094,-7.96361017227 +Kavieng Airport,150.807998657,-2.57940006256 +Madang Airport,145.789001465,-5.20707988739 +Mount Hagen Kagamuga Airport,144.296005249023,-5.82678985595703 +Mendi Airport,143.656997680664,-6.14773988723755 +Momote Airport,147.42399597168,-2.06188988685608 +Lae Nadzab Airport,146.725997925,-6.5698299408 +Port Moresby Jacksons International Airport,147.220001220703,-9.44338035583496 +Tokua Airport,152.380004883,-4.34045982361 +Vanimo Airport,141.302001953125,-2.69717001914978 +Wapenamanda Airport,143.895004272461,-5.64330005645752 +Wewak International Airport,143.669006348,-3.58383011818 +Benguera Island Airport,35.4383010864258,-21.8533000946045 +Aasiaat Airport,-52.7846984863,68.7218017578 +Narsarsuaq Airport,-45.4259986877,61.1604995728 +Godthaab / Nuuk Airport,-51.6781005859,64.19090271 +Kangerlussuaq Airport,-50.7116031647,67.0122218992 +Thule Air Base,-68.7032012939,76.5311965942 +Akureyri Airport,-18.0727005004883,65.6600036621094 +Egilsstaðir Airport,-14.4013996124268,65.2833023071289 +Ísafjörður Airport,-23.1352996826172,66.0580978393555 +Keflavik International Airport,-22.6056003570557,63.9850006103516 +Reykjavik Airport,-21.9405994415,64.1299972534 +Priština International Airport,21.0358009338379,42.5727996826172 +Big Creek Airport,-88.4079132080078,16.5193691253662 +Caye Caulker Airport,-88.0325012207031,17.7346992492676 +Caye Chapel Airport,-88.0410995483398,17.7007999420166 +Corozal Municipal Airport,-88.4119033813477,18.3822002410889 +Dangriga Airport,-88.2309875488281,16.9825096130371 +Placencia Airport,-88.3615112304688,16.5369567871094 +Punta Gorda Airport,-88.8082962036,16.102399826 +Sartaneja Airport,-88.1307983398438,18.3561000823975 +San Pedro Airport,-87.9710998535156,17.9139003753662 +Belize City Municipal Airport,-88.1944427490234,17.5163898468018 +Bazaruto Island Airport,35.472900390625,-21.5410995483398 +Gu-Lian Airport,122.43,52.9127777778 +Lintsang Airfield,100.025001526,23.7381000519 +Bao'anying Airport,101.79852,26.54 +Foshan Shadi Airport,113.069999695,23.0832996368 +Huizhou Airport,114.599998474,23.0499992371 +Jinggangshan Airport,114.736999512,26.8568992615 +Baise Youjiang Airport,106.959999084,23.7206001282 +Altay Air Base,88.0858078003,47.7498855591 +Tianshui Maijishan Airport,105.86000061,34.5593986511 +Dandong Airport,124.286003113,40.0247001648 +Geçitkale Air Base,33.724357605,35.2359466553 +Cat Lake Airport,-91.8244018554688,51.7271995544434 +Fort Frances Municipal Airport,-93.439697265625,48.6542015075684 +Sault Ste Marie Airport,-84.5093994140625,46.4850006103516 +Kasabonika Airport,-88.6427993774414,53.5247001647949 +Kangirsuk Airport,-69.9991989135742,60.0271987915039 +Attawapiskat Airport,-82.4319000244141,52.9275016784668 +Lac Du Bonnet Airport,-96.0100021362,50.2943992615 +St. Anthony Airport,-56.0830993652,51.3918991089 +Tofino / Long Beach Airport,-125.775604248,49.0798255464 +Baie Comeau Airport,-68.2043991088867,49.1324996948242 +Uranium City Airport,-108.481002807617,59.5614013671875 +CFB Bagotville,-70.9963989257812,48.3306007385254 +Baker Lake Airport,-96.077796936,64.2988967896 +Campbell River Airport,-125.271003723145,49.9508018493652 +Lourdes de Blanc Sablon Airport,-57.1852989197,51.4435997009 +Cartwright Airport,-57.0419006347656,53.6828002929688 +Cambridge Bay Airport,-105.138000488,69.1081008911 +Nanaimo Airport,-123.869862556,49.0549702249 +Castlegar/West Kootenay Regional Airport,-117.632003784,49.2963981628 +Kugluktuk Airport,-115.143997192,67.8167037964 +Chesterfield Inlet Airport,-90.7311019897,63.3469009399 +Clyde River Airport,-68.5167007446,70.4860992432 +Dawson City Airport,-139.128005981445,64.043098449707 +Deer Lake Airport,-57.3913993835449,49.2108001708984 +Dauphin Barker Airport,-100.052001953125,51.1007995605469 +Nain Airport,-61.6803016662598,56.5491981506348 +Dawson Creek Airport,-120.182998657227,55.7422981262207 +Edmonton International Airport,-113.580001831,53.3097000122 +Arviat Airport,-94.0708007812,61.0942001343 +Fort Severn Airport,-87.6761016845703,56.0189018249512 +Inuvik Mike Zubko Airport,-133.483001709,68.3041992188 +Fort Albany Airport,-81.6968994140625,52.2014007568359 +Iqaluit Airport,-68.5558013916,63.756401062 +Fredericton Airport,-66.5372009277344,45.8689002990723 +Fort Hope Airport,-87.9077987670898,51.5619010925293 +Flin Flon Airport,-101.681999206543,54.6781005859375 +Fort Simpson Airport,-121.236999511719,61.7602005004883 +Makkovik Airport,-59.1864013671875,55.0769004821777 +Texada Gillies Bay Airport,-124.517997741699,49.6941986083984 +Fort Good Hope Airport,-128.651000976562,66.2407989501953 +Kingston Norman Rogers Airport,-76.5969009399414,44.2252998352051 +La Grande Rivière Airport,-77.7042007446289,53.625301361084 +Gods Lake Narrows Airport,-94.4914016723633,54.5588989257812 +Gaspé (Michel-Pouliot) Airport,-64.4785995483,48.7752990723 +Îles-de-la-Madeleine Airport,-61.7780990600586,47.4247016906738 +Igloolik Airport,-81.8161010742,69.3647003174 +Kuujjuarapik Airport,-77.7652969360352,55.2818984985352 +Gillam Airport,-94.7106018066406,56.3574981689453 +Grise Fiord Airport,-82.9092025757,76.4261016846 +Quaqtaq Airport,-69.6177978515625,61.0463981628418 +Dryden Regional Airport,-92.7442016601562,49.8316993713379 +Nemiscau Airport,-76.1355972290039,51.6911010742188 +Ulukhaktok Holman Airport,-117.805999755859,70.7628021240234 +Gjoa Haven Airport,-95.8497009277,68.635597229 +John C. Munro Hamilton International Airport,-79.9349975586,43.1735992432 +Hopedale Airport,-60.2285995483398,55.448299407959 +Chevery Airport,-59.6366996765137,50.4688987731934 +Montréal / Saint-Hubert Airport,-73.4169006348,45.5175018311 +Hay River / Merlyn Carter Airport,-115.782997131,60.8396987915 +Halifax / Stanfield International Airport,-63.5085983276,44.8807983398 +Ivujivik Airport,-77.9253005981445,62.4173011779785 +Pond Inlet Airport,-77.9666976929,72.6832962036 +Island Lake Airport,-94.6536026000977,53.8572006225586 +Stephenville Airport,-58.5499992370605,48.5442008972168 +Kamloops Airport,-120.444000244,50.7022018433 +Aklavik Airport,-135.005996704102,68.2232971191406 +Waterloo Airport,-80.3786010742,43.4608001709 +Kangiqsujuaq (Wakeham Bay) Airport,-71.929397583,61.5886001587 +Schefferville Airport,-66.8052978515625,54.8053016662598 +Akulivik Airport,-78.1485977172852,60.8185997009277 +Waskaganish Airport,-78.75830078125,51.4733009338379 +Aupaluk Airport,-69.5997009277344,59.2966995239258 +Kimmirut Airport,-69.8833007812,62.8499984741 +Lansdowne House Airport,-87.934196472168,52.1955986022949 +Lutselk'e Airport,-110.681999206543,62.4183006286621 +Lloydminster Airport,-110.072998046875,53.3092002868652 +Kangiqsualujjuaq (Georges River) Airport,-65.9927978515625,58.7113990783691 +Kelowna International Airport,-119.377998352,49.9561004639 +Mary's Harbour Airport,-55.8471984863281,52.3027992248535 +Fort McMurray Airport,-111.222000122,56.653301239 +Moosonee Airport,-80.6078033447266,51.2910995483398 +Chapais Airport,-74.5280990600586,49.771900177002 +Umiujaq Airport,-76.5183029174805,56.5360984802246 +Natashquan Airport,-61.7891998291016,50.189998626709 +Wemindji Airport,-78.8311004638672,53.0106010437012 +Norway House Airport,-97.8442001342773,53.9583015441895 +Points North Landing Airport,-104.082000732422,58.2766990661621 +Old Crow Airport,-139.839004516602,67.5706024169922 +Oxford House Airport,-95.2789001464844,54.9333000183105 +High Level Airport,-117.165000915527,58.6213989257812 +Rainbow Lake Airport,-119.407997131348,58.4914016723633 +Ottawa Macdonald-Cartier International Airport,-75.6691970825,45.3224983215 +Prince Albert Glass Field,-105.672996521,53.2141990662 +Paulatuk (Nora Aliqatchialuk Ruben) Airport,-124.075469971,69.3608381154 +Peace River Airport,-117.446998596191,56.2268981933594 +Inukjuak Airport,-78.0768966674805,58.4719009399414 +Pickle Lake Airport,-90.2142028808594,51.4463996887207 +Pikangikum Airport,-93.9732971191406,51.8196983337402 +Peawanuck Airport,-85.4432983398438,54.9880981445312 +Prince Rupert Airport,-130.445007324,54.2860984802 +Powell River Airport,-124.5,49.8342018127441 +Fort Chipewyan Airport,-111.116996765137,58.7672004699707 +Quebec Jean Lesage International Airport,-71.3933029175,46.7910995483 +The Pas Airport,-101.091003417969,53.9714012145996 +Windsor Airport,-82.9555969238281,42.2756004333496 +Kenora Airport,-94.3630981445312,49.7882995605469 +Lethbridge County Airport,-112.800003052,49.6302986145 +Greater Moncton International Airport,-64.678596496582,46.1122016906738 +Nakina Airport,-86.696403503418,50.1828002929688 +Comox Airport,-124.887001037598,49.7108001708984 +Regina International Airport,-104.666000366211,50.4319000244141 +Thunder Bay Airport,-89.3238983154297,48.371898651123 +Grande Prairie Airport,-118.885002136,55.1796989441 +Gander International Airport,-54.5680999755859,48.9369010925293 +Sydney / J.A. Douglas McCurdy Airport,-60.0477981567,46.1613998413 +Quesnel Airport,-122.51000213623,53.0261001586914 +Rae Lakes Airport,-117.309997558594,64.116096496582 +Resolute Bay Airport,-94.9693984985,74.7169036865 +Roberval Airport,-72.2656021118164,48.5200004577637 +Red Lake Airport,-93.793098449707,51.0668983459473 +Rankin Inlet Airport,-92.1157989502,62.8114013672 +Sudbury Airport,-80.7988967895508,46.625 +Stony Rapids Airport,-105.841003417969,59.250301361084 +Saint John Airport,-65.8902969360352,45.3161010742188 +Sanikiluaq Airport,-79.2466964722,56.5377998352 +Fort Smith Airport,-111.96199798584,60.0203018188477 +St. Theresa Point Airport,-94.8518981933594,53.8456001281738 +Sachs Harbour (David Nasogaluak Jr. Saaryuaq) Airport,-125.242996216,71.9938964844 +Cape Dorset Airport,-76.5267028809,64.2300033569 +Alma Airport,-71.6418991089,48.5088996887 +Thompson Airport,-97.8641967773438,55.8011016845703 +Big Trout Lake Airport,-89.8968963623047,53.817798614502 +Timmins/Victor M. Power,-81.376701355,48.5696983337 +Billy Bishop Toronto City Centre Airport,-79.3962020874,43.6274986267 +Tuktoyaktuk Airport,-133.026000976562,69.4332962036133 +Montreal / Pierre Elliott Trudeau International Airport,-73.7407989502,45.4706001282 +Repulse Bay Airport,-86.2247009277,66.5214004517 +Hall Beach Airport,-81.2425,68.7761001587 +Rouyn Noranda Airport,-78.8356018066406,48.2061004638672 +La Ronge Airport,-105.262001038,55.1514015198 +Qikiqtarjuaq Airport,-64.0314025879,67.5457992554 +Val-d'Or Airport,-77.7827987671,48.0532989502 +Kuujjuaq Airport,-68.4269027709961,58.0960998535156 +Norman Wells Airport,-126.797996520996,65.2816009521484 +Vancouver International Airport,-123.183998108,49.193901062 +Deer Lake Airport,-94.0614013671875,52.6557998657227 +Winnipeg / James Armstrong Richardson International Airport,-97.2398986816,49.9099998474 +Déline Airport,-123.435997009277,65.2110977172852 +Wabush Airport,-66.8644027709961,52.9219017028809 +Williams Lake Airport,-122.054000854,52.1831016541 +Webequie Airport,-87.3748683929,52.9593933975 +Cranbrook Airport,-115.781997680664,49.6108016967773 +Saskatoon John G. Diefenbaker International Airport,-106.699996948242,52.1707992553711 +Medicine Hat Airport,-110.721000671387,50.0189018249512 +Fort St John Airport,-120.73999786377,56.2380981445312 +Sioux Lookout Airport,-91.9052963256836,50.113899230957 +Whale Cove Airport,-92.5980987549,62.2400016785 +Pangnirtung Airport,-65.7136001587,66.1449966431 +Prince George Airport,-122.679000854,53.8894004822 +Terrace Airport,-128.57600402832,54.4684982299805 +London Airport,-81.1539001465,43.0355987549 +Abbotsford Airport,-122.361000061035,49.0252990722656 +Whitehorse / Erik Nielsen International Airport,-135.067001343,60.7095985413 +North Bay Airport,-79.4227981567383,46.3636016845703 +Calgary International Airport,-114.019996643,51.113899231 +Smithers Airport,-127.182998657227,54.8246994018555 +Fort Nelson Airport,-122.597000122,58.8363990784 +Penticton Airport,-119.601997375488,49.4631004333496 +Charlottetown Airport,-63.1211013793945,46.2900009155273 +Taloyoak Airport,-93.5766983032,69.5466995239 +Victoria International Airport,-123.426002502,48.646900177 +Lynn Lake Airport,-101.075996398926,56.863899230957 +Churchill Airport,-94.0650024414062,58.739200592041 +Goose Bay Airport,-60.4258003235,53.3191986084 +St. John's International Airport,-52.7518997192,47.618598938 +Kapuskasing Airport,-82.4674987792969,49.4138984680176 +Mont Joli Airport,-68.2080993652344,48.6086006164551 +Lester B. Pearson International Airport,-79.6305999756,43.6772003174 +Yellowknife Airport,-114.440002441406,62.4627990722656 +Salluit Airport,-75.6671981811523,62.1794013977051 +Sandspit Airport,-131.813995361,53.2542991638 +Chris Hadfield Airport,-82.3088989257812,42.9994010925293 +Coral Harbour Airport,-83.3593978882,64.1932983398 +Port Hardy Airport,-127.366996765137,50.6805992126465 +Sept-Îles Airport,-66.2656021118164,50.2233009338379 +York Landing Airport,-96.0892028808594,56.0894012451172 +Ilford Airport,-95.613899231,56.0614013672 +Bathurst Airport,-65.738899231,47.629699707 +Eastmain River Airport,-78.5224990844727,52.2263984680176 +Fond-Du-Lac Airport,-107.181999206543,59.334400177002 +Fort Mcpherson Airport,-134.860992431641,67.4075012207031 +Tulita Airport,-125.572998046875,64.9096984863281 +Gods River Airport,-94.0785980224609,54.8396987915039 +Swan River Airport,-101.236000061035,52.1206016540527 +Kashechewan Airport,-81.6778030395508,52.2825012207031 +Muskrat Dam Airport,-91.7628021240234,53.4413986206055 +Masset Airport,-132.125,54.0275001525879 +Sachigo Lake Airport,-92.196403503418,53.8911018371582 +Round Lake (Weagamow Lake) Airport,-91.3127975463867,52.9435997009277 +Sandy Lake Airport,-93.3443984985352,53.0642013549805 +Shamattawa Airport,-92.0813980102539,55.8656005859375 +Wollaston Lake Airport,-103.171997070312,58.1068992614746 +Soummam Airport,5.06992006302,36.7120018005 +Houari Boumediene Airport,3.21540999412537,36.6910018920898 +Djanet Inedbirene Airport,9.45244026184,24.2928009033 +Illizi Takhamalt Airport,8.62265014648,26.7234992981 +Ain Arnat Airport,5.32449007034,36.1781005859 +Aguenar – Hadj Bey Akhamok Airport,5.45107984543,22.8115005493 +Jijel Ferhat Abbas Airport,5.87361001968,36.7951011658 +Annaba Airport,7.80916976928711,36.8222007751465 +Mohamed Boudiaf International Airport,6.62038993835449,36.2760009765625 +Cheikh Larbi Tébessi Airport,8.12071990967,35.4315986633 +Batna Airport,6.3085899353,35.7521018982 +Hassi R'Mel Airport,3.31153988838196,32.9304008483887 +Tindouf Airport,-8.1670999527,27.7003993988 +Zenata – Messali El Hadj Airport,-1.45000004768,35.0167007446 +Es Senia Airport,-0.621182978153,35.6239013672 +Béchar Boudghene Ben Ali Lotfi Airport,-2.26986002922058,31.6457004547119 +Touat Cheikh Sidi Mohamed Belkebir Airport,-0.186414003372192,27.8376007080078 +Biskra Airport,5.73823022842,34.7933006287 +El Golea Airport,2.85959005355835,30.5713005065918 +Noumérat - Moufdi Zakaria Airport,3.79411005973816,32.3841018676758 +Oued Irara Airport,6.14043998718,31.6730003357 +In Salah Airport,2.51202011108,27.2509994507 +Touggourt Sidi Madhi Airport,6.0886697769165,33.067798614502 +Guemar Airport,6.77679014206,33.5113983154 +Timimoun Airport,0.276033014059,29.2371006012 +Ain el Beida Airport,5.41277980804443,31.917200088501 +In Aménas Airport,9.64291000366,28.0515003204 +Cadjehoun Airport,2.38435006141663,6.3572301864624 +Ouagadougou Airport,-1.51242005825043,12.3531999588013 +Bobo Dioulasso Airport,-4.33096981048584,11.1600999832153 +Kotoka International Airport,-0.166786000132561,5.60518980026245 +Tamale Airport,-0.863214015960693,9.55718994140625 +Kumasi Airport,-1.59081995487213,6.71456003189087 +Sunyani Airport,-2.32875990867615,7.36183023452759 +Takoradi Airport,-1.77476000785828,4.8960599899292 +Port Bouet Airport,-3.9262900352478,5.261390209198 +Bouaké Airport,-5.07366991043091,7.73880004882812 +Nnamdi Azikiwe International Airport,7.26316976547241,9.00679016113281 +Akwa Ibom International Airport,8.093,4.8725 +Akure Airport,5.30101013183594,7.24673986434937 +Benin Airport,5.59950017929077,6.31697988510132 +Margaret Ekpo International Airport,8.34720039367676,4.97601985931396 +Akanu Ibiam International Airport,7.56196022033691,6.47426986694336 +Ibadan Airport,3.97832989692688,7.36246013641357 +Ilorin International Airport,4.49391984939575,8.44021034240723 +Sam Mbakwe International Airport,7.20602989196777,5.4270601272583 +Yakubu Gowon Airport,8.86905002593994,9.63982963562012 +Kaduna Airport,7.32010984420776,10.6960000991821 +Mallam Aminu International Airport,8.52462005615234,12.0475997924805 +Maiduguri International Airport,13.0809001922607,11.855299949646 +Murtala Muhammed International Airport,3.32116007804871,6.57737016677856 +Port Harcourt International Airport,6.94959020614624,5.01549005508423 +Sadiq Abubakar III International Airport,5.20719003677368,12.9162998199463 +Yola Airport,12.4303998947144,9.25755023956299 +Diori Hamani International Airport,2.18360996246338,13.481499671936 +Mano Dayak International Airport,8.00010967254639,16.9659996032715 +Zinder Airport,8.98375988006592,13.7790002822876 +Tabarka 7 Novembre Airport,8.87693977355957,36.9799995422363 +Monastir Habib Bourguiba International Airport,10.7546997070312,35.7580986022949 +Tunis Carthage International Airport,10.2271995544434,36.851001739502 +Gafsa Ksar International Airport,8.82250022888184,34.4220008850098 +Gabès Matmata International Airport,10.1033000946045,33.8768997192383 +Djerba Zarzis International Airport,10.7755002975464,33.875 +Sfax Thyna International Airport,10.6909999847412,34.7179985046387 +Tozeur Nefta International Airport,8.11056041717529,33.9397010803223 +Lomé-Tokoin Airport,1.25451004505157,6.16560983657837 +Antwerp International Airport (Deurne),4.46027994156,51.1893997192 +Brussels Airport,4.48443984985,50.9014015198 +Brussels South Charleroi Airport,4.45382022857666,50.4592018127441 +Liège Airport,5.4432201385498,50.6374015808105 +Ostend-Bruges International Airport,2.8622200489,51.1988983154 +Altenburg-Nobitz Airport,12.5063886642456,50.9819450378418 +Heringsdorf Airport,14.152299881,53.8787002563 +Berlin-Schönefeld International Airport,13.522500038147,52.3800010681152 +Dresden Airport,13.7672004699707,51.1328010559082 +Erfurt Airport,10.9581003189087,50.9798011779785 +Frankfurt am Main International Airport,8.54312992096,50.0264015198 +Münster Osnabrück Airport,7.68483018875,52.134601593 +Hamburg Airport,9.98822975158691,53.6304016113281 +Cologne Bonn Airport,7.1427397728,50.8658981323 +Düsseldorf International Airport,6.76677989959717,51.2895011901855 +Munich International Airport,11.7861003875732,48.3538017272949 +Nuremberg Airport,11.0669002533,49.4986991882 +Leipzig Halle Airport,12.2416000366211,51.4323997497559 +Saarbrücken Airport,7.10950994492,49.2145996094 +Stuttgart Airport,9.22196006774902,48.6898994445801 +Berlin-Tegel International Airport,13.2876996994019,52.559700012207 +Hannover Airport,9.68507957458,52.461101532 +Bremen Airport,8.78666973114,53.0475006104 +Frankfurt-Hahn Airport,7.26388978958,49.9486999512 +Mannheim-City Airport,8.51416683197021,49.4730567932129 +Kiel-Holtenau Airport,10.1452779769897,54.3794441223145 +Lübeck Blankensee Airport,10.7192001343,53.8054008484 +Memmingen Allgau Airport,10.2395000458,47.9888000488 +Paderborn Lippstadt Airport,8.61631965637,51.6141014099 +Niederrhein Airport,6.14216995239258,51.6024017333984 +Dortmund Airport,7.61223983765,51.5182991028 +Friedrichshafen Airport,9.51148986816,47.6712989807 +Hof-Plauen Airport,11.8563890457153,50.2886123657227 +Karlsruhe Baden-Baden Airport,8.08049964905,48.7793998718 +Braunschweig Wolfsburg Airport,10.5560998916626,52.3191986083984 +Westerland Sylt Airport,8.34047031403,54.9132003784 +Kärdla Airport,22.8306999206543,58.9907989501953 +Kuressaare Airport,22.50950050354,58.2299003601074 +Pärnu Airport,24.4727993011475,58.4189987182617 +Tallinn Airport,24.8327999115,59.4132995605 +Tartu Airport,26.6903991699,58.3074989319 +Enontekio Airport,23.4242992401123,68.3626022338867 +Helsinki Vantaa Airport,24.9633007049561,60.3171997070312 +Ivalo Airport,27.4053001403809,68.6072998046875 +Joensuu Airport,29.6075000762939,62.662899017334 +Jyvaskyla Airport,25.6783008575439,62.3995018005371 +Kemi-Tornio Airport,24.5820999145508,65.7787017822266 +Kajaani Airport,27.6923999786377,64.2854995727539 +Kruunupyy Airport,23.1431007385254,63.7211990356445 +Kuusamo Airport,29.2394008636475,65.9876022338867 +Kittila Airport,24.8467998504639,67.7009963989258 +Kuopio Airport,27.7978000640869,63.0070991516113 +Lappeenranta Airport,28.1443996429443,61.0446014404297 +Mariehamn Airport,19.8981990814209,60.122200012207 +Oulu Airport,25.3546009063721,64.9300994873047 +Pori Airport,21.7999992370605,61.4617004394531 +Rovaniemi Airport,25.8304004669189,66.5647964477539 +Savonlinna Airport,28.9451007843018,61.9430999755859 +Seinäjoki Airport,22.8323001861572,62.6921005249023 +Tampere-Pirkkala Airport,23.6044006347656,61.4141006469727 +Turku Airport,22.2628002166748,60.5140991210938 +Vaasa Airport,21.7621994018555,63.0507011413574 +Varkaus Airport,27.8686008453369,62.1711006164551 +Belfast International Airport,-6.21582984924,54.6575012207 +George Best Belfast City Airport,-5.87249994277954,54.6180992126465 +City of Derry Airport,-7.16110992431641,55.0428009033203 +Birmingham International Airport,-1.74802994728,52.4538993835 +Nottingham Airport,-1.0791699886322,52.9199981689453 +Manchester Airport,-2.27495002746582,53.3536987304688 +Robin Hood Doncaster Sheffield Airport,-1.01065635681,53.4805378105 +Campbeltown Airport,-5.6863899230957,55.437198638916 +Eday Airport,-2.77221989631653,59.190601348877 +Fair Isle Airport,-1.62805998325348,59.5358009338379 +Cardiff International Airport,-3.34332990646362,51.3967018127441 +Bristol International Airport,-2.7190899848938,51.3827018737793 +Liverpool John Lennon Airport,-2.8497200012207,53.3335990905762 +London Luton Airport,-0.368333011865616,51.874698638916 +Land's End Airport,-5.67055988311768,50.1027984619141 +Plymouth City Airport,-4.10583019256592,50.4227981567383 +St. Mary's Airport,-6.29166984558105,49.9132995605469 +Bournemouth Airport,-1.84249997138977,50.7799987792969 +Southampton Airport,-1.35679996013641,50.9502983093262 +Newquay Cornwall Airport,-4.99540996551514,50.440601348877 +Alderney Airport,-2.21472001075745,49.7061004638672 +Guernsey Airport,-2.60196995735168,49.435001373291 +Jersey Airport,-2.1955099105835,49.2079010009766 +London Gatwick Airport,-0.190277993679047,51.1481018066406 +London City Airport,0.0552779994904995,51.505298614502 +London Heathrow Airport,-0.461941003799,51.4706001282 +Southend Airport,0.695555984973907,51.5713996887207 +Lydd Airport,0.939167022705078,50.9561004638672 +Blackpool International Airport,-3.02860999107361,53.7717018127441 +Humberside Airport,-0.350832998752594,53.5744018554688 +Leeds Bradford Airport,-1.66057002544403,53.8658981323242 +Hawarden Airport,-2.97778010368347,53.1781005859375 +Isle of Man Airport,-4.6238899230957,54.0833015441895 +Newcastle Airport,-1.69166994094849,55.0374984741211 +Durham Tees Valley Airport,-1.42940998077393,54.5092010498047 +East Midlands Airport,-1.32806003094,52.8311004639 +Anglesey Airport,-4.53533983231,53.2481002808 +Kirkwall Airport,-2.90499997138977,58.9578018188477 +Sumburgh Airport,-1.29556000232697,59.8788986206055 +Wick Airport,-3.09306001663208,58.4589004516602 +Aberdeen Dyce Airport,-2.19777989387512,57.2019004821777 +Inverness Airport,-4.0475001335144,57.5424995422363 +Glasgow International Airport,-4.43306016922,55.8718986511 +Edinburgh Airport,-3.37249994277954,55.9500007629395 +Islay Airport,-6.25666999816895,55.6819000244141 +Glasgow Prestwick Airport,-4.586669921875,55.5093994140625 +Benbecula Airport,-7.36278009414673,57.4810981750488 +Dundee Airport,-3.02583003044128,56.4524993896484 +Stornoway Airport,-6.33111000061035,58.2155990600586 +Barra Airport,-7.44305992126465,57.0228004455566 +Tiree Airport,-6.86917018890381,56.4991989135742 +Norwich International Airport,1.28278005123,52.6758003235 +London Stansted Airport,0.234999999404,51.8849983215 +Exeter International Airport,-3.41388988494873,50.7344017028809 +RAF Brize Norton,-1.58361995220184,51.75 +Mount Pleasant Airport,-58.4472007751465,-51.8227996826172 +Amsterdam Airport Schiphol,4.76388978958,52.3086013794 +Maastricht Aachen Airport,5.77014017105,50.9117012024 +Eindhoven Airport,5.37452983856,51.4500999451 +Eelde Airport,6.57944011688,53.1197013855 +Rotterdam Airport,4.43722009659,51.9569015503 +Cork Airport,-8.49110984802246,51.8413009643555 +Galway Airport,-8.94159030914307,53.3002014160156 +Donegal Airport,-8.34099960327148,55.0442008972168 +Dublin Airport,-6.27007007598877,53.4212989807129 +Ireland West Knock Airport,-8.81849002838135,53.9103012084961 +Kerry Airport,-9.52377986907959,52.1809005737305 +Shannon Airport,-8.92481994628906,52.7019996643066 +Sligo Airport,-8.59920978546143,54.280200958252 +Waterford Airport,-7.08695983886719,52.187198638916 +Aarhus Airport,10.6190004349,56.2999992371 +Billund Airport,9.15178012848,55.7402992249 +Copenhagen Kastrup Airport,12.6560001373291,55.6179008483887 +Esbjerg Airport,8.55340003967285,55.5259017944336 +Karup Airport,9.12462997436523,56.2975006103516 +Odense Airport,10.3309001922607,55.4766998291016 +Bornholm Airport,14.7595996856689,55.0633010864258 +Sønderborg Airport,9.79172992706299,54.9644012451172 +Sindal Airport,10.2293996811,57.5035018921 +Vagar Airport,-7.27721977233887,62.0635986328125 +Aalborg Airport,9.84924316406,57.0927589138 +Luxembourg-Findel International Airport,6.21152019500732,49.6265983581543 +Ålesund Airport,6.11969995498657,62.5625 +Andøya Airport,16.1441993713379,69.2925033569336 +Alta Airport,23.3717002868652,69.9760971069336 +Brønnøysund Airport,12.2174997329712,65.4610977172852 +Bodø Airport,14.3653001785278,67.2692031860352 +"Bergen Airport, Flesland",5.21814012527466,60.293399810791 +Båtsfjord Airport,29.6914005279541,70.6005020141602 +Berlevåg Airport,29.034200668335,70.8713989257812 +Kristiansand Airport,8.08537006378174,58.2042007446289 +Bardufoss Airport,18.5403995513916,69.0558013916016 +"Harstad/Narvik Airport, Evenes",16.6781005859375,68.4913024902344 +Leirin Airport,9.28806018829346,61.0155982971191 +Florø Airport,5.02472019195557,61.5835990905762 +Oslo Gardermoen Airport,11.1003999710083,60.1939010620117 +Haugesund Airport,5.20836019515991,59.3452987670898 +Hammerfest Airport,23.6686000823975,70.6797027587891 +Valan Airport,25.9836006164551,71.0096969604492 +"Kristiansund Airport, Kvernberget",7.82452011108398,63.1118011474609 +"Kirkenes Airport, Høybuktmoen",29.891300201416,69.7257995605469 +Leknes Airport,13.6093997955322,68.1524963378906 +Mehamn Airport,27.8267002105713,71.0297012329102 +Molde Airport,7.26249980926514,62.744701385498 +"Mosjøen Airport, Kjærstad",13.2149000167847,65.7839965820312 +Banak Airport,24.9734992980957,70.0688018798828 +Narvik Framnes Airport,17.3866996765137,68.436897277832 +Ørland Airport,9.60400009155273,63.6988983154297 +"Ørsta-Volda Airport, Hovden",6.07410001754761,62.1800003051758 +"Mo i Rana Airport, Røssvoll",14.3014001846313,66.363899230957 +"Rørvik Airport, Ryum",11.1461000442505,64.8383026123047 +Røros Airport,11.3423004150391,62.5783996582031 +"Moss Airport, Rygge",10.7855997086,59.3788986206 +"Svalbard Airport, Longyear",15.4656000137329,78.2461013793945 +Svolvær Helle Airport,14.6691999435425,68.2433013916016 +Stokmarknes Skagen Airport,15.0334167480469,68.5788269042969 +Stord Airport,5.34084987640381,59.7919006347656 +Sørkjosen Airport,20.959400177002,69.7867965698242 +"Vardø Airport, Svartnes",31.044900894165,70.3554000854492 +"Sandnessjøen Airport, Stokka",12.4688997268677,65.9568023681641 +Tromsø Airport,18.9188995361328,69.6832962036133 +"Sandefjord Airport, Torp",10.258600235,59.1866989136 +"Trondheim Airport, Værnes",10.923999786377,63.4578018188477 +Vadsø Airport,29.8446998596191,70.065299987793 +"Stavanger Airport, Sola",5.63778018951416,58.8767013549805 +Bydgoszcz Ignacy Jan Paderewski Airport,17.9776992798,53.0968017578 +Gdańsk Lech Wałęsa Airport,18.4661998748779,54.3776016235352 +John Paul II International Airport Kraków-Balice Airport,19.7847995758057,50.0777015686035 +Katowice International Airport,19.0799999237,50.4743003845 +Łódź Władysław Reymont Airport,19.3980998993,51.7219009399 +Modlin Airport,20.6518001556,52.4510993958 +Poznań-Ławica Airport,16.8262996674,52.4210014343 +Rzeszów-Jasionka Airport,22.0189990997,50.1100006104 +"Szczecin-Goleniów ""Solidarność"" Airport",14.9021997452,53.5847015381 +Warsaw Chopin Airport,20.9671001434,52.1656990051 +Copernicus Wrocław Airport,16.885799408,51.1026992798 +Zielona Góra-Babimost Airport,15.7986001968,52.1385002136 +Ronneby Airport,15.2650003433228,56.2667007446289 +Gothenburg-Landvetter Airport,12.2798004150391,57.6627998352051 +Jönköping Airport,14.068699836731,57.7575988769531 +Gothenburg City Airport,11.870400428772,57.7747001647949 +Trollhättan-Vänersborg Airport,12.3450002670288,58.3180999755859 +Mora Airport,14.5114002227783,60.9579010009766 +Stockholm Skavsta Airport,16.9122009277344,58.7886009216309 +Kristianstad Airport,14.0854997634888,55.9216995239258 +Oskarshamn Airport,16.4979991912842,57.3504981994629 +Kalmar Airport,16.2875995635986,56.6855010986328 +Malmö Sturup Airport,13.3761978149,55.536305364 +Halmstad Airport,12.8201999664307,56.6911010742188 +Växjö Kronoberg Airport,14.7279996871948,56.9291000366211 +Sveg Airport,14.4229001998901,62.0477981567383 +Gällivare Airport,20.8145999908447,67.1324005126953 +Kramfors Sollefteå Airport,17.7688999176025,63.0485992431641 +Lycksele Airport,18.7161998748779,64.5483016967773 +Sundsvall-Härnösand Airport,17.4438991546631,62.5280990600586 +Örnsköldsvik Airport,18.9899997711182,63.4082984924316 +Kiruna Airport,20.336799621582,67.8219985961914 +Skellefteå Airport,21.0769004821777,64.6248016357422 +Umeå Airport,20.2828006744385,63.7918014526367 +Vilhelmina Airport,16.8335990905762,64.5791015625 +Arvidsjaur Airport,19.2819004058838,65.5903015136719 +Östersund Airport,14.5003004074097,63.1944007873535 +Örebro Airport,15.0380001068115,59.2237014770508 +Hagfors Airport,13.5789003372192,60.0200996398926 +Karlstad Airport,13.3374004364,59.4446983337 +Stockholm Västerås Airport,16.6336002349854,59.5894012451172 +Luleå Airport,22.1219997406006,65.5438003540039 +Stockholm-Arlanda Airport,17.9186000823975,59.6519012451172 +Stockholm-Bromma Airport,17.9416999816895,59.3544006347656 +Borlange Airport,15.5151996612549,60.4220008850098 +Hultsfred Airport,15.8233003616333,57.5257987976074 +Linköping City Airport,15.6805000305,58.4062004089 +Norrköping Airport,16.2506008148193,58.5862998962402 +Torsby Airport,12.9912996292,60.1576004028 +Visby Airport,18.3462009429932,57.6627998352051 +Ängelholm-Helsingborg Airport,12.8471002578735,56.2961006164551 +Storuman Airport,17.6965999603271,64.9608993530273 +Hemavan Airport,15.082799911499,65.8060989379883 +Rostock-Laage Airport,12.2783002853,53.9182014465 +Liepāja International Airport,21.0969009399414,56.5175018310547 +Riga International Airport,23.9710998535156,56.9235992431641 +Ventspils International Airport,21.5442008972,57.35779953 +Kaunas International Airport,24.0848007202148,54.9639015197754 +Palanga International Airport,21.093900680542,55.973201751709 +Vilnius International Airport,25.2858009338379,54.6341018676758 +Bram Fischer International Airport,26.302400589,-29.0926990509 +Cape Town International Airport,18.6016998291,-33.9648017883 +Durban International Airport,30.9505004883,-29.9701004028 +Ben Schoeman Airport,27.8258991241,-33.0355987549 +George Airport,22.378900528,-34.0055999756 +Rand Airport,28.1511993408,-26.2425003052 +OR Tambo International Airport,28.2460002899,-26.1392002106 +Kimberley Airport,24.7651996613,-28.8027992249 +Kruger Mpumalanga International Airport,31.1056003571,-25.3831996918 +Lanseria Airport,27.9260997772,-25.9384994507 +King Shaka International Airport,31.1197222222,-29.6144444444 +Malamala Airport,31.5445995330811,-24.8180999755859 +Margate Airport,30.343000412,-30.8574008942 +Mmabatho International Airport,25.5480003357,-25.7984008789 +Port Elizabeth Airport,25.6173000336,-33.9849014282 +Hendrik Van Eck Airport,31.1553993225,-23.9372005463 +Pietersburg Municipal Airport,29.4843997955,-23.9260997772 +Pietermaritzburg Airport,30.3987007141,-29.6490001678 +Polokwane International Airport,29.4585990906,-23.8453006744 +Richards Bay Airport,32.0920982361,-28.7409992218 +Pierre Van Ryneveld Airport,21.2602005005,-28.39909935 +K. D. Matanzima Airport,28.6733551025,-31.5463631849 +Francistown Airport,27.4745006561279,-21.1595993041992 +Jwaneng Airport,24.6909999847412,-24.6023006439209 +Kasane Airport,25.1623992919922,-17.8328990936279 +Maun Airport,23.4311008453369,-19.9726009368896 +Sir Seretse Khama International Airport,25.9181995391846,-24.5552005767822 +Selebi Phikwe Airport,27.828800201416,-22.0583000183105 +Maya-Maya Airport,15.2530002593994,-4.25169992446899 +Ngot Nzoungou Airport,12.6599,-4.20635 +Pointe Noire Airport,11.8865995407104,-4.81603002548218 +Matsapha Airport,31.3075008392334,-26.5289993286133 +Bangui M'Poko International Airport,18.5188007354736,4.39847993850708 +Bata Airport,9.80568027496338,1.90547001361847 +Malabo Airport,8.70872020721436,3.75527000427246 +Sir Seewoosagur Ramgoolam International Airport,57.6836013793945,-20.4302005767822 +Sir Charles Gaetan Duval Airport,63.3610000610352,-19.7576999664307 +Douala International Airport,9.71947956085,4.0060801506 +Salak Airport,14.257399559021,10.4513998031616 +N'Gaoundéré Airport,13.5592002868652,7.35700988769531 +Garoua International Airport,13.3701000213623,9.33588981628418 +Yaoundé Airport,11.5235004425049,3.83604001998901 +Yaoundé Nsimalen International Airport,11.5532999038696,3.72255992889404 +Livingstone Airport,25.8227005004883,-17.8218002319336 +Lusaka International Airport,28.4526004791,-15.3308000565 +Mfuwe Airport,31.9365997314453,-13.2588996887207 +Ndola Airport,28.6648998260498,-12.9981002807617 +Prince Said Ibrahim International Airport,43.271900177002,-11.5336999893188 +Mohéli Bandar Es Eslam Airport,43.7663993835449,-12.2981004714966 +Ouani Airport,44.4303016662598,-12.1316995620728 +Dzaoudzi Pamandzi International Airport,45.2811012268066,-12.8046998977661 +Roland Garros Airport,55.5102996826172,-20.8871002197266 +Pierrefonds Airport,55.4249992370605,-21.3208999633789 +Ivato Airport,47.4788017273,-18.7968997955 +Miandrivazo Airport,45.4508018493652,-19.5627994537354 +Sainte Marie Airport,49.8157997131348,-17.093900680542 +Toamasina Airport,49.3925018310547,-18.1095008850098 +Morondava Airport,44.3176002502441,-20.2847003936768 +Arrachart Airport,49.2916984558105,-12.3493995666504 +Mananara Nord Airport,49.7737998962402,-16.1639003753662 +Antsirabato Airport,50.3202018737793,-14.999400138855 +Analalava Airport,47.763801574707,-14.6296997070312 +Amborovy Airport,46.3512325287,-15.6668417421 +Fascene Airport,48.3148002625,-13.3121004105 +Besalampy Airport,44.4824838638,-16.7445302965 +Maroantsetra Airport,49.6883010864258,-15.4366998672485 +Sambava Airport,50.1747016906738,-14.2785997390747 +Vohimarina Airport,50.002799987793,-13.3758001327515 +Ambalabe Airport,47.9939002990723,-14.8987998962402 +Tôlanaro Airport,46.9561004638672,-25.0380992889404 +Fianarantsoa Airport,47.1116981506348,-21.4416007995605 +Manakara Airport,48.0217018127441,-22.1196994781494 +Mananjary Airport,48.3582992553711,-21.2017993927002 +Morombe Airport,43.3754997253418,-21.7539005279541 +Toliara Airport,43.7285003662109,-23.3833999633789 +Mbanza Congo Airport,14.2469997406006,-6.26989984512329 +Cabinda Airport,12.1884002685547,-5.59699010848999 +Catumbela Airport,13.4869003295898,-12.4792003631592 +Dundo Airport,20.8185005187988,-7.40088987350464 +Ngjiva Pereira Airport,15.6837997436523,-17.0435009002686 +Nova Lisboa Airport,15.7604999542236,-12.8088998794556 +Quatro De Fevereiro Airport,13.2312002182007,-8.85836982727051 +Malanje Airport,16.3124008178711,-9.52509021759033 +Menongue Airport,17.7198009490967,-14.657600402832 +Namibe Airport,12.1468000411987,-15.2611999511719 +Negage Airport,15.2876996994019,-7.75450992584229 +Soyo Airport,12.3718004226685,-6.14108991622925 +Lubango Airport,13.5749998092651,-14.9246997833252 +Koulamoutou Airport,12.4413003921509,-1.18461000919342 +Mouilla Ville Airport,11.0566997528076,-1.84513998031616 +Oyem Airport,11.5813999176025,1.54311001300812 +Port Gentil Airport,8.75438022613525,-0.711739003658295 +Makokou Airport,12.8908996582031,0.579210996627808 +Libreville Leon M'ba International Airport,9.4122800827,0.458600014448 +M'Vengue El Hadj Omar Bongo Ondimba International Airport,13.4379997253418,-1.65615999698639 +Principe Airport,7.41173982620239,1.66294002532959 +São Tomé International Airport,6.71215009689331,0.378174990415573 +Beira Airport,34.907600402832,-19.7964000701904 +Chimoio Airport,33.4290008544922,-19.1513004302979 +Inhambane Airport,35.4085006713867,-23.8763999938965 +Lichinga Airport,35.266300201416,-13.2740001678467 +Maputo Airport,32.5726013183594,-25.9207992553711 +Nampula Airport,39.2817993164062,-15.1056003570557 +Pemba Airport,40.5240135192871,-12.9917621612549 +Quelimane Airport,36.8690986633301,-17.8554992675781 +Chingozi Airport,33.6402015686035,-16.1047992706299 +Vilankulo Airport,35.3133010864258,-22.0184001922607 +Seychelles International Airport,55.521800994873,-4.67433977127075 +Praslin Airport,55.6913986206055,-4.31929016113281 +Abeche Airport,20.8442993164062,13.8470001220703 +Moundou Airport,16.0713996887207,8.62440967559814 +N'Djamena International Airport,15.0340003967285,12.1337003707886 +Joshua Mqabuko Nkomo International Airport,28.6179008483887,-20.0174007415771 +Victoria Falls International Airport,25.8390007019043,-18.0958995819092 +Harare International Airport,31.0928001403809,-17.9318008422852 +Chileka International Airport,34.9739990234375,-15.6791000366211 +Lilongwe International Airport,33.78099823,-13.7894001007 +Mzuzu Airport,34.0117988586426,-11.4447002410889 +Moshoeshoe I International Airport,27.5524997711182,-29.4622993469238 +Luderitz Airport,15.2428998947144,-26.6874008178711 +Ondangwa Airport,15.9525995254517,-17.8782005310059 +Oranjemund Airport,16.4466991424561,-28.5846996307373 +Eros Airport,17.0804004669189,-22.6121997833252 +Hosea Kutako International Airport,17.4708995819092,-22.4799003601074 +Ndjili International Airport,15.4446001053,-4.38574981689 +Bandundu Airport,17.3817005157471,-3.31132006645203 +Kikwit Airport,18.7856006622314,-5.03576993942261 +Mbandaka Airport,18.2887001038,0.0226000007242 +Gbadolite Airport,20.9752998352051,4.25321006774902 +Gemena Airport,19.7712993622,3.23536992073 +Bangoka International Airport,25.3379993439,0.481638997793 +Matari Airport,27.5883007049561,2.82761001586914 +Bunia Airport,30.2208003997803,1.56571996212006 +Goma International Airport,29.2385005950928,-1.67080998420715 +Kindu Airport,25.9153995514,-2.91917991638 +Lubumbashi International Airport,27.5308990479,-11.5913000107 +Kolwezi Airport,25.5056991577148,-10.7658996582031 +Kalemie Airport,29.25,-5.87555980682373 +Kananga Airport,22.4692001343,-5.90005016327 +Mbuji Mayi Airport,23.5690002441,-6.12124013901 +Senou Airport,-7.94994020462036,12.5334997177124 +Gao Airport,-0.00545600010082126,16.2483997344971 +Kayes Dag Dag Airport,-11.4043998718262,14.4812002182007 +Ambodedjo Airport,-4.07955980300903,14.5128002166748 +Timbuktu Airport,-3.00758004188538,16.7304992675781 +Outer Skerries Airport,-0.75,60.4169998168945 +Banjul International Airport,-16.6522006988525,13.3380002975464 +Fuerteventura Airport,-13.8638000488281,28.4526996612549 +Hierro Airport,-17.8871002197266,27.8148002624512 +La Palma Airport,-17.7555999755859,28.6264991760254 +Gran Canaria Airport,-15.3865995407104,27.9319000244141 +Lanzarote Airport,-13.6051998138428,28.945499420166 +Tenerife South Airport,-16.5725002289,28.044500351 +Tenerife Norte Airport,-16.3414993286,28.4827003479 +Melilla Airport,-2.9562599659,35.279800415 +Sherbro International Airport,-12.5188999176025,7.53242015838623 +Bo Airport,-11.7609996795654,7.9443998336792 +Kenema Airport,-11.1766004562378,7.89129018783569 +Lungi International Airport,-13.1955003738403,8.61643981933594 +Yengema Airport,-11.0453996658325,8.61046981811523 +Osvaldo Vieira International Airport,-15.6536998748779,11.8948001861572 +Spriggs Payne Airport,-10.7587003707886,6.28906011581421 +Roberts International Airport,-10.3622999191284,6.23378992080688 +Al Massira Airport,-9.41306972503662,30.3250007629395 +Tan Tan Airport,-11.1612997055054,28.4482002258301 +Saïss Airport,-4.97796010971,33.9272994995 +Moulay Ali Cherif Airport,-4.39833021164,31.9475002289 +Angads Airport,-1.92399001121521,34.7872009277344 +Smara Airport,-11.6847000122,26.7318000793 +Rabat-Salé Airport,-6.75152015686035,34.0514984130859 +Dakhla Airport,-15.9320001602173,23.7182998657227 +Hassan I Airport,-13.2192001342773,27.1516990661621 +Mohammed V International Airport,-7.58997011184692,33.3675003051758 +Nador International Airport,-3.0282099247,34.9888000488 +Menara Airport,-8.03629970551,31.6068992615 +Ouarzazate Airport,-6.90943002701,30.9391002655 +Cherif Al Idrissi Airport,-3.83951997756958,35.1771011352539 +Ziguinchor Airport,-16.2817993164062,12.5556001663208 +Cap Skirring Airport,-16.7460994720459,12.4102001190186 +Léopold Sédar Senghor International Airport,-17.4902000427246,14.7397003173828 +Ouro Sogui Airport,-13.3227996826172,15.5936002731323 +Saint Louis Airport,-16.4631996154785,16.0508003234863 +Tambacounda Airport,-13.6531000137329,13.7368001937866 +Nouakchott International Airport,-15.9484996795654,18.0981998443604 +Nouadhibou International Airport,-17.0300006866455,20.9330997467041 +Conakry Airport,-13.612,9.57689 +Amílcar Cabral International Airport,-22.9493999481201,16.7413997650146 +Rabil Airport,-22.8889007568359,16.1364994049072 +Maio Airport,-23.2136993408203,15.1559000015259 +Praia International Airport,-23.4934997558594,14.9245004653931 +Preguiça Airport,-24.2847003936768,16.588399887085 +Bole International Airport,38.7993011475,8.97789001465 +Arba Minch Airport,37.5904998779297,6.03939008712769 +Axum Airport,38.7728004455566,14.1468000411987 +Bahir Dar Airport,37.3216018676758,11.608099937439 +Aba Tenna Dejazmach Yilma International Airport,41.8541984558105,9.62469959259033 +Gambella Airport,34.5630989074707,8.12876033782959 +Gonder Airport,37.4339981079102,12.5199003219604 +Gode Airport,43.5786018372,5.93513011932 +Harar Meda Airport,39.0059,8.7163 +Jimma Airport,36.8166007995605,7.66609001159668 +Asosa Airport,34.5862998962402,10.018500328064 +Bujumbura International Airport,29.3185005187988,-3.32401990890503 +Egal International Airport,44.0887985229492,9.51817035675049 +Berbera Airport,44.9411010742188,10.3892002105713 +Aden Adde International Airport,45.3046989440918,2.01444005966187 +Djibouti-Ambouli Airport,43.1595001220703,11.5473003387451 +El Arish International Airport,33.8358001709,31.073299408 +Assiut International Airport,31.0119991302,27.0464992523 +El Nouzha Airport,29.9489002227783,31.1839008331299 +Borg El Arab International Airport,29.6963996887207,30.9176998138428 +Abu Simbel Airport,31.611700058,22.3759994507 +Cairo International Airport,31.4055995941162,30.1219005584717 +Hurghada International Airport,33.7994003295898,27.1783008575439 +Luxor International Airport,32.7066001892,25.670999527 +Marsa Alam International Airport,34.5836982727,25.557100296 +Sohag International Airport,31.7427777778,26.3427777778 +Sharm El Sheikh International Airport,34.3950004578,27.9773006439 +Aswan International Airport,32.8199996948,23.9643993378 +Asmara International Airport,38.910701751709,15.2918996810913 +Massawa International Airport,39.3700981140137,15.6700000762939 +Assab International Airport,42.6450004577637,13.0718002319336 +Amboseli Airport,37.253101348877,-2.64505004882812 +Eldoret International Airport,35.238899230957,0.404457986354828 +Jomo Kenyatta International Airport,36.9277992249,-1.31923997402 +Kisumu Airport,34.7289009094238,-0.0861390009522438 +Lokichoggio Airport,34.348201751709,4.20412015914917 +Manda Airstrip,40.9131011962891,-2.25241994857788 +Malindi Airport,40.1016998291016,-3.22931003570557 +Mombasa Moi International Airport,39.5942001342773,-4.03483009338379 +Mara Serena Lodge Airstrip,35.008056640625,-1.40611100196838 +Nairobi Wilson Airport,36.8148002624512,-1.32172000408173 +Nanyuki Airport,37.0410079956055,-0.06239889934659 +Wajir Airport,40.0915985107422,1.73324000835419 +Gardabya Airport,16.5949993134,31.0634994507 +Ghat Airport,10.1426000595,25.1455993652 +Kufra Airport,23.3139991760254,24.1786994934082 +Benina International Airport,20.2695007324,32.0968017578 +Mitiga Airport,13.2760000228882,32.894100189209 +La Abraq Airport,21.9643001556396,32.7887001037598 +Sabha Airport,14.4724998474121,26.9869995117188 +Tripoli International Airport,13.1590003967,32.6635017395 +Ghadames East Airport,9.71531009674072,30.1516990661621 +Kigali International Airport,30.1394996643,-1.96862995625 +Kamembe Airport,28.9078998565674,-2.46223998069763 +Dongola Airport,30.4300994873,19.1539001465 +El Fasher Airport,25.3246002197266,13.6148996353149 +Kassala Airport,36.328800201416,15.3874998092651 +El Obeid Airport,30.2327003479004,13.1532001495361 +Port Sudan New International Airport,37.2341003417969,19.4335994720459 +Juba Airport,31.6011009216,4.87201023102 +Malakal Airport,31.6522006988525,9.55897045135498 +Khartoum International Airport,32.5531997680664,15.5895004272461 +Wau Airport,27.9750003815,7.72583007812 +Arusha Airport,36.63330078125,-3.36778998374939 +Julius Nyerere International Airport,39.2025985718,-6.87810993195 +Kilimanjaro International Airport,37.0745010376,-3.42940998077 +Mtwara Airport,40.1818008422852,-10.3390998840332 +Mwanza Airport,32.9327011108398,-2.4444899559021 +Tanga Airport,39.0712013244629,-5.09236001968384 +Abeid Amani Karume International Airport,39.224899292,-6.22202014923 +Arua Airport,30.9169998168945,3.04999995231628 +Entebbe International Airport,32.4435005187988,0.0423859991133213 +Gulu Airport,32.271800994873,2.80556011199951 +Soroti Airport,33.6227989196777,1.72768998146057 +Indigo Bay Lodge Airport,35.4528007507324,-21.7080001831055 +Sungai Siring International Airport,117.255556,-0.373611 +Zugapa Airport,137.031997681,-3.73955988884 +Jalibah Southeast Air Base,46.6027793884277,30.5465183258057 +Qianjiang Wulingshan Airport,108.831111111,29.5133333333 +Lehigh Valley International Airport,-75.440803527832,40.652099609375 +Abilene Regional Airport,-99.6819000244,32.4113006592 +Albuquerque International Sunport Airport,-106.609001159668,35.0401992797852 +Aberdeen Regional Airport,-98.4217987060547,45.4491004943848 +Southwest Georgia Regional Airport,-84.1945037841797,31.5354995727539 +Nantucket Memorial Airport,-70.06020355,41.25310135 +Waco Regional Airport,-97.2304992675781,31.6112995147705 +Arcata Airport,-124.109001159668,40.978099822998 +Atlantic City International Airport,-74.5772018432617,39.4575996398926 +Alexandria International Airport,-92.5497970581055,31.3274002075195 +Augusta Regional At Bush Field,-81.9645004272461,33.3698997497559 +Athens Ben Epps Airport,-83.326301574707,33.948600769043 +Albany International Airport,-73.8016967773438,42.7482986450195 +Alamogordo White Sands Regional Airport,-105.990997314453,32.839900970459 +Waterloo Regional Airport,-92.4002990722656,42.5570983886719 +Walla Walla Regional Airport,-118.288002,46.09489822 +Rick Husband Amarillo International Airport,-101.706001281738,35.2193984985352 +Altoona Blair County Airport,-78.31999969,40.29639816 +Alpena County Regional Airport,-83.56030273,45.0780983 +Watertown International Airport,-76.0216979980469,43.9919013977051 +Aspen-Pitkin Co/Sardy Field,-106.8690033,39.22320175 +Hartsfield Jackson Atlanta International Airport,-84.4281005859375,33.6366996765137 +Watertown Regional Airport,-97.15470123,44.91400146 +Augusta State Airport,-69.7973022461,44.3205986023 +Austin Bergstrom International Airport,-97.6698989868164,30.1944999694824 +Asheville Regional Airport,-82.5418014526367,35.4361991882324 +Wilkes Barre Scranton International Airport,-75.7233963013,41.3385009766 +Kalamazoo Battle Creek International Airport,-85.5521011352539,42.2349014282227 +Bradley International Airport,-72.6831970215,41.9388999939 +Igor I Sikorsky Memorial Airport,-73.1261978149414,41.163501739502 +Bradford Regional Airport,-78.6400985717773,41.8031005859375 +Western Neb. Rgnl/William B. Heilig Airport,-103.5960007,41.87400055 +Boeing Field King County International Airport,-122.302001953125,47.5299987792969 +Greater Binghamton/Edwin A Link field,-75.97979736,42.20869827 +Bangor International Airport,-68.8281021118164,44.8073997497559 +Hancock County-Bar Harbor Airport,-68.3615036,44.45000076 +Birmingham-Shuttlesworth International Airport,-86.75350189,33.56290054 +Billings Logan International Airport,-108.542999267578,45.8077011108398 +Bismarck Municipal Airport,-100.746002197266,46.7727012634277 +Raleigh County Memorial Airport,-81.1241989136,37.7873001099 +Mercer County Airport,-81.2077026367188,37.2957992553711 +Bellingham International Airport,-122.53800201416,48.7928009033203 +Central Illinois Regional Airport at Bloomington-Normal,-88.91590118,40.47710037 +Nashville International Airport,-86.6781997680664,36.1245002746582 +Boise Air Terminal/Gowen field,-116.2229996,43.56439972 +General Edward Lawrence Logan International Airport,-71.00520325,42.36429977 +Southeast Texas Regional Airport,-94.0206985473633,29.9507999420166 +Brunswick Golden Isles Airport,-81.4664993286133,31.2588005065918 +Brainerd Lakes Regional Airport,-94.13809967,46.39830017 +Southeast Iowa Regional Airport,-91.1255035400391,40.7831993103027 +Brownsville South Padre Island International Airport,-97.4259033203125,25.9067993164062 +Bert Mooney Airport,-112.497001647949,45.9547996520996 +"Baton Rouge Metropolitan, Ryan Field",-91.14959717,30.53319931 +Burlington International Airport,-73.1532974243,44.4719009399 +Buffalo Niagara International Airport,-78.73220062,42.94049835 +Bob Hope Airport,-118.359001159668,34.2006988525391 +Baltimore/Washington International Thurgood Marshall Airport,-76.66829681,39.17539978 +Gallatin Field,-111.1529999,45.77750015 +Columbia Metropolitan Airport,-81.119499206543,33.9388008117676 +Akron Canton Regional Airport,-81.4421997070312,40.9160995483398 +Cedar City Regional Airport,-113.098999023438,37.701000213623 +Jack Mc Namara Field Airport,-124.2369995,41.78020096 +Cape Girardeau Regional Airport,-89.57080078125,37.2252998352051 +Lovell Field,-85.2037963867188,35.0353012084961 +Charlottesville Albemarle Airport,-78.4529037475586,38.138599395752 +Charleston Air Force Base-International Airport,-80.04049683,32.89860153 +The Eastern Iowa Airport,-91.7108001708984,41.8847007751465 +Chippewa County International Airport,-84.4723968505859,46.2508010864258 +North Central West Virginia Airport,-80.2281036377,39.2966003418 +Cleveland Hopkins International Airport,-81.8498001099,41.4117012024 +Easterwood Field,-96.36380005,30.58860016 +William R Fairchild International Airport,-123.5,48.1202011108398 +Charlotte Douglas International Airport,-80.9430999755859,35.2140007019043 +Port Columbus International Airport,-82.8918991088867,39.9980010986328 +University of Illinois Willard Airport,-88.27809906,40.03919983 +Houghton County Memorial Airport,-88.4890975952148,47.168399810791 +Cavern City Air Terminal,-104.263000488281,32.3375015258789 +City of Colorado Springs Municipal Airport,-104.700996398926,38.8058013916016 +Columbia Regional Airport,-92.219596862793,38.8180999755859 +Casper-Natrona County International Airport,-106.4639969,42.90800095 +Corpus Christi International Airport,-97.5011978149414,27.7703990936279 +Yeager Airport,-81.5932006835938,38.3731002807617 +Columbus Metropolitan Airport,-84.9389038085938,32.516300201416 +Cincinnati Northern Kentucky International Airport,-84.6678009033,39.0488014221 +Cheyenne Regional Jerry Olson Field,-104.8119965,41.15570068 +Daytona Beach International Airport,-81.0580978393555,29.1798992156982 +Dallas Love Field,-96.8517990112305,32.8470993041992 +James M Cox Dayton International Airport,-84.2193984985352,39.902400970459 +Dubuque Regional Airport,-90.70950317,42.40200043 +Ronald Reagan Washington National Airport,-77.0376968383789,38.8521003723145 +Dodge City Regional Airport,-99.9655990600586,37.7634010314941 +Decatur Airport,-88.8656997680664,39.8345985412598 +Denver International Airport,-104.672996520996,39.8616981506348 +Dallas Fort Worth International Airport,-97.0380020141602,32.896800994873 +Dothan Regional Airport,-85.4496002197266,31.3213005065918 +Duluth International Airport,-92.193603515625,46.842098236084 +Des Moines International Airport,-93.6631011962891,41.5340003967285 +Detroit Metropolitan Wayne County Airport,-83.353401184082,42.2123985290527 +DuBois Regional Airport,-78.8986969,41.17829895 +Chippewa Valley Regional Airport,-91.4842987060547,44.8657989501953 +Eagle County Regional Airport,-106.9179993,39.64260101 +Elko Regional Airport,-115.791999816895,40.8249015808105 +South Arkansas Regional At Goodwin Field,-92.8133010864258,33.2210006713867 +Elmira Corning Regional Airport,-76.8916015625,42.1599006652832 +El Paso International Airport,-106.3779984,31.80719948 +Erie International Tom Ridge Field,-80.1738667488,42.0831270134 +Mahlon Sweet Field,-123.21199798584,44.1245994567871 +Evansville Regional Airport,-87.5324020386,38.0369987488 +New Bedford Regional Airport,-70.956901550293,41.6761016845703 +Coastal Carolina Regional Airport,-77.0429000854,35.0730018616 +Newark Liberty International Airport,-74.168701171875,40.6925010681152 +Key West International Airport,-81.7595977783203,24.5561008453369 +Hector International Airport,-96.815803527832,46.9207000732422 +Fresno Yosemite International Airport,-119.718002319336,36.7761993408203 +Fayetteville Regional Grannis Field,-78.8803024291992,34.9911994934082 +Sierra Vista Municipal Libby Army Air Field,-110.34400177002,31.5884990692139 +Flagstaff Pulliam Airport,-111.6709976,35.13850021 +Fort Lauderdale Hollywood International Airport,-80.152702331543,26.0725994110107 +Florence Regional Airport,-79.7238998413086,34.1853981018066 +Bishop International Airport,-83.7435989379883,42.9654006958008 +Fort Dodge Regional Airport,-94.19259644,42.55149841 +Joe Foss Field Airport,-96.741897583,43.5820007324 +Fort Smith Regional Airport,-94.3674011230469,35.3366012573242 +Fort Wayne International Airport,-85.19509888,40.97850037 +Jalal-Abad Airport,72.9777984619,40.9444007874 +Gillette Campbell County Airport,-105.539001465,44.3488998413 +Garden City Regional Airport,-100.723999023,37.9275016785 +Grand Canyon National Park Airport,-112.147003173828,35.9524002075195 +Spokane International Airport,-117.533996582031,47.6198997497559 +Grand Forks International Airport,-97.1761016845703,47.9492988586426 +East Texas Regional Airport,-94.7115020751953,32.3839988708496 +Wokal Field Glasgow International Airport,-106.61499786377,48.2125015258789 +Grand Junction Regional Airport,-108.527000427,39.1223983765 +Mid Delta Regional Airport,-90.9856033325195,33.4828987121582 +Gainesville Regional Airport,-82.2717971802,29.6900997162 +Glacier Park International Airport,-114.255996704102,48.3105010986328 +Gulfport Biloxi International Airport,-89.0700988769531,30.4073009490967 +Austin Straubel International Airport,-88.1296005249023,44.4850997924805 +Central Nebraska Regional Airport,-98.3096008300781,40.9674987792969 +Robert Gray Army Air Field Airport,-97.8289031982,31.067199707 +Gerald R. Ford International Airport,-85.52279663,42.88079834 +Piedmont Triad International Airport,-79.9373016357422,36.0978012084961 +Greenville Spartanburg International Airport,-82.2189025879,34.8956985474 +Great Falls International Airport,-111.3710022,47.48199844 +Golden Triangle Regional Airport,-88.5914001465,33.4502983093 +Chisholm Hibbing Airport,-92.83899689,47.38660049 +Helena Regional Airport,-111.983001708984,46.6068000793457 +Huron Regional Airport,-98.2285003662109,44.3852005004883 +Memorial Field,-93.0961990356445,34.4780006408691 +William P Hobby Airport,-95.27890015,29.64539909 +Westchester County Airport,-73.7076034545898,41.0670013427734 +Valley International Airport,-97.6544036865234,26.2285003662109 +Boone County Airport,-93.1547012329102,36.2615013122559 +Huntsville International Carl T Jones Field,-86.7751007080078,34.6371994018555 +Tri-State/Milton J. Ferguson Field,-82.55799866,38.36669922 +Tweed New Haven Airport,-72.88680267,41.26369858 +Barnstable Municipal Boardman Polando Field,-70.28040314,41.66930008 +Washington Dulles International Airport,-77.45580292,38.94449997 +George Bush Intercontinental Houston Airport,-95.3414001464844,29.9843997955322 +Wichita Mid Continent Airport,-97.4330978393555,37.6498985290527 +Idaho Falls Regional Airport,-112.070999145508,43.5145988464355 +New Castle Airport,-75.60649872,39.67869949 +Wilmington International Airport,-77.9026031494141,34.2705993652344 +Indianapolis International Airport,-86.2944030761719,39.7173004150391 +Falls International Airport,-93.4030990600586,48.5662002563477 +Williamsport Regional Airport,-76.9210968017578,41.2417984008789 +Kirksville Regional Airport,-92.5448989868164,40.0934982299805 +Long Island Mac Arthur Airport,-73.10019684,40.79520035 +Ithaca Tompkins Regional Airport,-76.4583969116211,42.4910011291504 +Jackson Hole Airport,-110.737998962402,43.6072998046875 +Jackson-Medgar Wiley Evers International Airport,-90.0758972168,32.3111991882 +Jacksonville International Airport,-81.6878967285156,30.4941005706787 +Jonesboro Municipal Airport,-90.6464004516602,35.8316993713379 +John F Kennedy International Airport,-73.77890015,40.63980103 +Joplin Regional Airport,-94.4982986450195,37.151798248291 +Jamestown Regional Airport,-98.67819977,46.92969894 +John Murtha Johnstown Cambria County Airport,-78.8339004516602,40.3161010742188 +Capital City Airport,-84.58740234375,42.7787017822266 +Laramie Regional Airport,-105.675003051758,41.3120994567871 +McCarran International Airport,-115.1520004,36.08010101 +Los Angeles International Airport,-118.4079971,33.94250107 +Lubbock Preston Smith International Airport,-101.822998046875,33.6636009216309 +Arnold Palmer Regional Airport,-79.40480042,40.27590179 +North Platte Regional Airport Lee Bird Field,-100.6839981,41.12620163 +Liberal Mid-America Regional Airport,-100.9599991,37.0442009 +Lake Charles Regional Airport,-93.2232971191406,30.1261005401611 +Lebanon Municipal Airport,-72.30419921875,43.6260986328125 +Blue Grass Airport,-84.6059036254883,38.0364990234375 +Lafayette Regional Airport,-91.98760223,30.20529938 +La Guardia Airport,-73.87259674,40.77719879 +Long Beach /Daugherty Field/ Airport,-118.1520004,33.81769943 +Adams Field,-92.2242965698242,34.7294006347656 +Klamath Falls Airport,-121.733001708984,42.1561012268066 +Lincoln Airport,-96.7592010498047,40.851001739502 +Lancaster Airport,-76.2960968017578,40.1217002868652 +Laredo International Airport,-99.4616012573242,27.5438003540039 +La Crosse Municipal Airport,-91.25669861,43.87900162 +Lewiston Nez Perce County Airport,-117.014999389648,46.3745002746582 +Lewistown Municipal Airport,-109.467002868652,47.0493011474609 +Lynchburg Regional Preston Glenn Field,-79.2004013061523,37.3266983032227 +Midland International Airport,-102.202003479004,31.9424991607666 +MBS International Airport,-84.0795974731445,43.532901763916 +Kansas City International Airport,-94.7138977050781,39.2975997924805 +Middle Georgia Regional Airport,-83.6492004394531,32.692798614502 +Orlando International Airport,-81.3089981079102,28.4293994903564 +Harrisburg International Airport,-76.7633972168,40.1935005188 +Chicago Midway International Airport,-87.7524032592773,41.7859992980957 +Key Field,-88.7518997192383,32.3325996398926 +Memphis International Airport,-89.9766998291016,35.0424003601074 +Mc Allen Miller International Airport,-98.23860168,26.17580032 +Rogue Valley International Medford Airport,-122.873001098633,42.3741989135742 +Montgomery Regional (Dannelly Field) Airport,-86.39399719,32.30059814 +Morgantown Municipal Walter L. Bill Hart Field,-79.91629791,39.64289856 +Manhattan Regional Airport,-96.6707992553711,39.140998840332 +Manchester Airport,-71.4356994628906,42.9325981140137 +Miami International Airport,-80.2906036376953,25.7931995391846 +General Mitchell International Airport,-87.896598815918,42.9472007751465 +Mc Kellar Sipes Regional Airport,-88.91560364,35.59989929 +Melbourne International Airport,-80.6453018188477,28.1028003692627 +Quad City International Airport,-90.5074996948242,41.4485015869141 +Frank Wiley Field,-105.886001586914,46.4280014038086 +Monroe Regional Airport,-92.0376968383789,32.5108985900879 +Mobile Regional Airport,-88.2427978515625,30.6912002563477 +Modesto City Co-Harry Sham Field,-120.9540024,37.62580109 +Minot International Airport,-101.279998779297,48.2593994140625 +Monterey Peninsula Airport,-121.843002319336,36.5870018005371 +Northwest Alabama Regional Airport,-87.61019897,34.74530029 +Dane County Regional Truax Field,-89.3375015258789,43.1399002075195 +Missoula International Airport,-114.0910034,46.91630173 +Minneapolis-St Paul International/Wold-Chamberlain Airport,-93.2218017578,44.8819999695 +Massena International Richards Field,-74.8455963134766,44.9357986450195 +Louis Armstrong New Orleans International Airport,-90.2580032348633,29.9934005737305 +Myrtle Beach International Airport,-78.9282989501953,33.6796989440918 +Yuma MCAS/Yuma International Airport,-114.6060028,32.65660095 +Metropolitan Oakland International Airport,-122.221000671387,37.7212982177734 +Will Rogers World Airport,-97.600700378418,35.3931007385254 +Eppley Airfield,-95.8940963745117,41.3031997680664 +Ontario International Airport,-117.600997924805,34.0559997558594 +Chicago O'Hare International Airport,-87.90480042,41.97859955 +Norfolk International Airport,-76.2012023925781,36.8945999145508 +Southwest Oregon Regional Airport,-124.246002197266,43.4170989990234 +Owensboro Daviess County Airport,-87.16680145,37.74010086 +Chongjin Airport,129.854995727539,41.8013000488281 +Barkley Regional Airport,-88.7738037109375,37.0607986450195 +Plattsburgh International Airport,-73.4681015014648,44.6509017944336 +Palm Beach International Airport,-80.0955963134766,26.6832008361816 +Portland International Airport,-122.5979996,45.58869934 +Newport News Williamsburg International Airport,-76.49299622,37.13190079 +Philadelphia International Airport,-75.241096496582,39.871898651123 +Phoenix Sky Harbor International Airport,-112.012001037598,33.4342994689941 +Greater Peoria Regional Airport,-89.6932983398438,40.6641998291016 +Hattiesburg Laurel Regional Airport,-89.3370971679688,31.4671001434326 +St Petersburg Clearwater International Airport,-82.68740082,27.91020012 +Pocatello Regional Airport,-112.596000671387,42.9098014831543 +Pierre Regional Airport,-100.2860031,44.38270187 +Pittsburgh International Airport,-80.23290253,40.49150085 +Mid Ohio Valley Regional Airport,-81.4392013549805,39.345100402832 +Pellston Regional Airport of Emmet County Airport,-84.79669952,45.57089996 +Palmdale Regional/USAF Plant 42 Airport,-118.0849991,34.62939835 +Pensacola Regional Airport,-87.1865997314453,30.4734001159668 +Northern Maine Regional Airport at Presque Isle,-68.0447998,46.68899918 +Ernest A. Love Field,-112.4199982,34.65449905 +Tri Cities Airport,-119.119003295898,46.2647018432617 +Portsmouth International at Pease Airport,-70.8233032227,43.0778999329 +Palm Springs International Airport,-116.50700378418,33.8297004699707 +Pullman Moscow Regional Airport,-117.110000610352,46.7439002990723 +Theodore Francis Green State Airport,-71.4204025268555,41.7326011657715 +Portland International Jetport Airport,-70.30930328,43.64619827 +Rapid City Regional Airport,-103.056999206543,44.0452995300293 +Redding Municipal Airport,-122.2929993,40.50899887 +Reading Regional Carl A Spaatz Field,-75.965202331543,40.3785018920898 +Roberts Field,-121.1500015,44.2541008 +Raleigh Durham International Airport,-78.7874984741211,35.8776016235352 +Chicago Rockford International Airport,-89.0971984863281,42.1954002380371 +Rhinelander Oneida County Airport,-89.4674987792969,45.6311988830566 +Richmond International Airport,-77.3197021484375,37.505199432373 +Rock Springs Sweetwater County Airport,-109.0650024,41.59420013 +Reno Tahoe International Airport,-119.767997741699,39.4990997314453 +Roanoke Regional Woodrum Field,-79.9754028320312,37.3255004882812 +Greater Rochester International Airport,-77.6724014282227,43.1189002990723 +Roswell International Air Center Airport,-104.53099822998,33.3016014099121 +Rochester International Airport,-92.5,43.9082984924316 +Southwest Florida International Airport,-81.7552032470703,26.5361995697021 +Rutland - Southern Vermont Regional Airport,-72.94960022,43.52939987 +San Diego International Airport,-117.190002441406,32.7336006164551 +San Antonio International Airport,-98.4698028564453,29.5337009429932 +Savannah Hilton Head International Airport,-81.20210266,32.12760162 +Santa Barbara Municipal Airport,-119.8399963,34.42620087 +South Bend Regional Airport,-86.3172988891602,41.7086982727051 +San Luis County Regional Airport,-120.641998291016,35.2368011474609 +Salisbury Ocean City Wicomico Regional Airport,-75.5102996826172,38.3404998779297 +Louisville International Standiford Field,-85.7360000610352,38.1744003295898 +Seattle Tacoma International Airport,-122.30899810791,47.4490013122559 +Orlando Sanford International Airport,-81.2375030517578,28.7775993347168 +San Francisco International Airport,-122.375,37.6189994812012 +Springfield Branson National Airport,-93.38860321,37.24570084 +Sheridan County Airport,-106.980003356934,44.7691993713379 +Shreveport Regional Airport,-93.8255996704102,32.4466018676758 +Norman Y. Mineta San Jose International Airport,-121.929000854492,37.3625984191895 +San Angelo Regional Mathis Field,-100.496002197266,31.3577003479004 +Salt Lake City International Airport,-111.977996826172,40.7883987426758 +Adirondack Regional Airport,-74.2061996459961,44.3852996826172 +Salina Municipal Airport,-97.6521987915039,38.7910003662109 +Sacramento International Airport,-121.591003417969,38.6954002380371 +Santa Maria Pub/Capt G Allan Hancock Field,-120.4570007,34.89889908 +John Wayne Airport-Orange County Airport,-117.8679962,33.67570114 +Abraham Lincoln Capital Airport,-89.67790222,39.84410095 +Sheppard Air Force Base-Wichita Falls Municipal Airport,-98.49189758,33.98880005 +Sarasota Bradenton International Airport,-82.5543975830078,27.3953990936279 +St Cloud Regional Airport,-94.0598983764648,45.5466003417969 +Lambert St Louis International Airport,-90.370002746582,38.7486991882324 +Charles M. Schulz Sonoma County Airport,-122.8130035,38.50899887 +Friedman Memorial Airport,-114.2959976,43.50439835 +Sioux Gateway Col. Bud Day Field,-96.38439941,42.40259933 +Stewart International Airport,-74.1047973632812,41.5041007995605 +Syracuse Hancock International Airport,-76.1063003540039,43.111198425293 +Waynesville-St. Robert Regional Forney field,-92.14070129,37.74160004 +Tallahassee Regional Airport,-84.3503036499023,30.3964996337891 +Toledo Express Airport,-83.80780029,41.58679962 +Tampa International Airport,-82.533203125,27.9755001068115 +Tri Cities Regional Tn Va Airport,-82.4074020385742,36.4752006530762 +Trenton Mercer Airport,-74.8134994506836,40.2766990661621 +Tulsa International Airport,-95.8880996704102,36.1983985900879 +Tupelo Regional Airport,-88.7698974609375,34.2681007385254 +Tucson International Airport,-110.94100189209,32.1161003112793 +Cherry Capital Airport,-85.5821990966797,44.7414016723633 +Joslin Field Magic Valley Regional Airport,-114.487999,42.48180008 +Texarkana Regional Webb Field,-93.9909973144531,33.4537010192871 +Tyler Pounds Regional Airport,-95.4023971557617,32.3540992736816 +McGhee Tyson Airport,-83.9940033,35.81100082 +Quincy Regional Baldwin Field,-91.19460297,39.94269943 +University Park Airport,-77.8487014771,40.8493003845 +Victoria Regional Airport,-96.9185028076172,28.8526000976562 +Valdosta Regional Airport,-83.2767028808594,30.7824993133545 +Eglin Air Force Base,-86.5253982543945,30.4832000732422 +Worland Municipal Airport,-107.950996398926,43.9656982421875 +Kiwayu Airport,41.2975006103516,-1.96055996417999 +Yakima Air Terminal McAllister Field,-120.5439987,46.56819916 +Dzhezkazgan Airport,67.6734008789062,47.7708015441895 +Tirana International Airport Mother Teresa,19.7206001282,41.4146995544 +Burgas Airport,27.5151996612549,42.5695991516113 +Plovdiv International Airport,24.8507995605469,42.067798614502 +Sofia Airport,23.4114360809326,42.6966934204102 +Varna Airport,27.8250999450684,43.2321014404297 +Ercan International Airport,33.4961013793945,35.1547012329102 +Larnaca International Airport,33.6249008178711,34.8750991821289 +Paphos International Airport,32.4856986999512,34.7179985046387 +Dubrovnik Airport,18.2681999206543,42.5614013671875 +Pula Airport,13.9222002029419,44.8935012817383 +Rijeka Airport,14.5703001022339,45.2168998718262 +Bol Airport,16.6797008514404,43.285701751709 +Split Airport,16.2980003356934,43.5388984680176 +Zagreb Airport,16.0687999725,45.7429008484 +Zemunik Airport,15.3466997146606,44.1082992553711 +Albacete-Los Llanos Airport,-1.86352002621,38.9485015869 +Alicante International Airport,-0.55815601348877,38.2821998596191 +Almería International Airport,-2.3701000213623,36.8438987731934 +Asturias Airport,-6.03461980819702,43.5635986328125 +Bilbao Airport,-2.91060996055603,43.3011016845703 +Barcelona International Airport,2.07845997810364,41.2971000671387 +Badajoz Airport,-6.82133007049561,38.891300201416 +A Coruña Airport,-8.37726020812988,43.3021011352539 +Lleida-Alguaire Airport,0.535023,41.728185 +Girona Airport,2.76055002212524,41.9010009765625 +Federico Garcia Lorca Airport,-3.77735996246338,37.1887016296387 +Ibiza Airport,1.37311995029,38.8728981018 +Jerez Airport,-6.06011009216309,36.7445983886719 +San Javier Airport,-0.812389016151428,37.7750015258789 +Madrid Barajas International Airport,-3.56676,40.4936 +Málaga Airport,-4.49911022186279,36.6749000549316 +Menorca Airport,4.21864986419678,39.8625984191895 +Palma De Mallorca Airport,2.73881006241,39.551700592 +Pamplona Airport,-1.64632999897003,42.7700004577637 +Reus Air Base,1.16717004776001,41.1473999023438 +Salamanca Airport,-5.50198984146118,40.9520988464355 +San Sebastian Airport,-1.79060995578766,43.3564987182617 +Santiago de Compostela Airport,-8.41514015197754,42.8963012695312 +Valencia Airport,-0.481624990701675,39.4892997741699 +Valladolid Airport,-4.85194015503,41.7061004639 +Vitoria/Foronda Airport,-2.72446990013123,42.8828010559082 +Vigo Airport,-8.62677001953125,42.2318000793457 +Santander Airport,-3.82000994682312,43.4271011352539 +Zaragoza Air Base,-1.04155004024506,41.6661987304688 +Sevilla Airport,-5.8931097984314,37.4179992675781 +Agen-La Garenne Airport,0.590556025505066,44.1747016906738 +Bordeaux-Mérignac (BA 106) Airport,-0.715556025505066,44.8283004760742 +Bergerac-Roumanière Airport,0.518611013889313,44.8252983093262 +La Rochelle-Île de Ré Airport,-1.19527995586395,46.17919921875 +Poitiers-Biard Airport,0.306665986776352,46.5876998901367 +Limoges Airport,1.17944002151489,45.8628005981445 +Toulouse-Blagnac Airport,1.36381995677948,43.6291007995605 +Pau Pyrénées Airport,-0.418610990047455,43.3800010681152 +Tarbes-Lourdes-Pyrénées Airport,-0.006438999902457,43.1786994934082 +Angoulême-Brie-Champniers Airport,0.221456006169319,45.7291984558105 +Biarritz-Anglet-Bayonne Airport,-1.5233199596405,43.4683990478516 +Castres-Mazamet Airport,2.2891800403595,43.5563011169434 +Rodez-Marcillac Airport,2.48267006874084,44.407901763916 +Île d'Yeu Airport,-2.39110994338989,46.7186012268066 +Le Puy-Loudes Airport,3.76289010047913,45.0806999206543 +Metz-Nancy-Lorraine Airport,6.25131988525,48.9821014404 +Angers-Loire Airport,-0.312222003936768,47.5602989196777 +Bastia-Poretta Airport,9.48373031616211,42.5527000427246 +Calvi-Sainte-Catherine Airport,8.79319000244141,42.5307998657227 +Figari Sud-Corse Airport,9.09778022766113,41.5005989074707 +Ajaccio-Napoléon Bonaparte Airport,8.8029203414917,41.9235992431641 +Chambéry-Savoie Airport,5.88022994995117,45.6380996704102 +Clermont-Ferrand Auvergne Airport,3.16916990280151,45.7867012023926 +Lyon Saint-Exupéry Airport,5.09082984924,45.726398468 +Annecy-Haute-Savoie-Mont Blanc Airport,6.09876012802124,45.92919921875 +Grenoble-Isère Airport,5.32937002182007,45.3628997802734 +Aurillac Airport,2.42194008827209,44.8913993835449 +Cannes-Mandelieu Airport,6.9534797668457,43.5419998168945 +Saint-Étienne-Bouthéon Airport,4.29639005661011,45.540599822998 +Carcassonne Airport,2.30631995201111,43.2159996032715 +Marseille Provence Airport,5.22142410278,43.439271922 +Nice-Côte d'Azur Airport,7.21586990356,43.6584014893 +Perpignan-Rivesaltes (Llabanère) Airport,2.87067008018494,42.7403984069824 +Montpellier-Méditerranée Airport,3.96301007270813,43.5761985778809 +Béziers-Vias Airport,3.35389995574951,43.3235015869141 +Avignon-Caumont Airport,4.90183019638062,43.907299041748 +Paris Beauvais Tillé Airport,2.11278009414673,49.4543991088867 +Le Havre Octeville Airport,0.0880559980869293,49.5339012145996 +Rouen Airport,1.17480003833771,49.3842010498047 +Tours-Val-de-Loire Airport,0.727605998516,47.4322013855 +Charles de Gaulle International Airport,2.54999995232,49.0127983093 +Paris-Orly Airport,2.35944008827,48.7252998352 +Pontoise - Cormeilles-en-Vexin Airport,2.04082989692688,49.0965995788574 +Lille-Lesquin Airport,3.08944010734558,50.5619010925293 +Brest Bretagne Airport,-4.41854000091553,48.4478988647461 +Cherbourg-Maupertus Airport,-1.47028005123138,49.6501007080078 +Dinard-Pleurtuit-Saint-Malo Airport,-2.07996010780334,48.5876998901367 +Lorient South Brittany (Bretagne Sud) Airport,-3.44000005722046,47.7606010437012 +Caen-Carpiquet Airport,-0.449999988079071,49.1733016967773 +Rennes-Saint-Jacques Airport,-1.73478996754,48.0694999695 +Lannion-Côte de Granit Airport,-3.47165989875793,48.7543983459473 +Quimper-Cornouaille Airport,-4.16778993606567,47.9749984741211 +Nantes Atlantique Airport,-1.61073005199,47.1531982422 +EuroAirport Basel-Mulhouse-Freiburg Airport,7.52991008759,47.5895996094 +Dijon-Bourgogne Airport,5.09000015259,47.268901825 +Épinal-Mirecourt Airport,6.06998014450073,48.3250007629395 +Reims-Champagne (BA 112) Airport,4.05000019073486,49.310001373291 +Strasbourg Airport,7.62823009490967,48.5382995605469 +Toulon-Hyères Airport,6.14602994919,43.0973014832 +Nîmes-Arles-Camargue Airport,4.4163498878479,43.7574005126953 +St Pierre Airport,-56.1730995178223,46.7629013061523 +Dimokritos Airport,25.9563007354736,40.855899810791 +Eleftherios Venizelos International Airport,23.9444999695,37.9364013672 +Chios Island National Airport,26.1406002044678,38.3432006835938 +Ioannina Airport,20.8225002288818,39.6963996887207 +Heraklion International Nikos Kazantzakis Airport,25.1802997589,35.3396987915 +Kefallinia Airport,20.5004997253418,38.1200981140137 +Kalamata Airport,22.0254993438721,37.0682983398438 +Kos Airport,27.0916996002197,36.7933006286621 +Karpathos Airport,27.1459999084473,35.4213981628418 +Ioannis Kapodistrias International Airport,19.9116992950439,39.6018981933594 +Alexander the Great International Airport,24.6191997528076,40.9132995605469 +Filippos Airport,21.840799331665,40.2860984802246 +Mikonos Airport,25.3481006622314,37.4351005554199 +Mytilene International Airport,26.5983009338,39.0567016602 +Aktion National Airport,20.7653007507324,38.9254989624023 +Diagoras Airport,28.0862007141113,36.4053993225098 +Araxos Airport,21.4256000518799,38.1511001586914 +Chania International Airport,24.1497001647949,35.5317001342773 +Skiathos Island National Airport,23.5037002563477,39.1771011352539 +Samos Airport,26.9116992950439,37.689998626709 +Santorini Airport,25.4792995452881,36.3992004394531 +Sitia Airport,26.1012992858887,35.2160987854004 +Thessaloniki Macedonia International Airport,22.9708995819092,40.5196990966797 +Dionysios Solomos Airport,20.8843002319336,37.7509002685547 +Budapest Listz Ferenc international Airport,19.2555999756,47.4369010925 +Debrecen International Airport,21.6152992248535,47.488899230957 +Pécs-Pogány Airport,18.2409992218018,45.9908981323242 +Győr-Pér International Airport,17.8136005401611,47.6244010925293 +Sármellék International Airport,17.1590995788574,46.6864013671875 +Crotone Airport,17.0802001953125,38.997200012207 +Bari / Palese International Airport,16.7605991363525,41.1389007568359 +Foggia / Gino Lisa Airport,15.5349998474121,41.4328994750977 +Pescara International Airport,14.1810998916626,42.4317016601562 +Brindisi / Casale Airport,17.94700050354,40.657600402832 +Lamezia Terme Airport,16.2423000335693,38.9053993225098 +Catania / Fontanarossa Airport,15.0663995742798,37.4668006896973 +Lampedusa Airport,12.6181001663208,35.4978981018066 +Pantelleria Airport,11.9688997268677,36.8165016174316 +Palermo / Punta Raisi Airport,13.0909996032715,38.1759986877441 +Reggio Calabria Airport,15.6515998840332,38.0712013244629 +Trapani / Birgi Airport,12.4879999160767,37.9113998413086 +Alghero / Fertilia Airport,8.29076957702637,40.6320991516113 +Cagliari / Elmas Airport,9.05428028106689,39.2514991760254 +Olbia / Costa Smeralda Airport,9.51762962341309,40.8987007141113 +Tortoli' / Arbatax Airport,9.68297958374023,39.9188003540039 +Malpensa International Airport,8.72811031342,45.6305999756 +Bergamo / Orio Al Serio Airport,9.70417022705078,45.673900604248 +Torino / Caselle International Airport,7.64963006973,45.2008018494 +Villanova D'Albenga International Airport,8.12742996216,44.0505981445 +Genova / Sestri Cristoforo Colombo Airport,8.83749961853027,44.4132995605469 +Linate Airport,9.27674007416,45.445098877 +Parma Airport,10.2964000701904,44.8245010375977 +Aosta Airport,7.36872005463,45.7384986877 +Cuneo / Levaldigi Airport,7.62321996689,44.547000885 +Bolzano Airport,11.3263998031616,46.4602012634277 +Bologna / Borgo Panigale Airport,11.2887001037598,44.535400390625 +Treviso / Sant'Angelo Airport,12.1943998336792,45.6483993530273 +Forlì Airport,12.0700998306,44.1948013306 +Brescia / Montichiari Airport,10.3305997848511,45.4289016723633 +Trieste / Ronchi Dei Legionari,13.4722003936768,45.8274993896484 +Rimini / Miramare - Federico Fellini International Airport,12.6117000579834,44.0203018188477 +Verona / Villafranca Airport,10.888500213623,45.3956985473633 +Ancona / Falconara Airport,13.3622999191284,43.6162986755371 +Venezia / Tessera - Marco Polo Airport,12.3519001007,45.5052986145 +Ciampino Airport,12.5949001312256,41.7994003295898 +Leonardo Da Vinci (Fiumicino) International Airport,12.2508001328,41.8045005798 +Salerno / Pontecagnano Airport,14.9112997055054,40.6203994750977 +Marina Di Campo Airport,10.2393999099731,42.7602996826172 +Nápoli / Capodichino International Airport,14.2908000946045,40.8860015869141 +Pisa / San Giusto - Galileo Galilei International Airport,10.3927001953125,43.6838989257812 +Firenze / Peretola Airport,11.2051000595093,43.810001373291 +Perugia / San Egidio Airport,12.5131998062134,43.0959014892578 +Ljubljana Jože Pučnik Airport,14.4575996398926,46.2237014770508 +Maribor Airport,15.6861000061035,46.4799003601074 +Karlovy Vary International Airport,12.914999961853,50.2029991149902 +Ostrava Leos Janáček Airport,18.1110992431641,49.6963005065918 +Pardubice Airport,15.7385997772217,50.0134010314941 +Ruzyně International Airport,14.2600002288818,50.1007995605469 +Brno-Tuřany Airport,16.6944007873535,49.1512985229492 +Ben Gurion International Airport,34.8866996765137,32.0113983154297 +Eilat Airport,34.9600982666016,29.56130027771 +Haifa International Airport,35.043098449707,32.809398651123 +Ben Ya'akov Airport,35.5718994140625,32.9809989929199 +Ovda International Airport,34.9357986450195,29.940299987793 +Sde Dov Airport,34.7821998596191,32.1147003173828 +Malta International Airport,14.4775,35.857498 +Graz Airport,15.4395999908447,46.9911003112793 +Innsbruck Airport,11.3439998627,47.2602005005 +Klagenfurt Airport,14.3376998901,46.6425018311 +Linz Airport,14.1875,48.2332000732422 +Salzburg Airport,13.0043001175,47.7933006287 +Vienna International Airport,16.5697002410889,48.1102981567383 +Santa Maria Airport,-25.1706008911133,36.9714012145996 +Flores Airport,-31.1313991546631,39.4552993774414 +Faro Airport,-7.96590995789,37.0144004822 +Graciosa Airport,-28.0298004150391,39.0922012329102 +Horta Airport,-28.7159004211426,38.5199012756348 +Lajes Field,-27.0907993317,38.7617988586 +Madeira Airport,-16.7744998931885,32.6978988647461 +João Paulo II Airport,-25.6979007721,37.7411994934 +Francisco de Sá Carneiro Airport,-8.68138980865,41.2481002808 +Porto Santo Airport,-16.3500003815,33.0733985901 +Lisbon Portela Airport,-9.13591957092,38.7812995911 +São Jorge Airport,-28.1758003234863,38.6655006408691 +Banja Luka International Airport,17.2975006103516,44.9413986206055 +Mostar International Airport,17.8458995819092,43.282901763916 +Sarajevo International Airport,18.3314990997314,43.8246002197266 +Arad International Airport,21.261999130249,46.1766014099121 +Bacău Airport,26.9102993011475,46.521900177002 +Tautii Magheraus Airport,23.4699993133545,47.6584014892578 +Băneasa International Airport,26.1021003723145,44.5032005310059 +Mihail Kogălniceanu International Airport,28.4883003234863,44.3622016906738 +Cluj-Napoca International Airport,23.6861991882324,46.7851982116699 +Iaşi Airport,27.6205997467041,47.1785011291504 +Oradea International Airport,21.9025001525879,47.0252990722656 +Henri Coandă International Airport,26.1021995544434,44.5722007751465 +Sibiu International Airport,24.0912990570068,45.7855987548828 +Satu Mare Airport,22.8857002258301,47.7033004760742 +Suceava Stefan cel Mare Airport,26.3540992736816,47.6875 +Transilvania Târgu Mureş International Airport,24.4125003814697,46.467700958252 +Timişoara Traian Vuia Airport,21.3379001617432,45.8098983764648 +Geneva Cointrin International Airport,6.10895013809204,46.2380981445312 +Lugano Airport,8.9105796814,46.0042991638 +Bern Belp Airport,7.49714994431,46.914100647 +Zürich Airport,8.54916954040527,47.4646987915039 +St Gallen Altenrhein Airport,9.56077003479,47.4850006104 +Esenboğa International Airport,32.995098114,40.1281013489 +Adana Airport,35.2803993225,36.9822006226 +Antalya International Airport,30.800500869751,36.8987007141113 +Gaziantep International Airport,37.4786987305,36.9472007751 +Konya Airport,32.5619010925,37.9790000916 +Amasya Merzifon Airport,35.5219993591,40.8293991089 +Sivas Airport,36.9034996032715,39.8138008117676 +Malatya Erhaç Airport,38.0909996033,38.4352989197 +Kayseri Erkilet Airport,35.4953994751,38.770401001 +Tokat Airport,36.3674087524414,40.307430267334 +Çardak Airport,29.7012996674,37.7855987549 +Atatürk International Airport,28.8145999908,40.9768981934 +Balıkesir Merkez Airport,27.9260005950928,39.6193008422852 +Çanakkale Airport,26.4267997742,40.1376991272 +Adnan Menderes International Airport,27.156999588,38.2924003601 +Bursa Yenişehir Airport,29.5625991821,40.2551994324 +Dalaman International Airport,28.7924995422,36.7131004333 +Tekirdağ Çorlu Airport,27.9190998077393,41.1381988525391 +Anadolu University Airport,30.5193996429,39.8098983765 +Elazığ Airport,39.2914009094,38.6068992615 +Diyarbakir Airport,40.2010002136,37.893901825 +Erzincan Airport,39.5270004272,39.7102012634 +Erzurum International Airport,41.1702003479,39.9565010071 +Kars Airport,43.1150016784668,40.562198638916 +Trabzon International Airport,39.7896995544434,40.9950981140137 +Şanlıurfa Airport,38.8470993041992,37.0942993164062 +Van Ferit Melen Airport,43.3322982788086,38.4682006835938 +Batman Airport,41.1166000366,37.9290008545 +Muş Airport,41.6612014770508,38.7477989196777 +Kahramanmaraş Airport,36.9535217285,37.5388259888 +Ağrı Airport,43.0259780883789,39.654541015625 +Adıyaman Airport,38.4688987732,37.7313995361 +Mardin Airport,40.6316986084,37.2233009338 +Şanlıurfa GAP Airport,38.8955917358398,37.4456634521484 +Hatay Airport,36.2822227478,36.36277771 +Süleyman Demirel International Airport,30.3684005737,37.8554000854 +Balıkesir Körfez Airport,27.0137996674,39.554599762 +Milas Bodrum International Airport,27.6643009186,37.2505989075 +Samsun Çarşamba Airport,36.5671005249,41.2545013428 +Sabiha Gökçen International Airport,29.3092002869,40.898601532 +Gazipaşa Airport,32.3005981445,36.2992172241 +Chişinău International Airport,28.9309997558594,46.9277000427246 +Ohrid St. Paul the Apostle Airport,20.7423000335693,41.1800003051758 +Skopje Alexander the Great Airport,21.6214008331299,41.9616012573242 +Gibraltar Airport,-5.34965991974,36.1511993408 +Belgrade Nikola Tesla Airport,20.3090991974,44.8184013367 +Nis Airport,21.853701,43.337299 +Podgorica Airport,19.2518997192383,42.3594017028809 +Tivat Airport,18.7233009338379,42.4047012329102 +M. R. Štefánik Airport,17.2126998901367,48.1702003479004 +Košice Airport,21.2411003112793,48.6631011962891 +Sliač Airport,19.1340999603271,48.6377983093262 +Poprad-Tatry Airport,20.2411003113,49.073600769 +Žilina Airport,18.6135005951,49.2314987183 +JAGS McCartney International Airport,-71.1423034667969,21.4444999694824 +North Caicos Airport,-71.9395980834961,21.9174995422363 +Providenciales Airport,-72.2658996582031,21.7735996246338 +South Caicos Airport,-71.528503418,21.5156993866 +Bălţi City Airport,27.9575004577637,47.7743988037109 +Maria Montez International Airport,-71.1203994750977,18.2514991760254 +Samaná El Catey International Airport,-69.7419967651,19.2670001984 +La Isabela International Airport,-69.9856033325195,18.5725002288818 +Casa De Campo International Airport,-68.9117965698242,18.4507007598877 +Punta Cana International Airport,-68.3634033203,18.5673999786 +Gregorio Luperon International Airport,-70.5699996948242,19.7579002380371 +Las Américas International Airport,-69.6688995361328,18.4297008514404 +Cibao International Airport,-70.6046981811523,19.406099319458 +La Aurora Airport,-90.5274963378906,14.5832996368408 +Puerto Barrios Airport,-88.5838012695312,15.730899810791 +San José Airport,-90.8358001709,13.9362001419 +Mundo Maya International Airport,-89.8664016723633,16.9137992858887 +Goloson International Airport,-86.8529968261719,15.7425003051758 +Ramón Villeda Morales International Airport,-87.9235992431641,15.4525995254517 +Juan Manuel Galvez International Airport,-86.5230026245117,16.3167991638184 +Toncontín International Airport,-87.2172012329102,14.0608997344971 +Boscobel Aerodrome,-76.9690017700195,18.4041996002197 +Norman Manley International Airport,-76.7874984741211,17.9356994628906 +Sangster International Airport,-77.9133987426758,18.5037002563477 +Tinson Pen Airport,-76.8237991333008,17.9885997772217 +General Juan N Alvarez International Airport,-99.7539978027344,16.7570991516113 +Jesus Teran International Airport,-102.318000793,21.7056007385 +Bahías de Huatulco International Airport,-96.2626037597656,15.7753000259399 +General Mariano Matamoros Airport,-99.2612991333008,18.8348007202148 +Ciudad del Carmen International Airport,-91.7990036010742,18.6536998748779 +Federal de Bachigualato International Airport,-107.474998474,24.7644996643 +Chetumal International Airport,-88.3267974853516,18.5046997070312 +Ciudad Obregón International Airport,-109.833000183105,27.392599105835 +Ingeniero Alberto Acuña Ongay International Airport,-90.5002975464,19.8167991638 +Abraham González International Airport,-106.429000854492,31.636100769043 +General Roberto Fierro Villalobos International Airport,-105.964996338,28.7028999329 +General Pedro Jose Mendez International Airport,-98.9564971924,23.7033004761 +Captain Rogelio Castillo National Airport,-100.887001037598,20.5459995269775 +Cozumel International Airport,-86.9255981445312,20.5223999023438 +Ciudad Constitución Airport,-111.61499786377,25.0538005828857 +General Guadalupe Victoria International Airport,-104.527999878,24.1242008209 +Amado Nervo National Airport,-104.843002319336,21.4195003509521 +Don Miguel Hidalgo Y Costilla International Airport,-103.310997009277,20.5217990875244 +General José María Yáñez International Airport,-110.925003051758,27.9689998626709 +General Ignacio P. Garcia International Airport,-111.047996521,29.0958995819 +Lic. Miguel de la Madrid Airport,-103.577003479,19.2770004272 +Plan De Guadalupe International Airport,-100.929000854492,25.5494995117188 +El Lencero Airport,-96.7975006104,19.4750995636 +Lázaro Cárdenas Airport,-102.221000671,18.0016994476 +Valle del Fuerte International Airport,-109.081001282,25.6851997375 +Del Bajío International Airport,-101.481002808,20.9934997559 +Manuel Márquez de León International Airport,-110.361999512,24.0727005005 +Loreto International Airport,-111.347999572754,25.989200592041 +General Servando Canales International Airport,-97.5252990723,25.7698993683 +Licenciado Manuel Crescencio Rejon Int Airport,-89.657699585,20.9370002747 +General Rodolfo Sánchez Taboada International Airport,-115.241996765,32.6305999756 +General Francisco J. Mujica International Airport,-101.025001526,19.849899292 +Minatitlán/Coatzacoalcos National Airport,-94.5807037354,18.1033992767 +Monclova International Airport,-101.470001220703,26.9556999206543 +Licenciado Benito Juarez International Airport,-99.0720977783203,19.43630027771 +General Mariano Escobedo International Airport,-100.107002258,25.7784996033 +General Rafael Buelna International Airport,-106.26599884,23.1613998413 +Quetzalcóatl International Airport,-99.5705032349,27.4438991547 +Xoxocotlán International Airport,-96.726600647,16.9999008179 +El Tajín National Airport,-97.4608001709,20.6026992798 +Hermanos Serdán International Airport,-98.3713989258,19.1581001282 +Piedras Negras International Airport,-100.535003662109,28.6273994445801 +Licenciado y General Ignacio Lopez Rayon Airport,-102.039001464844,19.3966999053955 +Licenciado Gustavo Díaz Ordaz International Airport,-105.253997802734,20.6800994873047 +Puerto Escondido International Airport,-97.0891036987,15.8768997192 +Querétaro Intercontinental Airport,-100.185997009,20.6173000336 +General Lucio Blanco International Airport,-98.2285003662,26.0088996887 +Los Cabos International Airport,-109.721000671387,23.1518001556396 +Ponciano Arriaga International Airport,-100.930999756,22.2542991638 +Francisco Sarabia International Airport,-103.411003113,25.5683002472 +Angel Albino Corzo International Airport,-93.0224990845,16.5636005402 +General Abelardo L. Rodríguez International Airport,-116.970001220703,32.5410995483398 +General Francisco Javier Mina International Airport,-97.8658981323,22.2964000702 +Licenciado Adolfo Lopez Mateos International Airport,-99.5660018921,19.3370990753 +Tapachula International Airport,-92.3700027466,14.7943000793 +Cancún International Airport,-86.8770980835,21.0365009308 +Carlos Rovirosa Pérez International Airport,-92.8173980712891,17.9969997406006 +General Heriberto Jara International Airport,-96.1873016357,19.1459007263 +General Leobardo C. Ruiz International Airport,-102.68699646,22.8971004486 +Ixtapa Zihuatanejo International Airport,-101.460998535,17.601600647 +Playa De Oro International Airport,-104.558998108,19.1448001862 +Bluefields Airport,-83.7741012573242,11.9910001754761 +Augusto C. Sandino (Managua) International Airport,-86.1681976318359,12.1415004730225 +Puerto Cabezas Airport,-83.3867034912109,14.0472002029419 +Bocas Del Toro International Airport,-82.2508010864258,9.34084987640381 +Alonso Valderrama Airport,-80.4096984863281,7.98784017562866 +Cap Manuel Niño International Airport,-82.5167999267578,9.45864009857178 +Enrique Malek International Airport,-82.4349975585938,8.39099979400635 +Enrique Adolfo Jimenez Airport,-79.8674011230469,9.35663986206055 +Marcos A. Gelabert International Airport,-79.5556030273438,8.97334003448486 +Tocumen International Airport,-79.3834991455,9.0713596344 +Aerotortuguero Airport,-83.5148010253906,10.5690002441406 +Barra del Colorado Airport,-83.5856018066406,10.7686996459961 +Coto 47 Airport,-82.9685974121094,8.60155963897705 +Golfito Airport,-83.1821975708008,8.65400981903076 +Daniel Oduber Quiros International Airport,-85.5444030761719,10.5932998657227 +Limon International Airport,-83.0220031738281,9.95796012878418 +Nosara Airport,-85.6529998779,9.97649002075 +Juan Santamaria International Airport,-84.2088012695312,9.99386024475098 +Puerto Jimenez Airport,-83.3000030517578,8.53332996368408 +Palmar Sur Airport,-83.4685974121094,8.95102977752686 +Tobias Bolanos International Airport,-84.1398010253906,9.95705032348633 +Quepos Managua Airport,-84.1297988891602,9.44316005706787 +El Salvador International Airport,-89.0557022094727,13.440899848938 +Les Cayes Airport,-73.7882995605469,18.2710990905762 +Cap Haitien International Airport,-72.1947021484375,19.7329998016357 +Jacmel Airport,-72.5185012817383,18.2411003112793 +Jérémie Airport,-74.1703033447266,18.6630992889404 +Toussaint Louverture International Airport,-72.2925033569336,18.5799999237061 +Port-de-Paix Airport,-72.8486022949219,19.9335994720459 +Gustavo Rizo Airport,-74.5062026977539,20.3652992248535 +Carlos Manuel de Cespedes Airport,-76.6213989257812,20.3964004516602 +Maximo Gomez Airport,-78.7895965576172,22.027099609375 +Jardines Del Rey Airport,-78.3283996582,22.4610004425 +Jaime Gonzalez Airport,-80.4141998291016,22.1499996185303 +Vilo Acuna International Airport,-81.5459976196289,21.6165008544922 +Ignacio Agramonte International Airport,-77.8475036621094,21.4202995300293 +Antonio Maceo International Airport,-75.8354034423828,19.9698009490967 +Mariana Grajales Airport,-75.1583023071289,20.0853004455566 +José Martí International Airport,-82.4091033935547,22.989200592041 +Frank Pais International Airport,-76.3151016235352,20.7856006622314 +Sierra Maestra Airport,-77.0892028808594,20.2880992889404 +Rafael Cabrera Airport,-82.7837982177734,21.8346996307373 +Playa Baracoa Airport,-82.5793991089,23.0328006744 +Alberto Delgado Airport,-79.997200012207,21.7882995605469 +Juan Gualberto Gomez International Airport,-81.435302734375,23.0344009399414 +Hermanos Ameijeiras Airport,-76.9357986450195,20.9876003265381 +Gerrard Smith International Airport,-79.8827972412109,19.6870002746582 +Owen Roberts International Airport,-81.3576965332,19.2928009033 +Congo Town Airport,-77.5897979736,24.158700943 +Marsh Harbour International Airport,-77.0835037231,26.5114002228 +San Andros Airport,-78.0490036010742,25.0538005828857 +Spring Point Airport,-73.9709014893,22.4417991638 +Treasure Cay Airport,-77.3912963867,26.745300293 +Chub Cay Airport,-77.8808975219727,25.4171009063721 +South Bimini Airport,-79.2647018433,25.6998996735 +Arthur's Town Airport,-75.6737976074,24.6294002533 +New Bight Airport,-75.4523010253906,24.315299987793 +Colonel Hill Airport,-74.1824035645,22.7455997467 +Exuma International Airport,-75.8779983521,23.5625991821 +North Eleuthera Airport,-76.6835021973,25.474899292 +Governor's Harbour Airport,-76.3310012817,25.2847003937 +Grand Bahama International Airport,-78.695602417,26.5587005615 +Inagua Airport,-73.6669006347656,20.9750003814697 +Deadman's Cay Airport,-75.0935974121,23.1790008545 +Stella Maris Airport,-75.2686214447,23.5823168043 +Mayaguana Airport,-73.0134963989,22.3794994354 +Lynden Pindling International Airport,-77.4662017822,25.0389995575 +San Salvador Airport,-74.5240020751953,24.0632991790771 +Philip S. W. Goldson International Airport,-88.3081970214844,17.5391006469727 +Changbaishan Airport,127.602222222,42.0669444444 +Rarotonga International Airport,-159.805999756,-21.2026996613 +Nadi International Airport,177.442993164062,-17.7553997039795 +Nausori International Airport,178.559005737305,-18.0433006286621 +Labasa Airport,179.339996337891,-16.4666996002197 +Fua'amotu International Airport,-175.149993896484,-21.2411994934082 +Lifuka Island Airport,-174.341003417969,-19.7770004272461 +Vava'u International Airport,-173.962005615234,-18.5853004455566 +Gombe Lawanti International Airport,10.8963888889,10.2983333333 +Warri Airport,5.81778001785278,5.59610986709595 +Funafuti International Airport,179.195999,-8.525 +Bonriki International Airport,173.147003173828,1.38163995742798 +Niue International Airport,-169.925598144531,-19.0790309906006 +Pointe Vele Airport,-178.065994263,-14.3114004135 +Hihifo Airport,-176.199005127,-13.2383003235 +Faleolo International Airport,-172.007995605469,-13.8299999237061 +Pago Pago International Airport,-170.710006714,-14.3310003281 +Faa'a International Airport,-149.606994629,-17.5536994934 +Rurutu Airport,-151.360992431641,-22.4340991973877 +Tubuai Airport,-149.524002075195,-23.3654003143311 +Anaa Airport,-145.509994506836,-17.3526000976562 +Tikehau Airport,-148.231002807617,-15.1196002960205 +Fakarava Airport,-145.656997680664,-16.0541000366211 +Manihi Airport,-146.070007324219,-14.4368000030518 +Totegegie Airport,-134.889999389648,-23.0799007415771 +Kaukura Airport,-146.884994506836,-15.6632995605469 +Makemo Airport,-143.658004760742,-16.5839004516602 +Takapoto Airport,-145.246002197266,-14.7095003128052 +Arutua Airport,-146.617004394531,-15.2482995986938 +Mataiva Airport,-148.716995239258,-14.8681001663208 +Ahe Airport,-146.25700378418,-14.4280996322632 +Takaroa Airport,-145.024993896484,-14.4558000564575 +Nuku Hiva Airport,-140.22900390625,-8.79559993743896 +Hiva Oa-Atuona Airport,-139.011001586914,-9.76879024505615 +Bora Bora Airport,-151.751007080078,-16.4444007873535 +Rangiroa Airport,-147.660995483398,-14.9542999267578 +Huahine-Fare Airport,-151.022003173828,-16.6872005462646 +Moorea Airport,-149.761993408203,-17.4899997711182 +Hao Airport,-140.945999145508,-18.074800491333 +Maupiti Airport,-152.244003295898,-16.4265003204346 +Raiatea Airport,-151.466003417969,-16.722900390625 +Gaua Island Airport,167.587005615,-14.2180995941 +Santo Pekoa International Airport,167.220001221,-15.5050001144 +Port Vila Bauerfield Airport,168.320007324219,-17.6993007659912 +Tanna Airport,169.223999023438,-19.455099105835 +Tiga Airport,167.804000854492,-21.0960998535156 +Île Art - Waala Airport,163.660995483398,-19.7206001281738 +Koné Airport,164.837005615234,-21.0543003082275 +Île des Pins Airport,167.455993652344,-22.5888996124268 +Koumac Airport,164.255996704102,-20.5463008880615 +Lifou Airport,167.240005493164,-20.7747993469238 +Nouméa Magenta Airport,166.473007202148,-22.25830078125 +Maré Airport,168.037994384766,-21.4817008972168 +Touho Airport,165.259002685547,-20.7900009155273 +Ouvéa Airport,166.572998046875,-20.6406002044678 +La Tontouta International Airport,166.212997436523,-22.0146007537842 +Auckland International Airport,174.792007446,-37.0080986023 +Taupo Airport,176.083999633789,-38.7397003173828 +Christchurch International Airport,172.531997680664,-43.4893989562988 +Chatham Islands-Tuuta Airport,-176.457000732422,-43.810001373291 +Dunedin Airport,170.197998046875,-45.9281005859375 +Gisborne Airport,177.977996826172,-38.6632995605469 +Hokitika Airfield,170.985000610352,-42.7136001586914 +Hamilton International Airport,175.332000732,-37.8666992188 +Kerikeri Airport,173.912002563477,-35.2627983093262 +Kaitaia Airport,173.285003662109,-35.0699996948242 +New Plymouth Airport,174.179000854492,-39.0085983276367 +Napier Airport,176.869995117188,-39.4658012390137 +Nelson Airport,173.220993041992,-41.2983016967773 +Invercargill Airport,168.313003540039,-46.4123992919922 +Oamaru Airport,171.082000732422,-44.9700012207031 +Palmerston North Airport,175.617004394531,-40.3205986022949 +Queenstown International Airport,168.738998413,-45.0210990906 +Rotorua Regional Airport,176.317001342773,-38.1091995239258 +Tauranga Airport,176.195999145508,-37.6719017028809 +Timaru Airport,171.225006103516,-44.3027992248535 +Woodbourne Airport,173.869995117188,-41.5182991027832 +Wanaka Airport,169.246002197266,-44.7221984863281 +Whakatane Airport,176.914001464844,-37.9206008911133 +Wellington International Airport,174.804992676,-41.3272018433 +Whangarei Airport,174.365005493164,-35.7682991027832 +Westport Airport,171.580993652344,-41.7380981445312 +Wanganui Airport,175.024993896484,-39.9622001647949 +Herat Airport,62.2282981872559,34.2099990844727 +Kabul International Airport,69.2123031616211,34.5658988952637 +Mazar I Sharif Airport,67.2097015380859,36.706901550293 +Bahrain International Airport,50.6335983276367,26.2707996368408 +Abha Regional Airport,42.6566009521,18.2404003143 +Al Ahsa Airport,49.4851989746094,25.2852993011475 +Al Baha Airport,41.6343002319,20.2961006165 +Bisha Airport,42.6208992004395,19.9843997955322 +King Fahd International Airport,49.7979011535645,26.4712009429932 +Dawadmi Domestic Airport,44.4000015258789,24.5 +Jizan Regional Airport,42.5858001708984,16.9011001586914 +Gassim Airport,43.7743988037109,26.3027992248535 +Guriat Domestic Airport,37.2794990539551,31.4118995666504 +Hail Airport,41.6862983703613,27.4379005432129 +King Abdulaziz International Airport,39.15650177,21.679599762 +King Khaled Military City Airport,45.5281982422,27.9008998871 +Prince Mohammad Bin Abdulaziz Airport,39.7051010131836,24.5534000396729 +Nejran Airport,44.4192008972168,17.611400604248 +Hafr Al Batin Airport,46.1250991821,28.3351993561 +Rafha Domestic Airport,43.4906005859375,29.6263999938965 +King Khaled International Airport,46.6987991333008,24.9575996398926 +Arar Domestic Airport,41.1381988525391,30.9066009521484 +Sharurah Airport,47.1213989257812,17.4668998718262 +Al-Jawf Domestic Airport,40.0999984741211,29.7851009368896 +Tabuk Airport,36.6189002990723,28.3654003143311 +Taif Airport,40.5443000793457,21.4834003448486 +Turaif Domestic Airport,38.731201171875,31.692699432373 +Wadi Al Dawasir Airport,45.1996002197,20.5042991638 +Al Wajh Domestic Airport,36.4763984680176,26.198600769043 +Yenbo Airport,38.0634002685547,24.1441993713379 +Gu-Lian Airport,122.43,52.9127777778 +Abadan Airport,48.2282981873,30.371099472 +Mahshahr Airport,49.1519012451172,30.5562000274658 +Ahwaz Airport,48.7620010376,31.3374004364 +Bushehr Airport,50.8345985413,28.9447994232 +Kish International Airport,53.9802017212,26.5261993408 +Bandar Lengeh Airport,54.824798584,26.531999588 +Shahid Ashrafi Esfahani Airport,47.1581001282,34.3459014893 +Khoram Abad Airport,48.282901763916,33.4353981018066 +Sanandaj Airport,47.0092010498047,35.2458992004395 +Esfahan Shahid Beheshti International Airport,51.8613014221191,32.7508010864258 +Sardar-e-Jangal Airport,49.617778,37.323333 +Imam Khomeini International Airport,51.1521987915039,35.4160995483398 +Mehrabad International Airport,51.3134002685547,35.6892013549805 +Bandar Abbas International Airport,56.377799987793,27.2182998657227 +Kerman Airport,56.9510993958,30.2744007111 +Bam Airport,58.4500007629395,29.0841999053955 +Rafsanjan Airport,56.0511016845703,30.297700881958 +Birjand Airport,59.2661018371582,32.8981018066406 +Mashhad International Airport,59.640998840332,36.2351989746094 +Bojnord Airport,57.3082008361816,37.4930000305176 +Sabzevar National Airport,57.5951995849609,36.168098449707 +Noshahr Airport,51.4646987915039,36.6632995605469 +Ramsar Airport,50.6795997619629,36.9099006652832 +Dasht-e Naz Airport,53.1935997009,36.635799408 +Lar Airport,54.3833007812,27.6746997833 +Shiraz Shahid Dastghaib International Airport,52.5898017883301,29.5391998291016 +Ardabil Airport,48.4244003296,38.3256988525 +Urmia Airport,45.0686988831,37.6680984497 +Tabriz International Airport,46.2350006103516,38.1338996887207 +Shahid Sadooghi Airport,54.2765007019,31.9048995972 +Konarak Airport,60.3820991516,25.4433002472 +Zahedan International Airport,60.9062004089355,29.475700378418 +Queen Alia International Airport,35.9931983948,31.7226009369 +Amman-Marka International Airport,35.9916000366211,31.9727001190186 +Aqaba King Hussein International Airport,35.0181007385254,29.6116008758545 +Kuwait International Airport,47.9688987731934,29.2266006469727 +Beirut Rafic Hariri International Airport,35.4883995056152,33.8208999633789 +Al Duqm International Airport (Under Construction),57.6344444444,19.5022222222 +Abu Dhabi International Airport,54.6511001586914,24.4330005645752 +Al Ain International Airport,55.6091995239258,24.2616996765137 +Dubai International Airport,55.3643989563,25.2527999878 +Fujairah International Airport,56.3240013122559,25.1121997833252 +Ras Al Khaimah International Airport,55.9388008117676,25.6135005950928 +Sharjah International Airport,55.5172004699707,25.3285999298096 +Khasab Air Base,56.2406005859375,26.1709995269775 +Muscat International Airport,58.2844009399414,23.5932998657227 +Salalah Airport,54.0913009643555,17.0387001037598 +Bahawalpur Airport,71.7180023193359,29.3481006622314 +Chitral Airport,71.8005981445312,35.8866004943848 +Dera Ghazi Khan Airport,70.4859008789062,29.9610004425049 +Dera Ismael Khan Airport,70.896598815918,31.9094009399414 +Faisalabad International Airport,72.9947967529297,31.3649997711182 +Gwadar International Airport,62.3294982910156,25.2332992553711 +Gilgit Airport,74.3336029052734,35.9188003540039 +Jinnah International Airport,67.1607971191406,24.9064998626709 +Alama Iqbal International Airport,74.4036026000977,31.5216007232666 +Muzaffarabad Airport,73.5085983276367,34.3390007019043 +Moenjodaro Airport,68.1430969238281,27.3351993560791 +Multan International Airport,71.4190979003906,30.2031993865967 +Nawabshah Airport,68.3900985717773,26.2194004058838 +Panjgur Airport,64.1324996948242,26.9545001983643 +Pasni Airport,63.345100402832,25.2905006408691 +Peshawar International Airport,71.5146026611328,33.9939002990723 +Quetta International Airport,66.9377975463867,30.2513999938965 +Shaikh Zaid Airport,70.2796020507812,28.3838996887207 +Benazir Bhutto International Airport,73.0991973876953,33.61669921875 +Rawalakot Airport,73.7981033325195,33.8497009277344 +Skardu Airport,75.536003112793,35.3354988098145 +Sukkur Airport,68.7917022705078,27.7220001220703 +Sehwan Sharif Airport,67.7172012329102,26.4731006622314 +Saidu Sharif Airport,72.3527984619141,34.8135986328125 +Sialkot Airport,74.3638916016,32.5355567932 +Turbat International Airport,63.030200958252,25.986400604248 +Zhob Airport,69.4636001586914,31.3584003448486 +Baghdad International Airport,44.2346000671,33.2625007629 +Erbil International Airport,43.9631996154785,36.2375984191895 +Basrah International Airport,47.6621017456055,30.5491008758545 +Sulaymaniyah International Airport,45.3167381287,35.5617485046 +Aleppo International Airport,37.2243995666504,36.1806983947754 +Damascus International Airport,36.5155982971191,33.4114990234375 +Deir ez-Zor Airport,40.1759986877441,35.285400390625 +Kamishly Airport,41.1913986206055,37.0205993652344 +Bassel Al-Assad International Airport,35.9486999511719,35.4011001586914 +Doha International Airport,51.5651016235,25.261100769 +Aden International Airport,45.0288009643555,12.8295001983643 +Al Ghaidah International Airport,52.1749992370605,16.1916999816895 +Hodeidah International Airport,42.9762992858887,14.7530002593994 +Mukalla International Airport,49.375,14.6625995635986 +Sana'a International Airport,44.2196998596191,15.476300239563 +Socotra International Airport,53.9057998657227,12.6307001113892 +Sayun International Airport,48.7882995605,15.9660997391 +Ta'izz International Airport,44.1390991211,13.6859998703 +Bethel Airport,-161.8379974,60.77980042 +Wiley Post Will Rogers Memorial Airport,-156.766006469727,71.285400390625 +Merle K (Mudhole) Smith Airport,-145.4779968,60.4917984 +Adak Airport,-176.64599609375,51.8779983520508 +Dillingham Airport,-158.5050049,59.04470062 +Kodiak Airport,-152.4940033,57.75 +Unalaska Airport,-166.544006347656,53.9001007080078 +Emmonak Airport,-164.4909973,62.78609848 +Fairbanks International Airport,-147.8560028,64.81510162 +Gustavus Airport,-135.7070007,58.4253006 +Holy Cross Airport,-159.774993896484,62.1883010864258 +Haines Airport,-135.524002075195,59.2438011169434 +Egegik Airport,-157.375,58.1855010986 +Juneau International Airport,-134.57600402832,58.3549995422363 +King Salmon Airport,-156.6490021,58.67679977 +Ketchikan International Airport,-131.7140045,55.35559845 +McGrath Airport,-155.6060028,62.95289993 +Ted Stevens Anchorage International Airport,-149.996002197266,61.1744003295898 +Aniak Airport,-159.542999267578,61.581600189209 +Annette Island Airport,-131.572006225586,55.0424003601074 +Nome Airport,-165.445007324219,64.5121994018555 +Ralph Wien Memorial Airport,-162.598999,66.88469696 +Petersburg James A Johnson Airport,-132.9450073,56.80170059 +Deadhorse Airport,-148.4649963,70.19470215 +Sitka Rocky Gutierrez Airport,-135.361999511719,57.0471000671387 +Wrangell Airport,-132.3699951,56.48429871 +Yakutat Airport,-139.660003662,59.5032997131 +Balimo Airport,142.932998657,-8.05000019073 +Baimuru Airport,144.819900513,-7.49686002731 +Rota International Airport,145.24299621582,14.1743001937866 +Francisco C. Ada Saipan International Airport,145.72900390625,15.1190004348755 +Antonio B. Won Pat International Airport,144.796005249,13.4834003448 +Laguindingan Airport,124.456496,8.612203 +Hana Airport,-156.014007568359,20.7956008911133 +Kapalua Airport,-156.673004150391,20.9629001617432 +Kona International At Keahole Airport,-156.046005249023,19.7388000488281 +Lihue Airport,-159.339004516602,21.9759998321533 +Molokai Airport,-157.095993041992,21.1529006958008 +Waimea Kohala Airport,-155.667999267578,20.0013008117676 +Honolulu International Airport,-157.921997070312,21.3187007904053 +Lanai Airport,-156.95100402832,20.7856006622314 +Kahului Airport,-156.429992675781,20.8985996246338 +Hilo International Airport,-155.048004150391,19.721399307251 +Marshall Islands International Airport,171.272003173828,7.06476020812988 +Kaieteur International Airport,-59.4914817810059,5.17275476455688 +Bucholz Army Air Field,167.731994628906,8.72012042999268 +Cassidy International Airport,-157.350006103516,1.98616003990173 +Michael Gonzalez Airport,-66.7568969727,18.1802005768 +Chuuk International Airport,151.843002319336,7.46187019348145 +Pohnpei International Airport,158.208999633789,6.98509979248047 +Kosrae International Airport,162.957992554,5.35697984695 +Yap International Airport,138.082992553711,9.49890995025635 +New Doha International Airport,51.6130828857422,25.2620449066162 +Kinmen Airport,118.359001159668,24.4279003143311 +Matsu Nangan Airport,119.958000183105,26.1597995758057 +Taitung Airport,121.101997375488,22.7549991607666 +Kaohsiung International Airport,120.349998474121,22.5771007537842 +Chiayi Airport,120.392997741699,23.461799621582 +Hengchun Airport,120.730003356934,22.0410995483398 +Lanyu Airport,121.535003662109,22.0270004272461 +Taichung Ching Chuang Kang Airport,120.621002197266,24.2646999359131 +Matsu Beigan Airport,120.002998352051,26.2241992950439 +Tainan Airport,120.206001281738,22.9503993988037 +Makung Airport,119.627998352051,23.5687007904053 +Pingtung North Airport,120.482002258301,22.7001991271973 +Taipei Songshan Airport,121.552001953125,25.0694007873535 +Taiwan Taoyuan International Airport,121.233001708984,25.0776996612549 +Hualien Airport,121.61799621582,24.023099899292 +Narita International Airport,140.386001586914,35.7647018432617 +Matsumoto Airport,137.923004150391,36.1668014526367 +Hyakuri Airport,140.414993286,36.181098938 +Kansai International Airport,135.244003295898,34.4272994995117 +Nanki Shirahama Airport,135.363998413,33.6622009277 +Kobe Airport,135.223999023438,34.6328010559082 +Tokachi-Obihiro Airport,143.216995239,42.7332992554 +New Chitose Airport,141.692001342773,42.7751998901367 +Hakodate Airport,140.822006226,41.7700004578 +Kushiro Airport,144.192993164,43.0410003662 +Memanbetsu Airport,144.164001465,43.8805999756 +Nakashibetsu Airport,144.960006714,43.5774993896 +Okadama Airport,141.380004882812,43.1161003112793 +Wakkanai Airport,141.800994873,45.4042015076 +Iki Airport,129.785003662,33.7490005493 +Yamaguchi Ube Airport,131.279006958,33.9300003052 +Tsushima Airport,129.330993652,34.2849006653 +Monbetsu Airport,143.404006958,44.3039016724 +Asahikawa Airport,142.447006225586,43.6707992553711 +Okushiri Airport,139.432998657,42.0717010498 +Rishiri Airport,141.186004639,45.2420005798 +Fukue Airport,128.832992553711,32.6663017272949 +Fukuoka Airport,130.45100402832,33.5858993530273 +New Tanegashima Airport,130.990997314,30.6051006317 +Kagoshima Airport,130.718994140625,31.8034000396729 +Miyazaki Airport,131.449005127,31.877199173 +Oita Airport,131.736999512,33.4794006348 +Kitakyūshū Airport,131.035003662,33.8459014893 +Saga Airport,130.302001953,33.1497001648 +Kumamoto Airport,130.854995727539,32.8372993469238 +Nagasaki Airport,129.914001465,32.9169006348 +Chubu Centrair International Airport,136.804992675781,34.8583984375 +Amami Airport,129.712997436523,28.4305992126465 +Okierabu Airport,128.701004028,27.4255008698 +Kikai Airport,129.927993774,28.3213005066 +Tokunoshima Airport,128.880996704102,27.8363990783691 +Nagoya Airport,136.92399597168,35.2550010681152 +Komatsu Airport,136.406997680664,36.3945999145508 +Oki Airport,133.324996948242,36.1810989379883 +Mt. Fuji Shizuoka Airport,138.18775177,34.7960434679 +Toyama Airport,137.188003540039,36.6483001708984 +Noto Airport,136.962005615,37.2930984497 +Hiroshima Airport,132.919006348,34.4361000061 +Okayama Airport,133.854995728,34.7569007874 +Izumo Airport,132.88999939,35.4136009216 +Miho Yonago Airport,133.235992431641,35.4921989440918 +Kōchi Ryōma Airport,133.669006348,33.5461006165 +Matsuyama Airport,132.699996948242,33.8272018432617 +Osaka International Airport,135.438003540039,34.7854995727539 +Tottori Airport,134.167007446,35.5301017761 +Tokushima Airport,134.606994629,34.1328010559 +Takamatsu Airport,134.01600647,34.2141990662 +Iwami Airport,131.789993286,34.676399231 +Aomori Airport,140.690994262695,40.7346992492676 +Yamagata Airport,140.371002197,38.4118995667 +Sado Airport,138.414001465,38.0601997375 +Fukushima Airport,140.430999755859,37.2274017333984 +Hanamaki Airport,141.134994506836,39.4286003112793 +Akita Airport,140.218994140625,39.6156005859375 +Misawa Air Base,141.367996216,40.7032012939 +Niigata Airport,139.121002197,37.9558982849 +Odate Noshiro Airport,140.371002197,40.1918983459 +Sendai Airport,140.917007446,38.1397018433 +Shonai Airport,139.787002563,38.8121986389 +Chofu Airport,139.52799987793,35.6716995239258 +Hachijojima Airport,139.785995483,33.1150016785 +Oshima Airport,139.36000061,34.7820014954 +Miyakejima Airport,139.559997559,34.073600769 +Tokyo International Airport,139.779998779297,35.5522994995117 +Gwangju Airport,126.808998108,35.1263999939 +Kunsan Air Base,126.615997314453,35.9038009643555 +Yeosu Airport,127.616996765137,34.8423004150391 +Wonju Airport,127.959999084,37.4380989075 +Yangyang International Airport,128.669006347656,38.0612983703613 +Jeju International Airport,126.49299621582,33.5112991333008 +Gimhae International Airport,128.93800354,35.1795005798 +Sacheon Air Base,128.070007324219,35.0885009765625 +Ulsan Airport,129.352005005,35.59349823 +Incheon International Airport,126.450996398926,37.4691009521484 +Gimpo International Airport,126.791000366,37.5583000183 +Pohang Airport,129.419998169,35.9878997803 +Daegu Airport,128.658996582,35.8941001892 +Cheongju International Airport,127.499000549,36.7165985107 +Naha Airport,127.646003723,26.1958007812 +Ishigaki Airport,124.18699646,24.344499588 +Kumejima Airport,126.713996887207,26.3635005950928 +Minami-Daito Airport,131.263000488,25.8465003967 +Miyako Airport,125.294998169,24.7828006744 +Kitadaito Airport,131.32699585,25.9447002411 +Tarama Airport,124.675003052,24.6539001465 +Yoron Airport,128.401992798,27.0440006256 +Yonaguni Airport,122.977996826172,24.4668998718262 +Subic Bay International Airport,120.271003723145,14.7944002151489 +Diosdado Macapagal International Airport,120.559997559,15.1859998703 +Laoag International Airport,120.531997680664,18.1781005859375 +Ninoy Aquino International Airport,121.019996643,14.508600235 +Legazpi City International Airport,123.735,13.1575 +Awang Airport,124.209999084473,7.1652398109436 +Francisco Bangoy International Airport,125.646003723145,7.1255202293396 +Bancasi Airport,125.4788,8.9515 +Dipolog Airport,123.341875076,8.60198349877 +Camiguin Airport,124.707000732422,9.25352001190186 +Jolo Airport,121.011001586914,6.05366992950439 +Sanga Sanga Airport,119.74299621582,5.04698991775513 +Pagadian Airport,123.461179733,7.83073144787 +Tambler Airport,125.096000671,6.05800008774 +Surigao Airport,125.480947495,9.75583832563 +Tandag Airport,126.170997619629,9.07211017608643 +Zamboanga International Airport,122.059997558594,6.92242002487183 +Loakan Airport,120.620002746582,16.3750991821289 +San Jose Airport,121.04699707,12.3614997864 +Naga Airport,123.269996643066,13.5848999023438 +Basco Airport,121.980003357,20.4512996674 +Dr.Juan C. Angara Airport,121.5,15.7298002243 +San Fernando Airport,120.303001403809,16.5956001281738 +Tuguegarao Airport,121.733150482,17.6433676823 +Virac Airport,124.206001281738,13.5763998031616 +Cauayan Airport,121.752998352,16.9298992157 +Daniel Z. Romualdez Airport,125.027999878,11.2276000977 +Bacolod-Silay City International Airport,123.014999389648,10.7763996124268 +Calbayog Airport,124.544998168945,12.072699546814 +Sibulan Airport,123.300003052,9.3337097168 +Godofredo P. Ramos Airport,121.95400238,11.9245004654 +Catarman National Airport,124.636001586914,12.5024003982544 +Iloilo International Airport,122.493358,10.833017 +Moises R. Espinosa Airport,123.628997803,12.3694000244 +Kalibo International Airport,122.375999451,11.679400444 +Mactan Cebu International Airport,123.978996276855,10.3074998855591 +Puerto Princesa Airport,118.759002685547,9.74211978912354 +Roxas Airport,122.751998901367,11.5977001190186 +Tagbilaran Airport,123.852996826172,9.6640796661377 +Romblon Airport,122.084999084,12.3109998703 +Francisco B. Reyes Airport,120.099998474,12.1215000153 +Grozny North Airport,45.698600769043,43.3883018493652 +Yamburg Airport,75.0999984741211,67.9866638183594 +Kostomuksha Airport,30.6870002747,64.6179962158 +General Urquiza Airport,-60.4804,-31.7948 +Islas Malvinas Airport,-60.785,-32.9036 +Sauce Viejo Airport,-60.8117,-31.7117 +Jorge Newbery Airpark,-58.4156,-34.5592 +Ingeniero Ambrosio Taravella Airport,-64.2080001831,-31.323600769 +Ministro Pistarini International Airport,-58.5358,-34.8222 +El Plumerillo Airport,-68.7929000854,-32.8316993713 +Suboficial Ay Santiago Germano Airport,-68.4039001465,-34.5882987976 +Catamarca Airport,-65.751701355,-28.5956001282 +Vicecomodoro Angel D. La Paz Aragonés Airport,-64.3099975586,-27.7655563354 +Capitan V A Almonacid Airport,-66.7957992554,-29.3815994263 +Teniente Benjamin Matienzo Airport,-65.1048965454,-26.8409004211 +Domingo Faustino Sarmiento Airport,-68.4181976318,-31.5715007782 +Brigadier Mayor D Cesar Raul Ojeda Airport,-66.3563995361,-33.2732009888 +Corrientes Airport,-58.7619,-27.4455 +Resistencia International Airport,-59.0561,-27.45 +Formosa Airport,-58.2281,-26.2127 +Cataratas Del Iguazú International Airport,-54.473400116,-25.7373008728 +Libertador Gral D Jose De San Martin Airport,-55.9707,-27.3858 +Martin Miguel De Guemes International Airport,-65.4861984253,-24.8560009003 +Gobernador Horacio Guzman International Airport,-65.0978012085,-24.3927993774 +General Enrique Mosconi Airport,-63.7937011719,-22.619600296 +General E. Mosconi Airport,-67.4655,-45.7853 +Brigadier Antonio Parodi Airport,-71.139503479,-42.908000946 +Las Heras Airport,-68.9653015137,-46.5382995605 +Almirante Marco Andres Zar Airport,-65.2703,-43.2105 +Gobernador Castello Airport,-63.0004,-40.8692 +El Tehuelche Airport,-65.1027,-42.7592 +Puerto Deseado Airport,-65.9041,-47.7353 +Piloto Civil N. Fernández Airport,-69.3126,-51.6089 +Malvinas Argentinas Airport,-68.2958,-54.8433 +Capitan D Daniel Vazquez Airport,-67.8026,-49.3068 +Perito Moreno Airport,-70.9786987305,-46.5378990173 +Santa Cruz Airport,-68.5792,-50.0165 +Comandante Espora Airport,-62.1693,-38.725 +Santa Teresita Airport,-56.7218,-36.5423 +Ástor Piazzola International Airport,-57.5733,-37.9342 +Presidente Peron Airport,-68.1557006836,-38.9490013123 +Necochea Airport,-58.8172,-38.4831 +Santa Rosa Airport,-64.2757034302,-36.5882987976 +San Carlos De Bariloche Airport,-71.1575012207,-41.1511993408 +Aviador C. Campos Airport,-71.137298584,-40.0754013062 +Araraquara Airport,-48.1329994202,-21.8120002747 +Santa Maria Airport,-37.0703010559,-10.984000206 +Alta Floresta Airport,-56.1049995422,-9.8663892746 +Araçatuba Airport,-50.4247016907,-21.1413002014 +Val de Cans/Júlio Cezar Ribeiro International Airport,-48.4762992859,-1.37925004959 +Pampulha - Carlos Drummond de Andrade Airport,-43.9505996704102,-19.8512001037598 +Presidente Juscelino Kubistschek International Airport,-47.9208335876465,-15.8691673278809 +Bauru Airport,-49.0537986755,-22.3449993134 +Atlas Brasil Cantanhede Airport,-60.6922225952,2.84138894081 +Cascavel Airport,-53.5008010864,-25.0002994537 +Tancredo Neves International Airport,-43.9719429016113,-19.6244430541992 +Campo Grande Airport,-54.6725006104,-20.4687004089 +Chapecó Airport,-52.6566009521484,-27.1341991424561 +Carajás Airport,-50.0013885498,-6.11527776718 +Diomício Freitas Airport,-49.4213905334,-28.7244434357 +Bartolomeu Lisandro Airport,-41.301700592,-21.698299408 +Corumbá International Airport,-57.6713905334,-19.0119438171 +Afonso Pena Airport,-49.1758003235,-25.5284996033 +Hugo Cantergiani Regional Airport,-51.1875,-29.1970996857 +Marechal Rondon Airport,-56.1166992188,-15.6528997421 +Cruzeiro do Sul Airport,-72.7695007324,-7.59990978241 +Presidente Prudente Airport,-51.4245986938,-22.1751003265 +Eduardo Gomes International Airport,-60.0497016906738,-3.03860998153687 +Cataratas International Airport,-54.4850006103516,-25.6002788543701 +Hercílio Luz International Airport,-48.5525016784668,-27.6702785491943 +Fernando de Noronha Airport,-32.4233016967773,-3.85492992401123 +Pinto Martins International Airport,-38.532600402832,-3.77627992630005 +Galeão - Antônio Carlos Jobim International Airport,-43.2505569458008,-22.8099994659424 +Santa Genoveva Airport,-49.2206993103027,-16.6319999694824 +Guarulhos - Governador André Franco Montoro International Airport,-46.4730567932129,-23.4355564117432 +Bahia - Jorge Amado Airport,-39.0331993103027,-14.8159999847412 +Prefeito Renato Moreira Airport,-47.4599990844727,-5.53129005432129 +Francisco de Assis Airport,-43.3867988586426,-21.7915000915527 +Presidente Castro Pinto International Airport,-34.9486122131,-7.14583301544 +Lauro Carneiro de Loyola Airport,-48.7974014282227,-26.2245006561279 +Presidente João Suassuna Airport,-35.8964004516602,-7.26991987228394 +Viracopos International Airport,-47.1344985962,-23.0074005127 +Governador José Richa Airport,-51.1301002502,-23.3335990906 +João Correa da Rocha Airport,-49.1380004883,-5.36858987808 +Monte Dourado Airport,-52.6021995544,-0.889838993549 +Macaé Airport,-41.7659988403,-22.343000412 +Regional de Maringá - Sílvio Nane Junior Airport,-52.01222229,-23.4794445038 +Mário Ribeiro Airport,-43.818901062,-16.7068996429 +Marília Airport,-49.926399231,-22.1968994141 +Zumbi dos Palmares Airport,-35.7916984558105,-9.51080989837646 +Alberto Alcolumbre Airport,-51.0722007751,0.0506640002131 +Ministro Victor Konder International Airport,-48.6514015197754,-26.8799991607666 +Santo Ângelo Airport,-54.1691017150879,-28.2817001342773 +Augusto Severo Airport,-35.2476997375,-5.91141986847 +Salgado Filho Airport,-51.1713981628418,-29.9944000244141 +Lauro Kurtz Airport,-52.3265991210938,-28.2439994812012 +Brigadeiro Lysias Rodrigues Airport,-48.3569984436,-10.2915000916 +Senador Nilo Coelho Airport,-40.5690994262695,-9.3624095916748 +Ponta Porã Airport,-55.7025985717773,-22.5496006011963 +Porto Seguro Airport,-39.0808982849121,-16.4386005401611 +Governador Jorge Teixeira de Oliveira Airport,-63.9023017883301,-8.70928955078125 +Vitória da Conquista Airport,-40.8630981445,-14.8627996445 +Plácido de Castro Airport,-67.8980560302734,-9.86888885498047 +Guararapes - Gilberto Freyre International Airport,-34.9235992431641,-8.12648963928223 +Santos Dumont Airport,-43.1631011963,-22.9104995728 +Leite Lopes Airport,-47.776668548584,-21.1363887786865 +Professor Urbano Ernesto Stumpf Airport,-45.861499786377,-23.2292003631592 +Marechal Cunha Machado International Airport,-44.2341003417969,-2.58536005020142 +Santa Maria Airport,-53.6882019042969,-29.7113990783691 +Maestro Wilson Fonseca Airport,-54.785831451416,-2.42472195625305 +Congonhas Airport,-46.6563873291016,-23.6261100769043 +Prof. Eribelto Manoel Reino State Airport,-49.40650177,-20.8166007996 +Deputado Luiz Eduardo Magalhães International Airport,-38.3224983215,-12.9086112976 +Senador Petrônio Portela Airport,-42.8235015869,-5.0599398613 +São Gabriel da Cachoeira Airport,-66.9855,-0.14835 +Ten. Cel. Aviador César Bombonato Airport,-48.2252769470215,-18.8836116790771 +Mário de Almeida Franco Airport,-47.9661102294922,-19.7647228240967 +Eurico de Aguiar Salles Airport,-40.2863883972168,-20.258056640625 +Zona da Mata Regional Airport,-43.1730575562,-21.5130558014 +Chacalluta Airport,-70.3386993408203,-18.3484992980957 +Balmaceda Airport,-71.6894989013672,-45.9160995483398 +El Loa Airport,-68.9036026000977,-22.4981994628906 +Pdte. carlos Ibañez del Campo Airport,-70.8545989990234,-53.0026016235352 +Diego Aracena Airport,-70.1812973022461,-20.5352001190186 +Comodoro Arturo Merino Benítez International Airport,-70.7857971191406,-33.3930015563965 +Ricardo García Posada Airport,-69.7651977539062,-26.3111000061035 +Cerro Moreno Airport,-70.4450988769531,-23.4444999694824 +Carriel Sur Airport,-73.063102722168,-36.7727012634277 +Mataveri Airport,-109.42199707,-27.1648006439 +Cañal Bajo Carlos - Hott Siebert Airport,-73.0609970092773,-40.611198425293 +La Florida Airport,-71.1995010376,-29.9162006378 +Maquehue Airport,-72.6371002197266,-38.7667999267578 +El Tepual Airport,-73.0940017700195,-41.4388999938965 +Pichoy Airport,-73.0860977173,-39.6500015259 +Zona da Mata Regional Airport,-43.1730575562,-21.5130558014 +Francisco De Orellana Airport,-76.9868011474609,-0.46288600564003 +Mariscal Lamar Airport,-78.9843978881836,-2.88947010040283 +Simon Bolivar International Airport,-79.8835983276,-2.15741991997 +Cotopaxi International Airport,-78.6157989502,-0.906832993031 +Coronel E Carvajal Airport,-78.1207962036133,-2.29917001724243 +Eloy Alfaro International Airport,-80.6788024902344,-0.94607800245285 +Nuevo Aeropuerto Internacional Mariscal Sucre,-78.3575,-0.129166666667 +Teniente Coronel Luis a Mantilla Airport,-77.7080993652344,0.809505999088287 +Stanley Airport,-57.7775993347168,-51.6856994628906 +Silvio Pettirossi International Airport,-57.5200004577637,-25.2399997711182 +Guarani International Airport,-54.8400001525879,-25.4599990844727 +Bauru - Arealva Airport,-49.0502866745,-22.1668591409 +El Eden Airport,-75.7664,4.45278 +Tres De Mayo Airport,-76.5008,0.505228 +Palonegro Airport,-73.1848,7.1265 +El Dorado International Airport,-74.1469,4.70159 +Ernesto Cortissoz International Airport,-74.7808,10.8896 +José Celestino Mutis Airport,-77.3947,6.20292 +Gerardo Tobar López Airport,-76.9898,3.81963 +Camilo Daza International Airport,-72.5115,7.92757 +Rafael Nuñez International Airport,-75.513,10.4424 +Alfonso Bonilla Aragon International Airport,-76.3816,3.54322 +La Florida Airport,-78.7492,1.81442 +Las Brujas Airport,-75.2856,9.33274 +Yariguíes Airport,-73.8068,7.02433 +Santa Ana Airport,-75.9557,4.75818 +Juan Casiano Airport,-77.8986,2.57013 +Perales Airport,-75.1333,4.42161 +San Luis Airport,-77.6718,0.861925 +Alfredo Vásquez Cobo International Airport,-69.9432,-4.19355 +Enrique Olaya Herrera Airport,-75.590582,6.220549 +Los Garzones Airport,-75.8258,8.82374 +Fabio Alberto Leon Bentley Airport,-70.2339,1.25366 +La Nubia Airport,-75.4647,5.0296 +Benito Salas Airport,-75.294,2.95015 +German Olano Airport,-67.4932,6.18472 +Obando Airport,-67.9062,3.85353 +Matecaña International Airport,-75.7395,4.81267 +Guillermo León Valencia Airport,-76.6093,2.4544 +Antonio Narino Airport,-77.2915,1.39625 +El Embrujo Airport,-81.3583,13.3569 +Jose Maria Córdova International Airport,-75.4231,6.16454 +Almirante Padilla Airport,-72.926,11.5262 +Jorge E. Gonzalez Torres Airport,-72.6394,2.57969 +Simón Bolívar International Airport,-74.2306,11.1196 +Gustavo Rojas Pinilla International Airport,-81.7112,12.5836 +Eduardo Falla Solano Airport,-74.7663,2.15217 +Gustavo Vargas Airport,-71.7603,6.45108 +Santiago Perez Airport,-70.7369,7.06888 +El Caraño Airport,-76.6412,5.69076 +Alfonso López Pumarejo Airport,-73.2495,10.435 +Vanguardia Airport,-73.6138,4.16787 +El Yopal Airport,-72.384,5.31911 +Jorge Wilsterman International Airport,-66.1771011352539,-17.4211006164551 +Capitán Aníbal Arab Airport,-68.7829971313,-11.0403995514 +El Trompillo Airport,-63.1715011597,-17.8115997314 +El Alto International Airport,-68.1922988891602,-16.5132999420166 +Juana Azurduy De Padilla Airport,-65.2886962890625,-19.0070991516113 +Capitan Oriel Lea Plaza Airport,-64.7013015747,-21.5557003021 +Viru Viru International Airport,-63.1353988647461,-17.6448001861572 +Johan Adolf Pengel International Airport,-55.1878013611,5.4528298378 +K50 International Airport,44.9865989685059,2.00528001785278 +Cayenne-Rochambeau Airport,-52.3604011536,4.81980991364 +Cap FAP David Abenzur Rengifo International Airport,-74.5743026733398,-8.37794017791748 +Teniente FAP Jaime A De Montreuil Morales Airport,-78.5238037109375,-9.14960956573486 +Capitan FAP Jose A Quinones Gonzales International Airport,-79.8281021118164,-6.78747987747192 +Coronel FAP Alfredo Mendivil Duarte Airport,-74.2043991088867,-13.1548004150391 +Jorge Chávez International Airport,-77.1143035889,-12.021900177 +Francisco Carle Airport,-75.4733963013,-11.7831001282 +Inca Manco Capac International Airport,-70.158203125,-15.4671001434326 +Mayor General FAP Armando Revoredo Iglesias Airport,-78.4894027709961,-7.13918018341064 +Capitan FAP Pedro Canga Rodriguez Airport,-80.3814010620117,-3.55253005027771 +Moises Benzaquen Rengifo Airport,-76.1182022094727,-5.89377021789551 +Alferez Fap David Figueroa Fernandini Airport,-76.2048034667969,-9.87880992889404 +Coronel FAP Francisco Secada Vignetta International Airport,-73.3087997436523,-3.78473997116089 +Rodríguez Ballón International Airport,-71.5830993652,-16.3411006927 +Capitan FAP Carlos Martinez De Pinillos International Airport,-79.1088027954102,-8.08141040802002 +Cadete FAP Guillermo Del Castillo Paredes Airport,-76.3731994628906,-6.50873994827271 +Coronel FAP Carlos Ciriani Santa Rosa International Airport,-70.2758026123,-18.0533008575 +Padre Aldamiz International Airport,-69.2285995483,-12.6135997772 +Capitán FAP Guillermo Concha Iberico International Airport,-80.6164016724,-5.20574998856 +Capitan Montes Airport,-81.2540969848633,-4.57664012908936 +Maria Reiche Neuman Airport,-74.9615020751953,-14.8540000915527 +Alejandro Velasco Astete International Airport,-71.9387969971,-13.5356998444 +Carrasco International /General C L Berisso Airport,-56.0307998657227,-34.8384017944336 +Oswaldo Guevara Mujica Airport,-69.2378692626953,9.55337524414062 +General Jose Antonio Anzoategui International Airport,-64.6892013549805,10.1070995330811 +Barinas Airport,-70.2208023071289,8.61956977844238 +Barquisimeto International Airport,-69.3586196899414,10.0427465438843 +Escuela Mariscal Sucre Airport,-67.6494216918945,10.2499780654907 +Canaima Airport,-62.8544311523438,6.23198890686035 +General Francisco Bermúdez Airport,-63.2616806030273,10.6600141525269 +José Leonardo Chirinos Airport,-69.6809005737305,11.4149436950684 +Cumaná (Antonio José de Sucre) Airport,-64.1304702758789,10.4503326416016 +Josefa Camejo International Airport,-70.151496887207,11.7807750701904 +La Chinita International Airport,-71.7278594971,10.5582084656 +Alberto Carnevalli Airport,-71.1610412597656,8.5820779800415 +Del Caribe Santiago Mariño International Airport,-63.9665985107422,10.9126033782959 +Maiquetía (Simón Bolívar Internacional) Airport,-66.9905853271,10.6031169891 +Maturín Airport,-63.1473999023438,9.75452995300293 +Cacique Aramare Airport,-67.6061019897461,5.61998987197876 +General Manuel Carlos Piar International Airport,-62.7603988647461,8.28853034973145 +San Antonio Del Tachira Airport,-72.439697265625,7.84082984924316 +Mayor Buenaventura Vivas International Airport,-72.0351028442383,7.56538009643555 +San Tome Airport,-64.1510848999023,8.94514656066895 +Arturo Michelena International Airport,-67.9283981323242,10.1497325897217 +Juan Pablo Pérez Alfonso Airport,-71.6726684570312,8.62413883209229 +Dr. Antonio Nicolás Briceño Airport,-70.5840606689453,9.34047794342041 +Cheddi Jagan International Airport,-58.2541007995605,6.4985499382019 +Ogle Airport,-58.1058998108,6.80628013611 +Lethem Airport,-59.7893981933594,3.37276005744934 +V.C. Bird International Airport,-61.792702,17.1367 +Sir Grantley Adams International Airport,-59.4925003052,13.0746002197 +Canefield Airport,-61.3922004699707,15.3367004394531 +Melville Hall Airport,-61.2999992370605,15.5469999313354 +Martinique Aimé Césaire International Airport,-61.0032005310059,14.5909996032715 +L'Espérance Airport,-63.0471992492676,18.0998992919922 +Gustaf III Airport,-62.8436012268066,17.9043998718262 +Les Bases Airport,-61.2700004577637,15.8687000274658 +Pointe-à-Pitre Le Raizet,-61.5317993164062,16.2653007507324 +Point Salines International Airport,-61.7862014770508,12.0041999816895 +Cyril E. King Airport,-64.9733963012695,18.3372993469238 +Henry E Rohlsen Airport,-64.7985992431641,17.7019004821777 +Rafael Hernandez Airport,-67.1294021606445,18.4948997497559 +Fernando Luis Ribas Dominicci Airport,-66.0980987548828,18.4568004608154 +Eugenio Maria De Hostos Airport,-67.1484985351562,18.2556991577148 +Mercedita Airport,-66.5630035400391,18.00830078125 +Luis Munoz Marin International Airport,-66.0018005371,18.4393997192 +Robert L. Bradshaw International Airport,-62.7187004089355,17.3111991882324 +Vance W. Amory International Airport,-62.589900970459,17.2056999206543 +George F. L. Charles Airport,-60.992901,14.0202 +Hewanorra International Airport,-60.952599,13.7332 +Areopuerto Internacional Islas Michael,-66.884765625,16.2146745882 +Enfidha - Hammamet International Airport,10.438611,36.075833 +Queen Beatrix International Airport,-70.0151977539062,12.5013999938965 +Flamingo International Airport,-68.2685012817383,12.1309995651245 +Hato International Airport,-68.9598007202,12.1888999939 +F. D. Roosevelt Airport,-62.9794006347656,17.4965000152588 +Princess Juliana International Airport,-63.1088981628,18.0410003662 +Wallblake Airport,-63.0550994873047,18.2047996520996 +Iğdır Airport,43.8766479492,39.9766273499 +John A. Osborne Airport,-62.1932983398438,16.7914009094238 +Tobago-Crown Point Airport,-60.8321990966797,11.1497001647949 +Piarco International Airport,-61.3372001647949,10.5953998565674 +Terrance B. Lettsome International Airport,-64.5429992675781,18.4447994232178 +J F Mitchell Airport,-61.2620010376,12.9884004593 +Canouan Airport,-61.342399597168,12.6990003585815 +Mustique Airport,-61.1801986694336,12.887900352478 +Union Island International Airport,-61.4119453430176,12.6001348495483 +E. T. Joshua Airport,-61.2108993530273,13.1443004608154 +L.F. Wade International International Airport,-64.6787033081055,32.3639984130859 +Batken Airport,70.8380966187,40.0427017212 +Almaty Airport,77.0404968261719,43.3521003723145 +Astana International Airport,71.4669036865234,51.0222015380859 +Kokshetau Airport,69.594596862793,53.3291015625 +Petropavlosk South Airport,69.1838989257812,54.7747001647949 +Taraz Airport,71.303596496582,42.8535995483398 +Manas International Airport,74.4776000977,43.0612983704 +Osh Airport,72.793296814,40.6090011597 +Shymkent Airport,69.4788970947266,42.364200592041 +Zhezkazgan Airport,67.7332992553711,47.7083015441895 +Sary-Arka Airport,73.3343963623047,49.6707992553711 +Uralsk Airport,51.543098449707,51.1507987976074 +Ust-Kamennogorsk Airport,82.4942016601562,50.0365982055664 +Pavlodar Airport,77.0738983154297,52.1949996948242 +Semipalatinsk Airport,80.2343978881836,50.3512992858887 +Aktau Airport,51.0919990539551,43.8600997924805 +Atyrau Airport,51.8213996887207,47.121898651123 +Aktobe Airport,57.2066993713379,50.2458000183105 +Kostanay West Airport,63.5503005981445,53.206901550293 +Heydar Aliyev International Airport,50.0466995239258,40.4674987792969 +Ganja Airport,46.3176002502441,40.7377014160156 +Nakhchivan Airport,45.4584007263184,39.1888008117676 +Gyumri Shirak Airport,43.8592987061,40.7504005432 +Zvartnots International Airport,44.3959007263,40.1473007202 +Yakutsk Airport,129.77099609375,62.0932998657227 +Chulman Airport,124.914001464844,56.9138984680176 +Olyokminsk Airport,120.471000671,60.3974990845 +Ust-Nera Airport,143.115005493164,64.5500030517578 +Lensk Airport,114.825996399,60.7206001282 +Polyarny Airport,112.029998779,66.4003982544 +Mirny Airport,114.039001464844,62.5346984863281 +Saskylakh Airport,114.080001831055,71.9279022216797 +Chokurdakh Airport,147.901992797852,70.6231002807617 +Cherskiy Airport,161.337997436523,68.7406005859375 +Tiksi Airport,128.90299987793,71.6977005004883 +Zyryanka Airport,150.705001831,65.7367019653 +Kopitnari Airport,42.4826011658,42.176700592 +Batumi International Airport,41.5997009277,41.6102981567 +Sukhumi Dranda Airport,41.1281013489,42.8582000732 +Tbilisi International Airport,44.95470047,41.6692008972 +Ignatyevo Airport,127.412002563477,50.4253997802734 +Khabarovsk-Novy Airport,135.188003540039,48.5279998779297 +Dzemgi Airport,137.080993652344,50.605598449707 +Komsomolsk-on-Amur Airport,136.934005737305,50.4090003967285 +Ugolny Airport,177.740997314453,64.7349014282227 +Omsukchan Airport,155.744995117188,62.4570007324219 +Chaybukha Airport,160.548004150391,61.8349990844727 +Keperveem Airport,166.13999939,67.8450012207 +Sokol Airport,150.720001220703,59.9109992980957 +Nikolayevsk-na-Amure Airport,140.649993896484,53.1549987792969 +Okhotsk Airport,143.056503295898,59.4100646972656 +Yelizovo Airport,158.453994750977,53.1679000854492 +Yuzhno-Sakhalinsk Airport,142.718002319336,46.8886985778809 +Vladivostok International Airport,132.147994995117,43.398998260498 +Chita-Kadala Airport,113.305999755859,52.0262985229492 +Bratsk Airport,101.697998046875,56.3706016540527 +Irkutsk Airport,104.388999938965,52.2680015563965 +Ust-Kut Airport,105.730003356934,56.8567008972168 +Ulan-Ude Airport (Mukhino),107.438003540039,51.8078002929688 +Boryspil International Airport,30.8946990966797,50.3450012207031 +Donetsk International Airport,37.7397003173828,48.073600769043 +Mariupol International Airport,37.4496002197266,47.076099395752 +Luhansk International Airport,39.3740997314,48.4174003601 +Dnipropetrovsk International Airport,35.1006011962891,48.3572006225586 +Zaporizhzhia International Airport,35.3157005310059,47.867000579834 +Kryvyi Rih International Airport,33.2099990844727,48.0433006286621 +Simferopol International Airport,33.9751014709473,45.0522003173828 +Kharkiv International Airport,36.2900009155273,49.9248008728027 +Kiev Zhuliany International Airport,30.4496994018555,50.4016990661621 +Ivano-Frankivsk International Airport,24.6861000061035,48.8842010498047 +Lviv International Airport,23.9561004638672,49.8125 +Chernivtsi International Airport,25.9808006286621,48.2593002319336 +Rivne International Airport,26.1415996551514,50.6071014404297 +Uzhhorod International Airport,22.2633991241455,48.6343002319336 +Odessa International Airport,30.6765003204346,46.4267997741699 +Talagi Airport,40.7167015075684,64.6003036499023 +Naryan Mar Airport,53.121898651123,67.6399993896484 +Cherepovets Airport,38.0158004760742,59.2736015319824 +Amderma Airport,61.5564002990723,69.763298034668 +Kotlas Airport,46.6974983215332,61.2358016967773 +Pulkovo Airport,30.2625007629395,59.8003005981445 +Murmansk Airport,32.7508010864258,68.7817001342773 +Pskov Airport,28.3955993652344,57.7839012145996 +Petrozavodsk Airport,34.1547012329102,61.8852005004883 +Gomel Airport,31.0167007446289,52.5270004272461 +Khrabrovo Airport,20.5925998687744,54.8899993896484 +Hrodna Airport,24.0538005828857,53.6020011901855 +Minsk 1 Airport,27.5396995544434,53.8644981384277 +Minsk International Airport,28.0307006835938,53.8824996948242 +Mogilev Airport,30.095100402832,53.9548988342285 +Abakan Airport,91.3850021362305,53.7400016784668 +Barnaul Airport,83.5384979248047,53.3638000488281 +Kemerovo Airport,86.1072006225586,55.2700996398926 +Yeniseysk Airport,92.1125030517578,58.4742012023926 +Severo-Eniseysk Airport,93.0117034912109,60.3732986450195 +Vanavara Airport,102.323997497559,60.3596992492676 +Yemelyanovo Airport,92.4933013916016,56.1729011535645 +Cheremshanka Airport,92.5400009155,56.1769981384 +Kyzyl Airport,94.4005966186523,51.6693992614746 +Tolmachevo Airport,82.6507034301758,55.0125999450684 +Omsk Central Airport,73.3105010986328,54.9669990539551 +Bogashevo Airport,85.2082977294922,56.380298614502 +Spichenkovo Airport,86.877197265625,53.8114013671875 +Khatanga Airport,102.490997314453,71.9781036376953 +Igarka Airport,86.6219024658203,67.4372024536133 +Norilsk-Alykel Airport,87.3321990966797,69.3110961914062 +Anapa Airport,37.3473014831543,45.0021018981934 +Yeysk Airport,38.21,46.68 +Gelendzhik Airport,38.0124807358,44.5820926295 +Krasnodar International Airport,39.1705017089844,45.0346984863281 +Uytash Airport,47.6523017883301,42.8167991638184 +Mineralnyye Vody Airport,43.081901550293,44.2251014709473 +Nalchik Airport,43.6366004943848,43.5129013061523 +Beslan Airport,44.6066017151,43.2051010132 +Magas Airport,45.0125999451,43.3222999573 +Stavropol Shpakovskoye Airport,42.1128005981445,45.1091995239258 +Rostov-na-Donu Airport,39.8180999756,47.2582015991 +Taganrog Yuzhny Airport,38.8499984741,47.2000007629 +Sochi International Airport,39.956600189209,43.4499015808105 +Astrakhan Airport,48.0063018799,46.2832984924 +Elista Airport,44.3308982849121,46.3739013671875 +Volgograd International Airport,44.3455009460449,48.7825012207031 +Chelyabinsk Balandino Airport,61.5032997131348,55.3058013916016 +Magnitogorsk International Airport,58.7556991577148,53.3931007385254 +Salekhard Airport,66.6110000610352,66.5907974243164 +Khanty Mansiysk Airport,69.0860977172852,61.0284996032715 +Nyagan Airport,65.6149978637695,62.1100006103516 +Sovetskiy Airport,63.6019134521484,61.3266220092773 +Uray Airport,64.8266983032227,60.1032981872559 +Beloyarskiy Airport,66.698600769,63.6869010925 +Izhevsk Airport,53.4575004577637,56.8280982971191 +Pobedilovo Airport,49.3483009338379,58.5032997131348 +Nadym Airport,72.6988983154297,65.4809036254883 +Novy Urengoy Airport,76.5203018188477,66.0693969726562 +Nizhnevartovsk Airport,76.4835968017578,60.9492988586426 +Bolshoye Savino Airport,56.0211982727051,57.9145011901855 +Kogalym International Airport,74.5337982177734,62.1903991699219 +Nefteyugansk Airport,72.6500015258789,61.1082992553711 +Noyabrsk Airport,75.2699966430664,63.1833000183105 +Surgut Airport,73.4018020629883,61.3437004089355 +Koltsovo Airport,60.8027000427246,56.7430992126465 +Roshchino International Airport,65.3243026733,57.1896018982 +Kurgan Airport,65.4156036376953,55.4752998352051 +Ashgabat Airport,58.3610000610352,37.9868011474609 +Turkmenbashi Airport,53.0071983337402,40.0633010864258 +Turkmenabat Airport,63.6133003234863,39.0833015441895 +Dushanbe Airport,68.8249969482,38.5433006287 +Kulob Airport,69.8050003051758,37.9880981445312 +Khudzhand Airport,69.6947021484375,40.2154006958008 +Qurghonteppa International Airport,68.8647003173828,37.8664016723633 +Urgench Airport,60.6417007446289,41.584300994873 +Bukhara Airport,64.4832992553711,39.7750015258789 +Samarkand Airport,66.9838027954102,39.7005004882812 +Termez Airport,67.3099975585938,37.2867012023926 +Tashkent East Airport,69.3914031982422,41.3126983642578 +Tashkent International Airport,69.2811965942,41.257900238 +Kostroma Sokerkino Airport,41.0194015503,57.7969017029 +Ivanovo South Airport,40.9407997131348,56.9393997192383 +Staroselye Airport,38.9294013977051,58.1041984558105 +Bryansk Airport,34.176399231,53.2141990662 +Domodedovo International Airport,37.9062995910645,55.4087982177734 +Sheremetyevo International Airport,37.4146003723145,55.972599029541 +Ostafyevo International Airport,37.5071983337402,55.5116996765137 +Belgorod International Airport,36.5900993347168,50.643798828125 +Kursk East Airport,36.2956008911133,51.7505989074707 +Lipetsk Airport,39.5377998352051,52.7028007507324 +Voronezh International Airport,39.2295989990234,51.8142013549805 +Vnukovo International Airport,37.2615013123,55.5914993286 +Ukhta Airport,53.8046989440918,63.5668983459473 +Pechora Airport,57.1307983398438,65.1211013793945 +Usinsk Airport,57.3671989440918,66.0046997070312 +Vorkuta Airport,63.9930992126465,67.4886016845703 +Syktyvkar Airport,50.845100402832,61.6469993591309 +Nizhny Novgorod International Airport,43.7840003967285,56.2300987243652 +Bugulma Airport,52.801700592041,54.6399993896484 +Kazan International Airport,49.2787017822266,55.606201171875 +Begishevo Airport,52.0924987792969,55.5647010803223 +Yoshkar-Ola Airport,47.9047012329102,56.7005996704102 +Cheboksary Airport,47.3473014831543,56.0903015136719 +Zhigansk Airport,123.361000061,66.7965011597 +Ulyanovsk Baratayevka Airport,48.2266998291,54.2682991028 +Ulyanovsk East Airport,48.8027000427246,54.4010009765625 +Orenburg Central Airport,55.4566993713379,51.7957992553711 +Orsk Airport,58.5956001281738,51.0724983215332 +Penza Airport,45.0210990905762,53.1105995178223 +Saransk Airport,45.2122573852539,54.125129699707 +Balakovo Airport,47.7456016541,51.8582992554 +Saratov Central Airport,46.0466995239258,51.564998626709 +Ufa International Airport,55.8744010925293,54.5574989318848 +Kurumoch International Airport,50.1642990112305,53.5049018859863 +Sardar Vallabhbhai Patel International Airport,72.6346969604,23.0771999359 +Aurangabad Airport,75.3981018066406,19.862699508667 +Chhatrapati Shivaji International Airport,72.8678970337,19.0886993408 +Bhuj Airport,69.6701965332,23.2877998352 +Belgaum Airport,74.6183013916,15.8592996597 +Vadodara Airport,73.2263031006,22.3362007141 +Raja Bhoj International Airport,77.3374023438,23.2875003815 +Bhavnagar Airport,72.1852035522,21.752199173 +Dabolim Airport,73.8313980103,15.3808002472 +Hubli Airport,75.0848999023,15.361700058 +Devi Ahilyabai Holkar Airport,75.8011016846,22.7217998505 +Jabalpur Airport,80.052001953125,23.1777992248535 +Jamnagar Airport,70.0126037597656,22.4654998779297 +Khajuraho Airport,79.9186019897,24.817199707 +Kolhapur Airport,74.2893981934,16.6646995544 +Nanded Airport,77.3167037964,19.1833000183 +Dr. Babasaheb Ambedkar International Airport,79.0472030639648,21.0921993255615 +Gandhinagar Airport,73.8076019287,19.9636993408 +Pune Airport,73.9197006225586,18.5820999145508 +Porbandar Airport,69.6572036743,21.6487007141 +Rajkot Airport,70.7795028687,22.3092002869 +Surat Airport,72.7417984009,21.1140995026 +Maharana Pratap Airport,73.8961029053,24.6177005768 +Bandaranaike International Colombo Airport,79.8841018676758,7.1807599067688 +Colombo Ratmalana Airport,79.8861999511719,6.82199001312256 +Kankesanturai Airport,80.0700988769531,9.79232978820801 +Koggala Airport,80.3202972412109,5.99368000030518 +China Bay Airport,81.1819000244141,8.5385103225708 +Mattala Rajapaksa International Airport,81.1366666667,6.18666666667 +Battambang Airport,103.223999023438,13.0956001281738 +Phnom Penh International Airport,104.84400177002,11.5466003417969 +Angkor International Airport,103.813003540039,13.4106998443604 +Stung Treng Airport,106.014999389648,13.5319004058838 +Agartala Airport,91.2404022217,23.8869991302 +Bagdogra Airport,88.3285980224609,26.6812000274658 +Shillong Airport,91.9786987304688,25.7035999298096 +Biju Patnaik Airport,85.8178024292,20.2444000244 +Netaji Subhash Chandra Bose International Airport,88.4467010498047,22.6546993255615 +Gorakhpur Airport,83.4496994019,26.7397003174 +Lokpriya Gopinath Bordoloi International Airport,91.5858993530273,26.1061000823975 +Gaya Airport,84.9512023925781,24.7443008422852 +Imphal Airport,93.896697998,24.7600002289 +Jorhat Airport,94.1754989624,26.7315006256 +Silchar Airport,92.9786987305,24.9129009247 +Lengpui Airport,92.6196975708,23.8405990601 +North Lakhimpur Airport,94.0976028442383,27.2954998016357 +Dibrugarh Airport,95.0168991089,27.4839000702 +Dimapur Airport,93.7711029053,25.8838996887 +Lok Nayak Jayaprakash Airport,85.0879974365,25.591299057 +Birsa Munda Airport,85.3217010498,23.3143005371 +Tezpur Airport,92.7846984863281,26.7091007232666 +Barisal Airport,90.3012008666992,22.8010005950928 +Cox's Bazar Airport,91.9638977050781,21.4521999359131 +Shah Amanat International Airport,91.8133010864258,22.2495994567871 +Jessore Airport,89.1607971191406,23.1837997436523 +Shah Mokhdum Airport,88.6165008544922,24.4372005462646 +Saidpur Airport,88.9088973999023,25.7591991424561 +Osmany International Airport,91.8667984008789,24.9631996154785 +Dhaka / Hazrat Shahjalal International Airport,90.397783,23.843347 +Chek Lap Kok International Airport,113.915000916,22.3089008331 +"Sri Guru Ram Dass Jee International Airport, Amritsar",74.7973022461,31.7096004486 +Lal Bahadur Shastri Airport,82.8592987061,25.4524002075 +Chandigarh Airport,76.7884979248047,30.6735000610352 +Dehradun Airport,78.1802978516,30.189699173 +Indira Gandhi International Airport,77.1031036376953,28.566499710083 +Gwalior Airport,78.2277984619141,26.2933006286621 +Jodhpur Airport,73.0488967895508,26.2511005401611 +Jaipur International Airport,75.8122024536,26.8241996765 +Jammu Airport,74.8374023438,32.6890983582 +Kanpur Airport,80.3648986816406,26.4414005279541 +Leh Kushok Bakula Rimpochee Airport,77.5465011597,34.1358985901 +Chaudhary Charan Singh International Airport,80.8892974854,26.7605991364 +Sheikh ul Alam Airport,74.7742004394531,33.9870986938477 +Satna Airport,80.8548965454102,24.5622997283936 +Luang Phabang International Airport,102.161003112793,19.8973007202148 +Pakse International Airport,105.78099822998,15.1321001052856 +Wattay International Airport,102.56300354,17.9883003235 +Macau International Airport,113.592002868652,22.1495990753174 +Dong Hoi Airport,106.590556,17.515 +Kontum Airport,108.016998291016,14.3500003814697 +Bhairahawa Airport,83.4162979125977,27.5056991577148 +Tribhuvan International Airport,85.3591003418,27.6965999603 +Nepalgunj Airport,81.6669998168945,28.1035995483398 +Pokhara Airport,83.9821014404297,28.2008991241455 +Biratnagar Airport,87.2639999389648,26.4815006256104 +Murod Kond Airport,76.4646987915,18.4115009308 +HAL Airport,77.6681976318,12.9499998093 +Bengaluru International Airport,77.7062988281,13.1978998184 +Vijayawada Airport,80.7967987060547,16.5303993225098 +Coimbatore International Airport,77.0434036255,11.029999733 +Cochin International Airport,76.4019012451,10.1520004272 +Calicut International Airport,75.9552993774,11.1367998123 +"Rajiv Gandhi International Airport, Shamshabad",78.4298553467,17.2313175201 +Madurai Airport,78.0933990479,9.83450984955 +Mangalore International Airport,74.8900985718,12.9612998962 +Chennai International Airport,80.1692962646484,12.9900054931641 +Vir Savarkar International Airport,92.7296981811523,11.6412000656128 +Rajahmundry Airport,81.8181991577,17.1103992462 +Tiruchirapally Civil Airport Airport,78.7097015380859,10.7653999328613 +Trivandrum International Airport,76.9200973511,8.48211956024 +Paro Airport,89.4245986938,27.4032001495 +Gan International Airport,73.1556015014648,-0.693341970443726 +Hanimaadhoo Airport,73.1705017089844,6.74422979354858 +Kadhdhoo Airport,73.5218963623047,1.85916996002197 +Malé International Airport,73.5290985107422,4.19183015823364 +Kaadedhdhoo Airport,72.9969024658203,0.488130986690521 +Villa Airport,72.8358333333,3.47055555556 +Don Mueang International Airport,100.607002258,13.9125995636 +Trat Airport,102.319000244,12.274600029 +Suvarnabhumi Airport,100.747001647949,13.6810998916626 +U-Tapao International Airport,101.004997253418,12.6799001693726 +Chiang Mai International Airport,98.962600708,18.7667999268 +Mae Hong Son Airport,97.9757995605469,19.3013000488281 +Lampang Airport,99.5042037963867,18.2709007263184 +Nan Airport,100.782997131348,18.8078994750977 +Chiang Rai International Airport,99.8828964233,19.952299118 +Phetchabun Airport,101.194999695,16.6760005951 +Hua Hin Airport,99.951499939,12.6361999512 +Mae Sot Airport,98.5450973510742,16.6998996734619 +Sukhothai Airport,99.8181991577148,17.238000869751 +Phitsanulok Airport,100.278999328613,16.7828998565674 +Surat Thani Airport,99.135597229,9.13259983063 +Narathiwat Airport,101.74299621582,6.51991987228394 +Nakhon Si Thammarat Airport,99.9447021484375,8.5396203994751 +Krabi Airport,98.9861984253,8.09912014008 +Samui Airport,100.06199646,9.54778957367 +Cha Ian Airport,99.9555969238,8.47115039825 +Phuket International Airport,98.3169021606,8.11320018768 +Ranong Airport,98.5855026245117,9.77762031555176 +Hat Yai International Airport,100.392997742,6.93320989609 +Trang Airport,99.6166000366211,7.50873994827271 +Udon Thani Airport,102.788002014,17.3864002228 +Sakon Nakhon Airport,104.119003295898,17.1951007843018 +Khon Kaen Airport,102.783996582,16.4666004181 +Loei Airport,101.72200012207,17.4391002655029 +Buri Ram Airport,103.252998352051,15.2294998168945 +Ubon Ratchathani Airport,104.870002747,15.2512998581 +Roi Et Airport,103.774002075195,16.1168003082275 +Nakhon Phanom Airport,104.642997741699,17.3838005065918 +Buon Ma Thuot Airport,108.120002747,12.668299675 +Cat Bi International Airport,106.724998474121,20.8194007873535 +Cà Mau Airport,105.177777778,9.17766666667 +Cam Ranh Airport,109.21900177002,11.9982004165649 +Co Ong Airport,106.633003235,8.73182964325 +Trà Nóc Airport,105.71199798584,10.0851001739502 +Dien Bien Phu Airport,103.008003235,21.3974990845 +Da Nang International Airport,108.198997497559,16.0438995361328 +Noi Bai International Airport,105.806999206543,21.2212009429932 +Phu Bai Airport,107.70300293,16.4015007019 +Phu Cat Airport,109.041999817,13.9549999237 +Pleiku Airport,108.016998291016,14.0045003890991 +Phu Quoc Airport,103.967002869,10.2270002365 +Rach Gia Airport,105.132379532,9.95802997234 +Dong Tac Airport,109.333999634,13.0495996475 +Tan Son Nhat International Airport,106.652000427,10.8187999725 +Vinh Airport,105.67099762,18.7376003265 +Dawei Airport,98.2035980224609,14.1038999557495 +Heho Airport,96.7919998168945,20.7469997406006 +Kengtung Airport,99.6360015869141,21.3015995025635 +Kyaukpyu Airport,93.534797668457,19.426399230957 +Kawthoung Airport,98.5380020141602,10.0493001937866 +Loikaw Airport,97.2147979736328,19.691499710083 +Lashio Airport,97.752197265625,22.9778995513916 +Mandalay International Airport,95.977897644043,21.7021999359131 +Myeik Airport,98.6214981079102,12.4398002624512 +Myitkyina Airport,97.3518981933594,25.3836002349854 +Mong Hsat Airport,99.2567977905273,20.5167999267578 +Putao Airport,97.4263000488281,27.3299007415771 +Sittwe Airport,92.8725967407227,20.1326999664307 +Thandwe Airport,94.3001022338867,18.4606990814209 +Tachileik Airport,99.9354019165039,20.4838008880615 +Yangon International Airport,96.1332015991,16.9073009491 +Hasanuddin International Airport,119.554000854492,-5.06162977218628 +Frans Kaisiepo Airport,136.108001708984,-1.19001996517181 +Nabire Airport,135.496002197266,-3.3681800365448 +Moses Kilangin Airport,136.886993408203,-4.52827978134155 +Ngurah Rai (Bali) International Airport,115.166999816895,-8.74816989898682 +Bandara International Lombok Airport,116.276675,-8.757322 +Sentani Airport,140.516006469727,-2.57695007324219 +Wamena Airport,138.957000732422,-4.10250997543335 +Mopah Airport,140.417999267578,-8.52029037475586 +Juwata Airport,117.569444444,3.32666666667 +Naha Airport,125.52799987793,3.68320989608765 +Mutiara Airport,119.910003662109,-0.91854202747345 +Sam Ratulangi Airport,124.926002502441,1.54926002025604 +Sultan Khairun Babullah Airport,127.380996704102,0.831413984298706 +Warukin Airport,115.435997009,-2.21655988693 +Dumatumbun Airport,132.731002807617,-5.66162014007568 +"Pattimura Airport, Ambon",128.089004516602,-3.71025991439819 +Juanda International Airport,112.787002563477,-7.37982988357544 +Fakfak Airport,132.266998291016,-2.92019009590149 +Kaimana Airport,133.695999145508,-3.64452004432678 +Rendani Airport,134.04899597168,-0.891833007335663 +Sorong (Jefman) Airport,131.121002197266,-0.926357984542847 +Bintulu Airport,113.019996643,3.12385010719 +Kuching International Airport,110.34700012207,1.48469996452332 +Limbang Airport,115.01000213623,4.80830001831055 +Marudi Airport,114.329002380371,4.17897987365723 +Miri Airport,113.986999511719,4.3220100402832 +Sibu Airport,111.985000610352,2.26160001754761 +Bario Airport,115.478996276855,3.73389005661011 +Lahad Datu Airport,118.323997497559,5.03224992752075 +Kota Kinabalu International Airport,116.051002502441,5.93721008300781 +Labuan Airport,115.25,5.30068016052246 +Sandakan Airport,118.05899810791,5.90089988708496 +Tawau Airport,118.127998352051,4.32015991210938 +Mulu Airport,114.805000305176,4.04832983016968 +Brunei International Airport,114.928001403809,4.94420003890991 +Radin Inten II (Branti) Airport,105.175556,-5.240556 +Sultan Syarif Kasim Ii (Simpang Tiga) Airport,101.444999694824,0.460786014795303 +Pinang Kampai Airport,101.43399810791,1.60918998718262 +Husein Sastranegara International Airport,107.575996398926,-6.90062999725342 +Hang Nadim Airport,104.119003296,1.12102997303 +Halim Perdanakusuma International Airport,106.890998840332,-6.26661014556885 +Tunggul Wulung Airport,109.033996582,-7.64506006241 +Soekarno-Hatta International Airport,106.65599823,-6.1255698204 +Binaka Airport,97.7046966552734,1.16638004779816 +Tabing Airport,100.351997375,-0.874988973141 +Ketapang(Rahadi Usman) Airport,109.962997436523,-1.81664001941681 +Ranai Airport,108.388000488281,3.90871000289917 +Supadio Airport,109.403999328613,-0.150710999965668 +Pangsuma Airport,112.936996459961,0.83557802438736 +Sintang(Susilo) Airport,111.472999572754,0.063619002699852 +Padang Kemiling (Fatmawati Soekarno) Airport,102.338996887207,-3.8636999130249 +Sultan Mahmud Badaruddin Ii Airport,104.699996948242,-2.89825010299683 +Pendopo Airport,103.879997253418,-3.2860701084137 +Minangkabau Airport,100.28099822998,-0.786916971206665 +Sultan Iskandar Muda International Airport,95.4206371307,5.52287202401 +Pulau Tioman Airport,104.160003662109,2.81818008422852 +Sultan Abdul Halim Airport,100.398002624512,6.18967008590698 +Sultan Ismail Petra Airport,102.292999267578,6.16685009002686 +Kuantan Airport,103.208999633789,3.77538990974426 +Sultan Azlan Shah Airport,101.092002868652,4.56796979904175 +Senai International Airport,103.669998168945,1.64130997657776 +Kuala Lumpur International Airport,101.709999084473,2.74557995796204 +Langkawi International Airport,99.7286987304688,6.32973003387451 +Sultan Mahmud Airport,103.102996826172,5.38263988494873 +Penang International Airport,100.277000427246,5.29714012145996 +Sultan Abdul Aziz Shah International Airport,101.549003601074,3.13057994842529 +Presidente Nicolau Lobato International Airport,125.526000977,-8.54640007019 +Seletar Airport,103.86799621582,1.4169499874115 +Singapore Changi International Airport,103.994003295898,1.3501900434494 +Albany Airport,117.80899810791,-34.9432983398438 +Armidale Airport,151.617004395,-30.5280990601 +Ayers Rock Connellan Airport,130.975997924805,-25.1861000061035 +Barcaldine Airport,145.307006836,-23.5652999878 +Alice Springs Airport,133.901992797852,-23.8066997528076 +Brisbane International Airport,153.117004394531,-27.3841991424561 +Gold Coast Airport,153.505004883,-28.1644001007 +Blackall Airport,145.429000854,-24.4277992249 +Cairns International Airport,145.755004883,-16.885799408 +Charleville Airport,146.261993408,-26.4132995605 +Birdsville Airport,139.348007202148,-25.8974990844727 +Broken Hill Airport,141.472000122,-32.0013999939 +Hamilton Island Airport,148.95199585,-20.3581008911 +Bedourie Airport,139.460006713867,-24.3460998535156 +Bourke Airport,145.951995849609,-30.0391998291016 +Mount Isa Airport,139.488998413,-20.6639003754 +Sunshine Coast Airport,153.091003418,-26.6033000946 +Mackay Airport,149.179992676,-21.1716995239 +Ballina Byron Gateway Airport,153.56199646,-28.8339004517 +Oakey Airport,151.735000610352,-27.4113998413086 +Boulia Airport,139.899993896484,-22.9132995605469 +Proserpine Whitsunday Coast Airport,148.552001953,-20.4950008392 +Rockhampton Airport,150.475006104,-23.3819007874 +Broome International Airport,122.232002258301,-17.9447002410889 +Bathurst Airport,149.651992798,-33.4094009399 +Townsville Airport,146.764999389648,-19.2525005340576 +Blackwater Airport,148.807006835938,-23.603099822998 +Bundaberg Airport,152.319000244,-24.9039001465 +Weipa Airport,141.925003052,-12.6786003113 +Carnarvon Airport,113.671997070312,-24.8805999755859 +Cobar Airport,145.794006347656,-31.5382995605469 +Coober Pedy Airport,134.720993041992,-29.0400009155273 +Cloncurry Airport,140.503997803,-20.6686000824 +Ceduna Airport,133.710006713867,-32.1305999755859 +Cooktown Airport,145.184005737305,-15.4447002410889 +Cunnamulla Airport,145.621994018555,-28.0300006866455 +Coonamble Airport,148.376007080078,-30.9832992553711 +Coen Airport,143.113998413086,-13.7608003616333 +Cooma Snowy Mountains Airport,148.973999023,-36.3005981445 +Devonport Airport,146.429992676,-41.1697006226 +Elcho Island Airport,135.570999146,-12.0193996429 +Emerald Airport,148.179000854,-23.5674991608 +Esperance Airport,121.822998046875,-33.684398651123 +Geraldton Airport,114.707000732422,-28.7961006164551 +Gladstone Airport,151.223007202,-23.8696994781 +Groote Eylandt Airport,136.460006714,-13.9750003815 +Griffith Airport,146.067001343,-34.2508010864 +Hervey Bay Airport,152.880004883,-25.3188991547 +Horn Island Airport,142.289993286,-10.586400032 +Mount Hotham Airport,147.333999634,-37.0475006104 +King Island Airport,143.878005981445,-39.877498626709 +Kowanyama Airport,141.751007080078,-15.4856004714966 +Kingscote Airport,137.52099609375,-35.7139015197754 +Leonora Airport,121.315002441406,-28.8780994415283 +Lockhart River Airport,143.304992675781,-12.7868995666504 +Lismore Airport,153.259994507,-28.8302993774 +Lightning Ridge Airport,147.983993530273,-29.4566993713379 +Longreach Airport,144.279998779,-23.4342002869 +Leinster Airport,120.703002929688,-27.8432998657227 +Avalon Airport,144.468994141,-38.0393981934 +Albury Airport,146.957992553711,-36.067798614502 +Meekatharra Airport,118.547996520996,-26.6117000579834 +Merimbula Airport,149.901000977,-36.9085998535 +Maningrida Airport,134.23399353,-12.0560998917 +Hobart International Airport,147.509994507,-42.836101532 +Mildura Airport,142.085998535,-34.2291984558 +Launceston Airport,147.214004517,-41.54529953 +Melbourne Moorabbin Airport,145.102005004883,-37.9757995605469 +Melbourne International Airport,144.843002319336,-37.6733016967773 +Mount Magnet Airport,117.842002868652,-28.1161003112793 +Moree Airport,149.845001221,-29.4988994598 +Moranbah Airport,148.07699585,-22.057800293 +Moruya Airport,150.143997192,-35.8978004456 +Mount Gambier Airport,140.785003662109,-37.7456016540527 +Narrandera Airport,146.511993408,-34.7022018433 +Narrabri Airport,149.82699585,-30.3192005157 +Normanton Airport,141.070007324219,-17.6835994720459 +Newman Airport,119.803001404,-23.4178009033 +Adelaide International Airport,138.531005859375,-34.9449996948242 +Port Augusta Airport,137.716995239258,-32.5069007873535 +Paraburdoo Airport,117.745002747,-23.1711006165 +Cocos (Keeling) Islands Airport,96.8339004517,-12.1883001328 +Darwin International Airport,130.876998901367,-12.4146995544434 +Gove Airport,136.817993164,-12.2693996429 +Karratha Airport,116.773002625,-20.7122001648 +Kalgoorlie Boulder Airport,121.461997986,-30.7894001007 +Parkes Airport,148.238998413,-33.131401062 +Kununurra Airport,128.707992554,-15.7781000137 +Port Lincoln Airport,135.880004883,-34.6053009033 +Learmonth Airport,114.088996887,-22.2355995178 +Port Macquarie Airport,152.863006592,-31.4358005524 +Portland Airport,141.470993041992,-38.3180999755859 +Port Hedland International Airport,118.625999451,-20.3777999878 +Perth International Airport,115.967002868652,-31.940299987793 +Christmas Island Airport,105.690002441406,-10.4505996704102 +Quilpie Airport,144.253005981445,-26.6121997833252 +Roma Airport,148.774993896,-26.5450000763 +Canberra International Airport,149.195007324219,-35.3069000244141 +Coffs Harbour Airport,153.115997314,-30.3206005096 +Dubbo City Regional Airport,148.574996948,-32.2167015076 +Shark Bay Airport,113.577003479004,-25.8938999176025 +Norfolk Island International Airport,167.938995361328,-29.0415992736816 +Sydney Kingsford Smith International Airport,151.177001953125,-33.9460983276367 +Tamworth Airport,150.847000122,-31.0839004517 +Wagga Wagga City Airport,147.466003418,-35.1652984619 +Thargomindah Airport,143.811004638672,-27.986400604248 +Thangool Airport,150.57600402832,-24.4939002990723 +Tennant Creek Airport,134.182998657227,-19.6343994140625 +Taree Airport,152.514007568,-31.8885993958 +Windorah Airport,142.667007446289,-25.4130992889404 +Whyalla Airport,137.514007568359,-33.0588989257812 +Newcastle Airport,151.833999633789,-32.7949981689453 +Wiluna Airport,120.221000671387,-26.6291999816895 +Wollongong Airport,150.789001464844,-34.5611000061035 +Winton Airport,143.085998535156,-22.3635997772217 +Wynyard Airport,145.731002807617,-40.9989013671875 +Beijing Capital International Airport,116.584999084473,40.0801010131836 +Chifeng Airport,118.907997131348,42.2350006103516 +Ordos Ejin Horo Airport,109.861388889,39.49 +Erenhot Saiwusu International Airport,112.096666667,43.4225 +Handan Airport,114.425555556,36.5258333333 +Baita International Airport,111.823997498,40.851398468 +Dongshan Airport,119.824996948,49.2050018311 +Beijing Nanyuan Airport,116.388000488281,39.7827987670898 +Baotou Airport,109.997001647949,40.560001373291 +Shanhaiguan Airport,119.731002808,39.9681015015 +Shijiazhuang Daguocun International Airport,114.696998596191,38.2807006835938 +Tianjin Binhai International Airport,117.346000671,39.1244010925 +Tongliao Airport,122.199996948242,43.5567016601562 +Xilinhot Airport,115.963996887207,43.915599822998 +Taiyuan Wusu Airport,112.627998352051,37.746898651123 +Changde Airport,111.63999939,28.9188995361 +Zhijiang Airport,109.7,27.4411111111 +Guangzhou Baiyun International Airport,113.299003601074,23.3924007415771 +Changsha Huanghua International Airport,113.220001221,28.1891994476 +Guilin Liangjiang International Airport,110.039001464844,25.2180995941162 +Lingling Airport,111.610043,26.338661 +Nanning Wuxu Airport,108.171997070312,22.6082992553711 +Shantou Waisha Airport,116.762001037598,23.4269008636475 +Zhuhai Airport,113.375999450684,22.0063991546631 +Shenzhen Bao'an International Airport,113.810997009277,22.6392993927002 +Bailian Airport,109.390998840332,24.2075004577637 +Zhanjiang Airport,110.358001708984,21.2143993377686 +Xinzheng Airport,113.841003417969,34.5196990966797 +Wuhan Tianhe International Airport,114.208000183105,30.7838001251221 +Yichang Airport,111.479988333,30.556549722 +Haikou Meilan International Airport,110.458999633789,19.9349002838135 +Sanya Phoenix International Airport,109.412002563477,18.3029003143311 +Sunan International Airport,125.669998168945,39.2240982055664 +Dunhuang Airport,94.809196472168,40.1610984802246 +Golmud Airport,94.7861022949219,36.4006004333496 +Yinchuan Airport,106.009002685547,38.4818992614746 +Jining Qufu Airport,116.346666667,35.2927777778 +Lanzhou Zhongchuan Airport,103.620002747,36.5152015686 +Qingyang Airport,107.602996826172,35.7997016906738 +Xining Caojiabu Airport,102.042999267578,36.5275001525879 +Xi'an Xianyang International Airport,108.751998901367,34.4471015930176 +Zhongwei Shapotou Airport,105.154454,37.573125 +Arvaikheer Airport,102.802001953125,46.250301361084 +Altai Airport,96.2210998535156,46.3763999938965 +Bayankhongor Airport,100.704002380371,46.1632995605469 +Bulgan Airport,103.475997924805,48.8549995422363 +Dalanzadgad Airport,104.430000305176,43.5917015075684 +Khovd Airport,91.6281967163086,47.9541015625 +Mörön Airport,100.098999023438,49.6632995605469 +Chinggis Khaan International Airport,106.766998291016,47.8431015014648 +Dali Airport,100.319000244141,25.6494007110596 +Diqing Airport,99.6772003173828,27.7936000823975 +Xishuangbanna Gasa Airport,100.76000213623,21.9738998413086 +Lijiang Airport,100.246002197,26.6800003052 +Mangshi Airport,98.5317001342773,24.4011001586914 +Kunming Wujiaba International Airport,102.744003295898,24.9923992156982 +Xiamen Gaoqi International Airport,118.127998352051,24.5440006256104 +Nanchang Changbei International Airport,115.900001525879,28.8649997711182 +Fuyang Xiguan Airport,115.734364,32.882157 +Fuzhou Changle International Airport,119.66300201416,25.9351005554199 +Hangzhou Xiaoshan International Airport,120.43399810791,30.2294998168945 +Jingdezhen Airport,117.176002502,29.3386001587 +Yaoqiang Airport,117.216003417969,36.8572006225586 +Quzhou Airport,118.899002075195,28.965799331665 +Longyan Guanzhishan Airport,116.747001648,25.6746997833 +Huangyan Luqiao Airport,121.429000854492,28.5622005462646 +Ningbo Lishe International Airport,121.46199798584,29.8267002105713 +Nanjing Lukou Airport,118.861999511719,31.742000579834 +Hefei Luogang International Airport,117.297996520996,31.7800006866455 +Shanghai Pudong International Airport,121.805000305176,31.1434001922607 +Liuting Airport,120.374000549,36.2661018372 +Quanzhou Airport,118.589996337891,24.7964000701904 +Shanghai Hongqiao International Airport,121.335998535156,31.1979007720947 +Tunxi International Airport,118.255996704102,29.7332992553711 +Weifang Airport,119.119003295898,36.6467018127441 +Weihai Airport,122.228996276855,37.1870994567871 +Sunan Shuofang International Airport,120.429000854,31.4944000244 +Nanping Wuyishan Airport,118.000999450684,27.7019004821777 +Wenzhou Yongqiang Airport,120.851997375488,27.9122009277344 +Xuzhou Guanyin Airport,117.555278,34.059056 +Yantai Laishan Airport,121.372001647949,37.4016990661621 +Yiwu Airport,120.031997681,29.3446998596 +Qamdo Bangda Airport,97.1082992553711,30.5536003112793 +Chongqing Jiangbei International Airport,106.641998291016,29.7192001342773 +Guangyuan Airport,105.702003479004,32.3911018371582 +Longdongbao Airport,106.801002502441,26.5384998321533 +Jiuzhai Huanglong Airport,103.682222222,32.8533333333 +Lhasa Gonggar Airport,90.9119033813477,29.2978000640869 +Mianyang Airport,104.740997314453,31.4281005859375 +Liping Airport,109.1499,26.32217 +Nyingchi Airport,94.3352966308594,29.3033008575439 +Tengchong Tuofeng Airport,98.4858333333,24.9380555556 +Chengdu Shuangliu International Airport,103.946998596191,30.5785007476807 +Xichang Qingshan Airport,102.18399810791,27.9890995025635 +Xingyi Airport,104.959444444,25.0863888889 +Zunyi Xinzhou Airport,107.0007,27.5895 +Aksu Airport,80.2917022705078,41.2625007629395 +Qiemo Airport,85.5327987670898,38.1493988037109 +Korla Airport,86.1288986206055,41.6977996826172 +Kashgar Airport,76.0199966431,39.5429000854 +Hotan Airport,79.8648986816406,37.038501739502 +Ürümqi Diwopu International Airport,87.4741973876953,43.9071006774902 +Longjia Airport,125.684997559,43.9962005615 +Taiping Airport,126.25,45.6234016418457 +Heihe Airport,127.308883667,50.1716209371 +Jiamusi Airport,130.464996338,46.8433990479 +Jinzhou Airport,121.061996459961,41.1013984680176 +Lindu Airport,129.019125,47.7520555556 +Mudanjiang Hailang International Airport,129.569000244,44.5241012573 +Gu-Lian Airport,122.43,52.9127777778 +Qiqihar Sanjiazi Airport,123.917999267578,47.2396011352539 +Zhoushuizi Airport,121.539001464844,38.9656982421875 +Tonghua Sanyuanpu Airport,125.703333333,42.2538888889 +Taoxian Airport,123.483001708984,41.6398010253906 +Yanji Chaoyangchuan Airport,129.451004028,42.8828010559 diff --git a/docs/static/data/examples/geo/world-airports.d.ts b/docs/static/data/examples/geo/world-airports.d.ts new file mode 100644 index 000000000..8c2cdb1e9 --- /dev/null +++ b/docs/static/data/examples/geo/world-airports.d.ts @@ -0,0 +1,5 @@ +export type WorldAirportsData = { + name: string; + latitude: number; + longitude: number; +}[]; diff --git a/docs/static/data/examples/geo/world-capitals.d.ts b/docs/static/data/examples/geo/world-capitals.d.ts new file mode 100644 index 000000000..4a17066c3 --- /dev/null +++ b/docs/static/data/examples/geo/world-capitals.d.ts @@ -0,0 +1,5 @@ +export type WorldCapitalsData = { + label: string; + latitude: number; + longitude: number; +}[]; diff --git a/docs/static/data/examples/geo/world-capitals.json b/docs/static/data/examples/geo/world-capitals.json new file mode 100644 index 000000000..96fb01a77 --- /dev/null +++ b/docs/static/data/examples/geo/world-capitals.json @@ -0,0 +1,827 @@ +[ + { + "label": "Vienna", + "latitude": 48.2092, + "longitude": 16.3728 + }, + { + "label": "Minsk", + "latitude": 53.9678, + "longitude": 27.5766 + }, + { + "label": "Brussels", + "latitude": 50.8371, + "longitude": 4.3676 + }, + { + "label": "Sarajevo", + "latitude": 43.8608, + "longitude": 18.4214 + }, + { + "label": "Sofia", + "latitude": 42.7105, + "longitude": 23.3238 + }, + { + "label": "Zagreb", + "latitude": 45.815, + "longitude": 15.9785 + }, + { + "label": "Pristina", + "latitude": 42.666667, + "longitude": 21.166667 + }, + { + "label": "Prague", + "latitude": 50.0878, + "longitude": 14.4205 + }, + { + "label": "Copenhagen", + "latitude": 55.6763, + "longitude": 12.5681 + }, + { + "label": "Tallinn", + "latitude": 59.4389, + "longitude": 24.7545 + }, + { + "label": "Helsinki", + "latitude": 60.1699, + "longitude": 24.9384 + }, + { + "label": "Paris", + "latitude": 48.8567, + "longitude": 2.351 + }, + { + "label": "Berlin", + "latitude": 52.5235, + "longitude": 13.4115 + }, + { + "label": "Athens", + "latitude": 37.9792, + "longitude": 23.7166 + }, + { + "label": "Budapest", + "latitude": 47.4984, + "longitude": 19.0408 + }, + { + "label": "Reykjavik", + "latitude": 64.1353, + "longitude": -21.8952 + }, + { + "label": "Dublin", + "latitude": 53.3441, + "longitude": -6.2675 + }, + { + "label": "Rome", + "latitude": 41.8955, + "longitude": 12.4823 + }, + { + "label": "Riga", + "latitude": 56.9465, + "longitude": 24.1049 + }, + { + "label": "Vaduz", + "latitude": 47.1411, + "longitude": 9.5215 + }, + { + "label": "Vilnius", + "latitude": 54.6896, + "longitude": 25.2799 + }, + { + "label": "Luxembourg", + "latitude": 49.61, + "longitude": 6.1296 + }, + { + "label": "Skopje", + "latitude": 42.0024, + "longitude": 21.4361 + }, + { + "label": "Valletta", + "latitude": 35.9042, + "longitude": 14.5189 + }, + { + "label": "Chisinau", + "latitude": 47.0167, + "longitude": 28.8497 + }, + { + "label": "Monaco", + "latitude": 43.7325, + "longitude": 7.4189 + }, + { + "label": "Podgorica", + "latitude": 42.4602, + "longitude": 19.2595 + }, + { + "label": "Amsterdam", + "latitude": 52.3738, + "longitude": 4.891 + }, + { + "label": "Oslo", + "latitude": 59.9138, + "longitude": 10.7387 + }, + { + "label": "Warsaw", + "latitude": 52.2297, + "longitude": 21.0122 + }, + { + "label": "Lisbon", + "latitude": 38.7072, + "longitude": -9.1355 + }, + { + "label": "Bucharest", + "latitude": 44.4479, + "longitude": 26.0979 + }, + { + "label": "Moscow", + "latitude": 55.7558, + "longitude": 37.6176 + }, + { + "label": "San Marino", + "latitude": 43.9424, + "longitude": 12.4578 + }, + { + "label": "Belgrade", + "latitude": 44.8048, + "longitude": 20.4781 + }, + { + "label": "Bratislava", + "latitude": 48.2116, + "longitude": 17.1547 + }, + { + "label": "Ljubljana", + "latitude": 46.0514, + "longitude": 14.506 + }, + { + "label": "Madrid", + "latitude": 40.4167, + "longitude": -3.7033 + }, + { + "label": "Stockholm", + "latitude": 59.3328, + "longitude": 18.0645 + }, + { + "label": "Bern", + "latitude": 46.948, + "longitude": 7.4481 + }, + { + "label": "Kiev", + "latitude": 50.4422, + "longitude": 30.5367 + }, + { + "label": "London", + "latitude": 51.5002, + "longitude": -0.1262 + }, + { + "label": "Gibraltar", + "latitude": 36.1377, + "longitude": -5.3453 + }, + { + "label": "Saint Peter Port", + "latitude": 49.466, + "longitude": -2.5522 + }, + { + "label": "Douglas", + "latitude": 54.167, + "longitude": -4.4821 + }, + { + "label": "Saint Helier", + "latitude": 49.1919, + "longitude": -2.1071 + }, + { + "label": "Longyearbyen", + "latitude": 78.2186, + "longitude": 15.6488 + }, + { + "label": "Kabul", + "latitude": 34.5155, + "longitude": 69.1952 + }, + { + "label": "Yerevan", + "latitude": 40.1596, + "longitude": 44.509 + }, + { + "label": "Baku", + "latitude": 40.3834, + "longitude": 49.8932 + }, + { + "label": "Manama", + "latitude": 26.1921, + "longitude": 50.5354 + }, + { + "label": "Dhaka", + "latitude": 23.7106, + "longitude": 90.3978 + }, + { + "label": "Thimphu", + "latitude": 27.4405, + "longitude": 89.673 + }, + { + "label": "Bandar Seri Begawan", + "latitude": 4.9431, + "longitude": 114.9425 + }, + { + "label": "Phnom Penh", + "latitude": 11.5434, + "longitude": 104.8984 + }, + { + "label": "Peking", + "latitude": 39.9056, + "longitude": 116.3958 + }, + { + "label": "Nicosia", + "latitude": 35.1676, + "longitude": 33.3736 + }, + { + "label": "T'bilisi", + "latitude": 41.701, + "longitude": 44.793 + }, + { + "label": "New Delhi", + "latitude": 28.6353, + "longitude": 77.225 + }, + { + "label": "Jakarta", + "latitude": -6.1862, + "longitude": 106.8063 + }, + { + "label": "Teheran", + "latitude": 35.7061, + "longitude": 51.4358 + }, + { + "label": "Baghdad", + "latitude": 33.3157, + "longitude": 44.3922 + }, + { + "label": "Jerusalem", + "latitude": 31.76, + "longitude": 35.17 + }, + { + "label": "Tokyo", + "latitude": 35.6785, + "longitude": 139.6823 + }, + { + "label": "Amman", + "latitude": 31.9394, + "longitude": 35.9349 + }, + { + "label": "Astana", + "latitude": 51.1796, + "longitude": 71.4475 + }, + { + "label": "Kuwait", + "latitude": 29.3721, + "longitude": 47.9824 + }, + { + "label": "Bishkek", + "latitude": 42.8679, + "longitude": 74.5984 + }, + { + "label": "Vientiane", + "latitude": 17.9689, + "longitude": 102.6137 + }, + { + "label": "Beyrouth / Beirut", + "latitude": 33.8872, + "longitude": 35.5134 + }, + { + "label": "Kuala Lumpur", + "latitude": 3.1502, + "longitude": 101.7077 + }, + { + "label": "Ulan Bator", + "latitude": 47.9138, + "longitude": 106.922 + }, + { + "label": "Pyinmana", + "latitude": 19.7378, + "longitude": 96.2083 + }, + { + "label": "Kathmandu", + "latitude": 27.7058, + "longitude": 85.3157 + }, + { + "label": "Muscat", + "latitude": 23.6086, + "longitude": 58.5922 + }, + { + "label": "Islamabad", + "latitude": 33.6751, + "longitude": 73.0946 + }, + { + "label": "Manila", + "latitude": 14.579, + "longitude": 120.9726 + }, + { + "label": "Doha", + "latitude": 25.2948, + "longitude": 51.5082 + }, + { + "label": "Riyadh", + "latitude": 24.6748, + "longitude": 46.6977 + }, + { + "label": "Singapore", + "latitude": 1.2894, + "longitude": 103.85 + }, + { + "label": "Seoul", + "latitude": 37.5139, + "longitude": 126.9828 + }, + { + "label": "Colombo", + "latitude": 6.9155, + "longitude": 79.8572 + }, + { + "label": "Damascus", + "latitude": 33.5158, + "longitude": 36.2939 + }, + { + "label": "Taipei", + "latitude": 25.0338, + "longitude": 121.5645 + }, + { + "label": "Dushanbe", + "latitude": 38.5737, + "longitude": 68.7738 + }, + { + "label": "Bangkok", + "latitude": 13.7573, + "longitude": 100.502 + }, + { + "label": "Dili", + "latitude": -8.5662, + "longitude": 125.588 + }, + { + "label": "Ankara", + "latitude": 39.9439, + "longitude": 32.856 + }, + { + "label": "Ashgabat", + "latitude": 37.9509, + "longitude": 58.3794 + }, + { + "label": "Abu Dhabi", + "latitude": 24.4764, + "longitude": 54.3705 + }, + { + "label": "Tashkent", + "latitude": 41.3193, + "longitude": 69.2481 + }, + { + "label": "Hanoi", + "latitude": 21.0341, + "longitude": 105.8372 + }, + { + "label": "Sanaa", + "latitude": 15.3556, + "longitude": 44.2081 + }, + { + "label": "Buenos Aires", + "latitude": -34.6118, + "longitude": -58.4173 + }, + { + "label": "Bridgetown", + "latitude": 13.0935, + "longitude": -59.6105 + }, + { + "label": "Belmopan", + "latitude": 17.2534, + "longitude": -88.7713 + }, + { + "label": "Sucre", + "latitude": -19.0421, + "longitude": -65.2559 + }, + { + "label": "Brasilia", + "latitude": -15.7801, + "longitude": -47.9292 + }, + { + "label": "Ottawa", + "latitude": 45.4235, + "longitude": -75.6979 + }, + { + "label": "Santiago", + "latitude": -33.4691, + "longitude": -70.642 + }, + { + "label": "Bogota", + "latitude": 4.6473, + "longitude": -74.0962 + }, + { + "label": "San Jose", + "latitude": 9.9402, + "longitude": -84.1002 + }, + { + "label": "Havana", + "latitude": 23.1333, + "longitude": -82.3667 + }, + { + "label": "Roseau", + "latitude": 15.2976, + "longitude": -61.39 + }, + { + "label": "Santo Domingo", + "latitude": 18.479, + "longitude": -69.8908 + }, + { + "label": "Quito", + "latitude": -0.2295, + "longitude": -78.5243 + }, + { + "label": "San Salvador", + "latitude": 13.7034, + "longitude": -89.2073 + }, + { + "label": "Guatemala", + "latitude": 14.6248, + "longitude": -90.5328 + }, + { + "label": "Ciudad de Mexico", + "latitude": 19.4271, + "longitude": -99.1276 + }, + { + "label": "Managua", + "latitude": 12.1475, + "longitude": -86.2734 + }, + { + "label": "Panama", + "latitude": 8.9943, + "longitude": -79.5188 + }, + { + "label": "Asuncion", + "latitude": -25.3005, + "longitude": -57.6362 + }, + { + "label": "Lima", + "latitude": -12.0931, + "longitude": -77.0465 + }, + { + "label": "Castries", + "latitude": 13.9972, + "longitude": -60.0018 + }, + { + "label": "Paramaribo", + "latitude": 5.8232, + "longitude": -55.1679 + }, + { + "label": "Washington D.C.", + "latitude": 38.8921, + "longitude": -77.0241 + }, + { + "label": "Montevideo", + "latitude": -34.8941, + "longitude": -56.0675 + }, + { + "label": "Caracas", + "latitude": 10.4961, + "longitude": -66.8983 + }, + { + "label": "Oranjestad", + "latitude": 12.5246, + "longitude": -70.0265 + }, + { + "label": "Cayenne", + "latitude": 4.9346, + "longitude": -52.3303 + }, + { + "label": "Plymouth", + "latitude": 16.6802, + "longitude": -62.2014 + }, + { + "label": "San Juan", + "latitude": 18.45, + "longitude": -66.0667 + }, + { + "label": "Algiers", + "latitude": 36.7755, + "longitude": 3.0597 + }, + { + "label": "Luanda", + "latitude": -8.8159, + "longitude": 13.2306 + }, + { + "label": "Porto-Novo", + "latitude": 6.4779, + "longitude": 2.6323 + }, + { + "label": "Gaborone", + "latitude": -24.657, + "longitude": 25.9089 + }, + { + "label": "Ouagadougou", + "latitude": 12.3569, + "longitude": -1.5352 + }, + { + "label": "Bujumbura", + "latitude": -3.3818, + "longitude": 29.3622 + }, + { + "label": "Yaounde", + "latitude": 3.8612, + "longitude": 11.5217 + }, + { + "label": "Bangui", + "latitude": 4.3621, + "longitude": 18.5873 + }, + { + "label": "Brazzaville", + "latitude": -4.2767, + "longitude": 15.2662 + }, + { + "label": "Kinshasa", + "latitude": -4.3369, + "longitude": 15.3271 + }, + { + "label": "Yamoussoukro", + "latitude": 6.8067, + "longitude": -5.2728 + }, + { + "label": "Djibouti", + "latitude": 11.5806, + "longitude": 43.1425 + }, + { + "label": "Cairo", + "latitude": 30.0571, + "longitude": 31.2272 + }, + { + "label": "Asmara", + "latitude": 15.3315, + "longitude": 38.9183 + }, + { + "label": "Addis Abeba", + "latitude": 9.0084, + "longitude": 38.7575 + }, + { + "label": "Libreville", + "latitude": 0.3858, + "longitude": 9.4496 + }, + { + "label": "Banjul", + "latitude": 13.4399, + "longitude": -16.6775 + }, + { + "label": "Accra", + "latitude": 5.5401, + "longitude": -0.2074 + }, + { + "label": "Conakry", + "latitude": 9.537, + "longitude": -13.6785 + }, + { + "label": "Bissau", + "latitude": 11.8598, + "longitude": -15.5875 + }, + { + "label": "Nairobi", + "latitude": -1.2762, + "longitude": 36.7965 + }, + { + "label": "Maseru", + "latitude": -29.2976, + "longitude": 27.4854 + }, + { + "label": "Monrovia", + "latitude": 6.3106, + "longitude": -10.8047 + }, + { + "label": "Tripoli", + "latitude": 32.883, + "longitude": 13.1897 + }, + { + "label": "Antananarivo", + "latitude": -18.9201, + "longitude": 47.5237 + }, + { + "label": "Lilongwe", + "latitude": -13.9899, + "longitude": 33.7703 + }, + { + "label": "Bamako", + "latitude": 12.653, + "longitude": -7.9864 + }, + { + "label": "Nouakchott", + "latitude": 18.0669, + "longitude": -15.99 + }, + { + "label": "Port Louis", + "latitude": -20.1654, + "longitude": 57.4896 + }, + { + "label": "Rabat", + "latitude": 33.9905, + "longitude": -6.8704 + }, + { + "label": "Maputo", + "latitude": -25.9686, + "longitude": 32.5804 + }, + { + "label": "Windhoek", + "latitude": -22.5749, + "longitude": 17.0805 + }, + { + "label": "Niamey", + "latitude": 13.5164, + "longitude": 2.1157 + }, + { + "label": "Abuja", + "latitude": 9.058, + "longitude": 7.4891 + }, + { + "label": "Kigali", + "latitude": -1.9441, + "longitude": 30.0619 + }, + { + "label": "Dakar", + "latitude": 14.6953, + "longitude": -17.4439 + }, + { + "label": "Freetown", + "latitude": 8.4697, + "longitude": -13.2659 + }, + { + "label": "Mogadishu", + "latitude": 2.0411, + "longitude": 45.3426 + }, + { + "label": "Pretoria", + "latitude": -25.7463, + "longitude": 28.1876 + }, + { + "label": "Mbabane", + "latitude": -26.3186, + "longitude": 31.141 + }, + { + "label": "Dodoma", + "latitude": -6.167, + "longitude": 35.7497 + }, + { + "label": "Lome", + "latitude": 6.1228, + "longitude": 1.2255 + }, + { + "label": "Tunis", + "latitude": 36.8117, + "longitude": 10.1761 + } +] diff --git a/docs/static/data/examples/geo/world-links.d.ts b/docs/static/data/examples/geo/world-links.d.ts new file mode 100644 index 000000000..7fa43ea94 --- /dev/null +++ b/docs/static/data/examples/geo/world-links.d.ts @@ -0,0 +1,35 @@ +export type WorldLinksData = Array< + GeoJSON.Feature< + GeoJSON.LineString, + { sourceName: string; targetName: string; sourceId: string; targetId: string } + > & { + sourceId: string; + targetId: string; + source: [number, number]; + target: [number, number]; + } +>; + +// [ +// { +// "feature": { +// "type": "Feature", +// "geometry": { +// "type": "LineString", +// "coordinates": [ +// [-118.18192636994041, 33.99192410876543], +// [-77.01136443943716, 38.901495235087054] +// ] +// }, +// "properties": { +// "sourceName": "Los Angeles", +// "targetName": "Washington, D.C.", +// "sourceId": "los-angeles", +// "targetId": "washington,-d.c." +// } +// }, +// "sourceId": "los-angeles", +// "targetId": "washington,-d.c.", +// "source": [-118.18192636994041, 33.99192410876543], +// "target": [-77.01136443943716, 38.901495235087054] +// }, diff --git a/docs/static/data/examples/geo/world-links.json b/docs/static/data/examples/geo/world-links.json new file mode 100644 index 000000000..1b1f7378a --- /dev/null +++ b/docs/static/data/examples/geo/world-links.json @@ -0,0 +1,5282 @@ +[ + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-118.18192636994041, 33.99192410876543], + [-77.01136443943716, 38.901495235087054] + ] + }, + "properties": { + "sourceName": "Los Angeles", + "targetName": "Washington, D.C.", + "sourceId": "los-angeles", + "targetId": "washington,-d.c." + } + }, + "sourceId": "los-angeles", + "targetId": "washington,-d.c.", + "source": [-118.18192636994041, 33.99192410876543], + "target": [-77.01136443943716, 38.901495235087054] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-118.18192636994041, 33.99192410876543], + [-73.98196278740681, 40.75192492259464] + ] + }, + "properties": { + "sourceName": "Los Angeles", + "targetName": "New York", + "sourceId": "los-angeles", + "targetId": "new-york" + } + }, + "sourceId": "los-angeles", + "targetId": "new-york", + "source": [-118.18192636994041, 33.99192410876543], + "target": [-73.98196278740681, 40.75192492259464] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-118.18192636994041, 33.99192410876543], + [37.6135769672714, 55.75410998124818] + ] + }, + "properties": { + "sourceName": "Los Angeles", + "targetName": "Moscow", + "sourceId": "los-angeles", + "targetId": "moscow" + } + }, + "sourceId": "los-angeles", + "targetId": "moscow", + "source": [-118.18192636994041, 33.99192410876543], + "target": [37.6135769672714, 55.75410998124818] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-118.18192636994041, 33.99192410876543], + [-99.1329340602939, 19.444388301415472] + ] + }, + "properties": { + "sourceName": "Los Angeles", + "targetName": "Mexico City", + "sourceId": "los-angeles", + "targetId": "mexico-city" + } + }, + "sourceId": "los-angeles", + "targetId": "mexico-city", + "source": [-118.18192636994041, 33.99192410876543], + "target": [-99.1329340602939, 19.444388301415472] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-118.18192636994041, 33.99192410876543], + [3.389585212598433, 6.445207512093191] + ] + }, + "properties": { + "sourceName": "Los Angeles", + "targetName": "Lagos", + "sourceId": "los-angeles", + "targetId": "lagos" + } + }, + "sourceId": "los-angeles", + "targetId": "lagos", + "source": [-118.18192636994041, 33.99192410876543], + "target": [3.389585212598433, 6.445207512093191] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-118.18192636994041, 33.99192410876543], + [116.38633982565943, 39.93083808990906] + ] + }, + "properties": { + "sourceName": "Los Angeles", + "targetName": "Beijing", + "sourceId": "los-angeles", + "targetId": "beijing" + } + }, + "sourceId": "los-angeles", + "targetId": "beijing", + "source": [-118.18192636994041, 33.99192410876543], + "target": [116.38633982565943, 39.93083808990906] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-118.18192636994041, 33.99192410876543], + [106.82749176247012, -6.172471846798885] + ] + }, + "properties": { + "sourceName": "Los Angeles", + "targetName": "Jakarta", + "sourceId": "los-angeles", + "targetId": "jakarta" + } + }, + "sourceId": "los-angeles", + "targetId": "jakarta", + "source": [-118.18192636994041, 33.99192410876543], + "target": [106.82749176247012, -6.172471846798885] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-118.18192636994041, 33.99192410876543], + [121.43455881982015, 31.218398311228327] + ] + }, + "properties": { + "sourceName": "Los Angeles", + "targetName": "Shanghai", + "sourceId": "los-angeles", + "targetId": "shanghai" + } + }, + "sourceId": "los-angeles", + "targetId": "shanghai", + "source": [-118.18192636994041, 33.99192410876543], + "target": [121.43455881982015, 31.218398311228327] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-118.18192636994041, 33.99192410876543], + [139.74946157054467, 35.686962764371174] + ] + }, + "properties": { + "sourceName": "Los Angeles", + "targetName": "Tokyo", + "sourceId": "los-angeles", + "targetId": "tokyo" + } + }, + "sourceId": "los-angeles", + "targetId": "tokyo", + "source": [-118.18192636994041, 33.99192410876543], + "target": [139.74946157054467, 35.686962764371174] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-118.18192636994041, 33.99192410876543], + [72.85504343876647, 19.0189362343566] + ] + }, + "properties": { + "sourceName": "Los Angeles", + "targetName": "Mumbai", + "sourceId": "los-angeles", + "targetId": "mumbai" + } + }, + "sourceId": "los-angeles", + "targetId": "mumbai", + "source": [-118.18192636994041, 33.99192410876543], + "target": [72.85504343876647, 19.0189362343566] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-118.18192636994041, 33.99192410876543], + [88.32272979950551, 22.49691515689642] + ] + }, + "properties": { + "sourceName": "Los Angeles", + "targetName": "Kolkata", + "sourceId": "los-angeles", + "targetId": "kolkata" + } + }, + "sourceId": "los-angeles", + "targetId": "kolkata", + "source": [-118.18192636994041, 33.99192410876543], + "target": [88.32272979950551, 22.49691515689642] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-118.18192636994041, 33.99192410876543], + [-43.22696665284366, -22.923077315615956] + ] + }, + "properties": { + "sourceName": "Los Angeles", + "targetName": "Rio de Janeiro", + "sourceId": "los-angeles", + "targetId": "rio-de-janeiro" + } + }, + "sourceId": "los-angeles", + "targetId": "rio-de-janeiro", + "source": [-118.18192636994041, 33.99192410876543], + "target": [-43.22696665284366, -22.923077315615956] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-118.18192636994041, 33.99192410876543], + [-46.62696583905523, -23.55673372837896] + ] + }, + "properties": { + "sourceName": "Los Angeles", + "targetName": "Sao Paulo", + "sourceId": "los-angeles", + "targetId": "sao-paulo" + } + }, + "sourceId": "los-angeles", + "targetId": "sao-paulo", + "source": [-118.18192636994041, 33.99192410876543], + "target": [-46.62696583905523, -23.55673372837896] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-118.18192636994041, 33.99192410876543], + [103.85387481909902, 1.294979325105942] + ] + }, + "properties": { + "sourceName": "Los Angeles", + "targetName": "Singapore", + "sourceId": "los-angeles", + "targetId": "singapore" + } + }, + "sourceId": "los-angeles", + "targetId": "singapore", + "source": [-118.18192636994041, 33.99192410876543], + "target": [103.85387481909902, 1.294979325105942] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-118.18192636994041, 33.99192410876543], + [114.18306345846304, 22.30692675357551] + ] + }, + "properties": { + "sourceName": "Los Angeles", + "targetName": "Hong Kong", + "sourceId": "los-angeles", + "targetId": "hong-kong" + } + }, + "sourceId": "los-angeles", + "targetId": "hong-kong", + "source": [-118.18192636994041, 33.99192410876543], + "target": [114.18306345846304, 22.30692675357551] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.01136443943716, 38.901495235087054], + [-118.18192636994041, 33.99192410876543] + ] + }, + "properties": { + "sourceName": "Washington, D.C.", + "targetName": "Los Angeles", + "sourceId": "washington,-d.c.", + "targetId": "los-angeles" + } + }, + "sourceId": "washington,-d.c.", + "targetId": "los-angeles", + "source": [-77.01136443943716, 38.901495235087054], + "target": [-118.18192636994041, 33.99192410876543] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.01136443943716, 38.901495235087054], + [-73.98196278740681, 40.75192492259464] + ] + }, + "properties": { + "sourceName": "Washington, D.C.", + "targetName": "New York", + "sourceId": "washington,-d.c.", + "targetId": "new-york" + } + }, + "sourceId": "washington,-d.c.", + "targetId": "new-york", + "source": [-77.01136443943716, 38.901495235087054], + "target": [-73.98196278740681, 40.75192492259464] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.01136443943716, 38.901495235087054], + [37.6135769672714, 55.75410998124818] + ] + }, + "properties": { + "sourceName": "Washington, D.C.", + "targetName": "Moscow", + "sourceId": "washington,-d.c.", + "targetId": "moscow" + } + }, + "sourceId": "washington,-d.c.", + "targetId": "moscow", + "source": [-77.01136443943716, 38.901495235087054], + "target": [37.6135769672714, 55.75410998124818] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.01136443943716, 38.901495235087054], + [-99.1329340602939, 19.444388301415472] + ] + }, + "properties": { + "sourceName": "Washington, D.C.", + "targetName": "Mexico City", + "sourceId": "washington,-d.c.", + "targetId": "mexico-city" + } + }, + "sourceId": "washington,-d.c.", + "targetId": "mexico-city", + "source": [-77.01136443943716, 38.901495235087054], + "target": [-99.1329340602939, 19.444388301415472] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.01136443943716, 38.901495235087054], + [3.389585212598433, 6.445207512093191] + ] + }, + "properties": { + "sourceName": "Washington, D.C.", + "targetName": "Lagos", + "sourceId": "washington,-d.c.", + "targetId": "lagos" + } + }, + "sourceId": "washington,-d.c.", + "targetId": "lagos", + "source": [-77.01136443943716, 38.901495235087054], + "target": [3.389585212598433, 6.445207512093191] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.01136443943716, 38.901495235087054], + [116.38633982565943, 39.93083808990906] + ] + }, + "properties": { + "sourceName": "Washington, D.C.", + "targetName": "Beijing", + "sourceId": "washington,-d.c.", + "targetId": "beijing" + } + }, + "sourceId": "washington,-d.c.", + "targetId": "beijing", + "source": [-77.01136443943716, 38.901495235087054], + "target": [116.38633982565943, 39.93083808990906] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.01136443943716, 38.901495235087054], + [106.82749176247012, -6.172471846798885] + ] + }, + "properties": { + "sourceName": "Washington, D.C.", + "targetName": "Jakarta", + "sourceId": "washington,-d.c.", + "targetId": "jakarta" + } + }, + "sourceId": "washington,-d.c.", + "targetId": "jakarta", + "source": [-77.01136443943716, 38.901495235087054], + "target": [106.82749176247012, -6.172471846798885] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.01136443943716, 38.901495235087054], + [121.43455881982015, 31.218398311228327] + ] + }, + "properties": { + "sourceName": "Washington, D.C.", + "targetName": "Shanghai", + "sourceId": "washington,-d.c.", + "targetId": "shanghai" + } + }, + "sourceId": "washington,-d.c.", + "targetId": "shanghai", + "source": [-77.01136443943716, 38.901495235087054], + "target": [121.43455881982015, 31.218398311228327] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.01136443943716, 38.901495235087054], + [139.74946157054467, 35.686962764371174] + ] + }, + "properties": { + "sourceName": "Washington, D.C.", + "targetName": "Tokyo", + "sourceId": "washington,-d.c.", + "targetId": "tokyo" + } + }, + "sourceId": "washington,-d.c.", + "targetId": "tokyo", + "source": [-77.01136443943716, 38.901495235087054], + "target": [139.74946157054467, 35.686962764371174] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.01136443943716, 38.901495235087054], + [72.85504343876647, 19.0189362343566] + ] + }, + "properties": { + "sourceName": "Washington, D.C.", + "targetName": "Mumbai", + "sourceId": "washington,-d.c.", + "targetId": "mumbai" + } + }, + "sourceId": "washington,-d.c.", + "targetId": "mumbai", + "source": [-77.01136443943716, 38.901495235087054], + "target": [72.85504343876647, 19.0189362343566] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.01136443943716, 38.901495235087054], + [88.32272979950551, 22.49691515689642] + ] + }, + "properties": { + "sourceName": "Washington, D.C.", + "targetName": "Kolkata", + "sourceId": "washington,-d.c.", + "targetId": "kolkata" + } + }, + "sourceId": "washington,-d.c.", + "targetId": "kolkata", + "source": [-77.01136443943716, 38.901495235087054], + "target": [88.32272979950551, 22.49691515689642] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.01136443943716, 38.901495235087054], + [-43.22696665284366, -22.923077315615956] + ] + }, + "properties": { + "sourceName": "Washington, D.C.", + "targetName": "Rio de Janeiro", + "sourceId": "washington,-d.c.", + "targetId": "rio-de-janeiro" + } + }, + "sourceId": "washington,-d.c.", + "targetId": "rio-de-janeiro", + "source": [-77.01136443943716, 38.901495235087054], + "target": [-43.22696665284366, -22.923077315615956] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.01136443943716, 38.901495235087054], + [-46.62696583905523, -23.55673372837896] + ] + }, + "properties": { + "sourceName": "Washington, D.C.", + "targetName": "Sao Paulo", + "sourceId": "washington,-d.c.", + "targetId": "sao-paulo" + } + }, + "sourceId": "washington,-d.c.", + "targetId": "sao-paulo", + "source": [-77.01136443943716, 38.901495235087054], + "target": [-46.62696583905523, -23.55673372837896] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.01136443943716, 38.901495235087054], + [103.85387481909902, 1.294979325105942] + ] + }, + "properties": { + "sourceName": "Washington, D.C.", + "targetName": "Singapore", + "sourceId": "washington,-d.c.", + "targetId": "singapore" + } + }, + "sourceId": "washington,-d.c.", + "targetId": "singapore", + "source": [-77.01136443943716, 38.901495235087054], + "target": [103.85387481909902, 1.294979325105942] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.01136443943716, 38.901495235087054], + [114.18306345846304, 22.30692675357551] + ] + }, + "properties": { + "sourceName": "Washington, D.C.", + "targetName": "Hong Kong", + "sourceId": "washington,-d.c.", + "targetId": "hong-kong" + } + }, + "sourceId": "washington,-d.c.", + "targetId": "hong-kong", + "source": [-77.01136443943716, 38.901495235087054], + "target": [114.18306345846304, 22.30692675357551] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-73.98196278740681, 40.75192492259464], + [-118.18192636994041, 33.99192410876543] + ] + }, + "properties": { + "sourceName": "New York", + "targetName": "Los Angeles", + "sourceId": "new-york", + "targetId": "los-angeles" + } + }, + "sourceId": "new-york", + "targetId": "los-angeles", + "source": [-73.98196278740681, 40.75192492259464], + "target": [-118.18192636994041, 33.99192410876543] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-73.98196278740681, 40.75192492259464], + [-77.01136443943716, 38.901495235087054] + ] + }, + "properties": { + "sourceName": "New York", + "targetName": "Washington, D.C.", + "sourceId": "new-york", + "targetId": "washington,-d.c." + } + }, + "sourceId": "new-york", + "targetId": "washington,-d.c.", + "source": [-73.98196278740681, 40.75192492259464], + "target": [-77.01136443943716, 38.901495235087054] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-73.98196278740681, 40.75192492259464], + [37.6135769672714, 55.75410998124818] + ] + }, + "properties": { + "sourceName": "New York", + "targetName": "Moscow", + "sourceId": "new-york", + "targetId": "moscow" + } + }, + "sourceId": "new-york", + "targetId": "moscow", + "source": [-73.98196278740681, 40.75192492259464], + "target": [37.6135769672714, 55.75410998124818] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-73.98196278740681, 40.75192492259464], + [-99.1329340602939, 19.444388301415472] + ] + }, + "properties": { + "sourceName": "New York", + "targetName": "Mexico City", + "sourceId": "new-york", + "targetId": "mexico-city" + } + }, + "sourceId": "new-york", + "targetId": "mexico-city", + "source": [-73.98196278740681, 40.75192492259464], + "target": [-99.1329340602939, 19.444388301415472] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-73.98196278740681, 40.75192492259464], + [3.389585212598433, 6.445207512093191] + ] + }, + "properties": { + "sourceName": "New York", + "targetName": "Lagos", + "sourceId": "new-york", + "targetId": "lagos" + } + }, + "sourceId": "new-york", + "targetId": "lagos", + "source": [-73.98196278740681, 40.75192492259464], + "target": [3.389585212598433, 6.445207512093191] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-73.98196278740681, 40.75192492259464], + [116.38633982565943, 39.93083808990906] + ] + }, + "properties": { + "sourceName": "New York", + "targetName": "Beijing", + "sourceId": "new-york", + "targetId": "beijing" + } + }, + "sourceId": "new-york", + "targetId": "beijing", + "source": [-73.98196278740681, 40.75192492259464], + "target": [116.38633982565943, 39.93083808990906] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-73.98196278740681, 40.75192492259464], + [106.82749176247012, -6.172471846798885] + ] + }, + "properties": { + "sourceName": "New York", + "targetName": "Jakarta", + "sourceId": "new-york", + "targetId": "jakarta" + } + }, + "sourceId": "new-york", + "targetId": "jakarta", + "source": [-73.98196278740681, 40.75192492259464], + "target": [106.82749176247012, -6.172471846798885] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-73.98196278740681, 40.75192492259464], + [121.43455881982015, 31.218398311228327] + ] + }, + "properties": { + "sourceName": "New York", + "targetName": "Shanghai", + "sourceId": "new-york", + "targetId": "shanghai" + } + }, + "sourceId": "new-york", + "targetId": "shanghai", + "source": [-73.98196278740681, 40.75192492259464], + "target": [121.43455881982015, 31.218398311228327] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-73.98196278740681, 40.75192492259464], + [139.74946157054467, 35.686962764371174] + ] + }, + "properties": { + "sourceName": "New York", + "targetName": "Tokyo", + "sourceId": "new-york", + "targetId": "tokyo" + } + }, + "sourceId": "new-york", + "targetId": "tokyo", + "source": [-73.98196278740681, 40.75192492259464], + "target": [139.74946157054467, 35.686962764371174] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-73.98196278740681, 40.75192492259464], + [72.85504343876647, 19.0189362343566] + ] + }, + "properties": { + "sourceName": "New York", + "targetName": "Mumbai", + "sourceId": "new-york", + "targetId": "mumbai" + } + }, + "sourceId": "new-york", + "targetId": "mumbai", + "source": [-73.98196278740681, 40.75192492259464], + "target": [72.85504343876647, 19.0189362343566] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-73.98196278740681, 40.75192492259464], + [88.32272979950551, 22.49691515689642] + ] + }, + "properties": { + "sourceName": "New York", + "targetName": "Kolkata", + "sourceId": "new-york", + "targetId": "kolkata" + } + }, + "sourceId": "new-york", + "targetId": "kolkata", + "source": [-73.98196278740681, 40.75192492259464], + "target": [88.32272979950551, 22.49691515689642] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-73.98196278740681, 40.75192492259464], + [-43.22696665284366, -22.923077315615956] + ] + }, + "properties": { + "sourceName": "New York", + "targetName": "Rio de Janeiro", + "sourceId": "new-york", + "targetId": "rio-de-janeiro" + } + }, + "sourceId": "new-york", + "targetId": "rio-de-janeiro", + "source": [-73.98196278740681, 40.75192492259464], + "target": [-43.22696665284366, -22.923077315615956] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-73.98196278740681, 40.75192492259464], + [-46.62696583905523, -23.55673372837896] + ] + }, + "properties": { + "sourceName": "New York", + "targetName": "Sao Paulo", + "sourceId": "new-york", + "targetId": "sao-paulo" + } + }, + "sourceId": "new-york", + "targetId": "sao-paulo", + "source": [-73.98196278740681, 40.75192492259464], + "target": [-46.62696583905523, -23.55673372837896] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-73.98196278740681, 40.75192492259464], + [103.85387481909902, 1.294979325105942] + ] + }, + "properties": { + "sourceName": "New York", + "targetName": "Singapore", + "sourceId": "new-york", + "targetId": "singapore" + } + }, + "sourceId": "new-york", + "targetId": "singapore", + "source": [-73.98196278740681, 40.75192492259464], + "target": [103.85387481909902, 1.294979325105942] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-73.98196278740681, 40.75192492259464], + [114.18306345846304, 22.30692675357551] + ] + }, + "properties": { + "sourceName": "New York", + "targetName": "Hong Kong", + "sourceId": "new-york", + "targetId": "hong-kong" + } + }, + "sourceId": "new-york", + "targetId": "hong-kong", + "source": [-73.98196278740681, 40.75192492259464], + "target": [114.18306345846304, 22.30692675357551] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [37.6135769672714, 55.75410998124818], + [-118.18192636994041, 33.99192410876543] + ] + }, + "properties": { + "sourceName": "Moscow", + "targetName": "Los Angeles", + "sourceId": "moscow", + "targetId": "los-angeles" + } + }, + "sourceId": "moscow", + "targetId": "los-angeles", + "source": [37.6135769672714, 55.75410998124818], + "target": [-118.18192636994041, 33.99192410876543] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [37.6135769672714, 55.75410998124818], + [-77.01136443943716, 38.901495235087054] + ] + }, + "properties": { + "sourceName": "Moscow", + "targetName": "Washington, D.C.", + "sourceId": "moscow", + "targetId": "washington,-d.c." + } + }, + "sourceId": "moscow", + "targetId": "washington,-d.c.", + "source": [37.6135769672714, 55.75410998124818], + "target": [-77.01136443943716, 38.901495235087054] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [37.6135769672714, 55.75410998124818], + [-73.98196278740681, 40.75192492259464] + ] + }, + "properties": { + "sourceName": "Moscow", + "targetName": "New York", + "sourceId": "moscow", + "targetId": "new-york" + } + }, + "sourceId": "moscow", + "targetId": "new-york", + "source": [37.6135769672714, 55.75410998124818], + "target": [-73.98196278740681, 40.75192492259464] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [37.6135769672714, 55.75410998124818], + [-99.1329340602939, 19.444388301415472] + ] + }, + "properties": { + "sourceName": "Moscow", + "targetName": "Mexico City", + "sourceId": "moscow", + "targetId": "mexico-city" + } + }, + "sourceId": "moscow", + "targetId": "mexico-city", + "source": [37.6135769672714, 55.75410998124818], + "target": [-99.1329340602939, 19.444388301415472] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [37.6135769672714, 55.75410998124818], + [3.389585212598433, 6.445207512093191] + ] + }, + "properties": { + "sourceName": "Moscow", + "targetName": "Lagos", + "sourceId": "moscow", + "targetId": "lagos" + } + }, + "sourceId": "moscow", + "targetId": "lagos", + "source": [37.6135769672714, 55.75410998124818], + "target": [3.389585212598433, 6.445207512093191] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [37.6135769672714, 55.75410998124818], + [116.38633982565943, 39.93083808990906] + ] + }, + "properties": { + "sourceName": "Moscow", + "targetName": "Beijing", + "sourceId": "moscow", + "targetId": "beijing" + } + }, + "sourceId": "moscow", + "targetId": "beijing", + "source": [37.6135769672714, 55.75410998124818], + "target": [116.38633982565943, 39.93083808990906] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [37.6135769672714, 55.75410998124818], + [106.82749176247012, -6.172471846798885] + ] + }, + "properties": { + "sourceName": "Moscow", + "targetName": "Jakarta", + "sourceId": "moscow", + "targetId": "jakarta" + } + }, + "sourceId": "moscow", + "targetId": "jakarta", + "source": [37.6135769672714, 55.75410998124818], + "target": [106.82749176247012, -6.172471846798885] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [37.6135769672714, 55.75410998124818], + [121.43455881982015, 31.218398311228327] + ] + }, + "properties": { + "sourceName": "Moscow", + "targetName": "Shanghai", + "sourceId": "moscow", + "targetId": "shanghai" + } + }, + "sourceId": "moscow", + "targetId": "shanghai", + "source": [37.6135769672714, 55.75410998124818], + "target": [121.43455881982015, 31.218398311228327] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [37.6135769672714, 55.75410998124818], + [139.74946157054467, 35.686962764371174] + ] + }, + "properties": { + "sourceName": "Moscow", + "targetName": "Tokyo", + "sourceId": "moscow", + "targetId": "tokyo" + } + }, + "sourceId": "moscow", + "targetId": "tokyo", + "source": [37.6135769672714, 55.75410998124818], + "target": [139.74946157054467, 35.686962764371174] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [37.6135769672714, 55.75410998124818], + [72.85504343876647, 19.0189362343566] + ] + }, + "properties": { + "sourceName": "Moscow", + "targetName": "Mumbai", + "sourceId": "moscow", + "targetId": "mumbai" + } + }, + "sourceId": "moscow", + "targetId": "mumbai", + "source": [37.6135769672714, 55.75410998124818], + "target": [72.85504343876647, 19.0189362343566] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [37.6135769672714, 55.75410998124818], + [88.32272979950551, 22.49691515689642] + ] + }, + "properties": { + "sourceName": "Moscow", + "targetName": "Kolkata", + "sourceId": "moscow", + "targetId": "kolkata" + } + }, + "sourceId": "moscow", + "targetId": "kolkata", + "source": [37.6135769672714, 55.75410998124818], + "target": [88.32272979950551, 22.49691515689642] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [37.6135769672714, 55.75410998124818], + [-43.22696665284366, -22.923077315615956] + ] + }, + "properties": { + "sourceName": "Moscow", + "targetName": "Rio de Janeiro", + "sourceId": "moscow", + "targetId": "rio-de-janeiro" + } + }, + "sourceId": "moscow", + "targetId": "rio-de-janeiro", + "source": [37.6135769672714, 55.75410998124818], + "target": [-43.22696665284366, -22.923077315615956] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [37.6135769672714, 55.75410998124818], + [-46.62696583905523, -23.55673372837896] + ] + }, + "properties": { + "sourceName": "Moscow", + "targetName": "Sao Paulo", + "sourceId": "moscow", + "targetId": "sao-paulo" + } + }, + "sourceId": "moscow", + "targetId": "sao-paulo", + "source": [37.6135769672714, 55.75410998124818], + "target": [-46.62696583905523, -23.55673372837896] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [37.6135769672714, 55.75410998124818], + [103.85387481909902, 1.294979325105942] + ] + }, + "properties": { + "sourceName": "Moscow", + "targetName": "Singapore", + "sourceId": "moscow", + "targetId": "singapore" + } + }, + "sourceId": "moscow", + "targetId": "singapore", + "source": [37.6135769672714, 55.75410998124818], + "target": [103.85387481909902, 1.294979325105942] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [37.6135769672714, 55.75410998124818], + [114.18306345846304, 22.30692675357551] + ] + }, + "properties": { + "sourceName": "Moscow", + "targetName": "Hong Kong", + "sourceId": "moscow", + "targetId": "hong-kong" + } + }, + "sourceId": "moscow", + "targetId": "hong-kong", + "source": [37.6135769672714, 55.75410998124818], + "target": [114.18306345846304, 22.30692675357551] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-99.1329340602939, 19.444388301415472], + [-118.18192636994041, 33.99192410876543] + ] + }, + "properties": { + "sourceName": "Mexico City", + "targetName": "Los Angeles", + "sourceId": "mexico-city", + "targetId": "los-angeles" + } + }, + "sourceId": "mexico-city", + "targetId": "los-angeles", + "source": [-99.1329340602939, 19.444388301415472], + "target": [-118.18192636994041, 33.99192410876543] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-99.1329340602939, 19.444388301415472], + [-77.01136443943716, 38.901495235087054] + ] + }, + "properties": { + "sourceName": "Mexico City", + "targetName": "Washington, D.C.", + "sourceId": "mexico-city", + "targetId": "washington,-d.c." + } + }, + "sourceId": "mexico-city", + "targetId": "washington,-d.c.", + "source": [-99.1329340602939, 19.444388301415472], + "target": [-77.01136443943716, 38.901495235087054] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-99.1329340602939, 19.444388301415472], + [-73.98196278740681, 40.75192492259464] + ] + }, + "properties": { + "sourceName": "Mexico City", + "targetName": "New York", + "sourceId": "mexico-city", + "targetId": "new-york" + } + }, + "sourceId": "mexico-city", + "targetId": "new-york", + "source": [-99.1329340602939, 19.444388301415472], + "target": [-73.98196278740681, 40.75192492259464] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-99.1329340602939, 19.444388301415472], + [37.6135769672714, 55.75410998124818] + ] + }, + "properties": { + "sourceName": "Mexico City", + "targetName": "Moscow", + "sourceId": "mexico-city", + "targetId": "moscow" + } + }, + "sourceId": "mexico-city", + "targetId": "moscow", + "source": [-99.1329340602939, 19.444388301415472], + "target": [37.6135769672714, 55.75410998124818] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-99.1329340602939, 19.444388301415472], + [3.389585212598433, 6.445207512093191] + ] + }, + "properties": { + "sourceName": "Mexico City", + "targetName": "Lagos", + "sourceId": "mexico-city", + "targetId": "lagos" + } + }, + "sourceId": "mexico-city", + "targetId": "lagos", + "source": [-99.1329340602939, 19.444388301415472], + "target": [3.389585212598433, 6.445207512093191] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-99.1329340602939, 19.444388301415472], + [116.38633982565943, 39.93083808990906] + ] + }, + "properties": { + "sourceName": "Mexico City", + "targetName": "Beijing", + "sourceId": "mexico-city", + "targetId": "beijing" + } + }, + "sourceId": "mexico-city", + "targetId": "beijing", + "source": [-99.1329340602939, 19.444388301415472], + "target": [116.38633982565943, 39.93083808990906] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-99.1329340602939, 19.444388301415472], + [106.82749176247012, -6.172471846798885] + ] + }, + "properties": { + "sourceName": "Mexico City", + "targetName": "Jakarta", + "sourceId": "mexico-city", + "targetId": "jakarta" + } + }, + "sourceId": "mexico-city", + "targetId": "jakarta", + "source": [-99.1329340602939, 19.444388301415472], + "target": [106.82749176247012, -6.172471846798885] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-99.1329340602939, 19.444388301415472], + [121.43455881982015, 31.218398311228327] + ] + }, + "properties": { + "sourceName": "Mexico City", + "targetName": "Shanghai", + "sourceId": "mexico-city", + "targetId": "shanghai" + } + }, + "sourceId": "mexico-city", + "targetId": "shanghai", + "source": [-99.1329340602939, 19.444388301415472], + "target": [121.43455881982015, 31.218398311228327] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-99.1329340602939, 19.444388301415472], + [139.74946157054467, 35.686962764371174] + ] + }, + "properties": { + "sourceName": "Mexico City", + "targetName": "Tokyo", + "sourceId": "mexico-city", + "targetId": "tokyo" + } + }, + "sourceId": "mexico-city", + "targetId": "tokyo", + "source": [-99.1329340602939, 19.444388301415472], + "target": [139.74946157054467, 35.686962764371174] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-99.1329340602939, 19.444388301415472], + [72.85504343876647, 19.0189362343566] + ] + }, + "properties": { + "sourceName": "Mexico City", + "targetName": "Mumbai", + "sourceId": "mexico-city", + "targetId": "mumbai" + } + }, + "sourceId": "mexico-city", + "targetId": "mumbai", + "source": [-99.1329340602939, 19.444388301415472], + "target": [72.85504343876647, 19.0189362343566] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-99.1329340602939, 19.444388301415472], + [88.32272979950551, 22.49691515689642] + ] + }, + "properties": { + "sourceName": "Mexico City", + "targetName": "Kolkata", + "sourceId": "mexico-city", + "targetId": "kolkata" + } + }, + "sourceId": "mexico-city", + "targetId": "kolkata", + "source": [-99.1329340602939, 19.444388301415472], + "target": [88.32272979950551, 22.49691515689642] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-99.1329340602939, 19.444388301415472], + [-43.22696665284366, -22.923077315615956] + ] + }, + "properties": { + "sourceName": "Mexico City", + "targetName": "Rio de Janeiro", + "sourceId": "mexico-city", + "targetId": "rio-de-janeiro" + } + }, + "sourceId": "mexico-city", + "targetId": "rio-de-janeiro", + "source": [-99.1329340602939, 19.444388301415472], + "target": [-43.22696665284366, -22.923077315615956] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-99.1329340602939, 19.444388301415472], + [-46.62696583905523, -23.55673372837896] + ] + }, + "properties": { + "sourceName": "Mexico City", + "targetName": "Sao Paulo", + "sourceId": "mexico-city", + "targetId": "sao-paulo" + } + }, + "sourceId": "mexico-city", + "targetId": "sao-paulo", + "source": [-99.1329340602939, 19.444388301415472], + "target": [-46.62696583905523, -23.55673372837896] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-99.1329340602939, 19.444388301415472], + [103.85387481909902, 1.294979325105942] + ] + }, + "properties": { + "sourceName": "Mexico City", + "targetName": "Singapore", + "sourceId": "mexico-city", + "targetId": "singapore" + } + }, + "sourceId": "mexico-city", + "targetId": "singapore", + "source": [-99.1329340602939, 19.444388301415472], + "target": [103.85387481909902, 1.294979325105942] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-99.1329340602939, 19.444388301415472], + [114.18306345846304, 22.30692675357551] + ] + }, + "properties": { + "sourceName": "Mexico City", + "targetName": "Hong Kong", + "sourceId": "mexico-city", + "targetId": "hong-kong" + } + }, + "sourceId": "mexico-city", + "targetId": "hong-kong", + "source": [-99.1329340602939, 19.444388301415472], + "target": [114.18306345846304, 22.30692675357551] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [3.389585212598433, 6.445207512093191], + [-118.18192636994041, 33.99192410876543] + ] + }, + "properties": { + "sourceName": "Lagos", + "targetName": "Los Angeles", + "sourceId": "lagos", + "targetId": "los-angeles" + } + }, + "sourceId": "lagos", + "targetId": "los-angeles", + "source": [3.389585212598433, 6.445207512093191], + "target": [-118.18192636994041, 33.99192410876543] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [3.389585212598433, 6.445207512093191], + [-77.01136443943716, 38.901495235087054] + ] + }, + "properties": { + "sourceName": "Lagos", + "targetName": "Washington, D.C.", + "sourceId": "lagos", + "targetId": "washington,-d.c." + } + }, + "sourceId": "lagos", + "targetId": "washington,-d.c.", + "source": [3.389585212598433, 6.445207512093191], + "target": [-77.01136443943716, 38.901495235087054] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [3.389585212598433, 6.445207512093191], + [-73.98196278740681, 40.75192492259464] + ] + }, + "properties": { + "sourceName": "Lagos", + "targetName": "New York", + "sourceId": "lagos", + "targetId": "new-york" + } + }, + "sourceId": "lagos", + "targetId": "new-york", + "source": [3.389585212598433, 6.445207512093191], + "target": [-73.98196278740681, 40.75192492259464] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [3.389585212598433, 6.445207512093191], + [37.6135769672714, 55.75410998124818] + ] + }, + "properties": { + "sourceName": "Lagos", + "targetName": "Moscow", + "sourceId": "lagos", + "targetId": "moscow" + } + }, + "sourceId": "lagos", + "targetId": "moscow", + "source": [3.389585212598433, 6.445207512093191], + "target": [37.6135769672714, 55.75410998124818] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [3.389585212598433, 6.445207512093191], + [-99.1329340602939, 19.444388301415472] + ] + }, + "properties": { + "sourceName": "Lagos", + "targetName": "Mexico City", + "sourceId": "lagos", + "targetId": "mexico-city" + } + }, + "sourceId": "lagos", + "targetId": "mexico-city", + "source": [3.389585212598433, 6.445207512093191], + "target": [-99.1329340602939, 19.444388301415472] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [3.389585212598433, 6.445207512093191], + [116.38633982565943, 39.93083808990906] + ] + }, + "properties": { + "sourceName": "Lagos", + "targetName": "Beijing", + "sourceId": "lagos", + "targetId": "beijing" + } + }, + "sourceId": "lagos", + "targetId": "beijing", + "source": [3.389585212598433, 6.445207512093191], + "target": [116.38633982565943, 39.93083808990906] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [3.389585212598433, 6.445207512093191], + [106.82749176247012, -6.172471846798885] + ] + }, + "properties": { + "sourceName": "Lagos", + "targetName": "Jakarta", + "sourceId": "lagos", + "targetId": "jakarta" + } + }, + "sourceId": "lagos", + "targetId": "jakarta", + "source": [3.389585212598433, 6.445207512093191], + "target": [106.82749176247012, -6.172471846798885] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [3.389585212598433, 6.445207512093191], + [121.43455881982015, 31.218398311228327] + ] + }, + "properties": { + "sourceName": "Lagos", + "targetName": "Shanghai", + "sourceId": "lagos", + "targetId": "shanghai" + } + }, + "sourceId": "lagos", + "targetId": "shanghai", + "source": [3.389585212598433, 6.445207512093191], + "target": [121.43455881982015, 31.218398311228327] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [3.389585212598433, 6.445207512093191], + [139.74946157054467, 35.686962764371174] + ] + }, + "properties": { + "sourceName": "Lagos", + "targetName": "Tokyo", + "sourceId": "lagos", + "targetId": "tokyo" + } + }, + "sourceId": "lagos", + "targetId": "tokyo", + "source": [3.389585212598433, 6.445207512093191], + "target": [139.74946157054467, 35.686962764371174] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [3.389585212598433, 6.445207512093191], + [72.85504343876647, 19.0189362343566] + ] + }, + "properties": { + "sourceName": "Lagos", + "targetName": "Mumbai", + "sourceId": "lagos", + "targetId": "mumbai" + } + }, + "sourceId": "lagos", + "targetId": "mumbai", + "source": [3.389585212598433, 6.445207512093191], + "target": [72.85504343876647, 19.0189362343566] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [3.389585212598433, 6.445207512093191], + [88.32272979950551, 22.49691515689642] + ] + }, + "properties": { + "sourceName": "Lagos", + "targetName": "Kolkata", + "sourceId": "lagos", + "targetId": "kolkata" + } + }, + "sourceId": "lagos", + "targetId": "kolkata", + "source": [3.389585212598433, 6.445207512093191], + "target": [88.32272979950551, 22.49691515689642] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [3.389585212598433, 6.445207512093191], + [-43.22696665284366, -22.923077315615956] + ] + }, + "properties": { + "sourceName": "Lagos", + "targetName": "Rio de Janeiro", + "sourceId": "lagos", + "targetId": "rio-de-janeiro" + } + }, + "sourceId": "lagos", + "targetId": "rio-de-janeiro", + "source": [3.389585212598433, 6.445207512093191], + "target": [-43.22696665284366, -22.923077315615956] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [3.389585212598433, 6.445207512093191], + [-46.62696583905523, -23.55673372837896] + ] + }, + "properties": { + "sourceName": "Lagos", + "targetName": "Sao Paulo", + "sourceId": "lagos", + "targetId": "sao-paulo" + } + }, + "sourceId": "lagos", + "targetId": "sao-paulo", + "source": [3.389585212598433, 6.445207512093191], + "target": [-46.62696583905523, -23.55673372837896] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [3.389585212598433, 6.445207512093191], + [103.85387481909902, 1.294979325105942] + ] + }, + "properties": { + "sourceName": "Lagos", + "targetName": "Singapore", + "sourceId": "lagos", + "targetId": "singapore" + } + }, + "sourceId": "lagos", + "targetId": "singapore", + "source": [3.389585212598433, 6.445207512093191], + "target": [103.85387481909902, 1.294979325105942] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [3.389585212598433, 6.445207512093191], + [114.18306345846304, 22.30692675357551] + ] + }, + "properties": { + "sourceName": "Lagos", + "targetName": "Hong Kong", + "sourceId": "lagos", + "targetId": "hong-kong" + } + }, + "sourceId": "lagos", + "targetId": "hong-kong", + "source": [3.389585212598433, 6.445207512093191], + "target": [114.18306345846304, 22.30692675357551] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [116.38633982565943, 39.93083808990906], + [-118.18192636994041, 33.99192410876543] + ] + }, + "properties": { + "sourceName": "Beijing", + "targetName": "Los Angeles", + "sourceId": "beijing", + "targetId": "los-angeles" + } + }, + "sourceId": "beijing", + "targetId": "los-angeles", + "source": [116.38633982565943, 39.93083808990906], + "target": [-118.18192636994041, 33.99192410876543] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [116.38633982565943, 39.93083808990906], + [-77.01136443943716, 38.901495235087054] + ] + }, + "properties": { + "sourceName": "Beijing", + "targetName": "Washington, D.C.", + "sourceId": "beijing", + "targetId": "washington,-d.c." + } + }, + "sourceId": "beijing", + "targetId": "washington,-d.c.", + "source": [116.38633982565943, 39.93083808990906], + "target": [-77.01136443943716, 38.901495235087054] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [116.38633982565943, 39.93083808990906], + [-73.98196278740681, 40.75192492259464] + ] + }, + "properties": { + "sourceName": "Beijing", + "targetName": "New York", + "sourceId": "beijing", + "targetId": "new-york" + } + }, + "sourceId": "beijing", + "targetId": "new-york", + "source": [116.38633982565943, 39.93083808990906], + "target": [-73.98196278740681, 40.75192492259464] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [116.38633982565943, 39.93083808990906], + [37.6135769672714, 55.75410998124818] + ] + }, + "properties": { + "sourceName": "Beijing", + "targetName": "Moscow", + "sourceId": "beijing", + "targetId": "moscow" + } + }, + "sourceId": "beijing", + "targetId": "moscow", + "source": [116.38633982565943, 39.93083808990906], + "target": [37.6135769672714, 55.75410998124818] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [116.38633982565943, 39.93083808990906], + [-99.1329340602939, 19.444388301415472] + ] + }, + "properties": { + "sourceName": "Beijing", + "targetName": "Mexico City", + "sourceId": "beijing", + "targetId": "mexico-city" + } + }, + "sourceId": "beijing", + "targetId": "mexico-city", + "source": [116.38633982565943, 39.93083808990906], + "target": [-99.1329340602939, 19.444388301415472] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [116.38633982565943, 39.93083808990906], + [3.389585212598433, 6.445207512093191] + ] + }, + "properties": { + "sourceName": "Beijing", + "targetName": "Lagos", + "sourceId": "beijing", + "targetId": "lagos" + } + }, + "sourceId": "beijing", + "targetId": "lagos", + "source": [116.38633982565943, 39.93083808990906], + "target": [3.389585212598433, 6.445207512093191] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [116.38633982565943, 39.93083808990906], + [106.82749176247012, -6.172471846798885] + ] + }, + "properties": { + "sourceName": "Beijing", + "targetName": "Jakarta", + "sourceId": "beijing", + "targetId": "jakarta" + } + }, + "sourceId": "beijing", + "targetId": "jakarta", + "source": [116.38633982565943, 39.93083808990906], + "target": [106.82749176247012, -6.172471846798885] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [116.38633982565943, 39.93083808990906], + [121.43455881982015, 31.218398311228327] + ] + }, + "properties": { + "sourceName": "Beijing", + "targetName": "Shanghai", + "sourceId": "beijing", + "targetId": "shanghai" + } + }, + "sourceId": "beijing", + "targetId": "shanghai", + "source": [116.38633982565943, 39.93083808990906], + "target": [121.43455881982015, 31.218398311228327] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [116.38633982565943, 39.93083808990906], + [139.74946157054467, 35.686962764371174] + ] + }, + "properties": { + "sourceName": "Beijing", + "targetName": "Tokyo", + "sourceId": "beijing", + "targetId": "tokyo" + } + }, + "sourceId": "beijing", + "targetId": "tokyo", + "source": [116.38633982565943, 39.93083808990906], + "target": [139.74946157054467, 35.686962764371174] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [116.38633982565943, 39.93083808990906], + [72.85504343876647, 19.0189362343566] + ] + }, + "properties": { + "sourceName": "Beijing", + "targetName": "Mumbai", + "sourceId": "beijing", + "targetId": "mumbai" + } + }, + "sourceId": "beijing", + "targetId": "mumbai", + "source": [116.38633982565943, 39.93083808990906], + "target": [72.85504343876647, 19.0189362343566] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [116.38633982565943, 39.93083808990906], + [88.32272979950551, 22.49691515689642] + ] + }, + "properties": { + "sourceName": "Beijing", + "targetName": "Kolkata", + "sourceId": "beijing", + "targetId": "kolkata" + } + }, + "sourceId": "beijing", + "targetId": "kolkata", + "source": [116.38633982565943, 39.93083808990906], + "target": [88.32272979950551, 22.49691515689642] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [116.38633982565943, 39.93083808990906], + [-43.22696665284366, -22.923077315615956] + ] + }, + "properties": { + "sourceName": "Beijing", + "targetName": "Rio de Janeiro", + "sourceId": "beijing", + "targetId": "rio-de-janeiro" + } + }, + "sourceId": "beijing", + "targetId": "rio-de-janeiro", + "source": [116.38633982565943, 39.93083808990906], + "target": [-43.22696665284366, -22.923077315615956] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [116.38633982565943, 39.93083808990906], + [-46.62696583905523, -23.55673372837896] + ] + }, + "properties": { + "sourceName": "Beijing", + "targetName": "Sao Paulo", + "sourceId": "beijing", + "targetId": "sao-paulo" + } + }, + "sourceId": "beijing", + "targetId": "sao-paulo", + "source": [116.38633982565943, 39.93083808990906], + "target": [-46.62696583905523, -23.55673372837896] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [116.38633982565943, 39.93083808990906], + [103.85387481909902, 1.294979325105942] + ] + }, + "properties": { + "sourceName": "Beijing", + "targetName": "Singapore", + "sourceId": "beijing", + "targetId": "singapore" + } + }, + "sourceId": "beijing", + "targetId": "singapore", + "source": [116.38633982565943, 39.93083808990906], + "target": [103.85387481909902, 1.294979325105942] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [116.38633982565943, 39.93083808990906], + [114.18306345846304, 22.30692675357551] + ] + }, + "properties": { + "sourceName": "Beijing", + "targetName": "Hong Kong", + "sourceId": "beijing", + "targetId": "hong-kong" + } + }, + "sourceId": "beijing", + "targetId": "hong-kong", + "source": [116.38633982565943, 39.93083808990906], + "target": [114.18306345846304, 22.30692675357551] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [106.82749176247012, -6.172471846798885], + [-118.18192636994041, 33.99192410876543] + ] + }, + "properties": { + "sourceName": "Jakarta", + "targetName": "Los Angeles", + "sourceId": "jakarta", + "targetId": "los-angeles" + } + }, + "sourceId": "jakarta", + "targetId": "los-angeles", + "source": [106.82749176247012, -6.172471846798885], + "target": [-118.18192636994041, 33.99192410876543] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [106.82749176247012, -6.172471846798885], + [-77.01136443943716, 38.901495235087054] + ] + }, + "properties": { + "sourceName": "Jakarta", + "targetName": "Washington, D.C.", + "sourceId": "jakarta", + "targetId": "washington,-d.c." + } + }, + "sourceId": "jakarta", + "targetId": "washington,-d.c.", + "source": [106.82749176247012, -6.172471846798885], + "target": [-77.01136443943716, 38.901495235087054] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [106.82749176247012, -6.172471846798885], + [-73.98196278740681, 40.75192492259464] + ] + }, + "properties": { + "sourceName": "Jakarta", + "targetName": "New York", + "sourceId": "jakarta", + "targetId": "new-york" + } + }, + "sourceId": "jakarta", + "targetId": "new-york", + "source": [106.82749176247012, -6.172471846798885], + "target": [-73.98196278740681, 40.75192492259464] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [106.82749176247012, -6.172471846798885], + [37.6135769672714, 55.75410998124818] + ] + }, + "properties": { + "sourceName": "Jakarta", + "targetName": "Moscow", + "sourceId": "jakarta", + "targetId": "moscow" + } + }, + "sourceId": "jakarta", + "targetId": "moscow", + "source": [106.82749176247012, -6.172471846798885], + "target": [37.6135769672714, 55.75410998124818] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [106.82749176247012, -6.172471846798885], + [-99.1329340602939, 19.444388301415472] + ] + }, + "properties": { + "sourceName": "Jakarta", + "targetName": "Mexico City", + "sourceId": "jakarta", + "targetId": "mexico-city" + } + }, + "sourceId": "jakarta", + "targetId": "mexico-city", + "source": [106.82749176247012, -6.172471846798885], + "target": [-99.1329340602939, 19.444388301415472] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [106.82749176247012, -6.172471846798885], + [3.389585212598433, 6.445207512093191] + ] + }, + "properties": { + "sourceName": "Jakarta", + "targetName": "Lagos", + "sourceId": "jakarta", + "targetId": "lagos" + } + }, + "sourceId": "jakarta", + "targetId": "lagos", + "source": [106.82749176247012, -6.172471846798885], + "target": [3.389585212598433, 6.445207512093191] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [106.82749176247012, -6.172471846798885], + [116.38633982565943, 39.93083808990906] + ] + }, + "properties": { + "sourceName": "Jakarta", + "targetName": "Beijing", + "sourceId": "jakarta", + "targetId": "beijing" + } + }, + "sourceId": "jakarta", + "targetId": "beijing", + "source": [106.82749176247012, -6.172471846798885], + "target": [116.38633982565943, 39.93083808990906] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [106.82749176247012, -6.172471846798885], + [121.43455881982015, 31.218398311228327] + ] + }, + "properties": { + "sourceName": "Jakarta", + "targetName": "Shanghai", + "sourceId": "jakarta", + "targetId": "shanghai" + } + }, + "sourceId": "jakarta", + "targetId": "shanghai", + "source": [106.82749176247012, -6.172471846798885], + "target": [121.43455881982015, 31.218398311228327] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [106.82749176247012, -6.172471846798885], + [139.74946157054467, 35.686962764371174] + ] + }, + "properties": { + "sourceName": "Jakarta", + "targetName": "Tokyo", + "sourceId": "jakarta", + "targetId": "tokyo" + } + }, + "sourceId": "jakarta", + "targetId": "tokyo", + "source": [106.82749176247012, -6.172471846798885], + "target": [139.74946157054467, 35.686962764371174] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [106.82749176247012, -6.172471846798885], + [72.85504343876647, 19.0189362343566] + ] + }, + "properties": { + "sourceName": "Jakarta", + "targetName": "Mumbai", + "sourceId": "jakarta", + "targetId": "mumbai" + } + }, + "sourceId": "jakarta", + "targetId": "mumbai", + "source": [106.82749176247012, -6.172471846798885], + "target": [72.85504343876647, 19.0189362343566] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [106.82749176247012, -6.172471846798885], + [88.32272979950551, 22.49691515689642] + ] + }, + "properties": { + "sourceName": "Jakarta", + "targetName": "Kolkata", + "sourceId": "jakarta", + "targetId": "kolkata" + } + }, + "sourceId": "jakarta", + "targetId": "kolkata", + "source": [106.82749176247012, -6.172471846798885], + "target": [88.32272979950551, 22.49691515689642] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [106.82749176247012, -6.172471846798885], + [-43.22696665284366, -22.923077315615956] + ] + }, + "properties": { + "sourceName": "Jakarta", + "targetName": "Rio de Janeiro", + "sourceId": "jakarta", + "targetId": "rio-de-janeiro" + } + }, + "sourceId": "jakarta", + "targetId": "rio-de-janeiro", + "source": [106.82749176247012, -6.172471846798885], + "target": [-43.22696665284366, -22.923077315615956] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [106.82749176247012, -6.172471846798885], + [-46.62696583905523, -23.55673372837896] + ] + }, + "properties": { + "sourceName": "Jakarta", + "targetName": "Sao Paulo", + "sourceId": "jakarta", + "targetId": "sao-paulo" + } + }, + "sourceId": "jakarta", + "targetId": "sao-paulo", + "source": [106.82749176247012, -6.172471846798885], + "target": [-46.62696583905523, -23.55673372837896] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [106.82749176247012, -6.172471846798885], + [103.85387481909902, 1.294979325105942] + ] + }, + "properties": { + "sourceName": "Jakarta", + "targetName": "Singapore", + "sourceId": "jakarta", + "targetId": "singapore" + } + }, + "sourceId": "jakarta", + "targetId": "singapore", + "source": [106.82749176247012, -6.172471846798885], + "target": [103.85387481909902, 1.294979325105942] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [106.82749176247012, -6.172471846798885], + [114.18306345846304, 22.30692675357551] + ] + }, + "properties": { + "sourceName": "Jakarta", + "targetName": "Hong Kong", + "sourceId": "jakarta", + "targetId": "hong-kong" + } + }, + "sourceId": "jakarta", + "targetId": "hong-kong", + "source": [106.82749176247012, -6.172471846798885], + "target": [114.18306345846304, 22.30692675357551] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [121.43455881982015, 31.218398311228327], + [-118.18192636994041, 33.99192410876543] + ] + }, + "properties": { + "sourceName": "Shanghai", + "targetName": "Los Angeles", + "sourceId": "shanghai", + "targetId": "los-angeles" + } + }, + "sourceId": "shanghai", + "targetId": "los-angeles", + "source": [121.43455881982015, 31.218398311228327], + "target": [-118.18192636994041, 33.99192410876543] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [121.43455881982015, 31.218398311228327], + [-77.01136443943716, 38.901495235087054] + ] + }, + "properties": { + "sourceName": "Shanghai", + "targetName": "Washington, D.C.", + "sourceId": "shanghai", + "targetId": "washington,-d.c." + } + }, + "sourceId": "shanghai", + "targetId": "washington,-d.c.", + "source": [121.43455881982015, 31.218398311228327], + "target": [-77.01136443943716, 38.901495235087054] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [121.43455881982015, 31.218398311228327], + [-73.98196278740681, 40.75192492259464] + ] + }, + "properties": { + "sourceName": "Shanghai", + "targetName": "New York", + "sourceId": "shanghai", + "targetId": "new-york" + } + }, + "sourceId": "shanghai", + "targetId": "new-york", + "source": [121.43455881982015, 31.218398311228327], + "target": [-73.98196278740681, 40.75192492259464] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [121.43455881982015, 31.218398311228327], + [37.6135769672714, 55.75410998124818] + ] + }, + "properties": { + "sourceName": "Shanghai", + "targetName": "Moscow", + "sourceId": "shanghai", + "targetId": "moscow" + } + }, + "sourceId": "shanghai", + "targetId": "moscow", + "source": [121.43455881982015, 31.218398311228327], + "target": [37.6135769672714, 55.75410998124818] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [121.43455881982015, 31.218398311228327], + [-99.1329340602939, 19.444388301415472] + ] + }, + "properties": { + "sourceName": "Shanghai", + "targetName": "Mexico City", + "sourceId": "shanghai", + "targetId": "mexico-city" + } + }, + "sourceId": "shanghai", + "targetId": "mexico-city", + "source": [121.43455881982015, 31.218398311228327], + "target": [-99.1329340602939, 19.444388301415472] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [121.43455881982015, 31.218398311228327], + [3.389585212598433, 6.445207512093191] + ] + }, + "properties": { + "sourceName": "Shanghai", + "targetName": "Lagos", + "sourceId": "shanghai", + "targetId": "lagos" + } + }, + "sourceId": "shanghai", + "targetId": "lagos", + "source": [121.43455881982015, 31.218398311228327], + "target": [3.389585212598433, 6.445207512093191] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [121.43455881982015, 31.218398311228327], + [116.38633982565943, 39.93083808990906] + ] + }, + "properties": { + "sourceName": "Shanghai", + "targetName": "Beijing", + "sourceId": "shanghai", + "targetId": "beijing" + } + }, + "sourceId": "shanghai", + "targetId": "beijing", + "source": [121.43455881982015, 31.218398311228327], + "target": [116.38633982565943, 39.93083808990906] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [121.43455881982015, 31.218398311228327], + [106.82749176247012, -6.172471846798885] + ] + }, + "properties": { + "sourceName": "Shanghai", + "targetName": "Jakarta", + "sourceId": "shanghai", + "targetId": "jakarta" + } + }, + "sourceId": "shanghai", + "targetId": "jakarta", + "source": [121.43455881982015, 31.218398311228327], + "target": [106.82749176247012, -6.172471846798885] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [121.43455881982015, 31.218398311228327], + [139.74946157054467, 35.686962764371174] + ] + }, + "properties": { + "sourceName": "Shanghai", + "targetName": "Tokyo", + "sourceId": "shanghai", + "targetId": "tokyo" + } + }, + "sourceId": "shanghai", + "targetId": "tokyo", + "source": [121.43455881982015, 31.218398311228327], + "target": [139.74946157054467, 35.686962764371174] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [121.43455881982015, 31.218398311228327], + [72.85504343876647, 19.0189362343566] + ] + }, + "properties": { + "sourceName": "Shanghai", + "targetName": "Mumbai", + "sourceId": "shanghai", + "targetId": "mumbai" + } + }, + "sourceId": "shanghai", + "targetId": "mumbai", + "source": [121.43455881982015, 31.218398311228327], + "target": [72.85504343876647, 19.0189362343566] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [121.43455881982015, 31.218398311228327], + [88.32272979950551, 22.49691515689642] + ] + }, + "properties": { + "sourceName": "Shanghai", + "targetName": "Kolkata", + "sourceId": "shanghai", + "targetId": "kolkata" + } + }, + "sourceId": "shanghai", + "targetId": "kolkata", + "source": [121.43455881982015, 31.218398311228327], + "target": [88.32272979950551, 22.49691515689642] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [121.43455881982015, 31.218398311228327], + [-43.22696665284366, -22.923077315615956] + ] + }, + "properties": { + "sourceName": "Shanghai", + "targetName": "Rio de Janeiro", + "sourceId": "shanghai", + "targetId": "rio-de-janeiro" + } + }, + "sourceId": "shanghai", + "targetId": "rio-de-janeiro", + "source": [121.43455881982015, 31.218398311228327], + "target": [-43.22696665284366, -22.923077315615956] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [121.43455881982015, 31.218398311228327], + [-46.62696583905523, -23.55673372837896] + ] + }, + "properties": { + "sourceName": "Shanghai", + "targetName": "Sao Paulo", + "sourceId": "shanghai", + "targetId": "sao-paulo" + } + }, + "sourceId": "shanghai", + "targetId": "sao-paulo", + "source": [121.43455881982015, 31.218398311228327], + "target": [-46.62696583905523, -23.55673372837896] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [121.43455881982015, 31.218398311228327], + [103.85387481909902, 1.294979325105942] + ] + }, + "properties": { + "sourceName": "Shanghai", + "targetName": "Singapore", + "sourceId": "shanghai", + "targetId": "singapore" + } + }, + "sourceId": "shanghai", + "targetId": "singapore", + "source": [121.43455881982015, 31.218398311228327], + "target": [103.85387481909902, 1.294979325105942] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [121.43455881982015, 31.218398311228327], + [114.18306345846304, 22.30692675357551] + ] + }, + "properties": { + "sourceName": "Shanghai", + "targetName": "Hong Kong", + "sourceId": "shanghai", + "targetId": "hong-kong" + } + }, + "sourceId": "shanghai", + "targetId": "hong-kong", + "source": [121.43455881982015, 31.218398311228327], + "target": [114.18306345846304, 22.30692675357551] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [139.74946157054467, 35.686962764371174], + [-118.18192636994041, 33.99192410876543] + ] + }, + "properties": { + "sourceName": "Tokyo", + "targetName": "Los Angeles", + "sourceId": "tokyo", + "targetId": "los-angeles" + } + }, + "sourceId": "tokyo", + "targetId": "los-angeles", + "source": [139.74946157054467, 35.686962764371174], + "target": [-118.18192636994041, 33.99192410876543] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [139.74946157054467, 35.686962764371174], + [-77.01136443943716, 38.901495235087054] + ] + }, + "properties": { + "sourceName": "Tokyo", + "targetName": "Washington, D.C.", + "sourceId": "tokyo", + "targetId": "washington,-d.c." + } + }, + "sourceId": "tokyo", + "targetId": "washington,-d.c.", + "source": [139.74946157054467, 35.686962764371174], + "target": [-77.01136443943716, 38.901495235087054] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [139.74946157054467, 35.686962764371174], + [-73.98196278740681, 40.75192492259464] + ] + }, + "properties": { + "sourceName": "Tokyo", + "targetName": "New York", + "sourceId": "tokyo", + "targetId": "new-york" + } + }, + "sourceId": "tokyo", + "targetId": "new-york", + "source": [139.74946157054467, 35.686962764371174], + "target": [-73.98196278740681, 40.75192492259464] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [139.74946157054467, 35.686962764371174], + [37.6135769672714, 55.75410998124818] + ] + }, + "properties": { + "sourceName": "Tokyo", + "targetName": "Moscow", + "sourceId": "tokyo", + "targetId": "moscow" + } + }, + "sourceId": "tokyo", + "targetId": "moscow", + "source": [139.74946157054467, 35.686962764371174], + "target": [37.6135769672714, 55.75410998124818] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [139.74946157054467, 35.686962764371174], + [-99.1329340602939, 19.444388301415472] + ] + }, + "properties": { + "sourceName": "Tokyo", + "targetName": "Mexico City", + "sourceId": "tokyo", + "targetId": "mexico-city" + } + }, + "sourceId": "tokyo", + "targetId": "mexico-city", + "source": [139.74946157054467, 35.686962764371174], + "target": [-99.1329340602939, 19.444388301415472] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [139.74946157054467, 35.686962764371174], + [3.389585212598433, 6.445207512093191] + ] + }, + "properties": { + "sourceName": "Tokyo", + "targetName": "Lagos", + "sourceId": "tokyo", + "targetId": "lagos" + } + }, + "sourceId": "tokyo", + "targetId": "lagos", + "source": [139.74946157054467, 35.686962764371174], + "target": [3.389585212598433, 6.445207512093191] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [139.74946157054467, 35.686962764371174], + [116.38633982565943, 39.93083808990906] + ] + }, + "properties": { + "sourceName": "Tokyo", + "targetName": "Beijing", + "sourceId": "tokyo", + "targetId": "beijing" + } + }, + "sourceId": "tokyo", + "targetId": "beijing", + "source": [139.74946157054467, 35.686962764371174], + "target": [116.38633982565943, 39.93083808990906] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [139.74946157054467, 35.686962764371174], + [106.82749176247012, -6.172471846798885] + ] + }, + "properties": { + "sourceName": "Tokyo", + "targetName": "Jakarta", + "sourceId": "tokyo", + "targetId": "jakarta" + } + }, + "sourceId": "tokyo", + "targetId": "jakarta", + "source": [139.74946157054467, 35.686962764371174], + "target": [106.82749176247012, -6.172471846798885] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [139.74946157054467, 35.686962764371174], + [121.43455881982015, 31.218398311228327] + ] + }, + "properties": { + "sourceName": "Tokyo", + "targetName": "Shanghai", + "sourceId": "tokyo", + "targetId": "shanghai" + } + }, + "sourceId": "tokyo", + "targetId": "shanghai", + "source": [139.74946157054467, 35.686962764371174], + "target": [121.43455881982015, 31.218398311228327] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [139.74946157054467, 35.686962764371174], + [72.85504343876647, 19.0189362343566] + ] + }, + "properties": { + "sourceName": "Tokyo", + "targetName": "Mumbai", + "sourceId": "tokyo", + "targetId": "mumbai" + } + }, + "sourceId": "tokyo", + "targetId": "mumbai", + "source": [139.74946157054467, 35.686962764371174], + "target": [72.85504343876647, 19.0189362343566] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [139.74946157054467, 35.686962764371174], + [88.32272979950551, 22.49691515689642] + ] + }, + "properties": { + "sourceName": "Tokyo", + "targetName": "Kolkata", + "sourceId": "tokyo", + "targetId": "kolkata" + } + }, + "sourceId": "tokyo", + "targetId": "kolkata", + "source": [139.74946157054467, 35.686962764371174], + "target": [88.32272979950551, 22.49691515689642] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [139.74946157054467, 35.686962764371174], + [-43.22696665284366, -22.923077315615956] + ] + }, + "properties": { + "sourceName": "Tokyo", + "targetName": "Rio de Janeiro", + "sourceId": "tokyo", + "targetId": "rio-de-janeiro" + } + }, + "sourceId": "tokyo", + "targetId": "rio-de-janeiro", + "source": [139.74946157054467, 35.686962764371174], + "target": [-43.22696665284366, -22.923077315615956] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [139.74946157054467, 35.686962764371174], + [-46.62696583905523, -23.55673372837896] + ] + }, + "properties": { + "sourceName": "Tokyo", + "targetName": "Sao Paulo", + "sourceId": "tokyo", + "targetId": "sao-paulo" + } + }, + "sourceId": "tokyo", + "targetId": "sao-paulo", + "source": [139.74946157054467, 35.686962764371174], + "target": [-46.62696583905523, -23.55673372837896] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [139.74946157054467, 35.686962764371174], + [103.85387481909902, 1.294979325105942] + ] + }, + "properties": { + "sourceName": "Tokyo", + "targetName": "Singapore", + "sourceId": "tokyo", + "targetId": "singapore" + } + }, + "sourceId": "tokyo", + "targetId": "singapore", + "source": [139.74946157054467, 35.686962764371174], + "target": [103.85387481909902, 1.294979325105942] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [139.74946157054467, 35.686962764371174], + [114.18306345846304, 22.30692675357551] + ] + }, + "properties": { + "sourceName": "Tokyo", + "targetName": "Hong Kong", + "sourceId": "tokyo", + "targetId": "hong-kong" + } + }, + "sourceId": "tokyo", + "targetId": "hong-kong", + "source": [139.74946157054467, 35.686962764371174], + "target": [114.18306345846304, 22.30692675357551] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [72.85504343876647, 19.0189362343566], + [-118.18192636994041, 33.99192410876543] + ] + }, + "properties": { + "sourceName": "Mumbai", + "targetName": "Los Angeles", + "sourceId": "mumbai", + "targetId": "los-angeles" + } + }, + "sourceId": "mumbai", + "targetId": "los-angeles", + "source": [72.85504343876647, 19.0189362343566], + "target": [-118.18192636994041, 33.99192410876543] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [72.85504343876647, 19.0189362343566], + [-77.01136443943716, 38.901495235087054] + ] + }, + "properties": { + "sourceName": "Mumbai", + "targetName": "Washington, D.C.", + "sourceId": "mumbai", + "targetId": "washington,-d.c." + } + }, + "sourceId": "mumbai", + "targetId": "washington,-d.c.", + "source": [72.85504343876647, 19.0189362343566], + "target": [-77.01136443943716, 38.901495235087054] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [72.85504343876647, 19.0189362343566], + [-73.98196278740681, 40.75192492259464] + ] + }, + "properties": { + "sourceName": "Mumbai", + "targetName": "New York", + "sourceId": "mumbai", + "targetId": "new-york" + } + }, + "sourceId": "mumbai", + "targetId": "new-york", + "source": [72.85504343876647, 19.0189362343566], + "target": [-73.98196278740681, 40.75192492259464] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [72.85504343876647, 19.0189362343566], + [37.6135769672714, 55.75410998124818] + ] + }, + "properties": { + "sourceName": "Mumbai", + "targetName": "Moscow", + "sourceId": "mumbai", + "targetId": "moscow" + } + }, + "sourceId": "mumbai", + "targetId": "moscow", + "source": [72.85504343876647, 19.0189362343566], + "target": [37.6135769672714, 55.75410998124818] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [72.85504343876647, 19.0189362343566], + [-99.1329340602939, 19.444388301415472] + ] + }, + "properties": { + "sourceName": "Mumbai", + "targetName": "Mexico City", + "sourceId": "mumbai", + "targetId": "mexico-city" + } + }, + "sourceId": "mumbai", + "targetId": "mexico-city", + "source": [72.85504343876647, 19.0189362343566], + "target": [-99.1329340602939, 19.444388301415472] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [72.85504343876647, 19.0189362343566], + [3.389585212598433, 6.445207512093191] + ] + }, + "properties": { + "sourceName": "Mumbai", + "targetName": "Lagos", + "sourceId": "mumbai", + "targetId": "lagos" + } + }, + "sourceId": "mumbai", + "targetId": "lagos", + "source": [72.85504343876647, 19.0189362343566], + "target": [3.389585212598433, 6.445207512093191] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [72.85504343876647, 19.0189362343566], + [116.38633982565943, 39.93083808990906] + ] + }, + "properties": { + "sourceName": "Mumbai", + "targetName": "Beijing", + "sourceId": "mumbai", + "targetId": "beijing" + } + }, + "sourceId": "mumbai", + "targetId": "beijing", + "source": [72.85504343876647, 19.0189362343566], + "target": [116.38633982565943, 39.93083808990906] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [72.85504343876647, 19.0189362343566], + [106.82749176247012, -6.172471846798885] + ] + }, + "properties": { + "sourceName": "Mumbai", + "targetName": "Jakarta", + "sourceId": "mumbai", + "targetId": "jakarta" + } + }, + "sourceId": "mumbai", + "targetId": "jakarta", + "source": [72.85504343876647, 19.0189362343566], + "target": [106.82749176247012, -6.172471846798885] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [72.85504343876647, 19.0189362343566], + [121.43455881982015, 31.218398311228327] + ] + }, + "properties": { + "sourceName": "Mumbai", + "targetName": "Shanghai", + "sourceId": "mumbai", + "targetId": "shanghai" + } + }, + "sourceId": "mumbai", + "targetId": "shanghai", + "source": [72.85504343876647, 19.0189362343566], + "target": [121.43455881982015, 31.218398311228327] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [72.85504343876647, 19.0189362343566], + [139.74946157054467, 35.686962764371174] + ] + }, + "properties": { + "sourceName": "Mumbai", + "targetName": "Tokyo", + "sourceId": "mumbai", + "targetId": "tokyo" + } + }, + "sourceId": "mumbai", + "targetId": "tokyo", + "source": [72.85504343876647, 19.0189362343566], + "target": [139.74946157054467, 35.686962764371174] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [72.85504343876647, 19.0189362343566], + [88.32272979950551, 22.49691515689642] + ] + }, + "properties": { + "sourceName": "Mumbai", + "targetName": "Kolkata", + "sourceId": "mumbai", + "targetId": "kolkata" + } + }, + "sourceId": "mumbai", + "targetId": "kolkata", + "source": [72.85504343876647, 19.0189362343566], + "target": [88.32272979950551, 22.49691515689642] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [72.85504343876647, 19.0189362343566], + [-43.22696665284366, -22.923077315615956] + ] + }, + "properties": { + "sourceName": "Mumbai", + "targetName": "Rio de Janeiro", + "sourceId": "mumbai", + "targetId": "rio-de-janeiro" + } + }, + "sourceId": "mumbai", + "targetId": "rio-de-janeiro", + "source": [72.85504343876647, 19.0189362343566], + "target": [-43.22696665284366, -22.923077315615956] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [72.85504343876647, 19.0189362343566], + [-46.62696583905523, -23.55673372837896] + ] + }, + "properties": { + "sourceName": "Mumbai", + "targetName": "Sao Paulo", + "sourceId": "mumbai", + "targetId": "sao-paulo" + } + }, + "sourceId": "mumbai", + "targetId": "sao-paulo", + "source": [72.85504343876647, 19.0189362343566], + "target": [-46.62696583905523, -23.55673372837896] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [72.85504343876647, 19.0189362343566], + [103.85387481909902, 1.294979325105942] + ] + }, + "properties": { + "sourceName": "Mumbai", + "targetName": "Singapore", + "sourceId": "mumbai", + "targetId": "singapore" + } + }, + "sourceId": "mumbai", + "targetId": "singapore", + "source": [72.85504343876647, 19.0189362343566], + "target": [103.85387481909902, 1.294979325105942] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [72.85504343876647, 19.0189362343566], + [114.18306345846304, 22.30692675357551] + ] + }, + "properties": { + "sourceName": "Mumbai", + "targetName": "Hong Kong", + "sourceId": "mumbai", + "targetId": "hong-kong" + } + }, + "sourceId": "mumbai", + "targetId": "hong-kong", + "source": [72.85504343876647, 19.0189362343566], + "target": [114.18306345846304, 22.30692675357551] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [88.32272979950551, 22.49691515689642], + [-118.18192636994041, 33.99192410876543] + ] + }, + "properties": { + "sourceName": "Kolkata", + "targetName": "Los Angeles", + "sourceId": "kolkata", + "targetId": "los-angeles" + } + }, + "sourceId": "kolkata", + "targetId": "los-angeles", + "source": [88.32272979950551, 22.49691515689642], + "target": [-118.18192636994041, 33.99192410876543] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [88.32272979950551, 22.49691515689642], + [-77.01136443943716, 38.901495235087054] + ] + }, + "properties": { + "sourceName": "Kolkata", + "targetName": "Washington, D.C.", + "sourceId": "kolkata", + "targetId": "washington,-d.c." + } + }, + "sourceId": "kolkata", + "targetId": "washington,-d.c.", + "source": [88.32272979950551, 22.49691515689642], + "target": [-77.01136443943716, 38.901495235087054] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [88.32272979950551, 22.49691515689642], + [-73.98196278740681, 40.75192492259464] + ] + }, + "properties": { + "sourceName": "Kolkata", + "targetName": "New York", + "sourceId": "kolkata", + "targetId": "new-york" + } + }, + "sourceId": "kolkata", + "targetId": "new-york", + "source": [88.32272979950551, 22.49691515689642], + "target": [-73.98196278740681, 40.75192492259464] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [88.32272979950551, 22.49691515689642], + [37.6135769672714, 55.75410998124818] + ] + }, + "properties": { + "sourceName": "Kolkata", + "targetName": "Moscow", + "sourceId": "kolkata", + "targetId": "moscow" + } + }, + "sourceId": "kolkata", + "targetId": "moscow", + "source": [88.32272979950551, 22.49691515689642], + "target": [37.6135769672714, 55.75410998124818] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [88.32272979950551, 22.49691515689642], + [-99.1329340602939, 19.444388301415472] + ] + }, + "properties": { + "sourceName": "Kolkata", + "targetName": "Mexico City", + "sourceId": "kolkata", + "targetId": "mexico-city" + } + }, + "sourceId": "kolkata", + "targetId": "mexico-city", + "source": [88.32272979950551, 22.49691515689642], + "target": [-99.1329340602939, 19.444388301415472] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [88.32272979950551, 22.49691515689642], + [3.389585212598433, 6.445207512093191] + ] + }, + "properties": { + "sourceName": "Kolkata", + "targetName": "Lagos", + "sourceId": "kolkata", + "targetId": "lagos" + } + }, + "sourceId": "kolkata", + "targetId": "lagos", + "source": [88.32272979950551, 22.49691515689642], + "target": [3.389585212598433, 6.445207512093191] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [88.32272979950551, 22.49691515689642], + [116.38633982565943, 39.93083808990906] + ] + }, + "properties": { + "sourceName": "Kolkata", + "targetName": "Beijing", + "sourceId": "kolkata", + "targetId": "beijing" + } + }, + "sourceId": "kolkata", + "targetId": "beijing", + "source": [88.32272979950551, 22.49691515689642], + "target": [116.38633982565943, 39.93083808990906] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [88.32272979950551, 22.49691515689642], + [106.82749176247012, -6.172471846798885] + ] + }, + "properties": { + "sourceName": "Kolkata", + "targetName": "Jakarta", + "sourceId": "kolkata", + "targetId": "jakarta" + } + }, + "sourceId": "kolkata", + "targetId": "jakarta", + "source": [88.32272979950551, 22.49691515689642], + "target": [106.82749176247012, -6.172471846798885] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [88.32272979950551, 22.49691515689642], + [121.43455881982015, 31.218398311228327] + ] + }, + "properties": { + "sourceName": "Kolkata", + "targetName": "Shanghai", + "sourceId": "kolkata", + "targetId": "shanghai" + } + }, + "sourceId": "kolkata", + "targetId": "shanghai", + "source": [88.32272979950551, 22.49691515689642], + "target": [121.43455881982015, 31.218398311228327] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [88.32272979950551, 22.49691515689642], + [139.74946157054467, 35.686962764371174] + ] + }, + "properties": { + "sourceName": "Kolkata", + "targetName": "Tokyo", + "sourceId": "kolkata", + "targetId": "tokyo" + } + }, + "sourceId": "kolkata", + "targetId": "tokyo", + "source": [88.32272979950551, 22.49691515689642], + "target": [139.74946157054467, 35.686962764371174] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [88.32272979950551, 22.49691515689642], + [72.85504343876647, 19.0189362343566] + ] + }, + "properties": { + "sourceName": "Kolkata", + "targetName": "Mumbai", + "sourceId": "kolkata", + "targetId": "mumbai" + } + }, + "sourceId": "kolkata", + "targetId": "mumbai", + "source": [88.32272979950551, 22.49691515689642], + "target": [72.85504343876647, 19.0189362343566] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [88.32272979950551, 22.49691515689642], + [-43.22696665284366, -22.923077315615956] + ] + }, + "properties": { + "sourceName": "Kolkata", + "targetName": "Rio de Janeiro", + "sourceId": "kolkata", + "targetId": "rio-de-janeiro" + } + }, + "sourceId": "kolkata", + "targetId": "rio-de-janeiro", + "source": [88.32272979950551, 22.49691515689642], + "target": [-43.22696665284366, -22.923077315615956] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [88.32272979950551, 22.49691515689642], + [-46.62696583905523, -23.55673372837896] + ] + }, + "properties": { + "sourceName": "Kolkata", + "targetName": "Sao Paulo", + "sourceId": "kolkata", + "targetId": "sao-paulo" + } + }, + "sourceId": "kolkata", + "targetId": "sao-paulo", + "source": [88.32272979950551, 22.49691515689642], + "target": [-46.62696583905523, -23.55673372837896] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [88.32272979950551, 22.49691515689642], + [103.85387481909902, 1.294979325105942] + ] + }, + "properties": { + "sourceName": "Kolkata", + "targetName": "Singapore", + "sourceId": "kolkata", + "targetId": "singapore" + } + }, + "sourceId": "kolkata", + "targetId": "singapore", + "source": [88.32272979950551, 22.49691515689642], + "target": [103.85387481909902, 1.294979325105942] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [88.32272979950551, 22.49691515689642], + [114.18306345846304, 22.30692675357551] + ] + }, + "properties": { + "sourceName": "Kolkata", + "targetName": "Hong Kong", + "sourceId": "kolkata", + "targetId": "hong-kong" + } + }, + "sourceId": "kolkata", + "targetId": "hong-kong", + "source": [88.32272979950551, 22.49691515689642], + "target": [114.18306345846304, 22.30692675357551] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-43.22696665284366, -22.923077315615956], + [-118.18192636994041, 33.99192410876543] + ] + }, + "properties": { + "sourceName": "Rio de Janeiro", + "targetName": "Los Angeles", + "sourceId": "rio-de-janeiro", + "targetId": "los-angeles" + } + }, + "sourceId": "rio-de-janeiro", + "targetId": "los-angeles", + "source": [-43.22696665284366, -22.923077315615956], + "target": [-118.18192636994041, 33.99192410876543] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-43.22696665284366, -22.923077315615956], + [-77.01136443943716, 38.901495235087054] + ] + }, + "properties": { + "sourceName": "Rio de Janeiro", + "targetName": "Washington, D.C.", + "sourceId": "rio-de-janeiro", + "targetId": "washington,-d.c." + } + }, + "sourceId": "rio-de-janeiro", + "targetId": "washington,-d.c.", + "source": [-43.22696665284366, -22.923077315615956], + "target": [-77.01136443943716, 38.901495235087054] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-43.22696665284366, -22.923077315615956], + [-73.98196278740681, 40.75192492259464] + ] + }, + "properties": { + "sourceName": "Rio de Janeiro", + "targetName": "New York", + "sourceId": "rio-de-janeiro", + "targetId": "new-york" + } + }, + "sourceId": "rio-de-janeiro", + "targetId": "new-york", + "source": [-43.22696665284366, -22.923077315615956], + "target": [-73.98196278740681, 40.75192492259464] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-43.22696665284366, -22.923077315615956], + [37.6135769672714, 55.75410998124818] + ] + }, + "properties": { + "sourceName": "Rio de Janeiro", + "targetName": "Moscow", + "sourceId": "rio-de-janeiro", + "targetId": "moscow" + } + }, + "sourceId": "rio-de-janeiro", + "targetId": "moscow", + "source": [-43.22696665284366, -22.923077315615956], + "target": [37.6135769672714, 55.75410998124818] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-43.22696665284366, -22.923077315615956], + [-99.1329340602939, 19.444388301415472] + ] + }, + "properties": { + "sourceName": "Rio de Janeiro", + "targetName": "Mexico City", + "sourceId": "rio-de-janeiro", + "targetId": "mexico-city" + } + }, + "sourceId": "rio-de-janeiro", + "targetId": "mexico-city", + "source": [-43.22696665284366, -22.923077315615956], + "target": [-99.1329340602939, 19.444388301415472] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-43.22696665284366, -22.923077315615956], + [3.389585212598433, 6.445207512093191] + ] + }, + "properties": { + "sourceName": "Rio de Janeiro", + "targetName": "Lagos", + "sourceId": "rio-de-janeiro", + "targetId": "lagos" + } + }, + "sourceId": "rio-de-janeiro", + "targetId": "lagos", + "source": [-43.22696665284366, -22.923077315615956], + "target": [3.389585212598433, 6.445207512093191] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-43.22696665284366, -22.923077315615956], + [116.38633982565943, 39.93083808990906] + ] + }, + "properties": { + "sourceName": "Rio de Janeiro", + "targetName": "Beijing", + "sourceId": "rio-de-janeiro", + "targetId": "beijing" + } + }, + "sourceId": "rio-de-janeiro", + "targetId": "beijing", + "source": [-43.22696665284366, -22.923077315615956], + "target": [116.38633982565943, 39.93083808990906] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-43.22696665284366, -22.923077315615956], + [106.82749176247012, -6.172471846798885] + ] + }, + "properties": { + "sourceName": "Rio de Janeiro", + "targetName": "Jakarta", + "sourceId": "rio-de-janeiro", + "targetId": "jakarta" + } + }, + "sourceId": "rio-de-janeiro", + "targetId": "jakarta", + "source": [-43.22696665284366, -22.923077315615956], + "target": [106.82749176247012, -6.172471846798885] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-43.22696665284366, -22.923077315615956], + [121.43455881982015, 31.218398311228327] + ] + }, + "properties": { + "sourceName": "Rio de Janeiro", + "targetName": "Shanghai", + "sourceId": "rio-de-janeiro", + "targetId": "shanghai" + } + }, + "sourceId": "rio-de-janeiro", + "targetId": "shanghai", + "source": [-43.22696665284366, -22.923077315615956], + "target": [121.43455881982015, 31.218398311228327] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-43.22696665284366, -22.923077315615956], + [139.74946157054467, 35.686962764371174] + ] + }, + "properties": { + "sourceName": "Rio de Janeiro", + "targetName": "Tokyo", + "sourceId": "rio-de-janeiro", + "targetId": "tokyo" + } + }, + "sourceId": "rio-de-janeiro", + "targetId": "tokyo", + "source": [-43.22696665284366, -22.923077315615956], + "target": [139.74946157054467, 35.686962764371174] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-43.22696665284366, -22.923077315615956], + [72.85504343876647, 19.0189362343566] + ] + }, + "properties": { + "sourceName": "Rio de Janeiro", + "targetName": "Mumbai", + "sourceId": "rio-de-janeiro", + "targetId": "mumbai" + } + }, + "sourceId": "rio-de-janeiro", + "targetId": "mumbai", + "source": [-43.22696665284366, -22.923077315615956], + "target": [72.85504343876647, 19.0189362343566] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-43.22696665284366, -22.923077315615956], + [88.32272979950551, 22.49691515689642] + ] + }, + "properties": { + "sourceName": "Rio de Janeiro", + "targetName": "Kolkata", + "sourceId": "rio-de-janeiro", + "targetId": "kolkata" + } + }, + "sourceId": "rio-de-janeiro", + "targetId": "kolkata", + "source": [-43.22696665284366, -22.923077315615956], + "target": [88.32272979950551, 22.49691515689642] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-43.22696665284366, -22.923077315615956], + [-46.62696583905523, -23.55673372837896] + ] + }, + "properties": { + "sourceName": "Rio de Janeiro", + "targetName": "Sao Paulo", + "sourceId": "rio-de-janeiro", + "targetId": "sao-paulo" + } + }, + "sourceId": "rio-de-janeiro", + "targetId": "sao-paulo", + "source": [-43.22696665284366, -22.923077315615956], + "target": [-46.62696583905523, -23.55673372837896] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-43.22696665284366, -22.923077315615956], + [103.85387481909902, 1.294979325105942] + ] + }, + "properties": { + "sourceName": "Rio de Janeiro", + "targetName": "Singapore", + "sourceId": "rio-de-janeiro", + "targetId": "singapore" + } + }, + "sourceId": "rio-de-janeiro", + "targetId": "singapore", + "source": [-43.22696665284366, -22.923077315615956], + "target": [103.85387481909902, 1.294979325105942] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-43.22696665284366, -22.923077315615956], + [114.18306345846304, 22.30692675357551] + ] + }, + "properties": { + "sourceName": "Rio de Janeiro", + "targetName": "Hong Kong", + "sourceId": "rio-de-janeiro", + "targetId": "hong-kong" + } + }, + "sourceId": "rio-de-janeiro", + "targetId": "hong-kong", + "source": [-43.22696665284366, -22.923077315615956], + "target": [114.18306345846304, 22.30692675357551] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-46.62696583905523, -23.55673372837896], + [-118.18192636994041, 33.99192410876543] + ] + }, + "properties": { + "sourceName": "Sao Paulo", + "targetName": "Los Angeles", + "sourceId": "sao-paulo", + "targetId": "los-angeles" + } + }, + "sourceId": "sao-paulo", + "targetId": "los-angeles", + "source": [-46.62696583905523, -23.55673372837896], + "target": [-118.18192636994041, 33.99192410876543] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-46.62696583905523, -23.55673372837896], + [-77.01136443943716, 38.901495235087054] + ] + }, + "properties": { + "sourceName": "Sao Paulo", + "targetName": "Washington, D.C.", + "sourceId": "sao-paulo", + "targetId": "washington,-d.c." + } + }, + "sourceId": "sao-paulo", + "targetId": "washington,-d.c.", + "source": [-46.62696583905523, -23.55673372837896], + "target": [-77.01136443943716, 38.901495235087054] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-46.62696583905523, -23.55673372837896], + [-73.98196278740681, 40.75192492259464] + ] + }, + "properties": { + "sourceName": "Sao Paulo", + "targetName": "New York", + "sourceId": "sao-paulo", + "targetId": "new-york" + } + }, + "sourceId": "sao-paulo", + "targetId": "new-york", + "source": [-46.62696583905523, -23.55673372837896], + "target": [-73.98196278740681, 40.75192492259464] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-46.62696583905523, -23.55673372837896], + [37.6135769672714, 55.75410998124818] + ] + }, + "properties": { + "sourceName": "Sao Paulo", + "targetName": "Moscow", + "sourceId": "sao-paulo", + "targetId": "moscow" + } + }, + "sourceId": "sao-paulo", + "targetId": "moscow", + "source": [-46.62696583905523, -23.55673372837896], + "target": [37.6135769672714, 55.75410998124818] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-46.62696583905523, -23.55673372837896], + [-99.1329340602939, 19.444388301415472] + ] + }, + "properties": { + "sourceName": "Sao Paulo", + "targetName": "Mexico City", + "sourceId": "sao-paulo", + "targetId": "mexico-city" + } + }, + "sourceId": "sao-paulo", + "targetId": "mexico-city", + "source": [-46.62696583905523, -23.55673372837896], + "target": [-99.1329340602939, 19.444388301415472] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-46.62696583905523, -23.55673372837896], + [3.389585212598433, 6.445207512093191] + ] + }, + "properties": { + "sourceName": "Sao Paulo", + "targetName": "Lagos", + "sourceId": "sao-paulo", + "targetId": "lagos" + } + }, + "sourceId": "sao-paulo", + "targetId": "lagos", + "source": [-46.62696583905523, -23.55673372837896], + "target": [3.389585212598433, 6.445207512093191] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-46.62696583905523, -23.55673372837896], + [116.38633982565943, 39.93083808990906] + ] + }, + "properties": { + "sourceName": "Sao Paulo", + "targetName": "Beijing", + "sourceId": "sao-paulo", + "targetId": "beijing" + } + }, + "sourceId": "sao-paulo", + "targetId": "beijing", + "source": [-46.62696583905523, -23.55673372837896], + "target": [116.38633982565943, 39.93083808990906] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-46.62696583905523, -23.55673372837896], + [106.82749176247012, -6.172471846798885] + ] + }, + "properties": { + "sourceName": "Sao Paulo", + "targetName": "Jakarta", + "sourceId": "sao-paulo", + "targetId": "jakarta" + } + }, + "sourceId": "sao-paulo", + "targetId": "jakarta", + "source": [-46.62696583905523, -23.55673372837896], + "target": [106.82749176247012, -6.172471846798885] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-46.62696583905523, -23.55673372837896], + [121.43455881982015, 31.218398311228327] + ] + }, + "properties": { + "sourceName": "Sao Paulo", + "targetName": "Shanghai", + "sourceId": "sao-paulo", + "targetId": "shanghai" + } + }, + "sourceId": "sao-paulo", + "targetId": "shanghai", + "source": [-46.62696583905523, -23.55673372837896], + "target": [121.43455881982015, 31.218398311228327] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-46.62696583905523, -23.55673372837896], + [139.74946157054467, 35.686962764371174] + ] + }, + "properties": { + "sourceName": "Sao Paulo", + "targetName": "Tokyo", + "sourceId": "sao-paulo", + "targetId": "tokyo" + } + }, + "sourceId": "sao-paulo", + "targetId": "tokyo", + "source": [-46.62696583905523, -23.55673372837896], + "target": [139.74946157054467, 35.686962764371174] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-46.62696583905523, -23.55673372837896], + [72.85504343876647, 19.0189362343566] + ] + }, + "properties": { + "sourceName": "Sao Paulo", + "targetName": "Mumbai", + "sourceId": "sao-paulo", + "targetId": "mumbai" + } + }, + "sourceId": "sao-paulo", + "targetId": "mumbai", + "source": [-46.62696583905523, -23.55673372837896], + "target": [72.85504343876647, 19.0189362343566] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-46.62696583905523, -23.55673372837896], + [88.32272979950551, 22.49691515689642] + ] + }, + "properties": { + "sourceName": "Sao Paulo", + "targetName": "Kolkata", + "sourceId": "sao-paulo", + "targetId": "kolkata" + } + }, + "sourceId": "sao-paulo", + "targetId": "kolkata", + "source": [-46.62696583905523, -23.55673372837896], + "target": [88.32272979950551, 22.49691515689642] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-46.62696583905523, -23.55673372837896], + [-43.22696665284366, -22.923077315615956] + ] + }, + "properties": { + "sourceName": "Sao Paulo", + "targetName": "Rio de Janeiro", + "sourceId": "sao-paulo", + "targetId": "rio-de-janeiro" + } + }, + "sourceId": "sao-paulo", + "targetId": "rio-de-janeiro", + "source": [-46.62696583905523, -23.55673372837896], + "target": [-43.22696665284366, -22.923077315615956] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-46.62696583905523, -23.55673372837896], + [103.85387481909902, 1.294979325105942] + ] + }, + "properties": { + "sourceName": "Sao Paulo", + "targetName": "Singapore", + "sourceId": "sao-paulo", + "targetId": "singapore" + } + }, + "sourceId": "sao-paulo", + "targetId": "singapore", + "source": [-46.62696583905523, -23.55673372837896], + "target": [103.85387481909902, 1.294979325105942] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [-46.62696583905523, -23.55673372837896], + [114.18306345846304, 22.30692675357551] + ] + }, + "properties": { + "sourceName": "Sao Paulo", + "targetName": "Hong Kong", + "sourceId": "sao-paulo", + "targetId": "hong-kong" + } + }, + "sourceId": "sao-paulo", + "targetId": "hong-kong", + "source": [-46.62696583905523, -23.55673372837896], + "target": [114.18306345846304, 22.30692675357551] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [103.85387481909902, 1.294979325105942], + [-118.18192636994041, 33.99192410876543] + ] + }, + "properties": { + "sourceName": "Singapore", + "targetName": "Los Angeles", + "sourceId": "singapore", + "targetId": "los-angeles" + } + }, + "sourceId": "singapore", + "targetId": "los-angeles", + "source": [103.85387481909902, 1.294979325105942], + "target": [-118.18192636994041, 33.99192410876543] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [103.85387481909902, 1.294979325105942], + [-77.01136443943716, 38.901495235087054] + ] + }, + "properties": { + "sourceName": "Singapore", + "targetName": "Washington, D.C.", + "sourceId": "singapore", + "targetId": "washington,-d.c." + } + }, + "sourceId": "singapore", + "targetId": "washington,-d.c.", + "source": [103.85387481909902, 1.294979325105942], + "target": [-77.01136443943716, 38.901495235087054] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [103.85387481909902, 1.294979325105942], + [-73.98196278740681, 40.75192492259464] + ] + }, + "properties": { + "sourceName": "Singapore", + "targetName": "New York", + "sourceId": "singapore", + "targetId": "new-york" + } + }, + "sourceId": "singapore", + "targetId": "new-york", + "source": [103.85387481909902, 1.294979325105942], + "target": [-73.98196278740681, 40.75192492259464] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [103.85387481909902, 1.294979325105942], + [37.6135769672714, 55.75410998124818] + ] + }, + "properties": { + "sourceName": "Singapore", + "targetName": "Moscow", + "sourceId": "singapore", + "targetId": "moscow" + } + }, + "sourceId": "singapore", + "targetId": "moscow", + "source": [103.85387481909902, 1.294979325105942], + "target": [37.6135769672714, 55.75410998124818] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [103.85387481909902, 1.294979325105942], + [-99.1329340602939, 19.444388301415472] + ] + }, + "properties": { + "sourceName": "Singapore", + "targetName": "Mexico City", + "sourceId": "singapore", + "targetId": "mexico-city" + } + }, + "sourceId": "singapore", + "targetId": "mexico-city", + "source": [103.85387481909902, 1.294979325105942], + "target": [-99.1329340602939, 19.444388301415472] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [103.85387481909902, 1.294979325105942], + [3.389585212598433, 6.445207512093191] + ] + }, + "properties": { + "sourceName": "Singapore", + "targetName": "Lagos", + "sourceId": "singapore", + "targetId": "lagos" + } + }, + "sourceId": "singapore", + "targetId": "lagos", + "source": [103.85387481909902, 1.294979325105942], + "target": [3.389585212598433, 6.445207512093191] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [103.85387481909902, 1.294979325105942], + [116.38633982565943, 39.93083808990906] + ] + }, + "properties": { + "sourceName": "Singapore", + "targetName": "Beijing", + "sourceId": "singapore", + "targetId": "beijing" + } + }, + "sourceId": "singapore", + "targetId": "beijing", + "source": [103.85387481909902, 1.294979325105942], + "target": [116.38633982565943, 39.93083808990906] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [103.85387481909902, 1.294979325105942], + [106.82749176247012, -6.172471846798885] + ] + }, + "properties": { + "sourceName": "Singapore", + "targetName": "Jakarta", + "sourceId": "singapore", + "targetId": "jakarta" + } + }, + "sourceId": "singapore", + "targetId": "jakarta", + "source": [103.85387481909902, 1.294979325105942], + "target": [106.82749176247012, -6.172471846798885] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [103.85387481909902, 1.294979325105942], + [121.43455881982015, 31.218398311228327] + ] + }, + "properties": { + "sourceName": "Singapore", + "targetName": "Shanghai", + "sourceId": "singapore", + "targetId": "shanghai" + } + }, + "sourceId": "singapore", + "targetId": "shanghai", + "source": [103.85387481909902, 1.294979325105942], + "target": [121.43455881982015, 31.218398311228327] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [103.85387481909902, 1.294979325105942], + [139.74946157054467, 35.686962764371174] + ] + }, + "properties": { + "sourceName": "Singapore", + "targetName": "Tokyo", + "sourceId": "singapore", + "targetId": "tokyo" + } + }, + "sourceId": "singapore", + "targetId": "tokyo", + "source": [103.85387481909902, 1.294979325105942], + "target": [139.74946157054467, 35.686962764371174] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [103.85387481909902, 1.294979325105942], + [72.85504343876647, 19.0189362343566] + ] + }, + "properties": { + "sourceName": "Singapore", + "targetName": "Mumbai", + "sourceId": "singapore", + "targetId": "mumbai" + } + }, + "sourceId": "singapore", + "targetId": "mumbai", + "source": [103.85387481909902, 1.294979325105942], + "target": [72.85504343876647, 19.0189362343566] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [103.85387481909902, 1.294979325105942], + [88.32272979950551, 22.49691515689642] + ] + }, + "properties": { + "sourceName": "Singapore", + "targetName": "Kolkata", + "sourceId": "singapore", + "targetId": "kolkata" + } + }, + "sourceId": "singapore", + "targetId": "kolkata", + "source": [103.85387481909902, 1.294979325105942], + "target": [88.32272979950551, 22.49691515689642] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [103.85387481909902, 1.294979325105942], + [-43.22696665284366, -22.923077315615956] + ] + }, + "properties": { + "sourceName": "Singapore", + "targetName": "Rio de Janeiro", + "sourceId": "singapore", + "targetId": "rio-de-janeiro" + } + }, + "sourceId": "singapore", + "targetId": "rio-de-janeiro", + "source": [103.85387481909902, 1.294979325105942], + "target": [-43.22696665284366, -22.923077315615956] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [103.85387481909902, 1.294979325105942], + [-46.62696583905523, -23.55673372837896] + ] + }, + "properties": { + "sourceName": "Singapore", + "targetName": "Sao Paulo", + "sourceId": "singapore", + "targetId": "sao-paulo" + } + }, + "sourceId": "singapore", + "targetId": "sao-paulo", + "source": [103.85387481909902, 1.294979325105942], + "target": [-46.62696583905523, -23.55673372837896] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [103.85387481909902, 1.294979325105942], + [114.18306345846304, 22.30692675357551] + ] + }, + "properties": { + "sourceName": "Singapore", + "targetName": "Hong Kong", + "sourceId": "singapore", + "targetId": "hong-kong" + } + }, + "sourceId": "singapore", + "targetId": "hong-kong", + "source": [103.85387481909902, 1.294979325105942], + "target": [114.18306345846304, 22.30692675357551] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [114.18306345846304, 22.30692675357551], + [-118.18192636994041, 33.99192410876543] + ] + }, + "properties": { + "sourceName": "Hong Kong", + "targetName": "Los Angeles", + "sourceId": "hong-kong", + "targetId": "los-angeles" + } + }, + "sourceId": "hong-kong", + "targetId": "los-angeles", + "source": [114.18306345846304, 22.30692675357551], + "target": [-118.18192636994041, 33.99192410876543] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [114.18306345846304, 22.30692675357551], + [-77.01136443943716, 38.901495235087054] + ] + }, + "properties": { + "sourceName": "Hong Kong", + "targetName": "Washington, D.C.", + "sourceId": "hong-kong", + "targetId": "washington,-d.c." + } + }, + "sourceId": "hong-kong", + "targetId": "washington,-d.c.", + "source": [114.18306345846304, 22.30692675357551], + "target": [-77.01136443943716, 38.901495235087054] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [114.18306345846304, 22.30692675357551], + [-73.98196278740681, 40.75192492259464] + ] + }, + "properties": { + "sourceName": "Hong Kong", + "targetName": "New York", + "sourceId": "hong-kong", + "targetId": "new-york" + } + }, + "sourceId": "hong-kong", + "targetId": "new-york", + "source": [114.18306345846304, 22.30692675357551], + "target": [-73.98196278740681, 40.75192492259464] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [114.18306345846304, 22.30692675357551], + [37.6135769672714, 55.75410998124818] + ] + }, + "properties": { + "sourceName": "Hong Kong", + "targetName": "Moscow", + "sourceId": "hong-kong", + "targetId": "moscow" + } + }, + "sourceId": "hong-kong", + "targetId": "moscow", + "source": [114.18306345846304, 22.30692675357551], + "target": [37.6135769672714, 55.75410998124818] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [114.18306345846304, 22.30692675357551], + [-99.1329340602939, 19.444388301415472] + ] + }, + "properties": { + "sourceName": "Hong Kong", + "targetName": "Mexico City", + "sourceId": "hong-kong", + "targetId": "mexico-city" + } + }, + "sourceId": "hong-kong", + "targetId": "mexico-city", + "source": [114.18306345846304, 22.30692675357551], + "target": [-99.1329340602939, 19.444388301415472] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [114.18306345846304, 22.30692675357551], + [3.389585212598433, 6.445207512093191] + ] + }, + "properties": { + "sourceName": "Hong Kong", + "targetName": "Lagos", + "sourceId": "hong-kong", + "targetId": "lagos" + } + }, + "sourceId": "hong-kong", + "targetId": "lagos", + "source": [114.18306345846304, 22.30692675357551], + "target": [3.389585212598433, 6.445207512093191] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [114.18306345846304, 22.30692675357551], + [116.38633982565943, 39.93083808990906] + ] + }, + "properties": { + "sourceName": "Hong Kong", + "targetName": "Beijing", + "sourceId": "hong-kong", + "targetId": "beijing" + } + }, + "sourceId": "hong-kong", + "targetId": "beijing", + "source": [114.18306345846304, 22.30692675357551], + "target": [116.38633982565943, 39.93083808990906] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [114.18306345846304, 22.30692675357551], + [106.82749176247012, -6.172471846798885] + ] + }, + "properties": { + "sourceName": "Hong Kong", + "targetName": "Jakarta", + "sourceId": "hong-kong", + "targetId": "jakarta" + } + }, + "sourceId": "hong-kong", + "targetId": "jakarta", + "source": [114.18306345846304, 22.30692675357551], + "target": [106.82749176247012, -6.172471846798885] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [114.18306345846304, 22.30692675357551], + [121.43455881982015, 31.218398311228327] + ] + }, + "properties": { + "sourceName": "Hong Kong", + "targetName": "Shanghai", + "sourceId": "hong-kong", + "targetId": "shanghai" + } + }, + "sourceId": "hong-kong", + "targetId": "shanghai", + "source": [114.18306345846304, 22.30692675357551], + "target": [121.43455881982015, 31.218398311228327] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [114.18306345846304, 22.30692675357551], + [139.74946157054467, 35.686962764371174] + ] + }, + "properties": { + "sourceName": "Hong Kong", + "targetName": "Tokyo", + "sourceId": "hong-kong", + "targetId": "tokyo" + } + }, + "sourceId": "hong-kong", + "targetId": "tokyo", + "source": [114.18306345846304, 22.30692675357551], + "target": [139.74946157054467, 35.686962764371174] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [114.18306345846304, 22.30692675357551], + [72.85504343876647, 19.0189362343566] + ] + }, + "properties": { + "sourceName": "Hong Kong", + "targetName": "Mumbai", + "sourceId": "hong-kong", + "targetId": "mumbai" + } + }, + "sourceId": "hong-kong", + "targetId": "mumbai", + "source": [114.18306345846304, 22.30692675357551], + "target": [72.85504343876647, 19.0189362343566] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [114.18306345846304, 22.30692675357551], + [88.32272979950551, 22.49691515689642] + ] + }, + "properties": { + "sourceName": "Hong Kong", + "targetName": "Kolkata", + "sourceId": "hong-kong", + "targetId": "kolkata" + } + }, + "sourceId": "hong-kong", + "targetId": "kolkata", + "source": [114.18306345846304, 22.30692675357551], + "target": [88.32272979950551, 22.49691515689642] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [114.18306345846304, 22.30692675357551], + [-43.22696665284366, -22.923077315615956] + ] + }, + "properties": { + "sourceName": "Hong Kong", + "targetName": "Rio de Janeiro", + "sourceId": "hong-kong", + "targetId": "rio-de-janeiro" + } + }, + "sourceId": "hong-kong", + "targetId": "rio-de-janeiro", + "source": [114.18306345846304, 22.30692675357551], + "target": [-43.22696665284366, -22.923077315615956] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [114.18306345846304, 22.30692675357551], + [-46.62696583905523, -23.55673372837896] + ] + }, + "properties": { + "sourceName": "Hong Kong", + "targetName": "Sao Paulo", + "sourceId": "hong-kong", + "targetId": "sao-paulo" + } + }, + "sourceId": "hong-kong", + "targetId": "sao-paulo", + "source": [114.18306345846304, 22.30692675357551], + "target": [-46.62696583905523, -23.55673372837896] + }, + { + "feature": { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [114.18306345846304, 22.30692675357551], + [103.85387481909902, 1.294979325105942] + ] + }, + "properties": { + "sourceName": "Hong Kong", + "targetName": "Singapore", + "sourceId": "hong-kong", + "targetId": "singapore" + } + }, + "sourceId": "hong-kong", + "targetId": "singapore", + "source": [114.18306345846304, 22.30692675357551], + "target": [103.85387481909902, 1.294979325105942] + } +] diff --git a/docs/static/data/examples/graph/basic.json b/docs/static/data/examples/graph/basic.json new file mode 100644 index 000000000..05f366664 --- /dev/null +++ b/docs/static/data/examples/graph/basic.json @@ -0,0 +1,24 @@ +{ + "nodes": [ + { "id": "A" }, + { "id": "B" }, + { "id": "C" }, + { "id": "D" }, + { "id": "E" }, + { "id": "F" }, + { "id": "G" }, + { "id": "H" }, + { "id": "I" } + ], + "links": [ + { "source": "A", "target": "B" }, + { "source": "C", "target": "B" }, + { "source": "B", "target": "E" }, + { "source": "B", "target": "F" }, + { "source": "D", "target": "E" }, + { "source": "D", "target": "F" }, + { "source": "E", "target": "H" }, + { "source": "G", "target": "H" }, + { "source": "H", "target": "I" } + ] +} diff --git a/docs/static/data/examples/graph/cluster.json b/docs/static/data/examples/graph/cluster.json new file mode 100644 index 000000000..ea37e6b19 --- /dev/null +++ b/docs/static/data/examples/graph/cluster.json @@ -0,0 +1,22 @@ +{ + "nodes": [ + { "id": "A" }, + { "id": "B", "parent": "top_group" }, + { "id": "C", "parent": "bottom_group" }, + { "id": "D", "parent": "bottom_group" }, + { "id": "E", "parent": "bottom_group" }, + { "id": "F", "parent": "bottom_group" }, + { "id": "G" }, + { "id": "group" }, + { "id": "top_group", "parent": "group" }, + { "id": "bottom_group", "parent": "group" } + ], + "links": [ + { "source": "A", "target": "B" }, + { "source": "B", "target": "C" }, + { "source": "B", "target": "D" }, + { "source": "B", "target": "E" }, + { "source": "B", "target": "F" }, + { "source": "B", "target": "G" } + ] +} diff --git a/docs/static/data/examples/graph/complex.json b/docs/static/data/examples/graph/complex.json new file mode 100644 index 000000000..2c36a790b --- /dev/null +++ b/docs/static/data/examples/graph/complex.json @@ -0,0 +1,122 @@ +{ + "nodes": [ + { "name": "Agricultural 'waste'" }, + { "name": "Bio-conversion" }, + { "name": "Liquid" }, + { "name": "Losses" }, + { "name": "Solid" }, + { "name": "Gas" }, + { "name": "Biofuel imports" }, + { "name": "Biomass imports" }, + { "name": "Coal imports" }, + { "name": "Coal" }, + { "name": "Coal reserves" }, + { "name": "District heating" }, + { "name": "Industry" }, + { "name": "Heating and cooling - commercial" }, + { "name": "Heating and cooling - homes" }, + { "name": "Electricity grid" }, + { "name": "Over generation / exports" }, + { "name": "H2 conversion" }, + { "name": "Road transport" }, + { "name": "Agriculture" }, + { "name": "Rail transport" }, + { "name": "Lighting & appliances - commercial" }, + { "name": "Lighting & appliances - homes" }, + { "name": "Gas imports" }, + { "name": "Ngas" }, + { "name": "Gas reserves" }, + { "name": "Thermal generation" }, + { "name": "Geothermal" }, + { "name": "H2" }, + { "name": "Hydro" }, + { "name": "International shipping" }, + { "name": "Domestic aviation" }, + { "name": "International aviation" }, + { "name": "National navigation" }, + { "name": "Marine algae" }, + { "name": "Nuclear" }, + { "name": "Oil imports" }, + { "name": "Oil" }, + { "name": "Oil reserves" }, + { "name": "Other waste" }, + { "name": "Pumped heat" }, + { "name": "Solar PV" }, + { "name": "Solar Thermal" }, + { "name": "Solar" }, + { "name": "Tidal" }, + { "name": "UK land based bioenergy" }, + { "name": "Wave" }, + { "name": "Wind" } + ], + "links": [ + { "source": 0, "target": 1, "value": 124.729 }, + { "source": 1, "target": 2, "value": 0.597 }, + { "source": 1, "target": 3, "value": 26.862 }, + { "source": 1, "target": 4, "value": 280.322 }, + { "source": 1, "target": 5, "value": 81.144 }, + { "source": 6, "target": 2, "value": 35 }, + { "source": 7, "target": 4, "value": 35 }, + { "source": 8, "target": 9, "value": 11.606 }, + { "source": 10, "target": 9, "value": 63.965 }, + { "source": 9, "target": 4, "value": 75.571 }, + { "source": 11, "target": 12, "value": 10.639 }, + { "source": 11, "target": 13, "value": 22.505 }, + { "source": 11, "target": 14, "value": 46.184 }, + { "source": 15, "target": 16, "value": 104.453 }, + { "source": 15, "target": 14, "value": 113.726 }, + { "source": 15, "target": 17, "value": 27.14 }, + { "source": 15, "target": 12, "value": 342.165 }, + { "source": 15, "target": 18, "value": 37.797 }, + { "source": 15, "target": 19, "value": 4.412 }, + { "source": 15, "target": 13, "value": 40.858 }, + { "source": 15, "target": 3, "value": 56.691 }, + { "source": 15, "target": 20, "value": 7.863 }, + { "source": 15, "target": 21, "value": 90.008 }, + { "source": 15, "target": 22, "value": 93.494 }, + { "source": 23, "target": 24, "value": 40.719 }, + { "source": 25, "target": 24, "value": 82.233 }, + { "source": 5, "target": 13, "value": 0.129 }, + { "source": 5, "target": 3, "value": 1.401 }, + { "source": 5, "target": 26, "value": 151.891 }, + { "source": 5, "target": 19, "value": 2.096 }, + { "source": 5, "target": 12, "value": 48.58 }, + { "source": 27, "target": 15, "value": 7.013 }, + { "source": 17, "target": 28, "value": 20.897 }, + { "source": 17, "target": 3, "value": 6.242 }, + { "source": 28, "target": 18, "value": 20.897 }, + { "source": 29, "target": 15, "value": 6.995 }, + { "source": 2, "target": 12, "value": 121.066 }, + { "source": 2, "target": 30, "value": 128.69 }, + { "source": 2, "target": 18, "value": 135.835 }, + { "source": 2, "target": 31, "value": 14.458 }, + { "source": 2, "target": 32, "value": 206.267 }, + { "source": 2, "target": 19, "value": 3.64 }, + { "source": 2, "target": 33, "value": 33.218 }, + { "source": 2, "target": 20, "value": 4.413 }, + { "source": 34, "target": 1, "value": 4.375 }, + { "source": 24, "target": 5, "value": 122.952 }, + { "source": 35, "target": 26, "value": 839.978 }, + { "source": 36, "target": 37, "value": 504.287 }, + { "source": 38, "target": 37, "value": 107.703 }, + { "source": 37, "target": 2, "value": 611.99 }, + { "source": 39, "target": 4, "value": 56.587 }, + { "source": 39, "target": 1, "value": 77.81 }, + { "source": 40, "target": 14, "value": 193.026 }, + { "source": 40, "target": 13, "value": 70.672 }, + { "source": 41, "target": 15, "value": 59.901 }, + { "source": 42, "target": 14, "value": 19.263 }, + { "source": 43, "target": 42, "value": 19.263 }, + { "source": 43, "target": 41, "value": 59.901 }, + { "source": 4, "target": 19, "value": 0.882 }, + { "source": 4, "target": 26, "value": 400.12 }, + { "source": 4, "target": 12, "value": 46.477 }, + { "source": 26, "target": 15, "value": 525.531 }, + { "source": 26, "target": 3, "value": 787.129 }, + { "source": 26, "target": 11, "value": 79.329 }, + { "source": 44, "target": 15, "value": 9.452 }, + { "source": 45, "target": 1, "value": 182.01 }, + { "source": 46, "target": 15, "value": 19.013 }, + { "source": 47, "target": 15, "value": 289.366 } + ] +} diff --git a/docs/static/data/examples/graph/dag-large.json b/docs/static/data/examples/graph/dag-large.json new file mode 100644 index 000000000..2ebb3795e --- /dev/null +++ b/docs/static/data/examples/graph/dag-large.json @@ -0,0 +1,1859 @@ +{ + "nodes": [ + { "id": "0", "name": "1c22f73f2cc93f164283d9e762bced68" }, + { "id": "1", "name": "03f76604756468de62f78e91c917bc9e" }, + { "id": "2", "name": "00ad68f5c7cc1e82827eecf7a336fffb" }, + { "id": "3", "name": "dbba63781f11ff411b3d5bae7ab58377" }, + { "id": "4", "name": "f9e08b1fbf80d89ba8717721976c4e6f" }, + { "id": "5", "name": "0e6ff806fc4a4399243522e116eb44ad" }, + { "id": "6", "name": "d22c79061b363f5d6d25f8f29043c048" }, + { "id": "7", "name": "ae131915396ed2f27752c043e123897e" }, + { "id": "8", "name": "4b5d6ab6e3f422da578fe8ff044e35dd" }, + { "id": "9", "name": "d9d5ee901fa0cbca611e8bfa490f5144" }, + { "id": "10", "name": "d73b517b730d0b13e78ee72155a1861b" }, + { "id": "11", "name": "a32a2af438ecdfdb7d89183bee1f1802" }, + { "id": "12", "name": "94349049cb07b76538eb3fb4c1bb84a6" }, + { "id": "13", "name": "44e21c5260ddb470e3854fc38403c45b" }, + { "id": "14", "name": "8d28ea2b1c25694ca35399cc5fe6c317" }, + { "id": "15", "name": "9533033056c4191d6d22979945246510" }, + { "id": "16", "name": "89d1f92186c667db753a4d64a86a2908" }, + { "id": "17", "name": "c5d0c5b6f82e286f1eb79bf0569e4614" }, + { "id": "18", "name": "e51dcd266a702305db0653b139ebfdc2" }, + { "id": "19", "name": "eceb5d51454334aa64f4ed5e560f9f7f" }, + { "id": "20", "name": "76de00119a2127df4faecd5be49b3fe7" }, + { "id": "21", "name": "46b9e6f0db1020302f6b52018023950a" }, + { "id": "22", "name": "d2996082c1057d8c2b5e8b33ba1940fa" }, + { "id": "23", "name": "41acf2dc58bd53bdd6258b5911077d6d" }, + { "id": "24", "name": "03a0d5e5646bfe60fce679a87ef4cd34" }, + { "id": "25", "name": "f8842d7dab501f9820d7f12c3bc00dd4" }, + { "id": "26", "name": "afd0a1c912401320948956d1a7f9ee14" }, + { "id": "27", "name": "d312ffbfb5b6d27da93722ef6f649e0a" }, + { "id": "28", "name": "a0f7ca2b7da51083c6a07492b53df54d" }, + { "id": "29", "name": "3718328db137d699c7b3425d20e96334" }, + { "id": "30", "name": "2852f697a9f8581725c6fc6a5472a2e5" }, + { "id": "31", "name": "aeda118711cca8b7c87b113f0bc29139" }, + { "id": "32", "name": "fefb65aa1a38b0e3c0d1053609ebff99" }, + { "id": "33", "name": "7f48ad52462c162afd1f9b7f4e94a2e1" }, + { "id": "34", "name": "1cba1a6455efb4392487836c65f3ac72" }, + { "id": "35", "name": "8dad532d0d1f8252845218fed998183c" }, + { "id": "36", "name": "0b78491fe5109a771bfb5a7383df9bd7" }, + { "id": "37", "name": "5dc3a1ffd9333b3ee9926d8ab3a9cf71" }, + { "id": "38", "name": "77960fc96162cf7b1d2aaa1e1dfd506b" }, + { "id": "39", "name": "dc51a7d438ed5e023a4aa7347e6de8dc" }, + { "id": "40", "name": "95a1446a7120e4af5c0c8878abb7e6d2" }, + { "id": "41", "name": "94052b0ee26fa4979fd25bf77b2ce611" }, + { "id": "42", "name": "554208e1618d0aedf37387eda5ff17b0" }, + { "id": "43", "name": "026bad66d0823629aeeb12abadda82aa" }, + { "id": "44", "name": "f6f44ae6ee95a1dd4580df8ec1bc9a76" }, + { "id": "45", "name": "e5638bdcd9ac7044e0b06883937b1373" }, + { "id": "46", "name": "73e6138d290996cf6d12cb654d5fb1f1" }, + { "id": "47", "name": "429c84849797c842062ecea402a8e4c4" }, + { "id": "48", "name": "a934dfb0a262a799bcb126c935800320" }, + { "id": "49", "name": "6bc3154245f5841ec399420bfa6af57a" }, + { "id": "50", "name": "9353587f1aff8606f2357d9f6fd007ff" }, + { "id": "51", "name": "32b9643eab750b5d9ecc50c71b14c3bf" }, + { "id": "52", "name": "3608ee2da8bf0ff27b124e7b9d68f32a" }, + { "id": "53", "name": "86baf53995d9f79f2e0dea8894252514" }, + { "id": "54", "name": "e89b99165131558af8e9447879c530ac" }, + { "id": "55", "name": "94425e46d9e82868322d09a66bdda3e4" }, + { "id": "56", "name": "b78af2afda8be0c0d56adbb913c1a2d2" }, + { "id": "57", "name": "a322566846461859c44229426fbdd8ba" }, + { "id": "58", "name": "b2e2e8486229e316fbe8a457710c288c" }, + { "id": "59", "name": "8bb7afb333d0e4b53560a856f5cda8ef" }, + { "id": "60", "name": "463b44b79fedae0025ece436695e407d" }, + { "id": "61", "name": "a315911defc5bcff13389f2c3ef834a1" }, + { "id": "62", "name": "25bc1c203366fcc40fbf2394d5154b50" }, + { "id": "63", "name": "5c6d383c57f46682cf9962704084ee03" }, + { "id": "64", "name": "062d5c614d8fc26746bd5e5e9b8ea9e7" }, + { "id": "65", "name": "fc14f1c2b399803e497827eed68d7779" }, + { "id": "66", "name": "b7da8201493a56053c800eb57299e796" }, + { "id": "67", "name": "338593eea9b5684639faaf8c500f0d2c" }, + { "id": "68", "name": "040c74e89644cd7ce27ca609652112d7" }, + { "id": "69", "name": "ea258e19d23517d4710950d7c94388af" }, + { "id": "70", "name": "d10f51b7d18f86b30403c449ad0c5d66" }, + { "id": "71", "name": "7a5d4244f2966079eb44df26b37b3ef9" }, + { "id": "72", "name": "eeae6b00aaba1b7788ee4a6383bbf227" }, + { "id": "73", "name": "56af64201081c0cf595ce03a38b20238" }, + { "id": "74", "name": "bc6fb262bbe122374136684aadcd6613" }, + { "id": "75", "name": "8aa4969b900749268b911edaf1d3e4ac" }, + { "id": "76", "name": "32d43b96aca27ed885f9cc9819b190f1" }, + { "id": "77", "name": "328c876e4c489aee32fddd7bd21b48ee" }, + { "id": "78", "name": "357b28f176fa44566cd2937494b4117d" }, + { "id": "79", "name": "0c5423ead9bc125eee75d900c59d2ebe" }, + { "id": "80", "name": "6a11e6045d5311a5856568346fca6ff9" }, + { "id": "81", "name": "8c3269c8b81f0a4cda1d42ef7e2b62f2" }, + { "id": "82", "name": "80b40d324e115de9d11f288af4794570" }, + { "id": "83", "name": "0ccb7b288c800cb57ad06595ee3efb48" }, + { "id": "84", "name": "17c740181296e2e2f4733a4a80f490c4" }, + { "id": "85", "name": "7fc7a596fc8078a2153253a522a27dea" }, + { "id": "86", "name": "f63db9d41f068fe47c175637cd089e89" }, + { "id": "87", "name": "f145eeb73f1d5e446508dbc2b2bbc8b6" }, + { "id": "88", "name": "68f802bd1a0df66548c52df8a2f8bd71" }, + { "id": "89", "name": "61201e1109b36ddced1901a89fdd83d5" }, + { "id": "90", "name": "7e0a00244e129a260c2d00efcb137ab7" }, + { "id": "91", "name": "7e0a00244e129a260c2d00efcb137ab7" }, + { "id": "92", "name": "30caac1b1c2d53830f27d4f0ea73c242" }, + { "id": "93", "name": "14511f2f5564650d129ca7cabc333278" }, + { "id": "94", "name": "8ec7ae8aa8f007f5e62751e924b07f56" }, + { "id": "95", "name": "aa78ff7a707836e35aca9cf37c400ac2" }, + { "id": "96", "name": "aa78ff7a707836e35aca9cf37c400ac2" }, + { "id": "97", "name": "e0d89d3b4f23d4f38e5f062b5a97651a" }, + { "id": "98", "name": "e0d89d3b4f23d4f38e5f062b5a97651a" }, + { "id": "99", "name": "14343966a1d7dce7526e57cf2206d19d" }, + { "id": "100", "name": "4cab53ffca49159385612f2870f0037d" }, + { "id": "101", "name": "acbde0c28966c2b4a8d77544bfea76d5" }, + { "id": "102", "name": "a8d19aa979ed9541cb199908fdd4afc0" }, + { "id": "103", "name": "593c2ce3452ed8df09e0435aefd18bd8" }, + { "id": "104", "name": "ce90135cb880ca5ef87c83a3ad4ac864" }, + { "id": "105", "name": "0f624d97c4b0ccb0ced16d55c95f40ad" }, + { "id": "106", "name": "257dd940fb92f09b8ae745ad92af84ae" }, + { "id": "107", "name": "4b3a6218bb3e3a7303e8a171a60fcf92" }, + { "id": "108", "name": "3f1090879b83df4c820e0f9ce45645de" }, + { "id": "109", "name": "e0323a9039add2978bf5b49550572c7c" }, + { "id": "110", "name": "159a360043681b5483450ff467a249c9" }, + { "id": "111", "name": "59141f4ba3d32e773065449dca08fb04" }, + { "id": "112", "name": "21b8735d8a7a218da89a7fb174c792f3" }, + { "id": "113", "name": "21b8735d8a7a218da89a7fb174c792f3" }, + { "id": "114", "name": "06e264d656e98937112856db5e7f7c3e" }, + { "id": "115", "name": "eb81adcc4edfeccb1ba0f16dfe1a737f" }, + { "id": "116", "name": "08a2d92fd3df9c4bc76df21fd53ed42e" }, + { "id": "117", "name": "fb7dba2eac65e3d65aad11cdd145aab0" }, + { "id": "118", "name": "35ea51baf1fe7f0142ad5f950855dde0" }, + { "id": "119", "name": "0a2ca52fb6c685c9c2db4fb22b012930" }, + { "id": "120", "name": "bb5b2ae1f13372e0f31c9c51c90e1537" }, + { "id": "121", "name": "f7ac7c3e53538c532d50fa9c41c59f5c" }, + { "id": "122", "name": "d649c565bb540fb2eefb6c0b539d6242" }, + { "id": "123", "name": "8bdba20fbf947deb51bb901d81013b4d" }, + { "id": "124", "name": "ce6fdef565eeecf14ab38d83643b922d" }, + { "id": "125", "name": "962a845876a1c5ae556cf3649effd23a" }, + { "id": "126", "name": "ce5606835af24a6204e9ede8aae878d3" }, + { "id": "127", "name": "c7b4fa30e4dc5d854bac9eca79e57e41" }, + { "id": "128", "name": "4d236d9a2d102c5fe6ad1c50da4bec50" }, + { "id": "129", "name": "b475bec99d5e6871eeec5f652c872e88" }, + { "id": "130", "name": "86bc8118f38fa23912328fb3bb0265fa" }, + { "id": "131", "name": "c3eef34d092ed60c3b2791814511903a" }, + { "id": "132", "name": "f4c1af088d430615af64e45e5398da90" }, + { "id": "133", "name": "59da411f99f66c223836cb98f7eba556" }, + { "id": "134", "name": "23a343167200d7d3699a974a824f8fe6" }, + { "id": "135", "name": "af6ebfc0beaf0e7988f875c7e67acd07" }, + { "id": "136", "name": "874e62633a94fd4fd401ac70b0aa20dd" }, + { "id": "137", "name": "88a889bccf8d6becb740554d8fdcb885" }, + { "id": "138", "name": "f263ce8e8a316f812e8fbb85b04162c2" }, + { "id": "139", "name": "ea3f11ede195849ca4168c815023f183" }, + { "id": "140", "name": "b62cd28a67f00cc7c6d1ac536c5416e1" }, + { "id": "141", "name": "fed7cb71238fdd8278862599f5cac297" }, + { "id": "142", "name": "02d1228ea357fa8b7e4ffbd1e23ad0f9" }, + { "id": "143", "name": "70074cb47ebd40410ea1458f81c2c0ce" }, + { "id": "144", "name": "b902eeec7fc207ee60c25e8ce968c464" }, + { "id": "145", "name": "7b240bccc0697deddc8fda79b8901039" }, + { "id": "146", "name": "95483d507cf81106d9fa2107d8358ea0" }, + { "id": "147", "name": "16c2d4b559ef09c6b0a7ee9bcd658de6" }, + { "id": "148", "name": "fac302505ffff6f9d267c3d8406baddc" }, + { "id": "149", "name": "51c3fbe0170e433dd010f9b8634f1c93" }, + { "id": "150", "name": "e41fad42ce43492fd3ec1aca019866d8" }, + { "id": "151", "name": "af15d11229bb0dee2b5d037bc92fb7ff" }, + { "id": "152", "name": "b54dbbc002e9e7cf4507b390989bfe86" }, + { "id": "153", "name": "1202259476e182258951edcbce2eaf5f" }, + { "id": "154", "name": "a0f298746c3f5760b6a2b5f128081c88" }, + { "id": "155", "name": "1dae544a125c8f47bb4cbf14447abd1f" }, + { "id": "156", "name": "5c24d388073108311911127c1109504f" }, + { "id": "157", "name": "7a311f9d6739d6d545a037372740a69e" }, + { "id": "158", "name": "f8360bc69b9fbdb5ab12a7c8b4c5065d" }, + { "id": "159", "name": "979d34e9a49eac62c0e8508d33fd715f" }, + { "id": "160", "name": "c10f77963a2b21079156a0e5c5a4bb3c" }, + { "id": "161", "name": "9dddf2a4f7d94594ec2ea98407a410e1" }, + { "id": "162", "name": "204151369b0775e8003dda9f100dccc8" }, + { "id": "163", "name": "c632fb3e90eb91a3b99db7e58c26a132" }, + { "id": "164", "name": "fe5fa5500fa143b49753d1b8085c8f88" }, + { "id": "165", "name": "4733f44d556ab0d67e7e14623d8ecf11" }, + { "id": "166", "name": "4534bbf61c6f0ce20b6aba2543a2b689" }, + { "id": "167", "name": "b4a4d45741c41ff5ba0f03738f97cb72" }, + { "id": "168", "name": "a219d952c828c6dfd3c9e7465f0d29c4" }, + { "id": "169", "name": "f5fdda08877f91406e8f144cda8337dc" }, + { "id": "170", "name": "70106d0d821513f45702b7d25664ab7c" }, + { "id": "171", "name": "07213a0161f52846ab198be103b5ab43" }, + { "id": "172", "name": "1928c4acf185a7213d452963d360cbb4" }, + { "id": "173", "name": "e673563d284ce1880ea3c79a1bf1d6e4" }, + { "id": "174", "name": "e673563d284ce1880ea3c79a1bf1d6e4" }, + { "id": "175", "name": "e673563d284ce1880ea3c79a1bf1d6e4" }, + { "id": "176", "name": "ba1c79ef089f797e5261e60712a68010" }, + { "id": "177", "name": "ba1c79ef089f797e5261e60712a68010" }, + { "id": "178", "name": "108bbd9ea6ff1df28819a51e1a1d9dd7" }, + { "id": "179", "name": "00f15f3ee321ac9bb6e87995f6661d48" }, + { "id": "180", "name": "188b02f3db7cf2cba6d4c266f6a9a9ef" }, + { "id": "181", "name": "cdf8e39ded05cc78f28c1ce7758920d8" }, + { "id": "182", "name": "3f5e26f2d3f0b8c5003610f03bc8eb5b" }, + { "id": "183", "name": "d5f51a6b3d05a2651e100f6a985ae930" }, + { "id": "184", "name": "86c5bf13ff5be3da17d5e0a2b094757b" }, + { "id": "185", "name": "86c5bf13ff5be3da17d5e0a2b094757b" }, + { "id": "186", "name": "954a1536256725886a2e665e96137788" }, + { "id": "187", "name": "35e5e04846d4be6087d27f52679f5515" }, + { "id": "188", "name": "35e5e04846d4be6087d27f52679f5515" }, + { "id": "189", "name": "be123bf97c6ee41cbab92c5c124eb17b" }, + { "id": "190", "name": "bb2c3c9445c43c117faa4c5ae67f9714" }, + { "id": "191", "name": "de3b4247b8a568ecfcd6619a568b6cea" }, + { "id": "192", "name": "d13478fdc8d0b9a9a8ca45b3d3bd4aab" }, + { "id": "193", "name": "c093d1adfc3901dc239444d45061f26a" }, + { "id": "194", "name": "82acbce6db58682ce016453c696d9636" }, + { "id": "195", "name": "c7739296d1cdb9748348bee070aa3d19" }, + { "id": "196", "name": "9a4b4a1dc92e0276d14d7dd0f145306a" }, + { "id": "197", "name": "faa17f9ec25ea6c7f6f963bd352808f5" }, + { "id": "198", "name": "1d928c319af039b8ce4303ae11e9d4d8" }, + { "id": "199", "name": "8684147451a6cc3b92142c6f4b78e61c" }, + { "id": "200", "name": "b53d991e7442c1bd1c3ab4d62f0e7519" }, + { "id": "201", "name": "889f73f4c8c315bc9d530967e82a57f4" }, + { "id": "202", "name": "85ed998c9203767af5ec409f07cdfcab" }, + { "id": "203", "name": "7494fe2c0f49924c0d543d1bb52225e2" }, + { "id": "204", "name": "8a5116ceba99299fa224c58377419a7a" }, + { "id": "205", "name": "76fddcb1a40d685e182bba8a3df83483" }, + { "id": "206", "name": "8af643b4958414c857523ab128a59034" }, + { "id": "207", "name": "7ed39e30114e9ee037784c176584456d" }, + { "id": "208", "name": "d4467da3853ebbe0254e476463e93a8f" }, + { "id": "209", "name": "f82084926fe3f17b1056520cf3144a76" }, + { "id": "210", "name": "12c44fd3a485931f4faf5ebd7e505ad3" }, + { "id": "211", "name": "0d303aafc28804ccc55f4ef8fc6ab7a4" }, + { "id": "212", "name": "b36ef85c549d172423e123f0b74adcaf" }, + { "id": "213", "name": "ff4a008470319a22d9cf3d14af485977" }, + { "id": "214", "name": "b11293f3f59eac4b1221704f203af369" }, + { "id": "215", "name": "9cc1df54052eb120644c29330aa18381" }, + { "id": "216", "name": "afc85ee276f33abe7d041853c634fc36" }, + { "id": "217", "name": "a6231c332ac8019b8246477bcccd79cc" }, + { "id": "218", "name": "985482f61241ee19a86448cc97c5f682" }, + { "id": "219", "name": "3ff47a2d7c0f78a49c8774990d82ccdd" }, + { "id": "220", "name": "3bfbba3a2055fb7e523bddaa86c910c3" }, + { "id": "221", "name": "e657fee496ec4d100164e0f4d2377d85" }, + { "id": "222", "name": "61a5a1e70d1d9ca58a9e0b3c5990f1c4" }, + { "id": "223", "name": "ec4d34fe3a6941380dc8c6949b16d42b" }, + { "id": "224", "name": "dbcc6c6cc854ec7c0a519668f1ed9841" }, + { "id": "225", "name": "e0cb68d453c7a8039a93564dc8248ea9" }, + { "id": "226", "name": "567bc1d268f135496de3d5b946b691f3" }, + { "id": "227", "name": "78805a221a988e79ef3f42d7c5bfd418" }, + { "id": "228", "name": "9cbb47c15bdee9d8f1ac2b6ffc96a39c" }, + { "id": "229", "name": "59b6d6f13869783e0734cd0bb01b5130" }, + { "id": "230", "name": "913c4cd2428ce8671839b1afb2699b25" }, + { "id": "231", "name": "d7119fcdb930b9aa3116335980570d82" }, + { "id": "232", "name": "045373230fa7d701137ce2f2bca54db8" }, + { "id": "233", "name": "c5b825e5c013d16600775fb568bd934c" }, + { "id": "234", "name": "9e50b36bb2497496c6398461a2082fcc" }, + { "id": "235", "name": "9e50b36bb2497496c6398461a2082fcc" }, + { "id": "236", "name": "9e50b36bb2497496c6398461a2082fcc" }, + { "id": "237", "name": "bd9a779d203f7c7e409f6139ac3691e4" }, + { "id": "238", "name": "013764cfe4d1f0c0bb74403295d0f208" }, + { "id": "239", "name": "e8a2f5fa37619881c42019504b770458" }, + { "id": "240", "name": "a36ba9275ce99973e406a4b30b00cf3f" }, + { "id": "241", "name": "8e43f40ef3c0cd3c0d20af30a589cf38" }, + { "id": "242", "name": "bf911b21d6cb2222f430658c4c281604" }, + { "id": "243", "name": "faaa5d5d9712d82df3d0b1f56acf1a8d" }, + { "id": "244", "name": "7014827aed98eeb8a61e4d888c75e24a" }, + { "id": "245", "name": "e5823ba08cf6f8acc6662017ec572078" }, + { "id": "246", "name": "47041eaaa4d22eb472c06d81ecdccde7" }, + { "id": "247", "name": "47041eaaa4d22eb472c06d81ecdccde7" }, + { "id": "248", "name": "47041eaaa4d22eb472c06d81ecdccde7" }, + { "id": "249", "name": "9521334fbf612112ba030c88fe882b06" }, + { "id": "250", "name": "1c452f266e90d2652da56cf257d558df" }, + { "id": "251", "name": "7877cd05a8932deaccf362f41e34be22" }, + { "id": "252", "name": "190ebe412ab179f20e7e3ee39cae82d4" }, + { "id": "253", "name": "dc1d71bbb5c4d2a5e936db79ef10c19f" }, + { "id": "254", "name": "7b571ec5a348ca760bf1ef0d9782572c" }, + { "id": "255", "name": "5272c4510cc7583284acd35c5283faaa" }, + { "id": "256", "name": "fab40977708f30364cc3963cd7ae412c" }, + { "id": "257", "name": "8034aa4e09965ae0beb0d375de3226c7" }, + { "id": "258", "name": "8861021ea041394f627e3a1b60c3e92c" }, + { "id": "259", "name": "86094b61cb9f63b77f982ceae03e95f0" }, + { "id": "260", "name": "663f9b65074738ff4adf1d288e40042e" }, + { "id": "261", "name": "def4021bc0cb91cd0bfe422d8044bc0b" }, + { "id": "262", "name": "29a4011ccb2898c8cb9e769a75a837c5" }, + { "id": "263", "name": "05edaca3adb3ec38bb87872faf340c80" }, + { "id": "264", "name": "05edaca3adb3ec38bb87872faf340c80" }, + { "id": "265", "name": "abe034562765464066b8cdf05fe90bf1" }, + { "id": "266", "name": "77f7bdcfc6e15379ae72bea0f61928be" }, + { "id": "267", "name": "77f7bdcfc6e15379ae72bea0f61928be" }, + { "id": "268", "name": "393b7e38038f12c5fb4c92e81a1b5a01" }, + { "id": "269", "name": "393b7e38038f12c5fb4c92e81a1b5a01" }, + { "id": "270", "name": "aee37c30f5d091a495526f636a3527bb" }, + { "id": "271", "name": "3ae474c6b56898d62527e923128c3e6f" }, + { "id": "272", "name": "17200a32de0894e33960d8e659aab081" }, + { "id": "273", "name": "1e89e5daef7cfc7487a9567c113f86e3" }, + { "id": "274", "name": "20b1d691b33ed6c94fbe7d629fb526e6" }, + { "id": "275", "name": "8345a34a65aa1a67f3e6f8852297c25b" }, + { "id": "276", "name": "7555e8810948d6d8d545b3aca61cf291" }, + { "id": "277", "name": "7555e8810948d6d8d545b3aca61cf291" }, + { "id": "278", "name": "559fe6fefe8ba2f96e5de683026f9adf" }, + { "id": "279", "name": "559fe6fefe8ba2f96e5de683026f9adf" }, + { "id": "280", "name": "f36d3843919d2c0a78da03aa83c23467" }, + { "id": "281", "name": "1e6cf868df5884c007e6117c00372aef" }, + { "id": "282", "name": "1e6cf868df5884c007e6117c00372aef" }, + { "id": "283", "name": "76010287fa91bee0542991280411c07b" }, + { "id": "284", "name": "76010287fa91bee0542991280411c07b" }, + { "id": "285", "name": "32348609a5980dbacdff1b41a4ccfa25" }, + { "id": "286", "name": "32348609a5980dbacdff1b41a4ccfa25" }, + { "id": "287", "name": "8d9e5d8716e6b0d97d40eae2f05d653c" }, + { "id": "288", "name": "c0de6b975080d84145a31c4430546b52" }, + { "id": "289", "name": "8754d87959e294f2f2b49721aac9d77c" }, + { "id": "290", "name": "34da450e959d17db92f6876051d0faac" }, + { "id": "291", "name": "f1ce1e003b7fcaa301e3e84a2a17caf3" }, + { "id": "292", "name": "73f0e3d3042a071a755ce04fe3b84eeb" }, + { "id": "293", "name": "1cf9f8be06cdce86bfde06213124c08b" }, + { "id": "294", "name": "559dc096a2b767ff9a5ba7a2b01dcb18" }, + { "id": "295", "name": "3ac156eead4ae6b40e9c498d532b4448" }, + { "id": "296", "name": "ee7077d4a5317d34123c82d5b49f2c6d" }, + { "id": "297", "name": "326d819779719261292c50b77e64c29b" }, + { "id": "298", "name": "3737b875474ceba31cab544b12ff662d" }, + { "id": "299", "name": "2f73afad7f2480e30b484a13d08c8c95" }, + { "id": "300", "name": "cdc3ae6882ab6133d9448100253b6da3" }, + { "id": "301", "name": "0b070ef33a2b45bda8d27d9ea0f4e4bb" }, + { "id": "302", "name": "a264d2bed092db847e7fe93f56278949" }, + { "id": "303", "name": "fc3a4fb327706ca2220500871d60b94b" }, + { "id": "304", "name": "06baef17304361bd79041c4be3a55f36" }, + { "id": "305", "name": "2d205dc0cb53af0d000627bf577a284d" }, + { "id": "306", "name": "0f755a9630404f51115799274a859e9d" }, + { "id": "307", "name": "1a04d3ce7d869169f32705efb43f2963" }, + { "id": "308", "name": "5f1f0a7ab27efe156310472f35f77650" }, + { "id": "309", "name": "2e541ebb6dcd2594b2b4a7f9e9331c84" }, + { "id": "310", "name": "80e19adebcddc28661cf6fb7e6a43707" }, + { "id": "311", "name": "eaa7963db60821bfdfcb40d425d48c2f" }, + { "id": "312", "name": "78310a5e43f5e02a3ccfb2c519ade2df" }, + { "id": "313", "name": "ca058f7ff8d77c9bfc0fc0aceb0d2d19" }, + { "id": "314", "name": "8f4e4e875f8521719dd560c40e5585d3" }, + { "id": "315", "name": "bff139fa05ac583f685a523ab3d110a0" }, + { "id": "316", "name": "f965cf52cab93e83eb6c998148cb1899" }, + { "id": "317", "name": "ae76ff49d7dc84738416af9f24790807" }, + { "id": "318", "name": "b28f7972f56245741d80ee383a2ad9b4" }, + { "id": "319", "name": "0a98ca1bc31668a67e5904c5448b0b1c" }, + { "id": "320", "name": "f4b405642b6f52ba4d7c10b4a2a7dc1b" }, + { "id": "321", "name": "35b22c9204e0f3e55bcd93371800d881" }, + { "id": "322", "name": "35b22c9204e0f3e55bcd93371800d881" }, + { "id": "323", "name": "d88b0dd70cc3da6c8f5e0e6c64aa3d2a" }, + { "id": "324", "name": "3cdda3e94e1b3dfd218a9d60b8139968" }, + { "id": "325", "name": "7a674c327bfa07f7c1204fb38ca6ef3b" }, + { "id": "326", "name": "97ee2353c626b94e407568c289df2235" }, + { "id": "327", "name": "34d1c35063280164066ecc517050da0b" }, + { "id": "328", "name": "205755123d5c692a9524a9b14622731b" }, + { "id": "329", "name": "df9a65089e5bad4f8dd5166321f6d1f3" }, + { "id": "330", "name": "39a84672bfd6b013b04afb9a62d7fd4f" }, + { "id": "331", "name": "81b1f8a72bc1d4d2076535f8fb7011f3" }, + { "id": "332", "name": "81b1f8a72bc1d4d2076535f8fb7011f3" }, + { "id": "333", "name": "e3842b8b466bc569864245c4ac47f4c7" }, + { "id": "334", "name": "cdff3889e92d00c8ee5c129be5bb9eb1" }, + { "id": "335", "name": "cdff3889e92d00c8ee5c129be5bb9eb1" }, + { "id": "336", "name": "44c5b763d21e9a3ed8cad56977bfd75c" }, + { "id": "337", "name": "4bf45f2a08cc7297bc0735294c46e455" }, + { "id": "338", "name": "4bf45f2a08cc7297bc0735294c46e455" }, + { "id": "339", "name": "9cd81e68982526e6d5f8e853d2d88149" }, + { "id": "340", "name": "9cd81e68982526e6d5f8e853d2d88149" }, + { "id": "341", "name": "09066f6946ebce2d3acdd534300250ee" }, + { "id": "342", "name": "efecdfae536bae52e683435e553ad2fc" }, + { "id": "343", "name": "d44c5e4afb0e037ebda34218d0ec906f" }, + { "id": "344", "name": "151f91e8c75b37f108388e9c48149c96" }, + { "id": "345", "name": "45798f269709550d6f6e1d2cf4b7d485" }, + { "id": "346", "name": "f5853506c90053c6b7d30f358948e8c6" }, + { "id": "347", "name": "ea07bab11665740dd69fcc1bfcb79218" }, + { "id": "348", "name": "c3cb36b5dfc26b873db8771ed1356900" }, + { "id": "349", "name": "f1ec5494313f41894c57f348578c7582" }, + { "id": "350", "name": "d4cfab1b518d245bc1fc8db52b6d8ddc" }, + { "id": "351", "name": "a1890b4c4f2b5e1944c40a9b0f84a1c9" }, + { "id": "352", "name": "61e4a0242b73a47ca5be012eec164602" }, + { "id": "353", "name": "9b4a1b957c67220d9000d92734279b4c" }, + { "id": "354", "name": "5fb4f826eb039e06dcd48602b6f47744" }, + { "id": "355", "name": "d780e58e7e113a4d9b3b8f7cb93e0d90" }, + { "id": "356", "name": "197a397c6699d48b4e3d0684e3d60409" }, + { "id": "357", "name": "a5c59a46b273ee720e88fd953668fc4c" }, + { "id": "358", "name": "0ff9653ee33be170692bf31ef4762049" }, + { "id": "359", "name": "8966f6bbb307dcc4a147c27e52f4e3c9" }, + { "id": "360", "name": "ad96132928e568d000afd7430976a47a" }, + { "id": "361", "name": "b794a3be43ae97af9272641e1439bb81" }, + { "id": "362", "name": "e469554f74eb45316bb1e888fd26d9a5" }, + { "id": "363", "name": "e52ce0141772cd5abea43f36ab85f387" }, + { "id": "364", "name": "30babd8bb8a21ab5d5f64aa26b1b146f" }, + { "id": "365", "name": "2dbcba41b9ac4c5d22886ba672463cb4" }, + { "id": "366", "name": "66fa7ed832617131ae1a7038202c8eb0" }, + { "id": "367", "name": "6937c747071d8ed25db6fd25c857c800" }, + { "id": "368", "name": "40d4a203bc881c2d59c6fa3f6ffe0848" }, + { "id": "369", "name": "281026d966626615768589fa301ae6af" }, + { "id": "370", "name": "9c5aef07f2be779a3c925b7dcbd7edc8" }, + { "id": "371", "name": "93237e284f0a749ffba472e449bfc25e" }, + { "id": "372", "name": "efdd6be310211dc9f99352a528639a69" }, + { "id": "373", "name": "437b674a7f6569110d1256eb80073f41" }, + { "id": "374", "name": "d726760b0467b77803d6d1f3585deb6e" }, + { "id": "375", "name": "d726760b0467b77803d6d1f3585deb6e" }, + { "id": "376", "name": "af6f76f73f7bbc78ac093ab17179d79c" }, + { "id": "377", "name": "6f6d894b6e7b0860a6bf5e7531362eb6" }, + { "id": "378", "name": "4536c5221a1bd765afac166e93e0178e" }, + { "id": "379", "name": "a8cbe673c91e4d81ec83c0cab9067500" }, + { "id": "380", "name": "6027bd3d50602d5c3c468f012ae9f1d8" }, + { "id": "381", "name": "3732301a0ea1396b1ba5d6fba5dfeef3" }, + { "id": "382", "name": "e32374835198c385c2d5b06104a7e392" }, + { "id": "383", "name": "519c922400f507afa4e229bd8ad70e57" }, + { "id": "384", "name": "4c740dc82c5e102c992e4e06254617f0" }, + { "id": "385", "name": "ef82bc84de1446be5cfb022f09a35779" }, + { "id": "386", "name": "ef82bc84de1446be5cfb022f09a35779" }, + { "id": "387", "name": "ef82bc84de1446be5cfb022f09a35779" }, + { "id": "388", "name": "4ab7d471b85d867f917bf1a97f4224ec" }, + { "id": "389", "name": "e6241403d71d11ca2cb2677975d92b7f" }, + { "id": "390", "name": "d027e4e8af27161ef4f0f956f9761745" }, + { "id": "391", "name": "d34ce0c192ca130e1501a539e2acc104" }, + { "id": "392", "name": "d34ce0c192ca130e1501a539e2acc104" }, + { "id": "393", "name": "e620c0045da1f9b6caf8af35e9ae2974" }, + { "id": "394", "name": "305bf877df3b92ddf55e4f2846fff2bb" }, + { "id": "395", "name": "166f8bf58312c261dbb7285929272029" }, + { "id": "396", "name": "19ade5aaa068959b5df7b61c70bbd076" }, + { "id": "397", "name": "091b300a1aeeb5d726503da4f553eda7" }, + { "id": "398", "name": "1a2fb33872ac623cd067925d158c6956" }, + { "id": "399", "name": "bb3a5ceb14b9916e7e2ed48d44c5c4b3" }, + { "id": "400", "name": "d1d88fa25cf5d33c474f514746583b8a" }, + { "id": "401", "name": "d1792b3856fcd0a9c4d37aed5060977d" }, + { "id": "402", "name": "e5df42e20907d1dd015404c25257655f" }, + { "id": "403", "name": "97c8316accbe1ad474be953f14a7e263" }, + { "id": "404", "name": "65a78966cebfa72352c2164af20adacf" }, + { "id": "405", "name": "109e84982280068d94d40ad3c8e5954a" }, + { "id": "406", "name": "fee9e500058a8269de4e0f3bedf94046" }, + { "id": "407", "name": "763122f293d1a3430b493172b1c586ab" }, + { "id": "408", "name": "8a86a2616d761cf214a9078aa386575c" }, + { "id": "409", "name": "80858b6eb2ac3ab296c316180b23487a" }, + { "id": "410", "name": "47aae6947e67687737e8c7dfadadb7ec" }, + { "id": "411", "name": "ef7c876f00f3acddd00fa671f52d0b1f" }, + { "id": "412", "name": "e666d102045d6c3dd1722cccba827925" }, + { "id": "413", "name": "04d94a9d91b116b0c7d8882d3173d31c" }, + { "id": "414", "name": "1f4eaf4419512c0e8b4c337a0f22e5dd" }, + { "id": "415", "name": "d1dbf933a5b6913a22927ac2fb763b3c" }, + { "id": "416", "name": "2165060bd8a37db2487ca466905846ce" }, + { "id": "417", "name": "c04b6fa7a56d0da7c952442232b4f0c4" }, + { "id": "418", "name": "1d6efdf2bbe004c7dc5483ad0a44ca30" }, + { "id": "419", "name": "41f88549976e3f853da38035c7aa0e9f" }, + { "id": "420", "name": "deb563564005ef6b03805fcc97a04cbe" }, + { "id": "421", "name": "558c8720b5b05214362ab84f0a215d27" }, + { "id": "422", "name": "b6acf90bdb44c2d3b804683b6525ec8d" }, + { "id": "423", "name": "d88c3e9efafa6c134c03fce74fcd6873" }, + { "id": "424", "name": "a14bdeb169af05183a60d266fe30e3d2" }, + { "id": "425", "name": "1ef05294d2c9e6c0d845a7d16dbd1cb2" }, + { "id": "426", "name": "400362c59aab7fc83e0f1c5771ab56ae" }, + { "id": "427", "name": "c68e6ab7a4d892817452d6a0f0e76ff6" }, + { "id": "428", "name": "74dd0ef2dece36cda5137fabc02677cf" }, + { "id": "429", "name": "b6c4c5c378eac3925d7f6543901f2dfe" }, + { "id": "430", "name": "866c37703f08cc4913e30314a8075467" }, + { "id": "431", "name": "2ae607ba615284096f49177a739fdf9a" }, + { "id": "432", "name": "b324540f4b8f0ba32c08d08f7d4bf4e0" }, + { "id": "433", "name": "ae70b95a170877b7638329348cc14b9a" }, + { "id": "434", "name": "0f4137ed1502b5045d6083aa258b5c42" }, + { "id": "435", "name": "0f4137ed1502b5045d6083aa258b5c42" }, + { "id": "436", "name": "0f4137ed1502b5045d6083aa258b5c42" }, + { "id": "437", "name": "187fe1f83bb6a149d28e9ac8a889e967" }, + { "id": "438", "name": "01cade94c73d9e13e79f02ccacb7c791" }, + { "id": "439", "name": "e145effa757d78568eab76356bf3b7fa" }, + { "id": "440", "name": "d855f09097164c5f3616116bf82c3584" }, + { "id": "441", "name": "d855f09097164c5f3616116bf82c3584" }, + { "id": "442", "name": "d855f09097164c5f3616116bf82c3584" }, + { "id": "443", "name": "efad9cd968c40cdbd0b7e33d69747d5d" }, + { "id": "444", "name": "efad9cd968c40cdbd0b7e33d69747d5d" }, + { "id": "445", "name": "efad9cd968c40cdbd0b7e33d69747d5d" }, + { "id": "446", "name": "6ba99e656fd870628272091e07f2a1be" }, + { "id": "447", "name": "6ba99e656fd870628272091e07f2a1be" }, + { "id": "448", "name": "6ba99e656fd870628272091e07f2a1be" }, + { "id": "449", "name": "4c6c07b6330b01004e7a3ef190465412" }, + { "id": "450", "name": "4c6c07b6330b01004e7a3ef190465412" }, + { "id": "451", "name": "4c6c07b6330b01004e7a3ef190465412" }, + { "id": "452", "name": "5e3681f555944d31edeb44e7194f6745" }, + { "id": "453", "name": "5e3681f555944d31edeb44e7194f6745" }, + { "id": "454", "name": "5e3681f555944d31edeb44e7194f6745" }, + { "id": "455", "name": "b948dcbfe194727798131ded082a6b85" }, + { "id": "456", "name": "b948dcbfe194727798131ded082a6b85" }, + { "id": "457", "name": "b948dcbfe194727798131ded082a6b85" }, + { "id": "458", "name": "958bb955638d12c73624633dc6b59471" }, + { "id": "459", "name": "958bb955638d12c73624633dc6b59471" }, + { "id": "460", "name": "958bb955638d12c73624633dc6b59471" }, + { "id": "461", "name": "82e897f1199c32f9098c861463e942c3" }, + { "id": "462", "name": "82e897f1199c32f9098c861463e942c3" }, + { "id": "463", "name": "82e897f1199c32f9098c861463e942c3" }, + { "id": "464", "name": "277604a738af4ff5dfefa5c766bd18e2" }, + { "id": "465", "name": "277604a738af4ff5dfefa5c766bd18e2" }, + { "id": "466", "name": "277604a738af4ff5dfefa5c766bd18e2" }, + { "id": "467", "name": "9e18a3311e807db18f7ec710e5e21f38" }, + { "id": "468", "name": "c7c683c01ab99e6c8d919d53167a9a76" }, + { "id": "469", "name": "c7c683c01ab99e6c8d919d53167a9a76" }, + { "id": "470", "name": "22d5a2eb8798eed3f2e3e036d05273b8" }, + { "id": "471", "name": "f43ad420f0470fdcc348bbad8cb1e5bb" }, + { "id": "472", "name": "355cc995e67e634df54cb95493e29816" }, + { "id": "473", "name": "efdce339cd6626e504236aefc611779b" }, + { "id": "474", "name": "4ea0dc2f092838cb635874fb4bc0e034" }, + { "id": "475", "name": "90705684f9e319161afda88268c99a81" }, + { "id": "476", "name": "4281f64ac0895cdef980b3b507a1a346" }, + { "id": "477", "name": "402cb3c53c75e2740892282d3f69c1a2" }, + { "id": "478", "name": "99c2cc82325cfe171cf137559e60a02b" }, + { "id": "479", "name": "e07174ed9c1f1e877dc38a0a5ec31375" }, + { "id": "480", "name": "d074c638b8aca858d5c1e4eac97e68b5" } + ], + "links": [ + { "source": "0", "target": "1" }, + { "source": "0", "target": "294" }, + { "source": "3", "target": "2" }, + { "source": "4", "target": "2" }, + { "source": "4", "target": "3" }, + { "source": "4", "target": "283" }, + { "source": "4", "target": "291" }, + { "source": "5", "target": "2" }, + { "source": "5", "target": "3" }, + { "source": "5", "target": "291" }, + { "source": "5", "target": "299" }, + { "source": "5", "target": "371" }, + { "source": "5", "target": "435" }, + { "source": "6", "target": "2" }, + { "source": "6", "target": "4" }, + { "source": "6", "target": "5" }, + { "source": "6", "target": "332" }, + { "source": "6", "target": "467" }, + { "source": "8", "target": "113" }, + { "source": "8", "target": "194" }, + { "source": "8", "target": "291" }, + { "source": "8", "target": "414" }, + { "source": "8", "target": "479" }, + { "source": "9", "target": "258" }, + { "source": "11", "target": "12" }, + { "source": "11", "target": "90" }, + { "source": "11", "target": "245" }, + { "source": "11", "target": "268" }, + { "source": "12", "target": "245" }, + { "source": "12", "target": "314" }, + { "source": "13", "target": "14" }, + { "source": "13", "target": "91" }, + { "source": "13", "target": "109" }, + { "source": "13", "target": "110" }, + { "source": "13", "target": "236" }, + { "source": "13", "target": "237" }, + { "source": "13", "target": "245" }, + { "source": "13", "target": "253" }, + { "source": "13", "target": "264" }, + { "source": "13", "target": "265" }, + { "source": "13", "target": "267" }, + { "source": "13", "target": "277" }, + { "source": "13", "target": "380" }, + { "source": "17", "target": "245" }, + { "source": "18", "target": "19" }, + { "source": "18", "target": "20" }, + { "source": "18", "target": "21" }, + { "source": "18", "target": "22" }, + { "source": "18", "target": "127" }, + { "source": "18", "target": "410" }, + { "source": "20", "target": "410" }, + { "source": "21", "target": "442" }, + { "source": "22", "target": "19" }, + { "source": "22", "target": "442" }, + { "source": "23", "target": "275" }, + { "source": "24", "target": "25" }, + { "source": "24", "target": "26" }, + { "source": "25", "target": "26" }, + { "source": "25", "target": "323" }, + { "source": "25", "target": "325" }, + { "source": "25", "target": "375" }, + { "source": "26", "target": "354" }, + { "source": "30", "target": "247" }, + { "source": "31", "target": "173" }, + { "source": "31", "target": "189" }, + { "source": "32", "target": "132" }, + { "source": "32", "target": "175" }, + { "source": "32", "target": "177" }, + { "source": "32", "target": "189" }, + { "source": "32", "target": "312" }, + { "source": "33", "target": "35" }, + { "source": "33", "target": "36" }, + { "source": "33", "target": "132" }, + { "source": "33", "target": "179" }, + { "source": "33", "target": "191" }, + { "source": "33", "target": "363" }, + { "source": "34", "target": "35" }, + { "source": "34", "target": "99" }, + { "source": "34", "target": "191" }, + { "source": "35", "target": "174" }, + { "source": "35", "target": "176" }, + { "source": "35", "target": "312" }, + { "source": "37", "target": "148" }, + { "source": "41", "target": "24" }, + { "source": "41", "target": "63" }, + { "source": "41", "target": "104" }, + { "source": "41", "target": "149" }, + { "source": "41", "target": "182" }, + { "source": "41", "target": "191" }, + { "source": "41", "target": "327" }, + { "source": "41", "target": "345" }, + { "source": "41", "target": "354" }, + { "source": "42", "target": "2" }, + { "source": "42", "target": "44" }, + { "source": "42", "target": "50" }, + { "source": "42", "target": "54" }, + { "source": "43", "target": "44" }, + { "source": "43", "target": "45" }, + { "source": "43", "target": "48" }, + { "source": "43", "target": "54" }, + { "source": "43", "target": "61" }, + { "source": "43", "target": "64" }, + { "source": "43", "target": "66" }, + { "source": "43", "target": "71" }, + { "source": "43", "target": "73" }, + { "source": "43", "target": "79" }, + { "source": "43", "target": "80" }, + { "source": "43", "target": "82" }, + { "source": "43", "target": "357" }, + { "source": "43", "target": "411" }, + { "source": "44", "target": "50" }, + { "source": "44", "target": "54" }, + { "source": "44", "target": "71" }, + { "source": "44", "target": "77" }, + { "source": "44", "target": "82" }, + { "source": "44", "target": "163" }, + { "source": "44", "target": "417" }, + { "source": "44", "target": "423" }, + { "source": "45", "target": "31" }, + { "source": "45", "target": "34" }, + { "source": "45", "target": "35" }, + { "source": "45", "target": "44" }, + { "source": "45", "target": "46" }, + { "source": "45", "target": "48" }, + { "source": "45", "target": "54" }, + { "source": "45", "target": "64" }, + { "source": "45", "target": "71" }, + { "source": "45", "target": "77" }, + { "source": "45", "target": "82" }, + { "source": "45", "target": "85" }, + { "source": "45", "target": "92" }, + { "source": "45", "target": "149" }, + { "source": "45", "target": "163" }, + { "source": "45", "target": "190" }, + { "source": "45", "target": "191" }, + { "source": "45", "target": "238" }, + { "source": "45", "target": "296" }, + { "source": "45", "target": "345" }, + { "source": "45", "target": "354" }, + { "source": "45", "target": "380" }, + { "source": "45", "target": "417" }, + { "source": "45", "target": "419" }, + { "source": "45", "target": "423" }, + { "source": "46", "target": "65" }, + { "source": "46", "target": "323" }, + { "source": "46", "target": "325" }, + { "source": "46", "target": "375" }, + { "source": "47", "target": "44" }, + { "source": "47", "target": "45" }, + { "source": "47", "target": "50" }, + { "source": "47", "target": "54" }, + { "source": "47", "target": "66" }, + { "source": "47", "target": "71" }, + { "source": "47", "target": "80" }, + { "source": "47", "target": "82" }, + { "source": "47", "target": "288" }, + { "source": "47", "target": "344" }, + { "source": "48", "target": "44" }, + { "source": "48", "target": "54" }, + { "source": "48", "target": "66" }, + { "source": "48", "target": "71" }, + { "source": "48", "target": "77" }, + { "source": "48", "target": "82" }, + { "source": "48", "target": "104" }, + { "source": "48", "target": "149" }, + { "source": "49", "target": "44" }, + { "source": "49", "target": "45" }, + { "source": "49", "target": "48" }, + { "source": "49", "target": "50" }, + { "source": "49", "target": "54" }, + { "source": "49", "target": "64" }, + { "source": "49", "target": "66" }, + { "source": "49", "target": "71" }, + { "source": "49", "target": "73" }, + { "source": "49", "target": "80" }, + { "source": "49", "target": "82" }, + { "source": "49", "target": "91" }, + { "source": "49", "target": "326" }, + { "source": "49", "target": "354" }, + { "source": "50", "target": "65" }, + { "source": "50", "target": "325" }, + { "source": "50", "target": "375" }, + { "source": "51", "target": "44" }, + { "source": "51", "target": "48" }, + { "source": "51", "target": "54" }, + { "source": "51", "target": "64" }, + { "source": "51", "target": "79" }, + { "source": "51", "target": "82" }, + { "source": "51", "target": "134" }, + { "source": "51", "target": "376" }, + { "source": "52", "target": "63" }, + { "source": "53", "target": "44" }, + { "source": "53", "target": "248" }, + { "source": "53", "target": "380" }, + { "source": "54", "target": "32" }, + { "source": "54", "target": "55" }, + { "source": "54", "target": "70" }, + { "source": "54", "target": "71" }, + { "source": "54", "target": "77" }, + { "source": "54", "target": "82" }, + { "source": "54", "target": "163" }, + { "source": "54", "target": "181" }, + { "source": "54", "target": "327" }, + { "source": "54", "target": "346" }, + { "source": "54", "target": "354" }, + { "source": "54", "target": "371" }, + { "source": "54", "target": "380" }, + { "source": "55", "target": "65" }, + { "source": "55", "target": "323" }, + { "source": "55", "target": "325" }, + { "source": "55", "target": "375" }, + { "source": "56", "target": "65" }, + { "source": "56", "target": "167" }, + { "source": "57", "target": "44" }, + { "source": "57", "target": "54" }, + { "source": "57", "target": "62" }, + { "source": "57", "target": "64" }, + { "source": "57", "target": "79" }, + { "source": "57", "target": "82" }, + { "source": "57", "target": "195" }, + { "source": "57", "target": "380" }, + { "source": "58", "target": "44" }, + { "source": "58", "target": "45" }, + { "source": "58", "target": "48" }, + { "source": "58", "target": "49" }, + { "source": "58", "target": "54" }, + { "source": "58", "target": "59" }, + { "source": "58", "target": "64" }, + { "source": "58", "target": "66" }, + { "source": "58", "target": "69" }, + { "source": "58", "target": "71" }, + { "source": "58", "target": "73" }, + { "source": "58", "target": "76" }, + { "source": "58", "target": "80" }, + { "source": "58", "target": "82" }, + { "source": "59", "target": "65" }, + { "source": "59", "target": "323" }, + { "source": "59", "target": "325" }, + { "source": "59", "target": "375" }, + { "source": "60", "target": "40" }, + { "source": "60", "target": "43" }, + { "source": "60", "target": "44" }, + { "source": "60", "target": "45" }, + { "source": "60", "target": "48" }, + { "source": "60", "target": "49" }, + { "source": "60", "target": "54" }, + { "source": "60", "target": "61" }, + { "source": "60", "target": "64" }, + { "source": "60", "target": "66" }, + { "source": "60", "target": "69" }, + { "source": "60", "target": "71" }, + { "source": "60", "target": "73" }, + { "source": "60", "target": "75" }, + { "source": "60", "target": "77" }, + { "source": "60", "target": "80" }, + { "source": "60", "target": "82" }, + { "source": "60", "target": "203" }, + { "source": "60", "target": "302" }, + { "source": "60", "target": "354" }, + { "source": "60", "target": "356" }, + { "source": "60", "target": "380" }, + { "source": "61", "target": "44" }, + { "source": "61", "target": "48" }, + { "source": "61", "target": "54" }, + { "source": "61", "target": "64" }, + { "source": "61", "target": "71" }, + { "source": "61", "target": "82" }, + { "source": "62", "target": "44" }, + { "source": "62", "target": "54" }, + { "source": "62", "target": "66" }, + { "source": "62", "target": "71" }, + { "source": "62", "target": "82" }, + { "source": "62", "target": "367" }, + { "source": "62", "target": "380" }, + { "source": "63", "target": "42" }, + { "source": "63", "target": "43" }, + { "source": "63", "target": "44" }, + { "source": "63", "target": "45" }, + { "source": "63", "target": "47" }, + { "source": "63", "target": "48" }, + { "source": "63", "target": "49" }, + { "source": "63", "target": "50" }, + { "source": "63", "target": "51" }, + { "source": "63", "target": "54" }, + { "source": "63", "target": "57" }, + { "source": "63", "target": "58" }, + { "source": "63", "target": "60" }, + { "source": "63", "target": "61" }, + { "source": "63", "target": "62" }, + { "source": "63", "target": "64" }, + { "source": "63", "target": "66" }, + { "source": "63", "target": "69" }, + { "source": "63", "target": "70" }, + { "source": "63", "target": "71" }, + { "source": "63", "target": "73" }, + { "source": "63", "target": "75" }, + { "source": "63", "target": "76" }, + { "source": "63", "target": "77" }, + { "source": "63", "target": "78" }, + { "source": "63", "target": "79" }, + { "source": "63", "target": "80" }, + { "source": "63", "target": "81" }, + { "source": "63", "target": "82" }, + { "source": "63", "target": "84" }, + { "source": "63", "target": "85" }, + { "source": "64", "target": "16" }, + { "source": "64", "target": "44" }, + { "source": "64", "target": "54" }, + { "source": "64", "target": "82" }, + { "source": "64", "target": "133" }, + { "source": "64", "target": "391" }, + { "source": "64", "target": "393" }, + { "source": "64", "target": "394" }, + { "source": "65", "target": "323" }, + { "source": "65", "target": "325" }, + { "source": "65", "target": "346" }, + { "source": "65", "target": "375" }, + { "source": "65", "target": "387" }, + { "source": "66", "target": "23" }, + { "source": "66", "target": "198" }, + { "source": "66", "target": "354" }, + { "source": "67", "target": "198" }, + { "source": "68", "target": "41" }, + { "source": "69", "target": "44" }, + { "source": "69", "target": "45" }, + { "source": "69", "target": "49" }, + { "source": "69", "target": "50" }, + { "source": "69", "target": "54" }, + { "source": "69", "target": "66" }, + { "source": "69", "target": "71" }, + { "source": "69", "target": "73" }, + { "source": "69", "target": "80" }, + { "source": "69", "target": "82" }, + { "source": "69", "target": "84" }, + { "source": "69", "target": "91" }, + { "source": "69", "target": "104" }, + { "source": "69", "target": "181" }, + { "source": "69", "target": "326" }, + { "source": "69", "target": "366" }, + { "source": "69", "target": "382" }, + { "source": "71", "target": "66" }, + { "source": "71", "target": "70" }, + { "source": "71", "target": "72" }, + { "source": "71", "target": "82" }, + { "source": "71", "target": "86" }, + { "source": "71", "target": "163" }, + { "source": "71", "target": "169" }, + { "source": "71", "target": "198" }, + { "source": "71", "target": "343" }, + { "source": "71", "target": "345" }, + { "source": "71", "target": "354" }, + { "source": "71", "target": "356" }, + { "source": "71", "target": "367" }, + { "source": "71", "target": "371" }, + { "source": "71", "target": "380" }, + { "source": "72", "target": "65" }, + { "source": "72", "target": "323" }, + { "source": "72", "target": "325" }, + { "source": "72", "target": "375" }, + { "source": "72", "target": "411" }, + { "source": "73", "target": "32" }, + { "source": "73", "target": "44" }, + { "source": "73", "target": "45" }, + { "source": "73", "target": "48" }, + { "source": "73", "target": "50" }, + { "source": "73", "target": "54" }, + { "source": "73", "target": "56" }, + { "source": "73", "target": "61" }, + { "source": "73", "target": "64" }, + { "source": "73", "target": "66" }, + { "source": "73", "target": "67" }, + { "source": "73", "target": "71" }, + { "source": "73", "target": "74" }, + { "source": "73", "target": "77" }, + { "source": "73", "target": "79" }, + { "source": "73", "target": "80" }, + { "source": "73", "target": "82" }, + { "source": "73", "target": "84" }, + { "source": "73", "target": "91" }, + { "source": "73", "target": "104" }, + { "source": "73", "target": "125" }, + { "source": "73", "target": "163" }, + { "source": "73", "target": "165" }, + { "source": "73", "target": "191" }, + { "source": "73", "target": "220" }, + { "source": "73", "target": "227" }, + { "source": "73", "target": "238" }, + { "source": "73", "target": "241" }, + { "source": "73", "target": "261" }, + { "source": "73", "target": "262" }, + { "source": "73", "target": "349" }, + { "source": "73", "target": "354" }, + { "source": "73", "target": "380" }, + { "source": "73", "target": "382" }, + { "source": "73", "target": "417" }, + { "source": "73", "target": "423" }, + { "source": "73", "target": "425" }, + { "source": "74", "target": "65" }, + { "source": "74", "target": "323" }, + { "source": "74", "target": "325" }, + { "source": "74", "target": "375" }, + { "source": "75", "target": "44" }, + { "source": "75", "target": "45" }, + { "source": "75", "target": "50" }, + { "source": "75", "target": "54" }, + { "source": "75", "target": "61" }, + { "source": "75", "target": "71" }, + { "source": "75", "target": "73" }, + { "source": "75", "target": "80" }, + { "source": "75", "target": "82" }, + { "source": "75", "target": "86" }, + { "source": "75", "target": "317" }, + { "source": "75", "target": "343" }, + { "source": "75", "target": "354" }, + { "source": "75", "target": "380" }, + { "source": "75", "target": "411" }, + { "source": "76", "target": "44" }, + { "source": "76", "target": "45" }, + { "source": "76", "target": "49" }, + { "source": "76", "target": "50" }, + { "source": "76", "target": "54" }, + { "source": "76", "target": "64" }, + { "source": "76", "target": "66" }, + { "source": "76", "target": "71" }, + { "source": "76", "target": "73" }, + { "source": "76", "target": "80" }, + { "source": "76", "target": "82" }, + { "source": "76", "target": "91" }, + { "source": "76", "target": "104" }, + { "source": "76", "target": "181" }, + { "source": "76", "target": "214" }, + { "source": "76", "target": "326" }, + { "source": "76", "target": "333" }, + { "source": "76", "target": "380" }, + { "source": "77", "target": "32" }, + { "source": "77", "target": "33" }, + { "source": "77", "target": "36" }, + { "source": "77", "target": "132" }, + { "source": "77", "target": "191" }, + { "source": "77", "target": "419" }, + { "source": "77", "target": "424" }, + { "source": "78", "target": "0" }, + { "source": "78", "target": "44" }, + { "source": "78", "target": "45" }, + { "source": "78", "target": "54" }, + { "source": "78", "target": "66" }, + { "source": "78", "target": "71" }, + { "source": "78", "target": "73" }, + { "source": "78", "target": "76" }, + { "source": "78", "target": "80" }, + { "source": "78", "target": "82" }, + { "source": "78", "target": "84" }, + { "source": "78", "target": "207" }, + { "source": "78", "target": "354" }, + { "source": "78", "target": "380" }, + { "source": "79", "target": "44" }, + { "source": "79", "target": "54" }, + { "source": "79", "target": "71" }, + { "source": "79", "target": "82" }, + { "source": "79", "target": "149" }, + { "source": "79", "target": "380" }, + { "source": "80", "target": "23" }, + { "source": "80", "target": "44" }, + { "source": "80", "target": "54" }, + { "source": "80", "target": "61" }, + { "source": "80", "target": "66" }, + { "source": "80", "target": "71" }, + { "source": "80", "target": "77" }, + { "source": "80", "target": "380" }, + { "source": "81", "target": "42" }, + { "source": "81", "target": "44" }, + { "source": "81", "target": "45" }, + { "source": "81", "target": "49" }, + { "source": "81", "target": "50" }, + { "source": "81", "target": "54" }, + { "source": "81", "target": "61" }, + { "source": "81", "target": "62" }, + { "source": "81", "target": "64" }, + { "source": "81", "target": "66" }, + { "source": "81", "target": "71" }, + { "source": "81", "target": "73" }, + { "source": "81", "target": "76" }, + { "source": "81", "target": "78" }, + { "source": "81", "target": "80" }, + { "source": "81", "target": "82" }, + { "source": "81", "target": "84" }, + { "source": "81", "target": "104" }, + { "source": "81", "target": "377" }, + { "source": "81", "target": "380" }, + { "source": "82", "target": "8" }, + { "source": "82", "target": "83" }, + { "source": "82", "target": "194" }, + { "source": "82", "target": "216" }, + { "source": "82", "target": "271" }, + { "source": "82", "target": "307" }, + { "source": "82", "target": "366" }, + { "source": "82", "target": "371" }, + { "source": "82", "target": "380" }, + { "source": "82", "target": "382" }, + { "source": "82", "target": "388" }, + { "source": "82", "target": "411" }, + { "source": "82", "target": "424" }, + { "source": "83", "target": "323" }, + { "source": "83", "target": "325" }, + { "source": "83", "target": "375" }, + { "source": "84", "target": "42" }, + { "source": "84", "target": "44" }, + { "source": "84", "target": "54" }, + { "source": "84", "target": "62" }, + { "source": "84", "target": "66" }, + { "source": "84", "target": "71" }, + { "source": "84", "target": "82" }, + { "source": "84", "target": "332" }, + { "source": "84", "target": "367" }, + { "source": "85", "target": "6" }, + { "source": "85", "target": "23" }, + { "source": "85", "target": "42" }, + { "source": "85", "target": "44" }, + { "source": "85", "target": "50" }, + { "source": "85", "target": "54" }, + { "source": "85", "target": "61" }, + { "source": "85", "target": "62" }, + { "source": "85", "target": "66" }, + { "source": "85", "target": "77" }, + { "source": "85", "target": "82" }, + { "source": "85", "target": "84" }, + { "source": "85", "target": "149" }, + { "source": "85", "target": "332" }, + { "source": "85", "target": "417" }, + { "source": "85", "target": "423" }, + { "source": "85", "target": "467" }, + { "source": "86", "target": "354" }, + { "source": "87", "target": "90" }, + { "source": "87", "target": "111" }, + { "source": "87", "target": "112" }, + { "source": "87", "target": "119" }, + { "source": "87", "target": "242" }, + { "source": "87", "target": "243" }, + { "source": "87", "target": "301" }, + { "source": "87", "target": "323" }, + { "source": "87", "target": "325" }, + { "source": "87", "target": "336" }, + { "source": "87", "target": "346" }, + { "source": "87", "target": "360" }, + { "source": "88", "target": "89" }, + { "source": "91", "target": "354" }, + { "source": "92", "target": "27" }, + { "source": "92", "target": "28" }, + { "source": "92", "target": "109" }, + { "source": "92", "target": "113" }, + { "source": "92", "target": "137" }, + { "source": "94", "target": "192" }, + { "source": "95", "target": "281" }, + { "source": "96", "target": "282" }, + { "source": "97", "target": "95" }, + { "source": "97", "target": "285" }, + { "source": "98", "target": "96" }, + { "source": "98", "target": "284" }, + { "source": "99", "target": "32" }, + { "source": "99", "target": "35" }, + { "source": "99", "target": "36" }, + { "source": "99", "target": "179" }, + { "source": "99", "target": "190" }, + { "source": "99", "target": "191" }, + { "source": "99", "target": "313" }, + { "source": "99", "target": "388" }, + { "source": "100", "target": "258" }, + { "source": "100", "target": "354" }, + { "source": "101", "target": "91" }, + { "source": "101", "target": "354" }, + { "source": "101", "target": "378" }, + { "source": "101", "target": "387" }, + { "source": "102", "target": "120" }, + { "source": "102", "target": "477" }, + { "source": "104", "target": "105" }, + { "source": "105", "target": "323" }, + { "source": "105", "target": "325" }, + { "source": "105", "target": "375" }, + { "source": "108", "target": "91" }, + { "source": "108", "target": "253" }, + { "source": "108", "target": "316" }, + { "source": "108", "target": "348" }, + { "source": "108", "target": "363" }, + { "source": "108", "target": "380" }, + { "source": "109", "target": "245" }, + { "source": "111", "target": "270" }, + { "source": "115", "target": "15" }, + { "source": "115", "target": "223" }, + { "source": "115", "target": "275" }, + { "source": "115", "target": "445" }, + { "source": "116", "target": "115" }, + { "source": "116", "target": "117" }, + { "source": "116", "target": "308" }, + { "source": "117", "target": "298" }, + { "source": "117", "target": "308" }, + { "source": "117", "target": "309" }, + { "source": "118", "target": "91" }, + { "source": "118", "target": "477" }, + { "source": "119", "target": "199" }, + { "source": "119", "target": "245" }, + { "source": "119", "target": "246" }, + { "source": "120", "target": "121" }, + { "source": "120", "target": "122" }, + { "source": "121", "target": "18" }, + { "source": "121", "target": "19" }, + { "source": "121", "target": "123" }, + { "source": "121", "target": "372" }, + { "source": "122", "target": "219" }, + { "source": "122", "target": "323" }, + { "source": "122", "target": "325" }, + { "source": "122", "target": "375" }, + { "source": "125", "target": "379" }, + { "source": "125", "target": "408" }, + { "source": "128", "target": "129" }, + { "source": "129", "target": "130" }, + { "source": "129", "target": "323" }, + { "source": "129", "target": "374" }, + { "source": "130", "target": "323" }, + { "source": "130", "target": "325" }, + { "source": "130", "target": "374" }, + { "source": "131", "target": "107" }, + { "source": "131", "target": "258" }, + { "source": "132", "target": "152" }, + { "source": "133", "target": "113" }, + { "source": "133", "target": "417" }, + { "source": "138", "target": "136" }, + { "source": "139", "target": "140" }, + { "source": "139", "target": "245" }, + { "source": "141", "target": "90" }, + { "source": "141", "target": "139" }, + { "source": "141", "target": "142" }, + { "source": "141", "target": "185" }, + { "source": "141", "target": "245" }, + { "source": "142", "target": "90" }, + { "source": "142", "target": "139" }, + { "source": "142", "target": "184" }, + { "source": "142", "target": "245" }, + { "source": "143", "target": "90" }, + { "source": "143", "target": "140" }, + { "source": "143", "target": "144" }, + { "source": "144", "target": "87" }, + { "source": "145", "target": "11" }, + { "source": "145", "target": "140" }, + { "source": "145", "target": "143" }, + { "source": "145", "target": "156" }, + { "source": "145", "target": "234" }, + { "source": "145", "target": "238" }, + { "source": "145", "target": "245" }, + { "source": "145", "target": "254" }, + { "source": "145", "target": "263" }, + { "source": "145", "target": "265" }, + { "source": "145", "target": "288" }, + { "source": "145", "target": "291" }, + { "source": "145", "target": "296" }, + { "source": "145", "target": "417" }, + { "source": "145", "target": "419" }, + { "source": "145", "target": "423" }, + { "source": "145", "target": "434" }, + { "source": "146", "target": "245" }, + { "source": "147", "target": "112" }, + { "source": "149", "target": "152" }, + { "source": "150", "target": "151" }, + { "source": "150", "target": "152" }, + { "source": "151", "target": "152" }, + { "source": "153", "target": "192" }, + { "source": "153", "target": "397" }, + { "source": "155", "target": "91" }, + { "source": "155", "target": "248" }, + { "source": "155", "target": "430" }, + { "source": "158", "target": "323" }, + { "source": "158", "target": "325" }, + { "source": "158", "target": "374" }, + { "source": "160", "target": "94" }, + { "source": "160", "target": "153" }, + { "source": "162", "target": "248" }, + { "source": "165", "target": "135" }, + { "source": "165", "target": "166" }, + { "source": "165", "target": "198" }, + { "source": "165", "target": "380" }, + { "source": "166", "target": "167" }, + { "source": "167", "target": "323" }, + { "source": "167", "target": "325" }, + { "source": "167", "target": "375" }, + { "source": "169", "target": "354" }, + { "source": "170", "target": "245" }, + { "source": "170", "target": "442" }, + { "source": "171", "target": "41" }, + { "source": "172", "target": "275" }, + { "source": "174", "target": "132" }, + { "source": "174", "target": "295" }, + { "source": "174", "target": "312" }, + { "source": "175", "target": "132" }, + { "source": "175", "target": "295" }, + { "source": "175", "target": "312" }, + { "source": "176", "target": "174" }, + { "source": "176", "target": "312" }, + { "source": "177", "target": "175" }, + { "source": "177", "target": "312" }, + { "source": "178", "target": "120" }, + { "source": "178", "target": "300" }, + { "source": "178", "target": "345" }, + { "source": "178", "target": "387" }, + { "source": "178", "target": "477" }, + { "source": "180", "target": "361" }, + { "source": "182", "target": "147" }, + { "source": "182", "target": "260" }, + { "source": "184", "target": "187" }, + { "source": "185", "target": "186" }, + { "source": "185", "target": "188" }, + { "source": "186", "target": "323" }, + { "source": "186", "target": "325" }, + { "source": "186", "target": "375" }, + { "source": "191", "target": "179" }, + { "source": "191", "target": "189" }, + { "source": "191", "target": "190" }, + { "source": "191", "target": "295" }, + { "source": "191", "target": "312" }, + { "source": "192", "target": "397" }, + { "source": "192", "target": "414" }, + { "source": "193", "target": "245" }, + { "source": "193", "target": "444" }, + { "source": "194", "target": "113" }, + { "source": "194", "target": "238" }, + { "source": "194", "target": "245" }, + { "source": "194", "target": "416" }, + { "source": "194", "target": "417" }, + { "source": "195", "target": "183" }, + { "source": "195", "target": "196" }, + { "source": "195", "target": "253" }, + { "source": "195", "target": "411" }, + { "source": "195", "target": "413" }, + { "source": "196", "target": "139" }, + { "source": "196", "target": "230" }, + { "source": "196", "target": "232" }, + { "source": "196", "target": "238" }, + { "source": "196", "target": "245" }, + { "source": "196", "target": "250" }, + { "source": "196", "target": "253" }, + { "source": "196", "target": "269" }, + { "source": "196", "target": "411" }, + { "source": "196", "target": "413" }, + { "source": "196", "target": "417" }, + { "source": "196", "target": "423" }, + { "source": "196", "target": "436" }, + { "source": "197", "target": "240" }, + { "source": "197", "target": "253" }, + { "source": "197", "target": "476" }, + { "source": "198", "target": "23" }, + { "source": "198", "target": "104" }, + { "source": "198", "target": "354" }, + { "source": "200", "target": "9" }, + { "source": "200", "target": "100" }, + { "source": "200", "target": "253" }, + { "source": "200", "target": "338" }, + { "source": "200", "target": "340" }, + { "source": "201", "target": "90" }, + { "source": "201", "target": "226" }, + { "source": "201", "target": "415" }, + { "source": "202", "target": "238" }, + { "source": "202", "target": "364" }, + { "source": "202", "target": "417" }, + { "source": "202", "target": "423" }, + { "source": "203", "target": "106" }, + { "source": "203", "target": "205" }, + { "source": "203", "target": "242" }, + { "source": "203", "target": "356" }, + { "source": "204", "target": "229" }, + { "source": "204", "target": "323" }, + { "source": "204", "target": "325" }, + { "source": "204", "target": "375" }, + { "source": "205", "target": "204" }, + { "source": "205", "target": "354" }, + { "source": "205", "target": "355" }, + { "source": "205", "target": "356" }, + { "source": "206", "target": "197" }, + { "source": "207", "target": "0" }, + { "source": "207", "target": "23" }, + { "source": "207", "target": "473" }, + { "source": "208", "target": "91" }, + { "source": "208", "target": "209" }, + { "source": "209", "target": "91" }, + { "source": "210", "target": "253" }, + { "source": "210", "target": "320" }, + { "source": "210", "target": "380" }, + { "source": "210", "target": "430" }, + { "source": "210", "target": "436" }, + { "source": "211", "target": "91" }, + { "source": "211", "target": "212" }, + { "source": "211", "target": "216" }, + { "source": "212", "target": "91" }, + { "source": "214", "target": "172" }, + { "source": "214", "target": "373" }, + { "source": "215", "target": "106" }, + { "source": "216", "target": "8" }, + { "source": "216", "target": "10" }, + { "source": "216", "target": "354" }, + { "source": "217", "target": "91" }, + { "source": "217", "target": "128" }, + { "source": "217", "target": "245" }, + { "source": "217", "target": "248" }, + { "source": "217", "target": "380" }, + { "source": "217", "target": "429" }, + { "source": "217", "target": "430" }, + { "source": "218", "target": "37" }, + { "source": "218", "target": "215" }, + { "source": "218", "target": "347" }, + { "source": "218", "target": "354" }, + { "source": "218", "target": "368" }, + { "source": "218", "target": "370" }, + { "source": "220", "target": "138" }, + { "source": "220", "target": "198" }, + { "source": "223", "target": "17" }, + { "source": "223", "target": "140" }, + { "source": "223", "target": "224" }, + { "source": "223", "target": "238" }, + { "source": "223", "target": "417" }, + { "source": "223", "target": "437" }, + { "source": "224", "target": "109" }, + { "source": "225", "target": "98" }, + { "source": "225", "target": "161" }, + { "source": "225", "target": "284" }, + { "source": "226", "target": "150" }, + { "source": "226", "target": "200" }, + { "source": "226", "target": "253" }, + { "source": "226", "target": "258" }, + { "source": "226", "target": "338" }, + { "source": "226", "target": "351" }, + { "source": "226", "target": "415" }, + { "source": "226", "target": "432" }, + { "source": "227", "target": "104" }, + { "source": "227", "target": "106" }, + { "source": "227", "target": "126" }, + { "source": "227", "target": "275" }, + { "source": "227", "target": "315" }, + { "source": "228", "target": "168" }, + { "source": "228", "target": "216" }, + { "source": "230", "target": "90" }, + { "source": "230", "target": "231" }, + { "source": "230", "target": "245" }, + { "source": "231", "target": "245" }, + { "source": "232", "target": "140" }, + { "source": "232", "target": "254" }, + { "source": "234", "target": "110" }, + { "source": "234", "target": "131" }, + { "source": "234", "target": "237" }, + { "source": "234", "target": "253" }, + { "source": "234", "target": "380" }, + { "source": "234", "target": "415" }, + { "source": "235", "target": "110" }, + { "source": "235", "target": "131" }, + { "source": "235", "target": "237" }, + { "source": "235", "target": "253" }, + { "source": "235", "target": "380" }, + { "source": "235", "target": "415" }, + { "source": "236", "target": "110" }, + { "source": "236", "target": "113" }, + { "source": "236", "target": "131" }, + { "source": "236", "target": "237" }, + { "source": "236", "target": "253" }, + { "source": "236", "target": "380" }, + { "source": "236", "target": "415" }, + { "source": "236", "target": "440" }, + { "source": "238", "target": "417" }, + { "source": "239", "target": "245" }, + { "source": "239", "target": "248" }, + { "source": "239", "target": "314" }, + { "source": "241", "target": "90" }, + { "source": "244", "target": "106" }, + { "source": "244", "target": "290" }, + { "source": "244", "target": "383" }, + { "source": "246", "target": "109" }, + { "source": "246", "target": "430" }, + { "source": "247", "target": "113" }, + { "source": "247", "target": "430" }, + { "source": "248", "target": "113" }, + { "source": "248", "target": "441" }, + { "source": "249", "target": "91" }, + { "source": "249", "target": "245" }, + { "source": "249", "target": "335" }, + { "source": "250", "target": "245" }, + { "source": "250", "target": "314" }, + { "source": "252", "target": "352" }, + { "source": "254", "target": "245" }, + { "source": "255", "target": "245" }, + { "source": "256", "target": "337" }, + { "source": "259", "target": "91" }, + { "source": "259", "target": "93" }, + { "source": "259", "target": "142" }, + { "source": "259", "target": "185" }, + { "source": "259", "target": "253" }, + { "source": "259", "target": "280" }, + { "source": "259", "target": "299" }, + { "source": "260", "target": "7" }, + { "source": "260", "target": "361" }, + { "source": "261", "target": "88" }, + { "source": "261", "target": "91" }, + { "source": "261", "target": "125" }, + { "source": "261", "target": "221" }, + { "source": "261", "target": "228" }, + { "source": "261", "target": "253" }, + { "source": "261", "target": "275" }, + { "source": "261", "target": "318" }, + { "source": "261", "target": "346" }, + { "source": "261", "target": "369" }, + { "source": "261", "target": "379" }, + { "source": "261", "target": "380" }, + { "source": "261", "target": "409" }, + { "source": "262", "target": "88" }, + { "source": "262", "target": "125" }, + { "source": "262", "target": "157" }, + { "source": "262", "target": "228" }, + { "source": "262", "target": "261" }, + { "source": "262", "target": "291" }, + { "source": "262", "target": "336" }, + { "source": "262", "target": "340" }, + { "source": "262", "target": "346" }, + { "source": "262", "target": "380" }, + { "source": "262", "target": "388" }, + { "source": "262", "target": "406" }, + { "source": "263", "target": "90" }, + { "source": "263", "target": "237" }, + { "source": "263", "target": "266" }, + { "source": "263", "target": "276" }, + { "source": "263", "target": "331" }, + { "source": "263", "target": "380" }, + { "source": "264", "target": "91" }, + { "source": "264", "target": "237" }, + { "source": "264", "target": "253" }, + { "source": "264", "target": "267" }, + { "source": "264", "target": "277" }, + { "source": "264", "target": "332" }, + { "source": "264", "target": "380" }, + { "source": "266", "target": "237" }, + { "source": "267", "target": "237" }, + { "source": "268", "target": "90" }, + { "source": "268", "target": "113" }, + { "source": "268", "target": "245" }, + { "source": "269", "target": "91" }, + { "source": "269", "target": "113" }, + { "source": "269", "target": "245" }, + { "source": "270", "target": "258" }, + { "source": "270", "target": "414" }, + { "source": "272", "target": "430" }, + { "source": "273", "target": "293" }, + { "source": "273", "target": "430" }, + { "source": "274", "target": "323" }, + { "source": "274", "target": "325" }, + { "source": "274", "target": "374" }, + { "source": "275", "target": "39" }, + { "source": "276", "target": "278" }, + { "source": "277", "target": "279" }, + { "source": "278", "target": "321" }, + { "source": "278", "target": "323" }, + { "source": "278", "target": "325" }, + { "source": "278", "target": "374" }, + { "source": "279", "target": "322" }, + { "source": "279", "target": "323" }, + { "source": "279", "target": "325" }, + { "source": "279", "target": "375" }, + { "source": "280", "target": "255" }, + { "source": "280", "target": "287" }, + { "source": "283", "target": "97" }, + { "source": "283", "target": "281" }, + { "source": "283", "target": "285" }, + { "source": "284", "target": "282" }, + { "source": "284", "target": "286" }, + { "source": "285", "target": "281" }, + { "source": "287", "target": "109" }, + { "source": "288", "target": "235" }, + { "source": "288", "target": "263" }, + { "source": "288", "target": "265" }, + { "source": "288", "target": "274" }, + { "source": "288", "target": "275" }, + { "source": "288", "target": "289" }, + { "source": "289", "target": "109" }, + { "source": "290", "target": "106" }, + { "source": "292", "target": "249" }, + { "source": "294", "target": "395" }, + { "source": "296", "target": "252" }, + { "source": "296", "target": "297" }, + { "source": "297", "target": "113" }, + { "source": "297", "target": "245" }, + { "source": "297", "target": "335" }, + { "source": "297", "target": "366" }, + { "source": "297", "target": "444" }, + { "source": "298", "target": "336" }, + { "source": "300", "target": "149" }, + { "source": "300", "target": "245" }, + { "source": "300", "target": "430" }, + { "source": "303", "target": "258" }, + { "source": "303", "target": "380" }, + { "source": "303", "target": "398" }, + { "source": "304", "target": "303" }, + { "source": "304", "target": "305" }, + { "source": "305", "target": "303" }, + { "source": "305", "target": "306" }, + { "source": "305", "target": "323" }, + { "source": "305", "target": "325" }, + { "source": "305", "target": "375" }, + { "source": "306", "target": "291" }, + { "source": "306", "target": "303" }, + { "source": "306", "target": "358" }, + { "source": "307", "target": "181" }, + { "source": "307", "target": "228" }, + { "source": "308", "target": "311" }, + { "source": "309", "target": "310" }, + { "source": "309", "target": "311" }, + { "source": "310", "target": "311" }, + { "source": "310", "target": "327" }, + { "source": "311", "target": "362" }, + { "source": "311", "target": "399" }, + { "source": "313", "target": "38" }, + { "source": "313", "target": "179" }, + { "source": "313", "target": "190" }, + { "source": "315", "target": "90" }, + { "source": "315", "target": "147" }, + { "source": "315", "target": "180" }, + { "source": "315", "target": "182" }, + { "source": "315", "target": "260" }, + { "source": "316", "target": "113" }, + { "source": "316", "target": "132" }, + { "source": "316", "target": "312" }, + { "source": "316", "target": "348" }, + { "source": "316", "target": "388" }, + { "source": "316", "target": "442" }, + { "source": "317", "target": "124" }, + { "source": "317", "target": "164" }, + { "source": "317", "target": "218" }, + { "source": "317", "target": "354" }, + { "source": "318", "target": "409" }, + { "source": "321", "target": "291" }, + { "source": "321", "target": "385" }, + { "source": "322", "target": "386" }, + { "source": "323", "target": "406" }, + { "source": "325", "target": "323" }, + { "source": "327", "target": "245" }, + { "source": "327", "target": "328" }, + { "source": "327", "target": "329" }, + { "source": "328", "target": "319" }, + { "source": "328", "target": "329" }, + { "source": "329", "target": "194" }, + { "source": "334", "target": "90" }, + { "source": "335", "target": "90" }, + { "source": "336", "target": "9" }, + { "source": "336", "target": "258" }, + { "source": "336", "target": "338" }, + { "source": "336", "target": "340" }, + { "source": "337", "target": "339" }, + { "source": "338", "target": "9" }, + { "source": "338", "target": "258" }, + { "source": "338", "target": "340" }, + { "source": "342", "target": "106" }, + { "source": "342", "target": "275" }, + { "source": "342", "target": "299" }, + { "source": "343", "target": "106" }, + { "source": "343", "target": "342" }, + { "source": "343", "target": "354" }, + { "source": "344", "target": "145" }, + { "source": "344", "target": "244" }, + { "source": "345", "target": "40" }, + { "source": "345", "target": "91" }, + { "source": "345", "target": "354" }, + { "source": "345", "target": "355" }, + { "source": "347", "target": "353" }, + { "source": "348", "target": "91" }, + { "source": "348", "target": "170" }, + { "source": "348", "target": "245" }, + { "source": "348", "target": "251" }, + { "source": "348", "target": "442" }, + { "source": "349", "target": "106" }, + { "source": "349", "target": "158" }, + { "source": "349", "target": "396" }, + { "source": "351", "target": "432" }, + { "source": "354", "target": "355" }, + { "source": "355", "target": "323" }, + { "source": "355", "target": "325" }, + { "source": "355", "target": "375" }, + { "source": "356", "target": "233" }, + { "source": "356", "target": "350" }, + { "source": "356", "target": "354" }, + { "source": "358", "target": "113" }, + { "source": "358", "target": "146" }, + { "source": "358", "target": "160" }, + { "source": "359", "target": "242" }, + { "source": "363", "target": "39" }, + { "source": "364", "target": "414" }, + { "source": "365", "target": "159" }, + { "source": "365", "target": "417" }, + { "source": "366", "target": "354" }, + { "source": "367", "target": "354" }, + { "source": "368", "target": "252" }, + { "source": "369", "target": "91" }, + { "source": "374", "target": "323" }, + { "source": "374", "target": "325" }, + { "source": "374", "target": "406" }, + { "source": "375", "target": "323" }, + { "source": "375", "target": "325" }, + { "source": "375", "target": "406" }, + { "source": "376", "target": "113" }, + { "source": "376", "target": "140" }, + { "source": "376", "target": "245" }, + { "source": "376", "target": "272" }, + { "source": "376", "target": "291" }, + { "source": "376", "target": "436" }, + { "source": "377", "target": "28" }, + { "source": "377", "target": "213" }, + { "source": "377", "target": "275" }, + { "source": "377", "target": "364" }, + { "source": "378", "target": "115" }, + { "source": "378", "target": "116" }, + { "source": "378", "target": "201" }, + { "source": "378", "target": "222" }, + { "source": "378", "target": "242" }, + { "source": "378", "target": "302" }, + { "source": "378", "target": "303" }, + { "source": "378", "target": "304" }, + { "source": "378", "target": "327" }, + { "source": "378", "target": "336" }, + { "source": "378", "target": "354" }, + { "source": "378", "target": "356" }, + { "source": "378", "target": "365" }, + { "source": "378", "target": "403" }, + { "source": "379", "target": "432" }, + { "source": "380", "target": "381" }, + { "source": "381", "target": "323" }, + { "source": "381", "target": "325" }, + { "source": "381", "target": "375" }, + { "source": "382", "target": "113" }, + { "source": "382", "target": "291" }, + { "source": "385", "target": "228" }, + { "source": "385", "target": "384" }, + { "source": "385", "target": "468" }, + { "source": "386", "target": "228" }, + { "source": "386", "target": "384" }, + { "source": "386", "target": "468" }, + { "source": "387", "target": "228" }, + { "source": "387", "target": "384" }, + { "source": "387", "target": "469" }, + { "source": "388", "target": "312" }, + { "source": "388", "target": "389" }, + { "source": "388", "target": "390" }, + { "source": "389", "target": "323" }, + { "source": "389", "target": "325" }, + { "source": "389", "target": "375" }, + { "source": "390", "target": "291" }, + { "source": "390", "target": "412" }, + { "source": "391", "target": "253" }, + { "source": "391", "target": "291" }, + { "source": "391", "target": "390" }, + { "source": "392", "target": "253" }, + { "source": "392", "target": "291" }, + { "source": "392", "target": "390" }, + { "source": "393", "target": "256" }, + { "source": "393", "target": "273" }, + { "source": "393", "target": "291" }, + { "source": "393", "target": "336" }, + { "source": "393", "target": "359" }, + { "source": "393", "target": "366" }, + { "source": "393", "target": "382" }, + { "source": "393", "target": "388" }, + { "source": "393", "target": "390" }, + { "source": "393", "target": "392" }, + { "source": "394", "target": "388" }, + { "source": "394", "target": "393" }, + { "source": "394", "target": "417" }, + { "source": "396", "target": "112" }, + { "source": "396", "target": "371" }, + { "source": "399", "target": "414" }, + { "source": "400", "target": "401" }, + { "source": "403", "target": "404" }, + { "source": "404", "target": "400" }, + { "source": "404", "target": "401" }, + { "source": "404", "target": "405" }, + { "source": "405", "target": "402" }, + { "source": "411", "target": "194" }, + { "source": "411", "target": "354" }, + { "source": "411", "target": "357" }, + { "source": "415", "target": "351" }, + { "source": "415", "target": "432" }, + { "source": "417", "target": "113" }, + { "source": "417", "target": "420" }, + { "source": "418", "target": "103" }, + { "source": "418", "target": "253" }, + { "source": "418", "target": "291" }, + { "source": "418", "target": "323" }, + { "source": "418", "target": "325" }, + { "source": "418", "target": "375" }, + { "source": "418", "target": "422" }, + { "source": "419", "target": "113" }, + { "source": "419", "target": "238" }, + { "source": "419", "target": "417" }, + { "source": "419", "target": "423" }, + { "source": "420", "target": "325" }, + { "source": "420", "target": "421" }, + { "source": "421", "target": "323" }, + { "source": "421", "target": "325" }, + { "source": "421", "target": "375" }, + { "source": "421", "target": "418" }, + { "source": "421", "target": "422" }, + { "source": "423", "target": "238" }, + { "source": "423", "target": "417" }, + { "source": "424", "target": "238" }, + { "source": "424", "target": "417" }, + { "source": "425", "target": "28" }, + { "source": "425", "target": "113" }, + { "source": "425", "target": "114" }, + { "source": "425", "target": "238" }, + { "source": "425", "target": "253" }, + { "source": "425", "target": "261" }, + { "source": "425", "target": "296" }, + { "source": "425", "target": "324" }, + { "source": "425", "target": "332" }, + { "source": "425", "target": "366" }, + { "source": "425", "target": "371" }, + { "source": "425", "target": "417" }, + { "source": "425", "target": "419" }, + { "source": "425", "target": "423" }, + { "source": "425", "target": "426" }, + { "source": "425", "target": "427" }, + { "source": "425", "target": "428" }, + { "source": "426", "target": "28" }, + { "source": "426", "target": "89" }, + { "source": "426", "target": "91" }, + { "source": "426", "target": "114" }, + { "source": "426", "target": "125" }, + { "source": "426", "target": "228" }, + { "source": "426", "target": "253" }, + { "source": "426", "target": "261" }, + { "source": "426", "target": "291" }, + { "source": "426", "target": "296" }, + { "source": "426", "target": "324" }, + { "source": "426", "target": "332" }, + { "source": "426", "target": "346" }, + { "source": "426", "target": "366" }, + { "source": "426", "target": "380" }, + { "source": "426", "target": "423" }, + { "source": "426", "target": "427" }, + { "source": "426", "target": "428" }, + { "source": "427", "target": "17" }, + { "source": "427", "target": "28" }, + { "source": "427", "target": "30" }, + { "source": "427", "target": "88" }, + { "source": "427", "target": "91" }, + { "source": "427", "target": "93" }, + { "source": "427", "target": "114" }, + { "source": "427", "target": "142" }, + { "source": "427", "target": "155" }, + { "source": "427", "target": "202" }, + { "source": "427", "target": "206" }, + { "source": "427", "target": "208" }, + { "source": "427", "target": "210" }, + { "source": "427", "target": "211" }, + { "source": "427", "target": "217" }, + { "source": "427", "target": "238" }, + { "source": "427", "target": "239" }, + { "source": "427", "target": "245" }, + { "source": "427", "target": "248" }, + { "source": "427", "target": "253" }, + { "source": "427", "target": "259" }, + { "source": "427", "target": "261" }, + { "source": "427", "target": "280" }, + { "source": "427", "target": "291" }, + { "source": "427", "target": "296" }, + { "source": "427", "target": "324" }, + { "source": "427", "target": "330" }, + { "source": "427", "target": "332" }, + { "source": "427", "target": "341" }, + { "source": "427", "target": "346" }, + { "source": "427", "target": "366" }, + { "source": "427", "target": "380" }, + { "source": "427", "target": "417" }, + { "source": "427", "target": "423" }, + { "source": "427", "target": "428" }, + { "source": "427", "target": "430" }, + { "source": "428", "target": "91" }, + { "source": "428", "target": "238" }, + { "source": "428", "target": "423" }, + { "source": "430", "target": "431" }, + { "source": "430", "target": "433" }, + { "source": "432", "target": "430" }, + { "source": "434", "target": "443" }, + { "source": "435", "target": "438" }, + { "source": "435", "target": "439" }, + { "source": "435", "target": "444" }, + { "source": "436", "target": "437" }, + { "source": "436", "target": "445" }, + { "source": "437", "target": "445" }, + { "source": "438", "target": "323" }, + { "source": "438", "target": "325" }, + { "source": "438", "target": "374" }, + { "source": "439", "target": "323" }, + { "source": "439", "target": "325" }, + { "source": "439", "target": "374" }, + { "source": "440", "target": "443" }, + { "source": "441", "target": "444" }, + { "source": "442", "target": "445" }, + { "source": "443", "target": "446" }, + { "source": "443", "target": "449" }, + { "source": "443", "target": "452" }, + { "source": "443", "target": "455" }, + { "source": "443", "target": "458" }, + { "source": "443", "target": "461" }, + { "source": "443", "target": "464" }, + { "source": "444", "target": "447" }, + { "source": "444", "target": "450" }, + { "source": "444", "target": "453" }, + { "source": "444", "target": "456" }, + { "source": "444", "target": "459" }, + { "source": "444", "target": "462" }, + { "source": "444", "target": "465" }, + { "source": "445", "target": "448" }, + { "source": "445", "target": "451" }, + { "source": "445", "target": "454" }, + { "source": "445", "target": "457" }, + { "source": "445", "target": "460" }, + { "source": "445", "target": "463" }, + { "source": "445", "target": "466" }, + { "source": "467", "target": "13" }, + { "source": "467", "target": "38" }, + { "source": "467", "target": "91" }, + { "source": "467", "target": "104" }, + { "source": "467", "target": "108" }, + { "source": "467", "target": "114" }, + { "source": "467", "target": "139" }, + { "source": "467", "target": "141" }, + { "source": "467", "target": "154" }, + { "source": "467", "target": "225" }, + { "source": "467", "target": "238" }, + { "source": "467", "target": "245" }, + { "source": "467", "target": "253" }, + { "source": "467", "target": "264" }, + { "source": "467", "target": "267" }, + { "source": "467", "target": "284" }, + { "source": "467", "target": "291" }, + { "source": "467", "target": "292" }, + { "source": "467", "target": "302" }, + { "source": "467", "target": "332" }, + { "source": "467", "target": "334" }, + { "source": "467", "target": "348" }, + { "source": "467", "target": "367" }, + { "source": "467", "target": "407" }, + { "source": "467", "target": "417" }, + { "source": "467", "target": "419" }, + { "source": "467", "target": "423" }, + { "source": "467", "target": "424" }, + { "source": "467", "target": "441" }, + { "source": "467", "target": "470" }, + { "source": "467", "target": "471" }, + { "source": "467", "target": "474" }, + { "source": "468", "target": "258" }, + { "source": "469", "target": "258" }, + { "source": "470", "target": "242" }, + { "source": "470", "target": "245" }, + { "source": "470", "target": "257" }, + { "source": "470", "target": "314" }, + { "source": "471", "target": "29" }, + { "source": "471", "target": "193" }, + { "source": "471", "target": "245" }, + { "source": "471", "target": "248" }, + { "source": "471", "target": "291" }, + { "source": "471", "target": "348" }, + { "source": "471", "target": "472" }, + { "source": "474", "target": "91" }, + { "source": "474", "target": "162" }, + { "source": "474", "target": "253" }, + { "source": "474", "target": "291" }, + { "source": "474", "target": "475" }, + { "source": "477", "target": "478" }, + { "source": "479", "target": "480" }, + { "source": "480", "target": "323" }, + { "source": "480", "target": "325" }, + { "source": "480", "target": "375" } + ] +} diff --git a/docs/static/data/examples/graph/dag-medium.json b/docs/static/data/examples/graph/dag-medium.json new file mode 100644 index 000000000..544d9bc2e --- /dev/null +++ b/docs/static/data/examples/graph/dag-medium.json @@ -0,0 +1,311 @@ +{ + "nodes": [ + { "id": "0", "name": "112ef21b3cba85614a3ca14ec3ffed8a" }, + { "id": "1", "name": "183453b020e941b9478ccf4c18af2b27" }, + { "id": "2", "name": "dc51a7d438ed5e023a4aa7347e6de8dc" }, + { "id": "3", "name": "7e0a00244e129a260c2d00efcb137ab7" }, + { "id": "4", "name": "593c2ce3452ed8df09e0435aefd18bd8" }, + { "id": "5", "name": "4b3a6218bb3e3a7303e8a171a60fcf92" }, + { "id": "6", "name": "54c280558263a67e0a84ba34f625c464" }, + { "id": "7", "name": "21b8735d8a7a218da89a7fb174c792f3" }, + { "id": "8", "name": "0d9e2b2753f492ab4307253ef862c37a" }, + { "id": "9", "name": "dbad862e2720f8a2b3a51efb1ebe3fc1" }, + { "id": "10", "name": "edac976a125467998ee6eccd35ba94f6" }, + { "id": "11", "name": "bb5b2ae1f13372e0f31c9c51c90e1537" }, + { "id": "12", "name": "bb5b2ae1f13372e0f31c9c51c90e1537" }, + { "id": "13", "name": "b400c8f718345d43f396fe655509445f" }, + { "id": "14", "name": "9a59bf06c28bfdd2004fd9ca4f416381" }, + { "id": "15", "name": "39adfacef8f9f6766dbcbf4d77a5e01e" }, + { "id": "16", "name": "d649c565bb540fb2eefb6c0b539d6242" }, + { "id": "17", "name": "8bdba20fbf947deb51bb901d81013b4d" }, + { "id": "18", "name": "8bdba20fbf947deb51bb901d81013b4d" }, + { "id": "19", "name": "ff79dadf97072cc43968b8fc493d918c" }, + { "id": "20", "name": "c3eef34d092ed60c3b2791814511903a" }, + { "id": "21", "name": "c14031940383c0c73116d659fc7fea2e" }, + { "id": "22", "name": "44a3cdb869ff629fe47411912927e71e" }, + { "id": "23", "name": "4d4b370ab9b3dbca1ccdb1a5cca6a728" }, + { "id": "24", "name": "f1b980d0edb32ee093ce6d5f03829765" }, + { "id": "25", "name": "51c3fbe0170e433dd010f9b8634f1c93" }, + { "id": "26", "name": "e41fad42ce43492fd3ec1aca019866d8" }, + { "id": "27", "name": "af15d11229bb0dee2b5d037bc92fb7ff" }, + { "id": "28", "name": "b54dbbc002e9e7cf4507b390989bfe86" }, + { "id": "29", "name": "1852fbae944d82f4da0c9410f0763ca8" }, + { "id": "30", "name": "7f5c935094204f88cbaaad83db991b17" }, + { "id": "31", "name": "8684147451a6cc3b92142c6f4b78e61c" }, + { "id": "32", "name": "7afe399f1415b137d0962f82662fa9d4" }, + { "id": "33", "name": "afc85ee276f33abe7d041853c634fc36" }, + { "id": "34", "name": "3ff47a2d7c0f78a49c8774990d82ccdd" }, + { "id": "35", "name": "4e4eaf9e2289f546ab4e89a58cb3a866" }, + { "id": "36", "name": "d0923e2dcda86958c930938c946649fb" }, + { "id": "37", "name": "c87ba77ad88418483bc707b655300574" }, + { "id": "38", "name": "9cbb47c15bdee9d8f1ac2b6ffc96a39c" }, + { "id": "39", "name": "73015feba463836004e192dd64b4c85e" }, + { "id": "40", "name": "c5b825e5c013d16600775fb568bd934c" }, + { "id": "41", "name": "013764cfe4d1f0c0bb74403295d0f208" }, + { "id": "42", "name": "bf911b21d6cb2222f430658c4c281604" }, + { "id": "43", "name": "e5823ba08cf6f8acc6662017ec572078" }, + { "id": "44", "name": "dc1d71bbb5c4d2a5e936db79ef10c19f" }, + { "id": "45", "name": "8861021ea041394f627e3a1b60c3e92c" }, + { "id": "46", "name": "a3b623e7b25c44ed41eb6b8314a10f41" }, + { "id": "47", "name": "e376836d2234522833fa3c07d077f560" }, + { "id": "48", "name": "8345a34a65aa1a67f3e6f8852297c25b" }, + { "id": "49", "name": "8248c04590fc509824b9b5f7c606a590" }, + { "id": "50", "name": "f1ce1e003b7fcaa301e3e84a2a17caf3" }, + { "id": "51", "name": "d07ee43840f516baf4e9fc94ba41bd77" }, + { "id": "52", "name": "7711be245e38138607b03d2eafb32740" }, + { "id": "53", "name": "e44d5b0493cfce7c63a46b8114098e56" }, + { "id": "54", "name": "ae1eed9aa160f0eb2db25ce57c2388d5" }, + { "id": "55", "name": "ac0d1ac1f21abd32b30bf4e44990b94a" }, + { "id": "56", "name": "4627023a7757fbfdc063f16e22dad049" }, + { "id": "57", "name": "b7529e2456536d65b72ff4eafbe8d6a6" }, + { "id": "58", "name": "72990d5b72e9f7d712372696ea7b0d36" }, + { "id": "59", "name": "d88b0dd70cc3da6c8f5e0e6c64aa3d2a" }, + { "id": "60", "name": "7a674c327bfa07f7c1204fb38ca6ef3b" }, + { "id": "61", "name": "c8bd1df85941b8f0fa7b9ff5d42b5319" }, + { "id": "62", "name": "df0cc91e0f37d78d6137617cb7377ee3" }, + { "id": "63", "name": "44c5b763d21e9a3ed8cad56977bfd75c" }, + { "id": "64", "name": "9cd81e68982526e6d5f8e853d2d88149" }, + { "id": "65", "name": "223beda8a3f91ec1c7fb94f17bd1a918" }, + { "id": "66", "name": "1078def2526ca3ac25242174cb5df6c9" }, + { "id": "67", "name": "d4cfab1b518d245bc1fc8db52b6d8ddc" }, + { "id": "68", "name": "a1890b4c4f2b5e1944c40a9b0f84a1c9" }, + { "id": "69", "name": "61e4a0242b73a47ca5be012eec164602" }, + { "id": "70", "name": "5fb4f826eb039e06dcd48602b6f47744" }, + { "id": "71", "name": "d780e58e7e113a4d9b3b8f7cb93e0d90" }, + { "id": "72", "name": "197a397c6699d48b4e3d0684e3d60409" }, + { "id": "73", "name": "ad96132928e568d000afd7430976a47a" }, + { "id": "74", "name": "10faae554c642e7607b1dd0cc8607703" }, + { "id": "75", "name": "68b958c892719d213e8d9118f14430ac" }, + { "id": "76", "name": "dc0d4d2d9881175e8caf18416000e2ab" }, + { "id": "77", "name": "93237e284f0a749ffba472e449bfc25e" }, + { "id": "78", "name": "efdd6be310211dc9f99352a528639a69" }, + { "id": "79", "name": "d726760b0467b77803d6d1f3585deb6e" }, + { "id": "80", "name": "a8cbe673c91e4d81ec83c0cab9067500" }, + { "id": "81", "name": "a8f29833a3d589de6093d0e72f7718d6" }, + { "id": "82", "name": "945715dcef391d4a708567515456476b" }, + { "id": "83", "name": "ec18ad9a83c312380533fa93ac6fc61c" }, + { "id": "84", "name": "ef82bc84de1446be5cfb022f09a35779" }, + { "id": "85", "name": "11233c483a51e4e0a14c9e7f13c591eb" }, + { "id": "86", "name": "8b9c754a47f15ad23b43d47052a0a530" }, + { "id": "87", "name": "d1d88fa25cf5d33c474f514746583b8a" }, + { "id": "88", "name": "d1792b3856fcd0a9c4d37aed5060977d" }, + { "id": "89", "name": "e5df42e20907d1dd015404c25257655f" }, + { "id": "90", "name": "a4c973de7cd1cad6a7fd96309f7251f8" }, + { "id": "91", "name": "109e84982280068d94d40ad3c8e5954a" }, + { "id": "92", "name": "fee9e500058a8269de4e0f3bedf94046" }, + { "id": "93", "name": "1f4eaf4419512c0e8b4c337a0f22e5dd" }, + { "id": "94", "name": "9cc91d204f5795048050d39859a7cab6" }, + { "id": "95", "name": "d1dbf933a5b6913a22927ac2fb763b3c" }, + { "id": "96", "name": "c04b6fa7a56d0da7c952442232b4f0c4" }, + { "id": "97", "name": "1d6efdf2bbe004c7dc5483ad0a44ca30" }, + { "id": "98", "name": "deb563564005ef6b03805fcc97a04cbe" }, + { "id": "99", "name": "558c8720b5b05214362ab84f0a215d27" }, + { "id": "100", "name": "b6acf90bdb44c2d3b804683b6525ec8d" }, + { "id": "101", "name": "d88c3e9efafa6c134c03fce74fcd6873" }, + { "id": "102", "name": "866c37703f08cc4913e30314a8075467" }, + { "id": "103", "name": "2ae607ba615284096f49177a739fdf9a" }, + { "id": "104", "name": "b324540f4b8f0ba32c08d08f7d4bf4e0" }, + { "id": "105", "name": "ae70b95a170877b7638329348cc14b9a" }, + { "id": "106", "name": "c05d2d71da2e1af6820a8ff040cb5719" } + ], + "links": [ + { "source": "1", "target": "35" }, + { "source": "1", "target": "43" }, + { "source": "1", "target": "102" }, + { "source": "8", "target": "9" }, + { "source": "8", "target": "10" }, + { "source": "8", "target": "70" }, + { "source": "10", "target": "9" }, + { "source": "10", "target": "32" }, + { "source": "11", "target": "3" }, + { "source": "11", "target": "17" }, + { "source": "11", "target": "38" }, + { "source": "11", "target": "81" }, + { "source": "12", "target": "1" }, + { "source": "12", "target": "3" }, + { "source": "12", "target": "16" }, + { "source": "12", "target": "18" }, + { "source": "12", "target": "36" }, + { "source": "12", "target": "50" }, + { "source": "12", "target": "66" }, + { "source": "12", "target": "73" }, + { "source": "12", "target": "75" }, + { "source": "12", "target": "77" }, + { "source": "12", "target": "78" }, + { "source": "12", "target": "80" }, + { "source": "12", "target": "85" }, + { "source": "12", "target": "86" }, + { "source": "12", "target": "90" }, + { "source": "13", "target": "12" }, + { "source": "13", "target": "23" }, + { "source": "13", "target": "42" }, + { "source": "14", "target": "12" }, + { "source": "14", "target": "75" }, + { "source": "14", "target": "86" }, + { "source": "15", "target": "12" }, + { "source": "15", "target": "14" }, + { "source": "15", "target": "75" }, + { "source": "16", "target": "34" }, + { "source": "16", "target": "57" }, + { "source": "16", "target": "59" }, + { "source": "16", "target": "60" }, + { "source": "16", "target": "79" }, + { "source": "17", "target": "53" }, + { "source": "18", "target": "53" }, + { "source": "19", "target": "12" }, + { "source": "19", "target": "65" }, + { "source": "19", "target": "75" }, + { "source": "20", "target": "5" }, + { "source": "20", "target": "45" }, + { "source": "21", "target": "1" }, + { "source": "21", "target": "3" }, + { "source": "21", "target": "22" }, + { "source": "23", "target": "0" }, + { "source": "23", "target": "1" }, + { "source": "23", "target": "6" }, + { "source": "23", "target": "8" }, + { "source": "23", "target": "11" }, + { "source": "23", "target": "24" }, + { "source": "23", "target": "39" }, + { "source": "23", "target": "42" }, + { "source": "23", "target": "48" }, + { "source": "23", "target": "51" }, + { "source": "23", "target": "54" }, + { "source": "23", "target": "61" }, + { "source": "23", "target": "63" }, + { "source": "23", "target": "70" }, + { "source": "23", "target": "71" }, + { "source": "23", "target": "72" }, + { "source": "23", "target": "82" }, + { "source": "23", "target": "95" }, + { "source": "24", "target": "6" }, + { "source": "24", "target": "39" }, + { "source": "25", "target": "7" }, + { "source": "25", "target": "28" }, + { "source": "26", "target": "7" }, + { "source": "26", "target": "27" }, + { "source": "26", "target": "28" }, + { "source": "27", "target": "2" }, + { "source": "27", "target": "7" }, + { "source": "27", "target": "28" }, + { "source": "27", "target": "46" }, + { "source": "27", "target": "50" }, + { "source": "27", "target": "69" }, + { "source": "28", "target": "7" }, + { "source": "30", "target": "44" }, + { "source": "30", "target": "50" }, + { "source": "30", "target": "70" }, + { "source": "30", "target": "72" }, + { "source": "35", "target": "43" }, + { "source": "37", "target": "36" }, + { "source": "37", "target": "70" }, + { "source": "38", "target": "2" }, + { "source": "38", "target": "33" }, + { "source": "39", "target": "29" }, + { "source": "41", "target": "96" }, + { "source": "44", "target": "7" }, + { "source": "46", "target": "2" }, + { "source": "48", "target": "2" }, + { "source": "49", "target": "35" }, + { "source": "49", "target": "43" }, + { "source": "52", "target": "43" }, + { "source": "52", "target": "102" }, + { "source": "54", "target": "48" }, + { "source": "54", "target": "55" }, + { "source": "54", "target": "56" }, + { "source": "54", "target": "96" }, + { "source": "54", "target": "101" }, + { "source": "56", "target": "55" }, + { "source": "57", "target": "58" }, + { "source": "57", "target": "59" }, + { "source": "57", "target": "60" }, + { "source": "57", "target": "79" }, + { "source": "57", "target": "93" }, + { "source": "58", "target": "59" }, + { "source": "58", "target": "60" }, + { "source": "58", "target": "93" }, + { "source": "59", "target": "92" }, + { "source": "60", "target": "59" }, + { "source": "61", "target": "2" }, + { "source": "61", "target": "26" }, + { "source": "61", "target": "29" }, + { "source": "61", "target": "62" }, + { "source": "62", "target": "25" }, + { "source": "62", "target": "26" }, + { "source": "62", "target": "28" }, + { "source": "62", "target": "49" }, + { "source": "63", "target": "64" }, + { "source": "68", "target": "104" }, + { "source": "70", "target": "71" }, + { "source": "71", "target": "59" }, + { "source": "71", "target": "60" }, + { "source": "71", "target": "79" }, + { "source": "72", "target": "40" }, + { "source": "72", "target": "67" }, + { "source": "72", "target": "70" }, + { "source": "75", "target": "21" }, + { "source": "75", "target": "47" }, + { "source": "75", "target": "52" }, + { "source": "75", "target": "74" }, + { "source": "75", "target": "76" }, + { "source": "75", "target": "94" }, + { "source": "75", "target": "106" }, + { "source": "79", "target": "59" }, + { "source": "79", "target": "60" }, + { "source": "79", "target": "92" }, + { "source": "80", "target": "104" }, + { "source": "82", "target": "70" }, + { "source": "82", "target": "72" }, + { "source": "83", "target": "70" }, + { "source": "84", "target": "20" }, + { "source": "84", "target": "38" }, + { "source": "84", "target": "39" }, + { "source": "84", "target": "70" }, + { "source": "85", "target": "31" }, + { "source": "85", "target": "50" }, + { "source": "85", "target": "70" }, + { "source": "85", "target": "71" }, + { "source": "85", "target": "72" }, + { "source": "85", "target": "80" }, + { "source": "85", "target": "83" }, + { "source": "86", "target": "30" }, + { "source": "86", "target": "31" }, + { "source": "86", "target": "36" }, + { "source": "86", "target": "37" }, + { "source": "86", "target": "61" }, + { "source": "86", "target": "70" }, + { "source": "86", "target": "73" }, + { "source": "86", "target": "75" }, + { "source": "86", "target": "84" }, + { "source": "87", "target": "88" }, + { "source": "90", "target": "87" }, + { "source": "90", "target": "88" }, + { "source": "90", "target": "91" }, + { "source": "91", "target": "89" }, + { "source": "94", "target": "43" }, + { "source": "95", "target": "68" }, + { "source": "95", "target": "102" }, + { "source": "95", "target": "104" }, + { "source": "96", "target": "7" }, + { "source": "96", "target": "98" }, + { "source": "97", "target": "4" }, + { "source": "97", "target": "44" }, + { "source": "97", "target": "50" }, + { "source": "97", "target": "59" }, + { "source": "97", "target": "60" }, + { "source": "97", "target": "79" }, + { "source": "97", "target": "100" }, + { "source": "98", "target": "60" }, + { "source": "98", "target": "99" }, + { "source": "99", "target": "59" }, + { "source": "99", "target": "60" }, + { "source": "99", "target": "79" }, + { "source": "99", "target": "97" }, + { "source": "99", "target": "100" }, + { "source": "101", "target": "41" }, + { "source": "101", "target": "96" }, + { "source": "102", "target": "103" }, + { "source": "102", "target": "105" }, + { "source": "104", "target": "102" } + ] +} diff --git a/docs/static/data/examples/graph/disjoint-graph.json b/docs/static/data/examples/graph/disjoint-graph.json new file mode 100644 index 000000000..062147375 --- /dev/null +++ b/docs/static/data/examples/graph/disjoint-graph.json @@ -0,0 +1 @@ +{"nodes":[{"id":"Structural basis of PROTAC cooperative recognition for selective protein degradation.","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"The influence of rough lipopolysaccharide structure on molecular interactions with mammalian antimicrobial peptides","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"New Synthetic Routes to Triazolo-benzodiazepine Analogues: Expanding the Scope of the Bump-and-Hole Approach for Selective Bromo and Extra-Terminal (BET) Bromodomain Inhibition.","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Cyclic and Macrocyclic Peptides as Chemical Tools To Recognise Protein Surfaces and Probe Protein-Protein Interactions.","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"8-Substituted Pyrido[3,4-d]pyrimidin-4(3H)-one Derivatives As Potent, Cell Permeable, KDM4 (JMJD2) and KDM5 (JARID1) Histone Lysine Demethylase Inhibitors.","group":"Cited Works","radius":3,"citing_patents_count":3},{"id":"Discovery of Type II Inhibitors of TGFβ-Activated Kinase 1 (TAK1) and Mitogen-Activated Protein Kinase Kinase Kinase Kinase 2 (MAP4K2)","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"SIK2 regulates CRTCs, HDAC4 and glucose uptake in adipocytes","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Metabotropic Glutamate Receptor 5 Negative Allosteric Modulators: Discovery of 2-Chloro-4-[1-(4-fluorophenyl)-2,5-dimethyl-1H-imidazol-4-ylethynyl]pyridine (Basimglurant, RO4917523), a Promising Novel Medicine for Psychiatric Diseases","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Nrf2 regulates ROS production by mitochondria and NADPH oxidase.","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"The clinically approved drugs dasatinib and bosutinib induce anti-inflammatory macrophages by inhibiting the salt-inducible kinases","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"New Monocyclic, Bicyclic, and Tricyclic Ethynylcyanodienones as Activators of the Keap1/Nrf2/ARE Pathway and Inhibitors of Inducible Nitric Oxide Synthase","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Palmitoylation of the Na/Ca exchanger cytoplasmic loop controls its inactivation and internalization during stress signaling","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Molecular Cloning and Functional Characterization of Components of the Capsule Biosynthesis Complex of Neisseria meningitidis Serogroup A TOWARD IN VITRO VACCINE PRODUCTION","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"A bump-and-hole approach to engineer controlled selectivity of BET bromodomain chemical probes","group":"Cited Works","radius":7,"citing_patents_count":7},{"id":"An unexpected twist to the activation of IKKβ: TAK1 primes IKKβ for activation by autophosphorylation","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"Crystallographic analysis of Neisseria meningitidis PorB extracellular loops potentially implicated in TLR2 recognition","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"The LKB1-salt-inducible kinase pathway functions as a key gluconeogenic suppressor in the liver","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Characterization of VPS34-IN1, a selective inhibitor of Vps34, reveals that the phosphatidylinositol 3-phosphate-binding SGK3 protein kinase is a downstream target of class III phosphoinositide 3-kinase","group":"Cited Works","radius":3,"citing_patents_count":3},{"id":"3-(2-oxoethylidene)indolin-2-one derivatives activate Nrf2 and inhibit NF-κB: potential candidates for chemoprevention.","group":"Cited Works","radius":6,"citing_patents_count":6},{"id":"Carnosic acid stimulates glucose uptake in skeletal muscle cells via a PME-1/PP2A/PKB signalling axis","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Kv1.3 inhibitors have differential effects on glucose uptake and AMPK activity in skeletal muscle cell lines and mouse ex vivo skeletal muscle","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"Restoration of CFTR function in patients with cystic fibrosis carrying the F508del-CFTR mutation","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"Parkin is activated by PINK1-dependent phosphorylation of ubiquitin at Ser65","group":"Cited Works","radius":4,"citing_patents_count":4},{"id":"Substrate recognition by the cell surface palmitoyl transferase DHHC5.","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Dysregulation of ubiquitin homeostasis and β-catenin signaling promote spinal muscular atrophy","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Structure-Guided Design and Optimization of Small Molecules Targeting the Protein–Protein Interaction between the von Hippel–Lindau (VHL) E3 Ubiquitin Ligase and the Hypoxia Inducible Factor (HIF) Alpha Subunit with in Vitro Nanomolar Affinities","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"The Nrf2 regulatory network provides an interface between redox and intermediary metabolism","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Characterization of WZ4003 and HTH-01-015 as selective inhibitors of the LKB1-tumour-suppressor-activated NUAK kinases","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Synthesis of vitamin D3 analogues with A-ring modifications to directly measure vitamin D levels in biological samples","group":"Cited Works","radius":6,"citing_patents_count":6},{"id":"Structure-activity relationship studies of pyrrolone antimalarial agents","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"The Concise Guide to Pharmacology 2013/14.: The Concise Guide to Pharmacology 2013/14: G Protein-Coupled Receptors","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"Elevated SGK1 predicts resistance of breast cancer cells to Akt inhibitors","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Metabolism of inflammation limited by AMPK and pseudo-starvation","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Nrf2 impacts cellular bioenergetics by controlling substrate availability for mitochondrial respiration","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"The anti-inflammatory compound BAY 11-7082 is a potent inhibitor of Protein Tyrosine Phosphatases","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"BslA is a self-assembling bacterial hydrophobin that coats the Bacillus subtilis biofilm","group":"Cited Works","radius":3,"citing_patents_count":3},{"id":"Investigation of acyclic uridine amide and 5′-amido nucleoside analogues as potential inhibitors of the Plasmodium falciparum dUTPase","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Discovery and structure-activity relationships of pyrrolone antimalarials","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"De Novo Design of Protein Kinase Inhibitors by in Silico Identification of Hinge Region-Binding Fragments","group":"Cited Works","radius":3,"citing_patents_count":3},{"id":"Comprehensive characterization and optimization of anti-LRRK2 (leucine-rich repeat kinase 2) monoclonal antibodies","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"From On-Target to Off-Target Activity: Identification and Optimisation of Trypanosoma brucei GSK3 Inhibitors and Their Characterisation as Anti-Trypanosoma brucei Drug Discovery Lead Molecules","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"HIF-independent role of prolyl hydroxylases in the cellular response to amino acids","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"Structural determinants for ERK5 (MAPK7) and leucine rich repeat kinase 2 activities of benzo[e]pyrimido-[5,4-b]diazepine-6(11H)-ones","group":"Cited Works","radius":11,"citing_patents_count":11},{"id":"A novel shogaol analog suppresses cancer cell invasion and inflammation, and displays cytoprotective effects through modulation of NF-κB and Nrf2-Keap1 signaling pathways","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"X-ray Crystal Structure of ERK5 (MAPK7) in Complex with a Specific Inhibitor","group":"Cited Works","radius":3,"citing_patents_count":3},{"id":"The endosome-lysosome pathway and information generation in the immune system.","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"GSK2578215A; a potent and highly selective 2-arylmethyloxy-5-substitutent-N-arylbenzamide LRRK2 kinase inhibitor.","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Structure of the TatC core of the twin-arginine protein transport system","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"The Ancient Drug Salicylate Directly Activates AMP-Activated Protein Kinase","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"Application of a novel highly sensitive activity-based probe for detection of cathepsin G","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Analysis of the role of Nrf2 in the expression of liver proteins in mice using two-dimensional gel-based proteomics","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"PINK1 is activated by mitochondrial membrane potential depolarization and stimulates Parkin E3 ligase activity by phosphorylating Serine 65","group":"Cited Works","radius":3,"citing_patents_count":3},{"id":"Synthesis, Chemical Reactivity as Michael Acceptors, and Biological Potency of Monocyclic Cyanoenones, Novel and Highly Potent Anti-inflammatory and Cytoprotective Agents(1)","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"Design, Synthesis and Biological Evaluation of Trypanosoma brucei Trypanothione Synthetase Inhibitors","group":"Cited Works","radius":5,"citing_patents_count":5},{"id":"Mitogen-activated protein kinase-activated protein kinase 2 (MAPKAP-K2) as an antiinflammatory target: discovery and in vivo activity of selective pyrazolo[1,5-a]pyrimidine inhibitors using a focused library and structure-based optimization approach.","group":"Cited Works","radius":3,"citing_patents_count":3},{"id":"Chemical Proteomic Analysis Reveals the Drugability of the Kinome of Trypanosoma brucei","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Avirulence Protein 3a (AVR3a) from the Potato Pathogen Phytophthora infestans Forms Homodimers through Its Predicted Translocation Region and Does Not Specifically Bind Phospholipids","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"NEDD8 overexpression results in neddylation of ubiquitin substrates by the ubiquitin pathway.","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Kinome-wide Selectivity Profiling of ATP-competitive Mammalian Target of Rapamycin (mTOR) Inhibitors and Characterization of Their Binding Kinetics","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"The ubiquitin E1 enzyme Ube1 mediates NEDD8 activation under diverse stress conditions","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Acinetobacter baumannii FolD ligand complexes – potent inhibitors of folate metabolism and a re‐evaluation of the structure of LY374571","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Aurora kinase inhibitors: Progress towards the clinic","group":"Cited Works","radius":12,"citing_patents_count":12},{"id":"The AMPK-related kinase SIK2 is regulated by cAMP via phosphorylation at Ser(358) in adipocytes","group":"Cited Works","radius":3,"citing_patents_count":3},{"id":"Synergy of Peptide and Sugar in O-GlcNAcase Substrate Recognition","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"Discovery of potent and selective covalent inhibitors of JNK","group":"Cited Works","radius":6,"citing_patents_count":6},{"id":"Phosphorylation of FOXO3a on Ser-7 by p38 Promotes Its Nuclear Localization in Response to Doxorubicin","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"AMPK: a nutrient and energy sensor that maintains energy homeostasis","group":"Cited Works","radius":6,"citing_patents_count":6},{"id":"Synthesis and structure-activity relationships of a novel series of pyrimidines as potent inhibitors of TBK1/IKKε kinases.","group":"Cited Works","radius":4,"citing_patents_count":4},{"id":"Peptide inhibitors of the Keap1-Nrf2 protein-protein interaction","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Small molecules that bind the Mdm2 RING stabilize and activate p53","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","group":"Cited Works","radius":29,"citing_patents_count":29},{"id":"AMP-Activated Protein Kinase: A Target for Drugs both Ancient and Modern","group":"Cited Works","radius":11,"citing_patents_count":11},{"id":"Changes in the ratio of free NEDD8 to ubiquitin triggers NEDDylation by ubiquitin enzymes","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Fragment-based discovery of 6-substituted isoquinolin-1-amine based ROCK-I inhibitors.","group":"Cited Works","radius":4,"citing_patents_count":4},{"id":"A multifunctional protease inhibitor to regulate endolysosomal function.","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"Design, Synthesis, and Structure−Activity Relationship Exploration of 1-Substituted 4-Aroyl-3-hydroxy-5-phenyl-1H-pyrrol-2(5H)-one Analogues as Inhibitors of the Annexin A2−S100A10 Protein Interaction","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"4-benzimidazolyl-3-phenylbutanoic acids as novel PIF-pocket-targeting allosteric inhibitors of protein kinase PKCζ.","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Optimisation of 6-substituted isoquinolin-1-amine based ROCK-I inhibitors","group":"Cited Works","radius":4,"citing_patents_count":4},{"id":"Design, Synthesis and Biological Evaluation of Novel Inhibitors of Trypanosoma brucei Pteridine Reductase 1","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"The inhibitory effect of phospholemman on the sodium pump requires its palmitoylation.","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"SCF/β-TrCP promotes glycogen synthase kinase 3-dependent degradation of the Nrf2 transcription factor in a keap1-independent manner","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Immunosuppressive but Non-LasR-Inducing Analogues of the Pseudomonas aeruginosa Quorum-Sensing Molecule N-(3-Oxododecanoyl)-L-homoserine Lactone","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Absolute SILAC-Compatible Expression Strain Allows Sumo-2 Copy Number Determination in Clinical Samples","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"Collateral sensitivity of multidrug-resistant cells to the orphan drug tiopronin.","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Characterization of a selective inhibitor of the Parkinson's disease kinase LRRK2","group":"Cited Works","radius":11,"citing_patents_count":11},{"id":"ATP site-directed inhibitors of protein kinase CK2: an update.","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Identification of Inhibitors of the Leishmania cdc2-Related Protein Kinase CRK3","group":"Cited Works","radius":3,"citing_patents_count":3},{"id":"Polyubiquitin binding to optineurin is required for optimal activation of TANK-binding kinase 1 and production of interferon β.","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"Substrate and Product Analogues as Human O-Glcnac Transferase Inhibitors.","group":"Cited Works","radius":4,"citing_patents_count":4},{"id":"The cytoprotective role of the Keap1–Nrf2 pathway","group":"Cited Works","radius":7,"citing_patents_count":7},{"id":"Design, synthesis and biological evaluation of 6-pyridylmethylaminopurines as CDK inhibitors","group":"Cited Works","radius":3,"citing_patents_count":3},{"id":"Analgesic omega-Conotoxins CVIE and CVIF Selectively and Voltage-Dependently Block Recombinant and Native N-Type Calcium Channels (vol 77, pg 139, 2010)","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"NF-κB controls energy homeostasis and metabolic adaptation by upregulating mitochondrial respiration","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"Development of 18F-fluorinatable dendrons and their application to cancer cell targeting","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"The specificities of small molecule inhibitors of the TGFß and BMP pathways","group":"Cited Works","radius":3,"citing_patents_count":3},{"id":"Catalysis by the nucleolytic ribozymes","group":"Cited Works","radius":5,"citing_patents_count":5},{"id":"Characterization of GSK2334470, a novel and highly specific inhibitor of PDK1","group":"Cited Works","radius":2,"citing_patents_count":2},{"id":"N1-Benzyl substituted cambinol analogues as isozyme selective inhibitors of the sirtuin family of protein deacetylases","group":"Cited Works","radius":4,"citing_patents_count":4},{"id":"AMP-activated protein kinase—an energy sensor that regulates all aspects of cell function","group":"Cited Works","radius":7,"citing_patents_count":7},{"id":"Optimisation of the Anti-Trypanosoma brucei Activity of the Opioid Agonist U50488","group":"Cited Works","radius":1,"citing_patents_count":1},{"id":"109-294-662-661-65X","group":"Citing Patents"},{"id":"074-937-457-594-345","group":"Citing Patents"},{"id":"081-355-367-506-27X","group":"Citing Patents"},{"id":"048-634-530-447-798","group":"Citing Patents"},{"id":"137-231-469-269-151","group":"Citing Patents"},{"id":"031-072-815-607-16X","group":"Citing Patents"},{"id":"105-312-070-982-098","group":"Citing Patents"},{"id":"018-515-082-074-296","group":"Citing Patents"},{"id":"027-228-373-793-594","group":"Citing Patents"},{"id":"016-712-604-622-721","group":"Citing Patents"},{"id":"086-316-087-480-933","group":"Citing Patents"},{"id":"118-309-833-112-117","group":"Citing Patents"},{"id":"134-672-819-080-83X","group":"Citing Patents"},{"id":"036-789-224-520-054","group":"Citing Patents"},{"id":"106-594-488-484-12X","group":"Citing Patents"},{"id":"125-726-727-125-409","group":"Citing Patents"},{"id":"161-487-188-181-03X","group":"Citing Patents"},{"id":"076-538-237-089-675","group":"Citing Patents"},{"id":"051-324-518-696-462","group":"Citing Patents"},{"id":"198-017-973-913-570","group":"Citing Patents"},{"id":"156-653-831-632-101","group":"Citing Patents"},{"id":"178-739-712-688-618","group":"Citing Patents"},{"id":"131-486-498-702-07X","group":"Citing Patents"},{"id":"010-031-167-075-106","group":"Citing Patents"},{"id":"119-453-428-180-987","group":"Citing Patents"},{"id":"153-595-914-216-97X","group":"Citing Patents"},{"id":"148-353-591-913-750","group":"Citing Patents"},{"id":"019-827-938-996-490","group":"Citing Patents"},{"id":"184-646-935-269-773","group":"Citing Patents"},{"id":"186-230-275-872-748","group":"Citing Patents"},{"id":"165-291-395-706-725","group":"Citing Patents"},{"id":"047-113-007-956-15X","group":"Citing Patents"},{"id":"089-019-916-582-397","group":"Citing Patents"},{"id":"136-000-598-663-919","group":"Citing Patents"},{"id":"051-072-189-723-758","group":"Citing Patents"},{"id":"040-766-915-457-886","group":"Citing Patents"},{"id":"141-482-415-400-338","group":"Citing Patents"},{"id":"149-129-599-518-595","group":"Citing Patents"},{"id":"156-286-485-464-499","group":"Citing Patents"},{"id":"001-353-214-346-040","group":"Citing Patents"},{"id":"118-479-143-842-720","group":"Citing Patents"},{"id":"007-641-959-106-118","group":"Citing Patents"},{"id":"189-040-066-278-226","group":"Citing Patents"},{"id":"026-244-336-682-442","group":"Citing Patents"},{"id":"168-286-254-597-740","group":"Citing Patents"},{"id":"109-916-358-959-05X","group":"Citing Patents"},{"id":"002-458-268-309-533","group":"Citing Patents"},{"id":"038-310-729-099-192","group":"Citing Patents"},{"id":"179-033-965-606-598","group":"Citing Patents"},{"id":"113-229-447-433-64X","group":"Citing Patents"},{"id":"077-771-399-719-227","group":"Citing Patents"},{"id":"183-966-651-664-305","group":"Citing Patents"},{"id":"013-467-292-050-692","group":"Citing Patents"},{"id":"079-314-054-163-947","group":"Citing Patents"},{"id":"110-082-309-221-187","group":"Citing Patents"},{"id":"128-382-566-327-896","group":"Citing Patents"},{"id":"143-543-676-408-839","group":"Citing Patents"},{"id":"005-743-260-244-802","group":"Citing Patents"},{"id":"026-638-223-054-804","group":"Citing Patents"},{"id":"048-208-660-423-215","group":"Citing Patents"},{"id":"159-658-602-048-982","group":"Citing Patents"},{"id":"077-811-145-153-079","group":"Citing Patents"},{"id":"170-781-236-728-970","group":"Citing Patents"},{"id":"144-284-594-583-951","group":"Citing Patents"},{"id":"139-409-891-293-77X","group":"Citing Patents"},{"id":"081-017-751-048-013","group":"Citing Patents"},{"id":"114-963-910-586-828","group":"Citing Patents"},{"id":"162-513-842-046-362","group":"Citing Patents"},{"id":"188-803-921-043-695","group":"Citing Patents"},{"id":"191-147-881-232-285","group":"Citing Patents"},{"id":"081-817-015-173-962","group":"Citing Patents"},{"id":"106-530-060-683-82X","group":"Citing Patents"},{"id":"133-935-409-400-672","group":"Citing Patents"},{"id":"046-588-899-387-353","group":"Citing Patents"},{"id":"049-222-171-973-678","group":"Citing Patents"},{"id":"074-598-665-914-143","group":"Citing Patents"},{"id":"190-195-697-065-907","group":"Citing Patents"},{"id":"031-461-589-086-771","group":"Citing Patents"},{"id":"167-851-091-520-257","group":"Citing Patents"},{"id":"151-760-923-304-502","group":"Citing Patents"},{"id":"097-019-537-894-104","group":"Citing Patents"},{"id":"170-696-774-214-700","group":"Citing Patents"},{"id":"084-807-525-209-072","group":"Citing Patents"},{"id":"044-648-704-787-12X","group":"Citing Patents"},{"id":"150-822-190-827-131","group":"Citing Patents"},{"id":"051-919-508-851-10X","group":"Citing Patents"},{"id":"036-251-116-198-69X","group":"Citing Patents"},{"id":"149-946-446-737-586","group":"Citing Patents"},{"id":"075-397-286-033-085","group":"Citing Patents"},{"id":"028-992-308-265-357","group":"Citing Patents"},{"id":"044-207-676-689-405","group":"Citing Patents"},{"id":"030-350-713-791-200","group":"Citing Patents"},{"id":"093-997-239-092-949","group":"Citing Patents"},{"id":"046-345-437-716-689","group":"Citing Patents"},{"id":"146-411-731-640-871","group":"Citing Patents"},{"id":"000-266-572-036-366","group":"Citing Patents"},{"id":"186-389-876-954-313","group":"Citing Patents"},{"id":"168-483-508-794-377","group":"Citing Patents"},{"id":"029-748-240-628-036","group":"Citing Patents"},{"id":"184-507-509-452-559","group":"Citing Patents"},{"id":"069-961-069-943-549","group":"Citing Patents"},{"id":"017-777-392-752-199","group":"Citing Patents"},{"id":"000-150-893-948-804","group":"Citing Patents"},{"id":"027-437-502-794-894","group":"Citing Patents"},{"id":"074-789-039-135-70X","group":"Citing Patents"},{"id":"063-617-165-524-327","group":"Citing Patents"},{"id":"019-872-586-012-269","group":"Citing Patents"},{"id":"103-648-347-913-447","group":"Citing Patents"},{"id":"007-245-406-573-328","group":"Citing Patents"},{"id":"008-337-248-044-723","group":"Citing Patents"},{"id":"197-071-041-313-103","group":"Citing Patents"},{"id":"098-538-513-984-747","group":"Citing Patents"},{"id":"019-125-805-246-964","group":"Citing Patents"},{"id":"172-064-016-145-117","group":"Citing Patents"},{"id":"007-417-942-335-284","group":"Citing Patents"},{"id":"005-947-025-410-764","group":"Citing Patents"},{"id":"116-404-026-640-450","group":"Citing Patents"},{"id":"090-437-295-781-023","group":"Citing Patents"},{"id":"197-158-559-918-854","group":"Citing Patents"},{"id":"076-225-263-850-117","group":"Citing Patents"},{"id":"049-199-509-181-561","group":"Citing Patents"},{"id":"179-045-041-176-506","group":"Citing Patents"},{"id":"004-301-778-674-378","group":"Citing Patents"},{"id":"111-313-231-732-367","group":"Citing Patents"},{"id":"092-197-031-561-353","group":"Citing Patents"},{"id":"192-019-786-423-841","group":"Citing Patents"},{"id":"076-608-180-638-59X","group":"Citing Patents"},{"id":"175-263-797-963-040","group":"Citing Patents"},{"id":"141-694-167-791-759","group":"Citing Patents"},{"id":"081-203-444-563-604","group":"Citing Patents"},{"id":"125-348-249-762-351","group":"Citing Patents"},{"id":"125-850-986-196-787","group":"Citing Patents"},{"id":"119-397-162-706-860","group":"Citing Patents"},{"id":"133-023-408-974-285","group":"Citing Patents"},{"id":"039-847-299-166-952","group":"Citing Patents"},{"id":"076-641-402-312-988","group":"Citing Patents"},{"id":"102-485-198-725-150","group":"Citing Patents"},{"id":"168-829-456-947-639","group":"Citing Patents"},{"id":"098-813-369-162-741","group":"Citing Patents"},{"id":"023-180-369-416-862","group":"Citing Patents"},{"id":"189-473-046-734-005","group":"Citing Patents"},{"id":"019-633-684-883-828","group":"Citing Patents"},{"id":"174-501-376-407-235","group":"Citing Patents"},{"id":"129-062-448-949-030","group":"Citing Patents"},{"id":"162-916-741-322-002","group":"Citing Patents"},{"id":"080-026-305-809-343","group":"Citing Patents"},{"id":"016-698-167-713-829","group":"Citing Patents"},{"id":"091-325-080-234-401","group":"Citing Patents"},{"id":"032-206-614-235-635","group":"Citing Patents"},{"id":"143-271-017-351-983","group":"Citing Patents"},{"id":"169-312-245-869-778","group":"Citing Patents"},{"id":"089-818-979-077-305","group":"Citing Patents"},{"id":"187-517-157-601-239","group":"Citing Patents"},{"id":"111-583-988-147-450","group":"Citing Patents"},{"id":"058-026-435-099-506","group":"Citing Patents"},{"id":"153-651-762-444-327","group":"Citing Patents"},{"id":"159-766-711-047-610","group":"Citing Patents"},{"id":"058-933-099-316-100","group":"Citing Patents"},{"id":"023-452-662-674-373","group":"Citing Patents"},{"id":"047-432-030-246-04X","group":"Citing Patents"},{"id":"139-008-712-602-518","group":"Citing Patents"},{"id":"137-720-748-139-162","group":"Citing Patents"},{"id":"192-136-893-476-749","group":"Citing Patents"},{"id":"172-890-893-515-719","group":"Citing Patents"},{"id":"104-472-615-006-481","group":"Citing Patents"},{"id":"097-374-332-908-898","group":"Citing Patents"},{"id":"034-416-075-094-770","group":"Citing Patents"},{"id":"127-642-274-375-054","group":"Citing Patents"},{"id":"036-708-909-192-156","group":"Citing Patents"},{"id":"193-863-590-855-263","group":"Citing Patents"},{"id":"150-028-859-997-047","group":"Citing Patents"},{"id":"132-394-716-226-832","group":"Citing Patents"},{"id":"131-238-819-455-784","group":"Citing Patents"},{"id":"155-402-461-387-483","group":"Citing Patents"},{"id":"040-389-070-176-191","group":"Citing Patents"},{"id":"076-478-479-475-120","group":"Citing Patents"},{"id":"034-190-802-321-708","group":"Citing Patents"},{"id":"130-316-719-983-242","group":"Citing Patents"},{"id":"036-668-261-470-040","group":"Citing Patents"},{"id":"183-767-289-461-131","group":"Citing Patents"},{"id":"107-556-164-321-147","group":"Citing Patents"},{"id":"066-190-726-252-149","group":"Citing Patents"},{"id":"140-900-012-438-14X","group":"Citing Patents"},{"id":"058-438-690-312-096","group":"Citing Patents"},{"id":"004-889-112-130-518","group":"Citing Patents"},{"id":"193-040-307-473-220","group":"Citing Patents"},{"id":"188-718-220-131-362","group":"Citing Patents"},{"id":"087-577-350-425-176","group":"Citing Patents"},{"id":"191-670-060-004-126","group":"Citing Patents"},{"id":"041-699-843-843-567","group":"Citing Patents"},{"id":"180-366-233-781-99X","group":"Citing Patents"},{"id":"122-739-962-072-793","group":"Citing Patents"},{"id":"109-274-898-147-341","group":"Citing Patents"},{"id":"124-179-501-005-870","group":"Citing Patents"},{"id":"008-694-981-426-172","group":"Citing Patents"},{"id":"109-611-546-954-080","group":"Citing Patents"},{"id":"004-378-254-734-355","group":"Citing Patents"},{"id":"133-997-520-845-569","group":"Citing Patents"},{"id":"115-381-943-359-61X","group":"Citing Patents"},{"id":"022-078-711-389-998","group":"Citing Patents"},{"id":"132-854-391-972-865","group":"Citing Patents"},{"id":"171-143-110-884-468","group":"Citing Patents"},{"id":"003-946-199-636-328","group":"Citing Patents"},{"id":"009-649-401-227-606","group":"Citing Patents"},{"id":"170-042-571-881-121","group":"Citing Patents"},{"id":"033-301-273-471-462","group":"Citing Patents"},{"id":"040-826-560-477-838","group":"Citing Patents"},{"id":"135-293-472-746-415","group":"Citing Patents"},{"id":"153-999-081-812-523","group":"Citing Patents"},{"id":"000-498-778-953-787","group":"Citing Patents"},{"id":"085-065-777-135-758","group":"Citing Patents"},{"id":"152-366-692-522-975","group":"Citing Patents"},{"id":"167-869-142-610-582","group":"Citing Patents"},{"id":"191-676-336-200-724","group":"Citing Patents"},{"id":"056-387-403-639-935","group":"Citing Patents"},{"id":"066-841-401-628-941","group":"Citing Patents"},{"id":"069-503-782-573-055","group":"Citing Patents"},{"id":"028-137-796-142-577","group":"Citing Patents"},{"id":"197-678-301-596-236","group":"Citing Patents"},{"id":"147-466-934-435-143","group":"Citing Patents"},{"id":"114-647-123-099-321","group":"Citing Patents"},{"id":"058-829-130-504-901","group":"Citing Patents"},{"id":"169-953-034-717-264","group":"Citing Patents"},{"id":"028-012-588-449-727","group":"Citing Patents"},{"id":"038-839-140-589-623","group":"Citing Patents"},{"id":"194-924-906-201-593","group":"Citing Patents"},{"id":"195-611-964-620-410","group":"Citing Patents"},{"id":"025-014-524-538-421","group":"Citing Patents"},{"id":"120-667-268-642-909","group":"Citing Patents"},{"id":"163-117-320-460-138","group":"Citing Patents"},{"id":"191-290-593-697-506","group":"Citing Patents"},{"id":"118-339-847-530-982","group":"Citing Patents"},{"id":"073-318-370-112-877","group":"Citing Patents"},{"id":"113-828-920-381-078","group":"Citing Patents"},{"id":"048-983-957-537-421","group":"Citing Patents"},{"id":"073-531-962-083-670","group":"Citing Patents"}],"links":[{"source":"Structural basis of PROTAC cooperative recognition for selective protein degradation.","target":"109-294-662-661-65X","value":2},{"source":"Structural basis of PROTAC cooperative recognition for selective protein degradation.","target":"074-937-457-594-345","value":2},{"source":"The influence of rough lipopolysaccharide structure on molecular interactions with mammalian antimicrobial peptides","target":"081-355-367-506-27X","value":2},{"source":"New Synthetic Routes to Triazolo-benzodiazepine Analogues: Expanding the Scope of the Bump-and-Hole Approach for Selective Bromo and Extra-Terminal (BET) Bromodomain Inhibition.","target":"048-634-530-447-798","value":2},{"source":"Cyclic and Macrocyclic Peptides as Chemical Tools To Recognise Protein Surfaces and Probe Protein-Protein Interactions.","target":"137-231-469-269-151","value":2},{"source":"8-Substituted Pyrido[3,4-d]pyrimidin-4(3H)-one Derivatives As Potent, Cell Permeable, KDM4 (JMJD2) and KDM5 (JARID1) Histone Lysine Demethylase Inhibitors.","target":"031-072-815-607-16X","value":2},{"source":"8-Substituted Pyrido[3,4-d]pyrimidin-4(3H)-one Derivatives As Potent, Cell Permeable, KDM4 (JMJD2) and KDM5 (JARID1) Histone Lysine Demethylase Inhibitors.","target":"105-312-070-982-098","value":2},{"source":"8-Substituted Pyrido[3,4-d]pyrimidin-4(3H)-one Derivatives As Potent, Cell Permeable, KDM4 (JMJD2) and KDM5 (JARID1) Histone Lysine Demethylase Inhibitors.","target":"018-515-082-074-296","value":2},{"source":"Discovery of Type II Inhibitors of TGFβ-Activated Kinase 1 (TAK1) and Mitogen-Activated Protein Kinase Kinase Kinase Kinase 2 (MAP4K2)","target":"027-228-373-793-594","value":2},{"source":"SIK2 regulates CRTCs, HDAC4 and glucose uptake in adipocytes","target":"016-712-604-622-721","value":2},{"source":"Metabotropic Glutamate Receptor 5 Negative Allosteric Modulators: Discovery of 2-Chloro-4-[1-(4-fluorophenyl)-2,5-dimethyl-1H-imidazol-4-ylethynyl]pyridine (Basimglurant, RO4917523), a Promising Novel Medicine for Psychiatric Diseases","target":"086-316-087-480-933","value":2},{"source":"Nrf2 regulates ROS production by mitochondria and NADPH oxidase.","target":"118-309-833-112-117","value":2},{"source":"The clinically approved drugs dasatinib and bosutinib induce anti-inflammatory macrophages by inhibiting the salt-inducible kinases","target":"134-672-819-080-83X","value":2},{"source":"New Monocyclic, Bicyclic, and Tricyclic Ethynylcyanodienones as Activators of the Keap1/Nrf2/ARE Pathway and Inhibitors of Inducible Nitric Oxide Synthase","target":"036-789-224-520-054","value":2},{"source":"Palmitoylation of the Na/Ca exchanger cytoplasmic loop controls its inactivation and internalization during stress signaling","target":"106-594-488-484-12X","value":2},{"source":"Molecular Cloning and Functional Characterization of Components of the Capsule Biosynthesis Complex of Neisseria meningitidis Serogroup A TOWARD IN VITRO VACCINE PRODUCTION","target":"125-726-727-125-409","value":2},{"source":"A bump-and-hole approach to engineer controlled selectivity of BET bromodomain chemical probes","target":"161-487-188-181-03X","value":2},{"source":"A bump-and-hole approach to engineer controlled selectivity of BET bromodomain chemical probes","target":"076-538-237-089-675","value":2},{"source":"A bump-and-hole approach to engineer controlled selectivity of BET bromodomain chemical probes","target":"051-324-518-696-462","value":2},{"source":"A bump-and-hole approach to engineer controlled selectivity of BET bromodomain chemical probes","target":"198-017-973-913-570","value":2},{"source":"A bump-and-hole approach to engineer controlled selectivity of BET bromodomain chemical probes","target":"156-653-831-632-101","value":2},{"source":"A bump-and-hole approach to engineer controlled selectivity of BET bromodomain chemical probes","target":"178-739-712-688-618","value":2},{"source":"A bump-and-hole approach to engineer controlled selectivity of BET bromodomain chemical probes","target":"048-634-530-447-798","value":2},{"source":"An unexpected twist to the activation of IKKβ: TAK1 primes IKKβ for activation by autophosphorylation","target":"131-486-498-702-07X","value":2},{"source":"An unexpected twist to the activation of IKKβ: TAK1 primes IKKβ for activation by autophosphorylation","target":"010-031-167-075-106","value":2},{"source":"Crystallographic analysis of Neisseria meningitidis PorB extracellular loops potentially implicated in TLR2 recognition","target":"119-453-428-180-987","value":2},{"source":"The LKB1-salt-inducible kinase pathway functions as a key gluconeogenic suppressor in the liver","target":"016-712-604-622-721","value":2},{"source":"Characterization of VPS34-IN1, a selective inhibitor of Vps34, reveals that the phosphatidylinositol 3-phosphate-binding SGK3 protein kinase is a downstream target of class III phosphoinositide 3-kinase","target":"153-595-914-216-97X","value":2},{"source":"Characterization of VPS34-IN1, a selective inhibitor of Vps34, reveals that the phosphatidylinositol 3-phosphate-binding SGK3 protein kinase is a downstream target of class III phosphoinositide 3-kinase","target":"148-353-591-913-750","value":2},{"source":"Characterization of VPS34-IN1, a selective inhibitor of Vps34, reveals that the phosphatidylinositol 3-phosphate-binding SGK3 protein kinase is a downstream target of class III phosphoinositide 3-kinase","target":"019-827-938-996-490","value":2},{"source":"3-(2-oxoethylidene)indolin-2-one derivatives activate Nrf2 and inhibit NF-κB: potential candidates for chemoprevention.","target":"184-646-935-269-773","value":2},{"source":"3-(2-oxoethylidene)indolin-2-one derivatives activate Nrf2 and inhibit NF-κB: potential candidates for chemoprevention.","target":"186-230-275-872-748","value":2},{"source":"3-(2-oxoethylidene)indolin-2-one derivatives activate Nrf2 and inhibit NF-κB: potential candidates for chemoprevention.","target":"165-291-395-706-725","value":2},{"source":"3-(2-oxoethylidene)indolin-2-one derivatives activate Nrf2 and inhibit NF-κB: potential candidates for chemoprevention.","target":"047-113-007-956-15X","value":2},{"source":"3-(2-oxoethylidene)indolin-2-one derivatives activate Nrf2 and inhibit NF-κB: potential candidates for chemoprevention.","target":"089-019-916-582-397","value":2},{"source":"3-(2-oxoethylidene)indolin-2-one derivatives activate Nrf2 and inhibit NF-κB: potential candidates for chemoprevention.","target":"136-000-598-663-919","value":2},{"source":"Carnosic acid stimulates glucose uptake in skeletal muscle cells via a PME-1/PP2A/PKB signalling axis","target":"051-072-189-723-758","value":2},{"source":"Kv1.3 inhibitors have differential effects on glucose uptake and AMPK activity in skeletal muscle cell lines and mouse ex vivo skeletal muscle","target":"040-766-915-457-886","value":2},{"source":"Kv1.3 inhibitors have differential effects on glucose uptake and AMPK activity in skeletal muscle cell lines and mouse ex vivo skeletal muscle","target":"141-482-415-400-338","value":2},{"source":"Restoration of CFTR function in patients with cystic fibrosis carrying the F508del-CFTR mutation","target":"149-129-599-518-595","value":2},{"source":"Restoration of CFTR function in patients with cystic fibrosis carrying the F508del-CFTR mutation","target":"156-286-485-464-499","value":2},{"source":"Parkin is activated by PINK1-dependent phosphorylation of ubiquitin at Ser65","target":"001-353-214-346-040","value":2},{"source":"Parkin is activated by PINK1-dependent phosphorylation of ubiquitin at Ser65","target":"118-479-143-842-720","value":2},{"source":"Parkin is activated by PINK1-dependent phosphorylation of ubiquitin at Ser65","target":"007-641-959-106-118","value":2},{"source":"Parkin is activated by PINK1-dependent phosphorylation of ubiquitin at Ser65","target":"189-040-066-278-226","value":2},{"source":"Substrate recognition by the cell surface palmitoyl transferase DHHC5.","target":"106-594-488-484-12X","value":2},{"source":"Dysregulation of ubiquitin homeostasis and β-catenin signaling promote spinal muscular atrophy","target":"026-244-336-682-442","value":2},{"source":"Structure-Guided Design and Optimization of Small Molecules Targeting the Protein–Protein Interaction between the von Hippel–Lindau (VHL) E3 Ubiquitin Ligase and the Hypoxia Inducible Factor (HIF) Alpha Subunit with in Vitro Nanomolar Affinities","target":"074-937-457-594-345","value":2},{"source":"Structure-Guided Design and Optimization of Small Molecules Targeting the Protein–Protein Interaction between the von Hippel–Lindau (VHL) E3 Ubiquitin Ligase and the Hypoxia Inducible Factor (HIF) Alpha Subunit with in Vitro Nanomolar Affinities","target":"168-286-254-597-740","value":2},{"source":"The Nrf2 regulatory network provides an interface between redox and intermediary metabolism","target":"109-916-358-959-05X","value":2},{"source":"Characterization of WZ4003 and HTH-01-015 as selective inhibitors of the LKB1-tumour-suppressor-activated NUAK kinases","target":"002-458-268-309-533","value":2},{"source":"Synthesis of vitamin D3 analogues with A-ring modifications to directly measure vitamin D levels in biological samples","target":"038-310-729-099-192","value":2},{"source":"Synthesis of vitamin D3 analogues with A-ring modifications to directly measure vitamin D levels in biological samples","target":"179-033-965-606-598","value":2},{"source":"Synthesis of vitamin D3 analogues with A-ring modifications to directly measure vitamin D levels in biological samples","target":"113-229-447-433-64X","value":2},{"source":"Synthesis of vitamin D3 analogues with A-ring modifications to directly measure vitamin D levels in biological samples","target":"077-771-399-719-227","value":2},{"source":"Synthesis of vitamin D3 analogues with A-ring modifications to directly measure vitamin D levels in biological samples","target":"183-966-651-664-305","value":2},{"source":"Synthesis of vitamin D3 analogues with A-ring modifications to directly measure vitamin D levels in biological samples","target":"013-467-292-050-692","value":2},{"source":"Structure-activity relationship studies of pyrrolone antimalarial agents","target":"079-314-054-163-947","value":2},{"source":"Structure-activity relationship studies of pyrrolone antimalarial agents","target":"110-082-309-221-187","value":2},{"source":"The Concise Guide to Pharmacology 2013/14.: The Concise Guide to Pharmacology 2013/14: G Protein-Coupled Receptors","target":"128-382-566-327-896","value":2},{"source":"The Concise Guide to Pharmacology 2013/14.: The Concise Guide to Pharmacology 2013/14: G Protein-Coupled Receptors","target":"143-543-676-408-839","value":2},{"source":"Elevated SGK1 predicts resistance of breast cancer cells to Akt inhibitors","target":"005-743-260-244-802","value":2},{"source":"Metabolism of inflammation limited by AMPK and pseudo-starvation","target":"026-638-223-054-804","value":2},{"source":"Nrf2 impacts cellular bioenergetics by controlling substrate availability for mitochondrial respiration","target":"048-208-660-423-215","value":2},{"source":"The anti-inflammatory compound BAY 11-7082 is a potent inhibitor of Protein Tyrosine Phosphatases","target":"159-658-602-048-982","value":2},{"source":"BslA is a self-assembling bacterial hydrophobin that coats the Bacillus subtilis biofilm","target":"077-811-145-153-079","value":2},{"source":"BslA is a self-assembling bacterial hydrophobin that coats the Bacillus subtilis biofilm","target":"170-781-236-728-970","value":2},{"source":"BslA is a self-assembling bacterial hydrophobin that coats the Bacillus subtilis biofilm","target":"144-284-594-583-951","value":2},{"source":"Investigation of acyclic uridine amide and 5′-amido nucleoside analogues as potential inhibitors of the Plasmodium falciparum dUTPase","target":"139-409-891-293-77X","value":2},{"source":"Discovery and structure-activity relationships of pyrrolone antimalarials","target":"110-082-309-221-187","value":2},{"source":"De Novo Design of Protein Kinase Inhibitors by in Silico Identification of Hinge Region-Binding Fragments","target":"081-017-751-048-013","value":2},{"source":"De Novo Design of Protein Kinase Inhibitors by in Silico Identification of Hinge Region-Binding Fragments","target":"114-963-910-586-828","value":2},{"source":"De Novo Design of Protein Kinase Inhibitors by in Silico Identification of Hinge Region-Binding Fragments","target":"162-513-842-046-362","value":2},{"source":"Comprehensive characterization and optimization of anti-LRRK2 (leucine-rich repeat kinase 2) monoclonal antibodies","target":"188-803-921-043-695","value":2},{"source":"From On-Target to Off-Target Activity: Identification and Optimisation of Trypanosoma brucei GSK3 Inhibitors and Their Characterisation as Anti-Trypanosoma brucei Drug Discovery Lead Molecules","target":"191-147-881-232-285","value":2},{"source":"From On-Target to Off-Target Activity: Identification and Optimisation of Trypanosoma brucei GSK3 Inhibitors and Their Characterisation as Anti-Trypanosoma brucei Drug Discovery Lead Molecules","target":"081-817-015-173-962","value":2},{"source":"HIF-independent role of prolyl hydroxylases in the cellular response to amino acids","target":"106-530-060-683-82X","value":2},{"source":"HIF-independent role of prolyl hydroxylases in the cellular response to amino acids","target":"133-935-409-400-672","value":2},{"source":"Structural determinants for ERK5 (MAPK7) and leucine rich repeat kinase 2 activities of benzo[e]pyrimido-[5,4-b]diazepine-6(11H)-ones","target":"046-588-899-387-353","value":2},{"source":"Structural determinants for ERK5 (MAPK7) and leucine rich repeat kinase 2 activities of benzo[e]pyrimido-[5,4-b]diazepine-6(11H)-ones","target":"051-324-518-696-462","value":2},{"source":"Structural determinants for ERK5 (MAPK7) and leucine rich repeat kinase 2 activities of benzo[e]pyrimido-[5,4-b]diazepine-6(11H)-ones","target":"161-487-188-181-03X","value":2},{"source":"Structural determinants for ERK5 (MAPK7) and leucine rich repeat kinase 2 activities of benzo[e]pyrimido-[5,4-b]diazepine-6(11H)-ones","target":"156-653-831-632-101","value":2},{"source":"Structural determinants for ERK5 (MAPK7) and leucine rich repeat kinase 2 activities of benzo[e]pyrimido-[5,4-b]diazepine-6(11H)-ones","target":"198-017-973-913-570","value":2},{"source":"Structural determinants for ERK5 (MAPK7) and leucine rich repeat kinase 2 activities of benzo[e]pyrimido-[5,4-b]diazepine-6(11H)-ones","target":"076-538-237-089-675","value":2},{"source":"Structural determinants for ERK5 (MAPK7) and leucine rich repeat kinase 2 activities of benzo[e]pyrimido-[5,4-b]diazepine-6(11H)-ones","target":"198-017-973-913-570","value":2},{"source":"Structural determinants for ERK5 (MAPK7) and leucine rich repeat kinase 2 activities of benzo[e]pyrimido-[5,4-b]diazepine-6(11H)-ones","target":"076-538-237-089-675","value":2},{"source":"Structural determinants for ERK5 (MAPK7) and leucine rich repeat kinase 2 activities of benzo[e]pyrimido-[5,4-b]diazepine-6(11H)-ones","target":"051-324-518-696-462","value":2},{"source":"Structural determinants for ERK5 (MAPK7) and leucine rich repeat kinase 2 activities of benzo[e]pyrimido-[5,4-b]diazepine-6(11H)-ones","target":"161-487-188-181-03X","value":2},{"source":"Structural determinants for ERK5 (MAPK7) and leucine rich repeat kinase 2 activities of benzo[e]pyrimido-[5,4-b]diazepine-6(11H)-ones","target":"156-653-831-632-101","value":2},{"source":"A novel shogaol analog suppresses cancer cell invasion and inflammation, and displays cytoprotective effects through modulation of NF-κB and Nrf2-Keap1 signaling pathways","target":"049-222-171-973-678","value":2},{"source":"A novel shogaol analog suppresses cancer cell invasion and inflammation, and displays cytoprotective effects through modulation of NF-κB and Nrf2-Keap1 signaling pathways","target":"074-598-665-914-143","value":2},{"source":"X-ray Crystal Structure of ERK5 (MAPK7) in Complex with a Specific Inhibitor","target":"161-487-188-181-03X","value":2},{"source":"X-ray Crystal Structure of ERK5 (MAPK7) in Complex with a Specific Inhibitor","target":"156-653-831-632-101","value":2},{"source":"X-ray Crystal Structure of ERK5 (MAPK7) in Complex with a Specific Inhibitor","target":"051-324-518-696-462","value":2},{"source":"The endosome-lysosome pathway and information generation in the immune system.","target":"190-195-697-065-907","value":2},{"source":"The endosome-lysosome pathway and information generation in the immune system.","target":"031-461-589-086-771","value":2},{"source":"GSK2578215A; a potent and highly selective 2-arylmethyloxy-5-substitutent-N-arylbenzamide LRRK2 kinase inhibitor.","target":"167-851-091-520-257","value":2},{"source":"Structure of the TatC core of the twin-arginine protein transport system","target":"151-760-923-304-502","value":2},{"source":"The Ancient Drug Salicylate Directly Activates AMP-Activated Protein Kinase","target":"097-019-537-894-104","value":2},{"source":"The Ancient Drug Salicylate Directly Activates AMP-Activated Protein Kinase","target":"170-696-774-214-700","value":2},{"source":"Application of a novel highly sensitive activity-based probe for detection of cathepsin G","target":"084-807-525-209-072","value":2},{"source":"Analysis of the role of Nrf2 in the expression of liver proteins in mice using two-dimensional gel-based proteomics","target":"044-648-704-787-12X","value":2},{"source":"PINK1 is activated by mitochondrial membrane potential depolarization and stimulates Parkin E3 ligase activity by phosphorylating Serine 65","target":"001-353-214-346-040","value":2},{"source":"PINK1 is activated by mitochondrial membrane potential depolarization and stimulates Parkin E3 ligase activity by phosphorylating Serine 65","target":"150-822-190-827-131","value":2},{"source":"PINK1 is activated by mitochondrial membrane potential depolarization and stimulates Parkin E3 ligase activity by phosphorylating Serine 65","target":"051-919-508-851-10X","value":2},{"source":"Synthesis, Chemical Reactivity as Michael Acceptors, and Biological Potency of Monocyclic Cyanoenones, Novel and Highly Potent Anti-inflammatory and Cytoprotective Agents(1)","target":"036-789-224-520-054","value":2},{"source":"Synthesis, Chemical Reactivity as Michael Acceptors, and Biological Potency of Monocyclic Cyanoenones, Novel and Highly Potent Anti-inflammatory and Cytoprotective Agents(1)","target":"036-251-116-198-69X","value":2},{"source":"Design, Synthesis and Biological Evaluation of Trypanosoma brucei Trypanothione Synthetase Inhibitors","target":"149-946-446-737-586","value":2},{"source":"Design, Synthesis and Biological Evaluation of Trypanosoma brucei Trypanothione Synthetase Inhibitors","target":"075-397-286-033-085","value":2},{"source":"Design, Synthesis and Biological Evaluation of Trypanosoma brucei Trypanothione Synthetase Inhibitors","target":"028-992-308-265-357","value":2},{"source":"Design, Synthesis and Biological Evaluation of Trypanosoma brucei Trypanothione Synthetase Inhibitors","target":"044-207-676-689-405","value":2},{"source":"Design, Synthesis and Biological Evaluation of Trypanosoma brucei Trypanothione Synthetase Inhibitors","target":"030-350-713-791-200","value":2},{"source":"Mitogen-activated protein kinase-activated protein kinase 2 (MAPKAP-K2) as an antiinflammatory target: discovery and in vivo activity of selective pyrazolo[1,5-a]pyrimidine inhibitors using a focused library and structure-based optimization approach.","target":"093-997-239-092-949","value":2},{"source":"Mitogen-activated protein kinase-activated protein kinase 2 (MAPKAP-K2) as an antiinflammatory target: discovery and in vivo activity of selective pyrazolo[1,5-a]pyrimidine inhibitors using a focused library and structure-based optimization approach.","target":"046-345-437-716-689","value":2},{"source":"Mitogen-activated protein kinase-activated protein kinase 2 (MAPKAP-K2) as an antiinflammatory target: discovery and in vivo activity of selective pyrazolo[1,5-a]pyrimidine inhibitors using a focused library and structure-based optimization approach.","target":"146-411-731-640-871","value":2},{"source":"Chemical Proteomic Analysis Reveals the Drugability of the Kinome of Trypanosoma brucei","target":"000-266-572-036-366","value":2},{"source":"Avirulence Protein 3a (AVR3a) from the Potato Pathogen Phytophthora infestans Forms Homodimers through Its Predicted Translocation Region and Does Not Specifically Bind Phospholipids","target":"186-389-876-954-313","value":2},{"source":"NEDD8 overexpression results in neddylation of ubiquitin substrates by the ubiquitin pathway.","target":"168-483-508-794-377","value":2},{"source":"Kinome-wide Selectivity Profiling of ATP-competitive Mammalian Target of Rapamycin (mTOR) Inhibitors and Characterization of Their Binding Kinetics","target":"029-748-240-628-036","value":2},{"source":"The ubiquitin E1 enzyme Ube1 mediates NEDD8 activation under diverse stress conditions","target":"184-507-509-452-559","value":2},{"source":"Acinetobacter baumannii FolD ligand complexes – potent inhibitors of folate metabolism and a re‐evaluation of the structure of LY374571","target":"069-961-069-943-549","value":2},{"source":"Aurora kinase inhibitors: Progress towards the clinic","target":"017-777-392-752-199","value":2},{"source":"Aurora kinase inhibitors: Progress towards the clinic","target":"000-150-893-948-804","value":2},{"source":"Aurora kinase inhibitors: Progress towards the clinic","target":"027-437-502-794-894","value":2},{"source":"Aurora kinase inhibitors: Progress towards the clinic","target":"074-789-039-135-70X","value":2},{"source":"Aurora kinase inhibitors: Progress towards the clinic","target":"063-617-165-524-327","value":2},{"source":"Aurora kinase inhibitors: Progress towards the clinic","target":"019-872-586-012-269","value":2},{"source":"Aurora kinase inhibitors: Progress towards the clinic","target":"103-648-347-913-447","value":2},{"source":"Aurora kinase inhibitors: Progress towards the clinic","target":"007-245-406-573-328","value":2},{"source":"Aurora kinase inhibitors: Progress towards the clinic","target":"027-437-502-794-894","value":2},{"source":"Aurora kinase inhibitors: Progress towards the clinic","target":"008-337-248-044-723","value":2},{"source":"Aurora kinase inhibitors: Progress towards the clinic","target":"197-071-041-313-103","value":2},{"source":"Aurora kinase inhibitors: Progress towards the clinic","target":"098-538-513-984-747","value":2},{"source":"The AMPK-related kinase SIK2 is regulated by cAMP via phosphorylation at Ser(358) in adipocytes","target":"019-125-805-246-964","value":2},{"source":"The AMPK-related kinase SIK2 is regulated by cAMP via phosphorylation at Ser(358) in adipocytes","target":"172-064-016-145-117","value":2},{"source":"The AMPK-related kinase SIK2 is regulated by cAMP via phosphorylation at Ser(358) in adipocytes","target":"007-417-942-335-284","value":2},{"source":"Synergy of Peptide and Sugar in O-GlcNAcase Substrate Recognition","target":"005-947-025-410-764","value":2},{"source":"Synergy of Peptide and Sugar in O-GlcNAcase Substrate Recognition","target":"116-404-026-640-450","value":2},{"source":"Discovery of potent and selective covalent inhibitors of JNK","target":"090-437-295-781-023","value":2},{"source":"Discovery of potent and selective covalent inhibitors of JNK","target":"197-158-559-918-854","value":2},{"source":"Discovery of potent and selective covalent inhibitors of JNK","target":"076-225-263-850-117","value":2},{"source":"Discovery of potent and selective covalent inhibitors of JNK","target":"049-199-509-181-561","value":2},{"source":"Discovery of potent and selective covalent inhibitors of JNK","target":"179-045-041-176-506","value":2},{"source":"Discovery of potent and selective covalent inhibitors of JNK","target":"004-301-778-674-378","value":2},{"source":"Phosphorylation of FOXO3a on Ser-7 by p38 Promotes Its Nuclear Localization in Response to Doxorubicin","target":"111-313-231-732-367","value":2},{"source":"AMPK: a nutrient and energy sensor that maintains energy homeostasis","target":"092-197-031-561-353","value":2},{"source":"AMPK: a nutrient and energy sensor that maintains energy homeostasis","target":"192-019-786-423-841","value":2},{"source":"AMPK: a nutrient and energy sensor that maintains energy homeostasis","target":"192-019-786-423-841","value":2},{"source":"AMPK: a nutrient and energy sensor that maintains energy homeostasis","target":"076-608-180-638-59X","value":2},{"source":"AMPK: a nutrient and energy sensor that maintains energy homeostasis","target":"175-263-797-963-040","value":2},{"source":"AMPK: a nutrient and energy sensor that maintains energy homeostasis","target":"092-197-031-561-353","value":2},{"source":"Synthesis and structure-activity relationships of a novel series of pyrimidines as potent inhibitors of TBK1/IKKε kinases.","target":"141-694-167-791-759","value":2},{"source":"Synthesis and structure-activity relationships of a novel series of pyrimidines as potent inhibitors of TBK1/IKKε kinases.","target":"081-203-444-563-604","value":2},{"source":"Synthesis and structure-activity relationships of a novel series of pyrimidines as potent inhibitors of TBK1/IKKε kinases.","target":"125-348-249-762-351","value":2},{"source":"Synthesis and structure-activity relationships of a novel series of pyrimidines as potent inhibitors of TBK1/IKKε kinases.","target":"125-850-986-196-787","value":2},{"source":"Peptide inhibitors of the Keap1-Nrf2 protein-protein interaction","target":"119-397-162-706-860","value":2},{"source":"Small molecules that bind the Mdm2 RING stabilize and activate p53","target":"133-023-408-974-285","value":2},{"source":"Small molecules that bind the Mdm2 RING stabilize and activate p53","target":"039-847-299-166-952","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"076-641-402-312-988","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"102-485-198-725-150","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"168-829-456-947-639","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"098-813-369-162-741","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"023-180-369-416-862","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"189-473-046-734-005","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"019-633-684-883-828","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"174-501-376-407-235","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"129-062-448-949-030","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"162-916-741-322-002","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"080-026-305-809-343","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"016-698-167-713-829","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"091-325-080-234-401","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"032-206-614-235-635","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"143-271-017-351-983","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"169-312-245-869-778","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"089-818-979-077-305","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"187-517-157-601-239","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"111-583-988-147-450","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"058-026-435-099-506","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"153-651-762-444-327","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"159-766-711-047-610","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"058-933-099-316-100","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"023-452-662-674-373","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"047-432-030-246-04X","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"139-008-712-602-518","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"137-720-748-139-162","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"192-136-893-476-749","value":2},{"source":"Reduction in BACE1 decreases body weight, protects against diet-induced obesity and enhances insulin sensitivity in mice","target":"172-890-893-515-719","value":2},{"source":"AMP-Activated Protein Kinase: A Target for Drugs both Ancient and Modern","target":"104-472-615-006-481","value":2},{"source":"AMP-Activated Protein Kinase: A Target for Drugs both Ancient and Modern","target":"097-374-332-908-898","value":2},{"source":"AMP-Activated Protein Kinase: A Target for Drugs both Ancient and Modern","target":"034-416-075-094-770","value":2},{"source":"AMP-Activated Protein Kinase: A Target for Drugs both Ancient and Modern","target":"127-642-274-375-054","value":2},{"source":"AMP-Activated Protein Kinase: A Target for Drugs both Ancient and Modern","target":"036-708-909-192-156","value":2},{"source":"AMP-Activated Protein Kinase: A Target for Drugs both Ancient and Modern","target":"193-863-590-855-263","value":2},{"source":"AMP-Activated Protein Kinase: A Target for Drugs both Ancient and Modern","target":"150-028-859-997-047","value":2},{"source":"AMP-Activated Protein Kinase: A Target for Drugs both Ancient and Modern","target":"034-416-075-094-770","value":2},{"source":"AMP-Activated Protein Kinase: A Target for Drugs both Ancient and Modern","target":"097-374-332-908-898","value":2},{"source":"AMP-Activated Protein Kinase: A Target for Drugs both Ancient and Modern","target":"104-472-615-006-481","value":2},{"source":"AMP-Activated Protein Kinase: A Target for Drugs both Ancient and Modern","target":"132-394-716-226-832","value":2},{"source":"Changes in the ratio of free NEDD8 to ubiquitin triggers NEDDylation by ubiquitin enzymes","target":"168-483-508-794-377","value":2},{"source":"Fragment-based discovery of 6-substituted isoquinolin-1-amine based ROCK-I inhibitors.","target":"131-238-819-455-784","value":2},{"source":"Fragment-based discovery of 6-substituted isoquinolin-1-amine based ROCK-I inhibitors.","target":"155-402-461-387-483","value":2},{"source":"Fragment-based discovery of 6-substituted isoquinolin-1-amine based ROCK-I inhibitors.","target":"040-389-070-176-191","value":2},{"source":"Fragment-based discovery of 6-substituted isoquinolin-1-amine based ROCK-I inhibitors.","target":"076-478-479-475-120","value":2},{"source":"A multifunctional protease inhibitor to regulate endolysosomal function.","target":"031-461-589-086-771","value":2},{"source":"A multifunctional protease inhibitor to regulate endolysosomal function.","target":"190-195-697-065-907","value":2},{"source":"Design, Synthesis, and Structure−Activity Relationship Exploration of 1-Substituted 4-Aroyl-3-hydroxy-5-phenyl-1H-pyrrol-2(5H)-one Analogues as Inhibitors of the Annexin A2−S100A10 Protein Interaction","target":"034-190-802-321-708","value":2},{"source":"4-benzimidazolyl-3-phenylbutanoic acids as novel PIF-pocket-targeting allosteric inhibitors of protein kinase PKCζ.","target":"130-316-719-983-242","value":2},{"source":"Optimisation of 6-substituted isoquinolin-1-amine based ROCK-I inhibitors","target":"076-478-479-475-120","value":2},{"source":"Optimisation of 6-substituted isoquinolin-1-amine based ROCK-I inhibitors","target":"040-389-070-176-191","value":2},{"source":"Optimisation of 6-substituted isoquinolin-1-amine based ROCK-I inhibitors","target":"036-668-261-470-040","value":2},{"source":"Optimisation of 6-substituted isoquinolin-1-amine based ROCK-I inhibitors","target":"183-767-289-461-131","value":2},{"source":"Design, Synthesis and Biological Evaluation of Novel Inhibitors of Trypanosoma brucei Pteridine Reductase 1","target":"107-556-164-321-147","value":2},{"source":"The inhibitory effect of phospholemman on the sodium pump requires its palmitoylation.","target":"106-594-488-484-12X","value":2},{"source":"SCF/β-TrCP promotes glycogen synthase kinase 3-dependent degradation of the Nrf2 transcription factor in a keap1-independent manner","target":"066-190-726-252-149","value":2},{"source":"Immunosuppressive but Non-LasR-Inducing Analogues of the Pseudomonas aeruginosa Quorum-Sensing Molecule N-(3-Oxododecanoyl)-L-homoserine Lactone","target":"140-900-012-438-14X","value":2},{"source":"Absolute SILAC-Compatible Expression Strain Allows Sumo-2 Copy Number Determination in Clinical Samples","target":"058-438-690-312-096","value":2},{"source":"Absolute SILAC-Compatible Expression Strain Allows Sumo-2 Copy Number Determination in Clinical Samples","target":"004-889-112-130-518","value":2},{"source":"Collateral sensitivity of multidrug-resistant cells to the orphan drug tiopronin.","target":"193-040-307-473-220","value":2},{"source":"Characterization of a selective inhibitor of the Parkinson's disease kinase LRRK2","target":"188-718-220-131-362","value":2},{"source":"Characterization of a selective inhibitor of the Parkinson's disease kinase LRRK2","target":"087-577-350-425-176","value":2},{"source":"Characterization of a selective inhibitor of the Parkinson's disease kinase LRRK2","target":"191-670-060-004-126","value":2},{"source":"Characterization of a selective inhibitor of the Parkinson's disease kinase LRRK2","target":"188-803-921-043-695","value":2},{"source":"Characterization of a selective inhibitor of the Parkinson's disease kinase LRRK2","target":"041-699-843-843-567","value":2},{"source":"Characterization of a selective inhibitor of the Parkinson's disease kinase LRRK2","target":"180-366-233-781-99X","value":2},{"source":"Characterization of a selective inhibitor of the Parkinson's disease kinase LRRK2","target":"156-653-831-632-101","value":2},{"source":"Characterization of a selective inhibitor of the Parkinson's disease kinase LRRK2","target":"051-324-518-696-462","value":2},{"source":"Characterization of a selective inhibitor of the Parkinson's disease kinase LRRK2","target":"161-487-188-181-03X","value":2},{"source":"Characterization of a selective inhibitor of the Parkinson's disease kinase LRRK2","target":"167-851-091-520-257","value":2},{"source":"Characterization of a selective inhibitor of the Parkinson's disease kinase LRRK2","target":"122-739-962-072-793","value":2},{"source":"ATP site-directed inhibitors of protein kinase CK2: an update.","target":"109-274-898-147-341","value":2},{"source":"Identification of Inhibitors of the Leishmania cdc2-Related Protein Kinase CRK3","target":"124-179-501-005-870","value":2},{"source":"Identification of Inhibitors of the Leishmania cdc2-Related Protein Kinase CRK3","target":"008-694-981-426-172","value":2},{"source":"Identification of Inhibitors of the Leishmania cdc2-Related Protein Kinase CRK3","target":"109-611-546-954-080","value":2},{"source":"Polyubiquitin binding to optineurin is required for optimal activation of TANK-binding kinase 1 and production of interferon β.","target":"004-378-254-734-355","value":2},{"source":"Polyubiquitin binding to optineurin is required for optimal activation of TANK-binding kinase 1 and production of interferon β.","target":"133-997-520-845-569","value":2},{"source":"Substrate and Product Analogues as Human O-Glcnac Transferase Inhibitors.","target":"115-381-943-359-61X","value":2},{"source":"Substrate and Product Analogues as Human O-Glcnac Transferase Inhibitors.","target":"022-078-711-389-998","value":2},{"source":"Substrate and Product Analogues as Human O-Glcnac Transferase Inhibitors.","target":"132-854-391-972-865","value":2},{"source":"Substrate and Product Analogues as Human O-Glcnac Transferase Inhibitors.","target":"171-143-110-884-468","value":2},{"source":"The cytoprotective role of the Keap1–Nrf2 pathway","target":"003-946-199-636-328","value":2},{"source":"The cytoprotective role of the Keap1–Nrf2 pathway","target":"009-649-401-227-606","value":2},{"source":"The cytoprotective role of the Keap1–Nrf2 pathway","target":"170-042-571-881-121","value":2},{"source":"The cytoprotective role of the Keap1–Nrf2 pathway","target":"033-301-273-471-462","value":2},{"source":"The cytoprotective role of the Keap1–Nrf2 pathway","target":"040-826-560-477-838","value":2},{"source":"The cytoprotective role of the Keap1–Nrf2 pathway","target":"048-208-660-423-215","value":2},{"source":"The cytoprotective role of the Keap1–Nrf2 pathway","target":"135-293-472-746-415","value":2},{"source":"Design, synthesis and biological evaluation of 6-pyridylmethylaminopurines as CDK inhibitors","target":"153-999-081-812-523","value":2},{"source":"Design, synthesis and biological evaluation of 6-pyridylmethylaminopurines as CDK inhibitors","target":"000-498-778-953-787","value":2},{"source":"Design, synthesis and biological evaluation of 6-pyridylmethylaminopurines as CDK inhibitors","target":"085-065-777-135-758","value":2},{"source":"Analgesic omega-Conotoxins CVIE and CVIF Selectively and Voltage-Dependently Block Recombinant and Native N-Type Calcium Channels (vol 77, pg 139, 2010)","target":"152-366-692-522-975","value":2},{"source":"Analgesic omega-Conotoxins CVIE and CVIF Selectively and Voltage-Dependently Block Recombinant and Native N-Type Calcium Channels (vol 77, pg 139, 2010)","target":"167-869-142-610-582","value":2},{"source":"NF-κB controls energy homeostasis and metabolic adaptation by upregulating mitochondrial respiration","target":"191-676-336-200-724","value":2},{"source":"Development of 18F-fluorinatable dendrons and their application to cancer cell targeting","target":"056-387-403-639-935","value":2},{"source":"The specificities of small molecule inhibitors of the TGFß and BMP pathways","target":"066-841-401-628-941","value":2},{"source":"The specificities of small molecule inhibitors of the TGFß and BMP pathways","target":"069-503-782-573-055","value":2},{"source":"The specificities of small molecule inhibitors of the TGFß and BMP pathways","target":"028-137-796-142-577","value":2},{"source":"Catalysis by the nucleolytic ribozymes","target":"197-678-301-596-236","value":2},{"source":"Catalysis by the nucleolytic ribozymes","target":"147-466-934-435-143","value":2},{"source":"Catalysis by the nucleolytic ribozymes","target":"114-647-123-099-321","value":2},{"source":"Catalysis by the nucleolytic ribozymes","target":"058-829-130-504-901","value":2},{"source":"Catalysis by the nucleolytic ribozymes","target":"169-953-034-717-264","value":2},{"source":"Characterization of GSK2334470, a novel and highly specific inhibitor of PDK1","target":"028-012-588-449-727","value":2},{"source":"Characterization of GSK2334470, a novel and highly specific inhibitor of PDK1","target":"038-839-140-589-623","value":2},{"source":"N1-Benzyl substituted cambinol analogues as isozyme selective inhibitors of the sirtuin family of protein deacetylases","target":"194-924-906-201-593","value":2},{"source":"N1-Benzyl substituted cambinol analogues as isozyme selective inhibitors of the sirtuin family of protein deacetylases","target":"195-611-964-620-410","value":2},{"source":"N1-Benzyl substituted cambinol analogues as isozyme selective inhibitors of the sirtuin family of protein deacetylases","target":"025-014-524-538-421","value":2},{"source":"N1-Benzyl substituted cambinol analogues as isozyme selective inhibitors of the sirtuin family of protein deacetylases","target":"025-014-524-538-421","value":2},{"source":"AMP-activated protein kinase—an energy sensor that regulates all aspects of cell function","target":"120-667-268-642-909","value":2},{"source":"AMP-activated protein kinase—an energy sensor that regulates all aspects of cell function","target":"163-117-320-460-138","value":2},{"source":"AMP-activated protein kinase—an energy sensor that regulates all aspects of cell function","target":"191-290-593-697-506","value":2},{"source":"AMP-activated protein kinase—an energy sensor that regulates all aspects of cell function","target":"118-339-847-530-982","value":2},{"source":"AMP-activated protein kinase—an energy sensor that regulates all aspects of cell function","target":"073-318-370-112-877","value":2},{"source":"AMP-activated protein kinase—an energy sensor that regulates all aspects of cell function","target":"113-828-920-381-078","value":2},{"source":"AMP-activated protein kinase—an energy sensor that regulates all aspects of cell function","target":"048-983-957-537-421","value":2},{"source":"Optimisation of the Anti-Trypanosoma brucei Activity of the Opioid Agonist U50488","target":"073-531-962-083-670","value":2}]} diff --git a/docs/static/data/examples/graph/greenhouse.json b/docs/static/data/examples/graph/greenhouse.json new file mode 100644 index 000000000..51027ee68 --- /dev/null +++ b/docs/static/data/examples/graph/greenhouse.json @@ -0,0 +1,131 @@ +{ + "nodes": [ + { "name": "Energy" }, + { "name": "Industrial Processes" }, + { "name": "Electricity and heat" }, + { "name": "Industry" }, + { "name": "Land Use Change" }, + { "name": "Agriculture" }, + { "name": "Waste" }, + { "name": "Transportation" }, + { "name": "Other Fuel Combustion" }, + { "name": "Fugitive Emissions" }, + { "name": "Road" }, + { "name": "Air" }, + { "name": "Rail - Ship and Other Transport" }, + { "name": "Residential Buildings" }, + { "name": "Commercial Buildings" }, + { "name": "Unallocated Fuel Combustion" }, + { "name": "Iron and Steel" }, + { "name": "Aluminium Non-Ferrous Metals" }, + { "name": "Machinery" }, + { "name": "Pulp - Paper and Printing" }, + { "name": "Food and Tobacco" }, + { "name": "Chemicals" }, + { "name": "Cement" }, + { "name": "Other Industry" }, + { "name": "T and D Losses" }, + { "name": "Coal Mining" }, + { "name": "Oil and Gas Processing" }, + { "name": "Deforestation" }, + { "name": "Harvest / Management" }, + { "name": "Agricultural Energy Use" }, + { "name": "Agriculture Soils" }, + { "name": "Livestock and Manure" }, + { "name": "Rice Cultivation" }, + { "name": "Other Agriculture" }, + { "name": "Landfills" }, + { "name": "Waste water - Other Waste" }, + { "name": "Carbon Dioxide" }, + { "name": "HFCs - PFCs" }, + { "name": "Methane" }, + { "name": "Nitrous Oxide" } + ], + "links": [ + { "source": "Agricultural Energy Use", "target": "Carbon Dioxide", "value": "1.4" }, + { "source": "Agriculture", "target": "Agriculture Soils", "value": "5.2" }, + { "source": "Agriculture", "target": "Livestock and Manure", "value": "5.4" }, + { "source": "Agriculture", "target": "Other Agriculture", "value": "1.7" }, + { "source": "Agriculture", "target": "Rice Cultivation", "value": "1.5" }, + { "source": "Agriculture Soils", "target": "Nitrous Oxide", "value": "5.2" }, + { "source": "Air", "target": "Carbon Dioxide", "value": "1.7" }, + { "source": "Aluminium Non-Ferrous Metals", "target": "Carbon Dioxide", "value": "1.0" }, + { "source": "Aluminium Non-Ferrous Metals", "target": "HFCs - PFCs", "value": "0.2" }, + { "source": "Cement", "target": "Carbon Dioxide", "value": "5.0" }, + { "source": "Chemicals", "target": "Carbon Dioxide", "value": "3.4" }, + { "source": "Chemicals", "target": "HFCs - PFCs", "value": "0.5" }, + { "source": "Chemicals", "target": "Nitrous Oxide", "value": "0.2" }, + { "source": "Coal Mining", "target": "Carbon Dioxide", "value": "0.1" }, + { "source": "Coal Mining", "target": "Methane", "value": "1.2" }, + { "source": "Commercial Buildings", "target": "Carbon Dioxide", "value": "6.3" }, + { "source": "Deforestation", "target": "Carbon Dioxide", "value": "10.9" }, + { "source": "Electricity and heat", "target": "Agricultural Energy Use", "value": "0.4" }, + { "source": "Electricity and heat", "target": "Aluminium Non-Ferrous Metals", "value": "0.4" }, + { "source": "Electricity and heat", "target": "Cement", "value": "0.3" }, + { "source": "Electricity and heat", "target": "Chemicals", "value": "1.3" }, + { "source": "Electricity and heat", "target": "Commercial Buildings", "value": "5.0" }, + { "source": "Electricity and heat", "target": "Food and Tobacco", "value": "0.5" }, + { "source": "Electricity and heat", "target": "Iron and Steel", "value": "1.0" }, + { "source": "Electricity and heat", "target": "Machinery", "value": "1.0" }, + { "source": "Electricity and heat", "target": "Oil and Gas Processing", "value": "0.4" }, + { "source": "Electricity and heat", "target": "Other Industry", "value": "2.7" }, + { "source": "Electricity and heat", "target": "Pulp - Paper and Printing", "value": "0.6" }, + { "source": "Electricity and heat", "target": "Residential Buildings", "value": "5.2" }, + { "source": "Electricity and heat", "target": "T and D Losses", "value": "2.2" }, + { "source": "Electricity and heat", "target": "Unallocated Fuel Combustion", "value": "2.0" }, + { "source": "Energy", "target": "Electricity and heat", "value": "24.9" }, + { "source": "Energy", "target": "Fugitive Emissions", "value": "4.0" }, + { "source": "Energy", "target": "Industry", "value": "14.7" }, + { "source": "Energy", "target": "Other Fuel Combustion", "value": "8.6" }, + { "source": "Energy", "target": "Transportation", "value": "14.3" }, + { "source": "Food and Tobacco", "target": "Carbon Dioxide", "value": "1.0" }, + { "source": "Fugitive Emissions", "target": "Coal Mining", "value": "1.3" }, + { "source": "Fugitive Emissions", "target": "Oil and Gas Processing", "value": "3.2" }, + { "source": "Harvest / Management", "target": "Carbon Dioxide", "value": "1.3" }, + { "source": "Industrial Processes", "target": "Aluminium Non-Ferrous Metals", "value": "0.4" }, + { "source": "Industrial Processes", "target": "Cement", "value": "2.8" }, + { "source": "Industrial Processes", "target": "Chemicals", "value": "1.4" }, + { "source": "Industrial Processes", "target": "Other Industry", "value": "0.5" }, + { "source": "Industry", "target": "Aluminium Non-Ferrous Metals", "value": "0.4" }, + { "source": "Industry", "target": "Cement", "value": "1.9" }, + { "source": "Industry", "target": "Chemicals", "value": "1.4" }, + { "source": "Industry", "target": "Food and Tobacco", "value": "0.5" }, + { "source": "Industry", "target": "Iron and Steel", "value": "3.0" }, + { "source": "Industry", "target": "Oil and Gas Processing", "value": "2.8" }, + { "source": "Industry", "target": "Other Industry", "value": "3.8" }, + { "source": "Industry", "target": "Pulp - Paper and Printing", "value": "0.5" }, + { "source": "Iron and Steel", "target": "Carbon Dioxide", "value": "4.0" }, + { "source": "Land Use Change", "target": "Deforestation", "value": "10.9" }, + { "source": "Land Use Change", "target": "Harvest / Management", "value": "1.3" }, + { "source": "Landfills", "target": "Methane", "value": "1.7" }, + { "source": "Livestock and Manure", "target": "Methane", "value": "5.1" }, + { "source": "Livestock and Manure", "target": "Nitrous Oxide", "value": "0.3" }, + { "source": "Machinery", "target": "Carbon Dioxide", "value": "1.0" }, + { "source": "Oil and Gas Processing", "target": "Carbon Dioxide", "value": "3.6" }, + { "source": "Oil and Gas Processing", "target": "Methane", "value": "2.8" }, + { "source": "Other Agriculture", "target": "Methane", "value": "1.4" }, + { "source": "Other Agriculture", "target": "Nitrous Oxide", "value": "0.3" }, + { "source": "Other Fuel Combustion", "target": "Agricultural Energy Use", "value": "1.0" }, + { "source": "Other Fuel Combustion", "target": "Commercial Buildings", "value": "1.3" }, + { "source": "Other Fuel Combustion", "target": "Residential Buildings", "value": "5.0" }, + { "source": "Other Fuel Combustion", "target": "Unallocated Fuel Combustion", "value": "1.8" }, + { "source": "Other Industry", "target": "Carbon Dioxide", "value": "6.6" }, + { "source": "Other Industry", "target": "HFCs - PFCs", "value": "0.4" }, + { "source": "Pulp - Paper and Printing", "target": "Carbon Dioxide", "value": "1.1" }, + { "source": "Rail - Ship and Other Transport", "target": "Carbon Dioxide", "value": "2.5" }, + { "source": "Residential Buildings", "target": "Carbon Dioxide", "value": "10.2" }, + { "source": "Rice Cultivation", "target": "Methane", "value": "1.5" }, + { "source": "Road", "target": "Carbon Dioxide", "value": "10.5" }, + { "source": "T and D Losses", "target": "Carbon Dioxide", "value": "2.2" }, + { "source": "Transportation", "target": "Air", "value": "1.7" }, + { "source": "Transportation", "target": "Rail - Ship and Other Transport", "value": "2.5" }, + { "source": "Transportation", "target": "Road", "value": "10.5" }, + { "source": "Unallocated Fuel Combustion", "target": "Carbon Dioxide", "value": "3.0" }, + { "source": "Unallocated Fuel Combustion", "target": "Methane", "value": "0.4" }, + { "source": "Unallocated Fuel Combustion", "target": "Nitrous Oxide", "value": "0.4" }, + { "source": "Waste", "target": "Landfills", "value": "1.7" }, + { "source": "Waste", "target": "Waste water - Other Waste", "value": "1.5" }, + { "source": "Waste water - Other Waste", "target": "Methane", "value": "1.2" }, + { "source": "Waste water - Other Waste", "target": "Nitrous Oxide", "value": "0.3" } + ] +} diff --git a/docs/static/data/examples/graph/miserables.json b/docs/static/data/examples/graph/miserables.json new file mode 100644 index 000000000..7db92850f --- /dev/null +++ b/docs/static/data/examples/graph/miserables.json @@ -0,0 +1,337 @@ +{ + "nodes": [ + {"id": "Myriel", "group": 1}, + {"id": "Napoleon", "group": 1}, + {"id": "Mlle.Baptistine", "group": 1}, + {"id": "Mme.Magloire", "group": 1}, + {"id": "CountessdeLo", "group": 1}, + {"id": "Geborand", "group": 1}, + {"id": "Champtercier", "group": 1}, + {"id": "Cravatte", "group": 1}, + {"id": "Count", "group": 1}, + {"id": "OldMan", "group": 1}, + {"id": "Labarre", "group": 2}, + {"id": "Valjean", "group": 2}, + {"id": "Marguerite", "group": 3}, + {"id": "Mme.deR", "group": 2}, + {"id": "Isabeau", "group": 2}, + {"id": "Gervais", "group": 2}, + {"id": "Tholomyes", "group": 3}, + {"id": "Listolier", "group": 3}, + {"id": "Fameuil", "group": 3}, + {"id": "Blacheville", "group": 3}, + {"id": "Favourite", "group": 3}, + {"id": "Dahlia", "group": 3}, + {"id": "Zephine", "group": 3}, + {"id": "Fantine", "group": 3}, + {"id": "Mme.Thenardier", "group": 4}, + {"id": "Thenardier", "group": 4}, + {"id": "Cosette", "group": 5}, + {"id": "Javert", "group": 4}, + {"id": "Fauchelevent", "group": 0}, + {"id": "Bamatabois", "group": 2}, + {"id": "Perpetue", "group": 3}, + {"id": "Simplice", "group": 2}, + {"id": "Scaufflaire", "group": 2}, + {"id": "Woman1", "group": 2}, + {"id": "Judge", "group": 2}, + {"id": "Champmathieu", "group": 2}, + {"id": "Brevet", "group": 2}, + {"id": "Chenildieu", "group": 2}, + {"id": "Cochepaille", "group": 2}, + {"id": "Pontmercy", "group": 4}, + {"id": "Boulatruelle", "group": 6}, + {"id": "Eponine", "group": 4}, + {"id": "Anzelma", "group": 4}, + {"id": "Woman2", "group": 5}, + {"id": "MotherInnocent", "group": 0}, + {"id": "Gribier", "group": 0}, + {"id": "Jondrette", "group": 7}, + {"id": "Mme.Burgon", "group": 7}, + {"id": "Gavroche", "group": 8}, + {"id": "Gillenormand", "group": 5}, + {"id": "Magnon", "group": 5}, + {"id": "Mlle.Gillenormand", "group": 5}, + {"id": "Mme.Pontmercy", "group": 5}, + {"id": "Mlle.Vaubois", "group": 5}, + {"id": "Lt.Gillenormand", "group": 5}, + {"id": "Marius", "group": 8}, + {"id": "BaronessT", "group": 5}, + {"id": "Mabeuf", "group": 8}, + {"id": "Enjolras", "group": 8}, + {"id": "Combeferre", "group": 8}, + {"id": "Prouvaire", "group": 8}, + {"id": "Feuilly", "group": 8}, + {"id": "Courfeyrac", "group": 8}, + {"id": "Bahorel", "group": 8}, + {"id": "Bossuet", "group": 8}, + {"id": "Joly", "group": 8}, + {"id": "Grantaire", "group": 8}, + {"id": "MotherPlutarch", "group": 9}, + {"id": "Gueulemer", "group": 4}, + {"id": "Babet", "group": 4}, + {"id": "Claquesous", "group": 4}, + {"id": "Montparnasse", "group": 4}, + {"id": "Toussaint", "group": 5}, + {"id": "Child1", "group": 10}, + {"id": "Child2", "group": 10}, + {"id": "Brujon", "group": 4}, + {"id": "Mme.Hucheloup", "group": 8} + ], + "links": [ + {"source": "Napoleon", "target": "Myriel", "value": 1}, + {"source": "Mlle.Baptistine", "target": "Myriel", "value": 8}, + {"source": "Mme.Magloire", "target": "Myriel", "value": 10}, + {"source": "Mme.Magloire", "target": "Mlle.Baptistine", "value": 6}, + {"source": "CountessdeLo", "target": "Myriel", "value": 1}, + {"source": "Geborand", "target": "Myriel", "value": 1}, + {"source": "Champtercier", "target": "Myriel", "value": 1}, + {"source": "Cravatte", "target": "Myriel", "value": 1}, + {"source": "Count", "target": "Myriel", "value": 2}, + {"source": "OldMan", "target": "Myriel", "value": 1}, + {"source": "Valjean", "target": "Labarre", "value": 1}, + {"source": "Valjean", "target": "Mme.Magloire", "value": 3}, + {"source": "Valjean", "target": "Mlle.Baptistine", "value": 3}, + {"source": "Valjean", "target": "Myriel", "value": 5}, + {"source": "Marguerite", "target": "Valjean", "value": 1}, + {"source": "Mme.deR", "target": "Valjean", "value": 1}, + {"source": "Isabeau", "target": "Valjean", "value": 1}, + {"source": "Gervais", "target": "Valjean", "value": 1}, + {"source": "Listolier", "target": "Tholomyes", "value": 4}, + {"source": "Fameuil", "target": "Tholomyes", "value": 4}, + {"source": "Fameuil", "target": "Listolier", "value": 4}, + {"source": "Blacheville", "target": "Tholomyes", "value": 4}, + {"source": "Blacheville", "target": "Listolier", "value": 4}, + {"source": "Blacheville", "target": "Fameuil", "value": 4}, + {"source": "Favourite", "target": "Tholomyes", "value": 3}, + {"source": "Favourite", "target": "Listolier", "value": 3}, + {"source": "Favourite", "target": "Fameuil", "value": 3}, + {"source": "Favourite", "target": "Blacheville", "value": 4}, + {"source": "Dahlia", "target": "Tholomyes", "value": 3}, + {"source": "Dahlia", "target": "Listolier", "value": 3}, + {"source": "Dahlia", "target": "Fameuil", "value": 3}, + {"source": "Dahlia", "target": "Blacheville", "value": 3}, + {"source": "Dahlia", "target": "Favourite", "value": 5}, + {"source": "Zephine", "target": "Tholomyes", "value": 3}, + {"source": "Zephine", "target": "Listolier", "value": 3}, + {"source": "Zephine", "target": "Fameuil", "value": 3}, + {"source": "Zephine", "target": "Blacheville", "value": 3}, + {"source": "Zephine", "target": "Favourite", "value": 4}, + {"source": "Zephine", "target": "Dahlia", "value": 4}, + {"source": "Fantine", "target": "Tholomyes", "value": 3}, + {"source": "Fantine", "target": "Listolier", "value": 3}, + {"source": "Fantine", "target": "Fameuil", "value": 3}, + {"source": "Fantine", "target": "Blacheville", "value": 3}, + {"source": "Fantine", "target": "Favourite", "value": 4}, + {"source": "Fantine", "target": "Dahlia", "value": 4}, + {"source": "Fantine", "target": "Zephine", "value": 4}, + {"source": "Fantine", "target": "Marguerite", "value": 2}, + {"source": "Fantine", "target": "Valjean", "value": 9}, + {"source": "Mme.Thenardier", "target": "Fantine", "value": 2}, + {"source": "Mme.Thenardier", "target": "Valjean", "value": 7}, + {"source": "Thenardier", "target": "Mme.Thenardier", "value": 13}, + {"source": "Thenardier", "target": "Fantine", "value": 1}, + {"source": "Thenardier", "target": "Valjean", "value": 12}, + {"source": "Cosette", "target": "Mme.Thenardier", "value": 4}, + {"source": "Cosette", "target": "Valjean", "value": 31}, + {"source": "Cosette", "target": "Tholomyes", "value": 1}, + {"source": "Cosette", "target": "Thenardier", "value": 1}, + {"source": "Javert", "target": "Valjean", "value": 17}, + {"source": "Javert", "target": "Fantine", "value": 5}, + {"source": "Javert", "target": "Thenardier", "value": 5}, + {"source": "Javert", "target": "Mme.Thenardier", "value": 1}, + {"source": "Javert", "target": "Cosette", "value": 1}, + {"source": "Fauchelevent", "target": "Valjean", "value": 8}, + {"source": "Fauchelevent", "target": "Javert", "value": 1}, + {"source": "Bamatabois", "target": "Fantine", "value": 1}, + {"source": "Bamatabois", "target": "Javert", "value": 1}, + {"source": "Bamatabois", "target": "Valjean", "value": 2}, + {"source": "Perpetue", "target": "Fantine", "value": 1}, + {"source": "Simplice", "target": "Perpetue", "value": 2}, + {"source": "Simplice", "target": "Valjean", "value": 3}, + {"source": "Simplice", "target": "Fantine", "value": 2}, + {"source": "Simplice", "target": "Javert", "value": 1}, + {"source": "Scaufflaire", "target": "Valjean", "value": 1}, + {"source": "Woman1", "target": "Valjean", "value": 2}, + {"source": "Woman1", "target": "Javert", "value": 1}, + {"source": "Judge", "target": "Valjean", "value": 3}, + {"source": "Judge", "target": "Bamatabois", "value": 2}, + {"source": "Champmathieu", "target": "Valjean", "value": 3}, + {"source": "Champmathieu", "target": "Judge", "value": 3}, + {"source": "Champmathieu", "target": "Bamatabois", "value": 2}, + {"source": "Brevet", "target": "Judge", "value": 2}, + {"source": "Brevet", "target": "Champmathieu", "value": 2}, + {"source": "Brevet", "target": "Valjean", "value": 2}, + {"source": "Brevet", "target": "Bamatabois", "value": 1}, + {"source": "Chenildieu", "target": "Judge", "value": 2}, + {"source": "Chenildieu", "target": "Champmathieu", "value": 2}, + {"source": "Chenildieu", "target": "Brevet", "value": 2}, + {"source": "Chenildieu", "target": "Valjean", "value": 2}, + {"source": "Chenildieu", "target": "Bamatabois", "value": 1}, + {"source": "Cochepaille", "target": "Judge", "value": 2}, + {"source": "Cochepaille", "target": "Champmathieu", "value": 2}, + {"source": "Cochepaille", "target": "Brevet", "value": 2}, + {"source": "Cochepaille", "target": "Chenildieu", "value": 2}, + {"source": "Cochepaille", "target": "Valjean", "value": 2}, + {"source": "Cochepaille", "target": "Bamatabois", "value": 1}, + {"source": "Pontmercy", "target": "Thenardier", "value": 1}, + {"source": "Boulatruelle", "target": "Thenardier", "value": 1}, + {"source": "Eponine", "target": "Mme.Thenardier", "value": 2}, + {"source": "Eponine", "target": "Thenardier", "value": 3}, + {"source": "Anzelma", "target": "Eponine", "value": 2}, + {"source": "Anzelma", "target": "Thenardier", "value": 2}, + {"source": "Anzelma", "target": "Mme.Thenardier", "value": 1}, + {"source": "Woman2", "target": "Valjean", "value": 3}, + {"source": "Woman2", "target": "Cosette", "value": 1}, + {"source": "Woman2", "target": "Javert", "value": 1}, + {"source": "MotherInnocent", "target": "Fauchelevent", "value": 3}, + {"source": "MotherInnocent", "target": "Valjean", "value": 1}, + {"source": "Gribier", "target": "Fauchelevent", "value": 2}, + {"source": "Mme.Burgon", "target": "Jondrette", "value": 1}, + {"source": "Gavroche", "target": "Mme.Burgon", "value": 2}, + {"source": "Gavroche", "target": "Thenardier", "value": 1}, + {"source": "Gavroche", "target": "Javert", "value": 1}, + {"source": "Gavroche", "target": "Valjean", "value": 1}, + {"source": "Gillenormand", "target": "Cosette", "value": 3}, + {"source": "Gillenormand", "target": "Valjean", "value": 2}, + {"source": "Magnon", "target": "Gillenormand", "value": 1}, + {"source": "Magnon", "target": "Mme.Thenardier", "value": 1}, + {"source": "Mlle.Gillenormand", "target": "Gillenormand", "value": 9}, + {"source": "Mlle.Gillenormand", "target": "Cosette", "value": 2}, + {"source": "Mlle.Gillenormand", "target": "Valjean", "value": 2}, + {"source": "Mme.Pontmercy", "target": "Mlle.Gillenormand", "value": 1}, + {"source": "Mme.Pontmercy", "target": "Pontmercy", "value": 1}, + {"source": "Mlle.Vaubois", "target": "Mlle.Gillenormand", "value": 1}, + {"source": "Lt.Gillenormand", "target": "Mlle.Gillenormand", "value": 2}, + {"source": "Lt.Gillenormand", "target": "Gillenormand", "value": 1}, + {"source": "Lt.Gillenormand", "target": "Cosette", "value": 1}, + {"source": "Marius", "target": "Mlle.Gillenormand", "value": 6}, + {"source": "Marius", "target": "Gillenormand", "value": 12}, + {"source": "Marius", "target": "Pontmercy", "value": 1}, + {"source": "Marius", "target": "Lt.Gillenormand", "value": 1}, + {"source": "Marius", "target": "Cosette", "value": 21}, + {"source": "Marius", "target": "Valjean", "value": 19}, + {"source": "Marius", "target": "Tholomyes", "value": 1}, + {"source": "Marius", "target": "Thenardier", "value": 2}, + {"source": "Marius", "target": "Eponine", "value": 5}, + {"source": "Marius", "target": "Gavroche", "value": 4}, + {"source": "BaronessT", "target": "Gillenormand", "value": 1}, + {"source": "BaronessT", "target": "Marius", "value": 1}, + {"source": "Mabeuf", "target": "Marius", "value": 1}, + {"source": "Mabeuf", "target": "Eponine", "value": 1}, + {"source": "Mabeuf", "target": "Gavroche", "value": 1}, + {"source": "Enjolras", "target": "Marius", "value": 7}, + {"source": "Enjolras", "target": "Gavroche", "value": 7}, + {"source": "Enjolras", "target": "Javert", "value": 6}, + {"source": "Enjolras", "target": "Mabeuf", "value": 1}, + {"source": "Enjolras", "target": "Valjean", "value": 4}, + {"source": "Combeferre", "target": "Enjolras", "value": 15}, + {"source": "Combeferre", "target": "Marius", "value": 5}, + {"source": "Combeferre", "target": "Gavroche", "value": 6}, + {"source": "Combeferre", "target": "Mabeuf", "value": 2}, + {"source": "Prouvaire", "target": "Gavroche", "value": 1}, + {"source": "Prouvaire", "target": "Enjolras", "value": 4}, + {"source": "Prouvaire", "target": "Combeferre", "value": 2}, + {"source": "Feuilly", "target": "Gavroche", "value": 2}, + {"source": "Feuilly", "target": "Enjolras", "value": 6}, + {"source": "Feuilly", "target": "Prouvaire", "value": 2}, + {"source": "Feuilly", "target": "Combeferre", "value": 5}, + {"source": "Feuilly", "target": "Mabeuf", "value": 1}, + {"source": "Feuilly", "target": "Marius", "value": 1}, + {"source": "Courfeyrac", "target": "Marius", "value": 9}, + {"source": "Courfeyrac", "target": "Enjolras", "value": 17}, + {"source": "Courfeyrac", "target": "Combeferre", "value": 13}, + {"source": "Courfeyrac", "target": "Gavroche", "value": 7}, + {"source": "Courfeyrac", "target": "Mabeuf", "value": 2}, + {"source": "Courfeyrac", "target": "Eponine", "value": 1}, + {"source": "Courfeyrac", "target": "Feuilly", "value": 6}, + {"source": "Courfeyrac", "target": "Prouvaire", "value": 3}, + {"source": "Bahorel", "target": "Combeferre", "value": 5}, + {"source": "Bahorel", "target": "Gavroche", "value": 5}, + {"source": "Bahorel", "target": "Courfeyrac", "value": 6}, + {"source": "Bahorel", "target": "Mabeuf", "value": 2}, + {"source": "Bahorel", "target": "Enjolras", "value": 4}, + {"source": "Bahorel", "target": "Feuilly", "value": 3}, + {"source": "Bahorel", "target": "Prouvaire", "value": 2}, + {"source": "Bahorel", "target": "Marius", "value": 1}, + {"source": "Bossuet", "target": "Marius", "value": 5}, + {"source": "Bossuet", "target": "Courfeyrac", "value": 12}, + {"source": "Bossuet", "target": "Gavroche", "value": 5}, + {"source": "Bossuet", "target": "Bahorel", "value": 4}, + {"source": "Bossuet", "target": "Enjolras", "value": 10}, + {"source": "Bossuet", "target": "Feuilly", "value": 6}, + {"source": "Bossuet", "target": "Prouvaire", "value": 2}, + {"source": "Bossuet", "target": "Combeferre", "value": 9}, + {"source": "Bossuet", "target": "Mabeuf", "value": 1}, + {"source": "Bossuet", "target": "Valjean", "value": 1}, + {"source": "Joly", "target": "Bahorel", "value": 5}, + {"source": "Joly", "target": "Bossuet", "value": 7}, + {"source": "Joly", "target": "Gavroche", "value": 3}, + {"source": "Joly", "target": "Courfeyrac", "value": 5}, + {"source": "Joly", "target": "Enjolras", "value": 5}, + {"source": "Joly", "target": "Feuilly", "value": 5}, + {"source": "Joly", "target": "Prouvaire", "value": 2}, + {"source": "Joly", "target": "Combeferre", "value": 5}, + {"source": "Joly", "target": "Mabeuf", "value": 1}, + {"source": "Joly", "target": "Marius", "value": 2}, + {"source": "Grantaire", "target": "Bossuet", "value": 3}, + {"source": "Grantaire", "target": "Enjolras", "value": 3}, + {"source": "Grantaire", "target": "Combeferre", "value": 1}, + {"source": "Grantaire", "target": "Courfeyrac", "value": 2}, + {"source": "Grantaire", "target": "Joly", "value": 2}, + {"source": "Grantaire", "target": "Gavroche", "value": 1}, + {"source": "Grantaire", "target": "Bahorel", "value": 1}, + {"source": "Grantaire", "target": "Feuilly", "value": 1}, + {"source": "Grantaire", "target": "Prouvaire", "value": 1}, + {"source": "MotherPlutarch", "target": "Mabeuf", "value": 3}, + {"source": "Gueulemer", "target": "Thenardier", "value": 5}, + {"source": "Gueulemer", "target": "Valjean", "value": 1}, + {"source": "Gueulemer", "target": "Mme.Thenardier", "value": 1}, + {"source": "Gueulemer", "target": "Javert", "value": 1}, + {"source": "Gueulemer", "target": "Gavroche", "value": 1}, + {"source": "Gueulemer", "target": "Eponine", "value": 1}, + {"source": "Babet", "target": "Thenardier", "value": 6}, + {"source": "Babet", "target": "Gueulemer", "value": 6}, + {"source": "Babet", "target": "Valjean", "value": 1}, + {"source": "Babet", "target": "Mme.Thenardier", "value": 1}, + {"source": "Babet", "target": "Javert", "value": 2}, + {"source": "Babet", "target": "Gavroche", "value": 1}, + {"source": "Babet", "target": "Eponine", "value": 1}, + {"source": "Claquesous", "target": "Thenardier", "value": 4}, + {"source": "Claquesous", "target": "Babet", "value": 4}, + {"source": "Claquesous", "target": "Gueulemer", "value": 4}, + {"source": "Claquesous", "target": "Valjean", "value": 1}, + {"source": "Claquesous", "target": "Mme.Thenardier", "value": 1}, + {"source": "Claquesous", "target": "Javert", "value": 1}, + {"source": "Claquesous", "target": "Eponine", "value": 1}, + {"source": "Claquesous", "target": "Enjolras", "value": 1}, + {"source": "Montparnasse", "target": "Javert", "value": 1}, + {"source": "Montparnasse", "target": "Babet", "value": 2}, + {"source": "Montparnasse", "target": "Gueulemer", "value": 2}, + {"source": "Montparnasse", "target": "Claquesous", "value": 2}, + {"source": "Montparnasse", "target": "Valjean", "value": 1}, + {"source": "Montparnasse", "target": "Gavroche", "value": 1}, + {"source": "Montparnasse", "target": "Eponine", "value": 1}, + {"source": "Montparnasse", "target": "Thenardier", "value": 1}, + {"source": "Toussaint", "target": "Cosette", "value": 2}, + {"source": "Toussaint", "target": "Javert", "value": 1}, + {"source": "Toussaint", "target": "Valjean", "value": 1}, + {"source": "Child1", "target": "Gavroche", "value": 2}, + {"source": "Child2", "target": "Gavroche", "value": 2}, + {"source": "Child2", "target": "Child1", "value": 3}, + {"source": "Brujon", "target": "Babet", "value": 3}, + {"source": "Brujon", "target": "Gueulemer", "value": 3}, + {"source": "Brujon", "target": "Thenardier", "value": 3}, + {"source": "Brujon", "target": "Gavroche", "value": 1}, + {"source": "Brujon", "target": "Eponine", "value": 1}, + {"source": "Brujon", "target": "Claquesous", "value": 1}, + {"source": "Brujon", "target": "Montparnasse", "value": 1}, + {"source": "Mme.Hucheloup", "target": "Bossuet", "value": 1}, + {"source": "Mme.Hucheloup", "target": "Joly", "value": 1}, + {"source": "Mme.Hucheloup", "target": "Grantaire", "value": 1}, + {"source": "Mme.Hucheloup", "target": "Bahorel", "value": 1}, + {"source": "Mme.Hucheloup", "target": "Courfeyrac", "value": 1}, + {"source": "Mme.Hucheloup", "target": "Gavroche", "value": 1}, + {"source": "Mme.Hucheloup", "target": "Enjolras", "value": 1} + ] +} diff --git a/docs/static/data/examples/graph/simple.json b/docs/static/data/examples/graph/simple.json new file mode 100644 index 000000000..452635b64 --- /dev/null +++ b/docs/static/data/examples/graph/simple.json @@ -0,0 +1,31 @@ +{ + "nodes": [ + { "id": "A1" }, + { "id": "A2" }, + { "id": "A3" }, + { "id": "B1" }, + { "id": "B2" }, + { "id": "B3" }, + { "id": "B4" }, + { "id": "C1" }, + { "id": "C2" }, + { "id": "C3" }, + { "id": "D1" }, + { "id": "D2" } + ], + "links": [ + { "source": "A1", "target": "B1", "value": 27 }, + { "source": "A1", "target": "B2", "value": 9 }, + { "source": "A2", "target": "B2", "value": 5 }, + { "source": "A2", "target": "B3", "value": 11 }, + { "source": "A3", "target": "B2", "value": 12 }, + { "source": "A3", "target": "B4", "value": 7 }, + { "source": "B1", "target": "C1", "value": 13 }, + { "source": "B1", "target": "C2", "value": 10 }, + { "source": "B4", "target": "C2", "value": 5 }, + { "source": "B4", "target": "C3", "value": 2 }, + { "source": "B1", "target": "D1", "value": 4 }, + { "source": "C3", "target": "D1", "value": 1 }, + { "source": "C3", "target": "D2", "value": 1 } + ] +} diff --git a/docs/static/data/examples/graph/software-user-flow.json b/docs/static/data/examples/graph/software-user-flow.json new file mode 100644 index 000000000..bbf542a22 --- /dev/null +++ b/docs/static/data/examples/graph/software-user-flow.json @@ -0,0 +1,21 @@ +{ + "nodes": [ + { "id": "uninstalled" }, + { "id": "installed" }, + { "id": "main screen" }, + { "id": "subscriptions" }, + { "id": "confirmation" }, + { "id": "subcribed" } + ], + "links": [ + { "source": "uninstalled", "target": "installed", "label": "install" }, + { "source": "installed", "target": "main screen", "label": "launch" }, + { "source": "main screen", "target": "main screen", "label": "click" }, + { "source": "main screen", "target": "subscriptions", "label": "subscribe" }, + { "source": "subscriptions", "target": "confirmation", "label": "choose\nplan" }, + { "source": "subscriptions", "target": "main screen", "label": "click" }, + { "source": "confirmation", "target": "subcribed", "label": "confirm" }, + { "source": "confirmation", "target": "subscriptions", "label": "cancel" }, + { "source": "subcribed", "target": "main screen", "label": "click" } + ] +} diff --git a/docs/static/data/examples/graph/tcp-state.json b/docs/static/data/examples/graph/tcp-state.json new file mode 100644 index 000000000..ae5d3f2f5 --- /dev/null +++ b/docs/static/data/examples/graph/tcp-state.json @@ -0,0 +1,35 @@ +{ + "nodes": [ + { "id": "CLOSED" }, + { "id": "LISTEN" }, + { "id": "SYN RCVD" }, + { "id": "SYN SENT" }, + { "id": "ESTAB" }, + { "id": "FINWAIT-1" }, + { "id": "CLOSE WAIT" }, + { "id": "FINWAIT-2" }, + { "id": "CLOSING" }, + { "id": "LAST-ACK" }, + { "id": "TIME WAIT" } + ], + "links": [ + { "source": "CLOSED", "target": "LISTEN", "label": "open" }, + { "source": "LISTEN", "target": "SYN RCVD", "label": "rcv SYN" }, + { "source": "LISTEN", "target": "SYN SENT", "label": "send" }, + { "source": "LISTEN", "target": "CLOSED", "label": "close" }, + { "source": "SYN RCVD", "target": "FINWAIT-1", "label": "close" }, + { "source": "SYN RCVD", "target": "ESTAB", "label": "rcv ACK of SYN" }, + { "source": "SYN SENT", "target": "SYN RCVD", "label": "rcv SYN" }, + { "source": "SYN SENT", "target": "ESTAB", "label": "rcv SYN, ACK" }, + { "source": "SYN SENT", "target": "CLOSED", "label": "close" }, + { "source": "ESTAB", "target": "FINWAIT-1", "label": "close" }, + { "source": "ESTAB", "target": "CLOSE WAIT", "label": "rcv FIN" }, + { "source": "FINWAIT-1", "target": "FINWAIT-2", "label": "rcv ACK of FIN" }, + { "source": "FINWAIT-1", "target": "CLOSING", "label": "rcv FIN" }, + { "source": "CLOSE WAIT", "target": "LAST-ACK", "label": "close" }, + { "source": "FINWAIT-2", "target": "TIME WAIT", "label": "rcv FIN" }, + { "source": "CLOSING", "target": "TIME WAIT", "label": "rcv ACK of FIN" }, + { "source": "LAST-ACK", "target": "CLOSED", "label": "rcv ACK of FIN" }, + { "source": "TIME WAIT", "target": "CLOSED", "label": "timeout=2MSL" } + ] +} diff --git a/docs/static/data/examples/graph/trade-volume.json b/docs/static/data/examples/graph/trade-volume.json new file mode 100644 index 000000000..5bfb63a61 --- /dev/null +++ b/docs/static/data/examples/graph/trade-volume.json @@ -0,0 +1,168 @@ +{ + "nodes": [ + { + "label": "Netherlands" + }, + { + "label": "Canada" + }, + { + "label": "Belgium" + }, + { + "label": "Italy" + }, + { + "label": "Mexico" + }, + { + "label": "Russia" + }, + { + "label": "Spain" + }, + { + "label": "South Korea" + }, + { + "label": "Germany" + }, + { + "label": "China" + }, + { + "label": "European Union" + }, + { + "label": "Japan" + }, + { + "label": "United Kingdom" + }, + { + "label": "United States" + }, + { + "label": "France" + }, + { + "label": "Hong Kong" + }, + { + "label": "Switzerland" + }, + { + "label": "Austria" + }, + { + "label": "Sweden" + } + ], + "links": [ + { + "from": "Netherlands", + "to": "European Union", + "value": 798744 + }, + { + "from": "Germany", + "to": "European Union", + "value": 1468990 + }, + { + "from": "European Union", + "to": "France", + "value": 745931 + }, + { + "from": "European Union", + "to": "United States", + "value": 660541 + }, + { + "from": "Canada", + "to": "United States", + "value": 594546 + }, + { + "from": "Belgium", + "to": "European Union", + "value": 628796 + }, + { + "from": "China", + "to": "Hong Kong", + "value": 400571 + }, + { + "from": "China", + "to": "United States", + "value": 526454 + }, + { + "from": "European Union", + "to": "United Kingdom", + "value": 520318 + }, + { + "from": "China", + "to": "European Union", + "value": 560536 + }, + { + "from": "Italy", + "to": "European Union", + "value": 539556 + }, + { + "from": "Mexico", + "to": "United States", + "value": 492715 + }, + { + "from": "Russia", + "to": "European Union", + "value": 385778 + }, + { + "from": "Spain", + "to": "European Union", + "value": 365191 + }, + { + "from": "China", + "to": "Japan", + "value": 312062 + }, + { + "from": "European Union", + "to": "Switzerland", + "value": 328609 + }, + { + "from": "South Korea", + "to": "China", + "value": 229073 + }, + { + "from": "European Union", + "to": "Austria", + "value": 244913 + }, + { + "from": "Japan", + "to": "United States", + "value": 206091 + }, + { + "from": "European Union", + "to": "Sweden", + "value": 204849 + }, + { + "from": "Germany", + "to": "United States", + "value": 184287 + } + ] +} diff --git a/docs/static/data/examples/group-data.json b/docs/static/data/examples/group-data.json new file mode 100644 index 000000000..b50a86418 --- /dev/null +++ b/docs/static/data/examples/group-data.json @@ -0,0 +1,237 @@ +[ + { + "x": 0.41, + "y": 0.84, + "group": "Group 3" + }, + { + "x": 0.88, + "y": 2.64, + "group": "Group 2" + }, + { + "x": 0.8, + "y": 4.21, + "group": "Group 2" + }, + { + "x": 0.25, + "y": 3.25, + "group": "Group 1" + }, + { + "x": 0.37, + "y": -0.83, + "group": "Group 1" + }, + { + "x": 0.39, + "y": -0.84, + "group": "Group 1" + }, + { + "x": 0.87, + "y": 4.57, + "group": "Group 3" + }, + { + "x": 0.35, + "y": -0.27, + "group": "Group 1" + }, + { + "x": 0.4, + "y": -1.22, + "group": "Group 3" + }, + { + "x": 0.13, + "y": -2.49, + "group": "Group 1" + }, + { + "x": 0.43, + "y": -2.97, + "group": "Group 3" + }, + { + "x": 0.71, + "y": 3.52, + "group": "Group 3" + }, + { + "x": 0.09, + "y": 2.2, + "group": "Group 1" + }, + { + "x": 0.05, + "y": -0.54, + "group": "Group 1" + }, + { + "x": 0.8, + "y": 4.48, + "group": "Group 2" + }, + { + "x": 0.72, + "y": 0.26, + "group": "Group 2" + }, + { + "x": -0.16, + "y": 2.15, + "group": "Group 1" + }, + { + "x": 0.37, + "y": 2.43, + "group": "Group 3" + }, + { + "x": 0.53, + "y": 2.04, + "group": "Group 3" + }, + { + "x": 0.5, + "y": 0.42, + "group": "Group 1" + }, + { + "x": 1.03, + "y": 2.3, + "group": "Group 2" + }, + { + "x": 0.73, + "y": 1.46, + "group": "Group 3" + }, + { + "x": 0.32, + "y": 3.38, + "group": "Group 1" + }, + { + "x": 0.24, + "y": 3.7, + "group": "Group 3" + }, + { + "x": 1.16, + "y": 4.57, + "group": "Group 2" + }, + { + "x": 1, + "y": 6.64, + "group": "Group 2" + }, + { + "x": 0.67, + "y": 2.29, + "group": "Group 3" + }, + { + "x": 0.62, + "y": 3.78, + "group": "Group 3" + }, + { + "x": 0.48, + "y": 4.22, + "group": "Group 3" + }, + { + "x": 0.97, + "y": 9.64, + "group": "Group 2" + }, + { + "x": 0.83, + "y": 4.66, + "group": "Group 2" + }, + { + "x": 0.68, + "y": 1.09, + "group": "Group 3" + }, + { + "x": 0.29, + "y": -0.03, + "group": "Group 3" + }, + { + "x": 0.14, + "y": 0.5, + "group": "Group 1" + }, + { + "x": -0.07, + "y": -0.98, + "group": "Group 1" + }, + { + "x": 0.17, + "y": -0.11, + "group": "Group 1" + }, + { + "x": 0.64, + "y": 3.71, + "group": "Group 3" + }, + { + "x": 0.22, + "y": 1.01, + "group": "Group 1" + }, + { + "x": 0.45, + "y": -0.31, + "group": "Group 3" + }, + { + "x": 0.14, + "y": 1.18, + "group": "Group 1" + }, + { + "x": -0.14, + "y": -1.6, + "group": "Group 1" + }, + { + "x": 1.13, + "y": 7.75, + "group": "Group 2" + }, + { + "x": 0.72, + "y": 0.4, + "group": "Group 3" + }, + { + "x": -0.05, + "y": -0.2, + "group": "Group 1" + }, + { + "x": 0.83, + "y": 5.49, + "group": "Group 3" + }, + { + "x": -0.06, + "y": 0.24, + "group": "Group 1" + }, + { + "x": 1.07, + "y": 2.86, + "group": "Group 2" + } +] diff --git a/docs/static/data/examples/hierarchy/flare.json b/docs/static/data/examples/hierarchy/flare.json new file mode 100644 index 000000000..570b497f2 --- /dev/null +++ b/docs/static/data/examples/hierarchy/flare.json @@ -0,0 +1,376 @@ +{ + "name": "flare", + "children": [ + { + "name": "analytics", + "children": [ + { + "name": "cluster", + "children": [ + { "name": "AgglomerativeCluster", "value": 3938 }, + { "name": "CommunityStructure", "value": 3812 }, + { "name": "HierarchicalCluster", "value": 6714 }, + { "name": "MergeEdge", "value": 743 } + ] + }, + { + "name": "graph", + "children": [ + { "name": "BetweennessCentrality", "value": 3534 }, + { "name": "LinkDistance", "value": 5731 }, + { "name": "MaxFlowMinCut", "value": 7840 }, + { "name": "ShortestPaths", "value": 5914 }, + { "name": "SpanningTree", "value": 3416 } + ] + }, + { + "name": "optimization", + "children": [{ "name": "AspectRatioBanker", "value": 7074 }] + } + ] + }, + { + "name": "animate", + "children": [ + { "name": "Easing", "value": 17010 }, + { "name": "FunctionSequence", "value": 5842 }, + { + "name": "interpolate", + "children": [ + { "name": "ArrayInterpolator", "value": 1983 }, + { "name": "ColorInterpolator", "value": 2047 }, + { "name": "DateInterpolator", "value": 1375 }, + { "name": "Interpolator", "value": 8746 }, + { "name": "MatrixInterpolator", "value": 2202 }, + { "name": "NumberInterpolator", "value": 1382 }, + { "name": "ObjectInterpolator", "value": 1629 }, + { "name": "PointInterpolator", "value": 1675 }, + { "name": "RectangleInterpolator", "value": 2042 } + ] + }, + { "name": "ISchedulable", "value": 1041 }, + { "name": "Parallel", "value": 5176 }, + { "name": "Pause", "value": 449 }, + { "name": "Scheduler", "value": 5593 }, + { "name": "Sequence", "value": 5534 }, + { "name": "Transition", "value": 9201 }, + { "name": "Transitioner", "value": 19975 }, + { "name": "TransitionEvent", "value": 1116 }, + { "name": "Tween", "value": 6006 } + ] + }, + { + "name": "data", + "children": [ + { + "name": "converters", + "children": [ + { "name": "Converters", "value": 721 }, + { "name": "DelimitedTextConverter", "value": 4294 }, + { "name": "GraphMLConverter", "value": 9800 }, + { "name": "IDataConverter", "value": 1314 }, + { "name": "JSONConverter", "value": 2220 } + ] + }, + { "name": "DataField", "value": 1759 }, + { "name": "DataSchema", "value": 2165 }, + { "name": "DataSet", "value": 586 }, + { "name": "DataSource", "value": 3331 }, + { "name": "DataTable", "value": 772 }, + { "name": "DataUtil", "value": 3322 } + ] + }, + { + "name": "display", + "children": [ + { "name": "DirtySprite", "value": 8833 }, + { "name": "LineSprite", "value": 1732 }, + { "name": "RectSprite", "value": 3623 }, + { "name": "TextSprite", "value": 10066 } + ] + }, + { + "name": "flex", + "children": [{ "name": "FlareVis", "value": 4116 }] + }, + { + "name": "physics", + "children": [ + { "name": "DragForce", "value": 1082 }, + { "name": "GravityForce", "value": 1336 }, + { "name": "IForce", "value": 319 }, + { "name": "NBodyForce", "value": 10498 }, + { "name": "Particle", "value": 2822 }, + { "name": "Simulation", "value": 9983 }, + { "name": "Spring", "value": 2213 }, + { "name": "SpringForce", "value": 1681 } + ] + }, + { + "name": "query", + "children": [ + { "name": "AggregateExpression", "value": 1616 }, + { "name": "And", "value": 1027 }, + { "name": "Arithmetic", "value": 3891 }, + { "name": "Average", "value": 891 }, + { "name": "BinaryExpression", "value": 2893 }, + { "name": "Comparison", "value": 5103 }, + { "name": "CompositeExpression", "value": 3677 }, + { "name": "Count", "value": 781 }, + { "name": "DateUtil", "value": 4141 }, + { "name": "Distinct", "value": 933 }, + { "name": "Expression", "value": 5130 }, + { "name": "ExpressionIterator", "value": 3617 }, + { "name": "Fn", "value": 3240 }, + { "name": "If", "value": 2732 }, + { "name": "IsA", "value": 2039 }, + { "name": "Literal", "value": 1214 }, + { "name": "Match", "value": 3748 }, + { "name": "Maximum", "value": 843 }, + { + "name": "methods", + "children": [ + { "name": "add", "value": 593 }, + { "name": "and", "value": 330 }, + { "name": "average", "value": 287 }, + { "name": "count", "value": 277 }, + { "name": "distinct", "value": 292 }, + { "name": "div", "value": 595 }, + { "name": "eq", "value": 594 }, + { "name": "fn", "value": 460 }, + { "name": "gt", "value": 603 }, + { "name": "gte", "value": 625 }, + { "name": "iff", "value": 748 }, + { "name": "isa", "value": 461 }, + { "name": "lt", "value": 597 }, + { "name": "lte", "value": 619 }, + { "name": "max", "value": 283 }, + { "name": "min", "value": 283 }, + { "name": "mod", "value": 591 }, + { "name": "mul", "value": 603 }, + { "name": "neq", "value": 599 }, + { "name": "not", "value": 386 }, + { "name": "or", "value": 323 }, + { "name": "orderby", "value": 307 }, + { "name": "range", "value": 772 }, + { "name": "select", "value": 296 }, + { "name": "stddev", "value": 363 }, + { "name": "sub", "value": 600 }, + { "name": "sum", "value": 280 }, + { "name": "update", "value": 307 }, + { "name": "variance", "value": 335 }, + { "name": "where", "value": 299 }, + { "name": "xor", "value": 354 }, + { "name": "_", "value": 264 } + ] + }, + { "name": "Minimum", "value": 843 }, + { "name": "Not", "value": 1554 }, + { "name": "Or", "value": 970 }, + { "name": "Query", "value": 13896 }, + { "name": "Range", "value": 1594 }, + { "name": "StringUtil", "value": 4130 }, + { "name": "Sum", "value": 791 }, + { "name": "Variable", "value": 1124 }, + { "name": "Variance", "value": 1876 }, + { "name": "Xor", "value": 1101 } + ] + }, + { + "name": "scale", + "children": [ + { "name": "IScaleMap", "value": 2105 }, + { "name": "LinearScale", "value": 1316 }, + { "name": "LogScale", "value": 3151 }, + { "name": "OrdinalScale", "value": 3770 }, + { "name": "QuantileScale", "value": 2435 }, + { "name": "QuantitativeScale", "value": 4839 }, + { "name": "RootScale", "value": 1756 }, + { "name": "Scale", "value": 4268 }, + { "name": "ScaleType", "value": 1821 }, + { "name": "TimeScale", "value": 5833 } + ] + }, + { + "name": "util", + "children": [ + { "name": "Arrays", "value": 8258 }, + { "name": "Colors", "value": 10001 }, + { "name": "Dates", "value": 8217 }, + { "name": "Displays", "value": 12555 }, + { "name": "Filter", "value": 2324 }, + { "name": "Geometry", "value": 10993 }, + { + "name": "heap", + "children": [ + { "name": "FibonacciHeap", "value": 9354 }, + { "name": "HeapNode", "value": 1233 } + ] + }, + { "name": "IEvaluable", "value": 335 }, + { "name": "IPredicate", "value": 383 }, + { "name": "IValueProxy", "value": 874 }, + { + "name": "math", + "children": [ + { "name": "DenseMatrix", "value": 3165 }, + { "name": "IMatrix", "value": 2815 }, + { "name": "SparseMatrix", "value": 3366 } + ] + }, + { "name": "Maths", "value": 17705 }, + { "name": "Orientation", "value": 1486 }, + { + "name": "palette", + "children": [ + { "name": "ColorPalette", "value": 6367 }, + { "name": "Palette", "value": 1229 }, + { "name": "ShapePalette", "value": 2059 }, + { "name": "SizePalette", "value": 2291 } + ] + }, + { "name": "Property", "value": 5559 }, + { "name": "Shapes", "value": 19118 }, + { "name": "Sort", "value": 6887 }, + { "name": "Stats", "value": 6557 }, + { "name": "Strings", "value": 22026 } + ] + }, + { + "name": "vis", + "children": [ + { + "name": "axis", + "children": [ + { "name": "Axes", "value": 1302 }, + { "name": "Axis", "value": 24593 }, + { "name": "AxisGridLine", "value": 652 }, + { "name": "AxisLabel", "value": 636 }, + { "name": "CartesianAxes", "value": 6703 } + ] + }, + { + "name": "controls", + "children": [ + { "name": "AnchorControl", "value": 2138 }, + { "name": "ClickControl", "value": 3824 }, + { "name": "Control", "value": 1353 }, + { "name": "ControlList", "value": 4665 }, + { "name": "DragControl", "value": 2649 }, + { "name": "ExpandControl", "value": 2832 }, + { "name": "HoverControl", "value": 4896 }, + { "name": "IControl", "value": 763 }, + { "name": "PanZoomControl", "value": 5222 }, + { "name": "SelectionControl", "value": 7862 }, + { "name": "TooltipControl", "value": 8435 } + ] + }, + { + "name": "data", + "children": [ + { "name": "Data", "value": 20544 }, + { "name": "DataList", "value": 19788 }, + { "name": "DataSprite", "value": 10349 }, + { "name": "EdgeSprite", "value": 3301 }, + { "name": "NodeSprite", "value": 19382 }, + { + "name": "render", + "children": [ + { "name": "ArrowType", "value": 698 }, + { "name": "EdgeRenderer", "value": 5569 }, + { "name": "IRenderer", "value": 353 }, + { "name": "ShapeRenderer", "value": 2247 } + ] + }, + { "name": "ScaleBinding", "value": 11275 }, + { "name": "Tree", "value": 7147 }, + { "name": "TreeBuilder", "value": 9930 } + ] + }, + { + "name": "events", + "children": [ + { "name": "DataEvent", "value": 2313 }, + { "name": "SelectionEvent", "value": 1880 }, + { "name": "TooltipEvent", "value": 1701 }, + { "name": "VisualizationEvent", "value": 1117 } + ] + }, + { + "name": "legend", + "children": [ + { "name": "Legend", "value": 20859 }, + { "name": "LegendItem", "value": 4614 }, + { "name": "LegendRange", "value": 10530 } + ] + }, + { + "name": "operator", + "children": [ + { + "name": "distortion", + "children": [ + { "name": "BifocalDistortion", "value": 4461 }, + { "name": "Distortion", "value": 6314 }, + { "name": "FisheyeDistortion", "value": 3444 } + ] + }, + { + "name": "encoder", + "children": [ + { "name": "ColorEncoder", "value": 3179 }, + { "name": "Encoder", "value": 4060 }, + { "name": "PropertyEncoder", "value": 4138 }, + { "name": "ShapeEncoder", "value": 1690 }, + { "name": "SizeEncoder", "value": 1830 } + ] + }, + { + "name": "filter", + "children": [ + { "name": "FisheyeTreeFilter", "value": 5219 }, + { "name": "GraphDistanceFilter", "value": 3165 }, + { "name": "VisibilityFilter", "value": 3509 } + ] + }, + { "name": "IOperator", "value": 1286 }, + { + "name": "label", + "children": [ + { "name": "Labeler", "value": 9956 }, + { "name": "RadialLabeler", "value": 3899 }, + { "name": "StackedAreaLabeler", "value": 3202 } + ] + }, + { + "name": "layout", + "children": [ + { "name": "AxisLayout", "value": 6725 }, + { "name": "BundledEdgeRouter", "value": 3727 }, + { "name": "CircleLayout", "value": 9317 }, + { "name": "CirclePackingLayout", "value": 12003 }, + { "name": "DendrogramLayout", "value": 4853 }, + { "name": "ForceDirectedLayout", "value": 8411 }, + { "name": "IcicleTreeLayout", "value": 4864 }, + { "name": "IndentedTreeLayout", "value": 3174 }, + { "name": "Layout", "value": 7881 }, + { "name": "NodeLinkTreeLayout", "value": 12870 }, + { "name": "PieLayout", "value": 2728 }, + { "name": "RadialTreeLayout", "value": 12348 }, + { "name": "RandomLayout", "value": 870 }, + { "name": "StackedAreaLayout", "value": 9121 }, + { "name": "TreeMapLayout", "value": 9191 } + ] + }, + { "name": "Operator", "value": 2490 }, + { "name": "OperatorList", "value": 5248 }, + { "name": "OperatorSequence", "value": 4190 }, + { "name": "OperatorSwitch", "value": 2581 }, + { "name": "SortOperator", "value": 2023 } + ] + }, + { "name": "Visualization", "value": 16540 } + ] + } + ] +} diff --git a/docs/static/data/examples/new-passenger-cars.csv b/docs/static/data/examples/new-passenger-cars.csv new file mode 100644 index 000000000..05b200dbe --- /dev/null +++ b/docs/static/data/examples/new-passenger-cars.csv @@ -0,0 +1,31 @@ +year,efficiency,sales +1980,24.3,8949000 +1985,27.6,10979000 +1990,28,9303000 +1991,28.4,8185000 +1992,27.9,8213000 +1993,28.4,8518000 +1994,28.3,8991000 +1995,28.6,8620000 +1996,28.5,8479000 +1997,28.7,8217000 +1998,28.8,8085000 +1999,28.3,8638000 +2000,28.5,8778000 +2001,28.8,8352000 +2002,29,8042000 +2003,29.5,7556000 +2004,29.5,7483000 +2005,30.3,7660000 +2006,30.1,7762000 +2007,31.2,7562000 +2008,31.5,6769000 +2009,32.9,5402000 +2010,33.9,5636000 +2011,33.1,6093000 +2012,35.3,7245000 +2013,36.4,7586000 +2014,36.5,7708000 +2015,37.2,7517000 +2016,37.7,6873000 +2017,39.4,6081000 \ No newline at end of file diff --git a/docs/static/data/examples/new-passenger-cars.d.ts b/docs/static/data/examples/new-passenger-cars.d.ts new file mode 100644 index 000000000..0252c2ea4 --- /dev/null +++ b/docs/static/data/examples/new-passenger-cars.d.ts @@ -0,0 +1,5 @@ +export type NewPassengerCars = { + year: number; + efficiency: number; + sales: number; +}; diff --git a/docs/static/data/examples/olympians.d.ts b/docs/static/data/examples/olympians.d.ts new file mode 100644 index 000000000..b8d5a28fe --- /dev/null +++ b/docs/static/data/examples/olympians.d.ts @@ -0,0 +1,14 @@ +export type OlympiansData = { + id: number; + name: string; + nationality: string; + sex: string; + date_of_birth: Date; + height: number; + weight: number; + sport: string; + gold: number; + silver: number; + bronze: number; + info: string; +}[]; diff --git a/docs/static/data/examples/olympians.json b/docs/static/data/examples/olympians.json new file mode 100644 index 000000000..ce23156d2 --- /dev/null +++ b/docs/static/data/examples/olympians.json @@ -0,0 +1 @@ +[{"id":736041664,"name":"A Jesus Garcia","nationality":"ESP","sex":"male","date_of_birth":"1969-10-17T00:00:00.000Z","height":1.72,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":532037425,"name":"A Lam Shin","nationality":"KOR","sex":"female","date_of_birth":"1986-09-23T00:00:00.000Z","height":1.68,"weight":56,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":435962603,"name":"Aaron Brown","nationality":"CAN","sex":"male","date_of_birth":"1992-05-27T00:00:00.000Z","height":1.98,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":521041435,"name":"Aaron Cook","nationality":"MDA","sex":"male","date_of_birth":"1991-01-02T00:00:00.000Z","height":1.83,"weight":80,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":33922579,"name":"Aaron Gate","nationality":"NZL","sex":"male","date_of_birth":"1990-11-26T00:00:00.000Z","height":1.81,"weight":71,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":173071782,"name":"Aaron Royle","nationality":"AUS","sex":"male","date_of_birth":"1990-01-26T00:00:00.000Z","height":1.8,"weight":67,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":266237702,"name":"Aaron Russell","nationality":"USA","sex":"male","date_of_birth":"1993-06-04T00:00:00.000Z","height":2.05,"weight":98,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":382571888,"name":"Aaron Younger","nationality":"AUS","sex":"male","date_of_birth":"1991-09-25T00:00:00.000Z","height":1.93,"weight":100,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":87689776,"name":"Aauri Lorena Bokesa","nationality":"ESP","sex":"female","date_of_birth":"1988-12-14T00:00:00.000Z","height":1.8,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":997877719,"name":"Ababel Yeshaneh","nationality":"ETH","sex":"female","date_of_birth":"1991-07-22T00:00:00.000Z","height":1.65,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":343694681,"name":"Abadi Hadis","nationality":"ETH","sex":"male","date_of_birth":"1997-11-06T00:00:00.000Z","height":1.7,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":591319906,"name":"Abbas Abubakar Abbas","nationality":"BRN","sex":"male","date_of_birth":"1996-05-17T00:00:00.000Z","height":1.75,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":258556239,"name":"Abbas Qali","nationality":"IOA","sex":"male","date_of_birth":"1992-10-11T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":376068084,"name":"Abbey D'Agostino","nationality":"USA","sex":"female","date_of_birth":"1992-05-25T00:00:00.000Z","height":1.61,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":162792594,"name":"Abbey Weitzeil","nationality":"USA","sex":"female","date_of_birth":"1996-12-03T00:00:00.000Z","height":1.78,"weight":68,"sport":"aquatics","gold":1,"silver":1,"bronze":0,"info":null},{"id":521036704,"name":"Abbie Brown","nationality":"GBR","sex":"female","date_of_birth":"1996-04-10T00:00:00.000Z","height":1.76,"weight":71,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":149397772,"name":"Abbos Rakhmonov","nationality":"UZB","sex":"male","date_of_birth":"1998-07-07T00:00:00.000Z","height":1.61,"weight":57,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":256673338,"name":"Abbubaker Mobara","nationality":"RSA","sex":"male","date_of_birth":"1994-02-18T00:00:00.000Z","height":1.75,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":337369662,"name":"Abby Erceg","nationality":"NZL","sex":"female","date_of_birth":"1989-11-20T00:00:00.000Z","height":1.75,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":334169879,"name":"Abd Elhalim Mohamed Abou","nationality":"EGY","sex":"male","date_of_birth":"1989-06-03T00:00:00.000Z","height":2.1,"weight":88,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":215053268,"name":"Abdalaati Iguider","nationality":"MAR","sex":"male","date_of_birth":"1987-03-25T00:00:00.000Z","height":1.73,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":763711985,"name":"Abdalelah Haroun","nationality":"QAT","sex":"male","date_of_birth":"1997-01-01T00:00:00.000Z","height":1.85,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":924593601,"name":"Abdalla Targan","nationality":"SUD","sex":"male","date_of_birth":"1996-09-28T00:00:00.000Z","height":1.77,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":578032534,"name":"Abdel Aziz Mehelba","nationality":"EGY","sex":"male","date_of_birth":"1988-12-10T00:00:00.000Z","height":1.76,"weight":80,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":890222258,"name":"Abdelati El Guesse","nationality":"MAR","sex":"male","date_of_birth":"1993-02-27T00:00:00.000Z","height":1.9,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":803161695,"name":"Abdelaziz Merzougui","nationality":"ESP","sex":"male","date_of_birth":"1991-08-30T00:00:00.000Z","height":1.75,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":189931373,"name":"Abdelaziz Mohamed Ahmed","nationality":"SUD","sex":"male","date_of_birth":"1994-10-12T00:00:00.000Z","height":1.81,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":677622742,"name":"Abdelghani Demmou","nationality":"ALG","sex":"male","date_of_birth":"1989-01-29T00:00:00.000Z","height":1.85,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":349871091,"name":"Abdelhafid Benchabla","nationality":"ALG","sex":"male","date_of_birth":"1986-09-26T00:00:00.000Z","height":1.86,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":904808208,"name":"Abdelhakim Amokrane","nationality":"ALG","sex":"male","date_of_birth":"1994-05-10T00:00:00.000Z","height":1.86,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":23564778,"name":"Abdelkader Chadi","nationality":"ALG","sex":"male","date_of_birth":"1986-12-12T00:00:00.000Z","height":1.78,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":133974151,"name":"Abdelkadir Salhi","nationality":"ALG","sex":"male","date_of_birth":"1993-03-19T00:00:00.000Z","height":1.85,"weight":79,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":189886442,"name":"Abdelkebir Ouaddar","nationality":"MAR","sex":"male","date_of_birth":"1962-07-15T00:00:00.000Z","height":1.74,"weight":67,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":199516300,"name":"Abdelkhalek Elbanna","nationality":"EGY","sex":"male","date_of_birth":"1988-07-04T00:00:00.000Z","height":1.93,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":570342175,"name":"Abdellatif Mohamed Ahmed Mohamed","nationality":"EGY","sex":"male","date_of_birth":"1995-12-08T00:00:00.000Z","height":1.76,"weight":120,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":517007712,"name":"Abdelmajid El Hissouf","nationality":"MAR","sex":"male","date_of_birth":"1992-09-23T00:00:00.000Z","height":1.7,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":512730813,"name":"Abdelmalik Lahoulou","nationality":"ALG","sex":"male","date_of_birth":"1992-05-07T00:00:00.000Z","height":1.77,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":934545704,"name":"Abdelrahman Salah Orabi Abdelgawwad","nationality":"EGY","sex":"male","date_of_birth":"1987-10-09T00:00:00.000Z","height":1.85,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":514096508,"name":"Abdelraouf Benguit","nationality":"ALG","sex":"male","date_of_birth":"1996-04-05T00:00:00.000Z","height":1.7,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":388896171,"name":"Abderrahmane Benamadi","nationality":"ALG","sex":"male","date_of_birth":"1985-07-03T00:00:00.000Z","height":1.83,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":285603057,"name":"Abderrahmane Mansouri","nationality":"ALG","sex":"male","date_of_birth":"1995-01-13T00:00:00.000Z","height":1.72,"weight":66,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":545134894,"name":"Abderrahmane Meziane","nationality":"ALG","sex":"male","date_of_birth":"1994-03-07T00:00:00.000Z","height":1.68,"weight":62,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":64529046,"name":"Abdi Hakin Ulad","nationality":"DEN","sex":"male","date_of_birth":"1991-06-14T00:00:00.000Z","height":1.75,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":917755766,"name":"Abdi Nageeye","nationality":"NED","sex":"male","date_of_birth":"1989-03-02T00:00:00.000Z","height":1.65,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":184980926,"name":"Abdi Waiss Mouhyadin","nationality":"DJI","sex":"male","date_of_birth":"1996-07-03T00:00:00.000Z","height":1.6,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":702606719,"name":"Abdoul Khadre Mbaye Niane","nationality":"SEN","sex":"male","date_of_birth":"1988-08-20T00:00:00.000Z","height":1.9,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":259675127,"name":"Abdoulkarim Fawziya","nationality":"CMR","sex":"female","date_of_birth":"1989-03-01T00:00:00.000Z","height":1.8,"weight":67,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":469953606,"name":"Abdoullah Bamoussa","nationality":"ITA","sex":"male","date_of_birth":"1986-06-08T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":962468808,"name":"Abdoulrazak Issoufou Alfaga","nationality":"NIG","sex":"male","date_of_birth":"1994-12-26T00:00:00.000Z","height":2.07,"weight":98,"sport":"taekwondo","gold":0,"silver":1,"bronze":0,"info":null},{"id":958967643,"name":"Abdul Khalili","nationality":"SWE","sex":"male","date_of_birth":"1992-06-07T00:00:00.000Z","height":1.81,"weight":71,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":325809293,"name":"Abdul Omar","nationality":"GHA","sex":"male","date_of_birth":"1993-10-03T00:00:00.000Z","height":null,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":152408417,"name":"Abdul Wahab Zahiri","nationality":"AFG","sex":"male","date_of_birth":"1992-05-27T00:00:00.000Z","height":1.75,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":262868423,"name":"Abdulaziz Alshatti","nationality":"IOA","sex":"male","date_of_birth":"1990-10-30T00:00:00.000Z","height":null,"weight":null,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":101781750,"name":"Abdulkadir Abdullayev","nationality":"AZE","sex":"male","date_of_birth":"1988-07-17T00:00:00.000Z","height":1.88,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":5763609,"name":"Abdullah Abkar Mohammed","nationality":"KSA","sex":"male","date_of_birth":"1997-01-01T00:00:00.000Z","height":1.72,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":969824503,"name":"Abdullah Alrashidi","nationality":"IOA","sex":"male","date_of_birth":"1963-08-21T00:00:00.000Z","height":1.83,"weight":84,"sport":"shooting","gold":0,"silver":0,"bronze":1,"info":null},{"id":897549624,"name":"Abdullah Hel Baki","nationality":"BAN","sex":"male","date_of_birth":"1989-08-01T00:00:00.000Z","height":null,"weight":null,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":153457,"name":"Abdullahi Shehu","nationality":"NGR","sex":"male","date_of_birth":"1993-03-12T00:00:00.000Z","height":1.7,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":803368584,"name":"Abdullo Tangriev","nationality":"UZB","sex":"male","date_of_birth":"1981-03-28T00:00:00.000Z","height":1.9,"weight":132,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":937153550,"name":"Abdulrahman Al Faihan","nationality":"IOA","sex":"male","date_of_birth":"1986-06-24T00:00:00.000Z","height":null,"weight":null,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":746318262,"name":"Abdulrashid Sadulaev","nationality":"RUS","sex":"male","date_of_birth":"1996-05-09T00:00:00.000Z","height":1.77,"weight":86,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":841446548,"name":"Abdulrazzaq Murad","nationality":"QAT","sex":"male","date_of_birth":"1990-06-29T00:00:00.000Z","height":1.86,"weight":77,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":884912875,"name":"Abeku Gyekye Jackson","nationality":"GHA","sex":"male","date_of_birth":"2000-04-12T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":146197583,"name":"Abhinav Bindra","nationality":"IND","sex":"male","date_of_birth":"1982-09-28T00:00:00.000Z","height":1.75,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":884912136,"name":"Abigail Johnston","nationality":"USA","sex":"female","date_of_birth":"1989-11-16T00:00:00.000Z","height":1.66,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":221052317,"name":"Abigel Joo","nationality":"HUN","sex":"female","date_of_birth":"1990-08-06T00:00:00.000Z","height":1.83,"weight":76,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":157637514,"name":"Ablaikhan Zhussupov","nationality":"KAZ","sex":"male","date_of_birth":"1997-01-10T00:00:00.000Z","height":1.75,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":78813419,"name":"Abraham Kipchirchir Rotich","nationality":"BRN","sex":"male","date_of_birth":"1993-09-26T00:00:00.000Z","height":1.83,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":555457991,"name":"Abraham Naibei Cheroben","nationality":"BRN","sex":"male","date_of_birth":"1992-10-11T00:00:00.000Z","height":1.76,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":877850429,"name":"Abraham Niyonkuru","nationality":"BDI","sex":"male","date_of_birth":"1989-12-26T00:00:00.000Z","height":1.62,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":369092977,"name":"Abrar Osman","nationality":"ERI","sex":"male","date_of_birth":"1994-01-01T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":602585498,"name":"Abubaker Haydar Abdalla","nationality":"QAT","sex":"male","date_of_birth":"1996-08-28T00:00:00.000Z","height":1.8,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":140663745,"name":"Achraf Kharroubi","nationality":"MAR","sex":"male","date_of_birth":"1990-09-25T00:00:00.000Z","height":1.6,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":507726155,"name":"Adam Batirov","nationality":"BRN","sex":"male","date_of_birth":"1985-01-13T00:00:00.000Z","height":1.65,"weight":71,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":60265240,"name":"Adam Cwalina","nationality":"POL","sex":"male","date_of_birth":"1985-01-26T00:00:00.000Z","height":1.87,"weight":81,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":256805041,"name":"Adam Decker","nationality":"HUN","sex":"male","date_of_birth":"1984-02-29T00:00:00.000Z","height":2.03,"weight":115,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":275689888,"name":"Adam Dixon","nationality":"GBR","sex":"male","date_of_birth":"1986-09-11T00:00:00.000Z","height":1.69,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":136977152,"name":"Adam Froese","nationality":"CAN","sex":"male","date_of_birth":"1991-08-13T00:00:00.000Z","height":1.82,"weight":81,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":487206822,"name":"Adam Gemili","nationality":"GBR","sex":"male","date_of_birth":"1993-10-06T00:00:00.000Z","height":1.78,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":236523132,"name":"Adam Imer","nationality":"BRA","sex":"male","date_of_birth":"1989-08-18T00:00:00.000Z","height":1.82,"weight":88,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":682367963,"name":"Adam Kszczot","nationality":"POL","sex":"male","date_of_birth":"1989-09-02T00:00:00.000Z","height":1.78,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":624366946,"name":"Adam Lundqvist","nationality":"SWE","sex":"male","date_of_birth":"1994-03-20T00:00:00.000Z","height":1.74,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":394945344,"name":"Adam Marosi","nationality":"HUN","sex":"male","date_of_birth":"1984-07-26T00:00:00.000Z","height":1.81,"weight":75,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":970243540,"name":"Adam Okruashvili","nationality":"GEO","sex":"male","date_of_birth":"1989-01-01T00:00:00.000Z","height":1.89,"weight":130,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":765490473,"name":"Adam Pattantyus","nationality":"HUN","sex":"male","date_of_birth":"1978-10-10T00:00:00.000Z","height":1.75,"weight":71,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":561951036,"name":"Adam Peaty","nationality":"GBR","sex":"male","date_of_birth":"1994-12-28T00:00:00.000Z","height":1.93,"weight":88,"sport":"aquatics","gold":1,"silver":1,"bronze":0,"info":null},{"id":785166259,"name":"Adam Sebastian Helcelet","nationality":"CZE","sex":"male","date_of_birth":"1991-10-27T00:00:00.000Z","height":1.9,"weight":92,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":846863992,"name":"Adam Telegdy","nationality":"HUN","sex":"male","date_of_birth":"1995-11-01T00:00:00.000Z","height":1.94,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":390173289,"name":"Adam Vella","nationality":"AUS","sex":"male","date_of_birth":"1971-06-12T00:00:00.000Z","height":1.78,"weight":92,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":266751447,"name":"Adam Viktora","nationality":"SEY","sex":"male","date_of_birth":"1996-09-06T00:00:00.000Z","height":1.88,"weight":94,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":983184686,"name":"Adam Wisniewski","nationality":"POL","sex":"male","date_of_birth":"1980-10-24T00:00:00.000Z","height":1.93,"weight":93,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":184652432,"name":"Adam Yates","nationality":"GBR","sex":"male","date_of_birth":"1992-08-07T00:00:00.000Z","height":1.72,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":983411298,"name":"Adam van Koeverden","nationality":"CAN","sex":"male","date_of_birth":"1982-01-29T00:00:00.000Z","height":1.82,"weight":85,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":685532077,"name":"Adama Diatta","nationality":"SEN","sex":"male","date_of_birth":"1988-08-14T00:00:00.000Z","height":1.65,"weight":57,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":222063859,"name":"Adama Jammeh","nationality":"GAM","sex":"male","date_of_birth":"1993-06-10T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":46940649,"name":"Adas Juskevicius","nationality":"LTU","sex":"male","date_of_birth":"1989-01-03T00:00:00.000Z","height":1.94,"weight":90,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":512592841,"name":"Adel Gholami","nationality":"IRI","sex":"male","date_of_birth":"1986-02-09T00:00:00.000Z","height":1.95,"weight":88,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":302277635,"name":"Adel Mechaal","nationality":"ESP","sex":"male","date_of_birth":"1990-12-05T00:00:00.000Z","height":1.82,"weight":71,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":216864827,"name":"Adel Mojallalimoghadam","nationality":"IRI","sex":"male","date_of_birth":"1993-03-21T00:00:00.000Z","height":1.85,"weight":82,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":153013732,"name":"Adela Bruns","nationality":"CZE","sex":"female","date_of_birth":"1987-02-05T00:00:00.000Z","height":1.71,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":123916473,"name":"Adela Hanzlickova","nationality":"CZE","sex":"female","date_of_birth":"1994-05-04T00:00:00.000Z","height":1.71,"weight":67,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":325622113,"name":"Adelina Bogus","nationality":"ROU","sex":"female","date_of_birth":"1988-09-04T00:00:00.000Z","height":1.86,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":518639420,"name":"Adelina Pastor","nationality":"ROU","sex":"female","date_of_birth":"1993-05-05T00:00:00.000Z","height":1.68,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":457663778,"name":"Adelinde Cornelissen","nationality":"NED","sex":"female","date_of_birth":"1979-07-07T00:00:00.000Z","height":1.68,"weight":55,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":"At London 2012, Adelinde Cornelissen won two medals: silver in the individual dressage and bronze in the team event. This Dutch athlete has also won two World Cup titles with her horse Jerich Parzival."},{"id":259002430,"name":"Adeline Maria Gray","nationality":"USA","sex":"female","date_of_birth":"1991-01-15T00:00:00.000Z","height":1.73,"weight":77,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":303297765,"name":"Adem Boudjemline","nationality":"ALG","sex":"male","date_of_birth":"1994-02-28T00:00:00.000Z","height":1.8,"weight":85,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":993710181,"name":"Adenizia da Silva","nationality":"BRA","sex":"female","date_of_birth":"1986-12-18T00:00:00.000Z","height":1.87,"weight":65,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":878847288,"name":"Adham Ahmed Saleh Kahk","nationality":"EGY","sex":"male","date_of_birth":"1993-06-27T00:00:00.000Z","height":1.6,"weight":66,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":75289002,"name":"Adilbek Niyazymbetov","nationality":"KAZ","sex":"male","date_of_birth":"1989-05-19T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":1,"bronze":0,"info":null},{"id":930618704,"name":"Adilson da Silva","nationality":"BRA","sex":"male","date_of_birth":"1972-01-24T00:00:00.000Z","height":1.7,"weight":79,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":890593128,"name":"Aditi Ashok","nationality":"IND","sex":"female","date_of_birth":"1998-03-29T00:00:00.000Z","height":1.73,"weight":57,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":456381770,"name":"Adlan Abdurashidov","nationality":"RUS","sex":"male","date_of_birth":"1990-07-31T00:00:00.000Z","height":1.72,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":256936407,"name":"Adnan Maric","nationality":"SWE","sex":"male","date_of_birth":"1997-02-17T00:00:00.000Z","height":1.83,"weight":78,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":637015297,"name":"Adrian Andres Puentes Perez","nationality":"CUB","sex":"male","date_of_birth":"1988-07-03T00:00:00.000Z","height":1.71,"weight":76,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":787208883,"name":"Adrian Baches","nationality":"BRA","sex":"male","date_of_birth":"1990-04-07T00:00:00.000Z","height":1.84,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":941631433,"name":"Adrian Blocki","nationality":"POL","sex":"male","date_of_birth":"1990-04-11T00:00:00.000Z","height":1.74,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":839462979,"name":"Adrian Chacon","nationality":"CUB","sex":"male","date_of_birth":"1988-12-10T00:00:00.000Z","height":1.87,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":284555275,"name":"Adrian Crisan","nationality":"ROU","sex":"male","date_of_birth":"1980-05-07T00:00:00.000Z","height":1.86,"weight":85,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":366608701,"name":"Adrian Dziolko","nationality":"POL","sex":"male","date_of_birth":"1990-02-22T00:00:00.000Z","height":1.89,"weight":85,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":679510102,"name":"Adrian Eduardo Goide Arredondo","nationality":"CUB","sex":"male","date_of_birth":"1998-06-26T00:00:00.000Z","height":1.91,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":242818896,"name":"Adrian Edward Zielinski","nationality":"POL","sex":"male","date_of_birth":"1989-03-28T00:00:00.000Z","height":1.7,"weight":94,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":400838338,"name":"Adrian Gavira Collado","nationality":"ESP","sex":"male","date_of_birth":"1987-09-17T00:00:00.000Z","height":1.93,"weight":89,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":557196811,"name":"Adrian Gomboc","nationality":"SLO","sex":"male","date_of_birth":"1995-01-20T00:00:00.000Z","height":1.7,"weight":69,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":653186701,"name":"Adrian Griffith","nationality":"BAH","sex":"male","date_of_birth":"1984-11-11T00:00:00.000Z","height":1.78,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":217850967,"name":"Adrian Ignacio Carambula Raurich","nationality":"ITA","sex":"male","date_of_birth":"1988-03-16T00:00:00.000Z","height":1.82,"weight":83,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":370799805,"name":"Adrian Juhasz","nationality":"HUN","sex":"male","date_of_birth":"1989-11-18T00:00:00.000Z","height":1.88,"weight":89,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":714030791,"name":"Adrian Oquendo","nationality":"CUB","sex":"male","date_of_birth":"1990-02-23T00:00:00.000Z","height":1.89,"weight":87,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":915726586,"name":"Adrian Portela","nationality":"ARG","sex":"male","date_of_birth":"1986-03-08T00:00:00.000Z","height":1.85,"weight":95,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":80367651,"name":"Adriana Aparecida da Silva","nationality":"BRA","sex":"female","date_of_birth":"1981-07-22T00:00:00.000Z","height":1.66,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":593328448,"name":"Adriana Araujo","nationality":"BRA","sex":"female","date_of_birth":"1981-11-04T00:00:00.000Z","height":1.67,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":770039735,"name":"Adriana Diaz","nationality":"PUR","sex":"female","date_of_birth":"2000-10-31T00:00:00.000Z","height":1.6,"weight":50,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":228337858,"name":"Adriana Martin","nationality":"ESP","sex":"female","date_of_birth":"1996-04-12T00:00:00.000Z","height":1.62,"weight":65,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":529241363,"name":"Adriana Moises","nationality":"BRA","sex":"female","date_of_birth":"1978-12-06T00:00:00.000Z","height":1.7,"weight":65,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":439382128,"name":"Adrien Bart","nationality":"FRA","sex":"male","date_of_birth":"1991-09-04T00:00:00.000Z","height":1.85,"weight":84,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":326016199,"name":"Adrien Dipanda","nationality":"FRA","sex":"male","date_of_birth":"1988-05-03T00:00:00.000Z","height":2.02,"weight":105,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":664737236,"name":"Adrien Niyonshuti","nationality":"RWA","sex":"male","date_of_birth":"1987-01-02T00:00:00.000Z","height":1.65,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":447910544,"name":"Adrienne Martelli","nationality":"USA","sex":"female","date_of_birth":"1987-12-03T00:00:00.000Z","height":1.86,"weight":77,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":835610998,"name":"Adzo Rebecca Kpossi","nationality":"TOG","sex":"female","date_of_birth":"1999-01-25T00:00:00.000Z","height":1.58,"weight":53,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":26797739,"name":"Ae-Ri Noort","nationality":"NED","sex":"female","date_of_birth":"1983-01-10T00:00:00.000Z","height":1.6,"weight":49,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":577601340,"name":"Afa Ismail","nationality":"MDV","sex":"female","date_of_birth":"1993-11-01T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":16830155,"name":"Afaf Elhodhod","nationality":"EGY","sex":"female","date_of_birth":"1996-10-01T00:00:00.000Z","height":1.63,"weight":75,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":508610852,"name":"Afef Ben Ismail","nationality":"TUN","sex":"female","date_of_birth":"1994-03-17T00:00:00.000Z","height":1.73,"weight":60,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":477738986,"name":"Africa Zamorano Sanz","nationality":"ESP","sex":"female","date_of_birth":"1998-01-11T00:00:00.000Z","height":1.7,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":998446972,"name":"Afrodite Zegers","nationality":"NED","sex":"female","date_of_birth":"1991-12-02T00:00:00.000Z","height":1.61,"weight":58,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":42409524,"name":"Agata Forkasiewicz","nationality":"POL","sex":"female","date_of_birth":"1994-01-13T00:00:00.000Z","height":1.68,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":28097741,"name":"Agatha Bednarczuk","nationality":"BRA","sex":"female","date_of_birth":"1983-06-22T00:00:00.000Z","height":1.82,"weight":70,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":23462736,"name":"Ageze Guadie","nationality":"ISR","sex":"male","date_of_birth":"1989-09-11T00:00:00.000Z","height":1.75,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":971796358,"name":"Aglaia Pezzato","nationality":"ITA","sex":"female","date_of_birth":"1994-04-22T00:00:00.000Z","height":1.75,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":810258362,"name":"Agnes Osazuwa","nationality":"NGR","sex":"female","date_of_birth":"1989-11-26T00:00:00.000Z","height":1.62,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":107504792,"name":"Agnes Raharolahy","nationality":"FRA","sex":"female","date_of_birth":"1992-11-07T00:00:00.000Z","height":1.67,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":320335499,"name":"Agnese Pastare","nationality":"LAT","sex":"female","date_of_birth":"1988-10-27T00:00:00.000Z","height":1.79,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":220410298,"name":"Agnete Kirk Thinggaard","nationality":"DEN","sex":"female","date_of_birth":"1983-05-18T00:00:00.000Z","height":1.72,"weight":62,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":726686017,"name":"Agnieszka Dygacz","nationality":"POL","sex":"female","date_of_birth":"1985-07-18T00:00:00.000Z","height":1.6,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":517578131,"name":"Agnieszka Jadwiga Wieszczek-Kordus","nationality":"POL","sex":"female","date_of_birth":"1983-03-22T00:00:00.000Z","height":1.75,"weight":69,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":120505360,"name":"Agnieszka Jerzyk","nationality":"POL","sex":"female","date_of_birth":"1988-01-15T00:00:00.000Z","height":1.7,"weight":59,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":665715516,"name":"Agnieszka Kobus","nationality":"POL","sex":"female","date_of_birth":"1990-08-28T00:00:00.000Z","height":1.77,"weight":68,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":935702937,"name":"Agnieszka Nagay","nationality":"POL","sex":"female","date_of_birth":"1981-02-20T00:00:00.000Z","height":1.69,"weight":61,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":220520929,"name":"Agnieszka Radwanska","nationality":"POL","sex":"female","date_of_birth":"1989-03-06T00:00:00.000Z","height":1.73,"weight":59,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":"Agnieszka Radwanska's career high to date was finishing runner-up at Wimbledon, in 2012, when she lost to Serena Williams in the final. Despite the defeat, the result was celebrated in her country. This athlete appears near the top of the world rankings."},{"id":527420548,"name":"Agnieszka Skrzypulec","nationality":"POL","sex":"female","date_of_birth":"1989-06-03T00:00:00.000Z","height":1.66,"weight":53,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":983479171,"name":"Agnieszka Szwarnog","nationality":"POL","sex":"female","date_of_birth":"1986-12-28T00:00:00.000Z","height":1.65,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":638298176,"name":"Agustin Mazzilli","nationality":"ARG","sex":"male","date_of_birth":"1989-06-20T00:00:00.000Z","height":1.73,"weight":77,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":833236523,"name":"Agustin Vidal","nationality":"ARG","sex":"male","date_of_birth":"1987-07-08T00:00:00.000Z","height":1.94,"weight":100,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":794585269,"name":"Agustina Albertarrio","nationality":"ARG","sex":"female","date_of_birth":"1993-01-01T00:00:00.000Z","height":1.65,"weight":55,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":441542780,"name":"Agustina Habif","nationality":"ARG","sex":"female","date_of_birth":"1992-03-08T00:00:00.000Z","height":1.65,"weight":55,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":213448220,"name":"Ahmad Abughaush","nationality":"JOR","sex":"male","date_of_birth":"1996-02-01T00:00:00.000Z","height":1.78,"weight":68,"sport":"taekwondo","gold":1,"silver":0,"bronze":0,"info":null},{"id":443237540,"name":"Ahmad Alafasi","nationality":"IOA","sex":"male","date_of_birth":"1983-01-10T00:00:00.000Z","height":null,"weight":null,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":942902378,"name":"Ahmad Amsyar Azman","nationality":"MAS","sex":"male","date_of_birth":"1992-08-28T00:00:00.000Z","height":1.62,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":684631479,"name":"Ahmad Hazer","nationality":"LIB","sex":"male","date_of_birth":"1989-09-04T00:00:00.000Z","height":1.88,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":67793782,"name":"Ahmed Abdelaal","nationality":"EGY","sex":"male","date_of_birth":"1989-06-08T00:00:00.000Z","height":1.88,"weight":89,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":935849614,"name":"Ahmed Abdelhay","nationality":"EGY","sex":"male","date_of_birth":"1984-08-19T00:00:00.000Z","height":1.97,"weight":87,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":786273274,"name":"Ahmed Abelrahman","nationality":"EGY","sex":"male","date_of_birth":"1996-05-26T00:00:00.000Z","height":1.65,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":672789779,"name":"Ahmed Afifi","nationality":"EGY","sex":"male","date_of_birth":"1988-03-30T00:00:00.000Z","height":1.94,"weight":92,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":873200853,"name":"Ahmed Akram","nationality":"EGY","sex":"male","date_of_birth":"1996-10-20T00:00:00.000Z","height":1.88,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":862822782,"name":"Ahmed Ali","nationality":"SUD","sex":"male","date_of_birth":"1993-11-15T00:00:00.000Z","height":1.73,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":9418987,"name":"Ahmed Attellesey","nationality":"LBA","sex":"male","date_of_birth":"1995-07-30T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":180751684,"name":"Ahmed Bader Magour","nationality":"QAT","sex":"male","date_of_birth":"1996-03-03T00:00:00.000Z","height":1.9,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":364294388,"name":"Ahmed Darwish","nationality":"EGY","sex":"male","date_of_birth":"1981-07-02T00:00:00.000Z","height":1.72,"weight":80,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":23970897,"name":"Ahmed El Kotb","nationality":"EGY","sex":"male","date_of_birth":"1991-07-23T00:00:00.000Z","height":1.97,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":837684987,"name":"Ahmed El-Nemr","nationality":"EGY","sex":"male","date_of_birth":"1978-11-21T00:00:00.000Z","height":1.83,"weight":84,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":635571670,"name":"Ahmed Elahmar","nationality":"EGY","sex":"male","date_of_birth":"1984-01-27T00:00:00.000Z","height":1.81,"weight":79,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":64299896,"name":"Ahmed Gebrel","nationality":"PLE","sex":"male","date_of_birth":"1991-01-22T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":215275770,"name":"Ahmed Goumar","nationality":"NIG","sex":"male","date_of_birth":"1988-02-22T00:00:00.000Z","height":1.8,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":663592491,"name":"Ahmed Ibrahim","nationality":"IRQ","sex":"male","date_of_birth":"1992-02-25T00:00:00.000Z","height":1.84,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":916701520,"name":"Ahmed Kamar","nationality":"EGY","sex":"male","date_of_birth":"1986-09-19T00:00:00.000Z","height":1.75,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":114527133,"name":"Ahmed Mathlouthi","nationality":"TUN","sex":"male","date_of_birth":"1989-12-18T00:00:00.000Z","height":1.9,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":205324342,"name":"Ahmed Mohamed","nationality":"EGY","sex":"male","date_of_birth":"1996-04-08T00:00:00.000Z","height":1.7,"weight":73,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":162169475,"name":"Ahmed Mohamed","nationality":"EGY","sex":"male","date_of_birth":"1988-04-27T00:00:00.000Z","height":1.85,"weight":144,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":739968078,"name":"Ahmed Mohamed Ibrahim Saad","nationality":"EGY","sex":"male","date_of_birth":"1989-02-25T00:00:00.000Z","height":1.65,"weight":85,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":575397765,"name":"Ahmed Ragab","nationality":"EGY","sex":"male","date_of_birth":"1991-09-29T00:00:00.000Z","height":1.74,"weight":81,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":101574216,"name":"Ahmed Saad","nationality":"EGY","sex":"male","date_of_birth":"1986-11-01T00:00:00.000Z","height":1.6,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":105465611,"name":"Ahmed Shaban","nationality":"EGY","sex":"male","date_of_birth":"1979-03-08T00:00:00.000Z","height":1.9,"weight":95,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":585852107,"name":"Ahmet Li","nationality":"TUR","sex":"male","date_of_birth":"1991-01-12T00:00:00.000Z","height":1.73,"weight":67,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":696999235,"name":"Ahmet Orken","nationality":"TUR","sex":"male","date_of_birth":"1993-03-12T00:00:00.000Z","height":1.77,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":47988332,"name":"Ahreum Na","nationality":"KOR","sex":"female","date_of_birth":"1990-03-24T00:00:00.000Z","height":1.63,"weight":55,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":138385356,"name":"Ahymara Espinoza","nationality":"VEN","sex":"female","date_of_birth":"1985-05-28T00:00:00.000Z","height":1.8,"weight":99,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":730862558,"name":"Ai Fukuhara","nationality":"JPN","sex":"female","date_of_birth":"1988-11-01T00:00:00.000Z","height":1.56,"weight":48,"sport":"table tennis","gold":0,"silver":0,"bronze":1,"info":null},{"id":488478701,"name":"Ai Kondo Yoshida","nationality":"JPN","sex":"female","date_of_birth":"1980-11-05T00:00:00.000Z","height":1.61,"weight":58,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":975475720,"name":"Ai Ueda","nationality":"JPN","sex":"female","date_of_birth":"1983-10-26T00:00:00.000Z","height":1.55,"weight":44,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":544308054,"name":"Ai Wen Yu","nationality":"TPE","sex":"female","date_of_birth":"1995-12-27T00:00:00.000Z","height":1.57,"weight":52,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":696719880,"name":"Aiaal Lazarev","nationality":"KGZ","sex":"male","date_of_birth":"1986-03-19T00:00:00.000Z","height":1.95,"weight":125,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":634178292,"name":"Aichen Wang","nationality":"CHN","sex":"male","date_of_birth":"1985-03-28T00:00:00.000Z","height":1.85,"weight":75,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":537808926,"name":"Aida Fall","nationality":"SEN","sex":"female","date_of_birth":"1986-11-10T00:00:00.000Z","height":1.93,"weight":95,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":155951731,"name":"Aida Mohamed","nationality":"HUN","sex":"female","date_of_birth":"1976-03-12T00:00:00.000Z","height":1.62,"weight":58,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":531077009,"name":"Aida Roman","nationality":"MEX","sex":"female","date_of_birth":"1988-05-21T00:00:00.000Z","height":1.69,"weight":64,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":750356217,"name":"Aida Shanaeva","nationality":"RUS","sex":"female","date_of_birth":"1986-04-23T00:00:00.000Z","height":1.73,"weight":63,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":248085477,"name":"Aidan Roach","nationality":"AUS","sex":"male","date_of_birth":"1990-09-07T00:00:00.000Z","height":1.87,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":743883365,"name":"Aika Hakoyama","nationality":"JPN","sex":"female","date_of_birth":"1991-07-27T00:00:00.000Z","height":1.76,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":110469224,"name":"Aikaterini Nikolaidou","nationality":"GRE","sex":"female","date_of_birth":"1992-10-22T00:00:00.000Z","height":1.8,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":823094336,"name":"Aikaterini-Maria Kontochristopoulou","nationality":"GRE","sex":"female","date_of_birth":"1997-06-10T00:00:00.000Z","height":1.68,"weight":58,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":574808106,"name":"Aiko Hayashi","nationality":"JPN","sex":"female","date_of_birth":"1993-11-17T00:00:00.000Z","height":1.66,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":676958658,"name":"Aiko Sugihara","nationality":"JPN","sex":"female","date_of_birth":"1999-09-19T00:00:00.000Z","height":1.46,"weight":35,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":420613340,"name":"Aileen Reid","nationality":"IRL","sex":"female","date_of_birth":"1982-06-15T00:00:00.000Z","height":1.69,"weight":53,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":172676108,"name":"Ailen Valente","nationality":"ARG","sex":"female","date_of_birth":"1996-03-26T00:00:00.000Z","height":1.67,"weight":58,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":971329341,"name":"Ailly Luciano","nationality":"NED","sex":"female","date_of_birth":"1991-03-25T00:00:00.000Z","height":1.71,"weight":69,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":356290857,"name":"Ailun Guo","nationality":"CHN","sex":"male","date_of_birth":"1993-11-14T00:00:00.000Z","height":1.92,"weight":85,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":273034565,"name":"Aimee Fisher","nationality":"NZL","sex":"female","date_of_birth":"1995-01-24T00:00:00.000Z","height":1.83,"weight":99,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":266091485,"name":"Aimee Willmott","nationality":"GBR","sex":"female","date_of_birth":"1993-02-26T00:00:00.000Z","height":1.71,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":912490592,"name":"Aina Cid I Centelles","nationality":"ESP","sex":"female","date_of_birth":"1994-09-01T00:00:00.000Z","height":1.7,"weight":60,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":674464910,"name":"Ainhoa Hernandez","nationality":"ESP","sex":"female","date_of_birth":"1994-04-27T00:00:00.000Z","height":1.8,"weight":88,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":14183642,"name":"Ainhoa Murua","nationality":"ESP","sex":"female","date_of_birth":"1978-07-18T00:00:00.000Z","height":1.6,"weight":48,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":871394696,"name":"Ainur Yesbergenova","nationality":"KAZ","sex":"female","date_of_birth":"1998-02-11T00:00:00.000Z","height":1.64,"weight":49,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":635098552,"name":"Airi Hatakeyama","nationality":"JPN","sex":"female","date_of_birth":"1994-08-16T00:00:00.000Z","height":1.71,"weight":46,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":965051843,"name":"Airine Palsyte","nationality":"LTU","sex":"female","date_of_birth":"1992-07-13T00:00:00.000Z","height":1.87,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":840071617,"name":"Aisen Chen","nationality":"CHN","sex":"male","date_of_birth":"1995-10-22T00:00:00.000Z","height":1.68,"weight":60,"sport":"aquatics","gold":2,"silver":0,"bronze":0,"info":null},{"id":704825548,"name":"Aisha Praught","nationality":"JAM","sex":"female","date_of_birth":"1989-12-14T00:00:00.000Z","height":1.62,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":704391947,"name":"Aislin Jones","nationality":"AUS","sex":"female","date_of_birth":"2000-02-08T00:00:00.000Z","height":1.57,"weight":51,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":273177958,"name":"Aisuluu Tynybekova","nationality":"KGZ","sex":"female","date_of_birth":"1993-05-04T00:00:00.000Z","height":1.7,"weight":58,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":191963338,"name":"Aitor Martinez Rodriguez","nationality":"ESP","sex":"male","date_of_birth":"1993-08-22T00:00:00.000Z","height":1.83,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":678408880,"name":"Aivi Luik","nationality":"AUS","sex":"female","date_of_birth":"1985-03-18T00:00:00.000Z","height":1.63,"weight":58,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":234338084,"name":"Ajee Wilson","nationality":"USA","sex":"female","date_of_birth":"1994-05-08T00:00:00.000Z","height":1.73,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":374861025,"name":"Ajla del Ponte","nationality":"SUI","sex":"female","date_of_birth":"1996-07-15T00:00:00.000Z","height":1.68,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":504635619,"name":"Ajna Kesely","nationality":"HUN","sex":"female","date_of_birth":"2001-09-10T00:00:00.000Z","height":1.65,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":680600926,"name":"Akalani Baravilala","nationality":"USA","sex":"female","date_of_birth":"1991-07-12T00:00:00.000Z","height":1.68,"weight":74,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":213555250,"name":"Akane Kuroki","nationality":"JPN","sex":"female","date_of_birth":"1978-08-13T00:00:00.000Z","height":1.65,"weight":50,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":58865414,"name":"Akane Shibata","nationality":"JPN","sex":"female","date_of_birth":"1988-04-30T00:00:00.000Z","height":1.53,"weight":50,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":677730191,"name":"Akane Yamaguchi","nationality":"JPN","sex":"female","date_of_birth":"1997-06-06T00:00:00.000Z","height":1.56,"weight":55,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":265984930,"name":"Akani Simbine","nationality":"RSA","sex":"male","date_of_birth":"1993-09-21T00:00:00.000Z","height":1.76,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":285797294,"name":"Akashdeep Singh","nationality":"IND","sex":"male","date_of_birth":"1994-12-02T00:00:00.000Z","height":1.78,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":769580282,"name":"Akeem Haynes","nationality":"CAN","sex":"male","date_of_birth":"1992-03-11T00:00:00.000Z","height":1.68,"weight":71,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":194243947,"name":"Akela Jones","nationality":"BAR","sex":"female","date_of_birth":"1995-04-22T00:00:00.000Z","height":1.86,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":58705332,"name":"Aki Mitsuhashi","nationality":"JPN","sex":"female","date_of_birth":"1989-09-12T00:00:00.000Z","height":1.66,"weight":59,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":921789441,"name":"Aki Yazawa","nationality":"JPN","sex":"female","date_of_birth":"1991-11-05T00:00:00.000Z","height":1.56,"weight":50,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":327133724,"name":"Akihiko Nakamura","nationality":"JPN","sex":"male","date_of_birth":"1990-10-23T00:00:00.000Z","height":1.8,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":346354435,"name":"Akiko Sato","nationality":"JPN","sex":"female","date_of_birth":"1984-02-09T00:00:00.000Z","height":1.62,"weight":58,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":850163240,"name":"Akira Ioane","nationality":"NZL","sex":"male","date_of_birth":"1995-06-16T00:00:00.000Z","height":1.94,"weight":113,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":816408353,"name":"Akira Yanase","nationality":"JPN","sex":"male","date_of_birth":"1988-08-11T00:00:00.000Z","height":1.91,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":959689266,"name":"Akossiwa Claire Ayivon","nationality":"TOG","sex":"female","date_of_birth":"1996-08-11T00:00:00.000Z","height":null,"weight":null,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":152032519,"name":"Akua Obeng-Akrofi","nationality":"GHA","sex":"female","date_of_birth":"1996-07-10T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":593452734,"name":"Alaa Ali","nationality":"IRQ","sex":"male","date_of_birth":"1996-06-03T00:00:00.000Z","height":1.78,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":747058984,"name":"Alaaeldin Abouelkassem","nationality":"EGY","sex":"male","date_of_birth":"1990-11-25T00:00:00.000Z","height":1.88,"weight":87,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":249203070,"name":"Alade Aminu","nationality":"NGR","sex":"male","date_of_birth":"1987-09-14T00:00:00.000Z","height":2.1,"weight":102,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":158571661,"name":"Alain Sign","nationality":"GBR","sex":"male","date_of_birth":"1986-02-03T00:00:00.000Z","height":1.81,"weight":84,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":471888446,"name":"Alan Campbell","nationality":"GBR","sex":"male","date_of_birth":"1983-05-09T00:00:00.000Z","height":1.91,"weight":96,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":275659106,"name":"Alan Hatherly","nationality":"RSA","sex":"male","date_of_birth":"1996-03-15T00:00:00.000Z","height":1.78,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":488926827,"name":"Alan Sinclair","nationality":"GBR","sex":"male","date_of_birth":"1985-10-16T00:00:00.000Z","height":1.92,"weight":96,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":386179468,"name":"Alan Sothern","nationality":"IRL","sex":"male","date_of_birth":"1987-07-28T00:00:00.000Z","height":1.78,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":68100583,"name":"Alana Barber","nationality":"NZL","sex":"female","date_of_birth":"1987-07-08T00:00:00.000Z","height":1.63,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":662496867,"name":"Alana Boyd","nationality":"AUS","sex":"female","date_of_birth":"1984-05-10T00:00:00.000Z","height":1.71,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":812220330,"name":"Alanna Kennedy","nationality":"AUS","sex":"female","date_of_birth":"1995-01-21T00:00:00.000Z","height":1.76,"weight":63,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":923852920,"name":"Alastair Brogdon","nationality":"GBR","sex":"male","date_of_birth":"1987-11-10T00:00:00.000Z","height":1.83,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":533114803,"name":"Alba Torrens","nationality":"ESP","sex":"female","date_of_birth":"1989-08-30T00:00:00.000Z","height":1.91,"weight":68,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":551413911,"name":"Albachir Mouctar","nationality":"NIG","sex":"male","date_of_birth":"1995-05-01T00:00:00.000Z","height":1.78,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":92096398,"name":"Albane Valenzuela","nationality":"SUI","sex":"female","date_of_birth":"1997-12-17T00:00:00.000Z","height":1.74,"weight":58,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":930879907,"name":"Albert Espanol Lifante","nationality":"ESP","sex":"male","date_of_birth":"1985-10-29T00:00:00.000Z","height":1.89,"weight":86,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":596935178,"name":"Albert Gaun","nationality":"RUS","sex":"male","date_of_birth":"1992-06-21T00:00:00.000Z","height":1.85,"weight":80,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":70764024,"name":"Albert Hermoso Farras","nationality":"ESP","sex":"male","date_of_birth":"1978-08-28T00:00:00.000Z","height":1.68,"weight":65,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":172435291,"name":"Albert Kibichii Rop","nationality":"BRN","sex":"male","date_of_birth":"1992-07-17T00:00:00.000Z","height":1.77,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":389597142,"name":"Albert Puig Garrich","nationality":"ESP","sex":"male","date_of_birth":"1994-04-01T00:00:00.000Z","height":1.84,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":184326688,"name":"Albert Ramon Ramirez","nationality":"VEN","sex":"male","date_of_birth":"1992-05-07T00:00:00.000Z","height":1.82,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":100190722,"name":"Albert Ramos-Vinolas","nationality":"ESP","sex":"male","date_of_birth":"1988-01-17T00:00:00.000Z","height":1.88,"weight":80,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":366742302,"name":"Albert Saritov","nationality":"ROU","sex":"male","date_of_birth":"1985-07-08T00:00:00.000Z","height":1.88,"weight":100,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":670559048,"name":"Albert Selimov","nationality":"AZE","sex":"male","date_of_birth":"1986-04-05T00:00:00.000Z","height":1.71,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":124573287,"name":"Albert Subirats","nationality":"VEN","sex":"male","date_of_birth":"1986-09-25T00:00:00.000Z","height":1.9,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":635016740,"name":"Alberth Bravo","nationality":"VEN","sex":"male","date_of_birth":"1987-08-29T00:00:00.000Z","height":1.99,"weight":88,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":502881474,"name":"Alberth Elis","nationality":"HON","sex":"male","date_of_birth":"1996-02-12T00:00:00.000Z","height":1.84,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":583503806,"name":"Albertina Cruz Kassoma","nationality":"ANG","sex":"female","date_of_birth":"1996-06-12T00:00:00.000Z","height":1.92,"weight":105,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":804217525,"name":"Alberto Alvarez","nationality":"MEX","sex":"male","date_of_birth":"1991-03-08T00:00:00.000Z","height":1.91,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":331799449,"name":"Alberto Ezequiel Melian","nationality":"ARG","sex":"male","date_of_birth":"1990-01-02T00:00:00.000Z","height":1.7,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":532248667,"name":"Alberto Fernandez","nationality":"ESP","sex":"male","date_of_birth":"1983-06-16T00:00:00.000Z","height":1.8,"weight":115,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":566773050,"name":"Alberto Ignacio Palmetta","nationality":"ARG","sex":"male","date_of_birth":"1990-04-05T00:00:00.000Z","height":1.75,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":220269839,"name":"Alberto Munarriz Egana","nationality":"ESP","sex":"male","date_of_birth":"1994-05-19T00:00:00.000Z","height":1.98,"weight":105,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":861268031,"name":"Alberto Ricchetti","nationality":"ITA","sex":"male","date_of_birth":"1985-05-26T00:00:00.000Z","height":1.86,"weight":88,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":663206046,"name":"Albin Lagergren","nationality":"SWE","sex":"male","date_of_birth":"1992-09-11T00:00:00.000Z","height":1.86,"weight":94,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":966601149,"name":"Albina Shakirova","nationality":"RUS","sex":"female","date_of_birth":"1987-03-30T00:00:00.000Z","height":1.65,"weight":50,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":74286490,"name":"Aldemir da Silva Junior","nationality":"BRA","sex":"male","date_of_birth":"1992-06-08T00:00:00.000Z","height":1.93,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":46123715,"name":"Aldo Montano","nationality":"ITA","sex":"male","date_of_birth":"1978-11-18T00:00:00.000Z","height":1.84,"weight":82,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":343089125,"name":"Alec Potts","nationality":"AUS","sex":"male","date_of_birth":"1996-02-09T00:00:00.000Z","height":1.85,"weight":77,"sport":"archery","gold":0,"silver":0,"bronze":1,"info":null},{"id":210525666,"name":"Aleixo-Platini Menga","nationality":"GER","sex":"male","date_of_birth":"1987-09-29T00:00:00.000Z","height":1.82,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":969294495,"name":"Alejandra Betancur","nationality":"COL","sex":"female","date_of_birth":"1987-06-13T00:00:00.000Z","height":1.6,"weight":82,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":388913856,"name":"Alejandra Garza Garza","nationality":"MEX","sex":"female","date_of_birth":"1991-08-01T00:00:00.000Z","height":1.65,"weight":75,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":883610308,"name":"Alejandra Jhonay Benitez Romero","nationality":"VEN","sex":"female","date_of_birth":"1980-07-07T00:00:00.000Z","height":1.69,"weight":62,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":694204413,"name":"Alejandra Llaneza","nationality":"MEX","sex":"female","date_of_birth":"1988-05-31T00:00:00.000Z","height":1.58,"weight":48,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":400375379,"name":"Alejandra Orozco","nationality":"MEX","sex":"female","date_of_birth":"1997-04-19T00:00:00.000Z","height":1.57,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":151538357,"name":"Alejandra Ortega","nationality":"MEX","sex":"female","date_of_birth":"1994-07-08T00:00:00.000Z","height":1.65,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":281414786,"name":"Alejandra Quereda","nationality":"ESP","sex":"female","date_of_birth":"1992-07-24T00:00:00.000Z","height":1.75,"weight":54,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":null},{"id":471263119,"name":"Alejandra Teran","nationality":"MEX","sex":"female","date_of_birth":"1991-01-20T00:00:00.000Z","height":1.76,"weight":73,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":929131268,"name":"Alejandra Valencia","nationality":"MEX","sex":"female","date_of_birth":"1994-10-17T00:00:00.000Z","height":1.75,"weight":74,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":419155357,"name":"Alejandra Zavala Vazquez","nationality":"MEX","sex":"female","date_of_birth":"1984-06-16T00:00:00.000Z","height":1.65,"weight":85,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":440339638,"name":"Alejandro Enrique Valdes Tobier","nationality":"CUB","sex":"male","date_of_birth":"1988-11-18T00:00:00.000Z","height":1.65,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":691394107,"name":"Alejandro Foglia Costa","nationality":"URU","sex":"male","date_of_birth":"1984-01-30T00:00:00.000Z","height":1.9,"weight":96,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":813391088,"name":"Alejandro Valverde Belmonte","nationality":"ESP","sex":"male","date_of_birth":"1980-04-25T00:00:00.000Z","height":1.77,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":288835407,"name":"Aleksandar Aleksandrov","nationality":"AZE","sex":"male","date_of_birth":"1990-04-09T00:00:00.000Z","height":1.89,"weight":93,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":299839075,"name":"Aleksandar IVOVIC","nationality":"MNE","sex":"male","date_of_birth":"1986-02-24T00:00:00.000Z","height":1.97,"weight":107,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":371740701,"name":"Aleksandar Karakasevic","nationality":"SRB","sex":"male","date_of_birth":"1975-12-09T00:00:00.000Z","height":1.78,"weight":85,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":150583899,"name":"Aleksandar Kukolj","nationality":"SRB","sex":"male","date_of_birth":"1991-09-09T00:00:00.000Z","height":1.94,"weight":94,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":156829148,"name":"Aleksandar Nikolov","nationality":"BUL","sex":"male","date_of_birth":"1992-06-18T00:00:00.000Z","height":1.85,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":39610779,"name":"Aleksandar RADOVIC","nationality":"MNE","sex":"male","date_of_birth":"1987-02-24T00:00:00.000Z","height":1.91,"weight":98,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":150706476,"name":"Aleksandr Krasnykh","nationality":"RUS","sex":"male","date_of_birth":"1995-06-19T00:00:00.000Z","height":1.88,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":461398245,"name":"Aleksandr Lipatov","nationality":"RUS","sex":"male","date_of_birth":"1981-06-10T00:00:00.000Z","height":1.84,"weight":77,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":825626228,"name":"Aleksandr Markov","nationality":"RUS","sex":"male","date_of_birth":"1985-05-26T00:00:00.000Z","height":1.79,"weight":70,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":26501082,"name":"Aleksandr Popkov","nationality":"RUS","sex":"male","date_of_birth":"1994-12-27T00:00:00.000Z","height":1.85,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":442737224,"name":"Aleksandr Sadovnikov","nationality":"RUS","sex":"male","date_of_birth":"1996-09-21T00:00:00.000Z","height":1.93,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":928101165,"name":"Aleksandra Cotti","nationality":"ITA","sex":"female","date_of_birth":"1988-12-13T00:00:00.000Z","height":1.67,"weight":65,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":15347644,"name":"Aleksandra Crvendakic","nationality":"SRB","sex":"female","date_of_birth":"1996-03-17T00:00:00.000Z","height":1.87,"weight":76,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":398269007,"name":"Aleksandra Jarmolinska","nationality":"POL","sex":"female","date_of_birth":"1990-09-06T00:00:00.000Z","height":1.6,"weight":67,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":344407164,"name":"Aleksandra Krunic","nationality":"SRB","sex":"female","date_of_birth":"1993-03-15T00:00:00.000Z","height":1.63,"weight":55,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":598990857,"name":"Aleksandra Patskevich","nationality":"RUS","sex":"female","date_of_birth":"1988-11-04T00:00:00.000Z","height":1.69,"weight":49,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":832551080,"name":"Aleksandra Romanova","nationality":"KAZ","sex":"female","date_of_birth":"1990-12-26T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":778823226,"name":"Aleksandra Socha","nationality":"POL","sex":"female","date_of_birth":"1982-03-30T00:00:00.000Z","height":1.74,"weight":66,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":146965989,"name":"Aleksandra Urbanczyk","nationality":"POL","sex":"female","date_of_birth":"1987-11-13T00:00:00.000Z","height":1.72,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":265023366,"name":"Aleksandrs Samoilovs","nationality":"LAT","sex":"male","date_of_birth":"1985-04-06T00:00:00.000Z","height":1.96,"weight":98,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":282139882,"name":"Aleksei Brianskii","nationality":"RUS","sex":"male","date_of_birth":"1997-09-14T00:00:00.000Z","height":1.92,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":646633611,"name":"Aleksei Kurbatov","nationality":"RUS","sex":"male","date_of_birth":"1994-05-09T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":200955001,"name":"Aleksejs Rumjancevs","nationality":"LAT","sex":"male","date_of_birth":"1986-02-13T00:00:00.000Z","height":1.85,"weight":90,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":285964258,"name":"Aleksejs Saramotins","nationality":"LAT","sex":"male","date_of_birth":"1982-04-08T00:00:00.000Z","height":1.85,"weight":75,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":169040459,"name":"Aleksey Mochalov","nationality":"UZB","sex":"male","date_of_birth":"1990-02-13T00:00:00.000Z","height":1.86,"weight":90,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":191984367,"name":"Aleksi Ojala","nationality":"FIN","sex":"male","date_of_birth":"1992-12-09T00:00:00.000Z","height":1.8,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":462274321,"name":"Alemu Bekele","nationality":"BRN","sex":"male","date_of_birth":"1990-03-23T00:00:00.000Z","height":1.62,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":571628094,"name":"Alen Zasieiev","nationality":"UKR","sex":"male","date_of_birth":"1988-10-10T00:00:00.000Z","height":1.85,"weight":125,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":871020123,"name":"Alena Abramchuk","nationality":"BLR","sex":"female","date_of_birth":"1988-02-14T00:00:00.000Z","height":1.82,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":603507285,"name":"Alena Amialiusik","nationality":"BLR","sex":"female","date_of_birth":"1989-02-06T00:00:00.000Z","height":1.69,"weight":52,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":390806588,"name":"Alena Furman","nationality":"BLR","sex":"female","date_of_birth":"1991-05-08T00:00:00.000Z","height":1.79,"weight":65,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":84230211,"name":"Alena Sharp","nationality":"CAN","sex":"female","date_of_birth":"1981-03-07T00:00:00.000Z","height":1.68,"weight":69,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":30712954,"name":"Alena Sobaleva","nationality":"BLR","sex":"female","date_of_birth":"1993-05-11T00:00:00.000Z","height":1.78,"weight":87,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":906750380,"name":"Alesha Widdall","nationality":"USA","sex":"female","date_of_birth":"1990-01-03T00:00:00.000Z","height":1.73,"weight":65,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":779596907,"name":"Alessandra Aguilar","nationality":"ESP","sex":"female","date_of_birth":"1978-07-01T00:00:00.000Z","height":1.65,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":236415837,"name":"Alessandra Patelli","nationality":"ITA","sex":"female","date_of_birth":"1991-11-17T00:00:00.000Z","height":1.8,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":820764186,"name":"Alessandra Perilli","nationality":"SMR","sex":"female","date_of_birth":"1988-04-01T00:00:00.000Z","height":1.69,"weight":73,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":630246233,"name":"Alessandro De Marchi","nationality":"ITA","sex":"male","date_of_birth":"1986-05-19T00:00:00.000Z","height":1.81,"weight":66,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":24174970,"name":"Alessandro Fabian","nationality":"ITA","sex":"male","date_of_birth":"1988-01-07T00:00:00.000Z","height":1.86,"weight":77,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":213338722,"name":"Alessandro Nora","nationality":"ITA","sex":"male","date_of_birth":"1987-05-24T00:00:00.000Z","height":1.91,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":346410285,"name":"Alessandro Velotto","nationality":"ITA","sex":"male","date_of_birth":"1995-02-12T00:00:00.000Z","height":1.86,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":5076328,"name":"Alessia Gennari","nationality":"ITA","sex":"female","date_of_birth":"1991-11-03T00:00:00.000Z","height":1.84,"weight":68,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":559742871,"name":"Alessia Maurelli","nationality":"ITA","sex":"female","date_of_birth":"1996-08-22T00:00:00.000Z","height":1.68,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":488353513,"name":"Alessia Orro","nationality":"ITA","sex":"female","date_of_birth":"1998-07-18T00:00:00.000Z","height":1.8,"weight":74,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":767623428,"name":"Alessia Polieri","nationality":"ITA","sex":"female","date_of_birth":"1994-10-21T00:00:00.000Z","height":1.63,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":389711690,"name":"Alessia Trost","nationality":"ITA","sex":"female","date_of_birth":"1993-03-08T00:00:00.000Z","height":1.88,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":636505415,"name":"Aletta Jorritsma","nationality":"NED","sex":"female","date_of_birth":"1989-05-17T00:00:00.000Z","height":1.86,"weight":76,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":746309995,"name":"Alev Kelter","nationality":"USA","sex":"female","date_of_birth":"1991-03-21T00:00:00.000Z","height":1.68,"weight":74,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":178787882,"name":"Alex Abrines","nationality":"ESP","sex":"male","date_of_birth":"1993-08-01T00:00:00.000Z","height":1.98,"weight":93,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":527236860,"name":"Alex Amankwah","nationality":"GHA","sex":"male","date_of_birth":"1992-03-02T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":24122998,"name":"Alex Beddoes","nationality":"COK","sex":"male","date_of_birth":"1995-07-09T00:00:00.000Z","height":1.81,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":334218519,"name":"Alex Bowen","nationality":"USA","sex":"male","date_of_birth":"1993-09-04T00:00:00.000Z","height":1.96,"weight":102,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":962040149,"name":"Alex Casasayas","nationality":"ESP","sex":"male","date_of_birth":"1988-02-17T00:00:00.000Z","height":1.83,"weight":78,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":794799982,"name":"Alex Cejka","nationality":"GER","sex":"male","date_of_birth":"1970-12-02T00:00:00.000Z","height":1.68,"weight":65,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":566695148,"name":"Alex Garcia","nationality":"BRA","sex":"male","date_of_birth":"1980-03-04T00:00:00.000Z","height":1.92,"weight":102,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":204746498,"name":"Alex Garcia Mendoza","nationality":"CUB","sex":"male","date_of_birth":"1993-06-02T00:00:00.000Z","height":1.86,"weight":110,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":544745828,"name":"Alex Gregory","nationality":"GBR","sex":"male","date_of_birth":"1984-03-11T00:00:00.000Z","height":1.98,"weight":97,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":851889356,"name":"Alex Hua Tian","nationality":"CHN","sex":"male","date_of_birth":"1989-10-25T00:00:00.000Z","height":1.9,"weight":70,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":212901658,"name":"Alex Kennedy","nationality":"NZL","sex":"male","date_of_birth":"1992-10-13T00:00:00.000Z","height":1.96,"weight":96,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":967635529,"name":"Alex Maloney","nationality":"NZL","sex":"female","date_of_birth":"1992-03-19T00:00:00.000Z","height":1.58,"weight":56,"sport":"sailing","gold":0,"silver":1,"bronze":0,"info":null},{"id":723568012,"name":"Alex Morgan","nationality":"USA","sex":"female","date_of_birth":"1989-07-02T00:00:00.000Z","height":1.7,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":531765497,"name":"Alex Obert","nationality":"USA","sex":"male","date_of_birth":"1991-12-18T00:00:00.000Z","height":1.96,"weight":105,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":557501936,"name":"Alex Ranghieri","nationality":"ITA","sex":"male","date_of_birth":"1987-06-18T00:00:00.000Z","height":2,"weight":94,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":240862321,"name":"Alex Roelse","nationality":"USA","sex":"male","date_of_birth":"1995-01-10T00:00:00.000Z","height":2.04,"weight":115,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":107240268,"name":"Alex Rose","nationality":"SAM","sex":"male","date_of_birth":"1991-11-17T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":58596600,"name":"Alex Sobers","nationality":"BAR","sex":"male","date_of_birth":"1998-11-13T00:00:00.000Z","height":1.88,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":703205900,"name":"Alex William Pombo Silva","nationality":"BRA","sex":"male","date_of_birth":"1988-07-21T00:00:00.000Z","height":1.74,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":636907352,"name":"Alex Wright","nationality":"IRL","sex":"male","date_of_birth":"1990-12-19T00:00:00.000Z","height":1.75,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":893073673,"name":"Alex di Giorgio","nationality":"ITA","sex":"male","date_of_birth":"1990-07-28T00:00:00.000Z","height":1.85,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":644656107,"name":"Alexa Moreno","nationality":"MEX","sex":"female","date_of_birth":"1994-08-08T00:00:00.000Z","height":1.47,"weight":45,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":898510239,"name":"Alexander Belonogoff","nationality":"AUS","sex":"male","date_of_birth":"1990-04-17T00:00:00.000Z","height":1.87,"weight":90,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":583622968,"name":"Alexander Brouwer","nationality":"NED","sex":"male","date_of_birth":"1989-11-03T00:00:00.000Z","height":1.98,"weight":90,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":771200886,"name":"Alexander Bryukhankov","nationality":"RUS","sex":"male","date_of_birth":"1987-04-12T00:00:00.000Z","height":1.84,"weight":79,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":525300567,"name":"Alexander Bury","nationality":"BLR","sex":"male","date_of_birth":"1987-09-14T00:00:00.000Z","height":1.84,"weight":94,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":750329482,"name":"Alexander Choupenitch","nationality":"CZE","sex":"male","date_of_birth":"1994-05-02T00:00:00.000Z","height":1.96,"weight":89,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":737791847,"name":"Alexander Edmondson","nationality":"AUS","sex":"male","date_of_birth":"1993-12-22T00:00:00.000Z","height":1.84,"weight":76,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":3104691,"name":"Alexander Fransson","nationality":"SWE","sex":"male","date_of_birth":"1994-04-02T00:00:00.000Z","height":1.8,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":100528515,"name":"Alexander Gehbauer","nationality":"AUT","sex":"male","date_of_birth":"1990-04-24T00:00:00.000Z","height":1.85,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":515896035,"name":"Alexander Hartmann","nationality":"AUS","sex":"male","date_of_birth":"1993-03-07T00:00:00.000Z","height":1.98,"weight":91,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":986385043,"name":"Alexander Hendrickx","nationality":"BEL","sex":"male","date_of_birth":"1993-08-06T00:00:00.000Z","height":1.85,"weight":82,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":711926626,"name":"Alexander Hill","nationality":"AUS","sex":"male","date_of_birth":"1993-03-11T00:00:00.000Z","height":1.93,"weight":91,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":45190859,"name":"Alexander Horst","nationality":"AUT","sex":"male","date_of_birth":"1982-12-20T00:00:00.000Z","height":1.86,"weight":88,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":724710281,"name":"Alexander Huber","nationality":"AUT","sex":"male","date_of_birth":"1985-07-25T00:00:00.000Z","height":1.79,"weight":64,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":604407494,"name":"Alexander John","nationality":"GER","sex":"male","date_of_birth":"1986-05-03T00:00:00.000Z","height":1.85,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":300967214,"name":"Alexander Karwoski","nationality":"USA","sex":"male","date_of_birth":"1990-09-16T00:00:00.000Z","height":1.94,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":41863727,"name":"Alexander Kosenkow","nationality":"GER","sex":"male","date_of_birth":"1977-03-14T00:00:00.000Z","height":1.78,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":5256036,"name":"Alexander Leksell","nationality":"SWE","sex":"male","date_of_birth":"1997-02-14T00:00:00.000Z","height":1.76,"weight":78,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":37893138,"name":"Alexander Lerionka Sampao","nationality":"KEN","sex":"male","date_of_birth":"1996-12-31T00:00:00.000Z","height":null,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":911821683,"name":"Alexander Lesun","nationality":"RUS","sex":"male","date_of_birth":"1988-07-01T00:00:00.000Z","height":1.85,"weight":74,"sport":"modern pentathlon","gold":1,"silver":0,"bronze":0,"info":null},{"id":703140166,"name":"Alexander Lloyd","nationality":"AUS","sex":"male","date_of_birth":"1990-12-17T00:00:00.000Z","height":1.89,"weight":89,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":994257957,"name":"Alexander Massialas","nationality":"USA","sex":"male","date_of_birth":"1994-04-20T00:00:00.000Z","height":1.88,"weight":81,"sport":"fencing","gold":0,"silver":1,"bronze":1,"info":null},{"id":517168133,"name":"Alexander Milosevic","nationality":"SWE","sex":"male","date_of_birth":"1992-01-30T00:00:00.000Z","height":1.92,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":589365060,"name":"Alexander Molerio Quintana","nationality":"CUB","sex":"male","date_of_birth":"1991-09-19T00:00:00.000Z","height":1.69,"weight":75,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":536913332,"name":"Alexander Naddour","nationality":"USA","sex":"male","date_of_birth":"1991-03-04T00:00:00.000Z","height":1.71,"weight":70,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":110525640,"name":"Alexander Peya","nationality":"AUT","sex":"male","date_of_birth":"1980-06-27T00:00:00.000Z","height":1.82,"weight":80,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":658069337,"name":"Alexander Russo","nationality":"BRA","sex":"male","date_of_birth":"1994-07-26T00:00:00.000Z","height":1.73,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":648973939,"name":"Alexander Schmirl","nationality":"AUT","sex":"male","date_of_birth":"1989-09-19T00:00:00.000Z","height":1.76,"weight":95,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":961318209,"name":"Alexander Shatilov","nationality":"ISR","sex":"male","date_of_birth":"1987-03-22T00:00:00.000Z","height":1.83,"weight":77,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":909129710,"name":"Alexander Shibaev","nationality":"RUS","sex":"male","date_of_birth":"1990-09-09T00:00:00.000Z","height":1.92,"weight":80,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":452039868,"name":"Alexander Sigurbjornsson","nationality":"ESP","sex":"male","date_of_birth":"1988-12-13T00:00:00.000Z","height":1.8,"weight":80,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":484197906,"name":"Alexander Sukhorukov","nationality":"RUS","sex":"male","date_of_birth":"1988-02-22T00:00:00.000Z","height":1.96,"weight":93,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":120799596,"name":"Alexander Volkov","nationality":"RUS","sex":"male","date_of_birth":"1985-02-14T00:00:00.000Z","height":2.1,"weight":90,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":745034260,"name":"Alexandr Spac","nationality":"MDA","sex":"male","date_of_birth":"1989-11-21T00:00:00.000Z","height":1.64,"weight":77,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":188141447,"name":"Alexandr Yemelyanov","nationality":"KAZ","sex":"male","date_of_birth":"1984-01-01T00:00:00.000Z","height":1.84,"weight":97,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":928138606,"name":"Alexandr Zaichikov","nationality":"KAZ","sex":"male","date_of_birth":"1992-08-17T00:00:00.000Z","height":1.8,"weight":105,"sport":"weightlifting","gold":0,"silver":0,"bronze":1,"info":null},{"id":878621949,"name":"Alexandra Burghardt","nationality":"GER","sex":"female","date_of_birth":"1994-04-28T00:00:00.000Z","height":1.81,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":566681185,"name":"Alexandra Danson","nationality":"GBR","sex":"female","date_of_birth":"1985-05-21T00:00:00.000Z","height":1.67,"weight":56,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":612116227,"name":"Alexandra Hagan","nationality":"AUS","sex":"female","date_of_birth":"1991-03-21T00:00:00.000Z","height":1.82,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":383231190,"name":"Alexandra Keresztesi","nationality":"ARG","sex":"female","date_of_birth":"1983-04-26T00:00:00.000Z","height":1.83,"weight":72,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":191014767,"name":"Alexandra Lacrabere","nationality":"FRA","sex":"female","date_of_birth":"1987-04-27T00:00:00.000Z","height":1.77,"weight":73,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":486083635,"name":"Alexandra Longova","nationality":"SVK","sex":"female","date_of_birth":"1994-02-07T00:00:00.000Z","height":1.73,"weight":51,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":30769207,"name":"Alexandra Martinez","nationality":"BRA","sex":"female","date_of_birth":"1981-09-16T00:00:00.000Z","height":1.77,"weight":68,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":921114489,"name":"Alexandra Mirca","nationality":"MDA","sex":"female","date_of_birth":"1993-10-11T00:00:00.000Z","height":1.68,"weight":70,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":338753895,"name":"Alexandra Nemich","nationality":"KAZ","sex":"female","date_of_birth":"1995-01-03T00:00:00.000Z","height":1.68,"weight":46,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":599952871,"name":"Alexandra Oquendo","nationality":"PUR","sex":"female","date_of_birth":"1984-02-03T00:00:00.000Z","height":1.89,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":125810149,"name":"Alexandra Popp","nationality":"GER","sex":"female","date_of_birth":"1991-04-06T00:00:00.000Z","height":1.74,"weight":65,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":891965491,"name":"Alexandra Privalova","nationality":"BLR","sex":"female","date_of_birth":"1987-10-29T00:00:00.000Z","height":1.78,"weight":66,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":71010173,"name":"Alexandra Raisman","nationality":"USA","sex":"female","date_of_birth":"1994-05-25T00:00:00.000Z","height":1.58,"weight":52,"sport":"gymnastics","gold":1,"silver":2,"bronze":0,"info":null},{"id":256577556,"name":"Alexandra Razarenova","nationality":"RUS","sex":"female","date_of_birth":"1990-07-17T00:00:00.000Z","height":1.68,"weight":56,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":692519892,"name":"Alexandra Tavernier","nationality":"FRA","sex":"female","date_of_birth":"1993-12-13T00:00:00.000Z","height":1.7,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":443690040,"name":"Alexandra Touretski","nationality":"SUI","sex":"female","date_of_birth":"1994-09-20T00:00:00.000Z","height":1.7,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":475551107,"name":"Alexandra Wenk","nationality":"GER","sex":"female","date_of_birth":"1995-02-07T00:00:00.000Z","height":1.8,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":872947130,"name":"Alexandra Wester","nationality":"GER","sex":"female","date_of_birth":"1994-03-21T00:00:00.000Z","height":1.8,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":753747706,"name":"Alexandre Ayache","nationality":"FRA","sex":"male","date_of_birth":"1982-09-20T00:00:00.000Z","height":1.8,"weight":80,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":356907302,"name":"Alexandre Bouzaid","nationality":"SEN","sex":"male","date_of_birth":"1981-06-29T00:00:00.000Z","height":1.68,"weight":75,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":538814395,"name":"Alexandre Camarasa","nationality":"FRA","sex":"male","date_of_birth":"1987-06-10T00:00:00.000Z","height":1.93,"weight":100,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":333303277,"name":"Alexandre Camargo","nationality":"BRA","sex":"male","date_of_birth":"1999-04-25T00:00:00.000Z","height":1.77,"weight":75,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":718560734,"name":"Alexandre Haldemann","nationality":"SUI","sex":"male","date_of_birth":"1995-03-08T00:00:00.000Z","height":1.86,"weight":81,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":203028845,"name":"Alexandre Iddir","nationality":"FRA","sex":"male","date_of_birth":"1991-02-21T00:00:00.000Z","height":1.84,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":391830541,"name":"Alexandre de Paeuw","nationality":"BEL","sex":"male","date_of_birth":"1988-10-07T00:00:00.000Z","height":1.78,"weight":75,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":350839117,"name":"Alexandres Gounas","nationality":"GRE","sex":"male","date_of_birth":"1989-10-03T00:00:00.000Z","height":1.79,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":72024697,"name":"Alexandrina Cabral","nationality":"ESP","sex":"female","date_of_birth":"1986-05-05T00:00:00.000Z","height":1.75,"weight":62,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":17092453,"name":"Alexandro Pozzer","nationality":"BRA","sex":"male","date_of_birth":"1988-12-21T00:00:00.000Z","height":1.92,"weight":107,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":809372786,"name":"Alexandros Papamichail","nationality":"GRE","sex":"male","date_of_birth":"1988-09-18T00:00:00.000Z","height":1.78,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":992947913,"name":"Alexei Klimov","nationality":"RUS","sex":"male","date_of_birth":"1975-08-27T00:00:00.000Z","height":1.82,"weight":88,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":621322055,"name":"Alexei Sancov","nationality":"MDA","sex":"male","date_of_birth":"1999-10-15T00:00:00.000Z","height":1.88,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":434694198,"name":"Alexej Prochorow","nationality":"GER","sex":"male","date_of_birth":"1990-03-30T00:00:00.000Z","height":1.91,"weight":138,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":271488726,"name":"Alexey Alipov","nationality":"RUS","sex":"male","date_of_birth":"1975-08-07T00:00:00.000Z","height":1.74,"weight":80,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":251192385,"name":"Alexey Cheremisinov","nationality":"RUS","sex":"male","date_of_birth":"1985-07-09T00:00:00.000Z","height":1.83,"weight":75,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":318060996,"name":"Alexey Denisenko","nationality":"RUS","sex":"male","date_of_birth":"1993-08-30T00:00:00.000Z","height":1.85,"weight":68,"sport":"taekwondo","gold":0,"silver":1,"bronze":0,"info":null},{"id":221070420,"name":"Alexey Dergunov","nationality":"KAZ","sex":"male","date_of_birth":"1984-09-16T00:00:00.000Z","height":1.87,"weight":95,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":333787984,"name":"Alexey Verbov","nationality":"RUS","sex":"male","date_of_birth":"1982-01-31T00:00:00.000Z","height":1.83,"weight":79,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":527521403,"name":"Alexey Yakimenko","nationality":"RUS","sex":"male","date_of_birth":"1983-10-31T00:00:00.000Z","height":1.84,"weight":80,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":448880966,"name":"Alexi Pappas","nationality":"GRE","sex":"female","date_of_birth":"1990-03-28T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":524151751,"name":"Alexis Gonzalez","nationality":"ARG","sex":"male","date_of_birth":"1981-07-21T00:00:00.000Z","height":1.84,"weight":85,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":491625914,"name":"Alexis Raynaud","nationality":"FRA","sex":"male","date_of_birth":"1994-08-19T00:00:00.000Z","height":1.72,"weight":78,"sport":"shooting","gold":0,"silver":0,"bronze":1,"info":null},{"id":166278707,"name":"Alexis Santos","nationality":"POR","sex":"male","date_of_birth":"1992-03-23T00:00:00.000Z","height":1.85,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":697622072,"name":"Alexis Soto","nationality":"ARG","sex":"male","date_of_birth":"1993-10-20T00:00:00.000Z","height":1.64,"weight":66,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":194257222,"name":"Alexis Vuillermoz","nationality":"FRA","sex":"male","date_of_birth":"1988-06-01T00:00:00.000Z","height":1.73,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":860974311,"name":"Alexus Laird","nationality":"SEY","sex":"female","date_of_birth":"1993-03-11T00:00:00.000Z","height":1.72,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":108252301,"name":"Alfonso Antonio Leyva Yepez","nationality":"MEX","sex":"male","date_of_birth":"1993-01-06T00:00:00.000Z","height":1.81,"weight":85,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":231869553,"name":"Alfonso Benavides Lopez de Ayala","nationality":"ESP","sex":"male","date_of_birth":"1991-03-09T00:00:00.000Z","height":1.82,"weight":86,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":475919800,"name":"Alfred Kipketer","nationality":"KEN","sex":"male","date_of_birth":"1996-12-28T00:00:00.000Z","height":1.67,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":450635887,"name":"Alfredo Campo","nationality":"ECU","sex":"male","date_of_birth":"1993-03-02T00:00:00.000Z","height":1.92,"weight":90,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":736830151,"name":"Alfredo Talavera","nationality":"MEX","sex":"male","date_of_birth":"1982-09-18T00:00:00.000Z","height":1.88,"weight":84,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":233231940,"name":"Alhussein Gambour","nationality":"LBA","sex":"male","date_of_birth":"1989-08-21T00:00:00.000Z","height":1.75,"weight":68,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":604740736,"name":"Ali Adnan","nationality":"IRQ","sex":"male","date_of_birth":"1993-12-19T00:00:00.000Z","height":1.8,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":461686848,"name":"Ali Elghrari","nationality":"LBA","sex":"male","date_of_birth":"1997-01-31T00:00:00.000Z","height":null,"weight":null,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":668278260,"name":"Ali Eren Demirezen","nationality":"TUR","sex":"male","date_of_birth":"1990-04-02T00:00:00.000Z","height":1.89,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":737778764,"name":"Ali Faez","nationality":"IRQ","sex":"male","date_of_birth":"1994-09-09T00:00:00.000Z","height":1.84,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":800154411,"name":"Ali Hashemi","nationality":"IRI","sex":"male","date_of_birth":"1991-11-01T00:00:00.000Z","height":1.78,"weight":93,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":931441337,"name":"Ali Hisny","nationality":"IRQ","sex":"male","date_of_birth":"1994-05-23T00:00:00.000Z","height":1.77,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":670890480,"name":"Ali Kaya","nationality":"TUR","sex":"male","date_of_birth":"1994-04-20T00:00:00.000Z","height":1.75,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":732766543,"name":"Ali Khalafalla","nationality":"EGY","sex":"male","date_of_birth":"1996-05-13T00:00:00.000Z","height":1.82,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":702507964,"name":"Ali Khamis Khamis","nationality":"BRN","sex":"male","date_of_birth":"1995-06-30T00:00:00.000Z","height":1.82,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":969053827,"name":"Ali Krieger","nationality":"USA","sex":"female","date_of_birth":"1984-07-28T00:00:00.000Z","height":1.68,"weight":63,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":716391442,"name":"Ali Messaoudi","nationality":"ALG","sex":"male","date_of_birth":"1995-10-13T00:00:00.000Z","height":1.78,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":768503351,"name":"Ali Nouisri","nationality":"TUN","sex":"male","date_of_birth":"1994-01-20T00:00:00.000Z","height":1.84,"weight":75,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":853472045,"name":"Ali Pakdaman","nationality":"IRI","sex":"male","date_of_birth":"1990-08-23T00:00:00.000Z","height":1.93,"weight":94,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":89809268,"name":"Ali Riley","nationality":"NZL","sex":"female","date_of_birth":"1987-10-30T00:00:00.000Z","height":1.63,"weight":57,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":472145214,"name":"Ali Suljic","nationality":"SWE","sex":"male","date_of_birth":"1997-09-18T00:00:00.000Z","height":1.89,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":429169523,"name":"Ali Yousef Al Rumaihi","nationality":"QAT","sex":"male","date_of_birth":"1981-08-26T00:00:00.000Z","height":1.77,"weight":86,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":220820586,"name":"Ali Zein Mohamed","nationality":"EGY","sex":"male","date_of_birth":"1990-12-14T00:00:00.000Z","height":1.9,"weight":83,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":76451177,"name":"Alia Atkinson","nationality":"JAM","sex":"female","date_of_birth":"1988-12-11T00:00:00.000Z","height":1.73,"weight":71,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":432850961,"name":"Alia Saeed Mohammed","nationality":"UAE","sex":"female","date_of_birth":"1993-11-13T00:00:00.000Z","height":1.58,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":502227727,"name":"Aliaksandr Bersanau","nationality":"BLR","sex":"male","date_of_birth":"1992-09-01T00:00:00.000Z","height":1.76,"weight":94,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":23998076,"name":"Aliaksandr Buikevich","nationality":"BLR","sex":"male","date_of_birth":"1984-11-19T00:00:00.000Z","height":1.91,"weight":80,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":564017885,"name":"Aliaksandr Liakhovich","nationality":"BLR","sex":"male","date_of_birth":"1989-07-04T00:00:00.000Z","height":1.72,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":68967384,"name":"Aliaksandra Herasimenia","nationality":"BLR","sex":"female","date_of_birth":"1985-12-31T00:00:00.000Z","height":1.74,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":775336377,"name":"Aliaksandra Tarasava","nationality":"BLR","sex":"female","date_of_birth":"1988-06-23T00:00:00.000Z","height":1.7,"weight":64,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":185532375,"name":"Aliaksei Mzhachyk","nationality":"BLR","sex":"male","date_of_birth":"1996-06-30T00:00:00.000Z","height":1.9,"weight":136,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":481292461,"name":"Alican Kaynar","nationality":"TUR","sex":"male","date_of_birth":"1988-10-30T00:00:00.000Z","height":1.91,"weight":98,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":198660870,"name":"Alice Aprot Nawowuna","nationality":"KEN","sex":"female","date_of_birth":"1994-01-02T00:00:00.000Z","height":1.52,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":824189087,"name":"Alice Ingley","nationality":"AUS","sex":"female","date_of_birth":"1993-01-13T00:00:00.000Z","height":1.72,"weight":80,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":200278263,"name":"Alice Mizzau","nationality":"ITA","sex":"female","date_of_birth":"1993-03-18T00:00:00.000Z","height":1.8,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":273156241,"name":"Alice Naber-Lozeman","nationality":"NED","sex":"female","date_of_birth":"1971-05-07T00:00:00.000Z","height":1.68,"weight":62,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":713167631,"name":"Alice Richardson","nationality":"GBR","sex":"female","date_of_birth":"1987-05-14T00:00:00.000Z","height":1.72,"weight":69,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":965421454,"name":"Alice Schlesinger","nationality":"GBR","sex":"female","date_of_birth":"1988-05-26T00:00:00.000Z","height":1.65,"weight":65,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":693106463,"name":"Alice Sinno","nationality":"ITA","sex":"female","date_of_birth":"1992-09-08T00:00:00.000Z","height":1.75,"weight":69,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":350838880,"name":"Alice Sotero","nationality":"ITA","sex":"female","date_of_birth":"1991-05-28T00:00:00.000Z","height":1.66,"weight":53,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":598475958,"name":"Alicia Blagg","nationality":"GBR","sex":"female","date_of_birth":"1996-10-21T00:00:00.000Z","height":1.65,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":537043954,"name":"Alicia Brown","nationality":"CAN","sex":"female","date_of_birth":"1990-01-21T00:00:00.000Z","height":1.65,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":247476216,"name":"Alicia Cebrian Martinez de Lagos","nationality":"ESP","sex":"female","date_of_birth":"1983-02-03T00:00:00.000Z","height":1.68,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":556923374,"name":"Alicia Coutts","nationality":"AUS","sex":"female","date_of_birth":"1987-09-14T00:00:00.000Z","height":1.76,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":906544891,"name":"Alicia Magaz","nationality":"ESP","sex":"female","date_of_birth":"1994-05-24T00:00:00.000Z","height":1.61,"weight":60,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":404345231,"name":"Alicia Quirk","nationality":"AUS","sex":"female","date_of_birth":"1992-03-28T00:00:00.000Z","height":1.73,"weight":64,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":284199636,"name":"Alicja Tchorz","nationality":"POL","sex":"female","date_of_birth":"1992-08-13T00:00:00.000Z","height":1.76,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":297498164,"name":"Alin Alexuc Ciurariu","nationality":"ROU","sex":"male","date_of_birth":"1990-02-03T00:00:00.000Z","height":1.91,"weight":105,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":667093236,"name":"Alin Coste","nationality":"ROU","sex":"male","date_of_birth":"1992-02-17T00:00:00.000Z","height":2.01,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":991471809,"name":"Alin George Moldoveanu","nationality":"ROU","sex":"male","date_of_birth":"1983-05-03T00:00:00.000Z","height":1.73,"weight":73,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":146849551,"name":"Alina Armas","nationality":"NAM","sex":"female","date_of_birth":"1983-12-10T00:00:00.000Z","height":1.66,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":9436047,"name":"Alina Fodorova","nationality":"UKR","sex":"female","date_of_birth":"1989-07-31T00:00:00.000Z","height":1.75,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":452472549,"name":"Alina Komashchuk","nationality":"UKR","sex":"female","date_of_birth":"1993-04-24T00:00:00.000Z","height":1.69,"weight":75,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":26321098,"name":"Alina Logvynenko","nationality":"UKR","sex":"female","date_of_birth":"1990-07-18T00:00:00.000Z","height":1.8,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":564738938,"name":"Alina Rotaru","nationality":"ROU","sex":"female","date_of_birth":"1993-06-05T00:00:00.000Z","height":1.75,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":130594149,"name":"Alina Stadnik Makhynia","nationality":"UKR","sex":"female","date_of_birth":"1991-01-03T00:00:00.000Z","height":1.65,"weight":69,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":137031539,"name":"Alina Talay","nationality":"BLR","sex":"female","date_of_birth":"1989-05-14T00:00:00.000Z","height":1.64,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":315643745,"name":"Aline","nationality":"BRA","sex":"female","date_of_birth":"1989-04-15T00:00:00.000Z","height":1.62,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":902987523,"name":"Aline Focken","nationality":"GER","sex":"female","date_of_birth":"1991-05-10T00:00:00.000Z","height":1.77,"weight":73,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":215286232,"name":"Aline da Silva Ferreira","nationality":"BRA","sex":"female","date_of_birth":"1986-10-18T00:00:00.000Z","height":1.78,"weight":80,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":833092832,"name":"Aliona Dubitskaya","nationality":"BLR","sex":"female","date_of_birth":"1990-01-25T00:00:00.000Z","height":1.8,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":790705612,"name":"Alireza Khojasteh","nationality":"IRI","sex":"male","date_of_birth":"1997-03-28T00:00:00.000Z","height":1.82,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":891915962,"name":"Alireza Mohammad Karimimachiani","nationality":"IRI","sex":"male","date_of_birth":"1994-03-21T00:00:00.000Z","height":1.75,"weight":86,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":473463517,"name":"Alisa Kano","nationality":"USA","sex":"female","date_of_birth":"1994-11-07T00:00:00.000Z","height":1.63,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":572752822,"name":"Alisa Kiriliuk","nationality":"RUS","sex":"female","date_of_birth":"1990-07-09T00:00:00.000Z","height":1.65,"weight":57,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":269057885,"name":"Alise Post","nationality":"USA","sex":"female","date_of_birth":"1991-01-17T00:00:00.000Z","height":1.58,"weight":56,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":893065758,"name":"Alisha Glass","nationality":"USA","sex":"female","date_of_birth":"1988-04-05T00:00:00.000Z","height":1.84,"weight":72,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":409870387,"name":"Alison Cerutti","nationality":"BRA","sex":"male","date_of_birth":"1985-12-07T00:00:00.000Z","height":2.03,"weight":102,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":376187965,"name":"Alison Young","nationality":"GBR","sex":"female","date_of_birth":"1987-05-29T00:00:00.000Z","height":1.82,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":164566610,"name":"Alistair Bond","nationality":"NZL","sex":"male","date_of_birth":"1989-08-16T00:00:00.000Z","height":1.86,"weight":71,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":198533399,"name":"Alistair Brownlee","nationality":"GBR","sex":"male","date_of_birth":"1988-04-23T00:00:00.000Z","height":1.84,"weight":70,"sport":"triathlon","gold":1,"silver":0,"bronze":0,"info":"The current Olympic and European champion, Great Britain’s Alistair Brownlee also won two world championships, in 2009 and 2011. Introduced to the sport by his uncle Simon, at London 2012 he made the podium alongside his brother Jonathan, who took bronze."},{"id":901422043,"name":"Aliya Mustafina","nationality":"RUS","sex":"female","date_of_birth":"1994-09-30T00:00:00.000Z","height":1.61,"weight":48,"sport":"gymnastics","gold":1,"silver":1,"bronze":1,"info":null},{"id":340019479,"name":"Aliyah Abrams","nationality":"GUY","sex":"female","date_of_birth":"1997-04-03T00:00:00.000Z","height":1.63,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":248018989,"name":"Alize Cornet","nationality":"FRA","sex":"female","date_of_birth":"1990-01-22T00:00:00.000Z","height":1.73,"weight":63,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":777919762,"name":"Alla Cherkasova","nationality":"UKR","sex":"female","date_of_birth":"1989-05-05T00:00:00.000Z","height":1.65,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":848336898,"name":"Alla Shishkina","nationality":"RUS","sex":"female","date_of_birth":"1989-08-02T00:00:00.000Z","height":1.7,"weight":56,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":511388917,"name":"Allan Banegas","nationality":"HON","sex":"male","date_of_birth":"1993-10-04T00:00:00.000Z","height":1.8,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":638093339,"name":"Allan Fa'alava'au","nationality":"AUS","sex":"male","date_of_birth":"1993-11-15T00:00:00.000Z","height":1.7,"weight":87,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":146313505,"name":"Allan Gutierrez","nationality":"HON","sex":"male","date_of_birth":"1993-08-12T00:00:00.000Z","height":1.78,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":32531728,"name":"Allan Julie","nationality":"SEY","sex":"male","date_of_birth":"1977-03-23T00:00:00.000Z","height":1.81,"weight":91,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":40527372,"name":"Allan Norregaard","nationality":"DEN","sex":"male","date_of_birth":"1981-03-19T00:00:00.000Z","height":1.73,"weight":67,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":846754382,"name":"Allan do carmo","nationality":"BRA","sex":"male","date_of_birth":"1989-08-03T00:00:00.000Z","height":1.74,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":165223366,"name":"Allans Vargas","nationality":"HON","sex":"male","date_of_birth":"1993-09-25T00:00:00.000Z","height":1.84,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":823501763,"name":"Allar Raja","nationality":"EST","sex":"male","date_of_birth":"1983-06-22T00:00:00.000Z","height":1.9,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":531225990,"name":"Allie Long","nationality":"USA","sex":"female","date_of_birth":"1987-08-13T00:00:00.000Z","height":1.72,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":373002185,"name":"Allison Beveridge","nationality":"CAN","sex":"female","date_of_birth":"1993-06-01T00:00:00.000Z","height":1.69,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":606328661,"name":"Allison M. Brock","nationality":"USA","sex":"female","date_of_birth":"1979-12-07T00:00:00.000Z","height":1.68,"weight":58,"sport":"equestrian","gold":0,"silver":0,"bronze":1,"info":null},{"id":68050568,"name":"Allison Pineau","nationality":"FRA","sex":"female","date_of_birth":"1989-05-02T00:00:00.000Z","height":1.81,"weight":66,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":944908522,"name":"Allison Schmitt","nationality":"USA","sex":"female","date_of_birth":"1990-06-07T00:00:00.000Z","height":1.86,"weight":74,"sport":"aquatics","gold":1,"silver":1,"bronze":0,"info":null},{"id":881130710,"name":"Allistar Clarke","nationality":"SKN","sex":"male","date_of_birth":"1990-10-03T00:00:00.000Z","height":1.87,"weight":71,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":686662012,"name":"Allysha Chapman","nationality":"CAN","sex":"female","date_of_birth":"1989-01-25T00:00:00.000Z","height":1.6,"weight":58,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":629649792,"name":"Allyson Felix","nationality":"USA","sex":"female","date_of_birth":"1985-11-18T00:00:00.000Z","height":1.68,"weight":56,"sport":"athletics","gold":2,"silver":1,"bronze":0,"info":"A holder of nine world titles, sprinter Allyson Felix has won four golds and two silvers from the last three Olympic Games, since Athens 2004. At London 2012, she took gold in the 200m and 4x100m and 4x400m relays."},{"id":742474119,"name":"Allyson Ponson","nationality":"ARU","sex":"female","date_of_birth":"1995-12-04T00:00:00.000Z","height":1.65,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":830602816,"name":"Almat Kebispayev","nationality":"KAZ","sex":"male","date_of_birth":"1987-12-12T00:00:00.000Z","height":1.66,"weight":59,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":9410967,"name":"Almaz Ayana","nationality":"ETH","sex":"female","date_of_birth":"1991-11-21T00:00:00.000Z","height":1.66,"weight":47,"sport":"athletics","gold":1,"silver":0,"bronze":1,"info":null},{"id":949130459,"name":"Almir Velagic","nationality":"GER","sex":"male","date_of_birth":"1981-08-22T00:00:00.000Z","height":1.83,"weight":149,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":712627786,"name":"Almuth Schult","nationality":"GER","sex":"female","date_of_birth":"1991-02-09T00:00:00.000Z","height":1.8,"weight":71,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":300655502,"name":"Alona Koshevatskiy","nationality":"ISR","sex":"female","date_of_birth":"1997-10-08T00:00:00.000Z","height":1.7,"weight":53,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":673430,"name":"Alona Ribakova","nationality":"LAT","sex":"female","date_of_birth":"1991-02-07T00:00:00.000Z","height":1.76,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":506696121,"name":"Alonso Edward","nationality":"PAN","sex":"male","date_of_birth":"1989-12-08T00:00:00.000Z","height":1.81,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":396920712,"name":"Alonso Valdez Prado","nationality":"PER","sex":"male","date_of_birth":"1978-01-23T00:00:00.000Z","height":1.7,"weight":68,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":791528062,"name":"Alonzo Russell","nationality":"BAH","sex":"male","date_of_birth":"1992-02-08T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":860469603,"name":"Alphas Leken Kishoyian","nationality":"KEN","sex":"male","date_of_birth":"1994-01-01T00:00:00.000Z","height":1.67,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":601227072,"name":"Alphonce Felix Simbu","nationality":"TAN","sex":"male","date_of_birth":"1992-02-14T00:00:00.000Z","height":null,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":46528538,"name":"Altobeli da Silva","nationality":"BRA","sex":"male","date_of_birth":"1990-12-03T00:00:00.000Z","height":1.81,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":344062200,"name":"Alvaro Doda de Miranda","nationality":"BRA","sex":"male","date_of_birth":"1973-02-05T00:00:00.000Z","height":1.86,"weight":86,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":940428888,"name":"Alvaro Iglesias","nationality":"ESP","sex":"male","date_of_birth":"1993-03-01T00:00:00.000Z","height":1.78,"weight":79,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":407705493,"name":"Alvaro Martin","nationality":"ESP","sex":"male","date_of_birth":"1994-06-18T00:00:00.000Z","height":1.79,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":349070925,"name":"Alvaro de Arriba","nationality":"ESP","sex":"male","date_of_birth":"1994-06-02T00:00:00.000Z","height":1.77,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":198544112,"name":"Alvin Singh","nationality":"FIJ","sex":"male","date_of_birth":"1988-06-09T00:00:00.000Z","height":1.85,"weight":88,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":350021262,"name":"Alyce Burnett","nationality":"AUS","sex":"female","date_of_birth":"1992-08-11T00:00:00.000Z","height":1.82,"weight":71,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":362885756,"name":"Alyn Camara","nationality":"GER","sex":"male","date_of_birth":"1989-03-31T00:00:00.000Z","height":1.96,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":317210453,"name":"Alysbeth Felix","nationality":"PUR","sex":"female","date_of_birth":"1993-03-07T00:00:00.000Z","height":1.71,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":746918674,"name":"Alysha Newman","nationality":"CAN","sex":"female","date_of_birth":"1994-06-29T00:00:00.000Z","height":1.72,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":299325832,"name":"Alyson Dixon","nationality":"GBR","sex":"female","date_of_birth":"1978-09-24T00:00:00.000Z","height":1.55,"weight":43,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":192794585,"name":"Alyssa Bull","nationality":"AUS","sex":"female","date_of_birth":"1995-12-01T00:00:00.000Z","height":1.73,"weight":65,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":479973349,"name":"Alyssa Conley","nationality":"RSA","sex":"female","date_of_birth":"1991-04-27T00:00:00.000Z","height":1.76,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":61804195,"name":"Alyssa Manley","nationality":"USA","sex":"female","date_of_birth":"1994-05-27T00:00:00.000Z","height":1.58,"weight":53,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":360098950,"name":"Alyssa Naeher","nationality":"USA","sex":"female","date_of_birth":"1988-04-20T00:00:00.000Z","height":1.75,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":431586792,"name":"Alyxandria Treasure","nationality":"CAN","sex":"female","date_of_birth":"1992-05-15T00:00:00.000Z","height":1.55,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":461802696,"name":"Alzbeta Dufkova","nationality":"CZE","sex":"female","date_of_birth":"1990-04-19T00:00:00.000Z","height":1.72,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":401938001,"name":"Amadou Camara","nationality":"GUI","sex":"male","date_of_birth":"1994-09-10T00:00:00.000Z","height":1.63,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":312519582,"name":"Amadou Ndiaye","nationality":"SEN","sex":"male","date_of_birth":"1992-12-06T00:00:00.000Z","height":1.8,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":974097069,"name":"Amaia Erbina","nationality":"ESP","sex":"female","date_of_birth":"1997-03-13T00:00:00.000Z","height":1.71,"weight":68,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":595234401,"name":"Amaka Ogoegbunam","nationality":"NGR","sex":"female","date_of_birth":"1990-03-03T00:00:00.000Z","height":1.64,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":605176733,"name":"Amalie Dideriksen","nationality":"DEN","sex":"female","date_of_birth":"1996-05-24T00:00:00.000Z","height":1.75,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":398682051,"name":"Amalie Iuel","nationality":"NOR","sex":"female","date_of_birth":"1994-04-17T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":543039949,"name":"Amalie Thomsen","nationality":"DEN","sex":"female","date_of_birth":"1994-09-12T00:00:00.000Z","height":1.66,"weight":60,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":424274474,"name":"Amaliya Sharoyan","nationality":"ARM","sex":"female","date_of_birth":"1988-06-19T00:00:00.000Z","height":1.7,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":684370128,"name":"Aman Wote","nationality":"ETH","sex":"male","date_of_birth":"1984-04-18T00:00:00.000Z","height":1.83,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":991318461,"name":"Amanda Araujo","nationality":"BRA","sex":"female","date_of_birth":"1990-02-23T00:00:00.000Z","height":1.62,"weight":54,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":574915810,"name":"Amanda Carr","nationality":"THA","sex":"female","date_of_birth":"1990-06-24T00:00:00.000Z","height":1.65,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":461754486,"name":"Amanda Dlamini","nationality":"RSA","sex":"female","date_of_birth":"1988-07-22T00:00:00.000Z","height":1.64,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":960382539,"name":"Amanda Elmore","nationality":"USA","sex":"female","date_of_birth":"1991-03-13T00:00:00.000Z","height":1.81,"weight":79,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":403367229,"name":"Amanda Ilestedt","nationality":"SWE","sex":"female","date_of_birth":"1993-01-17T00:00:00.000Z","height":1.78,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":557518345,"name":"Amanda Kurtovic","nationality":"NOR","sex":"female","date_of_birth":"1991-07-25T00:00:00.000Z","height":1.75,"weight":null,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":343711251,"name":"Amanda Ng","nationality":"SIN","sex":"female","date_of_birth":"1994-05-03T00:00:00.000Z","height":1.7,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":936271742,"name":"Amanda Oliveira","nationality":"BRA","sex":"female","date_of_birth":"1987-01-06T00:00:00.000Z","height":1.69,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":839220577,"name":"Amanda Polk","nationality":"USA","sex":"female","date_of_birth":"1986-08-02T00:00:00.000Z","height":1.81,"weight":83,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":362158810,"name":"Amanda Simeao","nationality":"BRA","sex":"female","date_of_birth":"1994-06-02T00:00:00.000Z","height":1.66,"weight":62,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":340529563,"name":"Amanda Spratt","nationality":"AUS","sex":"female","date_of_birth":"1987-09-17T00:00:00.000Z","height":1.61,"weight":55,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":118871166,"name":"Amanda Weir","nationality":"USA","sex":"female","date_of_birth":"1986-03-11T00:00:00.000Z","height":1.88,"weight":77,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":537662343,"name":"Amandine Henry","nationality":"FRA","sex":"female","date_of_birth":"1989-09-28T00:00:00.000Z","height":1.71,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":17350450,"name":"Amandine Leynaud","nationality":"FRA","sex":"female","date_of_birth":"1986-05-02T00:00:00.000Z","height":1.78,"weight":64,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":582601760,"name":"Amandine Lhote","nationality":"FRA","sex":"female","date_of_birth":"1986-12-22T00:00:00.000Z","height":1.68,"weight":64,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":994010453,"name":"Amanmurad Hommadov","nationality":"TKM","sex":"male","date_of_birth":"1989-01-28T00:00:00.000Z","height":1.9,"weight":117,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":40874614,"name":"Amanuel Mesel","nationality":"ERI","sex":"male","date_of_birth":"1990-12-29T00:00:00.000Z","height":1.77,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":555654573,"name":"Amar Music","nationality":"CRO","sex":"male","date_of_birth":"1987-03-21T00:00:00.000Z","height":1.7,"weight":85,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":347334644,"name":"Amarhajy Mahamedau","nationality":"BLR","sex":"male","date_of_birth":"1990-04-12T00:00:00.000Z","height":1.84,"weight":88,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":156297478,"name":"Amas Daniel","nationality":"NGR","sex":"male","date_of_birth":"1990-04-26T00:00:00.000Z","height":1.65,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":235304532,"name":"Amber Campbell","nationality":"USA","sex":"female","date_of_birth":"1981-06-05T00:00:00.000Z","height":1.71,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":518337993,"name":"Amber Hearn","nationality":"NZL","sex":"female","date_of_birth":"1984-11-28T00:00:00.000Z","height":1.73,"weight":66,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":843671557,"name":"Amber Hill","nationality":"GBR","sex":"female","date_of_birth":"1997-08-21T00:00:00.000Z","height":1.58,"weight":52,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":193520300,"name":"Ambroise Uwiragiye","nationality":"RWA","sex":"male","date_of_birth":"1980-12-31T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":458169585,"name":"Ameen Zakkar","nationality":"QAT","sex":"male","date_of_birth":"1994-06-15T00:00:00.000Z","height":1.95,"weight":100,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":147471231,"name":"Ameer Webb","nationality":"USA","sex":"male","date_of_birth":"1991-03-19T00:00:00.000Z","height":1.81,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":39468987,"name":"Amel Bouderra","nationality":"FRA","sex":"female","date_of_birth":"1989-03-26T00:00:00.000Z","height":1.63,"weight":null,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":140465357,"name":"Amel Majri","nationality":"FRA","sex":"female","date_of_birth":"1993-01-25T00:00:00.000Z","height":1.64,"weight":54,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":250216413,"name":"Amel Tuka","nationality":"BIH","sex":"male","date_of_birth":"1991-01-09T00:00:00.000Z","height":1.87,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":577293191,"name":"Amela Terzic","nationality":"SRB","sex":"female","date_of_birth":"1993-01-02T00:00:00.000Z","height":1.69,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":255630772,"name":"Amelia Belotti","nationality":"ARG","sex":"female","date_of_birth":"1988-11-17T00:00:00.000Z","height":1.8,"weight":73,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":36505645,"name":"Amelia Cozad","nationality":"USA","sex":"female","date_of_birth":"1991-05-06T00:00:00.000Z","height":1.61,"weight":51,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":656221142,"name":"Amelia Gibson","nationality":"NZL","sex":"female","date_of_birth":"1991-07-05T00:00:00.000Z","height":1.72,"weight":71,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":335567750,"name":"Amelia Rosa Fournel","nationality":"ARG","sex":"female","date_of_birth":"1977-02-20T00:00:00.000Z","height":1.6,"weight":50,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":310265171,"name":"Amelie Kretz","nationality":"CAN","sex":"female","date_of_birth":"1993-05-19T00:00:00.000Z","height":1.68,"weight":53,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":68574249,"name":"Amer Hrustanovic","nationality":"AUT","sex":"male","date_of_birth":"1988-06-11T00:00:00.000Z","height":1.8,"weight":91,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":17841864,"name":"Ami Kondo","nationality":"JPN","sex":"female","date_of_birth":"1995-05-09T00:00:00.000Z","height":1.56,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":607523494,"name":"Amidou Mir","nationality":"FRA","sex":"male","date_of_birth":"1995-01-01T00:00:00.000Z","height":1.73,"weight":78,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":678578041,"name":"Amie Thompson","nationality":"AUS","sex":"female","date_of_birth":"1996-01-31T00:00:00.000Z","height":1.67,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":811727068,"name":"Amina Bettiche","nationality":"ALG","sex":"female","date_of_birth":"1987-12-14T00:00:00.000Z","height":1.65,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":689435497,"name":"Amina Kajtaz","nationality":"BIH","sex":"female","date_of_birth":"1996-12-31T00:00:00.000Z","height":1.73,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":409262616,"name":"Amina Rouba","nationality":"ALG","sex":"female","date_of_birth":"1986-01-09T00:00:00.000Z","height":1.73,"weight":60,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":895684177,"name":"Aminat Oluwafunmilayo Adeniyi","nationality":"NGR","sex":"female","date_of_birth":"1993-04-21T00:00:00.000Z","height":1.65,"weight":58,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":509681869,"name":"Aminath Shajan","nationality":"MDV","sex":"female","date_of_birth":"1993-10-29T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":378210672,"name":"Amine Bannour","nationality":"TUN","sex":"male","date_of_birth":"1990-02-21T00:00:00.000Z","height":1.96,"weight":102,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":121680559,"name":"Amine Belferar","nationality":"ALG","sex":"male","date_of_birth":"1991-02-16T00:00:00.000Z","height":1.75,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":435929879,"name":"Amini Tuitavake Fonua","nationality":"TGA","sex":"male","date_of_birth":"1989-12-14T00:00:00.000Z","height":1.86,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":389896499,"name":"Aminu Umar","nationality":"NGR","sex":"male","date_of_birth":"1995-03-06T00:00:00.000Z","height":1.72,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":846949924,"name":"Amir Ghafour","nationality":"IRI","sex":"male","date_of_birth":"1991-06-06T00:00:00.000Z","height":2.02,"weight":90,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":410626392,"name":"Amiran Papinashvili","nationality":"GEO","sex":"male","date_of_birth":"1988-06-17T00:00:00.000Z","height":1.62,"weight":64,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":364715226,"name":"Amit Ivry","nationality":"ISR","sex":"female","date_of_birth":"1989-09-02T00:00:00.000Z","height":1.7,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":529647636,"name":"Amjed Attwan","nationality":"IRQ","sex":"male","date_of_birth":"1997-03-12T00:00:00.000Z","height":1.8,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":945479307,"name":"Ammar Abdulhussein","nationality":"IRQ","sex":"male","date_of_birth":"1993-02-13T00:00:00.000Z","height":1.8,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":238039408,"name":"Ammara Pinto","nationality":"MAW","sex":"female","date_of_birth":"1997-09-14T00:00:00.000Z","height":1.63,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":740490618,"name":"Amna Bakhit","nationality":"SUD","sex":"female","date_of_birth":"1990-11-14T00:00:00.000Z","height":1.75,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":657073926,"name":"Amnat Ruenroeng","nationality":"THA","sex":"male","date_of_birth":"1979-12-18T00:00:00.000Z","height":1.64,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":761085260,"name":"Amor Ben Yahia","nationality":"TUN","sex":"male","date_of_birth":"1985-07-01T00:00:00.000Z","height":1.76,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":942970698,"name":"Amro Elgeziry","nationality":"EGY","sex":"male","date_of_birth":"1986-11-29T00:00:00.000Z","height":1.85,"weight":75,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":318291811,"name":"Amy Cragg","nationality":"USA","sex":"female","date_of_birth":"1984-01-21T00:00:00.000Z","height":1.63,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":872045656,"name":"Amy Cure","nationality":"AUS","sex":"female","date_of_birth":"1992-12-31T00:00:00.000Z","height":1.72,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":912480643,"name":"Amy Millar","nationality":"CAN","sex":"female","date_of_birth":"1977-02-14T00:00:00.000Z","height":1.83,"weight":59,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":5024454,"name":"Amy Sene","nationality":"SEN","sex":"female","date_of_birth":"1986-04-06T00:00:00.000Z","height":1.75,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":460892006,"name":"Amy Tinkler","nationality":"GBR","sex":"female","date_of_birth":"1999-10-27T00:00:00.000Z","height":1.52,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":99920757,"name":"Amy Turner","nationality":"AUS","sex":"female","date_of_birth":"1984-03-25T00:00:00.000Z","height":1.68,"weight":64,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":380050996,"name":"Amy Wilson Hardy","nationality":"GBR","sex":"female","date_of_birth":"1991-09-13T00:00:00.000Z","height":1.67,"weight":69,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":491417402,"name":"An-Li Kachelhoffer","nationality":"RSA","sex":"female","date_of_birth":"1987-08-16T00:00:00.000Z","height":1.6,"weight":50,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":829962369,"name":"Ana Beatriz Bulcao","nationality":"BRA","sex":"female","date_of_birth":"1993-12-04T00:00:00.000Z","height":1.67,"weight":58,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":914515820,"name":"Ana Cabecinha","nationality":"POR","sex":"female","date_of_birth":"1984-04-29T00:00:00.000Z","height":1.63,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":714771450,"name":"Ana Claudia Silva","nationality":"BRA","sex":"female","date_of_birth":"1988-11-06T00:00:00.000Z","height":1.58,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":627491334,"name":"Ana Dabovic","nationality":"SRB","sex":"female","date_of_birth":"1989-08-18T00:00:00.000Z","height":1.83,"weight":70,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":697466343,"name":"Ana Derek","nationality":"CRO","sex":"female","date_of_birth":"1998-09-04T00:00:00.000Z","height":1.64,"weight":58,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":196047650,"name":"Ana Dulce Felix","nationality":"POR","sex":"female","date_of_birth":"1982-10-23T00:00:00.000Z","height":1.66,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":111502894,"name":"Ana Gallay","nationality":"ARG","sex":"female","date_of_birth":"1986-01-16T00:00:00.000Z","height":1.73,"weight":66,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":209671126,"name":"Ana Iulia Dascal","nationality":"ROU","sex":"female","date_of_birth":"2002-09-12T00:00:00.000Z","height":1.83,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":71309722,"name":"Ana Ivanovic","nationality":"SRB","sex":"female","date_of_birth":"1987-11-06T00:00:00.000Z","height":1.77,"weight":63,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":685105407,"name":"Ana Jose Tima","nationality":"DOM","sex":"female","date_of_birth":"1989-10-10T00:00:00.000Z","height":1.68,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":981171195,"name":"Ana Konjuh","nationality":"CRO","sex":"female","date_of_birth":"1997-12-27T00:00:00.000Z","height":1.74,"weight":73,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":575479562,"name":"Ana Luiza Barbachan","nationality":"BRA","sex":"female","date_of_birth":"1989-08-15T00:00:00.000Z","height":1.71,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":596603092,"name":"Ana Luiza Filiorianu","nationality":"ROU","sex":"female","date_of_birth":"1999-07-10T00:00:00.000Z","height":1.64,"weight":42,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":69147633,"name":"Ana Marcela Cunha","nationality":"BRA","sex":"female","date_of_birth":"1992-03-23T00:00:00.000Z","height":1.65,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":865510243,"name":"Ana Maria Popescu","nationality":"ROU","sex":"female","date_of_birth":"1984-11-26T00:00:00.000Z","height":1.75,"weight":64,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":350672001,"name":"Ana Maria Rendon","nationality":"COL","sex":"female","date_of_birth":"1986-03-10T00:00:00.000Z","height":1.6,"weight":63,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":453790004,"name":"Ana Paula Belo","nationality":"BRA","sex":"female","date_of_birth":"1987-10-18T00:00:00.000Z","height":1.72,"weight":67,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":724211622,"name":"Ana Paula Vergutz","nationality":"BRA","sex":"female","date_of_birth":"1989-04-20T00:00:00.000Z","height":1.76,"weight":71,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":808863847,"name":"Ana Perez","nationality":"ESP","sex":"female","date_of_birth":"1997-12-14T00:00:00.000Z","height":1.51,"weight":45,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":272949970,"name":"Ana Ramirez","nationality":"COL","sex":"female","date_of_birth":"1991-12-06T00:00:00.000Z","height":1.68,"weight":69,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":307991682,"name":"Ana Rente","nationality":"POR","sex":"female","date_of_birth":"1988-04-27T00:00:00.000Z","height":1.58,"weight":53,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":224508833,"name":"Ana Roqica","nationality":"FIJ","sex":"female","date_of_birth":"1988-02-02T00:00:00.000Z","height":1.62,"weight":55,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":543833436,"name":"Ana Sanabria","nationality":"COL","sex":"female","date_of_birth":"1990-05-02T00:00:00.000Z","height":1.56,"weight":51,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":337538051,"name":"Ana Satila","nationality":"BRA","sex":"female","date_of_birth":"1996-03-13T00:00:00.000Z","height":1.63,"weight":58,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":953050325,"name":"Ana Simic","nationality":"CRO","sex":"female","date_of_birth":"1990-05-05T00:00:00.000Z","height":1.78,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":902638396,"name":"Ana Sofia Gomez","nationality":"GUA","sex":"female","date_of_birth":"1995-11-24T00:00:00.000Z","height":1.56,"weight":46,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":872791807,"name":"Ana Sofia Nobrega","nationality":"ANG","sex":"female","date_of_birth":"1990-12-20T00:00:00.000Z","height":1.74,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":644940241,"name":"Ana Veronica Rodean","nationality":"ROU","sex":"female","date_of_birth":"1984-06-23T00:00:00.000Z","height":1.7,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":153868094,"name":"Ana Zaninovic","nationality":"CRO","sex":"female","date_of_birth":"1987-06-26T00:00:00.000Z","height":1.72,"weight":55,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":557108863,"name":"Ana-Roxana Lehaci","nationality":"AUT","sex":"female","date_of_birth":"1990-08-11T00:00:00.000Z","height":1.72,"weight":64,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":310379918,"name":"Anabel Medina Garrigues","nationality":"ESP","sex":"female","date_of_birth":"1982-07-31T00:00:00.000Z","height":1.69,"weight":59,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":241768985,"name":"Anabelle Smith","nationality":"AUS","sex":"female","date_of_birth":"1993-02-03T00:00:00.000Z","height":1.68,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":867924792,"name":"Anamari Velensek","nationality":"SLO","sex":"female","date_of_birth":"1991-05-15T00:00:00.000Z","height":1.78,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":575717728,"name":"Anamaria Ionita","nationality":"ROU","sex":"female","date_of_birth":"1988-07-07T00:00:00.000Z","height":1.75,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":711141982,"name":"Anas Beshr","nationality":"EGY","sex":"male","date_of_birth":"1993-07-19T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":922322829,"name":"Anaso Jobodwana","nationality":"RSA","sex":"male","date_of_birth":"1992-07-30T00:00:00.000Z","height":1.87,"weight":71,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":129887602,"name":"Anass Ait El Abdia","nationality":"MAR","sex":"male","date_of_birth":"1993-03-21T00:00:00.000Z","height":1.8,"weight":66,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":445010579,"name":"Anass Houssein","nationality":"DJI","sex":"male","date_of_birth":"1995-01-10T00:00:00.000Z","height":1.75,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":320992856,"name":"Anastasia Abrosimova","nationality":"RUS","sex":"female","date_of_birth":"1990-07-17T00:00:00.000Z","height":1.64,"weight":51,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":395443232,"name":"Anastasia Bliznyuk","nationality":"RUS","sex":"female","date_of_birth":"1994-06-28T00:00:00.000Z","height":1.73,"weight":51,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":null},{"id":630467842,"name":"Anastasia Bogdanovski","nationality":"MKD","sex":"female","date_of_birth":"1993-07-30T00:00:00.000Z","height":1.74,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":301110204,"name":"Anastasia Gloushkov Leventhal","nationality":"ISR","sex":"female","date_of_birth":"1985-05-24T00:00:00.000Z","height":1.65,"weight":53,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":823187249,"name":"Anastasia Pavlova","nationality":"UKR","sex":"female","date_of_birth":"1995-02-09T00:00:00.000Z","height":1.72,"weight":53,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":42235167,"name":"Anastasia Pavlyuchenkova","nationality":"RUS","sex":"female","date_of_birth":"1991-07-03T00:00:00.000Z","height":1.77,"weight":75,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":971263231,"name":"Anastasia Rodionova","nationality":"AUS","sex":"female","date_of_birth":"1982-05-12T00:00:00.000Z","height":null,"weight":null,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":407491531,"name":"Anastasia Shlyakhovaya","nationality":"RUS","sex":"female","date_of_birth":"1990-10-05T00:00:00.000Z","height":1.92,"weight":69,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":329483647,"name":"Anastasia Simanovich","nationality":"RUS","sex":"female","date_of_birth":"1995-01-23T00:00:00.000Z","height":1.74,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":35258396,"name":"Anastasiia Baryshnikova","nationality":"RUS","sex":"female","date_of_birth":"1990-12-19T00:00:00.000Z","height":1.73,"weight":67,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":901391372,"name":"Anastasiia Beliakova","nationality":"RUS","sex":"female","date_of_birth":"1993-05-01T00:00:00.000Z","height":1.73,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":102993308,"name":"Anastasiia Fesikova","nationality":"RUS","sex":"female","date_of_birth":"1990-05-08T00:00:00.000Z","height":1.82,"weight":71,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":797491738,"name":"Anastasiia Hotfrid","nationality":"GEO","sex":"female","date_of_birth":"1996-04-25T00:00:00.000Z","height":1.69,"weight":87,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":787891097,"name":"Anastasiia Kozhenkova","nationality":"UKR","sex":"female","date_of_birth":"1986-01-19T00:00:00.000Z","height":1.86,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":572715750,"name":"Anastasiia Krapivina","nationality":"RUS","sex":"female","date_of_birth":"1994-11-12T00:00:00.000Z","height":1.7,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":715543829,"name":"Anastasiia Lysenko","nationality":"UKR","sex":"female","date_of_birth":"1995-12-02T00:00:00.000Z","height":1.76,"weight":101,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":273869635,"name":"Anastasiia Maksimova","nationality":"RUS","sex":"female","date_of_birth":"1991-06-27T00:00:00.000Z","height":1.7,"weight":50,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":null},{"id":766355560,"name":"Anastasiia Nedobiga","nationality":"UKR","sex":"female","date_of_birth":"1994-04-20T00:00:00.000Z","height":1.62,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":725232541,"name":"Anastasiia Tatareva","nationality":"RUS","sex":"female","date_of_birth":"1997-07-19T00:00:00.000Z","height":1.65,"weight":44,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":null},{"id":913288591,"name":"Anastasiia Todorova","nationality":"UKR","sex":"female","date_of_birth":"1993-12-10T00:00:00.000Z","height":1.68,"weight":69,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":874606295,"name":"Anastasiia Voinova","nationality":"RUS","sex":"female","date_of_birth":"1993-02-05T00:00:00.000Z","height":1.62,"weight":62,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":467136839,"name":"Anastasija Grigorjeva","nationality":"LAT","sex":"female","date_of_birth":"1990-05-12T00:00:00.000Z","height":1.69,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":85844393,"name":"Anastasija Khmelnytska","nationality":"GER","sex":"female","date_of_birth":"1997-12-31T00:00:00.000Z","height":1.71,"weight":56,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":429085507,"name":"Anastasiya Mikhalenka","nationality":"BLR","sex":"female","date_of_birth":"1995-12-08T00:00:00.000Z","height":1.62,"weight":67,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":477742641,"name":"Anastasiya Prokopenko","nationality":"BLR","sex":"female","date_of_birth":"1985-09-20T00:00:00.000Z","height":1.63,"weight":57,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":204362655,"name":"Anastasiya Puzakova","nationality":"BLR","sex":"female","date_of_birth":"1993-12-12T00:00:00.000Z","height":1.61,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":830248205,"name":"Anastasiya Savchuk","nationality":"UKR","sex":"female","date_of_birth":"1996-03-02T00:00:00.000Z","height":1.77,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":369555302,"name":"Anastasiya Serdyukova","nationality":"UZB","sex":"female","date_of_birth":"1997-05-29T00:00:00.000Z","height":1.7,"weight":49,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":610974773,"name":"Anastasiya Spas","nationality":"UKR","sex":"female","date_of_birth":"1993-08-06T00:00:00.000Z","height":1.78,"weight":68,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":27612186,"name":"Anastasiya Tulapina","nationality":"KAZ","sex":"female","date_of_birth":"1990-03-05T00:00:00.000Z","height":1.67,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":711528333,"name":"Anastasiya Tyurina","nationality":"TJK","sex":"female","date_of_birth":"2001-09-27T00:00:00.000Z","height":1.65,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":422580925,"name":"Anastasiya Verameyenka","nationality":"BLR","sex":"female","date_of_birth":"1987-07-10T00:00:00.000Z","height":1.92,"weight":82,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":357399509,"name":"Anastasiya Voznyak","nationality":"UKR","sex":"female","date_of_birth":"1998-12-09T00:00:00.000Z","height":1.69,"weight":49,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":673911488,"name":"Anastassiya Pilipenko","nationality":"KAZ","sex":"female","date_of_birth":"1986-09-13T00:00:00.000Z","height":1.74,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":347049681,"name":"Anastassya Kudinova","nationality":"KAZ","sex":"female","date_of_birth":"1988-02-27T00:00:00.000Z","height":1.76,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":623313333,"name":"Anatolii Herey","nationality":"UKR","sex":"male","date_of_birth":"1989-03-31T00:00:00.000Z","height":1.86,"weight":75,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":234780868,"name":"Ancuta Bobocel","nationality":"ROU","sex":"female","date_of_birth":"1987-10-03T00:00:00.000Z","height":1.67,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":964678292,"name":"Andela Bulatovic","nationality":"MNE","sex":"female","date_of_birth":"1987-01-15T00:00:00.000Z","height":1.75,"weight":67,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":775627135,"name":"Andelo Setka","nationality":"CRO","sex":"male","date_of_birth":"1985-09-14T00:00:00.000Z","height":1.86,"weight":87,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":949150339,"name":"Ander Elosegi","nationality":"ESP","sex":"male","date_of_birth":"1987-11-14T00:00:00.000Z","height":1.86,"weight":80,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":955892799,"name":"Anders Dahl","nationality":"DEN","sex":"male","date_of_birth":"1976-03-11T00:00:00.000Z","height":1.8,"weight":80,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":449230343,"name":"Anders Lie Nielsen","nationality":"DEN","sex":"male","date_of_birth":"1991-04-11T00:00:00.000Z","height":1.86,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":289946138,"name":"Anders Pedersen","nationality":"NOR","sex":"male","date_of_birth":"1992-05-04T00:00:00.000Z","height":null,"weight":null,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":130198005,"name":"Anders Weiss","nationality":"USA","sex":"male","date_of_birth":"1992-11-05T00:00:00.000Z","height":1.96,"weight":92,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":248819461,"name":"Anderson Oliveira","nationality":"BRA","sex":"male","date_of_birth":"1992-01-10T00:00:00.000Z","height":1.69,"weight":64,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":292858869,"name":"Andile Dlamini","nationality":"RSA","sex":"female","date_of_birth":"1992-09-02T00:00:00.000Z","height":1.69,"weight":55,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":375239282,"name":"Andile Fikizolo","nationality":"RSA","sex":"male","date_of_birth":"1994-05-12T00:00:00.000Z","height":1.75,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":7192762,"name":"Andjelko Risticevic","nationality":"SRB","sex":"male","date_of_birth":"1985-12-23T00:00:00.000Z","height":1.91,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":995131091,"name":"Andranik Karapetyan","nationality":"ARM","sex":"male","date_of_birth":"1995-12-15T00:00:00.000Z","height":1.8,"weight":77,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":222880699,"name":"Andras Parti","nationality":"HUN","sex":"male","date_of_birth":"1982-09-18T00:00:00.000Z","height":1.74,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":257770574,"name":"Andras Redli","nationality":"HUN","sex":"male","date_of_birth":"1983-10-21T00:00:00.000Z","height":1.93,"weight":82,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":140531805,"name":"Andre","nationality":"POR","sex":"male","date_of_birth":"1990-01-21T00:00:00.000Z","height":1.71,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":511065132,"name":"Andre Breitbarth","nationality":"GER","sex":"male","date_of_birth":"1990-04-06T00:00:00.000Z","height":1.91,"weight":125,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":662859051,"name":"Andre Fernando S. Martins Cardoso","nationality":"POR","sex":"male","date_of_birth":"1984-09-03T00:00:00.000Z","height":1.68,"weight":57,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":954547244,"name":"Andre Link","nationality":"GER","sex":"male","date_of_birth":"1994-12-13T00:00:00.000Z","height":1.74,"weight":80,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":580669644,"name":"Andre Matias","nationality":"ANG","sex":"male","date_of_birth":"1989-06-22T00:00:00.000Z","height":1.8,"weight":76,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":134393254,"name":"Andre Patrocinio","nationality":"BRA","sex":"male","date_of_birth":"1990-02-20T00:00:00.000Z","height":1.73,"weight":74,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":321939680,"name":"Andre Pereira","nationality":"BRA","sex":"male","date_of_birth":"1993-12-07T00:00:00.000Z","height":1.85,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":890648404,"name":"Andre Sa","nationality":"BRA","sex":"male","date_of_birth":"1977-05-06T00:00:00.000Z","height":1.8,"weight":75,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":976716272,"name":"Andre Silva","nationality":"BRA","sex":"male","date_of_birth":"1988-03-22T00:00:00.000Z","height":1.7,"weight":80,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":755645799,"name":"Andre Soares","nationality":"BRA","sex":"male","date_of_birth":"1984-02-13T00:00:00.000Z","height":1.94,"weight":92,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":857846421,"name":"Andre de Grasse","nationality":"CAN","sex":"male","date_of_birth":"1994-11-10T00:00:00.000Z","height":1.76,"weight":70,"sport":"athletics","gold":0,"silver":1,"bronze":2,"info":null},{"id":174436666,"name":"Andrea Arsovic","nationality":"SRB","sex":"female","date_of_birth":"1987-02-05T00:00:00.000Z","height":1.65,"weight":61,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":974131096,"name":"Andrea Baldini","nationality":"ITA","sex":"male","date_of_birth":"1985-12-19T00:00:00.000Z","height":1.75,"weight":70,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":932784458,"name":"Andrea Brewster","nationality":"IRL","sex":"female","date_of_birth":"1982-10-10T00:00:00.000Z","height":1.63,"weight":62,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":949156252,"name":"Andrea Carolina Olaya Gutierrez","nationality":"COL","sex":"female","date_of_birth":"1994-12-09T00:00:00.000Z","height":1.76,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":676115258,"name":"Andrea Cassara","nationality":"ITA","sex":"male","date_of_birth":"1984-01-03T00:00:00.000Z","height":1.93,"weight":93,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":161123035,"name":"Andrea Cedron","nationality":"PER","sex":"female","date_of_birth":"1993-12-24T00:00:00.000Z","height":1.69,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":626748734,"name":"Andrea Chiarabini","nationality":"ITA","sex":"male","date_of_birth":"1995-03-12T00:00:00.000Z","height":1.79,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":575091525,"name":"Andrea D'Arrigo","nationality":"ITA","sex":"male","date_of_birth":"1995-04-28T00:00:00.000Z","height":1.94,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":400345706,"name":"Andrea Deelstra","nationality":"NED","sex":"female","date_of_birth":"1985-03-06T00:00:00.000Z","height":1.64,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":419373605,"name":"Andrea Fondelli","nationality":"ITA","sex":"male","date_of_birth":"1994-02-27T00:00:00.000Z","height":1.9,"weight":96,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":478977690,"name":"Andrea Geubelle","nationality":"USA","sex":"female","date_of_birth":"1991-06-26T00:00:00.000Z","height":1.63,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":226707215,"name":"Andrea Hewitt","nationality":"NZL","sex":"female","date_of_birth":"1982-04-04T00:00:00.000Z","height":1.6,"weight":50,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":429133485,"name":"Andrea Hlavackova","nationality":"CZE","sex":"female","date_of_birth":"1986-08-10T00:00:00.000Z","height":1.74,"weight":63,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":504132188,"name":"Andrea Ivancevic","nationality":"CRO","sex":"female","date_of_birth":"1984-08-21T00:00:00.000Z","height":1.68,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":158226977,"name":"Andrea Kilday","nationality":"NZL","sex":"female","date_of_birth":"1982-08-05T00:00:00.000Z","height":1.61,"weight":48,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":565831572,"name":"Andrea Klikovac","nationality":"MNE","sex":"female","date_of_birth":"1991-05-05T00:00:00.000Z","height":1.75,"weight":73,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":65085149,"name":"Andrea Kneppers","nationality":"NED","sex":"female","date_of_birth":"1993-02-24T00:00:00.000Z","height":1.75,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":187085633,"name":"Andrea Mayr","nationality":"AUT","sex":"female","date_of_birth":"1979-10-15T00:00:00.000Z","height":1.74,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":187152270,"name":"Andrea Micheletti","nationality":"ITA","sex":"male","date_of_birth":"1991-06-22T00:00:00.000Z","height":1.87,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":931620156,"name":"Andrea Miklos","nationality":"ROU","sex":"female","date_of_birth":"1999-04-17T00:00:00.000Z","height":1.65,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":448392462,"name":"Andrea Murez","nationality":"ISR","sex":"female","date_of_birth":"1992-01-29T00:00:00.000Z","height":1.84,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":244862813,"name":"Andrea Perez Pena","nationality":"ECU","sex":"female","date_of_birth":"1990-04-07T00:00:00.000Z","height":1.61,"weight":62,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":926139240,"name":"Andrea Petkovic","nationality":"GER","sex":"female","date_of_birth":"1987-09-09T00:00:00.000Z","height":1.8,"weight":70,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":339790739,"name":"Andrea Salvisberg","nationality":"SUI","sex":"male","date_of_birth":"1989-02-01T00:00:00.000Z","height":1.8,"weight":73,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":583417630,"name":"Andrea Santarelli","nationality":"ITA","sex":"male","date_of_birth":"1993-06-03T00:00:00.000Z","height":1.84,"weight":76,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":976796859,"name":"Andrea Seccafien","nationality":"CAN","sex":"female","date_of_birth":"1990-08-27T00:00:00.000Z","height":1.52,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":36880136,"name":"Andrea Tiberi","nationality":"ITA","sex":"male","date_of_birth":"1985-11-15T00:00:00.000Z","height":1.83,"weight":71,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":234036323,"name":"Andrea Toniato","nationality":"ITA","sex":"male","date_of_birth":"1991-02-27T00:00:00.000Z","height":1.82,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":321087951,"name":"Andreanne Langlois","nationality":"CAN","sex":"female","date_of_birth":"1993-04-01T00:00:00.000Z","height":1.58,"weight":59,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":726050696,"name":"Andreas Bretschneider","nationality":"GER","sex":"male","date_of_birth":"1989-08-04T00:00:00.000Z","height":1.67,"weight":60,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":706697738,"name":"Andreas Bube","nationality":"DEN","sex":"male","date_of_birth":"1987-07-13T00:00:00.000Z","height":1.78,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":566684785,"name":"Andreas Chasikos","nationality":"CYP","sex":"male","date_of_birth":"1984-06-07T00:00:00.000Z","height":1.75,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":951348078,"name":"Andreas Kuffner","nationality":"GER","sex":"male","date_of_birth":"1987-03-11T00:00:00.000Z","height":1.96,"weight":94,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":153952805,"name":"Andreas Linde","nationality":"SWE","sex":"male","date_of_birth":"1993-07-24T00:00:00.000Z","height":1.96,"weight":88,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":411586865,"name":"Andreas Loew","nationality":"GER","sex":"male","date_of_birth":"1982-01-19T00:00:00.000Z","height":1.77,"weight":81,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":39605435,"name":"Andreas Maxso","nationality":"DEN","sex":"male","date_of_birth":"1994-03-18T00:00:00.000Z","height":1.9,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":435243866,"name":"Andreas Nilsson","nationality":"SWE","sex":"male","date_of_birth":"1990-04-12T00:00:00.000Z","height":1.97,"weight":114,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":31739693,"name":"Andreas Pheobus Cariolou","nationality":"CYP","sex":"male","date_of_birth":"1982-11-24T00:00:00.000Z","height":1.81,"weight":74,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":713434315,"name":"Andreas Schilling","nationality":"DEN","sex":"male","date_of_birth":"1991-05-25T00:00:00.000Z","height":1.85,"weight":70,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":773973841,"name":"Andreas Seppi","nationality":"ITA","sex":"male","date_of_birth":"1984-02-21T00:00:00.000Z","height":1.9,"weight":75,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":819478867,"name":"Andreas Toba","nationality":"GER","sex":"male","date_of_birth":"1990-10-07T00:00:00.000Z","height":1.72,"weight":65,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":908623609,"name":"Andreas Vazaios","nationality":"GRE","sex":"male","date_of_birth":"1994-05-09T00:00:00.000Z","height":1.9,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":103646463,"name":"Andreas Wolff","nationality":"GER","sex":"male","date_of_birth":"1991-03-03T00:00:00.000Z","height":1.98,"weight":110,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":294664221,"name":"Andreea Aanei","nationality":"ROU","sex":"female","date_of_birth":"1993-11-18T00:00:00.000Z","height":1.7,"weight":120,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":945918484,"name":"Andreea Arsine","nationality":"ROU","sex":"female","date_of_birth":"1988-09-14T00:00:00.000Z","height":1.59,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":755303582,"name":"Andreea Boghian","nationality":"ROU","sex":"female","date_of_birth":"1991-11-29T00:00:00.000Z","height":1.86,"weight":78,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":966630668,"name":"Andreea Chitu","nationality":"ROU","sex":"female","date_of_birth":"1988-05-07T00:00:00.000Z","height":1.57,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":7713126,"name":"Andreea Mitu","nationality":"ROU","sex":"female","date_of_birth":"1991-09-22T00:00:00.000Z","height":1.75,"weight":60,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":882676679,"name":"Andrei Churyla","nationality":"BLR","sex":"male","date_of_birth":"1993-05-19T00:00:00.000Z","height":1.89,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":604822032,"name":"Andrei Gag","nationality":"ROU","sex":"male","date_of_birth":"1991-04-27T00:00:00.000Z","height":1.91,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":444763711,"name":"Andrei Jamsa","nationality":"EST","sex":"male","date_of_birth":"1982-02-14T00:00:00.000Z","height":1.84,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":494617052,"name":"Andrei Shabasov","nationality":"RUS","sex":"male","date_of_birth":"1994-06-20T00:00:00.000Z","height":1.8,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":355389879,"name":"Andrei Vasile Muntean","nationality":"ROU","sex":"male","date_of_birth":"1993-01-30T00:00:00.000Z","height":1.7,"weight":63,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":153735693,"name":"Andrei Zamkovoi","nationality":"RUS","sex":"male","date_of_birth":"1987-07-04T00:00:00.000Z","height":1.82,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":957911430,"name":"Andreia Bandeira","nationality":"BRA","sex":"female","date_of_birth":"1987-05-03T00:00:00.000Z","height":1.69,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":264432420,"name":"Andreina Pinto","nationality":"VEN","sex":"female","date_of_birth":"1991-09-10T00:00:00.000Z","height":1.76,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":305139050,"name":"Andrej Gacina","nationality":"CRO","sex":"male","date_of_birth":"1986-05-21T00:00:00.000Z","height":1.85,"weight":85,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":10874144,"name":"Andrej Martin","nationality":"SVK","sex":"male","date_of_birth":"1989-09-20T00:00:00.000Z","height":1.8,"weight":72,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":681704491,"name":"Andrej Olijnik","nationality":"LTU","sex":"male","date_of_birth":"1987-10-16T00:00:00.000Z","height":1.85,"weight":87,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":448316510,"name":"Andres Arroyo","nationality":"PUR","sex":"male","date_of_birth":"1995-06-07T00:00:00.000Z","height":1.77,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":723895342,"name":"Andres Chocho","nationality":"ECU","sex":"male","date_of_birth":"1983-11-04T00:00:00.000Z","height":1.7,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":771905591,"name":"Andres Ducasse","nationality":"CHI","sex":"male","date_of_birth":"1992-06-24T00:00:00.000Z","height":1.71,"weight":66,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":669378368,"name":"Andres Eduardo Mata Perez","nationality":"ESP","sex":"male","date_of_birth":"1992-11-11T00:00:00.000Z","height":1.74,"weight":76,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":349842092,"name":"Andres Mauricio Caicedo Piedrahita","nationality":"COL","sex":"male","date_of_birth":"1997-08-15T00:00:00.000Z","height":1.74,"weight":76,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":686783587,"name":"Andres Mir","nationality":"ESP","sex":"male","date_of_birth":"1987-01-25T00:00:00.000Z","height":1.8,"weight":75,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":922616500,"name":"Andres Nocioni","nationality":"ARG","sex":"male","date_of_birth":"1979-11-30T00:00:00.000Z","height":2.01,"weight":102,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":700618156,"name":"Andres Pila","nationality":"COL","sex":"male","date_of_birth":"1991-05-11T00:00:00.000Z","height":1.74,"weight":75,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":164503062,"name":"Andres Renteria","nationality":"COL","sex":"male","date_of_birth":"1993-03-06T00:00:00.000Z","height":1.81,"weight":81,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":446162748,"name":"Andres Roa","nationality":"COL","sex":"male","date_of_birth":"1993-05-25T00:00:00.000Z","height":1.75,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":157804987,"name":"Andres Roberto Montano Arroyo","nationality":"ECU","sex":"male","date_of_birth":"1990-04-06T00:00:00.000Z","height":1.66,"weight":59,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":841462894,"name":"Andres Ruiz","nationality":"COL","sex":"male","date_of_birth":"1988-07-16T00:00:00.000Z","height":1.64,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":551708998,"name":"Andres Silva","nationality":"URU","sex":"male","date_of_birth":"1986-03-27T00:00:00.000Z","height":1.78,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":979721356,"name":"Andressa","nationality":"BRA","sex":"female","date_of_birth":"1995-05-01T00:00:00.000Z","height":1.6,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":715702096,"name":"Andressa Alves","nationality":"BRA","sex":"female","date_of_birth":"1992-11-10T00:00:00.000Z","height":1.68,"weight":56,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":721349876,"name":"Andressa de Morais","nationality":"BRA","sex":"female","date_of_birth":"1990-12-21T00:00:00.000Z","height":1.78,"weight":97,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":140014329,"name":"Andrew Amonde","nationality":"KEN","sex":"male","date_of_birth":"1983-12-25T00:00:00.000Z","height":1.9,"weight":104,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":308408059,"name":"Andrew Bogut","nationality":"AUS","sex":"male","date_of_birth":"1984-11-28T00:00:00.000Z","height":2.07,"weight":122,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":169560751,"name":"Andrew Butchart","nationality":"GBR","sex":"male","date_of_birth":"1991-10-14T00:00:00.000Z","height":1.75,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":777045922,"name":"Andrew Campbell Jr","nationality":"USA","sex":"male","date_of_birth":"1992-02-02T00:00:00.000Z","height":1.78,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":871500671,"name":"Andrew Charter","nationality":"AUS","sex":"male","date_of_birth":"1987-03-30T00:00:00.000Z","height":1.82,"weight":87,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":164276381,"name":"Andrew Chetcuti","nationality":"MLT","sex":"male","date_of_birth":"1992-11-19T00:00:00.000Z","height":1.77,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":207851406,"name":"Andrew Durutalo","nationality":"USA","sex":"male","date_of_birth":"1987-10-25T00:00:00.000Z","height":1.88,"weight":107,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":2538424,"name":"Andrew Evans","nationality":"USA","sex":"male","date_of_birth":"1991-01-25T00:00:00.000Z","height":1.99,"weight":113,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":149520623,"name":"Andrew Fisher","nationality":"BRN","sex":"male","date_of_birth":"1991-12-15T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":351340396,"name":"Andrew Graham Peebles","nationality":"ZIM","sex":"male","date_of_birth":"1989-01-09T00:00:00.000Z","height":1.91,"weight":87,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":99309663,"name":"Andrew Lewis","nationality":"TTO","sex":"male","date_of_birth":"1989-11-30T00:00:00.000Z","height":1.77,"weight":79,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":165292505,"name":"Andrew Pozzi","nationality":"GBR","sex":"male","date_of_birth":"1992-05-15T00:00:00.000Z","height":1.9,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":926287704,"name":"Andrew Riley","nationality":"JAM","sex":"male","date_of_birth":"1988-09-06T00:00:00.000Z","height":1.85,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":530085605,"name":"Andrew T Hodge","nationality":"GBR","sex":"male","date_of_birth":"1979-03-03T00:00:00.000Z","height":1.92,"weight":97,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":191993260,"name":"Andrew Thomas Bisek","nationality":"USA","sex":"male","date_of_birth":"1986-08-18T00:00:00.000Z","height":1.78,"weight":81,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":384767370,"name":"Andrew Thomas Mlugu","nationality":"TAN","sex":"male","date_of_birth":"1995-11-12T00:00:00.000Z","height":1.58,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":665587816,"name":"Andrew Vernon","nationality":"GBR","sex":"male","date_of_birth":"1986-01-07T00:00:00.000Z","height":1.82,"weight":71,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":584794145,"name":"Andrew Willis","nationality":"GBR","sex":"male","date_of_birth":"1990-12-03T00:00:00.000Z","height":1.89,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":559300154,"name":"Andrew Yorke","nationality":"CAN","sex":"male","date_of_birth":"1988-12-20T00:00:00.000Z","height":1.9,"weight":75,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":930021019,"name":"Andrey Amador Bikkazakova","nationality":"CRC","sex":"male","date_of_birth":"1986-08-29T00:00:00.000Z","height":1.83,"weight":73,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":642024679,"name":"Andrey Ashchev","nationality":"RUS","sex":"male","date_of_birth":"1983-05-10T00:00:00.000Z","height":2.02,"weight":105,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":213371438,"name":"Andrey Fonseca","nationality":"CRC","sex":"male","date_of_birth":"1993-04-08T00:00:00.000Z","height":1.68,"weight":56,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":915732512,"name":"Andrey Grechin","nationality":"RUS","sex":"male","date_of_birth":"1987-10-21T00:00:00.000Z","height":1.99,"weight":99,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":967358166,"name":"Andrey Kraitor","nationality":"RUS","sex":"male","date_of_birth":"1992-11-05T00:00:00.000Z","height":1.79,"weight":90,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":927974669,"name":"Andrey Kuznetsov","nationality":"RUS","sex":"male","date_of_birth":"1991-02-22T00:00:00.000Z","height":1.85,"weight":72,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":132173574,"name":"Andrey Likhovitskiy","nationality":"BLR","sex":"male","date_of_birth":"1986-06-23T00:00:00.000Z","height":1.72,"weight":66,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":54828663,"name":"Andrey Mitin","nationality":"RUS","sex":"male","date_of_birth":"1970-04-05T00:00:00.000Z","height":1.74,"weight":80,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":142867058,"name":"Andrey Petrov","nationality":"UZB","sex":"male","date_of_birth":"1986-10-13T00:00:00.000Z","height":1.69,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":434890755,"name":"Andrey Yerguchyov","nationality":"KAZ","sex":"male","date_of_birth":"1995-04-23T00:00:00.000Z","height":1.88,"weight":100,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":102165738,"name":"Andrey Yudin","nationality":"RUS","sex":"male","date_of_birth":"1996-06-06T00:00:00.000Z","height":1.75,"weight":70,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":295536761,"name":"Andrey Zeits","nationality":"KAZ","sex":"male","date_of_birth":"1986-12-14T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":317735498,"name":"Andri Eleftheriou","nationality":"CYP","sex":"female","date_of_birth":"1984-06-19T00:00:00.000Z","height":1.62,"weight":50,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":619323217,"name":"Andrii Govorov","nationality":"UKR","sex":"male","date_of_birth":"1992-04-10T00:00:00.000Z","height":1.9,"weight":89,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":730965977,"name":"Andrii Khripta","nationality":"UKR","sex":"male","date_of_birth":"1986-11-29T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":709643676,"name":"Andrii Sienichkin","nationality":"UKR","sex":"male","date_of_birth":"1991-05-01T00:00:00.000Z","height":1.75,"weight":62,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":789218383,"name":"Andrija Prlainovic","nationality":"SRB","sex":"male","date_of_birth":"1987-04-28T00:00:00.000Z","height":1.87,"weight":93,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":397768337,"name":"Andrija Sljukic","nationality":"SRB","sex":"male","date_of_birth":"1995-09-08T00:00:00.000Z","height":1.96,"weight":92,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":506743542,"name":"Andrique Allisop","nationality":"SEY","sex":"male","date_of_birth":"1993-06-02T00:00:00.000Z","height":1.75,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":180553214,"name":"Andrius Gudzius","nationality":"LTU","sex":"male","date_of_birth":"1991-02-14T00:00:00.000Z","height":2,"weight":130,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":109066206,"name":"Andrius Sidlauskas","nationality":"LTU","sex":"male","date_of_birth":"1997-04-06T00:00:00.000Z","height":1.87,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":910064394,"name":"Andriy Fedechko","nationality":"UKR","sex":"male","date_of_birth":"1990-12-04T00:00:00.000Z","height":1.78,"weight":72,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":856444352,"name":"Andriy Grivko","nationality":"UKR","sex":"male","date_of_birth":"1983-08-07T00:00:00.000Z","height":1.8,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":777498041,"name":"Andriy Kvyatkovskyy","nationality":"UKR","sex":"male","date_of_birth":"1990-02-02T00:00:00.000Z","height":1.75,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":129967030,"name":"Andriy Protsenko","nationality":"UKR","sex":"male","date_of_birth":"1988-05-20T00:00:00.000Z","height":1.94,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":572732712,"name":"Andriy Yagodka","nationality":"UKR","sex":"male","date_of_birth":"1988-07-06T00:00:00.000Z","height":1.95,"weight":85,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":277394115,"name":"Andro Buslje","nationality":"CRO","sex":"male","date_of_birth":"1986-01-04T00:00:00.000Z","height":2,"weight":115,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":526943972,"name":"Andy Murray","nationality":"GBR","sex":"male","date_of_birth":"1987-05-15T00:00:00.000Z","height":1.88,"weight":85,"sport":"tennis","gold":1,"silver":0,"bronze":0,"info":"Part of the \"Big Four\", which includes the four greatest tennis players since 2000, Great Briton Andy Murray won the Olympic gold in the men's singles at London 2012 and took silver in the doubles. He recently won his second Wimbledon title, in July 2016."},{"id":551671372,"name":"Andy Ogide","nationality":"NGR","sex":"male","date_of_birth":"1987-10-01T00:00:00.000Z","height":2.04,"weight":107,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":918724681,"name":"Andy Pereira","nationality":"CUB","sex":"male","date_of_birth":"1989-08-31T00:00:00.000Z","height":1.66,"weight":73,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":573932079,"name":"Ane Marcelle dos Santos","nationality":"BRA","sex":"female","date_of_birth":"1994-01-12T00:00:00.000Z","height":1.53,"weight":53,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":259399361,"name":"Ane Santesteban Gonzalez","nationality":"ESP","sex":"female","date_of_birth":"1990-12-12T00:00:00.000Z","height":1.6,"weight":48,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":855774717,"name":"Anel Oosthuizen","nationality":"RSA","sex":"female","date_of_birth":"1995-04-22T00:00:00.000Z","height":1.67,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":282925578,"name":"Anette Viborg","nationality":"DEN","sex":"female","date_of_birth":"1990-09-17T00:00:00.000Z","height":1.72,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":868296400,"name":"Anezka Drahotova","nationality":"CZE","sex":"female","date_of_birth":"1995-07-22T00:00:00.000Z","height":1.83,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":26642064,"name":"Anfisa Pochkalova","nationality":"UKR","sex":"female","date_of_birth":"1990-03-01T00:00:00.000Z","height":1.78,"weight":70,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":404311165,"name":"Angel Correa","nationality":"ARG","sex":"male","date_of_birth":"1995-03-09T00:00:00.000Z","height":1.74,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":618761201,"name":"Angel Fournier Rodriguez","nationality":"CUB","sex":"male","date_of_birth":"1987-12-31T00:00:00.000Z","height":1.98,"weight":108,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":435819850,"name":"Angel Kodinov","nationality":"BUL","sex":"male","date_of_birth":"1997-09-04T00:00:00.000Z","height":1.88,"weight":88,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":303559145,"name":"Angel Lopez","nationality":"ESP","sex":"male","date_of_birth":"1992-01-16T00:00:00.000Z","height":1.72,"weight":83,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":663091466,"name":"Angel McCoughtry","nationality":"USA","sex":"female","date_of_birth":"1986-09-10T00:00:00.000Z","height":1.85,"weight":70,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":283823153,"name":"Angel Pulgar","nationality":"VEN","sex":"male","date_of_birth":"1989-02-07T00:00:00.000Z","height":1.74,"weight":79,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":820102676,"name":"Angela Castro","nationality":"BOL","sex":"female","date_of_birth":"1993-02-21T00:00:00.000Z","height":1.6,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":916809801,"name":"Angela Clavijo","nationality":"COL","sex":"female","date_of_birth":"1993-09-01T00:00:00.000Z","height":1.63,"weight":62,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":287231198,"name":"Angela Hannah","nationality":"GBR","sex":"female","date_of_birth":"1986-03-24T00:00:00.000Z","height":1.74,"weight":72,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":948174500,"name":"Angela Malestein","nationality":"NED","sex":"female","date_of_birth":"1993-01-31T00:00:00.000Z","height":1.73,"weight":66,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":859256652,"name":"Angela Petty","nationality":"NZL","sex":"female","date_of_birth":"1991-08-16T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":772558236,"name":"Angela Tenorio","nationality":"ECU","sex":"female","date_of_birth":"1996-01-27T00:00:00.000Z","height":1.63,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":789985846,"name":"Angela Whyte","nationality":"CAN","sex":"female","date_of_birth":"1980-05-22T00:00:00.000Z","height":1.7,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":14266301,"name":"Angela del Pan","nationality":"ESP","sex":"female","date_of_birth":"1985-04-19T00:00:00.000Z","height":1.73,"weight":68,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":424933321,"name":"Angelica Bengtsson","nationality":"SWE","sex":"female","date_of_birth":"1993-07-08T00:00:00.000Z","height":1.63,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":518674471,"name":"Angelica Delgado","nationality":"USA","sex":"female","date_of_birth":"1990-12-14T00:00:00.000Z","height":1.61,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":327887923,"name":"Angelica Moser","nationality":"SUI","sex":"female","date_of_birth":"1997-10-09T00:00:00.000Z","height":1.69,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":610826770,"name":"Angelica Roos","nationality":"SWE","sex":"female","date_of_birth":"1989-04-15T00:00:00.000Z","height":1.58,"weight":58,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":812402263,"name":"Angelica Wallen","nationality":"SWE","sex":"female","date_of_birth":"1986-04-11T00:00:00.000Z","height":1.72,"weight":70,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":499427026,"name":"Angelika Cichocka","nationality":"POL","sex":"female","date_of_birth":"1988-03-15T00:00:00.000Z","height":1.7,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":647265868,"name":"Angelika Sita Ouedraogo","nationality":"BUR","sex":"female","date_of_birth":"1993-12-04T00:00:00.000Z","height":1.72,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":24258423,"name":"Angelina Kysla","nationality":"UKR","sex":"female","date_of_birth":"1991-02-15T00:00:00.000Z","height":1.58,"weight":49,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":806788576,"name":"Angelina Melnikova","nationality":"RUS","sex":"female","date_of_birth":"2000-07-18T00:00:00.000Z","height":1.51,"weight":44,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":null},{"id":175332035,"name":"Angelique Kerber","nationality":"GER","sex":"female","date_of_birth":"1988-01-18T00:00:00.000Z","height":1.73,"weight":68,"sport":"tennis","gold":0,"silver":1,"bronze":0,"info":null},{"id":493430225,"name":"Angelos Vlachopoulos","nationality":"GRE","sex":"male","date_of_birth":"1991-09-28T00:00:00.000Z","height":1.79,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":457358368,"name":"Angie Orjuela","nationality":"COL","sex":"female","date_of_birth":"1989-05-09T00:00:00.000Z","height":1.58,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":697735361,"name":"Angie Sabrina Gonzalez","nationality":"VEN","sex":"female","date_of_birth":"1981-01-03T00:00:00.000Z","height":1.6,"weight":57,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":618528044,"name":"Angus Groom","nationality":"GBR","sex":"male","date_of_birth":"1992-06-16T00:00:00.000Z","height":1.95,"weight":94,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":482234536,"name":"Anicka Newell","nationality":"CAN","sex":"female","date_of_birth":"1993-08-05T00:00:00.000Z","height":1.75,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":143427231,"name":"Anicka van Emden","nationality":"NED","sex":"female","date_of_birth":"1986-12-10T00:00:00.000Z","height":1.69,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":441101021,"name":"Anika Lorenz","nationality":"GER","sex":"female","date_of_birth":"1990-12-09T00:00:00.000Z","height":1.72,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":54089758,"name":"Anilda Thomas","nationality":"IND","sex":"female","date_of_birth":"1993-05-06T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":393115111,"name":"Anirban Lahiri","nationality":"IND","sex":"male","date_of_birth":"1987-06-29T00:00:00.000Z","height":1.72,"weight":80,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":52111806,"name":"Anish Khem","nationality":"FIJ","sex":"male","date_of_birth":"1993-08-27T00:00:00.000Z","height":1.75,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":795806548,"name":"Anisha Vekemans","nationality":"BEL","sex":"female","date_of_birth":"1991-08-17T00:00:00.000Z","height":1.6,"weight":52,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":998460252,"name":"Anissa Khelfaoui","nationality":"ALG","sex":"female","date_of_birth":"1991-08-29T00:00:00.000Z","height":1.68,"weight":62,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":145066330,"name":"Anita Alvarez","nationality":"USA","sex":"female","date_of_birth":"1996-12-02T00:00:00.000Z","height":1.71,"weight":51,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":790724196,"name":"Anita Hinriksdottir","nationality":"ISL","sex":"female","date_of_birth":"1996-01-13T00:00:00.000Z","height":1.72,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":709319591,"name":"Anita Marton","nationality":"HUN","sex":"female","date_of_birth":"1989-01-15T00:00:00.000Z","height":1.72,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":79802394,"name":"Anita McLAREN","nationality":"NZL","sex":"female","date_of_birth":"1987-10-02T00:00:00.000Z","height":1.63,"weight":56,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":175586177,"name":"Anita Wlodarczyk","nationality":"POL","sex":"female","date_of_birth":"1985-08-08T00:00:00.000Z","height":1.78,"weight":95,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":865947696,"name":"Aniuar Geduev","nationality":"RUS","sex":"male","date_of_birth":"1987-01-26T00:00:00.000Z","height":1.73,"weight":74,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":358118028,"name":"Aniya Necol Louissaint","nationality":"HAI","sex":"female","date_of_birth":"1998-09-09T00:00:00.000Z","height":1.73,"weight":67,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":639948235,"name":"Anja Crevar","nationality":"SRB","sex":"female","date_of_birth":"2000-05-24T00:00:00.000Z","height":1.64,"weight":49,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":623213060,"name":"Anja Klinar","nationality":"SLO","sex":"female","date_of_birth":"1988-04-03T00:00:00.000Z","height":1.7,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":699323942,"name":"Anja Mittag","nationality":"GER","sex":"female","date_of_birth":"1985-05-16T00:00:00.000Z","height":1.68,"weight":58,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":616847626,"name":"Anja Scherl","nationality":"GER","sex":"female","date_of_birth":"1986-04-12T00:00:00.000Z","height":1.6,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":109335235,"name":"Anjelina Nadai Lohalith","nationality":"ROT","sex":"female","date_of_birth":"1993-01-01T00:00:00.000Z","height":1.63,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":571260050,"name":"Anju Takamizawa","nationality":"JPN","sex":"female","date_of_birth":"1996-03-06T00:00:00.000Z","height":1.65,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":642447313,"name":"Ankhtsetseg Munkhjantsan","nationality":"MGL","sex":"female","date_of_birth":"1997-12-25T00:00:00.000Z","height":1.63,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":307535936,"name":"Ankit Sharma","nationality":"IND","sex":"male","date_of_birth":"1992-07-20T00:00:00.000Z","height":1.77,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":266461639,"name":"Ann-Sophie Duyck","nationality":"BEL","sex":"female","date_of_birth":"1987-07-23T00:00:00.000Z","height":1.72,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":327178595,"name":"Anna Boada Peiro","nationality":"ESP","sex":"female","date_of_birth":"1992-12-30T00:00:00.000Z","height":1.65,"weight":60,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":85532849,"name":"Anna Cruz","nationality":"ESP","sex":"female","date_of_birth":"1986-10-27T00:00:00.000Z","height":1.76,"weight":60,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":921750536,"name":"Anna Danesi","nationality":"ITA","sex":"female","date_of_birth":"1996-04-20T00:00:00.000Z","height":1.95,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":110782111,"name":"Anna Dowgiert","nationality":"POL","sex":"female","date_of_birth":"1990-07-15T00:00:00.000Z","height":1.7,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":636501122,"name":"Anna Emilie Moller","nationality":"DEN","sex":"female","date_of_birth":"1997-07-28T00:00:00.000Z","height":1.66,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":800527374,"name":"Anna Espar Llaquet","nationality":"ESP","sex":"female","date_of_birth":"1993-01-08T00:00:00.000Z","height":1.8,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":592806648,"name":"Anna Flanagan","nationality":"AUS","sex":"female","date_of_birth":"1992-01-08T00:00:00.000Z","height":1.8,"weight":66,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":315491322,"name":"Anna Green","nationality":"NZL","sex":"female","date_of_birth":"1990-08-20T00:00:00.000Z","height":1.67,"weight":57,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":739353909,"name":"Anna Greta Olasz","nationality":"HUN","sex":"female","date_of_birth":"1993-09-19T00:00:00.000Z","height":1.68,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":721775367,"name":"Anna Grineva","nationality":"RUS","sex":"female","date_of_birth":"1988-01-31T00:00:00.000Z","height":1.85,"weight":87,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":471756502,"name":"Anna Hahner","nationality":"GER","sex":"female","date_of_birth":"1989-11-20T00:00:00.000Z","height":1.65,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":128450991,"name":"Anna Illes","nationality":"HUN","sex":"female","date_of_birth":"1994-02-21T00:00:00.000Z","height":1.8,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":165448816,"name":"Anna Incerti","nationality":"ITA","sex":"female","date_of_birth":"1980-01-19T00:00:00.000Z","height":1.68,"weight":44,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":672606405,"name":"Anna Jagaciak","nationality":"POL","sex":"female","date_of_birth":"1990-02-10T00:00:00.000Z","height":1.77,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":570157500,"name":"Anna Jenny Fransson","nationality":"SWE","sex":"female","date_of_birth":"1987-07-18T00:00:00.000Z","height":1.69,"weight":73,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":218793925,"name":"Anna Karnaukh","nationality":"RUS","sex":"female","date_of_birth":"1993-08-31T00:00:00.000Z","height":1.73,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":144902061,"name":"Anna Karolina Schmiedlova","nationality":"SVK","sex":"female","date_of_birth":"1994-09-13T00:00:00.000Z","height":1.76,"weight":63,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":959541631,"name":"Anna Kasprzak","nationality":"DEN","sex":"female","date_of_birth":"1989-12-08T00:00:00.000Z","height":1.73,"weight":66,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":112286651,"name":"Anna Kielbasinska","nationality":"POL","sex":"female","date_of_birth":"1990-06-26T00:00:00.000Z","height":1.7,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":573321803,"name":"Anna Knauer","nationality":"GER","sex":"female","date_of_birth":"1995-02-20T00:00:00.000Z","height":1.7,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":711366566,"name":"Anna Korakaki","nationality":"GRE","sex":"female","date_of_birth":"1996-04-08T00:00:00.000Z","height":1.75,"weight":65,"sport":"shooting","gold":1,"silver":0,"bronze":1,"info":null},{"id":839118437,"name":"Anna Kornuta","nationality":"UKR","sex":"female","date_of_birth":"1988-11-10T00:00:00.000Z","height":1.68,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":550413879,"name":"Anna Laurell Nash","nationality":"SWE","sex":"female","date_of_birth":"1980-02-12T00:00:00.000Z","height":1.84,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":759876501,"name":"Anna Lunyova","nationality":"UKR","sex":"female","date_of_birth":"1991-10-01T00:00:00.000Z","height":1.76,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":688177663,"name":"Anna Maliszewska","nationality":"POL","sex":"female","date_of_birth":"1993-07-04T00:00:00.000Z","height":1.7,"weight":52,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":818693717,"name":"Anna Malova","nationality":"RUS","sex":"female","date_of_birth":"1990-04-16T00:00:00.000Z","height":1.75,"weight":59,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":953320535,"name":"Anna Malvina Svennung","nationality":"SWE","sex":"female","date_of_birth":"1984-10-24T00:00:00.000Z","height":1.78,"weight":74,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":621267862,"name":"Anna Maria Mazzetti","nationality":"ITA","sex":"female","date_of_birth":"1988-08-25T00:00:00.000Z","height":1.61,"weight":50,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":334806416,"name":"Anna Maria Sepp","nationality":"EST","sex":"female","date_of_birth":"1996-02-02T00:00:00.000Z","height":1.72,"weight":64,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":988042479,"name":"Anna Marton","nationality":"HUN","sex":"female","date_of_birth":"1995-03-31T00:00:00.000Z","height":1.8,"weight":70,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":211067010,"name":"Anna Meares","nationality":"AUS","sex":"female","date_of_birth":"1983-09-21T00:00:00.000Z","height":1.65,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":"Australia's highly decorated Anna Meares has medaled for the speed trial at the past three Olympic Games, with gold at London 2012, silver at Beijing 2008 and bronze at Athens 2004. Meares has 26 world championship medals, including 11 golds."},{"id":47625127,"name":"Anna Nordqvist","nationality":"SWE","sex":"female","date_of_birth":"1987-06-10T00:00:00.000Z","height":1.83,"weight":75,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":613249321,"name":"Anna Ntountounaki","nationality":"GRE","sex":"female","date_of_birth":"1995-09-09T00:00:00.000Z","height":1.77,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":68194105,"name":"Anna Plichta","nationality":"POL","sex":"female","date_of_birth":"1992-02-10T00:00:00.000Z","height":1.76,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":602398132,"name":"Anna Santamans","nationality":"FRA","sex":"female","date_of_birth":"1993-04-25T00:00:00.000Z","height":1.77,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":799918043,"name":"Anna Sedoykina","nationality":"RUS","sex":"female","date_of_birth":"1984-08-01T00:00:00.000Z","height":1.84,"weight":74,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":480514013,"name":"Anna Sen","nationality":"RUS","sex":"female","date_of_birth":"1990-12-03T00:00:00.000Z","height":1.86,"weight":81,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":320661487,"name":"Anna Sztankovics","nationality":"HUN","sex":"female","date_of_birth":"1996-01-10T00:00:00.000Z","height":1.77,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":475900147,"name":"Anna Timofeeva","nationality":"RUS","sex":"female","date_of_birth":"1987-07-18T00:00:00.000Z","height":1.78,"weight":86,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":553165489,"name":"Anna Titimets","nationality":"UKR","sex":"female","date_of_birth":"1989-03-05T00:00:00.000Z","height":1.73,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":760246597,"name":"Anna Ustyukhina","nationality":"RUS","sex":"female","date_of_birth":"1989-03-18T00:00:00.000Z","height":1.77,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":628102440,"name":"Anna Voloshyna","nationality":"UKR","sex":"female","date_of_birth":"1991-09-26T00:00:00.000Z","height":1.68,"weight":53,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":363091224,"name":"Anna Vyakhireva","nationality":"RUS","sex":"female","date_of_birth":"1995-03-13T00:00:00.000Z","height":1.68,"weight":63,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":984260519,"name":"Anna Wierzbowska","nationality":"POL","sex":"female","date_of_birth":"1990-12-08T00:00:00.000Z","height":1.84,"weight":80,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":232686773,"name":"Anna van der Breggen","nationality":"NED","sex":"female","date_of_birth":"1990-04-18T00:00:00.000Z","height":1.67,"weight":56,"sport":"cycling","gold":1,"silver":0,"bronze":1,"info":null},{"id":173475309,"name":"Anna-Lena Groenefeld","nationality":"GER","sex":"female","date_of_birth":"1985-06-04T00:00:00.000Z","height":1.8,"weight":73,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":878372430,"name":"Anna-Maria Alexandri","nationality":"AUT","sex":"female","date_of_birth":"1997-09-15T00:00:00.000Z","height":1.7,"weight":48,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":25318407,"name":"Annabel Laure Ali","nationality":"CMR","sex":"female","date_of_birth":"1985-03-04T00:00:00.000Z","height":1.76,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":849907578,"name":"Annalie Longo","nationality":"NZL","sex":"female","date_of_birth":"1991-07-01T00:00:00.000Z","height":1.56,"weight":54,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":36119786,"name":"Annalise Murphy","nationality":"IRL","sex":"female","date_of_birth":"1990-02-01T00:00:00.000Z","height":1.84,"weight":72,"sport":"sailing","gold":0,"silver":1,"bronze":0,"info":null},{"id":892128901,"name":"Anne Andersen","nationality":"DEN","sex":"female","date_of_birth":"1992-11-10T00:00:00.000Z","height":1.83,"weight":86,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":618276677,"name":"Anne Buijs","nationality":"NED","sex":"female","date_of_birth":"1991-12-02T00:00:00.000Z","height":1.9,"weight":73,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":8185560,"name":"Anne Cairns","nationality":"SAM","sex":"female","date_of_birth":"1981-01-11T00:00:00.000Z","height":null,"weight":null,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":979365404,"name":"Anne Haug","nationality":"GER","sex":"female","date_of_birth":"1983-01-20T00:00:00.000Z","height":1.64,"weight":51,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":862170739,"name":"Anne Holm Baumeister","nationality":"DEN","sex":"female","date_of_birth":"1987-12-29T00:00:00.000Z","height":1.68,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":470667048,"name":"Anne Lolk Thomsen","nationality":"DEN","sex":"female","date_of_birth":"1983-05-15T00:00:00.000Z","height":1.75,"weight":60,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":554467437,"name":"Anne Schroder","nationality":"GER","sex":"female","date_of_birth":"1994-09-11T00:00:00.000Z","height":1.7,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":676612958,"name":"Anne Terpstra","nationality":"NED","sex":"female","date_of_birth":"1991-01-05T00:00:00.000Z","height":1.66,"weight":57,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":663634916,"name":"Anne Zagre","nationality":"BEL","sex":"female","date_of_birth":"1990-03-13T00:00:00.000Z","height":1.76,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":723096716,"name":"Anne-Mari Hyrylainen","nationality":"FIN","sex":"female","date_of_birth":"1978-08-15T00:00:00.000Z","height":1.68,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":800780979,"name":"Anne-Marie Rindom","nationality":"DEN","sex":"female","date_of_birth":"1991-06-14T00:00:00.000Z","height":1.7,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":1,"info":null},{"id":869195887,"name":"Anneisha McLaughlin-Whilby","nationality":"JAM","sex":"female","date_of_birth":"1986-01-06T00:00:00.000Z","height":1.7,"weight":66,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":455588224,"name":"Annekatrin Thiele","nationality":"GER","sex":"female","date_of_birth":"1984-10-18T00:00:00.000Z","height":1.73,"weight":68,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":428641250,"name":"Anneliese Rubie","nationality":"AUS","sex":"female","date_of_birth":"1992-04-22T00:00:00.000Z","height":1.71,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":392790304,"name":"Anneloes van Veen","nationality":"NED","sex":"female","date_of_birth":"1990-08-07T00:00:00.000Z","height":1.77,"weight":67,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":389902510,"name":"Annemiek Bekkering","nationality":"NED","sex":"female","date_of_birth":"1991-08-05T00:00:00.000Z","height":1.6,"weight":54,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":706092659,"name":"Annemiek van Vleuten","nationality":"NED","sex":"female","date_of_birth":"1982-10-08T00:00:00.000Z","height":1.68,"weight":59,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":279678648,"name":"Annette Duetz","nationality":"NED","sex":"female","date_of_birth":"1993-06-29T00:00:00.000Z","height":1.8,"weight":74,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":297653287,"name":"Annette Edmondson","nationality":"AUS","sex":"female","date_of_birth":"1991-12-12T00:00:00.000Z","height":1.71,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":790807668,"name":"Anni Teija Orvokki Vuohijoki","nationality":"FIN","sex":"female","date_of_birth":"1988-05-24T00:00:00.000Z","height":1.62,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":925256825,"name":"Annie Haeger","nationality":"USA","sex":"female","date_of_birth":"1990-02-05T00:00:00.000Z","height":1.68,"weight":58,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":960982811,"name":"Annika Beck","nationality":"GER","sex":"female","date_of_birth":"1994-02-16T00:00:00.000Z","height":1.67,"weight":59,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":986477773,"name":"Annika Bochmann","nationality":"GER","sex":"female","date_of_birth":"1991-07-16T00:00:00.000Z","height":1.67,"weight":58,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":724113769,"name":"Annika Bruhn","nationality":"GER","sex":"female","date_of_birth":"1992-10-05T00:00:00.000Z","height":1.83,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":614874748,"name":"Annika Langvad","nationality":"DEN","sex":"female","date_of_birth":"1984-03-22T00:00:00.000Z","height":1.74,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":196922673,"name":"Annika Roloff","nationality":"GER","sex":"female","date_of_birth":"1991-03-10T00:00:00.000Z","height":1.66,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":595641112,"name":"Annika Schleu","nationality":"GER","sex":"female","date_of_birth":"1990-04-03T00:00:00.000Z","height":1.75,"weight":63,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":799645889,"name":"Annika Sprink","nationality":"GER","sex":"female","date_of_birth":"1995-10-20T00:00:00.000Z","height":1.73,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":156381580,"name":"Annike Krahn","nationality":"GER","sex":"female","date_of_birth":"1985-07-01T00:00:00.000Z","height":1.73,"weight":61,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":521298946,"name":"Annsert Whyte","nationality":"JAM","sex":"male","date_of_birth":"1987-10-04T00:00:00.000Z","height":1.88,"weight":86,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":403056126,"name":"Ano Kuwai","nationality":"JPN","sex":"female","date_of_birth":"1989-10-20T00:00:00.000Z","height":1.72,"weight":70,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":618542850,"name":"Anouk Verge-Depre","nationality":"SUI","sex":"female","date_of_birth":"1992-02-11T00:00:00.000Z","height":1.85,"weight":70,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":57200072,"name":"Anouk Vetter","nationality":"NED","sex":"female","date_of_birth":"1993-02-04T00:00:00.000Z","height":1.77,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":976455975,"name":"Anqi Xu","nationality":"CHN","sex":"female","date_of_birth":"1992-01-23T00:00:00.000Z","height":1.82,"weight":76,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":576815287,"name":"Antanas Kavaliauskas","nationality":"LTU","sex":"male","date_of_birth":"1984-09-19T00:00:00.000Z","height":2.08,"weight":114,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":224127843,"name":"Anthonique Strachan","nationality":"BAH","sex":"female","date_of_birth":"1993-08-22T00:00:00.000Z","height":1.68,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":293695659,"name":"Anthonny Sitraka Ralefy","nationality":"MAD","sex":"male","date_of_birth":"1995-07-10T00:00:00.000Z","height":1.82,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":547860838,"name":"Anthony Barbar","nationality":"LIB","sex":"male","date_of_birth":"1992-11-18T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":76732813,"name":"Anthony Dean","nationality":"AUS","sex":"male","date_of_birth":"1991-04-22T00:00:00.000Z","height":1.75,"weight":87,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":261223419,"name":"Anthony Ervin","nationality":"USA","sex":"male","date_of_birth":"1981-05-26T00:00:00.000Z","height":1.91,"weight":80,"sport":"aquatics","gold":2,"silver":0,"bronze":0,"info":null},{"id":179926166,"name":"Anthony Fahden","nationality":"USA","sex":"male","date_of_birth":"1986-02-27T00:00:00.000Z","height":1.81,"weight":71,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":335737888,"name":"Anthony Mylann Obame","nationality":"GAB","sex":"male","date_of_birth":"1988-09-10T00:00:00.000Z","height":1.9,"weight":97,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":63461595,"name":"Anthony Perez","nationality":"VEN","sex":"male","date_of_birth":"1993-09-29T00:00:00.000Z","height":2.05,"weight":93,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":818993615,"name":"Anthony Romaniw","nationality":"CAN","sex":"male","date_of_birth":"1991-09-15T00:00:00.000Z","height":1.8,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":368458137,"name":"Anthony Terras","nationality":"FRA","sex":"male","date_of_birth":"1985-06-21T00:00:00.000Z","height":1.7,"weight":69,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":575174171,"name":"Anthony Zambrano","nationality":"COL","sex":"male","date_of_birth":"1998-01-17T00:00:00.000Z","height":1.84,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":947380759,"name":"Antigoni Drisbioti","nationality":"GRE","sex":"female","date_of_birth":"1984-03-21T00:00:00.000Z","height":1.61,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":851486993,"name":"Antje von Seydlitz-Kurzbach","nationality":"CAN","sex":"female","date_of_birth":"1990-09-16T00:00:00.000Z","height":1.79,"weight":76,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":627845913,"name":"Antoaneta Boneva","nationality":"BUL","sex":"female","date_of_birth":"1986-01-17T00:00:00.000Z","height":1.68,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":969463454,"name":"Antoine Adams","nationality":"SKN","sex":"male","date_of_birth":"1988-08-31T00:00:00.000Z","height":1.8,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":110778822,"name":"Antoine Bouchard","nationality":"CAN","sex":"male","date_of_birth":"1994-08-24T00:00:00.000Z","height":1.8,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":352830774,"name":"Antoine Diot","nationality":"FRA","sex":"male","date_of_birth":"1989-01-17T00:00:00.000Z","height":1.93,"weight":86,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":778856814,"name":"Antoine Duchesne","nationality":"CAN","sex":"male","date_of_birth":"1991-09-12T00:00:00.000Z","height":1.89,"weight":73,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":638759707,"name":"Antoine Gakeme","nationality":"BDI","sex":"male","date_of_birth":"1991-12-24T00:00:00.000Z","height":1.69,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":265482075,"name":"Antoine Gillet","nationality":"BEL","sex":"male","date_of_birth":"1988-03-22T00:00:00.000Z","height":1.85,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":418069781,"name":"Antoine Valois-Fortier","nationality":"CAN","sex":"male","date_of_birth":"1990-03-13T00:00:00.000Z","height":1.9,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":124031196,"name":"Antoinette Gasongo","nationality":"BDI","sex":"female","date_of_birth":"1994-04-24T00:00:00.000Z","height":1.7,"weight":51,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":67909068,"name":"Antoinette Nana Djimou Ida","nationality":"FRA","sex":"female","date_of_birth":"1985-08-02T00:00:00.000Z","height":1.74,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":939122275,"name":"Anton Astakhov","nationality":"RUS","sex":"male","date_of_birth":"1987-04-30T00:00:00.000Z","height":1.76,"weight":85,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":866446784,"name":"Anton Avdeev","nationality":"RUS","sex":"male","date_of_birth":"1986-09-08T00:00:00.000Z","height":1.74,"weight":85,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":300749546,"name":"Anton Braun","nationality":"GER","sex":"male","date_of_birth":"1990-04-28T00:00:00.000Z","height":2.02,"weight":104,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":989516794,"name":"Anton Chupkov","nationality":"RUS","sex":"male","date_of_birth":"1997-02-22T00:00:00.000Z","height":1.88,"weight":71,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":55365103,"name":"Anton Dahlberg","nationality":"SWE","sex":"male","date_of_birth":"1985-05-10T00:00:00.000Z","height":1.82,"weight":71,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":727981250,"name":"Anton Fokin","nationality":"UZB","sex":"male","date_of_birth":"1982-11-13T00:00:00.000Z","height":1.68,"weight":57,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":393253446,"name":"Anton Ipsen","nationality":"DEN","sex":"male","date_of_birth":"1994-09-04T00:00:00.000Z","height":1.86,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":620488948,"name":"Anton Kosmac","nationality":"SLO","sex":"male","date_of_birth":"1976-12-14T00:00:00.000Z","height":1.83,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":469779027,"name":"Anton Kucmin","nationality":"SVK","sex":"male","date_of_birth":"1984-06-07T00:00:00.000Z","height":1.8,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":108256011,"name":"Anton McKee","nationality":"ISL","sex":"male","date_of_birth":"1993-12-18T00:00:00.000Z","height":1.83,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":835942400,"name":"Anton Prilepov","nationality":"BLR","sex":"male","date_of_birth":"1984-02-05T00:00:00.000Z","height":1.86,"weight":96,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":463095413,"name":"Anton Rizov","nationality":"BUL","sex":"male","date_of_birth":"1987-12-29T00:00:00.000Z","height":1.7,"weight":75,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":299113520,"name":"Anton Sintsov","nationality":"RUS","sex":"male","date_of_birth":"1985-02-03T00:00:00.000Z","height":1.7,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":75967084,"name":"Anton Sudesh Peiris Kurukulasooriyage","nationality":"SRI","sex":"male","date_of_birth":"1985-02-03T00:00:00.000Z","height":1.65,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":877558321,"name":"Anton Zarutskiy","nationality":"RUS","sex":"male","date_of_birth":"1986-04-27T00:00:00.000Z","height":1.95,"weight":94,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":723171334,"name":"Antonela Mena","nationality":"ARG","sex":"female","date_of_birth":"1988-02-28T00:00:00.000Z","height":1.8,"weight":84,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":972925193,"name":"Antonella Palmisano","nationality":"ITA","sex":"female","date_of_birth":"1991-08-06T00:00:00.000Z","height":1.65,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":96294708,"name":"Antonella del Core","nationality":"ITA","sex":"female","date_of_birth":"1980-11-05T00:00:00.000Z","height":1.8,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":281632549,"name":"Antoni Kindler","nationality":"CAN","sex":"male","date_of_birth":"1988-05-16T00:00:00.000Z","height":1.88,"weight":85,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":881359443,"name":"Antonia Moreira","nationality":"ANG","sex":"female","date_of_birth":"1982-04-26T00:00:00.000Z","height":1.72,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":773591831,"name":"Antonin Rouzier","nationality":"FRA","sex":"male","date_of_birth":"1986-08-18T00:00:00.000Z","height":2,"weight":102,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":945091038,"name":"Antonino Barilla","nationality":"ITA","sex":"male","date_of_birth":"1987-11-28T00:00:00.000Z","height":1.87,"weight":96,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":952687673,"name":"Antonio Abadia","nationality":"ESP","sex":"male","date_of_birth":"1990-07-02T00:00:00.000Z","height":1.7,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":946006998,"name":"Antonio Alkana","nationality":"RSA","sex":"male","date_of_birth":"1990-04-12T00:00:00.000Z","height":1.83,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":438649023,"name":"Antonio Arroyo Perez","nationality":"ESP","sex":"male","date_of_birth":"1994-05-09T00:00:00.000Z","height":1.7,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":198987455,"name":"Antonio Fernandez","nationality":"ESP","sex":"male","date_of_birth":"1991-06-12T00:00:00.000Z","height":1.84,"weight":76,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":778264975,"name":"Antonio J. Leal","nationality":"VEN","sex":"male","date_of_birth":"1987-06-25T00:00:00.000Z","height":1.65,"weight":60,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":53317288,"name":"Antonio PETROVIC","nationality":"MNE","sex":"male","date_of_birth":"1982-09-24T00:00:00.000Z","height":1.93,"weight":98,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":151724741,"name":"Antonio Petkovic","nationality":"CRO","sex":"male","date_of_birth":"1986-01-11T00:00:00.000Z","height":1.9,"weight":90,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":824387423,"name":"Antonio Vargas","nationality":"USA","sex":"male","date_of_birth":"1996-08-15T00:00:00.000Z","height":1.68,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":268280424,"name":"Antonis Martasidis","nationality":"CYP","sex":"male","date_of_birth":"1992-06-14T00:00:00.000Z","height":1.78,"weight":85,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":565509368,"name":"Antony Fowler","nationality":"GBR","sex":"male","date_of_birth":"1991-03-10T00:00:00.000Z","height":1.79,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":801230201,"name":"Antony Lozano","nationality":"HON","sex":"male","date_of_birth":"1993-04-25T00:00:00.000Z","height":1.82,"weight":81,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":500105232,"name":"Antri Christoforou","nationality":"CYP","sex":"female","date_of_birth":"1992-04-02T00:00:00.000Z","height":1.66,"weight":53,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":470808417,"name":"Antti Ruuskanen","nationality":"FIN","sex":"male","date_of_birth":"1984-02-21T00:00:00.000Z","height":1.89,"weight":86,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":329333328,"name":"Antwon Hicks","nationality":"NGR","sex":"male","date_of_birth":"1983-03-12T00:00:00.000Z","height":1.88,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":196778355,"name":"Anuradha Indrajith Cooray","nationality":"SRI","sex":"male","date_of_birth":"1978-03-24T00:00:00.000Z","height":1.74,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":807714880,"name":"Anuradha Thokchom","nationality":"IND","sex":"female","date_of_birth":"1989-02-02T00:00:00.000Z","height":1.62,"weight":54,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":479087750,"name":"Anvar Yunusov","nationality":"TJK","sex":"male","date_of_birth":"1987-02-01T00:00:00.000Z","height":1.69,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":500334706,"name":"Anyika Onuora","nationality":"GBR","sex":"female","date_of_birth":"1984-10-28T00:00:00.000Z","height":1.78,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":503893240,"name":"Anze Tavcar","nationality":"SLO","sex":"male","date_of_birth":"1994-12-02T00:00:00.000Z","height":1.87,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":585429109,"name":"Anzor Boltukaev","nationality":"RUS","sex":"male","date_of_birth":"1986-04-05T00:00:00.000Z","height":1.8,"weight":97,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":903085335,"name":"Apisai Domolailai","nationality":"FIJ","sex":"male","date_of_birth":"1989-04-16T00:00:00.000Z","height":1.92,"weight":98,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":399850299,"name":"Apolonia Vaivai","nationality":"FIJ","sex":"female","date_of_birth":"1991-02-05T00:00:00.000Z","height":1.37,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":746896443,"name":"Apostolos Christou","nationality":"GRE","sex":"male","date_of_birth":"1996-11-01T00:00:00.000Z","height":1.98,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":23572147,"name":"Apostolos Parellis","nationality":"CYP","sex":"male","date_of_birth":"1985-07-24T00:00:00.000Z","height":1.86,"weight":110,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":9514544,"name":"April Ross","nationality":"USA","sex":"female","date_of_birth":"1982-06-20T00:00:00.000Z","height":1.86,"weight":74,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":728939478,"name":"Apurvi Chandela","nationality":"IND","sex":"female","date_of_birth":"1993-01-04T00:00:00.000Z","height":1.57,"weight":54,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":706967900,"name":"Arajik Marutjan","nationality":"GER","sex":"male","date_of_birth":"1992-08-15T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":450196345,"name":"Arakel Mirzoyan","nationality":"ARM","sex":"male","date_of_birth":"1989-10-21T00:00:00.000Z","height":1.7,"weight":84,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":481716571,"name":"Aram Avagyan","nationality":"ARM","sex":"male","date_of_birth":"1991-01-18T00:00:00.000Z","height":1.73,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":69028117,"name":"Aran Zalewski","nationality":"AUS","sex":"male","date_of_birth":"1991-03-21T00:00:00.000Z","height":1.86,"weight":80,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":391027633,"name":"Arantxa Parra-Santonja","nationality":"ESP","sex":"female","date_of_birth":"1982-11-09T00:00:00.000Z","height":1.76,"weight":61,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":982181588,"name":"Arantza Gumucio","nationality":"CHI","sex":"female","date_of_birth":"1989-10-04T00:00:00.000Z","height":1.65,"weight":61,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":319236400,"name":"Aras Kaya","nationality":"TUR","sex":"male","date_of_birth":"1994-04-04T00:00:00.000Z","height":1.81,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":756028808,"name":"Arashi Morisaka","nationality":"JPN","sex":"male","date_of_birth":"1996-07-02T00:00:00.000Z","height":1.76,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":174361869,"name":"Arcangeline Fouodji Sonkbou","nationality":"CMR","sex":"female","date_of_birth":"1987-08-26T00:00:00.000Z","height":1.58,"weight":68,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":765868860,"name":"Ardo Arusaar","nationality":"EST","sex":"male","date_of_birth":"1988-06-24T00:00:00.000Z","height":1.81,"weight":102,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":554149372,"name":"Are Hansen","nationality":"NOR","sex":"male","date_of_birth":"1982-01-16T00:00:00.000Z","height":null,"weight":null,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":269857952,"name":"Are Strandli","nationality":"NOR","sex":"male","date_of_birth":"1988-08-18T00:00:00.000Z","height":null,"weight":null,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":488754594,"name":"Areneo David","nationality":"MAW","sex":"male","date_of_birth":"1995-06-06T00:00:00.000Z","height":1.64,"weight":58,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":67773543,"name":"Ari Mannio","nationality":"FIN","sex":"male","date_of_birth":"1987-07-23T00:00:00.000Z","height":1.85,"weight":100,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":381423797,"name":"Ari-Pekka Liukkonen","nationality":"FIN","sex":"male","date_of_birth":"1989-02-09T00:00:00.000Z","height":2.08,"weight":92,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":952365137,"name":"Aria Fischer","nationality":"USA","sex":"female","date_of_birth":"1999-03-02T00:00:00.000Z","height":1.83,"weight":78,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":76956627,"name":"Arialis J. Gandulla","nationality":"CUB","sex":"female","date_of_birth":"1995-06-22T00:00:00.000Z","height":1.7,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":68245783,"name":"Ariana Kira Hilborna","nationality":"LAT","sex":"female","date_of_birth":"1980-09-19T00:00:00.000Z","height":1.67,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":69546573,"name":"Ariana Orrego","nationality":"PER","sex":"female","date_of_birth":"1998-09-25T00:00:00.000Z","height":1.57,"weight":49,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":124325348,"name":"Ariana Washington","nationality":"USA","sex":"female","date_of_birth":"1996-08-27T00:00:00.000Z","height":1.76,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":978867868,"name":"Ariane Fortin","nationality":"CAN","sex":"female","date_of_birth":"1984-11-20T00:00:00.000Z","height":1.75,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":177132328,"name":"Arianna Castiglioni","nationality":"ITA","sex":"female","date_of_birth":"1997-08-15T00:00:00.000Z","height":1.67,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":571388778,"name":"Arianna Errigo","nationality":"ITA","sex":"female","date_of_birth":"1988-06-06T00:00:00.000Z","height":1.8,"weight":68,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":712016882,"name":"Arianna Garibotti","nationality":"ITA","sex":"female","date_of_birth":"1989-12-09T00:00:00.000Z","height":1.69,"weight":64,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":807270955,"name":"Arianna Perilli","nationality":"SMR","sex":"female","date_of_birth":"1978-05-01T00:00:00.000Z","height":1.61,"weight":65,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":705250725,"name":"Arianna Schivo","nationality":"ITA","sex":"female","date_of_birth":"1986-09-16T00:00:00.000Z","height":1.58,"weight":47,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":656130098,"name":"Arianna Vanderpool-Wallace","nationality":"BAH","sex":"female","date_of_birth":"1990-03-04T00:00:00.000Z","height":1.68,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":197129425,"name":"Arina Openysheva","nationality":"RUS","sex":"female","date_of_birth":"1999-03-24T00:00:00.000Z","height":1.68,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":520698565,"name":"Arina Rodionova","nationality":"AUS","sex":"female","date_of_birth":"1989-12-15T00:00:00.000Z","height":null,"weight":null,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":906864947,"name":"Arina Tsitsilina","nationality":"BLR","sex":"female","date_of_birth":"1998-10-09T00:00:00.000Z","height":1.73,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":713644170,"name":"Arisa Sato","nationality":"JPN","sex":"female","date_of_birth":"1989-07-18T00:00:00.000Z","height":1.64,"weight":52,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":159588097,"name":"Ariya Jutanugarn","nationality":"THA","sex":"female","date_of_birth":"1995-11-23T00:00:00.000Z","height":1.74,"weight":73,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":30042829,"name":"Ariya Phounsavath","nationality":"LAO","sex":"male","date_of_birth":"1991-03-02T00:00:00.000Z","height":1.82,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":388943,"name":"Arkadiusz Michalski","nationality":"POL","sex":"male","date_of_birth":"1990-01-07T00:00:00.000Z","height":1.8,"weight":105,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":720999336,"name":"Arlen Lopez","nationality":"CUB","sex":"male","date_of_birth":"1993-02-21T00:00:00.000Z","height":1.78,"weight":null,"sport":"boxing","gold":1,"silver":0,"bronze":0,"info":null},{"id":292905261,"name":"Arlenis Sierra Canadilla","nationality":"CUB","sex":"female","date_of_birth":"1992-12-07T00:00:00.000Z","height":1.62,"weight":57,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":991852219,"name":"Arleta Podolak","nationality":"POL","sex":"female","date_of_birth":"1993-10-20T00:00:00.000Z","height":1.6,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":207170334,"name":"Arley Rodriguez","nationality":"COL","sex":"male","date_of_birth":"1993-02-13T00:00:00.000Z","height":1.76,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":467565690,"name":"Arli Chontey","nationality":"KAZ","sex":"male","date_of_birth":"1992-07-01T00:00:00.000Z","height":1.5,"weight":56,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":708613279,"name":"Arman Hall","nationality":"USA","sex":"male","date_of_birth":"1994-02-12T00:00:00.000Z","height":1.83,"weight":74,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":653569053,"name":"Arman-Marshall Silla","nationality":"BLR","sex":"male","date_of_birth":"1994-07-13T00:00:00.000Z","height":2.03,"weight":105,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":583809753,"name":"Armandas Kelmelis","nationality":"LTU","sex":"male","date_of_birth":"1998-03-22T00:00:00.000Z","height":1.93,"weight":86,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":166236142,"name":"Arnaud Hybois","nationality":"FRA","sex":"male","date_of_birth":"1982-01-26T00:00:00.000Z","height":1.8,"weight":74,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":974000570,"name":"Arnis Rumbenieks","nationality":"LAT","sex":"male","date_of_birth":"1988-04-04T00:00:00.000Z","height":1.75,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":1436864,"name":"Arokia Rajiv","nationality":"IND","sex":"male","date_of_birth":"1991-05-22T00:00:00.000Z","height":1.77,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":459345576,"name":"Aron Baynes","nationality":"AUS","sex":"male","date_of_birth":"1986-12-09T00:00:00.000Z","height":2.07,"weight":115,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":858784469,"name":"Aron Gadorfalvi","nationality":"HUN","sex":"male","date_of_birth":"1977-12-05T00:00:00.000Z","height":1.84,"weight":73,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":725424114,"name":"Aron Kifle","nationality":"ERI","sex":"male","date_of_birth":"1998-02-20T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":754963695,"name":"Aron Szilagyi","nationality":"HUN","sex":"male","date_of_birth":"1990-01-14T00:00:00.000Z","height":1.8,"weight":78,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":279584048,"name":"Arsen Eraliev","nationality":"KGZ","sex":"male","date_of_birth":"1990-05-15T00:00:00.000Z","height":1.65,"weight":59,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":505546970,"name":"Arsen Julfalakyan","nationality":"ARM","sex":"male","date_of_birth":"1987-05-08T00:00:00.000Z","height":1.66,"weight":76,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":223079860,"name":"Arseth Heather","nationality":"MRI","sex":"female","date_of_birth":"1991-11-30T00:00:00.000Z","height":1.71,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":361362188,"name":"Arslanbek Achilov","nationality":"TKM","sex":"male","date_of_birth":"1993-07-01T00:00:00.000Z","height":1.77,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":75218682,"name":"Artem Bloshenko","nationality":"UKR","sex":"male","date_of_birth":"1985-02-01T00:00:00.000Z","height":1.87,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":552816016,"name":"Artem Chebotarev","nationality":"RUS","sex":"male","date_of_birth":"1988-10-26T00:00:00.000Z","height":1.84,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":996041766,"name":"Artem Ermakov","nationality":"RUS","sex":"male","date_of_birth":"1982-03-16T00:00:00.000Z","height":1.88,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":172069479,"name":"Artem Harutyunyan","nationality":"GER","sex":"male","date_of_birth":"1990-08-13T00:00:00.000Z","height":1.72,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":914185536,"name":"Artem Kosov","nationality":"RUS","sex":"male","date_of_birth":"1986-08-04T00:00:00.000Z","height":1.93,"weight":96,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":102564991,"name":"Artem Morozov","nationality":"UKR","sex":"male","date_of_birth":"1980-02-29T00:00:00.000Z","height":1.95,"weight":100,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":307289001,"name":"Artem Pochtarov","nationality":"UKR","sex":"male","date_of_birth":"1993-07-24T00:00:00.000Z","height":1.83,"weight":77,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":67482757,"name":"Artem Volvich","nationality":"RUS","sex":"male","date_of_birth":"1990-01-22T00:00:00.000Z","height":2.08,"weight":96,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":770170821,"name":"Artemi Gavezou","nationality":"ESP","sex":"female","date_of_birth":"1994-06-19T00:00:00.000Z","height":1.69,"weight":55,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":null},{"id":268835792,"name":"Arthur Abele","nationality":"GER","sex":"male","date_of_birth":"1986-07-30T00:00:00.000Z","height":1.84,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":33769282,"name":"Arthur Bergo","nationality":"BRA","sex":"male","date_of_birth":"1994-03-07T00:00:00.000Z","height":1.83,"weight":83,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":216948866,"name":"Arthur Biyarslanov","nationality":"CAN","sex":"male","date_of_birth":"1995-04-22T00:00:00.000Z","height":1.74,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":306653489,"name":"Arthur Lanigan-O'Keeffe","nationality":"IRL","sex":"male","date_of_birth":"1991-09-13T00:00:00.000Z","height":1.82,"weight":76,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":938345533,"name":"Arthur Mariano","nationality":"BRA","sex":"male","date_of_birth":"1993-09-18T00:00:00.000Z","height":1.69,"weight":65,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":11470529,"name":"Arthur Zanetti","nationality":"BRA","sex":"male","date_of_birth":"1990-04-15T00:00:00.000Z","height":1.56,"weight":64,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":"Brazil’s biggest feat in the men's artistic gymnastics was set by Arthur Zanetti, with the country's first gold medal, won at London 2012, in the rings event. Zanetti also has three world championship medals: a gold (2013) and two silvers (2011 and 2014)."},{"id":353946547,"name":"Arthur van Doren","nationality":"BEL","sex":"male","date_of_birth":"1994-10-01T00:00:00.000Z","height":1.78,"weight":74,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":749009956,"name":"Artsem Bandarenka","nationality":"BLR","sex":"male","date_of_birth":"1991-06-19T00:00:00.000Z","height":1.87,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":270627032,"name":"Artur Akhmatkhuzin","nationality":"RUS","sex":"male","date_of_birth":"1988-05-21T00:00:00.000Z","height":1.87,"weight":79,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":206524686,"name":"Artur Aleksanyan","nationality":"ARM","sex":"male","date_of_birth":"1991-10-21T00:00:00.000Z","height":1.9,"weight":98,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":80806141,"name":"Artur Brzozowski","nationality":"POL","sex":"male","date_of_birth":"1985-03-29T00:00:00.000Z","height":1.74,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":746970689,"name":"Artur Davtyan","nationality":"ARM","sex":"male","date_of_birth":"1992-08-08T00:00:00.000Z","height":1.6,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":311001055,"name":"Artur Hovhannisyan","nationality":"ARM","sex":"male","date_of_birth":"1996-03-23T00:00:00.000Z","height":1.6,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":46547339,"name":"Artur Kozlowski","nationality":"POL","sex":"male","date_of_birth":"1985-01-19T00:00:00.000Z","height":1.69,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":802555089,"name":"Artur Mastianica","nationality":"LTU","sex":"male","date_of_birth":"1992-07-30T00:00:00.000Z","height":1.87,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":936737122,"name":"Artur Mikolajczewski","nationality":"POL","sex":"male","date_of_birth":"1990-06-27T00:00:00.000Z","height":1.8,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":74899025,"name":"Arturo Chavez","nationality":"PER","sex":"male","date_of_birth":"1990-01-12T00:00:00.000Z","height":1.9,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":729366221,"name":"Arturo Gonzalez","nationality":"MEX","sex":"male","date_of_birth":"1994-09-05T00:00:00.000Z","height":1.73,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":512554925,"name":"Arturo Ramirez","nationality":"VEN","sex":"male","date_of_birth":"1991-09-14T00:00:00.000Z","height":1.7,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":318342628,"name":"Arturo Rivarola Trappe","nationality":"PAR","sex":"male","date_of_birth":"1989-11-02T00:00:00.000Z","height":1.83,"weight":80,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":32858315,"name":"Arturs Nikiforenko","nationality":"LAT","sex":"male","date_of_birth":"1992-05-03T00:00:00.000Z","height":1.85,"weight":110,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":512734462,"name":"Arturs Plesnieks","nationality":"LAT","sex":"male","date_of_birth":"1992-01-21T00:00:00.000Z","height":1.8,"weight":104,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":334665837,"name":"Artuur Peters","nationality":"BEL","sex":"male","date_of_birth":"1996-10-26T00:00:00.000Z","height":1.93,"weight":95,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":638975983,"name":"Artyom Zakharov","nationality":"KAZ","sex":"male","date_of_birth":"1991-10-27T00:00:00.000Z","height":1.77,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":231595890,"name":"Arun Panchia","nationality":"NZL","sex":"male","date_of_birth":"1989-04-22T00:00:00.000Z","height":1.8,"weight":73,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":531231218,"name":"Arvin Moazami Godarzi","nationality":"IRI","sex":"male","date_of_birth":"1990-03-26T00:00:00.000Z","height":1.85,"weight":73,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":574180353,"name":"Arya Nasimi Shad","nationality":"IRI","sex":"male","date_of_birth":"1999-11-07T00:00:00.000Z","height":1.78,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":717411449,"name":"Asadulla Lachinau","nationality":"BLR","sex":"male","date_of_birth":"1986-04-17T00:00:00.000Z","height":1.58,"weight":60,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":508304618,"name":"Asafa Powell","nationality":"JAM","sex":"male","date_of_birth":"1982-11-23T00:00:00.000Z","height":1.91,"weight":93,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":108415368,"name":"Asako O","nationality":"JPN","sex":"female","date_of_birth":"1987-12-16T00:00:00.000Z","height":1.89,"weight":85,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":454303485,"name":"Asami Yoshida","nationality":"JPN","sex":"female","date_of_birth":"1987-10-09T00:00:00.000Z","height":1.65,"weight":62,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":900715474,"name":"Asaramanitra Ratiarison","nationality":"MAD","sex":"female","date_of_birth":"1988-01-07T00:00:00.000Z","height":1.55,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":335612059,"name":"Asbel Kiprop","nationality":"KEN","sex":"male","date_of_birth":"1989-06-30T00:00:00.000Z","height":1.9,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":481165955,"name":"Asdis Hjalmsdottir","nationality":"ISL","sex":"female","date_of_birth":"1985-10-28T00:00:00.000Z","height":1.78,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":718103063,"name":"Asena Rokomarama","nationality":"FIJ","sex":"female","date_of_birth":"1996-05-02T00:00:00.000Z","height":1.6,"weight":58,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":436712955,"name":"Asenathi Jim","nationality":"RSA","sex":"male","date_of_birth":"1992-01-26T00:00:00.000Z","height":1.76,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":423360573,"name":"Asger Stromgaard Sorensen","nationality":"DEN","sex":"male","date_of_birth":"1996-06-05T00:00:00.000Z","height":1.92,"weight":89,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":687479557,"name":"Ash Southern","nationality":"AUS","sex":"female","date_of_birth":"1992-10-22T00:00:00.000Z","height":1.88,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":648671470,"name":"Asha Philip","nationality":"GBR","sex":"female","date_of_birth":"1990-10-25T00:00:00.000Z","height":1.64,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":464180251,"name":"Ashlee Ankudinoff","nationality":"AUS","sex":"female","date_of_birth":"1990-08-20T00:00:00.000Z","height":1.74,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":397806865,"name":"Ashleigh Gentle","nationality":"AUS","sex":"female","date_of_birth":"1991-02-25T00:00:00.000Z","height":1.71,"weight":52,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":143278150,"name":"Ashleigh Johnson","nationality":"USA","sex":"female","date_of_birth":"1994-09-12T00:00:00.000Z","height":1.86,"weight":81,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":193259308,"name":"Ashleigh Moolman-Pasio","nationality":"RSA","sex":"female","date_of_birth":"1985-12-09T00:00:00.000Z","height":1.63,"weight":52,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":70434826,"name":"Ashleigh Nelson","nationality":"GBR","sex":"female","date_of_birth":"1991-02-20T00:00:00.000Z","height":1.75,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":667381951,"name":"Ashleigh Simon","nationality":"RSA","sex":"female","date_of_birth":"1989-05-11T00:00:00.000Z","height":1.58,"weight":null,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":341434045,"name":"Ashley Jackson","nationality":"GBR","sex":"male","date_of_birth":"1987-08-27T00:00:00.000Z","height":1.7,"weight":73,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":742039431,"name":"Ashley Kelly","nationality":"IVB","sex":"female","date_of_birth":"1991-03-25T00:00:00.000Z","height":1.73,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":790221508,"name":"Ashley Lawrence","nationality":"CAN","sex":"female","date_of_birth":"1995-06-11T00:00:00.000Z","height":1.64,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":896644128,"name":"Ashley McKenzie","nationality":"GBR","sex":"male","date_of_birth":"1989-07-17T00:00:00.000Z","height":1.68,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":810246164,"name":"Ashley Nee","nationality":"USA","sex":"female","date_of_birth":"1989-06-15T00:00:00.000Z","height":1.63,"weight":54,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":889563611,"name":"Ashley Spencer","nationality":"USA","sex":"female","date_of_birth":"1993-06-08T00:00:00.000Z","height":1.78,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":405218283,"name":"Ashley Steacy","nationality":"CAN","sex":"female","date_of_birth":"1987-06-28T00:00:00.000Z","height":1.58,"weight":64,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":151634524,"name":"Ashley Stoddart","nationality":"AUS","sex":"female","date_of_birth":"1993-06-10T00:00:00.000Z","height":1.72,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":241360203,"name":"Ashlyn Harris","nationality":"USA","sex":"female","date_of_birth":"1985-10-19T00:00:00.000Z","height":1.73,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":40755680,"name":"Ashraf Abouelhassan","nationality":"EGY","sex":"male","date_of_birth":"1975-05-17T00:00:00.000Z","height":1.86,"weight":86,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":617579036,"name":"Ashraf Amgad Elseify","nationality":"QAT","sex":"male","date_of_birth":"1995-02-20T00:00:00.000Z","height":1.85,"weight":105,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":902296774,"name":"Ashton Baumann","nationality":"CAN","sex":"male","date_of_birth":"1993-01-05T00:00:00.000Z","height":1.91,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":629254109,"name":"Ashton Eaton","nationality":"USA","sex":"male","date_of_birth":"1988-01-21T00:00:00.000Z","height":1.86,"weight":81,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":388101012,"name":"Ashun Wu","nationality":"CHN","sex":"male","date_of_birth":"1985-06-22T00:00:00.000Z","height":1.81,"weight":81,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":415694006,"name":"Ashwini Chidananda Akkunji","nationality":"IND","sex":"female","date_of_birth":"1987-10-07T00:00:00.000Z","height":1.75,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":126172872,"name":"Ashwini Ponnappa","nationality":"IND","sex":"female","date_of_birth":"1989-09-18T00:00:00.000Z","height":1.65,"weight":59,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":95516264,"name":"Aska Cambridge","nationality":"JPN","sex":"male","date_of_birth":"1993-05-31T00:00:00.000Z","height":1.79,"weight":74,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":41712943,"name":"Askale Tiksa","nationality":"ETH","sex":"female","date_of_birth":"1994-07-21T00:00:00.000Z","height":1.65,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":568130066,"name":"Aslan Kakhidze","nationality":"KAZ","sex":"male","date_of_birth":"1988-10-28T00:00:00.000Z","height":1.85,"weight":39,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":645540187,"name":"Asley Gonzalez","nationality":"CUB","sex":"male","date_of_birth":"1989-09-05T00:00:00.000Z","height":1.79,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":95150337,"name":"Asmir Kolasinac","nationality":"SRB","sex":"male","date_of_birth":"1984-10-15T00:00:00.000Z","height":1.87,"weight":140,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":532768073,"name":"Asnage Castelly","nationality":"HAI","sex":"male","date_of_birth":"1978-03-29T00:00:00.000Z","height":1.82,"weight":74,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":560710110,"name":"Assiya Ipek","nationality":"TUR","sex":"female","date_of_birth":"1993-12-05T00:00:00.000Z","height":1.68,"weight":70,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":750446286,"name":"Assmaa Niang","nationality":"MAR","sex":"female","date_of_birth":"1983-01-04T00:00:00.000Z","height":1.68,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":713040991,"name":"Astier Nicolas","nationality":"FRA","sex":"male","date_of_birth":"1989-01-19T00:00:00.000Z","height":1.8,"weight":70,"sport":"equestrian","gold":1,"silver":1,"bronze":0,"info":null},{"id":124475429,"name":"Astou Ndour","nationality":"ESP","sex":"female","date_of_birth":"1994-08-22T00:00:00.000Z","height":1.95,"weight":68,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":131094271,"name":"Astou Traore","nationality":"SEN","sex":"female","date_of_birth":"1981-04-30T00:00:00.000Z","height":1.85,"weight":75,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":230678922,"name":"Astrid Guyart","nationality":"FRA","sex":"female","date_of_birth":"1983-03-17T00:00:00.000Z","height":1.74,"weight":59,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":899652187,"name":"Astrit Ajdarevic","nationality":"SWE","sex":"male","date_of_birth":"1990-04-17T00:00:00.000Z","height":1.88,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":137582033,"name":"Asuka Teramoto","nationality":"JPN","sex":"female","date_of_birth":"1995-11-19T00:00:00.000Z","height":1.45,"weight":37,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":6712714,"name":"Atallah Alanazi","nationality":"KSA","sex":"male","date_of_birth":"1988-02-22T00:00:00.000Z","height":1.74,"weight":74,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":60539950,"name":"Atanu Das","nationality":"IND","sex":"male","date_of_birth":"1992-04-05T00:00:00.000Z","height":1.75,"weight":79,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":59630450,"name":"Atef Saad","nationality":"TUN","sex":"male","date_of_birth":"1988-03-20T00:00:00.000Z","height":1.76,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":646350766,"name":"Ates Cinar","nationality":"TUR","sex":"male","date_of_birth":"1986-05-16T00:00:00.000Z","height":1.72,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":915895832,"name":"Atheyna Bylon","nationality":"PAN","sex":"female","date_of_birth":"1989-04-06T00:00:00.000Z","height":1.75,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":665581158,"name":"Athos Schwantes","nationality":"BRA","sex":"male","date_of_birth":"1985-02-13T00:00:00.000Z","height":1.9,"weight":85,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":877684883,"name":"Atsushi Arai","nationality":"JPN","sex":"male","date_of_birth":"1994-02-03T00:00:00.000Z","height":1.69,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":50738602,"name":"Atsuto Iida","nationality":"JPN","sex":"male","date_of_birth":"1993-12-24T00:00:00.000Z","height":1.81,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":550829050,"name":"Attapon Uea-Aree","nationality":"THA","sex":"male","date_of_birth":"1989-11-18T00:00:00.000Z","height":1.75,"weight":78,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":731428841,"name":"Attila Decker","nationality":"HUN","sex":"male","date_of_birth":"1987-08-25T00:00:00.000Z","height":1.97,"weight":94,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":913131099,"name":"Attila Kugler","nationality":"HUN","sex":"male","date_of_birth":"1986-09-16T00:00:00.000Z","height":1.86,"weight":89,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":390188051,"name":"Aubrey Modiba","nationality":"RSA","sex":"male","date_of_birth":"1995-07-22T00:00:00.000Z","height":1.72,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":283853104,"name":"Aubrey Smith","nationality":"JAM","sex":"male","date_of_birth":"1988-06-30T00:00:00.000Z","height":1.8,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":974052589,"name":"Aude Compan","nationality":"FRA","sex":"female","date_of_birth":"1993-03-03T00:00:00.000Z","height":1.73,"weight":67,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":44895631,"name":"Audrey Amiel","nationality":"FRA","sex":"female","date_of_birth":"1987-03-03T00:00:00.000Z","height":1.64,"weight":65,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":754931470,"name":"Audrey Cordon","nationality":"FRA","sex":"female","date_of_birth":"1989-09-22T00:00:00.000Z","height":1.7,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":330818489,"name":"Audrey Lacroix","nationality":"CAN","sex":"female","date_of_birth":"1983-11-17T00:00:00.000Z","height":1.63,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":596852328,"name":"Audrey Merle","nationality":"FRA","sex":"female","date_of_birth":"1995-05-19T00:00:00.000Z","height":1.53,"weight":45,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":213434791,"name":"Audrey Tcheumeo","nationality":"FRA","sex":"female","date_of_birth":"1990-04-20T00:00:00.000Z","height":1.77,"weight":78,"sport":"judo","gold":0,"silver":1,"bronze":0,"info":null},{"id":869065556,"name":"Audrey Yong","nationality":"SIN","sex":"female","date_of_birth":"1994-10-02T00:00:00.000Z","height":1.56,"weight":50,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":913854740,"name":"Augustin Maillefer","nationality":"SUI","sex":"male","date_of_birth":"1993-04-29T00:00:00.000Z","height":1.94,"weight":98,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":904782814,"name":"Augustine Lugonzo","nationality":"KEN","sex":"male","date_of_birth":"1992-07-29T00:00:00.000Z","height":1.83,"weight":86,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":145801140,"name":"Augustine Pulu","nationality":"NZL","sex":"male","date_of_birth":"1990-01-04T00:00:00.000Z","height":1.8,"weight":89,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":507418985,"name":"Augusto Dutra de Oliveira","nationality":"BRA","sex":"male","date_of_birth":"1990-07-16T00:00:00.000Z","height":1.8,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":818866481,"name":"Augusto Lima","nationality":"BRA","sex":"male","date_of_birth":"1991-09-17T00:00:00.000Z","height":2.06,"weight":118,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":551777924,"name":"Augusto Midana","nationality":"GBS","sex":"male","date_of_birth":"1984-05-20T00:00:00.000Z","height":1.67,"weight":74,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":571398392,"name":"Augusto Soares","nationality":"TLS","sex":"male","date_of_birth":"1986-08-22T00:00:00.000Z","height":1.65,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":875934579,"name":"Augusto de Paula","nationality":"BRA","sex":"male","date_of_birth":"1988-06-20T00:00:00.000Z","height":1.82,"weight":79,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":189592697,"name":"Aurea Cruz","nationality":"PUR","sex":"female","date_of_birth":"1982-01-10T00:00:00.000Z","height":1.8,"weight":63,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":863650191,"name":"Aurelia Bradeanu","nationality":"ROU","sex":"female","date_of_birth":"1979-05-05T00:00:00.000Z","height":1.8,"weight":75,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":757280840,"name":"Aurelie Alcindor","nationality":"MRI","sex":"female","date_of_birth":"1994-03-20T00:00:00.000Z","height":1.69,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":364491097,"name":"Aurelie Muller","nationality":"FRA","sex":"female","date_of_birth":"1990-06-07T00:00:00.000Z","height":1.69,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":166390906,"name":"Auriane Mallo","nationality":"FRA","sex":"female","date_of_birth":"1993-10-11T00:00:00.000Z","height":1.8,"weight":63,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":11624617,"name":"Aurimas Adomavicius","nationality":"LTU","sex":"male","date_of_birth":"1993-09-23T00:00:00.000Z","height":2.04,"weight":100,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":525803886,"name":"Aurimas Didzbalis","nationality":"LTU","sex":"male","date_of_birth":"1991-06-13T00:00:00.000Z","height":1.72,"weight":92,"sport":"weightlifting","gold":0,"silver":0,"bronze":1,"info":null},{"id":741095776,"name":"Aurimas Lankas","nationality":"LTU","sex":"male","date_of_birth":"1985-09-07T00:00:00.000Z","height":1.78,"weight":89,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":157040817,"name":"Auriole Dongmo","nationality":"CMR","sex":"female","date_of_birth":"1990-08-03T00:00:00.000Z","height":1.73,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":957513695,"name":"Austin Hack","nationality":"USA","sex":"male","date_of_birth":"1992-05-17T00:00:00.000Z","height":2.04,"weight":99,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":134543473,"name":"Automne Pavia","nationality":"FRA","sex":"female","date_of_birth":"1989-01-03T00:00:00.000Z","height":1.71,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":300863169,"name":"Avtandili Tchrikishvili","nationality":"GEO","sex":"male","date_of_birth":"1991-03-18T00:00:00.000Z","height":1.82,"weight":80,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":905229347,"name":"Avtar Singh","nationality":"IND","sex":"male","date_of_birth":"1992-04-03T00:00:00.000Z","height":1.8,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":932761050,"name":"Awa Ly Ndiaye","nationality":"SEN","sex":"female","date_of_birth":"2000-01-15T00:00:00.000Z","height":1.69,"weight":53,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":254855388,"name":"Axel Augis","nationality":"FRA","sex":"male","date_of_birth":"1990-12-06T00:00:00.000Z","height":1.72,"weight":71,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":663484224,"name":"Axel Harstedt","nationality":"SWE","sex":"male","date_of_birth":"1987-02-28T00:00:00.000Z","height":1.97,"weight":135,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":454328324,"name":"Axel Muller","nationality":"ARG","sex":"male","date_of_birth":"1993-11-25T00:00:00.000Z","height":1.83,"weight":84,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":874568110,"name":"Axel Werner","nationality":"ARG","sex":"male","date_of_birth":"1996-02-28T00:00:00.000Z","height":1.81,"weight":82,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":182938039,"name":"Axelle Dauwens","nationality":"BEL","sex":"female","date_of_birth":"1990-12-01T00:00:00.000Z","height":1.71,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":950658256,"name":"Aya Takeuchi","nationality":"JPN","sex":"female","date_of_birth":"1986-08-05T00:00:00.000Z","height":null,"weight":null,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":491035500,"name":"Aya Traore","nationality":"SEN","sex":"female","date_of_birth":"1983-07-27T00:00:00.000Z","height":1.83,"weight":75,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":427700587,"name":"Ayaka Nishimura","nationality":"JPN","sex":"female","date_of_birth":"1989-05-10T00:00:00.000Z","height":1.65,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":555668646,"name":"Ayaka Suzuki","nationality":"JPN","sex":"female","date_of_birth":"1989-09-30T00:00:00.000Z","height":1.68,"weight":65,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":40493277,"name":"Ayaka Takahashi","nationality":"JPN","sex":"female","date_of_birth":"1990-04-19T00:00:00.000Z","height":1.65,"weight":60,"sport":"badminton","gold":1,"silver":0,"bronze":0,"info":null},{"id":335371986,"name":"Ayami Oishi","nationality":"JPN","sex":"female","date_of_birth":"1991-04-09T00:00:00.000Z","height":1.69,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":647256767,"name":"Ayane Kurihara","nationality":"JPN","sex":"female","date_of_birth":"1989-09-27T00:00:00.000Z","height":1.72,"weight":59,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":136502040,"name":"Ayanleh Souleiman","nationality":"DJI","sex":"male","date_of_birth":"1992-12-03T00:00:00.000Z","height":1.9,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":691452618,"name":"Ayesha Shahriyar Mohammed Albalooshi","nationality":"UAE","sex":"female","date_of_birth":"1992-01-23T00:00:00.000Z","height":1.6,"weight":57,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":899389595,"name":"Ayman Fayez","nationality":"EGY","sex":"male","date_of_birth":"1991-03-03T00:00:00.000Z","height":1.81,"weight":72,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":102121811,"name":"Aymen Hammed","nationality":"TUN","sex":"male","date_of_birth":"1983-07-26T00:00:00.000Z","height":1.96,"weight":100,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":691236,"name":"Aymen Toumi","nationality":"TUN","sex":"male","date_of_birth":"1990-07-11T00:00:00.000Z","height":1.83,"weight":77,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":232025157,"name":"Ayomide Folorunso","nationality":"ITA","sex":"female","date_of_birth":"1996-10-17T00:00:00.000Z","height":1.7,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":585835557,"name":"Ayonika Paul","nationality":"IND","sex":"female","date_of_birth":"1992-09-23T00:00:00.000Z","height":1.74,"weight":74,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":375178687,"name":"Ayoub Abdellaoui","nationality":"ALG","sex":"male","date_of_birth":"1993-02-16T00:00:00.000Z","height":1.75,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":296010311,"name":"Ayouba Traore","nationality":"MLI","sex":"male","date_of_birth":"1982-08-09T00:00:00.000Z","height":1.8,"weight":null,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":702811118,"name":"Ayse Cora","nationality":"TUR","sex":"female","date_of_birth":"1993-03-03T00:00:00.000Z","height":1.75,"weight":69,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":256843630,"name":"Ayuko Suzuki","nationality":"JPN","sex":"female","date_of_birth":"1991-10-08T00:00:00.000Z","height":1.54,"weight":39,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":57499245,"name":"Ayyasamy Dharun","nationality":"IND","sex":"male","date_of_birth":"1996-12-31T00:00:00.000Z","height":1.77,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":603312305,"name":"Azad Albarzi","nationality":"SYR","sex":"male","date_of_birth":"1988-01-04T00:00:00.000Z","height":1.95,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":121737407,"name":"Azahara Munoz","nationality":"ESP","sex":"female","date_of_birth":"1987-11-19T00:00:00.000Z","height":1.67,"weight":56,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":284565638,"name":"Azenaide Daniela Carlos","nationality":"ANG","sex":"female","date_of_birth":"1990-06-14T00:00:00.000Z","height":1.8,"weight":69,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":682854309,"name":"Aziz Ouhadi","nationality":"MAR","sex":"male","date_of_birth":"1984-07-24T00:00:00.000Z","height":1.68,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":295847383,"name":"Azizulhasni Awang","nationality":"MAS","sex":"male","date_of_birth":"1988-01-05T00:00:00.000Z","height":1.66,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":572495754,"name":"Azmy Mehelba","nationality":"EGY","sex":"male","date_of_birth":"1991-03-26T00:00:00.000Z","height":1.72,"weight":77,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":959511873,"name":"Azucena Diaz","nationality":"ESP","sex":"female","date_of_birth":"1982-12-19T00:00:00.000Z","height":1.63,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":941256298,"name":"Azza Besbes","nationality":"TUN","sex":"female","date_of_birth":"1990-11-28T00:00:00.000Z","height":1.75,"weight":62,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":117554316,"name":"Baard Magnus Nesteng","nationality":"NOR","sex":"male","date_of_birth":"1979-05-14T00:00:00.000Z","height":1.83,"weight":80,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":652126944,"name":"Babett Peter","nationality":"GER","sex":"female","date_of_birth":"1988-05-12T00:00:00.000Z","height":1.71,"weight":64,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":316544316,"name":"Baboloki Thebe","nationality":"BOT","sex":"male","date_of_birth":"1997-03-18T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":879393745,"name":"Bachana Khorava","nationality":"GEO","sex":"male","date_of_birth":"1993-03-15T00:00:00.000Z","height":1.71,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":167699785,"name":"Bachir Mahamat","nationality":"CHA","sex":"male","date_of_birth":"1996-12-01T00:00:00.000Z","height":1.86,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":345025003,"name":"Badawy Mohamed Moneim","nationality":"EGY","sex":"male","date_of_birth":"1986-01-11T00:00:00.000Z","height":1.95,"weight":91,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":21166109,"name":"Baean Jouma","nationality":"SYR","sex":"female","date_of_birth":"1994-04-13T00:00:00.000Z","height":1.82,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":574430988,"name":"Baghdad Bounedjah","nationality":"ALG","sex":"male","date_of_birth":"1991-11-24T00:00:00.000Z","height":1.89,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":57983858,"name":"Bahar Caglar","nationality":"TUR","sex":"female","date_of_birth":"1988-09-28T00:00:00.000Z","height":1.9,"weight":76,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":417882039,"name":"Bakhodir Jalolov","nationality":"UZB","sex":"male","date_of_birth":"1994-07-08T00:00:00.000Z","height":1.98,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":803535676,"name":"Bakhtiyar Kozhatayev","nationality":"KAZ","sex":"male","date_of_birth":"1992-03-28T00:00:00.000Z","height":1.77,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":302183046,"name":"Balasz Sziranyi Somogyi","nationality":"ESP","sex":"male","date_of_birth":"1983-01-10T00:00:00.000Z","height":1.96,"weight":106,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":798097157,"name":"Balazs Baji","nationality":"HUN","sex":"male","date_of_birth":"1989-06-09T00:00:00.000Z","height":1.92,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":682683760,"name":"Balazs Erdelyi","nationality":"HUN","sex":"male","date_of_birth":"1990-02-16T00:00:00.000Z","height":1.96,"weight":94,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":958780251,"name":"Balazs Harai","nationality":"HUN","sex":"male","date_of_birth":"1987-04-05T00:00:00.000Z","height":2.02,"weight":110,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":458728105,"name":"Balazs Kiss","nationality":"HUN","sex":"male","date_of_birth":"1983-01-27T00:00:00.000Z","height":1.78,"weight":105,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":959413498,"name":"Balint Kopasz","nationality":"HUN","sex":"male","date_of_birth":"1997-01-01T00:00:00.000Z","height":1.81,"weight":72,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":881638132,"name":"Balla Dieye","nationality":"SEN","sex":"male","date_of_birth":"1980-11-13T00:00:00.000Z","height":1.88,"weight":68,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":684206677,"name":"Bambanani Mbane","nationality":"RSA","sex":"female","date_of_birth":"1990-03-12T00:00:00.000Z","height":1.62,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":368675991,"name":"Baofang Zhao","nationality":"CHN","sex":"female","date_of_birth":"1993-08-12T00:00:00.000Z","height":1.7,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":918929048,"name":"Barakat Mubarak Al-Harthi","nationality":"OMA","sex":"male","date_of_birth":"1988-06-15T00:00:00.000Z","height":1.73,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":227683804,"name":"Barbara","nationality":"BRA","sex":"female","date_of_birth":"1988-07-04T00:00:00.000Z","height":1.71,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":599919416,"name":"Barbara Arenhart","nationality":"BRA","sex":"female","date_of_birth":"1986-10-04T00:00:00.000Z","height":1.82,"weight":73,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":628540930,"name":"Barbara Bujka","nationality":"HUN","sex":"female","date_of_birth":"1986-09-05T00:00:00.000Z","height":1.72,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":798796089,"name":"Barbara Cornudella Ravetllat","nationality":"ESP","sex":"female","date_of_birth":"1992-09-06T00:00:00.000Z","height":1.6,"weight":50,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":756739224,"name":"Barbara Engleder","nationality":"GER","sex":"female","date_of_birth":"1982-09-16T00:00:00.000Z","height":1.62,"weight":72,"sport":"shooting","gold":1,"silver":0,"bronze":0,"info":null},{"id":941704507,"name":"Barbara Kovacs","nationality":"HUN","sex":"female","date_of_birth":"1993-07-26T00:00:00.000Z","height":1.67,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":160245017,"name":"Barbara Matic","nationality":"CRO","sex":"female","date_of_birth":"1994-12-03T00:00:00.000Z","height":1.71,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":143281351,"name":"Barbara Nwaba","nationality":"USA","sex":"female","date_of_birth":"1989-01-18T00:00:00.000Z","height":1.76,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":476278288,"name":"Barbara Pla","nationality":"ESP","sex":"female","date_of_birth":"1983-07-17T00:00:00.000Z","height":1.62,"weight":61,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":573831491,"name":"Barbara Riveros","nationality":"CHI","sex":"female","date_of_birth":"1987-08-03T00:00:00.000Z","height":1.57,"weight":46,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":19020354,"name":"Barbara Seixas de Freitas","nationality":"BRA","sex":"female","date_of_birth":"1987-08-03T00:00:00.000Z","height":1.77,"weight":66,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":591676186,"name":"Barbara Szabo","nationality":"HUN","sex":"female","date_of_birth":"1990-02-17T00:00:00.000Z","height":1.73,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":121734732,"name":"Barbora Balazova","nationality":"SVK","sex":"female","date_of_birth":"1992-03-18T00:00:00.000Z","height":1.69,"weight":73,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":610741199,"name":"Barbora Hermannova","nationality":"CZE","sex":"female","date_of_birth":"1990-11-07T00:00:00.000Z","height":1.8,"weight":79,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":958022952,"name":"Barbora Kodedova","nationality":"CZE","sex":"female","date_of_birth":"1990-02-27T00:00:00.000Z","height":1.65,"weight":54,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":646823652,"name":"Barbora Mokosova","nationality":"SVK","sex":"female","date_of_birth":"1997-03-10T00:00:00.000Z","height":1.68,"weight":62,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":233978154,"name":"Barbora Seemanova","nationality":"CZE","sex":"female","date_of_birth":"2000-04-01T00:00:00.000Z","height":1.75,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":804524103,"name":"Barbora Spotakova","nationality":"CZE","sex":"female","date_of_birth":"1981-06-30T00:00:00.000Z","height":1.82,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":"After winning gold at Beijing 2008 and London 2012, Barbora Špotáková has dominated the event of javelin at the past two Olympic Games. The Czech athlete has also picked up a world championship gold, along with two silvers between 2007 and 2011."},{"id":203332956,"name":"Barbora Strycova","nationality":"CZE","sex":"female","date_of_birth":"1986-03-28T00:00:00.000Z","height":1.65,"weight":62,"sport":"tennis","gold":0,"silver":0,"bronze":1,"info":null},{"id":759587471,"name":"Barbora Zavadova","nationality":"CZE","sex":"female","date_of_birth":"1993-01-23T00:00:00.000Z","height":1.77,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":467627104,"name":"Barna Bor","nationality":"HUN","sex":"male","date_of_birth":"1986-12-12T00:00:00.000Z","height":1.91,"weight":130,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":509608912,"name":"Barnabe Delarze","nationality":"SUI","sex":"male","date_of_birth":"1994-06-30T00:00:00.000Z","height":1.93,"weight":100,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":444827470,"name":"Barrett Laursen","nationality":"DEN","sex":"male","date_of_birth":"1994-11-17T00:00:00.000Z","height":1.84,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":394220896,"name":"Barry Middleton","nationality":"GBR","sex":"male","date_of_birth":"1984-01-12T00:00:00.000Z","height":1.76,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":112086322,"name":"Bart Deurloo","nationality":"NED","sex":"male","date_of_birth":"1991-02-23T00:00:00.000Z","height":1.7,"weight":60,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":999333930,"name":"Bartlomiej Wojciech Bonk","nationality":"POL","sex":"male","date_of_birth":"1984-10-11T00:00:00.000Z","height":1.81,"weight":104,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":402969291,"name":"Bartosz Bednorz","nationality":"POL","sex":"male","date_of_birth":"1994-07-25T00:00:00.000Z","height":2.01,"weight":84,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":250887268,"name":"Bartosz Jurecki","nationality":"POL","sex":"male","date_of_birth":"1979-01-31T00:00:00.000Z","height":1.92,"weight":107,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":594052376,"name":"Bartosz Kurek","nationality":"POL","sex":"male","date_of_birth":"1988-08-29T00:00:00.000Z","height":2.05,"weight":87,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":"An extremely powerful server and spiker, Bartosz Kurek is the idol of Poland's passionate volleyball fans. This opposite spiker helped his country to the 2012 World League, when he was elected the player of the tournamentand the 2009 European championship"},{"id":8007833,"name":"Bartosz Losiak","nationality":"POL","sex":"male","date_of_birth":"1992-05-14T00:00:00.000Z","height":1.9,"weight":88,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":678195803,"name":"Bas Verwijlen","nationality":"NED","sex":"male","date_of_birth":"1983-10-01T00:00:00.000Z","height":1.9,"weight":85,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":902813031,"name":"Bashar Resan","nationality":"IRQ","sex":"male","date_of_birth":"1996-12-22T00:00:00.000Z","height":1.75,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":495486399,"name":"Bashir Abdi","nationality":"BEL","sex":"male","date_of_birth":"1989-02-10T00:00:00.000Z","height":1.76,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":785539303,"name":"Bashir Asgari Babajanzadeh Darzi","nationality":"IRI","sex":"male","date_of_birth":"1989-08-20T00:00:00.000Z","height":1.88,"weight":130,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":418800406,"name":"Bassel Alrayes","nationality":"QAT","sex":"male","date_of_birth":"1979-03-04T00:00:00.000Z","height":1.8,"weight":95,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":366413893,"name":"Bassem Hassan Mohammed","nationality":"QAT","sex":"male","date_of_birth":"1987-05-31T00:00:00.000Z","height":1.77,"weight":78,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":670680423,"name":"Basten Caerts","nationality":"BEL","sex":"male","date_of_birth":"1997-10-27T00:00:00.000Z","height":1.85,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":735742491,"name":"Bastian Steger","nationality":"GER","sex":"male","date_of_birth":"1981-03-19T00:00:00.000Z","height":1.7,"weight":65,"sport":"table tennis","gold":0,"silver":0,"bronze":1,"info":null},{"id":231798489,"name":"Bastien Auzeil","nationality":"FRA","sex":"male","date_of_birth":"1989-10-22T00:00:00.000Z","height":1.95,"weight":89,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":795525665,"name":"Battsetseg Soronzonbold","nationality":"MGL","sex":"female","date_of_birth":"1990-05-03T00:00:00.000Z","height":1.7,"weight":67,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":409808283,"name":"Batuhan Gozgec","nationality":"TUR","sex":"male","date_of_birth":"1990-12-20T00:00:00.000Z","height":1.72,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":38294792,"name":"Bauke Mollema","nationality":"NED","sex":"male","date_of_birth":"1986-11-26T00:00:00.000Z","height":1.84,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":931107334,"name":"Baul An","nationality":"KOR","sex":"male","date_of_birth":"1994-03-25T00:00:00.000Z","height":1.69,"weight":66,"sport":"judo","gold":0,"silver":1,"bronze":0,"info":null},{"id":726557644,"name":"Bautista Ezcurra","nationality":"ARG","sex":"male","date_of_birth":"1995-04-21T00:00:00.000Z","height":1.8,"weight":82,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":887354934,"name":"Bautista Saubidet Birkner","nationality":"ARG","sex":"male","date_of_birth":"1995-11-28T00:00:00.000Z","height":1.79,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":350429572,"name":"Bayron Guama de la Cruz","nationality":"ECU","sex":"male","date_of_birth":"1985-06-14T00:00:00.000Z","height":1.65,"weight":61,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":298210804,"name":"Bayron Piedra","nationality":"ECU","sex":"male","date_of_birth":"1982-08-19T00:00:00.000Z","height":1.75,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":534612447,"name":"Beata Mikolajczyk","nationality":"POL","sex":"female","date_of_birth":"1985-10-15T00:00:00.000Z","height":1.7,"weight":68,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":663483429,"name":"Beata Naigambo","nationality":"NAM","sex":"female","date_of_birth":"1980-03-11T00:00:00.000Z","height":1.67,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":98378488,"name":"Beate Schrott","nationality":"AUT","sex":"female","date_of_birth":"1988-04-15T00:00:00.000Z","height":1.77,"weight":71,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":909285894,"name":"Beatrice Bartelloni","nationality":"ITA","sex":"female","date_of_birth":"1993-02-05T00:00:00.000Z","height":1.65,"weight":50,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":864630818,"name":"Beatrice Callegari","nationality":"ITA","sex":"female","date_of_birth":"1991-12-20T00:00:00.000Z","height":1.75,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":496142981,"name":"Beatrice Chepkoech","nationality":"KEN","sex":"female","date_of_birth":"1991-07-06T00:00:00.000Z","height":1.7,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":30019986,"name":"Beatrice Edwige","nationality":"FRA","sex":"female","date_of_birth":"1988-10-03T00:00:00.000Z","height":1.82,"weight":76,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":687126240,"name":"Beatrice Gyaman","nationality":"GHA","sex":"female","date_of_birth":"1987-02-17T00:00:00.000Z","height":null,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":33337656,"name":"Beatrice Kamuchanga Alice","nationality":"COD","sex":"female","date_of_birth":"1997-11-20T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":870483785,"name":"Beatriz","nationality":"BRA","sex":"female","date_of_birth":"1993-12-17T00:00:00.000Z","height":1.76,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":247018721,"name":"Beatriz Elizabeth Piron Candelario","nationality":"DOM","sex":"female","date_of_birth":"1995-02-27T00:00:00.000Z","height":1.5,"weight":48,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":483770449,"name":"Beatriz Feres","nationality":"BRA","sex":"female","date_of_birth":"1988-02-22T00:00:00.000Z","height":1.63,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":128263534,"name":"Beatriz Ferrer-Salat","nationality":"ESP","sex":"female","date_of_birth":"1966-03-11T00:00:00.000Z","height":1.76,"weight":58,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":870056502,"name":"Beatriz Muhlbauer","nationality":"BRA","sex":"female","date_of_birth":"1986-02-26T00:00:00.000Z","height":1.72,"weight":67,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":871879403,"name":"Beatriz Ortiz Munoz","nationality":"ESP","sex":"female","date_of_birth":"1995-06-21T00:00:00.000Z","height":1.76,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":102300427,"name":"Beatriz Pascual","nationality":"ESP","sex":"female","date_of_birth":"1982-05-09T00:00:00.000Z","height":1.63,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":237614757,"name":"Beatriz Perez","nationality":"ESP","sex":"female","date_of_birth":"1991-05-04T00:00:00.000Z","height":1.67,"weight":60,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":844171101,"name":"Becky Sauerbrunn","nationality":"USA","sex":"female","date_of_birth":"1985-06-06T00:00:00.000Z","height":1.7,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":229820052,"name":"Bedan Karoki Muchiri","nationality":"KEN","sex":"male","date_of_birth":"1990-08-21T00:00:00.000Z","height":1.7,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":72183566,"name":"Bediha Gun","nationality":"TUR","sex":"female","date_of_birth":"1994-10-26T00:00:00.000Z","height":1.67,"weight":53,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":389909627,"name":"Bedopassa Buassat Djonde","nationality":"GBS","sex":"male","date_of_birth":"1992-09-20T00:00:00.000Z","height":1.72,"weight":97,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":618056949,"name":"Begona Garcia","nationality":"ESP","sex":"female","date_of_birth":"1995-07-19T00:00:00.000Z","height":1.64,"weight":54,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":471766284,"name":"Begona Gumucio","nationality":"CHI","sex":"female","date_of_birth":"1992-01-14T00:00:00.000Z","height":1.69,"weight":66,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":57339699,"name":"Behdad Salimikordasiabi","nationality":"IRI","sex":"male","date_of_birth":"1989-12-08T00:00:00.000Z","height":1.92,"weight":170,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":"Standing 1.97m tall and weighing almost 200kg, Iran's Behdad Salimi won the heaviest powerlifting event at the London 2012 Olympic Games, winning gold in the + 105kg category. This giant also holds two world and three Asian titles."},{"id":302808648,"name":"Beka Gviniashvili","nationality":"GEO","sex":"male","date_of_birth":"1995-10-26T00:00:00.000Z","height":1.75,"weight":95,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":683307277,"name":"Bekhbayar Erdenebat","nationality":"MGL","sex":"male","date_of_birth":"1992-08-13T00:00:00.000Z","height":1.61,"weight":62,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":133958272,"name":"Bekir Karayel","nationality":"TUR","sex":"male","date_of_birth":"1982-05-10T00:00:00.000Z","height":1.7,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":922060137,"name":"Bekir Ozlu","nationality":"TUR","sex":"male","date_of_birth":"1988-08-30T00:00:00.000Z","height":1.7,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":252644554,"name":"Bektemir Melikuziev","nationality":"UZB","sex":"male","date_of_birth":"1996-04-08T00:00:00.000Z","height":1.77,"weight":null,"sport":"boxing","gold":0,"silver":1,"bronze":0,"info":null},{"id":312706182,"name":"Bekzod Abdurakhmonov","nationality":"UZB","sex":"male","date_of_birth":"1990-03-15T00:00:00.000Z","height":1.72,"weight":74,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":234823649,"name":"Bela Simon","nationality":"HUN","sex":"male","date_of_birth":"1988-08-04T00:00:00.000Z","height":1.86,"weight":85,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":25375270,"name":"Belen Casetta","nationality":"ARG","sex":"female","date_of_birth":"1994-09-26T00:00:00.000Z","height":1.63,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":126816152,"name":"Belen Succi","nationality":"ARG","sex":"female","date_of_birth":"1985-10-16T00:00:00.000Z","height":1.77,"weight":72,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":782850902,"name":"Belinda Hocking","nationality":"AUS","sex":"female","date_of_birth":"1990-09-14T00:00:00.000Z","height":1.67,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":152287521,"name":"Belinda Trussell","nationality":"CAN","sex":"female","date_of_birth":"1971-08-27T00:00:00.000Z","height":1.6,"weight":50,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":925936432,"name":"Ben Blankenship","nationality":"USA","sex":"male","date_of_birth":"1988-12-15T00:00:00.000Z","height":1.78,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":8906492,"name":"Ben Kanute","nationality":"USA","sex":"male","date_of_birth":"1992-12-14T00:00:00.000Z","height":1.83,"weight":70,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":614521259,"name":"Ben Maher","nationality":"GBR","sex":"male","date_of_birth":"1983-01-30T00:00:00.000Z","height":1.64,"weight":50,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":249786185,"name":"Ben Pinkelman","nationality":"USA","sex":"male","date_of_birth":"1994-06-13T00:00:00.000Z","height":1.94,"weight":99,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":905247284,"name":"Ben Proud","nationality":"GBR","sex":"male","date_of_birth":"1994-09-21T00:00:00.000Z","height":1.89,"weight":92,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":193268614,"name":"Ben Saxton","nationality":"GBR","sex":"male","date_of_birth":"1990-06-14T00:00:00.000Z","height":1.75,"weight":73,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":499087119,"name":"Ben Saxton","nationality":"CAN","sex":"male","date_of_birth":"1988-11-21T00:00:00.000Z","height":2,"weight":92,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":764834942,"name":"Ben Schwietert","nationality":"NED","sex":"male","date_of_birth":"1997-02-16T00:00:00.000Z","height":1.92,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":922248947,"name":"Ben St Lawrence","nationality":"AUS","sex":"male","date_of_birth":"1981-11-07T00:00:00.000Z","height":1.79,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":43362179,"name":"Ben Uzoh","nationality":"NGR","sex":"male","date_of_birth":"1988-03-18T00:00:00.000Z","height":1.91,"weight":92,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":113110709,"name":"Ben Vogg","nationality":"SUI","sex":"male","date_of_birth":"1992-09-07T00:00:00.000Z","height":1.8,"weight":73,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":727557746,"name":"Ben Youssef Meite","nationality":"CIV","sex":"male","date_of_birth":"1986-11-11T00:00:00.000Z","height":1.8,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":719296944,"name":"Bence Demeter","nationality":"HUN","sex":"male","date_of_birth":"1990-03-20T00:00:00.000Z","height":1.8,"weight":72,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":795193546,"name":"Bence Pulai","nationality":"HUN","sex":"male","date_of_birth":"1991-10-27T00:00:00.000Z","height":1.93,"weight":89,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":282673343,"name":"Bence Venyercsan","nationality":"HUN","sex":"male","date_of_birth":"1996-01-08T00:00:00.000Z","height":1.73,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":197443251,"name":"Bendeguz Petervari-Molnar","nationality":"HUN","sex":"male","date_of_birth":"1993-03-14T00:00:00.000Z","height":1.9,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":890462649,"name":"Benedek Olah","nationality":"FIN","sex":"male","date_of_birth":"1991-03-29T00:00:00.000Z","height":1.91,"weight":87,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":139635489,"name":"Benik Abrahamyan","nationality":"GEO","sex":"male","date_of_birth":"1985-07-31T00:00:00.000Z","height":1.86,"weight":115,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":181551295,"name":"Benjamin Auffret","nationality":"FRA","sex":"male","date_of_birth":"1995-03-15T00:00:00.000Z","height":1.66,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":544916259,"name":"Benjamin Ceiner","nationality":"HUN","sex":"male","date_of_birth":"1992-04-24T00:00:00.000Z","height":1.97,"weight":94,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":899077018,"name":"Benjamin Compaore","nationality":"FRA","sex":"male","date_of_birth":"1987-08-05T00:00:00.000Z","height":1.89,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":301130953,"name":"Benjamin Didier Hennequin","nationality":"FRA","sex":"male","date_of_birth":"1984-08-24T00:00:00.000Z","height":1.74,"weight":84,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":857144847,"name":"Benjamin Enzema","nationality":"GEQ","sex":"male","date_of_birth":"1989-03-25T00:00:00.000Z","height":1.7,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":824789786,"name":"Benjamin Errol Provisor","nationality":"USA","sex":"male","date_of_birth":"1990-06-26T00:00:00.000Z","height":1.73,"weight":88,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":811228409,"name":"Benjamin Fletcher","nationality":"GBR","sex":"male","date_of_birth":"1992-03-13T00:00:00.000Z","height":1.85,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":192357893,"name":"Benjamin Gischard","nationality":"SUI","sex":"male","date_of_birth":"1995-11-17T00:00:00.000Z","height":1.62,"weight":62,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":202636824,"name":"Benjamin Gratz","nationality":"HUN","sex":"male","date_of_birth":"1996-02-16T00:00:00.000Z","height":1.85,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":65135786,"name":"Benjamin Grez Ahrens","nationality":"CHI","sex":"male","date_of_birth":"1992-12-03T00:00:00.000Z","height":1.81,"weight":76,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":429748988,"name":"Benjamin Hallock","nationality":"USA","sex":"male","date_of_birth":"1997-11-22T00:00:00.000Z","height":1.99,"weight":108,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":138745925,"name":"Benjamin Hockin Brusquetti","nationality":"PAR","sex":"male","date_of_birth":"1986-09-27T00:00:00.000Z","height":1.95,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":678983494,"name":"Benjamin Kiplagat","nationality":"UGA","sex":"male","date_of_birth":"1989-03-04T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":594397202,"name":"Benjamin Lang","nationality":"FRA","sex":"male","date_of_birth":"1987-02-04T00:00:00.000Z","height":1.86,"weight":86,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":735684995,"name":"Benjamin Martin","nationality":"CAN","sex":"male","date_of_birth":"1987-04-18T00:00:00.000Z","height":1.82,"weight":75,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":917375467,"name":"Benjamin Savsek","nationality":"SLO","sex":"male","date_of_birth":"1987-03-24T00:00:00.000Z","height":1.77,"weight":74,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":279378478,"name":"Benjamin Schulte","nationality":"GUM","sex":"male","date_of_birth":"1995-12-22T00:00:00.000Z","height":1.93,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":466190490,"name":"Benjamin Steffen","nationality":"SUI","sex":"male","date_of_birth":"1982-03-08T00:00:00.000Z","height":1.89,"weight":78,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":54447153,"name":"Benjamin Thorne","nationality":"CAN","sex":"male","date_of_birth":"1993-03-19T00:00:00.000Z","height":1.8,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":64578005,"name":"Benjamin Toniutti","nationality":"FRA","sex":"male","date_of_birth":"1989-10-30T00:00:00.000Z","height":1.83,"weight":73,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":674024954,"name":"Benjamin Vadnai","nationality":"HUN","sex":"male","date_of_birth":"1995-12-30T00:00:00.000Z","height":1.83,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":121967304,"name":"Benjamin Waterhouse","nationality":"ASA","sex":"male","date_of_birth":"1985-06-11T00:00:00.000Z","height":1.72,"weight":71,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":12228881,"name":"Benn Harradine","nationality":"AUS","sex":"male","date_of_birth":"1982-10-14T00:00:00.000Z","height":1.98,"weight":115,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":381218659,"name":"Benny Muziyo Muziyo","nationality":"ZAM","sex":"male","date_of_birth":"1992-11-08T00:00:00.000Z","height":null,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":580939747,"name":"Benoit Paire","nationality":"FRA","sex":"male","date_of_birth":"1989-05-08T00:00:00.000Z","height":1.94,"weight":80,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":544056432,"name":"Benson Gicharu Njangiru","nationality":"KEN","sex":"male","date_of_birth":"1985-05-03T00:00:00.000Z","height":1.68,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":141851746,"name":"Benson Kiplagat Seurei","nationality":"BRN","sex":"male","date_of_birth":"1984-03-27T00:00:00.000Z","height":1.75,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":574621304,"name":"Berik Abdrakhmanov","nationality":"KAZ","sex":"male","date_of_birth":"1986-06-20T00:00:00.000Z","height":1.65,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":662027088,"name":"Bernadette Graf","nationality":"AUT","sex":"female","date_of_birth":"1992-06-25T00:00:00.000Z","height":1.75,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":951599589,"name":"Bernadette Pujals","nationality":"MEX","sex":"female","date_of_birth":"1968-06-08T00:00:00.000Z","height":1.58,"weight":55,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":155963598,"name":"Bernadette Szocs","nationality":"ROU","sex":"female","date_of_birth":"1995-03-05T00:00:00.000Z","height":1.59,"weight":48,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":347604292,"name":"Bernard Lagat","nationality":"USA","sex":"male","date_of_birth":"1974-12-12T00:00:00.000Z","height":1.73,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":78415215,"name":"Bernardin Ledoux Kingue Matam","nationality":"FRA","sex":"male","date_of_birth":"1990-05-20T00:00:00.000Z","height":1.63,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":839460124,"name":"Bernardo Baloyes","nationality":"COL","sex":"male","date_of_birth":"1994-01-06T00:00:00.000Z","height":1.68,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":833677171,"name":"Bernardo Guerrero Diaz","nationality":"CHI","sex":"male","date_of_birth":"1986-06-10T00:00:00.000Z","height":1.9,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":564965643,"name":"Bernardo Oliveira","nationality":"BRA","sex":"male","date_of_birth":"1993-06-08T00:00:00.000Z","height":1.73,"weight":70,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":351550766,"name":"Bernardo Oneto Gomes","nationality":"BRA","sex":"male","date_of_birth":"1993-11-12T00:00:00.000Z","height":1.88,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":44038366,"name":"Bernardo Rocha","nationality":"BRA","sex":"male","date_of_birth":"1989-07-03T00:00:00.000Z","height":1.81,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":619849300,"name":"Bernd Wiesberger","nationality":"AUT","sex":"male","date_of_birth":"1985-10-08T00:00:00.000Z","height":1.89,"weight":89,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":997731920,"name":"Bernhard Sieber","nationality":"AUT","sex":"male","date_of_birth":"1990-08-06T00:00:00.000Z","height":1.8,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":684096917,"name":"Berta Betanzos Moro","nationality":"ESP","sex":"female","date_of_birth":"1988-01-15T00:00:00.000Z","height":1.79,"weight":71,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":134339876,"name":"Berta Bonastre","nationality":"ESP","sex":"female","date_of_birth":"1992-06-03T00:00:00.000Z","height":1.57,"weight":50,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":98117610,"name":"Berta Garcia","nationality":"ESP","sex":"female","date_of_birth":"1982-04-12T00:00:00.000Z","height":1.73,"weight":73,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":390927427,"name":"Berthrade Simone Flore Bikatal","nationality":"CMR","sex":"female","date_of_birth":"1992-07-23T00:00:00.000Z","height":1.83,"weight":76,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":347904621,"name":"Bertrand Roine","nationality":"QAT","sex":"male","date_of_birth":"1981-02-17T00:00:00.000Z","height":1.98,"weight":99,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":634276383,"name":"Beryl Gastaldello","nationality":"FRA","sex":"female","date_of_birth":"1995-02-16T00:00:00.000Z","height":1.76,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":613088812,"name":"Beslan Mudranov","nationality":"RUS","sex":"male","date_of_birth":"1986-07-07T00:00:00.000Z","height":1.66,"weight":60,"sport":"judo","gold":1,"silver":0,"bronze":0,"info":null},{"id":822286344,"name":"Besu Sado","nationality":"ETH","sex":"female","date_of_birth":"1996-06-12T00:00:00.000Z","height":1.72,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":943971426,"name":"Beth Potter","nationality":"GBR","sex":"female","date_of_birth":"1991-12-27T00:00:00.000Z","height":1.7,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":552255079,"name":"Bethanie Mattek-Sands","nationality":"USA","sex":"female","date_of_birth":"1985-03-23T00:00:00.000Z","height":1.68,"weight":65,"sport":"tennis","gold":1,"silver":0,"bronze":0,"info":null},{"id":63368470,"name":"Betlhem Desalegn","nationality":"UAE","sex":"female","date_of_birth":"1991-11-11T00:00:00.000Z","height":1.6,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":325783858,"name":"Betsy Hassett","nationality":"NZL","sex":"female","date_of_birth":"1990-08-04T00:00:00.000Z","height":1.58,"weight":56,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":392303714,"name":"Betsy Saina","nationality":"KEN","sex":"female","date_of_birth":"1988-06-30T00:00:00.000Z","height":1.52,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":79046621,"name":"Betty Heidler","nationality":"GER","sex":"female","date_of_birth":"1983-10-14T00:00:00.000Z","height":1.75,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":690348095,"name":"Betzabeth Angelica Arguello Villegas","nationality":"VEN","sex":"female","date_of_birth":"1991-01-28T00:00:00.000Z","height":1.64,"weight":53,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":523896033,"name":"Beverly Ramos","nationality":"PUR","sex":"female","date_of_birth":"1987-08-24T00:00:00.000Z","height":1.68,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":644567979,"name":"Bianca Farella","nationality":"CAN","sex":"female","date_of_birth":"1992-04-10T00:00:00.000Z","height":1.73,"weight":73,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":826009653,"name":"Bianca Hammett","nationality":"AUS","sex":"female","date_of_birth":"1990-09-12T00:00:00.000Z","height":1.72,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":427195390,"name":"Bianca Razor","nationality":"ROU","sex":"female","date_of_birth":"1994-08-08T00:00:00.000Z","height":1.7,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":579106443,"name":"Bianca Stuart","nationality":"BAH","sex":"female","date_of_birth":"1988-05-17T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":245553516,"name":"Bianca Walkden","nationality":"GBR","sex":"female","date_of_birth":"1991-09-29T00:00:00.000Z","height":1.82,"weight":74,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":179256116,"name":"Bianca Williams","nationality":"GBR","sex":"female","date_of_birth":"1993-12-18T00:00:00.000Z","height":1.69,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":164136445,"name":"Bianka Busa","nationality":"SRB","sex":"female","date_of_birth":"1994-07-25T00:00:00.000Z","height":1.87,"weight":74,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":107444997,"name":"Biao Chai","nationality":"CHN","sex":"male","date_of_birth":"1990-10-10T00:00:00.000Z","height":1.86,"weight":80,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":589789761,"name":"Bibiro Ali Taher","nationality":"CHA","sex":"female","date_of_birth":"1988-04-24T00:00:00.000Z","height":1.6,"weight":44,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":440136772,"name":"Biko Adema","nationality":"KEN","sex":"male","date_of_birth":"1987-09-01T00:00:00.000Z","height":1.77,"weight":85,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":583607934,"name":"Bilal Tabti","nationality":"ALG","sex":"male","date_of_birth":"1993-06-07T00:00:00.000Z","height":1.75,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":543026073,"name":"Bilel Mhamdi","nationality":"TUN","sex":"male","date_of_birth":"1992-01-27T00:00:00.000Z","height":1.76,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":815957774,"name":"Biljana Pavicevic","nationality":"MNE","sex":"female","date_of_birth":"1988-05-12T00:00:00.000Z","height":1.69,"weight":63,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":484484990,"name":"Billy Bakker","nationality":"NED","sex":"male","date_of_birth":"1988-11-23T00:00:00.000Z","height":1.88,"weight":82,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":585423464,"name":"Billy Besson","nationality":"FRA","sex":"male","date_of_birth":"1981-03-08T00:00:00.000Z","height":1.69,"weight":69,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":594152540,"name":"Billy Odhiambo","nationality":"KEN","sex":"male","date_of_birth":"1993-11-07T00:00:00.000Z","height":1.84,"weight":95,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":787821587,"name":"Billy Scott Irakoze","nationality":"BDI","sex":"male","date_of_birth":"1996-10-30T00:00:00.000Z","height":1.96,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":426790116,"name":"Bilyal Makhov","nationality":"RUS","sex":"male","date_of_birth":"1987-09-20T00:00:00.000Z","height":2,"weight":125,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":613452490,"name":"Bin Dong","nationality":"CHN","sex":"male","date_of_birth":"1988-11-22T00:00:00.000Z","height":1.8,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":525898651,"name":"Bin Feng","nationality":"CHN","sex":"female","date_of_birth":"1994-04-03T00:00:00.000Z","height":1.84,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":877888215,"name":"Bin Lv","nationality":"CHN","sex":"male","date_of_birth":"1994-10-18T00:00:00.000Z","height":1.65,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":420088639,"name":"Bin Yang","nationality":"CHN","sex":"male","date_of_birth":"1989-07-10T00:00:00.000Z","height":1.8,"weight":80,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":774637226,"name":"Binbin Zhang","nationality":"CHN","sex":"female","date_of_birth":"1989-02-23T00:00:00.000Z","height":1.64,"weight":55,"sport":"shooting","gold":0,"silver":1,"bronze":0,"info":null},{"id":597092136,"name":"Bingtian Su","nationality":"CHN","sex":"male","date_of_birth":"1989-08-29T00:00:00.000Z","height":1.73,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":661948747,"name":"Bintou Dieme","nationality":"SEN","sex":"female","date_of_birth":"1984-02-01T00:00:00.000Z","height":1.67,"weight":58,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":442225974,"name":"Binyuan Hu","nationality":"CHN","sex":"male","date_of_birth":"1977-11-07T00:00:00.000Z","height":1.8,"weight":75,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":944420337,"name":"Birgit Koschischek","nationality":"AUT","sex":"female","date_of_birth":"1987-05-22T00:00:00.000Z","height":1.69,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":271713930,"name":"Birgit Michels","nationality":"GER","sex":"female","date_of_birth":"1984-09-28T00:00:00.000Z","height":1.78,"weight":70,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":131536621,"name":"Birhanu Balew","nationality":"BRN","sex":"male","date_of_birth":"1996-02-27T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":774582149,"name":"Birsel Vardarli Demirmen","nationality":"TUR","sex":"female","date_of_birth":"1984-07-12T00:00:00.000Z","height":1.75,"weight":60,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":112486635,"name":"Birzhan Zhakypov","nationality":"KAZ","sex":"male","date_of_birth":"1984-07-07T00:00:00.000Z","height":1.63,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":522639871,"name":"Bjorn Hornikel","nationality":"GER","sex":"male","date_of_birth":"1992-05-06T00:00:00.000Z","height":1.92,"weight":91,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":470613425,"name":"Bjorn van den Ende","nationality":"NED","sex":"male","date_of_birth":"1986-01-10T00:00:00.000Z","height":1.9,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":221212634,"name":"Blabjerg Mathiasen","nationality":"DEN","sex":"male","date_of_birth":"1995-01-11T00:00:00.000Z","height":1.85,"weight":78,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":735422828,"name":"Blai Mallarach Guell","nationality":"ESP","sex":"male","date_of_birth":"1987-08-21T00:00:00.000Z","height":1.87,"weight":87,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":395509377,"name":"Blair Cameron Bann","nationality":"CAN","sex":"male","date_of_birth":"1988-02-26T00:00:00.000Z","height":1.84,"weight":84,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":304290646,"name":"Blair Evans","nationality":"AUS","sex":"female","date_of_birth":"1991-04-03T00:00:00.000Z","height":1.75,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":157315163,"name":"Blair Hilton","nationality":"NZL","sex":"male","date_of_birth":"1989-08-28T00:00:00.000Z","height":1.81,"weight":78,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":930133339,"name":"Blair Tarrant","nationality":"NZL","sex":"male","date_of_birth":"1990-05-11T00:00:00.000Z","height":1.85,"weight":83,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":842741490,"name":"Blair Tuke","nationality":"NZL","sex":"male","date_of_birth":"1989-07-25T00:00:00.000Z","height":1.81,"weight":78,"sport":"sailing","gold":1,"silver":0,"bronze":0,"info":null},{"id":435079767,"name":"Blake Blackburn","nationality":"AUS","sex":"male","date_of_birth":"1992-08-03T00:00:00.000Z","height":1.81,"weight":82,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":993776091,"name":"Blake Gaudry","nationality":"AUS","sex":"male","date_of_birth":"1991-11-29T00:00:00.000Z","height":1.79,"weight":72,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":950950151,"name":"Blake Govers","nationality":"AUS","sex":"male","date_of_birth":"1996-07-06T00:00:00.000Z","height":1.87,"weight":85,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":570608473,"name":"Blake Pieroni","nationality":"USA","sex":"male","date_of_birth":"1995-11-15T00:00:00.000Z","height":1.88,"weight":86,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":214905854,"name":"Blandine Dancette","nationality":"FRA","sex":"female","date_of_birth":"1988-02-14T00:00:00.000Z","height":1.69,"weight":60,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":690400835,"name":"Blanka Vlasic","nationality":"CRO","sex":"female","date_of_birth":"1983-11-08T00:00:00.000Z","height":1.93,"weight":71,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":855954658,"name":"Blaz Blagotinsek","nationality":"SLO","sex":"male","date_of_birth":"1994-01-17T00:00:00.000Z","height":2.02,"weight":108,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":21924133,"name":"Blaz Janc","nationality":"SLO","sex":"male","date_of_birth":"1996-11-20T00:00:00.000Z","height":1.86,"weight":88,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":473644468,"name":"Blessing Oborududu","nationality":"NGR","sex":"female","date_of_birth":"1989-03-12T00:00:00.000Z","height":1.63,"weight":63,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":95183266,"name":"Blessing Okagbare","nationality":"NGR","sex":"female","date_of_birth":"1988-10-09T00:00:00.000Z","height":1.81,"weight":71,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":306720792,"name":"Bo Qiu","nationality":"CHN","sex":"male","date_of_birth":"1993-01-31T00:00:00.000Z","height":1.65,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":891887866,"name":"Boaz Meylink","nationality":"NED","sex":"male","date_of_birth":"1984-03-22T00:00:00.000Z","height":1.95,"weight":93,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":502149585,"name":"Bob de Voogd","nationality":"NED","sex":"male","date_of_birth":"1988-09-16T00:00:00.000Z","height":1.83,"weight":80,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":491078381,"name":"Bobae Ki","nationality":"KOR","sex":"female","date_of_birth":"1988-02-20T00:00:00.000Z","height":1.67,"weight":57,"sport":"archery","gold":1,"silver":0,"bronze":1,"info":"The current world archery champion, Ki Bo-Bae won two golds at London 2012, in the individual and team events. That same year, this athlete from the Republic of Korea also won the world cup title."},{"id":650906817,"name":"Bobana Velickovic","nationality":"SRB","sex":"female","date_of_birth":"1990-01-25T00:00:00.000Z","height":1.7,"weight":59,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":112585422,"name":"Bobby Lea","nationality":"USA","sex":"male","date_of_birth":"1983-10-17T00:00:00.000Z","height":1.88,"weight":77,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":130126334,"name":"Bobur Shokirjonov","nationality":"UZB","sex":"male","date_of_birth":"1990-12-05T00:00:00.000Z","height":1.95,"weight":105,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":495066893,"name":"Bode Abiodun","nationality":"NGR","sex":"male","date_of_birth":"1980-09-10T00:00:00.000Z","height":1.7,"weight":68,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":903668874,"name":"Bodi Turner","nationality":"AUS","sex":"male","date_of_birth":"1994-09-18T00:00:00.000Z","height":1.8,"weight":81,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":915515161,"name":"Bodin Isara","nationality":"THA","sex":"male","date_of_birth":"1990-12-12T00:00:00.000Z","height":1.75,"weight":78,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":215144146,"name":"Bodo Essissima Madeleine Samantha","nationality":"CMR","sex":"female","date_of_birth":"1992-04-29T00:00:00.000Z","height":1.82,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":813532025,"name":"Boe Warawara","nationality":"VAN","sex":"male","date_of_birth":"1995-01-26T00:00:00.000Z","height":null,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":4071248,"name":"Bogdan Bogdanovic","nationality":"SRB","sex":"male","date_of_birth":"1992-08-18T00:00:00.000Z","height":1.97,"weight":99,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":68724456,"name":"Bogdan Nikishin","nationality":"UKR","sex":"male","date_of_birth":"1980-05-29T00:00:00.000Z","height":1.88,"weight":85,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":23204063,"name":"Boglarka Kapas","nationality":"HUN","sex":"female","date_of_birth":"1993-04-22T00:00:00.000Z","height":1.68,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":49967537,"name":"Bogna Jozwiak","nationality":"POL","sex":"female","date_of_birth":"1983-04-25T00:00:00.000Z","height":1.82,"weight":80,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":585709776,"name":"Bohdan Bondarenko","nationality":"UKR","sex":"male","date_of_birth":"1989-08-30T00:00:00.000Z","height":1.98,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":309321530,"name":"Boitumelo Masilo","nationality":"BOT","sex":"male","date_of_birth":"1995-08-05T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":56310662,"name":"Bojan Bogdanovic","nationality":"CRO","sex":"male","date_of_birth":"1989-04-18T00:00:00.000Z","height":2,"weight":103,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":371663534,"name":"Bojan Tokic","nationality":"SLO","sex":"male","date_of_birth":"1981-01-13T00:00:00.000Z","height":1.78,"weight":76,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":597510808,"name":"Bojana Popovic","nationality":"MNE","sex":"female","date_of_birth":"1979-11-20T00:00:00.000Z","height":1.88,"weight":86,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":189764365,"name":"Bojana Zivkovic","nationality":"SRB","sex":"female","date_of_birth":"1988-03-29T00:00:00.000Z","height":1.86,"weight":72,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":599338352,"name":"Bokai Huang","nationality":"CHN","sex":"male","date_of_birth":"1996-09-26T00:00:00.000Z","height":1.9,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":633981325,"name":"Bokyeong Jeong","nationality":"KOR","sex":"female","date_of_birth":"1991-04-17T00:00:00.000Z","height":1.53,"weight":51,"sport":"judo","gold":0,"silver":1,"bronze":0,"info":null},{"id":37603597,"name":"Bombayla Devi Laishram","nationality":"IND","sex":"female","date_of_birth":"1985-02-22T00:00:00.000Z","height":1.64,"weight":60,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":969273805,"name":"Bomi Kim","nationality":"KOR","sex":"female","date_of_birth":"1985-10-07T00:00:00.000Z","height":1.57,"weight":54,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":841861773,"name":"Bonchan Ku","nationality":"KOR","sex":"male","date_of_birth":"1993-01-31T00:00:00.000Z","height":1.81,"weight":84,"sport":"archery","gold":2,"silver":0,"bronze":0,"info":null},{"id":593350909,"name":"Bongil Gu","nationality":"KOR","sex":"male","date_of_birth":"1989-04-27T00:00:00.000Z","height":1.82,"weight":70,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":947726,"name":"Boniface Mucheru Tumuti","nationality":"KEN","sex":"male","date_of_birth":"1992-05-02T00:00:00.000Z","height":1.75,"weight":72,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":25616888,"name":"Boonsak Ponsana","nationality":"THA","sex":"male","date_of_birth":"1982-02-22T00:00:00.000Z","height":1.79,"weight":75,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":678784901,"name":"Boonthung Srisung","nationality":"THA","sex":"male","date_of_birth":"1981-05-30T00:00:00.000Z","height":1.71,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":993211347,"name":"Bora Gulari","nationality":"USA","sex":"male","date_of_birth":"1975-10-22T00:00:00.000Z","height":1.81,"weight":74,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":310122376,"name":"Boris Balaz","nationality":"SVK","sex":"male","date_of_birth":"1997-11-20T00:00:00.000Z","height":1.82,"weight":72,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":404999388,"name":"Boris Berian","nationality":"USA","sex":"male","date_of_birth":"1992-12-19T00:00:00.000Z","height":1.83,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":241752566,"name":"Boris Diaw","nationality":"FRA","sex":"male","date_of_birth":"1982-04-16T00:00:00.000Z","height":2.03,"weight":115,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":861405399,"name":"Boris Kirillov","nationality":"AZE","sex":"male","date_of_birth":"1992-08-04T00:00:00.000Z","height":1.81,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":703703338,"name":"Boris Yotov","nationality":"AZE","sex":"male","date_of_birth":"1996-02-25T00:00:00.000Z","height":1.93,"weight":93,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":206019414,"name":"Borislav Stefanov Novachkov","nationality":"BUL","sex":"male","date_of_birth":"1989-11-29T00:00:00.000Z","height":1.7,"weight":71,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":888969887,"name":"Borja Carrascosa","nationality":"ESP","sex":"male","date_of_birth":"1982-02-05T00:00:00.000Z","height":1.82,"weight":71,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":142258251,"name":"Borja Fernandez","nationality":"QAT","sex":"male","date_of_birth":"1981-12-25T00:00:00.000Z","height":2.06,"weight":110,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":200431710,"name":"Borja Vivas","nationality":"ESP","sex":"male","date_of_birth":"1984-05-26T00:00:00.000Z","height":2.04,"weight":139,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":139684134,"name":"Borna Coric","nationality":"CRO","sex":"male","date_of_birth":"1996-11-14T00:00:00.000Z","height":1.85,"weight":78,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":720390128,"name":"Borys Shvets","nationality":"UKR","sex":"male","date_of_birth":"1991-08-20T00:00:00.000Z","height":1.75,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":895703195,"name":"Bosco Perez-Pla","nationality":"ESP","sex":"male","date_of_birth":"1987-09-26T00:00:00.000Z","height":1.8,"weight":78,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":103791379,"name":"Bostjan Macek","nationality":"SLO","sex":"male","date_of_birth":"1972-06-17T00:00:00.000Z","height":1.74,"weight":118,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":876174352,"name":"Bouchra Fatima Zohra Hirech","nationality":"ALG","sex":"female","date_of_birth":"2000-08-22T00:00:00.000Z","height":1.7,"weight":80,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":142434686,"name":"Boudewijn Roell","nationality":"NED","sex":"male","date_of_birth":"1989-05-12T00:00:00.000Z","height":1.95,"weight":100,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":797423057,"name":"Bourhan Abro","nationality":"DJI","sex":"male","date_of_birth":"1995-05-30T00:00:00.000Z","height":1.8,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":819043889,"name":"Boyd Martin","nationality":"USA","sex":"male","date_of_birth":"1979-08-20T00:00:00.000Z","height":1.88,"weight":79,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":449397409,"name":"Bozo Starcevic","nationality":"CRO","sex":"male","date_of_birth":"1988-12-11T00:00:00.000Z","height":1.72,"weight":78,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":573991365,"name":"Bradlee Ashby","nationality":"NZL","sex":"male","date_of_birth":"1995-11-23T00:00:00.000Z","height":2,"weight":92,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":804733660,"name":"Bradley Adkins","nationality":"USA","sex":"male","date_of_birth":"1993-12-30T00:00:00.000Z","height":1.89,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":220375842,"name":"Bradley Edward Tandy","nationality":"RSA","sex":"male","date_of_birth":"1991-05-02T00:00:00.000Z","height":1.58,"weight":86,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":901307783,"name":"Bradley Shaw","nationality":"NZL","sex":"male","date_of_birth":"1983-02-13T00:00:00.000Z","height":1.81,"weight":92,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":943842758,"name":"Bradley Vincent","nationality":"MRI","sex":"male","date_of_birth":"1991-11-30T00:00:00.000Z","height":1.95,"weight":89,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":499035410,"name":"Bradley Wiggins","nationality":"GBR","sex":"male","date_of_birth":"1980-04-28T00:00:00.000Z","height":1.9,"weight":82,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":"Olympic road cycling champion at London 2012, Bradley Wiggins also won the Tour de France that same summer. He has a further six medals, including three golds, obtained from Sydney 2000 to Beijing 2008 and plans to retire after Rio 2016."},{"id":139075859,"name":"Brady Ellison","nationality":"USA","sex":"male","date_of_birth":"1988-10-27T00:00:00.000Z","height":1.81,"weight":86,"sport":"archery","gold":0,"silver":1,"bronze":1,"info":null},{"id":140387635,"name":"Brahim Kaazouzi","nationality":"MAR","sex":"male","date_of_birth":"1990-06-15T00:00:00.000Z","height":1.79,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":85379844,"name":"Braian Toledo","nationality":"ARG","sex":"male","date_of_birth":"1993-09-08T00:00:00.000Z","height":1.87,"weight":100,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":327920403,"name":"Bralon Taplin","nationality":"GRN","sex":"male","date_of_birth":"1992-05-08T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":919979883,"name":"Branca Feres","nationality":"BRA","sex":"female","date_of_birth":"1988-02-22T00:00:00.000Z","height":1.64,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":738096310,"name":"Brandon Jones","nationality":"BIZ","sex":"male","date_of_birth":"1987-07-19T00:00:00.000Z","height":1.99,"weight":86,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":995088210,"name":"Brandon McBride","nationality":"CAN","sex":"male","date_of_birth":"1994-06-15T00:00:00.000Z","height":1.93,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":148847003,"name":"Brandon Schuster","nationality":"SAM","sex":"male","date_of_birth":"1998-04-23T00:00:00.000Z","height":1.88,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":152917319,"name":"Brandon Starc","nationality":"AUS","sex":"male","date_of_birth":"1993-11-24T00:00:00.000Z","height":1.88,"weight":71,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":873969989,"name":"Brandon Stone","nationality":"RSA","sex":"male","date_of_birth":"1993-04-20T00:00:00.000Z","height":1.8,"weight":65,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":990046579,"name":"Brandon Valentine-Parris","nationality":"VIN","sex":"male","date_of_birth":"1995-04-17T00:00:00.000Z","height":1.73,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":128091825,"name":"Brandonn Almeida","nationality":"BRA","sex":"male","date_of_birth":"1997-03-16T00:00:00.000Z","height":1.86,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":349293339,"name":"Branislav Mitrovic","nationality":"SRB","sex":"male","date_of_birth":"1985-01-30T00:00:00.000Z","height":2.01,"weight":100,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":890726080,"name":"Brankica Mihajlovic","nationality":"SRB","sex":"female","date_of_birth":"1991-04-13T00:00:00.000Z","height":1.9,"weight":83,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":826864352,"name":"Brave Lifa","nationality":"MAW","sex":"male","date_of_birth":"1995-09-05T00:00:00.000Z","height":1.75,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":741657080,"name":"Brayan Garcia","nationality":"HON","sex":"male","date_of_birth":"1993-05-26T00:00:00.000Z","height":1.75,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":734779763,"name":"Brayan Ramirez","nationality":"HON","sex":"male","date_of_birth":"1994-06-16T00:00:00.000Z","height":1.77,"weight":66,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":193606583,"name":"Breanna Stewart","nationality":"USA","sex":"female","date_of_birth":"1994-08-27T00:00:00.000Z","height":1.93,"weight":79,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":630721644,"name":"Bredni Roque Mendoza","nationality":"MEX","sex":"male","date_of_birth":"1987-11-11T00:00:00.000Z","height":1.6,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":845586759,"name":"Breege Connolly","nationality":"IRL","sex":"female","date_of_birth":"1978-02-01T00:00:00.000Z","height":1.63,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":383824981,"name":"Brenda Bowskill","nationality":"CAN","sex":"female","date_of_birth":"1992-04-21T00:00:00.000Z","height":1.7,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":911119710,"name":"Brenda Flores","nationality":"MEX","sex":"female","date_of_birth":"1991-09-04T00:00:00.000Z","height":1.63,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":477118293,"name":"Brenda Martinez","nationality":"USA","sex":"female","date_of_birth":"1987-09-08T00:00:00.000Z","height":1.71,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":340440422,"name":"Brenda Rojas","nationality":"ARG","sex":"female","date_of_birth":"1995-10-15T00:00:00.000Z","height":1.66,"weight":64,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":293582359,"name":"Brenda Yamyleth Bailey Gomez","nationality":"HON","sex":"female","date_of_birth":"1994-09-11T00:00:00.000Z","height":1.59,"weight":55,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":695503192,"name":"Brendan Boyce","nationality":"IRL","sex":"male","date_of_birth":"1986-10-08T00:00:00.000Z","height":1.83,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":262561474,"name":"Brendan Emmet Irvine","nationality":"IRL","sex":"male","date_of_birth":"1996-05-17T00:00:00.000Z","height":1.67,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":170273040,"name":"Brendan Hodge","nationality":"CAN","sex":"male","date_of_birth":"1984-12-31T00:00:00.000Z","height":1.8,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":911726861,"name":"Brenden Bissett","nationality":"CAN","sex":"male","date_of_birth":"1993-01-28T00:00:00.000Z","height":1.78,"weight":73,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":42739871,"name":"Brendon Reading","nationality":"AUS","sex":"male","date_of_birth":"1989-01-26T00:00:00.000Z","height":1.83,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":321655820,"name":"Brendon Rodney","nationality":"CAN","sex":"male","date_of_birth":"1992-04-09T00:00:00.000Z","height":1.95,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":406829138,"name":"Brenessa Thompson","nationality":"GUY","sex":"female","date_of_birth":"1996-07-22T00:00:00.000Z","height":1.63,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":125216390,"name":"Brent Bookwalter","nationality":"USA","sex":"male","date_of_birth":"1984-02-16T00:00:00.000Z","height":1.81,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":998710520,"name":"Bret Bonanni","nationality":"USA","sex":"male","date_of_birth":"1994-01-20T00:00:00.000Z","height":1.94,"weight":92,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":430001444,"name":"Brett Robinson","nationality":"AUS","sex":"male","date_of_birth":"1991-05-08T00:00:00.000Z","height":1.76,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":883824307,"name":"Brian Afanador","nationality":"PUR","sex":"male","date_of_birth":"1997-03-06T00:00:00.000Z","height":1.75,"weight":68,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":234656577,"name":"Brian Babilonia","nationality":"PUR","sex":"male","date_of_birth":"1994-09-16T00:00:00.000Z","height":1.8,"weight":66,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":98906595,"name":"Brian Baker","nationality":"USA","sex":"male","date_of_birth":"1985-04-30T00:00:00.000Z","height":1.91,"weight":77,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":652345352,"name":"Brian Pintado","nationality":"ECU","sex":"male","date_of_birth":"1995-07-29T00:00:00.000Z","height":1.68,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":870923074,"name":"Brian Rosso","nationality":"ARG","sex":"male","date_of_birth":"1987-08-16T00:00:00.000Z","height":1.84,"weight":84,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":353066862,"name":"Briana Provancha","nationality":"USA","sex":"female","date_of_birth":"1989-04-25T00:00:00.000Z","height":1.71,"weight":66,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":861484261,"name":"Brianna Rollins","nationality":"USA","sex":"female","date_of_birth":"1991-08-18T00:00:00.000Z","height":1.66,"weight":58,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":123998646,"name":"Brianna Throssell","nationality":"AUS","sex":"female","date_of_birth":"1996-02-10T00:00:00.000Z","height":1.75,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":542571086,"name":"Brianne Theisen Eaton","nationality":"CAN","sex":"female","date_of_birth":"1988-12-18T00:00:00.000Z","height":1.75,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":509052821,"name":"Brice Etes","nationality":"MON","sex":"male","date_of_birth":"1984-04-11T00:00:00.000Z","height":1.85,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":478313255,"name":"Brice Leverdez","nationality":"FRA","sex":"male","date_of_birth":"1986-04-09T00:00:00.000Z","height":1.8,"weight":75,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":237845996,"name":"Bridgitte Ellen Hartley","nationality":"RSA","sex":"female","date_of_birth":"1983-07-14T00:00:00.000Z","height":1.74,"weight":65,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":856612683,"name":"Brigita Virbalyte-Dimsiene","nationality":"LTU","sex":"female","date_of_birth":"1985-02-01T00:00:00.000Z","height":1.63,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":211902340,"name":"Brigitte Merlano","nationality":"COL","sex":"female","date_of_birth":"1982-04-29T00:00:00.000Z","height":1.74,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":44753775,"name":"Brigitte Ntiamoah","nationality":"FRA","sex":"female","date_of_birth":"1994-03-05T00:00:00.000Z","height":1.72,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":308919050,"name":"Brijesh Lawrence","nationality":"SKN","sex":"male","date_of_birth":"1989-12-27T00:00:00.000Z","height":1.8,"weight":93,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":345441615,"name":"Briken Calja","nationality":"ALB","sex":"male","date_of_birth":"1990-02-19T00:00:00.000Z","height":1.7,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":128651141,"name":"Brimin Kiprop Kipruto","nationality":"KEN","sex":"male","date_of_birth":"1985-07-31T00:00:00.000Z","height":1.75,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":349753082,"name":"Brinn Bevan","nationality":"GBR","sex":"male","date_of_birth":"1997-06-16T00:00:00.000Z","height":1.65,"weight":62,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":893795627,"name":"Britt Eerland","nationality":"NED","sex":"female","date_of_birth":"1994-02-22T00:00:00.000Z","height":1.68,"weight":62,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":395081312,"name":"Britta Buthe","nationality":"GER","sex":"female","date_of_birth":"1988-05-25T00:00:00.000Z","height":1.86,"weight":78,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":524776452,"name":"Brittany Benn","nationality":"CAN","sex":"female","date_of_birth":"1989-04-23T00:00:00.000Z","height":1.65,"weight":68,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":837634473,"name":"Brittany Borman","nationality":"USA","sex":"female","date_of_birth":"1989-07-01T00:00:00.000Z","height":1.83,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":136154437,"name":"Brittany Crew","nationality":"CAN","sex":"female","date_of_birth":"1994-03-06T00:00:00.000Z","height":1.78,"weight":112,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":974255098,"name":"Brittany Elmslie","nationality":"AUS","sex":"female","date_of_birth":"1994-06-19T00:00:00.000Z","height":1.8,"weight":69,"sport":"aquatics","gold":1,"silver":1,"bronze":0,"info":null},{"id":975241751,"name":"Brittany Maclean","nationality":"CAN","sex":"female","date_of_birth":"1994-03-03T00:00:00.000Z","height":1.68,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":667985741,"name":"Brittany O'Brien","nationality":"AUS","sex":"female","date_of_birth":"1998-05-27T00:00:00.000Z","height":1.68,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":601613381,"name":"Brittany Rogers","nationality":"CAN","sex":"female","date_of_birth":"1993-06-08T00:00:00.000Z","height":1.65,"weight":60,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":387060457,"name":"Brittney Griner","nationality":"USA","sex":"female","date_of_birth":"1990-10-18T00:00:00.000Z","height":2.03,"weight":94,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":772781845,"name":"Brittney Reese","nationality":"USA","sex":"female","date_of_birth":"1986-09-09T00:00:00.000Z","height":1.73,"weight":61,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":476644551,"name":"Brock Motum","nationality":"AUS","sex":"male","date_of_birth":"1990-10-16T00:00:00.000Z","height":2.08,"weight":107,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":942791136,"name":"Bronte Barratt","nationality":"AUS","sex":"female","date_of_birth":"1989-02-08T00:00:00.000Z","height":1.71,"weight":58,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":936338083,"name":"Bronte Campbell","nationality":"AUS","sex":"female","date_of_birth":"1994-05-14T00:00:00.000Z","height":1.79,"weight":58,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":339065127,"name":"Bronwen Knox","nationality":"AUS","sex":"female","date_of_birth":"1986-04-16T00:00:00.000Z","height":1.82,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":625465432,"name":"Brook Robertson","nationality":"NZL","sex":"male","date_of_birth":"1994-02-19T00:00:00.000Z","height":1.94,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":229593375,"name":"Brooke Crain","nationality":"USA","sex":"female","date_of_birth":"1993-04-29T00:00:00.000Z","height":1.63,"weight":55,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":198522539,"name":"Brooke Henderson","nationality":"CAN","sex":"female","date_of_birth":"1997-09-10T00:00:00.000Z","height":1.63,"weight":50,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":723701996,"name":"Brooke Neal","nationality":"NZL","sex":"female","date_of_birth":"1992-07-04T00:00:00.000Z","height":1.87,"weight":71,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":176282194,"name":"Brooke Peris","nationality":"AUS","sex":"female","date_of_birth":"1993-01-16T00:00:00.000Z","height":1.72,"weight":57,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":290572119,"name":"Brooke Stratton","nationality":"AUS","sex":"female","date_of_birth":"1993-07-12T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":586492695,"name":"Brooke Sweat","nationality":"USA","sex":"female","date_of_birth":"1986-03-27T00:00:00.000Z","height":1.73,"weight":69,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":873916818,"name":"Bruna","nationality":"BRA","sex":"female","date_of_birth":"1985-10-16T00:00:00.000Z","height":1.78,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":877478692,"name":"Bruna Farias","nationality":"BRA","sex":"female","date_of_birth":"1992-05-19T00:00:00.000Z","height":1.56,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":171915543,"name":"Bruna Takahashi","nationality":"BRA","sex":"female","date_of_birth":"2000-07-19T00:00:00.000Z","height":1.7,"weight":54,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":641508892,"name":"Bruno Bethlem","nationality":"BRA","sex":"male","date_of_birth":"1975-10-22T00:00:00.000Z","height":1.81,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":462138517,"name":"Bruno Fernandes","nationality":"POR","sex":"male","date_of_birth":"1994-09-08T00:00:00.000Z","height":1.82,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":934893676,"name":"Bruno Fratus","nationality":"BRA","sex":"male","date_of_birth":"1989-06-30T00:00:00.000Z","height":1.87,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":715319246,"name":"Bruno Hortelano","nationality":"ESP","sex":"male","date_of_birth":"1991-09-18T00:00:00.000Z","height":1.8,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":44169801,"name":"Bruno Lima","nationality":"ARG","sex":"male","date_of_birth":"1996-02-04T00:00:00.000Z","height":1.98,"weight":87,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":436846514,"name":"Bruno Mendonca","nationality":"BRA","sex":"male","date_of_birth":"1984-01-07T00:00:00.000Z","height":1.83,"weight":93,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":696736168,"name":"Bruno Mossa Rezende","nationality":"BRA","sex":"male","date_of_birth":"1986-07-02T00:00:00.000Z","height":1.9,"weight":76,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":836716137,"name":"Bruno Ortiz Canavate Ozeki","nationality":"ESP","sex":"male","date_of_birth":"1993-02-15T00:00:00.000Z","height":1.94,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":68618209,"name":"Bruno Oscar Schmidt","nationality":"BRA","sex":"male","date_of_birth":"1986-10-06T00:00:00.000Z","height":1.85,"weight":85,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":671022008,"name":"Bruno Paes","nationality":"BRA","sex":"male","date_of_birth":"1993-06-24T00:00:00.000Z","height":1.77,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":248706880,"name":"Bruno Passaro","nationality":"ARG","sex":"male","date_of_birth":"1989-02-10T00:00:00.000Z","height":1.75,"weight":72,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":365680500,"name":"Bruno Soares","nationality":"BRA","sex":"male","date_of_birth":"1982-02-27T00:00:00.000Z","height":1.8,"weight":75,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":313463896,"name":"Bruno Varela","nationality":"POR","sex":"male","date_of_birth":"1994-11-04T00:00:00.000Z","height":1.9,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":118251415,"name":"Bruno de Barros","nationality":"BRA","sex":"male","date_of_birth":"1987-01-07T00:00:00.000Z","height":1.82,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":526513149,"name":"Bryan Acosta","nationality":"HON","sex":"male","date_of_birth":"1993-11-24T00:00:00.000Z","height":1.75,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":442636270,"name":"Bryan Gabriel Sola Zambrano","nationality":"ECU","sex":"male","date_of_birth":"1992-04-03T00:00:00.000Z","height":1.78,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":682193857,"name":"Bryan Keane","nationality":"IRL","sex":"male","date_of_birth":"1980-08-20T00:00:00.000Z","height":1.75,"weight":65,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":692740020,"name":"Bryden Nicholas","nationality":"COK","sex":"male","date_of_birth":"1989-03-10T00:00:00.000Z","height":1.7,"weight":70,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":159693755,"name":"Bryony Page","nationality":"GBR","sex":"female","date_of_birth":"1990-12-10T00:00:00.000Z","height":1.72,"weight":62,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":null},{"id":358642208,"name":"Bryony Shaw","nationality":"GBR","sex":"female","date_of_birth":"1983-04-28T00:00:00.000Z","height":1.66,"weight":60,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":257258199,"name":"Bubba Watson","nationality":"USA","sex":"male","date_of_birth":"1978-11-05T00:00:00.000Z","height":1.91,"weight":81,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":833335595,"name":"Buly da Conceicao Triste","nationality":"STP","sex":"male","date_of_birth":"1991-07-04T00:00:00.000Z","height":1.64,"weight":58,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":326008552,"name":"Bunturabie Jalloh","nationality":"SLE","sex":"female","date_of_birth":"1998-05-10T00:00:00.000Z","height":null,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":581220953,"name":"Burkheart Ellis Jr","nationality":"BAR","sex":"male","date_of_birth":"1992-09-18T00:00:00.000Z","height":1.91,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":613127539,"name":"Buse Tosun","nationality":"TUR","sex":"female","date_of_birth":"1995-12-05T00:00:00.000Z","height":1.73,"weight":69,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":436450943,"name":"Bush Mwale","nationality":"KEN","sex":"male","date_of_birth":"1993-11-14T00:00:00.000Z","height":1.85,"weight":92,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":510153828,"name":"Busra Katipoglu","nationality":"TUR","sex":"female","date_of_birth":"1992-01-17T00:00:00.000Z","height":1.65,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":812259982,"name":"Byambajav Tseveenravdan","nationality":"MGL","sex":"male","date_of_birth":"1990-07-07T00:00:00.000Z","height":1.69,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":942162925,"name":"Byeonghun An","nationality":"KOR","sex":"male","date_of_birth":"1991-09-17T00:00:00.000Z","height":1.87,"weight":87,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":888329699,"name":"Byeongkwang Choe","nationality":"KOR","sex":"male","date_of_birth":"1991-04-07T00:00:00.000Z","height":1.85,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":920028907,"name":"Byron Robinson","nationality":"USA","sex":"male","date_of_birth":"1995-05-10T00:00:00.000Z","height":1.76,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":252432878,"name":"C.T. Pan","nationality":"TPE","sex":"male","date_of_birth":"1991-11-12T00:00:00.000Z","height":1.68,"weight":65,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":598623977,"name":"Caba Siladji","nationality":"SRB","sex":"male","date_of_birth":"1990-08-23T00:00:00.000Z","height":1.85,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":247346852,"name":"Caeleb Dressel","nationality":"USA","sex":"male","date_of_birth":"1996-08-16T00:00:00.000Z","height":1.91,"weight":86,"sport":"aquatics","gold":2,"silver":0,"bronze":0,"info":null},{"id":914044399,"name":"Cagla Buyukakcay","nationality":"TUR","sex":"female","date_of_birth":"1989-09-28T00:00:00.000Z","height":1.72,"weight":58,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":406549874,"name":"Caia van Maasakker","nationality":"NED","sex":"female","date_of_birth":"1989-04-05T00:00:00.000Z","height":1.8,"weight":69,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":18622820,"name":"Caileigh Filmer","nationality":"CAN","sex":"female","date_of_birth":"1996-12-18T00:00:00.000Z","height":1.69,"weight":76,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":196015602,"name":"Caio Bonfim","nationality":"BRA","sex":"male","date_of_birth":"1991-03-19T00:00:00.000Z","height":1.74,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":959903896,"name":"Caitlin Cooper","nationality":"AUS","sex":"female","date_of_birth":"1988-02-12T00:00:00.000Z","height":1.71,"weight":66,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":181162100,"name":"Caitlin Foord","nationality":"AUS","sex":"female","date_of_birth":"1994-11-11T00:00:00.000Z","height":1.65,"weight":58,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":233739460,"name":"Caitlin Ryan","nationality":"NZL","sex":"female","date_of_birth":"1992-02-09T00:00:00.000Z","height":1.78,"weight":95,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":637321391,"name":"Caitlin Sargent-Jones","nationality":"AUS","sex":"female","date_of_birth":"1992-06-14T00:00:00.000Z","height":1.71,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":147956765,"name":"Caitlin van Sickle","nationality":"USA","sex":"female","date_of_birth":"1990-01-26T00:00:00.000Z","height":1.66,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":100675394,"name":"Cale Simmons","nationality":"USA","sex":"male","date_of_birth":"1991-02-05T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":715671042,"name":"Caleb Mwangangi Ndiku","nationality":"KEN","sex":"male","date_of_birth":"1992-10-09T00:00:00.000Z","height":1.67,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":521652208,"name":"Caleb Paine","nationality":"USA","sex":"male","date_of_birth":"1990-11-15T00:00:00.000Z","height":1.91,"weight":97,"sport":"sailing","gold":0,"silver":0,"bronze":1,"info":null},{"id":47877217,"name":"Caleb Shepherd","nationality":"NZL","sex":"male","date_of_birth":"1993-06-29T00:00:00.000Z","height":1.68,"weight":55,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":7468287,"name":"Callum Hawkins","nationality":"GBR","sex":"male","date_of_birth":"1992-06-22T00:00:00.000Z","height":1.79,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":205286149,"name":"Callum Scotson","nationality":"AUS","sex":"male","date_of_birth":"1996-08-10T00:00:00.000Z","height":1.84,"weight":77,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":598986059,"name":"Callum Skinner","nationality":"GBR","sex":"male","date_of_birth":"1992-08-20T00:00:00.000Z","height":1.87,"weight":93,"sport":"cycling","gold":1,"silver":1,"bronze":0,"info":null},{"id":227626203,"name":"Calvyn Justus","nationality":"RSA","sex":"male","date_of_birth":"1995-12-14T00:00:00.000Z","height":1.95,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":638140243,"name":"Cam Kurle","nationality":"GBR","sex":"male","date_of_birth":"1997-07-19T00:00:00.000Z","height":1.86,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":665917259,"name":"Camelia Hotea","nationality":"ROU","sex":"female","date_of_birth":"1984-10-27T00:00:00.000Z","height":1.75,"weight":64,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":379834078,"name":"Cameron Bairstow","nationality":"AUS","sex":"male","date_of_birth":"1990-12-07T00:00:00.000Z","height":2.06,"weight":118,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":673317793,"name":"Cameron Clark","nationality":"AUS","sex":"male","date_of_birth":"1993-03-20T00:00:00.000Z","height":1.85,"weight":84,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":115794046,"name":"Cameron Girdlestone","nationality":"AUS","sex":"male","date_of_birth":"1988-04-29T00:00:00.000Z","height":1.9,"weight":92,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":464109574,"name":"Cameron McEvoy","nationality":"AUS","sex":"male","date_of_birth":"1994-05-13T00:00:00.000Z","height":1.85,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":2,"info":null},{"id":744574832,"name":"Cameron Pimentel","nationality":"BER","sex":"male","date_of_birth":"1991-04-13T00:00:00.000Z","height":1.83,"weight":80,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":87311280,"name":"Cameron Smedley","nationality":"CAN","sex":"male","date_of_birth":"1990-10-09T00:00:00.000Z","height":1.78,"weight":75,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":59463747,"name":"Cameron van der Burgh","nationality":"RSA","sex":"male","date_of_birth":"1988-05-25T00:00:00.000Z","height":1.85,"weight":85,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":62078309,"name":"Camila","nationality":"BRA","sex":"female","date_of_birth":"1994-10-10T00:00:00.000Z","height":1.59,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":761225267,"name":"Camila Pedrosa","nationality":"BRA","sex":"female","date_of_birth":"1975-03-12T00:00:00.000Z","height":1.72,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":403141016,"name":"Camila Valle Granados","nationality":"PER","sex":"female","date_of_birth":"1995-07-07T00:00:00.000Z","height":1.6,"weight":60,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":814870853,"name":"Camilla Cattaneo","nationality":"ITA","sex":"female","date_of_birth":"1990-02-12T00:00:00.000Z","height":1.73,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":711276110,"name":"Camilla Cedercreutz","nationality":"FIN","sex":"female","date_of_birth":"1993-01-31T00:00:00.000Z","height":1.67,"weight":66,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":338343277,"name":"Camilla Hattersley","nationality":"GBR","sex":"female","date_of_birth":"1995-02-24T00:00:00.000Z","height":1.74,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":384002345,"name":"Camilla Herrem","nationality":"NOR","sex":"female","date_of_birth":"1986-10-08T00:00:00.000Z","height":1.67,"weight":null,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":439378306,"name":"Camilla Kruger","nationality":"ZIM","sex":"female","date_of_birth":"1986-09-19T00:00:00.000Z","height":1.61,"weight":51,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":118087738,"name":"Camilla Patriarca","nationality":"ITA","sex":"female","date_of_birth":"1994-11-04T00:00:00.000Z","height":1.7,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":766408669,"name":"Camilla Speirs","nationality":"IRL","sex":"female","date_of_birth":"1989-08-23T00:00:00.000Z","height":1.54,"weight":57,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":187290528,"name":"Camille Abily","nationality":"FRA","sex":"female","date_of_birth":"1984-12-05T00:00:00.000Z","height":1.68,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":373069016,"name":"Camille Ayglon Saurina","nationality":"FRA","sex":"female","date_of_birth":"1985-05-21T00:00:00.000Z","height":1.8,"weight":66,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":788191192,"name":"Camille Cheng","nationality":"HKG","sex":"female","date_of_birth":"1993-05-09T00:00:00.000Z","height":1.78,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":919018525,"name":"Camille Grassineau","nationality":"FRA","sex":"female","date_of_birth":"1990-09-10T00:00:00.000Z","height":1.65,"weight":58,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":614590923,"name":"Camille Lacourt","nationality":"FRA","sex":"male","date_of_birth":"1985-04-22T00:00:00.000Z","height":2,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":510528142,"name":"Camille Lecointre","nationality":"FRA","sex":"female","date_of_birth":"1985-02-25T00:00:00.000Z","height":1.59,"weight":56,"sport":"sailing","gold":0,"silver":0,"bronze":1,"info":null},{"id":241013969,"name":"Camilyne Oyuayo","nationality":"KEN","sex":"female","date_of_birth":"1982-04-16T00:00:00.000Z","height":1.67,"weight":72,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":94450987,"name":"Cammile Adams","nationality":"USA","sex":"female","date_of_birth":"1991-09-11T00:00:00.000Z","height":1.73,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":495694072,"name":"Cancan Ren","nationality":"CHN","sex":"female","date_of_birth":"1988-01-26T00:00:00.000Z","height":1.68,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":595425335,"name":"Candie Kung","nationality":"TPE","sex":"female","date_of_birth":"1981-08-08T00:00:00.000Z","height":1.7,"weight":70,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":873362411,"name":"Cansel Deniz","nationality":"KAZ","sex":"female","date_of_birth":"1991-08-26T00:00:00.000Z","height":1.75,"weight":67,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":705883507,"name":"Caridad Jerez","nationality":"ESP","sex":"female","date_of_birth":"1991-01-23T00:00:00.000Z","height":1.66,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":978280243,"name":"Carin Stromberg","nationality":"SWE","sex":"female","date_of_birth":"1993-07-10T00:00:00.000Z","height":1.84,"weight":83,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":725855648,"name":"Carina Ana Garcia Kradolfer","nationality":"BOL","sex":"female","date_of_birth":"1984-01-03T00:00:00.000Z","height":1.6,"weight":58,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":448095596,"name":"Carina Baer","nationality":"GER","sex":"female","date_of_birth":"1990-01-23T00:00:00.000Z","height":1.85,"weight":75,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":840008522,"name":"Carina Horn","nationality":"RSA","sex":"female","date_of_birth":"1989-03-09T00:00:00.000Z","height":1.68,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":337197215,"name":"Carl Dohmann","nationality":"GER","sex":"male","date_of_birth":"1990-05-18T00:00:00.000Z","height":1.83,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":570448421,"name":"Carl Fredrik Stefan Schoen","nationality":"SWE","sex":"male","date_of_birth":"1987-07-11T00:00:00.000Z","height":1.87,"weight":102,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":48374531,"name":"Carl Hester","nationality":"GBR","sex":"male","date_of_birth":"1967-06-29T00:00:00.000Z","height":1.82,"weight":86,"sport":"equestrian","gold":0,"silver":1,"bronze":0,"info":null},{"id":123412011,"name":"Carla Nelte","nationality":"GER","sex":"female","date_of_birth":"1990-09-21T00:00:00.000Z","height":1.71,"weight":60,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":415538486,"name":"Carla Rebecchi","nationality":"ARG","sex":"female","date_of_birth":"1984-09-07T00:00:00.000Z","height":1.63,"weight":55,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":728630028,"name":"Carla Salome Rocha","nationality":"POR","sex":"female","date_of_birth":"1990-04-25T00:00:00.000Z","height":1.57,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":873188308,"name":"Carla Suarez Navarro","nationality":"ESP","sex":"female","date_of_birth":"1988-09-03T00:00:00.000Z","height":1.62,"weight":61,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":226631924,"name":"Carles Castillejo","nationality":"ESP","sex":"male","date_of_birth":"1978-08-18T00:00:00.000Z","height":1.65,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":714231073,"name":"Carli Lloyd","nationality":"USA","sex":"female","date_of_birth":"1989-08-06T00:00:00.000Z","height":1.8,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":228340991,"name":"Carli Lloyd","nationality":"USA","sex":"female","date_of_birth":"1982-07-16T00:00:00.000Z","height":1.72,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":"Voted the best player in the world by FIFA, in 2015, the USA's Carli Lloyd has two gold medals, taken at Beijing 2008 and London 2012. In China, this midfielder scored an extra-time goal that gave her country the win in the final."},{"id":323715305,"name":"Carlien Dirkse van den Heuvel","nationality":"NED","sex":"female","date_of_birth":"1987-04-16T00:00:00.000Z","height":1.7,"weight":56,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":215241067,"name":"Carlin Isles","nationality":"USA","sex":"male","date_of_birth":"1989-11-21T00:00:00.000Z","height":1.73,"weight":74,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":549956425,"name":"Carline Bouw","nationality":"NED","sex":"female","date_of_birth":"1984-12-14T00:00:00.000Z","height":1.84,"weight":72,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":807476315,"name":"Carline Muir","nationality":"CAN","sex":"female","date_of_birth":"1987-10-01T00:00:00.000Z","height":1.7,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":233428453,"name":"Carling Zeeman","nationality":"CAN","sex":"female","date_of_birth":"1991-05-27T00:00:00.000Z","height":1.87,"weight":85,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":924818266,"name":"Carlo Tacchini","nationality":"ITA","sex":"male","date_of_birth":"1995-01-25T00:00:00.000Z","height":1.76,"weight":73,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":132849150,"name":"Carlos Alberto Ramirez Yepes","nationality":"COL","sex":"male","date_of_birth":"1994-03-12T00:00:00.000Z","height":1.78,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":639279380,"name":"Carlos Andres Mina","nationality":"ECU","sex":"male","date_of_birth":"1992-04-30T00:00:00.000Z","height":1.87,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":654897957,"name":"Carlos Andres Munoz Jaramillo","nationality":"COL","sex":"male","date_of_birth":"1992-08-03T00:00:00.000Z","height":1.8,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":929589986,"name":"Carlos Arturo Izquierdo Mendez","nationality":"COL","sex":"male","date_of_birth":"1997-10-02T00:00:00.000Z","height":1.82,"weight":74,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":875748101,"name":"Carlos Cisneros","nationality":"MEX","sex":"male","date_of_birth":"1993-08-30T00:00:00.000Z","height":1.75,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":992315197,"name":"Carlos Claverie","nationality":"VEN","sex":"male","date_of_birth":"1996-09-19T00:00:00.000Z","height":1.95,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":664891338,"name":"Carlos Coloma Nicolas","nationality":"ESP","sex":"male","date_of_birth":"1981-09-28T00:00:00.000Z","height":1.71,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":562138964,"name":"Carlos Delfino","nationality":"ARG","sex":"male","date_of_birth":"1982-08-29T00:00:00.000Z","height":2,"weight":95,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":955217464,"name":"Carlos Eduardo Quipo Pilataxi","nationality":"ECU","sex":"male","date_of_birth":"1990-05-17T00:00:00.000Z","height":1.56,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":520489478,"name":"Carlos Fierro","nationality":"MEX","sex":"male","date_of_birth":"1994-07-23T00:00:00.000Z","height":1.75,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":487944267,"name":"Carlos Guerra","nationality":"MEX","sex":"male","date_of_birth":"1981-08-03T00:00:00.000Z","height":1.96,"weight":95,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":770819591,"name":"Carlos Lemos","nationality":"COL","sex":"male","date_of_birth":"1988-06-03T00:00:00.000Z","height":1.83,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":666394255,"name":"Carlos Lobos Munoz","nationality":"CHI","sex":"male","date_of_birth":"1980-12-21T00:00:00.000Z","height":1.75,"weight":73,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":120477759,"name":"Carlos Mario Oquendo Zabala","nationality":"COL","sex":"male","date_of_birth":"1987-11-16T00:00:00.000Z","height":1.86,"weight":85,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":744295667,"name":"Carlos Parro","nationality":"BRA","sex":"male","date_of_birth":"1979-06-05T00:00:00.000Z","height":1.79,"weight":76,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":983424219,"name":"Carlos Peralta Gallego","nationality":"ESP","sex":"male","date_of_birth":"1994-01-30T00:00:00.000Z","height":1.65,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":572124752,"name":"Carlos Ruben Navarro Valdez","nationality":"MEX","sex":"male","date_of_birth":"1996-05-08T00:00:00.000Z","height":1.77,"weight":58,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":279620317,"name":"Carlos Salcedo","nationality":"MEX","sex":"male","date_of_birth":"1993-09-29T00:00:00.000Z","height":1.84,"weight":82,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":561704538,"name":"Carlos Tobalina","nationality":"ESP","sex":"male","date_of_birth":"1985-08-02T00:00:00.000Z","height":1.88,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":318016892,"name":"Carlos Zenon Balderas Jr.","nationality":"USA","sex":"male","date_of_birth":"1996-08-24T00:00:00.000Z","height":1.76,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":848682435,"name":"Carlota Ciganda","nationality":"ESP","sex":"female","date_of_birth":"1990-06-01T00:00:00.000Z","height":1.74,"weight":68,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":707042640,"name":"Carlota Petchame","nationality":"ESP","sex":"female","date_of_birth":"1990-06-25T00:00:00.000Z","height":1.6,"weight":53,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":637147877,"name":"Carlotta Ferlito","nationality":"ITA","sex":"female","date_of_birth":"1995-02-15T00:00:00.000Z","height":1.6,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":383488560,"name":"Carlotta Zofkova","nationality":"ITA","sex":"female","date_of_birth":"1993-02-22T00:00:00.000Z","height":1.83,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":11238404,"name":"Carmelo Anthony","nationality":"USA","sex":"male","date_of_birth":"1984-05-29T00:00:00.000Z","height":2.03,"weight":109,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":477040413,"name":"Carmen Farmer","nationality":"USA","sex":"female","date_of_birth":"1980-12-04T00:00:00.000Z","height":1.86,"weight":81,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":440033203,"name":"Carmen Martin","nationality":"ESP","sex":"female","date_of_birth":"1988-05-29T00:00:00.000Z","height":1.72,"weight":72,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":638974451,"name":"Carmen Marton","nationality":"AUS","sex":"female","date_of_birth":"1986-06-30T00:00:00.000Z","height":1.72,"weight":67,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":529017724,"name":"Carmen Patricia Martinez","nationality":"PAR","sex":"female","date_of_birth":"1982-12-26T00:00:00.000Z","height":1.6,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":692509182,"name":"Carmiesha Cox","nationality":"BAH","sex":"female","date_of_birth":"1995-05-16T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":386843805,"name":"Carmine Tommasone","nationality":"ITA","sex":"male","date_of_birth":"1984-03-30T00:00:00.000Z","height":1.67,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":179760844,"name":"Carola Salvatella","nationality":"ESP","sex":"female","date_of_birth":"1994-07-08T00:00:00.000Z","height":1.71,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":331103388,"name":"Carolena Carstens","nationality":"PAN","sex":"female","date_of_birth":"1996-01-18T00:00:00.000Z","height":1.68,"weight":57,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":622673655,"name":"Carolin Golubytskyi","nationality":"GER","sex":"female","date_of_birth":"1985-12-19T00:00:00.000Z","height":1.67,"weight":57,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":751199209,"name":"Carolin Schafer","nationality":"GER","sex":"female","date_of_birth":"1991-12-05T00:00:00.000Z","height":1.78,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":999509819,"name":"Carolina Aguirre","nationality":"COL","sex":"female","date_of_birth":"1996-01-29T00:00:00.000Z","height":1.6,"weight":59,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":809071082,"name":"Carolina Arbelaez","nationality":"COL","sex":"female","date_of_birth":"1995-03-08T00:00:00.000Z","height":1.61,"weight":55,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":467587531,"name":"Carolina Arias","nationality":"COL","sex":"female","date_of_birth":"1990-09-02T00:00:00.000Z","height":1.59,"weight":52,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":552675291,"name":"Carolina Castillo Hidalgo","nationality":"COL","sex":"female","date_of_birth":"1990-11-04T00:00:00.000Z","height":1.57,"weight":48,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":905750537,"name":"Carolina Marin","nationality":"ESP","sex":"female","date_of_birth":"1993-06-15T00:00:00.000Z","height":1.72,"weight":65,"sport":"badminton","gold":1,"silver":0,"bronze":0,"info":"At 23, Spain's Carolina Marin is a two-time world and European singles champion and one of the highest placed players in the world rankings. Her feats on the Badminton court led to Marin receiving her country's athlete of the year award in 2014."},{"id":362193279,"name":"Carolina Rodriguez","nationality":"ESP","sex":"female","date_of_birth":"1986-05-24T00:00:00.000Z","height":1.64,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":275280990,"name":"Carolina Rodriguez Gutierrez","nationality":"MEX","sex":"female","date_of_birth":"1993-09-30T00:00:00.000Z","height":1.63,"weight":80,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":488698668,"name":"Carolina Routier","nationality":"ESP","sex":"female","date_of_birth":"1990-04-23T00:00:00.000Z","height":1.72,"weight":60,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":763290090,"name":"Carolina Werner","nationality":"GER","sex":"female","date_of_birth":"1994-03-02T00:00:00.000Z","height":1.68,"weight":58,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":237276170,"name":"Caroline Buchanan","nationality":"AUS","sex":"female","date_of_birth":"1990-10-24T00:00:00.000Z","height":1.65,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":"World runner-up this year at the BMX Championships in Colombia, Australia's Caroline Buchanan is known as much for her social media activity. She recently launched her own video channel, called Buchanan on Air."},{"id":618435469,"name":"Caroline Garcia","nationality":"FRA","sex":"female","date_of_birth":"1993-10-16T00:00:00.000Z","height":1.77,"weight":61,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":8177230,"name":"Caroline Kumahara","nationality":"BRA","sex":"female","date_of_birth":"1995-07-27T00:00:00.000Z","height":1.66,"weight":58,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":965494911,"name":"Caroline Ladagnous","nationality":"FRA","sex":"female","date_of_birth":"1988-09-22T00:00:00.000Z","height":1.72,"weight":65,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":454726580,"name":"Caroline Marton","nationality":"AUS","sex":"female","date_of_birth":"1984-04-14T00:00:00.000Z","height":1.68,"weight":56,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":378248537,"name":"Caroline Masson","nationality":"GER","sex":"female","date_of_birth":"1989-05-14T00:00:00.000Z","height":1.73,"weight":72,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":479238224,"name":"Caroline Seger","nationality":"SWE","sex":"female","date_of_birth":"1985-03-19T00:00:00.000Z","height":1.73,"weight":62,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":53417800,"name":"Caroline Wozniacki","nationality":"DEN","sex":"female","date_of_birth":"1990-07-11T00:00:00.000Z","height":1.79,"weight":65,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":396948755,"name":"Carolle Zahi","nationality":"FRA","sex":"female","date_of_birth":"1994-06-12T00:00:00.000Z","height":1.7,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":633400313,"name":"Carrie Smith","nationality":"AUS","sex":"female","date_of_birth":"1995-01-28T00:00:00.000Z","height":1.65,"weight":55,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":37516553,"name":"Carsten Mogensen","nationality":"DEN","sex":"male","date_of_birth":"1983-07-24T00:00:00.000Z","height":1.88,"weight":75,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":944589858,"name":"Carvin Nkanata","nationality":"KEN","sex":"male","date_of_birth":"1991-05-06T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":666382963,"name":"Casey Dumont","nationality":"AUS","sex":"female","date_of_birth":"1992-01-25T00:00:00.000Z","height":1.8,"weight":82,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":899383164,"name":"Casey Eichfeld","nationality":"USA","sex":"male","date_of_birth":"1989-11-15T00:00:00.000Z","height":1.78,"weight":77,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":472505034,"name":"Casey Patterson","nationality":"USA","sex":"male","date_of_birth":"1980-04-20T00:00:00.000Z","height":1.99,"weight":88,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":503788455,"name":"Casey Sablowski","nationality":"AUS","sex":"female","date_of_birth":"1989-03-19T00:00:00.000Z","height":1.7,"weight":62,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":450608241,"name":"Casper Mortensen","nationality":"DEN","sex":"male","date_of_birth":"1989-12-14T00:00:00.000Z","height":1.9,"weight":88,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":452251425,"name":"Casper Nielsen","nationality":"DEN","sex":"male","date_of_birth":"1994-04-29T00:00:00.000Z","height":1.8,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":583629384,"name":"Casper Pedersen","nationality":"DEN","sex":"male","date_of_birth":"1996-03-15T00:00:00.000Z","height":1.86,"weight":74,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":579676651,"name":"Casper von Folsach","nationality":"DEN","sex":"male","date_of_birth":"1993-03-30T00:00:00.000Z","height":1.91,"weight":82,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":289009980,"name":"Cassandre Beaugrand","nationality":"FRA","sex":"female","date_of_birth":"1997-05-23T00:00:00.000Z","height":1.77,"weight":54,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":105404448,"name":"Cassio Cesar Rippel","nationality":"BRA","sex":"male","date_of_birth":"1978-05-02T00:00:00.000Z","height":1.93,"weight":95,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":858551569,"name":"Cassio Rivetti","nationality":"UKR","sex":"male","date_of_birth":"1980-02-20T00:00:00.000Z","height":1.75,"weight":65,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":190873405,"name":"Caster Semenya","nationality":"RSA","sex":"female","date_of_birth":"1991-01-07T00:00:00.000Z","height":1.78,"weight":70,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":654622452,"name":"Catalina Elena Escobar Gomez","nationality":"COL","sex":"female","date_of_birth":"1990-09-21T00:00:00.000Z","height":1.56,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":768142063,"name":"Catalina Perez","nationality":"COL","sex":"female","date_of_birth":"1994-11-08T00:00:00.000Z","height":1.74,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":943865464,"name":"Catalina Ponor","nationality":"ROU","sex":"female","date_of_birth":"1987-08-20T00:00:00.000Z","height":1.56,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":885026394,"name":"Catalina Usme","nationality":"COL","sex":"female","date_of_birth":"1989-12-25T00:00:00.000Z","height":1.68,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":468505846,"name":"Cate Campbell","nationality":"AUS","sex":"female","date_of_birth":"1992-05-20T00:00:00.000Z","height":1.86,"weight":74,"sport":"aquatics","gold":1,"silver":1,"bronze":0,"info":null},{"id":576401005,"name":"Caterine Ibarguen","nationality":"COL","sex":"female","date_of_birth":"1984-02-12T00:00:00.000Z","height":1.85,"weight":70,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":985557149,"name":"Catharine Pendrel","nationality":"CAN","sex":"female","date_of_birth":"1980-09-30T00:00:00.000Z","height":1.66,"weight":50,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":638981587,"name":"Catherine Abilla","nationality":"KEN","sex":"female","date_of_birth":"1989-04-01T00:00:00.000Z","height":1.62,"weight":56,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":974386617,"name":"Catherine Beauchemin-Pinard","nationality":"CAN","sex":"female","date_of_birth":"1994-06-26T00:00:00.000Z","height":1.61,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":315097608,"name":"Catherine Bertone","nationality":"ITA","sex":"female","date_of_birth":"1972-05-06T00:00:00.000Z","height":1.6,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":578087972,"name":"Catherine Bott","nationality":"NZL","sex":"female","date_of_birth":"1995-04-22T00:00:00.000Z","height":1.65,"weight":62,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":62565482,"name":"Catherine Meili","nationality":"USA","sex":"female","date_of_birth":"1991-04-16T00:00:00.000Z","height":1.71,"weight":61,"sport":"aquatics","gold":1,"silver":0,"bronze":1,"info":null},{"id":567465355,"name":"Catherine Skinner","nationality":"AUS","sex":"female","date_of_birth":"1990-02-11T00:00:00.000Z","height":1.72,"weight":80,"sport":"shooting","gold":1,"silver":0,"bronze":0,"info":null},{"id":761809056,"name":"Cathrine Dufour","nationality":"DEN","sex":"female","date_of_birth":"1992-01-02T00:00:00.000Z","height":1.7,"weight":68,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":980333381,"name":"Catia Azevedo","nationality":"POR","sex":"female","date_of_birth":"1994-03-09T00:00:00.000Z","height":1.7,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":187632862,"name":"Catriel Andres Soto","nationality":"ARG","sex":"male","date_of_birth":"1987-04-29T00:00:00.000Z","height":1.75,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":255503629,"name":"Catriona Matthew","nationality":"GBR","sex":"female","date_of_birth":"1969-08-25T00:00:00.000Z","height":1.63,"weight":60,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":694774919,"name":"Cayla George","nationality":"AUS","sex":"female","date_of_birth":"1989-05-01T00:00:00.000Z","height":1.92,"weight":90,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":71279109,"name":"Caylee Watson","nationality":"ISV","sex":"female","date_of_birth":"1994-10-10T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":999104659,"name":"Cazuo Matsumoto","nationality":"BRA","sex":"male","date_of_birth":"1985-08-02T00:00:00.000Z","height":1.8,"weight":88,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":869798237,"name":"Cecil Afrika","nationality":"RSA","sex":"male","date_of_birth":"1988-03-03T00:00:00.000Z","height":1.75,"weight":75,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":558867540,"name":"Cecile Pieper","nationality":"GER","sex":"female","date_of_birth":"1994-08-31T00:00:00.000Z","height":1.66,"weight":56,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":369221148,"name":"Cecilia Berder","nationality":"FRA","sex":"female","date_of_birth":"1989-12-13T00:00:00.000Z","height":1.74,"weight":65,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":728202401,"name":"Cecilia Bouele","nationality":"CGO","sex":"female","date_of_birth":"1993-01-07T00:00:00.000Z","height":1.66,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":721352055,"name":"Cecilia Carranza Saroli","nationality":"ARG","sex":"female","date_of_birth":"1986-12-29T00:00:00.000Z","height":1.64,"weight":63,"sport":"sailing","gold":1,"silver":0,"bronze":0,"info":null},{"id":333612989,"name":"Cecilia Perez","nationality":"MEX","sex":"female","date_of_birth":"1991-11-01T00:00:00.000Z","height":1.65,"weight":53,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":958457739,"name":"Cecilia Wollmann","nationality":"BER","sex":"female","date_of_birth":"1998-01-23T00:00:00.000Z","height":1.64,"weight":60,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":947360474,"name":"Cedric Charlier","nationality":"BEL","sex":"male","date_of_birth":"1987-11-27T00:00:00.000Z","height":1.81,"weight":81,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":82592097,"name":"Cedric Dubler","nationality":"AUS","sex":"male","date_of_birth":"1995-01-13T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":408751160,"name":"Cedric Sorhaindo","nationality":"FRA","sex":"male","date_of_birth":"1984-06-07T00:00:00.000Z","height":1.92,"weight":110,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":437255555,"name":"Ceiber David Avila","nationality":"COL","sex":"male","date_of_birth":"1989-05-26T00:00:00.000Z","height":1.63,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":245970037,"name":"Cejhae Greene","nationality":"ANT","sex":"male","date_of_birth":"1995-10-06T00:00:00.000Z","height":1.74,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":205420967,"name":"Celeste Plak","nationality":"NED","sex":"female","date_of_birth":"1995-10-26T00:00:00.000Z","height":1.9,"weight":90,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":388140867,"name":"Celestin Nihorimbere","nationality":"BDI","sex":"male","date_of_birth":"1993-01-11T00:00:00.000Z","height":1.67,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":537701944,"name":"Celestine Masinde","nationality":"KEN","sex":"female","date_of_birth":"1987-01-12T00:00:00.000Z","height":1.62,"weight":60,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":636512936,"name":"Celiangeli Morales","nationality":"PUR","sex":"female","date_of_birth":"1985-11-02T00:00:00.000Z","height":1.65,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":978104747,"name":"Celine Distel-Bonnet","nationality":"FRA","sex":"female","date_of_birth":"1987-05-25T00:00:00.000Z","height":1.7,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":582673345,"name":"Celine Goberville","nationality":"FRA","sex":"female","date_of_birth":"1986-09-19T00:00:00.000Z","height":1.56,"weight":53,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":290030374,"name":"Celio Dias","nationality":"POR","sex":"male","date_of_birth":"1993-02-08T00:00:00.000Z","height":1.88,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":206341910,"name":"Celma Bonfim da Graca","nationality":"STP","sex":"female","date_of_birth":"1977-12-23T00:00:00.000Z","height":1.65,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":291597305,"name":"Celso Oliveira","nationality":"BRA","sex":"male","date_of_birth":"1988-10-28T00:00:00.000Z","height":1.88,"weight":88,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":991308199,"name":"Celtus Williams Abiola Dossou Yovo","nationality":"BEN","sex":"male","date_of_birth":"1986-04-01T00:00:00.000Z","height":1.75,"weight":89,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":69938071,"name":"Cem Yilmaz","nationality":"TUR","sex":"male","date_of_birth":"1982-06-03T00:00:00.000Z","height":1.8,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":300985690,"name":"Cenk Ildem","nationality":"TUR","sex":"male","date_of_birth":"1986-01-05T00:00:00.000Z","height":1.8,"weight":98,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":435408046,"name":"Cesar Augusto Almeida","nationality":"BRA","sex":"male","date_of_birth":"1989-01-06T00:00:00.000Z","height":1.88,"weight":98,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":518609220,"name":"Cesar Castro","nationality":"BRA","sex":"male","date_of_birth":"1982-09-02T00:00:00.000Z","height":1.75,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":454137543,"name":"Cesar Ernesto de Cesare","nationality":"ECU","sex":"male","date_of_birth":"1980-07-12T00:00:00.000Z","height":1.9,"weight":92,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":15259050,"name":"Cesar Marcano","nationality":"VEN","sex":"male","date_of_birth":"1987-10-22T00:00:00.000Z","height":1.77,"weight":76,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":427211622,"name":"Cesar Montes","nationality":"MEX","sex":"male","date_of_birth":"1997-02-24T00:00:00.000Z","height":1.91,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":794568410,"name":"Cesar Sempere","nationality":"ESP","sex":"male","date_of_birth":"1984-05-26T00:00:00.000Z","height":1.82,"weight":86,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":844330987,"name":"Cesar Y. Ruiz","nationality":"CUB","sex":"male","date_of_birth":"1995-01-18T00:00:00.000Z","height":1.84,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":51787706,"name":"Chad Guy Bertrand le Clos","nationality":"RSA","sex":"male","date_of_birth":"1992-04-12T00:00:00.000Z","height":1.9,"weight":83,"sport":"aquatics","gold":0,"silver":2,"bronze":0,"info":"Chad le Clos dream came true at London 2012, when he beat Michael Phelps to win gold in the 200m butterfly. This South African swimmer also won silver in the 100m butterfly – before winning the even at the 2015 world championship."},{"id":797308674,"name":"Chad Ho","nationality":"RSA","sex":"male","date_of_birth":"1990-06-21T00:00:00.000Z","height":1.72,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":406780652,"name":"Chaebin Im","nationality":"KOR","sex":"male","date_of_birth":"1991-10-29T00:00:00.000Z","height":1.69,"weight":75,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":300475041,"name":"Chafik Bouaoud","nationality":"ALG","sex":"male","date_of_birth":"1999-02-12T00:00:00.000Z","height":1.77,"weight":74,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":388718541,"name":"Chagnaadorj Usukhbayar","nationality":"MGL","sex":"male","date_of_birth":"1997-05-06T00:00:00.000Z","height":1.55,"weight":56,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":465407360,"name":"Chahinez Nasri","nationality":"TUN","sex":"female","date_of_birth":"1996-06-03T00:00:00.000Z","height":1.68,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":355057478,"name":"Chaim Schalk","nationality":"CAN","sex":"male","date_of_birth":"1986-04-23T00:00:00.000Z","height":1.95,"weight":88,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":143002811,"name":"Chain Singh","nationality":"IND","sex":"male","date_of_birth":"1989-04-05T00:00:00.000Z","height":1.72,"weight":68,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":845845123,"name":"Chakir Ansari","nationality":"MAR","sex":"male","date_of_birth":"1991-06-22T00:00:00.000Z","height":1.68,"weight":57,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":738060846,"name":"Chala Beyo","nationality":"ETH","sex":"male","date_of_birth":"1996-01-18T00:00:00.000Z","height":1.76,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":175009938,"name":"Chamara Repiyallage","nationality":"SRI","sex":"male","date_of_birth":"1992-05-10T00:00:00.000Z","height":1.6,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":278008849,"name":"Chamberlain Oguchi","nationality":"NGR","sex":"male","date_of_birth":"1986-04-28T00:00:00.000Z","height":1.98,"weight":90,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":723338672,"name":"Chandanda Thimmaiah","nationality":"IND","sex":"male","date_of_birth":"1991-01-18T00:00:00.000Z","height":1.71,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":974332557,"name":"Chandong Lee","nationality":"KOR","sex":"male","date_of_birth":"1993-01-10T00:00:00.000Z","height":1.83,"weight":83,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":523414424,"name":"Changgeun Lee","nationality":"KOR","sex":"male","date_of_birth":"1993-08-30T00:00:00.000Z","height":null,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":328876180,"name":"Changhoon Kwon","nationality":"KOR","sex":"male","date_of_birth":"1994-06-30T00:00:00.000Z","height":1.74,"weight":66,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":981134521,"name":"Changjin Moon","nationality":"KOR","sex":"male","date_of_birth":"1993-07-12T00:00:00.000Z","height":1.7,"weight":63,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":988404471,"name":"Changju Kim","nationality":"KOR","sex":"male","date_of_birth":"1985-09-20T00:00:00.000Z","height":1.78,"weight":69,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":134774857,"name":"Changmin Lee","nationality":"KOR","sex":"male","date_of_birth":"1994-01-20T00:00:00.000Z","height":1.78,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":200603322,"name":"Changning Zhang","nationality":"CHN","sex":"female","date_of_birth":"1995-11-06T00:00:00.000Z","height":1.93,"weight":79,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":965944116,"name":"Changrim An","nationality":"KOR","sex":"male","date_of_birth":"1994-03-02T00:00:00.000Z","height":1.7,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":428792415,"name":"Changrui Xue","nationality":"CHN","sex":"male","date_of_birth":"1991-05-31T00:00:00.000Z","height":1.88,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":278225437,"name":"Changzhou Huang","nationality":"CHN","sex":"male","date_of_birth":"1994-08-20T00:00:00.000Z","height":1.86,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":227590205,"name":"Chanice Chase","nationality":"CAN","sex":"female","date_of_birth":"1993-08-06T00:00:00.000Z","height":1.73,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":66906563,"name":"Chantal Achterberg","nationality":"NED","sex":"female","date_of_birth":"1985-04-16T00:00:00.000Z","height":1.72,"weight":72,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":25695000,"name":"Chantal Hoffmann","nationality":"LUX","sex":"female","date_of_birth":"1987-10-30T00:00:00.000Z","height":1.67,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":543504980,"name":"Chantal Van Landeghem","nationality":"CAN","sex":"female","date_of_birth":"1994-03-05T00:00:00.000Z","height":1.8,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":797864870,"name":"Chantelle Esau","nationality":"RSA","sex":"female","date_of_birth":"1990-12-14T00:00:00.000Z","height":1.63,"weight":52,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":327647564,"name":"Chanu Saikhom Mirabai","nationality":"IND","sex":"female","date_of_birth":"1994-08-08T00:00:00.000Z","height":1.45,"weight":48,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":912660957,"name":"Chao He","nationality":"CHN","sex":"male","date_of_birth":"1992-02-11T00:00:00.000Z","height":1.68,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":89640785,"name":"Chao Xu","nationality":"CHN","sex":"male","date_of_birth":"1994-11-05T00:00:00.000Z","height":1.85,"weight":82,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":248093384,"name":"Chao Yue","nationality":"CHN","sex":"female","date_of_birth":"1991-01-05T00:00:00.000Z","height":1.65,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":176787590,"name":"Chao Zhou","nationality":"CHN","sex":"female","date_of_birth":"1987-01-12T00:00:00.000Z","height":1.7,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":516647126,"name":"Chaopan Lin","nationality":"CHN","sex":"male","date_of_birth":"1995-08-27T00:00:00.000Z","height":1.63,"weight":60,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":569192989,"name":"Charity Williams","nationality":"CAN","sex":"female","date_of_birth":"1996-10-20T00:00:00.000Z","height":1.62,"weight":68,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":957327519,"name":"Charlene Woitha","nationality":"GER","sex":"female","date_of_birth":"1993-08-21T00:00:00.000Z","height":1.78,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":792508512,"name":"Charles Albert Shone Conwell","nationality":"USA","sex":"male","date_of_birth":"1997-11-02T00:00:00.000Z","height":1.76,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":624227669,"name":"Charles Chibana","nationality":"BRA","sex":"male","date_of_birth":"1989-09-11T00:00:00.000Z","height":1.63,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":32540693,"name":"Charles Cole","nationality":"USA","sex":"male","date_of_birth":"1986-06-21T00:00:00.000Z","height":1.94,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":607494288,"name":"Charles Correa","nationality":"BRA","sex":"male","date_of_birth":"1992-10-09T00:00:00.000Z","height":1.59,"weight":58,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":91062898,"name":"Charles Fernandez","nationality":"GUA","sex":"male","date_of_birth":"1995-12-28T00:00:00.000Z","height":1.81,"weight":74,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":557871221,"name":"Charles Grethen","nationality":"LUX","sex":"male","date_of_birth":"1992-06-02T00:00:00.000Z","height":1.8,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":15332817,"name":"Charles Jock","nationality":"USA","sex":"male","date_of_birth":"1989-11-23T00:00:00.000Z","height":1.91,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":262046958,"name":"Charles Kahudi","nationality":"FRA","sex":"male","date_of_birth":"1986-07-19T00:00:00.000Z","height":1.97,"weight":104,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":935795662,"name":"Charles Philibert-Thiboutot","nationality":"CAN","sex":"male","date_of_birth":"1990-12-31T00:00:00.000Z","height":1.82,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":763413652,"name":"Charles Yosei Muneria","nationality":"KEN","sex":"male","date_of_birth":"1996-02-10T00:00:00.000Z","height":1.67,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":762626712,"name":"Charley Hull","nationality":"GBR","sex":"female","date_of_birth":"1996-03-20T00:00:00.000Z","height":1.7,"weight":70,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":373271527,"name":"Charlie Buckingham","nationality":"USA","sex":"male","date_of_birth":"1989-01-16T00:00:00.000Z","height":1.88,"weight":81,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":617780689,"name":"Charlie Grice","nationality":"GBR","sex":"male","date_of_birth":"1993-11-07T00:00:00.000Z","height":1.82,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":932285565,"name":"Charline Mathias","nationality":"LUX","sex":"female","date_of_birth":"1992-05-23T00:00:00.000Z","height":1.73,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":889819769,"name":"Charline Picon","nationality":"FRA","sex":"female","date_of_birth":"1984-12-23T00:00:00.000Z","height":1.69,"weight":57,"sport":"sailing","gold":1,"silver":0,"bronze":0,"info":null},{"id":477185472,"name":"Charline van Snick","nationality":"BEL","sex":"female","date_of_birth":"1990-09-02T00:00:00.000Z","height":1.57,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":647849033,"name":"Charlotta Fougberg","nationality":"SWE","sex":"female","date_of_birth":"1985-06-19T00:00:00.000Z","height":1.65,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":445362383,"name":"Charlotte Becker","nationality":"GER","sex":"female","date_of_birth":"1983-05-19T00:00:00.000Z","height":1.73,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":721017208,"name":"Charlotte Bonin","nationality":"ITA","sex":"female","date_of_birth":"1987-02-10T00:00:00.000Z","height":1.73,"weight":60,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":403574731,"name":"Charlotte Bonnet","nationality":"FRA","sex":"female","date_of_birth":"1995-02-14T00:00:00.000Z","height":1.75,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":865933496,"name":"Charlotte Caslick","nationality":"AUS","sex":"female","date_of_birth":"1995-03-09T00:00:00.000Z","height":1.72,"weight":65,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":172842725,"name":"Charlotte Dobson","nationality":"GBR","sex":"female","date_of_birth":"1986-06-05T00:00:00.000Z","height":1.68,"weight":62,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":118964304,"name":"Charlotte Dujardin","nationality":"GBR","sex":"female","date_of_birth":"1985-07-12T00:00:00.000Z","height":1.7,"weight":57,"sport":"equestrian","gold":1,"silver":1,"bronze":0,"info":"The London 2012 Olympic champion in the individual and team events, Briton Charlotte Dujardin was the first to win the main equestrian dressage titles: Olympic gold, the World Championship, the World Cup and the European Championship."},{"id":833774216,"name":"Charlotte Harrison","nationality":"NZL","sex":"female","date_of_birth":"1989-07-31T00:00:00.000Z","height":1.67,"weight":55,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":841791715,"name":"Charlotte Lembach","nationality":"FRA","sex":"female","date_of_birth":"1988-04-01T00:00:00.000Z","height":1.64,"weight":57,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":634284739,"name":"Charlotte Mordasini","nationality":"SWE","sex":"female","date_of_birth":"1988-12-31T00:00:00.000Z","height":1.71,"weight":60,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":996536701,"name":"Charlotte Stapenhorst","nationality":"GER","sex":"female","date_of_birth":"1995-06-15T00:00:00.000Z","height":1.68,"weight":68,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":837449921,"name":"Charlotte Sutherland","nationality":"AUS","sex":"female","date_of_birth":"1991-06-26T00:00:00.000Z","height":1.8,"weight":76,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":892102101,"name":"Charlotte Taylor","nationality":"GBR","sex":"female","date_of_birth":"1985-08-14T00:00:00.000Z","height":1.65,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":660698958,"name":"Charlotte Wingfield","nationality":"MLT","sex":"female","date_of_birth":"1994-11-30T00:00:00.000Z","height":1.73,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":534915497,"name":"Charly Coronel Suarez","nationality":"PHI","sex":"male","date_of_birth":"1988-08-14T00:00:00.000Z","height":1.68,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":280839325,"name":"Chase Kalisz","nationality":"USA","sex":"male","date_of_birth":"1994-03-07T00:00:00.000Z","height":1.94,"weight":86,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":172605040,"name":"Chatchai Butdee","nationality":"THA","sex":"male","date_of_birth":"1985-03-26T00:00:00.000Z","height":1.66,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":851008982,"name":"Chatuphum Chinnawong","nationality":"THA","sex":"male","date_of_birth":"1993-07-19T00:00:00.000Z","height":1.67,"weight":77,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":714871025,"name":"Chaunte Lowe","nationality":"USA","sex":"female","date_of_birth":"1984-01-12T00:00:00.000Z","height":1.76,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":680189509,"name":"Chavaughn Walsh","nationality":"ANT","sex":"male","date_of_birth":"1987-12-29T00:00:00.000Z","height":1.8,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":284105289,"name":"Cheick Sallah Junior Cisse","nationality":"CIV","sex":"male","date_of_birth":"1993-09-19T00:00:00.000Z","height":1.9,"weight":null,"sport":"taekwondo","gold":1,"silver":0,"bronze":0,"info":null},{"id":105081370,"name":"Chelsea Jaensch","nationality":"AUS","sex":"female","date_of_birth":"1985-01-06T00:00:00.000Z","height":1.63,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":638380672,"name":"Chelsea Lea Gubecka","nationality":"AUS","sex":"female","date_of_birth":"1998-09-08T00:00:00.000Z","height":1.62,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":774700015,"name":"Chen Gao","nationality":"CHN","sex":"female","date_of_birth":"1992-08-11T00:00:00.000Z","height":1.7,"weight":58,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":355354758,"name":"Chen Shen","nationality":"CHN","sex":"female","date_of_birth":"1990-07-28T00:00:00.000Z","height":1.71,"weight":62,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":332886320,"name":"Chen Xu","nationality":"CHN","sex":"male","date_of_birth":"1984-11-29T00:00:00.000Z","height":1.88,"weight":82,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":886188106,"name":"Chen-Ling Lien","nationality":"TPE","sex":"female","date_of_birth":"1988-01-31T00:00:00.000Z","height":1.68,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":247619979,"name":"Chenggang Yu","nationality":"CHN","sex":"male","date_of_birth":"1984-02-23T00:00:00.000Z","height":1.81,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":220688472,"name":"Chenglong Zhang","nationality":"CHN","sex":"male","date_of_birth":"1989-05-12T00:00:00.000Z","height":1.73,"weight":65,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":831305339,"name":"Chengxin Yin","nationality":"CHN","sex":"female","date_of_birth":"1995-02-05T00:00:00.000Z","height":1.7,"weight":55,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":397297354,"name":"Chenlu Qin","nationality":"CHN","sex":"male","date_of_birth":"1992-10-24T00:00:00.000Z","height":1.75,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":98995708,"name":"Cherif Younousse Samba","nationality":"QAT","sex":"male","date_of_birth":"1995-05-22T00:00:00.000Z","height":1.94,"weight":77,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":543666131,"name":"Cheslin Kolbe","nationality":"RSA","sex":"male","date_of_birth":"1993-10-28T00:00:00.000Z","height":1.79,"weight":89,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":717003685,"name":"Chi-Chung Tan","nationality":"TPE","sex":"male","date_of_birth":"1990-02-24T00:00:00.000Z","height":1.55,"weight":56,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":116299624,"name":"Chia Hsin Tsai","nationality":"TPE","sex":"male","date_of_birth":"1982-07-25T00:00:00.000Z","height":1.82,"weight":82,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":36584251,"name":"Chia Ying Wu","nationality":"TPE","sex":"female","date_of_birth":"1992-10-25T00:00:00.000Z","height":1.55,"weight":47,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":469947705,"name":"Chia-Chia Chuang","nationality":"TPE","sex":"female","date_of_birth":"1989-05-14T00:00:00.000Z","height":1.79,"weight":65,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":480858629,"name":"Chiaki Tomita","nationality":"JPN","sex":"female","date_of_birth":"1993-10-18T00:00:00.000Z","height":1.65,"weight":55,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":148995739,"name":"Chiara Bazzoni","nationality":"ITA","sex":"female","date_of_birth":"1984-07-05T00:00:00.000Z","height":1.72,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":454523212,"name":"Chiara Cainero","nationality":"ITA","sex":"female","date_of_birth":"1978-03-24T00:00:00.000Z","height":1.71,"weight":81,"sport":"shooting","gold":0,"silver":1,"bronze":0,"info":null},{"id":875043196,"name":"Chiara Masini Luccetti","nationality":"ITA","sex":"female","date_of_birth":"1993-03-26T00:00:00.000Z","height":1.71,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":781396990,"name":"Chiara Tabani","nationality":"ITA","sex":"female","date_of_birth":"1994-08-27T00:00:00.000Z","height":1.76,"weight":72,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":430952782,"name":"Chico Ramos","nationality":"POR","sex":"male","date_of_birth":"1995-04-10T00:00:00.000Z","height":1.85,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":464650816,"name":"Chido Dzingirai","nationality":"ZIM","sex":"female","date_of_birth":"1991-10-25T00:00:00.000Z","height":1.72,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":294878524,"name":"Chieh Chen","nationality":"TPE","sex":"male","date_of_birth":"1992-05-08T00:00:00.000Z","height":1.82,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":930498029,"name":"Chien-An Chen","nationality":"TPE","sex":"male","date_of_birth":"1991-06-16T00:00:00.000Z","height":1.7,"weight":72,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":769049333,"name":"Chien-Ho Hsieh","nationality":"TPE","sex":"female","date_of_birth":"1987-11-25T00:00:00.000Z","height":1.64,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":296026753,"name":"Chien-Hung Pan","nationality":"TPE","sex":"male","date_of_birth":"1988-08-07T00:00:00.000Z","height":1.69,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":846139203,"name":"Chien-Ying Le","nationality":"TPE","sex":"female","date_of_birth":"1990-04-17T00:00:00.000Z","height":1.65,"weight":69,"sport":"archery","gold":0,"silver":0,"bronze":1,"info":null},{"id":404278296,"name":"Chierika Ukogu","nationality":"NGR","sex":"female","date_of_birth":"1992-10-02T00:00:00.000Z","height":1.8,"weight":67,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":558527294,"name":"Chih Kai Lee","nationality":"TPE","sex":"male","date_of_birth":"1996-04-03T00:00:00.000Z","height":1.7,"weight":65,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":141719705,"name":"Chih-Yuan Chuang","nationality":"TPE","sex":"male","date_of_birth":"1981-04-02T00:00:00.000Z","height":1.68,"weight":60,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":251378331,"name":"Chiharu Nakamura","nationality":"JPN","sex":"female","date_of_birth":"1988-04-25T00:00:00.000Z","height":1.63,"weight":63,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":32395502,"name":"Chihiro Igarashi","nationality":"JPN","sex":"female","date_of_birth":"1995-05-24T00:00:00.000Z","height":1.7,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":802100153,"name":"Chijindu Ujah","nationality":"GBR","sex":"male","date_of_birth":"1994-03-05T00:00:00.000Z","height":1.82,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":2657574,"name":"Chika Aoki","nationality":"JPN","sex":"female","date_of_birth":"1990-02-21T00:00:00.000Z","height":1.58,"weight":54,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":489705846,"name":"Chilsung Park","nationality":"KOR","sex":"male","date_of_birth":"1982-07-08T00:00:00.000Z","height":1.73,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":520588728,"name":"Chin-Ping Ho","nationality":"TPE","sex":"male","date_of_birth":"1983-10-23T00:00:00.000Z","height":1.73,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":475891314,"name":"Chinglensana Kangujam","nationality":"IND","sex":"male","date_of_birth":"1991-12-02T00:00:00.000Z","height":1.69,"weight":72,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":697417425,"name":"Chinwe Okoro","nationality":"NGR","sex":"female","date_of_birth":"1989-06-20T00:00:00.000Z","height":1.78,"weight":102,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":885083820,"name":"Chinzorig Baatarsukh","nationality":"MGL","sex":"male","date_of_birth":"1991-09-21T00:00:00.000Z","height":1.74,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":775422570,"name":"Chirine Njeim","nationality":"LIB","sex":"female","date_of_birth":"1984-10-04T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":781340794,"name":"Chisato Fukushima","nationality":"JPN","sex":"female","date_of_birth":"1988-06-27T00:00:00.000Z","height":1.65,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":798175500,"name":"Chisato Yokoo","nationality":"JPN","sex":"female","date_of_birth":"1992-05-22T00:00:00.000Z","height":1.64,"weight":60,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":912156686,"name":"Chiu Mang Tang","nationality":"HKG","sex":"male","date_of_birth":"1990-07-24T00:00:00.000Z","height":1.8,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":347216262,"name":"Chloe Bulleux","nationality":"FRA","sex":"female","date_of_birth":"1991-11-18T00:00:00.000Z","height":1.72,"weight":65,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":247836901,"name":"Chloe Dalton","nationality":"AUS","sex":"female","date_of_birth":"1993-07-11T00:00:00.000Z","height":1.8,"weight":72,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":908812309,"name":"Chloe Dygert","nationality":"USA","sex":"female","date_of_birth":"1997-01-01T00:00:00.000Z","height":1.76,"weight":66,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":66098527,"name":"Chloe Esposito","nationality":"AUS","sex":"female","date_of_birth":"1991-09-19T00:00:00.000Z","height":1.68,"weight":55,"sport":"modern pentathlon","gold":1,"silver":0,"bronze":0,"info":null},{"id":792650052,"name":"Chloe Leurquin","nationality":"BEL","sex":"female","date_of_birth":"1990-08-09T00:00:00.000Z","height":1.69,"weight":57,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":315954176,"name":"Chloe Logarzo","nationality":"AUS","sex":"female","date_of_birth":"1994-12-22T00:00:00.000Z","height":1.65,"weight":55,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":819853212,"name":"Chloe Magee","nationality":"IRL","sex":"female","date_of_birth":"1988-11-29T00:00:00.000Z","height":1.65,"weight":61,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":622470385,"name":"Chloe Marie Helene Sauvourel","nationality":"CAF","sex":"female","date_of_birth":"1999-06-18T00:00:00.000Z","height":1.66,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":838794586,"name":"Chloe Rayner","nationality":"AUS","sex":"female","date_of_birth":"1996-09-18T00:00:00.000Z","height":1.55,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":308484063,"name":"Chloe Tipple","nationality":"NZL","sex":"female","date_of_birth":"1991-06-05T00:00:00.000Z","height":1.78,"weight":80,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":150543887,"name":"Chloe Tutton","nationality":"GBR","sex":"female","date_of_birth":"1996-07-17T00:00:00.000Z","height":1.68,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":87537613,"name":"Chloe Woodruff","nationality":"USA","sex":"female","date_of_birth":"1987-07-21T00:00:00.000Z","height":1.58,"weight":51,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":993806329,"name":"Choaib Belhaj Salah","nationality":"TUN","sex":"male","date_of_birth":"1987-06-04T00:00:00.000Z","height":1.94,"weight":93,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":310773041,"name":"Chol Pak","nationality":"PRK","sex":"male","date_of_birth":"1990-11-08T00:00:00.000Z","height":1.65,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":609981962,"name":"Chong Wei Lee","nationality":"MAS","sex":"male","date_of_birth":"1982-10-21T00:00:00.000Z","height":1.7,"weight":68,"sport":"badminton","gold":0,"silver":1,"bronze":0,"info":"With two silvers, won in the singles tournaments at Beijing 2008 and London 2012, Lee Chong Wei is the greatest Olympian in Malaysia's history. Top of the world rankings from 2008 to 2012, he has won a silver medal at the past three world championships."},{"id":82546289,"name":"Chouaib Bouloudinats","nationality":"ALG","sex":"male","date_of_birth":"1987-01-08T00:00:00.000Z","height":1.82,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":93555495,"name":"Chris Adcock","nationality":"GBR","sex":"male","date_of_birth":"1989-04-27T00:00:00.000Z","height":1.83,"weight":80,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":518947875,"name":"Chris Anker Sorensen","nationality":"DEN","sex":"male","date_of_birth":"1984-09-05T00:00:00.000Z","height":1.84,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":889760541,"name":"Chris Baker","nationality":"GBR","sex":"male","date_of_birth":"1991-02-02T00:00:00.000Z","height":1.94,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":123795777,"name":"Chris Bartley","nationality":"GBR","sex":"male","date_of_birth":"1984-02-02T00:00:00.000Z","height":1.78,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":381231123,"name":"Chris Benard","nationality":"USA","sex":"male","date_of_birth":"1990-04-09T00:00:00.000Z","height":1.91,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":629312899,"name":"Chris Bennett","nationality":"GBR","sex":"male","date_of_birth":"1989-12-17T00:00:00.000Z","height":1.88,"weight":115,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":148030859,"name":"Chris Brown","nationality":"BAH","sex":"male","date_of_birth":"1978-10-15T00:00:00.000Z","height":1.78,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":719858003,"name":"Chris Ciriello","nationality":"AUS","sex":"male","date_of_birth":"1985-10-01T00:00:00.000Z","height":1.82,"weight":83,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":784067568,"name":"Chris Erickson","nationality":"AUS","sex":"male","date_of_birth":"1981-12-01T00:00:00.000Z","height":1.75,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":572725066,"name":"Chris Goulding","nationality":"AUS","sex":"male","date_of_birth":"1988-10-24T00:00:00.000Z","height":1.92,"weight":93,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":277029308,"name":"Chris Grube","nationality":"GBR","sex":"male","date_of_birth":"1985-01-22T00:00:00.000Z","height":1.94,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":110660329,"name":"Chris Langridge","nationality":"GBR","sex":"male","date_of_birth":"1985-05-02T00:00:00.000Z","height":1.8,"weight":null,"sport":"badminton","gold":0,"silver":0,"bronze":1,"info":null},{"id":628001010,"name":"Chris Mears","nationality":"GBR","sex":"male","date_of_birth":"1993-02-07T00:00:00.000Z","height":1.73,"weight":73,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":182303154,"name":"Chris O'Hare","nationality":"GBR","sex":"male","date_of_birth":"1990-11-23T00:00:00.000Z","height":1.78,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":150373801,"name":"Chris Walker-Hebborn","nationality":"GBR","sex":"male","date_of_birth":"1990-07-01T00:00:00.000Z","height":1.84,"weight":84,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":261887027,"name":"Chris Winter","nationality":"CAN","sex":"male","date_of_birth":"1986-07-22T00:00:00.000Z","height":1.88,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":491144467,"name":"Chris Wyles","nationality":"USA","sex":"male","date_of_birth":"1983-09-13T00:00:00.000Z","height":1.83,"weight":95,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":187059251,"name":"Chrisann Gordon","nationality":"JAM","sex":"female","date_of_birth":"1994-09-18T00:00:00.000Z","height":1.68,"weight":65,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":123893495,"name":"Chrishuna Williams","nationality":"USA","sex":"female","date_of_birth":"1993-03-31T00:00:00.000Z","height":1.61,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":261434157,"name":"Christa Harmotto Dietzen","nationality":"USA","sex":"female","date_of_birth":"1986-10-12T00:00:00.000Z","height":1.88,"weight":79,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":961185789,"name":"Christabel Nettey","nationality":"CAN","sex":"female","date_of_birth":"1991-06-02T00:00:00.000Z","height":1.62,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":112339974,"name":"Christania Williams","nationality":"JAM","sex":"female","date_of_birth":"1994-10-17T00:00:00.000Z","height":1.65,"weight":63,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":114831351,"name":"Christelle Daunay","nationality":"FRA","sex":"female","date_of_birth":"1974-12-05T00:00:00.000Z","height":1.62,"weight":43,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":572557268,"name":"Christelle Tchoudjang Nana","nationality":"CMR","sex":"female","date_of_birth":"1989-07-07T00:00:00.000Z","height":1.84,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":900988313,"name":"Christen Press","nationality":"USA","sex":"female","date_of_birth":"1988-12-29T00:00:00.000Z","height":1.7,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":783674289,"name":"Christiaan Varenhorst","nationality":"NED","sex":"male","date_of_birth":"1990-05-06T00:00:00.000Z","height":2.11,"weight":104,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":983312756,"name":"Christian Ahlmann","nationality":"GER","sex":"male","date_of_birth":"1974-12-17T00:00:00.000Z","height":1.89,"weight":80,"sport":"equestrian","gold":0,"silver":0,"bronze":1,"info":null},{"id":101327235,"name":"Christian Amoah","nationality":"GHA","sex":"male","date_of_birth":"1999-07-25T00:00:00.000Z","height":1.84,"weight":84,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":390828908,"name":"Christian Baumann","nationality":"SUI","sex":"male","date_of_birth":"1995-02-25T00:00:00.000Z","height":1.63,"weight":60,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":871551515,"name":"Christian Coleman","nationality":"USA","sex":"male","date_of_birth":"1996-03-06T00:00:00.000Z","height":1.76,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":798416693,"name":"Christian Diener","nationality":"GER","sex":"male","date_of_birth":"1993-06-03T00:00:00.000Z","height":1.82,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":869931216,"name":"Christian Dissinger","nationality":"GER","sex":"male","date_of_birth":"1991-11-15T00:00:00.000Z","height":2.03,"weight":105,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":429253838,"name":"Christian Guenter","nationality":"GER","sex":"male","date_of_birth":"1993-02-28T00:00:00.000Z","height":1.84,"weight":82,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":621658753,"name":"Christian Kreienbuhl","nationality":"SUI","sex":"male","date_of_birth":"1981-06-06T00:00:00.000Z","height":1.86,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":461859304,"name":"Christian Mbilli","nationality":"FRA","sex":"male","date_of_birth":"1995-04-26T00:00:00.000Z","height":1.75,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":530803618,"name":"Christian Nassif Djidagui","nationality":"CAF","sex":"male","date_of_birth":"1994-01-01T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":49854896,"name":"Christian Peter Lubeck","nationality":"DEN","sex":"male","date_of_birth":"1991-04-23T00:00:00.000Z","height":1.86,"weight":81,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":839986218,"name":"Christian Presciutti","nationality":"ITA","sex":"male","date_of_birth":"1982-11-27T00:00:00.000Z","height":1.84,"weight":87,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":150989629,"name":"Christian Reichert","nationality":"GER","sex":"male","date_of_birth":"1985-02-07T00:00:00.000Z","height":1.88,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":513022644,"name":"Christian Reitz","nationality":"GER","sex":"male","date_of_birth":"1987-04-29T00:00:00.000Z","height":1.84,"weight":90,"sport":"shooting","gold":1,"silver":0,"bronze":0,"info":null},{"id":446986047,"name":"Christian Taylor","nationality":"USA","sex":"male","date_of_birth":"1990-06-18T00:00:00.000Z","height":1.88,"weight":81,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":607156497,"name":"Christian Vom Lehn","nationality":"GER","sex":"male","date_of_birth":"1992-04-14T00:00:00.000Z","height":1.9,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":45955981,"name":"Christian Zillekens","nationality":"GER","sex":"male","date_of_birth":"1995-12-29T00:00:00.000Z","height":1.79,"weight":68,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":511915390,"name":"Christian Zimmermann","nationality":"PLE","sex":"male","date_of_birth":"1961-12-12T00:00:00.000Z","height":null,"weight":null,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":309587083,"name":"Christianne Legentil","nationality":"MRI","sex":"female","date_of_birth":"1992-05-27T00:00:00.000Z","height":1.53,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":23725637,"name":"Christin Hussong","nationality":"GER","sex":"female","date_of_birth":"1994-03-17T00:00:00.000Z","height":1.86,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":748125644,"name":"Christina Epps","nationality":"USA","sex":"female","date_of_birth":"1991-06-20T00:00:00.000Z","height":1.76,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":646217322,"name":"Christina Hering","nationality":"GER","sex":"female","date_of_birth":"1994-10-09T00:00:00.000Z","height":1.85,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":532991563,"name":"Christina Obergfoll","nationality":"GER","sex":"female","date_of_birth":"1981-08-22T00:00:00.000Z","height":1.75,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":802053321,"name":"Christina Schwanitz","nationality":"GER","sex":"female","date_of_birth":"1985-12-24T00:00:00.000Z","height":1.8,"weight":115,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":544811537,"name":"Christine Amertil","nationality":"BAH","sex":"female","date_of_birth":"1979-08-18T00:00:00.000Z","height":1.68,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":304380235,"name":"Christine Bjerendal","nationality":"SWE","sex":"female","date_of_birth":"1987-02-03T00:00:00.000Z","height":1.61,"weight":59,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":524363491,"name":"Christine Botlogetswe","nationality":"BOT","sex":"female","date_of_birth":"1995-10-01T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":45076354,"name":"Christine Day","nationality":"JAM","sex":"female","date_of_birth":"1986-08-23T00:00:00.000Z","height":1.68,"weight":51,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":774219408,"name":"Christine Kalmer","nationality":"RSA","sex":"female","date_of_birth":"1986-02-10T00:00:00.000Z","height":1.72,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":348981852,"name":"Christine Majerus","nationality":"LUX","sex":"female","date_of_birth":"1987-02-25T00:00:00.000Z","height":1.74,"weight":57,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":600192107,"name":"Christine Ohuruogu","nationality":"GBR","sex":"female","date_of_birth":"1984-05-17T00:00:00.000Z","height":1.72,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":141698796,"name":"Christine Roper","nationality":"CAN","sex":"female","date_of_birth":"1990-05-15T00:00:00.000Z","height":1.88,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":250723812,"name":"Christine Sinclair","nationality":"CAN","sex":"female","date_of_birth":"1983-06-12T00:00:00.000Z","height":1.76,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":514854270,"name":"Christine Wenzel","nationality":"GER","sex":"female","date_of_birth":"1981-07-10T00:00:00.000Z","height":1.71,"weight":63,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":996180184,"name":"Christine Wolf","nationality":"AUT","sex":"female","date_of_birth":"1989-03-05T00:00:00.000Z","height":1.72,"weight":63,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":121437333,"name":"Christinna Pedersen","nationality":"DEN","sex":"female","date_of_birth":"1986-05-12T00:00:00.000Z","height":1.78,"weight":68,"sport":"badminton","gold":0,"silver":1,"bronze":0,"info":null},{"id":971332873,"name":"Christodoulos Kolomvos","nationality":"GRE","sex":"male","date_of_birth":"1988-10-26T00:00:00.000Z","height":1.86,"weight":103,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":85448954,"name":"Christoph Fildebrandt","nationality":"GER","sex":"male","date_of_birth":"1989-05-27T00:00:00.000Z","height":1.93,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":501861079,"name":"Christoph Harting","nationality":"GER","sex":"male","date_of_birth":"1990-04-10T00:00:00.000Z","height":2.07,"weight":123,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":731592178,"name":"Christoph Martin Meier","nationality":"LIE","sex":"male","date_of_birth":"1993-01-03T00:00:00.000Z","height":1.97,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":134449536,"name":"Christophe Lemaitre","nationality":"FRA","sex":"male","date_of_birth":"1990-06-11T00:00:00.000Z","height":1.9,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":447803085,"name":"Christophen McPHERSON","nationality":"BRA","sex":"male","date_of_birth":"1984-06-19T00:00:00.000Z","height":1.85,"weight":77,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":822832512,"name":"Christopher Brooks","nationality":"USA","sex":"male","date_of_birth":"1986-12-19T00:00:00.000Z","height":1.73,"weight":74,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":628857615,"name":"Christopher Burton","nationality":"AUS","sex":"male","date_of_birth":"1981-11-22T00:00:00.000Z","height":1.8,"weight":70,"sport":"equestrian","gold":0,"silver":0,"bronze":1,"info":null},{"id":401021506,"name":"Christopher Cargo","nationality":"IRL","sex":"male","date_of_birth":"1986-02-18T00:00:00.000Z","height":1.82,"weight":79,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":795060269,"name":"Christopher Froome","nationality":"GBR","sex":"male","date_of_birth":"1985-05-20T00:00:00.000Z","height":1.85,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":804679484,"name":"Christopher George","nationality":"TTO","sex":"male","date_of_birth":"1983-12-25T00:00:00.000Z","height":null,"weight":null,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":489215473,"name":"Christopher Guccione","nationality":"AUS","sex":"male","date_of_birth":"1985-07-30T00:00:00.000Z","height":2,"weight":91,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":777119491,"name":"Christopher Harris","nationality":"NZL","sex":"male","date_of_birth":"1985-10-19T00:00:00.000Z","height":1.87,"weight":89,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":488320135,"name":"Christopher Juul Jensen","nationality":"DEN","sex":"male","date_of_birth":"1989-07-06T00:00:00.000Z","height":1.85,"weight":75,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":515467110,"name":"Christopher Linke","nationality":"GER","sex":"male","date_of_birth":"1988-10-24T00:00:00.000Z","height":1.91,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":375356120,"name":"Christopher Morgan","nationality":"AUS","sex":"male","date_of_birth":"1982-12-15T00:00:00.000Z","height":1.91,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":893971715,"name":"Christopher Patrick Reid","nationality":"RSA","sex":"male","date_of_birth":"1996-01-10T00:00:00.000Z","height":1.98,"weight":98,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":390068721,"name":"Christopher Ruhr","nationality":"GER","sex":"male","date_of_birth":"1993-12-19T00:00:00.000Z","height":1.8,"weight":77,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":672777082,"name":"Christopher Valdez","nationality":"DOM","sex":"male","date_of_birth":"1994-11-01T00:00:00.000Z","height":1.7,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":741375117,"name":"Christopher Wesley","nationality":"GER","sex":"male","date_of_birth":"1987-06-23T00:00:00.000Z","height":1.92,"weight":88,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":491621394,"name":"Christos Afroudakis","nationality":"GRE","sex":"male","date_of_birth":"1984-05-23T00:00:00.000Z","height":1.88,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":178446035,"name":"Christos Katrantzis","nationality":"GRE","sex":"male","date_of_birth":"1992-03-30T00:00:00.000Z","height":1.88,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":416304981,"name":"Christos Volikakis","nationality":"GRE","sex":"male","date_of_birth":"1988-03-25T00:00:00.000Z","height":1.7,"weight":85,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":141489782,"name":"Chu-En Lai","nationality":"TPE","sex":"male","date_of_birth":"1996-07-23T00:00:00.000Z","height":1.68,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":82062785,"name":"Chuluunbat Jargalsaikhan","nationality":"MGL","sex":"male","date_of_birth":"1984-12-03T00:00:00.000Z","height":1.84,"weight":125,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":136590128,"name":"Chun Hei Reginald Lee","nationality":"HKG","sex":"male","date_of_birth":"1994-01-25T00:00:00.000Z","height":1.7,"weight":72,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":160814814,"name":"Chun Hing Chan","nationality":"HKG","sex":"male","date_of_birth":"1981-04-24T00:00:00.000Z","height":1.7,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":546606814,"name":"Chun Leung Michael Cheng","nationality":"HKG","sex":"male","date_of_birth":"1994-04-30T00:00:00.000Z","height":1.82,"weight":74,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":890198247,"name":"Chun Ting Wong","nationality":"HKG","sex":"male","date_of_birth":"1991-09-07T00:00:00.000Z","height":1.7,"weight":70,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":932296367,"name":"Chun Wing Leung","nationality":"HKG","sex":"male","date_of_birth":"1994-01-20T00:00:00.000Z","height":1.76,"weight":73,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":361473378,"name":"Chun-Heng Wei","nationality":"TPE","sex":"male","date_of_birth":"1994-07-06T00:00:00.000Z","height":1.8,"weight":74,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":972398061,"name":"Chun-Hsien Hsiang","nationality":"TPE","sex":"male","date_of_birth":"1993-09-04T00:00:00.000Z","height":1.86,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":74882200,"name":"Chunsong Shang","nationality":"CHN","sex":"female","date_of_birth":"1996-03-18T00:00:00.000Z","height":1.43,"weight":34,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":184720791,"name":"Chunxin Wang","nationality":"CHN","sex":"male","date_of_birth":"1997-11-25T00:00:00.000Z","height":1.8,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":748411041,"name":"Chunyu Wang","nationality":"CHN","sex":"female","date_of_birth":"1995-01-17T00:00:00.000Z","height":1.75,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":434268598,"name":"Churandy Martina","nationality":"NED","sex":"male","date_of_birth":"1984-07-03T00:00:00.000Z","height":1.8,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":364006539,"name":"Ciara Everard","nationality":"IRL","sex":"female","date_of_birth":"1990-07-10T00:00:00.000Z","height":1.69,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":784773877,"name":"Ciara Horne","nationality":"GBR","sex":"female","date_of_birth":"1989-09-17T00:00:00.000Z","height":1.79,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":425071947,"name":"Ciara Mageean","nationality":"IRL","sex":"female","date_of_birth":"1992-03-12T00:00:00.000Z","height":1.7,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":786574595,"name":"Cierra Runge","nationality":"USA","sex":"female","date_of_birth":"1996-03-07T00:00:00.000Z","height":1.94,"weight":84,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":269551949,"name":"Cindy Billaud","nationality":"FRA","sex":"female","date_of_birth":"1986-03-11T00:00:00.000Z","height":1.67,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":808281174,"name":"Cindy Ofili","nationality":"GBR","sex":"female","date_of_birth":"1994-08-05T00:00:00.000Z","height":1.78,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":348165944,"name":"Cindy Roleder","nationality":"GER","sex":"female","date_of_birth":"1989-08-21T00:00:00.000Z","height":1.78,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":810690969,"name":"Ciril Grossklaus","nationality":"SUI","sex":"male","date_of_birth":"1991-04-17T00:00:00.000Z","height":1.85,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":768959560,"name":"Cisiane Lopes","nationality":"BRA","sex":"female","date_of_birth":"1983-02-17T00:00:00.000Z","height":1.59,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":848614623,"name":"Claire Allan","nationality":"GBR","sex":"female","date_of_birth":"1985-05-07T00:00:00.000Z","height":1.7,"weight":65,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":511358309,"name":"Claire Lambe","nationality":"IRL","sex":"female","date_of_birth":"1990-05-16T00:00:00.000Z","height":1.78,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":815034554,"name":"Claire Lavogez","nationality":"FRA","sex":"female","date_of_birth":"1994-06-18T00:00:00.000Z","height":1.73,"weight":63,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":516245173,"name":"Claire Michel","nationality":"BEL","sex":"female","date_of_birth":"1988-10-13T00:00:00.000Z","height":1.68,"weight":54,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":716197496,"name":"Clara Espar Llaquet","nationality":"ESP","sex":"female","date_of_birth":"1994-09-29T00:00:00.000Z","height":1.78,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":52347584,"name":"Clare Abbott","nationality":"IRL","sex":"female","date_of_birth":"1986-07-28T00:00:00.000Z","height":1.67,"weight":58,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":317879815,"name":"Clare Polkinghorne","nationality":"AUS","sex":"female","date_of_birth":"1989-02-01T00:00:00.000Z","height":1.73,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":805523212,"name":"Clarence Munyai","nationality":"RSA","sex":"male","date_of_birth":"1998-02-20T00:00:00.000Z","height":1.7,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":175558091,"name":"Claressa Maria Shields","nationality":"USA","sex":"female","date_of_birth":"1995-03-17T00:00:00.000Z","height":1.76,"weight":null,"sport":"boxing","gold":1,"silver":0,"bronze":0,"info":"Beating Russia's Nadezda Torlopova in the up to 75kg class at London 2012 made Claressa Shields the first American to win an Olympic boxing gold medal. She then won two world titles, in 2014 and 2016, and another gold at the 2015 Pan American Games."},{"id":161104873,"name":"Clarisa Sagardia","nationality":"ARG","sex":"female","date_of_birth":"1989-06-29T00:00:00.000Z","height":1.74,"weight":67,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":722629452,"name":"Clarissa Santos","nationality":"BRA","sex":"female","date_of_birth":"1988-03-10T00:00:00.000Z","height":1.83,"weight":89,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":610018581,"name":"Clarisse Agbegnenou","nationality":"FRA","sex":"female","date_of_birth":"1992-10-25T00:00:00.000Z","height":1.64,"weight":66,"sport":"judo","gold":0,"silver":1,"bronze":0,"info":null},{"id":989657937,"name":"Clarisse le Bihan","nationality":"FRA","sex":"female","date_of_birth":"1994-12-14T00:00:00.000Z","height":1.72,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":292197619,"name":"Clark Montgomery","nationality":"USA","sex":"male","date_of_birth":"1981-05-20T00:00:00.000Z","height":1.83,"weight":70,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":736895804,"name":"Clark Smith","nationality":"USA","sex":"male","date_of_birth":"1995-04-17T00:00:00.000Z","height":2.06,"weight":89,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":447342515,"name":"Clarke Johnstone","nationality":"NZL","sex":"male","date_of_birth":"1987-04-26T00:00:00.000Z","height":1.94,"weight":80,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":792920244,"name":"Claudette Mukasakindi","nationality":"RWA","sex":"female","date_of_birth":"1982-12-25T00:00:00.000Z","height":1.6,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":772469777,"name":"Claudia Belderbos","nationality":"NED","sex":"female","date_of_birth":"1985-01-23T00:00:00.000Z","height":1.75,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":425434912,"name":"Claudia Bobocea","nationality":"ROU","sex":"female","date_of_birth":"1992-06-11T00:00:00.000Z","height":1.76,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":950213745,"name":"Claudia Cesarini","nationality":"ITA","sex":"female","date_of_birth":"1986-08-04T00:00:00.000Z","height":1.77,"weight":60,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":351914680,"name":"Claudia Fragapane","nationality":"GBR","sex":"female","date_of_birth":"1997-10-24T00:00:00.000Z","height":1.37,"weight":43,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":262947031,"name":"Claudia Jaqueline Teles","nationality":"BRA","sex":"female","date_of_birth":"1992-01-02T00:00:00.000Z","height":1.66,"weight":57,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":130234491,"name":"Claudia Lau","nationality":"HKG","sex":"female","date_of_birth":"1992-11-11T00:00:00.000Z","height":1.6,"weight":53,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":695148064,"name":"Claudia Lichtenberg","nationality":"GER","sex":"female","date_of_birth":"1985-11-17T00:00:00.000Z","height":1.7,"weight":51,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":688060472,"name":"Claudia Mandia","nationality":"ITA","sex":"female","date_of_birth":"1992-10-21T00:00:00.000Z","height":1.7,"weight":74,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":132539493,"name":"Claudia Rath","nationality":"GER","sex":"female","date_of_birth":"1986-04-25T00:00:00.000Z","height":1.75,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":108261189,"name":"Claudia Rivas","nationality":"MEX","sex":"female","date_of_birth":"1989-06-15T00:00:00.000Z","height":1.71,"weight":56,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":462976229,"name":"Claudia Stef","nationality":"ROU","sex":"female","date_of_birth":"1978-02-25T00:00:00.000Z","height":1.7,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":286903708,"name":"Claudio Castilla Ruiz","nationality":"ESP","sex":"male","date_of_birth":"1983-05-30T00:00:00.000Z","height":1.73,"weight":66,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":222024929,"name":"Claudio Villanueva","nationality":"ECU","sex":"male","date_of_birth":"1988-08-03T00:00:00.000Z","height":1.75,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":952767996,"name":"Clayton Murphy","nationality":"USA","sex":"male","date_of_birth":"1995-02-26T00:00:00.000Z","height":1.81,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":692043872,"name":"Clelia Reuse-Rard","nationality":"SUI","sex":"female","date_of_birth":"1988-08-01T00:00:00.000Z","height":1.7,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":622017902,"name":"Clemens Doppler","nationality":"AUT","sex":"male","date_of_birth":"1980-09-06T00:00:00.000Z","height":1.99,"weight":85,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":469894756,"name":"Clemens Rapp","nationality":"GER","sex":"male","date_of_birth":"1989-07-14T00:00:00.000Z","height":1.93,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":112490441,"name":"Clement Mignon","nationality":"FRA","sex":"male","date_of_birth":"1993-01-21T00:00:00.000Z","height":1.87,"weight":75,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":212851704,"name":"Clemente Russo","nationality":"ITA","sex":"male","date_of_birth":"1982-07-27T00:00:00.000Z","height":1.81,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":526600784,"name":"Clemilda Fernandes Silva","nationality":"BRA","sex":"female","date_of_birth":"1979-06-25T00:00:00.000Z","height":1.63,"weight":54,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":406253452,"name":"Cleopatra Borel","nationality":"TTO","sex":"female","date_of_birth":"1979-03-10T00:00:00.000Z","height":1.72,"weight":89,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":62395737,"name":"Clive Pullen","nationality":"JAM","sex":"male","date_of_birth":"1994-10-18T00:00:00.000Z","height":1.83,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":81383299,"name":"Cloe Hache","nationality":"FRA","sex":"female","date_of_birth":"1997-12-11T00:00:00.000Z","height":1.71,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":687327234,"name":"Coco Vandeweghe","nationality":"USA","sex":"female","date_of_birth":"1991-12-06T00:00:00.000Z","height":1.86,"weight":70,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":710695405,"name":"Cody Miller","nationality":"USA","sex":"male","date_of_birth":"1992-01-09T00:00:00.000Z","height":1.81,"weight":79,"sport":"aquatics","gold":1,"silver":0,"bronze":1,"info":null},{"id":844245742,"name":"Coen de Koning","nationality":"NED","sex":"male","date_of_birth":"1983-04-05T00:00:00.000Z","height":1.83,"weight":74,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":663469791,"name":"Colin Cheng","nationality":"SIN","sex":"male","date_of_birth":"1989-09-10T00:00:00.000Z","height":1.75,"weight":80,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":232134278,"name":"Colin Fleming","nationality":"GBR","sex":"male","date_of_birth":"1984-08-13T00:00:00.000Z","height":1.88,"weight":78,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":702982870,"name":"Colin Oates","nationality":"GBR","sex":"male","date_of_birth":"1983-06-07T00:00:00.000Z","height":1.7,"weight":71,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":758562583,"name":"Colleen Furgeson","nationality":"MHL","sex":"female","date_of_birth":"1998-11-21T00:00:00.000Z","height":1.76,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":989356382,"name":"Colleen Loach","nationality":"CAN","sex":"female","date_of_birth":"1983-04-10T00:00:00.000Z","height":1.79,"weight":61,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":531594504,"name":"Colleen Quigley","nationality":"USA","sex":"female","date_of_birth":"1992-11-20T00:00:00.000Z","height":1.76,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":914233463,"name":"Collins Injera","nationality":"KEN","sex":"male","date_of_birth":"1986-10-18T00:00:00.000Z","height":1.82,"weight":90,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":13487026,"name":"Colton Brown","nationality":"USA","sex":"male","date_of_birth":"1991-10-08T00:00:00.000Z","height":1.83,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":600130363,"name":"Con Foley","nationality":"AUS","sex":"male","date_of_birth":"1992-09-19T00:00:00.000Z","height":1.88,"weight":90,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":891831765,"name":"Concepcion Montaner","nationality":"ESP","sex":"female","date_of_birth":"1981-01-14T00:00:00.000Z","height":1.7,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":6156543,"name":"Cong Zhang","nationality":"CHN","sex":"female","date_of_birth":"1990-05-03T00:00:00.000Z","height":1.76,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":669712048,"name":"Conlin McCABE","nationality":"CAN","sex":"male","date_of_birth":"1990-08-20T00:00:00.000Z","height":2.05,"weight":100,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":868434625,"name":"Connor Fields","nationality":"USA","sex":"male","date_of_birth":"1992-09-14T00:00:00.000Z","height":1.83,"weight":88,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":420887334,"name":"Connor Jaeger","nationality":"USA","sex":"male","date_of_birth":"1991-04-30T00:00:00.000Z","height":1.86,"weight":77,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":988931818,"name":"Conny Wassmuth","nationality":"GER","sex":"female","date_of_birth":"1983-04-13T00:00:00.000Z","height":1.67,"weight":64,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":453971347,"name":"Conor Dwyer","nationality":"USA","sex":"male","date_of_birth":"1989-01-10T00:00:00.000Z","height":1.96,"weight":88,"sport":"aquatics","gold":1,"silver":0,"bronze":1,"info":null},{"id":893225332,"name":"Conor Harte","nationality":"IRL","sex":"male","date_of_birth":"1988-04-03T00:00:00.000Z","height":1.96,"weight":93,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":579847713,"name":"Conor McCullough","nationality":"USA","sex":"male","date_of_birth":"1991-01-31T00:00:00.000Z","height":1.96,"weight":106,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":766006270,"name":"Conseslus Kipruto","nationality":"KEN","sex":"male","date_of_birth":"1994-12-08T00:00:00.000Z","height":1.67,"weight":58,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":752876946,"name":"Constantijn Jonker","nationality":"NED","sex":"male","date_of_birth":"1987-09-20T00:00:00.000Z","height":1.82,"weight":78,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":861389806,"name":"Constantin Adam","nationality":"ROU","sex":"male","date_of_birth":"1996-07-12T00:00:00.000Z","height":2.02,"weight":105,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":299370363,"name":"Constantin Blaha","nationality":"AUT","sex":"male","date_of_birth":"1987-12-01T00:00:00.000Z","height":1.78,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":779629172,"name":"Constantine Louloudis","nationality":"GBR","sex":"male","date_of_birth":"1991-09-15T00:00:00.000Z","height":1.9,"weight":92,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":606804046,"name":"Coralie Balmy","nationality":"FRA","sex":"female","date_of_birth":"1987-06-02T00:00:00.000Z","height":1.8,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":752996196,"name":"Corben Sharrah","nationality":"USA","sex":"male","date_of_birth":"1992-04-20T00:00:00.000Z","height":1.83,"weight":85,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":37278485,"name":"Corey Cogdell","nationality":"USA","sex":"female","date_of_birth":"1986-09-02T00:00:00.000Z","height":1.73,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":1,"info":null},{"id":473676473,"name":"Corey Main","nationality":"NZL","sex":"male","date_of_birth":"1995-02-27T00:00:00.000Z","height":1.92,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":362762819,"name":"Corey Ollivierre","nationality":"GRN","sex":"male","date_of_birth":"1997-03-16T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":267386705,"name":"Corina Caprioriu","nationality":"ROU","sex":"female","date_of_birth":"1986-07-18T00:00:00.000Z","height":1.61,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":83666929,"name":"Corinna Kuhnle","nationality":"AUT","sex":"female","date_of_birth":"1987-07-04T00:00:00.000Z","height":1.74,"weight":65,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":931635380,"name":"Costanza Ferro","nationality":"ITA","sex":"female","date_of_birth":"1993-07-05T00:00:00.000Z","height":1.69,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":567635337,"name":"Courtney Frerichs","nationality":"USA","sex":"female","date_of_birth":"1993-01-18T00:00:00.000Z","height":1.71,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":64284064,"name":"Courtney Hurley","nationality":"USA","sex":"female","date_of_birth":"1990-09-30T00:00:00.000Z","height":1.73,"weight":79,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":760942208,"name":"Courtney Mathewson","nationality":"USA","sex":"female","date_of_birth":"1986-09-14T00:00:00.000Z","height":1.71,"weight":69,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":495348801,"name":"Courtney McGregor","nationality":"NZL","sex":"female","date_of_birth":"1998-11-17T00:00:00.000Z","height":1.59,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":771725452,"name":"Courtney Okolo","nationality":"USA","sex":"female","date_of_birth":"1994-03-15T00:00:00.000Z","height":1.73,"weight":58,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":650068927,"name":"Courtney Thompson","nationality":"USA","sex":"female","date_of_birth":"1984-11-04T00:00:00.000Z","height":1.7,"weight":66,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":100145266,"name":"Craig Benson","nationality":"GBR","sex":"male","date_of_birth":"1994-04-30T00:00:00.000Z","height":1.83,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":135156587,"name":"Craig Miller","nationality":"NZL","sex":"male","date_of_birth":"1985-06-10T00:00:00.000Z","height":1.73,"weight":66,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":58627680,"name":"Crisanto Grajales","nationality":"MEX","sex":"male","date_of_birth":"1987-05-06T00:00:00.000Z","height":1.66,"weight":60,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":592844746,"name":"Crispin Duenas","nationality":"CAN","sex":"male","date_of_birth":"1986-01-05T00:00:00.000Z","height":1.7,"weight":81,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":710589299,"name":"Crista Cullen","nationality":"GBR","sex":"female","date_of_birth":"1985-08-20T00:00:00.000Z","height":1.82,"weight":74,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":662170808,"name":"Cristhian Pacheco","nationality":"PER","sex":"male","date_of_birth":"1993-05-26T00:00:00.000Z","height":1.62,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":227681295,"name":"Cristi-Ilie Pirghie","nationality":"ROU","sex":"male","date_of_birth":"1992-07-20T00:00:00.000Z","height":2.02,"weight":108,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":70420112,"name":"Cristian Bonilla","nationality":"COL","sex":"male","date_of_birth":"1993-06-02T00:00:00.000Z","height":1.88,"weight":85,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":243091497,"name":"Cristian Borja","nationality":"COL","sex":"male","date_of_birth":"1993-02-18T00:00:00.000Z","height":1.79,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":378249166,"name":"Cristian Espinoza","nationality":"ARG","sex":"male","date_of_birth":"1995-04-03T00:00:00.000Z","height":1.67,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":67716085,"name":"Cristian Pavon","nationality":"ARG","sex":"male","date_of_birth":"1996-01-21T00:00:00.000Z","height":1.72,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":781407492,"name":"Cristian Poglajen","nationality":"ARG","sex":"male","date_of_birth":"1989-07-14T00:00:00.000Z","height":1.95,"weight":94,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":367878750,"name":"Cristian Quintero","nationality":"VEN","sex":"male","date_of_birth":"1992-10-14T00:00:00.000Z","height":1.95,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":708503886,"name":"Cristian Toro","nationality":"ESP","sex":"male","date_of_birth":"1992-04-29T00:00:00.000Z","height":1.88,"weight":90,"sport":"canoe","gold":1,"silver":0,"bronze":0,"info":null},{"id":931912582,"name":"Cristiane","nationality":"BRA","sex":"female","date_of_birth":"1985-05-15T00:00:00.000Z","height":1.76,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":879488777,"name":"Cristiane Silva","nationality":"BRA","sex":"female","date_of_birth":"1988-04-04T00:00:00.000Z","height":1.62,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":999131085,"name":"Cristiano Felicio","nationality":"BRA","sex":"male","date_of_birth":"1992-07-07T00:00:00.000Z","height":2.08,"weight":125,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":900778069,"name":"Cristina Bujin","nationality":"ROU","sex":"female","date_of_birth":"1988-04-12T00:00:00.000Z","height":1.72,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":687865041,"name":"Cristina Chirichella","nationality":"ITA","sex":"female","date_of_birth":"1994-02-10T00:00:00.000Z","height":1.95,"weight":73,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":487060100,"name":"Cristina Direito Branco","nationality":"ANG","sex":"female","date_of_birth":"1985-03-15T00:00:00.000Z","height":1.72,"weight":68,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":733246969,"name":"Cristina Guinea","nationality":"ESP","sex":"female","date_of_birth":"1992-07-31T00:00:00.000Z","height":1.66,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":580737195,"name":"Cristina Neagu","nationality":"ROU","sex":"female","date_of_birth":"1988-08-26T00:00:00.000Z","height":1.8,"weight":69,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":788552666,"name":"Cristina Sheehan","nationality":"AUS","sex":"female","date_of_birth":"1998-09-26T00:00:00.000Z","height":1.63,"weight":49,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":301673145,"name":"Cristobal Grez Ahrens","nationality":"CHI","sex":"male","date_of_birth":"1987-12-17T00:00:00.000Z","height":1.79,"weight":81,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":611619985,"name":"Cristopher Joel Pavon Funes","nationality":"HON","sex":"male","date_of_birth":"1993-04-18T00:00:00.000Z","height":1.73,"weight":93,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":564187866,"name":"Cristy Nurse","nationality":"CAN","sex":"female","date_of_birth":"1986-12-05T00:00:00.000Z","height":1.82,"weight":74,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":607270987,"name":"Crystal Brittany Weekes","nationality":"PUR","sex":"female","date_of_birth":"1998-01-14T00:00:00.000Z","height":1.78,"weight":73,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":343383925,"name":"Crystal Dunn","nationality":"USA","sex":"female","date_of_birth":"1992-07-03T00:00:00.000Z","height":1.57,"weight":54,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":242394914,"name":"Crystal Emmanuel","nationality":"CAN","sex":"female","date_of_birth":"1991-11-27T00:00:00.000Z","height":1.7,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":679997450,"name":"Cuthbert Nyasango","nationality":"ZIM","sex":"male","date_of_birth":"1982-09-17T00:00:00.000Z","height":1.63,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":492543946,"name":"Cy Thompson","nationality":"ISV","sex":"male","date_of_birth":"1988-07-01T00:00:00.000Z","height":null,"weight":null,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":377141753,"name":"Cynthia Bolingo","nationality":"BEL","sex":"female","date_of_birth":"1993-01-12T00:00:00.000Z","height":1.65,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":778561493,"name":"Cynthia Meyer","nationality":"CAN","sex":"female","date_of_birth":"1965-10-06T00:00:00.000Z","height":1.63,"weight":51,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":354553687,"name":"Cynthia Vanessa Vescan","nationality":"FRA","sex":"female","date_of_birth":"1992-02-07T00:00:00.000Z","height":1.7,"weight":74,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":884034589,"name":"Cyril Graff","nationality":"FRA","sex":"male","date_of_birth":"1980-09-11T00:00:00.000Z","height":1.7,"weight":64,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":733143674,"name":"Cyril Tommasone","nationality":"FRA","sex":"male","date_of_birth":"1987-07-04T00:00:00.000Z","height":1.71,"weight":62,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":13038806,"name":"Cyrille Carre","nationality":"FRA","sex":"male","date_of_birth":"1984-04-11T00:00:00.000Z","height":1.84,"weight":75,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":243473518,"name":"Cyrille Maret","nationality":"FRA","sex":"male","date_of_birth":"1987-08-11T00:00:00.000Z","height":1.89,"weight":108,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":601293149,"name":"Cyrille Thiery","nationality":"SUI","sex":"male","date_of_birth":"1990-09-27T00:00:00.000Z","height":1.79,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":77303549,"name":"Cyrus Hostetler","nationality":"USA","sex":"male","date_of_birth":"1986-08-08T00:00:00.000Z","height":1.88,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":697656751,"name":"Céline van Gerner","nationality":"NED","sex":"female","date_of_birth":"1994-12-01T00:00:00.000Z","height":1.58,"weight":51,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":781080188,"name":"D J Forbes","nationality":"NZL","sex":"male","date_of_birth":"1982-12-15T00:00:00.000Z","height":1.89,"weight":103,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":12021988,"name":"Daehoon Lee","nationality":"KOR","sex":"male","date_of_birth":"1992-02-05T00:00:00.000Z","height":1.83,"weight":70,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":392205384,"name":"Daemyung Lee","nationality":"KOR","sex":"male","date_of_birth":"1988-09-14T00:00:00.000Z","height":1.82,"weight":78,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":83363661,"name":"Dafne Schippers","nationality":"NED","sex":"female","date_of_birth":"1992-06-15T00:00:00.000Z","height":1.79,"weight":70,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":128148287,"name":"Dagmara Wozniak","nationality":"USA","sex":"female","date_of_birth":"1988-07-01T00:00:00.000Z","height":1.73,"weight":81,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":667178764,"name":"Dagnis Iljins","nationality":"LAT","sex":"male","date_of_birth":"1992-08-20T00:00:00.000Z","height":1.78,"weight":82,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":102532767,"name":"Daichi Sawano","nationality":"JPN","sex":"male","date_of_birth":"1980-09-16T00:00:00.000Z","height":1.83,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":519978075,"name":"Daichi Sugimoto","nationality":"JPN","sex":"male","date_of_birth":"1993-07-15T00:00:00.000Z","height":1.86,"weight":79,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":679515187,"name":"Daiene Marcal","nationality":"BRA","sex":"female","date_of_birth":"1989-05-16T00:00:00.000Z","height":1.59,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":212523902,"name":"Daigo Hasegawa","nationality":"JPN","sex":"male","date_of_birth":"1990-02-27T00:00:00.000Z","height":1.73,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":567351741,"name":"Daigoro Timoncini","nationality":"ITA","sex":"male","date_of_birth":"1985-12-13T00:00:00.000Z","height":1.8,"weight":98,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":836156960,"name":"Dailin Belmonte","nationality":"CUB","sex":"female","date_of_birth":"1985-10-15T00:00:00.000Z","height":1.58,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":648027000,"name":"Daina Levy","nationality":"JAM","sex":"female","date_of_birth":"1993-05-27T00:00:00.000Z","height":1.65,"weight":98,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":100107881,"name":"Dainis Upelnieks","nationality":"LAT","sex":"male","date_of_birth":"1982-10-01T00:00:00.000Z","height":1.93,"weight":103,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":268106399,"name":"Daisuke Fukushima","nationality":"JPN","sex":"male","date_of_birth":"1977-09-20T00:00:00.000Z","height":1.78,"weight":68,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":46762119,"name":"Daisuke Matsunaga","nationality":"JPN","sex":"male","date_of_birth":"1995-03-24T00:00:00.000Z","height":1.74,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":429516855,"name":"Daisuke Narimatsu","nationality":"JPN","sex":"male","date_of_birth":"1989-12-14T00:00:00.000Z","height":1.72,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":798836985,"name":"Daisurami Bonne","nationality":"CUB","sex":"female","date_of_birth":"1988-03-09T00:00:00.000Z","height":1.71,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":989560488,"name":"Daisy Cleverley","nationality":"NZL","sex":"female","date_of_birth":"1997-04-30T00:00:00.000Z","height":1.7,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":693678730,"name":"Daisy Kaitano","nationality":"ZIM","sex":"female","date_of_birth":"1993-09-20T00:00:00.000Z","height":1.71,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":242973427,"name":"Daiva Tuslaite","nationality":"LTU","sex":"female","date_of_birth":"1986-06-18T00:00:00.000Z","height":1.72,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":192954208,"name":"Daiya Seto","nationality":"JPN","sex":"male","date_of_birth":"1994-05-24T00:00:00.000Z","height":1.74,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":902505168,"name":"Dajana Butulija","nationality":"SRB","sex":"female","date_of_birth":"1986-02-23T00:00:00.000Z","height":1.75,"weight":65,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":205886057,"name":"Dalal Mesfer Al Harith","nationality":"QAT","sex":"female","date_of_birth":"1999-11-28T00:00:00.000Z","height":1.6,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":576218781,"name":"Dalia Torrez","nationality":"NCA","sex":"female","date_of_birth":"1990-03-29T00:00:00.000Z","height":1.74,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":441998277,"name":"Dalila Abdulkadir","nationality":"BRN","sex":"female","date_of_birth":"1998-06-27T00:00:00.000Z","height":1.56,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":209724463,"name":"Dalilah Muhammad","nationality":"USA","sex":"female","date_of_birth":"1990-02-07T00:00:00.000Z","height":1.73,"weight":55,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":360953664,"name":"Dalma Ruzicic Benedek","nationality":"SRB","sex":"female","date_of_birth":"1982-02-21T00:00:00.000Z","height":1.65,"weight":65,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":381413110,"name":"Dalma Sebestyen","nationality":"HUN","sex":"female","date_of_birth":"1997-01-23T00:00:00.000Z","height":1.8,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":975197213,"name":"Daly Santana","nationality":"PUR","sex":"female","date_of_birth":"1995-02-19T00:00:00.000Z","height":1.85,"weight":65,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":610645827,"name":"Damar Forbes","nationality":"JAM","sex":"male","date_of_birth":"1990-09-11T00:00:00.000Z","height":1.88,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":785182328,"name":"Damian Czykier","nationality":"POL","sex":"male","date_of_birth":"1992-08-10T00:00:00.000Z","height":1.91,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":969246730,"name":"Damian Martin","nationality":"AUS","sex":"male","date_of_birth":"1984-09-05T00:00:00.000Z","height":1.86,"weight":90,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":445781696,"name":"Damian Warner","nationality":"CAN","sex":"male","date_of_birth":"1989-11-04T00:00:00.000Z","height":1.85,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":227000230,"name":"Damian Wierling","nationality":"GER","sex":"male","date_of_birth":"1996-02-13T00:00:00.000Z","height":1.96,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":112793044,"name":"Damian Zielinski","nationality":"POL","sex":"male","date_of_birth":"1981-12-02T00:00:00.000Z","height":1.85,"weight":92,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":315107389,"name":"Damiano Caruso","nationality":"ITA","sex":"male","date_of_birth":"1987-10-12T00:00:00.000Z","height":1.79,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":4074919,"name":"Damien Birkinhead","nationality":"AUS","sex":"male","date_of_birth":"1993-04-08T00:00:00.000Z","height":1.9,"weight":140,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":642505944,"name":"Damien Cler","nationality":"FRA","sex":"male","date_of_birth":"1983-10-02T00:00:00.000Z","height":1.85,"weight":95,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":534791286,"name":"Damien Joly","nationality":"FRA","sex":"male","date_of_birth":"1992-06-04T00:00:00.000Z","height":1.89,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":486111896,"name":"Damir Buric","nationality":"CRO","sex":"male","date_of_birth":"1980-12-02T00:00:00.000Z","height":2.05,"weight":115,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":675408199,"name":"Damir Dugonjic","nationality":"SLO","sex":"male","date_of_birth":"1988-02-21T00:00:00.000Z","height":2.02,"weight":105,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":901528927,"name":"Damir Dzumhur","nationality":"BIH","sex":"male","date_of_birth":"1992-05-20T00:00:00.000Z","height":1.75,"weight":65,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":971510831,"name":"Damir Martin","nationality":"CRO","sex":"male","date_of_birth":"1988-07-14T00:00:00.000Z","height":1.89,"weight":97,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":594844632,"name":"Damir Mikec","nationality":"SRB","sex":"male","date_of_birth":"1984-03-31T00:00:00.000Z","height":1.79,"weight":79,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":546700394,"name":"Damiris Dantas","nationality":"BRA","sex":"female","date_of_birth":"1992-11-17T00:00:00.000Z","height":1.9,"weight":80,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":751391017,"name":"Dan Bibby","nationality":"GBR","sex":"male","date_of_birth":"1991-02-06T00:00:00.000Z","height":1.76,"weight":86,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":715044035,"name":"Dan Craven","nationality":"NAM","sex":"male","date_of_birth":"1983-02-01T00:00:00.000Z","height":1.83,"weight":76,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":619597624,"name":"Dan Froyliche","nationality":"ISR","sex":"male","date_of_birth":"1992-11-18T00:00:00.000Z","height":1.82,"weight":73,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":614482218,"name":"Dan Li","nationality":"CHN","sex":"female","date_of_birth":"1988-09-18T00:00:00.000Z","height":1.55,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":"The current world champion in the individual, synchronised and team trampoline gymnastics, China's Li Dan returned to the top of the podium in the individual event five years after her first title in 2010."},{"id":96353968,"name":"Dan Lin","nationality":"CHN","sex":"male","date_of_birth":"1983-10-14T00:00:00.000Z","height":1.77,"weight":70,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":"Considered by most to be the best badminton player on the planet, China's Lin Dan won gold at the Olympic Games in Beijing 2008 and London 2012. He also holds five singles world titles."},{"id":721862825,"name":"Dan Norton","nationality":"GBR","sex":"male","date_of_birth":"1988-03-22T00:00:00.000Z","height":1.8,"weight":85,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":765792716,"name":"Dan Wallace","nationality":"GBR","sex":"male","date_of_birth":"1993-04-14T00:00:00.000Z","height":1.88,"weight":80,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":134936135,"name":"Dana Veldakova","nationality":"SVK","sex":"female","date_of_birth":"1981-06-03T00:00:00.000Z","height":1.79,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":622909202,"name":"Dana Vollmer","nationality":"USA","sex":"female","date_of_birth":"1987-11-13T00:00:00.000Z","height":1.86,"weight":68,"sport":"aquatics","gold":1,"silver":1,"bronze":1,"info":null},{"id":55407824,"name":"Danai Bhobho","nationality":"ZIM","sex":"female","date_of_birth":"1992-12-01T00:00:00.000Z","height":1.63,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":211024970,"name":"Danas Rapsys","nationality":"LTU","sex":"male","date_of_birth":"1995-05-21T00:00:00.000Z","height":1.9,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":665814461,"name":"Dane Bird-Smith","nationality":"AUS","sex":"male","date_of_birth":"1992-07-15T00:00:00.000Z","height":1.87,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":772450203,"name":"Dane Sampson","nationality":"AUS","sex":"male","date_of_birth":"1986-08-20T00:00:00.000Z","height":1.83,"weight":89,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":453079347,"name":"Daneja Grandovec","nationality":"SLO","sex":"female","date_of_birth":"1984-07-02T00:00:00.000Z","height":1.75,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":527822094,"name":"Danell Leyva","nationality":"USA","sex":"male","date_of_birth":"1991-10-30T00:00:00.000Z","height":1.73,"weight":72,"sport":"gymnastics","gold":0,"silver":2,"bronze":0,"info":null},{"id":218424864,"name":"Dani Samuels","nationality":"AUS","sex":"female","date_of_birth":"1988-05-26T00:00:00.000Z","height":1.82,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":119961114,"name":"Daniah Hagul","nationality":"LBA","sex":"female","date_of_birth":"1999-02-07T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":585194205,"name":"Danick Snelder","nationality":"NED","sex":"female","date_of_birth":"1990-05-22T00:00:00.000Z","height":1.78,"weight":75,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":161929163,"name":"Daniel Akpeyi","nationality":"NGR","sex":"male","date_of_birth":"1986-03-08T00:00:00.000Z","height":1.87,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":579693569,"name":"Daniel Allerstorfer","nationality":"AUT","sex":"male","date_of_birth":"1992-12-04T00:00:00.000Z","height":1.83,"weight":130,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":574774102,"name":"Daniel Andujar","nationality":"ESP","sex":"male","date_of_birth":"1994-05-14T00:00:00.000Z","height":1.82,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":2865880,"name":"Daniel Asenov","nationality":"BUL","sex":"male","date_of_birth":"1997-05-17T00:00:00.000Z","height":1.63,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":183503173,"name":"Daniel Bailey","nationality":"ANT","sex":"male","date_of_birth":"1986-09-09T00:00:00.000Z","height":1.79,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":189421989,"name":"Daniel Beale","nationality":"AUS","sex":"male","date_of_birth":"1993-02-12T00:00:00.000Z","height":1.84,"weight":74,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":568936910,"name":"Daniel Bluman","nationality":"COL","sex":"male","date_of_birth":"1990-03-15T00:00:00.000Z","height":1.82,"weight":72,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":442179948,"name":"Daniel Bowker","nationality":"AUS","sex":"male","date_of_birth":"1987-09-21T00:00:00.000Z","height":1.91,"weight":89,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":719186892,"name":"Daniel Brodmeier","nationality":"GER","sex":"male","date_of_birth":"1987-09-02T00:00:00.000Z","height":1.8,"weight":100,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":436335387,"name":"Daniel Cornelius Jansen Vandoorn","nationality":"CAN","sex":"male","date_of_birth":"1990-03-21T00:00:00.000Z","height":2.07,"weight":98,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":719022816,"name":"Daniel Corral","nationality":"MEX","sex":"male","date_of_birth":"1990-01-25T00:00:00.000Z","height":1.75,"weight":64,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":10083714,"name":"Daniel Dal Bo","nationality":"ARG","sex":"male","date_of_birth":"1987-09-08T00:00:00.000Z","height":1.85,"weight":78,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":16964420,"name":"Daniel Deusser","nationality":"GER","sex":"male","date_of_birth":"1981-08-13T00:00:00.000Z","height":1.9,"weight":76,"sport":"equestrian","gold":0,"silver":0,"bronze":1,"info":null},{"id":93209165,"name":"Daniel Diaz","nationality":"ARG","sex":"male","date_of_birth":"1989-07-07T00:00:00.000Z","height":1.68,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":254552114,"name":"Daniel Estrada","nationality":"CHI","sex":"male","date_of_birth":"1990-02-27T00:00:00.000Z","height":1.73,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":258029864,"name":"Daniel Flores","nationality":"VEN","sex":"male","date_of_birth":"1981-10-17T00:00:00.000Z","height":1.8,"weight":73,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":55281398,"name":"Daniel Fox","nationality":"GBR","sex":"male","date_of_birth":"1983-03-03T00:00:00.000Z","height":1.83,"weight":78,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":387284782,"name":"Daniel Gomez","nationality":"MEX","sex":"male","date_of_birth":"1990-05-06T00:00:00.000Z","height":1.78,"weight":78,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":542045752,"name":"Daniel Goodfellow","nationality":"GBR","sex":"male","date_of_birth":"1996-10-19T00:00:00.000Z","height":1.67,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":140752728,"name":"Daniel Gorak","nationality":"POL","sex":"male","date_of_birth":"1983-10-09T00:00:00.000Z","height":1.78,"weight":77,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":654450748,"name":"Daniel Gyurta","nationality":"HUN","sex":"male","date_of_birth":"1989-05-04T00:00:00.000Z","height":1.85,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":582252675,"name":"Daniel Habesohn","nationality":"AUT","sex":"male","date_of_birth":"1986-07-22T00:00:00.000Z","height":1.85,"weight":78,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":270915290,"name":"Daniel Havel","nationality":"CZE","sex":"male","date_of_birth":"1991-08-10T00:00:00.000Z","height":1.78,"weight":79,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":988381105,"name":"Daniel Jasinski","nationality":"GER","sex":"male","date_of_birth":"1989-08-05T00:00:00.000Z","height":2.07,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":738563409,"name":"Daniel Jason Lewis","nationality":"AUS","sex":"male","date_of_birth":"1993-12-18T00:00:00.000Z","height":1.78,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":642681406,"name":"Daniel Jerent","nationality":"FRA","sex":"male","date_of_birth":"1991-06-04T00:00:00.000Z","height":1.89,"weight":84,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":679369077,"name":"Daniel Ligeti","nationality":"HUN","sex":"male","date_of_birth":"1989-07-31T00:00:00.000Z","height":1.9,"weight":117,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":686181990,"name":"Daniel Lopez Pinedo","nationality":"ESP","sex":"male","date_of_birth":"1980-07-16T00:00:00.000Z","height":1.9,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":337337344,"name":"Daniel Lowe","nationality":"USA","sex":"male","date_of_birth":"1992-11-18T00:00:00.000Z","height":1.83,"weight":81,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":173884124,"name":"Daniel Macovei","nationality":"ROU","sex":"male","date_of_birth":"1992-09-15T00:00:00.000Z","height":1.85,"weight":71,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":635773855,"name":"Daniel Martin","nationality":"IRL","sex":"male","date_of_birth":"1986-08-20T00:00:00.000Z","height":1.76,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":108357874,"name":"Daniel McConnell","nationality":"AUS","sex":"male","date_of_birth":"1985-08-09T00:00:00.000Z","height":1.8,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":702422699,"name":"Daniel Narcisse","nationality":"FRA","sex":"male","date_of_birth":"1979-12-16T00:00:00.000Z","height":1.89,"weight":93,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":306635640,"name":"Daniel Natea","nationality":"ROU","sex":"male","date_of_birth":"1992-04-21T00:00:00.000Z","height":2.03,"weight":170,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":747184552,"name":"Daniel Nestor","nationality":"CAN","sex":"male","date_of_birth":"1972-09-04T00:00:00.000Z","height":1.91,"weight":87,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":287487601,"name":"Daniel Paul Dennis","nationality":"USA","sex":"male","date_of_birth":"1986-09-24T00:00:00.000Z","height":1.66,"weight":56,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":12736710,"name":"Daniel Repacholi","nationality":"AUS","sex":"male","date_of_birth":"1982-05-15T00:00:00.000Z","height":2.02,"weight":128,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":469677612,"name":"Daniel Rezende Xavier","nationality":"BRA","sex":"male","date_of_birth":"1982-08-31T00:00:00.000Z","height":1.91,"weight":81,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":165866962,"name":"Daniel Sancery","nationality":"BRA","sex":"male","date_of_birth":"1994-05-27T00:00:00.000Z","height":1.82,"weight":90,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":10072667,"name":"Daniel Shingles","nationality":"GBR","sex":"male","date_of_birth":"1986-07-05T00:00:00.000Z","height":1.84,"weight":84,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":149524585,"name":"Daniel Skaaning","nationality":"DEN","sex":"male","date_of_birth":"1993-06-22T00:00:00.000Z","height":1.8,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":463354597,"name":"Daniel Smith","nationality":"AUS","sex":"male","date_of_birth":"1991-05-28T00:00:00.000Z","height":1.9,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":285374253,"name":"Daniel Stahl","nationality":"SWE","sex":"male","date_of_birth":"1992-08-27T00:00:00.000Z","height":2,"weight":155,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":937921024,"name":"Daniel Talbot","nationality":"GBR","sex":"male","date_of_birth":"1991-05-01T00:00:00.000Z","height":1.84,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":815557568,"name":"Daniel Teklehaimanot","nationality":"ERI","sex":"male","date_of_birth":"1988-11-10T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":689191404,"name":"Daniel Tihomirov Aleksandrov","nationality":"BUL","sex":"male","date_of_birth":"1991-09-13T00:00:00.000Z","height":1.82,"weight":81,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":278950598,"name":"Daniel Trojanowski","nationality":"POL","sex":"male","date_of_birth":"1982-07-24T00:00:00.000Z","height":1.7,"weight":55,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":797414950,"name":"Daniel Varga","nationality":"HUN","sex":"male","date_of_birth":"1983-09-25T00:00:00.000Z","height":2.01,"weight":96,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":"Gold at Beijing 2008, Dániel Varga was the world champion in 2013 and runner-up twice, at Montreal 2005 and Melbourne 2007. In 2016, he won the bronze medal at the European championship."},{"id":275083561,"name":"Daniel Vargas","nationality":"MEX","sex":"male","date_of_birth":"1986-09-01T00:00:00.000Z","height":1.97,"weight":94,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":986523075,"name":"Daniel Vargas","nationality":"MEX","sex":"male","date_of_birth":"1984-03-06T00:00:00.000Z","height":1.62,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":317345417,"name":"Daniel Wiederkehr","nationality":"SUI","sex":"male","date_of_birth":"1989-05-15T00:00:00.000Z","height":1.83,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":493335766,"name":"Daniel Willcox","nationality":"NZL","sex":"male","date_of_birth":"1990-06-08T00:00:00.000Z","height":1.79,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":490419163,"name":"Daniela Campuzano Chavez Peon","nationality":"MEX","sex":"female","date_of_birth":"1986-10-21T00:00:00.000Z","height":1.73,"weight":56,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":111341393,"name":"Daniela Cardoso","nationality":"POR","sex":"female","date_of_birth":"1991-12-15T00:00:00.000Z","height":1.57,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":893449687,"name":"Daniela Carlan","nationality":"ROU","sex":"female","date_of_birth":"1980-09-18T00:00:00.000Z","height":1.64,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":735809811,"name":"Daniela Druncea","nationality":"ROU","sex":"female","date_of_birth":"1990-11-02T00:00:00.000Z","height":1.5,"weight":50,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":540393824,"name":"Daniela Ferenz","nationality":"GER","sex":"female","date_of_birth":"1990-08-03T00:00:00.000Z","height":1.71,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":466134584,"name":"Daniela Matarazzo Carraro","nationality":"BRA","sex":"female","date_of_birth":"1985-03-25T00:00:00.000Z","height":1.65,"weight":67,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":793252386,"name":"Daniela Monteiro Dodean","nationality":"ROU","sex":"female","date_of_birth":"1988-01-13T00:00:00.000Z","height":1.7,"weight":55,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":816970958,"name":"Daniela Piedade","nationality":"BRA","sex":"female","date_of_birth":"1979-03-02T00:00:00.000Z","height":1.74,"weight":70,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":215890909,"name":"Daniela Potapova","nationality":"GER","sex":"female","date_of_birth":"1996-01-17T00:00:00.000Z","height":1.66,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":783504559,"name":"Daniele Garozzo","nationality":"ITA","sex":"male","date_of_birth":"1992-08-04T00:00:00.000Z","height":1.77,"weight":65,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":821159021,"name":"Daniele Hypolito","nationality":"BRA","sex":"female","date_of_birth":"1984-09-08T00:00:00.000Z","height":1.47,"weight":40,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":438701799,"name":"Daniele Lupo","nationality":"ITA","sex":"male","date_of_birth":"1991-05-06T00:00:00.000Z","height":1.93,"weight":83,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":590118305,"name":"Daniele Meucci","nationality":"ITA","sex":"male","date_of_birth":"1985-10-07T00:00:00.000Z","height":1.78,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":207450764,"name":"Danielle Kettlewell","nationality":"AUS","sex":"female","date_of_birth":"1992-11-17T00:00:00.000Z","height":1.75,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":699029368,"name":"Danielle Lins","nationality":"BRA","sex":"female","date_of_birth":"1985-01-05T00:00:00.000Z","height":1.83,"weight":71,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":534901017,"name":"Danielle Page","nationality":"SRB","sex":"female","date_of_birth":"1986-11-14T00:00:00.000Z","height":1.88,"weight":77,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":193943106,"name":"Danielle Prince","nationality":"AUS","sex":"female","date_of_birth":"1992-06-12T00:00:00.000Z","height":1.66,"weight":52,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":426724791,"name":"Danielle Suzanne Lappage","nationality":"CAN","sex":"female","date_of_birth":"1990-09-24T00:00:00.000Z","height":1.65,"weight":63,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":554312456,"name":"Danielle Villars","nationality":"SUI","sex":"female","date_of_birth":"1993-03-06T00:00:00.000Z","height":1.78,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":655184576,"name":"Danielle Waterman","nationality":"GBR","sex":"female","date_of_birth":"1985-01-20T00:00:00.000Z","height":1.65,"weight":64,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":726533168,"name":"Daniil Pakhomov","nationality":"RUS","sex":"male","date_of_birth":"1998-08-05T00:00:00.000Z","height":1.89,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":932783327,"name":"Danijel Furtula","nationality":"MNE","sex":"male","date_of_birth":"1992-07-31T00:00:00.000Z","height":1.93,"weight":118,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":761545111,"name":"Danijel Saric","nationality":"QAT","sex":"male","date_of_birth":"1977-06-27T00:00:00.000Z","height":1.95,"weight":92,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":153868407,"name":"Danila Izotov","nationality":"RUS","sex":"male","date_of_birth":"1991-10-02T00:00:00.000Z","height":1.92,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":937365507,"name":"Danilo Caro Guarnieri","nationality":"COL","sex":"male","date_of_birth":"1965-09-06T00:00:00.000Z","height":1.7,"weight":58,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":782501864,"name":"Danish Mujtaba","nationality":"IND","sex":"male","date_of_birth":"1988-12-20T00:00:00.000Z","height":1.68,"weight":66,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":128511976,"name":"Daniyar Ismayilov","nationality":"TUR","sex":"male","date_of_birth":"1992-02-03T00:00:00.000Z","height":1.73,"weight":69,"sport":"weightlifting","gold":0,"silver":1,"bronze":0,"info":null},{"id":76405574,"name":"Daniyar Yeleussinov","nationality":"KAZ","sex":"male","date_of_birth":"1991-03-13T00:00:00.000Z","height":1.78,"weight":null,"sport":"boxing","gold":1,"silver":0,"bronze":0,"info":null},{"id":692417877,"name":"Danka Bartekova","nationality":"SVK","sex":"female","date_of_birth":"1984-10-19T00:00:00.000Z","height":1.7,"weight":55,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":787754025,"name":"Danka Kovinic","nationality":"MNE","sex":"female","date_of_birth":"1994-11-18T00:00:00.000Z","height":1.7,"weight":67,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":828679930,"name":"Dannie Boyd","nationality":"CAN","sex":"female","date_of_birth":"1990-05-23T00:00:00.000Z","height":1.78,"weight":71,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":101678493,"name":"Danniel Thomas","nationality":"JAM","sex":"female","date_of_birth":"1992-11-11T00:00:00.000Z","height":1.68,"weight":91,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":502713645,"name":"Danny Barrett","nationality":"USA","sex":"male","date_of_birth":"1990-03-23T00:00:00.000Z","height":1.88,"weight":102,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":210284579,"name":"Danny Chia","nationality":"MAS","sex":"male","date_of_birth":"1972-11-29T00:00:00.000Z","height":1.7,"weight":75,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":540892576,"name":"Danny Lee","nationality":"NZL","sex":"male","date_of_birth":"1990-07-24T00:00:00.000Z","height":1.8,"weight":79,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":879435329,"name":"Danny Pinheiro Rodrigues","nationality":"FRA","sex":"male","date_of_birth":"1985-04-16T00:00:00.000Z","height":1.61,"weight":57,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":12537963,"name":"Danny Willett","nationality":"GBR","sex":"male","date_of_birth":"1987-10-03T00:00:00.000Z","height":1.8,"weight":79,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":552666305,"name":"Danuta Kozak","nationality":"HUN","sex":"female","date_of_birth":"1987-01-11T00:00:00.000Z","height":1.68,"weight":63,"sport":"canoe","gold":3,"silver":0,"bronze":0,"info":"Eleven-time world champion Danuta Kozák won two golds in canoe sprints at London 2012: one for the individual K-1 500m event and the other as part of the Hungary team in the K-4 500m, an event in which she won silver at Beijing 2008."},{"id":221668114,"name":"Danuta Urbanik","nationality":"POL","sex":"female","date_of_birth":"1989-12-24T00:00:00.000Z","height":1.67,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":729797574,"name":"Dapeng Wang","nationality":"CHN","sex":"male","date_of_birth":"1996-12-03T00:00:00.000Z","height":1.84,"weight":95,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":828313980,"name":"Dara Hassanien","nationality":"EGY","sex":"female","date_of_birth":"1996-04-01T00:00:00.000Z","height":1.69,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":479014574,"name":"Darcina Manuel","nationality":"NZL","sex":"female","date_of_birth":"1992-09-24T00:00:00.000Z","height":1.62,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":490330541,"name":"Daria Chikunova","nationality":"RUS","sex":"female","date_of_birth":"1999-04-12T00:00:00.000Z","height":1.77,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":358425644,"name":"Daria Dmitrieva","nationality":"RUS","sex":"female","date_of_birth":"1995-08-09T00:00:00.000Z","height":1.78,"weight":74,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":592811889,"name":"Daria Gavrilova","nationality":"AUS","sex":"female","date_of_birth":"1994-03-05T00:00:00.000Z","height":1.66,"weight":61,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":971063935,"name":"Daria Iushko","nationality":"UKR","sex":"female","date_of_birth":"1985-02-05T00:00:00.000Z","height":1.74,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":918679234,"name":"Daria Kasatkina","nationality":"RUS","sex":"female","date_of_birth":"1997-05-07T00:00:00.000Z","height":1.7,"weight":62,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":976263519,"name":"Daria Malygina","nationality":"RUS","sex":"female","date_of_birth":"1994-04-04T00:00:00.000Z","height":2.02,"weight":82,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":201671999,"name":"Daria Mullakaeva","nationality":"RUS","sex":"female","date_of_birth":"1998-06-18T00:00:00.000Z","height":1.72,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":183631297,"name":"Daria Pikulik","nationality":"POL","sex":"female","date_of_birth":"1997-01-06T00:00:00.000Z","height":1.65,"weight":54,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":981886723,"name":"Daria Pogorzelec","nationality":"POL","sex":"female","date_of_birth":"1990-07-20T00:00:00.000Z","height":1.72,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":399441834,"name":"Daria Shmeleva","nationality":"RUS","sex":"female","date_of_birth":"1994-10-26T00:00:00.000Z","height":1.64,"weight":64,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":809722266,"name":"Daria Spiridonova","nationality":"RUS","sex":"female","date_of_birth":"1998-07-08T00:00:00.000Z","height":1.56,"weight":45,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":null},{"id":345015361,"name":"Daria Talanova","nationality":"KGZ","sex":"female","date_of_birth":"1995-12-08T00:00:00.000Z","height":1.68,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":967665587,"name":"Daria Ustinova","nationality":"RUS","sex":"female","date_of_birth":"1998-08-29T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":991531099,"name":"Daria Vdovina","nationality":"RUS","sex":"female","date_of_birth":"1989-12-15T00:00:00.000Z","height":1.56,"weight":49,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":881563866,"name":"Darian King","nationality":"BAR","sex":"male","date_of_birth":"1992-04-26T00:00:00.000Z","height":1.72,"weight":70,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":375255529,"name":"Darienn Ferrer Delis","nationality":"CUB","sex":"male","date_of_birth":"1982-10-31T00:00:00.000Z","height":2.02,"weight":90,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":977866181,"name":"Dariga Shakimova","nationality":"KAZ","sex":"female","date_of_birth":"1988-11-20T00:00:00.000Z","height":1.72,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":408213856,"name":"Dario Saric","nationality":"CRO","sex":"male","date_of_birth":"1994-04-08T00:00:00.000Z","height":2.07,"weight":110,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":113247488,"name":"Dariusz Radosz","nationality":"POL","sex":"male","date_of_birth":"1986-08-13T00:00:00.000Z","height":1.99,"weight":91,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":878416762,"name":"Dariya Derkach","nationality":"ITA","sex":"female","date_of_birth":"1993-03-27T00:00:00.000Z","height":1.7,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":689516934,"name":"Darko Brguljan","nationality":"MNE","sex":"male","date_of_birth":"1990-11-05T00:00:00.000Z","height":1.8,"weight":97,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":670032549,"name":"Darko Cingesar","nationality":"SLO","sex":"male","date_of_birth":"1990-07-25T00:00:00.000Z","height":1.87,"weight":93,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":756775265,"name":"Darko Planinic","nationality":"CRO","sex":"male","date_of_birth":"1990-11-22T00:00:00.000Z","height":2.11,"weight":120,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":996641471,"name":"Darlan Romani","nationality":"BRA","sex":"male","date_of_birth":"1991-04-09T00:00:00.000Z","height":1.87,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":177985963,"name":"Darlene","nationality":"BRA","sex":"female","date_of_birth":"1990-01-11T00:00:00.000Z","height":1.73,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":734837766,"name":"Darly Zoqbi","nationality":"ESP","sex":"female","date_of_birth":"1982-08-25T00:00:00.000Z","height":1.78,"weight":70,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":549879032,"name":"Darrell Hill","nationality":"USA","sex":"male","date_of_birth":"1993-08-17T00:00:00.000Z","height":1.91,"weight":145,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":933764156,"name":"Darrell Wesh","nationality":"HAI","sex":"male","date_of_birth":"1992-01-21T00:00:00.000Z","height":1.83,"weight":160,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":366274936,"name":"Darwin Espinal","nationality":"HON","sex":"male","date_of_birth":"1995-01-16T00:00:00.000Z","height":1.78,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":369500376,"name":"Darya Klishina","nationality":"RUS","sex":"female","date_of_birth":"1991-01-15T00:00:00.000Z","height":1.8,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":373657197,"name":"Darya Maslova","nationality":"KGZ","sex":"female","date_of_birth":"1995-05-06T00:00:00.000Z","height":1.65,"weight":44,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":823394699,"name":"Darya Naumava","nationality":"BLR","sex":"female","date_of_birth":"1995-08-26T00:00:00.000Z","height":1.65,"weight":75,"sport":"weightlifting","gold":0,"silver":1,"bronze":0,"info":null},{"id":913687738,"name":"Darya Pachabut","nationality":"BLR","sex":"female","date_of_birth":"1994-12-31T00:00:00.000Z","height":1.63,"weight":67,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":380938305,"name":"Darya Semyonova","nationality":"TKM","sex":"female","date_of_birth":"2002-05-28T00:00:00.000Z","height":1.7,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":444977271,"name":"Darya Skrypnik","nationality":"BLR","sex":"female","date_of_birth":"1987-12-12T00:00:00.000Z","height":1.62,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":903300990,"name":"Darya Stepanyuk","nationality":"UKR","sex":"female","date_of_birth":"1990-05-22T00:00:00.000Z","height":1.74,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":274289648,"name":"Daryl Homer","nationality":"USA","sex":"male","date_of_birth":"1990-07-16T00:00:00.000Z","height":1.73,"weight":74,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":590695708,"name":"Daryl Impey","nationality":"RSA","sex":"male","date_of_birth":"1984-12-06T00:00:00.000Z","height":1.83,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":849289031,"name":"Daryll Neita","nationality":"GBR","sex":"female","date_of_birth":"1996-08-29T00:00:00.000Z","height":1.72,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":793163437,"name":"Daryna Verkhogliad","nationality":"UKR","sex":"female","date_of_birth":"1992-02-22T00:00:00.000Z","height":1.8,"weight":80,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":164963140,"name":"Daryna Zevina","nationality":"UKR","sex":"female","date_of_birth":"1994-09-01T00:00:00.000Z","height":1.78,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":916140092,"name":"Daseul Lee","nationality":"KOR","sex":"female","date_of_birth":"1996-11-08T00:00:00.000Z","height":1.59,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":771946742,"name":"Dattu Baban Bhokanal","nationality":"IND","sex":"male","date_of_birth":"1991-04-05T00:00:00.000Z","height":1.89,"weight":81,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":841861816,"name":"Daulet Shabanbay","nationality":"KAZ","sex":"male","date_of_birth":"1983-08-09T00:00:00.000Z","height":1.9,"weight":125,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":769652662,"name":"Dave Hughes","nationality":"USA","sex":"male","date_of_birth":"1978-01-22T00:00:00.000Z","height":1.86,"weight":71,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":59605223,"name":"David Adley Smith Ii","nationality":"PUR","sex":"male","date_of_birth":"1992-05-02T00:00:00.000Z","height":1.92,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":301471859,"name":"David Alegre","nationality":"ESP","sex":"male","date_of_birth":"1984-09-06T00:00:00.000Z","height":1.84,"weight":75,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":606979268,"name":"David Ames","nationality":"GBR","sex":"male","date_of_birth":"1989-06-25T00:00:00.000Z","height":1.88,"weight":82,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":83570795,"name":"David Andersen","nationality":"AUS","sex":"male","date_of_birth":"1980-06-23T00:00:00.000Z","height":2.1,"weight":102,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":849872895,"name":"David Belyavskiy","nationality":"RUS","sex":"male","date_of_birth":"1992-02-23T00:00:00.000Z","height":1.63,"weight":55,"sport":"gymnastics","gold":0,"silver":1,"bronze":1,"info":null},{"id":643787184,"name":"David Boudia","nationality":"USA","sex":"male","date_of_birth":"1989-04-24T00:00:00.000Z","height":1.76,"weight":72,"sport":"aquatics","gold":0,"silver":1,"bronze":1,"info":null},{"id":52887085,"name":"David Brandl","nationality":"AUT","sex":"male","date_of_birth":"1987-04-19T00:00:00.000Z","height":1.88,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":721958244,"name":"David Bustos","nationality":"ESP","sex":"male","date_of_birth":"1990-08-25T00:00:00.000Z","height":1.82,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":135006716,"name":"David Carter","nationality":"CAN","sex":"male","date_of_birth":"1981-11-04T00:00:00.000Z","height":1.75,"weight":79,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":529354305,"name":"David Carver","nationality":"MRI","sex":"male","date_of_birth":"1987-09-05T00:00:00.000Z","height":1.83,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":640388256,"name":"David Chapman","nationality":"AUS","sex":"male","date_of_birth":"1965-03-22T00:00:00.000Z","height":1.67,"weight":72,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":89844900,"name":"David Condon","nationality":"GBR","sex":"male","date_of_birth":"1991-07-06T00:00:00.000Z","height":1.8,"weight":79,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":806548008,"name":"David Cubillan","nationality":"VEN","sex":"male","date_of_birth":"1987-07-27T00:00:00.000Z","height":1.83,"weight":79,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":557960426,"name":"David Fernandes","nationality":"POR","sex":"male","date_of_birth":"1983-09-08T00:00:00.000Z","height":1.81,"weight":82,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":570007062,"name":"David Ferrer","nationality":"ESP","sex":"male","date_of_birth":"1982-04-02T00:00:00.000Z","height":1.75,"weight":73,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":926634435,"name":"David Florence","nationality":"GBR","sex":"male","date_of_birth":"1982-08-08T00:00:00.000Z","height":1.88,"weight":76,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":502550042,"name":"David Foldhazi","nationality":"HUN","sex":"male","date_of_birth":"1995-01-06T00:00:00.000Z","height":1.89,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":971955364,"name":"David Goffin","nationality":"BEL","sex":"male","date_of_birth":"1990-12-07T00:00:00.000Z","height":1.8,"weight":69,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":231429156,"name":"David Graf","nationality":"GER","sex":"male","date_of_birth":"1989-01-12T00:00:00.000Z","height":1.91,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":146589026,"name":"David Graf","nationality":"SUI","sex":"male","date_of_birth":"1989-09-08T00:00:00.000Z","height":1.8,"weight":79,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":584460736,"name":"David Harte","nationality":"IRL","sex":"male","date_of_birth":"1988-04-03T00:00:00.000Z","height":1.95,"weight":94,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":748526567,"name":"David Hearn","nationality":"CAN","sex":"male","date_of_birth":"1979-06-17T00:00:00.000Z","height":1.85,"weight":77,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":487593687,"name":"David Higgins","nationality":"USA","sex":"male","date_of_birth":"1994-06-27T00:00:00.000Z","height":1.76,"weight":68,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":98040137,"name":"David Horvath","nationality":"HUN","sex":"male","date_of_birth":"1996-05-16T00:00:00.000Z","height":1.75,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":695436665,"name":"David Hunt","nationality":"RSA","sex":"male","date_of_birth":"1991-02-01T00:00:00.000Z","height":1.97,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":733541995,"name":"David Jessen","nationality":"CZE","sex":"male","date_of_birth":"1996-12-05T00:00:00.000Z","height":1.75,"weight":68,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":440645107,"name":"David Joao Serralheiro Rosa","nationality":"POR","sex":"male","date_of_birth":"1986-11-12T00:00:00.000Z","height":1.65,"weight":52,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":553564024,"name":"David Katoatau","nationality":"KIR","sex":"male","date_of_birth":"1984-07-17T00:00:00.000Z","height":1.7,"weight":105,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":823262201,"name":"David Kostelecky","nationality":"CZE","sex":"male","date_of_birth":"1975-05-12T00:00:00.000Z","height":1.9,"weight":93,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":336599329,"name":"David Lee","nationality":"USA","sex":"male","date_of_birth":"1982-03-08T00:00:00.000Z","height":2.03,"weight":105,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":807043500,"name":"David Lekuta Rudisha","nationality":"KEN","sex":"male","date_of_birth":"1988-12-17T00:00:00.000Z","height":1.9,"weight":76,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":"A shining example of Kenya's tradition in athletics, David Rudisha is the current 800m Olympic and world champion, having also won the 2011 Daegu World Championship. Rudisha was the first athlete in the world to run under 1m41s in the event."},{"id":125537512,"name":"David Lingmerth","nationality":"SWE","sex":"male","date_of_birth":"1987-07-22T00:00:00.000Z","height":1.7,"weight":80,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":206952063,"name":"David Mauricio Mier Y Teran Cuevas","nationality":"MEX","sex":"male","date_of_birth":"1978-08-07T00:00:00.000Z","height":1.72,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":906932951,"name":"David McKeon","nationality":"AUS","sex":"male","date_of_birth":"1992-07-25T00:00:00.000Z","height":1.95,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":186269723,"name":"David McNeill","nationality":"AUS","sex":"male","date_of_birth":"1986-10-06T00:00:00.000Z","height":1.75,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":916000056,"name":"David Miklavcic","nationality":"SLO","sex":"male","date_of_birth":"1983-01-29T00:00:00.000Z","height":1.96,"weight":100,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":881131530,"name":"David Morgan","nationality":"AUS","sex":"male","date_of_birth":"1994-01-01T00:00:00.000Z","height":1.84,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":26934524,"name":"David Munoz Hidalgo","nationality":"PAN","sex":"male","date_of_birth":"1964-09-29T00:00:00.000Z","height":1.7,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":764731011,"name":"David Obernosterer","nationality":"AUT","sex":"male","date_of_birth":"1989-05-30T00:00:00.000Z","height":1.83,"weight":80,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":845122813,"name":"David Oliver Joyce","nationality":"IRL","sex":"male","date_of_birth":"1987-02-12T00:00:00.000Z","height":1.71,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":679505903,"name":"David Pasqualucci","nationality":"ITA","sex":"male","date_of_birth":"1996-06-27T00:00:00.000Z","height":1.81,"weight":81,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":971131011,"name":"David Plummer","nationality":"USA","sex":"male","date_of_birth":"1985-10-09T00:00:00.000Z","height":1.91,"weight":95,"sport":"aquatics","gold":1,"silver":0,"bronze":1,"info":null},{"id":387925121,"name":"David Powell","nationality":"AUS","sex":"male","date_of_birth":"1991-04-08T00:00:00.000Z","height":1.75,"weight":67,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":735843682,"name":"David Sanchez Lopez","nationality":"ESP","sex":"male","date_of_birth":"1994-07-20T00:00:00.000Z","height":1.66,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":440461124,"name":"David Smith","nationality":"USA","sex":"male","date_of_birth":"1985-05-15T00:00:00.000Z","height":2.01,"weight":86,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":665678036,"name":"David Soderberg","nationality":"FIN","sex":"male","date_of_birth":"1979-08-11T00:00:00.000Z","height":1.85,"weight":96,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":517039410,"name":"David Storl","nationality":"GER","sex":"male","date_of_birth":"1990-07-27T00:00:00.000Z","height":1.98,"weight":117,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":582202703,"name":"David Svoboda","nationality":"CZE","sex":"male","date_of_birth":"1985-03-19T00:00:00.000Z","height":1.83,"weight":76,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":"Debuting at Beijing 2008, the Czech Republic's David Svoboda placed first in the modern pentathlon’s shooting event, but a fall in the equestrian part left him out of the running for the podium. He made up for it the next time, winning gold at London 2012"},{"id":9174337,"name":"David Sylvere Patrick Boui","nationality":"CAF","sex":"male","date_of_birth":"1988-06-28T00:00:00.000Z","height":1.87,"weight":68,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":63423995,"name":"David Torrence","nationality":"PER","sex":"male","date_of_birth":"1985-11-26T00:00:00.000Z","height":1.9,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":643201191,"name":"David Valero Serrano","nationality":"ESP","sex":"male","date_of_birth":"1988-12-27T00:00:00.000Z","height":1.89,"weight":76,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":507639455,"name":"David Verburg","nationality":"USA","sex":"male","date_of_birth":"1991-05-14T00:00:00.000Z","height":1.73,"weight":70,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":277572925,"name":"David Verraszto","nationality":"HUN","sex":"male","date_of_birth":"1988-08-22T00:00:00.000Z","height":1.8,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":301376496,"name":"David Watts","nationality":"AUS","sex":"male","date_of_birth":"1992-02-05T00:00:00.000Z","height":1.91,"weight":96,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":661068918,"name":"David van der Colff","nationality":"BOT","sex":"male","date_of_birth":"1997-04-29T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":919210003,"name":"Davide Manenti","nationality":"ITA","sex":"male","date_of_birth":"1989-04-16T00:00:00.000Z","height":1.77,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":244933358,"name":"Davide Uccellari","nationality":"ITA","sex":"male","date_of_birth":"1991-10-11T00:00:00.000Z","height":1.85,"weight":64,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":636525680,"name":"Davie Selke","nationality":"GER","sex":"male","date_of_birth":"1995-01-20T00:00:00.000Z","height":1.92,"weight":82,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":382116248,"name":"Davilson dos Santos Morais","nationality":"CPV","sex":"male","date_of_birth":"1989-02-03T00:00:00.000Z","height":1.88,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":397002318,"name":"Davit Chakvetadze","nationality":"RUS","sex":"male","date_of_birth":"1992-10-18T00:00:00.000Z","height":1.74,"weight":85,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":259093930,"name":"Daviti Kharazishvili","nationality":"GEO","sex":"male","date_of_birth":"1992-04-24T00:00:00.000Z","height":1.71,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":688799432,"name":"Davor Stefanek","nationality":"SRB","sex":"male","date_of_birth":"1985-09-12T00:00:00.000Z","height":1.7,"weight":66,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":409683971,"name":"Dawid Konarski","nationality":"POL","sex":"male","date_of_birth":"1989-08-31T00:00:00.000Z","height":1.98,"weight":93,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":92392185,"name":"Dawit Seyaum","nationality":"ETH","sex":"female","date_of_birth":"1996-07-27T00:00:00.000Z","height":1.61,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":145653962,"name":"Dawit Wolde","nationality":"ETH","sex":"male","date_of_birth":"1991-05-19T00:00:00.000Z","height":1.8,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":337539240,"name":"Dayaris Mestre Alvarez","nationality":"CUB","sex":"female","date_of_birth":"1986-11-20T00:00:00.000Z","height":1.5,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":625400298,"name":"Daynara de Paula","nationality":"BRA","sex":"female","date_of_birth":"1989-07-25T00:00:00.000Z","height":1.63,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":777458812,"name":"DeAndre Jordan","nationality":"USA","sex":"male","date_of_birth":"1988-07-21T00:00:00.000Z","height":2.11,"weight":120,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":170161629,"name":"DeMarcus Cousins","nationality":"USA","sex":"male","date_of_birth":"1990-08-13T00:00:00.000Z","height":2.1,"weight":122,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":996704082,"name":"Deajah Stevens","nationality":"USA","sex":"female","date_of_birth":"1995-05-19T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":491112299,"name":"Dean Bombac","nationality":"SLO","sex":"male","date_of_birth":"1989-04-04T00:00:00.000Z","height":1.89,"weight":94,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":275797773,"name":"Deanna Price","nationality":"USA","sex":"female","date_of_birth":"1993-06-08T00:00:00.000Z","height":1.73,"weight":99,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":612473315,"name":"Deanne Rose","nationality":"CAN","sex":"female","date_of_birth":"1999-03-03T00:00:00.000Z","height":1.63,"weight":62,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":378684511,"name":"Debashree Mazumdar","nationality":"IND","sex":"female","date_of_birth":"1991-04-06T00:00:00.000Z","height":1.64,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":119019224,"name":"Debby Stam-Pilon","nationality":"NED","sex":"female","date_of_birth":"1984-07-24T00:00:00.000Z","height":1.84,"weight":68,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":254113146,"name":"Debby Susanto","nationality":"INA","sex":"female","date_of_birth":"1989-05-03T00:00:00.000Z","height":1.61,"weight":51,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":428138281,"name":"Debinha","nationality":"BRA","sex":"female","date_of_birth":"1991-10-20T00:00:00.000Z","height":1.57,"weight":55,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":844929047,"name":"Debora Seilhamer","nationality":"PUR","sex":"female","date_of_birth":"1985-10-04T00:00:00.000Z","height":1.66,"weight":61,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":127202687,"name":"Deborah Rodriguez","nationality":"URU","sex":"female","date_of_birth":"1992-12-02T00:00:00.000Z","height":1.75,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":871793969,"name":"Deborah Tsai","nationality":"AUS","sex":"female","date_of_birth":"1994-12-18T00:00:00.000Z","height":1.62,"weight":52,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":930773141,"name":"Debra Daniel","nationality":"FSM","sex":"female","date_of_birth":"1991-03-04T00:00:00.000Z","height":1.53,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":679759459,"name":"Deep Ekka","nationality":"IND","sex":"female","date_of_birth":"1994-06-03T00:00:00.000Z","height":1.58,"weight":63,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":947558770,"name":"Deepika Deepika","nationality":"IND","sex":"female","date_of_birth":"1987-02-07T00:00:00.000Z","height":1.59,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":326907106,"name":"Deepika Kumari","nationality":"IND","sex":"female","date_of_birth":"1994-06-13T00:00:00.000Z","height":1.63,"weight":61,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":892176470,"name":"Deiver Machado","nationality":"COL","sex":"male","date_of_birth":"1993-09-02T00:00:00.000Z","height":1.79,"weight":71,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":532865663,"name":"Deividas Margevicius","nationality":"LTU","sex":"male","date_of_birth":"1995-04-26T00:00:00.000Z","height":1.87,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":859863879,"name":"Deivy Balanta","nationality":"COL","sex":"male","date_of_birth":"1993-02-09T00:00:00.000Z","height":1.84,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":295848758,"name":"Dejan Pajic","nationality":"SRB","sex":"male","date_of_birth":"1989-08-15T00:00:00.000Z","height":1.78,"weight":78,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":884920098,"name":"Dejen Gebremeskel","nationality":"ETH","sex":"male","date_of_birth":"1989-11-24T00:00:00.000Z","height":1.8,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":750143193,"name":"Delanno Williams","nationality":"GBR","sex":"male","date_of_birth":"1993-12-23T00:00:00.000Z","height":1.8,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":797004979,"name":"Delfina Merino","nationality":"ARG","sex":"female","date_of_birth":"1989-10-15T00:00:00.000Z","height":1.69,"weight":59,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":86795736,"name":"Delphine Lansac","nationality":"FRA","sex":"female","date_of_birth":"1995-07-18T00:00:00.000Z","height":1.69,"weight":60,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":174042478,"name":"Demar DeRozan","nationality":"USA","sex":"male","date_of_birth":"1989-08-07T00:00:00.000Z","height":2.01,"weight":99,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":306671782,"name":"Demetrius Pinder","nationality":"BAH","sex":"male","date_of_birth":"1989-02-13T00:00:00.000Z","height":1.78,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":224926689,"name":"Demian Gonzalez","nationality":"ARG","sex":"male","date_of_birth":"1983-02-21T00:00:00.000Z","height":1.92,"weight":82,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":675018716,"name":"Demita Vega de Lille","nationality":"MEX","sex":"female","date_of_birth":"1983-07-21T00:00:00.000Z","height":1.72,"weight":60,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":493263577,"name":"Denes Varga","nationality":"HUN","sex":"male","date_of_birth":"1987-03-29T00:00:00.000Z","height":1.93,"weight":96,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":398783638,"name":"Deni","nationality":"INA","sex":"male","date_of_birth":"1989-07-26T00:00:00.000Z","height":1.65,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":13630067,"name":"Denia Caballero","nationality":"CUB","sex":"female","date_of_birth":"1990-01-13T00:00:00.000Z","height":1.75,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":95013242,"name":"Denika Kassim","nationality":"COM","sex":"female","date_of_birth":"1997-08-08T00:00:00.000Z","height":1.57,"weight":44,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":634903913,"name":"Denis Abliazin","nationality":"RUS","sex":"male","date_of_birth":"1992-08-03T00:00:00.000Z","height":1.6,"weight":62,"sport":"gymnastics","gold":0,"silver":2,"bronze":1,"info":null},{"id":503917240,"name":"Denis Dmitriev","nationality":"RUS","sex":"male","date_of_birth":"1986-03-23T00:00:00.000Z","height":1.77,"weight":90,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":384593486,"name":"Denis Gargaud Chanut","nationality":"FRA","sex":"male","date_of_birth":"1987-07-22T00:00:00.000Z","height":1.81,"weight":76,"sport":"canoe","gold":1,"silver":0,"bronze":0,"info":null},{"id":245021648,"name":"Denis Gribanov","nationality":"RUS","sex":"male","date_of_birth":"1986-06-03T00:00:00.000Z","height":1.9,"weight":74,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":69215365,"name":"Denis Iartcev","nationality":"RUS","sex":"male","date_of_birth":"1990-09-18T00:00:00.000Z","height":1.76,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":286228746,"name":"Denis Istomin","nationality":"UZB","sex":"male","date_of_birth":"1986-09-07T00:00:00.000Z","height":1.87,"weight":85,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":873793608,"name":"Denis Koulakov","nationality":"RUS","sex":"male","date_of_birth":"1982-11-21T00:00:00.000Z","height":1.74,"weight":80,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":521906110,"name":"Denis Kudla","nationality":"USA","sex":"male","date_of_birth":"1992-08-17T00:00:00.000Z","height":1.81,"weight":79,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":509497804,"name":"Denis Maksymilian Kudla","nationality":"GER","sex":"male","date_of_birth":"1994-12-24T00:00:00.000Z","height":1.84,"weight":90,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":46394870,"name":"Denis Mysak","nationality":"SVK","sex":"male","date_of_birth":"1995-11-30T00:00:00.000Z","height":1.89,"weight":90,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":598284598,"name":"Denis Petrashov","nationality":"KGZ","sex":"male","date_of_birth":"2000-02-01T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":168293636,"name":"Denis Ulanov","nationality":"KAZ","sex":"male","date_of_birth":"1993-10-28T00:00:00.000Z","height":1.75,"weight":85,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":63343858,"name":"Denisa Dedu","nationality":"ROU","sex":"female","date_of_birth":"1994-09-27T00:00:00.000Z","height":1.82,"weight":73,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":913453330,"name":"Denisa Rosolova","nationality":"CZE","sex":"female","date_of_birth":"1986-08-21T00:00:00.000Z","height":1.75,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":4129853,"name":"Denise Lim","nationality":"SIN","sex":"female","date_of_birth":"1991-09-14T00:00:00.000Z","height":1.55,"weight":57,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":692229320,"name":"Deniss Karpak","nationality":"EST","sex":"male","date_of_birth":"1986-07-18T00:00:00.000Z","height":2,"weight":100,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":378680975,"name":"Deniz Cinar","nationality":"TUR","sex":"male","date_of_birth":"1984-12-08T00:00:00.000Z","height":1.72,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":33695982,"name":"Dennis Goossens","nationality":"BEL","sex":"male","date_of_birth":"1993-12-16T00:00:00.000Z","height":1.6,"weight":65,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":844014981,"name":"Dennis Ombachi","nationality":"KEN","sex":"male","date_of_birth":"1994-12-14T00:00:00.000Z","height":1.85,"weight":98,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":432632544,"name":"Denys Kostyuk","nationality":"UKR","sex":"male","date_of_birth":"1982-03-13T00:00:00.000Z","height":1.75,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":107760935,"name":"Denys Molchanov","nationality":"UKR","sex":"male","date_of_birth":"1987-05-16T00:00:00.000Z","height":1.9,"weight":82,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":556851081,"name":"Denys Solonenko","nationality":"UKR","sex":"male","date_of_birth":"1992-10-25T00:00:00.000Z","height":1.79,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":343364504,"name":"Deo Gracia Ngokaba","nationality":"CGO","sex":"male","date_of_birth":"1997-05-17T00:00:00.000Z","height":1.9,"weight":140,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":510782872,"name":"Deokhyeon Kim","nationality":"KOR","sex":"male","date_of_birth":"1985-12-08T00:00:00.000Z","height":1.8,"weight":71,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":278528807,"name":"Deolin Mekoa","nationality":"RSA","sex":"male","date_of_birth":"1993-08-10T00:00:00.000Z","height":1.75,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":682281793,"name":"Deon Lendore","nationality":"TTO","sex":"male","date_of_birth":"1992-10-28T00:00:00.000Z","height":1.79,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":2593240,"name":"Deonise Fachinello","nationality":"BRA","sex":"female","date_of_birth":"1983-06-20T00:00:00.000Z","height":1.8,"weight":73,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":849646461,"name":"Derek Drouin","nationality":"CAN","sex":"male","date_of_birth":"1990-03-06T00:00:00.000Z","height":1.96,"weight":83,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":789423999,"name":"Derek Hawkins","nationality":"GBR","sex":"male","date_of_birth":"1989-04-29T00:00:00.000Z","height":1.8,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":368262898,"name":"Derek Sua","nationality":"SAM","sex":"male","date_of_birth":"1987-12-29T00:00:00.000Z","height":null,"weight":null,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":970701386,"name":"Derlys Ayala","nationality":"PAR","sex":"male","date_of_birth":"1990-01-07T00:00:00.000Z","height":1.78,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":484914459,"name":"Desiree Henry","nationality":"GBR","sex":"female","date_of_birth":"1995-08-26T00:00:00.000Z","height":1.71,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":525844968,"name":"Desiree Linden","nationality":"USA","sex":"female","date_of_birth":"1983-07-26T00:00:00.000Z","height":1.55,"weight":43,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":781892650,"name":"Desiree Rossit","nationality":"ITA","sex":"female","date_of_birth":"1994-03-19T00:00:00.000Z","height":1.79,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":535106472,"name":"Desiree Scott","nationality":"CAN","sex":"female","date_of_birth":"1987-07-31T00:00:00.000Z","height":1.6,"weight":63,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":639727915,"name":"Desler Puggaard","nationality":"DEN","sex":"male","date_of_birth":"1995-02-19T00:00:00.000Z","height":1.87,"weight":71,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":670754445,"name":"Deuce Carter","nationality":"JAM","sex":"male","date_of_birth":"1990-09-28T00:00:00.000Z","height":1.83,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":640447595,"name":"Devery Karz","nationality":"USA","sex":"female","date_of_birth":"1988-02-18T00:00:00.000Z","height":1.73,"weight":58,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":360434724,"name":"Devid Safaryan","nationality":"ARM","sex":"male","date_of_birth":"1989-08-01T00:00:00.000Z","height":1.7,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":831917950,"name":"Devin McEwan","nationality":"USA","sex":"male","date_of_birth":"1984-10-11T00:00:00.000Z","height":1.78,"weight":77,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":211396920,"name":"Devindar Walmiki","nationality":"IND","sex":"male","date_of_birth":"1992-05-28T00:00:00.000Z","height":1.78,"weight":69,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":94495645,"name":"Devohn Teixeira","nationality":"CAN","sex":"male","date_of_birth":"1989-02-09T00:00:00.000Z","height":1.65,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":355897271,"name":"Devon Allen","nationality":"USA","sex":"male","date_of_birth":"1994-12-12T00:00:00.000Z","height":1.86,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":974219288,"name":"Devon Manchester","nationality":"NZL","sex":"male","date_of_birth":"1989-11-11T00:00:00.000Z","height":1.78,"weight":78,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":92529957,"name":"Devon Myles William Brown","nationality":"RSA","sex":"male","date_of_birth":"1992-05-21T00:00:00.000Z","height":1.88,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":799132600,"name":"Dewi Safitri","nationality":"INA","sex":"female","date_of_birth":"1993-02-10T00:00:00.000Z","height":1.51,"weight":53,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":921638208,"name":"Dewi Yuliawati","nationality":"INA","sex":"female","date_of_birth":"1997-06-02T00:00:00.000Z","height":1.66,"weight":65,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":438551437,"name":"Dex Elmont","nationality":"NED","sex":"male","date_of_birth":"1984-01-10T00:00:00.000Z","height":1.75,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":912033914,"name":"Dhurgham Ismael","nationality":"IRQ","sex":"male","date_of_birth":"1994-05-23T00:00:00.000Z","height":1.77,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":203504788,"name":"Di Wu","nationality":"CHN","sex":"female","date_of_birth":"1993-10-27T00:00:00.000Z","height":1.82,"weight":75,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":10438447,"name":"Diaaeldin Kamal Gouda Abdelmottaleb","nationality":"EGY","sex":"male","date_of_birth":"1993-05-02T00:00:00.000Z","height":1.77,"weight":125,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":856659914,"name":"Diamara Planell","nationality":"PUR","sex":"female","date_of_birth":"1993-02-16T00:00:00.000Z","height":1.8,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":877009812,"name":"Diana Abla","nationality":"BRA","sex":"female","date_of_birth":"1995-07-29T00:00:00.000Z","height":1.75,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":723783485,"name":"Diana Aydosova","nationality":"KAZ","sex":"female","date_of_birth":"1995-09-05T00:00:00.000Z","height":1.58,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":681626502,"name":"Diana Bacosi","nationality":"ITA","sex":"female","date_of_birth":"1983-07-13T00:00:00.000Z","height":1.75,"weight":85,"sport":"shooting","gold":1,"silver":0,"bronze":0,"info":null},{"id":266313114,"name":"Diana Khubeseryan","nationality":"ARM","sex":"female","date_of_birth":"1994-05-05T00:00:00.000Z","height":1.7,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":767005117,"name":"Diana Lobacevske","nationality":"LTU","sex":"female","date_of_birth":"1980-08-07T00:00:00.000Z","height":1.74,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":572629331,"name":"Diana Martin","nationality":"ESP","sex":"female","date_of_birth":"1981-04-01T00:00:00.000Z","height":1.63,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":48306282,"name":"Diana Matheson","nationality":"CAN","sex":"female","date_of_birth":"1984-04-06T00:00:00.000Z","height":1.53,"weight":53,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":812031749,"name":"Diana Ospina","nationality":"COL","sex":"female","date_of_birth":"1989-03-03T00:00:00.000Z","height":1.57,"weight":58,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":392473268,"name":"Diana Pineda","nationality":"COL","sex":"female","date_of_birth":"1984-09-06T00:00:00.000Z","height":1.67,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":77686741,"name":"Diana Reyes","nationality":"PUR","sex":"female","date_of_birth":"1993-04-29T00:00:00.000Z","height":1.91,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":910190523,"name":"Diana Sujew","nationality":"GER","sex":"female","date_of_birth":"1990-11-02T00:00:00.000Z","height":1.66,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":352310155,"name":"Diana Taurasi","nationality":"USA","sex":"female","date_of_birth":"1982-06-11T00:00:00.000Z","height":1.82,"weight":70,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":423391587,"name":"Diane Nukuri","nationality":"BDI","sex":"female","date_of_birth":"1984-12-01T00:00:00.000Z","height":1.83,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":123911422,"name":"Dianelys Perez","nationality":"CUB","sex":"female","date_of_birth":"1988-06-28T00:00:00.000Z","height":1.49,"weight":59,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":987878989,"name":"Didar Khamza","nationality":"KAZ","sex":"male","date_of_birth":"1997-02-15T00:00:00.000Z","height":1.75,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":629941187,"name":"Didier Kiki","nationality":"BEN","sex":"male","date_of_birth":"1995-11-30T00:00:00.000Z","height":1.85,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":355496444,"name":"Diederik van Silfhout","nationality":"NED","sex":"male","date_of_birth":"1988-04-20T00:00:00.000Z","height":1.9,"weight":87,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":109933404,"name":"Diego Botin Le Chever","nationality":"ESP","sex":"male","date_of_birth":"1993-12-25T00:00:00.000Z","height":1.83,"weight":81,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":210454399,"name":"Diego Colorado","nationality":"COL","sex":"male","date_of_birth":"1973-08-31T00:00:00.000Z","height":1.69,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":796700277,"name":"Diego Hypolito","nationality":"BRA","sex":"male","date_of_birth":"1986-06-19T00:00:00.000Z","height":1.7,"weight":68,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":null},{"id":39686227,"name":"Diego Milan Jimenez","nationality":"DOM","sex":"male","date_of_birth":"1985-07-10T00:00:00.000Z","height":1.79,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":5063397,"name":"Diego Occhiuzzi","nationality":"ITA","sex":"male","date_of_birth":"1981-04-30T00:00:00.000Z","height":1.8,"weight":76,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":578628315,"name":"Diego Palomeque","nationality":"COL","sex":"male","date_of_birth":"1993-12-05T00:00:00.000Z","height":1.78,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":820045789,"name":"Diego Rosa","nationality":"ITA","sex":"male","date_of_birth":"1989-03-27T00:00:00.000Z","height":1.78,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":309429588,"name":"Diego del Real","nationality":"MEX","sex":"male","date_of_birth":"1994-03-06T00:00:00.000Z","height":1.85,"weight":100,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":689489031,"name":"Dienov Andres Koka","nationality":"CGO","sex":"male","date_of_birth":"1996-08-02T00:00:00.000Z","height":1.73,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":119737320,"name":"Dieter Dekoninck","nationality":"BEL","sex":"male","date_of_birth":"1991-01-28T00:00:00.000Z","height":1.9,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":316835810,"name":"Dieudonne Wilfred Seyi Ntsengue","nationality":"CMR","sex":"male","date_of_birth":"1998-01-23T00:00:00.000Z","height":1.83,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":249259020,"name":"Dilara Lokmanhekim","nationality":"TUR","sex":"female","date_of_birth":"1994-04-18T00:00:00.000Z","height":1.65,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":549822679,"name":"Dilara Uralp","nationality":"TUR","sex":"female","date_of_birth":"1995-11-16T00:00:00.000Z","height":1.63,"weight":54,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":227184360,"name":"Diletta Carli","nationality":"ITA","sex":"female","date_of_birth":"1996-05-07T00:00:00.000Z","height":1.7,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":847147736,"name":"Dilshod Nazarov","nationality":"TJK","sex":"male","date_of_birth":"1982-05-06T00:00:00.000Z","height":1.87,"weight":120,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":146607194,"name":"Dilshodjon Turdiev","nationality":"UZB","sex":"male","date_of_birth":"1991-10-19T00:00:00.000Z","height":1.72,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":776618424,"name":"Dimitar Angelov Kumchev","nationality":"BUL","sex":"male","date_of_birth":"1980-04-20T00:00:00.000Z","height":1.8,"weight":125,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":119683900,"name":"Dimitar Krastanov","nationality":"BUL","sex":"male","date_of_birth":"1994-01-31T00:00:00.000Z","height":1.81,"weight":71,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":536351159,"name":"Dimitri Bascou","nationality":"FRA","sex":"male","date_of_birth":"1987-07-20T00:00:00.000Z","height":1.81,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":913943115,"name":"Dimitri Juliet","nationality":"NED","sex":"male","date_of_birth":"1996-03-28T00:00:00.000Z","height":1.81,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":173674343,"name":"Dimitriana Surdu","nationality":"MDA","sex":"female","date_of_birth":"1994-04-12T00:00:00.000Z","height":1.74,"weight":93,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":158604912,"name":"Dimitrij Ovtcharov","nationality":"GER","sex":"male","date_of_birth":"1988-09-02T00:00:00.000Z","height":1.86,"weight":78,"sport":"table tennis","gold":0,"silver":0,"bronze":1,"info":null},{"id":391014162,"name":"Dimitrije Grgic","nationality":"SRB","sex":"male","date_of_birth":"1984-06-22T00:00:00.000Z","height":1.91,"weight":82,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":173609909,"name":"Dimitrios Antoniadis","nationality":"GRE","sex":"male","date_of_birth":"1992-07-29T00:00:00.000Z","height":1.8,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":791397203,"name":"Dimitrios Chondrokoukis","nationality":"CYP","sex":"male","date_of_birth":"1988-01-26T00:00:00.000Z","height":1.94,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":989537292,"name":"Dimitrios Dimitriou","nationality":"GRE","sex":"male","date_of_birth":"1997-07-31T00:00:00.000Z","height":1.79,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":575914740,"name":"Dimitrios Koulouris","nationality":"GRE","sex":"male","date_of_birth":"1991-04-22T00:00:00.000Z","height":1.83,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":761663615,"name":"Dimitriy Timchenko","nationality":"UKR","sex":"male","date_of_birth":"1983-04-01T00:00:00.000Z","height":1.9,"weight":98,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":894060489,"name":"Dimitry Volkov","nationality":"RUS","sex":"male","date_of_birth":"1995-05-25T00:00:00.000Z","height":2.01,"weight":88,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":871164091,"name":"Dina Asher-Smith","nationality":"GBR","sex":"female","date_of_birth":"1995-12-04T00:00:00.000Z","height":1.64,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":265627311,"name":"Dina Lebo Phalula","nationality":"RSA","sex":"female","date_of_birth":"1983-12-09T00:00:00.000Z","height":1.65,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":705775098,"name":"Dina Meshref","nationality":"EGY","sex":"female","date_of_birth":"1994-03-10T00:00:00.000Z","height":1.66,"weight":59,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":717089687,"name":"Ding Chen","nationality":"CHN","sex":"male","date_of_birth":"1992-08-05T00:00:00.000Z","height":1.75,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":350064004,"name":"Diodio Diouf","nationality":"SEN","sex":"female","date_of_birth":"1984-12-15T00:00:00.000Z","height":1.7,"weight":70,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":176134705,"name":"Diogo Abreu","nationality":"POR","sex":"male","date_of_birth":"1993-09-05T00:00:00.000Z","height":1.84,"weight":75,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":989520284,"name":"Diogo Carvalho","nationality":"POR","sex":"male","date_of_birth":"1988-03-26T00:00:00.000Z","height":1.84,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":709072877,"name":"Diogo Kent Hubner","nationality":"BRA","sex":"male","date_of_birth":"1983-01-30T00:00:00.000Z","height":1.83,"weight":93,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":202401166,"name":"Diogo Sclebin","nationality":"BRA","sex":"male","date_of_birth":"1982-05-06T00:00:00.000Z","height":1.9,"weight":80,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":778633221,"name":"Dion Dreesens","nationality":"NED","sex":"male","date_of_birth":"1993-04-30T00:00:00.000Z","height":1.95,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":521343807,"name":"Dionisio Augustine Ii","nationality":"FSM","sex":"male","date_of_birth":"1992-06-16T00:00:00.000Z","height":1.53,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":215603505,"name":"Dionysios Angelopoulos","nationality":"GRE","sex":"male","date_of_birth":"1992-08-05T00:00:00.000Z","height":1.89,"weight":91,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":727060365,"name":"Dipa Karmakar","nationality":"IND","sex":"female","date_of_birth":"1993-08-09T00:00:00.000Z","height":1.51,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":984475243,"name":"Dirk Uittenbogaard","nationality":"NED","sex":"male","date_of_birth":"1990-05-08T00:00:00.000Z","height":1.99,"weight":93,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":460186785,"name":"Dirk van Tichelt","nationality":"BEL","sex":"male","date_of_birth":"1984-06-10T00:00:00.000Z","height":1.73,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":276444388,"name":"Dirngulbai Misech","nationality":"PLW","sex":"female","date_of_birth":"1997-09-27T00:00:00.000Z","height":1.65,"weight":51,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":158299289,"name":"Dival Forele Malonga Dzalamou","nationality":"CGO","sex":"male","date_of_birth":"1995-04-18T00:00:00.000Z","height":null,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":410843536,"name":"Diyorbek Urozboev","nationality":"UZB","sex":"male","date_of_birth":"1993-08-17T00:00:00.000Z","height":1.72,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":640654202,"name":"Djenebou Dante","nationality":"MLI","sex":"female","date_of_birth":"1989-08-07T00:00:00.000Z","height":1.76,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":208714960,"name":"Dmitri Barsuk","nationality":"RUS","sex":"male","date_of_birth":"1980-01-20T00:00:00.000Z","height":1.94,"weight":96,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":486721254,"name":"Dmitrii Ushakov","nationality":"RUS","sex":"male","date_of_birth":"1988-08-15T00:00:00.000Z","height":1.77,"weight":65,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":980454993,"name":"Dmitrij Prokopcov","nationality":"CZE","sex":"male","date_of_birth":"1980-01-05T00:00:00.000Z","height":1.85,"weight":78,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":217286137,"name":"Dmitriy Balandin","nationality":"KAZ","sex":"male","date_of_birth":"1995-04-04T00:00:00.000Z","height":1.95,"weight":90,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":291341996,"name":"Dmitriy Koblov","nationality":"KAZ","sex":"male","date_of_birth":"1992-11-30T00:00:00.000Z","height":1.83,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":625508487,"name":"Dmitriy Shokin","nationality":"UZB","sex":"male","date_of_birth":"1992-05-30T00:00:00.000Z","height":1.93,"weight":97,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":19397250,"name":"Dmitry Kroyter","nationality":"ISR","sex":"male","date_of_birth":"1993-02-18T00:00:00.000Z","height":1.87,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":130360259,"name":"Dmitry Larionov","nationality":"RUS","sex":"male","date_of_birth":"1985-12-22T00:00:00.000Z","height":1.78,"weight":84,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":735957750,"name":"Dmitry Polyanskiy","nationality":"RUS","sex":"male","date_of_birth":"1986-11-19T00:00:00.000Z","height":1.82,"weight":69,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":213236578,"name":"Dmitry Zherebchenko","nationality":"RUS","sex":"male","date_of_birth":"1989-06-27T00:00:00.000Z","height":1.85,"weight":78,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":130401664,"name":"Dmytro Chumak","nationality":"UKR","sex":"male","date_of_birth":"1990-07-11T00:00:00.000Z","height":1.71,"weight":94,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":168429293,"name":"Dmytro Ianchuk","nationality":"UKR","sex":"male","date_of_birth":"1992-11-14T00:00:00.000Z","height":1.84,"weight":75,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":834111099,"name":"Dmytro Karyuchenko","nationality":"UKR","sex":"male","date_of_birth":"1980-01-15T00:00:00.000Z","height":1.79,"weight":79,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":271182574,"name":"Dmytro Kosynskyy","nationality":"UKR","sex":"male","date_of_birth":"1989-03-31T00:00:00.000Z","height":1.98,"weight":105,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":229107456,"name":"Dmytro Mikhay","nationality":"UKR","sex":"male","date_of_birth":"1990-02-27T00:00:00.000Z","height":1.95,"weight":96,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":744288493,"name":"Dmytro Mytrofanov","nationality":"UKR","sex":"male","date_of_birth":"1989-11-08T00:00:00.000Z","height":1.73,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":860594469,"name":"Dmytro Oseledets","nationality":"UKR","sex":"male","date_of_birth":"1994-11-23T00:00:00.000Z","height":1.87,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":460602290,"name":"Dmytro Yakovenko","nationality":"UKR","sex":"male","date_of_birth":"1992-09-17T00:00:00.000Z","height":1.92,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":608020695,"name":"Doaa Elghobashy","nationality":"EGY","sex":"female","date_of_birth":"1996-11-08T00:00:00.000Z","height":null,"weight":null,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":838189137,"name":"Dolores Hernandez","nationality":"MEX","sex":"female","date_of_birth":"1997-05-21T00:00:00.000Z","height":1.62,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":932071837,"name":"Dolores Moreira Fraschini","nationality":"URU","sex":"female","date_of_birth":"1999-02-16T00:00:00.000Z","height":1.68,"weight":63,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":657952342,"name":"Domagoj Duvnjak","nationality":"CRO","sex":"male","date_of_birth":"1988-06-01T00:00:00.000Z","height":1.98,"weight":100,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":733397080,"name":"Domantas Sabonis","nationality":"LTU","sex":"male","date_of_birth":"1996-05-03T00:00:00.000Z","height":2.08,"weight":109,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":451025767,"name":"Domenic Weinstein","nationality":"GER","sex":"male","date_of_birth":"1994-08-27T00:00:00.000Z","height":1.88,"weight":83,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":840838621,"name":"Domenico Montrone","nationality":"ITA","sex":"male","date_of_birth":"1986-05-01T00:00:00.000Z","height":1.89,"weight":97,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":209270839,"name":"Dominic Dugasse","nationality":"SEY","sex":"male","date_of_birth":"1985-04-19T00:00:00.000Z","height":1.8,"weight":99,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":263640327,"name":"Dominic Inglot","nationality":"GBR","sex":"male","date_of_birth":"1986-03-06T00:00:00.000Z","height":1.98,"weight":95,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":840913101,"name":"Dominic King","nationality":"GBR","sex":"male","date_of_birth":"1983-05-30T00:00:00.000Z","height":1.78,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":342699829,"name":"Dominik Distelberger","nationality":"AUT","sex":"male","date_of_birth":"1990-03-16T00:00:00.000Z","height":1.86,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":330603205,"name":"Dominik Kozma","nationality":"HUN","sex":"male","date_of_birth":"1991-04-10T00:00:00.000Z","height":1.91,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":726300964,"name":"Dominique Bouchard","nationality":"CAN","sex":"female","date_of_birth":"1991-05-29T00:00:00.000Z","height":1.74,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":70068464,"name":"Dominique Scott","nationality":"RSA","sex":"female","date_of_birth":"1992-06-24T00:00:00.000Z","height":1.66,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":152688631,"name":"Dominykas Jancionis","nationality":"LTU","sex":"male","date_of_birth":"1993-02-28T00:00:00.000Z","height":1.92,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":960157104,"name":"Domonic Bedggood","nationality":"AUS","sex":"male","date_of_birth":"1994-09-18T00:00:00.000Z","height":1.63,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":671503207,"name":"Donald Blair-Sanford","nationality":"ISR","sex":"male","date_of_birth":"1987-02-05T00:00:00.000Z","height":1.96,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":93583120,"name":"Donald Cabral","nationality":"USA","sex":"male","date_of_birth":"1989-12-12T00:00:00.000Z","height":1.78,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":714613268,"name":"Donald Thomas","nationality":"BAH","sex":"male","date_of_birth":"1984-07-10T00:00:00.000Z","height":1.91,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":971791407,"name":"Donata Rimshaite","nationality":"RUS","sex":"female","date_of_birth":"1988-01-29T00:00:00.000Z","height":1.76,"weight":62,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":215897620,"name":"Donata Vistartaite","nationality":"LTU","sex":"female","date_of_birth":"1989-06-11T00:00:00.000Z","height":1.7,"weight":62,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":658816074,"name":"Dong Dong","nationality":"CHN","sex":"male","date_of_birth":"1989-04-13T00:00:00.000Z","height":1.68,"weight":56,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":null},{"id":825718298,"name":"Dong Keun Lee","nationality":"KOR","sex":"male","date_of_birth":"1990-11-20T00:00:00.000Z","height":1.83,"weight":78,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":200290928,"name":"Donghan Gwak","nationality":"KOR","sex":"male","date_of_birth":"1992-04-20T00:00:00.000Z","height":1.83,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":531161609,"name":"Donghyen Shin","nationality":"KOR","sex":"male","date_of_birth":"1989-09-23T00:00:00.000Z","height":1.66,"weight":null,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":78993724,"name":"Dongjin Kang","nationality":"KOR","sex":"male","date_of_birth":"1987-12-23T00:00:00.000Z","height":1.68,"weight":76,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":929646844,"name":"Dongjin Park","nationality":"KOR","sex":"male","date_of_birth":"1994-12-10T00:00:00.000Z","height":1.82,"weight":73,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":282895929,"name":"Dongju Yu","nationality":"KOR","sex":"male","date_of_birth":"1993-08-19T00:00:00.000Z","height":1.75,"weight":84,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":580113738,"name":"Dongjun Kim","nationality":"KOR","sex":"male","date_of_birth":"1994-12-19T00:00:00.000Z","height":1.88,"weight":84,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":48515460,"name":"Donglun Song","nationality":"CHN","sex":"female","date_of_birth":"1991-04-28T00:00:00.000Z","height":1.78,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":375732071,"name":"Dongmin Cha","nationality":"KOR","sex":"male","date_of_birth":"1986-08-24T00:00:00.000Z","height":1.9,"weight":91,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":896828538,"name":"Dongna Li","nationality":"CHN","sex":"female","date_of_birth":"1988-12-06T00:00:00.000Z","height":1.7,"weight":58,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":321880190,"name":"Dongseon Kim","nationality":"KOR","sex":"male","date_of_birth":"1989-05-30T00:00:00.000Z","height":1.89,"weight":80,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":709580436,"name":"Dongxiao Li","nationality":"CHN","sex":"female","date_of_birth":"1987-11-26T00:00:00.000Z","height":1.75,"weight":60,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":259066180,"name":"Dongyan Huang","nationality":"CHN","sex":"female","date_of_birth":"1993-12-14T00:00:00.000Z","height":1.72,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":108660563,"name":"Dongyong Kim","nationality":"KOR","sex":"male","date_of_birth":"1990-12-12T00:00:00.000Z","height":1.89,"weight":91,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":328804448,"name":"Donis Escober","nationality":"HON","sex":"male","date_of_birth":"1981-02-03T00:00:00.000Z","height":1.8,"weight":85,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":87257453,"name":"Donna Vakalis","nationality":"CAN","sex":"female","date_of_birth":"1979-12-30T00:00:00.000Z","height":1.64,"weight":53,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":798030855,"name":"Dora Antal","nationality":"HUN","sex":"female","date_of_birth":"1993-09-09T00:00:00.000Z","height":1.69,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":963025022,"name":"Dora Csabai","nationality":"HUN","sex":"female","date_of_birth":"1989-04-20T00:00:00.000Z","height":1.75,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":702170084,"name":"Dora Czigany","nationality":"HUN","sex":"female","date_of_birth":"1992-10-23T00:00:00.000Z","height":1.73,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":690232757,"name":"Dorcas Gyimah","nationality":"GHA","sex":"female","date_of_birth":"1992-02-02T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":853951269,"name":"Doreen Amata","nationality":"NGR","sex":"female","date_of_birth":"1988-05-06T00:00:00.000Z","height":1.91,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":669652246,"name":"Doreen Nziwa","nationality":"KEN","sex":"female","date_of_birth":"1982-07-04T00:00:00.000Z","height":1.57,"weight":70,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":772686625,"name":"Dorian Coninx","nationality":"FRA","sex":"male","date_of_birth":"1994-01-28T00:00:00.000Z","height":1.81,"weight":70,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":810821583,"name":"Dorian McMenemy Taylor","nationality":"DOM","sex":"female","date_of_birth":"1996-10-28T00:00:00.000Z","height":1.86,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":151172719,"name":"Dorian Mortelette","nationality":"FRA","sex":"male","date_of_birth":"1983-11-24T00:00:00.000Z","height":1.95,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":863768656,"name":"Dorian van Rijsselberghe","nationality":"NED","sex":"male","date_of_birth":"1988-11-24T00:00:00.000Z","height":1.89,"weight":75,"sport":"sailing","gold":1,"silver":0,"bronze":0,"info":null},{"id":803889541,"name":"Doris Esmid Patino Marin","nationality":"COL","sex":"female","date_of_birth":"1986-05-01T00:00:00.000Z","height":1.65,"weight":56,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":606690650,"name":"Dorlan Pabon","nationality":"COL","sex":"male","date_of_birth":"1988-01-24T00:00:00.000Z","height":1.68,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":705883917,"name":"Dorothea Brandt","nationality":"GER","sex":"female","date_of_birth":"1984-03-05T00:00:00.000Z","height":1.79,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":307716893,"name":"Dorothee Schneider","nationality":"GER","sex":"female","date_of_birth":"1969-02-17T00:00:00.000Z","height":1.69,"weight":63,"sport":"equestrian","gold":1,"silver":0,"bronze":0,"info":null},{"id":632435029,"name":"Dorothy Erzsebet Yeats","nationality":"CAN","sex":"female","date_of_birth":"1993-07-29T00:00:00.000Z","height":1.6,"weight":71,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":494719089,"name":"Doston Yokubov","nationality":"UZB","sex":"male","date_of_birth":"1995-04-05T00:00:00.000Z","height":1.58,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":673086205,"name":"Doszhan Kartikov","nationality":"KAZ","sex":"male","date_of_birth":"1989-05-24T00:00:00.000Z","height":1.73,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":723331849,"name":"Douglas Correia de Souza","nationality":"BRA","sex":"male","date_of_birth":"1995-08-20T00:00:00.000Z","height":1.99,"weight":75,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":281803950,"name":"Douglas John Erasmus","nationality":"RSA","sex":"male","date_of_birth":"1990-04-04T00:00:00.000Z","height":1.82,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":456548285,"name":"Douglas Santos","nationality":"BRA","sex":"male","date_of_birth":"1994-03-22T00:00:00.000Z","height":1.73,"weight":69,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":825814008,"name":"Dovydas Nemeravicius","nationality":"LTU","sex":"male","date_of_birth":"1996-12-11T00:00:00.000Z","height":1.93,"weight":98,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":285011612,"name":"Dragana Stankovic","nationality":"SRB","sex":"female","date_of_birth":"1995-01-18T00:00:00.000Z","height":1.95,"weight":73,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":225958644,"name":"Dragana Tomasevic","nationality":"SRB","sex":"female","date_of_birth":"1982-06-04T00:00:00.000Z","height":1.75,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":402567927,"name":"Drasko Brguljan","nationality":"MNE","sex":"male","date_of_birth":"1984-12-27T00:00:00.000Z","height":1.94,"weight":92,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":66675675,"name":"Draymond Green","nationality":"USA","sex":"male","date_of_birth":"1990-03-04T00:00:00.000Z","height":2,"weight":104,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":86318895,"name":"Driss Lahrichi","nationality":"MAR","sex":"male","date_of_birth":"1997-12-02T00:00:00.000Z","height":1.9,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":388102468,"name":"Drita Islami","nationality":"MKD","sex":"female","date_of_birth":"1996-08-01T00:00:00.000Z","height":1.66,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":226875071,"name":"Duanbin Ma","nationality":"CHN","sex":"male","date_of_birth":"1990-03-28T00:00:00.000Z","height":1.74,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":236093323,"name":"Duane da Rocha Marce","nationality":"ESP","sex":"female","date_of_birth":"1988-01-07T00:00:00.000Z","height":1.8,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":421676120,"name":"Dudi Sela","nationality":"ISR","sex":"male","date_of_birth":"1985-04-04T00:00:00.000Z","height":1.75,"weight":67,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":754252198,"name":"Dulguun Batsaikhan","nationality":"MGL","sex":"male","date_of_birth":"1986-10-26T00:00:00.000Z","height":1.79,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":219999872,"name":"Dumitru Captari","nationality":"ROU","sex":"male","date_of_birth":"1989-07-12T00:00:00.000Z","height":1.68,"weight":77,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":327966166,"name":"Duncan Scott","nationality":"GBR","sex":"male","date_of_birth":"1997-05-06T00:00:00.000Z","height":1.91,"weight":74,"sport":"aquatics","gold":0,"silver":2,"bronze":0,"info":null},{"id":643802255,"name":"Dunhan Xiong","nationality":"CHN","sex":"female","date_of_birth":"1998-11-11T00:00:00.000Z","height":1.81,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":154604483,"name":"Duo Shen","nationality":"CHN","sex":"female","date_of_birth":"1997-06-09T00:00:00.000Z","height":1.81,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":3901892,"name":"Duobujie","nationality":"CHN","sex":"male","date_of_birth":"1994-02-16T00:00:00.000Z","height":1.75,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":131271973,"name":"Durdina Jaukovic","nationality":"MNE","sex":"female","date_of_birth":"1997-02-24T00:00:00.000Z","height":1.86,"weight":86,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":596370468,"name":"Dusan Majdan","nationality":"SVK","sex":"male","date_of_birth":"1987-09-08T00:00:00.000Z","height":1.8,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":265536386,"name":"Dusan Mandic","nationality":"SRB","sex":"male","date_of_birth":"1994-06-16T00:00:00.000Z","height":2.02,"weight":105,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":386288896,"name":"Dusko Pijetlovic","nationality":"SRB","sex":"male","date_of_birth":"1985-04-25T00:00:00.000Z","height":1.97,"weight":97,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":521744837,"name":"Dustin Brown","nationality":"GER","sex":"male","date_of_birth":"1984-12-08T00:00:00.000Z","height":1.96,"weight":78,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":417996132,"name":"Dustin Tynes","nationality":"BAH","sex":"male","date_of_birth":"1996-03-07T00:00:00.000Z","height":1.85,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":737107607,"name":"Dutee Chand","nationality":"IND","sex":"female","date_of_birth":"1996-02-03T00:00:00.000Z","height":1.6,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":47572256,"name":"Duygu Aynaci","nationality":"TUR","sex":"female","date_of_birth":"1996-06-26T00:00:00.000Z","height":1.7,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":578322269,"name":"Dwight Lewis","nationality":"VEN","sex":"male","date_of_birth":"1987-10-07T00:00:00.000Z","height":1.98,"weight":null,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":870355208,"name":"Dylan Borlee","nationality":"BEL","sex":"male","date_of_birth":"1992-09-20T00:00:00.000Z","height":1.9,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":806170062,"name":"Dylan Bosch","nationality":"RSA","sex":"male","date_of_birth":"1993-07-17T00:00:00.000Z","height":1.78,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":348929342,"name":"Dylan Carter","nationality":"TTO","sex":"male","date_of_birth":"1996-01-30T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":829969108,"name":"Dylan Fletcher-Scott","nationality":"GBR","sex":"male","date_of_birth":"1988-04-03T00:00:00.000Z","height":1.76,"weight":78,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":965509678,"name":"Dylan Kennett","nationality":"NZL","sex":"male","date_of_birth":"1994-12-08T00:00:00.000Z","height":1.78,"weight":75,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":168131726,"name":"Dylan Sage","nationality":"RSA","sex":"male","date_of_birth":"1992-01-24T00:00:00.000Z","height":1.88,"weight":96,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":5064348,"name":"Dylan Schmidt","nationality":"NZL","sex":"male","date_of_birth":"1997-01-07T00:00:00.000Z","height":1.69,"weight":69,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":140395363,"name":"Dzianis Mihal","nationality":"BLR","sex":"male","date_of_birth":"1985-10-05T00:00:00.000Z","height":1.97,"weight":102,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":186360775,"name":"Dzianis Simanovich","nationality":"BLR","sex":"male","date_of_birth":"1987-04-20T00:00:00.000Z","height":1.78,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":733134503,"name":"Dzmitry Asanau","nationality":"BLR","sex":"male","date_of_birth":"1996-05-18T00:00:00.000Z","height":1.76,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":165309696,"name":"Dzmitry Nabokau","nationality":"BLR","sex":"male","date_of_birth":"1996-01-20T00:00:00.000Z","height":1.86,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":811378549,"name":"Dzmitry Platnitski","nationality":"BLR","sex":"male","date_of_birth":"1988-08-26T00:00:00.000Z","height":1.91,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":890120852,"name":"Dzmitry Shershan","nationality":"BLR","sex":"male","date_of_birth":"1988-12-28T00:00:00.000Z","height":1.7,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":259130059,"name":"Dzsenifer Marozsan","nationality":"GER","sex":"female","date_of_birth":"1992-04-18T00:00:00.000Z","height":1.71,"weight":55,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":557320685,"name":"Earvin Ngapeth","nationality":"FRA","sex":"male","date_of_birth":"1991-02-12T00:00:00.000Z","height":1.94,"weight":101,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":340813269,"name":"Ebi Ere","nationality":"NGR","sex":"male","date_of_birth":"1981-08-03T00:00:00.000Z","height":1.96,"weight":97,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":559696143,"name":"Ebtissam Mohamed","nationality":"EGY","sex":"female","date_of_birth":"1996-09-25T00:00:00.000Z","height":1.63,"weight":54,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":609618131,"name":"Ecaterina Guica","nationality":"CAN","sex":"female","date_of_birth":"1993-10-09T00:00:00.000Z","height":1.65,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":507856515,"name":"Ed Jenkins","nationality":"AUS","sex":"male","date_of_birth":"1986-05-26T00:00:00.000Z","height":1.84,"weight":96,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":250017195,"name":"Eddie Lovett","nationality":"ISV","sex":"male","date_of_birth":"1992-06-25T00:00:00.000Z","height":1.8,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":532630723,"name":"Eddy Yusof","nationality":"SUI","sex":"male","date_of_birth":"1994-10-02T00:00:00.000Z","height":1.65,"weight":63,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":159991654,"name":"Edel R. Amores","nationality":"CUB","sex":"male","date_of_birth":"1998-10-05T00:00:00.000Z","height":1.81,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":207619796,"name":"Eder Antonio Souza","nationality":"BRA","sex":"male","date_of_birth":"1986-10-15T00:00:00.000Z","height":1.89,"weight":89,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":87070724,"name":"Eder Carbonera","nationality":"BRA","sex":"male","date_of_birth":"1983-10-19T00:00:00.000Z","height":2.05,"weight":107,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":605245129,"name":"Edgar Contreras","nationality":"VEN","sex":"male","date_of_birth":"1992-07-16T00:00:00.000Z","height":1.78,"weight":67,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":659584369,"name":"Edgar Crespo","nationality":"PAN","sex":"male","date_of_birth":"1989-05-11T00:00:00.000Z","height":1.78,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":870599137,"name":"Edgar Ie","nationality":"POR","sex":"male","date_of_birth":"1994-05-01T00:00:00.000Z","height":1.88,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":487798358,"name":"Edgar Pineda Zeta","nationality":"GUA","sex":"male","date_of_birth":"1997-08-17T00:00:00.000Z","height":1.62,"weight":56,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":684979118,"name":"Edgar Ramon Munoz","nationality":"VEN","sex":"male","date_of_birth":"1983-12-22T00:00:00.000Z","height":1.84,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":795195154,"name":"Edgar Rivera","nationality":"MEX","sex":"male","date_of_birth":"1991-02-13T00:00:00.000Z","height":1.98,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":709871920,"name":"Edgaras Venckaitis","nationality":"LTU","sex":"male","date_of_birth":"1985-12-12T00:00:00.000Z","height":1.71,"weight":70,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":334864528,"name":"Edidiong Ofonime Odiong","nationality":"BRN","sex":"female","date_of_birth":"1997-03-13T00:00:00.000Z","height":1.67,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":285211262,"name":"Edigerson Gomes","nationality":"DEN","sex":"male","date_of_birth":"1988-11-17T00:00:00.000Z","height":1.92,"weight":91,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":32938884,"name":"Edina Gangl","nationality":"HUN","sex":"female","date_of_birth":"1990-06-25T00:00:00.000Z","height":1.81,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":889715438,"name":"Edina Knapek","nationality":"HUN","sex":"female","date_of_birth":"1977-10-05T00:00:00.000Z","height":1.66,"weight":53,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":937748261,"name":"Edna Carrillo","nationality":"MEX","sex":"female","date_of_birth":"1991-11-12T00:00:00.000Z","height":1.52,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":36037343,"name":"Edna Santini","nationality":"BRA","sex":"female","date_of_birth":"1992-07-15T00:00:00.000Z","height":1.53,"weight":54,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":82126746,"name":"Edouard Joseph","nationality":"HAI","sex":"male","date_of_birth":"1989-12-24T00:00:00.000Z","height":1.52,"weight":60,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":34157460,"name":"Edson Isaias Freitas da Silva","nationality":"BRA","sex":"male","date_of_birth":"1982-03-25T00:00:00.000Z","height":1.7,"weight":83,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":906489293,"name":"Eduard Popp","nationality":"GER","sex":"male","date_of_birth":"1991-06-16T00:00:00.000Z","height":1.9,"weight":128,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":475508680,"name":"Eduard Soghomonyan","nationality":"BRA","sex":"male","date_of_birth":"1990-02-19T00:00:00.000Z","height":1.9,"weight":120,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":129556229,"name":"Eduarda Taleska","nationality":"BRA","sex":"female","date_of_birth":"1986-09-23T00:00:00.000Z","height":1.86,"weight":84,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":"Singled out as the best handball player in the world, in 2014, Brazil's Duda Amorim counts the 2013 world, 2007 and 2011 Pan American, and two European Champions League titles among her accomplishments."},{"id":757748599,"name":"Eduardo Alvarez Aznar","nationality":"ESP","sex":"male","date_of_birth":"1984-01-01T00:00:00.000Z","height":1.73,"weight":67,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":454899916,"name":"Eduardo Jose Lorenzo","nationality":"DOM","sex":"male","date_of_birth":"1966-08-31T00:00:00.000Z","height":1.71,"weight":84,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":543622278,"name":"Eduardo Menezes","nationality":"BRA","sex":"male","date_of_birth":"1980-05-01T00:00:00.000Z","height":1.93,"weight":84,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":495156314,"name":"Eduardo Rubio Rodriguez","nationality":"CUB","sex":"male","date_of_birth":"1986-11-13T00:00:00.000Z","height":1.87,"weight":88,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":367849834,"name":"Eduardo Sepulveda","nationality":"ARG","sex":"male","date_of_birth":"1991-06-13T00:00:00.000Z","height":1.73,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":943462468,"name":"Eduardo Solaeche Gomez","nationality":"ESP","sex":"male","date_of_birth":"1993-11-22T00:00:00.000Z","height":1.83,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":706338154,"name":"Edvald Boasson Hagen","nationality":"NOR","sex":"male","date_of_birth":"1987-05-17T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":490010499,"name":"Edvinas Ramanauskas","nationality":"LTU","sex":"male","date_of_birth":"1985-08-18T00:00:00.000Z","height":1.84,"weight":90,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":687926847,"name":"Edward Araya","nationality":"CHI","sex":"male","date_of_birth":"1986-02-14T00:00:00.000Z","height":1.76,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":128111311,"name":"Edward Clancy","nationality":"GBR","sex":"male","date_of_birth":"1985-03-12T00:00:00.000Z","height":1.85,"weight":79,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":461207068,"name":"Edward Dawkins","nationality":"NZL","sex":"male","date_of_birth":"1989-07-11T00:00:00.000Z","height":1.85,"weight":93,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":430473716,"name":"Edward Gal","nationality":"NED","sex":"male","date_of_birth":"1970-03-04T00:00:00.000Z","height":1.82,"weight":72,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":906594925,"name":"Edward King","nationality":"USA","sex":"male","date_of_birth":"1989-06-14T00:00:00.000Z","height":1.94,"weight":77,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":773652223,"name":"Edward Ling","nationality":"GBR","sex":"male","date_of_birth":"1983-03-07T00:00:00.000Z","height":1.8,"weight":80,"sport":"shooting","gold":0,"silver":0,"bronze":1,"info":null},{"id":596469056,"name":"Edward Ockenden","nationality":"AUS","sex":"male","date_of_birth":"1987-04-03T00:00:00.000Z","height":1.8,"weight":73,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":466051917,"name":"Edwige Gwend","nationality":"ITA","sex":"female","date_of_birth":"1990-03-11T00:00:00.000Z","height":1.63,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":148140488,"name":"Edwin Orlando Mosquera Roa","nationality":"COL","sex":"male","date_of_birth":"1985-07-26T00:00:00.000Z","height":1.65,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":40681851,"name":"Edwina Bone","nationality":"AUS","sex":"female","date_of_birth":"1988-04-29T00:00:00.000Z","height":1.7,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":776649642,"name":"Edwina Tops-Alexander","nationality":"AUS","sex":"female","date_of_birth":"1974-03-29T00:00:00.000Z","height":1.64,"weight":50,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":103003016,"name":"Edyta Dzieniszewska-Kierkla","nationality":"POL","sex":"female","date_of_birth":"1986-05-05T00:00:00.000Z","height":1.7,"weight":72,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":32569642,"name":"Edyta Jasinska","nationality":"POL","sex":"female","date_of_birth":"1986-11-28T00:00:00.000Z","height":1.77,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":594266311,"name":"Edzus Treimanis","nationality":"LAT","sex":"male","date_of_birth":"1988-04-21T00:00:00.000Z","height":1.83,"weight":82,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":249357704,"name":"Eefje Muskens","nationality":"NED","sex":"female","date_of_birth":"1989-06-17T00:00:00.000Z","height":1.64,"weight":60,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":416257556,"name":"Eelco Sintnicolaas","nationality":"NED","sex":"male","date_of_birth":"1987-04-07T00:00:00.000Z","height":1.86,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":583999455,"name":"Eeseul Baek","nationality":"KOR","sex":"female","date_of_birth":"1994-10-04T00:00:00.000Z","height":1.75,"weight":72,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":293548179,"name":"Efe Ajagba","nationality":"NGR","sex":"male","date_of_birth":"1994-04-22T00:00:00.000Z","height":1.9,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":850581667,"name":"Efthimios Mitas","nationality":"GRE","sex":"male","date_of_birth":"1985-05-15T00:00:00.000Z","height":1.9,"weight":105,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":647057378,"name":"Egle Balciunaite","nationality":"LTU","sex":"female","date_of_birth":"1988-10-31T00:00:00.000Z","height":1.76,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":798534608,"name":"Eglys Yahima de la Cruz","nationality":"CUB","sex":"female","date_of_birth":"1980-04-12T00:00:00.000Z","height":1.59,"weight":63,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":238009548,"name":"Egor Kliuka","nationality":"RUS","sex":"male","date_of_birth":"1995-06-15T00:00:00.000Z","height":2.08,"weight":93,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":878921230,"name":"Ehsan Hadadi","nationality":"IRI","sex":"male","date_of_birth":"1985-01-20T00:00:00.000Z","height":1.92,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":184575330,"name":"Ehsan Rouzbahani","nationality":"IRI","sex":"male","date_of_birth":"1988-06-23T00:00:00.000Z","height":1.84,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":181030927,"name":"Ei Ei Thet","nationality":"MYA","sex":"female","date_of_birth":"1992-12-13T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":797663283,"name":"Eider Arevalo","nationality":"COL","sex":"male","date_of_birth":"1993-03-09T00:00:00.000Z","height":1.65,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":966174315,"name":"Eike Onnen","nationality":"GER","sex":"male","date_of_birth":"1982-08-03T00:00:00.000Z","height":1.97,"weight":92,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":407225209,"name":"Eiki Takahashi","nationality":"JPN","sex":"male","date_of_birth":"1992-11-19T00:00:00.000Z","height":1.76,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":246556488,"name":"Eileen Grench","nationality":"PAN","sex":"female","date_of_birth":"1986-08-05T00:00:00.000Z","height":1.52,"weight":59,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":787671034,"name":"Eilidh Doyle","nationality":"GBR","sex":"female","date_of_birth":"1987-02-20T00:00:00.000Z","height":1.7,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":449582675,"name":"Eilish McColgan","nationality":"GBR","sex":"female","date_of_birth":"1990-11-25T00:00:00.000Z","height":1.76,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":974051662,"name":"Eimantas Stanionis","nationality":"LTU","sex":"male","date_of_birth":"1994-08-17T00:00:00.000Z","height":1.73,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":58235529,"name":"Eirini-Marina Alexandri","nationality":"AUT","sex":"female","date_of_birth":"1997-09-15T00:00:00.000Z","height":1.71,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":395251162,"name":"Eita Mori","nationality":"JPN","sex":"male","date_of_birth":"1983-04-13T00:00:00.000Z","height":1.73,"weight":76,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":381623095,"name":"Ejowvokoghene Oduduru","nationality":"NGR","sex":"male","date_of_birth":"1996-10-07T00:00:00.000Z","height":null,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":786450061,"name":"Ekaterina Birlova","nationality":"RUS","sex":"female","date_of_birth":"1987-08-11T00:00:00.000Z","height":1.8,"weight":62,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":882206907,"name":"Ekaterina Bukina","nationality":"RUS","sex":"female","date_of_birth":"1987-05-05T00:00:00.000Z","height":1.74,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":358786472,"name":"Ekaterina Dyachenko","nationality":"RUS","sex":"female","date_of_birth":"1987-08-31T00:00:00.000Z","height":1.67,"weight":53,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":409581513,"name":"Ekaterina Ilina","nationality":"RUS","sex":"female","date_of_birth":"1991-03-07T00:00:00.000Z","height":1.74,"weight":60,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":323828574,"name":"Ekaterina Ivanova Avramova","nationality":"TUR","sex":"female","date_of_birth":"1991-11-12T00:00:00.000Z","height":1.8,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":516714653,"name":"Ekaterina Karsten","nationality":"BLR","sex":"female","date_of_birth":"1972-06-02T00:00:00.000Z","height":1.85,"weight":81,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":121281813,"name":"Ekaterina Khilko","nationality":"UZB","sex":"female","date_of_birth":"1982-03-25T00:00:00.000Z","height":1.63,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":905380582,"name":"Ekaterina Korshunova","nationality":"RUS","sex":"female","date_of_birth":"1988-05-24T00:00:00.000Z","height":1.61,"weight":69,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":335759270,"name":"Ekaterina Kosianenko","nationality":"RUS","sex":"female","date_of_birth":"1990-02-02T00:00:00.000Z","height":1.78,"weight":64,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":392249714,"name":"Ekaterina Levina","nationality":"ISR","sex":"female","date_of_birth":"1997-02-01T00:00:00.000Z","height":1.68,"weight":52,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":443958002,"name":"Ekaterina Lisunova","nationality":"RUS","sex":"female","date_of_birth":"1989-10-06T00:00:00.000Z","height":1.75,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":257253481,"name":"Ekaterina Makarova","nationality":"RUS","sex":"female","date_of_birth":"1988-06-07T00:00:00.000Z","height":1.8,"weight":67,"sport":"tennis","gold":1,"silver":0,"bronze":0,"info":null},{"id":472046862,"name":"Ekaterina Marennikova","nationality":"RUS","sex":"female","date_of_birth":"1982-04-29T00:00:00.000Z","height":1.76,"weight":70,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":892190184,"name":"Ekaterina Petukhova","nationality":"RUS","sex":"female","date_of_birth":"1996-06-16T00:00:00.000Z","height":1.63,"weight":48,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":121727222,"name":"Ekaterina Poplavskaya","nationality":"BLR","sex":"female","date_of_birth":"1987-05-07T00:00:00.000Z","height":1.69,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":814297240,"name":"Ekaterina Prokofyeva","nationality":"RUS","sex":"female","date_of_birth":"1991-03-13T00:00:00.000Z","height":1.76,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":894255038,"name":"Ekaterina Rabaya","nationality":"RUS","sex":"female","date_of_birth":"1993-11-06T00:00:00.000Z","height":1.58,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":271247492,"name":"Ekaterina Tunguskova","nationality":"UZB","sex":"female","date_of_birth":"1988-05-10T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":11854539,"name":"Ekaterina Valkova","nationality":"RUS","sex":"female","date_of_birth":"1991-05-17T00:00:00.000Z","height":1.67,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":366635571,"name":"Ekaterina Volkova","nationality":"FIN","sex":"female","date_of_birth":"1997-07-02T00:00:00.000Z","height":1.68,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":881845310,"name":"Ekaterina Voronina","nationality":"UZB","sex":"female","date_of_birth":"1992-02-16T00:00:00.000Z","height":1.73,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":226774163,"name":"Ekaterini Stefanidi","nationality":"GRE","sex":"female","date_of_birth":"1990-02-04T00:00:00.000Z","height":1.73,"weight":59,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":359490730,"name":"Ekenechukwu Ibekwe","nationality":"NGR","sex":"male","date_of_birth":"1985-07-19T00:00:00.000Z","height":2.1,"weight":100,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":967379890,"name":"Eko Yuli Irawan","nationality":"INA","sex":"male","date_of_birth":"1989-07-24T00:00:00.000Z","height":1.54,"weight":62,"sport":"weightlifting","gold":0,"silver":1,"bronze":0,"info":null},{"id":45507177,"name":"El Hadi Laameche","nationality":"ALG","sex":"male","date_of_birth":"1990-03-05T00:00:00.000Z","height":1.65,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":964251417,"name":"El Hassan Elabbassi","nationality":"BRN","sex":"male","date_of_birth":"1984-04-13T00:00:00.000Z","height":1.71,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":55190469,"name":"El Mahadi Messaoudi","nationality":"MAR","sex":"male","date_of_birth":"1990-02-12T00:00:00.000Z","height":1.68,"weight":59,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":153066900,"name":"Elaheh Ahmadi","nationality":"IRI","sex":"female","date_of_birth":"1982-05-31T00:00:00.000Z","height":1.6,"weight":62,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":715359899,"name":"Elaine Thompson","nationality":"JAM","sex":"female","date_of_birth":"1992-06-28T00:00:00.000Z","height":1.67,"weight":57,"sport":"athletics","gold":2,"silver":1,"bronze":0,"info":null},{"id":320218359,"name":"Eldar Memisevic","nationality":"QAT","sex":"male","date_of_birth":"1992-06-21T00:00:00.000Z","height":1.78,"weight":77,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":673973096,"name":"Elder Torres","nationality":"HON","sex":"male","date_of_birth":"1995-04-14T00:00:00.000Z","height":1.76,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":969535461,"name":"Eldred Henry","nationality":"IVB","sex":"male","date_of_birth":"1994-09-18T00:00:00.000Z","height":null,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":777815800,"name":"Elea Mariama Diarra","nationality":"FRA","sex":"female","date_of_birth":"1990-03-08T00:00:00.000Z","height":1.76,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":205100723,"name":"Eleanor Bezzina","nationality":"MLT","sex":"female","date_of_birth":"1977-03-25T00:00:00.000Z","height":1.54,"weight":null,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":513927497,"name":"Eleanor Harvey","nationality":"CAN","sex":"female","date_of_birth":"1995-01-14T00:00:00.000Z","height":1.72,"weight":56,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":518148894,"name":"Eleanor Logan","nationality":"USA","sex":"female","date_of_birth":"1987-12-27T00:00:00.000Z","height":1.88,"weight":86,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":473616854,"name":"Eleanor Patterson","nationality":"AUS","sex":"female","date_of_birth":"1996-05-22T00:00:00.000Z","height":1.82,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":846855602,"name":"Eleanor Watton","nationality":"GBR","sex":"female","date_of_birth":"1989-06-10T00:00:00.000Z","height":1.67,"weight":64,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":686764746,"name":"Eleftherios Petrounias","nationality":"GRE","sex":"male","date_of_birth":"1990-11-30T00:00:00.000Z","height":1.64,"weight":62,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":null},{"id":82665159,"name":"Elena Allen","nationality":"GBR","sex":"female","date_of_birth":"1972-07-12T00:00:00.000Z","height":1.69,"weight":68,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":222839663,"name":"Elena Aniushina","nationality":"RUS","sex":"female","date_of_birth":"1993-12-08T00:00:00.000Z","height":null,"weight":null,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":365519305,"name":"Elena Berta","nationality":"ITA","sex":"female","date_of_birth":"1992-07-15T00:00:00.000Z","height":1.71,"weight":58,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":869725095,"name":"Elena Cecchini","nationality":"ITA","sex":"female","date_of_birth":"1992-05-25T00:00:00.000Z","height":1.68,"weight":55,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":648308415,"name":"Elena Delle Donne","nationality":"USA","sex":"female","date_of_birth":"1989-09-05T00:00:00.000Z","height":1.95,"weight":86,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":13567083,"name":"Elena Ezhova","nationality":"RUS","sex":"female","date_of_birth":"1977-08-14T00:00:00.000Z","height":1.78,"weight":69,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":137876590,"name":"Elena Galiabovitch","nationality":"AUS","sex":"female","date_of_birth":"1989-11-13T00:00:00.000Z","height":1.77,"weight":null,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":240603445,"name":"Elena Lopez","nationality":"ESP","sex":"female","date_of_birth":"1994-10-04T00:00:00.000Z","height":1.69,"weight":51,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":null},{"id":971991593,"name":"Elena Maria Bonfanti","nationality":"ITA","sex":"female","date_of_birth":"1988-07-09T00:00:00.000Z","height":1.72,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":338111433,"name":"Elena Panturoiu","nationality":"ROU","sex":"female","date_of_birth":"1995-02-24T00:00:00.000Z","height":1.7,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":806464803,"name":"Elena Potapenko","nationality":"KAZ","sex":"female","date_of_birth":"1993-04-20T00:00:00.000Z","height":1.65,"weight":53,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":38343268,"name":"Elena Prokofyeva","nationality":"RUS","sex":"female","date_of_birth":"1994-08-02T00:00:00.000Z","height":1.69,"weight":54,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":763314251,"name":"Elena Sergey Pirozhkova","nationality":"USA","sex":"female","date_of_birth":"1986-10-13T00:00:00.000Z","height":1.68,"weight":71,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":160971394,"name":"Elena Vesnina","nationality":"RUS","sex":"female","date_of_birth":"1986-08-01T00:00:00.000Z","height":1.76,"weight":66,"sport":"tennis","gold":1,"silver":0,"bronze":0,"info":null},{"id":290451814,"name":"Elena Wassen","nationality":"GER","sex":"female","date_of_birth":"2000-11-01T00:00:00.000Z","height":1.74,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":347167586,"name":"Elena-Lavinia Tarlea","nationality":"ROU","sex":"female","date_of_birth":"1993-05-11T00:00:00.000Z","height":1.82,"weight":76,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":173424444,"name":"Eleni Artymata","nationality":"CYP","sex":"female","date_of_birth":"1986-05-16T00:00:00.000Z","height":1.77,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":820277604,"name":"Eleni Doika","nationality":"GRE","sex":"female","date_of_birth":"1995-11-15T00:00:00.000Z","height":1.7,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":178710310,"name":"Eleonora Giorgi","nationality":"ITA","sex":"female","date_of_birth":"1989-09-14T00:00:00.000Z","height":1.62,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":541439110,"name":"Eleonora Lo Bianco","nationality":"ITA","sex":"female","date_of_birth":"1979-12-22T00:00:00.000Z","height":1.71,"weight":67,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":985507855,"name":"Eli Dershwitz","nationality":"USA","sex":"male","date_of_birth":"1995-09-23T00:00:00.000Z","height":1.86,"weight":77,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":307747512,"name":"Elia Viviani","nationality":"ITA","sex":"male","date_of_birth":"1989-02-07T00:00:00.000Z","height":1.77,"weight":70,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":471696699,"name":"Eliane Martins","nationality":"BRA","sex":"female","date_of_birth":"1986-05-26T00:00:00.000Z","height":1.6,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":28171198,"name":"Eliane Saholinirina","nationality":"MAD","sex":"female","date_of_birth":"1982-03-20T00:00:00.000Z","height":1.54,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":15776102,"name":"Elias Eliseo Emigdio Abarca","nationality":"MEX","sex":"male","date_of_birth":"1991-06-13T00:00:00.000Z","height":1.65,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":141627848,"name":"Elias Malave","nationality":"VEN","sex":"male","date_of_birth":"1989-10-26T00:00:00.000Z","height":1.8,"weight":87,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":592765424,"name":"Elie Konki","nationality":"FRA","sex":"male","date_of_birth":"1992-04-06T00:00:00.000Z","height":1.7,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":92990093,"name":"Eliecith Palacios","nationality":"COL","sex":"female","date_of_birth":"1987-09-15T00:00:00.000Z","height":1.7,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":789410278,"name":"Elif Jale Yesilirmak","nationality":"TUR","sex":"female","date_of_birth":"1986-07-30T00:00:00.000Z","height":1.64,"weight":58,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":301067341,"name":"Elijah Motonei Manangoi","nationality":"KEN","sex":"male","date_of_birth":"1993-01-05T00:00:00.000Z","height":1.85,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":678119617,"name":"Elin Johansson","nationality":"SWE","sex":"female","date_of_birth":"1990-08-05T00:00:00.000Z","height":1.76,"weight":67,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":875252627,"name":"Elin Rubensson","nationality":"SWE","sex":"female","date_of_birth":"1993-05-11T00:00:00.000Z","height":1.66,"weight":59,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":172321951,"name":"Elina Mikhina","nationality":"KAZ","sex":"female","date_of_birth":"1994-07-16T00:00:00.000Z","height":1.7,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":198751525,"name":"Elina Svitolina","nationality":"UKR","sex":"female","date_of_birth":"1994-09-12T00:00:00.000Z","height":1.74,"weight":60,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":731624234,"name":"Elinah Phillip","nationality":"IVB","sex":"female","date_of_birth":"2000-04-03T00:00:00.000Z","height":1.64,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":460751397,"name":"Elinor Barker","nationality":"GBR","sex":"female","date_of_birth":"1994-09-07T00:00:00.000Z","height":1.68,"weight":56,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":287409075,"name":"Elios Manzi","nationality":"ITA","sex":"male","date_of_birth":"1996-03-28T00:00:00.000Z","height":1.55,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":768759366,"name":"Elis Guri","nationality":"BUL","sex":"male","date_of_birth":"1983-07-06T00:00:00.000Z","height":1.89,"weight":100,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":613098347,"name":"Elis Ligtlee","nationality":"NED","sex":"female","date_of_birth":"1994-06-28T00:00:00.000Z","height":1.85,"weight":90,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":564832940,"name":"Elisa Bozzo","nationality":"ITA","sex":"female","date_of_birth":"1987-05-08T00:00:00.000Z","height":1.7,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":757900456,"name":"Elisa Longo Borghini","nationality":"ITA","sex":"female","date_of_birth":"1991-12-10T00:00:00.000Z","height":1.7,"weight":59,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":12802833,"name":"Elisa Meneghini","nationality":"ITA","sex":"female","date_of_birth":"1997-07-24T00:00:00.000Z","height":1.5,"weight":42,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":732211683,"name":"Elisa Queirolo","nationality":"ITA","sex":"female","date_of_birth":"1991-03-06T00:00:00.000Z","height":1.68,"weight":61,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":322088639,"name":"Elisa Rigaudo","nationality":"ITA","sex":"female","date_of_birth":"1980-06-17T00:00:00.000Z","height":1.68,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":7294908,"name":"Elisa Vania Ravololoniaina","nationality":"MAD","sex":"female","date_of_birth":"1992-02-24T00:00:00.000Z","height":1.65,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":668488790,"name":"Elisa di Francisca","nationality":"ITA","sex":"female","date_of_birth":"1982-12-12T00:00:00.000Z","height":1.77,"weight":65,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":"A holder of seven world and 10 World Cup titles, Elisa di Francisca left London 2012 with two fencing gold medals. She won the individual foil event and was part of the victorious Italian team."},{"id":299509346,"name":"Elisabet Martinez","nationality":"ESP","sex":"female","date_of_birth":"1988-06-13T00:00:00.000Z","height":1.67,"weight":73,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":587801561,"name":"Elisabeth Baldauf","nationality":"AUT","sex":"female","date_of_birth":"1990-08-03T00:00:00.000Z","height":1.75,"weight":62,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":695086866,"name":"Elisabeth Mandaba","nationality":"CAF","sex":"female","date_of_birth":"1989-06-07T00:00:00.000Z","height":1.33,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":4144486,"name":"Elisabeth Seitz","nationality":"GER","sex":"female","date_of_birth":"1993-11-04T00:00:00.000Z","height":1.61,"weight":57,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":880954077,"name":"Elisavet Pesiridou","nationality":"GRE","sex":"female","date_of_birth":"1992-02-12T00:00:00.000Z","height":1.75,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":608164942,"name":"Elisbet Games","nationality":"CUB","sex":"female","date_of_birth":"1997-01-17T00:00:00.000Z","height":1.63,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":855475470,"name":"Elise Bussaglia","nationality":"FRA","sex":"female","date_of_birth":"1985-09-24T00:00:00.000Z","height":1.63,"weight":54,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":721445990,"name":"Elise Kellond-Knight","nationality":"AUS","sex":"female","date_of_birth":"1990-08-10T00:00:00.000Z","height":1.65,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":606790581,"name":"Eliska Klucinova","nationality":"CZE","sex":"female","date_of_birth":"1988-04-14T00:00:00.000Z","height":1.78,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":626906176,"name":"Elissa Downie","nationality":"GBR","sex":"female","date_of_birth":"1999-07-20T00:00:00.000Z","height":1.58,"weight":58,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":163054373,"name":"Elitsa Atanasova Yankova","nationality":"BUL","sex":"female","date_of_birth":"1994-09-18T00:00:00.000Z","height":1.51,"weight":48,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":348703893,"name":"Eliud Kipchoge","nationality":"KEN","sex":"male","date_of_birth":"1984-11-05T00:00:00.000Z","height":1.67,"weight":57,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":900146374,"name":"Eliza Buceschi","nationality":"ROU","sex":"female","date_of_birth":"1993-08-01T00:00:00.000Z","height":1.78,"weight":70,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":388879004,"name":"Eliza McCartney","nationality":"NZL","sex":"female","date_of_birth":"1996-12-11T00:00:00.000Z","height":1.79,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":826192606,"name":"Elizabet Chavez","nationality":"ESP","sex":"female","date_of_birth":"1990-11-17T00:00:00.000Z","height":1.92,"weight":81,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":148313722,"name":"Elizabeta Samara","nationality":"ROU","sex":"female","date_of_birth":"1989-04-15T00:00:00.000Z","height":1.71,"weight":56,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":56829234,"name":"Elizabeth Armitstead","nationality":"GBR","sex":"female","date_of_birth":"1988-12-18T00:00:00.000Z","height":1.68,"weight":55,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":"In the sport since 2004, Great Briton Lizzie Armitstead has won world titles in both track cycling (2009) and road cycling (2015) - where she also won silver at the London 2012 Olympic Games."},{"id":993687711,"name":"Elizabeth Beisel","nationality":"USA","sex":"female","date_of_birth":"1992-08-18T00:00:00.000Z","height":1.68,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":602061131,"name":"Elizabeth Bravo","nationality":"ECU","sex":"female","date_of_birth":"1987-01-30T00:00:00.000Z","height":1.6,"weight":49,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":972005688,"name":"Elizabeth Cambage","nationality":"AUS","sex":"female","date_of_birth":"1991-08-18T00:00:00.000Z","height":2.03,"weight":98,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":50104802,"name":"Elizabeth Cui","nationality":"NZL","sex":"female","date_of_birth":"1997-08-12T00:00:00.000Z","height":1.59,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":218669819,"name":"Elizabeth Gleadle","nationality":"CAN","sex":"female","date_of_birth":"1988-12-05T00:00:00.000Z","height":1.85,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":800526632,"name":"Elizabeth Gunson","nationality":"NZL","sex":"female","date_of_birth":"1989-07-09T00:00:00.000Z","height":1.62,"weight":62,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":180787419,"name":"Elizabeth Keddell","nationality":"NZL","sex":"female","date_of_birth":"1994-01-31T00:00:00.000Z","height":1.69,"weight":67,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":33326551,"name":"Elizabeth Madden","nationality":"USA","sex":"female","date_of_birth":"1963-11-20T00:00:00.000Z","height":1.68,"weight":63,"sport":"equestrian","gold":0,"silver":1,"bronze":0,"info":null},{"id":942647059,"name":"Elizabeth Pinedo","nationality":"ESP","sex":"female","date_of_birth":"1981-05-13T00:00:00.000Z","height":1.75,"weight":68,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":819052934,"name":"Elizabeth Thompson","nationality":"NZL","sex":"female","date_of_birth":"1994-12-08T00:00:00.000Z","height":1.75,"weight":71,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":340978439,"name":"Elizabeth Yin","nationality":"SIN","sex":"female","date_of_birth":"1991-08-08T00:00:00.000Z","height":1.67,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":87758456,"name":"Elizbar Odikadze","nationality":"GEO","sex":"male","date_of_birth":"1989-06-14T00:00:00.000Z","height":1.87,"weight":105,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":442945772,"name":"Elke Karsten","nationality":"ARG","sex":"female","date_of_birth":"1995-05-15T00:00:00.000Z","height":1.75,"weight":65,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":184528790,"name":"Elke Vanhoof","nationality":"BEL","sex":"female","date_of_birth":"1991-12-16T00:00:00.000Z","height":1.63,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":1009342,"name":"Ella Nelson","nationality":"AUS","sex":"female","date_of_birth":"1994-05-10T00:00:00.000Z","height":1.69,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":657233215,"name":"Ella Nicholas","nationality":"COK","sex":"female","date_of_birth":"1990-12-15T00:00:00.000Z","height":1.6,"weight":62,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":312672556,"name":"Ellen Hogerwerf","nationality":"NED","sex":"female","date_of_birth":"1989-02-10T00:00:00.000Z","height":1.83,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":769513585,"name":"Ellen Hoog","nationality":"NED","sex":"female","date_of_birth":"1986-03-25T00:00:00.000Z","height":1.64,"weight":54,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":"In the Netherlands field hockey team since 2004, midfielder Ellen Hoog already has more than 100 caps. She was in the team that won gold at Beijing 2008 and London 2012, in addition to the 2006 and 2014 world cups."},{"id":970232379,"name":"Ellen Sprunger","nationality":"SUI","sex":"female","date_of_birth":"1986-08-05T00:00:00.000Z","height":1.72,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":667380122,"name":"Ellen Tomek","nationality":"USA","sex":"female","date_of_birth":"1984-05-01T00:00:00.000Z","height":1.78,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":322522581,"name":"Ellen van Dijk","nationality":"NED","sex":"female","date_of_birth":"1987-02-11T00:00:00.000Z","height":1.82,"weight":71,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":579116180,"name":"Ellia Green","nationality":"AUS","sex":"female","date_of_birth":"1993-02-20T00:00:00.000Z","height":1.72,"weight":75,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":163208975,"name":"Ellie Carpenter","nationality":"AUS","sex":"female","date_of_birth":"2000-04-28T00:00:00.000Z","height":1.65,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":191092318,"name":"Ellie Faulkner","nationality":"GBR","sex":"female","date_of_birth":"1993-01-05T00:00:00.000Z","height":1.65,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":164454907,"name":"Elliot Giles","nationality":"GBR","sex":"male","date_of_birth":"1994-05-26T00:00:00.000Z","height":1.83,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":986117521,"name":"Elliot van Strydonck","nationality":"BEL","sex":"male","date_of_birth":"1988-07-21T00:00:00.000Z","height":1.85,"weight":75,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":933444753,"name":"Ellis Oreilly","nationality":"IRL","sex":"female","date_of_birth":"1998-02-23T00:00:00.000Z","height":1.64,"weight":63,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":579582876,"name":"Elmar Gasimov","nationality":"AZE","sex":"male","date_of_birth":"1990-11-02T00:00:00.000Z","height":1.88,"weight":100,"sport":"judo","gold":0,"silver":1,"bronze":0,"info":null},{"id":803655195,"name":"Elmira Syzdykova","nationality":"KAZ","sex":"female","date_of_birth":"1992-02-05T00:00:00.000Z","height":1.72,"weight":69,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":434777707,"name":"Elmo Jankari","nationality":"FIN","sex":"male","date_of_birth":"1992-10-13T00:00:00.000Z","height":null,"weight":null,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":285578745,"name":"Elmurat Tasmuradov","nationality":"UZB","sex":"male","date_of_birth":"1991-12-12T00:00:00.000Z","height":1.6,"weight":59,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":699007358,"name":"Elodie Clouvel","nationality":"FRA","sex":"female","date_of_birth":"1989-01-14T00:00:00.000Z","height":1.82,"weight":69,"sport":"modern pentathlon","gold":0,"silver":1,"bronze":0,"info":null},{"id":557773110,"name":"Elodie Guiglion","nationality":"FRA","sex":"female","date_of_birth":"1990-01-28T00:00:00.000Z","height":1.66,"weight":63,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":839282607,"name":"Elodie Ravera-Scaramozzino","nationality":"FRA","sex":"female","date_of_birth":"1995-09-19T00:00:00.000Z","height":1.77,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":310110976,"name":"Elodie Thomis","nationality":"FRA","sex":"female","date_of_birth":"1986-08-13T00:00:00.000Z","height":1.68,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":786667098,"name":"Eloi Imaniraguha","nationality":"RWA","sex":"male","date_of_birth":"1995-01-01T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":366176086,"name":"Eloise Wellings","nationality":"AUS","sex":"female","date_of_birth":"1982-11-09T00:00:00.000Z","height":1.72,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":339293257,"name":"Elroy Gelant","nationality":"RSA","sex":"male","date_of_birth":"1986-08-25T00:00:00.000Z","height":1.75,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":95400560,"name":"Els Rens","nationality":"BEL","sex":"female","date_of_birth":"1983-02-19T00:00:00.000Z","height":1.6,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":584020714,"name":"Elsa Baquerizo McMillan","nationality":"ESP","sex":"female","date_of_birth":"1987-06-25T00:00:00.000Z","height":1.81,"weight":68,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":746327154,"name":"Elsabeth Black","nationality":"CAN","sex":"female","date_of_birth":"1995-09-08T00:00:00.000Z","height":1.55,"weight":56,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":31920396,"name":"Elshod Rasulov","nationality":"UZB","sex":"male","date_of_birth":"1986-03-07T00:00:00.000Z","height":1.84,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":388539796,"name":"Elsie Uwamahoro","nationality":"BDI","sex":"female","date_of_birth":"1988-10-23T00:00:00.000Z","height":1.65,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":396471467,"name":"Elson Brechtefeld","nationality":"NRU","sex":"male","date_of_birth":"1994-03-02T00:00:00.000Z","height":1.55,"weight":56,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":821149858,"name":"Elvin Mamishzada","nationality":"AZE","sex":"male","date_of_birth":"1991-12-17T00:00:00.000Z","height":1.65,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":405623057,"name":"Elvin Mursaliyev","nationality":"AZE","sex":"male","date_of_birth":"1988-08-17T00:00:00.000Z","height":1.78,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":357059083,"name":"Elvina Karimova","nationality":"RUS","sex":"female","date_of_birth":"1994-03-25T00:00:00.000Z","height":1.66,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":95609795,"name":"Elvismar Rodriguez","nationality":"VEN","sex":"female","date_of_birth":"1997-02-14T00:00:00.000Z","height":1.78,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":584799839,"name":"Elyane Boal","nationality":"CPV","sex":"female","date_of_birth":"1998-04-26T00:00:00.000Z","height":1.7,"weight":58,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":228262342,"name":"Ema Ramusovic","nationality":"MNE","sex":"female","date_of_birth":"1996-11-28T00:00:00.000Z","height":1.83,"weight":78,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":772515939,"name":"Emanuel Andrade","nationality":"VEN","sex":"male","date_of_birth":"1996-09-11T00:00:00.000Z","height":1.89,"weight":76,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":829728385,"name":"Emanuel Buchmann","nationality":"GER","sex":"male","date_of_birth":"1992-11-18T00:00:00.000Z","height":1.81,"weight":61,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":655933510,"name":"Emanuel Silva","nationality":"POR","sex":"male","date_of_birth":"1985-12-04T00:00:00.000Z","height":1.86,"weight":87,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":937016443,"name":"Emanuele Birarelli","nationality":"ITA","sex":"male","date_of_birth":"1981-02-08T00:00:00.000Z","height":2.02,"weight":95,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":728574987,"name":"Emanuele Gaudiano","nationality":"ITA","sex":"male","date_of_birth":"1986-06-30T00:00:00.000Z","height":1.75,"weight":70,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":268422927,"name":"Emanuele Liuzzi","nationality":"ITA","sex":"male","date_of_birth":"1990-12-22T00:00:00.000Z","height":1.91,"weight":85,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":677858337,"name":"Emanuelle Lima","nationality":"BRA","sex":"female","date_of_birth":"1996-05-03T00:00:00.000Z","height":1.67,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":865724111,"name":"Emel Dereli","nationality":"TUR","sex":"female","date_of_birth":"1996-02-25T00:00:00.000Z","height":1.81,"weight":110,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":987023518,"name":"Emelda Piata Zessi","nationality":"CMR","sex":"female","date_of_birth":"1997-04-08T00:00:00.000Z","height":1.9,"weight":65,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":588334076,"name":"Emelie Lundberg","nationality":"SWE","sex":"female","date_of_birth":"1993-03-10T00:00:00.000Z","height":1.73,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":468726382,"name":"Emerric Kpegba","nationality":"TOG","sex":"male","date_of_birth":"1999-05-29T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":174328356,"name":"Emerson Duarte","nationality":"BRA","sex":"male","date_of_birth":"1971-10-18T00:00:00.000Z","height":1.82,"weight":80,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":414726536,"name":"Emese Szasz","nationality":"HUN","sex":"female","date_of_birth":"1982-09-07T00:00:00.000Z","height":1.76,"weight":71,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":852099973,"name":"Emi Nishikori","nationality":"JPN","sex":"female","date_of_birth":"1993-01-09T00:00:00.000Z","height":1.6,"weight":53,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":87680964,"name":"Emil Larsen","nationality":"DEN","sex":"male","date_of_birth":"1991-06-22T00:00:00.000Z","height":1.83,"weight":79,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":514462575,"name":"Emil Milev","nationality":"USA","sex":"male","date_of_birth":"1968-05-02T00:00:00.000Z","height":1.78,"weight":83,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":974556928,"name":"Emilce Sosa","nationality":"ARG","sex":"female","date_of_birth":"1987-09-11T00:00:00.000Z","height":1.77,"weight":72,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":782571227,"name":"Emilee Cherry","nationality":"AUS","sex":"female","date_of_birth":"1992-11-02T00:00:00.000Z","height":1.68,"weight":70,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":126099613,"name":"Emilia Alina Vuc","nationality":"ROU","sex":"female","date_of_birth":"1993-10-04T00:00:00.000Z","height":1.54,"weight":50,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":348572893,"name":"Emilia Ankiewicz","nationality":"POL","sex":"female","date_of_birth":"1990-11-22T00:00:00.000Z","height":1.78,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":202538392,"name":"Emilia Appelqvist","nationality":"SWE","sex":"female","date_of_birth":"1990-02-11T00:00:00.000Z","height":1.68,"weight":65,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":43289045,"name":"Emilia Fahlin","nationality":"SWE","sex":"female","date_of_birth":"1988-10-24T00:00:00.000Z","height":1.76,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":136493766,"name":"Emilia Pikkarainen","nationality":"FIN","sex":"female","date_of_birth":"1992-10-11T00:00:00.000Z","height":1.73,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":743555148,"name":"Emiliano Grillo","nationality":"ARG","sex":"male","date_of_birth":"1992-09-14T00:00:00.000Z","height":1.78,"weight":78,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":699500168,"name":"Emiliano Lasa","nationality":"URU","sex":"male","date_of_birth":"1990-01-25T00:00:00.000Z","height":1.8,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":561775789,"name":"Emilie Andeol","nationality":"FRA","sex":"female","date_of_birth":"1987-10-30T00:00:00.000Z","height":1.7,"weight":97,"sport":"judo","gold":1,"silver":0,"bronze":0,"info":null},{"id":339081349,"name":"Emilie Fournel","nationality":"CAN","sex":"female","date_of_birth":"1986-10-26T00:00:00.000Z","height":1.55,"weight":59,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":542195691,"name":"Emilie Hegh Arntzen","nationality":"NOR","sex":"female","date_of_birth":"1994-01-01T00:00:00.000Z","height":1.83,"weight":null,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":466069449,"name":"Emilie Menuet","nationality":"FRA","sex":"female","date_of_birth":"1991-09-27T00:00:00.000Z","height":1.55,"weight":44,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":702824407,"name":"Emily Batty","nationality":"CAN","sex":"female","date_of_birth":"1988-06-16T00:00:00.000Z","height":1.61,"weight":48,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":146940230,"name":"Emily Diamond","nationality":"GBR","sex":"female","date_of_birth":"1991-06-11T00:00:00.000Z","height":1.73,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":838354626,"name":"Emily Gielnik","nationality":"AUS","sex":"female","date_of_birth":"1992-05-13T00:00:00.000Z","height":null,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":265521340,"name":"Emily Infeld","nationality":"USA","sex":"female","date_of_birth":"1990-03-21T00:00:00.000Z","height":1.63,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":746574483,"name":"Emily Morley","nationality":"BAH","sex":"female","date_of_birth":"1993-12-06T00:00:00.000Z","height":1.53,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":736663132,"name":"Emily Overholt","nationality":"CAN","sex":"female","date_of_birth":"1997-10-04T00:00:00.000Z","height":1.7,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":345975199,"name":"Emily Regan","nationality":"USA","sex":"female","date_of_birth":"1988-06-10T00:00:00.000Z","height":1.88,"weight":80,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":905464042,"name":"Emily Rogers","nationality":"AUS","sex":"female","date_of_birth":"1998-03-25T00:00:00.000Z","height":1.73,"weight":52,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":651596941,"name":"Emily Scarratt","nationality":"GBR","sex":"female","date_of_birth":"1990-02-08T00:00:00.000Z","height":1.81,"weight":79,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":817845839,"name":"Emily Scott","nationality":"GBR","sex":"female","date_of_birth":"1992-06-30T00:00:00.000Z","height":1.65,"weight":60,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":75025673,"name":"Emily Seebohm","nationality":"AUS","sex":"female","date_of_birth":"1992-06-05T00:00:00.000Z","height":1.8,"weight":70,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":763142277,"name":"Emily Smith","nationality":"AUS","sex":"female","date_of_birth":"1992-07-28T00:00:00.000Z","height":1.59,"weight":55,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":688367620,"name":"Emily Sonnett","nationality":"USA","sex":"female","date_of_birth":"1993-11-25T00:00:00.000Z","height":1.68,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":914565471,"name":"Emily van Egmond","nationality":"AUS","sex":"female","date_of_birth":"1993-07-12T00:00:00.000Z","height":1.79,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":297385649,"name":"Emma Berglund","nationality":"SWE","sex":"female","date_of_birth":"1988-12-19T00:00:00.000Z","height":1.72,"weight":63,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":469541944,"name":"Emma Coburn","nationality":"USA","sex":"female","date_of_birth":"1990-10-19T00:00:00.000Z","height":1.73,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":325186756,"name":"Emma Dyke","nationality":"NZL","sex":"female","date_of_birth":"1995-06-30T00:00:00.000Z","height":1.81,"weight":68,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":763495268,"name":"Emma Hinze","nationality":"GER","sex":"female","date_of_birth":"1997-09-17T00:00:00.000Z","height":1.68,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":87473289,"name":"Emma Johansson","nationality":"SWE","sex":"female","date_of_birth":"1983-09-23T00:00:00.000Z","height":1.68,"weight":54,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":322314005,"name":"Emma Jorgensen","nationality":"DEN","sex":"female","date_of_birth":"1996-01-30T00:00:00.000Z","height":1.69,"weight":70,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":717137601,"name":"Emma Larsson","nationality":"SWE","sex":"female","date_of_birth":"1998-11-15T00:00:00.000Z","height":1.47,"weight":40,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":661638106,"name":"Emma McKeon","nationality":"AUS","sex":"female","date_of_birth":"1994-05-24T00:00:00.000Z","height":1.8,"weight":60,"sport":"aquatics","gold":1,"silver":2,"bronze":1,"info":null},{"id":833886353,"name":"Emma Moffatt","nationality":"AUS","sex":"female","date_of_birth":"1984-09-07T00:00:00.000Z","height":1.71,"weight":57,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":493087174,"name":"Emma Pooley","nationality":"GBR","sex":"female","date_of_birth":"1982-10-03T00:00:00.000Z","height":1.57,"weight":50,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":79453290,"name":"Emma Robinson","nationality":"NZL","sex":"female","date_of_birth":"1994-09-26T00:00:00.000Z","height":1.8,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":327389917,"name":"Emma Tonegato","nationality":"AUS","sex":"female","date_of_birth":"1995-03-20T00:00:00.000Z","height":1.65,"weight":63,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":831117796,"name":"Emma Twigg","nationality":"NZL","sex":"female","date_of_birth":"1987-03-01T00:00:00.000Z","height":1.82,"weight":76,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":737526128,"name":"Emmaculate Msipa","nationality":"ZIM","sex":"female","date_of_birth":"1992-06-07T00:00:00.000Z","height":1.68,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":867271718,"name":"Emmanouil Mylonakis","nationality":"GRE","sex":"male","date_of_birth":"1985-04-09T00:00:00.000Z","height":1.85,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":796025213,"name":"Emmanuel Callender","nationality":"TTO","sex":"male","date_of_birth":"1984-05-10T00:00:00.000Z","height":1.89,"weight":86,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":102727571,"name":"Emmanuel Daniel","nationality":"NGR","sex":"male","date_of_birth":"1993-12-17T00:00:00.000Z","height":1.74,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":545212161,"name":"Emmanuel Dasor","nationality":"GHA","sex":"male","date_of_birth":"1995-09-14T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":585502953,"name":"Emmanuel Lebesson","nationality":"FRA","sex":"male","date_of_birth":"1988-04-24T00:00:00.000Z","height":1.8,"weight":75,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":904221545,"name":"Emmanuel Lucenti","nationality":"ARG","sex":"male","date_of_birth":"1984-11-23T00:00:00.000Z","height":1.73,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":364575203,"name":"Emmanuel Matadi","nationality":"LBR","sex":"male","date_of_birth":"1991-04-15T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":686447847,"name":"Emmanuel Stockbroekx","nationality":"BEL","sex":"male","date_of_birth":"1993-12-23T00:00:00.000Z","height":1.89,"weight":88,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":291735162,"name":"Emmanuel Vanluchene","nationality":"BEL","sex":"male","date_of_birth":"1992-12-09T00:00:00.000Z","height":1.8,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":578388383,"name":"Emmanuel Zapata","nationality":"ARG","sex":"male","date_of_birth":"1986-10-07T00:00:00.000Z","height":1.8,"weight":80,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":238544524,"name":"Emre Zafer Barnes","nationality":"TUR","sex":"male","date_of_birth":"1988-11-07T00:00:00.000Z","height":1.78,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":333123827,"name":"Enas Mostafa Youssef Ahmed","nationality":"EGY","sex":"female","date_of_birth":"1989-01-01T00:00:00.000Z","height":1.65,"weight":69,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":450857033,"name":"Endry Jose Saavedra","nationality":"VEN","sex":"male","date_of_birth":"1991-05-14T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":282037284,"name":"Endy Miyem","nationality":"FRA","sex":"female","date_of_birth":"1988-05-15T00:00:00.000Z","height":1.88,"weight":87,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":166163342,"name":"English Gardner","nationality":"USA","sex":"female","date_of_birth":"1992-04-22T00:00:00.000Z","height":1.68,"weight":54,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":786298586,"name":"Enkelejda Shehaj Bekurti","nationality":"USA","sex":"female","date_of_birth":"1969-01-23T00:00:00.000Z","height":1.63,"weight":57,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":957160839,"name":"Enkh-Amar Kharkhuu","nationality":"MGL","sex":"male","date_of_birth":"1992-08-05T00:00:00.000Z","height":1.7,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":62584278,"name":"Enrico D'Aniello","nationality":"ITA","sex":"male","date_of_birth":"1995-12-06T00:00:00.000Z","height":1.52,"weight":53,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":686586839,"name":"Enrico Garozzo","nationality":"ITA","sex":"male","date_of_birth":"1989-06-21T00:00:00.000Z","height":1.9,"weight":70,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":3678441,"name":"Enrico Lacruz","nationality":"NED","sex":"male","date_of_birth":"1993-08-31T00:00:00.000Z","height":1.81,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":561159124,"name":"Enrique Brol","nationality":"GUA","sex":"male","date_of_birth":"1978-10-09T00:00:00.000Z","height":1.81,"weight":73,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":445189278,"name":"Enrique Jose Arathoon Pacas","nationality":"ESA","sex":"male","date_of_birth":"1992-01-18T00:00:00.000Z","height":1.8,"weight":78,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":968294058,"name":"Enzo Khasz","nationality":"FRA","sex":"male","date_of_birth":"1993-08-13T00:00:00.000Z","height":2.03,"weight":105,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":484934440,"name":"Enzo Lefort","nationality":"FRA","sex":"male","date_of_birth":"1991-09-29T00:00:00.000Z","height":1.91,"weight":80,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":533594099,"name":"Enzo Yanez","nationality":"CHI","sex":"male","date_of_birth":"1985-09-13T00:00:00.000Z","height":1.74,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":57332594,"name":"Eoin Coughlan","nationality":"AUS","sex":"male","date_of_birth":"1992-03-31T00:00:00.000Z","height":1.86,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":246404947,"name":"Epke Zonderland","nationality":"NED","sex":"male","date_of_birth":"1986-04-16T00:00:00.000Z","height":1.73,"weight":69,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":628232189,"name":"Epp Mae","nationality":"EST","sex":"female","date_of_birth":"1992-04-02T00:00:00.000Z","height":1.7,"weight":76,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":800797383,"name":"Ercan Muslu","nationality":"TUR","sex":"male","date_of_birth":"1988-12-01T00:00:00.000Z","height":1.6,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":577556820,"name":"Erdinc Kebapci","nationality":"TUR","sex":"male","date_of_birth":"1993-06-27T00:00:00.000Z","height":1.91,"weight":77,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":897791102,"name":"Eri Hozumi","nationality":"JPN","sex":"female","date_of_birth":"1994-02-17T00:00:00.000Z","height":1.67,"weight":60,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":41617234,"name":"Eri Tosaka","nationality":"JPN","sex":"female","date_of_birth":"1993-08-30T00:00:00.000Z","height":1.52,"weight":53,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":370045491,"name":"Eri Yonamine","nationality":"JPN","sex":"female","date_of_birth":"1991-04-25T00:00:00.000Z","height":1.6,"weight":51,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":121824937,"name":"Eric Alejandro","nationality":"PUR","sex":"male","date_of_birth":"1986-04-15T00:00:00.000Z","height":1.8,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":365293202,"name":"Eric Cray","nationality":"PHI","sex":"male","date_of_birth":"1988-11-06T00:00:00.000Z","height":1.76,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":250274348,"name":"Eric Delaunay","nationality":"FRA","sex":"male","date_of_birth":"1987-12-04T00:00:00.000Z","height":1.78,"weight":83,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":569855647,"name":"Eric Gillis","nationality":"CAN","sex":"male","date_of_birth":"1980-03-08T00:00:00.000Z","height":1.72,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":952826532,"name":"Eric Johannesen","nationality":"GER","sex":"male","date_of_birth":"1988-07-16T00:00:00.000Z","height":1.93,"weight":100,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":317561671,"name":"Eric Lamaze","nationality":"CAN","sex":"male","date_of_birth":"1968-04-17T00:00:00.000Z","height":1.7,"weight":65,"sport":"equestrian","gold":0,"silver":0,"bronze":1,"info":null},{"id":281183141,"name":"Eric Murray","nationality":"NZL","sex":"male","date_of_birth":"1982-05-06T00:00:00.000Z","height":1.95,"weight":98,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":92531992,"name":"Eric Oelschlaegel","nationality":"GER","sex":"male","date_of_birth":"1995-09-19T00:00:00.000Z","height":1.93,"weight":87,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":720596790,"name":"Eric Woelfl","nationality":"CAN","sex":"male","date_of_birth":"1989-07-18T00:00:00.000Z","height":1.93,"weight":69,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":289444580,"name":"Erica Elizabeth Wiebe","nationality":"CAN","sex":"female","date_of_birth":"1989-06-13T00:00:00.000Z","height":1.75,"weight":75,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":43783175,"name":"Erica de Sena","nationality":"BRA","sex":"female","date_of_birth":"1985-05-03T00:00:00.000Z","height":1.68,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":431001912,"name":"Erick Aguirre","nationality":"MEX","sex":"male","date_of_birth":"1997-02-23T00:00:00.000Z","height":1.7,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":703944277,"name":"Erick Barrondo","nationality":"GUA","sex":"male","date_of_birth":"1991-06-14T00:00:00.000Z","height":1.78,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":239360706,"name":"Erick Gutierrez","nationality":"MEX","sex":"male","date_of_birth":"1995-06-15T00:00:00.000Z","height":1.76,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":493508166,"name":"Erick Rodriguez","nationality":"NCA","sex":"male","date_of_birth":"1990-06-01T00:00:00.000Z","height":1.73,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":577570329,"name":"Erick Torres","nationality":"MEX","sex":"male","date_of_birth":"1993-01-19T00:00:00.000Z","height":1.83,"weight":79,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":438356215,"name":"Erik Heil","nationality":"GER","sex":"male","date_of_birth":"1989-08-10T00:00:00.000Z","height":1.85,"weight":80,"sport":"sailing","gold":0,"silver":0,"bronze":1,"info":null},{"id":571952374,"name":"Erik Kynard","nationality":"USA","sex":"male","date_of_birth":"1991-02-03T00:00:00.000Z","height":1.94,"weight":89,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":421842394,"name":"Erik Persson","nationality":"SWE","sex":"male","date_of_birth":"1994-01-12T00:00:00.000Z","height":1.81,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":184812086,"name":"Erik Pfeifer","nationality":"GER","sex":"male","date_of_birth":"1987-01-22T00:00:00.000Z","height":1.91,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":474166352,"name":"Erik Shoji","nationality":"USA","sex":"male","date_of_birth":"1989-08-24T00:00:00.000Z","height":1.84,"weight":83,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":476898873,"name":"Erik Tysse","nationality":"NOR","sex":"male","date_of_birth":"1980-12-04T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":296441839,"name":"Erik Varga","nationality":"SVK","sex":"male","date_of_birth":"1976-06-09T00:00:00.000Z","height":1.84,"weight":90,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":939093162,"name":"Erik Vlcek","nationality":"SVK","sex":"male","date_of_birth":"1981-12-29T00:00:00.000Z","height":1.89,"weight":89,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":898845676,"name":"Erika","nationality":"BRA","sex":"female","date_of_birth":"1988-02-04T00:00:00.000Z","height":1.72,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":594663400,"name":"Erika Abril","nationality":"COL","sex":"female","date_of_birth":"1978-03-29T00:00:00.000Z","height":1.64,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":938043431,"name":"Erika Araki","nationality":"JPN","sex":"female","date_of_birth":"1984-08-03T00:00:00.000Z","height":1.86,"weight":78,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":876370845,"name":"Erika Fasana","nationality":"ITA","sex":"female","date_of_birth":"1996-02-17T00:00:00.000Z","height":1.49,"weight":44,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":699027822,"name":"Erika Ferraioli","nationality":"ITA","sex":"female","date_of_birth":"1986-03-23T00:00:00.000Z","height":1.8,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":574116085,"name":"Erika Kinsey","nationality":"SWE","sex":"female","date_of_birth":"1988-03-10T00:00:00.000Z","height":1.85,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":907121538,"name":"Erika Kirpu","nationality":"EST","sex":"female","date_of_birth":"1992-06-22T00:00:00.000Z","height":1.74,"weight":61,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":136448459,"name":"Erika Miranda","nationality":"BRA","sex":"female","date_of_birth":"1987-06-04T00:00:00.000Z","height":1.62,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":630444522,"name":"Erika Olivera","nationality":"CHI","sex":"female","date_of_birth":"1976-01-04T00:00:00.000Z","height":1.63,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":121922663,"name":"Erika Seltenreich-Hodgson","nationality":"CAN","sex":"female","date_of_birth":"1995-04-24T00:00:00.000Z","height":1.7,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":923211927,"name":"Erika Souza","nationality":"BRA","sex":"female","date_of_birth":"1982-03-09T00:00:00.000Z","height":1.97,"weight":92,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":854947298,"name":"Erika Villaecija garcia","nationality":"ESP","sex":"female","date_of_birth":"1984-06-02T00:00:00.000Z","height":1.77,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":861627176,"name":"Erin Densham","nationality":"AUS","sex":"female","date_of_birth":"1985-05-03T00:00:00.000Z","height":1.65,"weight":52,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":988480190,"name":"Erin Nayler","nationality":"NZL","sex":"female","date_of_birth":"1992-04-17T00:00:00.000Z","height":1.77,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":582093558,"name":"Erin Phillips","nationality":"AUS","sex":"female","date_of_birth":"1985-05-19T00:00:00.000Z","height":1.73,"weight":70,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":940555509,"name":"Erin Rafuse","nationality":"CAN","sex":"female","date_of_birth":"1988-12-02T00:00:00.000Z","height":1.73,"weight":60,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":468726001,"name":"Erin Teschuk","nationality":"CAN","sex":"female","date_of_birth":"1994-10-25T00:00:00.000Z","height":1.63,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":654439782,"name":"Erina Jeke","nationality":"ZIM","sex":"female","date_of_birth":"1990-09-16T00:00:00.000Z","height":1.63,"weight":53,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":738743977,"name":"Erislandy Savon","nationality":"CUB","sex":"male","date_of_birth":"1990-07-21T00:00:00.000Z","height":1.92,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":626115327,"name":"Erkin Adylbek Uulu","nationality":"KGZ","sex":"male","date_of_birth":"1991-02-14T00:00:00.000Z","height":1.9,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":591654381,"name":"Erlon de Souza Silva","nationality":"BRA","sex":"male","date_of_birth":"1991-06-23T00:00:00.000Z","height":1.75,"weight":78,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":92210230,"name":"Ernesto Andres Zamora","nationality":"URU","sex":"male","date_of_birth":"1983-04-13T00:00:00.000Z","height":1.8,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":996057548,"name":"Ernesto Boardman","nationality":"MEX","sex":"male","date_of_birth":"1993-02-23T00:00:00.000Z","height":1.75,"weight":92,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":301160522,"name":"Ernesto Reve","nationality":"CUB","sex":"male","date_of_birth":"1992-02-26T00:00:00.000Z","height":1.82,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":964710866,"name":"Ernst Rost-Onnes","nationality":"BRA","sex":"male","date_of_birth":"1985-12-05T00:00:00.000Z","height":1.84,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":840577893,"name":"Ersin Tacir","nationality":"TUR","sex":"male","date_of_birth":"1985-04-01T00:00:00.000Z","height":1.7,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":585533638,"name":"Erwan le Pechoux","nationality":"FRA","sex":"male","date_of_birth":"1982-01-13T00:00:00.000Z","height":1.71,"weight":65,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":794735118,"name":"Erwin Jose Caraballo Cabrera","nationality":"VEN","sex":"male","date_of_birth":"1981-07-21T00:00:00.000Z","height":1.85,"weight":130,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":200848465,"name":"Erwin Maldonado","nationality":"VEN","sex":"male","date_of_birth":"1983-07-25T00:00:00.000Z","height":1.7,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":138493384,"name":"Ese Brume","nationality":"NGR","sex":"female","date_of_birth":"1996-01-20T00:00:00.000Z","height":1.67,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":78109140,"name":"Eseosa Desalu","nationality":"ITA","sex":"male","date_of_birth":"1994-02-19T00:00:00.000Z","height":1.8,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":812990220,"name":"Eslam Eissa","nationality":"EGY","sex":"male","date_of_birth":"1988-07-02T00:00:00.000Z","height":1.85,"weight":80,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":140388998,"name":"Esma Aydemir","nationality":"TUR","sex":"female","date_of_birth":"1992-01-01T00:00:00.000Z","height":1.6,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":276263740,"name":"Esmee Vermeulen","nationality":"NED","sex":"female","date_of_birth":"1996-04-21T00:00:00.000Z","height":1.79,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":11916654,"name":"Espen Kofstad","nationality":"NOR","sex":"male","date_of_birth":"1987-08-11T00:00:00.000Z","height":null,"weight":null,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":240797974,"name":"Esra Ural","nationality":"TUR","sex":"female","date_of_birth":"1991-08-18T00:00:00.000Z","height":1.98,"weight":100,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":535348868,"name":"Esraa Ahmed","nationality":"EGY","sex":"female","date_of_birth":"1998-11-21T00:00:00.000Z","height":1.5,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":54624746,"name":"Esref Apak","nationality":"TUR","sex":"male","date_of_birth":"1982-01-03T00:00:00.000Z","height":1.84,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":243334151,"name":"Estavana Polman","nationality":"NED","sex":"female","date_of_birth":"1992-08-05T00:00:00.000Z","height":1.73,"weight":65,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":246336777,"name":"Esteban Enderica","nationality":"ECU","sex":"male","date_of_birth":"1990-10-30T00:00:00.000Z","height":1.77,"weight":71,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":969516375,"name":"Esteban Grimalt","nationality":"CHI","sex":"male","date_of_birth":"1991-01-09T00:00:00.000Z","height":1.9,"weight":88,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":962423324,"name":"Estefania Alvarez Piedrahita","nationality":"COL","sex":"female","date_of_birth":"1994-08-25T00:00:00.000Z","height":1.62,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":318230176,"name":"Estefania Garcia","nationality":"ECU","sex":"female","date_of_birth":"1988-05-13T00:00:00.000Z","height":1.65,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":61187111,"name":"Estefania Ramirez","nationality":"COL","sex":"female","date_of_birth":"1991-09-10T00:00:00.000Z","height":1.68,"weight":69,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":776130602,"name":"Estela Garcia","nationality":"ESP","sex":"female","date_of_birth":"1989-03-20T00:00:00.000Z","height":1.7,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":438033327,"name":"Estela Navascues","nationality":"ESP","sex":"female","date_of_birth":"1981-02-03T00:00:00.000Z","height":1.63,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":208192255,"name":"Estellah Fils Rabetsara","nationality":"MAD","sex":"female","date_of_birth":"1994-05-29T00:00:00.000Z","height":1.67,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":317848923,"name":"Estelle Mossely","nationality":"FRA","sex":"female","date_of_birth":"1992-08-19T00:00:00.000Z","height":1.68,"weight":null,"sport":"boxing","gold":1,"silver":0,"bronze":0,"info":null},{"id":38750795,"name":"Estelle Nze-Minko","nationality":"FRA","sex":"female","date_of_birth":"1991-08-11T00:00:00.000Z","height":1.78,"weight":67,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":789081554,"name":"Esther Barrugues Alvina","nationality":"AND","sex":"female","date_of_birth":"1980-05-16T00:00:00.000Z","height":1.64,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":982554606,"name":"Esther Guerrero","nationality":"ESP","sex":"female","date_of_birth":"1990-02-07T00:00:00.000Z","height":1.68,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":411235848,"name":"Esther Qin","nationality":"AUS","sex":"female","date_of_birth":"1991-11-18T00:00:00.000Z","height":1.68,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":29928369,"name":"Esther Stam","nationality":"GEO","sex":"female","date_of_birth":"1987-03-11T00:00:00.000Z","height":1.74,"weight":75,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":928379539,"name":"Etel Sanchez","nationality":"ARG","sex":"female","date_of_birth":"1989-08-23T00:00:00.000Z","height":1.71,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":572871860,"name":"Etenesh Diro","nationality":"ETH","sex":"female","date_of_birth":"1991-05-10T00:00:00.000Z","height":1.68,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":711536725,"name":"Ethan Mitchell","nationality":"NZL","sex":"male","date_of_birth":"1991-02-19T00:00:00.000Z","height":1.8,"weight":83,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":724574659,"name":"Etiene Medeiros","nationality":"BRA","sex":"female","date_of_birth":"1991-05-24T00:00:00.000Z","height":1.69,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":182669270,"name":"Etienne Hubert","nationality":"FRA","sex":"male","date_of_birth":"1988-01-27T00:00:00.000Z","height":1.85,"weight":86,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":17751725,"name":"Etimoni Timuani","nationality":"TUV","sex":"male","date_of_birth":"1991-10-14T00:00:00.000Z","height":1.84,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":777342251,"name":"Eugene Magee","nationality":"IRL","sex":"male","date_of_birth":"1986-04-01T00:00:00.000Z","height":1.77,"weight":83,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":855597933,"name":"Eugene Wang","nationality":"CAN","sex":"male","date_of_birth":"1985-11-13T00:00:00.000Z","height":1.74,"weight":80,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":479811363,"name":"Eugenie Bouchard","nationality":"CAN","sex":"female","date_of_birth":"1994-02-25T00:00:00.000Z","height":1.78,"weight":58,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":446528894,"name":"Eugenie le Sommer","nationality":"FRA","sex":"female","date_of_birth":"1989-05-18T00:00:00.000Z","height":1.61,"weight":58,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":182815845,"name":"Eugenio Rossi","nationality":"SMR","sex":"male","date_of_birth":"1992-03-06T00:00:00.000Z","height":1.92,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":841004916,"name":"Eun Hee Ryu","nationality":"KOR","sex":"female","date_of_birth":"1990-02-24T00:00:00.000Z","height":1.8,"weight":76,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":910783696,"name":"Eun Ju Lee","nationality":"KOR","sex":"female","date_of_birth":"1999-03-05T00:00:00.000Z","height":1.48,"weight":null,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":465103196,"name":"Eunbi Cheon","nationality":"KOR","sex":"female","date_of_birth":"1992-02-07T00:00:00.000Z","height":1.65,"weight":59,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":879574989,"name":"Eunbi Lee","nationality":"KOR","sex":"female","date_of_birth":"1990-10-23T00:00:00.000Z","height":1.63,"weight":58,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":53526732,"name":"Eunhye Kim","nationality":"KOR","sex":"female","date_of_birth":"1987-05-08T00:00:00.000Z","height":1.61,"weight":50,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":11561844,"name":"Eunice Chibanda","nationality":"ZIM","sex":"female","date_of_birth":"1993-03-26T00:00:00.000Z","height":1.63,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":289758508,"name":"Eunice Jepkirui Kirwa","nationality":"BRN","sex":"female","date_of_birth":"1984-05-20T00:00:00.000Z","height":1.55,"weight":49,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":1089850,"name":"Eunice Jepkoech Sum","nationality":"KEN","sex":"female","date_of_birth":"1988-04-10T00:00:00.000Z","height":1.7,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":847401073,"name":"Eunsook Choi","nationality":"KOR","sex":"female","date_of_birth":"1986-02-28T00:00:00.000Z","height":1.69,"weight":59,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":126463635,"name":"Eva Alicia Gurrola Ortiz","nationality":"MEX","sex":"female","date_of_birth":"1994-05-17T00:00:00.000Z","height":1.55,"weight":63,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":779677104,"name":"Eva Calvo Gomez","nationality":"ESP","sex":"female","date_of_birth":"1991-07-29T00:00:00.000Z","height":1.76,"weight":57,"sport":"taekwondo","gold":0,"silver":1,"bronze":0,"info":null},{"id":18347,"name":"Eva Csernoviczki","nationality":"HUN","sex":"female","date_of_birth":"1986-10-16T00:00:00.000Z","height":1.6,"weight":51,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":133712250,"name":"Eva Hovenkamp","nationality":"NED","sex":"female","date_of_birth":"1996-07-19T00:00:00.000Z","height":1.73,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":810831172,"name":"Eva Lechner","nationality":"ITA","sex":"female","date_of_birth":"1985-07-01T00:00:00.000Z","height":1.65,"weight":50,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":239566230,"name":"Eva Lee","nationality":"USA","sex":"female","date_of_birth":"1986-08-07T00:00:00.000Z","height":1.68,"weight":58,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":876737211,"name":"Eva Odorova","nationality":"SVK","sex":"female","date_of_birth":"1979-11-22T00:00:00.000Z","height":1.75,"weight":60,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":797157508,"name":"Eva Risztov","nationality":"HUN","sex":"female","date_of_birth":"1985-08-30T00:00:00.000Z","height":1.73,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":934827181,"name":"Eva Roesken","nationality":"GER","sex":"female","date_of_birth":"1984-07-05T00:00:00.000Z","height":1.65,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":565124998,"name":"Eva Vrabcova Nyvltova","nationality":"CZE","sex":"female","date_of_birth":"1986-02-06T00:00:00.000Z","height":1.62,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":832639547,"name":"Eva de Goede","nationality":"NED","sex":"female","date_of_birth":"1989-03-23T00:00:00.000Z","height":1.7,"weight":61,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":103773001,"name":"Evagjelia Veli","nationality":"ALB","sex":"female","date_of_birth":"1991-07-16T00:00:00.000Z","height":1.6,"weight":52,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":509893044,"name":"Evaldas Petrauskas","nationality":"LTU","sex":"male","date_of_birth":"1992-03-19T00:00:00.000Z","height":1.64,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":270191422,"name":"Evan Dunfee","nationality":"CAN","sex":"male","date_of_birth":"1990-09-28T00:00:00.000Z","height":1.86,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":707333933,"name":"Evan Jager","nationality":"USA","sex":"male","date_of_birth":"1989-03-08T00:00:00.000Z","height":1.88,"weight":65,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":355432500,"name":"Evan Van Moerkerke","nationality":"CAN","sex":"male","date_of_birth":"1993-08-16T00:00:00.000Z","height":2.05,"weight":110,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":854422751,"name":"Evandro Goncalves Oliveira Junior","nationality":"BRA","sex":"male","date_of_birth":"1990-07-17T00:00:00.000Z","height":2.1,"weight":105,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":861327414,"name":"Evandro M. Guerra","nationality":"BRA","sex":"male","date_of_birth":"1981-12-27T00:00:00.000Z","height":2.07,"weight":103,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":842357019,"name":"Evangelia Papazoglou","nationality":"GRE","sex":"female","date_of_birth":"1995-01-14T00:00:00.000Z","height":1.72,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":171585760,"name":"Evangelia Platanioti","nationality":"GRE","sex":"female","date_of_birth":"1994-08-09T00:00:00.000Z","height":1.7,"weight":52,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":714691544,"name":"Evangelia Psarra","nationality":"GRE","sex":"female","date_of_birth":"1974-06-17T00:00:00.000Z","height":1.72,"weight":63,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":135668596,"name":"Evangelos Ioannis Delakas","nationality":"GRE","sex":"male","date_of_birth":"1985-02-08T00:00:00.000Z","height":1.89,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":507584476,"name":"Evania Pelite","nationality":"AUS","sex":"female","date_of_birth":"1995-07-12T00:00:00.000Z","height":1.69,"weight":67,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":302915787,"name":"Evans Kiplagat Barkowet","nationality":"AZE","sex":"male","date_of_birth":"1988-03-05T00:00:00.000Z","height":1.7,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":91128162,"name":"Eve Macfarlane","nationality":"NZL","sex":"female","date_of_birth":"1992-09-27T00:00:00.000Z","height":1.86,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":132983811,"name":"Evelina Afoa","nationality":"SAM","sex":"female","date_of_birth":"1998-09-13T00:00:00.000Z","height":1.62,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":700402174,"name":"Evelis Aguilar","nationality":"COL","sex":"female","date_of_birth":"1993-01-03T00:00:00.000Z","height":1.73,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":94836813,"name":"Evelyn Cipriano","nationality":"CUB","sex":"female","date_of_birth":"1995-12-24T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":241380224,"name":"Evelyn Rivera","nationality":"COL","sex":"female","date_of_birth":"1997-12-03T00:00:00.000Z","height":1.57,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":176808861,"name":"Evelyn Stevens","nationality":"USA","sex":"female","date_of_birth":"1983-05-09T00:00:00.000Z","height":1.66,"weight":55,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":508215341,"name":"Evelyn Verraszto","nationality":"HUN","sex":"female","date_of_birth":"1989-07-17T00:00:00.000Z","height":1.73,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":822616386,"name":"Evelyne Tschopp","nationality":"SUI","sex":"female","date_of_birth":"1991-06-19T00:00:00.000Z","height":1.62,"weight":55,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":924396982,"name":"Ever Palma","nationality":"MEX","sex":"male","date_of_birth":"1992-03-18T00:00:00.000Z","height":1.66,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":447422012,"name":"Evgenia Ukolova","nationality":"RUS","sex":"female","date_of_birth":"1989-05-17T00:00:00.000Z","height":1.81,"weight":66,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":674582235,"name":"Evgenii Drattcev","nationality":"RUS","sex":"male","date_of_birth":"1983-01-24T00:00:00.000Z","height":1.8,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":491370876,"name":"Evgenii Kuznetsov","nationality":"RUS","sex":"male","date_of_birth":"1990-04-12T00:00:00.000Z","height":1.73,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":355775573,"name":"Evgenii Lukantsov","nationality":"RUS","sex":"male","date_of_birth":"1991-12-05T00:00:00.000Z","height":1.87,"weight":91,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":863520431,"name":"Evgeniia Soboleva","nationality":"RUS","sex":"female","date_of_birth":"1988-08-26T00:00:00.000Z","height":1.8,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":277821751,"name":"Evgeniya Ivanova","nationality":"RUS","sex":"female","date_of_birth":"1987-07-26T00:00:00.000Z","height":1.76,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":475190404,"name":"Evgeniya Ovchinnikova","nationality":"RUS","sex":"female","date_of_birth":"1985-04-07T00:00:00.000Z","height":1.7,"weight":49,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":222720821,"name":"Evgeny Donskoy","nationality":"RUS","sex":"male","date_of_birth":"1990-05-09T00:00:00.000Z","height":1.84,"weight":76,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":474060754,"name":"Evgeny Komarov","nationality":"RUS","sex":"male","date_of_birth":"1988-11-08T00:00:00.000Z","height":1.75,"weight":78,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":475233950,"name":"Evgeny Koptelov","nationality":"RUS","sex":"male","date_of_birth":"1993-11-24T00:00:00.000Z","height":1.91,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":968996509,"name":"Evgeny Rylov","nationality":"RUS","sex":"male","date_of_birth":"1996-09-23T00:00:00.000Z","height":1.84,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":93776802,"name":"Evgeny Tishchenko","nationality":"RUS","sex":"male","date_of_birth":"1991-07-15T00:00:00.000Z","height":1.96,"weight":null,"sport":"boxing","gold":1,"silver":0,"bronze":0,"info":null},{"id":569106125,"name":"Evgheni Nedealco","nationality":"MDA","sex":"male","date_of_birth":"1990-01-03T00:00:00.000Z","height":1.79,"weight":79,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":449788118,"name":"Evi van Acker","nationality":"BEL","sex":"female","date_of_birth":"1985-09-23T00:00:00.000Z","height":1.72,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":664096617,"name":"Evita Leter","nationality":"SUR","sex":"female","date_of_birth":"1995-07-05T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":224043471,"name":"Ewa Swoboda","nationality":"POL","sex":"female","date_of_birth":"1997-07-26T00:00:00.000Z","height":1.67,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":671544226,"name":"Ewelina Ptak","nationality":"POL","sex":"female","date_of_birth":"1987-03-20T00:00:00.000Z","height":1.65,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":644393700,"name":"Ewelina Wojnarowska","nationality":"POL","sex":"female","date_of_birth":"1986-12-13T00:00:00.000Z","height":1.71,"weight":72,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":524481891,"name":"Eyal Levine","nationality":"ISR","sex":"male","date_of_birth":"1986-08-27T00:00:00.000Z","height":1.7,"weight":60,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":317494421,"name":"Eyglo Gustafsdottir","nationality":"ISL","sex":"female","date_of_birth":"1995-02-01T00:00:00.000Z","height":1.87,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":483053147,"name":"Eythora Thorsdottir","nationality":"NED","sex":"female","date_of_birth":"1998-08-10T00:00:00.000Z","height":1.6,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":455154602,"name":"Ezekiel Kemboi","nationality":"KEN","sex":"male","date_of_birth":"1982-05-25T00:00:00.000Z","height":1.67,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":724615961,"name":"Ezequiel Palacios","nationality":"ARG","sex":"male","date_of_birth":"1992-10-02T00:00:00.000Z","height":1.98,"weight":95,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":560065840,"name":"Ezequiel Unsain","nationality":"ARG","sex":"male","date_of_birth":"1995-03-09T00:00:00.000Z","height":1.76,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":340239700,"name":"Ezinne Okparaebo","nationality":"NOR","sex":"female","date_of_birth":"1988-03-03T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":390665654,"name":"Fa Quan Bai","nationality":"CHN","sex":"male","date_of_birth":"1986-03-18T00:00:00.000Z","height":1.73,"weight":66,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":940097096,"name":"Fabian Cancellara","nationality":"SUI","sex":"male","date_of_birth":"1981-03-18T00:00:00.000Z","height":1.86,"weight":81,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":315207567,"name":"Fabian Drzyzga","nationality":"POL","sex":"male","date_of_birth":"1990-01-03T00:00:00.000Z","height":1.96,"weight":90,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":986859469,"name":"Fabian Florant","nationality":"NED","sex":"male","date_of_birth":"1983-02-01T00:00:00.000Z","height":1.8,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":136342210,"name":"Fabian Gomez","nationality":"ARG","sex":"male","date_of_birth":"1978-10-27T00:00:00.000Z","height":1.73,"weight":80,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":630689816,"name":"Fabian Hambuechen","nationality":"GER","sex":"male","date_of_birth":"1987-10-25T00:00:00.000Z","height":1.64,"weight":68,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":null},{"id":893322663,"name":"Fabian Heinle","nationality":"GER","sex":"male","date_of_birth":"1994-05-14T00:00:00.000Z","height":1.87,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":3921925,"name":"Fabian Hernando Puerta Zapata","nationality":"COL","sex":"male","date_of_birth":"1991-07-12T00:00:00.000Z","height":1.82,"weight":90,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":646375341,"name":"Fabian Kauter","nationality":"SUI","sex":"male","date_of_birth":"1985-09-22T00:00:00.000Z","height":1.81,"weight":83,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":357914952,"name":"Fabian Wiede","nationality":"GER","sex":"male","date_of_birth":"1994-02-08T00:00:00.000Z","height":1.94,"weight":94,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":463895086,"name":"Fabiana","nationality":"BRA","sex":"female","date_of_birth":"1989-08-04T00:00:00.000Z","height":1.61,"weight":57,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":978433851,"name":"Fabiana Claudino","nationality":"BRA","sex":"female","date_of_birth":"1985-01-24T00:00:00.000Z","height":1.93,"weight":76,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":708498437,"name":"Fabiana Diniz","nationality":"BRA","sex":"female","date_of_birth":"1981-05-13T00:00:00.000Z","height":1.83,"weight":71,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":716396610,"name":"Fabiana Moraes","nationality":"BRA","sex":"female","date_of_birth":"1986-06-05T00:00:00.000Z","height":1.7,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":415759115,"name":"Fabiana Murer","nationality":"BRA","sex":"female","date_of_birth":"1981-03-16T00:00:00.000Z","height":1.72,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":391451002,"name":"Fabiano Joseph","nationality":"TAN","sex":"male","date_of_birth":"1985-12-24T00:00:00.000Z","height":null,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":146876427,"name":"Fabien Gilot","nationality":"FRA","sex":"male","date_of_birth":"1984-04-27T00:00:00.000Z","height":1.92,"weight":87,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":377151461,"name":"Fabienne In-Albon","nationality":"SUI","sex":"female","date_of_birth":"1986-09-05T00:00:00.000Z","height":1.64,"weight":63,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":903291591,"name":"Fabienne Kohlmann","nationality":"GER","sex":"female","date_of_birth":"1989-11-06T00:00:00.000Z","height":1.7,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":218223862,"name":"Fabienne Schlumpf","nationality":"SUI","sex":"female","date_of_birth":"1990-11-17T00:00:00.000Z","height":1.83,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":586833716,"name":"Fabienne St Louis","nationality":"MRI","sex":"female","date_of_birth":"1988-03-22T00:00:00.000Z","height":1.71,"weight":55,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":748389052,"name":"Fabio Aru","nationality":"ITA","sex":"male","date_of_birth":"1990-07-03T00:00:00.000Z","height":1.83,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":425939081,"name":"Fabio Basile","nationality":"ITA","sex":"male","date_of_birth":"1994-10-07T00:00:00.000Z","height":1.6,"weight":66,"sport":"judo","gold":1,"silver":0,"bronze":0,"info":null},{"id":606133637,"name":"Fabio Chiuffa","nationality":"BRA","sex":"male","date_of_birth":"1989-03-10T00:00:00.000Z","height":1.85,"weight":85,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":578637850,"name":"Fabio Fognini","nationality":"ITA","sex":"male","date_of_birth":"1987-05-24T00:00:00.000Z","height":1.8,"weight":74,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":902180423,"name":"Fabio Infimo","nationality":"ITA","sex":"male","date_of_birth":"1988-07-18T00:00:00.000Z","height":1.94,"weight":86,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":33201075,"name":"Fabio Wyss","nationality":"SUI","sex":"male","date_of_birth":"1989-06-09T00:00:00.000Z","height":1.85,"weight":85,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":683014073,"name":"Fabrice Dabla","nationality":"TOG","sex":"male","date_of_birth":"1992-11-20T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":124241338,"name":"Fabrice Lapierre","nationality":"AUS","sex":"male","date_of_birth":"1983-10-17T00:00:00.000Z","height":1.79,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":96784555,"name":"Fabrice Zango Hugues","nationality":"BUR","sex":"male","date_of_birth":"1993-06-25T00:00:00.000Z","height":1.8,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":797399696,"name":"Fabrizio Donato","nationality":"ITA","sex":"male","date_of_birth":"1976-08-14T00:00:00.000Z","height":1.89,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":244377433,"name":"Fabrizio Zanotti","nationality":"PAR","sex":"male","date_of_birth":"1983-05-21T00:00:00.000Z","height":1.69,"weight":70,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":549448963,"name":"Facundo Callioni","nationality":"ARG","sex":"male","date_of_birth":"1985-10-09T00:00:00.000Z","height":1.83,"weight":77,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":933200790,"name":"Facundo Campazzo","nationality":"ARG","sex":"male","date_of_birth":"1991-03-23T00:00:00.000Z","height":1.81,"weight":85,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":121940121,"name":"Facundo Conte","nationality":"ARG","sex":"male","date_of_birth":"1989-08-25T00:00:00.000Z","height":1.97,"weight":88,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":866117672,"name":"Facundo Olezza Bazan","nationality":"ARG","sex":"male","date_of_birth":"1994-08-30T00:00:00.000Z","height":1.87,"weight":97,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":951494220,"name":"Fadwa Sidi Madane","nationality":"MAR","sex":"female","date_of_birth":"1994-11-20T00:00:00.000Z","height":1.75,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":252487063,"name":"Fahad Talib","nationality":"IRQ","sex":"male","date_of_birth":"1994-10-21T00:00:00.000Z","height":1.9,"weight":84,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":203217392,"name":"Fahem Hammachi","nationality":"ALG","sex":"male","date_of_birth":"1992-03-07T00:00:00.000Z","height":1.78,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":442721,"name":"Faicel Jaballah","nationality":"TUN","sex":"male","date_of_birth":"1988-05-01T00:00:00.000Z","height":1.96,"weight":null,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":932376029,"name":"Faith Chepngetich Kipyegon","nationality":"KEN","sex":"female","date_of_birth":"1994-01-10T00:00:00.000Z","height":1.57,"weight":43,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":511266323,"name":"Faleh Suwead Al Ajami","nationality":"QAT","sex":"male","date_of_birth":"1986-06-05T00:00:00.000Z","height":1.65,"weight":60,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":80472413,"name":"Fan Wang","nationality":"CHN","sex":"female","date_of_birth":"1994-01-27T00:00:00.000Z","height":1.88,"weight":72,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":667913216,"name":"Fang Chen","nationality":"CHN","sex":"female","date_of_birth":"1983-10-19T00:00:00.000Z","height":1.71,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":129560075,"name":"Fangxu Yang","nationality":"CHN","sex":"female","date_of_birth":"1994-10-06T00:00:00.000Z","height":1.9,"weight":71,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":775503680,"name":"Fanny Deberghes","nationality":"FRA","sex":"female","date_of_birth":"1994-02-21T00:00:00.000Z","height":1.7,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":816581601,"name":"Fanny Horta","nationality":"FRA","sex":"female","date_of_birth":"1986-01-22T00:00:00.000Z","height":1.66,"weight":63,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":337880291,"name":"Fanny Lecluyse","nationality":"BEL","sex":"female","date_of_birth":"1992-03-11T00:00:00.000Z","height":1.77,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":742843800,"name":"Fantine Lesaffre","nationality":"FRA","sex":"female","date_of_birth":"1994-11-10T00:00:00.000Z","height":1.8,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":465963657,"name":"Farah Boufadene","nationality":"ALG","sex":"female","date_of_birth":"1999-03-11T00:00:00.000Z","height":1.55,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":140298788,"name":"Farah Jacques","nationality":"CAN","sex":"female","date_of_birth":"1990-02-08T00:00:00.000Z","height":1.74,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":112237470,"name":"Fares Ferjani","nationality":"TUN","sex":"male","date_of_birth":"1997-07-22T00:00:00.000Z","height":1.75,"weight":60,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":924635327,"name":"Fares Ibrahim E. H. Elbakh","nationality":"QAT","sex":"male","date_of_birth":"1998-06-04T00:00:00.000Z","height":1.75,"weight":85,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":351843996,"name":"Farhad Ghaemi","nationality":"IRI","sex":"male","date_of_birth":"1989-08-28T00:00:00.000Z","height":1.97,"weight":73,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":261146293,"name":"Farhan Farhan","nationality":"BRN","sex":"male","date_of_birth":"1996-10-24T00:00:00.000Z","height":1.79,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":591480442,"name":"Farid Chaal","nationality":"ALG","sex":"male","date_of_birth":"1994-07-03T00:00:00.000Z","height":1.9,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":892804755,"name":"Farida Azizova","nationality":"AZE","sex":"female","date_of_birth":"1995-06-06T00:00:00.000Z","height":1.73,"weight":67,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":382788770,"name":"Farida Osman","nationality":"EGY","sex":"female","date_of_birth":"1995-01-18T00:00:00.000Z","height":1.73,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":738027974,"name":"Farkhad Kharki","nationality":"KAZ","sex":"male","date_of_birth":"1991-04-20T00:00:00.000Z","height":1.6,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":1,"info":null},{"id":848404130,"name":"Farzan Ashourzadeh Fallah","nationality":"IRI","sex":"male","date_of_birth":"1996-11-25T00:00:00.000Z","height":1.85,"weight":58,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":335487444,"name":"Fatehah Mustapa","nationality":"MAS","sex":"female","date_of_birth":"1989-03-12T00:00:00.000Z","height":1.63,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":283411647,"name":"Fatema Almahmeed","nationality":"BRN","sex":"female","date_of_birth":"1999-06-14T00:00:00.000Z","height":1.67,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":91359398,"name":"Fatima Alkaramova","nationality":"AZE","sex":"female","date_of_birth":"2002-06-26T00:00:00.000Z","height":1.75,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":300063217,"name":"Fatima Gallardo Carapeto","nationality":"ESP","sex":"female","date_of_birth":"1997-05-24T00:00:00.000Z","height":1.8,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":577411448,"name":"Fatima Galvez","nationality":"ESP","sex":"female","date_of_birth":"1987-01-19T00:00:00.000Z","height":1.66,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":457192080,"name":"Fatma El Sharnouby","nationality":"EGY","sex":"female","date_of_birth":"1997-11-18T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":158999852,"name":"Fatou Dieng","nationality":"SEN","sex":"female","date_of_birth":"1983-08-18T00:00:00.000Z","height":1.67,"weight":60,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":708809781,"name":"Fatoumata Samassekou","nationality":"MLI","sex":"female","date_of_birth":"1987-12-31T00:00:00.000Z","height":1.68,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":930422859,"name":"Faye Husain","nationality":"IOA","sex":"female","date_of_birth":"1994-10-20T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":471409647,"name":"Faye Njie","nationality":"GAM","sex":"male","date_of_birth":"1993-11-23T00:00:00.000Z","height":null,"weight":null,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":454377713,"name":"Fazliddin Gaibnazarov","nationality":"UZB","sex":"male","date_of_birth":"1991-06-16T00:00:00.000Z","height":1.69,"weight":null,"sport":"boxing","gold":1,"silver":0,"bronze":0,"info":null},{"id":156730444,"name":"Federica Pellegrini","nationality":"ITA","sex":"female","date_of_birth":"1988-08-05T00:00:00.000Z","height":1.79,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":131020655,"name":"Federica Radicchi","nationality":"ITA","sex":"female","date_of_birth":"1988-12-21T00:00:00.000Z","height":1.7,"weight":70,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":536316359,"name":"Federico Bocchia","nationality":"ITA","sex":"male","date_of_birth":"1986-10-24T00:00:00.000Z","height":1.97,"weight":93,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":384768641,"name":"Federico Bruno","nationality":"ARG","sex":"male","date_of_birth":"1993-06-18T00:00:00.000Z","height":1.85,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":735031995,"name":"Federico Delbonis","nationality":"ARG","sex":"male","date_of_birth":"1990-10-05T00:00:00.000Z","height":1.93,"weight":89,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":856887683,"name":"Federico Fernandez","nationality":"ARG","sex":"male","date_of_birth":"1989-10-17T00:00:00.000Z","height":1.91,"weight":88,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":429655510,"name":"Federico Gil","nationality":"ARG","sex":"male","date_of_birth":"1988-04-29T00:00:00.000Z","height":1.75,"weight":78,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":959504694,"name":"Federico Grabich","nationality":"ARG","sex":"male","date_of_birth":"1990-03-26T00:00:00.000Z","height":1.93,"weight":92,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":589818101,"name":"Federico Pizarro","nationality":"ARG","sex":"male","date_of_birth":"1986-09-07T00:00:00.000Z","height":1.83,"weight":84,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":51952214,"name":"Federico Turrini","nationality":"ITA","sex":"male","date_of_birth":"1987-07-21T00:00:00.000Z","height":1.93,"weight":87,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":695896806,"name":"Federico Vanelli","nationality":"ITA","sex":"male","date_of_birth":"1991-03-09T00:00:00.000Z","height":1.8,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":38463047,"name":"Federico Vieyra","nationality":"ARG","sex":"male","date_of_birth":"1988-07-21T00:00:00.000Z","height":1.92,"weight":90,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":742848038,"name":"Fedor Vlasov","nationality":"RUS","sex":"male","date_of_birth":"1984-03-28T00:00:00.000Z","height":1.79,"weight":93,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":388453546,"name":"Fedrick Dacres","nationality":"JAM","sex":"male","date_of_birth":"1994-02-28T00:00:00.000Z","height":1.91,"weight":104,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":238428792,"name":"Fehaid Aldeehani","nationality":"IOA","sex":"male","date_of_birth":"1966-10-11T00:00:00.000Z","height":1.76,"weight":95,"sport":"shooting","gold":1,"silver":0,"bronze":0,"info":null},{"id":302682488,"name":"Fei Peng","nationality":"CHN","sex":"male","date_of_birth":"1992-03-06T00:00:00.000Z","height":1.84,"weight":89,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":759792291,"name":"Feihong Pan","nationality":"CHN","sex":"female","date_of_birth":"1989-07-17T00:00:00.000Z","height":1.73,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":54244371,"name":"Feilian Mao","nationality":"CHN","sex":"male","date_of_birth":"1993-07-30T00:00:00.000Z","height":1.85,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":600249643,"name":"Felice Chow","nationality":"TTO","sex":"female","date_of_birth":"1977-06-15T00:00:00.000Z","height":1.75,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":184330822,"name":"Felice Mueller","nationality":"USA","sex":"female","date_of_birth":"1989-10-15T00:00:00.000Z","height":1.86,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":426841600,"name":"Felipe AMARAL","nationality":"BRA","sex":"male","date_of_birth":"1990-10-09T00:00:00.000Z","height":null,"weight":null,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":932918802,"name":"Felipe Aguilar","nationality":"COL","sex":"male","date_of_birth":"1993-01-20T00:00:00.000Z","height":1.91,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":715303809,"name":"Felipe Aguilar","nationality":"CHI","sex":"male","date_of_birth":"1974-11-07T00:00:00.000Z","height":1.7,"weight":72,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":671103389,"name":"Felipe Almeida Wu","nationality":"BRA","sex":"male","date_of_birth":"1992-06-11T00:00:00.000Z","height":1.69,"weight":69,"sport":"shooting","gold":0,"silver":1,"bronze":0,"info":null},{"id":390089818,"name":"Felipe Anderson","nationality":"BRA","sex":"male","date_of_birth":"1993-04-15T00:00:00.000Z","height":1.75,"weight":69,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":854679340,"name":"Felipe Borges","nationality":"BRA","sex":"male","date_of_birth":"1994-11-16T00:00:00.000Z","height":1.85,"weight":72,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":959719489,"name":"Felipe Cardenas Morales","nationality":"CHI","sex":"male","date_of_birth":"1991-07-22T00:00:00.000Z","height":1.83,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":619195032,"name":"Felipe Carmo","nationality":"BRA","sex":"male","date_of_birth":"1997-03-12T00:00:00.000Z","height":null,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":279016707,"name":"Felipe Claro","nationality":"BRA","sex":"male","date_of_birth":"1986-02-28T00:00:00.000Z","height":1.72,"weight":83,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":549441884,"name":"Felipe Franca","nationality":"BRA","sex":"male","date_of_birth":"1987-05-14T00:00:00.000Z","height":1.85,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":476489532,"name":"Felipe Kitadai","nationality":"BRA","sex":"male","date_of_birth":"1989-07-28T00:00:00.000Z","height":1.64,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":245089124,"name":"Felipe Nascimento","nationality":"BRA","sex":"male","date_of_birth":"1993-07-05T00:00:00.000Z","height":1.72,"weight":68,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":452820051,"name":"Felipe Perrone","nationality":"BRA","sex":"male","date_of_birth":"1986-02-27T00:00:00.000Z","height":1.83,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":420641230,"name":"Felipe Reyes","nationality":"ESP","sex":"male","date_of_birth":"1980-03-16T00:00:00.000Z","height":2.04,"weight":109,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":518637481,"name":"Felipe Sancery","nationality":"BRA","sex":"male","date_of_birth":"1994-05-27T00:00:00.000Z","height":1.82,"weight":90,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":921036132,"name":"Felipe Tapia","nationality":"CHI","sex":"male","date_of_birth":"1995-04-25T00:00:00.000Z","height":1.76,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":581423407,"name":"Felipe da Costa E Silva","nationality":"BRA","sex":"male","date_of_birth":"1984-08-08T00:00:00.000Z","height":1.96,"weight":103,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":709441023,"name":"Felisha Johnson","nationality":"USA","sex":"female","date_of_birth":"1989-07-24T00:00:00.000Z","height":1.86,"weight":127,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":556954247,"name":"Felistas Muzongondi","nationality":"ZIM","sex":"female","date_of_birth":"1986-03-22T00:00:00.000Z","height":1.67,"weight":53,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":773046456,"name":"Felix Auboeck","nationality":"AUT","sex":"male","date_of_birth":"1996-12-19T00:00:00.000Z","height":1.98,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":576762169,"name":"Felix Denayer","nationality":"BEL","sex":"male","date_of_birth":"1990-01-31T00:00:00.000Z","height":1.9,"weight":85,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":52397385,"name":"Felix Drahotta","nationality":"GER","sex":"male","date_of_birth":"1989-01-01T00:00:00.000Z","height":2,"weight":102,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":303731329,"name":"Felix Vogg","nationality":"SUI","sex":"male","date_of_birth":"1990-06-19T00:00:00.000Z","height":1.8,"weight":68,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":641453872,"name":"Felix Wimberger","nationality":"GER","sex":"male","date_of_birth":"1990-02-28T00:00:00.000Z","height":1.9,"weight":92,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":534846589,"name":"Femi Ogunode","nationality":"QAT","sex":"male","date_of_birth":"1991-05-15T00:00:00.000Z","height":1.85,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":13738320,"name":"Femke Heemskerk","nationality":"NED","sex":"female","date_of_birth":"1987-09-21T00:00:00.000Z","height":1.8,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":474653253,"name":"Femke Pluim","nationality":"NED","sex":"female","date_of_birth":"1994-05-10T00:00:00.000Z","height":1.8,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":281630482,"name":"Femke Stoltenborg","nationality":"NED","sex":"female","date_of_birth":"1991-07-30T00:00:00.000Z","height":1.89,"weight":82,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":679334702,"name":"Fen Li","nationality":"SWE","sex":"female","date_of_birth":"1976-08-25T00:00:00.000Z","height":1.64,"weight":60,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":934739694,"name":"Feng Chen","nationality":"SIN","sex":"male","date_of_birth":"1994-03-24T00:00:00.000Z","height":1.7,"weight":65,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":887907683,"name":"Feng Zhou","nationality":"CHN","sex":"female","date_of_birth":"1993-09-12T00:00:00.000Z","height":1.75,"weight":71,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":481744691,"name":"Fengkai Yu","nationality":"CHN","sex":"male","date_of_birth":"1995-03-13T00:00:00.000Z","height":1.93,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":991490353,"name":"Fengliu Zhang","nationality":"CHN","sex":"female","date_of_birth":"1989-11-15T00:00:00.000Z","height":1.72,"weight":77,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":870522604,"name":"Fengyue Pang","nationality":"CHN","sex":"female","date_of_birth":"1989-01-19T00:00:00.000Z","height":1.65,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":65705163,"name":"Ferdinand Gerz","nationality":"GER","sex":"male","date_of_birth":"1988-11-17T00:00:00.000Z","height":1.76,"weight":62,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":256517204,"name":"Ferenc Szekszardi","nationality":"AUS","sex":"male","date_of_birth":"1979-09-22T00:00:00.000Z","height":1.78,"weight":79,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":451152705,"name":"Ferenc Szentirmai","nationality":"UKR","sex":"male","date_of_birth":"1983-11-29T00:00:00.000Z","height":1.8,"weight":75,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":562337692,"name":"Fergus Kavanagh","nationality":"AUS","sex":"male","date_of_birth":"1985-05-21T00:00:00.000Z","height":1.82,"weight":75,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":794973951,"name":"Ferguson Cheruiyot Rotich","nationality":"KEN","sex":"male","date_of_birth":"1989-11-30T00:00:00.000Z","height":1.85,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":352965099,"name":"Ferhat Arican","nationality":"TUR","sex":"male","date_of_birth":"1993-07-28T00:00:00.000Z","height":1.78,"weight":68,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":596003773,"name":"Fernanda Decnop","nationality":"BRA","sex":"female","date_of_birth":"1987-06-19T00:00:00.000Z","height":1.72,"weight":67,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":828133435,"name":"Fernanda Ferreira","nationality":"BRA","sex":"female","date_of_birth":"1985-01-25T00:00:00.000Z","height":1.63,"weight":58,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":269045350,"name":"Fernanda Franca da Silva","nationality":"BRA","sex":"female","date_of_birth":"1989-09-25T00:00:00.000Z","height":1.76,"weight":68,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":114303596,"name":"Fernanda Martins","nationality":"BRA","sex":"female","date_of_birth":"1988-07-26T00:00:00.000Z","height":1.75,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":529630572,"name":"Fernanda Oliveira","nationality":"BRA","sex":"female","date_of_birth":"1980-12-19T00:00:00.000Z","height":1.61,"weight":54,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":999389505,"name":"Fernanda Rodrigues","nationality":"BRA","sex":"female","date_of_birth":"1986-05-10T00:00:00.000Z","height":1.81,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":649243319,"name":"Fernanda Russo","nationality":"ARG","sex":"female","date_of_birth":"1999-10-02T00:00:00.000Z","height":1.66,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":404382736,"name":"Fernando","nationality":"POR","sex":"male","date_of_birth":"1997-03-14T00:00:00.000Z","height":1.82,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":813873984,"name":"Fernando Alarza","nationality":"ESP","sex":"male","date_of_birth":"1991-03-23T00:00:00.000Z","height":1.78,"weight":67,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":52514011,"name":"Fernando Borello","nationality":"ARG","sex":"male","date_of_birth":"1980-02-12T00:00:00.000Z","height":1.88,"weight":92,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":288552617,"name":"Fernando Carro","nationality":"ESP","sex":"male","date_of_birth":"1992-04-01T00:00:00.000Z","height":1.7,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":175585720,"name":"Fernando Daniel Martinez","nationality":"ARG","sex":"male","date_of_birth":"1991-07-18T00:00:00.000Z","height":1.65,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":713904003,"name":"Fernando Dayan Jorge","nationality":"CUB","sex":"male","date_of_birth":"1998-12-03T00:00:00.000Z","height":1.73,"weight":70,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":812666692,"name":"Fernando Echavarri Erasun","nationality":"ESP","sex":"male","date_of_birth":"1972-08-13T00:00:00.000Z","height":1.8,"weight":76,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":611572399,"name":"Fernando Garcia","nationality":"ARG","sex":"male","date_of_birth":"1981-08-31T00:00:00.000Z","height":1.9,"weight":91,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":392897095,"name":"Fernando Gaviria Rendon","nationality":"COL","sex":"male","date_of_birth":"1994-08-19T00:00:00.000Z","height":1.8,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":724928421,"name":"Fernando Luna","nationality":"ARG","sex":"male","date_of_birth":"1990-05-12T00:00:00.000Z","height":1.82,"weight":80,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":976575378,"name":"Fernando Pimenta","nationality":"POR","sex":"male","date_of_birth":"1989-08-13T00:00:00.000Z","height":1.78,"weight":81,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":201491381,"name":"Fernando Prass","nationality":"BRA","sex":"male","date_of_birth":"1978-07-09T00:00:00.000Z","height":null,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":344465413,"name":"Fernando Salas Manguis","nationality":"ECU","sex":"male","date_of_birth":"1988-02-10T00:00:00.000Z","height":1.86,"weight":163,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":427314005,"name":"Fernando Saraiva Reis","nationality":"BRA","sex":"male","date_of_birth":"1990-03-10T00:00:00.000Z","height":1.85,"weight":155,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":108222132,"name":"Fernando Scavasin","nationality":"BRA","sex":"male","date_of_birth":"1984-11-24T00:00:00.000Z","height":1.84,"weight":80,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":559608161,"name":"Ferry Weertman","nationality":"NED","sex":"male","date_of_birth":"1992-06-27T00:00:00.000Z","height":1.89,"weight":86,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":282237207,"name":"Feyisa Lilesa","nationality":"ETH","sex":"male","date_of_birth":"1990-02-01T00:00:00.000Z","height":1.75,"weight":67,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":397905004,"name":"Fidel Antonio Vargas","nationality":"CUB","sex":"male","date_of_birth":"1992-07-28T00:00:00.000Z","height":1.86,"weight":91,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":263607639,"name":"Fie Udby Erichsen","nationality":"DEN","sex":"female","date_of_birth":"1985-04-23T00:00:00.000Z","height":1.84,"weight":79,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":990339292,"name":"Filip Dvorak","nationality":"CZE","sex":"male","date_of_birth":"1988-07-30T00:00:00.000Z","height":1.89,"weight":89,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":198261943,"name":"Filip Filipovic","nationality":"SRB","sex":"male","date_of_birth":"1987-05-01T00:00:00.000Z","height":1.96,"weight":101,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":"A holder of two bronze medals, won at Beijing 2008 and London 2012, Serbia's Filip Filipović was world champion at Kazan 2015 and Rome 2009, and won five European championships, including the 2016 edition."},{"id":95290064,"name":"Filip Grgic","nationality":"CRO","sex":"male","date_of_birth":"1989-10-25T00:00:00.000Z","height":1.73,"weight":70,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":155085294,"name":"Filip Hrgovic","nationality":"CRO","sex":"male","date_of_birth":"1992-06-04T00:00:00.000Z","height":1.97,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":797627457,"name":"Filip Ingebrigtsen","nationality":"NOR","sex":"male","date_of_birth":"1993-04-20T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":838040702,"name":"Filip KLIKOVAC","nationality":"MNE","sex":"male","date_of_birth":"1989-02-07T00:00:00.000Z","height":1.9,"weight":118,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":296668459,"name":"Filip Kruslin","nationality":"CRO","sex":"male","date_of_birth":"1989-03-18T00:00:00.000Z","height":1.99,"weight":93,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":591154202,"name":"Filip Mihaljevic","nationality":"CRO","sex":"male","date_of_birth":"1994-07-31T00:00:00.000Z","height":2.01,"weight":114,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":426939907,"name":"Filip Nepejchal","nationality":"CZE","sex":"male","date_of_birth":"1999-07-08T00:00:00.000Z","height":1.77,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":818684530,"name":"Filip Svab","nationality":"CZE","sex":"male","date_of_birth":"1983-04-28T00:00:00.000Z","height":1.73,"weight":78,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":607425902,"name":"Filip Ude","nationality":"CRO","sex":"male","date_of_birth":"1986-06-03T00:00:00.000Z","height":1.7,"weight":68,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":789252320,"name":"Filip Wypych","nationality":"POL","sex":"male","date_of_birth":"1991-04-20T00:00:00.000Z","height":1.83,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":877016251,"name":"Filip Zaborowski","nationality":"POL","sex":"male","date_of_birth":"1994-07-25T00:00:00.000Z","height":1.88,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":351078300,"name":"Filipa Martins","nationality":"POR","sex":"female","date_of_birth":"1996-01-09T00:00:00.000Z","height":1.63,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":52190306,"name":"Filipe Baravilala","nationality":"FIJ","sex":"male","date_of_birth":"1994-11-25T00:00:00.000Z","height":1.7,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":760757270,"name":"Filippa Idehn","nationality":"SWE","sex":"female","date_of_birth":"1990-08-15T00:00:00.000Z","height":1.83,"weight":80,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":14229029,"name":"Filippo Ganna","nationality":"ITA","sex":"male","date_of_birth":"1996-07-25T00:00:00.000Z","height":1.95,"weight":75,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":70452508,"name":"Filippo Lanza","nationality":"ITA","sex":"male","date_of_birth":"1991-03-03T00:00:00.000Z","height":1.98,"weight":98,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":659248254,"name":"Filippo Magnini","nationality":"ITA","sex":"male","date_of_birth":"1982-02-02T00:00:00.000Z","height":1.87,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":773729376,"name":"Finn Lemke","nationality":"GER","sex":"male","date_of_birth":"1992-04-30T00:00:00.000Z","height":2.1,"weight":115,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":613119800,"name":"Finn Lynch","nationality":"IRL","sex":"male","date_of_birth":"1996-04-23T00:00:00.000Z","height":1.82,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":562480751,"name":"Fiona Albert","nationality":"AUS","sex":"female","date_of_birth":"1990-12-12T00:00:00.000Z","height":1.75,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":62874382,"name":"Fiona Bigwood","nationality":"GBR","sex":"female","date_of_birth":"1976-04-24T00:00:00.000Z","height":1.73,"weight":75,"sport":"equestrian","gold":0,"silver":1,"bronze":0,"info":null},{"id":571267730,"name":"Fiona Doyle","nationality":"IRL","sex":"female","date_of_birth":"1991-10-04T00:00:00.000Z","height":1.72,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":239478517,"name":"Fiona Pennie","nationality":"GBR","sex":"female","date_of_birth":"1982-11-09T00:00:00.000Z","height":1.69,"weight":70,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":263535671,"name":"Fionnuala McCormack","nationality":"IRL","sex":"female","date_of_birth":"1984-09-24T00:00:00.000Z","height":1.59,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":858638156,"name":"Fiorella Francesca Cueva Uribe","nationality":"PER","sex":"female","date_of_birth":"1998-02-04T00:00:00.000Z","height":1.5,"weight":48,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":432731417,"name":"Fitzroy Dunkley","nationality":"JAM","sex":"male","date_of_birth":"1993-05-20T00:00:00.000Z","height":1.96,"weight":80,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":933661571,"name":"Flavia Oliveira","nationality":"BRA","sex":"female","date_of_birth":"1981-10-27T00:00:00.000Z","height":1.56,"weight":46,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":777180519,"name":"Flavia Saraiva","nationality":"BRA","sex":"female","date_of_birth":"1999-09-30T00:00:00.000Z","height":1.33,"weight":31,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":3922992,"name":"Flavia Tartaglini","nationality":"ITA","sex":"female","date_of_birth":"1985-02-02T00:00:00.000Z","height":1.71,"weight":59,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":545887341,"name":"Flavia de Lima","nationality":"BRA","sex":"female","date_of_birth":"1993-07-01T00:00:00.000Z","height":1.76,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":166844486,"name":"Flings Owusu-Agyapong","nationality":"GHA","sex":"female","date_of_birth":"1988-10-16T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":8505611,"name":"Flor Ruiz","nationality":"COL","sex":"female","date_of_birth":"1991-01-29T00:00:00.000Z","height":1.72,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":692948530,"name":"Flora Duffy","nationality":"BER","sex":"female","date_of_birth":"1987-09-30T00:00:00.000Z","height":1.63,"weight":57,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":798849737,"name":"Flora Molnar","nationality":"HUN","sex":"female","date_of_birth":"1998-03-02T00:00:00.000Z","height":1.75,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":191528927,"name":"Florence Allan","nationality":"CAY","sex":"female","date_of_birth":"1998-05-26T00:00:00.000Z","height":1.68,"weight":57,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":54068929,"name":"Florencia Habif","nationality":"ARG","sex":"female","date_of_birth":"1993-08-22T00:00:00.000Z","height":1.65,"weight":55,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":724902915,"name":"Florencia Natasha Busquets Reyes","nationality":"ARG","sex":"female","date_of_birth":"1989-06-27T00:00:00.000Z","height":1.92,"weight":68,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":352775267,"name":"Florent Caelen","nationality":"BEL","sex":"male","date_of_birth":"1989-03-01T00:00:00.000Z","height":1.75,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":28413973,"name":"Florent Manaudou","nationality":"FRA","sex":"male","date_of_birth":"1990-11-12T00:00:00.000Z","height":1.99,"weight":99,"sport":"aquatics","gold":0,"silver":2,"bronze":0,"info":null},{"id":838021254,"name":"Florent Pietrus","nationality":"FRA","sex":"male","date_of_birth":"1981-01-19T00:00:00.000Z","height":2.01,"weight":103,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":396808426,"name":"Florent Van Aubel","nationality":"BEL","sex":"male","date_of_birth":"1991-10-25T00:00:00.000Z","height":1.78,"weight":73,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":686164081,"name":"Floria Guei","nationality":"FRA","sex":"female","date_of_birth":"1990-05-02T00:00:00.000Z","height":1.66,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":819262216,"name":"Florian Carvalho","nationality":"FRA","sex":"male","date_of_birth":"1989-03-09T00:00:00.000Z","height":1.83,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":725121470,"name":"Florian Floto","nationality":"GER","sex":"male","date_of_birth":"1988-04-12T00:00:00.000Z","height":1.88,"weight":105,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":112934359,"name":"Florian Fuchs","nationality":"GER","sex":"male","date_of_birth":"1991-11-10T00:00:00.000Z","height":1.85,"weight":74,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":479481012,"name":"Florian Orth","nationality":"GER","sex":"male","date_of_birth":"1989-07-24T00:00:00.000Z","height":1.81,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":399561932,"name":"Florian Reichstaedter","nationality":"AUT","sex":"male","date_of_birth":"1980-07-03T00:00:00.000Z","height":1.8,"weight":71,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":950445859,"name":"Florian Skilang Temengil","nationality":"PLW","sex":"male","date_of_birth":"1986-11-04T00:00:00.000Z","height":1.53,"weight":125,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":526727141,"name":"Florian Vogel","nationality":"GER","sex":"male","date_of_birth":"1994-09-02T00:00:00.000Z","height":1.8,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":628381035,"name":"Florian Wellbrock","nationality":"GER","sex":"male","date_of_birth":"1997-08-19T00:00:00.000Z","height":1.85,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":463142259,"name":"Floriane Gnafoua","nationality":"FRA","sex":"female","date_of_birth":"1996-01-30T00:00:00.000Z","height":1.58,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":287019022,"name":"Florin Mergea","nationality":"ROU","sex":"male","date_of_birth":"1985-01-26T00:00:00.000Z","height":1.82,"weight":79,"sport":"tennis","gold":0,"silver":1,"bronze":0,"info":null},{"id":765345310,"name":"Florina Chintoan","nationality":"ROU","sex":"female","date_of_birth":"1985-12-06T00:00:00.000Z","height":1.78,"weight":67,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":929035723,"name":"Florina Pierdevara","nationality":"ROU","sex":"female","date_of_birth":"1990-03-29T00:00:00.000Z","height":1.72,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":605847359,"name":"Florina-Sorina Hulpan","nationality":"ROU","sex":"female","date_of_birth":"1997-03-07T00:00:00.000Z","height":1.58,"weight":68,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":429153076,"name":"Folau Niua","nationality":"USA","sex":"male","date_of_birth":"1985-01-27T00:00:00.000Z","height":1.83,"weight":88,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":241899445,"name":"Foluke Akinradewo","nationality":"USA","sex":"female","date_of_birth":"1987-10-05T00:00:00.000Z","height":1.91,"weight":79,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":312586740,"name":"Formiga","nationality":"BRA","sex":"female","date_of_birth":"1978-03-03T00:00:00.000Z","height":1.62,"weight":57,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":371445769,"name":"Fouad Elkaam","nationality":"MAR","sex":"male","date_of_birth":"1988-05-27T00:00:00.000Z","height":1.88,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":861278504,"name":"Francelina Cabral","nationality":"TLS","sex":"female","date_of_birth":"1985-03-23T00:00:00.000Z","height":1.65,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":407138612,"name":"Francena McCorory","nationality":"USA","sex":"female","date_of_birth":"1988-10-20T00:00:00.000Z","height":1.71,"weight":68,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":513279514,"name":"Frances Houghton","nationality":"GBR","sex":"female","date_of_birth":"1980-09-19T00:00:00.000Z","height":1.93,"weight":80,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":23123206,"name":"Francesca Clapcich","nationality":"ITA","sex":"female","date_of_birth":"1988-01-28T00:00:00.000Z","height":1.77,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":278586505,"name":"Francesca Dallape'","nationality":"ITA","sex":"female","date_of_birth":"1986-06-24T00:00:00.000Z","height":1.64,"weight":58,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":421533477,"name":"Francesca Deidda","nationality":"ITA","sex":"female","date_of_birth":"1992-01-16T00:00:00.000Z","height":1.64,"weight":52,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":870034029,"name":"Francesca Halsall","nationality":"GBR","sex":"female","date_of_birth":"1990-04-12T00:00:00.000Z","height":1.71,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":535720666,"name":"Francesca Pattaro","nationality":"ITA","sex":"female","date_of_birth":"1995-03-12T00:00:00.000Z","height":1.7,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":136274448,"name":"Francesca Pomeri","nationality":"ITA","sex":"female","date_of_birth":"1993-02-18T00:00:00.000Z","height":1.74,"weight":76,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":328463358,"name":"Francesco Fossi","nationality":"ITA","sex":"male","date_of_birth":"1988-04-15T00:00:00.000Z","height":1.99,"weight":98,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":720788958,"name":"Francesco Lamon","nationality":"ITA","sex":"male","date_of_birth":"1994-02-05T00:00:00.000Z","height":1.73,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":960345798,"name":"Francesco Marrai","nationality":"ITA","sex":"male","date_of_birth":"1993-02-04T00:00:00.000Z","height":1.87,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":564896831,"name":"Francesco di Fulvio","nationality":"ITA","sex":"male","date_of_birth":"1993-08-15T00:00:00.000Z","height":1.9,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":162383071,"name":"Francie Turner","nationality":"NZL","sex":"female","date_of_birth":"1992-04-06T00:00:00.000Z","height":1.59,"weight":50,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":270335453,"name":"Franciela Krasucki","nationality":"BRA","sex":"female","date_of_birth":"1988-04-26T00:00:00.000Z","height":1.68,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":827083171,"name":"Francielle Rocha","nationality":"BRA","sex":"female","date_of_birth":"1992-06-10T00:00:00.000Z","height":1.66,"weight":58,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":919748247,"name":"Francielly Pereira","nationality":"BRA","sex":"female","date_of_birth":"1995-11-10T00:00:00.000Z","height":1.66,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":129990979,"name":"Francine Niyonsaba","nationality":"BDI","sex":"female","date_of_birth":"1993-05-05T00:00:00.000Z","height":1.66,"weight":60,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":425631423,"name":"Francisca Crovetto Chadid","nationality":"CHI","sex":"female","date_of_birth":"1990-04-27T00:00:00.000Z","height":1.6,"weight":54,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":444157559,"name":"Francisca Laia","nationality":"POR","sex":"female","date_of_birth":"1994-05-31T00:00:00.000Z","height":1.63,"weight":58,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":576262342,"name":"Francisco Arcilla","nationality":"ESP","sex":"male","date_of_birth":"1984-01-14T00:00:00.000Z","height":1.71,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":300060819,"name":"Francisco Barretto Junior","nationality":"BRA","sex":"male","date_of_birth":"1989-10-31T00:00:00.000Z","height":1.75,"weight":72,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":955682483,"name":"Francisco Boza","nationality":"PER","sex":"male","date_of_birth":"1964-09-19T00:00:00.000Z","height":1.8,"weight":96,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":550687254,"name":"Francisco Cortes","nationality":"ESP","sex":"male","date_of_birth":"1983-03-29T00:00:00.000Z","height":1.81,"weight":80,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":478446820,"name":"Francisco Ducasse","nationality":"CHI","sex":"male","date_of_birth":"1996-12-03T00:00:00.000Z","height":1.75,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":896116528,"name":"Francisco Fernandez Miranda","nationality":"ESP","sex":"male","date_of_birth":"1986-06-21T00:00:00.000Z","height":1.85,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":235643467,"name":"Francisco Garrigos","nationality":"ESP","sex":"male","date_of_birth":"1994-12-09T00:00:00.000Z","height":1.6,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":679536913,"name":"Francisco Hernandez","nationality":"ESP","sex":"male","date_of_birth":"1988-10-28T00:00:00.000Z","height":1.73,"weight":78,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":28575944,"name":"Francisco Limardo","nationality":"VEN","sex":"male","date_of_birth":"1987-03-27T00:00:00.000Z","height":1.8,"weight":75,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":246262074,"name":"Franck Elemba","nationality":"CGO","sex":"male","date_of_birth":"1990-07-21T00:00:00.000Z","height":1.98,"weight":130,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":76848119,"name":"Franck Lafitte","nationality":"FRA","sex":"male","date_of_birth":"1989-03-08T00:00:00.000Z","height":2.03,"weight":94,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":101987317,"name":"Franck Solforosi","nationality":"FRA","sex":"male","date_of_birth":"1984-09-10T00:00:00.000Z","height":1.84,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":470889706,"name":"Francky Mbotto","nationality":"CAF","sex":"male","date_of_birth":"1997-09-02T00:00:00.000Z","height":1.81,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":62538812,"name":"Franco Donato","nationality":"EGY","sex":"male","date_of_birth":"1981-09-08T00:00:00.000Z","height":1.65,"weight":64,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":116672628,"name":"Franco Sabato","nationality":"ARG","sex":"male","date_of_birth":"1990-01-13T00:00:00.000Z","height":1.86,"weight":81,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":547550475,"name":"Francois Heersbrandt","nationality":"BEL","sex":"male","date_of_birth":"1989-12-12T00:00:00.000Z","height":1.79,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":794323734,"name":"Francois Hougaard","nationality":"RSA","sex":"male","date_of_birth":"1988-04-06T00:00:00.000Z","height":1.79,"weight":93,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":410698560,"name":"Francois Pervis","nationality":"FRA","sex":"male","date_of_birth":"1984-10-16T00:00:00.000Z","height":1.8,"weight":88,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":81861765,"name":"Frank Aniello Molinaro","nationality":"USA","sex":"male","date_of_birth":"1988-12-27T00:00:00.000Z","height":1.68,"weight":68,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":570873065,"name":"Frank Chamizo Marquez","nationality":"ITA","sex":"male","date_of_birth":"1992-07-10T00:00:00.000Z","height":1.72,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":226825899,"name":"Frank Rijken","nationality":"NED","sex":"male","date_of_birth":"1996-11-24T00:00:00.000Z","height":1.69,"weight":67,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":715378085,"name":"Frank Schleck","nationality":"LUX","sex":"male","date_of_birth":"1980-04-15T00:00:00.000Z","height":1.85,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":266716820,"name":"Frank Staebler","nationality":"GER","sex":"male","date_of_birth":"1989-06-27T00:00:00.000Z","height":1.74,"weight":74,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":226195365,"name":"Frank Thompson","nationality":"USA","sex":"male","date_of_birth":"1988-03-11T00:00:00.000Z","height":1.81,"weight":79,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":388800940,"name":"Frank de Wit","nationality":"NED","sex":"male","date_of_birth":"1996-02-13T00:00:00.000Z","height":1.84,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":240687498,"name":"Franklin Gomez","nationality":"PUR","sex":"male","date_of_birth":"1986-08-05T00:00:00.000Z","height":1.77,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":883176756,"name":"Frantz Dorsainvil","nationality":"HAI","sex":"male","date_of_birth":"1991-07-02T00:00:00.000Z","height":1.7,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":324206155,"name":"Franz Anton","nationality":"GER","sex":"male","date_of_birth":"1989-10-23T00:00:00.000Z","height":1.73,"weight":70,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":887418902,"name":"Franzisca Hauke","nationality":"GER","sex":"female","date_of_birth":"1989-09-10T00:00:00.000Z","height":1.72,"weight":63,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":271428664,"name":"Franziska Hentke","nationality":"GER","sex":"female","date_of_birth":"1989-06-04T00:00:00.000Z","height":1.72,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":688191947,"name":"Franziska Weber","nationality":"GER","sex":"female","date_of_birth":"1989-05-24T00:00:00.000Z","height":1.76,"weight":70,"sport":"canoe","gold":0,"silver":2,"bronze":0,"info":null},{"id":481935974,"name":"Freddie Woodward","nationality":"GBR","sex":"male","date_of_birth":"1995-06-23T00:00:00.000Z","height":1.78,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":464256317,"name":"Freddy Figueroa","nationality":"ECU","sex":"male","date_of_birth":"1994-11-26T00:00:00.000Z","height":1.92,"weight":null,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":720635670,"name":"Freddy Mezones","nationality":"VEN","sex":"male","date_of_birth":"1987-09-24T00:00:00.000Z","height":1.7,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":676653591,"name":"Frederic Winters","nationality":"CAN","sex":"male","date_of_birth":"1982-09-25T00:00:00.000Z","height":1.95,"weight":98,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":870194844,"name":"Frederick Bousquet","nationality":"FRA","sex":"male","date_of_birth":"1981-04-08T00:00:00.000Z","height":1.88,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":82901717,"name":"Frederico Venancio","nationality":"POR","sex":"male","date_of_birth":"1993-02-04T00:00:00.000Z","height":1.86,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":491481795,"name":"Frederik Borsting","nationality":"DEN","sex":"male","date_of_birth":"1995-02-13T00:00:00.000Z","height":1.84,"weight":78,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":675256468,"name":"Frederik Madsen","nationality":"DEN","sex":"male","date_of_birth":"1998-01-22T00:00:00.000Z","height":1.87,"weight":73,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":760097709,"name":"Fredrik Bergstrom","nationality":"SWE","sex":"male","date_of_birth":"1990-07-09T00:00:00.000Z","height":1.76,"weight":64,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":276164244,"name":"Fredrik Petersen","nationality":"SWE","sex":"male","date_of_birth":"1983-08-27T00:00:00.000Z","height":1.88,"weight":80,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":895184846,"name":"Frida Andersen","nationality":"SWE","sex":"female","date_of_birth":"1990-06-09T00:00:00.000Z","height":1.64,"weight":67,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":732593711,"name":"Frida Tegstedt","nationality":"SWE","sex":"female","date_of_birth":"1987-07-17T00:00:00.000Z","height":1.8,"weight":80,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":426661879,"name":"Fridolina Rolfo","nationality":"SWE","sex":"female","date_of_birth":"1993-11-24T00:00:00.000Z","height":1.78,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":156371008,"name":"Friederike Mohlenkamp","nationality":"GER","sex":"female","date_of_birth":"1992-11-19T00:00:00.000Z","height":1.76,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":438695638,"name":"Fu Yu","nationality":"POR","sex":"female","date_of_birth":"1978-11-29T00:00:00.000Z","height":1.73,"weight":60,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":422530035,"name":"Furkan Sen","nationality":"TUR","sex":"male","date_of_birth":"1994-02-08T00:00:00.000Z","height":1.75,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":719720246,"name":"Fusheng Zhang","nationality":"CHN","sex":"male","date_of_birth":"1993-09-20T00:00:00.000Z","height":1.84,"weight":68,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":549844503,"name":"Gaber Mohamed","nationality":"EGY","sex":"male","date_of_birth":"1985-09-01T00:00:00.000Z","height":1.8,"weight":105,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":483544931,"name":"Gabor Balog","nationality":"HUN","sex":"male","date_of_birth":"1990-09-02T00:00:00.000Z","height":1.86,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":450662056,"name":"Gabor Boczko","nationality":"HUN","sex":"male","date_of_birth":"1977-04-01T00:00:00.000Z","height":1.92,"weight":90,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":349248644,"name":"Gabor Faldum","nationality":"HUN","sex":"male","date_of_birth":"1988-06-24T00:00:00.000Z","height":1.72,"weight":64,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":391312706,"name":"Gabor Jozsa","nationality":"HUN","sex":"male","date_of_birth":"1983-08-18T00:00:00.000Z","height":1.7,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":680668744,"name":"Gabor Kis","nationality":"HUN","sex":"male","date_of_birth":"1982-09-27T00:00:00.000Z","height":1.94,"weight":115,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":14191210,"name":"Gabriel Barbosa","nationality":"BRA","sex":"male","date_of_birth":"1996-08-30T00:00:00.000Z","height":1.76,"weight":68,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":662078869,"name":"Gabriel Borges","nationality":"BRA","sex":"male","date_of_birth":"1992-02-24T00:00:00.000Z","height":1.8,"weight":73,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":630061946,"name":"Gabriel Deck","nationality":"ARG","sex":"male","date_of_birth":"1995-02-08T00:00:00.000Z","height":1.97,"weight":107,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":72582764,"name":"Gabriel Ho-Garcia","nationality":"CAN","sex":"male","date_of_birth":"1993-05-19T00:00:00.000Z","height":1.7,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":250938129,"name":"Gabriel Jesus","nationality":"BRA","sex":"male","date_of_birth":"1997-04-03T00:00:00.000Z","height":1.75,"weight":68,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":590308057,"name":"Gabriel Maestre","nationality":"VEN","sex":"male","date_of_birth":"1986-09-22T00:00:00.000Z","height":1.79,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":948998710,"name":"Gabriel Mvumvure","nationality":"ZIM","sex":"male","date_of_birth":"1988-02-23T00:00:00.000Z","height":1.77,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":243636258,"name":"Gabriel Santos","nationality":"BRA","sex":"male","date_of_birth":"1996-05-04T00:00:00.000Z","height":1.84,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":563040295,"name":"Gabriel Sincraian","nationality":"ROU","sex":"male","date_of_birth":"1988-12-21T00:00:00.000Z","height":1.74,"weight":84,"sport":"weightlifting","gold":0,"silver":0,"bronze":1,"info":null},{"id":836852876,"name":"Gabriela Aguirre","nationality":"ARG","sex":"female","date_of_birth":"1986-02-19T00:00:00.000Z","height":1.64,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":472170307,"name":"Gabriela Bayardo","nationality":"MEX","sex":"female","date_of_birth":"1994-02-18T00:00:00.000Z","height":1.68,"weight":73,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":297118288,"name":"Gabriela Braga Guimaraes","nationality":"BRA","sex":"female","date_of_birth":"1994-05-19T00:00:00.000Z","height":1.76,"weight":59,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":848116325,"name":"Gabriela Dabrowski","nationality":"CAN","sex":"female","date_of_birth":"1992-04-01T00:00:00.000Z","height":1.8,"weight":84,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":930649410,"name":"Gabriela Mantellato","nationality":"BRA","sex":"female","date_of_birth":"1991-10-28T00:00:00.000Z","height":1.75,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":556512285,"name":"Gabriela Mosqueira","nationality":"PAR","sex":"female","date_of_birth":"1990-04-05T00:00:00.000Z","height":1.63,"weight":60,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":563204393,"name":"Gabriela Perianu","nationality":"ROU","sex":"female","date_of_birth":"1994-06-20T00:00:00.000Z","height":1.87,"weight":80,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":101409692,"name":"Gabriela Petrova","nationality":"BUL","sex":"female","date_of_birth":"1992-06-29T00:00:00.000Z","height":1.67,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":901521061,"name":"Gabriela Stafford","nationality":"CAN","sex":"female","date_of_birth":"1995-09-13T00:00:00.000Z","height":1.63,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":951509811,"name":"Gabriela Stoeva","nationality":"BUL","sex":"female","date_of_birth":"1994-07-15T00:00:00.000Z","height":1.69,"weight":63,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":188364932,"name":"Gabriele Detti","nationality":"ITA","sex":"male","date_of_birth":"1994-08-29T00:00:00.000Z","height":1.84,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":2,"info":null},{"id":208944185,"name":"Gabriele Rossetti","nationality":"ITA","sex":"male","date_of_birth":"1995-03-07T00:00:00.000Z","height":1.76,"weight":65,"sport":"shooting","gold":1,"silver":0,"bronze":0,"info":null},{"id":697532444,"name":"Gabriella Doueihy","nationality":"LIB","sex":"female","date_of_birth":"1999-04-30T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":99788705,"name":"Gabriella Szabo","nationality":"HUN","sex":"female","date_of_birth":"1986-08-14T00:00:00.000Z","height":1.7,"weight":62,"sport":"canoe","gold":2,"silver":0,"bronze":0,"info":null},{"id":754381040,"name":"Gabriella Szucs","nationality":"HUN","sex":"female","date_of_birth":"1988-03-07T00:00:00.000Z","height":1.83,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":787338951,"name":"Gabriella Szucs","nationality":"ROU","sex":"female","date_of_birth":"1984-08-31T00:00:00.000Z","height":1.84,"weight":78,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":463517978,"name":"Gabrielle Adcock","nationality":"GBR","sex":"female","date_of_birth":"1990-09-30T00:00:00.000Z","height":1.67,"weight":null,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":862130996,"name":"Gabrielle Carle","nationality":"CAN","sex":"female","date_of_birth":"1998-10-12T00:00:00.000Z","height":1.67,"weight":55,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":995739090,"name":"Gabrielle Douglas","nationality":"USA","sex":"female","date_of_birth":"1995-12-31T00:00:00.000Z","height":1.5,"weight":49,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":null},{"id":596713145,"name":"Gabrielle Moraes da Silva","nationality":"BRA","sex":"female","date_of_birth":"1997-03-04T00:00:00.000Z","height":1.64,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":509202637,"name":"Gabrielle Nance","nationality":"AUS","sex":"female","date_of_birth":"1994-07-29T00:00:00.000Z","height":1.69,"weight":55,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":993305509,"name":"Gabrielle Roncatto","nationality":"BRA","sex":"female","date_of_birth":"1998-07-19T00:00:00.000Z","height":1.65,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":243788789,"name":"Gaby Diana Ahrens","nationality":"NAM","sex":"female","date_of_birth":"1981-03-15T00:00:00.000Z","height":1.69,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":589149765,"name":"Gaby Lopez","nationality":"MEX","sex":"female","date_of_birth":"1993-11-09T00:00:00.000Z","height":1.66,"weight":58,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":116766804,"name":"Gael Monfils","nationality":"FRA","sex":"male","date_of_birth":"1986-09-01T00:00:00.000Z","height":1.93,"weight":84,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":902039181,"name":"Gael Suter","nationality":"SUI","sex":"male","date_of_birth":"1992-03-23T00:00:00.000Z","height":1.76,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":329610435,"name":"Gaelle Mys","nationality":"BEL","sex":"female","date_of_birth":"1991-11-16T00:00:00.000Z","height":1.44,"weight":57,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":767593736,"name":"Gaelle Skrela","nationality":"FRA","sex":"female","date_of_birth":"1983-01-24T00:00:00.000Z","height":1.77,"weight":70,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":941626270,"name":"Gaelle Verlaine Nayo Ketchanke","nationality":"FRA","sex":"female","date_of_birth":"1988-04-20T00:00:00.000Z","height":1.74,"weight":74,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":341647204,"name":"Gagan Narang","nationality":"IND","sex":"male","date_of_birth":"1983-05-06T00:00:00.000Z","height":1.8,"weight":115,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":629247598,"name":"Gakuto Notsuda","nationality":"JPN","sex":"male","date_of_birth":"1994-06-06T00:00:00.000Z","height":1.75,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":324536211,"name":"Gal Nevo","nationality":"ISR","sex":"male","date_of_birth":"1987-06-29T00:00:00.000Z","height":1.8,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":866485713,"name":"Galal Yafai","nationality":"GBR","sex":"male","date_of_birth":"1992-12-11T00:00:00.000Z","height":1.58,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":106376682,"name":"Galen Rupp","nationality":"USA","sex":"male","date_of_birth":"1986-05-08T00:00:00.000Z","height":1.81,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":711261984,"name":"Galia Dvorak","nationality":"ESP","sex":"female","date_of_birth":"1988-04-01T00:00:00.000Z","height":null,"weight":null,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":915389920,"name":"Galina Voskoboeva","nationality":"KAZ","sex":"female","date_of_birth":"1984-12-18T00:00:00.000Z","height":1.83,"weight":67,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":802472247,"name":"Galymzhan Usserbayev","nationality":"KAZ","sex":"male","date_of_birth":"1988-12-19T00:00:00.000Z","height":1.73,"weight":74,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":272456931,"name":"Galyna Obleshchuk","nationality":"UKR","sex":"female","date_of_birth":"1989-02-23T00:00:00.000Z","height":1.77,"weight":94,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":781481729,"name":"Gan-Erdene Gankhuyag","nationality":"MGL","sex":"male","date_of_birth":"1993-03-29T00:00:00.000Z","height":1.62,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":897822303,"name":"Ganapathi Krishnan","nationality":"IND","sex":"male","date_of_birth":"1989-06-29T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":343445816,"name":"Ganna Krasnoshlyk","nationality":"UKR","sex":"female","date_of_birth":"1996-03-06T00:00:00.000Z","height":1.71,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":995606281,"name":"Ganna Rizatdinova","nationality":"UKR","sex":"female","date_of_birth":"1993-07-16T00:00:00.000Z","height":1.73,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":656968895,"name":"Ganna Solovei","nationality":"UKR","sex":"female","date_of_birth":"1992-01-31T00:00:00.000Z","height":1.67,"weight":56,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":526876218,"name":"Gantugs Jantsan","nationality":"MGL","sex":"male","date_of_birth":"1972-04-12T00:00:00.000Z","height":1.75,"weight":73,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":298278410,"name":"Gantulga Dambadarjaa","nationality":"MGL","sex":"male","date_of_birth":"1989-02-03T00:00:00.000Z","height":1.7,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":538703926,"name":"Gaone Leaname Maotoanong","nationality":"BOT","sex":"male","date_of_birth":"1991-05-07T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":745281987,"name":"Garbine Muguruza","nationality":"ESP","sex":"female","date_of_birth":"1993-10-08T00:00:00.000Z","height":1.84,"weight":72,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":892862270,"name":"Garnik Mnatsakanyan","nationality":"ARM","sex":"male","date_of_birth":"1989-11-07T00:00:00.000Z","height":1.61,"weight":57,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":622386960,"name":"Garrett Bender","nationality":"USA","sex":"male","date_of_birth":"1991-12-02T00:00:00.000Z","height":1.94,"weight":104,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":800177354,"name":"Gary O'Donovan","nationality":"IRL","sex":"male","date_of_birth":"1992-12-30T00:00:00.000Z","height":1.72,"weight":70,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":249661772,"name":"Gary Russell","nationality":"USA","sex":"male","date_of_birth":"1996-06-14T00:00:00.000Z","height":1.73,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":830687385,"name":"Gaspar Csere","nationality":"HUN","sex":"male","date_of_birth":"1991-08-12T00:00:00.000Z","height":1.71,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":12459891,"name":"Gastao Elias","nationality":"POR","sex":"male","date_of_birth":"1990-11-24T00:00:00.000Z","height":1.82,"weight":75,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":456762500,"name":"Gaston Revol","nationality":"ARG","sex":"male","date_of_birth":"1986-11-26T00:00:00.000Z","height":1.7,"weight":76,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":32924852,"name":"Gaurika Singh","nationality":"NEP","sex":"female","date_of_birth":"2002-11-26T00:00:00.000Z","height":1.55,"weight":45,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":996740873,"name":"Gauthier Boccard","nationality":"BEL","sex":"male","date_of_birth":"1991-08-26T00:00:00.000Z","height":1.86,"weight":79,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":918357805,"name":"Gauthier Grumier","nationality":"FRA","sex":"male","date_of_birth":"1984-05-29T00:00:00.000Z","height":1.91,"weight":83,"sport":"fencing","gold":1,"silver":0,"bronze":1,"info":null},{"id":694977579,"name":"Gauthier Klauss","nationality":"FRA","sex":"male","date_of_birth":"1987-12-17T00:00:00.000Z","height":1.71,"weight":65,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":956777430,"name":"Gavin Ben Sutherland","nationality":"ZIM","sex":"male","date_of_birth":"1979-06-26T00:00:00.000Z","height":1.86,"weight":78,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":811772770,"name":"Gavin Kyle Green","nationality":"MAS","sex":"male","date_of_birth":"1993-12-28T00:00:00.000Z","height":1.87,"weight":91,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":213614173,"name":"Gavin Mogopa","nationality":"BOT","sex":"male","date_of_birth":"1996-04-02T00:00:00.000Z","height":1.79,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":71978236,"name":"Gavin Schmitt","nationality":"CAN","sex":"male","date_of_birth":"1986-01-27T00:00:00.000Z","height":2.08,"weight":106,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":620621814,"name":"Gayane Chiloyan","nationality":"ARM","sex":"female","date_of_birth":"2000-09-27T00:00:00.000Z","height":1.64,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":91833372,"name":"Gayle Broughton","nationality":"NZL","sex":"female","date_of_birth":"1996-06-05T00:00:00.000Z","height":1.74,"weight":70,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":608678057,"name":"Gbahi Gwladys Sakoa","nationality":"CIV","sex":"female","date_of_birth":"1992-12-03T00:00:00.000Z","height":1.71,"weight":64,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":248516313,"name":"Geisa Aparecida Coutinho","nationality":"BRA","sex":"female","date_of_birth":"1980-06-01T00:00:00.000Z","height":1.61,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":117544722,"name":"Geisa Arcanjo","nationality":"BRA","sex":"female","date_of_birth":"1991-09-19T00:00:00.000Z","height":1.6,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":286940521,"name":"Gelena Topilina","nationality":"RUS","sex":"female","date_of_birth":"1994-01-11T00:00:00.000Z","height":1.75,"weight":56,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":809586183,"name":"Gelete Burka","nationality":"ETH","sex":"female","date_of_birth":"1986-01-23T00:00:00.000Z","height":1.6,"weight":43,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":12235602,"name":"Gelly Skarlatou","nationality":"GRE","sex":"female","date_of_birth":"1976-01-28T00:00:00.000Z","height":1.65,"weight":57,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":671357684,"name":"Gemma Acheampong","nationality":"GHA","sex":"female","date_of_birth":"1993-02-13T00:00:00.000Z","height":1.63,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":566383744,"name":"Gemma Beadsworth","nationality":"AUS","sex":"female","date_of_birth":"1987-07-17T00:00:00.000Z","height":1.8,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":141739381,"name":"Gemma Etheridge","nationality":"AUS","sex":"female","date_of_birth":"1986-12-01T00:00:00.000Z","height":1.69,"weight":66,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":893302726,"name":"Gemma Flynn","nationality":"NZL","sex":"female","date_of_birth":"1990-05-02T00:00:00.000Z","height":1.68,"weight":60,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":528547946,"name":"Gemma Jones","nationality":"NZL","sex":"female","date_of_birth":"1994-01-07T00:00:00.000Z","height":1.65,"weight":59,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":836429010,"name":"Gemma Mengual","nationality":"ESP","sex":"female","date_of_birth":"1977-04-12T00:00:00.000Z","height":1.73,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":447374604,"name":"Gemma Tattersall","nationality":"GBR","sex":"female","date_of_birth":"1985-03-12T00:00:00.000Z","height":1.65,"weight":69,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":533972369,"name":"Gen Li","nationality":"CHN","sex":"male","date_of_birth":"1988-08-15T00:00:00.000Z","height":1.96,"weight":110,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":974257669,"name":"Genevieve Behrent","nationality":"NZL","sex":"female","date_of_birth":"1990-09-25T00:00:00.000Z","height":1.83,"weight":73,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":966530207,"name":"Genevieve Horton","nationality":"AUS","sex":"female","date_of_birth":"1995-01-06T00:00:00.000Z","height":1.79,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":316560437,"name":"Genevieve Lacaze","nationality":"AUS","sex":"female","date_of_birth":"1989-08-04T00:00:00.000Z","height":1.64,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":564185674,"name":"Genevieve Lalonde","nationality":"CAN","sex":"female","date_of_birth":"1991-09-05T00:00:00.000Z","height":1.7,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":476981341,"name":"Genevieve Orton","nationality":"CAN","sex":"female","date_of_birth":"1984-05-13T00:00:00.000Z","height":1.7,"weight":62,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":682915910,"name":"Genevra Stone","nationality":"USA","sex":"female","date_of_birth":"1985-07-11T00:00:00.000Z","height":1.83,"weight":71,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":586682679,"name":"Geno Petriashvili","nationality":"GEO","sex":"male","date_of_birth":"1994-04-01T00:00:00.000Z","height":1.98,"weight":125,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":557935891,"name":"Genzebe Dibaba","nationality":"ETH","sex":"female","date_of_birth":"1991-02-08T00:00:00.000Z","height":1.68,"weight":52,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":"Genzebe Dibaba is from an esteemed family of Olympic medal winners. Ethiopia's golden girl in the middle and long distance events, she won the 1500m at the 2015 Beijing World Championship, breaking a world record in the process, and a bronze in the 5000m."},{"id":289855181,"name":"Geoffrey Butler","nationality":"CAY","sex":"male","date_of_birth":"1995-12-07T00:00:00.000Z","height":1.88,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":211177901,"name":"Geoffrey Cheah","nationality":"HKG","sex":"male","date_of_birth":"1990-11-10T00:00:00.000Z","height":1.85,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":242198158,"name":"Geoffrey Kipsang Kamworor","nationality":"KEN","sex":"male","date_of_birth":"1992-11-22T00:00:00.000Z","height":1.72,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":962442780,"name":"Georcy Thiffeault Picard","nationality":"CAN","sex":"female","date_of_birth":"1991-02-08T00:00:00.000Z","height":1.76,"weight":78,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":814234541,"name":"Georg Preidler","nationality":"AUT","sex":"male","date_of_birth":"1990-06-17T00:00:00.000Z","height":1.89,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":378090753,"name":"George Bennett","nationality":"NZL","sex":"male","date_of_birth":"1990-04-07T00:00:00.000Z","height":1.81,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":373349430,"name":"George Bovell Iii","nationality":"TTO","sex":"male","date_of_birth":"1983-07-18T00:00:00.000Z","height":1.96,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":853409022,"name":"George Bridgewater","nationality":"NZL","sex":"male","date_of_birth":"1983-01-18T00:00:00.000Z","height":2,"weight":97,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":529194033,"name":"George Ford","nationality":"AUS","sex":"male","date_of_birth":"1993-02-24T00:00:00.000Z","height":1.92,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":962074065,"name":"George Nash","nationality":"GBR","sex":"male","date_of_birth":"1989-10-02T00:00:00.000Z","height":1.95,"weight":96,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":146249662,"name":"George Palamariu","nationality":"ROU","sex":"male","date_of_birth":"1991-03-17T00:00:00.000Z","height":1.97,"weight":106,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":422133225,"name":"George Pinner","nationality":"GBR","sex":"male","date_of_birth":"1987-01-18T00:00:00.000Z","height":1.92,"weight":92,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":94884308,"name":"Georgi Bozhilov","nationality":"BUL","sex":"male","date_of_birth":"1989-04-09T00:00:00.000Z","height":2.01,"weight":107,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":867155948,"name":"Georgi Ivanov","nationality":"BUL","sex":"male","date_of_birth":"1985-03-13T00:00:00.000Z","height":1.88,"weight":138,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":872775850,"name":"Georgi Ivanov Ivanov","nationality":"BUL","sex":"male","date_of_birth":"1989-11-11T00:00:00.000Z","height":1.7,"weight":78,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":513877606,"name":"Georgi Tsonov","nationality":"BUL","sex":"male","date_of_birth":"1993-05-02T00:00:00.000Z","height":1.76,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":974930725,"name":"Georgia Baker","nationality":"AUS","sex":"female","date_of_birth":"1994-09-21T00:00:00.000Z","height":1.79,"weight":66,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":730944195,"name":"Georgia Bohl","nationality":"AUS","sex":"female","date_of_birth":"1997-04-11T00:00:00.000Z","height":1.67,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":55412300,"name":"Georgia Coates","nationality":"GBR","sex":"female","date_of_birth":"1999-02-19T00:00:00.000Z","height":1.74,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":129677889,"name":"Georgia Davies","nationality":"GBR","sex":"female","date_of_birth":"1990-10-11T00:00:00.000Z","height":1.75,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":661775435,"name":"Georgia Nanscawen","nationality":"AUS","sex":"female","date_of_birth":"1992-05-27T00:00:00.000Z","height":1.6,"weight":59,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":405138190,"name":"Georgia Simmerling","nationality":"CAN","sex":"female","date_of_birth":"1989-03-11T00:00:00.000Z","height":1.72,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":304591948,"name":"Georgia Williams","nationality":"NZL","sex":"female","date_of_birth":"1993-08-25T00:00:00.000Z","height":1.7,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":289207914,"name":"Georgii Ketoev","nationality":"ARM","sex":"male","date_of_birth":"1985-11-19T00:00:00.000Z","height":1.9,"weight":100,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":932124601,"name":"Georgii Zantaraia","nationality":"UKR","sex":"male","date_of_birth":"1987-10-21T00:00:00.000Z","height":1.71,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":827810713,"name":"Georgina Klug","nationality":"ARG","sex":"female","date_of_birth":"1984-06-11T00:00:00.000Z","height":1.72,"weight":64,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":13264832,"name":"Georgina Morgan","nationality":"AUS","sex":"female","date_of_birth":"1993-05-15T00:00:00.000Z","height":1.79,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":218184673,"name":"Georgina Oliva","nationality":"ESP","sex":"female","date_of_birth":"1990-07-18T00:00:00.000Z","height":1.6,"weight":53,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":308752334,"name":"Georgina Parker","nationality":"AUS","sex":"female","date_of_birth":"1989-04-26T00:00:00.000Z","height":1.59,"weight":68,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":325691946,"name":"Georgina Pota","nationality":"HUN","sex":"female","date_of_birth":"1985-01-13T00:00:00.000Z","height":1.73,"weight":63,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":559477577,"name":"Georgina Twigg","nationality":"GBR","sex":"female","date_of_birth":"1990-11-21T00:00:00.000Z","height":1.6,"weight":62,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":87130611,"name":"Georgios Dervisis","nationality":"GRE","sex":"male","date_of_birth":"1994-10-30T00:00:00.000Z","height":1.95,"weight":92,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":749506704,"name":"Georgios Tziallas","nationality":"GRE","sex":"male","date_of_birth":"1987-07-14T00:00:00.000Z","height":1.89,"weight":91,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":217536800,"name":"Georgiy Sheiko","nationality":"KAZ","sex":"male","date_of_birth":"1989-08-24T00:00:00.000Z","height":1.84,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":679229547,"name":"Geraint Thomas","nationality":"GBR","sex":"male","date_of_birth":"1986-05-25T00:00:00.000Z","height":1.83,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":895148675,"name":"Gerald Giraldo","nationality":"COL","sex":"male","date_of_birth":"1989-03-21T00:00:00.000Z","height":1.75,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":473977731,"name":"Gerald Phiri","nationality":"ZAM","sex":"male","date_of_birth":"1988-10-06T00:00:00.000Z","height":1.78,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":301656142,"name":"Gerardo Menendez Mieres","nationality":"ESP","sex":"male","date_of_birth":"1976-09-11T00:00:00.000Z","height":1.85,"weight":80,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":913327626,"name":"Gerasim Kochnev","nationality":"UZB","sex":"male","date_of_birth":"1987-03-20T00:00:00.000Z","height":1.78,"weight":85,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":426364755,"name":"Gerco Schroder","nationality":"NED","sex":"male","date_of_birth":"1978-07-28T00:00:00.000Z","height":1.65,"weight":72,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":807429022,"name":"Gerd Kanter","nationality":"EST","sex":"male","date_of_birth":"1979-05-06T00:00:00.000Z","height":1.96,"weight":125,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":859175581,"name":"Gerek Meinhardt","nationality":"USA","sex":"male","date_of_birth":"1990-07-27T00:00:00.000Z","height":1.83,"weight":79,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":145487888,"name":"Gergely Gyurta","nationality":"HUN","sex":"male","date_of_birth":"1991-09-12T00:00:00.000Z","height":1.75,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":293724411,"name":"Gergo Kis","nationality":"HUN","sex":"male","date_of_birth":"1988-01-19T00:00:00.000Z","height":1.83,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":996218071,"name":"Gergo Zalanki","nationality":"HUN","sex":"male","date_of_birth":"1995-02-26T00:00:00.000Z","height":1.92,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":60549448,"name":"Gerina Piller","nationality":"USA","sex":"female","date_of_birth":"1985-03-29T00:00:00.000Z","height":1.71,"weight":64,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":285564872,"name":"Germain Chardin","nationality":"FRA","sex":"male","date_of_birth":"1983-05-15T00:00:00.000Z","height":1.95,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":140439112,"name":"German Chiaraviglio","nationality":"ARG","sex":"male","date_of_birth":"1987-04-16T00:00:00.000Z","height":1.95,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":588470797,"name":"German Lauro","nationality":"ARG","sex":"male","date_of_birth":"1984-04-02T00:00:00.000Z","height":1.86,"weight":127,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":995047699,"name":"German Sanchez","nationality":"MEX","sex":"male","date_of_birth":"1992-06-24T00:00:00.000Z","height":1.65,"weight":60,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":151532302,"name":"German Schulz","nationality":"ARG","sex":"male","date_of_birth":"1994-02-05T00:00:00.000Z","height":1.88,"weight":95,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":482136504,"name":"Gernot Rumpler","nationality":"AUT","sex":"male","date_of_birth":"1994-02-21T00:00:00.000Z","height":1.89,"weight":86,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":423925127,"name":"Geronimo Rulli","nationality":"ARG","sex":"male","date_of_birth":"1992-05-20T00:00:00.000Z","height":1.75,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":377536681,"name":"Gesa Felicitas Krause","nationality":"GER","sex":"female","date_of_birth":"1992-08-03T00:00:00.000Z","height":1.67,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":477754355,"name":"Geumyoung Jang","nationality":"KOR","sex":"female","date_of_birth":"1980-05-04T00:00:00.000Z","height":1.63,"weight":51,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":947906397,"name":"Gevrise Emane","nationality":"FRA","sex":"female","date_of_birth":"1982-07-27T00:00:00.000Z","height":1.62,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":882847570,"name":"Geza Imre","nationality":"HUN","sex":"male","date_of_birth":"1974-12-23T00:00:00.000Z","height":1.84,"weight":75,"sport":"fencing","gold":0,"silver":1,"bronze":1,"info":null},{"id":962431612,"name":"Ghader Mizbani Iranagh","nationality":"IRI","sex":"male","date_of_birth":"1975-12-06T00:00:00.000Z","height":1.75,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":331492734,"name":"Ghasem Gholamreza Rezaei","nationality":"IRI","sex":"male","date_of_birth":"1985-08-18T00:00:00.000Z","height":1.85,"weight":100,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":827807718,"name":"Ghirmay Ghebreslassie","nationality":"ERI","sex":"male","date_of_birth":"1995-11-14T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":173887489,"name":"Ghislain Perrier","nationality":"BRA","sex":"male","date_of_birth":"1987-05-17T00:00:00.000Z","height":1.79,"weight":75,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":195640295,"name":"Ghislaine Landry","nationality":"CAN","sex":"female","date_of_birth":"1988-04-27T00:00:00.000Z","height":1.63,"weight":65,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":545908968,"name":"Ghofran Ahmed","nationality":"EGY","sex":"male","date_of_birth":"1992-09-30T00:00:00.000Z","height":1.92,"weight":68,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":76147159,"name":"Ghofrane Mohamed","nationality":"SYR","sex":"female","date_of_birth":"1989-06-06T00:00:00.000Z","height":1.68,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":49318551,"name":"Ghulam Mustafa Bashir","nationality":"PAK","sex":"male","date_of_birth":"1987-07-04T00:00:00.000Z","height":1.8,"weight":74,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":810499490,"name":"Gi Jung Kim","nationality":"KOR","sex":"male","date_of_birth":"1990-08-14T00:00:00.000Z","height":1.79,"weight":83,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":966812060,"name":"Gianina Beleaga","nationality":"ROU","sex":"female","date_of_birth":"1995-05-21T00:00:00.000Z","height":1.78,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":425384574,"name":"Gideoni Monteiro","nationality":"BRA","sex":"male","date_of_birth":"1989-09-02T00:00:00.000Z","height":1.8,"weight":77,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":442076859,"name":"Giedrius Titenis","nationality":"LTU","sex":"male","date_of_birth":"1989-07-21T00:00:00.000Z","height":1.93,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":826096399,"name":"Gift Motupa","nationality":"RSA","sex":"male","date_of_birth":"1994-09-23T00:00:00.000Z","height":1.76,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":684871850,"name":"Gil Cohen","nationality":"ISR","sex":"female","date_of_birth":"1992-07-07T00:00:00.000Z","height":1.7,"weight":62,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":802471466,"name":"Gil Roberts","nationality":"USA","sex":"male","date_of_birth":"1989-03-15T00:00:00.000Z","height":1.88,"weight":81,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":515485007,"name":"Gilda Casanova","nationality":"CUB","sex":"female","date_of_birth":"1995-12-19T00:00:00.000Z","height":1.65,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":63834716,"name":"Gilda Maria de Oliveira","nationality":"BRA","sex":"female","date_of_birth":"1983-08-06T00:00:00.000Z","height":1.69,"weight":69,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":48092287,"name":"Giles Scott","nationality":"GBR","sex":"male","date_of_birth":"1987-06-23T00:00:00.000Z","height":1.97,"weight":95,"sport":"sailing","gold":1,"silver":0,"bronze":0,"info":null},{"id":275098717,"name":"Gili Cohen","nationality":"ISR","sex":"female","date_of_birth":"1991-06-19T00:00:00.000Z","height":1.6,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":462314692,"name":"Gilles Muller","nationality":"LUX","sex":"male","date_of_birth":"1983-05-09T00:00:00.000Z","height":1.93,"weight":90,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":991427076,"name":"Gilles Simon","nationality":"FRA","sex":"male","date_of_birth":"1984-12-27T00:00:00.000Z","height":1.83,"weight":70,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":156004551,"name":"Gillian Sanders","nationality":"RSA","sex":"female","date_of_birth":"1981-10-15T00:00:00.000Z","height":1.68,"weight":53,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":266372600,"name":"Gillies Kaka","nationality":"NZL","sex":"male","date_of_birth":"1990-05-28T00:00:00.000Z","height":1.85,"weight":90,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":802381327,"name":"Gilvan Bitencourt Ribeiro","nationality":"BRA","sex":"male","date_of_birth":"1989-05-08T00:00:00.000Z","height":1.8,"weight":83,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":784102100,"name":"Gina Bass","nationality":"GAM","sex":"female","date_of_birth":"1995-05-03T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":326826084,"name":"Gina Luckenkemper","nationality":"GER","sex":"female","date_of_birth":"1996-11-21T00:00:00.000Z","height":1.7,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":64983596,"name":"Ginga Munetomo","nationality":"JPN","sex":"male","date_of_birth":"1994-04-07T00:00:00.000Z","height":1.65,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":436375736,"name":"Gintare Scheidt","nationality":"LTU","sex":"female","date_of_birth":"1982-11-12T00:00:00.000Z","height":1.72,"weight":63,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":859779804,"name":"Giordan Harris","nationality":"MHL","sex":"male","date_of_birth":"1993-04-19T00:00:00.000Z","height":1.85,"weight":99,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":663457782,"name":"Giordano Benedetti","nationality":"ITA","sex":"male","date_of_birth":"1989-05-22T00:00:00.000Z","height":1.89,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":836669361,"name":"Giorgi Chkheidze","nationality":"GEO","sex":"male","date_of_birth":"1997-10-30T00:00:00.000Z","height":1.78,"weight":105,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":976881370,"name":"Giorgia Bordignon","nationality":"ITA","sex":"female","date_of_birth":"1987-05-24T00:00:00.000Z","height":1.61,"weight":63,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":980482855,"name":"Giorgia Bronzini","nationality":"ITA","sex":"female","date_of_birth":"1983-08-03T00:00:00.000Z","height":1.6,"weight":54,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":298556273,"name":"Giorgio Avola","nationality":"ITA","sex":"male","date_of_birth":"1989-05-08T00:00:00.000Z","height":1.78,"weight":72,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":450155404,"name":"Giorgio Poggi","nationality":"ITA","sex":"male","date_of_birth":"1981-08-26T00:00:00.000Z","height":1.86,"weight":100,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":590407470,"name":"Giovana Prado Pass","nationality":"BRA","sex":"female","date_of_birth":"1998-03-30T00:00:00.000Z","height":1.67,"weight":59,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":42773874,"name":"Giovani Lo Celso","nationality":"ARG","sex":"male","date_of_birth":"1996-04-09T00:00:00.000Z","height":1.69,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":979844393,"name":"Giovanna Pedroso","nationality":"BRA","sex":"female","date_of_birth":"1998-10-15T00:00:00.000Z","height":1.62,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":276844108,"name":"Giovanni Abagnale","nationality":"ITA","sex":"male","date_of_birth":"1995-01-11T00:00:00.000Z","height":1.98,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":870019483,"name":"Giovanni Battista Bardis","nationality":"FRA","sex":"male","date_of_birth":"1987-05-21T00:00:00.000Z","height":1.77,"weight":85,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":135611970,"name":"Giovanni Cernogoraz","nationality":"CRO","sex":"male","date_of_birth":"1982-12-27T00:00:00.000Z","height":1.86,"weight":90,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":890980773,"name":"Giovanni Codrington","nationality":"NED","sex":"male","date_of_birth":"1988-07-17T00:00:00.000Z","height":1.77,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":117303436,"name":"Giovanni Pellielo","nationality":"ITA","sex":"male","date_of_birth":"1970-01-11T00:00:00.000Z","height":1.73,"weight":96,"sport":"shooting","gold":0,"silver":1,"bronze":0,"info":null},{"id":453426505,"name":"Giovanni Simeone","nationality":"ARG","sex":"male","date_of_birth":"1995-07-05T00:00:00.000Z","height":1.68,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":611012468,"name":"Giovanni Tocci","nationality":"ITA","sex":"male","date_of_birth":"1994-08-31T00:00:00.000Z","height":1.75,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":20576077,"name":"Giovanni de Gennaro","nationality":"ITA","sex":"male","date_of_birth":"1992-07-21T00:00:00.000Z","height":1.85,"weight":80,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":258007826,"name":"Giselle Ansley","nationality":"GBR","sex":"female","date_of_birth":"1992-03-31T00:00:00.000Z","height":1.76,"weight":73,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":994296683,"name":"Githa Michiels","nationality":"BEL","sex":"female","date_of_birth":"1983-03-28T00:00:00.000Z","height":1.66,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":69404061,"name":"Giulia Conti","nationality":"ITA","sex":"female","date_of_birth":"1985-11-04T00:00:00.000Z","height":1.73,"weight":62,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":820456660,"name":"Giulia Emmolo","nationality":"ITA","sex":"female","date_of_birth":"1991-10-16T00:00:00.000Z","height":1.71,"weight":67,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":435542404,"name":"Giulia Gorlero","nationality":"ITA","sex":"female","date_of_birth":"1990-09-26T00:00:00.000Z","height":1.8,"weight":73,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":335874891,"name":"Giulia Molinaro","nationality":"ITA","sex":"female","date_of_birth":"1990-07-23T00:00:00.000Z","height":1.78,"weight":72,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":358923417,"name":"Giulia Sergas","nationality":"ITA","sex":"female","date_of_birth":"1979-12-26T00:00:00.000Z","height":1.77,"weight":64,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":475800155,"name":"Giulia Steingruber","nationality":"SUI","sex":"female","date_of_birth":"1994-03-24T00:00:00.000Z","height":1.6,"weight":56,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":446145894,"name":"Giulio Dressino","nationality":"ITA","sex":"male","date_of_birth":"1992-11-05T00:00:00.000Z","height":1.83,"weight":75,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":231324548,"name":"Giuseppe Giordano","nationality":"ITA","sex":"male","date_of_birth":"1974-07-16T00:00:00.000Z","height":1.7,"weight":73,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":825126068,"name":"Giuseppe Vicino","nationality":"ITA","sex":"male","date_of_birth":"1993-02-26T00:00:00.000Z","height":1.95,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":453710519,"name":"Gladys Tejeda","nationality":"PER","sex":"female","date_of_birth":"1985-09-30T00:00:00.000Z","height":1.56,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":261518671,"name":"Glencora McGhie","nationality":"AUS","sex":"female","date_of_birth":"1988-08-08T00:00:00.000Z","height":1.78,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":820466247,"name":"Glenn Kable","nationality":"FIJ","sex":"male","date_of_birth":"1963-05-04T00:00:00.000Z","height":1.86,"weight":92,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":344080952,"name":"Glenn O'Shea","nationality":"AUS","sex":"male","date_of_birth":"1989-06-14T00:00:00.000Z","height":1.8,"weight":76,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":801742919,"name":"Glenn Ochal","nationality":"USA","sex":"male","date_of_birth":"1986-03-01T00:00:00.000Z","height":1.94,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":36388952,"name":"Glenn Schuurman","nationality":"NED","sex":"male","date_of_birth":"1991-04-16T00:00:00.000Z","height":1.83,"weight":79,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":679206973,"name":"Glenn Snyders","nationality":"NZL","sex":"male","date_of_birth":"1987-04-07T00:00:00.000Z","height":1.79,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":585626028,"name":"Glenn Surgeloose","nationality":"BEL","sex":"male","date_of_birth":"1989-09-04T00:00:00.000Z","height":1.82,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":914132578,"name":"Glenn Sutanto","nationality":"INA","sex":"male","date_of_birth":"1989-11-07T00:00:00.000Z","height":1.83,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":355204683,"name":"Glenn Turner","nationality":"AUS","sex":"male","date_of_birth":"1984-05-01T00:00:00.000Z","height":1.79,"weight":82,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":482085423,"name":"Gloria Asumnu","nationality":"NGR","sex":"female","date_of_birth":"1985-05-22T00:00:00.000Z","height":1.68,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":366511914,"name":"Gloria Comerma","nationality":"ESP","sex":"female","date_of_birth":"1987-04-18T00:00:00.000Z","height":1.68,"weight":64,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":95564568,"name":"Gloria Hooper","nationality":"ITA","sex":"female","date_of_birth":"1992-03-03T00:00:00.000Z","height":1.74,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":848853741,"name":"Gnonsiane Niombla","nationality":"FRA","sex":"female","date_of_birth":"1990-07-09T00:00:00.000Z","height":1.72,"weight":69,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":138570390,"name":"Godfrey Khotso Mokoena","nationality":"RSA","sex":"male","date_of_birth":"1985-03-06T00:00:00.000Z","height":1.9,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":56023329,"name":"Goitom Kifle","nationality":"ERI","sex":"male","date_of_birth":"1993-12-03T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":599927900,"name":"Gojko Pijetlovic","nationality":"SRB","sex":"male","date_of_birth":"1983-08-07T00:00:00.000Z","height":1.94,"weight":92,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":142292684,"name":"Golan Pollack","nationality":"ISR","sex":"male","date_of_birth":"1991-09-10T00:00:00.000Z","height":1.75,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":679226224,"name":"Golnoush Sebghatollahi","nationality":"IRI","sex":"female","date_of_birth":"1990-12-20T00:00:00.000Z","height":1.58,"weight":61,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":69505234,"name":"Gonzalo Carou","nationality":"ARG","sex":"male","date_of_birth":"1979-08-15T00:00:00.000Z","height":1.9,"weight":100,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":854221966,"name":"Gonzalo Carreras","nationality":"ARG","sex":"male","date_of_birth":"1989-10-26T00:00:00.000Z","height":1.86,"weight":88,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":532947055,"name":"Gonzalo Echenique Saglietti","nationality":"ESP","sex":"male","date_of_birth":"1990-04-27T00:00:00.000Z","height":1.9,"weight":94,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":124979010,"name":"Gonzalo Molina","nationality":"ARG","sex":"male","date_of_birth":"1995-05-05T00:00:00.000Z","height":1.78,"weight":83,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":67406936,"name":"Gonzalo Peillat","nationality":"ARG","sex":"male","date_of_birth":"1992-08-12T00:00:00.000Z","height":1.77,"weight":82,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":579541939,"name":"Gonzalo Raul Tellechea","nationality":"ARG","sex":"male","date_of_birth":"1985-07-11T00:00:00.000Z","height":1.74,"weight":61,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":897428173,"name":"Gonzalo Ruiz de la Cruz","nationality":"MEX","sex":"male","date_of_birth":"1988-04-28T00:00:00.000Z","height":1.86,"weight":87,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":607191429,"name":"Gor Minasyan","nationality":"ARM","sex":"male","date_of_birth":"1994-10-25T00:00:00.000Z","height":1.8,"weight":144,"sport":"weightlifting","gold":0,"silver":1,"bronze":0,"info":null},{"id":612779114,"name":"Goran Stojanovic","nationality":"QAT","sex":"male","date_of_birth":"1977-02-24T00:00:00.000Z","height":1.91,"weight":90,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":667077682,"name":"Gorazd Skof","nationality":"SLO","sex":"male","date_of_birth":"1977-07-11T00:00:00.000Z","height":1.88,"weight":90,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":908126279,"name":"Gordon Benson","nationality":"GBR","sex":"male","date_of_birth":"1994-05-12T00:00:00.000Z","height":1.91,"weight":78,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":192247711,"name":"Gordon Johnston","nationality":"CAN","sex":"male","date_of_birth":"1993-01-30T00:00:00.000Z","height":1.87,"weight":88,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":329155440,"name":"Goretti Alejandra Zumaya Flores","nationality":"MEX","sex":"female","date_of_birth":"1997-05-31T00:00:00.000Z","height":1.65,"weight":65,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":607509598,"name":"Govert Viergever","nationality":"NED","sex":"male","date_of_birth":"1989-07-29T00:00:00.000Z","height":1.84,"weight":85,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":702595268,"name":"Grace Claxton","nationality":"PUR","sex":"female","date_of_birth":"1993-08-19T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":705783753,"name":"Grace Latz","nationality":"USA","sex":"female","date_of_birth":"1988-02-21T00:00:00.000Z","height":1.83,"weight":79,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":552672529,"name":"Grace Luczak","nationality":"USA","sex":"female","date_of_birth":"1989-05-24T00:00:00.000Z","height":1.91,"weight":77,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":313174514,"name":"Grace Prendergast","nationality":"NZL","sex":"female","date_of_birth":"1992-06-30T00:00:00.000Z","height":1.83,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":555289430,"name":"Grace Reid","nationality":"GBR","sex":"female","date_of_birth":"1996-05-09T00:00:00.000Z","height":1.69,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":120616586,"name":"Grace Stewart","nationality":"AUS","sex":"female","date_of_birth":"1997-04-28T00:00:00.000Z","height":1.75,"weight":68,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":304397961,"name":"Grace Wanjiru Njue","nationality":"KEN","sex":"female","date_of_birth":"1979-01-10T00:00:00.000Z","height":1.62,"weight":43,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":537810856,"name":"Grace Zaadi Deuna","nationality":"FRA","sex":"female","date_of_birth":"1993-07-07T00:00:00.000Z","height":1.71,"weight":66,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":893023802,"name":"Gracie Elvin","nationality":"AUS","sex":"female","date_of_birth":"1988-10-31T00:00:00.000Z","height":1.75,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":933428907,"name":"Graciele Herrmann","nationality":"BRA","sex":"female","date_of_birth":"1992-01-01T00:00:00.000Z","height":1.8,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":639691475,"name":"Graciete Santana","nationality":"BRA","sex":"female","date_of_birth":"1980-10-12T00:00:00.000Z","height":1.55,"weight":43,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":792601678,"name":"Graeme Saunders","nationality":"CAN","sex":"male","date_of_birth":"1990-07-19T00:00:00.000Z","height":1.78,"weight":75,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":929889629,"name":"Graham DeLaet","nationality":"CAN","sex":"male","date_of_birth":"1982-01-22T00:00:00.000Z","height":1.8,"weight":75,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":407795026,"name":"Graham Vigrass","nationality":"CAN","sex":"male","date_of_birth":"1989-06-17T00:00:00.000Z","height":2.05,"weight":97,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":104640408,"name":"Grant Ferguson","nationality":"GBR","sex":"male","date_of_birth":"1993-11-15T00:00:00.000Z","height":1.86,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":636322182,"name":"Grant Irvine","nationality":"AUS","sex":"male","date_of_birth":"1991-03-17T00:00:00.000Z","height":1.87,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":298928947,"name":"Grant Nel","nationality":"AUS","sex":"male","date_of_birth":"1988-04-07T00:00:00.000Z","height":1.73,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":423041181,"name":"Greg Billington","nationality":"USA","sex":"male","date_of_birth":"1989-05-30T00:00:00.000Z","height":1.76,"weight":65,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":267820041,"name":"Greg Patrick Broderick","nationality":"IRL","sex":"male","date_of_birth":"1985-09-21T00:00:00.000Z","height":1.8,"weight":50,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":310167929,"name":"Greg Rutherford","nationality":"GBR","sex":"male","date_of_birth":"1986-11-17T00:00:00.000Z","height":1.88,"weight":92,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":503615176,"name":"Greg van Avermaet","nationality":"BEL","sex":"male","date_of_birth":"1985-05-17T00:00:00.000Z","height":1.81,"weight":74,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":615982348,"name":"Gregor Traber","nationality":"GER","sex":"male","date_of_birth":"1992-12-02T00:00:00.000Z","height":1.9,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":127715970,"name":"Gregorio Paltrinieri","nationality":"ITA","sex":"male","date_of_birth":"1994-09-05T00:00:00.000Z","height":1.91,"weight":72,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":160584680,"name":"Gregory Bauge","nationality":"FRA","sex":"male","date_of_birth":"1985-01-31T00:00:00.000Z","height":1.81,"weight":100,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":517601975,"name":"Gregory Bourdy","nationality":"FRA","sex":"male","date_of_birth":"1982-04-25T00:00:00.000Z","height":1.8,"weight":70,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":146969359,"name":"Gregory Echenique","nationality":"VEN","sex":"male","date_of_birth":"1990-11-23T00:00:00.000Z","height":2.06,"weight":137,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":266128648,"name":"Gregory Mallet","nationality":"FRA","sex":"male","date_of_birth":"1984-03-21T00:00:00.000Z","height":1.96,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":389701340,"name":"Gregory Vargas","nationality":"VEN","sex":"male","date_of_birth":"1986-02-18T00:00:00.000Z","height":1.82,"weight":90,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":342622397,"name":"Gremlis Arvelo","nationality":"VEN","sex":"female","date_of_birth":"1996-08-21T00:00:00.000Z","height":1.67,"weight":62,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":695131532,"name":"Greysia Polii","nationality":"INA","sex":"female","date_of_birth":"1987-08-11T00:00:00.000Z","height":1.63,"weight":56,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":282490475,"name":"Griedge Mbock Bathy","nationality":"FRA","sex":"female","date_of_birth":"1995-02-26T00:00:00.000Z","height":1.72,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":952560452,"name":"Grigor Dimitrov","nationality":"BUL","sex":"male","date_of_birth":"1991-05-16T00:00:00.000Z","height":1.91,"weight":80,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":457130620,"name":"Grigori Minaskin","nationality":"EST","sex":"male","date_of_birth":"1991-02-01T00:00:00.000Z","height":1.78,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":383336831,"name":"Grigory Tarasevich","nationality":"RUS","sex":"male","date_of_birth":"1995-08-01T00:00:00.000Z","height":1.91,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":96493170,"name":"Grischa Proemel","nationality":"GER","sex":"male","date_of_birth":"1995-01-09T00:00:00.000Z","height":1.82,"weight":78,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":572471810,"name":"Griselda Khng","nationality":"SIN","sex":"female","date_of_birth":"1991-07-31T00:00:00.000Z","height":1.55,"weight":60,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":326722499,"name":"Grit Sadeiko","nationality":"EST","sex":"female","date_of_birth":"1989-07-29T00:00:00.000Z","height":1.72,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":96345357,"name":"Grzegorz Fijalek","nationality":"POL","sex":"male","date_of_birth":"1987-05-11T00:00:00.000Z","height":1.85,"weight":99,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":491637727,"name":"Grzegorz Hedwig","nationality":"POL","sex":"male","date_of_birth":"1988-07-17T00:00:00.000Z","height":1.79,"weight":82,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":844475495,"name":"Grzegorz Lomacz","nationality":"POL","sex":"male","date_of_birth":"1987-10-01T00:00:00.000Z","height":1.87,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":282268874,"name":"Guadalupe Lopez","nationality":"COL","sex":"female","date_of_birth":"1988-01-12T00:00:00.000Z","height":1.65,"weight":58,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":466700626,"name":"Guan-Lin Yu","nationality":"TPE","sex":"male","date_of_birth":"1993-11-29T00:00:00.000Z","height":1.71,"weight":58,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":85090026,"name":"Guangyuan Li","nationality":"CHN","sex":"male","date_of_birth":"1997-02-27T00:00:00.000Z","height":1.87,"weight":81,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":613886806,"name":"Guanjie Johnathan Wong","nationality":"MAS","sex":"male","date_of_birth":"1992-08-23T00:00:00.000Z","height":1.72,"weight":67,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":78601659,"name":"Guannan Niu","nationality":"CHN","sex":"female","date_of_birth":"1992-05-10T00:00:00.000Z","height":1.77,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":331829339,"name":"Gudaf Tsegay","nationality":"ETH","sex":"female","date_of_birth":"1997-11-23T00:00:00.000Z","height":1.63,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":576749129,"name":"Gudni Valur Gudnason","nationality":"ISL","sex":"male","date_of_birth":"1995-10-11T00:00:00.000Z","height":1.99,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":511096047,"name":"Gudrun Stock","nationality":"GER","sex":"female","date_of_birth":"1995-05-23T00:00:00.000Z","height":1.68,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":233933004,"name":"Guendalina Sartori","nationality":"ITA","sex":"female","date_of_birth":"1988-08-08T00:00:00.000Z","height":1.69,"weight":90,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":100452924,"name":"Guham Cho","nationality":"KOR","sex":"male","date_of_birth":"1992-07-30T00:00:00.000Z","height":1.78,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":220835497,"name":"Guido Pella","nationality":"ARG","sex":"male","date_of_birth":"1990-05-17T00:00:00.000Z","height":1.83,"weight":80,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":905148205,"name":"Guido Vianello","nationality":"ITA","sex":"male","date_of_birth":"1994-05-09T00:00:00.000Z","height":1.98,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":405955663,"name":"Guilherme Giovannoni","nationality":"BRA","sex":"male","date_of_birth":"1980-06-02T00:00:00.000Z","height":2.04,"weight":100,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":196836126,"name":"Guilherme Guido","nationality":"BRA","sex":"male","date_of_birth":"1987-02-12T00:00:00.000Z","height":1.94,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":256859725,"name":"Guilherme Melaragno","nationality":"BRA","sex":"male","date_of_birth":"1993-08-09T00:00:00.000Z","height":1.84,"weight":88,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":304528456,"name":"Guilherme Toldo","nationality":"BRA","sex":"male","date_of_birth":"1992-09-01T00:00:00.000Z","height":1.76,"weight":70,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":428363139,"name":"Guillaume Raineau","nationality":"FRA","sex":"male","date_of_birth":"1986-06-29T00:00:00.000Z","height":1.87,"weight":71,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":9637437,"name":"Guillermo Duran","nationality":"ARG","sex":"male","date_of_birth":"1988-06-06T00:00:00.000Z","height":1.78,"weight":82,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":107880382,"name":"Guillermo Molina Rios","nationality":"ESP","sex":"male","date_of_birth":"1984-03-16T00:00:00.000Z","height":1.95,"weight":105,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":70220465,"name":"Gulbadam Babamuratova","nationality":"TKM","sex":"female","date_of_birth":"1991-08-24T00:00:00.000Z","height":1.56,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":699962258,"name":"Gulnabat Kadyrova","nationality":"TKM","sex":"female","date_of_birth":"1994-06-14T00:00:00.000Z","height":1.65,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":192705392,"name":"Gulnaz Gubaydullina","nationality":"RUS","sex":"female","date_of_birth":"1992-02-14T00:00:00.000Z","height":1.64,"weight":51,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":15083082,"name":"Gulnoza Matniyazova","nationality":"UZB","sex":"female","date_of_birth":"1994-08-10T00:00:00.000Z","height":1.68,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":126810270,"name":"Gulzhanat Zhanatbek","nationality":"KAZ","sex":"female","date_of_birth":"1991-11-30T00:00:00.000Z","height":1.7,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":696433108,"name":"Gundegmaa Otryad","nationality":"MGL","sex":"female","date_of_birth":"1978-05-23T00:00:00.000Z","height":1.68,"weight":63,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":504342645,"name":"Gunn-Rita Dahle Flesjaa","nationality":"NOR","sex":"female","date_of_birth":"1973-02-10T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":732208032,"name":"Gunnar Bentz","nationality":"USA","sex":"male","date_of_birth":"1996-01-03T00:00:00.000Z","height":1.96,"weight":83,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":151055874,"name":"Gunta Latiseva-Cudare","nationality":"LAT","sex":"female","date_of_birth":"1995-03-09T00:00:00.000Z","height":1.79,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":970528741,"name":"Guojian Dong","nationality":"CHN","sex":"male","date_of_birth":"1987-03-16T00:00:00.000Z","height":1.7,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":849428562,"name":"Guor Marial","nationality":"SSD","sex":"male","date_of_birth":"1984-04-15T00:00:00.000Z","height":1.8,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":174463586,"name":"Guowei Zhang","nationality":"CHN","sex":"male","date_of_birth":"1991-06-04T00:00:00.000Z","height":2.02,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":695858631,"name":"Gurmeet Singh","nationality":"IND","sex":"male","date_of_birth":"1985-07-01T00:00:00.000Z","height":1.72,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":773668294,"name":"Gurpreet Singh","nationality":"IND","sex":"male","date_of_birth":"1987-12-19T00:00:00.000Z","height":1.76,"weight":81,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":335760688,"name":"Gustavo Albuquerque","nationality":"BRA","sex":"male","date_of_birth":"1991-06-28T00:00:00.000Z","height":1.72,"weight":85,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":905869826,"name":"Gustavo Cuesta","nationality":"DOM","sex":"male","date_of_birth":"1988-11-14T00:00:00.000Z","height":1.73,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":587811250,"name":"Gustavo Guimaraes","nationality":"BRA","sex":"male","date_of_birth":"1994-01-24T00:00:00.000Z","height":1.8,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":17989231,"name":"Gustavo Lima","nationality":"POR","sex":"male","date_of_birth":"1977-07-13T00:00:00.000Z","height":1.85,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":743751961,"name":"Gustavo Tsuboi","nationality":"BRA","sex":"male","date_of_birth":"1985-05-31T00:00:00.000Z","height":1.7,"weight":65,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":833430291,"name":"Gustavo Vernes","nationality":"BRA","sex":"male","date_of_birth":"1993-03-24T00:00:00.000Z","height":null,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":125360707,"name":"Guy-Elphege Anouman","nationality":"FRA","sex":"male","date_of_birth":"1994-06-13T00:00:00.000Z","height":1.77,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":369581493,"name":"Guzel Manyurova","nationality":"KAZ","sex":"female","date_of_birth":"1978-01-24T00:00:00.000Z","height":1.74,"weight":75,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":904653083,"name":"Gwanghee Cho","nationality":"KOR","sex":"male","date_of_birth":"1993-12-24T00:00:00.000Z","height":1.82,"weight":92,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":796100413,"name":"Gwanghyeok Lee","nationality":"KOR","sex":"male","date_of_birth":"1995-09-11T00:00:00.000Z","height":null,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":459485655,"name":"Gwanuk Kim","nationality":"KOR","sex":"male","date_of_birth":"1990-07-22T00:00:00.000Z","height":1.77,"weight":90,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":874914826,"name":"Gwen Berry","nationality":"USA","sex":"female","date_of_birth":"1989-06-29T00:00:00.000Z","height":1.76,"weight":88,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":292122842,"name":"Gwen Jorgensen","nationality":"USA","sex":"female","date_of_birth":"1986-04-25T00:00:00.000Z","height":1.78,"weight":58,"sport":"triathlon","gold":1,"silver":0,"bronze":0,"info":null},{"id":3322965,"name":"Gwladys Epangue","nationality":"FRA","sex":"female","date_of_birth":"1983-08-15T00:00:00.000Z","height":1.78,"weight":88,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":302633574,"name":"Gwladys Nocera Pucet","nationality":"FRA","sex":"female","date_of_birth":"1975-05-22T00:00:00.000Z","height":1.68,"weight":62,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":42510155,"name":"Gyorgyi Zsivoczky-Farkas","nationality":"HUN","sex":"female","date_of_birth":"1985-02-13T00:00:00.000Z","height":1.7,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":301226095,"name":"Ha Na Kim","nationality":"KOR","sex":"female","date_of_birth":"1989-12-27T00:00:00.000Z","height":1.72,"weight":55,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":553897082,"name":"Habib de Las Salas de la Rosa","nationality":"COL","sex":"male","date_of_birth":"1987-04-19T00:00:00.000Z","height":1.59,"weight":56,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":962588204,"name":"Habiba Ghribi","nationality":"TUN","sex":"female","date_of_birth":"1984-04-09T00:00:00.000Z","height":1.74,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":585034068,"name":"Habibollah Jomeh Akhlaghi","nationality":"IRI","sex":"male","date_of_birth":"1985-08-03T00:00:00.000Z","height":1.75,"weight":90,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":204254643,"name":"Habitam Alemu","nationality":"ETH","sex":"female","date_of_birth":"1997-07-09T00:00:00.000Z","height":1.71,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":753076822,"name":"Haby Niare","nationality":"FRA","sex":"female","date_of_birth":"1993-06-26T00:00:00.000Z","height":1.76,"weight":66,"sport":"taekwondo","gold":0,"silver":1,"bronze":0,"info":null},{"id":755601006,"name":"Hadir Mekhimar","nationality":"EGY","sex":"female","date_of_birth":"1997-11-25T00:00:00.000Z","height":1.65,"weight":62,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":472316019,"name":"Hae Mi Park","nationality":"KOR","sex":"female","date_of_birth":"1990-01-31T00:00:00.000Z","height":1.68,"weight":55,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":402157963,"name":"Hae Ran Kim","nationality":"KOR","sex":"female","date_of_birth":"1984-03-16T00:00:00.000Z","height":1.68,"weight":57,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":188491847,"name":"Haein Sim","nationality":"KOR","sex":"female","date_of_birth":"1987-10-31T00:00:00.000Z","height":1.78,"weight":66,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":16804644,"name":"Haeun Yang","nationality":"KOR","sex":"female","date_of_birth":"1994-02-25T00:00:00.000Z","height":1.71,"weight":58,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":861637149,"name":"Hafifi Bin Mansor Mohd","nationality":"MAS","sex":"male","date_of_birth":"1990-10-28T00:00:00.000Z","height":1.66,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":718811090,"name":"Hafize Sahin","nationality":"TUR","sex":"female","date_of_birth":"1992-01-01T00:00:00.000Z","height":1.7,"weight":63,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":177699282,"name":"Hafsatu Kamara","nationality":"SLE","sex":"female","date_of_birth":"1991-12-07T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":825962890,"name":"Hagen Pohle","nationality":"GER","sex":"male","date_of_birth":"1992-03-05T00:00:00.000Z","height":1.78,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":461373663,"name":"Hagos Gebrhiwet","nationality":"ETH","sex":"male","date_of_birth":"1994-05-11T00:00:00.000Z","height":1.71,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":321494163,"name":"Haido Alexouli","nationality":"GRE","sex":"female","date_of_birth":"1991-03-29T00:00:00.000Z","height":1.8,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":754025410,"name":"Haifeng Fu","nationality":"CHN","sex":"male","date_of_birth":"1984-01-02T00:00:00.000Z","height":1.81,"weight":78,"sport":"badminton","gold":1,"silver":0,"bronze":0,"info":null},{"id":148299848,"name":"Hailemariyam Amare","nationality":"ETH","sex":"male","date_of_birth":"1997-02-22T00:00:00.000Z","height":1.75,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":48011673,"name":"Haiping Liu","nationality":"CHN","sex":"female","date_of_birth":"1988-06-03T00:00:00.000Z","height":1.73,"weight":69,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":428133887,"name":"Hairim Song","nationality":"KOR","sex":"female","date_of_birth":"1985-01-12T00:00:00.000Z","height":1.67,"weight":67,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":189517234,"name":"Haislan Antonio Veranes Garcia","nationality":"CAN","sex":"male","date_of_birth":"1983-03-04T00:00:00.000Z","height":1.75,"weight":66,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":788703039,"name":"Haithem Fahmy Mahmoud","nationality":"EGY","sex":"male","date_of_birth":"1991-09-23T00:00:00.000Z","height":1.54,"weight":59,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":997215061,"name":"Haiwei Chen","nationality":"CHN","sex":"male","date_of_birth":"1994-12-30T00:00:00.000Z","height":1.88,"weight":78,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":800071001,"name":"Haiyan Wu","nationality":"CHN","sex":"female","date_of_birth":"1993-02-26T00:00:00.000Z","height":1.66,"weight":58,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":354275948,"name":"Hajar Alkhaldi","nationality":"BRN","sex":"female","date_of_birth":"1995-03-17T00:00:00.000Z","height":1.6,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":934255578,"name":"Haji Aliyev","nationality":"AZE","sex":"male","date_of_birth":"1991-04-21T00:00:00.000Z","height":1.68,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":931847337,"name":"Hakan Dahlby","nationality":"SWE","sex":"male","date_of_birth":"1965-09-15T00:00:00.000Z","height":1.85,"weight":95,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":9093283,"name":"Hakan Eresker","nationality":"QAT","sex":"male","date_of_birth":"1994-07-05T00:00:00.000Z","height":1.71,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":983579784,"name":"Hakim Sadi","nationality":"ALG","sex":"male","date_of_birth":"1992-11-14T00:00:00.000Z","height":1.76,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":329066484,"name":"Haley Anderson","nationality":"USA","sex":"female","date_of_birth":"1991-11-20T00:00:00.000Z","height":1.78,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":587562061,"name":"Haley Ruth Augello","nationality":"USA","sex":"female","date_of_birth":"1994-10-17T00:00:00.000Z","height":1.61,"weight":54,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":853405739,"name":"Hali Flickinger","nationality":"USA","sex":"female","date_of_birth":"1994-07-07T00:00:00.000Z","height":1.66,"weight":52,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":427032354,"name":"Halil Akkas","nationality":"TUR","sex":"male","date_of_birth":"1983-07-01T00:00:00.000Z","height":1.75,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":779373345,"name":"Halimah Nakaayi","nationality":"UGA","sex":"female","date_of_birth":"1994-10-16T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":556391321,"name":"Haline Scatrut","nationality":"BRA","sex":"female","date_of_birth":"1992-08-09T00:00:00.000Z","height":1.69,"weight":64,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":911111392,"name":"Hamad Ali Mohamed A Al Attiyah","nationality":"QAT","sex":"male","date_of_birth":"1995-06-23T00:00:00.000Z","height":1.93,"weight":89,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":1664652,"name":"Hamada Mohamed","nationality":"EGY","sex":"male","date_of_birth":"1992-10-22T00:00:00.000Z","height":1.75,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":513005380,"name":"Hamada Talat","nationality":"EGY","sex":"male","date_of_birth":"1981-03-01T00:00:00.000Z","height":1.76,"weight":77,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":323154002,"name":"Hamdan Bayusuf","nationality":"KEN","sex":"male","date_of_birth":"1994-09-29T00:00:00.000Z","height":1.82,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":443393856,"name":"Hamdy Moustafa Elsaid Abdelwahab","nationality":"EGY","sex":"male","date_of_birth":"1993-01-22T00:00:00.000Z","height":1.71,"weight":96,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":550868905,"name":"Hamed Said Alkhatri","nationality":"OMA","sex":"male","date_of_birth":"1985-05-24T00:00:00.000Z","height":1.68,"weight":90,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":531580523,"name":"Hamid Ezzine","nationality":"MAR","sex":"male","date_of_birth":"1983-10-05T00:00:00.000Z","height":1.74,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":541385072,"name":"Hamid Mohammad Soryan","nationality":"IRI","sex":"male","date_of_birth":"1985-08-24T00:00:00.000Z","height":1.67,"weight":64,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":614655928,"name":"Hamid Sintes","nationality":"ALG","sex":"male","date_of_birth":"1980-08-08T00:00:00.000Z","height":1.69,"weight":67,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":392547032,"name":"Hamidreza Zooravand","nationality":"IRI","sex":"male","date_of_birth":"1990-01-13T00:00:00.000Z","height":1.76,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":296637442,"name":"Hamish Bond","nationality":"NZL","sex":"male","date_of_birth":"1986-02-13T00:00:00.000Z","height":1.89,"weight":89,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":661625599,"name":"Hamish Carson","nationality":"NZL","sex":"male","date_of_birth":"1988-11-01T00:00:00.000Z","height":1.81,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":738803068,"name":"Hamish Peacock","nationality":"AUS","sex":"male","date_of_birth":"1990-10-15T00:00:00.000Z","height":1.85,"weight":98,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":927364164,"name":"Hammadi Ahmed","nationality":"IRQ","sex":"male","date_of_birth":"1989-10-18T00:00:00.000Z","height":1.77,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":589649660,"name":"Hamza Alic","nationality":"BIH","sex":"male","date_of_birth":"1979-01-20T00:00:00.000Z","height":1.86,"weight":130,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":668979909,"name":"Hamza Bouras","nationality":"ALG","sex":"male","date_of_birth":"1987-12-16T00:00:00.000Z","height":1.7,"weight":73,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":672961939,"name":"Hamza Touba","nationality":"GER","sex":"male","date_of_birth":"1991-11-06T00:00:00.000Z","height":1.7,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":857979045,"name":"Hamzeh Zarini","nationality":"IRI","sex":"male","date_of_birth":"1985-10-18T00:00:00.000Z","height":1.98,"weight":98,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":360154059,"name":"Han Na Gwon","nationality":"KOR","sex":"female","date_of_birth":"1989-11-22T00:00:00.000Z","height":1.73,"weight":65,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":474085303,"name":"Hana Matelova","nationality":"CZE","sex":"female","date_of_birth":"1990-06-08T00:00:00.000Z","height":1.6,"weight":53,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":103924089,"name":"Hanami Sekine","nationality":"JPN","sex":"female","date_of_birth":"1996-02-26T00:00:00.000Z","height":1.56,"weight":43,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":98339799,"name":"Haneen Ibrahim","nationality":"SUD","sex":"female","date_of_birth":"2000-06-29T00:00:00.000Z","height":1.54,"weight":47,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":987592128,"name":"Hang Yu Sze","nationality":"HKG","sex":"female","date_of_birth":"1988-03-05T00:00:00.000Z","height":1.68,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":56781844,"name":"Haniel Langaro","nationality":"BRA","sex":"male","date_of_birth":"1995-03-07T00:00:00.000Z","height":1.97,"weight":104,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":281021453,"name":"Hanna Blomstrand","nationality":"SWE","sex":"female","date_of_birth":"1996-08-25T00:00:00.000Z","height":1.73,"weight":72,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":868683543,"name":"Hanna Dudzenkova","nationality":"BLR","sex":"female","date_of_birth":"1994-05-07T00:00:00.000Z","height":1.67,"weight":51,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":648984551,"name":"Hanna Harchonak","nationality":"BLR","sex":"female","date_of_birth":"1992-02-11T00:00:00.000Z","height":1.62,"weight":51,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":302310091,"name":"Hanna Hatsko-Fedusova","nationality":"UKR","sex":"female","date_of_birth":"1990-10-03T00:00:00.000Z","height":1.75,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":731032288,"name":"Hanna Kasyanova","nationality":"UKR","sex":"female","date_of_birth":"1983-04-24T00:00:00.000Z","height":1.78,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":865953961,"name":"Hanna Kisteleki","nationality":"HUN","sex":"female","date_of_birth":"1991-03-10T00:00:00.000Z","height":1.72,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":846150699,"name":"Hanna Klinga","nationality":"SWE","sex":"female","date_of_birth":"1989-11-13T00:00:00.000Z","height":1.65,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":750989988,"name":"Hanna Knyazyeva-Minenko","nationality":"ISR","sex":"female","date_of_birth":"1989-09-25T00:00:00.000Z","height":1.79,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":296210121,"name":"Hanna Lyczbinska","nationality":"POL","sex":"female","date_of_birth":"1990-04-20T00:00:00.000Z","height":1.78,"weight":64,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":318275998,"name":"Hanna Malyshik","nationality":"BLR","sex":"female","date_of_birth":"1994-02-04T00:00:00.000Z","height":1.75,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":593771185,"name":"Hanna Plotitsyna","nationality":"UKR","sex":"female","date_of_birth":"1987-01-01T00:00:00.000Z","height":1.82,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":805368469,"name":"Hanna Skydan","nationality":"AZE","sex":"female","date_of_birth":"1992-05-14T00:00:00.000Z","height":1.83,"weight":101,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":550222523,"name":"Hanna-Maria Seppala","nationality":"FIN","sex":"female","date_of_birth":"1984-12-13T00:00:00.000Z","height":1.74,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":980247583,"name":"Hannah Amuchechi Rueben","nationality":"NGR","sex":"female","date_of_birth":"1994-02-14T00:00:00.000Z","height":1.65,"weight":69,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":113266724,"name":"Hannah Buckling","nationality":"AUS","sex":"female","date_of_birth":"1992-06-03T00:00:00.000Z","height":1.77,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":679066155,"name":"Hannah Cross","nationality":"AUS","sex":"female","date_of_birth":"1997-01-29T00:00:00.000Z","height":1.69,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":503850224,"name":"Hannah Darling","nationality":"CAN","sex":"female","date_of_birth":"1996-05-30T00:00:00.000Z","height":1.74,"weight":72,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":650100624,"name":"Hannah Kruger","nationality":"GER","sex":"female","date_of_birth":"1988-09-04T00:00:00.000Z","height":1.73,"weight":67,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":512806453,"name":"Hannah Macleod","nationality":"GBR","sex":"female","date_of_birth":"1984-06-09T00:00:00.000Z","height":1.72,"weight":67,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":278564208,"name":"Hannah Miley","nationality":"GBR","sex":"female","date_of_birth":"1989-08-08T00:00:00.000Z","height":1.65,"weight":53,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":931174391,"name":"Hannah Mills","nationality":"GBR","sex":"female","date_of_birth":"1988-02-29T00:00:00.000Z","height":1.57,"weight":50,"sport":"sailing","gold":1,"silver":0,"bronze":0,"info":null},{"id":888831505,"name":"Hannah Wilkinson","nationality":"NZL","sex":"female","date_of_birth":"1992-05-28T00:00:00.000Z","height":1.77,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":467874431,"name":"Hanne Grahns","nationality":"SWE","sex":"female","date_of_birth":"1992-08-29T00:00:00.000Z","height":1.67,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":588728248,"name":"Hannes Aigner","nationality":"GER","sex":"male","date_of_birth":"1989-03-19T00:00:00.000Z","height":1.83,"weight":75,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":633655102,"name":"Hannes Obreno","nationality":"BEL","sex":"male","date_of_birth":"1991-03-08T00:00:00.000Z","height":1.87,"weight":83,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":828126181,"name":"Hannes Ocik","nationality":"GER","sex":"male","date_of_birth":"1991-06-08T00:00:00.000Z","height":1.91,"weight":93,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":707380480,"name":"Hannibal Gaskin","nationality":"GUY","sex":"male","date_of_birth":"1997-08-30T00:00:00.000Z","height":1.73,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":759916596,"name":"Hans Arne Jensen","nationality":"TGA","sex":"male","date_of_birth":"1998-02-25T00:00:00.000Z","height":1.81,"weight":95,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":887983421,"name":"Hans Gruhne","nationality":"GER","sex":"male","date_of_birth":"1988-08-05T00:00:00.000Z","height":1.93,"weight":92,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":157732723,"name":"Hans Lindberg","nationality":"DEN","sex":"male","date_of_birth":"1981-08-01T00:00:00.000Z","height":1.88,"weight":88,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":191768973,"name":"Hans Peter Minderhoud","nationality":"NED","sex":"male","date_of_birth":"1973-10-07T00:00:00.000Z","height":1.9,"weight":75,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":14222550,"name":"Hans Podlipnik-Castillo","nationality":"CHI","sex":"male","date_of_birth":"1988-01-09T00:00:00.000Z","height":1.84,"weight":79,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":35658013,"name":"Hans Struzyna","nationality":"USA","sex":"male","date_of_birth":"1989-03-31T00:00:00.000Z","height":1.88,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":326027910,"name":"Hansol Kim","nationality":"KOR","sex":"male","date_of_birth":"1995-12-29T00:00:00.000Z","height":1.65,"weight":null,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":710838348,"name":"Hansu Ryu","nationality":"KOR","sex":"male","date_of_birth":"1988-02-01T00:00:00.000Z","height":1.68,"weight":70,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":400204739,"name":"Hanwoong Park","nationality":"KOR","sex":"male","date_of_birth":"1995-01-15T00:00:00.000Z","height":1.74,"weight":92,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":462031803,"name":"Hao Chang","nationality":"TPE","sex":"male","date_of_birth":"1990-11-14T00:00:00.000Z","height":1.73,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":955199694,"name":"Hao Liu","nationality":"CHN","sex":"male","date_of_birth":"1988-11-07T00:00:00.000Z","height":1.89,"weight":79,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":688410388,"name":"Hao You","nationality":"CHN","sex":"male","date_of_birth":"1992-04-26T00:00:00.000Z","height":1.62,"weight":60,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":5582422,"name":"Hao-Ching Chan","nationality":"TPE","sex":"female","date_of_birth":"1993-09-19T00:00:00.000Z","height":1.8,"weight":65,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":584970001,"name":"Hao-Wen Kao","nationality":"TPE","sex":"male","date_of_birth":"1995-03-17T00:00:00.000Z","height":1.8,"weight":82,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":784558254,"name":"Haoran Yang","nationality":"CHN","sex":"male","date_of_birth":"1996-02-22T00:00:00.000Z","height":1.76,"weight":64,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":92737551,"name":"Haotong Li","nationality":"CHN","sex":"male","date_of_birth":"1995-08-03T00:00:00.000Z","height":1.88,"weight":75,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":7926077,"name":"Haram Woo","nationality":"KOR","sex":"male","date_of_birth":"1998-03-21T00:00:00.000Z","height":1.68,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":904216148,"name":"Hardeep Hardeep","nationality":"IND","sex":"male","date_of_birth":"1990-12-20T00:00:00.000Z","height":1.63,"weight":98,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":498857610,"name":"Hari Kumar Rimal","nationality":"NEP","sex":"male","date_of_birth":"1987-06-13T00:00:00.000Z","height":1.66,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":119602517,"name":"Haris Bandey","nationality":"PAK","sex":"male","date_of_birth":"1999-02-14T00:00:00.000Z","height":1.67,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":218421111,"name":"Haris Belkebla","nationality":"ALG","sex":"male","date_of_birth":"1994-01-28T00:00:00.000Z","height":1.78,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":599462011,"name":"Harmanpreet Singh","nationality":"IND","sex":"male","date_of_birth":"1996-01-06T00:00:00.000Z","height":1.77,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":112459852,"name":"Harold Correa","nationality":"FRA","sex":"male","date_of_birth":"1988-06-26T00:00:00.000Z","height":1.9,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":907600917,"name":"Harold Fonseca","nationality":"HON","sex":"male","date_of_birth":"1993-10-08T00:00:00.000Z","height":1.86,"weight":87,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":370604205,"name":"Harold Houston","nationality":"BER","sex":"male","date_of_birth":"1990-03-23T00:00:00.000Z","height":1.82,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":98959856,"name":"Harold Langen","nationality":"NED","sex":"male","date_of_birth":"1986-10-27T00:00:00.000Z","height":1.88,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":782948245,"name":"Harold Preciado","nationality":"COL","sex":"male","date_of_birth":"1994-06-01T00:00:00.000Z","height":1.85,"weight":73,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":331514167,"name":"Haron Koech","nationality":"KEN","sex":"male","date_of_birth":"1990-01-27T00:00:00.000Z","height":1.9,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":213592688,"name":"Harrie Smolders","nationality":"NED","sex":"male","date_of_birth":"1980-05-10T00:00:00.000Z","height":1.83,"weight":75,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":98629225,"name":"Harrison Barnes","nationality":"USA","sex":"male","date_of_birth":"1992-05-30T00:00:00.000Z","height":2.03,"weight":102,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":883054500,"name":"Harry Aikines-Aryeetey","nationality":"GBR","sex":"male","date_of_birth":"1988-08-29T00:00:00.000Z","height":1.78,"weight":87,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":666553660,"name":"Harry Martin","nationality":"GBR","sex":"male","date_of_birth":"1992-10-23T00:00:00.000Z","height":1.84,"weight":81,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":588715133,"name":"Haruka Miyashita","nationality":"JPN","sex":"female","date_of_birth":"1994-09-01T00:00:00.000Z","height":1.77,"weight":61,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":437669454,"name":"Haruka Tachimoto","nationality":"JPN","sex":"female","date_of_birth":"1990-08-03T00:00:00.000Z","height":1.68,"weight":70,"sport":"judo","gold":1,"silver":0,"bronze":0,"info":null},{"id":946440750,"name":"Harukyo Nomura","nationality":"JPN","sex":"female","date_of_birth":"1992-11-25T00:00:00.000Z","height":1.65,"weight":60,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":772429717,"name":"Harutyun Merdinyan","nationality":"ARM","sex":"male","date_of_birth":"1984-08-16T00:00:00.000Z","height":1.65,"weight":58,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":702338556,"name":"Haruyo Shimamura","nationality":"JPN","sex":"female","date_of_birth":"1992-03-04T00:00:00.000Z","height":1.82,"weight":79,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":542430668,"name":"Hasanboy Dusmatov","nationality":"UZB","sex":"male","date_of_birth":"1993-06-24T00:00:00.000Z","height":1.56,"weight":null,"sport":"boxing","gold":1,"silver":0,"bronze":0,"info":null},{"id":741535794,"name":"Hasnaa Lachgar","nationality":"MAR","sex":"female","date_of_birth":"1989-09-27T00:00:00.000Z","height":1.64,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":36162949,"name":"Hassan Aliazam Yazdanicharati","nationality":"IRI","sex":"male","date_of_birth":"1994-12-26T00:00:00.000Z","height":1.81,"weight":74,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":101286340,"name":"Hassan Amzile","nationality":"FRA","sex":"male","date_of_birth":"1988-06-05T00:00:00.000Z","height":1.83,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":312704439,"name":"Hassan Chani","nationality":"BRN","sex":"male","date_of_birth":"1988-05-05T00:00:00.000Z","height":1.7,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":456522076,"name":"Hassan Mabrouk","nationality":"QAT","sex":"male","date_of_birth":"1982-07-29T00:00:00.000Z","height":1.9,"weight":100,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":175315541,"name":"Hassan Mead","nationality":"USA","sex":"male","date_of_birth":"1991-06-28T00:00:00.000Z","height":1.88,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":97563452,"name":"Hassan Mohamed Mahmoud","nationality":"EGY","sex":"male","date_of_birth":"1984-02-10T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":173152080,"name":"Hassan Ndam Njikam","nationality":"CMR","sex":"male","date_of_birth":"1984-02-18T00:00:00.000Z","height":1.82,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":147777095,"name":"Hassan Saada","nationality":"MAR","sex":"male","date_of_birth":"1994-01-02T00:00:00.000Z","height":1.83,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":644229404,"name":"Hassan Saaid","nationality":"MDV","sex":"male","date_of_birth":"1992-03-04T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":659504471,"name":"Hassan Sabzali Rahimi","nationality":"IRI","sex":"male","date_of_birth":"1989-06-15T00:00:00.000Z","height":1.65,"weight":62,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":109499078,"name":"Hassan Taftian","nationality":"IRI","sex":"male","date_of_birth":"1993-05-04T00:00:00.000Z","height":1.87,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":240509151,"name":"Hassanine Sebei","nationality":"TUN","sex":"male","date_of_birth":"1984-01-21T00:00:00.000Z","height":1.77,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":796467757,"name":"Hassen Chaktami","nationality":"TUN","sex":"male","date_of_birth":"1988-12-14T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":101394753,"name":"Havard Haukenes","nationality":"NOR","sex":"male","date_of_birth":"1990-04-22T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":554006309,"name":"Hawbir Khasro","nationality":"IRQ","sex":"male","date_of_birth":"1993-09-24T00:00:00.000Z","height":1.75,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":631521529,"name":"Hayat Lambarki","nationality":"MAR","sex":"female","date_of_birth":"1988-05-18T00:00:00.000Z","height":1.72,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":346469460,"name":"Hayden Phillips","nationality":"NZL","sex":"male","date_of_birth":"1998-02-06T00:00:00.000Z","height":1.8,"weight":72,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":927855997,"name":"Hayden Roulston","nationality":"NZL","sex":"male","date_of_birth":"1981-01-10T00:00:00.000Z","height":1.86,"weight":78,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":662093898,"name":"Hayder Shkara","nationality":"AUS","sex":"male","date_of_birth":"1990-05-21T00:00:00.000Z","height":1.84,"weight":80,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":400928274,"name":"Haydy Morsy","nationality":"EGY","sex":"female","date_of_birth":"1999-09-20T00:00:00.000Z","height":1.68,"weight":58,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":267258552,"name":"Hayle Ibrahimov","nationality":"AZE","sex":"male","date_of_birth":"1990-01-18T00:00:00.000Z","height":1.71,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":842681952,"name":"Haziq Kamaruddin","nationality":"MAS","sex":"male","date_of_birth":"1993-07-04T00:00:00.000Z","height":1.78,"weight":75,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":935038843,"name":"Hazuki Nagai","nationality":"JPN","sex":"female","date_of_birth":"1994-08-15T00:00:00.000Z","height":1.52,"weight":53,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":420841500,"name":"Hazuki Yuda","nationality":"JPN","sex":"female","date_of_birth":"1989-07-11T00:00:00.000Z","height":1.67,"weight":54,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":490580796,"name":"Heabin Jung","nationality":"KOR","sex":"female","date_of_birth":"1994-01-20T00:00:00.000Z","height":1.69,"weight":64,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":348445577,"name":"Heather Bansley","nationality":"CAN","sex":"female","date_of_birth":"1987-09-13T00:00:00.000Z","height":1.71,"weight":65,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":530012228,"name":"Heather Fisher","nationality":"GBR","sex":"female","date_of_birth":"1984-06-13T00:00:00.000Z","height":1.68,"weight":71,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":865048976,"name":"Heather Miller-Koch","nationality":"USA","sex":"female","date_of_birth":"1987-03-30T00:00:00.000Z","height":1.76,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":782975512,"name":"Heather O Reilly","nationality":"USA","sex":"female","date_of_birth":"1985-01-02T00:00:00.000Z","height":1.66,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":136391039,"name":"Heather Olver","nationality":"GBR","sex":"female","date_of_birth":"1986-03-15T00:00:00.000Z","height":1.7,"weight":null,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":605175756,"name":"Heather Stanning","nationality":"GBR","sex":"female","date_of_birth":"1985-01-26T00:00:00.000Z","height":1.81,"weight":72,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":388913953,"name":"Heather Steacy","nationality":"CAN","sex":"female","date_of_birth":"1988-04-14T00:00:00.000Z","height":1.75,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":378577718,"name":"Heather Watson","nationality":"GBR","sex":"female","date_of_birth":"1992-05-19T00:00:00.000Z","height":1.68,"weight":63,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":677773211,"name":"Heba Allejji","nationality":"SYR","sex":"female","date_of_birth":"1997-01-20T00:00:00.000Z","height":null,"weight":null,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":847163019,"name":"Hebert Brol","nationality":"GUA","sex":"male","date_of_birth":"1980-01-10T00:00:00.000Z","height":1.81,"weight":135,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":335558674,"name":"Hector Luis Garcia Mora","nationality":"DOM","sex":"male","date_of_birth":"1991-11-01T00:00:00.000Z","height":1.73,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":788560912,"name":"Hedaya Wahba","nationality":"EGY","sex":"female","date_of_birth":"1993-04-21T00:00:00.000Z","height":1.74,"weight":57,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":869886406,"name":"Hedda Hynne","nationality":"NOR","sex":"female","date_of_birth":"1990-03-13T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":923891732,"name":"Hederson Estefani","nationality":"BRA","sex":"male","date_of_birth":"1991-09-11T00:00:00.000Z","height":1.83,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":303803370,"name":"Hedi Gharbi","nationality":"TUN","sex":"male","date_of_birth":"1969-08-05T00:00:00.000Z","height":1.69,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":307748741,"name":"Hedvig Karakas","nationality":"HUN","sex":"female","date_of_birth":"1990-02-21T00:00:00.000Z","height":1.67,"weight":61,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":941808202,"name":"Hedvig Lindahl","nationality":"SWE","sex":"female","date_of_birth":"1983-04-29T00:00:00.000Z","height":1.79,"weight":74,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":134790267,"name":"Hedvig Rasmussen","nationality":"DEN","sex":"female","date_of_birth":"1993-12-22T00:00:00.000Z","height":1.87,"weight":79,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":388831240,"name":"Hee Sook Jeon","nationality":"KOR","sex":"female","date_of_birth":"1984-06-16T00:00:00.000Z","height":1.69,"weight":60,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":456268808,"name":"Hee Young Yang","nationality":"KOR","sex":"female","date_of_birth":"1989-07-28T00:00:00.000Z","height":1.73,"weight":77,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":393939547,"name":"Heechan Hwang","nationality":"KOR","sex":"male","date_of_birth":"1996-01-26T00:00:00.000Z","height":1.77,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":812515999,"name":"Heejin Kim","nationality":"KOR","sex":"female","date_of_birth":"1991-04-29T00:00:00.000Z","height":1.85,"weight":78,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":505168885,"name":"Heena Sidhu","nationality":"IND","sex":"female","date_of_birth":"1989-08-29T00:00:00.000Z","height":1.58,"weight":51,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":769324470,"name":"Heesun Jang","nationality":"KOR","sex":"female","date_of_birth":"1986-05-31T00:00:00.000Z","height":1.64,"weight":60,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":76022675,"name":"Heidi Diethelm Gerber","nationality":"SUI","sex":"female","date_of_birth":"1969-03-20T00:00:00.000Z","height":1.68,"weight":93,"sport":"shooting","gold":0,"silver":0,"bronze":1,"info":null},{"id":563435764,"name":"Heidi Gan","nationality":"MAS","sex":"female","date_of_birth":"1988-10-08T00:00:00.000Z","height":1.62,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":528568211,"name":"Heidi Loke","nationality":"NOR","sex":"female","date_of_birth":"1982-12-12T00:00:00.000Z","height":1.73,"weight":null,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":279097439,"name":"Heiki Nabi","nationality":"EST","sex":"male","date_of_birth":"1985-06-06T00:00:00.000Z","height":1.93,"weight":116,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":942170112,"name":"Heissler Guillent","nationality":"VEN","sex":"male","date_of_birth":"1986-12-17T00:00:00.000Z","height":1.83,"weight":79,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":42902988,"name":"Hela Ayari","nationality":"TUN","sex":"female","date_of_birth":"1994-08-26T00:00:00.000Z","height":null,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":419568025,"name":"Hela Riabi","nationality":"TUN","sex":"female","date_of_birth":"1987-02-18T00:00:00.000Z","height":1.65,"weight":63,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":927679644,"name":"Helah Jelagat Kiprop","nationality":"KEN","sex":"female","date_of_birth":"1985-04-07T00:00:00.000Z","height":1.6,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":823760024,"name":"Helalia Johannes","nationality":"NAM","sex":"female","date_of_birth":"1980-08-13T00:00:00.000Z","height":1.65,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":231174935,"name":"Helder Silva","nationality":"POR","sex":"male","date_of_birth":"1987-08-02T00:00:00.000Z","height":1.76,"weight":73,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":820626440,"name":"Helen Glover","nationality":"GBR","sex":"female","date_of_birth":"1986-06-17T00:00:00.000Z","height":1.77,"weight":67,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":"The daughter of athletes, Great Briton Helen Glover has a collection of gold medals in the coxless pair event: one Olympic, won at London 2012, three from the World Championship, 13 from the World Cup and three from the European Championship."},{"id":77008314,"name":"Helen Grobert","nationality":"GER","sex":"female","date_of_birth":"1992-04-11T00:00:00.000Z","height":1.75,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":879616037,"name":"Helen Jenkins","nationality":"GBR","sex":"female","date_of_birth":"1984-03-08T00:00:00.000Z","height":1.69,"weight":55,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":992478807,"name":"Helen Louise Maroulis","nationality":"USA","sex":"female","date_of_birth":"1991-09-19T00:00:00.000Z","height":1.63,"weight":56,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":826011682,"name":"Helen Richardson-Walsh","nationality":"GBR","sex":"female","date_of_birth":"1981-09-23T00:00:00.000Z","height":1.65,"weight":55,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":707272550,"name":"Helena Casas Roige","nationality":"ESP","sex":"female","date_of_birth":"1988-07-24T00:00:00.000Z","height":1.63,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":833977823,"name":"Helena Ciak","nationality":"FRA","sex":"female","date_of_birth":"1989-12-15T00:00:00.000Z","height":1.97,"weight":89,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":659637294,"name":"Helena Gasson","nationality":"NZL","sex":"female","date_of_birth":"1994-12-08T00:00:00.000Z","height":1.72,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":914156027,"name":"Helena Scutt","nationality":"USA","sex":"female","date_of_birth":"1992-06-15T00:00:00.000Z","height":1.71,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":382923791,"name":"Helene Defrance","nationality":"FRA","sex":"female","date_of_birth":"1986-08-11T00:00:00.000Z","height":1.79,"weight":66,"sport":"sailing","gold":0,"silver":0,"bronze":1,"info":null},{"id":189823124,"name":"Helene Lefebvre","nationality":"FRA","sex":"female","date_of_birth":"1991-02-26T00:00:00.000Z","height":1.7,"weight":69,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":76511268,"name":"Helibelton Palacios","nationality":"COL","sex":"male","date_of_birth":"1993-06-11T00:00:00.000Z","height":1.8,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":447903618,"name":"Hellen Onsando Obiri","nationality":"KEN","sex":"female","date_of_birth":"1989-12-13T00:00:00.000Z","height":1.6,"weight":50,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":177603663,"name":"Heming Hu","nationality":"AUS","sex":"male","date_of_birth":"1994-03-21T00:00:00.000Z","height":1.79,"weight":76,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":634678225,"name":"Hemza Haloui","nationality":"ALG","sex":"male","date_of_birth":"1994-07-10T00:00:00.000Z","height":1.8,"weight":96,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":686631480,"name":"Hendra Purnama","nationality":"INA","sex":"male","date_of_birth":"1997-01-12T00:00:00.000Z","height":1.69,"weight":64,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":339509053,"name":"Hendra Setiawan","nationality":"INA","sex":"male","date_of_birth":"1984-08-25T00:00:00.000Z","height":1.83,"weight":82,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":637196931,"name":"Hendrik Pekeler","nationality":"GER","sex":"male","date_of_birth":"1991-07-02T00:00:00.000Z","height":2.03,"weight":103,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":623376345,"name":"Henk Grol","nationality":"NED","sex":"male","date_of_birth":"1985-04-14T00:00:00.000Z","height":1.9,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":431941649,"name":"Henna Katarina Johansson","nationality":"SWE","sex":"female","date_of_birth":"1991-05-01T00:00:00.000Z","height":1.64,"weight":67,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":280401602,"name":"Henning Bommel","nationality":"GER","sex":"male","date_of_birth":"1983-02-23T00:00:00.000Z","height":1.83,"weight":79,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":200432555,"name":"Henri Hurskainen","nationality":"SWE","sex":"male","date_of_birth":"1986-09-13T00:00:00.000Z","height":1.84,"weight":80,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":777353303,"name":"Henri Junghaenel","nationality":"GER","sex":"male","date_of_birth":"1988-02-05T00:00:00.000Z","height":1.79,"weight":80,"sport":"shooting","gold":1,"silver":0,"bronze":0,"info":null},{"id":257515881,"name":"Henri Schoeman","nationality":"RSA","sex":"male","date_of_birth":"1991-10-03T00:00:00.000Z","height":1.7,"weight":59,"sport":"triathlon","gold":0,"silver":0,"bronze":1,"info":null},{"id":814312572,"name":"Henricho Bruintjies","nationality":"RSA","sex":"male","date_of_birth":"1993-07-16T00:00:00.000Z","height":1.79,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":761427990,"name":"Henriette Hansen","nationality":"DEN","sex":"female","date_of_birth":"1982-04-15T00:00:00.000Z","height":1.7,"weight":66,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":530692898,"name":"Henriette Nadege Koulla","nationality":"CMR","sex":"female","date_of_birth":"1992-09-14T00:00:00.000Z","height":1.69,"weight":67,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":136465545,"name":"Henrik Christiansen","nationality":"NOR","sex":"male","date_of_birth":"1996-10-09T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":706752580,"name":"Henrik Ingebrigtsen","nationality":"NOR","sex":"male","date_of_birth":"1991-02-24T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":808654438,"name":"Henrik Mollgaard Jensen","nationality":"DEN","sex":"male","date_of_birth":"1985-01-02T00:00:00.000Z","height":1.97,"weight":102,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":471800036,"name":"Henrik Rummel","nationality":"USA","sex":"male","date_of_birth":"1987-09-26T00:00:00.000Z","height":1.96,"weight":97,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":278653669,"name":"Henrik Stenson","nationality":"SWE","sex":"male","date_of_birth":"1976-04-05T00:00:00.000Z","height":1.87,"weight":90,"sport":"golf","gold":0,"silver":1,"bronze":0,"info":null},{"id":89814850,"name":"Henrik Toft Hansen","nationality":"DEN","sex":"male","date_of_birth":"1986-12-18T00:00:00.000Z","height":2,"weight":105,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":225165978,"name":"Henrik Vasbanyai","nationality":"HUN","sex":"male","date_of_birth":"1991-07-16T00:00:00.000Z","height":1.87,"weight":84,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":683861433,"name":"Henrik von Eckermann","nationality":"SWE","sex":"male","date_of_birth":"1981-05-25T00:00:00.000Z","height":1.86,"weight":77,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":142941975,"name":"Henrikas Zustautas","nationality":"LTU","sex":"male","date_of_birth":"1994-07-13T00:00:00.000Z","height":1.92,"weight":96,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":683131991,"name":"Henrique Avancini","nationality":"BRA","sex":"male","date_of_birth":"1989-03-30T00:00:00.000Z","height":1.76,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":66716324,"name":"Henrique Haddad","nationality":"BRA","sex":"male","date_of_birth":"1987-05-28T00:00:00.000Z","height":1.65,"weight":63,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":473340391,"name":"Henrique Marques","nationality":"BRA","sex":"male","date_of_birth":"1996-09-24T00:00:00.000Z","height":1.78,"weight":71,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":715314680,"name":"Henrique Martins","nationality":"BRA","sex":"male","date_of_birth":"1991-11-14T00:00:00.000Z","height":1.8,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":991563365,"name":"Henrique Rodrigues","nationality":"BRA","sex":"male","date_of_birth":"1991-02-04T00:00:00.000Z","height":1.94,"weight":86,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":484566672,"name":"Henrique Teixeira","nationality":"BRA","sex":"male","date_of_birth":"1989-02-27T00:00:00.000Z","height":1.92,"weight":100,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":378817615,"name":"Henry Frayne","nationality":"AUS","sex":"male","date_of_birth":"1990-04-14T00:00:00.000Z","height":1.88,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":771439495,"name":"Henry Hutchison","nationality":"AUS","sex":"male","date_of_birth":"1997-02-12T00:00:00.000Z","height":1.76,"weight":86,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":656087164,"name":"Henry Weir","nationality":"GBR","sex":"male","date_of_birth":"1990-02-13T00:00:00.000Z","height":1.76,"weight":75,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":196907702,"name":"Henryk Szost","nationality":"POL","sex":"male","date_of_birth":"1982-01-20T00:00:00.000Z","height":1.86,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":672188106,"name":"Hensley Paulina","nationality":"NED","sex":"male","date_of_birth":"1993-06-26T00:00:00.000Z","height":1.82,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":674181723,"name":"Hermenegildo Leite","nationality":"ANG","sex":"male","date_of_birth":"2000-05-17T00:00:00.000Z","height":1.71,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":474532217,"name":"Hernan Moises Viera Espinoza","nationality":"PER","sex":"male","date_of_birth":"1993-01-16T00:00:00.000Z","height":1.76,"weight":104,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":875801164,"name":"Hersony Canelon","nationality":"VEN","sex":"male","date_of_birth":"1988-12-08T00:00:00.000Z","height":1.76,"weight":73,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":682402469,"name":"Heungmin Son","nationality":"KOR","sex":"male","date_of_birth":"1992-07-08T00:00:00.000Z","height":1.83,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":761606260,"name":"Hexin Yu","nationality":"CHN","sex":"male","date_of_birth":"1996-01-01T00:00:00.000Z","height":1.94,"weight":87,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":11002844,"name":"Hicham Bouchicha","nationality":"ALG","sex":"male","date_of_birth":"1989-05-19T00:00:00.000Z","height":1.82,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":730005244,"name":"Hicham Sigueni","nationality":"MAR","sex":"male","date_of_birth":"1993-01-30T00:00:00.000Z","height":1.72,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":811166663,"name":"Hidde Turkstra","nationality":"NED","sex":"male","date_of_birth":"1988-03-05T00:00:00.000Z","height":1.94,"weight":81,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":412609068,"name":"Hideki Omoto","nationality":"JPN","sex":"male","date_of_birth":"1984-08-12T00:00:00.000Z","height":1.79,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":251596711,"name":"Hidilyn Diaz","nationality":"PHI","sex":"female","date_of_birth":"1991-02-20T00:00:00.000Z","height":1.49,"weight":53,"sport":"weightlifting","gold":0,"silver":1,"bronze":0,"info":null},{"id":35937798,"name":"Higor Alves","nationality":"BRA","sex":"male","date_of_birth":"1994-02-23T00:00:00.000Z","height":1.83,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":708328857,"name":"Hilal Hemed Hilal","nationality":"TAN","sex":"male","date_of_birth":"1994-07-12T00:00:00.000Z","height":1.76,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":144358597,"name":"Hilary Caldwell","nationality":"CAN","sex":"female","date_of_birth":"1991-03-13T00:00:00.000Z","height":1.73,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":718411923,"name":"Hilary Stellingwerff","nationality":"CAN","sex":"female","date_of_birth":"1981-08-07T00:00:00.000Z","height":1.6,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":689390939,"name":"Hilda Carlen","nationality":"SWE","sex":"female","date_of_birth":"1991-08-13T00:00:00.000Z","height":1.73,"weight":75,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":668140506,"name":"Hillary Bor","nationality":"USA","sex":"male","date_of_birth":"1989-11-22T00:00:00.000Z","height":1.71,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":256534193,"name":"Hin Chun Chiu","nationality":"HKG","sex":"male","date_of_birth":"1994-08-20T00:00:00.000Z","height":1.76,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":309810148,"name":"Hind Jamili","nationality":"MAR","sex":"female","date_of_birth":"1998-12-11T00:00:00.000Z","height":1.56,"weight":50,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":895035478,"name":"Hiroaki Takao","nationality":"JPN","sex":"male","date_of_birth":"1992-01-02T00:00:00.000Z","height":1.56,"weight":56,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":884615594,"name":"Hirokatsu Tayama","nationality":"JPN","sex":"male","date_of_birth":"1981-11-12T00:00:00.000Z","height":1.67,"weight":62,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":378183689,"name":"Hiroki Fujiharu","nationality":"JPN","sex":"male","date_of_birth":"1988-11-28T00:00:00.000Z","height":1.75,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":361521049,"name":"Hiroki Ogita","nationality":"JPN","sex":"male","date_of_birth":"1987-12-30T00:00:00.000Z","height":1.86,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":198161931,"name":"Hiromasa Fujimori","nationality":"JPN","sex":"male","date_of_birth":"1991-08-07T00:00:00.000Z","height":1.76,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":441329153,"name":"Hiromi Miyake","nationality":"JPN","sex":"female","date_of_birth":"1985-11-18T00:00:00.000Z","height":1.45,"weight":48,"sport":"weightlifting","gold":0,"silver":0,"bronze":1,"info":null},{"id":361129434,"name":"Hirooki Arai","nationality":"JPN","sex":"male","date_of_birth":"1988-05-18T00:00:00.000Z","height":1.8,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":569753343,"name":"Hiroshi Nakano","nationality":"JPN","sex":"male","date_of_birth":"1987-12-01T00:00:00.000Z","height":1.76,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":689852563,"name":"Hiroyuki Endo","nationality":"JPN","sex":"male","date_of_birth":"1986-12-16T00:00:00.000Z","height":1.71,"weight":72,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":182022040,"name":"Hirving Lozano","nationality":"MEX","sex":"male","date_of_birth":"1995-07-30T00:00:00.000Z","height":1.74,"weight":63,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":327247777,"name":"Hisanori Kitajima","nationality":"JPN","sex":"male","date_of_birth":"1984-10-16T00:00:00.000Z","height":1.71,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":26054325,"name":"Hisayoshi Harasawa","nationality":"JPN","sex":"male","date_of_birth":"1992-07-03T00:00:00.000Z","height":1.91,"weight":125,"sport":"judo","gold":0,"silver":1,"bronze":0,"info":null},{"id":83035378,"name":"Hiskel Tewelde","nationality":"ERI","sex":"male","date_of_birth":"1986-09-15T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":924061459,"name":"Hiwot Ayalew","nationality":"ETH","sex":"female","date_of_birth":"1990-03-06T00:00:00.000Z","height":1.73,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":504200446,"name":"Hnialum Ruat Feli","nationality":"IND","sex":"female","date_of_birth":"1996-07-15T00:00:00.000Z","height":1.62,"weight":54,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":719133572,"name":"Ho Ching Lee","nationality":"HKG","sex":"female","date_of_birth":"1992-11-24T00:00:00.000Z","height":1.6,"weight":53,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":757948146,"name":"Hoi Kem Doo","nationality":"HKG","sex":"female","date_of_birth":"1996-11-27T00:00:00.000Z","height":1.66,"weight":60,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":289609999,"name":"Hoi Wah Chau","nationality":"HKG","sex":"female","date_of_birth":"1986-06-05T00:00:00.000Z","height":1.65,"weight":61,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":508366658,"name":"Hojamuhammet Toychyyev","nationality":"TKM","sex":"male","date_of_birth":"1992-01-16T00:00:00.000Z","height":1.86,"weight":145,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":789088022,"name":"Holder da Silva","nationality":"GBS","sex":"male","date_of_birth":"1988-01-12T00:00:00.000Z","height":1.82,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":261349975,"name":"Hollie Webb","nationality":"GBR","sex":"female","date_of_birth":"1990-09-19T00:00:00.000Z","height":1.65,"weight":65,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":859525144,"name":"Holly Bradshaw","nationality":"GBR","sex":"female","date_of_birth":"1991-11-02T00:00:00.000Z","height":1.75,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":923396311,"name":"Holly Lincoln-Smith","nationality":"AUS","sex":"female","date_of_birth":"1988-03-26T00:00:00.000Z","height":1.83,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":196810717,"name":"Homiyu Tesfaye","nationality":"GER","sex":"male","date_of_birth":"1993-06-23T00:00:00.000Z","height":1.84,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":958706021,"name":"Hong Liu","nationality":"CHN","sex":"female","date_of_birth":"1987-05-12T00:00:00.000Z","height":1.6,"weight":50,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":353716042,"name":"Hongpin Huang","nationality":"CHN","sex":"female","date_of_birth":"1989-04-23T00:00:00.000Z","height":1.95,"weight":98,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":90017888,"name":"Hongxia Li","nationality":"CHN","sex":"female","date_of_birth":"1986-09-10T00:00:00.000Z","height":1.68,"weight":63,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":653150622,"name":"Hope Solo","nationality":"USA","sex":"female","date_of_birth":"1981-07-30T00:00:00.000Z","height":1.75,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":172023688,"name":"Horacio Nava","nationality":"MEX","sex":"male","date_of_birth":"1982-01-20T00:00:00.000Z","height":1.81,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":619522770,"name":"Horia Tecau","nationality":"ROU","sex":"male","date_of_birth":"1985-01-19T00:00:00.000Z","height":1.92,"weight":90,"sport":"tennis","gold":0,"silver":1,"bronze":0,"info":null},{"id":707205572,"name":"Hortance Diedhiou","nationality":"SEN","sex":"female","date_of_birth":"1983-08-19T00:00:00.000Z","height":1.65,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":782647147,"name":"Hortence Vanessa Mballa Atangana","nationality":"CMR","sex":"female","date_of_birth":"1992-01-05T00:00:00.000Z","height":1.71,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":816766723,"name":"Hosam Hussein Bakr Abdin","nationality":"EGY","sex":"male","date_of_birth":"1985-10-26T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":635210027,"name":"Hossam Abdalla","nationality":"EGY","sex":"male","date_of_birth":"1988-02-16T00:00:00.000Z","height":2.03,"weight":97,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":452412504,"name":"Houari Ferhani","nationality":"ALG","sex":"male","date_of_birth":"1993-02-11T00:00:00.000Z","height":1.68,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":14950030,"name":"Houd Zourdani","nationality":"ALG","sex":"male","date_of_birth":"1993-10-17T00:00:00.000Z","height":1.65,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":468309568,"name":"Houda Miled","nationality":"TUN","sex":"female","date_of_birth":"1987-02-08T00:00:00.000Z","height":1.71,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":281360452,"name":"Houleye Ba","nationality":"MTN","sex":"female","date_of_birth":"1992-07-17T00:00:00.000Z","height":1.7,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":111077944,"name":"Houry Gebeshian","nationality":"ARM","sex":"female","date_of_birth":"1989-07-27T00:00:00.000Z","height":1.52,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":61502,"name":"Hovhannes Bachkov","nationality":"ARM","sex":"male","date_of_birth":"1992-12-02T00:00:00.000Z","height":1.73,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":374222882,"name":"Hovhannes Davtyan","nationality":"ARM","sex":"male","date_of_birth":"1983-11-25T00:00:00.000Z","height":1.73,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":426998976,"name":"Howard Grotts","nationality":"USA","sex":"male","date_of_birth":"1993-01-12T00:00:00.000Z","height":1.71,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":532364177,"name":"Howard Shu","nationality":"USA","sex":"male","date_of_birth":"1990-11-28T00:00:00.000Z","height":1.86,"weight":74,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":474611032,"name":"Hrachik Babayan","nationality":"ARM","sex":"male","date_of_birth":"1996-08-01T00:00:00.000Z","height":1.75,"weight":75,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":578319115,"name":"Hrafnhildur Luthersdottir","nationality":"ISL","sex":"female","date_of_birth":"1991-08-02T00:00:00.000Z","height":1.78,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":893777759,"name":"Hrisoula Anagnostopoulou","nationality":"GRE","sex":"female","date_of_birth":"1991-08-27T00:00:00.000Z","height":1.75,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":751452389,"name":"Hristiana Todorova","nationality":"BUL","sex":"female","date_of_birth":"1994-11-28T00:00:00.000Z","height":1.75,"weight":57,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":834856987,"name":"Hristoforos Merousis","nationality":"GRE","sex":"male","date_of_birth":"1982-03-22T00:00:00.000Z","height":1.78,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":170401459,"name":"Hrvoje Sep","nationality":"CRO","sex":"male","date_of_birth":"1986-02-26T00:00:00.000Z","height":1.75,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":529837353,"name":"Hsing-Chun Kuo","nationality":"TPE","sex":"female","date_of_birth":"1993-11-26T00:00:00.000Z","height":1.57,"weight":58,"sport":"weightlifting","gold":0,"silver":0,"bronze":1,"info":null},{"id":207495575,"name":"Hsuan-Yen Lee","nationality":"TPE","sex":"male","date_of_birth":"1993-05-13T00:00:00.000Z","height":1.73,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":744184028,"name":"Hsuan-Yu Wendy Chen","nationality":"AUS","sex":"female","date_of_birth":"1993-06-01T00:00:00.000Z","height":1.67,"weight":56,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":312441381,"name":"Hua Wilfried Koffi","nationality":"CIV","sex":"male","date_of_birth":"1987-10-12T00:00:00.000Z","height":1.89,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":830965009,"name":"Huai-Hsuan Huang","nationality":"TPE","sex":"female","date_of_birth":"1997-07-07T00:00:00.000Z","height":1.68,"weight":53,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":567560651,"name":"Huanhuan Ma","nationality":"CHN","sex":"female","date_of_birth":"1990-01-13T00:00:00.000Z","height":1.78,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":424934520,"name":"Hubertus Schmidt","nationality":"GER","sex":"male","date_of_birth":"1959-10-08T00:00:00.000Z","height":1.83,"weight":80,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":743741137,"name":"Hugo Barrette","nationality":"CAN","sex":"male","date_of_birth":"1991-07-04T00:00:00.000Z","height":1.75,"weight":90,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":402716810,"name":"Hugo Boucheron","nationality":"FRA","sex":"male","date_of_birth":"1993-05-30T00:00:00.000Z","height":1.95,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":626936383,"name":"Hugo Calderano","nationality":"BRA","sex":"male","date_of_birth":"1996-06-22T00:00:00.000Z","height":1.82,"weight":74,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":551778014,"name":"Hugo Gonzalez de Oliveira","nationality":"ESP","sex":"male","date_of_birth":"1999-02-19T00:00:00.000Z","height":1.92,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":823618365,"name":"Hugo Houle","nationality":"CAN","sex":"male","date_of_birth":"1990-09-27T00:00:00.000Z","height":1.83,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":931957390,"name":"Hugo Inglis","nationality":"NZL","sex":"male","date_of_birth":"1991-01-18T00:00:00.000Z","height":1.78,"weight":74,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":365733362,"name":"Hugo Parisi","nationality":"BRA","sex":"male","date_of_birth":"1984-08-01T00:00:00.000Z","height":1.72,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":362810248,"name":"Hugo de Sousa","nationality":"BRA","sex":"male","date_of_birth":"1987-03-05T00:00:00.000Z","height":1.87,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":20467543,"name":"Hugues Fournel","nationality":"CAN","sex":"male","date_of_birth":"1988-08-05T00:00:00.000Z","height":1.7,"weight":73,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":874312122,"name":"Hui Cao","nationality":"CHN","sex":"female","date_of_birth":"1991-09-07T00:00:00.000Z","height":1.75,"weight":70,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":825117534,"name":"Huihui Lyu","nationality":"CHN","sex":"female","date_of_birth":"1989-06-26T00:00:00.000Z","height":1.71,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":552569008,"name":"Huijun Lin","nationality":"CHN","sex":"female","date_of_birth":"1993-02-01T00:00:00.000Z","height":1.7,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":628637344,"name":"Huilin Le","nationality":"CHN","sex":"female","date_of_birth":"1989-04-01T00:00:00.000Z","height":1.72,"weight":62,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":595115702,"name":"Huisol Lee","nationality":"KOR","sex":"female","date_of_birth":"1989-08-27T00:00:00.000Z","height":1.74,"weight":119,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":203027250,"name":"Huixia Liu","nationality":"CHN","sex":"female","date_of_birth":"1997-11-30T00:00:00.000Z","height":1.57,"weight":48,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":396732861,"name":"Humam Tareq","nationality":"IRQ","sex":"male","date_of_birth":"1996-02-10T00:00:00.000Z","height":1.7,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":135011760,"name":"Humphrey Kayange","nationality":"KEN","sex":"male","date_of_birth":"1982-07-20T00:00:00.000Z","height":1.93,"weight":106,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":733102728,"name":"Hung-Chieh Chiang","nationality":"TPE","sex":"male","date_of_birth":"1989-02-22T00:00:00.000Z","height":1.8,"weight":70,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":601326293,"name":"Huriana Manuel","nationality":"NZL","sex":"female","date_of_birth":"1986-08-08T00:00:00.000Z","height":1.66,"weight":65,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":66237669,"name":"Hurshid Tojibaev","nationality":"UZB","sex":"male","date_of_birth":"1989-11-13T00:00:00.000Z","height":1.72,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":509019365,"name":"Huseyin Kandemir","nationality":"TUR","sex":"male","date_of_birth":"1986-09-09T00:00:00.000Z","height":1.76,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":703246010,"name":"Hussain Shah Shah","nationality":"PAK","sex":"male","date_of_birth":"1993-06-08T00:00:00.000Z","height":1.9,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":730071504,"name":"Hussein Al-Aameri","nationality":"IRQ","sex":"male","date_of_birth":"1990-11-24T00:00:00.000Z","height":1.77,"weight":80,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":2983955,"name":"Hussein Iashaish","nationality":"JOR","sex":"male","date_of_birth":"1995-08-06T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":573701625,"name":"Huyen Ta Thanh","nationality":"VIE","sex":"female","date_of_birth":"1994-05-03T00:00:00.000Z","height":1.7,"weight":58,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":531592086,"name":"Hye Lyoung Han","nationality":"KOR","sex":"female","date_of_birth":"1986-01-15T00:00:00.000Z","height":1.63,"weight":56,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":288648218,"name":"Hye Seon Yeum","nationality":"KOR","sex":"female","date_of_birth":"1991-02-03T00:00:00.000Z","height":1.76,"weight":65,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":739082177,"name":"Hye-Gyong Kim","nationality":"PRK","sex":"female","date_of_birth":"1993-03-09T00:00:00.000Z","height":1.53,"weight":42,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":398649308,"name":"Hye-Song Kim","nationality":"PRK","sex":"female","date_of_birth":"1993-03-09T00:00:00.000Z","height":1.53,"weight":42,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":887795017,"name":"Hyejin Chang","nationality":"KOR","sex":"female","date_of_birth":"1987-05-13T00:00:00.000Z","height":1.58,"weight":50,"sport":"archery","gold":2,"silver":0,"bronze":0,"info":null},{"id":152186180,"name":"Hyejin Cho","nationality":"KOR","sex":"female","date_of_birth":"1995-01-16T00:00:00.000Z","height":1.59,"weight":56,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":328642843,"name":"Hyejin Lee","nationality":"KOR","sex":"female","date_of_birth":"1992-01-23T00:00:00.000Z","height":1.65,"weight":61,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":68832418,"name":"Hyeonjun Kim","nationality":"KOR","sex":"male","date_of_birth":"1992-10-18T00:00:00.000Z","height":1.75,"weight":59,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":861437248,"name":"Hyeonwoo Kim","nationality":"KOR","sex":"male","date_of_birth":"1988-11-06T00:00:00.000Z","height":1.73,"weight":80,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":733898810,"name":"Hyeri Oh","nationality":"KOR","sex":"female","date_of_birth":"1988-04-30T00:00:00.000Z","height":1.82,"weight":69,"sport":"taekwondo","gold":1,"silver":0,"bronze":0,"info":null},{"id":242202885,"name":"Hyo Hee Lee","nationality":"KOR","sex":"female","date_of_birth":"1980-09-09T00:00:00.000Z","height":1.73,"weight":57,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":294430163,"name":"Hyo Jin Yang","nationality":"KOR","sex":"female","date_of_birth":"1989-12-14T00:00:00.000Z","height":1.9,"weight":72,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":641596822,"name":"Hyo Sim Choe","nationality":"PRK","sex":"female","date_of_birth":"1993-12-05T00:00:00.000Z","height":1.59,"weight":62,"sport":"weightlifting","gold":0,"silver":1,"bronze":0,"info":null},{"id":641299632,"name":"Hyoju An","nationality":"KOR","sex":"female","date_of_birth":"1987-11-25T00:00:00.000Z","height":1.68,"weight":54,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":871219266,"name":"Hyon Gyong Kim","nationality":"PRK","sex":"female","date_of_birth":"1995-04-17T00:00:00.000Z","height":1.53,"weight":48,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":146721591,"name":"Hyowon Suh","nationality":"KOR","sex":"female","date_of_birth":"1987-05-10T00:00:00.000Z","height":1.59,"weight":54,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":163022401,"name":"Hyunhee Nam","nationality":"KOR","sex":"female","date_of_birth":"1981-09-29T00:00:00.000Z","height":1.55,"weight":46,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":996028848,"name":"Hyunji Kim","nationality":"KOR","sex":"female","date_of_birth":"1993-11-04T00:00:00.000Z","height":1.7,"weight":52,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":925362927,"name":"Hyunji Yoo","nationality":"KOR","sex":"female","date_of_birth":"1984-07-16T00:00:00.000Z","height":1.75,"weight":67,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":99215460,"name":"Hyunjun Suk","nationality":"KOR","sex":"male","date_of_birth":"1991-06-29T00:00:00.000Z","height":1.9,"weight":82,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":526973620,"name":"Hyunsoo Jang","nationality":"KOR","sex":"male","date_of_birth":"1991-09-28T00:00:00.000Z","height":1.87,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":667171291,"name":"Hyunsub Kim","nationality":"KOR","sex":"male","date_of_birth":"1985-05-31T00:00:00.000Z","height":1.77,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":502834861,"name":"Hyvin Kiyeng Jepkemoi","nationality":"KEN","sex":"female","date_of_birth":"1992-01-13T00:00:00.000Z","height":1.62,"weight":42,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":794514120,"name":"I Ketut Ariana","nationality":"INA","sex":"male","date_of_birth":"1989-09-06T00:00:00.000Z","height":1.67,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":710339664,"name":"I-Ching Cheng","nationality":"TPE","sex":"female","date_of_birth":"1992-02-15T00:00:00.000Z","height":1.62,"weight":52,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":113806395,"name":"Iacovos Hadjiconstantinou","nationality":"CYP","sex":"male","date_of_birth":"1994-11-17T00:00:00.000Z","height":1.94,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":74843032,"name":"Iago Lopez Marra","nationality":"ESP","sex":"male","date_of_birth":"1990-04-07T00:00:00.000Z","height":1.81,"weight":81,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":45266900,"name":"Iain Jensen","nationality":"AUS","sex":"male","date_of_birth":"1988-05-23T00:00:00.000Z","height":1.86,"weight":80,"sport":"sailing","gold":0,"silver":1,"bronze":0,"info":null},{"id":471378978,"name":"Iain Lewers","nationality":"GBR","sex":"male","date_of_birth":"1984-01-05T00:00:00.000Z","height":1.83,"weight":79,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":364965310,"name":"Iain Smythe","nationality":"CAN","sex":"male","date_of_birth":"1985-06-02T00:00:00.000Z","height":1.8,"weight":77,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":909245021,"name":"Iakiv Khammo","nationality":"UKR","sex":"male","date_of_birth":"1994-06-11T00:00:00.000Z","height":1.88,"weight":null,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":879442986,"name":"Iakobi Kajaia","nationality":"GEO","sex":"male","date_of_birth":"1993-09-28T00:00:00.000Z","height":1.87,"weight":130,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":158469592,"name":"Ian Borrows","nationality":"AUS","sex":"male","date_of_birth":"1989-11-26T00:00:00.000Z","height":1.86,"weight":78,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":737845937,"name":"Ian Lariba","nationality":"PHI","sex":"female","date_of_birth":"1994-10-13T00:00:00.000Z","height":1.62,"weight":56,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":408716601,"name":"Ian Matos","nationality":"BRA","sex":"male","date_of_birth":"1989-04-24T00:00:00.000Z","height":1.71,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":712859551,"name":"Ian Sloan","nationality":"GBR","sex":"male","date_of_birth":"1993-11-19T00:00:00.000Z","height":1.75,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":224119413,"name":"Ian Stannard","nationality":"GBR","sex":"male","date_of_birth":"1987-05-25T00:00:00.000Z","height":1.91,"weight":80,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":681120192,"name":"Iaroslav Potapov","nationality":"RUS","sex":"male","date_of_birth":"1999-07-01T00:00:00.000Z","height":1.88,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":372106126,"name":"Iaroslava Iakushina","nationality":"RUS","sex":"female","date_of_birth":"1993-06-24T00:00:00.000Z","height":1.7,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":884378619,"name":"Ibragim Labazanov","nationality":"RUS","sex":"male","date_of_birth":"1987-09-15T00:00:00.000Z","height":1.64,"weight":64,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":971860435,"name":"Ibrahim Bolukbasi","nationality":"TUR","sex":"male","date_of_birth":"1990-12-01T00:00:00.000Z","height":1.87,"weight":97,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":921428771,"name":"Ibrahim Elmasry","nationality":"EGY","sex":"male","date_of_birth":"1989-03-11T00:00:00.000Z","height":1.91,"weight":82,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":580680998,"name":"Ibrahim Khalaf","nationality":"JOR","sex":"male","date_of_birth":"1986-07-09T00:00:00.000Z","height":1.8,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":564969731,"name":"Ibrahim Nishwan","nationality":"MDV","sex":"male","date_of_birth":"1997-06-12T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":350168886,"name":"Ibrahim Ramadan Ibrahim Abdelbaki","nationality":"EGY","sex":"male","date_of_birth":"1988-02-06T00:00:00.000Z","height":1.73,"weight":77,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":488321463,"name":"Ibrahim Saidau","nationality":"BLR","sex":"male","date_of_birth":"1985-03-09T00:00:00.000Z","height":1.8,"weight":125,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":399888791,"name":"Ibtihaj Muhammad","nationality":"USA","sex":"female","date_of_birth":"1985-12-04T00:00:00.000Z","height":1.71,"weight":68,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":59350988,"name":"Ida Alstad","nationality":"NOR","sex":"female","date_of_birth":"1985-06-13T00:00:00.000Z","height":1.72,"weight":null,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":304264901,"name":"Ida Lindborg","nationality":"SWE","sex":"female","date_of_birth":"1994-06-13T00:00:00.000Z","height":1.67,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":705937798,"name":"Ida Marko-Varga","nationality":"SWE","sex":"female","date_of_birth":"1985-03-10T00:00:00.000Z","height":1.7,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":412225321,"name":"Ida Mayrin","nationality":"ISR","sex":"female","date_of_birth":"1997-10-30T00:00:00.000Z","height":1.72,"weight":52,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":130996491,"name":"Ida Villumsen","nationality":"DEN","sex":"female","date_of_birth":"1994-11-30T00:00:00.000Z","height":1.76,"weight":70,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":445744437,"name":"Idalys Ortiz","nationality":"CUB","sex":"female","date_of_birth":"1989-09-27T00:00:00.000Z","height":1.8,"weight":82,"sport":"judo","gold":0,"silver":1,"bronze":0,"info":"Olympic champion in the + 78kg class at London 2012, Cuba's Idalyz Ortiz won bronze at Beijing 2008. She has been on the podium at five world championships, winning two golds – at Rio, in 2013, and Cheliabinsk, in 2014."},{"id":664747134,"name":"Iera Echebarria","nationality":"ESP","sex":"female","date_of_birth":"1992-10-20T00:00:00.000Z","height":1.6,"weight":63,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":953620490,"name":"Ieuan Lloyd","nationality":"GBR","sex":"male","date_of_birth":"1993-07-09T00:00:00.000Z","height":1.94,"weight":91,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":262282271,"name":"Ieva Serapinaite","nationality":"LTU","sex":"female","date_of_birth":"1995-02-04T00:00:00.000Z","height":1.75,"weight":62,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":693361470,"name":"Ievegeniia Tetelbaum","nationality":"ISR","sex":"female","date_of_birth":"1991-07-31T00:00:00.000Z","height":1.58,"weight":48,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":914405287,"name":"Ievgeniia Nimchenko","nationality":"UKR","sex":"female","date_of_birth":"1992-09-29T00:00:00.000Z","height":1.8,"weight":68,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":49708578,"name":"Iga Baumgart","nationality":"POL","sex":"female","date_of_birth":"1989-04-11T00:00:00.000Z","height":1.78,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":841939942,"name":"Ignacio Martin","nationality":"ESP","sex":"male","date_of_birth":"1983-10-15T00:00:00.000Z","height":1.88,"weight":90,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":911577483,"name":"Ignacio Morales","nationality":"CHI","sex":"male","date_of_birth":"1995-08-12T00:00:00.000Z","height":1.79,"weight":62,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":632290179,"name":"Ignacio Ortiz","nationality":"ARG","sex":"male","date_of_birth":"1987-07-26T00:00:00.000Z","height":1.8,"weight":76,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":877477413,"name":"Ignacio Perrin","nationality":"ARG","sex":"male","date_of_birth":"1985-01-20T00:00:00.000Z","height":1.72,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":212081217,"name":"Ignacio Prado","nationality":"MEX","sex":"male","date_of_birth":"1993-09-21T00:00:00.000Z","height":1.78,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":407328082,"name":"Ignas Navakauskas","nationality":"LTU","sex":"male","date_of_birth":"1989-09-22T00:00:00.000Z","height":1.8,"weight":90,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":317258255,"name":"Ignatas Konovalovas","nationality":"LTU","sex":"male","date_of_birth":"1985-12-08T00:00:00.000Z","height":1.9,"weight":75,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":746541982,"name":"Igor Genua","nationality":"ESP","sex":"male","date_of_birth":"1988-06-05T00:00:00.000Z","height":1.77,"weight":78,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":877954587,"name":"Igor Glavan","nationality":"UKR","sex":"male","date_of_birth":"1990-09-25T00:00:00.000Z","height":1.68,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":207860786,"name":"Igor Karacic","nationality":"CRO","sex":"male","date_of_birth":"1988-11-02T00:00:00.000Z","height":1.91,"weight":91,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":101294964,"name":"Igor Kobzar","nationality":"RUS","sex":"male","date_of_birth":"1991-04-13T00:00:00.000Z","height":1.98,"weight":86,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":701378766,"name":"Igor Kovacevic","nationality":"FRA","sex":"male","date_of_birth":"1988-11-03T00:00:00.000Z","height":1.9,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":647906398,"name":"Igor Marenic","nationality":"CRO","sex":"male","date_of_birth":"1986-01-02T00:00:00.000Z","height":1.73,"weight":70,"sport":"sailing","gold":1,"silver":0,"bronze":0,"info":null},{"id":292473740,"name":"Igor Mogne","nationality":"MOZ","sex":"male","date_of_birth":"1996-08-01T00:00:00.000Z","height":1.75,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":882236724,"name":"Igor Olshanetskyi","nationality":"ISR","sex":"male","date_of_birth":"1986-02-16T00:00:00.000Z","height":1.84,"weight":130,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":295973567,"name":"Igor Pawel Jakubowski","nationality":"POL","sex":"male","date_of_birth":"1992-08-06T00:00:00.000Z","height":1.84,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":343249944,"name":"Igor Polyanskiy","nationality":"RUS","sex":"male","date_of_birth":"1990-01-16T00:00:00.000Z","height":1.91,"weight":72,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":42372934,"name":"Igor Radivilov","nationality":"UKR","sex":"male","date_of_birth":"1992-10-19T00:00:00.000Z","height":1.67,"weight":67,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":118939589,"name":"Igor Wandtke","nationality":"GER","sex":"male","date_of_birth":"1990-11-03T00:00:00.000Z","height":1.76,"weight":76,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":510520768,"name":"Igor Zelenay","nationality":"SVK","sex":"male","date_of_birth":"1982-10-02T00:00:00.000Z","height":1.98,"weight":88,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":207987261,"name":"Ihar Pashevich","nationality":"BLR","sex":"male","date_of_birth":"1991-12-08T00:00:00.000Z","height":1.95,"weight":101,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":358053477,"name":"Ihor Bodrov","nationality":"UKR","sex":"male","date_of_birth":"1987-07-09T00:00:00.000Z","height":1.84,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":644497938,"name":"Ihor Olefirenko","nationality":"UKR","sex":"male","date_of_birth":"1990-03-14T00:00:00.000Z","height":1.86,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":804961388,"name":"Ihor Russ","nationality":"UKR","sex":"male","date_of_birth":"1988-09-08T00:00:00.000Z","height":1.74,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":606865842,"name":"Ihor Shymechko","nationality":"UKR","sex":"male","date_of_birth":"1986-05-27T00:00:00.000Z","height":1.97,"weight":130,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":976629954,"name":"Ika Rochmawati","nationality":"INA","sex":"female","date_of_birth":"1989-07-02T00:00:00.000Z","height":1.65,"weight":52,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":552884668,"name":"Ike Diogu","nationality":"NGR","sex":"male","date_of_birth":"1983-09-11T00:00:00.000Z","height":2.04,"weight":115,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":3146070,"name":"Ikhtiyor Navruzov","nationality":"UZB","sex":"male","date_of_birth":"1989-07-05T00:00:00.000Z","height":1.65,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":14214437,"name":"Ilana Kratysh","nationality":"ISR","sex":"female","date_of_birth":"1990-07-06T00:00:00.000Z","height":1.69,"weight":69,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":259115271,"name":"Ilaria Bianchi","nationality":"ITA","sex":"female","date_of_birth":"1990-01-06T00:00:00.000Z","height":1.7,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":976676407,"name":"Ilaria Bianco","nationality":"ITA","sex":"female","date_of_birth":"1980-05-29T00:00:00.000Z","height":1.65,"weight":55,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":91346833,"name":"Ildiko Toth","nationality":"HUN","sex":"female","date_of_birth":"1987-04-23T00:00:00.000Z","height":1.75,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":853990592,"name":"Ilham Tanui Ozbilen","nationality":"TUR","sex":"male","date_of_birth":"1990-03-05T00:00:00.000Z","height":1.77,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":351709088,"name":"Ilia Druzhinin","nationality":"RUS","sex":"male","date_of_birth":"1998-04-23T00:00:00.000Z","height":1.73,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":165852340,"name":"Ilia Shtokalov","nationality":"RUS","sex":"male","date_of_birth":"1986-09-01T00:00:00.000Z","height":1.85,"weight":95,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":50995857,"name":"Ilia Zakharov","nationality":"RUS","sex":"male","date_of_birth":"1991-05-02T00:00:00.000Z","height":1.75,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":"Elected the best diver in the world, in 2012, Russia's Ilya Zakharov won gold in the 3m individual at London 2012 and silver in the 3m synchronised."},{"id":905071434,"name":"Ilias Iliadis","nationality":"GRE","sex":"male","date_of_birth":"1986-11-10T00:00:00.000Z","height":1.79,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":448835262,"name":"Ilija Brozovic","nationality":"CRO","sex":"male","date_of_birth":"1991-05-26T00:00:00.000Z","height":1.96,"weight":109,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":70065609,"name":"Ilke Ozyuksel","nationality":"TUR","sex":"female","date_of_birth":"1997-02-26T00:00:00.000Z","height":1.67,"weight":53,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":80054566,"name":"Illia Charheika","nationality":"BLR","sex":"male","date_of_birth":"1993-04-15T00:00:00.000Z","height":1.79,"weight":81,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":647841374,"name":"Illias Fifa","nationality":"ESP","sex":"male","date_of_birth":"1989-05-16T00:00:00.000Z","height":1.73,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":768750395,"name":"Illya Kvasha","nationality":"UKR","sex":"male","date_of_birth":"1988-03-05T00:00:00.000Z","height":1.76,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":189313001,"name":"Illya Marchenko","nationality":"UKR","sex":"male","date_of_birth":"1987-09-08T00:00:00.000Z","height":1.85,"weight":84,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":169762981,"name":"Ilona Marhele","nationality":"LAT","sex":"female","date_of_birth":"1986-04-05T00:00:00.000Z","height":1.64,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":446700589,"name":"Ilse Paulis","nationality":"NED","sex":"female","date_of_birth":"1993-07-30T00:00:00.000Z","height":1.74,"weight":57,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":304002901,"name":"Ilya Golendov","nationality":"KAZ","sex":"male","date_of_birth":"1994-10-02T00:00:00.000Z","height":1.85,"weight":87,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":507272052,"name":"Ilya Khomenko","nationality":"RUS","sex":"male","date_of_birth":"1995-10-14T00:00:00.000Z","height":1.81,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":755684703,"name":"Ilya Mokretcov","nationality":"KAZ","sex":"male","date_of_birth":"1984-04-17T00:00:00.000Z","height":1.77,"weight":74,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":971438297,"name":"Ilya Pervukhin","nationality":"RUS","sex":"male","date_of_birth":"1991-07-06T00:00:00.000Z","height":1.83,"weight":82,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":456650881,"name":"Ilya Tiapkin","nationality":"KGZ","sex":"male","date_of_birth":"1991-08-02T00:00:00.000Z","height":1.6,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":695779236,"name":"Ilyas Abbadi","nationality":"ALG","sex":"male","date_of_birth":"1992-10-21T00:00:00.000Z","height":1.85,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":57892115,"name":"Imad Bassou","nationality":"MAR","sex":"male","date_of_birth":"1993-07-04T00:00:00.000Z","height":1.73,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":587168078,"name":"Iman Essa Jasim","nationality":"BRN","sex":"female","date_of_birth":"1997-07-09T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":186497946,"name":"Imanol Erviti Ollo","nationality":"ESP","sex":"male","date_of_birth":"1983-11-15T00:00:00.000Z","height":1.9,"weight":80,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":303543728,"name":"Imene Ouneyssa Cherif Sahraoui","nationality":"ALG","sex":"female","date_of_birth":"1995-09-14T00:00:00.000Z","height":1.65,"weight":64,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":712856100,"name":"Imoh Ezekiel","nationality":"NGR","sex":"male","date_of_birth":"1993-10-24T00:00:00.000Z","height":1.71,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":229646007,"name":"Imre Balazs Bacskai","nationality":"HUN","sex":"male","date_of_birth":"1988-01-29T00:00:00.000Z","height":1.77,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":92960172,"name":"In Gee Chun","nationality":"KOR","sex":"female","date_of_birth":"1994-08-10T00:00:00.000Z","height":1.76,"weight":70,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":158102208,"name":"Ina Nikulina","nationality":"BLR","sex":"female","date_of_birth":"1995-02-23T00:00:00.000Z","height":1.72,"weight":66,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":142973725,"name":"Inaki Aguilar Vicente","nationality":"ESP","sex":"male","date_of_birth":"1983-09-09T00:00:00.000Z","height":1.89,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":952258564,"name":"Inaki Gomez","nationality":"CAN","sex":"male","date_of_birth":"1988-01-16T00:00:00.000Z","height":1.72,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":22566156,"name":"Inaki Villanueva","nationality":"ESP","sex":"male","date_of_birth":"1991-02-10T00:00:00.000Z","height":1.98,"weight":103,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":349411929,"name":"Inbee Park","nationality":"KOR","sex":"female","date_of_birth":"1988-07-12T00:00:00.000Z","height":1.68,"weight":60,"sport":"golf","gold":1,"silver":0,"bronze":0,"info":null},{"id":471014946,"name":"Ines Boubakri","nationality":"TUN","sex":"female","date_of_birth":"1988-12-28T00:00:00.000Z","height":1.67,"weight":56,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":933685256,"name":"Ines Gmati","nationality":"TUN","sex":"female","date_of_birth":"1997-04-05T00:00:00.000Z","height":1.65,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":601743503,"name":"Ines Henriques","nationality":"POR","sex":"female","date_of_birth":"1980-05-01T00:00:00.000Z","height":1.56,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":26427576,"name":"Ines Melchor","nationality":"PER","sex":"female","date_of_birth":"1986-08-30T00:00:00.000Z","height":1.52,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":6720592,"name":"Ines Remersaro","nationality":"URU","sex":"female","date_of_birth":"1992-12-02T00:00:00.000Z","height":1.67,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":71569433,"name":"Inessa Merkulova","nationality":"RUS","sex":"female","date_of_birth":"1964-11-09T00:00:00.000Z","height":1.7,"weight":65,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":701169086,"name":"Inge Dekker","nationality":"NED","sex":"female","date_of_birth":"1985-08-18T00:00:00.000Z","height":1.83,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":121871269,"name":"Inge Janssen","nationality":"NED","sex":"female","date_of_birth":"1989-04-20T00:00:00.000Z","height":1.82,"weight":74,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":771770373,"name":"Ingeborg Lovnes","nationality":"NOR","sex":"female","date_of_birth":"1992-09-05T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":569222306,"name":"Ingrid Klimke","nationality":"GER","sex":"female","date_of_birth":"1968-04-01T00:00:00.000Z","height":1.72,"weight":58,"sport":"equestrian","gold":0,"silver":1,"bronze":0,"info":null},{"id":778347841,"name":"Ingrid Oliveira","nationality":"BRA","sex":"female","date_of_birth":"1996-05-07T00:00:00.000Z","height":1.6,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":449860583,"name":"Ingrid Puusta","nationality":"EST","sex":"female","date_of_birth":"1990-11-08T00:00:00.000Z","height":1.63,"weight":57,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":803332684,"name":"Ingrid Vidal","nationality":"COL","sex":"female","date_of_birth":"1991-04-22T00:00:00.000Z","height":1.66,"weight":53,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":464022421,"name":"Ingrit Lorena Valencia Victoria","nationality":"COL","sex":"female","date_of_birth":"1988-09-03T00:00:00.000Z","height":1.6,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":454151024,"name":"Inigo Pena","nationality":"ESP","sex":"male","date_of_birth":"1990-09-07T00:00:00.000Z","height":1.94,"weight":92,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":22127464,"name":"Inika McPherson","nationality":"USA","sex":"female","date_of_birth":"1986-09-29T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":989454733,"name":"Injeong Choi","nationality":"KOR","sex":"female","date_of_birth":"1990-05-21T00:00:00.000Z","height":1.74,"weight":59,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":846310345,"name":"Inkululeko Suntele","nationality":"LES","sex":"male","date_of_birth":"1994-04-30T00:00:00.000Z","height":null,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":983898565,"name":"Inna Deriglazova","nationality":"RUS","sex":"female","date_of_birth":"1990-03-10T00:00:00.000Z","height":1.73,"weight":61,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":595647629,"name":"Inna Hryshchun","nationality":"UKR","sex":"female","date_of_birth":"1994-09-29T00:00:00.000Z","height":1.72,"weight":72,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":927315526,"name":"Inna Kashyna","nationality":"UKR","sex":"female","date_of_birth":"1991-09-27T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":204865458,"name":"Inna Klinova","nationality":"KAZ","sex":"female","date_of_birth":"1986-05-13T00:00:00.000Z","height":1.73,"weight":78,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":135745730,"name":"Inna Logutenkova","nationality":"UKR","sex":"female","date_of_birth":"1986-10-19T00:00:00.000Z","height":1.72,"weight":63,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":980208758,"name":"Inna Osipenko-Rodomska","nationality":"AZE","sex":"female","date_of_birth":"1982-09-20T00:00:00.000Z","height":1.66,"weight":63,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":188617365,"name":"Inna Stepanova","nationality":"RUS","sex":"female","date_of_birth":"1990-04-17T00:00:00.000Z","height":1.76,"weight":63,"sport":"archery","gold":0,"silver":1,"bronze":0,"info":null},{"id":167916854,"name":"Inna Trazhukova","nationality":"RUS","sex":"female","date_of_birth":"1990-09-11T00:00:00.000Z","height":1.7,"weight":63,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":163668674,"name":"Ioana Strungaru","nationality":"ROU","sex":"female","date_of_birth":"1989-01-04T00:00:00.000Z","height":1.8,"weight":77,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":562041099,"name":"Ioanna Anagnostopoulou","nationality":"GRE","sex":"female","date_of_birth":"1997-06-12T00:00:00.000Z","height":1.81,"weight":58,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":850374991,"name":"Ioannis Christou","nationality":"GRE","sex":"male","date_of_birth":"1983-06-23T00:00:00.000Z","height":1.9,"weight":92,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":617416112,"name":"Ioannis Fountoulis","nationality":"GRE","sex":"male","date_of_birth":"1988-05-25T00:00:00.000Z","height":1.86,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":580426427,"name":"Ioannis Mitakis","nationality":"GRE","sex":"male","date_of_birth":"1989-11-08T00:00:00.000Z","height":1.86,"weight":96,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":115317084,"name":"Ioannis Petrou","nationality":"GRE","sex":"male","date_of_birth":"1996-08-10T00:00:00.000Z","height":1.86,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":557528943,"name":"Ioannis Tamouridis","nationality":"GRE","sex":"male","date_of_birth":"1980-06-03T00:00:00.000Z","height":1.8,"weight":73,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":576485074,"name":"Ioannis Tsilis","nationality":"GRE","sex":"male","date_of_birth":"1986-07-15T00:00:00.000Z","height":1.83,"weight":86,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":33869783,"name":"Ion Iulian Panait","nationality":"ROU","sex":"male","date_of_birth":"1981-05-05T00:00:00.000Z","height":1.69,"weight":70,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":914048344,"name":"Ionela-Livia Lehaci","nationality":"ROU","sex":"female","date_of_birth":"1995-01-03T00:00:00.000Z","height":1.78,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":936581108,"name":"Ionica Munteanu","nationality":"ROU","sex":"female","date_of_birth":"1979-01-07T00:00:00.000Z","height":1.75,"weight":68,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":113789263,"name":"Iosefo Verevou","nationality":"FIJ","sex":"male","date_of_birth":"1996-01-05T00:00:00.000Z","height":1.9,"weight":96,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":855720243,"name":"Ippei Watanabe","nationality":"JPN","sex":"male","date_of_birth":"1997-03-18T00:00:00.000Z","height":1.93,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":442968220,"name":"Irakli Revishvili","nationality":"GEO","sex":"male","date_of_birth":"1989-11-03T00:00:00.000Z","height":1.78,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":938066786,"name":"Irakli Turmanidze","nationality":"GEO","sex":"male","date_of_birth":"1984-12-13T00:00:00.000Z","height":1.82,"weight":136,"sport":"weightlifting","gold":0,"silver":0,"bronze":1,"info":null},{"id":513788347,"name":"Irem Karamete","nationality":"TUR","sex":"female","date_of_birth":"1993-06-20T00:00:00.000Z","height":1.67,"weight":60,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":508732843,"name":"Irene Otieno","nationality":"KEN","sex":"female","date_of_birth":"1986-03-26T00:00:00.000Z","height":1.62,"weight":58,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":84886032,"name":"Irene Prescott","nationality":"TGA","sex":"female","date_of_birth":"1994-06-21T00:00:00.000Z","height":1.74,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":182591826,"name":"Irene Vecchi","nationality":"ITA","sex":"female","date_of_birth":"1989-06-10T00:00:00.000Z","height":1.7,"weight":56,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":417651899,"name":"Irina Bliznova","nationality":"RUS","sex":"female","date_of_birth":"1986-10-06T00:00:00.000Z","height":1.82,"weight":68,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":283851540,"name":"Irina Dolgova","nationality":"RUS","sex":"female","date_of_birth":"1995-09-26T00:00:00.000Z","height":1.53,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":296869693,"name":"Irina Ektova","nationality":"KAZ","sex":"female","date_of_birth":"1987-01-08T00:00:00.000Z","height":1.73,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":804181328,"name":"Irina Embrich","nationality":"EST","sex":"female","date_of_birth":"1980-07-12T00:00:00.000Z","height":1.7,"weight":54,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":739855069,"name":"Irina Fetisova","nationality":"RUS","sex":"female","date_of_birth":"1994-09-07T00:00:00.000Z","height":1.9,"weight":76,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":557552346,"name":"Irina Kalentyeva","nationality":"RUS","sex":"female","date_of_birth":"1977-11-10T00:00:00.000Z","height":1.55,"weight":45,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":917681217,"name":"Irina Podoinikova","nationality":"KAZ","sex":"female","date_of_birth":"1988-06-28T00:00:00.000Z","height":1.66,"weight":65,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":219669436,"name":"Irina Sazonova","nationality":"ISL","sex":"female","date_of_birth":"1991-09-02T00:00:00.000Z","height":1.6,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":696538108,"name":"Irina Smolnikova","nationality":"KAZ","sex":"female","date_of_birth":"1980-07-21T00:00:00.000Z","height":1.63,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":83837014,"name":"Irina Voronkova","nationality":"RUS","sex":"female","date_of_birth":"1995-10-20T00:00:00.000Z","height":1.9,"weight":84,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":431895427,"name":"Irina Zabludina","nationality":"RUS","sex":"female","date_of_birth":"1987-02-24T00:00:00.000Z","height":1.6,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":101444757,"name":"Irina Zaryazhko","nationality":"RUS","sex":"female","date_of_birth":"1991-10-04T00:00:00.000Z","height":1.96,"weight":78,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":172876009,"name":"Irina-Camelia Begu","nationality":"ROU","sex":"female","date_of_birth":"1990-08-26T00:00:00.000Z","height":1.81,"weight":70,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":201635466,"name":"Irini Vasiliou","nationality":"GRE","sex":"female","date_of_birth":"1990-03-18T00:00:00.000Z","height":1.69,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":795911754,"name":"Iris Sing","nationality":"BRA","sex":"female","date_of_birth":"1990-08-21T00:00:00.000Z","height":1.67,"weight":51,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":642164387,"name":"Iris Wang","nationality":"USA","sex":"female","date_of_birth":"1994-09-02T00:00:00.000Z","height":1.61,"weight":52,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":587220722,"name":"Irma Testa","nationality":"ITA","sex":"female","date_of_birth":"1997-12-28T00:00:00.000Z","height":1.74,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":784228861,"name":"Irmina Mrozek-Gliszczynska","nationality":"POL","sex":"female","date_of_birth":"1992-02-09T00:00:00.000Z","height":1.76,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":858423285,"name":"Irvette van Zyl","nationality":"RSA","sex":"female","date_of_birth":"1987-07-05T00:00:00.000Z","height":1.69,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":229536037,"name":"Irving Perez","nationality":"MEX","sex":"male","date_of_birth":"1986-05-16T00:00:00.000Z","height":1.75,"weight":64,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":544870247,"name":"Iryna Dekha","nationality":"UKR","sex":"female","date_of_birth":"1996-05-14T00:00:00.000Z","height":1.74,"weight":75,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":448533729,"name":"Iryna Gerashchenko","nationality":"UKR","sex":"female","date_of_birth":"1995-03-10T00:00:00.000Z","height":1.81,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":851400427,"name":"Iryna Khokhlova","nationality":"ARG","sex":"female","date_of_birth":"1990-01-29T00:00:00.000Z","height":1.67,"weight":60,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":712655795,"name":"Iryna Klymets","nationality":"UKR","sex":"female","date_of_birth":"1994-10-04T00:00:00.000Z","height":1.68,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":123129605,"name":"Iryna Limanouskaya","nationality":"BLR","sex":"female","date_of_birth":"1994-05-18T00:00:00.000Z","height":1.66,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":586982382,"name":"Iryna Novozhylova","nationality":"UKR","sex":"female","date_of_birth":"1986-01-07T00:00:00.000Z","height":1.75,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":413999687,"name":"Iryna Popova","nationality":"UKR","sex":"female","date_of_birth":"1991-05-27T00:00:00.000Z","height":1.64,"weight":53,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":312836609,"name":"Iryna Vaskouskaya","nationality":"BLR","sex":"female","date_of_birth":"1991-04-02T00:00:00.000Z","height":1.79,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":25232668,"name":"Iryna Yakaltsevich","nationality":"BLR","sex":"female","date_of_birth":"1993-01-26T00:00:00.000Z","height":1.66,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":862541606,"name":"Isaac Grainger","nationality":"NZL","sex":"male","date_of_birth":"1992-05-26T00:00:00.000Z","height":1.96,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":686113562,"name":"Isaac Korir","nationality":"BRN","sex":"male","date_of_birth":"1990-08-26T00:00:00.000Z","height":1.88,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":427843232,"name":"Isaac Makwala","nationality":"BOT","sex":"male","date_of_birth":"1985-09-24T00:00:00.000Z","height":1.85,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":231426919,"name":"Isaac Silafau","nationality":"ASA","sex":"male","date_of_birth":"1990-10-05T00:00:00.000Z","height":1.75,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":245903701,"name":"Isabel Brand","nationality":"GUA","sex":"female","date_of_birth":"1996-06-23T00:00:00.000Z","height":1.69,"weight":53,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":840841199,"name":"Isabel Cristina Romero Benitez","nationality":"COL","sex":"female","date_of_birth":"1996-07-27T00:00:00.000Z","height":1.61,"weight":62,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":196950194,"name":"Isabel Evelize W. Guialo","nationality":"ANG","sex":"female","date_of_birth":"1990-04-08T00:00:00.000Z","height":1.8,"weight":73,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":338940609,"name":"Isabel Kerschowski","nationality":"GER","sex":"female","date_of_birth":"1988-01-22T00:00:00.000Z","height":1.67,"weight":57,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":519820661,"name":"Isabel Swan","nationality":"BRA","sex":"female","date_of_birth":"1983-11-18T00:00:00.000Z","height":1.81,"weight":69,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":809661932,"name":"Isabela Macedo","nationality":"BRA","sex":"female","date_of_birth":"1994-01-23T00:00:00.000Z","height":1.79,"weight":76,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":210703897,"name":"Isabela Onyshko","nationality":"CAN","sex":"female","date_of_birth":"1998-06-23T00:00:00.000Z","height":1.57,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":630931206,"name":"Isabell Werth","nationality":"GER","sex":"female","date_of_birth":"1969-07-21T00:00:00.000Z","height":1.69,"weight":66,"sport":"equestrian","gold":1,"silver":1,"bronze":0,"info":null},{"id":526667108,"name":"Isabella Amado","nationality":"PAN","sex":"female","date_of_birth":"1996-08-09T00:00:00.000Z","height":1.55,"weight":59,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":610732042,"name":"Isabella Arcila Hurtado","nationality":"COL","sex":"female","date_of_birth":"1994-03-11T00:00:00.000Z","height":1.68,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":435115822,"name":"Isabella Echeverri","nationality":"COL","sex":"female","date_of_birth":"1994-06-16T00:00:00.000Z","height":1.72,"weight":66,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":465840905,"name":"Isabella Isaksen","nationality":"USA","sex":"female","date_of_birth":"1993-11-22T00:00:00.000Z","height":1.73,"weight":63,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":978854513,"name":"Isabelle Forrer","nationality":"SUI","sex":"female","date_of_birth":"1982-03-28T00:00:00.000Z","height":1.78,"weight":67,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":844071383,"name":"Isabelle Gullden","nationality":"SWE","sex":"female","date_of_birth":"1989-06-29T00:00:00.000Z","height":1.77,"weight":76,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":729625063,"name":"Isabelle Haerle","nationality":"GER","sex":"female","date_of_birth":"1988-01-10T00:00:00.000Z","height":1.75,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":846218313,"name":"Isabelle Pedersen","nationality":"NOR","sex":"female","date_of_birth":"1992-01-27T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":441669814,"name":"Isabelle Sambou","nationality":"SEN","sex":"female","date_of_birth":"1980-10-20T00:00:00.000Z","height":1.55,"weight":53,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":61576654,"name":"Isabelle Yacoubou","nationality":"FRA","sex":"female","date_of_birth":"1986-04-21T00:00:00.000Z","height":1.9,"weight":104,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":684603129,"name":"Isadora Cerullo","nationality":"BRA","sex":"female","date_of_birth":"1991-03-24T00:00:00.000Z","height":1.58,"weight":58,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":99018195,"name":"Isak Ohrstrom","nationality":"SWE","sex":"male","date_of_birth":"1990-11-26T00:00:00.000Z","height":1.77,"weight":72,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":624395952,"name":"Isamu Fujisawa","nationality":"JPN","sex":"male","date_of_birth":"1987-10-12T00:00:00.000Z","height":1.65,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":121190622,"name":"Isaquias Queiroz dos Santos","nationality":"BRA","sex":"male","date_of_birth":"1994-01-03T00:00:00.000Z","height":1.75,"weight":85,"sport":"canoe","gold":0,"silver":2,"bronze":1,"info":null},{"id":141207459,"name":"Isheau Wong","nationality":"TPE","sex":"female","date_of_birth":"1989-02-12T00:00:00.000Z","height":1.79,"weight":70,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":887945521,"name":"Isiah Kiplangat Koech","nationality":"KEN","sex":"male","date_of_birth":"1993-12-19T00:00:00.000Z","height":1.72,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":181441933,"name":"Isidora Jimenez","nationality":"CHI","sex":"female","date_of_birth":"1993-08-10T00:00:00.000Z","height":1.7,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":874295706,"name":"Isidoro Ibarra","nationality":"ARG","sex":"male","date_of_birth":"1992-10-02T00:00:00.000Z","height":1.75,"weight":75,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":211473631,"name":"Isil Alben","nationality":"TUR","sex":"female","date_of_birth":"1986-02-22T00:00:00.000Z","height":1.72,"weight":62,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":218012478,"name":"Isis Gimenez","nationality":"VEN","sex":"female","date_of_birth":"1990-07-30T00:00:00.000Z","height":1.7,"weight":68,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":444343903,"name":"Islam El Shehaby","nationality":"EGY","sex":"male","date_of_birth":"1982-08-01T00:00:00.000Z","height":1.95,"weight":105,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":642911122,"name":"Islam Magomedov","nationality":"RUS","sex":"male","date_of_birth":"1991-02-08T00:00:00.000Z","height":1.82,"weight":98,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":318856332,"name":"Islam-Beka Albiev","nationality":"RUS","sex":"male","date_of_birth":"1988-12-28T00:00:00.000Z","height":1.65,"weight":66,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":426130402,"name":"Ismael Borrero Molina","nationality":"CUB","sex":"male","date_of_birth":"1992-01-06T00:00:00.000Z","height":1.6,"weight":59,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":17997174,"name":"Ismael Coulibaly","nationality":"MLI","sex":"male","date_of_birth":"1992-11-20T00:00:00.000Z","height":1.91,"weight":78,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":168084351,"name":"Ismael Marcelo Hernandez Uscanga","nationality":"MEX","sex":"male","date_of_birth":"1990-01-23T00:00:00.000Z","height":1.78,"weight":64,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":1,"info":null},{"id":938396110,"name":"Ismail Kamara","nationality":"SLE","sex":"male","date_of_birth":"1997-02-14T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":183143122,"name":"Ismail Keles","nationality":"TUR","sex":"male","date_of_birth":"1988-03-05T00:00:00.000Z","height":1.68,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":843284700,"name":"Isobel Bishop","nationality":"AUS","sex":"female","date_of_birth":"1991-09-08T00:00:00.000Z","height":1.8,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":997954972,"name":"Issam Tej","nationality":"TUN","sex":"male","date_of_birth":"1979-07-29T00:00:00.000Z","height":1.87,"weight":110,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":133506247,"name":"Istvan Peni","nationality":"HUN","sex":"male","date_of_birth":"1997-02-14T00:00:00.000Z","height":1.76,"weight":64,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":347433647,"name":"Istvan Vereb","nationality":"HUN","sex":"male","date_of_birth":"1987-10-08T00:00:00.000Z","height":1.81,"weight":90,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":521044712,"name":"Iszlam Monier Suliman","nationality":"SUD","sex":"male","date_of_birth":"1990-12-17T00:00:00.000Z","height":1.82,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":177843995,"name":"Italo Duarte","nationality":"BRA","sex":"male","date_of_birth":"1992-03-13T00:00:00.000Z","height":1.8,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":413617317,"name":"Itumeleng Khune","nationality":"RSA","sex":"male","date_of_birth":"1987-06-20T00:00:00.000Z","height":1.84,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":85278686,"name":"Itzel Adilene Manjarrez Bastidas","nationality":"MEX","sex":"female","date_of_birth":"1990-04-10T00:00:00.000Z","height":1.71,"weight":49,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":490237088,"name":"Iuliana Popa","nationality":"ROU","sex":"female","date_of_birth":"1996-07-05T00:00:00.000Z","height":1.85,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":886931188,"name":"Iuliia Andreeva","nationality":"KGZ","sex":"female","date_of_birth":"1984-03-07T00:00:00.000Z","height":1.68,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":734306362,"name":"Iuliia Olishevska","nationality":"UKR","sex":"female","date_of_birth":"1989-02-02T00:00:00.000Z","height":1.67,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":36280393,"name":"Iuliia Paratova","nationality":"UKR","sex":"female","date_of_birth":"1986-11-07T00:00:00.000Z","height":1.55,"weight":48,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":143130668,"name":"Iuliia Prokopchuk","nationality":"UKR","sex":"female","date_of_birth":"1986-10-23T00:00:00.000Z","height":1.6,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":967646151,"name":"Iurii Cheban","nationality":"UKR","sex":"male","date_of_birth":"1986-07-05T00:00:00.000Z","height":1.85,"weight":93,"sport":"canoe","gold":1,"silver":0,"bronze":0,"info":"The Ukraine's Iurii Cheban won the fastest canoe sprint event at the London 2012 Olympic Games, the C-1 200m, for which he also holds two world titles. Four years previously, at Beijing 2008, he took bronze in the C-1 500m."},{"id":689497328,"name":"Iurii Krakovetskii","nationality":"KGZ","sex":"male","date_of_birth":"1992-08-27T00:00:00.000Z","height":1.8,"weight":130,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":898570375,"name":"Ivan Banzeruk","nationality":"UKR","sex":"male","date_of_birth":"1990-02-09T00:00:00.000Z","height":1.8,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":69692265,"name":"Ivan Cupic","nationality":"CRO","sex":"male","date_of_birth":"1986-03-27T00:00:00.000Z","height":1.78,"weight":78,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":360210187,"name":"Ivan Dovhodko","nationality":"UKR","sex":"male","date_of_birth":"1989-01-15T00:00:00.000Z","height":1.96,"weight":100,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":666382432,"name":"Ivan Dychko","nationality":"KAZ","sex":"male","date_of_birth":"1990-08-11T00:00:00.000Z","height":2.06,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":470445982,"name":"Ivan Efremov","nationality":"UZB","sex":"male","date_of_birth":"1986-03-09T00:00:00.000Z","height":1.84,"weight":105,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":784382414,"name":"Ivan Emilianov","nationality":"MDA","sex":"male","date_of_birth":"1977-02-19T00:00:00.000Z","height":2.02,"weight":165,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":77481096,"name":"Ivan Endericao","nationality":"ECU","sex":"male","date_of_birth":"1991-10-28T00:00:00.000Z","height":1.78,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":725755440,"name":"Ivan Garcia","nationality":"MEX","sex":"male","date_of_birth":"1993-10-25T00:00:00.000Z","height":1.6,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":435489428,"name":"Ivan Guidea","nationality":"ROU","sex":"male","date_of_birth":"1988-05-12T00:00:00.000Z","height":1.63,"weight":60,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":98196983,"name":"Ivan Horvat","nationality":"CRO","sex":"male","date_of_birth":"1993-08-17T00:00:00.000Z","height":1.83,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":21185636,"name":"Ivan Ivanov","nationality":"UKR","sex":"male","date_of_birth":"1989-01-08T00:00:00.000Z","height":1.83,"weight":67,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":731072777,"name":"Ivan Ivanov","nationality":"KAZ","sex":"male","date_of_birth":"1992-01-03T00:00:00.000Z","height":2.02,"weight":144,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":515991313,"name":"Ivan Kljakovic Gaspic","nationality":"CRO","sex":"male","date_of_birth":"1984-05-24T00:00:00.000Z","height":1.89,"weight":95,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":469953081,"name":"Ivan Krapic","nationality":"CRO","sex":"male","date_of_birth":"1989-02-14T00:00:00.000Z","height":1.94,"weight":103,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":217049507,"name":"Ivan Pastor Lafuente","nationality":"ESP","sex":"male","date_of_birth":"1980-02-18T00:00:00.000Z","height":1.77,"weight":73,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":983627857,"name":"Ivan Pesic","nationality":"CRO","sex":"male","date_of_birth":"1989-03-17T00:00:00.000Z","height":1.94,"weight":112,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":172346281,"name":"Ivan Popov","nationality":"AUS","sex":"male","date_of_birth":"1986-05-25T00:00:00.000Z","height":2.03,"weight":106,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":363273561,"name":"Ivan Remarenco","nationality":"UAE","sex":"male","date_of_birth":"1988-08-07T00:00:00.000Z","height":1.86,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":195192329,"name":"Ivan Sliskovic","nationality":"CRO","sex":"male","date_of_birth":"1991-10-23T00:00:00.000Z","height":1.97,"weight":100,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":744721123,"name":"Ivan Sozonov","nationality":"RUS","sex":"male","date_of_birth":"1989-07-06T00:00:00.000Z","height":1.8,"weight":78,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":432949673,"name":"Ivan Stevanovic","nationality":"CRO","sex":"male","date_of_birth":"1982-05-18T00:00:00.000Z","height":1.93,"weight":105,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":150785655,"name":"Ivan Stevic","nationality":"SRB","sex":"male","date_of_birth":"1980-03-12T00:00:00.000Z","height":1.72,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":858324078,"name":"Ivan Stretovich","nationality":"RUS","sex":"male","date_of_birth":"1996-10-06T00:00:00.000Z","height":1.7,"weight":59,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":null},{"id":337752893,"name":"Ivan Trotski","nationality":"BLR","sex":"male","date_of_birth":"1976-05-27T00:00:00.000Z","height":1.72,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":617539408,"name":"Ivan Tsikhan","nationality":"BLR","sex":"male","date_of_birth":"1976-07-24T00:00:00.000Z","height":1.86,"weight":110,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":33123082,"name":"Ivan Zaytsev","nationality":"ITA","sex":"male","date_of_birth":"1988-10-02T00:00:00.000Z","height":2.04,"weight":100,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":177114501,"name":"Ivan Zaytsev","nationality":"UZB","sex":"male","date_of_birth":"1988-11-07T00:00:00.000Z","height":1.92,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":296305491,"name":"Ivana Andusic Maksimovic","nationality":"SRB","sex":"female","date_of_birth":"1990-05-02T00:00:00.000Z","height":1.61,"weight":51,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":313918380,"name":"Ivana Spanovic","nationality":"SRB","sex":"female","date_of_birth":"1990-05-10T00:00:00.000Z","height":1.76,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":666265585,"name":"Ivaylo Ivanov","nationality":"BUL","sex":"male","date_of_birth":"1994-07-20T00:00:00.000Z","height":1.8,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":144103259,"name":"Ives Alonso","nationality":"BRA","sex":"male","date_of_birth":"1980-10-12T00:00:00.000Z","height":1.91,"weight":102,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":621283199,"name":"Ivet Lalova-Collio","nationality":"BUL","sex":"female","date_of_birth":"1984-05-18T00:00:00.000Z","height":1.68,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":440079091,"name":"Iveta Putalova","nationality":"SVK","sex":"female","date_of_birth":"1988-03-24T00:00:00.000Z","height":1.73,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":45693208,"name":"Iveta Vacenovska","nationality":"CZE","sex":"female","date_of_birth":"1986-03-22T00:00:00.000Z","height":1.68,"weight":58,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":237977103,"name":"Ivo Rodrigues","nationality":"POR","sex":"male","date_of_birth":"1995-03-30T00:00:00.000Z","height":1.8,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":447718633,"name":"Ivona Dadic","nationality":"AUT","sex":"female","date_of_birth":"1993-12-29T00:00:00.000Z","height":1.79,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":958847456,"name":"Iwona Lewandowska","nationality":"POL","sex":"female","date_of_birth":"1985-02-19T00:00:00.000Z","height":1.61,"weight":43,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":909695929,"name":"Iwona Nina Matkowska","nationality":"POL","sex":"female","date_of_birth":"1982-05-28T00:00:00.000Z","height":1.6,"weight":48,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":951915327,"name":"Izabella Chiappini","nationality":"BRA","sex":"female","date_of_birth":"1995-09-28T00:00:00.000Z","height":1.7,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":645206665,"name":"Iziane Castro","nationality":"BRA","sex":"female","date_of_birth":"1982-03-13T00:00:00.000Z","height":1.81,"weight":69,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":324317073,"name":"Izmir Smajlaj","nationality":"ALB","sex":"male","date_of_birth":"1993-03-29T00:00:00.000Z","height":1.95,"weight":86,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":269077637,"name":"Izzat Artykov","nationality":"KGZ","sex":"male","date_of_birth":"1993-09-08T00:00:00.000Z","height":1.6,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":963470653,"name":"Izzet Safer","nationality":"TUR","sex":"male","date_of_birth":"1990-07-10T00:00:00.000Z","height":1.78,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":860885364,"name":"Izzy Joachim","nationality":"VIN","sex":"female","date_of_birth":"2000-05-11T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":478575859,"name":"J'den Michael Tbory Cox","nationality":"USA","sex":"male","date_of_birth":"1995-03-03T00:00:00.000Z","height":1.81,"weight":85,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":411708041,"name":"Jaak-Heinrich Jagor","nationality":"EST","sex":"male","date_of_birth":"1990-05-11T00:00:00.000Z","height":1.9,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":108953366,"name":"Jabrayil Hasanov","nationality":"AZE","sex":"male","date_of_birth":"1990-02-24T00:00:00.000Z","height":1.7,"weight":74,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":299391231,"name":"Jacco Arends","nationality":"NED","sex":"male","date_of_birth":"1991-01-28T00:00:00.000Z","height":1.86,"weight":72,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":788110686,"name":"Jack Beaumont","nationality":"GBR","sex":"male","date_of_birth":"1993-11-21T00:00:00.000Z","height":1.88,"weight":88,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":579353978,"name":"Jack Bobridge","nationality":"AUS","sex":"male","date_of_birth":"1989-07-13T00:00:00.000Z","height":1.8,"weight":65,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":760496010,"name":"Jack Burnell","nationality":"GBR","sex":"male","date_of_birth":"1993-06-13T00:00:00.000Z","height":1.85,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":762346507,"name":"Jack Conger","nationality":"USA","sex":"male","date_of_birth":"1994-09-26T00:00:00.000Z","height":1.94,"weight":79,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":603033705,"name":"Jack Green","nationality":"GBR","sex":"male","date_of_birth":"1991-10-06T00:00:00.000Z","height":1.93,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":123646851,"name":"Jack Laugher","nationality":"GBR","sex":"male","date_of_birth":"1995-01-30T00:00:00.000Z","height":1.68,"weight":72,"sport":"aquatics","gold":1,"silver":1,"bronze":0,"info":null},{"id":438635106,"name":"Jack McLoughlin","nationality":"AUS","sex":"male","date_of_birth":"1995-02-01T00:00:00.000Z","height":1.83,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":485335601,"name":"Jack Rossiter","nationality":"AUS","sex":"male","date_of_birth":"1997-06-13T00:00:00.000Z","height":1.71,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":466400637,"name":"Jack Sock","nationality":"USA","sex":"male","date_of_birth":"1992-09-24T00:00:00.000Z","height":1.91,"weight":83,"sport":"tennis","gold":1,"silver":0,"bronze":1,"info":null},{"id":88575304,"name":"Jackeline Renteria Castillo","nationality":"COL","sex":"female","date_of_birth":"1986-02-23T00:00:00.000Z","height":1.67,"weight":58,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":818815252,"name":"Jackie Baumann","nationality":"GER","sex":"female","date_of_birth":"1995-08-24T00:00:00.000Z","height":1.73,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":570931875,"name":"Jackie Galloway","nationality":"USA","sex":"female","date_of_birth":"1995-12-27T00:00:00.000Z","height":1.78,"weight":79,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":305555615,"name":"Jacko Gill","nationality":"NZL","sex":"male","date_of_birth":"1994-12-20T00:00:00.000Z","height":1.89,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":637078881,"name":"Jackson Kiprop","nationality":"UGA","sex":"male","date_of_birth":"1986-10-20T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":547359586,"name":"Jackson Rondinelli","nationality":"BRA","sex":"male","date_of_birth":"1994-05-20T00:00:00.000Z","height":1.63,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":181043384,"name":"Jaclyn Briggs","nationality":"USA","sex":"female","date_of_birth":"1988-05-23T00:00:00.000Z","height":1.68,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":390353746,"name":"Jaco van Zyl","nationality":"RSA","sex":"male","date_of_birth":"1979-02-23T00:00:00.000Z","height":1.84,"weight":74,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":144248521,"name":"Jacob Araptany","nationality":"UGA","sex":"male","date_of_birth":"1994-02-11T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":28259305,"name":"Jacob Barsoe","nationality":"DEN","sex":"male","date_of_birth":"1988-09-21T00:00:00.000Z","height":1.88,"weight":73,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":135293995,"name":"Jacob Bruun Larsen","nationality":"DEN","sex":"male","date_of_birth":"1998-09-19T00:00:00.000Z","height":1.83,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":521943829,"name":"Jacob Clear","nationality":"AUS","sex":"male","date_of_birth":"1985-01-18T00:00:00.000Z","height":1.85,"weight":86,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":775250732,"name":"Jacob Dalton","nationality":"USA","sex":"male","date_of_birth":"1991-08-19T00:00:00.000Z","height":1.52,"weight":65,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":260432807,"name":"Jacob Gibb","nationality":"USA","sex":"male","date_of_birth":"1976-02-06T00:00:00.000Z","height":2.01,"weight":95,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":682128898,"name":"Jacob Hansford","nationality":"AUS","sex":"male","date_of_birth":"1995-09-28T00:00:00.000Z","height":1.82,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":6706851,"name":"Jacob Heidtmann","nationality":"GER","sex":"male","date_of_birth":"1994-11-06T00:00:00.000Z","height":1.95,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":194290880,"name":"Jacob Kiplimo","nationality":"UGA","sex":"male","date_of_birth":"2000-11-14T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":561768430,"name":"Jacob Larsen","nationality":"DEN","sex":"male","date_of_birth":"1988-06-13T00:00:00.000Z","height":1.82,"weight":73,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":199313141,"name":"Jacob Maliekal","nationality":"RSA","sex":"male","date_of_birth":"1991-01-01T00:00:00.000Z","height":1.72,"weight":72,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":888054041,"name":"Jacob Pebley","nationality":"USA","sex":"male","date_of_birth":"1993-09-17T00:00:00.000Z","height":1.94,"weight":86,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":807399236,"name":"Jacob Rozani","nationality":"RSA","sex":"male","date_of_birth":"1988-01-24T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":934183083,"name":"Jacob Saunders","nationality":"CAN","sex":"male","date_of_birth":"1992-04-15T00:00:00.000Z","height":1.76,"weight":64,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":24055098,"name":"Jacob Stockmann","nationality":"NED","sex":"male","date_of_birth":"1984-07-24T00:00:00.000Z","height":1.93,"weight":80,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":176550067,"name":"Jacob Une Larsson","nationality":"SWE","sex":"male","date_of_birth":"1994-04-08T00:00:00.000Z","height":1.78,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":65437843,"name":"Jacob Whetton","nationality":"AUS","sex":"male","date_of_birth":"1991-06-15T00:00:00.000Z","height":1.72,"weight":64,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":412344813,"name":"Jacqueline Simoneau","nationality":"CAN","sex":"female","date_of_birth":"1996-09-29T00:00:00.000Z","height":1.65,"weight":51,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":761781098,"name":"Jade Barbosa","nationality":"BRA","sex":"female","date_of_birth":"1991-07-01T00:00:00.000Z","height":1.51,"weight":45,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":401122423,"name":"Jade Howard","nationality":"ZAM","sex":"female","date_of_birth":"1995-04-03T00:00:00.000Z","height":1.82,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":789368570,"name":"Jade Jones","nationality":"GBR","sex":"female","date_of_birth":"1993-03-21T00:00:00.000Z","height":1.67,"weight":57,"sport":"taekwondo","gold":1,"silver":0,"bronze":0,"info":null},{"id":899823544,"name":"Jade Lally","nationality":"GBR","sex":"female","date_of_birth":"1987-03-30T00:00:00.000Z","height":1.82,"weight":88,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":506534023,"name":"Jade Uru","nationality":"NZL","sex":"male","date_of_birth":"1987-10-20T00:00:00.000Z","height":1.89,"weight":88,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":142475326,"name":"Jade le Pesq","nationality":"FRA","sex":"female","date_of_birth":"1992-10-12T00:00:00.000Z","height":1.63,"weight":63,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":609790430,"name":"Jaeyeong Lee","nationality":"KOR","sex":"female","date_of_birth":"1996-10-15T00:00:00.000Z","height":1.78,"weight":66,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":732777985,"name":"Jagdish Gill","nationality":"CAN","sex":"male","date_of_birth":"1984-12-05T00:00:00.000Z","height":1.75,"weight":77,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":452242951,"name":"Jaheel Hyde","nationality":"JAM","sex":"male","date_of_birth":"1997-02-02T00:00:00.000Z","height":1.8,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":355490411,"name":"Jahir Ocampo","nationality":"MEX","sex":"male","date_of_birth":"1990-01-12T00:00:00.000Z","height":1.78,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":519260746,"name":"Jahvid Best","nationality":"LCA","sex":"male","date_of_birth":"1989-01-30T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":300681433,"name":"Jailma de Lima","nationality":"BRA","sex":"female","date_of_birth":"1986-12-31T00:00:00.000Z","height":1.74,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":863481965,"name":"Jaime Nielsen","nationality":"NZL","sex":"female","date_of_birth":"1985-09-03T00:00:00.000Z","height":1.77,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":859145173,"name":"Jaime Quiyuch","nationality":"GUA","sex":"male","date_of_birth":"1988-04-24T00:00:00.000Z","height":1.78,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":200267269,"name":"Jaime Ryan","nationality":"AUS","sex":"female","date_of_birth":"1994-05-08T00:00:00.000Z","height":1.75,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":524949052,"name":"Jaime Yusept Espinal","nationality":"PUR","sex":"male","date_of_birth":"1984-10-14T00:00:00.000Z","height":1.78,"weight":86,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":467840408,"name":"Jaimee Lovett","nationality":"NZL","sex":"female","date_of_birth":"1988-05-05T00:00:00.000Z","height":1.67,"weight":83,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":93687880,"name":"Jaisha Orchatteri","nationality":"IND","sex":"female","date_of_birth":"1983-05-23T00:00:00.000Z","height":1.54,"weight":43,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":47754234,"name":"Jak Ali Harvey","nationality":"TUR","sex":"male","date_of_birth":"1989-05-04T00:00:00.000Z","height":1.83,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":280957264,"name":"Jake Bensted","nationality":"AUS","sex":"male","date_of_birth":"1994-03-04T00:00:00.000Z","height":1.73,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":507019886,"name":"Jake Kaminski","nationality":"USA","sex":"male","date_of_birth":"1988-08-11T00:00:00.000Z","height":1.78,"weight":70,"sport":"archery","gold":0,"silver":1,"bronze":0,"info":null},{"id":191443309,"name":"Jake Lilley","nationality":"AUS","sex":"male","date_of_birth":"1993-07-20T00:00:00.000Z","height":2.04,"weight":98,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":742672786,"name":"Jake Milton Green","nationality":"RSA","sex":"male","date_of_birth":"1994-03-30T00:00:00.000Z","height":1.92,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":919219233,"name":"Jake Packard","nationality":"AUS","sex":"male","date_of_birth":"1994-06-20T00:00:00.000Z","height":1.95,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":833814609,"name":"Jakob Fuglsang","nationality":"DEN","sex":"male","date_of_birth":"1985-03-22T00:00:00.000Z","height":1.83,"weight":69,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":248905348,"name":"Jakob Makarashvili","nationality":"GEO","sex":"male","date_of_birth":"1985-12-28T00:00:00.000Z","height":1.74,"weight":80,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":391045084,"name":"Jakov Gojun","nationality":"CRO","sex":"male","date_of_birth":"1986-04-18T00:00:00.000Z","height":2.03,"weight":112,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":654667926,"name":"Jakson Vicent Monasterio","nationality":"VEN","sex":"male","date_of_birth":"1991-12-31T00:00:00.000Z","height":null,"weight":null,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":673012015,"name":"Jakub Dyjas","nationality":"POL","sex":"male","date_of_birth":"1995-10-09T00:00:00.000Z","height":1.83,"weight":54,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":215360776,"name":"Jakub Grigar","nationality":"SVK","sex":"male","date_of_birth":"1997-04-27T00:00:00.000Z","height":1.83,"weight":81,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":63505242,"name":"Jakub Holusa","nationality":"CZE","sex":"male","date_of_birth":"1988-02-20T00:00:00.000Z","height":1.83,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":711962459,"name":"Jakub Jelonek","nationality":"POL","sex":"male","date_of_birth":"1985-07-07T00:00:00.000Z","height":1.85,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":566482718,"name":"Jakub Krzewina","nationality":"POL","sex":"male","date_of_birth":"1989-10-10T00:00:00.000Z","height":1.82,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":384653943,"name":"Jakub Podrazil","nationality":"CZE","sex":"male","date_of_birth":"1992-01-09T00:00:00.000Z","height":1.99,"weight":100,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":141908387,"name":"Jakub Vadlejch","nationality":"CZE","sex":"male","date_of_birth":"1990-10-10T00:00:00.000Z","height":1.91,"weight":93,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":719778285,"name":"Jale Dreloa","nationality":"FIJ","sex":"male","date_of_birth":"1995-04-21T00:00:00.000Z","height":1.7,"weight":88,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":118360942,"name":"Jamal Wilson","nationality":"BAH","sex":"male","date_of_birth":"1988-09-01T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":741666206,"name":"Jamaladdin Magomedov","nationality":"AZE","sex":"male","date_of_birth":"1989-03-14T00:00:00.000Z","height":1.86,"weight":125,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":190769127,"name":"James Adede","nationality":"KEN","sex":"male","date_of_birth":"1986-10-31T00:00:00.000Z","height":1.62,"weight":93,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":476158406,"name":"James Connor","nationality":"AUS","sex":"male","date_of_birth":"1995-05-05T00:00:00.000Z","height":1.83,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":384973651,"name":"James Cooke","nationality":"GBR","sex":"male","date_of_birth":"1991-03-03T00:00:00.000Z","height":1.85,"weight":74,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":805860316,"name":"James Coughlan","nationality":"NZL","sex":"male","date_of_birth":"1990-08-28T00:00:00.000Z","height":1.83,"weight":78,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":595946076,"name":"James Dasaolu","nationality":"GBR","sex":"male","date_of_birth":"1987-09-05T00:00:00.000Z","height":1.87,"weight":88,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":425329772,"name":"James Davies","nationality":"GBR","sex":"male","date_of_birth":"1990-10-25T00:00:00.000Z","height":1.81,"weight":98,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":871780908,"name":"James Ellington","nationality":"GBR","sex":"male","date_of_birth":"1985-09-06T00:00:00.000Z","height":1.79,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":927707277,"name":"James Feigen","nationality":"USA","sex":"male","date_of_birth":"1989-09-26T00:00:00.000Z","height":1.96,"weight":97,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":924475457,"name":"James Guy","nationality":"GBR","sex":"male","date_of_birth":"1995-11-26T00:00:00.000Z","height":1.88,"weight":84,"sport":"aquatics","gold":0,"silver":2,"bronze":0,"info":null},{"id":884248663,"name":"James Hunter","nationality":"NZL","sex":"male","date_of_birth":"1992-08-24T00:00:00.000Z","height":1.85,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":835838469,"name":"James Lassche","nationality":"NZL","sex":"male","date_of_birth":"1989-08-31T00:00:00.000Z","height":1.91,"weight":71,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":311569529,"name":"James Magnussen","nationality":"AUS","sex":"male","date_of_birth":"1991-04-11T00:00:00.000Z","height":1.97,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":966013251,"name":"James McRAE","nationality":"AUS","sex":"male","date_of_birth":"1987-06-27T00:00:00.000Z","height":1.93,"weight":93,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":487094967,"name":"James Nyang Chiengjiek","nationality":"ROT","sex":"male","date_of_birth":"1992-03-02T00:00:00.000Z","height":1.79,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":451338958,"name":"James Paterson-Robinson","nationality":"AUS","sex":"male","date_of_birth":"1978-09-29T00:00:00.000Z","height":1.7,"weight":72,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":964836144,"name":"James Reid","nationality":"RSA","sex":"male","date_of_birth":"1992-08-01T00:00:00.000Z","height":1.8,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":252455377,"name":"James Rendon","nationality":"COL","sex":"male","date_of_birth":"1985-04-07T00:00:00.000Z","height":1.7,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":950874222,"name":"James Roberts","nationality":"AUS","sex":"male","date_of_birth":"1991-04-11T00:00:00.000Z","height":1.94,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":942584385,"name":"James Rodwell","nationality":"GBR","sex":"male","date_of_birth":"1984-08-23T00:00:00.000Z","height":1.95,"weight":105,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":690378941,"name":"James Stannard","nationality":"AUS","sex":"male","date_of_birth":"1983-02-21T00:00:00.000Z","height":1.73,"weight":82,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":538679620,"name":"James Stanton-French","nationality":"AUS","sex":"male","date_of_birth":"1983-07-21T00:00:00.000Z","height":2,"weight":93,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":844650938,"name":"James Thompson","nationality":"RSA","sex":"male","date_of_birth":"1986-11-18T00:00:00.000Z","height":1.82,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":"At London 2012, James Thompson gave South Africa its only Olympic gold in rowing, in the coxless four. He started in the sport at the age of 14 and, three years later, took bronze in the junior world championships - his first international competition."},{"id":291252183,"name":"James Willett","nationality":"AUS","sex":"male","date_of_birth":"1995-12-23T00:00:00.000Z","height":1.86,"weight":88,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":139948765,"name":"James-Andrew Davis","nationality":"GBR","sex":"male","date_of_birth":"1991-07-03T00:00:00.000Z","height":1.95,"weight":98,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":745045178,"name":"Jamial Rolle","nationality":"BAH","sex":"male","date_of_birth":"1980-08-16T00:00:00.000Z","height":1.74,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":219901271,"name":"Jamie Broder","nationality":"CAN","sex":"female","date_of_birth":"1985-06-08T00:00:00.000Z","height":1.72,"weight":64,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":690805480,"name":"Jamie Dwyer","nationality":"AUS","sex":"male","date_of_birth":"1979-03-12T00:00:00.000Z","height":1.72,"weight":68,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":116149715,"name":"Jamie Murray","nationality":"GBR","sex":"male","date_of_birth":"1986-02-13T00:00:00.000Z","height":1.9,"weight":84,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":742530788,"name":"Jamie Subandhi","nationality":"USA","sex":"female","date_of_birth":"1989-12-15T00:00:00.000Z","height":1.63,"weight":58,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":531741106,"name":"Jamila Lunkuse","nationality":"UGA","sex":"female","date_of_birth":"1997-06-01T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":892658314,"name":"Jamila Sanmoogan","nationality":"GUY","sex":"female","date_of_birth":"1997-03-20T00:00:00.000Z","height":1.43,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":153070028,"name":"Jamile Samuel","nationality":"NED","sex":"female","date_of_birth":"1992-04-24T00:00:00.000Z","height":1.68,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":48596156,"name":"Jamina Roberts","nationality":"SWE","sex":"female","date_of_birth":"1990-05-28T00:00:00.000Z","height":1.76,"weight":67,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":621534555,"name":"Jan Barta","nationality":"CZE","sex":"male","date_of_birth":"1984-12-07T00:00:00.000Z","height":1.84,"weight":75,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":551500091,"name":"Jan Benzien","nationality":"GER","sex":"male","date_of_birth":"1982-07-22T00:00:00.000Z","height":1.8,"weight":75,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":44393712,"name":"Jan Kudlicka","nationality":"CZE","sex":"male","date_of_birth":"1988-04-29T00:00:00.000Z","height":1.84,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":143054304,"name":"Jan Kuf","nationality":"CZE","sex":"male","date_of_birth":"1991-05-11T00:00:00.000Z","height":1.86,"weight":78,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":192330093,"name":"Jan Lochbihler","nationality":"SUI","sex":"male","date_of_birth":"1992-03-03T00:00:00.000Z","height":1.87,"weight":92,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":958304454,"name":"Jan Micka","nationality":"CZE","sex":"male","date_of_birth":"1995-01-15T00:00:00.000Z","height":1.83,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":809864436,"name":"Jan O Jorgensen","nationality":"DEN","sex":"male","date_of_birth":"1987-12-31T00:00:00.000Z","height":1.84,"weight":76,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":33776196,"name":"Jan Polanc","nationality":"SLO","sex":"male","date_of_birth":"1992-05-06T00:00:00.000Z","height":1.72,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":860104103,"name":"Jan Skarnitzl","nationality":"CZE","sex":"male","date_of_birth":"1986-07-11T00:00:00.000Z","height":1.79,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":973675297,"name":"Jan Sterba","nationality":"CZE","sex":"male","date_of_birth":"1981-06-01T00:00:00.000Z","height":1.83,"weight":85,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":798223501,"name":"Jan Switkowski","nationality":"POL","sex":"male","date_of_birth":"1994-01-23T00:00:00.000Z","height":1.93,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":810723660,"name":"Jan Vandrey","nationality":"GER","sex":"male","date_of_birth":"1991-12-11T00:00:00.000Z","height":1.88,"weight":88,"sport":"canoe","gold":1,"silver":0,"bronze":0,"info":null},{"id":283291174,"name":"Jan Vetesnik","nationality":"CZE","sex":"male","date_of_birth":"1984-03-05T00:00:00.000Z","height":1.82,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":283817717,"name":"Jan-Lennard Struff","nationality":"GER","sex":"male","date_of_birth":"1990-04-25T00:00:00.000Z","height":1.96,"weight":91,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":591169958,"name":"Jan-Philip Glania","nationality":"GER","sex":"male","date_of_birth":"1988-11-08T00:00:00.000Z","height":1.94,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":726313430,"name":"Jan-Willem van Schip","nationality":"NED","sex":"male","date_of_birth":"1994-08-20T00:00:00.000Z","height":1.94,"weight":83,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":918569259,"name":"Jana Beckmann","nationality":"GER","sex":"female","date_of_birth":"1983-05-02T00:00:00.000Z","height":1.7,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":87919102,"name":"Jana Berezko-Marggrander","nationality":"GER","sex":"female","date_of_birth":"1995-10-17T00:00:00.000Z","height":1.69,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":378489397,"name":"Jana Dukatova","nationality":"SVK","sex":"female","date_of_birth":"1983-06-13T00:00:00.000Z","height":1.8,"weight":64,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":625488850,"name":"Jana Labathova","nationality":"SVK","sex":"female","date_of_birth":"1988-09-27T00:00:00.000Z","height":1.62,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":117098951,"name":"Jana Pechanova","nationality":"CZE","sex":"female","date_of_birth":"1981-03-03T00:00:00.000Z","height":1.7,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":839957321,"name":"Jana Teschke","nationality":"GER","sex":"female","date_of_birth":"1990-09-22T00:00:00.000Z","height":1.68,"weight":56,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":957642024,"name":"Jana Veldakova","nationality":"SVK","sex":"female","date_of_birth":"1981-06-03T00:00:00.000Z","height":1.78,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":947261546,"name":"Janay Deloach","nationality":"USA","sex":"female","date_of_birth":"1985-10-12T00:00:00.000Z","height":1.66,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":481441857,"name":"Jandi Kim","nationality":"KOR","sex":"female","date_of_birth":"1991-06-15T00:00:00.000Z","height":1.63,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":40347261,"name":"Jane Claxton","nationality":"AUS","sex":"female","date_of_birth":"1992-10-26T00:00:00.000Z","height":1.69,"weight":60,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":748137388,"name":"Jane Vongvorachoti","nationality":"THA","sex":"female","date_of_birth":"1984-01-07T00:00:00.000Z","height":1.66,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":896595402,"name":"Janeil Bellille","nationality":"TTO","sex":"female","date_of_birth":"1989-06-18T00:00:00.000Z","height":1.63,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":71008427,"name":"Janet Amponsah","nationality":"GHA","sex":"female","date_of_birth":"1993-04-12T00:00:00.000Z","height":1.71,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":910286492,"name":"Janet Okelo","nationality":"KEN","sex":"female","date_of_birth":"1992-05-05T00:00:00.000Z","height":1.72,"weight":60,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":900614005,"name":"Janet Owino","nationality":"KEN","sex":"female","date_of_birth":"1985-08-08T00:00:00.000Z","height":1.65,"weight":65,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":229768260,"name":"Janete Viegas dos Santos","nationality":"ANG","sex":"female","date_of_birth":"1991-06-10T00:00:00.000Z","height":1.75,"weight":68,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":817731370,"name":"Jangmi Kim","nationality":"KOR","sex":"female","date_of_birth":"1992-09-25T00:00:00.000Z","height":1.6,"weight":53,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":629610747,"name":"Janice Teixeira","nationality":"BRA","sex":"female","date_of_birth":"1962-05-20T00:00:00.000Z","height":1.7,"weight":73,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":633346217,"name":"Janieve Russell","nationality":"JAM","sex":"female","date_of_birth":"1993-11-14T00:00:00.000Z","height":1.75,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":192489040,"name":"Janika Sprunger","nationality":"SUI","sex":"female","date_of_birth":"1987-05-29T00:00:00.000Z","height":1.68,"weight":54,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":497079797,"name":"Janine Beckie","nationality":"CAN","sex":"female","date_of_birth":"1994-08-20T00:00:00.000Z","height":1.73,"weight":63,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":20326038,"name":"Janine van Wyk","nationality":"RSA","sex":"female","date_of_birth":"1987-04-17T00:00:00.000Z","height":1.63,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":882695911,"name":"Janis Smedins","nationality":"LAT","sex":"male","date_of_birth":"1987-07-31T00:00:00.000Z","height":1.91,"weight":89,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":"Alongside Martins Plavins, Latvia's Janis Smedins surprised at the beach volleyball tournament in London 2012 by winning a bronze medal. This left-handed defender was also a world circuit champion in 2013 and 2014, playing with Aleksandrs Samoilovs."},{"id":523195798,"name":"Janja Segel","nationality":"SLO","sex":"female","date_of_birth":"2001-06-17T00:00:00.000Z","height":1.77,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":974901356,"name":"Jannah Sonnenschein","nationality":"MOZ","sex":"female","date_of_birth":"1996-04-24T00:00:00.000Z","height":1.68,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":141611680,"name":"Janne Muller-Wieland","nationality":"GER","sex":"female","date_of_birth":"1986-10-28T00:00:00.000Z","height":1.75,"weight":69,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":513737062,"name":"Jannick Green Krejberg","nationality":"DEN","sex":"male","date_of_birth":"1988-09-29T00:00:00.000Z","height":1.95,"weight":95,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":18696294,"name":"Jannik Huth","nationality":"GER","sex":"male","date_of_birth":"1994-04-15T00:00:00.000Z","height":1.85,"weight":80,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":900686372,"name":"Jantine van der Vlist","nationality":"NED","sex":"female","date_of_birth":"1985-10-30T00:00:00.000Z","height":1.82,"weight":74,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":742091391,"name":"Jaouad Achab","nationality":"BEL","sex":"male","date_of_birth":"1992-08-20T00:00:00.000Z","height":1.75,"weight":64,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":930205655,"name":"Jaqueline Antonia Ferreira","nationality":"BRA","sex":"female","date_of_birth":"1987-03-05T00:00:00.000Z","height":1.65,"weight":75,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":802446612,"name":"Jaqueline Endres","nationality":"BRA","sex":"female","date_of_birth":"1983-12-31T00:00:00.000Z","height":1.86,"weight":71,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":565862528,"name":"Jared Jarvis","nationality":"ANT","sex":"male","date_of_birth":"1994-08-29T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":541393183,"name":"Jared Tallent","nationality":"AUS","sex":"male","date_of_birth":"1984-10-17T00:00:00.000Z","height":1.78,"weight":58,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":586477204,"name":"Jared Ward","nationality":"USA","sex":"male","date_of_birth":"1988-09-09T00:00:00.000Z","height":1.78,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":258997468,"name":"Jarimit Leonor Weffer Guanipa","nationality":"VEN","sex":"female","date_of_birth":"1985-11-03T00:00:00.000Z","height":1.58,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":35220711,"name":"Jarkko Kinnunen","nationality":"FIN","sex":"male","date_of_birth":"1984-01-19T00:00:00.000Z","height":1.88,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":148216352,"name":"Jarlan Junior Barrera Escalona","nationality":"COL","sex":"male","date_of_birth":"1995-09-16T00:00:00.000Z","height":1.71,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":797374623,"name":"Jarlinson Pantano Gomez","nationality":"COL","sex":"male","date_of_birth":"1988-11-19T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":100552265,"name":"Jaromir Jezek","nationality":"CZE","sex":"male","date_of_birth":"1986-11-13T00:00:00.000Z","height":1.8,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":598101856,"name":"Jaroslav Baba","nationality":"CZE","sex":"male","date_of_birth":"1984-09-02T00:00:00.000Z","height":1.99,"weight":86,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":167236182,"name":"Jaroslav Kulhavy","nationality":"CZE","sex":"male","date_of_birth":"1985-01-08T00:00:00.000Z","height":1.88,"weight":77,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":727556594,"name":"Jaroslav Radon","nationality":"CZE","sex":"male","date_of_birth":"1986-09-03T00:00:00.000Z","height":1.85,"weight":85,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":226767205,"name":"Jarred Crous","nationality":"RSA","sex":"male","date_of_birth":"1996-06-27T00:00:00.000Z","height":1.87,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":573245976,"name":"Jarrin Solomon","nationality":"TTO","sex":"male","date_of_birth":"1986-01-11T00:00:00.000Z","height":1.65,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":357249315,"name":"Jarrion Lawson","nationality":"USA","sex":"male","date_of_birth":"1994-05-06T00:00:00.000Z","height":1.88,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":649163218,"name":"Jarrod Gilchrist","nationality":"AUS","sex":"male","date_of_birth":"1990-06-13T00:00:00.000Z","height":1.89,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":935549019,"name":"Jarrod Poort","nationality":"AUS","sex":"male","date_of_birth":"1994-10-31T00:00:00.000Z","height":1.85,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":977628785,"name":"Jarryd Dunn","nationality":"GBR","sex":"male","date_of_birth":"1992-01-30T00:00:00.000Z","height":1.84,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":891780988,"name":"Jaruwat Saensuk","nationality":"THA","sex":"male","date_of_birth":"1996-05-21T00:00:00.000Z","height":1.85,"weight":76,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":164713165,"name":"Jasa Veremalua","nationality":"FIJ","sex":"male","date_of_birth":"1988-05-29T00:00:00.000Z","height":1.95,"weight":98,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":489559768,"name":"Jasmin Glaesser","nationality":"CAN","sex":"female","date_of_birth":"1992-07-08T00:00:00.000Z","height":1.67,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":63237381,"name":"Jasmin Kuelbs","nationality":"GER","sex":"female","date_of_birth":"1991-11-07T00:00:00.000Z","height":1.78,"weight":127,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":899306265,"name":"Jasmina Jankovic","nationality":"NED","sex":"female","date_of_birth":"1986-12-06T00:00:00.000Z","height":1.7,"weight":77,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":742296215,"name":"Jasmine Alkhaldi","nationality":"PHI","sex":"female","date_of_birth":"1993-06-20T00:00:00.000Z","height":1.8,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":245188087,"name":"Jasmine Camacho-Quinn","nationality":"PUR","sex":"female","date_of_birth":"1996-09-21T00:00:00.000Z","height":1.8,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":851518120,"name":"Jasmine Joyce","nationality":"GBR","sex":"female","date_of_birth":"1995-10-09T00:00:00.000Z","height":1.63,"weight":55,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":481452678,"name":"Jasmine Mian","nationality":"CAN","sex":"female","date_of_birth":"1989-12-31T00:00:00.000Z","height":1.55,"weight":48,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":690689063,"name":"Jasmine Pereira","nationality":"NZL","sex":"female","date_of_birth":"1996-07-20T00:00:00.000Z","height":1.68,"weight":66,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":963694537,"name":"Jason Block","nationality":"CAN","sex":"male","date_of_birth":"1989-12-28T00:00:00.000Z","height":1.82,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":883244567,"name":"Jason Burnett","nationality":"CAN","sex":"male","date_of_birth":"1986-12-16T00:00:00.000Z","height":1.65,"weight":60,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":42049937,"name":"Jason Eric Whateley","nationality":"AUS","sex":"male","date_of_birth":"1990-11-18T00:00:00.000Z","height":1.96,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":441111357,"name":"Jason Kenny","nationality":"GBR","sex":"male","date_of_birth":"1988-03-23T00:00:00.000Z","height":1.78,"weight":81,"sport":"cycling","gold":3,"silver":0,"bronze":0,"info":null},{"id":316427261,"name":"Jason Osborne","nationality":"GER","sex":"male","date_of_birth":"1994-03-20T00:00:00.000Z","height":1.78,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":452497047,"name":"Jason Pryor","nationality":"USA","sex":"male","date_of_birth":"1987-09-26T00:00:00.000Z","height":1.76,"weight":79,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":744419570,"name":"Jason Rogers","nationality":"SKN","sex":"male","date_of_birth":"1991-08-31T00:00:00.000Z","height":1.73,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":789226204,"name":"Jason Saunders","nationality":"NZL","sex":"male","date_of_birth":"1990-11-22T00:00:00.000Z","height":1.88,"weight":78,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":572050627,"name":"Jason Waterhouse","nationality":"AUS","sex":"male","date_of_birth":"1991-11-08T00:00:00.000Z","height":1.85,"weight":75,"sport":"sailing","gold":0,"silver":1,"bronze":0,"info":null},{"id":687929140,"name":"Jason Wilson","nationality":"BAR","sex":"male","date_of_birth":"1990-10-31T00:00:00.000Z","height":1.8,"weight":68,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":242349264,"name":"Jaspar Woon Chai Yu","nationality":"BRU","sex":"male","date_of_birth":"1988-11-14T00:00:00.000Z","height":1.67,"weight":60,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":430283478,"name":"Jasper Aerents","nationality":"BEL","sex":"male","date_of_birth":"1992-12-18T00:00:00.000Z","height":1.91,"weight":86,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":662058490,"name":"Jasper De Buyst","nationality":"BEL","sex":"male","date_of_birth":"1993-11-24T00:00:00.000Z","height":1.78,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":340877377,"name":"Jasper Lefevere","nationality":"BEL","sex":"male","date_of_birth":"1988-07-13T00:00:00.000Z","height":1.71,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":19724524,"name":"Javad Mahjoub","nationality":"IRI","sex":"male","date_of_birth":"1991-05-26T00:00:00.000Z","height":1.86,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":850918376,"name":"Javere Bell","nationality":"JAM","sex":"male","date_of_birth":"1992-09-20T00:00:00.000Z","height":1.83,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":532207877,"name":"Javid Chalabiyev","nationality":"AZE","sex":"male","date_of_birth":"1992-05-17T00:00:00.000Z","height":1.7,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":228472408,"name":"Javid Hamzatau","nationality":"BLR","sex":"male","date_of_birth":"1989-12-27T00:00:00.000Z","height":1.76,"weight":91,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":896286523,"name":"Javier Acevedo","nationality":"CAN","sex":"male","date_of_birth":"1998-01-28T00:00:00.000Z","height":1.82,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":581496209,"name":"Javier Carrion","nationality":"ESP","sex":"male","date_of_birth":"1990-11-09T00:00:00.000Z","height":1.88,"weight":100,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":389108533,"name":"Javier Cienfuegos","nationality":"ESP","sex":"male","date_of_birth":"1990-07-15T00:00:00.000Z","height":1.87,"weight":110,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":439713366,"name":"Javier Cortina Lacerra","nationality":"CUB","sex":"male","date_of_birth":"1987-04-12T00:00:00.000Z","height":1.85,"weight":97,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":942940677,"name":"Javier Culson","nationality":"PUR","sex":"male","date_of_birth":"1984-07-25T00:00:00.000Z","height":2,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":340352113,"name":"Javier Garcia Gadea","nationality":"CRO","sex":"male","date_of_birth":"1984-01-05T00:00:00.000Z","height":1.98,"weight":92,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":760029563,"name":"Javier Hernanz Agueria","nationality":"ESP","sex":"male","date_of_birth":"1983-02-01T00:00:00.000Z","height":1.86,"weight":83,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":904572193,"name":"Javier Jimenez Scull","nationality":"CUB","sex":"male","date_of_birth":"1989-11-16T00:00:00.000Z","height":1.98,"weight":89,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":728027225,"name":"Javier Octavio Concepcion Rojas","nationality":"CUB","sex":"male","date_of_birth":"1997-12-27T00:00:00.000Z","height":2,"weight":84,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":834026891,"name":"Javier Rojas","nationality":"ARG","sex":"male","date_of_birth":"1991-04-15T00:00:00.000Z","height":1.88,"weight":81,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":23901411,"name":"Javon Francis","nationality":"JAM","sex":"male","date_of_birth":"1994-12-04T00:00:00.000Z","height":1.83,"weight":68,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":553955864,"name":"Jay Blankenau","nationality":"CAN","sex":"male","date_of_birth":"1989-09-27T00:00:00.000Z","height":1.94,"weight":94,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":570894983,"name":"Jay Litherland","nationality":"USA","sex":"male","date_of_birth":"1995-08-24T00:00:00.000Z","height":1.83,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":61075691,"name":"Jay Shi","nationality":"USA","sex":"male","date_of_birth":"1979-02-23T00:00:00.000Z","height":1.73,"weight":61,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":395224823,"name":"Jayme Mata","nationality":"ARU","sex":"male","date_of_birth":"1982-12-17T00:00:00.000Z","height":1.72,"weight":67,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":25728763,"name":"Jaysuma Saidy Ndure","nationality":"NOR","sex":"male","date_of_birth":"1984-01-01T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":350157840,"name":"Jazmin Sawyers","nationality":"GBR","sex":"female","date_of_birth":"1994-05-21T00:00:00.000Z","height":1.6,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":217440009,"name":"Jazz Carlin","nationality":"GBR","sex":"female","date_of_birth":"1990-09-17T00:00:00.000Z","height":1.76,"weight":62,"sport":"aquatics","gold":0,"silver":2,"bronze":0,"info":null},{"id":23042514,"name":"Jean Baptiste Bernaz","nationality":"FRA","sex":"male","date_of_birth":"1987-07-18T00:00:00.000Z","height":1.9,"weight":80,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":604309234,"name":"Jean Marie Okutu","nationality":"ESP","sex":"male","date_of_birth":"1988-12-17T00:00:00.000Z","height":1.78,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":344886355,"name":"Jean Paulo Fernandes Filho","nationality":"BRA","sex":"male","date_of_birth":"1995-10-26T00:00:00.000Z","height":null,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":82070854,"name":"Jean Pierre Renan Bourhis","nationality":"SEN","sex":"male","date_of_birth":"1995-03-29T00:00:00.000Z","height":1.78,"weight":73,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":472715886,"name":"Jean Quiquampoix","nationality":"FRA","sex":"male","date_of_birth":"1995-11-03T00:00:00.000Z","height":1.89,"weight":85,"sport":"shooting","gold":0,"silver":1,"bronze":0,"info":null},{"id":601724690,"name":"Jean-Charles Valladont","nationality":"FRA","sex":"male","date_of_birth":"1989-03-20T00:00:00.000Z","height":1.8,"weight":83,"sport":"archery","gold":0,"silver":1,"bronze":0,"info":null},{"id":250421057,"name":"Jean-Julien Rojer","nationality":"NED","sex":"male","date_of_birth":"1981-08-25T00:00:00.000Z","height":1.84,"weight":81,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":83700650,"name":"Jean-Luc Rasamoelina","nationality":"ANG","sex":"male","date_of_birth":"1989-10-04T00:00:00.000Z","height":1.8,"weight":77,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":464354011,"name":"Jean-Marc Gardette","nationality":"SEY","sex":"male","date_of_birth":"1984-07-04T00:00:00.000Z","height":1.69,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":858350003,"name":"Jean-Michel Lucenay","nationality":"FRA","sex":"male","date_of_birth":"1978-04-25T00:00:00.000Z","height":1.86,"weight":78,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":984646645,"name":"Jean-Paul Tony Helissey","nationality":"FRA","sex":"male","date_of_birth":"1990-03-28T00:00:00.000Z","height":1.77,"weight":77,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":376385376,"name":"Jeanelle Scheper","nationality":"LCA","sex":"female","date_of_birth":"1994-11-21T00:00:00.000Z","height":1.78,"weight":42,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":714090699,"name":"Jeanette Ottesen","nationality":"DEN","sex":"female","date_of_birth":"1987-12-30T00:00:00.000Z","height":1.8,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":317188820,"name":"Jeanine Assani Issouf","nationality":"FRA","sex":"female","date_of_birth":"1992-08-17T00:00:00.000Z","height":1.7,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":39856517,"name":"Jeanine Cicognini","nationality":"ITA","sex":"female","date_of_birth":"1986-11-14T00:00:00.000Z","height":1.7,"weight":73,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":437241883,"name":"Jeannine Gmelin","nationality":"SUI","sex":"female","date_of_birth":"1990-06-20T00:00:00.000Z","height":1.7,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":953949869,"name":"Jeemin Ha","nationality":"KOR","sex":"male","date_of_birth":"1989-03-21T00:00:00.000Z","height":1.86,"weight":83,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":555512079,"name":"Jeff Henderson","nationality":"USA","sex":"male","date_of_birth":"1989-02-19T00:00:00.000Z","height":1.83,"weight":85,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":553883529,"name":"Jeff Porter","nationality":"USA","sex":"male","date_of_birth":"1985-11-27T00:00:00.000Z","height":1.83,"weight":86,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":861092041,"name":"Jefferson Lerma","nationality":"COL","sex":"male","date_of_birth":"1994-10-25T00:00:00.000Z","height":1.82,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":989207170,"name":"Jefferson Milano","nationality":"VEN","sex":"male","date_of_birth":"1995-11-21T00:00:00.000Z","height":1.85,"weight":85,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":488880132,"name":"Jefferson Santos Pereira","nationality":"QAT","sex":"male","date_of_birth":"1989-06-08T00:00:00.000Z","height":1.8,"weight":86,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":246975227,"name":"Jeffery Gibson","nationality":"BAH","sex":"male","date_of_birth":"1990-08-15T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":470772822,"name":"Jeffrey Hoogland","nationality":"NED","sex":"male","date_of_birth":"1993-03-16T00:00:00.000Z","height":1.85,"weight":97,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":936447868,"name":"Jeffrey Julmis","nationality":"HAI","sex":"male","date_of_birth":"1987-09-30T00:00:00.000Z","height":1.85,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":984151393,"name":"Jeffrey Riseley","nationality":"AUS","sex":"male","date_of_birth":"1986-11-11T00:00:00.000Z","height":1.92,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":189507792,"name":"Jeffrey Wammes","nationality":"NED","sex":"male","date_of_birth":"1987-04-24T00:00:00.000Z","height":1.68,"weight":66,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":870523852,"name":"Jehue Gordon","nationality":"TTO","sex":"male","date_of_birth":"1991-12-15T00:00:00.000Z","height":1.88,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":71774163,"name":"Jelena Jankovic","nationality":"SRB","sex":"female","date_of_birth":"1985-02-28T00:00:00.000Z","height":1.75,"weight":65,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":264088273,"name":"Jelena Milovanovic","nationality":"SRB","sex":"female","date_of_birth":"1989-04-28T00:00:00.000Z","height":1.9,"weight":84,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":225359768,"name":"Jelena Nikolic","nationality":"SRB","sex":"female","date_of_birth":"1982-04-13T00:00:00.000Z","height":1.94,"weight":79,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":893813052,"name":"Jelena Ostapenko","nationality":"LAT","sex":"female","date_of_birth":"1997-06-08T00:00:00.000Z","height":1.78,"weight":68,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":987915621,"name":"Jelena Prokopcuka","nationality":"LAT","sex":"female","date_of_birth":"1976-09-21T00:00:00.000Z","height":1.68,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":42938484,"name":"Jelle Geens","nationality":"BEL","sex":"male","date_of_birth":"1993-03-26T00:00:00.000Z","height":1.72,"weight":61,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":763826075,"name":"Jelle van Gorkom","nationality":"NED","sex":"male","date_of_birth":"1991-01-05T00:00:00.000Z","height":1.87,"weight":93,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":990787231,"name":"Jemima Jelagat Sumgong","nationality":"KEN","sex":"female","date_of_birth":"1984-12-21T00:00:00.000Z","height":1.6,"weight":45,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":784252790,"name":"Jena Hansen","nationality":"DEN","sex":"female","date_of_birth":"1988-12-10T00:00:00.000Z","height":1.66,"weight":60,"sport":"sailing","gold":0,"silver":0,"bronze":1,"info":null},{"id":488021170,"name":"Jenia Grebennikov","nationality":"FRA","sex":"male","date_of_birth":"1990-08-13T00:00:00.000Z","height":1.88,"weight":85,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":247726114,"name":"Jenly Wini","nationality":"SOL","sex":"female","date_of_birth":"1983-06-09T00:00:00.000Z","height":1.65,"weight":58,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":617821916,"name":"Jenna Laukkanen","nationality":"FIN","sex":"female","date_of_birth":"1995-03-02T00:00:00.000Z","height":1.82,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":898091953,"name":"Jenna Prandini","nationality":"USA","sex":"female","date_of_birth":"1992-11-20T00:00:00.000Z","height":1.73,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":499225934,"name":"Jennie Johansson","nationality":"SWE","sex":"female","date_of_birth":"1988-06-15T00:00:00.000Z","height":1.88,"weight":71,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":970609954,"name":"Jennifer Abel","nationality":"CAN","sex":"female","date_of_birth":"1991-08-23T00:00:00.000Z","height":1.6,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":385452766,"name":"Jennifer Cesar","nationality":"VEN","sex":"female","date_of_birth":"1989-05-26T00:00:00.000Z","height":1.59,"weight":57,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":188078227,"name":"Jennifer Chieng","nationality":"FSM","sex":"female","date_of_birth":"1986-04-29T00:00:00.000Z","height":1.61,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":622375220,"name":"Jennifer Cleary","nationality":"AUS","sex":"female","date_of_birth":"1993-06-22T00:00:00.000Z","height":1.75,"weight":71,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":657843784,"name":"Jennifer Dahlgren","nationality":"ARG","sex":"female","date_of_birth":"1984-04-21T00:00:00.000Z","height":1.8,"weight":110,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":117886185,"name":"Jennifer Frank Casanas","nationality":"ESP","sex":"male","date_of_birth":"1978-10-18T00:00:00.000Z","height":1.87,"weight":117,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":393564226,"name":"Jennifer Galais","nationality":"FRA","sex":"female","date_of_birth":"1992-03-07T00:00:00.000Z","height":1.69,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":335752581,"name":"Jennifer Hens","nationality":"AUS","sex":"female","date_of_birth":"1986-08-01T00:00:00.000Z","height":1.74,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":74441554,"name":"Jennifer Kish","nationality":"CAN","sex":"female","date_of_birth":"1988-07-07T00:00:00.000Z","height":1.72,"weight":73,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":225406139,"name":"Jennifer Madu","nationality":"NGR","sex":"female","date_of_birth":"1994-09-23T00:00:00.000Z","height":1.68,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":729488450,"name":"Jennifer Martins","nationality":"CAN","sex":"female","date_of_birth":"1989-01-31T00:00:00.000Z","height":1.79,"weight":76,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":220670322,"name":"Jennifer McIntosh","nationality":"GBR","sex":"female","date_of_birth":"1991-06-17T00:00:00.000Z","height":1.75,"weight":80,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":408612404,"name":"Jennifer Oeser","nationality":"GER","sex":"female","date_of_birth":"1983-11-29T00:00:00.000Z","height":1.75,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":500359548,"name":"Jennifer Simpson","nationality":"USA","sex":"female","date_of_birth":"1986-08-23T00:00:00.000Z","height":1.66,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":626745836,"name":"Jennifer Suhr","nationality":"USA","sex":"female","date_of_birth":"1982-02-05T00:00:00.000Z","height":1.83,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":626532715,"name":"Jennifer Troncy","nationality":"FRA","sex":"female","date_of_birth":"1986-01-26T00:00:00.000Z","height":1.57,"weight":58,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":871842382,"name":"Jennifer Valente","nationality":"USA","sex":"female","date_of_birth":"1994-12-24T00:00:00.000Z","height":1.76,"weight":74,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":868014010,"name":"Jennifer Wenth","nationality":"AUT","sex":"female","date_of_birth":"1991-07-24T00:00:00.000Z","height":1.66,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":331294014,"name":"Jenny Alm","nationality":"SWE","sex":"female","date_of_birth":"1989-04-10T00:00:00.000Z","height":1.84,"weight":80,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":159950160,"name":"Jenny Blundell","nationality":"AUS","sex":"female","date_of_birth":"1994-05-09T00:00:00.000Z","height":1.63,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":597803357,"name":"Jenny Elbe","nationality":"GER","sex":"female","date_of_birth":"1990-04-18T00:00:00.000Z","height":1.8,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":596979059,"name":"Jenny Lyvette Arthur","nationality":"USA","sex":"female","date_of_birth":"1993-12-11T00:00:00.000Z","height":1.66,"weight":75,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":624049012,"name":"Jenny Mensing","nationality":"GER","sex":"female","date_of_birth":"1986-02-26T00:00:00.000Z","height":1.83,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":87849675,"name":"Jenny Rissveds","nationality":"SWE","sex":"female","date_of_birth":"1994-06-06T00:00:00.000Z","height":1.65,"weight":55,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":754902821,"name":"Jens Jonsson","nationality":"DEN","sex":"male","date_of_birth":"1993-01-10T00:00:00.000Z","height":1.84,"weight":78,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":229792766,"name":"Jens Schuermans","nationality":"BEL","sex":"male","date_of_birth":"1993-02-13T00:00:00.000Z","height":1.75,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":953566525,"name":"Jeong Eun Lee","nationality":"KOR","sex":"female","date_of_birth":"1994-09-13T00:00:00.000Z","height":1.53,"weight":40,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":188621072,"name":"Jeongah Park","nationality":"KOR","sex":"female","date_of_birth":"1993-03-26T00:00:00.000Z","height":1.86,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":23908007,"name":"Jeongsik Won","nationality":"KOR","sex":"male","date_of_birth":"1990-12-09T00:00:00.000Z","height":1.63,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":981837262,"name":"Jeppe Hojbjerg","nationality":"DEN","sex":"male","date_of_birth":"1995-04-30T00:00:00.000Z","height":1.95,"weight":95,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":974287219,"name":"Jereem Richards","nationality":"TTO","sex":"male","date_of_birth":"1994-01-13T00:00:00.000Z","height":1.89,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":787131282,"name":"Jeremie Azou","nationality":"FRA","sex":"male","date_of_birth":"1989-04-02T00:00:00.000Z","height":1.78,"weight":71,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":464988921,"name":"Jeremie Mion","nationality":"FRA","sex":"male","date_of_birth":"1989-07-05T00:00:00.000Z","height":1.87,"weight":74,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":841582256,"name":"Jeremy Aicardi","nationality":"FRA","sex":"male","date_of_birth":"1988-11-26T00:00:00.000Z","height":1.78,"weight":83,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":862582190,"name":"Jeremy Cadot","nationality":"FRA","sex":"male","date_of_birth":"1986-11-07T00:00:00.000Z","height":1.85,"weight":78,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":240137595,"name":"Jeremy Desplanches","nationality":"SUI","sex":"male","date_of_birth":"1994-08-07T00:00:00.000Z","height":1.89,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":357577386,"name":"Jeremy Dodson","nationality":"SAM","sex":"male","date_of_birth":"1987-08-30T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":612661000,"name":"Jeremy Hayward","nationality":"AUS","sex":"male","date_of_birth":"1993-03-03T00:00:00.000Z","height":1.81,"weight":82,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":867045332,"name":"Jeremy Monnier","nationality":"FRA","sex":"male","date_of_birth":"1989-05-05T00:00:00.000Z","height":1.75,"weight":65,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":222564871,"name":"Jeremy Rencurel","nationality":"FRA","sex":"male","date_of_birth":"1995-04-13T00:00:00.000Z","height":1.81,"weight":83,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":528202320,"name":"Jeremy Stravius","nationality":"FRA","sex":"male","date_of_birth":"1988-07-14T00:00:00.000Z","height":1.9,"weight":87,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":414345502,"name":"Jeremy Taiwo","nationality":"USA","sex":"male","date_of_birth":"1990-01-15T00:00:00.000Z","height":1.94,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":231926753,"name":"Jeremy Toljan","nationality":"GER","sex":"male","date_of_birth":"1994-08-08T00:00:00.000Z","height":1.82,"weight":77,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":995701112,"name":"Jermaine Seoposenwe","nationality":"RSA","sex":"female","date_of_birth":"1993-10-12T00:00:00.000Z","height":1.67,"weight":62,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":882400057,"name":"Jeroen D'Hoedt","nationality":"BEL","sex":"male","date_of_birth":"1990-01-10T00:00:00.000Z","height":1.83,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":426243229,"name":"Jeroen Dubbeldam","nationality":"NED","sex":"male","date_of_birth":"1973-04-15T00:00:00.000Z","height":1.85,"weight":85,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":306559370,"name":"Jeroen Hertzberger","nationality":"NED","sex":"male","date_of_birth":"1986-02-24T00:00:00.000Z","height":1.74,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":389822683,"name":"Jeroen Mooren","nationality":"NED","sex":"male","date_of_birth":"1985-07-30T00:00:00.000Z","height":1.68,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":244522313,"name":"Jerome Guery","nationality":"BEL","sex":"male","date_of_birth":"1980-07-24T00:00:00.000Z","height":1.84,"weight":69,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":701894934,"name":"Jerome Truyens","nationality":"BEL","sex":"male","date_of_birth":"1987-08-04T00:00:00.000Z","height":1.78,"weight":70,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":244166013,"name":"Jerry Tollbring","nationality":"SWE","sex":"male","date_of_birth":"1995-09-13T00:00:00.000Z","height":1.82,"weight":82,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":790674817,"name":"Jerry Tuwai","nationality":"FIJ","sex":"male","date_of_birth":"1989-03-23T00:00:00.000Z","height":1.74,"weight":81,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":688754355,"name":"Jerzy Janowicz","nationality":"POL","sex":"male","date_of_birth":"1990-11-13T00:00:00.000Z","height":2.04,"weight":95,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":455392993,"name":"Jesper Hansen","nationality":"DEN","sex":"male","date_of_birth":"1980-11-19T00:00:00.000Z","height":1.8,"weight":95,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":527946979,"name":"Jesper Johansson","nationality":"SWE","sex":"male","date_of_birth":"1994-05-30T00:00:00.000Z","height":1.95,"weight":85,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":73811144,"name":"Jesper Nielsen","nationality":"SWE","sex":"male","date_of_birth":"1989-09-30T00:00:00.000Z","height":2,"weight":110,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":562280742,"name":"Jesper Noddesbo","nationality":"DEN","sex":"male","date_of_birth":"1980-10-23T00:00:00.000Z","height":1.99,"weight":100,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":109939258,"name":"Jesper Stalheim","nationality":"SWE","sex":"male","date_of_birth":"1988-03-23T00:00:00.000Z","height":1.84,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":911273581,"name":"Jess Walker","nationality":"GBR","sex":"female","date_of_birth":"1990-06-24T00:00:00.000Z","height":1.77,"weight":70,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":691246438,"name":"Jesse David Thielke","nationality":"USA","sex":"male","date_of_birth":"1992-06-09T00:00:00.000Z","height":1.71,"weight":68,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":475795038,"name":"Jesse Parahi","nationality":"AUS","sex":"male","date_of_birth":"1989-07-29T00:00:00.000Z","height":1.89,"weight":104,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":619652365,"name":"Jesse Smith","nationality":"USA","sex":"male","date_of_birth":"1983-04-27T00:00:00.000Z","height":1.94,"weight":105,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":428646755,"name":"Jessica Andrews","nationality":"GBR","sex":"female","date_of_birth":"1992-10-01T00:00:00.000Z","height":1.68,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":245831479,"name":"Jessica Ashwood","nationality":"AUS","sex":"female","date_of_birth":"1993-04-28T00:00:00.000Z","height":1.73,"weight":64,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":551853296,"name":"Jessica Augusto","nationality":"POR","sex":"female","date_of_birth":"1981-11-08T00:00:00.000Z","height":1.62,"weight":44,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":353712682,"name":"Jessica Blaszka","nationality":"NED","sex":"female","date_of_birth":"1992-08-05T00:00:00.000Z","height":1.6,"weight":52,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":172113299,"name":"Jessica Brizeida Lopez Arocha","nationality":"VEN","sex":"female","date_of_birth":"1986-01-22T00:00:00.000Z","height":1.53,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":429571808,"name":"Jessica Cavalheiro","nationality":"BRA","sex":"female","date_of_birth":"1991-08-01T00:00:00.000Z","height":1.64,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":154587352,"name":"Jessica Draskau-Petersson","nationality":"DEN","sex":"female","date_of_birth":"1977-09-08T00:00:00.000Z","height":1.7,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":651225769,"name":"Jessica Eddie","nationality":"GBR","sex":"female","date_of_birth":"1984-10-07T00:00:00.000Z","height":1.78,"weight":75,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":668056593,"name":"Jessica Ennis-Hill","nationality":"GBR","sex":"female","date_of_birth":"1986-01-28T00:00:00.000Z","height":1.65,"weight":57,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":499672936,"name":"Jessica Fox","nationality":"AUS","sex":"male","date_of_birth":"1994-06-10T00:00:00.000Z","height":1.66,"weight":60,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":"Born in France, Jessica Fox represents Australia in the Olympic Games. At the age of 18, she won silver in the canoe slalom K-1 event at London 2012. She also holds six golds from the past three world championships."},{"id":243350396,"name":"Jessica Hall","nationality":"AUS","sex":"female","date_of_birth":"1992-07-13T00:00:00.000Z","height":1.83,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":742356145,"name":"Jessica Hancco","nationality":"PER","sex":"female","date_of_birth":"1995-09-10T00:00:00.000Z","height":1.53,"weight":44,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":844470576,"name":"Jessica Houara","nationality":"FRA","sex":"female","date_of_birth":"1987-09-29T00:00:00.000Z","height":1.61,"weight":53,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":481042981,"name":"Jessica Inchude","nationality":"GBS","sex":"female","date_of_birth":"1996-03-25T00:00:00.000Z","height":1.75,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":629770332,"name":"Jessica Javelet","nationality":"USA","sex":"female","date_of_birth":"1985-06-25T00:00:00.000Z","height":1.68,"weight":63,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":116285055,"name":"Jessica Maier","nationality":"BRA","sex":"female","date_of_birth":"1994-08-21T00:00:00.000Z","height":1.67,"weight":52,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":832460083,"name":"Jessica Mendoza","nationality":"GBR","sex":"female","date_of_birth":"1996-04-09T00:00:00.000Z","height":1.72,"weight":62,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":803585591,"name":"Jessica Morrison","nationality":"AUS","sex":"female","date_of_birth":"1992-05-18T00:00:00.000Z","height":null,"weight":null,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":147271899,"name":"Jessica O'Connell","nationality":"CAN","sex":"female","date_of_birth":"1989-02-10T00:00:00.000Z","height":1.58,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":223516819,"name":"Jessica Parratto","nationality":"USA","sex":"female","date_of_birth":"1994-06-26T00:00:00.000Z","height":1.58,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":463897901,"name":"Jessica Phoenix","nationality":"CAN","sex":"female","date_of_birth":"1983-10-16T00:00:00.000Z","height":1.57,"weight":57,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":679145498,"name":"Jessica Quintino","nationality":"BRA","sex":"female","date_of_birth":"1991-04-17T00:00:00.000Z","height":1.72,"weight":67,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":790042843,"name":"Jessica Rossi","nationality":"ITA","sex":"female","date_of_birth":"1992-01-07T00:00:00.000Z","height":1.68,"weight":59,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":279018477,"name":"Jessica Samuelsson","nationality":"SWE","sex":"female","date_of_birth":"1992-01-30T00:00:00.000Z","height":1.66,"weight":60,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":273050989,"name":"Jessica Thornton","nationality":"AUS","sex":"female","date_of_birth":"1998-04-12T00:00:00.000Z","height":1.7,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":210017406,"name":"Jessica Trengove","nationality":"AUS","sex":"female","date_of_birth":"1987-08-15T00:00:00.000Z","height":1.66,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":47922395,"name":"Jessica Vall Montero","nationality":"ESP","sex":"female","date_of_birth":"1988-11-22T00:00:00.000Z","height":1.64,"weight":51,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":304882581,"name":"Jessie Fleming","nationality":"CAN","sex":"female","date_of_birth":"1998-03-11T00:00:00.000Z","height":1.64,"weight":55,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":343382074,"name":"Jessie Khing Lacuna","nationality":"PHI","sex":"male","date_of_birth":"1993-12-23T00:00:00.000Z","height":1.7,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":918777342,"name":"Jessy Kramer","nationality":"NED","sex":"female","date_of_birth":"1990-02-16T00:00:00.000Z","height":1.78,"weight":77,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":16153353,"name":"Jessy Tremouliere","nationality":"FRA","sex":"female","date_of_birth":"1992-07-29T00:00:00.000Z","height":1.8,"weight":73,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":55862203,"name":"Jesus Alberto Perales","nationality":"MEX","sex":"male","date_of_birth":"1993-12-22T00:00:00.000Z","height":1.97,"weight":88,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":957663890,"name":"Jesus Antonio Lopez Sanchez","nationality":"VEN","sex":"male","date_of_birth":"1984-12-17T00:00:00.000Z","height":1.61,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":340837468,"name":"Jesus Espana","nationality":"ESP","sex":"male","date_of_birth":"1978-08-21T00:00:00.000Z","height":1.68,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":673714012,"name":"Jesus Liranzo","nationality":"VEN","sex":"male","date_of_birth":"1995-11-02T00:00:00.000Z","height":1.74,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":589547436,"name":"Jesus Rangel","nationality":"MEX","sex":"male","date_of_birth":"1980-09-20T00:00:00.000Z","height":1.9,"weight":82,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":990831505,"name":"Jesus Tortosa Cabrera","nationality":"ESP","sex":"male","date_of_birth":"1997-12-21T00:00:00.000Z","height":1.85,"weight":58,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":117602961,"name":"Jeunghun Wang","nationality":"KOR","sex":"male","date_of_birth":"1995-09-07T00:00:00.000Z","height":1.8,"weight":72,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":407205407,"name":"Jevaughn Minzie","nationality":"JAM","sex":"male","date_of_birth":"1995-07-20T00:00:00.000Z","height":1.78,"weight":85,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":370569700,"name":"Jevgenijs Borodavko","nationality":"LAT","sex":"male","date_of_birth":"1986-11-04T00:00:00.000Z","height":1.9,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":897539865,"name":"Jeyong Son","nationality":"KOR","sex":"male","date_of_birth":"1994-01-12T00:00:00.000Z","height":1.77,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":427460731,"name":"Jeyvier Jesus Cintron","nationality":"PUR","sex":"male","date_of_birth":"1995-02-08T00:00:00.000Z","height":1.71,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":82066790,"name":"Jhennifer Conceicao","nationality":"BRA","sex":"female","date_of_birth":"1997-06-13T00:00:00.000Z","height":1.62,"weight":52,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":87944431,"name":"Jhoan Esteban Chaves Rubio","nationality":"COL","sex":"male","date_of_birth":"1990-01-17T00:00:00.000Z","height":1.64,"weight":54,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":507432041,"name":"Jhoanis Portilla","nationality":"CUB","sex":"male","date_of_birth":"1990-07-24T00:00:00.000Z","height":1.82,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":677554524,"name":"Jhon Perlaza","nationality":"COL","sex":"male","date_of_birth":"1994-08-26T00:00:00.000Z","height":1.8,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":183172056,"name":"Jhonatan Esquivel","nationality":"URU","sex":"male","date_of_birth":"1988-10-13T00:00:00.000Z","height":1.83,"weight":86,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":78371823,"name":"Jhonathan Paz","nationality":"HON","sex":"male","date_of_birth":"1995-06-18T00:00:00.000Z","height":1.83,"weight":81,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":996212053,"name":"Jhonattan Vegas","nationality":"VEN","sex":"male","date_of_birth":"1984-08-19T00:00:00.000Z","height":1.91,"weight":100,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":518155505,"name":"Jhonnatan Botero Villegas","nationality":"COL","sex":"male","date_of_birth":"1992-04-27T00:00:00.000Z","height":1.67,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":432678731,"name":"Jhonny Perez Urena","nationality":"DOM","sex":"male","date_of_birth":"1997-09-16T00:00:00.000Z","height":1.73,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":687736543,"name":"Jhow Benavidez","nationality":"HON","sex":"male","date_of_birth":"1995-12-26T00:00:00.000Z","height":1.79,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":829490625,"name":"Ji Hyun Sung","nationality":"KOR","sex":"female","date_of_birth":"1991-07-29T00:00:00.000Z","height":1.75,"weight":64,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":30421879,"name":"Jia Liu","nationality":"AUT","sex":"female","date_of_birth":"1982-02-16T00:00:00.000Z","height":1.6,"weight":46,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":290373539,"name":"Jiahui Lou","nationality":"CHN","sex":"female","date_of_birth":"1991-05-26T00:00:00.000Z","height":1.67,"weight":55,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":249355001,"name":"Jiajia Guo","nationality":"CHN","sex":"female","date_of_birth":"1994-06-06T00:00:00.000Z","height":1.71,"weight":65,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":404900556,"name":"Jialu Hao","nationality":"CHN","sex":"female","date_of_birth":"1987-08-20T00:00:00.000Z","height":1.76,"weight":66,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":643778716,"name":"Jialuo Shi","nationality":"CHN","sex":"male","date_of_birth":"1993-01-25T00:00:00.000Z","height":1.84,"weight":71,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":542874859,"name":"Jian Fang Lay","nationality":"AUS","sex":"female","date_of_birth":"1973-03-06T00:00:00.000Z","height":1.63,"weight":58,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":246757519,"name":"Jianan Wang","nationality":"CGO","sex":"male","date_of_birth":"1983-01-20T00:00:00.000Z","height":1.77,"weight":77,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":801219490,"name":"Jianan Wang","nationality":"CHN","sex":"male","date_of_birth":"1996-08-27T00:00:00.000Z","height":1.85,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":2310622,"name":"Jianbin He","nationality":"CHN","sex":"male","date_of_birth":"1993-02-18T00:00:00.000Z","height":1.88,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":546426458,"name":"Jianfei Ma","nationality":"CHN","sex":"male","date_of_birth":"1984-07-29T00:00:00.000Z","height":1.86,"weight":78,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":715962035,"name":"Jianguan Hu","nationality":"CHN","sex":"male","date_of_birth":"1993-05-11T00:00:00.000Z","height":1.68,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":44701367,"name":"Jianli Guo","nationality":"CHN","sex":"male","date_of_birth":"1988-03-06T00:00:00.000Z","height":1.78,"weight":73,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":735180620,"name":"Jianlian Yi","nationality":"CHN","sex":"male","date_of_birth":"1987-10-27T00:00:00.000Z","height":2.13,"weight":113,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":561632085,"name":"Jianming Shu","nationality":"CHN","sex":"male","date_of_birth":"1990-01-26T00:00:00.000Z","height":1.8,"weight":75,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":323548303,"name":"Jiao Li","nationality":"NED","sex":"female","date_of_birth":"1973-01-15T00:00:00.000Z","height":1.67,"weight":60,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":606768935,"name":"Jiao Xue","nationality":"CHN","sex":"female","date_of_birth":"1993-01-30T00:00:00.000Z","height":1.71,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":446754999,"name":"Jiaojiao De","nationality":"CHN","sex":"female","date_of_birth":"1990-01-05T00:00:00.000Z","height":1.67,"weight":57,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":964498000,"name":"Jiaqi Li","nationality":"CHN","sex":"female","date_of_birth":"1995-07-02T00:00:00.000Z","height":1.68,"weight":63,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":254128139,"name":"Jiaqi Zheng","nationality":"USA","sex":"female","date_of_birth":"1988-01-13T00:00:00.000Z","height":1.66,"weight":42,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":24639304,"name":"Jiawei Zhang","nationality":"CHN","sex":"male","date_of_birth":"1989-01-08T00:00:00.000Z","height":1.72,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":497442355,"name":"Jiaxin Tan","nationality":"CHN","sex":"female","date_of_birth":"1996-12-03T00:00:00.000Z","height":1.48,"weight":36,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":534753096,"name":"Jiaxin Wu","nationality":"CHN","sex":"female","date_of_birth":"1997-02-28T00:00:00.000Z","height":1.64,"weight":72,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":72458951,"name":"Jiayu Xu","nationality":"CHN","sex":"male","date_of_birth":"1995-08-19T00:00:00.000Z","height":1.87,"weight":78,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":167827568,"name":"Jidou El Moctar","nationality":"MTN","sex":"male","date_of_birth":"1985-07-08T00:00:00.000Z","height":1.71,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":628163232,"name":"Jie Chen","nationality":"CHN","sex":"female","date_of_birth":"1995-02-28T00:00:00.000Z","height":1.77,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":121538011,"name":"Jie Dong","nationality":"CHN","sex":"female","date_of_birth":"1998-10-31T00:00:00.000Z","height":1.7,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":928430214,"name":"Jie Li","nationality":"NED","sex":"female","date_of_birth":"1984-03-06T00:00:00.000Z","height":1.65,"weight":52,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":155657317,"name":"Jie Shi Neo","nationality":"SIN","sex":"female","date_of_birth":"1985-05-20T00:00:00.000Z","height":1.68,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":900705990,"name":"Jie Yao","nationality":"CHN","sex":"male","date_of_birth":"1990-09-21T00:00:00.000Z","height":1.88,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":113342748,"name":"Jie Youn Nam","nationality":"KOR","sex":"female","date_of_birth":"1983-05-25T00:00:00.000Z","height":1.71,"weight":63,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":60881505,"name":"Jieni Shao","nationality":"POR","sex":"female","date_of_birth":"1994-01-25T00:00:00.000Z","height":1.69,"weight":63,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":200297041,"name":"Jigeun Jeong","nationality":"KOR","sex":"male","date_of_birth":"1990-01-10T00:00:00.000Z","height":1.77,"weight":79,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":934549463,"name":"Jihee Jeon","nationality":"KOR","sex":"female","date_of_birth":"1992-10-28T00:00:00.000Z","height":1.59,"weight":56,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":523127994,"name":"Jihoon Kim","nationality":"KOR","sex":"male","date_of_birth":"1985-06-27T00:00:00.000Z","height":1.79,"weight":75,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":669978803,"name":"Jike Zhang","nationality":"CHN","sex":"male","date_of_birth":"1988-02-14T00:00:00.000Z","height":1.78,"weight":70,"sport":"table tennis","gold":1,"silver":1,"bronze":0,"info":"With Brazilian roots (his name is a tribute to Zico, the idol of Flamengo), China's Zhang Jike is a table tennis ace. At London 2012 he won gold in the singles and team events, and has won the world championship seven times."},{"id":359354716,"name":"Jill Witmer","nationality":"USA","sex":"female","date_of_birth":"1991-10-01T00:00:00.000Z","height":1.58,"weight":52,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":167215235,"name":"Jillian Alice Gallays","nationality":"CAN","sex":"female","date_of_birth":"1986-10-20T00:00:00.000Z","height":1.65,"weight":53,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":102526440,"name":"Jillion Potter","nationality":"USA","sex":"female","date_of_birth":"1986-07-05T00:00:00.000Z","height":1.78,"weight":79,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":790998306,"name":"Jim Gottfridsson","nationality":"SWE","sex":"male","date_of_birth":"1992-09-02T00:00:00.000Z","height":1.91,"weight":93,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":980188208,"name":"Jimmy Butler","nationality":"USA","sex":"male","date_of_birth":"1989-09-14T00:00:00.000Z","height":2.01,"weight":99,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":930912011,"name":"Jimmy Vicaut","nationality":"FRA","sex":"male","date_of_birth":"1992-02-27T00:00:00.000Z","height":1.88,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":48636955,"name":"Jin Hee Yoon","nationality":"KOR","sex":"female","date_of_birth":"1986-08-04T00:00:00.000Z","height":1.58,"weight":53,"sport":"weightlifting","gold":0,"silver":0,"bronze":1,"info":null},{"id":585498699,"name":"Jin Ma","nationality":"CHN","sex":"female","date_of_birth":"1988-05-07T00:00:00.000Z","height":1.67,"weight":58,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":526447222,"name":"Jin Wei Timothee Yap","nationality":"SIN","sex":"male","date_of_birth":"1994-11-05T00:00:00.000Z","height":1.78,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":514671382,"name":"Jing Yi Tee","nationality":"MAS","sex":"female","date_of_birth":"1991-02-08T00:00:00.000Z","height":1.67,"weight":58,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":617397429,"name":"Jing Zhang","nationality":"CHN","sex":"female","date_of_birth":"1996-06-16T00:00:00.000Z","height":1.66,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":197574532,"name":"Jingbin Zhao","nationality":"CHN","sex":"male","date_of_birth":"1990-04-18T00:00:00.000Z","height":1.85,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":535068479,"name":"Jingjing Zhang","nationality":"CHN","sex":"female","date_of_birth":"1988-12-03T00:00:00.000Z","height":1.64,"weight":65,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":800643493,"name":"Jingli Duan","nationality":"CHN","sex":"female","date_of_birth":"1989-03-08T00:00:00.000Z","height":1.8,"weight":76,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":890471066,"name":"Jinglin Shi","nationality":"CHN","sex":"female","date_of_birth":"1993-01-03T00:00:00.000Z","height":1.75,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":663047032,"name":"Jingnan Zhao","nationality":"CHN","sex":"female","date_of_birth":"1995-03-07T00:00:00.000Z","height":1.68,"weight":51,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":822617830,"name":"Jingyao Yu","nationality":"CHN","sex":"female","date_of_birth":"1999-02-13T00:00:00.000Z","height":1.78,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":343852409,"name":"Jingyu Wu","nationality":"CHN","sex":"female","date_of_birth":"1987-02-01T00:00:00.000Z","height":1.67,"weight":51,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":"Gold medalist in the up to 45kg taekwondo class at Beijing 2008 and London 2012, China's Wu Jingyu also has two golds, one silver and one bronze world championship medals."},{"id":618968829,"name":"Jinhwa Jung","nationality":"KOR","sex":"male","date_of_birth":"1989-05-25T00:00:00.000Z","height":1.83,"weight":75,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":262158592,"name":"Jinjie Gong","nationality":"CHN","sex":"female","date_of_birth":"1986-11-12T00:00:00.000Z","height":1.65,"weight":65,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":307605969,"name":"Jinq En Phee","nationality":"MAS","sex":"female","date_of_birth":"1997-11-29T00:00:00.000Z","height":1.66,"weight":51,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":316863678,"name":"Jinrong Zhang","nationality":"CHN","sex":"female","date_of_birth":"1997-03-24T00:00:00.000Z","height":1.63,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":350253517,"name":"Jinson Johnson","nationality":"IND","sex":"male","date_of_birth":"1991-03-15T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":763898907,"name":"Jinsun Jung","nationality":"KOR","sex":"male","date_of_birth":"1984-01-24T00:00:00.000Z","height":1.85,"weight":83,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":187824275,"name":"Jinyi Kim","nationality":"KOR","sex":"female","date_of_birth":"1993-06-20T00:00:00.000Z","height":1.79,"weight":82,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":417847231,"name":"Jinyoung Park","nationality":"KOR","sex":"female","date_of_birth":"1997-04-14T00:00:00.000Z","height":1.62,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":303862843,"name":"Jiowana Sauto","nationality":"FIJ","sex":"female","date_of_birth":"1998-03-13T00:00:00.000Z","height":1.7,"weight":69,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":715756785,"name":"Jip Vastenburg","nationality":"NED","sex":"female","date_of_birth":"1994-03-21T00:00:00.000Z","height":1.81,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":446797398,"name":"Jiri Beran","nationality":"CZE","sex":"male","date_of_birth":"1982-01-18T00:00:00.000Z","height":1.92,"weight":80,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":610244706,"name":"Jiri Kopac","nationality":"CZE","sex":"male","date_of_birth":"1982-02-23T00:00:00.000Z","height":1.75,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":678435777,"name":"Jiri Orsag","nationality":"CZE","sex":"male","date_of_birth":"1989-01-05T00:00:00.000Z","height":1.81,"weight":127,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":280267428,"name":"Jiri Prskavec","nationality":"CZE","sex":"male","date_of_birth":"1993-05-18T00:00:00.000Z","height":1.73,"weight":69,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":482638625,"name":"Jiri Sykora","nationality":"CZE","sex":"male","date_of_birth":"1995-01-20T00:00:00.000Z","height":1.9,"weight":91,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":514339084,"name":"Jirina Ptacnikova","nationality":"CZE","sex":"female","date_of_birth":"1986-05-20T00:00:00.000Z","height":1.73,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":931051373,"name":"Jisna Mathew","nationality":"IND","sex":"female","date_of_birth":"1999-01-07T00:00:00.000Z","height":1.56,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":824138324,"name":"Jisu Yoon","nationality":"KOR","sex":"female","date_of_birth":"1993-01-24T00:00:00.000Z","height":1.7,"weight":60,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":191271695,"name":"Jitbahadur Muktan","nationality":"NEP","sex":"male","date_of_birth":"1979-08-31T00:00:00.000Z","height":1.68,"weight":64,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":323638966,"name":"Jitu Rai","nationality":"IND","sex":"male","date_of_birth":"1987-08-26T00:00:00.000Z","height":1.6,"weight":64,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":426963180,"name":"Jiwei Zhao","nationality":"CHN","sex":"male","date_of_birth":"1995-08-25T00:00:00.000Z","height":1.85,"weight":80,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":617915347,"name":"Jiyeon Kim","nationality":"KOR","sex":"female","date_of_birth":"1988-03-12T00:00:00.000Z","height":1.65,"weight":56,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":59062825,"name":"Jiyeon Seo","nationality":"KOR","sex":"female","date_of_birth":"1993-03-03T00:00:00.000Z","height":1.68,"weight":56,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":609901100,"name":"Jiyun Bak","nationality":"KOR","sex":"female","date_of_birth":"1992-09-21T00:00:00.000Z","height":1.68,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":450037475,"name":"Jo Aleh","nationality":"NZL","sex":"female","date_of_birth":"1986-05-15T00:00:00.000Z","height":1.71,"weight":58,"sport":"sailing","gold":0,"silver":1,"bronze":0,"info":null},{"id":476728230,"name":"Jo-Wilfried Tsonga","nationality":"FRA","sex":"male","date_of_birth":"1985-04-17T00:00:00.000Z","height":1.88,"weight":93,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":666014603,"name":"Joachim Bottieau","nationality":"BEL","sex":"male","date_of_birth":"1989-03-20T00:00:00.000Z","height":1.8,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":472743592,"name":"Joachim Eilers","nationality":"GER","sex":"male","date_of_birth":"1990-04-02T00:00:00.000Z","height":1.85,"weight":90,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":845052105,"name":"Joachim Fischer nielsen","nationality":"DEN","sex":"male","date_of_birth":"1978-11-23T00:00:00.000Z","height":1.88,"weight":78,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":818759516,"name":"Joahnys Argilagos","nationality":"CUB","sex":"male","date_of_birth":"1997-01-11T00:00:00.000Z","height":1.52,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":629037192,"name":"Joakim Nilsson","nationality":"SWE","sex":"male","date_of_birth":"1994-02-06T00:00:00.000Z","height":1.83,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":99502290,"name":"Joan Herp Morell","nationality":"ESP","sex":"male","date_of_birth":"1993-10-18T00:00:00.000Z","height":1.86,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":861221421,"name":"Joan Lluis Pons Ramon","nationality":"ESP","sex":"male","date_of_birth":"1996-12-09T00:00:00.000Z","height":1.7,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":20182796,"name":"Joan Losada","nationality":"ESP","sex":"male","date_of_birth":"1992-06-20T00:00:00.000Z","height":1.82,"weight":86,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":727390459,"name":"Joana Costa","nationality":"BRA","sex":"female","date_of_birth":"1981-05-15T00:00:00.000Z","height":1.73,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":827210210,"name":"Joana Heidrich","nationality":"SUI","sex":"female","date_of_birth":"1991-10-02T00:00:00.000Z","height":1.9,"weight":72,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":676801349,"name":"Joana Palacios","nationality":"ARG","sex":"female","date_of_birth":"1996-11-08T00:00:00.000Z","height":1.6,"weight":63,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":278025815,"name":"Joana Ramos","nationality":"POR","sex":"female","date_of_birth":"1982-01-16T00:00:00.000Z","height":1.59,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":736604724,"name":"Joanna Evans","nationality":"BAH","sex":"female","date_of_birth":"1997-07-25T00:00:00.000Z","height":1.8,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":951232651,"name":"Joanna Fiodorow","nationality":"POL","sex":"female","date_of_birth":"1989-03-04T00:00:00.000Z","height":1.69,"weight":94,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":215850400,"name":"Joanna Jozwik","nationality":"POL","sex":"female","date_of_birth":"1991-01-30T00:00:00.000Z","height":1.69,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":941360584,"name":"Joanna Leigh","nationality":"GBR","sex":"female","date_of_birth":"1993-02-22T00:00:00.000Z","height":1.65,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":489677377,"name":"Joanna Leszczynska","nationality":"POL","sex":"female","date_of_birth":"1988-12-18T00:00:00.000Z","height":1.83,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":189833153,"name":"Joanna Linkiewicz","nationality":"POL","sex":"female","date_of_birth":"1990-05-02T00:00:00.000Z","height":1.68,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":487036929,"name":"Joanna Maranhao","nationality":"BRA","sex":"female","date_of_birth":"1987-04-29T00:00:00.000Z","height":1.75,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":929833418,"name":"Joanna Rowsell-Shand","nationality":"GBR","sex":"female","date_of_birth":"1988-12-05T00:00:00.000Z","height":1.8,"weight":69,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":943408954,"name":"Joanna Zachoszcz","nationality":"POL","sex":"female","date_of_birth":"1993-04-17T00:00:00.000Z","height":1.77,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":984524568,"name":"Joanne Faavesi","nationality":"USA","sex":"female","date_of_birth":"1992-02-05T00:00:00.000Z","height":1.68,"weight":73,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":279099654,"name":"Joanne Pavey","nationality":"GBR","sex":"female","date_of_birth":"1973-09-20T00:00:00.000Z","height":1.63,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":357940683,"name":"Joanne Watmore","nationality":"GBR","sex":"female","date_of_birth":"1986-09-25T00:00:00.000Z","height":1.79,"weight":74,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":964624583,"name":"Joao Costa","nationality":"POR","sex":"male","date_of_birth":"1964-10-28T00:00:00.000Z","height":1.82,"weight":100,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":544379806,"name":"Joao Gomes","nationality":"BRA","sex":"male","date_of_birth":"1986-01-21T00:00:00.000Z","height":1.9,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":612164029,"name":"Joao Monteiro","nationality":"POR","sex":"male","date_of_birth":"1983-08-29T00:00:00.000Z","height":1.8,"weight":71,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":224259489,"name":"Joao Paulo de Leiria E Silva","nationality":"ANG","sex":"male","date_of_birth":"1964-11-13T00:00:00.000Z","height":1.76,"weight":90,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":259002081,"name":"Joao Pereira","nationality":"POR","sex":"male","date_of_birth":"1987-12-28T00:00:00.000Z","height":1.86,"weight":72,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":345046292,"name":"Joao Ribeiro","nationality":"POR","sex":"male","date_of_birth":"1989-08-19T00:00:00.000Z","height":1.84,"weight":87,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":238238213,"name":"Joao Rodrigues","nationality":"POR","sex":"male","date_of_birth":"1971-11-02T00:00:00.000Z","height":1.79,"weight":73,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":52128128,"name":"Joao Silva","nationality":"POR","sex":"male","date_of_birth":"1989-05-15T00:00:00.000Z","height":1.71,"weight":60,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":523514105,"name":"Joao Sousa","nationality":"POR","sex":"male","date_of_birth":"1989-03-30T00:00:00.000Z","height":1.85,"weight":73,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":385773930,"name":"Joao Victor Marcari Oliva","nationality":"BRA","sex":"male","date_of_birth":"1996-02-02T00:00:00.000Z","height":1.82,"weight":65,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":891766253,"name":"Joao Vieira","nationality":"POR","sex":"male","date_of_birth":"1976-02-20T00:00:00.000Z","height":1.75,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":62478596,"name":"Joao Virginia","nationality":"POR","sex":"male","date_of_birth":"1999-10-10T00:00:00.000Z","height":1.82,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":343594006,"name":"Joao Vitor de Oliveira","nationality":"BRA","sex":"male","date_of_birth":"1992-05-15T00:00:00.000Z","height":1.9,"weight":87,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":924207908,"name":"Joao da Silva","nationality":"BRA","sex":"male","date_of_birth":"1994-01-29T00:00:00.000Z","height":1.9,"weight":93,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":949399778,"name":"Joao de Lucca","nationality":"BRA","sex":"male","date_of_birth":"1990-01-06T00:00:00.000Z","height":1.93,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":874040358,"name":"Joaquim Lobo","nationality":"MOZ","sex":"male","date_of_birth":"1995-01-06T00:00:00.000Z","height":1.72,"weight":66,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":548003782,"name":"Joaquim Rodriguez Oliver","nationality":"ESP","sex":"male","date_of_birth":"1979-05-12T00:00:00.000Z","height":1.69,"weight":59,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":779626305,"name":"Joaquin Arzura","nationality":"ARG","sex":"male","date_of_birth":"1993-05-18T00:00:00.000Z","height":1.7,"weight":71,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":572622269,"name":"Joaquin Blanco Albalat","nationality":"ESP","sex":"male","date_of_birth":"1989-06-25T00:00:00.000Z","height":1.81,"weight":80,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":443476953,"name":"Joaquin Lopez","nationality":"BRA","sex":"male","date_of_birth":"1990-02-12T00:00:00.000Z","height":1.7,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":202078151,"name":"Joaquin Menini","nationality":"ARG","sex":"male","date_of_birth":"1991-08-18T00:00:00.000Z","height":1.82,"weight":76,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":981125983,"name":"Jodie Kenny","nationality":"AUS","sex":"female","date_of_birth":"1987-08-18T00:00:00.000Z","height":1.83,"weight":74,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":525649911,"name":"Jodie Williams","nationality":"GBR","sex":"female","date_of_birth":"1993-09-28T00:00:00.000Z","height":1.73,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":854286799,"name":"Jody February","nationality":"RSA","sex":"male","date_of_birth":"1996-05-12T00:00:00.000Z","height":1.82,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":874371123,"name":"Joe Ingles","nationality":"AUS","sex":"male","date_of_birth":"1987-10-02T00:00:00.000Z","height":2.04,"weight":91,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":921707760,"name":"Joe Joyce","nationality":"GBR","sex":"male","date_of_birth":"1985-09-19T00:00:00.000Z","height":1.97,"weight":null,"sport":"boxing","gold":0,"silver":1,"bronze":0,"info":null},{"id":21878416,"name":"Joe Kayes","nationality":"AUS","sex":"male","date_of_birth":"1991-01-03T00:00:00.000Z","height":1.98,"weight":125,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":251331480,"name":"Joe Kovacs","nationality":"USA","sex":"male","date_of_birth":"1989-06-28T00:00:00.000Z","height":1.83,"weight":133,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":475553078,"name":"Joe Mahit","nationality":"VAN","sex":"male","date_of_birth":"1992-07-17T00:00:00.000Z","height":1.7,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":166825342,"name":"Joe Maloy","nationality":"USA","sex":"male","date_of_birth":"1985-12-20T00:00:00.000Z","height":1.76,"weight":64,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":886636468,"name":"Joe Morris","nationality":"USA","sex":"male","date_of_birth":"1989-08-17T00:00:00.000Z","height":1.78,"weight":79,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":650947541,"name":"Joe Webber","nationality":"NZL","sex":"male","date_of_birth":"1993-08-27T00:00:00.000Z","height":1.85,"weight":95,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":751008649,"name":"Joedison Teixeira","nationality":"BRA","sex":"male","date_of_birth":"1994-01-28T00:00:00.000Z","height":1.72,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":772292752,"name":"Joel Baden","nationality":"AUS","sex":"male","date_of_birth":"1996-02-01T00:00:00.000Z","height":1.9,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":64143047,"name":"Joel Dennerley","nationality":"AUS","sex":"male","date_of_birth":"1987-06-25T00:00:00.000Z","height":1.95,"weight":91,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":545645224,"name":"Joel Gonzalez Bonilla","nationality":"ESP","sex":"male","date_of_birth":"1989-09-30T00:00:00.000Z","height":1.85,"weight":68,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":551792957,"name":"Joel Pereira","nationality":"POR","sex":"male","date_of_birth":"1996-06-28T00:00:00.000Z","height":1.91,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":666790332,"name":"Joel Swift","nationality":"AUS","sex":"male","date_of_birth":"1990-06-14T00:00:00.000Z","height":1.9,"weight":103,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":603523767,"name":"Joelle Sandrine Mbumi Nkouindjin","nationality":"CMR","sex":"female","date_of_birth":"1986-05-25T00:00:00.000Z","height":1.7,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":324305623,"name":"Joelma Sousa","nationality":"BRA","sex":"female","date_of_birth":"1984-07-13T00:00:00.000Z","height":1.72,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":808443365,"name":"Joerdis Steinegger","nationality":"AUT","sex":"female","date_of_birth":"1983-02-08T00:00:00.000Z","height":1.72,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":418059967,"name":"Joeri Verlinden","nationality":"NED","sex":"male","date_of_birth":"1988-01-22T00:00:00.000Z","height":1.81,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":363167392,"name":"Joffrey Lauvergne","nationality":"FRA","sex":"male","date_of_birth":"1991-09-30T00:00:00.000Z","height":2.09,"weight":115,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":11290157,"name":"Johan Jakobsson","nationality":"SWE","sex":"male","date_of_birth":"1987-02-12T00:00:00.000Z","height":1.95,"weight":98,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":203049800,"name":"Johan Magnus Euren","nationality":"SWE","sex":"male","date_of_birth":"1985-05-18T00:00:00.000Z","height":1.92,"weight":120,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":303272993,"name":"Johanna Bundsen","nationality":"SWE","sex":"female","date_of_birth":"1991-06-03T00:00:00.000Z","height":1.85,"weight":72,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":980564711,"name":"Johanna Goliszewski","nationality":"GER","sex":"female","date_of_birth":"1986-05-09T00:00:00.000Z","height":1.72,"weight":64,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":624185811,"name":"Johanna Konta","nationality":"GBR","sex":"female","date_of_birth":"1991-05-17T00:00:00.000Z","height":1.8,"weight":69,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":886841889,"name":"Johanna Larsson","nationality":"SWE","sex":"female","date_of_birth":"1988-08-17T00:00:00.000Z","height":1.74,"weight":65,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":25172268,"name":"Johanna Umurungi","nationality":"RWA","sex":"female","date_of_birth":"1996-04-07T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":824255240,"name":"Johannes Hintze","nationality":"GER","sex":"male","date_of_birth":"1999-07-05T00:00:00.000Z","height":1.93,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":735194395,"name":"Johannes Schoettler","nationality":"GER","sex":"male","date_of_birth":"1984-08-27T00:00:00.000Z","height":1.92,"weight":84,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":292388497,"name":"Johannes Vetter","nationality":"GER","sex":"male","date_of_birth":"1993-03-26T00:00:00.000Z","height":1.88,"weight":103,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":764645021,"name":"John Ampomah","nationality":"GHA","sex":"male","date_of_birth":"1990-07-11T00:00:00.000Z","height":1.91,"weight":100,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":327081877,"name":"John Collins","nationality":"GBR","sex":"male","date_of_birth":"1989-01-24T00:00:00.000Z","height":1.92,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":112263685,"name":"John Cotterill","nationality":"AUS","sex":"male","date_of_birth":"1987-10-27T00:00:00.000Z","height":1.93,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":912933755,"name":"John Cox","nationality":"VEN","sex":"male","date_of_birth":"1981-07-06T00:00:00.000Z","height":1.96,"weight":95,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":151077400,"name":"John Edison Rodriguez","nationality":"COL","sex":"male","date_of_birth":"1991-01-24T00:00:00.000Z","height":2.05,"weight":102,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":165939913,"name":"John Gordon Perrin","nationality":"CAN","sex":"male","date_of_birth":"1989-08-17T00:00:00.000Z","height":2.01,"weight":95,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":827895855,"name":"John Jackson","nationality":"IRL","sex":"male","date_of_birth":"1986-02-21T00:00:00.000Z","height":1.7,"weight":73,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":821941821,"name":"John Jermyn","nationality":"IRL","sex":"male","date_of_birth":"1982-03-30T00:00:00.000Z","height":1.86,"weight":80,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":190324143,"name":"John Kibet Koech","nationality":"BRN","sex":"male","date_of_birth":"1995-08-23T00:00:00.000Z","height":1.68,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":914738719,"name":"John Mann","nationality":"USA","sex":"male","date_of_birth":"1985-06-27T00:00:00.000Z","height":1.99,"weight":113,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":774717983,"name":"John Millman","nationality":"AUS","sex":"male","date_of_birth":"1989-06-14T00:00:00.000Z","height":1.83,"weight":79,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":592750184,"name":"John Murillo","nationality":"COL","sex":"male","date_of_birth":"1984-07-13T00:00:00.000Z","height":1.86,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":444015390,"name":"John Nunn","nationality":"USA","sex":"male","date_of_birth":"1978-02-03T00:00:00.000Z","height":1.88,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":299026310,"name":"John Obi Mikel","nationality":"NGR","sex":"male","date_of_birth":"1987-04-22T00:00:00.000Z","height":1.73,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":699155379,"name":"John Peers","nationality":"AUS","sex":"male","date_of_birth":"1988-07-25T00:00:00.000Z","height":1.91,"weight":83,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":925467068,"name":"John Porch","nationality":"AUS","sex":"male","date_of_birth":"1994-03-04T00:00:00.000Z","height":1.85,"weight":82,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":373274768,"name":"John Ruuka","nationality":"KIR","sex":"male","date_of_birth":"1995-08-13T00:00:00.000Z","height":1.64,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":821790736,"name":"John Smith","nationality":"RSA","sex":"male","date_of_birth":"1990-01-12T00:00:00.000Z","height":1.92,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":965077119,"name":"John Storey","nationality":"NZL","sex":"male","date_of_birth":"1987-07-19T00:00:00.000Z","height":1.86,"weight":85,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":229427449,"name":"John Whitaker","nationality":"GBR","sex":"male","date_of_birth":"1955-08-05T00:00:00.000Z","height":1.61,"weight":70,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":110489298,"name":"John-John Dohmen","nationality":"BEL","sex":"male","date_of_birth":"1988-01-24T00:00:00.000Z","height":1.74,"weight":69,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":737599393,"name":"Johnathan Akinyemi","nationality":"NGR","sex":"male","date_of_birth":"1988-11-22T00:00:00.000Z","height":1.88,"weight":85,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":881559990,"name":"Johnathan Cabral","nationality":"CAN","sex":"male","date_of_birth":"1992-12-31T00:00:00.000Z","height":1.9,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":734388097,"name":"Johnny Palacios","nationality":"HON","sex":"male","date_of_birth":"1986-12-20T00:00:00.000Z","height":1.83,"weight":84,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":556532302,"name":"Joice Rodrigues","nationality":"BRA","sex":"female","date_of_birth":"1986-09-06T00:00:00.000Z","height":1.68,"weight":65,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":238860234,"name":"Joice Souza da Silva","nationality":"BRA","sex":"female","date_of_birth":"1983-07-20T00:00:00.000Z","height":1.67,"weight":59,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":396780204,"name":"Jolanda Annen","nationality":"SUI","sex":"female","date_of_birth":"1992-09-11T00:00:00.000Z","height":1.66,"weight":56,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":22338705,"name":"Jolanda Neff","nationality":"SUI","sex":"female","date_of_birth":"1993-01-05T00:00:00.000Z","height":1.68,"weight":53,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":317825722,"name":"Jolanta Ogar","nationality":"AUT","sex":"female","date_of_birth":"1982-04-28T00:00:00.000Z","height":1.78,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":808313337,"name":"Jolien D'hoore","nationality":"BEL","sex":"female","date_of_birth":"1990-03-14T00:00:00.000Z","height":1.76,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":774577987,"name":"Jomana Elmaghrabi","nationality":"EGY","sex":"female","date_of_birth":"1995-06-21T00:00:00.000Z","height":1.62,"weight":51,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":911513755,"name":"Jon Izaguirre Insausti","nationality":"ESP","sex":"male","date_of_birth":"1989-02-04T00:00:00.000Z","height":1.72,"weight":61,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":793991394,"name":"Jon Schofield","nationality":"GBR","sex":"male","date_of_birth":"1985-05-10T00:00:00.000Z","height":1.8,"weight":80,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":995512721,"name":"Jon Wi Choe","nationality":"PRK","sex":"male","date_of_birth":"1993-06-29T00:00:00.000Z","height":1.7,"weight":77,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":640178074,"name":"Jonas Crivella","nationality":"BRA","sex":"male","date_of_birth":"1988-04-30T00:00:00.000Z","height":1.81,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":709330716,"name":"Jonas Hogh-Christensen","nationality":"DEN","sex":"male","date_of_birth":"1981-05-21T00:00:00.000Z","height":1.86,"weight":102,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":197342499,"name":"Jonas Junias Jonas","nationality":"NAM","sex":"male","date_of_birth":"1993-11-24T00:00:00.000Z","height":1.81,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":413205965,"name":"Jonas Kaspar","nationality":"CZE","sex":"male","date_of_birth":"1991-10-08T00:00:00.000Z","height":1.82,"weight":82,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":510673064,"name":"Jonas Maciulis","nationality":"LTU","sex":"male","date_of_birth":"1985-02-10T00:00:00.000Z","height":1.98,"weight":103,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":510906933,"name":"Jonas Valanciunas","nationality":"LTU","sex":"male","date_of_birth":"1992-05-06T00:00:00.000Z","height":2.11,"weight":120,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":993012758,"name":"Jonas Warrer","nationality":"DEN","sex":"male","date_of_birth":"1979-03-22T00:00:00.000Z","height":1.81,"weight":77,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":572841797,"name":"Jonatan Hajdu","nationality":"HUN","sex":"male","date_of_birth":"1996-06-28T00:00:00.000Z","height":1.88,"weight":82,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":621973877,"name":"Jonathan Alan Smith","nationality":"RSA","sex":"male","date_of_birth":"1992-02-19T00:00:00.000Z","height":1.95,"weight":93,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":65169876,"name":"Jonathan Bell","nationality":"IRL","sex":"male","date_of_birth":"1987-06-19T00:00:00.000Z","height":1.78,"weight":77,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":6885634,"name":"Jonathan Borlee","nationality":"BEL","sex":"male","date_of_birth":"1988-02-22T00:00:00.000Z","height":1.8,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":339303461,"name":"Jonathan Brownlee","nationality":"GBR","sex":"male","date_of_birth":"1990-04-30T00:00:00.000Z","height":1.81,"weight":70,"sport":"triathlon","gold":0,"silver":1,"bronze":0,"info":null},{"id":254041793,"name":"Jonathan Calleri","nationality":"ARG","sex":"male","date_of_birth":"1993-09-23T00:00:00.000Z","height":1.73,"weight":78,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":809086718,"name":"Jonathan Castroviejo Nicolas","nationality":"ESP","sex":"male","date_of_birth":"1987-04-27T00:00:00.000Z","height":1.72,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":507080639,"name":"Jonathan David Gomez Noriega","nationality":"COL","sex":"male","date_of_birth":"1996-04-19T00:00:00.000Z","height":1.78,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":474793730,"name":"Jonathan Drack","nationality":"MRI","sex":"male","date_of_birth":"1988-11-06T00:00:00.000Z","height":1.84,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":620385089,"name":"Jonathan Groth","nationality":"DEN","sex":"male","date_of_birth":"1992-11-09T00:00:00.000Z","height":1.84,"weight":75,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":803640740,"name":"Jonathan Koch","nationality":"GER","sex":"male","date_of_birth":"1985-10-29T00:00:00.000Z","height":1.83,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":637083466,"name":"Jonathan Laugel","nationality":"FRA","sex":"male","date_of_birth":"1993-01-30T00:00:00.000Z","height":1.94,"weight":100,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":609847913,"name":"Jonathan Lobert","nationality":"FRA","sex":"male","date_of_birth":"1985-04-30T00:00:00.000Z","height":1.95,"weight":100,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":778006833,"name":"Jonathan Moriame","nationality":"FRA","sex":"male","date_of_birth":"1984-06-19T00:00:00.000Z","height":2.03,"weight":100,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":664121704,"name":"Jonathan Rieckmann","nationality":"BRA","sex":"male","date_of_birth":"1987-08-20T00:00:00.000Z","height":1.71,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":280719029,"name":"Jonathan Stenbacken","nationality":"SWE","sex":"male","date_of_birth":"1988-01-07T00:00:00.000Z","height":1.95,"weight":93,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":510827495,"name":"Jonathan Walton","nationality":"GBR","sex":"male","date_of_birth":"1990-10-06T00:00:00.000Z","height":1.91,"weight":93,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":412468662,"name":"Jonathan Wright","nationality":"NZL","sex":"male","date_of_birth":"1992-03-14T00:00:00.000Z","height":2.01,"weight":97,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":81546527,"name":"Jonelle Price","nationality":"NZL","sex":"female","date_of_birth":"1980-10-14T00:00:00.000Z","height":1.62,"weight":57,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":724095045,"name":"Jong Sim Rim","nationality":"PRK","sex":"female","date_of_birth":"1993-02-05T00:00:00.000Z","height":1.62,"weight":74,"sport":"weightlifting","gold":1,"silver":0,"bronze":0,"info":null},{"id":867882464,"name":"Jong Su Kim","nationality":"PRK","sex":"male","date_of_birth":"1977-01-01T00:00:00.000Z","height":1.66,"weight":67,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":438574326,"name":"Jongeun Kim","nationality":"KOR","sex":"female","date_of_birth":"1986-02-18T00:00:00.000Z","height":1.67,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":342096767,"name":"Jonghyun Kim","nationality":"KOR","sex":"male","date_of_birth":"1985-07-21T00:00:00.000Z","height":1.7,"weight":73,"sport":"shooting","gold":0,"silver":1,"bronze":0,"info":null},{"id":326377611,"name":"Jongoh Jin","nationality":"KOR","sex":"male","date_of_birth":"1979-09-24T00:00:00.000Z","height":1.75,"weight":78,"sport":"shooting","gold":1,"silver":0,"bronze":0,"info":"A specialist in the 50m pistol and 10m air pistol, the Republic of Korea's Jin Jongoh has won five medals over the past three Olympic Games: a silver at Athens 2004, a gold and a silver at Beijing 2008 and two golds at London 2012."},{"id":318221769,"name":"Jonna Andersson","nationality":"SWE","sex":"female","date_of_birth":"1993-01-02T00:00:00.000Z","height":1.67,"weight":64,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":160814323,"name":"Jono Clegg","nationality":"GBR","sex":"male","date_of_birth":"1989-07-14T00:00:00.000Z","height":1.86,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":497079798,"name":"Jonty Evans","nationality":"IRL","sex":"male","date_of_birth":"1971-10-04T00:00:00.000Z","height":1.93,"weight":82,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":193398244,"name":"Joonas Lindgren","nationality":"FIN","sex":"male","date_of_birth":"1986-05-31T00:00:00.000Z","height":1.7,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":183836938,"name":"Joonyong Seo","nationality":"KOR","sex":"male","date_of_birth":"1988-03-14T00:00:00.000Z","height":1.74,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":80963554,"name":"Joost Luiten","nationality":"NED","sex":"male","date_of_birth":"1986-01-07T00:00:00.000Z","height":1.77,"weight":78,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":964164116,"name":"Joost van der Burg","nationality":"NED","sex":"male","date_of_birth":"1993-12-11T00:00:00.000Z","height":1.81,"weight":72,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":604210309,"name":"Jordan Augier","nationality":"LCA","sex":"male","date_of_birth":"1994-11-14T00:00:00.000Z","height":1.71,"weight":53,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":543762791,"name":"Jordan Chipangama","nationality":"ZAM","sex":"male","date_of_birth":"1988-11-12T00:00:00.000Z","height":1.73,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":151605048,"name":"Jordan Coelho","nationality":"FRA","sex":"male","date_of_birth":"1992-04-02T00:00:00.000Z","height":1.83,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":204399496,"name":"Jordan Ernest Burroughs","nationality":"USA","sex":"male","date_of_birth":"1988-07-08T00:00:00.000Z","height":1.71,"weight":79,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":277046821,"name":"Jordan Larson-Burbach","nationality":"USA","sex":"female","date_of_birth":"1986-10-16T00:00:00.000Z","height":1.88,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":"One of the most skilful volleyball players in the world, Jordan Larson took the USA to silver at the London 2012 Olympic Games. This outside hitter led the team in the 2014 world championship and three World League wins, in 2010, 2011 and 2015."},{"id":246372668,"name":"Jordan Larsson","nationality":"SWE","sex":"male","date_of_birth":"1997-06-20T00:00:00.000Z","height":1.73,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":402518838,"name":"Jordan Mageo","nationality":"ASA","sex":"female","date_of_birth":"1997-01-06T00:00:00.000Z","height":1.72,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":89037230,"name":"Jordan Pothain","nationality":"FRA","sex":"male","date_of_birth":"1994-10-14T00:00:00.000Z","height":1.87,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":780854442,"name":"Jordan Silva","nationality":"MEX","sex":"male","date_of_birth":"1994-07-30T00:00:00.000Z","height":1.86,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":900671149,"name":"Jordan Thompson","nationality":"AUS","sex":"male","date_of_birth":"1994-04-20T00:00:00.000Z","height":1.83,"weight":73,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":710046367,"name":"Jordan Wilimovsky","nationality":"USA","sex":"male","date_of_birth":"1994-04-22T00:00:00.000Z","height":1.78,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":"The current world champion in the 10km marathon swimming event and the second of the USA's athletes to win this title, Jordan Wilimovsky, was elected the 2015 athlete of the year by the International Swimming Federation."},{"id":221513683,"name":"Jordan Wood","nationality":"AUS","sex":"male","date_of_birth":"1994-08-01T00:00:00.000Z","height":1.82,"weight":78,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":821771282,"name":"Jordi Xammar Hernandez","nationality":"ESP","sex":"male","date_of_birth":"1993-12-02T00:00:00.000Z","height":1.76,"weight":63,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":339973873,"name":"Jordin Andrade","nationality":"CPV","sex":"male","date_of_birth":"1992-05-05T00:00:00.000Z","height":1.82,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":611217392,"name":"Joren Tromp","nationality":"NED","sex":"male","date_of_birth":"1988-11-01T00:00:00.000Z","height":1.9,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":968135549,"name":"Jorge Antonio Garcia","nationality":"CUB","sex":"male","date_of_birth":"1988-01-14T00:00:00.000Z","height":1.8,"weight":78,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":21141252,"name":"Jorge Armando Ruiz","nationality":"COL","sex":"male","date_of_birth":"1989-05-17T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":818827545,"name":"Jorge Barajas","nationality":"MEX","sex":"male","date_of_birth":"1991-05-07T00:00:00.000Z","height":1.88,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":476081047,"name":"Jorge Campos","nationality":"CUB","sex":"male","date_of_birth":"1991-09-19T00:00:00.000Z","height":1.84,"weight":77,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":272138135,"name":"Jorge Carrera","nationality":"ESP","sex":"male","date_of_birth":"1982-06-12T00:00:00.000Z","height":1.8,"weight":83,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":178939509,"name":"Jorge Castelblanco","nationality":"PAN","sex":"male","date_of_birth":"1987-09-23T00:00:00.000Z","height":1.69,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":761218329,"name":"Jorge Diaz","nationality":"ESP","sex":"male","date_of_birth":"1985-11-26T00:00:00.000Z","height":1.73,"weight":75,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":729677214,"name":"Jorge Fonseca","nationality":"POR","sex":"male","date_of_birth":"1992-10-30T00:00:00.000Z","height":1.75,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":947023674,"name":"Jorge Grau Potrille","nationality":"CUB","sex":"male","date_of_birth":"1987-02-15T00:00:00.000Z","height":1.86,"weight":78,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":304222396,"name":"Jorge Lima","nationality":"POR","sex":"male","date_of_birth":"1981-01-29T00:00:00.000Z","height":1.77,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":822554462,"name":"Jorge Llames","nationality":"ESP","sex":"male","date_of_birth":"1978-10-17T00:00:00.000Z","height":1.7,"weight":74,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":728621076,"name":"Jorge Luis Vivas","nationality":"COL","sex":"male","date_of_birth":"1988-01-22T00:00:00.000Z","height":1.72,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":811026477,"name":"Jorge Mario Murillo Valdes","nationality":"COL","sex":"male","date_of_birth":"1991-09-07T00:00:00.000Z","height":1.86,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":344287763,"name":"Jorge Quinones","nationality":"MEX","sex":"male","date_of_birth":"1981-11-13T00:00:00.000Z","height":1.86,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":465083316,"name":"Jorge Torres","nationality":"MEX","sex":"male","date_of_birth":"1988-01-16T00:00:00.000Z","height":1.8,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":323103504,"name":"Jorge Vides","nationality":"BRA","sex":"male","date_of_birth":"1992-11-24T00:00:00.000Z","height":1.92,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":942961104,"name":"Jorge Y. Fernandez","nationality":"CUB","sex":"male","date_of_birth":"1987-10-02T00:00:00.000Z","height":1.9,"weight":100,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":473715878,"name":"Jorge Zarif","nationality":"BRA","sex":"male","date_of_birth":"1992-09-30T00:00:00.000Z","height":1.91,"weight":97,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":696332075,"name":"Jorinde Verwimp","nationality":"BEL","sex":"female","date_of_birth":"1994-11-10T00:00:00.000Z","height":1.85,"weight":65,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":692369210,"name":"Joris Daudet","nationality":"FRA","sex":"male","date_of_birth":"1991-02-12T00:00:00.000Z","height":1.84,"weight":78,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":544349833,"name":"Joris Pijs","nationality":"NED","sex":"male","date_of_birth":"1987-04-02T00:00:00.000Z","height":1.86,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":489958654,"name":"Joris Vanspringel","nationality":"BEL","sex":"male","date_of_birth":"1963-02-08T00:00:00.000Z","height":1.71,"weight":69,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":680257041,"name":"Jorrit Croon","nationality":"NED","sex":"male","date_of_birth":"1998-08-09T00:00:00.000Z","height":1.83,"weight":75,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":436353228,"name":"Jort van Gennep","nationality":"NED","sex":"male","date_of_birth":"1994-08-06T00:00:00.000Z","height":1.85,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":119403428,"name":"Josateki Naulu","nationality":"FIJ","sex":"male","date_of_birth":"1984-06-08T00:00:00.000Z","height":1.75,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":912647589,"name":"Jose Abella","nationality":"MEX","sex":"male","date_of_birth":"1994-02-10T00:00:00.000Z","height":1.76,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":742377387,"name":"Jose Alessandro Bagio","nationality":"BRA","sex":"male","date_of_birth":"1981-04-16T00:00:00.000Z","height":1.72,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":934177489,"name":"Jose Amado Garcia","nationality":"GUA","sex":"male","date_of_birth":"1977-09-13T00:00:00.000Z","height":1.77,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":914289728,"name":"Jose Antonio Hermida Ramos","nationality":"ESP","sex":"male","date_of_birth":"1978-08-24T00:00:00.000Z","height":1.72,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":175796769,"name":"Jose Armenteros","nationality":"CUB","sex":"male","date_of_birth":"1992-12-13T00:00:00.000Z","height":1.89,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":96353822,"name":"Jose Barralaga","nationality":"HON","sex":"male","date_of_birth":"1994-12-22T00:00:00.000Z","height":1.75,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":44722554,"name":"Jose Carlos Herrera","nationality":"MEX","sex":"male","date_of_birth":"1986-02-05T00:00:00.000Z","height":1.87,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":733148726,"name":"Jose Carlos Moreira","nationality":"BRA","sex":"male","date_of_birth":"1983-09-28T00:00:00.000Z","height":1.72,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":432697799,"name":"Jose Carvalho","nationality":"POR","sex":"male","date_of_birth":"1988-08-18T00:00:00.000Z","height":1.75,"weight":77,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":646368101,"name":"Jose Costa","nationality":"POR","sex":"male","date_of_birth":"1984-01-26T00:00:00.000Z","height":1.82,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":583146817,"name":"Jose Daniel Diaz Robertti","nationality":"VEN","sex":"male","date_of_birth":"1989-02-22T00:00:00.000Z","height":1.81,"weight":96,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":265525269,"name":"Jose Daniel Martin Dockx","nationality":"ESP","sex":"male","date_of_birth":"1974-01-07T00:00:00.000Z","height":1.83,"weight":74,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":20513481,"name":"Jose Guilherme de Toledo","nationality":"BRA","sex":"male","date_of_birth":"1994-01-11T00:00:00.000Z","height":1.93,"weight":97,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":710392751,"name":"Jose Gutierrez","nationality":"VEN","sex":"male","date_of_birth":"1992-10-12T00:00:00.000Z","height":1.93,"weight":83,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":515906781,"name":"Jose Ignacio Diaz","nationality":"ESP","sex":"male","date_of_birth":"1979-11-22T00:00:00.000Z","height":1.68,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":112540010,"name":"Jose Joao Pimenta Costa Mendes","nationality":"POR","sex":"male","date_of_birth":"1985-04-24T00:00:00.000Z","height":1.81,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":848550329,"name":"Jose Leonardo Montana","nationality":"COL","sex":"male","date_of_birth":"1992-03-21T00:00:00.000Z","height":1.74,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":64401943,"name":"Jose Leyver Ojeda","nationality":"MEX","sex":"male","date_of_birth":"1985-11-12T00:00:00.000Z","height":1.64,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":480752909,"name":"Jose Luis Gaspar","nationality":"CUB","sex":"male","date_of_birth":"1995-08-25T00:00:00.000Z","height":1.88,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":176573380,"name":"Jose Luis Gomez","nationality":"ARG","sex":"male","date_of_birth":"1993-09-13T00:00:00.000Z","height":1.67,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":314838135,"name":"Jose Luis Gonzalez","nationality":"ARG","sex":"male","date_of_birth":"1984-12-27T00:00:00.000Z","height":2.06,"weight":97,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":767377720,"name":"Jose Luis Rodriguez","nationality":"CHI","sex":"male","date_of_birth":"1994-06-01T00:00:00.000Z","height":1.8,"weight":75,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":165713774,"name":"Jose Manuel Calderon","nationality":"ESP","sex":"male","date_of_birth":"1981-09-28T00:00:00.000Z","height":1.91,"weight":90,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":225565069,"name":"Jose Maria Larocca","nationality":"ARG","sex":"male","date_of_birth":"1969-01-01T00:00:00.000Z","height":1.87,"weight":83,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":756729947,"name":"Jose Maria Raymundo","nationality":"GUA","sex":"male","date_of_birth":"1993-09-01T00:00:00.000Z","height":1.56,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":64114851,"name":"Jose Martinez","nationality":"MEX","sex":"male","date_of_birth":"1993-01-23T00:00:00.000Z","height":2,"weight":100,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":674292992,"name":"Jose Melendez","nationality":"VEN","sex":"male","date_of_birth":"1993-05-19T00:00:00.000Z","height":1.7,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":77380631,"name":"Jose Pena","nationality":"VEN","sex":"male","date_of_birth":"1987-01-12T00:00:00.000Z","height":1.6,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":828985174,"name":"Jose Quintanilla","nationality":"BOL","sex":"male","date_of_birth":"1997-01-01T00:00:00.000Z","height":2,"weight":89,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":599772179,"name":"Jose Ramos","nationality":"GUA","sex":"male","date_of_birth":"1994-11-09T00:00:00.000Z","height":1.56,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":145726121,"name":"Jose Ricardo Figueroa","nationality":"CUB","sex":"male","date_of_birth":"1991-01-10T00:00:00.000Z","height":1.84,"weight":64,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":178619727,"name":"Jose Vargas","nationality":"VEN","sex":"male","date_of_birth":"1982-01-23T00:00:00.000Z","height":1.96,"weight":109,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":760060377,"name":"Jose van Veen","nationality":"NED","sex":"female","date_of_birth":"1986-01-09T00:00:00.000Z","height":1.95,"weight":87,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":546457869,"name":"Jose-Filipe Lima","nationality":"POR","sex":"male","date_of_birth":"1981-11-26T00:00:00.000Z","height":1.77,"weight":75,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":537078452,"name":"Josee Belanger","nationality":"CAN","sex":"female","date_of_birth":"1986-05-14T00:00:00.000Z","height":1.63,"weight":63,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":168497661,"name":"Josef Dostal","nationality":"CZE","sex":"male","date_of_birth":"1993-03-03T00:00:00.000Z","height":2.02,"weight":115,"sport":"canoe","gold":0,"silver":1,"bronze":1,"info":null},{"id":351583225,"name":"Josefa Fabiola Almeida De Sousa Alves","nationality":"BRA","sex":"female","date_of_birth":"1983-02-03T00:00:00.000Z","height":1.84,"weight":70,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":938961398,"name":"Josefa Vila Betancurt","nationality":"CHI","sex":"female","date_of_birth":"1997-02-06T00:00:00.000Z","height":1.69,"weight":60,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":921723264,"name":"Josefin Olsson","nationality":"SWE","sex":"female","date_of_birth":"1989-08-23T00:00:00.000Z","height":1.72,"weight":67,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":184806323,"name":"Josefina Fernandez","nationality":"ARG","sex":"female","date_of_birth":"1991-08-17T00:00:00.000Z","height":1.75,"weight":72,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":384555082,"name":"Joselito Velazquez","nationality":"MEX","sex":"male","date_of_birth":"1993-09-30T00:00:00.000Z","height":1.64,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":945703153,"name":"Josep Romeu","nationality":"ESP","sex":"male","date_of_birth":"1990-05-22T00:00:00.000Z","height":1.75,"weight":77,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":128111481,"name":"Joseph Choong","nationality":"GBR","sex":"male","date_of_birth":"1995-05-23T00:00:00.000Z","height":1.86,"weight":78,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":943343126,"name":"Joseph Clarke","nationality":"GBR","sex":"male","date_of_birth":"1992-11-03T00:00:00.000Z","height":1.82,"weight":76,"sport":"canoe","gold":1,"silver":0,"bronze":0,"info":null},{"id":872493079,"name":"Joseph Cordina","nationality":"GBR","sex":"male","date_of_birth":"1991-12-01T00:00:00.000Z","height":1.75,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":722417692,"name":"Joseph Emilienne Essombe Tiako","nationality":"CMR","sex":"female","date_of_birth":"1988-03-22T00:00:00.000Z","height":1.59,"weight":55,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":748279929,"name":"Joseph Polossifakis","nationality":"CAN","sex":"male","date_of_birth":"1990-08-21T00:00:00.000Z","height":1.78,"weight":77,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":193706829,"name":"Joseph Schooling","nationality":"SIN","sex":"male","date_of_birth":"1995-06-16T00:00:00.000Z","height":1.84,"weight":78,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":626123517,"name":"Joseph Turagabeci","nationality":"FIJ","sex":"male","date_of_birth":"1994-11-19T00:00:00.000Z","height":1.69,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":610541912,"name":"Joseph Ward","nationality":"IRL","sex":"male","date_of_birth":"1993-10-30T00:00:00.000Z","height":1.86,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":604939981,"name":"Josephine Henning","nationality":"GER","sex":"female","date_of_birth":"1989-09-08T00:00:00.000Z","height":1.75,"weight":68,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":491045243,"name":"Josephine Jacques Andre Coquin","nationality":"FRA","sex":"female","date_of_birth":"1990-09-21T00:00:00.000Z","height":1.7,"weight":51,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":208075373,"name":"Josh Akognon","nationality":"NGR","sex":"male","date_of_birth":"1986-02-10T00:00:00.000Z","height":1.89,"weight":83,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":990888036,"name":"Josh Binstock","nationality":"CAN","sex":"male","date_of_birth":"1981-01-12T00:00:00.000Z","height":1.96,"weight":99,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":429283935,"name":"Josh Junior","nationality":"NZL","sex":"male","date_of_birth":"1989-12-22T00:00:00.000Z","height":1.89,"weight":96,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":213543405,"name":"Josh Kelly","nationality":"GBR","sex":"male","date_of_birth":"1994-03-07T00:00:00.000Z","height":1.78,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":234184817,"name":"Josh Konieczny","nationality":"USA","sex":"male","date_of_birth":"1991-05-26T00:00:00.000Z","height":1.81,"weight":74,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":820424202,"name":"Josh Prenot","nationality":"USA","sex":"male","date_of_birth":"1993-07-28T00:00:00.000Z","height":1.81,"weight":75,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":7139077,"name":"Joshua Beaver","nationality":"AUS","sex":"male","date_of_birth":"1993-03-01T00:00:00.000Z","height":1.75,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":758033306,"name":"Joshua Booth","nationality":"AUS","sex":"male","date_of_birth":"1990-10-09T00:00:00.000Z","height":1.9,"weight":93,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":267338735,"name":"Joshua Buatsi","nationality":"GBR","sex":"male","date_of_birth":"1993-03-14T00:00:00.000Z","height":1.85,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":357476242,"name":"Joshua Dunkley-Smith","nationality":"AUS","sex":"male","date_of_birth":"1989-06-28T00:00:00.000Z","height":1.94,"weight":98,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":27887256,"name":"Joshua E Tibatemwa","nationality":"UGA","sex":"male","date_of_birth":"1996-09-10T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":846703092,"name":"Joshua Ilustre","nationality":"GUM","sex":"male","date_of_birth":"1994-01-23T00:00:00.000Z","height":1.78,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":858829009,"name":"Joshua Katz","nationality":"AUS","sex":"male","date_of_birth":"1997-12-29T00:00:00.000Z","height":1.67,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":894182503,"name":"Joshua Kiprui Cheptegei","nationality":"UGA","sex":"male","date_of_birth":"1996-09-12T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":341433396,"name":"Joshua Palmer","nationality":"AUS","sex":"male","date_of_birth":"1991-08-10T00:00:00.000Z","height":1.86,"weight":87,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":485505257,"name":"Joshua Richmond","nationality":"USA","sex":"male","date_of_birth":"1985-12-19T00:00:00.000Z","height":1.88,"weight":90,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":761016081,"name":"Joshua Robinson","nationality":"AUS","sex":"male","date_of_birth":"1985-10-04T00:00:00.000Z","height":1.87,"weight":92,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":299902345,"name":"Joshua Samuels","nationality":"USA","sex":"male","date_of_birth":"1991-07-08T00:00:00.000Z","height":1.94,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":274974371,"name":"Josip Glasnovic","nationality":"CRO","sex":"male","date_of_birth":"1983-05-07T00:00:00.000Z","height":1.78,"weight":82,"sport":"shooting","gold":1,"silver":0,"bronze":0,"info":null},{"id":751292408,"name":"Josip Pavic","nationality":"CRO","sex":"male","date_of_birth":"1982-01-15T00:00:00.000Z","height":1.95,"weight":90,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":981156093,"name":"Josip Vrlic","nationality":"BRA","sex":"male","date_of_birth":"1986-04-25T00:00:00.000Z","height":1.96,"weight":120,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":937359847,"name":"Jossimar Orlando Calvo Moreno","nationality":"COL","sex":"male","date_of_birth":"1994-07-22T00:00:00.000Z","height":1.6,"weight":54,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":924692154,"name":"Josua Tuisova","nationality":"FIJ","sex":"male","date_of_birth":"1994-02-04T00:00:00.000Z","height":1.8,"weight":108,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":73761098,"name":"Josue Brachi Garcia","nationality":"ESP","sex":"male","date_of_birth":"1992-09-08T00:00:00.000Z","height":1.56,"weight":56,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":910659584,"name":"Josue Deprez","nationality":"HAI","sex":"male","date_of_birth":"1981-10-30T00:00:00.000Z","height":null,"weight":null,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":298393136,"name":"Joud Fahmy","nationality":"KSA","sex":"female","date_of_birth":"1994-02-20T00:00:00.000Z","height":1.64,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":441296734,"name":"Jovana Brakocevic","nationality":"SRB","sex":"female","date_of_birth":"1988-03-05T00:00:00.000Z","height":1.96,"weight":82,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":113412907,"name":"Jovana Crnogorac","nationality":"SRB","sex":"female","date_of_birth":"1992-02-29T00:00:00.000Z","height":1.7,"weight":56,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":383964072,"name":"Jovana Stevanovic","nationality":"SRB","sex":"female","date_of_birth":"1992-06-30T00:00:00.000Z","height":1.92,"weight":72,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":862971259,"name":"Jovana Terzic","nationality":"MNE","sex":"female","date_of_birth":"1999-05-15T00:00:00.000Z","height":1.65,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":123069531,"name":"Jovana de la Cruz","nationality":"PER","sex":"female","date_of_birth":"1992-07-12T00:00:00.000Z","height":1.61,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":434077737,"name":"Jovanka Radicevic","nationality":"MNE","sex":"female","date_of_birth":"1986-10-23T00:00:00.000Z","height":1.7,"weight":68,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":724258615,"name":"Jovina Choo","nationality":"SIN","sex":"female","date_of_birth":"1990-02-10T00:00:00.000Z","height":1.64,"weight":57,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":433904148,"name":"Joyce Sombroek","nationality":"NED","sex":"female","date_of_birth":"1990-09-10T00:00:00.000Z","height":1.79,"weight":64,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":85512245,"name":"Jozef Repcik","nationality":"SVK","sex":"male","date_of_birth":"1986-08-03T00:00:00.000Z","height":1.9,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":144854938,"name":"Juan Carlos Cabrera","nationality":"MEX","sex":"male","date_of_birth":"1991-11-09T00:00:00.000Z","height":1.94,"weight":105,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":17067669,"name":"Juan Carlos Carrillo","nationality":"COL","sex":"male","date_of_birth":"1992-10-10T00:00:00.000Z","height":1.84,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":735807847,"name":"Juan Carlos Trujillo","nationality":"GUA","sex":"male","date_of_birth":"1985-07-17T00:00:00.000Z","height":1.45,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":766482103,"name":"Juan Diego Turcios","nationality":"ESA","sex":"male","date_of_birth":"1992-09-22T00:00:00.000Z","height":1.79,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":867791853,"name":"Juan Gilardi","nationality":"ARG","sex":"male","date_of_birth":"1981-11-14T00:00:00.000Z","height":1.86,"weight":91,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":95348169,"name":"Juan Ignacio Caceres","nationality":"ARG","sex":"male","date_of_birth":"1992-01-31T00:00:00.000Z","height":1.68,"weight":75,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":435791254,"name":"Juan Ignacio Maegli","nationality":"GUA","sex":"male","date_of_birth":"1988-07-21T00:00:00.000Z","height":1.83,"weight":84,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":773684014,"name":"Juan Ignacio Rodriguez Liebana","nationality":"ESP","sex":"male","date_of_birth":"1992-04-19T00:00:00.000Z","height":1.85,"weight":83,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":565597273,"name":"Juan Imhoff","nationality":"ARG","sex":"male","date_of_birth":"1988-05-11T00:00:00.000Z","height":1.78,"weight":79,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":172353646,"name":"Juan Lopez","nationality":"ARG","sex":"male","date_of_birth":"1985-05-27T00:00:00.000Z","height":1.78,"weight":74,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":322112942,"name":"Juan Manuel Cano","nationality":"ARG","sex":"male","date_of_birth":"1987-12-12T00:00:00.000Z","height":1.68,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":436803627,"name":"Juan Martin Del Potro","nationality":"ARG","sex":"male","date_of_birth":"1988-09-23T00:00:00.000Z","height":1.98,"weight":97,"sport":"tennis","gold":0,"silver":1,"bronze":0,"info":null},{"id":48480691,"name":"Juan Miguel Rodriguez Martinez","nationality":"CUB","sex":"male","date_of_birth":"1967-05-26T00:00:00.000Z","height":1.83,"weight":86,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":919263299,"name":"Juan Monaco","nationality":"ARG","sex":"male","date_of_birth":"1984-03-29T00:00:00.000Z","height":1.85,"weight":77,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":517352231,"name":"Juan Nogueira","nationality":"BRA","sex":"male","date_of_birth":"1988-05-01T00:00:00.000Z","height":1.86,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":516208233,"name":"Juan Pablo Estelles","nationality":"ARG","sex":"male","date_of_birth":"1988-05-05T00:00:00.000Z","height":1.85,"weight":90,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":92791561,"name":"Juan Pablo Fernandez","nationality":"ARG","sex":"male","date_of_birth":"1988-09-30T00:00:00.000Z","height":1.92,"weight":86,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":585918319,"name":"Juan Pablo Romero","nationality":"MEX","sex":"male","date_of_birth":"1990-01-30T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":59463707,"name":"Juan Peralta Gascon","nationality":"ESP","sex":"male","date_of_birth":"1990-05-17T00:00:00.000Z","height":1.94,"weight":93,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":388064286,"name":"Juan Postigos","nationality":"PER","sex":"male","date_of_birth":"1989-05-13T00:00:00.000Z","height":1.6,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":118278910,"name":"Juan Quintero","nationality":"COL","sex":"male","date_of_birth":"1995-03-23T00:00:00.000Z","height":1.83,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":935796461,"name":"Juan Ramon Virgen Pulido","nationality":"MEX","sex":"male","date_of_birth":"1987-04-09T00:00:00.000Z","height":1.97,"weight":96,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":335899694,"name":"Juan Saladino","nationality":"ARG","sex":"male","date_of_birth":"1987-09-28T00:00:00.000Z","height":1.74,"weight":73,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":566554621,"name":"Juan Vivaldi","nationality":"ARG","sex":"male","date_of_birth":"1979-07-17T00:00:00.000Z","height":1.8,"weight":80,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":808940866,"name":"Juan de Jongh","nationality":"RSA","sex":"male","date_of_birth":"1988-04-15T00:00:00.000Z","height":1.75,"weight":87,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":819205568,"name":"Juan de la Fuente","nationality":"ARG","sex":"male","date_of_birth":"1976-08-15T00:00:00.000Z","height":1.81,"weight":74,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":394965054,"name":"Juan-Carlos Navarro","nationality":"ESP","sex":"male","date_of_birth":"1980-06-13T00:00:00.000Z","height":1.93,"weight":82,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":711645513,"name":"Juan-Sebastian Cabal","nationality":"COL","sex":"male","date_of_birth":"1986-04-25T00:00:00.000Z","height":1.85,"weight":82,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":232537338,"name":"Juander Santos","nationality":"DOM","sex":"male","date_of_birth":"1995-05-07T00:00:00.000Z","height":1.71,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":704786896,"name":"Juciely Cristina Barreto","nationality":"BRA","sex":"female","date_of_birth":"1980-12-18T00:00:00.000Z","height":1.83,"weight":72,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":42046189,"name":"Judit Ignacio Sorribes","nationality":"ESP","sex":"female","date_of_birth":"1994-03-18T00:00:00.000Z","height":1.65,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":581440046,"name":"Judith Forca Ariza","nationality":"ESP","sex":"female","date_of_birth":"1996-06-07T00:00:00.000Z","height":1.73,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":264395591,"name":"Judith Mbougnade","nationality":"CAF","sex":"female","date_of_birth":"1998-07-11T00:00:00.000Z","height":1.5,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":979044606,"name":"Judith Pietersen","nationality":"NED","sex":"female","date_of_birth":"1989-07-03T00:00:00.000Z","height":1.87,"weight":73,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":888955559,"name":"Judy Reynolds","nationality":"IRL","sex":"female","date_of_birth":"1981-06-11T00:00:00.000Z","height":1.58,"weight":58,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":381072761,"name":"Juho Reinvall","nationality":"FIN","sex":"male","date_of_birth":"1988-08-24T00:00:00.000Z","height":1.66,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":498802525,"name":"Jules Bessan","nationality":"BEN","sex":"male","date_of_birth":"1979-04-14T00:00:00.000Z","height":1.83,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":507759754,"name":"Julia Beljajeva","nationality":"EST","sex":"female","date_of_birth":"1992-07-21T00:00:00.000Z","height":1.76,"weight":70,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":78792839,"name":"Julia Catherine Vincent","nationality":"RSA","sex":"female","date_of_birth":"1994-08-13T00:00:00.000Z","height":1.54,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":409510063,"name":"Julia Edward","nationality":"NZL","sex":"female","date_of_birth":"1991-02-20T00:00:00.000Z","height":1.66,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":373007150,"name":"Julia Figueroa","nationality":"ESP","sex":"female","date_of_birth":"1991-04-07T00:00:00.000Z","height":1.5,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":851367696,"name":"Julia Fischer","nationality":"GER","sex":"female","date_of_birth":"1990-04-01T00:00:00.000Z","height":1.92,"weight":98,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":881992373,"name":"Julia Gomes","nationality":"ARG","sex":"female","date_of_birth":"1992-04-30T00:00:00.000Z","height":1.65,"weight":60,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":354743290,"name":"Julia Hassler","nationality":"LIE","sex":"female","date_of_birth":"1993-02-27T00:00:00.000Z","height":1.77,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":195497456,"name":"Julia Hauser","nationality":"AUT","sex":"female","date_of_birth":"1994-02-21T00:00:00.000Z","height":1.63,"weight":48,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":919533844,"name":"Julia Krajewski","nationality":"GER","sex":"female","date_of_birth":"1988-10-22T00:00:00.000Z","height":1.68,"weight":65,"sport":"equestrian","gold":0,"silver":1,"bronze":0,"info":null},{"id":94438177,"name":"Julia Lier","nationality":"GER","sex":"female","date_of_birth":"1991-11-11T00:00:00.000Z","height":1.83,"weight":78,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":843674273,"name":"Julia Muller","nationality":"GER","sex":"female","date_of_birth":"1985-12-10T00:00:00.000Z","height":1.7,"weight":71,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":814464830,"name":"Julia Pons","nationality":"ESP","sex":"female","date_of_birth":"1994-07-27T00:00:00.000Z","height":1.65,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":594049927,"name":"Julia Reinprecht","nationality":"USA","sex":"female","date_of_birth":"1991-07-12T00:00:00.000Z","height":1.61,"weight":55,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":257956193,"name":"Julia Sarda","nationality":"BRA","sex":"female","date_of_birth":"1982-12-01T00:00:00.000Z","height":1.74,"weight":64,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":292662070,"name":"Julia Sebastian","nationality":"ARG","sex":"female","date_of_birth":"1993-11-23T00:00:00.000Z","height":1.78,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":791900499,"name":"Julia Stavickaja","nationality":"GER","sex":"female","date_of_birth":"1997-12-03T00:00:00.000Z","height":1.67,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":716093130,"name":"Julia Takacs","nationality":"ESP","sex":"female","date_of_birth":"1989-06-29T00:00:00.000Z","height":1.71,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":22509268,"name":"Julia Vasconcelos dos Santos","nationality":"BRA","sex":"female","date_of_birth":"1992-06-15T00:00:00.000Z","height":1.7,"weight":57,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":396350226,"name":"Julian Alaphilippe","nationality":"FRA","sex":"male","date_of_birth":"1992-06-11T00:00:00.000Z","height":1.73,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":389816250,"name":"Julian Ayala","nationality":"MEX","sex":"male","date_of_birth":"1992-03-06T00:00:00.000Z","height":1.71,"weight":80,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":273158116,"name":"Julian Brandt","nationality":"GER","sex":"male","date_of_birth":"1996-05-02T00:00:00.000Z","height":1.85,"weight":82,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":288174300,"name":"Julian Fletcher","nationality":"BER","sex":"male","date_of_birth":"1990-10-08T00:00:00.000Z","height":1.84,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":915650709,"name":"Julian Flugel","nationality":"GER","sex":"male","date_of_birth":"1986-04-18T00:00:00.000Z","height":1.83,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":118960924,"name":"Julian Jrummi Walsh","nationality":"JPN","sex":"male","date_of_birth":"1996-09-18T00:00:00.000Z","height":1.75,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":24583837,"name":"Julian Justus","nationality":"GER","sex":"male","date_of_birth":"1988-01-29T00:00:00.000Z","height":1.77,"weight":76,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":627630800,"name":"Julian Matthews","nationality":"NZL","sex":"male","date_of_birth":"1988-07-21T00:00:00.000Z","height":1.84,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":104075617,"name":"Julian Reus","nationality":"GER","sex":"male","date_of_birth":"1988-04-29T00:00:00.000Z","height":1.76,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":479350989,"name":"Julian Weber","nationality":"GER","sex":"male","date_of_birth":"1994-08-29T00:00:00.000Z","height":1.91,"weight":98,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":800712406,"name":"Juliana Esteves","nationality":"BRA","sex":"female","date_of_birth":"1984-01-27T00:00:00.000Z","height":1.77,"weight":73,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":550164775,"name":"Juliana Gaviria Rendon","nationality":"COL","sex":"female","date_of_birth":"1991-03-31T00:00:00.000Z","height":1.65,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":633577633,"name":"Juliana Jose Machado","nationality":"ANG","sex":"female","date_of_birth":"1994-11-06T00:00:00.000Z","height":1.75,"weight":60,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":562282904,"name":"Juliana Paula dos Santos","nationality":"BRA","sex":"female","date_of_birth":"1983-07-12T00:00:00.000Z","height":1.65,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":101862484,"name":"Juliana Veloso","nationality":"BRA","sex":"female","date_of_birth":"1980-12-22T00:00:00.000Z","height":1.6,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":728944807,"name":"Juliane Rasmussen","nationality":"DEN","sex":"female","date_of_birth":"1979-02-17T00:00:00.000Z","height":1.73,"weight":61,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":966424858,"name":"Julianna Miskolczi","nationality":"HUN","sex":"female","date_of_birth":"1983-11-22T00:00:00.000Z","height":1.56,"weight":49,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":937877240,"name":"Juliano Fiori","nationality":"BRA","sex":"male","date_of_birth":"1985-06-27T00:00:00.000Z","height":1.91,"weight":107,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":338982011,"name":"Juliao Neto","nationality":"BRA","sex":"male","date_of_birth":"1981-08-16T00:00:00.000Z","height":1.65,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":271404469,"name":"Julie Brougham","nationality":"NZL","sex":"female","date_of_birth":"1954-05-20T00:00:00.000Z","height":1.57,"weight":48,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":923461973,"name":"Julie Johnston","nationality":"USA","sex":"female","date_of_birth":"1992-04-06T00:00:00.000Z","height":1.7,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":433957819,"name":"Julie Kepp Jensen","nationality":"DEN","sex":"female","date_of_birth":"2000-01-03T00:00:00.000Z","height":1.77,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":662203262,"name":"Julie Meynen","nationality":"LUX","sex":"female","date_of_birth":"1997-08-15T00:00:00.000Z","height":1.7,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":303814544,"name":"Julien Absalon","nationality":"FRA","sex":"male","date_of_birth":"1980-08-16T00:00:00.000Z","height":1.8,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":60020354,"name":"Julien Bahain","nationality":"CAN","sex":"male","date_of_birth":"1986-04-20T00:00:00.000Z","height":1.9,"weight":93,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":712150971,"name":"Julien Candelon","nationality":"FRA","sex":"male","date_of_birth":"1980-07-08T00:00:00.000Z","height":1.7,"weight":80,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":867157773,"name":"Julien Gobaux","nationality":"FRA","sex":"male","date_of_birth":"1990-12-11T00:00:00.000Z","height":1.67,"weight":62,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":774410191,"name":"Julien Quesne","nationality":"FRA","sex":"male","date_of_birth":"1980-08-16T00:00:00.000Z","height":1.85,"weight":88,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":757315970,"name":"Julien Watrin","nationality":"BEL","sex":"male","date_of_birth":"1992-06-27T00:00:00.000Z","height":1.89,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":962879306,"name":"Julien d'Ortoli","nationality":"FRA","sex":"male","date_of_birth":"1983-10-07T00:00:00.000Z","height":1.8,"weight":75,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":950043572,"name":"Juliet Chekwel","nationality":"UGA","sex":"female","date_of_birth":"1990-03-25T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":307667762,"name":"Juliet Itoya","nationality":"ESP","sex":"female","date_of_birth":"1986-08-17T00:00:00.000Z","height":1.69,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":149975684,"name":"Julieta Constanza Lazcano","nationality":"ARG","sex":"female","date_of_birth":"1989-06-25T00:00:00.000Z","height":1.9,"weight":74,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":569399978,"name":"Julieta Granada","nationality":"PAR","sex":"female","date_of_birth":"1986-11-17T00:00:00.000Z","height":1.6,"weight":58,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":640084413,"name":"Julieta Toledo","nationality":"MEX","sex":"female","date_of_birth":"1997-05-24T00:00:00.000Z","height":1.66,"weight":66,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":799627712,"name":"Juliette Ramel","nationality":"SWE","sex":"female","date_of_birth":"1987-04-12T00:00:00.000Z","height":1.71,"weight":55,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":376593072,"name":"Julio Almeida","nationality":"BRA","sex":"male","date_of_birth":"1969-09-23T00:00:00.000Z","height":1.8,"weight":90,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":578772600,"name":"Julio Alsogaray","nationality":"ARG","sex":"male","date_of_birth":"1980-04-11T00:00:00.000Z","height":1.8,"weight":81,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":747521379,"name":"Julio Cesar Acosta Gonzalez","nationality":"CHI","sex":"male","date_of_birth":"1987-07-22T00:00:00.000Z","height":1.6,"weight":61,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":333152040,"name":"Julio Cesar Castillo","nationality":"ECU","sex":"male","date_of_birth":"1988-05-10T00:00:00.000Z","height":1.83,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":549178578,"name":"Julio Cesar Iemma Hernandez","nationality":"VEN","sex":"male","date_of_birth":"1984-07-31T00:00:00.000Z","height":1.68,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":158409385,"name":"Julio Cesar Salamanca Pineda","nationality":"ESA","sex":"male","date_of_birth":"1989-07-15T00:00:00.000Z","height":1.59,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":356214385,"name":"Julio Cesar Salazar","nationality":"MEX","sex":"male","date_of_birth":"1993-07-08T00:00:00.000Z","height":1.76,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":429794805,"name":"Julio Cesar de Oliveira","nationality":"BRA","sex":"male","date_of_birth":"1986-02-04T00:00:00.000Z","height":1.85,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":912637672,"name":"Julio Cesar la Cruz","nationality":"CUB","sex":"male","date_of_birth":"1989-08-11T00:00:00.000Z","height":1.82,"weight":null,"sport":"boxing","gold":1,"silver":0,"bronze":0,"info":null},{"id":293911956,"name":"Julio Peralta","nationality":"CHI","sex":"male","date_of_birth":"1981-09-09T00:00:00.000Z","height":1.89,"weight":80,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":856955212,"name":"Julissa Diez Canseco","nationality":"PER","sex":"female","date_of_birth":"1989-06-05T00:00:00.000Z","height":1.7,"weight":49,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":52744143,"name":"Julius Kuhn","nationality":"GER","sex":"male","date_of_birth":"1993-04-01T00:00:00.000Z","height":1.98,"weight":110,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":352796479,"name":"Julius Yego","nationality":"KEN","sex":"male","date_of_birth":"1989-01-04T00:00:00.000Z","height":1.75,"weight":94,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":833182511,"name":"Jun Heo","nationality":"KOR","sex":"male","date_of_birth":"1988-05-31T00:00:00.000Z","height":1.68,"weight":64,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":990108444,"name":"Jun Hoong Cheong","nationality":"MAS","sex":"female","date_of_birth":"1990-04-16T00:00:00.000Z","height":1.53,"weight":46,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":971499639,"name":"Jun Mizutani","nationality":"JPN","sex":"male","date_of_birth":"1989-06-09T00:00:00.000Z","height":1.72,"weight":63,"sport":"table tennis","gold":0,"silver":1,"bronze":1,"info":null},{"id":837661821,"name":"Jun Shan","nationality":"CHN","sex":"male","date_of_birth":"1994-08-07T00:00:00.000Z","height":1.72,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":328126879,"name":"Jun Yang","nationality":"CHN","sex":"female","date_of_birth":"1988-04-28T00:00:00.000Z","height":1.8,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":898311944,"name":"Juncheol Kwon","nationality":"KOR","sex":"male","date_of_birth":"1988-11-16T00:00:00.000Z","height":1.78,"weight":76,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":13885387,"name":"Jungbaik Lee","nationality":"KOR","sex":"male","date_of_birth":"1986-08-27T00:00:00.000Z","height":1.61,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":462538119,"name":"Jungeun Seo","nationality":"KOR","sex":"female","date_of_birth":"1991-12-26T00:00:00.000Z","height":1.68,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":603653372,"name":"Junghwan Kim","nationality":"KOR","sex":"male","date_of_birth":"1983-09-02T00:00:00.000Z","height":1.78,"weight":66,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":851472120,"name":"Junghye Kwak","nationality":"KOR","sex":"female","date_of_birth":"1986-11-19T00:00:00.000Z","height":1.64,"weight":64,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":540684742,"name":"Jungsub Shim","nationality":"KOR","sex":"male","date_of_birth":"1991-02-21T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":118478984,"name":"Junhong Kim","nationality":"KOR","sex":"male","date_of_birth":"1990-10-28T00:00:00.000Z","height":1.77,"weight":68,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":184749002,"name":"Junhua Yin","nationality":"CHN","sex":"female","date_of_birth":"1990-08-27T00:00:00.000Z","height":1.67,"weight":null,"sport":"boxing","gold":0,"silver":1,"bronze":0,"info":null},{"id":239850180,"name":"Junsik Yun","nationality":"KOR","sex":"male","date_of_birth":"1991-08-09T00:00:00.000Z","height":1.66,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":645739020,"name":"Junxia Yang","nationality":"CHN","sex":"female","date_of_birth":"1989-05-02T00:00:00.000Z","height":1.69,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":543006659,"name":"Junya Hasegawa","nationality":"JPN","sex":"male","date_of_birth":"1993-12-13T00:00:00.000Z","height":1.8,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":390371883,"name":"Junya Koga","nationality":"JPN","sex":"male","date_of_birth":"1987-07-19T00:00:00.000Z","height":1.82,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":868084272,"name":"Juozas Bernotas","nationality":"LTU","sex":"male","date_of_birth":"1989-04-23T00:00:00.000Z","height":1.86,"weight":80,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":954911768,"name":"Jur Vrieling","nationality":"NED","sex":"male","date_of_birth":"1969-07-31T00:00:00.000Z","height":1.86,"weight":81,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":546944322,"name":"Juraj Tarr","nationality":"SVK","sex":"male","date_of_birth":"1979-02-18T00:00:00.000Z","height":1.86,"weight":88,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":992216184,"name":"Juraj Tuzinsky","nationality":"SVK","sex":"male","date_of_birth":"1984-08-24T00:00:00.000Z","height":1.84,"weight":73,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":917333595,"name":"Jure Dolenec","nationality":"SLO","sex":"male","date_of_birth":"1988-12-06T00:00:00.000Z","height":1.9,"weight":93,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":332222731,"name":"Jure Meglic","nationality":"AZE","sex":"male","date_of_birth":"1984-10-18T00:00:00.000Z","height":1.82,"weight":80,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":732395162,"name":"Jurgen Spiess","nationality":"GER","sex":"male","date_of_birth":"1984-03-26T00:00:00.000Z","height":1.75,"weight":105,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":957010520,"name":"Jurgen Themen","nationality":"SUR","sex":"male","date_of_birth":"1985-10-26T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":730050855,"name":"Justin Duff","nationality":"CAN","sex":"male","date_of_birth":"1988-05-10T00:00:00.000Z","height":2,"weight":102,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":574761075,"name":"Justin Gatlin","nationality":"USA","sex":"male","date_of_birth":"1982-02-10T00:00:00.000Z","height":1.86,"weight":80,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":880505445,"name":"Justin Geduld","nationality":"RSA","sex":"male","date_of_birth":"1993-10-01T00:00:00.000Z","height":1.75,"weight":78,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":"Champion at the Glasgow 2014 Commonwealth Games, for South Africa, Justin Geduld was also in the team that came runners-up in the 2015/2016 Sevens World Series. Kwaito is his favourite musical genre."},{"id":440014013,"name":"Justin Liu","nationality":"SIN","sex":"male","date_of_birth":"1991-05-28T00:00:00.000Z","height":1.67,"weight":78,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":369577883,"name":"Justin Rose","nationality":"GBR","sex":"male","date_of_birth":"1980-07-30T00:00:00.000Z","height":1.93,"weight":89,"sport":"golf","gold":1,"silver":0,"bronze":0,"info":null},{"id":148873377,"name":"Justinas Kinderis","nationality":"LTU","sex":"male","date_of_birth":"1987-05-24T00:00:00.000Z","height":1.84,"weight":82,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":203006331,"name":"Justine Fedronic","nationality":"FRA","sex":"female","date_of_birth":"1991-05-11T00:00:00.000Z","height":1.68,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":768117731,"name":"Justine Palframan","nationality":"RSA","sex":"female","date_of_birth":"1993-11-04T00:00:00.000Z","height":1.71,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":769813502,"name":"Justyna Kaczkowska","nationality":"POL","sex":"female","date_of_birth":"1997-10-07T00:00:00.000Z","height":1.74,"weight":71,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":627015913,"name":"Justyna Swiety","nationality":"POL","sex":"female","date_of_birth":"1992-12-03T00:00:00.000Z","height":1.65,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":571537130,"name":"Jutatip Maneephan","nationality":"THA","sex":"female","date_of_birth":"1988-07-08T00:00:00.000Z","height":1.57,"weight":57,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":672417750,"name":"Jwala Gutta","nationality":"IND","sex":"female","date_of_birth":"1983-09-07T00:00:00.000Z","height":1.78,"weight":85,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":947906976,"name":"KK Clark","nationality":"USA","sex":"female","date_of_birth":"1990-06-28T00:00:00.000Z","height":1.88,"weight":72,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":47855369,"name":"Ka Bian","nationality":"CHN","sex":"female","date_of_birth":"1993-01-05T00:00:00.000Z","height":1.82,"weight":115,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":457893226,"name":"Ka Long Angus Ng","nationality":"HKG","sex":"male","date_of_birth":"1994-06-24T00:00:00.000Z","height":1.81,"weight":70,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":593897941,"name":"Ka Long Cheung","nationality":"HKG","sex":"male","date_of_birth":"1997-06-10T00:00:00.000Z","height":1.81,"weight":68,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":680900592,"name":"Ka Man Lee","nationality":"HKG","sex":"female","date_of_birth":"1986-11-28T00:00:00.000Z","height":1.68,"weight":59,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":305478662,"name":"Kaan Kigen Ozbilen","nationality":"TUR","sex":"male","date_of_birth":"1986-01-15T00:00:00.000Z","height":1.78,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":715141748,"name":"Kaarle Tapper","nationality":"FIN","sex":"male","date_of_birth":"1995-09-19T00:00:00.000Z","height":1.9,"weight":84,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":256631076,"name":"Kabange Mupopo","nationality":"ZAM","sex":"female","date_of_birth":"1992-09-21T00:00:00.000Z","height":1.7,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":148757871,"name":"Kacper Klich","nationality":"POL","sex":"male","date_of_birth":"1994-11-12T00:00:00.000Z","height":1.82,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":205302143,"name":"Kacper Kozlowski","nationality":"POL","sex":"male","date_of_birth":"1986-12-07T00:00:00.000Z","height":1.77,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":280331524,"name":"Kacper Majchrzak","nationality":"POL","sex":"male","date_of_birth":"1992-09-22T00:00:00.000Z","height":1.9,"weight":87,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":284586329,"name":"Kacper Zieminski","nationality":"POL","sex":"male","date_of_birth":"1990-11-04T00:00:00.000Z","height":1.83,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":438808296,"name":"Kadeisha Buchanan","nationality":"CAN","sex":"female","date_of_birth":"1995-11-05T00:00:00.000Z","height":1.7,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":219399568,"name":"Kadidiatou Diani","nationality":"FRA","sex":"female","date_of_birth":"1995-04-01T00:00:00.000Z","height":1.68,"weight":57,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":357724648,"name":"Kadra Mohamed Dembil","nationality":"DJI","sex":"female","date_of_birth":"1997-04-22T00:00:00.000Z","height":1.55,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":730889224,"name":"Kaede Kondo","nationality":"JPN","sex":"female","date_of_birth":"1991-10-06T00:00:00.000Z","height":1.73,"weight":62,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":721642129,"name":"Kafetien Gomis","nationality":"FRA","sex":"male","date_of_birth":"1980-03-23T00:00:00.000Z","height":1.85,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":607051462,"name":"Kahena Kunze","nationality":"BRA","sex":"female","date_of_birth":"1991-03-12T00:00:00.000Z","height":1.72,"weight":68,"sport":"sailing","gold":1,"silver":0,"bronze":0,"info":null},{"id":796984995,"name":"Kaho Minagawa","nationality":"JPN","sex":"female","date_of_birth":"1997-08-20T00:00:00.000Z","height":1.68,"weight":49,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":738530112,"name":"Kai Hafner","nationality":"GER","sex":"male","date_of_birth":"1989-07-10T00:00:00.000Z","height":1.92,"weight":95,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":740563078,"name":"Kai Kazmirek","nationality":"GER","sex":"male","date_of_birth":"1991-01-28T00:00:00.000Z","height":1.9,"weight":88,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":39749857,"name":"Kai Langerfeld","nationality":"CAN","sex":"male","date_of_birth":"1987-07-05T00:00:00.000Z","height":1.97,"weight":100,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":619887656,"name":"Kai Qin","nationality":"CHN","sex":"male","date_of_birth":"1986-01-31T00:00:00.000Z","height":1.7,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":968160329,"name":"Kai Selvon","nationality":"TTO","sex":"female","date_of_birth":"1992-04-13T00:00:00.000Z","height":1.65,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":239319244,"name":"Kaidi Kivioja","nationality":"EST","sex":"female","date_of_birth":"1993-02-23T00:00:00.000Z","height":1.76,"weight":61,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":924327192,"name":"Kailen Sheridan","nationality":"CAN","sex":"female","date_of_birth":"1995-07-16T00:00:00.000Z","height":1.78,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":880036778,"name":"Kaio Marcio","nationality":"BRA","sex":"male","date_of_birth":"1984-10-19T00:00:00.000Z","height":1.77,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":319193694,"name":"Kairat Yeraliyev","nationality":"KAZ","sex":"male","date_of_birth":"1990-11-08T00:00:00.000Z","height":1.65,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":55703816,"name":"Kaj Hendriks","nationality":"NED","sex":"male","date_of_birth":"1987-08-19T00:00:00.000Z","height":1.97,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":951014219,"name":"Kaleigh Gilchrist","nationality":"USA","sex":"female","date_of_birth":"1992-05-16T00:00:00.000Z","height":1.76,"weight":77,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":462211738,"name":"Kamal Aldin Mallash","nationality":"QAT","sex":"male","date_of_birth":"1992-01-01T00:00:00.000Z","height":1.8,"weight":80,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":943342389,"name":"Kame Ali","nationality":"MAD","sex":"male","date_of_birth":"1984-05-21T00:00:00.000Z","height":1.85,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":324865660,"name":"Kameli Soejima","nationality":"JPN","sex":"male","date_of_birth":"1983-06-01T00:00:00.000Z","height":1.89,"weight":94,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":608037098,"name":"Kami Craig","nationality":"USA","sex":"female","date_of_birth":"1987-07-21T00:00:00.000Z","height":1.81,"weight":88,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":103254143,"name":"Kamia Yousufi","nationality":"AFG","sex":"female","date_of_birth":"1996-05-20T00:00:00.000Z","height":1.65,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":743593230,"name":"Kamil Kuczynski","nationality":"POL","sex":"male","date_of_birth":"1985-03-23T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":981300465,"name":"Kamil Syprzak","nationality":"POL","sex":"male","date_of_birth":"1991-07-23T00:00:00.000Z","height":2.07,"weight":118,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":838362564,"name":"Kamila Licwinko","nationality":"POL","sex":"female","date_of_birth":"1986-03-22T00:00:00.000Z","height":1.84,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":109033637,"name":"Kamilla Rytter juhl","nationality":"DEN","sex":"female","date_of_birth":"1983-11-23T00:00:00.000Z","height":1.83,"weight":71,"sport":"badminton","gold":0,"silver":1,"bronze":0,"info":null},{"id":123021523,"name":"Kamolwan Chanyim","nationality":"THA","sex":"female","date_of_birth":"1996-01-03T00:00:00.000Z","height":1.75,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":790596898,"name":"Kamongwa Salukombo Makorobondo","nationality":"COD","sex":"male","date_of_birth":"1988-08-13T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":372258149,"name":"Kamran Shakhsuvarly","nationality":"AZE","sex":"male","date_of_birth":"1992-12-06T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":388605257,"name":"Kana Mitsugi","nationality":"JPN","sex":"female","date_of_birth":"1992-06-28T00:00:00.000Z","height":1.72,"weight":72,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":994718425,"name":"Kana Nomura","nationality":"JPN","sex":"female","date_of_birth":"1990-03-23T00:00:00.000Z","height":1.67,"weight":57,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":346210070,"name":"Kanae Yagi","nationality":"JPN","sex":"female","date_of_birth":"1992-07-16T00:00:00.000Z","height":1.54,"weight":52,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":104327995,"name":"Kanae Yamabe","nationality":"JPN","sex":"female","date_of_birth":"1990-09-22T00:00:00.000Z","height":1.72,"weight":108,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":386777560,"name":"Kanak Jha","nationality":"USA","sex":"male","date_of_birth":"2000-06-19T00:00:00.000Z","height":1.66,"weight":51,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":274674975,"name":"Kanako Watanabe","nationality":"JPN","sex":"female","date_of_birth":"1996-11-15T00:00:00.000Z","height":1.67,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":160704850,"name":"Kanami Nakamaki","nationality":"JPN","sex":"female","date_of_birth":"1992-06-05T00:00:00.000Z","height":1.69,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":772973384,"name":"Kanami Tashiro","nationality":"JPN","sex":"female","date_of_birth":"1991-03-25T00:00:00.000Z","height":1.73,"weight":66,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":27065279,"name":"Kane Radford","nationality":"NZL","sex":"male","date_of_birth":"1990-11-02T00:00:00.000Z","height":1.75,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":234490151,"name":"Kane Russell","nationality":"NZL","sex":"male","date_of_birth":"1992-04-22T00:00:00.000Z","height":1.76,"weight":82,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":553259590,"name":"Kanika Beckles","nationality":"GRN","sex":"female","date_of_birth":"1991-10-03T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":743776991,"name":"Kano Omata","nationality":"JPN","sex":"female","date_of_birth":"1996-07-24T00:00:00.000Z","height":1.61,"weight":48,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":141149492,"name":"Kanstantsin Barycheuski","nationality":"BLR","sex":"male","date_of_birth":"1990-05-29T00:00:00.000Z","height":1.91,"weight":87,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":791361517,"name":"Kanstantsin Siutsou","nationality":"BLR","sex":"male","date_of_birth":"1982-08-09T00:00:00.000Z","height":1.84,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":447034461,"name":"Kaori Icho","nationality":"JPN","sex":"female","date_of_birth":"1984-06-13T00:00:00.000Z","height":1.66,"weight":61,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":"Olympic three-time wrestling champion, with golds at Athens 2004, Beijing 2008 and London 2012, Japan's Kaori Icho remained undefeated between 2003 and 2016 in the up to 63kg class. Over this period, she has won ten world championships."},{"id":316924793,"name":"Kaori Kawanaka","nationality":"JPN","sex":"female","date_of_birth":"1991-08-03T00:00:00.000Z","height":1.59,"weight":51,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":351978454,"name":"Kaori Matsumoto","nationality":"JPN","sex":"female","date_of_birth":"1987-09-11T00:00:00.000Z","height":1.63,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":429591068,"name":"Kapririel Kitson","nationality":"FSM","sex":"male","date_of_birth":"1993-12-10T00:00:00.000Z","height":1.53,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":717634951,"name":"Kara Chad","nationality":"CAN","sex":"female","date_of_birth":"1996-01-09T00:00:00.000Z","height":null,"weight":null,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":30506524,"name":"Kara Winger","nationality":"USA","sex":"female","date_of_birth":"1986-04-10T00:00:00.000Z","height":1.83,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":788211955,"name":"Karabo Sibanda","nationality":"BOT","sex":"male","date_of_birth":"1998-07-02T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":765541612,"name":"Karar Ibrahim","nationality":"IRQ","sex":"male","date_of_birth":"1994-09-19T00:00:00.000Z","height":1.82,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":865191792,"name":"Karel Lavicky","nationality":"CZE","sex":"male","date_of_birth":"1985-11-08T00:00:00.000Z","height":1.92,"weight":80,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":62963470,"name":"Karem Achach","nationality":"MEX","sex":"female","date_of_birth":"1991-02-25T00:00:00.000Z","height":1.69,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":786004687,"name":"Karem Ben Hnia","nationality":"TUN","sex":"male","date_of_birth":"1994-11-13T00:00:00.000Z","height":1.65,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":871511200,"name":"Karen Bennett","nationality":"GBR","sex":"female","date_of_birth":"1989-02-05T00:00:00.000Z","height":1.79,"weight":75,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":137070973,"name":"Karen Cope Charles","nationality":"CRC","sex":"female","date_of_birth":"1985-11-06T00:00:00.000Z","height":1.73,"weight":59,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":263091246,"name":"Karen Gallardo","nationality":"CHI","sex":"female","date_of_birth":"1984-03-06T00:00:00.000Z","height":1.75,"weight":96,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":660233137,"name":"Karen Paquin","nationality":"CAN","sex":"female","date_of_birth":"1987-08-03T00:00:00.000Z","height":1.72,"weight":70,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":582647371,"name":"Karen Riveros","nationality":"PAR","sex":"female","date_of_birth":"1994-12-04T00:00:00.000Z","height":1.7,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":419664403,"name":"Karen Tebar","nationality":"FRA","sex":"female","date_of_birth":"1964-09-19T00:00:00.000Z","height":1.59,"weight":57,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":141875290,"name":"Karen Torrez","nationality":"BOL","sex":"female","date_of_birth":"1992-07-29T00:00:00.000Z","height":1.65,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":339808080,"name":"Kari Aalvik Grimsbo","nationality":"NOR","sex":"female","date_of_birth":"1985-01-04T00:00:00.000Z","height":1.8,"weight":null,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":"Two-time Olympic champion (Beijing 2008 and London 2012) and world champion with the Norway handball team, goalkeeper Kari Aalvik Grimsbø was also part of the four European titles they won."},{"id":550682162,"name":"Kariem Hussein","nationality":"SUI","sex":"male","date_of_birth":"1989-01-04T00:00:00.000Z","height":1.91,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":306135130,"name":"Karien Robbers","nationality":"NED","sex":"female","date_of_birth":"1993-08-16T00:00:00.000Z","height":1.8,"weight":68,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":617638592,"name":"Karim Elsayed","nationality":"EGY","sex":"male","date_of_birth":"1995-02-16T00:00:00.000Z","height":1.83,"weight":87,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":402272259,"name":"Karim Elzoghby","nationality":"EGY","sex":"male","date_of_birth":"1977-02-15T00:00:00.000Z","height":1.78,"weight":70,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":282551125,"name":"Karim Gharbi","nationality":"SMR","sex":"male","date_of_birth":"1992-01-05T00:00:00.000Z","height":1.82,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":78441979,"name":"Karim Hendawy","nationality":"EGY","sex":"male","date_of_birth":"1988-05-01T00:00:00.000Z","height":1.88,"weight":90,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":423872774,"name":"Karim Laghouag","nationality":"FRA","sex":"male","date_of_birth":"1975-08-04T00:00:00.000Z","height":1.77,"weight":70,"sport":"equestrian","gold":1,"silver":0,"bronze":0,"info":null},{"id":960874866,"name":"Kariman Abuljadayel","nationality":"KSA","sex":"female","date_of_birth":"1994-05-11T00:00:00.000Z","height":1.8,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":825653693,"name":"Karin Donckers","nationality":"BEL","sex":"female","date_of_birth":"1971-05-28T00:00:00.000Z","height":1.68,"weight":57,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":256420475,"name":"Karin Johansson","nationality":"SWE","sex":"female","date_of_birth":"1986-10-04T00:00:00.000Z","height":1.69,"weight":77,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":827466551,"name":"Karin Knapp","nationality":"ITA","sex":"female","date_of_birth":"1987-06-28T00:00:00.000Z","height":1.8,"weight":72,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":727101608,"name":"Karin Mey Melis","nationality":"TUR","sex":"female","date_of_birth":"1983-05-31T00:00:00.000Z","height":1.71,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":728372437,"name":"Karin Schnaase","nationality":"GER","sex":"female","date_of_birth":"1985-02-14T00:00:00.000Z","height":1.64,"weight":56,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":255926111,"name":"Karina Goricheva","nationality":"KAZ","sex":"female","date_of_birth":"1993-04-08T00:00:00.000Z","height":1.6,"weight":63,"sport":"weightlifting","gold":0,"silver":0,"bronze":1,"info":null},{"id":84056388,"name":"Karina Lipiarska-Palka","nationality":"POL","sex":"female","date_of_birth":"1987-02-16T00:00:00.000Z","height":1.74,"weight":76,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":402338305,"name":"Karina Lykhvar","nationality":"ISR","sex":"female","date_of_birth":"1998-12-11T00:00:00.000Z","height":1.7,"weight":53,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":326279643,"name":"Karina Ocasio","nationality":"PUR","sex":"female","date_of_birth":"1985-08-01T00:00:00.000Z","height":1.92,"weight":76,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":696191181,"name":"Karine Icher","nationality":"FRA","sex":"female","date_of_birth":"1979-01-26T00:00:00.000Z","height":1.72,"weight":66,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":794384409,"name":"Karine Thomas","nationality":"CAN","sex":"female","date_of_birth":"1989-01-14T00:00:00.000Z","height":1.72,"weight":53,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":504393481,"name":"Karitaake Tewaaki","nationality":"KIR","sex":"female","date_of_birth":"1997-12-01T00:00:00.000Z","height":1.55,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":206296331,"name":"Karl Robert Saluri","nationality":"EST","sex":"male","date_of_birth":"1993-08-06T00:00:00.000Z","height":1.78,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":630306564,"name":"Karl Schulze","nationality":"GER","sex":"male","date_of_birth":"1988-03-05T00:00:00.000Z","height":1.9,"weight":100,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":318067161,"name":"Karl-Martin Rammo","nationality":"EST","sex":"male","date_of_birth":"1989-06-06T00:00:00.000Z","height":1.9,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":773611309,"name":"Karl-Richard Frey","nationality":"GER","sex":"male","date_of_birth":"1991-07-11T00:00:00.000Z","height":1.88,"weight":103,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":541116732,"name":"Karla Borger","nationality":"GER","sex":"female","date_of_birth":"1988-11-22T00:00:00.000Z","height":1.79,"weight":66,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":510946610,"name":"Karma Karma","nationality":"BHU","sex":"female","date_of_birth":"1990-06-06T00:00:00.000Z","height":1.63,"weight":51,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":736369747,"name":"Karol Bielecki","nationality":"POL","sex":"male","date_of_birth":"1982-01-23T00:00:00.000Z","height":2.02,"weight":106,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":659495321,"name":"Karol Hoffmann","nationality":"POL","sex":"male","date_of_birth":"1989-06-01T00:00:00.000Z","height":1.96,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":999580644,"name":"Karol Klos","nationality":"POL","sex":"male","date_of_birth":"1989-08-08T00:00:00.000Z","height":2.01,"weight":87,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":867135736,"name":"Karol Robak","nationality":"POL","sex":"male","date_of_birth":"1997-08-24T00:00:00.000Z","height":1.86,"weight":68,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":366245862,"name":"Karol Zalewski","nationality":"POL","sex":"male","date_of_birth":"1993-08-07T00:00:00.000Z","height":1.89,"weight":86,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":206688360,"name":"Karol-Ann Canuel","nationality":"CAN","sex":"female","date_of_birth":"1988-04-18T00:00:00.000Z","height":1.63,"weight":51,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":144492522,"name":"Karolina Koleczek","nationality":"POL","sex":"female","date_of_birth":"1993-01-15T00:00:00.000Z","height":1.68,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":855211189,"name":"Karolina Naja","nationality":"POL","sex":"female","date_of_birth":"1990-02-05T00:00:00.000Z","height":1.65,"weight":63,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":130728600,"name":"Karoline Bjerkeli Grovdal","nationality":"NOR","sex":"female","date_of_birth":"1990-06-14T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":387323294,"name":"Karoline Lusitania Tatafu","nationality":"TGA","sex":"female","date_of_birth":"1998-02-20T00:00:00.000Z","height":1.76,"weight":70,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":380236044,"name":"Karri McMahon","nationality":"AUS","sex":"female","date_of_birth":"1992-02-27T00:00:00.000Z","height":1.77,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":406293602,"name":"Karsta Lowe","nationality":"USA","sex":"female","date_of_birth":"1993-02-02T00:00:00.000Z","height":1.93,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":123017629,"name":"Karsten Dilla","nationality":"GER","sex":"male","date_of_birth":"1989-07-17T00:00:00.000Z","height":1.88,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":338139502,"name":"Karsten Forsterling","nationality":"AUS","sex":"male","date_of_birth":"1980-01-21T00:00:00.000Z","height":1.91,"weight":88,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":687827213,"name":"Karsten Warholm","nationality":"NOR","sex":"male","date_of_birth":"1996-02-28T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":45164432,"name":"Kasey Perry-Glass","nationality":"USA","sex":"female","date_of_birth":"1987-10-12T00:00:00.000Z","height":1.63,"weight":58,"sport":"equestrian","gold":0,"silver":0,"bronze":1,"info":null},{"id":824542494,"name":"Kaspar Taimsoo","nationality":"EST","sex":"male","date_of_birth":"1987-04-30T00:00:00.000Z","height":1.94,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":807443109,"name":"Kasper Joergensen","nationality":"DEN","sex":"male","date_of_birth":"1985-03-21T00:00:00.000Z","height":1.85,"weight":75,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":498991577,"name":"Kasper Larsen","nationality":"DEN","sex":"male","date_of_birth":"1993-01-25T00:00:00.000Z","height":1.9,"weight":88,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":821953802,"name":"Kasper Sondergaard","nationality":"DEN","sex":"male","date_of_birth":"1981-06-09T00:00:00.000Z","height":1.95,"weight":95,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":375680192,"name":"Kassidy Cook","nationality":"USA","sex":"female","date_of_birth":"1995-05-09T00:00:00.000Z","height":1.63,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":745894634,"name":"Kasumi Ishikawa","nationality":"JPN","sex":"female","date_of_birth":"1993-02-23T00:00:00.000Z","height":1.58,"weight":51,"sport":"table tennis","gold":0,"silver":0,"bronze":1,"info":null},{"id":372060903,"name":"Katai Yeerlanbieke","nationality":"CHN","sex":"male","date_of_birth":"1990-07-16T00:00:00.000Z","height":1.69,"weight":77,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":621329519,"name":"Katarina Beresova","nationality":"SVK","sex":"female","date_of_birth":"1987-10-10T00:00:00.000Z","height":1.62,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":963217820,"name":"Katarina Bulatovic","nationality":"MNE","sex":"female","date_of_birth":"1984-11-15T00:00:00.000Z","height":1.86,"weight":71,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":"The Montenegro handball team won an unprecedented silver medal at the London 2012 Olympic Games. With 53 goals, Katarina Bulatović was the topscorer of the competition – and repeated that feat at the European championship that same year."},{"id":682459058,"name":"Katarina Johnson-Thompson","nationality":"GBR","sex":"female","date_of_birth":"1993-01-09T00:00:00.000Z","height":1.83,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":776863385,"name":"Katarina Listopadova","nationality":"SVK","sex":"female","date_of_birth":"1993-03-22T00:00:00.000Z","height":1.69,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":448575637,"name":"Katarina Simonovic","nationality":"SRB","sex":"female","date_of_birth":"1994-10-25T00:00:00.000Z","height":1.64,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":701050744,"name":"Katarzyna Baranowska","nationality":"POL","sex":"female","date_of_birth":"1987-09-13T00:00:00.000Z","height":1.84,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":508525256,"name":"Katarzyna Grzybowska-Franc","nationality":"POL","sex":"female","date_of_birth":"1989-04-30T00:00:00.000Z","height":1.7,"weight":58,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":821941106,"name":"Katarzyna Jurkowska-Kowalska","nationality":"POL","sex":"female","date_of_birth":"1992-02-18T00:00:00.000Z","height":1.61,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":133150742,"name":"Katarzyna Klys","nationality":"POL","sex":"female","date_of_birth":"1986-04-23T00:00:00.000Z","height":1.74,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":779199386,"name":"Katarzyna Kowalska","nationality":"POL","sex":"female","date_of_birth":"1985-04-07T00:00:00.000Z","height":1.78,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":632636643,"name":"Katarzyna Krawczyk","nationality":"POL","sex":"female","date_of_birth":"1990-09-06T00:00:00.000Z","height":1.58,"weight":53,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":952109931,"name":"Katarzyna Niewiadoma","nationality":"POL","sex":"female","date_of_birth":"1994-09-29T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":601530122,"name":"Katarzyna Sokolska","nationality":"POL","sex":"female","date_of_birth":"1993-08-23T00:00:00.000Z","height":1.72,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":291806865,"name":"Katarzyna Trzopek","nationality":"USA","sex":"female","date_of_birth":"1981-05-06T00:00:00.000Z","height":1.76,"weight":74,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":609219433,"name":"Katarzyna Wilk","nationality":"POL","sex":"female","date_of_birth":"1992-03-22T00:00:00.000Z","height":1.78,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":103732523,"name":"Kate Christowitz","nationality":"RSA","sex":"female","date_of_birth":"1991-03-05T00:00:00.000Z","height":1.84,"weight":76,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":750498579,"name":"Kate Foo kune","nationality":"MRI","sex":"female","date_of_birth":"1993-03-29T00:00:00.000Z","height":null,"weight":null,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":659941173,"name":"Kate French","nationality":"GBR","sex":"female","date_of_birth":"1991-02-11T00:00:00.000Z","height":1.75,"weight":65,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":42745952,"name":"Kate Grace","nationality":"USA","sex":"female","date_of_birth":"1988-10-24T00:00:00.000Z","height":1.73,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":562453603,"name":"Kate O'Brien","nationality":"CAN","sex":"female","date_of_birth":"1988-07-23T00:00:00.000Z","height":1.68,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":669429758,"name":"Kate Richardson-Walsh","nationality":"GBR","sex":"female","date_of_birth":"1980-05-09T00:00:00.000Z","height":1.61,"weight":66,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":845437093,"name":"Katelin Snyder","nationality":"USA","sex":"female","date_of_birth":"1987-08-16T00:00:00.000Z","height":1.63,"weight":49,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":211784095,"name":"Katelyn Falgowski","nationality":"USA","sex":"female","date_of_birth":"1988-10-23T00:00:00.000Z","height":1.68,"weight":62,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":673565659,"name":"Katerina Cachova","nationality":"CZE","sex":"female","date_of_birth":"1990-02-26T00:00:00.000Z","height":1.73,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":425721150,"name":"Katerina Kudejova","nationality":"CZE","sex":"female","date_of_birth":"1990-01-17T00:00:00.000Z","height":1.73,"weight":63,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":455000082,"name":"Katerina Nash","nationality":"CZE","sex":"female","date_of_birth":"1977-12-09T00:00:00.000Z","height":1.64,"weight":52,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":823950105,"name":"Katerina Nikoloska","nationality":"MKD","sex":"female","date_of_birth":"1990-12-30T00:00:00.000Z","height":1.63,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":11497887,"name":"Katerina Safrankova","nationality":"CZE","sex":"female","date_of_birth":"1989-06-08T00:00:00.000Z","height":1.93,"weight":103,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":495858343,"name":"Katerine Savard","nationality":"CAN","sex":"female","date_of_birth":"1993-05-26T00:00:00.000Z","height":1.67,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":967587376,"name":"Kateryna Derun","nationality":"UKR","sex":"female","date_of_birth":"1993-09-24T00:00:00.000Z","height":1.67,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":478782814,"name":"Kateryna Sadurska","nationality":"UKR","sex":"female","date_of_birth":"1992-07-19T00:00:00.000Z","height":1.78,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":132167666,"name":"Katharina Haecker","nationality":"AUS","sex":"female","date_of_birth":"1992-07-31T00:00:00.000Z","height":1.72,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":798170261,"name":"Katharina Otte","nationality":"GER","sex":"female","date_of_birth":"1987-05-29T00:00:00.000Z","height":1.7,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":124647381,"name":"Katharine Holmes","nationality":"USA","sex":"female","date_of_birth":"1993-07-15T00:00:00.000Z","height":1.81,"weight":79,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":962942201,"name":"Katherine Copeland","nationality":"GBR","sex":"female","date_of_birth":"1990-12-01T00:00:00.000Z","height":1.72,"weight":58,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":342063929,"name":"Katherine Driscoll","nationality":"GBR","sex":"female","date_of_birth":"1986-03-13T00:00:00.000Z","height":1.57,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":799137715,"name":"Katherine Grainger","nationality":"GBR","sex":"female","date_of_birth":"1975-11-12T00:00:00.000Z","height":1.83,"weight":78,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":495646589,"name":"Katherine Julissa Rodriguez Peguero","nationality":"DOM","sex":"female","date_of_birth":"1991-12-18T00:00:00.000Z","height":1.86,"weight":75,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":812632627,"name":"Katherine Miller","nationality":"BRA","sex":"female","date_of_birth":"1994-05-09T00:00:00.000Z","height":1.8,"weight":74,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":110579331,"name":"Katherine Plouffe","nationality":"CAN","sex":"female","date_of_birth":"1992-09-15T00:00:00.000Z","height":1.9,"weight":89,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":864345352,"name":"Katherine Reinprecht","nationality":"USA","sex":"female","date_of_birth":"1989-11-01T00:00:00.000Z","height":1.63,"weight":56,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":36697871,"name":"Kathleen Baker","nationality":"USA","sex":"female","date_of_birth":"1997-02-28T00:00:00.000Z","height":1.73,"weight":67,"sport":"aquatics","gold":1,"silver":1,"bronze":0,"info":null},{"id":136505337,"name":"Kathleen Bam","nationality":"USA","sex":"female","date_of_birth":"1988-12-06T00:00:00.000Z","height":1.55,"weight":54,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":353620509,"name":"Kathleen Bertko","nationality":"USA","sex":"female","date_of_birth":"1983-11-08T00:00:00.000Z","height":1.76,"weight":58,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":280337491,"name":"Kathleen Sharkey","nationality":"USA","sex":"female","date_of_birth":"1990-04-30T00:00:00.000Z","height":1.63,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":530798213,"name":"Kathrin Hendrich","nationality":"GER","sex":"female","date_of_birth":"1992-04-06T00:00:00.000Z","height":1.72,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":257116773,"name":"Kathrin Klaas","nationality":"GER","sex":"female","date_of_birth":"1984-02-06T00:00:00.000Z","height":1.68,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":449245678,"name":"Kathrin Marchand","nationality":"GER","sex":"female","date_of_birth":"1990-11-15T00:00:00.000Z","height":1.83,"weight":69,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":490337534,"name":"Kathrin Unterwurzacher","nationality":"AUT","sex":"female","date_of_birth":"1992-06-05T00:00:00.000Z","height":1.73,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":911364658,"name":"Kathryn Johnson","nationality":"USA","sex":"female","date_of_birth":"1991-10-25T00:00:00.000Z","height":1.78,"weight":69,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":297106226,"name":"Kathryn Mitchell","nationality":"AUS","sex":"female","date_of_birth":"1982-07-10T00:00:00.000Z","height":1.68,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":126231469,"name":"Kathryn Robinson","nationality":"CAN","sex":"female","date_of_birth":"1985-08-04T00:00:00.000Z","height":1.79,"weight":58,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":181906965,"name":"Kathryn Slattery","nationality":"AUS","sex":"female","date_of_birth":"1993-07-30T00:00:00.000Z","height":1.73,"weight":68,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":624672038,"name":"Kati Tolmoff","nationality":"EST","sex":"female","date_of_birth":"1983-12-03T00:00:00.000Z","height":1.64,"weight":62,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":529644435,"name":"Katia Belabbas","nationality":"ALG","sex":"female","date_of_birth":"1996-02-01T00:00:00.000Z","height":1.7,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":437866225,"name":"Katie Archibald","nationality":"GBR","sex":"female","date_of_birth":"1994-03-12T00:00:00.000Z","height":1.78,"weight":70,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":85586674,"name":"Katie Bowen","nationality":"NZL","sex":"female","date_of_birth":"1994-04-15T00:00:00.000Z","height":1.72,"weight":56,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":56946849,"name":"Katie Clark","nationality":"GBR","sex":"female","date_of_birth":"1994-03-23T00:00:00.000Z","height":1.68,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":447673304,"name":"Katie Duncan","nationality":"NZL","sex":"female","date_of_birth":"1988-02-01T00:00:00.000Z","height":1.61,"weight":56,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":932382598,"name":"Katie Greves","nationality":"GBR","sex":"female","date_of_birth":"1982-09-02T00:00:00.000Z","height":1.79,"weight":71,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":960103057,"name":"Katie Ledecky","nationality":"USA","sex":"female","date_of_birth":"1997-03-17T00:00:00.000Z","height":1.83,"weight":72,"sport":"aquatics","gold":4,"silver":1,"bronze":0,"info":"She burst onto the scene at London 2012 by winning, at 15, gold in the 800m freestyle. The USA's Katie Ledecky has already climbed the podium in nine events over two world championships and broken 11 world records."},{"id":624052007,"name":"Katie Rae Ebzery","nationality":"AUS","sex":"female","date_of_birth":"1990-01-08T00:00:00.000Z","height":1.77,"weight":70,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":810072016,"name":"Katie Taylor","nationality":"IRL","sex":"female","date_of_birth":"1986-07-01T00:00:00.000Z","height":1.62,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":"Ireland's flag bearer at London 2012, Katie Taylor started boxing at the age of 11 and was instrumental in it becoming an Olympic sport for women. She is the current Olympic and European champion in the up to 60kg class and holds five world titles."},{"id":204377038,"name":"Katie Zaferes","nationality":"USA","sex":"female","date_of_birth":"1989-06-09T00:00:00.000Z","height":1.73,"weight":58,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":643664378,"name":"Katinka Hosszu","nationality":"HUN","sex":"female","date_of_birth":"1989-05-03T00:00:00.000Z","height":1.75,"weight":68,"sport":"aquatics","gold":3,"silver":1,"bronze":0,"info":null},{"id":353743276,"name":"Katja Steen Salskov-Iversen","nationality":"DEN","sex":"female","date_of_birth":"1994-08-19T00:00:00.000Z","height":1.73,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":1,"info":null},{"id":925144551,"name":"Katlin Tammiste","nationality":"EST","sex":"female","date_of_birth":"1996-04-06T00:00:00.000Z","height":1.69,"weight":63,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":762051242,"name":"Katrien Verstuyft","nationality":"BEL","sex":"female","date_of_birth":"1982-07-21T00:00:00.000Z","height":1.7,"weight":61,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":668148835,"name":"Katrin Garfoot","nationality":"AUS","sex":"female","date_of_birth":"1981-10-08T00:00:00.000Z","height":1.66,"weight":56,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":775998118,"name":"Katrina Gorry","nationality":"AUS","sex":"female","date_of_birth":"1992-08-13T00:00:00.000Z","height":1.54,"weight":54,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":842830190,"name":"Katrina Young","nationality":"USA","sex":"female","date_of_birth":"1992-01-10T00:00:00.000Z","height":1.63,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":152567636,"name":"Katrine Lunde","nationality":"NOR","sex":"female","date_of_birth":"1980-03-30T00:00:00.000Z","height":1.81,"weight":null,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":67639427,"name":"Katsiaryna Belanovich","nationality":"BLR","sex":"female","date_of_birth":"1991-10-14T00:00:00.000Z","height":1.73,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":462750147,"name":"Katsiaryna Halkina","nationality":"BLR","sex":"female","date_of_birth":"1997-02-25T00:00:00.000Z","height":1.67,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":67434341,"name":"Katsiaryna Snytsina","nationality":"BLR","sex":"female","date_of_birth":"1985-09-02T00:00:00.000Z","height":1.88,"weight":78,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":291078282,"name":"Katsumi Nakamura","nationality":"JPN","sex":"male","date_of_birth":"1994-02-21T00:00:00.000Z","height":1.83,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":902484579,"name":"Katsuyuki Sakai","nationality":"JPN","sex":"male","date_of_birth":"1988-09-07T00:00:00.000Z","height":1.72,"weight":85,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":482962110,"name":"Katsuyuki Tanamura","nationality":"JPN","sex":"male","date_of_birth":"1989-08-03T00:00:00.000Z","height":1.84,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":758751258,"name":"Katy Marchant","nationality":"GBR","sex":"female","date_of_birth":"1993-01-30T00:00:00.000Z","height":1.7,"weight":72,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":28894925,"name":"Katy McLean","nationality":"GBR","sex":"female","date_of_birth":"1985-12-19T00:00:00.000Z","height":1.67,"weight":70,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":257631088,"name":"Katy Sealy","nationality":"BIZ","sex":"female","date_of_birth":"1990-10-15T00:00:00.000Z","height":1.72,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":108089223,"name":"Kauiza Venancio","nationality":"BRA","sex":"female","date_of_birth":"1987-06-11T00:00:00.000Z","height":1.64,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":686041899,"name":"Kaur Kivistik","nationality":"EST","sex":"male","date_of_birth":"1991-04-29T00:00:00.000Z","height":1.92,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":25466533,"name":"Kaveh Mousavi","nationality":"IRI","sex":"male","date_of_birth":"1985-05-27T00:00:00.000Z","height":1.92,"weight":89,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":306669405,"name":"Kavita Tungar","nationality":"IND","sex":"female","date_of_birth":"1985-05-05T00:00:00.000Z","height":1.57,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":706766581,"name":"Kawika Shoji","nationality":"USA","sex":"male","date_of_birth":"1987-11-11T00:00:00.000Z","height":1.9,"weight":79,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":55365531,"name":"Kaya Adwoa Forson","nationality":"GHA","sex":"female","date_of_birth":"2002-03-19T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":707077587,"name":"Kayla Banwarth","nationality":"USA","sex":"female","date_of_birth":"1989-01-21T00:00:00.000Z","height":1.78,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":204954873,"name":"Kayla Harrison","nationality":"USA","sex":"female","date_of_birth":"1990-07-02T00:00:00.000Z","height":1.73,"weight":74,"sport":"judo","gold":1,"silver":0,"bronze":0,"info":"She started judo at the age of six, following in thefootsteps of her mother, a black belt. The Olympic champion in the + 78kg class at London 2012, the USA's Kayla Harrison has also won two Pan American golds, at Guadalajara 2011 and Toronto 2015."},{"id":852366261,"name":"Kayla Imrie","nationality":"NZL","sex":"female","date_of_birth":"1992-02-04T00:00:00.000Z","height":1.82,"weight":80,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":536942057,"name":"Kayla McAlister","nationality":"NZL","sex":"female","date_of_birth":"1988-08-06T00:00:00.000Z","height":1.69,"weight":70,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":"The sister of Luke McAlister, who for many years played in the national rugby union team (the All Blacks), Kayla McAlister only started playing rugby sevens in 2012, because of this sport's inclusion in the Rio 2016 schedule."},{"id":430232213,"name":"Kayla Moleschi","nationality":"CAN","sex":"female","date_of_birth":"1990-10-25T00:00:00.000Z","height":1.59,"weight":65,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":445589182,"name":"Kayla Pratt","nationality":"NZL","sex":"female","date_of_birth":"1991-05-27T00:00:00.000Z","height":1.79,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":892601199,"name":"Kayla Whitelock","nationality":"NZL","sex":"female","date_of_birth":"1985-10-30T00:00:00.000Z","height":1.74,"weight":72,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":279377870,"name":"Kaylin Swart","nationality":"RSA","sex":"female","date_of_birth":"1994-09-30T00:00:00.000Z","height":null,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":581084844,"name":"Kaylyn Kyle","nationality":"CAN","sex":"female","date_of_birth":"1988-10-06T00:00:00.000Z","height":1.73,"weight":62,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":187283498,"name":"Kayoko Fukushi","nationality":"JPN","sex":"female","date_of_birth":"1982-03-25T00:00:00.000Z","height":1.6,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":250885863,"name":"Kayra Sayit","nationality":"TUR","sex":"female","date_of_birth":"1988-02-13T00:00:00.000Z","height":1.65,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":522045258,"name":"Kazuhiro Goya","nationality":"JPN","sex":"male","date_of_birth":"1993-04-21T00:00:00.000Z","height":1.7,"weight":77,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":79558057,"name":"Kazuki Yazawa","nationality":"JPN","sex":"male","date_of_birth":"1989-03-04T00:00:00.000Z","height":1.67,"weight":65,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":717693447,"name":"Kazunari Watanabe","nationality":"JPN","sex":"male","date_of_birth":"1983-08-12T00:00:00.000Z","height":1.76,"weight":80,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":974913515,"name":"Kazushi Hano","nationality":"JPN","sex":"male","date_of_birth":"1991-06-21T00:00:00.000Z","height":1.85,"weight":87,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":609247354,"name":"Kazushige Kuboki","nationality":"JPN","sex":"male","date_of_birth":"1989-06-06T00:00:00.000Z","height":1.72,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":874759036,"name":"Kazuto Doi","nationality":"JPN","sex":"male","date_of_birth":"1992-03-17T00:00:00.000Z","height":1.75,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":575081974,"name":"Kazuya Shiojiri","nationality":"JPN","sex":"male","date_of_birth":"1996-11-08T00:00:00.000Z","height":1.7,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":701275596,"name":"Kazuyasu Minobe","nationality":"JPN","sex":"male","date_of_birth":"1987-07-15T00:00:00.000Z","height":1.77,"weight":75,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":543655093,"name":"Kc Fraser","nationality":"CAN","sex":"female","date_of_birth":"1986-03-29T00:00:00.000Z","height":1.73,"weight":68,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":391464185,"name":"Keagan Dolly","nationality":"RSA","sex":"male","date_of_birth":"1993-01-22T00:00:00.000Z","height":1.73,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":306652910,"name":"Keegan Pereira","nationality":"CAN","sex":"male","date_of_birth":"1991-09-08T00:00:00.000Z","height":1.66,"weight":59,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":123790061,"name":"Keerati Bualong","nationality":"THA","sex":"male","date_of_birth":"1992-12-06T00:00:00.000Z","height":1.81,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":779357330,"name":"Keesja Gofers","nationality":"AUS","sex":"female","date_of_birth":"1990-03-16T00:00:00.000Z","height":1.76,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":427387220,"name":"Kefasi Chitsala","nationality":"MAW","sex":"male","date_of_birth":"1994-06-24T00:00:00.000Z","height":1.7,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":953524242,"name":"Kei Marumo","nationality":"JPN","sex":"female","date_of_birth":"1992-03-06T00:00:00.000Z","height":1.6,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":330313227,"name":"Kei Nishikori","nationality":"JPN","sex":"male","date_of_birth":"1989-12-29T00:00:00.000Z","height":1.78,"weight":70,"sport":"tennis","gold":0,"silver":0,"bronze":1,"info":null},{"id":364955058,"name":"Kei Takase","nationality":"JPN","sex":"male","date_of_birth":"1988-11-25T00:00:00.000Z","height":1.8,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":53827184,"name":"Keigo Okawa","nationality":"JPN","sex":"male","date_of_birth":"1990-03-11T00:00:00.000Z","height":1.83,"weight":96,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":437883325,"name":"Keiko Miyagawa","nationality":"JPN","sex":"female","date_of_birth":"1986-05-17T00:00:00.000Z","height":1.52,"weight":53,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":522124135,"name":"Keila Costa","nationality":"BRA","sex":"female","date_of_birth":"1983-02-06T00:00:00.000Z","height":1.7,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":13083999,"name":"Keisuke Nozawa","nationality":"JPN","sex":"male","date_of_birth":"1991-06-07T00:00:00.000Z","height":1.75,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":151980843,"name":"Keisuke Ushiro","nationality":"JPN","sex":"male","date_of_birth":"1986-07-24T00:00:00.000Z","height":1.96,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":127445268,"name":"Keith Ferguson","nationality":"AUS","sex":"male","date_of_birth":"1979-09-07T00:00:00.000Z","height":1.76,"weight":78,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":450005449,"name":"Keith Sanderson","nationality":"USA","sex":"male","date_of_birth":"1975-02-02T00:00:00.000Z","height":1.83,"weight":95,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":357855872,"name":"Kelita Zupancic","nationality":"CAN","sex":"female","date_of_birth":"1990-05-09T00:00:00.000Z","height":1.69,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":564720756,"name":"Kelley Hurley","nationality":"USA","sex":"female","date_of_birth":"1988-04-04T00:00:00.000Z","height":1.76,"weight":74,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":623867004,"name":"Kelley O Hara","nationality":"USA","sex":"female","date_of_birth":"1988-08-04T00:00:00.000Z","height":1.65,"weight":54,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":444880457,"name":"Kellion Knibb","nationality":"JAM","sex":"female","date_of_birth":"1993-12-25T00:00:00.000Z","height":1.83,"weight":86,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":500380678,"name":"Kelly Araouzou","nationality":"GRE","sex":"female","date_of_birth":"1991-03-06T00:00:00.000Z","height":1.69,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":230772998,"name":"Kelly Brazier","nationality":"NZL","sex":"female","date_of_birth":"1989-10-28T00:00:00.000Z","height":1.71,"weight":70,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":828916384,"name":"Kelly Catlin","nationality":"USA","sex":"female","date_of_birth":"1995-11-03T00:00:00.000Z","height":1.68,"weight":63,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":766396208,"name":"Kelly Dulfer","nationality":"NED","sex":"female","date_of_birth":"1994-03-21T00:00:00.000Z","height":1.85,"weight":78,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":963773248,"name":"Kelly Griffin","nationality":"USA","sex":"female","date_of_birth":"1986-11-07T00:00:00.000Z","height":1.63,"weight":68,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":690756146,"name":"Kelly Jonker","nationality":"NED","sex":"female","date_of_birth":"1990-05-23T00:00:00.000Z","height":1.59,"weight":59,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":998437044,"name":"Kelly Massey","nationality":"GBR","sex":"female","date_of_birth":"1985-01-11T00:00:00.000Z","height":1.67,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":142742348,"name":"Kelly Murphy","nationality":"USA","sex":"female","date_of_birth":"1989-10-20T00:00:00.000Z","height":1.88,"weight":79,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":768193146,"name":"Kelly Russell","nationality":"CAN","sex":"female","date_of_birth":"1986-12-07T00:00:00.000Z","height":1.78,"weight":83,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":857131931,"name":"Kelly Santos","nationality":"BRA","sex":"female","date_of_birth":"1979-11-10T00:00:00.000Z","height":1.92,"weight":92,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":106147663,"name":"Kelly Tan","nationality":"MAS","sex":"female","date_of_birth":"1993-10-26T00:00:00.000Z","height":1.65,"weight":61,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":715061380,"name":"Kelly-Ann Baptiste","nationality":"TTO","sex":"female","date_of_birth":"1986-10-14T00:00:00.000Z","height":1.67,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":576431902,"name":"Kellys Arias","nationality":"COL","sex":"female","date_of_birth":"1989-07-03T00:00:00.000Z","height":null,"weight":150,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":257977443,"name":"Kelsey Bevan","nationality":"NZL","sex":"female","date_of_birth":"1990-04-10T00:00:00.000Z","height":1.74,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":667833997,"name":"Kelsey Card","nationality":"USA","sex":"female","date_of_birth":"1992-08-20T00:00:00.000Z","height":1.78,"weight":115,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":549733789,"name":"Kelsey Kolojejchick","nationality":"USA","sex":"female","date_of_birth":"1991-10-02T00:00:00.000Z","height":1.61,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":132170004,"name":"Kelsey Robinson","nationality":"USA","sex":"female","date_of_birth":"1992-06-25T00:00:00.000Z","height":1.88,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":70574268,"name":"Kelsey Smith","nationality":"NZL","sex":"female","date_of_birth":"1994-08-11T00:00:00.000Z","height":1.63,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":963525573,"name":"Kelsey Wakefield","nationality":"AUS","sex":"female","date_of_birth":"1991-06-01T00:00:00.000Z","height":1.78,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":149754220,"name":"Kelsey-Lee Roberts","nationality":"AUS","sex":"female","date_of_birth":"1991-09-20T00:00:00.000Z","height":1.75,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":596257734,"name":"Kelsi Worrell","nationality":"USA","sex":"female","date_of_birth":"1994-07-15T00:00:00.000Z","height":1.81,"weight":74,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":355934349,"name":"Kelsie Ahbe","nationality":"CAN","sex":"female","date_of_birth":"1991-07-06T00:00:00.000Z","height":1.7,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":713350600,"name":"Kelvin Cana Infante","nationality":"VEN","sex":"male","date_of_birth":"1987-08-06T00:00:00.000Z","height":1.73,"weight":72,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":99564974,"name":"Kemal Mesic","nationality":"BIH","sex":"male","date_of_birth":"1985-08-04T00:00:00.000Z","height":1.96,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":216203916,"name":"Kemar Bailey-Cole","nationality":"JAM","sex":"male","date_of_birth":"1992-01-10T00:00:00.000Z","height":1.93,"weight":84,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":762215715,"name":"Kemar Hyman","nationality":"CAY","sex":"male","date_of_birth":"1989-10-11T00:00:00.000Z","height":1.78,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":336905285,"name":"Kemarley Brown","nationality":"BRN","sex":"male","date_of_birth":"1992-07-20T00:00:00.000Z","height":1.82,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":122476731,"name":"Kemoy Campbell","nationality":"JAM","sex":"male","date_of_birth":"1991-01-14T00:00:00.000Z","height":1.68,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":891361844,"name":"Ken Sema","nationality":"SWE","sex":"male","date_of_birth":"1993-09-30T00:00:00.000Z","height":1.8,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":217152230,"name":"Ken Terauchi","nationality":"JPN","sex":"male","date_of_birth":"1980-08-07T00:00:00.000Z","height":1.7,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":653195457,"name":"Ken Wallace","nationality":"AUS","sex":"male","date_of_birth":"1983-07-26T00:00:00.000Z","height":1.9,"weight":90,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":410580066,"name":"Kendell Williams","nationality":"USA","sex":"female","date_of_birth":"1995-06-14T00:00:00.000Z","height":1.78,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":609984968,"name":"Kendra Clarke","nationality":"CAN","sex":"female","date_of_birth":"1996-11-16T00:00:00.000Z","height":1.67,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":799965606,"name":"Kendrick James Farris","nationality":"USA","sex":"male","date_of_birth":"1986-07-02T00:00:00.000Z","height":1.68,"weight":93,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":960809660,"name":"Kenia Lechuga Alanis","nationality":"MEX","sex":"female","date_of_birth":"1994-06-26T00:00:00.000Z","height":1.62,"weight":59,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":254007387,"name":"Kenia Sinclair","nationality":"JAM","sex":"female","date_of_birth":"1980-07-14T00:00:00.000Z","height":1.7,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":436752047,"name":"Kenichi Hayakawa","nationality":"JPN","sex":"male","date_of_birth":"1986-04-05T00:00:00.000Z","height":1.77,"weight":80,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":990014757,"name":"Kenji Fujimitsu","nationality":"JPN","sex":"male","date_of_birth":"1986-05-01T00:00:00.000Z","height":1.82,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":570694823,"name":"Kenji Kobase","nationality":"JPN","sex":"male","date_of_birth":"1987-07-31T00:00:00.000Z","height":1.8,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":206392869,"name":"Kenji Takahashi","nationality":"JPN","sex":"male","date_of_birth":"1982-08-21T00:00:00.000Z","height":1.86,"weight":77,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":316685534,"name":"Kenki Fukuoka","nationality":"JPN","sex":"male","date_of_birth":"1992-09-07T00:00:00.000Z","height":1.76,"weight":85,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":41041819,"name":"Kennedy Goss","nationality":"CAN","sex":"female","date_of_birth":"1996-08-19T00:00:00.000Z","height":1.73,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":347348758,"name":"Kennedy Katende","nationality":"UGA","sex":"male","date_of_birth":"1985-03-15T00:00:00.000Z","height":1.76,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":392095745,"name":"Kennedy St Pierre","nationality":"MRI","sex":"male","date_of_birth":"1992-10-23T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":907808928,"name":"Kent Farrington","nationality":"USA","sex":"male","date_of_birth":"1980-12-28T00:00:00.000Z","height":1.73,"weight":65,"sport":"equestrian","gold":0,"silver":1,"bronze":0,"info":null},{"id":936887083,"name":"Kenta Kazuno","nationality":"JPN","sex":"male","date_of_birth":"1985-11-25T00:00:00.000Z","height":1.71,"weight":68,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":750688405,"name":"Kenta Tokunan","nationality":"JPN","sex":"male","date_of_birth":"1987-08-17T00:00:00.000Z","height":1.83,"weight":83,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":919960658,"name":"Kentaro Sato","nationality":"JPN","sex":"male","date_of_birth":"1994-11-16T00:00:00.000Z","height":1.74,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":478863771,"name":"Kentin Mahe","nationality":"FRA","sex":"male","date_of_birth":"1991-05-22T00:00:00.000Z","height":1.86,"weight":83,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":50571429,"name":"Kenya Yasuda","nationality":"JPN","sex":"male","date_of_birth":"1989-03-29T00:00:00.000Z","height":1.82,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":948018416,"name":"Kenza Dahmani Tifahi","nationality":"ALG","sex":"female","date_of_birth":"1980-11-18T00:00:00.000Z","height":1.64,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":206971699,"name":"Kenza Dali","nationality":"FRA","sex":"female","date_of_birth":"1991-07-31T00:00:00.000Z","height":1.65,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":694582399,"name":"Kenzo Shirai","nationality":"JPN","sex":"male","date_of_birth":"1996-08-24T00:00:00.000Z","height":1.62,"weight":51,"sport":"gymnastics","gold":1,"silver":0,"bronze":1,"info":null},{"id":519543861,"name":"Keren Siebner","nationality":"ISR","sex":"female","date_of_birth":"1990-06-09T00:00:00.000Z","height":1.8,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":976260835,"name":"Keri-Anne Payne","nationality":"GBR","sex":"female","date_of_birth":"1987-12-09T00:00:00.000Z","height":1.77,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":423484325,"name":"Kerri Gowler","nationality":"NZL","sex":"female","date_of_birth":"1993-12-18T00:00:00.000Z","height":1.82,"weight":76,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":499209508,"name":"Kerri Walsh Jennings","nationality":"USA","sex":"female","date_of_birth":"1978-08-15T00:00:00.000Z","height":1.88,"weight":72,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":"This three-time world champion is married to fellow player Casey Jennings (and a mother of three), the USA's Kerri Walsh Jennings has never lost a game at the Olympics – winning gold at Athens 2004, Beijing 2008 and London 2012 with Misty May."},{"id":891867859,"name":"Kerron Clement","nationality":"USA","sex":"male","date_of_birth":"1985-10-31T00:00:00.000Z","height":1.88,"weight":86,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":233041375,"name":"Kerry Hore","nationality":"AUS","sex":"female","date_of_birth":"1981-07-03T00:00:00.000Z","height":1.83,"weight":74,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":281101041,"name":"Kerry O'Flaherty","nationality":"IRL","sex":"female","date_of_birth":"1981-07-15T00:00:00.000Z","height":1.67,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":419463510,"name":"Kerry Simmonds","nationality":"USA","sex":"female","date_of_birth":"1989-04-03T00:00:00.000Z","height":1.83,"weight":81,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":897407929,"name":"Kersten Thiele","nationality":"GER","sex":"male","date_of_birth":"1992-09-29T00:00:00.000Z","height":1.79,"weight":75,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":199341754,"name":"Kerstin Hartmann","nationality":"GER","sex":"female","date_of_birth":"1988-06-14T00:00:00.000Z","height":1.77,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":146173723,"name":"Keryn McMaster","nationality":"AUS","sex":"female","date_of_birth":"1993-09-19T00:00:00.000Z","height":1.69,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":770832062,"name":"Keshorn Walcott","nationality":"TTO","sex":"male","date_of_birth":"1993-04-02T00:00:00.000Z","height":1.83,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":416635977,"name":"Keston Bledman","nationality":"TTO","sex":"male","date_of_birth":"1998-03-08T00:00:00.000Z","height":1.8,"weight":88,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":232848294,"name":"Ketija Birzule","nationality":"LAT","sex":"female","date_of_birth":"1998-10-30T00:00:00.000Z","height":1.64,"weight":60,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":197595753,"name":"Keturah Orji","nationality":"USA","sex":"female","date_of_birth":"1996-03-05T00:00:00.000Z","height":1.66,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":833124628,"name":"Kevin Alvarez","nationality":"HON","sex":"male","date_of_birth":"1996-08-03T00:00:00.000Z","height":1.81,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":746715808,"name":"Kevin Balanta","nationality":"COL","sex":"male","date_of_birth":"1997-04-28T00:00:00.000Z","height":1.83,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":623836898,"name":"Kevin Borlee","nationality":"BEL","sex":"male","date_of_birth":"1988-02-22T00:00:00.000Z","height":1.8,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":966461542,"name":"Kevin Bouly","nationality":"FRA","sex":"male","date_of_birth":"1981-04-26T00:00:00.000Z","height":1.77,"weight":94,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":262171881,"name":"Kevin Campion","nationality":"FRA","sex":"male","date_of_birth":"1988-05-23T00:00:00.000Z","height":1.83,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":772532077,"name":"Kevin Chavez Banda","nationality":"AUS","sex":"male","date_of_birth":"1992-07-09T00:00:00.000Z","height":1.7,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":905417640,"name":"Kevin Cordes","nationality":"USA","sex":"male","date_of_birth":"1993-08-13T00:00:00.000Z","height":2.21,"weight":88,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":665096571,"name":"Kevin Cordon","nationality":"GUA","sex":"male","date_of_birth":"1986-11-28T00:00:00.000Z","height":1.8,"weight":80,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":936447136,"name":"Kevin Crovetto","nationality":"MON","sex":"male","date_of_birth":"1992-06-10T00:00:00.000Z","height":1.83,"weight":81,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":887138863,"name":"Kevin Durant","nationality":"USA","sex":"male","date_of_birth":"1988-09-29T00:00:00.000Z","height":2.05,"weight":104,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":"This London 2012 Olympic and 2010 world champion (voted the MVP of the latter competition), won as the USA's small forward, Kevin Durant has also topped the NBA scoring charts four times."},{"id":947055286,"name":"Kevin Lisch","nationality":"AUS","sex":"male","date_of_birth":"1986-05-16T00:00:00.000Z","height":1.88,"weight":89,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":985840182,"name":"Kevin Lopez","nationality":"HON","sex":"male","date_of_birth":"1996-02-03T00:00:00.000Z","height":1.7,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":631415010,"name":"Kevin Lopez","nationality":"ESP","sex":"male","date_of_birth":"1990-06-12T00:00:00.000Z","height":1.71,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":385550989,"name":"Kevin Mayer","nationality":"FRA","sex":"male","date_of_birth":"1992-02-10T00:00:00.000Z","height":1.86,"weight":77,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":73691099,"name":"Kevin Menaldo","nationality":"FRA","sex":"male","date_of_birth":"1992-07-12T00:00:00.000Z","height":1.76,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":251643521,"name":"Kevin Seaward","nationality":"IRL","sex":"male","date_of_birth":"1983-10-03T00:00:00.000Z","height":1.75,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":78313591,"name":"Kevin Staut","nationality":"FRA","sex":"male","date_of_birth":"1980-11-15T00:00:00.000Z","height":1.82,"weight":70,"sport":"equestrian","gold":1,"silver":0,"bronze":0,"info":null},{"id":958136860,"name":"Kevin Tillie","nationality":"FRA","sex":"male","date_of_birth":"1990-11-02T00:00:00.000Z","height":2,"weight":85,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":30949158,"name":"Kevin le Roux","nationality":"FRA","sex":"male","date_of_birth":"1989-05-11T00:00:00.000Z","height":2.09,"weight":98,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":650099766,"name":"Keyuan Shang","nationality":"CHN","sex":"male","date_of_birth":"1995-02-04T00:00:00.000Z","height":1.83,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":897015482,"name":"Khaddi Sagnia","nationality":"SWE","sex":"female","date_of_birth":"1994-04-20T00:00:00.000Z","height":1.73,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":260431373,"name":"Khader Ghetrich Baqlah","nationality":"JOR","sex":"male","date_of_birth":"1998-09-15T00:00:00.000Z","height":1.84,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":107338569,"name":"Khadija Krimi","nationality":"TUN","sex":"female","date_of_birth":"1995-08-18T00:00:00.000Z","height":1.71,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":828792898,"name":"Khadija Mardi","nationality":"MAR","sex":"female","date_of_birth":"1991-02-01T00:00:00.000Z","height":1.83,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":328541816,"name":"Khairul Anuar Mohamad","nationality":"MAS","sex":"male","date_of_birth":"1991-09-22T00:00:00.000Z","height":1.71,"weight":75,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":460049325,"name":"Khairulnizam Mohd Afendy","nationality":"MAS","sex":"male","date_of_birth":"1993-05-27T00:00:00.000Z","height":1.82,"weight":81,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":176645733,"name":"Khaled Alkaabi","nationality":"UAE","sex":"male","date_of_birth":"1985-06-25T00:00:00.000Z","height":1.68,"weight":85,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":238249359,"name":"Khaled Almudhaf","nationality":"IOA","sex":"male","date_of_birth":"1978-06-12T00:00:00.000Z","height":1.63,"weight":105,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":936049605,"name":"Khaled Haj Youssef","nationality":"TUN","sex":"male","date_of_birth":"1989-01-12T00:00:00.000Z","height":1.89,"weight":92,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":594297353,"name":"Khaled Houcine","nationality":"TUN","sex":"male","date_of_birth":"1990-07-19T00:00:00.000Z","height":1.87,"weight":90,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":659967898,"name":"Khalid Assar","nationality":"EGY","sex":"male","date_of_birth":"1992-12-10T00:00:00.000Z","height":1.98,"weight":99,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":436529232,"name":"Khalid El Aabidi","nationality":"MAR","sex":"male","date_of_birth":"1995-09-14T00:00:00.000Z","height":1.78,"weight":81,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":999784977,"name":"Khalifa St Fort","nationality":"TTO","sex":"female","date_of_birth":"1998-02-13T00:00:00.000Z","height":1.65,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":9175796,"name":"Khamica Bingham","nationality":"CAN","sex":"female","date_of_birth":"1994-06-15T00:00:00.000Z","height":1.6,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":182346893,"name":"Khasan Khalmurzaev","nationality":"RUS","sex":"male","date_of_birth":"1993-10-09T00:00:00.000Z","height":1.82,"weight":81,"sport":"judo","gold":1,"silver":0,"bronze":0,"info":null},{"id":1610209,"name":"Khaterinne Medina","nationality":"COL","sex":"female","date_of_birth":"1992-10-31T00:00:00.000Z","height":1.62,"weight":60,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":282117681,"name":"Khatuna Narimanidze","nationality":"GEO","sex":"female","date_of_birth":"1974-02-02T00:00:00.000Z","height":1.75,"weight":79,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":118156581,"name":"Khe Wei Woon","nationality":"MAS","sex":"female","date_of_birth":"1989-03-18T00:00:00.000Z","height":1.74,"weight":63,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":18654335,"name":"Kheira Hamraoui","nationality":"FRA","sex":"female","date_of_birth":"1990-01-13T00:00:00.000Z","height":1.79,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":870781056,"name":"Kheta Ram","nationality":"IND","sex":"male","date_of_birth":"1986-09-20T00:00:00.000Z","height":1.69,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":813748404,"name":"Khetag Goziumov","nationality":"AZE","sex":"male","date_of_birth":"1983-04-24T00:00:00.000Z","height":1.8,"weight":97,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":345063300,"name":"Khrystyna Stuy","nationality":"UKR","sex":"female","date_of_birth":"1988-02-03T00:00:00.000Z","height":1.68,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":824851938,"name":"Khuderbulga Dorjkhand","nationality":"MGL","sex":"male","date_of_birth":"1992-05-07T00:00:00.000Z","height":1.81,"weight":102,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":953232269,"name":"Khushbir Kaur","nationality":"IND","sex":"female","date_of_birth":"1993-07-09T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":285632383,"name":"Kia Nurse","nationality":"CAN","sex":"female","date_of_birth":"1996-02-22T00:00:00.000Z","height":1.82,"weight":68,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":841438155,"name":"Kiana Eide","nationality":"USA","sex":"female","date_of_birth":"1998-09-25T00:00:00.000Z","height":1.61,"weight":53,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":966322568,"name":"Kianoush Rostami","nationality":"IRI","sex":"male","date_of_birth":"1991-07-23T00:00:00.000Z","height":1.77,"weight":84,"sport":"weightlifting","gold":1,"silver":0,"bronze":0,"info":null},{"id":224527761,"name":"Kibwe Johnson","nationality":"USA","sex":"male","date_of_birth":"1981-07-17T00:00:00.000Z","height":1.88,"weight":102,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":355505466,"name":"Kieran Behan","nationality":"IRL","sex":"male","date_of_birth":"1989-04-19T00:00:00.000Z","height":1.63,"weight":65,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":135963530,"name":"Kierra Smith","nationality":"CAN","sex":"female","date_of_birth":"1994-02-01T00:00:00.000Z","height":1.5,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":414269646,"name":"Kierre Beckles","nationality":"BAR","sex":"female","date_of_birth":"1990-05-21T00:00:00.000Z","height":1.76,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":403554973,"name":"Kiichi Harada","nationality":"JPN","sex":"male","date_of_birth":"1972-11-30T00:00:00.000Z","height":1.75,"weight":73,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":795413338,"name":"Kiju Park","nationality":"KOR","sex":"female","date_of_birth":"1990-02-14T00:00:00.000Z","height":1.67,"weight":69,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":891148925,"name":"Kiki Bertens","nationality":"NED","sex":"female","date_of_birth":"1991-12-10T00:00:00.000Z","height":1.82,"weight":78,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":612003301,"name":"Kiko Yokota","nationality":"JPN","sex":"female","date_of_birth":"1997-05-11T00:00:00.000Z","height":1.61,"weight":44,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":654132840,"name":"Kiley Neushul","nationality":"USA","sex":"female","date_of_birth":"1993-03-05T00:00:00.000Z","height":1.73,"weight":65,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":650765839,"name":"Kilian le Blouch","nationality":"FRA","sex":"male","date_of_birth":"1989-10-07T00:00:00.000Z","height":1.71,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":746145303,"name":"Kim Amb","nationality":"SWE","sex":"male","date_of_birth":"1990-07-31T00:00:00.000Z","height":1.8,"weight":87,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":146402828,"name":"Kim Andersson","nationality":"SWE","sex":"male","date_of_birth":"1982-08-21T00:00:00.000Z","height":2,"weight":105,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":434139197,"name":"Kim Bui","nationality":"GER","sex":"female","date_of_birth":"1989-01-20T00:00:00.000Z","height":1.56,"weight":49,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":245238655,"name":"Kim Collins","nationality":"SKN","sex":"male","date_of_birth":"1976-04-05T00:00:00.000Z","height":1.8,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":189393338,"name":"Kim Conley","nationality":"USA","sex":"female","date_of_birth":"1986-03-14T00:00:00.000Z","height":1.61,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":266914710,"name":"Kim Gaucher","nationality":"CAN","sex":"female","date_of_birth":"1984-05-07T00:00:00.000Z","height":1.85,"weight":72,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":854142388,"name":"Kim Mickle","nationality":"AUS","sex":"female","date_of_birth":"1984-12-28T00:00:00.000Z","height":1.68,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":759190706,"name":"Kim Polling","nationality":"NED","sex":"female","date_of_birth":"1991-02-08T00:00:00.000Z","height":1.75,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":579217144,"name":"Kim Tillie","nationality":"FRA","sex":"male","date_of_birth":"1988-07-15T00:00:00.000Z","height":2.11,"weight":105,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":533153330,"name":"Kim Tuan Thach","nationality":"VIE","sex":"male","date_of_birth":"1994-01-15T00:00:00.000Z","height":1.6,"weight":56,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":20980045,"name":"Kimberley Brennan","nationality":"AUS","sex":"female","date_of_birth":"1985-08-09T00:00:00.000Z","height":1.88,"weight":74,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":403279900,"name":"Kimberly Buys","nationality":"BEL","sex":"female","date_of_birth":"1989-04-23T00:00:00.000Z","height":1.87,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":991525559,"name":"Kimberly Garcia","nationality":"PER","sex":"female","date_of_birth":"1993-10-19T00:00:00.000Z","height":1.64,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":649635243,"name":"Kimberly Hill","nationality":"USA","sex":"female","date_of_birth":"1989-11-30T00:00:00.000Z","height":1.93,"weight":72,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":904668387,"name":"Kimberly Hyacinthe","nationality":"CAN","sex":"female","date_of_birth":"1989-03-28T00:00:00.000Z","height":1.79,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":447699488,"name":"Kimberly Rhode","nationality":"USA","sex":"female","date_of_birth":"1979-07-16T00:00:00.000Z","height":1.63,"weight":83,"sport":"shooting","gold":0,"silver":0,"bronze":1,"info":"With the most medals won in shooting, the USA's Kim Rhode has climbed the podium at each of the past five Olympic Games, in the double trap and skeet – gold at Atlanta 1996, Athens 2004 and London 2012, silver at Beijing 2008 and bronze at Sydney 2000."},{"id":195712246,"name":"Kimberly Williams","nationality":"JAM","sex":"female","date_of_birth":"1988-11-03T00:00:00.000Z","height":1.78,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":943752318,"name":"Kimia Alizadeh Zenoorin","nationality":"IRI","sex":"female","date_of_birth":"1998-07-10T00:00:00.000Z","height":1.85,"weight":62,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":145845453,"name":"Kimihiko Imamura","nationality":"JPN","sex":"male","date_of_birth":"1984-02-03T00:00:00.000Z","height":1.8,"weight":78,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":897050880,"name":"Kimiko Raheem","nationality":"SRI","sex":"female","date_of_birth":"1999-01-28T00:00:00.000Z","height":1.65,"weight":51,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":960777579,"name":"Kineke Alexander","nationality":"VIN","sex":"female","date_of_birth":"1986-02-21T00:00:00.000Z","height":1.78,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":637755383,"name":"King Lok Cheung","nationality":"HKG","sex":"male","date_of_birth":"1991-02-08T00:00:00.000Z","height":1.72,"weight":77,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":688432611,"name":"Kinga Kolosinska","nationality":"POL","sex":"female","date_of_birth":"1990-06-02T00:00:00.000Z","height":1.79,"weight":67,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":240927532,"name":"Kingsley Madu","nationality":"NGR","sex":"male","date_of_birth":"1995-12-12T00:00:00.000Z","height":1.71,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":247889491,"name":"Kiplangat Sang","nationality":"KEN","sex":"male","date_of_birth":"1981-04-14T00:00:00.000Z","height":1.75,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":656286014,"name":"Kira Stepanova","nationality":"RUS","sex":"female","date_of_birth":"1993-11-12T00:00:00.000Z","height":null,"weight":null,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":528363849,"name":"Kira Toussaint","nationality":"NED","sex":"female","date_of_birth":"1994-05-22T00:00:00.000Z","height":1.74,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":234124358,"name":"Kira Walkenhorst","nationality":"GER","sex":"female","date_of_birth":"1990-11-18T00:00:00.000Z","height":1.85,"weight":75,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":889456958,"name":"Kiradech Aphibarnrat","nationality":"THA","sex":"male","date_of_birth":"1989-07-23T00:00:00.000Z","height":1.72,"weight":106,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":106579503,"name":"Kirani James","nationality":"GRN","sex":"male","date_of_birth":"1992-09-01T00:00:00.000Z","height":null,"weight":66,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":288650137,"name":"Kirill Denisov","nationality":"RUS","sex":"male","date_of_birth":"1988-01-25T00:00:00.000Z","height":1.82,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":785590368,"name":"Kirill Gerassimenko","nationality":"KAZ","sex":"male","date_of_birth":"1996-12-18T00:00:00.000Z","height":1.75,"weight":64,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":2938886,"name":"Kirill Grigoryan","nationality":"RUS","sex":"male","date_of_birth":"1992-04-02T00:00:00.000Z","height":1.79,"weight":88,"sport":"shooting","gold":0,"silver":0,"bronze":1,"info":null},{"id":228483818,"name":"Kirill Lyapunov","nationality":"RUS","sex":"male","date_of_birth":"1986-03-24T00:00:00.000Z","height":1.8,"weight":81,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":388644612,"name":"Kirill Prigoda","nationality":"RUS","sex":"male","date_of_birth":"1995-12-29T00:00:00.000Z","height":1.92,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":412500956,"name":"Kirk Shimmins","nationality":"IRL","sex":"male","date_of_birth":"1994-06-01T00:00:00.000Z","height":1.75,"weight":68,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":580208102,"name":"Kirsten Flipkens","nationality":"BEL","sex":"female","date_of_birth":"1986-01-10T00:00:00.000Z","height":1.65,"weight":59,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":807032440,"name":"Kirsten McCANN","nationality":"RSA","sex":"female","date_of_birth":"1988-08-25T00:00:00.000Z","height":1.7,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":248407953,"name":"Kirsten Pearce","nationality":"NZL","sex":"female","date_of_birth":"1991-04-10T00:00:00.000Z","height":1.62,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":704187599,"name":"Kirsten Sweetland","nationality":"CAN","sex":"female","date_of_birth":"1988-09-24T00:00:00.000Z","height":1.63,"weight":49,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":907795948,"name":"Kirsten Wild","nationality":"NED","sex":"female","date_of_birth":"1982-10-15T00:00:00.000Z","height":1.78,"weight":78,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":917790149,"name":"Kirsti Lay","nationality":"CAN","sex":"female","date_of_birth":"1988-04-07T00:00:00.000Z","height":1.73,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":857038290,"name":"Kirstie Elaine Alora","nationality":"PHI","sex":"female","date_of_birth":"1989-11-25T00:00:00.000Z","height":1.73,"weight":67,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":801571682,"name":"Kirstin Dwyer","nationality":"AUS","sex":"female","date_of_birth":"1989-03-15T00:00:00.000Z","height":1.73,"weight":66,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":134565248,"name":"Kirsty Gilmour","nationality":"GBR","sex":"female","date_of_birth":"1993-09-21T00:00:00.000Z","height":1.68,"weight":null,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":825202898,"name":"Kirsty Leigh Coventry","nationality":"ZIM","sex":"female","date_of_birth":"1983-09-16T00:00:00.000Z","height":1.76,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":52180375,"name":"Kirsty Yallop","nationality":"NZL","sex":"female","date_of_birth":"1986-11-04T00:00:00.000Z","height":1.65,"weight":58,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":279849374,"name":"Kit-Ching Yiu","nationality":"HKG","sex":"female","date_of_birth":"1988-02-20T00:00:00.000Z","height":1.55,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":51995447,"name":"Kitione Taliga","nationality":"FIJ","sex":"male","date_of_birth":"1993-04-21T00:00:00.000Z","height":1.86,"weight":87,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":449603562,"name":"Kitty King","nationality":"GBR","sex":"female","date_of_birth":"1982-08-10T00:00:00.000Z","height":1.58,"weight":60,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":159029734,"name":"Kitty van Male","nationality":"NED","sex":"female","date_of_birth":"1988-06-05T00:00:00.000Z","height":1.96,"weight":63,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":308690997,"name":"Kivilcim Kaya Salman","nationality":"TUR","sex":"female","date_of_birth":"1992-03-27T00:00:00.000Z","height":1.66,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":187677131,"name":"Kjetil Borch","nationality":"NOR","sex":"male","date_of_birth":"1990-02-14T00:00:00.000Z","height":null,"weight":null,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":759388006,"name":"Klara Spilkova","nationality":"CZE","sex":"female","date_of_birth":"1994-12-15T00:00:00.000Z","height":1.68,"weight":53,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":686436937,"name":"Klaudia Bres","nationality":"POL","sex":"female","date_of_birth":"1994-06-22T00:00:00.000Z","height":1.58,"weight":52,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":184949058,"name":"Klaudia Jans-Ignacik","nationality":"POL","sex":"female","date_of_birth":"1984-09-24T00:00:00.000Z","height":null,"weight":null,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":834172250,"name":"Klaudia Konopko","nationality":"POL","sex":"female","date_of_birth":"1992-02-21T00:00:00.000Z","height":1.7,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":560449526,"name":"Klaus Lange","nationality":"ARG","sex":"male","date_of_birth":"1995-01-13T00:00:00.000Z","height":1.82,"weight":81,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":748463150,"name":"Klay Thompson","nationality":"USA","sex":"male","date_of_birth":"1990-02-08T00:00:00.000Z","height":2,"weight":97,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":675747408,"name":"Kleber da Silva Ramos","nationality":"BRA","sex":"male","date_of_birth":"1985-08-24T00:00:00.000Z","height":1.67,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":952862687,"name":"Kleberson Davide","nationality":"BRA","sex":"male","date_of_birth":"1985-07-20T00:00:00.000Z","height":1.75,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":189267095,"name":"Kodo Nakano","nationality":"PHI","sex":"male","date_of_birth":"1993-03-08T00:00:00.000Z","height":null,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":332048858,"name":"Koen Naert","nationality":"BEL","sex":"male","date_of_birth":"1989-09-03T00:00:00.000Z","height":1.82,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":608163038,"name":"Kohei Uchima","nationality":"JPN","sex":"male","date_of_birth":"1988-11-08T00:00:00.000Z","height":1.7,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":199243053,"name":"Kohei Uchimura","nationality":"JPN","sex":"male","date_of_birth":"1989-01-02T00:00:00.000Z","height":1.62,"weight":52,"sport":"gymnastics","gold":2,"silver":0,"bronze":0,"info":"The biggest name in artistic gymnastics today, Japan's Kohei Uchimura is a six-time world championship winner in the general individual – where he is also the current Olympic champion. He has another four silvers and 19 world championship medals."},{"id":86038956,"name":"Kohei Yamamoto","nationality":"JPN","sex":"male","date_of_birth":"1985-08-20T00:00:00.000Z","height":1.82,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":51425019,"name":"Kohei Yamashita","nationality":"JPN","sex":"male","date_of_birth":"1994-09-06T00:00:00.000Z","height":1.79,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":656874306,"name":"Koichiro Morioka","nationality":"JPN","sex":"male","date_of_birth":"1985-04-02T00:00:00.000Z","height":1.85,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":337056974,"name":"Koji Takei","nationality":"JPN","sex":"male","date_of_birth":"1990-07-30T00:00:00.000Z","height":1.76,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":497335334,"name":"Koji Yamamuro","nationality":"JPN","sex":"male","date_of_birth":"1989-01-17T00:00:00.000Z","height":1.59,"weight":58,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":null},{"id":196041422,"name":"Koki Niwa","nationality":"JPN","sex":"male","date_of_birth":"1994-10-10T00:00:00.000Z","height":1.62,"weight":51,"sport":"table tennis","gold":0,"silver":1,"bronze":0,"info":null},{"id":355065846,"name":"Koki Saito","nationality":"JPN","sex":"male","date_of_birth":"1989-09-16T00:00:00.000Z","height":1.76,"weight":65,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":682697811,"name":"Komeil Nemat Ghasemi","nationality":"IRI","sex":"male","date_of_birth":"1988-02-27T00:00:00.000Z","height":1.86,"weight":115,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":974731965,"name":"Komronshokh Ustopiriyon","nationality":"TJK","sex":"male","date_of_birth":"1993-01-07T00:00:00.000Z","height":1.82,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":514884067,"name":"Konomi Kai","nationality":"JPN","sex":"female","date_of_birth":"1993-07-10T00:00:00.000Z","height":1.53,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":386847658,"name":"Konrad Bukowiecki","nationality":"POL","sex":"male","date_of_birth":"1997-03-17T00:00:00.000Z","height":1.91,"weight":138,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":40414487,"name":"Konrad Czerniak","nationality":"POL","sex":"male","date_of_birth":"1989-07-11T00:00:00.000Z","height":1.95,"weight":87,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":682481814,"name":"Konstadinos Baniotis","nationality":"GRE","sex":"male","date_of_birth":"1986-11-06T00:00:00.000Z","height":2.01,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":180022140,"name":"Konstadinos Douvalidis","nationality":"GRE","sex":"male","date_of_birth":"1987-03-10T00:00:00.000Z","height":1.81,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":996631093,"name":"Konstadinos Filippidis","nationality":"GRE","sex":"male","date_of_birth":"1986-11-26T00:00:00.000Z","height":1.87,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":725033682,"name":"Konstantin Semenov","nationality":"RUS","sex":"male","date_of_birth":"1989-06-09T00:00:00.000Z","height":2.1,"weight":101,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":532161398,"name":"Konstantinos Flegkas","nationality":"GRE","sex":"male","date_of_birth":"1988-07-17T00:00:00.000Z","height":1.92,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":808549144,"name":"Konstantinos Genidounias","nationality":"GRE","sex":"male","date_of_birth":"1993-05-03T00:00:00.000Z","height":1.83,"weight":87,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":578912084,"name":"Konstantinos Mourikis","nationality":"GRE","sex":"male","date_of_birth":"1988-07-11T00:00:00.000Z","height":1.97,"weight":109,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":419860088,"name":"Konstanze Klosterhalfen","nationality":"GER","sex":"female","date_of_birth":"1997-02-18T00:00:00.000Z","height":1.74,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":288100090,"name":"Korey Jarvis","nationality":"CAN","sex":"male","date_of_birth":"1986-10-04T00:00:00.000Z","height":1.88,"weight":115,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":409930037,"name":"Kosovare Asllani","nationality":"SWE","sex":"female","date_of_birth":"1989-07-29T00:00:00.000Z","height":1.66,"weight":54,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":940864440,"name":"Kostyantyn Bakun","nationality":"RUS","sex":"male","date_of_birth":"1985-03-15T00:00:00.000Z","height":2.04,"weight":96,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":794043609,"name":"Kosuke Hagino","nationality":"JPN","sex":"male","date_of_birth":"1994-08-15T00:00:00.000Z","height":1.77,"weight":71,"sport":"aquatics","gold":1,"silver":1,"bronze":1,"info":null},{"id":791705872,"name":"Kosuke Nakamura","nationality":"JPN","sex":"male","date_of_birth":"1995-02-27T00:00:00.000Z","height":1.84,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":18488153,"name":"Kota Murayama","nationality":"JPN","sex":"male","date_of_birth":"1993-02-23T00:00:00.000Z","height":1.74,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":422424765,"name":"Kothajit Khadangbam","nationality":"IND","sex":"male","date_of_birth":"1992-08-17T00:00:00.000Z","height":1.7,"weight":63,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":791359360,"name":"Kotoki Zayasu","nationality":"JPN","sex":"female","date_of_birth":"1990-01-11T00:00:00.000Z","height":1.59,"weight":57,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":892925415,"name":"Kotuku Ngawati","nationality":"AUS","sex":"female","date_of_birth":"1994-06-16T00:00:00.000Z","height":1.65,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":759873461,"name":"Koutar Boulaid","nationality":"MAR","sex":"female","date_of_birth":"1989-10-10T00:00:00.000Z","height":1.59,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":348937822,"name":"Kresimir Kozina","nationality":"CRO","sex":"male","date_of_birth":"1990-06-25T00:00:00.000Z","height":1.97,"weight":105,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":461399217,"name":"Krishan Vikas","nationality":"IND","sex":"male","date_of_birth":"1992-02-10T00:00:00.000Z","height":1.77,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":936707475,"name":"Krista Duchene","nationality":"CAN","sex":"female","date_of_birth":"1977-01-09T00:00:00.000Z","height":1.67,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":321162229,"name":"Kristel Kobrich","nationality":"CHI","sex":"female","date_of_birth":"1985-08-09T00:00:00.000Z","height":1.7,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":449134352,"name":"Kristel Vourna","nationality":"GRE","sex":"female","date_of_birth":"1992-02-11T00:00:00.000Z","height":1.74,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":737728576,"name":"Kristen Shaldybin","nationality":"USA","sex":"female","date_of_birth":"1997-08-08T00:00:00.000Z","height":1.76,"weight":56,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":34438087,"name":"Kristi Castlin","nationality":"USA","sex":"female","date_of_birth":"1988-07-07T00:00:00.000Z","height":1.71,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":7457125,"name":"Kristian Blummenfelt","nationality":"NOR","sex":"male","date_of_birth":"1994-02-14T00:00:00.000Z","height":null,"weight":null,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":539326422,"name":"Kristian Fris","nationality":"SRB","sex":"male","date_of_birth":"1984-04-21T00:00:00.000Z","height":1.7,"weight":59,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":582900403,"name":"Kristian Gkolomeev","nationality":"GRE","sex":"male","date_of_birth":"1993-07-04T00:00:00.000Z","height":2.02,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":512973536,"name":"Kristian Ipsen","nationality":"USA","sex":"male","date_of_birth":"1992-10-20T00:00:00.000Z","height":1.71,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":917018494,"name":"Kristian Karlsson","nationality":"SWE","sex":"male","date_of_birth":"1991-08-06T00:00:00.000Z","height":1.83,"weight":82,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":978961185,"name":"Kristian Ruth","nationality":"NOR","sex":"male","date_of_birth":"1985-07-23T00:00:00.000Z","height":null,"weight":null,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":407221611,"name":"Kristian Thomas","nationality":"GBR","sex":"male","date_of_birth":"1989-02-14T00:00:00.000Z","height":1.8,"weight":78,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":368830372,"name":"Kristian Vasilev","nationality":"BUL","sex":"male","date_of_birth":"1991-11-18T00:00:00.000Z","height":1.97,"weight":97,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":213581372,"name":"Kristiina Makela","nationality":"FIN","sex":"female","date_of_birth":"1992-11-20T00:00:00.000Z","height":1.85,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":884195361,"name":"Kristijan Durasek","nationality":"CRO","sex":"male","date_of_birth":"1987-07-26T00:00:00.000Z","height":1.7,"weight":57,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":791417527,"name":"Kristin Armstrong","nationality":"USA","sex":"female","date_of_birth":"1973-08-11T00:00:00.000Z","height":1.73,"weight":58,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":664462472,"name":"Kristin Gierisch","nationality":"GER","sex":"female","date_of_birth":"1990-08-20T00:00:00.000Z","height":1.78,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":981663977,"name":"Kristina Broring-Sprehe","nationality":"GER","sex":"female","date_of_birth":"1986-10-28T00:00:00.000Z","height":1.68,"weight":54,"sport":"equestrian","gold":1,"silver":0,"bronze":1,"info":null},{"id":254900911,"name":"Kristina Cook","nationality":"GBR","sex":"female","date_of_birth":"1970-08-31T00:00:00.000Z","height":1.78,"weight":68,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":654847993,"name":"Kristina Gavnholt","nationality":"CZE","sex":"female","date_of_birth":"1988-09-12T00:00:00.000Z","height":1.77,"weight":73,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":66901895,"name":"Kristina Ilinykh","nationality":"RUS","sex":"female","date_of_birth":"1994-11-27T00:00:00.000Z","height":1.73,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":656658323,"name":"Kristina Kuusk","nationality":"EST","sex":"female","date_of_birth":"1985-11-16T00:00:00.000Z","height":1.8,"weight":74,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":819640840,"name":"Kristina Mladenovic","nationality":"FRA","sex":"female","date_of_birth":"1993-05-14T00:00:00.000Z","height":1.84,"weight":66,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":312030242,"name":"Kristina Pronzhenko","nationality":"TJK","sex":"female","date_of_birth":"1988-12-10T00:00:00.000Z","height":1.72,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":928141398,"name":"Kristina Reynolds","nationality":"GER","sex":"female","date_of_birth":"1984-02-18T00:00:00.000Z","height":1.81,"weight":71,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":992483692,"name":"Kristina Valjas","nationality":"CAN","sex":"female","date_of_birth":"1987-06-02T00:00:00.000Z","height":1.88,"weight":68,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":108583641,"name":"Kristina Vogel","nationality":"GER","sex":"female","date_of_birth":"1990-11-10T00:00:00.000Z","height":1.6,"weight":66,"sport":"cycling","gold":1,"silver":0,"bronze":1,"info":null},{"id":763893829,"name":"Kristine Esebua","nationality":"GEO","sex":"female","date_of_birth":"1985-03-19T00:00:00.000Z","height":1.62,"weight":69,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":576779994,"name":"Kristof Rasovszky","nationality":"HUN","sex":"male","date_of_birth":"1997-03-27T00:00:00.000Z","height":1.9,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":957396077,"name":"Kristoffer Brun","nationality":"NOR","sex":"male","date_of_birth":"1988-04-07T00:00:00.000Z","height":null,"weight":null,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":34412448,"name":"Kristy Oatley","nationality":"AUS","sex":"female","date_of_birth":"1978-07-18T00:00:00.000Z","height":1.7,"weight":56,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":353904175,"name":"Kristyna Fleissnerova","nationality":"CZE","sex":"female","date_of_birth":"1992-08-18T00:00:00.000Z","height":1.73,"weight":64,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":11420262,"name":"Krisztian Manhercz","nationality":"HUN","sex":"male","date_of_birth":"1997-02-06T00:00:00.000Z","height":1.91,"weight":91,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":238991769,"name":"Krisztian Pars","nationality":"HUN","sex":"male","date_of_birth":"1982-02-18T00:00:00.000Z","height":1.88,"weight":116,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":123300327,"name":"Krisztian Takacs","nationality":"HUN","sex":"male","date_of_birth":"1985-12-30T00:00:00.000Z","height":1.86,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":667329045,"name":"Krisztian Toth","nationality":"HUN","sex":"male","date_of_birth":"1994-05-01T00:00:00.000Z","height":1.75,"weight":93,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":540029142,"name":"Krisztina Fazekas-Zur","nationality":"HUN","sex":"female","date_of_birth":"1980-08-01T00:00:00.000Z","height":1.72,"weight":64,"sport":"canoe","gold":1,"silver":0,"bronze":0,"info":null},{"id":401589716,"name":"Krisztina Garda","nationality":"HUN","sex":"female","date_of_birth":"1994-07-16T00:00:00.000Z","height":1.7,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":211842063,"name":"Krisztina Papp","nationality":"HUN","sex":"female","date_of_birth":"1982-12-17T00:00:00.000Z","height":1.73,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":267615621,"name":"Krunoslav Simon","nationality":"CRO","sex":"male","date_of_birth":"1985-06-24T00:00:00.000Z","height":1.97,"weight":100,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":984489399,"name":"Krystian Aranowski","nationality":"POL","sex":"male","date_of_birth":"1988-04-11T00:00:00.000Z","height":1.98,"weight":102,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":792210881,"name":"Krystian Zalewski","nationality":"POL","sex":"male","date_of_birth":"1989-04-11T00:00:00.000Z","height":1.85,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":890413525,"name":"Krzysztof Lijewski","nationality":"POL","sex":"male","date_of_birth":"1983-07-07T00:00:00.000Z","height":1.99,"weight":99,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":840441745,"name":"Krzysztof Maksel","nationality":"POL","sex":"male","date_of_birth":"1991-07-04T00:00:00.000Z","height":1.81,"weight":80,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":985218732,"name":"Ksenia Chibisova","nationality":"RUS","sex":"female","date_of_birth":"1988-07-13T00:00:00.000Z","height":1.86,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":500616803,"name":"Ksenia Perova","nationality":"RUS","sex":"female","date_of_birth":"1989-02-08T00:00:00.000Z","height":1.69,"weight":77,"sport":"archery","gold":0,"silver":1,"bronze":0,"info":null},{"id":117683465,"name":"Ksenija Balta","nationality":"EST","sex":"female","date_of_birth":"1986-11-01T00:00:00.000Z","height":1.69,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":292420209,"name":"Kseniya Moustafaeva","nationality":"FRA","sex":"female","date_of_birth":"1995-06-08T00:00:00.000Z","height":1.63,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":401281343,"name":"Kseniya Pantelyeyeva","nationality":"UKR","sex":"female","date_of_birth":"1994-05-11T00:00:00.000Z","height":1.68,"weight":75,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":664487894,"name":"Kseniya Sydorenko","nationality":"UKR","sex":"female","date_of_birth":"1986-07-02T00:00:00.000Z","height":1.78,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":81024511,"name":"Kudakwashe Basopo","nationality":"ZIM","sex":"female","date_of_birth":"1990-07-18T00:00:00.000Z","height":1.62,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":370696968,"name":"Kuk Hyang Kim","nationality":"PRK","sex":"female","date_of_birth":"1993-04-20T00:00:00.000Z","height":1.7,"weight":100,"sport":"weightlifting","gold":0,"silver":1,"bronze":0,"info":null},{"id":703248016,"name":"Kuk Hyang Kim","nationality":"PRK","sex":"female","date_of_birth":"1999-04-04T00:00:00.000Z","height":1.49,"weight":39,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":358078214,"name":"Kuk Hyon Hong","nationality":"PRK","sex":"male","date_of_birth":"1990-07-01T00:00:00.000Z","height":1.79,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":856229639,"name":"Kukyoung Kim","nationality":"KOR","sex":"male","date_of_birth":"1991-04-19T00:00:00.000Z","height":1.76,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":576883439,"name":"Kum-Ok Kim","nationality":"PRK","sex":"female","date_of_birth":"1988-12-09T00:00:00.000Z","height":1.61,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":405931977,"name":"Kumari Babita","nationality":"IND","sex":"female","date_of_birth":"1989-11-20T00:00:00.000Z","height":1.65,"weight":52,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":179174658,"name":"Kumiko Okada","nationality":"JPN","sex":"female","date_of_birth":"1991-10-17T00:00:00.000Z","height":1.58,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":434716093,"name":"Kun-Pi Yang","nationality":"TPE","sex":"male","date_of_birth":"1998-08-11T00:00:00.000Z","height":1.86,"weight":107,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":331317766,"name":"Kunathip Yea-On","nationality":"THA","sex":"male","date_of_birth":"1995-08-18T00:00:00.000Z","height":1.93,"weight":148,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":340840336,"name":"Kunhu Muhammed Puthanpurakkal","nationality":"IND","sex":"male","date_of_birth":"1987-03-05T00:00:00.000Z","height":1.72,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":13588611,"name":"Kuniaki Takizaki","nationality":"CAM","sex":"male","date_of_birth":"1977-08-08T00:00:00.000Z","height":1.51,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":886640811,"name":"Kurt Couto","nationality":"MOZ","sex":"male","date_of_birth":"1985-05-14T00:00:00.000Z","height":1.8,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":574563035,"name":"Kurt Felix","nationality":"GRN","sex":"male","date_of_birth":"1988-07-04T00:00:00.000Z","height":1.82,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":146480210,"name":"Kurtis Marschall","nationality":"AUS","sex":"male","date_of_birth":"1997-04-25T00:00:00.000Z","height":1.87,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":156130854,"name":"Kurumi Yoshida","nationality":"JPN","sex":"female","date_of_birth":"1991-12-01T00:00:00.000Z","height":1.67,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":824038451,"name":"Kwagga Smith","nationality":"RSA","sex":"male","date_of_birth":"1993-06-11T00:00:00.000Z","height":1.8,"weight":90,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":80433240,"name":"Kwan Kit Ho","nationality":"HKG","sex":"male","date_of_birth":"1997-04-20T00:00:00.000Z","height":1.78,"weight":66,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":718483245,"name":"Kwandakwensizwa Mngonyama","nationality":"RSA","sex":"male","date_of_birth":"1993-09-25T00:00:00.000Z","height":1.84,"weight":79,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":152318195,"name":"Kyah Simon","nationality":"AUS","sex":"female","date_of_birth":"1991-06-25T00:00:00.000Z","height":1.64,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":887479109,"name":"Kyerim Lee","nationality":"KOR","sex":"female","date_of_birth":"1990-08-31T00:00:00.000Z","height":1.58,"weight":50,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":676973733,"name":"Kyle Brown","nationality":"RSA","sex":"male","date_of_birth":"1987-02-06T00:00:00.000Z","height":1.82,"weight":92,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":885688636,"name":"Kyle Chalmers","nationality":"AUS","sex":"male","date_of_birth":"1998-06-25T00:00:00.000Z","height":1.93,"weight":90,"sport":"aquatics","gold":1,"silver":0,"bronze":2,"info":null},{"id":341835179,"name":"Kyle Clemons","nationality":"USA","sex":"male","date_of_birth":"1990-12-27T00:00:00.000Z","height":1.81,"weight":72,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":245877079,"name":"Kyle Dodd","nationality":"RSA","sex":"male","date_of_birth":"1994-02-11T00:00:00.000Z","height":1.78,"weight":80,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":897784869,"name":"Kyle Edmund","nationality":"GBR","sex":"male","date_of_birth":"1995-01-08T00:00:00.000Z","height":1.89,"weight":81,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":599766410,"name":"Kyle Evans","nationality":"GBR","sex":"male","date_of_birth":"1993-09-26T00:00:00.000Z","height":1.8,"weight":81,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":334173080,"name":"Kyle Frederick Snyder","nationality":"USA","sex":"male","date_of_birth":"1995-11-20T00:00:00.000Z","height":1.81,"weight":102,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":244160480,"name":"Kyle Good","nationality":"IRL","sex":"male","date_of_birth":"1991-12-10T00:00:00.000Z","height":1.83,"weight":88,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":141935257,"name":"Kyle Greaux","nationality":"TTO","sex":"male","date_of_birth":"1988-04-26T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":57806527,"name":"Kyle Lowry","nationality":"USA","sex":"male","date_of_birth":"1986-03-25T00:00:00.000Z","height":1.83,"weight":93,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":367373878,"name":"Kyle Reyes","nationality":"CAN","sex":"male","date_of_birth":"1993-10-10T00:00:00.000Z","height":1.83,"weight":99,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":188768661,"name":"Kyle Sean Micallef","nationality":"MLT","sex":"male","date_of_birth":"1987-01-08T00:00:00.000Z","height":1.77,"weight":85,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":78377242,"name":"Kyle Stolk","nationality":"NED","sex":"male","date_of_birth":"1996-06-28T00:00:00.000Z","height":1.86,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":714395928,"name":"Kylie Masse","nationality":"CAN","sex":"female","date_of_birth":"1996-01-18T00:00:00.000Z","height":1.7,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":107792319,"name":"Kylie Rei Dickson","nationality":"BLR","sex":"female","date_of_birth":"1999-02-12T00:00:00.000Z","height":1.6,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":654626226,"name":"Kynan Chenai","nationality":"IND","sex":"male","date_of_birth":"1991-01-29T00:00:00.000Z","height":2,"weight":85,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":997852630,"name":"Kyong Il Yang","nationality":"PRK","sex":"male","date_of_birth":"1989-08-07T00:00:00.000Z","height":1.58,"weight":57,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":263910459,"name":"Kyong Sol","nationality":"PRK","sex":"female","date_of_birth":"1990-06-08T00:00:00.000Z","height":1.63,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":417582763,"name":"Kyoungdoo Park","nationality":"KOR","sex":"male","date_of_birth":"1984-08-03T00:00:00.000Z","height":1.77,"weight":77,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":594770931,"name":"Kyriakos Ioannou","nationality":"CYP","sex":"male","date_of_birth":"1984-07-26T00:00:00.000Z","height":1.96,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":944821832,"name":"Kyriakos Pontikeas","nationality":"GRE","sex":"male","date_of_birth":"1991-05-09T00:00:00.000Z","height":1.92,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":212656744,"name":"Kyrie Irving","nationality":"USA","sex":"male","date_of_birth":"1992-03-23T00:00:00.000Z","height":1.9,"weight":87,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":797859111,"name":"Kyubaek Choi","nationality":"KOR","sex":"male","date_of_birth":"1994-01-23T00:00:00.000Z","height":1.88,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":136817398,"name":"Kyung Eun Jung","nationality":"KOR","sex":"female","date_of_birth":"1990-03-20T00:00:00.000Z","height":1.72,"weight":59,"sport":"badminton","gold":0,"silver":0,"bronze":1,"info":null},{"id":461106431,"name":"Kyunghee Lim","nationality":"KOR","sex":"female","date_of_birth":"1982-11-16T00:00:00.000Z","height":1.63,"weight":43,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":819912962,"name":"Kyuwoong Choi","nationality":"KOR","sex":"male","date_of_birth":"1990-05-28T00:00:00.000Z","height":1.81,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":42152477,"name":"L.j. van Zyl","nationality":"RSA","sex":"male","date_of_birth":"1985-07-20T00:00:00.000Z","height":1.82,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":397906990,"name":"Lachlan Tame","nationality":"AUS","sex":"male","date_of_birth":"1988-11-14T00:00:00.000Z","height":1.76,"weight":80,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":202060603,"name":"Ladislav Skantar","nationality":"SVK","sex":"male","date_of_birth":"1983-02-11T00:00:00.000Z","height":1.89,"weight":80,"sport":"canoe","gold":1,"silver":0,"bronze":0,"info":null},{"id":429703737,"name":"Lady Andrade","nationality":"COL","sex":"female","date_of_birth":"1992-01-10T00:00:00.000Z","height":1.64,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":380147709,"name":"Lady Ruano","nationality":"COL","sex":"female","date_of_birth":"1981-03-05T00:00:00.000Z","height":1.57,"weight":52,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":788128970,"name":"Laenly Phoutthavong","nationality":"LAO","sex":"female","date_of_birth":"1996-06-04T00:00:00.000Z","height":1.69,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":145889655,"name":"Laerke Buhl-Hansen","nationality":"DEN","sex":"female","date_of_birth":"1992-03-30T00:00:00.000Z","height":1.67,"weight":56,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":713520170,"name":"Laetisha Scanlan","nationality":"AUS","sex":"female","date_of_birth":"1990-04-13T00:00:00.000Z","height":1.63,"weight":61,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":796815573,"name":"Laetitia Beck","nationality":"ISR","sex":"female","date_of_birth":"1992-02-05T00:00:00.000Z","height":1.75,"weight":61,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":1610593,"name":"Laetitia Crescence Moma Bassoko","nationality":"CMR","sex":"female","date_of_birth":"1993-10-09T00:00:00.000Z","height":1.84,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":556419347,"name":"Laetitia Kamba","nationality":"FRA","sex":"female","date_of_birth":"1987-01-10T00:00:00.000Z","height":1.87,"weight":78,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":624409158,"name":"Laetitia Payet","nationality":"FRA","sex":"female","date_of_birth":"1985-10-02T00:00:00.000Z","height":1.5,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":283796525,"name":"Laetitia Philippe","nationality":"FRA","sex":"female","date_of_birth":"1991-04-30T00:00:00.000Z","height":1.73,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":451101103,"name":"Laia Palau","nationality":"ESP","sex":"female","date_of_birth":"1979-09-10T00:00:00.000Z","height":1.81,"weight":69,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":463504304,"name":"Lais Nunes de Oliveira","nationality":"BRA","sex":"female","date_of_birth":"1992-11-03T00:00:00.000Z","height":1.65,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":707312914,"name":"Lala Wane","nationality":"SEN","sex":"female","date_of_birth":"1989-07-15T00:00:00.000Z","height":1.79,"weight":78,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":598281407,"name":"Lalit Mathur","nationality":"IND","sex":"male","date_of_birth":"1994-12-18T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":340454427,"name":"Lalita Shivaji Babar","nationality":"IND","sex":"female","date_of_birth":"1989-06-02T00:00:00.000Z","height":1.66,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":54471403,"name":"Lalita Yauhleuskaya","nationality":"AUS","sex":"female","date_of_birth":"1963-12-31T00:00:00.000Z","height":1.58,"weight":64,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":316330881,"name":"Lalonde Gordon","nationality":"TTO","sex":"male","date_of_birth":"1988-11-25T00:00:00.000Z","height":1.79,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":486290067,"name":"Lanece Clarke","nationality":"BAH","sex":"female","date_of_birth":"1987-11-04T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":307336565,"name":"Lani Belcher","nationality":"GBR","sex":"female","date_of_birth":"1989-06-10T00:00:00.000Z","height":1.69,"weight":65,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":789007378,"name":"Lani Cabrera","nationality":"BAR","sex":"female","date_of_birth":"1993-04-22T00:00:00.000Z","height":1.75,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":688222254,"name":"Lanni Marchant","nationality":"CAN","sex":"female","date_of_birth":"1984-04-11T00:00:00.000Z","height":1.55,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":165918129,"name":"Lara Butler","nationality":"CAY","sex":"female","date_of_birth":"1994-10-02T00:00:00.000Z","height":1.72,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":400916964,"name":"Lara Gonzalez","nationality":"ESP","sex":"female","date_of_birth":"1992-02-22T00:00:00.000Z","height":1.84,"weight":74,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":329123221,"name":"Lara Grangeon","nationality":"FRA","sex":"female","date_of_birth":"1991-09-21T00:00:00.000Z","height":1.73,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":303756997,"name":"Lara Griffith","nationality":"GBR","sex":"female","date_of_birth":"1988-11-14T00:00:00.000Z","height":1.76,"weight":62,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":714521221,"name":"Lara Hoffmann","nationality":"GER","sex":"female","date_of_birth":"1991-03-25T00:00:00.000Z","height":1.73,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":268747617,"name":"Lara Sanders","nationality":"TUR","sex":"female","date_of_birth":"1986-09-11T00:00:00.000Z","height":1.91,"weight":77,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":485160577,"name":"Lara Teixeira","nationality":"BRA","sex":"female","date_of_birth":"1987-11-26T00:00:00.000Z","height":1.67,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":251433937,"name":"Lara Vadlau","nationality":"AUT","sex":"female","date_of_birth":"1994-03-29T00:00:00.000Z","height":1.65,"weight":56,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":322415539,"name":"Laraiba Seibou","nationality":"BEN","sex":"female","date_of_birth":"2000-12-06T00:00:00.000Z","height":1.73,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":16230111,"name":"Larbi Bourrada","nationality":"ALG","sex":"male","date_of_birth":"1988-05-10T00:00:00.000Z","height":1.88,"weight":88,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":609688727,"name":"Larisa Ceric","nationality":"BIH","sex":"female","date_of_birth":"1991-01-26T00:00:00.000Z","height":1.76,"weight":110,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":838253467,"name":"Larissa Araujo","nationality":"BRA","sex":"female","date_of_birth":"1992-07-01T00:00:00.000Z","height":1.67,"weight":62,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":842092433,"name":"Larissa Crummer","nationality":"AUS","sex":"female","date_of_birth":"1996-01-10T00:00:00.000Z","height":1.78,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":564844336,"name":"Larissa Franca Maestrini","nationality":"BRA","sex":"female","date_of_birth":"1982-04-14T00:00:00.000Z","height":1.74,"weight":70,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":"Considered the best setter in the world, Brazil's Larissa won bronze at the London 2012 Olympic Games. She is also the holder of one world championship and two Pan American golds, as well as seven beach volleyball world circuit titles."},{"id":923732002,"name":"Larissa Oliveira","nationality":"BRA","sex":"female","date_of_birth":"1993-02-16T00:00:00.000Z","height":1.69,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":768025423,"name":"Larrissa Miller","nationality":"AUS","sex":"female","date_of_birth":"1992-07-12T00:00:00.000Z","height":1.59,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":715498421,"name":"Lars Bender","nationality":"GER","sex":"male","date_of_birth":"1989-04-27T00:00:00.000Z","height":1.84,"weight":77,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":564584099,"name":"Lars Fluggen","nationality":"GER","sex":"male","date_of_birth":"1990-05-24T00:00:00.000Z","height":1.92,"weight":83,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":791318566,"name":"Lars Forster","nationality":"SUI","sex":"male","date_of_birth":"1993-08-01T00:00:00.000Z","height":1.77,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":857905937,"name":"Lars Petter Nordhaug","nationality":"NOR","sex":"male","date_of_birth":"1984-05-14T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":639300643,"name":"Lars Wichert","nationality":"GER","sex":"male","date_of_birth":"1986-11-28T00:00:00.000Z","height":1.86,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":850256654,"name":"Lasha Shavdatuashvili","nationality":"GEO","sex":"male","date_of_birth":"1992-01-31T00:00:00.000Z","height":1.7,"weight":75,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":592699944,"name":"Lasha Talakhadze","nationality":"GEO","sex":"male","date_of_birth":"1993-10-02T00:00:00.000Z","height":1.97,"weight":157,"sport":"weightlifting","gold":1,"silver":0,"bronze":0,"info":null},{"id":404444174,"name":"Lasha Torgvaidze","nationality":"GEO","sex":"male","date_of_birth":"1993-05-26T00:00:00.000Z","height":1.84,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":920627938,"name":"Lashawn Merritt","nationality":"USA","sex":"male","date_of_birth":"1986-06-27T00:00:00.000Z","height":1.91,"weight":86,"sport":"athletics","gold":1,"silver":0,"bronze":1,"info":null},{"id":798007695,"name":"Lasma Liepa","nationality":"TUR","sex":"female","date_of_birth":"1988-07-04T00:00:00.000Z","height":1.8,"weight":77,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":345588226,"name":"Lasse Norman Hansen","nationality":"DEN","sex":"male","date_of_birth":"1992-02-11T00:00:00.000Z","height":1.8,"weight":73,"sport":"cycling","gold":0,"silver":0,"bronze":2,"info":null},{"id":384124391,"name":"Lasse Svan","nationality":"DEN","sex":"male","date_of_birth":"1983-08-31T00:00:00.000Z","height":1.85,"weight":85,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":533708221,"name":"Lasse Vibe","nationality":"DEN","sex":"male","date_of_birth":"1987-02-22T00:00:00.000Z","height":1.84,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":327942821,"name":"Laszlo Cseh","nationality":"HUN","sex":"male","date_of_birth":"1985-12-03T00:00:00.000Z","height":1.88,"weight":84,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":27973136,"name":"Laszlo Csoknyai","nationality":"HUN","sex":"male","date_of_birth":"1987-10-25T00:00:00.000Z","height":1.72,"weight":83,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":932218677,"name":"Latario Collie-Minns","nationality":"BAH","sex":"male","date_of_birth":"1994-03-10T00:00:00.000Z","height":1.73,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":486930749,"name":"Laura Alleway","nationality":"AUS","sex":"female","date_of_birth":"1989-11-28T00:00:00.000Z","height":1.78,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":70272751,"name":"Laura Asadauskaite","nationality":"LTU","sex":"female","date_of_birth":"1984-02-28T00:00:00.000Z","height":1.6,"weight":49,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":"Married to Andrejus Zadneprovskis, a two-time Olympic medallist in the modern pentathlon, Laura Asadauskaitė won gold in this event at London 2012. This Lithuanian athlete also holds two world titles – an individual (2013) and one mixed relay (2014)."},{"id":151499815,"name":"Laura Auge","nationality":"FRA","sex":"female","date_of_birth":"1992-01-17T00:00:00.000Z","height":1.75,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":247206821,"name":"Laura Benkarth","nationality":"GER","sex":"female","date_of_birth":"1992-10-14T00:00:00.000Z","height":1.73,"weight":68,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":529217667,"name":"Laura Brown","nationality":"CAN","sex":"female","date_of_birth":"1986-11-27T00:00:00.000Z","height":1.67,"weight":61,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":284937844,"name":"Laura Chiper","nationality":"ROU","sex":"female","date_of_birth":"1989-08-21T00:00:00.000Z","height":1.73,"weight":65,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":456601968,"name":"Laura Dijkema","nationality":"NED","sex":"female","date_of_birth":"1990-02-18T00:00:00.000Z","height":1.84,"weight":70,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":880019885,"name":"Laura Ester Ramos","nationality":"ESP","sex":"female","date_of_birth":"1990-01-22T00:00:00.000Z","height":1.7,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":652201714,"name":"Laura Gil","nationality":"ESP","sex":"female","date_of_birth":"1992-04-24T00:00:00.000Z","height":1.91,"weight":78,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":996823500,"name":"Laura Giombini","nationality":"ITA","sex":"female","date_of_birth":"1989-01-04T00:00:00.000Z","height":1.83,"weight":null,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":69085100,"name":"Laura Glauser","nationality":"FRA","sex":"female","date_of_birth":"1993-08-20T00:00:00.000Z","height":1.78,"weight":65,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":829875287,"name":"Laura Gomez","nationality":"ESP","sex":"female","date_of_birth":"1984-04-19T00:00:00.000Z","height":1.6,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":768401050,"name":"Laura Gonzalez","nationality":"COL","sex":"female","date_of_birth":"1993-03-08T00:00:00.000Z","height":1.61,"weight":61,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":225614709,"name":"Laura Graves","nationality":"USA","sex":"female","date_of_birth":"1987-07-22T00:00:00.000Z","height":1.73,"weight":54,"sport":"equestrian","gold":0,"silver":0,"bronze":1,"info":null},{"id":50773758,"name":"Laura Hodges","nationality":"AUS","sex":"female","date_of_birth":"1983-12-13T00:00:00.000Z","height":1.91,"weight":78,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":77033753,"name":"Laura Ikauniece-Admidina","nationality":"LAT","sex":"female","date_of_birth":"1992-05-31T00:00:00.000Z","height":1.79,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":774958820,"name":"Laura Kraut","nationality":"USA","sex":"female","date_of_birth":"1965-11-14T00:00:00.000Z","height":1.71,"weight":56,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":940578018,"name":"Laura Lindemann","nationality":"GER","sex":"female","date_of_birth":"1996-06-26T00:00:00.000Z","height":1.68,"weight":57,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":148490223,"name":"Laura Lopez Ventosa","nationality":"ESP","sex":"female","date_of_birth":"1988-01-13T00:00:00.000Z","height":1.71,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":363628190,"name":"Laura Ludwig","nationality":"GER","sex":"female","date_of_birth":"1986-01-13T00:00:00.000Z","height":1.81,"weight":70,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":360874773,"name":"Laura Marino","nationality":"FRA","sex":"female","date_of_birth":"1993-07-02T00:00:00.000Z","height":1.68,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":901305776,"name":"Laura Milani","nationality":"ITA","sex":"female","date_of_birth":"1984-09-30T00:00:00.000Z","height":1.68,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":624808656,"name":"Laura Muir","nationality":"GBR","sex":"female","date_of_birth":"1993-05-09T00:00:00.000Z","height":1.61,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":468145639,"name":"Laura Muller","nationality":"GER","sex":"female","date_of_birth":"1995-12-11T00:00:00.000Z","height":1.72,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":612731499,"name":"Laura Nicholls","nationality":"ESP","sex":"female","date_of_birth":"1989-02-26T00:00:00.000Z","height":1.9,"weight":90,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":837136545,"name":"Laura Nunnink","nationality":"NED","sex":"female","date_of_birth":"1995-01-26T00:00:00.000Z","height":1.72,"weight":64,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":979004062,"name":"Laura Nurmsalu","nationality":"EST","sex":"female","date_of_birth":"1994-06-01T00:00:00.000Z","height":1.7,"weight":70,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":381041222,"name":"Laura Oprea","nationality":"ROU","sex":"female","date_of_birth":"1994-02-19T00:00:00.000Z","height":1.86,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":278075426,"name":"Laura Quevedo","nationality":"ESP","sex":"female","date_of_birth":"1996-04-15T00:00:00.000Z","height":1.85,"weight":74,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":885866639,"name":"Laura Salles Lopez","nationality":"AND","sex":"female","date_of_birth":"1986-02-15T00:00:00.000Z","height":1.69,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":151961559,"name":"Laura Sarosi","nationality":"HUN","sex":"female","date_of_birth":"1992-11-11T00:00:00.000Z","height":1.67,"weight":57,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":949858669,"name":"Laura Siegemund","nationality":"GER","sex":"female","date_of_birth":"1988-03-04T00:00:00.000Z","height":1.68,"weight":62,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":250953403,"name":"Laura Smulders","nationality":"NED","sex":"female","date_of_birth":"1993-12-09T00:00:00.000Z","height":1.7,"weight":73,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":603343722,"name":"Laura Teani","nationality":"ITA","sex":"female","date_of_birth":"1991-03-13T00:00:00.000Z","height":1.75,"weight":75,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":371337915,"name":"Laura Trott","nationality":"GBR","sex":"female","date_of_birth":"1992-04-24T00:00:00.000Z","height":1.64,"weight":56,"sport":"cycling","gold":2,"silver":0,"bronze":0,"info":null},{"id":192919301,"name":"Laura Unsworth","nationality":"GBR","sex":"female","date_of_birth":"1988-03-08T00:00:00.000Z","height":1.52,"weight":55,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":528746135,"name":"Laura Vargas Koch","nationality":"GER","sex":"female","date_of_birth":"1990-06-29T00:00:00.000Z","height":1.73,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":776443567,"name":"Laura Waem","nationality":"BEL","sex":"female","date_of_birth":"1997-08-05T00:00:00.000Z","height":1.6,"weight":54,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":70958554,"name":"Laura Weightman","nationality":"GBR","sex":"female","date_of_birth":"1991-07-01T00:00:00.000Z","height":1.72,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":825506439,"name":"Laura Whittle","nationality":"GBR","sex":"female","date_of_birth":"1985-06-27T00:00:00.000Z","height":1.75,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":259253637,"name":"Laura Zeng","nationality":"USA","sex":"female","date_of_birth":"1999-10-14T00:00:00.000Z","height":1.61,"weight":43,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":435786461,"name":"Laura de Witte","nationality":"NED","sex":"female","date_of_birth":"1995-08-07T00:00:00.000Z","height":1.73,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":264136986,"name":"Laura van der Heijden","nationality":"NED","sex":"female","date_of_birth":"1990-06-27T00:00:00.000Z","height":1.72,"weight":68,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":612897839,"name":"Lauren Billys","nationality":"PUR","sex":"female","date_of_birth":"1988-05-14T00:00:00.000Z","height":1.61,"weight":59,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":829889004,"name":"Lauren Boyle","nationality":"NZL","sex":"female","date_of_birth":"1987-12-14T00:00:00.000Z","height":1.83,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":792471719,"name":"Lauren Crandall","nationality":"USA","sex":"female","date_of_birth":"1985-03-17T00:00:00.000Z","height":1.61,"weight":57,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":695489909,"name":"Lauren Doyle","nationality":"USA","sex":"female","date_of_birth":"1991-02-23T00:00:00.000Z","height":1.68,"weight":68,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":208831332,"name":"Lauren Ellis","nationality":"NZL","sex":"female","date_of_birth":"1989-04-19T00:00:00.000Z","height":1.66,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":933903933,"name":"Lauren Fendrick","nationality":"USA","sex":"female","date_of_birth":"1982-03-20T00:00:00.000Z","height":1.88,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":766991740,"name":"Lauren Hernandez","nationality":"USA","sex":"female","date_of_birth":"2000-06-09T00:00:00.000Z","height":1.53,"weight":48,"sport":"gymnastics","gold":1,"silver":1,"bronze":0,"info":null},{"id":583498432,"name":"Lauren Kieffer","nationality":"USA","sex":"female","date_of_birth":"1987-06-06T00:00:00.000Z","height":1.78,"weight":68,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":88108486,"name":"Lauren Rembi","nationality":"FRA","sex":"female","date_of_birth":"1992-03-09T00:00:00.000Z","height":1.78,"weight":60,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":766647760,"name":"Lauren Reynolds","nationality":"AUS","sex":"female","date_of_birth":"1991-06-25T00:00:00.000Z","height":1.76,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":169582119,"name":"Lauren Schmetterling","nationality":"USA","sex":"female","date_of_birth":"1988-08-03T00:00:00.000Z","height":1.81,"weight":77,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":272927492,"name":"Lauren Smith","nationality":"GBR","sex":"female","date_of_birth":"1991-09-26T00:00:00.000Z","height":1.7,"weight":null,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":981950752,"name":"Lauren Wells","nationality":"AUS","sex":"female","date_of_birth":"1988-08-03T00:00:00.000Z","height":1.78,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":805070729,"name":"Lauren Wilkinson","nationality":"CAN","sex":"female","date_of_birth":"1989-10-17T00:00:00.000Z","height":1.8,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":638896430,"name":"Laurence Baldauff","nationality":"AUT","sex":"female","date_of_birth":"1974-11-19T00:00:00.000Z","height":1.64,"weight":57,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":542188232,"name":"Laurence Brize","nationality":"FRA","sex":"female","date_of_birth":"1976-07-12T00:00:00.000Z","height":1.58,"weight":55,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":874551869,"name":"Laurence Halsted","nationality":"GBR","sex":"male","date_of_birth":"1984-05-22T00:00:00.000Z","height":1.85,"weight":85,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":935729210,"name":"Laurens de Plus","nationality":"BEL","sex":"male","date_of_birth":"1995-09-04T00:00:00.000Z","height":1.88,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":940301095,"name":"Laurent Carnol","nationality":"LUX","sex":"male","date_of_birth":"1989-10-17T00:00:00.000Z","height":1.87,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":286702221,"name":"Laurent Couhet","nationality":"BRA","sex":"male","date_of_birth":"1994-07-12T00:00:00.000Z","height":1.71,"weight":75,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":821849198,"name":"Laurent Jr. Clayton","nationality":"ISV","sex":"male","date_of_birth":"1990-07-18T00:00:00.000Z","height":null,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":410803236,"name":"Laurie Berthon","nationality":"FRA","sex":"female","date_of_birth":"1991-08-26T00:00:00.000Z","height":1.69,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":937639115,"name":"Laurien Leurink","nationality":"NED","sex":"female","date_of_birth":"1994-11-13T00:00:00.000Z","height":1.73,"weight":67,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":256435241,"name":"Laurine van Riessen","nationality":"NED","sex":"female","date_of_birth":"1987-08-10T00:00:00.000Z","height":1.67,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":822053837,"name":"Laurisa Landre","nationality":"FRA","sex":"female","date_of_birth":"1985-10-27T00:00:00.000Z","height":1.74,"weight":67,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":110156979,"name":"Lauritz Schoof","nationality":"GER","sex":"male","date_of_birth":"1990-10-07T00:00:00.000Z","height":1.95,"weight":98,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":438898270,"name":"Lautaro Giannetti","nationality":"ARG","sex":"male","date_of_birth":"1993-11-13T00:00:00.000Z","height":1.75,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":408272109,"name":"Lavenia Tinai","nationality":"FIJ","sex":"female","date_of_birth":"1990-09-07T00:00:00.000Z","height":1.65,"weight":57,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":6350689,"name":"Laverne Jones-Ferrette","nationality":"ISV","sex":"female","date_of_birth":"1981-09-16T00:00:00.000Z","height":1.73,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":735071398,"name":"Lawrence Brittain","nationality":"RSA","sex":"male","date_of_birth":"1990-11-09T00:00:00.000Z","height":1.87,"weight":94,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":680095587,"name":"Lawrence Clarke","nationality":"GBR","sex":"male","date_of_birth":"1990-03-12T00:00:00.000Z","height":1.87,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":295372543,"name":"Lawrence Fanous","nationality":"JOR","sex":"male","date_of_birth":"1985-08-27T00:00:00.000Z","height":1.7,"weight":61,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":523134751,"name":"Lawrence Okolie","nationality":"GBR","sex":"male","date_of_birth":"1992-12-16T00:00:00.000Z","height":1.95,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":29990303,"name":"Laxmirani Majhi","nationality":"IND","sex":"female","date_of_birth":"1989-01-26T00:00:00.000Z","height":1.61,"weight":56,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":205316686,"name":"Lazaro Jorge Alvarez","nationality":"CUB","sex":"male","date_of_birth":"1991-01-28T00:00:00.000Z","height":1.73,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":801084506,"name":"Lazaro Martinez","nationality":"CUB","sex":"male","date_of_birth":"1997-11-03T00:00:00.000Z","height":1.91,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":129629128,"name":"Lea Davison","nationality":"USA","sex":"female","date_of_birth":"1983-05-19T00:00:00.000Z","height":1.68,"weight":55,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":806871935,"name":"Lea Jamelot","nationality":"FRA","sex":"female","date_of_birth":"1992-11-28T00:00:00.000Z","height":1.68,"weight":65,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":909792265,"name":"Lea Sprunger","nationality":"SUI","sex":"female","date_of_birth":"1990-03-05T00:00:00.000Z","height":1.83,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":990477427,"name":"Lea Yanitsas","nationality":"AUS","sex":"female","date_of_birth":"1989-03-15T00:00:00.000Z","height":1.73,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":49883014,"name":"Leah Kirchmann","nationality":"CAN","sex":"female","date_of_birth":"1990-06-30T00:00:00.000Z","height":1.67,"weight":59,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":275124572,"name":"Leah Neale","nationality":"AUS","sex":"female","date_of_birth":"1995-08-01T00:00:00.000Z","height":1.73,"weight":77,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":436743075,"name":"Leah Nugent","nationality":"JAM","sex":"female","date_of_birth":"1992-11-23T00:00:00.000Z","height":1.73,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":735079950,"name":"Leah Smith","nationality":"USA","sex":"female","date_of_birth":"1995-04-19T00:00:00.000Z","height":1.76,"weight":67,"sport":"aquatics","gold":1,"silver":0,"bronze":1,"info":null},{"id":24067332,"name":"Leander Paes","nationality":"IND","sex":"male","date_of_birth":"1973-06-17T00:00:00.000Z","height":1.75,"weight":82,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":516387036,"name":"Leandra Smeda","nationality":"RSA","sex":"female","date_of_birth":"1989-07-22T00:00:00.000Z","height":1.65,"weight":55,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":793474789,"name":"Leandre Bouchard","nationality":"CAN","sex":"male","date_of_birth":"1992-10-20T00:00:00.000Z","height":1.93,"weight":81,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":925700994,"name":"Leandro Barbosa","nationality":"BRA","sex":"male","date_of_birth":"1982-11-28T00:00:00.000Z","height":1.94,"weight":97,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":495484356,"name":"Leandro Blanc","nationality":"ARG","sex":"male","date_of_birth":"1993-05-02T00:00:00.000Z","height":1.65,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":737168697,"name":"Leandro Silva","nationality":"POR","sex":"male","date_of_birth":"1994-05-04T00:00:00.000Z","height":1.8,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":964889059,"name":"Leandro Vega","nationality":"ARG","sex":"male","date_of_birth":"1996-05-27T00:00:00.000Z","height":1.66,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":121652442,"name":"Leandro Zamora","nationality":"CUB","sex":"male","date_of_birth":"1996-03-11T00:00:00.000Z","height":1.86,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":969409512,"name":"Leanne Choo","nationality":"AUS","sex":"female","date_of_birth":"1991-06-05T00:00:00.000Z","height":1.67,"weight":58,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":327424646,"name":"Lebenya Nkoka","nationality":"LES","sex":"male","date_of_birth":"1982-10-19T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":262078438,"name":"Lebo Mothiba","nationality":"RSA","sex":"male","date_of_birth":"1996-01-28T00:00:00.000Z","height":1.81,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":895052770,"name":"Lebogang Shange","nationality":"RSA","sex":"male","date_of_birth":"1990-08-01T00:00:00.000Z","height":1.6,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":797864785,"name":"Lebohang Ramalepe","nationality":"RSA","sex":"female","date_of_birth":"1991-12-03T00:00:00.000Z","height":1.55,"weight":48,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":785631417,"name":"Lee Kiefer","nationality":"USA","sex":"female","date_of_birth":"1994-06-15T00:00:00.000Z","height":1.63,"weight":48,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":277445751,"name":"Lee Parkhill","nationality":"CAN","sex":"male","date_of_birth":"1988-11-22T00:00:00.000Z","height":1.81,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":101248331,"name":"Lee-Ann Persse","nationality":"RSA","sex":"female","date_of_birth":"1988-11-20T00:00:00.000Z","height":1.81,"weight":74,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":603020546,"name":"Leevan Sands","nationality":"BAH","sex":"male","date_of_birth":"1981-08-16T00:00:00.000Z","height":1.91,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":804034599,"name":"Lei Gao","nationality":"CHN","sex":"male","date_of_birth":"1992-01-02T00:00:00.000Z","height":1.7,"weight":64,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":"By overcoming his compatriot (and current Olympic champion) Dong Dong, China's Gao Lei won the world individual general trampoline gymnastics title in 2015. He was also world champion as part of the Chinese team in 2013."},{"id":101911346,"name":"Lei Gong","nationality":"CHN","sex":"male","date_of_birth":"1983-03-26T00:00:00.000Z","height":1.85,"weight":88,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":512537797,"name":"Lei Kou","nationality":"UKR","sex":"male","date_of_birth":"1987-11-20T00:00:00.000Z","height":1.76,"weight":74,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":988926338,"name":"Leia da Silva Nicolosi","nationality":"BRA","sex":"female","date_of_birth":"1985-03-01T00:00:00.000Z","height":1.69,"weight":58,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":749520759,"name":"Leicy Santos","nationality":"COL","sex":"female","date_of_birth":"1996-05-16T00:00:00.000Z","height":1.54,"weight":56,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":886789693,"name":"Leidy Asprilla","nationality":"COL","sex":"female","date_of_birth":"1997-04-18T00:00:00.000Z","height":1.58,"weight":57,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":772518490,"name":"Leidy Yessenia Solis Arboleda","nationality":"COL","sex":"female","date_of_birth":"1990-02-17T00:00:00.000Z","height":1.68,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":381090123,"name":"Leidys Brito","nationality":"VEN","sex":"female","date_of_birth":"1984-07-05T00:00:00.000Z","height":1.69,"weight":52,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":30611869,"name":"Leila Abdelmoez","nationality":"EGY","sex":"female","date_of_birth":"1996-09-30T00:00:00.000Z","height":1.6,"weight":46,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":122417468,"name":"Leila Luik","nationality":"EST","sex":"female","date_of_birth":"1985-10-14T00:00:00.000Z","height":1.65,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":715708025,"name":"Leilani Mitchell","nationality":"AUS","sex":"female","date_of_birth":"1985-06-15T00:00:00.000Z","height":1.65,"weight":60,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":308992513,"name":"Leinier Eunice Pero","nationality":"CUB","sex":"male","date_of_birth":"1992-11-24T00:00:00.000Z","height":1.92,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":746238944,"name":"Lely Berlitt Burgos Ortiz","nationality":"PUR","sex":"female","date_of_birth":"1985-06-06T00:00:00.000Z","height":1.53,"weight":50,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":910081538,"name":"Lemi Berhanu","nationality":"ETH","sex":"male","date_of_birth":"1994-09-13T00:00:00.000Z","height":1.68,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":204521805,"name":"Lena Goessling","nationality":"GER","sex":"female","date_of_birth":"1986-03-08T00:00:00.000Z","height":1.71,"weight":56,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":505827943,"name":"Lena Kreundl","nationality":"AUT","sex":"female","date_of_birth":"1997-09-19T00:00:00.000Z","height":1.74,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":320412912,"name":"Lena Schoneborn","nationality":"GER","sex":"female","date_of_birth":"1986-04-11T00:00:00.000Z","height":1.79,"weight":60,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":50309903,"name":"Lena Urbaniak","nationality":"GER","sex":"female","date_of_birth":"1992-10-31T00:00:00.000Z","height":1.74,"weight":92,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":949030090,"name":"Lenchu Kunzang","nationality":"BHU","sex":"female","date_of_birth":"1992-02-10T00:00:00.000Z","height":1.65,"weight":59,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":82742065,"name":"Lenin Preciado","nationality":"ECU","sex":"male","date_of_birth":"1993-08-23T00:00:00.000Z","height":1.7,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":138499307,"name":"Lenka Antosova","nationality":"CZE","sex":"female","date_of_birth":"1991-09-27T00:00:00.000Z","height":1.77,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":903947461,"name":"Lennie Waite","nationality":"GBR","sex":"female","date_of_birth":"1986-02-04T00:00:00.000Z","height":1.71,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":483445056,"name":"Leo Mainoldi","nationality":"ARG","sex":"male","date_of_birth":"1985-03-04T00:00:00.000Z","height":2.04,"weight":106,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":442415993,"name":"Leon Goretzka","nationality":"GER","sex":"male","date_of_birth":"1995-02-06T00:00:00.000Z","height":1.86,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":200012588,"name":"Leona Maguire","nationality":"IRL","sex":"female","date_of_birth":"1994-11-30T00:00:00.000Z","height":1.68,"weight":56,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":736914222,"name":"Leonard Essau Korir","nationality":"USA","sex":"male","date_of_birth":"1986-12-10T00:00:00.000Z","height":1.71,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":55261773,"name":"Leonard Ong","nationality":"SIN","sex":"male","date_of_birth":"1992-12-09T00:00:00.000Z","height":1.7,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":617980909,"name":"Leonardo Bittencourt","nationality":"GER","sex":"male","date_of_birth":"1993-12-19T00:00:00.000Z","height":1.71,"weight":62,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":168519114,"name":"Leonardo Chacon","nationality":"CRC","sex":"male","date_of_birth":"1984-06-29T00:00:00.000Z","height":1.79,"weight":65,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":403277949,"name":"Leonardo Querin","nationality":"ARG","sex":"male","date_of_birth":"1982-04-17T00:00:00.000Z","height":1.97,"weight":105,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":40283995,"name":"Leonardo Santos","nationality":"BRA","sex":"male","date_of_birth":"1994-05-30T00:00:00.000Z","height":1.94,"weight":104,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":159048041,"name":"Leonardo de Deus","nationality":"BRA","sex":"male","date_of_birth":"1991-01-18T00:00:00.000Z","height":1.75,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":639962139,"name":"Leone Nakarawa","nationality":"FIJ","sex":"male","date_of_birth":"1988-04-02T00:00:00.000Z","height":1.98,"weight":109,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":649229119,"name":"Leonel Suarez","nationality":"CUB","sex":"male","date_of_birth":"1987-09-01T00:00:00.000Z","height":1.81,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":888575799,"name":"Leonel de los Santos Nunez","nationality":"DOM","sex":"male","date_of_birth":"1994-12-14T00:00:00.000Z","height":1.7,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":655588517,"name":"Leonid Andreev","nationality":"UZB","sex":"male","date_of_birth":"1983-10-06T00:00:00.000Z","height":1.98,"weight":93,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":295139504,"name":"Leonie Adam","nationality":"GER","sex":"female","date_of_birth":"1993-01-02T00:00:00.000Z","height":1.62,"weight":54,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":953257950,"name":"Leonie Antonia Beck","nationality":"GER","sex":"female","date_of_birth":"1997-05-27T00:00:00.000Z","height":1.84,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":812063503,"name":"Leonie Kullmann","nationality":"GER","sex":"female","date_of_birth":"1999-08-26T00:00:00.000Z","height":1.75,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":503186709,"name":"Leonie Maier","nationality":"GER","sex":"female","date_of_birth":"1992-09-29T00:00:00.000Z","height":1.63,"weight":62,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":862102425,"name":"Leonor Rodriguez","nationality":"ESP","sex":"female","date_of_birth":"1991-10-21T00:00:00.000Z","height":1.8,"weight":72,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":399491333,"name":"Leonora Mackinnon","nationality":"CAN","sex":"female","date_of_birth":"1994-05-30T00:00:00.000Z","height":1.8,"weight":77,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":246122300,"name":"Leontia Kallenou","nationality":"CYP","sex":"female","date_of_birth":"1994-10-05T00:00:00.000Z","height":1.8,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":74708917,"name":"Leopold Konig","nationality":"CZE","sex":"male","date_of_birth":"1987-11-15T00:00:00.000Z","height":1.78,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":825004701,"name":"Lerissa Henry","nationality":"FSM","sex":"female","date_of_birth":"1997-08-18T00:00:00.000Z","height":1.53,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":669805740,"name":"Lesley Thompson-Willie","nationality":"CAN","sex":"female","date_of_birth":"1959-09-20T00:00:00.000Z","height":1.6,"weight":50,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":660063171,"name":"Leslie Copeland","nationality":"FIJ","sex":"male","date_of_birth":"1988-04-23T00:00:00.000Z","height":1.83,"weight":102,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":244021964,"name":"Lestrod Roland","nationality":"SKN","sex":"male","date_of_birth":"1992-09-05T00:00:00.000Z","height":1.65,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":792302802,"name":"Leticia Boscacci","nationality":"ARG","sex":"female","date_of_birth":"1985-11-08T00:00:00.000Z","height":1.86,"weight":70,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":927194850,"name":"Leticia Romero","nationality":"ESP","sex":"female","date_of_birth":"1995-05-28T00:00:00.000Z","height":1.77,"weight":62,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":504480132,"name":"Leticia de Souza","nationality":"BRA","sex":"female","date_of_birth":"1996-05-06T00:00:00.000Z","height":1.65,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":53358242,"name":"Leuris Pupo","nationality":"CUB","sex":"male","date_of_birth":"1977-04-09T00:00:00.000Z","height":1.68,"weight":78,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":340107234,"name":"Levan Berianidze","nationality":"ARM","sex":"male","date_of_birth":"1990-10-10T00:00:00.000Z","height":1.86,"weight":125,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":204502697,"name":"Levent Tuncat","nationality":"GER","sex":"male","date_of_birth":"1988-07-29T00:00:00.000Z","height":1.73,"weight":61,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":159745591,"name":"Levern Spencer","nationality":"LCA","sex":"female","date_of_birth":"1984-06-23T00:00:00.000Z","height":1.79,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":576128253,"name":"Levi Cadogan","nationality":"BAR","sex":"male","date_of_birth":"1995-11-08T00:00:00.000Z","height":1.81,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":228788380,"name":"Levon Aghasyan","nationality":"ARM","sex":"male","date_of_birth":"1995-01-19T00:00:00.000Z","height":1.93,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":600455405,"name":"Lewis Holland","nationality":"AUS","sex":"male","date_of_birth":"1993-01-14T00:00:00.000Z","height":1.83,"weight":89,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":362932074,"name":"Lewis Ormond","nationality":"NZL","sex":"male","date_of_birth":"1994-02-05T00:00:00.000Z","height":1.92,"weight":100,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":109119825,"name":"Lexi Thompson","nationality":"USA","sex":"female","date_of_birth":"1995-02-10T00:00:00.000Z","height":1.81,"weight":72,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":237908464,"name":"Lexi Weeks","nationality":"USA","sex":"female","date_of_birth":"1996-11-20T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":544849480,"name":"Leydi Laura Moya","nationality":"CUB","sex":"female","date_of_birth":"1992-04-16T00:00:00.000Z","height":1.7,"weight":68,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":654502394,"name":"Leyla Rajabi","nationality":"IRI","sex":"female","date_of_birth":"1983-04-18T00:00:00.000Z","height":1.87,"weight":100,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":176154136,"name":"Li Du","nationality":"CHN","sex":"female","date_of_birth":"1982-03-05T00:00:00.000Z","height":1.7,"weight":55,"sport":"shooting","gold":0,"silver":1,"bronze":1,"info":null},{"id":447494695,"name":"Li Guo","nationality":"CHN","sex":"female","date_of_birth":"1993-05-11T00:00:00.000Z","height":1.67,"weight":54,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":157385962,"name":"Li Lin","nationality":"CHN","sex":"female","date_of_birth":"1992-07-05T00:00:00.000Z","height":1.71,"weight":70,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":394183572,"name":"Li Yang","nationality":"CHN","sex":"female","date_of_birth":"1991-01-31T00:00:00.000Z","height":1.67,"weight":58,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":462590793,"name":"Lia Neal","nationality":"USA","sex":"female","date_of_birth":"1995-02-13T00:00:00.000Z","height":1.78,"weight":74,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":472892087,"name":"Liadagmis Povea","nationality":"CUB","sex":"female","date_of_birth":"1996-02-06T00:00:00.000Z","height":1.66,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":329731832,"name":"Liam Adams","nationality":"AUS","sex":"male","date_of_birth":"1986-09-04T00:00:00.000Z","height":1.78,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":865915642,"name":"Liam Bertazzo","nationality":"ITA","sex":"male","date_of_birth":"1992-02-17T00:00:00.000Z","height":1.85,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":131214220,"name":"Liam Heath","nationality":"GBR","sex":"male","date_of_birth":"1984-08-17T00:00:00.000Z","height":1.82,"weight":81,"sport":"canoe","gold":1,"silver":1,"bronze":0,"info":null},{"id":945401924,"name":"Liam Phillips","nationality":"GBR","sex":"male","date_of_birth":"1989-03-11T00:00:00.000Z","height":1.81,"weight":85,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":182272008,"name":"Liam Pitchford","nationality":"GBR","sex":"male","date_of_birth":"1993-07-12T00:00:00.000Z","height":1.86,"weight":67,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":837742830,"name":"Lian Yuan Wang","nationality":"CHN","sex":"female","date_of_birth":"1994-08-26T00:00:00.000Z","height":1.67,"weight":60,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":518240529,"name":"Liana Salazar","nationality":"COL","sex":"female","date_of_birth":"1992-09-16T00:00:00.000Z","height":1.69,"weight":52,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":169395175,"name":"Lianna Swan","nationality":"PAK","sex":"female","date_of_birth":"1997-03-25T00:00:00.000Z","height":1.65,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":82404018,"name":"Lianne Tan","nationality":"BEL","sex":"female","date_of_birth":"1990-11-20T00:00:00.000Z","height":1.6,"weight":54,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":598538220,"name":"Libania Grenot","nationality":"ITA","sex":"female","date_of_birth":"1983-07-12T00:00:00.000Z","height":1.75,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":9859586,"name":"Libuse Jahodova","nationality":"CZE","sex":"female","date_of_birth":"1992-05-31T00:00:00.000Z","height":1.63,"weight":52,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":427854268,"name":"Licet Hernandez","nationality":"CUB","sex":"female","date_of_birth":"1993-04-14T00:00:00.000Z","height":1.68,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":641616840,"name":"Lidewij Welten","nationality":"NED","sex":"female","date_of_birth":"1990-07-16T00:00:00.000Z","height":1.7,"weight":64,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":860964222,"name":"Lidia Valentin Perez","nationality":"ESP","sex":"female","date_of_birth":"1985-02-10T00:00:00.000Z","height":1.69,"weight":74,"sport":"weightlifting","gold":0,"silver":0,"bronze":1,"info":null},{"id":790043158,"name":"Lidiane Lopes","nationality":"CPV","sex":"female","date_of_birth":"1994-09-01T00:00:00.000Z","height":1.78,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":513701226,"name":"Lidiia Sichenikova","nationality":"UKR","sex":"female","date_of_birth":"1993-02-03T00:00:00.000Z","height":1.83,"weight":69,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":352163486,"name":"Lieke Wevers","nationality":"NED","sex":"female","date_of_birth":"1991-09-17T00:00:00.000Z","height":1.67,"weight":54,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":12425606,"name":"Liemarvin Bonevacia","nationality":"NED","sex":"male","date_of_birth":"1989-04-05T00:00:00.000Z","height":1.85,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":763919056,"name":"Lies Rustenburg","nationality":"NED","sex":"female","date_of_birth":"1990-04-08T00:00:00.000Z","height":1.83,"weight":74,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":390159530,"name":"Liina Laasma","nationality":"EST","sex":"female","date_of_birth":"1992-01-13T00:00:00.000Z","height":1.74,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":795063034,"name":"Liina Luik","nationality":"EST","sex":"female","date_of_birth":"1985-10-14T00:00:00.000Z","height":1.64,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":547595943,"name":"Lijia Xu","nationality":"CHN","sex":"female","date_of_birth":"1987-08-30T00:00:00.000Z","height":1.76,"weight":60,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":16471586,"name":"Lijiao Gong","nationality":"CHN","sex":"female","date_of_birth":"1989-01-24T00:00:00.000Z","height":1.75,"weight":105,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":202813499,"name":"Lijun Chen","nationality":"CHN","sex":"male","date_of_birth":"1993-02-08T00:00:00.000Z","height":1.62,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":653834235,"name":"Lijun Zu","nationality":"CHN","sex":"male","date_of_birth":"1989-11-26T00:00:00.000Z","height":1.88,"weight":87,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":410869644,"name":"Likourgos-Stefanos Tsakonas","nationality":"GRE","sex":"male","date_of_birth":"1990-03-08T00:00:00.000Z","height":1.85,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":268704027,"name":"Lilia Fisikowici","nationality":"MDA","sex":"female","date_of_birth":"1989-03-29T00:00:00.000Z","height":1.7,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":150040443,"name":"Lilian Castro","nationality":"ESA","sex":"female","date_of_birth":"1986-12-19T00:00:00.000Z","height":1.64,"weight":63,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":736338812,"name":"Lilian de Geus","nationality":"NED","sex":"female","date_of_birth":"1991-10-13T00:00:00.000Z","height":1.64,"weight":57,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":832461074,"name":"Liliana Fernandez Steiner","nationality":"ESP","sex":"female","date_of_birth":"1987-01-04T00:00:00.000Z","height":1.78,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":720106859,"name":"Liliana Ibanez Lopez","nationality":"MEX","sex":"female","date_of_birth":"1991-01-30T00:00:00.000Z","height":1.8,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":42265124,"name":"Liliana Neto","nationality":"ANG","sex":"female","date_of_birth":"1997-01-29T00:00:00.000Z","height":1.66,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":93076735,"name":"Liliana Szilagyi","nationality":"HUN","sex":"female","date_of_birth":"1996-11-19T00:00:00.000Z","height":1.75,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":92875421,"name":"Liliana da Silva Venancio","nationality":"ANG","sex":"female","date_of_birth":"1995-09-19T00:00:00.000Z","height":1.8,"weight":93,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":277003612,"name":"Lilima Minz","nationality":"IND","sex":"female","date_of_birth":"1994-04-10T00:00:00.000Z","height":1.58,"weight":52,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":986623608,"name":"Lilit Harutyunyan","nationality":"ARM","sex":"female","date_of_birth":"1993-04-04T00:00:00.000Z","height":1.64,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":39304647,"name":"Liliyana Natsir","nationality":"INA","sex":"female","date_of_birth":"1985-09-09T00:00:00.000Z","height":1.69,"weight":62,"sport":"badminton","gold":1,"silver":0,"bronze":0,"info":null},{"id":461914120,"name":"Lilly King","nationality":"USA","sex":"female","date_of_birth":"1997-02-10T00:00:00.000Z","height":1.76,"weight":70,"sport":"aquatics","gold":2,"silver":0,"bronze":0,"info":null},{"id":80507918,"name":"Lily Luik","nationality":"EST","sex":"female","date_of_birth":"1985-10-14T00:00:00.000Z","height":1.63,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":877281953,"name":"Lily Owsley","nationality":"GBR","sex":"female","date_of_birth":"1994-12-10T00:00:00.000Z","height":1.7,"weight":70,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":919045571,"name":"Lily Zhang","nationality":"USA","sex":"female","date_of_birth":"1996-06-16T00:00:00.000Z","height":1.66,"weight":58,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":474911998,"name":"Lin Gui","nationality":"BRA","sex":"female","date_of_birth":"1993-10-01T00:00:00.000Z","height":1.68,"weight":52,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":64295130,"name":"Lin Peng","nationality":"CHN","sex":"female","date_of_birth":"1995-04-04T00:00:00.000Z","height":1.83,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":821207198,"name":"Lina Guerin","nationality":"FRA","sex":"female","date_of_birth":"1991-04-16T00:00:00.000Z","height":1.75,"weight":64,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":530731946,"name":"Lina Magull","nationality":"GER","sex":"female","date_of_birth":"1994-08-15T00:00:00.000Z","height":1.64,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":472444817,"name":"Lina Marcela Rivas Ordonez","nationality":"COL","sex":"female","date_of_birth":"1990-04-24T00:00:00.000Z","height":1.59,"weight":58,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":525260451,"name":"Lina Saltyte","nationality":"LTU","sex":"female","date_of_birth":"1987-02-09T00:00:00.000Z","height":1.84,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":449688745,"name":"Lina Zhao","nationality":"CHN","sex":"female","date_of_birth":"1991-09-18T00:00:00.000Z","height":1.88,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":932267400,"name":"Linda Algotsson","nationality":"SWE","sex":"female","date_of_birth":"1972-03-22T00:00:00.000Z","height":1.62,"weight":50,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":489441345,"name":"Linda Bolder","nationality":"ISR","sex":"female","date_of_birth":"1988-07-03T00:00:00.000Z","height":1.73,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":413014010,"name":"Linda Cerruti","nationality":"ITA","sex":"female","date_of_birth":"1993-10-07T00:00:00.000Z","height":1.73,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":401236995,"name":"Linda Fahrni","nationality":"SUI","sex":"female","date_of_birth":"1993-05-25T00:00:00.000Z","height":1.57,"weight":56,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":849736805,"name":"Linda Indergand","nationality":"SUI","sex":"female","date_of_birth":"1993-07-13T00:00:00.000Z","height":1.69,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":236104816,"name":"Linda Motlhalo","nationality":"RSA","sex":"female","date_of_birth":"1998-07-01T00:00:00.000Z","height":1.62,"weight":47,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":351574736,"name":"Linda Sandblom","nationality":"FIN","sex":"female","date_of_birth":"1989-10-18T00:00:00.000Z","height":1.76,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":401452346,"name":"Linda Sembrant","nationality":"SWE","sex":"female","date_of_birth":"1987-05-15T00:00:00.000Z","height":1.75,"weight":66,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":843070999,"name":"Linda Stahl","nationality":"GER","sex":"female","date_of_birth":"1985-10-02T00:00:00.000Z","height":1.76,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":446754440,"name":"Linda Villumsen","nationality":"NZL","sex":"female","date_of_birth":"1985-04-09T00:00:00.000Z","height":1.65,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":793960001,"name":"Linda Zetchiri","nationality":"BUL","sex":"female","date_of_birth":"1987-07-27T00:00:00.000Z","height":1.69,"weight":58,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":351805810,"name":"Lindaweni Fanetri","nationality":"INA","sex":"female","date_of_birth":"1990-01-18T00:00:00.000Z","height":1.67,"weight":60,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":510445480,"name":"Linden Hall","nationality":"AUS","sex":"female","date_of_birth":"1991-06-20T00:00:00.000Z","height":1.67,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":470256290,"name":"Lindiwe Magwede","nationality":"ZIM","sex":"female","date_of_birth":"1991-12-01T00:00:00.000Z","height":1.76,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":644836357,"name":"Lindolfo Delgado","nationality":"MEX","sex":"male","date_of_birth":"1994-12-31T00:00:00.000Z","height":1.74,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":934402077,"name":"Lindon Victor","nationality":"GRN","sex":"male","date_of_birth":"1993-02-28T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":408373995,"name":"Lindsay Hanekom","nationality":"RSA","sex":"male","date_of_birth":"1993-05-15T00:00:00.000Z","height":1.78,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":181124319,"name":"Lindsay Jennerich","nationality":"CAN","sex":"female","date_of_birth":"1982-07-30T00:00:00.000Z","height":1.65,"weight":59,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":116706289,"name":"Lindsay Whalen","nationality":"USA","sex":"female","date_of_birth":"1982-05-09T00:00:00.000Z","height":1.75,"weight":72,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":365794539,"name":"Lindsey Harding","nationality":"BLR","sex":"female","date_of_birth":"1984-06-12T00:00:00.000Z","height":1.73,"weight":65,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":830406160,"name":"Lindsey Horan","nationality":"USA","sex":"female","date_of_birth":"1994-05-26T00:00:00.000Z","height":1.75,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":727787093,"name":"Line Kjaersfeldt","nationality":"DEN","sex":"female","date_of_birth":"1994-04-20T00:00:00.000Z","height":1.75,"weight":65,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":925589540,"name":"Linet Arasa","nationality":"KEN","sex":"female","date_of_birth":"1996-01-01T00:00:00.000Z","height":2.03,"weight":61,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":24311177,"name":"Ling Li","nationality":"CHN","sex":"female","date_of_birth":"1989-07-06T00:00:00.000Z","height":1.85,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":41586210,"name":"Ling Zhang","nationality":"CHN","sex":"female","date_of_birth":"1997-02-27T00:00:00.000Z","height":1.82,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":348322475,"name":"Ling Zhang","nationality":"CHN","sex":"female","date_of_birth":"1992-09-18T00:00:00.000Z","height":1.72,"weight":51,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":439546048,"name":"Lingwei Kong","nationality":"CHN","sex":"female","date_of_birth":"1995-07-28T00:00:00.000Z","height":1.63,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":399160547,"name":"Lingwei Li","nationality":"CHN","sex":"female","date_of_birth":"1989-01-26T00:00:00.000Z","height":1.74,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":745922840,"name":"Linn Blohm","nationality":"SWE","sex":"female","date_of_birth":"1992-05-20T00:00:00.000Z","height":1.8,"weight":79,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":485795887,"name":"Linn-Kristin Riegelhuth Koren","nationality":"NOR","sex":"female","date_of_birth":"1984-08-01T00:00:00.000Z","height":1.75,"weight":null,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":502728742,"name":"Linnea Stensils","nationality":"SWE","sex":"female","date_of_birth":"1994-03-08T00:00:00.000Z","height":1.78,"weight":69,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":517447697,"name":"Linnea Torstensson","nationality":"SWE","sex":"female","date_of_birth":"1983-03-30T00:00:00.000Z","height":1.86,"weight":82,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":514401054,"name":"Lino Munoz","nationality":"MEX","sex":"male","date_of_birth":"1991-02-08T00:00:00.000Z","height":1.74,"weight":65,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":542689552,"name":"Linus Butt","nationality":"GER","sex":"male","date_of_birth":"1987-03-12T00:00:00.000Z","height":1.86,"weight":83,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":983582126,"name":"Liosbel Hernandez","nationality":"CUB","sex":"male","date_of_birth":"1983-12-17T00:00:00.000Z","height":1.9,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":557752206,"name":"Lisa Altenburg","nationality":"GER","sex":"female","date_of_birth":"1989-09-23T00:00:00.000Z","height":1.55,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":416331629,"name":"Lisa Brennauer","nationality":"GER","sex":"female","date_of_birth":"1988-06-08T00:00:00.000Z","height":1.68,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":135005136,"name":"Lisa Carrington","nationality":"NZL","sex":"female","date_of_birth":"1989-06-23T00:00:00.000Z","height":1.68,"weight":63,"sport":"canoe","gold":1,"silver":0,"bronze":1,"info":"A specialist in the K-1 200m canoe sprint event, New Zealand's Lisa Carrington won gold at London 2012, as well as in the 2011, 2013, 2014 and 2015 world championships (also winning the 500m in the latter)."},{"id":922248644,"name":"Lisa Dahlkvist","nationality":"SWE","sex":"female","date_of_birth":"1987-02-06T00:00:00.000Z","height":1.73,"weight":68,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":191131636,"name":"Lisa Darmanin","nationality":"AUS","sex":"female","date_of_birth":"1991-08-27T00:00:00.000Z","height":1.68,"weight":65,"sport":"sailing","gold":0,"silver":1,"bronze":0,"info":null},{"id":954723577,"name":"Lisa Ecker","nationality":"AUT","sex":"female","date_of_birth":"1992-09-19T00:00:00.000Z","height":1.57,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":25397368,"name":"Lisa Ericson","nationality":"SWE","sex":"female","date_of_birth":"1988-05-09T00:00:00.000Z","height":1.65,"weight":60,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":128351056,"name":"Lisa Graf","nationality":"GER","sex":"female","date_of_birth":"1992-11-13T00:00:00.000Z","height":1.83,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":221215315,"name":"Lisa Hahner","nationality":"GER","sex":"female","date_of_birth":"1989-11-20T00:00:00.000Z","height":1.67,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":211903668,"name":"Lisa Jane Weightman","nationality":"AUS","sex":"female","date_of_birth":"1979-01-16T00:00:00.000Z","height":1.57,"weight":44,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":18063764,"name":"Lisa Klein","nationality":"GER","sex":"female","date_of_birth":"1996-07-15T00:00:00.000Z","height":1.7,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":526656164,"name":"Lisa Mayer","nationality":"GER","sex":"female","date_of_birth":"1996-05-02T00:00:00.000Z","height":1.71,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":765502625,"name":"Lisa Norden","nationality":"SWE","sex":"female","date_of_birth":"1984-11-24T00:00:00.000Z","height":1.76,"weight":60,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":"Silver medallist at London 2012, Sweden's Lisa Nordén lost the gold to Switzerland's Nicola Spirig in a photo finish. That same year, Lisa was the world champion, but recently won bronze at the European Games, in 2015."},{"id":620856226,"name":"Lisa Roman","nationality":"CAN","sex":"female","date_of_birth":"1989-09-17T00:00:00.000Z","height":1.78,"weight":76,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":298441762,"name":"Lisa Ryzih","nationality":"GER","sex":"female","date_of_birth":"1988-09-27T00:00:00.000Z","height":1.79,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":130489647,"name":"Lisa Schmidla","nationality":"GER","sex":"female","date_of_birth":"1991-06-05T00:00:00.000Z","height":1.73,"weight":76,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":467310646,"name":"Lisa Schutze","nationality":"GER","sex":"female","date_of_birth":"1996-10-05T00:00:00.000Z","height":1.72,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":241114049,"name":"Lisa Unruh","nationality":"GER","sex":"female","date_of_birth":"1988-04-12T00:00:00.000Z","height":1.8,"weight":68,"sport":"archery","gold":0,"silver":1,"bronze":0,"info":null},{"id":437677562,"name":"Lisa Weiss","nationality":"GER","sex":"female","date_of_birth":"1987-10-29T00:00:00.000Z","height":1.71,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":700918622,"name":"Lisa Zaiser","nationality":"AUT","sex":"female","date_of_birth":"1994-08-23T00:00:00.000Z","height":1.74,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":713570964,"name":"Lisa de Vanna","nationality":"AUS","sex":"female","date_of_birth":"1984-11-14T00:00:00.000Z","height":1.56,"weight":56,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":531666136,"name":"Lisandra Guerra Rodriguez","nationality":"CUB","sex":"female","date_of_birth":"1987-10-31T00:00:00.000Z","height":1.67,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":268135411,"name":"Lisandro Magallan","nationality":"ARG","sex":"male","date_of_birth":"1993-09-27T00:00:00.000Z","height":1.81,"weight":79,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":398635028,"name":"Lisanne de Witte","nationality":"NED","sex":"female","date_of_birth":"1992-09-10T00:00:00.000Z","height":1.75,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":21753483,"name":"Lisbet Jakobsen","nationality":"DEN","sex":"female","date_of_birth":"1987-01-21T00:00:00.000Z","height":1.79,"weight":71,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":155823041,"name":"Lisneidy Veitia","nationality":"CUB","sex":"female","date_of_birth":"1994-04-29T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":13117642,"name":"Lissa Labiche","nationality":"SEY","sex":"female","date_of_birth":"1993-02-18T00:00:00.000Z","height":1.72,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":461845874,"name":"Lissette Alexandra Antes Castillo","nationality":"ECU","sex":"female","date_of_birth":"1991-05-02T00:00:00.000Z","height":1.77,"weight":58,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":728085851,"name":"Litia Naiqato","nationality":"FIJ","sex":"female","date_of_birth":"1987-03-25T00:00:00.000Z","height":1.8,"weight":76,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":380475095,"name":"Liu Ying Goh","nationality":"MAS","sex":"female","date_of_birth":"1989-05-30T00:00:00.000Z","height":1.66,"weight":56,"sport":"badminton","gold":0,"silver":1,"bronze":0,"info":null},{"id":82572587,"name":"Liubomyr Lemeshko","nationality":"UKR","sex":"male","date_of_birth":"1992-07-19T00:00:00.000Z","height":1.86,"weight":86,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":307207034,"name":"Liubov Basova","nationality":"UKR","sex":"female","date_of_birth":"1988-07-16T00:00:00.000Z","height":1.62,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":737904041,"name":"Liudmila Dmitrieva","nationality":"RUS","sex":"female","date_of_birth":"1989-05-02T00:00:00.000Z","height":1.8,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":35679352,"name":"Liudmyla Kichenok","nationality":"UKR","sex":"female","date_of_birth":"1992-07-20T00:00:00.000Z","height":1.76,"weight":65,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":672950250,"name":"Livan Lopez Azcuy","nationality":"CUB","sex":"male","date_of_birth":"1982-01-24T00:00:00.000Z","height":1.7,"weight":74,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":537422944,"name":"Livan Osoria Rodriguez","nationality":"CUB","sex":"male","date_of_birth":"1994-02-05T00:00:00.000Z","height":2.01,"weight":96,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":345846661,"name":"Livio LA PADULA","nationality":"ITA","sex":"male","date_of_birth":"1985-11-20T00:00:00.000Z","height":1.83,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":836548598,"name":"Lizanne Murphy","nationality":"CAN","sex":"female","date_of_birth":"1984-03-15T00:00:00.000Z","height":1.85,"weight":75,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":463712046,"name":"Lizhu Huang","nationality":"CHN","sex":"female","date_of_birth":"1987-10-09T00:00:00.000Z","height":1.74,"weight":71,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":887425403,"name":"Lizzie Lee","nationality":"IRL","sex":"female","date_of_birth":"1980-05-22T00:00:00.000Z","height":1.65,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":225973698,"name":"Lkhamdegd Purevjargal","nationality":"MGL","sex":"female","date_of_birth":"1986-09-18T00:00:00.000Z","height":1.8,"weight":80,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":546982242,"name":"Loan His","nationality":"FRA","sex":"female","date_of_birth":"1999-04-10T00:00:00.000Z","height":1.6,"weight":51,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":612340234,"name":"Logan Cunningham","nationality":"USA","sex":"male","date_of_birth":"1991-05-30T00:00:00.000Z","height":1.76,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":338570667,"name":"Logan Dooley","nationality":"USA","sex":"male","date_of_birth":"1987-09-26T00:00:00.000Z","height":1.75,"weight":58,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":92285054,"name":"Lohaynny Vicente","nationality":"BRA","sex":"female","date_of_birth":"1996-05-02T00:00:00.000Z","height":1.68,"weight":70,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":586219392,"name":"Loic Pietri","nationality":"FRA","sex":"male","date_of_birth":"1990-08-27T00:00:00.000Z","height":1.77,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":999987786,"name":"Loick Luypaert","nationality":"BEL","sex":"male","date_of_birth":"1991-08-19T00:00:00.000Z","height":1.81,"weight":78,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":774306010,"name":"Lois Abbingh","nationality":"NED","sex":"female","date_of_birth":"1992-08-13T00:00:00.000Z","height":1.78,"weight":72,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":508980654,"name":"Lois Maikel Martinez","nationality":"ESP","sex":"male","date_of_birth":"1981-06-03T00:00:00.000Z","height":1.87,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":667499984,"name":"Lois Toulson","nationality":"GBR","sex":"female","date_of_birth":"1999-09-26T00:00:00.000Z","height":1.66,"weight":51,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":974884842,"name":"Lok Yan Poon","nationality":"HKG","sex":"female","date_of_birth":"1991-08-22T00:00:00.000Z","height":1.69,"weight":56,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":270039898,"name":"Lola Riera","nationality":"ESP","sex":"female","date_of_birth":"1991-06-25T00:00:00.000Z","height":1.72,"weight":74,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":993580824,"name":"Lolita Ananasova","nationality":"UKR","sex":"female","date_of_birth":"1992-07-09T00:00:00.000Z","height":1.69,"weight":52,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":962247263,"name":"Lomano Lemeki","nationality":"JPN","sex":"male","date_of_birth":"1989-01-20T00:00:00.000Z","height":1.77,"weight":92,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":366057032,"name":"Long Chen","nationality":"CHN","sex":"male","date_of_birth":"1989-01-18T00:00:00.000Z","height":1.88,"weight":81,"sport":"badminton","gold":1,"silver":0,"bronze":0,"info":"A two-time world badminton champion having won the singles tournaments in 2014 and 2015, China's Chen Long is among the top ranked Badminton players in the world. His Olympic debut came at London 2012, where he took home the bronze."},{"id":865328770,"name":"Long Gutierrez Feng","nationality":"MEX","sex":"male","date_of_birth":"1995-02-23T00:00:00.000Z","height":1.9,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":736738706,"name":"Long Ma","nationality":"CHN","sex":"male","date_of_birth":"1988-10-20T00:00:00.000Z","height":1.75,"weight":72,"sport":"table tennis","gold":2,"silver":0,"bronze":0,"info":null},{"id":399910648,"name":"Lonneke Sloetjes","nationality":"NED","sex":"female","date_of_birth":"1990-11-15T00:00:00.000Z","height":1.92,"weight":77,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":779658344,"name":"Loredana Dinu","nationality":"ROU","sex":"female","date_of_birth":"1984-04-02T00:00:00.000Z","height":1.68,"weight":60,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":398479062,"name":"Lorena Molinos","nationality":"BRA","sex":"female","date_of_birth":"1991-03-02T00:00:00.000Z","height":1.6,"weight":51,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":180299954,"name":"Lorene Dorcas Bazolo","nationality":"POR","sex":"female","date_of_birth":"1983-05-04T00:00:00.000Z","height":1.7,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":554615022,"name":"Lorenzo Sotomayor Collazo","nationality":"AZE","sex":"male","date_of_birth":"1985-02-16T00:00:00.000Z","height":1.85,"weight":null,"sport":"boxing","gold":0,"silver":1,"bronze":0,"info":null},{"id":636450373,"name":"Loreta Gulotta","nationality":"ITA","sex":"female","date_of_birth":"1987-05-08T00:00:00.000Z","height":1.74,"weight":63,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":634263213,"name":"Lornah Chemtai Korlima","nationality":"ISR","sex":"female","date_of_birth":"1988-12-12T00:00:00.000Z","height":1.65,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":904651975,"name":"Lorraine Ugen","nationality":"GBR","sex":"female","date_of_birth":"1991-08-22T00:00:00.000Z","height":1.79,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":753835891,"name":"Lorrane Oliveira","nationality":"BRA","sex":"female","date_of_birth":"1998-04-13T00:00:00.000Z","height":1.53,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":399652811,"name":"Lorys Bourelly","nationality":"FRA","sex":"male","date_of_birth":"1992-05-27T00:00:00.000Z","height":1.86,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":345563722,"name":"Lote Tuqiri","nationality":"JPN","sex":"male","date_of_birth":"1987-11-12T00:00:00.000Z","height":1.89,"weight":99,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":809986793,"name":"Lotta Lepisto","nationality":"FIN","sex":"female","date_of_birth":"1989-06-28T00:00:00.000Z","height":1.64,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":97180847,"name":"Lotta Schelin","nationality":"SWE","sex":"female","date_of_birth":"1984-02-27T00:00:00.000Z","height":1.79,"weight":66,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":421793519,"name":"Lotte Friis","nationality":"DEN","sex":"female","date_of_birth":"1988-02-09T00:00:00.000Z","height":1.83,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":290076256,"name":"Lotte Kopecky","nationality":"BEL","sex":"female","date_of_birth":"1995-11-10T00:00:00.000Z","height":1.71,"weight":66,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":224274265,"name":"Louis Croenen","nationality":"BEL","sex":"male","date_of_birth":"1994-01-04T00:00:00.000Z","height":1.86,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":99752368,"name":"Louis Meintjes","nationality":"RSA","sex":"male","date_of_birth":"1992-02-21T00:00:00.000Z","height":1.73,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":84986974,"name":"Louis Smith","nationality":"GBR","sex":"male","date_of_birth":"1989-04-22T00:00:00.000Z","height":1.8,"weight":78,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":null},{"id":677916006,"name":"Louisa Cadamuro","nationality":"FRA","sex":"female","date_of_birth":"1987-01-23T00:00:00.000Z","height":1.68,"weight":56,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":23974217,"name":"Louisa Chafee","nationality":"USA","sex":"female","date_of_birth":"1991-09-24T00:00:00.000Z","height":1.66,"weight":56,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":22758388,"name":"Louisa Gurski","nationality":"GBR","sex":"female","date_of_birth":"1988-05-26T00:00:00.000Z","height":1.72,"weight":70,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":544547565,"name":"Louise Bawden","nationality":"AUS","sex":"female","date_of_birth":"1981-08-07T00:00:00.000Z","height":1.83,"weight":72,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":347394915,"name":"Louise Bloor","nationality":"GBR","sex":"female","date_of_birth":"1985-09-21T00:00:00.000Z","height":1.68,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":59039148,"name":"Louise Carton","nationality":"BEL","sex":"female","date_of_birth":"1994-04-16T00:00:00.000Z","height":1.81,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":602283676,"name":"Louise Hansson","nationality":"SWE","sex":"female","date_of_birth":"1996-11-24T00:00:00.000Z","height":1.87,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":809952135,"name":"Louise Sand","nationality":"SWE","sex":"female","date_of_birth":"1992-12-27T00:00:00.000Z","height":1.64,"weight":62,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":394180888,"name":"Louise Vanhille","nationality":"FRA","sex":"female","date_of_birth":"1998-11-06T00:00:00.000Z","height":1.67,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":850074642,"name":"Lourdes Mohedano","nationality":"ESP","sex":"female","date_of_birth":"1995-06-17T00:00:00.000Z","height":1.73,"weight":53,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":null},{"id":911242137,"name":"Lovisa Lindh","nationality":"SWE","sex":"female","date_of_birth":"1991-07-09T00:00:00.000Z","height":1.69,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":105066319,"name":"Lu Li","nationality":"CHN","sex":"female","date_of_birth":"1992-02-18T00:00:00.000Z","height":1.6,"weight":55,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":276246857,"name":"Luan","nationality":"BRA","sex":"male","date_of_birth":"1993-03-27T00:00:00.000Z","height":1.8,"weight":71,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":642783989,"name":"Luan Garcia","nationality":"BRA","sex":"male","date_of_birth":"1993-05-10T00:00:00.000Z","height":1.83,"weight":79,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":156350082,"name":"Luba Golovina","nationality":"GEO","sex":"female","date_of_birth":"1990-04-20T00:00:00.000Z","height":1.72,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":682800627,"name":"Lubna Alomair","nationality":"KSA","sex":"female","date_of_birth":"1987-04-14T00:00:00.000Z","height":1.52,"weight":45,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":475847268,"name":"Lubomir Jancarik","nationality":"CZE","sex":"male","date_of_birth":"1987-08-17T00:00:00.000Z","height":1.93,"weight":82,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":878070410,"name":"Luc Abalo","nationality":"FRA","sex":"male","date_of_birth":"1984-09-06T00:00:00.000Z","height":1.82,"weight":86,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":642947259,"name":"Luca Agamennoni","nationality":"ITA","sex":"male","date_of_birth":"1980-08-08T00:00:00.000Z","height":1.87,"weight":93,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":338874266,"name":"Luca Braidot","nationality":"ITA","sex":"male","date_of_birth":"1991-05-29T00:00:00.000Z","height":1.79,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":554715039,"name":"Luca Cupido","nationality":"USA","sex":"male","date_of_birth":"1995-11-09T00:00:00.000Z","height":1.88,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":741078160,"name":"Luca Dotto","nationality":"ITA","sex":"male","date_of_birth":"1990-04-18T00:00:00.000Z","height":1.92,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":659816292,"name":"Luca Leonardi","nationality":"ITA","sex":"male","date_of_birth":"1991-01-01T00:00:00.000Z","height":1.91,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":313498882,"name":"Luca Marin","nationality":"ITA","sex":"male","date_of_birth":"1986-04-09T00:00:00.000Z","height":1.87,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":543136851,"name":"Luca Masso","nationality":"ARG","sex":"male","date_of_birth":"1994-07-17T00:00:00.000Z","height":1.86,"weight":82,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":129051185,"name":"Luca Pizzini","nationality":"ITA","sex":"male","date_of_birth":"1989-04-08T00:00:00.000Z","height":1.85,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":537669111,"name":"Luca Roman","nationality":"ITA","sex":"male","date_of_birth":"1985-12-10T00:00:00.000Z","height":1.74,"weight":69,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":141527506,"name":"Luca Vettori","nationality":"ITA","sex":"male","date_of_birth":"1991-04-26T00:00:00.000Z","height":2,"weight":95,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":564323858,"name":"Lucas Bruchet","nationality":"CAN","sex":"male","date_of_birth":"1991-02-23T00:00:00.000Z","height":1.83,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":129309426,"name":"Lucas Calabrese","nationality":"ARG","sex":"male","date_of_birth":"1986-12-12T00:00:00.000Z","height":1.68,"weight":60,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":604160230,"name":"Lucas Candido","nationality":"BRA","sex":"male","date_of_birth":"1989-03-19T00:00:00.000Z","height":1.85,"weight":88,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":711817435,"name":"Lucas Carvalho","nationality":"BRA","sex":"male","date_of_birth":"1993-07-16T00:00:00.000Z","height":1.75,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":243504044,"name":"Lucas Daniel","nationality":"FRA","sex":"male","date_of_birth":"1995-01-01T00:00:00.000Z","height":1.8,"weight":80,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":599092094,"name":"Lucas Duque","nationality":"BRA","sex":"male","date_of_birth":"1984-03-15T00:00:00.000Z","height":1.7,"weight":84,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":489045674,"name":"Lucas Jakubczyk","nationality":"GER","sex":"male","date_of_birth":"1985-04-28T00:00:00.000Z","height":1.83,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":79045868,"name":"Lucas Kozeniesky","nationality":"USA","sex":"male","date_of_birth":"1995-05-31T00:00:00.000Z","height":1.81,"weight":79,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":78252233,"name":"Lucas Paixao","nationality":"BRA","sex":"male","date_of_birth":"1994-09-02T00:00:00.000Z","height":1.72,"weight":62,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":199482882,"name":"Lucas Rey","nationality":"ARG","sex":"male","date_of_birth":"1982-10-11T00:00:00.000Z","height":1.77,"weight":74,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":517848380,"name":"Lucas Romero","nationality":"ARG","sex":"male","date_of_birth":"1994-04-18T00:00:00.000Z","height":1.69,"weight":73,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":988887897,"name":"Lucas Rossi","nationality":"ARG","sex":"male","date_of_birth":"1985-06-02T00:00:00.000Z","height":1.88,"weight":88,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":81328247,"name":"Lucas Saatkamp","nationality":"BRA","sex":"male","date_of_birth":"1986-03-06T00:00:00.000Z","height":2.09,"weight":101,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":548331359,"name":"Lucas Schaefer","nationality":"GER","sex":"male","date_of_birth":"1994-08-15T00:00:00.000Z","height":1.87,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":505340328,"name":"Lucas Tramer","nationality":"SUI","sex":"male","date_of_birth":"1989-09-01T00:00:00.000Z","height":1.83,"weight":75,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":612347154,"name":"Lucas Vila","nationality":"ARG","sex":"male","date_of_birth":"1986-08-23T00:00:00.000Z","height":1.72,"weight":75,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":249567858,"name":"Lucia Falasca","nationality":"ARG","sex":"female","date_of_birth":"1993-07-08T00:00:00.000Z","height":1.71,"weight":64,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":668932185,"name":"Lucia Fresco","nationality":"ARG","sex":"female","date_of_birth":"1991-05-14T00:00:00.000Z","height":1.95,"weight":92,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":546619067,"name":"Lucia Haro","nationality":"ARG","sex":"female","date_of_birth":"1986-08-21T00:00:00.000Z","height":1.78,"weight":71,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":542002382,"name":"Lucia Hrivnak Klocova","nationality":"SVK","sex":"female","date_of_birth":"1983-11-20T00:00:00.000Z","height":1.72,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":752386508,"name":"Lucia Jimenez","nationality":"ESP","sex":"female","date_of_birth":"1997-01-08T00:00:00.000Z","height":1.63,"weight":51,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":480093608,"name":"Lucia Mwihaki Kimani","nationality":"BIH","sex":"female","date_of_birth":"1981-06-21T00:00:00.000Z","height":1.66,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":901297411,"name":"Lucia Palermo","nationality":"ARG","sex":"female","date_of_birth":"1985-09-30T00:00:00.000Z","height":1.73,"weight":59,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":299729150,"name":"Luciana","nationality":"BRA","sex":"female","date_of_birth":"1987-07-24T00:00:00.000Z","height":1.71,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":371222775,"name":"Luciana Diniz","nationality":"POR","sex":"female","date_of_birth":"1970-10-11T00:00:00.000Z","height":1.75,"weight":55,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":45981048,"name":"Luciana Mendoza","nationality":"ARG","sex":"female","date_of_birth":"1990-03-14T00:00:00.000Z","height":1.7,"weight":68,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":422969496,"name":"Luciana Salvado","nationality":"ARG","sex":"female","date_of_birth":"1990-04-13T00:00:00.000Z","height":1.69,"weight":65,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":345497174,"name":"Lucianne Barroncas","nationality":"BRA","sex":"female","date_of_birth":"1988-04-01T00:00:00.000Z","height":1.69,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":95393469,"name":"Luciano Taccone","nationality":"ARG","sex":"male","date_of_birth":"1989-05-29T00:00:00.000Z","height":1.76,"weight":63,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":55174907,"name":"Luciano de Cecco","nationality":"ARG","sex":"male","date_of_birth":"1988-06-02T00:00:00.000Z","height":1.91,"weight":98,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":678484438,"name":"Lucie Hradecka","nationality":"CZE","sex":"female","date_of_birth":"1985-05-21T00:00:00.000Z","height":1.78,"weight":70,"sport":"tennis","gold":0,"silver":0,"bronze":1,"info":null},{"id":801203222,"name":"Lucie Safarova","nationality":"CZE","sex":"female","date_of_birth":"1987-02-04T00:00:00.000Z","height":1.77,"weight":67,"sport":"tennis","gold":0,"silver":0,"bronze":1,"info":null},{"id":822537753,"name":"Lucie Svecena","nationality":"CZE","sex":"female","date_of_birth":"1997-08-21T00:00:00.000Z","height":1.75,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":395171804,"name":"Lucien Cujean","nationality":"SUI","sex":"male","date_of_birth":"1989-08-16T00:00:00.000Z","height":1.84,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":894482944,"name":"Lucien Delfour","nationality":"AUS","sex":"male","date_of_birth":"1988-12-22T00:00:00.000Z","height":1.77,"weight":70,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":300937912,"name":"Lucija Zaninovic","nationality":"CRO","sex":"female","date_of_birth":"1987-06-26T00:00:00.000Z","height":1.7,"weight":52,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":829679838,"name":"Lucila Pascua","nationality":"ESP","sex":"female","date_of_birth":"1983-03-21T00:00:00.000Z","height":1.96,"weight":93,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":508413234,"name":"Lucilla Boari","nationality":"ITA","sex":"female","date_of_birth":"1997-03-24T00:00:00.000Z","height":1.62,"weight":82,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":949015694,"name":"Lucina von der Heyde","nationality":"ARG","sex":"female","date_of_birth":"1997-01-24T00:00:00.000Z","height":1.6,"weight":57,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":61310516,"name":"Lucy Davis","nationality":"USA","sex":"female","date_of_birth":"1992-10-22T00:00:00.000Z","height":1.66,"weight":55,"sport":"equestrian","gold":0,"silver":1,"bronze":0,"info":null},{"id":158550880,"name":"Lucy Oliver","nationality":"NZL","sex":"female","date_of_birth":"1988-11-18T00:00:00.000Z","height":1.68,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":645035836,"name":"Lucy Stephan","nationality":"AUS","sex":"female","date_of_birth":"1991-12-10T00:00:00.000Z","height":1.74,"weight":67,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":803793188,"name":"Ludger Beerbaum","nationality":"GER","sex":"male","date_of_birth":"1963-08-26T00:00:00.000Z","height":1.9,"weight":85,"sport":"equestrian","gold":0,"silver":0,"bronze":1,"info":null},{"id":721221132,"name":"Ludovic Chammartin","nationality":"SUI","sex":"male","date_of_birth":"1985-01-31T00:00:00.000Z","height":1.68,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":549211335,"name":"Ludovic Fabregas","nationality":"FRA","sex":"male","date_of_birth":"1996-07-01T00:00:00.000Z","height":1.98,"weight":100,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":5384302,"name":"Ludovic Henry","nationality":"FRA","sex":"male","date_of_birth":"1968-10-04T00:00:00.000Z","height":1.95,"weight":88,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":906835303,"name":"Ludovico Edalli","nationality":"ITA","sex":"male","date_of_birth":"1993-12-18T00:00:00.000Z","height":1.65,"weight":57,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":870285108,"name":"Ludvy Vaillant","nationality":"FRA","sex":"male","date_of_birth":"1995-03-15T00:00:00.000Z","height":1.8,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":551941271,"name":"Ludwig Paischer","nationality":"AUT","sex":"male","date_of_birth":"1981-11-28T00:00:00.000Z","height":1.7,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":736364717,"name":"Ludwig Svennerstal","nationality":"SWE","sex":"male","date_of_birth":"1990-08-24T00:00:00.000Z","height":1.84,"weight":72,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":708479059,"name":"Luguelin Santos","nationality":"DOM","sex":"male","date_of_birth":"1993-11-12T00:00:00.000Z","height":1.63,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":729320329,"name":"Luigi Lodde","nationality":"ITA","sex":"male","date_of_birth":"1980-04-19T00:00:00.000Z","height":1.7,"weight":79,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":498891159,"name":"Luigi Teilemb","nationality":"VAN","sex":"male","date_of_birth":"1992-02-25T00:00:00.000Z","height":1.87,"weight":80,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":354961149,"name":"Luillys Jose Perez Mora","nationality":"VEN","sex":"male","date_of_birth":"1990-12-23T00:00:00.000Z","height":1.81,"weight":97,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":237111206,"name":"Luis Alberto Garcia Brito","nationality":"DOM","sex":"male","date_of_birth":"1995-04-19T00:00:00.000Z","height":1.48,"weight":56,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":725379575,"name":"Luis Alberto Orta","nationality":"VEN","sex":"male","date_of_birth":"1989-01-15T00:00:00.000Z","height":1.6,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":116880876,"name":"Luis Ariel Molina","nationality":"ARG","sex":"male","date_of_birth":"1988-03-07T00:00:00.000Z","height":1.72,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":23362328,"name":"Luis Brethauer","nationality":"GER","sex":"male","date_of_birth":"1992-09-14T00:00:00.000Z","height":1.76,"weight":82,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":138487719,"name":"Luis Cabrera","nationality":"VEN","sex":"male","date_of_birth":"1995-05-20T00:00:00.000Z","height":1.76,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":975670610,"name":"Luis Charles","nationality":"DOM","sex":"male","date_of_birth":"1998-12-03T00:00:00.000Z","height":1.83,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":660174272,"name":"Luis Emigdio Vega","nationality":"CUB","sex":"male","date_of_birth":"1998-11-02T00:00:00.000Z","height":1.79,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":133697198,"name":"Luis Enrique Lemus Davila","nationality":"MEX","sex":"male","date_of_birth":"1992-04-21T00:00:00.000Z","height":1.73,"weight":61,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":600419040,"name":"Luis Fernando Lopez","nationality":"COL","sex":"male","date_of_birth":"1979-06-03T00:00:00.000Z","height":1.66,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":873077126,"name":"Luis Henry Campos","nationality":"PER","sex":"male","date_of_birth":"1995-10-11T00:00:00.000Z","height":1.66,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":219480043,"name":"Luis Hurtado","nationality":"COL","sex":"male","date_of_birth":"1994-01-24T00:00:00.000Z","height":1.86,"weight":81,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":854498717,"name":"Luis Javier Mosquera Lozano","nationality":"COL","sex":"male","date_of_birth":"1995-03-27T00:00:00.000Z","height":1.65,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":1,"info":null},{"id":339149887,"name":"Luis Joel Castro","nationality":"PUR","sex":"male","date_of_birth":"1991-01-29T00:00:00.000Z","height":1.98,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":717592446,"name":"Luis Lopez","nationality":"HON","sex":"male","date_of_birth":"1993-09-13T00:00:00.000Z","height":1.83,"weight":84,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":920379695,"name":"Luis Lopez","nationality":"ESA","sex":"male","date_of_birth":"1994-01-18T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":851144245,"name":"Luis Martin Arcon","nationality":"VEN","sex":"male","date_of_birth":"1992-06-01T00:00:00.000Z","height":1.79,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":536738422,"name":"Luis Martinez","nationality":"GUA","sex":"male","date_of_birth":"1995-12-11T00:00:00.000Z","height":1.82,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":141098484,"name":"Luis Ostos","nationality":"PER","sex":"male","date_of_birth":"1992-08-09T00:00:00.000Z","height":1.6,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":772996626,"name":"Luis Scola","nationality":"ARG","sex":"male","date_of_birth":"1980-04-30T00:00:00.000Z","height":2.04,"weight":108,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":854151517,"name":"Luis Vasquez","nationality":"COL","sex":"male","date_of_birth":"1996-03-01T00:00:00.000Z","height":1.87,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":530819042,"name":"Luisa Borges","nationality":"BRA","sex":"female","date_of_birth":"1996-04-20T00:00:00.000Z","height":1.66,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":868186831,"name":"Luisa Fatiaki Taitapu Peters","nationality":"COK","sex":"female","date_of_birth":"1993-06-27T00:00:00.000Z","height":1.65,"weight":100,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":153439760,"name":"Luisa Helga Gerda Niemesch","nationality":"GER","sex":"female","date_of_birth":"1995-09-07T00:00:00.000Z","height":1.65,"weight":63,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":22717911,"name":"Luisa Kiala","nationality":"ANG","sex":"female","date_of_birth":"1982-01-25T00:00:00.000Z","height":1.8,"weight":62,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":505599669,"name":"Luisa Tisolo","nationality":"FIJ","sex":"female","date_of_birth":"1991-09-20T00:00:00.000Z","height":1.75,"weight":63,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":52637843,"name":"Luisa Trombetti","nationality":"ITA","sex":"female","date_of_birth":"1993-09-05T00:00:00.000Z","height":1.73,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":788404828,"name":"Luise Malzahn","nationality":"GER","sex":"female","date_of_birth":"1990-06-09T00:00:00.000Z","height":1.77,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":706961920,"name":"Luisito Pie","nationality":"DOM","sex":"male","date_of_birth":"1994-03-04T00:00:00.000Z","height":1.83,"weight":57,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":976439894,"name":"Luiz Alberto de Araujo","nationality":"BRA","sex":"male","date_of_birth":"1987-06-27T00:00:00.000Z","height":1.9,"weight":86,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":705013077,"name":"Luiz Altamir","nationality":"BRA","sex":"male","date_of_birth":"1996-05-09T00:00:00.000Z","height":1.74,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":524518675,"name":"Luiz Felipe Marques Fonteles","nationality":"BRA","sex":"male","date_of_birth":"1984-06-19T00:00:00.000Z","height":1.96,"weight":89,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":713630406,"name":"Luiz Felipe Outerelo","nationality":"BRA","sex":"male","date_of_birth":"1991-12-11T00:00:00.000Z","height":1.81,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":826163083,"name":"Luiza Campos","nationality":"BRA","sex":"female","date_of_birth":"1990-07-30T00:00:00.000Z","height":1.65,"weight":64,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":396150268,"name":"Luiza Carvalho","nationality":"BRA","sex":"female","date_of_birth":"1983-07-02T00:00:00.000Z","height":1.82,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":837407916,"name":"Luiza Ganieva","nationality":"UZB","sex":"female","date_of_birth":"1995-11-11T00:00:00.000Z","height":1.66,"weight":53,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":915002256,"name":"Luiza Gega","nationality":"ALB","sex":"female","date_of_birth":"1988-11-05T00:00:00.000Z","height":1.59,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":117132954,"name":"Luiza Saidiyeva","nationality":"KAZ","sex":"female","date_of_birth":"1994-03-17T00:00:00.000Z","height":1.62,"weight":42,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":280621392,"name":"Luiza Tavares de Almeida","nationality":"BRA","sex":"female","date_of_birth":"1991-09-07T00:00:00.000Z","height":1.68,"weight":58,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":623136878,"name":"Luka Babic","nationality":"CRO","sex":"male","date_of_birth":"1991-09-29T00:00:00.000Z","height":2.02,"weight":94,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":302739733,"name":"Luka Bozic","nationality":"SLO","sex":"male","date_of_birth":"1991-01-09T00:00:00.000Z","height":1.73,"weight":72,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":366132937,"name":"Luka Bukic","nationality":"CRO","sex":"male","date_of_birth":"1994-04-30T00:00:00.000Z","height":1.95,"weight":90,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":17097553,"name":"Luka Cindric","nationality":"CRO","sex":"male","date_of_birth":"1993-07-05T00:00:00.000Z","height":1.82,"weight":90,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":402639302,"name":"Luka Janezic","nationality":"SLO","sex":"male","date_of_birth":"1995-11-14T00:00:00.000Z","height":1.92,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":398703913,"name":"Luka Karabatic","nationality":"FRA","sex":"male","date_of_birth":"1988-04-19T00:00:00.000Z","height":2.02,"weight":108,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":504359994,"name":"Luka Loncar","nationality":"CRO","sex":"male","date_of_birth":"1987-06-26T00:00:00.000Z","height":1.95,"weight":106,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":504597254,"name":"Luka Mratovic","nationality":"CRO","sex":"male","date_of_birth":"1987-04-07T00:00:00.000Z","height":1.9,"weight":78,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":189960390,"name":"Luka Stepancic","nationality":"CRO","sex":"male","date_of_birth":"1990-11-20T00:00:00.000Z","height":2.03,"weight":98,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":644882024,"name":"Lukas Dauser","nationality":"GER","sex":"male","date_of_birth":"1993-06-15T00:00:00.000Z","height":1.72,"weight":64,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":924122874,"name":"Lukas Fernandes","nationality":"DEN","sex":"male","date_of_birth":"1993-03-01T00:00:00.000Z","height":1.87,"weight":81,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":330673646,"name":"Lukas Gdula","nationality":"CZE","sex":"male","date_of_birth":"1991-12-06T00:00:00.000Z","height":1.78,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":608004854,"name":"Lukas Helesic","nationality":"CZE","sex":"male","date_of_birth":"1996-01-29T00:00:00.000Z","height":1.89,"weight":89,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":51396878,"name":"Lukas Klostermann","nationality":"GER","sex":"male","date_of_birth":"1996-06-03T00:00:00.000Z","height":1.89,"weight":84,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":921390591,"name":"Lukas Krpalek","nationality":"CZE","sex":"male","date_of_birth":"1990-11-15T00:00:00.000Z","height":1.97,"weight":105,"sport":"judo","gold":1,"silver":0,"bronze":0,"info":null},{"id":877299705,"name":"Lukas Melich","nationality":"CZE","sex":"male","date_of_birth":"1980-09-16T00:00:00.000Z","height":1.86,"weight":110,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":856483693,"name":"Lukas Nilsson","nationality":"SWE","sex":"male","date_of_birth":"1996-11-16T00:00:00.000Z","height":1.94,"weight":97,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":13539214,"name":"Lukas Rosol","nationality":"CZE","sex":"male","date_of_birth":"1985-07-24T00:00:00.000Z","height":1.95,"weight":82,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":934798797,"name":"Lukas Trefil","nationality":"CZE","sex":"male","date_of_birth":"1988-09-21T00:00:00.000Z","height":1.87,"weight":90,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":347976859,"name":"Lukas Weisshaidinger","nationality":"AUT","sex":"male","date_of_birth":"1992-02-20T00:00:00.000Z","height":1.96,"weight":136,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":997459236,"name":"Lukas Werro","nationality":"SUI","sex":"male","date_of_birth":"1991-06-30T00:00:00.000Z","height":1.75,"weight":72,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":587024656,"name":"Lukasz Gierak","nationality":"POL","sex":"male","date_of_birth":"1988-06-22T00:00:00.000Z","height":1.94,"weight":104,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":704816796,"name":"Lukasz Grzeszczuk","nationality":"POL","sex":"male","date_of_birth":"1990-03-03T00:00:00.000Z","height":1.9,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":578022674,"name":"Lukasz Krawczuk","nationality":"POL","sex":"male","date_of_birth":"1989-06-15T00:00:00.000Z","height":1.84,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":915253145,"name":"Lukasz Kubot","nationality":"POL","sex":"male","date_of_birth":"1982-05-16T00:00:00.000Z","height":1.91,"weight":90,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":91523255,"name":"Lukasz Nowak","nationality":"POL","sex":"male","date_of_birth":"1988-12-18T00:00:00.000Z","height":1.94,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":374551802,"name":"Lukasz Przybytek","nationality":"POL","sex":"male","date_of_birth":"1989-05-20T00:00:00.000Z","height":1.78,"weight":73,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":966057256,"name":"Luke Bezzina","nationality":"MLT","sex":"male","date_of_birth":"1995-06-07T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":347048162,"name":"Luke Cutts","nationality":"GBR","sex":"male","date_of_birth":"1988-02-13T00:00:00.000Z","height":1.87,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":978732566,"name":"Luke Mathews","nationality":"AUS","sex":"male","date_of_birth":"1995-06-21T00:00:00.000Z","height":1.83,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":251226899,"name":"Luke Patience","nationality":"GBR","sex":"male","date_of_birth":"1986-08-04T00:00:00.000Z","height":1.67,"weight":59,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":893167750,"name":"Luke Ramsay","nationality":"CAN","sex":"male","date_of_birth":"1988-01-31T00:00:00.000Z","height":1.73,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":42399683,"name":"Lum Zhaveli","nationality":"KOS","sex":"male","date_of_birth":"1990-03-05T00:00:00.000Z","height":1.94,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":78006686,"name":"Lumin Wang","nationality":"CHN","sex":"male","date_of_birth":"1990-12-07T00:00:00.000Z","height":1.7,"weight":67,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":537472547,"name":"Lungile Gongqa","nationality":"RSA","sex":"male","date_of_birth":"1979-02-22T00:00:00.000Z","height":1.62,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":278272710,"name":"Lurdes Marcelina Monteiro","nationality":"ANG","sex":"female","date_of_birth":"1984-07-11T00:00:00.000Z","height":1.7,"weight":63,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":387196979,"name":"Lusapho April","nationality":"RSA","sex":"male","date_of_birth":"1982-05-24T00:00:00.000Z","height":1.72,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":488085087,"name":"Lutalo Muhammad","nationality":"GBR","sex":"male","date_of_birth":"1991-06-03T00:00:00.000Z","height":1.91,"weight":80,"sport":"taekwondo","gold":0,"silver":1,"bronze":0,"info":null},{"id":845474841,"name":"Lutimar Paes","nationality":"BRA","sex":"male","date_of_birth":"1988-12-14T00:00:00.000Z","height":1.84,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":14088740,"name":"Luuka Jones","nationality":"NZL","sex":"female","date_of_birth":"1988-10-18T00:00:00.000Z","height":1.72,"weight":68,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":905348917,"name":"Luvo Manyonga","nationality":"RSA","sex":"male","date_of_birth":"1991-01-08T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":859949812,"name":"Ly Ho Thi","nationality":"VIE","sex":"female","date_of_birth":"1991-02-22T00:00:00.000Z","height":1.72,"weight":60,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":817621896,"name":"Lydia Chebet Rotich","nationality":"KEN","sex":"female","date_of_birth":"1988-08-08T00:00:00.000Z","height":1.57,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":409442789,"name":"Lydia Jele","nationality":"BOT","sex":"female","date_of_birth":"1990-06-22T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":212107375,"name":"Lydia Ko","nationality":"NZL","sex":"male","date_of_birth":"1997-04-23T00:00:00.000Z","height":1.67,"weight":65,"sport":"golf","gold":0,"silver":1,"bronze":0,"info":"Born in the Republic of Korea, Lydia Ko emigrated to New Zealand and began playing golf at the age of five. In February 2015, she became the youngest athlete to take the top spot in the world rankings, aged only 17 years, nine months and eight days."},{"id":365605339,"name":"Lydia Paterson","nationality":"USA","sex":"female","date_of_birth":"1996-10-17T00:00:00.000Z","height":1.63,"weight":69,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":928938439,"name":"Lydia Williams","nationality":"AUS","sex":"female","date_of_birth":"1988-05-13T00:00:00.000Z","height":1.75,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":893383982,"name":"Lyes Bouyacoub","nationality":"ALG","sex":"male","date_of_birth":"1983-04-03T00:00:00.000Z","height":1.85,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":529259909,"name":"Lynda Kiejko","nationality":"CAN","sex":"female","date_of_birth":"1980-09-13T00:00:00.000Z","height":1.57,"weight":51,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":146583581,"name":"Lynda Morales","nationality":"PUR","sex":"female","date_of_birth":"1988-05-20T00:00:00.000Z","height":1.88,"weight":74,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":356436591,"name":"Lyndal Oatley","nationality":"AUS","sex":"female","date_of_birth":"1980-06-27T00:00:00.000Z","height":1.76,"weight":61,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":127921496,"name":"Lynett Mutokuto","nationality":"ZIM","sex":"female","date_of_birth":"1988-09-01T00:00:00.000Z","height":1.61,"weight":56,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":437144743,"name":"Lynique Prinsloo","nationality":"RSA","sex":"female","date_of_birth":"1991-03-30T00:00:00.000Z","height":1.69,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":69224048,"name":"Lynn Symansky","nationality":"USA","sex":"female","date_of_birth":"1983-03-19T00:00:00.000Z","height":1.71,"weight":56,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":451602579,"name":"Lynsey Sharp","nationality":"GBR","sex":"female","date_of_birth":"1990-07-11T00:00:00.000Z","height":1.74,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":616838605,"name":"Lyubomira Kazanova","nationality":"BUL","sex":"female","date_of_birth":"1996-05-23T00:00:00.000Z","height":1.77,"weight":56,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":698011015,"name":"Lyubov Shutova","nationality":"RUS","sex":"female","date_of_birth":"1983-06-25T00:00:00.000Z","height":1.77,"weight":64,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":486040260,"name":"M Bar N Diaye","nationality":"FRA","sex":"male","date_of_birth":"1983-06-15T00:00:00.000Z","height":1.93,"weight":84,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":365973319,"name":"Maaike Head","nationality":"NED","sex":"female","date_of_birth":"1983-09-11T00:00:00.000Z","height":1.73,"weight":59,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":98846520,"name":"Maarten Brzoskowski","nationality":"NED","sex":"male","date_of_birth":"1995-09-19T00:00:00.000Z","height":1.84,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":29701462,"name":"Maartje Paumen","nationality":"NED","sex":"female","date_of_birth":"1985-09-19T00:00:00.000Z","height":1.76,"weight":66,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":908862793,"name":"Maayan Davidovich","nationality":"ISR","sex":"female","date_of_birth":"1988-05-21T00:00:00.000Z","height":1.67,"weight":57,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":872823363,"name":"Macarena Aguilar","nationality":"ESP","sex":"female","date_of_birth":"1985-03-12T00:00:00.000Z","height":1.7,"weight":67,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":308383815,"name":"Macarena Gandulfo","nationality":"ARG","sex":"female","date_of_birth":"1993-11-03T00:00:00.000Z","height":1.74,"weight":73,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":985732268,"name":"Macarena Sans","nationality":"ARG","sex":"female","date_of_birth":"1996-11-20T00:00:00.000Z","height":1.65,"weight":64,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":38791158,"name":"Machel Cedenio","nationality":"TTO","sex":"male","date_of_birth":"1995-09-06T00:00:00.000Z","height":1.83,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":280514109,"name":"Maciej Bodnar","nationality":"POL","sex":"male","date_of_birth":"1985-03-07T00:00:00.000Z","height":1.86,"weight":78,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":703301693,"name":"Maciej Okreglak","nationality":"POL","sex":"male","date_of_birth":"1993-07-05T00:00:00.000Z","height":1.76,"weight":73,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":595036490,"name":"Maciej Sarnacki","nationality":"POL","sex":"male","date_of_birth":"1987-02-10T00:00:00.000Z","height":2,"weight":130,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":499556541,"name":"Mack Darragh","nationality":"CAN","sex":"male","date_of_birth":"1993-12-08T00:00:00.000Z","height":1.85,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":164336979,"name":"Mack Horton","nationality":"AUS","sex":"male","date_of_birth":"1996-04-25T00:00:00.000Z","height":1.9,"weight":88,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":831329094,"name":"Mackenzie Arnold","nationality":"AUS","sex":"female","date_of_birth":"1994-02-25T00:00:00.000Z","height":1.79,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":359535568,"name":"Mackenzie Brown","nationality":"USA","sex":"female","date_of_birth":"1995-03-14T00:00:00.000Z","height":1.77,"weight":74,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":243963793,"name":"Madai Perez","nationality":"MEX","sex":"female","date_of_birth":"1980-02-02T00:00:00.000Z","height":1.58,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":161590850,"name":"Madalina Beres","nationality":"ROU","sex":"female","date_of_birth":"1993-07-03T00:00:00.000Z","height":1.86,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":36358065,"name":"Madara Palameika","nationality":"LAT","sex":"female","date_of_birth":"1987-06-18T00:00:00.000Z","height":1.84,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":287974720,"name":"Maddie Hinch","nationality":"GBR","sex":"female","date_of_birth":"1988-10-08T00:00:00.000Z","height":1.68,"weight":62,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":713460320,"name":"Maddison Keeney","nationality":"AUS","sex":"female","date_of_birth":"1996-05-23T00:00:00.000Z","height":1.67,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":72981815,"name":"Madelein Meppelink","nationality":"NED","sex":"female","date_of_birth":"1989-11-29T00:00:00.000Z","height":1.83,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":946141261,"name":"Madeleine Edmunds","nationality":"AUS","sex":"female","date_of_birth":"1992-01-03T00:00:00.000Z","height":1.87,"weight":81,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":37020908,"name":"Madeline Dirado","nationality":"USA","sex":"female","date_of_birth":"1993-04-05T00:00:00.000Z","height":1.76,"weight":64,"sport":"aquatics","gold":2,"silver":1,"bronze":1,"info":null},{"id":341947091,"name":"Madeline Groves","nationality":"AUS","sex":"female","date_of_birth":"1995-05-25T00:00:00.000Z","height":1.79,"weight":66,"sport":"aquatics","gold":0,"silver":2,"bronze":0,"info":null},{"id":891088066,"name":"Madeline Heiner Hills","nationality":"AUS","sex":"female","date_of_birth":"1987-05-15T00:00:00.000Z","height":1.74,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":473250088,"name":"Madeline Musselman","nationality":"USA","sex":"female","date_of_birth":"1998-06-16T00:00:00.000Z","height":1.81,"weight":65,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":81058004,"name":"Madiea Ghafoor","nationality":"NED","sex":"female","date_of_birth":"1992-09-09T00:00:00.000Z","height":1.69,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":996222405,"name":"Madison Hughes","nationality":"USA","sex":"male","date_of_birth":"1992-10-26T00:00:00.000Z","height":1.73,"weight":79,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":527332545,"name":"Madison Keys","nationality":"USA","sex":"female","date_of_birth":"1995-02-17T00:00:00.000Z","height":1.78,"weight":68,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":376474889,"name":"Madison Kocian","nationality":"USA","sex":"female","date_of_birth":"1997-06-15T00:00:00.000Z","height":1.58,"weight":46,"sport":"gymnastics","gold":1,"silver":1,"bronze":0,"info":null},{"id":540102843,"name":"Madison Wilson","nationality":"AUS","sex":"female","date_of_birth":"1994-05-31T00:00:00.000Z","height":1.79,"weight":61,"sport":"aquatics","gold":1,"silver":1,"bronze":0,"info":null},{"id":448658832,"name":"Madonna Blyth","nationality":"AUS","sex":"female","date_of_birth":"1985-11-30T00:00:00.000Z","height":1.65,"weight":60,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":877108411,"name":"Mads Christiansen","nationality":"DEN","sex":"male","date_of_birth":"1986-05-03T00:00:00.000Z","height":1.97,"weight":93,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":397456210,"name":"Mads Glaesner","nationality":"DEN","sex":"male","date_of_birth":"1988-10-18T00:00:00.000Z","height":1.91,"weight":81,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":13506887,"name":"Mads Hendeliowitz","nationality":"SWE","sex":"male","date_of_birth":"1982-01-14T00:00:00.000Z","height":1.78,"weight":76,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":653799383,"name":"Mads Mensah Larsen","nationality":"DEN","sex":"male","date_of_birth":"1991-08-12T00:00:00.000Z","height":1.88,"weight":106,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":74306261,"name":"Mads Rasmussen","nationality":"DEN","sex":"male","date_of_birth":"1981-11-24T00:00:00.000Z","height":1.83,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":585960313,"name":"Mael Ambonguilat","nationality":"GAB","sex":"male","date_of_birth":"1997-11-09T00:00:00.000Z","height":1.7,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":431358529,"name":"Magaly Bonilla","nationality":"ECU","sex":"female","date_of_birth":"1992-02-08T00:00:00.000Z","height":1.52,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":76314566,"name":"Magda Alfredo Cazanga","nationality":"ANG","sex":"female","date_of_birth":"1991-05-28T00:00:00.000Z","height":1.72,"weight":54,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":732221079,"name":"Magda Linette","nationality":"POL","sex":"female","date_of_birth":"1992-02-12T00:00:00.000Z","height":1.71,"weight":59,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":302906626,"name":"Magdalena Eriksson","nationality":"SWE","sex":"female","date_of_birth":"1993-09-08T00:00:00.000Z","height":1.72,"weight":67,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":635407788,"name":"Magdalena Fularczyk-Kozlowska","nationality":"POL","sex":"female","date_of_birth":"1986-09-16T00:00:00.000Z","height":1.73,"weight":70,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":587247307,"name":"Magdalena Garro","nationality":"ARG","sex":"female","date_of_birth":"1989-02-18T00:00:00.000Z","height":1.6,"weight":60,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":537197914,"name":"Magdalena Lobnig","nationality":"AUT","sex":"female","date_of_birth":"1990-07-19T00:00:00.000Z","height":1.8,"weight":71,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":91993578,"name":"Magdalena Ruth Alex Moshi","nationality":"TAN","sex":"female","date_of_birth":"1990-11-30T00:00:00.000Z","height":1.69,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":296260449,"name":"Magdiel Estrada","nationality":"CUB","sex":"male","date_of_birth":"1994-08-26T00:00:00.000Z","height":1.76,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":28493203,"name":"Maggie Hogan","nationality":"USA","sex":"female","date_of_birth":"1979-01-01T00:00:00.000Z","height":1.71,"weight":61,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":610096820,"name":"Maggie Malone","nationality":"USA","sex":"female","date_of_birth":"1993-12-30T00:00:00.000Z","height":1.73,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":151348032,"name":"Maggie Steffens","nationality":"USA","sex":"female","date_of_birth":"1993-06-03T00:00:00.000Z","height":1.73,"weight":74,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":"Top scorer in the women's water polo tournament at London 2012, with 21 goals, the USA's Maggie Steffens helped her country win the gold medal. Her father also played this sport for Puerto Rico and competed in three Pan American Games."},{"id":558981183,"name":"Magnus Kirt","nationality":"EST","sex":"male","date_of_birth":"1990-04-10T00:00:00.000Z","height":1.92,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":344707477,"name":"Magnus Westermann","nationality":"DEN","sex":"male","date_of_birth":"1995-03-13T00:00:00.000Z","height":1.94,"weight":94,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":829849936,"name":"Magomed Idrisovitch Ibragimov","nationality":"UZB","sex":"male","date_of_birth":"1985-06-02T00:00:00.000Z","height":1.83,"weight":97,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":122833062,"name":"Magomed Musaev","nationality":"KGZ","sex":"male","date_of_birth":"1989-03-11T00:00:00.000Z","height":1.81,"weight":95,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":628176825,"name":"Magomedmurad Gadzhiev","nationality":"POL","sex":"male","date_of_birth":"1988-02-15T00:00:00.000Z","height":1.65,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":218620523,"name":"Maha Abdel Salam","nationality":"EGY","sex":"female","date_of_birth":"1998-06-08T00:00:00.000Z","height":1.72,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":366810881,"name":"Maha Amer","nationality":"EGY","sex":"female","date_of_birth":"1999-03-27T00:00:00.000Z","height":1.65,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":479172585,"name":"Maha Haddioui","nationality":"MAR","sex":"female","date_of_birth":"1988-05-15T00:00:00.000Z","height":1.68,"weight":67,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":40811723,"name":"Mahama Cho","nationality":"GBR","sex":"male","date_of_birth":"1989-08-16T00:00:00.000Z","height":1.96,"weight":100,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":514748025,"name":"Mahaman Smaila","nationality":"CMR","sex":"male","date_of_birth":"1986-02-28T00:00:00.000Z","height":1.78,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":219888752,"name":"Mahammadrasul Majidov","nationality":"AZE","sex":"male","date_of_birth":"1986-09-27T00:00:00.000Z","height":1.9,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":34377778,"name":"Maharu Yoshimura","nationality":"JPN","sex":"male","date_of_birth":"1993-08-03T00:00:00.000Z","height":1.77,"weight":61,"sport":"table tennis","gold":0,"silver":1,"bronze":0,"info":null},{"id":874841774,"name":"Mahau Suguimati","nationality":"BRA","sex":"male","date_of_birth":"1984-11-13T00:00:00.000Z","height":1.84,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":448445626,"name":"Mahdi Kamil","nationality":"IRQ","sex":"male","date_of_birth":"1995-01-06T00:00:00.000Z","height":1.7,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":452893279,"name":"Mahdi Khodabakhshi","nationality":"IRI","sex":"male","date_of_birth":"1991-04-21T00:00:00.000Z","height":1.92,"weight":87,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":167441839,"name":"Mahdi Marandi","nationality":"IRI","sex":"male","date_of_birth":"1986-05-12T00:00:00.000Z","height":1.72,"weight":69,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":472129595,"name":"Mahe Drysdale","nationality":"NZL","sex":"male","date_of_birth":"1978-11-19T00:00:00.000Z","height":2,"weight":102,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":"New Zealand's Mahé Drysdale made his rowing debut at the Athens 2004 Olympic Games, coming in fifth place in the coxless four. He then began competing in the single scull, winning silver at Beijing 2008 and gold at London 2012."},{"id":150879921,"name":"Mahiedine Mekhissi","nationality":"FRA","sex":"male","date_of_birth":"1985-03-15T00:00:00.000Z","height":1.9,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":526960763,"name":"Mahlagha Jambozorg","nationality":"IRI","sex":"female","date_of_birth":"1991-08-15T00:00:00.000Z","height":1.69,"weight":80,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":74259823,"name":"Mahmood Haji","nationality":"BRN","sex":"male","date_of_birth":"1991-03-11T00:00:00.000Z","height":1.75,"weight":69,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":782024861,"name":"Mahmoud Abdelaal","nationality":"EGY","sex":"male","date_of_birth":"1992-01-01T00:00:00.000Z","height":1.76,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":905443127,"name":"Mahmoud Fawzy Rashad Sebie","nationality":"EGY","sex":"male","date_of_birth":"1992-06-20T00:00:00.000Z","height":1.65,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":381110402,"name":"Mahmoud Khalil","nationality":"EGY","sex":"male","date_of_birth":"1991-06-01T00:00:00.000Z","height":1.92,"weight":85,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":352998140,"name":"Mahmoud Samimi","nationality":"IRI","sex":"male","date_of_birth":"1988-09-18T00:00:00.000Z","height":1.86,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":940342444,"name":"Mahsa Javar","nationality":"IRI","sex":"female","date_of_birth":"1994-05-12T00:00:00.000Z","height":1.73,"weight":62,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":192746204,"name":"Mai Ito","nationality":"JPN","sex":"female","date_of_birth":"1984-05-23T00:00:00.000Z","height":1.56,"weight":41,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":859543886,"name":"Mai Murakami","nationality":"JPN","sex":"female","date_of_birth":"1996-08-05T00:00:00.000Z","height":1.46,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":217231294,"name":"Mai Nakamura","nationality":"JPN","sex":"female","date_of_birth":"1989-01-13T00:00:00.000Z","height":1.63,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":197311311,"name":"Mai Yamaguchi","nationality":"JPN","sex":"female","date_of_birth":"1983-07-03T00:00:00.000Z","height":1.76,"weight":62,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":284015405,"name":"Maia Agerup","nationality":"NOR","sex":"female","date_of_birth":"1995-06-22T00:00:00.000Z","height":null,"weight":null,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":699569335,"name":"Maialen Chourraut","nationality":"ESP","sex":"female","date_of_birth":"1983-03-08T00:00:00.000Z","height":1.61,"weight":55,"sport":"canoe","gold":1,"silver":0,"bronze":0,"info":null},{"id":358834161,"name":"Maica Garcia Godoy","nationality":"ESP","sex":"female","date_of_birth":"1990-10-17T00:00:00.000Z","height":1.88,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":583991719,"name":"Maicel Uibo","nationality":"EST","sex":"male","date_of_birth":"1992-12-27T00:00:00.000Z","height":1.88,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":587074263,"name":"Maicol Verzotto","nationality":"ITA","sex":"male","date_of_birth":"1988-05-24T00:00:00.000Z","height":1.72,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":202168250,"name":"Maicon Siqueira","nationality":"BRA","sex":"male","date_of_birth":"1993-01-09T00:00:00.000Z","height":1.9,"weight":90,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":219639057,"name":"Maik dos Santos","nationality":"BRA","sex":"male","date_of_birth":"1980-09-06T00:00:00.000Z","height":1.8,"weight":88,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":323417214,"name":"Maikel van der Vleuten","nationality":"NED","sex":"male","date_of_birth":"1988-02-10T00:00:00.000Z","height":1.7,"weight":60,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":288399104,"name":"Maila Machado","nationality":"BRA","sex":"female","date_of_birth":"1981-01-22T00:00:00.000Z","height":1.67,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":638173103,"name":"Maimouna Diarra","nationality":"SEN","sex":"female","date_of_birth":"1991-01-30T00:00:00.000Z","height":1.98,"weight":90,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":768555779,"name":"Mairaj Ahmad Khan","nationality":"IND","sex":"male","date_of_birth":"1975-11-02T00:00:00.000Z","height":1.81,"weight":82,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":572989050,"name":"Maizurah Abdul Rahim","nationality":"BRU","sex":"female","date_of_birth":"1999-04-15T00:00:00.000Z","height":1.47,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":448106253,"name":"Maja Mihalinec","nationality":"SLO","sex":"female","date_of_birth":"1989-12-17T00:00:00.000Z","height":1.68,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":713439185,"name":"Maja Neuenschwander","nationality":"SUI","sex":"female","date_of_birth":"1980-02-13T00:00:00.000Z","height":1.68,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":959018491,"name":"Maja Ognjenovic","nationality":"SRB","sex":"female","date_of_birth":"1984-08-06T00:00:00.000Z","height":1.83,"weight":67,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":745686878,"name":"Maja Siegenthaler","nationality":"SUI","sex":"female","date_of_birth":"1992-11-11T00:00:00.000Z","height":1.72,"weight":66,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":793000755,"name":"Maja Wloszczowska","nationality":"POL","sex":"female","date_of_birth":"1983-11-09T00:00:00.000Z","height":1.7,"weight":54,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":435088187,"name":"Majd Eddin Ghazal","nationality":"SYR","sex":"male","date_of_birth":"1987-04-21T00:00:00.000Z","height":2.05,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":613581224,"name":"Majda Mehmedovic","nationality":"MNE","sex":"female","date_of_birth":"1990-05-25T00:00:00.000Z","height":1.7,"weight":67,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":338727227,"name":"Majlinda Kelmendi","nationality":"KOS","sex":"female","date_of_birth":"1991-05-09T00:00:00.000Z","height":1.62,"weight":52,"sport":"judo","gold":1,"silver":0,"bronze":0,"info":null},{"id":925805828,"name":"Maka Unufe","nationality":"USA","sex":"male","date_of_birth":"1991-09-28T00:00:00.000Z","height":1.88,"weight":92,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":565676183,"name":"Makenzie Fischer","nationality":"USA","sex":"female","date_of_birth":"1997-03-29T00:00:00.000Z","height":1.86,"weight":74,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":8530170,"name":"Maki Sakaguchi","nationality":"JPN","sex":"female","date_of_birth":"1989-06-08T00:00:00.000Z","height":1.58,"weight":56,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":777674143,"name":"Maki Takada","nationality":"JPN","sex":"female","date_of_birth":"1989-08-23T00:00:00.000Z","height":1.83,"weight":78,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":870613136,"name":"Makiko Tomita","nationality":"JPN","sex":"female","date_of_birth":"1991-08-02T00:00:00.000Z","height":1.7,"weight":68,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":548581122,"name":"Makoto Tomizawa","nationality":"JPN","sex":"male","date_of_birth":"1984-07-19T00:00:00.000Z","height":1.81,"weight":73,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":256394566,"name":"Makoura Keita","nationality":"GUI","sex":"female","date_of_birth":"1994-11-01T00:00:00.000Z","height":1.75,"weight":71,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":841352991,"name":"Makrem Missaoui","nationality":"TUN","sex":"male","date_of_birth":"1981-02-14T00:00:00.000Z","height":1.88,"weight":98,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":501195133,"name":"Maksim Inic","nationality":"MNE","sex":"male","date_of_birth":"1996-05-26T00:00:00.000Z","height":1.86,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":950293205,"name":"Maksim Manukyan","nationality":"ARM","sex":"male","date_of_birth":"1987-12-10T00:00:00.000Z","height":1.77,"weight":86,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":545871127,"name":"Maksim Niastsiarenka","nationality":"BLR","sex":"male","date_of_birth":"1992-09-01T00:00:00.000Z","height":1.93,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":244208041,"name":"Maksim Oberemko","nationality":"RUS","sex":"male","date_of_birth":"1978-01-25T00:00:00.000Z","height":1.86,"weight":73,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":608604431,"name":"Maksym Averin","nationality":"AZE","sex":"male","date_of_birth":"1985-11-28T00:00:00.000Z","height":1.89,"weight":75,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":607942437,"name":"Maksym Dolgov","nationality":"UKR","sex":"male","date_of_birth":"1996-06-16T00:00:00.000Z","height":1.76,"weight":71,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":204225713,"name":"Maksym Khvorost","nationality":"UKR","sex":"male","date_of_birth":"1982-07-15T00:00:00.000Z","height":1.86,"weight":85,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":563022056,"name":"Maksym Semiankiv","nationality":"UKR","sex":"male","date_of_birth":"1992-01-20T00:00:00.000Z","height":1.72,"weight":63,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":157150042,"name":"Malaika Mihambo","nationality":"GER","sex":"female","date_of_birth":"1994-02-03T00:00:00.000Z","height":1.7,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":394127915,"name":"Malek Jaziri","nationality":"TUN","sex":"male","date_of_birth":"1984-01-20T00:00:00.000Z","height":1.85,"weight":82,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":422468531,"name":"Malgorzata Bialecka","nationality":"POL","sex":"female","date_of_birth":"1988-04-02T00:00:00.000Z","height":1.64,"weight":54,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":205523142,"name":"Malgorzata Holub","nationality":"POL","sex":"female","date_of_birth":"1992-10-30T00:00:00.000Z","height":1.68,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":607442240,"name":"Malgorzata Kozaczuk","nationality":"POL","sex":"female","date_of_birth":"1988-06-06T00:00:00.000Z","height":1.7,"weight":60,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":159953794,"name":"Malgorzata Wojtyra","nationality":"POL","sex":"female","date_of_birth":"1989-09-21T00:00:00.000Z","height":1.76,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":185574911,"name":"Malgorzta Jasinska","nationality":"POL","sex":"female","date_of_birth":"1984-01-18T00:00:00.000Z","height":1.69,"weight":57,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":980102210,"name":"Malika Akkaoui","nationality":"MAR","sex":"female","date_of_birth":"1987-12-25T00:00:00.000Z","height":1.6,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":656054953,"name":"Malin Baryard-Johnsson","nationality":"SWE","sex":"female","date_of_birth":"1975-04-10T00:00:00.000Z","height":1.72,"weight":52,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":819426524,"name":"Malin Johanna Mattsson","nationality":"SWE","sex":"female","date_of_birth":"1988-05-02T00:00:00.000Z","height":1.69,"weight":63,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":258262021,"name":"Malin Westerheim","nationality":"NOR","sex":"female","date_of_birth":"1993-11-10T00:00:00.000Z","height":null,"weight":null,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":295829504,"name":"Malina Calugareanu","nationality":"ROU","sex":"female","date_of_birth":"1996-09-15T00:00:00.000Z","height":1.76,"weight":66,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":91778108,"name":"Mallory Pugh","nationality":"USA","sex":"female","date_of_birth":"1998-04-29T00:00:00.000Z","height":1.62,"weight":54,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":997297757,"name":"Malte Jakschik","nationality":"GER","sex":"male","date_of_birth":"1993-08-03T00:00:00.000Z","height":1.94,"weight":93,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":759848453,"name":"Malwina Kopron","nationality":"POL","sex":"female","date_of_birth":"1994-11-16T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":4025069,"name":"Mamadama Bangoura","nationality":"GUI","sex":"female","date_of_birth":"1993-11-10T00:00:00.000Z","height":1.76,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":590513028,"name":"Mamadou Cherif Dia","nationality":"MLI","sex":"male","date_of_birth":"1984-10-16T00:00:00.000Z","height":1.8,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":744094711,"name":"Mamadou Kasse Hann","nationality":"FRA","sex":"male","date_of_birth":"1986-10-10T00:00:00.000Z","height":1.89,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":362133096,"name":"Mamdouh Abdelrehim","nationality":"EGY","sex":"male","date_of_birth":"1989-08-05T00:00:00.000Z","height":2.07,"weight":90,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":771530809,"name":"Mamdouh Taha Abouebaid","nationality":"EGY","sex":"male","date_of_birth":"1988-01-01T00:00:00.000Z","height":1.89,"weight":80,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":765515466,"name":"Mame Marie Sy","nationality":"SEN","sex":"female","date_of_birth":"1985-03-25T00:00:00.000Z","height":1.85,"weight":82,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":224743356,"name":"Mame-Ibra Anne","nationality":"FRA","sex":"male","date_of_birth":"1989-11-07T00:00:00.000Z","height":1.84,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":797336359,"name":"Mamed Ibragimov","nationality":"KAZ","sex":"male","date_of_birth":"1992-06-09T00:00:00.000Z","height":1.71,"weight":97,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":782337187,"name":"Mamello Makhabane","nationality":"RSA","sex":"female","date_of_birth":"1988-02-24T00:00:00.000Z","height":1.59,"weight":53,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":693611627,"name":"Mami Umeki","nationality":"JPN","sex":"female","date_of_birth":"1994-12-06T00:00:00.000Z","height":1.74,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":119339549,"name":"Mamina Kone","nationality":"CIV","sex":"female","date_of_birth":"1988-12-27T00:00:00.000Z","height":1.73,"weight":null,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":214760754,"name":"Mammadali Mehdiyev","nationality":"AZE","sex":"male","date_of_birth":"1993-04-09T00:00:00.000Z","height":1.88,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":795584159,"name":"Mamoudou Eliman Hanne","nationality":"FRA","sex":"male","date_of_birth":"1988-03-06T00:00:00.000Z","height":1.86,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":520226601,"name":"Man Asaad","nationality":"SYR","sex":"male","date_of_birth":"1993-11-20T00:00:00.000Z","height":1.9,"weight":143,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":684910206,"name":"Man Sun","nationality":"CHN","sex":"male","date_of_birth":"1995-08-22T00:00:00.000Z","height":1.88,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":443697349,"name":"Man Wai Vivian Kong","nationality":"HKG","sex":"female","date_of_birth":"1994-02-08T00:00:00.000Z","height":1.78,"weight":66,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":639340405,"name":"Man Yang","nationality":"CHN","sex":"female","date_of_birth":"1995-11-02T00:00:00.000Z","height":1.86,"weight":73,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":489273020,"name":"Manami Doi","nationality":"JPN","sex":"female","date_of_birth":"1993-08-29T00:00:00.000Z","height":1.67,"weight":64,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":919263114,"name":"Manavjit Singh Sandhu","nationality":"IND","sex":"male","date_of_birth":"1976-11-03T00:00:00.000Z","height":1.92,"weight":90,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":320003911,"name":"Mandakhnaran Ganzorig","nationality":"MGL","sex":"male","date_of_birth":"1986-05-11T00:00:00.000Z","height":1.65,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":878393556,"name":"Mandy Bujold","nationality":"CAN","sex":"female","date_of_birth":"1987-07-25T00:00:00.000Z","height":1.6,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":136508791,"name":"Mandy Islacker","nationality":"GER","sex":"female","date_of_birth":"1988-08-08T00:00:00.000Z","height":1.64,"weight":55,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":235018279,"name":"Mandy Mulder","nationality":"NED","sex":"female","date_of_birth":"1987-08-03T00:00:00.000Z","height":1.7,"weight":61,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":41706411,"name":"Mane","nationality":"POR","sex":"male","date_of_birth":"1994-03-11T00:00:00.000Z","height":1.72,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":977840087,"name":"Manel Terraza","nationality":"ESP","sex":"male","date_of_birth":"1990-05-11T00:00:00.000Z","height":1.84,"weight":78,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":804165037,"name":"Manfredi Rizza","nationality":"ITA","sex":"male","date_of_birth":"1991-04-26T00:00:00.000Z","height":1.8,"weight":89,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":974903059,"name":"Mangala Samarakoon","nationality":"SRI","sex":"male","date_of_birth":"1980-08-26T00:00:00.000Z","height":1.62,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":964160887,"name":"Manich Bech","nationality":"DEN","sex":"male","date_of_birth":"1993-01-13T00:00:00.000Z","height":1.7,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":12987305,"name":"Manika Batra","nationality":"IND","sex":"female","date_of_birth":"1995-06-15T00:00:00.000Z","height":1.79,"weight":63,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":879168754,"name":"Manila Flamini","nationality":"ITA","sex":"female","date_of_birth":"1987-09-18T00:00:00.000Z","height":1.63,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":643799158,"name":"Manish Singh","nationality":"IND","sex":"male","date_of_birth":"1991-05-05T00:00:00.000Z","height":1.74,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":408462176,"name":"Manoel Dall Igna","nationality":"FRA","sex":"male","date_of_birth":"1985-03-12T00:00:00.000Z","height":1.83,"weight":92,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":761454606,"name":"Manoj Kumar","nationality":"IND","sex":"male","date_of_birth":"1986-12-10T00:00:00.000Z","height":1.75,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":283175998,"name":"Manon Brunet","nationality":"FRA","sex":"female","date_of_birth":"1996-02-07T00:00:00.000Z","height":1.65,"weight":55,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":672441857,"name":"Manon Hostens","nationality":"FRA","sex":"female","date_of_birth":"1994-06-07T00:00:00.000Z","height":1.69,"weight":62,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":969062147,"name":"Manon Houette","nationality":"FRA","sex":"female","date_of_birth":"1992-07-02T00:00:00.000Z","height":1.68,"weight":69,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":620704693,"name":"Manon Valentino","nationality":"FRA","sex":"female","date_of_birth":"1990-08-25T00:00:00.000Z","height":1.72,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":14769885,"name":"Manpreet Kaur","nationality":"IND","sex":"female","date_of_birth":"1990-07-06T00:00:00.000Z","height":1.7,"weight":89,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":479145600,"name":"Manpreet Singh","nationality":"IND","sex":"male","date_of_birth":"1992-06-26T00:00:00.000Z","height":1.72,"weight":69,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":748912024,"name":"Manqi Ge","nationality":"CHN","sex":"female","date_of_birth":"1997-10-13T00:00:00.000Z","height":1.62,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":857446492,"name":"Manrique Larduet","nationality":"CUB","sex":"male","date_of_birth":"1996-07-10T00:00:00.000Z","height":1.6,"weight":63,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":690679655,"name":"Mantas Kalnietis","nationality":"LTU","sex":"male","date_of_birth":"1986-09-06T00:00:00.000Z","height":1.94,"weight":90,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":737047784,"name":"Manu Attri","nationality":"IND","sex":"male","date_of_birth":"1992-12-31T00:00:00.000Z","height":1.72,"weight":73,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":949112523,"name":"Manu Ginobili","nationality":"ARG","sex":"male","date_of_birth":"1977-07-28T00:00:00.000Z","height":1.98,"weight":91,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":"An Olympic basketball champion at Athens 2004 and a bronze medal winner at Beijing 2008 for the Argentina team, shooting guard Manu Ginóbili was decisive in four NBA titles won by the San Antonio Spurs – 2003, 2005, 2007 and 2014."},{"id":933012630,"name":"Manuel Alexander Torres","nationality":"VEN","sex":"male","date_of_birth":"1987-01-20T00:00:00.000Z","height":1.76,"weight":66,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":653187190,"name":"Manuel Brunet","nationality":"ARG","sex":"male","date_of_birth":"1985-11-16T00:00:00.000Z","height":1.79,"weight":79,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":621320289,"name":"Manuel Cappai","nationality":"ITA","sex":"male","date_of_birth":"1992-10-09T00:00:00.000Z","height":1.68,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":188149865,"name":"Manuel Esteban Soto","nationality":"COL","sex":"male","date_of_birth":"1994-01-28T00:00:00.000Z","height":1.7,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":454149473,"name":"Manuel Fernandez Saro","nationality":"ESP","sex":"male","date_of_birth":"1975-01-27T00:00:00.000Z","height":1.78,"weight":67,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":896925712,"name":"Manuel Fumic","nationality":"GER","sex":"male","date_of_birth":"1982-03-30T00:00:00.000Z","height":1.73,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":53279336,"name":"Manuel Huerta","nationality":"PUR","sex":"male","date_of_birth":"1984-03-22T00:00:00.000Z","height":1.68,"weight":56,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":715849692,"name":"Manuel Lajud","nationality":"MEX","sex":"male","date_of_birth":"1993-12-25T00:00:00.000Z","height":1.88,"weight":85,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":342632387,"name":"Manuel Lelo","nationality":"ANG","sex":"male","date_of_birth":"1987-08-18T00:00:00.000Z","height":1.82,"weight":73,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":91551077,"name":"Manuel Rodas Ochoa","nationality":"GUA","sex":"male","date_of_birth":"1984-07-05T00:00:00.000Z","height":1.71,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":484470226,"name":"Manuel Strlek","nationality":"CRO","sex":"male","date_of_birth":"1988-12-01T00:00:00.000Z","height":1.82,"weight":82,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":16557121,"name":"Manuel Tavares de Almeida","nationality":"BRA","sex":"male","date_of_birth":"1993-12-11T00:00:00.000Z","height":1.82,"weight":78,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":122886715,"name":"Manuela Pizzo","nationality":"ARG","sex":"female","date_of_birth":"1991-11-13T00:00:00.000Z","height":1.77,"weight":73,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":869069541,"name":"Manuela Soccol","nationality":"BEL","sex":"female","date_of_birth":"1988-06-16T00:00:00.000Z","height":1.57,"weight":42,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":456553330,"name":"Manueli Tulo","nationality":"FIJ","sex":"male","date_of_birth":"1990-03-25T00:00:00.000Z","height":1.51,"weight":56,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":949340839,"name":"Manuella Lyrio","nationality":"BRA","sex":"female","date_of_birth":"1989-07-27T00:00:00.000Z","height":1.63,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":990150557,"name":"Maor Tiyouri","nationality":"ISR","sex":"female","date_of_birth":"1990-08-13T00:00:00.000Z","height":1.48,"weight":44,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":947717856,"name":"Maoulida Daroueche","nationality":"COM","sex":"male","date_of_birth":"1990-02-07T00:00:00.000Z","height":1.77,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":547395563,"name":"Mara Abbott","nationality":"USA","sex":"female","date_of_birth":"1985-11-14T00:00:00.000Z","height":1.63,"weight":52,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":336448292,"name":"Marc Lopez","nationality":"ESP","sex":"male","date_of_birth":"1982-07-31T00:00:00.000Z","height":1.74,"weight":70,"sport":"tennis","gold":1,"silver":0,"bronze":0,"info":null},{"id":201149666,"name":"Marc Minguell Alferez","nationality":"ESP","sex":"male","date_of_birth":"1985-01-14T00:00:00.000Z","height":1.85,"weight":94,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":591640221,"name":"Marc Mundell","nationality":"RSA","sex":"male","date_of_birth":"1983-07-07T00:00:00.000Z","height":1.89,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":317700233,"name":"Marc Odenthal","nationality":"GER","sex":"male","date_of_birth":"1991-01-25T00:00:00.000Z","height":1.8,"weight":94,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":180431479,"name":"Marc Roca Barcelo","nationality":"ESP","sex":"male","date_of_birth":"1988-01-21T00:00:00.000Z","height":1.88,"weight":92,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":471210431,"name":"Marc Salles","nationality":"ESP","sex":"male","date_of_birth":"1987-05-06T00:00:00.000Z","height":1.7,"weight":64,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":777668281,"name":"Marc Sanchez Torrens","nationality":"ESP","sex":"male","date_of_birth":"1992-11-06T00:00:00.000Z","height":1.88,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":799451393,"name":"Marc Zwiebler","nationality":"GER","sex":"male","date_of_birth":"1984-03-13T00:00:00.000Z","height":1.81,"weight":75,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":970688075,"name":"Marc-Antoine Olivier","nationality":"FRA","sex":"male","date_of_birth":"1996-06-18T00:00:00.000Z","height":1.83,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":237044090,"name":"Marcel Hacker","nationality":"GER","sex":"male","date_of_birth":"1977-04-29T00:00:00.000Z","height":1.96,"weight":101,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":706271089,"name":"Marcel Lomnicky","nationality":"SVK","sex":"male","date_of_birth":"1987-07-06T00:00:00.000Z","height":1.77,"weight":106,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":749012390,"name":"Marcel Nguyen","nationality":"GER","sex":"male","date_of_birth":"1987-09-08T00:00:00.000Z","height":1.62,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":380803494,"name":"Marcela Krinke Susmelj","nationality":"SUI","sex":"female","date_of_birth":"1965-10-18T00:00:00.000Z","height":1.75,"weight":54,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":80452686,"name":"Marcela Maric","nationality":"CRO","sex":"female","date_of_birth":"1996-10-18T00:00:00.000Z","height":1.58,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":474468976,"name":"Marcelinho Huertas","nationality":"BRA","sex":"male","date_of_birth":"1983-05-25T00:00:00.000Z","height":1.91,"weight":90,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":919986691,"name":"Marcello Miani","nationality":"ITA","sex":"male","date_of_birth":"1984-03-05T00:00:00.000Z","height":1.83,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":855138617,"name":"Marcelo Aguirre","nationality":"PAR","sex":"male","date_of_birth":"1993-01-21T00:00:00.000Z","height":1.74,"weight":66,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":627766210,"name":"Marcelo Alberto Acosta Jimenez","nationality":"ESA","sex":"male","date_of_birth":"1996-07-11T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":225061272,"name":"Marcelo Chierighini","nationality":"BRA","sex":"male","date_of_birth":"1991-01-15T00:00:00.000Z","height":1.9,"weight":86,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":850637390,"name":"Marcelo Espinal","nationality":"HON","sex":"male","date_of_birth":"1993-02-24T00:00:00.000Z","height":1.75,"weight":78,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":118521548,"name":"Marcelo Melo","nationality":"BRA","sex":"male","date_of_birth":"1983-09-23T00:00:00.000Z","height":2,"weight":87,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":549105619,"name":"Marcelo Pereira","nationality":"HON","sex":"male","date_of_birth":"1995-05-27T00:00:00.000Z","height":1.81,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":279325237,"name":"Marcia Vidiaux","nationality":"CUB","sex":"female","date_of_birth":"1999-07-21T00:00:00.000Z","height":1.43,"weight":41,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":278352429,"name":"Marcin Brzezinski","nationality":"POL","sex":"male","date_of_birth":"1984-01-06T00:00:00.000Z","height":1.94,"weight":96,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":884298028,"name":"Marcin Krukowski","nationality":"POL","sex":"male","date_of_birth":"1992-06-14T00:00:00.000Z","height":1.85,"weight":96,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":838211917,"name":"Marcin Lewandowski","nationality":"POL","sex":"male","date_of_birth":"1987-06-13T00:00:00.000Z","height":1.79,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":8595112,"name":"Marcin Matkowski","nationality":"POL","sex":"male","date_of_birth":"1981-01-15T00:00:00.000Z","height":1.85,"weight":90,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":746849065,"name":"Marcin Pochwala","nationality":"POL","sex":"male","date_of_birth":"1984-02-14T00:00:00.000Z","height":1.82,"weight":80,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":382951256,"name":"Marcin Stolarski","nationality":"POL","sex":"male","date_of_birth":"1996-01-04T00:00:00.000Z","height":1.87,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":166826094,"name":"Marcio Appel","nationality":"BRA","sex":"male","date_of_birth":"1979-01-01T00:00:00.000Z","height":1.72,"weight":73,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":692236481,"name":"Marcio Carvalho Jorge","nationality":"BRA","sex":"male","date_of_birth":"1975-01-28T00:00:00.000Z","height":1.86,"weight":80,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":432314163,"name":"Marcio Teles","nationality":"BRA","sex":"male","date_of_birth":"1994-01-27T00:00:00.000Z","height":1.8,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":995865749,"name":"Marco Antonio Rodriguez","nationality":"BOL","sex":"male","date_of_birth":"1994-01-24T00:00:00.000Z","height":1.8,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":271177180,"name":"Marco Aurelio Fontana","nationality":"ITA","sex":"male","date_of_birth":"1984-10-12T00:00:00.000Z","height":1.72,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":527776420,"name":"Marco Belotti","nationality":"ITA","sex":"male","date_of_birth":"1988-11-29T00:00:00.000Z","height":1.84,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":171354772,"name":"Marco Bueno","nationality":"MEX","sex":"male","date_of_birth":"1994-03-31T00:00:00.000Z","height":1.82,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":406226635,"name":"Marco DI COSTANZO","nationality":"ITA","sex":"male","date_of_birth":"1992-06-09T00:00:00.000Z","height":1.84,"weight":87,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":483777206,"name":"Marco Fichera","nationality":"ITA","sex":"male","date_of_birth":"1993-09-04T00:00:00.000Z","height":1.8,"weight":74,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":156642960,"name":"Marco Galiazzo","nationality":"ITA","sex":"male","date_of_birth":"1983-05-07T00:00:00.000Z","height":1.78,"weight":98,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":"At Athens 2004, Marco Galiazzo became the first Italian to win an Olympic gold medal in archery, winning in the individual event. Since then, he has won a silver and a gold in the team event, at Beijing 2008 and London 2012, as well as a world cup title."},{"id":331908129,"name":"Marco Grael","nationality":"BRA","sex":"male","date_of_birth":"1989-06-09T00:00:00.000Z","height":1.81,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":886667539,"name":"Marco Grimalt","nationality":"CHI","sex":"male","date_of_birth":"1989-07-11T00:00:00.000Z","height":1.96,"weight":92,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":975072988,"name":"Marco Innocenti","nationality":"ITA","sex":"male","date_of_birth":"1978-08-16T00:00:00.000Z","height":1.78,"weight":97,"sport":"shooting","gold":0,"silver":1,"bronze":0,"info":null},{"id":861351035,"name":"Marco Koch","nationality":"GER","sex":"male","date_of_birth":"1990-01-25T00:00:00.000Z","height":1.85,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":379037954,"name":"Marco Lingua","nationality":"ITA","sex":"male","date_of_birth":"1978-06-04T00:00:00.000Z","height":1.77,"weight":116,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":225215794,"name":"Marco Orsi","nationality":"ITA","sex":"male","date_of_birth":"1990-12-11T00:00:00.000Z","height":1.89,"weight":89,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":778682814,"name":"Marco de Luca","nationality":"ITA","sex":"male","date_of_birth":"1981-05-12T00:00:00.000Z","height":1.88,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":491996482,"name":"Marco de Nicolo","nationality":"ITA","sex":"male","date_of_birth":"1976-09-30T00:00:00.000Z","height":1.8,"weight":85,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":473758676,"name":"Marco del Lungo","nationality":"ITA","sex":"male","date_of_birth":"1990-03-01T00:00:00.000Z","height":1.9,"weight":97,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":995047482,"name":"Marcos Delia","nationality":"ARG","sex":"male","date_of_birth":"1992-04-08T00:00:00.000Z","height":2.09,"weight":105,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":842606539,"name":"Marcos Freitas","nationality":"POR","sex":"male","date_of_birth":"1988-04-08T00:00:00.000Z","height":1.8,"weight":75,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":634165369,"name":"Marcos Macedo","nationality":"BRA","sex":"male","date_of_birth":"1990-09-09T00:00:00.000Z","height":1.89,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":408897211,"name":"Marcos Madrid","nationality":"MEX","sex":"male","date_of_birth":"1986-09-06T00:00:00.000Z","height":1.8,"weight":68,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":23863163,"name":"Marcos Pasin","nationality":"BRA","sex":"male","date_of_birth":"1993-05-27T00:00:00.000Z","height":1.73,"weight":69,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":372806643,"name":"Marcos Poggi","nationality":"ESP","sex":"male","date_of_birth":"1987-08-31T00:00:00.000Z","height":1.82,"weight":86,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":481791889,"name":"Marcos Pulido Rodriguez","nationality":"MEX","sex":"male","date_of_birth":"1995-08-18T00:00:00.000Z","height":1.79,"weight":74,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":414759597,"name":"Marcus Child","nationality":"NZL","sex":"male","date_of_birth":"1991-03-02T00:00:00.000Z","height":1.82,"weight":81,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":728513422,"name":"Marcus D'almeida","nationality":"BRA","sex":"male","date_of_birth":"1998-01-30T00:00:00.000Z","height":1.83,"weight":90,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":84514689,"name":"Marcus Daniell","nationality":"NZL","sex":"male","date_of_birth":"1989-11-09T00:00:00.000Z","height":1.9,"weight":76,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":22207553,"name":"Marcus Duncan","nationality":"TTO","sex":"male","date_of_birth":"1986-12-04T00:00:00.000Z","height":1.77,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":820182386,"name":"Marcus Ellis","nationality":"GBR","sex":"male","date_of_birth":"1989-09-14T00:00:00.000Z","height":1.75,"weight":80,"sport":"badminton","gold":0,"silver":0,"bronze":1,"info":null},{"id":456233177,"name":"Marcus Fraser","nationality":"AUS","sex":"male","date_of_birth":"1978-07-26T00:00:00.000Z","height":1.83,"weight":89,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":282297654,"name":"Marcus Gross","nationality":"GER","sex":"male","date_of_birth":"1989-09-28T00:00:00.000Z","height":1.82,"weight":85,"sport":"canoe","gold":2,"silver":0,"bronze":0,"info":null},{"id":673529044,"name":"Marcus Mepstead","nationality":"GBR","sex":"male","date_of_birth":"1990-05-11T00:00:00.000Z","height":1.83,"weight":78,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":14800860,"name":"Marcus Nyman","nationality":"SWE","sex":"male","date_of_birth":"1990-08-14T00:00:00.000Z","height":1.89,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":164432341,"name":"Marcus Svensson","nationality":"SWE","sex":"male","date_of_birth":"1990-03-22T00:00:00.000Z","height":1.76,"weight":68,"sport":"shooting","gold":0,"silver":1,"bronze":0,"info":null},{"id":799844777,"name":"Marcus Vinicius Marquinhos","nationality":"BRA","sex":"male","date_of_birth":"1984-05-31T00:00:00.000Z","height":2.07,"weight":104,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":855460068,"name":"Marcus Walz","nationality":"ESP","sex":"male","date_of_birth":"1994-10-03T00:00:00.000Z","height":1.84,"weight":82,"sport":"canoe","gold":1,"silver":0,"bronze":0,"info":null},{"id":372436745,"name":"Marcus Watson","nationality":"GBR","sex":"male","date_of_birth":"1991-06-27T00:00:00.000Z","height":1.77,"weight":88,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":501561453,"name":"Mare Dibaba","nationality":"ETH","sex":"female","date_of_birth":"1989-10-20T00:00:00.000Z","height":1.56,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":655236481,"name":"Mareen Kraeh","nationality":"GER","sex":"female","date_of_birth":"1984-01-28T00:00:00.000Z","height":1.61,"weight":54,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":377392612,"name":"Mareike Adams","nationality":"GER","sex":"female","date_of_birth":"1990-02-27T00:00:00.000Z","height":1.74,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":182348270,"name":"Marek Sindler","nationality":"CZE","sex":"male","date_of_birth":"1992-07-21T00:00:00.000Z","height":1.86,"weight":74,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":134225037,"name":"Mareks Arents","nationality":"LAT","sex":"male","date_of_birth":"1986-08-06T00:00:00.000Z","height":1.9,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":195571720,"name":"Marestella Sunang","nationality":"PHI","sex":"female","date_of_birth":"1981-02-20T00:00:00.000Z","height":1.57,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":188511447,"name":"Maret Balkestein-Grothues","nationality":"NED","sex":"female","date_of_birth":"1988-09-16T00:00:00.000Z","height":1.8,"weight":68,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":919199035,"name":"Margaret Adeoye","nationality":"GBR","sex":"female","date_of_birth":"1985-04-22T00:00:00.000Z","height":1.74,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":978084317,"name":"Margaret Bamgbose","nationality":"NGR","sex":"female","date_of_birth":"1993-10-19T00:00:00.000Z","height":1.71,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":780545996,"name":"Margaret Nyairera Wambui","nationality":"KEN","sex":"female","date_of_birth":"1995-09-15T00:00:00.000Z","height":null,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":644993560,"name":"Margarita Hernandez","nationality":"MEX","sex":"female","date_of_birth":"1985-12-03T00:00:00.000Z","height":1.5,"weight":44,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":592591211,"name":"Margarita Mamun","nationality":"RUS","sex":"female","date_of_birth":"1995-10-31T00:00:00.000Z","height":1.7,"weight":50,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":"She is the complete gymnast: between 2013 and 2015, Russia's Margarita Mamun won the world championship gold in four different apparatuses – the ball, clubs, tape and hoop –, in addition to the team first place."},{"id":822811465,"name":"Margarita Mukasheva","nationality":"KAZ","sex":"female","date_of_birth":"1986-01-04T00:00:00.000Z","height":1.65,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":330489011,"name":"Margarita Yelisseyeva","nationality":"KAZ","sex":"female","date_of_birth":"1992-07-20T00:00:00.000Z","height":1.5,"weight":48,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":936647883,"name":"Margaux Chretien","nationality":"FRA","sex":"female","date_of_birth":"1992-12-11T00:00:00.000Z","height":1.72,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":587959959,"name":"Margaux Fabre","nationality":"FRA","sex":"female","date_of_birth":"1992-10-02T00:00:00.000Z","height":1.73,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":687712206,"name":"Margaux Isaksen","nationality":"USA","sex":"female","date_of_birth":"1991-10-07T00:00:00.000Z","height":1.78,"weight":60,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":16156775,"name":"Margherita Magnani","nationality":"ITA","sex":"female","date_of_birth":"1987-02-26T00:00:00.000Z","height":1.6,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":354533,"name":"Margherita Panziera","nationality":"ITA","sex":"female","date_of_birth":"1995-08-12T00:00:00.000Z","height":1.8,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":618086900,"name":"Margit Vanek","nationality":"HUN","sex":"female","date_of_birth":"1986-02-25T00:00:00.000Z","height":1.78,"weight":58,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":999465722,"name":"Margot van Geffen","nationality":"NED","sex":"female","date_of_birth":"1989-11-23T00:00:00.000Z","height":1.72,"weight":63,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":713835897,"name":"Margret Hassan","nationality":"SSD","sex":"female","date_of_birth":"1997-08-12T00:00:00.000Z","height":1.6,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":707146783,"name":"Marharyta Makhneva","nationality":"BLR","sex":"female","date_of_birth":"1992-02-13T00:00:00.000Z","height":1.81,"weight":67,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":188153732,"name":"Marhinde Verkerk","nationality":"NED","sex":"female","date_of_birth":"1985-11-21T00:00:00.000Z","height":1.72,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":297444162,"name":"Mari Molid","nationality":"NOR","sex":"female","date_of_birth":"1990-08-08T00:00:00.000Z","height":1.78,"weight":null,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":207842990,"name":"Mari Rabie","nationality":"RSA","sex":"female","date_of_birth":"1986-09-10T00:00:00.000Z","height":1.71,"weight":60,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":192881723,"name":"Maria Alexandra Escobar Guerrero","nationality":"ECU","sex":"female","date_of_birth":"1980-07-17T00:00:00.000Z","height":1.61,"weight":57,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":220995361,"name":"Maria Andrade","nationality":"CPV","sex":"female","date_of_birth":"1993-03-19T00:00:00.000Z","height":1.69,"weight":49,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":289043459,"name":"Maria Andrejczyk","nationality":"POL","sex":"female","date_of_birth":"1996-03-09T00:00:00.000Z","height":1.74,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":60248392,"name":"Maria Barrionuevo","nationality":"ARG","sex":"female","date_of_birth":"1984-05-16T00:00:00.000Z","height":1.71,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":"One of the most experienced Argentine field hockey players, defender Noel Barrionuevo led her country to the podium at Beijing 2008, with the bronze, and London 2012, with the silver – as well as the 2010 World Cup and 2014/2015 World League."},{"id":437720766,"name":"Maria Belen Perez Maurice","nationality":"ARG","sex":"female","date_of_birth":"1985-07-12T00:00:00.000Z","height":1.8,"weight":68,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":581742825,"name":"Maria Belimpasaki","nationality":"GRE","sex":"female","date_of_birth":"1991-06-19T00:00:00.000Z","height":1.75,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":671806829,"name":"Maria Bernabeu","nationality":"ESP","sex":"female","date_of_birth":"1988-02-15T00:00:00.000Z","height":1.7,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":225216980,"name":"Maria Bernard","nationality":"CAN","sex":"female","date_of_birth":"1993-04-06T00:00:00.000Z","height":1.65,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":849987723,"name":"Maria Borisova","nationality":"RUS","sex":"female","date_of_birth":"1997-07-28T00:00:00.000Z","height":1.84,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":173396847,"name":"Maria Branz","nationality":"ARG","sex":"female","date_of_birth":"1990-02-06T00:00:00.000Z","height":1.7,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":227880733,"name":"Maria Bruno","nationality":"BRA","sex":"female","date_of_birth":"1992-08-28T00:00:00.000Z","height":1.6,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":129176268,"name":"Maria Camila Lopera Valle","nationality":"COL","sex":"female","date_of_birth":"1995-04-18T00:00:00.000Z","height":1.54,"weight":54,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":548878175,"name":"Maria Campoy","nationality":"ARG","sex":"female","date_of_birth":"1990-10-06T00:00:00.000Z","height":1.58,"weight":48,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":641169323,"name":"Maria Casado","nationality":"ESP","sex":"female","date_of_birth":"1985-12-25T00:00:00.000Z","height":1.67,"weight":63,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":680445450,"name":"Maria Clara Lobo","nationality":"BRA","sex":"female","date_of_birth":"1998-09-03T00:00:00.000Z","height":1.67,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":971274141,"name":"Maria Czakova","nationality":"SVK","sex":"female","date_of_birth":"1988-10-02T00:00:00.000Z","height":1.66,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":95646367,"name":"Maria Dolgikh","nationality":"RUS","sex":"female","date_of_birth":"1987-07-24T00:00:00.000Z","height":1.76,"weight":62,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":639719665,"name":"Maria Eduarda Miccuci","nationality":"BRA","sex":"female","date_of_birth":"1995-06-07T00:00:00.000Z","height":1.67,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":42602097,"name":"Maria Elena Calle","nationality":"ECU","sex":"female","date_of_birth":"1975-07-25T00:00:00.000Z","height":1.62,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":166969862,"name":"Maria Elisabetta Marconi","nationality":"ITA","sex":"female","date_of_birth":"1984-08-28T00:00:00.000Z","height":1.59,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":71121254,"name":"Maria Enrica Spacca","nationality":"ITA","sex":"female","date_of_birth":"1986-03-20T00:00:00.000Z","height":1.64,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":274533767,"name":"Maria Erdi","nationality":"HUN","sex":"female","date_of_birth":"1998-02-18T00:00:00.000Z","height":1.75,"weight":67,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":242817329,"name":"Maria Far","nationality":"PAN","sex":"female","date_of_birth":"1998-01-06T00:00:00.000Z","height":1.63,"weight":130,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":395263582,"name":"Maria Fernanda Valdes Paris","nationality":"CHI","sex":"female","date_of_birth":"1992-03-17T00:00:00.000Z","height":1.61,"weight":75,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":821892550,"name":"Maria Gabriela Diaz","nationality":"ARG","sex":"female","date_of_birth":"1981-01-02T00:00:00.000Z","height":1.6,"weight":53,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":781399998,"name":"Maria Galikova","nationality":"SVK","sex":"female","date_of_birth":"1980-08-21T00:00:00.000Z","height":1.61,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":526855097,"name":"Maria Granatto","nationality":"ARG","sex":"female","date_of_birth":"1995-04-21T00:00:00.000Z","height":1.58,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":950854584,"name":"Maria Guadalupe Gonzalez","nationality":"MEX","sex":"female","date_of_birth":"1989-01-09T00:00:00.000Z","height":1.62,"weight":47,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":453427265,"name":"Maria Guadalupe Sanchez","nationality":"MEX","sex":"female","date_of_birth":"1995-08-04T00:00:00.000Z","height":1.65,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":141566641,"name":"Maria Jose Acosta Acosta","nationality":"VEN","sex":"female","date_of_birth":"1991-11-26T00:00:00.000Z","height":1.72,"weight":69,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":722414167,"name":"Maria Kadobina","nationality":"BLR","sex":"female","date_of_birth":"1997-02-04T00:00:00.000Z","height":1.74,"weight":51,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":686608090,"name":"Maria Kurjo","nationality":"GER","sex":"female","date_of_birth":"1989-12-10T00:00:00.000Z","height":1.58,"weight":52,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":813578958,"name":"Maria Leonor Tavares","nationality":"POR","sex":"female","date_of_birth":"1985-09-24T00:00:00.000Z","height":1.65,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":323047298,"name":"Maria Lopez","nationality":"ESP","sex":"female","date_of_birth":"1990-02-16T00:00:00.000Z","height":1.7,"weight":62,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":937896884,"name":"Maria Lopez de Equilaz","nationality":"ESP","sex":"female","date_of_birth":"1984-07-12T00:00:00.000Z","height":1.64,"weight":56,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":766954463,"name":"Maria Michta-Coffey","nationality":"USA","sex":"female","date_of_birth":"1986-06-23T00:00:00.000Z","height":1.66,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":82454552,"name":"Maria Mollestad","nationality":"NOR","sex":"female","date_of_birth":"1992-07-23T00:00:00.000Z","height":null,"weight":null,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":949792080,"name":"Maria Mutio","nationality":"ARG","sex":"female","date_of_birth":"1984-11-20T00:00:00.000Z","height":1.71,"weight":68,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":359873953,"name":"Maria Natalia Londa","nationality":"INA","sex":"female","date_of_birth":"1990-10-29T00:00:00.000Z","height":1.65,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":397999900,"name":"Maria Ortiz","nationality":"ARG","sex":"female","date_of_birth":"1997-04-16T00:00:00.000Z","height":1.62,"weight":50,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":80802864,"name":"Maria Paseka","nationality":"RUS","sex":"female","date_of_birth":"1995-07-19T00:00:00.000Z","height":1.61,"weight":48,"sport":"gymnastics","gold":0,"silver":2,"bronze":0,"info":null},{"id":649684578,"name":"Maria Peralta","nationality":"ARG","sex":"female","date_of_birth":"1977-11-30T00:00:00.000Z","height":1.67,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":546111531,"name":"Maria Perez","nationality":"PUR","sex":"female","date_of_birth":"1989-04-01T00:00:00.000Z","height":1.67,"weight":69,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":917128574,"name":"Maria Portela","nationality":"BRA","sex":"female","date_of_birth":"1988-01-14T00:00:00.000Z","height":1.58,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":902674669,"name":"Maria Prevolaraki","nationality":"GRE","sex":"female","date_of_birth":"1991-12-21T00:00:00.000Z","height":1.63,"weight":57,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":887573602,"name":"Maria Ribera","nationality":"ESP","sex":"female","date_of_birth":"1986-07-08T00:00:00.000Z","height":1.72,"weight":76,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":206006000,"name":"Maria Romanjuk","nationality":"EST","sex":"female","date_of_birth":"1996-08-15T00:00:00.000Z","height":1.69,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":520469214,"name":"Maria Ruiz","nationality":"ESP","sex":"female","date_of_birth":"1990-03-18T00:00:00.000Z","height":1.69,"weight":73,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":865389407,"name":"Maria Selmaier","nationality":"GER","sex":"female","date_of_birth":"1991-12-12T00:00:00.000Z","height":1.75,"weight":79,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":861477967,"name":"Maria Springwald","nationality":"POL","sex":"female","date_of_birth":"1991-07-30T00:00:00.000Z","height":1.74,"weight":69,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":960192083,"name":"Maria Suelen Altheman","nationality":"BRA","sex":"female","date_of_birth":"1988-08-12T00:00:00.000Z","height":1.75,"weight":110,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":336010126,"name":"Maria Tejerina Mackern","nationality":"ARG","sex":"female","date_of_birth":"1994-06-15T00:00:00.000Z","height":1.69,"weight":63,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":975534750,"name":"Maria Tolkacheva","nationality":"RUS","sex":"female","date_of_birth":"1997-08-08T00:00:00.000Z","height":1.76,"weight":53,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":null},{"id":5915355,"name":"Maria Ugolkova","nationality":"SUI","sex":"female","date_of_birth":"1989-07-18T00:00:00.000Z","height":1.73,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":655249498,"name":"Maria Ulitina","nationality":"UKR","sex":"female","date_of_birth":"1991-11-05T00:00:00.000Z","height":1.78,"weight":65,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":164601802,"name":"Maria Verchenova","nationality":"RUS","sex":"female","date_of_birth":"1986-03-27T00:00:00.000Z","height":1.74,"weight":64,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":609643734,"name":"Maria Verschoor","nationality":"NED","sex":"female","date_of_birth":"1994-04-22T00:00:00.000Z","height":1.64,"weight":58,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":330387161,"name":"Maria Vilas Vidal","nationality":"ESP","sex":"female","date_of_birth":"1996-05-31T00:00:00.000Z","height":1.68,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":9029196,"name":"Maria Wierzbowska","nationality":"POL","sex":"female","date_of_birth":"1995-02-13T00:00:00.000Z","height":1.74,"weight":68,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":375141341,"name":"Maria del Mar Jover","nationality":"ESP","sex":"female","date_of_birth":"1988-04-21T00:00:00.000Z","height":1.67,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":626430359,"name":"Maria del Pilar Pena Carrasco","nationality":"ESP","sex":"female","date_of_birth":"1986-04-04T00:00:00.000Z","height":1.74,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":215800330,"name":"Maria del Rosario Espinoza Espinoza","nationality":"MEX","sex":"female","date_of_birth":"1987-11-29T00:00:00.000Z","height":1.73,"weight":70,"sport":"taekwondo","gold":0,"silver":1,"bronze":0,"info":null},{"id":271492907,"name":"Mariabenedicta Chigbolu","nationality":"ITA","sex":"female","date_of_birth":"1989-07-27T00:00:00.000Z","height":1.72,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":414150168,"name":"Mariafe Artacho del Solar","nationality":"AUS","sex":"female","date_of_birth":"1993-10-24T00:00:00.000Z","height":1.74,"weight":70,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":177261311,"name":"Mariah Williams","nationality":"AUS","sex":"female","date_of_birth":"1995-05-31T00:00:00.000Z","height":1.68,"weight":66,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":990925025,"name":"Mariajo Uribe","nationality":"COL","sex":"female","date_of_birth":"1990-02-27T00:00:00.000Z","height":1.68,"weight":65,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":406892958,"name":"Mariam Kromah","nationality":"LBR","sex":"female","date_of_birth":"1994-01-01T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":408046749,"name":"Mariama Djoulde Sow","nationality":"GUI","sex":"female","date_of_birth":"2000-05-19T00:00:00.000Z","height":1.65,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":477864609,"name":"Mariama Mamoudou","nationality":"NIG","sex":"female","date_of_birth":"1997-07-23T00:00:00.000Z","height":1.69,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":342716060,"name":"Marian Dragulescu","nationality":"ROU","sex":"male","date_of_birth":"1980-12-18T00:00:00.000Z","height":1.63,"weight":64,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":84245800,"name":"Marian Kovacocy","nationality":"SVK","sex":"male","date_of_birth":"1984-09-17T00:00:00.000Z","height":1.8,"weight":87,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":6690107,"name":"Marian Oprea","nationality":"ROU","sex":"male","date_of_birth":"1982-06-06T00:00:00.000Z","height":1.91,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":699157085,"name":"Marian Urdabayeva","nationality":"KAZ","sex":"female","date_of_birth":"1988-04-03T00:00:00.000Z","height":1.7,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":336224210,"name":"Mariana Cherdivara Esanu","nationality":"MDA","sex":"female","date_of_birth":"1992-09-15T00:00:00.000Z","height":1.6,"weight":62,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":219248034,"name":"Mariana Cress","nationality":"MHL","sex":"female","date_of_birth":"1998-08-12T00:00:00.000Z","height":1.58,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":114574006,"name":"Mariana Duarte","nationality":"BRA","sex":"female","date_of_birth":"1996-10-05T00:00:00.000Z","height":1.7,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":939892477,"name":"Mariana Duque-Marino","nationality":"COL","sex":"female","date_of_birth":"1989-08-12T00:00:00.000Z","height":1.69,"weight":61,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":123852277,"name":"Mariana Foglia Costa","nationality":"URU","sex":"female","date_of_birth":"1982-06-28T00:00:00.000Z","height":1.73,"weight":69,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":441871483,"name":"Mariana Pajon","nationality":"COL","sex":"female","date_of_birth":"1991-10-10T00:00:00.000Z","height":1.58,"weight":50,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":"Colombia's flag bearer at the London 2012 opening ceremony, Mariana Pajón won gold in the cycling BMX event at that same Olympics – the second in the South American country's Olympic history."},{"id":267541302,"name":"Mariana Ramalho","nationality":"BRA","sex":"female","date_of_birth":"1987-08-17T00:00:00.000Z","height":null,"weight":null,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":583952076,"name":"Mariana Sahakian","nationality":"LIB","sex":"female","date_of_birth":"1977-09-02T00:00:00.000Z","height":1.55,"weight":52,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":354121976,"name":"Mariana Silva","nationality":"BRA","sex":"female","date_of_birth":"1990-02-22T00:00:00.000Z","height":1.73,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":472526288,"name":"Mariangela Perrupato","nationality":"ITA","sex":"female","date_of_birth":"1988-09-15T00:00:00.000Z","height":1.73,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":385694443,"name":"Marianna Sastin","nationality":"HUN","sex":"female","date_of_birth":"1983-07-10T00:00:00.000Z","height":1.61,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":813833760,"name":"Marianna Tolo","nationality":"AUS","sex":"female","date_of_birth":"1989-07-02T00:00:00.000Z","height":1.96,"weight":86,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":321680601,"name":"Marianne Skarpnord","nationality":"NOR","sex":"female","date_of_birth":"1986-02-11T00:00:00.000Z","height":null,"weight":null,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":913351794,"name":"Marianne Vos","nationality":"NED","sex":"female","date_of_birth":"1987-05-13T00:00:00.000Z","height":1.69,"weight":59,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":"Olympic champion at London 2012, Marianne Vos won her first road cycling world title at the age of 19, in 2006. This Dutch athlete also won another two titles in 2012 and 2013, and was runner-up five times between 2007 and 2011."},{"id":610975661,"name":"Mariano Canepa","nationality":"ARG","sex":"male","date_of_birth":"1987-05-07T00:00:00.000Z","height":1.85,"weight":98,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":393287429,"name":"Mariano Mastromarino","nationality":"ARG","sex":"male","date_of_birth":"1982-09-15T00:00:00.000Z","height":1.69,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":285433516,"name":"Maricet Espinosa","nationality":"CUB","sex":"female","date_of_birth":"1990-01-02T00:00:00.000Z","height":1.63,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":76777877,"name":"Marie Gayot","nationality":"FRA","sex":"female","date_of_birth":"1989-12-18T00:00:00.000Z","height":1.71,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":849507397,"name":"Marie Laura Meza","nationality":"CRC","sex":"female","date_of_birth":"1990-11-20T00:00:00.000Z","height":1.63,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":192037640,"name":"Marie Laure Delie","nationality":"FRA","sex":"female","date_of_birth":"1988-01-29T00:00:00.000Z","height":1.72,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":974746450,"name":"Marie Le Nepvou","nationality":"FRA","sex":"female","date_of_birth":"1985-01-25T00:00:00.000Z","height":1.81,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":494678680,"name":"Marie Mavers","nationality":"GER","sex":"female","date_of_birth":"1991-02-13T00:00:00.000Z","height":1.7,"weight":67,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":372606340,"name":"Marie Prouvensier","nationality":"FRA","sex":"female","date_of_birth":"1994-02-09T00:00:00.000Z","height":1.65,"weight":52,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":34447682,"name":"Marie Riou","nationality":"FRA","sex":"female","date_of_birth":"1981-08-21T00:00:00.000Z","height":1.71,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":953237807,"name":"Marie Wattel","nationality":"FRA","sex":"female","date_of_birth":"1997-06-02T00:00:00.000Z","height":1.81,"weight":71,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":230737913,"name":"Marie Yamaguchi","nationality":"JPN","sex":"female","date_of_birth":"1989-10-22T00:00:00.000Z","height":1.59,"weight":58,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":351230490,"name":"Marie-Catherine Arnold","nationality":"GER","sex":"female","date_of_birth":"1991-11-07T00:00:00.000Z","height":1.75,"weight":69,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":851180853,"name":"Marie-Eve Beauchemin-Nadeau","nationality":"CAN","sex":"female","date_of_birth":"1988-10-13T00:00:00.000Z","height":1.66,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":223948924,"name":"Marie-Eve Nault","nationality":"CAN","sex":"female","date_of_birth":"1982-02-16T00:00:00.000Z","height":1.7,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":554344364,"name":"Marie-Florence Candassamy","nationality":"FRA","sex":"female","date_of_birth":"1991-02-26T00:00:00.000Z","height":1.85,"weight":74,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":322081073,"name":"Marie-Josee Ta Lou","nationality":"CIV","sex":"female","date_of_birth":"1988-11-18T00:00:00.000Z","height":1.59,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":2419718,"name":"Marie-Laurence Jungfleisch","nationality":"GER","sex":"female","date_of_birth":"1990-10-07T00:00:00.000Z","height":1.82,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":68066682,"name":"Marie-Louise Drager","nationality":"GER","sex":"female","date_of_birth":"1981-04-11T00:00:00.000Z","height":1.7,"weight":59,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":877716234,"name":"Marie-Sadio Rosche","nationality":"SEN","sex":"female","date_of_birth":"1987-08-10T00:00:00.000Z","height":1.9,"weight":80,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":307272735,"name":"Marie-Zelia Lafont","nationality":"FRA","sex":"female","date_of_birth":"1987-01-09T00:00:00.000Z","height":1.71,"weight":63,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":669462744,"name":"Mariel Zagunis","nationality":"USA","sex":"female","date_of_birth":"1985-03-03T00:00:00.000Z","height":1.73,"weight":72,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":462879813,"name":"Marielle Amant","nationality":"FRA","sex":"female","date_of_birth":"1989-12-09T00:00:00.000Z","height":1.9,"weight":84,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":132988064,"name":"Marielle Hall","nationality":"USA","sex":"female","date_of_birth":"1992-01-28T00:00:00.000Z","height":1.61,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":778284527,"name":"Mariely Sanchez","nationality":"DOM","sex":"female","date_of_birth":"1988-12-30T00:00:00.000Z","height":1.61,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":273450205,"name":"Mariia Shorets","nationality":"RUS","sex":"female","date_of_birth":"1990-08-09T00:00:00.000Z","height":1.66,"weight":55,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":258800663,"name":"Mariia Shurochkina","nationality":"RUS","sex":"female","date_of_birth":"1995-06-30T00:00:00.000Z","height":1.64,"weight":50,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":639025149,"name":"Marija Jovanovic","nationality":"MNE","sex":"female","date_of_birth":"1985-12-26T00:00:00.000Z","height":1.81,"weight":77,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":892226840,"name":"Marija Marovic","nationality":"CRO","sex":"female","date_of_birth":"1983-09-16T00:00:00.000Z","height":1.75,"weight":72,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":604000736,"name":"Marija Vrajic","nationality":"CRO","sex":"female","date_of_birth":"1976-09-23T00:00:00.000Z","height":1.69,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":948844936,"name":"Marije van Hunenstijn","nationality":"NED","sex":"female","date_of_birth":"1995-03-02T00:00:00.000Z","height":1.74,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":259349407,"name":"Marika Popowicz-Drapala","nationality":"POL","sex":"female","date_of_birth":"1988-04-28T00:00:00.000Z","height":1.64,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":333749017,"name":"Marilson dos Santos","nationality":"BRA","sex":"male","date_of_birth":"1977-08-06T00:00:00.000Z","height":1.74,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":970045887,"name":"Marily dos Santos","nationality":"BRA","sex":"female","date_of_birth":"1978-02-05T00:00:00.000Z","height":1.58,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":500168497,"name":"Marin Cilic","nationality":"CRO","sex":"male","date_of_birth":"1988-09-28T00:00:00.000Z","height":1.98,"weight":89,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":461854211,"name":"Marin Draganja","nationality":"CRO","sex":"male","date_of_birth":"1991-05-13T00:00:00.000Z","height":1.86,"weight":80,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":161253255,"name":"Marina Aframeeva","nationality":"RUS","sex":"female","date_of_birth":"1991-03-04T00:00:00.000Z","height":1.71,"weight":62,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":521412968,"name":"Marina Alabau Neira","nationality":"ESP","sex":"female","date_of_birth":"1985-08-31T00:00:00.000Z","height":1.64,"weight":55,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":"Five-time European champion and holder of one gold medal, two silvers and two bronzes at world championships, Spain's Marina Alabau is also the current Olympic champion in the RS:X class – she won the regattas at London 2012."},{"id":430360045,"name":"Marina Arzamasova","nationality":"BLR","sex":"female","date_of_birth":"1987-12-17T00:00:00.000Z","height":1.73,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":276990393,"name":"Marina Bravo","nationality":"ESP","sex":"female","date_of_birth":"1989-07-02T00:00:00.000Z","height":1.73,"weight":68,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":190849137,"name":"Marina Canetta","nationality":"BRA","sex":"female","date_of_birth":"1989-04-01T00:00:00.000Z","height":1.62,"weight":51,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":38754507,"name":"Marina Canetti","nationality":"BRA","sex":"female","date_of_birth":"1983-01-24T00:00:00.000Z","height":1.69,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":653594093,"name":"Marina Durunda","nationality":"AZE","sex":"female","date_of_birth":"1997-06-12T00:00:00.000Z","height":1.7,"weight":51,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":823803768,"name":"Marina Hmelevskaya","nationality":"UZB","sex":"female","date_of_birth":"1990-07-30T00:00:00.000Z","height":1.65,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":864041951,"name":"Marina Marghieva-Nikisenko","nationality":"MDA","sex":"female","date_of_birth":"1986-06-28T00:00:00.000Z","height":1.86,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":787075445,"name":"Marina Rajcic","nationality":"MNE","sex":"female","date_of_birth":"1993-08-24T00:00:00.000Z","height":1.75,"weight":70,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":95985131,"name":"Marina Sudakova","nationality":"RUS","sex":"female","date_of_birth":"1989-02-17T00:00:00.000Z","height":1.65,"weight":66,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":175326336,"name":"Marina Toribiong","nationality":"PLW","sex":"female","date_of_birth":"1994-06-13T00:00:00.000Z","height":1.53,"weight":69,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":488705922,"name":"Marina Zablith","nationality":"BRA","sex":"female","date_of_birth":"1987-03-04T00:00:00.000Z","height":1.8,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":887926099,"name":"Marina de la Caridad Rodriguez Mitjan","nationality":"CUB","sex":"female","date_of_birth":"1995-03-02T00:00:00.000Z","height":1.55,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":744691889,"name":"Marine Boyer","nationality":"FRA","sex":"female","date_of_birth":"2000-05-22T00:00:00.000Z","height":1.6,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":178736852,"name":"Marine Brevet","nationality":"FRA","sex":"female","date_of_birth":"1994-11-23T00:00:00.000Z","height":1.6,"weight":52,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":617653407,"name":"Marine Johannes","nationality":"FRA","sex":"female","date_of_birth":"1995-01-21T00:00:00.000Z","height":1.77,"weight":61,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":513001410,"name":"Marine Jurbert","nationality":"FRA","sex":"female","date_of_birth":"1992-12-11T00:00:00.000Z","height":1.64,"weight":53,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":19543044,"name":"Mario Alfonso Bran","nationality":"GUA","sex":"male","date_of_birth":"1989-10-17T00:00:00.000Z","height":1.68,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":368806729,"name":"Mario Fernandez","nationality":"ESP","sex":"male","date_of_birth":"1992-04-26T00:00:00.000Z","height":1.8,"weight":80,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":266700854,"name":"Mario Gyr","nationality":"SUI","sex":"male","date_of_birth":"1985-05-02T00:00:00.000Z","height":1.87,"weight":76,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":224028378,"name":"Mario Hezonja","nationality":"CRO","sex":"male","date_of_birth":"1995-02-25T00:00:00.000Z","height":2.03,"weight":100,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":430914854,"name":"Mario Jose dos Santos Jr","nationality":"BRA","sex":"male","date_of_birth":"1979-09-10T00:00:00.000Z","height":1.71,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":601460358,"name":"Mario Leitner","nationality":"AUT","sex":"male","date_of_birth":"1997-02-02T00:00:00.000Z","height":1.77,"weight":75,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":384009312,"name":"Mario Luis Rivera Sanchez","nationality":"CUB","sex":"male","date_of_birth":"1982-10-26T00:00:00.000Z","height":1.8,"weight":92,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":242810977,"name":"Mario Mola","nationality":"ESP","sex":"male","date_of_birth":"1990-02-23T00:00:00.000Z","height":1.78,"weight":63,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":605135800,"name":"Mario Paonessa","nationality":"ITA","sex":"male","date_of_birth":"1990-12-09T00:00:00.000Z","height":1.9,"weight":85,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":506325009,"name":"Mario Todorovic","nationality":"CRO","sex":"male","date_of_birth":"1988-10-11T00:00:00.000Z","height":1.85,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":31095617,"name":"Marion Lepert","nationality":"USA","sex":"female","date_of_birth":"1995-09-18T00:00:00.000Z","height":1.78,"weight":61,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":653316415,"name":"Marios Georgiou","nationality":"CYP","sex":"male","date_of_birth":"1997-11-10T00:00:00.000Z","height":1.67,"weight":60,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":63803519,"name":"Maris Strombergs","nationality":"LAT","sex":"male","date_of_birth":"1987-03-10T00:00:00.000Z","height":1.86,"weight":90,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":"Known as “The Machine”, Latvia's Māris Štrombergs is the only Olympic champion in the men's cycling BMX event – winning gold at both the Beijing Olympics in 2008 and London in 2012. Štrombergs also holds two world titles from 2008 and 2010."},{"id":476920635,"name":"Marisa Dick","nationality":"TTO","sex":"female","date_of_birth":"1997-05-26T00:00:00.000Z","height":1.53,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":935870296,"name":"Marisa Lavanchy","nationality":"SUI","sex":"female","date_of_birth":"1990-01-04T00:00:00.000Z","height":1.7,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":257657428,"name":"Marisol Carratu","nationality":"ARG","sex":"female","date_of_birth":"1986-07-15T00:00:00.000Z","height":1.74,"weight":85,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":792010625,"name":"Marisol Romero","nationality":"MEX","sex":"female","date_of_birth":"1983-01-26T00:00:00.000Z","height":1.55,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":296517803,"name":"Marissa Kurtimah","nationality":"CAN","sex":"female","date_of_birth":"1994-05-25T00:00:00.000Z","height":1.57,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":625766463,"name":"Marit Bouwmeester","nationality":"NED","sex":"female","date_of_birth":"1988-06-17T00:00:00.000Z","height":1.77,"weight":68,"sport":"sailing","gold":1,"silver":0,"bronze":0,"info":null},{"id":780954637,"name":"Marit Malm Frafjord","nationality":"NOR","sex":"female","date_of_birth":"1985-11-25T00:00:00.000Z","height":1.82,"weight":null,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":668487554,"name":"Maritza Guaman","nationality":"ECU","sex":"female","date_of_birth":"1988-01-15T00:00:00.000Z","height":1.55,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":650610457,"name":"Maritza Poncio","nationality":"GUA","sex":"female","date_of_birth":"1994-12-03T00:00:00.000Z","height":1.58,"weight":41,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":628714452,"name":"Marius Cocioran","nationality":"ROU","sex":"male","date_of_birth":"1983-07-10T00:00:00.000Z","height":1.73,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":472041377,"name":"Marius Cozmiuc","nationality":"ROU","sex":"male","date_of_birth":"1992-09-07T00:00:00.000Z","height":1.97,"weight":94,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":585219962,"name":"Marius Grigonis","nationality":"LTU","sex":"male","date_of_birth":"1994-04-26T00:00:00.000Z","height":1.98,"weight":92,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":288653875,"name":"Marius Ionescu","nationality":"ROU","sex":"male","date_of_birth":"1984-12-18T00:00:00.000Z","height":1.7,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":231726077,"name":"Marius Radu","nationality":"ROU","sex":"male","date_of_birth":"1992-06-18T00:00:00.000Z","height":1.94,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":161847988,"name":"Marius Savelskis","nationality":"LTU","sex":"male","date_of_birth":"1994-07-30T00:00:00.000Z","height":1.79,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":278897276,"name":"Marius Ziukas","nationality":"LTU","sex":"male","date_of_birth":"1985-06-29T00:00:00.000Z","height":1.85,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":40046360,"name":"Mariusz Jurkiewicz","nationality":"POL","sex":"male","date_of_birth":"1982-02-03T00:00:00.000Z","height":1.99,"weight":103,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":744484721,"name":"Mariusz Prudel","nationality":"POL","sex":"male","date_of_birth":"1986-01-21T00:00:00.000Z","height":1.92,"weight":83,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":979280840,"name":"Mariya Dmitriyenko","nationality":"KAZ","sex":"female","date_of_birth":"1988-03-24T00:00:00.000Z","height":1.67,"weight":56,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":249371752,"name":"Mariya Korobitskaya","nationality":"KGZ","sex":"female","date_of_birth":"1990-05-10T00:00:00.000Z","height":1.55,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":778874000,"name":"Mariya Koroleva","nationality":"USA","sex":"female","date_of_birth":"1990-04-10T00:00:00.000Z","height":1.66,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":478444296,"name":"Mariya Povkh","nationality":"UKR","sex":"female","date_of_birth":"1989-01-08T00:00:00.000Z","height":1.66,"weight":64,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":954387962,"name":"Mariya Ryemyen","nationality":"UKR","sex":"female","date_of_birth":"1987-08-02T00:00:00.000Z","height":1.71,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":819994350,"name":"Mariya Shatalova","nationality":"UKR","sex":"female","date_of_birth":"1989-03-01T00:00:00.000Z","height":1.69,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":951698977,"name":"Mariya Stadnik","nationality":"AZE","sex":"female","date_of_birth":"1988-06-03T00:00:00.000Z","height":1.57,"weight":48,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":477823690,"name":"Mariya Telushkina","nationality":"KAZ","sex":"female","date_of_birth":"1994-04-03T00:00:00.000Z","height":1.78,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":510987328,"name":"Marjorie Mayans","nationality":"FRA","sex":"female","date_of_birth":"1990-11-17T00:00:00.000Z","height":1.71,"weight":68,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":549331807,"name":"Marjory Nyaumwe","nationality":"ZIM","sex":"female","date_of_birth":"1987-07-10T00:00:00.000Z","height":1.58,"weight":57,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":129571712,"name":"Mark Aldred","nationality":"GBR","sex":"male","date_of_birth":"1987-04-18T00:00:00.000Z","height":1.88,"weight":71,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":251655789,"name":"Mark Bennett","nationality":"GBR","sex":"male","date_of_birth":"1993-02-03T00:00:00.000Z","height":1.83,"weight":89,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":261061286,"name":"Mark Cavendish","nationality":"GBR","sex":"male","date_of_birth":"1985-05-21T00:00:00.000Z","height":1.75,"weight":70,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":968767341,"name":"Mark Dry","nationality":"GBR","sex":"male","date_of_birth":"1987-10-11T00:00:00.000Z","height":1.84,"weight":112,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":718324705,"name":"Mark English","nationality":"IRL","sex":"male","date_of_birth":"1993-03-18T00:00:00.000Z","height":1.87,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":175225943,"name":"Mark Gleghorne","nationality":"GBR","sex":"male","date_of_birth":"1985-05-19T00:00:00.000Z","height":1.8,"weight":82,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":412389237,"name":"Mark Knowles","nationality":"AUS","sex":"male","date_of_birth":"1984-03-10T00:00:00.000Z","height":1.83,"weight":74,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":343466585,"name":"Mark Kyle","nationality":"IRL","sex":"male","date_of_birth":"1973-06-05T00:00:00.000Z","height":1.83,"weight":80,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":53785702,"name":"Mark Oldershaw","nationality":"CAN","sex":"male","date_of_birth":"1983-02-07T00:00:00.000Z","height":1.86,"weight":94,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":44374926,"name":"Mark Overgaard Madsen","nationality":"DEN","sex":"male","date_of_birth":"1984-09-23T00:00:00.000Z","height":1.77,"weight":80,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":324844405,"name":"Mark Papp","nationality":"HUN","sex":"male","date_of_birth":"1994-01-08T00:00:00.000Z","height":1.85,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":855611571,"name":"Mark Pearson","nationality":"CAN","sex":"male","date_of_birth":"1987-06-18T00:00:00.000Z","height":1.81,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":746387093,"name":"Mark Robertson","nationality":"GBR","sex":"male","date_of_birth":"1984-12-30T00:00:00.000Z","height":1.89,"weight":96,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":780309052,"name":"Mark Todd","nationality":"NZL","sex":"male","date_of_birth":"1956-03-01T00:00:00.000Z","height":1.9,"weight":78,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":338059475,"name":"Mark de Jonge","nationality":"CAN","sex":"male","date_of_birth":"1984-02-15T00:00:00.000Z","height":1.8,"weight":91,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":947055071,"name":"Markel Alberdi Sarobe","nationality":"ESP","sex":"male","date_of_birth":"1991-10-22T00:00:00.000Z","height":1.87,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":461844557,"name":"Marketa Slukova","nationality":"CZE","sex":"female","date_of_birth":"1988-06-28T00:00:00.000Z","height":1.8,"weight":68,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":670673572,"name":"Marko Arapovic","nationality":"CRO","sex":"male","date_of_birth":"1996-07-20T00:00:00.000Z","height":2.07,"weight":105,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":587055200,"name":"Marko Bagaric","nationality":"QAT","sex":"male","date_of_birth":"1985-12-31T00:00:00.000Z","height":2.01,"weight":100,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":136688597,"name":"Marko Bezjak","nationality":"SLO","sex":"male","date_of_birth":"1986-06-26T00:00:00.000Z","height":1.84,"weight":87,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":442704681,"name":"Marko Bijac","nationality":"CRO","sex":"male","date_of_birth":"1991-01-12T00:00:00.000Z","height":2.01,"weight":85,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":624346920,"name":"Marko Blazhevski","nationality":"MKD","sex":"male","date_of_birth":"1992-11-10T00:00:00.000Z","height":1.81,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":61318903,"name":"Marko Carrillo","nationality":"PER","sex":"male","date_of_birth":"1988-07-04T00:00:00.000Z","height":1.84,"weight":75,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":177653630,"name":"Marko Kopljar","nationality":"CRO","sex":"male","date_of_birth":"1986-02-12T00:00:00.000Z","height":2.1,"weight":112,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":279090752,"name":"Marko Macan","nationality":"CRO","sex":"male","date_of_birth":"1993-04-26T00:00:00.000Z","height":1.96,"weight":109,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":478905853,"name":"Marko Mamic","nationality":"CRO","sex":"male","date_of_birth":"1994-03-06T00:00:00.000Z","height":2.02,"weight":109,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":341559685,"name":"Marko Marjanovic","nationality":"SRB","sex":"male","date_of_birth":"1985-11-24T00:00:00.000Z","height":1.93,"weight":93,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":951327387,"name":"Marko Novakovic","nationality":"SRB","sex":"male","date_of_birth":"1989-01-04T00:00:00.000Z","height":1.86,"weight":95,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":638559155,"name":"Marko Simonovic","nationality":"SRB","sex":"male","date_of_birth":"1986-05-30T00:00:00.000Z","height":2.03,"weight":96,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":345574422,"name":"Marko Tomicevic","nationality":"SRB","sex":"male","date_of_birth":"1990-04-19T00:00:00.000Z","height":1.74,"weight":80,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":165894715,"name":"Markus Bockermann","nationality":"GER","sex":"male","date_of_birth":"1986-01-14T00:00:00.000Z","height":1.99,"weight":97,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":842346983,"name":"Markus Thormeyer","nationality":"CAN","sex":"male","date_of_birth":"1997-08-25T00:00:00.000Z","height":1.95,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":488345537,"name":"Marleen van Iersel","nationality":"NED","sex":"female","date_of_birth":"1988-01-07T00:00:00.000Z","height":1.78,"weight":68,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":689557957,"name":"Marlene Steinherr","nationality":"GER","sex":"female","date_of_birth":"1985-09-10T00:00:00.000Z","height":1.74,"weight":69,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":349029560,"name":"Marlies Mejias Garcia","nationality":"CUB","sex":"female","date_of_birth":"1992-12-29T00:00:00.000Z","height":1.68,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":786699109,"name":"Marlo Javier Delgado","nationality":"ECU","sex":"male","date_of_birth":"1993-05-06T00:00:00.000Z","height":1.84,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":527228323,"name":"Marloes Keetels","nationality":"NED","sex":"female","date_of_birth":"1993-05-04T00:00:00.000Z","height":1.72,"weight":66,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":484645032,"name":"Marlon Acacio","nationality":"MOZ","sex":"male","date_of_birth":"1982-07-09T00:00:00.000Z","height":1.8,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":461251275,"name":"Maro Jokovic","nationality":"CRO","sex":"male","date_of_birth":"1987-10-01T00:00:00.000Z","height":2.03,"weight":95,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":21035215,"name":"Marouan Chouiref","nationality":"TUN","sex":"male","date_of_birth":"1990-05-27T00:00:00.000Z","height":1.95,"weight":109,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":867476170,"name":"Marouen Maggaiz","nationality":"TUN","sex":"male","date_of_birth":"1983-07-28T00:00:00.000Z","height":1.92,"weight":110,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":983343139,"name":"Maroussia Pare","nationality":"FRA","sex":"female","date_of_birth":"1996-07-18T00:00:00.000Z","height":1.63,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":906005564,"name":"Marquinhos","nationality":"BRA","sex":"male","date_of_birth":"1994-05-14T00:00:00.000Z","height":1.85,"weight":70,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":709840432,"name":"Marrit Steenbergen","nationality":"NED","sex":"female","date_of_birth":"2000-01-11T00:00:00.000Z","height":1.78,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":505440878,"name":"Mart Seim","nationality":"EST","sex":"male","date_of_birth":"1990-10-24T00:00:00.000Z","height":1.85,"weight":149,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":919289341,"name":"Marta","nationality":"BRA","sex":"female","date_of_birth":"1986-02-19T00:00:00.000Z","height":1.62,"weight":56,"sport":"football","gold":0,"silver":0,"bronze":0,"info":"The number 10 and silver medal winner for Brazil at Athens 2004 and Beijing 2008, Marta was voted the best player in the world by FIFA five times in a row (from 2006 to 2010). She has competed in four World Cups, finishing runner-up in 2007."},{"id":159109190,"name":"Marta Bach Pascual","nationality":"ESP","sex":"female","date_of_birth":"1993-02-17T00:00:00.000Z","height":1.76,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":552371572,"name":"Marta Baeza Centurion","nationality":"BRA","sex":"female","date_of_birth":"1992-03-02T00:00:00.000Z","height":1.64,"weight":52,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":817886966,"name":"Marta Gonzalez Crivillers","nationality":"ESP","sex":"female","date_of_birth":"1995-04-09T00:00:00.000Z","height":1.81,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":582411443,"name":"Marta Kharitonova","nationality":"RUS","sex":"female","date_of_birth":"1984-09-26T00:00:00.000Z","height":1.67,"weight":62,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":888086557,"name":"Marta Lopez","nationality":"ESP","sex":"female","date_of_birth":"1990-02-04T00:00:00.000Z","height":1.68,"weight":64,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":740922098,"name":"Marta Mangue","nationality":"ESP","sex":"female","date_of_birth":"1983-04-23T00:00:00.000Z","height":1.7,"weight":75,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":91738730,"name":"Marta Menegatti","nationality":"ITA","sex":"female","date_of_birth":"1990-08-16T00:00:00.000Z","height":1.8,"weight":58,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":854942046,"name":"Marta Milani","nationality":"ITA","sex":"female","date_of_birth":"1987-03-09T00:00:00.000Z","height":1.72,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":876465611,"name":"Marta Onofre","nationality":"POR","sex":"female","date_of_birth":"1991-01-28T00:00:00.000Z","height":1.7,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":165484226,"name":"Marta Pagnini","nationality":"ITA","sex":"female","date_of_birth":"1991-01-21T00:00:00.000Z","height":1.75,"weight":58,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":759213345,"name":"Marta Pen Freitas","nationality":"POR","sex":"female","date_of_birth":"1993-07-31T00:00:00.000Z","height":1.53,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":885028719,"name":"Marta Puda","nationality":"POL","sex":"female","date_of_birth":"1991-01-13T00:00:00.000Z","height":1.72,"weight":59,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":500211600,"name":"Marta Rostoburova","nationality":"UZB","sex":"female","date_of_birth":"1996-03-29T00:00:00.000Z","height":1.63,"weight":56,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":166820643,"name":"Marta Walczykiewicz","nationality":"POL","sex":"female","date_of_birth":"1987-08-01T00:00:00.000Z","height":1.65,"weight":63,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":693968979,"name":"Marta Xargay","nationality":"ESP","sex":"female","date_of_birth":"1990-12-20T00:00:00.000Z","height":1.8,"weight":71,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":783066900,"name":"Marten van Riel","nationality":"BEL","sex":"male","date_of_birth":"1992-12-15T00:00:00.000Z","height":1.83,"weight":64,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":820822830,"name":"Martha Bayona Pineda","nationality":"COL","sex":"female","date_of_birth":"1995-08-12T00:00:00.000Z","height":1.55,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":537064907,"name":"Martha McCabe","nationality":"CAN","sex":"female","date_of_birth":"1989-08-04T00:00:00.000Z","height":1.68,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":186596657,"name":"Marthe Koala","nationality":"BUR","sex":"female","date_of_birth":"1994-03-08T00:00:00.000Z","height":1.77,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":913653914,"name":"Marti Malloy","nationality":"USA","sex":"female","date_of_birth":"1986-06-23T00:00:00.000Z","height":1.61,"weight":58,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":237753405,"name":"Martin Allikvee","nationality":"EST","sex":"male","date_of_birth":"1995-03-21T00:00:00.000Z","height":1.82,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":246553438,"name":"Martin Andres Melconian Alvez","nationality":"URU","sex":"male","date_of_birth":"1990-01-02T00:00:00.000Z","height":1.83,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":693642928,"name":"Martin Bau","nationality":"SLO","sex":"male","date_of_birth":"1994-10-08T00:00:00.000Z","height":1.82,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":305251897,"name":"Martin Benitez","nationality":"ARG","sex":"male","date_of_birth":"1994-06-17T00:00:00.000Z","height":1.75,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":39842194,"name":"Martin Esteban Cuestas","nationality":"URU","sex":"male","date_of_birth":"1986-12-08T00:00:00.000Z","height":1.82,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":759991813,"name":"Martin Fuchs","nationality":"SUI","sex":"male","date_of_birth":"1992-07-13T00:00:00.000Z","height":1.84,"weight":71,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":659392236,"name":"Martin Fuksa","nationality":"CZE","sex":"male","date_of_birth":"1993-04-30T00:00:00.000Z","height":1.8,"weight":83,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":411643054,"name":"Martin Giuffre","nationality":"CAN","sex":"male","date_of_birth":"1990-10-05T00:00:00.000Z","height":1.85,"weight":82,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":358461011,"name":"Martin Haner","nationality":"GER","sex":"male","date_of_birth":"1988-08-27T00:00:00.000Z","height":1.84,"weight":83,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":742548457,"name":"Martin Iosefo","nationality":"USA","sex":"male","date_of_birth":"1990-01-13T00:00:00.000Z","height":1.87,"weight":95,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":275759196,"name":"Martin Kaymer","nationality":"GER","sex":"male","date_of_birth":"1984-12-28T00:00:00.000Z","height":1.84,"weight":76,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":898863862,"name":"Martin Kucera","nationality":"SVK","sex":"male","date_of_birth":"1990-05-10T00:00:00.000Z","height":1.93,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":121446595,"name":"Martin Kupper","nationality":"EST","sex":"male","date_of_birth":"1989-05-31T00:00:00.000Z","height":1.98,"weight":119,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":936041821,"name":"Martin Marinov","nationality":"AUS","sex":"male","date_of_birth":"1967-10-25T00:00:00.000Z","height":1.78,"weight":88,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":803793508,"name":"Martin Michel","nationality":"BOL","sex":"male","date_of_birth":"1994-09-05T00:00:00.000Z","height":1.9,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":483044526,"name":"Martin Naidich","nationality":"ARG","sex":"male","date_of_birth":"1990-12-17T00:00:00.000Z","height":1.85,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":27576453,"name":"Martin Pacek","nationality":"SWE","sex":"male","date_of_birth":"1987-04-28T00:00:00.000Z","height":1.97,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":915011043,"name":"Martin Ramos","nationality":"ARG","sex":"male","date_of_birth":"1991-08-26T00:00:00.000Z","height":1.97,"weight":94,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":842376118,"name":"Martin Sauer","nationality":"GER","sex":"male","date_of_birth":"1982-12-17T00:00:00.000Z","height":1.69,"weight":55,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":916498956,"name":"Martin Schaefer","nationality":"BRA","sex":"male","date_of_birth":"1989-10-18T00:00:00.000Z","height":1.83,"weight":82,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":997372571,"name":"Martin Sinkovic","nationality":"CRO","sex":"male","date_of_birth":"1989-11-10T00:00:00.000Z","height":1.88,"weight":95,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":678966888,"name":"Martin Strobel","nationality":"GER","sex":"male","date_of_birth":"1986-06-05T00:00:00.000Z","height":1.89,"weight":90,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":887718773,"name":"Martin Tistan","nationality":"SVK","sex":"male","date_of_birth":"1992-11-12T00:00:00.000Z","height":1.73,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":134099692,"name":"Martin Wolfram","nationality":"GER","sex":"male","date_of_birth":"1992-01-29T00:00:00.000Z","height":1.64,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":969111501,"name":"Martin Zwicker","nationality":"GER","sex":"male","date_of_birth":"1987-02-27T00:00:00.000Z","height":1.75,"weight":64,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":907069049,"name":"Martina Carraro","nationality":"ITA","sex":"female","date_of_birth":"1993-06-21T00:00:00.000Z","height":1.75,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":765683238,"name":"Martina Cavallero","nationality":"ARG","sex":"female","date_of_birth":"1990-05-07T00:00:00.000Z","height":1.63,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":642385203,"name":"Martina Centofanti","nationality":"ITA","sex":"female","date_of_birth":"1998-05-19T00:00:00.000Z","height":1.7,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":524633511,"name":"Martina Guiggi","nationality":"ITA","sex":"female","date_of_birth":"1984-05-01T00:00:00.000Z","height":1.87,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":213466972,"name":"Martina Hingis","nationality":"SUI","sex":"female","date_of_birth":"1980-09-30T00:00:00.000Z","height":1.7,"weight":59,"sport":"tennis","gold":0,"silver":1,"bronze":0,"info":null},{"id":688040735,"name":"Martina Hrasnova","nationality":"SVK","sex":"female","date_of_birth":"1983-03-21T00:00:00.000Z","height":1.77,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":420210959,"name":"Martina Kohlova","nationality":"SVK","sex":"female","date_of_birth":"1984-11-16T00:00:00.000Z","height":1.69,"weight":68,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":77888504,"name":"Martina Moravcikova","nationality":"CZE","sex":"female","date_of_birth":"1988-08-13T00:00:00.000Z","height":1.74,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":290254894,"name":"Martina Ratej","nationality":"SLO","sex":"female","date_of_birth":"1981-11-02T00:00:00.000Z","height":1.78,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":12278954,"name":"Martina Ritter","nationality":"AUT","sex":"female","date_of_birth":"1982-09-23T00:00:00.000Z","height":1.74,"weight":59,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":670614279,"name":"Martina Rizzelli","nationality":"ITA","sex":"female","date_of_birth":"1998-03-24T00:00:00.000Z","height":1.53,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":190010311,"name":"Martina Strutz","nationality":"GER","sex":"female","date_of_birth":"1981-11-04T00:00:00.000Z","height":1.59,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":761227644,"name":"Martina de Memme","nationality":"ITA","sex":"female","date_of_birth":"1991-08-07T00:00:00.000Z","height":1.75,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":373707575,"name":"Martina van Berkel","nationality":"SUI","sex":"female","date_of_birth":"1989-01-23T00:00:00.000Z","height":1.66,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":984490167,"name":"Martine Grael","nationality":"BRA","sex":"female","date_of_birth":"1991-02-12T00:00:00.000Z","height":1.68,"weight":62,"sport":"sailing","gold":1,"silver":0,"bronze":0,"info":"The daughter of Torben Grael, who won five Olympic medals, Martine inherited his talents. She was world champion in 2014 and took silver at the 2015 Pan American Games in the 49st FX class, together with Kahena Kunze. Martine debuts at Rio 2016."},{"id":395476042,"name":"Martine Smeets","nationality":"NED","sex":"female","date_of_birth":"1990-05-05T00:00:00.000Z","height":1.72,"weight":69,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":917191537,"name":"Martino Goretti","nationality":"ITA","sex":"male","date_of_birth":"1985-09-27T00:00:00.000Z","height":1.86,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":483109753,"name":"Marton Szivos","nationality":"HUN","sex":"male","date_of_birth":"1981-08-19T00:00:00.000Z","height":1.92,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":397414268,"name":"Marton Vamos","nationality":"HUN","sex":"male","date_of_birth":"1992-06-24T00:00:00.000Z","height":2.02,"weight":105,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":410826022,"name":"Marty McDowell","nationality":"NZL","sex":"male","date_of_birth":"1987-01-16T00:00:00.000Z","height":1.84,"weight":85,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":732634662,"name":"Martyn Rooney","nationality":"GBR","sex":"male","date_of_birth":"1987-04-03T00:00:00.000Z","height":1.98,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":472349121,"name":"Martyna Dabrowska","nationality":"POL","sex":"female","date_of_birth":"1994-04-05T00:00:00.000Z","height":1.76,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":300217673,"name":"Martyna Mikolajczak","nationality":"POL","sex":"female","date_of_birth":"1991-05-12T00:00:00.000Z","height":null,"weight":null,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":568668037,"name":"Martyna Trajdos","nationality":"GER","sex":"female","date_of_birth":"1989-04-05T00:00:00.000Z","height":1.71,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":255248240,"name":"Martynas Dziaugys","nationality":"LTU","sex":"male","date_of_birth":"1986-11-08T00:00:00.000Z","height":1.89,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":62434883,"name":"Maru Teferi","nationality":"ISR","sex":"male","date_of_birth":"1992-08-17T00:00:00.000Z","height":1.64,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":674506453,"name":"Marusa Cernjul","nationality":"SLO","sex":"female","date_of_birth":"1992-06-30T00:00:00.000Z","height":1.77,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":615165685,"name":"Marvin Bracy","nationality":"USA","sex":"male","date_of_birth":"1993-12-15T00:00:00.000Z","height":1.76,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":360462839,"name":"Marvin Rene","nationality":"FRA","sex":"male","date_of_birth":"1995-04-11T00:00:00.000Z","height":1.77,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":782811562,"name":"Marwa Amri","nationality":"TUN","sex":"female","date_of_birth":"1989-01-08T00:00:00.000Z","height":1.6,"weight":58,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":897941970,"name":"Marwan Ahmed Aly Morsy Elamrawy","nationality":"EGY","sex":"male","date_of_birth":"1995-04-14T00:00:00.000Z","height":1.94,"weight":93,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":203919226,"name":"Marwan Elkamash","nationality":"EGY","sex":"male","date_of_birth":"1993-11-14T00:00:00.000Z","height":1.83,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":590552399,"name":"Mary Hanna","nationality":"AUS","sex":"female","date_of_birth":"1954-12-01T00:00:00.000Z","height":1.73,"weight":63,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":699555088,"name":"Mary Joy Tabal","nationality":"PHI","sex":"female","date_of_birth":"1989-07-13T00:00:00.000Z","height":1.49,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":161117607,"name":"Mary Opeloge","nationality":"SAM","sex":"female","date_of_birth":"1992-01-24T00:00:00.000Z","height":1.52,"weight":75,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":62290445,"name":"Maryam Usman","nationality":"NGR","sex":"female","date_of_birth":"1990-11-09T00:00:00.000Z","height":1.66,"weight":122,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":104377411,"name":"Maryan Muse","nationality":"SOM","sex":"female","date_of_birth":"1997-01-01T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":387651976,"name":"Maryia Filonchyk","nationality":"BLR","sex":"female","date_of_birth":"1992-01-10T00:00:00.000Z","height":1.89,"weight":74,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":402117502,"name":"Maryia Katsiak","nationality":"BLR","sex":"female","date_of_birth":"1997-03-02T00:00:00.000Z","height":1.67,"weight":45,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":408549485,"name":"Maryia Mamashuk","nationality":"BLR","sex":"female","date_of_birth":"1992-08-31T00:00:00.000Z","height":1.63,"weight":65,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":2923353,"name":"Maryia Papova","nationality":"BLR","sex":"female","date_of_birth":"1994-07-13T00:00:00.000Z","height":1.89,"weight":84,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":536189027,"name":"Maryna Bekh","nationality":"UKR","sex":"female","date_of_birth":"1995-07-18T00:00:00.000Z","height":1.74,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":401157026,"name":"Maryna Cherniak","nationality":"UKR","sex":"female","date_of_birth":"1988-03-26T00:00:00.000Z","height":1.62,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":858452425,"name":"Maryna Damantsevich","nationality":"BLR","sex":"female","date_of_birth":"1984-02-10T00:00:00.000Z","height":1.62,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":884349889,"name":"Maryna Kylypko","nationality":"UKR","sex":"female","date_of_birth":"1995-11-10T00:00:00.000Z","height":1.64,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":951115413,"name":"Maryna Litvinchuk","nationality":"BLR","sex":"female","date_of_birth":"1988-03-12T00:00:00.000Z","height":1.78,"weight":68,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":870110736,"name":"Marzia Caravelli","nationality":"ITA","sex":"female","date_of_birth":"1981-10-23T00:00:00.000Z","height":1.77,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":162278204,"name":"Masakatsu Hikosaka","nationality":"JPN","sex":"male","date_of_birth":"1991-01-18T00:00:00.000Z","height":1.77,"weight":90,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":535827746,"name":"Masaki Ito","nationality":"JPN","sex":"male","date_of_birth":"1988-11-02T00:00:00.000Z","height":1.67,"weight":62,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":976787167,"name":"Masaki Kaneko","nationality":"JPN","sex":"male","date_of_birth":"1992-03-27T00:00:00.000Z","height":1.81,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":106215469,"name":"Masanao Takahashi","nationality":"JPN","sex":"male","date_of_birth":"1982-01-18T00:00:00.000Z","height":1.7,"weight":65,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":219895211,"name":"Masashi Ebinuma","nationality":"JPN","sex":"male","date_of_birth":"1990-02-15T00:00:00.000Z","height":1.7,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":418990510,"name":"Masashi Kamekawa","nationality":"JPN","sex":"male","date_of_birth":"1993-05-28T00:00:00.000Z","height":1.77,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":48986256,"name":"Masato Sakai","nationality":"JPN","sex":"male","date_of_birth":"1995-06-06T00:00:00.000Z","height":1.81,"weight":77,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":801397124,"name":"Masatoshi Kushibiki","nationality":"JPN","sex":"male","date_of_birth":"1993-01-29T00:00:00.000Z","height":1.86,"weight":82,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":566847633,"name":"Masbah Ahmmed","nationality":"BAN","sex":"male","date_of_birth":"1995-03-11T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":143690875,"name":"Mashu Baker","nationality":"JPN","sex":"male","date_of_birth":"1994-09-25T00:00:00.000Z","height":1.78,"weight":90,"sport":"judo","gold":1,"silver":0,"bronze":0,"info":null},{"id":620850796,"name":"Mason Finley","nationality":"USA","sex":"male","date_of_birth":"1990-10-07T00:00:00.000Z","height":2.04,"weight":157,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":20695020,"name":"Massimo Colaci","nationality":"ITA","sex":"male","date_of_birth":"1985-02-21T00:00:00.000Z","height":1.8,"weight":75,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":653938951,"name":"Massimo Fabbrizi","nationality":"ITA","sex":"male","date_of_birth":"1977-08-27T00:00:00.000Z","height":1.77,"weight":110,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":306036644,"name":"Mate Helebrandt","nationality":"HUN","sex":"male","date_of_birth":"1989-01-12T00:00:00.000Z","height":1.74,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":56718574,"name":"Matea Matosevic","nationality":"CRO","sex":"female","date_of_birth":"1989-03-14T00:00:00.000Z","height":1.73,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":48994654,"name":"Matea Samardzic","nationality":"CRO","sex":"female","date_of_birth":"1995-01-17T00:00:00.000Z","height":1.77,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":886265349,"name":"Matej Benus","nationality":"SVK","sex":"male","date_of_birth":"1987-11-02T00:00:00.000Z","height":1.96,"weight":83,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":218621574,"name":"Matej Gaber","nationality":"SLO","sex":"male","date_of_birth":"1991-07-22T00:00:00.000Z","height":1.97,"weight":114,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":798424406,"name":"Matej Mohoric","nationality":"SLO","sex":"male","date_of_birth":"1994-10-19T00:00:00.000Z","height":1.85,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":301324995,"name":"Matej Toth","nationality":"SVK","sex":"male","date_of_birth":"1983-02-10T00:00:00.000Z","height":1.85,"weight":73,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":217355877,"name":"Mateja Simic","nationality":"SLO","sex":"female","date_of_birth":"1980-03-11T00:00:00.000Z","height":1.69,"weight":58,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":454434360,"name":"Matelita Buadromo","nationality":"FIJ","sex":"female","date_of_birth":"1996-01-15T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":987983731,"name":"Mateo Sanz Lanz","nationality":"SUI","sex":"male","date_of_birth":"1993-11-06T00:00:00.000Z","height":1.72,"weight":64,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":254178473,"name":"Mateus Filipe Gregorio Machado","nationality":"BRA","sex":"male","date_of_birth":"1993-07-05T00:00:00.000Z","height":1.85,"weight":104,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":765197800,"name":"Mateusz Bieniek","nationality":"POL","sex":"male","date_of_birth":"1994-04-05T00:00:00.000Z","height":2.1,"weight":98,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":186521340,"name":"Mateusz Biskup","nationality":"POL","sex":"male","date_of_birth":"1994-02-08T00:00:00.000Z","height":1.9,"weight":91,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":610688503,"name":"Mateusz Jachlewski","nationality":"POL","sex":"male","date_of_birth":"1984-12-27T00:00:00.000Z","height":1.84,"weight":88,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":211225504,"name":"Mateusz Kaminski","nationality":"POL","sex":"male","date_of_birth":"1991-05-03T00:00:00.000Z","height":1.89,"weight":83,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":487122930,"name":"Mateusz Kus","nationality":"POL","sex":"male","date_of_birth":"1987-07-14T00:00:00.000Z","height":2,"weight":112,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":652295351,"name":"Mateusz Mika","nationality":"POL","sex":"male","date_of_birth":"1991-01-21T00:00:00.000Z","height":2.06,"weight":86,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":403394715,"name":"Mateusz Przybylko","nationality":"GER","sex":"male","date_of_birth":"1992-03-09T00:00:00.000Z","height":1.95,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":377872587,"name":"Mateusz Sawrymowicz","nationality":"POL","sex":"male","date_of_birth":"1987-04-22T00:00:00.000Z","height":1.85,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":113410495,"name":"Mateusz Wilangowski","nationality":"POL","sex":"male","date_of_birth":"1991-10-07T00:00:00.000Z","height":1.95,"weight":89,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":164089137,"name":"Matevz Skok","nationality":"SLO","sex":"male","date_of_birth":"1986-09-02T00:00:00.000Z","height":1.88,"weight":95,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":657155974,"name":"Matheus Borges","nationality":"BRA","sex":"male","date_of_birth":"1993-07-20T00:00:00.000Z","height":1.76,"weight":78,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":898031635,"name":"Matheus Santana","nationality":"BRA","sex":"male","date_of_birth":"1996-04-02T00:00:00.000Z","height":1.91,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":370742926,"name":"Mathew Belcher","nationality":"AUS","sex":"male","date_of_birth":"1982-09-20T00:00:00.000Z","height":1.73,"weight":62,"sport":"sailing","gold":0,"silver":1,"bronze":0,"info":"Aged 17 at the time, Matthew Belcher was one of the young athletes invited to carry the Olympic flag at the Sydney 2000 closing ceremony. A seven-time world champion, this Australian won gold in the 470 class at London 2012."},{"id":36282420,"name":"Mathews Punza","nationality":"ZAM","sex":"male","date_of_birth":"1988-04-27T00:00:00.000Z","height":1.7,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":477624913,"name":"Mathias Boe","nationality":"DEN","sex":"male","date_of_birth":"1980-07-11T00:00:00.000Z","height":1.85,"weight":75,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":286373803,"name":"Mathias Fluckiger","nationality":"SUI","sex":"male","date_of_birth":"1988-09-27T00:00:00.000Z","height":1.72,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":883500515,"name":"Mathias Hebo Rasmussen","nationality":"DEN","sex":"male","date_of_birth":"1995-08-02T00:00:00.000Z","height":1.9,"weight":84,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":533908779,"name":"Mathias Muller","nationality":"GER","sex":"male","date_of_birth":"1992-04-03T00:00:00.000Z","height":1.87,"weight":80,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":152701098,"name":"Mathias Tulyoongeleni Hamunyela","nationality":"NAM","sex":"male","date_of_birth":"1992-10-15T00:00:00.000Z","height":1.6,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":791421238,"name":"Mathieu Albert Daniel Bauderlique","nationality":"FRA","sex":"male","date_of_birth":"1989-07-03T00:00:00.000Z","height":1.85,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":414004191,"name":"Mathieu Bilodeau","nationality":"CAN","sex":"male","date_of_birth":"1983-11-27T00:00:00.000Z","height":1.85,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":981983025,"name":"Mathieu Grebille","nationality":"FRA","sex":"male","date_of_birth":"1991-10-06T00:00:00.000Z","height":1.98,"weight":100,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":484330084,"name":"Mathieu Lemoine","nationality":"FRA","sex":"male","date_of_birth":"1984-04-17T00:00:00.000Z","height":1.76,"weight":70,"sport":"equestrian","gold":1,"silver":0,"bronze":0,"info":null},{"id":774702640,"name":"Mathieu Peisson","nationality":"FRA","sex":"male","date_of_birth":"1982-09-29T00:00:00.000Z","height":1.85,"weight":102,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":36826829,"name":"Mathilde Andraud","nationality":"FRA","sex":"female","date_of_birth":"1989-04-28T00:00:00.000Z","height":1.73,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":802971626,"name":"Mathilde Cini","nationality":"FRA","sex":"female","date_of_birth":"1994-11-18T00:00:00.000Z","height":1.66,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":48760156,"name":"Mathilde Lamolle","nationality":"FRA","sex":"female","date_of_birth":"1997-04-07T00:00:00.000Z","height":1.67,"weight":58,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":652013285,"name":"Mathilde de Kerangat","nationality":"FRA","sex":"female","date_of_birth":"1991-10-14T00:00:00.000Z","height":1.72,"weight":67,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":746005417,"name":"Mathlynn Sasser","nationality":"MHL","sex":"female","date_of_birth":"1996-12-25T00:00:00.000Z","height":1.58,"weight":57,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":728437436,"name":"Matias Albarracin","nationality":"ARG","sex":"male","date_of_birth":"1979-10-25T00:00:00.000Z","height":1.74,"weight":65,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":322320446,"name":"Matias Buhler","nationality":"SUI","sex":"male","date_of_birth":"1983-01-15T00:00:00.000Z","height":1.76,"weight":77,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":304306143,"name":"Matias Koski","nationality":"FIN","sex":"male","date_of_birth":"1994-05-18T00:00:00.000Z","height":1.95,"weight":93,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":64937045,"name":"Matias Montinho","nationality":"ANG","sex":"male","date_of_birth":"1990-07-15T00:00:00.000Z","height":1.67,"weight":63,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":958190853,"name":"Matias Moroni","nationality":"ARG","sex":"male","date_of_birth":"1991-03-29T00:00:00.000Z","height":1.85,"weight":84,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":482423754,"name":"Matias Paredes","nationality":"ARG","sex":"male","date_of_birth":"1982-02-01T00:00:00.000Z","height":1.76,"weight":74,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":478914190,"name":"Matias Rey","nationality":"ARG","sex":"male","date_of_birth":"1984-12-01T00:00:00.000Z","height":1.78,"weight":72,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":492966481,"name":"Matias Schulz","nationality":"ARG","sex":"male","date_of_birth":"1982-02-12T00:00:00.000Z","height":1.9,"weight":88,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":120488238,"name":"Matias Tudela","nationality":"ESP","sex":"male","date_of_birth":"1984-10-06T00:00:00.000Z","height":1.88,"weight":95,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":931233756,"name":"Matias del Solar","nationality":"CHI","sex":"male","date_of_birth":"1975-11-29T00:00:00.000Z","height":1.84,"weight":87,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":537360256,"name":"Matija Kvasina","nationality":"CRO","sex":"male","date_of_birth":"1981-12-04T00:00:00.000Z","height":1.8,"weight":72,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":706656825,"name":"Matilda Ekholm","nationality":"SWE","sex":"female","date_of_birth":"1982-06-15T00:00:00.000Z","height":1.72,"weight":67,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":403290407,"name":"Matilde Ortiz Reyes","nationality":"ESP","sex":"female","date_of_birth":"1990-09-16T00:00:00.000Z","height":1.74,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":21739330,"name":"Mats Grambusch","nationality":"GER","sex":"male","date_of_birth":"1992-11-04T00:00:00.000Z","height":1.77,"weight":74,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":298706269,"name":"Matt Gohdes","nationality":"AUS","sex":"male","date_of_birth":"1990-05-08T00:00:00.000Z","height":1.8,"weight":80,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":472009304,"name":"Matt Gotrel","nationality":"GBR","sex":"male","date_of_birth":"1989-03-01T00:00:00.000Z","height":1.95,"weight":95,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":935178102,"name":"Matt Hutchins","nationality":"NZL","sex":"male","date_of_birth":"1994-09-19T00:00:00.000Z","height":1.9,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":153631965,"name":"Matt Kuchar","nationality":"USA","sex":"male","date_of_birth":"1978-06-21T00:00:00.000Z","height":1.94,"weight":86,"sport":"golf","gold":0,"silver":0,"bronze":1,"info":null},{"id":984564500,"name":"Matt Langridge","nationality":"GBR","sex":"male","date_of_birth":"1983-05-20T00:00:00.000Z","height":1.94,"weight":93,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":915798442,"name":"Matt Williams","nationality":"AUS","sex":"male","date_of_birth":"1985-05-09T00:00:00.000Z","height":1.78,"weight":72,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":395178195,"name":"Matteo Aicardi","nationality":"ITA","sex":"male","date_of_birth":"1986-04-19T00:00:00.000Z","height":1.92,"weight":102,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":690029131,"name":"Matteo Castaldo","nationality":"ITA","sex":"male","date_of_birth":"1985-12-11T00:00:00.000Z","height":1.88,"weight":86,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":427248664,"name":"Matteo Galvan","nationality":"ITA","sex":"male","date_of_birth":"1988-08-24T00:00:00.000Z","height":1.82,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":381850551,"name":"Matteo Giupponi","nationality":"ITA","sex":"male","date_of_birth":"1988-10-08T00:00:00.000Z","height":1.89,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":38214425,"name":"Matteo Lodo","nationality":"ITA","sex":"male","date_of_birth":"1994-10-25T00:00:00.000Z","height":1.96,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":289265001,"name":"Matteo Manassero","nationality":"ITA","sex":"male","date_of_birth":"1993-04-19T00:00:00.000Z","height":1.83,"weight":79,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":872073653,"name":"Matteo Marconcini","nationality":"ITA","sex":"male","date_of_birth":"1989-08-26T00:00:00.000Z","height":1.85,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":911422793,"name":"Matteo Piano","nationality":"ITA","sex":"male","date_of_birth":"1990-10-24T00:00:00.000Z","height":2.08,"weight":102,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":171065867,"name":"Matteo Rivolta","nationality":"ITA","sex":"male","date_of_birth":"1991-11-16T00:00:00.000Z","height":1.93,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":58032086,"name":"Matteo Stefanini","nationality":"ITA","sex":"male","date_of_birth":"1984-04-29T00:00:00.000Z","height":1.9,"weight":91,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":43202713,"name":"Matthew Abood","nationality":"AUS","sex":"male","date_of_birth":"1986-06-28T00:00:00.000Z","height":1.97,"weight":92,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":99590760,"name":"Matthew Anderson","nationality":"USA","sex":"male","date_of_birth":"1987-04-18T00:00:00.000Z","height":2.02,"weight":100,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":925341714,"name":"Matthew Baranoski","nationality":"USA","sex":"male","date_of_birth":"1993-07-27T00:00:00.000Z","height":1.83,"weight":96,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":730877927,"name":"Matthew Centrowitz","nationality":"USA","sex":"male","date_of_birth":"1989-10-18T00:00:00.000Z","height":1.76,"weight":65,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":71745896,"name":"Matthew Chau","nationality":"AUS","sex":"male","date_of_birth":"1994-11-09T00:00:00.000Z","height":1.85,"weight":77,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":335841832,"name":"Matthew Dawson","nationality":"AUS","sex":"male","date_of_birth":"1994-04-27T00:00:00.000Z","height":1.76,"weight":66,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":496386141,"name":"Matthew Dellavedova","nationality":"AUS","sex":"male","date_of_birth":"1990-09-08T00:00:00.000Z","height":1.91,"weight":89,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":566672226,"name":"Matthew Denny","nationality":"AUS","sex":"male","date_of_birth":"1996-06-02T00:00:00.000Z","height":1.95,"weight":118,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":425434844,"name":"Matthew Duncan Abeysinghe","nationality":"SRI","sex":"male","date_of_birth":"1996-03-19T00:00:00.000Z","height":1.8,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":908655978,"name":"Matthew Emmons","nationality":"USA","sex":"male","date_of_birth":"1981-04-05T00:00:00.000Z","height":1.76,"weight":83,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":986397793,"name":"Matthew Glaetzer","nationality":"AUS","sex":"male","date_of_birth":"1992-08-24T00:00:00.000Z","height":1.9,"weight":86,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":101015451,"name":"Matthew Guest","nationality":"CAN","sex":"male","date_of_birth":"1985-04-26T00:00:00.000Z","height":1.9,"weight":90,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":550707976,"name":"Matthew Hudson-Smith","nationality":"GBR","sex":"male","date_of_birth":"1994-10-26T00:00:00.000Z","height":1.94,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":897031531,"name":"Matthew Hughes","nationality":"CAN","sex":"male","date_of_birth":"1989-08-03T00:00:00.000Z","height":1.8,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":766785466,"name":"Matthew Mark Meyer","nationality":"RSA","sex":"male","date_of_birth":"1998-03-04T00:00:00.000Z","height":1.85,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":475158866,"name":"Matthew McGovern","nationality":"IRL","sex":"male","date_of_birth":"1984-09-20T00:00:00.000Z","height":1.8,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":874367808,"name":"Matthew Miller","nationality":"USA","sex":"male","date_of_birth":"1989-01-13T00:00:00.000Z","height":1.96,"weight":98,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":439268682,"name":"Matthew Sarmento","nationality":"CAN","sex":"male","date_of_birth":"1991-06-23T00:00:00.000Z","height":1.74,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":405824354,"name":"Matthew Stanley","nationality":"NZL","sex":"male","date_of_birth":"1992-01-15T00:00:00.000Z","height":1.98,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":483679471,"name":"Matthew Swann","nationality":"AUS","sex":"male","date_of_birth":"1989-05-16T00:00:00.000Z","height":1.7,"weight":64,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":388169524,"name":"Matthias Buhler","nationality":"GER","sex":"male","date_of_birth":"1986-09-02T00:00:00.000Z","height":1.89,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":554191048,"name":"Matthias Ginter","nationality":"GER","sex":"male","date_of_birth":"1994-01-19T00:00:00.000Z","height":1.9,"weight":88,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":963881256,"name":"Matthias Schmid","nationality":"AUT","sex":"male","date_of_birth":"1980-12-12T00:00:00.000Z","height":1.75,"weight":66,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":719850911,"name":"Matthieu Androdias","nationality":"FRA","sex":"male","date_of_birth":"1990-06-11T00:00:00.000Z","height":1.94,"weight":94,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":74294229,"name":"Matthieu Peche","nationality":"FRA","sex":"male","date_of_birth":"1987-10-07T00:00:00.000Z","height":1.75,"weight":75,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":437683546,"name":"Matthieu Rosset","nationality":"FRA","sex":"male","date_of_birth":"1990-05-26T00:00:00.000Z","height":1.7,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":103170142,"name":"Matthijs Buchli","nationality":"NED","sex":"male","date_of_birth":"1992-12-13T00:00:00.000Z","height":1.88,"weight":90,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":420949330,"name":"Matti Mattsson","nationality":"FIN","sex":"male","date_of_birth":"1993-10-05T00:00:00.000Z","height":1.97,"weight":98,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":499246333,"name":"Mattia Camboni","nationality":"ITA","sex":"male","date_of_birth":"1996-04-26T00:00:00.000Z","height":1.8,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":280493573,"name":"Mattias Andersson","nationality":"SWE","sex":"male","date_of_birth":"1978-03-29T00:00:00.000Z","height":1.86,"weight":95,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":515599241,"name":"Mattias Karlsson","nationality":"SWE","sex":"male","date_of_birth":"1991-09-07T00:00:00.000Z","height":1.91,"weight":88,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":730518978,"name":"Mattias Zachrisson","nationality":"SWE","sex":"male","date_of_birth":"1990-08-22T00:00:00.000Z","height":1.78,"weight":89,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":676985214,"name":"Matus Bubenik","nationality":"SVK","sex":"male","date_of_birth":"1989-11-14T00:00:00.000Z","height":1.97,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":896939838,"name":"Matyas Szabo","nationality":"GER","sex":"male","date_of_birth":"1991-08-19T00:00:00.000Z","height":1.83,"weight":82,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":178284851,"name":"Matylda Kowal","nationality":"POL","sex":"female","date_of_birth":"1989-01-11T00:00:00.000Z","height":1.7,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":431865511,"name":"Maud van der Meer","nationality":"NED","sex":"female","date_of_birth":"1992-05-20T00:00:00.000Z","height":1.78,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":498567900,"name":"Maureen Jelagat Maiyo","nationality":"KEN","sex":"female","date_of_birth":"1985-05-28T00:00:00.000Z","height":1.67,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":322346494,"name":"Maureen Koster","nationality":"NED","sex":"female","date_of_birth":"1992-07-03T00:00:00.000Z","height":1.76,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":237676786,"name":"Mauricio Arteaga","nationality":"ECU","sex":"male","date_of_birth":"1988-08-08T00:00:00.000Z","height":1.77,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":756883817,"name":"Mauricio Borges Almeida Silva","nationality":"BRA","sex":"male","date_of_birth":"1989-02-04T00:00:00.000Z","height":1.99,"weight":99,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":646748093,"name":"Mauricio Luiz de Souza","nationality":"BRA","sex":"male","date_of_birth":"1988-09-29T00:00:00.000Z","height":2.09,"weight":93,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":293694228,"name":"Mauricio Martinez","nationality":"ARG","sex":"male","date_of_birth":"1993-02-20T00:00:00.000Z","height":1.67,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":76978968,"name":"Mauricio Ortega","nationality":"COL","sex":"male","date_of_birth":"1994-08-04T00:00:00.000Z","height":1.8,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":853068624,"name":"Mauro Crenna","nationality":"ITA","sex":"male","date_of_birth":"1991-11-02T00:00:00.000Z","height":1.86,"weight":93,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":574835225,"name":"Mauro Nespoli","nationality":"ITA","sex":"male","date_of_birth":"1987-11-22T00:00:00.000Z","height":1.81,"weight":78,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":167844391,"name":"Mavis Chirandu","nationality":"ZIM","sex":"female","date_of_birth":"1995-01-15T00:00:00.000Z","height":1.57,"weight":53,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":384641451,"name":"Max Christiansen","nationality":"GER","sex":"male","date_of_birth":"1996-09-25T00:00:00.000Z","height":1.85,"weight":84,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":81864285,"name":"Max Esposito","nationality":"AUS","sex":"male","date_of_birth":"1997-06-16T00:00:00.000Z","height":1.74,"weight":64,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":210303328,"name":"Max Hartung","nationality":"GER","sex":"male","date_of_birth":"1989-10-08T00:00:00.000Z","height":1.89,"weight":86,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":89080288,"name":"Max Heinzer","nationality":"SUI","sex":"male","date_of_birth":"1987-08-07T00:00:00.000Z","height":1.78,"weight":77,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":508219874,"name":"Max Hess","nationality":"GER","sex":"male","date_of_birth":"1996-07-13T00:00:00.000Z","height":1.85,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":907301904,"name":"Max Hoff","nationality":"GER","sex":"male","date_of_birth":"1982-09-12T00:00:00.000Z","height":1.97,"weight":95,"sport":"canoe","gold":1,"silver":0,"bronze":0,"info":null},{"id":934682595,"name":"Max Litchfield","nationality":"GBR","sex":"male","date_of_birth":"1995-03-04T00:00:00.000Z","height":1.68,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":832967843,"name":"Max Mirnyi","nationality":"BLR","sex":"male","date_of_birth":"1977-07-06T00:00:00.000Z","height":1.96,"weight":99,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":232790653,"name":"Max Niederlag","nationality":"GER","sex":"male","date_of_birth":"1993-05-05T00:00:00.000Z","height":1.83,"weight":85,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":733043738,"name":"Max Rendschmidt","nationality":"GER","sex":"male","date_of_birth":"1993-12-12T00:00:00.000Z","height":1.86,"weight":90,"sport":"canoe","gold":2,"silver":0,"bronze":0,"info":null},{"id":302494517,"name":"Max Salminen","nationality":"SWE","sex":"male","date_of_birth":"1988-09-22T00:00:00.000Z","height":1.97,"weight":98,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":93066253,"name":"Max Whitlock","nationality":"GBR","sex":"male","date_of_birth":"1993-01-13T00:00:00.000Z","height":1.67,"weight":56,"sport":"gymnastics","gold":2,"silver":0,"bronze":1,"info":null},{"id":386159479,"name":"Maxemillion Kassman","nationality":"PNG","sex":"male","date_of_birth":"1998-07-17T00:00:00.000Z","height":1.75,"weight":64,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":89475411,"name":"Maxim Bouchard","nationality":"CAN","sex":"male","date_of_birth":"1990-09-18T00:00:00.000Z","height":1.8,"weight":71,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":2552703,"name":"Maxim Mikhaylov","nationality":"RUS","sex":"male","date_of_birth":"1988-03-19T00:00:00.000Z","height":2.02,"weight":103,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":567764171,"name":"Maxim Rakov","nationality":"KAZ","sex":"male","date_of_birth":"1986-02-07T00:00:00.000Z","height":1.81,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":429841022,"name":"Maxime Beaumont","nationality":"FRA","sex":"male","date_of_birth":"1982-04-23T00:00:00.000Z","height":1.91,"weight":94,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":690024255,"name":"Maxime Brinck-Croteau","nationality":"CAN","sex":"male","date_of_birth":"1986-03-29T00:00:00.000Z","height":1.77,"weight":78,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":232147471,"name":"Maxime Marotte","nationality":"FRA","sex":"male","date_of_birth":"1986-12-05T00:00:00.000Z","height":1.72,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":162317183,"name":"Maxime Mottet","nationality":"BEL","sex":"male","date_of_birth":"1991-05-17T00:00:00.000Z","height":1.78,"weight":84,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":844686899,"name":"Maximilian Korge","nationality":"GER","sex":"male","date_of_birth":"1994-10-12T00:00:00.000Z","height":1.93,"weight":92,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":887043487,"name":"Maximilian Levy","nationality":"GER","sex":"male","date_of_birth":"1987-06-26T00:00:00.000Z","height":1.82,"weight":87,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":91221039,"name":"Maximilian Meyer","nationality":"GER","sex":"male","date_of_birth":"1995-09-18T00:00:00.000Z","height":1.73,"weight":69,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":718400252,"name":"Maximilian Munski","nationality":"GER","sex":"male","date_of_birth":"1988-01-10T00:00:00.000Z","height":1.95,"weight":96,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":382717900,"name":"Maximilian Planer","nationality":"GER","sex":"male","date_of_birth":"1991-01-28T00:00:00.000Z","height":1.98,"weight":94,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":65092723,"name":"Maximilian Reinelt","nationality":"GER","sex":"male","date_of_birth":"1988-08-24T00:00:00.000Z","height":1.95,"weight":98,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":243609847,"name":"Maximiliano Ariel Richeze","nationality":"ARG","sex":"male","date_of_birth":"1983-03-07T00:00:00.000Z","height":1.77,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":488438622,"name":"Maximilien van Haaster","nationality":"CAN","sex":"male","date_of_birth":"1992-06-19T00:00:00.000Z","height":1.85,"weight":88,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":624320550,"name":"Maximo Gonzalez","nationality":"ARG","sex":"male","date_of_birth":"1983-07-20T00:00:00.000Z","height":1.76,"weight":77,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":781644314,"name":"Maximo Mercedes","nationality":"DOM","sex":"male","date_of_birth":"1988-09-14T00:00:00.000Z","height":1.86,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":812967807,"name":"Maxwell Holt","nationality":"USA","sex":"male","date_of_birth":"1987-03-12T00:00:00.000Z","height":2.05,"weight":90,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":526196879,"name":"Maxwell Lattimer","nationality":"CAN","sex":"male","date_of_birth":"1993-07-14T00:00:00.000Z","height":1.85,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":967402790,"name":"Maya Moore","nationality":"USA","sex":"female","date_of_birth":"1989-06-11T00:00:00.000Z","height":1.83,"weight":79,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":500075689,"name":"Maya Rehberg","nationality":"GER","sex":"female","date_of_birth":"1994-04-28T00:00:00.000Z","height":1.7,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":919598411,"name":"Mayada Sayyad","nationality":"PLE","sex":"female","date_of_birth":"1992-10-26T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":297050524,"name":"Mayara Fier de Moura","nationality":"BRA","sex":"female","date_of_birth":"1986-12-05T00:00:00.000Z","height":1.68,"weight":71,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":341245309,"name":"Maykel Masso","nationality":"CUB","sex":"male","date_of_birth":"1999-05-08T00:00:00.000Z","height":1.74,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":761032254,"name":"Mayobanex de Oleo","nationality":"DOM","sex":"male","date_of_birth":"1993-05-26T00:00:00.000Z","height":1.71,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":135012058,"name":"Mayra Aguiar","nationality":"BRA","sex":"female","date_of_birth":"1991-08-03T00:00:00.000Z","height":1.77,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":750703136,"name":"Mayra Carolina Herrera","nationality":"GUA","sex":"female","date_of_birth":"1988-12-20T00:00:00.000Z","height":1.63,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":179987194,"name":"Mayssa Raquel Pessoa","nationality":"BRA","sex":"female","date_of_birth":"1984-09-11T00:00:00.000Z","height":1.8,"weight":66,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":947011927,"name":"Mayu Hamada","nationality":"JPN","sex":"female","date_of_birth":"1994-01-31T00:00:00.000Z","height":1.74,"weight":57,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":466510848,"name":"Mayumi Ono","nationality":"JPN","sex":"female","date_of_birth":"1984-08-14T00:00:00.000Z","height":1.7,"weight":62,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":110852352,"name":"Mayya Petrova","nationality":"RUS","sex":"female","date_of_birth":"1982-05-26T00:00:00.000Z","height":1.78,"weight":71,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":128985176,"name":"Mazoon Al-Alawi","nationality":"OMA","sex":"female","date_of_birth":"1997-11-14T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":409204459,"name":"McLain Ward","nationality":"USA","sex":"male","date_of_birth":"1975-10-17T00:00:00.000Z","height":1.76,"weight":70,"sport":"equestrian","gold":0,"silver":1,"bronze":0,"info":null},{"id":299427906,"name":"McQuin Baron","nationality":"USA","sex":"male","date_of_birth":"1995-10-27T00:00:00.000Z","height":2.06,"weight":104,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":965246251,"name":"Md Fakhri Ismail","nationality":"BRU","sex":"male","date_of_birth":"1991-03-06T00:00:00.000Z","height":1.6,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":877915055,"name":"Meaghan Benfeito","nationality":"CAN","sex":"female","date_of_birth":"1989-03-02T00:00:00.000Z","height":1.55,"weight":48,"sport":"aquatics","gold":0,"silver":0,"bronze":2,"info":null},{"id":647839865,"name":"Meaghan Volker","nationality":"AUS","sex":"female","date_of_birth":"1990-10-20T00:00:00.000Z","height":null,"weight":null,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":968097436,"name":"Mebrahtom Keflezighi","nationality":"USA","sex":"male","date_of_birth":"1975-05-05T00:00:00.000Z","height":1.66,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":654095521,"name":"Mechiel Versluis","nationality":"NED","sex":"male","date_of_birth":"1987-07-29T00:00:00.000Z","height":1.97,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":702444425,"name":"Megan Guarnier","nationality":"USA","sex":"female","date_of_birth":"1985-05-04T00:00:00.000Z","height":1.63,"weight":54,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":248091988,"name":"Megan Kalmoe","nationality":"USA","sex":"female","date_of_birth":"1983-08-21T00:00:00.000Z","height":1.78,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":158155836,"name":"Megan Lane","nationality":"CAN","sex":"female","date_of_birth":"1991-05-04T00:00:00.000Z","height":1.78,"weight":66,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":338613319,"name":"Megan Lukan","nationality":"CAN","sex":"female","date_of_birth":"1992-02-14T00:00:00.000Z","height":1.7,"weight":58,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":156676980,"name":"Megan Rapinoe","nationality":"USA","sex":"female","date_of_birth":"1985-07-05T00:00:00.000Z","height":1.67,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":350561307,"name":"Megan Simmonds","nationality":"JAM","sex":"female","date_of_birth":"1994-03-18T00:00:00.000Z","height":1.57,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":618204486,"name":"Meghan Klingenberg","nationality":"USA","sex":"female","date_of_birth":"1988-08-02T00:00:00.000Z","height":1.58,"weight":56,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":26643473,"name":"Meghan Musnicki","nationality":"USA","sex":"female","date_of_birth":"1983-02-05T00:00:00.000Z","height":1.83,"weight":73,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":626601674,"name":"Meghan O'Leary","nationality":"USA","sex":"female","date_of_birth":"1984-08-24T00:00:00.000Z","height":1.83,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":86610737,"name":"Megumi Iseda","nationality":"JPN","sex":"female","date_of_birth":"1987-06-30T00:00:00.000Z","height":1.57,"weight":56,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":463812760,"name":"Mehboob Ali","nationality":"PAK","sex":"male","date_of_birth":"1990-04-10T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":44950691,"name":"Mehdi Mahdavi","nationality":"IRI","sex":"male","date_of_birth":"1984-02-13T00:00:00.000Z","height":1.91,"weight":96,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":909022255,"name":"Mehdi Marzouki","nationality":"FRA","sex":"male","date_of_birth":"1987-05-26T00:00:00.000Z","height":1.92,"weight":101,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":211496382,"name":"Mehdy Metella","nationality":"FRA","sex":"male","date_of_birth":"1992-07-17T00:00:00.000Z","height":1.91,"weight":99,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":510649353,"name":"Mehmet Nadir Unal","nationality":"TUR","sex":"male","date_of_birth":"1993-01-13T00:00:00.000Z","height":1.81,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":513851313,"name":"Mehtap Kurnaz","nationality":"TUR","sex":"female","date_of_birth":"1995-05-01T00:00:00.000Z","height":1.6,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":595667372,"name":"Mei Yu Hsiao","nationality":"TPE","sex":"female","date_of_birth":"1985-01-07T00:00:00.000Z","height":1.62,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":508723001,"name":"Meichen Sun","nationality":"CHN","sex":"female","date_of_birth":"1998-11-01T00:00:00.000Z","height":1.75,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":786377606,"name":"Meikayla Moore","nationality":"NZL","sex":"female","date_of_birth":"1996-06-04T00:00:00.000Z","height":1.75,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":742356260,"name":"Meisam Abolfazl Nasiri","nationality":"IRI","sex":"male","date_of_birth":"1989-06-01T00:00:00.000Z","height":1.69,"weight":71,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":531197956,"name":"Meiyu Liang","nationality":"CHN","sex":"female","date_of_birth":"1994-01-08T00:00:00.000Z","height":1.66,"weight":63,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":694559348,"name":"Mekonnen Gebremedhin","nationality":"ETH","sex":"male","date_of_birth":"1988-10-11T00:00:00.000Z","height":1.81,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":279948149,"name":"Melania Costa Schmid","nationality":"ESP","sex":"female","date_of_birth":"1989-04-24T00:00:00.000Z","height":1.79,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":241238603,"name":"Melanie Behringer","nationality":"GER","sex":"female","date_of_birth":"1985-11-18T00:00:00.000Z","height":1.72,"weight":71,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":309505211,"name":"Melanie Henique","nationality":"FRA","sex":"female","date_of_birth":"1992-12-22T00:00:00.000Z","height":1.72,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":234453586,"name":"Melanie Leupolz","nationality":"GER","sex":"female","date_of_birth":"1994-04-14T00:00:00.000Z","height":1.73,"weight":52,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":694013113,"name":"Melanie Margalis","nationality":"USA","sex":"female","date_of_birth":"1991-12-30T00:00:00.000Z","height":1.73,"weight":65,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":142783294,"name":"Melanie McCann","nationality":"CAN","sex":"female","date_of_birth":"1989-10-08T00:00:00.000Z","height":1.73,"weight":58,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":832907922,"name":"Melanie Pfeifer","nationality":"GER","sex":"female","date_of_birth":"1986-08-25T00:00:00.000Z","height":1.67,"weight":54,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":643682523,"name":"Melanie Wilson","nationality":"GBR","sex":"female","date_of_birth":"1984-06-25T00:00:00.000Z","height":1.84,"weight":75,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":734867601,"name":"Melany Hernandez","nationality":"MEX","sex":"female","date_of_birth":"1998-07-26T00:00:00.000Z","height":1.65,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":152354066,"name":"Melek Hu","nationality":"TUR","sex":"female","date_of_birth":"1989-01-27T00:00:00.000Z","height":1.65,"weight":53,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":559761961,"name":"Meli Malani","nationality":"FIJ","sex":"male","date_of_birth":"1996-11-17T00:00:00.000Z","height":null,"weight":94,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":667446420,"name":"Melina Robert-Michon","nationality":"FRA","sex":"female","date_of_birth":"1979-07-18T00:00:00.000Z","height":1.8,"weight":85,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":227958831,"name":"Melinda Geiger","nationality":"ROU","sex":"female","date_of_birth":"1987-03-28T00:00:00.000Z","height":1.77,"weight":69,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":395742388,"name":"Meline Gerard","nationality":"FRA","sex":"female","date_of_birth":"1990-05-30T00:00:00.000Z","height":1.68,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":638389336,"name":"Melisa Gil","nationality":"ARG","sex":"female","date_of_birth":"1984-08-09T00:00:00.000Z","height":1.6,"weight":65,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":314522649,"name":"Melissa Bishop","nationality":"CAN","sex":"female","date_of_birth":"1988-08-05T00:00:00.000Z","height":1.73,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":371776247,"name":"Melissa Boekelman","nationality":"NED","sex":"female","date_of_birth":"1989-05-11T00:00:00.000Z","height":1.76,"weight":87,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":351096848,"name":"Melissa Breen","nationality":"AUS","sex":"female","date_of_birth":"1990-09-17T00:00:00.000Z","height":1.74,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":357241098,"name":"Melissa Gonzalez","nationality":"USA","sex":"female","date_of_birth":"1989-01-24T00:00:00.000Z","height":1.61,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":910455517,"name":"Melissa Hoskins","nationality":"AUS","sex":"female","date_of_birth":"1991-02-24T00:00:00.000Z","height":1.75,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":37881707,"name":"Melissa Mojica","nationality":"PUR","sex":"female","date_of_birth":"1983-12-29T00:00:00.000Z","height":1.78,"weight":82,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":31451946,"name":"Melissa Ortiz","nationality":"COL","sex":"female","date_of_birth":"1990-01-24T00:00:00.000Z","height":1.72,"weight":52,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":424629723,"name":"Melissa Pagnotta","nationality":"CAN","sex":"female","date_of_birth":"1988-09-22T00:00:00.000Z","height":1.8,"weight":64,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":92926686,"name":"Melissa Seidemann","nationality":"USA","sex":"female","date_of_birth":"1990-06-26T00:00:00.000Z","height":1.83,"weight":104,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":283491400,"name":"Melissa Tancredi","nationality":"CAN","sex":"female","date_of_birth":"1981-12-27T00:00:00.000Z","height":1.77,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":388744533,"name":"Melissa Tapper","nationality":"AUS","sex":"female","date_of_birth":"1990-03-01T00:00:00.000Z","height":1.66,"weight":65,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":853786282,"name":"Melissa Wu","nationality":"AUS","sex":"female","date_of_birth":"1992-05-03T00:00:00.000Z","height":1.52,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":242511677,"name":"Melita Abraham","nationality":"CHI","sex":"female","date_of_birth":"1997-07-07T00:00:00.000Z","height":1.7,"weight":62,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":967171979,"name":"Melitina Staniouta","nationality":"BLR","sex":"female","date_of_birth":"1993-11-14T00:00:00.000Z","height":1.73,"weight":53,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":"With three bronze medals in the world championship general rhythmic gymnastics event, Melitina Staniouta, from Belarus, is part of the team that, between 2009 and 2015, came second place five times."},{"id":488010523,"name":"Melker Svard Jacobsson","nationality":"SWE","sex":"male","date_of_birth":"1994-01-08T00:00:00.000Z","height":1.88,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":114894232,"name":"Memo","nationality":"INA","sex":"male","date_of_birth":"1995-01-08T00:00:00.000Z","height":1.92,"weight":88,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":511927027,"name":"Menatalla Karim","nationality":"EGY","sex":"female","date_of_birth":"1995-11-12T00:00:00.000Z","height":1.6,"weight":65,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":958603253,"name":"Meng Wei","nationality":"CHN","sex":"female","date_of_birth":"1989-06-14T00:00:00.000Z","height":1.69,"weight":57,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":715981032,"name":"Menghui Zhu","nationality":"CHN","sex":"female","date_of_birth":"1999-03-23T00:00:00.000Z","height":1.77,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":401470235,"name":"Menglu Ma","nationality":"CHN","sex":"female","date_of_birth":"1997-09-24T00:00:00.000Z","height":1.67,"weight":61,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":271606334,"name":"Mengni Tang","nationality":"CHN","sex":"female","date_of_birth":"1994-04-08T00:00:00.000Z","height":1.69,"weight":59,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":658441949,"name":"Mengqian Ren","nationality":"CHN","sex":"female","date_of_birth":"1993-10-04T00:00:00.000Z","height":1.75,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":899791888,"name":"Mengran Sun","nationality":"CHN","sex":"female","date_of_birth":"1992-07-16T00:00:00.000Z","height":1.95,"weight":83,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":525021516,"name":"Mengxin Sun","nationality":"CHN","sex":"female","date_of_birth":"1993-04-08T00:00:00.000Z","height":1.9,"weight":84,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":304831992,"name":"Mengxue Zhang","nationality":"CHN","sex":"female","date_of_birth":"1991-02-06T00:00:00.000Z","height":1.62,"weight":70,"sport":"shooting","gold":1,"silver":0,"bronze":0,"info":null},{"id":566918843,"name":"Mengyu Wang","nationality":"CHN","sex":"female","date_of_birth":"1992-05-25T00:00:00.000Z","height":1.7,"weight":71,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":469860412,"name":"Mengyu Yu","nationality":"SIN","sex":"female","date_of_birth":"1989-08-18T00:00:00.000Z","height":1.66,"weight":50,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":237464508,"name":"Menzi Masuku","nationality":"RSA","sex":"male","date_of_birth":"1993-04-15T00:00:00.000Z","height":1.69,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":273574012,"name":"Meraf Bahta","nationality":"SWE","sex":"female","date_of_birth":"1989-06-24T00:00:00.000Z","height":1.76,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":337904141,"name":"Mercedes Isabel Perez Tigrero","nationality":"COL","sex":"female","date_of_birth":"1987-08-07T00:00:00.000Z","height":1.57,"weight":63,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":726189235,"name":"Mercy Cherono","nationality":"KEN","sex":"female","date_of_birth":"1991-05-07T00:00:00.000Z","height":null,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":7993281,"name":"Merdan Atayev","nationality":"TKM","sex":"male","date_of_birth":"1995-05-08T00:00:00.000Z","height":1.96,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":12306725,"name":"Meredith Michaels-Beerbaum","nationality":"GER","sex":"female","date_of_birth":"1969-12-26T00:00:00.000Z","height":1.62,"weight":51,"sport":"equestrian","gold":0,"silver":0,"bronze":1,"info":null},{"id":712487973,"name":"Merel Blom","nationality":"NED","sex":"female","date_of_birth":"1986-08-19T00:00:00.000Z","height":1.71,"weight":60,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":757366284,"name":"Merewai Cumu","nationality":"FIJ","sex":"female","date_of_birth":"1997-08-31T00:00:00.000Z","height":1.74,"weight":73,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":905398230,"name":"Merle van Benthem","nationality":"NED","sex":"female","date_of_birth":"1992-12-07T00:00:00.000Z","height":1.7,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":571759273,"name":"Merrill Moses","nationality":"USA","sex":"male","date_of_birth":"1977-08-13T00:00:00.000Z","height":1.91,"weight":97,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":228859028,"name":"Mert Atli","nationality":"TUR","sex":"male","date_of_birth":"1993-07-23T00:00:00.000Z","height":1.91,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":447162714,"name":"Merven Clair","nationality":"MRI","sex":"male","date_of_birth":"1993-07-02T00:00:00.000Z","height":1.78,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":679179495,"name":"Meryem Akdag","nationality":"TUR","sex":"female","date_of_birth":"1992-08-05T00:00:00.000Z","height":1.71,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":746996056,"name":"Meryem Erdogan","nationality":"TUR","sex":"female","date_of_birth":"1990-04-24T00:00:00.000Z","height":1.72,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":795596801,"name":"Messala Merbah","nationality":"ALG","sex":"male","date_of_birth":"1994-07-22T00:00:00.000Z","height":1.78,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":428462407,"name":"Mesud Pezer","nationality":"BIH","sex":"male","date_of_birth":"1994-08-27T00:00:00.000Z","height":1.96,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":334554979,"name":"Mete Gazoz","nationality":"TUR","sex":"male","date_of_birth":"1999-06-08T00:00:00.000Z","height":1.81,"weight":60,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":30835928,"name":"Methkal Abu Drais","nationality":"JOR","sex":"male","date_of_birth":"1983-12-29T00:00:00.000Z","height":1.68,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":478490266,"name":"Mi Gyong Ri","nationality":"PRK","sex":"female","date_of_birth":"1990-09-30T00:00:00.000Z","height":1.65,"weight":56,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":309196317,"name":"Mi Rae Kim","nationality":"PRK","sex":"female","date_of_birth":"2001-04-07T00:00:00.000Z","height":1.5,"weight":40,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":534654032,"name":"Mia Hermansson","nationality":"SWE","sex":"female","date_of_birth":"1992-12-12T00:00:00.000Z","height":1.75,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":585217466,"name":"Miah-Marie Langlois","nationality":"CAN","sex":"female","date_of_birth":"1991-09-21T00:00:00.000Z","height":1.72,"weight":63,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":759154793,"name":"Micah Christenson","nationality":"USA","sex":"male","date_of_birth":"1993-05-08T00:00:00.000Z","height":1.98,"weight":88,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":440955726,"name":"Micha Powell","nationality":"CAN","sex":"female","date_of_birth":"1995-01-12T00:00:00.000Z","height":1.77,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":909720625,"name":"Michael Albasini","nationality":"SUI","sex":"male","date_of_birth":"1980-12-20T00:00:00.000Z","height":1.72,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":828603866,"name":"Michael Alexandre Bodegas","nationality":"ITA","sex":"male","date_of_birth":"1987-05-03T00:00:00.000Z","height":1.92,"weight":102,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":500190525,"name":"Michael Brake","nationality":"NZL","sex":"male","date_of_birth":"1994-10-22T00:00:00.000Z","height":1.87,"weight":91,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":814037531,"name":"Michael Bultheel","nationality":"BEL","sex":"male","date_of_birth":"1986-06-30T00:00:00.000Z","height":1.89,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":992884097,"name":"Michael D'Almeida","nationality":"FRA","sex":"male","date_of_birth":"1987-09-03T00:00:00.000Z","height":1.76,"weight":80,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":969061469,"name":"Michael Damgaard Nielsen","nationality":"DEN","sex":"male","date_of_birth":"1990-03-18T00:00:00.000Z","height":1.92,"weight":92,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":386535330,"name":"Michael Darling","nationality":"IRL","sex":"male","date_of_birth":"1988-07-03T00:00:00.000Z","height":1.7,"weight":65,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":442019186,"name":"Michael Di Santo","nationality":"USA","sex":"male","date_of_birth":"1989-12-10T00:00:00.000Z","height":1.86,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":144352723,"name":"Michael Fuchs","nationality":"GER","sex":"male","date_of_birth":"1982-04-22T00:00:00.000Z","height":1.81,"weight":86,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":253286352,"name":"Michael Gbinije","nationality":"NGR","sex":"male","date_of_birth":"1992-06-05T00:00:00.000Z","height":2.01,"weight":90,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":128789851,"name":"Michael Guigou","nationality":"FRA","sex":"male","date_of_birth":"1982-01-28T00:00:00.000Z","height":1.79,"weight":79,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":563835725,"name":"Michael Hansen","nationality":"DEN","sex":"male","date_of_birth":"1990-02-14T00:00:00.000Z","height":1.82,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":156951365,"name":"Michael Hepburn","nationality":"AUS","sex":"male","date_of_birth":"1991-08-17T00:00:00.000Z","height":1.86,"weight":77,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":746795729,"name":"Michael Hoare","nationality":"GBR","sex":"male","date_of_birth":"1985-11-14T00:00:00.000Z","height":1.76,"weight":77,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":46089311,"name":"Michael Janker","nationality":"GER","sex":"male","date_of_birth":"1992-03-23T00:00:00.000Z","height":1.8,"weight":75,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":360677958,"name":"Michael John Conlan","nationality":"IRL","sex":"male","date_of_birth":"1991-11-19T00:00:00.000Z","height":1.7,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":245131295,"name":"Michael Julian Meyer","nationality":"RSA","sex":"male","date_of_birth":"1992-09-01T00:00:00.000Z","height":1.84,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":878101089,"name":"Michael Jung","nationality":"GER","sex":"male","date_of_birth":"1982-07-31T00:00:00.000Z","height":1.68,"weight":70,"sport":"equestrian","gold":1,"silver":1,"bronze":0,"info":"He received the greatest present one could ask for on his 30th birthday winning two golds at London 2012, in the individual and team eventing competitions. Germany's Michael Jung was the first athlete to win the Olympic, world and European titles."},{"id":415356488,"name":"Michael Kalomiris","nationality":"GRE","sex":"male","date_of_birth":"1986-10-09T00:00:00.000Z","height":1.81,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":753189621,"name":"Michael Maskell","nationality":"BAR","sex":"male","date_of_birth":"1966-11-24T00:00:00.000Z","height":1.75,"weight":114,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":255856000,"name":"Michael Mason","nationality":"CAN","sex":"male","date_of_birth":"1986-09-30T00:00:00.000Z","height":1.86,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":882282575,"name":"Michael Mathieu","nationality":"BAH","sex":"male","date_of_birth":"1984-06-24T00:00:00.000Z","height":1.78,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":359582375,"name":"Michael McPhail","nationality":"USA","sex":"male","date_of_birth":"1981-12-15T00:00:00.000Z","height":1.83,"weight":88,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":876833914,"name":"Michael O,Reilly","nationality":"IRL","sex":"male","date_of_birth":"1993-04-30T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":672059782,"name":"Michael Perez","nationality":"MEX","sex":"male","date_of_birth":"1993-02-14T00:00:00.000Z","height":1.69,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":491565031,"name":"Michael Phelps","nationality":"USA","sex":"male","date_of_birth":"1985-06-30T00:00:00.000Z","height":1.94,"weight":90,"sport":"aquatics","gold":5,"silver":1,"bronze":0,"info":"The USA's Michael Phelps has claimed 22 Olympic medals from three editions, 18 of which were gold, setting the record for medals won. He also has 26 world championship golds and retired from the sport after London 2012, but returns to compete at Rio 2016."},{"id":963798182,"name":"Michael Rimmer","nationality":"GBR","sex":"male","date_of_birth":"1986-02-03T00:00:00.000Z","height":1.82,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":212707556,"name":"Michael Robson","nationality":"IRL","sex":"male","date_of_birth":"1995-04-18T00:00:00.000Z","height":1.75,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":776809154,"name":"Michael Schmid","nationality":"SUI","sex":"male","date_of_birth":"1988-01-02T00:00:00.000Z","height":1.79,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":509141582,"name":"Michael Sean James Nicholson","nationality":"ZIM","sex":"male","date_of_birth":"1973-11-09T00:00:00.000Z","height":1.82,"weight":105,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":719475341,"name":"Michael Shelley","nationality":"AUS","sex":"male","date_of_birth":"1983-10-10T00:00:00.000Z","height":1.83,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":717870725,"name":"Michael Tayler","nationality":"CAN","sex":"male","date_of_birth":"1992-02-06T00:00:00.000Z","height":1.75,"weight":69,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":591796882,"name":"Michael Tinsley","nationality":"USA","sex":"male","date_of_birth":"1984-04-21T00:00:00.000Z","height":1.86,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":868365619,"name":"Michael Umeh","nationality":"NGR","sex":"male","date_of_birth":"1984-09-18T00:00:00.000Z","height":1.87,"weight":88,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":646681270,"name":"Michael Venus","nationality":"NZL","sex":"male","date_of_birth":"1987-10-16T00:00:00.000Z","height":1.92,"weight":84,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":247341718,"name":"Michael Watt","nationality":"IRL","sex":"male","date_of_birth":"1987-04-13T00:00:00.000Z","height":1.78,"weight":79,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":941406525,"name":"Michael Whitaker","nationality":"GBR","sex":"male","date_of_birth":"1960-03-17T00:00:00.000Z","height":1.72,"weight":69,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":871224571,"name":"Michael Woods","nationality":"CAN","sex":"male","date_of_birth":"1986-10-12T00:00:00.000Z","height":1.75,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":542540504,"name":"Michaela Ek","nationality":"SWE","sex":"female","date_of_birth":"1988-02-01T00:00:00.000Z","height":1.74,"weight":68,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":891750964,"name":"Michaela Hruba","nationality":"CZE","sex":"female","date_of_birth":"1998-02-21T00:00:00.000Z","height":1.9,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":504352027,"name":"Michaela Meijer","nationality":"SWE","sex":"female","date_of_birth":"1993-07-30T00:00:00.000Z","height":1.72,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":616439080,"name":"Michaela Metallidou","nationality":"GRE","sex":"female","date_of_birth":"1993-01-23T00:00:00.000Z","height":1.63,"weight":46,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":339385583,"name":"Michail Pateniotis","nationality":"GRE","sex":"male","date_of_birth":"1984-02-05T00:00:00.000Z","height":1.8,"weight":74,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":35167157,"name":"Michal Balner","nationality":"CZE","sex":"male","date_of_birth":"1982-09-12T00:00:00.000Z","height":1.91,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":479154630,"name":"Michal Daszek","nationality":"POL","sex":"male","date_of_birth":"1992-06-27T00:00:00.000Z","height":1.82,"weight":88,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":513183631,"name":"Michal Golas","nationality":"POL","sex":"male","date_of_birth":"1984-04-29T00:00:00.000Z","height":1.8,"weight":66,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":715508816,"name":"Michal Haratyk","nationality":"POL","sex":"male","date_of_birth":"1992-04-10T00:00:00.000Z","height":1.94,"weight":135,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":831920477,"name":"Michal Izdinsky","nationality":"FRA","sex":"male","date_of_birth":"1992-07-23T00:00:00.000Z","height":1.78,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":903235278,"name":"Michal Jurecki","nationality":"POL","sex":"male","date_of_birth":"1984-10-27T00:00:00.000Z","height":1.98,"weight":111,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":441671788,"name":"Michal Kubiak","nationality":"POL","sex":"male","date_of_birth":"1988-02-23T00:00:00.000Z","height":1.91,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":902138771,"name":"Michal Kudla","nationality":"POL","sex":"male","date_of_birth":"1997-10-17T00:00:00.000Z","height":1.88,"weight":90,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":223037038,"name":"Michal Kwiatkowski","nationality":"POL","sex":"male","date_of_birth":"1990-06-02T00:00:00.000Z","height":1.76,"weight":66,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":491450653,"name":"Michal Pietrzak","nationality":"POL","sex":"male","date_of_birth":"1989-04-03T00:00:00.000Z","height":1.85,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":921968213,"name":"Michal Smolen","nationality":"USA","sex":"male","date_of_birth":"1993-09-13T00:00:00.000Z","height":1.81,"weight":70,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":38283369,"name":"Michal Szpakowski","nationality":"POL","sex":"male","date_of_birth":"1989-04-23T00:00:00.000Z","height":1.95,"weight":103,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":360956359,"name":"Michal Szyba","nationality":"POL","sex":"male","date_of_birth":"1988-03-18T00:00:00.000Z","height":1.96,"weight":97,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":663753553,"name":"Micheen Barbara Thornycroft","nationality":"ZIM","sex":"female","date_of_birth":"1987-06-26T00:00:00.000Z","height":1.75,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":297451205,"name":"Michel Borges","nationality":"BRA","sex":"male","date_of_birth":"1991-06-16T00:00:00.000Z","height":1.82,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":397244117,"name":"Michel Torneus","nationality":"SWE","sex":"male","date_of_birth":"1986-05-26T00:00:00.000Z","height":1.84,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":954819684,"name":"Michele Benedetti","nationality":"ITA","sex":"male","date_of_birth":"1984-12-17T00:00:00.000Z","height":1.74,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":473802345,"name":"Michele Santucci","nationality":"ITA","sex":"male","date_of_birth":"1989-05-30T00:00:00.000Z","height":1.88,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":760953520,"name":"Michele Scartezzini","nationality":"ITA","sex":"male","date_of_birth":"1992-01-10T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":970855976,"name":"Michelle Carter","nationality":"USA","sex":"female","date_of_birth":"1985-10-12T00:00:00.000Z","height":1.76,"weight":136,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":829005830,"name":"Michelle Coleman","nationality":"SWE","sex":"female","date_of_birth":"1993-10-31T00:00:00.000Z","height":1.86,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":959543328,"name":"Michelle Cristina Fazzari","nationality":"CAN","sex":"female","date_of_birth":"1987-07-10T00:00:00.000Z","height":1.73,"weight":58,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":794770350,"name":"Michelle Finn","nationality":"IRL","sex":"female","date_of_birth":"1989-12-16T00:00:00.000Z","height":1.52,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":694416814,"name":"Michelle Goos","nationality":"NED","sex":"female","date_of_birth":"1989-12-27T00:00:00.000Z","height":1.78,"weight":62,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":900638495,"name":"Michelle Heyman","nationality":"AUS","sex":"female","date_of_birth":"1988-07-04T00:00:00.000Z","height":1.78,"weight":66,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":822214721,"name":"Michelle Jenneke","nationality":"AUS","sex":"female","date_of_birth":"1993-06-23T00:00:00.000Z","height":1.72,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":801535491,"name":"Michelle Kasold","nationality":"USA","sex":"female","date_of_birth":"1987-05-26T00:00:00.000Z","height":1.61,"weight":53,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":628031032,"name":"Michelle Koh","nationality":"MAS","sex":"female","date_of_birth":"1990-09-30T00:00:00.000Z","height":1.7,"weight":70,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":827836935,"name":"Michelle Li","nationality":"CAN","sex":"female","date_of_birth":"1991-11-03T00:00:00.000Z","height":1.72,"weight":66,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":949879254,"name":"Michelle Pearson","nationality":"BER","sex":"female","date_of_birth":"1991-04-16T00:00:00.000Z","height":1.77,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":24450560,"name":"Michelle Plouffe","nationality":"CAN","sex":"female","date_of_birth":"1992-09-15T00:00:00.000Z","height":1.9,"weight":82,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":190326446,"name":"Michelle Vittese","nationality":"USA","sex":"female","date_of_birth":"1989-12-06T00:00:00.000Z","height":1.61,"weight":57,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":987215853,"name":"Michelle Vorster","nationality":"NAM","sex":"female","date_of_birth":"1978-09-12T00:00:00.000Z","height":1.67,"weight":57,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":360738649,"name":"Michelle Weber","nationality":"RSA","sex":"female","date_of_birth":"1996-09-28T00:00:00.000Z","height":1.66,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":876460837,"name":"Michelle Williams","nationality":"CAN","sex":"female","date_of_birth":"1991-01-02T00:00:00.000Z","height":1.7,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":283186204,"name":"Michelle van der Pols","nationality":"NED","sex":"female","date_of_birth":"1989-01-06T00:00:00.000Z","height":1.72,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":133448411,"name":"Michelle-Lee Ahye","nationality":"TTO","sex":"female","date_of_birth":"1992-04-10T00:00:00.000Z","height":1.6,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":478258348,"name":"Mick Clohissey","nationality":"IRL","sex":"male","date_of_birth":"1986-01-13T00:00:00.000Z","height":1.8,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":814967349,"name":"Mickael Gelabale","nationality":"FRA","sex":"male","date_of_birth":"1983-05-22T00:00:00.000Z","height":2.01,"weight":90,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":348230526,"name":"Mickael Marteau","nationality":"FRA","sex":"male","date_of_birth":"1992-09-28T00:00:00.000Z","height":1.79,"weight":86,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":770839524,"name":"Mickael-Meba Zeze","nationality":"FRA","sex":"male","date_of_birth":"1994-05-19T00:00:00.000Z","height":1.75,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":75146232,"name":"Mie Nakashima","nationality":"JPN","sex":"female","date_of_birth":"1986-06-18T00:00:00.000Z","height":1.6,"weight":52,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":926621084,"name":"Mie Nielsen","nationality":"DEN","sex":"female","date_of_birth":"1996-09-25T00:00:00.000Z","height":1.85,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":521050855,"name":"Mieke Kroger","nationality":"GER","sex":"female","date_of_birth":"1993-07-18T00:00:00.000Z","height":1.81,"weight":78,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":124498151,"name":"Miesinnei Mercy Genesis","nationality":"NGR","sex":"female","date_of_birth":"1997-09-20T00:00:00.000Z","height":1.52,"weight":48,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":585358336,"name":"Mifuyu Koide","nationality":"JPN","sex":"female","date_of_birth":"1995-12-21T00:00:00.000Z","height":1.65,"weight":59,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":5116041,"name":"Migran Arutyunyan","nationality":"ARM","sex":"male","date_of_birth":"1989-03-25T00:00:00.000Z","height":1.66,"weight":67,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":127831066,"name":"Miguel Alvarino Garcia","nationality":"ESP","sex":"male","date_of_birth":"1994-05-31T00:00:00.000Z","height":1.8,"weight":84,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":149765178,"name":"Miguel Angel Almachi","nationality":"ECU","sex":"male","date_of_birth":"1985-05-02T00:00:00.000Z","height":1.65,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":397125199,"name":"Miguel Angel Lopez","nationality":"ESP","sex":"male","date_of_birth":"1988-07-03T00:00:00.000Z","height":1.81,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":323518925,"name":"Miguel Angel Lopez Castro","nationality":"CUB","sex":"male","date_of_birth":"1997-03-25T00:00:00.000Z","height":1.89,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":280398491,"name":"Miguel Angel Lopez Moreno","nationality":"COL","sex":"male","date_of_birth":"1994-02-04T00:00:00.000Z","height":1.7,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":937294944,"name":"Miguel Arraiolos","nationality":"POR","sex":"male","date_of_birth":"1988-07-12T00:00:00.000Z","height":1.73,"weight":62,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":792866236,"name":"Miguel Borja","nationality":"COL","sex":"male","date_of_birth":"1993-01-26T00:00:00.000Z","height":1.82,"weight":84,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":604365100,"name":"Miguel Carvalho","nationality":"POR","sex":"male","date_of_birth":"1994-09-02T00:00:00.000Z","height":1.86,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":57899480,"name":"Miguel Delas","nationality":"ESP","sex":"male","date_of_birth":"1984-04-13T00:00:00.000Z","height":1.7,"weight":72,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":308381513,"name":"Miguel Duran Navia","nationality":"ESP","sex":"male","date_of_birth":"1995-09-02T00:00:00.000Z","height":1.93,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":36249566,"name":"Miguel Ferrera","nationality":"HON","sex":"male","date_of_birth":"1981-05-25T00:00:00.000Z","height":1.8,"weight":80,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":491799396,"name":"Miguel Francis","nationality":"ANT","sex":"male","date_of_birth":"1995-03-28T00:00:00.000Z","height":1.92,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":558930917,"name":"Miguel Marriaga","nationality":"VEN","sex":"male","date_of_birth":"1984-06-06T00:00:00.000Z","height":2.06,"weight":118,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":390736343,"name":"Miguel Martinez Palacio","nationality":"CUB","sex":"male","date_of_birth":"1991-03-23T00:00:00.000Z","height":1.7,"weight":66,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":464051241,"name":"Miguel Mena","nationality":"NCA","sex":"male","date_of_birth":"1997-07-07T00:00:00.000Z","height":1.76,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":703973257,"name":"Miguel Murillo","nationality":"CRC","sex":"male","date_of_birth":"1993-09-29T00:00:00.000Z","height":1.73,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":656749782,"name":"Miguel Ortiz Canavate Ozeki","nationality":"ESP","sex":"male","date_of_birth":"1991-02-19T00:00:00.000Z","height":1.89,"weight":89,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":185068275,"name":"Miguel Ruiz","nationality":"VEN","sex":"male","date_of_birth":"1990-12-20T00:00:00.000Z","height":2.02,"weight":104,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":430176512,"name":"Miguel Tabuena","nationality":"PHI","sex":"male","date_of_birth":"1994-10-13T00:00:00.000Z","height":1.74,"weight":66,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":658229421,"name":"Miguel Ubeto Aponte","nationality":"VEN","sex":"male","date_of_birth":"1976-09-02T00:00:00.000Z","height":1.68,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":309781378,"name":"Miguel Valente","nationality":"BRA","sex":"male","date_of_birth":"1993-07-16T00:00:00.000Z","height":1.76,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":887734626,"name":"Miguel-Angel Reyes-Varela","nationality":"MEX","sex":"male","date_of_birth":"1987-06-21T00:00:00.000Z","height":1.74,"weight":74,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":41587201,"name":"Miha Zarabec","nationality":"SLO","sex":"male","date_of_birth":"1991-10-12T00:00:00.000Z","height":1.77,"weight":77,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":623311312,"name":"Mihael Zgank","nationality":"SLO","sex":"male","date_of_birth":"1994-02-01T00:00:00.000Z","height":1.81,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":992573561,"name":"Mihaela Maevska","nationality":"BUL","sex":"female","date_of_birth":"1990-10-04T00:00:00.000Z","height":1.72,"weight":53,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":450996043,"name":"Mihaela Petrila","nationality":"ROU","sex":"female","date_of_birth":"1991-05-07T00:00:00.000Z","height":1.9,"weight":74,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":81613069,"name":"Mihai Nistor","nationality":"ROU","sex":"male","date_of_birth":"1990-11-05T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":467928578,"name":"Mihail Anastasakis","nationality":"GRE","sex":"male","date_of_birth":"1994-12-03T00:00:00.000Z","height":1.84,"weight":102,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":752147956,"name":"Mihail Dudas","nationality":"SRB","sex":"male","date_of_birth":"1989-11-01T00:00:00.000Z","height":1.84,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":175275854,"name":"Mihail Krassilov","nationality":"KAZ","sex":"male","date_of_birth":"1990-03-05T00:00:00.000Z","height":1.83,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":4843017,"name":"Mihail Petrov Ganev","nationality":"BUL","sex":"male","date_of_birth":"1985-01-05T00:00:00.000Z","height":1.72,"weight":92,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":369995646,"name":"Mihajlo Ceprkalo","nationality":"BIH","sex":"male","date_of_birth":"1999-06-09T00:00:00.000Z","height":1.72,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":830196213,"name":"Miho Takahashi","nationality":"JPN","sex":"female","date_of_birth":"1992-12-01T00:00:00.000Z","height":1.61,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":231091970,"name":"Miho Teramura","nationality":"JPN","sex":"female","date_of_birth":"1994-09-27T00:00:00.000Z","height":1.65,"weight":53,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":569747933,"name":"Miho Yoshioka","nationality":"JPN","sex":"female","date_of_birth":"1990-08-27T00:00:00.000Z","height":1.77,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":218617298,"name":"Mihyun Park","nationality":"KOR","sex":"female","date_of_birth":"1986-01-26T00:00:00.000Z","height":1.6,"weight":63,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":659143143,"name":"Mijain Lopez Nunez","nationality":"CUB","sex":"male","date_of_birth":"1982-08-20T00:00:00.000Z","height":1.98,"weight":130,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":"The biggest name in Greco-Roman wrestling, in the Americas, Cuba's Mijaín López won gold in the up to 120kg class at Beijing 2008 and London 2012 – in addition to holding five world and four Pan American titles."},{"id":427135506,"name":"Mika Kurihara","nationality":"JPN","sex":"female","date_of_birth":"1989-05-14T00:00:00.000Z","height":1.76,"weight":68,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":945541721,"name":"Mikael Appelgren","nationality":"SWE","sex":"male","date_of_birth":"1989-09-06T00:00:00.000Z","height":1.91,"weight":103,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":629406000,"name":"Mikael Ishak","nationality":"SWE","sex":"male","date_of_birth":"1993-03-31T00:00:00.000Z","height":1.84,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":2710032,"name":"Mikaela Joslin Mayer","nationality":"USA","sex":"female","date_of_birth":"1990-07-04T00:00:00.000Z","height":1.76,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":878544662,"name":"Mikalai Sharlap","nationality":"BLR","sex":"male","date_of_birth":"1994-03-30T00:00:00.000Z","height":1.98,"weight":103,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":166082362,"name":"Mike Dawson","nationality":"NZL","sex":"male","date_of_birth":"1986-10-15T00:00:00.000Z","height":1.83,"weight":75,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":281525534,"name":"Mike Hartfield","nationality":"USA","sex":"male","date_of_birth":"1990-03-29T00:00:00.000Z","height":1.91,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":302902046,"name":"Mike Hixon","nationality":"USA","sex":"male","date_of_birth":"1994-07-16T00:00:00.000Z","height":1.73,"weight":68,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":999394723,"name":"Mike Mokamba Nyang'au","nationality":"KEN","sex":"male","date_of_birth":"1994-08-28T00:00:00.000Z","height":1.7,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":716059894,"name":"Mike Rodgers","nationality":"USA","sex":"male","date_of_birth":"1985-04-24T00:00:00.000Z","height":1.76,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":929371856,"name":"Mikel Schreuders","nationality":"ARU","sex":"male","date_of_birth":"1998-09-21T00:00:00.000Z","height":1.89,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":627661082,"name":"Mikel Thomas","nationality":"TTO","sex":"male","date_of_birth":"1987-11-23T00:00:00.000Z","height":1.7,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":109189780,"name":"Mikhail Dauhaliavets","nationality":"BLR","sex":"male","date_of_birth":"1990-05-18T00:00:00.000Z","height":1.77,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":217263774,"name":"Mikhail Dovgalyuk","nationality":"RUS","sex":"male","date_of_birth":"1995-06-03T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":138028765,"name":"Mikhail Koudinov","nationality":"NZL","sex":"male","date_of_birth":"1991-06-23T00:00:00.000Z","height":1.6,"weight":59,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":666617738,"name":"Mikhail Kuznetsov","nationality":"RUS","sex":"male","date_of_birth":"1985-05-14T00:00:00.000Z","height":1.71,"weight":72,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":161664881,"name":"Mikhail Puliaev","nationality":"RUS","sex":"male","date_of_birth":"1987-06-22T00:00:00.000Z","height":1.66,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":775068064,"name":"Miki Uchida","nationality":"JPN","sex":"female","date_of_birth":"1995-02-21T00:00:00.000Z","height":1.73,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":861670470,"name":"Mikiko Andoh","nationality":"JPN","sex":"female","date_of_birth":"1992-09-30T00:00:00.000Z","height":1.55,"weight":58,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":832567924,"name":"Mikita Tsirkun","nationality":"BLR","sex":"male","date_of_birth":"1997-03-24T00:00:00.000Z","height":1.84,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":386269278,"name":"Mikita Tsmyh","nationality":"BLR","sex":"male","date_of_birth":"1997-04-15T00:00:00.000Z","height":1.9,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":178113839,"name":"Mikkel Hansen","nationality":"DEN","sex":"male","date_of_birth":"1987-10-22T00:00:00.000Z","height":1.96,"weight":98,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":342879718,"name":"Mikko Ilonen","nationality":"FIN","sex":"male","date_of_birth":"1979-12-18T00:00:00.000Z","height":1.87,"weight":81,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":172389499,"name":"Miklos Cirjenics","nationality":"HUN","sex":"male","date_of_birth":"1990-03-11T00:00:00.000Z","height":1.9,"weight":105,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":848330802,"name":"Miklos Srp","nationality":"HUN","sex":"male","date_of_birth":"1993-03-06T00:00:00.000Z","height":2,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":814553840,"name":"Miklos Tatrai","nationality":"HUN","sex":"male","date_of_birth":"1986-09-19T00:00:00.000Z","height":1.83,"weight":96,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":535398234,"name":"Miklos Ungvari","nationality":"HUN","sex":"male","date_of_birth":"1980-10-15T00:00:00.000Z","height":1.76,"weight":76,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":518737451,"name":"Mikola Milchev","nationality":"UKR","sex":"male","date_of_birth":"1967-11-03T00:00:00.000Z","height":1.8,"weight":80,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":67855529,"name":"Mikolaj Burda","nationality":"POL","sex":"male","date_of_birth":"1982-07-08T00:00:00.000Z","height":1.92,"weight":98,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":220680579,"name":"Miku Tashiro","nationality":"JPN","sex":"female","date_of_birth":"1994-04-07T00:00:00.000Z","height":1.63,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":817880722,"name":"Milad Beigi Harchegani","nationality":"AZE","sex":"male","date_of_birth":"1991-03-01T00:00:00.000Z","height":1.97,"weight":80,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":305207237,"name":"Milad Ebadipour Ghara H.","nationality":"IRI","sex":"male","date_of_birth":"1993-10-17T00:00:00.000Z","height":1.96,"weight":78,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":825689633,"name":"Milagro Mena","nationality":"CRC","sex":"female","date_of_birth":"1993-04-30T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":588122554,"name":"Milan Aleksic","nationality":"SRB","sex":"male","date_of_birth":"1986-05-13T00:00:00.000Z","height":1.93,"weight":96,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":34031810,"name":"Milan Macvan","nationality":"SRB","sex":"male","date_of_birth":"1989-11-16T00:00:00.000Z","height":2.05,"weight":107,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":994546507,"name":"Milan Ristic","nationality":"SRB","sex":"male","date_of_birth":"1991-08-08T00:00:00.000Z","height":1.87,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":812447465,"name":"Milan Trajkovic","nationality":"CYP","sex":"male","date_of_birth":"1992-09-17T00:00:00.000Z","height":1.87,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":39526304,"name":"Milana Dadasheva","nationality":"RUS","sex":"female","date_of_birth":"1995-02-20T00:00:00.000Z","height":1.65,"weight":48,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":997943868,"name":"Milda Valciukaite","nationality":"LTU","sex":"female","date_of_birth":"1994-05-24T00:00:00.000Z","height":1.76,"weight":66,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":757771656,"name":"Mildrey Pineda","nationality":"COL","sex":"female","date_of_birth":"1989-10-01T00:00:00.000Z","height":1.64,"weight":54,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":816442333,"name":"Milena Raicevic","nationality":"MNE","sex":"female","date_of_birth":"1990-03-12T00:00:00.000Z","height":1.77,"weight":71,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":627051763,"name":"Milena Rasic","nationality":"SRB","sex":"female","date_of_birth":"1990-10-25T00:00:00.000Z","height":1.91,"weight":72,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":930041912,"name":"Milenko Sebic","nationality":"SRB","sex":"male","date_of_birth":"1984-12-30T00:00:00.000Z","height":1.97,"weight":95,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":162979267,"name":"Milenko Zoric","nationality":"SRB","sex":"male","date_of_birth":"1989-04-02T00:00:00.000Z","height":1.79,"weight":73,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":689604423,"name":"Miles Chamley-Watson","nationality":"USA","sex":"male","date_of_birth":"1989-12-03T00:00:00.000Z","height":1.94,"weight":79,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":669028913,"name":"Miles Ukaoma","nationality":"NGR","sex":"male","date_of_birth":"1992-07-21T00:00:00.000Z","height":1.86,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":696295930,"name":"Milica Dabovic","nationality":"SRB","sex":"female","date_of_birth":"1982-02-16T00:00:00.000Z","height":1.73,"weight":63,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":545251812,"name":"Milica Mandic","nationality":"SRB","sex":"female","date_of_birth":"1991-12-06T00:00:00.000Z","height":1.8,"weight":72,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":294142,"name":"Milica Starovic","nationality":"SRB","sex":"female","date_of_birth":"1988-05-19T00:00:00.000Z","height":1.76,"weight":74,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":939197606,"name":"Militsa Mircheva","nationality":"BUL","sex":"female","date_of_birth":"1994-05-24T00:00:00.000Z","height":1.65,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":745870544,"name":"Milivoj Dukic","nationality":"MNE","sex":"male","date_of_birth":"1993-03-26T00:00:00.000Z","height":1.85,"weight":83,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":263697348,"name":"Milko Olavi Tokola","nationality":"FIN","sex":"male","date_of_birth":"1992-10-10T00:00:00.000Z","height":1.63,"weight":85,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":806789845,"name":"Milly Clark","nationality":"AUS","sex":"female","date_of_birth":"1989-03-01T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":543042822,"name":"Milos Cuk","nationality":"SRB","sex":"male","date_of_birth":"1990-12-21T00:00:00.000Z","height":1.91,"weight":91,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":824446870,"name":"Milos Scepanovic","nationality":"MNE","sex":"male","date_of_birth":"1982-10-09T00:00:00.000Z","height":1.85,"weight":86,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":696058975,"name":"Milos Teodosic","nationality":"SRB","sex":"male","date_of_birth":"1987-03-19T00:00:00.000Z","height":1.95,"weight":90,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":434422235,"name":"Milos Vasic","nationality":"SRB","sex":"male","date_of_birth":"1991-01-10T00:00:00.000Z","height":1.96,"weight":94,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":619216736,"name":"Milosz Jankowski","nationality":"POL","sex":"male","date_of_birth":"1990-01-17T00:00:00.000Z","height":1.93,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":392630546,"name":"Miloud Rahmani","nationality":"ALG","sex":"male","date_of_birth":"1982-12-30T00:00:00.000Z","height":1.78,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":923155291,"name":"Miloud Rebiai","nationality":"ALG","sex":"male","date_of_birth":"1993-12-12T00:00:00.000Z","height":1.7,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":917223658,"name":"Miltiadis Tentoglou","nationality":"GRE","sex":"male","date_of_birth":"1998-03-18T00:00:00.000Z","height":1.85,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":939168667,"name":"Milutin Stefanovic","nationality":"SRB","sex":"male","date_of_birth":"1985-01-23T00:00:00.000Z","height":1.8,"weight":74,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":94698500,"name":"Mima Ito","nationality":"JPN","sex":"female","date_of_birth":"2000-10-21T00:00:00.000Z","height":1.5,"weight":45,"sport":"table tennis","gold":0,"silver":0,"bronze":1,"info":null},{"id":730531395,"name":"Mimi Belete","nationality":"BRN","sex":"female","date_of_birth":"1988-06-09T00:00:00.000Z","height":1.69,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":299491184,"name":"Mimi Nikolova Hristova","nationality":"BUL","sex":"female","date_of_birth":"1993-07-19T00:00:00.000Z","height":1.63,"weight":58,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":956895312,"name":"Mimosa Jallow","nationality":"FIN","sex":"female","date_of_birth":"1994-06-17T00:00:00.000Z","height":1.76,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":84728158,"name":"Min Zhang","nationality":"CHN","sex":"female","date_of_birth":"1993-06-20T00:00:00.000Z","height":1.8,"weight":84,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":879015845,"name":"Min Zhou","nationality":"CHN","sex":"female","date_of_birth":"1997-12-16T00:00:00.000Z","height":1.72,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":682581945,"name":"Minami Itahashi","nationality":"JPN","sex":"female","date_of_birth":"2000-01-28T00:00:00.000Z","height":1.5,"weight":47,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":454894249,"name":"Minami Shimizu","nationality":"JPN","sex":"female","date_of_birth":"1993-07-14T00:00:00.000Z","height":1.58,"weight":53,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":352623895,"name":"Mindaugas Griskonis","nationality":"LTU","sex":"male","date_of_birth":"1986-01-17T00:00:00.000Z","height":1.9,"weight":92,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":790457754,"name":"Mindaugas Kuzminskas","nationality":"LTU","sex":"male","date_of_birth":"1989-10-19T00:00:00.000Z","height":2.04,"weight":100,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":489620720,"name":"Ming Tai Chan","nationality":"HKG","sex":"male","date_of_birth":"1995-01-30T00:00:00.000Z","height":1.75,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":405125709,"name":"Ming-Yen Tsai","nationality":"TPE","sex":"male","date_of_birth":"1996-01-07T00:00:00.000Z","height":1.67,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":44722504,"name":"Minggang Zhao","nationality":"CHN","sex":"male","date_of_birth":"1988-05-30T00:00:00.000Z","height":1.85,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":142526569,"name":"Minhal Sohail","nationality":"PAK","sex":"female","date_of_birth":"1995-01-03T00:00:00.000Z","height":1.59,"weight":63,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":40888029,"name":"Minjee Lee","nationality":"AUS","sex":"female","date_of_birth":"1996-05-27T00:00:00.000Z","height":1.65,"weight":60,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":695744582,"name":"Minjeong Kim","nationality":"KOR","sex":"female","date_of_birth":"1988-08-08T00:00:00.000Z","height":1.79,"weight":95,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":55604401,"name":"Minjung Kim","nationality":"KOR","sex":"female","date_of_birth":"1997-03-26T00:00:00.000Z","height":1.6,"weight":50,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":353713812,"name":"Mink van der Weerden","nationality":"NED","sex":"male","date_of_birth":"1988-10-19T00:00:00.000Z","height":1.78,"weight":83,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":504800343,"name":"Minkyu Choi","nationality":"KOR","sex":"male","date_of_birth":"1992-08-31T00:00:00.000Z","height":1.84,"weight":84,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":995871061,"name":"Minna Nikkanen","nationality":"FIN","sex":"female","date_of_birth":"1988-04-09T00:00:00.000Z","height":1.69,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":215136501,"name":"Minsoo Park","nationality":"KOR","sex":"male","date_of_birth":"1994-11-21T00:00:00.000Z","height":1.63,"weight":null,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":575636398,"name":"Minsu Kang","nationality":"KOR","sex":"male","date_of_birth":"1986-03-31T00:00:00.000Z","height":1.73,"weight":76,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":800631700,"name":"Mintae Kim","nationality":"KOR","sex":"male","date_of_birth":"1993-11-26T00:00:00.000Z","height":1.87,"weight":78,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":875570651,"name":"Minxia Wu","nationality":"CHN","sex":"female","date_of_birth":"1985-11-10T00:00:00.000Z","height":1.67,"weight":53,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":989837218,"name":"Mio Yamanaka","nationality":"JPN","sex":"female","date_of_birth":"1995-10-27T00:00:00.000Z","height":1.57,"weight":56,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":646593349,"name":"Mir Saeid Marouflakrani","nationality":"IRI","sex":"male","date_of_birth":"1985-10-20T00:00:00.000Z","height":1.89,"weight":81,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":254218441,"name":"Mira Park","nationality":"KOR","sex":"female","date_of_birth":"1987-04-20T00:00:00.000Z","height":1.73,"weight":66,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":793097599,"name":"Mira Potkonen","nationality":"FIN","sex":"female","date_of_birth":"1980-11-17T00:00:00.000Z","height":1.65,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":700649053,"name":"Mirali Sharipov","nationality":"UZB","sex":"male","date_of_birth":"1987-10-30T00:00:00.000Z","height":1.73,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":419020833,"name":"Miranda Ayim","nationality":"CAN","sex":"female","date_of_birth":"1988-05-06T00:00:00.000Z","height":1.9,"weight":72,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":329752486,"name":"Miranda Giambelli","nationality":"AUS","sex":"female","date_of_birth":"1992-05-22T00:00:00.000Z","height":1.69,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":589013959,"name":"Miranda Melville","nationality":"USA","sex":"female","date_of_birth":"1989-03-20T00:00:00.000Z","height":1.58,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":539312354,"name":"Mirco Pruijser","nationality":"NED","sex":"male","date_of_birth":"1989-08-11T00:00:00.000Z","height":1.94,"weight":87,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":16778625,"name":"Mirco Scarantino","nationality":"ITA","sex":"male","date_of_birth":"1995-01-16T00:00:00.000Z","height":1.66,"weight":56,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":837308127,"name":"Mireia Belmonte Garcia","nationality":"ESP","sex":"female","date_of_birth":"1990-11-10T00:00:00.000Z","height":1.7,"weight":59,"sport":"aquatics","gold":1,"silver":0,"bronze":1,"info":null},{"id":146069322,"name":"Mirela Demireva","nationality":"BUL","sex":"female","date_of_birth":"1989-09-28T00:00:00.000Z","height":1.8,"weight":58,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":164294275,"name":"Miri Alatrash","nationality":"PLE","sex":"female","date_of_birth":"1994-06-27T00:00:00.000Z","height":1.7,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":95824314,"name":"Miriam Casillas Garcia","nationality":"ESP","sex":"female","date_of_birth":"1992-06-24T00:00:00.000Z","height":1.64,"weight":52,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":638255791,"name":"Miriam Nagl","nationality":"BRA","sex":"female","date_of_birth":"1981-01-22T00:00:00.000Z","height":1.72,"weight":63,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":929012474,"name":"Miriam Welte","nationality":"GER","sex":"female","date_of_birth":"1986-12-09T00:00:00.000Z","height":1.71,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":1578040,"name":"Mirna Ortiz","nationality":"GUA","sex":"female","date_of_birth":"1987-02-28T00:00:00.000Z","height":1.58,"weight":42,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":232798946,"name":"Miro Bilan","nationality":"CRO","sex":"male","date_of_birth":"1989-07-21T00:00:00.000Z","height":2.13,"weight":121,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":69797437,"name":"Miroslav Kirchev","nationality":"BUL","sex":"male","date_of_birth":"1990-06-12T00:00:00.000Z","height":1.86,"weight":78,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":727165956,"name":"Miroslav Raduljica","nationality":"SRB","sex":"male","date_of_birth":"1988-01-05T00:00:00.000Z","height":2.13,"weight":130,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":702761980,"name":"Miroslav Vrastil","nationality":"CZE","sex":"male","date_of_birth":"1982-10-17T00:00:00.000Z","height":1.84,"weight":83,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":237763343,"name":"Miroslava Topinkova Knapkova","nationality":"CZE","sex":"female","date_of_birth":"1980-09-19T00:00:00.000Z","height":1.81,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":28185060,"name":"Miroslaw Zietarski","nationality":"POL","sex":"male","date_of_birth":"1993-03-09T00:00:00.000Z","height":1.9,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":508919033,"name":"Mirsamad Pourseyedigolakhour","nationality":"IRI","sex":"male","date_of_birth":"1985-10-15T00:00:00.000Z","height":1.8,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":515513440,"name":"Miryam Roper","nationality":"GER","sex":"female","date_of_birth":"1982-06-26T00:00:00.000Z","height":1.65,"weight":59,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":824109825,"name":"Mirza Basic","nationality":"BIH","sex":"male","date_of_birth":"1991-07-12T00:00:00.000Z","height":1.87,"weight":85,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":401258599,"name":"Misael Uziel Rodriguez","nationality":"MEX","sex":"male","date_of_birth":"1994-04-07T00:00:00.000Z","height":1.78,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":446490717,"name":"Misaki Doi","nationality":"JPN","sex":"female","date_of_birth":"1991-04-29T00:00:00.000Z","height":1.59,"weight":52,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":719250032,"name":"Misaki Matsutomo","nationality":"JPN","sex":"female","date_of_birth":"1992-02-08T00:00:00.000Z","height":1.6,"weight":50,"sport":"badminton","gold":1,"silver":0,"bronze":0,"info":null},{"id":387566065,"name":"Misaki Onishi","nationality":"JPN","sex":"female","date_of_birth":"1985-02-24T00:00:00.000Z","height":1.64,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":779502274,"name":"Misaki Yamaguchi","nationality":"JPN","sex":"female","date_of_birth":"1990-01-20T00:00:00.000Z","height":1.65,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":958405399,"name":"Misato Nakamura","nationality":"JPN","sex":"female","date_of_birth":"1989-04-28T00:00:00.000Z","height":1.57,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":355342299,"name":"Misha Aloian","nationality":"RUS","sex":"male","date_of_birth":"1988-08-23T00:00:00.000Z","height":1.65,"weight":null,"sport":"boxing","gold":0,"silver":1,"bronze":0,"info":null},{"id":787920390,"name":"Misha Zilberman","nationality":"ISR","sex":"male","date_of_birth":"1989-01-30T00:00:00.000Z","height":1.71,"weight":61,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":460301568,"name":"Missy Franklin","nationality":"USA","sex":"female","date_of_birth":"1995-05-10T00:00:00.000Z","height":1.88,"weight":77,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":"At London 2012, Missy Franklin surprised the world by winning five medals: four golds and one bronze. Not to mention, she also set two new world records. The \"Missile\", as she is known, has won 11 world titles."},{"id":240018946,"name":"Misun Choi","nationality":"KOR","sex":"female","date_of_birth":"1996-07-01T00:00:00.000Z","height":1.68,"weight":53,"sport":"archery","gold":1,"silver":0,"bronze":0,"info":null},{"id":396364855,"name":"Mitch Dielemans","nationality":"NED","sex":"male","date_of_birth":"1993-01-06T00:00:00.000Z","height":1.86,"weight":75,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":858784147,"name":"Mitch Emery","nationality":"AUS","sex":"male","date_of_birth":"1990-09-27T00:00:00.000Z","height":1.85,"weight":89,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":481579548,"name":"Mitchel Steenman","nationality":"NED","sex":"male","date_of_birth":"1984-06-17T00:00:00.000Z","height":2.01,"weight":94,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":852265607,"name":"Mitchell Iles-Crevatin","nationality":"AUS","sex":"male","date_of_birth":"1999-03-25T00:00:00.000Z","height":1.78,"weight":null,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":248884983,"name":"Mitchell Larkin","nationality":"AUS","sex":"male","date_of_birth":"1993-07-09T00:00:00.000Z","height":1.87,"weight":72,"sport":"aquatics","gold":0,"silver":1,"bronze":1,"info":null},{"id":882242965,"name":"Mitko Tsenov","nationality":"BUL","sex":"male","date_of_birth":"1993-06-13T00:00:00.000Z","height":1.85,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":211027286,"name":"Mitsuaki Shiga","nationality":"JPN","sex":"male","date_of_birth":"1991-09-16T00:00:00.000Z","height":1.77,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":478951301,"name":"Miyu Nagaoka","nationality":"JPN","sex":"female","date_of_birth":"1991-07-25T00:00:00.000Z","height":1.79,"weight":68,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":267807948,"name":"Miyuki Nakagawa","nationality":"JPN","sex":"female","date_of_birth":"1986-12-20T00:00:00.000Z","height":1.61,"weight":53,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":224192302,"name":"Miyuki Uehara","nationality":"JPN","sex":"female","date_of_birth":"1995-11-22T00:00:00.000Z","height":1.54,"weight":39,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":238146440,"name":"Mladan JANOVIC","nationality":"MNE","sex":"male","date_of_birth":"1984-06-11T00:00:00.000Z","height":1.8,"weight":97,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":803073046,"name":"Mo Zhang","nationality":"CAN","sex":"female","date_of_birth":"1989-01-17T00:00:00.000Z","height":1.73,"weight":57,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":716769230,"name":"Moacir Zimmermann","nationality":"BRA","sex":"male","date_of_birth":"1983-12-30T00:00:00.000Z","height":1.84,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":177889659,"name":"Mobolade Ajomale","nationality":"CAN","sex":"male","date_of_birth":"1995-08-31T00:00:00.000Z","height":1.8,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":30183396,"name":"Moeko Nagaoka","nationality":"JPN","sex":"female","date_of_birth":"1993-12-29T00:00:00.000Z","height":1.77,"weight":73,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":446613849,"name":"Mohab Ishak","nationality":"EGY","sex":"male","date_of_birth":"1997-03-21T00:00:00.000Z","height":1.72,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":810751335,"name":"Mohamad Kasem","nationality":"SYR","sex":"male","date_of_birth":"1993-10-03T00:00:00.000Z","height":1.72,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":812147248,"name":"Mohamed Abdelaal","nationality":"EGY","sex":"male","date_of_birth":"1990-07-23T00:00:00.000Z","height":1.75,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":597913544,"name":"Mohamed Abdeldjalil Bourguieg","nationality":"ALG","sex":"male","date_of_birth":"1996-08-31T00:00:00.000Z","height":1.55,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":836418464,"name":"Mohamed Alaa Hashem","nationality":"EGY","sex":"male","date_of_birth":"1988-01-23T00:00:00.000Z","height":1.78,"weight":75,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":414844442,"name":"Mohamed Ali Bhar","nationality":"TUN","sex":"male","date_of_birth":"1989-09-17T00:00:00.000Z","height":1.8,"weight":82,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":300150573,"name":"Mohamed Ali Mrabet","nationality":"TUN","sex":"male","date_of_birth":"1990-01-01T00:00:00.000Z","height":1.82,"weight":84,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":803678104,"name":"Mohamed Aly Zaghloul Mohamed","nationality":"EGY","sex":"male","date_of_birth":"1993-08-31T00:00:00.000Z","height":1.65,"weight":86,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":583592517,"name":"Mohamed Amer","nationality":"EGY","sex":"male","date_of_birth":"1997-12-18T00:00:00.000Z","height":1.99,"weight":80,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":452585583,"name":"Mohamed Amer","nationality":"EGY","sex":"male","date_of_birth":"1987-12-12T00:00:00.000Z","height":1.86,"weight":72,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":150604584,"name":"Mohamed Andhumdine Nazlati","nationality":"COM","sex":"female","date_of_birth":"1997-12-20T00:00:00.000Z","height":1.6,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":148746639,"name":"Mohamed Arafet Naceur","nationality":"TUN","sex":"male","date_of_birth":"1988-11-04T00:00:00.000Z","height":1.9,"weight":76,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":509599615,"name":"Mohamed Ayoub Ferjani","nationality":"TUN","sex":"male","date_of_birth":"1986-07-27T00:00:00.000Z","height":1.75,"weight":75,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":219235142,"name":"Mohamed Daud Mohamed","nationality":"SOM","sex":"male","date_of_birth":"1996-03-01T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":310689410,"name":"Mohamed Elhadi Elkawisah","nationality":"LBA","sex":"male","date_of_birth":"1987-03-08T00:00:00.000Z","height":null,"weight":null,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":956253727,"name":"Mohamed Essam","nationality":"EGY","sex":"male","date_of_birth":"1994-12-06T00:00:00.000Z","height":1.8,"weight":74,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":302433626,"name":"Mohamed Farah","nationality":"GBR","sex":"male","date_of_birth":"1983-03-23T00:00:00.000Z","height":1.75,"weight":58,"sport":"athletics","gold":2,"silver":0,"bronze":0,"info":"After winning gold in the 5000m and 10,000m at his home Olympics in London 2012, Great Britain´s Mo Farah showed his prowess in these events once again by taking gold in the same races at the 2013 and 2015 World Championships."},{"id":464902728,"name":"Mohamed Flissi","nationality":"ALG","sex":"male","date_of_birth":"1990-02-13T00:00:00.000Z","height":1.74,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":662693282,"name":"Mohamed Hamout","nationality":"MAR","sex":"male","date_of_birth":"1993-12-11T00:00:00.000Z","height":1.67,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":189738440,"name":"Mohamed Hamza","nationality":"EGY","sex":"male","date_of_birth":"2000-09-11T00:00:00.000Z","height":1.72,"weight":62,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":653185102,"name":"Mohamed Hesham Elbassiouny","nationality":"EGY","sex":"male","date_of_birth":"1990-05-10T00:00:00.000Z","height":1.84,"weight":75,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":173845600,"name":"Mohamed Hrezi","nationality":"LBA","sex":"male","date_of_birth":"1991-10-28T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":53291565,"name":"Mohamed Hussein","nationality":"EGY","sex":"male","date_of_birth":"1991-09-10T00:00:00.000Z","height":1.88,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":705810811,"name":"Mohamed Ibrahim Ramadan","nationality":"EGY","sex":"male","date_of_birth":"1984-03-07T00:00:00.000Z","height":1.87,"weight":89,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":606398332,"name":"Mohamed Ismail Ibrahim","nationality":"DJI","sex":"male","date_of_birth":"1997-01-01T00:00:00.000Z","height":1.7,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":777542037,"name":"Mohamed Jilani Maaref","nationality":"TUN","sex":"male","date_of_birth":"1991-10-27T00:00:00.000Z","height":1.92,"weight":100,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":438310446,"name":"Mohamed Lamine Dansoko","nationality":"GUI","sex":"male","date_of_birth":"1998-03-15T00:00:00.000Z","height":1.81,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":726944048,"name":"Mohamed Mahmoud","nationality":"EGY","sex":"male","date_of_birth":"1989-11-21T00:00:00.000Z","height":1.65,"weight":77,"sport":"weightlifting","gold":0,"silver":0,"bronze":1,"info":null},{"id":927181230,"name":"Mohamed Mamdouh Shebib","nationality":"EGY","sex":"male","date_of_birth":"1989-04-01T00:00:00.000Z","height":1.86,"weight":85,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":608771921,"name":"Mohamed Masoud","nationality":"EGY","sex":"male","date_of_birth":"1994-05-01T00:00:00.000Z","height":2.11,"weight":105,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":422177442,"name":"Mohamed Mohyeldin","nationality":"EGY","sex":"male","date_of_birth":"1991-10-01T00:00:00.000Z","height":1.7,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":463171596,"name":"Mohamed Ramah","nationality":"MAR","sex":"male","date_of_birth":"1986-01-02T00:00:00.000Z","height":1.86,"weight":102,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":407211801,"name":"Mohamed Saadaoui","nationality":"TUN","sex":"male","date_of_birth":"1995-05-11T00:00:00.000Z","height":1.76,"weight":86,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":109252911,"name":"Mohamed Sbihi","nationality":"GBR","sex":"male","date_of_birth":"1988-03-27T00:00:00.000Z","height":2.02,"weight":110,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":385884277,"name":"Mohamed Sghaier","nationality":"TUN","sex":"male","date_of_birth":"1988-07-18T00:00:00.000Z","height":1.85,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":645636204,"name":"Mohamed Soussi","nationality":"TUN","sex":"male","date_of_birth":"1993-01-17T00:00:00.000Z","height":1.94,"weight":98,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":307662595,"name":"Mohamed Taieb","nationality":"TUN","sex":"male","date_of_birth":"1996-10-15T00:00:00.000Z","height":1.87,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":823399635,"name":"Mohamed Thakil","nationality":"EGY","sex":"male","date_of_birth":"1986-07-12T00:00:00.000Z","height":1.84,"weight":71,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":514503427,"name":"Mohammad Ahsan","nationality":"INA","sex":"male","date_of_birth":"1987-09-07T00:00:00.000Z","height":1.73,"weight":72,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":653470021,"name":"Mohammad Arzandeh","nationality":"IRI","sex":"male","date_of_birth":"1987-10-30T00:00:00.000Z","height":1.89,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":855226703,"name":"Mohammad Mahfizur Rahman","nationality":"BAN","sex":"male","date_of_birth":"1993-05-15T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":663027391,"name":"Mohammad Sanad","nationality":"EGY","sex":"male","date_of_birth":"1991-01-16T00:00:00.000Z","height":1.84,"weight":78,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":289057786,"name":"Mohammad Tawfiq Bakhshi","nationality":"AFG","sex":"male","date_of_birth":"1986-03-11T00:00:00.000Z","height":1.81,"weight":99,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":175246089,"name":"Mohammadjafar Moradi","nationality":"IRI","sex":"male","date_of_birth":"1990-04-10T00:00:00.000Z","height":1.69,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":545080658,"name":"Mohammadreza Barari","nationality":"IRI","sex":"male","date_of_birth":"1988-03-31T00:00:00.000Z","height":1.8,"weight":105,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":416345678,"name":"Mohammed Abukhousa","nationality":"PLE","sex":"male","date_of_birth":"1992-12-30T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":926792518,"name":"Mohammed Ahmed","nationality":"CAN","sex":"male","date_of_birth":"1991-01-05T00:00:00.000Z","height":1.82,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":404954189,"name":"Mohammed Al-Khafaji","nationality":"IRQ","sex":"male","date_of_birth":"1994-02-20T00:00:00.000Z","height":1.81,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":597431856,"name":"Mohammed Aman","nationality":"ETH","sex":"male","date_of_birth":"1994-01-10T00:00:00.000Z","height":1.65,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":690873472,"name":"Mohammed Amine Tayeb","nationality":"ALG","sex":"male","date_of_birth":"1985-09-28T00:00:00.000Z","height":1.9,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":207078605,"name":"Mohammed Arjaoui","nationality":"MAR","sex":"male","date_of_birth":"1987-06-06T00:00:00.000Z","height":1.86,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":955962862,"name":"Mohammed Benkablia","nationality":"ALG","sex":"male","date_of_birth":"1993-02-02T00:00:00.000Z","height":1.8,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":268626951,"name":"Mohammed Benkhemassa","nationality":"ALG","sex":"male","date_of_birth":"1993-06-28T00:00:00.000Z","height":1.6,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":963049864,"name":"Mohammed Hameed","nationality":"IRQ","sex":"male","date_of_birth":"1993-01-24T00:00:00.000Z","height":1.85,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":104121143,"name":"Mohammed Maan","nationality":"IRQ","sex":"male","date_of_birth":"1994-07-10T00:00:00.000Z","height":1.85,"weight":78,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":200493972,"name":"Mohammed Rabii","nationality":"MAR","sex":"male","date_of_birth":"1993-07-13T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":984836225,"name":"Mohammed Rageh","nationality":"YEM","sex":"male","date_of_birth":"1998-01-01T00:00:00.000Z","height":1.69,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":106274200,"name":"Mohanad Abdulraheem","nationality":"IRQ","sex":"male","date_of_birth":"1993-09-22T00:00:00.000Z","height":1.84,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":582863169,"name":"Mohsen Al Duhaylib","nationality":"KSA","sex":"male","date_of_birth":"1994-05-01T00:00:00.000Z","height":1.63,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":412108690,"name":"Moises Daniel Hernandez Encarnacion","nationality":"DOM","sex":"male","date_of_birth":"1993-03-22T00:00:00.000Z","height":1.91,"weight":79,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":282645376,"name":"Moises Duque","nationality":"BRA","sex":"male","date_of_birth":"1988-12-21T00:00:00.000Z","height":1.73,"weight":75,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":974378104,"name":"Mojtaba Abedini","nationality":"IRI","sex":"male","date_of_birth":"1984-08-11T00:00:00.000Z","height":1.8,"weight":83,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":790224130,"name":"Mojtaba Mirzajanpour M.","nationality":"IRI","sex":"male","date_of_birth":"1991-10-07T00:00:00.000Z","height":2.05,"weight":88,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":421422970,"name":"Molly Goodman","nationality":"AUS","sex":"female","date_of_birth":"1993-02-19T00:00:00.000Z","height":null,"weight":null,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":942675571,"name":"Molly Hannis","nationality":"USA","sex":"female","date_of_birth":"1992-03-13T00:00:00.000Z","height":1.71,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":509619259,"name":"Molly Huddle","nationality":"USA","sex":"female","date_of_birth":"1984-08-31T00:00:00.000Z","height":1.66,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":736619678,"name":"Molly Meech","nationality":"NZL","sex":"female","date_of_birth":"1993-03-31T00:00:00.000Z","height":1.78,"weight":74,"sport":"sailing","gold":0,"silver":1,"bronze":0,"info":null},{"id":770966520,"name":"Molly Renshaw","nationality":"GBR","sex":"female","date_of_birth":"1996-05-06T00:00:00.000Z","height":1.76,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":146611617,"name":"Mona Shaito","nationality":"LIB","sex":"female","date_of_birth":"1994-05-12T00:00:00.000Z","height":1.52,"weight":52,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":330073847,"name":"Monica","nationality":"BRA","sex":"female","date_of_birth":"1987-04-21T00:00:00.000Z","height":1.68,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":465263667,"name":"Monica Aksamit","nationality":"USA","sex":"female","date_of_birth":"1990-02-18T00:00:00.000Z","height":1.83,"weight":74,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":2092982,"name":"Monica Brennan","nationality":"AUS","sex":"female","date_of_birth":"1994-01-22T00:00:00.000Z","height":1.75,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":964250913,"name":"Monica Lanz","nationality":"NED","sex":"female","date_of_birth":"1991-04-08T00:00:00.000Z","height":1.8,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":251342702,"name":"Monica Niculescu","nationality":"ROU","sex":"female","date_of_birth":"1987-09-25T00:00:00.000Z","height":1.68,"weight":64,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":839524352,"name":"Monica Patricia Dominguez Lara","nationality":"MEX","sex":"female","date_of_birth":"1988-03-05T00:00:00.000Z","height":1.62,"weight":57,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":9559634,"name":"Monica Pimentel Rodriguez","nationality":"ARU","sex":"female","date_of_birth":"1989-01-07T00:00:00.000Z","height":1.71,"weight":49,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":490158961,"name":"Monica Puig","nationality":"PUR","sex":"female","date_of_birth":"1993-09-27T00:00:00.000Z","height":1.68,"weight":64,"sport":"tennis","gold":1,"silver":0,"bronze":0,"info":null},{"id":335904579,"name":"Monica Ramirez Abella","nationality":"AND","sex":"female","date_of_birth":"1993-12-27T00:00:00.000Z","height":1.7,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":31059637,"name":"Monica Rokhman","nationality":"USA","sex":"female","date_of_birth":"1997-05-27T00:00:00.000Z","height":1.73,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":292580115,"name":"Monica Sarai Arango Estrada","nationality":"COL","sex":"female","date_of_birth":"1992-06-05T00:00:00.000Z","height":1.65,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":413592133,"name":"Monica Ungureanu","nationality":"ROU","sex":"female","date_of_birth":"1988-01-09T00:00:00.000Z","height":1.64,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":364893024,"name":"Monica de Gennaro","nationality":"ITA","sex":"female","date_of_birth":"1987-01-08T00:00:00.000Z","height":1.74,"weight":67,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":494339957,"name":"Monika","nationality":"IND","sex":"female","date_of_birth":"1993-11-05T00:00:00.000Z","height":1.62,"weight":51,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":560189163,"name":"Monika Brzostek","nationality":"POL","sex":"female","date_of_birth":"1989-07-28T00:00:00.000Z","height":1.73,"weight":62,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":737506601,"name":"Monika Ciaciuch","nationality":"POL","sex":"female","date_of_birth":"1992-05-10T00:00:00.000Z","height":1.82,"weight":74,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":313838269,"name":"Monika Ewa Michalik","nationality":"POL","sex":"female","date_of_birth":"1980-05-02T00:00:00.000Z","height":1.67,"weight":63,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":335727290,"name":"Monika Karsch","nationality":"GER","sex":"female","date_of_birth":"1982-12-22T00:00:00.000Z","height":1.58,"weight":55,"sport":"shooting","gold":0,"silver":1,"bronze":0,"info":null},{"id":216289131,"name":"Monika Stefanowicz","nationality":"POL","sex":"female","date_of_birth":"1980-05-15T00:00:00.000Z","height":1.6,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":138520050,"name":"Monika Vasilyan","nationality":"ARM","sex":"female","date_of_birth":"1995-10-08T00:00:00.000Z","height":1.66,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":643397164,"name":"Monique Sullivan","nationality":"CAN","sex":"female","date_of_birth":"1989-02-21T00:00:00.000Z","height":1.67,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":256721799,"name":"Morad Zemouri","nationality":"QAT","sex":"male","date_of_birth":"1993-03-03T00:00:00.000Z","height":1.73,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":288223126,"name":"Morales Silva","nationality":"CUB","sex":"male","date_of_birth":"1996-02-08T00:00:00.000Z","height":1.8,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":42332624,"name":"Morea Baru","nationality":"PNG","sex":"male","date_of_birth":"1990-04-15T00:00:00.000Z","height":1.62,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":522289399,"name":"Morena Martinez Franchi","nationality":"ARG","sex":"female","date_of_birth":"1993-02-19T00:00:00.000Z","height":1.64,"weight":62,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":629625273,"name":"Morgan Brian","nationality":"USA","sex":"female","date_of_birth":"1993-02-26T00:00:00.000Z","height":1.7,"weight":56,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":933274052,"name":"Morgan Craft","nationality":"USA","sex":"female","date_of_birth":"1993-05-11T00:00:00.000Z","height":1.61,"weight":63,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":539265571,"name":"Morgan Lake","nationality":"GBR","sex":"female","date_of_birth":"1997-05-12T00:00:00.000Z","height":1.78,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":678637275,"name":"Morgan Mitchell","nationality":"AUS","sex":"female","date_of_birth":"1994-10-03T00:00:00.000Z","height":1.77,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":776634450,"name":"Morgana Gmach","nationality":"BRA","sex":"female","date_of_birth":"1994-06-17T00:00:00.000Z","height":1.59,"weight":44,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":350635188,"name":"Morghan Whitney King","nationality":"USA","sex":"female","date_of_birth":"1985-10-08T00:00:00.000Z","height":1.53,"weight":48,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":249898083,"name":"Moritz Furste","nationality":"GER","sex":"male","date_of_birth":"1984-10-28T00:00:00.000Z","height":1.9,"weight":89,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":613123178,"name":"Moritz Milatz","nationality":"GER","sex":"male","date_of_birth":"1982-06-24T00:00:00.000Z","height":1.73,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":820494787,"name":"Moritz Moos","nationality":"GER","sex":"male","date_of_birth":"1994-03-15T00:00:00.000Z","height":1.76,"weight":71,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":354728238,"name":"Moritz Trompertz","nationality":"GER","sex":"male","date_of_birth":"1995-09-21T00:00:00.000Z","height":1.8,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":511776561,"name":"Moroke Jeremia Mokhotho","nationality":"LES","sex":"male","date_of_birth":"1990-11-12T00:00:00.000Z","height":null,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":177555215,"name":"Morolake Akinosun","nationality":"USA","sex":"female","date_of_birth":"1994-05-17T00:00:00.000Z","height":1.63,"weight":60,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":174861233,"name":"Morten Joergensen","nationality":"DEN","sex":"male","date_of_birth":"1985-06-23T00:00:00.000Z","height":1.83,"weight":73,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":981709933,"name":"Morten Olsen","nationality":"DEN","sex":"male","date_of_birth":"1984-10-11T00:00:00.000Z","height":1.84,"weight":95,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":757235037,"name":"Moses Martin Kurong","nationality":"UGA","sex":"male","date_of_birth":"1994-07-07T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":305593512,"name":"Mosito Lehata","nationality":"LES","sex":"male","date_of_birth":"1989-04-08T00:00:00.000Z","height":1.77,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":775280640,"name":"Mostafa Sharifat","nationality":"IRI","sex":"male","date_of_birth":"1987-09-16T00:00:00.000Z","height":2.04,"weight":85,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":648612446,"name":"Mostafa Smaili","nationality":"MAR","sex":"male","date_of_birth":"1997-01-09T00:00:00.000Z","height":1.74,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":164610408,"name":"Mothobi Mvala","nationality":"RSA","sex":"male","date_of_birth":"1994-06-14T00:00:00.000Z","height":1.76,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":906175629,"name":"Motomi Kawamura","nationality":"JPN","sex":"female","date_of_birth":"1996-03-05T00:00:00.000Z","height":1.57,"weight":54,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":853620753,"name":"Mouhssine Lahsaini","nationality":"MAR","sex":"male","date_of_birth":"1985-08-23T00:00:00.000Z","height":1.84,"weight":77,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":22631231,"name":"Mouma Das","nationality":"IND","sex":"female","date_of_birth":"1984-02-24T00:00:00.000Z","height":1.49,"weight":47,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":61885653,"name":"Mpi Anauel Ngamissengue","nationality":"CGO","sex":"male","date_of_birth":"1996-02-03T00:00:00.000Z","height":1.7,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":228902925,"name":"Mpumi Nyandeni","nationality":"RSA","sex":"female","date_of_birth":"1987-08-19T00:00:00.000Z","height":1.62,"weight":50,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":176457455,"name":"Muamer Tankovic","nationality":"SWE","sex":"male","date_of_birth":"1995-02-22T00:00:00.000Z","height":1.8,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":111349032,"name":"Muenfuh Sincere","nationality":"NGR","sex":"male","date_of_birth":"1998-04-28T00:00:00.000Z","height":1.7,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":620003817,"name":"Muhamad Hasbi","nationality":"INA","sex":"male","date_of_birth":"1992-07-12T00:00:00.000Z","height":1.58,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":955910708,"name":"Muhammad Akmal Nor Hasrin","nationality":"MAS","sex":"male","date_of_birth":"1995-07-15T00:00:00.000Z","height":1.8,"weight":74,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":545267756,"name":"Muhammad Ali","nationality":"GBR","sex":"male","date_of_birth":"1996-06-20T00:00:00.000Z","height":1.73,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":758048391,"name":"Muhammad Halim","nationality":"ISV","sex":"male","date_of_birth":"1986-10-26T00:00:00.000Z","height":1.91,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":175347040,"name":"Muhammad Wijaya","nationality":"INA","sex":"male","date_of_birth":"1996-08-22T00:00:00.000Z","height":1.71,"weight":70,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":864313645,"name":"Muhammed Anas Yahiya","nationality":"IND","sex":"male","date_of_birth":"1994-09-17T00:00:00.000Z","height":1.77,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":824855418,"name":"Muhao Li","nationality":"CHN","sex":"male","date_of_birth":"1992-06-02T00:00:00.000Z","height":2.18,"weight":115,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":137651650,"name":"Mujinga Kambundji","nationality":"SUI","sex":"female","date_of_birth":"1992-06-17T00:00:00.000Z","height":1.68,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":313782663,"name":"Mukhamadmurod Abdurakhmonov","nationality":"TJK","sex":"male","date_of_birth":"1986-11-29T00:00:00.000Z","height":1.92,"weight":117,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":422893498,"name":"Mukhlid Alotaibi","nationality":"KSA","sex":"male","date_of_birth":"1976-06-20T00:00:00.000Z","height":1.63,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":933102788,"name":"Muktar Edris","nationality":"ETH","sex":"male","date_of_birth":"1994-01-14T00:00:00.000Z","height":1.71,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":501615561,"name":"Mulern Jean","nationality":"HAI","sex":"female","date_of_birth":"1992-09-25T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":752439313,"name":"Mulomowandau Mathoho","nationality":"RSA","sex":"male","date_of_birth":"1990-03-01T00:00:00.000Z","height":1.78,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":395323200,"name":"Mumin Gala","nationality":"DJI","sex":"male","date_of_birth":"1986-09-06T00:00:00.000Z","height":1.85,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":380366841,"name":"Muminjon Abdullaev","nationality":"UZB","sex":"male","date_of_birth":"1989-12-24T00:00:00.000Z","height":1.9,"weight":130,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":700821397,"name":"Munkhzaya Bayartsogt","nationality":"MGL","sex":"female","date_of_birth":"1993-10-10T00:00:00.000Z","height":1.6,"weight":43,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":44840352,"name":"Munkhzaya Tsedevsuren","nationality":"MGL","sex":"female","date_of_birth":"1986-06-13T00:00:00.000Z","height":1.65,"weight":65,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":242791485,"name":"Munkhzul Tsogbadrakh","nationality":"MGL","sex":"female","date_of_birth":"1981-02-28T00:00:00.000Z","height":1.74,"weight":65,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":703714683,"name":"Munyo Solomon Mutai","nationality":"UGA","sex":"male","date_of_birth":"1992-10-22T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":908231867,"name":"Murat Ramonov","nationality":"KGZ","sex":"male","date_of_birth":"1990-07-21T00:00:00.000Z","height":1.92,"weight":120,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":241961956,"name":"Muriel Coneo","nationality":"COL","sex":"female","date_of_birth":"1987-03-15T00:00:00.000Z","height":1.6,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":845100767,"name":"Murielle Ahoure","nationality":"CIV","sex":"female","date_of_birth":"1987-08-23T00:00:00.000Z","height":1.65,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":313174082,"name":"Murilo Antonio Fischer","nationality":"BRA","sex":"male","date_of_birth":"1979-06-16T00:00:00.000Z","height":1.7,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":411476785,"name":"Murodjon Akhmadaliev","nationality":"UZB","sex":"male","date_of_birth":"1994-11-02T00:00:00.000Z","height":1.65,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":534931107,"name":"Murphy Troy","nationality":"USA","sex":"male","date_of_birth":"1989-05-31T00:00:00.000Z","height":2.02,"weight":99,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":294093955,"name":"Murray Stewart","nationality":"AUS","sex":"male","date_of_birth":"1986-07-02T00:00:00.000Z","height":1.86,"weight":86,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":774480033,"name":"Musa Hajdari","nationality":"KOS","sex":"male","date_of_birth":"1987-10-11T00:00:00.000Z","height":1.87,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":260677878,"name":"Musaeb Abdulrahman Balla","nationality":"QAT","sex":"male","date_of_birth":"1989-03-19T00:00:00.000Z","height":1.85,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":249810115,"name":"Musashi Suzuki","nationality":"JPN","sex":"male","date_of_birth":"1994-02-11T00:00:00.000Z","height":1.85,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":98192269,"name":"Mussa Chamaune","nationality":"MOZ","sex":"male","date_of_birth":"1992-08-19T00:00:00.000Z","height":1.72,"weight":66,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":315205581,"name":"Mustafa Alsaltialkrad","nationality":"QAT","sex":"male","date_of_birth":"1987-03-16T00:00:00.000Z","height":1.86,"weight":90,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":759784132,"name":"Mustafa Kaya","nationality":"TUR","sex":"male","date_of_birth":"1992-06-06T00:00:00.000Z","height":1.64,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":610760480,"name":"Mustafa Nadhim","nationality":"IRQ","sex":"male","date_of_birth":"1993-09-23T00:00:00.000Z","height":1.82,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":434308587,"name":"Mutaz Essa Barshim","nationality":"QAT","sex":"male","date_of_birth":"1991-06-24T00:00:00.000Z","height":1.9,"weight":65,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":963065622,"name":"Myeongjun Son","nationality":"KOR","sex":"male","date_of_birth":"1994-01-17T00:00:00.000Z","height":1.81,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":828123780,"name":"Myeongmok Han","nationality":"KOR","sex":"male","date_of_birth":"1991-02-01T00:00:00.000Z","height":1.6,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":94171394,"name":"Mykhailo Romanchuk","nationality":"UKR","sex":"male","date_of_birth":"1996-08-07T00:00:00.000Z","height":1.9,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":462238804,"name":"Mykola Butsenko","nationality":"UKR","sex":"male","date_of_birth":"1991-06-25T00:00:00.000Z","height":1.7,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":370313350,"name":"Mykyta Nesterenko","nationality":"UKR","sex":"male","date_of_birth":"1991-04-15T00:00:00.000Z","height":2.08,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":53536605,"name":"Mynhardt Mbeumuna Kawanivi","nationality":"NAM","sex":"male","date_of_birth":"1984-03-03T00:00:00.000Z","height":1.78,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":321314290,"name":"Myong Hyok Kim","nationality":"PRK","sex":"male","date_of_birth":"1990-12-03T00:00:00.000Z","height":1.64,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":450507588,"name":"Myong Suk Jong","nationality":"PRK","sex":"female","date_of_birth":"1993-02-06T00:00:00.000Z","height":1.61,"weight":53,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":719432881,"name":"Myong Sun Ri","nationality":"PRK","sex":"female","date_of_birth":"1992-01-26T00:00:00.000Z","height":1.63,"weight":53,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":985606742,"name":"Myriam Fatime Sylla","nationality":"ITA","sex":"female","date_of_birth":"1995-01-08T00:00:00.000Z","height":1.84,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":530677071,"name":"Myrthe Schoot","nationality":"NED","sex":"female","date_of_birth":"1988-08-29T00:00:00.000Z","height":1.83,"weight":70,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":143551773,"name":"Na Wang","nationality":"CHN","sex":"female","date_of_birth":"1994-08-05T00:00:00.000Z","height":1.66,"weight":59,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":834890793,"name":"Nacif Elias","nationality":"LIB","sex":"male","date_of_birth":"1988-09-29T00:00:00.000Z","height":1.72,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":997747457,"name":"Nada Albedwawi","nationality":"UAE","sex":"female","date_of_birth":"1997-08-15T00:00:00.000Z","height":1.62,"weight":53,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":829297928,"name":"Nada Arakji","nationality":"QAT","sex":"female","date_of_birth":"1994-10-30T00:00:00.000Z","height":1.63,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":718461351,"name":"Nada Daabousova","nationality":"SVK","sex":"female","date_of_birth":"1997-01-15T00:00:00.000Z","height":1.65,"weight":52,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":512802404,"name":"Nada Hafez","nationality":"EGY","sex":"female","date_of_birth":"1997-08-28T00:00:00.000Z","height":1.68,"weight":58,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":36934955,"name":"Nada Meawad","nationality":"EGY","sex":"female","date_of_birth":"1998-04-12T00:00:00.000Z","height":1.8,"weight":71,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":704571555,"name":"Nada Saafan","nationality":"EGY","sex":"female","date_of_birth":"1996-09-10T00:00:00.000Z","height":1.68,"weight":53,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":813043984,"name":"Nadeen El-Dawlatly","nationality":"EGY","sex":"female","date_of_birth":"1993-06-22T00:00:00.000Z","height":1.62,"weight":54,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":494612343,"name":"Nadezhda Bazhina","nationality":"RUS","sex":"female","date_of_birth":"1987-12-29T00:00:00.000Z","height":1.7,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":528001593,"name":"Nadezhda Glyzina","nationality":"RUS","sex":"female","date_of_birth":"1988-05-20T00:00:00.000Z","height":1.75,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":139491644,"name":"Nadia Centoni","nationality":"ITA","sex":"female","date_of_birth":"1981-06-19T00:00:00.000Z","height":1.82,"weight":63,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":895831974,"name":"Nadia Colhado","nationality":"BRA","sex":"female","date_of_birth":"1989-02-25T00:00:00.000Z","height":1.94,"weight":88,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":551473101,"name":"Nadia Negm","nationality":"EGY","sex":"female","date_of_birth":"1998-07-23T00:00:00.000Z","height":1.7,"weight":69,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":460024379,"name":"Nadiezda Zieba","nationality":"POL","sex":"female","date_of_birth":"1984-05-21T00:00:00.000Z","height":1.72,"weight":64,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":369509430,"name":"Nadiia Kichenok","nationality":"UKR","sex":"female","date_of_birth":"1992-07-20T00:00:00.000Z","height":1.75,"weight":65,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":313426980,"name":"Nadine Broersen","nationality":"NED","sex":"female","date_of_birth":"1990-04-29T00:00:00.000Z","height":1.71,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":938928683,"name":"Nadine Gonska","nationality":"GER","sex":"female","date_of_birth":"1990-01-23T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":520205566,"name":"Nadine Hildebrand","nationality":"GER","sex":"female","date_of_birth":"1987-09-20T00:00:00.000Z","height":1.59,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":3180101,"name":"Nadine Muller","nationality":"GER","sex":"female","date_of_birth":"1985-11-21T00:00:00.000Z","height":1.93,"weight":94,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":735909394,"name":"Nadine Visser","nationality":"NED","sex":"female","date_of_birth":"1995-02-09T00:00:00.000Z","height":1.75,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":774153676,"name":"Nadine Zumkehr","nationality":"SUI","sex":"female","date_of_birth":"1985-02-05T00:00:00.000Z","height":1.72,"weight":65,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":963806165,"name":"Nadiya Borovska","nationality":"UKR","sex":"female","date_of_birth":"1981-02-25T00:00:00.000Z","height":1.63,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":228904239,"name":"Nadiya Dusanova","nationality":"UZB","sex":"female","date_of_birth":"1987-11-17T00:00:00.000Z","height":1.74,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":688425243,"name":"Nadja Horwitz","nationality":"CHI","sex":"female","date_of_birth":"1996-03-10T00:00:00.000Z","height":1.66,"weight":58,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":271635042,"name":"Nadja Pries","nationality":"GER","sex":"female","date_of_birth":"1994-05-20T00:00:00.000Z","height":1.61,"weight":56,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":322606304,"name":"Nadzeya Liapeshka","nationality":"BLR","sex":"female","date_of_birth":"1989-04-26T00:00:00.000Z","height":1.72,"weight":67,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":799009112,"name":"Nafissatou Thiam","nationality":"BEL","sex":"female","date_of_birth":"1994-08-19T00:00:00.000Z","height":1.87,"weight":72,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":523471843,"name":"Nagisa Hayashi","nationality":"JPN","sex":"female","date_of_birth":"1986-08-29T00:00:00.000Z","height":1.65,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":848586988,"name":"Naho Miyoshi","nationality":"JPN","sex":"female","date_of_birth":"1993-12-21T00:00:00.000Z","height":1.65,"weight":62,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":742568072,"name":"Naiara Egozkue","nationality":"ESP","sex":"female","date_of_birth":"1983-10-21T00:00:00.000Z","height":1.73,"weight":70,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":701395318,"name":"Naima Bakkal","nationality":"MAR","sex":"female","date_of_birth":"1990-08-28T00:00:00.000Z","height":1.7,"weight":57,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":692114409,"name":"Naing Soe Yan","nationality":"MYA","sex":"male","date_of_birth":"1979-01-31T00:00:00.000Z","height":1.8,"weight":98,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":276705406,"name":"Naito Ehara","nationality":"JPN","sex":"male","date_of_birth":"1993-07-30T00:00:00.000Z","height":1.72,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":397860366,"name":"Najima Parveen","nationality":"PAK","sex":"female","date_of_birth":"1990-12-20T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":787936059,"name":"Najmeh Khedmati","nationality":"IRI","sex":"female","date_of_birth":"1996-06-09T00:00:00.000Z","height":1.59,"weight":64,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":414759552,"name":"Namakoe Nkhasi","nationality":"LES","sex":"male","date_of_birth":"1993-01-10T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":910960289,"name":"Namika Matsumoto","nationality":"JPN","sex":"female","date_of_birth":"1992-02-07T00:00:00.000Z","height":1.58,"weight":63,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":539278913,"name":"Namita Toppo","nationality":"IND","sex":"female","date_of_birth":"1995-06-04T00:00:00.000Z","height":1.63,"weight":53,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":921608416,"name":"Nan Chen","nationality":"CHN","sex":"female","date_of_birth":"1983-01-08T00:00:00.000Z","height":1.95,"weight":94,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":131634277,"name":"Nan Zhang","nationality":"CHN","sex":"male","date_of_birth":"1990-03-01T00:00:00.000Z","height":1.83,"weight":75,"sport":"badminton","gold":1,"silver":0,"bronze":1,"info":null},{"id":817788274,"name":"Nancy Chepkwemoi","nationality":"KEN","sex":"female","date_of_birth":"1993-10-08T00:00:00.000Z","height":1.21,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":533602756,"name":"Nandinzaya Gankhuyag","nationality":"MGL","sex":"female","date_of_birth":"1994-06-27T00:00:00.000Z","height":1.55,"weight":56,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":641363235,"name":"Nando De Colo","nationality":"FRA","sex":"male","date_of_birth":"1987-06-23T00:00:00.000Z","height":1.96,"weight":90,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":209921871,"name":"Nanna Koerstz Madsen","nationality":"DEN","sex":"female","date_of_birth":"1994-10-23T00:00:00.000Z","height":1.71,"weight":67,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":634283561,"name":"Nanna Vainio","nationality":"FIN","sex":"female","date_of_birth":"1991-05-29T00:00:00.000Z","height":1.7,"weight":60,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":679632915,"name":"Nanthana Komwong","nationality":"THA","sex":"female","date_of_birth":"1980-09-13T00:00:00.000Z","height":1.59,"weight":54,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":95609257,"name":"Nao Hibino","nationality":"JPN","sex":"female","date_of_birth":"1994-11-28T00:00:00.000Z","height":1.63,"weight":58,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":415843643,"name":"Naohisa Takato","nationality":"JPN","sex":"male","date_of_birth":"1993-05-30T00:00:00.000Z","height":1.6,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":30264154,"name":"Naoko Ishihara","nationality":"JPN","sex":"female","date_of_birth":"1974-10-22T00:00:00.000Z","height":1.57,"weight":64,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":834851644,"name":"Naomi Flood","nationality":"AUS","sex":"female","date_of_birth":"1986-04-17T00:00:00.000Z","height":1.75,"weight":null,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":807036162,"name":"Naomi Folkard","nationality":"GBR","sex":"female","date_of_birth":"1983-09-18T00:00:00.000Z","height":1.69,"weight":76,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":268877038,"name":"Naomi Ruele","nationality":"BOT","sex":"female","date_of_birth":"1997-01-13T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":217475768,"name":"Naomi Sedney","nationality":"NED","sex":"female","date_of_birth":"1994-12-17T00:00:00.000Z","height":1.7,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":937919946,"name":"Naomi van As","nationality":"NED","sex":"female","date_of_birth":"1983-07-26T00:00:00.000Z","height":1.79,"weight":63,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":827667838,"name":"Naomichi Ueda","nationality":"JPN","sex":"male","date_of_birth":"1994-10-24T00:00:00.000Z","height":1.86,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":230104226,"name":"Naomy Grand Pierre","nationality":"HAI","sex":"female","date_of_birth":"1997-04-16T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":486171475,"name":"Naoya Okada","nationality":"JPN","sex":"male","date_of_birth":"1990-10-10T00:00:00.000Z","height":1.85,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":298380237,"name":"Napis Tortungpanich","nationality":"THA","sex":"male","date_of_birth":"1995-03-29T00:00:00.000Z","height":1.74,"weight":56,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":676294284,"name":"Naranjargal Tsend-Ayush","nationality":"MGL","sex":"female","date_of_birth":"1992-01-27T00:00:00.000Z","height":1.75,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":772765503,"name":"Narcis Stefan Mihaila","nationality":"ROU","sex":"male","date_of_birth":"1987-08-04T00:00:00.000Z","height":1.83,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":871545516,"name":"Narcisa Landazuri","nationality":"ECU","sex":"female","date_of_birth":"1991-06-13T00:00:00.000Z","height":1.66,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":435983396,"name":"Nareg Guregian","nationality":"USA","sex":"male","date_of_birth":"1989-01-20T00:00:00.000Z","height":1.96,"weight":97,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":188253954,"name":"Narek Abgaryan","nationality":"ARM","sex":"male","date_of_birth":"1992-01-06T00:00:00.000Z","height":1.66,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":302411064,"name":"Nariman Aly","nationality":"EGY","sex":"female","date_of_birth":"1998-09-29T00:00:00.000Z","height":1.69,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":345522636,"name":"Narsingh Pancham Yadav","nationality":"IND","sex":"male","date_of_birth":"1989-08-06T00:00:00.000Z","height":1.67,"weight":74,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":113824084,"name":"Nary Ly","nationality":"CAM","sex":"female","date_of_birth":"1972-06-06T00:00:00.000Z","height":1.6,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":238115739,"name":"Naryury Alexandra Perez Reveron","nationality":"VEN","sex":"female","date_of_birth":"1992-09-29T00:00:00.000Z","height":1.68,"weight":100,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":342677534,"name":"Nasanburmaa Ochirbat","nationality":"MGL","sex":"female","date_of_birth":"1989-04-14T00:00:00.000Z","height":1.66,"weight":69,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":520381146,"name":"Nasreddine Megdich","nationality":"QAT","sex":"male","date_of_birth":"1991-08-29T00:00:00.000Z","height":1.79,"weight":80,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":142174350,"name":"Nasser Al-Attiya","nationality":"QAT","sex":"male","date_of_birth":"1970-12-21T00:00:00.000Z","height":1.78,"weight":82,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":295414413,"name":"Nastassia Ivanova","nationality":"BLR","sex":"female","date_of_birth":"1982-11-04T00:00:00.000Z","height":1.62,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":244608144,"name":"Nastassia Yatsevich","nationality":"BLR","sex":"female","date_of_birth":"1985-01-18T00:00:00.000Z","height":1.58,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":442261024,"name":"Natalia Alfaro","nationality":"CRC","sex":"female","date_of_birth":"1987-04-08T00:00:00.000Z","height":1.65,"weight":62,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":945555989,"name":"Natalia Duco","nationality":"CHI","sex":"female","date_of_birth":"1989-01-31T00:00:00.000Z","height":1.77,"weight":100,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":501264763,"name":"Natalia Gaitan","nationality":"COL","sex":"female","date_of_birth":"1991-04-03T00:00:00.000Z","height":1.64,"weight":56,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":29258479,"name":"Natalia Gaudio","nationality":"BRA","sex":"female","date_of_birth":"1992-12-18T00:00:00.000Z","height":1.7,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":102725469,"name":"Natalia Ishchenko","nationality":"RUS","sex":"female","date_of_birth":"1986-04-08T00:00:00.000Z","height":1.77,"weight":56,"sport":"aquatics","gold":2,"silver":0,"bronze":0,"info":"With a total of 19 world championship medals, Russia's Natalia Ischchenko also won three golds from two Olympic Games: the team event at Beijing 2008 and London 2012 – as well as the individual event in the latter."},{"id":508230574,"name":"Natalia Kuziutina","nationality":"RUS","sex":"female","date_of_birth":"1989-05-08T00:00:00.000Z","height":1.6,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":131987947,"name":"Natalia Lovtcova","nationality":"RUS","sex":"female","date_of_birth":"1988-04-14T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":482560028,"name":"Natalia Luccas","nationality":"BRA","sex":"female","date_of_birth":"1996-09-13T00:00:00.000Z","height":1.67,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":91982471,"name":"Natalia Madaj","nationality":"POL","sex":"female","date_of_birth":"1988-01-25T00:00:00.000Z","height":1.75,"weight":68,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":934592033,"name":"Natalia Maria Bernardo","nationality":"ANG","sex":"female","date_of_birth":"1986-12-25T00:00:00.000Z","height":1.7,"weight":65,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":260798105,"name":"Natalia Pacierpnik","nationality":"POL","sex":"female","date_of_birth":"1988-08-14T00:00:00.000Z","height":1.69,"weight":58,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":354025336,"name":"Natalia Partyka","nationality":"POL","sex":"female","date_of_birth":"1989-07-27T00:00:00.000Z","height":1.73,"weight":64,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":121155817,"name":"Natalia Pereira","nationality":"BRA","sex":"female","date_of_birth":"1989-04-04T00:00:00.000Z","height":1.84,"weight":76,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":53814036,"name":"Natalia Perminova","nationality":"RUS","sex":"female","date_of_birth":"1991-11-14T00:00:00.000Z","height":1.64,"weight":55,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":281240211,"name":"Natalia Pohrebniak","nationality":"UKR","sex":"female","date_of_birth":"1988-02-19T00:00:00.000Z","height":1.71,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":290312104,"name":"Natalia Priscepa","nationality":"MDA","sex":"female","date_of_birth":"1989-10-17T00:00:00.000Z","height":1.68,"weight":74,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":228374480,"name":"Natalia Romero","nationality":"CHI","sex":"female","date_of_birth":"1980-02-26T00:00:00.000Z","height":1.63,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":496598838,"name":"Natalia Rutkowska","nationality":"POL","sex":"female","date_of_birth":"1991-01-21T00:00:00.000Z","height":1.62,"weight":56,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":930260254,"name":"Natalia Sanchez","nationality":"COL","sex":"female","date_of_birth":"1983-05-20T00:00:00.000Z","height":1.66,"weight":63,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":335301565,"name":"Natalia Semenova","nationality":"UKR","sex":"female","date_of_birth":"1982-07-07T00:00:00.000Z","height":1.78,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":868843791,"name":"Natalia Stratulat","nationality":"MDA","sex":"female","date_of_birth":"1987-07-24T00:00:00.000Z","height":1.78,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":681645907,"name":"Natalia Valentin","nationality":"PUR","sex":"female","date_of_birth":"1989-09-12T00:00:00.000Z","height":1.7,"weight":61,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":233616560,"name":"Natalia Vorobeva","nationality":"RUS","sex":"female","date_of_birth":"1991-05-27T00:00:00.000Z","height":1.74,"weight":69,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":104900032,"name":"Natalie Achonwa","nationality":"CAN","sex":"female","date_of_birth":"1992-11-22T00:00:00.000Z","height":1.9,"weight":86,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":501589607,"name":"Natalie Burton","nationality":"AUS","sex":"female","date_of_birth":"1989-03-23T00:00:00.000Z","height":1.94,"weight":76,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":325204288,"name":"Natalie Hermann","nationality":"GER","sex":"female","date_of_birth":"1999-08-27T00:00:00.000Z","height":1.7,"weight":54,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":235612415,"name":"Natalie Mastracci","nationality":"CAN","sex":"female","date_of_birth":"1989-06-05T00:00:00.000Z","height":1.78,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":243599235,"name":"Natalie Mc Giffert","nationality":"USA","sex":"female","date_of_birth":"1997-03-14T00:00:00.000Z","height":1.61,"weight":43,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":783121274,"name":"Natalie Powell","nationality":"GBR","sex":"female","date_of_birth":"1990-10-16T00:00:00.000Z","height":1.75,"weight":77,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":469016028,"name":"Natalie Rooney","nationality":"NZL","sex":"female","date_of_birth":"1988-06-01T00:00:00.000Z","height":1.81,"weight":95,"sport":"shooting","gold":0,"silver":1,"bronze":0,"info":null},{"id":36343721,"name":"Nataliia Lupu","nationality":"UKR","sex":"female","date_of_birth":"1987-11-04T00:00:00.000Z","height":1.75,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":152619271,"name":"Nataliia Moskvina","nationality":"UKR","sex":"female","date_of_birth":"1988-06-09T00:00:00.000Z","height":1.67,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":417902852,"name":"Nataliia Pryshchepa","nationality":"UKR","sex":"female","date_of_birth":"1994-09-11T00:00:00.000Z","height":1.63,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":184555664,"name":"Nataliya Goncharova","nationality":"RUS","sex":"female","date_of_birth":"1989-06-01T00:00:00.000Z","height":1.94,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":716355288,"name":"Nataliya Lehonkova","nationality":"UKR","sex":"female","date_of_birth":"1982-12-27T00:00:00.000Z","height":1.61,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":76086422,"name":"Nataliya Strohova","nationality":"UKR","sex":"female","date_of_birth":"1992-12-26T00:00:00.000Z","height":1.69,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":460143342,"name":"Nataliya Trafimava","nationality":"BLR","sex":"female","date_of_birth":"1979-06-16T00:00:00.000Z","height":1.84,"weight":75,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":383133261,"name":"Nataliya Zolotukhina","nationality":"UKR","sex":"female","date_of_birth":"1985-01-04T00:00:00.000Z","height":1.8,"weight":87,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":395541735,"name":"Natallia Kalnysh","nationality":"UKR","sex":"female","date_of_birth":"1974-07-02T00:00:00.000Z","height":1.67,"weight":80,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":326138845,"name":"Natallia Viatkina","nationality":"BLR","sex":"female","date_of_birth":"1987-02-10T00:00:00.000Z","height":1.76,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":972532499,"name":"Nataly Arias","nationality":"COL","sex":"female","date_of_birth":"1986-04-02T00:00:00.000Z","height":1.72,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":546626523,"name":"Nataly Michel","nationality":"MEX","sex":"female","date_of_birth":"1990-07-09T00:00:00.000Z","height":1.71,"weight":62,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":200672327,"name":"Natalya Asanova","nationality":"UZB","sex":"female","date_of_birth":"1989-11-29T00:00:00.000Z","height":1.77,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":189952338,"name":"Natalya Coyle","nationality":"IRL","sex":"female","date_of_birth":"1990-12-11T00:00:00.000Z","height":1.7,"weight":60,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":987315393,"name":"Natalya Sergeyeva","nationality":"KAZ","sex":"female","date_of_birth":"1976-05-03T00:00:00.000Z","height":1.64,"weight":64,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":975725248,"name":"Natalya Sinishin","nationality":"AZE","sex":"female","date_of_birth":"1985-07-03T00:00:00.000Z","height":1.6,"weight":58,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":979223655,"name":"Natan Wegrzycki-Szymczyk","nationality":"POL","sex":"male","date_of_birth":"1995-01-05T00:00:00.000Z","height":2.02,"weight":92,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":928811908,"name":"Natasa Douchev-Janic","nationality":"HUN","sex":"female","date_of_birth":"1982-06-24T00:00:00.000Z","height":1.74,"weight":68,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":143252275,"name":"Natasha Hansen","nationality":"NZL","sex":"female","date_of_birth":"1989-11-15T00:00:00.000Z","height":1.67,"weight":66,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":306128745,"name":"Natasha Hastings","nationality":"USA","sex":"female","date_of_birth":"1986-07-23T00:00:00.000Z","height":1.73,"weight":68,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":161924940,"name":"Natasha Hunt","nationality":"GBR","sex":"female","date_of_birth":"1989-03-21T00:00:00.000Z","height":1.65,"weight":62,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":566498103,"name":"Natasha Watcham-Roy","nationality":"CAN","sex":"female","date_of_birth":"1992-04-28T00:00:00.000Z","height":1.7,"weight":67,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":71025804,"name":"Natasha Wodak","nationality":"CAN","sex":"female","date_of_birth":"1981-12-17T00:00:00.000Z","height":1.6,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":378410191,"name":"Nate Ebner","nationality":"USA","sex":"male","date_of_birth":"1988-12-14T00:00:00.000Z","height":1.86,"weight":97,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":306477924,"name":"Nathalie Brugger","nationality":"SUI","sex":"female","date_of_birth":"1985-12-25T00:00:00.000Z","height":1.74,"weight":69,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":925043937,"name":"Nathalie Hagman","nationality":"SWE","sex":"female","date_of_birth":"1991-07-19T00:00:00.000Z","height":1.67,"weight":62,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":238114237,"name":"Nathalie Moellhausen","nationality":"BRA","sex":"female","date_of_birth":"1985-12-01T00:00:00.000Z","height":1.77,"weight":63,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":146755228,"name":"Nathalie Nicole Viviane Marchino Urrutia","nationality":"COL","sex":"female","date_of_birth":"1981-07-27T00:00:00.000Z","height":1.7,"weight":63,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":776128059,"name":"Nathan Adrian","nationality":"USA","sex":"male","date_of_birth":"1988-12-07T00:00:00.000Z","height":1.99,"weight":102,"sport":"aquatics","gold":2,"silver":0,"bronze":2,"info":null},{"id":934643545,"name":"Nathan Bailey","nationality":"GBR","sex":"male","date_of_birth":"1993-07-24T00:00:00.000Z","height":1.78,"weight":71,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":236734803,"name":"Nathan Brannen","nationality":"CAN","sex":"male","date_of_birth":"1982-09-08T00:00:00.000Z","height":1.74,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":440261722,"name":"Nathan Byukusenge","nationality":"RWA","sex":"male","date_of_birth":"1980-08-08T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":364644327,"name":"Nathan Flannery","nationality":"NZL","sex":"male","date_of_birth":"1992-10-22T00:00:00.000Z","height":1.89,"weight":85,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":532748337,"name":"Nathan Hart","nationality":"AUS","sex":"male","date_of_birth":"1993-03-04T00:00:00.000Z","height":1.8,"weight":90,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":880935011,"name":"Nathan Katz","nationality":"AUS","sex":"male","date_of_birth":"1995-01-17T00:00:00.000Z","height":1.75,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":628333432,"name":"Nathan Outteridge","nationality":"AUS","sex":"male","date_of_birth":"1986-01-28T00:00:00.000Z","height":1.79,"weight":75,"sport":"sailing","gold":0,"silver":1,"bronze":0,"info":null},{"id":874878988,"name":"Nathan Schrimsher","nationality":"USA","sex":"male","date_of_birth":"1992-05-22T00:00:00.000Z","height":1.88,"weight":78,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":920855247,"name":"Nathon Allen","nationality":"JAM","sex":"male","date_of_birth":"1995-10-28T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":600380333,"name":"Natoya Goule","nationality":"JAM","sex":"female","date_of_birth":"1991-03-30T00:00:00.000Z","height":1.52,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":379684120,"name":"Natsumi Hoshi","nationality":"JPN","sex":"female","date_of_birth":"1990-08-21T00:00:00.000Z","height":1.64,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":354644354,"name":"Natsumi Sakai","nationality":"JPN","sex":"female","date_of_birth":"2001-06-19T00:00:00.000Z","height":1.72,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":626206435,"name":"Natsumi Tomonaga","nationality":"JPN","sex":"female","date_of_birth":"1991-08-22T00:00:00.000Z","height":1.69,"weight":53,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":507079558,"name":"Natthanan Junkrajang","nationality":"THA","sex":"female","date_of_birth":"1986-04-13T00:00:00.000Z","height":1.66,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":585986660,"name":"Natthaphong Phonoppharat","nationality":"THA","sex":"male","date_of_birth":"1988-05-16T00:00:00.000Z","height":1.77,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":897039475,"name":"Natthaya Thanaronnawat","nationality":"THA","sex":"female","date_of_birth":"1979-06-12T00:00:00.000Z","height":1.58,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":521469837,"name":"Nauraj Singh Randhawa","nationality":"MAS","sex":"male","date_of_birth":"1992-01-27T00:00:00.000Z","height":1.93,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":383442577,"name":"Navjot Kaur","nationality":"IND","sex":"female","date_of_birth":"1995-03-07T00:00:00.000Z","height":1.67,"weight":53,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":848372593,"name":"Nayo Raincock-Ekunwe","nationality":"CAN","sex":"female","date_of_birth":"1991-08-29T00:00:00.000Z","height":1.87,"weight":75,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":797214230,"name":"Nazar Kovalenko","nationality":"UKR","sex":"male","date_of_birth":"1987-02-09T00:00:00.000Z","height":1.77,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":703930419,"name":"Nazik Avdalyan","nationality":"ARM","sex":"female","date_of_birth":"1986-10-31T00:00:00.000Z","height":1.57,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":613585930,"name":"Nazim Babayev","nationality":"AZE","sex":"male","date_of_birth":"1997-10-08T00:00:00.000Z","height":1.87,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":167982830,"name":"Nazli Donertas","nationality":"TUR","sex":"female","date_of_birth":"1991-03-01T00:00:00.000Z","height":1.73,"weight":69,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":328956324,"name":"Ndifreke Udo","nationality":"NGR","sex":"male","date_of_birth":"1998-08-15T00:00:00.000Z","height":1.73,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":467504641,"name":"Nebiat Habtemariam","nationality":"ERI","sex":"female","date_of_birth":"1978-12-29T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":932895136,"name":"Nebojsa Grujic","nationality":"SRB","sex":"male","date_of_birth":"1991-03-21T00:00:00.000Z","height":1.81,"weight":83,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":213347925,"name":"Ned Justeen Azemia","nationality":"SEY","sex":"male","date_of_birth":"1997-08-21T00:00:00.000Z","height":1.77,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":393863560,"name":"Neda Shahsavari","nationality":"IRI","sex":"female","date_of_birth":"1986-09-21T00:00:00.000Z","height":1.67,"weight":62,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":218738861,"name":"Nehal Saafan","nationality":"EGY","sex":"female","date_of_birth":"1996-09-10T00:00:00.000Z","height":1.64,"weight":49,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":824920979,"name":"Neide Marisa de P. Barbosa","nationality":"ANG","sex":"female","date_of_birth":"1980-09-23T00:00:00.000Z","height":1.8,"weight":87,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":229071441,"name":"Neisi Patricia Dajomes Barrera","nationality":"ECU","sex":"female","date_of_birth":"1998-05-12T00:00:00.000Z","height":1.67,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":868834976,"name":"Nekoda Smythe-Davis","nationality":"GBR","sex":"female","date_of_birth":"1993-04-22T00:00:00.000Z","height":1.57,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":19709330,"name":"Neli Alberto","nationality":"ESP","sex":"female","date_of_birth":"1983-07-02T00:00:00.000Z","height":1.79,"weight":90,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":251197905,"name":"Nelia Martins","nationality":"TLS","sex":"female","date_of_birth":"1998-07-09T00:00:00.000Z","height":1.5,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":741011271,"name":"Nelson Evora","nationality":"POR","sex":"male","date_of_birth":"1984-04-20T00:00:00.000Z","height":1.83,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":526118539,"name":"Nelson Filipe Santos Simoes Oliveira","nationality":"POR","sex":"male","date_of_birth":"1989-03-06T00:00:00.000Z","height":1.8,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":454620893,"name":"Nelson Kipkosgei Cherutich","nationality":"BRN","sex":"male","date_of_birth":"1993-03-09T00:00:00.000Z","height":1.7,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":618007323,"name":"Nemanja Nedovic","nationality":"SRB","sex":"male","date_of_birth":"1991-06-16T00:00:00.000Z","height":1.91,"weight":90,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":761172837,"name":"Nenad Bedik","nationality":"SRB","sex":"male","date_of_birth":"1989-04-14T00:00:00.000Z","height":2.02,"weight":96,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":706411745,"name":"Nenad Filipovic","nationality":"SRB","sex":"male","date_of_birth":"1978-10-05T00:00:00.000Z","height":1.82,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":840921480,"name":"Nenad Zimonjic","nationality":"SRB","sex":"male","date_of_birth":"1976-06-04T00:00:00.000Z","height":1.92,"weight":90,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":188152707,"name":"Nene Hilario","nationality":"BRA","sex":"male","date_of_birth":"1982-09-13T00:00:00.000Z","height":2.11,"weight":113,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":838940374,"name":"Nercely Soto","nationality":"VEN","sex":"female","date_of_birth":"1990-08-23T00:00:00.000Z","height":1.69,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":41640598,"name":"Nerea Pena","nationality":"ESP","sex":"female","date_of_birth":"1989-12-13T00:00:00.000Z","height":1.75,"weight":70,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":967371534,"name":"Neringa Aidietyte","nationality":"LTU","sex":"female","date_of_birth":"1983-06-05T00:00:00.000Z","height":1.77,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":459454489,"name":"Nery Brenes","nationality":"CRC","sex":"male","date_of_birth":"1985-09-25T00:00:00.000Z","height":1.75,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":274922701,"name":"Nestor Abad","nationality":"ESP","sex":"male","date_of_birth":"1993-03-29T00:00:00.000Z","height":1.67,"weight":64,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":358214485,"name":"Nestor Colmenares","nationality":"VEN","sex":"male","date_of_birth":"1987-09-05T00:00:00.000Z","height":2.03,"weight":110,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":662467395,"name":"Nestor Colonia","nationality":"PHI","sex":"male","date_of_birth":"1992-02-16T00:00:00.000Z","height":1.58,"weight":55,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":628099211,"name":"Nestor Nielsen van Hoff","nationality":"URU","sex":"male","date_of_birth":"1972-11-13T00:00:00.000Z","height":1.81,"weight":83,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":321378771,"name":"Nestor Orellana","nationality":"MEX","sex":"male","date_of_birth":"1992-01-07T00:00:00.000Z","height":1.92,"weight":84,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":406378010,"name":"Neta Rivkin","nationality":"ISR","sex":"female","date_of_birth":"1991-06-19T00:00:00.000Z","height":1.7,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":536696599,"name":"Nethaneel Mitchell-Blake","nationality":"GBR","sex":"male","date_of_birth":"1994-04-02T00:00:00.000Z","height":1.87,"weight":86,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":738180656,"name":"Nevena Jovanovic","nationality":"SRB","sex":"female","date_of_birth":"1990-06-30T00:00:00.000Z","height":1.79,"weight":72,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":892604107,"name":"Neviana Vladinova","nationality":"BUL","sex":"female","date_of_birth":"1994-02-23T00:00:00.000Z","height":1.66,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":255428335,"name":"Nevriye Yilmaz","nationality":"TUR","sex":"female","date_of_birth":"1980-06-16T00:00:00.000Z","height":1.92,"weight":85,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":780066644,"name":"Neymar","nationality":"BRA","sex":"male","date_of_birth":"1992-02-05T00:00:00.000Z","height":1.74,"weight":68,"sport":"football","gold":1,"silver":0,"bronze":0,"info":"Currently the hottest name in Brazilian football, Neymar competes at the Games for the second time (he won silver at London 2012, scoring three goals). He won the 2013 Confederations Cup with the national side, and the 2015 Champions League with Barcelona"},{"id":243033574,"name":"Nezir Karap","nationality":"TUR","sex":"male","date_of_birth":"1994-01-02T00:00:00.000Z","height":1.74,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":708788077,"name":"Ngoc Tu Van","nationality":"VIE","sex":"female","date_of_birth":"1987-08-11T00:00:00.000Z","height":1.58,"weight":46,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":350682364,"name":"Nguse Amlosom","nationality":"ERI","sex":"male","date_of_birth":"1986-11-10T00:00:00.000Z","height":1.8,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":978016075,"name":"Ni Yan","nationality":"CHN","sex":"female","date_of_birth":"1987-03-02T00:00:00.000Z","height":1.92,"weight":74,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":294595887,"name":"Nia Ali","nationality":"USA","sex":"female","date_of_birth":"1988-10-23T00:00:00.000Z","height":1.68,"weight":64,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":806128359,"name":"Niall Williams","nationality":"NZL","sex":"female","date_of_birth":"1988-04-21T00:00:00.000Z","height":1.73,"weight":74,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":959123687,"name":"Nic Woods","nationality":"NZL","sex":"male","date_of_birth":"1995-08-26T00:00:00.000Z","height":1.8,"weight":90,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":487583469,"name":"Niccolo Campriani","nationality":"ITA","sex":"male","date_of_birth":"1987-11-06T00:00:00.000Z","height":1.77,"weight":80,"sport":"shooting","gold":2,"silver":0,"bronze":0,"info":null},{"id":81940931,"name":"Niccolo' Gitto","nationality":"ITA","sex":"male","date_of_birth":"1986-10-12T00:00:00.000Z","height":1.9,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":284825190,"name":"Nichelle Prince","nationality":"CAN","sex":"female","date_of_birth":"1995-02-19T00:00:00.000Z","height":1.63,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":832227468,"name":"Nicholas Delpopolo","nationality":"USA","sex":"male","date_of_birth":"1989-02-08T00:00:00.000Z","height":1.73,"weight":77,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":451660058,"name":"Nicholas Hoag","nationality":"CAN","sex":"male","date_of_birth":"1992-08-19T00:00:00.000Z","height":2,"weight":91,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":617073971,"name":"Nicholas Kiplagat Bett","nationality":"KEN","sex":"male","date_of_birth":"1990-01-27T00:00:00.000Z","height":1.9,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":550972021,"name":"Nicholas Long","nationality":"USA","sex":"male","date_of_birth":"1989-10-06T00:00:00.000Z","height":1.88,"weight":86,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":48265252,"name":"Nicholas Lucena","nationality":"USA","sex":"male","date_of_birth":"1979-09-22T00:00:00.000Z","height":1.86,"weight":83,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":446810551,"name":"Nicholas Magana","nationality":"PER","sex":"male","date_of_birth":"1996-06-18T00:00:00.000Z","height":1.98,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":186990387,"name":"Nicholas Presciutti","nationality":"ITA","sex":"male","date_of_birth":"1993-12-14T00:00:00.000Z","height":1.89,"weight":93,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":411471821,"name":"Nicholas Quinn","nationality":"IRL","sex":"male","date_of_birth":"1993-06-03T00:00:00.000Z","height":1.85,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":475985515,"name":"Nicholas Scarvelis","nationality":"GRE","sex":"male","date_of_birth":"1993-02-02T00:00:00.000Z","height":1.86,"weight":125,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":373381796,"name":"Nicholas Willis","nationality":"NZL","sex":"male","date_of_birth":"1983-04-25T00:00:00.000Z","height":1.83,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":624024995,"name":"Nick Dempsey","nationality":"GBR","sex":"male","date_of_birth":"1980-08-13T00:00:00.000Z","height":1.8,"weight":71,"sport":"sailing","gold":0,"silver":1,"bronze":0,"info":null},{"id":779437440,"name":"Nick Haig","nationality":"NZL","sex":"male","date_of_birth":"1987-03-12T00:00:00.000Z","height":1.8,"weight":82,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":572455894,"name":"Nick Malouf","nationality":"AUS","sex":"male","date_of_birth":"1993-03-19T00:00:00.000Z","height":1.86,"weight":92,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":253306509,"name":"Nick Miller","nationality":"GBR","sex":"male","date_of_birth":"1993-05-01T00:00:00.000Z","height":1.88,"weight":112,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":764396400,"name":"Nick Skelton","nationality":"GBR","sex":"male","date_of_birth":"1957-12-30T00:00:00.000Z","height":1.75,"weight":76,"sport":"equestrian","gold":1,"silver":0,"bronze":0,"info":null},{"id":319742600,"name":"Nick Thompson","nationality":"GBR","sex":"male","date_of_birth":"1986-05-05T00:00:00.000Z","height":1.79,"weight":80,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":743923874,"name":"Nick Wilson","nationality":"NZL","sex":"male","date_of_birth":"1990-08-06T00:00:00.000Z","height":1.8,"weight":81,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":683971980,"name":"Nickel Ashmeade","nationality":"JAM","sex":"male","date_of_birth":"1990-04-07T00:00:00.000Z","height":1.85,"weight":88,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":317250144,"name":"Nickel Chand","nationality":"FIJ","sex":"male","date_of_birth":"1995-07-28T00:00:00.000Z","height":1.67,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":982320885,"name":"Nickiesha Wilson","nationality":"JAM","sex":"female","date_of_birth":"1986-07-28T00:00:00.000Z","height":1.74,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":129717034,"name":"Nickolas Catlin","nationality":"GBR","sex":"male","date_of_birth":"1989-04-08T00:00:00.000Z","height":1.75,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":891765771,"name":"Nicky Samuels","nationality":"NZL","sex":"female","date_of_birth":"1983-02-28T00:00:00.000Z","height":1.7,"weight":56,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":427041039,"name":"Nicky van Leuveren","nationality":"NED","sex":"female","date_of_birth":"1990-05-20T00:00:00.000Z","height":1.75,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":199818017,"name":"Nico Delle-Karth","nationality":"AUT","sex":"male","date_of_birth":"1984-01-21T00:00:00.000Z","height":1.8,"weight":74,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":134647499,"name":"Nico Miguel Hernandez","nationality":"USA","sex":"male","date_of_birth":"1996-01-04T00:00:00.000Z","height":1.66,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":28175452,"name":"Nico Mueller","nationality":"GER","sex":"male","date_of_birth":"1993-11-02T00:00:00.000Z","height":1.68,"weight":77,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":988453095,"name":"Nico Stahlberg","nationality":"SUI","sex":"male","date_of_birth":"1991-11-15T00:00:00.000Z","height":1.92,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":570863288,"name":"Nicol Ruprecht","nationality":"AUT","sex":"female","date_of_birth":"1992-10-02T00:00:00.000Z","height":1.7,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":410663669,"name":"Nicola Adams","nationality":"GBR","sex":"female","date_of_birth":"1982-10-26T00:00:00.000Z","height":1.64,"weight":null,"sport":"boxing","gold":1,"silver":0,"bronze":0,"info":"Born in Leeds, England, Nicola Adams fought for the first time at the age of 13. She became the first woman to win an Olympic gold in boxing at London 2012. This Great Briton is also the current world and European champion in the up to 51kg class."},{"id":410776755,"name":"Nicola Groves","nationality":"GBR","sex":"female","date_of_birth":"1989-04-04T00:00:00.000Z","height":1.68,"weight":63,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":128217086,"name":"Nicola Muscat","nationality":"MLT","sex":"female","date_of_birth":"1994-06-25T00:00:00.000Z","height":1.73,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":486899362,"name":"Nicola Philippaerts","nationality":"BEL","sex":"male","date_of_birth":"1993-07-30T00:00:00.000Z","height":1.86,"weight":76,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":126244906,"name":"Nicola Ripamonti","nationality":"ITA","sex":"male","date_of_birth":"1990-01-11T00:00:00.000Z","height":1.78,"weight":81,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":332129646,"name":"Nicola Spirig Hug","nationality":"SUI","sex":"female","date_of_birth":"1982-02-07T00:00:00.000Z","height":1.66,"weight":54,"sport":"triathlon","gold":0,"silver":1,"bronze":0,"info":null},{"id":334459836,"name":"Nicola White","nationality":"GBR","sex":"female","date_of_birth":"1988-01-20T00:00:00.000Z","height":1.72,"weight":65,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":947910094,"name":"Nicola Zagame","nationality":"AUS","sex":"female","date_of_birth":"1990-08-11T00:00:00.000Z","height":1.74,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":168904848,"name":"Nicolae-Alexandru Soare","nationality":"ROU","sex":"male","date_of_birth":"1991-09-20T00:00:00.000Z","height":1.68,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":302102692,"name":"Nicolai Brock-Madsen","nationality":"DEN","sex":"male","date_of_birth":"1993-01-09T00:00:00.000Z","height":1.94,"weight":88,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":730590153,"name":"Nicolai Ceban","nationality":"MDA","sex":"male","date_of_birth":"1986-03-30T00:00:00.000Z","height":1.86,"weight":96,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":652169057,"name":"Nicolai Poulsen","nationality":"DEN","sex":"male","date_of_birth":"1993-08-15T00:00:00.000Z","height":1.77,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":860019279,"name":"Nicolas Batum","nationality":"FRA","sex":"male","date_of_birth":"1988-12-14T00:00:00.000Z","height":2.03,"weight":105,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":74210449,"name":"Nicolas Bruno","nationality":"ARG","sex":"male","date_of_birth":"1989-02-24T00:00:00.000Z","height":1.87,"weight":85,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":388271463,"name":"Nicolas Brussino","nationality":"ARG","sex":"male","date_of_birth":"1993-03-02T00:00:00.000Z","height":2,"weight":84,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":582760864,"name":"Nicolas Bruzzone","nationality":"ARG","sex":"male","date_of_birth":"1985-10-24T00:00:00.000Z","height":1.68,"weight":76,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":708871411,"name":"Nicolas Colsaerts","nationality":"BEL","sex":"male","date_of_birth":"1982-11-14T00:00:00.000Z","height":1.88,"weight":75,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":768215755,"name":"Nicolas Cordoba","nationality":"ARG","sex":"male","date_of_birth":"1989-11-20T00:00:00.000Z","height":1.65,"weight":71,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":162021826,"name":"Nicolas Cuestas","nationality":"URU","sex":"male","date_of_birth":"1986-12-08T00:00:00.000Z","height":1.8,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":153786575,"name":"Nicolas D'Oriano","nationality":"FRA","sex":"male","date_of_birth":"1997-05-05T00:00:00.000Z","height":1.75,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":997930388,"name":"Nicolas Ferreira","nationality":"BRA","sex":"male","date_of_birth":"1992-09-25T00:00:00.000Z","height":1.85,"weight":84,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":715985574,"name":"Nicolas Jacobi","nationality":"GER","sex":"male","date_of_birth":"1987-04-13T00:00:00.000Z","height":1.93,"weight":95,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":164743566,"name":"Nicolas Laprovittola","nationality":"ARG","sex":"male","date_of_birth":"1990-01-31T00:00:00.000Z","height":1.93,"weight":88,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":727420830,"name":"Nicolas Lionel Wettstein","nationality":"ECU","sex":"male","date_of_birth":"1981-03-30T00:00:00.000Z","height":1.71,"weight":71,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":433876140,"name":"Nicolas Mahut","nationality":"FRA","sex":"male","date_of_birth":"1982-01-21T00:00:00.000Z","height":1.9,"weight":82,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":148338040,"name":"Nicolas Marechal","nationality":"FRA","sex":"male","date_of_birth":"1987-03-04T00:00:00.000Z","height":1.98,"weight":93,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":586116656,"name":"Nicolas Martin Tripichio","nationality":"ARG","sex":"male","date_of_birth":"1996-01-05T00:00:00.000Z","height":1.71,"weight":71,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":27749600,"name":"Nicolas Nilo","nationality":"BRA","sex":"male","date_of_birth":"1987-08-04T00:00:00.000Z","height":1.95,"weight":92,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":213136925,"name":"Nicolas Pratt","nationality":"CAN","sex":"male","date_of_birth":"1985-07-10T00:00:00.000Z","height":1.83,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":238155568,"name":"Nicolas Roche","nationality":"IRL","sex":"male","date_of_birth":"1984-07-03T00:00:00.000Z","height":1.78,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":797725236,"name":"Nicolas Touzaint","nationality":"FRA","sex":"male","date_of_birth":"1980-05-10T00:00:00.000Z","height":1.75,"weight":62,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":228429250,"name":"Nicolas le Goff","nationality":"FRA","sex":"male","date_of_birth":"1992-02-15T00:00:00.000Z","height":2.06,"weight":115,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":328461296,"name":"Nicole Acevedo","nationality":"COL","sex":"female","date_of_birth":"1994-10-15T00:00:00.000Z","height":1.66,"weight":70,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":385843788,"name":"Nicole Ahsinger","nationality":"USA","sex":"female","date_of_birth":"1998-05-12T00:00:00.000Z","height":1.63,"weight":58,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":951251683,"name":"Nicole Beck","nationality":"AUS","sex":"female","date_of_birth":"1988-05-28T00:00:00.000Z","height":1.68,"weight":66,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":773243020,"name":"Nicole Beukers","nationality":"NED","sex":"female","date_of_birth":"1990-10-07T00:00:00.000Z","height":1.7,"weight":66,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":87221734,"name":"Nicole Broch Larsen","nationality":"DEN","sex":"female","date_of_birth":"1993-05-14T00:00:00.000Z","height":1.79,"weight":75,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":933579518,"name":"Nicole Buchler","nationality":"SUI","sex":"female","date_of_birth":"1983-12-17T00:00:00.000Z","height":1.62,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":982976366,"name":"Nicole Hare","nationality":"CAN","sex":"female","date_of_birth":"1994-07-26T00:00:00.000Z","height":1.77,"weight":76,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":25839351,"name":"Nicole Laird","nationality":"AUS","sex":"female","date_of_birth":"1993-02-18T00:00:00.000Z","height":1.91,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":166434763,"name":"Nicole Regnier","nationality":"COL","sex":"female","date_of_birth":"1995-02-28T00:00:00.000Z","height":1.7,"weight":62,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":297449748,"name":"Nicole Sifuentes","nationality":"CAN","sex":"female","date_of_birth":"1986-06-30T00:00:00.000Z","height":1.77,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":543974028,"name":"Nicole van der Velden","nationality":"ARU","sex":"female","date_of_birth":"1994-10-26T00:00:00.000Z","height":1.68,"weight":62,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":853691804,"name":"Nida Ustundag","nationality":"TUR","sex":"female","date_of_birth":"1996-10-21T00:00:00.000Z","height":1.79,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":681034829,"name":"Niek Kimmann","nationality":"NED","sex":"male","date_of_birth":"1996-05-20T00:00:00.000Z","height":1.89,"weight":90,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":"Aged just 19, Niek Kimmann won the 2015 World Championship in Zolder, Belgium. Before that, he had already taken bronze in the team event at the Nanjing 2014 Youth Olympic Games."},{"id":768436561,"name":"Nien-Chin Chen","nationality":"TPE","sex":"female","date_of_birth":"1997-05-10T00:00:00.000Z","height":1.69,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":450335121,"name":"Nigel Levine","nationality":"GBR","sex":"male","date_of_birth":"1989-04-30T00:00:00.000Z","height":1.76,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":970010589,"name":"Nigel Paul","nationality":"TTO","sex":"male","date_of_birth":"1989-06-27T00:00:00.000Z","height":1.94,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":481034512,"name":"Nigina Sharipova","nationality":"UZB","sex":"female","date_of_birth":"1995-08-10T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":318020679,"name":"Nigora Tursunkulova","nationality":"UZB","sex":"female","date_of_birth":"1999-04-04T00:00:00.000Z","height":1.81,"weight":67,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":4669727,"name":"Nihel Cheikh Rouhou","nationality":"TUN","sex":"female","date_of_birth":"1987-01-05T00:00:00.000Z","height":1.64,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":702207367,"name":"Nijat Rahimov","nationality":"KAZ","sex":"male","date_of_birth":"1993-08-13T00:00:00.000Z","height":1.76,"weight":76,"sport":"weightlifting","gold":1,"silver":0,"bronze":0,"info":null},{"id":17860991,"name":"Nijat Shikhalizada","nationality":"AZE","sex":"male","date_of_birth":"1988-10-12T00:00:00.000Z","height":1.64,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":872456959,"name":"Nijel Amos","nationality":"BOT","sex":"male","date_of_birth":"1994-03-15T00:00:00.000Z","height":1.79,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":964306539,"name":"Nik Henigman","nationality":"SLO","sex":"male","date_of_birth":"1995-12-04T00:00:00.000Z","height":1.99,"weight":95,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":88815979,"name":"Nike Lorenz","nationality":"GER","sex":"female","date_of_birth":"1997-03-12T00:00:00.000Z","height":1.7,"weight":69,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":528950819,"name":"Nikita Glasnovic","nationality":"SWE","sex":"female","date_of_birth":"1995-01-17T00:00:00.000Z","height":1.75,"weight":57,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":318898453,"name":"Nikita Liamin","nationality":"RUS","sex":"male","date_of_birth":"1985-10-14T00:00:00.000Z","height":2.04,"weight":90,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":805742930,"name":"Nikita Lobintsev","nationality":"RUS","sex":"male","date_of_birth":"1988-11-21T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":358430642,"name":"Nikita Morgachev","nationality":"RUS","sex":"male","date_of_birth":"1981-05-03T00:00:00.000Z","height":1.96,"weight":98,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":405340018,"name":"Nikita Nagornyy","nationality":"RUS","sex":"male","date_of_birth":"1997-02-12T00:00:00.000Z","height":1.66,"weight":67,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":null},{"id":407904416,"name":"Nikita Pablo","nationality":"AUS","sex":"female","date_of_birth":"1995-01-08T00:00:00.000Z","height":1.68,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":564650240,"name":"Nikita Rafalovich","nationality":"UZB","sex":"male","date_of_birth":"1993-10-10T00:00:00.000Z","height":1.9,"weight":78,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":491633637,"name":"Nikita Shleikher","nationality":"RUS","sex":"male","date_of_birth":"1998-06-10T00:00:00.000Z","height":1.68,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":250399527,"name":"Nikita Shurshin","nationality":"RUS","sex":"male","date_of_birth":"1993-04-08T00:00:00.000Z","height":1.92,"weight":96,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":681571834,"name":"Nikki Hamblin","nationality":"NZL","sex":"female","date_of_birth":"1988-05-20T00:00:00.000Z","height":1.65,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":298646249,"name":"Nikki Harris","nationality":"GBR","sex":"female","date_of_birth":"1986-12-30T00:00:00.000Z","height":1.76,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":532497224,"name":"Nikki Pradhan","nationality":"IND","sex":"female","date_of_birth":"1993-12-08T00:00:00.000Z","height":1.53,"weight":45,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":861176361,"name":"Nikkita Holder","nationality":"CAN","sex":"female","date_of_birth":"1987-05-07T00:00:00.000Z","height":1.7,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":548573991,"name":"Niklas Landin Jacobsen","nationality":"DEN","sex":"male","date_of_birth":"1988-12-19T00:00:00.000Z","height":2.01,"weight":102,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":606084836,"name":"Niklas Larsen","nationality":"DEN","sex":"male","date_of_birth":"1997-03-22T00:00:00.000Z","height":1.8,"weight":74,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":898426175,"name":"Niklas Laustsen","nationality":"DEN","sex":"male","date_of_birth":"1992-08-30T00:00:00.000Z","height":1.89,"weight":95,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":852806194,"name":"Niklas Lindgren","nationality":"FIN","sex":"male","date_of_birth":"1988-05-18T00:00:00.000Z","height":1.77,"weight":71,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":497912437,"name":"Niklas Suele","nationality":"GER","sex":"male","date_of_birth":"1995-09-03T00:00:00.000Z","height":1.94,"weight":100,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":256324348,"name":"Niklas Wellen","nationality":"GER","sex":"male","date_of_birth":"1994-12-14T00:00:00.000Z","height":1.85,"weight":77,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":539021692,"name":"Nikol Merizaj","nationality":"ALB","sex":"female","date_of_birth":"1998-08-07T00:00:00.000Z","height":1.8,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":440246912,"name":"Nikola Girke","nationality":"CAN","sex":"female","date_of_birth":"1977-12-30T00:00:00.000Z","height":1.78,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":680564901,"name":"Nikola Jaksic","nationality":"SRB","sex":"male","date_of_birth":"1997-01-17T00:00:00.000Z","height":1.97,"weight":89,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":799131659,"name":"Nikola Jokic","nationality":"SRB","sex":"male","date_of_birth":"1995-02-19T00:00:00.000Z","height":2.09,"weight":115,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":195768771,"name":"Nikola Kalinic","nationality":"SRB","sex":"male","date_of_birth":"1991-11-08T00:00:00.000Z","height":2.02,"weight":102,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":483433829,"name":"Nikola Karabatic","nationality":"FRA","sex":"male","date_of_birth":"1984-04-11T00:00:00.000Z","height":1.94,"weight":104,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":202450860,"name":"Nikola Mazurova","nationality":"CZE","sex":"female","date_of_birth":"1994-11-22T00:00:00.000Z","height":1.6,"weight":68,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":854142844,"name":"Nikola Mirotic","nationality":"ESP","sex":"male","date_of_birth":"1991-02-11T00:00:00.000Z","height":2.08,"weight":100,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":759289661,"name":"Nikolai Kuksenkov","nationality":"RUS","sex":"male","date_of_birth":"1989-06-02T00:00:00.000Z","height":1.72,"weight":65,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":null},{"id":111209519,"name":"Nikolai Novosjolov","nationality":"EST","sex":"male","date_of_birth":"1980-06-09T00:00:00.000Z","height":1.91,"weight":93,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":80208991,"name":"Nikolas Sylvester","nationality":"VIN","sex":"male","date_of_birth":"2000-01-20T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":913573838,"name":"Nikolaus Resch","nationality":"AUT","sex":"male","date_of_birth":"1984-08-30T00:00:00.000Z","height":1.88,"weight":84,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":434491444,"name":"Nikolay Kovalev","nationality":"RUS","sex":"male","date_of_birth":"1986-10-28T00:00:00.000Z","height":1.77,"weight":74,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":705394191,"name":"Nikolay Nikolaev Bayryakov","nationality":"BUL","sex":"male","date_of_birth":"1989-09-05T00:00:00.000Z","height":1.8,"weight":89,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":932397060,"name":"Nikoleta Kyriakopoulou","nationality":"GRE","sex":"female","date_of_birth":"1986-03-21T00:00:00.000Z","height":1.67,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":984974702,"name":"Nikolina Moldovan","nationality":"SRB","sex":"female","date_of_birth":"1990-05-01T00:00:00.000Z","height":1.67,"weight":67,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":553206872,"name":"Nikoloz Basilashvili","nationality":"GEO","sex":"male","date_of_birth":"1992-02-23T00:00:00.000Z","height":1.85,"weight":80,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":932198619,"name":"Nile Wilson","nationality":"GBR","sex":"male","date_of_birth":"1996-01-17T00:00:00.000Z","height":1.66,"weight":60,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":820507010,"name":"Nilla Fischer","nationality":"SWE","sex":"female","date_of_birth":"1984-08-02T00:00:00.000Z","height":1.77,"weight":74,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":426844727,"name":"Nils Brembach","nationality":"GER","sex":"male","date_of_birth":"1993-02-23T00:00:00.000Z","height":1.84,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":677508603,"name":"Nils Jakob Hoff","nationality":"NOR","sex":"male","date_of_birth":"1985-02-05T00:00:00.000Z","height":null,"weight":null,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":599711815,"name":"Nils Petersen","nationality":"GER","sex":"male","date_of_birth":"1988-12-06T00:00:00.000Z","height":1.88,"weight":80,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":471728310,"name":"Nils Schomber","nationality":"GER","sex":"male","date_of_birth":"1994-03-15T00:00:00.000Z","height":1.83,"weight":72,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":625149958,"name":"Nils van 't Hoenderdaal","nationality":"NED","sex":"male","date_of_birth":"1993-10-03T00:00:00.000Z","height":1.78,"weight":86,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":424937241,"name":"Nilson Moreira da Silva","nationality":"BRA","sex":"male","date_of_birth":"1976-12-24T00:00:00.000Z","height":1.78,"weight":74,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":828507480,"name":"Niluka Karunaratne","nationality":"SRI","sex":"male","date_of_birth":"1985-02-13T00:00:00.000Z","height":1.76,"weight":73,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":690491812,"name":"Niluka Rajasekara","nationality":"SRI","sex":"female","date_of_birth":"1982-03-17T00:00:00.000Z","height":1.55,"weight":42,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":143552621,"name":"Nima Alamian","nationality":"IRI","sex":"male","date_of_birth":"1992-12-24T00:00:00.000Z","height":1.74,"weight":70,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":624774853,"name":"Nina Amir","nationality":"ISR","sex":"female","date_of_birth":"1999-01-17T00:00:00.000Z","height":1.7,"weight":62,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":641314378,"name":"Nina Balaban","nationality":"MKD","sex":"female","date_of_birth":"1995-11-02T00:00:00.000Z","height":1.58,"weight":58,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":149794967,"name":"Nina Christen","nationality":"SUI","sex":"female","date_of_birth":"1994-02-07T00:00:00.000Z","height":1.6,"weight":57,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":61298807,"name":"Nina Derwael","nationality":"BEL","sex":"female","date_of_birth":"2000-03-26T00:00:00.000Z","height":1.65,"weight":46,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":116856979,"name":"Nina Hemmer","nationality":"GER","sex":"female","date_of_birth":"1993-02-16T00:00:00.000Z","height":1.65,"weight":55,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":47803555,"name":"Nina Hollensen","nationality":"DEN","sex":"female","date_of_birth":"1992-04-24T00:00:00.000Z","height":1.83,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":322856280,"name":"Nina Rangelova","nationality":"BUL","sex":"female","date_of_birth":"1990-10-22T00:00:00.000Z","height":1.7,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":844998028,"name":"Ning Ding","nationality":"CHN","sex":"female","date_of_birth":"1990-06-20T00:00:00.000Z","height":1.71,"weight":63,"sport":"table tennis","gold":2,"silver":0,"bronze":0,"info":null},{"id":137640462,"name":"Ning Gao","nationality":"SIN","sex":"male","date_of_birth":"1982-10-11T00:00:00.000Z","height":1.79,"weight":80,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":802449703,"name":"Ning Wei","nationality":"CHN","sex":"female","date_of_birth":"1982-08-05T00:00:00.000Z","height":1.67,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":703857036,"name":"Nino Bertasio","nationality":"ITA","sex":"male","date_of_birth":"1988-07-30T00:00:00.000Z","height":1.83,"weight":88,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":680794045,"name":"Nino Salukvadze","nationality":"GEO","sex":"female","date_of_birth":"1969-02-01T00:00:00.000Z","height":1.68,"weight":58,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":464025430,"name":"Nino Schurter","nationality":"SUI","sex":"male","date_of_birth":"1986-05-13T00:00:00.000Z","height":1.73,"weight":68,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":"Swiss-born mountain cyclist Nino Schurter holds four world titles taken between 2009 and 2015, along with two Olympic medals: silver at London 2012 and bronze at Beijing 2008."},{"id":95604146,"name":"Nirmla","nationality":"IND","sex":"female","date_of_birth":"1995-07-15T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":800567218,"name":"Nirra Fields","nationality":"CAN","sex":"female","date_of_birth":"1993-12-03T00:00:00.000Z","height":1.7,"weight":57,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":769356228,"name":"Nisha Rawal","nationality":"NEP","sex":"female","date_of_birth":"1995-09-11T00:00:00.000Z","height":1.68,"weight":73,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":803251094,"name":"Nitendra Singh","nationality":"IND","sex":"male","date_of_birth":"1986-09-29T00:00:00.000Z","height":1.72,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":340570863,"name":"Nitya Krishinda Maheswari","nationality":"INA","sex":"female","date_of_birth":"1988-12-16T00:00:00.000Z","height":1.68,"weight":65,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":980419661,"name":"Nivaldo Nadhir Diaz Gomez","nationality":"CUB","sex":"male","date_of_birth":"1994-03-24T00:00:00.000Z","height":2,"weight":81,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":399376832,"name":"Njisane Phillip","nationality":"TTO","sex":"male","date_of_birth":"1991-05-29T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":169340447,"name":"Nkosingiphile Gumede","nationality":"RSA","sex":"male","date_of_birth":"1993-12-01T00:00:00.000Z","height":1.92,"weight":95,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":228913165,"name":"Noah Al-Khulaifi","nationality":"QAT","sex":"male","date_of_birth":"1999-05-10T00:00:00.000Z","height":1.9,"weight":86,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":649129831,"name":"Noah Mascoll-Gomes","nationality":"ANT","sex":"male","date_of_birth":"1999-05-27T00:00:00.000Z","height":1.75,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":779523971,"name":"Noah Sonko Sundberg","nationality":"SWE","sex":"male","date_of_birth":"1996-06-06T00:00:00.000Z","height":1.86,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":585460949,"name":"Nobuhle Majika","nationality":"ZIM","sex":"female","date_of_birth":"1991-05-09T00:00:00.000Z","height":1.59,"weight":53,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":674436984,"name":"Nobukhosi Palma Ncube","nationality":"ZIM","sex":"female","date_of_birth":"1993-02-17T00:00:00.000Z","height":1.59,"weight":54,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":678262840,"name":"Nobuya Kato","nationality":"JPN","sex":"male","date_of_birth":"1995-04-16T00:00:00.000Z","height":1.85,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":26922064,"name":"Noe Delpech","nationality":"FRA","sex":"male","date_of_birth":"1986-02-22T00:00:00.000Z","height":1.81,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":932371435,"name":"Noel van T End","nationality":"NED","sex":"male","date_of_birth":"1991-06-15T00:00:00.000Z","height":1.85,"weight":93,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":485719792,"name":"Noelie Yarigo","nationality":"BEN","sex":"female","date_of_birth":"1985-12-26T00:00:00.000Z","height":1.68,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":774261783,"name":"Noelle Montcalm","nationality":"CAN","sex":"female","date_of_birth":"1988-04-03T00:00:00.000Z","height":1.68,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":482317811,"name":"Noemi Batki","nationality":"ITA","sex":"female","date_of_birth":"1987-10-12T00:00:00.000Z","height":1.67,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":815901454,"name":"Noemi Girardet","nationality":"SUI","sex":"female","date_of_birth":"1994-12-12T00:00:00.000Z","height":1.74,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":656797479,"name":"Noemie Kober","nationality":"FRA","sex":"female","date_of_birth":"1993-12-15T00:00:00.000Z","height":1.8,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":698687305,"name":"Noemie Thomas","nationality":"CAN","sex":"female","date_of_birth":"1996-02-04T00:00:00.000Z","height":1.63,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":486513538,"name":"Noko Matlou","nationality":"RSA","sex":"female","date_of_birth":"1985-09-30T00:00:00.000Z","height":1.66,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":124693732,"name":"Nomathemba Ntsibande","nationality":"RSA","sex":"female","date_of_birth":"1986-04-19T00:00:00.000Z","height":1.69,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":665606530,"name":"Non Stanford","nationality":"GBR","sex":"female","date_of_birth":"1989-01-08T00:00:00.000Z","height":1.7,"weight":55,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":46541403,"name":"Noora Ruskola","nationality":"FIN","sex":"female","date_of_birth":"1994-12-21T00:00:00.000Z","height":1.54,"weight":53,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":45473346,"name":"Noora Tamminen","nationality":"FIN","sex":"female","date_of_birth":"1990-10-30T00:00:00.000Z","height":1.68,"weight":59,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":547769017,"name":"Nooralotta Neziri","nationality":"FIN","sex":"female","date_of_birth":"1992-11-09T00:00:00.000Z","height":1.74,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":645011476,"name":"Nooran Ahmed Ali Ba Matraf","nationality":"YEM","sex":"female","date_of_birth":"1999-11-25T00:00:00.000Z","height":1.66,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":385609976,"name":"Nora Gjakova","nationality":"KOS","sex":"female","date_of_birth":"1992-08-17T00:00:00.000Z","height":1.65,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":483970756,"name":"Nora Mork","nationality":"NOR","sex":"female","date_of_birth":"1991-04-05T00:00:00.000Z","height":1.69,"weight":null,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":989374073,"name":"Nora Subschinski","nationality":"GER","sex":"female","date_of_birth":"1988-06-05T00:00:00.000Z","height":1.59,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":350577535,"name":"Norbert Hosnyanszky","nationality":"HUN","sex":"male","date_of_birth":"1984-03-04T00:00:00.000Z","height":1.96,"weight":101,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":126121033,"name":"Norbert Szabian","nationality":"HUN","sex":"male","date_of_birth":"1982-09-24T00:00:00.000Z","height":1.82,"weight":97,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":813300024,"name":"Norbert Trandafir","nationality":"ROU","sex":"male","date_of_birth":"1988-02-08T00:00:00.000Z","height":1.9,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":993318561,"name":"Noriko Taniguchi","nationality":"JPN","sex":"female","date_of_birth":"1992-09-07T00:00:00.000Z","height":1.66,"weight":66,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":718571072,"name":"Norisbeth Agudo","nationality":"VEN","sex":"female","date_of_birth":"1992-05-22T00:00:00.000Z","height":1.63,"weight":55,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":253052328,"name":"Noshad Alamiyan","nationality":"IRI","sex":"male","date_of_birth":"1991-11-21T00:00:00.000Z","height":1.7,"weight":67,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":129615,"name":"Nothando Vilakazi","nationality":"RSA","sex":"female","date_of_birth":"1988-10-28T00:00:00.000Z","height":1.6,"weight":53,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":742257212,"name":"Nouchka Fontijn","nationality":"NED","sex":"female","date_of_birth":"1987-11-09T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":1,"bronze":0,"info":null},{"id":609989806,"name":"Nour Elayoubi","nationality":"EGY","sex":"female","date_of_birth":"1997-01-16T00:00:00.000Z","height":1.67,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":753747298,"name":"Nour Elhouda Ettaieb","nationality":"TUN","sex":"female","date_of_birth":"1996-10-15T00:00:00.000Z","height":1.7,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":947989381,"name":"Noura Mana","nationality":"MAR","sex":"female","date_of_birth":"1997-12-12T00:00:00.000Z","height":1.7,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":792186214,"name":"Noura Mohamed","nationality":"EGY","sex":"female","date_of_birth":"1998-03-05T00:00:00.000Z","height":1.73,"weight":60,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":913461449,"name":"Novak Djokovic","nationality":"SRB","sex":"male","date_of_birth":"1987-05-22T00:00:00.000Z","height":1.88,"weight":88,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":"Top of the world rankings since July 2014, Serbia's Novak Djokovic crowned his glorious career by winning his first trophy at Roland Garros in 2016. In all, \"Nole\" has 12 Grand Slams and a bronze medal won at the Beijing 2008 Olympic Games."},{"id":123381244,"name":"Novlene Williams-Mills","nationality":"JAM","sex":"female","date_of_birth":"1982-04-26T00:00:00.000Z","height":1.68,"weight":57,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":795015528,"name":"Nozomi Okuhara","nationality":"JPN","sex":"female","date_of_birth":"1995-03-13T00:00:00.000Z","height":1.56,"weight":51,"sport":"badminton","gold":0,"silver":0,"bronze":1,"info":null},{"id":860526701,"name":"Nozomi Sato","nationality":"JPN","sex":"female","date_of_birth":"1986-07-03T00:00:00.000Z","height":1.73,"weight":61,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":158456610,"name":"Nubia Soares","nationality":"BRA","sex":"female","date_of_birth":"1996-03-26T00:00:00.000Z","height":1.76,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":599504171,"name":"Nuno Saraiva","nationality":"POR","sex":"male","date_of_birth":"1994-03-16T00:00:00.000Z","height":1.76,"weight":76,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":552664061,"name":"Nur Dhabitah Sabri","nationality":"MAS","sex":"female","date_of_birth":"1999-07-12T00:00:00.000Z","height":1.51,"weight":53,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":135131175,"name":"Nur Shazrin Mohamad Latif","nationality":"MAS","sex":"female","date_of_birth":"1998-02-02T00:00:00.000Z","height":1.67,"weight":63,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":799693970,"name":"Nur Tatar","nationality":"TUR","sex":"female","date_of_birth":"1992-08-16T00:00:00.000Z","height":1.8,"weight":67,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":231587999,"name":"Nuria Diosdado","nationality":"MEX","sex":"female","date_of_birth":"1990-08-22T00:00:00.000Z","height":1.7,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":1716955,"name":"Nurislam Sanayev","nationality":"KAZ","sex":"male","date_of_birth":"1991-02-09T00:00:00.000Z","height":1.63,"weight":57,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":147846334,"name":"Nurmakhan Tinaliyev","nationality":"KAZ","sex":"male","date_of_birth":"1988-01-10T00:00:00.000Z","height":1.98,"weight":130,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":997050552,"name":"Nwanneka Okwelogu","nationality":"NGR","sex":"female","date_of_birth":"1995-05-05T00:00:00.000Z","height":1.73,"weight":100,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":395961774,"name":"Nyakisi Adero","nationality":"UGA","sex":"female","date_of_birth":"1986-07-02T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":699476083,"name":"Nycke Groot","nationality":"NED","sex":"female","date_of_birth":"1988-05-04T00:00:00.000Z","height":1.75,"weight":70,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":959020954,"name":"Nzingha Prescod","nationality":"USA","sex":"female","date_of_birth":"1992-08-14T00:00:00.000Z","height":1.63,"weight":62,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":998833102,"name":"O'dayne Richards","nationality":"JAM","sex":"male","date_of_birth":"1988-12-14T00:00:00.000Z","height":1.77,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":838284014,"name":"Oana Manea","nationality":"ROU","sex":"female","date_of_birth":"1985-04-18T00:00:00.000Z","height":1.77,"weight":78,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":703472773,"name":"Obada Alkasbeh","nationality":"JOR","sex":"male","date_of_birth":"1994-07-30T00:00:00.000Z","height":1.66,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":381088762,"name":"Odbayar Ganbaatar","nationality":"MGL","sex":"male","date_of_birth":"1989-08-20T00:00:00.000Z","height":1.6,"weight":null,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":2156402,"name":"Odd Arne Brekne","nationality":"NOR","sex":"male","date_of_birth":"1984-09-01T00:00:00.000Z","height":null,"weight":null,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":894451060,"name":"Odette Giuffrida","nationality":"ITA","sex":"female","date_of_birth":"1994-10-12T00:00:00.000Z","height":1.6,"weight":52,"sport":"judo","gold":0,"silver":1,"bronze":0,"info":null},{"id":603038504,"name":"Odunayo Folasade Adekuoroye","nationality":"NGR","sex":"female","date_of_birth":"1993-12-10T00:00:00.000Z","height":1.69,"weight":53,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":115751224,"name":"Odyssefs Meladinis","nationality":"GRE","sex":"male","date_of_birth":"1990-04-05T00:00:00.000Z","height":1.94,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":202190502,"name":"Offiong Edem","nationality":"NGR","sex":"female","date_of_birth":"1986-12-31T00:00:00.000Z","height":1.5,"weight":70,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":598707040,"name":"Oghenekaro Etebo","nationality":"NGR","sex":"male","date_of_birth":"1995-11-09T00:00:00.000Z","height":1.72,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":129929116,"name":"Ogho-Oghene Egwero","nationality":"NGR","sex":"male","date_of_birth":"1988-11-26T00:00:00.000Z","height":1.52,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":896056444,"name":"Ojie Edoburun","nationality":"GBR","sex":"male","date_of_birth":"1996-06-02T00:00:00.000Z","height":1.85,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":520738573,"name":"Okcheol Kim","nationality":"KOR","sex":"male","date_of_birth":"1994-11-16T00:00:00.000Z","height":1.79,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":800670857,"name":"Okechukwu Azubuike","nationality":"NGR","sex":"male","date_of_birth":"1997-04-19T00:00:00.000Z","height":1.7,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":332705415,"name":"Oksana Chusovitina","nationality":"UZB","sex":"female","date_of_birth":"1975-06-19T00:00:00.000Z","height":1.53,"weight":43,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":962326331,"name":"Oksana Herhel","nationality":"UKR","sex":"female","date_of_birth":"1994-06-20T00:00:00.000Z","height":1.64,"weight":58,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":466004791,"name":"Oksana Okuneva","nationality":"UKR","sex":"female","date_of_birth":"1990-03-14T00:00:00.000Z","height":1.75,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":845220778,"name":"Oksana Shkurat","nationality":"UKR","sex":"female","date_of_birth":"1993-07-30T00:00:00.000Z","height":1.7,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":629436932,"name":"Oktawia Nowacka","nationality":"POL","sex":"female","date_of_birth":"1991-01-02T00:00:00.000Z","height":1.8,"weight":60,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":1,"info":null},{"id":602321842,"name":"Olaf Tufte","nationality":"NOR","sex":"male","date_of_birth":"1976-04-27T00:00:00.000Z","height":null,"weight":null,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":137938891,"name":"Olaseni Lawal","nationality":"NGR","sex":"male","date_of_birth":"1986-10-08T00:00:00.000Z","height":2.08,"weight":102,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":48085407,"name":"Olaya Perez Pazo","nationality":"VEN","sex":"female","date_of_birth":"1983-06-07T00:00:00.000Z","height":1.8,"weight":66,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":224381692,"name":"Olcay Cakir","nationality":"TUR","sex":"female","date_of_birth":"1993-07-13T00:00:00.000Z","height":1.82,"weight":60,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":925700475,"name":"Ole Hesselbjerg","nationality":"DEN","sex":"male","date_of_birth":"1990-04-23T00:00:00.000Z","height":1.85,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":76211755,"name":"Ole Kristian Bryhn","nationality":"NOR","sex":"male","date_of_birth":"1989-05-01T00:00:00.000Z","height":null,"weight":null,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":489944165,"name":"Oleg Antonov","nationality":"ITA","sex":"male","date_of_birth":"1988-07-28T00:00:00.000Z","height":1.98,"weight":88,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":265324138,"name":"Oleg Stepko","nationality":"AZE","sex":"male","date_of_birth":"1994-03-25T00:00:00.000Z","height":1.63,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":731979766,"name":"Oleg Tarnovschi","nationality":"MDA","sex":"male","date_of_birth":"1992-04-10T00:00:00.000Z","height":1.81,"weight":80,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":57591720,"name":"Oleg Verniaiev","nationality":"UKR","sex":"male","date_of_birth":"1993-09-29T00:00:00.000Z","height":1.6,"weight":56,"sport":"gymnastics","gold":1,"silver":1,"bronze":0,"info":null},{"id":400214523,"name":"Oleg Zhestkov","nationality":"RUS","sex":"male","date_of_birth":"1987-01-20T00:00:00.000Z","height":1.88,"weight":98,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":727773897,"name":"Oleh Omelchuk","nationality":"UKR","sex":"male","date_of_birth":"1983-06-07T00:00:00.000Z","height":1.7,"weight":68,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":768314513,"name":"Oleh Tsarkov","nationality":"UKR","sex":"male","date_of_birth":"1988-03-22T00:00:00.000Z","height":1.74,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":160961676,"name":"Oleksandr Chernetskyy","nationality":"UKR","sex":"male","date_of_birth":"1984-02-17T00:00:00.000Z","height":1.95,"weight":130,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":926202159,"name":"Oleksandr Gorshkovozov","nationality":"UKR","sex":"male","date_of_birth":"1991-07-18T00:00:00.000Z","height":1.73,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":497898586,"name":"Oleksandr Pielieshenko","nationality":"UKR","sex":"male","date_of_birth":"1994-01-07T00:00:00.000Z","height":1.7,"weight":85,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":801537785,"name":"Oleksandr Sitkovskyy","nationality":"UKR","sex":"male","date_of_birth":"1978-06-09T00:00:00.000Z","height":1.84,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":917048345,"name":"Oleksandr Tugaryev","nationality":"UKR","sex":"male","date_of_birth":"1995-07-15T00:00:00.000Z","height":1.67,"weight":63,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":822288525,"name":"Oleksandra Gridasova","nationality":"UKR","sex":"female","date_of_birth":"1995-07-05T00:00:00.000Z","height":1.73,"weight":53,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":651167532,"name":"Oleksandra Sabada","nationality":"UKR","sex":"female","date_of_birth":"1991-01-06T00:00:00.000Z","height":1.68,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":79936055,"name":"Oleksiy Kasyanov","nationality":"UKR","sex":"male","date_of_birth":"1985-08-26T00:00:00.000Z","height":1.91,"weight":88,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":872028854,"name":"Oleksiy Semenov","nationality":"UKR","sex":"male","date_of_birth":"1982-06-27T00:00:00.000Z","height":1.98,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":338267081,"name":"Olena Buryak","nationality":"UKR","sex":"female","date_of_birth":"1988-02-08T00:00:00.000Z","height":1.96,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":571691076,"name":"Olena Dmytrash","nationality":"UKR","sex":"female","date_of_birth":"1991-12-01T00:00:00.000Z","height":1.73,"weight":51,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":112473834,"name":"Olena Fedorova","nationality":"UKR","sex":"female","date_of_birth":"1986-11-14T00:00:00.000Z","height":1.64,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":282462242,"name":"Olena Grechykhina","nationality":"UKR","sex":"female","date_of_birth":"1991-07-11T00:00:00.000Z","height":1.78,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":905135133,"name":"Olena Kolesnychenko","nationality":"UKR","sex":"female","date_of_birth":"1993-06-03T00:00:00.000Z","height":1.72,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":55258833,"name":"Olena Kostevych","nationality":"UKR","sex":"female","date_of_birth":"1985-04-14T00:00:00.000Z","height":1.6,"weight":52,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":759603563,"name":"Olena Kravatska","nationality":"UKR","sex":"female","date_of_birth":"1992-06-22T00:00:00.000Z","height":1.76,"weight":66,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":584752118,"name":"Olena Kryvytska","nationality":"UKR","sex":"female","date_of_birth":"1987-02-23T00:00:00.000Z","height":1.74,"weight":62,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":527015303,"name":"Olena Pavlukhina","nationality":"AZE","sex":"female","date_of_birth":"1989-03-01T00:00:00.000Z","height":1.78,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":982514520,"name":"Olena Voronina","nationality":"UKR","sex":"female","date_of_birth":"1990-05-05T00:00:00.000Z","height":1.65,"weight":65,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":972107687,"name":"Olena Yanovska","nationality":"UKR","sex":"female","date_of_birth":"1990-02-15T00:00:00.000Z","height":1.71,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":853982899,"name":"Olesya Povkh","nationality":"UKR","sex":"female","date_of_birth":"1987-10-18T00:00:00.000Z","height":1.67,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":3330883,"name":"Olexandr Nadtoka","nationality":"UKR","sex":"male","date_of_birth":"1991-03-06T00:00:00.000Z","height":1.95,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":651203892,"name":"Olfa Charni","nationality":"TUN","sex":"female","date_of_birth":"1980-05-24T00:00:00.000Z","height":1.76,"weight":65,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":514784334,"name":"Olga Akopian","nationality":"RUS","sex":"female","date_of_birth":"1985-03-04T00:00:00.000Z","height":1.76,"weight":63,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":834977661,"name":"Olga Golodna","nationality":"UKR","sex":"female","date_of_birth":"1991-11-14T00:00:00.000Z","height":1.83,"weight":96,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":148544473,"name":"Olga Gorbunova","nationality":"RUS","sex":"female","date_of_birth":"1993-08-27T00:00:00.000Z","height":1.69,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":839908037,"name":"Olga Ismayilova","nationality":"AZE","sex":"female","date_of_birth":"1985-09-16T00:00:00.000Z","height":1.7,"weight":71,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":700198310,"name":"Olga Kharlan","nationality":"UKR","sex":"female","date_of_birth":"1990-09-04T00:00:00.000Z","height":1.72,"weight":68,"sport":"fencing","gold":0,"silver":1,"bronze":1,"info":null},{"id":34701189,"name":"Olga Kochneva","nationality":"RUS","sex":"female","date_of_birth":"1988-06-29T00:00:00.000Z","height":1.68,"weight":58,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":959644793,"name":"Olga Leleiko","nationality":"UKR","sex":"female","date_of_birth":"1977-07-21T00:00:00.000Z","height":1.78,"weight":68,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":101246911,"name":"Olga Rypakova","nationality":"KAZ","sex":"female","date_of_birth":"1984-11-30T00:00:00.000Z","height":1.83,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":58276308,"name":"Olga Safronova","nationality":"KAZ","sex":"female","date_of_birth":"1991-11-05T00:00:00.000Z","height":1.71,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":847854167,"name":"Olga Saladukha","nationality":"UKR","sex":"female","date_of_birth":"1983-06-04T00:00:00.000Z","height":1.76,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":619903029,"name":"Olga Savchuk","nationality":"UKR","sex":"female","date_of_birth":"1987-09-20T00:00:00.000Z","height":1.77,"weight":67,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":874685403,"name":"Olga Senyuk","nationality":"AZE","sex":"female","date_of_birth":"1991-01-23T00:00:00.000Z","height":1.75,"weight":53,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":257199398,"name":"Olga Umaralieva","nationality":"UZB","sex":"female","date_of_birth":"1988-02-05T00:00:00.000Z","height":1.61,"weight":58,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":341366636,"name":"Olga Zabelinskaya","nationality":"RUS","sex":"female","date_of_birth":"1980-05-10T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":62936804,"name":"Olha Bibik","nationality":"UKR","sex":"female","date_of_birth":"1990-02-05T00:00:00.000Z","height":1.73,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":876726793,"name":"Olha Kotovska","nationality":"UKR","sex":"female","date_of_birth":"1983-12-05T00:00:00.000Z","height":1.67,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":192536405,"name":"Olha Lyakhova","nationality":"UKR","sex":"female","date_of_birth":"1992-03-18T00:00:00.000Z","height":1.74,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":15281750,"name":"Olha Zemlyak","nationality":"UKR","sex":"female","date_of_birth":"1990-01-16T00:00:00.000Z","height":1.65,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":520170826,"name":"Olha Zolotarova","nationality":"UKR","sex":"female","date_of_birth":"1994-12-27T00:00:00.000Z","height":1.78,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":479817783,"name":"Olim Kurbanov","nationality":"TJK","sex":"male","date_of_birth":"1998-06-21T00:00:00.000Z","height":1.86,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":463296329,"name":"Oliver Dingley","nationality":"IRL","sex":"male","date_of_birth":"1992-11-24T00:00:00.000Z","height":1.63,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":82337,"name":"Oliver Geis","nationality":"GER","sex":"male","date_of_birth":"1991-06-20T00:00:00.000Z","height":1.76,"weight":86,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":671132115,"name":"Oliver Hegi","nationality":"SUI","sex":"male","date_of_birth":"1993-02-20T00:00:00.000Z","height":1.69,"weight":63,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":212228401,"name":"Oliver Korn","nationality":"GER","sex":"male","date_of_birth":"1984-06-10T00:00:00.000Z","height":1.81,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":922393211,"name":"Oliver Lindsay-Hague","nationality":"GBR","sex":"male","date_of_birth":"1990-10-08T00:00:00.000Z","height":1.8,"weight":83,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":65722266,"name":"Oliver Marach","nationality":"AUT","sex":"male","date_of_birth":"1980-07-16T00:00:00.000Z","height":1.84,"weight":84,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":626280477,"name":"Oliver Szymanski","nationality":"GER","sex":"male","date_of_birth":"1990-07-27T00:00:00.000Z","height":1.83,"weight":73,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":981211905,"name":"Olivera Jevtic","nationality":"SRB","sex":"female","date_of_birth":"1977-07-24T00:00:00.000Z","height":1.74,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":903316415,"name":"Olivera Moldovan","nationality":"SRB","sex":"female","date_of_birth":"1989-03-01T00:00:00.000Z","height":1.58,"weight":62,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":621595419,"name":"Olivia Borlee","nationality":"BEL","sex":"female","date_of_birth":"1986-04-10T00:00:00.000Z","height":1.72,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":631669580,"name":"Olivia Carnegie-Brown","nationality":"GBR","sex":"female","date_of_birth":"1991-03-28T00:00:00.000Z","height":1.81,"weight":73,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":929295902,"name":"Olivia Ekpone","nationality":"NGR","sex":"female","date_of_birth":"1993-01-05T00:00:00.000Z","height":null,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":966757117,"name":"Olivia Epoupa","nationality":"FRA","sex":"female","date_of_birth":"1994-04-30T00:00:00.000Z","height":1.64,"weight":53,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":451474447,"name":"Olivia Federici","nationality":"GBR","sex":"female","date_of_birth":"1990-02-13T00:00:00.000Z","height":1.67,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":285785090,"name":"Olivia Hofmann","nationality":"AUT","sex":"female","date_of_birth":"1992-08-08T00:00:00.000Z","height":1.63,"weight":58,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":724524822,"name":"Olivia Merry","nationality":"NZL","sex":"female","date_of_birth":"1992-03-16T00:00:00.000Z","height":1.82,"weight":74,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":77219667,"name":"Olivia Podmore","nationality":"NZL","sex":"female","date_of_birth":"1997-05-24T00:00:00.000Z","height":1.74,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":990163818,"name":"Olivia Schough","nationality":"SWE","sex":"female","date_of_birth":"1991-03-11T00:00:00.000Z","height":1.72,"weight":60,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":654242453,"name":"Olivia Smoliga","nationality":"USA","sex":"female","date_of_birth":"1994-10-12T00:00:00.000Z","height":1.88,"weight":74,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":157435063,"name":"Olivia van Rooijen","nationality":"NED","sex":"female","date_of_birth":"1988-10-29T00:00:00.000Z","height":1.82,"weight":71,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":788666996,"name":"Olivier Beer","nationality":"SUI","sex":"male","date_of_birth":"1990-10-18T00:00:00.000Z","height":1.8,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":758344424,"name":"Olivier Irabaruta","nationality":"BDI","sex":"male","date_of_birth":"1997-08-25T00:00:00.000Z","height":1.7,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":207164016,"name":"Olivier Nyokas","nationality":"FRA","sex":"male","date_of_birth":"1986-06-28T00:00:00.000Z","height":1.89,"weight":86,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":355963198,"name":"Olivier Siegelaar","nationality":"NED","sex":"male","date_of_birth":"1986-10-24T00:00:00.000Z","height":1.97,"weight":100,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":560709278,"name":"Olofunke Oshonaike","nationality":"NGR","sex":"female","date_of_birth":"1975-10-28T00:00:00.000Z","height":1.67,"weight":59,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":627306424,"name":"Olu Olamigoke","nationality":"NGR","sex":"male","date_of_birth":"1990-09-19T00:00:00.000Z","height":1.75,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":299832039,"name":"Oluwafemi Ajayi","nationality":"NGR","sex":"male","date_of_birth":"1996-01-29T00:00:00.000Z","height":1.72,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":255777326,"name":"Oluwakemi Adekoya","nationality":"BRN","sex":"female","date_of_birth":"1993-01-16T00:00:00.000Z","height":1.66,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":516591047,"name":"Oluwasegun Makinde","nationality":"CAN","sex":"male","date_of_birth":"1991-07-06T00:00:00.000Z","height":1.79,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":172510289,"name":"Oluwatobiloba Amusan","nationality":"NGR","sex":"female","date_of_birth":"1997-04-23T00:00:00.000Z","height":1.38,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":177654835,"name":"Olympia Aldersey","nationality":"AUS","sex":"female","date_of_birth":"1992-07-26T00:00:00.000Z","height":1.83,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":168982138,"name":"Olzhas Sattibayev","nationality":"KAZ","sex":"male","date_of_birth":"1988-05-02T00:00:00.000Z","height":1.6,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":103517404,"name":"Omar Andres Pinzon Garcia","nationality":"COL","sex":"male","date_of_birth":"1989-06-17T00:00:00.000Z","height":1.84,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":876447074,"name":"Omar Assar","nationality":"EGY","sex":"male","date_of_birth":"1991-07-22T00:00:00.000Z","height":1.96,"weight":93,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":307391721,"name":"Omar Elgeziry","nationality":"EGY","sex":"male","date_of_birth":"1985-01-20T00:00:00.000Z","height":1.85,"weight":77,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":424746712,"name":"Omar Hajjami","nationality":"MAR","sex":"male","date_of_birth":"1990-07-31T00:00:00.000Z","height":1.6,"weight":58,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":791818154,"name":"Omar Hassan","nationality":"EGY","sex":"male","date_of_birth":"1991-04-04T00:00:00.000Z","height":1.91,"weight":104,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":267497141,"name":"Omar Longart","nationality":"VEN","sex":"male","date_of_birth":"1991-05-18T00:00:00.000Z","height":1.72,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":671572172,"name":"Omar McLeod","nationality":"JAM","sex":"male","date_of_birth":"1994-04-25T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":494429472,"name":"Omar Zepeda","nationality":"MEX","sex":"male","date_of_birth":"1977-06-08T00:00:00.000Z","height":1.75,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":370119484,"name":"Omer Karaevli","nationality":"TUR","sex":"male","date_of_birth":"1977-09-11T00:00:00.000Z","height":1.76,"weight":69,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":236501534,"name":"Omid Haji Noroozi","nationality":"IRI","sex":"male","date_of_birth":"1986-02-18T00:00:00.000Z","height":1.75,"weight":70,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":565665727,"name":"Omolara Omotoso","nationality":"NGR","sex":"female","date_of_birth":"1993-05-25T00:00:00.000Z","height":1.52,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":163885592,"name":"Ona Carbonell","nationality":"ESP","sex":"female","date_of_birth":"1990-06-05T00:00:00.000Z","height":1.73,"weight":52,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":339420011,"name":"Ona Kim","nationality":"KOR","sex":"female","date_of_birth":"1988-09-06T00:00:00.000Z","height":1.69,"weight":62,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":980936428,"name":"Onder Sipal","nationality":"TUR","sex":"male","date_of_birth":"1987-05-01T00:00:00.000Z","height":1.75,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":880358779,"name":"Ondrej Cink","nationality":"CZE","sex":"male","date_of_birth":"1990-12-07T00:00:00.000Z","height":1.78,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":141546523,"name":"Ondrej Kruzel","nationality":"SVK","sex":"male","date_of_birth":"1988-08-23T00:00:00.000Z","height":1.9,"weight":119,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":729983888,"name":"Ondrej Synek","nationality":"CZE","sex":"male","date_of_birth":"1982-10-13T00:00:00.000Z","height":1.99,"weight":105,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":88265028,"name":"Ondrej Vetesnik","nationality":"CZE","sex":"male","date_of_birth":"1984-03-05T00:00:00.000Z","height":1.81,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":47810803,"name":"Onkabetse Nkobolo","nationality":"BOT","sex":"male","date_of_birth":"1993-07-22T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":17450856,"name":"Ons Jabeur","nationality":"TUN","sex":"female","date_of_birth":"1994-08-28T00:00:00.000Z","height":1.67,"weight":66,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":31333880,"name":"Onur Balkan","nationality":"TUR","sex":"male","date_of_birth":"1996-03-10T00:00:00.000Z","height":1.76,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":676134889,"name":"Onur Biriz","nationality":"TUR","sex":"male","date_of_birth":"1998-10-16T00:00:00.000Z","height":1.86,"weight":73,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":338111921,"name":"Onur Sipal","nationality":"TUR","sex":"male","date_of_birth":"1989-03-17T00:00:00.000Z","height":1.72,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":756542327,"name":"Or Sasson","nationality":"ISR","sex":"male","date_of_birth":"1990-08-18T00:00:00.000Z","height":1.93,"weight":120,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":500712109,"name":"Oreane Lechenault","nationality":"FRA","sex":"female","date_of_birth":"2000-08-31T00:00:00.000Z","height":1.34,"weight":37,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":10035386,"name":"Oreoluwa Cherebin","nationality":"GRN","sex":"female","date_of_birth":"1997-12-24T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":890917446,"name":"Orianica Velasquez","nationality":"COL","sex":"female","date_of_birth":"1989-08-01T00:00:00.000Z","height":1.77,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":391151189,"name":"Oribe Peralta","nationality":"MEX","sex":"male","date_of_birth":"1984-01-12T00:00:00.000Z","height":1.78,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":231740872,"name":"Orkhan Safarov","nationality":"AZE","sex":"male","date_of_birth":"1991-08-10T00:00:00.000Z","height":1.71,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":34240662,"name":"Orkhon Purevdorj","nationality":"MGL","sex":"female","date_of_birth":"1993-12-25T00:00:00.000Z","height":1.63,"weight":63,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":375338487,"name":"Orlando Ortega","nationality":"ESP","sex":"male","date_of_birth":"1991-07-29T00:00:00.000Z","height":1.82,"weight":77,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":781301320,"name":"Orsolya Kaso","nationality":"HUN","sex":"female","date_of_birth":"1988-11-22T00:00:00.000Z","height":1.87,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":149626539,"name":"Orsolya Takacs","nationality":"HUN","sex":"female","date_of_birth":"1985-05-20T00:00:00.000Z","height":1.9,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":878993673,"name":"Orukpe Eraiyokan","nationality":"NGR","sex":"male","date_of_birth":"1993-12-20T00:00:00.000Z","height":1.5,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":257208022,"name":"Oscar Albeiro Figueroa Mosquera","nationality":"COL","sex":"male","date_of_birth":"1983-04-27T00:00:00.000Z","height":1.59,"weight":62,"sport":"weightlifting","gold":1,"silver":0,"bronze":0,"info":null},{"id":904285900,"name":"Oscar Ayodi","nationality":"KEN","sex":"male","date_of_birth":"1989-09-21T00:00:00.000Z","height":1.84,"weight":94,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":313345460,"name":"Oscar Carrera","nationality":"ESP","sex":"male","date_of_birth":"1991-05-09T00:00:00.000Z","height":1.9,"weight":86,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":199312817,"name":"Oscar Luis Munoz Oviedo","nationality":"COL","sex":"male","date_of_birth":"1993-05-09T00:00:00.000Z","height":1.78,"weight":58,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":12259956,"name":"Oscar Ouma","nationality":"KEN","sex":"male","date_of_birth":"1989-05-03T00:00:00.000Z","height":1.86,"weight":105,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":497523485,"name":"Oscar Salas","nationality":"HON","sex":"male","date_of_birth":"1993-12-08T00:00:00.000Z","height":1.72,"weight":73,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":473764617,"name":"Oscar Soliz Vilca","nationality":"BOL","sex":"male","date_of_birth":"1985-01-09T00:00:00.000Z","height":1.68,"weight":59,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":935041171,"name":"Osea Kolinisau","nationality":"FIJ","sex":"male","date_of_birth":"1985-11-17T00:00:00.000Z","height":1.74,"weight":90,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":448898364,"name":"Oskar Deecke","nationality":"GER","sex":"male","date_of_birth":"1986-05-16T00:00:00.000Z","height":1.83,"weight":78,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":553047126,"name":"Oskar Kirmes","nationality":"FIN","sex":"male","date_of_birth":"1995-12-19T00:00:00.000Z","height":1.7,"weight":62,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":674907192,"name":"Oskari Moro","nationality":"FIN","sex":"male","date_of_birth":"1993-01-31T00:00:00.000Z","height":1.81,"weight":71,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":96259345,"name":"Osleni Guerrero","nationality":"CUB","sex":"male","date_of_birth":"1989-10-18T00:00:00.000Z","height":1.89,"weight":88,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":109325919,"name":"Osmaidel Pellicier","nationality":"CUB","sex":"male","date_of_birth":"1992-03-30T00:00:00.000Z","height":1.88,"weight":88,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":324446347,"name":"Osman Kamara","nationality":"SLE","sex":"male","date_of_birth":"1987-12-31T00:00:00.000Z","height":null,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":115062630,"name":"Osmany Juantorena","nationality":"ITA","sex":"male","date_of_birth":"1985-08-12T00:00:00.000Z","height":2,"weight":85,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":943830865,"name":"Osniel Cecilio Rendon Gonzalez","nationality":"CUB","sex":"male","date_of_birth":"1996-10-26T00:00:00.000Z","height":2.02,"weight":90,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":961508449,"name":"Osniel Lazaro Melgarejo Hernandez","nationality":"CUB","sex":"male","date_of_birth":"1997-12-18T00:00:00.000Z","height":1.95,"weight":83,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":657263947,"name":"Oswaldo dos Santos Guimaraes","nationality":"BRA","sex":"male","date_of_birth":"1989-10-23T00:00:00.000Z","height":1.83,"weight":90,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":878075998,"name":"Otar Bestaev","nationality":"KGZ","sex":"male","date_of_birth":"1991-10-28T00:00:00.000Z","height":1.6,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":953914833,"name":"Otgonbaatar Lkhagvasuren","nationality":"MGL","sex":"male","date_of_birth":"1993-01-20T00:00:00.000Z","height":1.82,"weight":94,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":358198982,"name":"Otgonbayar Luvsanlundeg","nationality":"MGL","sex":"female","date_of_birth":"1982-07-13T00:00:00.000Z","height":1.53,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":349670408,"name":"Otgondalai Dorjnyambuu","nationality":"MGL","sex":"male","date_of_birth":"1988-01-28T00:00:00.000Z","height":1.7,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":830288020,"name":"Otgontsetseg Galbadrakh","nationality":"KAZ","sex":"female","date_of_birth":"1992-01-25T00:00:00.000Z","height":1.65,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":605590898,"name":"Oumar Toure","nationality":"MLI","sex":"male","date_of_birth":"1996-01-24T00:00:00.000Z","height":1.59,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":570635423,"name":"Oumou Toure","nationality":"SEN","sex":"female","date_of_birth":"1988-02-18T00:00:00.000Z","height":1.89,"weight":86,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":748074466,"name":"Oumoul Thiam","nationality":"SEN","sex":"female","date_of_birth":"1990-02-03T00:00:00.000Z","height":1.79,"weight":68,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":517816469,"name":"Ourania Rebouli","nationality":"GRE","sex":"female","date_of_birth":"1989-05-16T00:00:00.000Z","height":1.64,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":819236187,"name":"Oussama Boughanmi","nationality":"TUN","sex":"male","date_of_birth":"1990-02-05T00:00:00.000Z","height":1.85,"weight":87,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":304396524,"name":"Oussama Darfalou","nationality":"ALG","sex":"male","date_of_birth":"1993-09-29T00:00:00.000Z","height":1.86,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":311177552,"name":"Oussama Hosni","nationality":"TUN","sex":"male","date_of_birth":"1992-09-17T00:00:00.000Z","height":1.92,"weight":88,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":518631495,"name":"Oussama Mellouli","nationality":"TUN","sex":"male","date_of_birth":"1984-02-16T00:00:00.000Z","height":1.92,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":"At London 2012, Tunisia's Oussama Mellouli won gold in the swimming marathons and also won the bronze in the 1500m – the same event in which he had already won the gold, four years previously, at Beijing 2008."},{"id":538663975,"name":"Oussama Methazem","nationality":"ALG","sex":"male","date_of_birth":"1993-12-15T00:00:00.000Z","height":1.8,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":374267293,"name":"Oussama Oueslati","nationality":"TUN","sex":"male","date_of_birth":"1996-03-24T00:00:00.000Z","height":1.99,"weight":80,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":16385389,"name":"Oussama Sahnoune","nationality":"ALG","sex":"male","date_of_birth":"1992-08-02T00:00:00.000Z","height":1.87,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":242873978,"name":"Ousseini Djibo Idrissa","nationality":"NIG","sex":"male","date_of_birth":"1998-12-28T00:00:00.000Z","height":1.78,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":806202831,"name":"Ovidiu Ionescu","nationality":"ROU","sex":"male","date_of_birth":"1989-06-28T00:00:00.000Z","height":1.82,"weight":72,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":347377740,"name":"Ovini Uera","nationality":"NRU","sex":"male","date_of_birth":"1988-01-18T00:00:00.000Z","height":1.7,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":745286605,"name":"Owain Doull","nationality":"GBR","sex":"male","date_of_birth":"1993-05-02T00:00:00.000Z","height":1.81,"weight":73,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":581338975,"name":"Ozge Bayrak","nationality":"TUR","sex":"female","date_of_birth":"1992-02-14T00:00:00.000Z","height":1.66,"weight":60,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":726787607,"name":"Ozlem Kaya","nationality":"TUR","sex":"female","date_of_birth":"1990-04-20T00:00:00.000Z","height":1.65,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":489753983,"name":"Pa Konate","nationality":"SWE","sex":"male","date_of_birth":"1994-04-25T00:00:00.000Z","height":1.71,"weight":71,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":178909248,"name":"Pablo Abian","nationality":"ESP","sex":"male","date_of_birth":"1985-06-12T00:00:00.000Z","height":1.77,"weight":68,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":592233151,"name":"Pablo Aprahamian","nationality":"URU","sex":"male","date_of_birth":"1985-09-13T00:00:00.000Z","height":1.8,"weight":97,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":360159830,"name":"Pablo Barrios","nationality":"VEN","sex":"male","date_of_birth":"1964-07-14T00:00:00.000Z","height":1.79,"weight":72,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":373537560,"name":"Pablo Braegger","nationality":"SUI","sex":"male","date_of_birth":"1992-11-27T00:00:00.000Z","height":1.69,"weight":64,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":761571916,"name":"Pablo Carrera","nationality":"ESP","sex":"male","date_of_birth":"1986-08-02T00:00:00.000Z","height":1.82,"weight":93,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":800654428,"name":"Pablo Crer","nationality":"ARG","sex":"male","date_of_birth":"1989-06-12T00:00:00.000Z","height":2.02,"weight":85,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":310836166,"name":"Pablo Cuevas","nationality":"URU","sex":"male","date_of_birth":"1986-01-01T00:00:00.000Z","height":1.8,"weight":79,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":505304017,"name":"Pablo Defazio Abella","nationality":"URU","sex":"male","date_of_birth":"1981-05-15T00:00:00.000Z","height":1.7,"weight":67,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":284444203,"name":"Pablo Feijoo","nationality":"ESP","sex":"male","date_of_birth":"1982-05-18T00:00:00.000Z","height":1.74,"weight":74,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":76294513,"name":"Pablo Fontes","nationality":"ESP","sex":"male","date_of_birth":"1995-12-25T00:00:00.000Z","height":1.75,"weight":83,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":872745031,"name":"Pablo Herrera Allepuz","nationality":"ESP","sex":"male","date_of_birth":"1982-06-29T00:00:00.000Z","height":1.93,"weight":88,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":588392494,"name":"Pablo Portela","nationality":"ARG","sex":"male","date_of_birth":"1980-06-21T00:00:00.000Z","height":1.92,"weight":92,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":761942978,"name":"Pablo Simonet","nationality":"ARG","sex":"male","date_of_birth":"1992-05-04T00:00:00.000Z","height":1.85,"weight":90,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":485821252,"name":"Pablo Torrijos","nationality":"ESP","sex":"male","date_of_birth":"1992-05-12T00:00:00.000Z","height":1.85,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":883565359,"name":"Pablo Vaistein","nationality":"ARG","sex":"male","date_of_birth":"1989-07-18T00:00:00.000Z","height":1.84,"weight":89,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":283173000,"name":"Pablo de Torres","nationality":"ARG","sex":"male","date_of_birth":"1984-04-14T00:00:00.000Z","height":1.9,"weight":86,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":44439135,"name":"Paciencia","nationality":"POR","sex":"male","date_of_birth":"1994-08-01T00:00:00.000Z","height":1.87,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":49599733,"name":"Padasak Tanviriyavechakul","nationality":"THA","sex":"male","date_of_birth":"1996-05-17T00:00:00.000Z","height":1.68,"weight":60,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":423696002,"name":"Padraig Harrington","nationality":"IRL","sex":"male","date_of_birth":"1971-08-31T00:00:00.000Z","height":1.85,"weight":86,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":74504490,"name":"Padraig McCarthy","nationality":"IRL","sex":"male","date_of_birth":"1977-07-18T00:00:00.000Z","height":1.8,"weight":80,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":548161228,"name":"Paige McPherson","nationality":"USA","sex":"female","date_of_birth":"1990-10-01T00:00:00.000Z","height":1.73,"weight":65,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":722165425,"name":"Paige Railey","nationality":"USA","sex":"female","date_of_birth":"1987-05-15T00:00:00.000Z","height":1.73,"weight":66,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":419662300,"name":"Paige Satchell","nationality":"NZL","sex":"female","date_of_birth":"1998-04-13T00:00:00.000Z","height":1.63,"weight":50,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":938845959,"name":"Paige Selenski","nationality":"USA","sex":"female","date_of_birth":"1990-06-30T00:00:00.000Z","height":1.71,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":883350095,"name":"Paixao Afonso","nationality":"ANG","sex":"male","date_of_birth":"1991-01-02T00:00:00.000Z","height":1.76,"weight":67,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":674501891,"name":"Pal Joensen","nationality":"DEN","sex":"male","date_of_birth":"1990-12-10T00:00:00.000Z","height":1.83,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":712874334,"name":"Palmira Marcal","nationality":"BRA","sex":"female","date_of_birth":"1984-05-20T00:00:00.000Z","height":1.74,"weight":76,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":221272276,"name":"Paloma Schmidt Gutierrez","nationality":"PER","sex":"female","date_of_birth":"1987-01-24T00:00:00.000Z","height":1.65,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":442939892,"name":"Pamela Dutkiewicz","nationality":"GER","sex":"female","date_of_birth":"1991-09-28T00:00:00.000Z","height":1.7,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":608348414,"name":"Pamela Nogueira","nationality":"BRA","sex":"female","date_of_birth":"1988-07-17T00:00:00.000Z","height":1.64,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":603375979,"name":"Pamela Ware","nationality":"CAN","sex":"female","date_of_birth":"1993-02-12T00:00:00.000Z","height":1.61,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":495081578,"name":"Pamella Oliveira","nationality":"BRA","sex":"female","date_of_birth":"1987-10-06T00:00:00.000Z","height":1.65,"weight":60,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":984045803,"name":"Panagiotis Gionis","nationality":"GRE","sex":"male","date_of_birth":"1980-01-07T00:00:00.000Z","height":1.87,"weight":85,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":795025850,"name":"Panagiotis Magdanis","nationality":"GRE","sex":"male","date_of_birth":"1990-11-29T00:00:00.000Z","height":1.75,"weight":71,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":604177499,"name":"Panagiotis Mantis","nationality":"GRE","sex":"male","date_of_birth":"1981-09-30T00:00:00.000Z","height":1.7,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":1,"info":null},{"id":452613023,"name":"Panagiotis Samilidis","nationality":"GRE","sex":"male","date_of_birth":"1993-08-09T00:00:00.000Z","height":1.87,"weight":91,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":264595645,"name":"Panayiota Tsinopoulou","nationality":"GRE","sex":"female","date_of_birth":"1990-10-16T00:00:00.000Z","height":1.65,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":750775977,"name":"Panayiota Vlahaki","nationality":"GRE","sex":"female","date_of_birth":"1991-04-03T00:00:00.000Z","height":1.67,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":19012939,"name":"Pancho Paskov","nationality":"BUL","sex":"male","date_of_birth":"1994-05-09T00:00:00.000Z","height":1.78,"weight":77,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":86712158,"name":"Pandelela Rinong Pamg","nationality":"MAS","sex":"female","date_of_birth":"1993-03-02T00:00:00.000Z","height":1.61,"weight":52,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":350338417,"name":"Panipak Wongpattanakit","nationality":"THA","sex":"female","date_of_birth":"1997-08-08T00:00:00.000Z","height":1.73,"weight":49,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":911324763,"name":"Paola Espinosa","nationality":"MEX","sex":"female","date_of_birth":"1986-07-31T00:00:00.000Z","height":1.56,"weight":48,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":124063612,"name":"Paola Munoz","nationality":"CHI","sex":"female","date_of_birth":"1986-04-13T00:00:00.000Z","height":1.64,"weight":54,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":322724107,"name":"Paola Ogechi Egonu","nationality":"ITA","sex":"female","date_of_birth":"1998-12-18T00:00:00.000Z","height":1.9,"weight":70,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":11943738,"name":"Paola Perez","nationality":"VEN","sex":"female","date_of_birth":"1991-04-05T00:00:00.000Z","height":1.62,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":146805157,"name":"Paola Perez","nationality":"ECU","sex":"female","date_of_birth":"1989-12-21T00:00:00.000Z","height":1.45,"weight":43,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":340714642,"name":"Paolo Lorenzi","nationality":"ITA","sex":"male","date_of_birth":"1981-12-15T00:00:00.000Z","height":1.84,"weight":77,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":882385123,"name":"Paolo Nicolai","nationality":"ITA","sex":"male","date_of_birth":"1988-08-06T00:00:00.000Z","height":2.04,"weight":100,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":654810825,"name":"Paolo Pizzo","nationality":"ITA","sex":"male","date_of_birth":"1983-04-04T00:00:00.000Z","height":1.8,"weight":70,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":388627308,"name":"Paolo Yurivilca","nationality":"PER","sex":"male","date_of_birth":"1996-04-23T00:00:00.000Z","height":1.69,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":443908875,"name":"Pap D. Jonga","nationality":"GAM","sex":"male","date_of_birth":"1997-07-01T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":442404063,"name":"Par Gerell","nationality":"SWE","sex":"male","date_of_birth":"1982-06-23T00:00:00.000Z","height":1.74,"weight":68,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":832744866,"name":"Paraskevi Papahristou","nationality":"GRE","sex":"female","date_of_birth":"1989-04-17T00:00:00.000Z","height":1.7,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":363332921,"name":"Pardeep Mor","nationality":"IND","sex":"male","date_of_birth":"1992-06-03T00:00:00.000Z","height":1.76,"weight":67,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":954374812,"name":"Pardon Ndhlovu","nationality":"ZIM","sex":"male","date_of_birth":"1987-08-23T00:00:00.000Z","height":1.58,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":593995753,"name":"Paris Henken","nationality":"USA","sex":"female","date_of_birth":"1995-12-22T00:00:00.000Z","height":1.68,"weight":63,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":318649476,"name":"Parvenn Rana","nationality":"IND","sex":"male","date_of_birth":"1992-10-12T00:00:00.000Z","height":null,"weight":null,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":851811760,"name":"Parviz Baghirov","nationality":"AZE","sex":"male","date_of_birth":"1994-02-10T00:00:00.000Z","height":1.77,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":390284488,"name":"Pascal Gregor","nationality":"DEN","sex":"male","date_of_birth":"1994-02-18T00:00:00.000Z","height":1.89,"weight":82,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":609470264,"name":"Pascal Lussier","nationality":"CAN","sex":"male","date_of_birth":"1991-09-13T00:00:00.000Z","height":1.9,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":671651436,"name":"Pascal Martinot-Lagarde","nationality":"FRA","sex":"male","date_of_birth":"1991-09-22T00:00:00.000Z","height":1.89,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":663249321,"name":"Pascal Plamondon","nationality":"CAN","sex":"male","date_of_birth":"1992-12-12T00:00:00.000Z","height":1.71,"weight":85,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":323658987,"name":"Pasquale Sottile","nationality":"ITA","sex":"male","date_of_birth":"1979-08-17T00:00:00.000Z","height":1.86,"weight":73,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":52489905,"name":"Pat McCormack","nationality":"GBR","sex":"male","date_of_birth":"1995-06-08T00:00:00.000Z","height":1.82,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":975309523,"name":"Pat McCutcheon","nationality":"AUS","sex":"male","date_of_birth":"1987-06-24T00:00:00.000Z","height":1.87,"weight":105,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":705420033,"name":"Patience Okon George","nationality":"NGR","sex":"female","date_of_birth":"1991-11-25T00:00:00.000Z","height":1.69,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":522216516,"name":"Patimat Abakarova","nationality":"AZE","sex":"female","date_of_birth":"1994-10-23T00:00:00.000Z","height":1.65,"weight":49,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":244723566,"name":"Patricia Alejandra Bermudez","nationality":"ARG","sex":"female","date_of_birth":"1987-02-05T00:00:00.000Z","height":1.5,"weight":48,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":539946489,"name":"Patricia Castro Ortega","nationality":"ESP","sex":"female","date_of_birth":"1992-08-06T00:00:00.000Z","height":1.78,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":775629274,"name":"Patricia Elorza","nationality":"ESP","sex":"female","date_of_birth":"1984-04-08T00:00:00.000Z","height":1.8,"weight":78,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":919589860,"name":"Patricia Freitas","nationality":"BRA","sex":"female","date_of_birth":"1990-03-10T00:00:00.000Z","height":1.73,"weight":59,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":505669658,"name":"Patricia Garcia","nationality":"ESP","sex":"female","date_of_birth":"1989-12-02T00:00:00.000Z","height":1.63,"weight":64,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":295886630,"name":"Patricia Herrera Fernandez","nationality":"ESP","sex":"female","date_of_birth":"1993-02-09T00:00:00.000Z","height":1.63,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":618669054,"name":"Patricia Mamona","nationality":"POR","sex":"female","date_of_birth":"1988-11-21T00:00:00.000Z","height":1.67,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":81353559,"name":"Patricia Obee","nationality":"CAN","sex":"female","date_of_birth":"1991-10-31T00:00:00.000Z","height":1.65,"weight":60,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":784355437,"name":"Patricia Sarrapio","nationality":"ESP","sex":"female","date_of_birth":"1982-11-16T00:00:00.000Z","height":1.65,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":899859792,"name":"Patricia Taea","nationality":"COK","sex":"female","date_of_birth":"1993-05-25T00:00:00.000Z","height":1.7,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":912531799,"name":"Patricia Vizitiu","nationality":"ROU","sex":"female","date_of_birth":"1988-10-15T00:00:00.000Z","height":1.75,"weight":68,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":463070123,"name":"Patricio Garino","nationality":"ARG","sex":"male","date_of_birth":"1993-05-17T00:00:00.000Z","height":1.96,"weight":96,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":703130921,"name":"Patrick Barnes","nationality":"IRL","sex":"male","date_of_birth":"1987-04-09T00:00:00.000Z","height":1.63,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":581538049,"name":"Patrick Constable","nationality":"AUS","sex":"male","date_of_birth":"1995-07-15T00:00:00.000Z","height":1.83,"weight":95,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":732337980,"name":"Patrick Dogue","nationality":"GER","sex":"male","date_of_birth":"1992-03-09T00:00:00.000Z","height":1.97,"weight":81,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":588164500,"name":"Patrick Groetzki","nationality":"GER","sex":"male","date_of_birth":"1989-07-04T00:00:00.000Z","height":1.9,"weight":83,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":258619134,"name":"Patrick Hausding","nationality":"GER","sex":"male","date_of_birth":"1989-03-09T00:00:00.000Z","height":1.8,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":883872117,"name":"Patrick Huston","nationality":"GBR","sex":"male","date_of_birth":"1996-01-05T00:00:00.000Z","height":1.83,"weight":84,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":319404194,"name":"Patrick Lourenco","nationality":"BRA","sex":"male","date_of_birth":"1993-07-02T00:00:00.000Z","height":1.64,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":949167573,"name":"Patrick Reed","nationality":"USA","sex":"male","date_of_birth":"1990-08-05T00:00:00.000Z","height":1.83,"weight":90,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":799162684,"name":"Patrick Tiernan","nationality":"AUS","sex":"male","date_of_birth":"1994-09-11T00:00:00.000Z","height":1.83,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":765058141,"name":"Patrick Wiencek","nationality":"GER","sex":"male","date_of_birth":"1989-03-22T00:00:00.000Z","height":2,"weight":110,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":764251988,"name":"Patrick van der Heijden","nationality":"BRA","sex":"male","date_of_birth":"1992-09-19T00:00:00.000Z","height":1.8,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":121079592,"name":"Patrik Kittel","nationality":"SWE","sex":"male","date_of_birth":"1976-06-10T00:00:00.000Z","height":1.86,"weight":79,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":745764315,"name":"Patrik Tybor","nationality":"SVK","sex":"male","date_of_birth":"1987-09-16T00:00:00.000Z","height":1.86,"weight":89,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":81021268,"name":"Patrycja Piechowiak","nationality":"POL","sex":"female","date_of_birth":"1992-09-01T00:00:00.000Z","height":1.62,"weight":68,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":393072060,"name":"Patrycja Wyciszkiewicz","nationality":"POL","sex":"female","date_of_birth":"1994-01-08T00:00:00.000Z","height":1.73,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":263761754,"name":"Patryk Dobek","nationality":"POL","sex":"male","date_of_birth":"1994-02-13T00:00:00.000Z","height":1.87,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":597321452,"name":"Patty Mills","nationality":"AUS","sex":"male","date_of_birth":"1988-08-11T00:00:00.000Z","height":1.83,"weight":85,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":899162102,"name":"Pau Gasol","nationality":"ESP","sex":"male","date_of_birth":"1980-07-06T00:00:00.000Z","height":2.15,"weight":115,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":"The biggest name in Spanish basketball, Paul Gasol won a world title (2006) and three European championships (2009, 2011 and 2015) as part of the national team. He also holds two silver medals won at Beijing 2008 and London 2012."},{"id":766117830,"name":"Pau Quemada","nationality":"ESP","sex":"male","date_of_birth":"1983-09-04T00:00:00.000Z","height":1.73,"weight":69,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":416399703,"name":"Pau Tonnesen","nationality":"ESP","sex":"male","date_of_birth":"1992-10-24T00:00:00.000Z","height":1.85,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":701588939,"name":"Pau Vela Maggi","nationality":"ESP","sex":"male","date_of_birth":"1986-05-31T00:00:00.000Z","height":1.9,"weight":86,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":133432446,"name":"Paul Adams","nationality":"AUS","sex":"male","date_of_birth":"1992-06-04T00:00:00.000Z","height":1.85,"weight":98,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":780137117,"name":"Paul Bennett","nationality":"GBR","sex":"male","date_of_birth":"1988-12-16T00:00:00.000Z","height":2.07,"weight":100,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":424996653,"name":"Paul Biedermann","nationality":"GER","sex":"male","date_of_birth":"1986-08-07T00:00:00.000Z","height":1.93,"weight":97,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":577741234,"name":"Paul Drinkhall","nationality":"GBR","sex":"male","date_of_birth":"1990-01-16T00:00:00.000Z","height":1.76,"weight":80,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":454655220,"name":"Paul Drux","nationality":"GER","sex":"male","date_of_birth":"1995-02-07T00:00:00.000Z","height":1.92,"weight":106,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":364360958,"name":"Paul Estermann","nationality":"SUI","sex":"male","date_of_birth":"1963-06-24T00:00:00.000Z","height":1.8,"weight":78,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":209482391,"name":"Paul George","nationality":"USA","sex":"male","date_of_birth":"1990-05-02T00:00:00.000Z","height":2.03,"weight":99,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":918519534,"name":"Paul Gleghorne","nationality":"IRL","sex":"male","date_of_birth":"1987-04-11T00:00:00.000Z","height":1.87,"weight":82,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":534134295,"name":"Paul Kibikai","nationality":"GAB","sex":"male","date_of_birth":"1991-04-04T00:00:00.000Z","height":1.8,"weight":80,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":498755923,"name":"Paul Kipkemoi Chelimo","nationality":"USA","sex":"male","date_of_birth":"1990-10-27T00:00:00.000Z","height":1.8,"weight":57,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":357755328,"name":"Paul Kipngetich Tanui","nationality":"KEN","sex":"male","date_of_birth":"1990-12-22T00:00:00.000Z","height":1.68,"weight":47,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":29049380,"name":"Paul Kohlhoff","nationality":"GER","sex":"male","date_of_birth":"1995-06-26T00:00:00.000Z","height":1.87,"weight":83,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":367795663,"name":"Paul O'Donovan","nationality":"IRL","sex":"male","date_of_birth":"1994-04-19T00:00:00.000Z","height":1.77,"weight":70,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":674380639,"name":"Paul Omba Biongolo","nationality":"FRA","sex":"male","date_of_birth":"1995-12-28T00:00:00.000Z","height":1.89,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":350939465,"name":"Paul Pollock","nationality":"IRL","sex":"male","date_of_birth":"1986-06-25T00:00:00.000Z","height":1.77,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":696711515,"name":"Paul Sieber","nationality":"AUT","sex":"male","date_of_birth":"1993-02-12T00:00:00.000Z","height":1.77,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":221321947,"name":"Paul Snow-Hansen","nationality":"NZL","sex":"male","date_of_birth":"1990-09-03T00:00:00.000Z","height":1.74,"weight":64,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":407521099,"name":"Paula Cristina Goncalves","nationality":"BRA","sex":"female","date_of_birth":"1990-08-11T00:00:00.000Z","height":1.76,"weight":68,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":134532053,"name":"Paula Ishibashi","nationality":"BRA","sex":"female","date_of_birth":"1985-02-14T00:00:00.000Z","height":1.56,"weight":58,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":927721952,"name":"Paula Kania","nationality":"POL","sex":"female","date_of_birth":"1992-11-06T00:00:00.000Z","height":1.73,"weight":63,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":820732854,"name":"Paula Leiton Arrones","nationality":"ESP","sex":"female","date_of_birth":"2000-04-27T00:00:00.000Z","height":1.87,"weight":98,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":990523633,"name":"Paula Lynn Obanana","nationality":"USA","sex":"female","date_of_birth":"1985-03-19T00:00:00.000Z","height":1.61,"weight":58,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":55960503,"name":"Paula Medin","nationality":"ESP","sex":"female","date_of_birth":"1984-06-17T00:00:00.000Z","height":1.71,"weight":66,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":300343611,"name":"Paula Pareto","nationality":"ARG","sex":"female","date_of_birth":"1986-01-16T00:00:00.000Z","height":1.5,"weight":48,"sport":"judo","gold":1,"silver":0,"bronze":0,"info":null},{"id":794648133,"name":"Paula Reto","nationality":"RSA","sex":"female","date_of_birth":"1990-05-03T00:00:00.000Z","height":1.7,"weight":62,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":870585003,"name":"Paula Ungureanu","nationality":"ROU","sex":"female","date_of_birth":"1980-03-30T00:00:00.000Z","height":1.81,"weight":75,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":92938402,"name":"Paula Yamila Nizetich","nationality":"ARG","sex":"female","date_of_birth":"1989-01-27T00:00:00.000Z","height":1.81,"weight":74,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":612802155,"name":"Paula-Claudia Todoran","nationality":"ROU","sex":"female","date_of_birth":"1985-06-09T00:00:00.000Z","height":1.64,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":250731306,"name":"Paulina Buziak","nationality":"POL","sex":"female","date_of_birth":"1986-12-16T00:00:00.000Z","height":1.7,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":102706397,"name":"Paulina Guba","nationality":"POL","sex":"female","date_of_birth":"1991-05-14T00:00:00.000Z","height":1.83,"weight":104,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":8892570,"name":"Paulina Schmiedel","nationality":"GER","sex":"female","date_of_birth":"1993-05-29T00:00:00.000Z","height":1.75,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":483710937,"name":"Pauline Biscarat","nationality":"FRA","sex":"female","date_of_birth":"1989-05-08T00:00:00.000Z","height":1.57,"weight":53,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":401150367,"name":"Pauline Ferrand Prevot","nationality":"FRA","sex":"female","date_of_birth":"1992-02-10T00:00:00.000Z","height":1.64,"weight":52,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":161474093,"name":"Pauline Hammarlund","nationality":"SWE","sex":"female","date_of_birth":"1994-05-07T00:00:00.000Z","height":1.72,"weight":65,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":780010350,"name":"Pauline Pousse","nationality":"FRA","sex":"female","date_of_birth":"1987-09-17T00:00:00.000Z","height":1.84,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":685006892,"name":"Pauline Schaefer","nationality":"GER","sex":"female","date_of_birth":"1997-01-04T00:00:00.000Z","height":1.62,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":934414617,"name":"Paulius Jankunas","nationality":"LTU","sex":"male","date_of_birth":"1984-04-29T00:00:00.000Z","height":2.05,"weight":105,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":208751523,"name":"Paulo Amotun","nationality":"ROT","sex":"male","date_of_birth":"1992-01-01T00:00:00.000Z","height":1.7,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":311057526,"name":"Paulo Batista","nationality":"BRA","sex":"male","date_of_birth":"1993-01-27T00:00:00.000Z","height":1.85,"weight":90,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":121145247,"name":"Paulo Bernardo Reichardt","nationality":"PAR","sex":"male","date_of_birth":"1960-08-08T00:00:00.000Z","height":1.98,"weight":105,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":168215468,"name":"Paulo Henrique","nationality":"POR","sex":"male","date_of_birth":"1996-10-23T00:00:00.000Z","height":1.8,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":185993510,"name":"Paulo Roberto Paula","nationality":"BRA","sex":"male","date_of_birth":"1979-07-08T00:00:00.000Z","height":1.7,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":538800855,"name":"Paulo Salemi","nationality":"BRA","sex":"male","date_of_birth":"1993-08-08T00:00:00.000Z","height":1.91,"weight":94,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":495685388,"name":"Pauls Pujats","nationality":"LAT","sex":"male","date_of_birth":"1991-08-06T00:00:00.000Z","height":1.87,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":138975413,"name":"Pavel Bareisha","nationality":"BLR","sex":"male","date_of_birth":"1991-02-16T00:00:00.000Z","height":1.93,"weight":118,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":290600382,"name":"Pavel Chihuan","nationality":"PER","sex":"male","date_of_birth":"1986-01-19T00:00:00.000Z","height":1.7,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":88762996,"name":"Pavel Eigel","nationality":"RUS","sex":"male","date_of_birth":"1990-03-01T00:00:00.000Z","height":1.78,"weight":81,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":647042868,"name":"Pavel Ilyashenko","nationality":"KAZ","sex":"male","date_of_birth":"1990-06-23T00:00:00.000Z","height":1.81,"weight":76,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":266152637,"name":"Pavel Janecek","nationality":"CZE","sex":"male","date_of_birth":"1994-04-07T00:00:00.000Z","height":1.95,"weight":87,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":286853003,"name":"Pavel Kastramin","nationality":"BLR","sex":"male","date_of_birth":"1991-07-12T00:00:00.000Z","height":1.76,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":693513512,"name":"Pavel Kelemen","nationality":"CZE","sex":"male","date_of_birth":"1991-05-28T00:00:00.000Z","height":1.85,"weight":83,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":436853301,"name":"Pavel Khadasevich","nationality":"BLR","sex":"male","date_of_birth":"1993-07-16T00:00:00.000Z","height":1.73,"weight":84,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":99074928,"name":"Pavel Kochetkov","nationality":"RUS","sex":"male","date_of_birth":"1986-03-07T00:00:00.000Z","height":1.84,"weight":72,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":223572860,"name":"Pavel Maslak","nationality":"CZE","sex":"male","date_of_birth":"1991-02-21T00:00:00.000Z","height":1.76,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":455949717,"name":"Pavel Petrikov","nationality":"CZE","sex":"male","date_of_birth":"1986-06-20T00:00:00.000Z","height":1.7,"weight":64,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":321729482,"name":"Pavel Sankovich","nationality":"BLR","sex":"male","date_of_birth":"1990-06-29T00:00:00.000Z","height":1.82,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":663676373,"name":"Pavel Sozykin","nationality":"RUS","sex":"male","date_of_birth":"1987-12-25T00:00:00.000Z","height":null,"weight":null,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":654016001,"name":"Pavel Sukhov","nationality":"RUS","sex":"male","date_of_birth":"1988-05-07T00:00:00.000Z","height":1.79,"weight":75,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":941704131,"name":"Pavle Kostov","nationality":"CRO","sex":"male","date_of_birth":"1987-09-28T00:00:00.000Z","height":1.8,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":122873337,"name":"Pavlo Altukhov","nationality":"UKR","sex":"male","date_of_birth":"1995-12-23T00:00:00.000Z","height":1.85,"weight":90,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":124577739,"name":"Pavlo Korostylov","nationality":"UKR","sex":"male","date_of_birth":"1997-11-05T00:00:00.000Z","height":1.86,"weight":100,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":476028194,"name":"Pavlo Matsuyev","nationality":"UKR","sex":"male","date_of_birth":"1990-11-05T00:00:00.000Z","height":1.81,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":713017392,"name":"Pavlo Tymoshchenko","nationality":"UKR","sex":"male","date_of_birth":"1986-10-13T00:00:00.000Z","height":1.92,"weight":78,"sport":"modern pentathlon","gold":0,"silver":1,"bronze":0,"info":null},{"id":62996678,"name":"Pavlos Kagialis","nationality":"GRE","sex":"male","date_of_birth":"1984-07-14T00:00:00.000Z","height":1.84,"weight":74,"sport":"sailing","gold":0,"silver":0,"bronze":1,"info":null},{"id":18058430,"name":"Pavlos Kontides","nationality":"CYP","sex":"male","date_of_birth":"1990-02-11T00:00:00.000Z","height":1.83,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":517302167,"name":"Pavol Kopp","nationality":"SVK","sex":"male","date_of_birth":"1978-12-27T00:00:00.000Z","height":1.83,"weight":74,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":253678456,"name":"Pawel Fajdek","nationality":"POL","sex":"male","date_of_birth":"1989-06-04T00:00:00.000Z","height":1.86,"weight":126,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":196109685,"name":"Pawel Juraszek","nationality":"POL","sex":"male","date_of_birth":"1994-10-08T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":491762709,"name":"Pawel Kaczmarek","nationality":"POL","sex":"male","date_of_birth":"1995-09-08T00:00:00.000Z","height":1.83,"weight":85,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":165395706,"name":"Pawel Kolodzinski","nationality":"POL","sex":"male","date_of_birth":"1988-01-07T00:00:00.000Z","height":1.9,"weight":83,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":943548615,"name":"Pawel Korzeniowski","nationality":"POL","sex":"male","date_of_birth":"1985-07-09T00:00:00.000Z","height":1.92,"weight":86,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":301937277,"name":"Pawel Spisak","nationality":"POL","sex":"male","date_of_birth":"1981-09-29T00:00:00.000Z","height":1.76,"weight":68,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":908561919,"name":"Pawel Wiesiolek","nationality":"POL","sex":"male","date_of_birth":"1991-08-13T00:00:00.000Z","height":1.9,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":147490715,"name":"Pawel Wojciechowski","nationality":"POL","sex":"male","date_of_birth":"1989-06-06T00:00:00.000Z","height":1.9,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":983705869,"name":"Pawel Zatorski","nationality":"POL","sex":"male","date_of_birth":"1990-06-21T00:00:00.000Z","height":1.84,"weight":73,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":656447088,"name":"Peace Uko","nationality":"NGR","sex":"female","date_of_birth":"1995-12-26T00:00:00.000Z","height":1.61,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":34305365,"name":"Peamwilai Laopeam","nationality":"THA","sex":"female","date_of_birth":"1983-10-20T00:00:00.000Z","height":1.63,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":260021417,"name":"Peder Fredricson","nationality":"SWE","sex":"male","date_of_birth":"1972-01-30T00:00:00.000Z","height":1.89,"weight":80,"sport":"equestrian","gold":0,"silver":1,"bronze":0,"info":null},{"id":361452199,"name":"Pedro Daniel Gomez","nationality":"MEX","sex":"male","date_of_birth":"1990-12-31T00:00:00.000Z","height":1.78,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":373434726,"name":"Pedro Francisco Ceballos Fuentes","nationality":"VEN","sex":"male","date_of_birth":"1990-09-08T00:00:00.000Z","height":1.8,"weight":86,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":750408155,"name":"Pedro Ibarra","nationality":"ARG","sex":"male","date_of_birth":"1985-09-11T00:00:00.000Z","height":1.74,"weight":75,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":790093790,"name":"Pedro Isidro","nationality":"POR","sex":"male","date_of_birth":"1985-07-17T00:00:00.000Z","height":1.75,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":191275004,"name":"Pedro Luiz de Oliveira","nationality":"BRA","sex":"male","date_of_birth":"1992-02-17T00:00:00.000Z","height":1.8,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":337351687,"name":"Pedro Martins","nationality":"POR","sex":"male","date_of_birth":"1990-02-14T00:00:00.000Z","height":1.77,"weight":70,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":322923312,"name":"Pedro Miguel Pinotes","nationality":"ANG","sex":"male","date_of_birth":"1989-09-30T00:00:00.000Z","height":1.92,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":863329559,"name":"Pedro P. Pichardo","nationality":"CUB","sex":"male","date_of_birth":"1993-06-30T00:00:00.000Z","height":1.83,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":85634845,"name":"Pedro Pascual","nationality":"USA","sex":"male","date_of_birth":"1996-03-15T00:00:00.000Z","height":1.86,"weight":69,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":696910008,"name":"Pedro Rangel","nationality":"MEX","sex":"male","date_of_birth":"1988-09-16T00:00:00.000Z","height":1.92,"weight":85,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":173848012,"name":"Pedro Solberg","nationality":"BRA","sex":"male","date_of_birth":"1986-03-27T00:00:00.000Z","height":1.94,"weight":90,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":66114756,"name":"Pedro Tavares de Almeida","nationality":"BRA","sex":"male","date_of_birth":"1993-12-11T00:00:00.000Z","height":1.76,"weight":78,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":299349112,"name":"Pedro Veniss","nationality":"BRA","sex":"male","date_of_birth":"1983-01-06T00:00:00.000Z","height":1.81,"weight":66,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":595693599,"name":"Pedro da Silva","nationality":"BRA","sex":"male","date_of_birth":"1993-04-12T00:00:00.000Z","height":1.76,"weight":69,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":202596543,"name":"Pedrya Seymour","nationality":"BAH","sex":"female","date_of_birth":"1995-05-29T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":45726783,"name":"Peer Borsky","nationality":"SUI","sex":"male","date_of_birth":"1990-11-05T00:00:00.000Z","height":1.92,"weight":80,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":703096164,"name":"Peeter Olesk","nationality":"EST","sex":"male","date_of_birth":"1993-04-22T00:00:00.000Z","height":1.79,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":553824405,"name":"Pei-Wun Lin","nationality":"TPE","sex":"female","date_of_birth":"1999-11-25T00:00:00.000Z","height":1.74,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":678886243,"name":"Peimeng Zhang","nationality":"CHN","sex":"male","date_of_birth":"1987-03-13T00:00:00.000Z","height":1.86,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":374248899,"name":"Peina Chen","nationality":"CHN","sex":"female","date_of_birth":"1989-06-19T00:00:00.000Z","height":1.72,"weight":63,"sport":"sailing","gold":0,"silver":1,"bronze":0,"info":null},{"id":773795384,"name":"Penelope Leprevost","nationality":"FRA","sex":"female","date_of_birth":"1980-08-01T00:00:00.000Z","height":1.75,"weight":55,"sport":"equestrian","gold":1,"silver":0,"bronze":0,"info":null},{"id":703818710,"name":"Peng Han","nationality":"CHN","sex":"female","date_of_birth":"1989-12-20T00:00:00.000Z","height":1.65,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":709692617,"name":"Peng Soon Chan","nationality":"MAS","sex":"male","date_of_birth":"1988-04-27T00:00:00.000Z","height":1.75,"weight":68,"sport":"badminton","gold":0,"silver":1,"bronze":0,"info":null},{"id":983734556,"name":"Peng Tang","nationality":"HKG","sex":"male","date_of_birth":"1981-02-04T00:00:00.000Z","height":1.78,"weight":77,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":431074718,"name":"Peng Zhou","nationality":"CHN","sex":"male","date_of_birth":"1989-10-11T00:00:00.000Z","height":2.06,"weight":102,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":239797947,"name":"Penny Oleksiak","nationality":"CAN","sex":"female","date_of_birth":"2000-06-13T00:00:00.000Z","height":1.86,"weight":68,"sport":"aquatics","gold":1,"silver":1,"bronze":2,"info":null},{"id":56646013,"name":"Penny Taylor","nationality":"AUS","sex":"female","date_of_birth":"1981-05-24T00:00:00.000Z","height":1.85,"weight":72,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":"Australia won the 2006 world championship and small forward Penny Taylor was voted MVP of the competition. A silver medal winner at Athens 2004 and Beijing 2008, Taylor missed out on London 2012 due to injury."},{"id":319525295,"name":"Pernilla Lindberg","nationality":"SWE","sex":"female","date_of_birth":"1986-07-13T00:00:00.000Z","height":1.65,"weight":60,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":489476635,"name":"Pernille Blume","nationality":"DEN","sex":"female","date_of_birth":"1994-05-14T00:00:00.000Z","height":1.7,"weight":58,"sport":"aquatics","gold":1,"silver":0,"bronze":1,"info":null},{"id":653763497,"name":"Perrine Clauzel","nationality":"FRA","sex":"female","date_of_birth":"1994-04-05T00:00:00.000Z","height":1.55,"weight":47,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":847560874,"name":"Perry Baker","nationality":"USA","sex":"male","date_of_birth":"1986-06-29T00:00:00.000Z","height":1.86,"weight":81,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":607325017,"name":"Perseus Karlstrom","nationality":"SWE","sex":"male","date_of_birth":"1990-05-02T00:00:00.000Z","height":1.84,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":831774748,"name":"Persis William-Mensah","nationality":"GHA","sex":"female","date_of_birth":"1996-06-15T00:00:00.000Z","height":1.74,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":923556859,"name":"Peruth Chemutai","nationality":"UGA","sex":"female","date_of_birth":"1999-07-10T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":71344147,"name":"Petar Cupac","nationality":"CRO","sex":"male","date_of_birth":"1980-02-01T00:00:00.000Z","height":1.82,"weight":77,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":325195799,"name":"Petar Gorsa","nationality":"CRO","sex":"male","date_of_birth":"1988-01-11T00:00:00.000Z","height":1.8,"weight":82,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":336214928,"name":"Petar Tomasevic","nationality":"FRA","sex":"male","date_of_birth":"1989-01-02T00:00:00.000Z","height":1.92,"weight":100,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":78269978,"name":"Pete Reed","nationality":"GBR","sex":"male","date_of_birth":"1981-07-27T00:00:00.000Z","height":1.97,"weight":100,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":495318551,"name":"Peter Bacsi","nationality":"HUN","sex":"male","date_of_birth":"1983-05-15T00:00:00.000Z","height":1.75,"weight":82,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":819872199,"name":"Peter Bernek","nationality":"HUN","sex":"male","date_of_birth":"1992-04-13T00:00:00.000Z","height":1.93,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":624757765,"name":"Peter Bol","nationality":"AUS","sex":"male","date_of_birth":"1994-02-22T00:00:00.000Z","height":1.77,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":59945226,"name":"Peter Burling","nationality":"NZL","sex":"male","date_of_birth":"1991-01-01T00:00:00.000Z","height":1.86,"weight":82,"sport":"sailing","gold":1,"silver":0,"bronze":0,"info":null},{"id":136312420,"name":"Peter Caruth","nationality":"IRL","sex":"male","date_of_birth":"1988-06-04T00:00:00.000Z","height":1.73,"weight":73,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":934977346,"name":"Peter Chambers","nationality":"GBR","sex":"male","date_of_birth":"1990-03-14T00:00:00.000Z","height":1.86,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":817847784,"name":"Peter Elisa Henry","nationality":"COK","sex":"male","date_of_birth":"1990-08-14T00:00:00.000Z","height":1.7,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":496549000,"name":"Peter Gelle","nationality":"SVK","sex":"male","date_of_birth":"1984-08-23T00:00:00.000Z","height":1.83,"weight":82,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":846408678,"name":"Peter Holoda","nationality":"HUN","sex":"male","date_of_birth":"1996-01-09T00:00:00.000Z","height":1.96,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":596350083,"name":"Peter Joppich","nationality":"GER","sex":"male","date_of_birth":"1982-12-21T00:00:00.000Z","height":1.76,"weight":68,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":856913107,"name":"Peter Kauzer","nationality":"SLO","sex":"male","date_of_birth":"1983-09-08T00:00:00.000Z","height":1.77,"weight":70,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":968123142,"name":"Peter Lambert","nationality":"GBR","sex":"male","date_of_birth":"1986-12-03T00:00:00.000Z","height":1.9,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":703243129,"name":"Peter Lombard Ii","nationality":"GUM","sex":"male","date_of_birth":"1976-05-24T00:00:00.000Z","height":1.7,"weight":73,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":713355622,"name":"Peter Matthews","nationality":"JAM","sex":"male","date_of_birth":"1989-11-13T00:00:00.000Z","height":1.88,"weight":84,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":246570363,"name":"Peter Molnar","nationality":"HUN","sex":"male","date_of_birth":"1986-02-16T00:00:00.000Z","height":1.88,"weight":88,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":788615502,"name":"Peter Mullenberg","nationality":"NED","sex":"male","date_of_birth":"1987-12-30T00:00:00.000Z","height":1.83,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":730243242,"name":"Peter Mungai Warui","nationality":"KEN","sex":"male","date_of_birth":"1981-04-22T00:00:00.000Z","height":null,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":208033661,"name":"Peter Nagy","nationality":"HUN","sex":"male","date_of_birth":"1986-01-16T00:00:00.000Z","height":1.92,"weight":159,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":945986909,"name":"Peter Sagan","nationality":"SVK","sex":"male","date_of_birth":"1990-01-26T00:00:00.000Z","height":1.82,"weight":79,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":"After exploding onto the mountain bike scene with junior world and European titles in 2008, Slovakia's Peter Sagan went on to excel on the road, culminating in his world championship win in 2015."},{"id":183289884,"name":"Peter Sidi","nationality":"HUN","sex":"male","date_of_birth":"1978-09-11T00:00:00.000Z","height":1.76,"weight":86,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":4878555,"name":"Peter Skantar","nationality":"SVK","sex":"male","date_of_birth":"1982-07-20T00:00:00.000Z","height":1.82,"weight":78,"sport":"canoe","gold":1,"silver":0,"bronze":0,"info":null},{"id":690076235,"name":"Peter Somfai","nationality":"HUN","sex":"male","date_of_birth":"1980-04-02T00:00:00.000Z","height":1.88,"weight":85,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":966741128,"name":"Peter Taylor","nationality":"NZL","sex":"male","date_of_birth":"1984-01-03T00:00:00.000Z","height":1.89,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":289227297,"name":"Peter Wiersum","nationality":"NED","sex":"male","date_of_birth":"1984-11-01T00:00:00.000Z","height":1.73,"weight":55,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":338590323,"name":"Peter van Schie","nationality":"NED","sex":"male","date_of_birth":"1988-03-03T00:00:00.000Z","height":2,"weight":98,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":219934113,"name":"Peterson dos Santos","nationality":"BRA","sex":"male","date_of_birth":"1991-03-31T00:00:00.000Z","height":1.81,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":70412036,"name":"Petit David Minkoumba","nationality":"CMR","sex":"male","date_of_birth":"1989-02-27T00:00:00.000Z","height":1.71,"weight":92,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":878015006,"name":"Petr Asayonak","nationality":"BLR","sex":"male","date_of_birth":"1993-02-27T00:00:00.000Z","height":1.65,"weight":84,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":874838042,"name":"Petr Frydrych","nationality":"CZE","sex":"male","date_of_birth":"1988-01-13T00:00:00.000Z","height":2,"weight":100,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":211340599,"name":"Petr Khamukov","nationality":"RUS","sex":"male","date_of_birth":"1991-07-15T00:00:00.000Z","height":1.72,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":799782526,"name":"Petr Koukal","nationality":"CZE","sex":"male","date_of_birth":"1985-12-14T00:00:00.000Z","height":1.92,"weight":92,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":166411555,"name":"Petr Svoboda","nationality":"CZE","sex":"male","date_of_birth":"1984-10-10T00:00:00.000Z","height":1.95,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":402795962,"name":"Petr Vakoc","nationality":"CZE","sex":"male","date_of_birth":"1992-07-11T00:00:00.000Z","height":1.8,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":20631920,"name":"Petra Fontanive","nationality":"SUI","sex":"female","date_of_birth":"1988-10-10T00:00:00.000Z","height":1.7,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":6323208,"name":"Petra Kvitova","nationality":"CZE","sex":"female","date_of_birth":"1990-03-08T00:00:00.000Z","height":1.81,"weight":68,"sport":"tennis","gold":0,"silver":0,"bronze":1,"info":null},{"id":705078758,"name":"Petra Lovas","nationality":"HUN","sex":"female","date_of_birth":"1980-07-04T00:00:00.000Z","height":1.58,"weight":48,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":395735676,"name":"Petra Maarit Olli","nationality":"FIN","sex":"female","date_of_birth":"1994-06-05T00:00:00.000Z","height":1.63,"weight":64,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":326772928,"name":"Petra Zublasing","nationality":"ITA","sex":"female","date_of_birth":"1989-06-30T00:00:00.000Z","height":1.64,"weight":55,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":956175465,"name":"Petrea Webster","nationality":"NZL","sex":"female","date_of_birth":"1988-03-30T00:00:00.000Z","height":1.65,"weight":56,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":921402374,"name":"Petrissa Solja","nationality":"GER","sex":"female","date_of_birth":"1994-03-11T00:00:00.000Z","height":1.68,"weight":67,"sport":"table tennis","gold":0,"silver":1,"bronze":0,"info":null},{"id":780238765,"name":"Petro Pakhnyuk","nationality":"AZE","sex":"male","date_of_birth":"1991-11-26T00:00:00.000Z","height":1.73,"weight":64,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":797449371,"name":"Petter Menning","nationality":"SWE","sex":"male","date_of_birth":"1987-08-08T00:00:00.000Z","height":1.87,"weight":92,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":556102017,"name":"Pezhman Ghalehnoei","nationality":"IRI","sex":"male","date_of_birth":"1992-01-29T00:00:00.000Z","height":1.9,"weight":96,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":975709612,"name":"Phannapa Harnsujin","nationality":"THA","sex":"female","date_of_birth":"1997-09-14T00:00:00.000Z","height":1.72,"weight":57,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":905495882,"name":"Phara Anacharsis","nationality":"FRA","sex":"female","date_of_birth":"1983-12-17T00:00:00.000Z","height":1.77,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":966511165,"name":"Phelan Hill","nationality":"GBR","sex":"male","date_of_birth":"1979-07-21T00:00:00.000Z","height":1.72,"weight":55,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":729088638,"name":"Phetetso Monese","nationality":"LES","sex":"male","date_of_birth":"1984-09-22T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":11938440,"name":"Phil Burgess","nationality":"GBR","sex":"male","date_of_birth":"1988-07-01T00:00:00.000Z","height":1.8,"weight":92,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":514082441,"name":"Philadelphia Orlando","nationality":"KEN","sex":"female","date_of_birth":"1990-02-18T00:00:00.000Z","height":1.54,"weight":72,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":805140825,"name":"Philip Dalhausser","nationality":"USA","sex":"male","date_of_birth":"1980-01-26T00:00:00.000Z","height":2.06,"weight":92,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":492969583,"name":"Philip Heintz","nationality":"GER","sex":"male","date_of_birth":"1991-02-21T00:00:00.000Z","height":1.94,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":229176554,"name":"Philip Hindes","nationality":"GBR","sex":"male","date_of_birth":"1992-09-22T00:00:00.000Z","height":1.78,"weight":82,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":289790809,"name":"Philip Milanov","nationality":"BEL","sex":"male","date_of_birth":"1991-07-06T00:00:00.000Z","height":1.98,"weight":110,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":286704073,"name":"Philip Snyman","nationality":"RSA","sex":"male","date_of_birth":"1987-03-26T00:00:00.000Z","height":1.88,"weight":95,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":194978733,"name":"Philip Stenmalm","nationality":"SWE","sex":"male","date_of_birth":"1992-03-03T00:00:00.000Z","height":2,"weight":103,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":615802244,"name":"Philipine van Aanholt","nationality":"ARU","sex":"female","date_of_birth":"1992-05-26T00:00:00.000Z","height":1.71,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":544522799,"name":"Philipp Buhl","nationality":"GER","sex":"male","date_of_birth":"1989-12-19T00:00:00.000Z","height":1.87,"weight":85,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":915966505,"name":"Philipp Kohlschreiber","nationality":"GER","sex":"male","date_of_birth":"1983-10-16T00:00:00.000Z","height":1.8,"weight":70,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":377804310,"name":"Philipp Max","nationality":"GER","sex":"male","date_of_birth":"1993-09-30T00:00:00.000Z","height":1.77,"weight":76,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":989265999,"name":"Philipp Pflieger","nationality":"GER","sex":"male","date_of_birth":"1987-07-16T00:00:00.000Z","height":1.88,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":417212497,"name":"Philipp Wende","nationality":"GER","sex":"male","date_of_birth":"1985-07-04T00:00:00.000Z","height":1.99,"weight":90,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":858470126,"name":"Philipp Wolf","nationality":"GER","sex":"male","date_of_birth":"1992-08-15T00:00:00.000Z","height":1.96,"weight":96,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":220899684,"name":"Philippe Gagne","nationality":"CAN","sex":"male","date_of_birth":"1997-10-23T00:00:00.000Z","height":1.8,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":897247005,"name":"Philippe Gilbert","nationality":"BEL","sex":"male","date_of_birth":"1982-07-05T00:00:00.000Z","height":1.79,"weight":72,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":274768032,"name":"Philippe Rozier","nationality":"FRA","sex":"male","date_of_birth":"1963-02-05T00:00:00.000Z","height":1.73,"weight":63,"sport":"equestrian","gold":1,"silver":0,"bronze":0,"info":null},{"id":595488187,"name":"Phillip Chew","nationality":"USA","sex":"male","date_of_birth":"1994-05-16T00:00:00.000Z","height":1.73,"weight":90,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":355129780,"name":"Phillip Dutton","nationality":"USA","sex":"male","date_of_birth":"1963-09-13T00:00:00.000Z","height":1.68,"weight":68,"sport":"equestrian","gold":0,"silver":0,"bronze":1,"info":null},{"id":330465212,"name":"Phillip Kipyeko","nationality":"UGA","sex":"male","date_of_birth":"1995-01-01T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":113831851,"name":"Phumlani Ntshangase","nationality":"RSA","sex":"male","date_of_birth":"1994-12-24T00:00:00.000Z","height":1.76,"weight":71,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":417884111,"name":"Phumlile Ndzinisa","nationality":"SWZ","sex":"female","date_of_birth":"1992-08-21T00:00:00.000Z","height":1.7,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":784201731,"name":"Phuoc Hoang","nationality":"VIE","sex":"male","date_of_birth":"1993-03-24T00:00:00.000Z","height":1.8,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":524378907,"name":"Phuoc Hung Pham","nationality":"VIE","sex":"male","date_of_birth":"1988-06-10T00:00:00.000Z","height":1.62,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":74346826,"name":"Phupu Lamu Khatri","nationality":"NEP","sex":"female","date_of_birth":"1996-10-05T00:00:00.000Z","height":1.63,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":864167150,"name":"Phuttharaksa Neegree","nationality":"THA","sex":"female","date_of_birth":"1974-02-25T00:00:00.000Z","height":1.66,"weight":67,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":888940150,"name":"Phylicia George","nationality":"CAN","sex":"female","date_of_birth":"1987-11-16T00:00:00.000Z","height":1.78,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":221313812,"name":"Phyllis Francis","nationality":"USA","sex":"female","date_of_birth":"1992-05-04T00:00:00.000Z","height":1.81,"weight":71,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":775856261,"name":"Pia-Sophie Oldhafer","nationality":"GER","sex":"female","date_of_birth":"1992-07-01T00:00:00.000Z","height":1.66,"weight":55,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":196591431,"name":"Pier Paolo Petroni","nationality":"ITA","sex":"male","date_of_birth":"1987-03-30T00:00:00.000Z","height":1.8,"weight":70,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":193264881,"name":"Piero Codia","nationality":"ITA","sex":"male","date_of_birth":"1989-10-22T00:00:00.000Z","height":1.9,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":93324634,"name":"Pierpaolo Frattini","nationality":"ITA","sex":"male","date_of_birth":"1984-02-23T00:00:00.000Z","height":1.92,"weight":92,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":652989457,"name":"Pierre Duprat","nationality":"FRA","sex":"male","date_of_birth":"1989-11-26T00:00:00.000Z","height":1.75,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":424639600,"name":"Pierre Gilles Lakafia","nationality":"FRA","sex":"male","date_of_birth":"1987-03-12T00:00:00.000Z","height":1.83,"weight":95,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":381048812,"name":"Pierre Houin","nationality":"FRA","sex":"male","date_of_birth":"1994-04-15T00:00:00.000Z","height":1.82,"weight":74,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":760941047,"name":"Pierre Le Corre","nationality":"FRA","sex":"male","date_of_birth":"1990-02-03T00:00:00.000Z","height":1.76,"weight":65,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":273264631,"name":"Pierre Plihon","nationality":"FRA","sex":"male","date_of_birth":"1989-10-29T00:00:00.000Z","height":1.84,"weight":130,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":546837114,"name":"Pierre Pujol","nationality":"FRA","sex":"male","date_of_birth":"1984-07-13T00:00:00.000Z","height":1.86,"weight":90,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":188712292,"name":"Pierre Volla","nationality":"FRA","sex":"male","date_of_birth":"1981-07-16T00:00:00.000Z","height":1.71,"weight":69,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":637459176,"name":"Pierre le Coq","nationality":"FRA","sex":"male","date_of_birth":"1989-01-17T00:00:00.000Z","height":1.86,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":1,"info":null},{"id":703056678,"name":"Pierre-Ambroise Bosse","nationality":"FRA","sex":"male","date_of_birth":"1992-05-11T00:00:00.000Z","height":1.85,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":565117926,"name":"Pierre-Hugues Herbert","nationality":"FRA","sex":"male","date_of_birth":"1991-03-18T00:00:00.000Z","height":1.89,"weight":79,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":8420504,"name":"Pieter Braun","nationality":"NED","sex":"male","date_of_birth":"1993-01-21T00:00:00.000Z","height":1.87,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":635258187,"name":"Pieter Bulling","nationality":"NZL","sex":"male","date_of_birth":"1993-03-02T00:00:00.000Z","height":1.79,"weight":77,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":185824997,"name":"Pieter Timmers","nationality":"BEL","sex":"male","date_of_birth":"1988-01-21T00:00:00.000Z","height":2,"weight":89,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":712300678,"name":"Pieter-Jan Hannes","nationality":"BEL","sex":"male","date_of_birth":"1992-10-30T00:00:00.000Z","height":1.86,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":381556932,"name":"Pieter-Jan Postma","nationality":"NED","sex":"male","date_of_birth":"1982-01-10T00:00:00.000Z","height":1.89,"weight":99,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":556354189,"name":"Pietro Figlioli","nationality":"ITA","sex":"male","date_of_birth":"1984-05-29T00:00:00.000Z","height":1.91,"weight":98,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":312015477,"name":"Pietro Roman","nationality":"ITA","sex":"male","date_of_birth":"1989-09-20T00:00:00.000Z","height":1.78,"weight":72,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":359623981,"name":"Pietro Ruta","nationality":"ITA","sex":"male","date_of_birth":"1987-08-06T00:00:00.000Z","height":1.85,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":965100500,"name":"Pietro Zucchetti","nationality":"ITA","sex":"male","date_of_birth":"1981-01-25T00:00:00.000Z","height":1.88,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":538317694,"name":"Pilar Lucrecia Cordon","nationality":"ESP","sex":"female","date_of_birth":"1973-03-04T00:00:00.000Z","height":1.75,"weight":58,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":229833243,"name":"Pilar Romang","nationality":"ARG","sex":"female","date_of_birth":"1992-07-09T00:00:00.000Z","height":1.6,"weight":50,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":258972749,"name":"Pilar Shimizu","nationality":"GUM","sex":"female","date_of_birth":"1996-05-27T00:00:00.000Z","height":1.68,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":417310154,"name":"Pim-On Klaisuban","nationality":"THA","sex":"female","date_of_birth":"1992-07-07T00:00:00.000Z","height":1.67,"weight":75,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":430131884,"name":"Pimsiri Sirikaew","nationality":"THA","sex":"female","date_of_birth":"1990-04-25T00:00:00.000Z","height":1.52,"weight":57,"sport":"weightlifting","gold":0,"silver":1,"bronze":0,"info":null},{"id":864763299,"name":"Ping Li","nationality":"QAT","sex":"male","date_of_birth":"1986-05-18T00:00:00.000Z","height":1.78,"weight":65,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":859561876,"name":"Ping Yao","nationality":"CHN","sex":"female","date_of_birth":"1993-03-19T00:00:00.000Z","height":1.6,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":138538135,"name":"Pingan Shen","nationality":"CHN","sex":"male","date_of_birth":"1994-04-20T00:00:00.000Z","height":1.82,"weight":73,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":381746437,"name":"Piotr Daniluk","nationality":"POL","sex":"male","date_of_birth":"1982-01-15T00:00:00.000Z","height":1.75,"weight":72,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":838910156,"name":"Piotr Juszczak","nationality":"POL","sex":"male","date_of_birth":"1988-07-03T00:00:00.000Z","height":1.97,"weight":94,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":489240868,"name":"Piotr Kantor","nationality":"POL","sex":"male","date_of_birth":"1992-05-03T00:00:00.000Z","height":2,"weight":90,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":156639283,"name":"Piotr Lisek","nationality":"POL","sex":"male","date_of_birth":"1992-08-16T00:00:00.000Z","height":1.94,"weight":92,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":193728095,"name":"Piotr Malachowski","nationality":"POL","sex":"male","date_of_birth":"1983-06-07T00:00:00.000Z","height":1.93,"weight":130,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":630205806,"name":"Piotr Myszka","nationality":"POL","sex":"male","date_of_birth":"1981-07-25T00:00:00.000Z","height":1.86,"weight":74,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":798661107,"name":"Piotr Nowakowski","nationality":"POL","sex":"male","date_of_birth":"1987-12-18T00:00:00.000Z","height":2.05,"weight":90,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":61020520,"name":"Piotr Pazinski","nationality":"POL","sex":"male","date_of_birth":"1987-08-07T00:00:00.000Z","height":1.87,"weight":80,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":978409862,"name":"Piotr Szczepanski","nationality":"POL","sex":"male","date_of_birth":"1988-07-31T00:00:00.000Z","height":1.8,"weight":76,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":205004197,"name":"Piotr Wyszomirski","nationality":"POL","sex":"male","date_of_birth":"1988-01-06T00:00:00.000Z","height":1.95,"weight":95,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":780018325,"name":"Pippa Funnell","nationality":"GBR","sex":"female","date_of_birth":"1968-10-07T00:00:00.000Z","height":1.68,"weight":68,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":660600598,"name":"Pippa Hayward","nationality":"NZL","sex":"female","date_of_birth":"1990-05-23T00:00:00.000Z","height":1.76,"weight":69,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":930203213,"name":"Pirmammad Aliyev","nationality":"KAZ","sex":"male","date_of_birth":"1997-11-02T00:00:00.000Z","height":1.7,"weight":63,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":789056524,"name":"Pirmin Blaak","nationality":"NED","sex":"male","date_of_birth":"1988-03-08T00:00:00.000Z","height":1.88,"weight":88,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":988729820,"name":"Pita Nikolas Taufatofua","nationality":"TGA","sex":"male","date_of_birth":"1983-11-05T00:00:00.000Z","height":1.91,"weight":100,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":825607253,"name":"Pite","nationality":"POR","sex":"male","date_of_birth":"1994-08-22T00:00:00.000Z","height":1.86,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":624453875,"name":"Po Heung Lin","nationality":"HKG","sex":"female","date_of_birth":"1985-05-02T00:00:00.000Z","height":1.64,"weight":58,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":249071689,"name":"Pol Arias Dourdet","nationality":"AND","sex":"male","date_of_birth":"1996-08-08T00:00:00.000Z","height":1.75,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":799207392,"name":"Pol Moya","nationality":"AND","sex":"male","date_of_birth":"1996-12-09T00:00:00.000Z","height":1.78,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":172536875,"name":"Pol Pla","nationality":"ESP","sex":"male","date_of_birth":"1993-02-18T00:00:00.000Z","height":1.77,"weight":75,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":704580585,"name":"Polat Kemboi Arikan","nationality":"TUR","sex":"male","date_of_birth":"1990-12-12T00:00:00.000Z","height":1.75,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":974099683,"name":"Poliana","nationality":"BRA","sex":"female","date_of_birth":"1991-02-06T00:00:00.000Z","height":1.72,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":39584129,"name":"Poliana Okimoto","nationality":"BRA","sex":"female","date_of_birth":"1983-03-08T00:00:00.000Z","height":1.65,"weight":52,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":"Brazil's first world marathon swimming champion, in 2009, Poliana Okimoto had the best year of her career to date, in 2013. She won three medals at the World Aquatics Championship, in Barcelona, including gold in the 10km."},{"id":343525700,"name":"Polina Kuznetsova","nationality":"RUS","sex":"female","date_of_birth":"1987-06-10T00:00:00.000Z","height":1.68,"weight":60,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":543469512,"name":"Polina Mikhailova","nationality":"RUS","sex":"female","date_of_birth":"1986-08-31T00:00:00.000Z","height":1.68,"weight":60,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":593041020,"name":"Polina Repina","nationality":"KAZ","sex":"female","date_of_birth":"1990-06-29T00:00:00.000Z","height":1.7,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":931143770,"name":"Polly Powrie","nationality":"NZL","sex":"female","date_of_birth":"1987-12-09T00:00:00.000Z","height":1.73,"weight":70,"sport":"sailing","gold":0,"silver":1,"bronze":0,"info":null},{"id":663848389,"name":"Polly Swann","nationality":"GBR","sex":"female","date_of_birth":"1988-06-05T00:00:00.000Z","height":1.85,"weight":76,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":171878949,"name":"Polona Batagelj","nationality":"SLO","sex":"female","date_of_birth":"1989-06-07T00:00:00.000Z","height":1.73,"weight":53,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":983536887,"name":"Polona Hercog","nationality":"SLO","sex":"female","date_of_birth":"1991-01-20T00:00:00.000Z","height":1.85,"weight":70,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":254645346,"name":"Poonam Rani","nationality":"IND","sex":"female","date_of_birth":"1993-02-08T00:00:00.000Z","height":1.52,"weight":53,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":704169798,"name":"Poovamma Raju Machettira","nationality":"IND","sex":"female","date_of_birth":"1990-06-05T00:00:00.000Z","height":1.74,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":678194406,"name":"Popole Misenga","nationality":"ROT","sex":"male","date_of_birth":"1992-02-25T00:00:00.000Z","height":1.8,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":327752493,"name":"Popoola Saliu","nationality":"NGR","sex":"male","date_of_birth":"1994-08-07T00:00:00.000Z","height":1.7,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":319595440,"name":"Pornanong Phatlum","nationality":"THA","sex":"female","date_of_birth":"1989-12-04T00:00:00.000Z","height":1.6,"weight":55,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":169038848,"name":"Porntip Buranaprasertsuk","nationality":"THA","sex":"female","date_of_birth":"1991-10-24T00:00:00.000Z","height":1.65,"weight":61,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":508827063,"name":"Portia Woodman","nationality":"NZL","sex":"female","date_of_birth":"1991-07-12T00:00:00.000Z","height":1.69,"weight":74,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":487961386,"name":"Pourya Norouziyan","nationality":"IRI","sex":"male","date_of_birth":"1992-01-22T00:00:00.000Z","height":1.76,"weight":63,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":373005438,"name":"Prakash Nanjappa","nationality":"IND","sex":"male","date_of_birth":"1976-02-29T00:00:00.000Z","height":1.75,"weight":85,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":126137216,"name":"Praneel Naidu","nationality":"FIJ","sex":"male","date_of_birth":"1995-01-29T00:00:00.000Z","height":1.76,"weight":66,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":339114990,"name":"Prarthana G. Thombare","nationality":"IND","sex":"female","date_of_birth":"1994-06-18T00:00:00.000Z","height":1.65,"weight":58,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":980803991,"name":"Praveen Jordan","nationality":"INA","sex":"male","date_of_birth":"1993-04-26T00:00:00.000Z","height":1.83,"weight":88,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":56351006,"name":"Predrag Filipovic","nationality":"SRB","sex":"male","date_of_birth":"1978-10-05T00:00:00.000Z","height":1.82,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":701283758,"name":"Predrag JOKIC","nationality":"MNE","sex":"male","date_of_birth":"1983-02-03T00:00:00.000Z","height":1.88,"weight":102,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":670821875,"name":"Preeti Dubey","nationality":"IND","sex":"female","date_of_birth":"1998-06-13T00:00:00.000Z","height":1.66,"weight":53,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":534519239,"name":"Prenam Pesse","nationality":"TOG","sex":"female","date_of_birth":"1997-12-31T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":990896999,"name":"Primoz Roglic","nationality":"SLO","sex":"male","date_of_birth":"1989-10-29T00:00:00.000Z","height":1.77,"weight":66,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":11988746,"name":"Priscilla Frederick","nationality":"ANT","sex":"female","date_of_birth":"1989-02-14T00:00:00.000Z","height":1.83,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":575956679,"name":"Priscilla Gneto","nationality":"FRA","sex":"female","date_of_birth":"1991-08-03T00:00:00.000Z","height":1.64,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":230616729,"name":"Priscilla Stevaux Carnaval","nationality":"BRA","sex":"female","date_of_birth":"1993-12-02T00:00:00.000Z","height":1.56,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":376160174,"name":"Przemyslaw Krajewski","nationality":"POL","sex":"male","date_of_birth":"1987-01-20T00:00:00.000Z","height":1.84,"weight":87,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":324476209,"name":"Przemyslaw Wacha","nationality":"POL","sex":"male","date_of_birth":"1981-01-31T00:00:00.000Z","height":1.82,"weight":81,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":319585560,"name":"Pui Yin Yip","nationality":"HKG","sex":"female","date_of_birth":"1987-08-06T00:00:00.000Z","height":1.64,"weight":61,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":654021545,"name":"Puttita Supajirakul","nationality":"THA","sex":"female","date_of_birth":"1996-03-29T00:00:00.000Z","height":1.84,"weight":72,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":513769796,"name":"Qais Ashfaq","nationality":"GBR","sex":"male","date_of_birth":"1993-03-10T00:00:00.000Z","height":1.7,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":598446702,"name":"Qendrim Guri","nationality":"KOS","sex":"male","date_of_birth":"1993-11-27T00:00:00.000Z","height":1.75,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":321163659,"name":"Qi Zhou","nationality":"CHN","sex":"male","date_of_birth":"1996-01-16T00:00:00.000Z","height":2.17,"weight":95,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":17611557,"name":"Qian Chen","nationality":"CHN","sex":"female","date_of_birth":"1987-01-14T00:00:00.000Z","height":1.63,"weight":54,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":441490855,"name":"Qian Li","nationality":"POL","sex":"female","date_of_birth":"1986-07-30T00:00:00.000Z","height":1.6,"weight":54,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":497917027,"name":"Qian Li","nationality":"CHN","sex":"female","date_of_birth":"1990-06-06T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":889734754,"name":"Qian Ren","nationality":"CHN","sex":"female","date_of_birth":"2001-02-20T00:00:00.000Z","height":1.62,"weight":49,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":517073047,"name":"Qian Yu","nationality":"CHN","sex":"female","date_of_birth":"1992-03-25T00:00:00.000Z","height":1.66,"weight":55,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":596026558,"name":"Qiang Li","nationality":"CHN","sex":"male","date_of_birth":"1989-01-04T00:00:00.000Z","height":1.86,"weight":84,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":725478524,"name":"Qiang Meng","nationality":"CHN","sex":"male","date_of_birth":"1987-07-03T00:00:00.000Z","height":1.86,"weight":122,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":521823425,"name":"Qiang Pan","nationality":"CHN","sex":"male","date_of_birth":"1985-01-21T00:00:00.000Z","height":1.85,"weight":85,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":58421484,"name":"Qiang Wang","nationality":"CHN","sex":"female","date_of_birth":"1992-01-14T00:00:00.000Z","height":1.72,"weight":60,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":67441417,"name":"Qiangbing Li","nationality":"AUT","sex":"female","date_of_birth":"1985-04-30T00:00:00.000Z","height":1.66,"weight":49,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":212028981,"name":"Qianxun Hu","nationality":"CHN","sex":"male","date_of_birth":"1987-09-18T00:00:00.000Z","height":1.78,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":657089417,"name":"Qibin Zhang","nationality":"CHN","sex":"male","date_of_birth":"1994-06-23T00:00:00.000Z","height":1.85,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":143319125,"name":"Qifeng Pu","nationality":"CHN","sex":"male","date_of_birth":"1986-01-03T00:00:00.000Z","height":1.84,"weight":80,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":114459374,"name":"Qinan Zhu","nationality":"CHN","sex":"male","date_of_birth":"1984-11-15T00:00:00.000Z","height":1.83,"weight":75,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":509966707,"name":"Qing Ma","nationality":"CHN","sex":"female","date_of_birth":"1992-08-24T00:00:00.000Z","height":1.74,"weight":68,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":673843844,"name":"Qingling Song","nationality":"CHN","sex":"female","date_of_birth":"1986-07-22T00:00:00.000Z","height":1.74,"weight":69,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":119828579,"name":"Qingquan Long","nationality":"CHN","sex":"male","date_of_birth":"1990-12-03T00:00:00.000Z","height":1.5,"weight":56,"sport":"weightlifting","gold":1,"silver":0,"bronze":0,"info":null},{"id":461528297,"name":"Qiong Wu","nationality":"CHN","sex":"female","date_of_birth":"1989-04-28T00:00:00.000Z","height":1.67,"weight":59,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":171553885,"name":"Qiqi Yuan","nationality":"CHN","sex":"female","date_of_birth":"1995-10-26T00:00:00.000Z","height":1.55,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":677460608,"name":"Qiuxia Cui","nationality":"CHN","sex":"female","date_of_birth":"1990-09-11T00:00:00.000Z","height":1.66,"weight":63,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":207837009,"name":"Qiuyue Wei","nationality":"CHN","sex":"female","date_of_birth":"1988-09-26T00:00:00.000Z","height":1.82,"weight":65,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":35437978,"name":"Quadri Aruna","nationality":"NGR","sex":"male","date_of_birth":"1988-08-09T00:00:00.000Z","height":1.8,"weight":81,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":612840820,"name":"Quedjau Nhabali","nationality":"UKR","sex":"male","date_of_birth":"1990-07-08T00:00:00.000Z","height":1.87,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":385666002,"name":"Quentin Rew","nationality":"NZL","sex":"male","date_of_birth":"1984-07-16T00:00:00.000Z","height":1.74,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":629107636,"name":"Quinta Steenbergen","nationality":"NED","sex":"female","date_of_birth":"1985-04-02T00:00:00.000Z","height":1.89,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":607332373,"name":"Quoc Cuong Tran","nationality":"VIE","sex":"male","date_of_birth":"1974-07-27T00:00:00.000Z","height":1.7,"weight":68,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":910962257,"name":"R. Mohan Kumar","nationality":"IND","sex":"male","date_of_birth":"1996-12-14T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":443066075,"name":"R.m. Sumeda Ranasinghe","nationality":"SRI","sex":"male","date_of_birth":"1991-02-10T00:00:00.000Z","height":1.82,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":172012231,"name":"Rababe Arafi","nationality":"MAR","sex":"female","date_of_birth":"1991-01-12T00:00:00.000Z","height":1.67,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":465159345,"name":"Rabah Yousif","nationality":"GBR","sex":"male","date_of_birth":"1986-12-11T00:00:00.000Z","height":1.86,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":437311401,"name":"Rabia Guelec","nationality":"GER","sex":"female","date_of_birth":"1994-06-05T00:00:00.000Z","height":1.75,"weight":62,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":775207992,"name":"Race Imboden","nationality":"USA","sex":"male","date_of_birth":"1993-04-17T00:00:00.000Z","height":1.86,"weight":74,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":667595731,"name":"Rachael Adams","nationality":"USA","sex":"female","date_of_birth":"1990-06-03T00:00:00.000Z","height":1.88,"weight":81,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":348723574,"name":"Rachael Lynch","nationality":"AUS","sex":"female","date_of_birth":"1986-07-02T00:00:00.000Z","height":1.79,"weight":68,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":519575300,"name":"Rachael Mbogo","nationality":"KEN","sex":"female","date_of_birth":"1982-12-20T00:00:00.000Z","height":1.7,"weight":64,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":95839942,"name":"Rachel Cawthorn","nationality":"GBR","sex":"female","date_of_birth":"1988-11-03T00:00:00.000Z","height":1.77,"weight":70,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":728971691,"name":"Rachel Dawson","nationality":"USA","sex":"female","date_of_birth":"1985-08-02T00:00:00.000Z","height":1.78,"weight":68,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":305014449,"name":"Rachel Fattal","nationality":"USA","sex":"female","date_of_birth":"1993-12-10T00:00:00.000Z","height":1.73,"weight":65,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":559172027,"name":"Rachel Jarry","nationality":"AUS","sex":"female","date_of_birth":"1991-12-06T00:00:00.000Z","height":1.86,"weight":77,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":676779702,"name":"Rachel Klamer","nationality":"NED","sex":"female","date_of_birth":"1990-10-08T00:00:00.000Z","height":1.66,"weight":51,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":844090644,"name":"Rachel Neylan","nationality":"AUS","sex":"female","date_of_birth":"1982-03-09T00:00:00.000Z","height":1.69,"weight":52,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":935732603,"name":"Rachel Nicol","nationality":"CAN","sex":"female","date_of_birth":"1993-02-16T00:00:00.000Z","height":1.6,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":646854550,"name":"Rachel Tallent","nationality":"AUS","sex":"female","date_of_birth":"1993-02-20T00:00:00.000Z","height":1.67,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":240097025,"name":"Rachele Bruni","nationality":"ITA","sex":"female","date_of_birth":"1990-11-04T00:00:00.000Z","height":1.7,"weight":59,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":487277130,"name":"Rachid Ait-Atmane","nationality":"ALG","sex":"male","date_of_birth":"1993-02-04T00:00:00.000Z","height":1.85,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":284352083,"name":"Rachid Kisri","nationality":"MAR","sex":"male","date_of_birth":"1975-08-02T00:00:00.000Z","height":1.79,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":449827888,"name":"Rachid Sidibe","nationality":"BUR","sex":"male","date_of_birth":"1990-12-02T00:00:00.000Z","height":1.77,"weight":119,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":644175866,"name":"Racquel Sheath","nationality":"NZL","sex":"female","date_of_birth":"1994-11-27T00:00:00.000Z","height":1.65,"weight":57,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":937396787,"name":"Radek Juska","nationality":"CZE","sex":"male","date_of_birth":"1993-03-08T00:00:00.000Z","height":1.94,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":627998847,"name":"Radek Stepanek","nationality":"CZE","sex":"male","date_of_birth":"1978-11-27T00:00:00.000Z","height":1.86,"weight":78,"sport":"tennis","gold":0,"silver":0,"bronze":1,"info":null},{"id":577467717,"name":"Radhouane Chebbi","nationality":"TUN","sex":"male","date_of_birth":"1985-08-08T00:00:00.000Z","height":1.74,"weight":125,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":937210805,"name":"Radik Isaev","nationality":"AZE","sex":"male","date_of_birth":"1989-09-26T00:00:00.000Z","height":2,"weight":93,"sport":"taekwondo","gold":1,"silver":0,"bronze":0,"info":null},{"id":644415749,"name":"Radmila Petrovic","nationality":"MNE","sex":"female","date_of_birth":"1988-04-19T00:00:00.000Z","height":1.75,"weight":60,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":81383453,"name":"Radomyos Matjiur","nationality":"THA","sex":"male","date_of_birth":"1988-04-02T00:00:00.000Z","height":1.82,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":440186734,"name":"Radoslava Mavrodieva","nationality":"BUL","sex":"female","date_of_birth":"1987-03-13T00:00:00.000Z","height":1.76,"weight":94,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":850134713,"name":"Radoslaw Baran","nationality":"POL","sex":"male","date_of_birth":"1989-11-05T00:00:00.000Z","height":1.77,"weight":97,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":581644071,"name":"Radoslaw Kawecki","nationality":"POL","sex":"male","date_of_birth":"1991-08-16T00:00:00.000Z","height":1.86,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":997901130,"name":"Radu Albot","nationality":"MDA","sex":"male","date_of_birth":"1989-11-11T00:00:00.000Z","height":1.75,"weight":70,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":457575476,"name":"Rafael Alcantara","nationality":"BRA","sex":"male","date_of_birth":"1993-02-12T00:00:00.000Z","height":1.74,"weight":65,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":825109201,"name":"Rafael Andrade","nationality":"BRA","sex":"male","date_of_birth":"1986-05-07T00:00:00.000Z","height":1.68,"weight":null,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":724962293,"name":"Rafael Antonio Lacayo Paladino","nationality":"NCA","sex":"male","date_of_birth":"1998-11-19T00:00:00.000Z","height":1.78,"weight":59,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":730338405,"name":"Rafael Buzacarini","nationality":"BRA","sex":"male","date_of_birth":"1991-10-06T00:00:00.000Z","height":1.83,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":731749263,"name":"Rafael Cabrera Bello","nationality":"ESP","sex":"male","date_of_birth":"1984-05-25T00:00:00.000Z","height":1.87,"weight":83,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":930296757,"name":"Rafael Capote","nationality":"QAT","sex":"male","date_of_birth":"1987-10-05T00:00:00.000Z","height":1.98,"weight":106,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":632477118,"name":"Rafael Castillo","nationality":"CUB","sex":"male","date_of_birth":"1993-08-12T00:00:00.000Z","height":2.02,"weight":87,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":558313217,"name":"Rafael Hettsheimeir","nationality":"BRA","sex":"male","date_of_birth":"1986-06-16T00:00:00.000Z","height":2.08,"weight":120,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":125913109,"name":"Rafael Luz","nationality":"BRA","sex":"male","date_of_birth":"1992-02-11T00:00:00.000Z","height":1.88,"weight":95,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":845065634,"name":"Rafael Nadal","nationality":"ESP","sex":"male","date_of_birth":"1986-06-03T00:00:00.000Z","height":1.85,"weight":79,"sport":"tennis","gold":1,"silver":0,"bronze":0,"info":"The “Miura Bull” is a phenomenon. Dominating on clay, Rafael Nadal broke Björn Borg's record by winning nine Roland Garros titles. The Spaniard has already won all four tennis Grand Slams – and took home the gold at Beijing 2008."},{"id":691523372,"name":"Rafael Quintero","nationality":"PUR","sex":"male","date_of_birth":"1994-07-24T00:00:00.000Z","height":1.8,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":501691381,"name":"Rafael Silva","nationality":"BRA","sex":"male","date_of_birth":"1987-05-11T00:00:00.000Z","height":2.03,"weight":160,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":361799297,"name":"Rafaela Silva","nationality":"BRA","sex":"female","date_of_birth":"1992-04-24T00:00:00.000Z","height":1.69,"weight":57,"sport":"judo","gold":1,"silver":0,"bronze":0,"info":"Judoka Rafaela Silva has won the first gold medal for Brazil at the Rio 2016 Games, in the Women’s Lightweight category (up to 57kg). Born in Cidade de Deus, Rio de Janeiro, she became the first Brazilian world champion in the sport in 2013."},{"id":98299217,"name":"Rafaelle","nationality":"BRA","sex":"female","date_of_birth":"1991-06-18T00:00:00.000Z","height":1.75,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":155018393,"name":"Rafal Augustyn","nationality":"POL","sex":"male","date_of_birth":"1984-05-14T00:00:00.000Z","height":1.8,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":178643168,"name":"Rafal Buszek","nationality":"POL","sex":"male","date_of_birth":"1987-04-28T00:00:00.000Z","height":1.94,"weight":81,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":290922761,"name":"Rafal Fedaczynski","nationality":"POL","sex":"male","date_of_birth":"1980-12-03T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":888503746,"name":"Rafal Majka","nationality":"POL","sex":"male","date_of_birth":"1989-09-12T00:00:00.000Z","height":1.73,"weight":61,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":740945281,"name":"Rafal Omelko","nationality":"POL","sex":"male","date_of_birth":"1989-01-16T00:00:00.000Z","height":1.94,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":986457519,"name":"Rafal Rosolski","nationality":"POL","sex":"male","date_of_birth":"1991-05-27T00:00:00.000Z","height":1.88,"weight":86,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":650690707,"name":"Rafal Sarnecki","nationality":"POL","sex":"male","date_of_birth":"1990-01-08T00:00:00.000Z","height":1.75,"weight":81,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":397809896,"name":"Rafith Rodriguez","nationality":"COL","sex":"male","date_of_birth":"1989-06-01T00:00:00.000Z","height":1.9,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":607055937,"name":"Ragab Abdalla","nationality":"EGY","sex":"male","date_of_birth":"1991-03-04T00:00:00.000Z","height":1.7,"weight":93,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":546687693,"name":"Raghunath Vokkaliga","nationality":"IND","sex":"male","date_of_birth":"1988-11-01T00:00:00.000Z","height":1.79,"weight":89,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":913614600,"name":"Ragna Agerup","nationality":"NOR","sex":"female","date_of_birth":"1995-06-22T00:00:00.000Z","height":null,"weight":null,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":470122397,"name":"Rahel Fseha Gebresilassie","nationality":"ETH","sex":"female","date_of_birth":"1995-11-03T00:00:00.000Z","height":1.6,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":215186405,"name":"Raheleh Asemani","nationality":"BEL","sex":"female","date_of_birth":"1989-06-21T00:00:00.000Z","height":1.71,"weight":59,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":932824514,"name":"Rahma Ben Ali","nationality":"TUN","sex":"female","date_of_birth":"1993-09-15T00:00:00.000Z","height":1.59,"weight":55,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":680456945,"name":"Raiber Jose Rodriguez Orozco","nationality":"VEN","sex":"male","date_of_birth":"1990-12-28T00:00:00.000Z","height":1.68,"weight":69,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":296185766,"name":"Raijieli Daveua","nationality":"FIJ","sex":"female","date_of_birth":"1992-05-30T00:00:00.000Z","height":null,"weight":69,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":711937461,"name":"Raissa Nasser","nationality":"CMR","sex":"female","date_of_birth":"1994-08-19T00:00:00.000Z","height":1.73,"weight":73,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":608420333,"name":"Raiza Goulao-Henrique","nationality":"BRA","sex":"female","date_of_birth":"1991-02-28T00:00:00.000Z","height":1.68,"weight":56,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":425162621,"name":"Rajani Etimarpu","nationality":"IND","sex":"female","date_of_birth":"1990-06-09T00:00:00.000Z","height":1.72,"weight":63,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":818043080,"name":"Rajeev Ram","nationality":"USA","sex":"male","date_of_birth":"1984-03-18T00:00:00.000Z","height":null,"weight":null,"sport":"tennis","gold":0,"silver":1,"bronze":0,"info":null},{"id":465151965,"name":"Rajiv Ouseph","nationality":"GBR","sex":"male","date_of_birth":"1986-08-30T00:00:00.000Z","height":1.91,"weight":null,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":364210839,"name":"Ralf Buchheim","nationality":"GER","sex":"male","date_of_birth":"1983-10-10T00:00:00.000Z","height":1.83,"weight":72,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":907089617,"name":"Ralph Goveia Assafrao","nationality":"ZAM","sex":"male","date_of_birth":"1996-03-08T00:00:00.000Z","height":1.87,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":717986475,"name":"Raluca Olaru","nationality":"ROU","sex":"female","date_of_birth":"1989-03-03T00:00:00.000Z","height":1.74,"weight":63,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":168597162,"name":"Ramadan Darwish","nationality":"EGY","sex":"male","date_of_birth":"1988-01-29T00:00:00.000Z","height":1.88,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":781913285,"name":"Ramandeep Singh","nationality":"IND","sex":"male","date_of_birth":"1993-04-01T00:00:00.000Z","height":1.79,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":186916471,"name":"Rami Anis","nationality":"ROT","sex":"male","date_of_birth":"1991-03-18T00:00:00.000Z","height":1.78,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":554313909,"name":"Rami Antero Hietaniemi","nationality":"FIN","sex":"male","date_of_birth":"1982-12-28T00:00:00.000Z","height":1.8,"weight":92,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":448967973,"name":"Ramil Guliyev","nationality":"TUR","sex":"male","date_of_birth":"1990-05-29T00:00:00.000Z","height":1.86,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":171315396,"name":"Ramiro Quintana","nationality":"ARG","sex":"male","date_of_birth":"1977-03-07T00:00:00.000Z","height":1.72,"weight":70,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":411617493,"name":"Ramon Gittens","nationality":"BAR","sex":"male","date_of_birth":"1987-07-20T00:00:00.000Z","height":1.8,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":700638959,"name":"Ramon Pileta","nationality":"HON","sex":"male","date_of_birth":"1977-03-20T00:00:00.000Z","height":1.85,"weight":130,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":115217179,"name":"Ramona Papaioannou","nationality":"CYP","sex":"female","date_of_birth":"1989-06-15T00:00:00.000Z","height":1.7,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":605985287,"name":"Ramu Tokashiki","nationality":"JPN","sex":"female","date_of_birth":"1991-06-11T00:00:00.000Z","height":1.91,"weight":85,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":655303301,"name":"Ramunas Navardauskas","nationality":"LTU","sex":"male","date_of_birth":"1988-01-30T00:00:00.000Z","height":1.9,"weight":78,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":479803559,"name":"Ran Sui","nationality":"CHN","sex":"male","date_of_birth":"1992-06-25T00:00:00.000Z","height":1.93,"weight":96,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":495175841,"name":"Rana Nakano","nationality":"JPN","sex":"female","date_of_birth":"1997-09-10T00:00:00.000Z","height":1.57,"weight":43,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":177719798,"name":"Randy Leru","nationality":"CUB","sex":"male","date_of_birth":"1995-11-07T00:00:00.000Z","height":1.73,"weight":72,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":512106785,"name":"Rani","nationality":"IND","sex":"female","date_of_birth":"1994-12-04T00:00:00.000Z","height":1.6,"weight":60,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":957169237,"name":"Ranokhon Amanova","nationality":"UZB","sex":"female","date_of_birth":"1994-03-08T00:00:00.000Z","height":1.74,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":332379601,"name":"Ranomi Kromowidjojo","nationality":"NED","sex":"female","date_of_birth":"1990-08-20T00:00:00.000Z","height":1.8,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":"Dutch swimmer Ranomi Kromowidjojo holds three Olympic golds: in the 4x100m freestyle relay (Beijing 2008), 50m freestyle and 100m freestyle (London 2012), when she broke the Olympic records for these events."},{"id":738350082,"name":"Raphael Gagne","nationality":"CAN","sex":"male","date_of_birth":"1987-07-16T00:00:00.000Z","height":1.73,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":160405615,"name":"Raphael Marcel Holzdeppe","nationality":"GER","sex":"male","date_of_birth":"1989-09-28T00:00:00.000Z","height":1.83,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":470376574,"name":"Raphael Stacchiotti","nationality":"LUX","sex":"male","date_of_birth":"1992-03-09T00:00:00.000Z","height":1.83,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":57685762,"name":"Raquel Fernandes","nationality":"BRA","sex":"female","date_of_birth":"1991-03-21T00:00:00.000Z","height":1.6,"weight":56,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":953499881,"name":"Raquel Gonzalez","nationality":"ESP","sex":"female","date_of_birth":"1989-11-16T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":254376988,"name":"Raquel Kochhann","nationality":"BRA","sex":"female","date_of_birth":"1992-10-06T00:00:00.000Z","height":1.72,"weight":70,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":930359048,"name":"Rasa Drazdauskaite","nationality":"LTU","sex":"female","date_of_birth":"1981-03-20T00:00:00.000Z","height":1.73,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":718297229,"name":"Rashid Hamad","nationality":"QAT","sex":"male","date_of_birth":"1987-10-18T00:00:00.000Z","height":1.68,"weight":85,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":15159824,"name":"Rashid Yunusmetov","nationality":"KAZ","sex":"male","date_of_birth":"1979-07-09T00:00:00.000Z","height":1.8,"weight":100,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":223728241,"name":"Rasmus Christian Quaade","nationality":"DEN","sex":"male","date_of_birth":"1990-01-07T00:00:00.000Z","height":1.87,"weight":77,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":258311001,"name":"Rasmus Magi","nationality":"EST","sex":"male","date_of_birth":"1992-05-04T00:00:00.000Z","height":1.87,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":950792939,"name":"Rasmus Quist","nationality":"DEN","sex":"male","date_of_birth":"1980-04-05T00:00:00.000Z","height":1.73,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":86534695,"name":"Rasul Chunayev","nationality":"AZE","sex":"male","date_of_birth":"1991-01-07T00:00:00.000Z","height":1.71,"weight":66,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":553576191,"name":"Ratchanok Intanon","nationality":"THA","sex":"female","date_of_birth":"1995-02-05T00:00:00.000Z","height":1.69,"weight":59,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":682664911,"name":"Ratu Nakalevu","nationality":"FIJ","sex":"male","date_of_birth":"1994-03-07T00:00:00.000Z","height":1.7,"weight":73,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":722317723,"name":"Ratu Waranaivalu","nationality":"FIJ","sex":"male","date_of_birth":"1995-09-16T00:00:00.000Z","height":1.75,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":595425086,"name":"Raul Curiel","nationality":"MEX","sex":"male","date_of_birth":"1995-12-06T00:00:00.000Z","height":1.77,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":50353432,"name":"Raul Hernandez Hidalgo","nationality":"CUB","sex":"male","date_of_birth":"1992-09-22T00:00:00.000Z","height":1.9,"weight":71,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":76349078,"name":"Raul Lopez","nationality":"MEX","sex":"male","date_of_birth":"1993-02-22T00:00:00.000Z","height":1.84,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":776415123,"name":"Raul Machacuay","nationality":"PER","sex":"male","date_of_birth":"1983-02-18T00:00:00.000Z","height":1.65,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":720271360,"name":"Raul Must","nationality":"EST","sex":"male","date_of_birth":"1987-11-09T00:00:00.000Z","height":1.76,"weight":70,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":728492983,"name":"Raul Pacheco","nationality":"PER","sex":"male","date_of_birth":"1979-04-26T00:00:00.000Z","height":1.67,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":788112409,"name":"Raulzinho Neto","nationality":"BRA","sex":"male","date_of_birth":"1992-05-19T00:00:00.000Z","height":1.92,"weight":82,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":874212245,"name":"Raven Saunders","nationality":"USA","sex":"female","date_of_birth":"1996-05-15T00:00:00.000Z","height":1.66,"weight":108,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":412234699,"name":"Ravinder Khatri","nationality":"IND","sex":"male","date_of_birth":"1992-05-15T00:00:00.000Z","height":1.68,"weight":85,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":717317078,"name":"Ray Bassil","nationality":"LIB","sex":"female","date_of_birth":"1988-10-20T00:00:00.000Z","height":1.75,"weight":65,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":920376731,"name":"Rayderley Miguel Zapata","nationality":"ESP","sex":"male","date_of_birth":"1993-05-26T00:00:00.000Z","height":1.69,"weight":71,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":479953072,"name":"Raymond Kibet","nationality":"KEN","sex":"male","date_of_birth":"1996-02-04T00:00:00.000Z","height":1.85,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":781144193,"name":"Raymond Ovinou","nationality":"PNG","sex":"male","date_of_birth":"1984-09-06T00:00:00.000Z","height":1.69,"weight":68,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":677348878,"name":"Rayssa Costa","nationality":"BRA","sex":"female","date_of_birth":"1991-03-16T00:00:00.000Z","height":1.76,"weight":63,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":372384369,"name":"Rayton Nduku Okwiri","nationality":"KEN","sex":"male","date_of_birth":"1986-03-26T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":707114327,"name":"Rebeca Andrade","nationality":"BRA","sex":"female","date_of_birth":"1999-05-08T00:00:00.000Z","height":1.45,"weight":45,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":35093364,"name":"Rebeca Quinteros Ortiz","nationality":"ESA","sex":"female","date_of_birth":"1997-08-28T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":130438348,"name":"Rebecca Downie","nationality":"GBR","sex":"female","date_of_birth":"1992-01-24T00:00:00.000Z","height":1.56,"weight":54,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":698057200,"name":"Rebecca Gallantree","nationality":"GBR","sex":"female","date_of_birth":"1984-08-19T00:00:00.000Z","height":1.66,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":109265734,"name":"Rebecca Henderson","nationality":"AUS","sex":"female","date_of_birth":"1991-09-27T00:00:00.000Z","height":1.58,"weight":49,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":437939980,"name":"Rebecca Heyliger","nationality":"BER","sex":"female","date_of_birth":"1992-11-24T00:00:00.000Z","height":1.61,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":708254383,"name":"Rebecca Howard","nationality":"CAN","sex":"female","date_of_birth":"1979-05-09T00:00:00.000Z","height":1.62,"weight":70,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":360632507,"name":"Rebecca James","nationality":"GBR","sex":"female","date_of_birth":"1991-11-29T00:00:00.000Z","height":1.71,"weight":66,"sport":"cycling","gold":0,"silver":2,"bronze":0,"info":null},{"id":564979166,"name":"Rebecca Ndolo Muambo","nationality":"CMR","sex":"female","date_of_birth":"1985-07-16T00:00:00.000Z","height":1.52,"weight":48,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":711142045,"name":"Rebecca Quinn","nationality":"CAN","sex":"female","date_of_birth":"1995-08-11T00:00:00.000Z","height":1.76,"weight":66,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":253747465,"name":"Rebecca Rolls","nationality":"NZL","sex":"female","date_of_birth":"1975-08-22T00:00:00.000Z","height":1.78,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":108904189,"name":"Rebecca Scown","nationality":"NZL","sex":"female","date_of_birth":"1983-08-10T00:00:00.000Z","height":1.78,"weight":70,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":140526328,"name":"Rebecca Tavo","nationality":"FIJ","sex":"female","date_of_birth":"1983-03-23T00:00:00.000Z","height":1.72,"weight":75,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":890871290,"name":"Rebeka Koha","nationality":"LAT","sex":"female","date_of_birth":"1998-05-19T00:00:00.000Z","height":1.57,"weight":52,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":20518421,"name":"Rebekah Stott","nationality":"NZL","sex":"female","date_of_birth":"1993-06-17T00:00:00.000Z","height":1.72,"weight":63,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":841170860,"name":"Rebekah Tiler","nationality":"GBR","sex":"female","date_of_birth":"1999-01-13T00:00:00.000Z","height":1.63,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":98483508,"name":"Rebekka Haase","nationality":"GER","sex":"female","date_of_birth":"1993-01-02T00:00:00.000Z","height":1.7,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":795341579,"name":"Rebii Simon","nationality":"GBR","sex":"female","date_of_birth":"1996-07-06T00:00:00.000Z","height":1.75,"weight":70,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":409979850,"name":"Rechael Tonjor","nationality":"NGR","sex":"female","date_of_birth":"1991-10-14T00:00:00.000Z","height":1.68,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":874150353,"name":"Reda Benbaziz","nationality":"ALG","sex":"male","date_of_birth":"1993-09-05T00:00:00.000Z","height":1.85,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":873696755,"name":"Redouane Cherifi","nationality":"ALG","sex":"male","date_of_birth":"1993-02-22T00:00:00.000Z","height":1.8,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":684887323,"name":"Reem Mansour","nationality":"EGY","sex":"female","date_of_birth":"1993-12-20T00:00:00.000Z","height":1.69,"weight":76,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":415954257,"name":"Reem Mohamed Hussein Elsayed kassem","nationality":"EGY","sex":"female","date_of_birth":"1995-10-01T00:00:00.000Z","height":1.75,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":825382404,"name":"Refiloe Jane","nationality":"RSA","sex":"female","date_of_birth":"1992-08-04T00:00:00.000Z","height":1.59,"weight":55,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":437714118,"name":"Regan Gough","nationality":"NZL","sex":"male","date_of_birth":"1996-10-06T00:00:00.000Z","height":1.83,"weight":71,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":578826400,"name":"Regan Lamble","nationality":"AUS","sex":"female","date_of_birth":"1991-10-14T00:00:00.000Z","height":1.74,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":820273693,"name":"Regan Ware","nationality":"NZL","sex":"male","date_of_birth":"1994-08-07T00:00:00.000Z","height":1.84,"weight":93,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":530301493,"name":"Regine Tugade","nationality":"GUM","sex":"female","date_of_birth":"1998-01-28T00:00:00.000Z","height":1.65,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":503502071,"name":"Rei Higuchi","nationality":"JPN","sex":"male","date_of_birth":"1996-01-28T00:00:00.000Z","height":1.63,"weight":63,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":487797823,"name":"Reid Coolsaet","nationality":"CAN","sex":"male","date_of_birth":"1979-07-29T00:00:00.000Z","height":1.73,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":634606811,"name":"Reidis Ramos","nationality":"CUB","sex":"male","date_of_birth":"1996-07-21T00:00:00.000Z","height":1.72,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":102628929,"name":"Reiko Takeda","nationality":"JPN","sex":"female","date_of_birth":"1984-12-14T00:00:00.000Z","height":1.51,"weight":48,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":728475978,"name":"Rein Taaramae","nationality":"EST","sex":"male","date_of_birth":"1987-04-24T00:00:00.000Z","height":1.85,"weight":75,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":710574826,"name":"Reina-Flor Okori","nationality":"GEQ","sex":"female","date_of_birth":"1980-05-02T00:00:00.000Z","height":1.63,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":705591992,"name":"Reinder Nummerdor","nationality":"NED","sex":"male","date_of_birth":"1976-09-10T00:00:00.000Z","height":1.94,"weight":87,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":"Making the Dutch volleyball team at Sydney 2000 and Athens 2004, Reinder Nummerdor then started playing beach volleyball and competed at Beijing 2008 and London 2012, placing fourth with Richard Schuil. He was a runner-up in the 2015 world championship."},{"id":863462189,"name":"Reineris Salas Perez","nationality":"CUB","sex":"male","date_of_birth":"1987-03-17T00:00:00.000Z","height":1.8,"weight":86,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":315497786,"name":"Reinier Estpinan","nationality":"CUB","sex":"male","date_of_birth":"1982-12-05T00:00:00.000Z","height":1.7,"weight":72,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":133025640,"name":"Reinier Rojas Cohimbra","nationality":"CUB","sex":"male","date_of_birth":"1986-07-31T00:00:00.000Z","height":1.9,"weight":78,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":189944782,"name":"Reinier Torres","nationality":"CUB","sex":"male","date_of_birth":"1990-02-15T00:00:00.000Z","height":1.82,"weight":85,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":19704992,"name":"Rejoice Kapfumvuti","nationality":"ZIM","sex":"female","date_of_birth":"1991-11-18T00:00:00.000Z","height":1.6,"weight":53,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":165032675,"name":"Reka Gyorgy","nationality":"HUN","sex":"female","date_of_birth":"1996-05-25T00:00:00.000Z","height":1.76,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":263751358,"name":"Reka-Luca Jani","nationality":"HUN","sex":"female","date_of_birth":"1991-07-31T00:00:00.000Z","height":1.6,"weight":57,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":776117067,"name":"Remi Garsau","nationality":"FRA","sex":"male","date_of_birth":"1984-07-19T00:00:00.000Z","height":1.9,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":746576007,"name":"Remi Saudadier","nationality":"FRA","sex":"male","date_of_birth":"1986-03-20T00:00:00.000Z","height":1.98,"weight":100,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":545506950,"name":"Remigijus Kancys","nationality":"LTU","sex":"male","date_of_birth":"1987-07-17T00:00:00.000Z","height":1.73,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":228952671,"name":"Renaldas Seibutis","nationality":"LTU","sex":"male","date_of_birth":"1985-07-23T00:00:00.000Z","height":1.96,"weight":83,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":390436911,"name":"Renat Saidov","nationality":"RUS","sex":"male","date_of_birth":"1988-09-27T00:00:00.000Z","height":2.1,"weight":101,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":456145597,"name":"Renata Tobai Sike","nationality":"HUN","sex":"female","date_of_birth":"1978-07-10T00:00:00.000Z","height":1.8,"weight":67,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":736324919,"name":"Renato Augusto","nationality":"BRA","sex":"male","date_of_birth":"1988-02-08T00:00:00.000Z","height":1.86,"weight":86,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":897045693,"name":"Renato Portella","nationality":"BRA","sex":"male","date_of_birth":"1962-12-05T00:00:00.000Z","height":1.65,"weight":74,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":466194153,"name":"Renato Rezende","nationality":"BRA","sex":"male","date_of_birth":"1991-02-28T00:00:00.000Z","height":1.71,"weight":72,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":59908931,"name":"Renaud Lavillenie","nationality":"FRA","sex":"male","date_of_birth":"1986-09-18T00:00:00.000Z","height":1.77,"weight":71,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":394581018,"name":"Rene Enders","nationality":"GER","sex":"male","date_of_birth":"1987-02-13T00:00:00.000Z","height":1.65,"weight":77,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":608905335,"name":"Rene Holten","nationality":"DEN","sex":"male","date_of_birth":"1988-11-28T00:00:00.000Z","height":1.88,"weight":92,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":873459751,"name":"Rene Lopez","nationality":"COL","sex":"male","date_of_birth":"1964-04-05T00:00:00.000Z","height":1.68,"weight":70,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":94618006,"name":"Rene Philippe Kouassi","nationality":"CIV","sex":"male","date_of_birth":"1979-12-14T00:00:00.000Z","height":1.9,"weight":83,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":861585492,"name":"Rene Pranz","nationality":"AUT","sex":"male","date_of_birth":"1985-09-04T00:00:00.000Z","height":1.84,"weight":79,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":57264316,"name":"Rene Tebbel","nationality":"UKR","sex":"male","date_of_birth":"1969-02-12T00:00:00.000Z","height":1.82,"weight":84,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":400301052,"name":"Rene Toft Hansen","nationality":"DEN","sex":"male","date_of_birth":"1984-11-01T00:00:00.000Z","height":2,"weight":105,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":109399064,"name":"Renee Eykens","nationality":"BEL","sex":"female","date_of_birth":"1996-06-08T00:00:00.000Z","height":1.7,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":73182018,"name":"Renelle Lamote","nationality":"FRA","sex":"female","date_of_birth":"1993-12-26T00:00:00.000Z","height":1.65,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":18503067,"name":"Reneta Kamberova","nationality":"BUL","sex":"female","date_of_birth":"1990-09-12T00:00:00.000Z","height":1.7,"weight":53,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":499299966,"name":"Renick James","nationality":"BIZ","sex":"male","date_of_birth":"1987-08-21T00:00:00.000Z","height":1.8,"weight":91,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":119864566,"name":"Renjith Maheswary","nationality":"IND","sex":"male","date_of_birth":"1986-01-30T00:00:00.000Z","height":1.84,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":563285077,"name":"Renny Quow","nationality":"TTO","sex":"male","date_of_birth":"1987-08-25T00:00:00.000Z","height":1.6,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":154797267,"name":"Renuka Yadav","nationality":"IND","sex":"female","date_of_birth":"1994-07-18T00:00:00.000Z","height":1.59,"weight":53,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":642982452,"name":"Renxue Zhu","nationality":"CHN","sex":"male","date_of_birth":"1991-04-06T00:00:00.000Z","height":1.7,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":859598308,"name":"Renzo Agresta","nationality":"BRA","sex":"male","date_of_birth":"1985-06-27T00:00:00.000Z","height":1.81,"weight":76,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":188249064,"name":"Renzo Leon Garcia","nationality":"PER","sex":"male","date_of_birth":"1990-08-14T00:00:00.000Z","height":1.86,"weight":71,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":217093800,"name":"Renzo Tjon-A-Joe","nationality":"SUR","sex":"male","date_of_birth":"1995-07-08T00:00:00.000Z","height":1.9,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":63732121,"name":"Repo Malepe","nationality":"RSA","sex":"male","date_of_birth":"1997-02-18T00:00:00.000Z","height":1.79,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":867912323,"name":"Reshmie Shari Oogink","nationality":"NED","sex":"female","date_of_birth":"1989-10-26T00:00:00.000Z","height":1.79,"weight":72,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":280064758,"name":"Revazi Nadareishvili","nationality":"GEO","sex":"male","date_of_birth":"1991-06-21T00:00:00.000Z","height":1.76,"weight":98,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":248931578,"name":"Rexford Tullius","nationality":"ISV","sex":"male","date_of_birth":"1987-03-10T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":671136449,"name":"Reyare Thomas","nationality":"TTO","sex":"female","date_of_birth":"1987-11-23T00:00:00.000Z","height":1.69,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":826747874,"name":"Reynier Mena","nationality":"CUB","sex":"male","date_of_birth":"1996-11-21T00:00:00.000Z","height":1.74,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":686527217,"name":"Reza Ghasemi","nationality":"IRI","sex":"male","date_of_birth":"1987-07-24T00:00:00.000Z","height":1.82,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":137914262,"name":"Reza Mohammad Ali Yazdani","nationality":"IRI","sex":"male","date_of_birth":"1984-08-25T00:00:00.000Z","height":1.72,"weight":100,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":522982610,"name":"Rhian Wilkinson","nationality":"CAN","sex":"female","date_of_birth":"1982-05-12T00:00:00.000Z","height":1.66,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":317198923,"name":"Rhydian Cowley","nationality":"AUS","sex":"male","date_of_birth":"1991-01-04T00:00:00.000Z","height":1.81,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":264189277,"name":"Rhys Grant","nationality":"AUS","sex":"male","date_of_birth":"1987-02-06T00:00:00.000Z","height":1.88,"weight":88,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":768753135,"name":"Rhys Howden","nationality":"AUS","sex":"male","date_of_birth":"1987-04-02T00:00:00.000Z","height":1.89,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":546440532,"name":"Ria Percival","nationality":"NZL","sex":"female","date_of_birth":"1989-12-07T00:00:00.000Z","height":1.62,"weight":57,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":558739071,"name":"Riau Ega Agatha","nationality":"INA","sex":"male","date_of_birth":"1991-10-25T00:00:00.000Z","height":1.75,"weight":70,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":238394812,"name":"Ricard Alarcon Tevar","nationality":"ESP","sex":"male","date_of_birth":"1991-08-18T00:00:00.000Z","height":1.88,"weight":110,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":898620184,"name":"Ricardas Berankis","nationality":"LTU","sex":"male","date_of_birth":"1990-06-21T00:00:00.000Z","height":1.75,"weight":74,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":56369474,"name":"Ricardas Nekriosius","nationality":"LTU","sex":"male","date_of_birth":"1986-09-12T00:00:00.000Z","height":1.84,"weight":88,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":458070483,"name":"Ricardo Esgaio","nationality":"POR","sex":"male","date_of_birth":"1993-05-16T00:00:00.000Z","height":1.75,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":975400260,"name":"Ricardo Gouveia","nationality":"POR","sex":"male","date_of_birth":"1991-08-06T00:00:00.000Z","height":1.75,"weight":88,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":279428980,"name":"Ricardo Lucarelli","nationality":"BRA","sex":"male","date_of_birth":"1992-02-14T00:00:00.000Z","height":1.95,"weight":79,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":372426764,"name":"Ricardo Ramos","nationality":"MEX","sex":"male","date_of_birth":"1985-12-05T00:00:00.000Z","height":1.72,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":385094917,"name":"Ricardo Ribas","nationality":"POR","sex":"male","date_of_birth":"1977-10-08T00:00:00.000Z","height":1.74,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":923708870,"name":"Ricardo Santos","nationality":"BRA","sex":"male","date_of_birth":"1980-05-08T00:00:00.000Z","height":1.85,"weight":73,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":711718943,"name":"Ricardo Soto","nationality":"CHI","sex":"male","date_of_birth":"1999-10-22T00:00:00.000Z","height":1.83,"weight":88,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":308968107,"name":"Ricardo Vargas Jacobo","nationality":"MEX","sex":"male","date_of_birth":"1997-11-21T00:00:00.000Z","height":1.8,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":820785891,"name":"Ricardo de Souza","nationality":"BRA","sex":"male","date_of_birth":"1994-09-21T00:00:00.000Z","height":1.75,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":281848184,"name":"Riccardo Mazzetti","nationality":"ITA","sex":"male","date_of_birth":"1984-05-02T00:00:00.000Z","height":1.81,"weight":77,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":96823281,"name":"Riccardo de Luca","nationality":"ITA","sex":"male","date_of_birth":"1986-03-22T00:00:00.000Z","height":1.87,"weight":80,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":558439036,"name":"Richard Bohus","nationality":"HUN","sex":"male","date_of_birth":"1993-04-09T00:00:00.000Z","height":1.85,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":509225287,"name":"Richard Chambers","nationality":"GBR","sex":"male","date_of_birth":"1985-06-10T00:00:00.000Z","height":1.83,"weight":74,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":385235592,"name":"Richard Hildreth","nationality":"CAN","sex":"male","date_of_birth":"1984-06-03T00:00:00.000Z","height":1.83,"weight":80,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":817106482,"name":"Richard Hounslow","nationality":"GBR","sex":"male","date_of_birth":"1981-12-19T00:00:00.000Z","height":1.83,"weight":78,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":715219943,"name":"Richard John Edward Patterson","nationality":"NZL","sex":"male","date_of_birth":"1983-04-30T00:00:00.000Z","height":1.67,"weight":84,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":180069208,"name":"Richard Kilty","nationality":"GBR","sex":"male","date_of_birth":"1989-09-02T00:00:00.000Z","height":1.82,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":232429024,"name":"Richard Kruse","nationality":"GBR","sex":"male","date_of_birth":"1983-07-30T00:00:00.000Z","height":1.9,"weight":84,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":947093935,"name":"Richard Merjan","nationality":"LIB","sex":"male","date_of_birth":"1988-11-10T00:00:00.000Z","height":1.6,"weight":57,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":158446186,"name":"Richard Murray","nationality":"RSA","sex":"male","date_of_birth":"1989-01-04T00:00:00.000Z","height":1.8,"weight":70,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":539128451,"name":"Richard Nagy","nationality":"SVK","sex":"male","date_of_birth":"1993-03-09T00:00:00.000Z","height":1.88,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":289690027,"name":"Richard Ringer","nationality":"GER","sex":"male","date_of_birth":"1989-02-27T00:00:00.000Z","height":1.82,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":16165612,"name":"Richard Schmidt","nationality":"GER","sex":"male","date_of_birth":"1987-05-23T00:00:00.000Z","height":1.73,"weight":76,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":434798426,"name":"Richard Thompson","nationality":"TTO","sex":"male","date_of_birth":"1985-07-06T00:00:00.000Z","height":1.88,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":45434968,"name":"Richard Varga","nationality":"SVK","sex":"male","date_of_birth":"1989-01-28T00:00:00.000Z","height":1.88,"weight":65,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":50122257,"name":"Richard Vargas","nationality":"VEN","sex":"male","date_of_birth":"1994-12-28T00:00:00.000Z","height":1.75,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":545591237,"name":"Richard Weinberger","nationality":"CAN","sex":"male","date_of_birth":"1990-06-07T00:00:00.000Z","height":1.84,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":582543706,"name":"Richardson Hitchins","nationality":"HAI","sex":"male","date_of_birth":"1997-09-26T00:00:00.000Z","height":null,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":153689574,"name":"Richelle Stephens","nationality":"USA","sex":"female","date_of_birth":"1996-07-22T00:00:00.000Z","height":1.68,"weight":65,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":972776916,"name":"Richer Perez","nationality":"CUB","sex":"male","date_of_birth":"1986-02-20T00:00:00.000Z","height":1.63,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":8241548,"name":"Richie Campbell","nationality":"AUS","sex":"male","date_of_birth":"1987-09-18T00:00:00.000Z","height":1.93,"weight":99,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":145755728,"name":"Richie Porte","nationality":"AUS","sex":"male","date_of_birth":"1985-01-30T00:00:00.000Z","height":1.72,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":553041631,"name":"Richson Simeon","nationality":"MHL","sex":"male","date_of_birth":"1997-10-05T00:00:00.000Z","height":1.55,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":182264140,"name":"Rick Yves Confiance","nationality":"SEY","sex":"male","date_of_birth":"1994-05-24T00:00:00.000Z","height":1.65,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":52657161,"name":"Rick van der Ven","nationality":"NED","sex":"male","date_of_birth":"1991-04-14T00:00:00.000Z","height":1.81,"weight":76,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":896354114,"name":"Rickie Fowler","nationality":"USA","sex":"male","date_of_birth":"1988-12-13T00:00:00.000Z","height":1.76,"weight":68,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":664274714,"name":"Ricky Robertson","nationality":"USA","sex":"male","date_of_birth":"1990-09-19T00:00:00.000Z","height":1.81,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":184879090,"name":"Ricky Rubio","nationality":"ESP","sex":"male","date_of_birth":"1990-10-21T00:00:00.000Z","height":1.93,"weight":82,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":29620677,"name":"Rico Freimuth","nationality":"GER","sex":"male","date_of_birth":"1988-03-14T00:00:00.000Z","height":1.96,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":814315679,"name":"Rie Kaneto","nationality":"JPN","sex":"female","date_of_birth":"1988-09-08T00:00:00.000Z","height":1.75,"weight":64,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":766598389,"name":"Rie Matsubara","nationality":"JPN","sex":"female","date_of_birth":"1993-10-21T00:00:00.000Z","height":1.67,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":155731349,"name":"Rieko Ioane","nationality":"NZL","sex":"male","date_of_birth":"1997-03-18T00:00:00.000Z","height":1.9,"weight":105,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":989632205,"name":"Rigoberto Uran Uran","nationality":"COL","sex":"male","date_of_birth":"1987-01-26T00:00:00.000Z","height":1.71,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":304856558,"name":"Riheb Hammami","nationality":"TUN","sex":"female","date_of_birth":"1989-06-04T00:00:00.000Z","height":1.7,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":765122395,"name":"Rikako Ikee","nationality":"JPN","sex":"female","date_of_birth":"2000-07-04T00:00:00.000Z","height":1.7,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":137154946,"name":"Riki Harakawa","nationality":"JPN","sex":"male","date_of_birth":"1993-08-18T00:00:00.000Z","height":1.75,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":62001472,"name":"Rikke Moller Pedersen","nationality":"DEN","sex":"female","date_of_birth":"1989-01-09T00:00:00.000Z","height":1.74,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":485889936,"name":"Riley Fitzsimmons","nationality":"AUS","sex":"male","date_of_birth":"1996-07-27T00:00:00.000Z","height":1.92,"weight":93,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":646643525,"name":"Rima Kashafutdinova","nationality":"KAZ","sex":"female","date_of_birth":"1995-07-24T00:00:00.000Z","height":1.6,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":968504345,"name":"Rio Watari","nationality":"JPN","sex":"female","date_of_birth":"1991-09-19T00:00:00.000Z","height":1.63,"weight":69,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":162020781,"name":"Risako Kawai","nationality":"JPN","sex":"female","date_of_birth":"1994-11-21T00:00:00.000Z","height":1.6,"weight":61,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":518813071,"name":"Risako Mitsui","nationality":"JPN","sex":"female","date_of_birth":"1993-09-23T00:00:00.000Z","height":1.68,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":2,"info":null},{"id":54528524,"name":"Rishod Sobirov","nationality":"UZB","sex":"male","date_of_birth":"1986-09-11T00:00:00.000Z","height":1.68,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":13338257,"name":"Ristananna Tracey","nationality":"JAM","sex":"female","date_of_birth":"1992-05-09T00:00:00.000Z","height":1.78,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":875138025,"name":"Riste Pandev","nationality":"MKD","sex":"male","date_of_birth":"1994-01-25T00:00:00.000Z","height":1.78,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":169332497,"name":"Risto Matas","nationality":"EST","sex":"male","date_of_birth":"1984-04-30T00:00:00.000Z","height":1.89,"weight":94,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":226090486,"name":"Rita Keszthelyi","nationality":"HUN","sex":"female","date_of_birth":"1991-12-10T00:00:00.000Z","height":1.78,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":977877235,"name":"Rita Recsei","nationality":"HUN","sex":"female","date_of_birth":"1996-01-30T00:00:00.000Z","height":1.68,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":427379114,"name":"Rita Zeqiri","nationality":"KOS","sex":"female","date_of_birth":"1995-12-08T00:00:00.000Z","height":1.65,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":463062176,"name":"Rivaldo Coetzee","nationality":"RSA","sex":"male","date_of_birth":"1996-10-16T00:00:00.000Z","height":1.83,"weight":73,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":950284932,"name":"Riwei Wang","nationality":"CHN","sex":"male","date_of_birth":"1993-03-21T00:00:00.000Z","height":1.82,"weight":85,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":536544725,"name":"Riza Kayaalp","nationality":"TUR","sex":"male","date_of_birth":"1989-10-10T00:00:00.000Z","height":1.82,"weight":130,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":899335116,"name":"Rizlen Zouak","nationality":"MAR","sex":"female","date_of_birth":"1986-05-14T00:00:00.000Z","height":1.64,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":578088761,"name":"Ro Dakuwaqa","nationality":"FIJ","sex":"male","date_of_birth":"1994-02-14T00:00:00.000Z","height":1.9,"weight":105,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":854121144,"name":"Rob Mullett","nationality":"GBR","sex":"male","date_of_birth":"1987-07-31T00:00:00.000Z","height":1.78,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":753125163,"name":"Robbert Kemperman","nationality":"NED","sex":"male","date_of_birth":"1990-06-24T00:00:00.000Z","height":1.86,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":57185186,"name":"Robbie Renwick","nationality":"GBR","sex":"male","date_of_birth":"1988-07-21T00:00:00.000Z","height":1.84,"weight":80,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":955978928,"name":"Robby Andrews","nationality":"USA","sex":"male","date_of_birth":"1991-03-29T00:00:00.000Z","height":1.78,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":58169707,"name":"Robeilys Peinado","nationality":"VEN","sex":"female","date_of_birth":"1997-11-26T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":921399403,"name":"Robeisy Ramirez","nationality":"CUB","sex":"male","date_of_birth":"1993-12-20T00:00:00.000Z","height":1.62,"weight":null,"sport":"boxing","gold":1,"silver":0,"bronze":0,"info":null},{"id":651154983,"name":"Robel Kiros Habte","nationality":"ETH","sex":"male","date_of_birth":"1992-04-13T00:00:00.000Z","height":1.76,"weight":81,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":371852297,"name":"Robenilson de Jesus","nationality":"BRA","sex":"male","date_of_birth":"1987-09-24T00:00:00.000Z","height":1.66,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":484252219,"name":"Robert Baran","nationality":"POL","sex":"male","date_of_birth":"1992-07-03T00:00:00.000Z","height":1.86,"weight":103,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":793414933,"name":"Robert Bauer","nationality":"GER","sex":"male","date_of_birth":"1995-04-09T00:00:00.000Z","height":1.83,"weight":76,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":136649712,"name":"Robert Elder","nationality":"FIJ","sex":"male","date_of_birth":"1981-04-25T00:00:00.000Z","height":1.94,"weight":115,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":453661639,"name":"Robert Farah","nationality":"COL","sex":"male","date_of_birth":"1987-01-20T00:00:00.000Z","height":1.93,"weight":92,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":65516021,"name":"Robert Fuchs","nationality":"POL","sex":"male","date_of_birth":"1991-06-12T00:00:00.000Z","height":2.09,"weight":105,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":69277111,"name":"Robert Gardos","nationality":"AUT","sex":"male","date_of_birth":"1979-01-16T00:00:00.000Z","height":1.78,"weight":72,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":588439110,"name":"Robert Glinta","nationality":"ROU","sex":"male","date_of_birth":"1997-04-18T00:00:00.000Z","height":1.85,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":957342784,"name":"Robert Grabarz","nationality":"GBR","sex":"male","date_of_birth":"1987-10-03T00:00:00.000Z","height":1.91,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":748479187,"name":"Robert Harting","nationality":"GER","sex":"male","date_of_birth":"1984-10-18T00:00:00.000Z","height":2.01,"weight":126,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":126498342,"name":"Robert Heffernan","nationality":"IRL","sex":"male","date_of_birth":"1978-02-28T00:00:00.000Z","height":1.71,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":401609569,"name":"Robert Hering","nationality":"GER","sex":"male","date_of_birth":"1990-06-14T00:00:00.000Z","height":1.8,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":740457326,"name":"Robert Luecken","nationality":"NED","sex":"male","date_of_birth":"1985-04-30T00:00:00.000Z","height":1.99,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":99198444,"name":"Robert Manson","nationality":"NZL","sex":"male","date_of_birth":"1989-10-11T00:00:00.000Z","height":1.88,"weight":89,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":651788735,"name":"Robert Mateusiak","nationality":"POL","sex":"male","date_of_birth":"1976-01-13T00:00:00.000Z","height":1.69,"weight":65,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":650448560,"name":"Robert Meeuwsen","nationality":"NED","sex":"male","date_of_birth":"1988-03-21T00:00:00.000Z","height":2.07,"weight":94,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":222647716,"name":"Robert Micael Gibson","nationality":"CAN","sex":"male","date_of_birth":"1986-02-02T00:00:00.000Z","height":1.95,"weight":101,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":653323381,"name":"Robert Mike","nationality":"HUN","sex":"male","date_of_birth":"1984-05-08T00:00:00.000Z","height":1.76,"weight":80,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":892281190,"name":"Robert Munn","nationality":"USA","sex":"male","date_of_birth":"1990-07-26T00:00:00.000Z","height":1.94,"weight":97,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":595627689,"name":"Robert Paez","nationality":"VEN","sex":"male","date_of_birth":"1994-06-01T00:00:00.000Z","height":1.74,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":455331641,"name":"Robert Renner","nationality":"SLO","sex":"male","date_of_birth":"1994-03-08T00:00:00.000Z","height":1.83,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":503602363,"name":"Robert Scheidt","nationality":"BRA","sex":"male","date_of_birth":"1973-04-15T00:00:00.000Z","height":1.88,"weight":76,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":"Brazil's Robert Scheidt has won medals at each of the five Olympic Games he competed in; gold at Atlanta 1996 and Athens 2004 and silver at Sydney 2000 in the Star class, as well as silver at Beijing 2008 and bronze at London 2012 in the Laser class."},{"id":720405492,"name":"Robert Skov","nationality":"DEN","sex":"male","date_of_birth":"1996-05-20T00:00:00.000Z","height":1.83,"weight":78,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":853386777,"name":"Robert Sobera","nationality":"POL","sex":"male","date_of_birth":"1991-01-19T00:00:00.000Z","height":1.91,"weight":86,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":532564803,"name":"Robert Timothy David Smith","nationality":"USA","sex":"male","date_of_birth":"1987-01-30T00:00:00.000Z","height":1.83,"weight":127,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":360028984,"name":"Robert Tvorogal","nationality":"LTU","sex":"male","date_of_birth":"1994-10-05T00:00:00.000Z","height":1.67,"weight":65,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":859612210,"name":"Robert Urbanek","nationality":"POL","sex":"male","date_of_birth":"1987-04-29T00:00:00.000Z","height":2,"weight":122,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":959745173,"name":"Robert Zbogar","nationality":"SLO","sex":"male","date_of_birth":"1989-03-06T00:00:00.000Z","height":1.83,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":810837214,"name":"Robert van der Horst","nationality":"NED","sex":"male","date_of_birth":"1984-10-17T00:00:00.000Z","height":1.79,"weight":74,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":146983428,"name":"Roberta Bianconi","nationality":"ITA","sex":"female","date_of_birth":"1989-07-08T00:00:00.000Z","height":1.76,"weight":76,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":755354493,"name":"Roberta Vinci","nationality":"ITA","sex":"female","date_of_birth":"1983-02-18T00:00:00.000Z","height":1.64,"weight":54,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":954509397,"name":"Robertas Javtokas","nationality":"LTU","sex":"male","date_of_birth":"1980-03-20T00:00:00.000Z","height":2.1,"weight":117,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":722113054,"name":"Roberti Kobliashvili","nationality":"GEO","sex":"male","date_of_birth":"1993-12-06T00:00:00.000Z","height":1.8,"weight":85,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":979738461,"name":"Roberto Acuna","nationality":"ARG","sex":"male","date_of_birth":"1990-09-14T00:00:00.000Z","height":2.08,"weight":109,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":758461623,"name":"Roberto Bautista Agut","nationality":"ESP","sex":"male","date_of_birth":"1988-04-14T00:00:00.000Z","height":1.83,"weight":76,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":21769735,"name":"Roberto Janet","nationality":"CUB","sex":"male","date_of_birth":"1986-08-29T00:00:00.000Z","height":1.87,"weight":106,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":340569096,"name":"Roberto Maehler","nationality":"BRA","sex":"male","date_of_birth":"1985-01-25T00:00:00.000Z","height":1.83,"weight":82,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":555000042,"name":"Roberto Sawyers","nationality":"CRC","sex":"male","date_of_birth":"1986-10-17T00:00:00.000Z","height":1.82,"weight":111,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":509328493,"name":"Roberto Schmits","nationality":"BRA","sex":"male","date_of_birth":"1969-02-04T00:00:00.000Z","height":1.87,"weight":90,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":930615320,"name":"Roberto Skyers","nationality":"CUB","sex":"male","date_of_birth":"1991-11-12T00:00:00.000Z","height":1.83,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":819268120,"name":"Robin Erewa","nationality":"GER","sex":"male","date_of_birth":"1991-06-24T00:00:00.000Z","height":1.84,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":577679695,"name":"Robin Haase","nationality":"NED","sex":"male","date_of_birth":"1987-04-06T00:00:00.000Z","height":1.9,"weight":77,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":982057422,"name":"Robin Middleton","nationality":"AUS","sex":"male","date_of_birth":"1985-02-08T00:00:00.000Z","height":1.88,"weight":85,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":444302683,"name":"Robin Neumann","nationality":"NED","sex":"female","date_of_birth":"1997-12-12T00:00:00.000Z","height":1.73,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":932757600,"name":"Robin Pacek","nationality":"SWE","sex":"male","date_of_birth":"1991-03-17T00:00:00.000Z","height":1.81,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":860901297,"name":"Robin Prendes","nationality":"USA","sex":"male","date_of_birth":"1988-12-13T00:00:00.000Z","height":1.86,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":205241654,"name":"Robin Quaison","nationality":"SWE","sex":"male","date_of_birth":"1993-10-09T00:00:00.000Z","height":1.82,"weight":78,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":569702101,"name":"Robin Ramaekers","nationality":"BEL","sex":"male","date_of_birth":"1994-10-26T00:00:00.000Z","height":1.8,"weight":78,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":196394925,"name":"Robin Seidl","nationality":"AUT","sex":"male","date_of_birth":"1990-01-21T00:00:00.000Z","height":1.9,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":771525167,"name":"Robin Vanderbemden","nationality":"BEL","sex":"male","date_of_birth":"1994-02-10T00:00:00.000Z","height":1.83,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":583096662,"name":"Robin de Kruijf","nationality":"NED","sex":"female","date_of_birth":"1991-05-05T00:00:00.000Z","height":1.92,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":938744484,"name":"Robson Conceicao","nationality":"BRA","sex":"male","date_of_birth":"1988-10-25T00:00:00.000Z","height":1.75,"weight":null,"sport":"boxing","gold":1,"silver":0,"bronze":0,"info":null},{"id":713083048,"name":"Robyn Moodaly","nationality":"RSA","sex":"female","date_of_birth":"1994-06-16T00:00:00.000Z","height":1.62,"weight":49,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":412115856,"name":"Roc Oliva","nationality":"ESP","sex":"male","date_of_birth":"1989-07-18T00:00:00.000Z","height":1.8,"weight":78,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":994481425,"name":"Rocco van Rooyen","nationality":"RSA","sex":"male","date_of_birth":"1992-12-23T00:00:00.000Z","height":1.9,"weight":98,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":369012326,"name":"Rocio Campigli","nationality":"ARG","sex":"female","date_of_birth":"1994-08-06T00:00:00.000Z","height":1.73,"weight":70,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":374524255,"name":"Rocio Comba","nationality":"ARG","sex":"female","date_of_birth":"1987-07-14T00:00:00.000Z","height":1.8,"weight":100,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":164940768,"name":"Rocio Gutierrez","nationality":"ESP","sex":"female","date_of_birth":"1985-07-20T00:00:00.000Z","height":1.62,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":528331372,"name":"Rocio Sanchez","nationality":"ARG","sex":"female","date_of_birth":"1988-08-02T00:00:00.000Z","height":1.57,"weight":54,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":885588616,"name":"Rocio Ybarra","nationality":"ESP","sex":"female","date_of_birth":"1984-12-26T00:00:00.000Z","height":1.59,"weight":54,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":273991849,"name":"Rodman Teltull","nationality":"PLW","sex":"male","date_of_birth":"1994-01-29T00:00:00.000Z","height":1.53,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":374596998,"name":"Rodney Govinden","nationality":"SEY","sex":"male","date_of_birth":"1984-09-13T00:00:00.000Z","height":1.79,"weight":84,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":625240454,"name":"Rodolfo Cazaubon","nationality":"MEX","sex":"male","date_of_birth":"1989-08-15T00:00:00.000Z","height":1.78,"weight":72,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":562268541,"name":"Rodolfo Lombardo Ontiveros Gomez","nationality":"MEX","sex":"male","date_of_birth":"1983-11-09T00:00:00.000Z","height":1.85,"weight":87,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":519800008,"name":"Rodolfo Pizarro","nationality":"MEX","sex":"male","date_of_birth":"1994-02-15T00:00:00.000Z","height":1.73,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":480321541,"name":"Rodrick Kuku","nationality":"COD","sex":"male","date_of_birth":"1986-04-06T00:00:00.000Z","height":null,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":216037265,"name":"Rodrigo Caio","nationality":"BRA","sex":"male","date_of_birth":"1993-08-17T00:00:00.000Z","height":1.82,"weight":70,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":5451063,"name":"Rodrigo Diego","nationality":"MEX","sex":"male","date_of_birth":"1996-12-02T00:00:00.000Z","height":1.66,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":699797697,"name":"Rodrigo Dourado","nationality":"BRA","sex":"male","date_of_birth":"1994-06-17T00:00:00.000Z","height":1.86,"weight":80,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":956734649,"name":"Rodrigo Etchart","nationality":"ARG","sex":"male","date_of_birth":"1994-01-24T00:00:00.000Z","height":1.8,"weight":80,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":817730923,"name":"Rodrigo Faustino","nationality":"BRA","sex":"male","date_of_birth":"1987-01-06T00:00:00.000Z","height":1.67,"weight":69,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":539471357,"name":"Rodrigo Germade","nationality":"ESP","sex":"male","date_of_birth":"1990-08-23T00:00:00.000Z","height":1.83,"weight":85,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":666269394,"name":"Rodrigo Gonzalez","nationality":"MEX","sex":"male","date_of_birth":"1989-12-14T00:00:00.000Z","height":1.8,"weight":69,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":259323134,"name":"Rodrigo Steimbach","nationality":"BRA","sex":"male","date_of_birth":"1996-01-30T00:00:00.000Z","height":1.61,"weight":58,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":482861402,"name":"Roel Braas","nationality":"NED","sex":"male","date_of_birth":"1987-03-11T00:00:00.000Z","height":2,"weight":100,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":992517041,"name":"Rogen Ladon","nationality":"PHI","sex":"male","date_of_birth":"1993-11-10T00:00:00.000Z","height":1.65,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":105565134,"name":"Roger Beresford Hudson","nationality":"RSA","sex":"male","date_of_birth":"1978-03-22T00:00:00.000Z","height":1.77,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":9609361,"name":"Roger Kluge","nationality":"GER","sex":"male","date_of_birth":"1986-02-05T00:00:00.000Z","height":1.91,"weight":85,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":311874637,"name":"Roger Tahull Compte","nationality":"ESP","sex":"male","date_of_birth":"1997-05-11T00:00:00.000Z","height":1.95,"weight":105,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":42178820,"name":"Roger Yves Bost","nationality":"FRA","sex":"male","date_of_birth":"1965-10-21T00:00:00.000Z","height":1.76,"weight":80,"sport":"equestrian","gold":1,"silver":0,"bronze":0,"info":null},{"id":620929414,"name":"Rogerio Dutra Silva","nationality":"BRA","sex":"male","date_of_birth":"1984-02-05T00:00:00.000Z","height":1.8,"weight":73,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":327425474,"name":"Rogier Hofman","nationality":"NED","sex":"male","date_of_birth":"1986-09-05T00:00:00.000Z","height":1.84,"weight":79,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":142935806,"name":"Rohan Bopanna","nationality":"IND","sex":"male","date_of_birth":"1980-03-04T00:00:00.000Z","height":1.9,"weight":85,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":571443859,"name":"Rohan Dennis","nationality":"AUS","sex":"male","date_of_birth":"1990-05-28T00:00:00.000Z","height":1.82,"weight":72,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":918866581,"name":"Roilya Ranaivosoa","nationality":"MRI","sex":"female","date_of_birth":"1990-11-14T00:00:00.000Z","height":1.52,"weight":48,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":777959030,"name":"Rok Draksic","nationality":"SLO","sex":"male","date_of_birth":"1987-01-02T00:00:00.000Z","height":1.66,"weight":75,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":215465391,"name":"Rok Stipcevic","nationality":"CRO","sex":"male","date_of_birth":"1986-05-20T00:00:00.000Z","height":1.86,"weight":85,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":883712398,"name":"Roko Ukic","nationality":"CRO","sex":"male","date_of_birth":"1984-12-05T00:00:00.000Z","height":1.95,"weight":88,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":79712981,"name":"Rolando Palacios","nationality":"HON","sex":"male","date_of_birth":"1987-05-03T00:00:00.000Z","height":1.89,"weight":89,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":388656945,"name":"Rolando Saquipay","nationality":"ECU","sex":"male","date_of_birth":"1979-07-21T00:00:00.000Z","height":1.65,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":640287031,"name":"Rolands Strobinders","nationality":"LAT","sex":"male","date_of_birth":"1992-04-14T00:00:00.000Z","height":1.9,"weight":103,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":30879894,"name":"Rolf-Goran Bengtsson","nationality":"SWE","sex":"male","date_of_birth":"1962-06-02T00:00:00.000Z","height":1.71,"weight":67,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":312873200,"name":"Romain Bardet","nationality":"FRA","sex":"male","date_of_birth":"1990-11-09T00:00:00.000Z","height":1.84,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":600322031,"name":"Romain Blary","nationality":"FRA","sex":"male","date_of_birth":"1985-10-20T00:00:00.000Z","height":1.95,"weight":100,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":230439728,"name":"Romain Duguet","nationality":"SUI","sex":"male","date_of_birth":"1980-10-07T00:00:00.000Z","height":1.76,"weight":68,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":64482420,"name":"Roman Anoshkin","nationality":"RUS","sex":"male","date_of_birth":"1987-08-31T00:00:00.000Z","height":1.92,"weight":95,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":699151957,"name":"Roman Bondaruk","nationality":"UKR","sex":"male","date_of_birth":"1974-06-20T00:00:00.000Z","height":1.77,"weight":95,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":729709593,"name":"Roman Fosti","nationality":"EST","sex":"male","date_of_birth":"1983-06-06T00:00:00.000Z","height":1.81,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":309267956,"name":"Roman Moustopoulos","nationality":"GRE","sex":"male","date_of_birth":"1993-03-02T00:00:00.000Z","height":1.77,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":551938294,"name":"Roman Prodius","nationality":"MDA","sex":"male","date_of_birth":"1981-04-12T00:00:00.000Z","height":1.82,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":617922297,"name":"Roman Roeoesli","nationality":"SUI","sex":"male","date_of_birth":"1993-09-22T00:00:00.000Z","height":1.91,"weight":87,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":733665408,"name":"Roman Valiyev","nationality":"KAZ","sex":"male","date_of_birth":"1984-03-27T00:00:00.000Z","height":1.9,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":324597845,"name":"Roman Vlasov","nationality":"RUS","sex":"male","date_of_birth":"1990-10-06T00:00:00.000Z","height":1.75,"weight":75,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":634337993,"name":"Romana Malacova","nationality":"CZE","sex":"female","date_of_birth":"1987-05-15T00:00:00.000Z","height":1.64,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":917720486,"name":"Romano Battisti","nationality":"ITA","sex":"male","date_of_birth":"1986-08-21T00:00:00.000Z","height":1.9,"weight":91,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":648586794,"name":"Romario Leitao","nationality":"STP","sex":"male","date_of_birth":"1997-01-16T00:00:00.000Z","height":1.75,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":109375657,"name":"Romell Quioto","nationality":"HON","sex":"male","date_of_birth":"1991-08-09T00:00:00.000Z","height":1.8,"weight":86,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":672358347,"name":"Rommel Pacheco","nationality":"MEX","sex":"male","date_of_birth":"1986-07-12T00:00:00.000Z","height":1.67,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":154900117,"name":"Romuald Hausser","nationality":"SUI","sex":"male","date_of_birth":"1988-04-16T00:00:00.000Z","height":1.85,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":201879323,"name":"Romy Kasper","nationality":"GER","sex":"female","date_of_birth":"1988-05-05T00:00:00.000Z","height":1.73,"weight":59,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":312147622,"name":"Ron Atias","nationality":"ISR","sex":"male","date_of_birth":"1995-04-19T00:00:00.000Z","height":1.7,"weight":58,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":226253632,"name":"Ron Darmon","nationality":"ISR","sex":"male","date_of_birth":"1992-10-30T00:00:00.000Z","height":1.75,"weight":65,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":224177837,"name":"Ronal Quispe","nationality":"BOL","sex":"male","date_of_birth":"1988-03-05T00:00:00.000Z","height":1.64,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":106685753,"name":"Ronald Forbes","nationality":"CAY","sex":"male","date_of_birth":"1985-04-05T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":379214136,"name":"Ronald Kwemoi","nationality":"KEN","sex":"male","date_of_birth":"1995-09-19T00:00:00.000Z","height":1.72,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":244164442,"name":"Ronald Musagala","nationality":"UGA","sex":"male","date_of_birth":"1992-12-16T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":335845060,"name":"Ronald Rauhe","nationality":"GER","sex":"male","date_of_birth":"1981-10-03T00:00:00.000Z","height":1.79,"weight":82,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":115983009,"name":"Ronald Serugo","nationality":"UGA","sex":"male","date_of_birth":"1984-09-05T00:00:00.000Z","height":null,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":745602669,"name":"Ronaldas Racinskas","nationality":"LTU","sex":"male","date_of_birth":"1968-05-13T00:00:00.000Z","height":1.88,"weight":85,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":972672762,"name":"Ronan Gormley","nationality":"IRL","sex":"male","date_of_birth":"1983-04-21T00:00:00.000Z","height":1.74,"weight":74,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":947165381,"name":"Rondel Sorrillo","nationality":"TTO","sex":"male","date_of_birth":"1986-01-24T00:00:00.000Z","height":1.78,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":209988250,"name":"Rong Shang","nationality":"CHN","sex":"female","date_of_birth":"2000-02-12T00:00:00.000Z","height":1.7,"weight":45,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":821012000,"name":"Rong Zhao","nationality":"CHN","sex":"female","date_of_birth":"1991-08-02T00:00:00.000Z","height":1.71,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":151465997,"name":"Roniel Iglesias","nationality":"CUB","sex":"male","date_of_birth":"1988-08-14T00:00:00.000Z","height":1.82,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":"The Olympic boxing champion at London 2012 in the up to 64kg class, Cuba's Roniel Iglesias also won a bronze at Beijing 2008. The following year, in 2009, he won the world amateur title, in Milan."},{"id":243518732,"name":"Ronja Sturm","nationality":"GER","sex":"female","date_of_birth":"1995-09-11T00:00:00.000Z","height":1.65,"weight":55,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":644702031,"name":"Ronnie Ash","nationality":"USA","sex":"male","date_of_birth":"1988-07-02T00:00:00.000Z","height":1.88,"weight":94,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":948499068,"name":"Roope Kakko","nationality":"FIN","sex":"male","date_of_birth":"1982-02-13T00:00:00.000Z","height":1.83,"weight":82,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":389320731,"name":"Rosa Chacha","nationality":"ECU","sex":"female","date_of_birth":"1982-12-08T00:00:00.000Z","height":1.55,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":836406601,"name":"Rosa Godoy","nationality":"ARG","sex":"female","date_of_birth":"1982-03-19T00:00:00.000Z","height":1.6,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":726865426,"name":"Rosa Keleku Lukusa","nationality":"COD","sex":"female","date_of_birth":"1995-01-16T00:00:00.000Z","height":1.63,"weight":48,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":564590281,"name":"Rosa Rodriguez","nationality":"VEN","sex":"female","date_of_birth":"1986-07-02T00:00:00.000Z","height":1.78,"weight":88,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":616812664,"name":"Rosane Sibele Budag","nationality":"BRA","sex":"female","date_of_birth":"1973-08-27T00:00:00.000Z","height":1.74,"weight":66,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":389253550,"name":"Rosane dos Reis Santos","nationality":"BRA","sex":"female","date_of_birth":"1987-06-20T00:00:00.000Z","height":1.62,"weight":53,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":828730273,"name":"Rosangela Santos","nationality":"BRA","sex":"female","date_of_birth":"1990-12-20T00:00:00.000Z","height":1.66,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":870380362,"name":"Rosannagh Maclennan","nationality":"CAN","sex":"female","date_of_birth":"1988-08-27T00:00:00.000Z","height":1.58,"weight":54,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":"Runner-up at the World Championships in 2011, Rosannagh MacLennan won Canada's only gold medal at London 2012 in the individual trampoline event, achieving a personal best result. In 2013, she went on to win the world title."},{"id":353182484,"name":"Rosaria Aiello","nationality":"ITA","sex":"female","date_of_birth":"1989-05-12T00:00:00.000Z","height":1.72,"weight":74,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":686173584,"name":"Rose Chelimo","nationality":"BRN","sex":"female","date_of_birth":"1989-07-12T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":72544057,"name":"Rose Mary Almanza","nationality":"CUB","sex":"female","date_of_birth":"1992-07-13T00:00:00.000Z","height":1.65,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":843367304,"name":"Rose Nathike Lokonyen","nationality":"ROT","sex":"female","date_of_birth":"1995-02-24T00:00:00.000Z","height":1.57,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":506706014,"name":"Rose Stackpole","nationality":"AUS","sex":"female","date_of_birth":"1995-05-25T00:00:00.000Z","height":1.65,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":400245389,"name":"Rose Thomas","nationality":"FRA","sex":"female","date_of_birth":"1988-11-29T00:00:00.000Z","height":1.63,"weight":66,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":272141065,"name":"Rose Woo","nationality":"CAN","sex":"female","date_of_birth":"2000-01-12T00:00:00.000Z","height":1.45,"weight":46,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":287037985,"name":"Rosefelo Siosi","nationality":"SOL","sex":"male","date_of_birth":"1996-08-23T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":781979354,"name":"Roseline Filion","nationality":"CAN","sex":"female","date_of_birth":"1987-07-03T00:00:00.000Z","height":1.54,"weight":53,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":860145199,"name":"Rosemary Quispe","nationality":"BOL","sex":"female","date_of_birth":"1983-08-20T00:00:00.000Z","height":1.59,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":779316418,"name":"Roser Tarrago Aymerich","nationality":"ESP","sex":"female","date_of_birth":"1993-03-25T00:00:00.000Z","height":1.71,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":592903889,"name":"Rosie White","nationality":"NZL","sex":"female","date_of_birth":"1993-06-06T00:00:00.000Z","height":1.65,"weight":63,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":820935997,"name":"Rosko Specman","nationality":"RSA","sex":"male","date_of_birth":"1989-04-28T00:00:00.000Z","height":1.74,"weight":81,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":264922632,"name":"Ross Millington","nationality":"GBR","sex":"male","date_of_birth":"1989-09-19T00:00:00.000Z","height":1.73,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":956717868,"name":"Ross Murdoch","nationality":"GBR","sex":"male","date_of_birth":"1994-01-14T00:00:00.000Z","height":1.83,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":905413207,"name":"Rossella Fiamingo","nationality":"ITA","sex":"female","date_of_birth":"1991-07-14T00:00:00.000Z","height":1.67,"weight":50,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":761193618,"name":"Rossella Gregorio","nationality":"ITA","sex":"female","date_of_birth":"1990-08-30T00:00:00.000Z","height":1.64,"weight":60,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":301051027,"name":"Rostyslav Pevtsov","nationality":"AZE","sex":"male","date_of_birth":"1987-04-15T00:00:00.000Z","height":1.87,"weight":74,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":977315432,"name":"Roukaya Moussa Mahamane","nationality":"NIG","sex":"female","date_of_birth":"1997-01-13T00:00:00.000Z","height":1.63,"weight":47,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":325010773,"name":"Rovshan Bayramov","nationality":"AZE","sex":"male","date_of_birth":"1987-05-07T00:00:00.000Z","height":1.6,"weight":59,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":449448572,"name":"Rowie Webster","nationality":"AUS","sex":"female","date_of_birth":"1987-12-27T00:00:00.000Z","height":1.78,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":840917709,"name":"Roxana Cogianu","nationality":"ROU","sex":"female","date_of_birth":"1986-09-21T00:00:00.000Z","height":1.8,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":5862724,"name":"Roxana Gomez","nationality":"CUB","sex":"female","date_of_birth":"1999-01-07T00:00:00.000Z","height":1.69,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":506230382,"name":"Roxanne Barker","nationality":"RSA","sex":"female","date_of_birth":"1991-05-06T00:00:00.000Z","height":1.8,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":848420962,"name":"Roxroy Cato","nationality":"JAM","sex":"male","date_of_birth":"1988-06-05T00:00:00.000Z","height":1.83,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":734810648,"name":"Roy Krishna","nationality":"FIJ","sex":"male","date_of_birth":"1987-08-30T00:00:00.000Z","height":1.7,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":375955657,"name":"Roy Meyer","nationality":"NED","sex":"male","date_of_birth":"1991-06-04T00:00:00.000Z","height":1.86,"weight":122,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":745464194,"name":"Roy Schmidt","nationality":"GER","sex":"male","date_of_birth":"1991-09-30T00:00:00.000Z","height":1.79,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":402214262,"name":"Rozaliya Nasretdinova","nationality":"RUS","sex":"female","date_of_birth":"1997-02-10T00:00:00.000Z","height":1.8,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":75479348,"name":"Ruaridh McConnochie","nationality":"GBR","sex":"male","date_of_birth":"1991-10-23T00:00:00.000Z","height":1.9,"weight":93,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":209686890,"name":"Ruben Aleksanyan","nationality":"ARM","sex":"male","date_of_birth":"1990-03-14T00:00:00.000Z","height":1.8,"weight":152,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":477986784,"name":"Ruben Limardo Gascon","nationality":"VEN","sex":"male","date_of_birth":"1985-08-03T00:00:00.000Z","height":1.75,"weight":75,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":"Venezuela's flag bearer at the Rio 2016 opening ceremony, Rubén Limardo was this country's second gold medal winner, taken at London 2012, in the épée event. A two-time Pan American fencing champion, he was a runner-up in the 2013 world championship."},{"id":411710210,"name":"Ruben Scheire","nationality":"BEL","sex":"male","date_of_birth":"1991-12-06T00:00:00.000Z","height":1.75,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":249844758,"name":"Ruben Voisard Rezola","nationality":"ARG","sex":"male","date_of_birth":"1991-04-21T00:00:00.000Z","height":1.74,"weight":80,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":179815659,"name":"Rubens Donizete Valeriano","nationality":"BRA","sex":"male","date_of_birth":"1979-08-14T00:00:00.000Z","height":1.73,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":527756567,"name":"Ruby Harrold","nationality":"GBR","sex":"female","date_of_birth":"1996-06-04T00:00:00.000Z","height":1.62,"weight":56,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":233580730,"name":"Ruby Tew","nationality":"NZL","sex":"female","date_of_birth":"1994-03-07T00:00:00.000Z","height":1.81,"weight":76,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":192700977,"name":"Ruby Tui","nationality":"NZL","sex":"female","date_of_birth":"1991-12-13T00:00:00.000Z","height":1.77,"weight":71,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":659959985,"name":"Ruda Franco","nationality":"BRA","sex":"male","date_of_birth":"1986-07-25T00:00:00.000Z","height":1.85,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":446404656,"name":"Ruddy Zang Milama","nationality":"GAB","sex":"female","date_of_birth":"1987-06-06T00:00:00.000Z","height":1.56,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":232202316,"name":"Rudi van Houts","nationality":"NED","sex":"male","date_of_birth":"1984-01-16T00:00:00.000Z","height":1.77,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":743075472,"name":"Rudo Neshamba","nationality":"ZIM","sex":"female","date_of_birth":"1992-02-10T00:00:00.000Z","height":1.64,"weight":53,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":371266772,"name":"Rudolf Knijnenburg","nationality":"BOL","sex":"male","date_of_birth":"1982-05-18T00:00:00.000Z","height":1.76,"weight":82,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":514482932,"name":"Rudy Fernandez","nationality":"ESP","sex":"male","date_of_birth":"1985-04-04T00:00:00.000Z","height":1.96,"weight":84,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":648750303,"name":"Rudy Gobert","nationality":"FRA","sex":"male","date_of_birth":"1992-06-26T00:00:00.000Z","height":2.15,"weight":113,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":220770340,"name":"Rudy Verhoeff","nationality":"CAN","sex":"male","date_of_birth":"1989-06-24T00:00:00.000Z","height":1.98,"weight":88,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":143605979,"name":"Rudy Winkler","nationality":"USA","sex":"male","date_of_birth":"1994-12-06T00:00:00.000Z","height":1.88,"weight":108,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":334846524,"name":"Rufat Huseynov","nationality":"AZE","sex":"male","date_of_birth":"1997-04-25T00:00:00.000Z","height":1.7,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":18555870,"name":"Ruggero Pertile","nationality":"ITA","sex":"male","date_of_birth":"1974-08-08T00:00:00.000Z","height":1.65,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":914411806,"name":"Ruggero Tita","nationality":"ITA","sex":"male","date_of_birth":"1992-03-20T00:00:00.000Z","height":1.74,"weight":71,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":990887420,"name":"Rui Alberto Faria da Costa","nationality":"POR","sex":"male","date_of_birth":"1986-10-05T00:00:00.000Z","height":1.83,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":513573507,"name":"Rui Braganca","nationality":"POR","sex":"male","date_of_birth":"1991-12-26T00:00:00.000Z","height":1.8,"weight":60,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":242415534,"name":"Rui Machida","nationality":"JPN","sex":"female","date_of_birth":"1993-03-08T00:00:00.000Z","height":1.61,"weight":57,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":490760543,"name":"Rui Pedro Silva","nationality":"POR","sex":"male","date_of_birth":"1981-05-06T00:00:00.000Z","height":1.73,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":27201624,"name":"Rui Xu","nationality":"CHN","sex":"female","date_of_birth":"1995-06-06T00:00:00.000Z","height":1.7,"weight":63,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":3876003,"name":"Rui Zhang","nationality":"CHN","sex":"female","date_of_birth":"1989-01-17T00:00:00.000Z","height":1.72,"weight":62,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":32285535,"name":"Rumen Dimitrov","nationality":"BUL","sex":"male","date_of_birth":"1986-09-19T00:00:00.000Z","height":1.92,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":621812972,"name":"Runa Imai","nationality":"JPN","sex":"female","date_of_birth":"2000-08-15T00:00:00.000Z","height":1.63,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":377313576,"name":"Rune Hermans","nationality":"BEL","sex":"female","date_of_birth":"1999-05-09T00:00:00.000Z","height":1.59,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":854755696,"name":"Ruolin Chen","nationality":"CHN","sex":"female","date_of_birth":"1992-12-12T00:00:00.000Z","height":1.6,"weight":49,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":"China's diving hopeful Chen Ruolin is the country's only athlete to win the gold at the Olympic Games, world championship and world cup. She is a two-time Olympic champion in the 10m individual and the 10m synchronised."},{"id":777015312,"name":"Ruoqi Hui","nationality":"CHN","sex":"female","date_of_birth":"1991-03-04T00:00:00.000Z","height":1.92,"weight":78,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":111970158,"name":"Rupinder Pal Singh","nationality":"IND","sex":"male","date_of_birth":"1990-11-11T00:00:00.000Z","height":1.93,"weight":93,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":333696204,"name":"Rushana Nurjavova","nationality":"TKM","sex":"female","date_of_birth":"1994-06-22T00:00:00.000Z","height":1.65,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":666630210,"name":"Rusheen McDonald","nationality":"JAM","sex":"male","date_of_birth":"1992-08-17T00:00:00.000Z","height":1.75,"weight":81,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":85111828,"name":"Rushlee Buchanan","nationality":"NZL","sex":"female","date_of_birth":"1988-01-20T00:00:00.000Z","height":1.7,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":95697909,"name":"Rushwal Samaai","nationality":"RSA","sex":"male","date_of_birth":"1991-09-25T00:00:00.000Z","height":1.85,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":718060123,"name":"Rusila Nagasau","nationality":"FIJ","sex":"female","date_of_birth":"1987-08-04T00:00:00.000Z","height":1.75,"weight":80,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":338294011,"name":"Ruslan Dmytrenko","nationality":"UKR","sex":"male","date_of_birth":"1986-03-22T00:00:00.000Z","height":1.8,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":111143331,"name":"Ruslan Kurbanov","nationality":"UZB","sex":"male","date_of_birth":"1993-02-10T00:00:00.000Z","height":1.83,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":736588005,"name":"Ruslan Lunev","nationality":"AZE","sex":"male","date_of_birth":"1989-07-25T00:00:00.000Z","height":1.83,"weight":80,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":327649539,"name":"Ruslan Nurudinov","nationality":"UZB","sex":"male","date_of_birth":"1991-11-24T00:00:00.000Z","height":1.83,"weight":105,"sport":"weightlifting","gold":1,"silver":0,"bronze":0,"info":null},{"id":507662268,"name":"Ruslan Tsarev","nationality":"KGZ","sex":"male","date_of_birth":"1991-07-16T00:00:00.000Z","height":1.7,"weight":66,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":362733210,"name":"Ruslan Zhaparov","nationality":"KAZ","sex":"male","date_of_birth":"1996-05-27T00:00:00.000Z","height":1.98,"weight":80,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":577577039,"name":"Ruslana Tsykhotska","nationality":"UKR","sex":"female","date_of_birth":"1986-03-23T00:00:00.000Z","height":1.65,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":267763098,"name":"Ruslans Nakonechnyi","nationality":"LAT","sex":"male","date_of_birth":"1989-04-21T00:00:00.000Z","height":1.82,"weight":71,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":497886017,"name":"Rustam Assakalov","nationality":"UZB","sex":"male","date_of_birth":"1984-07-13T00:00:00.000Z","height":1.83,"weight":85,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":87660757,"name":"Rustam Djangabaev","nationality":"UZB","sex":"male","date_of_birth":"1993-08-25T00:00:00.000Z","height":1.83,"weight":146,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":453637233,"name":"Rustam Orujov","nationality":"AZE","sex":"male","date_of_birth":"1991-10-04T00:00:00.000Z","height":1.8,"weight":73,"sport":"judo","gold":0,"silver":1,"bronze":0,"info":null},{"id":822684944,"name":"Rustam Tulaganov","nationality":"UZB","sex":"male","date_of_birth":"1991-10-08T00:00:00.000Z","height":1.86,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":423291068,"name":"Ruta Meilutyte","nationality":"LTU","sex":"female","date_of_birth":"1997-03-19T00:00:00.000Z","height":1.76,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":103023896,"name":"Rutendo Joan Nyahora","nationality":"ZIM","sex":"female","date_of_birth":"1988-11-11T00:00:00.000Z","height":1.55,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":532873176,"name":"Rutendo Makore","nationality":"ZIM","sex":"female","date_of_birth":"1992-09-30T00:00:00.000Z","height":1.65,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":936775315,"name":"Rutger van Schaardenburg","nationality":"NED","sex":"male","date_of_birth":"1987-10-08T00:00:00.000Z","height":1.88,"weight":80,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":146985778,"name":"Ruth Beitia","nationality":"ESP","sex":"female","date_of_birth":"1979-04-01T00:00:00.000Z","height":1.91,"weight":72,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":126006667,"name":"Ruth Jebet","nationality":"BRN","sex":"female","date_of_birth":"1996-11-17T00:00:00.000Z","height":1.62,"weight":51,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":379466742,"name":"Ruth Marie Christelle Gbagbi","nationality":"CIV","sex":"female","date_of_birth":"1994-02-07T00:00:00.000Z","height":1.76,"weight":65,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":686937343,"name":"Ruth Sophia Spelmeyer","nationality":"GER","sex":"female","date_of_birth":"1990-09-19T00:00:00.000Z","height":1.73,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":532261640,"name":"Ruth Winder","nationality":"USA","sex":"female","date_of_birth":"1993-07-09T00:00:00.000Z","height":1.63,"weight":57,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":373628906,"name":"Ruvimbo Mutyavaviri","nationality":"ZIM","sex":"female","date_of_birth":"1986-12-08T00:00:00.000Z","height":1.75,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":103779726,"name":"Ruy Fonseca","nationality":"BRA","sex":"male","date_of_birth":"1973-06-09T00:00:00.000Z","height":1.81,"weight":76,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":622244605,"name":"Ruyin Tan","nationality":"CHN","sex":"female","date_of_birth":"1994-07-17T00:00:00.000Z","height":1.65,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":334757159,"name":"Ryad Keniche","nationality":"ALG","sex":"male","date_of_birth":"1993-04-30T00:00:00.000Z","height":1.85,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":809153340,"name":"Ryan Archibald","nationality":"NZL","sex":"male","date_of_birth":"1980-09-01T00:00:00.000Z","height":1.86,"weight":78,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":96527612,"name":"Ryan Bailie","nationality":"AUS","sex":"male","date_of_birth":"1990-07-15T00:00:00.000Z","height":1.77,"weight":61,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":205829488,"name":"Ryan Broekhoff","nationality":"AUS","sex":"male","date_of_birth":"1990-08-23T00:00:00.000Z","height":2.01,"weight":93,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":907618760,"name":"Ryan Carlyle","nationality":"USA","sex":"female","date_of_birth":"1989-11-24T00:00:00.000Z","height":1.68,"weight":65,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":660446084,"name":"Ryan Cochrane","nationality":"CAN","sex":"male","date_of_birth":"1988-10-29T00:00:00.000Z","height":1.92,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":330882245,"name":"Ryan Cochrane","nationality":"CAN","sex":"male","date_of_birth":"1983-07-24T00:00:00.000Z","height":1.78,"weight":78,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":613943202,"name":"Ryan Crouser","nationality":"USA","sex":"male","date_of_birth":"1992-12-18T00:00:00.000Z","height":2.01,"weight":124,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":313062867,"name":"Ryan Fisher","nationality":"AUS","sex":"male","date_of_birth":"1991-04-05T00:00:00.000Z","height":1.73,"weight":64,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":739862351,"name":"Ryan Fox","nationality":"NZL","sex":"male","date_of_birth":"1987-01-22T00:00:00.000Z","height":1.79,"weight":98,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":976252794,"name":"Ryan Gregson","nationality":"AUS","sex":"male","date_of_birth":"1990-04-26T00:00:00.000Z","height":1.74,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":788805861,"name":"Ryan Held","nationality":"USA","sex":"male","date_of_birth":"1995-06-27T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":712200855,"name":"Ryan Lochte","nationality":"USA","sex":"male","date_of_birth":"1984-08-03T00:00:00.000Z","height":1.88,"weight":88,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":"With 11 Olympic medals in swimming (of which five are gold) and 27 world championship medals, the USA's Ryan Lochte holds the 200m medley world record, set in 2009."},{"id":237391684,"name":"Ryan Murphy","nationality":"USA","sex":"male","date_of_birth":"1995-07-02T00:00:00.000Z","height":1.91,"weight":90,"sport":"aquatics","gold":3,"silver":0,"bronze":0,"info":null},{"id":524278516,"name":"Ryan Patterson","nationality":"RSA","sex":"male","date_of_birth":"1994-01-10T00:00:00.000Z","height":1.77,"weight":72,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":882980527,"name":"Ryan Pini","nationality":"PNG","sex":"male","date_of_birth":"1981-12-10T00:00:00.000Z","height":1.96,"weight":98,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":799465101,"name":"Ryan Seaton","nationality":"IRL","sex":"male","date_of_birth":"1987-12-03T00:00:00.000Z","height":1.82,"weight":77,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":164279204,"name":"Ryan Sissons","nationality":"NZL","sex":"male","date_of_birth":"1988-06-24T00:00:00.000Z","height":1.75,"weight":62,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":764390994,"name":"Ryan Taylor","nationality":"NZL","sex":"male","date_of_birth":"1980-03-02T00:00:00.000Z","height":1.75,"weight":73,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":524440279,"name":"Ryan Tyack","nationality":"AUS","sex":"male","date_of_birth":"1991-06-02T00:00:00.000Z","height":1.86,"weight":102,"sport":"archery","gold":0,"silver":0,"bronze":1,"info":null},{"id":983386718,"name":"Rynardt van Rensburg","nationality":"RSA","sex":"male","date_of_birth":"1992-03-23T00:00:00.000Z","height":1.85,"weight":73,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":40870014,"name":"Ryohei Arai","nationality":"JPN","sex":"male","date_of_birth":"1991-06-23T00:00:00.000Z","height":1.83,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":166557498,"name":"Ryohei Kato","nationality":"JPN","sex":"male","date_of_birth":"1993-09-09T00:00:00.000Z","height":1.62,"weight":54,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":null},{"id":634681317,"name":"Ryosuke Irie","nationality":"JPN","sex":"male","date_of_birth":"1990-01-24T00:00:00.000Z","height":1.78,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":67014071,"name":"Ryota Ohshima","nationality":"JPN","sex":"male","date_of_birth":"1993-01-23T00:00:00.000Z","height":1.68,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":549532344,"name":"Ryota Yamagata","nationality":"JPN","sex":"male","date_of_birth":"1992-06-10T00:00:00.000Z","height":1.77,"weight":70,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":105508843,"name":"Ryunosuke Haga","nationality":"JPN","sex":"male","date_of_birth":"1991-04-28T00:00:00.000Z","height":1.86,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":716069085,"name":"Ryuzo Kitajima","nationality":"JPN","sex":"male","date_of_birth":"1985-10-23T00:00:00.000Z","height":1.71,"weight":68,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":131783687,"name":"S.S.P. Chawrasia","nationality":"IND","sex":"male","date_of_birth":"1978-05-15T00:00:00.000Z","height":1.6,"weight":67,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":184171388,"name":"Sa Rang Kim","nationality":"KOR","sex":"male","date_of_birth":"1989-08-22T00:00:00.000Z","height":1.78,"weight":82,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":329105644,"name":"Saad Luaibi","nationality":"IRQ","sex":"male","date_of_birth":"1992-01-19T00:00:00.000Z","height":1.78,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":155945642,"name":"Sabah Shariati","nationality":"AZE","sex":"male","date_of_birth":"1989-01-01T00:00:00.000Z","height":1.92,"weight":130,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":80742707,"name":"Sabina Asenjo","nationality":"ESP","sex":"female","date_of_birth":"1986-08-03T00:00:00.000Z","height":1.78,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":110659347,"name":"Sabina Ashirbayeva","nationality":"KAZ","sex":"female","date_of_birth":"1998-11-05T00:00:00.000Z","height":1.63,"weight":45,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":775171391,"name":"Sabina Jacobsen","nationality":"SWE","sex":"female","date_of_birth":"1989-03-24T00:00:00.000Z","height":1.8,"weight":75,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":971872432,"name":"Sabina Mikina","nationality":"AZE","sex":"female","date_of_birth":"1987-10-24T00:00:00.000Z","height":1.68,"weight":51,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":935009563,"name":"Sabina Veit","nationality":"SLO","sex":"female","date_of_birth":"1985-12-02T00:00:00.000Z","height":1.67,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":602319311,"name":"Sabine Kusterer","nationality":"GER","sex":"female","date_of_birth":"1991-01-04T00:00:00.000Z","height":1.56,"weight":58,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":634385368,"name":"Sabine Spitz","nationality":"GER","sex":"female","date_of_birth":"1971-12-27T00:00:00.000Z","height":1.67,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":"At the past three Olympic Games, Germany's Sabine Spitz has medaled in the women's cycling mountain bike events. She took silver at London 2012, gold at Beijing 2008 and bronze at Athens 2004 – and was also world champion in 2003."},{"id":665063441,"name":"Sabrina Ameghino","nationality":"ARG","sex":"female","date_of_birth":"1980-07-06T00:00:00.000Z","height":1.69,"weight":64,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":574404234,"name":"Sabrina D Angelo","nationality":"CAN","sex":"female","date_of_birth":"1993-05-11T00:00:00.000Z","height":1.73,"weight":71,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":726001944,"name":"Sabrina Delannoy","nationality":"FRA","sex":"female","date_of_birth":"1986-05-18T00:00:00.000Z","height":1.71,"weight":62,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":532268413,"name":"Sabrina Filzmoser","nationality":"AUT","sex":"female","date_of_birth":"1980-06-12T00:00:00.000Z","height":1.73,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":103751592,"name":"Sabrina Hering","nationality":"GER","sex":"female","date_of_birth":"1992-02-16T00:00:00.000Z","height":1.67,"weight":70,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":832538099,"name":"Sabrina Jaquet","nationality":"SUI","sex":"female","date_of_birth":"1987-06-21T00:00:00.000Z","height":1.69,"weight":60,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":858092870,"name":"Sacha Valleau","nationality":"FRA","sex":"male","date_of_birth":"1996-10-08T00:00:00.000Z","height":1.92,"weight":97,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":773178246,"name":"Sachi Mochida","nationality":"JPN","sex":"female","date_of_birth":"1999-07-19T00:00:00.000Z","height":1.66,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":966020626,"name":"Sadiq Umar","nationality":"NGR","sex":"male","date_of_birth":"1997-02-02T00:00:00.000Z","height":1.72,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":49083611,"name":"Sae Miyakawa","nationality":"JPN","sex":"female","date_of_birth":"1999-09-10T00:00:00.000Z","height":1.45,"weight":34,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":240262036,"name":"Saeed Almaktoum","nationality":"UAE","sex":"male","date_of_birth":"1976-10-01T00:00:00.000Z","height":1.74,"weight":88,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":752177504,"name":"Saehyuk Joo","nationality":"KOR","sex":"male","date_of_birth":"1980-01-20T00:00:00.000Z","height":1.8,"weight":67,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":270527674,"name":"Saeid Mollaei","nationality":"IRI","sex":"male","date_of_birth":"1992-01-05T00:00:00.000Z","height":1.76,"weight":82,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":795286396,"name":"Saeid Morad Abdvali","nationality":"IRI","sex":"male","date_of_birth":"1989-11-04T00:00:00.000Z","height":1.7,"weight":80,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":436856323,"name":"Safa Saidani","nationality":"TUN","sex":"female","date_of_birth":"1990-05-26T00:00:00.000Z","height":null,"weight":null,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":208668946,"name":"Safwan Khalil","nationality":"AUS","sex":"male","date_of_birth":"1986-05-15T00:00:00.000Z","height":1.84,"weight":58,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":329709652,"name":"Sage Watson","nationality":"CAN","sex":"female","date_of_birth":"1994-06-20T00:00:00.000Z","height":1.8,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":888210415,"name":"Sagi Muki","nationality":"ISR","sex":"male","date_of_birth":"1992-05-17T00:00:00.000Z","height":1.8,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":585435438,"name":"Sahily Diago","nationality":"CUB","sex":"female","date_of_birth":"1995-08-26T00:00:00.000Z","height":1.69,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":74385345,"name":"Sahit Prizreni","nationality":"AUS","sex":"male","date_of_birth":"1983-02-23T00:00:00.000Z","height":1.66,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":627433948,"name":"Saidi Juma Makula","nationality":"TAN","sex":"male","date_of_birth":"1994-08-01T00:00:00.000Z","height":null,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":226370287,"name":"Saif Bin Futtais","nationality":"UAE","sex":"male","date_of_birth":"1973-09-02T00:00:00.000Z","height":1.74,"weight":90,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":863864577,"name":"Saily Viart","nationality":"CUB","sex":"female","date_of_birth":"1995-09-10T00:00:00.000Z","height":1.7,"weight":94,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":311986373,"name":"Saina Nehwal","nationality":"IND","sex":"female","date_of_birth":"1990-03-17T00:00:00.000Z","height":1.65,"weight":65,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":138238574,"name":"Saisai Zheng","nationality":"CHN","sex":"female","date_of_birth":"1994-02-05T00:00:00.000Z","height":1.7,"weight":62,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":872568098,"name":"Saiyidah Mohamed Rafa'ee","nationality":"SIN","sex":"female","date_of_birth":"1988-04-20T00:00:00.000Z","height":1.73,"weight":68,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":745752282,"name":"Saiyinjirigala","nationality":"CHN","sex":"male","date_of_birth":"1989-12-14T00:00:00.000Z","height":1.75,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":528224389,"name":"Sajan Prakash Prakash","nationality":"IND","sex":"male","date_of_birth":"1993-09-14T00:00:00.000Z","height":1.78,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":950063976,"name":"Sajjad Mardani","nationality":"IRI","sex":"male","date_of_birth":"1988-07-01T00:00:00.000Z","height":1.98,"weight":96,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":665801270,"name":"Sakiko Shimizu","nationality":"JPN","sex":"female","date_of_birth":"1992-04-20T00:00:00.000Z","height":1.56,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":20596177,"name":"Sakina Karchaoui","nationality":"FRA","sex":"female","date_of_birth":"1996-01-26T00:00:00.000Z","height":1.6,"weight":55,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":686699609,"name":"Sakiyo Asano","nationality":"JPN","sex":"female","date_of_birth":"1987-05-26T00:00:00.000Z","height":1.64,"weight":60,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":249879747,"name":"Sakshi Malik","nationality":"IND","sex":"female","date_of_birth":"1992-09-03T00:00:00.000Z","height":1.62,"weight":58,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":530076969,"name":"Sakura Noshitani","nationality":"JPN","sex":"female","date_of_birth":"1997-09-29T00:00:00.000Z","height":1.68,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":265460437,"name":"Sakura Tsukagoshi","nationality":"JPN","sex":"female","date_of_birth":"1991-04-13T00:00:00.000Z","height":1.68,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":612549397,"name":"Salem Eid Yaqoob","nationality":"BRN","sex":"male","date_of_birth":"1996-03-01T00:00:00.000Z","height":1.75,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":294737301,"name":"Salim Keddar","nationality":"ALG","sex":"male","date_of_birth":"1993-11-13T00:00:00.000Z","height":1.76,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":966097460,"name":"Salima Elouali Alami","nationality":"MAR","sex":"female","date_of_birth":"1983-12-29T00:00:00.000Z","height":1.79,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":189291344,"name":"Sally Conway","nationality":"GBR","sex":"female","date_of_birth":"1987-02-01T00:00:00.000Z","height":1.67,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":102051307,"name":"Sally Kehoe","nationality":"AUS","sex":"female","date_of_birth":"1986-09-25T00:00:00.000Z","height":1.72,"weight":75,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":808105365,"name":"Sally Rutherford","nationality":"NZL","sex":"female","date_of_birth":"1981-06-05T00:00:00.000Z","height":1.65,"weight":65,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":11169898,"name":"Sally Yee","nationality":"FIJ","sex":"female","date_of_birth":"2001-04-10T00:00:00.000Z","height":null,"weight":84,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":354208577,"name":"Salma Negmeldin","nationality":"EGY","sex":"female","date_of_birth":"1996-03-05T00:00:00.000Z","height":1.6,"weight":49,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":667737647,"name":"Salome Kora","nationality":"SUI","sex":"female","date_of_birth":"1994-06-08T00:00:00.000Z","height":1.73,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":646360332,"name":"Salome Nyirarukundo","nationality":"RWA","sex":"female","date_of_birth":"1997-12-20T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":975877653,"name":"Salome Pazhava","nationality":"GEO","sex":"female","date_of_birth":"1997-09-03T00:00:00.000Z","height":1.68,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":603595723,"name":"Salvador","nationality":"POR","sex":"male","date_of_birth":"1991-11-11T00:00:00.000Z","height":1.68,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":203392098,"name":"Salvador Piera","nationality":"ESP","sex":"male","date_of_birth":"1991-05-18T00:00:00.000Z","height":1.83,"weight":83,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":462840223,"name":"Salvatore Rossini","nationality":"ITA","sex":"male","date_of_birth":"1986-07-13T00:00:00.000Z","height":1.85,"weight":82,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":842038551,"name":"Salwa Eid Naser","nationality":"BRN","sex":"female","date_of_birth":"1998-05-23T00:00:00.000Z","height":1.68,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":206513748,"name":"Salwan Jasim Abbood Abbood","nationality":"IRQ","sex":"male","date_of_birth":"1991-09-26T00:00:00.000Z","height":1.8,"weight":104,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":326897448,"name":"Sam Cross","nationality":"GBR","sex":"male","date_of_birth":"1992-08-26T00:00:00.000Z","height":1.91,"weight":103,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":789125587,"name":"Sam Crouser","nationality":"USA","sex":"male","date_of_birth":"1991-12-31T00:00:00.000Z","height":1.99,"weight":104,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":850239984,"name":"Sam Dickson","nationality":"NZL","sex":"male","date_of_birth":"1989-10-28T00:00:00.000Z","height":1.93,"weight":101,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":660006484,"name":"Sam Dommer","nationality":"USA","sex":"male","date_of_birth":"1991-09-04T00:00:00.000Z","height":1.88,"weight":91,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":898696395,"name":"Sam Dorman","nationality":"USA","sex":"male","date_of_birth":"1991-08-30T00:00:00.000Z","height":1.76,"weight":77,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":23788700,"name":"Sam Griffiths","nationality":"AUS","sex":"male","date_of_birth":"1972-05-27T00:00:00.000Z","height":1.71,"weight":73,"sport":"equestrian","gold":0,"silver":0,"bronze":1,"info":null},{"id":826848760,"name":"Sam Groth","nationality":"AUS","sex":"male","date_of_birth":"1987-10-19T00:00:00.000Z","height":null,"weight":null,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":835488067,"name":"Sam Kendricks","nationality":"USA","sex":"male","date_of_birth":"1992-09-07T00:00:00.000Z","height":1.86,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":785341118,"name":"Sam McEntee","nationality":"AUS","sex":"male","date_of_birth":"1992-02-03T00:00:00.000Z","height":1.91,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":294472857,"name":"Sam Meech","nationality":"NZL","sex":"male","date_of_birth":"1991-04-04T00:00:00.000Z","height":1.83,"weight":81,"sport":"sailing","gold":0,"silver":0,"bronze":1,"info":null},{"id":115220097,"name":"Sam Townsend","nationality":"GBR","sex":"male","date_of_birth":"1985-11-26T00:00:00.000Z","height":1.99,"weight":102,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":541927313,"name":"Sam Ward","nationality":"GBR","sex":"male","date_of_birth":"1990-12-24T00:00:00.000Z","height":1.78,"weight":75,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":479073328,"name":"Sam Webster","nationality":"NZL","sex":"male","date_of_birth":"1991-07-16T00:00:00.000Z","height":1.83,"weight":80,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":419064340,"name":"Sam Welsford","nationality":"AUS","sex":"male","date_of_birth":"1996-01-19T00:00:00.000Z","height":1.79,"weight":82,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":55429092,"name":"Sam Willoughby","nationality":"AUS","sex":"male","date_of_birth":"1991-08-15T00:00:00.000Z","height":1.73,"weight":87,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":600127558,"name":"Saman Ahmed Tahmasebi","nationality":"AZE","sex":"male","date_of_birth":"1985-07-26T00:00:00.000Z","height":1.8,"weight":85,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":643857228,"name":"Samantha Arevalo","nationality":"ECU","sex":"female","date_of_birth":"1994-09-30T00:00:00.000Z","height":1.71,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":144477923,"name":"Samantha Birch","nationality":"AUS","sex":"female","date_of_birth":"1981-06-06T00:00:00.000Z","height":1.61,"weight":null,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":750356413,"name":"Samantha Charlton","nationality":"NZL","sex":"female","date_of_birth":"1991-12-07T00:00:00.000Z","height":1.74,"weight":66,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":932711733,"name":"Samantha Kassman","nationality":"PNG","sex":"female","date_of_birth":"1984-01-23T00:00:00.000Z","height":1.65,"weight":68,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":494749900,"name":"Samantha Kerr","nationality":"AUS","sex":"female","date_of_birth":"1993-09-10T00:00:00.000Z","height":1.67,"weight":63,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":890674126,"name":"Samantha Mewis","nationality":"USA","sex":"female","date_of_birth":"1992-10-09T00:00:00.000Z","height":1.83,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":103473949,"name":"Samantha Murray","nationality":"GBR","sex":"female","date_of_birth":"1989-09-25T00:00:00.000Z","height":1.74,"weight":60,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":244735360,"name":"Samantha Quek","nationality":"GBR","sex":"female","date_of_birth":"1988-10-18T00:00:00.000Z","height":1.69,"weight":62,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":917830379,"name":"Samantha Roberts","nationality":"ANT","sex":"female","date_of_birth":"2000-04-21T00:00:00.000Z","height":1.72,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":580514299,"name":"Samantha Stosur","nationality":"AUS","sex":"female","date_of_birth":"1984-03-30T00:00:00.000Z","height":1.72,"weight":68,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":431344021,"name":"Samar Amer Ibrahim Hamza","nationality":"EGY","sex":"female","date_of_birth":"1995-04-04T00:00:00.000Z","height":1.7,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":261741263,"name":"Sami Hill","nationality":"USA","sex":"female","date_of_birth":"1992-06-08T00:00:00.000Z","height":1.83,"weight":89,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":813927295,"name":"Samia Ahmed","nationality":"EGY","sex":"female","date_of_birth":"1996-01-20T00:00:00.000Z","height":1.7,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":869328062,"name":"Samir Ait Said","nationality":"FRA","sex":"male","date_of_birth":"1989-11-01T00:00:00.000Z","height":1.67,"weight":66,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":556027153,"name":"Samira Amirova","nationality":"UZB","sex":"female","date_of_birth":"1998-04-02T00:00:00.000Z","height":1.62,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":108428818,"name":"Samira Ouass","nationality":"MAR","sex":"female","date_of_birth":"1992-04-22T00:00:00.000Z","height":1.62,"weight":74,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":969554371,"name":"Samira Rocha","nationality":"BRA","sex":"female","date_of_birth":"1989-01-26T00:00:00.000Z","height":1.7,"weight":64,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":65132330,"name":"Samisoni Viriviri","nationality":"FIJ","sex":"male","date_of_birth":"1988-04-25T00:00:00.000Z","height":1.86,"weight":88,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":"Champion of the 2015/2016 Sevens World Series, and elected the 2014 rugby sevens player of the year, Samisoni Viriviri is following the family tradition – his grandfather was also a professional in the sport and played for the national side."},{"id":496725946,"name":"Samkelisiwe Zulu","nationality":"ZIM","sex":"female","date_of_birth":"1990-04-14T00:00:00.000Z","height":1.64,"weight":50,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":712300954,"name":"Samson Samuel Opuakpo Forcados","nationality":"NGR","sex":"male","date_of_birth":"1986-04-24T00:00:00.000Z","height":1.83,"weight":81,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":120558748,"name":"Samuel Albrecht","nationality":"BRA","sex":"male","date_of_birth":"1981-09-02T00:00:00.000Z","height":1.8,"weight":71,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":992495912,"name":"Samuel Carmona Heredia","nationality":"ESP","sex":"male","date_of_birth":"1996-05-28T00:00:00.000Z","height":1.62,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":513575285,"name":"Samuel Cordova","nationality":"MEX","sex":"male","date_of_birth":"1989-03-13T00:00:00.000Z","height":2,"weight":89,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":443125316,"name":"Samuel Gaze","nationality":"NZL","sex":"male","date_of_birth":"1995-12-12T00:00:00.000Z","height":1.89,"weight":79,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":422579271,"name":"Samuel Ireri Gathimba","nationality":"KEN","sex":"male","date_of_birth":"1987-10-26T00:00:00.000Z","height":1.65,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":619793183,"name":"Samuel Mikulak","nationality":"USA","sex":"male","date_of_birth":"1992-10-13T00:00:00.000Z","height":1.67,"weight":63,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":828892813,"name":"Samuel Ojserkis","nationality":"USA","sex":"male","date_of_birth":"1990-03-24T00:00:00.000Z","height":1.73,"weight":55,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":322626973,"name":"Samuel Oliech","nationality":"KEN","sex":"male","date_of_birth":"1993-12-15T00:00:00.000Z","height":1.85,"weight":92,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":203872353,"name":"Samuel Schachter","nationality":"CAN","sex":"male","date_of_birth":"1990-05-08T00:00:00.000Z","height":1.95,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":538227014,"name":"Samuel Walker","nationality":"GBR","sex":"male","date_of_birth":"1995-05-07T00:00:00.000Z","height":1.86,"weight":74,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":184337666,"name":"Samuela Nabenia","nationality":"FIJ","sex":"male","date_of_birth":"1995-02-09T00:00:00.000Z","height":1.78,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":554608436,"name":"Samuil Donkov","nationality":"BUL","sex":"male","date_of_birth":"1983-06-20T00:00:00.000Z","height":1.7,"weight":68,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":232045954,"name":"Samuli Piippo","nationality":"FIN","sex":"male","date_of_birth":"1980-01-01T00:00:00.000Z","height":1.81,"weight":75,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":82346325,"name":"Samy Abdel Razek","nationality":"EGY","sex":"male","date_of_birth":"1980-04-10T00:00:00.000Z","height":1.7,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":110457904,"name":"San Naing San Naing","nationality":"MYA","sex":"male","date_of_birth":"1991-03-05T00:00:00.000Z","height":1.7,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":311616634,"name":"San Yu Htwe","nationality":"MYA","sex":"female","date_of_birth":"1986-10-14T00:00:00.000Z","height":1.67,"weight":57,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":760631015,"name":"Sanaa Koubaa","nationality":"GER","sex":"female","date_of_birth":"1985-01-06T00:00:00.000Z","height":1.7,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":936764018,"name":"Sanae Motokawa","nationality":"JPN","sex":"female","date_of_birth":"1992-04-02T00:00:00.000Z","height":1.75,"weight":65,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":193482094,"name":"Sanah Mollo","nationality":"RSA","sex":"female","date_of_birth":"1987-01-30T00:00:00.000Z","height":1.59,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":303543549,"name":"Sanchai Ratiwatana","nationality":"THA","sex":"male","date_of_birth":"1982-01-23T00:00:00.000Z","height":1.75,"weight":70,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":656865751,"name":"Sanda Belgyan","nationality":"ROU","sex":"female","date_of_birth":"1992-12-17T00:00:00.000Z","height":1.65,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":740295602,"name":"Sandeep Kumar","nationality":"IND","sex":"male","date_of_birth":"1986-05-01T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":394939837,"name":"Sandeep Tomar","nationality":"IND","sex":"male","date_of_birth":"1991-04-02T00:00:00.000Z","height":1.68,"weight":61,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":597658041,"name":"Sander Baart","nationality":"NED","sex":"male","date_of_birth":"1988-04-30T00:00:00.000Z","height":1.78,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":287509063,"name":"Sander de Wijn","nationality":"NED","sex":"male","date_of_birth":"1990-05-02T00:00:00.000Z","height":1.83,"weight":78,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":550264358,"name":"Sandi Morris","nationality":"USA","sex":"female","date_of_birth":"1992-07-08T00:00:00.000Z","height":1.73,"weight":62,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":603435489,"name":"Sandie Clair","nationality":"FRA","sex":"female","date_of_birth":"1988-04-01T00:00:00.000Z","height":1.6,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":317595891,"name":"Sandie Toletti","nationality":"FRA","sex":"female","date_of_birth":"1995-07-13T00:00:00.000Z","height":1.69,"weight":58,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":952416738,"name":"Sandor Racz","nationality":"HUN","sex":"male","date_of_birth":"1986-09-14T00:00:00.000Z","height":1.78,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":183435388,"name":"Sandor Totka","nationality":"HUN","sex":"male","date_of_birth":"1994-07-27T00:00:00.000Z","height":1.88,"weight":85,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":161387205,"name":"Sandra Aguilar","nationality":"ESP","sex":"female","date_of_birth":"1992-08-09T00:00:00.000Z","height":1.68,"weight":51,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":null},{"id":994885002,"name":"Sandra Arenas","nationality":"COL","sex":"female","date_of_birth":"1993-09-17T00:00:00.000Z","height":1.6,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":750628038,"name":"Sandra Auffarth","nationality":"GER","sex":"female","date_of_birth":"1986-12-27T00:00:00.000Z","height":1.7,"weight":57,"sport":"equestrian","gold":0,"silver":1,"bronze":0,"info":null},{"id":530853976,"name":"Sandra Eriksson","nationality":"FIN","sex":"female","date_of_birth":"1989-06-04T00:00:00.000Z","height":1.63,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":530454853,"name":"Sandra Gal","nationality":"GER","sex":"female","date_of_birth":"1985-05-09T00:00:00.000Z","height":1.83,"weight":70,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":202752942,"name":"Sandra Galvis","nationality":"COL","sex":"female","date_of_birth":"1986-06-28T00:00:00.000Z","height":1.6,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":112616108,"name":"Sandra Gomis","nationality":"FRA","sex":"female","date_of_birth":"1983-11-21T00:00:00.000Z","height":1.65,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":857025783,"name":"Sandra Lemos","nationality":"COL","sex":"female","date_of_birth":"1989-01-01T00:00:00.000Z","height":1.7,"weight":100,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":211016698,"name":"Sandra Perkovic","nationality":"CRO","sex":"female","date_of_birth":"1990-06-21T00:00:00.000Z","height":1.83,"weight":85,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":999653955,"name":"Sandra Sepulveda","nationality":"COL","sex":"female","date_of_birth":"1988-03-03T00:00:00.000Z","height":1.67,"weight":58,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":705817505,"name":"Sandrine Gruda","nationality":"FRA","sex":"female","date_of_birth":"1987-06-25T00:00:00.000Z","height":1.93,"weight":83,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":359187609,"name":"Sandrine Mainville","nationality":"CAN","sex":"female","date_of_birth":"1992-03-20T00:00:00.000Z","height":1.73,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":458205614,"name":"Sandro Aminashvili","nationality":"GEO","sex":"male","date_of_birth":"1992-02-21T00:00:00.000Z","height":1.8,"weight":85,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":673884830,"name":"Sandro Bazadze","nationality":"GEO","sex":"male","date_of_birth":"1993-07-29T00:00:00.000Z","height":1.93,"weight":88,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":140258499,"name":"Sandro Sukno","nationality":"CRO","sex":"male","date_of_birth":"1990-06-30T00:00:00.000Z","height":2,"weight":93,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":592791233,"name":"Sanghoon Park","nationality":"KOR","sex":"male","date_of_birth":"1993-03-13T00:00:00.000Z","height":1.83,"weight":77,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":87067072,"name":"Sanghyeok Woo","nationality":"KOR","sex":"male","date_of_birth":"1996-04-23T00:00:00.000Z","height":1.87,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":540684681,"name":"Sangmin Sim","nationality":"KOR","sex":"male","date_of_birth":"1993-05-21T00:00:00.000Z","height":1.72,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":15622309,"name":"Sangmyeong Ham","nationality":"KOR","sex":"male","date_of_birth":"1995-11-10T00:00:00.000Z","height":1.68,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":652133768,"name":"Sangsu Lee","nationality":"KOR","sex":"male","date_of_birth":"1990-08-13T00:00:00.000Z","height":1.8,"weight":69,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":437224347,"name":"Sangwook Lee","nationality":"KOR","sex":"male","date_of_birth":"1985-10-14T00:00:00.000Z","height":1.7,"weight":60,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":654419111,"name":"Sangyoung Park","nationality":"KOR","sex":"male","date_of_birth":"1995-10-16T00:00:00.000Z","height":1.77,"weight":73,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":980035227,"name":"Sania Mirza","nationality":"IND","sex":"female","date_of_birth":"1986-11-15T00:00:00.000Z","height":1.66,"weight":57,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":23025751,"name":"Sanita Puspure","nationality":"IRL","sex":"female","date_of_birth":"1981-12-21T00:00:00.000Z","height":1.8,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":385623198,"name":"Sanna Solberg","nationality":"NOR","sex":"female","date_of_birth":"1990-06-16T00:00:00.000Z","height":1.78,"weight":null,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":813586699,"name":"Sanne Verhagen","nationality":"NED","sex":"female","date_of_birth":"1992-08-24T00:00:00.000Z","height":1.53,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":366953580,"name":"Sanne Wevers","nationality":"NED","sex":"female","date_of_birth":"1991-09-17T00:00:00.000Z","height":1.56,"weight":46,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":null},{"id":747452521,"name":"Sanne van Olphen","nationality":"NED","sex":"female","date_of_birth":"1989-03-13T00:00:00.000Z","height":1.77,"weight":68,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":131711159,"name":"Sanni Utriainen","nationality":"FIN","sex":"female","date_of_birth":"1991-02-05T00:00:00.000Z","height":1.69,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":658712925,"name":"Santa Pakenyte","nationality":"LTU","sex":"female","date_of_birth":"1990-12-11T00:00:00.000Z","height":1.86,"weight":132,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":438444460,"name":"Santiago Alvarez","nationality":"ARG","sex":"male","date_of_birth":"1994-01-17T00:00:00.000Z","height":1.88,"weight":93,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":88117385,"name":"Santiago Ascacibar","nationality":"ARG","sex":"male","date_of_birth":"1997-02-25T00:00:00.000Z","height":1.74,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":466362039,"name":"Santiago Enrique Grillo Diez","nationality":"COL","sex":"male","date_of_birth":"1987-05-27T00:00:00.000Z","height":1.85,"weight":74,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":86887082,"name":"Santiago Gonzalez","nationality":"MEX","sex":"male","date_of_birth":"1983-02-24T00:00:00.000Z","height":1.91,"weight":91,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":455876725,"name":"Santiago Grassi","nationality":"ARG","sex":"male","date_of_birth":"1996-09-25T00:00:00.000Z","height":1.87,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":921054925,"name":"Santiago Lange","nationality":"ARG","sex":"male","date_of_birth":"1961-09-22T00:00:00.000Z","height":1.84,"weight":73,"sport":"sailing","gold":1,"silver":0,"bronze":0,"info":null},{"id":929112768,"name":"Santiago Ramirez Morales","nationality":"COL","sex":"male","date_of_birth":"1994-07-20T00:00:00.000Z","height":1.8,"weight":82,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":213886728,"name":"Santino Kenyi","nationality":"SSD","sex":"male","date_of_birth":"1993-08-14T00:00:00.000Z","height":1.8,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":475115369,"name":"Santisouk Inthavong","nationality":"LAO","sex":"male","date_of_birth":"1999-09-02T00:00:00.000Z","height":1.7,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":156085164,"name":"Santo Condorelli","nationality":"CAN","sex":"male","date_of_birth":"1995-01-17T00:00:00.000Z","height":1.88,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":754215814,"name":"Saori Kimura","nationality":"JPN","sex":"female","date_of_birth":"1986-08-19T00:00:00.000Z","height":1.85,"weight":65,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":43036553,"name":"Saori Nagamine","nationality":"JPN","sex":"female","date_of_birth":"1993-07-05T00:00:00.000Z","height":1.66,"weight":60,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":631663441,"name":"Saori Sakoda","nationality":"JPN","sex":"female","date_of_birth":"1987-12-18T00:00:00.000Z","height":1.75,"weight":63,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":39484933,"name":"Saori Yoshida","nationality":"JPN","sex":"female","date_of_birth":"1982-10-05T00:00:00.000Z","height":1.57,"weight":55,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":"One of only two three-time Olympic wrestling champions, Japan's Saori Yoshida won at Athens 2004, Beijing 2008 and London 2012. This athlete dominates the up to 55kg category and has won all 13 world championships since 2002."},{"id":988318457,"name":"Saoussen Boudiaf","nationality":"FRA","sex":"female","date_of_birth":"1993-12-31T00:00:00.000Z","height":1.73,"weight":69,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":451333617,"name":"Sapana Sapana","nationality":"IND","sex":"female","date_of_birth":"1988-01-02T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":361564419,"name":"Sapsiree Taerattanachai","nationality":"THA","sex":"female","date_of_birth":"1992-04-18T00:00:00.000Z","height":1.7,"weight":59,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":635644066,"name":"Sara Ahmed","nationality":"EGY","sex":"female","date_of_birth":"1998-01-01T00:00:00.000Z","height":1.55,"weight":68,"sport":"weightlifting","gold":0,"silver":0,"bronze":1,"info":null},{"id":424013884,"name":"Sara Algotsson Ostholt","nationality":"SWE","sex":"female","date_of_birth":"1974-12-08T00:00:00.000Z","height":1.63,"weight":56,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":871531053,"name":"Sara Bertolasi","nationality":"ITA","sex":"female","date_of_birth":"1988-04-29T00:00:00.000Z","height":1.79,"weight":68,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":657896616,"name":"Sara Carmo","nationality":"POR","sex":"female","date_of_birth":"1986-10-12T00:00:00.000Z","height":1.79,"weight":69,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":576383527,"name":"Sara Cholnoky","nationality":"HUN","sex":"female","date_of_birth":"1988-11-03T00:00:00.000Z","height":1.65,"weight":64,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":716078374,"name":"Sara Daebritz","nationality":"GER","sex":"female","date_of_birth":"1995-02-15T00:00:00.000Z","height":1.71,"weight":59,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":807403357,"name":"Sara Dosho","nationality":"JPN","sex":"female","date_of_birth":"1994-10-17T00:00:00.000Z","height":1.59,"weight":69,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":54068810,"name":"Sara Errani","nationality":"ITA","sex":"female","date_of_birth":"1987-04-29T00:00:00.000Z","height":1.64,"weight":58,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":809844335,"name":"Sara Franceschi","nationality":"ITA","sex":"female","date_of_birth":"1999-02-01T00:00:00.000Z","height":1.78,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":628076788,"name":"Sara Gambetta","nationality":"GER","sex":"female","date_of_birth":"1993-02-18T00:00:00.000Z","height":1.84,"weight":89,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":851213557,"name":"Sara Kolak","nationality":"CRO","sex":"female","date_of_birth":"1995-06-22T00:00:00.000Z","height":1.7,"weight":74,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":824809383,"name":"Sara Krnjic","nationality":"SRB","sex":"female","date_of_birth":"1991-07-15T00:00:00.000Z","height":1.93,"weight":83,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":718107651,"name":"Sara Lopez Ravetllat","nationality":"ESP","sex":"female","date_of_birth":"1992-11-29T00:00:00.000Z","height":1.65,"weight":66,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":213440914,"name":"Sara Louise Treacy","nationality":"IRL","sex":"female","date_of_birth":"1989-06-22T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":21017895,"name":"Sara Moreira","nationality":"POR","sex":"female","date_of_birth":"1985-10-17T00:00:00.000Z","height":1.66,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":686409294,"name":"Sara Mustonen","nationality":"SWE","sex":"female","date_of_birth":"1981-02-08T00:00:00.000Z","height":1.61,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":517852202,"name":"Sara Pastrana","nationality":"HON","sex":"female","date_of_birth":"1999-03-12T00:00:00.000Z","height":1.7,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":764316889,"name":"Sara Ramadhani","nationality":"TAN","sex":"female","date_of_birth":"1987-12-30T00:00:00.000Z","height":null,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":939579347,"name":"Sara Sgarzi","nationality":"ITA","sex":"female","date_of_birth":"1986-05-27T00:00:00.000Z","height":1.75,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":796713465,"name":"Sara Slott Petersen","nationality":"DEN","sex":"female","date_of_birth":"1987-04-09T00:00:00.000Z","height":1.71,"weight":57,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":968095020,"name":"Sara Tan","nationality":"SIN","sex":"female","date_of_birth":"1990-08-06T00:00:00.000Z","height":1.71,"weight":71,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":666449730,"name":"Sara Vilic","nationality":"AUT","sex":"female","date_of_birth":"1992-03-29T00:00:00.000Z","height":1.7,"weight":55,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":32160007,"name":"Sarah Atcho","nationality":"SUI","sex":"female","date_of_birth":"1995-06-01T00:00:00.000Z","height":1.8,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":216183238,"name":"Sarah Attar","nationality":"KSA","sex":"female","date_of_birth":"1992-08-27T00:00:00.000Z","height":1.65,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":717386326,"name":"Sarah Banting","nationality":"AUS","sex":"female","date_of_birth":"1993-11-09T00:00:00.000Z","height":null,"weight":null,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":578952502,"name":"Sarah Barrow","nationality":"GBR","sex":"female","date_of_birth":"1988-10-22T00:00:00.000Z","height":1.6,"weight":53,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":920425475,"name":"Sarah Bouhaddi","nationality":"FRA","sex":"female","date_of_birth":"1986-10-17T00:00:00.000Z","height":1.75,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":307552411,"name":"Sarah Bro","nationality":"DEN","sex":"female","date_of_birth":"1996-03-04T00:00:00.000Z","height":1.77,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":955540321,"name":"Sarah Elizabeth Robles","nationality":"USA","sex":"female","date_of_birth":"1988-08-01T00:00:00.000Z","height":1.78,"weight":143,"sport":"weightlifting","gold":0,"silver":0,"bronze":1,"info":null},{"id":291926816,"name":"Sarah Goss","nationality":"NZL","sex":"female","date_of_birth":"1992-12-09T00:00:00.000Z","height":1.76,"weight":73,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":489042953,"name":"Sarah Gregorius","nationality":"NZL","sex":"female","date_of_birth":"1987-08-06T00:00:00.000Z","height":1.58,"weight":52,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":828720993,"name":"Sarah Guyot","nationality":"FRA","sex":"female","date_of_birth":"1991-04-16T00:00:00.000Z","height":1.76,"weight":69,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":773163998,"name":"Sarah Hammer","nationality":"USA","sex":"female","date_of_birth":"1983-08-18T00:00:00.000Z","height":1.71,"weight":65,"sport":"cycling","gold":0,"silver":2,"bronze":0,"info":null},{"id":245433771,"name":"Sarah Hornung","nationality":"SUI","sex":"female","date_of_birth":"1996-04-18T00:00:00.000Z","height":1.51,"weight":43,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":135997067,"name":"Sarah Kohler","nationality":"GER","sex":"female","date_of_birth":"1994-06-20T00:00:00.000Z","height":1.79,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":335518971,"name":"Sarah Lahti","nationality":"SWE","sex":"female","date_of_birth":"1995-02-18T00:00:00.000Z","height":1.77,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":842091888,"name":"Sarah Menezes","nationality":"BRA","sex":"female","date_of_birth":"1990-03-26T00:00:00.000Z","height":1.54,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":"The first woman in Brazil to win an Olympic gold, at London 2012, in the up to 48kg class, Sarah Menezes also won three world championship bronze medals, one of them in Rio de Janeiro, in 2013."},{"id":218628942,"name":"Sarah Michel","nationality":"FRA","sex":"female","date_of_birth":"1989-01-10T00:00:00.000Z","height":1.8,"weight":65,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":886890449,"name":"Sarah Myriam Mazouz","nationality":"GAB","sex":"female","date_of_birth":"1987-04-29T00:00:00.000Z","height":1.77,"weight":77,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":601579213,"name":"Sarah Nikitin","nationality":"BRA","sex":"female","date_of_birth":"1988-12-27T00:00:00.000Z","height":1.7,"weight":75,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":950602968,"name":"Sarah Ourahmoune","nationality":"FRA","sex":"female","date_of_birth":"1982-01-21T00:00:00.000Z","height":1.57,"weight":null,"sport":"boxing","gold":0,"silver":1,"bronze":0,"info":null},{"id":809483271,"name":"Sarah Pavan","nationality":"CAN","sex":"female","date_of_birth":"1986-08-16T00:00:00.000Z","height":1.96,"weight":70,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":176016249,"name":"Sarah Scherer","nationality":"USA","sex":"female","date_of_birth":"1991-02-12T00:00:00.000Z","height":1.71,"weight":62,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":350191738,"name":"Sarah Sjostrom","nationality":"SWE","sex":"female","date_of_birth":"1993-08-17T00:00:00.000Z","height":1.82,"weight":76,"sport":"aquatics","gold":1,"silver":1,"bronze":1,"info":null},{"id":464482319,"name":"Sarah Steyaert","nationality":"FRA","sex":"female","date_of_birth":"1986-11-27T00:00:00.000Z","height":1.75,"weight":67,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":952559484,"name":"Sarah Troel","nationality":"FRA","sex":"female","date_of_birth":"1986-07-12T00:00:00.000Z","height":1.75,"weight":71,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":360246098,"name":"Sarah True","nationality":"USA","sex":"female","date_of_birth":"1981-11-27T00:00:00.000Z","height":1.71,"weight":60,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":204834878,"name":"Sarah-Anne Brault","nationality":"CAN","sex":"female","date_of_birth":"1989-12-01T00:00:00.000Z","height":1.71,"weight":65,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":579905792,"name":"Saraswati Bhattarai","nationality":"NEP","sex":"female","date_of_birth":"1994-03-08T00:00:00.000Z","height":1.63,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":509184238,"name":"Sarat Sumpradit","nationality":"THA","sex":"male","date_of_birth":"1994-04-17T00:00:00.000Z","height":1.81,"weight":93,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":487278690,"name":"Sardar Singh","nationality":"IND","sex":"male","date_of_birth":"1986-07-15T00:00:00.000Z","height":1.76,"weight":80,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":"India has the most victories of any country in field hockey at the Olympic Games. The current captain, Sardar Singh, was part of the team at London 2012, and also competed at the 2007 Asia Cup 2014 Asian Games."},{"id":32650602,"name":"Sardorbek Dusmurotov","nationality":"UZB","sex":"male","date_of_birth":"1993-03-13T00:00:00.000Z","height":1.68,"weight":110,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":662999016,"name":"Sargis Martirosjan","nationality":"AUT","sex":"male","date_of_birth":"1986-09-14T00:00:00.000Z","height":1.79,"weight":104,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":122086540,"name":"Sarolta Kovacs","nationality":"HUN","sex":"female","date_of_birth":"1991-03-12T00:00:00.000Z","height":1.67,"weight":59,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":929534823,"name":"Sarra Besbes","nationality":"TUN","sex":"female","date_of_birth":"1989-02-05T00:00:00.000Z","height":1.75,"weight":62,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":357200340,"name":"Sasa Cado","nationality":"SRB","sex":"female","date_of_birth":"1989-07-13T00:00:00.000Z","height":1.78,"weight":72,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":513283860,"name":"Sasa MISIC","nationality":"MNE","sex":"male","date_of_birth":"1987-03-27T00:00:00.000Z","height":1.98,"weight":109,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":672574541,"name":"Sascha Klein","nationality":"GER","sex":"male","date_of_birth":"1985-09-12T00:00:00.000Z","height":1.73,"weight":71,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":586159759,"name":"Sascia Kraus","nationality":"SUI","sex":"female","date_of_birth":"1993-03-03T00:00:00.000Z","height":1.77,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":543039018,"name":"Sashalee Forbes","nationality":"JAM","sex":"female","date_of_birth":"1996-05-10T00:00:00.000Z","height":1.6,"weight":55,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":626916015,"name":"Saskia Bartusiak","nationality":"GER","sex":"female","date_of_birth":"1982-09-09T00:00:00.000Z","height":1.7,"weight":60,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":447095096,"name":"Saskia Clark","nationality":"GBR","sex":"female","date_of_birth":"1979-08-23T00:00:00.000Z","height":1.76,"weight":68,"sport":"sailing","gold":1,"silver":0,"bronze":0,"info":null},{"id":757107967,"name":"Saskia Loretta van Erven Garcia","nationality":"COL","sex":"female","date_of_birth":"1987-08-29T00:00:00.000Z","height":1.75,"weight":64,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":819917798,"name":"Saskia Tidey","nationality":"IRL","sex":"female","date_of_birth":"1993-06-11T00:00:00.000Z","height":1.83,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":120862414,"name":"Saso Taljat","nationality":"SLO","sex":"male","date_of_birth":"1989-09-22T00:00:00.000Z","height":1.74,"weight":73,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":857233175,"name":"Sathish Kumar Sivalingam","nationality":"IND","sex":"male","date_of_birth":"1992-06-23T00:00:00.000Z","height":1.75,"weight":77,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":753187729,"name":"Satomi Kubokura","nationality":"JPN","sex":"female","date_of_birth":"1982-04-27T00:00:00.000Z","height":1.6,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":631296742,"name":"Satomi Suzuki","nationality":"JPN","sex":"female","date_of_birth":"1991-01-29T00:00:00.000Z","height":1.68,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":186482270,"name":"Satoru Sasaki","nationality":"JPN","sex":"male","date_of_birth":"1985-10-16T00:00:00.000Z","height":1.71,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":780249197,"name":"Sattawat Pongnairat","nationality":"USA","sex":"male","date_of_birth":"1990-05-08T00:00:00.000Z","height":1.81,"weight":70,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":160287556,"name":"Satu Makela-Nummela","nationality":"FIN","sex":"female","date_of_birth":"1970-10-26T00:00:00.000Z","height":1.69,"weight":63,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":458458780,"name":"Saturday Erimuya","nationality":"NGR","sex":"male","date_of_birth":"1998-01-10T00:00:00.000Z","height":1.71,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":742022352,"name":"Saud Alzaabi","nationality":"UAE","sex":"male","date_of_birth":"1988-08-07T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":800437586,"name":"Saud Habib","nationality":"IOA","sex":"male","date_of_birth":"1979-10-04T00:00:00.000Z","height":1.77,"weight":85,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":530860018,"name":"Saul Craviotto","nationality":"ESP","sex":"male","date_of_birth":"1984-11-03T00:00:00.000Z","height":1.92,"weight":98,"sport":"canoe","gold":1,"silver":0,"bronze":1,"info":null},{"id":538588992,"name":"Saul Gutierrez Macedo","nationality":"MEX","sex":"male","date_of_birth":"1992-12-28T00:00:00.000Z","height":1.91,"weight":68,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":627929661,"name":"Saula Waqa","nationality":"FIJ","sex":"male","date_of_birth":"1995-10-12T00:00:00.000Z","height":1.96,"weight":96,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":818121664,"name":"Saulius Ritter","nationality":"LTU","sex":"male","date_of_birth":"1988-08-23T00:00:00.000Z","height":2.02,"weight":110,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":227050501,"name":"Sava Randelovic","nationality":"SRB","sex":"male","date_of_birth":"1993-07-17T00:00:00.000Z","height":1.93,"weight":98,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":649115184,"name":"Savannah Marshall","nationality":"GBR","sex":"female","date_of_birth":"1991-05-19T00:00:00.000Z","height":1.81,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":692221197,"name":"Savenaca Rawaca","nationality":"FIJ","sex":"male","date_of_birth":"1991-08-20T00:00:00.000Z","height":1.89,"weight":105,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":684153467,"name":"Saviour Godwin","nationality":"NGR","sex":"male","date_of_birth":"1996-08-22T00:00:00.000Z","height":1.72,"weight":71,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":202363602,"name":"Savita Savita","nationality":"IND","sex":"female","date_of_birth":"1990-07-11T00:00:00.000Z","height":1.71,"weight":59,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":309381381,"name":"Savitree Amitrapai","nationality":"THA","sex":"female","date_of_birth":"1988-11-19T00:00:00.000Z","height":1.64,"weight":56,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":194183434,"name":"Sawan Serasinghe","nationality":"AUS","sex":"male","date_of_birth":"1994-02-21T00:00:00.000Z","height":1.78,"weight":79,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":436141773,"name":"Saylom Ardee","nationality":"THA","sex":"male","date_of_birth":"1986-07-07T00:00:00.000Z","height":1.75,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":185315649,"name":"Sayuri Sugimoto","nationality":"JPN","sex":"female","date_of_birth":"1996-01-25T00:00:00.000Z","height":1.67,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":488272303,"name":"Saziye Ivegin Uner","nationality":"TUR","sex":"female","date_of_birth":"1982-02-08T00:00:00.000Z","height":1.8,"weight":69,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":752901474,"name":"Scarleth Elizabeth Mercado Lopez","nationality":"NCA","sex":"female","date_of_birth":"1996-08-09T00:00:00.000Z","height":1.52,"weight":53,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":783419907,"name":"Scott Bowden","nationality":"AUS","sex":"male","date_of_birth":"1995-04-04T00:00:00.000Z","height":1.75,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":815590991,"name":"Scott Curry","nationality":"NZL","sex":"male","date_of_birth":"1988-05-17T00:00:00.000Z","height":1.93,"weight":100,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":733105712,"name":"Scott Durant","nationality":"GBR","sex":"male","date_of_birth":"1988-02-12T00:00:00.000Z","height":1.96,"weight":96,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":128810768,"name":"Scott Evans","nationality":"IRL","sex":"male","date_of_birth":"1987-09-26T00:00:00.000Z","height":1.8,"weight":78,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":758417011,"name":"Scott Hend","nationality":"AUS","sex":"male","date_of_birth":"1973-08-15T00:00:00.000Z","height":1.83,"weight":82,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":153971498,"name":"Scott Keach","nationality":"AUS","sex":"male","date_of_birth":"1965-04-21T00:00:00.000Z","height":1.85,"weight":80,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":744441795,"name":"Scott Morgan","nationality":"CAN","sex":"male","date_of_birth":"1989-06-20T00:00:00.000Z","height":1.6,"weight":62,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":880417665,"name":"Scott Tupper","nationality":"CAN","sex":"male","date_of_birth":"1986-12-16T00:00:00.000Z","height":1.79,"weight":79,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":652324517,"name":"Scott Westcott","nationality":"AUS","sex":"male","date_of_birth":"1975-09-25T00:00:00.000Z","height":1.79,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":964785333,"name":"Se Gwang Ri","nationality":"PRK","sex":"male","date_of_birth":"1985-01-21T00:00:00.000Z","height":1.55,"weight":54,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":null},{"id":715580856,"name":"Seabelo Senatla","nationality":"RSA","sex":"male","date_of_birth":"1993-02-10T00:00:00.000Z","height":1.77,"weight":82,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":947393781,"name":"Seamus Power","nationality":"IRL","sex":"male","date_of_birth":"1987-03-04T00:00:00.000Z","height":1.92,"weight":90,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":78197579,"name":"Sean Furey","nationality":"USA","sex":"male","date_of_birth":"1982-08-31T00:00:00.000Z","height":1.88,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":599859960,"name":"Sean Michael Gunn","nationality":"ZIM","sex":"male","date_of_birth":"1993-12-23T00:00:00.000Z","height":1.81,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":462481375,"name":"Sean Ryan","nationality":"USA","sex":"male","date_of_birth":"1992-08-13T00:00:00.000Z","height":1.91,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":915415519,"name":"Sean Safo-Antwi","nationality":"GHA","sex":"male","date_of_birth":"1990-10-31T00:00:00.000Z","height":1.71,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":644711592,"name":"Seavmey Sorn","nationality":"CAM","sex":"female","date_of_birth":"1995-09-14T00:00:00.000Z","height":1.83,"weight":73,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":188093060,"name":"Sebastiaan Verschuren","nationality":"NED","sex":"male","date_of_birth":"1988-10-07T00:00:00.000Z","height":1.92,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":746518634,"name":"Sebastian Brendel","nationality":"GER","sex":"male","date_of_birth":"1988-03-12T00:00:00.000Z","height":1.92,"weight":92,"sport":"canoe","gold":2,"silver":0,"bronze":0,"info":"Germany's Sebastian Brendel took his country to the top of the podium in the C-1 1000m event at London 2012. He then dominated the world championships, also competing in the 5000m and winning five golds over three editions."},{"id":782106653,"name":"Sebastian Fleischer","nationality":"DEN","sex":"male","date_of_birth":"1993-12-26T00:00:00.000Z","height":1.79,"weight":74,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":947656351,"name":"Sebastian Kerk","nationality":"GER","sex":"male","date_of_birth":"1994-04-17T00:00:00.000Z","height":1.84,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":821529588,"name":"Sebastian Kuntschik","nationality":"AUT","sex":"male","date_of_birth":"1988-09-23T00:00:00.000Z","height":1.82,"weight":79,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":987203474,"name":"Sebastian Martos","nationality":"ESP","sex":"male","date_of_birth":"1989-06-20T00:00:00.000Z","height":1.78,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":409782771,"name":"Sebastian Morales","nationality":"COL","sex":"male","date_of_birth":"1994-08-22T00:00:00.000Z","height":1.71,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":857597893,"name":"Sebastian Perez","nationality":"COL","sex":"male","date_of_birth":"1993-03-29T00:00:00.000Z","height":1.77,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":806780265,"name":"Sebastian Rodger","nationality":"GBR","sex":"male","date_of_birth":"1991-06-29T00:00:00.000Z","height":1.8,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":502044930,"name":"Sebastian Rossi","nationality":"ARG","sex":"male","date_of_birth":"1992-02-12T00:00:00.000Z","height":1.75,"weight":77,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":481454192,"name":"Sebastian Seidl","nationality":"GER","sex":"male","date_of_birth":"1990-07-12T00:00:00.000Z","height":1.74,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":62067112,"name":"Sebastian Simonet","nationality":"ARG","sex":"male","date_of_birth":"1986-05-12T00:00:00.000Z","height":1.89,"weight":93,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":526844987,"name":"Sebastian Sole","nationality":"ARG","sex":"male","date_of_birth":"1991-06-12T00:00:00.000Z","height":2,"weight":94,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":628729080,"name":"Sebastian Starke Hedlund","nationality":"SWE","sex":"male","date_of_birth":"1995-04-05T00:00:00.000Z","height":1.85,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":948050872,"name":"Sebastian Villa","nationality":"COL","sex":"male","date_of_birth":"1992-02-21T00:00:00.000Z","height":1.64,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":50163222,"name":"Sebastien Combot","nationality":"FRA","sex":"male","date_of_birth":"1987-02-09T00:00:00.000Z","height":1.69,"weight":64,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":980137222,"name":"Sebastien Daniel Rousseau","nationality":"RSA","sex":"male","date_of_birth":"1990-09-10T00:00:00.000Z","height":1.9,"weight":86,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":266769451,"name":"Sebastien Dockier","nationality":"BEL","sex":"male","date_of_birth":"1989-12-28T00:00:00.000Z","height":1.75,"weight":74,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":394906544,"name":"Sebastien Jouve","nationality":"FRA","sex":"male","date_of_birth":"1982-12-08T00:00:00.000Z","height":1.86,"weight":90,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":696726152,"name":"Sebastien Martiny","nationality":"FRA","sex":"male","date_of_birth":"1985-02-27T00:00:00.000Z","height":1.72,"weight":65,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":421109661,"name":"Sebastien Reichenbach","nationality":"SUI","sex":"male","date_of_birth":"1989-05-28T00:00:00.000Z","height":1.78,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":755469189,"name":"Sebastien Schneiter","nationality":"SUI","sex":"male","date_of_birth":"1995-09-24T00:00:00.000Z","height":1.76,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":555941174,"name":"Sebnem Nezahat Kimyacioglu","nationality":"TUR","sex":"female","date_of_birth":"1983-06-14T00:00:00.000Z","height":1.82,"weight":80,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":471386171,"name":"Seda Tutkhalian","nationality":"RUS","sex":"female","date_of_birth":"1999-07-15T00:00:00.000Z","height":1.42,"weight":35,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":null},{"id":661458776,"name":"Seema Punia","nationality":"IND","sex":"female","date_of_birth":"1983-07-27T00:00:00.000Z","height":1.82,"weight":92,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":477722646,"name":"Segun Toriola","nationality":"NGR","sex":"male","date_of_birth":"1974-09-18T00:00:00.000Z","height":1.72,"weight":70,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":64323819,"name":"Segundo Jami","nationality":"ECU","sex":"male","date_of_birth":"1986-05-12T00:00:00.000Z","height":1.65,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":365917008,"name":"Seham Elsawalhy","nationality":"EGY","sex":"female","date_of_birth":"1991-04-14T00:00:00.000Z","height":1.75,"weight":65,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":833886361,"name":"Sehyeon An","nationality":"KOR","sex":"female","date_of_birth":"1995-10-14T00:00:00.000Z","height":1.68,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":386696464,"name":"Sei Muroya","nationality":"JPN","sex":"male","date_of_birth":"1994-04-05T00:00:00.000Z","height":1.74,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":881914341,"name":"Seiichiro Nakagawa","nationality":"JPN","sex":"male","date_of_birth":"1979-06-07T00:00:00.000Z","height":1.74,"weight":78,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":450765459,"name":"Seimone Augustus","nationality":"USA","sex":"female","date_of_birth":"1984-04-30T00:00:00.000Z","height":1.83,"weight":74,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":961376949,"name":"Seito Yamamoto","nationality":"JPN","sex":"male","date_of_birth":"1992-03-11T00:00:00.000Z","height":1.81,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":879945924,"name":"Seiya Adachi","nationality":"JPN","sex":"male","date_of_birth":"1995-06-24T00:00:00.000Z","height":1.72,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":758020443,"name":"Seiyoung Kim","nationality":"KOR","sex":"female","date_of_birth":"1993-01-21T00:00:00.000Z","height":1.63,"weight":68,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":548391655,"name":"Sekou Kaba","nationality":"CAN","sex":"male","date_of_birth":"1990-08-25T00:00:00.000Z","height":1.88,"weight":88,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":438328823,"name":"Selcuk Cebi","nationality":"TUR","sex":"male","date_of_birth":"1982-06-03T00:00:00.000Z","height":1.69,"weight":76,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":23409142,"name":"Selcuk Eker","nationality":"TUR","sex":"male","date_of_birth":"1991-06-12T00:00:00.000Z","height":1.69,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":187017492,"name":"Selena Piek","nationality":"NED","sex":"female","date_of_birth":"1991-09-30T00:00:00.000Z","height":1.66,"weight":59,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":121821838,"name":"Selim Yasar","nationality":"TUR","sex":"male","date_of_birth":"1990-02-20T00:00:00.000Z","height":1.79,"weight":86,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":429028627,"name":"Selin Oruz","nationality":"GER","sex":"female","date_of_birth":"1997-02-05T00:00:00.000Z","height":1.72,"weight":60,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":280240800,"name":"Selina Buchel","nationality":"SUI","sex":"female","date_of_birth":"1991-07-26T00:00:00.000Z","height":1.67,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":837915273,"name":"Selina Gschwandtner","nationality":"GER","sex":"female","date_of_birth":"1994-05-18T00:00:00.000Z","height":1.66,"weight":64,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":387125204,"name":"Selma Kajan","nationality":"AUS","sex":"female","date_of_birth":"1991-07-30T00:00:00.000Z","height":1.69,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":275237162,"name":"Semen Makovich","nationality":"RUS","sex":"male","date_of_birth":"1995-07-13T00:00:00.000Z","height":1.8,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":9122032,"name":"Semi Kunatani","nationality":"FIJ","sex":"male","date_of_birth":"1990-10-27T00:00:00.000Z","height":1.92,"weight":98,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":35226441,"name":"Semoy Hackett","nationality":"TTO","sex":"female","date_of_birth":"1988-11-27T00:00:00.000Z","height":1.73,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":206262070,"name":"Sen Qiao","nationality":"CHN","sex":"male","date_of_birth":"1990-05-14T00:00:00.000Z","height":1.97,"weight":85,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":806870975,"name":"Sena Takano","nationality":"JPN","sex":"female","date_of_birth":"1998-03-01T00:00:00.000Z","height":1.65,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":743927516,"name":"Senbere Teferi","nationality":"ETH","sex":"female","date_of_birth":"1995-05-03T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":652894591,"name":"Senna Deriks","nationality":"BEL","sex":"female","date_of_birth":"2000-12-30T00:00:00.000Z","height":1.54,"weight":46,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":846363781,"name":"Seona Hwang","nationality":"KOR","sex":"female","date_of_birth":"1989-09-16T00:00:00.000Z","height":1.63,"weight":55,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":961455216,"name":"Seongeun Hwang","nationality":"KOR","sex":"female","date_of_birth":"1993-02-28T00:00:00.000Z","height":1.65,"weight":55,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":221532533,"name":"Seongyeon Kim","nationality":"KOR","sex":"female","date_of_birth":"1991-04-16T00:00:00.000Z","height":1.75,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":4661115,"name":"Seoyeong Kim","nationality":"KOR","sex":"female","date_of_birth":"1994-03-17T00:00:00.000Z","height":1.63,"weight":51,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":655555498,"name":"Seppe van Holsbeke","nationality":"BEL","sex":"male","date_of_birth":"1988-01-19T00:00:00.000Z","height":1.98,"weight":93,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":252015329,"name":"Ser-Od Bat-Ochir","nationality":"MGL","sex":"male","date_of_birth":"1981-10-07T00:00:00.000Z","height":1.69,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":86771577,"name":"Seref Osmanoglu","nationality":"TUR","sex":"male","date_of_birth":"1989-01-02T00:00:00.000Z","height":1.83,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":310865074,"name":"Seren Bundy-Davies","nationality":"GBR","sex":"female","date_of_birth":"1994-12-30T00:00:00.000Z","height":1.75,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":24929950,"name":"Serena Ortolani","nationality":"ITA","sex":"female","date_of_birth":"1987-01-07T00:00:00.000Z","height":1.87,"weight":63,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":379931177,"name":"Serena Williams","nationality":"USA","sex":"female","date_of_birth":"1981-09-26T00:00:00.000Z","height":1.78,"weight":72,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":"The USA's Serena Williams has won 22 Grand Slams, seven of which were at Wimbledon (most recently in June 2016) and three at Roland Garros. She also holds four Olympic golds, including a pair – singles and doubles – won at London 2012."},{"id":297370521,"name":"Serge Gnabry","nationality":"GER","sex":"male","date_of_birth":"1995-07-14T00:00:00.000Z","height":1.73,"weight":80,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":270678554,"name":"Serge Michel","nationality":"GER","sex":"male","date_of_birth":"1988-09-10T00:00:00.000Z","height":1.81,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":612124451,"name":"Serge Pauwels","nationality":"BEL","sex":"male","date_of_birth":"1983-11-21T00:00:00.000Z","height":1.77,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":151596328,"name":"Sergei Chernetski","nationality":"RUS","sex":"male","date_of_birth":"1990-04-09T00:00:00.000Z","height":1.76,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":333027986,"name":"Sergei Komissarov","nationality":"RUS","sex":"male","date_of_birth":"1987-12-03T00:00:00.000Z","height":1.84,"weight":81,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":594962081,"name":"Sergey Grankin","nationality":"RUS","sex":"male","date_of_birth":"1985-01-21T00:00:00.000Z","height":1.95,"weight":96,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":549185484,"name":"Sergey Kamenskiy","nationality":"RUS","sex":"male","date_of_birth":"1987-10-07T00:00:00.000Z","height":1.78,"weight":73,"sport":"shooting","gold":0,"silver":1,"bronze":0,"info":null},{"id":478548021,"name":"Sergey Khodos","nationality":"RUS","sex":"male","date_of_birth":"1986-07-14T00:00:00.000Z","height":1.97,"weight":87,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":645801054,"name":"Sergey Richter","nationality":"ISR","sex":"male","date_of_birth":"1989-04-23T00:00:00.000Z","height":1.8,"weight":83,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":536871163,"name":"Sergey Semenov","nationality":"RUS","sex":"male","date_of_birth":"1995-08-10T00:00:00.000Z","height":1.87,"weight":130,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":428021542,"name":"Sergey Tetyukhin","nationality":"RUS","sex":"male","date_of_birth":"1975-09-23T00:00:00.000Z","height":1.97,"weight":89,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":890081492,"name":"Serghei Cechir","nationality":"MDA","sex":"male","date_of_birth":"1990-10-15T00:00:00.000Z","height":1.72,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":832276457,"name":"Serghei Marghiev","nationality":"MDA","sex":"male","date_of_birth":"1992-11-06T00:00:00.000Z","height":1.95,"weight":97,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":137541951,"name":"Serghei Tarnovschi","nationality":"MDA","sex":"male","date_of_birth":"1997-06-24T00:00:00.000Z","height":1.78,"weight":80,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":825721013,"name":"Serghei Tvetcov","nationality":"ROU","sex":"male","date_of_birth":"1988-12-29T00:00:00.000Z","height":1.78,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":240732198,"name":"Sergi Enrique","nationality":"ESP","sex":"male","date_of_birth":"1987-09-22T00:00:00.000Z","height":1.74,"weight":69,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":804903425,"name":"Sergii Frolov","nationality":"UKR","sex":"male","date_of_birth":"1992-04-14T00:00:00.000Z","height":1.74,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":774141587,"name":"Sergii Tokarnytskyi","nationality":"KAZ","sex":"male","date_of_birth":"1993-02-01T00:00:00.000Z","height":1.88,"weight":102,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":954264527,"name":"Sergio Alvarez Moya","nationality":"ESP","sex":"male","date_of_birth":"1985-01-07T00:00:00.000Z","height":1.74,"weight":74,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":558359788,"name":"Sergio Dutra Santos","nationality":"BRA","sex":"male","date_of_birth":"1975-10-15T00:00:00.000Z","height":1.84,"weight":78,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":790285042,"name":"Sergio Fernandez","nationality":"ESP","sex":"male","date_of_birth":"1993-04-01T00:00:00.000Z","height":1.86,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":952347029,"name":"Sergio Garcia","nationality":"ESP","sex":"male","date_of_birth":"1980-01-09T00:00:00.000Z","height":1.76,"weight":80,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":157650129,"name":"Sergio Llull","nationality":"ESP","sex":"male","date_of_birth":"1987-11-15T00:00:00.000Z","height":1.9,"weight":91,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":848761398,"name":"Sergio Luis Henao Montoya","nationality":"COL","sex":"male","date_of_birth":"1987-12-10T00:00:00.000Z","height":1.7,"weight":61,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":390699178,"name":"Sergio Oliveira","nationality":"POR","sex":"male","date_of_birth":"1992-06-02T00:00:00.000Z","height":1.8,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":783188500,"name":"Sergio Pessoa","nationality":"CAN","sex":"male","date_of_birth":"1988-09-03T00:00:00.000Z","height":1.87,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":259358477,"name":"Sergio Reynaldo Gonzalez Bayard","nationality":"CUB","sex":"male","date_of_birth":"1990-06-20T00:00:00.000Z","height":1.95,"weight":99,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":156131114,"name":"Sergio Rodriguez","nationality":"ESP","sex":"male","date_of_birth":"1986-06-12T00:00:00.000Z","height":1.91,"weight":80,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":534656783,"name":"Sergio Sasaki","nationality":"BRA","sex":"male","date_of_birth":"1992-03-31T00:00:00.000Z","height":1.61,"weight":64,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":92473676,"name":"Sergio Vieira","nationality":"POR","sex":"male","date_of_birth":"1976-02-20T00:00:00.000Z","height":1.74,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":413925924,"name":"Sergiu Oleinic","nationality":"POR","sex":"male","date_of_birth":"1985-12-25T00:00:00.000Z","height":1.65,"weight":68,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":642221222,"name":"Sergiu Toma","nationality":"UAE","sex":"male","date_of_birth":"1987-01-29T00:00:00.000Z","height":1.8,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":993364632,"name":"Serguey Torres","nationality":"CUB","sex":"male","date_of_birth":"1987-01-20T00:00:00.000Z","height":1.75,"weight":74,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":638712579,"name":"Serhiy Budza","nationality":"UKR","sex":"male","date_of_birth":"1984-12-06T00:00:00.000Z","height":1.8,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":76496713,"name":"Serhiy Kulish","nationality":"UKR","sex":"male","date_of_birth":"1993-04-17T00:00:00.000Z","height":1.76,"weight":64,"sport":"shooting","gold":0,"silver":1,"bronze":0,"info":null},{"id":612592716,"name":"Serhiy Smelyk","nationality":"UKR","sex":"male","date_of_birth":"1987-04-19T00:00:00.000Z","height":1.78,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":544720324,"name":"Serik Mirbekov","nationality":"UZB","sex":"male","date_of_birth":"1988-06-09T00:00:00.000Z","height":1.76,"weight":83,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":983390495,"name":"Servet Tazegul","nationality":"TUR","sex":"male","date_of_birth":"1988-09-26T00:00:00.000Z","height":1.76,"weight":68,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":"In the past two Olympic Games, Servet Tazegül has won medals for Turkey in taekwondo, gold at London 2012 and bronze at Beijing 2008, in classes up to 68kg. The world champion in 2011 and 2015, this athlete has won the past five European championships."},{"id":631502285,"name":"Setareki Hughes","nationality":"FIJ","sex":"male","date_of_birth":"1995-06-08T00:00:00.000Z","height":1.75,"weight":73,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":13474372,"name":"Seth Weil","nationality":"USA","sex":"male","date_of_birth":"1987-03-09T00:00:00.000Z","height":1.99,"weight":97,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":526516331,"name":"Seul-Ki Ahn","nationality":"KOR","sex":"female","date_of_birth":"1992-05-29T00:00:00.000Z","height":1.61,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":860133860,"name":"Seulchan Lee","nationality":"KOR","sex":"male","date_of_birth":"1993-08-15T00:00:00.000Z","height":1.72,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":732031439,"name":"Seung Chan Shin","nationality":"KOR","sex":"female","date_of_birth":"1994-12-06T00:00:00.000Z","height":1.73,"weight":70,"sport":"badminton","gold":0,"silver":0,"bronze":1,"info":null},{"id":714388590,"name":"Seunga Park","nationality":"KOR","sex":"female","date_of_birth":"1991-04-16T00:00:00.000Z","height":1.68,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":863636948,"name":"Seunghwa Jung","nationality":"KOR","sex":"male","date_of_birth":"1981-03-27T00:00:00.000Z","height":1.8,"weight":80,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":598701842,"name":"Seunghyun Jung","nationality":"KOR","sex":"male","date_of_birth":"1994-04-03T00:00:00.000Z","height":1.88,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":215880405,"name":"Seunghyun Yun","nationality":"KOR","sex":"male","date_of_birth":"1994-06-01T00:00:00.000Z","height":1.93,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":299216431,"name":"Seungsu Lee","nationality":"KOR","sex":"male","date_of_birth":"1990-07-20T00:00:00.000Z","height":1.78,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":319207842,"name":"Seungwoo Han","nationality":"KOR","sex":"male","date_of_birth":"1983-07-03T00:00:00.000Z","height":1.73,"weight":86,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":950256788,"name":"Seungwoo Ryu","nationality":"KOR","sex":"male","date_of_birth":"1993-12-17T00:00:00.000Z","height":1.72,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":739050983,"name":"Seungyun Lee","nationality":"KOR","sex":"male","date_of_birth":"1995-04-18T00:00:00.000Z","height":1.74,"weight":80,"sport":"archery","gold":1,"silver":0,"bronze":0,"info":null},{"id":663165360,"name":"Severiano van Ass","nationality":"NED","sex":"male","date_of_birth":"1992-04-10T00:00:00.000Z","height":1.78,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":243524329,"name":"Severo Jesus Jurado Lopez","nationality":"ESP","sex":"male","date_of_birth":"1988-09-09T00:00:00.000Z","height":1.72,"weight":71,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":615481668,"name":"Seye Ogunlewe","nationality":"NGR","sex":"male","date_of_birth":"1991-08-30T00:00:00.000Z","height":1.89,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":862783506,"name":"Seyed Mohammad Mousavi Eraghi","nationality":"IRI","sex":"male","date_of_birth":"1987-08-22T00:00:00.000Z","height":2.03,"weight":86,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":817723961,"name":"Shadae Lawrence","nationality":"JAM","sex":"female","date_of_birth":"1995-12-31T00:00:00.000Z","height":1.73,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":781173388,"name":"Shadrack Kipchirchir","nationality":"USA","sex":"male","date_of_birth":"1989-02-22T00:00:00.000Z","height":1.73,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":753177730,"name":"Shahar Zubari","nationality":"ISR","sex":"male","date_of_birth":"1986-09-01T00:00:00.000Z","height":1.77,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":188476296,"name":"Shahram Mahmoudi","nationality":"IRI","sex":"male","date_of_birth":"1988-07-20T00:00:00.000Z","height":1.98,"weight":95,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":630214839,"name":"Shaimaa Haridy","nationality":"EGY","sex":"female","date_of_birth":"1991-01-01T00:00:00.000Z","height":1.6,"weight":124,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":926666572,"name":"Shakhboz Kholmurzaev","nationality":"UZB","sex":"male","date_of_birth":"1996-02-26T00:00:00.000Z","height":1.88,"weight":78,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":294616056,"name":"Shakhobidin Zoirov","nationality":"UZB","sex":"male","date_of_birth":"1993-03-03T00:00:00.000Z","height":1.69,"weight":null,"sport":"boxing","gold":1,"silver":0,"bronze":0,"info":null},{"id":295291162,"name":"Shakhram Giyasov","nationality":"UZB","sex":"male","date_of_birth":"1993-07-07T00:00:00.000Z","height":1.74,"weight":null,"sport":"boxing","gold":0,"silver":1,"bronze":0,"info":null},{"id":107756226,"name":"Shakhzodbek Sabirov","nationality":"UZB","sex":"male","date_of_birth":"1993-05-29T00:00:00.000Z","height":1.83,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":907513797,"name":"Shakira Baker","nationality":"NZL","sex":"female","date_of_birth":"1992-01-04T00:00:00.000Z","height":1.72,"weight":89,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":682806875,"name":"Shakur Stevenson","nationality":"USA","sex":"male","date_of_birth":"1997-06-28T00:00:00.000Z","height":1.73,"weight":null,"sport":"boxing","gold":0,"silver":1,"bronze":0,"info":null},{"id":591949071,"name":"Shalane Flanagan","nationality":"USA","sex":"female","date_of_birth":"1981-07-08T00:00:00.000Z","height":1.66,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":289631929,"name":"Shallon Olsen","nationality":"CAN","sex":"female","date_of_birth":"2000-07-10T00:00:00.000Z","height":1.58,"weight":52,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":551301673,"name":"Shamoli Ray","nationality":"BAN","sex":"female","date_of_birth":"1994-04-05T00:00:00.000Z","height":null,"weight":null,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":722411313,"name":"Shane O'Donoghue","nationality":"IRL","sex":"male","date_of_birth":"1992-11-24T00:00:00.000Z","height":1.83,"weight":80,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":827053441,"name":"Shane Rose","nationality":"AUS","sex":"male","date_of_birth":"1973-04-24T00:00:00.000Z","height":1.81,"weight":80,"sport":"equestrian","gold":0,"silver":0,"bronze":1,"info":null},{"id":123371543,"name":"Shane Ryan","nationality":"IRL","sex":"male","date_of_birth":"1994-01-27T00:00:00.000Z","height":1.98,"weight":89,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":304415448,"name":"Shaneel Naidu","nationality":"FIJ","sex":"male","date_of_birth":"1995-03-28T00:00:00.000Z","height":1.8,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":690199324,"name":"Shani Bloch","nationality":"ISR","sex":"female","date_of_birth":"1979-03-06T00:00:00.000Z","height":1.62,"weight":59,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":838944632,"name":"Shanice Craft","nationality":"GER","sex":"female","date_of_birth":"1993-05-15T00:00:00.000Z","height":1.85,"weight":93,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":672509994,"name":"Shanieka Thomas","nationality":"JAM","sex":"female","date_of_birth":"1992-02-02T00:00:00.000Z","height":1.81,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":368129090,"name":"Shanne Braspennincx","nationality":"NED","sex":"female","date_of_birth":"1991-05-18T00:00:00.000Z","height":1.72,"weight":78,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":19644871,"name":"Shannon Izar","nationality":"FRA","sex":"female","date_of_birth":"1993-05-08T00:00:00.000Z","height":1.72,"weight":68,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":861802437,"name":"Shannon McCurley","nationality":"IRL","sex":"female","date_of_birth":"1992-04-26T00:00:00.000Z","height":1.63,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":364894953,"name":"Shannon Parry","nationality":"AUS","sex":"female","date_of_birth":"1989-10-27T00:00:00.000Z","height":1.7,"weight":70,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":165793657,"name":"Shannon Rowbury","nationality":"USA","sex":"female","date_of_birth":"1984-09-19T00:00:00.000Z","height":1.66,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":297515398,"name":"Shanshan Feng","nationality":"CHN","sex":"female","date_of_birth":"1989-08-05T00:00:00.000Z","height":1.72,"weight":85,"sport":"golf","gold":0,"silver":0,"bronze":1,"info":null},{"id":70444302,"name":"Shanshan Li","nationality":"CHN","sex":"female","date_of_birth":"1987-03-03T00:00:00.000Z","height":1.78,"weight":62,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":124085107,"name":"Shanshan Liu","nationality":"CHN","sex":"female","date_of_birth":"1992-03-16T00:00:00.000Z","height":1.69,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":620111487,"name":"Shanshan Wang","nationality":"CHN","sex":"female","date_of_birth":"1990-01-27T00:00:00.000Z","height":1.69,"weight":57,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":843106594,"name":"Shaoqing Hua","nationality":"CHN","sex":"female","date_of_birth":"1994-02-12T00:00:00.000Z","height":1.65,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":353324453,"name":"Shaquania Dorsett","nationality":"BAH","sex":"female","date_of_birth":"1997-09-16T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":625323278,"name":"Shara Proctor","nationality":"GBR","sex":"female","date_of_birth":"1988-09-16T00:00:00.000Z","height":1.73,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":170273489,"name":"Shara Venegas","nationality":"PUR","sex":"female","date_of_birth":"1992-09-18T00:00:00.000Z","height":1.73,"weight":68,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":198250006,"name":"Sharath Kamal Achanta","nationality":"IND","sex":"male","date_of_birth":"1982-07-12T00:00:00.000Z","height":1.86,"weight":85,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":492459833,"name":"Sharif Sharifov","nationality":"AZE","sex":"male","date_of_birth":"1988-11-11T00:00:00.000Z","height":1.8,"weight":97,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":501621761,"name":"Sharni Williams","nationality":"AUS","sex":"female","date_of_birth":"1988-03-02T00:00:00.000Z","height":1.67,"weight":79,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":729778002,"name":"Sharolyn Scott","nationality":"CRC","sex":"female","date_of_birth":"1983-10-27T00:00:00.000Z","height":1.68,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":179932407,"name":"Sharon Acevedo","nationality":"COL","sex":"female","date_of_birth":"1993-03-05T00:00:00.000Z","height":1.7,"weight":61,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":509787602,"name":"Sharon Firisua","nationality":"SOL","sex":"female","date_of_birth":"1993-12-15T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":370330019,"name":"Sharon van rouwendaal","nationality":"NED","sex":"female","date_of_birth":"1993-09-09T00:00:00.000Z","height":1.73,"weight":65,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":371532634,"name":"Shaun Keeling","nationality":"RSA","sex":"male","date_of_birth":"1987-01-21T00:00:00.000Z","height":1.96,"weight":94,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":810913943,"name":"Shaun Kirkham","nationality":"NZL","sex":"male","date_of_birth":"1992-07-24T00:00:00.000Z","height":1.91,"weight":96,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":110430107,"name":"Shaunae Miller","nationality":"BAH","sex":"female","date_of_birth":"1994-04-15T00:00:00.000Z","height":1.85,"weight":69,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":891682431,"name":"Shavez Hart","nationality":"BAH","sex":"male","date_of_birth":"1992-09-06T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":421736590,"name":"Shawn Dingilius-Wallace","nationality":"PLW","sex":"male","date_of_birth":"1994-07-26T00:00:00.000Z","height":1.84,"weight":93,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":239879514,"name":"Shawnacy Barber","nationality":"CAN","sex":"male","date_of_birth":"1994-05-27T00:00:00.000Z","height":1.87,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":906208615,"name":"Shay Neal","nationality":"NZL","sex":"male","date_of_birth":"1990-06-04T00:00:00.000Z","height":1.76,"weight":75,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":988651056,"name":"Shea McALEESE","nationality":"NZL","sex":"male","date_of_birth":"1984-08-07T00:00:00.000Z","height":1.77,"weight":82,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":798829173,"name":"Shehzana Anwar","nationality":"KEN","sex":"female","date_of_birth":"1989-08-21T00:00:00.000Z","height":1.6,"weight":55,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":70622338,"name":"Sheikh Ali Al Thani","nationality":"QAT","sex":"male","date_of_birth":"1982-09-01T00:00:00.000Z","height":1.94,"weight":73,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":323305837,"name":"Sheila Chajira","nationality":"KEN","sex":"female","date_of_birth":"1993-12-20T00:00:00.000Z","height":1.65,"weight":73,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":148122474,"name":"Sheila Makoto","nationality":"ZIM","sex":"female","date_of_birth":"1990-01-14T00:00:00.000Z","height":1.58,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":994348153,"name":"Sheilla Castro de Paula Blassioli","nationality":"BRA","sex":"female","date_of_birth":"1983-07-01T00:00:00.000Z","height":1.85,"weight":65,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":"A fundamental player in the gold medal-winning Brazilian team at Beijing 2008 and London 2012, opposite spiker Sheilla holds seven Grand Prix titles (the most recent from July 2016) and two world championship silvers."},{"id":3895186,"name":"Shelayna Oskan-Clarke","nationality":"GBR","sex":"female","date_of_birth":"1990-01-20T00:00:00.000Z","height":1.72,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":586628246,"name":"Shelbi Vaughan","nationality":"USA","sex":"female","date_of_birth":"1994-08-24T00:00:00.000Z","height":1.83,"weight":127,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":362859708,"name":"Shelby Houlihan","nationality":"USA","sex":"female","date_of_birth":"1993-02-08T00:00:00.000Z","height":1.61,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":963097425,"name":"Shelina Zadorsky","nationality":"CAN","sex":"female","date_of_birth":"1992-10-24T00:00:00.000Z","height":1.72,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":425110382,"name":"Shelley Marie Watts","nationality":"AUS","sex":"female","date_of_birth":"1987-08-10T00:00:00.000Z","height":1.64,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":80192943,"name":"Shelly Francis","nationality":"USA","sex":"female","date_of_birth":"1958-12-16T00:00:00.000Z","height":1.58,"weight":65,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":422183350,"name":"Shelly-Ann Fraser-Pryce","nationality":"JAM","sex":"female","date_of_birth":"1986-12-27T00:00:00.000Z","height":1.52,"weight":57,"sport":"athletics","gold":0,"silver":1,"bronze":1,"info":"Seven-time gold medalist in the world championship, Jamaica's Shelly-Ann Fraser Pryce also won gold at the past two Olympic Games in athletics’ fastest and most high-profile race: the 100m. At London 2012, she also took silver in the 200m and 4x100m relay"},{"id":256335420,"name":"Sheng Lei","nationality":"CHN","sex":"male","date_of_birth":"1984-03-07T00:00:00.000Z","height":1.93,"weight":77,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":830512513,"name":"Sheng Mu Lee","nationality":"TPE","sex":"male","date_of_birth":"1986-10-03T00:00:00.000Z","height":1.79,"weight":71,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":551099828,"name":"Shengbo Zhao","nationality":"CHN","sex":"male","date_of_birth":"1982-04-14T00:00:00.000Z","height":1.75,"weight":81,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":693828504,"name":"Shengfeng Bi","nationality":"CHN","sex":"male","date_of_birth":"1989-01-28T00:00:00.000Z","height":1.83,"weight":87,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":94758945,"name":"Sheniqua Ferguson","nationality":"BAH","sex":"female","date_of_birth":"1989-11-24T00:00:00.000Z","height":1.71,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":451530720,"name":"Sherali Juraev","nationality":"UZB","sex":"male","date_of_birth":"1986-12-13T00:00:00.000Z","height":1.82,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":225168499,"name":"Shericka Jackson","nationality":"JAM","sex":"female","date_of_birth":"1994-07-16T00:00:00.000Z","height":1.73,"weight":61,"sport":"athletics","gold":0,"silver":1,"bronze":1,"info":null},{"id":352645279,"name":"Sherine Elzeiny","nationality":"EGY","sex":"female","date_of_birth":"1991-02-23T00:00:00.000Z","height":1.6,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":781234683,"name":"Sherko Kareem","nationality":"IRQ","sex":"male","date_of_birth":"1996-05-25T00:00:00.000Z","height":1.74,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":739754145,"name":"Shermaine Williams","nationality":"JAM","sex":"female","date_of_birth":"1990-02-04T00:00:00.000Z","height":1.76,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":162371447,"name":"Shih-Chia Lin","nationality":"TPE","sex":"female","date_of_birth":"1993-05-20T00:00:00.000Z","height":1.65,"weight":63,"sport":"archery","gold":0,"silver":0,"bronze":1,"info":null},{"id":316407203,"name":"Shih-Chieh Chen","nationality":"TPE","sex":"male","date_of_birth":"1989-11-27T00:00:00.000Z","height":1.9,"weight":152,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":638278169,"name":"Shih-Feng Huang","nationality":"TPE","sex":"male","date_of_birth":"1992-03-02T00:00:00.000Z","height":1.78,"weight":88,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":719261791,"name":"Shiho Nishioka","nationality":"JPN","sex":"female","date_of_birth":"1989-02-23T00:00:00.000Z","height":1.69,"weight":60,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":2696635,"name":"Shiho Oyama","nationality":"JPN","sex":"female","date_of_birth":"1977-05-25T00:00:00.000Z","height":1.68,"weight":62,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":450566696,"name":"Shijia Wang","nationality":"CHN","sex":"female","date_of_birth":"1993-08-25T00:00:00.000Z","height":1.74,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":139152565,"name":"Shijie Qieyang","nationality":"CHN","sex":"female","date_of_birth":"1990-11-11T00:00:00.000Z","height":1.6,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":48818974,"name":"Shimaa Hashad","nationality":"EGY","sex":"female","date_of_birth":"1981-04-21T00:00:00.000Z","height":1.66,"weight":57,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":702145103,"name":"Shingo Katayama","nationality":"JPN","sex":"male","date_of_birth":"1973-01-31T00:00:00.000Z","height":1.71,"weight":72,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":814685422,"name":"Shinnosuke Nakatani","nationality":"JPN","sex":"male","date_of_birth":"1996-03-24T00:00:00.000Z","height":1.84,"weight":79,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":213190977,"name":"Shinobu Ota","nationality":"JPN","sex":"male","date_of_birth":"1993-12-28T00:00:00.000Z","height":1.65,"weight":65,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":169399991,"name":"Shinri Shioura","nationality":"JPN","sex":"male","date_of_birth":"1991-11-26T00:00:00.000Z","height":1.88,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":224547831,"name":"Shinya Yajima","nationality":"JPN","sex":"male","date_of_birth":"1994-01-18T00:00:00.000Z","height":1.71,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":979127201,"name":"Shinzo Koroki","nationality":"JPN","sex":"male","date_of_birth":"1986-07-31T00:00:00.000Z","height":1.75,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":109446999,"name":"Shira Rishony","nationality":"ISR","sex":"female","date_of_birth":"1991-02-21T00:00:00.000Z","height":1.5,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":229032173,"name":"Shirin Akter","nationality":"BAN","sex":"female","date_of_birth":"1994-10-12T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":200540934,"name":"Shitaye Eshete","nationality":"BRN","sex":"female","date_of_birth":"1990-05-21T00:00:00.000Z","height":1.64,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":652257369,"name":"Shiva Thapa","nationality":"IND","sex":"male","date_of_birth":"1993-12-08T00:00:00.000Z","height":1.69,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":476256445,"name":"Shivani Shivani","nationality":"IND","sex":"female","date_of_birth":"1997-09-27T00:00:00.000Z","height":1.63,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":720527022,"name":"Shiwe Nogwanya","nationality":"RSA","sex":"female","date_of_birth":"1994-03-07T00:00:00.000Z","height":1.68,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":207795938,"name":"Shiwen Liu","nationality":"CHN","sex":"female","date_of_birth":"1991-04-12T00:00:00.000Z","height":1.6,"weight":54,"sport":"table tennis","gold":1,"silver":0,"bronze":0,"info":null},{"id":538468544,"name":"Shiwen Ye","nationality":"CHN","sex":"female","date_of_birth":"1996-03-01T00:00:00.000Z","height":1.72,"weight":71,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":"Aged only 16, China's Ye Shiwen made history at London 2012 by winning two gold medals – in the 200m and 400m medleys – and setting new Olympic and world records to boot."},{"id":36387534,"name":"Shiying Liu","nationality":"CHN","sex":"female","date_of_birth":"1993-09-24T00:00:00.000Z","height":1.79,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":880751102,"name":"Shlomi Haimy","nationality":"ISR","sex":"male","date_of_birth":"1989-06-19T00:00:00.000Z","height":1.67,"weight":58,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":522662655,"name":"Shmagi Bolkvadze","nationality":"GEO","sex":"male","date_of_birth":"1994-07-26T00:00:00.000Z","height":1.7,"weight":66,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":629603163,"name":"Sho Kawamoto","nationality":"JPN","sex":"male","date_of_birth":"1993-03-01T00:00:00.000Z","height":1.75,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":964540128,"name":"Sho Sakai","nationality":"JPN","sex":"male","date_of_birth":"1992-08-22T00:00:00.000Z","height":1.71,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":189386940,"name":"Sho Sasaki","nationality":"JPN","sex":"male","date_of_birth":"1982-06-30T00:00:00.000Z","height":1.72,"weight":74,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":691508623,"name":"Shohei Iwamoto","nationality":"JPN","sex":"male","date_of_birth":"1989-08-23T00:00:00.000Z","height":1.78,"weight":68,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":784767531,"name":"Shohei Ono","nationality":"JPN","sex":"male","date_of_birth":"1992-02-03T00:00:00.000Z","height":1.7,"weight":73,"sport":"judo","gold":1,"silver":0,"bronze":0,"info":null},{"id":474547184,"name":"Shohei Toyoshima","nationality":"JPN","sex":"male","date_of_birth":"1989-01-09T00:00:00.000Z","height":1.75,"weight":87,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":976460404,"name":"Shona McCALLIN","nationality":"GBR","sex":"female","date_of_birth":"1992-05-18T00:00:00.000Z","height":1.65,"weight":69,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":920840087,"name":"Shona Thorburn","nationality":"CAN","sex":"female","date_of_birth":"1982-08-07T00:00:00.000Z","height":1.75,"weight":70,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":119951308,"name":"Shota Hazui","nationality":"JPN","sex":"male","date_of_birth":"1986-09-30T00:00:00.000Z","height":1.77,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":592468462,"name":"Shota Iizuka","nationality":"JPN","sex":"male","date_of_birth":"1991-06-25T00:00:00.000Z","height":1.85,"weight":80,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":765026590,"name":"Shota Sasaki","nationality":"JPN","sex":"male","date_of_birth":"1993-01-10T00:00:00.000Z","height":1.65,"weight":64,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":752540261,"name":"Shoya Nakajima","nationality":"JPN","sex":"male","date_of_birth":"1994-08-23T00:00:00.000Z","height":1.64,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":778116508,"name":"Shu-Ching Hsu","nationality":"TPE","sex":"female","date_of_birth":"1991-05-09T00:00:00.000Z","height":1.6,"weight":53,"sport":"weightlifting","gold":1,"silver":0,"bronze":0,"info":null},{"id":129298920,"name":"Shuai Peng","nationality":"CHN","sex":"female","date_of_birth":"1986-01-08T00:00:00.000Z","height":1.73,"weight":65,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":179157979,"name":"Shuai Zhang","nationality":"CHN","sex":"female","date_of_birth":"1989-01-21T00:00:00.000Z","height":1.77,"weight":66,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":990347414,"name":"Shuai Zhao","nationality":"CHN","sex":"male","date_of_birth":"1995-08-15T00:00:00.000Z","height":1.88,"weight":63,"sport":"taekwondo","gold":1,"silver":0,"bronze":0,"info":null},{"id":72738698,"name":"Shuang Wang","nationality":"CHN","sex":"female","date_of_birth":"1995-01-23T00:00:00.000Z","height":1.65,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":843868379,"name":"Shudi Deng","nationality":"CHN","sex":"male","date_of_birth":"1991-09-10T00:00:00.000Z","height":1.63,"weight":58,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":293576739,"name":"Shuijiao Wu","nationality":"CHN","sex":"female","date_of_birth":"1991-06-19T00:00:00.000Z","height":1.61,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":972669681,"name":"Shun Wang","nationality":"CHN","sex":"male","date_of_birth":"1994-02-11T00:00:00.000Z","height":1.91,"weight":81,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":285629214,"name":"Shun Xie Teo","nationality":"SIN","sex":"female","date_of_birth":"1988-09-30T00:00:00.000Z","height":1.68,"weight":63,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":833912254,"name":"Shuo Cao","nationality":"CHN","sex":"male","date_of_birth":"1991-10-08T00:00:00.000Z","height":1.8,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":389167708,"name":"Shuyin Zheng","nationality":"CHN","sex":"female","date_of_birth":"1994-05-01T00:00:00.000Z","height":1.88,"weight":75,"sport":"taekwondo","gold":1,"silver":0,"bronze":0,"info":null},{"id":126862439,"name":"Si Mohamed Ketbi","nationality":"BEL","sex":"male","date_of_birth":"1997-12-27T00:00:00.000Z","height":1.8,"weight":62,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":676275478,"name":"Siarhei Kalamoyets","nationality":"BLR","sex":"male","date_of_birth":"1989-08-11T00:00:00.000Z","height":1.92,"weight":110,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":512714002,"name":"Sibusiso Matsenjwa","nationality":"SWZ","sex":"male","date_of_birth":"1988-05-02T00:00:00.000Z","height":1.8,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":433307287,"name":"Sibusiso Nzima","nationality":"RSA","sex":"male","date_of_birth":"1986-11-23T00:00:00.000Z","height":1.64,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":873507500,"name":"Sid Ali Boudina","nationality":"ALG","sex":"male","date_of_birth":"1990-05-07T00:00:00.000Z","height":1.78,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":171735366,"name":"Siddikur Rahman","nationality":"BAN","sex":"male","date_of_birth":"1984-11-20T00:00:00.000Z","height":1.65,"weight":69,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":696400766,"name":"Sideris Tasiadis","nationality":"GER","sex":"male","date_of_birth":"1990-05-07T00:00:00.000Z","height":1.79,"weight":79,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":997380920,"name":"Sidni Hoxha","nationality":"ALB","sex":"male","date_of_birth":"1992-06-01T00:00:00.000Z","height":1.93,"weight":87,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":649779074,"name":"Sifan Hassan","nationality":"NED","sex":"female","date_of_birth":"1993-01-01T00:00:00.000Z","height":1.7,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":219470376,"name":"Signe Marie Fidge Store","nationality":"NOR","sex":"female","date_of_birth":"1995-08-23T00:00:00.000Z","height":null,"weight":null,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":794983348,"name":"Siham Hilali","nationality":"MAR","sex":"female","date_of_birth":"1986-05-02T00:00:00.000Z","height":1.6,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":299706553,"name":"Sijing Huang","nationality":"CHN","sex":"female","date_of_birth":"1996-01-08T00:00:00.000Z","height":1.9,"weight":82,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":726164746,"name":"Siling Yi","nationality":"CHN","sex":"female","date_of_birth":"1989-05-06T00:00:00.000Z","height":1.65,"weight":51,"sport":"shooting","gold":0,"silver":0,"bronze":1,"info":null},{"id":486158932,"name":"Silvan Dillier","nationality":"SUI","sex":"male","date_of_birth":"1990-08-03T00:00:00.000Z","height":1.83,"weight":73,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":74936467,"name":"Silvano Chesani","nationality":"ITA","sex":"male","date_of_birth":"1988-07-17T00:00:00.000Z","height":1.91,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":348354377,"name":"Silvia Dominguez","nationality":"ESP","sex":"female","date_of_birth":"1987-01-31T00:00:00.000Z","height":1.67,"weight":64,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":84714321,"name":"Silvia Navarro","nationality":"ESP","sex":"female","date_of_birth":"1979-03-20T00:00:00.000Z","height":1.69,"weight":62,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":523095646,"name":"Silvia Paredes","nationality":"ECU","sex":"female","date_of_birth":"1983-01-23T00:00:00.000Z","height":1.64,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":85492860,"name":"Silvia Sicouri","nationality":"ITA","sex":"female","date_of_birth":"1987-09-27T00:00:00.000Z","height":1.72,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":688147154,"name":"Silvia Valsecchi","nationality":"ITA","sex":"female","date_of_birth":"1982-07-19T00:00:00.000Z","height":1.6,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":978974427,"name":"Silvia Zennaro","nationality":"ITA","sex":"female","date_of_birth":"1989-10-26T00:00:00.000Z","height":1.68,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":593049053,"name":"Silvia di Pietro","nationality":"ITA","sex":"female","date_of_birth":"1993-04-06T00:00:00.000Z","height":1.68,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":856209845,"name":"Silvija Popovic","nationality":"SRB","sex":"female","date_of_birth":"1986-03-15T00:00:00.000Z","height":1.78,"weight":65,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":875603204,"name":"Silvio Fernandez","nationality":"VEN","sex":"male","date_of_birth":"1979-01-09T00:00:00.000Z","height":1.9,"weight":80,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":593561790,"name":"Silvio Heinevetter","nationality":"GER","sex":"male","date_of_birth":"1984-10-21T00:00:00.000Z","height":1.94,"weight":99,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":506472821,"name":"Sime Fantela","nationality":"CRO","sex":"male","date_of_birth":"1986-01-19T00:00:00.000Z","height":1.83,"weight":67,"sport":"sailing","gold":1,"silver":0,"bronze":0,"info":null},{"id":578898700,"name":"Simeon Chamov","nationality":"BUL","sex":"male","date_of_birth":"1990-12-24T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":160713644,"name":"Simione Tamanisau","nationality":"FIJ","sex":"male","date_of_birth":"1982-06-05T00:00:00.000Z","height":1.87,"weight":88,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":242744402,"name":"Simon Andreassen","nationality":"DEN","sex":"male","date_of_birth":"1997-09-30T00:00:00.000Z","height":1.77,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":511053729,"name":"Simon Child","nationality":"NZL","sex":"male","date_of_birth":"1988-04-16T00:00:00.000Z","height":1.86,"weight":80,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":910071832,"name":"Simon Clarke","nationality":"AUS","sex":"male","date_of_birth":"1986-07-18T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":948358366,"name":"Simon Gauzy","nationality":"FRA","sex":"male","date_of_birth":"1994-10-25T00:00:00.000Z","height":1.82,"weight":77,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":585225700,"name":"Simon Geschke","nationality":"GER","sex":"male","date_of_birth":"1986-03-13T00:00:00.000Z","height":1.7,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":828900284,"name":"Simon Gougnard","nationality":"BEL","sex":"male","date_of_birth":"1991-01-17T00:00:00.000Z","height":1.87,"weight":84,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":32628932,"name":"Simon Mantell","nationality":"GBR","sex":"male","date_of_birth":"1984-04-24T00:00:00.000Z","height":1.84,"weight":81,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":618197194,"name":"Simon Martirosyan","nationality":"ARM","sex":"male","date_of_birth":"1997-02-17T00:00:00.000Z","height":1.81,"weight":105,"sport":"weightlifting","gold":0,"silver":1,"bronze":0,"info":null},{"id":894353536,"name":"Simon Niepmann","nationality":"SUI","sex":"male","date_of_birth":"1985-08-02T00:00:00.000Z","height":1.8,"weight":71,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":572516555,"name":"Simon Orchard","nationality":"AUS","sex":"male","date_of_birth":"1986-07-09T00:00:00.000Z","height":1.86,"weight":82,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":129979130,"name":"Simon Razgor","nationality":"SLO","sex":"male","date_of_birth":"1985-09-18T00:00:00.000Z","height":1.83,"weight":82,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":37763336,"name":"Simon Schuerch","nationality":"SUI","sex":"male","date_of_birth":"1990-12-02T00:00:00.000Z","height":1.86,"weight":75,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":671775159,"name":"Simon Sjodin","nationality":"SWE","sex":"male","date_of_birth":"1986-10-04T00:00:00.000Z","height":1.92,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":568958895,"name":"Simon Spilak","nationality":"SLO","sex":"male","date_of_birth":"1986-06-23T00:00:00.000Z","height":1.77,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":673967464,"name":"Simon Tibbling","nationality":"SWE","sex":"male","date_of_birth":"1994-09-07T00:00:00.000Z","height":1.74,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":674891863,"name":"Simon Wachira","nationality":"KEN","sex":"male","date_of_birth":"1984-05-06T00:00:00.000Z","height":1.7,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":137917095,"name":"Simon Werro","nationality":"SUI","sex":"male","date_of_birth":"1989-12-09T00:00:00.000Z","height":1.78,"weight":74,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":848550090,"name":"Simon Yacoub","nationality":"PLE","sex":"male","date_of_birth":"1989-06-09T00:00:00.000Z","height":1.66,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":727296883,"name":"Simona Baumrtova","nationality":"CZE","sex":"female","date_of_birth":"1991-08-24T00:00:00.000Z","height":1.76,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":422875239,"name":"Simona Castro","nationality":"CHI","sex":"female","date_of_birth":"1989-01-11T00:00:00.000Z","height":1.6,"weight":54,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":901255564,"name":"Simona Frapporti","nationality":"ITA","sex":"female","date_of_birth":"1988-07-14T00:00:00.000Z","height":1.77,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":617360976,"name":"Simona Gherman","nationality":"ROU","sex":"female","date_of_birth":"1985-04-12T00:00:00.000Z","height":1.7,"weight":58,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":626251390,"name":"Simona Krupeckaite","nationality":"LTU","sex":"female","date_of_birth":"1982-12-13T00:00:00.000Z","height":1.7,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":871511987,"name":"Simona Pop","nationality":"ROU","sex":"female","date_of_birth":"1988-12-25T00:00:00.000Z","height":1.78,"weight":62,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":481317414,"name":"Simonas Bilis","nationality":"LTU","sex":"male","date_of_birth":"1993-11-11T00:00:00.000Z","height":1.98,"weight":100,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":770111957,"name":"Simone Biles","nationality":"USA","sex":"female","date_of_birth":"1997-03-14T00:00:00.000Z","height":1.45,"weight":47,"sport":"gymnastics","gold":4,"silver":0,"bronze":1,"info":"With the most world championship artistic gymnastics medals for the USA (14 in all, 10 of which are gold), Simone Biles won three consecutive titles in the general individual and three golds for the floor, two in the bars and two from team events."},{"id":718132328,"name":"Simone Buti","nationality":"ITA","sex":"male","date_of_birth":"1983-09-19T00:00:00.000Z","height":2.06,"weight":100,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":303317190,"name":"Simone Christensen","nationality":"DEN","sex":"female","date_of_birth":"1994-02-10T00:00:00.000Z","height":1.7,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":218481152,"name":"Simone Consonni","nationality":"ITA","sex":"male","date_of_birth":"1994-09-12T00:00:00.000Z","height":1.65,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":322780969,"name":"Simone Facey","nationality":"JAM","sex":"female","date_of_birth":"1985-05-07T00:00:00.000Z","height":1.62,"weight":53,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":253019440,"name":"Simone Giannelli","nationality":"ITA","sex":"male","date_of_birth":"1996-08-09T00:00:00.000Z","height":1.98,"weight":92,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":286644337,"name":"Simone Laudehr","nationality":"GER","sex":"female","date_of_birth":"1986-07-12T00:00:00.000Z","height":1.74,"weight":56,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":973414226,"name":"Simone Manuel","nationality":"USA","sex":"female","date_of_birth":"1996-08-02T00:00:00.000Z","height":1.78,"weight":72,"sport":"aquatics","gold":2,"silver":2,"bronze":0,"info":null},{"id":195420370,"name":"Simone Ruffini","nationality":"ITA","sex":"male","date_of_birth":"1989-12-07T00:00:00.000Z","height":1.73,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":392271182,"name":"Simone Sabbioni","nationality":"ITA","sex":"male","date_of_birth":"1996-10-03T00:00:00.000Z","height":1.85,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":828729175,"name":"Simone Venier","nationality":"ITA","sex":"male","date_of_birth":"1984-08-26T00:00:00.000Z","height":1.96,"weight":94,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":166532911,"name":"Simoya Campbell","nationality":"JAM","sex":"female","date_of_birth":"1994-03-01T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":203750302,"name":"Simplice Fotsala","nationality":"CMR","sex":"male","date_of_birth":"1989-05-09T00:00:00.000Z","height":1.54,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":520685692,"name":"Simplice Ribouem","nationality":"AUS","sex":"male","date_of_birth":"1982-12-05T00:00:00.000Z","height":1.73,"weight":93,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":199944745,"name":"Sin Lam Sonia Lo","nationality":"HKG","sex":"female","date_of_birth":"1992-12-18T00:00:00.000Z","height":1.66,"weight":59,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":131138737,"name":"Sina Tkaltschewitsch","nationality":"GER","sex":"female","date_of_birth":"1999-05-05T00:00:00.000Z","height":1.6,"weight":44,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":703661440,"name":"Sinead Lynch","nationality":"IRL","sex":"female","date_of_birth":"1976-09-30T00:00:00.000Z","height":1.72,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":303411588,"name":"Sinphet Kruaithong","nationality":"THA","sex":"male","date_of_birth":"1995-08-22T00:00:00.000Z","height":1.59,"weight":55,"sport":"weightlifting","gold":0,"silver":0,"bronze":1,"info":null},{"id":434262676,"name":"Sinta Ozolina","nationality":"LAT","sex":"female","date_of_birth":"1988-02-26T00:00:00.000Z","height":1.86,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":313529097,"name":"Siobhan Haughey","nationality":"HKG","sex":"female","date_of_birth":"1997-10-31T00:00:00.000Z","height":1.77,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":306151586,"name":"Siobhan-Marie O'Connor","nationality":"GBR","sex":"female","date_of_birth":"1995-11-29T00:00:00.000Z","height":1.73,"weight":64,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":543220260,"name":"Sione Molia","nationality":"NZL","sex":"male","date_of_birth":"1993-09-05T00:00:00.000Z","height":1.86,"weight":95,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":498918427,"name":"Siraba Dembele","nationality":"FRA","sex":"female","date_of_birth":"1986-06-28T00:00:00.000Z","height":1.72,"weight":64,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":112175885,"name":"Siri Arun Budcharern","nationality":"LAO","sex":"female","date_of_birth":"2002-01-12T00:00:00.000Z","height":1.66,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":541913883,"name":"Siripon Kaewduang-Ngam","nationality":"THA","sex":"female","date_of_birth":"1994-07-27T00:00:00.000Z","height":1.67,"weight":50,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":928639539,"name":"Siripuch Gulnoi","nationality":"THA","sex":"female","date_of_birth":"1993-07-17T00:00:00.000Z","height":1.57,"weight":63,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":274861509,"name":"Sirish Gurung","nationality":"NEP","sex":"male","date_of_birth":"1998-08-11T00:00:00.000Z","height":1.58,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":100364594,"name":"Sisila Seavula","nationality":"FIJ","sex":"female","date_of_birth":"1995-11-15T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":983890439,"name":"Sitora Hamidova","nationality":"UZB","sex":"female","date_of_birth":"1989-05-12T00:00:00.000Z","height":1.64,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":374168059,"name":"Siueni Filimone","nationality":"TGA","sex":"male","date_of_birth":"1994-08-19T00:00:00.000Z","height":1.73,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":740126529,"name":"Siyao Shu","nationality":"CHN","sex":"female","date_of_birth":"1992-09-12T00:00:00.000Z","height":1.67,"weight":52,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":325216838,"name":"Sjef van den Berg","nationality":"NED","sex":"male","date_of_birth":"1995-04-14T00:00:00.000Z","height":1.83,"weight":75,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":230251479,"name":"Sladana Perunovic","nationality":"MNE","sex":"female","date_of_birth":"1984-03-26T00:00:00.000Z","height":1.7,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":399380442,"name":"Slawomir Szmal","nationality":"POL","sex":"male","date_of_birth":"1978-10-02T00:00:00.000Z","height":1.86,"weight":96,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":564349535,"name":"Sloane Stephens","nationality":"USA","sex":"female","date_of_birth":"1993-03-20T00:00:00.000Z","height":1.73,"weight":64,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":682518926,"name":"Slobodan Nikic","nationality":"SRB","sex":"male","date_of_birth":"1983-01-25T00:00:00.000Z","height":1.97,"weight":106,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":466638845,"name":"Slobodan Soro","nationality":"BRA","sex":"male","date_of_birth":"1978-12-23T00:00:00.000Z","height":1.96,"weight":100,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":655259381,"name":"Snjezana Pejcic","nationality":"CRO","sex":"female","date_of_birth":"1982-07-13T00:00:00.000Z","height":1.7,"weight":75,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":826022649,"name":"So Hee Lee","nationality":"KOR","sex":"female","date_of_birth":"1994-06-14T00:00:00.000Z","height":1.71,"weight":67,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":33975954,"name":"Sobhi Saied","nationality":"TUN","sex":"male","date_of_birth":"1982-09-26T00:00:00.000Z","height":1.86,"weight":86,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":522422287,"name":"Sofia Andreeva","nationality":"RUS","sex":"female","date_of_birth":"1998-08-02T00:00:00.000Z","height":1.78,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":615348545,"name":"Sofia Asoumanaki","nationality":"GRE","sex":"female","date_of_birth":"1997-05-25T00:00:00.000Z","height":1.9,"weight":85,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":863853337,"name":"Sofia Assefa","nationality":"ETH","sex":"female","date_of_birth":"1987-11-14T00:00:00.000Z","height":1.67,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":173744013,"name":"Sofia Bekatorou","nationality":"GRE","sex":"female","date_of_birth":"1977-12-26T00:00:00.000Z","height":1.72,"weight":62,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":236027852,"name":"Sofia Ennaoui","nationality":"POL","sex":"female","date_of_birth":"1995-08-30T00:00:00.000Z","height":1.58,"weight":42,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":149127920,"name":"Sofia Jakobsson","nationality":"SWE","sex":"female","date_of_birth":"1990-04-23T00:00:00.000Z","height":1.74,"weight":64,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":989432081,"name":"Sofia Lodi","nationality":"ITA","sex":"female","date_of_birth":"1998-01-29T00:00:00.000Z","height":1.75,"weight":57,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":669523830,"name":"Sofia Magdalena Mattsson","nationality":"SWE","sex":"female","date_of_birth":"1989-11-11T00:00:00.000Z","height":1.64,"weight":56,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":419623115,"name":"Sofia Middleton","nationality":"CHI","sex":"female","date_of_birth":"1993-03-12T00:00:00.000Z","height":1.68,"weight":60,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":655552398,"name":"Sofia Paldanius","nationality":"SWE","sex":"female","date_of_birth":"1979-03-16T00:00:00.000Z","height":1.85,"weight":75,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":910335212,"name":"Sofia Polcanova","nationality":"AUT","sex":"female","date_of_birth":"1994-09-03T00:00:00.000Z","height":1.81,"weight":69,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":955206552,"name":"Sofia Riga","nationality":"GRE","sex":"female","date_of_birth":"1988-07-18T00:00:00.000Z","height":1.54,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":322339558,"name":"Sofia Rito","nationality":"URU","sex":"female","date_of_birth":"1985-11-02T00:00:00.000Z","height":1.55,"weight":52,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":638320031,"name":"Sofia Sanchez","nationality":"ARG","sex":"female","date_of_birth":"1989-08-23T00:00:00.000Z","height":1.67,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":459418489,"name":"Sofia Yfantidou","nationality":"GRE","sex":"female","date_of_birth":"1985-01-10T00:00:00.000Z","height":1.62,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":561413034,"name":"Sofian Bouvet","nationality":"FRA","sex":"male","date_of_birth":"1989-06-02T00:00:00.000Z","height":1.73,"weight":63,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":245506454,"name":"Sofiane Bendebka","nationality":"ALG","sex":"male","date_of_birth":"1992-08-09T00:00:00.000Z","height":1.7,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":496243437,"name":"Sofiane Guitone","nationality":"FRA","sex":"male","date_of_birth":"1989-03-27T00:00:00.000Z","height":1.86,"weight":null,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":147169766,"name":"Sofiane Oumiha","nationality":"FRA","sex":"male","date_of_birth":"1994-12-23T00:00:00.000Z","height":1.74,"weight":null,"sport":"boxing","gold":0,"silver":1,"bronze":0,"info":null},{"id":342412966,"name":"Sofie Skoog","nationality":"SWE","sex":"female","date_of_birth":"1990-06-07T00:00:00.000Z","height":1.81,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":832285116,"name":"Sofya Velikaya","nationality":"RUS","sex":"female","date_of_birth":"1985-06-08T00:00:00.000Z","height":1.75,"weight":70,"sport":"fencing","gold":1,"silver":1,"bronze":0,"info":null},{"id":476545490,"name":"Sohrab Moradi","nationality":"IRI","sex":"male","date_of_birth":"1988-09-22T00:00:00.000Z","height":1.7,"weight":94,"sport":"weightlifting","gold":1,"silver":0,"bronze":0,"info":null},{"id":781502405,"name":"Sohsuke Takatani","nationality":"JPN","sex":"male","date_of_birth":"1989-04-05T00:00:00.000Z","height":1.78,"weight":81,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":555728322,"name":"Sohui Kim","nationality":"KOR","sex":"female","date_of_birth":"1994-01-29T00:00:00.000Z","height":1.64,"weight":50,"sport":"taekwondo","gold":1,"silver":0,"bronze":0,"info":null},{"id":34827497,"name":"Sojeong Yu","nationality":"KOR","sex":"female","date_of_birth":"1996-06-04T00:00:00.000Z","height":1.68,"weight":66,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":137006196,"name":"Sol Mi Kim","nationality":"PRK","sex":"female","date_of_birth":"1990-11-20T00:00:00.000Z","height":1.55,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":833656877,"name":"Solangie Delgado","nationality":"COL","sex":"female","date_of_birth":"1989-11-09T00:00:00.000Z","height":1.55,"weight":57,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":381575371,"name":"Solomon Bockarie","nationality":"NED","sex":"male","date_of_birth":"1987-05-18T00:00:00.000Z","height":1.71,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":504624644,"name":"Solonei da Silva","nationality":"BRA","sex":"male","date_of_birth":"1982-04-18T00:00:00.000Z","height":1.72,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":213271655,"name":"Sona Bernardova","nationality":"CZE","sex":"female","date_of_birth":"1976-02-02T00:00:00.000Z","height":1.67,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":51596305,"name":"Sona Poghosyan","nationality":"ARM","sex":"female","date_of_birth":"1998-06-29T00:00:00.000Z","height":1.58,"weight":73,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":359534607,"name":"Sonchat Ratiwatana","nationality":"THA","sex":"male","date_of_birth":"1982-01-23T00:00:00.000Z","height":1.75,"weight":71,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":956809483,"name":"Sondre Nordstad Moen","nationality":"NOR","sex":"male","date_of_birth":"1991-01-12T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":592878786,"name":"Soner Demirtas","nationality":"TUR","sex":"male","date_of_birth":"1991-06-25T00:00:00.000Z","height":1.7,"weight":74,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":939825627,"name":"Song Gao","nationality":"CHN","sex":"female","date_of_birth":"1992-04-16T00:00:00.000Z","height":1.9,"weight":85,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":614626867,"name":"Song Guk Kim","nationality":"PRK","sex":"male","date_of_birth":"1985-10-05T00:00:00.000Z","height":1.67,"weight":75,"sport":"shooting","gold":0,"silver":0,"bronze":1,"info":null},{"id":822430141,"name":"Song I Kim","nationality":"PRK","sex":"female","date_of_birth":"1994-08-10T00:00:00.000Z","height":1.61,"weight":55,"sport":"table tennis","gold":0,"silver":0,"bronze":1,"info":null},{"id":51012324,"name":"Song Yu","nationality":"CHN","sex":"female","date_of_birth":"1986-08-06T00:00:00.000Z","height":1.82,"weight":128,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":388561246,"name":"Sonia Aktar","nationality":"BAN","sex":"female","date_of_birth":"1997-07-15T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":504175005,"name":"Sonia Asselah","nationality":"ALG","sex":"female","date_of_birth":"1991-08-20T00:00:00.000Z","height":1.76,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":161282037,"name":"Sonia Franquet","nationality":"ESP","sex":"female","date_of_birth":"1980-07-03T00:00:00.000Z","height":1.73,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":171624562,"name":"Sonia Malavisi","nationality":"ITA","sex":"female","date_of_birth":"1994-10-31T00:00:00.000Z","height":1.72,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":856090842,"name":"Sonia Samuels","nationality":"GBR","sex":"female","date_of_birth":"1979-05-16T00:00:00.000Z","height":1.62,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":195523024,"name":"Sonja Barjaktarovic","nationality":"MNE","sex":"female","date_of_birth":"1986-09-11T00:00:00.000Z","height":1.8,"weight":74,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":765900580,"name":"Sonja Petrovic","nationality":"SRB","sex":"female","date_of_birth":"1989-02-18T00:00:00.000Z","height":1.89,"weight":75,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":835642046,"name":"Sonke Rothenberger","nationality":"GER","sex":"male","date_of_birth":"1994-10-14T00:00:00.000Z","height":1.93,"weight":73,"sport":"equestrian","gold":1,"silver":0,"bronze":0,"info":null},{"id":777662103,"name":"Sonny Bill Williams","nationality":"NZL","sex":"male","date_of_birth":"1985-08-03T00:00:00.000Z","height":1.94,"weight":106,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":"Before dedicating himself to rugby, Sonny Bill Williams was a professional heavyweight boxer, winning all six of the fights he competed in. He has won two rugby union world cups for New Zealand."},{"id":698806625,"name":"Sonny Webster","nationality":"GBR","sex":"male","date_of_birth":"1994-03-10T00:00:00.000Z","height":1.78,"weight":94,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":414404484,"name":"Sooji Jang","nationality":"KOR","sex":"female","date_of_birth":"1987-11-21T00:00:00.000Z","height":1.64,"weight":57,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":20275055,"name":"Sophie Ainsworth","nationality":"GBR","sex":"female","date_of_birth":"1989-06-22T00:00:00.000Z","height":1.73,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":346597272,"name":"Sophie Bray","nationality":"GBR","sex":"female","date_of_birth":"1990-05-12T00:00:00.000Z","height":1.64,"weight":58,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":661172330,"name":"Sophie Cocks","nationality":"NZL","sex":"female","date_of_birth":"1994-07-25T00:00:00.000Z","height":1.72,"weight":62,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":972385553,"name":"Sophie Giger","nationality":"SUI","sex":"female","date_of_birth":"1995-12-21T00:00:00.000Z","height":1.68,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":857464664,"name":"Sophie Hansson","nationality":"SWE","sex":"female","date_of_birth":"1998-08-02T00:00:00.000Z","height":1.86,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":426389518,"name":"Sophie Hitchon","nationality":"GBR","sex":"female","date_of_birth":"1991-07-11T00:00:00.000Z","height":1.7,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":123926137,"name":"Sophie Mackenzie","nationality":"NZL","sex":"female","date_of_birth":"1992-03-31T00:00:00.000Z","height":1.72,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":563907426,"name":"Sophie Scheder","nationality":"GER","sex":"female","date_of_birth":"1997-01-07T00:00:00.000Z","height":1.67,"weight":56,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":901973768,"name":"Sophie Schmidt","nationality":"CAN","sex":"female","date_of_birth":"1988-06-28T00:00:00.000Z","height":1.72,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":696322599,"name":"Sophie Souwer","nationality":"NED","sex":"female","date_of_birth":"1987-06-29T00:00:00.000Z","height":1.85,"weight":77,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":379316110,"name":"Sophie van Gestel","nationality":"NED","sex":"female","date_of_birth":"1991-06-29T00:00:00.000Z","height":1.78,"weight":69,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":562244040,"name":"Sopita Tanasan","nationality":"THA","sex":"female","date_of_birth":"1994-12-23T00:00:00.000Z","height":1.54,"weight":48,"sport":"weightlifting","gold":1,"silver":0,"bronze":0,"info":null},{"id":433864898,"name":"Sopuruchi Dimgba","nationality":"NGR","sex":"male","date_of_birth":"1993-03-29T00:00:00.000Z","height":1.68,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":802550899,"name":"Soren Dahl","nationality":"DEN","sex":"male","date_of_birth":"1993-07-15T00:00:00.000Z","height":1.93,"weight":86,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":602705126,"name":"Soren Kjeldsen","nationality":"DEN","sex":"male","date_of_birth":"1975-05-17T00:00:00.000Z","height":1.7,"weight":72,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":510174906,"name":"Soren Opti","nationality":"SUR","sex":"male","date_of_birth":"1997-05-16T00:00:00.000Z","height":null,"weight":null,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":46541795,"name":"Soslan Daurov","nationality":"BLR","sex":"male","date_of_birth":"1991-01-15T00:00:00.000Z","height":1.64,"weight":60,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":65014090,"name":"Soslan Ramonov","nationality":"RUS","sex":"male","date_of_birth":"1991-01-01T00:00:00.000Z","height":1.7,"weight":65,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":303196371,"name":"Soso Tamarau","nationality":"NGR","sex":"male","date_of_birth":"1984-05-16T00:00:00.000Z","height":1.67,"weight":97,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":724287824,"name":"Sosthene Moguenara","nationality":"GER","sex":"female","date_of_birth":"1989-10-17T00:00:00.000Z","height":1.8,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":992931470,"name":"Sotheara Chov","nationality":"CAM","sex":"female","date_of_birth":"1983-10-10T00:00:00.000Z","height":1.55,"weight":48,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":370269631,"name":"Sotiria Neofytou","nationality":"CYP","sex":"female","date_of_birth":"1998-04-23T00:00:00.000Z","height":1.65,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":388952499,"name":"Souad Ait Salem","nationality":"ALG","sex":"female","date_of_birth":"1979-01-06T00:00:00.000Z","height":1.58,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":767205811,"name":"Soufiane Elbakkali","nationality":"MAR","sex":"male","date_of_birth":"1996-01-07T00:00:00.000Z","height":1.88,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":64329847,"name":"Soufiane Haddi","nationality":"MAR","sex":"male","date_of_birth":"1991-02-02T00:00:00.000Z","height":1.69,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":856037002,"name":"Soufiyan Bouqantar","nationality":"MAR","sex":"male","date_of_birth":"1993-08-30T00:00:00.000Z","height":1.73,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":306264862,"name":"Soukphaxay Sithisane","nationality":"LAO","sex":"male","date_of_birth":"1996-05-01T00:00:00.000Z","height":null,"weight":null,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":276345240,"name":"Soule Soilihi Athoumane","nationality":"COM","sex":"male","date_of_birth":"1991-03-30T00:00:00.000Z","height":1.8,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":298080547,"name":"Souleymane Diop Cissokho","nationality":"FRA","sex":"male","date_of_birth":"1991-07-04T00:00:00.000Z","height":1.79,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":764767080,"name":"Soumyajit Ghosh","nationality":"IND","sex":"male","date_of_birth":"1993-05-10T00:00:00.000Z","height":1.68,"weight":69,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":830239226,"name":"Sovijja Pou","nationality":"CAM","sex":"male","date_of_birth":"1995-07-18T00:00:00.000Z","height":1.69,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":269749454,"name":"Soyib Kurbonov","nationality":"UZB","sex":"male","date_of_birth":"1988-02-03T00:00:00.000Z","height":1.86,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":11491281,"name":"Sparkle McKnight","nationality":"TTO","sex":"female","date_of_birth":"1991-12-21T00:00:00.000Z","height":1.58,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":132368991,"name":"Spela Perse","nationality":"SLO","sex":"female","date_of_birth":"1996-08-04T00:00:00.000Z","height":1.58,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":55713015,"name":"Spela Ponomarenko Janic","nationality":"SLO","sex":"female","date_of_birth":"1981-10-02T00:00:00.000Z","height":1.69,"weight":65,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":755409303,"name":"Spencer Turrin","nationality":"AUS","sex":"male","date_of_birth":"1991-08-29T00:00:00.000Z","height":1.9,"weight":92,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":212024844,"name":"Spencer Wilton","nationality":"GBR","sex":"male","date_of_birth":"1973-02-01T00:00:00.000Z","height":1.83,"weight":83,"sport":"equestrian","gold":0,"silver":1,"bronze":0,"info":null},{"id":275435304,"name":"Spiros Gianniotis","nationality":"GRE","sex":"male","date_of_birth":"1980-02-19T00:00:00.000Z","height":1.85,"weight":78,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":875845339,"name":"Spyridon Christos Giannaros","nationality":"GRE","sex":"male","date_of_birth":"1992-05-12T00:00:00.000Z","height":1.83,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":191166211,"name":"Srabani Nanda","nationality":"IND","sex":"female","date_of_birth":"1991-05-07T00:00:00.000Z","height":1.64,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":980722321,"name":"Srdjan Mrvaljevic","nationality":"MNE","sex":"male","date_of_birth":"1984-05-16T00:00:00.000Z","height":1.86,"weight":85,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":999965015,"name":"Sreejesh Parattu","nationality":"IND","sex":"male","date_of_birth":"1988-05-08T00:00:00.000Z","height":1.83,"weight":79,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":213384743,"name":"Sri Wahyuni Agustiani","nationality":"INA","sex":"female","date_of_birth":"1994-08-13T00:00:00.000Z","height":1.47,"weight":47,"sport":"weightlifting","gold":0,"silver":1,"bronze":0,"info":null},{"id":311879753,"name":"Srikanth Kidambi","nationality":"IND","sex":"male","date_of_birth":"1993-02-07T00:00:00.000Z","height":1.78,"weight":66,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":79428759,"name":"Stacey Michelsen","nationality":"NZL","sex":"female","date_of_birth":"1991-02-18T00:00:00.000Z","height":1.73,"weight":66,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":64239196,"name":"Stacy Lewis","nationality":"USA","sex":"female","date_of_birth":"1985-02-16T00:00:00.000Z","height":1.66,"weight":60,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":883031102,"name":"Stacy Otieno","nationality":"KEN","sex":"female","date_of_birth":"1990-09-27T00:00:00.000Z","height":1.67,"weight":71,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":670857265,"name":"Stan Okoye","nationality":"NGR","sex":"male","date_of_birth":"1991-04-10T00:00:00.000Z","height":1.98,"weight":null,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":217337729,"name":"Stanimira Petrova","nationality":"BUL","sex":"female","date_of_birth":"1990-12-16T00:00:00.000Z","height":1.7,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":489359727,"name":"Stanislau Shcharbachenia","nationality":"BLR","sex":"male","date_of_birth":"1985-03-05T00:00:00.000Z","height":2.01,"weight":104,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":574714431,"name":"Stanley Amuzie","nationality":"NGR","sex":"male","date_of_birth":"1996-02-28T00:00:00.000Z","height":1.71,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":948549107,"name":"Stanley Joseph","nationality":"FRA","sex":"male","date_of_birth":"1991-10-24T00:00:00.000Z","height":1.81,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":839709213,"name":"Stanley Kipleting Biwott","nationality":"KEN","sex":"male","date_of_birth":"1986-04-21T00:00:00.000Z","height":1.52,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":66299670,"name":"Stanly del Carmen","nationality":"DOM","sex":"male","date_of_birth":"1995-09-20T00:00:00.000Z","height":1.63,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":194610511,"name":"Stavroula Samara","nationality":"GRE","sex":"female","date_of_birth":"1994-07-08T00:00:00.000Z","height":1.74,"weight":56,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":760762237,"name":"Steele Johnson","nationality":"USA","sex":"male","date_of_birth":"1996-06-16T00:00:00.000Z","height":1.88,"weight":79,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":588743622,"name":"Steeve Barry","nationality":"FRA","sex":"male","date_of_birth":"1991-04-18T00:00:00.000Z","height":1.81,"weight":85,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":577610153,"name":"Stefan Bellore Sangala","nationality":"CGO","sex":"female","date_of_birth":"1995-01-02T00:00:00.000Z","height":1.65,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":319413003,"name":"Stefan Bircevic","nationality":"SRB","sex":"male","date_of_birth":"1989-12-13T00:00:00.000Z","height":2.1,"weight":104,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":565822504,"name":"Stefan Brits","nationality":"RSA","sex":"male","date_of_birth":"1992-01-19T00:00:00.000Z","height":1.83,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":674224579,"name":"Stefan Denifl","nationality":"AUT","sex":"male","date_of_birth":"1987-09-20T00:00:00.000Z","height":1.79,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":308539287,"name":"Stefan Fegerl","nationality":"AUT","sex":"male","date_of_birth":"1988-09-12T00:00:00.000Z","height":1.86,"weight":69,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":131551003,"name":"Stefan Hristov","nationality":"BUL","sex":"male","date_of_birth":"1985-07-12T00:00:00.000Z","height":1.75,"weight":59,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":971449557,"name":"Stefan Jovic","nationality":"SRB","sex":"male","date_of_birth":"1990-11-03T00:00:00.000Z","height":1.96,"weight":94,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":118661082,"name":"Stefan Kiraj","nationality":"GER","sex":"male","date_of_birth":"1989-05-11T00:00:00.000Z","height":1.89,"weight":92,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":921350998,"name":"Stefan Markovic","nationality":"SRB","sex":"male","date_of_birth":"1988-04-25T00:00:00.000Z","height":1.99,"weight":96,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":11369816,"name":"Stefan Mitrovic","nationality":"SRB","sex":"male","date_of_birth":"1988-03-29T00:00:00.000Z","height":1.95,"weight":91,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":21362991,"name":"Stefan Nilsson","nationality":"SWE","sex":"male","date_of_birth":"1990-08-12T00:00:00.000Z","height":1.86,"weight":89,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":782498343,"name":"Stefana Veljkovic","nationality":"SRB","sex":"female","date_of_birth":"1990-01-09T00:00:00.000Z","height":1.9,"weight":76,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":369495539,"name":"Stefani Stoeva","nationality":"BUL","sex":"female","date_of_birth":"1995-09-23T00:00:00.000Z","height":1.74,"weight":64,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":436598092,"name":"Stefania Pirozzi","nationality":"ITA","sex":"female","date_of_birth":"1993-12-16T00:00:00.000Z","height":1.7,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":254807434,"name":"Stefanie Fee","nationality":"USA","sex":"female","date_of_birth":"1990-03-11T00:00:00.000Z","height":1.68,"weight":63,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":188282515,"name":"Stefanie Horn","nationality":"ITA","sex":"female","date_of_birth":"1991-01-09T00:00:00.000Z","height":1.68,"weight":59,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":392368733,"name":"Stefaniya Elfutina","nationality":"RUS","sex":"female","date_of_birth":"1997-01-27T00:00:00.000Z","height":1.7,"weight":59,"sport":"sailing","gold":0,"silver":0,"bronze":1,"info":null},{"id":857655408,"name":"Stefano Brecciaroli","nationality":"ITA","sex":"male","date_of_birth":"1974-11-19T00:00:00.000Z","height":1.77,"weight":71,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":380056302,"name":"Stefano Giantorno","nationality":"BRA","sex":"male","date_of_birth":"1991-09-27T00:00:00.000Z","height":1.7,"weight":73,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":137494922,"name":"Stefano Oppo","nationality":"ITA","sex":"male","date_of_birth":"1994-09-12T00:00:00.000Z","height":1.87,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":395614282,"name":"Stefano Peschiera","nationality":"PER","sex":"male","date_of_birth":"1995-01-16T00:00:00.000Z","height":1.82,"weight":84,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":145404810,"name":"Stefano Raffaele Marcia","nationality":"RSA","sex":"male","date_of_birth":"1993-11-23T00:00:00.000Z","height":1.78,"weight":80,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":25301799,"name":"Stefano Selva","nationality":"SMR","sex":"male","date_of_birth":"1969-08-24T00:00:00.000Z","height":1.7,"weight":65,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":965767592,"name":"Stefano Tempesti","nationality":"ITA","sex":"male","date_of_birth":"1979-06-09T00:00:00.000Z","height":2.05,"weight":100,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":891446436,"name":"Stefano la Rosa","nationality":"ITA","sex":"male","date_of_birth":"1985-09-28T00:00:00.000Z","height":1.7,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":561352985,"name":"Stefanos Dimitriadis","nationality":"GRE","sex":"male","date_of_birth":"1989-09-08T00:00:00.000Z","height":1.89,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":616655285,"name":"Stefanos Galanopoulos","nationality":"GRE","sex":"male","date_of_birth":"1993-02-22T00:00:00.000Z","height":1.97,"weight":89,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":517441017,"name":"Stefanos Ntouskos","nationality":"GRE","sex":"male","date_of_birth":"1997-03-29T00:00:00.000Z","height":1.86,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":161034352,"name":"Stefany Castano","nationality":"COL","sex":"female","date_of_birth":"1994-01-11T00:00:00.000Z","height":1.72,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":457750300,"name":"Stefany Coronado","nationality":"BOL","sex":"female","date_of_birth":"1996-09-16T00:00:00.000Z","height":1.73,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":223169136,"name":"Stefany Hernandez","nationality":"VEN","sex":"female","date_of_birth":"1991-06-15T00:00:00.000Z","height":1.65,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":1,"info":null},{"id":371287084,"name":"Steffen Deibler","nationality":"GER","sex":"male","date_of_birth":"1987-07-10T00:00:00.000Z","height":1.86,"weight":81,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":675798889,"name":"Steffen Fath","nationality":"GER","sex":"male","date_of_birth":"1990-04-04T00:00:00.000Z","height":1.99,"weight":97,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":520458964,"name":"Steffen Peters","nationality":"USA","sex":"male","date_of_birth":"1964-09-18T00:00:00.000Z","height":1.73,"weight":68,"sport":"equestrian","gold":0,"silver":0,"bronze":1,"info":null},{"id":318627222,"name":"Steffen Weinhold","nationality":"GER","sex":"male","date_of_birth":"1986-07-19T00:00:00.000Z","height":1.91,"weight":94,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":733771935,"name":"Steffi Kriegerstein","nationality":"GER","sex":"female","date_of_birth":"1992-11-03T00:00:00.000Z","height":1.78,"weight":70,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":533594402,"name":"Stella Akakpo","nationality":"FRA","sex":"female","date_of_birth":"1994-02-28T00:00:00.000Z","height":1.66,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":305158735,"name":"Stella Chesang","nationality":"UGA","sex":"female","date_of_birth":"1996-12-01T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":995446610,"name":"Stepan Maryanyan","nationality":"RUS","sex":"male","date_of_birth":"1991-09-21T00:00:00.000Z","height":1.65,"weight":59,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":957346968,"name":"Steph Catley","nationality":"AUS","sex":"female","date_of_birth":"1994-01-26T00:00:00.000Z","height":1.71,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":508727443,"name":"Stephan Feck","nationality":"GER","sex":"male","date_of_birth":"1990-02-17T00:00:00.000Z","height":1.83,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":792396133,"name":"Stephan Krueger","nationality":"GER","sex":"male","date_of_birth":"1988-11-29T00:00:00.000Z","height":1.87,"weight":86,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":891602037,"name":"Stephan de Freitas Barcha","nationality":"BRA","sex":"male","date_of_birth":"1989-10-27T00:00:00.000Z","height":null,"weight":null,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":352127171,"name":"Stephane Smith","nationality":"BRA","sex":"male","date_of_birth":"1989-05-15T00:00:00.000Z","height":1.73,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":305108118,"name":"Stephanie Au","nationality":"HKG","sex":"female","date_of_birth":"1992-05-30T00:00:00.000Z","height":1.72,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":984866759,"name":"Stephanie Brieussel","nationality":"FRA","sex":"female","date_of_birth":"1974-01-29T00:00:00.000Z","height":1.69,"weight":55,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":799391274,"name":"Stephanie Enright","nationality":"PUR","sex":"female","date_of_birth":"1990-12-15T00:00:00.000Z","height":1.79,"weight":56,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":195104856,"name":"Stephanie Fotso Mogoung","nationality":"CMR","sex":"female","date_of_birth":"1987-09-25T00:00:00.000Z","height":1.84,"weight":78,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":944264216,"name":"Stephanie Horner","nationality":"CAN","sex":"female","date_of_birth":"1989-03-19T00:00:00.000Z","height":1.8,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":238315993,"name":"Stephanie Labbe","nationality":"CAN","sex":"female","date_of_birth":"1986-10-10T00:00:00.000Z","height":1.78,"weight":63,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":409287519,"name":"Stephanie Lovell","nationality":"LCA","sex":"female","date_of_birth":"1995-09-08T00:00:00.000Z","height":1.6,"weight":62,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":368669797,"name":"Stephanie Malherbe","nationality":"RSA","sex":"female","date_of_birth":"1996-04-05T00:00:00.000Z","height":1.62,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":129467500,"name":"Stephanie Meadow","nationality":"IRL","sex":"female","date_of_birth":"1992-01-20T00:00:00.000Z","height":1.63,"weight":64,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":154640306,"name":"Stephanie Morton","nationality":"AUS","sex":"female","date_of_birth":"1990-11-28T00:00:00.000Z","height":1.77,"weight":77,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":932494249,"name":"Stephanie Pohl","nationality":"GER","sex":"female","date_of_birth":"1987-10-21T00:00:00.000Z","height":1.6,"weight":51,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":419421919,"name":"Stephanie Talbot","nationality":"AUS","sex":"female","date_of_birth":"1994-06-15T00:00:00.000Z","height":1.86,"weight":87,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":430731378,"name":"Stephanie Tirode","nationality":"FRA","sex":"female","date_of_birth":"1975-05-01T00:00:00.000Z","height":1.65,"weight":78,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":157050778,"name":"Stephanie Twell","nationality":"GBR","sex":"female","date_of_birth":"1989-08-17T00:00:00.000Z","height":1.68,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":422679366,"name":"Stephanie Vogt","nationality":"LIE","sex":"female","date_of_birth":"1990-02-15T00:00:00.000Z","height":1.67,"weight":65,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":459968412,"name":"Stephen Bird","nationality":"AUS","sex":"male","date_of_birth":"1988-05-11T00:00:00.000Z","height":1.89,"weight":86,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":254081121,"name":"Stephen Cummings","nationality":"GBR","sex":"male","date_of_birth":"1981-03-19T00:00:00.000Z","height":1.9,"weight":75,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":946544198,"name":"Stephen Jenness","nationality":"NZL","sex":"male","date_of_birth":"1990-06-07T00:00:00.000Z","height":1.79,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":203402435,"name":"Stephen Jones","nationality":"NZL","sex":"male","date_of_birth":"1993-04-29T00:00:00.000Z","height":1.92,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":156864780,"name":"Stephen Kasprzyk","nationality":"USA","sex":"male","date_of_birth":"1982-02-14T00:00:00.000Z","height":2.01,"weight":103,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":82771185,"name":"Stephen Kiprotich","nationality":"UGA","sex":"male","date_of_birth":"1989-02-27T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":"Current Olympic marathon champion Stephen Kiprotich is another athletics exponent who proves Africa's dominance in this particular race. One year after winning gold at London 2012, he finished in first place in the marathon at the world championship."},{"id":641360615,"name":"Stephen Lambdin","nationality":"USA","sex":"male","date_of_birth":"1988-03-09T00:00:00.000Z","height":1.88,"weight":108,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":653237544,"name":"Stephen Milne","nationality":"GBR","sex":"male","date_of_birth":"1994-04-29T00:00:00.000Z","height":1.86,"weight":76,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":144812081,"name":"Stephen Mokoka","nationality":"RSA","sex":"male","date_of_birth":"1985-01-31T00:00:00.000Z","height":1.57,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":730191367,"name":"Stephen Mozia","nationality":"NGR","sex":"male","date_of_birth":"1993-08-16T00:00:00.000Z","height":1.91,"weight":124,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":769819070,"name":"Stephen Newbold","nationality":"BAH","sex":"male","date_of_birth":"1994-08-05T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":791262365,"name":"Stephen Parez","nationality":"FRA","sex":"male","date_of_birth":"1994-08-01T00:00:00.000Z","height":1.74,"weight":75,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":940693256,"name":"Stephenie Ann McPherson","nationality":"JAM","sex":"female","date_of_birth":"1988-11-25T00:00:00.000Z","height":1.73,"weight":57,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":445715201,"name":"Stevan Pletikosic","nationality":"SRB","sex":"male","date_of_birth":"1972-03-14T00:00:00.000Z","height":1.84,"weight":81,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":109758786,"name":"Steve Guerdat","nationality":"SUI","sex":"male","date_of_birth":"1982-06-10T00:00:00.000Z","height":1.82,"weight":70,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":"The son of Olympic medalist Philippe Guerdat, Steve Guerdat is the current equestrian jumping champion, winning gold at London 2012. He also holds a bronze in the team event at Beijing 2008 in addition to being a two-time world cup winner."},{"id":600255721,"name":"Steve Johnson","nationality":"USA","sex":"male","date_of_birth":"1989-12-24T00:00:00.000Z","height":1.88,"weight":86,"sport":"tennis","gold":0,"silver":0,"bronze":1,"info":null},{"id":226464933,"name":"Steve Morabito","nationality":"SUI","sex":"male","date_of_birth":"1983-01-30T00:00:00.000Z","height":1.87,"weight":73,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":226636545,"name":"Steven Burke","nationality":"GBR","sex":"male","date_of_birth":"1988-03-04T00:00:00.000Z","height":1.83,"weight":78,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":590851106,"name":"Steven Gardiner","nationality":"BAH","sex":"male","date_of_birth":"1995-09-12T00:00:00.000Z","height":1.88,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":917340321,"name":"Steven Gerard Donnelly","nationality":"IRL","sex":"male","date_of_birth":"1988-09-07T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":51098946,"name":"Steven Kruijswijk","nationality":"NED","sex":"male","date_of_birth":"1987-06-07T00:00:00.000Z","height":1.77,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":92940638,"name":"Steven Lopez","nationality":"USA","sex":"male","date_of_birth":"1978-11-09T00:00:00.000Z","height":1.91,"weight":83,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":59291100,"name":"Steven Marshall","nationality":"CAN","sex":"male","date_of_birth":"1989-11-23T00:00:00.000Z","height":1.93,"weight":87,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":640785339,"name":"Steven Scott","nationality":"GBR","sex":"male","date_of_birth":"1985-01-10T00:00:00.000Z","height":1.72,"weight":84,"sport":"shooting","gold":0,"silver":0,"bronze":1,"info":null},{"id":308437509,"name":"Stewart Innes","nationality":"GBR","sex":"male","date_of_birth":"1991-05-20T00:00:00.000Z","height":1.97,"weight":97,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":634725148,"name":"Stian Skjerahaug","nationality":"NOR","sex":"male","date_of_birth":"1992-03-08T00:00:00.000Z","height":1.71,"weight":66,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":581997901,"name":"Stig-Andre Berge","nationality":"NOR","sex":"male","date_of_birth":"1983-07-20T00:00:00.000Z","height":null,"weight":null,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":915123648,"name":"Stina Blackstenius","nationality":"SWE","sex":"female","date_of_birth":"1996-02-05T00:00:00.000Z","height":1.73,"weight":72,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":65486253,"name":"Stina Gardell","nationality":"SWE","sex":"female","date_of_birth":"1990-03-28T00:00:00.000Z","height":1.72,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":854904743,"name":"Stina Troest","nationality":"DEN","sex":"female","date_of_birth":"1994-01-17T00:00:00.000Z","height":1.7,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":945304583,"name":"Stine Bredal Oftedal","nationality":"NOR","sex":"female","date_of_birth":"1991-09-25T00:00:00.000Z","height":1.68,"weight":null,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":602912762,"name":"Stine Nielsen","nationality":"DEN","sex":"female","date_of_birth":"1991-02-09T00:00:00.000Z","height":1.63,"weight":79,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":527651130,"name":"Stipe Zunic","nationality":"CRO","sex":"male","date_of_birth":"1990-12-13T00:00:00.000Z","height":1.93,"weight":134,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":499631914,"name":"Stsiapan Rahautsou","nationality":"BLR","sex":"male","date_of_birth":"1986-05-29T00:00:00.000Z","height":1.74,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":153456321,"name":"Stuart Dutamby","nationality":"FRA","sex":"male","date_of_birth":"1994-04-24T00:00:00.000Z","height":1.76,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":103790201,"name":"Stuart Farquhar","nationality":"NZL","sex":"male","date_of_birth":"1982-03-15T00:00:00.000Z","height":1.87,"weight":98,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":705154995,"name":"Stuart McNay","nationality":"USA","sex":"male","date_of_birth":"1981-08-01T00:00:00.000Z","height":1.71,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":85718684,"name":"Stuart Tinney","nationality":"AUS","sex":"male","date_of_birth":"1964-12-07T00:00:00.000Z","height":1.8,"weight":71,"sport":"equestrian","gold":0,"silver":0,"bronze":1,"info":null},{"id":571111419,"name":"Su Ji Kim","nationality":"KOR","sex":"female","date_of_birth":"1987-07-11T00:00:00.000Z","height":1.87,"weight":68,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":54125373,"name":"Su Oh","nationality":"AUS","sex":"female","date_of_birth":"1996-05-23T00:00:00.000Z","height":1.68,"weight":null,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":464562333,"name":"Suad Natiq","nationality":"IRQ","sex":"male","date_of_birth":"1994-03-19T00:00:00.000Z","height":1.85,"weight":78,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":377406840,"name":"Subenrat Insaeng","nationality":"THA","sex":"female","date_of_birth":"1994-02-10T00:00:00.000Z","height":1.82,"weight":115,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":863916736,"name":"Sudha Singh","nationality":"IND","sex":"female","date_of_birth":"1986-06-25T00:00:00.000Z","height":1.58,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":676826208,"name":"Sudirman Hadi","nationality":"INA","sex":"male","date_of_birth":"1996-03-09T00:00:00.000Z","height":1.71,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":549566772,"name":"Sue Bird","nationality":"USA","sex":"female","date_of_birth":"1980-10-16T00:00:00.000Z","height":1.75,"weight":66,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":"A three-time Olympic (Athens 2004, Beijing 2008 and London 2012) and world champion for the USA, point guard Sue Bird was voted, in 2011, one of the 15 best players in the history of the WNBA history, her country's main women's league."},{"id":523057836,"name":"Suehiro Ishikawa","nationality":"JPN","sex":"male","date_of_birth":"1979-09-27T00:00:00.000Z","height":1.69,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":321796870,"name":"Sugoi Uriarte","nationality":"ESP","sex":"male","date_of_birth":"1984-05-14T00:00:00.000Z","height":1.72,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":566595674,"name":"Suguru Osako","nationality":"JPN","sex":"male","date_of_birth":"1991-05-23T00:00:00.000Z","height":1.7,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":215796471,"name":"Suhrob Khodjaev","nationality":"UZB","sex":"male","date_of_birth":"1993-05-21T00:00:00.000Z","height":1.85,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":574040538,"name":"Sukanya Srisurat","nationality":"THA","sex":"female","date_of_birth":"1995-05-03T00:00:00.000Z","height":1.55,"weight":57,"sport":"weightlifting","gold":1,"silver":0,"bronze":0,"info":null},{"id":963404474,"name":"Sukhi Panesar","nationality":"CAN","sex":"male","date_of_birth":"1993-12-26T00:00:00.000Z","height":1.8,"weight":75,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":50906905,"name":"Sulaiman Hamad","nationality":"KSA","sex":"male","date_of_birth":"1994-05-19T00:00:00.000Z","height":1.77,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":724836390,"name":"Suleyman Atli","nationality":"TUR","sex":"male","date_of_birth":"1994-07-27T00:00:00.000Z","height":1.68,"weight":57,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":918686488,"name":"Sultan Duzelbayev","nationality":"KAZ","sex":"male","date_of_birth":"1994-03-12T00:00:00.000Z","height":1.76,"weight":46,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":715405655,"name":"Sultan Haydar","nationality":"TUR","sex":"female","date_of_birth":"1987-05-23T00:00:00.000Z","height":1.7,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":548130768,"name":"Sultan Mubarak Al-Dawoodi","nationality":"KSA","sex":"male","date_of_birth":"1977-06-16T00:00:00.000Z","height":1.92,"weight":86,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":27825256,"name":"Sumeeth Reddy B.","nationality":"IND","sex":"male","date_of_birth":"1991-09-26T00:00:00.000Z","height":1.82,"weight":64,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":214849260,"name":"Sumin Choi","nationality":"KOR","sex":"female","date_of_birth":"1990-01-09T00:00:00.000Z","height":1.77,"weight":64,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":43374597,"name":"Sumiya Dorjsuren","nationality":"MGL","sex":"female","date_of_birth":"1991-03-11T00:00:00.000Z","height":1.6,"weight":59,"sport":"judo","gold":0,"silver":1,"bronze":0,"info":null},{"id":311378781,"name":"Sumiya Erdenechimeg","nationality":"MGL","sex":"female","date_of_birth":"1990-02-28T00:00:00.000Z","height":1.59,"weight":53,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":67222900,"name":"Sunayna Wahi","nationality":"SUR","sex":"female","date_of_birth":"1990-08-14T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":224948383,"name":"Sunette Viljoen","nationality":"RSA","sex":"female","date_of_birth":"1983-10-06T00:00:00.000Z","height":1.7,"weight":72,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":960642258,"name":"Sung Hyun Ko","nationality":"KOR","sex":"male","date_of_birth":"1987-05-21T00:00:00.000Z","height":1.82,"weight":85,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":733228088,"name":"Sungmin Kim","nationality":"KOR","sex":"male","date_of_birth":"1987-06-29T00:00:00.000Z","height":1.9,"weight":130,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":773103124,"name":"Sungyun Gu","nationality":"KOR","sex":"male","date_of_birth":"1994-06-27T00:00:00.000Z","height":1.95,"weight":82,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":179464050,"name":"Sunhee Woo","nationality":"KOR","sex":"female","date_of_birth":"1978-07-01T00:00:00.000Z","height":1.71,"weight":58,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":38293952,"name":"Sunil Sowmarpet","nationality":"IND","sex":"male","date_of_birth":"1989-05-06T00:00:00.000Z","height":1.76,"weight":68,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":286970753,"name":"Sunita Lakra","nationality":"IND","sex":"female","date_of_birth":"1991-06-11T00:00:00.000Z","height":1.58,"weight":57,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":187534242,"name":"Sunwoo Kim","nationality":"KOR","sex":"female","date_of_birth":"1996-10-07T00:00:00.000Z","height":1.65,"weight":57,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":278485243,"name":"Suping Meng","nationality":"CHN","sex":"female","date_of_birth":"1989-07-17T00:00:00.000Z","height":1.73,"weight":120,"sport":"weightlifting","gold":1,"silver":0,"bronze":0,"info":null},{"id":912469374,"name":"Suraju Saka","nationality":"CGO","sex":"male","date_of_birth":"1976-05-05T00:00:00.000Z","height":1.7,"weight":68,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":118866777,"name":"Surender Kumar","nationality":"IND","sex":"male","date_of_birth":"1993-11-23T00:00:00.000Z","height":1.79,"weight":77,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":819423699,"name":"Susan Kuijken","nationality":"NED","sex":"female","date_of_birth":"1986-07-08T00:00:00.000Z","height":1.72,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":718822536,"name":"Susana Costa","nationality":"POR","sex":"female","date_of_birth":"1984-09-22T00:00:00.000Z","height":1.77,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":261214819,"name":"Susann Bjornsen","nationality":"NOR","sex":"female","date_of_birth":"1993-05-28T00:00:00.000Z","height":1.91,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":280722315,"name":"Susanna Kallur","nationality":"SWE","sex":"female","date_of_birth":"1981-02-16T00:00:00.000Z","height":1.7,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":361971820,"name":"Susannah Townsend","nationality":"GBR","sex":"female","date_of_birth":"1989-07-28T00:00:00.000Z","height":1.68,"weight":61,"sport":"hockey","gold":1,"silver":0,"bronze":0,"info":null},{"id":199049873,"name":"Susanne Grainger","nationality":"CAN","sex":"female","date_of_birth":"1990-12-30T00:00:00.000Z","height":1.88,"weight":86,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":8359251,"name":"Sushila Pukhrambam","nationality":"IND","sex":"female","date_of_birth":"1992-02-25T00:00:00.000Z","height":1.52,"weight":52,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":72532043,"name":"Suthasini Sawettabut","nationality":"THA","sex":"female","date_of_birth":"1994-12-09T00:00:00.000Z","height":1.68,"weight":63,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":292142118,"name":"Sutiya Jiewchaloemmit","nationality":"THA","sex":"female","date_of_birth":"1986-05-03T00:00:00.000Z","height":1.69,"weight":61,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":326533189,"name":"Suvi Mikkonen","nationality":"FIN","sex":"female","date_of_birth":"1988-07-11T00:00:00.000Z","height":1.64,"weight":57,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":418495066,"name":"Suyeon Back","nationality":"KOR","sex":"female","date_of_birth":"1991-07-01T00:00:00.000Z","height":1.73,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":129659927,"name":"Suzana Lazovic","nationality":"MNE","sex":"female","date_of_birth":"1992-01-28T00:00:00.000Z","height":1.78,"weight":72,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":819679922,"name":"Suzann Pettersen","nationality":"NOR","sex":"female","date_of_birth":"1981-04-07T00:00:00.000Z","height":null,"weight":null,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":756706296,"name":"Suzanne Hearn","nationality":"AUS","sex":"female","date_of_birth":"1956-02-13T00:00:00.000Z","height":null,"weight":null,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":809014014,"name":"Suzuka Hasegawa","nationality":"JPN","sex":"female","date_of_birth":"2000-01-25T00:00:00.000Z","height":1.65,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":629383847,"name":"Sven Bender","nationality":"GER","sex":"male","date_of_birth":"1989-04-27T00:00:00.000Z","height":1.85,"weight":73,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":167125216,"name":"Sven Erik Bystrom","nationality":"NOR","sex":"male","date_of_birth":"1992-01-21T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":674985541,"name":"Sven Knipphals","nationality":"GER","sex":"male","date_of_birth":"1985-09-20T00:00:00.000Z","height":1.89,"weight":88,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":835906599,"name":"Sven Maresch","nationality":"GER","sex":"male","date_of_birth":"1987-01-19T00:00:00.000Z","height":1.73,"weight":83,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":599845580,"name":"Sven Martin Skagestad","nationality":"NOR","sex":"male","date_of_birth":"1995-01-13T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":879259485,"name":"Sven Riederer","nationality":"SUI","sex":"male","date_of_birth":"1981-03-27T00:00:00.000Z","height":1.82,"weight":69,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":538115271,"name":"Svenja Huth","nationality":"GER","sex":"female","date_of_birth":"1991-01-25T00:00:00.000Z","height":1.63,"weight":54,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":17641128,"name":"Svetlana Chimrova","nationality":"RUS","sex":"female","date_of_birth":"1996-04-15T00:00:00.000Z","height":1.73,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":823601145,"name":"Svetlana Germanovich","nationality":"KAZ","sex":"female","date_of_birth":"1986-09-21T00:00:00.000Z","height":1.76,"weight":67,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":300072037,"name":"Svetlana Golendova","nationality":"KAZ","sex":"female","date_of_birth":"1993-07-25T00:00:00.000Z","height":1.65,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":514719063,"name":"Svetlana Kolesnichenko","nationality":"RUS","sex":"female","date_of_birth":"1993-09-20T00:00:00.000Z","height":1.71,"weight":54,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":813630131,"name":"Svetlana Kuznetsova","nationality":"RUS","sex":"female","date_of_birth":"1985-06-27T00:00:00.000Z","height":1.74,"weight":73,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":82177310,"name":"Svetlana Radzivil","nationality":"UZB","sex":"female","date_of_birth":"1987-01-17T00:00:00.000Z","height":1.86,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":501420252,"name":"Svetlana Romashina","nationality":"RUS","sex":"female","date_of_birth":"1989-09-21T00:00:00.000Z","height":1.73,"weight":55,"sport":"aquatics","gold":2,"silver":0,"bronze":0,"info":"Three gold medals from two editions of the Olympic Games. Svetlana Romashina first won the gold at Beijing 2008, as part of the Russia synchronised swimming team. At London 2012, she took gold for the team and duet events."},{"id":798685031,"name":"Sviatlana Kudzelich","nationality":"BLR","sex":"female","date_of_birth":"1987-05-07T00:00:00.000Z","height":1.7,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":720211034,"name":"Svitlana Akhadova","nationality":"UKR","sex":"female","date_of_birth":"1993-05-10T00:00:00.000Z","height":1.7,"weight":69,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":524819089,"name":"Svitlana Iaromka","nationality":"UKR","sex":"female","date_of_birth":"1989-04-09T00:00:00.000Z","height":1.62,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":237017632,"name":"Svitlana Stanko-Klymenko","nationality":"UKR","sex":"female","date_of_birth":"1976-05-13T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":734681524,"name":"Swe Li Myint Myint","nationality":"MYA","sex":"female","date_of_birth":"1993-06-24T00:00:00.000Z","height":1.68,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":923873687,"name":"Sydney McLaughlin","nationality":"USA","sex":"female","date_of_birth":"1999-08-07T00:00:00.000Z","height":1.76,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":897751532,"name":"Sydney Pickrem","nationality":"CAN","sex":"female","date_of_birth":"1997-05-21T00:00:00.000Z","height":1.68,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":445792938,"name":"Sylvia Fowles","nationality":"USA","sex":"female","date_of_birth":"1985-10-06T00:00:00.000Z","height":1.98,"weight":90,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":640361977,"name":"Sylwester Bednarek","nationality":"POL","sex":"male","date_of_birth":"1989-04-28T00:00:00.000Z","height":1.94,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":365526151,"name":"Sylwia Bogacka","nationality":"POL","sex":"female","date_of_birth":"1981-10-03T00:00:00.000Z","height":1.62,"weight":57,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":687167760,"name":"Szandra Szogedi","nationality":"GHA","sex":"female","date_of_birth":"1988-10-19T00:00:00.000Z","height":1.58,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":761194557,"name":"Szu-Yu Chen","nationality":"TPE","sex":"female","date_of_birth":"1993-08-01T00:00:00.000Z","height":1.62,"weight":58,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":313930534,"name":"Szymon Staskiewicz","nationality":"POL","sex":"male","date_of_birth":"1987-01-03T00:00:00.000Z","height":1.86,"weight":80,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":654852458,"name":"Tabata de Carvalho","nationality":"BRA","sex":"female","date_of_birth":"1996-04-23T00:00:00.000Z","height":1.71,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":997432582,"name":"Tabea Alt","nationality":"GER","sex":"female","date_of_birth":"2000-03-18T00:00:00.000Z","height":1.58,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":57676016,"name":"Tabea Kemme","nationality":"GER","sex":"female","date_of_birth":"1991-12-14T00:00:00.000Z","height":1.7,"weight":56,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":990975913,"name":"Taciana Lima","nationality":"GBS","sex":"female","date_of_birth":"1983-12-17T00:00:00.000Z","height":1.64,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":158812525,"name":"Tadas Suskevicius","nationality":"LTU","sex":"male","date_of_birth":"1985-05-22T00:00:00.000Z","height":1.77,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":134631716,"name":"Tadesse Abraham","nationality":"SUI","sex":"male","date_of_birth":"1982-08-12T00:00:00.000Z","height":1.78,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":359507589,"name":"Taehoon Lee","nationality":"KOR","sex":"male","date_of_birth":"1986-05-18T00:00:00.000Z","height":1.8,"weight":74,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":965284155,"name":"Taehun Kim","nationality":"KOR","sex":"male","date_of_birth":"1994-08-15T00:00:00.000Z","height":1.82,"weight":59,"sport":"taekwondo","gold":0,"silver":0,"bronze":1,"info":null},{"id":589375724,"name":"Taehwan Park","nationality":"KOR","sex":"male","date_of_birth":"1989-09-27T00:00:00.000Z","height":1.83,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":193649296,"name":"Tafese Seboka","nationality":"ETH","sex":"male","date_of_birth":"1993-09-29T00:00:00.000Z","height":1.77,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":768671420,"name":"Tagir Khaibulaev","nationality":"RUS","sex":"male","date_of_birth":"1984-07-24T00:00:00.000Z","height":1.82,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":539157373,"name":"Taha Akgul","nationality":"TUR","sex":"male","date_of_birth":"1990-11-22T00:00:00.000Z","height":1.92,"weight":125,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":136534456,"name":"Tahesia Harrigan-Scott","nationality":"IVB","sex":"female","date_of_birth":"1982-02-15T00:00:00.000Z","height":1.58,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":477470052,"name":"Tahir Guelec","nationality":"GER","sex":"male","date_of_birth":"1993-02-25T00:00:00.000Z","height":1.91,"weight":82,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":161917472,"name":"Tahir Walsh","nationality":"ANT","sex":"male","date_of_birth":"1994-02-24T00:00:00.000Z","height":1.82,"weight":91,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":485849268,"name":"Taimuraz Friev Naskidaeva","nationality":"ESP","sex":"male","date_of_birth":"1986-09-15T00:00:00.000Z","height":1.76,"weight":84,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":871329009,"name":"Taina Halasima","nationality":"TGA","sex":"female","date_of_birth":"1997-12-11T00:00:00.000Z","height":1.63,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":346992499,"name":"Taina Paixao","nationality":"BRA","sex":"female","date_of_birth":"1991-11-29T00:00:00.000Z","height":1.71,"weight":69,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":605417556,"name":"Tairat Bunsuk","nationality":"THA","sex":"male","date_of_birth":"1993-01-11T00:00:00.000Z","height":1.61,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":449390990,"name":"Tais Balconi","nationality":"BRA","sex":"female","date_of_birth":"1991-04-11T00:00:00.000Z","height":1.64,"weight":63,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":658175291,"name":"Tais Rochel","nationality":"BRA","sex":"female","date_of_birth":"1983-10-16T00:00:00.000Z","height":1.65,"weight":61,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":615179383,"name":"Taiwo Awoniyi","nationality":"NGR","sex":"male","date_of_birth":"1997-08-12T00:00:00.000Z","height":1.82,"weight":71,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":615764014,"name":"Taizo Sugitani","nationality":"JPN","sex":"male","date_of_birth":"1976-06-27T00:00:00.000Z","height":1.7,"weight":63,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":799687468,"name":"Takaharu Furukawa","nationality":"JPN","sex":"male","date_of_birth":"1984-08-09T00:00:00.000Z","height":1.74,"weight":89,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":25012659,"name":"Takamasa Kitagawa","nationality":"JPN","sex":"male","date_of_birth":"1996-09-05T00:00:00.000Z","height":1.77,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":654328504,"name":"Takanori Nagase","nationality":"JPN","sex":"male","date_of_birth":"1993-10-14T00:00:00.000Z","height":1.81,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":599789748,"name":"Takashi Eto","nationality":"JPN","sex":"male","date_of_birth":"1991-02-05T00:00:00.000Z","height":1.83,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":511495606,"name":"Takayuki Tanii","nationality":"JPN","sex":"male","date_of_birth":"1983-02-14T00:00:00.000Z","height":1.67,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":784189307,"name":"Takeshi Matsuda","nationality":"JPN","sex":"male","date_of_birth":"1984-06-23T00:00:00.000Z","height":1.84,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":313024850,"name":"Takuma Asano","nationality":"JPN","sex":"male","date_of_birth":"1994-11-10T00:00:00.000Z","height":1.71,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":247907284,"name":"Takumi Minamino","nationality":"JPN","sex":"male","date_of_birth":"1995-01-16T00:00:00.000Z","height":1.74,"weight":67,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":798091579,"name":"Takuro Fujii","nationality":"JPN","sex":"male","date_of_birth":"1985-04-21T00:00:00.000Z","height":1.84,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":874798045,"name":"Takuya Haneda","nationality":"JPN","sex":"male","date_of_birth":"1987-07-17T00:00:00.000Z","height":1.75,"weight":70,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":416084708,"name":"Takuya Iwanami","nationality":"JPN","sex":"male","date_of_birth":"1994-06-18T00:00:00.000Z","height":1.86,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":536937695,"name":"Talent Mandaza","nationality":"ZIM","sex":"female","date_of_birth":"1985-12-11T00:00:00.000Z","height":1.58,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":808567905,"name":"Tales Cerdeira","nationality":"BRA","sex":"male","date_of_birth":"1987-01-21T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":842617684,"name":"Talgat Ilyasov","nationality":"AUS","sex":"male","date_of_birth":"1981-02-25T00:00:00.000Z","height":1.75,"weight":74,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":74177936,"name":"Taliqua Clancy","nationality":"AUS","sex":"female","date_of_birth":"1992-06-25T00:00:00.000Z","height":1.84,"weight":68,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":99503989,"name":"Talisa Lanoe","nationality":"KEN","sex":"female","date_of_birth":"1994-07-25T00:00:00.000Z","height":1.67,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":296747783,"name":"Talita Baqlah","nationality":"JOR","sex":"female","date_of_birth":"1995-10-27T00:00:00.000Z","height":1.72,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":122731267,"name":"Talita Marie Te Flan","nationality":"CIV","sex":"female","date_of_birth":"1995-06-02T00:00:00.000Z","height":1.76,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":302432944,"name":"Talita Rocha","nationality":"BRA","sex":"female","date_of_birth":"1982-08-29T00:00:00.000Z","height":1.81,"weight":64,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":877029068,"name":"Talles Frederico Silva","nationality":"BRA","sex":"male","date_of_birth":"1991-08-20T00:00:00.000Z","height":1.9,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":318548853,"name":"Tamara Csipes","nationality":"HUN","sex":"female","date_of_birth":"1989-08-24T00:00:00.000Z","height":1.76,"weight":78,"sport":"canoe","gold":1,"silver":0,"bronze":0,"info":null},{"id":732795832,"name":"Tamara Echegoyen Dominguez","nationality":"ESP","sex":"female","date_of_birth":"1984-02-17T00:00:00.000Z","height":1.74,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":818897478,"name":"Tamara Horacek","nationality":"FRA","sex":"female","date_of_birth":"1995-11-05T00:00:00.000Z","height":1.79,"weight":80,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":800485643,"name":"Tamara Radocaj","nationality":"SRB","sex":"female","date_of_birth":"1987-12-23T00:00:00.000Z","height":1.7,"weight":60,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":545572234,"name":"Tamara Salaski","nationality":"SRB","sex":"female","date_of_birth":"1988-10-16T00:00:00.000Z","height":1.65,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":215126261,"name":"Tamara Tatham","nationality":"CAN","sex":"female","date_of_birth":"1985-08-19T00:00:00.000Z","height":1.85,"weight":79,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":168420206,"name":"Tamara Vega","nationality":"MEX","sex":"female","date_of_birth":"1993-03-15T00:00:00.000Z","height":1.59,"weight":59,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":431927399,"name":"Tamas Decsi","nationality":"HUN","sex":"male","date_of_birth":"1982-10-15T00:00:00.000Z","height":1.78,"weight":82,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":19585487,"name":"Tamas Kenderesi","nationality":"HUN","sex":"male","date_of_birth":"1996-12-13T00:00:00.000Z","height":1.86,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":423484722,"name":"Tamas Lorincz","nationality":"HUN","sex":"male","date_of_birth":"1986-12-20T00:00:00.000Z","height":1.72,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":540557883,"name":"Tamas Somoracz","nationality":"HUN","sex":"male","date_of_birth":"1992-04-11T00:00:00.000Z","height":1.95,"weight":92,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":270561251,"name":"Tamas Toth","nationality":"HUN","sex":"male","date_of_birth":"1989-05-29T00:00:00.000Z","height":1.75,"weight":65,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":82978460,"name":"Tameka Butt","nationality":"AUS","sex":"female","date_of_birth":"1991-06-16T00:00:00.000Z","height":1.58,"weight":55,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":845644172,"name":"Tameka Williams","nationality":"SKN","sex":"female","date_of_birth":"1989-08-31T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":578801610,"name":"Tamika Catchings","nationality":"USA","sex":"female","date_of_birth":"1979-07-21T00:00:00.000Z","height":1.85,"weight":77,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":655850700,"name":"Tamila Holub","nationality":"POR","sex":"female","date_of_birth":"1999-05-15T00:00:00.000Z","height":1.75,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":835127329,"name":"Tamirat Tola","nationality":"ETH","sex":"male","date_of_birth":"1991-08-11T00:00:00.000Z","height":1.81,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":19869535,"name":"Tamires","nationality":"BRA","sex":"female","date_of_birth":"1987-10-10T00:00:00.000Z","height":1.61,"weight":54,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":267796493,"name":"Tamires Lima de Araujo","nationality":"BRA","sex":"female","date_of_birth":"1994-05-16T00:00:00.000Z","height":1.8,"weight":77,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":120820876,"name":"Tammy Takagi","nationality":"BRA","sex":"female","date_of_birth":"1991-03-11T00:00:00.000Z","height":1.61,"weight":59,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":425857389,"name":"Tamsin Cook","nationality":"AUS","sex":"female","date_of_birth":"1998-12-25T00:00:00.000Z","height":1.7,"weight":61,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":14783411,"name":"Tan Tai Hoang","nationality":"VIE","sex":"male","date_of_birth":"1990-03-30T00:00:00.000Z","height":1.65,"weight":84,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":395892993,"name":"Tanel Kangert","nationality":"EST","sex":"male","date_of_birth":"1987-03-11T00:00:00.000Z","height":1.78,"weight":66,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":338003590,"name":"Tanel Laanmae","nationality":"EST","sex":"male","date_of_birth":"1989-09-29T00:00:00.000Z","height":1.83,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":198967774,"name":"Tanguy Cosyns","nationality":"BEL","sex":"male","date_of_birth":"1991-06-29T00:00:00.000Z","height":1.74,"weight":70,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":572093564,"name":"Tania Arrayales","nationality":"MEX","sex":"female","date_of_birth":"1996-08-01T00:00:00.000Z","height":1.58,"weight":53,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":401251209,"name":"Tania Cagnotto","nationality":"ITA","sex":"female","date_of_birth":"1985-05-15T00:00:00.000Z","height":1.6,"weight":53,"sport":"aquatics","gold":0,"silver":1,"bronze":1,"info":null},{"id":415410367,"name":"Tania Calvo Barbero","nationality":"ESP","sex":"female","date_of_birth":"1992-06-26T00:00:00.000Z","height":1.66,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":424029874,"name":"Tania di Mario","nationality":"ITA","sex":"female","date_of_birth":"1979-05-04T00:00:00.000Z","height":1.68,"weight":62,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":644104998,"name":"Tanja Frank","nationality":"AUT","sex":"female","date_of_birth":"1993-01-24T00:00:00.000Z","height":1.67,"weight":57,"sport":"sailing","gold":0,"silver":0,"bronze":1,"info":null},{"id":39470367,"name":"Tanja Kylliainen","nationality":"FIN","sex":"female","date_of_birth":"1993-01-30T00:00:00.000Z","height":1.55,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":103257404,"name":"Tanja Perec","nationality":"CRO","sex":"female","date_of_birth":"1992-06-08T00:00:00.000Z","height":1.66,"weight":85,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":65779574,"name":"Tanja Zakelj","nationality":"SLO","sex":"female","date_of_birth":"1988-09-15T00:00:00.000Z","height":1.59,"weight":56,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":807845971,"name":"Tanumafili Malietoa Jungblut","nationality":"ASA","sex":"male","date_of_birth":"1990-06-10T00:00:00.000Z","height":1.88,"weight":93,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":410068536,"name":"Tanya Acosta","nationality":"ARG","sex":"female","date_of_birth":"1991-03-11T00:00:00.000Z","height":1.82,"weight":70,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":520555163,"name":"Tanya Holliday","nationality":"AUS","sex":"female","date_of_birth":"1988-09-21T00:00:00.000Z","height":1.67,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":467489703,"name":"Tanya Seymour","nationality":"RSA","sex":"female","date_of_birth":"1983-11-05T00:00:00.000Z","height":1.65,"weight":57,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":530816831,"name":"Tanyaporn Prucksakorn","nationality":"THA","sex":"female","date_of_birth":"1990-01-08T00:00:00.000Z","height":1.68,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":725478923,"name":"Tao Tian","nationality":"CHN","sex":"male","date_of_birth":"1994-04-08T00:00:00.000Z","height":1.72,"weight":85,"sport":"weightlifting","gold":0,"silver":1,"bronze":0,"info":null},{"id":701625147,"name":"Taoufik Makhloufi","nationality":"ALG","sex":"male","date_of_birth":"1988-04-29T00:00:00.000Z","height":1.7,"weight":67,"sport":"athletics","gold":0,"silver":2,"bronze":0,"info":null},{"id":152333159,"name":"Tapio Nirkko","nationality":"FIN","sex":"male","date_of_birth":"1984-08-24T00:00:00.000Z","height":1.94,"weight":96,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":366332579,"name":"Tara Pacheco van Rijnsoever","nationality":"ESP","sex":"female","date_of_birth":"1988-10-03T00:00:00.000Z","height":1.67,"weight":63,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":347121929,"name":"Tara Whitten","nationality":"CAN","sex":"female","date_of_birth":"1980-07-13T00:00:00.000Z","height":1.66,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":292576070,"name":"Taras Mishchuk","nationality":"UKR","sex":"male","date_of_birth":"1995-07-22T00:00:00.000Z","height":1.87,"weight":85,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":962319848,"name":"Tarasue Barnett","nationality":"JAM","sex":"female","date_of_birth":"1993-09-10T00:00:00.000Z","height":1.78,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":335960074,"name":"Tarek Ayad","nationality":"EGY","sex":"male","date_of_birth":"1987-05-29T00:00:00.000Z","height":1.8,"weight":75,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":769863760,"name":"Tarek Aziz Benaissa","nationality":"ALG","sex":"male","date_of_birth":"1991-04-07T00:00:00.000Z","height":1.7,"weight":66,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":993851056,"name":"Tarik Langat Akdag","nationality":"TUR","sex":"male","date_of_birth":"1988-06-16T00:00:00.000Z","height":1.76,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":511260324,"name":"Tariq Ahmed Al-Amri","nationality":"KSA","sex":"male","date_of_birth":"1990-12-23T00:00:00.000Z","height":1.65,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":108994538,"name":"Taro Daniel","nationality":"JPN","sex":"male","date_of_birth":"1993-01-27T00:00:00.000Z","height":1.91,"weight":76,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":579881556,"name":"Taru Kuoppa","nationality":"FIN","sex":"female","date_of_birth":"1983-11-14T00:00:00.000Z","height":1.73,"weight":63,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":373794222,"name":"Taryn Suttie","nationality":"CAN","sex":"female","date_of_birth":"1990-12-07T00:00:00.000Z","height":1.83,"weight":103,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":729866752,"name":"Tasa Jiya","nationality":"NED","sex":"female","date_of_birth":"1997-09-16T00:00:00.000Z","height":1.84,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":244910670,"name":"Tasama Moogas","nationality":"ISR","sex":"male","date_of_birth":"1988-02-02T00:00:00.000Z","height":1.64,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":983364224,"name":"Tashreeq Morris","nationality":"RSA","sex":"male","date_of_birth":"1994-05-13T00:00:00.000Z","height":1.89,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":858607766,"name":"Tatenda Tsumba","nationality":"ZIM","sex":"male","date_of_birth":"1991-11-12T00:00:00.000Z","height":1.83,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":245946322,"name":"Tatiana Ariza","nationality":"COL","sex":"female","date_of_birth":"1991-02-21T00:00:00.000Z","height":1.61,"weight":52,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":878935662,"name":"Tatiana Barsuk","nationality":"RUS","sex":"female","date_of_birth":"1985-02-22T00:00:00.000Z","height":1.7,"weight":66,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":539307863,"name":"Tatiana Chisca","nationality":"MDA","sex":"female","date_of_birth":"1995-07-19T00:00:00.000Z","height":1.75,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":981120716,"name":"Tatiana Drozdovskaya","nationality":"BLR","sex":"female","date_of_birth":"1978-12-06T00:00:00.000Z","height":1.75,"weight":69,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":6056876,"name":"Tatiana Erokhina","nationality":"RUS","sex":"female","date_of_birth":"1984-09-07T00:00:00.000Z","height":1.85,"weight":73,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":374496832,"name":"Tatiana Guderzo","nationality":"ITA","sex":"female","date_of_birth":"1984-08-22T00:00:00.000Z","height":1.6,"weight":55,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":326358515,"name":"Tatiana Kosheleva","nationality":"RUS","sex":"female","date_of_birth":"1988-12-23T00:00:00.000Z","height":1.91,"weight":67,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":192110887,"name":"Tatiana Logunova","nationality":"RUS","sex":"female","date_of_birth":"1980-07-03T00:00:00.000Z","height":1.74,"weight":62,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":737519683,"name":"Tatiana Soledad Rizzo","nationality":"ARG","sex":"female","date_of_birth":"1986-12-30T00:00:00.000Z","height":1.78,"weight":64,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":829450313,"name":"Tatiane Pacheco","nationality":"BRA","sex":"female","date_of_birth":"1990-10-16T00:00:00.000Z","height":1.81,"weight":69,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":12705539,"name":"Tatiele Roberta de Carvalho","nationality":"BRA","sex":"female","date_of_birth":"1989-11-22T00:00:00.000Z","height":1.56,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":848018614,"name":"Tatjana Djekanovic","nationality":"BIH","sex":"female","date_of_birth":"1997-02-25T00:00:00.000Z","height":1.68,"weight":54,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":177848801,"name":"Tatjana Pinto","nationality":"GER","sex":"female","date_of_birth":"1992-07-02T00:00:00.000Z","height":1.7,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":854144627,"name":"Tatsiana Khaladovich","nationality":"BLR","sex":"female","date_of_birth":"1991-06-21T00:00:00.000Z","height":1.81,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":993489737,"name":"Tatsiana Korzh","nationality":"BLR","sex":"female","date_of_birth":"1993-03-17T00:00:00.000Z","height":1.75,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":880574161,"name":"Tatsiana Kukhta","nationality":"BLR","sex":"female","date_of_birth":"1990-06-13T00:00:00.000Z","height":1.85,"weight":77,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":133803510,"name":"Tatsiana Likhtarovich","nationality":"BLR","sex":"female","date_of_birth":"1988-03-29T00:00:00.000Z","height":1.8,"weight":67,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":179784825,"name":"Tatsiana Piatrenia","nationality":"BLR","sex":"female","date_of_birth":"1981-10-18T00:00:00.000Z","height":1.65,"weight":52,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":194275450,"name":"Tatsiana Sharakova","nationality":"BLR","sex":"female","date_of_birth":"1984-07-31T00:00:00.000Z","height":1.6,"weight":52,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":840107784,"name":"Tatyana Troina","nationality":"BLR","sex":"female","date_of_birth":"1981-06-30T00:00:00.000Z","height":1.88,"weight":78,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":13841357,"name":"Tavis Bailey","nationality":"USA","sex":"male","date_of_birth":"1992-01-06T00:00:00.000Z","height":1.91,"weight":124,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":385700766,"name":"Tawin Hanprab","nationality":"THA","sex":"male","date_of_birth":"1998-08-01T00:00:00.000Z","height":1.81,"weight":58,"sport":"taekwondo","gold":0,"silver":1,"bronze":0,"info":null},{"id":417534147,"name":"Taybe Mustafa Yusein","nationality":"BUL","sex":"female","date_of_birth":"1991-05-04T00:00:00.000Z","height":1.63,"weight":63,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":928304511,"name":"Taylor Curran","nationality":"CAN","sex":"male","date_of_birth":"1992-05-19T00:00:00.000Z","height":1.83,"weight":80,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":849242377,"name":"Taylor Ellis-Watson","nationality":"USA","sex":"female","date_of_birth":"1993-05-06T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":45282983,"name":"Taylor Madison Ruck","nationality":"CAN","sex":"female","date_of_birth":"2000-05-28T00:00:00.000Z","height":1.83,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":2,"info":null},{"id":721284471,"name":"Taylor McKeown","nationality":"AUS","sex":"female","date_of_birth":"1995-03-17T00:00:00.000Z","height":1.78,"weight":65,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":240962566,"name":"Taylor Milne","nationality":"CAN","sex":"male","date_of_birth":"1981-09-14T00:00:00.000Z","height":1.65,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":32103246,"name":"Taylor Phinney","nationality":"USA","sex":"male","date_of_birth":"1990-06-27T00:00:00.000Z","height":1.96,"weight":81,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":84694873,"name":"Taylor Sander","nationality":"USA","sex":"male","date_of_birth":"1992-03-17T00:00:00.000Z","height":1.96,"weight":80,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":288362768,"name":"Taylor Worth","nationality":"AUS","sex":"male","date_of_birth":"1991-01-08T00:00:00.000Z","height":1.74,"weight":60,"sport":"archery","gold":0,"silver":0,"bronze":1,"info":null},{"id":58561312,"name":"Teau McKenzie","nationality":"COK","sex":"female","date_of_birth":"1995-03-12T00:00:00.000Z","height":1.83,"weight":67,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":777261301,"name":"Tebogo Moerane","nationality":"RSA","sex":"male","date_of_birth":"1995-04-07T00:00:00.000Z","height":1.67,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":93902028,"name":"Teddy Atine - Venel","nationality":"FRA","sex":"male","date_of_birth":"1985-03-16T00:00:00.000Z","height":1.84,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":714540580,"name":"Teddy Riner","nationality":"FRA","sex":"male","date_of_birth":"1989-04-07T00:00:00.000Z","height":2.03,"weight":139,"sport":"judo","gold":1,"silver":0,"bronze":0,"info":"The “Teddy Bear” (undefeated since 2010) is a 2.04m-tall French athlete. Riner is an eight-time world champion in the +100kg class (winning twice at Rio, in 2007 and 2013), five-time European champion and won gold at London 2012 and bronze at Beijing 2008"},{"id":97224345,"name":"Tega Odele","nationality":"NGR","sex":"male","date_of_birth":"1995-12-06T00:00:00.000Z","height":1.88,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":606135754,"name":"Teja Belak","nationality":"SLO","sex":"female","date_of_birth":"1994-04-22T00:00:00.000Z","height":1.57,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":556483244,"name":"Teliana Pereira","nationality":"BRA","sex":"female","date_of_birth":"1988-07-20T00:00:00.000Z","height":1.67,"weight":62,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":670067598,"name":"Telma Monteiro","nationality":"POR","sex":"female","date_of_birth":"1985-12-27T00:00:00.000Z","height":1.61,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":781746584,"name":"Telma Santos","nationality":"POR","sex":"female","date_of_birth":"1983-08-01T00:00:00.000Z","height":1.63,"weight":55,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":679960058,"name":"Temuujin Purevjav","nationality":"MGL","sex":"male","date_of_birth":"1994-06-02T00:00:00.000Z","height":1.73,"weight":63,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":261206041,"name":"Temuulen Battulga","nationality":"MGL","sex":"male","date_of_birth":"1988-10-07T00:00:00.000Z","height":1.83,"weight":124,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":7619971,"name":"Teodorico Caporaso","nationality":"ITA","sex":"male","date_of_birth":"1987-09-14T00:00:00.000Z","height":1.7,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":743311898,"name":"Teofilo Gutierrez","nationality":"COL","sex":"male","date_of_birth":"1985-05-17T00:00:00.000Z","height":1.8,"weight":82,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":675969120,"name":"Teofimo Andres Lopez Rivera","nationality":"HON","sex":"male","date_of_birth":"1997-07-30T00:00:00.000Z","height":1.76,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":620846374,"name":"Teona Bostashvili","nationality":"GEO","sex":"female","date_of_birth":"1998-01-19T00:00:00.000Z","height":1.64,"weight":52,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":654886163,"name":"Teray Smith","nationality":"BAH","sex":"male","date_of_birth":"1994-09-28T00:00:00.000Z","height":1.88,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":214021045,"name":"Teresa Frassinetti","nationality":"ITA","sex":"female","date_of_birth":"1985-12-24T00:00:00.000Z","height":1.78,"weight":75,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":57418889,"name":"Teresa Lu","nationality":"TPE","sex":"female","date_of_birth":"1987-10-13T00:00:00.000Z","height":1.64,"weight":57,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":38799648,"name":"Teresa Patricia Almeida","nationality":"ANG","sex":"female","date_of_birth":"1988-04-05T00:00:00.000Z","height":1.7,"weight":98,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":364848926,"name":"Teresa Portela","nationality":"POR","sex":"female","date_of_birth":"1987-10-30T00:00:00.000Z","height":1.62,"weight":63,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":18635175,"name":"Teresa Portela Rivas","nationality":"ESP","sex":"female","date_of_birth":"1982-05-05T00:00:00.000Z","height":1.72,"weight":69,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":923351948,"name":"Tereza Master","nationality":"MAW","sex":"female","date_of_birth":"1988-09-21T00:00:00.000Z","height":1.49,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":242422662,"name":"Terina Te Tamaki","nationality":"NZL","sex":"female","date_of_birth":"1997-05-01T00:00:00.000Z","height":1.65,"weight":67,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":334953964,"name":"Tero Pitkamaki","nationality":"FIN","sex":"male","date_of_birth":"1982-12-19T00:00:00.000Z","height":1.95,"weight":94,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":672973707,"name":"Tero Seppo Vaelimaeki","nationality":"FIN","sex":"male","date_of_birth":"1982-03-21T00:00:00.000Z","height":1.7,"weight":73,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":395956352,"name":"Terry Bouhraoua","nationality":"FRA","sex":"male","date_of_birth":"1987-08-29T00:00:00.000Z","height":1.69,"weight":65,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":125367694,"name":"Teruya Goto","nationality":"JPN","sex":"male","date_of_birth":"1991-12-18T00:00:00.000Z","height":1.77,"weight":82,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":510104446,"name":"Teruyoshi Akiyama","nationality":"JPN","sex":"male","date_of_birth":"1971-12-25T00:00:00.000Z","height":1.68,"weight":65,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":102862787,"name":"Tervel Ivaylov Dlagnev","nationality":"USA","sex":"male","date_of_birth":"1985-11-19T00:00:00.000Z","height":1.88,"weight":122,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":655229990,"name":"Tesfaye Abera","nationality":"ETH","sex":"male","date_of_birth":"1992-03-31T00:00:00.000Z","height":1.92,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":135938063,"name":"Tess Oliveira","nationality":"BRA","sex":"female","date_of_birth":"1987-01-06T00:00:00.000Z","height":1.65,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":651217766,"name":"Tess Wester","nationality":"NED","sex":"female","date_of_birth":"1993-05-19T00:00:00.000Z","height":1.78,"weight":70,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":723655440,"name":"Tessa Gobbo","nationality":"USA","sex":"female","date_of_birth":"1990-12-08T00:00:00.000Z","height":1.86,"weight":81,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":847466727,"name":"Tessa Lavey","nationality":"AUS","sex":"female","date_of_birth":"1993-03-29T00:00:00.000Z","height":1.72,"weight":68,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":647467828,"name":"Tessa van Schagen","nationality":"NED","sex":"female","date_of_birth":"1994-02-02T00:00:00.000Z","height":1.68,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":166897661,"name":"Tessie Savelkouls","nationality":"NED","sex":"female","date_of_birth":"1992-03-11T00:00:00.000Z","height":1.82,"weight":95,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":279816745,"name":"Tetiana Melnyk","nationality":"UKR","sex":"female","date_of_birth":"1995-04-02T00:00:00.000Z","height":1.85,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":740317343,"name":"Tetyana Bilenko","nationality":"UKR","sex":"female","date_of_birth":"1983-11-23T00:00:00.000Z","height":1.78,"weight":67,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":649148509,"name":"Tetyana Kob","nationality":"UKR","sex":"female","date_of_birth":"1987-10-25T00:00:00.000Z","height":1.61,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":159812118,"name":"Tewelde Estifanos","nationality":"ERI","sex":"male","date_of_birth":"1981-11-02T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":807447097,"name":"Teymur Mammadov","nationality":"AZE","sex":"male","date_of_birth":"1993-01-11T00:00:00.000Z","height":1.96,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":370652177,"name":"Teymuraz Gabashvili","nationality":"RUS","sex":"male","date_of_birth":"1985-05-23T00:00:00.000Z","height":1.87,"weight":85,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":754858523,"name":"Thabiso Kutumela","nationality":"RSA","sex":"male","date_of_birth":"1993-07-01T00:00:00.000Z","height":1.75,"weight":68,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":210040104,"name":"Thadius Katua","nationality":"PNG","sex":"male","date_of_birth":"1997-11-04T00:00:00.000Z","height":1.67,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":332545480,"name":"Thais Guedes","nationality":"BRA","sex":"female","date_of_birth":"1993-01-20T00:00:00.000Z","height":1.64,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":951388142,"name":"Thaisa","nationality":"BRA","sex":"female","date_of_birth":"1988-12-17T00:00:00.000Z","height":1.66,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":296920401,"name":"Thaisa Menezes","nationality":"BRA","sex":"female","date_of_birth":"1987-05-15T00:00:00.000Z","height":1.96,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":900917316,"name":"Thanackal Gopi","nationality":"IND","sex":"male","date_of_birth":"1988-05-24T00:00:00.000Z","height":1.66,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":381843063,"name":"Thanasi Kokkinakis","nationality":"AUS","sex":"male","date_of_birth":"1996-04-10T00:00:00.000Z","height":1.96,"weight":82,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":699394575,"name":"Thanh An Vu","nationality":"VIE","sex":"male","date_of_birth":"1992-08-07T00:00:00.000Z","height":1.85,"weight":80,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":5130801,"name":"Thanh Ngung Nguyen","nationality":"VIE","sex":"male","date_of_birth":"1992-04-08T00:00:00.000Z","height":1.65,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":955206576,"name":"Thapelo Morena","nationality":"RSA","sex":"male","date_of_birth":"1993-08-06T00:00:00.000Z","height":1.7,"weight":62,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":315255712,"name":"Thea Lafond","nationality":"DMA","sex":"female","date_of_birth":"1994-04-05T00:00:00.000Z","height":1.73,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":439436986,"name":"Thembi Kgatlana","nationality":"RSA","sex":"female","date_of_birth":"1996-05-02T00:00:00.000Z","height":1.56,"weight":50,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":215472787,"name":"Theo Bos","nationality":"NED","sex":"male","date_of_birth":"1983-08-22T00:00:00.000Z","height":1.9,"weight":85,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":529392127,"name":"Theo Bussiere","nationality":"FRA","sex":"male","date_of_birth":"1995-01-18T00:00:00.000Z","height":1.9,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":104108764,"name":"Theo Piniau","nationality":"PNG","sex":"male","date_of_birth":"1993-06-08T00:00:00.000Z","height":1.72,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":306944769,"name":"Theo Reinhardt","nationality":"GER","sex":"male","date_of_birth":"1990-09-17T00:00:00.000Z","height":1.77,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":263136966,"name":"Theo van de Vendel","nationality":"NED","sex":"male","date_of_birth":"1980-10-24T00:00:00.000Z","height":1.76,"weight":73,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":648002342,"name":"Theodora Drakou","nationality":"GRE","sex":"female","date_of_birth":"1992-02-06T00:00:00.000Z","height":1.69,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":470687922,"name":"Theodoros Iakovidis","nationality":"GRE","sex":"male","date_of_birth":"1991-02-12T00:00:00.000Z","height":1.81,"weight":85,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":466992964,"name":"Theophile Onfroy","nationality":"FRA","sex":"male","date_of_birth":"1992-12-29T00:00:00.000Z","height":1.89,"weight":82,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":119367610,"name":"Theorine Christelle Aboa Mbeza","nationality":"CMR","sex":"female","date_of_birth":"1992-08-25T00:00:00.000Z","height":1.82,"weight":78,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":460776365,"name":"Theresa Fitzpatrick","nationality":"NZL","sex":"female","date_of_birth":"1995-02-25T00:00:00.000Z","height":1.68,"weight":75,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":365498123,"name":"Therese Alshammar","nationality":"SWE","sex":"female","date_of_birth":"1977-08-26T00:00:00.000Z","height":1.8,"weight":64,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":27368310,"name":"Thery Schir","nationality":"SUI","sex":"male","date_of_birth":"1993-02-18T00:00:00.000Z","height":1.86,"weight":77,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":559704929,"name":"Thi Anh Do","nationality":"VIE","sex":"female","date_of_birth":"1996-02-09T00:00:00.000Z","height":1.65,"weight":58,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":581029614,"name":"Thi Ha Thanh Phan","nationality":"VIE","sex":"female","date_of_birth":"1991-10-16T00:00:00.000Z","height":1.63,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":419742149,"name":"Thi Hang Vu","nationality":"VIE","sex":"female","date_of_birth":"1992-05-25T00:00:00.000Z","height":1.58,"weight":47,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":89761321,"name":"Thi Huyen Nguyen","nationality":"VIE","sex":"female","date_of_birth":"1993-05-19T00:00:00.000Z","height":1.58,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":414794696,"name":"Thi Huyen Vuong","nationality":"VIE","sex":"female","date_of_birth":"1992-06-22T00:00:00.000Z","height":1.55,"weight":48,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":262269527,"name":"Thi Le Dung Nguyen","nationality":"VIE","sex":"female","date_of_birth":"1985-09-09T00:00:00.000Z","height":1.68,"weight":55,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":340277633,"name":"Thi Lua Nguyen","nationality":"VIE","sex":"female","date_of_birth":"1991-07-24T00:00:00.000Z","height":1.65,"weight":53,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":927744714,"name":"Thi Nhu Hoa Nguyen","nationality":"VIE","sex":"female","date_of_birth":"1984-02-21T00:00:00.000Z","height":1.7,"weight":60,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":244236033,"name":"Thi Trang (b) Vu","nationality":"VIE","sex":"female","date_of_birth":"1992-05-19T00:00:00.000Z","height":1.63,"weight":58,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":666839179,"name":"Thiago Andre","nationality":"BRA","sex":"male","date_of_birth":"1995-08-04T00:00:00.000Z","height":1.63,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":176515757,"name":"Thiago Bomfim","nationality":"BRA","sex":"male","date_of_birth":"1990-09-21T00:00:00.000Z","height":1.93,"weight":84,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":544759251,"name":"Thiago Braz da Silva","nationality":"BRA","sex":"male","date_of_birth":"1993-12-16T00:00:00.000Z","height":1.83,"weight":75,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":682318749,"name":"Thiago Maia","nationality":"BRA","sex":"male","date_of_birth":"1997-03-23T00:00:00.000Z","height":1.78,"weight":69,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":79240685,"name":"Thiago Pereira","nationality":"BRA","sex":"male","date_of_birth":"1986-01-26T00:00:00.000Z","height":1.87,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":36658255,"name":"Thiago Simon","nationality":"BRA","sex":"male","date_of_birth":"1990-04-03T00:00:00.000Z","height":1.84,"weight":93,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":69081785,"name":"Thiagus dos Santos","nationality":"BRA","sex":"male","date_of_birth":"1989-01-25T00:00:00.000Z","height":1.98,"weight":104,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":23647767,"name":"Thibault Colard","nationality":"FRA","sex":"male","date_of_birth":"1992-01-13T00:00:00.000Z","height":1.87,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":228211001,"name":"Thibault Rossard","nationality":"FRA","sex":"male","date_of_birth":"1993-08-28T00:00:00.000Z","height":1.93,"weight":85,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":914516277,"name":"Thibaut Amani Danho","nationality":"CIV","sex":"male","date_of_birth":"1994-01-15T00:00:00.000Z","height":1.85,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":814590429,"name":"Thibaut Simon","nationality":"FRA","sex":"male","date_of_birth":"1983-12-18T00:00:00.000Z","height":1.92,"weight":98,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":999374064,"name":"Thibaut Vallette","nationality":"FRA","sex":"male","date_of_birth":"1974-01-18T00:00:00.000Z","height":1.71,"weight":60,"sport":"equestrian","gold":1,"silver":0,"bronze":0,"info":null},{"id":50266146,"name":"Thierry Omeyer","nationality":"FRA","sex":"male","date_of_birth":"1976-11-02T00:00:00.000Z","height":1.92,"weight":93,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":"Elected the best keeper in the world, in 2008, Thierry Omeyer has won the most important titles of his career with France's national handball team. These include two Olympic golds (Beijing 2008 and London 2012) and four world and three European titles."},{"id":963532102,"name":"Thijs Visser","nationality":"ARU","sex":"male","date_of_birth":"1989-10-19T00:00:00.000Z","height":1.84,"weight":88,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":326914230,"name":"Thint Myaat","nationality":"MYA","sex":"male","date_of_birth":"2002-04-14T00:00:00.000Z","height":1.6,"weight":52,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":172048822,"name":"Thomas Baroukh","nationality":"FRA","sex":"male","date_of_birth":"1987-12-15T00:00:00.000Z","height":1.83,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":849127949,"name":"Thomas Barr","nationality":"IRL","sex":"male","date_of_birth":"1992-07-24T00:00:00.000Z","height":1.83,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":714454697,"name":"Thomas Barrows","nationality":"USA","sex":"male","date_of_birth":"1987-11-02T00:00:00.000Z","height":1.86,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":896818368,"name":"Thomas Boudat","nationality":"FRA","sex":"male","date_of_birth":"1994-02-24T00:00:00.000Z","height":1.75,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":360675944,"name":"Thomas Briceno","nationality":"CHI","sex":"male","date_of_birth":"1993-09-16T00:00:00.000Z","height":1.86,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":168124839,"name":"Thomas Briels","nationality":"BEL","sex":"male","date_of_birth":"1987-08-23T00:00:00.000Z","height":1.72,"weight":71,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":475825949,"name":"Thomas Daley","nationality":"GBR","sex":"male","date_of_birth":"1994-05-21T00:00:00.000Z","height":1.77,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":"He made his debut at Beijing 2008, aged only 14. In 2009, Briton Tom Daley took the world title in the 10m individual and, at London 2012, won the bronze. A social network phenomenon, Tom has also participated in a TV show."},{"id":360616415,"name":"Thomas Dunstan","nationality":"USA","sex":"male","date_of_birth":"1997-09-29T00:00:00.000Z","height":1.94,"weight":96,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":391980322,"name":"Thomas Fabbiano","nationality":"ITA","sex":"male","date_of_birth":"1989-05-26T00:00:00.000Z","height":1.73,"weight":70,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":521339306,"name":"Thomas Fraser-Holmes","nationality":"AUS","sex":"male","date_of_birth":"1991-10-09T00:00:00.000Z","height":1.94,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":868940905,"name":"Thomas Hagelskjar","nationality":"DEN","sex":"male","date_of_birth":"1995-02-04T00:00:00.000Z","height":1.87,"weight":81,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":371431214,"name":"Thomas Heurtel","nationality":"FRA","sex":"male","date_of_birth":"1989-04-10T00:00:00.000Z","height":1.88,"weight":83,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":112978529,"name":"Thomas Jaeschke","nationality":"USA","sex":"male","date_of_birth":"1993-09-04T00:00:00.000Z","height":1.98,"weight":84,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":219077110,"name":"Thomas Jordier","nationality":"FRA","sex":"male","date_of_birth":"1994-08-12T00:00:00.000Z","height":1.7,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":94661624,"name":"Thomas Mathis","nationality":"AUT","sex":"male","date_of_birth":"1990-04-25T00:00:00.000Z","height":1.78,"weight":63,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":374876485,"name":"Thomas Murray","nationality":"NZL","sex":"male","date_of_birth":"1994-04-05T00:00:00.000Z","height":1.89,"weight":87,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":782766062,"name":"Thomas Pieters","nationality":"BEL","sex":"male","date_of_birth":"1992-01-27T00:00:00.000Z","height":1.96,"weight":85,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":870559020,"name":"Thomas Ploessel","nationality":"GER","sex":"male","date_of_birth":"1988-04-29T00:00:00.000Z","height":1.81,"weight":80,"sport":"sailing","gold":0,"silver":0,"bronze":1,"info":null},{"id":900233130,"name":"Thomas Rohler","nationality":"GER","sex":"male","date_of_birth":"1991-09-30T00:00:00.000Z","height":1.92,"weight":92,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":496341298,"name":"Thomas Simart","nationality":"FRA","sex":"male","date_of_birth":"1987-10-09T00:00:00.000Z","height":1.8,"weight":82,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":851753829,"name":"Thomas Springer","nationality":"AUT","sex":"male","date_of_birth":"1984-11-06T00:00:00.000Z","height":1.84,"weight":70,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":514467487,"name":"Thomas Zajac","nationality":"AUT","sex":"male","date_of_birth":"1985-09-22T00:00:00.000Z","height":1.8,"weight":77,"sport":"sailing","gold":0,"silver":0,"bronze":1,"info":null},{"id":666963728,"name":"Thomas van der Plaetsen","nationality":"BEL","sex":"male","date_of_birth":"1990-12-24T00:00:00.000Z","height":1.86,"weight":82,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":831910280,"name":"Thomaz Bellucci","nationality":"BRA","sex":"male","date_of_birth":"1987-12-30T00:00:00.000Z","height":1.88,"weight":82,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":854048729,"name":"Thongchai Jaidee","nationality":"THA","sex":"male","date_of_birth":"1969-11-08T00:00:00.000Z","height":1.7,"weight":63,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":272895419,"name":"Thorbjorn Olesen","nationality":"DEN","sex":"male","date_of_birth":"1989-12-21T00:00:00.000Z","height":1.77,"weight":70,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":711886868,"name":"Thormodur Jonsson","nationality":"ISL","sex":"male","date_of_birth":"1983-03-02T00:00:00.000Z","height":1.96,"weight":110,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":962042754,"name":"Thulasi Tharumalingam","nationality":"QAT","sex":"male","date_of_birth":"1992-10-24T00:00:00.000Z","height":1.78,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":494000666,"name":"Tia-Adana Belle","nationality":"BAR","sex":"female","date_of_birth":"1996-06-15T00:00:00.000Z","height":1.78,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":971688032,"name":"Tia-Clair Toomey","nationality":"AUS","sex":"female","date_of_birth":"1993-07-22T00:00:00.000Z","height":1.58,"weight":58,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":512121702,"name":"Tiago Apolonia","nationality":"POR","sex":"male","date_of_birth":"1986-07-28T00:00:00.000Z","height":1.85,"weight":76,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":850164905,"name":"Tiago Camilo","nationality":"BRA","sex":"male","date_of_birth":"1982-05-24T00:00:00.000Z","height":1.8,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":192124301,"name":"Tiago Ilori","nationality":"POR","sex":"male","date_of_birth":"1993-02-26T00:00:00.000Z","height":1.9,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":697851562,"name":"Tiago Jorge Oliveira Ferreira","nationality":"POR","sex":"male","date_of_birth":"1988-12-07T00:00:00.000Z","height":1.94,"weight":74,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":977600409,"name":"Tiago Silva","nationality":"POR","sex":"male","date_of_birth":"1993-06-02T00:00:00.000Z","height":1.7,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":802574833,"name":"Tian Miao","nationality":"CHN","sex":"female","date_of_birth":"1993-01-18T00:00:00.000Z","height":1.86,"weight":83,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":562349871,"name":"Tianna Bartoletta","nationality":"USA","sex":"female","date_of_birth":"1985-08-30T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":2,"silver":0,"bronze":0,"info":null},{"id":439028036,"name":"Tianshi Zhong","nationality":"CHN","sex":"female","date_of_birth":"1991-02-02T00:00:00.000Z","height":1.68,"weight":62,"sport":"cycling","gold":1,"silver":0,"bronze":0,"info":null},{"id":399009704,"name":"Tianwei Feng","nationality":"SIN","sex":"female","date_of_birth":"1986-08-31T00:00:00.000Z","height":1.63,"weight":55,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":290265598,"name":"Tiberiu Dolniceanu","nationality":"ROU","sex":"male","date_of_birth":"1988-04-03T00:00:00.000Z","height":1.79,"weight":79,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":579357884,"name":"Tibor Hufnagel","nationality":"HUN","sex":"male","date_of_birth":"1991-03-18T00:00:00.000Z","height":1.75,"weight":75,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":123268106,"name":"Tibor Linka","nationality":"SVK","sex":"male","date_of_birth":"1995-02-13T00:00:00.000Z","height":1.99,"weight":95,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":832967742,"name":"Tien Chen Chou","nationality":"TPE","sex":"male","date_of_birth":"1990-01-08T00:00:00.000Z","height":1.8,"weight":78,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":307265298,"name":"Tien Minh Nguyen","nationality":"VIE","sex":"male","date_of_birth":"1983-02-12T00:00:00.000Z","height":1.68,"weight":60,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":334432362,"name":"Tiexin Wang","nationality":"CHN","sex":"male","date_of_birth":"1989-02-24T00:00:00.000Z","height":1.87,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":589841221,"name":"Tiffany Chan","nationality":"HKG","sex":"female","date_of_birth":"1993-09-12T00:00:00.000Z","height":1.61,"weight":52,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":336393065,"name":"Tiffany Foster","nationality":"CAN","sex":"female","date_of_birth":"1984-07-24T00:00:00.000Z","height":1.65,"weight":50,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":103328512,"name":"Tiffany Geroudet","nationality":"SUI","sex":"female","date_of_birth":"1986-09-03T00:00:00.000Z","height":1.7,"weight":67,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":95014047,"name":"Tiffany Porter","nationality":"GBR","sex":"female","date_of_birth":"1987-11-13T00:00:00.000Z","height":1.75,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":939411758,"name":"Tigest Getent","nationality":"BRN","sex":"female","date_of_birth":"1997-07-07T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":608439897,"name":"Tigist Gashaw","nationality":"BRN","sex":"female","date_of_birth":"1996-12-25T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":775831149,"name":"Tigist Tufa","nationality":"ETH","sex":"female","date_of_birth":"1987-01-26T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":487073298,"name":"Tigst Assefa","nationality":"ETH","sex":"female","date_of_birth":"1996-12-03T00:00:00.000Z","height":1.68,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":578522258,"name":"Tiidrek Nurme","nationality":"EST","sex":"male","date_of_birth":"1985-11-18T00:00:00.000Z","height":1.84,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":418178080,"name":"Tijana Bogdanovic","nationality":"SRB","sex":"female","date_of_birth":"1998-05-04T00:00:00.000Z","height":1.72,"weight":52,"sport":"taekwondo","gold":0,"silver":1,"bronze":0,"info":null},{"id":404485825,"name":"Tijana Boskovic","nationality":"SRB","sex":"female","date_of_birth":"1997-03-08T00:00:00.000Z","height":1.93,"weight":82,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":28414240,"name":"Tijana Malesevic","nationality":"SRB","sex":"female","date_of_birth":"1991-03-18T00:00:00.000Z","height":1.85,"weight":78,"sport":"volleyball","gold":0,"silver":1,"bronze":0,"info":null},{"id":280943173,"name":"Tikhomir Ivanov","nationality":"BUL","sex":"male","date_of_birth":"1994-07-11T00:00:00.000Z","height":1.97,"weight":76,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":250232095,"name":"Tilbe Senyurek","nationality":"TUR","sex":"female","date_of_birth":"1995-04-26T00:00:00.000Z","height":1.89,"weight":86,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":566924681,"name":"Tim Agaba","nationality":"RSA","sex":"male","date_of_birth":"1989-07-23T00:00:00.000Z","height":1.93,"weight":104,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":321813613,"name":"Tim Deavin","nationality":"AUS","sex":"male","date_of_birth":"1984-07-27T00:00:00.000Z","height":1.85,"weight":77,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":108419989,"name":"Tim Erlandsson","nationality":"SWE","sex":"male","date_of_birth":"1996-12-25T00:00:00.000Z","height":1.92,"weight":79,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":162316722,"name":"Tim Heijbrock","nationality":"NED","sex":"male","date_of_birth":"1985-10-28T00:00:00.000Z","height":1.89,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":366414312,"name":"Tim Kneale","nationality":"GBR","sex":"male","date_of_birth":"1982-10-16T00:00:00.000Z","height":1.82,"weight":76,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":2888213,"name":"Tim Lips","nationality":"NED","sex":"male","date_of_birth":"1985-10-07T00:00:00.000Z","height":1.68,"weight":55,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":757977623,"name":"Tim Mikkelson","nationality":"NZL","sex":"male","date_of_birth":"1986-08-13T00:00:00.000Z","height":1.93,"weight":102,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":966796753,"name":"Tim Nedow","nationality":"CAN","sex":"male","date_of_birth":"1990-10-16T00:00:00.000Z","height":2,"weight":140,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":320004654,"name":"Tim Price","nationality":"NZL","sex":"male","date_of_birth":"1979-04-03T00:00:00.000Z","height":1.89,"weight":75,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":746547519,"name":"Tim Schrijver","nationality":"CAN","sex":"male","date_of_birth":"1992-02-07T00:00:00.000Z","height":2.03,"weight":104,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":329815777,"name":"Tim Shuttleworth","nationality":"GBR","sex":"male","date_of_birth":"1997-04-24T00:00:00.000Z","height":1.92,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":609839139,"name":"Tim Veldt","nationality":"NED","sex":"male","date_of_birth":"1984-02-14T00:00:00.000Z","height":1.86,"weight":78,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":157166055,"name":"Tim Wellens","nationality":"BEL","sex":"male","date_of_birth":"1991-05-10T00:00:00.000Z","height":1.83,"weight":77,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":429177971,"name":"Tima Tamoi","nationality":"FIJ","sex":"female","date_of_birth":"1987-11-30T00:00:00.000Z","height":1.75,"weight":70,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":264598644,"name":"Timaima Ravisa","nationality":"FIJ","sex":"female","date_of_birth":"1988-05-01T00:00:00.000Z","height":1.6,"weight":55,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":978453530,"name":"Timea Babos","nationality":"HUN","sex":"female","date_of_birth":"1993-05-10T00:00:00.000Z","height":1.79,"weight":68,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":693524589,"name":"Timea Bacsinszky","nationality":"SUI","sex":"female","date_of_birth":"1989-06-08T00:00:00.000Z","height":1.71,"weight":62,"sport":"tennis","gold":0,"silver":1,"bronze":0,"info":null},{"id":375628571,"name":"Timm Herzbruch","nationality":"GER","sex":"male","date_of_birth":"1997-06-07T00:00:00.000Z","height":1.8,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":169189076,"name":"Timo Boll","nationality":"GER","sex":"male","date_of_birth":"1981-03-08T00:00:00.000Z","height":1.81,"weight":74,"sport":"table tennis","gold":0,"silver":0,"bronze":1,"info":null},{"id":490797825,"name":"Timo Horn","nationality":"GER","sex":"male","date_of_birth":"1993-05-12T00:00:00.000Z","height":1.91,"weight":89,"sport":"football","gold":0,"silver":1,"bronze":0,"info":null},{"id":533145484,"name":"Timothey N'Guessan","nationality":"FRA","sex":"male","date_of_birth":"1992-09-18T00:00:00.000Z","height":1.86,"weight":105,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":439125836,"name":"Timothy Cockram","nationality":"IRL","sex":"male","date_of_birth":"1984-01-18T00:00:00.000Z","height":1.77,"weight":78,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":114387888,"name":"Timothy Toroitich","nationality":"UGA","sex":"male","date_of_birth":"1991-10-10T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":170511922,"name":"Timothy Wang","nationality":"USA","sex":"male","date_of_birth":"1991-08-17T00:00:00.000Z","height":1.76,"weight":65,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":88388879,"name":"Timothy Wynter","nationality":"JAM","sex":"male","date_of_birth":"1996-01-16T00:00:00.000Z","height":1.87,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":715800350,"name":"Timur Khaidarov","nationality":"KAZ","sex":"male","date_of_birth":"1996-03-28T00:00:00.000Z","height":1.85,"weight":86,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":231378561,"name":"Timur Oruz","nationality":"GER","sex":"male","date_of_birth":"1994-10-27T00:00:00.000Z","height":1.86,"weight":87,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":503276231,"name":"Timur Safin","nationality":"RUS","sex":"male","date_of_birth":"1992-08-04T00:00:00.000Z","height":1.82,"weight":82,"sport":"fencing","gold":1,"silver":0,"bronze":1,"info":null},{"id":465038950,"name":"Tina Charles","nationality":"USA","sex":"female","date_of_birth":"1988-12-05T00:00:00.000Z","height":1.93,"weight":88,"sport":"basketball","gold":1,"silver":0,"bronze":0,"info":null},{"id":128638379,"name":"Tina Dietze","nationality":"GER","sex":"female","date_of_birth":"1988-01-25T00:00:00.000Z","height":1.72,"weight":68,"sport":"canoe","gold":0,"silver":2,"bronze":0,"info":null},{"id":763030230,"name":"Tina Mihelic","nationality":"CRO","sex":"female","date_of_birth":"1988-12-30T00:00:00.000Z","height":1.76,"weight":66,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":873408482,"name":"Tina Mrak","nationality":"SLO","sex":"female","date_of_birth":"1988-02-06T00:00:00.000Z","height":1.65,"weight":62,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":826167980,"name":"Tina Punzel","nationality":"GER","sex":"female","date_of_birth":"1995-08-01T00:00:00.000Z","height":1.67,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":390366123,"name":"Tina Skaar","nationality":"NOR","sex":"female","date_of_birth":"1993-08-31T00:00:00.000Z","height":null,"weight":null,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":282154223,"name":"Tina Sutej","nationality":"SLO","sex":"female","date_of_birth":"1988-11-07T00:00:00.000Z","height":1.73,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":657940345,"name":"Tina Trstenjak","nationality":"SLO","sex":"female","date_of_birth":"1990-08-24T00:00:00.000Z","height":1.62,"weight":65,"sport":"judo","gold":1,"silver":0,"bronze":0,"info":null},{"id":727650750,"name":"Tindwende Thierry Sawadogo","nationality":"BUR","sex":"male","date_of_birth":"1995-07-22T00:00:00.000Z","height":1.99,"weight":93,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":872228172,"name":"Ting Shao","nationality":"CHN","sex":"female","date_of_birth":"1989-12-10T00:00:00.000Z","height":1.84,"weight":75,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":622182387,"name":"Ting Wen Quah","nationality":"SIN","sex":"female","date_of_birth":"1992-08-18T00:00:00.000Z","height":1.76,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":975655821,"name":"Ting Ying Huang","nationality":"TPE","sex":"female","date_of_birth":"1990-05-29T00:00:00.000Z","height":1.6,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":738894846,"name":"Ting Zhu","nationality":"CHN","sex":"female","date_of_birth":"1994-11-29T00:00:00.000Z","height":1.95,"weight":78,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":11288154,"name":"Tingmao Shi","nationality":"CHN","sex":"female","date_of_birth":"1991-08-31T00:00:00.000Z","height":1.59,"weight":52,"sport":"aquatics","gold":2,"silver":0,"bronze":0,"info":null},{"id":731978113,"name":"Tingting Liu","nationality":"CHN","sex":"female","date_of_birth":"1990-01-29T00:00:00.000Z","height":1.78,"weight":87,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":549917625,"name":"Tinne Wilhelmsson Silfven","nationality":"SWE","sex":"female","date_of_birth":"1967-07-12T00:00:00.000Z","height":1.67,"weight":60,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":973558445,"name":"Tintu Lukka","nationality":"IND","sex":"female","date_of_birth":"1989-04-26T00:00:00.000Z","height":1.63,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":945244491,"name":"Tirfi Tsegaye","nationality":"ETH","sex":"female","date_of_birth":"1984-11-25T00:00:00.000Z","height":1.62,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":727998449,"name":"Tiril Bue","nationality":"NOR","sex":"female","date_of_birth":"1993-04-26T00:00:00.000Z","height":null,"weight":null,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":373463162,"name":"Tirunesh Dibaba","nationality":"ETH","sex":"female","date_of_birth":"1985-06-01T00:00:00.000Z","height":1.66,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":92191114,"name":"Tjasa Oder","nationality":"SLO","sex":"female","date_of_birth":"1994-06-22T00:00:00.000Z","height":1.8,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":788072979,"name":"Tjasa Pintar","nationality":"SLO","sex":"female","date_of_birth":"1997-02-15T00:00:00.000Z","height":1.75,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":472127952,"name":"Tjasa Vozel","nationality":"SLO","sex":"female","date_of_birth":"1994-07-14T00:00:00.000Z","height":1.71,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":289284299,"name":"Tlotliso Leotlela","nationality":"RSA","sex":"male","date_of_birth":"1998-05-12T00:00:00.000Z","height":1.78,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":895052904,"name":"Toader-Andrei Gontaru","nationality":"ROU","sex":"male","date_of_birth":"1993-02-07T00:00:00.000Z","height":1.9,"weight":92,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":779371307,"name":"Tobias Dahm","nationality":"GER","sex":"male","date_of_birth":"1987-05-23T00:00:00.000Z","height":2.05,"weight":124,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":706990143,"name":"Tobias Englmaier","nationality":"GER","sex":"male","date_of_birth":"1988-01-29T00:00:00.000Z","height":1.58,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":283196075,"name":"Tobias Figueiredo","nationality":"POR","sex":"male","date_of_birth":"1994-02-02T00:00:00.000Z","height":1.9,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":422345402,"name":"Tobias Franzmann","nationality":"GER","sex":"male","date_of_birth":"1990-12-08T00:00:00.000Z","height":1.81,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":404535189,"name":"Tobias Hauke","nationality":"GER","sex":"male","date_of_birth":"1987-09-10T00:00:00.000Z","height":1.83,"weight":81,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":"The Germany field hockey team captain when it won gold at Beijing 2008 and London 2012, midfielder Tobias Hauke has won the Champions Trophy twice and the European Championship once."},{"id":287021554,"name":"Tobias Karlsson","nationality":"SWE","sex":"male","date_of_birth":"1981-06-04T00:00:00.000Z","height":1.96,"weight":104,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":999276272,"name":"Tobias Reichmann","nationality":"GER","sex":"male","date_of_birth":"1988-05-27T00:00:00.000Z","height":1.88,"weight":87,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":811535862,"name":"Tobias Scherbarth","nationality":"GER","sex":"male","date_of_birth":"1985-08-17T00:00:00.000Z","height":1.95,"weight":87,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":451233303,"name":"Tobin Heath","nationality":"USA","sex":"female","date_of_birth":"1988-05-29T00:00:00.000Z","height":1.62,"weight":54,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":26312714,"name":"Toea Wisil","nationality":"PNG","sex":"female","date_of_birth":"1988-01-01T00:00:00.000Z","height":1.62,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":128575502,"name":"Toghrul Asgarov","nationality":"AZE","sex":"male","date_of_birth":"1992-09-17T00:00:00.000Z","height":1.7,"weight":65,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":893678601,"name":"Tom Boon","nationality":"BEL","sex":"male","date_of_birth":"1990-01-25T00:00:00.000Z","height":1.84,"weight":81,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":905671340,"name":"Tom Bosworth","nationality":"GBR","sex":"male","date_of_birth":"1990-01-17T00:00:00.000Z","height":1.78,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":282018185,"name":"Tom Burton","nationality":"AUS","sex":"male","date_of_birth":"1990-06-27T00:00:00.000Z","height":1.8,"weight":81,"sport":"sailing","gold":1,"silver":0,"bronze":0,"info":null},{"id":698962028,"name":"Tom Craig","nationality":"AUS","sex":"male","date_of_birth":"1995-09-03T00:00:00.000Z","height":1.86,"weight":85,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":115915135,"name":"Tom Cusack","nationality":"AUS","sex":"male","date_of_birth":"1993-03-01T00:00:00.000Z","height":1.91,"weight":101,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":200377186,"name":"Tom Dumoulin","nationality":"NED","sex":"male","date_of_birth":"1990-11-11T00:00:00.000Z","height":1.86,"weight":70,"sport":"cycling","gold":0,"silver":1,"bronze":0,"info":null},{"id":967848122,"name":"Tom Farrell","nationality":"GBR","sex":"male","date_of_birth":"1991-03-23T00:00:00.000Z","height":1.79,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":694130746,"name":"Tom Grambusch","nationality":"GER","sex":"male","date_of_birth":"1995-08-04T00:00:00.000Z","height":1.85,"weight":85,"sport":"hockey","gold":0,"silver":0,"bronze":1,"info":null},{"id":217351049,"name":"Tom Kingston","nationality":"AUS","sex":"male","date_of_birth":"1991-06-19T00:00:00.000Z","height":1.9,"weight":91,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":621529566,"name":"Tom Liebscher","nationality":"GER","sex":"male","date_of_birth":"1993-08-03T00:00:00.000Z","height":1.89,"weight":89,"sport":"canoe","gold":1,"silver":0,"bronze":0,"info":null},{"id":107180600,"name":"Tom Mitchell","nationality":"GBR","sex":"male","date_of_birth":"1989-07-22T00:00:00.000Z","height":1.78,"weight":85,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":959754515,"name":"Tom Pelsmaekers","nationality":"BEL","sex":"male","date_of_birth":"1993-01-26T00:00:00.000Z","height":1.77,"weight":81,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":298179530,"name":"Tom Ramshaw","nationality":"CAN","sex":"male","date_of_birth":"1991-11-18T00:00:00.000Z","height":1.83,"weight":95,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":928952672,"name":"Tom Ransley","nationality":"GBR","sex":"male","date_of_birth":"1985-09-06T00:00:00.000Z","height":1.98,"weight":101,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":169080993,"name":"Tom Richard Goegebuer","nationality":"BEL","sex":"male","date_of_birth":"1975-03-27T00:00:00.000Z","height":1.64,"weight":56,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":771859160,"name":"Tom Shields","nationality":"USA","sex":"male","date_of_birth":"1991-07-11T00:00:00.000Z","height":1.94,"weight":86,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":384204713,"name":"Toma Nikiforov","nationality":"BEL","sex":"male","date_of_birth":"1993-01-25T00:00:00.000Z","height":1.9,"weight":100,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":915410677,"name":"Tomas","nationality":"POR","sex":"male","date_of_birth":"1995-01-30T00:00:00.000Z","height":1.81,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":986152006,"name":"Tomas Aguilera","nationality":"MEX","sex":"male","date_of_birth":"1988-11-15T00:00:00.000Z","height":2.02,"weight":95,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":53247064,"name":"Tomas Gonzalez","nationality":"CHI","sex":"male","date_of_birth":"1985-11-22T00:00:00.000Z","height":1.7,"weight":67,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":542026026,"name":"Tomas Klobucnik","nationality":"SVK","sex":"male","date_of_birth":"1990-06-21T00:00:00.000Z","height":1.85,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":633990854,"name":"Tomas Stanek","nationality":"CZE","sex":"male","date_of_birth":"1991-06-13T00:00:00.000Z","height":1.9,"weight":125,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":674282266,"name":"Tomas Walsh","nationality":"NZL","sex":"male","date_of_birth":"1992-03-01T00:00:00.000Z","height":1.85,"weight":125,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":324400159,"name":"Tomasz Jablonski","nationality":"POL","sex":"male","date_of_birth":"1988-12-29T00:00:00.000Z","height":1.78,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":534870761,"name":"Tomasz Kaczor","nationality":"POL","sex":"male","date_of_birth":"1989-08-04T00:00:00.000Z","height":1.84,"weight":85,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":467871766,"name":"Tomasz Majewski","nationality":"POL","sex":"male","date_of_birth":"1981-08-30T00:00:00.000Z","height":2.04,"weight":142,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":800403831,"name":"Tomasz Polewka","nationality":"POL","sex":"male","date_of_birth":"1994-08-05T00:00:00.000Z","height":2,"weight":96,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":211819667,"name":"Tommy Sugiarto","nationality":"INA","sex":"male","date_of_birth":"1988-05-31T00:00:00.000Z","height":1.75,"weight":71,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":201573939,"name":"Tomohiro Inoue","nationality":"JPN","sex":"male","date_of_birth":"1987-07-17T00:00:00.000Z","height":1.7,"weight":74,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":867127082,"name":"Tomomi Aoki","nationality":"JPN","sex":"female","date_of_birth":"1994-10-25T00:00:00.000Z","height":1.64,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":388992602,"name":"Tomomi Tanaka","nationality":"JPN","sex":"female","date_of_birth":"1988-01-25T00:00:00.000Z","height":1.54,"weight":40,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":940604349,"name":"Tomoya Miguchi","nationality":"JPN","sex":"male","date_of_birth":"1986-04-26T00:00:00.000Z","height":1.8,"weight":67,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":976832903,"name":"Tomoya Tamura","nationality":"JPN","sex":"male","date_of_birth":"1992-08-20T00:00:00.000Z","height":1.78,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":725466241,"name":"Tomoyoshi Fukushima","nationality":"JPN","sex":"male","date_of_birth":"1993-06-03T00:00:00.000Z","height":1.77,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":711821462,"name":"Tomoyuki Matsuda","nationality":"JPN","sex":"male","date_of_birth":"1975-12-12T00:00:00.000Z","height":1.74,"weight":73,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":53505297,"name":"Toms Skujins","nationality":"LAT","sex":"male","date_of_birth":"1991-06-15T00:00:00.000Z","height":1.8,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":917643038,"name":"Tonci Stipanovic","nationality":"CRO","sex":"male","date_of_birth":"1986-06-13T00:00:00.000Z","height":1.78,"weight":81,"sport":"sailing","gold":0,"silver":1,"bronze":0,"info":null},{"id":189873894,"name":"Tone Wieten","nationality":"NED","sex":"male","date_of_birth":"1994-03-17T00:00:00.000Z","height":2.01,"weight":102,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":464586921,"name":"Toni Syarifudin","nationality":"INA","sex":"male","date_of_birth":"1991-06-13T00:00:00.000Z","height":1.64,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":605742974,"name":"Toni Wilhelm","nationality":"GER","sex":"male","date_of_birth":"1983-02-05T00:00:00.000Z","height":1.82,"weight":76,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":776154883,"name":"Toni-Ann Williams","nationality":"JAM","sex":"female","date_of_birth":"1995-11-20T00:00:00.000Z","height":1.55,"weight":52,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":535001481,"name":"Tonia Couch","nationality":"GBR","sex":"female","date_of_birth":"1989-05-20T00:00:00.000Z","height":1.62,"weight":58,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":724384082,"name":"Tonje Angelsen","nationality":"NOR","sex":"female","date_of_birth":"1990-01-17T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":999578859,"name":"Tontowi Ahmad","nationality":"INA","sex":"male","date_of_birth":"1987-07-18T00:00:00.000Z","height":1.79,"weight":72,"sport":"badminton","gold":1,"silver":0,"bronze":0,"info":null},{"id":287253228,"name":"Tonu Endrekson","nationality":"EST","sex":"male","date_of_birth":"1979-06-11T00:00:00.000Z","height":1.98,"weight":104,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":870620846,"name":"Tony Azevedo","nationality":"USA","sex":"male","date_of_birth":"1981-11-20T00:00:00.000Z","height":1.86,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":"Born in Rio de Janeiro, Tony Azevedo's family moved to California, when he was only a month old. He won silver with the USA team at Beijing 2008 and was the team captain at London 2012."},{"id":229204643,"name":"Tony Dodds","nationality":"NZL","sex":"male","date_of_birth":"1987-06-16T00:00:00.000Z","height":1.83,"weight":68,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":238201796,"name":"Tony Martin","nationality":"GER","sex":"male","date_of_birth":"1985-04-23T00:00:00.000Z","height":1.86,"weight":75,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":"Three-time world champion (2011, 2012 and 2013) in the time trial event, in which he also took silver at London 2012, Tony Martin left the former East Germany shortly before the Berlin wall came down (he was born in Cottbus)."},{"id":947438087,"name":"Tony McQuay","nationality":"USA","sex":"male","date_of_birth":"1990-04-16T00:00:00.000Z","height":1.81,"weight":72,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":35377706,"name":"Tony Parker","nationality":"FRA","sex":"male","date_of_birth":"1982-05-17T00:00:00.000Z","height":1.86,"weight":80,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":479731950,"name":"Tony Tuivuna","nationality":"FIJ","sex":"male","date_of_birth":"1995-03-20T00:00:00.000Z","height":1.92,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":34099719,"name":"Tony Victor James Yoka","nationality":"FRA","sex":"male","date_of_birth":"1992-04-27T00:00:00.000Z","height":2,"weight":null,"sport":"boxing","gold":1,"silver":0,"bronze":0,"info":"The Singapore 2010 Summer Youth Olympics champion in the + 91kg class, France's Tony Yoka has more recently won the world boxing title at Doha, in 2015. Also known as “The Artist”, Yoka stands at 1.97m tall."},{"id":291445847,"name":"Torben Grimmel","nationality":"DEN","sex":"male","date_of_birth":"1975-11-23T00:00:00.000Z","height":1.82,"weight":90,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":764236472,"name":"Tore Navrestad","nationality":"NOR","sex":"male","date_of_birth":"1996-02-19T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":207258213,"name":"Tori Bowie","nationality":"USA","sex":"female","date_of_birth":"1990-08-27T00:00:00.000Z","height":1.76,"weight":58,"sport":"athletics","gold":1,"silver":1,"bronze":1,"info":null},{"id":966701899,"name":"Tori Pena","nationality":"IRL","sex":"female","date_of_birth":"1987-07-30T00:00:00.000Z","height":1.67,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":219098253,"name":"Tory Nyhaug","nationality":"CAN","sex":"male","date_of_birth":"1992-04-17T00:00:00.000Z","height":1.85,"weight":92,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":734322281,"name":"Toshikazu Yamashita","nationality":"JPN","sex":"male","date_of_birth":"1977-02-21T00:00:00.000Z","height":1.7,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":651640660,"name":"Toshiki Masui","nationality":"JPN","sex":"male","date_of_birth":"1969-11-13T00:00:00.000Z","height":1.65,"weight":58,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":550282908,"name":"Tosin Oke","nationality":"NGR","sex":"male","date_of_birth":"1980-10-01T00:00:00.000Z","height":1.79,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":166005937,"name":"Townley Haas","nationality":"USA","sex":"male","date_of_birth":"1996-12-13T00:00:00.000Z","height":1.96,"weight":83,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":741082455,"name":"Tracey Lambrechs","nationality":"NZL","sex":"female","date_of_birth":"1985-08-27T00:00:00.000Z","height":1.67,"weight":107,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":393618726,"name":"Tracy Eisser","nationality":"USA","sex":"female","date_of_birth":"1989-11-20T00:00:00.000Z","height":1.86,"weight":83,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":729594636,"name":"Tracy Keith-Matchitt","nationality":"COK","sex":"female","date_of_birth":"1990-03-30T00:00:00.000Z","height":1.67,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":287146482,"name":"Travis Mahoney","nationality":"AUS","sex":"male","date_of_birth":"1990-07-24T00:00:00.000Z","height":1.9,"weight":81,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":286089485,"name":"Travis Stevens","nationality":"USA","sex":"male","date_of_birth":"1986-02-28T00:00:00.000Z","height":1.81,"weight":80,"sport":"judo","gold":0,"silver":1,"bronze":0,"info":null},{"id":932981795,"name":"Trayvon Bromell","nationality":"USA","sex":"male","date_of_birth":"1995-07-10T00:00:00.000Z","height":1.73,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":521984542,"name":"Trent Jones","nationality":"NZL","sex":"male","date_of_birth":"1994-08-12T00:00:00.000Z","height":1.85,"weight":87,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":244396184,"name":"Trevor Barry","nationality":"BAH","sex":"male","date_of_birth":"1983-06-14T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":824123948,"name":"Trevor Clevenot","nationality":"FRA","sex":"male","date_of_birth":"1994-06-28T00:00:00.000Z","height":1.99,"weight":89,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":244800135,"name":"Trihas Gebre","nationality":"ESP","sex":"female","date_of_birth":"1990-04-29T00:00:00.000Z","height":1.62,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":638183156,"name":"Tristan Flore","nationality":"FRA","sex":"male","date_of_birth":"1995-01-02T00:00:00.000Z","height":1.78,"weight":64,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":209701462,"name":"Trixi Worrack","nationality":"GER","sex":"female","date_of_birth":"1981-09-28T00:00:00.000Z","height":1.59,"weight":50,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":579249475,"name":"Triyatno","nationality":"INA","sex":"male","date_of_birth":"1987-12-20T00:00:00.000Z","height":1.61,"weight":69,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":555716378,"name":"Troy Doris","nationality":"GUY","sex":"male","date_of_birth":"1989-04-12T00:00:00.000Z","height":1.72,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":783577088,"name":"Tsanko Arnaudov","nationality":"POR","sex":"male","date_of_birth":"1992-03-14T00:00:00.000Z","height":1.98,"weight":154,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":239480068,"name":"Tsegai Tewelde","nationality":"GBR","sex":"male","date_of_birth":"1989-12-08T00:00:00.000Z","height":1.72,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":49752494,"name":"Tsendbaatar Erdenebat","nationality":"MGL","sex":"male","date_of_birth":"1996-10-16T00:00:00.000Z","height":1.63,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":646516993,"name":"Tsepang Sello","nationality":"LES","sex":"female","date_of_birth":"1997-02-23T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":132965685,"name":"Tsepo Mathibelle","nationality":"LES","sex":"male","date_of_birth":"1991-06-30T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":169995559,"name":"Tsgabu Gebremaryam Grmay","nationality":"ETH","sex":"male","date_of_birth":"1991-08-25T00:00:00.000Z","height":1.75,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":960328623,"name":"Tsholofelo Thipe","nationality":"RSA","sex":"female","date_of_birth":"1986-12-09T00:00:00.000Z","height":1.53,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":874089469,"name":"Tsimafei Dzeinichenka","nationality":"BLR","sex":"male","date_of_birth":"1986-11-05T00:00:00.000Z","height":1.86,"weight":98,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":1591635,"name":"Tsogtbaatar Tsend-Ochir","nationality":"MGL","sex":"male","date_of_birth":"1996-03-16T00:00:00.000Z","height":1.7,"weight":68,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":811274381,"name":"Tsolmon Adiyasambuu","nationality":"MGL","sex":"female","date_of_birth":"1992-11-07T00:00:00.000Z","height":1.6,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":570804014,"name":"Tsotne Machavariani","nationality":"GEO","sex":"male","date_of_birth":"1997-09-26T00:00:00.000Z","height":1.8,"weight":75,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":950036284,"name":"Tsubasa Sasaki","nationality":"JPN","sex":"male","date_of_birth":"1995-03-23T00:00:00.000Z","height":1.7,"weight":60,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":760127003,"name":"Tsukasa Shiotani","nationality":"JPN","sex":"male","date_of_birth":"1988-12-05T00:00:00.000Z","height":1.82,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":353390338,"name":"Tsvetana Pironkova","nationality":"BUL","sex":"female","date_of_birth":"1987-09-13T00:00:00.000Z","height":1.78,"weight":65,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":8380241,"name":"Tsvetelina Naydenova","nationality":"BUL","sex":"female","date_of_birth":"1994-04-28T00:00:00.000Z","height":1.68,"weight":49,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":671805698,"name":"Tugba Guvenc","nationality":"TUR","sex":"female","date_of_birth":"1994-07-09T00:00:00.000Z","height":1.73,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":720168381,"name":"Tugce Canitez","nationality":"TUR","sex":"female","date_of_birth":"1990-11-10T00:00:00.000Z","height":1.88,"weight":85,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":709022430,"name":"Tugce Sahutoglu","nationality":"TUR","sex":"female","date_of_birth":"1988-05-01T00:00:00.000Z","height":1.8,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":313585891,"name":"Tuiana Dashidorzhieva","nationality":"RUS","sex":"female","date_of_birth":"1996-04-14T00:00:00.000Z","height":1.69,"weight":57,"sport":"archery","gold":0,"silver":1,"bronze":0,"info":null},{"id":520039315,"name":"Tumurkhuleg Davaadorj","nationality":"MGL","sex":"male","date_of_birth":"1990-09-29T00:00:00.000Z","height":1.72,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":176135968,"name":"Tunde Szabo","nationality":"HUN","sex":"female","date_of_birth":"1989-02-08T00:00:00.000Z","height":1.54,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":863102848,"name":"Tutya Yilmaz","nationality":"TUR","sex":"female","date_of_birth":"1999-06-04T00:00:00.000Z","height":1.5,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":164349169,"name":"Tuula Tenkanen","nationality":"FIN","sex":"female","date_of_birth":"1990-08-11T00:00:00.000Z","height":1.67,"weight":69,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":589830090,"name":"Tuuli Petaja-Siren","nationality":"FIN","sex":"female","date_of_birth":"1983-11-09T00:00:00.000Z","height":1.69,"weight":59,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":300389824,"name":"Tuvshinbat Byamba","nationality":"MGL","sex":"male","date_of_birth":"1987-03-27T00:00:00.000Z","height":1.74,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":848114193,"name":"Tuvshinbayar Naidan","nationality":"MGL","sex":"male","date_of_birth":"1984-06-01T00:00:00.000Z","height":1.78,"weight":104,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":380875835,"name":"Twan van Gendt","nationality":"NED","sex":"male","date_of_birth":"1992-06-09T00:00:00.000Z","height":1.78,"weight":85,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":503739035,"name":"Tyla Nathan-Wong","nationality":"NZL","sex":"female","date_of_birth":"1994-07-01T00:00:00.000Z","height":1.63,"weight":58,"sport":"rugby sevens","gold":0,"silver":1,"bronze":0,"info":null},{"id":737278135,"name":"Tyler Martin","nationality":"AUS","sex":"male","date_of_birth":"1990-06-28T00:00:00.000Z","height":1.96,"weight":98,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":87568178,"name":"Tyler Mislawchuk","nationality":"CAN","sex":"male","date_of_birth":"1994-08-19T00:00:00.000Z","height":1.72,"weight":59,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":42726050,"name":"Tyler Nase","nationality":"USA","sex":"male","date_of_birth":"1990-08-30T00:00:00.000Z","height":1.83,"weight":71,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":834107099,"name":"Tyler Sanders","nationality":"CAN","sex":"male","date_of_birth":"1991-12-14T00:00:00.000Z","height":1.91,"weight":81,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":77544133,"name":"Tynia Gaither","nationality":"BAH","sex":"female","date_of_birth":"1993-03-16T00:00:00.000Z","height":1.58,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":930293846,"name":"Tyroane Sandows","nationality":"RSA","sex":"male","date_of_birth":"1995-02-12T00:00:00.000Z","height":1.72,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":356052736,"name":"Tyrone Smith","nationality":"BER","sex":"male","date_of_birth":"1984-08-07T00:00:00.000Z","height":1.83,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":259271156,"name":"Tyson Gay","nationality":"USA","sex":"male","date_of_birth":"1982-08-09T00:00:00.000Z","height":1.81,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":189270629,"name":"Tze Liang Ooi","nationality":"MAS","sex":"male","date_of_birth":"1993-11-19T00:00:00.000Z","height":1.7,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":504555048,"name":"Tzu Ying Tai","nationality":"TPE","sex":"female","date_of_birth":"1994-06-20T00:00:00.000Z","height":1.62,"weight":57,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":991287855,"name":"Tzu-Chi Lin","nationality":"TPE","sex":"female","date_of_birth":"1988-03-19T00:00:00.000Z","height":1.58,"weight":63,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":784808590,"name":"Ubaldina Valoyes Cuesta","nationality":"COL","sex":"female","date_of_birth":"1982-07-06T00:00:00.000Z","height":1.62,"weight":74,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":98938624,"name":"Ugo Crousillat","nationality":"FRA","sex":"male","date_of_birth":"1990-10-27T00:00:00.000Z","height":1.9,"weight":94,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":2045907,"name":"Uhunoma Osazuwa","nationality":"NGR","sex":"female","date_of_birth":"1987-11-23T00:00:00.000Z","height":1.75,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":617399912,"name":"Uijo Hwang","nationality":"KOR","sex":"male","date_of_birth":"1992-08-28T00:00:00.000Z","height":null,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":662685854,"name":"Uilson","nationality":"BRA","sex":"male","date_of_birth":"1994-04-28T00:00:00.000Z","height":1.86,"weight":80,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":674769379,"name":"Uitumen Orgodol","nationality":"MGL","sex":"male","date_of_birth":"1989-04-29T00:00:00.000Z","height":1.75,"weight":82,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":13916415,"name":"Uladzislau Hancharou","nationality":"BLR","sex":"male","date_of_birth":"1995-12-02T00:00:00.000Z","height":1.73,"weight":66,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":null},{"id":646451751,"name":"Uladzislau Pramau","nationality":"BLR","sex":"male","date_of_birth":"1984-08-03T00:00:00.000Z","height":1.77,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":902352891,"name":"Ulrich Kirchhoff","nationality":"UKR","sex":"male","date_of_birth":"1967-08-09T00:00:00.000Z","height":1.9,"weight":86,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":605302051,"name":"Umutcan Emektas","nationality":"TUR","sex":"male","date_of_birth":"1991-06-29T00:00:00.000Z","height":1.82,"weight":81,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":680257961,"name":"Un Hyang Kim","nationality":"PRK","sex":"female","date_of_birth":"1991-10-21T00:00:00.000Z","height":1.6,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":556048033,"name":"Un Jong Hong","nationality":"PRK","sex":"female","date_of_birth":"1989-03-09T00:00:00.000Z","height":1.56,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":578632185,"name":"Un Ju Kang","nationality":"PRK","sex":"female","date_of_birth":"1995-02-01T00:00:00.000Z","height":1.68,"weight":60,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":163301823,"name":"Unurbat Purevjav","nationality":"MGL","sex":"male","date_of_birth":"1988-02-15T00:00:00.000Z","height":1.7,"weight":80,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":624095019,"name":"Urantsetseg Munkhbat","nationality":"MGL","sex":"female","date_of_birth":"1990-03-14T00:00:00.000Z","height":1.64,"weight":51,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":988341584,"name":"Urata Rama","nationality":"KOS","sex":"female","date_of_birth":"1986-12-20T00:00:00.000Z","height":1.73,"weight":64,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":958189284,"name":"Urban Lesjak","nationality":"SLO","sex":"male","date_of_birth":"1990-08-24T00:00:00.000Z","height":1.87,"weight":103,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":725017162,"name":"Uros CUCKOVIC","nationality":"MNE","sex":"male","date_of_birth":"1990-04-25T00:00:00.000Z","height":1.99,"weight":101,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":705134000,"name":"Uros Zorman","nationality":"SLO","sex":"male","date_of_birth":"1980-01-09T00:00:00.000Z","height":1.9,"weight":98,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":370406221,"name":"Ursa Kragelj","nationality":"SLO","sex":"female","date_of_birth":"1988-07-02T00:00:00.000Z","height":1.66,"weight":56,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":586282820,"name":"Ursula Gonzalez Garate","nationality":"MEX","sex":"female","date_of_birth":"1991-11-22T00:00:00.000Z","height":1.71,"weight":71,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":718417906,"name":"Ursula Grobler","nationality":"RSA","sex":"female","date_of_birth":"1980-02-06T00:00:00.000Z","height":1.73,"weight":60,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":88669293,"name":"Ursula Wikstrom","nationality":"FIN","sex":"female","date_of_birth":"1980-07-03T00:00:00.000Z","height":1.66,"weight":55,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":579416064,"name":"Usain Bolt","nationality":"JAM","sex":"male","date_of_birth":"1986-08-21T00:00:00.000Z","height":1.96,"weight":95,"sport":"athletics","gold":3,"silver":0,"bronze":0,"info":"One of the most charismatic – and fastest – athletes in the world, Jamaica's Usain Bolt has won six Olympic golds in athletics, winning the 100m, 200m and 4x100m relay at Beijing 2008 and London 2012. Bolt also holds 11 world titles."},{"id":149615945,"name":"Uschi Freitag","nationality":"NED","sex":"female","date_of_birth":"1989-08-19T00:00:00.000Z","height":1.67,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":530272776,"name":"Ushangi Kokauri","nationality":"AZE","sex":"male","date_of_birth":"1992-01-10T00:00:00.000Z","height":1.95,"weight":135,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":39407530,"name":"Usman Muhammed","nationality":"NGR","sex":"male","date_of_birth":"1994-03-02T00:00:00.000Z","height":1.69,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":308104666,"name":"Uthappa Sannuvanda","nationality":"IND","sex":"male","date_of_birth":"1993-12-02T00:00:00.000Z","height":1.83,"weight":84,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":67296664,"name":"Uuganbaatar Otgonbaatar","nationality":"MGL","sex":"male","date_of_birth":"1988-02-19T00:00:00.000Z","height":1.78,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":653685150,"name":"Uvis Kalnins","nationality":"LAT","sex":"male","date_of_birth":"1993-10-24T00:00:00.000Z","height":1.92,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":409519783,"name":"Uwe Gensheimer","nationality":"GER","sex":"male","date_of_birth":"1986-10-26T00:00:00.000Z","height":1.88,"weight":88,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":878263725,"name":"V Shem Goh","nationality":"MAS","sex":"male","date_of_birth":"1989-05-20T00:00:00.000Z","height":1.8,"weight":70,"sport":"badminton","gold":0,"silver":1,"bronze":0,"info":null},{"id":700082082,"name":"V. Sindhu Pusarla","nationality":"IND","sex":"female","date_of_birth":"1995-07-05T00:00:00.000Z","height":1.79,"weight":65,"sport":"badminton","gold":0,"silver":1,"bronze":0,"info":null},{"id":645060029,"name":"Vadim Anokhin","nationality":"RUS","sex":"male","date_of_birth":"1992-01-02T00:00:00.000Z","height":1.92,"weight":91,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":818449053,"name":"Vadim Kaptur","nationality":"BLR","sex":"male","date_of_birth":"1987-07-12T00:00:00.000Z","height":1.74,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":609128454,"name":"Vadim Skorovarov","nationality":"UZB","sex":"male","date_of_birth":"1996-08-04T00:00:00.000Z","height":1.77,"weight":67,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":620954526,"name":"Vadzim Lialin","nationality":"BLR","sex":"male","date_of_birth":"1982-11-15T00:00:00.000Z","height":2,"weight":100,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":446977875,"name":"Vadzim Straltsou","nationality":"BLR","sex":"male","date_of_birth":"1986-04-30T00:00:00.000Z","height":1.7,"weight":94,"sport":"weightlifting","gold":0,"silver":1,"bronze":0,"info":null},{"id":723818458,"name":"Vagner Junior Souta","nationality":"BRA","sex":"male","date_of_birth":"1991-02-10T00:00:00.000Z","height":1.87,"weight":84,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":751743792,"name":"Vahan Mkhitaryan","nationality":"ARM","sex":"male","date_of_birth":"1996-08-16T00:00:00.000Z","height":1.86,"weight":92,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":348559533,"name":"Vaida Zusinaite","nationality":"LTU","sex":"female","date_of_birth":"1988-01-13T00:00:00.000Z","height":1.67,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":655768386,"name":"Vaidas Kariniauskas","nationality":"LTU","sex":"male","date_of_birth":"1993-11-16T00:00:00.000Z","height":1.97,"weight":null,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":180683514,"name":"Vaipava Nevo Ioane","nationality":"SAM","sex":"male","date_of_birth":"1988-04-14T00:00:00.000Z","height":1.52,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":976373633,"name":"Valdas Dopolskas","nationality":"LTU","sex":"male","date_of_birth":"1992-04-30T00:00:00.000Z","height":1.83,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":839835613,"name":"Valdivia","nationality":"BRA","sex":"male","date_of_birth":"1994-10-04T00:00:00.000Z","height":null,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":807344614,"name":"Valent Sinkovic","nationality":"CRO","sex":"male","date_of_birth":"1988-08-02T00:00:00.000Z","height":1.87,"weight":93,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":720426877,"name":"Valentin Belaud","nationality":"FRA","sex":"male","date_of_birth":"1992-09-16T00:00:00.000Z","height":1.81,"weight":73,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":142185153,"name":"Valentin Demyanenko","nationality":"AZE","sex":"male","date_of_birth":"1983-10-23T00:00:00.000Z","height":1.93,"weight":93,"sport":"canoe","gold":0,"silver":1,"bronze":0,"info":null},{"id":594179521,"name":"Valentin Onfroy","nationality":"FRA","sex":"male","date_of_birth":"1993-11-16T00:00:00.000Z","height":1.95,"weight":84,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":177896250,"name":"Valentin Porte","nationality":"FRA","sex":"male","date_of_birth":"1990-09-07T00:00:00.000Z","height":1.9,"weight":92,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":371546325,"name":"Valentin Prades","nationality":"FRA","sex":"male","date_of_birth":"1992-09-29T00:00:00.000Z","height":1.94,"weight":90,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":908116241,"name":"Valentin Verga","nationality":"NED","sex":"male","date_of_birth":"1989-10-07T00:00:00.000Z","height":1.8,"weight":87,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":236754653,"name":"Valentina Ardean Elisei","nationality":"ROU","sex":"female","date_of_birth":"1982-06-05T00:00:00.000Z","height":1.72,"weight":64,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":961400674,"name":"Valentina Gustin","nationality":"CRO","sex":"female","date_of_birth":"1996-11-20T00:00:00.000Z","height":1.72,"weight":61,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":332548817,"name":"Valentina Kibalnikova","nationality":"UZB","sex":"female","date_of_birth":"1990-10-16T00:00:00.000Z","height":1.74,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":943412077,"name":"Valentina Kogan","nationality":"ARG","sex":"female","date_of_birth":"1980-02-19T00:00:00.000Z","height":1.73,"weight":71,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":480835097,"name":"Valentina Liashenko","nationality":"GEO","sex":"female","date_of_birth":"1981-01-30T00:00:00.000Z","height":1.76,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":285574820,"name":"Valentina Moscatt","nationality":"ITA","sex":"female","date_of_birth":"1987-03-16T00:00:00.000Z","height":1.52,"weight":48,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":532724520,"name":"Valentina Rodini","nationality":"ITA","sex":"female","date_of_birth":"1995-01-28T00:00:00.000Z","height":1.67,"weight":54,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":352760379,"name":"Valentina Truppa","nationality":"ITA","sex":"female","date_of_birth":"1986-03-18T00:00:00.000Z","height":1.6,"weight":55,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":833598839,"name":"Valentino Gallo","nationality":"ITA","sex":"male","date_of_birth":"1985-07-17T00:00:00.000Z","height":1.92,"weight":95,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":125173784,"name":"Valentino Manfredonia","nationality":"ITA","sex":"male","date_of_birth":"1989-09-29T00:00:00.000Z","height":1.8,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":809873385,"name":"Valentyna Myronchuk","nationality":"UKR","sex":"female","date_of_birth":"1994-08-10T00:00:00.000Z","height":1.67,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":44861563,"name":"Valeria Bianchi","nationality":"ARG","sex":"female","date_of_birth":"1985-09-16T00:00:00.000Z","height":1.7,"weight":62,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":645890847,"name":"Valeria Straneo","nationality":"ITA","sex":"female","date_of_birth":"1976-04-05T00:00:00.000Z","height":1.65,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":876235051,"name":"Valerian Sauveplane","nationality":"FRA","sex":"male","date_of_birth":"1980-07-25T00:00:00.000Z","height":1.8,"weight":77,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":33162690,"name":"Valeriane Ayayi","nationality":"FRA","sex":"female","date_of_birth":"1994-04-29T00:00:00.000Z","height":1.84,"weight":72,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":107671084,"name":"Valerie Adams","nationality":"NZL","sex":"female","date_of_birth":"1984-10-06T00:00:00.000Z","height":1.93,"weight":120,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":457663173,"name":"Valerie Gruest Slowing","nationality":"GUA","sex":"female","date_of_birth":"1999-03-14T00:00:00.000Z","height":1.72,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":10196334,"name":"Valerii Andriitsev","nationality":"UKR","sex":"male","date_of_birth":"1987-02-27T00:00:00.000Z","height":1.81,"weight":97,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":977206167,"name":"Valeriia Gudym","nationality":"UKR","sex":"female","date_of_birth":"1995-03-01T00:00:00.000Z","height":1.72,"weight":54,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":975146982,"name":"Valeriia Koblova Zholobova","nationality":"RUS","sex":"female","date_of_birth":"1992-10-09T00:00:00.000Z","height":1.64,"weight":58,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":704663853,"name":"Valeriu Duminica","nationality":"MDA","sex":"male","date_of_birth":"1987-04-08T00:00:00.000Z","height":1.75,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":953876771,"name":"Valeriya Davidova","nationality":"UZB","sex":"female","date_of_birth":"1997-12-15T00:00:00.000Z","height":1.68,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":4089378,"name":"Valeriya Pischelina","nationality":"BLR","sex":"female","date_of_birth":"1995-02-27T00:00:00.000Z","height":1.7,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":898179597,"name":"Valmir Berisha","nationality":"SWE","sex":"male","date_of_birth":"1996-06-06T00:00:00.000Z","height":1.82,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":624026807,"name":"Vandana Katariya","nationality":"IND","sex":"female","date_of_birth":"1992-04-15T00:00:00.000Z","height":1.59,"weight":48,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":416201651,"name":"Vanessa Boslak","nationality":"FRA","sex":"female","date_of_birth":"1982-06-11T00:00:00.000Z","height":1.7,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":287472239,"name":"Vanessa Chefer","nationality":"BRA","sex":"female","date_of_birth":"1990-03-05T00:00:00.000Z","height":1.78,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":87607313,"name":"Vanessa Cozzi","nationality":"BRA","sex":"female","date_of_birth":"1984-03-25T00:00:00.000Z","height":1.7,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":321151857,"name":"Vanessa Ferrari","nationality":"ITA","sex":"female","date_of_birth":"1990-11-10T00:00:00.000Z","height":1.45,"weight":45,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":638923697,"name":"Vanessa Garcia","nationality":"PUR","sex":"female","date_of_birth":"1984-07-18T00:00:00.000Z","height":1.73,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":648578848,"name":"Vanessa Grimberg","nationality":"GER","sex":"female","date_of_birth":"1993-01-28T00:00:00.000Z","height":1.76,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":93934997,"name":"Vanessa Lunga","nationality":"ZIM","sex":"female","date_of_birth":"1994-06-16T00:00:00.000Z","height":1.63,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":931127637,"name":"Vanessa Rial","nationality":"ESP","sex":"female","date_of_birth":"1982-03-01T00:00:00.000Z","height":1.72,"weight":68,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":205431593,"name":"Vanessa Zambotti","nationality":"MEX","sex":"female","date_of_birth":"1982-03-04T00:00:00.000Z","height":1.75,"weight":125,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":952439055,"name":"Vania Neves","nationality":"POR","sex":"female","date_of_birth":"1990-09-04T00:00:00.000Z","height":1.71,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":853711227,"name":"Varlam Liparteliani","nationality":"GEO","sex":"male","date_of_birth":"1989-02-27T00:00:00.000Z","height":1.87,"weight":94,"sport":"judo","gold":0,"silver":1,"bronze":0,"info":null},{"id":739791788,"name":"Varvara Filiou","nationality":"GRE","sex":"female","date_of_birth":"1994-12-29T00:00:00.000Z","height":1.65,"weight":45,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":499001095,"name":"Vasek Pospisil","nationality":"CAN","sex":"male","date_of_birth":"1990-06-23T00:00:00.000Z","height":1.94,"weight":87,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":488491698,"name":"Vashti Cunningham","nationality":"USA","sex":"female","date_of_birth":"1998-01-18T00:00:00.000Z","height":1.86,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":877590829,"name":"Vasil Kiryienka","nationality":"BLR","sex":"male","date_of_birth":"1981-06-28T00:00:00.000Z","height":1.82,"weight":75,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":937539913,"name":"Vasilii Egorov","nationality":"RUS","sex":"male","date_of_birth":"1993-09-16T00:00:00.000Z","height":1.6,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":80619746,"name":"Vasilij Zbogar","nationality":"SLO","sex":"male","date_of_birth":"1975-10-04T00:00:00.000Z","height":1.89,"weight":98,"sport":"sailing","gold":0,"silver":1,"bronze":0,"info":null},{"id":374718100,"name":"Vasiliki Millousi","nationality":"GRE","sex":"female","date_of_birth":"1984-05-04T00:00:00.000Z","height":1.57,"weight":45,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":989508305,"name":"Vasilisa Marzaliuk","nationality":"BLR","sex":"female","date_of_birth":"1987-06-23T00:00:00.000Z","height":1.8,"weight":77,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":484731780,"name":"Vasily Mosin","nationality":"RUS","sex":"male","date_of_birth":"1972-05-09T00:00:00.000Z","height":1.83,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":582848333,"name":"Vasily Pogreban","nationality":"RUS","sex":"male","date_of_birth":"1989-06-26T00:00:00.000Z","height":1.81,"weight":91,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":1152723,"name":"Vassiliki Vougiouka","nationality":"GRE","sex":"female","date_of_birth":"1986-06-20T00:00:00.000Z","height":1.81,"weight":70,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":235882258,"name":"Vassiliy Levit","nationality":"KAZ","sex":"male","date_of_birth":"1988-02-24T00:00:00.000Z","height":1.85,"weight":null,"sport":"boxing","gold":0,"silver":1,"bronze":0,"info":null},{"id":759852624,"name":"Vatemo Ravouvou","nationality":"FIJ","sex":"male","date_of_birth":"1990-07-31T00:00:00.000Z","height":1.71,"weight":81,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":623335062,"name":"Vazha Margvelashvili","nationality":"GEO","sex":"male","date_of_birth":"1993-10-03T00:00:00.000Z","height":1.67,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":83660833,"name":"Veerle Dejaeghere","nationality":"BEL","sex":"female","date_of_birth":"1973-08-01T00:00:00.000Z","height":1.59,"weight":46,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":655301496,"name":"Vegard Stake Laengen","nationality":"NOR","sex":"male","date_of_birth":"1989-02-07T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":356549350,"name":"Veli-Matti Partanen","nationality":"FIN","sex":"male","date_of_birth":"1991-10-28T00:00:00.000Z","height":1.81,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":193269452,"name":"Velimir Stjepanovic","nationality":"SRB","sex":"male","date_of_birth":"1993-08-07T00:00:00.000Z","height":1.82,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":37625294,"name":"Vendula Frintova","nationality":"CZE","sex":"female","date_of_birth":"1983-09-04T00:00:00.000Z","height":1.68,"weight":50,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":967486655,"name":"Venilton Teixeira","nationality":"BRA","sex":"male","date_of_birth":"1995-09-06T00:00:00.000Z","height":1.82,"weight":58,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":714368005,"name":"Ventsislav Aydarski","nationality":"BUL","sex":"male","date_of_birth":"1991-02-17T00:00:00.000Z","height":1.68,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":137700019,"name":"Venus Williams","nationality":"USA","sex":"female","date_of_birth":"1980-06-17T00:00:00.000Z","height":1.86,"weight":74,"sport":"tennis","gold":0,"silver":1,"bronze":0,"info":null},{"id":322708523,"name":"Vera Adrian","nationality":"NAM","sex":"female","date_of_birth":"1993-10-28T00:00:00.000Z","height":1.68,"weight":57,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":58043295,"name":"Vera Barbosa","nationality":"POR","sex":"female","date_of_birth":"1989-01-13T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":617188961,"name":"Vera Biriukova","nationality":"RUS","sex":"female","date_of_birth":"1998-04-11T00:00:00.000Z","height":1.68,"weight":47,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":null},{"id":867313353,"name":"Vera Vetrova","nationality":"RUS","sex":"female","date_of_birth":"1986-08-21T00:00:00.000Z","height":1.8,"weight":73,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":735168991,"name":"Vera van Pol","nationality":"NED","sex":"female","date_of_birth":"1993-12-17T00:00:00.000Z","height":1.57,"weight":54,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":246757906,"name":"Veronica Bertolini","nationality":"ITA","sex":"female","date_of_birth":"1995-10-19T00:00:00.000Z","height":1.67,"weight":48,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":156804186,"name":"Veronica Campbell-Brown","nationality":"JAM","sex":"female","date_of_birth":"1982-05-15T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":92890058,"name":"Veronica Cepede Royg","nationality":"PAR","sex":"female","date_of_birth":"1992-01-21T00:00:00.000Z","height":1.63,"weight":65,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":436719037,"name":"Veronica Inglese","nationality":"ITA","sex":"female","date_of_birth":"1990-11-22T00:00:00.000Z","height":1.6,"weight":43,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":386589042,"name":"Veronica Kristiansen","nationality":"NOR","sex":"female","date_of_birth":"1990-07-10T00:00:00.000Z","height":1.75,"weight":null,"sport":"handball","gold":0,"silver":0,"bronze":1,"info":null},{"id":19586649,"name":"Veronika Ivasiuk","nationality":"UKR","sex":"female","date_of_birth":"1995-10-12T00:00:00.000Z","height":1.7,"weight":57,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":362735511,"name":"Veronika Kozelska Fenclova","nationality":"CZE","sex":"female","date_of_birth":"1981-01-21T00:00:00.000Z","height":1.71,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":501784075,"name":"Veronika Macarol","nationality":"SLO","sex":"female","date_of_birth":"1987-03-28T00:00:00.000Z","height":1.78,"weight":68,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":464186121,"name":"Veronika Marchenko","nationality":"UKR","sex":"female","date_of_birth":"1993-04-03T00:00:00.000Z","height":1.57,"weight":48,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":405423858,"name":"Veronika Popova","nationality":"RUS","sex":"female","date_of_birth":"1991-01-20T00:00:00.000Z","height":1.82,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":497079300,"name":"Veronika Yesipovich","nationality":"BLR","sex":"female","date_of_birth":"1996-04-10T00:00:00.000Z","height":1.66,"weight":48,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":580004143,"name":"Vesa Tornroos","nationality":"FIN","sex":"male","date_of_birth":"1982-09-02T00:00:00.000Z","height":1.74,"weight":93,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":520281849,"name":"Viacheslav Andrusenko","nationality":"RUS","sex":"male","date_of_birth":"1992-05-14T00:00:00.000Z","height":1.94,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":140638063,"name":"Viacheslav Krasilnikov","nationality":"RUS","sex":"male","date_of_birth":"1991-04-28T00:00:00.000Z","height":1.95,"weight":90,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":454698818,"name":"Vicenc Ruiz","nationality":"ESP","sex":"male","date_of_birth":"1991-10-30T00:00:00.000Z","height":1.81,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":721846159,"name":"Vicente Hernandez","nationality":"ESP","sex":"male","date_of_birth":"1991-04-20T00:00:00.000Z","height":1.81,"weight":74,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":885291469,"name":"Vicky Holland","nationality":"GBR","sex":"female","date_of_birth":"1986-01-12T00:00:00.000Z","height":1.68,"weight":56,"sport":"triathlon","gold":0,"silver":0,"bronze":1,"info":null},{"id":690173780,"name":"Victoire Pauline L'or Ngon Ntame","nationality":"CMR","sex":"female","date_of_birth":"1985-12-31T00:00:00.000Z","height":1.77,"weight":79,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":198342904,"name":"Victor Aravena","nationality":"CHI","sex":"male","date_of_birth":"1990-02-05T00:00:00.000Z","height":1.66,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":753873468,"name":"Victor Claver","nationality":"ESP","sex":"male","date_of_birth":"1988-08-30T00:00:00.000Z","height":2.06,"weight":107,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":616975176,"name":"Victor Cuesta","nationality":"ARG","sex":"male","date_of_birth":"1998-11-19T00:00:00.000Z","height":1.64,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":952852133,"name":"Victor Estrella Burgos","nationality":"DOM","sex":"male","date_of_birth":"1980-08-02T00:00:00.000Z","height":1.73,"weight":65,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":322853200,"name":"Victor Guzman","nationality":"MEX","sex":"male","date_of_birth":"1995-02-03T00:00:00.000Z","height":1.73,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":928628945,"name":"Victor Koretzky","nationality":"FRA","sex":"male","date_of_birth":"1994-08-26T00:00:00.000Z","height":1.8,"weight":69,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":798252460,"name":"Victor Lebedev","nationality":"RUS","sex":"male","date_of_birth":"1988-03-10T00:00:00.000Z","height":1.64,"weight":57,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":536024925,"name":"Victor Martin Martin","nationality":"ESP","sex":"male","date_of_birth":"1993-09-25T00:00:00.000Z","height":1.87,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":477856605,"name":"Victor Ortega","nationality":"COL","sex":"male","date_of_birth":"1988-01-27T00:00:00.000Z","height":1.72,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":706996244,"name":"Victor Penalber","nationality":"BRA","sex":"male","date_of_birth":"1990-05-22T00:00:00.000Z","height":1.74,"weight":81,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":70687418,"name":"Victor Rodriguez","nationality":"VEN","sex":"male","date_of_birth":"1995-03-27T00:00:00.000Z","height":1.67,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":400723583,"name":"Victor Scvortov","nationality":"UAE","sex":"male","date_of_birth":"1988-03-30T00:00:00.000Z","height":1.73,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":810144612,"name":"Victoria Chamorro","nationality":"BRA","sex":"female","date_of_birth":"1996-07-10T00:00:00.000Z","height":1.76,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":718592963,"name":"Victoria Crivelli","nationality":"ARG","sex":"female","date_of_birth":"1990-09-30T00:00:00.000Z","height":1.76,"weight":65,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":563090035,"name":"Victoria Esson","nationality":"NZL","sex":"female","date_of_birth":"1991-03-06T00:00:00.000Z","height":1.74,"weight":66,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":873800996,"name":"Victoria Folayan","nationality":"USA","sex":"female","date_of_birth":"1985-05-27T00:00:00.000Z","height":1.66,"weight":72,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":814941630,"name":"Victoria Jurczok","nationality":"GER","sex":"female","date_of_birth":"1990-03-25T00:00:00.000Z","height":1.61,"weight":56,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":461914927,"name":"Victoria Kaminskaya","nationality":"POR","sex":"female","date_of_birth":"1995-10-07T00:00:00.000Z","height":1.64,"weight":52,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":904905925,"name":"Victoria Lovelady","nationality":"BRA","sex":"female","date_of_birth":"1986-11-29T00:00:00.000Z","height":1.62,"weight":48,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":665731338,"name":"Victoria Max-Theurer","nationality":"AUT","sex":"female","date_of_birth":"1985-10-24T00:00:00.000Z","height":1.68,"weight":58,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":98600250,"name":"Victoria Mitchell","nationality":"AUS","sex":"female","date_of_birth":"1982-04-25T00:00:00.000Z","height":1.64,"weight":47,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":478490073,"name":"Victoria Thornley","nationality":"GBR","sex":"female","date_of_birth":"1987-11-30T00:00:00.000Z","height":1.73,"weight":76,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":42693483,"name":"Victoria Travascio","nationality":"ARG","sex":"female","date_of_birth":"1988-07-14T00:00:00.000Z","height":1.61,"weight":59,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":360949513,"name":"Victoria Zhilinskayte","nationality":"RUS","sex":"female","date_of_birth":"1989-03-06T00:00:00.000Z","height":1.88,"weight":80,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":870095817,"name":"Victoria Zuloaga","nationality":"ARG","sex":"female","date_of_birth":"1988-02-14T00:00:00.000Z","height":1.75,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":142988798,"name":"Vid Hidvegi","nationality":"HUN","sex":"male","date_of_birth":"1986-08-23T00:00:00.000Z","height":1.7,"weight":60,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":842228874,"name":"Vid Kavticnik","nationality":"SLO","sex":"male","date_of_birth":"1984-05-24T00:00:00.000Z","height":1.91,"weight":90,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":630821194,"name":"Vid Poteko","nationality":"SLO","sex":"male","date_of_birth":"1991-04-05T00:00:00.000Z","height":1.94,"weight":103,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":127732051,"name":"Vien Nguyen Thi Anh","nationality":"VIE","sex":"female","date_of_birth":"1996-11-09T00:00:00.000Z","height":1.72,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":827760060,"name":"Vigen Christensen","nationality":"DEN","sex":"male","date_of_birth":"1994-08-15T00:00:00.000Z","height":1.82,"weight":77,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":233722724,"name":"Vijona Kryeziu","nationality":"KOS","sex":"female","date_of_birth":"1997-10-08T00:00:00.000Z","height":1.67,"weight":51,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":197455500,"name":"Vikas Dahiya","nationality":"IND","sex":"male","date_of_birth":"1995-05-08T00:00:00.000Z","height":1.8,"weight":69,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":221050487,"name":"Vikas Gowda","nationality":"IND","sex":"male","date_of_birth":"1983-07-05T00:00:00.000Z","height":2.05,"weight":135,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":545176784,"name":"Viktar Staselovich","nationality":"BLR","sex":"male","date_of_birth":"1994-05-28T00:00:00.000Z","height":1.88,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":940975705,"name":"Viktor Axelsen","nationality":"DEN","sex":"male","date_of_birth":"1994-01-04T00:00:00.000Z","height":1.94,"weight":88,"sport":"badminton","gold":0,"silver":0,"bronze":1,"info":null},{"id":970603995,"name":"Viktor Bromer","nationality":"DEN","sex":"male","date_of_birth":"1993-04-20T00:00:00.000Z","height":1.94,"weight":87,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":194536089,"name":"Viktor Lorincz","nationality":"HUN","sex":"male","date_of_birth":"1990-04-28T00:00:00.000Z","height":1.76,"weight":89,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":250896019,"name":"Viktor Minibaev","nationality":"RUS","sex":"male","date_of_birth":"1991-07-18T00:00:00.000Z","height":1.73,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":494951044,"name":"Viktor Nagy","nationality":"HUN","sex":"male","date_of_birth":"1984-07-24T00:00:00.000Z","height":1.98,"weight":96,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":640015435,"name":"Viktor Nemes","nationality":"SRB","sex":"male","date_of_birth":"1993-07-21T00:00:00.000Z","height":1.7,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":602955950,"name":"Viktor Ruban","nationality":"UKR","sex":"male","date_of_birth":"1981-05-24T00:00:00.000Z","height":1.78,"weight":70,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":547888117,"name":"Viktor Teply","nationality":"CZE","sex":"male","date_of_birth":"1990-10-19T00:00:00.000Z","height":1.83,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":336471664,"name":"Viktor Troicki","nationality":"SRB","sex":"male","date_of_birth":"1986-02-10T00:00:00.000Z","height":1.9,"weight":85,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":603907916,"name":"Viktoria Chaika","nationality":"BLR","sex":"female","date_of_birth":"1980-12-26T00:00:00.000Z","height":1.64,"weight":50,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":656515082,"name":"Viktoria Egri","nationality":"HUN","sex":"female","date_of_birth":"1998-01-18T00:00:00.000Z","height":1.68,"weight":59,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":166768587,"name":"Viktoria Madarasz","nationality":"HUN","sex":"female","date_of_birth":"1985-05-12T00:00:00.000Z","height":1.58,"weight":44,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":409487161,"name":"Viktoria Pavlovich","nationality":"BLR","sex":"female","date_of_birth":"1978-05-08T00:00:00.000Z","height":1.75,"weight":60,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":636310483,"name":"Viktoria Schwarz","nationality":"AUT","sex":"female","date_of_birth":"1985-07-02T00:00:00.000Z","height":1.73,"weight":64,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":120044426,"name":"Viktoria Zeynep Gunes","nationality":"TUR","sex":"female","date_of_birth":"1998-06-19T00:00:00.000Z","height":1.85,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":797742247,"name":"Viktoriia Andreeva","nationality":"RUS","sex":"female","date_of_birth":"1992-06-21T00:00:00.000Z","height":1.9,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":441538649,"name":"Viktoriia Kalinina","nationality":"RUS","sex":"female","date_of_birth":"1988-12-08T00:00:00.000Z","height":1.83,"weight":74,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":535803587,"name":"Viktoriia Poliudina","nationality":"KGZ","sex":"female","date_of_birth":"1989-06-29T00:00:00.000Z","height":1.65,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":684932486,"name":"Viktoriia Turks","nationality":"UKR","sex":"female","date_of_birth":"1987-10-20T00:00:00.000Z","height":1.78,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":485757978,"name":"Viktoriia Us","nationality":"UKR","sex":"female","date_of_birth":"1993-04-29T00:00:00.000Z","height":1.67,"weight":63,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":444006582,"name":"Viktoriya Tkachuk","nationality":"UKR","sex":"female","date_of_birth":"1994-11-08T00:00:00.000Z","height":1.79,"weight":67,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":517107497,"name":"Viktoriya Zyabkina","nationality":"KAZ","sex":"female","date_of_birth":"1992-09-04T00:00:00.000Z","height":1.74,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":209908723,"name":"Viliame Mata","nationality":"FIJ","sex":"male","date_of_birth":"1991-10-22T00:00:00.000Z","height":1.96,"weight":106,"sport":"rugby sevens","gold":1,"silver":0,"bronze":0,"info":null},{"id":418792764,"name":"Villo Kormos","nationality":"HUN","sex":"female","date_of_birth":"1988-08-02T00:00:00.000Z","height":1.7,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":3169233,"name":"Vilma Pegado Nenganga","nationality":"ANG","sex":"female","date_of_birth":"1996-09-12T00:00:00.000Z","height":1.7,"weight":59,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":45735715,"name":"Vilmarie Mojica","nationality":"PUR","sex":"female","date_of_birth":"1985-08-13T00:00:00.000Z","height":1.8,"weight":63,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":537474477,"name":"Vincent Anstett","nationality":"FRA","sex":"male","date_of_birth":"1982-07-26T00:00:00.000Z","height":1.78,"weight":78,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":926029117,"name":"Vincent Breet","nationality":"RSA","sex":"male","date_of_birth":"1993-04-26T00:00:00.000Z","height":1.95,"weight":92,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":932426895,"name":"Vincent Farkas","nationality":"SVK","sex":"male","date_of_birth":"1993-01-13T00:00:00.000Z","height":1.93,"weight":90,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":509765681,"name":"Vincent Gerard","nationality":"FRA","sex":"male","date_of_birth":"1986-12-16T00:00:00.000Z","height":1.89,"weight":100,"sport":"handball","gold":0,"silver":1,"bronze":0,"info":null},{"id":403479855,"name":"Vincent Hancock","nationality":"USA","sex":"male","date_of_birth":"1989-03-19T00:00:00.000Z","height":1.73,"weight":79,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":925594598,"name":"Vincent Inigo","nationality":"FRA","sex":"male","date_of_birth":"1983-02-10T00:00:00.000Z","height":1.73,"weight":80,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":833794513,"name":"Vincent Luis","nationality":"FRA","sex":"male","date_of_birth":"1989-06-27T00:00:00.000Z","height":1.77,"weight":65,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":646986835,"name":"Vincent Riendeau","nationality":"CAN","sex":"male","date_of_birth":"1996-12-13T00:00:00.000Z","height":1.78,"weight":68,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":825166782,"name":"Vincent Vanasch","nationality":"BEL","sex":"male","date_of_birth":"1987-12-21T00:00:00.000Z","height":1.8,"weight":78,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":96494298,"name":"Vincent van der Want","nationality":"NED","sex":"male","date_of_birth":"1985-10-21T00:00:00.000Z","height":1.98,"weight":90,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":974436408,"name":"Vincenzo Capelli","nationality":"ITA","sex":"male","date_of_birth":"1988-10-26T00:00:00.000Z","height":1.94,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":983925141,"name":"Vincenzo Mangiacapre","nationality":"ITA","sex":"male","date_of_birth":"1989-01-17T00:00:00.000Z","height":1.7,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":242715735,"name":"Vincenzo Nibali","nationality":"ITA","sex":"male","date_of_birth":"1984-11-14T00:00:00.000Z","height":1.8,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":969140836,"name":"Vinesh Vinesh","nationality":"IND","sex":"female","date_of_birth":"1994-08-25T00:00:00.000Z","height":1.65,"weight":56,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":723726654,"name":"Viniana Riwai","nationality":"FIJ","sex":"female","date_of_birth":"1991-06-06T00:00:00.000Z","height":1.65,"weight":70,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":253097119,"name":"Vinicius Antonelli","nationality":"BRA","sex":"male","date_of_birth":"1990-03-01T00:00:00.000Z","height":1.83,"weight":82,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":29581250,"name":"Vinicius Teixeira","nationality":"BRA","sex":"male","date_of_birth":"1988-04-03T00:00:00.000Z","height":1.88,"weight":110,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":989120045,"name":"Violah Cheptoo Lagat","nationality":"KEN","sex":"female","date_of_birth":"1989-03-01T00:00:00.000Z","height":1.65,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":428647770,"name":"Violetta Kolobova","nationality":"RUS","sex":"female","date_of_birth":"1991-07-27T00:00:00.000Z","height":1.76,"weight":64,"sport":"fencing","gold":0,"silver":0,"bronze":1,"info":null},{"id":680801774,"name":"Virginia Bardach Martin","nationality":"ARG","sex":"female","date_of_birth":"1992-04-03T00:00:00.000Z","height":1.74,"weight":57,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":569654952,"name":"Virginia Thrasher","nationality":"USA","sex":"female","date_of_birth":"1997-02-28T00:00:00.000Z","height":1.55,"weight":54,"sport":"shooting","gold":1,"silver":0,"bronze":0,"info":null},{"id":756374787,"name":"Virginie Cueff","nationality":"FRA","sex":"female","date_of_birth":"1988-06-18T00:00:00.000Z","height":1.7,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":3602282,"name":"Virimi Vakatawa","nationality":"FRA","sex":"male","date_of_birth":"1992-05-01T00:00:00.000Z","height":1.85,"weight":87,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":424311527,"name":"Visiline Jepkesho","nationality":"KEN","sex":"female","date_of_birth":"1989-12-30T00:00:00.000Z","height":1.6,"weight":43,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":930876031,"name":"Vita Heine","nationality":"NOR","sex":"female","date_of_birth":"1984-11-21T00:00:00.000Z","height":null,"weight":null,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":955304524,"name":"Vitali Bubnovich","nationality":"BLR","sex":"male","date_of_birth":"1974-11-12T00:00:00.000Z","height":1.69,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":94067692,"name":"Vitalii Butrym","nationality":"UKR","sex":"male","date_of_birth":"1991-01-10T00:00:00.000Z","height":1.8,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":872401203,"name":"Vitalina Batsarashkina","nationality":"RUS","sex":"female","date_of_birth":"1996-10-01T00:00:00.000Z","height":1.62,"weight":60,"sport":"shooting","gold":0,"silver":1,"bronze":0,"info":null},{"id":628786964,"name":"Vitaliy Khudyakov","nationality":"KAZ","sex":"male","date_of_birth":"1994-08-07T00:00:00.000Z","height":1.86,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":806574554,"name":"Vitaly Dunaytsev","nationality":"RUS","sex":"male","date_of_birth":"1992-04-12T00:00:00.000Z","height":1.74,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":310488544,"name":"Vitaly Fokeev","nationality":"RUS","sex":"male","date_of_birth":"1974-02-15T00:00:00.000Z","height":1.8,"weight":45,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":819853942,"name":"Vitezslav Gebas","nationality":"CZE","sex":"male","date_of_birth":"1984-03-24T00:00:00.000Z","height":1.79,"weight":75,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":87145914,"name":"Vitezslav Vesely","nationality":"CZE","sex":"male","date_of_birth":"1983-02-27T00:00:00.000Z","height":1.86,"weight":93,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":990500234,"name":"Vitiny Hemthon","nationality":"CAM","sex":"female","date_of_birth":"1993-10-07T00:00:00.000Z","height":1.63,"weight":50,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":411101006,"name":"Vitor Benite","nationality":"BRA","sex":"male","date_of_birth":"1990-02-20T00:00:00.000Z","height":1.9,"weight":88,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":987131879,"name":"Vitor Hugo dos Santos","nationality":"BRA","sex":"male","date_of_birth":"1996-02-01T00:00:00.000Z","height":1.85,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":623036229,"name":"Vitoria Cristina Rosa","nationality":"BRA","sex":"female","date_of_birth":"1996-01-12T00:00:00.000Z","height":1.7,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":506125969,"name":"Vittorio Bissaro","nationality":"ITA","sex":"male","date_of_birth":"1987-06-01T00:00:00.000Z","height":1.83,"weight":72,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":239639221,"name":"Vivian Jepkemoi Cheruiyot","nationality":"KEN","sex":"female","date_of_birth":"1983-09-11T00:00:00.000Z","height":1.54,"weight":40,"sport":"athletics","gold":1,"silver":1,"bronze":0,"info":null},{"id":527372670,"name":"Vivian Kah Mun Hoo","nationality":"MAS","sex":"female","date_of_birth":"1990-03-19T00:00:00.000Z","height":1.66,"weight":56,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":563216361,"name":"Viviana Chavez","nationality":"ARG","sex":"female","date_of_birth":"1987-05-28T00:00:00.000Z","height":1.64,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":110185191,"name":"Viviane Bahia","nationality":"BRA","sex":"female","date_of_birth":"1994-02-14T00:00:00.000Z","height":1.76,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":696988201,"name":"Vjekoslav Paskovic","nationality":"MNE","sex":"male","date_of_birth":"1985-03-23T00:00:00.000Z","height":1.8,"weight":86,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":732110114,"name":"Vlad-Dragos Aicoboae","nationality":"ROU","sex":"male","date_of_birth":"1993-10-10T00:00:00.000Z","height":1.97,"weight":91,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":843584108,"name":"Vlada Chigireva","nationality":"RUS","sex":"female","date_of_birth":"1994-12-18T00:00:00.000Z","height":1.62,"weight":48,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":156876267,"name":"Vladimer Khinchegashvili","nationality":"GEO","sex":"male","date_of_birth":"1991-04-18T00:00:00.000Z","height":1.7,"weight":57,"sport":"wrestling","gold":1,"silver":0,"bronze":0,"info":null},{"id":635923594,"name":"Vladimir Gontcharov","nationality":"RUS","sex":"male","date_of_birth":"1977-05-04T00:00:00.000Z","height":1.68,"weight":58,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":878150693,"name":"Vladimir Isakov","nationality":"RUS","sex":"male","date_of_birth":"1970-02-28T00:00:00.000Z","height":1.78,"weight":83,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":407568391,"name":"Vladimir Issachenko","nationality":"KAZ","sex":"male","date_of_birth":"1982-12-27T00:00:00.000Z","height":1.95,"weight":90,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":431379852,"name":"Vladimir Ivanov","nationality":"RUS","sex":"male","date_of_birth":"1987-07-03T00:00:00.000Z","height":1.98,"weight":93,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":481376047,"name":"Vladimir Letnicov","nationality":"MDA","sex":"male","date_of_birth":"1981-10-07T00:00:00.000Z","height":1.78,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":557934502,"name":"Vladimir Malkov","nationality":"RUS","sex":"male","date_of_birth":"1986-04-09T00:00:00.000Z","height":1.88,"weight":79,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":229367719,"name":"Vladimir Margaryan","nationality":"ARM","sex":"male","date_of_birth":"1991-03-08T00:00:00.000Z","height":1.72,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":592631027,"name":"Vladimir Maslennikov","nationality":"RUS","sex":"male","date_of_birth":"1994-08-17T00:00:00.000Z","height":1.71,"weight":73,"sport":"shooting","gold":0,"silver":0,"bronze":1,"info":null},{"id":108548232,"name":"Vladimir Morozov","nationality":"RUS","sex":"male","date_of_birth":"1992-06-16T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":610704045,"name":"Vladimir Nikitin","nationality":"RUS","sex":"male","date_of_birth":"1990-03-25T00:00:00.000Z","height":1.65,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":53064858,"name":"Vladimir Samsonov","nationality":"BLR","sex":"male","date_of_birth":"1976-04-17T00:00:00.000Z","height":1.89,"weight":83,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":559441315,"name":"Vladimir Savanovic","nationality":"SRB","sex":"male","date_of_birth":"1985-06-12T00:00:00.000Z","height":1.8,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":54519941,"name":"Vladimir Stimac","nationality":"SRB","sex":"male","date_of_birth":"1987-08-25T00:00:00.000Z","height":2.11,"weight":112,"sport":"basketball","gold":0,"silver":1,"bronze":0,"info":null},{"id":795903491,"name":"Vladimir Torubarov","nationality":"SRB","sex":"male","date_of_birth":"1993-03-22T00:00:00.000Z","height":1.91,"weight":94,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":784092954,"name":"Vladimir Vladimirov Dubov","nationality":"BUL","sex":"male","date_of_birth":"1988-02-20T00:00:00.000Z","height":1.56,"weight":64,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":230293143,"name":"Vladislav Mustafin","nationality":"UZB","sex":"male","date_of_birth":"1995-09-26T00:00:00.000Z","height":1.81,"weight":78,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":889300340,"name":"Vladislav Ryabcev","nationality":"RUS","sex":"male","date_of_birth":"1987-12-13T00:00:00.000Z","height":1.96,"weight":96,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":207226972,"name":"Vladislav Yakovlev","nationality":"KAZ","sex":"male","date_of_birth":"1993-01-01T00:00:00.000Z","height":1.88,"weight":85,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":316731530,"name":"Vladlena Bobrovnikova","nationality":"RUS","sex":"female","date_of_birth":"1987-10-24T00:00:00.000Z","height":1.8,"weight":72,"sport":"handball","gold":1,"silver":0,"bronze":0,"info":null},{"id":122222,"name":"Vladyslav Hryko","nationality":"UKR","sex":"male","date_of_birth":"1997-01-25T00:00:00.000Z","height":1.69,"weight":57,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":771388004,"name":"Vlasios Maras","nationality":"GRE","sex":"male","date_of_birth":"1983-03-31T00:00:00.000Z","height":1.6,"weight":52,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":854069870,"name":"Volha Khudzenka","nationality":"BLR","sex":"female","date_of_birth":"1992-05-12T00:00:00.000Z","height":1.78,"weight":78,"sport":"canoe","gold":0,"silver":0,"bronze":1,"info":null},{"id":559528855,"name":"Volha Mazuronak","nationality":"BLR","sex":"female","date_of_birth":"1989-04-14T00:00:00.000Z","height":1.65,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":443487207,"name":"Volha Sudarava","nationality":"BLR","sex":"female","date_of_birth":"1984-02-22T00:00:00.000Z","height":1.76,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":365006989,"name":"Volha Ziuzkova","nationality":"BLR","sex":"female","date_of_birth":"1983-06-14T00:00:00.000Z","height":1.71,"weight":69,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":109518008,"name":"Volodymyr Hoza","nationality":"UKR","sex":"male","date_of_birth":"1996-04-15T00:00:00.000Z","height":1.83,"weight":94,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":204414092,"name":"Volodymyr Matviichuk","nationality":"UKR","sex":"male","date_of_birth":"1982-12-29T00:00:00.000Z","height":1.71,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":826347697,"name":"Vsevolod Zanko","nationality":"RUS","sex":"male","date_of_birth":"1995-07-30T00:00:00.000Z","height":1.9,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":855823071,"name":"Vyron Kokkalanis","nationality":"GRE","sex":"male","date_of_birth":"1985-08-19T00:00:00.000Z","height":1.86,"weight":75,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":32220093,"name":"Wadha Al Balushi","nationality":"OMA","sex":"female","date_of_birth":"1989-11-30T00:00:00.000Z","height":1.6,"weight":75,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":751514676,"name":"Wael Jallouz","nationality":"TUN","sex":"male","date_of_birth":"1991-05-03T00:00:00.000Z","height":1.97,"weight":105,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":754088322,"name":"Wagner Domingos","nationality":"BRA","sex":"male","date_of_birth":"1983-03-26T00:00:00.000Z","height":1.87,"weight":100,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":539224149,"name":"Waheed Abdulridha Waheed Karaawi","nationality":"IRQ","sex":"male","date_of_birth":"1983-05-22T00:00:00.000Z","height":1.78,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":620093926,"name":"Wai Sze Lee","nationality":"HKG","sex":"female","date_of_birth":"1987-05-12T00:00:00.000Z","height":1.65,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":419317871,"name":"Walace","nationality":"BRA","sex":"male","date_of_birth":"1995-04-04T00:00:00.000Z","height":1.88,"weight":75,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":929418601,"name":"Walid Bidani","nationality":"ALG","sex":"male","date_of_birth":"1994-06-11T00:00:00.000Z","height":1.85,"weight":123,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":422425972,"name":"Walid Mohamed","nationality":"EGY","sex":"male","date_of_birth":"1993-08-22T00:00:00.000Z","height":1.67,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":194921763,"name":"Walide Khyar","nationality":"FRA","sex":"male","date_of_birth":"1995-06-09T00:00:00.000Z","height":1.65,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":344970215,"name":"Wallace de Souza","nationality":"BRA","sex":"male","date_of_birth":"1987-06-26T00:00:00.000Z","height":1.98,"weight":87,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":202452253,"name":"Walton Eller","nationality":"USA","sex":"male","date_of_birth":"1982-01-06T00:00:00.000Z","height":1.88,"weight":81,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":788654634,"name":"Wan Ho Son","nationality":"KOR","sex":"male","date_of_birth":"1988-05-17T00:00:00.000Z","height":1.76,"weight":70,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":850200304,"name":"Wander Mateo","nationality":"DOM","sex":"male","date_of_birth":"1989-12-24T00:00:00.000Z","height":1.73,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":268487166,"name":"Wannes van Laer","nationality":"BEL","sex":"male","date_of_birth":"1985-03-05T00:00:00.000Z","height":1.81,"weight":81,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":187564963,"name":"Warren Barguil","nationality":"FRA","sex":"male","date_of_birth":"1991-10-28T00:00:00.000Z","height":1.84,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":781765976,"name":"Warren Potent","nationality":"AUS","sex":"male","date_of_birth":"1962-04-07T00:00:00.000Z","height":1.77,"weight":73,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":258919182,"name":"Wataru Endo","nationality":"JPN","sex":"male","date_of_birth":"1993-02-09T00:00:00.000Z","height":1.78,"weight":75,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":495782479,"name":"Wataru Yazawa","nationality":"JPN","sex":"male","date_of_birth":"1991-07-02T00:00:00.000Z","height":1.77,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":190206268,"name":"Wayde van Niekerk","nationality":"RSA","sex":"male","date_of_birth":"1992-07-15T00:00:00.000Z","height":1.83,"weight":70,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":437812263,"name":"Wayne Snyman","nationality":"RSA","sex":"male","date_of_birth":"1985-03-08T00:00:00.000Z","height":1.77,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":686326172,"name":"Wee Kiong Tan","nationality":"MAS","sex":"male","date_of_birth":"1989-05-21T00:00:00.000Z","height":1.77,"weight":77,"sport":"badminton","gold":0,"silver":1,"bronze":0,"info":null},{"id":59547454,"name":"Wei Deng","nationality":"CHN","sex":"female","date_of_birth":"1993-02-14T00:00:00.000Z","height":1.59,"weight":62,"sport":"weightlifting","gold":1,"silver":0,"bronze":0,"info":null},{"id":843515403,"name":"Wei Hong","nationality":"CHN","sex":"male","date_of_birth":"1989-10-04T00:00:00.000Z","height":1.92,"weight":86,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":739056222,"name":"Wei Jin","nationality":"CHN","sex":"male","date_of_birth":"1987-02-26T00:00:00.000Z","height":1.83,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":450932930,"name":"Wei Liu","nationality":"CHN","sex":"male","date_of_birth":"1987-11-27T00:00:00.000Z","height":1.75,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":358145132,"name":"Wei Pang","nationality":"CHN","sex":"male","date_of_birth":"1986-07-19T00:00:00.000Z","height":1.78,"weight":77,"sport":"shooting","gold":0,"silver":0,"bronze":1,"info":null},{"id":520932256,"name":"Wei Sun","nationality":"CHN","sex":"male","date_of_birth":"1992-10-27T00:00:00.000Z","height":1.93,"weight":69,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":416880116,"name":"Wei Wang","nationality":"CHN","sex":"male","date_of_birth":"1988-07-07T00:00:00.000Z","height":1.8,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":253018225,"name":"Wei Yu","nationality":"CHN","sex":"male","date_of_birth":"1987-09-11T00:00:00.000Z","height":1.8,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":434190912,"name":"Wei-Ling Chen","nationality":"TPE","sex":"female","date_of_birth":"1982-01-04T00:00:00.000Z","height":1.49,"weight":47,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":711688611,"name":"Wei-Ting Liu","nationality":"TPE","sex":"male","date_of_birth":"1995-01-06T00:00:00.000Z","height":1.96,"weight":81,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":42043973,"name":"Weiwei Zhang","nationality":"CHN","sex":"female","date_of_birth":"1990-10-07T00:00:00.000Z","height":1.82,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":254471828,"name":"Weiwei Zhu","nationality":"CHN","sex":"female","date_of_birth":"1990-05-22T00:00:00.000Z","height":1.8,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":114920742,"name":"Welisson Rosa da Silva","nationality":"BRA","sex":"male","date_of_birth":"1983-11-22T00:00:00.000Z","height":1.6,"weight":85,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":676724984,"name":"Welson Sim","nationality":"MAS","sex":"male","date_of_birth":"1997-03-29T00:00:00.000Z","height":1.81,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":682325171,"name":"Wen Lu","nationality":"CHN","sex":"female","date_of_birth":"1990-02-26T00:00:00.000Z","height":1.88,"weight":78,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":272832003,"name":"Wen-Ling Chen","nationality":"TPE","sex":"female","date_of_birth":"1994-08-16T00:00:00.000Z","height":1.75,"weight":69,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":447697493,"name":"Wen-Tang Lin","nationality":"TPE","sex":"male","date_of_birth":"1974-06-28T00:00:00.000Z","height":1.74,"weight":77,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":74774569,"name":"Wenda Nel","nationality":"RSA","sex":"female","date_of_birth":"1988-07-30T00:00:00.000Z","height":1.65,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":465452582,"name":"Wendie Renard","nationality":"FRA","sex":"female","date_of_birth":"1990-07-20T00:00:00.000Z","height":1.87,"weight":70,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":406064567,"name":"Wendy Cornejo","nationality":"BOL","sex":"female","date_of_birth":"1993-01-07T00:00:00.000Z","height":1.62,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":628804962,"name":"Wenjun Guo","nationality":"CHN","sex":"female","date_of_birth":"1984-06-22T00:00:00.000Z","height":1.68,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":992307110,"name":"Wenjun Ren","nationality":"CHN","sex":"female","date_of_birth":"1992-01-15T00:00:00.000Z","height":1.75,"weight":67,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":566882529,"name":"Wenjun Xie","nationality":"CHN","sex":"male","date_of_birth":"1990-07-11T00:00:00.000Z","height":1.9,"weight":87,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":111882527,"name":"Wenna He","nationality":"CHN","sex":"female","date_of_birth":"1989-01-19T00:00:00.000Z","height":1.6,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":886760487,"name":"Wenxiu Zhang","nationality":"CHN","sex":"female","date_of_birth":"1986-03-22T00:00:00.000Z","height":1.83,"weight":105,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":526167499,"name":"Wenyan Sun","nationality":"CHN","sex":"female","date_of_birth":"1989-12-27T00:00:00.000Z","height":1.7,"weight":58,"sport":"aquatics","gold":0,"silver":2,"bronze":0,"info":null},{"id":71120079,"name":"Wenyi Huang","nationality":"CHN","sex":"female","date_of_birth":"1991-03-06T00:00:00.000Z","height":1.78,"weight":63,"sport":"rowing","gold":0,"silver":0,"bronze":1,"info":null},{"id":466231516,"name":"Werner Kok","nationality":"RSA","sex":"male","date_of_birth":"1993-01-17T00:00:00.000Z","height":1.8,"weight":91,"sport":"rugby sevens","gold":0,"silver":0,"bronze":1,"info":null},{"id":487398764,"name":"Weronika Deresz","nationality":"POL","sex":"female","date_of_birth":"1985-09-05T00:00:00.000Z","height":1.7,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":530905134,"name":"Wesley Korir","nationality":"KEN","sex":"male","date_of_birth":"1982-11-15T00:00:00.000Z","height":1.77,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":934575114,"name":"Wesley Roberts","nationality":"COK","sex":"male","date_of_birth":"1997-06-24T00:00:00.000Z","height":1.88,"weight":74,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":539265480,"name":"Wesley Vazquez","nationality":"PUR","sex":"male","date_of_birth":"1994-03-27T00:00:00.000Z","height":1.92,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":455850470,"name":"Weverton","nationality":"BRA","sex":"male","date_of_birth":"1987-12-13T00:00:00.000Z","height":1.86,"weight":75,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":81682988,"name":"Whitney Ashley","nationality":"USA","sex":"female","date_of_birth":"1989-02-18T00:00:00.000Z","height":1.76,"weight":90,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":146065119,"name":"Whitney Engen","nationality":"USA","sex":"female","date_of_birth":"1987-11-28T00:00:00.000Z","height":1.72,"weight":56,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":916383501,"name":"Wiam Dislam","nationality":"MAR","sex":"female","date_of_birth":"1987-10-22T00:00:00.000Z","height":1.8,"weight":69,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":674266190,"name":"Wianka van Dorp","nationality":"NED","sex":"female","date_of_birth":"1987-12-01T00:00:00.000Z","height":1.77,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":30448632,"name":"Wiktor Chabel","nationality":"POL","sex":"male","date_of_birth":"1985-11-23T00:00:00.000Z","height":1.97,"weight":93,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":973792476,"name":"Wilfried Bingangoye","nationality":"GAB","sex":"male","date_of_birth":"1985-03-25T00:00:00.000Z","height":1.72,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":637431753,"name":"Wilhem Belocian","nationality":"FRA","sex":"male","date_of_birth":"1995-06-22T00:00:00.000Z","height":1.78,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":667133584,"name":"Will Brown","nationality":"USA","sex":"male","date_of_birth":"1991-12-31T00:00:00.000Z","height":1.71,"weight":61,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":745203052,"name":"Will Claye","nationality":"USA","sex":"male","date_of_birth":"1991-06-13T00:00:00.000Z","height":1.81,"weight":72,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":202043393,"name":"Will Crothers","nationality":"CAN","sex":"male","date_of_birth":"1987-06-14T00:00:00.000Z","height":1.95,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":212657714,"name":"Will Dean","nationality":"CAN","sex":"male","date_of_birth":"1987-06-10T00:00:00.000Z","height":1.95,"weight":95,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":971499315,"name":"Will Fletcher","nationality":"GBR","sex":"male","date_of_birth":"1989-12-24T00:00:00.000Z","height":1.86,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":878681107,"name":"Will Godward","nationality":"AUS","sex":"male","date_of_birth":"1984-04-15T00:00:00.000Z","height":1.89,"weight":95,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":281145945,"name":"Will Ryan","nationality":"AUS","sex":"male","date_of_birth":"1988-12-23T00:00:00.000Z","height":1.93,"weight":75,"sport":"sailing","gold":0,"silver":1,"bronze":0,"info":null},{"id":323245205,"name":"Willem Coertzen","nationality":"RSA","sex":"male","date_of_birth":"1982-12-30T00:00:00.000Z","height":1.86,"weight":79,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":73209628,"name":"Willem van Schuerbeeck","nationality":"BEL","sex":"male","date_of_birth":"1984-10-24T00:00:00.000Z","height":1.79,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":860282405,"name":"Willemijn Bos","nationality":"NED","sex":"female","date_of_birth":"1988-05-02T00:00:00.000Z","height":1.81,"weight":69,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":550290516,"name":"William","nationality":"BRA","sex":"male","date_of_birth":"1995-04-03T00:00:00.000Z","height":1.71,"weight":65,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":624517317,"name":"William Arjona","nationality":"BRA","sex":"male","date_of_birth":"1979-07-31T00:00:00.000Z","height":1.85,"weight":78,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":151807374,"name":"William Chetcuti","nationality":"MLT","sex":"male","date_of_birth":"1985-01-07T00:00:00.000Z","height":1.8,"weight":93,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":63879528,"name":"William Collazo","nationality":"CUB","sex":"male","date_of_birth":"1986-08-31T00:00:00.000Z","height":1.72,"weight":71,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":213332524,"name":"William Ekong","nationality":"NGR","sex":"male","date_of_birth":"1993-09-01T00:00:00.000Z","height":1.75,"weight":null,"sport":"football","gold":0,"silver":0,"bronze":1,"info":null},{"id":410962720,"name":"William Fox-Pitt","nationality":"GBR","sex":"male","date_of_birth":"1969-01-02T00:00:00.000Z","height":1.96,"weight":80,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":"A collector of medals for Great Britain in equestrian eventing, William Fox-Pit won the silver at Athens 2004 and London 2012, and a bronze at Beijing 2008. He was his country's first athlete to achieve the world number one ranking."},{"id":974426000,"name":"William Lockwood","nationality":"AUS","sex":"male","date_of_birth":"1988-05-13T00:00:00.000Z","height":1.91,"weight":88,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":177039593,"name":"William Meynard","nationality":"FRA","sex":"male","date_of_birth":"1987-07-11T00:00:00.000Z","height":1.92,"weight":85,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":150307137,"name":"William Reid Priddy","nationality":"USA","sex":"male","date_of_birth":"1977-10-01T00:00:00.000Z","height":1.94,"weight":89,"sport":"volleyball","gold":0,"silver":0,"bronze":1,"info":null},{"id":886806565,"name":"William Satch","nationality":"GBR","sex":"male","date_of_birth":"1989-06-09T00:00:00.000Z","height":1.98,"weight":100,"sport":"rowing","gold":1,"silver":0,"bronze":0,"info":null},{"id":770119639,"name":"William Tesillo","nationality":"COL","sex":"male","date_of_birth":"1990-02-02T00:00:00.000Z","height":1.86,"weight":76,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":925824275,"name":"Willian Giaretton","nationality":"BRA","sex":"male","date_of_birth":"1990-09-26T00:00:00.000Z","height":1.93,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":1567734,"name":"Willie Ambaka","nationality":"KEN","sex":"male","date_of_birth":"1990-05-14T00:00:00.000Z","height":1.93,"weight":100,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":879180304,"name":"Willy Hernangomez","nationality":"ESP","sex":"male","date_of_birth":"1994-05-27T00:00:00.000Z","height":2.1,"weight":115,"sport":"basketball","gold":0,"silver":0,"bronze":1,"info":null},{"id":580584287,"name":"Wilma Murto","nationality":"FIN","sex":"female","date_of_birth":"1998-06-11T00:00:00.000Z","height":1.81,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":509216615,"name":"Wilmar Barrios","nationality":"COL","sex":"male","date_of_birth":"1993-10-16T00:00:00.000Z","height":1.79,"weight":74,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":732552796,"name":"Wim Stroetinga","nationality":"NED","sex":"male","date_of_birth":"1985-05-23T00:00:00.000Z","height":1.76,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":2681418,"name":"Windi Graterol","nationality":"VEN","sex":"male","date_of_birth":"1986-09-10T00:00:00.000Z","height":2.05,"weight":110,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":630860281,"name":"Winnie Nanyondo","nationality":"UGA","sex":"female","date_of_birth":"1993-08-23T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":266764491,"name":"Winny Chebet","nationality":"KEN","sex":"female","date_of_birth":"1990-12-20T00:00:00.000Z","height":1.52,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":425181289,"name":"Winston George","nationality":"GUY","sex":"male","date_of_birth":"1987-05-19T00:00:00.000Z","height":1.67,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":404382792,"name":"Winston Hill","nationality":"FIJ","sex":"male","date_of_birth":"1993-09-17T00:00:00.000Z","height":null,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":923747031,"name":"Wirimai Juwawo","nationality":"ZIM","sex":"male","date_of_birth":"1980-11-07T00:00:00.000Z","height":1.72,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":446464349,"name":"Wisam Nawar","nationality":"EGY","sex":"male","date_of_birth":"1990-02-14T00:00:00.000Z","height":1.85,"weight":111,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":680507143,"name":"Wissem Hosni","nationality":"TUN","sex":"male","date_of_birth":"1985-03-08T00:00:00.000Z","height":1.75,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":618949367,"name":"Witoon Mingmoon","nationality":"THA","sex":"male","date_of_birth":"1996-02-10T00:00:00.000Z","height":1.57,"weight":56,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":640840803,"name":"Witthaya Thamwong","nationality":"THA","sex":"male","date_of_birth":"1987-09-18T00:00:00.000Z","height":1.8,"weight":82,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":984494121,"name":"Wojciech Nowicki","nationality":"POL","sex":"male","date_of_birth":"1989-02-22T00:00:00.000Z","height":1.96,"weight":128,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":539569636,"name":"Wojciech Theiner","nationality":"POL","sex":"male","date_of_birth":"1986-06-25T00:00:00.000Z","height":1.89,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":595198365,"name":"Wojciech Wojdak","nationality":"POL","sex":"male","date_of_birth":"1996-03-13T00:00:00.000Z","height":1.86,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":76593466,"name":"Won Chol Yun","nationality":"PRK","sex":"male","date_of_birth":"1989-07-03T00:00:00.000Z","height":1.63,"weight":59,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":457937949,"name":"Won Jin Kim","nationality":"KOR","sex":"male","date_of_birth":"1992-05-01T00:00:00.000Z","height":1.68,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":663385639,"name":"Wonchul Yoo","nationality":"KOR","sex":"male","date_of_birth":"1984-07-20T00:00:00.000Z","height":1.65,"weight":59,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":69693053,"name":"Woojin Kim","nationality":"KOR","sex":"male","date_of_birth":"1992-06-20T00:00:00.000Z","height":1.8,"weight":95,"sport":"archery","gold":1,"silver":0,"bronze":0,"info":null},{"id":651375784,"name":"Woongtae Jun","nationality":"KOR","sex":"male","date_of_birth":"1995-08-01T00:00:00.000Z","height":1.75,"weight":66,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":474296927,"name":"Wout Poels","nationality":"NED","sex":"male","date_of_birth":"1987-10-01T00:00:00.000Z","height":1.86,"weight":67,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":640901977,"name":"Wuileixis De Jesus Rivas Espinoza","nationality":"VEN","sex":"male","date_of_birth":"1990-08-27T00:00:00.000Z","height":1.74,"weight":null,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":851340643,"name":"Wuta Waco Bige Dombaxi","nationality":"ANG","sex":"female","date_of_birth":"1986-04-05T00:00:00.000Z","height":1.8,"weight":92,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":332172731,"name":"Wuttichai Masuk","nationality":"THA","sex":"male","date_of_birth":"1990-03-16T00:00:00.000Z","height":1.75,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":830874507,"name":"Xan de Waard","nationality":"NED","sex":"female","date_of_birth":"1995-11-08T00:00:00.000Z","height":1.63,"weight":55,"sport":"hockey","gold":0,"silver":1,"bronze":0,"info":null},{"id":283897896,"name":"Xantal Gine","nationality":"ESP","sex":"female","date_of_birth":"1992-09-23T00:00:00.000Z","height":1.68,"weight":62,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":618448909,"name":"Xavier Lleonart","nationality":"ESP","sex":"male","date_of_birth":"1990-06-22T00:00:00.000Z","height":1.8,"weight":70,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":9403852,"name":"Xavier Vela Maggi","nationality":"BRA","sex":"male","date_of_birth":"1989-08-07T00:00:00.000Z","height":1.78,"weight":71,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":175218887,"name":"Xaysa Anousone","nationality":"LAO","sex":"male","date_of_birth":"1994-03-20T00:00:00.000Z","height":1.8,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":821538769,"name":"Xenia Krizsan","nationality":"HUN","sex":"female","date_of_birth":"1993-01-13T00:00:00.000Z","height":1.72,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":933749251,"name":"Xia Ding","nationality":"CHN","sex":"female","date_of_birth":"1990-01-13T00:00:00.000Z","height":1.8,"weight":67,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":304876700,"name":"Xia Lian Ni","nationality":"LUX","sex":"female","date_of_birth":"1963-07-04T00:00:00.000Z","height":1.57,"weight":58,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":944403692,"name":"Xiang Li","nationality":"CHN","sex":"male","date_of_birth":"1993-07-02T00:00:00.000Z","height":1.91,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":427125476,"name":"Xiang Liu","nationality":"CHN","sex":"female","date_of_birth":"1996-09-01T00:00:00.000Z","height":1.8,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":371898771,"name":"Xiang Wei Jasmine Ser","nationality":"SIN","sex":"female","date_of_birth":"1990-09-24T00:00:00.000Z","height":1.55,"weight":47,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":591962828,"name":"Xiangyu Gong","nationality":"CHN","sex":"female","date_of_birth":"1997-04-21T00:00:00.000Z","height":1.86,"weight":72,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":591353538,"name":"Xiao Gu","nationality":"CHN","sex":"female","date_of_birth":"1993-03-18T00:00:00.000Z","height":1.74,"weight":60,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":695366318,"name":"Xiao Juan Diao","nationality":"HKG","sex":"female","date_of_birth":"1986-03-15T00:00:00.000Z","height":1.7,"weight":59,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":46661716,"name":"Xiao Sun","nationality":"CHN","sex":"female","date_of_birth":"1992-06-13T00:00:00.000Z","height":1.67,"weight":57,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":476593351,"name":"Xiao Yu Liang","nationality":"SIN","sex":"female","date_of_birth":"1996-01-11T00:00:00.000Z","height":1.63,"weight":55,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":470006570,"name":"Xiaochuan Zhai","nationality":"CHN","sex":"male","date_of_birth":"1993-03-24T00:00:00.000Z","height":2.04,"weight":100,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":306770484,"name":"Xiaohan Mei","nationality":"CHN","sex":"female","date_of_birth":"1996-11-11T00:00:00.000Z","height":1.8,"weight":100,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":247133219,"name":"Xiaohong Li","nationality":"CHN","sex":"female","date_of_birth":"1995-01-08T00:00:00.000Z","height":1.62,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":161425340,"name":"Xiaojia Chen","nationality":"CHN","sex":"female","date_of_birth":"1988-04-02T00:00:00.000Z","height":1.82,"weight":68,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":603812058,"name":"Xiaojing Liang","nationality":"CHN","sex":"female","date_of_birth":"1997-04-07T00:00:00.000Z","height":1.56,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":780086362,"name":"Xiaojun Lyu","nationality":"CHN","sex":"male","date_of_birth":"1984-07-27T00:00:00.000Z","height":1.72,"weight":77,"sport":"weightlifting","gold":0,"silver":1,"bronze":0,"info":null},{"id":756419344,"name":"Xiaoli Wang","nationality":"CHN","sex":"female","date_of_birth":"1982-05-12T00:00:00.000Z","height":1.69,"weight":70,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":562938446,"name":"Xiaolin Bi","nationality":"CHN","sex":"female","date_of_birth":"1989-09-18T00:00:00.000Z","height":1.76,"weight":62,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":713954597,"name":"Xiaoling Luo","nationality":"CHN","sex":"female","date_of_birth":"1988-09-20T00:00:00.000Z","height":1.7,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":750468323,"name":"Xiaolong Xu","nationality":"CHN","sex":"male","date_of_birth":"1992-12-20T00:00:00.000Z","height":1.85,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":317190997,"name":"Xiaolu Li","nationality":"CHN","sex":"female","date_of_birth":"1992-11-07T00:00:00.000Z","height":1.67,"weight":51,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":195305057,"name":"Xiaona Shan","nationality":"GER","sex":"female","date_of_birth":"1983-01-18T00:00:00.000Z","height":1.65,"weight":54,"sport":"table tennis","gold":0,"silver":1,"bronze":0,"info":null},{"id":70171405,"name":"Xiaonan Zhang","nationality":"CHN","sex":"female","date_of_birth":"1992-07-21T00:00:00.000Z","height":1.68,"weight":58,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":620187619,"name":"Xiaotong Liu","nationality":"CHN","sex":"female","date_of_birth":"1990-02-16T00:00:00.000Z","height":1.88,"weight":70,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":363955533,"name":"Xiaoxia Li","nationality":"CHN","sex":"female","date_of_birth":"1988-01-15T00:00:00.000Z","height":1.74,"weight":65,"sport":"table tennis","gold":1,"silver":1,"bronze":0,"info":"Holding nine world championship golds, won over the past decade, China's Li Xiaoxia shone in table tennis at London 2012, when she won gold in the singles and team events."},{"id":53876451,"name":"Xiaoxu Ma","nationality":"CHN","sex":"female","date_of_birth":"1988-06-05T00:00:00.000Z","height":1.72,"weight":73,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":870464131,"name":"Xiaoxue Zhang","nationality":"CHN","sex":"female","date_of_birth":"1992-12-13T00:00:00.000Z","height":1.62,"weight":51,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":518352291,"name":"Xin Xin","nationality":"CHN","sex":"female","date_of_birth":"1996-11-06T00:00:00.000Z","height":1.76,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":79448712,"name":"Xin Xu","nationality":"CHN","sex":"male","date_of_birth":"1990-01-08T00:00:00.000Z","height":1.8,"weight":67,"sport":"table tennis","gold":1,"silver":0,"bronze":0,"info":null},{"id":138582519,"name":"Xin Yan","nationality":"AUS","sex":"male","date_of_birth":"1988-12-09T00:00:00.000Z","height":1.8,"weight":75,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":935030404,"name":"Xing Han","nationality":"CGO","sex":"female","date_of_birth":"1989-11-08T00:00:00.000Z","height":1.65,"weight":57,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":402209729,"name":"Xinglong Gao","nationality":"CHN","sex":"male","date_of_birth":"1994-03-12T00:00:00.000Z","height":1.82,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":140331302,"name":"Xingqiang Tang","nationality":"CHN","sex":"male","date_of_birth":"1995-08-11T00:00:00.000Z","height":1.7,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":284651542,"name":"Xinping Liang","nationality":"CHN","sex":"female","date_of_birth":"1994-07-31T00:00:00.000Z","height":1.71,"weight":60,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":265059163,"name":"Xinyan Wang","nationality":"CHN","sex":"female","date_of_birth":"1991-04-26T00:00:00.000Z","height":1.81,"weight":73,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":193062950,"name":"Xinyan Zhang","nationality":"CHN","sex":"female","date_of_birth":"1994-02-09T00:00:00.000Z","height":1.7,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":95255319,"name":"Xinyi Chen","nationality":"CHN","sex":"female","date_of_birth":"1998-01-02T00:00:00.000Z","height":1.78,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":527379806,"name":"Xinyu Zhang","nationality":"CHN","sex":"female","date_of_birth":"1997-03-09T00:00:00.000Z","height":1.66,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":83460072,"name":"Xinyue Su","nationality":"CHN","sex":"female","date_of_birth":"1991-11-08T00:00:00.000Z","height":1.78,"weight":94,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":429546103,"name":"Xinyue Yuan","nationality":"CHN","sex":"female","date_of_birth":"1996-12-21T00:00:00.000Z","height":2.01,"weight":78,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":846423919,"name":"Xinyue Zhang","nationality":"CHN","sex":"female","date_of_birth":"1993-05-05T00:00:00.000Z","height":1.77,"weight":73,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":692957998,"name":"Xiuzhi Lu","nationality":"CHN","sex":"female","date_of_birth":"1993-10-26T00:00:00.000Z","height":1.6,"weight":45,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":305914002,"name":"Xiyu Lin","nationality":"CHN","sex":"female","date_of_birth":"1996-02-25T00:00:00.000Z","height":1.71,"weight":65,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":285179001,"name":"Xoana Iacoi","nationality":"ARG","sex":"female","date_of_birth":"1992-06-03T00:00:00.000Z","height":1.61,"weight":70,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":56252755,"name":"Xuan Vinh Hoang","nationality":"VIE","sex":"male","date_of_birth":"1974-10-06T00:00:00.000Z","height":1.75,"weight":75,"sport":"shooting","gold":1,"silver":1,"bronze":0,"info":null},{"id":124699891,"name":"Xue Li","nationality":"FRA","sex":"female","date_of_birth":"1985-04-14T00:00:00.000Z","height":1.65,"weight":57,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":773136288,"name":"Xuechen Huang","nationality":"CHN","sex":"female","date_of_birth":"1990-02-25T00:00:00.000Z","height":1.75,"weight":62,"sport":"aquatics","gold":0,"silver":2,"bronze":0,"info":null},{"id":199638855,"name":"Xuechun Zhong","nationality":"CHN","sex":"female","date_of_birth":"1994-01-18T00:00:00.000Z","height":1.66,"weight":55,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":597272613,"name":"Xueer Wang","nationality":"CHN","sex":"female","date_of_birth":"1998-01-15T00:00:00.000Z","height":1.78,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":652008471,"name":"Xuerui Li","nationality":"CHN","sex":"female","date_of_birth":"1991-01-24T00:00:00.000Z","height":1.75,"weight":65,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":283158368,"name":"Xuesong Gu","nationality":"CHN","sex":"male","date_of_birth":"1993-06-21T00:00:00.000Z","height":1.78,"weight":76,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":166545543,"name":"Xunzhao Cheng","nationality":"CHN","sex":"male","date_of_birth":"1991-02-09T00:00:00.000Z","height":1.85,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":152863317,"name":"Ya Tan","nationality":"CHN","sex":"male","date_of_birth":"1992-07-18T00:00:00.000Z","height":1.74,"weight":70,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":872511641,"name":"Ya-Ting Tan","nationality":"TPE","sex":"female","date_of_birth":"1993-11-07T00:00:00.000Z","height":1.58,"weight":53,"sport":"archery","gold":0,"silver":0,"bronze":1,"info":null},{"id":338589899,"name":"Yaaqoub Alsaadi","nationality":"UAE","sex":"male","date_of_birth":"1996-06-13T00:00:00.000Z","height":1.75,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":137239847,"name":"Yadinys Amaris","nationality":"COL","sex":"female","date_of_birth":"1984-04-01T00:00:00.000Z","height":1.62,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":552083817,"name":"Yadira Silva","nationality":"MEX","sex":"female","date_of_birth":"1985-12-24T00:00:00.000Z","height":1.59,"weight":55,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":438851517,"name":"Yadisleidis Pedroso","nationality":"ITA","sex":"female","date_of_birth":"1987-01-28T00:00:00.000Z","height":1.7,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":539240729,"name":"Yael Castiglione","nationality":"ARG","sex":"female","date_of_birth":"1985-09-27T00:00:00.000Z","height":1.84,"weight":75,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":626583802,"name":"Yago Lange","nationality":"ARG","sex":"male","date_of_birth":"1988-03-22T00:00:00.000Z","height":1.8,"weight":77,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":786911278,"name":"Yaime Perez","nationality":"CUB","sex":"female","date_of_birth":"1991-05-29T00:00:00.000Z","height":1.75,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":420817403,"name":"Yajie Si","nationality":"CHN","sex":"female","date_of_birth":"1998-12-04T00:00:00.000Z","height":1.64,"weight":57,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":267368627,"name":"Yajun Li","nationality":"CHN","sex":"female","date_of_birth":"1993-04-27T00:00:00.000Z","height":1.51,"weight":53,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":549751997,"name":"Yakov Toumarkin","nationality":"ISR","sex":"male","date_of_birth":"1992-02-15T00:00:00.000Z","height":1.92,"weight":90,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":445656817,"name":"Yalennis Castillo","nationality":"CUB","sex":"female","date_of_birth":"1986-05-21T00:00:00.000Z","height":1.74,"weight":78,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":294527962,"name":"Yali Jing","nationality":"CHN","sex":"female","date_of_birth":"1989-05-25T00:00:00.000Z","height":1.76,"weight":63,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":380260850,"name":"Yamil Alberto Peralta","nationality":"ARG","sex":"male","date_of_birth":"1991-07-16T00:00:00.000Z","height":1.92,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":450541833,"name":"Yan Jiang","nationality":"CHN","sex":"female","date_of_birth":"1989-01-10T00:00:00.000Z","height":1.78,"weight":70,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":333015501,"name":"Yan Wang","nationality":"CHN","sex":"female","date_of_birth":"1991-08-22T00:00:00.000Z","height":1.75,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":44353519,"name":"Yan Wang","nationality":"CHN","sex":"female","date_of_birth":"1999-10-30T00:00:00.000Z","height":1.4,"weight":33,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":664863938,"name":"Yan Yee Ng","nationality":"MAS","sex":"female","date_of_birth":"1993-07-11T00:00:00.000Z","height":1.55,"weight":51,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":76793158,"name":"Yana Alekseevna","nationality":"AZE","sex":"female","date_of_birth":"1987-10-30T00:00:00.000Z","height":1.69,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":541557997,"name":"Yana Belomoina","nationality":"UKR","sex":"female","date_of_birth":"1992-11-02T00:00:00.000Z","height":1.64,"weight":46,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":223640307,"name":"Yana Egorian","nationality":"RUS","sex":"female","date_of_birth":"1993-12-20T00:00:00.000Z","height":1.75,"weight":64,"sport":"fencing","gold":2,"silver":0,"bronze":0,"info":null},{"id":243275636,"name":"Yana Kudryavtseva","nationality":"RUS","sex":"female","date_of_birth":"1997-09-29T00:00:00.000Z","height":1.7,"weight":47,"sport":"gymnastics","gold":0,"silver":1,"bronze":0,"info":"Russia's Yana Kudryavtseva is a three-time world rhythmic gymnastics champion. Her first win came when she was just 15, making her the youngest world champion in history. Yana is the daughter of former Olympic champion swimmer Aleksey Kudryavtsev."},{"id":43753188,"name":"Yana Pavlova","nationality":"RUS","sex":"female","date_of_birth":"1996-01-06T00:00:00.000Z","height":1.56,"weight":51,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":435033885,"name":"Yana Shcherban","nationality":"RUS","sex":"female","date_of_birth":"1989-09-06T00:00:00.000Z","height":1.85,"weight":71,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":297532714,"name":"Yana Shemyakina","nationality":"UKR","sex":"female","date_of_birth":"1986-01-05T00:00:00.000Z","height":1.68,"weight":60,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":218946675,"name":"Yana Tie","nationality":"HKG","sex":"female","date_of_birth":"1979-05-13T00:00:00.000Z","height":1.6,"weight":59,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":308918609,"name":"Yanan Sun","nationality":"CHN","sex":"female","date_of_birth":"1992-09-15T00:00:00.000Z","height":1.61,"weight":51,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":63153273,"name":"Yancarlos Martinez","nationality":"DOM","sex":"male","date_of_birth":"1992-07-08T00:00:00.000Z","height":1.71,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":599927932,"name":"Yane Marcia Marques","nationality":"BRA","sex":"female","date_of_birth":"1984-01-07T00:00:00.000Z","height":1.66,"weight":55,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":919768617,"name":"Yanet Ursula Sovero Nino","nationality":"PER","sex":"female","date_of_birth":"1983-05-02T00:00:00.000Z","height":1.63,"weight":58,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":167053501,"name":"Yanfei Shen","nationality":"ESP","sex":"female","date_of_birth":"1979-12-24T00:00:00.000Z","height":1.65,"weight":65,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":293632748,"name":"Yang Chen","nationality":"CHN","sex":"female","date_of_birth":"1991-07-10T00:00:00.000Z","height":1.8,"weight":97,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":136270822,"name":"Yang Fan","nationality":"CHN","sex":"male","date_of_birth":"1990-01-03T00:00:00.000Z","height":1.83,"weight":78,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":760332947,"name":"Yang Gao","nationality":"CHN","sex":"female","date_of_birth":"1993-03-01T00:00:00.000Z","height":1.78,"weight":105,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":490068469,"name":"Yang Liu","nationality":"CHN","sex":"male","date_of_birth":"1994-09-10T00:00:00.000Z","height":1.62,"weight":61,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":99159206,"name":"Yang Lyu","nationality":"CHN","sex":"female","date_of_birth":"1993-11-26T00:00:00.000Z","height":1.83,"weight":77,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":349451420,"name":"Yang Peng","nationality":"CHN","sex":"female","date_of_birth":"1992-01-17T00:00:00.000Z","height":1.63,"weight":59,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":344496691,"name":"Yang Sun","nationality":"CHN","sex":"male","date_of_birth":"1991-12-01T00:00:00.000Z","height":2,"weight":92,"sport":"aquatics","gold":1,"silver":1,"bronze":0,"info":null},{"id":619307407,"name":"Yang Wang","nationality":"SVK","sex":"male","date_of_birth":"1994-09-24T00:00:00.000Z","height":1.83,"weight":73,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":270107002,"name":"Yang Yu","nationality":"CHN","sex":"female","date_of_birth":"1986-04-07T00:00:00.000Z","height":1.66,"weight":62,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":188592965,"name":"Yanhan Ai","nationality":"CHN","sex":"female","date_of_birth":"2002-02-07T00:00:00.000Z","height":1.68,"weight":54,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":801724577,"name":"Yanic Gentry Torfer","nationality":"MEX","sex":"male","date_of_birth":"1991-02-20T00:00:00.000Z","height":1.84,"weight":82,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":846532054,"name":"Yaniel Carrero","nationality":"CUB","sex":"male","date_of_birth":"1995-08-17T00:00:00.000Z","height":1.74,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":491775896,"name":"Yanina Wickmayer","nationality":"BEL","sex":"female","date_of_birth":"1989-10-20T00:00:00.000Z","height":1.82,"weight":72,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":528693937,"name":"Yanislav Gerchev","nationality":"BUL","sex":"male","date_of_birth":"1989-10-04T00:00:00.000Z","height":1.7,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":273498776,"name":"Yaniuska Isabel Espinosa","nationality":"VEN","sex":"female","date_of_birth":"1986-12-05T00:00:00.000Z","height":1.72,"weight":114,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":871784511,"name":"Yaniuvis Lopez","nationality":"CUB","sex":"female","date_of_birth":"1986-02-01T00:00:00.000Z","height":1.8,"weight":71,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":413602471,"name":"Yanmei Xiang","nationality":"CHN","sex":"female","date_of_birth":"1992-06-13T00:00:00.000Z","height":1.63,"weight":69,"sport":"weightlifting","gold":1,"silver":0,"bronze":0,"info":null},{"id":982324748,"name":"Yann Candele","nationality":"CAN","sex":"male","date_of_birth":"1971-03-11T00:00:00.000Z","height":1.73,"weight":82,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":943819642,"name":"Yann Siccardi","nationality":"MON","sex":"male","date_of_birth":"1986-02-03T00:00:00.000Z","height":1.64,"weight":60,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":260382082,"name":"Yannick Agnel","nationality":"FRA","sex":"male","date_of_birth":"1992-06-09T00:00:00.000Z","height":2.01,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":709856654,"name":"Yannick Borel","nationality":"FRA","sex":"male","date_of_birth":"1988-11-05T00:00:00.000Z","height":1.97,"weight":100,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":959595922,"name":"Yannick Brauchli","nationality":"SUI","sex":"male","date_of_birth":"1988-07-30T00:00:00.000Z","height":1.73,"weight":63,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":796628018,"name":"Yannick Kaeser","nationality":"SUI","sex":"male","date_of_birth":"1992-07-03T00:00:00.000Z","height":1.86,"weight":81,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":190574076,"name":"Yannick Lefebvre","nationality":"BEL","sex":"male","date_of_birth":"1988-11-19T00:00:00.000Z","height":1.81,"weight":79,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":210648871,"name":"Yanyuhang Ding","nationality":"CHN","sex":"male","date_of_birth":"1993-08-20T00:00:00.000Z","height":2,"weight":91,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":876086077,"name":"Yarden Gerbi","nationality":"ISR","sex":"female","date_of_birth":"1989-07-08T00:00:00.000Z","height":1.69,"weight":63,"sport":"judo","gold":0,"silver":0,"bronze":1,"info":null},{"id":665930240,"name":"Yared Shegumo","nationality":"POL","sex":"male","date_of_birth":"1983-01-10T00:00:00.000Z","height":1.78,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":603462081,"name":"Yarimar Mercado Martinez","nationality":"PUR","sex":"female","date_of_birth":"1995-03-12T00:00:00.000Z","height":1.79,"weight":48,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":300599619,"name":"Yarimar Rosa","nationality":"PUR","sex":"female","date_of_birth":"1988-06-20T00:00:00.000Z","height":1.78,"weight":62,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":943821512,"name":"Yarisley Silva","nationality":"CUB","sex":"female","date_of_birth":"1987-06-01T00:00:00.000Z","height":1.61,"weight":61,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":649661769,"name":"Yaroslava Bondarenko","nationality":"RUS","sex":"female","date_of_birth":"1997-02-27T00:00:00.000Z","height":1.58,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":836251639,"name":"Yaroslava Shvedova","nationality":"KAZ","sex":"female","date_of_birth":"1987-09-12T00:00:00.000Z","height":1.8,"weight":70,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":539142587,"name":"Yasemin Adar","nationality":"TUR","sex":"female","date_of_birth":"1991-12-06T00:00:00.000Z","height":1.8,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":283024997,"name":"Yasemin Anagoz","nationality":"TUR","sex":"female","date_of_birth":"1998-10-14T00:00:00.000Z","height":1.65,"weight":66,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":803264518,"name":"Yasemin Can","nationality":"TUR","sex":"female","date_of_birth":"1996-12-11T00:00:00.000Z","height":1.66,"weight":49,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":901257700,"name":"Yasha Gu","nationality":"CHN","sex":"female","date_of_birth":"1990-11-28T00:00:00.000Z","height":1.65,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":708840841,"name":"Yasmani Copello","nationality":"TUR","sex":"male","date_of_birth":"1987-04-15T00:00:00.000Z","height":1.91,"weight":85,"sport":"athletics","gold":0,"silver":0,"bronze":1,"info":null},{"id":205474844,"name":"Yasmany Daniel Lugo Cabrera","nationality":"CUB","sex":"male","date_of_birth":"1990-01-24T00:00:00.000Z","height":1.9,"weight":98,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":124076094,"name":"Yasmin Kwadwo","nationality":"GER","sex":"female","date_of_birth":"1990-11-09T00:00:00.000Z","height":1.7,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":646361297,"name":"Yasmina Aziez","nationality":"FRA","sex":"female","date_of_birth":"1991-01-23T00:00:00.000Z","height":1.72,"weight":52,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":893193167,"name":"Yasnier Toledo","nationality":"CUB","sex":"male","date_of_birth":"1989-09-15T00:00:00.000Z","height":1.75,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":557145585,"name":"Yassine Hethat","nationality":"ALG","sex":"male","date_of_birth":"1991-08-30T00:00:00.000Z","height":1.75,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":455207704,"name":"Yassine Trabelsi","nationality":"TUN","sex":"male","date_of_birth":"1990-07-12T00:00:00.000Z","height":1.85,"weight":80,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":931792230,"name":"Yasuhiro Koseki","nationality":"JPN","sex":"male","date_of_birth":"1992-03-14T00:00:00.000Z","height":1.88,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":960225637,"name":"Yasunari Hirai","nationality":"JPN","sex":"male","date_of_birth":"1990-04-02T00:00:00.000Z","height":1.75,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":842346625,"name":"Yating Sun","nationality":"CHN","sex":"female","date_of_birth":"1988-02-24T00:00:00.000Z","height":1.8,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":81264500,"name":"Yauhen Tsurkin","nationality":"BLR","sex":"male","date_of_birth":"1990-12-09T00:00:00.000Z","height":1.82,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":767771937,"name":"Yauheni Karaliou","nationality":"BLR","sex":"male","date_of_birth":"1991-03-26T00:00:00.000Z","height":1.69,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":631259932,"name":"Yavuz Ilnam","nationality":"TUR","sex":"male","date_of_birth":"1987-07-23T00:00:00.000Z","height":1.85,"weight":140,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":371339083,"name":"Yawen Hou","nationality":"CHN","sex":"female","date_of_birth":"1998-09-09T00:00:00.000Z","height":1.81,"weight":71,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":874979172,"name":"Yaxin Liu","nationality":"CHN","sex":"female","date_of_birth":"1999-06-16T00:00:00.000Z","height":1.78,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":462092758,"name":"Yayoi Matsumoto","nationality":"JPN","sex":"female","date_of_birth":"1990-03-08T00:00:00.000Z","height":1.68,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":91699110,"name":"Ye Na Chang","nationality":"KOR","sex":"female","date_of_birth":"1989-12-13T00:00:00.000Z","height":1.72,"weight":61,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":35665719,"name":"Ye Tun Naung","nationality":"MYA","sex":"male","date_of_birth":"1983-05-26T00:00:00.000Z","height":1.75,"weight":60,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":145504141,"name":"Ye Yang","nationality":"CHN","sex":"female","date_of_birth":"1994-05-26T00:00:00.000Z","height":1.72,"weight":50,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":6445762,"name":"Yehia Elderaa","nationality":"EGY","sex":"male","date_of_birth":"1995-07-17T00:00:00.000Z","height":1.86,"weight":82,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":139859282,"name":"Yehualeye Beletew","nationality":"ETH","sex":"female","date_of_birth":"1998-07-31T00:00:00.000Z","height":1.65,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":166734609,"name":"Yeison Rivas","nationality":"COL","sex":"male","date_of_birth":"1987-09-24T00:00:00.000Z","height":1.73,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":628369292,"name":"Yeji Kim","nationality":"KOR","sex":"female","date_of_birth":"1994-11-17T00:00:00.000Z","height":1.74,"weight":72,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":680581412,"name":"Yekaterina Ektova","nationality":"KAZ","sex":"female","date_of_birth":"1992-08-30T00:00:00.000Z","height":1.7,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":892955705,"name":"Yekaterina Larionova","nationality":"KAZ","sex":"female","date_of_birth":"1994-01-23T00:00:00.000Z","height":1.58,"weight":63,"sport":"wrestling","gold":0,"silver":0,"bronze":1,"info":null},{"id":206089177,"name":"Yekaterina Nemich","nationality":"KAZ","sex":"female","date_of_birth":"1995-01-03T00:00:00.000Z","height":1.69,"weight":47,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":247875436,"name":"Yekaterina Rudenko","nationality":"KAZ","sex":"female","date_of_birth":"1994-10-16T00:00:00.000Z","height":1.8,"weight":69,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":953630497,"name":"Yekaterina Smirnova","nationality":"KAZ","sex":"female","date_of_birth":"1988-05-21T00:00:00.000Z","height":1.65,"weight":63,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":17150577,"name":"Yeldos Smetov","nationality":"KAZ","sex":"male","date_of_birth":"1992-09-09T00:00:00.000Z","height":1.67,"weight":60,"sport":"judo","gold":0,"silver":1,"bronze":0,"info":null},{"id":932118784,"name":"Yelena Leuchanka","nationality":"BLR","sex":"female","date_of_birth":"1983-04-30T00:00:00.000Z","height":1.95,"weight":86,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":805715080,"name":"Yelena Ryabova","nationality":"TKM","sex":"female","date_of_birth":"1990-11-03T00:00:00.000Z","height":1.7,"weight":56,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":485869325,"name":"Yelizaveta Korol","nationality":"KAZ","sex":"female","date_of_birth":"1994-09-02T00:00:00.000Z","height":1.67,"weight":69,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":53802020,"name":"Yelyzaveta Bryzgina","nationality":"UKR","sex":"female","date_of_birth":"1989-11-28T00:00:00.000Z","height":1.73,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":550672127,"name":"Yemane Haileselassie","nationality":"ERI","sex":"male","date_of_birth":"1998-02-21T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":252505900,"name":"Yemi Geoffrey Apithy","nationality":"BEN","sex":"male","date_of_birth":"1989-04-05T00:00:00.000Z","height":1.92,"weight":96,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":399306136,"name":"Yen-Hsun Lu","nationality":"TPE","sex":"male","date_of_birth":"1983-08-14T00:00:00.000Z","height":1.8,"weight":83,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":839200601,"name":"Yeon Jae Son","nationality":"KOR","sex":"female","date_of_birth":"1994-05-28T00:00:00.000Z","height":1.65,"weight":45,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":383061108,"name":"Yeon Ju Bae","nationality":"KOR","sex":"female","date_of_birth":"1990-10-26T00:00:00.000Z","height":1.67,"weight":57,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":699050231,"name":"Yeon Koung Kim","nationality":"KOR","sex":"female","date_of_birth":"1988-02-26T00:00:00.000Z","height":1.92,"weight":73,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":769058232,"name":"Yeon Seong Yoo","nationality":"KOR","sex":"male","date_of_birth":"1986-08-19T00:00:00.000Z","height":1.81,"weight":75,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":664297422,"name":"Yeongeun Jeon","nationality":"KOR","sex":"female","date_of_birth":"1988-05-24T00:00:00.000Z","height":1.58,"weight":43,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":597746590,"name":"Yeongsin Nam","nationality":"KOR","sex":"female","date_of_birth":"1990-08-27T00:00:00.000Z","height":1.75,"weight":82,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":765164830,"name":"Yerenman Salazar","nationality":"VEN","sex":"male","date_of_birth":"1978-10-24T00:00:00.000Z","height":1.65,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":617589431,"name":"Yerko Araya","nationality":"CHI","sex":"male","date_of_birth":"1986-02-14T00:00:00.000Z","height":1.78,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":185479822,"name":"Yeseida Carrillo","nationality":"COL","sex":"female","date_of_birth":"1993-10-22T00:00:00.000Z","height":1.68,"weight":52,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":5964702,"name":"Yesenia Miranda","nationality":"ESA","sex":"female","date_of_birth":"1994-03-26T00:00:00.000Z","height":null,"weight":null,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":640675211,"name":"Yessica Camilo Gonzalez","nationality":"DOM","sex":"female","date_of_birth":"1993-02-23T00:00:00.000Z","height":1.68,"weight":73,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":124805111,"name":"Yessy Venisia Yosaputra","nationality":"INA","sex":"female","date_of_birth":"1994-08-27T00:00:00.000Z","height":1.67,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":720063529,"name":"Yesui Bayar","nationality":"MGL","sex":"female","date_of_birth":"2000-07-21T00:00:00.000Z","height":1.76,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":824906625,"name":"Yevgeniy Alexeyev","nationality":"KAZ","sex":"male","date_of_birth":"1977-12-11T00:00:00.000Z","height":1.86,"weight":93,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":81837062,"name":"Yevgeniy Labutov","nationality":"KAZ","sex":"male","date_of_birth":"1984-11-17T00:00:00.000Z","height":1.94,"weight":120,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":877812765,"name":"Yevgeniya Gomon","nationality":"UKR","sex":"female","date_of_birth":"1995-03-25T00:00:00.000Z","height":1.74,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":423607344,"name":"Yevhen Vynohradov","nationality":"UKR","sex":"male","date_of_birth":"1984-04-30T00:00:00.000Z","height":1.95,"weight":105,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":586074732,"name":"Ygor Coelho de Oliveira","nationality":"BRA","sex":"male","date_of_birth":"1996-11-24T00:00:00.000Z","height":1.83,"weight":78,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":130088138,"name":"Yi Chun Lin","nationality":"TPE","sex":"female","date_of_birth":"1981-07-05T00:00:00.000Z","height":1.61,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":923838612,"name":"Yi Mao","nationality":"CHN","sex":"female","date_of_birth":"1999-09-16T00:00:00.000Z","height":1.51,"weight":35,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":154566738,"name":"Yi Tang","nationality":"CHN","sex":"female","date_of_birth":"1993-01-08T00:00:00.000Z","height":1.77,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":45723184,"name":"Yi-Hua Huang","nationality":"TPE","sex":"female","date_of_birth":"1984-07-20T00:00:00.000Z","height":1.67,"weight":56,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":318947279,"name":"Yi-Ting Huang","nationality":"TPE","sex":"female","date_of_birth":"1990-01-16T00:00:00.000Z","height":1.7,"weight":65,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":657056905,"name":"Yidiel Contreras","nationality":"ESP","sex":"male","date_of_birth":"1992-11-27T00:00:00.000Z","height":1.8,"weight":74,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":666759438,"name":"Yiech Pur Biel","nationality":"ROT","sex":"male","date_of_birth":"1995-01-01T00:00:00.000Z","height":1.78,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":763147414,"name":"Yifan Xu","nationality":"CHN","sex":"female","date_of_birth":"1988-08-08T00:00:00.000Z","height":1.65,"weight":60,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":62526339,"name":"Yifei Cao","nationality":"CHN","sex":"male","date_of_birth":"1988-05-20T00:00:00.000Z","height":1.75,"weight":75,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":390260480,"name":"Yigal Kopinsky","nationality":"SUR","sex":"male","date_of_birth":"1985-10-16T00:00:00.000Z","height":null,"weight":null,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":192425723,"name":"Yigrem Demelash","nationality":"ETH","sex":"male","date_of_birth":"1994-01-26T00:00:00.000Z","height":1.67,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":221613357,"name":"Yihan Wang","nationality":"CHN","sex":"female","date_of_birth":"1988-01-18T00:00:00.000Z","height":1.78,"weight":65,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":370970040,"name":"Yihan Zhou","nationality":"SIN","sex":"female","date_of_birth":"1994-01-30T00:00:00.000Z","height":1.68,"weight":54,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":567715213,"name":"Yijun Feng","nationality":"USA","sex":"male","date_of_birth":"1997-02-12T00:00:00.000Z","height":1.86,"weight":71,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":522417913,"name":"Yilin Fan","nationality":"CHN","sex":"female","date_of_birth":"1999-11-11T00:00:00.000Z","height":1.48,"weight":37,"sport":"gymnastics","gold":0,"silver":0,"bronze":1,"info":null},{"id":780210993,"name":"Yilin Zhou","nationality":"CHN","sex":"female","date_of_birth":"1992-09-18T00:00:00.000Z","height":1.75,"weight":63,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":639260564,"name":"Ying Chen","nationality":"CHN","sex":"female","date_of_birth":"1977-11-04T00:00:00.000Z","height":1.64,"weight":67,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":421292121,"name":"Ying Han","nationality":"GER","sex":"female","date_of_birth":"1983-04-29T00:00:00.000Z","height":1.7,"weight":60,"sport":"table tennis","gold":0,"silver":1,"bronze":0,"info":null},{"id":911763971,"name":"Ying Li","nationality":"CHN","sex":"female","date_of_birth":"1993-01-07T00:00:00.000Z","height":1.7,"weight":61,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":51254244,"name":"Ying Lu","nationality":"CHN","sex":"female","date_of_birth":"1989-01-22T00:00:00.000Z","height":1.75,"weight":65,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":9996220,"name":"Ying Luo","nationality":"CHN","sex":"female","date_of_birth":"1991-01-11T00:00:00.000Z","height":1.64,"weight":62,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":329937737,"name":"Ying Suet Tse","nationality":"HKG","sex":"female","date_of_birth":"1991-11-09T00:00:00.000Z","height":1.66,"weight":66,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":854775269,"name":"Yingnan Ma","nationality":"CHN","sex":"female","date_of_birth":"1984-03-03T00:00:00.000Z","height":1.58,"weight":52,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":196292572,"name":"Yirisleydi Ford","nationality":"CUB","sex":"female","date_of_birth":"1991-08-18T00:00:00.000Z","height":1.68,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":102152415,"name":"Yisela Cuesta","nationality":"COL","sex":"female","date_of_birth":"1991-09-27T00:00:00.000Z","height":1.66,"weight":59,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":712061980,"name":"Yislena Hernandez","nationality":"CUB","sex":"female","date_of_birth":"1990-03-13T00:00:00.000Z","height":1.67,"weight":57,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":56600686,"name":"Yiwen Sun","nationality":"CHN","sex":"female","date_of_birth":"1992-06-17T00:00:00.000Z","height":1.77,"weight":63,"sport":"fencing","gold":0,"silver":1,"bronze":1,"info":null},{"id":413280688,"name":"Yixuan Hu","nationality":"CHN","sex":"male","date_of_birth":"1994-10-23T00:00:00.000Z","height":1.85,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":904689732,"name":"Yoandry Iriarte Galvez","nationality":"CUB","sex":"male","date_of_birth":"1986-05-05T00:00:00.000Z","height":1.77,"weight":79,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":115955580,"name":"Yoandys Lescay","nationality":"CUB","sex":"male","date_of_birth":"1994-01-05T00:00:00.000Z","height":1.81,"weight":77,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":857109220,"name":"Yoann Kowal","nationality":"FRA","sex":"male","date_of_birth":"1987-05-28T00:00:00.000Z","height":1.72,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":540772965,"name":"Yodgoroy Mirzaeva","nationality":"UZB","sex":"female","date_of_birth":"1996-04-22T00:00:00.000Z","height":1.6,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":607223536,"name":"Yoel Segundo Finol","nationality":"VEN","sex":"male","date_of_birth":"1996-09-21T00:00:00.000Z","height":1.68,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":1,"info":null},{"id":652136434,"name":"Yoelmis Hernandez Paumier","nationality":"CUB","sex":"male","date_of_birth":"1986-04-25T00:00:00.000Z","height":1.68,"weight":84,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":613058255,"name":"Yogeshwar Dutt","nationality":"IND","sex":"male","date_of_birth":"1982-11-02T00:00:00.000Z","height":1.68,"weight":65,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":269473268,"name":"Yohan Blake","nationality":"JAM","sex":"male","date_of_birth":"1989-12-26T00:00:00.000Z","height":1.8,"weight":80,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":512633616,"name":"Yohann Diniz","nationality":"FRA","sex":"male","date_of_birth":"1978-01-01T00:00:00.000Z","height":1.85,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":266326638,"name":"Yoichi Itokazu","nationality":"JPN","sex":"male","date_of_birth":"1991-05-24T00:00:00.000Z","height":1.6,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":946096698,"name":"Yolande Bukasa","nationality":"ROT","sex":"female","date_of_birth":"1987-09-08T00:00:00.000Z","height":1.7,"weight":70,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":336097063,"name":"Yolande Juliana Amana Guigolo","nationality":"CMR","sex":"female","date_of_birth":"1997-09-15T00:00:00.000Z","height":1.84,"weight":78,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":101826251,"name":"Yolymar Pineda","nationality":"VEN","sex":"female","date_of_birth":"1985-11-14T00:00:00.000Z","height":1.65,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":237054888,"name":"Yon Soriano","nationality":"DOM","sex":"male","date_of_birth":"1987-01-02T00:00:00.000Z","height":1.66,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":437784364,"name":"Yona Knight-Wisdom","nationality":"JAM","sex":"male","date_of_birth":"1995-05-12T00:00:00.000Z","height":1.88,"weight":87,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":822236313,"name":"Yonas Kinde","nationality":"ROT","sex":"male","date_of_birth":"1980-05-07T00:00:00.000Z","height":1.72,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":291959436,"name":"Yonathan Monsalve","nationality":"VEN","sex":"male","date_of_birth":"1989-06-28T00:00:00.000Z","height":1.76,"weight":62,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":281612078,"name":"Yonder Roman Garcia Alvarez","nationality":"CUB","sex":"male","date_of_birth":"1993-02-26T00:00:00.000Z","height":1.83,"weight":78,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":358811033,"name":"Yong Dae Lee","nationality":"KOR","sex":"male","date_of_birth":"1988-09-11T00:00:00.000Z","height":1.8,"weight":74,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":608871682,"name":"Yong Gwang Kwon","nationality":"PRK","sex":"male","date_of_birth":"1996-01-14T00:00:00.000Z","height":1.65,"weight":68,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":6528240,"name":"Yong Hui Pak","nationality":"PRK","sex":"female","date_of_birth":"1970-08-24T00:00:00.000Z","height":1.6,"weight":63,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":798606388,"name":"Yong Suk Jo","nationality":"PRK","sex":"female","date_of_birth":"1988-09-05T00:00:00.000Z","height":1.63,"weight":65,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":144141011,"name":"Yongli Wei","nationality":"CHN","sex":"female","date_of_birth":"1991-10-11T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":194045564,"name":"Yongqing Lin","nationality":"CHN","sex":"male","date_of_birth":"1992-12-24T00:00:00.000Z","height":1.9,"weight":85,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":368147232,"name":"Yongran Oh","nationality":"KOR","sex":"female","date_of_birth":"1972-09-06T00:00:00.000Z","height":1.71,"weight":73,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":338890574,"name":"Yongshi Liu","nationality":"CHN","sex":"female","date_of_birth":"1990-02-19T00:00:00.000Z","height":1.76,"weight":62,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":970544941,"name":"Yongwoo Park","nationality":"KOR","sex":"male","date_of_birth":"1993-09-10T00:00:00.000Z","height":1.86,"weight":80,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":430969568,"name":"Yoo Na Bae","nationality":"KOR","sex":"female","date_of_birth":"1989-11-30T00:00:00.000Z","height":1.82,"weight":66,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":366615764,"name":"Yoojin Hong","nationality":"KOR","sex":"female","date_of_birth":"1989-02-21T00:00:00.000Z","height":1.66,"weight":56,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":400985709,"name":"Yoosun Nam","nationality":"KOR","sex":"female","date_of_birth":"1985-07-23T00:00:00.000Z","height":1.69,"weight":52,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":824249467,"name":"Yordan L. O'Farrill","nationality":"CUB","sex":"male","date_of_birth":"1993-02-09T00:00:00.000Z","height":1.83,"weight":72,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":860020616,"name":"Yordani Garcia","nationality":"CUB","sex":"male","date_of_birth":"1988-11-21T00:00:00.000Z","height":1.95,"weight":84,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":365796318,"name":"Yordanys Duranona","nationality":"DMA","sex":"male","date_of_birth":"1988-06-16T00:00:00.000Z","height":1.85,"weight":83,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":889022842,"name":"Yorgelis Rodriguez","nationality":"CUB","sex":"female","date_of_birth":"1995-01-25T00:00:00.000Z","height":1.7,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":693270892,"name":"Yosbany Veitia","nationality":"CUB","sex":"male","date_of_birth":"1992-03-12T00:00:00.000Z","height":1.6,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":564568653,"name":"Yoshiaki Oiwa","nationality":"JPN","sex":"male","date_of_birth":"1976-07-19T00:00:00.000Z","height":1.7,"weight":67,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":549187126,"name":"Yoshihide Kiryu","nationality":"JPN","sex":"male","date_of_birth":"1995-12-15T00:00:00.000Z","height":1.75,"weight":69,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":133419662,"name":"Yoshitaka Tokunaga","nationality":"JPN","sex":"male","date_of_birth":"1992-04-10T00:00:00.000Z","height":1.85,"weight":100,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":435666182,"name":"Yoshitaku Nagasako","nationality":"JPN","sex":"male","date_of_birth":"1993-09-16T00:00:00.000Z","height":1.72,"weight":70,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":180574339,"name":"Yoshua Shing","nationality":"VAN","sex":"male","date_of_birth":"1993-06-20T00:00:00.000Z","height":1.73,"weight":65,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":201354275,"name":"Yosiry Urrutia","nationality":"COL","sex":"female","date_of_birth":"1986-06-26T00:00:00.000Z","height":1.76,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":844481129,"name":"Yosra Dhieb","nationality":"TUN","sex":"female","date_of_birth":"1995-08-31T00:00:00.000Z","height":1.78,"weight":120,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":391193514,"name":"Yosuke Ideguchi","nationality":"JPN","sex":"male","date_of_birth":"1996-08-23T00:00:00.000Z","height":1.71,"weight":69,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":326797163,"name":"Yosuke Nakayama","nationality":"JPN","sex":"male","date_of_birth":"1987-03-20T00:00:00.000Z","height":1.61,"weight":62,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":922648062,"name":"Yosvani Gonzalez Nicolas","nationality":"CUB","sex":"male","date_of_birth":"1988-04-18T00:00:00.000Z","height":1.96,"weight":85,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":942438156,"name":"Youba Sissokho Ndiaye","nationality":"ESP","sex":"male","date_of_birth":"1991-11-07T00:00:00.000Z","height":1.82,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":897401460,"name":"Youcef Reguigui","nationality":"ALG","sex":"male","date_of_birth":"1990-01-09T00:00:00.000Z","height":1.74,"weight":68,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":62442615,"name":"Youn Joo Hwang","nationality":"KOR","sex":"female","date_of_birth":"1986-08-13T00:00:00.000Z","height":1.77,"weight":63,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":462706353,"name":"Youndry Andujar","nationality":"DOM","sex":"male","date_of_birth":"1990-07-05T00:00:00.000Z","height":1.71,"weight":60,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":450541080,"name":"Younes Essalhi","nationality":"MAR","sex":"male","date_of_birth":"1993-02-20T00:00:00.000Z","height":1.8,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":253601980,"name":"Young Mi Kang","nationality":"KOR","sex":"female","date_of_birth":"1985-03-01T00:00:00.000Z","height":1.64,"weight":63,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":654665067,"name":"Younghee Son","nationality":"KOR","sex":"female","date_of_birth":"1993-04-24T00:00:00.000Z","height":1.73,"weight":110,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":502665912,"name":"Youngjun Byun","nationality":"KOR","sex":"male","date_of_birth":"1984-03-20T00:00:00.000Z","height":1.75,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":800057489,"name":"Youngjun Won","nationality":"KOR","sex":"male","date_of_birth":"1998-01-08T00:00:00.000Z","height":1.87,"weight":83,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":447706545,"name":"Youngsik Jeoung","nationality":"KOR","sex":"male","date_of_birth":"1992-01-20T00:00:00.000Z","height":1.82,"weight":65,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":460973844,"name":"Youngsil Lee","nationality":"KOR","sex":"female","date_of_birth":"1987-03-13T00:00:00.000Z","height":1.67,"weight":59,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":421409834,"name":"Yousef Mirza Banihammad","nationality":"UAE","sex":"male","date_of_birth":"1988-10-08T00:00:00.000Z","height":1.76,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":290661628,"name":"Yousef Shriha","nationality":"LBA","sex":"male","date_of_birth":"1991-11-18T00:00:00.000Z","height":1.77,"weight":58,"sport":"taekwondo","gold":0,"silver":0,"bronze":0,"info":null},{"id":996923699,"name":"Yousra Helmy","nationality":"EGY","sex":"female","date_of_birth":"1995-12-03T00:00:00.000Z","height":1.65,"weight":50,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":581419074,"name":"Youssef Akrout","nationality":"TUN","sex":"male","date_of_birth":"1990-11-15T00:00:00.000Z","height":1.8,"weight":78,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":577987694,"name":"Youssef Selim","nationality":"EGY","sex":"male","date_of_birth":"1997-12-14T00:00:00.000Z","height":1.65,"weight":88,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":906406227,"name":"Youssra Zakarani","nationality":"MAR","sex":"female","date_of_birth":"1995-01-07T00:00:00.000Z","height":1.62,"weight":58,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":804864776,"name":"Youxue Mo","nationality":"CHN","sex":"male","date_of_birth":"1996-02-10T00:00:00.000Z","height":1.8,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":191719659,"name":"Yowlys Bonne Rodriguez","nationality":"CUB","sex":"male","date_of_birth":"1983-11-02T00:00:00.000Z","height":1.52,"weight":57,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":403722515,"name":"Ysaora Thibus","nationality":"FRA","sex":"female","date_of_birth":"1991-08-22T00:00:00.000Z","height":1.74,"weight":59,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":866421007,"name":"Yu Asai","nationality":"JPN","sex":"female","date_of_birth":"1996-01-08T00:00:00.000Z","height":1.72,"weight":63,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":470277926,"name":"Yu Luo","nationality":"CHN","sex":"female","date_of_birth":"1991-01-11T00:00:00.000Z","height":1.64,"weight":66,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":245945587,"name":"Yu Wang","nationality":"CHN","sex":"male","date_of_birth":"1991-08-18T00:00:00.000Z","height":1.9,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":262263057,"name":"Yu Xing","nationality":"CHN","sex":"male","date_of_birth":"1991-03-12T00:00:00.000Z","height":1.88,"weight":90,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":112835195,"name":"Yu Zhou","nationality":"CHN","sex":"female","date_of_birth":"1989-01-23T00:00:00.000Z","height":1.74,"weight":67,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":964683123,"name":"Yu-Hsuan Chen","nationality":"TPE","sex":"female","date_of_birth":"1993-01-16T00:00:00.000Z","height":1.57,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":886518793,"name":"Yuan Cao","nationality":"CHN","sex":"male","date_of_birth":"1995-02-07T00:00:00.000Z","height":1.67,"weight":62,"sport":"aquatics","gold":1,"silver":0,"bronze":1,"info":null},{"id":960243282,"name":"Yuan Yue","nationality":"CHN","sex":"female","date_of_birth":"1987-07-23T00:00:00.000Z","height":1.82,"weight":72,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":50733042,"name":"Yuanhui Fu","nationality":"CHN","sex":"female","date_of_birth":"1996-01-07T00:00:00.000Z","height":1.79,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":247982546,"name":"Yuanting Tang","nationality":"CHN","sex":"female","date_of_birth":"1994-08-02T00:00:00.000Z","height":1.75,"weight":70,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":27660873,"name":"Yuchen Zou","nationality":"CHN","sex":"male","date_of_birth":"1996-07-05T00:00:00.000Z","height":2.03,"weight":107,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":622790122,"name":"Yucheng Han","nationality":"CHN","sex":"male","date_of_birth":"1978-12-16T00:00:00.000Z","height":1.78,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":68915192,"name":"Yuderqui Maridalia Contreras","nationality":"DOM","sex":"female","date_of_birth":"1986-03-27T00:00:00.000Z","height":1.58,"weight":58,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":427057376,"name":"Yudiao Zhao","nationality":"CHN","sex":"female","date_of_birth":"1989-05-25T00:00:00.000Z","height":1.74,"weight":68,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":426336563,"name":"Yue Cao","nationality":"CHN","sex":"female","date_of_birth":"1995-10-29T00:00:00.000Z","height":1.78,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":282448416,"name":"Yue Li","nationality":"CHN","sex":"female","date_of_birth":"1993-10-27T00:00:00.000Z","height":1.7,"weight":65,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":500859635,"name":"Yue Lin","nationality":"CHN","sex":"male","date_of_birth":"1991-07-24T00:00:00.000Z","height":1.64,"weight":58,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":920857282,"name":"Yue Wu","nationality":"USA","sex":"female","date_of_birth":"1990-01-04T00:00:00.000Z","height":1.61,"weight":50,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":23443327,"name":"Yue Zhang","nationality":"CHN","sex":"female","date_of_birth":"1990-09-30T00:00:00.000Z","height":1.85,"weight":64,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":517058377,"name":"Yuehong Li","nationality":"CHN","sex":"male","date_of_birth":"1989-08-28T00:00:00.000Z","height":1.73,"weight":71,"sport":"shooting","gold":0,"silver":0,"bronze":1,"info":null},{"id":607487573,"name":"Yuen Yin Lee","nationality":"HKG","sex":"female","date_of_birth":"1989-07-16T00:00:00.000Z","height":1.61,"weight":58,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":968356783,"name":"Yufei Zhang","nationality":"CHN","sex":"female","date_of_birth":"1998-04-19T00:00:00.000Z","height":1.76,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":928265049,"name":"Yuhan Tan","nationality":"BEL","sex":"male","date_of_birth":"1987-04-21T00:00:00.000Z","height":1.82,"weight":74,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":97065462,"name":"Yuhan Zhang","nationality":"CHN","sex":"female","date_of_birth":"1995-01-06T00:00:00.000Z","height":1.73,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":122679223,"name":"Yuhang Wu","nationality":"CHN","sex":"male","date_of_birth":"1997-06-03T00:00:00.000Z","height":1.78,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":480817405,"name":"Yuhong Qi","nationality":"CHN","sex":"female","date_of_birth":"1989-08-25T00:00:00.000Z","height":1.66,"weight":78,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":845709024,"name":"Yuichi Sugita","nationality":"JPN","sex":"male","date_of_birth":"1988-09-18T00:00:00.000Z","height":1.73,"weight":66,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":834189492,"name":"Yujie Sun","nationality":"CHN","sex":"female","date_of_birth":"1992-08-10T00:00:00.000Z","height":1.85,"weight":78,"sport":"fencing","gold":0,"silver":1,"bronze":0,"info":null},{"id":714978858,"name":"Yuka Kanematsu","nationality":"JPN","sex":"female","date_of_birth":"1982-06-17T00:00:00.000Z","height":1.59,"weight":59,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":85090644,"name":"Yuka Mamiya","nationality":"JPN","sex":"female","date_of_birth":"1990-04-03T00:00:00.000Z","height":1.85,"weight":74,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":192455905,"name":"Yuka Sato","nationality":"JPN","sex":"female","date_of_birth":"1992-01-18T00:00:00.000Z","height":1.71,"weight":56,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":206045487,"name":"Yuka Takashima","nationality":"JPN","sex":"female","date_of_birth":"1988-05-12T00:00:00.000Z","height":1.53,"weight":39,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":47621676,"name":"Yukari Mano","nationality":"JPN","sex":"female","date_of_birth":"1994-03-04T00:00:00.000Z","height":1.52,"weight":53,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":12505155,"name":"Yuki Ebihara","nationality":"JPN","sex":"female","date_of_birth":"1985-10-28T00:00:00.000Z","height":1.64,"weight":68,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":384346925,"name":"Yuki Hayashi","nationality":"JPN","sex":"female","date_of_birth":"1984-10-02T00:00:00.000Z","height":1.63,"weight":65,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":596523422,"name":"Yuki Ishii","nationality":"JPN","sex":"female","date_of_birth":"1991-05-08T00:00:00.000Z","height":1.8,"weight":68,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":917190651,"name":"Yuki Kadono","nationality":"JPN","sex":"male","date_of_birth":"1990-09-14T00:00:00.000Z","height":1.77,"weight":72,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":324618185,"name":"Yuki Kobori","nationality":"JPN","sex":"male","date_of_birth":"1993-11-25T00:00:00.000Z","height":1.83,"weight":77,"sport":"aquatics","gold":0,"silver":0,"bronze":1,"info":null},{"id":192515244,"name":"Yuki Matsushita","nationality":"JPN","sex":"male","date_of_birth":"1991-09-09T00:00:00.000Z","height":1.76,"weight":65,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":223316076,"name":"Yuki Miyazawa","nationality":"JPN","sex":"female","date_of_birth":"1993-06-02T00:00:00.000Z","height":1.82,"weight":70,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":413134994,"name":"Yuki Ota","nationality":"JPN","sex":"male","date_of_birth":"1985-11-25T00:00:00.000Z","height":1.71,"weight":69,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":108168547,"name":"Yuki Uchiyama","nationality":"JPN","sex":"female","date_of_birth":"1998-01-13T00:00:00.000Z","height":1.59,"weight":49,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":581218184,"name":"Yukie Nakayama","nationality":"JPN","sex":"female","date_of_birth":"1979-03-07T00:00:00.000Z","height":1.61,"weight":54,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":703800372,"name":"Yukiko Inui","nationality":"JPN","sex":"female","date_of_birth":"1990-12-04T00:00:00.000Z","height":1.7,"weight":56,"sport":"aquatics","gold":0,"silver":0,"bronze":2,"info":null},{"id":760257652,"name":"Yukio Makino","nationality":"JPN","sex":"male","date_of_birth":"1980-05-06T00:00:00.000Z","height":1.84,"weight":78,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":492326920,"name":"Yukiya Arashiro","nationality":"JPN","sex":"male","date_of_birth":"1984-09-22T00:00:00.000Z","height":1.71,"weight":64,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":751772771,"name":"Yuko Kitai","nationality":"JPN","sex":"female","date_of_birth":"1973-01-15T00:00:00.000Z","height":1.62,"weight":50,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":440552252,"name":"Yulenmis Aguilar","nationality":"CUB","sex":"female","date_of_birth":"1996-08-03T00:00:00.000Z","height":1.65,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":86099624,"name":"Yulia Efimova","nationality":"RUS","sex":"female","date_of_birth":"1992-04-03T00:00:00.000Z","height":null,"weight":null,"sport":"aquatics","gold":0,"silver":2,"bronze":0,"info":null},{"id":247132053,"name":"Yulia Timoshinina","nationality":"RUS","sex":"female","date_of_birth":"1998-01-23T00:00:00.000Z","height":1.57,"weight":46,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":13825492,"name":"Yuliia Khavaldzhy Blahinya","nationality":"UKR","sex":"female","date_of_birth":"1990-02-21T00:00:00.000Z","height":1.62,"weight":53,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":541028495,"name":"Yuliia Levchenko","nationality":"UKR","sex":"female","date_of_birth":"1997-11-28T00:00:00.000Z","height":1.79,"weight":59,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":957767135,"name":"Yuliia Tkach Ostapchuk","nationality":"UKR","sex":"female","date_of_birth":"1989-09-26T00:00:00.000Z","height":1.7,"weight":63,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":109328208,"name":"Yulimar Rojas","nationality":"VEN","sex":"female","date_of_birth":"1995-10-21T00:00:00.000Z","height":1.92,"weight":72,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":750465466,"name":"Yuliya Bichyk","nationality":"BLR","sex":"female","date_of_birth":"1983-04-01T00:00:00.000Z","height":1.84,"weight":84,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":313792842,"name":"Yuliya Gavrilova","nationality":"RUS","sex":"female","date_of_birth":"1989-07-20T00:00:00.000Z","height":1.69,"weight":56,"sport":"fencing","gold":1,"silver":0,"bronze":0,"info":null},{"id":379286270,"name":"Yuliya Karol","nationality":"BLR","sex":"female","date_of_birth":"1991-06-26T00:00:00.000Z","height":1.62,"weight":57,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":416483040,"name":"Yuliya Khitraya","nationality":"BLR","sex":"female","date_of_birth":"1989-09-11T00:00:00.000Z","height":1.8,"weight":66,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":131403835,"name":"Yuliya Leantsiuk","nationality":"BLR","sex":"female","date_of_birth":"1984-01-31T00:00:00.000Z","height":1.8,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":323145387,"name":"Yuliya Lobzhenidze","nationality":"GEO","sex":"female","date_of_birth":"1977-08-23T00:00:00.000Z","height":1.77,"weight":80,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":983041007,"name":"Yuliya Rakhmanova","nationality":"KAZ","sex":"female","date_of_birth":"1991-10-25T00:00:00.000Z","height":1.68,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":745030632,"name":"Yuliya Ratkevich","nationality":"AZE","sex":"female","date_of_birth":"1985-07-16T00:00:00.000Z","height":1.62,"weight":58,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":521174364,"name":"Yuliya Rytsikava","nationality":"BLR","sex":"female","date_of_birth":"1986-09-08T00:00:00.000Z","height":1.8,"weight":69,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":693790163,"name":"Yuliya Tarasova","nationality":"UZB","sex":"female","date_of_birth":"1986-03-13T00:00:00.000Z","height":1.74,"weight":66,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":272506840,"name":"Yuliya Yelistratova","nationality":"UKR","sex":"female","date_of_birth":"1988-02-15T00:00:00.000Z","height":1.63,"weight":53,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":346397008,"name":"Yume Okuroda","nationality":"JPN","sex":"female","date_of_birth":"1994-07-06T00:00:00.000Z","height":1.57,"weight":62,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":304244735,"name":"Yumi Kida","nationality":"JPN","sex":"female","date_of_birth":"1985-06-30T00:00:00.000Z","height":1.6,"weight":55,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":109766656,"name":"Yun Chol Om","nationality":"PRK","sex":"male","date_of_birth":"1991-11-18T00:00:00.000Z","height":1.51,"weight":56,"sport":"weightlifting","gold":0,"silver":1,"bronze":0,"info":null},{"id":660495063,"name":"Yun Hu","nationality":"HKG","sex":"male","date_of_birth":"1981-08-31T00:00:00.000Z","height":1.78,"weight":73,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":402313954,"name":"Yung-Jan Chan","nationality":"TPE","sex":"female","date_of_birth":"1989-08-17T00:00:00.000Z","height":1.71,"weight":65,"sport":"tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":491896324,"name":"Yunlei Zhao","nationality":"CHN","sex":"female","date_of_birth":"1986-08-25T00:00:00.000Z","height":1.73,"weight":60,"sport":"badminton","gold":0,"silver":0,"bronze":1,"info":"At the London 2012 Olympic Games, China's Zhao Yunlei climbed to the top of the podium twice, winning both the singles and doubles tournaments; a feat he went on to repeat at the last two world championships."},{"id":787363560,"name":"Yunli Xu","nationality":"CHN","sex":"female","date_of_birth":"1987-08-02T00:00:00.000Z","height":1.95,"weight":75,"sport":"volleyball","gold":1,"silver":0,"bronze":0,"info":null},{"id":243639998,"name":"Yunlong Jiao","nationality":"CHN","sex":"male","date_of_birth":"1988-05-19T00:00:00.000Z","height":1.9,"weight":87,"sport":"fencing","gold":0,"silver":0,"bronze":0,"info":null},{"id":274497328,"name":"Yuqing Bao","nationality":"CHN","sex":"female","date_of_birth":"1993-09-23T00:00:00.000Z","height":1.73,"weight":55,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":16526279,"name":"Yura Jung","nationality":"KOR","sex":"female","date_of_birth":"1992-02-06T00:00:00.000Z","height":1.7,"weight":63,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":531947330,"name":"Yurary Poulsen","nationality":"DEN","sex":"male","date_of_birth":"1994-06-15T00:00:00.000Z","height":1.93,"weight":85,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":57329234,"name":"Yurberjen Herney Martinez","nationality":"COL","sex":"male","date_of_birth":"1991-11-01T00:00:00.000Z","height":1.65,"weight":null,"sport":"boxing","gold":0,"silver":1,"bronze":0,"info":null},{"id":819486383,"name":"Yuri Alvear","nationality":"COL","sex":"female","date_of_birth":"1986-03-29T00:00:00.000Z","height":1.76,"weight":70,"sport":"judo","gold":0,"silver":1,"bronze":0,"info":null},{"id":10496716,"name":"Yuri Floriani","nationality":"ITA","sex":"male","date_of_birth":"1981-12-25T00:00:00.000Z","height":1.8,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":708404577,"name":"Yuri Kisil","nationality":"CAN","sex":"male","date_of_birth":"1995-09-18T00:00:00.000Z","height":2,"weight":84,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":874782601,"name":"Yuri Nagai","nationality":"JPN","sex":"female","date_of_birth":"1992-05-26T00:00:00.000Z","height":1.55,"weight":53,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":575167357,"name":"Yuri van Gelder","nationality":"NED","sex":"male","date_of_birth":"1983-04-20T00:00:00.000Z","height":1.61,"weight":63,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":409923311,"name":"Yuri van der Heijden","nationality":"BRA","sex":"male","date_of_birth":"1990-07-20T00:00:00.000Z","height":1.78,"weight":76,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":341547186,"name":"Yurie Kato","nationality":"JPN","sex":"female","date_of_birth":"1987-01-27T00:00:00.000Z","height":1.61,"weight":48,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":516134396,"name":"Yurie Nabeya","nationality":"JPN","sex":"female","date_of_birth":"1993-12-15T00:00:00.000Z","height":1.76,"weight":58,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":16936763,"name":"Yurim Lee","nationality":"KOR","sex":"female","date_of_birth":"1994-12-14T00:00:00.000Z","height":1.62,"weight":59,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":108397344,"name":"Yurisandy Hernandez Rios","nationality":"CUB","sex":"male","date_of_birth":"1990-02-15T00:00:00.000Z","height":1.72,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":246323077,"name":"Yuriy Yurkov","nationality":"KAZ","sex":"male","date_of_birth":"1983-03-11T00:00:00.000Z","height":1.76,"weight":83,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":197488298,"name":"Yury Shcherbatsevich","nationality":"BLR","sex":"male","date_of_birth":"1984-07-11T00:00:00.000Z","height":1.78,"weight":87,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":273316719,"name":"Yusaku Kuwazuru","nationality":"JPN","sex":"male","date_of_birth":"1985-10-23T00:00:00.000Z","height":1.88,"weight":98,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":822567652,"name":"Yusleidy Mariana Figueroa Roldan","nationality":"VEN","sex":"female","date_of_birth":"1993-01-09T00:00:00.000Z","height":1.53,"weight":58,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":978744590,"name":"Yusmari Mengana","nationality":"CUB","sex":"female","date_of_birth":"1993-10-25T00:00:00.000Z","height":1.7,"weight":65,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":529316870,"name":"Yusneysi Santiusti","nationality":"ITA","sex":"female","date_of_birth":"1984-12-24T00:00:00.000Z","height":1.63,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":826970631,"name":"Yusra Mardini","nationality":"ROT","sex":"female","date_of_birth":"1998-03-05T00:00:00.000Z","height":1.68,"weight":53,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":865077945,"name":"Yusuf Bala","nationality":"NGR","sex":"male","date_of_birth":"1996-12-22T00:00:00.000Z","height":1.83,"weight":82,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":729458996,"name":"Yusuf Dikec","nationality":"TUR","sex":"male","date_of_birth":"1973-01-01T00:00:00.000Z","height":1.8,"weight":80,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":920794610,"name":"Yusuke Shimizu","nationality":"JPN","sex":"male","date_of_birth":"1988-09-07T00:00:00.000Z","height":1.81,"weight":93,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":51119392,"name":"Yusuke Tanaka","nationality":"JPN","sex":"male","date_of_birth":"1989-11-29T00:00:00.000Z","height":1.66,"weight":57,"sport":"gymnastics","gold":1,"silver":0,"bronze":0,"info":null},{"id":335237956,"name":"Yuta Ikeda","nationality":"JPN","sex":"male","date_of_birth":"1985-12-22T00:00:00.000Z","height":1.76,"weight":76,"sport":"golf","gold":0,"silver":0,"bronze":0,"info":null},{"id":636535967,"name":"Yuta Shitara","nationality":"JPN","sex":"male","date_of_birth":"1991-12-18T00:00:00.000Z","height":1.7,"weight":48,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":116013385,"name":"Yuta Wakimoto","nationality":"JPN","sex":"male","date_of_birth":"1989-03-21T00:00:00.000Z","height":1.81,"weight":74,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":904630839,"name":"Yuval Filo","nationality":"ISR","sex":"female","date_of_birth":"1998-03-03T00:00:00.000Z","height":1.68,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":73681451,"name":"Yuwei Wang","nationality":"CHN","sex":"female","date_of_birth":"1991-07-16T00:00:00.000Z","height":1.87,"weight":74,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":766135834,"name":"Yuya Kubo","nationality":"JPN","sex":"male","date_of_birth":"1993-12-24T00:00:00.000Z","height":1.77,"weight":72,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":819716294,"name":"Yuzo Kanemaru","nationality":"JPN","sex":"male","date_of_birth":"1987-09-18T00:00:00.000Z","height":1.78,"weight":75,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":939235679,"name":"Yvette Broch","nationality":"NED","sex":"female","date_of_birth":"1990-12-23T00:00:00.000Z","height":1.84,"weight":73,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":974818228,"name":"Yvette Lewis","nationality":"PAN","sex":"female","date_of_birth":"1985-03-16T00:00:00.000Z","height":1.75,"weight":150,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":638722010,"name":"Yvette Man-Yi Kong","nationality":"HKG","sex":"female","date_of_birth":"1993-01-18T00:00:00.000Z","height":1.76,"weight":60,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":457461427,"name":"Yvon Belien","nationality":"NED","sex":"female","date_of_birth":"1993-12-28T00:00:00.000Z","height":1.88,"weight":74,"sport":"volleyball","gold":0,"silver":0,"bronze":0,"info":null},{"id":102630412,"name":"Yvonne Frank","nationality":"GER","sex":"female","date_of_birth":"1980-02-07T00:00:00.000Z","height":1.82,"weight":78,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":157674707,"name":"Yvonne Losos de Muniz","nationality":"DOM","sex":"female","date_of_birth":"1967-09-08T00:00:00.000Z","height":1.83,"weight":64,"sport":"equestrian","gold":0,"silver":0,"bronze":0,"info":null},{"id":751496609,"name":"Yvonne Schuring","nationality":"AUT","sex":"female","date_of_birth":"1978-01-04T00:00:00.000Z","height":1.75,"weight":68,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":308404537,"name":"Yvonne Trevino","nationality":"MEX","sex":"female","date_of_birth":"1989-09-08T00:00:00.000Z","height":1.7,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":503085577,"name":"Zac Williams","nationality":"NZL","sex":"male","date_of_birth":"1995-07-21T00:00:00.000Z","height":1.8,"weight":89,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":306067063,"name":"Zach Garrett","nationality":"USA","sex":"male","date_of_birth":"1995-04-08T00:00:00.000Z","height":1.78,"weight":63,"sport":"archery","gold":0,"silver":1,"bronze":0,"info":null},{"id":995684067,"name":"Zach Ziemek","nationality":"USA","sex":"male","date_of_birth":"1993-02-23T00:00:00.000Z","height":1.94,"weight":88,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":586642596,"name":"Zack Piontek","nationality":"RSA","sex":"male","date_of_birth":"1991-01-27T00:00:00.000Z","height":1.81,"weight":90,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":99932834,"name":"Zack Test","nationality":"USA","sex":"male","date_of_birth":"1989-10-13T00:00:00.000Z","height":1.91,"weight":92,"sport":"rugby sevens","gold":0,"silver":0,"bronze":0,"info":null},{"id":242878558,"name":"Zahra Nemati","nationality":"IRI","sex":"female","date_of_birth":"1985-04-30T00:00:00.000Z","height":1.76,"weight":60,"sport":"archery","gold":0,"silver":0,"bronze":0,"info":null},{"id":513768691,"name":"Zaidatul Husniah Zulkifli","nationality":"MAS","sex":"female","date_of_birth":"1993-08-20T00:00:00.000Z","height":1.56,"weight":40,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":636555666,"name":"Zakaria Draoui","nationality":"ALG","sex":"male","date_of_birth":"1994-02-20T00:00:00.000Z","height":1.6,"weight":60,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":624057492,"name":"Zakarias Berg","nationality":"SWE","sex":"male","date_of_birth":"1995-07-17T00:00:00.000Z","height":1.81,"weight":86,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":71202021,"name":"Zakarya Haddouche","nationality":"ALG","sex":"male","date_of_birth":"1993-08-19T00:00:00.000Z","height":1.7,"weight":65,"sport":"football","gold":0,"silver":0,"bronze":0,"info":null},{"id":830255142,"name":"Zalina Marghieva","nationality":"MDA","sex":"female","date_of_birth":"1988-02-05T00:00:00.000Z","height":1.7,"weight":80,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":917974956,"name":"Zan Rudolf","nationality":"SLO","sex":"male","date_of_birth":"1993-05-09T00:00:00.000Z","height":1.84,"weight":64,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":243949907,"name":"Zane Robertson","nationality":"NZL","sex":"male","date_of_birth":"1989-11-14T00:00:00.000Z","height":1.85,"weight":62,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":855358294,"name":"Zaneta Glanc","nationality":"POL","sex":"female","date_of_birth":"1983-03-11T00:00:00.000Z","height":1.86,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":280809443,"name":"Zangjun Xu","nationality":"CHN","sex":"male","date_of_birth":"1992-02-06T00:00:00.000Z","height":1.75,"weight":65,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":802902327,"name":"Zarina Kurbonova","nationality":"UZB","sex":"female","date_of_birth":"1995-05-06T00:00:00.000Z","height":1.7,"weight":54,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":235109173,"name":"Zarko Markovic","nationality":"QAT","sex":"male","date_of_birth":"1986-06-01T00:00:00.000Z","height":1.96,"weight":94,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":644379517,"name":"Zaza Nadiradze","nationality":"GEO","sex":"male","date_of_birth":"1993-09-02T00:00:00.000Z","height":1.77,"weight":85,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":596326530,"name":"Zbigniew Mateusz Baranowski","nationality":"POL","sex":"male","date_of_birth":"1991-07-02T00:00:00.000Z","height":1.8,"weight":86,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":519061394,"name":"Zbigniew Schodowski","nationality":"POL","sex":"male","date_of_birth":"1987-04-30T00:00:00.000Z","height":2.01,"weight":94,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":538896901,"name":"Zdenek Stybar","nationality":"CZE","sex":"male","date_of_birth":"1985-12-11T00:00:00.000Z","height":1.83,"weight":72,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":988416903,"name":"Zdravko Radic","nationality":"MNE","sex":"male","date_of_birth":"1979-06-24T00:00:00.000Z","height":1.93,"weight":96,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":879954351,"name":"Zeca","nationality":"BRA","sex":"male","date_of_birth":"1994-05-16T00:00:00.000Z","height":1.7,"weight":69,"sport":"football","gold":1,"silver":0,"bronze":0,"info":null},{"id":919548868,"name":"Zelimkhan Khadjiev","nationality":"FRA","sex":"male","date_of_birth":"1994-05-20T00:00:00.000Z","height":1.75,"weight":80,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":343970933,"name":"Zelin Cai","nationality":"CHN","sex":"male","date_of_birth":"1991-04-11T00:00:00.000Z","height":1.75,"weight":55,"sport":"athletics","gold":0,"silver":1,"bronze":0,"info":null},{"id":916408500,"name":"Zeljko Sakic","nationality":"CRO","sex":"male","date_of_birth":"1988-04-14T00:00:00.000Z","height":2.03,"weight":105,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":225812170,"name":"Zengyi Wang","nationality":"POL","sex":"male","date_of_birth":"1983-06-24T00:00:00.000Z","height":1.8,"weight":74,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":92162694,"name":"Zersenay Tadese","nationality":"ERI","sex":"male","date_of_birth":"1982-01-01T00:00:00.000Z","height":1.6,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":788878355,"name":"Zetao Ning","nationality":"CHN","sex":"male","date_of_birth":"1993-03-06T00:00:00.000Z","height":1.91,"weight":80,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":853131625,"name":"Zeyad Mater","nationality":"YEM","sex":"male","date_of_birth":"1991-12-18T00:00:00.000Z","height":1.74,"weight":73,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":980866226,"name":"Zhaina Shekerbekova","nationality":"KAZ","sex":"female","date_of_birth":"1989-12-17T00:00:00.000Z","height":1.54,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":712955052,"name":"Zhan Beleniuk","nationality":"UKR","sex":"male","date_of_birth":"1991-01-24T00:00:00.000Z","height":1.78,"weight":85,"sport":"wrestling","gold":0,"silver":1,"bronze":0,"info":null},{"id":666529173,"name":"Zhanarbek Kenzheev","nationality":"KGZ","sex":"male","date_of_birth":"1985-08-05T00:00:00.000Z","height":1.8,"weight":84,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":405483135,"name":"Zhanibek Alimkhanuly","nationality":"KAZ","sex":"male","date_of_birth":"1993-04-01T00:00:00.000Z","height":1.82,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":943438686,"name":"Zhansay Smagulov","nationality":"KAZ","sex":"male","date_of_birth":"1992-09-26T00:00:00.000Z","height":1.69,"weight":66,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":634255666,"name":"Zhanyl Okoeva","nationality":"KGZ","sex":"female","date_of_birth":"1993-11-15T00:00:00.000Z","height":1.65,"weight":48,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":989437678,"name":"Zhao Juan Meng","nationality":"HKG","sex":"female","date_of_birth":"1989-12-14T00:00:00.000Z","height":1.7,"weight":60,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":162328031,"name":"Zhazira Zhapparkul","nationality":"KAZ","sex":"female","date_of_birth":"1993-12-22T00:00:00.000Z","height":1.55,"weight":69,"sport":"weightlifting","gold":0,"silver":1,"bronze":0,"info":null},{"id":548518238,"name":"Zhe Yang","nationality":"CHN","sex":"male","date_of_birth":"1991-07-14T00:00:00.000Z","height":1.87,"weight":105,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":315308490,"name":"Zhehui Zhang","nationality":"CHN","sex":"female","date_of_birth":"1988-01-17T00:00:00.000Z","height":1.77,"weight":76,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":167115740,"name":"Zhelin Wang","nationality":"CHN","sex":"male","date_of_birth":"1994-01-20T00:00:00.000Z","height":2.14,"weight":100,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":448660080,"name":"Zhen Wang","nationality":"CHN","sex":"male","date_of_birth":"1989-06-26T00:00:00.000Z","height":1.72,"weight":65,"sport":"cycling","gold":0,"silver":0,"bronze":0,"info":null},{"id":920733515,"name":"Zhen Wang","nationality":"CHN","sex":"male","date_of_birth":"1991-08-24T00:00:00.000Z","height":1.75,"weight":55,"sport":"athletics","gold":1,"silver":0,"bronze":0,"info":null},{"id":604655983,"name":"Zhen Zeng","nationality":"CHN","sex":"female","date_of_birth":"1993-11-28T00:00:00.000Z","height":1.7,"weight":61,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":925389312,"name":"Zhendong Wang","nationality":"CHN","sex":"male","date_of_birth":"1991-01-11T00:00:00.000Z","height":1.8,"weight":55,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":659569127,"name":"Zheng Wang","nationality":"CHN","sex":"female","date_of_birth":"1987-12-14T00:00:00.000Z","height":1.75,"weight":105,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":60255358,"name":"Zheng Wen Quah","nationality":"SIN","sex":"male","date_of_birth":"1996-09-29T00:00:00.000Z","height":1.79,"weight":79,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":272027054,"name":"Zhenye Xie","nationality":"CHN","sex":"male","date_of_birth":"1993-08-17T00:00:00.000Z","height":1.84,"weight":78,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":756808595,"name":"Zhifang Zhao","nationality":"CHN","sex":"female","date_of_birth":"1994-08-11T00:00:00.000Z","height":1.68,"weight":57,"sport":"basketball","gold":0,"silver":0,"bronze":0,"info":null},{"id":123124501,"name":"Zhiwei Deng","nationality":"CHN","sex":"male","date_of_birth":"1988-02-01T00:00:00.000Z","height":1.88,"weight":120,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":484683254,"name":"Zhiwei Wang","nationality":"CHN","sex":"male","date_of_birth":"1988-07-18T00:00:00.000Z","height":1.78,"weight":77,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":71451677,"name":"Zhiwen He","nationality":"ESP","sex":"male","date_of_birth":"1962-05-31T00:00:00.000Z","height":1.73,"weight":73,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":334126873,"name":"Zhiyong Shi","nationality":"CHN","sex":"male","date_of_birth":"1993-10-10T00:00:00.000Z","height":1.68,"weight":69,"sport":"weightlifting","gold":1,"silver":0,"bronze":0,"info":null},{"id":366579245,"name":"Zhongrong Cao","nationality":"CHN","sex":"male","date_of_birth":"1981-11-03T00:00:00.000Z","height":1.8,"weight":73,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":839669919,"name":"Zhuhao Li","nationality":"CHN","sex":"male","date_of_birth":"1999-01-09T00:00:00.000Z","height":1.85,"weight":76,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":449290079,"name":"Zhuldyz Eshimova","nationality":"KAZ","sex":"female","date_of_birth":"1988-01-02T00:00:00.000Z","height":1.52,"weight":48,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":105609876,"name":"Zi He","nationality":"CHN","sex":"female","date_of_birth":"1990-12-10T00:00:00.000Z","height":1.6,"weight":52,"sport":"aquatics","gold":0,"silver":1,"bronze":0,"info":null},{"id":955970530,"name":"Zi Liang Derek Wong","nationality":"SIN","sex":"male","date_of_birth":"1989-01-13T00:00:00.000Z","height":1.76,"weight":69,"sport":"badminton","gold":0,"silver":0,"bronze":0,"info":null},{"id":807355678,"name":"Ziao Qiu","nationality":"CHN","sex":"male","date_of_birth":"1998-08-30T00:00:00.000Z","height":1.82,"weight":67,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":425868187,"name":"Zibei Yan","nationality":"CHN","sex":"male","date_of_birth":"1995-10-12T00:00:00.000Z","height":1.9,"weight":75,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":560564596,"name":"Zicheng Hui","nationality":"CHN","sex":"male","date_of_birth":"1989-06-02T00:00:00.000Z","height":1.77,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":875746801,"name":"Zied Ait Ouagram","nationality":"MAR","sex":"male","date_of_birth":"1988-12-18T00:00:00.000Z","height":1.91,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":765883125,"name":"Zigismunds Sirmais","nationality":"LAT","sex":"male","date_of_birth":"1992-05-06T00:00:00.000Z","height":1.9,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":192304802,"name":"Zihan Zhao","nationality":"CHN","sex":"female","date_of_birth":"1993-09-04T00:00:00.000Z","height":1.72,"weight":62,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":84587289,"name":"Zinaida Sendriute","nationality":"LTU","sex":"female","date_of_birth":"1984-12-20T00:00:00.000Z","height":1.88,"weight":95,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":274387882,"name":"Ziv Kalontarov","nationality":"ISR","sex":"male","date_of_birth":"1997-01-15T00:00:00.000Z","height":1.85,"weight":71,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":782719758,"name":"Ziva Dvorsak","nationality":"SLO","sex":"female","date_of_birth":"1991-07-09T00:00:00.000Z","height":1.68,"weight":70,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":428778432,"name":"Zivile Vaiciukeviciute","nationality":"LTU","sex":"female","date_of_birth":"1996-04-03T00:00:00.000Z","height":1.64,"weight":54,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":593183472,"name":"Zivko Gocic","nationality":"SRB","sex":"male","date_of_birth":"1982-08-22T00:00:00.000Z","height":1.93,"weight":93,"sport":"aquatics","gold":1,"silver":0,"bronze":0,"info":null},{"id":799874941,"name":"Zixia Ou","nationality":"CHN","sex":"female","date_of_birth":"1995-09-24T00:00:00.000Z","height":1.68,"weight":61,"sport":"hockey","gold":0,"silver":0,"bronze":0,"info":null},{"id":47822121,"name":"Ziyu Zhang","nationality":"AUS","sex":"female","date_of_birth":"1990-12-10T00:00:00.000Z","height":1.62,"weight":70,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":432416881,"name":"Zlatko Horvat","nationality":"CRO","sex":"male","date_of_birth":"1984-09-25T00:00:00.000Z","height":1.79,"weight":86,"sport":"handball","gold":0,"silver":0,"bronze":0,"info":null},{"id":446963221,"name":"Zoe Arancini","nationality":"AUS","sex":"female","date_of_birth":"1991-07-14T00:00:00.000Z","height":1.7,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":499603226,"name":"Zoe Buckman","nationality":"AUS","sex":"female","date_of_birth":"1988-12-21T00:00:00.000Z","height":1.68,"weight":50,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":836633838,"name":"Zoe Lee","nationality":"GBR","sex":"female","date_of_birth":"1985-12-15T00:00:00.000Z","height":1.76,"weight":70,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":634140075,"name":"Zoe Stevenson","nationality":"NZL","sex":"female","date_of_birth":"1991-06-19T00:00:00.000Z","height":1.83,"weight":74,"sport":"rowing","gold":0,"silver":0,"bronze":0,"info":null},{"id":343671816,"name":"Zoe de Toledo","nationality":"GBR","sex":"female","date_of_birth":"1987-07-17T00:00:00.000Z","height":1.72,"weight":58,"sport":"rowing","gold":0,"silver":1,"bronze":0,"info":null},{"id":371106012,"name":"Zohar Shikler","nationality":"ISR","sex":"female","date_of_birth":"1997-07-08T00:00:00.000Z","height":1.78,"weight":61,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":352983859,"name":"Zohir Kedache","nationality":"ALG","sex":"male","date_of_birth":"1986-03-02T00:00:00.000Z","height":1.78,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":424586991,"name":"Zohra Ez Zahraoui","nationality":"MAR","sex":"female","date_of_birth":"1983-11-18T00:00:00.000Z","height":1.65,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":211176854,"name":"Zoi Kontogianni","nationality":"GRE","sex":"female","date_of_birth":"1997-09-19T00:00:00.000Z","height":1.65,"weight":47,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":875374176,"name":"Zokhid Kenjaev","nationality":"UZB","sex":"male","date_of_birth":"1992-03-30T00:00:00.000Z","height":1.68,"weight":61,"sport":"table tennis","gold":0,"silver":0,"bronze":0,"info":null},{"id":495365659,"name":"Zoltan Adam Harcsa","nationality":"HUN","sex":"male","date_of_birth":"1992-11-20T00:00:00.000Z","height":1.84,"weight":null,"sport":"boxing","gold":0,"silver":0,"bronze":0,"info":null},{"id":672182746,"name":"Zoltan Kovago","nationality":"HUN","sex":"male","date_of_birth":"1979-04-10T00:00:00.000Z","height":2.04,"weight":132,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":412827228,"name":"Zorana Arunovic","nationality":"SRB","sex":"female","date_of_birth":"1986-11-22T00:00:00.000Z","height":1.68,"weight":90,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":724419150,"name":"Zouhair Aouad","nationality":"BRN","sex":"male","date_of_birth":"1989-04-07T00:00:00.000Z","height":1.75,"weight":69,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":281890328,"name":"Zoulehia Abzetta Dabonne","nationality":"CIV","sex":"female","date_of_birth":"1992-12-15T00:00:00.000Z","height":1.75,"weight":57,"sport":"judo","gold":0,"silver":0,"bronze":0,"info":null},{"id":230998458,"name":"Zoya Ananchenko","nationality":"KAZ","sex":"female","date_of_birth":"1996-09-05T00:00:00.000Z","height":1.65,"weight":67,"sport":"canoe","gold":0,"silver":0,"bronze":0,"info":null},{"id":778588793,"name":"Zsanett Nemeth","nationality":"HUN","sex":"female","date_of_birth":"1994-01-21T00:00:00.000Z","height":1.75,"weight":80,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":640253635,"name":"Zsofia Csonka","nationality":"HUN","sex":"female","date_of_birth":"1983-09-12T00:00:00.000Z","height":1.64,"weight":89,"sport":"shooting","gold":0,"silver":0,"bronze":0,"info":null},{"id":999437858,"name":"Zsofia Erdelyi","nationality":"HUN","sex":"female","date_of_birth":"1987-12-10T00:00:00.000Z","height":1.64,"weight":53,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":46916465,"name":"Zsofia Foldhazi","nationality":"HUN","sex":"female","date_of_birth":"1993-06-09T00:00:00.000Z","height":1.7,"weight":54,"sport":"modern pentathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":738530209,"name":"Zsofia Kovacs","nationality":"HUN","sex":"female","date_of_birth":"1988-02-07T00:00:00.000Z","height":1.8,"weight":58,"sport":"triathlon","gold":0,"silver":0,"bronze":0,"info":null},{"id":499425013,"name":"Zsofia Kovacs","nationality":"HUN","sex":"female","date_of_birth":"2000-04-06T00:00:00.000Z","height":1.58,"weight":49,"sport":"gymnastics","gold":0,"silver":0,"bronze":0,"info":null},{"id":862285226,"name":"Zsombor Berecz","nationality":"HUN","sex":"male","date_of_birth":"1986-04-26T00:00:00.000Z","height":1.95,"weight":95,"sport":"sailing","gold":0,"silver":0,"bronze":0,"info":null},{"id":739315046,"name":"Zsuzsanna Jakabos","nationality":"HUN","sex":"female","date_of_birth":"1989-04-03T00:00:00.000Z","height":1.85,"weight":70,"sport":"aquatics","gold":0,"silver":0,"bronze":0,"info":null},{"id":600541319,"name":"Zurabi Datunashvili","nationality":"GEO","sex":"male","date_of_birth":"1991-06-18T00:00:00.000Z","height":1.83,"weight":75,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":801825063,"name":"Zurabi Iakobishvili","nationality":"GEO","sex":"male","date_of_birth":"1992-02-04T00:00:00.000Z","height":1.71,"weight":68,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":265605954,"name":"Zurian Hechavarria","nationality":"CUB","sex":"female","date_of_birth":"1995-08-10T00:00:00.000Z","height":1.64,"weight":58,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":214461847,"name":"Zuzana Hejnova","nationality":"CZE","sex":"female","date_of_birth":"1986-12-19T00:00:00.000Z","height":1.73,"weight":63,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null},{"id":88361042,"name":"di Xiao","nationality":"CHN","sex":"male","date_of_birth":"1991-05-14T00:00:00.000Z","height":1.85,"weight":100,"sport":"wrestling","gold":0,"silver":0,"bronze":0,"info":null},{"id":900065925,"name":"le Quoc Toan Tran","nationality":"VIE","sex":"male","date_of_birth":"1989-04-05T00:00:00.000Z","height":1.6,"weight":56,"sport":"weightlifting","gold":0,"silver":0,"bronze":0,"info":null},{"id":711404576,"name":"le Roux Hamman","nationality":"RSA","sex":"male","date_of_birth":"1992-01-06T00:00:00.000Z","height":1.85,"weight":70,"sport":"athletics","gold":0,"silver":0,"bronze":0,"info":null}] \ No newline at end of file diff --git a/docs/static/data/examples/penguins.csv b/docs/static/data/examples/penguins.csv new file mode 100644 index 000000000..af24f5270 --- /dev/null +++ b/docs/static/data/examples/penguins.csv @@ -0,0 +1,345 @@ +species,island,bill_length_mm,bill_depth_mm,flipper_length_mm,body_mass_g,sex,year +Adelie,Torgersen,39.1,18.7,181,3750,male,2007 +Adelie,Torgersen,39.5,17.4,186,3800,female,2007 +Adelie,Torgersen,40.3,18,195,3250,female,2007 +Adelie,Torgersen,NA,NA,NA,NA,NA,2007 +Adelie,Torgersen,36.7,19.3,193,3450,female,2007 +Adelie,Torgersen,39.3,20.6,190,3650,male,2007 +Adelie,Torgersen,38.9,17.8,181,3625,female,2007 +Adelie,Torgersen,39.2,19.6,195,4675,male,2007 +Adelie,Torgersen,34.1,18.1,193,3475,NA,2007 +Adelie,Torgersen,42,20.2,190,4250,NA,2007 +Adelie,Torgersen,37.8,17.1,186,3300,NA,2007 +Adelie,Torgersen,37.8,17.3,180,3700,NA,2007 +Adelie,Torgersen,41.1,17.6,182,3200,female,2007 +Adelie,Torgersen,38.6,21.2,191,3800,male,2007 +Adelie,Torgersen,34.6,21.1,198,4400,male,2007 +Adelie,Torgersen,36.6,17.8,185,3700,female,2007 +Adelie,Torgersen,38.7,19,195,3450,female,2007 +Adelie,Torgersen,42.5,20.7,197,4500,male,2007 +Adelie,Torgersen,34.4,18.4,184,3325,female,2007 +Adelie,Torgersen,46,21.5,194,4200,male,2007 +Adelie,Biscoe,37.8,18.3,174,3400,female,2007 +Adelie,Biscoe,37.7,18.7,180,3600,male,2007 +Adelie,Biscoe,35.9,19.2,189,3800,female,2007 +Adelie,Biscoe,38.2,18.1,185,3950,male,2007 +Adelie,Biscoe,38.8,17.2,180,3800,male,2007 +Adelie,Biscoe,35.3,18.9,187,3800,female,2007 +Adelie,Biscoe,40.6,18.6,183,3550,male,2007 +Adelie,Biscoe,40.5,17.9,187,3200,female,2007 +Adelie,Biscoe,37.9,18.6,172,3150,female,2007 +Adelie,Biscoe,40.5,18.9,180,3950,male,2007 +Adelie,Dream,39.5,16.7,178,3250,female,2007 +Adelie,Dream,37.2,18.1,178,3900,male,2007 +Adelie,Dream,39.5,17.8,188,3300,female,2007 +Adelie,Dream,40.9,18.9,184,3900,male,2007 +Adelie,Dream,36.4,17,195,3325,female,2007 +Adelie,Dream,39.2,21.1,196,4150,male,2007 +Adelie,Dream,38.8,20,190,3950,male,2007 +Adelie,Dream,42.2,18.5,180,3550,female,2007 +Adelie,Dream,37.6,19.3,181,3300,female,2007 +Adelie,Dream,39.8,19.1,184,4650,male,2007 +Adelie,Dream,36.5,18,182,3150,female,2007 +Adelie,Dream,40.8,18.4,195,3900,male,2007 +Adelie,Dream,36,18.5,186,3100,female,2007 +Adelie,Dream,44.1,19.7,196,4400,male,2007 +Adelie,Dream,37,16.9,185,3000,female,2007 +Adelie,Dream,39.6,18.8,190,4600,male,2007 +Adelie,Dream,41.1,19,182,3425,male,2007 +Adelie,Dream,37.5,18.9,179,2975,NA,2007 +Adelie,Dream,36,17.9,190,3450,female,2007 +Adelie,Dream,42.3,21.2,191,4150,male,2007 +Adelie,Biscoe,39.6,17.7,186,3500,female,2008 +Adelie,Biscoe,40.1,18.9,188,4300,male,2008 +Adelie,Biscoe,35,17.9,190,3450,female,2008 +Adelie,Biscoe,42,19.5,200,4050,male,2008 +Adelie,Biscoe,34.5,18.1,187,2900,female,2008 +Adelie,Biscoe,41.4,18.6,191,3700,male,2008 +Adelie,Biscoe,39,17.5,186,3550,female,2008 +Adelie,Biscoe,40.6,18.8,193,3800,male,2008 +Adelie,Biscoe,36.5,16.6,181,2850,female,2008 +Adelie,Biscoe,37.6,19.1,194,3750,male,2008 +Adelie,Biscoe,35.7,16.9,185,3150,female,2008 +Adelie,Biscoe,41.3,21.1,195,4400,male,2008 +Adelie,Biscoe,37.6,17,185,3600,female,2008 +Adelie,Biscoe,41.1,18.2,192,4050,male,2008 +Adelie,Biscoe,36.4,17.1,184,2850,female,2008 +Adelie,Biscoe,41.6,18,192,3950,male,2008 +Adelie,Biscoe,35.5,16.2,195,3350,female,2008 +Adelie,Biscoe,41.1,19.1,188,4100,male,2008 +Adelie,Torgersen,35.9,16.6,190,3050,female,2008 +Adelie,Torgersen,41.8,19.4,198,4450,male,2008 +Adelie,Torgersen,33.5,19,190,3600,female,2008 +Adelie,Torgersen,39.7,18.4,190,3900,male,2008 +Adelie,Torgersen,39.6,17.2,196,3550,female,2008 +Adelie,Torgersen,45.8,18.9,197,4150,male,2008 +Adelie,Torgersen,35.5,17.5,190,3700,female,2008 +Adelie,Torgersen,42.8,18.5,195,4250,male,2008 +Adelie,Torgersen,40.9,16.8,191,3700,female,2008 +Adelie,Torgersen,37.2,19.4,184,3900,male,2008 +Adelie,Torgersen,36.2,16.1,187,3550,female,2008 +Adelie,Torgersen,42.1,19.1,195,4000,male,2008 +Adelie,Torgersen,34.6,17.2,189,3200,female,2008 +Adelie,Torgersen,42.9,17.6,196,4700,male,2008 +Adelie,Torgersen,36.7,18.8,187,3800,female,2008 +Adelie,Torgersen,35.1,19.4,193,4200,male,2008 +Adelie,Dream,37.3,17.8,191,3350,female,2008 +Adelie,Dream,41.3,20.3,194,3550,male,2008 +Adelie,Dream,36.3,19.5,190,3800,male,2008 +Adelie,Dream,36.9,18.6,189,3500,female,2008 +Adelie,Dream,38.3,19.2,189,3950,male,2008 +Adelie,Dream,38.9,18.8,190,3600,female,2008 +Adelie,Dream,35.7,18,202,3550,female,2008 +Adelie,Dream,41.1,18.1,205,4300,male,2008 +Adelie,Dream,34,17.1,185,3400,female,2008 +Adelie,Dream,39.6,18.1,186,4450,male,2008 +Adelie,Dream,36.2,17.3,187,3300,female,2008 +Adelie,Dream,40.8,18.9,208,4300,male,2008 +Adelie,Dream,38.1,18.6,190,3700,female,2008 +Adelie,Dream,40.3,18.5,196,4350,male,2008 +Adelie,Dream,33.1,16.1,178,2900,female,2008 +Adelie,Dream,43.2,18.5,192,4100,male,2008 +Adelie,Biscoe,35,17.9,192,3725,female,2009 +Adelie,Biscoe,41,20,203,4725,male,2009 +Adelie,Biscoe,37.7,16,183,3075,female,2009 +Adelie,Biscoe,37.8,20,190,4250,male,2009 +Adelie,Biscoe,37.9,18.6,193,2925,female,2009 +Adelie,Biscoe,39.7,18.9,184,3550,male,2009 +Adelie,Biscoe,38.6,17.2,199,3750,female,2009 +Adelie,Biscoe,38.2,20,190,3900,male,2009 +Adelie,Biscoe,38.1,17,181,3175,female,2009 +Adelie,Biscoe,43.2,19,197,4775,male,2009 +Adelie,Biscoe,38.1,16.5,198,3825,female,2009 +Adelie,Biscoe,45.6,20.3,191,4600,male,2009 +Adelie,Biscoe,39.7,17.7,193,3200,female,2009 +Adelie,Biscoe,42.2,19.5,197,4275,male,2009 +Adelie,Biscoe,39.6,20.7,191,3900,female,2009 +Adelie,Biscoe,42.7,18.3,196,4075,male,2009 +Adelie,Torgersen,38.6,17,188,2900,female,2009 +Adelie,Torgersen,37.3,20.5,199,3775,male,2009 +Adelie,Torgersen,35.7,17,189,3350,female,2009 +Adelie,Torgersen,41.1,18.6,189,3325,male,2009 +Adelie,Torgersen,36.2,17.2,187,3150,female,2009 +Adelie,Torgersen,37.7,19.8,198,3500,male,2009 +Adelie,Torgersen,40.2,17,176,3450,female,2009 +Adelie,Torgersen,41.4,18.5,202,3875,male,2009 +Adelie,Torgersen,35.2,15.9,186,3050,female,2009 +Adelie,Torgersen,40.6,19,199,4000,male,2009 +Adelie,Torgersen,38.8,17.6,191,3275,female,2009 +Adelie,Torgersen,41.5,18.3,195,4300,male,2009 +Adelie,Torgersen,39,17.1,191,3050,female,2009 +Adelie,Torgersen,44.1,18,210,4000,male,2009 +Adelie,Torgersen,38.5,17.9,190,3325,female,2009 +Adelie,Torgersen,43.1,19.2,197,3500,male,2009 +Adelie,Dream,36.8,18.5,193,3500,female,2009 +Adelie,Dream,37.5,18.5,199,4475,male,2009 +Adelie,Dream,38.1,17.6,187,3425,female,2009 +Adelie,Dream,41.1,17.5,190,3900,male,2009 +Adelie,Dream,35.6,17.5,191,3175,female,2009 +Adelie,Dream,40.2,20.1,200,3975,male,2009 +Adelie,Dream,37,16.5,185,3400,female,2009 +Adelie,Dream,39.7,17.9,193,4250,male,2009 +Adelie,Dream,40.2,17.1,193,3400,female,2009 +Adelie,Dream,40.6,17.2,187,3475,male,2009 +Adelie,Dream,32.1,15.5,188,3050,female,2009 +Adelie,Dream,40.7,17,190,3725,male,2009 +Adelie,Dream,37.3,16.8,192,3000,female,2009 +Adelie,Dream,39,18.7,185,3650,male,2009 +Adelie,Dream,39.2,18.6,190,4250,male,2009 +Adelie,Dream,36.6,18.4,184,3475,female,2009 +Adelie,Dream,36,17.8,195,3450,female,2009 +Adelie,Dream,37.8,18.1,193,3750,male,2009 +Adelie,Dream,36,17.1,187,3700,female,2009 +Adelie,Dream,41.5,18.5,201,4000,male,2009 +Gentoo,Biscoe,46.1,13.2,211,4500,female,2007 +Gentoo,Biscoe,50,16.3,230,5700,male,2007 +Gentoo,Biscoe,48.7,14.1,210,4450,female,2007 +Gentoo,Biscoe,50,15.2,218,5700,male,2007 +Gentoo,Biscoe,47.6,14.5,215,5400,male,2007 +Gentoo,Biscoe,46.5,13.5,210,4550,female,2007 +Gentoo,Biscoe,45.4,14.6,211,4800,female,2007 +Gentoo,Biscoe,46.7,15.3,219,5200,male,2007 +Gentoo,Biscoe,43.3,13.4,209,4400,female,2007 +Gentoo,Biscoe,46.8,15.4,215,5150,male,2007 +Gentoo,Biscoe,40.9,13.7,214,4650,female,2007 +Gentoo,Biscoe,49,16.1,216,5550,male,2007 +Gentoo,Biscoe,45.5,13.7,214,4650,female,2007 +Gentoo,Biscoe,48.4,14.6,213,5850,male,2007 +Gentoo,Biscoe,45.8,14.6,210,4200,female,2007 +Gentoo,Biscoe,49.3,15.7,217,5850,male,2007 +Gentoo,Biscoe,42,13.5,210,4150,female,2007 +Gentoo,Biscoe,49.2,15.2,221,6300,male,2007 +Gentoo,Biscoe,46.2,14.5,209,4800,female,2007 +Gentoo,Biscoe,48.7,15.1,222,5350,male,2007 +Gentoo,Biscoe,50.2,14.3,218,5700,male,2007 +Gentoo,Biscoe,45.1,14.5,215,5000,female,2007 +Gentoo,Biscoe,46.5,14.5,213,4400,female,2007 +Gentoo,Biscoe,46.3,15.8,215,5050,male,2007 +Gentoo,Biscoe,42.9,13.1,215,5000,female,2007 +Gentoo,Biscoe,46.1,15.1,215,5100,male,2007 +Gentoo,Biscoe,44.5,14.3,216,4100,NA,2007 +Gentoo,Biscoe,47.8,15,215,5650,male,2007 +Gentoo,Biscoe,48.2,14.3,210,4600,female,2007 +Gentoo,Biscoe,50,15.3,220,5550,male,2007 +Gentoo,Biscoe,47.3,15.3,222,5250,male,2007 +Gentoo,Biscoe,42.8,14.2,209,4700,female,2007 +Gentoo,Biscoe,45.1,14.5,207,5050,female,2007 +Gentoo,Biscoe,59.6,17,230,6050,male,2007 +Gentoo,Biscoe,49.1,14.8,220,5150,female,2008 +Gentoo,Biscoe,48.4,16.3,220,5400,male,2008 +Gentoo,Biscoe,42.6,13.7,213,4950,female,2008 +Gentoo,Biscoe,44.4,17.3,219,5250,male,2008 +Gentoo,Biscoe,44,13.6,208,4350,female,2008 +Gentoo,Biscoe,48.7,15.7,208,5350,male,2008 +Gentoo,Biscoe,42.7,13.7,208,3950,female,2008 +Gentoo,Biscoe,49.6,16,225,5700,male,2008 +Gentoo,Biscoe,45.3,13.7,210,4300,female,2008 +Gentoo,Biscoe,49.6,15,216,4750,male,2008 +Gentoo,Biscoe,50.5,15.9,222,5550,male,2008 +Gentoo,Biscoe,43.6,13.9,217,4900,female,2008 +Gentoo,Biscoe,45.5,13.9,210,4200,female,2008 +Gentoo,Biscoe,50.5,15.9,225,5400,male,2008 +Gentoo,Biscoe,44.9,13.3,213,5100,female,2008 +Gentoo,Biscoe,45.2,15.8,215,5300,male,2008 +Gentoo,Biscoe,46.6,14.2,210,4850,female,2008 +Gentoo,Biscoe,48.5,14.1,220,5300,male,2008 +Gentoo,Biscoe,45.1,14.4,210,4400,female,2008 +Gentoo,Biscoe,50.1,15,225,5000,male,2008 +Gentoo,Biscoe,46.5,14.4,217,4900,female,2008 +Gentoo,Biscoe,45,15.4,220,5050,male,2008 +Gentoo,Biscoe,43.8,13.9,208,4300,female,2008 +Gentoo,Biscoe,45.5,15,220,5000,male,2008 +Gentoo,Biscoe,43.2,14.5,208,4450,female,2008 +Gentoo,Biscoe,50.4,15.3,224,5550,male,2008 +Gentoo,Biscoe,45.3,13.8,208,4200,female,2008 +Gentoo,Biscoe,46.2,14.9,221,5300,male,2008 +Gentoo,Biscoe,45.7,13.9,214,4400,female,2008 +Gentoo,Biscoe,54.3,15.7,231,5650,male,2008 +Gentoo,Biscoe,45.8,14.2,219,4700,female,2008 +Gentoo,Biscoe,49.8,16.8,230,5700,male,2008 +Gentoo,Biscoe,46.2,14.4,214,4650,NA,2008 +Gentoo,Biscoe,49.5,16.2,229,5800,male,2008 +Gentoo,Biscoe,43.5,14.2,220,4700,female,2008 +Gentoo,Biscoe,50.7,15,223,5550,male,2008 +Gentoo,Biscoe,47.7,15,216,4750,female,2008 +Gentoo,Biscoe,46.4,15.6,221,5000,male,2008 +Gentoo,Biscoe,48.2,15.6,221,5100,male,2008 +Gentoo,Biscoe,46.5,14.8,217,5200,female,2008 +Gentoo,Biscoe,46.4,15,216,4700,female,2008 +Gentoo,Biscoe,48.6,16,230,5800,male,2008 +Gentoo,Biscoe,47.5,14.2,209,4600,female,2008 +Gentoo,Biscoe,51.1,16.3,220,6000,male,2008 +Gentoo,Biscoe,45.2,13.8,215,4750,female,2008 +Gentoo,Biscoe,45.2,16.4,223,5950,male,2008 +Gentoo,Biscoe,49.1,14.5,212,4625,female,2009 +Gentoo,Biscoe,52.5,15.6,221,5450,male,2009 +Gentoo,Biscoe,47.4,14.6,212,4725,female,2009 +Gentoo,Biscoe,50,15.9,224,5350,male,2009 +Gentoo,Biscoe,44.9,13.8,212,4750,female,2009 +Gentoo,Biscoe,50.8,17.3,228,5600,male,2009 +Gentoo,Biscoe,43.4,14.4,218,4600,female,2009 +Gentoo,Biscoe,51.3,14.2,218,5300,male,2009 +Gentoo,Biscoe,47.5,14,212,4875,female,2009 +Gentoo,Biscoe,52.1,17,230,5550,male,2009 +Gentoo,Biscoe,47.5,15,218,4950,female,2009 +Gentoo,Biscoe,52.2,17.1,228,5400,male,2009 +Gentoo,Biscoe,45.5,14.5,212,4750,female,2009 +Gentoo,Biscoe,49.5,16.1,224,5650,male,2009 +Gentoo,Biscoe,44.5,14.7,214,4850,female,2009 +Gentoo,Biscoe,50.8,15.7,226,5200,male,2009 +Gentoo,Biscoe,49.4,15.8,216,4925,male,2009 +Gentoo,Biscoe,46.9,14.6,222,4875,female,2009 +Gentoo,Biscoe,48.4,14.4,203,4625,female,2009 +Gentoo,Biscoe,51.1,16.5,225,5250,male,2009 +Gentoo,Biscoe,48.5,15,219,4850,female,2009 +Gentoo,Biscoe,55.9,17,228,5600,male,2009 +Gentoo,Biscoe,47.2,15.5,215,4975,female,2009 +Gentoo,Biscoe,49.1,15,228,5500,male,2009 +Gentoo,Biscoe,47.3,13.8,216,4725,NA,2009 +Gentoo,Biscoe,46.8,16.1,215,5500,male,2009 +Gentoo,Biscoe,41.7,14.7,210,4700,female,2009 +Gentoo,Biscoe,53.4,15.8,219,5500,male,2009 +Gentoo,Biscoe,43.3,14,208,4575,female,2009 +Gentoo,Biscoe,48.1,15.1,209,5500,male,2009 +Gentoo,Biscoe,50.5,15.2,216,5000,female,2009 +Gentoo,Biscoe,49.8,15.9,229,5950,male,2009 +Gentoo,Biscoe,43.5,15.2,213,4650,female,2009 +Gentoo,Biscoe,51.5,16.3,230,5500,male,2009 +Gentoo,Biscoe,46.2,14.1,217,4375,female,2009 +Gentoo,Biscoe,55.1,16,230,5850,male,2009 +Gentoo,Biscoe,44.5,15.7,217,4875,NA,2009 +Gentoo,Biscoe,48.8,16.2,222,6000,male,2009 +Gentoo,Biscoe,47.2,13.7,214,4925,female,2009 +Gentoo,Biscoe,NA,NA,NA,NA,NA,2009 +Gentoo,Biscoe,46.8,14.3,215,4850,female,2009 +Gentoo,Biscoe,50.4,15.7,222,5750,male,2009 +Gentoo,Biscoe,45.2,14.8,212,5200,female,2009 +Gentoo,Biscoe,49.9,16.1,213,5400,male,2009 +Chinstrap,Dream,46.5,17.9,192,3500,female,2007 +Chinstrap,Dream,50,19.5,196,3900,male,2007 +Chinstrap,Dream,51.3,19.2,193,3650,male,2007 +Chinstrap,Dream,45.4,18.7,188,3525,female,2007 +Chinstrap,Dream,52.7,19.8,197,3725,male,2007 +Chinstrap,Dream,45.2,17.8,198,3950,female,2007 +Chinstrap,Dream,46.1,18.2,178,3250,female,2007 +Chinstrap,Dream,51.3,18.2,197,3750,male,2007 +Chinstrap,Dream,46,18.9,195,4150,female,2007 +Chinstrap,Dream,51.3,19.9,198,3700,male,2007 +Chinstrap,Dream,46.6,17.8,193,3800,female,2007 +Chinstrap,Dream,51.7,20.3,194,3775,male,2007 +Chinstrap,Dream,47,17.3,185,3700,female,2007 +Chinstrap,Dream,52,18.1,201,4050,male,2007 +Chinstrap,Dream,45.9,17.1,190,3575,female,2007 +Chinstrap,Dream,50.5,19.6,201,4050,male,2007 +Chinstrap,Dream,50.3,20,197,3300,male,2007 +Chinstrap,Dream,58,17.8,181,3700,female,2007 +Chinstrap,Dream,46.4,18.6,190,3450,female,2007 +Chinstrap,Dream,49.2,18.2,195,4400,male,2007 +Chinstrap,Dream,42.4,17.3,181,3600,female,2007 +Chinstrap,Dream,48.5,17.5,191,3400,male,2007 +Chinstrap,Dream,43.2,16.6,187,2900,female,2007 +Chinstrap,Dream,50.6,19.4,193,3800,male,2007 +Chinstrap,Dream,46.7,17.9,195,3300,female,2007 +Chinstrap,Dream,52,19,197,4150,male,2007 +Chinstrap,Dream,50.5,18.4,200,3400,female,2008 +Chinstrap,Dream,49.5,19,200,3800,male,2008 +Chinstrap,Dream,46.4,17.8,191,3700,female,2008 +Chinstrap,Dream,52.8,20,205,4550,male,2008 +Chinstrap,Dream,40.9,16.6,187,3200,female,2008 +Chinstrap,Dream,54.2,20.8,201,4300,male,2008 +Chinstrap,Dream,42.5,16.7,187,3350,female,2008 +Chinstrap,Dream,51,18.8,203,4100,male,2008 +Chinstrap,Dream,49.7,18.6,195,3600,male,2008 +Chinstrap,Dream,47.5,16.8,199,3900,female,2008 +Chinstrap,Dream,47.6,18.3,195,3850,female,2008 +Chinstrap,Dream,52,20.7,210,4800,male,2008 +Chinstrap,Dream,46.9,16.6,192,2700,female,2008 +Chinstrap,Dream,53.5,19.9,205,4500,male,2008 +Chinstrap,Dream,49,19.5,210,3950,male,2008 +Chinstrap,Dream,46.2,17.5,187,3650,female,2008 +Chinstrap,Dream,50.9,19.1,196,3550,male,2008 +Chinstrap,Dream,45.5,17,196,3500,female,2008 +Chinstrap,Dream,50.9,17.9,196,3675,female,2009 +Chinstrap,Dream,50.8,18.5,201,4450,male,2009 +Chinstrap,Dream,50.1,17.9,190,3400,female,2009 +Chinstrap,Dream,49,19.6,212,4300,male,2009 +Chinstrap,Dream,51.5,18.7,187,3250,male,2009 +Chinstrap,Dream,49.8,17.3,198,3675,female,2009 +Chinstrap,Dream,48.1,16.4,199,3325,female,2009 +Chinstrap,Dream,51.4,19,201,3950,male,2009 +Chinstrap,Dream,45.7,17.3,193,3600,female,2009 +Chinstrap,Dream,50.7,19.7,203,4050,male,2009 +Chinstrap,Dream,42.5,17.3,187,3350,female,2009 +Chinstrap,Dream,52.2,18.8,197,3450,male,2009 +Chinstrap,Dream,45.2,16.6,191,3250,female,2009 +Chinstrap,Dream,49.3,19.9,203,4050,male,2009 +Chinstrap,Dream,50.2,18.8,202,3800,male,2009 +Chinstrap,Dream,45.6,19.4,194,3525,female,2009 +Chinstrap,Dream,51.9,19.5,206,3950,male,2009 +Chinstrap,Dream,46.8,16.5,189,3650,female,2009 +Chinstrap,Dream,45.7,17,195,3650,female,2009 +Chinstrap,Dream,55.8,19.8,207,4000,male,2009 +Chinstrap,Dream,43.5,18.1,202,3400,female,2009 +Chinstrap,Dream,49.6,18.2,193,3775,male,2009 +Chinstrap,Dream,50.8,19,210,4100,male,2009 +Chinstrap,Dream,50.2,18.7,198,3775,female,2009 \ No newline at end of file diff --git a/docs/static/data/examples/penguins.d.ts b/docs/static/data/examples/penguins.d.ts new file mode 100644 index 000000000..61e70451d --- /dev/null +++ b/docs/static/data/examples/penguins.d.ts @@ -0,0 +1,10 @@ +export type PenguinsData = { + species: string; + island: string; + bill_length_mm: number | 'NA'; + bill_depth_mm: number | 'NA'; + flipper_length_mm: number | 'NA'; + body_mass_g: number | 'NA'; + sex: 'male' | 'female' | 'NA'; + year: number; +}[]; diff --git a/docs/static/data/examples/sfoTemperatures.csv b/docs/static/data/examples/sfoTemperatures.csv new file mode 100644 index 000000000..873c47ab9 --- /dev/null +++ b/docs/static/data/examples/sfoTemperatures.csv @@ -0,0 +1,7307 @@ +date,tavg,tmax,tmin +1999-01-01,49,58,39 +1999-01-02,49,59,38 +1999-01-03,55,62,47 +1999-01-04,46,52,40 +1999-01-05,45,52,38 +1999-01-06,45,50,40 +1999-01-07,46,50,42 +1999-01-08,49,58,39 +1999-01-09,47,53,41 +1999-01-10,45,50,40 +1999-01-11,44,51,37 +1999-01-12,49,56,42 +1999-01-13,50,54,45 +1999-01-14,49,54,44 +1999-01-15,53,57,48 +1999-01-16,55,59,51 +1999-01-17,55,58,51 +1999-01-18,55,57,53 +1999-01-19,58,62,53 +1999-01-20,55,57,53 +1999-01-21,53,57,49 +1999-01-22,54,58,50 +1999-01-23,49,57,41 +1999-01-24,44,52,36 +1999-01-25,49,54,44 +1999-01-26,46,50,41 +1999-01-27,47,57,37 +1999-01-28,47,55,38 +1999-01-29,46,52,40 +1999-01-30,50,58,41 +1999-01-31,48,53,43 +1999-02-01,46,54,38 +1999-02-02,47,56,37 +1999-02-03,49,56,42 +1999-02-04,51,55,47 +1999-02-05,49,54,43 +1999-02-06,51,54,48 +1999-02-07,55,58,51 +1999-02-08,55,58,51 +1999-02-09,51,59,42 +1999-02-10,45,51,39 +1999-02-11,47,54,40 +1999-02-12,48,53,42 +1999-02-13,49,56,41 +1999-02-14,50,54,46 +1999-02-15,48,55,41 +1999-02-16,52,56,47 +1999-02-17,55,60,50 +1999-02-18,53,58,48 +1999-02-19,52,60,43 +1999-02-20,50,53,46 +1999-02-21,50,54,45 +1999-02-22,52,56,47 +1999-02-23,52,59,44 +1999-02-24,51,59,43 +1999-02-25,51,56,46 +1999-02-26,49,55,42 +1999-02-27,52,60,44 +1999-02-28,57,62,51 +1999-03-01,53,58,47 +1999-03-02,54,65,42 +1999-03-03,52,56,47 +1999-03-04,49,54,44 +1999-03-05,49,57,40 +1999-03-06,49,55,43 +1999-03-07,48,55,41 +1999-03-08,50,54,45 +1999-03-09,48,52,43 +1999-03-10,46,52,40 +1999-03-11,51,58,43 +1999-03-12,50,56,44 +1999-03-13,51,59,43 +1999-03-14,50,54,45 +1999-03-15,51,57,45 +1999-03-16,53,56,49 +1999-03-17,51,55,47 +1999-03-18,55,62,48 +1999-03-19,52,55,49 +1999-03-20,51,57,45 +1999-03-21,56,61,50 +1999-03-22,51,58,44 +1999-03-23,52,58,46 +1999-03-24,54,57,50 +1999-03-25,57,63,50 +1999-03-26,53,58,48 +1999-03-27,50,57,43 +1999-03-28,52,59,44 +1999-03-29,52,58,45 +1999-03-30,49,55,43 +1999-03-31,48,53,42 +1999-04-01,48,56,40 +1999-04-02,52,62,41 +1999-04-03,49,53,45 +1999-04-04,49,56,42 +1999-04-05,49,53,44 +1999-04-06,50,57,43 +1999-04-07,50,52,48 +1999-04-08,47,51,42 +1999-04-09,47,54,39 +1999-04-10,48,51,44 +1999-04-11,52,56,47 +1999-04-12,54,59,48 +1999-04-13,54,63,45 +1999-04-14,64,79,48 +1999-04-15,67,81,52 +1999-04-16,70,81,58 +1999-04-17,61,70,52 +1999-04-18,57,64,50 +1999-04-19,56,62,49 +1999-04-20,54,59,49 +1999-04-21,53,58,48 +1999-04-22,58,67,48 +1999-04-23,67,76,58 +1999-04-24,60,67,53 +1999-04-25,56,62,50 +1999-04-26,53,59,47 +1999-04-27,52,56,47 +1999-04-28,52,58,45 +1999-04-29,56,63,48 +1999-04-30,59,70,48 +1999-05-01,53,57,49 +1999-05-02,53,57,48 +1999-05-03,54,58,49 +1999-05-04,54,61,47 +1999-05-05,60,73,46 +1999-05-06,55,61,48 +1999-05-07,54,61,47 +1999-05-08,53,60,45 +1999-05-09,54,61,46 +1999-05-10,54,62,46 +1999-05-11,57,66,48 +1999-05-12,53,59,47 +1999-05-13,53,60,46 +1999-05-14,52,57,46 +1999-05-15,53,61,45 +1999-05-16,54,61,47 +1999-05-17,56,64,48 +1999-05-18,57,63,51 +1999-05-19,55,60,50 +1999-05-20,55,60,49 +1999-05-21,56,66,46 +1999-05-22,64,77,50 +1999-05-23,61,68,53 +1999-05-24,58,65,51 +1999-05-25,59,67,50 +1999-05-26,59,68,50 +1999-05-27,55,60,50 +1999-05-28,53,55,50 +1999-05-29,53,56,50 +1999-05-30,59,67,50 +1999-05-31,60,67,52 +1999-06-01,55,59,51 +1999-06-02,55,60,50 +1999-06-03,55,62,48 +1999-06-04,58,65,50 +1999-06-05,59,67,51 +1999-06-06,56,62,50 +1999-06-07,55,61,48 +1999-06-08,55,62,48 +1999-06-09,56,63,48 +1999-06-10,59,68,50 +1999-06-11,57,64,50 +1999-06-12,58,66,49 +1999-06-13,61,68,53 +1999-06-14,59,64,53 +1999-06-15,58,63,53 +1999-06-16,59,66,52 +1999-06-17,60,68,51 +1999-06-18,59,66,52 +1999-06-19,60,66,53 +1999-06-20,60,69,51 +1999-06-21,59,65,53 +1999-06-22,65,76,53 +1999-06-23,63,73,52 +1999-06-24,60,66,53 +1999-06-25,59,65,52 +1999-06-26,60,70,50 +1999-06-27,67,82,51 +1999-06-28,68,82,53 +1999-06-29,68,81,54 +1999-06-30,72,87,56 +1999-07-01,63,71,55 +1999-07-02,60,66,53 +1999-07-03,58,63,52 +1999-07-04,62,73,50 +1999-07-05,61,70,52 +1999-07-06,59,65,52 +1999-07-07,63,73,52 +1999-07-08,62,71,52 +1999-07-09,62,72,51 +1999-07-10,62,72,51 +1999-07-11,70,86,54 +1999-07-12,73,87,59 +1999-07-13,66,76,56 +1999-07-14,68,80,55 +1999-07-15,63,71,54 +1999-07-16,59,64,53 +1999-07-17,60,65,54 +1999-07-18,61,71,50 +1999-07-19,61,66,56 +1999-07-20,62,67,57 +1999-07-21,62,68,55 +1999-07-22,61,67,54 +1999-07-23,60,66,54 +1999-07-24,62,66,57 +1999-07-25,62,68,55 +1999-07-26,62,68,55 +1999-07-27,61,66,55 +1999-07-28,61,67,55 +1999-07-29,63,69,56 +1999-07-30,60,65,55 +1999-07-31,59,64,54 +1999-08-01,62,69,55 +1999-08-02,64,71,56 +1999-08-03,63,68,57 +1999-08-04,60,64,55 +1999-08-05,60,64,56 +1999-08-06,65,70,59 +1999-08-07,65,70,59 +1999-08-08,65,70,59 +1999-08-09,63,68,58 +1999-08-10,64,69,58 +1999-08-11,65,70,59 +1999-08-12,64,69,58 +1999-08-13,63,69,57 +1999-08-14,62,67,56 +1999-08-15,64,73,55 +1999-08-16,62,71,53 +1999-08-17,62,68,55 +1999-08-18,62,66,57 +1999-08-19,64,72,55 +1999-08-20,63,69,56 +1999-08-21,67,78,56 +1999-08-22,74,90,57 +1999-08-23,64,71,56 +1999-08-24,63,71,54 +1999-08-25,68,83,53 +1999-08-26,67,79,55 +1999-08-27,68,76,59 +1999-08-28,65,72,57 +1999-08-29,63,68,57 +1999-08-30,63,69,57 +1999-08-31,63,73,53 +1999-09-01,61,70,51 +1999-09-02,64,74,54 +1999-09-03,61,68,53 +1999-09-04,60,68,51 +1999-09-05,63,76,50 +1999-09-06,63,73,53 +1999-09-07,63,73,52 +1999-09-08,63,68,57 +1999-09-09,63,68,58 +1999-09-10,64,73,54 +1999-09-11,63,69,56 +1999-09-12,63,69,56 +1999-09-13,63,69,56 +1999-09-14,61,65,56 +1999-09-15,59,64,54 +1999-09-16,61,67,54 +1999-09-17,60,67,53 +1999-09-18,60,68,52 +1999-09-19,63,69,56 +1999-09-20,62,69,55 +1999-09-21,62,69,54 +1999-09-22,62,67,56 +1999-09-23,61,68,54 +1999-09-24,61,68,53 +1999-09-25,64,74,53 +1999-09-26,71,86,56 +1999-09-27,74,89,58 +1999-09-28,74,90,58 +1999-09-29,75,90,59 +1999-09-30,72,85,58 +1999-10-01,61,69,52 +1999-10-02,60,69,51 +1999-10-03,63,69,56 +1999-10-04,62,68,55 +1999-10-05,63,69,57 +1999-10-06,61,65,57 +1999-10-07,65,78,52 +1999-10-08,71,86,55 +1999-10-09,68,81,55 +1999-10-10,72,86,57 +1999-10-11,64,73,55 +1999-10-12,66,78,53 +1999-10-13,61,68,53 +1999-10-14,64,71,56 +1999-10-15,68,82,53 +1999-10-16,67,80,53 +1999-10-17,67,80,53 +1999-10-18,60,70,50 +1999-10-19,59,70,47 +1999-10-20,65,78,51 +1999-10-21,65,77,53 +1999-10-22,60,68,52 +1999-10-23,57,62,52 +1999-10-24,59,66,52 +1999-10-25,58,68,47 +1999-10-26,57,62,52 +1999-10-27,62,69,54 +1999-10-28,59,65,53 +1999-10-29,59,69,48 +1999-10-30,61,72,49 +1999-10-31,63,76,49 +1999-11-01,,78,52 +1999-11-02,58,63,52 +1999-11-03,56,60,51 +1999-11-04,58,68,48 +1999-11-05,60,70,50 +1999-11-06,62,67,56 +1999-11-07,63,70,55 +1999-11-08,57,63,50 +1999-11-09,55,62,47 +1999-11-10,61,66,55 +1999-11-11,66,69,52 +1999-11-12,61,69,53 +1999-11-13,62,72,52 +1999-11-14,56,61,51 +1999-11-15,63,69,56 +1999-11-16,60,67,52 +1999-11-17,55,60,49 +1999-11-18,54,62,46 +1999-11-19,55,60,50 +1999-11-20,54,60,48 +1999-11-21,55,59,50 +1999-11-22,50,59,41 +1999-11-23,52,59,45 +1999-11-24,52,60,43 +1999-11-25,54,61,46 +1999-11-26,56,60,52 +1999-11-27,57,58,55 +1999-11-28,56,57,54 +1999-11-29,57,62,51 +1999-11-30,56,61,50 +1999-12-01,53,58,48 +1999-12-02,53,58,47 +1999-12-03,54,59,48 +1999-12-04,50,56,43 +1999-12-05,49,57,41 +1999-12-06,51,57,45 +1999-12-07,52,57,47 +1999-12-08,48,55,40 +1999-12-09,52,57,47 +1999-12-10,47,55,39 +1999-12-11,49,57,40 +1999-12-12,49,56,42 +1999-12-13,49,54,43 +1999-12-14,52,63,40 +1999-12-15,48,55,40 +1999-12-16,48,57,39 +1999-12-17,51,61,41 +1999-12-18,52,59,44 +1999-12-19,55,68,42 +1999-12-20,61,69,52 +1999-12-21,59,68,49 +1999-12-22,58,68,48 +1999-12-23,51,60,41 +1999-12-24,51,61,41 +1999-12-25,52,63,41 +1999-12-26,51,61,41 +1999-12-27,51,62,40 +1999-12-28,50,58,41 +1999-12-29,49,57,40 +1999-12-30,50,59,40 +1999-12-31,47,53,40 +2000-01-01,51,54,47 +2000-01-02,48,55,40 +2000-01-03,55,69,40 +2000-01-04,59,55,45 +2000-01-05,63,59,44 +2000-01-06,47,56,38 +2000-01-07,49,56,42 +2000-01-08,53,57,48 +2000-01-09,51,56,46 +2000-01-10,54,59,49 +2000-01-11,54,58,49 +2000-01-12,47,52,42 +2000-01-13,52,58,45 +2000-01-14,52,56,47 +2000-01-15,58,64,52 +2000-01-16,54,59,48 +2000-01-17,55,53,46 +2000-01-18,57,62,51 +2000-01-19,57,61,53 +2000-01-20,56,57,49 +2000-01-21,55,60,49 +2000-01-22,54,56,51 +2000-01-23,56,60,52 +2000-01-24,56,58,53 +2000-01-25,55,60,50 +2000-01-26,52,56,47 +2000-01-27,53,60,45 +2000-01-28,49,55,42 +2000-01-29,52,59,45 +2000-01-30,55,57,52 +2000-01-31,53,55,50 +2000-02-01,57,61,52 +2000-02-02,56,62,50 +2000-02-03,57,64,50 +2000-02-04,56,61,50 +2000-02-05,55,59,50 +2000-02-06,55,61,48 +2000-02-07,56,62,49 +2000-02-08,53,58,47 +2000-02-09,54,57,51 +2000-02-10,52,56,48 +2000-02-11,51,55,47 +2000-02-12,52,56,48 +2000-02-13,56,60,51 +2000-02-14,56,60,51 +2000-02-15,51,56,45 +2000-02-16,51,54,48 +2000-02-17,51,58,44 +2000-02-18,54,61,46 +2000-02-19,56,64,48 +2000-02-20,57,62,51 +2000-02-21,56,62,49 +2000-02-22,52,56,48 +2000-02-23,49,55,43 +2000-02-24,47,52,42 +2000-02-25,51,56,46 +2000-02-26,57,59,54 +2000-02-27,54,57,50 +2000-02-28,53,57,49 +2000-02-29,53,58,48 +2000-03-01,51,59,43 +2000-03-02,52,56,48 +2000-03-03,53,62,44 +2000-03-04,54,58,50 +2000-03-05,49,51,47 +2000-03-06,52,57,47 +2000-03-07,50,54,45 +2000-03-08,47,53,41 +2000-03-09,53,58,48 +2000-03-10,52,61,43 +2000-03-11,56,61,50 +2000-03-12,54,62,46 +2000-03-13,54,61,47 +2000-03-14,60,67,52 +2000-03-15,59,71,47 +2000-03-16,55,61,49 +2000-03-17,55,66,44 +2000-03-18,58,67,48 +2000-03-19,54,59,48 +2000-03-20,56,64,47 +2000-03-21,62,71,53 +2000-03-22,58,68,48 +2000-03-23,53,59,47 +2000-03-24,52,61,43 +2000-03-25,53,58,47 +2000-03-26,53,59,47 +2000-03-27,52,56,48 +2000-03-28,52,58,45 +2000-03-29,55,64,46 +2000-03-30,58,71,44 +2000-03-31,,76,58 +2000-04-01,70,81,59 +2000-04-02,70,85,54 +2000-04-03,61,68,53 +2000-04-04,57,62,52 +2000-04-05,55,61,49 +2000-04-06,55,61,49 +2000-04-07,57,67,46 +2000-04-08,53,57,49 +2000-04-09,57,62,51 +2000-04-10,56,62,49 +2000-04-11,60,70,49 +2000-04-12,63,72,53 +2000-04-13,61,66,55 +2000-04-14,58,63,53 +2000-04-15,58,63,53 +2000-04-16,58,62,53 +2000-04-17,57,63,51 +2000-04-18,56,63,48 +2000-04-19,56,64,47 +2000-04-20,59,66,52 +2000-04-21,57,61,53 +2000-04-22,57,62,52 +2000-04-23,56,62,50 +2000-04-24,56,65,47 +2000-04-25,58,64,51 +2000-04-26,63,77,49 +2000-04-27,59,65,52 +2000-04-28,55,60,50 +2000-04-29,58,68,47 +2000-04-30,57,66,48 +2000-05-01,58,65,50 +2000-05-02,58,65,51 +2000-05-03,59,67,51 +2000-05-04,58,63,53 +2000-05-05,57,62,51 +2000-05-06,55,59,51 +2000-05-07,57,61,53 +2000-05-08,,64,54 +2000-05-09,58,63,53 +2000-05-10,55,60,50 +2000-05-11,55,62,48 +2000-05-12,55,62,47 +2000-05-13,58,65,51 +2000-05-14,57,63,51 +2000-05-15,60,65,54 +2000-05-16,58,62,53 +2000-05-17,60,67,52 +2000-05-18,62,73,51 +2000-05-19,65,78,52 +2000-05-20,66,79,53 +2000-05-21,76,92,59 +2000-05-22,70,81,58 +2000-05-23,75,88,62 +2000-05-24,65,75,54 +2000-05-25,59,65,53 +2000-05-26,59,64,53 +2000-05-27,61,68,54 +2000-05-28,61,68,53 +2000-05-29,57,63,51 +2000-05-30,58,65,50 +2000-05-31,62,74,49 +2000-06-01,64,77,51 +2000-06-02,58,65,51 +2000-06-03,57,62,51 +2000-06-04,57,63,50 +2000-06-05,62,68,56 +2000-06-06,60,66,53 +2000-06-07,62,69,54 +2000-06-08,58,62,53 +2000-06-09,59,65,53 +2000-06-10,59,65,52 +2000-06-11,59,67,51 +2000-06-12,63,71,55 +2000-06-13,74,92,56 +2000-06-14,86,105,67 +2000-06-15,68,79,57 +2000-06-16,66,75,57 +2000-06-17,67,76,58 +2000-06-18,65,73,57 +2000-06-19,64,72,55 +2000-06-20,64,72,56 +2000-06-21,64,73,55 +2000-06-22,61,67,54 +2000-06-23,61,69,53 +2000-06-24,64,73,55 +2000-06-25,63,69,56 +2000-06-26,62,69,55 +2000-06-27,62,69,54 +2000-06-28,61,67,54 +2000-06-29,63,70,55 +2000-06-30,59,64,54 +2000-07-01,60,64,55 +2000-07-02,57,60,53 +2000-07-03,57,61,53 +2000-07-04,60,69,51 +2000-07-05,58,63,53 +2000-07-06,61,66,55 +2000-07-07,62,67,56 +2000-07-08,63,69,56 +2000-07-09,63,71,54 +2000-07-10,64,73,54 +2000-07-11,64,72,56 +2000-07-12,65,72,58 +2000-07-13,63,69,56 +2000-07-14,61,67,54 +2000-07-15,60,66,54 +2000-07-16,59,62,56 +2000-07-17,62,65,58 +2000-07-18,63,69,56 +2000-07-19,62,68,55 +2000-07-20,60,66,54 +2000-07-21,60,65,54 +2000-07-22,62,68,55 +2000-07-23,62,71,53 +2000-07-24,62,70,53 +2000-07-25,61,69,53 +2000-07-26,61,68,54 +2000-07-27,63,70,55 +2000-07-28,62,69,54 +2000-07-29,64,74,54 +2000-07-30,63,71,54 +2000-07-31,67,79,54 +2000-08-01,73,88,58 +2000-08-02,70,81,58 +2000-08-03,67,77,57 +2000-08-04,63,71,55 +2000-08-05,60,66,53 +2000-08-06,60,65,55 +2000-08-07,61,65,56 +2000-08-08,62,67,57 +2000-08-09,,69,58 +2000-08-10,66,74,57 +2000-08-11,67,79,54 +2000-08-12,63,70,55 +2000-08-13,63,72,53 +2000-08-14,65,75,55 +2000-08-15,64,74,54 +2000-08-16,66,78,53 +2000-08-17,62,70,53 +2000-08-18,61,68,54 +2000-08-19,62,69,54 +2000-08-20,63,73,53 +2000-08-21,62,70,53 +2000-08-22,65,74,55 +2000-08-23,63,69,57 +2000-08-24,65,75,55 +2000-08-25,63,73,53 +2000-08-26,62,70,54 +2000-08-27,63,71,54 +2000-08-28,65,75,55 +2000-08-29,60,63,56 +2000-08-30,66,71,60 +2000-08-31,63,67,58 +2000-09-01,61,63,59 +2000-09-02,64,70,58 +2000-09-03,63,69,56 +2000-09-04,62,68,56 +2000-09-05,64,76,51 +2000-09-06,69,84,54 +2000-09-07,72,87,57 +2000-09-08,65,73,56 +2000-09-09,65,75,54 +2000-09-10,61,71,51 +2000-09-11,64,74,54 +2000-09-12,63,74,52 +2000-09-13,72,81,63 +2000-09-14,68,74,61 +2000-09-15,64,69,58 +2000-09-16,64,71,57 +2000-09-17,74,91,57 +2000-09-18,77,91,63 +2000-09-19,78,93,63 +2000-09-20,71,79,63 +2000-09-21,68,73,62 +2000-09-22,62,67,57 +2000-09-23,65,75,55 +2000-09-24,64,74,54 +2000-09-25,68,79,56 +2000-09-26,64,70,58 +2000-09-27,65,71,58 +2000-09-28,59,62,56 +2000-09-29,64,74,53 +2000-09-30,71,85,57 +2000-10-01,66,75,57 +2000-10-02,61,67,55 +2000-10-03,60,68,52 +2000-10-04,61,67,55 +2000-10-05,60,65,54 +2000-10-06,59,65,53 +2000-10-07,62,68,55 +2000-10-08,60,67,53 +2000-10-09,62,66,58 +2000-10-10,59,63,55 +2000-10-11,58,63,52 +2000-10-12,58,66,50 +2000-10-13,60,68,51 +2000-10-14,60,67,52 +2000-10-15,60,65,54 +2000-10-16,63,76,50 +2000-10-17,62,69,54 +2000-10-18,59,64,54 +2000-10-19,62,69,54 +2000-10-20,59,67,51 +2000-10-21,60,67,53 +2000-10-22,63,70,55 +2000-10-23,63,75,51 +2000-10-24,,73,52 +2000-10-25,63,73,52 +2000-10-26,56,58,54 +2000-10-27,59,64,53 +2000-10-28,56,60,52 +2000-10-29,57,61,53 +2000-10-30,57,61,52 +2000-10-31,57,67,47 +2000-11-01,54,61,47 +2000-11-02,57,66,48 +2000-11-03,61,70,52 +2000-11-04,56,62,49 +2000-11-05,58,62,53 +2000-11-06,58,65,51 +2000-11-07,61,69,52 +2000-11-08,54,60,48 +2000-11-09,53,57,48 +2000-11-10,50,55,45 +2000-11-11,49,57,40 +2000-11-12,49,58,40 +2000-11-13,48,56,40 +2000-11-14,48,56,40 +2000-11-15,50,55,44 +2000-11-16,52,57,46 +2000-11-17,50,59,41 +2000-11-18,48,57,39 +2000-11-19,51,59,43 +2000-11-20,51,61,40 +2000-11-21,52,56,48 +2000-11-22,53,56,49 +2000-11-23,52,55,48 +2000-11-24,56,58,48 +2000-11-25,51,56,46 +2000-11-26,52,56,47 +2000-11-27,52,58,46 +2000-11-28,53,60,46 +2000-11-29,56,61,50 +2000-11-30,51,55,46 +2000-12-01,51,58,44 +2000-12-02,50,58,41 +2000-12-03,51,58,44 +2000-12-04,53,60,45 +2000-12-05,55,61,48 +2000-12-06,51,55,46 +2000-12-07,54,58,50 +2000-12-08,57,63,51 +2000-12-09,54,56,52 +2000-12-10,52,56,47 +2000-12-11,51,54,47 +2000-12-12,52,56,48 +2000-12-13,53,58,48 +2000-12-14,54,57,51 +2000-12-15,55,59,51 +2000-12-16,53,61,45 +2000-12-17,54,63,44 +2000-12-18,52,58,45 +2000-12-19,53,63,42 +2000-12-20,51,58,44 +2000-12-21,50,58,41 +2000-12-22,57,58,49 +2000-12-23,48,53,43 +2000-12-24,51,57,44 +2000-12-25,50,59,40 +2000-12-26,50,58,42 +2000-12-27,50,57,42 +2000-12-28,50,59,41 +2000-12-29,49,57,41 +2000-12-30,49,58,40 +2000-12-31,49,53,44 +2001-01-01,50,59,41 +2001-01-02,50,60,39 +2001-01-03,49,57,41 +2001-01-04,50,58,41 +2001-01-05,50,60,40 +2001-01-06,48,56,39 +2001-01-07,51,58,43 +2001-01-08,52,56,48 +2001-01-09,48,52,44 +2001-01-10,52,57,47 +2001-01-11,48,51,45 +2001-01-12,51,54,47 +2001-01-13,52,55,48 +2001-01-14,49,54,43 +2001-01-15,49,56,42 +2001-01-16,47,53,41 +2001-01-17,46,55,37 +2001-01-18,47,54,39 +2001-01-19,50,55,45 +2001-01-20,47,54,40 +2001-01-21,47,55,39 +2001-01-22,50,60,39 +2001-01-23,52,56,48 +2001-01-24,50,55,45 +2001-01-25,48,54,42 +2001-01-26,47,53,41 +2001-01-27,47,57,37 +2001-01-28,46,54,38 +2001-01-29,50,55,44 +2001-01-30,46,53,38 +2001-01-31,49,58,39 +2001-02-01,47,55,39 +2001-02-02,49,56,41 +2001-02-03,54,63,45 +2001-02-04,60,71,48 +2001-02-05,55,63,47 +2001-02-06,50,53,46 +2001-02-07,49,55,42 +2001-02-08,49,56,41 +2001-02-09,48,53,43 +2001-02-10,48,52,43 +2001-02-11,47,51,42 +2001-02-12,47,54,39 +2001-02-13,48,57,38 +2001-02-14,49,55,42 +2001-02-15,48,55,41 +2001-02-16,53,59,46 +2001-02-17,54,59,48 +2001-02-18,54,57,50 +2001-02-19,54,59,49 +2001-02-20,54,57,50 +2001-02-21,55,59,50 +2001-02-22,50,54,46 +2001-02-23,49,53,44 +2001-02-24,50,55,44 +2001-02-25,52,55,48 +2001-02-26,53,60,45 +2001-02-27,55,67,43 +2001-02-28,55,62,48 +2001-03-01,50,57,42 +2001-03-02,51,56,46 +2001-03-03,49,55,42 +2001-03-04,55,60,49 +2001-03-05,55,60,49 +2001-03-06,58,64,52 +2001-03-07,55,59,50 +2001-03-08,54,58,50 +2001-03-09,51,57,45 +2001-03-10,53,60,46 +2001-03-11,53,62,43 +2001-03-12,55,65,44 +2001-03-13,53,59,47 +2001-03-14,55,64,45 +2001-03-15,52,57,47 +2001-03-16,55,60,49 +2001-03-17,56,63,48 +2001-03-18,60,72,48 +2001-03-19,63,76,50 +2001-03-20,65,74,55 +2001-03-21,58,63,52 +2001-03-22,59,64,53 +2001-03-23,57,61,53 +2001-03-24,61,69,52 +2001-03-25,58,63,52 +2001-03-26,55,62,48 +2001-03-27,56,65,47 +2001-03-28,56,60,51 +2001-03-29,55,60,50 +2001-03-30,61,73,49 +2001-03-31,59,68,50 +2001-04-01,53,58,48 +2001-04-02,51,57,45 +2001-04-03,49,55,42 +2001-04-04,52,60,43 +2001-04-05,54,61,46 +2001-04-06,51,55,46 +2001-04-07,50,55,45 +2001-04-08,50,56,44 +2001-04-09,51,58,43 +2001-04-10,53,57,48 +2001-04-11,53,58,47 +2001-04-12,52,61,42 +2001-04-13,51,55,46 +2001-04-14,51,57,44 +2001-04-15,51,59,42 +2001-04-16,56,65,46 +2001-04-17,62,70,53 +2001-04-18,58,65,50 +2001-04-19,54,58,50 +2001-04-20,52,57,46 +2001-04-21,51,60,42 +2001-04-22,55,59,50 +2001-04-23,59,69,48 +2001-04-24,63,76,50 +2001-04-25,59,69,49 +2001-04-26,53,57,49 +2001-04-27,54,59,49 +2001-04-28,56,61,50 +2001-04-29,56,63,48 +2001-04-30,56,62,50 +2001-05-01,0,65,50 +2001-05-02,0,73,53 +2001-05-03,68,78,58 +2001-05-04,65,77,52 +2001-05-05,62,72,52 +2001-05-06,65,79,50 +2001-05-07,71,87,55 +2001-05-08,71,86,56 +2001-05-09,60,68,52 +2001-05-10,64,76,51 +2001-05-11,63,71,54 +2001-05-12,59,65,53 +2001-05-13,57,61,52 +2001-05-14,59,65,53 +2001-05-15,63,71,55 +2001-05-16,60,68,52 +2001-05-17,60,69,51 +2001-05-18,61,71,51 +2001-05-19,64,74,53 +2001-05-20,65,77,53 +2001-05-21,64,76,52 +2001-05-22,62,70,53 +2001-05-23,60,69,51 +2001-05-24,59,67,51 +2001-05-25,57,63,51 +2001-05-26,56,61,51 +2001-05-27,57,62,51 +2001-05-28,57,62,52 +2001-05-29,63,74,51 +2001-05-30,76,95,56 +2001-05-31,77,91,63 +2001-06-01,60,67,53 +2001-06-02,57,62,51 +2001-06-03,59,66,51 +2001-06-04,58,65,50 +2001-06-05,62,71,52 +2001-06-06,63,73,52 +2001-06-07,68,82,54 +2001-06-08,59,65,53 +2001-06-09,59,64,53 +2001-06-10,58,63,53 +2001-06-11,59,64,53 +2001-06-12,59,66,52 +2001-06-13,64,77,50 +2001-06-14,69,84,54 +2001-06-15,62,71,53 +2001-06-16,66,80,52 +2001-06-17,64,74,53 +2001-06-18,68,82,54 +2001-06-19,70,82,57 +2001-06-20,73,87,58 +2001-06-21,69,82,56 +2001-06-22,62,70,54 +2001-06-23,59,65,53 +2001-06-24,59,65,53 +2001-06-25,61,67,55 +2001-06-26,64,73,54 +2001-06-27,67,72,61 +2001-06-28,62,68,55 +2001-06-29,63,73,53 +2001-06-30,62,68,55 +2001-07-01,64,73,54 +2001-07-02,68,82,54 +2001-07-03,73,87,59 +2001-07-04,63,69,56 +2001-07-05,62,70,54 +2001-07-06,62,69,54 +2001-07-07,61,69,53 +2001-07-08,63,70,55 +2001-07-09,63,68,57 +2001-07-10,65,72,57 +2001-07-11,63,68,57 +2001-07-12,63,69,56 +2001-07-13,61,67,55 +2001-07-14,58,60,55 +2001-07-15,61,67,55 +2001-07-16,60,64,56 +2001-07-17,63,71,54 +2001-07-18,63,72,54 +2001-07-19,60,63,56 +2001-07-20,60,64,56 +2001-07-21,60,65,55 +2001-07-22,63,71,54 +2001-07-23,62,69,54 +2001-07-24,66,75,56 +2001-07-25,66,74,58 +2001-07-26,64,72,56 +2001-07-27,62,69,54 +2001-07-28,63,72,53 +2001-07-29,64,71,57 +2001-07-30,62,66,57 +2001-07-31,64,72,56 +2001-08-01,65,75,55 +2001-08-02,61,67,55 +2001-08-03,62,67,56 +2001-08-04,66,71,60 +2001-08-05,64,71,57 +2001-08-06,63,68,58 +2001-08-07,67,76,57 +2001-08-08,64,70,57 +2001-08-09,66,73,58 +2001-08-10,65,69,60 +2001-08-11,62,67,57 +2001-08-12,71,68,57 +2001-08-13,,66,57 +2001-08-14,61,66,55 +2001-08-15,61,66,55 +2001-08-16,62,70,53 +2001-08-17,65,74,55 +2001-08-18,62,69,54 +2001-08-19,59,64,54 +2001-08-20,58,60,56 +2001-08-21,59,65,53 +2001-08-22,65,71,59 +2001-08-23,68,76,60 +2001-08-24,62,68,56 +2001-08-25,62,70,54 +2001-08-26,64,73,55 +2001-08-27,68,79,56 +2001-08-28,65,74,55 +2001-08-29,65,73,56 +2001-08-30,64,70,58 +2001-08-31,65,73,56 +2001-09-01,64,71,56 +2001-09-02,63,72,54 +2001-09-03,65,73,57 +2001-09-04,63,70,56 +2001-09-05,62,68,56 +2001-09-06,67,80,53 +2001-09-07,65,75,54 +2001-09-08,64,72,55 +2001-09-09,65,72,57 +2001-09-10,67,76,58 +2001-09-11,65,73,57 +2001-09-12,61,65,57 +2001-09-13,61,66,55 +2001-09-14,63,71,54 +2001-09-15,59,63,55 +2001-09-16,58,60,56 +2001-09-17,61,67,55 +2001-09-18,60,65,54 +2001-09-19,61,68,54 +2001-09-20,61,67,54 +2001-09-21,60,66,53 +2001-09-22,60,68,51 +2001-09-23,59,65,53 +2001-09-24,62,68,55 +2001-09-25,64,71,57 +2001-09-26,66,75,56 +2001-09-27,62,66,58 +2001-09-28,63,69,57 +2001-09-29,66,78,54 +2001-09-30,75,94,56 +2001-10-01,67,75,58 +2001-10-02,62,67,57 +2001-10-03,64,72,55 +2001-10-04,62,69,55 +2001-10-05,62,65,59 +2001-10-06,61,65,56 +2001-10-07,60,65,55 +2001-10-08,61,67,54 +2001-10-09,64,75,52 +2001-10-10,65,78,51 +2001-10-11,63,69,56 +2001-10-12,71,87,54 +2001-10-13,72,87,56 +2001-10-14,74,89,58 +2001-10-15,68,80,56 +2001-10-16,60,65,55 +2001-10-17,62,68,56 +2001-10-18,62,71,53 +2001-10-19,60,69,51 +2001-10-20,57,61,52 +2001-10-21,55,57,53 +2001-10-22,58,67,49 +2001-10-23,61,67,54 +2001-10-24,63,75,50 +2001-10-25,66,80,51 +2001-10-26,58,64,51 +2001-10-27,61,66,55 +2001-10-28,61,65,56 +2001-10-29,63,66,60 +2001-10-30,61,63,58 +2001-10-31,59,66,52 +2001-11-01,57,65,49 +2001-11-02,60,69,50 +2001-11-03,59,67,51 +2001-11-04,60,70,50 +2001-11-05,58,68,48 +2001-11-06,54,59,49 +2001-11-07,57,69,45 +2001-11-08,61,75,47 +2001-11-09,62,72,51 +2001-11-10,58,65,51 +2001-11-11,65,70,59 +2001-11-12,60,64,55 +2001-11-13,58,63,52 +2001-11-14,61,66,56 +2001-11-15,59,62,55 +2001-11-16,59,64,53 +2001-11-17,56,61,50 +2001-11-18,56,63,48 +2001-11-19,59,65,52 +2001-11-20,64,68,59 +2001-11-21,62,64,60 +2001-11-22,60,64,55 +2001-11-23,56,59,53 +2001-11-24,55,62,47 +2001-11-25,51,56,45 +2001-11-26,50,56,44 +2001-11-27,52,56,47 +2001-11-28,52,56,48 +2001-11-29,54,58,50 +2001-11-30,50,56,44 +2001-12-01,53,56,50 +2001-12-02,54,60,48 +2001-12-03,52,56,47 +2001-12-04,50,56,43 +2001-12-05,52,57,47 +2001-12-06,56,59,53 +2001-12-07,55,61,49 +2001-12-08,51,56,45 +2001-12-09,53,56,49 +2001-12-10,50,57,42 +2001-12-11,51,56,45 +2001-12-12,51,55,47 +2001-12-13,49,54,44 +2001-12-14,50,54,45 +2001-12-15,49,54,43 +2001-12-16,51,56,45 +2001-12-17,53,58,47 +2001-12-18,49,56,42 +2001-12-19,50,56,44 +2001-12-20,51,54,48 +2001-12-21,50,52,48 +2001-12-22,52,55,49 +2001-12-23,51,55,47 +2001-12-24,48,53,43 +2001-12-25,50,54,46 +2001-12-26,53,55,51 +2001-12-27,54,59,48 +2001-12-28,54,56,51 +2001-12-29,53,56,50 +2001-12-30,55,57,53 +2001-12-31,57,60,54 +2002-01-01,57,61,53 +2002-01-02,56,60,52 +2002-01-03,51,56,46 +2002-01-04,50,57,43 +2002-01-05,50,54,46 +2002-01-06,54,57,50 +2002-01-07,51,53,49 +2002-01-08,54,57,50 +2002-01-09,57,62,52 +2002-01-10,55,63,46 +2002-01-11,51,58,44 +2002-01-12,50,53,47 +2002-01-13,50,57,42 +2002-01-14,49,52,46 +2002-01-15,49,55,42 +2002-01-16,47,55,39 +2002-01-17,47,51,42 +2002-01-18,47,56,37 +2002-01-19,48,56,40 +2002-01-20,47,56,38 +2002-01-21,49,54,44 +2002-01-22,46,51,41 +2002-01-23,46,56,36 +2002-01-24,46,54,37 +2002-01-25,47,53,40 +2002-01-26,49,52,45 +2002-01-27,46,50,41 +2002-01-28,44,49,38 +2002-01-29,43,49,37 +2002-01-30,44,52,35 +2002-01-31,46,55,36 +2002-02-01,47,55,39 +2002-02-02,47,55,38 +2002-02-03,49,57,41 +2002-02-04,49,58,40 +2002-02-05,49,56,41 +2002-02-06,50,57,42 +2002-02-07,54,59,49 +2002-02-08,50,58,41 +2002-02-09,51,60,41 +2002-02-10,53,64,42 +2002-02-11,53,61,45 +2002-02-12,54,63,44 +2002-02-13,51,54,48 +2002-02-14,53,59,46 +2002-02-15,55,58,51 +2002-02-16,53,59,47 +2002-02-17,50,54,46 +2002-02-18,51,55,47 +2002-02-19,54,57,50 +2002-02-20,57,61,52 +2002-02-21,58,64,52 +2002-02-22,62,73,51 +2002-02-23,54,57,50 +2002-02-24,54,63,45 +2002-02-25,58,70,46 +2002-02-26,59,69,48 +2002-02-27,63,74,51 +2002-02-28,61,72,49 +2002-03-01,58,65,51 +2002-03-02,55,65,45 +2002-03-03,56,68,44 +2002-03-04,54,63,45 +2002-03-05,54,60,47 +2002-03-06,57,60,54 +2002-03-07,51,56,45 +2002-03-08,47,55,38 +2002-03-09,50,59,41 +2002-03-10,55,59,51 +2002-03-11,55,60,50 +2002-03-12,54,58,50 +2002-03-13,51,54,47 +2002-03-14,50,57,42 +2002-03-15,50,55,44 +2002-03-16,50,54,46 +2002-03-17,47,51,43 +2002-03-18,51,58,43 +2002-03-19,54,66,41 +2002-03-20,58,69,46 +2002-03-21,57,63,50 +2002-03-22,55,58,51 +2002-03-23,55,60,50 +2002-03-24,53,57,49 +2002-03-25,51,57,44 +2002-03-26,57,67,46 +2002-03-27,59,72,46 +2002-03-28,58,68,47 +2002-03-29,57,64,50 +2002-03-30,60,71,49 +2002-03-31,56,66,46 +2002-04-01,56,65,46 +2002-04-02,58,64,51 +2002-04-03,56,60,52 +2002-04-04,57,59,54 +2002-04-05,57,62,51 +2002-04-06,57,62,52 +2002-04-07,58,65,51 +2002-04-08,57,64,50 +2002-04-09,58,62,53 +2002-04-10,60,65,54 +2002-04-11,59,65,53 +2002-04-12,63,74,52 +2002-04-13,64,76,52 +2002-04-14,60,69,50 +2002-04-15,54,59,48 +2002-04-16,52,56,48 +2002-04-17,52,57,46 +2002-04-18,52,59,45 +2002-04-19,58,68,47 +2002-04-20,54,60,48 +2002-04-21,57,66,47 +2002-04-22,63,76,50 +2002-04-23,63,76,49 +2002-04-24,61,68,54 +2002-04-25,57,62,52 +2002-04-26,54,57,51 +2002-04-27,54,59,48 +2002-04-28,53,60,45 +2002-04-29,52,58,46 +2002-04-30,53,58,47 +2002-05-01,56,61,50 +2002-05-02,53,56,50 +2002-05-03,54,58,50 +2002-05-04,56,63,49 +2002-05-05,58,68,48 +2002-05-06,55,59,50 +2002-05-07,56,62,49 +2002-05-08,59,70,47 +2002-05-09,55,60,49 +2002-05-10,55,60,49 +2002-05-11,62,76,47 +2002-05-12,58,66,49 +2002-05-13,56,61,50 +2002-05-14,58,65,50 +2002-05-15,57,61,52 +2002-05-16,56,61,50 +2002-05-17,58,64,51 +2002-05-18,55,60,50 +2002-05-19,56,60,52 +2002-05-20,57,61,52 +2002-05-21,57,62,51 +2002-05-22,58,64,51 +2002-05-23,62,75,49 +2002-05-24,65,78,52 +2002-05-25,60,69,51 +2002-05-26,59,64,53 +2002-05-27,60,67,53 +2002-05-28,62,68,55 +2002-05-29,68,78,58 +2002-05-30,61,66,55 +2002-05-31,64,74,54 +2002-06-01,56,59,53 +2002-06-02,57,62,52 +2002-06-03,58,65,51 +2002-06-04,64,73,54 +2002-06-05,71,86,56 +2002-06-06,62,69,54 +2002-06-07,58,64,52 +2002-06-08,62,72,52 +2002-06-09,63,75,51 +2002-06-10,72,83,61 +2002-06-11,68,80,56 +2002-06-12,64,73,54 +2002-06-13,58,63,52 +2002-06-14,58,63,52 +2002-06-15,58,64,51 +2002-06-16,60,68,52 +2002-06-17,62,70,53 +2002-06-18,0,66,55 +2002-06-19,61,69,53 +2002-06-20,57,60,53 +2002-06-21,55,58,52 +2002-06-22,63,73,53 +2002-06-23,60,66,53 +2002-06-24,60,68,52 +2002-06-25,62,72,52 +2002-06-26,63,71,54 +2002-06-27,62,68,55 +2002-06-28,61,68,54 +2002-06-29,65,72,57 +2002-06-30,67,78,56 +2002-07-01,68,79,56 +2002-07-02,66,75,56 +2002-07-03,61,68,53 +2002-07-04,60,66,54 +2002-07-05,60,65,54 +2002-07-06,62,70,54 +2002-07-07,63,69,56 +2002-07-08,67,82,52 +2002-07-09,74,90,58 +2002-07-10,66,76,55 +2002-07-11,65,76,54 +2002-07-12,66,74,57 +2002-07-13,63,69,56 +2002-07-14,62,68,56 +2002-07-15,59,64,54 +2002-07-16,63,70,55 +2002-07-17,62,69,55 +2002-07-18,62,69,55 +2002-07-19,64,73,55 +2002-07-20,65,74,55 +2002-07-21,65,72,58 +2002-07-22,64,71,56 +2002-07-23,63,73,53 +2002-07-24,64,71,56 +2002-07-25,63,68,57 +2002-07-26,64,71,57 +2002-07-27,66,75,56 +2002-07-28,67,75,59 +2002-07-29,64,69,59 +2002-07-30,64,70,58 +2002-07-31,65,73,57 +2002-08-01,67,72,61 +2002-08-02,67,74,60 +2002-08-03,64,70,57 +2002-08-04,62,69,54 +2002-08-05,65,72,57 +2002-08-06,64,72,55 +2002-08-07,69,83,54 +2002-08-08,73,89,56 +2002-08-09,78,94,62 +2002-08-10,71,85,57 +2002-08-11,63,72,54 +2002-08-12,62,70,54 +2002-08-13,63,70,56 +2002-08-14,65,71,58 +2002-08-15,64,69,58 +2002-08-16,65,71,58 +2002-08-17,61,65,56 +2002-08-18,63,69,56 +2002-08-19,58,59,56 +2002-08-20,62,72,52 +2002-08-21,62,67,56 +2002-08-22,61,67,55 +2002-08-23,57,60,54 +2002-08-24,58,62,53 +2002-08-25,61,66,55 +2002-08-26,67,79,54 +2002-08-27,71,85,57 +2002-08-28,67,75,58 +2002-08-29,66,72,59 +2002-08-30,64,70,57 +2002-08-31,65,73,56 +2002-09-01,73,91,54 +2002-09-02,76,92,60 +2002-09-03,63,69,57 +2002-09-04,63,70,56 +2002-09-05,64,70,57 +2002-09-06,62,68,56 +2002-09-07,60,66,54 +2002-09-08,64,77,51 +2002-09-09,69,85,53 +2002-09-10,72,87,56 +2002-09-11,62,69,54 +2002-09-12,60,66,54 +2002-09-13,60,65,54 +2002-09-14,61,67,54 +2002-09-15,64,70,58 +2002-09-16,63,70,56 +2002-09-17,64,71,57 +2002-09-18,70,84,56 +2002-09-19,76,91,60 +2002-09-20,75,88,61 +2002-09-21,63,71,55 +2002-09-22,64,72,56 +2002-09-23,68,81,55 +2002-09-24,62,71,53 +2002-09-25,62,70,54 +2002-09-26,62,71,53 +2002-09-27,61,63,58 +2002-09-28,63,69,56 +2002-09-29,62,69,54 +2002-09-30,61,68,54 +2002-10-01,61,69,53 +2002-10-02,65,75,54 +2002-10-03,64,77,50 +2002-10-04,66,78,53 +2002-10-05,70,85,55 +2002-10-06,74,88,59 +2002-10-07,75,88,61 +2002-10-08,71,84,58 +2002-10-09,61,67,54 +2002-10-10,60,65,55 +2002-10-11,64,75,52 +2002-10-12,63,74,52 +2002-10-13,63,75,50 +2002-10-14,60,66,53 +2002-10-15,57,63,51 +2002-10-16,58,64,51 +2002-10-17,59,63,54 +2002-10-18,60,64,55 +2002-10-19,61,66,56 +2002-10-20,60,66,53 +2002-10-21,57,63,51 +2002-10-22,58,61,54 +2002-10-23,55,56,54 +2002-10-24,58,60,55 +2002-10-25,61,68,54 +2002-10-26,58,63,52 +2002-10-27,58,68,47 +2002-10-28,60,71,48 +2002-10-29,58,68,47 +2002-10-30,58,65,50 +2002-10-31,55,67,43 +2002-11-01,57,68,45 +2002-11-02,57,68,45 +2002-11-03,61,71,50 +2002-11-04,55,60,49 +2002-11-05,56,64,47 +2002-11-06,57,65,49 +2002-11-07,62,67,56 +2002-11-08,61,65,57 +2002-11-09,58,64,52 +2002-11-10,59,63,54 +2002-11-11,58,66,49 +2002-11-12,58,64,52 +2002-11-13,59,64,53 +2002-11-14,59,69,49 +2002-11-15,59,64,54 +2002-11-16,56,62,50 +2002-11-17,58,65,51 +2002-11-18,59,65,47 +2002-11-19,56,64,47 +2002-11-20,59,68,50 +2002-11-21,61,68,53 +2002-11-22,54,58,49 +2002-11-23,56,57,55 +2002-11-24,56,61,50 +2002-11-25,61,69,52 +2002-11-26,61,70,51 +2002-11-27,60,69,50 +2002-11-28,56,66,46 +2002-11-29,53,60,46 +2002-11-30,53,59,46 +2002-12-01,57,62,51 +2002-12-02,54,61,47 +2002-12-03,53,60,45 +2002-12-04,53,60,46 +2002-12-05,54,60,47 +2002-12-06,52,56,48 +2002-12-07,53,60,45 +2002-12-08,53,59,46 +2002-12-09,54,58,50 +2002-12-10,56,60,51 +2002-12-11,53,58,48 +2002-12-12,55,59,50 +2002-12-13,59,62,56 +2002-12-14,60,64,55 +2002-12-15,58,61,55 +2002-12-16,55,60,50 +2002-12-17,50,55,45 +2002-12-18,49,55,42 +2002-12-19,47,51,42 +2002-12-20,51,56,45 +2002-12-21,52,56,48 +2002-12-22,49,57,40 +2002-12-23,48,55,41 +2002-12-24,48,54,41 +2002-12-25,46,50,41 +2002-12-26,53,59,47 +2002-12-27,57,60,53 +2002-12-28,54,60,48 +2002-12-29,51,55,47 +2002-12-30,51,55,47 +2002-12-31,51,57,45 +2003-01-01,48,53,42 +2003-01-02,51,55,46 +2003-01-03,51,56,46 +2003-01-04,53,59,47 +2003-01-05,54,59,49 +2003-01-06,57,66,48 +2003-01-07,54,65,43 +2003-01-08,49,55,43 +2003-01-09,52,54,50 +2003-01-10,57,61,53 +2003-01-11,55,57,52 +2003-01-12,58,62,53 +2003-01-13,56,60,52 +2003-01-14,55,58,52 +2003-01-15,55,60,49 +2003-01-16,54,62,45 +2003-01-17,51,59,43 +2003-01-18,50,55,44 +2003-01-19,49,52,46 +2003-01-20,49,51,46 +2003-01-21,53,56,49 +2003-01-22,57,62,52 +2003-01-23,57,59,54 +2003-01-24,56,57,54 +2003-01-25,59,63,54 +2003-01-26,57,60,53 +2003-01-27,58,63,53 +2003-01-28,56,62,49 +2003-01-29,55,62,48 +2003-01-30,55,60,50 +2003-01-31,55,60,49 +2003-02-01,54,59,49 +2003-02-02,53,60,46 +2003-02-03,52,61,42 +2003-02-04,53,62,43 +2003-02-05,53,60,45 +2003-02-06,48,57,39 +2003-02-07,51,58,44 +2003-02-08,47,57,36 +2003-02-09,48,58,37 +2003-02-10,49,59,39 +2003-02-11,52,58,46 +2003-02-12,51,54,47 +2003-02-13,57,61,53 +2003-02-14,55,57,52 +2003-02-15,55,59,50 +2003-02-16,53,59,46 +2003-02-17,52,58,45 +2003-02-18,51,59,43 +2003-02-19,52,56,48 +2003-02-20,52,61,43 +2003-02-21,54,63,45 +2003-02-22,56,65,46 +2003-02-23,53,60,46 +2003-02-24,55,58,51 +2003-02-25,55,59,50 +2003-02-26,52,55,49 +2003-02-27,52,59,45 +2003-02-28,51,59,43 +2003-03-01,56,61,51 +2003-03-02,53,61,44 +2003-03-03,51,56,46 +2003-03-04,51,58,43 +2003-03-05,53,62,43 +2003-03-06,54,62,45 +2003-03-07,54,58,49 +2003-03-08,53,60,46 +2003-03-09,53,61,45 +2003-03-10,57,65,48 +2003-03-11,57,63,51 +2003-03-12,59,64,53 +2003-03-13,58,63,53 +2003-03-14,62,66,57 +2003-03-15,56,61,50 +2003-03-16,54,59,49 +2003-03-17,55,59,50 +2003-03-18,54,61,47 +2003-03-19,56,62,50 +2003-03-20,56,60,51 +2003-03-21,56,62,49 +2003-03-22,56,61,51 +2003-03-23,55,59,51 +2003-03-24,53,60,46 +2003-03-25,57,66,47 +2003-03-26,56,61,51 +2003-03-27,55,62,47 +2003-03-28,65,71,58 +2003-03-29,62,75,49 +2003-03-30,64,75,52 +2003-03-31,58,63,52 +2003-04-01,54,58,49 +2003-04-02,51,56,46 +2003-04-03,50,57,42 +2003-04-04,52,56,47 +2003-04-05,50,57,43 +2003-04-06,54,59,49 +2003-04-07,57,64,49 +2003-04-08,59,69,48 +2003-04-09,58,66,50 +2003-04-10,58,64,51 +2003-04-11,55,63,47 +2003-04-12,55,59,51 +2003-04-13,53,58,48 +2003-04-14,53,58,47 +2003-04-15,54,59,48 +2003-04-16,55,58,51 +2003-04-17,56,60,51 +2003-04-18,56,61,50 +2003-04-19,57,68,46 +2003-04-20,56,60,51 +2003-04-21,52,56,48 +2003-04-22,54,59,48 +2003-04-23,56,61,50 +2003-04-24,53,58,48 +2003-04-25,54,58,50 +2003-04-26,54,61,46 +2003-04-27,55,64,46 +2003-04-28,55,60,50 +2003-04-29,55,59,50 +2003-04-30,56,62,49 +2003-05-01,61,69,52 +2003-05-02,60,64,55 +2003-05-03,59,63,54 +2003-05-04,57,61,53 +2003-05-05,56,61,50 +2003-05-06,56,60,51 +2003-05-07,56,60,51 +2003-05-08,55,59,50 +2003-05-09,55,61,48 +2003-05-10,56,65,47 +2003-05-11,56,63,49 +2003-05-12,59,69,49 +2003-05-13,58,64,52 +2003-05-14,57,60,53 +2003-05-15,56,61,50 +2003-05-16,56,64,48 +2003-05-17,57,65,49 +2003-05-18,59,70,48 +2003-05-19,66,80,51 +2003-05-20,67,81,53 +2003-05-21,60,68,52 +2003-05-22,57,63,50 +2003-05-23,60,67,52 +2003-05-24,58,63,52 +2003-05-25,63,70,55 +2003-05-26,60,66,53 +2003-05-27,68,81,54 +2003-05-28,69,82,55 +2003-05-29,61,67,54 +2003-05-30,59,65,53 +2003-05-31,58,65,51 +2003-06-01,61,71,51 +2003-06-02,67,80,54 +2003-06-03,63,72,53 +2003-06-04,64,72,56 +2003-06-05,63,70,55 +2003-06-06,63,70,56 +2003-06-07,60,65,55 +2003-06-08,59,64,53 +2003-06-09,62,69,54 +2003-06-10,61,67,54 +2003-06-11,57,59,54 +2003-06-12,57,59,54 +2003-06-13,60,65,55 +2003-06-14,60,66,54 +2003-06-15,62,70,53 +2003-06-16,63,73,53 +2003-06-17,58,62,54 +2003-06-18,59,66,52 +2003-06-19,58,63,52 +2003-06-20,60,66,53 +2003-06-21,59,65,52 +2003-06-22,59,67,50 +2003-06-23,58,65,51 +2003-06-24,66,80,51 +2003-06-25,75,93,56 +2003-06-26,81,96,65 +2003-06-27,82,97,67 +2003-06-28,67,78,56 +2003-06-29,62,69,55 +2003-06-30,0,70,58 +2003-07-01,61,67,55 +2003-07-02,61,68,53 +2003-07-03,60,67,52 +2003-07-04,63,74,52 +2003-07-05,59,64,54 +2003-07-06,57,60,53 +2003-07-07,59,65,52 +2003-07-08,62,70,53 +2003-07-09,64,75,53 +2003-07-10,61,69,53 +2003-07-11,61,68,53 +2003-07-12,65,74,56 +2003-07-13,65,72,57 +2003-07-14,69,83,55 +2003-07-15,62,70,53 +2003-07-16,64,72,55 +2003-07-17,70,84,55 +2003-07-18,64,74,54 +2003-07-19,63,70,56 +2003-07-20,71,84,58 +2003-07-21,65,72,58 +2003-07-22,64,73,55 +2003-07-23,63,71,54 +2003-07-24,65,73,57 +2003-07-25,64,71,56 +2003-07-26,64,71,56 +2003-07-27,63,70,55 +2003-07-28,61,67,54 +2003-07-29,60,66,53 +2003-07-30,66,75,56 +2003-07-31,65,72,57 +2003-08-01,67,73,61 +2003-08-02,68,76,59 +2003-08-03,66,73,59 +2003-08-04,70,74,65 +2003-08-05,69,77,61 +2003-08-06,67,72,61 +2003-08-07,67,73,61 +2003-08-08,67,73,61 +2003-08-09,67,73,60 +2003-08-10,68,74,61 +2003-08-11,66,73,59 +2003-08-12,65,72,57 +2003-08-13,65,73,57 +2003-08-14,66,72,59 +2003-08-15,65,72,57 +2003-08-16,67,78,55 +2003-08-17,66,76,56 +2003-08-18,65,71,59 +2003-08-19,66,71,60 +2003-08-20,69,77,60 +2003-08-21,69,75,62 +2003-08-22,70,76,63 +2003-08-23,69,78,59 +2003-08-24,74,88,60 +2003-08-25,74,86,61 +2003-08-26,67,75,58 +2003-08-27,63,68,58 +2003-08-28,61,65,56 +2003-08-29,62,69,54 +2003-08-30,61,67,54 +2003-08-31,62,70,54 +2003-09-01,63,72,54 +2003-09-02,64,72,56 +2003-09-03,68,75,61 +2003-09-04,67,73,60 +2003-09-05,65,72,58 +2003-09-06,64,72,56 +2003-09-07,63,68,58 +2003-09-08,65,73,56 +2003-09-09,66,73,58 +2003-09-10,68,78,57 +2003-09-11,74,89,59 +2003-09-12,80,95,65 +2003-09-13,78,94,62 +2003-09-14,65,72,57 +2003-09-15,66,75,57 +2003-09-16,62,68,55 +2003-09-17,66,77,54 +2003-09-18,71,86,56 +2003-09-19,69,81,57 +2003-09-20,72,87,56 +2003-09-21,78,95,60 +2003-09-22,76,90,62 +2003-09-23,66,72,59 +2003-09-24,64,69,58 +2003-09-25,61,64,58 +2003-09-26,63,68,58 +2003-09-27,61,65,57 +2003-09-28,63,67,58 +2003-09-29,64,69,58 +2003-09-30,61,68,54 +2003-10-01,61,66,56 +2003-10-02,59,63,54 +2003-10-03,61,68,54 +2003-10-04,61,66,56 +2003-10-05,64,73,54 +2003-10-06,62,71,52 +2003-10-07,61,67,54 +2003-10-08,64,69,58 +2003-10-09,62,68,55 +2003-10-10,60,69,51 +2003-10-11,59,69,49 +2003-10-12,64,74,53 +2003-10-13,65,79,51 +2003-10-14,61,69,52 +2003-10-15,57,63,51 +2003-10-16,64,74,53 +2003-10-17,65,76,53 +2003-10-18,62,69,55 +2003-10-19,64,74,54 +2003-10-20,65,75,54 +2003-10-21,67,80,54 +2003-10-22,62,68,55 +2003-10-23,66,76,55 +2003-10-24,69,85,52 +2003-10-25,71,87,59 +2003-10-26,74,89,59 +2003-10-27,72,86,58 +2003-10-28,72,85,58 +2003-10-29,61,69,53 +2003-10-30,55,60,50 +2003-10-31,53,57,48 +2003-11-01,55,61,48 +2003-11-02,52,58,45 +2003-11-03,53,57,48 +2003-11-04,51,58,44 +2003-11-05,51,56,45 +2003-11-06,58,61,54 +2003-11-07,57,62,52 +2003-11-08,62,67,56 +2003-11-09,59,64,53 +2003-11-10,58,64,51 +2003-11-11,57,66,47 +2003-11-12,59,68,50 +2003-11-13,57,63,50 +2003-11-14,57,61,52 +2003-11-15,53,57,49 +2003-11-16,53,61,44 +2003-11-17,56,61,50 +2003-11-18,56,64,48 +2003-11-19,57,64,49 +2003-11-20,55,59,50 +2003-11-21,50,57,43 +2003-11-22,48,56,39 +2003-11-23,49,57,41 +2003-11-24,50,56,43 +2003-11-25,49,57,41 +2003-11-26,53,59,46 +2003-11-27,52,57,46 +2003-11-28,53,56,50 +2003-11-29,52,56,48 +2003-11-30,53,54,51 +2003-12-01,56,59,52 +2003-12-02,57,62,52 +2003-12-03,54,58,49 +2003-12-04,50,54,46 +2003-12-05,59,64,53 +2003-12-06,59,64,54 +2003-12-07,54,58,49 +2003-12-08,49,56,42 +2003-12-09,51,56,46 +2003-12-10,56,59,52 +2003-12-11,51,56,46 +2003-12-12,51,56,45 +2003-12-13,58,62,54 +2003-12-14,51,57,44 +2003-12-15,47,54,40 +2003-12-16,47,55,38 +2003-12-17,51,58,43 +2003-12-18,52,58,45 +2003-12-19,54,59,48 +2003-12-20,54,57,51 +2003-12-21,54,58,50 +2003-12-22,52,57,46 +2003-12-23,54,57,50 +2003-12-24,59,64,54 +2003-12-25,51,54,47 +2003-12-26,47,53,41 +2003-12-27,44,50,38 +2003-12-28,44,50,38 +2003-12-29,53,57,48 +2003-12-30,50,53,47 +2003-12-31,50,54,45 +2004-01-01,50,56,44 +2004-01-02,46,52,40 +2004-01-03,45,50,39 +2004-01-04,43,50,35 +2004-01-05,47,53,40 +2004-01-06,48,51,45 +2004-01-07,52,57,47 +2004-01-08,56,61,50 +2004-01-09,56,61,50 +2004-01-10,56,59,52 +2004-01-11,54,61,46 +2004-01-12,50,54,46 +2004-01-13,51,55,46 +2004-01-14,48,50,46 +2004-01-15,51,55,46 +2004-01-16,52,53,50 +2004-01-17,52,54,49 +2004-01-18,52,55,48 +2004-01-19,52,54,50 +2004-01-20,51,56,46 +2004-01-21,51,58,44 +2004-01-22,50,59,40 +2004-01-23,48,53,43 +2004-01-24,52,55,48 +2004-01-25,49,55,42 +2004-01-26,51,55,46 +2004-01-27,53,57,49 +2004-01-28,50,57,43 +2004-01-29,50,52,48 +2004-01-30,53,56,49 +2004-01-31,48,55,40 +2004-02-01,49,52,46 +2004-02-02,51,55,47 +2004-02-03,51,54,48 +2004-02-04,52,57,47 +2004-02-05,50,58,42 +2004-02-06,52,58,45 +2004-02-07,49,56,42 +2004-02-08,49,58,39 +2004-02-09,50,61,39 +2004-02-10,55,62,47 +2004-02-11,51,61,40 +2004-02-12,53,63,42 +2004-02-13,53,61,45 +2004-02-14,54,58,50 +2004-02-15,55,61,48 +2004-02-16,56,61,51 +2004-02-17,61,65,57 +2004-02-18,54,58,50 +2004-02-19,51,55,46 +2004-02-20,52,55,48 +2004-02-21,51,54,47 +2004-02-22,53,57,49 +2004-02-23,54,59,48 +2004-02-24,55,60,50 +2004-02-25,54,59,48 +2004-02-26,52,56,48 +2004-02-27,51,56,46 +2004-02-28,51,58,43 +2004-02-29,51,55,47 +2004-03-01,52,54,49 +2004-03-02,55,65,45 +2004-03-03,54,59,48 +2004-03-04,54,60,48 +2004-03-05,53,59,47 +2004-03-06,56,64,48 +2004-03-07,61,74,47 +2004-03-08,64,79,49 +2004-03-09,64,75,53 +2004-03-10,67,78,56 +2004-03-11,65,77,52 +2004-03-12,61,71,50 +2004-03-13,63,74,51 +2004-03-14,63,77,49 +2004-03-15,67,81,52 +2004-03-16,70,82,57 +2004-03-17,69,82,55 +2004-03-18,65,77,52 +2004-03-19,59,68,50 +2004-03-20,63,78,47 +2004-03-21,59,64,53 +2004-03-22,56,60,52 +2004-03-23,56,61,51 +2004-03-24,60,67,53 +2004-03-25,55,61,49 +2004-03-26,52,59,45 +2004-03-27,57,62,52 +2004-03-28,61,73,49 +2004-03-29,59,65,53 +2004-03-30,54,59,49 +2004-03-31,53,59,47 +2004-04-01,55,65,44 +2004-04-02,63,71,55 +2004-04-03,60,69,50 +2004-04-04,54,57,51 +2004-04-05,55,59,50 +2004-04-06,55,60,49 +2004-04-07,57,66,47 +2004-04-08,57,63,50 +2004-04-09,59,70,48 +2004-04-10,59,70,47 +2004-04-11,55,61,49 +2004-04-12,56,60,51 +2004-04-13,57,64,50 +2004-04-14,59,66,52 +2004-04-15,54,59,49 +2004-04-16,55,63,47 +2004-04-17,55,61,48 +2004-04-18,53,58,48 +2004-04-19,57,62,51 +2004-04-20,60,65,55 +2004-04-21,57,62,51 +2004-04-22,60,73,47 +2004-04-23,64,76,51 +2004-04-24,67,81,52 +2004-04-25,71,87,55 +2004-04-26,75,90,59 +2004-04-27,72,87,56 +2004-04-28,62,69,54 +2004-04-29,65,77,53 +2004-04-30,60,68,51 +2004-05-01,63,76,50 +2004-05-02,69,83,54 +2004-05-03,61,71,51 +2004-05-04,59,66,52 +2004-05-05,59,65,52 +2004-05-06,60,67,53 +2004-05-07,64,71,56 +2004-05-08,61,69,53 +2004-05-09,60,67,53 +2004-05-10,58,64,52 +2004-05-11,57,63,51 +2004-05-12,60,70,49 +2004-05-13,60,68,52 +2004-05-14,60,67,52 +2004-05-15,58,64,52 +2004-05-16,58,64,52 +2004-05-17,60,65,54 +2004-05-18,60,65,54 +2004-05-19,58,65,51 +2004-05-20,58,63,53 +2004-05-21,59,62,56 +2004-05-22,59,62,55 +2004-05-23,60,65,54 +2004-05-24,61,66,55 +2004-05-25,62,69,55 +2004-05-26,64,73,55 +2004-05-27,64,69,58 +2004-05-28,61,67,54 +2004-05-29,60,67,52 +2004-05-30,62,72,52 +2004-05-31,62,70,53 +2004-06-01,62,70,53 +2004-06-02,60,67,53 +2004-06-03,59,64,53 +2004-06-04,59,64,53 +2004-06-05,62,69,54 +2004-06-06,61,68,54 +2004-06-07,59,65,53 +2004-06-08,57,63,51 +2004-06-09,59,67,51 +2004-06-10,59,64,54 +2004-06-11,59,65,52 +2004-06-12,60,67,52 +2004-06-13,62,71,53 +2004-06-14,64,74,53 +2004-06-15,69,83,54 +2004-06-16,66,75,56 +2004-06-17,65,72,58 +2004-06-18,66,72,59 +2004-06-19,61,65,57 +2004-06-20,58,62,54 +2004-06-21,60,65,54 +2004-06-22,60,65,55 +2004-06-23,62,68,56 +2004-06-24,62,68,56 +2004-06-25,64,74,54 +2004-06-26,64,71,56 +2004-06-27,63,72,54 +2004-06-28,63,72,54 +2004-06-29,66,73,59 +2004-06-30,65,71,58 +2004-07-01,62,67,56 +2004-07-02,64,71,56 +2004-07-03,65,74,55 +2004-07-04,66,75,57 +2004-07-05,65,72,58 +2004-07-06,64,71,57 +2004-07-07,65,72,57 +2004-07-08,65,73,57 +2004-07-09,64,71,56 +2004-07-10,62,67,56 +2004-07-11,63,71,55 +2004-07-12,61,67,54 +2004-07-13,63,67,58 +2004-07-14,64,70,57 +2004-07-15,65,74,55 +2004-07-16,63,71,55 +2004-07-17,67,76,58 +2004-07-18,70,77,63 +2004-07-19,69,76,62 +2004-07-20,65,70,59 +2004-07-21,67,76,58 +2004-07-22,66,74,58 +2004-07-23,66,74,58 +2004-07-24,68,74,62 +2004-07-25,66,73,58 +2004-07-26,65,73,57 +2004-07-27,66,75,57 +2004-07-28,67,75,58 +2004-07-29,65,71,59 +2004-07-30,67,74,59 +2004-07-31,62,65,58 +2004-08-01,64,68,59 +2004-08-02,63,66,59 +2004-08-03,65,70,59 +2004-08-04,65,71,59 +2004-08-05,65,71,58 +2004-08-06,66,73,59 +2004-08-07,67,76,58 +2004-08-08,66,74,57 +2004-08-09,64,70,58 +2004-08-10,65,72,57 +2004-08-11,66,76,55 +2004-08-12,66,74,57 +2004-08-13,68,76,59 +2004-08-14,63,66,59 +2004-08-15,66,72,59 +2004-08-16,65,72,58 +2004-08-17,67,74,59 +2004-08-18,66,73,58 +2004-08-19,67,75,59 +2004-08-20,68,76,60 +2004-08-21,68,74,61 +2004-08-22,69,76,62 +2004-08-23,68,74,61 +2004-08-24,67,72,61 +2004-08-25,69,76,61 +2004-08-26,69,78,60 +2004-08-27,76,90,61 +2004-08-28,75,90,60 +2004-08-29,66,74,57 +2004-08-30,66,72,59 +2004-08-31,67,74,60 +2004-09-01,66,72,59 +2004-09-02,64,71,57 +2004-09-03,71,85,56 +2004-09-04,79,92,66 +2004-09-05,79,94,63 +2004-09-06,79,94,64 +2004-09-07,76,91,60 +2004-09-08,75,89,60 +2004-09-09,68,76,59 +2004-09-10,64,71,56 +2004-09-11,69,79,59 +2004-09-12,65,70,59 +2004-09-13,65,72,58 +2004-09-14,70,83,57 +2004-09-15,71,83,58 +2004-09-16,65,72,58 +2004-09-17,65,72,58 +2004-09-18,61,65,57 +2004-09-19,61,66,56 +2004-09-20,63,71,54 +2004-09-21,67,80,53 +2004-09-22,68,83,53 +2004-09-23,71,85,56 +2004-09-24,70,84,56 +2004-09-25,62,69,54 +2004-09-26,65,77,53 +2004-09-27,61,66,55 +2004-09-28,65,70,59 +2004-09-29,62,67,57 +2004-09-30,60,66,54 +2004-10-01,61,66,55 +2004-10-02,59,65,53 +2004-10-03,58,63,52 +2004-10-04,60,63,57 +2004-10-05,61,66,55 +2004-10-06,65,77,53 +2004-10-07,62,68,55 +2004-10-08,63,72,54 +2004-10-09,63,69,56 +2004-10-10,64,77,50 +2004-10-11,69,83,55 +2004-10-12,73,87,59 +2004-10-13,74,90,58 +2004-10-14,70,82,58 +2004-10-15,60,67,53 +2004-10-16,60,66,54 +2004-10-17,62,68,56 +2004-10-18,59,66,51 +2004-10-19,59,64,54 +2004-10-20,58,63,52 +2004-10-21,57,65,49 +2004-10-22,60,65,54 +2004-10-23,58,62,54 +2004-10-24,59,64,53 +2004-10-25,57,62,51 +2004-10-26,55,60,50 +2004-10-27,54,59,48 +2004-10-28,55,62,48 +2004-10-29,58,64,52 +2004-10-30,56,61,51 +2004-10-31,61,69,53 +2004-11-01,60,70,49 +2004-11-02,59,68,49 +2004-11-03,55,59,50 +2004-11-04,53,57,48 +2004-11-05,56,65,47 +2004-11-06,54,62,46 +2004-11-07,57,62,52 +2004-11-08,55,59,51 +2004-11-09,58,62,54 +2004-11-10,59,64,54 +2004-11-11,58,61,54 +2004-11-12,58,62,54 +2004-11-13,60,68,52 +2004-11-14,57,64,49 +2004-11-15,57,61,52 +2004-11-16,57,61,52 +2004-11-17,58,67,48 +2004-11-18,55,60,49 +2004-11-19,55,60,49 +2004-11-20,57,67,47 +2004-11-21,55,62,48 +2004-11-22,52,61,42 +2004-11-23,52,60,43 +2004-11-24,53,62,44 +2004-11-25,55,60,50 +2004-11-26,56,59,53 +2004-11-27,56,60,52 +2004-11-28,54,57,50 +2004-11-29,48,54,42 +2004-11-30,45,53,37 +2004-12-01,48,57,39 +2004-12-02,49,58,40 +2004-12-03,50,58,42 +2004-12-04,45,54,36 +2004-12-05,51,57,45 +2004-12-06,51,57,45 +2004-12-07,55,59,51 +2004-12-08,57,60,53 +2004-12-09,59,64,53 +2004-12-10,56,60,51 +2004-12-11,55,60,50 +2004-12-12,53,58,48 +2004-12-13,56,61,51 +2004-12-14,54,57,50 +2004-12-15,54,61,47 +2004-12-16,55,62,47 +2004-12-17,52,59,44 +2004-12-18,53,62,43 +2004-12-19,52,58,45 +2004-12-20,49,53,45 +2004-12-21,53,62,44 +2004-12-22,53,58,47 +2004-12-23,54,64,43 +2004-12-24,50,57,43 +2004-12-25,49,55,42 +2004-12-26,52,55,49 +2004-12-27,51,54,47 +2004-12-28,50,52,47 +2004-12-29,52,56,48 +2004-12-30,55,58,51 +2004-12-31,52,56,47 +2005-01-01,51,56,45 +2005-01-02,48,49,47 +2005-01-03,49,53,45 +2005-01-04,48,52,43 +2005-01-05,48,53,43 +2005-01-06,51,53,48 +2005-01-07,53,57,49 +2005-01-08,51,54,48 +2005-01-09,50,54,46 +2005-01-10,51,59,42 +2005-01-11,49,54,43 +2005-01-12,47,54,39 +2005-01-13,44,48,40 +2005-01-14,45,51,38 +2005-01-15,45,51,39 +2005-01-16,50,57,43 +2005-01-17,51,57,44 +2005-01-18,50,54,46 +2005-01-19,49,55,43 +2005-01-20,50,55,44 +2005-01-21,51,55,47 +2005-01-22,49,53,44 +2005-01-23,49,53,45 +2005-01-24,49,54,44 +2005-01-25,50,54,46 +2005-01-26,55,60,50 +2005-01-27,53,59,47 +2005-01-28,54,58,49 +2005-01-29,51,57,45 +2005-01-30,51,61,41 +2005-01-31,53,63,42 +2005-02-01,57,69,45 +2005-02-02,58,66,49 +2005-02-03,55,65,44 +2005-02-04,53,60,45 +2005-02-05,54,60,48 +2005-02-06,52,58,45 +2005-02-07,53,56,49 +2005-02-08,53,56,49 +2005-02-09,53,61,45 +2005-02-10,56,65,47 +2005-02-11,54,59,48 +2005-02-12,55,62,48 +2005-02-13,54,58,50 +2005-02-14,55,57,53 +2005-02-15,55,56,53 +2005-02-16,56,61,51 +2005-02-17,57,60,54 +2005-02-18,58,62,53 +2005-02-19,54,58,50 +2005-02-20,56,60,52 +2005-02-21,58,65,51 +2005-02-22,57,65,49 +2005-02-23,55,57,53 +2005-02-24,54,55,52 +2005-02-25,55,57,52 +2005-02-26,56,59,52 +2005-02-27,56,61,51 +2005-02-28,56,62,50 +2005-03-01,55,63,47 +2005-03-02,55,61,48 +2005-03-03,55,64,45 +2005-03-04,56,59,52 +2005-03-05,58,66,49 +2005-03-06,60,71,48 +2005-03-07,58,66,50 +2005-03-08,60,69,50 +2005-03-09,62,73,50 +2005-03-10,64,76,51 +2005-03-11,70,83,56 +2005-03-12,59,63,54 +2005-03-13,59,64,54 +2005-03-14,60,70,50 +2005-03-15,61,74,48 +2005-03-16,57,67,47 +2005-03-17,0,64,52 +2005-03-18,56,58,54 +2005-03-19,59,63,54 +2005-03-20,59,62,55 +2005-03-21,56,60,52 +2005-03-22,54,57,50 +2005-03-23,54,58,50 +2005-03-24,54,59,49 +2005-03-25,54,59,48 +2005-03-26,55,63,46 +2005-03-27,56,63,48 +2005-03-28,54,59,49 +2005-03-29,55,60,50 +2005-03-30,53,63,42 +2005-03-31,57,70,44 +2005-04-01,58,68,48 +2005-04-02,56,60,52 +2005-04-03,54,60,47 +2005-04-04,53,60,46 +2005-04-05,58,71,45 +2005-04-06,58,66,49 +2005-04-07,56,60,51 +2005-04-08,55,60,49 +2005-04-09,56,62,49 +2005-04-10,57,66,47 +2005-04-11,55,61,49 +2005-04-12,54,60,47 +2005-04-13,54,59,47 +2005-04-14,54,62,46 +2005-04-15,56,66,45 +2005-04-16,57,64,50 +2005-04-17,56,62,50 +2005-04-18,55,63,47 +2005-04-19,59,68,50 +2005-04-20,56,62,49 +2005-04-21,60,71,48 +2005-04-22,63,73,52 +2005-04-23,60,66,53 +2005-04-24,59,65,53 +2005-04-25,57,65,49 +2005-04-26,60,71,49 +2005-04-27,59,65,52 +2005-04-28,59,65,53 +2005-04-29,59,65,53 +2005-04-30,58,64,52 +2005-05-01,61,69,53 +2005-05-02,61,68,53 +2005-05-03,60,66,54 +2005-05-04,62,68,56 +2005-05-05,60,65,54 +2005-05-06,62,67,56 +2005-05-07,61,67,54 +2005-05-08,60,63,56 +2005-05-09,59,63,54 +2005-05-10,59,65,52 +2005-05-11,60,68,51 +2005-05-12,62,69,54 +2005-05-13,61,67,54 +2005-05-14,63,68,58 +2005-05-15,66,72,59 +2005-05-16,61,66,56 +2005-05-17,61,66,55 +2005-05-18,64,68,60 +2005-05-19,62,66,58 +2005-05-20,63,69,56 +2005-05-21,63,71,54 +2005-05-22,62,69,54 +2005-05-23,61,70,52 +2005-05-24,65,78,52 +2005-05-25,64,72,55 +2005-05-26,61,68,54 +2005-05-27,61,65,56 +2005-05-28,61,65,56 +2005-05-29,62,68,56 +2005-05-30,64,72,55 +2005-05-31,63,70,55 +2005-06-01,63,71,54 +2005-06-02,60,67,53 +2005-06-03,59,65,52 +2005-06-04,59,66,51 +2005-06-05,58,64,52 +2005-06-06,58,65,51 +2005-06-07,58,65,50 +2005-06-08,62,65,58 +2005-06-09,62,67,56 +2005-06-10,60,66,54 +2005-06-11,61,69,53 +2005-06-12,63,75,51 +2005-06-13,67,80,54 +2005-06-14,60,67,53 +2005-06-15,60,68,51 +2005-06-16,60,64,55 +2005-06-17,62,69,55 +2005-06-18,64,71,57 +2005-06-19,63,71,55 +2005-06-20,64,71,56 +2005-06-21,64,70,57 +2005-06-22,63,70,56 +2005-06-23,64,72,56 +2005-06-24,65,72,57 +2005-06-25,63,70,56 +2005-06-26,63,70,56 +2005-06-27,63,69,57 +2005-06-28,65,74,56 +2005-06-29,66,77,55 +2005-06-30,64,71,56 +2005-07-01,62,70,54 +2005-07-02,63,72,54 +2005-07-03,62,68,55 +2005-07-04,63,71,55 +2005-07-05,60,65,54 +2005-07-06,64,71,56 +2005-07-07,63,70,56 +2005-07-08,64,72,56 +2005-07-09,65,70,59 +2005-07-10,68,75,60 +2005-07-11,66,74,57 +2005-07-12,68,79,56 +2005-07-13,65,73,56 +2005-07-14,66,75,56 +2005-07-15,65,74,55 +2005-07-16,66,77,55 +2005-07-17,66,75,57 +2005-07-18,65,72,57 +2005-07-19,65,72,58 +2005-07-20,65,71,58 +2005-07-21,66,73,58 +2005-07-22,66,72,60 +2005-07-23,73,89,57 +2005-07-24,67,75,59 +2005-07-25,62,68,55 +2005-07-26,62,70,54 +2005-07-27,62,69,55 +2005-07-28,63,69,56 +2005-07-29,64,70,57 +2005-07-30,64,71,57 +2005-07-31,63,71,55 +2005-08-01,,73,55 +2005-08-02,,69,55 +2005-08-03,,72,57 +2005-08-04,,71,56 +2005-08-05,,72,54 +2005-08-06,,71,55 +2005-08-07,,68,56 +2005-08-08,,68,55 +2005-08-09,,70,56 +2005-08-10,,70,55 +2005-08-11,,73,54 +2005-08-12,,74,57 +2005-08-13,,69,56 +2005-08-14,,71,56 +2005-08-15,,72,58 +2005-08-16,,71,55 +2005-08-17,,68,55 +2005-08-18,,72,56 +2005-08-19,,67,56 +2005-08-20,,65,55 +2005-08-21,,65,56 +2005-08-22,,68,54 +2005-08-23,,69,52 +2005-08-24,,74,54 +2005-08-25,,70,57 +2005-08-26,,71,53 +2005-08-27,,75,53 +2005-08-28,,72,53 +2005-08-29,,72,56 +2005-08-30,,87,56 +2005-08-31,,89,58 +2005-09-01,,72,56 +2005-09-02,,68,57 +2005-09-03,,66,55 +2005-09-04,,68,54 +2005-09-05,,73,55 +2005-09-06,,67,54 +2005-09-07,,66,53 +2005-09-08,,71,59 +2005-09-09,,65,57 +2005-09-10,,70,54 +2005-09-11,,67,56 +2005-09-12,,66,54 +2005-09-13,,66,54 +2005-09-14,,61,55 +2005-09-15,,65,54 +2005-09-16,,67,54 +2005-09-17,,66,55 +2005-09-18,,73,52 +2005-09-19,,81,51 +2005-09-20,,67,55 +2005-09-21,,70,54 +2005-09-22,,67,52 +2005-09-23,,64,53 +2005-09-24,,74,50 +2005-09-25,,82,50 +2005-09-26,,70,57 +2005-09-27,,72,55 +2005-09-28,,84,53 +2005-09-29,,82,55 +2005-09-30,,82,55 +2005-10-01,,71,57 +2005-10-02,,69,54 +2005-10-03,,67,54 +2005-10-04,,68,51 +2005-10-05,,80,50 +2005-10-06,,73,53 +2005-10-07,,66,52 +2005-10-08,,64,54 +2005-10-09,,75,49 +2005-10-10,,78,51 +2005-10-11,,64,52 +2005-10-12,,72,51 +2005-10-13,,80,52 +2005-10-14,,68,52 +2005-10-15,,66,54 +2005-10-16,,81,50 +2005-10-17,,83,55 +2005-10-18,,68,60 +2005-10-19,,70,56 +2005-10-20,,66,53 +2005-10-21,,66,51 +2005-10-22,,64,50 +2005-10-23,,68,54 +2005-10-24,,65,54 +2005-10-25,,67,54 +2005-10-26,,61,54 +2005-10-27,,66,54 +2005-10-28,,69,56 +2005-10-29,,66,53 +2005-10-30,,68,48 +2005-10-31,,72,49 +2005-11-01,,68,51 +2005-11-02,,62,51 +2005-11-03,,65,47 +2005-11-04,,64,53 +2005-11-05,,65,46 +2005-11-06,,65,52 +2005-11-07,,68,53 +2005-11-08,,63,52 +2005-11-09,,70,53 +2005-11-10,,68,52 +2005-11-11,,63,53 +2005-11-12,,64,51 +2005-11-13,,65,48 +2005-11-14,,71,55 +2005-11-15,,71,54 +2005-11-16,,72,51 +2005-11-17,,71,49 +2005-11-18,,73,49 +2005-11-19,,70,48 +2005-11-20,,69,46 +2005-11-21,,66,45 +2005-11-22,,69,47 +2005-11-23,,65,47 +2005-11-24,,60,46 +2005-11-25,,61,50 +2005-11-26,,57,44 +2005-11-27,,57,38 +2005-11-28,,57,45 +2005-11-29,,60,49 +2005-11-30,,59,49 +2005-12-01,,61,50 +2005-12-02,,56,44 +2005-12-03,,55,44 +2005-12-04,,56,40 +2005-12-05,,57,40 +2005-12-06,,57,38 +2005-12-07,,52,42 +2005-12-08,,57,48 +2005-12-09,,63,45 +2005-12-10,,62,43 +2005-12-11,,58,44 +2005-12-12,,55,49 +2005-12-13,,56,44 +2005-12-14,,56,41 +2005-12-15,,56,40 +2005-12-16,,50,44 +2005-12-17,,50,45 +2005-12-18,,63,50 +2005-12-19,,61,50 +2005-12-20,,63,50 +2005-12-21,,63,54 +2005-12-22,,63,57 +2005-12-23,,61,55 +2005-12-24,,64,54 +2005-12-25,,60,55 +2005-12-26,,60,53 +2005-12-27,,60,54 +2005-12-28,,61,51 +2005-12-29,,55,48 +2005-12-30,,61,52 +2005-12-31,,61,51 +2006-01-01,,62,47 +2006-01-02,,55,50 +2006-01-03,,56,46 +2006-01-04,,62,50 +2006-01-05,,60,48 +2006-01-06,,59,45 +2006-01-07,,61,50 +2006-01-08,,57,45 +2006-01-09,,56,41 +2006-01-10,,56,46 +2006-01-11,,59,48 +2006-01-12,,56,45 +2006-01-13,,65,45 +2006-01-14,,53,49 +2006-01-15,,55,43 +2006-01-16,,54,44 +2006-01-17,,58,45 +2006-01-18,,58,49 +2006-01-19,,54,44 +2006-01-20,,55,39 +2006-01-21,,53,46 +2006-01-22,,60,42 +2006-01-23,,65,41 +2006-01-24,,62,43 +2006-01-25,,58,42 +2006-01-26,,55,45 +2006-01-27,,56,45 +2006-01-28,,56,47 +2006-01-29,,57,49 +2006-01-30,,59,48 +2006-01-31,,56,42 +2006-02-01,,58,50 +2006-02-02,,62,52 +2006-02-03,,60,50 +2006-02-04,,59,49 +2006-02-05,,61,46 +2006-02-06,,63,44 +2006-02-07,,67,46 +2006-02-08,,73,46 +2006-02-09,,71,46 +2006-02-10,,69,46 +2006-02-11,,62,50 +2006-02-12,,65,47 +2006-02-13,,68,47 +2006-02-14,,62,45 +2006-02-15,,54,42 +2006-02-16,,53,37 +2006-02-17,,49,41 +2006-02-18,,49,38 +2006-02-19,,51,41 +2006-02-20,,55,38 +2006-02-21,,59,39 +2006-02-22,,63,39 +2006-02-23,,66,42 +2006-02-24,,69,43 +2006-02-25,,59,44 +2006-02-26,,59,48 +2006-02-27,,64,51 +2006-02-28,,57,47 +2006-03-01,,59,43 +2006-03-02,,58,45 +2006-03-03,,54,44 +2006-03-04,,56,39 +2006-03-05,,62,51 +2006-03-06,,59,46 +2006-03-07,,56,46 +2006-03-08,,56,41 +2006-03-09,,54,44 +2006-03-10,,50,41 +2006-03-11,,50,37 +2006-03-12,,53,42 +2006-03-13,,56,38 +2006-03-14,,56,45 +2006-03-15,,56,45 +2006-03-16,,59,45 +2006-03-17,,56,48 +2006-03-18,,57,43 +2006-03-19,,58,46 +2006-03-20,,52,44 +2006-03-21,,55,45 +2006-03-22,,58,45 +2006-03-23,,64,45 +2006-03-24,,63,54 +2006-03-25,,60,50 +2006-03-26,,63,45 +2006-03-27,,60,44 +2006-03-28,,57,49 +2006-03-29,,57,47 +2006-03-30,,58,50 +2006-03-31,,58,48 +2006-04-01,,59,46 +2006-04-02,,56,50 +2006-04-03,,58,50 +2006-04-04,,57,49 +2006-04-05,,58,47 +2006-04-06,,59,46 +2006-04-07,,59,48 +2006-04-08,,62,48 +2006-04-09,,61,51 +2006-04-10,,61,50 +2006-04-11,,57,51 +2006-04-12,,58,53 +2006-04-13,,70,52 +2006-04-14,,61,53 +2006-04-15,,58,51 +2006-04-16,,58,48 +2006-04-17,,58,43 +2006-04-18,,65,44 +2006-04-19,,65,46 +2006-04-20,,61,51 +2006-04-21,,63,52 +2006-04-22,,62,53 +2006-04-23,,61,52 +2006-04-24,,57,52 +2006-04-25,,57,52 +2006-04-26,,63,52 +2006-04-27,,69,51 +2006-04-28,,68,52 +2006-04-29,,61,53 +2006-04-30,,73,52 +2006-05-01,,69,50 +2006-05-02,,71,48 +2006-05-03,,63,49 +2006-05-04,,67,52 +2006-05-05,,59,52 +2006-05-06,,60,52 +2006-05-07,,68,49 +2006-05-08,,65,51 +2006-05-09,,70,49 +2006-05-10,,84,50 +2006-05-11,,66,51 +2006-05-12,,66,51 +2006-05-13,,65,50 +2006-05-14,,87,50 +2006-05-15,,80,58 +2006-05-16,,65,53 +2006-05-17,,61,51 +2006-05-18,,64,51 +2006-05-19,,61,52 +2006-05-20,,73,53 +2006-05-21,,68,52 +2006-05-22,,68,52 +2006-05-23,,73,59 +2006-05-24,,71,55 +2006-05-25,,65,55 +2006-05-26,,64,53 +2006-05-27,,63,50 +2006-05-28,,66,50 +2006-05-29,,67,51 +2006-05-30,,65,53 +2006-05-31,,67,53 +2006-06-01,,72,54 +2006-06-02,,77,58 +2006-06-03,,74,55 +2006-06-04,,70,57 +2006-06-05,,64,56 +2006-06-06,,68,55 +2006-06-07,,66,54 +2006-06-08,,63,53 +2006-06-09,,72,52 +2006-06-10,,63,54 +2006-06-11,,66,55 +2006-06-12,,68,57 +2006-06-13,,67,56 +2006-06-14,,67,54 +2006-06-15,,73,54 +2006-06-16,,85,56 +2006-06-17,,73,54 +2006-06-18,,66,53 +2006-06-19,,68,53 +2006-06-20,,78,53 +2006-06-21,,88,56 +2006-06-22,,91,56 +2006-06-23,,73,55 +2006-06-24,,68,56 +2006-06-25,,70,56 +2006-06-26,,72,56 +2006-06-27,,72,57 +2006-06-28,,70,58 +2006-06-29,,70,57 +2006-06-30,,67,56 +2006-07-01,,66,54 +2006-07-02,,64,54 +2006-07-03,,66,53 +2006-07-04,,66,54 +2006-07-05,,66,54 +2006-07-06,,66,54 +2006-07-07,,80,52 +2006-07-08,,80,54 +2006-07-09,,68,54 +2006-07-10,,66,54 +2006-07-11,,67,54 +2006-07-12,,71,57 +2006-07-13,,80,55 +2006-07-14,,68,55 +2006-07-15,,71,54 +2006-07-16,,75,54 +2006-07-17,,83,55 +2006-07-18,,83,58 +2006-07-19,,84,61 +2006-07-20,,80,60 +2006-07-21,,83,61 +2006-07-22,,97,63 +2006-07-23,,88,62 +2006-07-24,,85,60 +2006-07-25,,81,60 +2006-07-26,,74,58 +2006-07-27,,70,58 +2006-07-28,,75,59 +2006-07-29,,74,59 +2006-07-30,,76,58 +2006-07-31,,69,57 +2006-08-01,,71,55 +2006-08-02,,72,55 +2006-08-03,,73,55 +2006-08-04,,76,56 +2006-08-05,,77,59 +2006-08-06,,71,59 +2006-08-07,,72,59 +2006-08-08,,74,58 +2006-08-09,,88,60 +2006-08-10,,70,58 +2006-08-11,,67,57 +2006-08-12,,74,55 +2006-08-13,,73,58 +2006-08-14,,72,57 +2006-08-15,,72,56 +2006-08-16,,67,55 +2006-08-17,,73,53 +2006-08-18,,68,54 +2006-08-19,,65,54 +2006-08-20,,68,55 +2006-08-21,,66,55 +2006-08-22,,70,54 +2006-08-23,,68,53 +2006-08-24,,67,53 +2006-08-25,,71,56 +2006-08-26,,69,57 +2006-08-27,,68,55 +2006-08-28,,65,54 +2006-08-29,,64,55 +2006-08-30,,78,52 +2006-08-31,,77,54 +2006-09-01,,69,55 +2006-09-02,,66,55 +2006-09-03,,65,55 +2006-09-04,,65,54 +2006-09-05,,71,53 +2006-09-06,,66,53 +2006-09-07,,70,53 +2006-09-08,,64,56 +2006-09-09,,67,53 +2006-09-10,,68,53 +2006-09-11,,78,52 +2006-09-12,,83,55 +2006-09-13,,70,55 +2006-09-14,,66,54 +2006-09-15,,66,54 +2006-09-16,,74,49 +2006-09-17,,81,53 +2006-09-18,,76,57 +2006-09-19,,68,55 +2006-09-20,,79,52 +2006-09-21,,73,54 +2006-09-22,,78,52 +2006-09-23,,74,55 +2006-09-24,,76,53 +2006-09-25,,81,54 +2006-09-26,,71,54 +2006-09-27,,70,56 +2006-09-28,,62,53 +2006-09-29,,63,53 +2006-09-30,,64,56 +2006-10-01,,63,56 +2006-10-02,,66,53 +2006-10-03,,65,50 +2006-10-04,,64,55 +2006-10-05,,63,54 +2006-10-06,,60,55 +2006-10-07,,70,52 +2006-10-08,,79,50 +2006-10-09,,77,52 +2006-10-10,,70,52 +2006-10-11,,72,53 +2006-10-12,,67,52 +2006-10-13,,66,51 +2006-10-14,,63,55 +2006-10-15,,58,55 +2006-10-16,,65,56 +2006-10-17,,69,51 +2006-10-18,,73,50 +2006-10-19,,78,50 +2006-10-20,,80,55 +2006-10-21,,81,54 +2006-10-22,,75,53 +2006-10-23,,73,49 +2006-10-24,,64,53 +2006-10-25,,72,49 +2006-10-26,,75,51 +2006-10-27,,74,50 +2006-10-28,,77,50 +2006-10-29,,61,47 +2006-10-30,,60,45 +2006-10-31,,60,50 +2006-11-01,,64,49 +2006-11-02,,65,54 +2006-11-03,,67,57 +2006-11-04,,65,58 +2006-11-05,,70,52 +2006-11-06,,73,55 +2006-11-07,,72,56 +2006-11-08,,63,55 +2006-11-09,,63,50 +2006-11-10,,62,45 +2006-11-11,,59,50 +2006-11-12,,60,43 +2006-11-13,,62,48 +2006-11-14,,61,50 +2006-11-15,,62,47 +2006-11-16,,62,51 +2006-11-17,,63,53 +2006-11-18,,67,49 +2006-11-19,,62,52 +2006-11-20,,61,53 +2006-11-21,,63,52 +2006-11-22,,62,50 +2006-11-23,,60,45 +2006-11-24,,58,40 +2006-11-25,,60,44 +2006-11-26,,54,44 +2006-11-27,,55,46 +2006-11-28,,53,43 +2006-11-29,,54,42 +2006-11-30,,56,40 +2006-12-01,,60,40 +2006-12-02,,62,38 +2006-12-03,,61,43 +2006-12-04,,60,41 +2006-12-05,,64,41 +2006-12-06,,62,42 +2006-12-07,,59,40 +2006-12-08,,66,45 +2006-12-09,,62,52 +2006-12-10,,59,48 +2006-12-11,,58,44 +2006-12-12,,65,53 +2006-12-13,,58,55 +2006-12-14,,61,55 +2006-12-15,,58,49 +2006-12-16,,51,39 +2006-12-17,,52,39 +2006-12-18,,55,35 +2006-12-19,,51,35 +2006-12-20,,50,36 +2006-12-21,,55,44 +2006-12-22,,55,45 +2006-12-23,,53,40 +2006-12-24,,52,42 +2006-12-25,,53,44 +2006-12-26,,63,50 +2006-12-27,,55,46 +2006-12-28,,57,43 +2006-12-29,,53,37 +2006-12-30,,53,38 +2006-12-31,,51,47 +2007-01-01,,59,40 +2007-01-02,,57,43 +2007-01-03,,61,43 +2007-01-04,,56,45 +2007-01-05,,54,43 +2007-01-06,,56,37 +2007-01-07,,59,41 +2007-01-08,,64,44 +2007-01-09,,58,43 +2007-01-10,,54,39 +2007-01-11,,50,40 +2007-01-12,,46,37 +2007-01-13,,48,37 +2007-01-14,,48,32 +2007-01-15,,52,33 +2007-01-16,,51,33 +2007-01-17,,55,38 +2007-01-18,,58,33 +2007-01-19,,55,37 +2007-01-20,,59,38 +2007-01-21,,62,44 +2007-01-22,,62,41 +2007-01-23,,59,39 +2007-01-24,,57,39 +2007-01-25,,52,40 +2007-01-26,,48,41 +2007-01-27,,55,48 +2007-01-28,,56,47 +2007-01-29,,63,44 +2007-01-30,,59,42 +2007-01-31,,54,49 +2007-02-01,,51,49 +2007-02-02,,55,46 +2007-02-03,,57,39 +2007-02-04,,60,43 +2007-02-05,,64,45 +2007-02-06,,58,44 +2007-02-07,,60,50 +2007-02-08,,57,50 +2007-02-09,,60,53 +2007-02-10,,61,55 +2007-02-11,,58,48 +2007-02-12,,57,45 +2007-02-13,,56,47 +2007-02-14,,59,46 +2007-02-15,,60,49 +2007-02-16,,69,46 +2007-02-17,,73,50 +2007-02-18,,57,49 +2007-02-19,,59,46 +2007-02-20,,58,49 +2007-02-21,,59,50 +2007-02-22,,54,44 +2007-02-23,,53,42 +2007-02-24,,57,44 +2007-02-25,,55,49 +2007-02-26,,55,44 +2007-02-27,,53,41 +2007-02-28,,52,41 +2007-03-01,,54,39 +2007-03-02,,58,40 +2007-03-03,,64,44 +2007-03-04,,64,49 +2007-03-05,,66,51 +2007-03-06,,62,45 +2007-03-07,,61,49 +2007-03-08,,59,47 +2007-03-09,,59,46 +2007-03-10,,66,48 +2007-03-11,,78,50 +2007-03-12,,77,55 +2007-03-13,,63,51 +2007-03-14,,61,49 +2007-03-15,,75,47 +2007-03-16,,77,50 +2007-03-17,,58,50 +2007-03-18,,61,51 +2007-03-19,,61,48 +2007-03-20,,57,52 +2007-03-21,,62,46 +2007-03-22,,69,47 +2007-03-23,,70,47 +2007-03-24,,64,49 +2007-03-25,,60,51 +2007-03-26,,61,53 +2007-03-27,,56,46 +2007-03-28,,62,43 +2007-03-29,,71,44 +2007-03-30,,66,47 +2007-03-31,,64,46 +2007-04-01,,58,48 +2007-04-02,,65,47 +2007-04-03,,65,45 +2007-04-04,,67,50 +2007-04-05,,64,50 +2007-04-06,,61,49 +2007-04-07,,63,51 +2007-04-08,,64,51 +2007-04-09,,62,50 +2007-04-10,,67,46 +2007-04-11,,60,50 +2007-04-12,,60,47 +2007-04-13,,65,45 +2007-04-14,,57,50 +2007-04-15,,63,47 +2007-04-16,,70,50 +2007-04-17,,59,48 +2007-04-18,,58,46 +2007-04-19,,58,47 +2007-04-20,,61,47 +2007-04-21,,58,49 +2007-04-22,,60,50 +2007-04-23,,66,47 +2007-04-24,,63,50 +2007-04-25,,58,51 +2007-04-26,,63,48 +2007-04-27,,75,49 +2007-04-28,,77,52 +2007-04-29,,65,50 +2007-04-30,,69,50 +2007-05-01,,63,50 +2007-05-02,,63,52 +2007-05-03,,60,50 +2007-05-04,,62,51 +2007-05-05,,68,48 +2007-05-06,,84,52 +2007-05-07,,89,65 +2007-05-08,,83,52 +2007-05-09,,65,50 +2007-05-10,,60,49 +2007-05-11,,59,49 +2007-05-12,,61,50 +2007-05-13,,69,47 +2007-05-14,,61,49 +2007-05-15,,56,50 +2007-05-16,,62,49 +2007-05-17,,61,49 +2007-05-18,,64,50 +2007-05-19,,61,51 +2007-05-20,,64,51 +2007-05-21,,70,49 +2007-05-22,,72,50 +2007-05-23,,82,54 +2007-05-24,,68,51 +2007-05-25,,64,49 +2007-05-26,,69,52 +2007-05-27,,64,51 +2007-05-28,,73,50 +2007-05-29,,67,51 +2007-05-30,,60,52 +2007-05-31,,67,52 +2007-06-01,,66,52 +2007-06-02,,60,52 +2007-06-03,,66,52 +2007-06-04,,70,56 +2007-06-05,,64,54 +2007-06-06,,65,51 +2007-06-07,,67,50 +2007-06-08,,66,51 +2007-06-09,,68,51 +2007-06-10,,67,52 +2007-06-11,,65,51 +2007-06-12,,76,50 +2007-06-13,,83,56 +2007-06-14,,85,57 +2007-06-15,,77,55 +2007-06-16,,62,53 +2007-06-17,,75,51 +2007-06-18,,74,51 +2007-06-19,,71,55 +2007-06-20,,68,54 +2007-06-21,,72,53 +2007-06-22,,71,54 +2007-06-23,,68,53 +2007-06-24,,66,52 +2007-06-25,,78,50 +2007-06-26,,68,52 +2007-06-27,,68,53 +2007-06-28,,70,56 +2007-06-29,,70,56 +2007-06-30,,66,54 +2007-07-01,,68,54 +2007-07-02,,74,56 +2007-07-03,,67,55 +2007-07-04,,80,56 +2007-07-05,,74,55 +2007-07-06,,72,55 +2007-07-07,,61,54 +2007-07-08,,74,53 +2007-07-09,,73,56 +2007-07-10,,71,57 +2007-07-11,,72,61 +2007-07-12,,73,58 +2007-07-13,,77,58 +2007-07-14,,68,55 +2007-07-15,,72,58 +2007-07-16,,67,57 +2007-07-17,,74,58 +2007-07-18,,73,61 +2007-07-19,,71,59 +2007-07-20,,73,59 +2007-07-21,,75,61 +2007-07-22,,72,61 +2007-07-23,,72,59 +2007-07-24,,69,58 +2007-07-25,,68,56 +2007-07-26,,71,57 +2007-07-27,,71,55 +2007-07-28,,70,55 +2007-07-29,,68,56 +2007-07-30,,73,55 +2007-07-31,,70,55 +2007-08-01,,71,55 +2007-08-02,,71,54 +2007-08-03,,69,53 +2007-08-04,,68,54 +2007-08-05,,64,55 +2007-08-06,,65,57 +2007-08-07,,68,56 +2007-08-08,,69,57 +2007-08-09,,72,57 +2007-08-10,,72,55 +2007-08-11,,65,56 +2007-08-12,,69,55 +2007-08-13,,71,55 +2007-08-14,,67,55 +2007-08-15,,70,55 +2007-08-16,,70,58 +2007-08-17,,72,56 +2007-08-18,,70,57 +2007-08-19,,74,59 +2007-08-20,,74,60 +2007-08-21,,77,59 +2007-08-22,,75,57 +2007-08-23,,76,56 +2007-08-24,,75,59 +2007-08-25,,73,58 +2007-08-26,,72,57 +2007-08-27,,73,56 +2007-08-28,,80,56 +2007-08-29,,83,61 +2007-08-30,,84,62 +2007-08-31,,75,58 +2007-09-01,,81,57 +2007-09-02,,82,59 +2007-09-03,,71,58 +2007-09-04,,69,58 +2007-09-05,,88,57 +2007-09-06,,77,62 +2007-09-07,,73,60 +2007-09-08,,68,58 +2007-09-09,,70,59 +2007-09-10,,72,59 +2007-09-11,,68,59 +2007-09-12,,68,59 +2007-09-13,,75,56 +2007-09-14,,74,58 +2007-09-15,,70,58 +2007-09-16,,70,58 +2007-09-17,,67,58 +2007-09-18,,68,55 +2007-09-19,,64,55 +2007-09-20,,68,52 +2007-09-21,,72,58 +2007-09-22,,65,57 +2007-09-23,,66,54 +2007-09-24,,77,52 +2007-09-25,,80,53 +2007-09-26,,84,56 +2007-09-27,,66,56 +2007-09-28,,65,54 +2007-09-29,,71,50 +2007-09-30,,72,49 +2007-10-01,,67,57 +2007-10-02,,78,53 +2007-10-03,,67,52 +2007-10-04,,65,53 +2007-10-05,,61,50 +2007-10-06,,70,46 +2007-10-07,,73,47 +2007-10-08,,74,51 +2007-10-09,,67,49 +2007-10-10,,65,54 +2007-10-11,,73,51 +2007-10-12,,59,53 +2007-10-13,,68,51 +2007-10-14,,60,51 +2007-10-15,,65,52 +2007-10-16,,63,54 +2007-10-17,,66,51 +2007-10-18,,70,52 +2007-10-19,,71,56 +2007-10-20,,64,54 +2007-10-21,,72,52 +2007-10-22,,78,54 +2007-10-23,,81,55 +2007-10-24,,76,55 +2007-10-25,,62,52 +2007-10-26,,63,49 +2007-10-27,,64,51 +2007-10-28,,73,53 +2007-10-29,,59,53 +2007-10-30,,61,53 +2007-10-31,,61,52 +2007-11-01,,64,51 +2007-11-02,,75,48 +2007-11-03,,76,51 +2007-11-04,,76,50 +2007-11-05,,61,47 +2007-11-06,,59,49 +2007-11-07,,59,47 +2007-11-08,,59,51 +2007-11-09,,64,50 +2007-11-10,,62,49 +2007-11-11,,62,49 +2007-11-12,,66,46 +2007-11-13,,67,56 +2007-11-14,,73,53 +2007-11-15,,66,51 +2007-11-16,,61,53 +2007-11-17,,61,52 +2007-11-18,,63,52 +2007-11-19,,60,49 +2007-11-20,,62,45 +2007-11-21,,63,42 +2007-11-22,,64,43 +2007-11-23,,69,42 +2007-11-24,,59,40 +2007-11-25,,58,46 +2007-11-26,,58,43 +2007-11-27,,62,48 +2007-11-28,,63,45 +2007-11-29,,61,44 +2007-11-30,,55,43 +2007-12-01,,54,44 +2007-12-02,,59,44 +2007-12-03,,66,50 +2007-12-04,,62,52 +2007-12-05,,56,51 +2007-12-06,,54,51 +2007-12-07,,55,47 +2007-12-08,,54,44 +2007-12-09,,58,40 +2007-12-10,,56,41 +2007-12-11,,57,42 +2007-12-12,,54,39 +2007-12-13,,59,38 +2007-12-14,,55,38 +2007-12-15,,53,43 +2007-12-16,,56,42 +2007-12-17,,56,49 +2007-12-18,,57,48 +2007-12-19,,56,44 +2007-12-20,,54,49 +2007-12-21,,57,38 +2007-12-22,,51,35 +2007-12-23,,56,40 +2007-12-24,,57,49 +2007-12-25,,54,39 +2007-12-26,,53,44 +2007-12-27,,56,38 +2007-12-28,,46,42 +2007-12-29,,53,45 +2007-12-30,,52,44 +2007-12-31,,54,37 +2008-01-01,,54,39 +2008-01-02,,53,39 +2008-01-03,,59,49 +2008-01-04,,59,50 +2008-01-05,,54,46 +2008-01-06,,51,41 +2008-01-07,,52,44 +2008-01-08,,55,43 +2008-01-09,,51,44 +2008-01-10,,50,48 +2008-01-11,,53,48 +2008-01-12,,56,47 +2008-01-13,,58,44 +2008-01-14,,56,42 +2008-01-15,,58,43 +2008-01-16,,56,40 +2008-01-17,,57,43 +2008-01-18,,59,38 +2008-01-19,,54,39 +2008-01-20,,52,45 +2008-01-21,,47,43 +2008-01-22,,48,40 +2008-01-23,,47,43 +2008-01-24,,46,41 +2008-01-25,,53,45 +2008-01-26,,58,49 +2008-01-27,,56,45 +2008-01-28,,50,41 +2008-01-29,,50,38 +2008-01-30,,53,41 +2008-01-31,,53,45 +2008-02-01,,52,39 +2008-02-02,,54,40 +2008-02-03,,53,47 +2008-02-04,,55,41 +2008-02-05,,57,38 +2008-02-06,,54,47 +2008-02-07,,57,41 +2008-02-08,,61,46 +2008-02-09,,66,42 +2008-02-10,,66,45 +2008-02-11,,66,45 +2008-02-12,,66,45 +2008-02-13,,60,46 +2008-02-14,,60,47 +2008-02-15,,60,41 +2008-02-16,,59,42 +2008-02-17,,54,42 +2008-02-18,,54,47 +2008-02-19,,54,48 +2008-02-20,,57,48 +2008-02-21,,59,49 +2008-02-22,,55,46 +2008-02-23,,53,42 +2008-02-24,,57,47 +2008-02-25,,58,48 +2008-02-26,,65,45 +2008-02-27,,64,49 +2008-02-28,,67,46 +2008-02-29,,59,47 +2008-03-01,,57,48 +2008-03-02,,66,47 +2008-03-03,,65,43 +2008-03-04,,65,42 +2008-03-05,,67,44 +2008-03-06,,62,44 +2008-03-07,,64,45 +2008-03-08,,59,49 +2008-03-09,,69,44 +2008-03-10,,65,49 +2008-03-11,,62,49 +2008-03-12,,59,48 +2008-03-13,,59,51 +2008-03-14,,58,49 +2008-03-15,,55,44 +2008-03-16,,62,45 +2008-03-17,,60,44 +2008-03-18,,62,47 +2008-03-19,,60,50 +2008-03-20,,58,46 +2008-03-21,,63,43 +2008-03-22,,73,43 +2008-03-23,,64,44 +2008-03-24,,63,45 +2008-03-25,,58,50 +2008-03-26,,60,46 +2008-03-27,,56,44 +2008-03-28,,62,46 +2008-03-29,,56,47 +2008-03-30,,56,45 +2008-03-31,,61,41 +2008-04-01,,61,47 +2008-04-02,,62,45 +2008-04-03,,65,46 +2008-04-04,,57,45 +2008-04-05,,56,47 +2008-04-06,,59,48 +2008-04-07,,58,42 +2008-04-08,,56,47 +2008-04-09,,58,48 +2008-04-10,,66,45 +2008-04-11,,81,47 +2008-04-12,,84,53 +2008-04-13,,82,50 +2008-04-14,,58,48 +2008-04-15,,59,45 +2008-04-16,,67,44 +2008-04-17,,76,47 +2008-04-18,,61,48 +2008-04-19,,55,44 +2008-04-20,,55,42 +2008-04-21,,56,44 +2008-04-22,,60,47 +2008-04-23,,61,48 +2008-04-24,,64,44 +2008-04-25,,70,46 +2008-04-26,,77,50 +2008-04-27,,76,51 +2008-04-28,,64,48 +2008-04-29,,61,48 +2008-04-30,,59,46 +2008-05-01,,66,44 +2008-05-02,,58,49 +2008-05-03,,60,50 +2008-05-04,,57,48 +2008-05-05,,67,46 +2008-05-06,,65,49 +2008-05-07,,61,49 +2008-05-08,,62,48 +2008-05-09,,59,48 +2008-05-10,,63,48 +2008-05-11,,61,49 +2008-05-12,,61,49 +2008-05-13,,79,47 +2008-05-14,,86,54 +2008-05-15,,96,64 +2008-05-16,,92,65 +2008-05-17,,78,61 +2008-05-18,,65,51 +2008-05-19,,63,51 +2008-05-20,,66,51 +2008-05-21,,63,50 +2008-05-22,,65,49 +2008-05-23,,67,47 +2008-05-24,,60,51 +2008-05-25,,65,49 +2008-05-26,,62,49 +2008-05-27,,63,51 +2008-05-28,,67,51 +2008-05-29,,65,53 +2008-05-30,,65,52 +2008-05-31,,58,52 +2008-06-01,,60,50 +2008-06-02,,61,50 +2008-06-03,,64,51 +2008-06-04,,65,50 +2008-06-05,,65,49 +2008-06-06,,64,50 +2008-06-07,,70,47 +2008-06-08,,71,50 +2008-06-09,,84,52 +2008-06-10,,76,51 +2008-06-11,,79,53 +2008-06-12,,88,54 +2008-06-13,,74,50 +2008-06-14,,68,52 +2008-06-15,,60,51 +2008-06-16,,59,49 +2008-06-17,,75,49 +2008-06-18,,79,52 +2008-06-19,,91,55 +2008-06-20,,96,62 +2008-06-21,,91,53 +2008-06-22,,65,51 +2008-06-23,,59,50 +2008-06-24,,68,51 +2008-06-25,,63,51 +2008-06-26,,69,50 +2008-06-27,,71,54 +2008-06-28,,70,55 +2008-06-29,,67,55 +2008-06-30,,68,53 +2008-07-01,,65,54 +2008-07-02,,67,54 +2008-07-03,,74,55 +2008-07-04,,68,55 +2008-07-05,,71,56 +2008-07-06,,70,55 +2008-07-07,,81,56 +2008-07-08,,88,58 +2008-07-09,,83,62 +2008-07-10,,76,59 +2008-07-11,,77,58 +2008-07-12,,74,61 +2008-07-13,,71,60 +2008-07-14,,70,59 +2008-07-15,,68,58 +2008-07-16,,66,56 +2008-07-17,,64,54 +2008-07-18,,64,53 +2008-07-19,,66,53 +2008-07-20,,64,52 +2008-07-21,,64,53 +2008-07-22,,70,52 +2008-07-23,,68,54 +2008-07-24,,66,52 +2008-07-25,,68,53 +2008-07-26,,77,53 +2008-07-27,,65,55 +2008-07-28,,63,55 +2008-07-29,,69,55 +2008-07-30,,68,57 +2008-07-31,,66,55 +2008-08-01,,67,56 +2008-08-02,,77,55 +2008-08-03,,64,54 +2008-08-04,,63,53 +2008-08-05,,64,53 +2008-08-06,,64,55 +2008-08-07,,66,54 +2008-08-08,,65,56 +2008-08-09,,68,56 +2008-08-10,,77,54 +2008-08-11,,75,56 +2008-08-12,,72,55 +2008-08-13,,80,56 +2008-08-14,,69,54 +2008-08-15,,72,54 +2008-08-16,,72,56 +2008-08-17,,73,57 +2008-08-18,,70,58 +2008-08-19,,72,58 +2008-08-20,,76,59 +2008-08-21,,72,59 +2008-08-22,,70,58 +2008-08-23,,73,57 +2008-08-24,,74,57 +2008-08-25,,71,58 +2008-08-26,,79,55 +2008-08-27,,89,58 +2008-08-28,,90,62 +2008-08-29,,85,58 +2008-08-30,,71,57 +2008-08-31,,69,55 +2008-09-01,,82,55 +2008-09-02,,86,57 +2008-09-03,,88,57 +2008-09-04,,92,59 +2008-09-05,,93,61 +2008-09-06,,88,61 +2008-09-07,,69,55 +2008-09-08,,72,55 +2008-09-09,,68,58 +2008-09-10,,70,57 +2008-09-11,,67,55 +2008-09-12,,66,54 +2008-09-13,,67,55 +2008-09-14,,67,56 +2008-09-15,,66,54 +2008-09-16,,64,53 +2008-09-17,,67,56 +2008-09-18,,68,51 +2008-09-19,,72,53 +2008-09-20,,70,59 +2008-09-21,,67,58 +2008-09-22,,80,52 +2008-09-23,,83,54 +2008-09-24,,76,55 +2008-09-25,,77,56 +2008-09-26,,76,55 +2008-09-27,,79,53 +2008-09-28,,68,54 +2008-09-29,,68,56 +2008-09-30,,74,55 +2008-10-01,,74,57 +2008-10-02,,74,59 +2008-10-03,,72,58 +2008-10-04,,68,59 +2008-10-05,,71,58 +2008-10-06,,75,57 +2008-10-07,,77,53 +2008-10-08,,76,56 +2008-10-09,,69,54 +2008-10-10,,62,51 +2008-10-11,,66,55 +2008-10-12,,69,57 +2008-10-13,,78,50 +2008-10-14,,80,50 +2008-10-15,,82,53 +2008-10-16,,83,54 +2008-10-17,,84,56 +2008-10-18,,66,52 +2008-10-19,,60,51 +2008-10-20,,63,53 +2008-10-21,,77,50 +2008-10-22,,82,53 +2008-10-23,,81,56 +2008-10-24,,81,54 +2008-10-25,,82,54 +2008-10-26,,68,51 +2008-10-27,,61,49 +2008-10-28,,65,50 +2008-10-29,,63,48 +2008-10-30,,67,51 +2008-10-31,,71,59 +2008-11-01,,65,60 +2008-11-02,,65,58 +2008-11-03,,63,52 +2008-11-04,,60,50 +2008-11-05,,61,45 +2008-11-06,,66,53 +2008-11-07,,72,51 +2008-11-08,,62,53 +2008-11-09,,61,53 +2008-11-10,,60,49 +2008-11-11,,60,53 +2008-11-12,,64,55 +2008-11-13,,70,50 +2008-11-14,,78,54 +2008-11-15,,79,58 +2008-11-16,,73,53 +2008-11-17,,73,54 +2008-11-18,,63,51 +2008-11-19,,57,50 +2008-11-20,,63,51 +2008-11-21,,65,45 +2008-11-22,,63,45 +2008-11-23,,65,47 +2008-11-24,,60,47 +2008-11-25,,60,50 +2008-11-26,,57,53 +2008-11-27,,59,53 +2008-11-28,,58,48 +2008-11-29,,66,48 +2008-11-30,,62,48 +2008-12-01,,56,49 +2008-12-02,,62,49 +2008-12-03,,59,47 +2008-12-04,,58,49 +2008-12-05,,62,45 +2008-12-06,,59,43 +2008-12-07,,54,45 +2008-12-08,,54,45 +2008-12-09,,57,40 +2008-12-10,,60,42 +2008-12-11,,58,42 +2008-12-12,,59,47 +2008-12-13,,53,45 +2008-12-14,,50,40 +2008-12-15,,52,40 +2008-12-16,,47,39 +2008-12-17,,51,34 +2008-12-18,,53,41 +2008-12-19,,54,43 +2008-12-20,,50,36 +2008-12-21,,52,45 +2008-12-22,,53,43 +2008-12-23,,51,42 +2008-12-24,,55,47 +2008-12-25,,50,43 +2008-12-26,,51,42 +2008-12-27,,51,39 +2008-12-28,,56,45 +2008-12-29,,58,44 +2008-12-30,,55,44 +2008-12-31,,51,44 +2009-01-01,,50,44 +2009-01-02,,57,45 +2009-01-03,,52,36 +2009-01-04,,50,33 +2009-01-05,,48,44 +2009-01-06,,53,45 +2009-01-07,,52,46 +2009-01-08,,53,43 +2009-01-09,,58,40 +2009-01-10,,62,49 +2009-01-11,,57,39 +2009-01-12,,70,47 +2009-01-13,,72,49 +2009-01-14,,64,45 +2009-01-15,,68,44 +2009-01-16,,64,46 +2009-01-17,,60,43 +2009-01-18,,66,44 +2009-01-19,,67,43 +2009-01-20,,65,44 +2009-01-21,,57,52 +2009-01-22,,54,51 +2009-01-23,,55,52 +2009-01-24,,55,49 +2009-01-25,,55,45 +2009-01-26,,54,40 +2009-01-27,,54,40 +2009-01-28,,59,39 +2009-01-29,,66,42 +2009-01-30,,62,42 +2009-01-31,,60,41 +2009-02-01,,66,41 +2009-02-02,,65,42 +2009-02-03,,67,45 +2009-02-04,,63,43 +2009-02-05,,58,51 +2009-02-06,,55,51 +2009-02-07,,61,49 +2009-02-08,,56,44 +2009-02-09,,52,43 +2009-02-10,,52,39 +2009-02-11,,55,43 +2009-02-12,,52,45 +2009-02-13,,53,44 +2009-02-14,,54,42 +2009-02-15,,51,46 +2009-02-16,,55,46 +2009-02-17,,54,48 +2009-02-18,,58,42 +2009-02-19,,64,42 +2009-02-20,,62,45 +2009-02-21,,61,48 +2009-02-22,,58,53 +2009-02-23,,59,54 +2009-02-24,,60,50 +2009-02-25,,61,50 +2009-02-26,,58,48 +2009-02-27,,56,47 +2009-02-28,,61,48 +2009-03-01,,63,54 +2009-03-02,,60,54 +2009-03-03,,59,48 +2009-03-04,,55,44 +2009-03-05,,56,47 +2009-03-06,,56,48 +2009-03-07,,60,43 +2009-03-08,,56,47 +2009-03-09,,54,43 +2009-03-10,,57,38 +2009-03-11,,60,40 +2009-03-12,,59,43 +2009-03-13,,57,47 +2009-03-14,,53,48 +2009-03-15,,59,50 +2009-03-16,,64,53 +2009-03-17,,63,52 +2009-03-18,,68,48 +2009-03-19,,65,52 +2009-03-20,,58,50 +2009-03-21,,56,48 +2009-03-22,,53,45 +2009-03-23,,57,41 +2009-03-24,,62,42 +2009-03-25,,64,45 +2009-03-26,,63,50 +2009-03-27,,73,50 +2009-03-28,,69,49 +2009-03-29,,60,48 +2009-03-30,,64,49 +2009-03-31,,68,45 +2009-04-01,,62,49 +2009-04-02,,59,48 +2009-04-03,,57,45 +2009-04-04,,65,41 +2009-04-05,,75,43 +2009-04-06,,75,48 +2009-04-07,,61,51 +2009-04-08,,60,51 +2009-04-09,,56,50 +2009-04-10,,59,48 +2009-04-11,,60,47 +2009-04-12,,61,50 +2009-04-13,,61,48 +2009-04-14,,54,45 +2009-04-15,,57,41 +2009-04-16,,59,45 +2009-04-17,,68,46 +2009-04-18,,71,47 +2009-04-19,,86,52 +2009-04-20,,91,59 +2009-04-21,,86,62 +2009-04-22,,69,53 +2009-04-23,,64,50 +2009-04-24,,58,48 +2009-04-25,,57,47 +2009-04-26,,62,48 +2009-04-27,,56,48 +2009-04-28,,58,47 +2009-04-29,,60,48 +2009-04-30,,63,47 +2009-05-01,,61,51 +2009-05-02,,63,56 +2009-05-03,,65,53 +2009-05-04,,70,52 +2009-05-05,,71,57 +2009-05-06,,73,55 +2009-05-07,,68,50 +2009-05-08,,71,51 +2009-05-09,,65,50 +2009-05-10,,65,50 +2009-05-11,,63,50 +2009-05-12,,63,49 +2009-05-13,,67,49 +2009-05-14,,67,52 +2009-05-15,,64,52 +2009-05-16,,89,53 +2009-05-17,,93,54 +2009-05-18,,66,51 +2009-05-19,,65,52 +2009-05-20,,64,50 +2009-05-21,,67,46 +2009-05-22,,67,50 +2009-05-23,,56,50 +2009-05-24,,54,49 +2009-05-25,,63,49 +2009-05-26,,70,49 +2009-05-27,,68,52 +2009-05-28,,70,51 +2009-05-29,,70,54 +2009-05-30,,68,53 +2009-05-31,,63,53 +2009-06-01,,65,53 +2009-06-02,,67,52 +2009-06-03,,68,54 +2009-06-04,,67,56 +2009-06-05,,70,57 +2009-06-06,,69,55 +2009-06-07,,68,57 +2009-06-08,,65,56 +2009-06-09,,66,57 +2009-06-10,,66,57 +2009-06-11,,69,57 +2009-06-12,,66,57 +2009-06-13,,69,58 +2009-06-14,,69,58 +2009-06-15,,66,58 +2009-06-16,,65,57 +2009-06-17,,66,58 +2009-06-18,,75,56 +2009-06-19,,70,55 +2009-06-20,,65,53 +2009-06-21,,68,53 +2009-06-22,,81,53 +2009-06-23,,77,54 +2009-06-24,,73,53 +2009-06-25,,75,55 +2009-06-26,,72,54 +2009-06-27,,87,53 +2009-06-28,,81,59 +2009-06-29,,69,55 +2009-06-30,,74,56 +2009-07-01,,73,57 +2009-07-02,,71,56 +2009-07-03,,67,55 +2009-07-04,,73,55 +2009-07-05,,65,56 +2009-07-06,,68,56 +2009-07-07,,67,56 +2009-07-08,,71,56 +2009-07-09,,67,53 +2009-07-10,,68,54 +2009-07-11,,70,54 +2009-07-12,,70,53 +2009-07-13,,87,53 +2009-07-14,,88,58 +2009-07-15,,70,53 +2009-07-16,,69,51 +2009-07-17,,71,52 +2009-07-18,,73,54 +2009-07-19,,74,54 +2009-07-20,,66,55 +2009-07-21,,64,54 +2009-07-22,,64,54 +2009-07-23,,66,54 +2009-07-24,,67,50 +2009-07-25,,67,53 +2009-07-26,,72,53 +2009-07-27,,69,52 +2009-07-28,,67,56 +2009-07-29,,71,58 +2009-07-30,,68,57 +2009-07-31,,68,56 +2009-08-01,,69,56 +2009-08-02,,68,57 +2009-08-03,,70,57 +2009-08-04,,73,58 +2009-08-05,,72,59 +2009-08-06,,71,60 +2009-08-07,,69,59 +2009-08-08,,76,57 +2009-08-09,,85,57 +2009-08-10,,87,59 +2009-08-11,,74,58 +2009-08-12,,84,57 +2009-08-13,,76,58 +2009-08-14,,68,57 +2009-08-15,,79,55 +2009-08-16,,75,55 +2009-08-17,,68,55 +2009-08-18,,68,56 +2009-08-19,,73,57 +2009-08-20,,72,56 +2009-08-21,,79,57 +2009-08-22,,68,58 +2009-08-23,,68,55 +2009-08-24,,69,53 +2009-08-25,,71,54 +2009-08-26,,70,53 +2009-08-27,,89,53 +2009-08-28,,95,61 +2009-08-29,,90,58 +2009-08-30,,66,56 +2009-08-31,,69,56 +2009-09-01,,74,57 +2009-09-02,,89,61 +2009-09-03,,82,57 +2009-09-04,,69,56 +2009-09-05,,75,58 +2009-09-06,,70,58 +2009-09-07,,72,57 +2009-09-08,,72,54 +2009-09-09,,68,54 +2009-09-10,,85,55 +2009-09-11,,81,55 +2009-09-12,,68,59 +2009-09-13,,71,60 +2009-09-14,,72,60 +2009-09-15,,77,57 +2009-09-16,,74,58 +2009-09-17,,78,59 +2009-09-18,,93,62 +2009-09-19,,76,59 +2009-09-20,,81,57 +2009-09-21,,76,56 +2009-09-22,,80,56 +2009-09-23,,66,57 +2009-09-24,,67,55 +2009-09-25,,73,54 +2009-09-26,,89,54 +2009-09-27,,85,59 +2009-09-28,,65,57 +2009-09-29,,66,54 +2009-09-30,,70,51 +2009-10-01,,79,52 +2009-10-02,,76,54 +2009-10-03,,64,52 +2009-10-04,,62,50 +2009-10-05,,70,47 +2009-10-06,,74,49 +2009-10-07,,71,52 +2009-10-08,,65,51 +2009-10-09,,65,52 +2009-10-10,,62,52 +2009-10-11,,62,51 +2009-10-12,,67,57 +2009-10-13,,66,59 +2009-10-14,,73,63 +2009-10-15,,72,64 +2009-10-16,,77,58 +2009-10-17,,75,56 +2009-10-18,,64,57 +2009-10-19,,67,58 +2009-10-20,,66,56 +2009-10-21,,67,57 +2009-10-22,,70,56 +2009-10-23,,74,55 +2009-10-24,,73,56 +2009-10-25,,79,53 +2009-10-26,,69,56 +2009-10-27,,65,53 +2009-10-28,,64,53 +2009-10-29,,68,50 +2009-10-30,,72,51 +2009-10-31,,69,52 +2009-11-01,,74,52 +2009-11-02,,80,55 +2009-11-03,,73,54 +2009-11-04,,67,53 +2009-11-05,,67,58 +2009-11-06,,67,55 +2009-11-07,,64,51 +2009-11-08,,66,49 +2009-11-09,,64,46 +2009-11-10,,63,52 +2009-11-11,,64,54 +2009-11-12,,63,51 +2009-11-13,,60,47 +2009-11-14,,63,49 +2009-11-15,,64,44 +2009-11-16,,62,44 +2009-11-17,,65,44 +2009-11-18,,60,46 +2009-11-19,,59,42 +2009-11-20,,60,46 +2009-11-21,,57,45 +2009-11-22,,61,47 +2009-11-23,,63,43 +2009-11-24,,66,48 +2009-11-25,,69,46 +2009-11-26,,61,45 +2009-11-27,,57,50 +2009-11-28,,66,48 +2009-11-29,,70,48 +2009-11-30,,62,45 +2009-12-01,,60,44 +2009-12-02,,54,40 +2009-12-03,,56,44 +2009-12-04,,53,45 +2009-12-05,,54,43 +2009-12-06,,51,39 +2009-12-07,,47,38 +2009-12-08,,48,33 +2009-12-09,,46,36 +2009-12-10,,48,43 +2009-12-11,,55,43 +2009-12-12,,58,41 +2009-12-13,,55,51 +2009-12-14,,55,48 +2009-12-15,,57,48 +2009-12-16,,56,51 +2009-12-17,,59,50 +2009-12-18,,61,48 +2009-12-19,,56,48 +2009-12-20,,59,47 +2009-12-21,,58,48 +2009-12-22,,54,46 +2009-12-23,,54,40 +2009-12-24,,58,40 +2009-12-25,,55,40 +2009-12-26,,53,41 +2009-12-27,,54,46 +2009-12-28,,52,44 +2009-12-29,,53,38 +2009-12-30,,54,49 +2009-12-31,,56,49 +2010-01-01,,57,50 +2010-01-02,,55,49 +2010-01-03,,55,46 +2010-01-04,,54,46 +2010-01-05,,61,42 +2010-01-06,,54,46 +2010-01-07,,53,50 +2010-01-08,,54,47 +2010-01-09,,54,44 +2010-01-10,,52,45 +2010-01-11,,56,47 +2010-01-12,,62,53 +2010-01-13,,60,51 +2010-01-14,,59,45 +2010-01-15,,54,46 +2010-01-16,,57,46 +2010-01-17,,56,51 +2010-01-18,,58,51 +2010-01-19,,58,50 +2010-01-20,,55,49 +2010-01-21,,51,43 +2010-01-22,,49,44 +2010-01-23,,54,45 +2010-01-24,,54,43 +2010-01-25,,57,50 +2010-01-26,,53,47 +2010-01-27,,54,43 +2010-01-28,,56,46 +2010-01-29,,60,46 +2010-01-30,,58,44 +2010-01-31,,55,47 +2010-02-01,,58,47 +2010-02-02,,56,47 +2010-02-03,,60,44 +2010-02-04,,59,50 +2010-02-05,,62,47 +2010-02-06,,57,50 +2010-02-07,,57,50 +2010-02-08,,55,48 +2010-02-09,,56,47 +2010-02-10,,57,46 +2010-02-11,,59,46 +2010-02-12,,62,52 +2010-02-13,,61,52 +2010-02-14,,60,48 +2010-02-15,,62,48 +2010-02-16,,65,50 +2010-02-17,,65,47 +2010-02-18,,58,50 +2010-02-19,,57,50 +2010-02-20,,56,50 +2010-02-21,,56,50 +2010-02-22,,60,49 +2010-02-23,,56,49 +2010-02-24,,57,52 +2010-02-25,,63,50 +2010-02-26,,61,52 +2010-02-27,,59,50 +2010-02-28,,62,47 +2010-03-01,,59,51 +2010-03-02,,58,51 +2010-03-03,,57,45 +2010-03-04,,56,41 +2010-03-05,,57,44 +2010-03-06,,64,50 +2010-03-07,,59,52 +2010-03-08,,56,46 +2010-03-09,,55,40 +2010-03-10,,56,46 +2010-03-11,,59,51 +2010-03-12,,58,48 +2010-03-13,,57,42 +2010-03-14,,63,42 +2010-03-15,,67,44 +2010-03-16,,67,50 +2010-03-17,,71,52 +2010-03-18,,73,48 +2010-03-19,,78,53 +2010-03-20,,63,50 +2010-03-21,,63,49 +2010-03-22,,64,50 +2010-03-23,,71,48 +2010-03-24,,62,47 +2010-03-25,,60,49 +2010-03-26,,62,47 +2010-03-27,,69,45 +2010-03-28,,70,49 +2010-03-29,,63,54 +2010-03-30,,61,49 +2010-03-31,,58,45 +2010-04-01,,58,45 +2010-04-02,,59,48 +2010-04-03,,57,45 +2010-04-04,,56,48 +2010-04-05,,58,46 +2010-04-06,,62,44 +2010-04-07,,69,46 +2010-04-08,,61,48 +2010-04-09,,69,45 +2010-04-10,,59,53 +2010-04-11,,56,49 +2010-04-12,,59,49 +2010-04-13,,60,50 +2010-04-14,,60,48 +2010-04-15,,66,47 +2010-04-16,,69,50 +2010-04-17,,67,53 +2010-04-18,,76,48 +2010-04-19,,66,50 +2010-04-20,,60,49 +2010-04-21,,57,49 +2010-04-22,,65,48 +2010-04-23,,67,48 +2010-04-24,,63,47 +2010-04-25,,76,48 +2010-04-26,,64,51 +2010-04-27,,62,52 +2010-04-28,,58,49 +2010-04-29,,60,48 +2010-04-30,,64,47 +2010-05-01,,65,48 +2010-05-02,,69,49 +2010-05-03,,68,50 +2010-05-04,,70,48 +2010-05-05,,63,49 +2010-05-06,,69,47 +2010-05-07,,63,50 +2010-05-08,,63,50 +2010-05-09,,62,53 +2010-05-10,,59,49 +2010-05-11,,63,45 +2010-05-12,,64,49 +2010-05-13,,65,50 +2010-05-14,,62,51 +2010-05-15,,64,50 +2010-05-16,,60,50 +2010-05-17,,59,52 +2010-05-18,,66,53 +2010-05-19,,65,51 +2010-05-20,,65,50 +2010-05-21,,61,50 +2010-05-22,,61,48 +2010-05-23,,63,47 +2010-05-24,,65,52 +2010-05-25,,61,55 +2010-05-26,,67,53 +2010-05-27,,63,53 +2010-05-28,,64,51 +2010-05-29,,74,52 +2010-05-30,,76,53 +2010-05-31,,67,55 +2010-06-01,,66,53 +2010-06-02,,71,55 +2010-06-03,,74,61 +2010-06-04,,76,62 +2010-06-05,,80,60 +2010-06-06,,74,57 +2010-06-07,,64,55 +2010-06-08,,62,54 +2010-06-09,,65,56 +2010-06-10,,67,54 +2010-06-11,,73,53 +2010-06-12,,88,59 +2010-06-13,,82,56 +2010-06-14,,67,54 +2010-06-15,,62,52 +2010-06-16,,71,50 +2010-06-17,,70,52 +2010-06-18,,62,53 +2010-06-19,,63,54 +2010-06-20,,68,52 +2010-06-21,,71,53 +2010-06-22,,67,53 +2010-06-23,,65,53 +2010-06-24,,60,53 +2010-06-25,,67,55 +2010-06-26,,67,55 +2010-06-27,,81,53 +2010-06-28,,76,58 +2010-06-29,,71,57 +2010-06-30,,66,55 +2010-07-01,,66,53 +2010-07-02,,69,54 +2010-07-03,,79,54 +2010-07-04,,79,55 +2010-07-05,,72,55 +2010-07-06,,72,57 +2010-07-07,,73,56 +2010-07-08,,66,56 +2010-07-09,,67,55 +2010-07-10,,69,55 +2010-07-11,,70,58 +2010-07-12,,76,58 +2010-07-13,,72,59 +2010-07-14,,74,59 +2010-07-15,,74,59 +2010-07-16,,70,57 +2010-07-17,,70,56 +2010-07-18,,68,56 +2010-07-19,,65,56 +2010-07-20,,69,55 +2010-07-21,,65,53 +2010-07-22,,70,55 +2010-07-23,,68,56 +2010-07-24,,68,56 +2010-07-25,,68,55 +2010-07-26,,72,56 +2010-07-27,,71,57 +2010-07-28,,69,57 +2010-07-29,,67,54 +2010-07-30,,65,55 +2010-07-31,,68,56 +2010-08-01,,69,54 +2010-08-02,,67,53 +2010-08-03,,68,55 +2010-08-04,,66,54 +2010-08-05,,69,54 +2010-08-06,,70,54 +2010-08-07,,71,55 +2010-08-08,,70,56 +2010-08-09,,69,55 +2010-08-10,,72,55 +2010-08-11,,63,56 +2010-08-12,,69,54 +2010-08-13,,68,54 +2010-08-14,,67,56 +2010-08-15,,66,56 +2010-08-16,,66,54 +2010-08-17,,70,56 +2010-08-18,,70,56 +2010-08-19,,72,55 +2010-08-20,,70,55 +2010-08-21,,65,56 +2010-08-22,,74,56 +2010-08-23,,92,57 +2010-08-24,,99,64 +2010-08-25,,85,62 +2010-08-26,,69,57 +2010-08-27,,68,57 +2010-08-28,,67,56 +2010-08-29,,70,55 +2010-08-30,,69,55 +2010-08-31,,79,57 +2010-09-01,,92,58 +2010-09-02,,87,59 +2010-09-03,,74,57 +2010-09-04,,67,56 +2010-09-05,,77,56 +2010-09-06,,91,57 +2010-09-07,,70,58 +2010-09-08,,68,59 +2010-09-09,,74,58 +2010-09-10,,81,56 +2010-09-11,,84,57 +2010-09-12,,69,56 +2010-09-13,,69,57 +2010-09-14,,69,56 +2010-09-15,,69,57 +2010-09-16,,76,60 +2010-09-17,,74,64 +2010-09-18,,77,64 +2010-09-19,,74,63 +2010-09-20,,76,60 +2010-09-21,,69,61 +2010-09-22,,69,60 +2010-09-23,,77,57 +2010-09-24,,88,59 +2010-09-25,,90,59 +2010-09-26,,87,58 +2010-09-27,,96,60 +2010-09-28,,95,67 +2010-09-29,,85,60 +2010-09-30,,71,58 +2010-10-01,,69,60 +2010-10-02,,70,59 +2010-10-03,,71,59 +2010-10-04,,69,60 +2010-10-05,,75,57 +2010-10-06,,76,61 +2010-10-07,,72,58 +2010-10-08,,76,57 +2010-10-09,,79,57 +2010-10-10,,76,60 +2010-10-11,,88,60 +2010-10-12,,94,66 +2010-10-13,,92,66 +2010-10-14,,86,64 +2010-10-15,,76,59 +2010-10-16,,65,57 +2010-10-17,,60,58 +2010-10-18,,67,54 +2010-10-19,,73,54 +2010-10-20,,68,54 +2010-10-21,,71,62 +2010-10-22,,66,57 +2010-10-23,,68,55 +2010-10-24,,70,62 +2010-10-25,,68,58 +2010-10-26,,68,55 +2010-10-27,,66,52 +2010-10-28,,73,51 +2010-10-29,,63,55 +2010-10-30,,63,52 +2010-10-31,,66,51 +2010-11-01,,72,51 +2010-11-02,,73,53 +2010-11-03,,75,55 +2010-11-04,,77,58 +2010-11-05,,66,54 +2010-11-06,,68,54 +2010-11-07,,61,53 +2010-11-08,,60,50 +2010-11-09,,61,46 +2010-11-10,,61,52 +2010-11-11,,66,49 +2010-11-12,,66,45 +2010-11-13,,71,47 +2010-11-14,,77,52 +2010-11-15,,78,58 +2010-11-16,,69,53 +2010-11-17,,66,47 +2010-11-18,,59,46 +2010-11-19,,56,46 +2010-11-20,,55,45 +2010-11-21,,55,44 +2010-11-22,,57,48 +2010-11-23,,54,43 +2010-11-24,,50,38 +2010-11-25,,52,37 +2010-11-26,,53,37 +2010-11-27,,54,47 +2010-11-28,,53,42 +2010-11-29,,54,38 +2010-11-30,,52,39 +2010-12-01,,54,39 +2010-12-02,,53,44 +2010-12-03,,54,50 +2010-12-04,,59,50 +2010-12-05,,61,50 +2010-12-06,,62,50 +2010-12-07,,59,45 +2010-12-08,,57,50 +2010-12-09,,59,54 +2010-12-10,,60,55 +2010-12-11,,60,52 +2010-12-12,,58,52 +2010-12-13,,57,53 +2010-12-14,,60,52 +2010-12-15,,55,43 +2010-12-16,,53,40 +2010-12-17,,57,48 +2010-12-18,,61,55 +2010-12-19,,59,51 +2010-12-20,,54,48 +2010-12-21,,58,47 +2010-12-22,,55,49 +2010-12-23,,54,42 +2010-12-24,,59,41 +2010-12-25,,56,47 +2010-12-26,,58,46 +2010-12-27,,54,45 +2010-12-28,,57,49 +2010-12-29,,57,44 +2010-12-30,,52,41 +2010-12-31,,49,38 +2011-01-01,,52,47 +2011-01-02,,51,48 +2011-01-03,,53,45 +2011-01-04,,53,39 +2011-01-05,,55,38 +2011-01-06,,52,37 +2011-01-07,,47,39 +2011-01-08,,49,43 +2011-01-09,,48,39 +2011-01-10,,49,36 +2011-01-11,,49,43 +2011-01-12,,55,48 +2011-01-13,,56,45 +2011-01-14,,60,50 +2011-01-15,,63,47 +2011-01-16,,57,47 +2011-01-17,,57,48 +2011-01-18,,59,46 +2011-01-19,,61,48 +2011-01-20,,63,45 +2011-01-21,,60,43 +2011-01-22,,67,44 +2011-01-23,,63,47 +2011-01-24,,63,43 +2011-01-25,,68,44 +2011-01-26,,65,46 +2011-01-27,,62,44 +2011-01-28,,53,46 +2011-01-29,,56,50 +2011-01-30,,57,46 +2011-01-31,,56,41 +2011-02-01,,63,45 +2011-02-02,,62,48 +2011-02-03,,60,41 +2011-02-04,,65,42 +2011-02-05,,73,46 +2011-02-06,,72,55 +2011-02-07,,66,48 +2011-02-08,,60,50 +2011-02-09,,60,42 +2011-02-10,,64,40 +2011-02-11,,64,42 +2011-02-12,,67,43 +2011-02-13,,57,43 +2011-02-14,,58,50 +2011-02-15,,61,52 +2011-02-16,,54,43 +2011-02-17,,51,44 +2011-02-18,,47,39 +2011-02-19,,45,40 +2011-02-20,,53,37 +2011-02-21,,52,39 +2011-02-22,,56,39 +2011-02-23,,53,41 +2011-02-24,,52,45 +2011-02-25,,53,39 +2011-02-26,,49,35 +2011-02-27,,55,36 +2011-02-28,,57,40 +2011-03-01,,59,40 +2011-03-02,,58,49 +2011-03-03,,61,50 +2011-03-04,,61,44 +2011-03-05,,64,46 +2011-03-06,,59,51 +2011-03-07,,56,49 +2011-03-08,,59,50 +2011-03-09,,61,47 +2011-03-10,,60,46 +2011-03-11,,57,45 +2011-03-12,,61,45 +2011-03-13,,64,51 +2011-03-14,,60,54 +2011-03-15,,61,54 +2011-03-16,,58,48 +2011-03-17,,59,42 +2011-03-18,,56,47 +2011-03-19,,53,45 +2011-03-20,,57,47 +2011-03-21,,57,46 +2011-03-22,,58,45 +2011-03-23,,56,48 +2011-03-24,,52,46 +2011-03-25,,58,48 +2011-03-26,,58,47 +2011-03-27,,57,45 +2011-03-28,,59,46 +2011-03-29,,62,47 +2011-03-30,,75,51 +2011-03-31,,80,54 +2011-04-01,,78,54 +2011-04-02,,62,50 +2011-04-03,,63,46 +2011-04-04,,74,47 +2011-04-05,,61,50 +2011-04-06,,59,47 +2011-04-07,,53,45 +2011-04-08,,58,41 +2011-04-09,,58,45 +2011-04-10,,59,47 +2011-04-11,,62,49 +2011-04-12,,56,47 +2011-04-13,,58,46 +2011-04-14,,61,46 +2011-04-15,,65,49 +2011-04-16,,66,53 +2011-04-17,,61,53 +2011-04-18,,62,53 +2011-04-19,,66,52 +2011-04-20,,65,53 +2011-04-21,,60,49 +2011-04-22,,58,48 +2011-04-23,,62,49 +2011-04-24,,61,54 +2011-04-25,,62,51 +2011-04-26,,62,49 +2011-04-27,,61,49 +2011-04-28,,61,48 +2011-04-29,,64,43 +2011-04-30,,69,50 +2011-05-01,,76,47 +2011-05-02,,65,50 +2011-05-03,,69,49 +2011-05-04,,84,52 +2011-05-05,,78,52 +2011-05-06,,60,50 +2011-05-07,,60,51 +2011-05-08,,61,50 +2011-05-09,,63,47 +2011-05-10,,62,49 +2011-05-11,,59,51 +2011-05-12,,63,50 +2011-05-13,,60,48 +2011-05-14,,58,47 +2011-05-15,,60,46 +2011-05-16,,61,50 +2011-05-17,,57,50 +2011-05-18,,63,51 +2011-05-19,,68,49 +2011-05-20,,64,50 +2011-05-21,,62,52 +2011-05-22,,61,51 +2011-05-23,,64,50 +2011-05-24,,62,49 +2011-05-25,,62,49 +2011-05-26,,64,50 +2011-05-27,,63,53 +2011-05-28,,64,50 +2011-05-29,,65,48 +2011-05-30,,62,50 +2011-05-31,,60,54 +2011-06-01,,62,51 +2011-06-02,,63,51 +2011-06-03,,61,50 +2011-06-04,,66,55 +2011-06-05,,66,55 +2011-06-06,,61,56 +2011-06-07,,67,53 +2011-06-08,,67,54 +2011-06-09,,69,51 +2011-06-10,,63,53 +2011-06-11,,60,52 +2011-06-12,,66,52 +2011-06-13,,65,53 +2011-06-14,,76,51 +2011-06-15,,71,53 +2011-06-16,,68,52 +2011-06-17,,71,51 +2011-06-18,,69,52 +2011-06-19,,79,53 +2011-06-20,,90,57 +2011-06-21,,86,54 +2011-06-22,,68,52 +2011-06-23,,66,53 +2011-06-24,,70,52 +2011-06-25,,65,52 +2011-06-26,,69,53 +2011-06-27,,65,53 +2011-06-28,,62,55 +2011-06-29,,64,54 +2011-06-30,,69,53 +2011-07-01,,80,54 +2011-07-02,,70,53 +2011-07-03,,84,56 +2011-07-04,,69,55 +2011-07-05,,78,52 +2011-07-06,,70,52 +2011-07-07,,69,53 +2011-07-08,,72,53 +2011-07-09,,66,52 +2011-07-10,,69,53 +2011-07-11,,63,53 +2011-07-12,,65,54 +2011-07-13,,61,55 +2011-07-14,,63,55 +2011-07-15,,64,55 +2011-07-16,,70,56 +2011-07-17,,67,57 +2011-07-18,,75,56 +2011-07-19,,69,57 +2011-07-20,,80,56 +2011-07-21,,74,54 +2011-07-22,,75,55 +2011-07-23,,72,55 +2011-07-24,,72,56 +2011-07-25,,66,55 +2011-07-26,,70,55 +2011-07-27,,73,55 +2011-07-28,,70,55 +2011-07-29,,70,56 +2011-07-30,,73,58 +2011-07-31,,71,58 +2011-08-01,,69,56 +2011-08-02,,67,54 +2011-08-03,,74,52 +2011-08-04,,64,57 +2011-08-05,,71,55 +2011-08-06,,73,55 +2011-08-07,,64,56 +2011-08-08,,66,55 +2011-08-09,,69,53 +2011-08-10,,72,53 +2011-08-11,,68,54 +2011-08-12,,68,54 +2011-08-13,,71,54 +2011-08-14,,71,55 +2011-08-15,,71,56 +2011-08-16,,69,54 +2011-08-17,,67,55 +2011-08-18,,66,55 +2011-08-19,,68,55 +2011-08-20,,68,56 +2011-08-21,,68,57 +2011-08-22,,67,56 +2011-08-23,,85,55 +2011-08-24,,71,56 +2011-08-25,,69,57 +2011-08-26,,69,56 +2011-08-27,,69,54 +2011-08-28,,68,53 +2011-08-29,,68,55 +2011-08-30,,71,56 +2011-08-31,,70,54 +2011-09-01,,71,54 +2011-09-02,,74,55 +2011-09-03,,67,54 +2011-09-04,,66,55 +2011-09-05,,65,53 +2011-09-06,,73,52 +2011-09-07,,86,52 +2011-09-08,,65,53 +2011-09-09,,68,54 +2011-09-10,,74,56 +2011-09-11,,73,61 +2011-09-12,,69,60 +2011-09-13,,70,57 +2011-09-14,,66,56 +2011-09-15,,68,57 +2011-09-16,,66,56 +2011-09-17,,72,52 +2011-09-18,,81,55 +2011-09-19,,88,57 +2011-09-20,,86,57 +2011-09-21,,78,54 +2011-09-22,,75,54 +2011-09-23,,78,55 +2011-09-24,,69,56 +2011-09-25,,70,55 +2011-09-26,,73,53 +2011-09-27,,82,55 +2011-09-28,,90,61 +2011-09-29,,77,57 +2011-09-30,,72,61 +2011-10-01,,73,61 +2011-10-02,,72,57 +2011-10-03,,66,55 +2011-10-04,,66,57 +2011-10-05,,64,53 +2011-10-06,,64,54 +2011-10-07,,68,50 +2011-10-08,,70,52 +2011-10-09,,67,53 +2011-10-10,,67,60 +2011-10-11,,73,59 +2011-10-12,,78,57 +2011-10-13,,83,59 +2011-10-14,,83,60 +2011-10-15,,72,60 +2011-10-16,,72,59 +2011-10-17,,79,56 +2011-10-18,,66,56 +2011-10-19,,64,57 +2011-10-20,,64,54 +2011-10-21,,71,53 +2011-10-22,,82,54 +2011-10-23,,80,57 +2011-10-24,,70,55 +2011-10-25,,65,51 +2011-10-26,,69,47 +2011-10-27,,72,48 +2011-10-28,,70,50 +2011-10-29,,74,49 +2011-10-30,,74,52 +2011-10-31,,71,53 +2011-11-01,,71,51 +2011-11-02,,72,54 +2011-11-03,,60,48 +2011-11-04,,57,46 +2011-11-05,,57,48 +2011-11-06,,59,48 +2011-11-07,,60,46 +2011-11-08,,61,43 +2011-11-09,,62,43 +2011-11-10,,63,45 +2011-11-11,,59,48 +2011-11-12,,60,50 +2011-11-13,,63,50 +2011-11-14,,61,50 +2011-11-15,,63,46 +2011-11-16,,62,47 +2011-11-17,,61,51 +2011-11-18,,58,48 +2011-11-19,,55,43 +2011-11-20,,55,48 +2011-11-21,,57,48 +2011-11-22,,60,46 +2011-11-23,,60,48 +2011-11-24,,56,48 +2011-11-25,,57,48 +2011-11-26,,59,49 +2011-11-27,,57,47 +2011-11-28,,57,47 +2011-11-29,,53,47 +2011-11-30,,64,48 +2011-12-01,,63,56 +2011-12-02,,71,54 +2011-12-03,,61,47 +2011-12-04,,58,42 +2011-12-05,,57,41 +2011-12-06,,54,39 +2011-12-07,,55,39 +2011-12-08,,57,39 +2011-12-09,,58,39 +2011-12-10,,57,40 +2011-12-11,,53,43 +2011-12-12,,51,43 +2011-12-13,,56,39 +2011-12-14,,52,40 +2011-12-15,,53,43 +2011-12-16,,62,38 +2011-12-17,,55,39 +2011-12-18,,53,40 +2011-12-19,,59,45 +2011-12-20,,60,40 +2011-12-21,,60,39 +2011-12-22,,57,39 +2011-12-23,,52,36 +2011-12-24,,57,36 +2011-12-25,,52,36 +2011-12-26,,52,39 +2011-12-27,,57,45 +2011-12-28,,59,43 +2011-12-29,,56,46 +2011-12-30,,54,49 +2011-12-31,,57,43 +2012-01-01,,58,43 +2012-01-02,,55,45 +2012-01-03,,53,48 +2012-01-04,,57,43 +2012-01-05,,61,43 +2012-01-06,,56,44 +2012-01-07,,64,41 +2012-01-08,,65,46 +2012-01-09,,60,41 +2012-01-10,,59,40 +2012-01-11,,65,39 +2012-01-12,,63,40 +2012-01-13,,62,40 +2012-01-14,,60,40 +2012-01-15,,52,44 +2012-01-16,,50,35 +2012-01-17,,51,34 +2012-01-18,,53,35 +2012-01-19,,52,38 +2012-01-20,,59,49 +2012-01-21,,57,45 +2012-01-22,,53,44 +2012-01-23,,57,49 +2012-01-24,,58,46 +2012-01-25,,61,49 +2012-01-26,,60,50 +2012-01-27,,65,46 +2012-01-28,,61,40 +2012-01-29,,60,43 +2012-01-30,,56,49 +2012-01-31,,57,45 +2012-02-01,,57,45 +2012-02-02,,66,43 +2012-02-03,,62,44 +2012-02-04,,62,42 +2012-02-05,,60,42 +2012-02-06,,61,45 +2012-02-07,,59,53 +2012-02-08,,63,48 +2012-02-09,,66,46 +2012-02-10,,62,46 +2012-02-11,,54,49 +2012-02-12,,56,47 +2012-02-13,,53,45 +2012-02-14,,56,43 +2012-02-15,,58,42 +2012-02-16,,63,41 +2012-02-17,,59,44 +2012-02-18,,57,46 +2012-02-19,,54,42 +2012-02-20,,56,48 +2012-02-21,,61,47 +2012-02-22,,70,48 +2012-02-23,,68,47 +2012-02-24,,70,47 +2012-02-25,,57,45 +2012-02-26,,54,39 +2012-02-27,,52,39 +2012-02-28,,54,44 +2012-02-29,,56,46 +2012-03-01,,54,43 +2012-03-02,,63,40 +2012-03-03,,69,42 +2012-03-04,,73,45 +2012-03-05,,57,43 +2012-03-06,,54,46 +2012-03-07,,61,46 +2012-03-08,,65,41 +2012-03-09,,68,43 +2012-03-10,,59,46 +2012-03-11,,60,48 +2012-03-12,,61,42 +2012-03-13,,56,52 +2012-03-14,,58,55 +2012-03-15,,61,55 +2012-03-16,,58,48 +2012-03-17,,52,43 +2012-03-18,,52,44 +2012-03-19,,56,43 +2012-03-20,,62,50 +2012-03-21,,67,49 +2012-03-22,,55,47 +2012-03-23,,60,42 +2012-03-24,,53,44 +2012-03-25,,57,44 +2012-03-26,,58,45 +2012-03-27,,59,52 +2012-03-28,,64,52 +2012-03-29,,63,50 +2012-03-30,,64,54 +2012-03-31,,60,48 +2012-04-01,,57,48 +2012-04-02,,63,45 +2012-04-03,,64,49 +2012-04-04,,57,46 +2012-04-05,,55,44 +2012-04-06,,57,43 +2012-04-07,,64,41 +2012-04-08,,64,43 +2012-04-09,,65,47 +2012-04-10,,57,52 +2012-04-11,,59,49 +2012-04-12,,61,47 +2012-04-13,,55,47 +2012-04-14,,60,48 +2012-04-15,,64,51 +2012-04-16,,62,50 +2012-04-17,,61,52 +2012-04-18,,65,51 +2012-04-19,,68,55 +2012-04-20,,78,55 +2012-04-21,,80,56 +2012-04-22,,69,52 +2012-04-23,,67,54 +2012-04-24,,69,59 +2012-04-25,,70,58 +2012-04-26,,61,52 +2012-04-27,,64,49 +2012-04-28,,64,51 +2012-04-29,,71,50 +2012-04-30,,70,50 +2012-05-01,,59,49 +2012-05-02,,58,48 +2012-05-03,,63,51 +2012-05-04,,61,50 +2012-05-05,,69,47 +2012-05-06,,78,49 +2012-05-07,,83,51 +2012-05-08,,76,50 +2012-05-09,,64,51 +2012-05-10,,77,49 +2012-05-11,,78,50 +2012-05-12,,67,48 +2012-05-13,,66,50 +2012-05-14,,66,53 +2012-05-15,,61,51 +2012-05-16,,59,50 +2012-05-17,,61,50 +2012-05-18,,67,48 +2012-05-19,,68,49 +2012-05-20,,72,52 +2012-05-21,,65,52 +2012-05-22,,64,52 +2012-05-23,,64,52 +2012-05-24,,63,50 +2012-05-25,,62,50 +2012-05-26,,60,49 +2012-05-27,,61,52 +2012-05-28,,63,51 +2012-05-29,,65,51 +2012-05-30,,67,50 +2012-05-31,,78,51 +2012-06-01,,69,53 +2012-06-02,,67,52 +2012-06-03,,68,51 +2012-06-04,,61,53 +2012-06-05,,63,50 +2012-06-06,,63,50 +2012-06-07,,67,51 +2012-06-08,,64,51 +2012-06-09,,70,50 +2012-06-10,,85,56 +2012-06-11,,80,54 +2012-06-12,,74,53 +2012-06-13,,66,52 +2012-06-14,,65,52 +2012-06-15,,74,50 +2012-06-16,,87,55 +2012-06-17,,73,55 +2012-06-18,,71,54 +2012-06-19,,74,53 +2012-06-20,,79,54 +2012-06-21,,60,52 +2012-06-22,,69,52 +2012-06-23,,66,53 +2012-06-24,,67,53 +2012-06-25,,69,53 +2012-06-26,,69,54 +2012-06-27,,70,53 +2012-06-28,,68,55 +2012-06-29,,68,56 +2012-06-30,,71,58 +2012-07-01,,68,58 +2012-07-02,,67,55 +2012-07-03,,69,55 +2012-07-04,,72,54 +2012-07-05,,65,55 +2012-07-06,,68,55 +2012-07-07,,75,53 +2012-07-08,,64,53 +2012-07-09,,65,53 +2012-07-10,,74,51 +2012-07-11,,77,52 +2012-07-12,,66,53 +2012-07-13,,63,53 +2012-07-14,,69,54 +2012-07-15,,69,54 +2012-07-16,,66,56 +2012-07-17,,70,57 +2012-07-18,,68,57 +2012-07-19,,71,55 +2012-07-20,,71,57 +2012-07-21,,82,56 +2012-07-22,,71,54 +2012-07-23,,74,56 +2012-07-24,,74,58 +2012-07-25,,72,57 +2012-07-26,,70,56 +2012-07-27,,72,55 +2012-07-28,,66,54 +2012-07-29,,70,54 +2012-07-30,,76,54 +2012-07-31,,68,55 +2012-08-01,,70,53 +2012-08-02,,70,53 +2012-08-03,,71,53 +2012-08-04,,65,54 +2012-08-05,,69,57 +2012-08-06,,69,56 +2012-08-07,,69,56 +2012-08-08,,72,55 +2012-08-09,,72,54 +2012-08-10,,66,53 +2012-08-11,,71,52 +2012-08-12,,65,53 +2012-08-13,,70,53 +2012-08-14,,68,54 +2012-08-15,,69,57 +2012-08-16,,70,55 +2012-08-17,,65,55 +2012-08-18,,68,56 +2012-08-19,,65,53 +2012-08-20,,64,52 +2012-08-21,,65,54 +2012-08-22,,68,54 +2012-08-23,,67,54 +2012-08-24,,71,53 +2012-08-25,,67,53 +2012-08-26,,67,57 +2012-08-27,,75,58 +2012-08-28,,76,57 +2012-08-29,,80,54 +2012-08-30,,67,54 +2012-08-31,,62,57 +2012-09-01,,68,53 +2012-09-02,,74,52 +2012-09-03,,74,52 +2012-09-04,,64,51 +2012-09-05,,65,54 +2012-09-06,,67,55 +2012-09-07,,68,54 +2012-09-08,,64,56 +2012-09-09,,68,55 +2012-09-10,,75,53 +2012-09-11,,71,54 +2012-09-12,,67,54 +2012-09-13,,66,53 +2012-09-14,,65,54 +2012-09-15,,65,53 +2012-09-16,,66,51 +2012-09-17,,66,54 +2012-09-18,,65,53 +2012-09-19,,64,55 +2012-09-20,,64,54 +2012-09-21,,70,54 +2012-09-22,,73,51 +2012-09-23,,71,50 +2012-09-24,,68,51 +2012-09-25,,68,52 +2012-09-26,,65,52 +2012-09-27,,70,51 +2012-09-28,,69,52 +2012-09-29,,67,53 +2012-09-30,,82,52 +2012-10-01,,91,57 +2012-10-02,,93,62 +2012-10-03,,79,60 +2012-10-04,,72,59 +2012-10-05,,72,59 +2012-10-06,,72,56 +2012-10-07,,70,55 +2012-10-08,,69,53 +2012-10-09,,69,54 +2012-10-10,,67,56 +2012-10-11,,59,56 +2012-10-12,,65,55 +2012-10-13,,72,52 +2012-10-14,,71,56 +2012-10-15,,72,55 +2012-10-16,,72,53 +2012-10-17,,86,55 +2012-10-18,,86,58 +2012-10-19,,70,57 +2012-10-20,,66,54 +2012-10-21,,62,53 +2012-10-22,,64,55 +2012-10-23,,63,52 +2012-10-24,,65,53 +2012-10-25,,66,55 +2012-10-26,,71,50 +2012-10-27,,78,55 +2012-10-28,,72,56 +2012-10-29,,70,53 +2012-10-30,,66,52 +2012-10-31,,64,57 +2012-11-01,,66,55 +2012-11-02,,65,50 +2012-11-03,,71,51 +2012-11-04,,76,55 +2012-11-05,,79,56 +2012-11-06,,78,56 +2012-11-07,,64,53 +2012-11-08,,61,49 +2012-11-09,,57,46 +2012-11-10,,59,48 +2012-11-11,,60,43 +2012-11-12,,63,43 +2012-11-13,,65,47 +2012-11-14,,68,50 +2012-11-15,,66,48 +2012-11-16,,63,54 +2012-11-17,,64,54 +2012-11-18,,62,52 +2012-11-19,,67,52 +2012-11-20,,66,57 +2012-11-21,,64,52 +2012-11-22,,64,47 +2012-11-23,,65,48 +2012-11-24,,67,49 +2012-11-25,,67,51 +2012-11-26,,60,47 +2012-11-27,,61,49 +2012-11-28,,63,56 +2012-11-29,,64,55 +2012-11-30,,63,56 +2012-12-01,,64,58 +2012-12-02,,64,51 +2012-12-03,,59,46 +2012-12-04,,62,52 +2012-12-05,,62,58 +2012-12-06,,60,51 +2012-12-07,,60,46 +2012-12-08,,59,46 +2012-12-09,,65,46 +2012-12-10,,66,52 +2012-12-11,,58,46 +2012-12-12,,55,46 +2012-12-13,,54,42 +2012-12-14,,53,42 +2012-12-15,,49,40 +2012-12-16,,57,47 +2012-12-17,,59,50 +2012-12-18,,53,44 +2012-12-19,,51,36 +2012-12-20,,60,37 +2012-12-21,,58,52 +2012-12-22,,59,50 +2012-12-23,,61,51 +2012-12-24,,56,46 +2012-12-25,,54,44 +2012-12-26,,55,48 +2012-12-27,,54,46 +2012-12-28,,50,41 +2012-12-29,,54,44 +2012-12-30,,55,40 +2012-12-31,,53,37 +2013-01-01,,53,42 +2013-01-02,,55,37 +2013-01-03,,53,37 +2013-01-04,,55,40 +2013-01-05,,53,41 +2013-01-06,,52,47 +2013-01-07,,57,41 +2013-01-08,,56,43 +2013-01-09,,55,43 +2013-01-10,,51,44 +2013-01-11,,52,44 +2013-01-12,,49,38 +2013-01-13,,50,36 +2013-01-14,,52,36 +2013-01-15,,54,34 +2013-01-16,,52,36 +2013-01-17,,59,38 +2013-01-18,,62,39 +2013-01-19,,60,39 +2013-01-20,,62,39 +2013-01-21,,56,38 +2013-01-22,,57,41 +2013-01-23,,55,50 +2013-01-24,,56,50 +2013-01-25,,63,51 +2013-01-26,,56,49 +2013-01-27,,54,44 +2013-01-28,,56,45 +2013-01-29,,56,45 +2013-01-30,,61,43 +2013-01-31,,62,42 +2013-02-01,,64,44 +2013-02-02,,56,47 +2013-02-03,,56,47 +2013-02-04,,54,44 +2013-02-05,,55,47 +2013-02-06,,56,40 +2013-02-07,,55,42 +2013-02-08,,52,41 +2013-02-09,,56,41 +2013-02-10,,59,38 +2013-02-11,,63,41 +2013-02-12,,58,41 +2013-02-13,,59,41 +2013-02-14,,68,42 +2013-02-15,,68,46 +2013-02-16,,66,48 +2013-02-17,,59,48 +2013-02-18,,52,45 +2013-02-19,,49,41 +2013-02-20,,55,40 +2013-02-21,,57,44 +2013-02-22,,60,40 +2013-02-23,,56,47 +2013-02-24,,60,46 +2013-02-25,,58,43 +2013-02-26,,63,41 +2013-02-27,,64,40 +2013-02-28,,60,46 +2013-03-01,,71,46 +2013-03-02,,63,51 +2013-03-03,,59,49 +2013-03-04,,56,46 +2013-03-05,,56,43 +2013-03-06,,55,45 +2013-03-07,,55,43 +2013-03-08,,55,46 +2013-03-09,,61,44 +2013-03-10,,66,43 +2013-03-11,,64,43 +2013-03-12,,67,47 +2013-03-13,,75,45 +2013-03-14,,61,47 +2013-03-15,,64,46 +2013-03-16,,62,47 +2013-03-17,,62,48 +2013-03-18,,60,45 +2013-03-19,,64,48 +2013-03-20,,62,50 +2013-03-21,,59,44 +2013-03-22,,63,43 +2013-03-23,,65,43 +2013-03-24,,61,44 +2013-03-25,,56,47 +2013-03-26,,61,48 +2013-03-27,,64,50 +2013-03-28,,67,53 +2013-03-29,,74,50 +2013-03-30,,64,52 +2013-03-31,,65,54 +2013-04-01,58,65,52 +2013-04-02,55,60,50 +2013-04-03,53,68,49 +2013-04-04,56,64,53 +2013-04-05,58,64,54 +2013-04-06,57,62,53 +2013-04-07,57,62,50 +2013-04-08,54,63,49 +2013-04-09,58,68,50 +2013-04-10,62,80,51 +2013-04-11,56,65,49 +2013-04-12,53,63,47 +2013-04-13,54,61,48 +2013-04-14,52,60,47 +2013-04-15,51,57,46 +2013-04-16,51,62,45 +2013-04-17,58,67,50 +2013-04-18,57,73,47 +2013-04-19,56,72,49 +2013-04-20,58,73,50 +2013-04-21,59,78,49 +2013-04-22,65,83,51 +2013-04-23,63,76,49 +2013-04-24,55,68,47 +2013-04-25,58,65,53 +2013-04-26,55,61,50 +2013-04-27,53,61,49 +2013-04-28,55,71,47 +2013-04-29,64,80,52 +2013-04-30,58,70,50 +2013-05-01,67,78,55 +2013-05-02,67,89,56 +2013-05-03,69,85,56 +2013-05-04,66,84,54 +2013-05-05,62,70,56 +2013-05-06,63,70,59 +2013-05-07,63,71,53 +2013-05-08,56,61,53 +2013-05-09,55,62,52 +2013-05-10,55,60,51 +2013-05-11,56,69,51 +2013-05-12,59,69,53 +2013-05-13,58,65,51 +2013-05-14,58,65,53 +2013-05-15,56,62,52 +2013-05-16,57,64,54 +2013-05-17,57,64,53 +2013-05-18,57,67,52 +2013-05-19,59,75,51 +2013-05-20,63,83,52 +2013-05-21,57,63,49 +2013-05-22,54,62,48 +2013-05-23,53,62,48 +2013-05-24,54,62,49 +2013-05-25,54,60,50 +2013-05-26,57,66,53 +2013-05-27,57,62,54 +2013-05-28,60,65,55 +2013-05-29,59,65,52 +2013-05-30,57,65,51 +2013-05-31,59,74,50 +2013-06-01,61,77,52 +2013-06-02,58,65,50 +2013-06-03,59,73,51 +2013-06-04,60,69,54 +2013-06-05,59,66,54 +2013-06-06,58,66,53 +2013-06-07,59,74,52 +2013-06-08,65,78,56 +2013-06-09,64,70,59 +2013-06-10,62,70,57 +2013-06-11,60,67,55 +2013-06-12,59,67,52 +2013-06-13,58,67,51 +2013-06-14,61,78,52 +2013-06-15,57,62,51 +2013-06-16,57,68,52 +2013-06-17,59,65,53 +2013-06-18,59,65,54 +2013-06-19,59,67,54 +2013-06-20,59,67,52 +2013-06-21,59,71,51 +2013-06-22,60,73,52 +2013-06-23,60,68,55 +2013-06-24,60,65,56 +2013-06-25,65,72,62 +2013-06-26,68,78,62 +2013-06-27,67,78,60 +2013-06-28,67,82,59 +2013-06-29,69,84,61 +2013-06-30,66,71,57 +2013-07-01,64,79,56 +2013-07-02,64,82,58 +2013-07-03,64,80,58 +2013-07-04,67,77,59 +2013-07-05,61,65,55 +2013-07-06,60,72,55 +2013-07-07,62,72,56 +2013-07-08,61,70,56 +2013-07-09,61,71,54 +2013-07-10,59,69,53 +2013-07-11,59,67,53 +2013-07-12,60,67,53 +2013-07-13,60,73,52 +2013-07-14,58,66,53 +2013-07-15,58,69,53 +2013-07-16,60,71,56 +2013-07-17,61,66,55 +2013-07-18,59,69,54 +2013-07-19,59,67,54 +2013-07-20,58,70,54 +2013-07-21,59,68,54 +2013-07-22,61,78,57 +2013-07-23,63,69,56 +2013-07-24,62,71,55 +2013-07-25,60,68,54 +2013-07-26,60,68,55 +2013-07-27,61,70,56 +2013-07-28,61,71,56 +2013-07-29,61,69,55 +2013-07-30,61,68,55 +2013-07-31,60,70,54 +2013-08-01,60,68,56 +2013-08-02,60,68,53 +2013-08-03,60,70,53 +2013-08-04,59,67,55 +2013-08-05,59,67,55 +2013-08-06,59,70,55 +2013-08-07,62,72,57 +2013-08-08,62,68,56 +2013-08-09,60,70,56 +2013-08-10,62,70,58 +2013-08-11,60,66,55 +2013-08-12,62,74,56 +2013-08-13,61,77,55 +2013-08-14,62,71,56 +2013-08-15,66,77,62 +2013-08-16,66,72,59 +2013-08-17,63,72,59 +2013-08-18,64,78,57 +2013-08-19,67,74,59 +2013-08-20,65,76,59 +2013-08-21,63,72,58 +2013-08-22,63,70,58 +2013-08-23,61,66,57 +2013-08-24,62,71,58 +2013-08-25,66,73,62 +2013-08-26,65,70,59 +2013-08-27,62,72,56 +2013-08-28,64,75,59 +2013-08-29,66,74,61 +2013-08-30,66,78,60 +2013-08-31,64,71,57 +2013-09-01,64,74,58 +2013-09-02,67,75,62 +2013-09-03,66,73,60 +2013-09-04,66,74,61 +2013-09-05,65,72,60 +2013-09-06,66,85,56 +2013-09-07,72,88,58 +2013-09-08,63,74,56 +2013-09-09,62,76,55 +2013-09-10,64,74,57 +2013-09-11,66,74,62 +2013-09-12,65,71,59 +2013-09-13,61,66,57 +2013-09-14,59,66,57 +2013-09-15,63,73,58 +2013-09-16,64,71,59 +2013-09-17,63,68,57 +2013-09-18,62,78,54 +2013-09-19,62,80,54 +2013-09-20,63,73,56 +2013-09-21,65,68,58 +2013-09-22,61,70,55 +2013-09-23,64,78,57 +2013-09-24,65,71,58 +2013-09-25,61,67,56 +2013-09-26,60,71,53 +2013-09-27,63,78,54 +2013-09-28,62,78,53 +2013-09-29,63,75,57 +2013-09-30,68,73,59 +2013-10-01,62,69,56 +2013-10-02,60,69,54 +2013-10-03,60,70,54 +2013-10-04,68,76,61 +2013-10-05,69,80,57 +2013-10-06,67,83,56 +2013-10-07,68,80,56 +2013-10-08,60,72,52 +2013-10-09,58,68,52 +2013-10-10,60,70,53 +2013-10-11,57,63,51 +2013-10-12,53,64,47 +2013-10-13,58,73,51 +2013-10-14,60,77,51 +2013-10-15,65,80,53 +2013-10-16,64,80,53 +2013-10-17,65,81,54 +2013-10-18,60,68,51 +2013-10-19,56,74,49 +2013-10-20,56,64,49 +2013-10-21,52,61,48 +2013-10-22,52,64,47 +2013-10-23,52,61,49 +2013-10-24,54,60,53 +2013-10-25,56,67,50 +2013-10-26,57,70,49 +2013-10-27,54,60,50 +2013-10-28,56,61,52 +2013-10-29,57,63,52 +2013-10-30,54,65,48 +2013-10-31,56,70,48 +2013-11-01,59,74,51 +2013-11-02,58,63,50 +2013-11-03,56,63,47 +2013-11-04,55,67,44 +2013-11-05,60,71,50 +2013-11-06,59,70,51 +2013-11-07,62,71,56 +2013-11-08,57,70,50 +2013-11-09,56,66,48 +2013-11-10,57,64,51 +2013-11-11,56,62,54 +2013-11-12,60,70,57 +2013-11-13,60,68,52 +2013-11-14,54,61,51 +2013-11-15,55,65,50 +2013-11-16,54,62,49 +2013-11-17,55,63,49 +2013-11-18,53,60,46 +2013-11-19,56,61,54 +2013-11-20,57,59,51 +2013-11-21,53,62,50 +2013-11-22,60,69,57 +2013-11-23,60,65,50 +2013-11-24,53,60,45 +2013-11-25,53,61,44 +2013-11-26,54,62,47 +2013-11-27,55,62,48 +2013-11-28,56,66,49 +2013-11-29,56,62,46 +2013-11-30,53,63,45 +2013-12-01,53,67,46 +2013-12-02,55,62,46 +2013-12-03,54,56,46 +2013-12-04,48,52,39 +2013-12-05,44,51,35 +2013-12-06,45,53,37 +2013-12-07,49,52,38 +2013-12-08,42,47,36 +2013-12-09,43,52,36 +2013-12-10,44,52,34 +2013-12-11,46,57,38 +2013-12-12,47,54,38 +2013-12-13,48,53,40 +2013-12-14,48,61,39 +2013-12-15,50,60,40 +2013-12-16,53,65,43 +2013-12-17,52,59,46 +2013-12-18,52,57,44 +2013-12-19,52,59,47 +2013-12-20,51,60,40 +2013-12-21,52,60,47 +2013-12-22,51,65,43 +2013-12-23,53,60,44 +2013-12-24,52,59,45 +2013-12-25,53,63,42 +2013-12-26,52,62,43 +2013-12-27,52,57,43 +2013-12-28,50,63,40 +2013-12-29,55,68,42 +2013-12-30,51,59,42 +2013-12-31,49,59,41 +2014-01-01,49,56,41 +2014-01-02,51,62,43 +2014-01-03,52,64,44 +2014-01-04,53,66,43 +2014-01-05,55,66,44 +2014-01-06,52,60,44 +2014-01-07,53,61,46 +2014-01-08,55,59,52 +2014-01-09,54,60,52 +2014-01-10,53,60,48 +2014-01-11,51,58,46 +2014-01-12,52,60,46 +2014-01-13,55,67,42 +2014-01-14,56,72,44 +2014-01-15,58,73,48 +2014-01-16,58,73,46 +2014-01-17,56,67,45 +2014-01-18,54,67,43 +2014-01-19,54,67,43 +2014-01-20,54,66,43 +2014-01-21,53,68,43 +2014-01-22,53,65,44 +2014-01-23,55,69,44 +2014-01-24,54,64,46 +2014-01-25,56,65,48 +2014-01-26,57,66,48 +2014-01-27,53,59,48 +2014-01-28,56,65,53 +2014-01-29,60,63,54 +2014-01-30,55,58,52 +2014-01-31,53,60,47 +2014-02-01,51,59,42 +2014-02-02,49,58,47 +2014-02-03,50,56,46 +2014-02-04,49,55,44 +2014-02-05,50,55,43 +2014-02-06,50,52,48 +2014-02-07,53,56,51 +2014-02-08,55,59,53 +2014-02-09,57,59,55 +2014-02-10,56,57,51 +2014-02-11,52,56,49 +2014-02-12,50,56,46 +2014-02-13,53,67,50 +2014-02-14,60,66,56 +2014-02-15,57,62,52 +2014-02-16,57,63,50 +2014-02-17,54,61,46 +2014-02-18,54,62,48 +2014-02-19,57,62,51 +2014-02-20,54,67,45 +2014-02-21,56,69,47 +2014-02-22,55,66,46 +2014-02-23,52,63,46 +2014-02-24,53,71,45 +2014-02-25,56,62,48 +2014-02-26,56,60,54 +2014-02-27,58,65,55 +2014-02-28,59,61,54 +2014-03-01,56,63,53 +2014-03-02,56,60,52 +2014-03-03,55,60,50 +2014-03-04,57,62,53 +2014-03-05,58,68,55 +2014-03-06,59,63,54 +2014-03-07,56,64,49 +2014-03-08,55,67,48 +2014-03-09,62,71,58 +2014-03-10,61,66,55 +2014-03-11,60,69,56 +2014-03-12,63,72,58 +2014-03-13,62,76,53 +2014-03-14,58,69,53 +2014-03-15,60,76,51 +2014-03-16,59,68,51 +2014-03-17,57,66,52 +2014-03-18,58,71,48 +2014-03-19,59,73,49 +2014-03-20,60,69,51 +2014-03-21,55,65,49 +2014-03-22,55,65,47 +2014-03-23,55,64,49 +2014-03-24,56,71,48 +2014-03-25,57,62,48 +2014-03-26,57,62,53 +2014-03-27,58,65,54 +2014-03-28,60,71,55 +2014-03-29,60,60,53 +2014-03-30,56,61,50 +2014-03-31,54,57,49 +2014-04-01,51,59,48 +2014-04-02,51,61,47 +2014-04-03,54,64,49 +2014-04-04,56,60,51 +2014-04-05,55,63,50 +2014-04-06,59,74,50 +2014-04-07,64,82,55 +2014-04-08,65,78,55 +2014-04-09,58,64,51 +2014-04-10,56,72,48 +2014-04-11,57,64,53 +2014-04-12,57,67,51 +2014-04-13,58,71,54 +2014-04-14,57,68,52 +2014-04-15,57,65,52 +2014-04-16,59,73,52 +2014-04-17,58,64,53 +2014-04-18,58,63,52 +2014-04-19,57,63,51 +2014-04-20,59,79,51 +2014-04-21,59,69,52 +2014-04-22,57,63,52 +2014-04-23,57,66,52 +2014-04-24,59,67,55 +2014-04-25,58,60,52 +2014-04-26,54,62,49 +2014-04-27,58,64,53 +2014-04-28,58,69,52 +2014-04-29,64,86,54 +2014-04-30,71,90,60 +2014-05-01,75,86,62 +2014-05-02,66,73,54 +2014-05-03,59,67,55 +2014-05-04,61,68,57 +2014-05-05,61,66,55 +2014-05-06,58,67,52 +2014-05-07,57,64,51 +2014-05-08,58,65,54 +2014-05-09,60,66,54 +2014-05-10,58,67,52 +2014-05-11,62,75,51 +2014-05-12,63,84,52 +2014-05-13,70,92,59 +2014-05-14,75,91,63 +2014-05-15,74,84,58 +2014-05-16,63,72,55 +2014-05-17,61,67,57 +2014-05-18,61,68,57 +2014-05-19,61,68,56 +2014-05-20,62,71,56 +2014-05-21,61,71,56 +2014-05-22,61,70,54 +2014-05-23,60,69,54 +2014-05-24,61,67,55 +2014-05-25,62,72,54 +2014-05-26,62,72,56 +2014-05-27,61,68,54 +2014-05-28,61,72,53 +2014-05-29,63,78,53 +2014-05-30,58,65,52 +2014-05-31,59,68,52 +2014-06-01,58,72,52 +2014-06-02,58,67,52 +2014-06-03,59,67,53 +2014-06-04,59,68,53 +2014-06-05,60,71,53 +2014-06-06,61,71,54 +2014-06-07,60,70,53 +2014-06-08,65,87,55 +2014-06-09,68,77,58 +2014-06-10,64,73,58 +2014-06-11,65,73,57 +2014-06-12,61,67,56 +2014-06-13,62,73,54 +2014-06-14,65,84,56 +2014-06-15,60,70,56 +2014-06-16,59,65,55 +2014-06-17,61,75,53 +2014-06-18,65,86,55 +2014-06-19,63,72,55 +2014-06-20,63,75,56 +2014-06-21,61,66,56 +2014-06-22,60,68,55 +2014-06-23,61,71,56 +2014-06-24,63,69,57 +2014-06-25,62,69,58 +2014-06-26,64,73,57 +2014-06-27,65,75,59 +2014-06-28,64,73,58 +2014-06-29,65,80,57 +2014-06-30,68,82,59 +2014-07-01,65,76,58 +2014-07-02,64,76,58 +2014-07-03,62,73,57 +2014-07-04,61,68,55 +2014-07-05,60,71,53 +2014-07-06,59,69,53 +2014-07-07,60,72,54 +2014-07-08,63,76,56 +2014-07-09,65,75,59 +2014-07-10,66,74,61 +2014-07-11,65,72,60 +2014-07-12,64,69,54 +2014-07-13,60,68,53 +2014-07-14,65,76,58 +2014-07-15,65,81,59 +2014-07-16,70,78,62 +2014-07-17,67,74,63 +2014-07-18,67,74,62 +2014-07-19,66,74,61 +2014-07-20,67,78,58 +2014-07-21,70,76,65 +2014-07-22,69,77,64 +2014-07-23,70,76,64 +2014-07-24,68,83,60 +2014-07-25,71,90,62 +2014-07-26,69,77,61 +2014-07-27,67,77,61 +2014-07-28,66,74,60 +2014-07-29,65,73,60 +2014-07-30,64,72,58 +2014-07-31,63,72,58 +2014-08-01,64,72,59 +2014-08-02,63,69,59 +2014-08-03,63,70,60 +2014-08-04,65,75,60 +2014-08-05,66,74,62 +2014-08-06,68,77,60 +2014-08-07,64,70,60 +2014-08-08,65,74,60 +2014-08-09,63,70,59 +2014-08-10,63,77,60 +2014-08-11,67,79,61 +2014-08-12,68,77,62 +2014-08-13,67,77,61 +2014-08-14,65,74,60 +2014-08-15,65,74,60 +2014-08-16,65,73,59 +2014-08-17,63,72,57 +2014-08-18,63,70,60 +2014-08-19,64,75,60 +2014-08-20,67,73,62 +2014-08-21,66,74,61 +2014-08-22,65,77,59 +2014-08-23,64,75,57 +2014-08-24,65,75,58 +2014-08-25,66,74,61 +2014-08-26,65,74,59 +2014-08-27,67,74,60 +2014-08-28,64,74,59 +2014-08-29,64,71,60 +2014-08-30,68,80,63 +2014-08-31,68,75,62 +2014-09-01,67,83,60 +2014-09-02,66,74,60 +2014-09-03,65,76,60 +2014-09-04,65,76,60 +2014-09-05,66,75,60 +2014-09-06,64,72,59 +2014-09-07,63,71,57 +2014-09-08,62,68,58 +2014-09-09,63,71,59 +2014-09-10,63,82,56 +2014-09-11,66,79,59 +2014-09-12,64,75,58 +2014-09-13,65,75,60 +2014-09-14,65,74,59 +2014-09-15,67,78,62 +2014-09-16,69,81,62 +2014-09-17,69,82,62 +2014-09-18,73,80,64 +2014-09-19,68,74,63 +2014-09-20,68,77,64 +2014-09-21,67,72,65 +2014-09-22,69,78,65 +2014-09-23,69,77,65 +2014-09-24,70,80,64 +2014-09-25,67,74,61 +2014-09-26,67,74,62 +2014-09-27,67,73,63 +2014-09-28,66,76,61 +2014-09-29,65,71,60 +2014-09-30,66,75,62 +2014-10-01,70,86,60 +2014-10-02,73,91,61 +2014-10-03,76,95,66 +2014-10-04,76,92,64 +2014-10-05,72,87,60 +2014-10-06,67,83,58 +2014-10-07,65,73,59 +2014-10-08,65,78,58 +2014-10-09,64,68,59 +2014-10-10,62,69,59 +2014-10-11,63,76,59 +2014-10-12,69,91,59 +2014-10-13,74,88,63 +2014-10-14,68,74,63 +2014-10-15,69,76,62 +2014-10-16,65,73,58 +2014-10-17,65,77,57 +2014-10-18,71,79,65 +2014-10-19,67,74,61 +2014-10-20,67,72,62 +2014-10-21,65,72,56 +2014-10-22,65,74,57 +2014-10-23,67,74,63 +2014-10-24,67,73,60 +2014-10-25,68,73,63 +2014-10-26,64,70,58 +2014-10-27,62,70,56 +2014-10-28,62,71,55 +2014-10-29,64,80,61 +2014-10-30,67,74,60 +2014-10-31,63,64,58 +2014-11-01,59,65,55 +2014-11-02,58,66,49 +2014-11-03,58,69,50 +2014-11-04,59,72,50 +2014-11-05,62,76,54 +2014-11-06,64,74,56 +2014-11-07,61,70,54 +2014-11-08,60,75,54 +2014-11-09,62,69,53 +2014-11-10,59,68,53 +2014-11-11,61,67,54 +2014-11-12,62,67,57 +2014-11-13,62,67,56 +2014-11-14,61,66,56 +2014-11-15,60,66,54 +2014-11-16,60,63,56 +2014-11-17,59,66,50 +2014-11-18,58,64,51 +2014-11-19,60,64,56 +2014-11-20,58,60,53 +2014-11-21,57,61,54 +2014-11-22,62,65,55 +2014-11-23,58,66,49 +2014-11-24,56,66,47 +2014-11-25,57,65,49 +2014-11-26,58,68,49 +2014-11-27,58,64,50 +2014-11-28,54,63,46 +2014-11-29,60,65,57 +2014-11-30,59,62,53 +2014-12-01,60,64,57 +2014-12-02,59,62,56 +2014-12-03,62,66,59 +2014-12-04,62,67,58 +2014-12-05,61,67,58 +2014-12-06,62,67,58 +2014-12-07,60,64,54 +2014-12-08,60,68,56 +2014-12-09,61,63,57 +2014-12-10,60,65,58 +2014-12-11,63,67,51 +2014-12-12,53,58,51 +2014-12-13,53,56,48 +2014-12-14,53,61,49 +2014-12-15,55,63,52 +2014-12-16,55,63,50 +2014-12-17,54,60,50 +2014-12-18,55,60,52 +2014-12-19,57,59,55 +2014-12-20,58,62,56 +2014-12-21,61,63,58 +2014-12-22,58,65,54 +2014-12-23,58,68,51 +2014-12-24,58,62,48 +2014-12-25,53,58,46 +2014-12-26,54,59,44 +2014-12-27,50,56,42 +2014-12-28,50,57,43 +2014-12-29,52,55,44 +2014-12-30,51,55,47 +2014-12-31,51,58,41 +2015-01-01,49,55,40 +2015-01-02,46,52,38 +2015-01-03,46,54,38 +2015-01-04,47,55,41 +2015-01-05,50,59,43 +2015-01-06,51,60,44 +2015-01-07,53,60,45 +2015-01-08,54,60,49 +2015-01-09,54,63,51 +2015-01-10,54,61,49 +2015-01-11,52,56,47 +2015-01-12,52,62,47 +2015-01-13,53,64,46 +2015-01-14,53,58,43 +2015-01-15,52,59,45 +2015-01-16,54,58,48 +2015-01-17,55,58,51 +2015-01-18,55,61,53 +2015-01-19,57,60,52 +2015-01-20,54,61,49 +2015-01-21,53,64,46 +2015-01-22,53,57,47 +2015-01-23,53,67,45 +2015-01-24,56,64,49 +2015-01-25,54,63,49 +2015-01-26,54,64,48 +2015-01-27,61,68,54 +2015-01-28,57,64,49 +2015-01-29,56,66,49 +2015-01-30,55,64,50 +2015-01-31,59,74,48 +2015-02-01,57,64,46 +2015-02-02,56,66,49 +2015-02-03,58,65,52 +2015-02-04,58,64,50 +2015-02-05,57,64,53 +2015-02-06,62,67,55 +2015-02-07,62,65,59 +2015-02-08,61,65,57 +2015-02-09,62,64,54 +2015-02-10,56,64,48 +2015-02-11,56,67,48 +2015-02-12,60,73,51 +2015-02-13,61,69,52 +2015-02-14,61,73,52 +2015-02-15,61,75,51 +2015-02-16,61,68,51 +2015-02-17,55,59,53 +2015-02-18,57,64,54 +2015-02-19,57,62,54 +2015-02-20,57,68,54 +2015-02-21,57,67,49 +2015-02-22,57,65,49 +2015-02-23,60,63,53 +2015-02-24,56,66,44 +2015-02-25,56,65,49 +2015-02-26,57,67,50 +2015-02-27,58,62,53 +2015-02-28,55,62,50 +2015-03-01,54,65,48 +2015-03-02,56,61,50 +2015-03-03,54,64,47 +2015-03-04,54,66,46 +2015-03-05,57,68,47 +2015-03-06,59,72,48 +2015-03-07,58,73,48 +2015-03-08,56,65,48 +2015-03-09,55,66,51 +2015-03-10,55,62,50 +2015-03-11,59,68,55 +2015-03-12,60,72,52 +2015-03-13,60,74,53 +2015-03-14,64,83,57 +2015-03-15,69,71,59 +2015-03-16,62,69,57 +2015-03-17,60,65,53 +2015-03-18,58,69,51 +2015-03-19,58,74,50 +2015-03-20,59,71,52 +2015-03-21,60,73,56 +2015-03-22,60,67,55 +2015-03-23,60,65,55 +2015-03-24,59,65,53 +2015-03-25,60,72,52 +2015-03-26,60,79,52 +2015-03-27,60,63,52 +2015-03-28,60,74,52 +2015-03-29,59,71,50 +2015-03-30,58,64,52 +2015-03-31,58,65,53 +2015-04-01,56,64,49 +2015-04-02,57,68,49 +2015-04-03,56,65,48 +2015-04-04,55,63,50 +2015-04-05,53,59,48 +2015-04-06,53,63,46 +2015-04-07,56,61,51 +2015-04-08,55,63,50 +2015-04-09,56,66,49 +2015-04-10,57,65,49 +2015-04-11,58,69,51 +2015-04-12,60,74,51 +2015-04-13,57,62,51 +2015-04-14,56,63,50 +2015-04-15,58,69,48 +2015-04-16,63,80,51 +2015-04-17,62,70,51 +2015-04-18,55,67,49 +2015-04-19,56,64,51 +2015-04-20,57,68,53 +2015-04-21,56,59,54 +2015-04-22,57,65,52 +2015-04-23,56,67,51 +2015-04-24,57,63,52 +2015-04-25,57,61,52 +2015-04-26,57,67,51 +2015-04-27,61,80,52 +2015-04-28,56,64,52 +2015-04-29,57,68,51 +2015-04-30,62,88,52 +2015-05-01,68,75,54 +2015-05-02,58,67,53 +2015-05-03,57,65,52 +2015-05-04,55,61,52 +2015-05-05,55,62,52 +2015-05-06,56,66,51 +2015-05-07,56,68,50 +2015-05-08,58,68,50 +2015-05-09,56,65,52 +2015-05-10,55,62,52 +2015-05-11,56,62,52 +2015-05-12,55,62,51 +2015-05-13,56,65,52 +2015-05-14,59,65,55 +2015-05-15,57,62,53 +2015-05-16,56,61,54 +2015-05-17,57,62,55 +2015-05-18,57,60,55 +2015-05-19,57,63,55 +2015-05-20,58,62,55 +2015-05-21,59,67,55 +2015-05-22,59,64,56 +2015-05-23,57,63,54 +2015-05-24,56,61,51 +2015-05-25,56,64,53 +2015-05-26,58,65,54 +2015-05-27,58,64,53 +2015-05-28,56,62,52 +2015-05-29,56,62,53 +2015-05-30,56,64,52 +2015-05-31,57,67,53 +2015-06-01,62,74,58 +2015-06-02,61,65,56 +2015-06-03,59,65,55 +2015-06-04,59,70,54 +2015-06-05,61,73,54 +2015-06-06,63,74,57 +2015-06-07,62,71,55 +2015-06-08,63,84,55 +2015-06-09,65,79,54 +2015-06-10,63,68,56 +2015-06-11,60,71,54 +2015-06-12,62,73,55 +2015-06-13,64,77,56 +2015-06-14,61,70,53 +2015-06-15,56,61,53 +2015-06-16,58,66,53 +2015-06-17,58,67,52 +2015-06-18,58,67,52 +2015-06-19,59,69,51 +2015-06-20,60,69,53 +2015-06-21,59,66,55 +2015-06-22,58,64,54 +2015-06-23,60,68,54 +2015-06-24,61,71,54 +2015-06-25,64,76,56 +2015-06-26,65,73,56 +2015-06-27,64,75,58 +2015-06-28,66,72,59 +2015-06-29,62,68,56 +2015-06-30,63,79,55 +2015-07-01,64,74,56 +2015-07-02,64,73,58 +2015-07-03,64,72,58 +2015-07-04,63,71,58 +2015-07-05,65,77,59 +2015-07-06,65,72,60 +2015-07-07,66,74,61 +2015-07-08,63,69,60 +2015-07-09,62,68,59 +2015-07-10,63,71,60 +2015-07-11,65,73,60 +2015-07-12,66,74,62 +2015-07-13,66,72,62 +2015-07-14,63,68,59 +2015-07-15,64,79,59 +2015-07-16,66,77,59 +2015-07-17,65,73,59 +2015-07-18,65,76,59 +2015-07-19,70,88,63 +2015-07-20,72,76,60 +2015-07-21,64,70,60 +2015-07-22,63,68,60 +2015-07-23,62,68,60 +2015-07-24,64,72,58 +2015-07-25,63,69,59 +2015-07-26,64,74,59 +2015-07-27,65,81,57 +2015-07-28,67,87,58 +2015-07-29,69,81,57 +2015-07-30,65,73,60 +2015-07-31,64,73,60 +2015-08-01,67,75,62 +2015-08-02,66,71,62 +2015-08-03,66,73,63 +2015-08-04,66,73,61 +2015-08-05,66,73,59 +2015-08-06,64,70,59 +2015-08-07,65,76,58 +2015-08-08,66,71,61 +2015-08-09,64,71,60 +2015-08-10,65,73,60 +2015-08-11,65,73,60 +2015-08-12,65,77,58 +2015-08-13,68,75,62 +2015-08-14,66,74,61 +2015-08-15,69,92,60 +2015-08-16,70,90,61 +2015-08-17,70,76,60 +2015-08-18,65,76,59 +2015-08-19,66,74,59 +2015-08-20,65,69,61 +2015-08-21,64,71,59 +2015-08-22,64,73,59 +2015-08-23,65,74,60 +2015-08-24,65,72,60 +2015-08-25,64,71,58 +2015-08-26,63,77,57 +2015-08-27,68,86,61 +2015-08-28,72,93,64 +2015-08-29,68,75,65 +2015-08-30,67,74,63 +2015-08-31,67,76,60 +2015-09-01,66,76,59 +2015-09-02,65,73,62 +2015-09-03,64,69,59 +2015-09-04,62,69,56 +2015-09-05,62,77,53 +2015-09-06,66,85,56 +2015-09-07,68,89,58 +2015-09-08,74,92,61 +2015-09-09,76,91,60 +2015-09-10,69,83,57 +2015-09-11,65,76,57 +2015-09-12,61,73,57 +2015-09-13,65,72,59 +2015-09-14,62,68,58 +2015-09-15,62,68,57 +2015-09-16,62,70,58 +2015-09-17,63,70,58 +2015-09-18,63,79,56 +2015-09-19,65,85,55 +2015-09-20,72,93,61 +2015-09-21,76,91,60 +2015-09-22,63,65,58 +2015-09-23,61,75,55 +2015-09-24,67,85,60 +2015-09-25,66,74,58 +2015-09-26,63,71,57 +2015-09-27,62,71,57 +2015-09-28,61,70,55 +2015-09-29,62,67,57 +2015-09-30,60,65,58 +2015-10-01,64,74,59 +2015-10-02,63,76,56 +2015-10-03,62,71,55 +2015-10-04,60,73,53 +2015-10-05,64,74,57 +2015-10-06,66,74,60 +2015-10-07,64,73,59 +2015-10-08,64,80,58 +2015-10-09,65,79,57 +2015-10-10,65,71,60 +2015-10-11,65,74,58 +2015-10-12,63,82,56 +2015-10-13,71,87,62 +2015-10-14,69,78,61 +2015-10-15,65,71,61 +2015-10-16,63,72,60 +2015-10-17,63,69,60 +2015-10-18,64,69,60 +2015-10-19,63,68,60 +2015-10-20,63,79,57 +2015-10-21,64,75,55 +2015-10-22,61,73,54 +2015-10-23,62,69,55 +2015-10-24,61,70,53 +2015-10-25,62,70,58 +2015-10-26,61,73,55 +2015-10-27,62,68,58 +2015-10-28,64,70,59 +2015-10-29,62,72,56 +2015-10-30,62,78,53 +2015-10-31,63,73,55 +2015-11-01,62,71,57 +2015-11-02,61,63,54 +2015-11-03,57,64,51 +2015-11-04,58,64,50 +2015-11-05,55,64,47 +2015-11-06,56,67,48 +2015-11-07,56,66,47 +2015-11-08,56,62,49 +2015-11-09,54,57,47 +2015-11-10,53,60,45 +2015-11-11,52,63,44 +2015-11-12,54,63,45 +2015-11-13,54,67,46 +2015-11-14,55,64,46 +2015-11-15,57,59,50 +2015-11-16,52,60,47 +2015-11-17,55,61,50 +2015-11-18,56,63,48 +2015-11-19,56,68,48 +2015-11-20,59,68,52 +2015-11-21,56,68,49 +2015-11-22,57,67,48 +2015-11-23,56,58,49 +2015-11-24,54,58,48 +2015-11-25,49,54,42 +2015-11-26,47,53,42 +2015-11-27,50,56,42 +2015-11-28,49,56,42 +2015-11-29,47,55,37 +2015-11-30,46,51,38 +2015-12-01,49,56,43 +2015-12-02,51,58,46 +2015-12-03,53,59,45 +2015-12-04,53,58,45 +2015-12-05,50,56,44 +2015-12-06,54,61,52 +2015-12-07,57,58,54 +2015-12-08,56,60,52 +2015-12-09,57,65,54 +2015-12-10,60,61,51 +2015-12-11,52,56,46 +2015-12-12,52,57,46 +2015-12-13,54,57,48 +2015-12-14,49,56,44 +2015-12-15,49,56,41 +2015-12-16,47,55,39 +2015-12-17,47,55,50 +2015-12-18,51,59,45 +2015-12-19,53,55,49 +2015-12-20,49,54,42 +2015-12-21,54,59,51 +2015-12-22,58,59,51 +2015-12-23,52,55,48 +2015-12-24,50,53,45 +2015-12-25,47,51,40 +2015-12-26,47,52,39 +2015-12-27,42,48,34 +2015-12-28,44,48,41 +2015-12-29,44,54,36 +2015-12-30,46,49,40 +2015-12-31,46,51,39 +2016-01-01,45,49,37 +2016-01-02,46,51,44 +2016-01-03,48,53,44 +2016-01-04,50,58,47 +2016-01-05,53,55,50 +2016-01-06,51,55,48 +2016-01-07,49,53,44 +2016-01-08,47,51,42 +2016-01-09,50,54,49 +2016-01-10,51,54,50 +2016-01-11,52,56,50 +2016-01-12,52,59,49 +2016-01-13,57,59,48 +2016-01-14,51,57,44 +2016-01-15,54,57,50 +2016-01-16,54,61,51 +2016-01-17,57,60,54 +2016-01-18,56,61,53 +2016-01-19,57,62,53 +2016-01-20,53,56,47 +2016-01-21,53,62,50 +2016-01-22,57,61,53 +2016-01-23,56,58,51 +2016-01-24,52,57,49 +2016-01-25,53,58,49 +2016-01-26,52,57,46 +2016-01-27,54,61,49 +2016-01-28,53,59,47 +2016-01-29,58,61,53 +2016-01-30,55,58,51 +2016-01-31,52,54,48 +2016-02-01,50,56,45 +2016-02-02,50,55,46 +2016-02-03,48,53,42 +2016-02-04,52,58,47 +2016-02-05,51,61,43 +2016-02-06,53,63,45 +2016-02-07,56,68,47 +2016-02-08,60,73,51 +2016-02-09,59,71,49 +2016-02-10,57,67,50 +2016-02-11,58,65,50 +2016-02-12,56,66,47 +2016-02-13,57,66,53 +2016-02-14,57,67,50 +2016-02-15,61,75,53 +2016-02-16,62,74,53 +2016-02-17,65,69,50 +2016-02-18,55,61,50 +2016-02-19,54,62,48 +2016-02-20,52,60,45 +2016-02-21,52,61,45 +2016-02-22,54,68,48 +2016-02-23,58,70,48 +2016-02-24,57,67,48 +2016-02-25,58,67,50 +2016-02-26,59,70,52 +2016-02-27,59,65,55 +2016-02-28,57,65,51 +2016-02-29,57,67,52 +2016-03-01,62,70,53 +2016-03-02,60,67,54 +2016-03-03,61,64,58 +2016-03-04,61,64,60 +2016-03-05,62,65,56 +2016-03-06,57,61,48 +2016-03-07,53,58,50 +2016-03-08,53,57,47 +2016-03-09,54,65,52 +2016-03-10,62,64,53 +2016-03-11,58,60,52 +2016-03-12,53,60,49 +2016-03-13,58,61,57 +2016-03-14,58,61,51 +2016-03-15,54,64,47 +2016-03-16,57,71,48 +2016-03-17,61,76,51 +2016-03-18,58,63,52 +2016-03-19,57,67,53 +2016-03-20,59,66,54 +2016-03-21,58,64,54 +2016-03-22,56,61,51 +2016-03-23,56,66,48 +2016-03-24,57,65,50 +2016-03-25,57,65,50 +2016-03-26,58,65,52 +2016-03-27,57,62,51 +2016-03-28,53,59,49 +2016-03-29,54,64,47 +2016-03-30,55,62,49 +2016-03-31,56,63,53 +2016-04-01,56,62,53 +2016-04-02,56,67,52 +2016-04-03,55,62,51 +2016-04-04,58,66,52 +2016-04-05,59,79,50 +2016-04-06,68,86,56 +2016-04-07,69,73,60 +2016-04-08,62,67,59 +2016-04-09,60,65,57 +2016-04-10,57,58,55 +2016-04-11,57,64,54 +2016-04-12,57,61,54 +2016-04-13,57,64,53 +2016-04-14,57,63,50 +2016-04-15,56,66,49 +2016-04-16,62,79,51 +2016-04-17,65,83,54 +2016-04-18,67,82,56 +2016-04-19,66,80,57 +2016-04-20,63,75,52 +2016-04-21,64,70,60 +2016-04-22,61,62,53 +2016-04-23,57,63,51 +2016-04-24,58,64,50 +2016-04-25,55,63,47 +2016-04-26,54,62,47 +2016-04-27,54,60,49 +2016-04-28,53,63,48 +2016-04-29,54,60,48 +2016-04-30,57,71,49 +2016-05-01,65,80,54 +2016-05-02,60,65,51 +2016-05-03,55,65,51 +2016-05-04,56,67,52 +2016-05-05,60,67,54 +2016-05-06,57,58,54 +2016-05-07,58,63,54 +2016-05-08,60,67,55 +2016-05-09,58,68,52 +2016-05-10,57,67,52 +2016-05-11,57,66,52 +2016-05-12,58,65,53 +2016-05-13,59,66,55 +2016-05-14,60,71,54 +2016-05-15,61,66,56 +2016-05-16,60,71,54 +2016-05-17,64,87,54 +2016-05-18,65,73,56 +2016-05-19,60,64,53 +2016-05-20,56,62,52 +2016-05-21,57,64,54 +2016-05-22,58,65,55 +2016-05-23,59,66,54 +2016-05-24,59,65,56 +2016-05-25,59,65,56 +2016-05-26,60,70,55 +2016-05-27,60,73,53 +2016-05-28,66,79,56 +2016-05-29,63,72,53 +2016-05-30,60,70,53 +2016-05-31,61,73,53 +2016-06-01,61,75,53 +2016-06-02,61,72,54 +2016-06-03,65,87,56 +2016-06-04,66,74,56 +2016-06-05,61,72,53 +2016-06-06,60,71,53 +2016-06-07,62,70,57 +2016-06-08,61,69,58 +2016-06-09,60,64,57 +2016-06-10,61,68,54 +2016-06-11,62,80,51 +2016-06-12,66,76,58 +2016-06-13,62,66,55 +2016-06-14,60,65,55 +2016-06-15,58,66,53 +2016-06-16,62,74,56 +2016-06-17,65,72,58 +2016-06-18,62,72,56 +2016-06-19,68,84,57 +2016-06-20,63,72,55 +2016-06-21,64,78,55 +2016-06-22,60,65,55 +2016-06-23,60,73,54 +2016-06-24,61,73,54 +2016-06-25,63,77,55 +2016-06-26,62,72,54 +2016-06-27,60,70,52 +2016-06-28,59,67,52 +2016-06-29,57,63,52 +2016-06-30,59,73,53 +2016-07-01,60,70,54 +2016-07-02,61,74,54 +2016-07-03,62,74,54 +2016-07-04,62,73,55 +2016-07-05,61,67,55 +2016-07-06,59,67,54 +2016-07-07,58,63,55 +2016-07-08,60,69,56 +2016-07-09,64,72,58 +2016-07-10,62,73,56 +2016-07-11,62,69,55 +2016-07-12,61,69,55 +2016-07-13,63,77,55 +2016-07-14,62,68,54 +2016-07-15,60,73,54 +2016-07-16,62,73,55 +2016-07-17,61,71,55 +2016-07-18,60,69,56 +2016-07-19,60,69,55 +2016-07-20,61,68,56 +2016-07-21,61,70,56 +2016-07-22,62,70,54 +2016-07-23,63,72,56 +2016-07-24,62,69,56 +2016-07-25,61,72,54 +2016-07-26,62,81,53 +2016-07-27,63,72,54 +2016-07-28,59,69,53 +2016-07-29,59,69,53 +2016-07-30,60,73,54 +2016-07-31,62,76,56 +2016-08-01,64,74,57 +2016-08-02,62,69,56 +2016-08-03,62,73,54 +2016-08-04,60,67,56 +2016-08-05,61,69,55 +2016-08-06,60,68,56 +2016-08-07,61,70,56 +2016-08-08,62,73,56 +2016-08-09,63,76,57 +2016-08-10,62,74,56 +2016-08-11,62,73,57 +2016-08-12,61,69,54 +2016-08-13,60,70,53 +2016-08-14,60,70,54 +2016-08-15,60,70,55 +2016-08-16,60,68,55 +2016-08-17,60,70,55 +2016-08-18,62,73,58 +2016-08-19,63,73,58 +2016-08-20,62,69,58 +2016-08-21,62,69,58 +2016-08-22,62,69,58 +2016-08-23,62,73,57 +2016-08-24,62,68,57 +2016-08-25,60,70,56 +2016-08-26,64,72,59 +2016-08-27,65,72,61 +2016-08-28,64,72,59 +2016-08-29,62,71,57 +2016-08-30,65,73,60 +2016-08-31,64,71,59 +2016-09-01,62,68,58 +2016-09-02,62,71,55 +2016-09-03,60,66,57 +2016-09-04,60,67,56 +2016-09-05,60,72,53 +2016-09-06,63,84,54 +2016-09-07,67,88,58 +2016-09-08,67,73,57 +2016-09-09,61,67,56 +2016-09-10,60,67,55 +2016-09-11,61,71,55 +2016-09-12,60,66,54 +2016-09-13,62,71,56 +2016-09-14,64,74,56 +2016-09-15,61,65,55 +2016-09-16,59,69,55 +2016-09-17,59,71,53 +2016-09-18,63,88,56 +2016-09-19,70,85,61 +2016-09-20,65,73,58 +2016-09-21,61,66,57 +2016-09-22,60,68,56 +2016-09-23,60,73,52 +2016-09-24,65,82,58 +2016-09-25,70,94,58 +2016-09-26,75,93,63 +2016-09-27,74,79,56 +2016-09-28,61,68,55 +2016-09-29,58,63,54 +2016-09-30,58,65,54 +2016-10-01,60,69,54 +2016-10-02,61,68,56 +2016-10-03,59,65,54 +2016-10-04,63,70,57 +2016-10-05,61,70,54 +2016-10-06,62,75,53 +2016-10-07,63,84,54 +2016-10-08,68,84,57 +2016-10-09,67,80,53 +2016-10-10,59,71,52 +2016-10-11,61,68,55 +2016-10-12,58,60,55 +2016-10-13,60,72,55 +2016-10-14,65,68,58 +2016-10-15,63,72,56 +2016-10-16,64,66,62 +2016-10-17,63,69,58 +2016-10-18,61,69,56 +2016-10-19,61,74,53 +2016-10-20,63,78,54 +2016-10-21,64,73,57 +2016-10-22,61,67,56 +2016-10-23,59,66,51 +2016-10-24,63,69,60 +2016-10-25,64,71,62 +2016-10-26,64,72,58 +2016-10-27,63,65,60 +2016-10-28,63,67,61 +2016-10-29,65,70,61 +2016-10-30,63,67,57 +2016-10-31,60,66,54 +2016-11-01,61,64,53 +2016-11-02,58,69,51 +2016-11-03,60,71,53 +2016-11-04,63,72,55 +2016-11-05,60,66,53 +2016-11-06,63,67,60 +2016-11-07,62,69,57 +2016-11-08,65,72,57 +2016-11-09,64,75,57 +2016-11-10,65,73,57 +2016-11-11,64,69,57 +2016-11-12,64,70,57 +2016-11-13,60,68,54 +2016-11-14,59,63,54 +2016-11-15,59,65,56 +2016-11-16,57,61,50 +2016-11-17,53,61,46 +2016-11-18,54,67,46 +2016-11-19,58,61,55 +2016-11-20,58,60,54 +2016-11-21,57,61,52 +2016-11-22,55,60,47 +2016-11-23,56,61,50 +2016-11-24,52,59,44 +2016-11-25,51,58,45 +2016-11-26,55,56,51 +2016-11-27,54,59,51 +2016-11-28,56,61,51 +2016-11-29,53,61,44 +2016-11-30,52,56,45 +2016-12-01,52,60,44 +2016-12-02,56,62,49 +2016-12-03,53,62,44 +2016-12-04,52,59,45 +2016-12-05,54,55,50 +2016-12-06,50,56,43 +2016-12-07,48,51,42 +2016-12-08,51,61,49 +2016-12-09,59,63,56 +2016-12-10,60,61,52 +2016-12-11,52,54,47 +2016-12-12,51,55,49 +2016-12-13,52,55,50 +2016-12-14,55,62,52 +2016-12-15,58,61,51 +2016-12-16,54,54,45 +2016-12-17,47,52,38 +2016-12-18,46,53,37 +2016-12-19,46,55,36 +2016-12-20,49,56,40 +2016-12-21,53,62,45 +2016-12-22,51,58,42 +2016-12-23,51,57,47 +2016-12-24,48,52,43 +2016-12-25,45,53,37 +2016-12-26,47,53,41 +2016-12-27,47,53,39 +2016-12-28,49,58,40 +2016-12-29,50,58,41 +2016-12-30,50,56,43 +2016-12-31,50,53,44 +2017-01-01,51,54,46 +2017-01-02,47,52,44 +2017-01-03,50,59,48 +2017-01-04,56,59,47 +2017-01-05,48,51,41 +2017-01-06,44,49,38 +2017-01-07,51,62,44 +2017-01-08,60,64,54 +2017-01-09,58,59,53 +2017-01-10,57,60,56 +2017-01-11,55,58,50 +2017-01-12,49,52,45 +2017-01-13,48,57,40 +2017-01-14,48,58,40 +2017-01-15,48,52,41 +2017-01-16,48,54,44 +2017-01-17,47,52,41 +2017-01-18,50,55,49 +2017-01-19,54,58,51 +2017-01-20,52,56,43 +2017-01-21,52,56,48 +2017-01-22,53,57,47 +2017-01-23,49,54,45 +2017-01-24,47,54,41 +2017-01-25,48,56,41 +2017-01-26,49,56,43 +2017-01-27,50,58,41 +2017-01-28,49,59,41 +2017-01-29,50,60,41 +2017-01-30,50,60,42 +2017-01-31,50,59,42 +2017-02-01,52,56,47 +2017-02-02,55,62,51 +2017-02-03,59,61,55 +2017-02-04,57,61,53 +2017-02-05,55,61,50 +2017-02-06,58,60,55 +2017-02-07,60,63,56 +2017-02-08,60,64,56 +2017-02-09,62,63,58 +2017-02-10,58,62,51 +2017-02-11,53,59,47 +2017-02-12,53,64,44 +2017-02-13,52,63,46 +2017-02-14,55,66,48 +2017-02-15,57,63,51 +2017-02-16,60,64,55 +2017-02-17,57,59,54 +2017-02-18,54,57,50 +2017-02-19,52,58,50 +2017-02-20,57,60,54 +2017-02-21,57,61,50 +2017-02-22,51,55,45 +2017-02-23,48,53,42 +2017-02-24,48,54,40 +2017-02-25,49,56,44 +2017-02-26,49,57,40 +2017-02-27,49,55,42 +2017-02-28,50,57,43 +2017-03-01,50,62,43 +2017-03-02,52,66,43 +2017-03-03,53,62,44 +2017-03-04,54,61,51 +2017-03-05,51,53,42 +2017-03-06,47,56,43 +2017-03-07,50,59,42 +2017-03-08,53,64,46 +2017-03-09,56,67,50 +2017-03-10,57,67,52 +2017-03-11,58,65,50 +2017-03-12,56,70,48 +2017-03-13,57,77,48 +2017-03-14,63,76,54 +2017-03-15,59,62,52 +2017-03-16,58,65,51 +2017-03-17,56,71,48 +2017-03-18,60,69,53 +2017-03-19,58,63,54 +2017-03-20,58,62,55 +2017-03-21,60,65,57 +2017-03-22,57,59,52 +2017-03-23,54,61,50 +2017-03-24,55,58,53 +2017-03-25,56,61,52 +2017-03-26,55,63,52 +2017-03-27,56,61,51 +2017-03-28,56,68,48 +2017-03-29,59,65,53 +2017-03-30,57,61,51 +2017-03-31,58,68,55 +2017-04-01,61,78,53 +2017-04-02,59,74,52 +2017-04-03,59,68,49 +2017-04-04,55,72,48 +2017-04-05,58,68,52 +2017-04-06,61,65,50 +2017-04-07,57,64,50 +2017-04-08,53,56,47 +2017-04-09,51,60,45 +2017-04-10,53,64,46 +2017-04-11,58,67,53 +2017-04-12,59,64,54 +2017-04-13,57,59,50 +2017-04-14,53,61,47 +2017-04-15,54,67,46 +2017-04-16,56,60,52 +2017-04-17,58,62,54 +2017-04-18,57,67,52 +2017-04-19,57,67,49 +2017-04-20,60,65,54 +2017-04-21,59,74,51 +2017-04-22,60,65,51 +2017-04-23,58,64,53 +2017-04-24,56,62,53 +2017-04-25,56,64,52 +2017-04-26,59,64,54 +2017-04-27,58,65,52 +2017-04-28,57,68,49 +2017-04-29,64,77,54 +2017-04-30,60,74,50 +2017-05-01,63,84,54 +2017-05-02,67,85,57 +2017-05-03,67,87,53 +2017-05-04,59,66,52 +2017-05-05,57,63,51 +2017-05-06,55,63,50 +2017-05-07,57,70,50 +2017-05-08,58,70,50 +2017-05-09,59,75,51 +2017-05-10,59,68,53 +2017-05-11,59,69,52 +2017-05-12,58,64,51 +2017-05-13,56,64,49 +2017-05-14,55,62,49 +2017-05-15,55,63,50 +2017-05-16,55,63,52 +2017-05-17,57,66,50 +2017-05-18,58,76,49 +2017-05-19,62,80,52 +2017-05-20,63,87,52 +2017-05-21,64,77,53 +2017-05-22,58,70,51 +2017-05-23,58,69,52 +2017-05-24,58,69,53 +2017-05-25,60,65,55 +2017-05-26,59,65,54 +2017-05-27,59,67,54 +2017-05-28,57,64,54 +2017-05-29,55,60,53 +2017-05-30,56,63,52 +2017-05-31,60,70,54 +2017-06-01,61,69,55 +2017-06-02,60,71,53 +2017-06-03,59,67,54 +2017-06-04,59,67,53 +2017-06-05,58,74,51 +2017-06-06,58,65,52 +2017-06-07,59,68,54 +2017-06-08,61,66,59 +2017-06-09,62,66,56 +2017-06-10,60,68,54 +2017-06-11,59,64,54 +2017-06-12,58,65,53 +2017-06-13,59,70,52 +2017-06-14,60,73,53 +2017-06-15,61,72,55 +2017-06-16,65,75,57 +2017-06-17,65,77,55 +2017-06-18,72,97,62 +2017-06-19,69,77,58 +2017-06-20,63,72,56 +2017-06-21,62,76,54 +2017-06-22,67,80,59 +2017-06-23,64,73,58 +2017-06-24,62,69,57 +2017-06-25,61,68,57 +2017-06-26,64,73,59 +2017-06-27,62,66,57 +2017-06-28,60,66,57 +2017-06-29,60,66,56 +2017-06-30,58,65,54 +2017-07-01,58,66,54 +2017-07-02,60,74,54 +2017-07-03,62,79,54 +2017-07-04,63,72,57 +2017-07-05,60,67,55 +2017-07-06,60,73,54 +2017-07-07,64,81,54 +2017-07-08,68,79,56 +2017-07-09,60,70,53 +2017-07-10,61,68,55 +2017-07-11,62,73,55 +2017-07-12,62,70,56 +2017-07-13,61,70,54 +2017-07-14,61,75,55 +2017-07-15,63,85,55 +2017-07-16,68,84,59 +2017-07-17,64,72,57 +2017-07-18,60,67,55 +2017-07-19,61,70,54 +2017-07-20,61,68,56 +2017-07-21,61,70,55 +2017-07-22,63,80,55 +2017-07-23,64,70,56 +2017-07-24,62,74,55 +2017-07-25,66,77,63 +2017-07-26,65,73,57 +2017-07-27,62,76,57 +2017-07-28,61,67,57 +2017-07-29,61,68,57 +2017-07-30,61,71,57 +2017-07-31,62,69,55 +2017-08-01,61,75,54 +2017-08-02,64,80,56 +2017-08-03,68,78,61 +2017-08-04,70,76,60 +2017-08-05,65,73,59 +2017-08-06,64,71,61 +2017-08-07,65,71,61 +2017-08-08,64,71,60 +2017-08-09,63,67,59 +2017-08-10,63,71,59 +2017-08-11,62,71,58 +2017-08-12,64,73,60 +2017-08-13,65,72,60 +2017-08-14,63,63,59 +2017-08-15,62,73,59 +2017-08-16,64,75,60 +2017-08-17,65,72,60 +2017-08-18,66,72,59 +2017-08-19,63,76,59 +2017-08-20,66,72,61 +2017-08-21,65,75,61 +2017-08-22,65,73,60 +2017-08-23,63,70,59 +2017-08-24,61,70,58 +2017-08-25,62,69,55 +2017-08-26,62,81,53 +2017-08-27,67,77,60 +2017-08-28,65,73,58 +2017-08-29,61,67,58 +2017-08-30,61,69,56 +2017-08-31,64,88,56 +2017-09-01,78,104,67 +2017-09-02,83,104,72 +2017-09-03,82,86,68 +2017-09-04,72,84,68 +2017-09-05,76,83,60 +2017-09-06,70,78,64 +2017-09-07,69,72,62 +2017-09-08,65,72,60 +2017-09-09,66,75,61 +2017-09-10,67,92,61 +2017-09-11,76,86,67 +2017-09-12,72,85,65 +2017-09-13,68,74,63 +2017-09-14,65,71,60 +2017-09-15,63,72,58 +2017-09-16,62,72,56 +2017-09-17,62,73,56 +2017-09-18,66,73,60 +2017-09-19,64,73,58 +2017-09-20,64,71,59 +2017-09-21,62,67,56 +2017-09-22,61,70,57 +2017-09-23,63,77,54 +2017-09-24,64,79,54 +2017-09-25,66,82,56 +2017-09-26,69,88,59 +2017-09-27,72,87,62 +2017-09-28,69,81,58 +2017-09-29,62,68,57 +2017-09-30,63,72,57 +2017-10-01,63,73,56 +2017-10-02,65,74,54 +2017-10-03,59,73,53 +2017-10-04,62,76,52 +2017-10-05,60,79,50 +2017-10-06,63,84,53 +2017-10-07,64,77,54 +2017-10-08,61,79,53 +2017-10-09,70,79,60 +2017-10-10,65,76,53 +2017-10-11,57,66,51 +2017-10-12,58,69,50 +2017-10-13,58,73,50 +2017-10-14,62,77,52 +2017-10-15,65,81,52 +2017-10-16,67,83,56 +2017-10-17,67,78,50 +2017-10-18,54,63,48 +2017-10-19,57,67,54 +2017-10-20,59,64,54 +2017-10-21,57,68,51 +2017-10-22,60,73,52 +2017-10-23,66,83,56 +2017-10-24,74,91,64 +2017-10-25,71,83,62 +2017-10-26,70,86,61 +2017-10-27,67,80,54 +2017-10-28,58,67,52 +2017-10-29,56,63,53 +2017-10-30,57,62,55 +2017-10-31,58,66,52 +2017-11-01,57,67,50 +2017-11-02,57,66,50 +2017-11-03,62,68,58 +2017-11-04,60,61,50 +2017-11-05,53,60,46 +2017-11-06,56,63,51 +2017-11-07,54,64,46 +2017-11-08,58,65,52 +2017-11-09,62,68,59 +2017-11-10,60,65,55 +2017-11-11,59,64,54 +2017-11-12,56,63,50 +2017-11-13,60,67,55 +2017-11-14,59,64,52 +2017-11-15,57,65,54 +2017-11-16,59,63,53 +2017-11-17,56,61,51 +2017-11-18,54,62,43 +2017-11-19,53,59,46 +2017-11-20,58,63,55 +2017-11-21,60,66,55 +2017-11-22,60,68,54 +2017-11-23,62,67,57 +2017-11-24,62,69,56 +2017-11-25,61,68,56 +2017-11-26,64,67,53 +2017-11-27,57,60,50 +2017-11-28,53,60,46 +2017-11-29,55,64,48 +2017-11-30,55,65,46 +2017-12-01,54,60,46 +2017-12-02,53,58,48 +2017-12-03,55,57,49 +2017-12-04,55,62,51 +2017-12-05,57,66,47 +2017-12-06,53,62,42 +2017-12-07,55,65,45 +2017-12-08,53,62,43 +2017-12-09,53,63,43 +2017-12-10,53,63,42 +2017-12-11,54,65,44 +2017-12-12,53,60,42 +2017-12-13,51,61,41 +2017-12-14,52,64,43 +2017-12-15,53,57,44 +2017-12-16,56,64,49 +2017-12-17,58,63,48 +2017-12-18,52,61,44 +2017-12-19,51,60,43 +2017-12-20,53,55,47 +2017-12-21,50,56,40 +2017-12-22,46,53,38 +2017-12-23,49,53,43 +2017-12-24,51,53,47 +2017-12-25,51,57,44 +2017-12-26,52,58,43 +2017-12-27,49,56,43 +2017-12-28,51,57,43 +2017-12-29,51,56,44 +2017-12-30,51,59,43 +2017-12-31,51,57,45 +2018-01-01,52,58,45 +2018-01-02,54,59,50 +2018-01-03,55,58,51 +2018-01-04,54,63,52 +2018-01-05,59,64,53 +2018-01-06,54,58,48 +2018-01-07,51,53,47 +2018-01-08,53,58,51 +2018-01-09,56,58,52 +2018-01-10,54,58,51 +2018-01-11,55,58,52 +2018-01-12,53,55,50 +2018-01-13,53,60,46 +2018-01-14,53,56,48 +2018-01-15,53,58,48 +2018-01-16,56,59,55 +2018-01-17,56,58,52 +2018-01-18,54,60,50 +2018-01-19,53,57,47 +2018-01-20,50,56,44 +2018-01-21,49,57,42 +2018-01-22,55,58,51 +2018-01-23,51,57,45 +2018-01-24,51,60,45 +2018-01-25,51,58,45 +2018-01-26,49,54,42 +2018-01-27,49,60,42 +2018-01-28,55,66,46 +2018-01-29,55,61,47 +2018-01-30,55,64,48 +2018-01-31,54,65,46 +2018-02-01,57,73,51 +2018-02-02,60,73,51 +2018-02-03,62,76,50 +2018-02-04,62,75,51 +2018-02-05,60,72,53 +2018-02-06,61,75,52 +2018-02-07,62,72,51 +2018-02-08,60,74,51 +2018-02-09,60,74,51 +2018-02-10,59,65,53 +2018-02-11,55,63,44 +2018-02-12,52,59,47 +2018-02-13,54,63,49 +2018-02-14,53,60,45 +2018-02-15,52,64,44 +2018-02-16,51,65,42 +2018-02-17,53,67,45 +2018-02-18,53,58,45 +2018-02-19,47,53,43 +2018-02-20,46,53,36 +2018-02-21,48,56,42 +2018-02-22,50,55,45 +2018-02-23,47,54,39 +2018-02-24,47,57,39 +2018-02-25,49,59,40 +2018-02-26,51,54,45 +2018-02-27,49,58,44 +2018-02-28,49,56,41 +2018-03-01,53,59,48 +2018-03-02,50,56,45 +2018-03-03,47,53,42 +2018-03-04,47,55,40 +2018-03-05,50,61,41 +2018-03-06,53,65,45 +2018-03-07,57,70,52 +2018-03-08,60,65,50 +2018-03-09,53,65,49 +2018-03-10,54,57,49 +2018-03-11,52,67,46 +2018-03-12,58,70,50 +2018-03-13,60,62,51 +2018-03-14,54,59,49 +2018-03-15,51,59,44 +2018-03-16,52,56,47 +2018-03-17,50,56,46 +2018-03-18,49,56,41 +2018-03-19,52,62,44 +2018-03-20,57,58,53 +2018-03-21,58,65,55 +2018-03-22,60,61,49 +2018-03-23,51,59,46 +2018-03-24,53,57,48 +2018-03-25,51,57,45 +2018-03-26,53,62,45 +2018-03-27,58,72,49 +2018-03-28,60,77,51 +2018-03-29,63,81,52 +2018-03-30,64,79,55 +2018-03-31,61,64,51 +2018-04-01,56,67,50 +2018-04-02,57,63,51 +2018-04-03,55,65,48 +2018-04-04,56,63,52 +2018-04-05,57,63,52 +2018-04-06,60,64,57 +2018-04-07,62,64,53 +2018-04-08,58,64,52 +2018-04-09,58,75,50 +2018-04-10,63,65,53 +2018-04-11,56,65,51 +2018-04-12,54,63,48 +2018-04-13,55,66,46 +2018-04-14,58,71,51 +2018-04-15,58,64,50 +2018-04-16,52,57,48 +2018-04-17,52,63,45 +2018-04-18,54,60,51 +2018-04-19,55,63,48 +2018-04-20,56,67,49 +2018-04-21,58,75,50 +2018-04-22,59,76,49 +2018-04-23,60,74,52 +2018-04-24,58,66,53 +2018-04-25,57,65,51 +2018-04-26,56,63,52 +2018-04-27,58,67,54 +2018-04-28,59,66,55 +2018-04-29,58,64,54 +2018-04-30,57,63,52 +2018-05-01,56,67,50 +2018-05-02,57,67,52 +2018-05-03,57,66,52 +2018-05-04,57,69,52 +2018-05-05,56,61,53 +2018-05-06,57,65,53 +2018-05-07,60,71,54 +2018-05-08,60,70,54 +2018-05-09,60,67,56 +2018-05-10,59,66,52 +2018-05-11,59,75,51 +2018-05-12,69,76,57 +2018-05-13,61,67,55 +2018-05-14,59,65,54 +2018-05-15,60,67,56 +2018-05-16,60,68,54 +2018-05-17,59,65,55 +2018-05-18,58,64,55 +2018-05-19,57,63,55 +2018-05-20,57,62,54 +2018-05-21,58,67,52 +2018-05-22,57,61,54 +2018-05-23,57,63,55 +2018-05-24,58,64,55 +2018-05-25,59,65,55 +2018-05-26,59,66,55 +2018-05-27,60,74,53 +2018-05-28,65,84,56 +2018-05-29,64,71,56 +2018-05-30,58,62,54 +2018-05-31,58,64,53 +2018-06-01,59,75,51 +2018-06-02,65,85,55 +2018-06-03,64,75,56 +2018-06-04,61,67,56 +2018-06-05,59,65,54 +2018-06-06,58,65,54 +2018-06-07,60,66,55 +2018-06-08,61,70,52 +2018-06-09,61,67,55 +2018-06-10,60,68,53 +2018-06-11,61,71,56 +2018-06-12,64,76,57 +2018-06-13,64,76,56 +2018-06-14,62,77,57 +2018-06-15,62,66,56 +2018-06-16,62,71,56 +2018-06-17,62,72,57 +2018-06-18,65,71,56 +2018-06-19,60,67,56 +2018-06-20,59,65,55 +2018-06-21,60,69,54 +2018-06-22,64,, +2018-06-23,69,, +2018-06-24,69,, +2018-06-25,67,, +2018-06-26,65,, +2018-06-27,64,, +2018-06-28,64,, +2018-06-29,66,, +2018-06-30,71,, +2018-07-01,69,, +2018-07-02,68,, +2018-07-03,67,, +2018-07-04,68,, +2018-07-05,67,, +2018-07-06,72,, +2018-07-07,74,, +2018-07-08,68,, +2018-07-09,64,, +2018-07-10,70,, +2018-07-11,70,, +2018-07-12,63,75,57 +2018-07-13,65,71,58 +2018-07-14,62,71,55 +2018-07-15,60,69,55 +2018-07-16,61,69,55 +2018-07-17,60,67,55 +2018-07-18,61,71,55 +2018-07-19,62,72,55 +2018-07-20,63,83,56 +2018-07-21,66,75,59 +2018-07-22,64,72,58 +2018-07-23,62,70,55 +2018-07-24,61,67,55 +2018-07-25,61,70,55 +2018-07-26,59,69,55 +2018-07-27,59,65,55 +2018-07-28,58,66,53 +2018-07-29,58,66,52 +2018-07-30,58,66,53 +2018-07-31,58,65,52 +2018-08-01,58,66,52 +2018-08-02,59,68,52 +2018-08-03,61,72,52 +2018-08-04,62,73,55 +2018-08-05,61,68,55 +2018-08-06,60,73,50 +2018-08-07,58,64,52 +2018-08-08,59,70,53 +2018-08-09,60,79,52 +2018-08-10,60,71,52 +2018-08-11,64,74,58 +2018-08-12,63,72,58 +2018-08-13,60,67,55 +2018-08-14,59,66,55 +2018-08-15,63,71,59 +2018-08-16,63,71,58 +2018-08-17,62,71,55 +2018-08-18,60,71,52 +2018-08-19,59,68,52 +2018-08-20,60,72,55 +2018-08-21,60,67,55 +2018-08-22,63,72,61 +2018-08-23,63,70,61 +2018-08-24,63,71,56 +2018-08-25,60,71,55 +2018-08-26,60,72,55 +2018-08-27,62,71,56 +2018-08-28,62,68,58 +2018-08-29,65,74,58 +2018-08-30,65,71,58 +2018-08-31,62,71,56 +2018-09-01,60,68,55 +2018-09-02,60,69,53 +2018-09-03,60,70,55 +2018-09-04,61,70,56 +2018-09-05,61,71,55 +2018-09-06,58,64,55 +2018-09-07,59,72,53 +2018-09-08,61,73,55 +2018-09-09,62,73,52 +2018-09-10,61,77,53 +2018-09-11,61,70,55 +2018-09-12,60,67,55 +2018-09-13,60,68,55 +2018-09-14,60,71,55 +2018-09-15,59,65,55 +2018-09-16,60,70,55 +2018-09-17,61,66,56 +2018-09-18,59,67,54 +2018-09-19,58,75,51 +2018-09-20,64,85,53 +2018-09-21,66,74,52 +2018-09-22,58,66,52 +2018-09-23,58,69,52 +2018-09-24,58,73,49 +2018-09-25,58,67,52 +2018-09-26,57,73,52 +2018-09-27,57,64,51 +2018-09-28,59,68,53 +2018-09-29,62,70,58 +2018-09-30,65,75,60 +2018-10-01,64,73,58 +2018-10-02,65,74,61 +2018-10-03,67,74,61 +2018-10-04,64,71,58 +2018-10-05,60,71,55 +2018-10-06,61,72,58 +2018-10-07,67,78,58 +2018-10-08,69,79,58 +2018-10-09,62,76,55 +2018-10-10,60,68,52 +2018-10-11,60,70,54 +2018-10-12,62,79,52 +2018-10-13,63,78,53 +2018-10-14,58,72,52 +2018-10-15,65,81,55 +2018-10-16,62,73,51 +2018-10-17,57,69,49 +2018-10-18,56,69,49 +2018-10-19,58,74,49 +2018-10-20,58,67,50 +2018-10-21,55,68,49 +2018-10-22,57,64,52 +2018-10-23,56,65,49 +2018-10-24,58,71,50 +2018-10-25,58,72,53 +2018-10-26,60,73,55 +2018-10-27,61,70,54 +2018-10-28,61,72,55 +2018-10-29,60,67,52 +2018-10-30,59,68,49 +2018-10-31,59,76,50 +2018-11-01,64,82,55 +2018-11-02,63,75,51 +2018-11-03,62,79,53 +2018-11-04,59,65,52 +2018-11-05,59,73,50 +2018-11-06,57,70,47 +2018-11-07,58,73,47 +2018-11-08,58,68,49 +2018-11-09,61,68,50 +2018-11-10,54,62,44 +2018-11-11,56,67,42 +2018-11-12,55,67,44 +2018-11-13,55,61,46 +2018-11-14,54,65,44 +2018-11-15,53,62,44 +2018-11-16,53,62,44 +2018-11-17,53,61,44 +2018-11-18,51,57,44 +2018-11-19,53,62,44 +2018-11-20,53,61,44 +2018-11-21,57,60,55 +2018-11-22,58,63,50 +2018-11-23,58,62,55 +2018-11-24,60,61,52 +2018-11-25,54,62,48 +2018-11-26,54,62,48 +2018-11-27,56,60,49 +2018-11-28,59,64,56 +2018-11-29,59,60,55 +2018-11-30,56,60,50 +2018-12-01,54,59,49 +2018-12-02,50,55,42 +2018-12-03,51,56,47 +2018-12-04,52,55,49 +2018-12-05,52,55,49 +2018-12-06,53,60,49 +2018-12-07,52,60,44 +2018-12-08,52,60,44 +2018-12-09,51,55,44 +2018-12-10,50,58,46 +2018-12-11,50,56,44 +2018-12-12,55,62,47 +2018-12-13,52,61,44 +2018-12-14,54,62,47 +2018-12-15,56,62,52 +2018-12-16,57,61,52 +2018-12-17,54,60,50 +2018-12-18,53,59,47 +2018-12-19,55,60,50 +2018-12-20,52,55,47 +2018-12-21,53,58,47 +2018-12-22,52,56,44 +2018-12-23,53,56,48 +2018-12-24,54,60,50 +2018-12-25,53,59,47 +2018-12-26,53,59,45 +2018-12-27,53,59,47 +2018-12-28,54,58,44 +2018-12-29,49,60,41 +2018-12-30,51,59,45 +2018-12-31,51,55,44 +2019-01-01,51,55,44 diff --git a/docs/static/data/examples/us-senators.csv b/docs/static/data/examples/us-senators.csv new file mode 100644 index 000000000..fd3dcf8b3 --- /dev/null +++ b/docs/static/data/examples/us-senators.csv @@ -0,0 +1,101 @@ +state_name,party,name,gender,date_of_birth +Alaska,R,Daniel Sullivan,male,1964-11-13 +Alaska,R,Lisa Murkowski,female,1957-05-22 +Alabama,D,Gordon Jones,male,1954-05-04 +Alabama,R,Richard Shelby,male,1934-05-06 +Arkansas,R,John Boozman,male,1950-12-10 +Arkansas,R,Tom Cotton,male,1977-05-13 +Arizona,D,Kyrsten Sinema,female,1976-07-12 +Arizona,R,Martha McSally,female,1966-03-22 +California,D,Dianne Feinstein,female,1933-06-22 +California,D,Kamala Harris,female,1964-10-20 +Colorado,R,Cory Gardner,male,1974-08-22 +Colorado,D,Michael Bennet,male,1964-11-28 +Connecticut,D,Christopher Murphy,male,1973-08-03 +Connecticut,D,Richard Blumenthal,male,1946-02-13 +Delaware,D,Christopher Coons,male,1963-09-09 +Delaware,D,Thomas Carper,male,1947-01-23 +Florida,R,Rick Scott,male,1952-12-01 +Florida,R,Marco Rubio,male,1971-05-28 +Georgia,R,David Perdue,male,1949-12-10 +Georgia,R,Johnny Isakson,male,1944-12-28 +Hawaii,D,Brian Schatz,male,1972-10-20 +Hawaii,D,Mazie Hirono,female,1947-11-03 +Iowa,R,Joni Ernst,female,1970-07-01 +Illinois,D,Richard Durbin,male,1944-11-21 +Idaho,R,James Risch,male,1943-05-03 +Illinois,D,Tammy Duckworth,female,1968-03-12 +Indiana,R,Todd Young,male,1972-08-24 +Kansas,R,Jerry Moran,male,1954-05-29 +Kansas,R,Pat Roberts,male,1936-04-20 +Kentucky,R,Mitch McConnell,male,1942-02-20 +Kentucky,R,Rand Paul,male,1963-01-07 +Louisiana,R,Bill Cassidy,male,1957-09-28 +Louisiana,R,John Kennedy,male,1951-11-21 +Massachusetts,D,Edward Markey,male,1946-11-11 +Massachusetts,D,Elizabeth Warren,female,1949-06-22 +Maryland,D,Benjamin Cardin,male,1943-10-05 +Maryland,D,Chris Van Hollen,male,1959-01-10 +Maine,I,Angus King,male,1944-03-31 +Maine,R,Susan Collins,female,1952-12-07 +Michigan,D,Debbie Stabenow,female,1950-04-29 +Michigan,D,Gary Peters,male,1958-01-01 +Minnesota,D,Tina Smith,female,1958-03-04 +Minnesota,D,Amy Klobuchar,female,1960-05-25 +Missouri,R,Josh Hawley,male,1979-12-31 +Indiana,R,Mike Braun,male,1954-03-24 +Mississippi,R,Roger Wicker,male,1951-07-05 +Mississippi,R,Cindy Hyde-Smith,female,1959-05-10 +Iowa,R,Charles Grassley,male,1933-09-17 +Montana,R,Steve Daines,male,1962-08-20 +Idaho,R,Mike Crapo,male,1951-05-20 +Missouri,R,Roy Blunt,male,1950-01-10 +North Dakota,R,Kevin Cramer,male,1961-01-21 +North Dakota,R,John Hoeven,male,1957-03-13 +Montana,D,Jon Tester,male,1956-08-21 +North Carolina,R,Richard Burr,male,1955-11-30 +North Carolina,R,Thom Tillis,male,1960-08-30 +Nebraska,R,Ben Sasse,male,1972-02-22 +Nebraska,R,Deb Fischer,female,1951-03-01 +New Hampshire,D,Jeanne Shaheen,female,1947-01-28 +New Hampshire,D,Margaret Hassan,female,1958-02-27 +New Jersey,D,Cory Booker,male,1969-04-27 +New Jersey,D,Robert Menendez,male,1954-01-01 +New Mexico,D,Martin Heinrich,male,1971-10-17 +New Mexico,D,Tom Udall,male,1948-05-18 +Nevada,D,Catherine Cortez-Masto,female,1964-03-29 +Nevada,D,Jacky Rosen,female,1957-08-02 +New York,D,Charles Schumer,male,1950-11-23 +New York,D,Kirsten Gillibrand,female,1966-12-09 +Ohio,R,Rob Portman,male,1955-12-19 +Ohio,D,Sherrod Brown,male,1952-11-09 +Oklahoma,R,James Inhofe,male,1934-11-17 +Oklahoma,R,James Lankford,male,1968-03-04 +Oregon,D,Jeff Merkley,male,1956-10-24 +Oregon,D,Ron Wyden,male,1949-05-03 +Pennsylvania,R,Patrick Toomey,male,1961-11-17 +Pennsylvania,D,Robert Casey,male,1960-04-13 +Rhode Island,D,Jack Reed,male,1949-11-12 +Rhode Island,D,Sheldon Whitehouse,male,1955-10-20 +South Carolina,R,Lindsey Graham,male,1955-07-09 +South Carolina,R,Tim Scott,male,1965-09-19 +South Dakota,R,John Thune,male,1961-01-07 +South Dakota,R,Mike Rounds,male,1954-10-24 +Tennessee,R,Marsha Blackburn,female,1952-06-06 +Tennessee,R,Lamar Alexander,male,1940-07-03 +Texas,R,John Cornyn,male,1952-02-02 +Texas,R,Ted Cruz,male,1970-12-22 +Utah,R,Mike Lee,male,1971-06-04 +Utah,R,Mitt Romney,male,1947-03-12 +Virginia,D,Mark Warner,male,1954-12-15 +Virginia,D,Tim Kaine,male,1958-02-26 +Vermont,I,Bernard Sanders,male,1941-09-08 +Vermont,D,Patrick Leahy,male,1940-03-31 +Washington,D,Maria Cantwell,female,1958-10-13 +Washington,D,Patty Murray,female,1950-10-11 +Wisconsin,R,Ron Johnson,male,1955-04-08 +Wisconsin,D,Tammy Baldwin,female,1962-02-11 +West Virginia,D,Joe Manchin,male,1947-08-24 +West Virginia,R,Shelley Capito,female,1953-11-26 +Wyoming,R,John Barrasso,male,1952-07-21 +Wyoming,R,Michael Enzi,male,1944-02-01 \ No newline at end of file diff --git a/docs/static/data/examples/us-senators.d.ts b/docs/static/data/examples/us-senators.d.ts new file mode 100644 index 000000000..1a007f40b --- /dev/null +++ b/docs/static/data/examples/us-senators.d.ts @@ -0,0 +1,9 @@ +export type USSenatorsDatum = { + state_name: string; + party: string; + name: string; + gender: string; + date_of_birth: Date; +}; + +export type USSenatorsData = USSenatorsDatum[]; diff --git a/docs/static/data/examples/world-population-demographics.csv b/docs/static/data/examples/world-population-demographics.csv new file mode 100644 index 000000000..c7ccf5a79 --- /dev/null +++ b/docs/static/data/examples/world-population-demographics.csv @@ -0,0 +1,22 @@ +age,male,female +0-4,337082467,319557714 +5-9,351715561,331015496 +10-14,346898098,325046485 +15-19,328189555,307629576 +20-24,313191215,294184526 +25-29,304421477,287497451 +30-34,308206126,294461443 +35-39,293650660,283742580 +40-44,264954566,258134000 +45-49,238892693,235655907 +50-54,230886182,231469447 +55-59,204396487,210274344 +60-64,162559789,173807303 +65-69,135678685,152556237 +70-74,99662458,119189625 +75-79,61653088,78620257 +80-84,36107650,52173305 +85-89,17564615,30311032 +90-94,5956267,12939489 +95-99,1189572,3510425 +100+,130480,547105 diff --git a/docs/static/data/examples/world-population-demographics.d.ts b/docs/static/data/examples/world-population-demographics.d.ts new file mode 100644 index 000000000..cd9d8155f --- /dev/null +++ b/docs/static/data/examples/world-population-demographics.d.ts @@ -0,0 +1,5 @@ +export type WorldPopulationDemographicsData = { + age: string; + male: number; + female: number; +}[]; diff --git a/docs/static/robots.txt b/docs/static/robots.txt new file mode 100644 index 000000000..b6dd6670c --- /dev/null +++ b/docs/static/robots.txt @@ -0,0 +1,3 @@ +# allow crawling everything by default +User-agent: * +Disallow: diff --git a/docs/svelte.config.js b/docs/svelte.config.js new file mode 100644 index 000000000..312e1a5e5 --- /dev/null +++ b/docs/svelte.config.js @@ -0,0 +1,34 @@ +import adapter from '@sveltejs/adapter-cloudflare'; +import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; +import { mdsx } from 'mdsx'; +import { mdsxConfig } from './mdsx.config.js'; + +/** @type {import('@sveltejs/kit').Config} */ +const config = { + preprocess: [mdsx(mdsxConfig), vitePreprocess()], + extensions: ['.svelte', '.md'], + kit: { + adapter: adapter(), + alias: { + $examples: './src/examples', + '$static/*': 'static/*', + 'content-collections': './.content-collections/generated' + }, + experimental: { + remoteFunctions: true + } + }, + compilerOptions: { + experimental: { + async: true + } + }, + vitePlugin: { + inspector: { + toggleKeyCombo: 'alt-shift', + toggleButtonPos: 'bottom-right' + } + } +}; + +export default config; diff --git a/docs/tsconfig.json b/docs/tsconfig.json new file mode 100644 index 000000000..a5567ee6b --- /dev/null +++ b/docs/tsconfig.json @@ -0,0 +1,19 @@ +{ + "extends": "./.svelte-kit/tsconfig.json", + "compilerOptions": { + "allowJs": true, + "checkJs": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "sourceMap": true, + "strict": true, + "moduleResolution": "bundler" + } + // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias + // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files + // + // To make changes to top-level options such as include and exclude, we recommend extending + // the generated config; see https://svelte.dev/docs/kit/configuration#typescript +} diff --git a/docs/vite.config.ts b/docs/vite.config.ts new file mode 100644 index 000000000..2c53bb56a --- /dev/null +++ b/docs/vite.config.ts @@ -0,0 +1,52 @@ +import { defineConfig } from 'vitest/config'; +import tailwindcss from '@tailwindcss/vite'; +import { sveltekit } from '@sveltejs/kit/vite'; +import contentCollections from '@content-collections/vite'; +import Icons from 'unplugin-icons/vite'; +// import devtoolsJson from 'vite-plugin-devtools-json'; + +export default defineConfig({ + plugins: [ + tailwindcss(), + sveltekit(), + contentCollections(), + Icons({ + compiler: 'svelte', + customCollections: { + 'custom-brands': { + bluesky: ``, + discord: `` + } + } + }) /*, devtoolsJson()*/ + ], + test: { + expect: { requireAssertions: true }, + projects: [ + { + extends: './vite.config.ts', + test: { + name: 'client', + environment: 'browser', + browser: { + enabled: true, + provider: 'playwright', + instances: [{ browser: 'chromium' }] + }, + include: ['src/**/*.svelte.{test,spec}.{js,ts}'], + exclude: ['src/lib/server/**'], + setupFiles: ['./vitest-setup-client.ts'] + } + }, + { + extends: './vite.config.ts', + test: { + name: 'server', + environment: 'node', + include: ['src/**/*.{test,spec}.{js,ts}'], + exclude: ['src/**/*.svelte.{test,spec}.{js,ts}'] + } + } + ] + } +}); diff --git a/docs/vitest-setup-client.ts b/docs/vitest-setup-client.ts new file mode 100644 index 000000000..570b9f0e1 --- /dev/null +++ b/docs/vitest-setup-client.ts @@ -0,0 +1,2 @@ +/// +/// diff --git a/package.json b/package.json index 60059423c..28b537885 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "type": "module", "homepage": "https://layerchart.com", "scripts": { - "dev": "pnpm -r dev", + "dev": "pnpm package && pnpm --filter docs dev", "test:unit": "pnpm -r test:unit", "build:packages": "rimraf packages/*/dist && pnpm --filter './packages/*' build", "build:examples": "rimraf packages/*/dist && pnpm --filter './packages/*' package && pnpm --filter './examples/*' build", @@ -27,7 +27,7 @@ "rimraf": "6.0.1", "wrangler": "^4.30.0" }, - "packageManager": "pnpm@9.1.1", + "packageManager": "pnpm@10.18.2", "pnpm": { "onlyBuiltDependencies": [ "esbuild" diff --git a/packages/layerchart/package.json b/packages/layerchart/package.json index a56bf90c4..4100cc6c3 100644 --- a/packages/layerchart/package.json +++ b/packages/layerchart/package.json @@ -7,10 +7,12 @@ "homepage": "https://layerchart.com", "version": "2.0.0-next.42", "scripts": { - "dev": "vite dev --port 3002", + "dev": "pnpm package:watch", + "dev:svelte": "vite dev --port 3002", "build": "vite build", "preview": "vite preview", "package": "svelte-package", + "package:watch": "svelte-package --watch", "prepublishOnly": "svelte-package", "check": "svelte-check --tsconfig ./tsconfig.json", "check:watch": "svelte-check --tsconfig ./tsconfig.json --watch", diff --git a/packages/layerchart/src/lib/components/AnnotationLine.svelte b/packages/layerchart/src/lib/components/AnnotationLine.svelte index f2d8f7e93..6e16fc019 100644 --- a/packages/layerchart/src/lib/components/AnnotationLine.svelte +++ b/packages/layerchart/src/lib/components/AnnotationLine.svelte @@ -35,7 +35,7 @@ -{#if renderContext === 'svg'} +{#if layerCtx === 'svg'} diff --git a/packages/layerchart/src/lib/components/Bounds.svelte b/packages/layerchart/src/lib/components/Bounds.svelte index 321e4870e..9309c2756 100644 --- a/packages/layerchart/src/lib/components/Bounds.svelte +++ b/packages/layerchart/src/lib/components/Bounds.svelte @@ -19,7 +19,7 @@ @@ -709,6 +609,8 @@ let { ssr = false, pointerEvents = true, + width: widthProp, + height: heightProp, position = 'relative', percentRange = false, ref: refProp = $bindable(), @@ -790,8 +692,12 @@ const xRangeProp = $derived(_xRangeProp ? _xRangeProp : radial ? [0, 2 * Math.PI] : undefined); - let containerWidth = $state(100); - let containerHeight = $state(100); + // Measured dimensions of the container + let _containerWidth = $state(100); + let _containerHeight = $state(100); + + let containerWidth = $derived(widthProp ?? _containerWidth); + let containerHeight = $derived(heightProp ?? _containerHeight); const logDebug = useDebounce(printDebug, 200); @@ -1386,13 +1292,15 @@
    {#key isMounted} @@ -1430,8 +1338,4 @@ .lc-root-container :global(*) { box-sizing: border-box; } - .lc-root-container { - width: 100%; - height: 100%; - } diff --git a/packages/layerchart/src/lib/components/ChartClipPath.svelte b/packages/layerchart/src/lib/components/ChartClipPath.svelte index e888e7d1f..4a66ec580 100644 --- a/packages/layerchart/src/lib/components/ChartClipPath.svelte +++ b/packages/layerchart/src/lib/components/ChartClipPath.svelte @@ -25,7 +25,7 @@ -{#if renderCtx === 'svg'} +{#if layerCtx === 'svg'} -{:else if renderCtx === 'html'} +{:else if layerCtx === 'html'}
    -{#if renderContext === 'svg'} +{#if layerCtx === 'svg'} {@render clip?.({ id })} @@ -72,7 +72,7 @@ {/if} {#if children} - {#if disabled || renderContext !== 'svg'} + {#if disabled || layerCtx !== 'svg'} {@render children({ id, url, useId })} {:else} diff --git a/packages/layerchart/src/lib/components/Ellipse.svelte b/packages/layerchart/src/lib/components/Ellipse.svelte index e3947e2ea..2da204cd4 100644 --- a/packages/layerchart/src/lib/components/Ellipse.svelte +++ b/packages/layerchart/src/lib/components/Ellipse.svelte @@ -76,9 +76,9 @@ import { cls } from '@layerstack/tailwind'; import { merge } from 'lodash-es'; - import { getRenderContext } from './Chart.svelte'; + import { getLayerContext } from '$lib/contexts/layer.js'; import { createMotion, type MotionProp } from '$lib/utils/motion.svelte.js'; - import { registerCanvasComponent } from './layout/Canvas.svelte'; + import { registerCanvasComponent } from './layers/Canvas.svelte'; import { renderEllipse, type ComputedStylesOptions } from '$lib/utils/canvas.js'; import type { SVGAttributes } from 'svelte/elements'; import { createKey } from '$lib/utils/key.svelte.js'; @@ -114,7 +114,7 @@ const initialRx = initialRxProp ?? rx; const initialRy = initialRyProp ?? ry; - const renderCtx = getRenderContext(); + const layerCtx = getLayerContext(); const motionCx = createMotion(initialCx, () => cx, motion); const motionCy = createMotion(initialCy, () => cy, motion); @@ -141,7 +141,7 @@ const fillKey = createKey(() => fill); const strokeKey = createKey(() => stroke); - if (renderCtx === 'canvas') { + if (layerCtx === 'canvas') { registerCanvasComponent({ name: 'Ellipse', render, @@ -168,7 +168,7 @@ } -{#if renderCtx === 'svg'} +{#if layerCtx === 'svg'} -{:else if renderCtx === 'html'} +{:else if layerCtx === 'html'}
    -{#if renderContext === 'svg'} +{#if layerCtx === 'svg'} {#if children} {@render children({ x, y })} @@ -61,7 +61,7 @@ {/if} {/if} -{#if renderContext === 'canvas'} +{#if layerCtx === 'canvas'} {#if children} diff --git a/packages/layerchart/src/lib/components/GeoSpline.svelte b/packages/layerchart/src/lib/components/GeoSpline.svelte index dce51d7ba..f8f92daf0 100644 --- a/packages/layerchart/src/lib/components/GeoSpline.svelte +++ b/packages/layerchart/src/lib/components/GeoSpline.svelte @@ -35,7 +35,7 @@ -{#if renderCtx === 'svg' && url} +{#if layerCtx === 'svg' && url} {#if children} {@render children({ tiles })} {:else} diff --git a/packages/layerchart/src/lib/components/GeoVisible.svelte b/packages/layerchart/src/lib/components/GeoVisible.svelte index 7258b2aa5..0e0bd69dc 100644 --- a/packages/layerchart/src/lib/components/GeoVisible.svelte +++ b/packages/layerchart/src/lib/components/GeoVisible.svelte @@ -12,7 +12,7 @@ -{#if renderCtx === 'canvas'} +{#if layerCtx === 'canvas'} {@render children?.()} -{:else if renderCtx === 'svg'} +{:else if layerCtx === 'svg'} {@render children?.()} -{:else if renderCtx === 'html'} +{:else if layerCtx === 'html'}
    x2, motion); const motionY2 = createMotion(initialY2, () => y2, motion); - const renderCtx = getRenderContext(); + const layerCtx = getLayerContext(); function render( ctx: CanvasRenderingContext2D, @@ -156,7 +156,7 @@ const fillKey = createKey(() => fill); const strokeKey = createKey(() => stroke); - if (renderCtx === 'canvas') { + if (layerCtx === 'canvas') { registerCanvasComponent({ name: 'Line', render, @@ -181,7 +181,7 @@ } -{#if renderCtx === 'svg'} +{#if layerCtx === 'svg'} -{:else if renderCtx === 'html'} +{:else if layerCtx === 'html'} {@const { angle, length } = pointsToAngleAndLength( { x: motionX1.current, y: motionY1.current }, { x: motionX2.current, y: motionY2.current } diff --git a/packages/layerchart/src/lib/components/LinearGradient.svelte b/packages/layerchart/src/lib/components/LinearGradient.svelte index 1e1068a05..9f8b52795 100644 --- a/packages/layerchart/src/lib/components/LinearGradient.svelte +++ b/packages/layerchart/src/lib/components/LinearGradient.svelte @@ -76,8 +76,9 @@ -{#if renderCtx === 'canvas'} +{#if layerCtx === 'canvas'} {@render children?.({ id, gradient: asAny(canvasGradient) })} -{:else if renderCtx === 'svg'} +{:else if layerCtx === 'svg'} {@render children?.({ id, gradient: `url(#${id})` })} -{:else if renderCtx === 'html'} +{:else if layerCtx === 'html'} {@render children?.({ id, gradient: createCSSGradient() })} {/if} diff --git a/packages/layerchart/src/lib/components/Pack.svelte b/packages/layerchart/src/lib/components/Pack.svelte index 842a6f54b..f01ab45da 100644 --- a/packages/layerchart/src/lib/components/Pack.svelte +++ b/packages/layerchart/src/lib/components/Pack.svelte @@ -32,7 +32,7 @@ -{#if renderCtx === 'canvas'} +{#if layerCtx === 'canvas'} {@render children?.({ id, pattern: asAny(canvasPattern) })} -{:else if renderCtx === 'svg'} +{:else if layerCtx === 'svg'} -{#if renderCtx === 'svg'} +{#if layerCtx === 'svg'} -{#if renderCtx === 'canvas'} +{#if layerCtx === 'canvas'} {@render children?.({ id, gradient: canvasGradient as any })} -{:else if renderCtx === 'svg'} +{:else if layerCtx === 'svg'} width, parseMotionProp(motion, 'width')); const motionHeight = createMotion(initialHeight, () => height, parseMotionProp(motion, 'height')); - const renderCtx = getRenderContext(); + const layerCtx = getLayerContext(); function render( ctx: CanvasRenderingContext2D, @@ -116,7 +116,7 @@ const fillKey = createKey(() => fill); const strokeKey = createKey(() => stroke); - if (renderCtx === 'canvas') { + if (layerCtx === 'canvas') { registerCanvasComponent({ name: 'Rect', render, @@ -144,7 +144,7 @@ } -{#if renderCtx === 'svg'} +{#if layerCtx === 'svg'} -{:else if renderCtx === 'html'} +{:else if layerCtx === 'html'}
    d.nodes, diff --git a/packages/layerchart/src/lib/components/Spline.svelte b/packages/layerchart/src/lib/components/Spline.svelte index c5fb4cf0e..2bb286677 100644 --- a/packages/layerchart/src/lib/components/Spline.svelte +++ b/packages/layerchart/src/lib/components/Spline.svelte @@ -125,11 +125,11 @@ import Group from './Group.svelte'; import { isScaleBand } from '../utils/scales.svelte.js'; import { flattenPathData } from '../utils/path.js'; - import { registerCanvasComponent } from './layout/Canvas.svelte'; + import { registerCanvasComponent } from './layers/Canvas.svelte'; import { renderPathData, type ComputedStylesOptions } from '$lib/utils/canvas.js'; - import { getRenderContext } from './Chart.svelte'; + import { getLayerContext } from '$lib/contexts/layer.js'; import MarkerWrapper from './MarkerWrapper.svelte'; - import { getChartContext } from './Chart.svelte'; + import { getChartContext } from '$lib/contexts/chart.js'; import { createKey } from '$lib/utils/key.svelte.js'; import { createId } from '$lib/utils/createId.js'; @@ -260,7 +260,7 @@ let key = $state(Symbol()); - const renderCtx = getRenderContext(); + const layerCtx = getLayerContext(); function render( ctx: CanvasRenderingContext2D, @@ -282,7 +282,7 @@ const fillKey = createKey(() => fill); const strokeKey = createKey(() => stroke); - if (renderCtx === 'canvas') { + if (layerCtx === 'canvas') { registerCanvasComponent({ name: 'Spline', render, @@ -356,7 +356,7 @@ }); -{#if renderCtx === 'svg'} +{#if layerCtx === 'svg'} {#key key} (); let svgRef = $state(); @@ -446,7 +446,7 @@ const fillKey = createKey(() => fill); const strokeKey = createKey(() => stroke); - if (renderCtx === 'canvas') { + if (layerCtx === 'canvas') { registerCanvasComponent({ name: 'Text', render, @@ -469,7 +469,7 @@ } -{#if renderCtx === 'svg'} +{#if layerCtx === 'svg'} @@ -529,7 +529,7 @@ {/if} -{:else if renderCtx === 'html'} +{:else if layerCtx === 'html'} {@const translateX = textAnchor === 'middle' ? '-50%' : textAnchor === 'end' ? '-100%' : '0%'} {@const translateY = verticalAnchor === 'middle' ? '-50%' : verticalAnchor === 'end' ? '-100%' : '0%'} diff --git a/packages/layerchart/src/lib/components/Threshold.svelte b/packages/layerchart/src/lib/components/Threshold.svelte index 1932c47f4..65b079548 100644 --- a/packages/layerchart/src/lib/components/Threshold.svelte +++ b/packages/layerchart/src/lib/components/Threshold.svelte @@ -44,7 +44,7 @@ import Area from './Area.svelte'; import ClipPath from './ClipPath.svelte'; - import { getChartContext } from './Chart.svelte'; + import { getChartContext } from '$lib/contexts/chart.js'; const ctx = getChartContext(); diff --git a/packages/layerchart/src/lib/components/TransformContext.svelte b/packages/layerchart/src/lib/components/TransformContext.svelte index d5502c8f2..6b8e578ff 100644 --- a/packages/layerchart/src/lib/components/TransformContext.svelte +++ b/packages/layerchart/src/lib/components/TransformContext.svelte @@ -1,145 +1,12 @@
    + import type { ComponentProps, Snippet } from 'svelte'; + + export type CanvasLayerProps = { + type: 'canvas'; + } & Omit, 'type' | 'onpointermove'>; + + export type HtmlLayerProps = { + type: 'html'; + } & Omit, 'type' | 'onpointermove'>; + + export type SvgLayerProps = { + type: 'svg'; + } & Omit, 'type' | 'onpointermove'>; + + export type DefaultLayerProps = { + type?: undefined; + children: Snippet; + }; + + export type LayerProps = ( + | CanvasLayerProps + | HtmlLayerProps + | SvgLayerProps + | DefaultLayerProps + ) & { + onpointermove?: (e: PointerEvent) => void; + }; + + + + +{#if layer === 'canvas'} + }> + {#snippet children(props)} + {#if settings.debug} + + + {/if} + + {@render children?.(props)} + {/snippet} + +{:else if layer === 'svg'} + }> + {#snippet children(props)} + {#if settings.debug} + + + {/if} + + {@render children?.(props)} + {/snippet} + +{:else if layer === 'html'} + }> + {#snippet children(props)} + {#if settings.debug} + + + {/if} + + {@render children?.(props)} + {/snippet} + +{/if} + + diff --git a/packages/layerchart/src/lib/components/layout/Svg.svelte b/packages/layerchart/src/lib/components/layers/Svg.svelte similarity index 94% rename from packages/layerchart/src/lib/components/layout/Svg.svelte rename to packages/layerchart/src/lib/components/layers/Svg.svelte index 696c66cbb..970ec907f 100644 --- a/packages/layerchart/src/lib/components/layout/Svg.svelte +++ b/packages/layerchart/src/lib/components/layers/Svg.svelte @@ -63,9 +63,10 @@ import { onMount } from 'svelte'; - import { getChartContext } from '../Chart.svelte'; + import { getChartContext } from '$lib/contexts/chart.js'; import { Context } from 'runed'; let { diff --git a/packages/layerchart/src/lib/components/layout/Layer.svelte b/packages/layerchart/src/lib/components/layout/Layer.svelte deleted file mode 100644 index 9332170de..000000000 --- a/packages/layerchart/src/lib/components/layout/Layer.svelte +++ /dev/null @@ -1,41 +0,0 @@ - - - - -{#if type === 'canvas'} - }> - {@render children?.()} - -{:else if type === 'svg'} - }> - {@render children?.()} - -{:else if type === 'html'} - }> - {@render children?.()} - -{/if} diff --git a/packages/layerchart/src/lib/components/tooltip/Tooltip.svelte b/packages/layerchart/src/lib/components/tooltip/Tooltip.svelte index 22c9c0967..b22c6909d 100644 --- a/packages/layerchart/src/lib/components/tooltip/Tooltip.svelte +++ b/packages/layerchart/src/lib/components/tooltip/Tooltip.svelte @@ -158,10 +158,10 @@ import { cls } from '@layerstack/tailwind'; import { isScaleBand } from '../../utils/scales.svelte.js'; - import { getChartContext, type ChartContextValue } from '../Chart.svelte'; - import { getTooltipContext } from './TooltipContext.svelte'; + import { getChartContext, type ChartContextValue } from '$lib/contexts/chart.js'; + import { getTooltipContext } from '$lib/contexts/tooltip.js'; import { createMotion, type MotionProp } from '$lib/utils/motion.svelte.js'; - import { untrack, type Snippet } from 'svelte'; + import { type Snippet } from 'svelte'; let { anchor = 'top-left', diff --git a/packages/layerchart/src/lib/components/tooltip/TooltipContext.svelte b/packages/layerchart/src/lib/components/tooltip/TooltipContext.svelte index 6525024bb..d4f4a745b 100644 --- a/packages/layerchart/src/lib/components/tooltip/TooltipContext.svelte +++ b/packages/layerchart/src/lib/components/tooltip/TooltipContext.svelte @@ -1,11 +1,9 @@ diff --git a/packages/layerchart/src/lib/index.ts b/packages/layerchart/src/lib/index.ts index 1aca26f88..7a093b17d 100644 --- a/packages/layerchart/src/lib/index.ts +++ b/packages/layerchart/src/lib/index.ts @@ -1,2 +1,3 @@ export * from './components/index.js'; +export * from './contexts/index.js'; export * from './utils/index.js'; diff --git a/packages/layerchart/src/lib/states/settings.svelte.ts b/packages/layerchart/src/lib/states/settings.svelte.ts new file mode 100644 index 000000000..19fd823e4 --- /dev/null +++ b/packages/layerchart/src/lib/states/settings.svelte.ts @@ -0,0 +1,19 @@ +import type { LayerContext } from '$lib/contexts/layer.js'; + +export type SettingsOptions = { + layer?: LayerContext; + debug?: boolean; +}; + +/** Global settings context for charts */ +export class Settings { + layer: LayerContext; + debug: boolean; + + constructor(options: SettingsOptions = {}) { + this.layer = $state(options.layer ?? 'svg'); + this.debug = $state(options.debug ?? false); + } +} + +export const defaultSettings = new Settings(); diff --git a/packages/layerchart/src/lib/states/transform.svelte.ts b/packages/layerchart/src/lib/states/transform.svelte.ts new file mode 100644 index 000000000..bd86061d8 --- /dev/null +++ b/packages/layerchart/src/lib/states/transform.svelte.ts @@ -0,0 +1,39 @@ +import type { TransformContextValue } from '$lib/contexts/transform.js'; + +export type TransformMode = 'canvas' | 'manual' | 'none'; +export type TransformScrollMode = 'scale' | 'translate' | 'none'; + +export const DEFAULT_TRANSLATE = { x: 0, y: 0 }; +export const DEFAULT_SCALE = 1; + +export function createDefaultTransformContext() { + let defaultTranslate = $state(DEFAULT_TRANSLATE); + let defaultScale = $state(DEFAULT_SCALE); + + const defaultContext: TransformContextValue = { + mode: 'none', + get scale() { + return defaultScale; + }, + setScale: (value: number) => { + defaultScale = value; + }, + get translate() { + return defaultTranslate; + }, + setTranslate: (value: { x: 0; y: 0 }) => { + defaultTranslate = value; + }, + moving: false, + dragging: false, + scrollMode: 'none', + setScrollMode: () => {}, + reset: () => {}, + zoomIn: () => {}, + zoomOut: () => {}, + translateCenter: () => {}, + zoomTo: () => {}, + }; + + return defaultContext; +} diff --git a/packages/layerchart/src/lib/utils/rect.svelte.ts b/packages/layerchart/src/lib/utils/rect.svelte.ts index f0be8ee80..75dfb20b5 100644 --- a/packages/layerchart/src/lib/utils/rect.svelte.ts +++ b/packages/layerchart/src/lib/utils/rect.svelte.ts @@ -1,7 +1,7 @@ -import type { ChartContextValue } from '$lib/components/Chart.svelte'; +import { max, min } from 'd3-array'; +import type { ChartContextValue } from '$lib/contexts/chart.js'; import { accessor, type Accessor } from './common.js'; import { isScaleBand } from './scales.svelte.js'; -import { max, min } from 'd3-array'; /** * A set of inset distances, applied to a rectangle to shrink or expand diff --git a/packages/layerchart/src/routes/docs/+layout.svelte b/packages/layerchart/src/routes/docs/+layout.svelte index 00077f22d..fdc6b2110 100644 --- a/packages/layerchart/src/routes/docs/+layout.svelte +++ b/packages/layerchart/src/routes/docs/+layout.svelte @@ -38,10 +38,13 @@ import Code from '$lib/docs/Code.svelte'; import ViewSourceButton from '$lib/docs/ViewSourceButton.svelte'; import { page } from '$app/state'; - import { shared } from './shared.svelte.js'; + import { setSettings, getSettings } from '$lib/contexts/settings.js'; const { children } = $props(); + // TODO: `setSettings({...})` or just use default? + const settings = getSettings(); + const [type, name] = $derived(page.url.pathname.split('/').slice(2) ?? []); const title = $derived(page.data.meta?.title ?? name); const pageUrl = $derived(`src/routes/docs/${type}/${name}/+page.svelte?plain=1`); @@ -124,7 +127,7 @@ {#if supportedContexts} diff --git a/packages/layerchart/src/routes/docs/components/AnnotationLine/+page.svelte b/packages/layerchart/src/routes/docs/components/AnnotationLine/+page.svelte index 520cb81c1..021e0eff8 100644 --- a/packages/layerchart/src/routes/docs/components/AnnotationLine/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/AnnotationLine/+page.svelte @@ -1,5 +1,4 @@

    Examples

    @@ -66,7 +59,7 @@
    - + {#snippet aboveMarks({ context })}
    - + {#snippet aboveMarks({ context })}
    - + {#snippet aboveMarks({ context })}
    - + {#snippet aboveMarks({ context })}
    - + {#snippet aboveMarks({ context })}
    - + {#snippet aboveMarks({ context })} {#each annotations as annotation}
    - + {#snippet aboveMarks({ context })}
    - + {#snippet aboveMarks({ context })}

    Examples

    @@ -67,10 +63,10 @@
    - + {#snippet aboveContext({ context })} - + {#each annotations as annotation}
    - + {#snippet aboveContext({ context })} - + {#each annotations as annotation}
    - + {#snippet aboveContext({ context })} - + {#each annotations as annotation} {#snippet aboveMarks({ context })} {@const lastPoint = data.appleStock[data.appleStock.length - 1]} @@ -269,7 +263,7 @@
    - + {#snippet aboveMarks({ context })} {@const maxPoint = data.appleStock[maxIndex(data.appleStock, (d) => d.value)]}
    - + {#snippet aboveContext({ context })} - +
    - + {#snippet aboveContext({ context })} - + - import type { ComponentProps } from 'svelte'; - import { AnnotationRange, BarChart, LineChart, type Placement } from 'layerchart'; import { Button, Field, Menu, RangeField, Toggle } from 'svelte-ux'; import Preview from '$lib/docs/Preview.svelte'; import { createDateSeries } from '$lib/utils/genData.js'; - import { shared } from '../../shared.svelte.js'; let { data } = $props(); @@ -32,11 +29,6 @@ let placement: Placement = $state('center'); let xOffset = $state(0); let yOffset = $state(0); - - let renderContext = $derived( - shared.renderContext as ComponentProps['renderContext'] - ); - let debug = $derived(shared.debug);

    Examples

    @@ -45,7 +37,7 @@
    - + {#snippet belowMarks({ context })}
    - + {#snippet belowMarks({ context })}
    - + {#snippet belowMarks({ context })}
    - + {#snippet belowMarks({ context })} @@ -122,7 +114,7 @@
    - + {#snippet belowMarks({ context })}
    - + {#snippet belowMarks({ context })}
    - + {#snippet belowMarks({ context })}
    - + {#snippet belowMarks({ context })}
    - + {#snippet aboveMarks({ context })}
    - + {#snippet belowMarks({ context })}
    - + {#snippet belowMarks({ context })}
    - + {#snippet belowMarks({ context })}
    - + {#snippet aboveMarks({ context })}
    - + {#key spring} {#snippet children({ gradient })} @@ -157,7 +156,7 @@ {#each labelExamples as example}
    - + {#snippet children({ gradient })} - import type { ComponentProps } from 'svelte'; import { ArcChart, Arc, Group, LinearGradient, Text } from 'layerchart'; import { group } from 'd3-array'; import Preview from '$lib/docs/Preview.svelte'; import { longData } from '$lib/utils/genData.js'; import { Field, Switch, Toggle } from 'svelte-ux'; - import { shared } from '../../shared.svelte.js'; const dataByYear = group(longData, (d) => d.year); const data = dataByYear.get(2019) ?? []; @@ -28,11 +26,6 @@ { key: 'exercise', value: 20, maxValue: 30, color: '#a3e635' }, { key: 'stand', value: 10, maxValue: 12, color: '#22d3ee' }, ]; - - let renderContext = $derived( - shared.renderContext as ComponentProps['renderContext'] - ); - let debug = $derived(shared.debug);

    Examples

    @@ -49,8 +42,6 @@ outerRadius={-25} innerRadius={-20} cornerRadius={10} - {renderContext} - {debug} />
    @@ -59,7 +50,7 @@
    - + {#snippet marks()} {#snippet children({ gradient })} @@ -108,8 +99,6 @@ props={{ group: { y: 45 }, }} - {renderContext} - {debug} />
    @@ -127,8 +116,6 @@ trackOuterRadius={-5} trackInnerRadius={-10} cornerRadius={10} - {renderContext} - {debug} />
    @@ -146,8 +133,6 @@ trackOuterRadius={-5} trackInnerRadius={-10} cornerRadius={10} - {renderContext} - {debug} />
    @@ -165,8 +150,6 @@ trackOuterRadius={0.95} trackInnerRadius={0.9} cornerRadius={10} - {renderContext} - {debug} />
    @@ -185,8 +168,6 @@ trackOuterRadius={75} trackInnerRadius={65} cornerRadius={10} - {renderContext} - {debug} />
    @@ -202,8 +183,6 @@ outerRadius={-25} innerRadius={-20} cornerRadius={10} - {renderContext} - {debug} />
    @@ -221,8 +200,6 @@ innerRadius={-20} cornerRadius={10} props={{ group: { y: 70 } }} - {renderContext} - {debug} />
    @@ -239,8 +216,6 @@ innerRadius={-20} range={[90, -270]} cornerRadius={10} - {renderContext} - {debug} />
    @@ -257,8 +232,6 @@ innerRadius={-20} range={[180, -180]} cornerRadius={10} - {renderContext} - {debug} />
    @@ -279,8 +252,6 @@ outerRadius={-25} innerRadius={-20} cornerRadius={10} - {renderContext} - {debug} />
    @@ -303,8 +274,6 @@ outerRadius={-25} innerRadius={-20} cornerRadius={10} - {renderContext} - {debug} />
    @@ -327,8 +296,6 @@ outerRadius={-25} innerRadius={-20} cornerRadius={10} - {renderContext} - {debug} > {#snippet arc({ props, seriesIndex, visibleSeries })} @@ -371,8 +338,6 @@ outerRadius={-25} innerRadius={-20} cornerRadius={10} - {renderContext} - {debug} /> {/if}
    @@ -404,8 +369,6 @@ outerRadius={-25} innerRadius={-20} cornerRadius={10} - {renderContext} - {debug} /> {/if}
    @@ -416,6 +379,6 @@
    - +
    --> diff --git a/packages/layerchart/src/routes/docs/components/Area/+page.svelte b/packages/layerchart/src/routes/docs/components/Area/+page.svelte index e365f5045..efcba875f 100644 --- a/packages/layerchart/src/routes/docs/components/Area/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Area/+page.svelte @@ -7,7 +7,6 @@ import Preview from '$lib/docs/Preview.svelte'; import PathDataMenuField from '$lib/docs/PathDataMenuField.svelte'; import CurveMenuField from '$lib/docs/CurveMenuField.svelte'; - import { shared } from '../../shared.svelte.js'; let pointCount = $state(10); let showPoints = $state(false); @@ -58,7 +57,7 @@
    - + {#if show} diff --git a/packages/layerchart/src/routes/docs/components/AreaChart/+page.svelte b/packages/layerchart/src/routes/docs/components/AreaChart/+page.svelte index b726efe71..170aae765 100644 --- a/packages/layerchart/src/routes/docs/components/AreaChart/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/AreaChart/+page.svelte @@ -1,5 +1,4 @@

    Examples

    @@ -132,7 +132,7 @@ yNice padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -150,7 +150,7 @@ yNice padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -168,7 +168,7 @@ yNice padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -186,7 +186,7 @@ yNice padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -204,7 +204,7 @@ yNice padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -222,7 +222,7 @@ yNice padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -240,7 +240,7 @@ yNice padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -260,7 +260,7 @@ yNice padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -281,7 +281,7 @@ yNice padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -300,7 +300,7 @@ yNice padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -313,7 +313,7 @@
    - +
    - +
    - + @@ -368,7 +368,7 @@ yDomain={[0, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - +
    - + scale.ticks?.().filter(Number.isInteger)} /> @@ -402,7 +402,7 @@
    - + @@ -414,7 +414,7 @@
    - + @@ -426,7 +426,7 @@
    - + [45, ...(scale.ticks?.() ?? [])]} /> @@ -438,7 +438,7 @@
    - + @@ -450,7 +450,7 @@
    - + @@ -462,7 +462,7 @@
    - +
    - + scale.ticks?.().filter((d) => d !== 0)} /> @@ -492,7 +492,7 @@
    - + v || ''} /> @@ -504,7 +504,7 @@
    - + - + {#if debug} @@ -546,7 +546,7 @@
    - + {#if debug} @@ -569,7 +569,7 @@
    - + {#if debug} @@ -597,7 +597,7 @@
    - + {#if debug} @@ -621,7 +621,7 @@
    {#snippet children({ context })} - + {#if debug} @@ -654,7 +654,7 @@
    - + @@ -667,7 +667,7 @@
    - + @@ -680,7 +680,7 @@
    - + @@ -706,7 +706,7 @@
    {example.label}
    - + @@ -735,7 +735,7 @@
    {example.label}
    - + @@ -765,7 +765,7 @@
    {example.label}
    - + @@ -784,7 +784,7 @@
    {example.label}
    - + {example.label}
    - + - + @@ -871,7 +871,7 @@ }, }} > - + @@ -905,7 +905,7 @@ }, }} > - + @@ -924,7 +924,7 @@ }, }} > - + diff --git a/packages/layerchart/src/routes/docs/components/BarChart/+page.svelte b/packages/layerchart/src/routes/docs/components/BarChart/+page.svelte index 657ac9e92..fa4cfb37b 100644 --- a/packages/layerchart/src/routes/docs/components/BarChart/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/BarChart/+page.svelte @@ -12,6 +12,7 @@ Text, Tooltip, Polygon, + getSettings, } from 'layerchart'; import { extent, group, mean, sum } from 'd3-array'; import { scaleLinear, scaleLog, scaleThreshold, scaleTime } from 'd3-scale'; @@ -23,7 +24,6 @@ import { timeDay, timeMonth } from 'd3-time'; import { interpolate, quantize } from 'd3-interpolate'; import { interpolateSpectral } from 'd3-scale-chromatic'; - import { shared } from '../../shared.svelte.js'; let { data } = $props(); @@ -102,9 +102,6 @@ end: new Date('2021-12-31'), }, ]; - - let renderContext = $derived(shared.renderContext as 'svg' | 'canvas'); - let debug = $derived(shared.debug);

    Examples

    @@ -113,7 +110,7 @@
    - +
    @@ -121,14 +118,7 @@
    - +
    @@ -136,14 +126,7 @@
    - +
    @@ -157,8 +140,6 @@ y="date" yInterval={timeDay} orientation="horizontal" - {renderContext} - {debug} />
    @@ -173,8 +154,6 @@ y="value" xInterval={timeDay} props={{ bars: { insets: { x: 4 } } }} - {renderContext} - {debug} />
    @@ -188,8 +167,6 @@ x="date" y="value" props={{ bars: { class: 'fill-secondary' } }} - {renderContext} - {debug} />
    @@ -198,14 +175,7 @@
    - +
    @@ -227,8 +197,6 @@ props={{ yAxis: { format: 'metric' }, }} - {renderContext} - {debug} />
    @@ -245,8 +213,6 @@ cScale={scaleThreshold()} cDomain={[0]} cRange={['var(--color-danger)', 'var(--color-success)']} - {renderContext} - {debug} />
    @@ -255,7 +221,7 @@
    - + {#snippet marks({ series, getBarsProps })} {#each series as s, i (s.key)} @@ -273,14 +239,7 @@
    - +
    @@ -313,8 +272,6 @@ context: { mode: 'bounds' }, }, }} - {renderContext} - {debug} > {#snippet tooltip({ context })} @@ -335,14 +292,7 @@
    - + {#snippet belowMarks()} {/snippet} @@ -365,8 +315,6 @@ props: { insets: { x: 8 } }, }, ]} - {renderContext} - {debug} />
    @@ -383,8 +331,6 @@ { key: 'baseline', color: 'var(--color-surface-content)', props: { fillOpacity: 0.2 } }, { key: 'value', color: 'var(--color-primary)', props: { insets: { y: 4 } } }, ]} - {renderContext} - {debug} />
    @@ -410,8 +356,6 @@ props: { insets: { x: 8 } }, }, ]} - {renderContext} - {debug} />
    @@ -434,8 +378,6 @@ color: 'var(--color-secondary)', }, ]} - {renderContext} - {debug} />
    @@ -465,8 +407,6 @@ color: 'var(--color-secondary)', }, ]} - {renderContext} - {debug} > {#snippet tooltip({ context, series })} @@ -523,8 +463,6 @@ color: 'var(--color-secondary)', }, ]} - {renderContext} - {debug} > {#snippet tooltip({ series, context })} @@ -583,8 +521,6 @@ header: { format: 'none' }, }, }} - {renderContext} - {debug} />
    @@ -619,8 +555,6 @@ header: { format: 'none' }, }, }} - {renderContext} - {debug} > {#snippet aboveMarks({ context, visibleSeries })} @@ -675,8 +609,6 @@ header: { format: 'none' }, }, }} - {renderContext} - {debug} />
    @@ -716,8 +648,6 @@ console.log(e, detail); alert(JSON.stringify(detail)); }} - {renderContext} - {debug} />
    @@ -757,8 +687,6 @@ header: { format: 'none' }, }, }} - {renderContext} - {debug} />
    @@ -793,8 +721,6 @@ header: { format: 'none' }, }, }} - {renderContext} - {debug} />
    @@ -830,8 +756,6 @@ header: { format: 'none' }, }, }} - {renderContext} - {debug} />
    @@ -868,8 +792,6 @@ }, }} stackPadding={5.0} - {renderContext} - {debug} />
    @@ -903,8 +825,6 @@ header: { format: 'none' }, }, }} - {renderContext} - {debug} />
    @@ -944,8 +864,6 @@ header: { format: 'none' }, }, }} - {renderContext} - {debug} />
    @@ -985,7 +903,7 @@ header: { format: 'none' }, }, }} - {renderContext} {debug} + />
    --> @@ -1021,8 +939,6 @@ }, }} legend - {renderContext} - {debug} />
    @@ -1058,8 +974,6 @@ }, }} legend - {renderContext} - {debug} />
    @@ -1095,8 +1009,6 @@ }, }} legend={{ placement: 'top-right', classes: { root: 'mt-2' } }} - {renderContext} - {debug} />
    @@ -1135,8 +1047,6 @@ }, }} legend - {renderContext} - {debug} />
    @@ -1145,7 +1055,7 @@
    - +
    @@ -1153,14 +1063,7 @@
    - +
    @@ -1187,8 +1090,6 @@ }, }} padding={{ left: 0, bottom: 16 }} - {renderContext} - {debug} />
    @@ -1197,16 +1098,7 @@
    - + {#snippet aboveMarks()} 0} value="date" class="text-sm fill-surface-300 stroke-none" /> {/snippet} @@ -1226,8 +1118,6 @@ grid={false} bandPadding={0.1} props={{ bars: { radius: 1, strokeWidth: 0 } }} - {renderContext} - {debug} />
    @@ -1252,8 +1142,6 @@ xAxis: { ticks: (scale) => scaleTime(scale.domain(), scale.range()).ticks() }, rule: { y: false }, }} - {renderContext} - {debug} > {#snippet tooltip({ context })} @@ -1331,8 +1219,6 @@ context: { mode: 'bounds' }, }, }} - {renderContext} - {debug} > {#snippet axis({ context })} @@ -1371,7 +1257,7 @@
    - +
    @@ -1379,7 +1265,7 @@
    - +
    @@ -1392,8 +1278,6 @@ x="date" y="value" props={{ xAxis: { ticks: (scale) => scaleTime(scale.domain(), scale.range()).ticks() } }} - {renderContext} - {debug} />
    @@ -1402,7 +1286,7 @@
    - +
    @@ -1410,14 +1294,7 @@
    - +
    @@ -1433,8 +1310,6 @@ yScale={scaleLog()} yDomain={[1, 100]} props={{ yAxis: { ticks: [1, 2, 3, 4, 5, 10, 20, 30, 40, 50, 100] } }} - {renderContext} - {debug} />
    @@ -1443,15 +1318,7 @@
    - +
    @@ -1464,7 +1331,7 @@
    - +
    @@ -1478,8 +1345,6 @@ y="value" yRange={({ height }) => [height / 5, height / 2]} radial - {renderContext} - {debug} />
    @@ -1495,8 +1360,6 @@ yRange={({ height }) => [height / 5, height / 2]} radial props={{ bars: { padAngle: 0.1 } }} - {renderContext} - {debug} />
    @@ -1512,8 +1375,6 @@ yRange={({ height }) => [height / 5, height / 2]} radial orientation="horizontal" - {renderContext} - {debug} />
    @@ -1543,8 +1404,6 @@ ]} radial orientation="horizontal" - {renderContext} - {debug} />
    @@ -1575,8 +1434,6 @@ radial orientation="horizontal" grid={{ bandAlign: 'between' }} - {renderContext} - {debug} />
    @@ -1613,8 +1470,6 @@ }, }} padding={{ top: 10, bottom: 10 }} - {renderContext} - {debug} > {#snippet tooltip({ context })} @@ -1652,8 +1507,6 @@ yAxis: { ticks: 4, format: (v) => v + '° F' }, grid: { xTicks: 12 }, }} - {renderContext} - {debug} />
    @@ -1670,8 +1523,6 @@ console.log(e, detail); alert(JSON.stringify(detail)); }} - {renderContext} - {debug} />
    @@ -1680,7 +1531,7 @@
    - + {#snippet tooltip({ context })} {#snippet children({ data })} @@ -1717,8 +1568,6 @@ }, }, ]} - {renderContext} - {debug} />
    @@ -1746,8 +1595,6 @@ }, }, ]} - {renderContext} - {debug} />
    @@ -1777,8 +1624,6 @@ }, }, ]} - {renderContext} - {debug} />
    @@ -1808,8 +1653,6 @@ }, }, ]} - {renderContext} - {debug} />
    @@ -1843,8 +1686,6 @@ }, }, ]} - {renderContext} - {debug} />
    @@ -1859,7 +1700,7 @@
    {#snippet children({ context })} - + diff --git a/packages/layerchart/src/routes/docs/components/BrushContext/+page.svelte b/packages/layerchart/src/routes/docs/components/BrushContext/+page.svelte index 281efa7eb..fd5412664 100644 --- a/packages/layerchart/src/routes/docs/components/BrushContext/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/BrushContext/+page.svelte @@ -29,7 +29,6 @@ import { createDateSeries, randomWalk } from '$lib/utils/genData.js'; import { asAny } from '$lib/utils/types.js'; import type { DomainType } from '$lib/utils/scales.svelte.js'; - import { shared } from '../../shared.svelte.js'; let { data } = $props(); @@ -77,7 +76,7 @@
    - + @@ -94,7 +93,7 @@ y="value" brush={{ classes: { range: 'bg-secondary/10', handle: 'bg-secondary/50' } }} > - + @@ -111,7 +110,7 @@ y="value" brush={{ classes: { range: 'striped-background' } }} > - + @@ -129,7 +128,7 @@ brush={{ classes: { range: 'bg-secondary/10' }, handleSize: 8 }} > {#snippet children({ context })} - + {#if context.brush.isActive} @@ -169,7 +168,7 @@
    {#snippet children({ context })} - + {#if context.brush.isActive} {#snippet children({ context })} - + {#if context.brush.isActive} @@ -249,7 +248,7 @@ }, }} > - + @@ -287,7 +286,7 @@ }, }} > - + @@ -330,7 +329,7 @@ }, }} > - + @@ -361,7 +360,7 @@ yDomain={[0, null]} padding={{ left: 16, bottom: 24 }} > - + @@ -388,7 +387,7 @@ }, }} > - + @@ -416,7 +415,7 @@ }, }} > - + @@ -430,7 +429,7 @@ {yDomain} padding={{ left: 16, bottom: 24 }} > - + @@ -466,7 +465,7 @@ yDomain={[0, null]} padding={{ left: 16, bottom: 24 }} > - + @@ -498,7 +497,7 @@ }, }} > - + @@ -529,7 +528,7 @@ yBaseline={0} padding={{ left: 16, bottom: 24 }} > - + @@ -560,7 +559,7 @@ onReset: (e) => (xDomain = null), }} > - + {#snippet children({ context })} - + @@ -665,7 +664,7 @@ }, }} > - + @@ -724,7 +723,7 @@ }, }} > - + @@ -756,7 +755,7 @@ }, }} > - + {#snippet children({ points })} {#each points as point} @@ -793,7 +792,7 @@
    - + diff --git a/packages/layerchart/src/routes/docs/components/Calendar/+page.svelte b/packages/layerchart/src/routes/docs/components/Calendar/+page.svelte index 03f44f29d..3457bd635 100644 --- a/packages/layerchart/src/routes/docs/components/Calendar/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Calendar/+page.svelte @@ -7,7 +7,6 @@ import Preview from '$lib/docs/Preview.svelte'; import { createDateSeries } from '$lib/utils/genData.js'; - import { shared } from '../../shared.svelte.js'; import { endOfInterval, intervalOffset, startOfInterval } from '@layerstack/utils'; const now = new Date(); @@ -51,7 +50,7 @@ padding={{ top: 20 }} > {#snippet children({ context })} - + {#snippet children({ context })} - + {#snippet children({ context })} - + {#each range(2019, 2024) as year, i} {@const start = new Date(year, 0, 1)} {@const end = endOfInterval('year', start)} @@ -209,7 +208,7 @@ padding={{ top: 20 }} > {#snippet children({ context })} - + {#snippet children({ cells, cellSize })} {#each cells as cell} @@ -332,7 +331,7 @@ padding={{ top: 20 }} > {#snippet children({ context })} - + {#snippet children({ context })} - + diff --git a/packages/layerchart/src/routes/docs/components/Circle/+page.svelte b/packages/layerchart/src/routes/docs/components/Circle/+page.svelte index 35e4ecd31..0a79a7b81 100644 --- a/packages/layerchart/src/routes/docs/components/Circle/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Circle/+page.svelte @@ -1,7 +1,6 @@

    Examples

    @@ -15,7 +14,7 @@ yDomain={[0, 100]} padding={{ top: 10, bottom: 20, left: 24, right: 10 }} > - + @@ -41,7 +40,7 @@ yDomain={[0, 100]} padding={{ top: 10, bottom: 20, left: 24, right: 10 }} > - + @@ -70,7 +69,7 @@ yDomain={[0, 100]} padding={{ top: 10, bottom: 20, left: 24, right: 10 }} > - + diff --git a/packages/layerchart/src/routes/docs/components/Connector/+page.svelte b/packages/layerchart/src/routes/docs/components/Connector/+page.svelte index 618ad3768..c085e8241 100644 --- a/packages/layerchart/src/routes/docs/components/Connector/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Connector/+page.svelte @@ -10,7 +10,6 @@ import ConnectorTypeMenuField from 'layerchart/docs/ConnectorTypeMenuField.svelte'; import ConnectorSweepMenuField from 'layerchart/docs/ConnectorSweepMenuField.svelte'; import { movable } from '$lib/actions/movable.js'; - import { shared } from '../../shared.svelte.js'; let source = $state({ x: 300, y: 150 }); let target = $state({ x: 500, y: 300 }); @@ -37,7 +36,7 @@
    - + import { Axis, Chart, Ellipse, Layer } from 'layerchart'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js';

    Examples

    @@ -15,7 +14,7 @@ yDomain={[0, 100]} padding={{ top: 10, bottom: 20, left: 24, right: 10 }} > - + @@ -42,7 +41,7 @@ yDomain={[0, 100]} padding={{ top: 10, bottom: 20, left: 24, right: 10 }} > - + @@ -72,7 +71,7 @@ yDomain={[0, 100]} padding={{ top: 10, bottom: 20, left: 24, right: 10 }} > - + diff --git a/packages/layerchart/src/routes/docs/components/Frame/+page.svelte b/packages/layerchart/src/routes/docs/components/Frame/+page.svelte index e892bafbd..96a4dd0a3 100644 --- a/packages/layerchart/src/routes/docs/components/Frame/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Frame/+page.svelte @@ -1,7 +1,6 @@

    Examples

    @@ -19,7 +18,7 @@ yNice padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -41,7 +40,7 @@ yNice padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -63,7 +62,7 @@ yNice padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -85,7 +84,7 @@ yNice padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + {#snippet children({ gradient })} diff --git a/packages/layerchart/src/routes/docs/components/GeoCircle/+page.svelte b/packages/layerchart/src/routes/docs/components/GeoCircle/+page.svelte index 201d47679..dbc57ef0a 100644 --- a/packages/layerchart/src/routes/docs/components/GeoCircle/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/GeoCircle/+page.svelte @@ -15,7 +15,6 @@ import { Field, RangeField, SelectField, ToggleGroup, ToggleOption } from 'svelte-ux'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; let { data } = $props(); @@ -99,7 +98,7 @@ }} padding={{ left: 100, right: 100 }} > - + diff --git a/packages/layerchart/src/routes/docs/components/Grid/+page.svelte b/packages/layerchart/src/routes/docs/components/Grid/+page.svelte index 5380cb447..586881f19 100644 --- a/packages/layerchart/src/routes/docs/components/Grid/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Grid/+page.svelte @@ -5,7 +5,6 @@ import Preview from '$lib/docs/Preview.svelte'; import { createDateSeries } from '$lib/utils/genData.js'; - import { shared } from '../../shared.svelte.js'; const data = createDateSeries({ min: 50, max: 100, value: 'integer' }); const { mdScreen } = new MediaQueryPresets(); @@ -24,7 +23,7 @@ yDomain={[0, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - +
    @@ -42,7 +41,7 @@ yDomain={[0, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -60,7 +59,7 @@ yDomain={[0, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -78,7 +77,7 @@ yDomain={[0, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -96,7 +95,7 @@ yDomain={[0, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -115,7 +114,7 @@ yDomain={[0, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -128,7 +127,7 @@
    - + scale.ticks?.().splice(1)} y /> @@ -140,7 +139,7 @@
    - + scale.ticks?.().splice(1)} y radialY="linear" /> @@ -158,7 +157,7 @@ yDomain={[0, 2]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + scale.ticks?.().filter(Number.isInteger)} /> - + @@ -201,7 +200,7 @@ yDomain={[0, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + [45, ...(scale.ticks?.() ?? [])]} /> [45, ...(scale.ticks?.() ?? [])]} /> @@ -220,7 +219,7 @@ yDomain={[0, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -239,7 +238,7 @@ yDomain={[0, 100]} padding={{ bottom: 20, left: 20, right: 20 }} > - + @@ -258,7 +257,7 @@ yDomain={[0, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + diff --git a/packages/layerchart/src/routes/docs/components/Group/+page.svelte b/packages/layerchart/src/routes/docs/components/Group/+page.svelte index 6d6c2d45f..957844752 100644 --- a/packages/layerchart/src/routes/docs/components/Group/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Group/+page.svelte @@ -1,7 +1,6 @@

    Examples

    @@ -9,7 +8,7 @@
    - + diff --git a/packages/layerchart/src/routes/docs/components/Hull/+page.svelte b/packages/layerchart/src/routes/docs/components/Hull/+page.svelte index a7d712ab6..c529f3074 100644 --- a/packages/layerchart/src/routes/docs/components/Hull/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Hull/+page.svelte @@ -9,7 +9,6 @@ import Preview from '$lib/docs/Preview.svelte'; import CurveMenuField from '$lib/docs/CurveMenuField.svelte'; - import { shared } from '../../shared.svelte.js'; let { data } = $props(); @@ -45,7 +44,7 @@ padding={{ left: 16, bottom: 24 }} > {@const dataByGroup = group(data.groupData, (d) => d.group)} - + {#each dataByGroup as [group, data]} @@ -78,7 +77,7 @@ fitGeojson: states, }} > - +

    Examples

    @@ -16,7 +15,7 @@ yDomain={[0, 100]} padding={{ top: 10, bottom: 20, left: 20, right: 10 }} > - + - + @@ -80,7 +79,7 @@ yDomain={[0, 100]} padding={{ top: 10, bottom: 20, left: 20, right: 10 }} > - +
    - +
    @@ -192,8 +189,6 @@ data={dateSeriesData} x="date" series={[{ key: 'value', color: 'var(--color-secondary)' }]} - {renderContext} - {debug} />
    @@ -207,8 +202,6 @@ x="date" y="value" props={{ spline: { curve: curveCatmullRom } }} - {renderContext} - {debug} />
    @@ -217,14 +210,7 @@
    - +
    @@ -240,8 +226,6 @@ { key: 'bananas', color: 'var(--color-success)' }, { key: 'oranges', color: 'var(--color-warning)' }, ]} - {renderContext} - {debug} />
    @@ -258,8 +242,6 @@ { key: 'bananas', color: 'var(--color-success)' }, { key: 'oranges', color: 'var(--color-warning)' }, ]} - {renderContext} - {debug} > {#snippet belowMarks({ visibleSeries, highlightKey })} {#each visibleSeries as s} @@ -302,8 +284,6 @@ color: 'var(--color-warning)', }, ]} - {renderContext} - {debug} />
    @@ -332,8 +312,6 @@ color: 'var(--color-warning)', }, ]} - {renderContext} - {debug} />
    @@ -342,7 +320,7 @@
    - + {#snippet tooltip({ context, visibleSeries, highlightKey, setHighlightKey })} {@const data = context.tooltip.data} TODO @@ -364,8 +342,6 @@ { key: 'bananas', color: 'var(--color-success)' }, { key: 'oranges', color: 'var(--color-warning)' }, ]} - {renderContext} - {debug} />
    @@ -384,8 +360,6 @@ { key: 'oranges', color: 'var(--color-warning)' }, ]} props={{ tooltip: { context: { mode: 'quadtree' } } }} - {renderContext} - {debug} brush legend > @@ -443,8 +417,6 @@ console.log(e, detail); alert(JSON.stringify(detail)); }} - {renderContext} - {debug} />
    @@ -462,8 +434,6 @@ { key: 'oranges', color: 'var(--color-warning)' }, ]} props={{ highlight: { points: { r: 8, strokeWidth: 4 } } }} - {renderContext} - {debug} />
    @@ -480,8 +450,6 @@ { key: 'bananas', color: 'var(--color-success)' }, { key: 'oranges', color: 'var(--color-warning)' }, ]} - {renderContext} - {debug} > {#snippet aboveMarks({ getLabelsProps, series, highlightKey })} {#if highlightKey} @@ -497,14 +465,7 @@
    - +
    @@ -512,7 +473,7 @@
    - +
    @@ -520,15 +481,7 @@
    - +
    @@ -547,8 +500,6 @@ points: false, }, }} - {renderContext} - {debug} />
    @@ -590,8 +541,6 @@ }, }, }} - {renderContext} - {debug} />
    @@ -631,8 +580,6 @@ }, }, }} - {renderContext} - {debug} />
    @@ -681,8 +628,6 @@ }, }, }} - {renderContext} - {debug} />
    @@ -691,14 +636,7 @@
    - + {#snippet marks()} {#snippet children({ gradient })} @@ -732,14 +670,7 @@
    - + {#snippet marks({ context })} {@const thresholdOffset = context.yScale(50) / (context.height + context.padding.bottom)}
    @@ -852,8 +781,6 @@ props: { opacity: year === 2024 ? 1 : year === 2023 ? 0.5 : 0.1 }, }; })} - {renderContext} - {debug} />
    @@ -892,8 +819,6 @@ // }, // }, }} - {renderContext} - {debug} />
    @@ -902,7 +827,7 @@
    - +
    @@ -910,7 +835,7 @@
    - + {#snippet belowMarks({ series })} {#each series as s}
    @@ -946,7 +869,7 @@
    - +
    @@ -954,7 +877,7 @@
    - +
    @@ -966,8 +889,6 @@ data={dateSeriesData} x="date" y="value" - {renderContext} - {debug} props={{ yAxis: { tickLabelProps: { @@ -999,8 +920,6 @@ { key: 'oranges', label: 'Oranges', color: 'var(--color-warning)' }, ]} legend - {renderContext} - {debug} />
    @@ -1017,8 +936,6 @@ console.log(e, detail); alert(JSON.stringify(detail)); }} - {renderContext} - {debug} />
    @@ -1027,7 +944,7 @@
    - + {#snippet tooltip({ context })} {#snippet tooltip({ context })} @@ -1128,8 +1043,6 @@ }, }, ]} - {renderContext} - {debug} />
    @@ -1163,8 +1076,6 @@ }, }, ]} - {renderContext} - {debug} />
    @@ -1215,8 +1126,6 @@ }; })} padding={{ ...defaultChartPadding(), right: 60 }} - {renderContext} - {debug} />
    @@ -1238,8 +1147,6 @@ spline: { motion: { type: 'tween', duration: 200 } }, xAxis: { motion: { type: 'tween', duration: 200 }, tickMultiline: true }, }} - {renderContext} - {debug} />
    @@ -1261,8 +1168,6 @@ alert(JSON.stringify(detail)); }} brush - {renderContext} - {debug} />
    @@ -1278,14 +1183,7 @@ {#if show}
    - +
    {/if}
    @@ -1294,9 +1192,9 @@
    - + {#snippet children({ context })} - + diff --git a/packages/layerchart/src/routes/docs/components/LinearGradient/+page.svelte b/packages/layerchart/src/routes/docs/components/LinearGradient/+page.svelte index 31ec5a742..77b8c411d 100644 --- a/packages/layerchart/src/routes/docs/components/LinearGradient/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/LinearGradient/+page.svelte @@ -1,7 +1,6 @@

    Examples

    @@ -11,7 +10,7 @@
    - + {#snippet children({ gradient })} @@ -39,7 +38,7 @@
    - +
    - + {#snippet children({ gradient })} @@ -148,7 +147,7 @@
    - + {#snippet children({ gradient })} {#each { length: 6 } as _, i} diff --git a/packages/layerchart/src/routes/docs/components/Marker/+page.svelte b/packages/layerchart/src/routes/docs/components/Marker/+page.svelte index 2c14ba2b7..68741f3ba 100644 --- a/packages/layerchart/src/routes/docs/components/Marker/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Marker/+page.svelte @@ -7,7 +7,6 @@ import Preview from '$lib/docs/Preview.svelte'; import CurveMenuField from '$lib/docs/CurveMenuField.svelte'; import PathDataMenuField from '$lib/docs/PathDataMenuField.svelte'; - import { shared } from '../../shared.svelte.js'; let pathGenerator = $state((x: number) => x); let curve: ComponentProps['value'] = $state(undefined); @@ -64,7 +63,7 @@
    {marker}
    - + {marker}
    - + {#snippet children({ context })} - +
    - + default (auto)
    - + 0
    - + 90
    - +
    - + {#if show} @@ -79,7 +78,7 @@
    - + {#if show} @@ -118,7 +117,7 @@
    - + {#if show} diff --git a/packages/layerchart/src/routes/docs/components/Pattern/+page.svelte b/packages/layerchart/src/routes/docs/components/Pattern/+page.svelte index b536fc6cd..18051bdfc 100644 --- a/packages/layerchart/src/routes/docs/components/Pattern/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Pattern/+page.svelte @@ -1,7 +1,6 @@

    Examples

    @@ -11,7 +10,7 @@
    - + {#snippet children({ pattern })}
    - + {#snippet children({ pattern })}
    - + {#snippet children({ pattern })} @@ -260,7 +259,7 @@
    - + {#snippet children({ gradient })} @@ -348,7 +347,7 @@
    - + {#snippet children({ gradient })} @@ -408,7 +407,7 @@
    - + {#snippet patternContent()} @@ -528,7 +527,7 @@
    - + {#snippet patternContent()} diff --git a/packages/layerchart/src/routes/docs/components/Pie/+page.svelte b/packages/layerchart/src/routes/docs/components/Pie/+page.svelte index 94424c661..8cc6b323c 100644 --- a/packages/layerchart/src/routes/docs/components/Pie/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Pie/+page.svelte @@ -8,7 +8,6 @@ import Preview from '$lib/docs/Preview.svelte'; import { createDateSeries } from '$lib/utils/genData.js'; import { Field, Switch, Toggle } from 'svelte-ux'; - import { shared } from '../../shared.svelte.js'; const data = createDateSeries({ min: 20, max: 100, value: 'integer', count: 4 }); const data2 = createDateSeries({ min: 20, max: 100, value: 'integer', count: 4 }); @@ -37,7 +36,7 @@
    - + @@ -49,7 +48,7 @@
    - + @@ -61,7 +60,7 @@
    - + @@ -73,7 +72,7 @@
    - + @@ -85,7 +84,7 @@
    - + @@ -97,7 +96,7 @@
    - + @@ -111,7 +110,7 @@
    - + @@ -123,7 +122,7 @@
    - + @@ -135,7 +134,7 @@
    - + @@ -147,7 +146,7 @@
    - + @@ -159,7 +158,7 @@
    - + @@ -178,7 +177,7 @@
    - + {#if show} {/if} @@ -193,7 +192,7 @@
    - + @@ -205,7 +204,7 @@
    - + {#snippet children({ arcs })} {#each arcs as arc, index} @@ -231,7 +230,7 @@
    - + {#snippet children({ arcs })} {#each arcs as arc, index} @@ -263,7 +262,7 @@
    - + {#snippet children({ arcs })} {#each arcs as arc, index} @@ -303,7 +302,7 @@
    - + {#snippet children({ arcs })} {#each arcs as arc, index} @@ -335,7 +334,7 @@
    - + {#snippet children({ arcs })} {#each arcs as arc, index} @@ -372,7 +371,7 @@ if it meets the minimum needed to fit the label, and if not, we push it? Idk --> - + {#snippet children({ arcs })} {#each arcs as arc, index} @@ -405,7 +404,7 @@
    {#snippet children({ context })} - + @@ -433,7 +432,7 @@
    {#snippet children({ context })} - + {#snippet children({ arcs })} {#each arcs as arc, index} @@ -499,7 +498,7 @@
    {#snippet children({ context })} - + @@ -514,7 +513,7 @@
    - + @@ -527,7 +526,7 @@
    {#snippet children({ context })} - + diff --git a/packages/layerchart/src/routes/docs/components/PieChart/+page.svelte b/packages/layerchart/src/routes/docs/components/PieChart/+page.svelte index 96e20ef52..ed9e72bdf 100644 --- a/packages/layerchart/src/routes/docs/components/PieChart/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/PieChart/+page.svelte @@ -1,5 +1,4 @@

    Examples

    @@ -55,7 +48,7 @@
    - +
    @@ -71,8 +64,6 @@ console.log(e, detail); alert(JSON.stringify(detail)); }} - {renderContext} - {debug} />
    @@ -81,7 +72,7 @@
    - +
    @@ -89,7 +80,7 @@
    - +
    @@ -97,16 +88,7 @@
    - +
    @@ -114,16 +96,7 @@
    - + {#snippet aboveMarks()} d.value))} @@ -158,8 +131,6 @@ cornerRadius={10} padAngle={0.02} props={{ group: { y: 90 } }} - {renderContext} - {debug} />
    @@ -181,8 +152,6 @@ cornerRadius={4} padAngle={0.02} tooltip={false} - {renderContext} - {debug} > {#snippet aboveMarks()}
    @@ -226,8 +193,6 @@ { key: '2019', data: dataByYear.get(2019), props: { innerRadius: -20 } }, { key: '2018', data: dataByYear.get(2018), props: { outerRadius: -30 } }, ]} - {renderContext} - {debug} />
    @@ -248,8 +213,6 @@ console.log(e, detail); alert(JSON.stringify(detail)); }} - {renderContext} - {debug} />
    @@ -258,14 +221,7 @@
    - +
    @@ -273,7 +229,7 @@
    - +
    @@ -286,8 +242,6 @@ key="fruit" value="value" legend={{ placement: 'top-left', orientation: 'vertical' }} - {renderContext} - {debug} />
    @@ -309,8 +263,6 @@ item: 'text-xs', }, }} - {renderContext} - {debug} />
    @@ -336,8 +288,6 @@ }} value="value" legend - {renderContext} - {debug} />
    @@ -356,8 +306,6 @@ 'var(--color-danger)', 'var(--color-info)', ]} - {renderContext} - {debug} />
    @@ -366,7 +314,7 @@
    - +
    @@ -374,14 +322,7 @@
    - +
    @@ -389,7 +330,7 @@
    - +
    @@ -403,8 +344,6 @@ value="value" padding={{ right: 80 }} legend={{ placement: 'right', orientation: 'vertical' }} - {renderContext} - {debug} />
    @@ -419,8 +358,6 @@ value="value" placement="left" legend={{ placement: 'right', orientation: 'vertical' }} - {renderContext} - {debug} />
    @@ -435,8 +372,6 @@ value="value" placement="right" legend={{ placement: 'left', orientation: 'vertical' }} - {renderContext} - {debug} />
    @@ -452,8 +387,6 @@ center={false} props={{ group: { x: 200, center: 'y' } }} legend={{ placement: 'right', orientation: 'vertical' }} - {renderContext} - {debug} />
    @@ -462,7 +395,7 @@
    - + {#snippet arc({ index, props })} {/snippet} @@ -480,14 +413,7 @@
    {#if show} - + {/if}
    @@ -503,14 +429,7 @@
    {#if show} - + {/if}
    @@ -520,6 +439,6 @@
    - +
    --> diff --git a/packages/layerchart/src/routes/docs/components/Point/+page.svelte b/packages/layerchart/src/routes/docs/components/Point/+page.svelte index f9bafc5e1..fd2fa22e1 100644 --- a/packages/layerchart/src/routes/docs/components/Point/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Point/+page.svelte @@ -1,7 +1,6 @@ @@ -18,7 +17,7 @@ yDomain={[0, 100]} padding={{ top: 10, bottom: 20, left: 24, right: 10 }} > - + diff --git a/packages/layerchart/src/routes/docs/components/Polygon/+page.svelte b/packages/layerchart/src/routes/docs/components/Polygon/+page.svelte index 138e1d044..fdb734be9 100644 --- a/packages/layerchart/src/routes/docs/components/Polygon/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Polygon/+page.svelte @@ -2,7 +2,6 @@ import { Chart, Group, Layer, Polygon } from 'layerchart'; import { RangeField } from 'svelte-ux'; import Preview from 'layerchart/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; let points = $state(8); let cornerRadius = $state(0); @@ -37,7 +36,7 @@
    {#snippet children({ context })} - + {#snippet children({ context })} - + {#snippet children({ context })} - + {#snippet children({ context })} - + {#snippet children({ context })} - + {#snippet children({ context })} - + {#snippet children({ context })} - + {#snippet children({ context })} - + {#snippet children({ context })} - + {#snippet children({ context })} - + {#snippet children({ context })} - + {#snippet children({ context })} - + {#snippet children({ context })} - + {@const size = 60} {#snippet children({ context })} - + {@const size = 50} import { Chart, Circle, Layer, RadialGradient } from 'layerchart'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; const radius = 50; @@ -13,7 +12,7 @@
    - + {#snippet children({ gradient })} @@ -41,7 +40,7 @@
    - + @@ -64,7 +63,7 @@
    - + {#snippet children({ gradient })} @@ -92,7 +91,7 @@
    - + {#snippet children({ gradient })} {#each { length: 6 } as _, i} diff --git a/packages/layerchart/src/routes/docs/components/Rect/+page.svelte b/packages/layerchart/src/routes/docs/components/Rect/+page.svelte index 2ed03e59d..1e3d45e5f 100644 --- a/packages/layerchart/src/routes/docs/components/Rect/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Rect/+page.svelte @@ -1,7 +1,6 @@

    Examples

    @@ -15,7 +14,7 @@ yDomain={[0, 100]} padding={{ top: 10, bottom: 20, left: 24, right: 10 }} > - + @@ -41,7 +40,7 @@ yDomain={[0, 100]} padding={{ top: 10, bottom: 20, left: 24, right: 10 }} > - + @@ -69,7 +68,7 @@ yDomain={[0, 100]} padding={{ top: 10, bottom: 20, left: 24, right: 10 }} > - + diff --git a/packages/layerchart/src/routes/docs/components/Rule/+page.svelte b/packages/layerchart/src/routes/docs/components/Rule/+page.svelte index 85f6bf2a1..4cd7c5c1f 100644 --- a/packages/layerchart/src/routes/docs/components/Rule/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Rule/+page.svelte @@ -3,7 +3,6 @@ import Preview from '$lib/docs/Preview.svelte'; import { createDateSeries, createTimeSeries } from '$lib/utils/genData.js'; - import { shared } from '../../shared.svelte.js'; import { sort } from 'd3-array'; let { data } = $props(); @@ -24,7 +23,7 @@ yDomain={[0, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -42,7 +41,7 @@ yDomain={[0, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -60,7 +59,7 @@ yDomain={[0, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -78,7 +77,7 @@ yDomain={[0, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -96,7 +95,7 @@ yDomain={[-20, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -114,7 +113,7 @@ yDomain={[0, 100]} padding={{ top: 20, bottom: 20, left: 20, right: 20 }} > - + @@ -134,7 +133,7 @@ yNice padding={{ top: 20, bottom: 20, left: 40, right: 20 }} > - + @@ -154,7 +153,7 @@ yNice padding={{ top: 20, bottom: 20, left: 40, right: 20 }} > - + @@ -173,7 +172,7 @@ y="name" padding={{ top: 20, bottom: 20, left: 40, right: 20 }} > - + @@ -193,7 +192,7 @@ yNice padding={{ top: 20, bottom: 20, left: 40, right: 20 }} > - + diff --git a/packages/layerchart/src/routes/docs/components/ScatterChart/+page.svelte b/packages/layerchart/src/routes/docs/components/ScatterChart/+page.svelte index 1b517322b..b5d27378f 100644 --- a/packages/layerchart/src/routes/docs/components/ScatterChart/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/ScatterChart/+page.svelte @@ -1,5 +1,5 @@

    Examples

    @@ -46,7 +42,7 @@
    - +
    @@ -54,15 +50,7 @@
    - +
    @@ -84,8 +72,6 @@ 'fill-opacity': 0.3, }, }} - {renderContext} - {debug} />
    @@ -94,15 +80,7 @@
    - +
    @@ -125,8 +103,6 @@ }, }; })} - {renderContext} - {debug} />
    @@ -152,8 +128,6 @@ }, }; })} - {renderContext} - {debug} />
    @@ -162,7 +136,7 @@
    - +
    @@ -181,8 +155,6 @@ }; })} legend - {renderContext} - {debug} />
    @@ -203,8 +175,6 @@ points: { motion: { type: 'tween', duration: 200 } }, }} legend - {renderContext} - {debug} />
    @@ -225,8 +195,6 @@ }; })} legend - {renderContext} - {debug} />
    @@ -235,7 +203,7 @@
    - +
    @@ -243,7 +211,7 @@
    - +
    @@ -261,8 +229,6 @@ points: { opacity: 0.3 }, highlight: { lines: false }, }} - {renderContext} - {debug} > {#snippet tooltip({ context })} @@ -288,8 +254,6 @@ cScale={scaleThreshold()} cDomain={[50]} cRange={['var(--color-danger)', 'var(--color-success)']} - {renderContext} - {debug} />
    @@ -306,8 +270,6 @@ console.log(e, detail); alert(JSON.stringify(detail)); }} - {renderContext} - {debug} />
    @@ -316,7 +278,7 @@
    - + {#snippet tooltip({ context })}
    @@ -415,8 +375,6 @@ }, }, ]} - {renderContext} - {debug} />
    @@ -450,8 +408,6 @@ }, }, ]} - {renderContext} - {debug} />
    @@ -485,8 +441,6 @@ }, }, ]} - {renderContext} - {debug} />
    @@ -521,8 +475,6 @@ }, }, ]} - {renderContext} - {debug} />
    @@ -541,8 +493,6 @@ yAxis: { motion: { type: 'tween', duration: 200 } }, }} brush - {renderContext} - {debug} />
    @@ -551,9 +501,9 @@
    - + {#snippet children({ context })} - + diff --git a/packages/layerchart/src/routes/docs/components/Spline/+page.svelte b/packages/layerchart/src/routes/docs/components/Spline/+page.svelte index 20c62ce47..ee04fd3ba 100644 --- a/packages/layerchart/src/routes/docs/components/Spline/+page.svelte +++ b/packages/layerchart/src/routes/docs/components/Spline/+page.svelte @@ -1,15 +1,14 @@ @@ -156,7 +165,7 @@
    {/if} - + @@ -175,7 +184,7 @@ {/each} - {#if shared.renderContext === 'canvas'} + {#if layer === 'canvas'} {#if context.tooltip.data} diff --git a/packages/layerchart/src/routes/docs/examples/Arc/+page.svelte b/packages/layerchart/src/routes/docs/examples/Arc/+page.svelte index c961c222b..4842116ce 100644 --- a/packages/layerchart/src/routes/docs/examples/Arc/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/Arc/+page.svelte @@ -19,7 +19,6 @@ import Preview from '$lib/docs/Preview.svelte'; import Blockquote from '$lib/docs/Blockquote.svelte'; - import { shared } from '../../shared.svelte.js'; let value = $state(75); let segments = $state(60); @@ -60,7 +59,7 @@
    - + {#snippet children({ gradient })} @@ -96,7 +95,7 @@
    - +
    - + {#each { length: segments } as _, segmentIndex} {@const segmentAngle = (2 * Math.PI) / segments} @@ -177,7 +176,7 @@
    - + {#snippet clip()} @@ -220,7 +219,7 @@
    {#snippet children({ context })} - + {#each { length: layerCount } as _, layerIndex} {@const layer = layerIndex + 1} {#each { length: divisions } as _, segmentIndex} @@ -265,7 +264,7 @@
    - + {#if show} {#snippet children({ context })} - + {@const arcWidth = 20} {@const maxValue = 100} diff --git a/packages/layerchart/src/routes/docs/examples/Area/+page.svelte b/packages/layerchart/src/routes/docs/examples/Area/+page.svelte index 8b910d30f..2e8e1242c 100644 --- a/packages/layerchart/src/routes/docs/examples/Area/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/Area/+page.svelte @@ -1,6 +1,5 @@

    Examples

    @@ -33,7 +30,6 @@ props={{ bars: { y: 'baseline' }, }} - {renderContext} > {#snippet aboveMarks()} @@ -70,7 +66,6 @@ props={{ bars: { radius: 1, class: 'stroke-none fill-surface-content/10' }, }} - {renderContext} /> @@ -85,7 +80,6 @@ xAxis: { ticks: 10, rule: true }, tooltip: { context: { mode: 'band' } }, }} - {renderContext} > {#snippet marks()} @@ -127,7 +121,7 @@ tooltip={{ mode: 'quadtree-x' }} > {#snippet children({ context })} - + - + - + {#snippet axis({ context })} diff --git a/packages/layerchart/src/routes/docs/examples/CountryMap/+page.svelte b/packages/layerchart/src/routes/docs/examples/CountryMap/+page.svelte index 2a9124785..1d70ec8cf 100644 --- a/packages/layerchart/src/routes/docs/examples/CountryMap/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/CountryMap/+page.svelte @@ -2,9 +2,8 @@ import { geoAlbersUsa } from 'd3-geo'; import { feature } from 'topojson-client'; - import { Canvas, Chart, GeoPath, Layer, Text } from 'layerchart'; + import { Chart, GeoPath, Layer, Text } from 'layerchart'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; let { data } = $props(); const states = feature(data.geojson, data.geojson.objects.states); @@ -22,7 +21,7 @@ fitGeojson: states, }} > - + {#each states.features as feature} - + d.links} {...settings.playground}> {#snippet children({ nodes, edges })} @@ -197,7 +196,7 @@ > - + d.links} {...settings.simple}> {#snippet children({ nodes, edges })} @@ -276,7 +275,7 @@ > - + d.links} {...settings.tcpState}> {#snippet children({ nodes, edges })} @@ -378,7 +377,7 @@ > - + d.links} @@ -483,7 +482,7 @@ > - + d.links} diff --git a/packages/layerchart/src/routes/docs/examples/Duration/+page.svelte b/packages/layerchart/src/routes/docs/examples/Duration/+page.svelte index 24da8d308..21f7c8bb7 100644 --- a/packages/layerchart/src/routes/docs/examples/Duration/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/Duration/+page.svelte @@ -7,7 +7,6 @@ import Preview from '$lib/docs/Preview.svelte'; import { getRandomInteger } from '$lib/utils/genData.js'; - import { shared } from '../../shared.svelte.js'; import { applyLanes } from 'layerchart/utils/array.js'; let { data } = $props(); @@ -30,8 +29,6 @@ function formatYear(number: number): string { return Math.sign(number) === -1 ? Math.abs(number) + ' BC' : number + ' AD'; } - - let renderContext = $derived(shared.renderContext as 'svg' | 'canvas');

    Examples

    @@ -48,7 +45,6 @@ grid={{ x: false, y: true, bandAlign: 'between' }} orientation="horizontal" padding={{ left: 36, bottom: 36 }} - {renderContext} > {#snippet tooltip({ context })} @@ -96,7 +92,6 @@ grid={{ x: false, y: true, bandAlign: 'between' }} orientation="horizontal" padding={{ left: 36, bottom: 36 }} - {renderContext} > {#snippet tooltip({ context })} @@ -147,7 +142,6 @@ orientation="horizontal" padding={{ left: 36, bottom: 36 }} props={{ tooltip: { context: { mode: 'bounds' } } }} - {renderContext} > {#snippet tooltip({ context })} @@ -182,7 +176,6 @@ rule={false} orientation="horizontal" padding={{ bottom: 36 }} - {renderContext} > {#snippet tooltip({ context })} @@ -218,7 +211,6 @@ orientation="horizontal" padding={{ bottom: 36 }} props={{ tooltip: { context: { mode: 'bounds' } } }} - {renderContext} > {#snippet tooltip({ context })} @@ -258,7 +250,6 @@ points: true, }, }} - {renderContext} > {#snippet marks()} @@ -318,7 +309,6 @@ points: true, }, }} - {renderContext} > {#snippet marks()} @@ -381,7 +371,6 @@ }, }, }} - {renderContext} > {#snippet tooltip({ context })} @@ -436,7 +425,6 @@ }, tooltip: { context: { mode: 'bounds' } }, }} - {renderContext} > {#snippet tooltip({ context })} diff --git a/packages/layerchart/src/routes/docs/examples/EarthquakeGlobe/+page.svelte b/packages/layerchart/src/routes/docs/examples/EarthquakeGlobe/+page.svelte index a48cbe7cc..3875fcb7d 100644 --- a/packages/layerchart/src/routes/docs/examples/EarthquakeGlobe/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/EarthquakeGlobe/+page.svelte @@ -16,7 +16,6 @@ type ChartContextValue, } from 'layerchart'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; let { data } = $props(); @@ -42,8 +41,6 @@ }, disabled: true, }); - - let debug = $derived(shared.debug);

    Examples

    @@ -85,7 +82,7 @@ ondragstart={timer.stop} > {#snippet children({ context })} - + diff --git a/packages/layerchart/src/routes/docs/examples/EclipsesGlobe/+page.svelte b/packages/layerchart/src/routes/docs/examples/EclipsesGlobe/+page.svelte index 4e5e97740..aee9bc7ae 100644 --- a/packages/layerchart/src/routes/docs/examples/EclipsesGlobe/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/EclipsesGlobe/+page.svelte @@ -21,7 +21,6 @@ import { TimerState } from '@layerstack/svelte-state'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; let { data } = $props(); @@ -89,7 +88,7 @@ {#snippet children({ context })} - +
    - + {#snippet children({ context })} - + {#snippet children({ context })} - + ; @@ -62,7 +61,7 @@ {#snippet children({ context })} {@const nodeStrokeWidth = 1} - + diff --git a/packages/layerchart/src/routes/docs/examples/ForceLattice/+page.svelte b/packages/layerchart/src/routes/docs/examples/ForceLattice/+page.svelte index 0513745ef..1dd509204 100644 --- a/packages/layerchart/src/routes/docs/examples/ForceLattice/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/ForceLattice/+page.svelte @@ -5,7 +5,6 @@ import { Chart, Circle, ForceSimulation, Link, Layer } from 'layerchart'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; const n = 20; const nodes = Array.from({ length: n * n }, (_, i) => ({ index: i })); @@ -34,7 +33,7 @@ }} > {#snippet children({ nodes, linkPositions })} - + {#each links as link, i (i)} {#snippet children({ nodes, simulation })} { simulation.nodes()[0].fx = e.offsetX; simulation.nodes()[0].fy = e.offsetY; diff --git a/packages/layerchart/src/routes/docs/examples/ForceTree/+page.svelte b/packages/layerchart/src/routes/docs/examples/ForceTree/+page.svelte index 82dc6401b..df7c4054b 100644 --- a/packages/layerchart/src/routes/docs/examples/ForceTree/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/ForceTree/+page.svelte @@ -7,7 +7,6 @@ import Preview from '$lib/docs/Preview.svelte'; import type { Prettify } from '@layerstack/utils'; - import { shared } from '../../shared.svelte.js'; type NodeDatum = { name: string; value: number }; type MySimulationNodeDatum = Prettify; @@ -46,7 +45,7 @@ cloneNodes > {#snippet children({ nodes, linkPositions })} - + {#each links as link, i} {#snippet children({ context })} - + {#each states.features as feature} - {#if shared.renderContext === 'canvas'} - + {#if getSettings().layer === 'canvas'} + {#if context.tooltip.data} ('quadtree'); let tooltipRadius = $state(30); - let debug = $derived(shared.debug); + + let settings = getSettings();

    Examples

    @@ -42,7 +42,7 @@ fitGeojson: states, }} > - + {#each states.features as feature} {#each data.us.capitals as capital} - {#if shared.renderContext === 'svg'} + {#if settings.layer === 'svg'} - {:else if shared.renderContext === 'canvas'} + {:else if settings.layer === 'canvas'} {#snippet children({ x, y })} @@ -96,10 +96,10 @@ projection: geoNaturalEarth1, fitGeojson: countries, }} - tooltip={{ mode: tooltipMode, debug, radius: tooltipRadius }} + tooltip={{ mode: tooltipMode, debug: settings.debug, radius: tooltipRadius }} > {#snippet children({ context })} - + {#each countries.features as feature} - + {#if context.tooltip.data} - {#if shared.renderContext === 'svg'} + {#if settings.layer === 'svg'} - {:else if shared.renderContext === 'canvas'} + {:else if settings.layer === 'canvas'} {#snippet children({ context })} - + {#each states.features as feature} - + {#if context.tooltip.data} {#snippet children({ context })} - + {#each countries.features as feature} {/each} @@ -251,7 +251,7 @@ - + {#if context.tooltip.data} {#snippet children({ context })} - + {#each states.features as feature} {#snippet children({ context })} - + {#each features as feature} diff --git a/packages/layerchart/src/routes/docs/examples/GeoTile/+page.svelte b/packages/layerchart/src/routes/docs/examples/GeoTile/+page.svelte index 308b89fa0..12382a2df 100644 --- a/packages/layerchart/src/routes/docs/examples/GeoTile/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/GeoTile/+page.svelte @@ -3,12 +3,11 @@ import { geoMercator } from 'd3-geo'; import { feature } from 'topojson-client'; - import { ClipPath, Chart, GeoPath, GeoTile, Layer, Tooltip } from 'layerchart'; + import { ClipPath, Chart, GeoPath, GeoTile, Layer, Tooltip, getSettings } from 'layerchart'; import { RangeField } from 'svelte-ux'; import Preview from '$lib/docs/Preview.svelte'; import TilesetField from '$lib/docs/TilesetField.svelte'; - import { shared } from '../../shared.svelte.js'; let { data } = $props(); @@ -26,7 +25,8 @@ let serviceUrl = $state['url']>(null!); let zoomDelta = $state(0); - let debug = $derived(shared.debug); + + let settings = getSettings();
    @@ -47,8 +47,8 @@ }} > {#snippet children({ context })} - - + + {#each filteredStates.features as feature} {#snippet children({ context })} - + diff --git a/packages/layerchart/src/routes/docs/examples/Histogram/+page.svelte b/packages/layerchart/src/routes/docs/examples/Histogram/+page.svelte index b2385d720..d9d96f3e6 100644 --- a/packages/layerchart/src/routes/docs/examples/Histogram/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/Histogram/+page.svelte @@ -16,7 +16,6 @@ import { format } from '@layerstack/utils'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; let { data } = $props(); @@ -49,8 +48,6 @@ getRandomDate(timeDay.offset(now, -dateRange), now) ) as any[] ); // TODO: Make typescript happy - - let renderContext = $derived(shared.renderContext as 'svg' | 'canvas');

    Examples

    @@ -71,7 +68,6 @@ yAxis: { format: 'metric', motion: 'tween' }, bars: { motion: 'tween' }, }} - {renderContext} > {#snippet tooltip()} @@ -110,7 +106,6 @@ bars: { motion: 'tween' }, }} orientation="horizontal" - {renderContext} > {#snippet tooltip()} @@ -205,7 +200,6 @@ yAxis: { format: 'metric', motion: 'tween' }, bars: { motion: 'tween' }, }} - {renderContext} > {#snippet tooltip()} @@ -258,7 +252,6 @@ yAxis: { format: 'metric', motion: 'tween' }, bars: { motion: 'tween' }, }} - {renderContext} > {#snippet tooltip()} @@ -329,7 +322,6 @@ yAxis: { format: 'metric', motion: 'tween' }, bars: { motion: 'tween' }, }} - {renderContext} > {#snippet tooltip()} diff --git a/packages/layerchart/src/routes/docs/examples/Line/+page.svelte b/packages/layerchart/src/routes/docs/examples/Line/+page.svelte index 2621f5265..be3b8bab0 100644 --- a/packages/layerchart/src/routes/docs/examples/Line/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/Line/+page.svelte @@ -1,5 +1,5 @@

    Examples

    @@ -41,7 +48,7 @@ }} padding={{ top: 16, bottom: 16, left: 16, right: 16 }} > - + {#each countries.features as country} @@ -70,10 +77,10 @@ }} padding={{ top: 80, bottom: 80 }} > - {#if debug} + {#if settings.debug} {/if} - + {#each countries.features as country} diff --git a/packages/layerchart/src/routes/docs/examples/Lollipop/+page.svelte b/packages/layerchart/src/routes/docs/examples/Lollipop/+page.svelte index 5ae817f8e..49e32476b 100644 --- a/packages/layerchart/src/routes/docs/examples/Lollipop/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/Lollipop/+page.svelte @@ -2,7 +2,6 @@ import { Axis, Chart, Highlight, Layer, Points, Rule, Tooltip } from 'layerchart'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; import { sort } from '@layerstack/utils'; let { data } = $props(); @@ -24,7 +23,7 @@ padding={{ left: 20, bottom: 32 }} tooltip={{ mode: 'band' }} > - + diff --git a/packages/layerchart/src/routes/docs/examples/Oscilloscope/+page.svelte b/packages/layerchart/src/routes/docs/examples/Oscilloscope/+page.svelte index cd9bd50ac..37f590c7d 100644 --- a/packages/layerchart/src/routes/docs/examples/Oscilloscope/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/Oscilloscope/+page.svelte @@ -7,7 +7,6 @@ import { BarChart, Bars, LinearGradient, LineChart } from 'layerchart'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; // Inspired by: https://observablehq.com/@visnup/microphone-oscilloscope and https://codepen.io/agalliat/pen/PoZLBxP @@ -67,8 +66,6 @@ }; }); const colorScale = scaleSequential([0, 256], interpolateTurbo); - - let renderContext = $derived(shared.renderContext as 'svg' | 'canvas');

    Examples

    @@ -86,7 +83,6 @@ grid={false} props={{ spline: { class: 'stroke-surface-content' } }} tooltip={{ mode: 'manual' }} - {renderContext} />
    @@ -108,7 +104,6 @@ props={{ yAxis: { format: (d) => decibels(d)?.toFixed(1) }, }} - {renderContext} > {#snippet marks()} d.value) @@ -123,7 +121,7 @@ }} bind:context > - (selected = complexHierarchy)}> + (selected = complexHierarchy)}> {#each nodes as node ([node.data.name, node.parent?.data.name].join('-'))} {#snippet children({ context })} - + {#snippet children({ context })} - +
    - + diff --git a/packages/layerchart/src/routes/docs/examples/PunchCard/+page.svelte b/packages/layerchart/src/routes/docs/examples/PunchCard/+page.svelte index 4a1064252..a2cc5d6ab 100644 --- a/packages/layerchart/src/routes/docs/examples/PunchCard/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/PunchCard/+page.svelte @@ -7,13 +7,10 @@ import Preview from '$lib/docs/Preview.svelte'; import { createDateSeries } from '$lib/utils/genData.js'; - import { shared } from '../../shared.svelte.js'; const data = createDateSeries({ count: 60, min: 10, max: 100, value: 'integer' }); const daysOfWeek = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']; - - let renderContext = $derived(shared.renderContext as 'svg' | 'canvas');

    Examples

    @@ -39,8 +36,6 @@ grid: { x: false, y: true, bandAlign: 'between' }, tooltip: { context: { mode: 'band' } }, }} - {renderContext} - debug={shared.debug} > {#snippet highlight()} diff --git a/packages/layerchart/src/routes/docs/examples/RadialLine/+page.svelte b/packages/layerchart/src/routes/docs/examples/RadialLine/+page.svelte index 4d779cb45..0312e8da7 100644 --- a/packages/layerchart/src/routes/docs/examples/RadialLine/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/RadialLine/+page.svelte @@ -9,7 +9,6 @@ import Preview from '$lib/docs/Preview.svelte'; import Blockquote from '$lib/docs/Blockquote.svelte'; - import { shared } from '../../shared.svelte.js'; let { data } = $props(); @@ -49,7 +48,7 @@ padding={{ top: 32, bottom: 8 }} radial > - + - + d.avg} curve={curveCatmullRom} class="stroke-primary" /> d.min} @@ -120,7 +119,7 @@ padding={{ top: 12, bottom: 12 }} > {#snippet children({ context })} - + {#each flatGroup(data.dailyTemperatures, (d) => d.year) as [year, yearData]}
    - + d.id}> {#snippet children({ links, nodes })} {#each links as link ([link.value, link.source.id, link.target.id].join('-'))} @@ -111,7 +110,7 @@
    {#snippet children({ context })} - + d.name} nodeWidth={8}> {#snippet children({ links, nodes })} {#each links as link ([link.value, link.source.name, link.target.name].join('-'))} @@ -197,7 +196,7 @@
    - + d.name} nodeWidth={8}> {#snippet children({ links, nodes })} {#each links as link ([link.value, link.source.name, link.target.name].join('-'))} @@ -260,7 +259,7 @@
    {#snippet children({ context })} - +
    - +

    Examples

    @@ -24,7 +21,7 @@
    - + @@ -46,7 +43,7 @@ padding={{ left: 16, bottom: 24 }} tooltip={{ mode: 'quadtree-x' }} > - + @@ -70,7 +67,7 @@
    - + @@ -98,7 +95,7 @@ cRange={['var(--color-danger)', 'var(--color-warning)', 'var(--color-success)']} padding={{ left: 16, bottom: 24 }} > - + diff --git a/packages/layerchart/src/routes/docs/examples/SketchyGlobe/+page.svelte b/packages/layerchart/src/routes/docs/examples/SketchyGlobe/+page.svelte index dca4aef52..d2c002338 100644 --- a/packages/layerchart/src/routes/docs/examples/SketchyGlobe/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/SketchyGlobe/+page.svelte @@ -10,7 +10,6 @@ import Preview from '$lib/docs/Preview.svelte'; import CurveMenuField from '$lib/docs/CurveMenuField.svelte'; - import { shared } from '../../shared.svelte.js'; let { data } = $props(); @@ -78,7 +77,7 @@ ondragstart={timer.stop} bind:context > - + diff --git a/packages/layerchart/src/routes/docs/examples/Sparkbar/+page.svelte b/packages/layerchart/src/routes/docs/examples/Sparkbar/+page.svelte index 672fc1c28..ef4bc4060 100644 --- a/packages/layerchart/src/routes/docs/examples/Sparkbar/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/Sparkbar/+page.svelte @@ -4,7 +4,6 @@ import Preview from '$lib/docs/Preview.svelte'; import { createDateSeries } from '$lib/utils/genData.js'; - import { shared } from '../../shared.svelte.js'; const data = createDateSeries({ count: 30, @@ -14,8 +13,6 @@ keys: ['value', 'baseline'], }); const negativeData = createDateSeries({ count: 30, min: -20, max: 50, value: 'integer' }); - - let renderContext = $derived(shared.renderContext as 'svg' | 'canvas');

    Examples

    @@ -32,7 +29,6 @@ grid={false} bandPadding={0.1} props={{ bars: { radius: 1, strokeWidth: 0 } }} - {renderContext} />
    @@ -52,7 +48,6 @@ grid={false} bandPadding={0.1} props={{ bars: { radius: 1, strokeWidth: 0 } }} - {renderContext} /> Sed ipsum justo, facilisis id tempor hendrerit, suscipit eu ipsum. Mauris ut sapien quis nibh volutpat venenatis. Ut viverra justo varius sapien convallis venenatis vel faucibus urna. @@ -72,7 +67,6 @@ grid={false} bandPadding={0.1} props={{ bars: { radius: 1, strokeWidth: 0 } }} - {renderContext} />
    @@ -89,7 +83,6 @@ grid={false} bandPadding={0.1} props={{ bars: { radius: 1, strokeWidth: 0 } }} - {renderContext} > {#snippet tooltip({ context })} {#snippet tooltip({ context })}

    Examples

    @@ -17,15 +14,7 @@
    - +
    @@ -37,15 +26,7 @@ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam pretium, ligula ac sollicitudin ullamcorper, leo justo pretium tellus, at gravida ex quam et orci. - + Sed ipsum justo, facilisis id tempor hendrerit, suscipit eu ipsum. Mauris ut sapien quis nibh volutpat venenatis. Ut viverra justo varius sapien convallis venenatis vel faucibus urna.

    @@ -55,7 +36,7 @@

    Basic zero axis

    - +
    @@ -72,7 +53,6 @@ props={{ highlight: { points: { r: 3, class: 'stroke-none' } }, }} - {renderContext} > {#snippet tooltip({ context })} {#snippet tooltip({ context })} GeoProjection; const states = feature(data.geojson, data.geojson.objects.states); @@ -70,7 +71,7 @@ - + - - {#if context.tooltip.data && shared.renderContext === 'canvas'} + + {#if context.tooltip.data && settings.layer === 'canvas'} - +
    @@ -83,7 +82,7 @@ }} > {#snippet children({ context })} - + {#each selectedCountiesFeatures as feature} {#snippet children({ context })} - + {#each counties.features as feature} {#snippet children({ context })} - + {#snippet children({ context })} - + ({ diff --git a/packages/layerchart/src/routes/docs/examples/Threshold/+page.svelte b/packages/layerchart/src/routes/docs/examples/Threshold/+page.svelte index 57c2b57a0..2fb7e6269 100644 --- a/packages/layerchart/src/routes/docs/examples/Threshold/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/Threshold/+page.svelte @@ -7,9 +7,6 @@ import CurveMenuField from '$lib/docs/CurveMenuField.svelte'; import { createDateSeries } from '$lib/utils/genData.js'; import Blockquote from '$lib/docs/Blockquote.svelte'; - import { shared } from '../../shared.svelte.js'; - - let renderContext = $derived(shared.renderContext as 'svg' | 'canvas'); let selectedCurve = $state(curveStepAfter); @@ -40,7 +37,6 @@ y={['value', 'baseline']} padding={{ left: 16, bottom: 24 }} tooltip={false} - {renderContext} > {#snippet marks()} @@ -75,7 +71,6 @@ highlight: { area: true, lines: false, points: false }, tooltip: { context: { mode: 'bisect-x', findTooltipData: 'left' } }, }} - {renderContext} > {#snippet marks()} @@ -122,7 +117,6 @@ padding={{ left: 16, bottom: 24 }} labels tooltip={false} - {renderContext} > {#snippet marks()} diff --git a/packages/layerchart/src/routes/docs/examples/Timezones/+page.svelte b/packages/layerchart/src/routes/docs/examples/Timezones/+page.svelte index 20cc2705d..c39297d5d 100644 --- a/packages/layerchart/src/routes/docs/examples/Timezones/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/Timezones/+page.svelte @@ -20,7 +20,6 @@ import { TimerState } from '@layerstack/svelte-state'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; let { data } = $props(); @@ -113,7 +112,7 @@ padding={{ left: 10, right: 10 }} > {#snippet children({ context })} - + diff --git a/packages/layerchart/src/routes/docs/examples/TranslucentGlobe/+page.svelte b/packages/layerchart/src/routes/docs/examples/TranslucentGlobe/+page.svelte index 2309a19d0..1cb031df3 100644 --- a/packages/layerchart/src/routes/docs/examples/TranslucentGlobe/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/TranslucentGlobe/+page.svelte @@ -15,7 +15,6 @@ import { TimerState } from '@layerstack/svelte-state'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; let { data } = $props(); @@ -76,7 +75,7 @@ > {#snippet children({ context })} {@const [yaw, pitch, roll] = context.geo.projection?.rotate() ?? [0, 0, 0]} - + diff --git a/packages/layerchart/src/routes/docs/examples/Tree/+page.svelte b/packages/layerchart/src/routes/docs/examples/Tree/+page.svelte index 4f68df8a1..0ced45b09 100644 --- a/packages/layerchart/src/routes/docs/examples/Tree/+page.svelte +++ b/packages/layerchart/src/routes/docs/examples/Tree/+page.svelte @@ -13,7 +13,6 @@ import type { ConnectorSweep, ConnectorType } from 'layerchart/utils/connectorUtils.js'; import ConnectorTypeMenuField from 'layerchart/docs/ConnectorTypeMenuField.svelte'; import ConnectorSweepMenuField from 'layerchart/docs/ConnectorSweepMenuField.svelte'; - import { shared } from '../../shared.svelte.js'; let { data } = $props(); @@ -116,7 +115,7 @@ nodeSize={layout === 'node' ? nodeSize : undefined} > {#snippet children({ nodes, links })} - + {#each links as link (getNodeKey(link.source) + '_' + getNodeKey(link.target))} {#snippet children({ nodes, links })} - + {#each links as link (getNodeKey(link.source) + '_' + getNodeKey(link.target))} {#snippet children({ context })} - +
    - +
    - + - + {#each states.features as feature} - - {#if context.tooltip.data && shared.renderContext === 'canvas'} + + {#if context.tooltip.data && settings.layer === 'canvas'} - + {#each states.features as feature} - - {#if context.tooltip.data && shared.renderContext === 'canvas'} + + {#if context.tooltip.data && settings.layer === 'canvas'} ['url']>(null!); let zoomDelta = $state(0); - let debug = $derived(shared.debug);
    @@ -52,7 +60,7 @@ }} > {#snippet children({ context })} - {#if debug} + {#if settings.debug}
    @@ -60,8 +68,8 @@ - - + + {#each filteredStates.features as feature} {#snippet children({ context })} - {#if debug} + {#if settings.debug}
    @@ -127,8 +135,8 @@ - - + + {#each filteredStates.features as feature} {#snippet children({ context })} - {#if debug} + {#if settings.debug}
    @@ -191,12 +199,12 @@ - + - + {#each filteredStates.features as feature} ('single'); - let renderContext = $derived(shared.renderContext as 'svg' | 'canvas'); let motion = $state(true); let show = $state(true); @@ -60,7 +58,6 @@ y={(d) => d[1]} props={chartProps} brush - {renderContext} profile /> {/if} @@ -99,7 +96,6 @@ ]} props={chartProps} brush - {renderContext} profile /> {/if} diff --git a/packages/layerchart/src/routes/docs/performance/dimension_arrays_processed/+page.svelte b/packages/layerchart/src/routes/docs/performance/dimension_arrays_processed/+page.svelte index 64a7cb2a3..94ba71686 100644 --- a/packages/layerchart/src/routes/docs/performance/dimension_arrays_processed/+page.svelte +++ b/packages/layerchart/src/routes/docs/performance/dimension_arrays_processed/+page.svelte @@ -6,13 +6,11 @@ import { zip } from 'd3-array'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; const { data } = $props(); let example = $state<'single'>('single'); - let renderContext = $derived(shared.renderContext as 'svg' | 'canvas'); let motion = $state(true); let show = $state(true); @@ -66,7 +64,6 @@ y={(d) => d[1]} props={chartProps} brush - {renderContext} profile /> {/if} @@ -98,7 +95,6 @@ ]} props={chartProps} brush - {renderContext} profile /> {/if} diff --git a/packages/layerchart/src/routes/docs/performance/series_arrays/+page.svelte b/packages/layerchart/src/routes/docs/performance/series_arrays/+page.svelte index 27eff73da..9a11fa3f0 100644 --- a/packages/layerchart/src/routes/docs/performance/series_arrays/+page.svelte +++ b/packages/layerchart/src/routes/docs/performance/series_arrays/+page.svelte @@ -5,13 +5,11 @@ import { format } from '@layerstack/utils'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; const { data } = $props(); let example = $state<'single'>('single'); - let renderContext = $derived(shared.renderContext as 'svg' | 'canvas'); let motion = $state(true); let show = $state(true); @@ -53,15 +51,7 @@
    {#if show} - + {/if}
    @@ -79,7 +69,6 @@ ]} props={chartProps} brush - {renderContext} profile /> {/if} diff --git a/packages/layerchart/src/routes/docs/performance/streaming/+page.svelte b/packages/layerchart/src/routes/docs/performance/streaming/+page.svelte index 8d6f9c236..8b9c9ec38 100644 --- a/packages/layerchart/src/routes/docs/performance/streaming/+page.svelte +++ b/packages/layerchart/src/routes/docs/performance/streaming/+page.svelte @@ -3,9 +3,7 @@ import { Button, ButtonGroup, Field, TextField, ToggleGroup, ToggleOption } from 'svelte-ux'; import { format } from '@layerstack/utils'; import { TimerState } from '@layerstack/svelte-state'; - import { shared } from '../../shared.svelte.js'; - let renderContext = $derived(shared.renderContext as 'svg' | 'canvas'); let motion = $state(true); let show = $state(true); @@ -130,7 +128,7 @@
    {#if show && chartData.length} - + {/if}
    diff --git a/packages/layerchart/src/routes/docs/performance/wide_data/+page.svelte b/packages/layerchart/src/routes/docs/performance/wide_data/+page.svelte index 431158386..8724749c5 100644 --- a/packages/layerchart/src/routes/docs/performance/wide_data/+page.svelte +++ b/packages/layerchart/src/routes/docs/performance/wide_data/+page.svelte @@ -5,13 +5,11 @@ import { format } from '@layerstack/utils'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; const { data } = $props(); let example = $state<'single'>('single'); - let renderContext = $derived(shared.renderContext as 'svg' | 'canvas'); let motion = $state(true); let show = $state(true); @@ -59,7 +57,6 @@ y={(d) => 100 - d.idl} props={chartProps} brush - {renderContext} profile /> {/if} @@ -83,7 +80,6 @@ ]} props={chartProps} brush - {renderContext} profile /> {/if} diff --git a/packages/layerchart/src/routes/docs/performance/wide_data_processed/+page.svelte b/packages/layerchart/src/routes/docs/performance/wide_data_processed/+page.svelte index 145f3cd71..3c7c9bb2b 100644 --- a/packages/layerchart/src/routes/docs/performance/wide_data_processed/+page.svelte +++ b/packages/layerchart/src/routes/docs/performance/wide_data_processed/+page.svelte @@ -5,13 +5,11 @@ import { format } from '@layerstack/utils'; import Preview from '$lib/docs/Preview.svelte'; - import { shared } from '../../shared.svelte.js'; const { data } = $props(); let example = $state<'single'>('single'); - let renderContext = $derived(shared.renderContext as 'svg' | 'canvas'); let motion = $state(true); let show = $state(true); @@ -60,15 +58,7 @@
    {#if show} - + {/if}
    @@ -89,7 +79,6 @@ ]} props={chartProps} brush - {renderContext} profile /> {/if} diff --git a/packages/layerchart/src/routes/docs/shared.svelte.ts b/packages/layerchart/src/routes/docs/shared.svelte.ts deleted file mode 100644 index b8180d1c5..000000000 --- a/packages/layerchart/src/routes/docs/shared.svelte.ts +++ /dev/null @@ -1,11 +0,0 @@ -import type { ComponentProps } from 'svelte'; -import { Layer } from 'layerchart'; - -// Shared state for the docs layout -export const shared = $state<{ - renderContext: ComponentProps['type']; - debug: boolean; -}>({ - renderContext: 'svg', - debug: false, -}); diff --git a/packages/layerchart/src/routes/docs/tools/GeojsonPreview/+page.svelte b/packages/layerchart/src/routes/docs/tools/GeojsonPreview/+page.svelte index 9a8435ab3..7b8fd2fc4 100644 --- a/packages/layerchart/src/routes/docs/tools/GeojsonPreview/+page.svelte +++ b/packages/layerchart/src/routes/docs/tools/GeojsonPreview/+page.svelte @@ -28,7 +28,6 @@ import TilesetField from '$lib/docs/TilesetField.svelte'; import Json from '$lib/docs/Json.svelte'; - import { shared } from '../../shared.svelte.js'; let geojsonStr = $state(''); let geojson = $state(); @@ -100,7 +99,7 @@ > {#snippet children({ context })} {#if projection === geoMercator && serviceUrl} - + @@ -111,7 +110,7 @@ - + {#if geojson?.features} {#each geojson?.features as feature} - + diff --git a/packages/layerchart/src/routes/docs/tools/TopojsonPreview/+page.svelte b/packages/layerchart/src/routes/docs/tools/TopojsonPreview/+page.svelte index 0fdc9e90d..2e36d1447 100644 --- a/packages/layerchart/src/routes/docs/tools/TopojsonPreview/+page.svelte +++ b/packages/layerchart/src/routes/docs/tools/TopojsonPreview/+page.svelte @@ -31,7 +31,6 @@ import TilesetField from '$lib/docs/TilesetField.svelte'; import Json from '$lib/docs/Json.svelte'; - import { shared } from '../../shared.svelte.js'; let topojsonStr = $state(''); let topojson = $state>>>(); @@ -108,7 +107,7 @@ > {#snippet children({ context })} {#if projection === geoMercator && serviceUrl} - + @@ -119,7 +118,7 @@ - + {#if geojson?.features} {#each geojson.features as feature} =6.9.0'} + + '@babel/helper-validator-identifier@7.27.1': + resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} + engines: {node: '>=6.9.0'} + '@babel/runtime@7.28.3': resolution: {integrity: sha512-9uIQ10o0WGdpP6GDhXcdOJPJuDgFtIDtN/9+ArJQ2NAfAmiuhTQdzkaTGR33v43GYS2UrSA0eX2pPPHoFVvpxA==} engines: {node: '>=6.9.0'} @@ -664,6 +864,27 @@ packages: '@cloudflare/workers-types@4.20250816.0': resolution: {integrity: sha512-R9ADrrINo1CqTwCddH39Tjlsc3grim6KeO7l8yddNbldH3uTkaAXYCzO0WiyLG7irLzLDrZVc4tLhN6BO3tdFw==} + '@content-collections/core@0.11.1': + resolution: {integrity: sha512-4ZbjxOjaDAxnj7mIij1q1vxZgOJQkA20ThoNZ0CsnmhJmUp+IDqIRLUyDyZ+4ZAk+zQy6bKeOzWzyLg32vMgRQ==} + peerDependencies: + typescript: ^5.0.2 + + '@content-collections/integrations@0.3.0': + resolution: {integrity: sha512-He+TXQC94LO/1bNygTioh3J5H0K/mkFVPVkIrM5kHybprvi5bRmGa91ViZ6K6icFAzGH4jFD0iasR56fZcMGTA==} + peerDependencies: + '@content-collections/core': 0.x + + '@content-collections/markdown@0.1.4': + resolution: {integrity: sha512-hUi+O9SDmYmn63aiftSw1KtmSZIjc6ger42rfQobBhPx+3n8kTJsWm1Cs//yU5iIAVRKyLX3qrtlheiOPdJT9w==} + peerDependencies: + '@content-collections/core': 0.x + + '@content-collections/vite@0.2.7': + resolution: {integrity: sha512-aGKZfv/iRWdQGGYcX5QFypCYgXY/K9dfJYTCX2KaWDxMcYgsvd02v1sX1sPkqenj/94trxzW37dD5oOUgOocQg==} + peerDependencies: + '@content-collections/core': ^0.x + vite: ^5 || ^6 || ^7 + '@cspotcode/source-map-support@0.8.1': resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} @@ -984,6 +1205,53 @@ packages: cpu: [x64] os: [win32] + '@eslint-community/eslint-utils@4.9.0': + resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.12.1': + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/compat@1.4.0': + resolution: {integrity: sha512-DEzm5dKeDBPm3r08Ixli/0cmxr8LkRdwxMRUIJBlSCpAwSrvFEJpVBzV+66JhDxiaqKxnRzCXhtiMiczF7Hglg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.40 || 9 + peerDependenciesMeta: + eslint: + optional: true + + '@eslint/config-array@0.21.0': + resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/config-helpers@0.4.0': + resolution: {integrity: sha512-WUFvV4WoIwW8Bv0KeKCIIEgdSiFOsulyN0xrMu+7z43q/hkOLXjvb5u7UC9jDxvRzcrbEmuZBX5yJZz1741jog==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.16.0': + resolution: {integrity: sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/eslintrc@3.3.1': + resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/js@9.37.0': + resolution: {integrity: sha512-jaS+NJ+hximswBG6pjNX0uEJZkrT0zwpVi3BA3vX22aFGjJjmgSTSmPpZCRKmoBL5VY/M6p0xsSJx7rk7sy5gg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.6': + resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.4.0': + resolution: {integrity: sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@floating-ui/core@1.7.1': resolution: {integrity: sha512-azI0DrjMMfIug/ExbBaeDVJXcY0a7EPvPjb2xAJPa4HeimBX+Z18HK8QQR3jb6356SnDDdxx+hinMLcJEDdOjw==} @@ -1005,6 +1273,22 @@ packages: '@floating-ui/utils@0.2.9': resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==} + '@humanfs/core@0.19.1': + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.7': + resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==} + engines: {node: '>=18.18.0'} + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/retry@0.4.3': + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} + engines: {node: '>=18.18'} + '@iconify-json/lucide@1.2.62': resolution: {integrity: sha512-K0KfhvP5YQZ2KraOgCm6jJbwwzQCVocvXcdMpDou5uLa48QnLBRW/dQ8VDGmxHTGpwF9EqLlvnUSinH2i6xs3Q==} @@ -1161,27 +1445,42 @@ packages: '@layerstack/svelte-actions@1.0.1-next.14': resolution: {integrity: sha512-MPBmVaB+GfNHvBkg5nJkPG18smoXKvsvJRpsdWnrUBfca+TieZLoaEzNxDH+9LG11dIXP9gghsXt1mUqbbyAsA==} + '@layerstack/svelte-actions@1.0.1-next.16': + resolution: {integrity: sha512-f3VItwMCludqe44/yFzUOwz8ltq5pBgwvkce2FxZOylJUTY5hhZIPtPvEB1S1UfJ7HyY9vshqP0TJeI3+mUteQ==} + '@layerstack/svelte-state@0.1.0-next.19': resolution: {integrity: sha512-yCYoQAIbeP8y1xmOB/r0+UundgP4JFnpNURgMki+26TotzoqrZ5oLpHvhPSVm60ks+buR3ebDBTeUFdHzxwzQQ==} '@layerstack/svelte-stores@1.0.2-next.14': resolution: {integrity: sha512-UI8VO35hgoG0XOenPgJlieUv6f/1nomFuXnHpFwXj0+OkqIwFoJxdsA8OjbE/gS0lImqv2KKsSCqDpXsKrGi9g==} + '@layerstack/svelte-stores@1.0.2-next.16': + resolution: {integrity: sha512-1QFdGBtXvPOr8X/P5b2LjSWi1IH1SDgjS678uvdnUouQCWT2OB3+7RhHPPw7pBp9nC7eU45zS4fsN5qI7cZf9A==} + '@layerstack/svelte-table@1.0.1-next.14': resolution: {integrity: sha512-PZG3l7iylA3Fazff4L/dviI47vwML1gjuk8awTh/yKFGhKcy4Zk7TkDKnM49cdip3+6077p6acwyKysdQ6wxSg==} + '@layerstack/svelte-table@1.0.1-next.16': + resolution: {integrity: sha512-ohAg/HuKL6NRJbzvohfgMnCCJiDJTyXadKSYLjML52dvnB/f4mfJuHKwqEMERFEtaNfS5xOcHN5IvHa96690jg==} + '@layerstack/tailwind@2.0.0-next.17': resolution: {integrity: sha512-ZSn6ouqpnzB6DKzSKLVwrUBOQsrzpDA/By2/ba9ApxgTGnaD1nyqNwrvmZ+kswdAwB4YnrGEAE4VZkKrB2+DaQ==} '@layerstack/tailwind@2.0.0-next.18': resolution: {integrity: sha512-GYbkLHXisypJbhn4BkA7GKaM2edwK8l+lLJ+cK37lGJi43yFPh7vc8YfXjHTHSK4UBoz7KuI6TYE71188pkFgA==} + '@layerstack/tailwind@2.0.0-next.19': + resolution: {integrity: sha512-ITnwo/CdV5h5N0iSss5WoZKIjF1xxOzaO+v82Th8t+OPSYUz0SzrpwEViQ+36Zty+zeYRvRYfyGDwV4h1Hxnww==} + '@layerstack/utils@2.0.0-next.14': resolution: {integrity: sha512-1I2CS0Cwgs53W35qVg1eBdYhB/CiPvL3s0XE61b8jWkTHxgjBF65yYNgXjW74kv7WI7GsJcWMNBufPd0rnu9kA==} '@layerstack/utils@2.0.0-next.15': resolution: {integrity: sha512-s54EUjFKPeCH8F+2L45Tq2O1m9MBSi5Ix0MB3wpCaRNwYh3ZuDXdPvacxk//C3VA/6W1W7io2h2TYMytcghO4A==} + '@layerstack/utils@2.0.0-next.16': + resolution: {integrity: sha512-V0aTlVpEylaVgwUOrVhMcEVAN8ysChP1Y4uPCcohl048Ocv+h37eW67pVxj81c+aLAavCd3BXt9IhJfELqTVmw==} + '@lucide/svelte@0.534.0': resolution: {integrity: sha512-XqlT0ibiEEoEGcmZLdk0RNtq1OW77OjqxXZjJE/23Wabl+2d9Pxg9AAx7+6WFv8BSf8K6im73vz3cZKYEgY9Mw==} peerDependencies: @@ -1219,6 +1518,11 @@ packages: resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} + '@playwright/test@1.56.0': + resolution: {integrity: sha512-Tzh95Twig7hUwwNe381/K3PggZBZblKUe2wv25oIpzWLr6Z0m4KgV1ZVIjnR6GM9ANEqjZD7XsZEa6JL/7YEgg==} + engines: {node: '>=18'} + hasBin: true + '@polka/url@1.0.0-next.29': resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==} @@ -1416,6 +1720,12 @@ packages: '@sveltejs/kit': ^2.0.0 wrangler: ^4.0.0 + '@sveltejs/adapter-cloudflare@7.2.4': + resolution: {integrity: sha512-uD8VlOuGXGuZWL+zbBYSjtmC4WDtlonUodfqAZ/COd5uIy2Z0QptIicB/nkTrGNI9sbmzgf7z0N09CHyWYlUvQ==} + peerDependencies: + '@sveltejs/kit': ^2.0.0 + wrangler: ^4.0.0 + '@sveltejs/kit@2.31.1': resolution: {integrity: sha512-Iv98PKh81amOjIWZ6Flqr6E7xYcrrYZ4mY9XwYUvaCDiQ4hYt5+jXR9CivcgLOTK+RcJ3K4guEYF4lFYQfTxaA==} engines: {node: '>=18.13'} @@ -1429,6 +1739,19 @@ packages: '@opentelemetry/api': optional: true + '@sveltejs/kit@2.46.0': + resolution: {integrity: sha512-HLRd6mNLTOKMk4EACBJHYRNggmW60CtZsGnAlB/mnr0TI/IaoLhMU/eA3CDrjT82VGdGBjpyIXcKoIDF3gZTkA==} + engines: {node: '>=18.13'} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.0.0 + '@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0 + svelte: ^4.0.0 || ^5.0.0-next.0 + vite: ^5.0.3 || ^6.0.0 || ^7.0.0-beta.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@sveltejs/package@2.4.1': resolution: {integrity: sha512-dFj78EMy8Vgqsj5Tv2rPuPmtpyqYiJDL1QGhWjK4xW3g77ffF26ovoNBHNg/NZG9ZdTUUDb4rov6We3gW1pamg==} engines: {node: ^16.14 || >=18} @@ -1436,6 +1759,12 @@ packages: peerDependencies: svelte: ^3.44.0 || ^4.0.0 || ^5.0.0-next.1 + '@sveltejs/svelte-json-tree@2.2.1': + resolution: {integrity: sha512-M8l23/R3y1fI2+RaOzfUzmkysTWWsw/NClUgGpvydl9vXRonPN1/btQQievaNyeWNfUj12tjPfh5yTrXWpaKkg==} + engines: {pnpm: ^9.0.0} + peerDependencies: + svelte: ^4.0.0 || ^5.0.0 + '@sveltejs/vite-plugin-svelte-inspector@5.0.0': resolution: {integrity: sha512-iwQ8Z4ET6ZFSt/gC+tVfcsSBHwsqc6RumSaiLUkAurW3BCpJam65cmHw0oOlDMTO0u+PZi9hilBRYN+LZNHTUQ==} engines: {node: ^20.19 || ^22.12 || >=24} @@ -1451,6 +1780,13 @@ packages: svelte: ^5.0.0 vite: ^6.3.0 || ^7.0.0 + '@sveltejs/vite-plugin-svelte@6.2.1': + resolution: {integrity: sha512-YZs/OSKOQAQCnJvM/P+F1URotNnYNeU3P2s4oIpzm1uFaqUEqRxUB0g5ejMjEb5Gjb9/PiBI5Ktrq4rUUF8UVQ==} + engines: {node: ^20.19 || ^22.12 || >=24} + peerDependencies: + svelte: ^5.0.0 + vite: ^6.3.0 || ^7.0.0 + '@svitejs/changesets-changelog-github-compact@1.2.0': resolution: {integrity: sha512-08eKiDAjj4zLug1taXSIJ0kGL5cawjVCyJkBb6EWSg5fEPX6L+Wtr0CH2If4j5KYylz85iaZiFlUItvgJvll5g==} engines: {node: ^14.13.1 || ^16.0.0 || >=18} @@ -1461,60 +1797,117 @@ packages: '@tailwindcss/node@4.1.12': resolution: {integrity: sha512-3hm9brwvQkZFe++SBt+oLjo4OLDtkvlE8q2WalaD/7QWaeM7KEJbAiY/LJZUaCs7Xa8aUu4xy3uoyX4q54UVdQ==} + '@tailwindcss/node@4.1.14': + resolution: {integrity: sha512-hpz+8vFk3Ic2xssIA3e01R6jkmsAhvkQdXlEbRTk6S10xDAtiQiM3FyvZVGsucefq764euO/b8WUW9ysLdThHw==} + '@tailwindcss/oxide-android-arm64@4.1.12': resolution: {integrity: sha512-oNY5pq+1gc4T6QVTsZKwZaGpBb2N1H1fsc1GD4o7yinFySqIuRZ2E4NvGasWc6PhYJwGK2+5YT1f9Tp80zUQZQ==} engines: {node: '>= 10'} cpu: [arm64] os: [android] + '@tailwindcss/oxide-android-arm64@4.1.14': + resolution: {integrity: sha512-a94ifZrGwMvbdeAxWoSuGcIl6/DOP5cdxagid7xJv6bwFp3oebp7y2ImYsnZBMTwjn5Ev5xESvS3FFYUGgPODQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [android] + '@tailwindcss/oxide-darwin-arm64@4.1.12': resolution: {integrity: sha512-cq1qmq2HEtDV9HvZlTtrj671mCdGB93bVY6J29mwCyaMYCP/JaUBXxrQQQm7Qn33AXXASPUb2HFZlWiiHWFytw==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] + '@tailwindcss/oxide-darwin-arm64@4.1.14': + resolution: {integrity: sha512-HkFP/CqfSh09xCnrPJA7jud7hij5ahKyWomrC3oiO2U9i0UjP17o9pJbxUN0IJ471GTQQmzwhp0DEcpbp4MZTA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + '@tailwindcss/oxide-darwin-x64@4.1.12': resolution: {integrity: sha512-6UCsIeFUcBfpangqlXay9Ffty9XhFH1QuUFn0WV83W8lGdX8cD5/+2ONLluALJD5+yJ7k8mVtwy3zMZmzEfbLg==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] + '@tailwindcss/oxide-darwin-x64@4.1.14': + resolution: {integrity: sha512-eVNaWmCgdLf5iv6Qd3s7JI5SEFBFRtfm6W0mphJYXgvnDEAZ5sZzqmI06bK6xo0IErDHdTA5/t7d4eTfWbWOFw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + '@tailwindcss/oxide-freebsd-x64@4.1.12': resolution: {integrity: sha512-JOH/f7j6+nYXIrHobRYCtoArJdMJh5zy5lr0FV0Qu47MID/vqJAY3r/OElPzx1C/wdT1uS7cPq+xdYYelny1ww==} engines: {node: '>= 10'} cpu: [x64] os: [freebsd] + '@tailwindcss/oxide-freebsd-x64@4.1.14': + resolution: {integrity: sha512-QWLoRXNikEuqtNb0dhQN6wsSVVjX6dmUFzuuiL09ZeXju25dsei2uIPl71y2Ic6QbNBsB4scwBoFnlBfabHkEw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.12': resolution: {integrity: sha512-v4Ghvi9AU1SYgGr3/j38PD8PEe6bRfTnNSUE3YCMIRrrNigCFtHZ2TCm8142X8fcSqHBZBceDx+JlFJEfNg5zQ==} engines: {node: '>= 10'} cpu: [arm] os: [linux] + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.14': + resolution: {integrity: sha512-VB4gjQni9+F0VCASU+L8zSIyjrLLsy03sjcR3bM0V2g4SNamo0FakZFKyUQ96ZVwGK4CaJsc9zd/obQy74o0Fw==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + '@tailwindcss/oxide-linux-arm64-gnu@4.1.12': resolution: {integrity: sha512-YP5s1LmetL9UsvVAKusHSyPlzSRqYyRB0f+Kl/xcYQSPLEw/BvGfxzbH+ihUciePDjiXwHh+p+qbSP3SlJw+6g==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] + '@tailwindcss/oxide-linux-arm64-gnu@4.1.14': + resolution: {integrity: sha512-qaEy0dIZ6d9vyLnmeg24yzA8XuEAD9WjpM5nIM1sUgQ/Zv7cVkharPDQcmm/t/TvXoKo/0knI3me3AGfdx6w1w==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + '@tailwindcss/oxide-linux-arm64-musl@4.1.12': resolution: {integrity: sha512-V8pAM3s8gsrXcCv6kCHSuwyb/gPsd863iT+v1PGXC4fSL/OJqsKhfK//v8P+w9ThKIoqNbEnsZqNy+WDnwQqCA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] + '@tailwindcss/oxide-linux-arm64-musl@4.1.14': + resolution: {integrity: sha512-ISZjT44s59O8xKsPEIesiIydMG/sCXoMBCqsphDm/WcbnuWLxxb+GcvSIIA5NjUw6F8Tex7s5/LM2yDy8RqYBQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + '@tailwindcss/oxide-linux-x64-gnu@4.1.12': resolution: {integrity: sha512-xYfqYLjvm2UQ3TZggTGrwxjYaLB62b1Wiysw/YE3Yqbh86sOMoTn0feF98PonP7LtjsWOWcXEbGqDL7zv0uW8Q==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + '@tailwindcss/oxide-linux-x64-gnu@4.1.14': + resolution: {integrity: sha512-02c6JhLPJj10L2caH4U0zF8Hji4dOeahmuMl23stk0MU1wfd1OraE7rOloidSF8W5JTHkFdVo/O7uRUJJnUAJg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + '@tailwindcss/oxide-linux-x64-musl@4.1.12': resolution: {integrity: sha512-ha0pHPamN+fWZY7GCzz5rKunlv9L5R8kdh+YNvP5awe3LtuXb5nRi/H27GeL2U+TdhDOptU7T6Is7mdwh5Ar3A==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + '@tailwindcss/oxide-linux-x64-musl@4.1.14': + resolution: {integrity: sha512-TNGeLiN1XS66kQhxHG/7wMeQDOoL0S33x9BgmydbrWAb9Qw0KYdd8o1ifx4HOGDWhVmJ+Ul+JQ7lyknQFilO3Q==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + '@tailwindcss/oxide-wasm32-wasi@4.1.12': resolution: {integrity: sha512-4tSyu3dW+ktzdEpuk6g49KdEangu3eCYoqPhWNsZgUhyegEda3M9rG0/j1GV/JjVVsj+lG7jWAyrTlLzd/WEBg==} engines: {node: '>=14.0.0'} @@ -1527,22 +1920,50 @@ packages: - '@emnapi/wasi-threads' - tslib + '@tailwindcss/oxide-wasm32-wasi@4.1.14': + resolution: {integrity: sha512-uZYAsaW/jS/IYkd6EWPJKW/NlPNSkWkBlaeVBi/WsFQNP05/bzkebUL8FH1pdsqx4f2fH/bWFcUABOM9nfiJkQ==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + bundledDependencies: + - '@napi-rs/wasm-runtime' + - '@emnapi/core' + - '@emnapi/runtime' + - '@tybys/wasm-util' + - '@emnapi/wasi-threads' + - tslib + '@tailwindcss/oxide-win32-arm64-msvc@4.1.12': resolution: {integrity: sha512-iGLyD/cVP724+FGtMWslhcFyg4xyYyM+5F4hGvKA7eifPkXHRAUDFaimu53fpNg9X8dfP75pXx/zFt/jlNF+lg==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] + '@tailwindcss/oxide-win32-arm64-msvc@4.1.14': + resolution: {integrity: sha512-Az0RnnkcvRqsuoLH2Z4n3JfAef0wElgzHD5Aky/e+0tBUxUhIeIqFBTMNQvmMRSP15fWwmvjBxZ3Q8RhsDnxAA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + '@tailwindcss/oxide-win32-x64-msvc@4.1.12': resolution: {integrity: sha512-NKIh5rzw6CpEodv/++r0hGLlfgT/gFN+5WNdZtvh6wpU2BpGNgdjvj6H2oFc8nCM839QM1YOhjpgbAONUb4IxA==} engines: {node: '>= 10'} cpu: [x64] os: [win32] + '@tailwindcss/oxide-win32-x64-msvc@4.1.14': + resolution: {integrity: sha512-ttblVGHgf68kEE4om1n/n44I0yGPkCPbLsqzjvybhpwa6mKKtgFfAzy6btc3HRmuW7nHe0OOrSeNP9sQmmH9XA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + '@tailwindcss/oxide@4.1.12': resolution: {integrity: sha512-gM5EoKHW/ukmlEtphNwaGx45fGoEmP10v51t9unv55voWh6WrOL19hfuIdo2FjxIaZzw776/BUQg7Pck++cIVw==} engines: {node: '>= 10'} + '@tailwindcss/oxide@4.1.14': + resolution: {integrity: sha512-23yx+VUbBwCg2x5XWdB8+1lkPajzLmALEfMb51zZUBYaYVPDQvBSD/WYDqiVyBIo2BZFa3yw1Rpy3G2Jp+K0dw==} + engines: {node: '>= 10'} + '@tailwindcss/typography@0.5.16': resolution: {integrity: sha512-0wDLwCVF5V3x3b1SGXPCDcdsbDHMBe+lkFzBRaHeLvNi+nrrnZ1lA18u+OTWO8iSWU2GxUOCvlXtDuqftc1oiA==} peerDependencies: @@ -1553,6 +1974,24 @@ packages: peerDependencies: vite: ^5.2.0 || ^6 || ^7 + '@tailwindcss/vite@4.1.14': + resolution: {integrity: sha512-BoFUoU0XqgCUS1UXWhmDJroKKhNXeDzD7/XwabjkDIAbMnc4ULn5e2FuEuBbhZ6ENZoSYzKlzvZ44Yr6EUDUSA==} + peerDependencies: + vite: ^5.2.0 || ^6 || ^7 + + '@testing-library/dom@10.4.1': + resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==} + engines: {node: '>=18'} + + '@testing-library/user-event@14.6.1': + resolution: {integrity: sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==} + engines: {node: '>=12', npm: '>=6'} + peerDependencies: + '@testing-library/dom': '>=7.21.4' + + '@types/aria-query@5.0.4': + resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} + '@types/chai@5.2.2': resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==} @@ -1664,6 +2103,9 @@ packages: '@types/d3@7.4.3': resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==} + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + '@types/deep-eql@4.0.2': resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} @@ -1679,6 +2121,9 @@ packages: '@types/hast@3.0.4': resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + '@types/lodash-es@4.17.12': resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==} @@ -1688,9 +2133,15 @@ packages: '@types/mdast@4.0.4': resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + '@types/ms@2.1.0': + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} + '@types/node@12.20.55': resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} + '@types/node@22.18.8': + resolution: {integrity: sha512-pAZSHMiagDR7cARo/cch1f3rXy0AEXwsVsVH09FcyeJVAzCnGgmYis7P3JidtTUjyadhTeSo8TgRPswstghDaw==} + '@types/node@24.0.1': resolution: {integrity: sha512-MX4Zioh39chHlDJbKmEgydJDS3tspMP/lnQC67G3SWsTnb9NeYVWOjkxpOSy4oMfPs4StcWHwBrvUb4ybfnuaw==} @@ -1718,31 +2169,105 @@ packages: '@types/unist@3.0.2': resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} - '@ungap/structured-clone@1.3.0': - resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} + '@typescript-eslint/eslint-plugin@8.46.0': + resolution: {integrity: sha512-hA8gxBq4ukonVXPy0OKhiaUh/68D0E88GSmtC1iAEnGaieuDi38LhS7jdCHRLi6ErJBNDGCzvh5EnzdPwUc0DA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.46.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' - '@vitest/expect@3.2.4': - resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} + '@typescript-eslint/parser@8.46.0': + resolution: {integrity: sha512-n1H6IcDhmmUEG7TNVSspGmiHHutt7iVKtZwRppD7e04wha5MrkV1h3pti9xQLcCMt6YWsncpoT0HMjkH1FNwWQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' - '@vitest/mocker@3.2.4': - resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} + '@typescript-eslint/project-service@8.46.0': + resolution: {integrity: sha512-OEhec0mH+U5Je2NZOeK1AbVCdm0ChyapAyTeXVIYTPXDJ3F07+cu87PPXcGoYqZ7M9YJVvFnfpGg1UmCIqM+QQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - msw: ^2.4.9 - vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0 - peerDependenciesMeta: - msw: - optional: true - vite: - optional: true + typescript: '>=4.8.4 <6.0.0' - '@vitest/pretty-format@3.2.4': - resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} + '@typescript-eslint/scope-manager@8.46.0': + resolution: {integrity: sha512-lWETPa9XGcBes4jqAMYD9fW0j4n6hrPtTJwWDmtqgFO/4HF4jmdH/Q6wggTw5qIT5TXjKzbt7GsZUBnWoO3dqw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@vitest/runner@3.2.4': - resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} + '@typescript-eslint/tsconfig-utils@8.46.0': + resolution: {integrity: sha512-WrYXKGAHY836/N7zoK/kzi6p8tXFhasHh8ocFL9VZSAkvH956gfeRfcnhs3xzRy8qQ/dq3q44v1jvQieMFg2cw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' - '@vitest/snapshot@3.2.4': - resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} + '@typescript-eslint/type-utils@8.46.0': + resolution: {integrity: sha512-hy+lvYV1lZpVs2jRaEYvgCblZxUoJiPyCemwbQZ+NGulWkQRy0HRPYAoef/CNSzaLt+MLvMptZsHXHlkEilaeg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/types@8.46.0': + resolution: {integrity: sha512-bHGGJyVjSE4dJJIO5yyEWt/cHyNwga/zXGJbJJ8TiO01aVREK6gCTu3L+5wrkb1FbDkQ+TKjMNe9R/QQQP9+rA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@8.46.0': + resolution: {integrity: sha512-ekDCUfVpAKWJbRfm8T1YRrCot1KFxZn21oV76v5Fj4tr7ELyk84OS+ouvYdcDAwZL89WpEkEj2DKQ+qg//+ucg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/utils@8.46.0': + resolution: {integrity: sha512-nD6yGWPj1xiOm4Gk0k6hLSZz2XkNXhuYmyIrOWcHoPuAhjT9i5bAG+xbWPgFeNR8HPHHtpNKdYUXJl/D3x7f5g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/visitor-keys@8.46.0': + resolution: {integrity: sha512-FrvMpAK+hTbFy7vH5j1+tMYHMSKLE6RzluFJlkFNKD0p9YsUT75JlBSmr5so3QRzvMwU5/bIEdeNrxm8du8l3Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@ungap/structured-clone@1.3.0': + resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} + + '@vitest/browser@3.2.4': + resolution: {integrity: sha512-tJxiPrWmzH8a+w9nLKlQMzAKX/7VjFs50MWgcAj7p9XQ7AQ9/35fByFYptgPELyLw+0aixTnC4pUWV+APcZ/kw==} + peerDependencies: + playwright: '*' + safaridriver: '*' + vitest: 3.2.4 + webdriverio: ^7.0.0 || ^8.0.0 || ^9.0.0 + peerDependenciesMeta: + playwright: + optional: true + safaridriver: + optional: true + webdriverio: + optional: true + + '@vitest/expect@3.2.4': + resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} + + '@vitest/mocker@3.2.4': + resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} + peerDependencies: + msw: ^2.4.9 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0 + peerDependenciesMeta: + msw: + optional: true + vite: + optional: true + + '@vitest/pretty-format@3.2.4': + resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} + + '@vitest/runner@3.2.4': + resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} + + '@vitest/snapshot@3.2.4': + resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} '@vitest/spy@3.2.4': resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} @@ -1854,6 +2379,11 @@ packages: '@zag-js/utils@1.24.2': resolution: {integrity: sha512-3U8aYXjktpDmQV4M7nAOj7E4x1XSifG7PrbHqJbTYRm7/EPbwCQEEDPckkkWBmj4UrvltbkXPi6nzcP4Qpw5bA==} + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + acorn-walk@8.3.2: resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} engines: {node: '>=0.4.0'} @@ -1868,6 +2398,9 @@ packages: engines: {node: '>=0.4.0'} hasBin: true + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + ansi-colors@4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} @@ -1884,6 +2417,10 @@ packages: resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} engines: {node: '>=8'} + ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + ansi-styles@6.2.1: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} @@ -1891,6 +2428,12 @@ packages: argparse@1.0.10: resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + aria-query@5.3.2: resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} engines: {node: '>= 0.4'} @@ -1910,6 +2453,9 @@ packages: resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} engines: {node: '>= 0.4'} + bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} @@ -1927,6 +2473,9 @@ packages: blake3-wasm@2.1.5: resolution: {integrity: sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==} + brace-expansion@1.1.12: + resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} + brace-expansion@2.0.1: resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} @@ -1942,6 +2491,14 @@ packages: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camelcase@8.0.0: + resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} + engines: {node: '>=16'} + ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} @@ -1949,12 +2506,19 @@ packages: resolution: {integrity: sha512-5nFxhUrX0PqtyogoYOA8IPswy5sZFTOsBFl/9bNsmDLgsxYTzSZQJDPppDnZPTQbzSEm0hqGjWPzRemQCYbD6A==} engines: {node: '>=18'} + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + character-entities-html4@2.1.0: resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} character-entities-legacy@3.0.0: resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + chardet@2.1.0: resolution: {integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==} @@ -2013,6 +2577,9 @@ packages: resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} engines: {node: '>= 12.0.0'} + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + confbox@0.1.8: resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} @@ -2168,6 +2735,9 @@ packages: supports-color: optional: true + decode-named-character-reference@1.2.0: + resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==} + dedent-js@1.0.1: resolution: {integrity: sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ==} @@ -2175,6 +2745,9 @@ packages: resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} engines: {node: '>=6'} + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + deepmerge@4.3.1: resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} engines: {node: '>=0.10.0'} @@ -2204,6 +2777,9 @@ packages: devalue@5.1.1: resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==} + devalue@5.3.2: + resolution: {integrity: sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==} + devlop@1.1.0: resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} @@ -2211,6 +2787,9 @@ packages: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} engines: {node: '>=8'} + dom-accessibility-api@0.5.16: + resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + dotenv@16.4.5: resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} engines: {node: '>=12'} @@ -2232,6 +2811,10 @@ packages: resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} engines: {node: '>=8.6'} + entities@6.0.1: + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} + engines: {node: '>=0.12'} + error-stack-parser-es@1.0.5: resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==} @@ -2252,17 +2835,82 @@ packages: resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} engines: {node: '>=6'} + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + + eslint-config-prettier@10.1.8: + resolution: {integrity: sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + + eslint-plugin-svelte@3.12.4: + resolution: {integrity: sha512-hD7wPe+vrPgx3U2X2b/wyTMtWobm660PygMGKrWWYTc9lvtY8DpNFDaU2CJQn1szLjGbn/aJ3g8WiXuKakrEkw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.1 || ^9.0.0 + svelte: ^3.37.0 || ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + svelte: + optional: true + + eslint-scope@8.4.0: + resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-visitor-keys@4.2.1: + resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint@9.37.0: + resolution: {integrity: sha512-XyLmROnACWqSxiGYArdef1fItQd47weqB7iwtfr9JHwRrqIXZdcFMvvEcL9xHCmL0SNsOvF0c42lWyM1U5dgig==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + esm-env@1.2.2: resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==} + espree@10.4.0: + resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + esprima@4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} engines: {node: '>=4'} hasBin: true + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + + esrap@1.4.9: + resolution: {integrity: sha512-3OMlcd0a03UGuZpPeUC1HxR3nA23l+HEyCiZw3b3FumJIN9KphoGzDJKMXI1S72jVS1dsenDyQC0kJlO1U9E1g==} + esrap@2.1.0: resolution: {integrity: sha512-yzmPNpl7TBbMRC5Lj2JlJZNPml0tzqoqP5B1JXycNUwtqma9AKCO0M2wHrdgsHcy1WRW7S9rJknAMtByg3usgA==} + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + estree-walker@1.0.1: resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} @@ -2272,6 +2920,10 @@ packages: estree-walker@3.0.3: resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + exit-hook@2.2.1: resolution: {integrity: sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==} engines: {node: '>=6'} @@ -2283,13 +2935,29 @@ packages: exsolve@1.0.7: resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==} + extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + extendable-error@0.1.7: resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + fast-glob@3.3.3: resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} engines: {node: '>=8.6.0'} + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + fastq@1.19.1: resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} @@ -2301,9 +2969,22 @@ packages: picomatch: optional: true + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + fflate@0.4.8: resolution: {integrity: sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==} + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + file-source@0.6.1: resolution: {integrity: sha512-1R1KneL7eTXmXfKxC10V/9NeGOdbsAXJ+lQ//fvvcHUgtaZcZDWNJNblxAoVOyV1cj45pOtUrR3vZTBwqcW8XA==} @@ -2315,6 +2996,17 @@ packages: resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} engines: {node: '>=8'} + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + + flatted@3.3.3: + resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} + foreground-child@3.3.0: resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} engines: {node: '>=14'} @@ -2327,6 +3019,11 @@ packages: resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} engines: {node: '>=6 <7 || >=8'} + fsevents@2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -2346,6 +3043,10 @@ packages: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} engines: {node: '>= 6'} + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + glob-to-regexp@0.4.1: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} @@ -2354,10 +3055,18 @@ packages: engines: {node: 20 || >=22} hasBin: true + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + globals@15.15.0: resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==} engines: {node: '>=18'} + globals@16.4.0: + resolution: {integrity: sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==} + engines: {node: '>=18'} + globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} @@ -2365,22 +3074,51 @@ packages: graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + + gray-matter@4.0.3: + resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} + engines: {node: '>=6.0'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + hasown@2.0.2: resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} engines: {node: '>= 0.4'} + hast-util-from-html@2.0.3: + resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==} + + hast-util-from-parse5@8.0.3: + resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==} + hast-util-heading-rank@3.0.0: resolution: {integrity: sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==} + hast-util-parse-selector@4.0.0: + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} + + hast-util-raw@9.1.0: + resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==} + hast-util-to-html@9.0.5: resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==} + hast-util-to-parse5@8.0.0: + resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} + hast-util-to-string@3.0.0: resolution: {integrity: sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==} hast-util-whitespace@3.0.0: resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} + hastscript@9.0.1: + resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==} + html-void-elements@3.0.0: resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} @@ -2400,9 +3138,24 @@ packages: resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} engines: {node: '>= 4'} + ignore@7.0.5: + resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} + engines: {node: '>= 4'} + immer@10.1.1: resolution: {integrity: sha512-s2MPrmjovJcoMaHtx6K11Ra7oD05NT97w1IC5zpMkT6Atjr7H8LjaDd81iIxUYpMKSRRNMJE703M1Fhr/TctHw==} + immer@10.1.3: + resolution: {integrity: sha512-tmjF/k8QDKydUlm3mZU+tjM6zeq9/fFpPqH9SzWmBnVVKsPBg/V66qsMwb3/Bo90cgUN+ghdVBess+hPsxUyRw==} + + import-fresh@3.3.1: + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} + engines: {node: '>=6'} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + inline-style-parser@0.2.4: resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==} @@ -2429,6 +3182,10 @@ packages: engines: {node: '>=8'} hasBin: true + is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} @@ -2448,6 +3205,10 @@ packages: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + is-reference@3.0.3: resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==} @@ -2474,6 +3235,13 @@ packages: resolution: {integrity: sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==} hasBin: true + jiti@2.6.1: + resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} + hasBin: true + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + js-tokens@9.0.1: resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} @@ -2481,16 +3249,43 @@ packages: resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + jsonfile@4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + kleur@4.1.5: resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} engines: {node: '>=6'} + known-css-properties@0.37.0: + resolution: {integrity: sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ==} + kolorist@1.8.0: resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + lightningcss-darwin-arm64@1.30.1: resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==} engines: {node: '>= 12.0.0'} @@ -2555,6 +3350,10 @@ packages: resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==} engines: {node: '>= 12.0.0'} + lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + lilconfig@3.1.3: resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} engines: {node: '>=14'} @@ -2570,6 +3369,10 @@ packages: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} engines: {node: '>=8'} + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + lodash-es@4.17.21: resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} @@ -2585,6 +3388,9 @@ packages: lodash.startcase@4.4.0: resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + loupe@3.2.0: resolution: {integrity: sha512-2NCfZcT5VGVNX9mSZIxLRkEAegDGBpuQZBy13desuHeVORmBDyAET4TkJr4SjqQy3A8JDofMN6LpkK8Xcm/dlw==} @@ -2595,12 +3401,55 @@ packages: resolution: {integrity: sha512-Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==} engines: {node: 20 || >=22} + lz-string@1.5.0: + resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} + hasBin: true + magic-string@0.30.17: resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + magic-string@0.30.19: + resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} + + markdown-table@3.0.4: + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} + + mdast-util-find-and-replace@3.0.2: + resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} + + mdast-util-from-markdown@2.0.2: + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} + + mdast-util-gfm-autolink-literal@2.0.1: + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} + + mdast-util-gfm-footnote@2.1.0: + resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} + + mdast-util-gfm-strikethrough@2.0.0: + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} + + mdast-util-gfm-table@2.0.0: + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} + + mdast-util-gfm-task-list-item@2.0.0: + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} + + mdast-util-gfm@3.1.0: + resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} + + mdast-util-phrasing@4.1.0: + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + mdast-util-to-hast@13.2.0: resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} + mdast-util-to-markdown@2.1.2: + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} + + mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + mdn-data@2.0.30: resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} @@ -2609,6 +3458,11 @@ packages: peerDependencies: svelte: ^3.56.0 || ^4.0.0 || ^5.0.0-next.120 + mdsx@0.0.7: + resolution: {integrity: sha512-Ftgb6Yq47WMaYoFznJ+jNxnn82sDUvot9Nw2uSaolbkghUV6Le1stDzEVHClaKA1hMJnc+jbMagK/HM7nT6FJg==} + peerDependencies: + svelte: ^5.0.0 + memoize@10.1.0: resolution: {integrity: sha512-MMbFhJzh4Jlg/poq1si90XRlTZRDHVqdlz2mPyGJ6kqMpyHUyVpDd5gpFAvVehW64+RA1eKE9Yt8aSLY7w2Kgg==} engines: {node: '>=18'} @@ -2617,21 +3471,90 @@ packages: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} + micromark-core-commonmark@2.0.3: + resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} + + micromark-extension-gfm-autolink-literal@2.1.0: + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} + + micromark-extension-gfm-footnote@2.1.0: + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} + + micromark-extension-gfm-strikethrough@2.1.0: + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} + + micromark-extension-gfm-table@2.1.1: + resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} + + micromark-extension-gfm-tagfilter@2.0.0: + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + + micromark-extension-gfm-task-list-item@2.1.0: + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} + + micromark-extension-gfm@3.0.0: + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} + + micromark-factory-destination@2.0.1: + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} + + micromark-factory-label@2.0.1: + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} + + micromark-factory-space@2.0.1: + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} + + micromark-factory-title@2.0.1: + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} + + micromark-factory-whitespace@2.0.1: + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} + micromark-util-character@2.1.1: resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} + micromark-util-chunked@2.0.1: + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} + + micromark-util-classify-character@2.0.1: + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} + + micromark-util-combine-extensions@2.0.1: + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} + + micromark-util-decode-numeric-character-reference@2.0.2: + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} + + micromark-util-decode-string@2.0.1: + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} + micromark-util-encode@2.0.1: resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} + micromark-util-html-tag-name@2.0.1: + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} + + micromark-util-normalize-identifier@2.0.1: + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} + + micromark-util-resolve-all@2.0.1: + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} + micromark-util-sanitize-uri@2.0.1: resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} + micromark-util-subtokenize@2.1.0: + resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} + micromark-util-symbol@2.0.1: resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} micromark-util-types@2.0.2: resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} + micromark@4.0.2: + resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} + micromatch@4.0.8: resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} engines: {node: '>=8.6'} @@ -2654,6 +3577,13 @@ packages: resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==} engines: {node: 20 || >=22} + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + minipass@7.1.2: resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} engines: {node: '>=16 || 14 >=14.17'} @@ -2662,6 +3592,10 @@ packages: resolution: {integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==} engines: {node: '>= 18'} + minizlib@3.1.0: + resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==} + engines: {node: '>= 18'} + mkdirp@3.0.1: resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} engines: {node: '>=10'} @@ -2691,6 +3625,9 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + no-case@3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} @@ -2716,6 +3653,10 @@ packages: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} engines: {node: '>=12'} + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + outdent@0.5.0: resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} @@ -2727,10 +3668,22 @@ packages: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-limit@6.2.0: + resolution: {integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==} + engines: {node: '>=18'} + p-locate@4.1.0: resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} engines: {node: '>=8'} + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + p-map@2.1.0: resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} engines: {node: '>=6'} @@ -2748,6 +3701,16 @@ packages: package-manager-detector@1.3.0: resolution: {integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==} + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-numeric-range@1.3.0: + resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==} + + parse5@7.3.0: + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} + pascal-case@3.1.2: resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} @@ -2811,6 +3774,32 @@ packages: pkg-types@2.2.0: resolution: {integrity: sha512-2SM/GZGAEkPp3KWORxQZns4M+WSeXbC2HEvmOIJe3Cmiv6ieAJvdVhDldtHqM5J1Y7MrR1XhkBT/rMlhh9FdqQ==} + playwright-core@1.56.0: + resolution: {integrity: sha512-1SXl7pMfemAMSDn5rkPeZljxOCYAmQnYLBTExuh6E8USHXGSX3dx6lYZN/xPpTz1vimXmPA9CDnILvmJaB8aSQ==} + engines: {node: '>=18'} + hasBin: true + + playwright@1.56.0: + resolution: {integrity: sha512-X5Q1b8lOdWIE4KAoHpW3SE8HvUB+ZZsUoN64ZhjnN8dOb1UpujxBtENGiZFE+9F/yhzJwYa+ca3u43FeLbboHA==} + engines: {node: '>=18'} + hasBin: true + + pluralize@8.0.0: + resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} + engines: {node: '>=4'} + + postcss-load-config@3.1.4: + resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} + engines: {node: '>= 10'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + postcss-load-config@6.0.1: resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==} engines: {node: '>= 18'} @@ -2829,10 +3818,26 @@ packages: yaml: optional: true + postcss-safe-parser@7.0.1: + resolution: {integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==} + engines: {node: '>=18.0'} + peerDependencies: + postcss: ^8.4.31 + + postcss-scss@4.0.9: + resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.4.29 + postcss-selector-parser@6.0.10: resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} engines: {node: '>=4'} + postcss-selector-parser@7.1.0: + resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==} + engines: {node: '>=4'} + postcss@8.5.6: resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} engines: {node: ^10 || ^12 || >=14} @@ -2851,6 +3856,10 @@ packages: preact@10.27.0: resolution: {integrity: sha512-/DTYoB6mwwgPytiqQTh/7SFRL98ZdiD8Sk8zIUVOxtwq4oWcwrcd1uno9fE/zZmUaUrFNYzbH14CPebOz9tZQw==} + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + prettier-plugin-svelte@3.4.0: resolution: {integrity: sha512-pn1ra/0mPObzqoIQn/vUTR3ZZI6UuZ0sHqMK5x2jMLGrs53h0sXhkVuDcrlssHwIMk7FYrMjHBPoUSyyEEDlBQ==} peerDependencies: @@ -2928,6 +3937,10 @@ packages: engines: {node: '>=14'} hasBin: true + pretty-format@27.5.1: + resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + prism-svelte@0.4.7: resolution: {integrity: sha512-yABh19CYbM24V7aS7TuPYRNMqthxwbvx6FF/Rw920YbyBWO3tnyPIqRMgHuSVsLmuHkkBS1Akyof463FVdkeDQ==} @@ -2941,11 +3954,15 @@ packages: resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} engines: {node: '>=6'} + property-information@6.5.0: + resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + property-information@7.1.0: resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==} - quansync@0.2.10: - resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==} + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} quansync@0.2.11: resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==} @@ -2953,6 +3970,12 @@ packages: queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + + react-is@17.0.2: + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + read-yaml-file@1.1.0: resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} engines: {node: '>=6'} @@ -2974,13 +3997,44 @@ packages: resolution: {integrity: sha512-RSYAtP31mvYLkAHrOlh25pCNQ5hWnT106VukGaaFfuJrZFkGRX5GhUAdPqpSDXxOhA2c4akmRuplv1mRqnBn6Q==} engines: {node: '>=8'} + rehype-parse@9.0.1: + resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==} + + rehype-pretty-code@0.14.1: + resolution: {integrity: sha512-IpG4OL0iYlbx78muVldsK86hdfNoht0z63AP7sekQNW2QOTmjxB7RbTO+rhIYNGRljgHxgVZoPwUl6bIC9SbjA==} + engines: {node: '>=18'} + peerDependencies: + shiki: ^1.0.0 || ^2.0.0 || ^3.0.0 + + rehype-raw@7.0.0: + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} + rehype-slug@6.0.0: resolution: {integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==} + rehype-stringify@10.0.1: + resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==} + + remark-gfm@4.0.1: + resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} + + remark-parse@11.0.0: + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} + + remark-rehype@11.1.2: + resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==} + + remark-stringify@11.0.0: + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} + require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + resolve-from@5.0.0: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} @@ -3066,14 +4120,24 @@ packages: resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} engines: {node: '>=6'} + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - semver@7.7.2: + section-matter@1.0.0: + resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} + engines: {node: '>=4'} + + semver@7.7.2: resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} engines: {node: '>=10'} hasBin: true + serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + set-cookie-parser@2.7.1: resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==} @@ -3169,6 +4233,10 @@ packages: resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} engines: {node: '>=12'} + strip-bom-string@1.0.0: + resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} + engines: {node: '>=0.10.0'} + strip-bom@3.0.0: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} engines: {node: '>=4'} @@ -3177,6 +4245,10 @@ packages: resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} engines: {node: '>=8'} + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + strip-literal@3.0.0: resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==} @@ -3187,6 +4259,10 @@ packages: resolution: {integrity: sha512-5eG9FQjEjDbAlI5+kdpdyPIBMRH4GfTVDGREVupaZHmVoppknhM29b/S9BkQz7cathp85BVgRi/As3Siln7e0Q==} engines: {node: '>=18'} + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + supports-preserve-symlinks-flag@1.0.0: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} @@ -3203,6 +4279,23 @@ packages: svelte: ^4.0.0 || ^5.0.0-next.0 typescript: '>=5.0.0' + svelte-check@4.3.2: + resolution: {integrity: sha512-71udP5w2kaSTcX8iV0hn3o2FWlabQHhJTJLIQrCqMsrcOeDUO2VhCQKKCA8AMVHSPwdxLEWkUWh9OKxns5PD9w==} + engines: {node: '>= 18.0.0'} + hasBin: true + peerDependencies: + svelte: ^4.0.0 || ^5.0.0-next.0 + typescript: '>=5.0.0' + + svelte-eslint-parser@1.3.3: + resolution: {integrity: sha512-oTrDR8Z7Wnguut7QH3YKh7JR19xv1seB/bz4dxU5J/86eJtZOU4eh0/jZq4dy6tAlz/KROxnkRQspv5ZEt7t+Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + svelte: ^3.37.0 || ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + svelte: + optional: true + svelte-json-tree@2.2.0: resolution: {integrity: sha512-zcfepTrJ6xhpdgRZEujmiFh+ainRw7HO4Bsoh8PMAsm7fkgUPtnrZi3An8tmCFY8jajYhMrauHsd1S1XTeuiCw==} peerDependencies: @@ -3267,6 +4360,11 @@ packages: peerDependencies: svelte: ^3.56.0 || ^4.0.0 || ^5.0.0 + svelte-ux@2.0.0-next.20: + resolution: {integrity: sha512-ch3q7QTkTuNV8gjx5azBDPD72+kDlBTTo0+WbuS1h0oFR+nqAk3H7tn08ygSFCyvPzj68SmNWyHoX7Y9EX7V5A==} + peerDependencies: + svelte: ^3.56.0 || ^4.0.0 || ^5.0.0 + svelte2tsx@0.7.42: resolution: {integrity: sha512-PSNrKS16aVdAajoFjpF5M0t6TA7ha7GcKbBajD9RG3M+vooAuvLnWAGUSC6eJL4zEOVbOWKtcS2BuY4rxPljoA==} peerDependencies: @@ -3281,6 +4379,10 @@ packages: resolution: {integrity: sha512-iAcp/oFAWauVSGILdD67n7DiwgLHXZzWZIdzl7araRxu72jUr7PFAo2Iie7gXt0IbnlYvhxCb9GT3ZJUquO3PA==} engines: {node: '>=18'} + svelte@5.39.9: + resolution: {integrity: sha512-sVOie0sbU9F/Lh0IoUfaq9hLzujRKxiL7xTMbG0y8ROx/qErtbfmm6sLSlJUbUMW4NcIgqHQPFiHX4LakA8fzA==} + engines: {node: '>=18'} + tabbable@6.2.0: resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==} @@ -3303,6 +4405,9 @@ packages: tailwindcss@4.1.12: resolution: {integrity: sha512-DzFtxOi+7NsFf7DBtI3BJsynR+0Yp6etH+nRPTbpWnS2pZBaSksv/JGctNwSWzbFjp0vxSqknaUylseZqMDGrA==} + tailwindcss@4.1.14: + resolution: {integrity: sha512-b7pCxjGO98LnxVkKjaZSDeNuljC4ueKUddjENJOADtubtdo8llTaJy7HwBMeLNSSo2N5QIAgklslK1+Ir8r6CA==} + tapable@2.2.2: resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==} engines: {node: '>=6'} @@ -3311,6 +4416,10 @@ packages: resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==} engines: {node: '>=18'} + tar@7.5.1: + resolution: {integrity: sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==} + engines: {node: '>=18'} + term-size@2.2.1: resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} engines: {node: '>=8'} @@ -3332,6 +4441,10 @@ packages: resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} engines: {node: '>=12.0.0'} + tinyglobby@0.2.15: + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} + engines: {node: '>=12.0.0'} + tinypool@1.1.1: resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} engines: {node: ^18.0.0 || >=20.0.0} @@ -3370,12 +4483,32 @@ packages: trim-lines@3.0.1: resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + trough@2.2.0: + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + + ts-api-utils@2.1.0: + resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + tslib@2.8.1: resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} tw-animate-css@1.3.8: resolution: {integrity: sha512-Qrk3PZ7l7wUcGYhwZloqfkWCmaXZAoqjkdbIDvzfGshwGtexa/DAs9koXxIkrpEasyevandomzCBAV1Yyop5rw==} + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + typescript-eslint@8.46.0: + resolution: {integrity: sha512-6+ZrB6y2bT2DX3K+Qd9vn7OFOJR+xSLDj+Aw/N3zBwUt27uTw2sw2TE2+UcY1RiyBZkaGbTkVg9SSdPNUG6aUw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + typescript@5.9.2: resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==} engines: {node: '>=14.17'} @@ -3384,6 +4517,9 @@ packages: ufo@1.6.1: resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} + undici-types@6.21.0: + resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} + undici-types@7.10.0: resolution: {integrity: sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==} @@ -3397,6 +4533,12 @@ packages: unenv@2.0.0-rc.19: resolution: {integrity: sha512-t/OMHBNAkknVCI7bVB9OWjUUAwhVv9vsPIAGnNUxnu3FxPQN11rjh0sksLMzc3g7IlTgvHmOTl4JM7JHpcv5wA==} + unified@11.0.5: + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} + + unist-builder@4.0.0: + resolution: {integrity: sha512-wmRFnH+BLpZnTKpc5L7O67Kac89s9HMrtELpnNaE6TAobq5DTZZs5YaTQfAZBA9bFPECx2uVAPO31c+GVug8mg==} + unist-util-is@6.0.0: resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} @@ -3446,6 +4588,9 @@ packages: resolution: {integrity: sha512-RyWSb5AHmGtjjNQ6gIlA67sHOsWpsbWpwDokLwTcejVdOjEkJZh7QKu14J00gDDVSh8kGH4KYC/TNBceXFZhtw==} engines: {node: '>=18.12.0'} + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + us-atlas@3.0.1: resolution: {integrity: sha512-wEIZCq0ImPvGblTd8gZMqNNCPkQshugMUG/8nkSWXb02+XqNFREg9atHOKP9w6prLZTpqcLhSvdBW81MkV3/0Q==} @@ -3456,6 +4601,9 @@ packages: resolution: {integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==} hasBin: true + vfile-location@5.0.3: + resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} + vfile-message@2.0.4: resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} @@ -3515,6 +4663,46 @@ packages: yaml: optional: true + vite@7.1.9: + resolution: {integrity: sha512-4nVGliEpxmhCL8DslSAUdxlB6+SMrhB0a1v5ijlh1xB1nEPuy1mxaHxysVucLHuWryAxLWg6a5ei+U4TLn/rFg==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + jiti: '>=1.21.0' + less: ^4.0.0 + lightningcss: ^1.21.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + vitefu@1.1.1: resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==} peerDependencies: @@ -3523,6 +4711,14 @@ packages: vite: optional: true + vitest-browser-svelte@1.1.0: + resolution: {integrity: sha512-o98mCzKkWBjvmaGzi69rvyBd1IJ7zFPGI0jcID9vI4F5DmdG//YxkIbeQ7TS27hAVR+MULnBZNja2DUiuUBZyA==} + engines: {node: ^18.0.0 || >=20.0.0} + peerDependencies: + '@vitest/browser': ^2.1.0 || ^3.0.0 || ^4.0.0-0 + svelte: ^3 || ^4 || ^5 || ^5.0.0-next.0 + vitest: ^2.1.0 || ^3.0.0 || ^4.0.0-0 + vitest@3.2.4: resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} @@ -3551,6 +4747,9 @@ packages: jsdom: optional: true + web-namespaces@2.0.1: + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} + web-vitals@4.2.4: resolution: {integrity: sha512-r4DIlprAGwJ7YM11VZp4R884m0Vmgr6EAKe3P+kO0PPj3Unqyvv59rczf6UiGcb9Z8QxZVcqKNwv/g0WNdWwsw==} @@ -3573,6 +4772,10 @@ packages: engines: {node: '>=8'} hasBin: true + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + workerd@1.20250813.0: resolution: {integrity: sha512-bDlPGSnb/KESpGFE57cDjgP8mEKDM4WBTd/uGJBsQYCB6Aokk1eK3ivtHoxFx3MfJNo3v6/hJy6KK1b6rw1gvg==} engines: {node: '>=16'} @@ -3612,6 +4815,18 @@ packages: utf-8-validate: optional: true + ws@8.18.3: + resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + y18n@5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} @@ -3620,6 +4835,10 @@ packages: resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} engines: {node: '>=18'} + yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + yaml@2.8.1: resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==} engines: {node: '>= 14.6'} @@ -3633,6 +4852,14 @@ packages: resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} engines: {node: '>=12'} + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + yocto-queue@1.2.1: + resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==} + engines: {node: '>=12.20'} + youch-core@0.3.3: resolution: {integrity: sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==} @@ -3648,6 +4875,9 @@ packages: zod@3.25.64: resolution: {integrity: sha512-hbP9FpSZf7pkS7hRVUrOjhwKJNyampPgtXKc3AN6DsWtoHsg2Sb4SQaS4Tcay380zSwd2VPo9G9180emBACp5g==} + zod@4.1.12: + resolution: {integrity: sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==} + zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -3665,6 +4895,14 @@ snapshots: '@antfu/utils@8.1.1': {} + '@babel/code-frame@7.27.1': + dependencies: + '@babel/helper-validator-identifier': 7.27.1 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/helper-validator-identifier@7.27.1': {} + '@babel/runtime@7.28.3': {} '@changesets/apply-release-plan@7.0.12': @@ -3845,6 +5083,43 @@ snapshots: '@cloudflare/workers-types@4.20250816.0': {} + '@content-collections/core@0.11.1(typescript@5.9.2)': + dependencies: + '@standard-schema/spec': 1.0.0 + camelcase: 8.0.0 + chokidar: 4.0.3 + esbuild: 0.25.8 + gray-matter: 4.0.3 + p-limit: 6.2.0 + picomatch: 4.0.3 + pluralize: 8.0.0 + serialize-javascript: 6.0.2 + tinyglobby: 0.2.15 + typescript: 5.9.2 + yaml: 2.8.1 + zod: 3.25.64 + + '@content-collections/integrations@0.3.0(@content-collections/core@0.11.1(typescript@5.9.2))': + dependencies: + '@content-collections/core': 0.11.1(typescript@5.9.2) + + '@content-collections/markdown@0.1.4(@content-collections/core@0.11.1(typescript@5.9.2))': + dependencies: + '@content-collections/core': 0.11.1(typescript@5.9.2) + rehype-raw: 7.0.0 + rehype-stringify: 10.0.1 + remark-parse: 11.0.0 + remark-rehype: 11.1.2 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + '@content-collections/vite@0.2.7(@content-collections/core@0.11.1(typescript@5.9.2))(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))': + dependencies: + '@content-collections/core': 0.11.1(typescript@5.9.2) + '@content-collections/integrations': 0.3.0(@content-collections/core@0.11.1(typescript@5.9.2)) + vite: 7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + '@cspotcode/source-map-support@0.8.1': dependencies: '@jridgewell/trace-mapping': 0.3.9 @@ -4013,6 +5288,58 @@ snapshots: '@esbuild/win32-x64@0.25.8': optional: true + '@eslint-community/eslint-utils@4.9.0(eslint@9.37.0(jiti@2.6.1))': + dependencies: + eslint: 9.37.0(jiti@2.6.1) + eslint-visitor-keys: 3.4.3 + + '@eslint-community/regexpp@4.12.1': {} + + '@eslint/compat@1.4.0(eslint@9.37.0(jiti@2.6.1))': + dependencies: + '@eslint/core': 0.16.0 + optionalDependencies: + eslint: 9.37.0(jiti@2.6.1) + + '@eslint/config-array@0.21.0': + dependencies: + '@eslint/object-schema': 2.1.6 + debug: 4.4.1 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/config-helpers@0.4.0': + dependencies: + '@eslint/core': 0.16.0 + + '@eslint/core@0.16.0': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/eslintrc@3.3.1': + dependencies: + ajv: 6.12.6 + debug: 4.4.1 + espree: 10.4.0 + globals: 14.0.0 + ignore: 5.3.2 + import-fresh: 3.3.1 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + '@eslint/js@9.37.0': {} + + '@eslint/object-schema@2.1.6': {} + + '@eslint/plugin-kit@0.4.0': + dependencies: + '@eslint/core': 0.16.0 + levn: 0.4.1 + '@floating-ui/core@1.7.1': dependencies: '@floating-ui/utils': 0.2.9 @@ -4040,6 +5367,17 @@ snapshots: '@floating-ui/utils@0.2.9': {} + '@humanfs/core@0.19.1': {} + + '@humanfs/node@0.16.7': + dependencies: + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.4.3 + + '@humanwhocodes/module-importer@1.0.1': {} + + '@humanwhocodes/retry@0.4.3': {} + '@iconify-json/lucide@1.2.62': dependencies: '@iconify/types': 2.0.0 @@ -4188,6 +5526,12 @@ snapshots: '@layerstack/utils': 2.0.0-next.14 d3-scale: 4.0.2 + '@layerstack/svelte-actions@1.0.1-next.16': + dependencies: + '@floating-ui/dom': 1.7.4 + '@layerstack/utils': 2.0.0-next.16 + d3-scale: 4.0.2 + '@layerstack/svelte-state@0.1.0-next.19': dependencies: '@layerstack/utils': 2.0.0-next.14 @@ -4199,6 +5543,13 @@ snapshots: lodash-es: 4.17.21 zod: 3.25.64 + '@layerstack/svelte-stores@1.0.2-next.16': + dependencies: + '@layerstack/utils': 2.0.0-next.16 + immer: 10.1.3 + lodash-es: 4.17.21 + zod: 3.25.64 + '@layerstack/svelte-table@1.0.1-next.14': dependencies: '@layerstack/svelte-actions': 1.0.1-next.14 @@ -4206,6 +5557,13 @@ snapshots: d3-array: 3.2.4 lodash-es: 4.17.21 + '@layerstack/svelte-table@1.0.1-next.16': + dependencies: + '@layerstack/svelte-actions': 1.0.1-next.16 + '@layerstack/utils': 2.0.0-next.16 + d3-array: 3.2.4 + lodash-es: 4.17.21 + '@layerstack/tailwind@2.0.0-next.17': dependencies: '@layerstack/utils': 2.0.0-next.14 @@ -4222,6 +5580,14 @@ snapshots: lodash-es: 4.17.21 tailwind-merge: 3.3.1 + '@layerstack/tailwind@2.0.0-next.19': + dependencies: + '@layerstack/utils': 2.0.0-next.16 + clsx: 2.1.1 + d3-array: 3.2.4 + lodash-es: 4.17.21 + tailwind-merge: 3.3.1 + '@layerstack/utils@2.0.0-next.14': dependencies: d3-array: 3.2.4 @@ -4236,6 +5602,13 @@ snapshots: d3-time-format: 4.1.0 lodash-es: 4.17.21 + '@layerstack/utils@2.0.0-next.16': + dependencies: + d3-array: 3.2.4 + d3-time: 3.1.0 + d3-time-format: 4.1.0 + lodash-es: 4.17.21 + '@lucide/svelte@0.534.0(svelte@5.38.2)': dependencies: svelte: 5.38.2 @@ -4248,6 +5621,10 @@ snapshots: dependencies: svelte: 5.38.2 + '@lucide/svelte@0.544.0(svelte@5.39.9)': + dependencies: + svelte: 5.39.9 + '@manypkg/find-root@1.1.0': dependencies: '@babel/runtime': 7.28.3 @@ -4279,6 +5656,10 @@ snapshots: '@pkgjs/parseargs@0.11.0': optional: true + '@playwright/test@1.56.0': + dependencies: + playwright: 1.56.0 + '@polka/url@1.0.0-next.29': {} '@poppinss/colors@4.1.5': @@ -4293,15 +5674,15 @@ snapshots: '@poppinss/exception@1.2.2': {} - '@rollup/plugin-dsv@3.0.5(rollup@2.79.2)': + '@rollup/plugin-dsv@3.0.5(rollup@4.46.2)': dependencies: - '@rollup/pluginutils': 5.1.2(rollup@2.79.2) + '@rollup/pluginutils': 5.1.2(rollup@4.46.2) '@types/d3-dsv': 3.0.7 d3-dsv: 2.0.0 strip-bom: 4.0.0 tosource: 2.0.0-alpha.3 optionalDependencies: - rollup: 2.79.2 + rollup: 4.46.2 '@rollup/plugin-node-resolve@13.3.0(rollup@2.79.2)': dependencies: @@ -4325,13 +5706,13 @@ snapshots: estree-walker: 2.0.2 picomatch: 2.3.1 - '@rollup/pluginutils@5.1.2(rollup@2.79.2)': + '@rollup/pluginutils@5.1.2(rollup@4.46.2)': dependencies: '@types/estree': 1.0.8 estree-walker: 2.0.2 picomatch: 2.3.1 optionalDependencies: - rollup: 2.79.2 + rollup: 4.46.2 '@rollup/rollup-android-arm-eabi@4.46.2': optional: true @@ -4461,18 +5842,25 @@ snapshots: dependencies: acorn: 8.15.0 - '@sveltejs/adapter-cloudflare@7.2.1(@sveltejs/kit@2.31.1(@sveltejs/vite-plugin-svelte@6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1)))(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1)))(wrangler@4.30.0(@cloudflare/workers-types@4.20250816.0))': + '@sveltejs/adapter-cloudflare@7.2.1(@sveltejs/kit@2.31.1(@sveltejs/vite-plugin-svelte@6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)))(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)))(wrangler@4.30.0(@cloudflare/workers-types@4.20250816.0))': + dependencies: + '@cloudflare/workers-types': 4.20250816.0 + '@sveltejs/kit': 2.31.1(@sveltejs/vite-plugin-svelte@6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)))(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)) + worktop: 0.8.0-next.18 + wrangler: 4.30.0(@cloudflare/workers-types@4.20250816.0) + + '@sveltejs/adapter-cloudflare@7.2.4(@sveltejs/kit@2.46.0(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.39.9)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)))(svelte@5.39.9)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)))(wrangler@4.30.0(@cloudflare/workers-types@4.20250816.0))': dependencies: '@cloudflare/workers-types': 4.20250816.0 - '@sveltejs/kit': 2.31.1(@sveltejs/vite-plugin-svelte@6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1)))(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1)) + '@sveltejs/kit': 2.46.0(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.39.9)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)))(svelte@5.39.9)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)) worktop: 0.8.0-next.18 wrangler: 4.30.0(@cloudflare/workers-types@4.20250816.0) - '@sveltejs/kit@2.31.1(@sveltejs/vite-plugin-svelte@6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1)))(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1))': + '@sveltejs/kit@2.31.1(@sveltejs/vite-plugin-svelte@6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)))(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))': dependencies: '@standard-schema/spec': 1.0.0 '@sveltejs/acorn-typescript': 1.0.5(acorn@8.15.0) - '@sveltejs/vite-plugin-svelte': 6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1)) + '@sveltejs/vite-plugin-svelte': 6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)) '@types/cookie': 0.6.0 acorn: 8.15.0 cookie: 0.6.0 @@ -4485,7 +5873,26 @@ snapshots: set-cookie-parser: 2.7.1 sirv: 3.0.1 svelte: 5.38.2 - vite: 7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1) + vite: 7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + + '@sveltejs/kit@2.46.0(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.39.9)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)))(svelte@5.39.9)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))': + dependencies: + '@standard-schema/spec': 1.0.0 + '@sveltejs/acorn-typescript': 1.0.5(acorn@8.15.0) + '@sveltejs/vite-plugin-svelte': 6.2.1(svelte@5.39.9)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)) + '@types/cookie': 0.6.0 + acorn: 8.15.0 + cookie: 0.6.0 + devalue: 5.3.2 + esm-env: 1.2.2 + kleur: 4.1.5 + magic-string: 0.30.19 + mrmime: 2.0.1 + sade: 1.8.1 + set-cookie-parser: 2.7.1 + sirv: 3.0.1 + svelte: 5.39.9 + vite: 7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) '@sveltejs/package@2.4.1(svelte@5.38.2)(typescript@5.9.2)': dependencies: @@ -4498,25 +5905,50 @@ snapshots: transitivePeerDependencies: - typescript - '@sveltejs/vite-plugin-svelte-inspector@5.0.0(@sveltejs/vite-plugin-svelte@6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1)))(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1))': + '@sveltejs/svelte-json-tree@2.2.1(svelte@5.39.9)': + dependencies: + svelte: 5.39.9 + + '@sveltejs/vite-plugin-svelte-inspector@5.0.0(@sveltejs/vite-plugin-svelte@6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)))(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))': dependencies: - '@sveltejs/vite-plugin-svelte': 6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1)) + '@sveltejs/vite-plugin-svelte': 6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)) debug: 4.4.1 svelte: 5.38.2 - vite: 7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1) + vite: 7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + transitivePeerDependencies: + - supports-color + + '@sveltejs/vite-plugin-svelte-inspector@5.0.0(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.39.9)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)))(svelte@5.39.9)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))': + dependencies: + '@sveltejs/vite-plugin-svelte': 6.2.1(svelte@5.39.9)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)) + debug: 4.4.1 + svelte: 5.39.9 + vite: 7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@sveltejs/vite-plugin-svelte@6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1))': + '@sveltejs/vite-plugin-svelte@6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))': dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 5.0.0(@sveltejs/vite-plugin-svelte@6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1)))(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1)) + '@sveltejs/vite-plugin-svelte-inspector': 5.0.0(@sveltejs/vite-plugin-svelte@6.1.2(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)))(svelte@5.38.2)(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)) debug: 4.4.1 deepmerge: 4.3.1 kleur: 4.1.5 magic-string: 0.30.17 svelte: 5.38.2 - vite: 7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1) - vitefu: 1.1.1(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1)) + vite: 7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + vitefu: 1.1.1(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)) + transitivePeerDependencies: + - supports-color + + '@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.39.9)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))': + dependencies: + '@sveltejs/vite-plugin-svelte-inspector': 5.0.0(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.39.9)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)))(svelte@5.39.9)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)) + debug: 4.4.1 + deepmerge: 4.3.1 + magic-string: 0.30.19 + svelte: 5.39.9 + vite: 7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + vitefu: 1.1.1(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)) transitivePeerDependencies: - supports-color @@ -4541,42 +5973,88 @@ snapshots: source-map-js: 1.2.1 tailwindcss: 4.1.12 + '@tailwindcss/node@4.1.14': + dependencies: + '@jridgewell/remapping': 2.3.5 + enhanced-resolve: 5.18.3 + jiti: 2.6.1 + lightningcss: 1.30.1 + magic-string: 0.30.19 + source-map-js: 1.2.1 + tailwindcss: 4.1.14 + '@tailwindcss/oxide-android-arm64@4.1.12': optional: true + '@tailwindcss/oxide-android-arm64@4.1.14': + optional: true + '@tailwindcss/oxide-darwin-arm64@4.1.12': optional: true + '@tailwindcss/oxide-darwin-arm64@4.1.14': + optional: true + '@tailwindcss/oxide-darwin-x64@4.1.12': optional: true + '@tailwindcss/oxide-darwin-x64@4.1.14': + optional: true + '@tailwindcss/oxide-freebsd-x64@4.1.12': optional: true + '@tailwindcss/oxide-freebsd-x64@4.1.14': + optional: true + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.12': optional: true + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.14': + optional: true + '@tailwindcss/oxide-linux-arm64-gnu@4.1.12': optional: true + '@tailwindcss/oxide-linux-arm64-gnu@4.1.14': + optional: true + '@tailwindcss/oxide-linux-arm64-musl@4.1.12': optional: true + '@tailwindcss/oxide-linux-arm64-musl@4.1.14': + optional: true + '@tailwindcss/oxide-linux-x64-gnu@4.1.12': optional: true + '@tailwindcss/oxide-linux-x64-gnu@4.1.14': + optional: true + '@tailwindcss/oxide-linux-x64-musl@4.1.12': optional: true + '@tailwindcss/oxide-linux-x64-musl@4.1.14': + optional: true + '@tailwindcss/oxide-wasm32-wasi@4.1.12': optional: true + '@tailwindcss/oxide-wasm32-wasi@4.1.14': + optional: true + '@tailwindcss/oxide-win32-arm64-msvc@4.1.12': optional: true + '@tailwindcss/oxide-win32-arm64-msvc@4.1.14': + optional: true + '@tailwindcss/oxide-win32-x64-msvc@4.1.12': optional: true + '@tailwindcss/oxide-win32-x64-msvc@4.1.14': + optional: true + '@tailwindcss/oxide@4.1.12': dependencies: detect-libc: 2.0.4 @@ -4595,6 +6073,24 @@ snapshots: '@tailwindcss/oxide-win32-arm64-msvc': 4.1.12 '@tailwindcss/oxide-win32-x64-msvc': 4.1.12 + '@tailwindcss/oxide@4.1.14': + dependencies: + detect-libc: 2.0.4 + tar: 7.5.1 + optionalDependencies: + '@tailwindcss/oxide-android-arm64': 4.1.14 + '@tailwindcss/oxide-darwin-arm64': 4.1.14 + '@tailwindcss/oxide-darwin-x64': 4.1.14 + '@tailwindcss/oxide-freebsd-x64': 4.1.14 + '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.14 + '@tailwindcss/oxide-linux-arm64-gnu': 4.1.14 + '@tailwindcss/oxide-linux-arm64-musl': 4.1.14 + '@tailwindcss/oxide-linux-x64-gnu': 4.1.14 + '@tailwindcss/oxide-linux-x64-musl': 4.1.14 + '@tailwindcss/oxide-wasm32-wasi': 4.1.14 + '@tailwindcss/oxide-win32-arm64-msvc': 4.1.14 + '@tailwindcss/oxide-win32-x64-msvc': 4.1.14 + '@tailwindcss/typography@0.5.16(tailwindcss@4.1.12)': dependencies: lodash.castarray: 4.4.0 @@ -4603,18 +6099,42 @@ snapshots: postcss-selector-parser: 6.0.10 tailwindcss: 4.1.12 - '@tailwindcss/vite@4.1.12(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1))': + '@tailwindcss/vite@4.1.12(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))': dependencies: '@tailwindcss/node': 4.1.12 '@tailwindcss/oxide': 4.1.12 tailwindcss: 4.1.12 - vite: 7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1) + vite: 7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) - '@types/chai@5.2.2': + '@tailwindcss/vite@4.1.14(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))': dependencies: - '@types/deep-eql': 4.0.2 + '@tailwindcss/node': 4.1.14 + '@tailwindcss/oxide': 4.1.14 + tailwindcss: 4.1.14 + vite: 7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) - '@types/cookie@0.6.0': {} + '@testing-library/dom@10.4.1': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/runtime': 7.28.3 + '@types/aria-query': 5.0.4 + aria-query: 5.3.0 + dom-accessibility-api: 0.5.16 + lz-string: 1.5.0 + picocolors: 1.1.1 + pretty-format: 27.5.1 + + '@testing-library/user-event@14.6.1(@testing-library/dom@10.4.1)': + dependencies: + '@testing-library/dom': 10.4.1 + + '@types/aria-query@5.0.4': {} + + '@types/chai@5.2.2': + dependencies: + '@types/deep-eql': 4.0.2 + + '@types/cookie@0.6.0': {} '@types/d3-array@3.2.1': {} @@ -4745,6 +6265,10 @@ snapshots: '@types/d3-transition': 3.0.9 '@types/d3-zoom': 3.0.8 + '@types/debug@4.1.12': + dependencies: + '@types/ms': 2.1.0 + '@types/deep-eql@4.0.2': {} '@types/estree@0.0.39': {} @@ -4757,6 +6281,8 @@ snapshots: dependencies: '@types/unist': 3.0.2 + '@types/json-schema@7.0.15': {} + '@types/lodash-es@4.17.12': dependencies: '@types/lodash': 4.17.4 @@ -4767,8 +6293,14 @@ snapshots: dependencies: '@types/unist': 3.0.2 + '@types/ms@2.1.0': {} + '@types/node@12.20.55': {} + '@types/node@22.18.8': + dependencies: + undici-types: 6.21.0 + '@types/node@24.0.1': dependencies: undici-types: 7.8.0 @@ -4780,7 +6312,7 @@ snapshots: '@types/resolve@1.17.1': dependencies: - '@types/node': 24.0.1 + '@types/node': 22.18.8 '@types/shapefile@0.6.4': dependencies: @@ -4805,8 +6337,140 @@ snapshots: '@types/unist@3.0.2': {} + '@typescript-eslint/eslint-plugin@8.46.0(@typescript-eslint/parser@8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.2))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.2)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.2) + '@typescript-eslint/scope-manager': 8.46.0 + '@typescript-eslint/type-utils': 8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.2) + '@typescript-eslint/utils': 8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.2) + '@typescript-eslint/visitor-keys': 8.46.0 + eslint: 9.37.0(jiti@2.6.1) + graphemer: 1.4.0 + ignore: 7.0.5 + natural-compare: 1.4.0 + ts-api-utils: 2.1.0(typescript@5.9.2) + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.2)': + dependencies: + '@typescript-eslint/scope-manager': 8.46.0 + '@typescript-eslint/types': 8.46.0 + '@typescript-eslint/typescript-estree': 8.46.0(typescript@5.9.2) + '@typescript-eslint/visitor-keys': 8.46.0 + debug: 4.4.1 + eslint: 9.37.0(jiti@2.6.1) + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/project-service@8.46.0(typescript@5.9.2)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.46.0(typescript@5.9.2) + '@typescript-eslint/types': 8.46.0 + debug: 4.4.1 + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/scope-manager@8.46.0': + dependencies: + '@typescript-eslint/types': 8.46.0 + '@typescript-eslint/visitor-keys': 8.46.0 + + '@typescript-eslint/tsconfig-utils@8.46.0(typescript@5.9.2)': + dependencies: + typescript: 5.9.2 + + '@typescript-eslint/type-utils@8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.2)': + dependencies: + '@typescript-eslint/types': 8.46.0 + '@typescript-eslint/typescript-estree': 8.46.0(typescript@5.9.2) + '@typescript-eslint/utils': 8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.2) + debug: 4.4.1 + eslint: 9.37.0(jiti@2.6.1) + ts-api-utils: 2.1.0(typescript@5.9.2) + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/types@8.46.0': {} + + '@typescript-eslint/typescript-estree@8.46.0(typescript@5.9.2)': + dependencies: + '@typescript-eslint/project-service': 8.46.0(typescript@5.9.2) + '@typescript-eslint/tsconfig-utils': 8.46.0(typescript@5.9.2) + '@typescript-eslint/types': 8.46.0 + '@typescript-eslint/visitor-keys': 8.46.0 + debug: 4.4.1 + fast-glob: 3.3.3 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.7.2 + ts-api-utils: 2.1.0(typescript@5.9.2) + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.2)': + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.6.1)) + '@typescript-eslint/scope-manager': 8.46.0 + '@typescript-eslint/types': 8.46.0 + '@typescript-eslint/typescript-estree': 8.46.0(typescript@5.9.2) + eslint: 9.37.0(jiti@2.6.1) + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/visitor-keys@8.46.0': + dependencies: + '@typescript-eslint/types': 8.46.0 + eslint-visitor-keys: 4.2.1 + '@ungap/structured-clone@1.3.0': {} + '@vitest/browser@3.2.4(playwright@1.56.0)(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))(vitest@3.2.4)': + dependencies: + '@testing-library/dom': 10.4.1 + '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1) + '@vitest/mocker': 3.2.4(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)) + '@vitest/utils': 3.2.4 + magic-string: 0.30.19 + sirv: 3.0.1 + tinyrainbow: 2.0.0 + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.3.0)(@vitest/browser@3.2.4)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + ws: 8.18.3 + optionalDependencies: + playwright: 1.56.0 + transitivePeerDependencies: + - bufferutil + - msw + - utf-8-validate + - vite + optional: true + + '@vitest/browser@3.2.4(playwright@1.56.0)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))(vitest@3.2.4)': + dependencies: + '@testing-library/dom': 10.4.1 + '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1) + '@vitest/mocker': 3.2.4(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)) + '@vitest/utils': 3.2.4 + magic-string: 0.30.19 + sirv: 3.0.1 + tinyrainbow: 2.0.0 + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(@vitest/browser@3.2.4)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + ws: 8.18.3 + optionalDependencies: + playwright: 1.56.0 + transitivePeerDependencies: + - bufferutil + - msw + - utf-8-validate + - vite + '@vitest/expect@3.2.4': dependencies: '@types/chai': 5.2.2 @@ -4815,13 +6479,30 @@ snapshots: chai: 5.2.1 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 - magic-string: 0.30.17 + magic-string: 0.30.19 + optionalDependencies: + vite: 7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + optional: true + + '@vitest/mocker@3.2.4(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))': + dependencies: + '@vitest/spy': 3.2.4 + estree-walker: 3.0.3 + magic-string: 0.30.19 optionalDependencies: - vite: 7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1) + vite: 7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + + '@vitest/mocker@3.2.4(vite@7.1.9(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))': + dependencies: + '@vitest/spy': 3.2.4 + estree-walker: 3.0.3 + magic-string: 0.30.19 + optionalDependencies: + vite: 7.1.9(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -4836,7 +6517,7 @@ snapshots: '@vitest/snapshot@3.2.4': dependencies: '@vitest/pretty-format': 3.2.4 - magic-string: 0.30.17 + magic-string: 0.30.19 pathe: 2.0.3 '@vitest/spy@3.2.4': @@ -5073,12 +6754,23 @@ snapshots: '@zag-js/utils@1.24.2': {} + acorn-jsx@5.3.2(acorn@8.15.0): + dependencies: + acorn: 8.15.0 + acorn-walk@8.3.2: {} acorn@8.14.0: {} acorn@8.15.0: {} + ajv@6.12.6: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + ansi-colors@4.1.3: {} ansi-regex@5.0.1: {} @@ -5089,12 +6781,20 @@ snapshots: dependencies: color-convert: 2.0.1 + ansi-styles@5.2.0: {} + ansi-styles@6.2.1: {} argparse@1.0.10: dependencies: sprintf-js: 1.0.3 + argparse@2.0.1: {} + + aria-query@5.3.0: + dependencies: + dequal: 2.0.3 + aria-query@5.3.2: {} array-source@0.0.4: {} @@ -5105,6 +6805,8 @@ snapshots: axobject-query@4.1.0: {} + bail@2.0.2: {} + balanced-match@1.0.2: {} better-path-resolve@1.0.0: @@ -5124,6 +6826,11 @@ snapshots: blake3-wasm@2.1.5: {} + brace-expansion@1.1.12: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + brace-expansion@2.0.1: dependencies: balanced-match: 1.0.2 @@ -5136,6 +6843,10 @@ snapshots: cac@6.7.14: {} + callsites@3.1.0: {} + + camelcase@8.0.0: {} + ccount@2.0.1: {} chai@5.2.1: @@ -5146,10 +6857,17 @@ snapshots: loupe: 3.2.0 pathval: 2.0.1 + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + character-entities-html4@2.1.0: {} character-entities-legacy@3.0.0: {} + character-entities@2.0.2: {} + chardet@2.1.0: {} check-error@2.1.1: {} @@ -5202,6 +6920,8 @@ snapshots: comment-parser@1.4.1: {} + concat-map@0.0.1: {} + confbox@0.1.8: {} confbox@0.2.2: {} @@ -5341,10 +7061,16 @@ snapshots: dependencies: ms: 2.1.3 + decode-named-character-reference@1.2.0: + dependencies: + character-entities: 2.0.2 + dedent-js@1.0.1: {} deep-eql@5.0.2: {} + deep-is@0.1.4: {} + deepmerge@4.3.1: {} define-lazy-prop@2.0.0: {} @@ -5363,6 +7089,8 @@ snapshots: devalue@5.1.1: {} + devalue@5.3.2: {} + devlop@1.1.0: dependencies: dequal: 2.0.3 @@ -5371,6 +7099,8 @@ snapshots: dependencies: path-type: 4.0.0 + dom-accessibility-api@0.5.16: {} + dotenv@16.4.5: {} eastasianwidth@0.2.0: {} @@ -5389,6 +7119,8 @@ snapshots: ansi-colors: 4.1.3 strip-ansi: 6.0.1 + entities@6.0.1: {} + error-stack-parser-es@1.0.5: {} es-module-lexer@1.7.0: {} @@ -5452,14 +7184,111 @@ snapshots: escalade@3.2.0: {} + escape-string-regexp@4.0.0: {} + + escape-string-regexp@5.0.0: {} + + eslint-config-prettier@10.1.8(eslint@9.37.0(jiti@2.6.1)): + dependencies: + eslint: 9.37.0(jiti@2.6.1) + + eslint-plugin-svelte@3.12.4(eslint@9.37.0(jiti@2.6.1))(svelte@5.39.9): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.6.1)) + '@jridgewell/sourcemap-codec': 1.5.5 + eslint: 9.37.0(jiti@2.6.1) + esutils: 2.0.3 + globals: 16.4.0 + known-css-properties: 0.37.0 + postcss: 8.5.6 + postcss-load-config: 3.1.4(postcss@8.5.6) + postcss-safe-parser: 7.0.1(postcss@8.5.6) + semver: 7.7.2 + svelte-eslint-parser: 1.3.3(svelte@5.39.9) + optionalDependencies: + svelte: 5.39.9 + transitivePeerDependencies: + - ts-node + + eslint-scope@8.4.0: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + eslint-visitor-keys@3.4.3: {} + + eslint-visitor-keys@4.2.1: {} + + eslint@9.37.0(jiti@2.6.1): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.6.1)) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.21.0 + '@eslint/config-helpers': 0.4.0 + '@eslint/core': 0.16.0 + '@eslint/eslintrc': 3.3.1 + '@eslint/js': 9.37.0 + '@eslint/plugin-kit': 0.4.0 + '@humanfs/node': 0.16.7 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.3 + '@types/estree': 1.0.8 + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.1 + escape-string-regexp: 4.0.0 + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + esquery: 1.6.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + optionalDependencies: + jiti: 2.6.1 + transitivePeerDependencies: + - supports-color + esm-env@1.2.2: {} + espree@10.4.0: + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + eslint-visitor-keys: 4.2.1 + esprima@4.0.1: {} + esquery@1.6.0: + dependencies: + estraverse: 5.3.0 + + esrap@1.4.9: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + esrap@2.1.0: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 + esrecurse@4.3.0: + dependencies: + estraverse: 5.3.0 + + estraverse@5.3.0: {} + estree-walker@1.0.1: {} estree-walker@2.0.2: {} @@ -5468,14 +7297,24 @@ snapshots: dependencies: '@types/estree': 1.0.8 + esutils@2.0.3: {} + exit-hook@2.2.1: {} expect-type@1.2.2: {} exsolve@1.0.7: {} + extend-shallow@2.0.1: + dependencies: + is-extendable: 0.1.1 + + extend@3.0.2: {} + extendable-error@0.1.7: {} + fast-deep-equal@3.1.3: {} + fast-glob@3.3.3: dependencies: '@nodelib/fs.stat': 2.0.5 @@ -5484,6 +7323,10 @@ snapshots: merge2: 1.4.1 micromatch: 4.0.8 + fast-json-stable-stringify@2.1.0: {} + + fast-levenshtein@2.0.6: {} + fastq@1.19.1: dependencies: reusify: 1.1.0 @@ -5492,8 +7335,16 @@ snapshots: optionalDependencies: picomatch: 4.0.3 + fdir@6.5.0(picomatch@4.0.3): + optionalDependencies: + picomatch: 4.0.3 + fflate@0.4.8: {} + file-entry-cache@8.0.0: + dependencies: + flat-cache: 4.0.1 + file-source@0.6.1: dependencies: stream-source: 0.3.5 @@ -5507,6 +7358,18 @@ snapshots: locate-path: 5.0.0 path-exists: 4.0.0 + find-up@5.0.0: + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + flat-cache@4.0.1: + dependencies: + flatted: 3.3.3 + keyv: 4.5.4 + + flatted@3.3.3: {} + foreground-child@3.3.0: dependencies: cross-spawn: 7.0.6 @@ -5524,6 +7387,9 @@ snapshots: jsonfile: 4.0.0 universalify: 0.1.2 + fsevents@2.3.2: + optional: true + fsevents@2.3.3: optional: true @@ -5537,6 +7403,10 @@ snapshots: dependencies: is-glob: 4.0.3 + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + glob-to-regexp@0.4.1: {} glob@11.0.0: @@ -5548,8 +7418,12 @@ snapshots: package-json-from-dist: 1.0.0 path-scurry: 2.0.0 + globals@14.0.0: {} + globals@15.15.0: {} + globals@16.4.0: {} + globby@11.1.0: dependencies: array-union: 2.1.0 @@ -5561,14 +7435,65 @@ snapshots: graceful-fs@4.2.11: {} + graphemer@1.4.0: {} + + gray-matter@4.0.3: + dependencies: + js-yaml: 3.14.1 + kind-of: 6.0.3 + section-matter: 1.0.0 + strip-bom-string: 1.0.0 + + has-flag@4.0.0: {} + hasown@2.0.2: dependencies: function-bind: 1.1.2 + hast-util-from-html@2.0.3: + dependencies: + '@types/hast': 3.0.4 + devlop: 1.1.0 + hast-util-from-parse5: 8.0.3 + parse5: 7.3.0 + vfile: 6.0.3 + vfile-message: 4.0.3 + + hast-util-from-parse5@8.0.3: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.2 + devlop: 1.1.0 + hastscript: 9.0.1 + property-information: 7.1.0 + vfile: 6.0.3 + vfile-location: 5.0.3 + web-namespaces: 2.0.1 + hast-util-heading-rank@3.0.0: dependencies: '@types/hast': 3.0.4 + hast-util-parse-selector@4.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-raw@9.1.0: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.2 + '@ungap/structured-clone': 1.3.0 + hast-util-from-parse5: 8.0.3 + hast-util-to-parse5: 8.0.0 + html-void-elements: 3.0.0 + mdast-util-to-hast: 13.2.0 + parse5: 7.3.0 + unist-util-position: 5.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.3 + web-namespaces: 2.0.1 + zwitch: 2.0.4 + hast-util-to-html@9.0.5: dependencies: '@types/hast': 3.0.4 @@ -5583,6 +7508,16 @@ snapshots: stringify-entities: 4.0.4 zwitch: 2.0.4 + hast-util-to-parse5@8.0.0: + dependencies: + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + property-information: 6.5.0 + space-separated-tokens: 2.0.2 + web-namespaces: 2.0.1 + zwitch: 2.0.4 + hast-util-to-string@3.0.0: dependencies: '@types/hast': 3.0.4 @@ -5591,6 +7526,14 @@ snapshots: dependencies: '@types/hast': 3.0.4 + hastscript@9.0.1: + dependencies: + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + hast-util-parse-selector: 4.0.0 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + html-void-elements@3.0.0: {} human-id@4.1.1: {} @@ -5605,8 +7548,19 @@ snapshots: ignore@5.3.2: {} + ignore@7.0.5: {} + immer@10.1.1: {} + immer@10.1.3: {} + + import-fresh@3.3.1: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + imurmurhash@0.1.4: {} + inline-style-parser@0.2.4: {} internmap@1.0.1: {} @@ -5625,6 +7579,8 @@ snapshots: is-docker@2.2.1: {} + is-extendable@0.1.1: {} + is-extglob@2.1.1: {} is-fullwidth-code-point@3.0.0: {} @@ -5637,6 +7593,8 @@ snapshots: is-number@7.0.0: {} + is-plain-obj@4.1.0: {} + is-reference@3.0.3: dependencies: '@types/estree': 1.0.8 @@ -5661,6 +7619,10 @@ snapshots: jiti@2.5.1: {} + jiti@2.6.1: {} + + js-tokens@4.0.0: {} + js-tokens@9.0.1: {} js-yaml@3.14.1: @@ -5668,14 +7630,37 @@ snapshots: argparse: 1.0.10 esprima: 4.0.1 + js-yaml@4.1.0: + dependencies: + argparse: 2.0.1 + + json-buffer@3.0.1: {} + + json-schema-traverse@0.4.1: {} + + json-stable-stringify-without-jsonify@1.0.1: {} + jsonfile@4.0.0: optionalDependencies: graceful-fs: 4.2.11 + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + kind-of@6.0.3: {} + kleur@4.1.5: {} + known-css-properties@0.37.0: {} + kolorist@1.8.0: {} + levn@0.4.1: + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + lightningcss-darwin-arm64@1.30.1: optional: true @@ -5721,6 +7706,8 @@ snapshots: lightningcss-win32-arm64-msvc: 1.30.1 lightningcss-win32-x64-msvc: 1.30.1 + lilconfig@2.1.0: {} + lilconfig@3.1.3: optional: true @@ -5728,7 +7715,7 @@ snapshots: dependencies: mlly: 1.7.4 pkg-types: 2.2.0 - quansync: 0.2.10 + quansync: 0.2.11 locate-character@3.0.0: {} @@ -5736,6 +7723,10 @@ snapshots: dependencies: p-locate: 4.1.0 + locate-path@6.0.0: + dependencies: + p-locate: 5.0.0 + lodash-es@4.17.21: {} lodash.castarray@4.4.0: {} @@ -5746,6 +7737,8 @@ snapshots: lodash.startcase@4.4.0: {} + longest-streak@3.1.0: {} + loupe@3.2.0: {} lower-case@2.0.2: @@ -5754,13 +7747,107 @@ snapshots: lru-cache@11.0.0: {} + lz-string@1.5.0: {} + magic-string@0.30.17: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 - mdast-util-to-hast@13.2.0: + magic-string@0.30.19: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + + markdown-table@3.0.4: {} + + mdast-util-find-and-replace@3.0.2: + dependencies: + '@types/mdast': 4.0.4 + escape-string-regexp: 5.0.0 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + + mdast-util-from-markdown@2.0.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.2 + decode-named-character-reference: 1.2.0 + devlop: 1.1.0 + mdast-util-to-string: 4.0.0 + micromark: 4.0.2 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-decode-string: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + unist-util-stringify-position: 4.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-autolink-literal@2.0.1: + dependencies: + '@types/mdast': 4.0.4 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-find-and-replace: 3.0.2 + micromark-util-character: 2.1.1 + + mdast-util-gfm-footnote@2.1.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + micromark-util-normalize-identifier: 2.0.1 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-strikethrough@2.0.0: dependencies: - '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-table@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + markdown-table: 3.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-task-list-item@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm@3.1.0: + dependencies: + mdast-util-from-markdown: 2.0.2 + mdast-util-gfm-autolink-literal: 2.0.1 + mdast-util-gfm-footnote: 2.1.0 + mdast-util-gfm-strikethrough: 2.0.0 + mdast-util-gfm-table: 2.0.0 + mdast-util-gfm-task-list-item: 2.0.0 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-phrasing@4.1.0: + dependencies: + '@types/mdast': 4.0.4 + unist-util-is: 6.0.0 + + mdast-util-to-hast@13.2.0: + dependencies: + '@types/hast': 3.0.4 '@types/mdast': 4.0.4 '@ungap/structured-clone': 1.3.0 devlop: 1.1.0 @@ -5770,6 +7857,22 @@ snapshots: unist-util-visit: 5.0.0 vfile: 6.0.3 + mdast-util-to-markdown@2.1.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.2 + longest-streak: 3.1.0 + mdast-util-phrasing: 4.1.0 + mdast-util-to-string: 4.0.0 + micromark-util-classify-character: 2.0.1 + micromark-util-decode-string: 2.0.1 + unist-util-visit: 5.0.0 + zwitch: 2.0.4 + + mdast-util-to-string@4.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdn-data@2.0.30: {} mdsvex@0.12.3(svelte@5.38.2): @@ -5780,29 +7883,221 @@ snapshots: svelte: 5.38.2 vfile-message: 2.0.4 + mdsx@0.0.7(svelte@5.39.9): + dependencies: + esrap: 1.4.9 + hast-util-to-html: 9.0.5 + magic-string: 0.30.19 + mdast-util-to-markdown: 2.1.2 + rehype-stringify: 10.0.1 + remark-parse: 11.0.0 + remark-rehype: 11.1.2 + svelte: 5.39.9 + unified: 11.0.5 + unist-util-visit: 5.0.0 + vfile: 6.0.3 + yaml: 2.8.1 + zimmerframe: 1.1.2 + transitivePeerDependencies: + - supports-color + memoize@10.1.0: dependencies: mimic-function: 5.0.1 merge2@1.4.1: {} + micromark-core-commonmark@2.0.3: + dependencies: + decode-named-character-reference: 1.2.0 + devlop: 1.1.0 + micromark-factory-destination: 2.0.1 + micromark-factory-label: 2.0.1 + micromark-factory-space: 2.0.1 + micromark-factory-title: 2.0.1 + micromark-factory-whitespace: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-html-tag-name: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-autolink-literal@2.1.0: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-footnote@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-strikethrough@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-table@2.1.1: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-tagfilter@2.0.0: + dependencies: + micromark-util-types: 2.0.2 + + micromark-extension-gfm-task-list-item@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm@3.0.0: + dependencies: + micromark-extension-gfm-autolink-literal: 2.1.0 + micromark-extension-gfm-footnote: 2.1.0 + micromark-extension-gfm-strikethrough: 2.1.0 + micromark-extension-gfm-table: 2.1.1 + micromark-extension-gfm-tagfilter: 2.0.0 + micromark-extension-gfm-task-list-item: 2.1.0 + micromark-util-combine-extensions: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-destination@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-label@2.0.1: + dependencies: + devlop: 1.1.0 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-space@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-types: 2.0.2 + + micromark-factory-title@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-whitespace@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + micromark-util-character@2.1.1: dependencies: micromark-util-symbol: 2.0.1 micromark-util-types: 2.0.2 + micromark-util-chunked@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-classify-character@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-combine-extensions@2.0.1: + dependencies: + micromark-util-chunked: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-decode-numeric-character-reference@2.0.2: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-decode-string@2.0.1: + dependencies: + decode-named-character-reference: 1.2.0 + micromark-util-character: 2.1.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-symbol: 2.0.1 + micromark-util-encode@2.0.1: {} + micromark-util-html-tag-name@2.0.1: {} + + micromark-util-normalize-identifier@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-resolve-all@2.0.1: + dependencies: + micromark-util-types: 2.0.2 + micromark-util-sanitize-uri@2.0.1: dependencies: micromark-util-character: 2.1.1 micromark-util-encode: 2.0.1 micromark-util-symbol: 2.0.1 + micromark-util-subtokenize@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + micromark-util-symbol@2.0.1: {} micromark-util-types@2.0.2: {} + micromark@4.0.2: + dependencies: + '@types/debug': 4.1.12 + debug: 4.4.1 + decode-named-character-reference: 1.2.0 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-combine-extensions: 2.0.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-encode: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + transitivePeerDependencies: + - supports-color + micromatch@4.0.8: dependencies: braces: 3.0.3 @@ -5834,12 +8129,24 @@ snapshots: dependencies: brace-expansion: 2.0.1 + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.12 + + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.1 + minipass@7.1.2: {} minizlib@3.0.2: dependencies: minipass: 7.1.2 + minizlib@3.1.0: + dependencies: + minipass: 7.1.2 + mkdirp@3.0.1: {} mlly@1.7.4: @@ -5863,6 +8170,8 @@ snapshots: nanoid@3.3.11: {} + natural-compare@1.4.0: {} + no-case@3.0.4: dependencies: lower-case: 2.0.2 @@ -5888,6 +8197,15 @@ snapshots: is-docker: 2.2.1 is-wsl: 2.2.0 + optionator@0.9.4: + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + outdent@0.5.0: {} p-filter@2.1.0: @@ -5898,10 +8216,22 @@ snapshots: dependencies: p-try: 2.2.0 + p-limit@3.1.0: + dependencies: + yocto-queue: 0.1.0 + + p-limit@6.2.0: + dependencies: + yocto-queue: 1.2.1 + p-locate@4.1.0: dependencies: p-limit: 2.3.0 + p-locate@5.0.0: + dependencies: + p-limit: 3.1.0 + p-map@2.1.0: {} p-try@2.2.0: {} @@ -5914,6 +8244,16 @@ snapshots: package-manager-detector@1.3.0: {} + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + parse-numeric-range@1.3.0: {} + + parse5@7.3.0: + dependencies: + entities: 6.0.1 + pascal-case@3.1.2: dependencies: no-case: 3.0.4 @@ -5971,20 +8311,50 @@ snapshots: exsolve: 1.0.7 pathe: 2.0.3 - postcss-load-config@6.0.1(jiti@2.5.1)(postcss@8.5.6)(yaml@2.8.1): + playwright-core@1.56.0: {} + + playwright@1.56.0: + dependencies: + playwright-core: 1.56.0 + optionalDependencies: + fsevents: 2.3.2 + + pluralize@8.0.0: {} + + postcss-load-config@3.1.4(postcss@8.5.6): + dependencies: + lilconfig: 2.1.0 + yaml: 1.10.2 + optionalDependencies: + postcss: 8.5.6 + + postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.1): dependencies: lilconfig: 3.1.3 optionalDependencies: - jiti: 2.5.1 + jiti: 2.6.1 postcss: 8.5.6 yaml: 2.8.1 optional: true + postcss-safe-parser@7.0.1(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-scss@4.0.9(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser@6.0.10: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 + postcss-selector-parser@7.1.0: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + postcss@8.5.6: dependencies: nanoid: 3.3.11 @@ -6000,21 +8370,40 @@ snapshots: preact@10.27.0: {} + prelude-ls@1.2.1: {} + prettier-plugin-svelte@3.4.0(prettier@3.6.2)(svelte@5.38.2): dependencies: prettier: 3.6.2 svelte: 5.38.2 + prettier-plugin-svelte@3.4.0(prettier@3.6.2)(svelte@5.39.9): + dependencies: + prettier: 3.6.2 + svelte: 5.39.9 + prettier-plugin-tailwindcss@0.6.14(prettier-plugin-svelte@3.4.0(prettier@3.6.2)(svelte@5.38.2))(prettier@3.6.2): dependencies: prettier: 3.6.2 optionalDependencies: prettier-plugin-svelte: 3.4.0(prettier@3.6.2)(svelte@5.38.2) + prettier-plugin-tailwindcss@0.6.14(prettier-plugin-svelte@3.4.0(prettier@3.6.2)(svelte@5.39.9))(prettier@3.6.2): + dependencies: + prettier: 3.6.2 + optionalDependencies: + prettier-plugin-svelte: 3.4.0(prettier@3.6.2)(svelte@5.39.9) + prettier@2.8.8: {} prettier@3.6.2: {} + pretty-format@27.5.1: + dependencies: + ansi-regex: 5.0.1 + ansi-styles: 5.2.0 + react-is: 17.0.2 + prism-svelte@0.4.7: {} prism-svelte@0.5.0: {} @@ -6023,14 +8412,22 @@ snapshots: prismjs@1.30.0: {} + property-information@6.5.0: {} + property-information@7.1.0: {} - quansync@0.2.10: {} + punycode@2.3.1: {} quansync@0.2.11: {} queue-microtask@1.2.3: {} + randombytes@2.1.0: + dependencies: + safe-buffer: 5.2.1 + + react-is@17.0.2: {} + read-yaml-file@1.1.0: dependencies: graceful-fs: 4.2.11 @@ -6052,6 +8449,28 @@ snapshots: regexparam@3.0.0: {} + rehype-parse@9.0.1: + dependencies: + '@types/hast': 3.0.4 + hast-util-from-html: 2.0.3 + unified: 11.0.5 + + rehype-pretty-code@0.14.1(shiki@3.9.2): + dependencies: + '@types/hast': 3.0.4 + hast-util-to-string: 3.0.0 + parse-numeric-range: 1.3.0 + rehype-parse: 9.0.1 + shiki: 3.9.2 + unified: 11.0.5 + unist-util-visit: 5.0.0 + + rehype-raw@7.0.0: + dependencies: + '@types/hast': 3.0.4 + hast-util-raw: 9.1.0 + vfile: 6.0.3 + rehype-slug@6.0.0: dependencies: '@types/hast': 3.0.4 @@ -6060,8 +8479,50 @@ snapshots: hast-util-to-string: 3.0.0 unist-util-visit: 5.0.0 + rehype-stringify@10.0.1: + dependencies: + '@types/hast': 3.0.4 + hast-util-to-html: 9.0.5 + unified: 11.0.5 + + remark-gfm@4.0.1: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-gfm: 3.1.0 + micromark-extension-gfm: 3.0.0 + remark-parse: 11.0.0 + remark-stringify: 11.0.0 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-parse@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + micromark-util-types: 2.0.2 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-rehype@11.1.2: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + mdast-util-to-hast: 13.2.0 + unified: 11.0.5 + vfile: 6.0.3 + + remark-stringify@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-to-markdown: 2.1.2 + unified: 11.0.5 + require-directory@2.1.1: {} + resolve-from@4.0.0: {} + resolve-from@5.0.0: {} resolve.exports@2.0.3: {} @@ -6088,14 +8549,14 @@ snapshots: rollup: 2.79.2 svelte: 4.2.20 - rollup-plugin-visualizer@6.0.3(rollup@2.79.2): + rollup-plugin-visualizer@6.0.3(rollup@4.46.2): dependencies: open: 8.4.2 picomatch: 4.0.2 source-map: 0.7.4 yargs: 17.7.2 optionalDependencies: - rollup: 2.79.2 + rollup: 4.46.2 rollup@2.79.2: optionalDependencies: @@ -6151,16 +8612,32 @@ snapshots: esm-env: 1.2.2 svelte: 5.38.2 + runed@0.31.1(svelte@5.39.9): + dependencies: + esm-env: 1.2.2 + svelte: 5.39.9 + rw@1.3.3: {} sade@1.8.1: dependencies: mri: 1.2.0 + safe-buffer@5.2.1: {} + safer-buffer@2.1.2: {} + section-matter@1.0.0: + dependencies: + extend-shallow: 2.0.1 + kind-of: 6.0.3 + semver@7.7.2: {} + serialize-javascript@6.0.2: + dependencies: + randombytes: 2.1.0 + set-cookie-parser@2.7.1: {} shapefile@0.6.6: @@ -6281,10 +8758,14 @@ snapshots: dependencies: ansi-regex: 6.0.1 + strip-bom-string@1.0.0: {} + strip-bom@3.0.0: {} strip-bom@4.0.0: {} + strip-json-comments@3.1.1: {} + strip-literal@3.0.0: dependencies: js-tokens: 9.0.1 @@ -6295,9 +8776,13 @@ snapshots: supports-color@10.2.0: {} + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + supports-preserve-symlinks-flag@1.0.0: {} - sveld@0.22.1(postcss-load-config@6.0.1(jiti@2.5.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6): + sveld@0.22.1(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6): dependencies: '@rollup/plugin-node-resolve': 13.3.0(rollup@2.79.2) acorn: 8.15.0 @@ -6306,8 +8791,8 @@ snapshots: rollup: 2.79.2 rollup-plugin-svelte: 7.2.2(rollup@2.79.2)(svelte@4.2.20) svelte: 4.2.20 - svelte-preprocess: 6.0.3(postcss-load-config@6.0.1(jiti@2.5.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6)(svelte@4.2.20)(typescript@5.9.2) - tinyglobby: 0.2.14 + svelte-preprocess: 6.0.3(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6)(svelte@4.2.20)(typescript@5.9.2) + tinyglobby: 0.2.15 typescript: 5.9.2 transitivePeerDependencies: - '@babel/core' @@ -6332,16 +8817,39 @@ snapshots: transitivePeerDependencies: - picomatch + svelte-check@4.3.2(picomatch@4.0.3)(svelte@5.39.9)(typescript@5.9.2): + dependencies: + '@jridgewell/trace-mapping': 0.3.30 + chokidar: 4.0.3 + fdir: 6.5.0(picomatch@4.0.3) + picocolors: 1.1.1 + sade: 1.8.1 + svelte: 5.39.9 + typescript: 5.9.2 + transitivePeerDependencies: + - picomatch + + svelte-eslint-parser@1.3.3(svelte@5.39.9): + dependencies: + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + postcss: 8.5.6 + postcss-scss: 4.0.9(postcss@8.5.6) + postcss-selector-parser: 7.1.0 + optionalDependencies: + svelte: 5.39.9 + svelte-json-tree@2.2.0(svelte@5.38.2): dependencies: svelte: 5.38.2 - svelte-preprocess@6.0.3(postcss-load-config@6.0.1(jiti@2.5.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6)(svelte@4.2.20)(typescript@5.9.2): + svelte-preprocess@6.0.3(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6)(svelte@4.2.20)(typescript@5.9.2): dependencies: svelte: 4.2.20 optionalDependencies: postcss: 8.5.6 - postcss-load-config: 6.0.1(jiti@2.5.1)(postcss@8.5.6)(yaml@2.8.1) + postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.1) typescript: 5.9.2 svelte-toolbelt@0.10.5(svelte@5.38.2): @@ -6358,7 +8866,7 @@ snapshots: style-to-object: 1.0.9 svelte: 5.38.2 - svelte-ux@2.0.0-next.17(postcss-load-config@6.0.1(jiti@2.5.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6)(svelte@5.38.2): + svelte-ux@2.0.0-next.17(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6)(svelte@5.38.2): dependencies: '@floating-ui/dom': 1.7.3 '@layerstack/svelte-actions': 1.0.1-next.14 @@ -6375,7 +8883,7 @@ snapshots: prism-svelte: 0.5.0 prism-themes: 1.9.0 prismjs: 1.30.0 - sveld: 0.22.1(postcss-load-config@6.0.1(jiti@2.5.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6) + sveld: 0.22.1(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6) svelte: 5.38.2 zod: 3.25.64 transitivePeerDependencies: @@ -6389,7 +8897,7 @@ snapshots: - stylus - sugarss - svelte-ux@2.0.0-next.19(postcss-load-config@6.0.1(jiti@2.5.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6)(svelte@5.38.2): + svelte-ux@2.0.0-next.19(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6)(svelte@5.38.2): dependencies: '@floating-ui/dom': 1.7.4 '@layerstack/svelte-actions': 1.0.1-next.14 @@ -6406,7 +8914,7 @@ snapshots: prism-svelte: 0.5.0 prism-themes: 1.9.0 prismjs: 1.30.0 - sveld: 0.22.1(postcss-load-config@6.0.1(jiti@2.5.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6) + sveld: 0.22.1(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6) svelte: 5.38.2 zod: 3.25.64 transitivePeerDependencies: @@ -6420,6 +8928,37 @@ snapshots: - stylus - sugarss + svelte-ux@2.0.0-next.20(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6)(svelte@5.39.9): + dependencies: + '@floating-ui/dom': 1.7.4 + '@layerstack/svelte-actions': 1.0.1-next.16 + '@layerstack/svelte-stores': 1.0.2-next.16 + '@layerstack/svelte-table': 1.0.1-next.16 + '@layerstack/tailwind': 2.0.0-next.19 + '@layerstack/utils': 2.0.0-next.16 + '@lucide/svelte': 0.544.0(svelte@5.39.9) + d3-array: 3.2.4 + d3-scale: 4.0.2 + esm-env: 1.2.2 + immer: 10.1.3 + lodash-es: 4.17.21 + prism-svelte: 0.5.0 + prism-themes: 1.9.0 + prismjs: 1.30.0 + sveld: 0.22.1(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.1))(postcss@8.5.6) + svelte: 5.39.9 + zod: 3.25.64 + transitivePeerDependencies: + - '@babel/core' + - coffeescript + - less + - postcss + - postcss-load-config + - pug + - sass + - stylus + - sugarss + svelte2tsx@0.7.42(svelte@5.38.2)(typescript@5.9.2): dependencies: dedent-js: 1.0.1 @@ -6441,7 +8980,7 @@ snapshots: estree-walker: 3.0.3 is-reference: 3.0.3 locate-character: 3.0.0 - magic-string: 0.30.17 + magic-string: 0.30.19 periscopic: 3.1.0 svelte@5.38.2: @@ -6461,6 +9000,23 @@ snapshots: magic-string: 0.30.17 zimmerframe: 1.1.2 + svelte@5.39.9: + dependencies: + '@jridgewell/remapping': 2.3.5 + '@jridgewell/sourcemap-codec': 1.5.5 + '@sveltejs/acorn-typescript': 1.0.5(acorn@8.15.0) + '@types/estree': 1.0.8 + acorn: 8.15.0 + aria-query: 5.3.2 + axobject-query: 4.1.0 + clsx: 2.1.1 + esm-env: 1.2.2 + esrap: 2.1.0 + is-reference: 3.0.3 + locate-character: 3.0.0 + magic-string: 0.30.19 + zimmerframe: 1.1.2 + tabbable@6.2.0: {} tailwind-merge@3.3.0: {} @@ -6475,6 +9031,8 @@ snapshots: tailwindcss@4.1.12: {} + tailwindcss@4.1.14: {} + tapable@2.2.2: {} tar@7.4.3: @@ -6486,6 +9044,14 @@ snapshots: mkdirp: 3.0.1 yallist: 5.0.0 + tar@7.5.1: + dependencies: + '@isaacs/fs-minipass': 4.0.1 + chownr: 3.0.0 + minipass: 7.1.2 + minizlib: 3.1.0 + yallist: 5.0.0 + term-size@2.2.1: {} text-encoding@0.6.4: {} @@ -6501,6 +9067,11 @@ snapshots: fdir: 6.4.6(picomatch@4.0.3) picomatch: 4.0.3 + tinyglobby@0.2.15: + dependencies: + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + tinypool@1.1.1: {} tinyrainbow@2.0.0: {} @@ -6528,14 +9099,37 @@ snapshots: trim-lines@3.0.1: {} + trough@2.2.0: {} + + ts-api-utils@2.1.0(typescript@5.9.2): + dependencies: + typescript: 5.9.2 + tslib@2.8.1: {} tw-animate-css@1.3.8: {} + type-check@0.4.0: + dependencies: + prelude-ls: 1.2.1 + + typescript-eslint@8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.2): + dependencies: + '@typescript-eslint/eslint-plugin': 8.46.0(@typescript-eslint/parser@8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.2))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.2) + '@typescript-eslint/parser': 8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.2) + '@typescript-eslint/typescript-estree': 8.46.0(typescript@5.9.2) + '@typescript-eslint/utils': 8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.2) + eslint: 9.37.0(jiti@2.6.1) + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + typescript@5.9.2: {} ufo@1.6.1: {} + undici-types@6.21.0: {} + undici-types@7.10.0: optional: true @@ -6551,6 +9145,20 @@ snapshots: pathe: 2.0.3 ufo: 1.6.1 + unified@11.0.5: + dependencies: + '@types/unist': 3.0.2 + bail: 2.0.2 + devlop: 1.1.0 + extend: 3.0.2 + is-plain-obj: 4.1.0 + trough: 2.2.0 + vfile: 6.0.3 + + unist-builder@4.0.0: + dependencies: + '@types/unist': 3.0.2 + unist-util-is@6.0.0: dependencies: '@types/unist': 3.0.2 @@ -6592,18 +9200,39 @@ snapshots: transitivePeerDependencies: - supports-color + unplugin-icons@22.2.0(svelte@5.39.9): + dependencies: + '@antfu/install-pkg': 1.1.0 + '@iconify/utils': 2.3.0 + debug: 4.4.1 + local-pkg: 1.1.1 + unplugin: 2.3.5 + optionalDependencies: + svelte: 5.39.9 + transitivePeerDependencies: + - supports-color + unplugin@2.3.5: dependencies: acorn: 8.15.0 picomatch: 4.0.3 webpack-virtual-modules: 0.6.2 + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 + us-atlas@3.0.1: {} util-deprecate@1.0.2: {} uuid@11.1.0: {} + vfile-location@5.0.3: + dependencies: + '@types/unist': 3.0.2 + vfile: 6.0.3 + vfile-message@2.0.4: dependencies: '@types/unist': 2.0.11 @@ -6619,13 +9248,34 @@ snapshots: '@types/unist': 3.0.2 vfile-message: 4.0.3 - vite-node@3.2.4(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1): + vite-node@3.2.4(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1): + dependencies: + cac: 6.7.14 + debug: 4.4.1 + es-module-lexer: 1.7.0 + pathe: 2.0.3 + vite: 7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + transitivePeerDependencies: + - '@types/node' + - jiti + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + + vite-node@3.2.4(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.1 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1) + vite: 7.1.9(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -6640,12 +9290,17 @@ snapshots: - tsx - yaml - vite-plugin-devtools-json@1.0.0(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1)): + vite-plugin-devtools-json@1.0.0(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)): + dependencies: + uuid: 11.1.0 + vite: 7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + + vite-plugin-devtools-json@1.0.0(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)): dependencies: uuid: 11.1.0 - vite: 7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1) + vite: 7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) - vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1): + vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1): dependencies: esbuild: 0.25.8 fdir: 6.4.6(picomatch@4.0.3) @@ -6656,19 +9311,59 @@ snapshots: optionalDependencies: '@types/node': 24.3.0 fsevents: 2.3.3 - jiti: 2.5.1 + jiti: 2.6.1 + lightningcss: 1.30.1 + yaml: 2.8.1 + + vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1): + dependencies: + esbuild: 0.25.8 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.46.2 + tinyglobby: 0.2.15 + optionalDependencies: + '@types/node': 22.18.8 + fsevents: 2.3.3 + jiti: 2.6.1 lightningcss: 1.30.1 yaml: 2.8.1 - vitefu@1.1.1(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1)): + vite@7.1.9(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1): + dependencies: + esbuild: 0.25.8 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.46.2 + tinyglobby: 0.2.15 optionalDependencies: - vite: 7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1) + '@types/node': 24.3.0 + fsevents: 2.3.3 + jiti: 2.6.1 + lightningcss: 1.30.1 + yaml: 2.8.1 + + vitefu@1.1.1(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)): + optionalDependencies: + vite: 7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + + vitefu@1.1.1(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)): + optionalDependencies: + vite: 7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + + vitest-browser-svelte@1.1.0(@vitest/browser@3.2.4)(svelte@5.39.9)(vitest@3.2.4): + dependencies: + '@vitest/browser': 3.2.4(playwright@1.56.0)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))(vitest@3.2.4) + svelte: 5.39.9 + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(@vitest/browser@3.2.4)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) - vitest@3.2.4(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(@vitest/browser@3.2.4)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -6677,20 +9372,65 @@ snapshots: chai: 5.2.1 debug: 4.4.1 expect-type: 1.2.2 - magic-string: 0.30.17 + magic-string: 0.30.19 pathe: 2.0.3 picomatch: 4.0.3 std-env: 3.9.0 tinybench: 2.9.0 tinyexec: 0.3.2 - tinyglobby: 0.2.14 + tinyglobby: 0.2.15 + tinypool: 1.1.1 + tinyrainbow: 2.0.0 + vite: 7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + why-is-node-running: 2.3.0 + optionalDependencies: + '@types/debug': 4.1.12 + '@types/node': 22.18.8 + '@vitest/browser': 3.2.4(playwright@1.56.0)(vite@7.1.9(@types/node@22.18.8)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))(vitest@3.2.4) + transitivePeerDependencies: + - jiti + - less + - lightningcss + - msw + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + + vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.3.0)(@vitest/browser@3.2.4)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1): + dependencies: + '@types/chai': 5.2.2 + '@vitest/expect': 3.2.4 + '@vitest/mocker': 3.2.4(vite@7.1.9(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1)) + '@vitest/pretty-format': 3.2.4 + '@vitest/runner': 3.2.4 + '@vitest/snapshot': 3.2.4 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.2.1 + debug: 4.4.1 + expect-type: 1.2.2 + magic-string: 0.30.19 + pathe: 2.0.3 + picomatch: 4.0.3 + std-env: 3.9.0 + tinybench: 2.9.0 + tinyexec: 0.3.2 + tinyglobby: 0.2.15 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 7.1.2(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@24.3.0)(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.8.1) + vite: 7.1.9(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: + '@types/debug': 4.1.12 '@types/node': 24.3.0 + '@vitest/browser': 3.2.4(playwright@1.56.0)(vite@7.1.2(@types/node@24.3.0)(jiti@2.6.1)(lightningcss@1.30.1)(yaml@2.8.1))(vitest@3.2.4) transitivePeerDependencies: - jiti - less @@ -6705,6 +9445,8 @@ snapshots: - tsx - yaml + web-namespaces@2.0.1: {} + web-vitals@4.2.4: {} webidl-conversions@3.0.1: {} @@ -6725,6 +9467,8 @@ snapshots: siginfo: 2.0.0 stackback: 0.0.2 + word-wrap@1.2.5: {} + workerd@1.20250813.0: optionalDependencies: '@cloudflare/workerd-darwin-64': 1.20250813.0 @@ -6769,12 +9513,15 @@ snapshots: ws@8.18.0: {} + ws@8.18.3: {} + y18n@5.0.8: {} yallist@5.0.0: {} - yaml@2.8.1: - optional: true + yaml@1.10.2: {} + + yaml@2.8.1: {} yargs-parser@21.1.1: {} @@ -6788,6 +9535,10 @@ snapshots: y18n: 5.0.8 yargs-parser: 21.1.1 + yocto-queue@0.1.0: {} + + yocto-queue@1.2.1: {} + youch-core@0.3.3: dependencies: '@poppinss/exception': 1.2.2 @@ -6807,4 +9558,6 @@ snapshots: zod@3.25.64: {} + zod@4.1.12: {} + zwitch@2.0.4: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 15989339b..dd8cb5185 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,3 +1,4 @@ packages: - 'packages/*' - 'examples/*' + - 'docs'